diff --git a/anno3/avrc/assignments/dataviz/.gitignore b/anno3/avrc/assignments/dataviz/.gitignore new file mode 100644 index 0000000..b6e4761 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/.gitignore @@ -0,0 +1,129 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/anno3/avrc/assignments/dataviz/app.py b/anno3/avrc/assignments/dataviz/app.py new file mode 100644 index 0000000..187b672 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/app.py @@ -0,0 +1,141 @@ +from flask import Flask, escape, request, render_template, abort + +import json +import os + +import costants + +from IPython import embed as fuck + +app = Flask(__name__) + +def preconditions(year, politician): + try: + # year = int(year) if year != 'all' else year + # yearCond = (type(year) == str and year == 'all') or (type(year) != int or (year >= 2013 and year <= 2019)) + # return yearCond and politician in costants.politicians + return year+':'+politician in costants.valid_combination + except: + return False + +@app.route('/') +def hello(viz): + vizuals = ['trends', 'words', 'travels', 'sleep', 'sharing', 'emoji']; + if viz not in vizuals: + abort(404) + else: + return render_template("inner.html", viz=viz, n=vizuals.index(viz)) + +def emoji_r(emoji): + if len(emoji) == 0: + return render_template('no_emoji.html') + else: + total = sum(emoji.values()) + sorted_percent = list(map(lambda k: (k[0],k[1]/total*100), + sorted(emoji.items(), key=lambda key: key[1], reverse=True))) + + ret = [] + for e, p in sorted_percent[:5]: + ret.append({'name': e, 'percent': round(p,2)}) + return render_template("pie.html", dataset=json.dumps(ret)) + +def sleep_r(sleep): + values = sleep + dataset = { + "columns": [ + "Jan", "Feb", "Mar", "Apr", "May", "Jun", + "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" + ], + "rows": [ + "00", "01", "02", "03", "04", "05", + "06", "07", "08", "09", "10", "11", + "12", "13", "14", "15", "16", "17", + "18", "19", "20", "21", "22", "23" + ], + "values": values + } + return render_template("sleep.html", dataset=dataset) + +@app.route('/tsv/') +def shouldnt(fname): + return costants.tsv[fname] + +@app.route('/trends////') +def trends(y1, p1, y2, p2): + # assert False, "Does not workfor all, all, must increase range" + + vmax = max([max(costants.tt[int(y1)][p1].values()), + max(costants.tt[int(y2)][p2].values())]) + 2 + if not preconditions(y1, p1) or not preconditions(y2, p2): + abort(404) + elif y1 == "all" or y2 == "all": + abort(404) + else: + name1, name2 = f'{y1}_{p1}_{y2}_{p2}_trends.tsv', f'{y2}_{p2}_{y1}_{p1}_trends.tsv' + if name1 in costants.tsv: + return render_template('trends.html', filename=name1, mmax=vmax) + elif name2 in costants.tsv: + return render_template('trends.html', filename=name2, mmax=vmax) + else: + abort(404) + +@app.route('/sharing////') +def sharing(y1, p1, y2, p2): + # function used for displaying stacked bar + # consider words used by both y1/p1, y2/p2 + if not preconditions(y1, p1) or not preconditions(y2, p2): + abort(404) + else: + y1 = int(y1) if y1 != 'all' else y1 + y2 = int(y2) if y2 != 'all' else y2 + c1 = costants.counter[y1][p1] + c2 = costants.counter[y2][p2] + common_topics = set(c1.keys()).intersection(set(c2.keys())) + + summed = {t: c1[t]+c2[t] for t in common_topics} + nc1, nc2 = dict(), dict() + for k, v in sorted(summed.items(), key=lambda k: k[1], reverse=True): + nc1[k], nc2[k] = c1[k], c2[k] + if len(nc1) > 30: + break + + pwords = list(nc2.keys()) + assert list(nc2.keys()) == list(nc1.keys()) + p1c = [nc1[p] for p in pwords] + p2c = [nc2[p] for p in pwords] + + if y1 != "all": + pol1=f'{p1.capitalize()}-{str(y1)[2:]}' + else: + pol1=p1.capitalize() + + if y2 != "all": + pol2=f'{p2.capitalize()}-{str(y2)[2:]}' + else: + pol2=p2.capitalize() + + return render_template('stacked.html', length=len(pwords), pwords=pwords, + p1=p1c, p2=p2c, pol1=pol1, + pol2=pol2) + + +@app.route('///') +def dataviz(viz, year, politician): + fun = { + 'travels': lambda y,p: costants.travelsHTML[y][p], + 'words': lambda y,p,: render_template("wordcloud.html", text=costants.words[y][p]), + 'emoji': lambda y,p: emoji_r(costants.emoji[y][p]), + 'sleep': lambda y,p: sleep_r(costants.sleep[y][p]) + } + + if viz not in ['travels', 'words', 'sleep', 'emoji']: + abort(404) + elif not preconditions(year, politician): + abort(404) + else: + year = int(year) if year != 'all' else year + return fun[viz](year, politician) + + + +app.run() diff --git a/anno3/avrc/assignments/dataviz/costants.py b/anno3/avrc/assignments/dataviz/costants.py new file mode 100644 index 0000000..b88eda0 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/costants.py @@ -0,0 +1,57 @@ +import pandas + +import os + +politicians = ['salvini', 'renzi'] +valid_combination = set() +def create_dict(suffix, fread=None): + + def read_file(filename): + if fread is None: + with open(filename, 'r') as f: + return f.read() + else: + return fread(filename) + + obj = dict() + obj['all'] = dict() + for i in range(2013, 2020): + obj[i] = dict() + for p in politicians: + filename = f'dataset/{i}/{p}_{suffix}' + if os.path.exists(filename): + obj[i][p] = read_file(filename) + valid_combination.add(str(i)+':'+p) + + # embed() + for p in politicians: + filename = f'dataset/all/{p}_{suffix}' + if os.path.exists(filename): + obj['all'][p] = read_file(filename) + valid_combination.add('all:'+p) + + return obj + +def load_jfile(fname): + import json + with open(fname, 'r') as f: + content = f.read() + return json.loads(content) + +travelsHTML = create_dict('comuni.html') +counter = create_dict('counter', load_jfile) +# counter['all']['renzi'] = json.loads(counter['all']['renzi']) +# counter['all']['salvini'] = json.loads(counter['all']['salvini']) +emoji = create_dict('emoji', load_jfile) +words = create_dict('words') +sleep = create_dict('sleep', lambda fname: pandas.read_json(fname).drop('', axis=1).values.tolist()) +tt = create_dict('trend.json', load_jfile) + +# load trends tsv +import glob +tsv = dict() +l = len('dataset/trends/') +for g in glob.glob('dataset/trends/*.tsv'): + gname = g[l:] + with open(g, 'r') as f: + tsv[gname] = f.read() diff --git a/anno3/avrc/assignments/dataviz/dataset/2013/salvini_comuni.html b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_comuni.html new file mode 100644 index 0000000..35d8641 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2013/salvini_counter b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_counter new file mode 100644 index 0000000..932b454 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_counter @@ -0,0 +1 @@ +{"signor": 3, "napolitano": 12, "nomina": 1, "nuovi": 4, "senatori": 2, "vita": 8, "fregandosene": 1, "crisi": 3, "gente": 34, "presidente": 7, "auguri": 4, "amici": 62, "spero": 9, "porti": 1, "tanta": 15, "salute": 3, "nessun": 3, "rimpianto": 1, "tanto": 14, "coraggio": 5, "nessuna": 3, "rassegnazione": 1, "fortuna": 3, "solo": 33, "poche": 2, "sconfitte": 2, "comunit\u00e0": 7, "solitudine": 1, "persone": 15, "libere": 1, "cena": 7, "poco": 15, "vegetariana": 2, "capriolo": 2, "polentaaa": 2, "bresaola": 1, "sciatt": 1, "risotto": 1, "torta": 3, "speciale": 1, "notte": 28, "serena": 27, "fiocchi": 1, "neve": 2, "vedo": 2, "oltre": 5, "vetri": 2, "accompagnino": 1, "sogni": 2, "discorso": 3, "fine": 9, "anno": 6, "giornalista": 2, "chiesto": 2, "ascolter\u00f2": 1, "giorgino": 1, "beppe": 3, "grillo": 4, "risposto": 2, "seguir\u00f2": 1, "figlia": 2, "peppa": 3, "pig": 3, "bellissimo": 2, "castello": 3, "sforzesco": 1, "spalle": 1, "pronto": 10, "collegamento": 2, "sky": 3, "madonna": 1, "venezia": 4, "stacci": 1, "vicina": 3, "riunione": 1, "lavoro": 31, "sempre": 27, "stupenda": 4, "comincio": 2, "nuovo": 3, "libro": 4, "tanti": 9, "sereno": 2, "natale": 3, "difenderemo": 1, "vicenda": 1, "fronte": 3, "attacchi": 2, "vili": 1, "infami": 1, "mezzi": 2, "comunicazione": 1, "nati": 2, "distruggere": 1, "lega": 82, "arriveremo": 1, "molto": 5, "lontano": 2, "innamorato": 3, "nord": 23, "miliardaria": 1, "littizzetto": 2, "campionessa": 1, "nota": 1, "disciplina": 1, "fare": 17, "comunista": 2, "altri": 15, "frequentata": 1, "sinistra": 14, "ieri": 10, "sera": 6, "presa": 2, "me": 14, "rai": 17, "considerassi": 1, "altro": 14, "clandestini": 11, "lampedusa": 5, "costruito": 1, "tutta": 4, "filippica": 1, "radical": 1, "chic": 2, "tono": 1, "serio": 1, "indignato": 1, "applausi": 2, "fazio": 1, "rifiutando": 1, "inoltre": 1, "etichetta": 1, "buonista": 1, "cara": 1, "pi\u00fa": 1, "facile": 1, "vinca": 1, "miss": 1, "italia": 24, "trovare": 1, "briciolo": 1, "razzismo": 7, "anzich\u00e9": 1, "investire": 1, "propriet\u00e0": 2, "immobiliari": 1, "vaste": 1, "fortune": 1, "usi": 1, "parte": 8, "ospitare": 1, "centinaio": 1, "immigrati": 7, "fondo": 1, "soldi": 5, "pubblici": 5, "italiani": 11, "pagano": 1, "canone": 2, "forza": 6, "vecchio": 1, "cuore": 3, "rossonero": 1, "poverini": 3, "cittadini": 14, "poi": 12, "devono": 2, "mantenere": 3, "subiscono": 1, "crimini": 1, "bergamaschi": 1, "chiuduno": 3, "festeggiare": 2, "pronti": 6, "sacrifici": 1, "battaglie": 3, "fa": 9, "mar\u00f2": 2, "dice": 19, "governo": 19, "attento": 1, "destino": 1, "rifiuterei": 1, "attenzione": 1, "mamma": 5, "tira": 4, "tardi": 4, "allora": 3, "riesco": 1, "saluto": 3, "popolo": 3, "rete": 1, "migranti": 3, "rom": 15, "carcerati": 1, "muovono": 1, "dito": 1, "aver": 2, "bisogno": 5, "vicino": 3, "casa": 19, "troppo": 8, "banale": 1, "normale": 1, "ipocriti": 1, "tristi": 1, "buoni": 2, "facebook": 3, "egoisti": 2, "responsabilit\u00e0": 1, "tenere": 1, "barca": 1, "equilibrio": 1, "detto": 3, "oggi": 35, "letta": 17, "ricorda": 1, "schettino": 1, "diretta": 22, "immigrazione": 3, "carceri": 5, "agricoltura": 3, "imprese": 4, "pensioni": 2, "europa": 25, "massacra": 2, "ribellarsi": 1, "\u00e9": 3, "dovere": 1, "guarda": 3, "po": 10, "cosa": 16, "attaccano": 1, "aeroporto": 2, "fiumicino": 2, "problemi": 6, "caso": 1, "ritirano": 1, "fuori": 6, "calcioscommesse": 1, "partite": 1, "truccate": 1, "indagano": 1, "qualche": 12, "calciatore": 1, "famoso": 1, "riempiono": 1, "pagine": 1, "giornali": 5, "tentativo": 1, "distrazione": 1, "massa": 1, "bruno": 1, "vespa": 2, "riflessivo": 1, "registrare": 1, "porta": 14, "alemanno": 2, "federalismo": 1, "rideeeeeeeeee": 1, "presepe": 1, "studio": 6, "bene": 8, "giornata": 9, "milanese": 5, "ora": 19, "roma": 20, "stasera": 25, "ospite": 2, "allegra": 1, "compagnia": 2, "gianni": 1, "simpaticissima": 1, "debora": 1, "serracchiani": 1, "consiglio": 3, "darmi": 1, "scrivete": 1, "buona": 16, "serata": 6, "lettura": 1, "ditemi": 1, "pensate": 10, "http": 4, "www": 13, "ilgiornale": 1, "it": 5, "news": 3, "interni": 1, "salvini": 7, "briglia": 1, "sciolta": 1, "vaffaday": 1, "html": 2, "indipendenza": 18, "disobbedienza": 2, "mare": 3, "calore": 2, "idee": 11, "passione": 2, "splendida": 1, "cammino": 2, "grazie": 20, "primo": 6, "acquisto": 1, "fatto": 12, "berretto": 1, "verde": 4, "rebel": 1, "comincia": 3, "decine": 2, "giornalisti": 7, "conferenza": 5, "stampa": 5, "altra": 2, "possibile": 6, "francesi": 1, "fiamminghi": 1, "olandesi": 1, "austriaci": 1, "russi": 1, "ciao": 6, "chiamo": 1, "mirta": 9, "compio": 1, "domani": 16, "raccomando": 1, "torino": 7, "catalogna": 1, "novembre": 2, "chiamer\u00e0": 1, "voto": 3, "decidere": 1, "grandi": 10, "unione": 4, "sovietica": 2, "europea": 5, "minaccia": 1, "ritorsioni": 1, "motivo": 1, "mollare": 4, "euro": 32, "forconi": 1, "bruxelles": 20, "ognuno": 3, "deve": 6, "essere": 12, "libero": 2, "padrone": 1, "ricevere": 1, "pubblico": 3, "romano": 3, "vale": 3, "doppio": 1, "tramonto": 7, "treno": 1, "rientrando": 1, "piace": 12, "sacco": 1, "formigoni": 1, "dark": 1, "parlamento": 6, "vota": 2, "fiducia": 3, "disastri": 1, "game": 1, "monti": 6, "infame": 1, "servo": 1, "prendere": 3, "calci": 2, "steve": 1, "jobs": 1, "diceva": 1, "affamati": 1, "folli": 2, "libert\u00e0": 8, "richiede": 1, "fame": 2, "follia": 3, "cominciata": 1, "presto": 2, "male": 3, "diverso": 1, "mezzo": 4, "agricoltori": 1, "massacrano": 1, "battaglia": 10, "manifestando": 1, "tricolore": 2, "mano": 5, "dovrebbe": 2, "capire": 1, "nemico": 3, "lavora": 3, "proprio": 6, "stato": 17, "ladro": 11, "usa": 1, "quel": 1, "enrico": 3, "antieuropeisti": 1, "producono": 1, "macerie": 1, "amartya": 1, "sen": 1, "nobel": 1, "economia": 2, "stata": 4, "idea": 1, "orribile": 1, "credete": 1, "francois": 1, "heisbourg": 1, "docente": 1, "analista": 1, "anglo": 1, "francese": 2, "europeista": 1, "istituto": 1, "internazionale": 2, "studi": 1, "strategici": 1, "afferma": 1, "incubo": 1, "lascia": 1, "subito": 1, "moneta": 4, "unica": 5, "caos": 3, "certezze": 3, "scemi": 1, "meno": 12, "certe": 2, "grazieeeeeee": 1, "prima": 21, "telefonata": 1, "grande": 22, "umberto": 2, "bossi": 5, "uscita": 1, "pubblica": 2, "fabbrica": 1, "rischia": 3, "chiudere": 2, "italiano": 3, "fallito": 2, "strumento": 1, "morte": 2, "chiamato": 1, "insieme": 14, "senza": 7, "dividere": 1, "ascoltando": 2, "decidendo": 1, "ufficio": 3, "fianco": 2, "sindaci": 3, "amministratori": 2, "bellissima": 3, "partecipazione": 1, "adesso": 9, "sentirsi": 1, "belli": 5, "fiori": 2, "alberi": 2, "veri": 2, "attesa": 3, "privatizzarla": 1, "sindaco": 7, "dato": 3, "cittadinanza": 2, "rachid": 1, "giovane": 3, "marocchino": 2, "vendeva": 1, "accendini": 2, "strada": 4, "laureato": 1, "intanto": 4, "migliaia": 6, "laureati": 1, "perso": 3, "cominciato": 1, "vendere": 2, "tempo": 3, "perdere": 4, "segnalo": 2, "bell": 1, "articolo": 1, "secolo": 1, "xix": 1, "pensiero": 4, "nelson": 1, "mandela": 1, "lotta": 2, "legge": 6, "elettorale": 3, "frega": 4, "rischio": 3, "povert\u00e0": 2, "ecco": 3, "emergenza": 1, "intervenire": 1, "gruber": 1, "la7": 3, "dovr\u00f2": 1, "confrontarmi": 1, "cuperlo": 1, "ve": 2, "devo": 2, "salutare": 1, "kyenge": 22, "intolleranza": 1, "ignoranza": 1, "quindi": 2, "tollera": 1, "leghisti": 17, "d\u00e0": 3, "ignorante": 1, "sola": 2, "stavolta": 1, "tocca": 2, "darle": 1, "ragione": 4, "firenze": 1, "nonostante": 2, "disastro": 3, "renzi": 4, "vero": 2, "spettacolo": 2, "morti": 6, "nero": 2, "sfruttamento": 1, "mafioso": 2, "manda": 1, "blitz": 1, "cortina": 1, "rompe": 1, "palle": 6, "commercianti": 2, "artigiani": 1, "prato": 2, "centro": 6, "storico": 2, "cittadino": 2, "toscano": 1, "cinesi": 1, "muri": 1, "scritte": 1, "cinese": 1, "compresi": 2, "centinaia": 3, "numeri": 2, "telefono": 1, "pare": 5, "signorine": 1, "eccoci": 1, "minuti": 3, "tg": 4, "nuova": 2, "sede": 1, "parma": 1, "bravi": 2, "so": 5, "primarie": 2, "pd": 10, "rotto": 4, "tiv\u00f9": 6, "siti": 4, "vedono": 1, "tutte": 5, "ore": 11, "facce": 1, "porcellini": 1, "democratici": 2, "militanti": 12, "chissenefrega": 3, "tranne": 1, "rare": 1, "eccezioni": 1, "vergogna": 4, "dicembre": 1, "partecipo": 1, "sala": 8, "strapiena": 5, "piedi": 3, "alain": 1, "benoist": 1, "parlare": 10, "denaro": 1, "banche": 5, "popoli": 1, "finch\u00e8": 1, "conserveremo": 1, "voglia": 8, "pensare": 2, "schiacceranno": 1, "basta": 5, "riprendiamoci": 1, "sovranit\u00e0": 1, "speranza": 3, "cominciate": 1, "ci\u00f2": 2, "necessario": 1, "improvviso": 1, "sorprenderete": 1, "impossibile": 3, "san": 6, "francesco": 2, "assisi": 1, "piena": 6, "piemonte": 5, "costruire": 1, "futuro": 17, "abbraccio": 5, "bella": 10, "bianca": 1, "cuneo": 2, "genova": 2, "domenica": 8, "sole": 3, "scaldi": 1, "incontri": 2, "albenga": 2, "ascolto": 2, "progetto": 4, "almeno": 9, "verona": 3, "fratelli": 8, "rovigo": 1, "orgoglioso": 1, "bondeno": 1, "comune": 3, "terremotato": 1, "ferrarese": 1, "consegnare": 1, "vigili": 4, "fuoco": 4, "protezione": 1, "civile": 2, "automezzi": 1, "donati": 1, "politica": 7, "sciura": 5, "simposio": 1, "africa": 4, "sviluppo": 1, "sostenibile": 1, "vaticano": 2, "premiato": 1, "sciur": 2, "prodi": 2, "malora": 1, "premiano": 1, "pensando": 2, "cos\u00ec": 12, "affezionati": 1, "continente": 1, "terra": 2, "peraltro": 1, "tornino": 1, "milano": 39, "poesia": 2, "spesso": 1, "andiamo": 2, "cerca": 2, "bellezza": 1, "accorgiamo": 1, "portata": 1, "finito": 5, "forse": 11, "berlusconi": 12, "ruby": 1, "tribunale": 2, "torna": 4, "occuparsi": 1, "processi": 1, "mafiosi": 1, "assassini": 2, "possono": 2, "attendere": 1, "giudici": 1, "eletti": 1, "via": 16, "firmato": 2, "coloro": 1, "scelto": 2, "candidati": 2, "uomo": 6, "stucchi": 1, "bernardini": 1, "stefanazzi": 1, "confronto": 2, "diverse": 1, "nascono": 1, "migliori": 2, "difesa": 6, "attacco": 4, "mai": 13, "state": 2, "deboli": 1, "uniti": 4, "indipendenti": 1, "servi": 1, "vince": 5, "bisogna": 4, "giocare": 1, "lealmente": 1, "quando": 4, "carte": 1, "vincenti": 1, "oscar": 4, "wilde": 1, "duman": 4, "matina": 2, "telelombardia": 14, "milioni": 3, "disoccupati": 2, "poveri": 5, "politici": 4, "destra": 2, "litigano": 1, "decadenze": 1, "magistratura": 1, "orlo": 1, "fallimento": 1, "pu\u00f2": 22, "intervista": 1, "massimo": 1, "fini": 2, "padania": 5, "proposte": 5, "cielo": 5, "lombardia": 18, "com": 7, "parti": 4, "lunga": 1, "discussione": 2, "decadenza": 3, "confesso": 3, "decadere": 1, "partecipato": 2, "persona": 2, "seguito": 1, "attraverso": 2, "radio": 10, "streaming": 4, "ancora": 12, "riuscito": 1, "vedere": 3, "convegno": 4, "segnaliamo": 1, "link": 1, "youtube": 3, "rivedere": 1, "intero": 1, "watch": 2, "v": 2, "mjfmmvvkf1g": 1, "feature": 1, "c4": 1, "overview": 1, "list": 1, "uuw2af": 1, "j2qizzmww99bs3e6q": 1, "regione": 8, "bei": 1, "progetti": 1, "stop": 7, "consumo": 1, "territorio": 1, "cemento": 1, "appalti": 1, "kilometro": 1, "zero": 1, "favoriamo": 1, "arrabbieranno": 1, "cresce": 3, "entusiasmo": 3, "sveglieranno": 1, "squadra": 9, "cucina": 2, "festa": 11, "spirano": 3, "tentando": 1, "mele": 1, "vediamo": 2, "berghem": 2, "no": 17, "day": 3, "seguite": 2, "lapadania": 3, "net": 3, "evitare": 1, "imu": 3, "aumentare": 2, "tasse": 9, "benzina": 4, "davvero": 5, "prepariamo": 1, "randelli": 1, "mirtilli": 1, "argentina": 1, "more": 1, "messico": 1, "arrivano": 2, "tantissime": 1, "richieste": 2, "posti": 4, "purtroppo": 2, "esauriti": 1, "potete": 4, "per\u00f2": 2, "seguire": 2, "sito": 4, "oppure": 2, "frequenze": 1, "libera": 5, "bosco": 1, "isolata": 1, "starci": 1, "giulia": 5, "bimbi": 4, "chiss\u00e0": 6, "rientra": 1, "ricevuto": 2, "applauso": 1, "santoro": 2, "quasi": 5, "commosso": 1, "secondo": 15, "intervento": 3, "liberiamo": 1, "folle": 2, "patto": 1, "stabilit\u00e0": 1, "abusi": 1, "edilizi": 1, "gran": 2, "sud": 4, "sanatoria": 1, "galera": 2, "colpevoli": 2, "miliardi": 2, "multa": 1, "societ\u00e0": 1, "gestiscono": 1, "slot": 2, "machine": 2, "regalo": 1, "svizzera": 2, "autonomia": 1, "serva": 1, "germania": 5, "criminale": 1, "salvarsi": 1, "andava": 1, "dietro": 5, "quinte": 4, "cambiare": 2, "canale": 4, "vecchie": 2, "care": 2, "cartoline": 1, "lancini": 2, "scriviamogli": 1, "ragazzi": 8, "sabato": 4, "pochi": 4, "disponibili": 1, "chiamate": 2, "parleremo": 1, "uscire": 5, "prof": 1, "bagnai": 1, "borghi": 1, "rinaldi": 1, "aspetto": 12, "insiemesipu\u00f2": 1, "continua": 3, "sciopero": 1, "famiglia": 2, "chiede": 3, "giorno": 5, "tranquillit\u00e0": 1, "spera": 2, "buone": 1, "notizie": 2, "convinto": 3, "fondato": 1, "nulla": 3, "rispetto": 2, "volont\u00e0": 1, "sospendiamo": 1, "altre": 3, "manifestazioni": 1, "padano": 3, "arrestato": 1, "ingiustamente": 1, "riprendi": 1, "mangiare": 3, "te": 2, "sano": 2, "forze": 1, "tasca": 2, "carta": 1, "telefonica": 1, "cartina": 1, "kit": 1, "accoglienza": 2, "scappati": 1, "tasche": 1, "piene": 2, "sopravvissuti": 1, "ospiti": 2, "assessorato": 1, "sostegno": 5, "sociale": 1, "sussidiariet\u00e0": 1, "accogliamo": 1, "coccoliamo": 1, "manteniamo": 1, "vogliono": 3, "bastaaaaaaaaa": 1, "espulsioni": 1, "controllo": 1, "frontiere": 1, "seriet\u00e0": 1, "sardegna": 3, "fango": 2, "soli": 3, "buon": 12, "marted\u00ec": 3, "stazione": 2, "viaggio": 3, "strasburgo": 6, "abbattere": 1, "ricostruire": 1, "operazione": 1, "castagne": 1, "banzai": 16, "oriana": 3, "fallaci": 3, "donna": 3, "scomoda": 1, "coraggiosa": 1, "pisapia": 17, "prende": 2, "perch\u00e8": 5, "strano": 2, "opposizione": 1, "aumenta": 2, "miliardo": 1, "tariffe": 1, "anni": 16, "evtutti": 1, "dobbiamo": 4, "dire": 5, "bravo": 1, "pisaoia": 1, "sciagura": 1, "massacro": 1, "bugia": 1, "beffa": 1, "calamit\u00e0": 1, "naturale": 1, "trasmissione": 3, "beghe": 1, "berlusconiani": 1, "alfaniani": 1, "machissenefregaaa": 1, "fiume": 2, "perbene": 3, "strade": 1, "adro": 5, "grazieeeeeeeeeee": 1, "molla": 3, "gi\u00f9": 4, "mani": 4, "onesti": 1, "piazza": 9, "gradisca": 2, "isonzo": 2, "invasione": 1, "clandestina": 2, "spazio": 4, "immigrato": 1, "portogruaro": 1, "veneto": 4, "tante": 4, "pramaggiore": 2, "formaggio": 3, "fuso": 2, "tagliata": 1, "contento": 1, "leghista": 7, "provincia": 2, "lago": 7, "como": 5, "mondo": 7, "luogo": 2, "pdl": 6, "spacca": 1, "falchi": 1, "colombe": 1, "pitonesse": 1, "pantere": 1, "tifo": 2, "nessuno": 5, "bitto": 1, "casera": 1, "sforzato": 1, "sapori": 1, "meglio": 4, "eroici": 1, "consiglieri": 1, "comunali": 2, "comunale": 3, "svegliare": 1, "togliere": 1, "destinati": 1, "restituirli": 1, "milanesi": 5, "delinquenti": 2, "manifestare": 1, "presso": 1, "identificazione": 1, "espulsione": 1, "cie": 1, "venerd\u00ec": 8, "bagnato": 1, "fortunato": 1, "bologna": 2, "bimba": 2, "decisione": 1, "minorile": 2, "parere": 2, "procura": 1, "data": 1, "affido": 2, "temporaneo": 1, "coppia": 2, "omosessuale": 1, "coppie": 2, "banali": 1, "composte": 1, "aspettano": 1, "spendono": 2, "cifre": 1, "adozione": 1, "qualcuno": 7, "vuole": 5, "contrario": 1, "arrendo": 1, "tradizione": 1, "identit\u00e0": 2, "impegno": 1, "fatica": 3, "allegria": 1, "ripensavo": 1, "storia": 4, "baby": 1, "prostitute": 2, "prostituire": 1, "razza": 1, "brutta": 1, "bestiaccia": 1, "addio": 2, "semplice": 1, "fedele": 1, "compagno": 1, "telefonate": 3, "mancherai": 1, "fate": 5, "buttare": 1, "cose": 5, "lastampa": 1, "indf2wfkancpqxz4s6uvmn": 1, "pagina": 6, "manifesti": 1, "giro": 4, "manifestazione": 2, "girano": 2, "girare": 4, "video": 1, "guadagnato": 1, "disoccupazione": 2, "scesa": 1, "drammaticamente": 1, "cresciuta": 1, "certo": 2, "dicono": 3, "morendo": 3, "dite": 4, "iene": 1, "sembrano": 1, "squallide": 1, "pecore": 1, "congresso": 4, "parla": 4, "gad": 1, "lernerrrrrrr": 1, "matteo": 2, "prossimo": 3, "segretario": 1, "notizia": 4, "neppure": 2, "collezionato": 1, "successi": 1, "scomparendo": 1, "lernerrrrr": 1, "vuol": 2, "lavorando": 1, "arrende": 1, "vede": 1, "ripresa": 1, "s\u00ec": 2, "ri": 2, "culo": 1, "nostalgia": 1, "sorriso": 4, "ricordo": 1, "tempi": 2, "cabine": 1, "gettoni": 1, "stesso": 3, "goccia": 2, "dopo": 7, "scolpire": 1, "tantissimi": 1, "bambini": 3, "terribile": 1, "tempesta": 1, "filippine": 1, "preghiera": 2, "ciascuno": 1, "articoli": 2, "tirando": 1, "ballo": 2, "pazienza": 1, "lasciamole": 1, "odia": 2, "teme": 1, "quinto": 1, "ennio": 1, "poeta": 1, "latino": 1, "aria": 1, "curiosa": 1, "tende": 1, "saluta": 1, "aiutiamo": 2, "tessere": 1, "fatte": 2, "regalate": 1, "moltiplicate": 1, "possiamo": 2, "aiutarli": 1, "amico": 3, "conoscente": 1, "viandante": 1, "mendicante": 1, "super": 2, "eroe": 1, "regalare": 2, "tessera": 1, "kompagni": 3, "maxi": 2, "rissa": 3, "famiglie": 2, "rivali": 1, "ospedale": 4, "raffaele": 1, "sprangate": 1, "feriti": 3, "morto": 3, "partenza": 1, "zaino": 1, "gioia": 1, "tauro": 1, "ragazzini": 1, "segregati": 1, "campo": 4, "l\u00ec": 1, "boldrini": 8, "passate": 1, "evviva": 2, "integrazione": 10, "zingari": 1, "posso": 3, "chiedervi": 1, "personale": 1, "assolutamente": 1, "letto": 2, "indipendentista": 1, "sveglia": 5, "offro": 1, "tele": 3, "caff\u00e8": 2, "gold": 2, "simpatico": 1, "tizio": 1, "corriere": 6, "scrive": 1, "proposito": 1, "speriamo": 2, "minipartito": 1, "stampo": 1, "medievale": 1, "sparisca": 1, "parassiti": 1, "vorrebbero": 1, "paese": 7, "aspetta": 1, "intervengo": 2, "torniamo": 1, "padroni": 1, "ambiente": 2, "torneremo": 1, "crescere": 1, "produrre": 1, "sperare": 2, "vivere": 2, "tavola": 1, "salsa": 1, "pomodoro": 1, "pom\u00ec": 2, "azienda": 2, "pubblicizza": 1, "prodotto": 2, "dicendo": 1, "materia": 1, "viene": 6, "regioni": 1, "emilia": 1, "romagna": 1, "debba": 2, "scattare": 1, "accusa": 2, "roba": 3, "matti": 2, "brava": 2, "alcuni": 2, "imbecilli": 1, "insultano": 3, "grigio": 2, "smettere": 1, "crederci": 1, "combattere": 5, "vivente": 1, "molte": 2, "molta": 1, "sicurezza": 4, "cio\u00e9": 1, "attacca": 1, "tagliatelle": 1, "funghi": 1, "tiramisu": 1, "genep\u00ec": 1, "augh": 1, "ziano": 1, "piacentino": 1, "avanti": 5, "campagna": 3, "lombarda": 1, "emiliana": 1, "viale": 1, "lunigiana": 1, "lavavetri": 1, "rompiballe": 1, "incrocio": 1, "sveglione": 1, "mandare": 1, "preziose": 1, "risorse": 2, "andranno": 1, "ripulire": 1, "magari": 4, "case": 7, "davanti": 2, "gentile": 1, "topi": 1, "abusivi": 3, "varia": 2, "natura": 2, "parlano": 3, "rainews": 1, "incontrando": 2, "sapere": 3, "cacchio": 2, "misterioso": 1, "ministra": 5, "inutile": 2, "straniero": 2, "evasore": 1, "fiscale": 3, "norme": 1, "vanno": 5, "cambiate": 1, "popolari": 4, "contributi": 1, "referendum": 1, "leggerina": 1, "chili": 1, "piccante": 1, "birra": 1, "viva": 3, "pancetta": 1, "pulita": 1, "periferia": 1, "interessare": 1, "importanti": 2, "balotelli": 1, "tagliato": 1, "capelli": 1, "machissenefregaaaaaaa": 1, "povero": 2, "calcio": 2, "povera": 2, "reti": 1, "unificate": 1, "ogni": 13, "daranno": 1, "ricordare": 1, "cesarino": 1, "lazzate": 1, "intitolando": 1, "stand": 1, "strapieno": 1, "cibo": 1, "esaurito": 1, "sorrisi": 3, "spazi": 1, "partiti": 1, "vuoti": 1, "donne": 4, "venete": 1, "cucinare": 1, "polenta": 2, "polipo": 1, "noventa": 1, "padovana": 1, "dedico": 1, "amiche": 1, "vivono": 1, "trentino": 3, "voti": 4, "sbagli": 1, "piero": 2, "mazzarella": 1, "zuzzurro": 1, "teatro": 4, "abbastanza": 2, "apprezzati": 1, "valorizzati": 1, "romani": 2, "portate": 1, "buono": 1, "congo": 2, "cozze": 2, "kili": 3, "vermentino": 1, "poca": 2, "spesa": 2, "resa": 2, "bandiere": 2, "rappresentavano": 1, "stati": 4, "sovrani": 1, "rappresentano": 1, "schiavi": 2, "finanza": 2, "euroburocrati": 1, "mostro": 1, "comuni": 3, "lombardi": 3, "movimento": 1, "rompiamoilpatto": 2, "org": 2, "leggere": 1, "ostellino": 1, "salvifico": 1, "esiste": 2, "ahim\u00e8": 1, "milan": 5, "barcellona": 1, "finisce": 2, "sbarcati": 2, "sicilia": 3, "ricominciamo": 1, "usare": 1, "giuste": 1, "parole": 6, "carcere": 1, "tranquilli": 2, "liberate": 1, "indulto": 1, "picchieranno": 1, "vincere": 3, "consapevolezza": 1, "istante": 1, "vivendo": 1, "davide": 1, "van": 1, "sfroos": 1, "riceve": 1, "letterine": 1, "affettuose": 1, "et\u00e0": 2, "gi\u00e0": 3, "imparato": 1, "troppe": 1, "parolacce": 1, "cediamo": 1, "repubblica": 2, "mega": 2, "stipendi": 2, "programmi": 1, "inguardabili": 1, "faziosi": 1, "luned\u00ec": 1, "aspettiamo": 2, "incredibile": 2, "sacconi": 1, "sprechi": 1, "piccoli": 1, "ospedali": 1, "universit\u00e0": 1, "vergognatiiiiiii": 1, "discutono": 1, "pascale": 1, "lesbica": 1, "m": 1, "suggerirvi": 1, "piaceeeeeeeee": 1, "balle": 1, "riusciamo": 1, "arrivare": 2, "condivisioni": 3, "commissione": 1, "imporre": 1, "etichette": 1, "scritto": 2, "chiaramente": 1, "arriva": 3, "orgogliosamente": 1, "gioved\u00ec": 1, "vento": 1, "pulito": 1, "adamello": 2, "ripulisca": 1, "grappa": 1, "passi": 2, "silenzio": 2, "acqua": 3, "luna": 2, "nuvole": 1, "niente": 5, "divisi": 1, "confine": 2, "valore": 1, "militante": 1, "adesivi": 1, "boschi": 2, "val": 1, "rendena": 1, "arrivo": 1, "sopralluogo": 2, "signora": 7, "invalida": 1, "carrozzina": 1, "vive": 3, "piano": 1, "ascensore": 1, "montascale": 1, "istituzioni": 1, "mollano": 1, "troverai": 1, "libri": 4, "rocce": 1, "insegneranno": 1, "maestro": 1, "dir\u00e0": 1, "bernardo": 1, "chiaravalle": 1, "grillini": 1, "clandesitini": 1, "padana": 3, "vincente": 1, "sezione": 4, "casalbuttano": 1, "brunch": 1, "kiki": 1, "minniti": 1, "bolliti": 1, "bue": 1, "grasso": 1, "tonno": 1, "riso": 1, "patate": 1, "razzisti": 1, "brutti": 2, "cattivi": 1, "tranquilla": 2, "citt\u00e0": 7, "legalit\u00e0": 1, "parleranno": 1, "emiliani": 1, "presenti": 2, "leghistaaaa": 1, "stupendo": 2, "sindaca": 1, "gamba": 1, "fatti": 6, "tgcoreadelnord": 1, "cio\u00e8": 1, "tg3": 2, "servita": 1, "alimentare": 1, "paure": 1, "chiacchiera": 1, "arriviamo": 2, "fratello": 1, "vezzoli": 1, "colonna": 2, "aiutaci": 1, "alto": 2, "rapine": 2, "stupri": 1, "violenze": 1, "aggressioni": 1, "machete": 2, "arrestati": 1, "americani": 1, "dintorni": 1, "attende": 1, "duo": 1, "colpa": 3, "integrati": 1, "tuta": 1, "augura": 1, "gruppo": 9, "ceriano": 1, "laghetto": 1, "scoperte": 1, "milione": 2, "fantasma": 2, "immobili": 1, "beccati": 1, "campania": 1, "calabria": 1, "puglia": 2, "insivisibile": 1, "zanzara": 3, "cruciani": 1, "parenzo": 1, "magna": 1, "scala": 2, "volta": 4, "infatti": 1, "decreto": 4, "cultura": 4, "approvato": 2, "contraria": 1, "sovrintendente": 1, "verr\u00e0": 1, "nominato": 2, "ministero": 2, "trovato": 1, "seminato": 1, "virus": 1, "menzogna": 1, "odio": 1, "capisco": 2, "stanchezza": 1, "strazio": 1, "stress": 1, "bel": 2, "tacer": 1, "indispensabili": 1, "presidi": 1, "adeguati": 1, "lungo": 2, "coste": 1, "partono": 1, "viaggi": 1, "disperazione": 1, "anziano": 1, "svegliato": 1, "maroni": 6, "pattugliamenti": 1, "controlli": 3, "avvisato": 1, "alfano": 1, "dubbio": 2, "visto": 4, "papa": 3, "ormai": 1, "telefona": 1, "giorni": 7, "numero": 3, "privato": 1, "arrivava": 1, "anzi": 2, "guardo": 1, "saluti": 1, "taxi": 1, "vola": 1, "ascoltato": 1, "parlato": 3, "urlato": 1, "litigato": 1, "intervenuto": 1, "ringrazio": 1, "conferma": 1, "rimane": 2, "scelta": 2, "salvare": 1, "sconcerto": 1, "approvazione": 1, "brunetta": 1, "demicheli": 1, "mauro": 1, "diminuisce": 1, "prezzo": 1, "fino": 3, "centesimi": 1, "litro": 2, "abitano": 1, "province": 1, "benzinai": 2, "consumatori": 1, "ringraziano": 1, "pubblicamente": 1, "promesso": 2, "biscione": 1, "ponte": 2, "levatoio": 1, "vittorie": 2, "liberarci": 2, "pasta": 1, "tradizionale": 2, "pomeriggio": 2, "vittorio": 2, "lavorare": 1, "cucine": 1, "modello": 2, "barilla": 2, "giuliano": 1, "amato": 1, "yoyo": 1, "gioca": 1, "educativa": 1, "seria": 1, "utile": 1, "colazione": 1, "tradizionali": 1, "biscotti": 1, "mulino": 1, "bianco": 1, "vengono": 3, "trattati": 1, "sgomberi": 1, "pancia": 1, "ruba": 2, "stipendio": 1, "esce": 1, "merda": 1, "bocca": 2, "perbacco": 1, "principessa": 1, "chiare": 1, "rispettose": 1, "utili": 1, "approfondite": 1, "domanda": 1, "ama": 2, "mantiene": 2, "europeo": 1, "diritto": 1, "confezionati": 1, "prodotti": 1, "contatto": 1, "resto": 3, "ultimi": 2, "sviluppi": 1, "umiliazione": 2, "invece": 7, "governi": 2, "vera": 1, "popolare": 2, "tal": 2, "mirco": 1, "rota": 2, "fiom": 1, "cgil": 1, "dichiarato": 1, "valcamonica": 3, "guidato": 1, "protesta": 1, "piccolo": 2, "lavoratori": 3, "nascondere": 1, "lombardoa": 1, "vergognati": 1, "poveretto": 1, "entra": 3, "acciaierie": 1, "riva": 2, "rispetta": 1, "operai": 3, "iscritti": 1, "incazzati": 2, "sindacalisti": 1, "seduti": 1, "statale": 3, "bloccare": 2, "serve": 3, "distante": 1, "abbiati": 1, "zapata": 1, "allegri": 2, "galliani": 1, "cazzo": 2, "buttiamo": 1, "torre": 1, "atm": 1, "roberto": 1, "brianza": 1, "dedicata": 1, "onlus": 1, "cancro": 1, "aiuto": 6, "aiuta": 2, "gratuitamente": 1, "malati": 1, "curarsi": 1, "avere": 4, "eh": 1, "vetro": 1, "lavo": 1, "spasso": 1, "scuola": 2, "raccolta": 1, "differenziata": 1, "domeniche": 1, "ingresso": 1, "abusivo": 1, "privata": 1, "iceberg": 1, "feltri": 1, "carmela": 1, "rozza": 1, "licia": 1, "ronzulli": 1, "preferite": 1, "leggervi": 1, "ferma": 3, "nessunoooooo": 1, "guardando": 1, "cappelletta": 1, "noale": 1, "quei": 2, "figli": 2, "eroicamente": 1, "caduti": 1, "orgogliosi": 2, "italietta": 1, "edizione": 1, "lettera": 1, "genitore": 1, "figlio": 1, "mesi": 7, "quest": 1, "andare": 1, "nido": 1, "unico": 2, "bimbo": 5, "classe": 1, "arabi": 1, "romeni": 1, "sudamericani": 1, "indiani": 1, "pachistani": 1, "albanese": 2, "combattuti": 1, "adoro": 5, "profumo": 1, "legna": 1, "brucia": 1, "storie": 2, "sentito": 1, "raccontare": 1, "ligure": 1, "dedicato": 2, "mercato": 3, "osoppo": 2, "anziana": 1, "frutta": 3, "verdura": 2, "abbandonate": 1, "cassette": 1, "vuote": 1, "aiutare": 6, "perla": 1, "signorino": 2, "ministro": 2, "cecile": 1, "importante": 2, "penso": 5, "nominare": 1, "colore": 1, "pelle": 1, "svegliaaaaaaa": 1, "chiamarmi": 1, "chiamatlo": 1, "salutiamoooo": 1, "momenti": 1, "tacere": 2, "diventa": 2, "obbligo": 1, "indovinate": 1, "qual": 1, "menata": 1, "tigg\u00ec": 1, "commenti": 3, "polo": 2, "alberto": 1, "giussano": 1, "ammazzano": 1, "colpi": 1, "bergamo": 1, "muore": 2, "dottoressa": 1, "italiana": 1, "fermata": 1, "soccorrere": 1, "investita": 1, "bestie": 1, "sdegno": 1, "accogliente": 1, "messaggio": 1, "resta": 1, "successo": 2, "mette": 1, "guardia": 1, "pericolose": 1, "correnti": 1, "scetticismo": 1, "rifiuto": 1, "verso": 2, "indispensabile": 1, "ulteriore": 1, "pericoloso": 1, "massacrando": 2, "uccidendo": 2, "moooolto": 1, "pericolosi": 1, "pure": 1, "tifosi": 1, "costo": 2, "compreso": 1, "politicamente": 4, "corretto": 3, "dirlo": 1, "castano": 1, "palazzago": 1, "andate": 1, "trovarli": 1, "tombola": 1, "ottima": 2, "veramente": 1, "pugni": 2, "insulti": 2, "processo": 2, "sorella": 1, "madddaiiiiiiiiii": 1, "violenza": 2, "integrare": 1, "occhio": 2, "accade": 1, "assessore": 3, "picchiare": 1, "ossignur": 2, "noto": 1, "menare": 1, "certa": 1, "allergica": 1, "combatte": 3, "senato": 2, "battuto": 1, "passa": 1, "proposta": 1, "apertura": 1, "nuove": 1, "sale": 1, "gioco": 1, "azzardo": 1, "datevi": 1, "buguggiate": 1, "varese": 1, "poetica": 1, "immensa": 1, "cinema": 1, "poich\u00e9": 1, "imparare": 1, "camminare": 1, "volare": 2, "prova": 1, "ascoltarvi": 1, "antenna": 3, "telefonarmi": 1, "vecchi": 2, "bormio": 2, "avvistato": 1, "senatore": 1, "cervo": 1, "assassino": 1, "gioielliera": 1, "sarono": 1, "confessato": 1, "ucciso": 2, "sbandato": 1, "disoccupato": 1, "sicuro": 1, "cercher\u00e0": 1, "capirlo": 1, "finisca": 1, "formiche": 1, "lavorano": 1, "matte": 1, "cicale": 2, "spandono": 1, "formica": 1, "vadano": 1, "farsi": 1, "fottere": 1, "gol": 1, "camera": 2, "merito": 2, "bombardini": 1, "ultime": 2, "soffrono": 1, "precariato": 1, "cassa": 1, "politico": 2, "pagato": 1, "accordo": 1, "livigno": 1, "diesel": 1, "dovessimo": 1, "incontro": 3, "aaron": 1, "swartz": 1, "attivista": 1, "americano": 1, "sotto": 6, "lottato": 1, "favore": 1, "circolazione": 1, "conoscenze": 1, "suicida": 1, "ragazzo": 2, "accettato": 1, "rischiare": 1, "ideali": 1, "approfittando": 1, "agosto": 3, "giunta": 5, "raddoppiato": 1, "pensionati": 2, "studenti": 1, "abbonamento": 1, "colpo": 1, "maledetti": 1, "pagare": 3, "caro": 2, "finiti": 2, "elettori": 3, "solbiate": 2, "presente": 1, "feste": 1, "arcisate": 1, "olona": 1, "giovani": 5, "padani": 7, "mica": 2, "capriata": 1, "pozzallo": 1, "totalmente": 1, "ubriachi": 1, "accogli": 1, "sorridi": 1, "pensa": 2, "senn\u00f2": 1, "pronta": 2, "stadio": 1, "commentare": 1, "campionato": 1, "kilometri": 1, "coda": 3, "capriate": 1, "direzione": 4, "lavori": 5, "corso": 2, "rientro": 1, "complimenti": 1, "pirla": 3, "programmano": 1, "fest": 1, "bolgare": 1, "sangue": 3, "centrale": 1, "turisti": 1, "accoltellato": 2, "torace": 1, "grave": 1, "tunisino": 1, "sfregiato": 1, "volto": 1, "ordinaria": 1, "mattina": 2, "ricomincia": 1, "informazione": 1, "scontro": 1, "finire": 3, "stacca": 1, "spina": 1, "cade": 2, "tace": 1, "verit\u00e0": 2, "scatole": 1, "montagne": 5, "esistono": 1, "vite": 2, "mondi": 1, "impegna": 1, "migliorare": 1, "aziende": 2, "profughi": 1, "preoccuparsi": 1, "sbarca": 1, "piuttosto": 2, "bisognosi": 1, "condizioni": 1, "avanzano": 1, "chiama": 1, "senso": 1, "sbaglio": 1, "redditometro": 2, "regime": 1, "fascista": 1, "scegliete": 1, "spese": 1, "inserite": 1, "potrebbero": 1, "costarvi": 1, "troviamo": 2, "scolastici": 1, "visite": 1, "veterinario": 1, "cagnolini": 1, "gatti": 1, "piante": 1, "bolletta": 1, "succhi": 1, "medicine": 1, "soprattutto": 4, "verranno": 1, "controllate": 1, "donazioni": 1, "associazioni": 1, "volontariato": 1, "autunno": 3, "caldo": 2, "arrivando": 1, "centri": 5, "islamici": 2, "egitto": 2, "none": 1, "islam": 1, "mettono": 1, "ferro": 1, "apriamo": 1, "porte": 1, "barricate": 1, "melzo": 2, "ballare": 1, "evvai": 1, "tornanti": 1, "selvino": 1, "guida": 1, "parcheggio": 1, "ovunque": 1, "pontida": 2, "mortitolo": 1, "combatt\u00e9": 1, "scacciare": 1, "occupante": 1, "riparte": 2, "riprenderci": 1, "migliaio": 2, "ferragosto": 1, "legno": 1, "esagerati": 1, "semifinale": 1, "torneo": 1, "notturno": 1, "calcetto": 1, "oratorio": 1, "vezza": 1, "oglio": 1, "lanceremo": 1, "serrata": 1, "totale": 2, "puntiamo": 1, "negozi": 2, "stalle": 1, "scuole": 3, "piscine": 1, "priorit\u00e0": 2, "contributo": 2, "invalidit\u00e0": 1, "vere": 1, "beccare": 1, "falsi": 1, "invalidi": 1, "dormono": 1, "combatteremo": 1, "schiava": 1, "poteri": 1, "forti": 1, "finita": 1, "servir\u00e0": 1, "costi": 1, "cazzate": 1, "settimana": 2, "tucc": 1, "sperando": 1, "governaccio": 1, "pensi": 1, "tassare": 1, "vista": 3, "scelte": 1, "edicola": 1, "week": 2, "sfigati": 2, "melone": 1, "calvenzano": 1, "gnocchi": 1, "burro": 1, "insalata": 1, "ravanelli": 1, "bicchieri": 1, "rosso": 1, "salento": 1, "fetta": 1, "crostata": 1, "grappino": 1, "telefilm": 1, "perde": 3, "lottare": 2, "messaggi": 1, "molti": 2, "stranieri": 2, "firmare": 1, "abolire": 1, "ipocrita": 1, "andremo": 1, "posto": 2, "annuncia": 1, "pene": 1, "severe": 1, "confronti": 1, "mariti": 1, "violenti": 1, "approvare": 1, "svuota": 3, "legga": 1, "ministeri": 1, "fessi": 1, "occupano": 1, "montagna": 1, "bicierin": 1, "grapa": 1, "coro": 1, "alpino": 1, "canta": 1, "signore": 1, "cime": 1, "stereo": 1, "invecchiando": 1, "arcene": 2, "gara": 1, "barbe": 1, "belle": 2, "vado": 3, "nerviano": 1, "incontrare": 1, "ascoltare": 3, "veniano": 2, "trota": 2, "preso": 2, "laghetti": 1, "alpini": 1, "appuntamento": 1, "comasco": 1, "valbrona": 1, "arcore": 2, "volante": 1, "villa": 1, "mooolto": 1, "bancarelle": 1, "smontano": 1, "nonni": 1, "nipotini": 1, "cercano": 1, "avanzi": 1, "piacerebbe": 1, "pensassero": 1, "difficolt\u00e0": 4, "vergogno": 1, "dolcetto": 1, "dietetico": 1, "profiterole": 1, "panna": 1, "montata": 1, "inviti": 1, "pranzo": 1, "corgeno": 1, "scoprono": 1, "angoli": 1, "stupendi": 1, "soddisfatto": 1, "arrivate": 1, "economico": 1, "genitori": 4, "separati": 4, "divorziati": 2, "voluto": 1, "mese": 2, "residente": 1, "tema": 1, "concreti": 3, "informazioni": 1, "contattare": 1, "asl": 1, "zona": 1, "esulto": 1, "condanna": 2, "semmai": 1, "troppi": 2, "kabobo": 1, "n\u00e8": 2, "avversario": 1, "sentenze": 1, "batte": 1, "temo": 1, "cadr\u00e0": 1, "interessi": 1, "economici": 1, "appello": 1, "unit\u00e0": 1, "coesione": 1, "interesse": 1, "supremo": 1, "significa": 1, "poltrona": 1, "continuare": 2, "svendere": 2, "guardare": 1, "succede": 1, "usando": 1, "disubbidienza": 1, "rabbia": 1, "guidare": 1, "rivolta": 1, "uomini": 2, "dipende": 2, "schiuma": 1, "party": 1, "colico": 1, "condannato": 2, "curioso": 1, "sentire": 1, "giustificare": 1, "geniale": 1, "autostrada": 3, "luglio": 1, "dalmine": 1, "venaria": 1, "presentazione": 2, "favo": 1, "riusciremo": 1, "concretamente": 1, "circa": 1, "inizio": 1, "arrabbiarmi": 1, "sopporto": 1, "falsit\u00e0": 1, "ipocrisia": 2, "direttore": 1, "quotidiano": 1, "ovviamente": 2, "rivolgendosi": 1, "schifo": 2, "venite": 1, "qua": 1, "mezza": 1, "lavoreresti": 1, "altrove": 1, "debbio": 1, "sallusti": 1, "sinceri": 1, "accoglienti": 1, "tolleranti": 1, "indignati": 1, "offese": 1, "insultare": 1, "minacciare": 1, "tenerezza": 1, "tosta": 1, "sorridente": 1, "missaglia": 3, "comunque": 4, "missoltini": 1, "volontari": 1, "marcallo": 1, "muggi\u00f2": 1, "gazebo": 4, "papiniano": 2, "libricini": 1, "primi": 2, "sudato": 1, "fradicio": 1, "smontato": 1, "trasferito": 1, "spalla": 1, "piani": 1, "scaleeee": 1, "palazzo": 3, "sforzi": 1, "sovrumani": 1, "finta": 1, "crema": 1, "cremona": 1, "balla": 1, "borsa": 1, "liscio": 2, "cioccolatini": 1, "pernigotti": 1, "finiscono": 1, "straniere": 1, "comprare": 1, "turca": 1, "smetter\u00f2": 1, "comprarli": 1, "ennesima": 1, "dimostrazione": 1, "molliamo": 1, "perderemo": 1, "produzione": 1, "cartello": 1, "stradale": 1, "telefonare": 2, "precedente": 1, "espresso": 1, "ragazziiiiiii": 1, "treviglio": 1, "fregatura": 1, "sbarchi": 1, "lasciati": 1, "contano": 1, "multinazionali": 1, "volere": 1, "53egzsrsepo": 1, "goito": 3, "scriverete": 1, "griglia": 1, "sappiamo": 1, "piangere": 1, "falso": 1, "chiedere": 1, "parenti": 1, "vittime": 1, "cassano": 1, "magnago": 1, "gufi": 1, "alserio": 1, "boffalora": 1, "ticino": 1, "castelcovati": 1, "svegliaa": 1, "virtuale": 1, "telefonando": 1, "chiudo": 1, "ritiro": 1, "bandiera": 1, "superato": 1, "quota": 1, "ride": 1, "incomincia": 1, "emettere": 1, "suoni": 1, "gorgheggi": 1, "difficile": 1, "comprensione": 1, "bersani": 5, "parola": 2, "troppa": 1, "moderato": 1, "nooo": 1, "rischiano": 1, "tomba": 1, "testa": 1, "siria": 1, "ribelli": 1, "ultr\u00e0": 1, "sgozzato": 1, "guerra": 1, "orizzonte": 1, "primavere": 1, "arabe": 1, "sinistre": 1, "occidentali": 1, "osannato": 1, "alimentato": 1, "armato": 1, "guardasse": 1, "chiamatelo": 1, "rimandare": 1, "rinvia": 1, "aumento": 1, "iva": 1, "compenso": 1, "irpef": 1, "acconto": 1, "fumo": 1, "colare": 1, "picco": 1, "fretta": 1, "svegliaaa": 1, "chiamare": 2, "segnalare": 1, "daiiiii": 2, "borgomanero": 1, "spegne": 1, "televisione": 1, "accende": 1, "cervello": 1, "stra": 1, "dibattito": 1, "regionale": 1, "assente": 1, "interessano": 2, "interessa": 1, "pagamento": 1, "presentare": 1, "tutela": 1, "promesse": 2, "votato": 1, "commerciali": 3, "distribuzione": 1, "bilico": 1, "presunta": 1, "trombata": 1, "sconti": 1, "pena": 3, "ripartire": 1, "melma": 1, "morta": 1, "scomparsa": 1, "telefonato": 1, "rivolti": 1, "litigi": 1, "pernacchie": 1, "osio": 2, "agora": 1, "onda": 1, "indosso": 1, "sar\u00f3": 3, "salto": 2, "caronno": 1, "varesino": 1, "paga": 2, "sedere": 1, "grigliata": 1, "bellooooooo": 1, "benvenuta": 1, "mondiale": 1, "donazione": 1, "dona": 1, "splendido": 1, "parlarmi": 2, "esporre": 1, "problema": 2, "vorrei": 1, "autonomie": 1, "insegna": 1, "bar": 1, "duomo": 1, "visitare": 1, "assssolutamente": 1, "danno": 1, "fondamentale": 1, "minetti": 1, "amava": 1, "merita": 1, "sento": 1, "rabbioso": 1, "arrogante": 1, "scompaia": 1, "bussolengo": 1, "riforme": 1, "avvisa": 1, "economicamente": 2, "decide": 1, "preparando": 1, "cormano": 1, "solito": 1, "casino": 1, "pezzo": 2, "ode": 1, "to": 1, "my": 1, "family": 1, "stanco": 1, "fiducioso": 2, "wow": 1, "arrivati": 2, "grazieeeeeeeeee": 1, "ebb\u00e8": 1, "quinta": 1, "riconfermato": 1, "allenatore": 1, "valsa": 1, "risposta": 1, "piccola": 3, "rivoluzionaria": 1, "zeta": 1, "palmanova": 1, "impressionante": 2, "semaforo": 1, "rose": 1, "dico": 2, "indovina": 1, "situazione": 1, "continuando": 1, "dovremo": 1, "prudenti": 1, "passati": 1, "futuri": 1, "cuori": 1, "riconquistare": 1, "discutere": 1, "ragionare": 1, "disfattisti": 1, "militare": 1, "gola": 1, "parigi": 1, "polizia": 2, "dando": 1, "caccia": 1, "nordafricano": 2, "confermata": 1, "mammamia": 1, "dovrebbero": 1, "obbligatori": 1, "ascoltano": 1, "vasco": 1, "meda": 1, "cantano": 1, "finestrino": 1, "abbassato": 1, "lombarde": 1, "innevate": 1, "sfondo": 1, "incredibileeeeeeeee": 1, "perfino": 1, "boccia": 1, "grillino": 1, "vito": 1, "crimi": 1, "velocit\u00e0": 2, "sfida": 1, "passare": 1, "vent": 2, "morivano": 1, "mafia": 1, "magistrato": 1, "giovanni": 1, "falcone": 1, "moglie": 1, "francesca": 1, "diversi": 1, "scorta": 1, "coerente": 1, "coraggioso": 1, "isolato": 1, "osteggiato": 1, "progressisti": 1, "ipocritamente": 1, "ricordano": 1, "mafie": 1, "appena": 4, "volantinaggio": 1, "brescia": 2, "domande": 1, "firme": 2, "raccolte": 1, "critica": 3, "tenete": 1, "duro": 1, "lodi": 2, "trovano": 1, "risveglieranno": 1, "vuota": 2, "insicura": 1, "mentre": 2, "propone": 1, "angolo": 2, "sant": 1, "agostino": 1, "raccogliere": 1, "difendere": 1, "reato": 2, "clandestinit\u00e0": 2, "televisioni": 1, "fotografi": 1, "ciaoooo": 1, "vieniafirmare": 1, "trovate": 1, "indirizzi": 1, "bacheche": 1, "incazzato": 2, "morire": 1, "niguarda": 1, "quartiere": 1, "picconatore": 1, "sparso": 1, "innocente": 1, "fermati": 1, "contestato": 1, "dedicati": 1, "titoli": 1, "pennivendoli": 1, "anti": 2, "incontrato": 1, "speranze": 2, "intatti": 1, "ciauuu": 2, "comunione": 1, "fede": 1, "buond\u00ec": 1, "chiamatemi": 2, "entro": 1, "vittore": 1, "liberata": 2, "frustrati": 1, "vari": 1, "visita": 1, "finanziati": 1, "ben": 1, "spesi": 1, "salvate": 1, "contesto": 1, "impensabile": 1, "sfido": 1, "gradi": 1, "ricerca": 1, "madre": 1, "teresa": 1, "calcutta": 1, "riesce": 1, "sorridere": 1, "condividete": 1, "accaldato": 1, "dubai": 1, "condividiamo": 1, "sociali": 1, "disposizione": 1, "sfogatevi": 1, "profitti": 1, "multinazionale": 1, "battersi": 1, "diritti": 2, "celiaci": 1, "bello": 4, "riuscre": 1, "risolvere": 2, "installare": 1, "ascensori": 1, "disabili": 2, "sistemazione": 1, "alcune": 2, "recupero": 1, "giardino": 1, "mamme": 2, "graduatorie": 1, "materne": 1, "telefonatemi": 1, "eccomi": 1, "sbarcato": 1, "madonnina": 1, "sentite": 1, "comiziare": 1, "aprile": 2, "compagna": 1, "amica": 1, "laura": 1, "prevedo": 1, "fiumi": 1, "buonismo": 1, "retorica": 1, "faziosit\u00e0": 1, "bla": 2, "partigiani": 1, "sapessero": 1, "andata": 1, "equitalia": 1, "deciso": 1, "eccellente": 1, "giusto": 1, "buttati": 1, "matrimoni": 1, "adozioni": 1, "omosessuali": 2, "buio": 1, "cancella": 1, "radici": 1, "francia": 1, "esultanza": 1, "mode": 1, "linate": 1, "protestare": 1, "prefettura": 1, "chiuder\u00e0": 1, "monforte": 1, "fischietti": 1, "mortadella": 1, "amore": 1, "incompreso": 1, "turchia": 2, "n\u00e9": 3, "umani": 1, "potr\u00e0": 1, "entrarci": 1, "vermi": 1, "bombe": 1, "boston": 1, "abbracciato": 1, "pap\u00e0": 2, "ebbene": 1, "riescano": 1, "dormire": 1, "miseri": 1, "felice": 1, "inaugurazione": 1, "buzzi": 1, "psicologicamente": 1, "proseguire": 1, "gravidanza": 1, "contribuito": 1, "nascita": 1, "fin": 1, "inizi": 1, "altrimenti": 1, "rimasti": 1, "conosciuto": 1, "bimbe": 1, "vestitino": 1, "rosa": 1, "ciuccio": 1, "nata": 1, "sorride": 1, "emozione": 1, "tuttiicriminidegliimmigrati": 1, "date": 1, "compie": 1, "abbraccia": 1, "collego": 1, "macchina": 1, "leggo": 2, "bari": 1, "giunte": 1, "comizio": 1, "sivlio": 1, "pensavo": 1, "cavaliere": 1, "sbagliato": 1, "grosso": 1, "end": 1, "friuli": 1, "udine": 1, "giacomo": 1, "fogliano": 1, "redipuglia": 1, "gorizia": 1, "monfalcone": 1, "tour": 1, "prevede": 1, "grado": 1, "cordenons": 1, "meduno": 1, "zoppola": 1, "pordenone": 1, "furlans": 1, "stamattina": 2, "abbandonato": 1, "montefeltro": 1, "okkupato": 1, "rendono": 1, "residenti": 3, "suona": 1, "speremm": 1, "sorridenti": 1, "litigiosi": 1, "motivati": 1, "marciamo": 1, "compatti": 1, "tortelli": 1, "zucca": 1, "ultrasettantenni": 1, "sottoscrivere": 1, "polizza": 1, "assicurativa": 1, "gratuita": 1, "furti": 1, "scippi": 1, "info": 1, "locale": 1, "azz": 1, "bilancia": 1, "medico": 1, "avis": 1, "assegna": 1, "consigli": 1, "chilo": 1, "coscienza": 1, "suicidi": 2, "civitanova": 1, "marche": 1, "scandalizza": 1, "scherzo": 1, "radiofonico": 1, "imitazione": 1, "figuraccia": 1, "professor": 1, "onida": 1, "imitazioni": 1, "scandalizzato": 1, "satira": 1, "passo": 1, "cambia": 1, "riposo": 1, "ricordandosi": 1, "obiettivo": 1, "ultimo": 1, "splendidi": 1, "vogliamo": 1, "sovraffollamento": 1, "scontare": 1, "detenuti": 1, "origine": 1, "sicure": 1, "vivibili": 1, "risparmieremo": 1, "tecnico": 1, "gia": 1, "affrontare": 2, "reale": 1, "proclami": 1, "tornare": 1, "votare": 1, "memoria": 1, "ricordereste": 1, "enzo": 2, "jannacci": 2, "intitolandogli": 1, "passeggia": 1, "scarp": 1, "tennis": 1, "lass\u00f9": 1, "nemmeno": 1, "registrando": 1, "oggetto": 1, "palude": 1, "romana": 1, "venditori": 1, "sequestro": 1, "merce": 1, "riduzione": 3, "cosap": 1, "tassa": 1, "insegne": 1, "area": 1, "demenziali": 1, "persecuzione": 1, "cominciare": 1, "esempio": 1, "quali": 2, "interventi": 1, "suggerite": 1, "aperture": 1, "tirare": 1, "chiacchiere": 1, "capito": 1, "sveglino": 1, "preoccupa": 2, "negativi": 1, "critiche": 1, "blog": 1, "pagata": 1, "attaccarlo": 1, "accetta": 1, "ritiene": 1, "depositario": 1, "padre": 1, "garda": 1, "federico": 1, "pensano": 1, "tavoli": 1, "vicini": 1, "mercati": 1, "baggio": 1, "pistoia": 1, "dio": 1, "ultima": 1, "giornate": 1, "venire": 1, "perdita": 1, "vicesindaco": 1, "bilancio": 1, "pezzi": 1, "ascoltatori": 1, "delusi": 1, "arancione": 1, "casalinga": 1, "nevica": 1, "asilo": 1, "annullato": 1, "turbare": 1, "attendo": 1, "democratico": 1, "spieghi": 1, "tratta": 1, "progresso": 1, "tolleranza": 1, "intera": 1, "passata": 1, "dimenticare": 1, "schifezze": 1, "interessanti": 1, "affaritaliani": 1, "milanoitalia": 1, "sondaggio": 1, "lettori": 1, "giudizio": 1, "mandato": 1, "giudizi": 1, "insufficiente": 1, "pessimo": 1, "superano": 1, "dimesso": 1, "rimanere": 2, "manca": 1, "neanche": 1, "scannando": 1, "presidenze": 1, "tristezza": 1, "rispettano": 1, "limite": 1, "messo": 1, "recupereranno": 1, "preparo": 1, "caffe": 1, "zucchero": 1, "ordinarlo": 1, "aiuti": 1, "parchi": 1, "treni": 1, "pendolari": 1, "governatore": 1, "prime": 1, "vaccinazioni": 1, "rideva": 1, "preoccupata": 1, "auto": 1, "terza": 1, "completamente": 1, "sospettare": 1, "cretino": 1, "crispy": 1, "mac": 1, "bacon": 1, "mezzanotte": 1, "giornatina": 1, "qualcosa": 1, "brutto": 1, "fb": 1, "saviano": 1, "sinistro": 1, "deluso": 1, "credibilita": 1, "conquistata": 2, "rinsultati": 1, "mord": 1, "credibilit\u00e0": 1, "convegni": 1, "preferisco": 1, "risultati": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2013/salvini_emoji b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_emoji new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_emoji @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2013/salvini_sleep b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_sleep new file mode 100644 index 0000000..1850693 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Feb": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 1, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Mar": {"0": 3, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 1, "9": 2, "10": 3, "11": 1, "12": 1, "13": 0, "14": 1, "15": 2, "16": 1, "17": 4, "18": 4, "19": 2, "20": 0, "21": 0, "22": 2, "23": 1}, "Apr": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 1, "7": 0, "8": 1, "9": 1, "10": 3, "11": 6, "12": 3, "13": 1, "14": 3, "15": 1, "16": 2, "17": 2, "18": 4, "19": 1, "20": 1, "21": 1, "22": 1, "23": 1}, "May": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 2, "8": 3, "9": 0, "10": 3, "11": 1, "12": 3, "13": 1, "14": 0, "15": 1, "16": 1, "17": 0, "18": 4, "19": 4, "20": 0, "21": 1, "22": 1, "23": 2}, "Jun": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 1, "6": 1, "7": 0, "8": 2, "9": 1, "10": 2, "11": 3, "12": 2, "13": 2, "14": 3, "15": 4, "16": 1, "17": 0, "18": 2, "19": 1, "20": 3, "21": 2, "22": 5, "23": 2}, "Jul": {"0": 2, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 0, "9": 0, "10": 1, "11": 2, "12": 3, "13": 2, "14": 1, "15": 2, "16": 1, "17": 0, "18": 1, "19": 2, "20": 3, "21": 5, "22": 10, "23": 1}, "Aug": {"0": 2, "1": 1, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 0, "10": 2, "11": 7, "12": 4, "13": 2, "14": 4, "15": 6, "16": 2, "17": 4, "18": 1, "19": 4, "20": 5, "21": 8, "22": 7, "23": 7}, "Sep": {"0": 5, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 2, "9": 2, "10": 0, "11": 3, "12": 7, "13": 1, "14": 1, "15": 6, "16": 0, "17": 1, "18": 3, "19": 7, "20": 4, "21": 3, "22": 2, "23": 2}, "Oct": {"0": 3, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 1, "7": 0, "8": 0, "9": 4, "10": 2, "11": 4, "12": 4, "13": 5, "14": 5, "15": 5, "16": 5, "17": 7, "18": 8, "19": 3, "20": 1, "21": 5, "22": 4, "23": 2}, "Nov": {"0": 3, "1": 1, "2": 0, "3": 0, "4": 0, "5": 1, "6": 1, "7": 0, "8": 4, "9": 5, "10": 4, "11": 9, "12": 2, "13": 3, "14": 8, "15": 6, "16": 6, "17": 2, "18": 7, "19": 2, "20": 2, "21": 7, "22": 4, "23": 5}, "Dec": {"0": 4, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 5, "10": 3, "11": 3, "12": 1, "13": 3, "14": 2, "15": 5, "16": 4, "17": 3, "18": 7, "19": 8, "20": 3, "21": 5, "22": 6, "23": 4}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2013/salvini_trend.json b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_trend.json new file mode 100644 index 0000000..00c6e32 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_trend.json @@ -0,0 +1 @@ +{"31-Dec": 2, "29-Dec": 3, "28-Dec": 1, "27-Dec": 4, "24-Dec": 1, "23-Dec": 1, "22-Dec": 1, "21-Dec": 1, "20-Dec": 2, "19-Dec": 4, "17-Dec": 2, "16-Dec": 5, "15-Dec": 4, "14-Dec": 1, "12-Dec": 3, "11-Dec": 5, "10-Dec": 1, "9-Dec": 3, "7-Dec": 2, "6-Dec": 3, "5-Dec": 3, "4-Dec": 5, "3-Dec": 2, "2-Dec": 3, "1-Dec": 4, "30-Nov": 4, "29-Nov": 2, "28-Nov": 2, "27-Nov": 2, "26-Nov": 2, "25-Nov": 3, "24-Nov": 3, "23-Nov": 3, "22-Nov": 5, "21-Nov": 6, "20-Nov": 1, "19-Nov": 4, "18-Nov": 4, "17-Nov": 3, "16-Nov": 4, "15-Nov": 4, "14-Nov": 4, "13-Nov": 4, "12-Nov": 1, "11-Nov": 1, "10-Nov": 3, "9-Nov": 2, "8-Nov": 2, "7-Nov": 3, "6-Nov": 4, "5-Nov": 2, "4-Nov": 1, "3-Nov": 1, "2-Nov": 1, "1-Nov": 1, "31-Oct": 5, "30-Oct": 3, "29-Oct": 1, "28-Oct": 1, "27-Oct": 3, "26-Oct": 3, "25-Oct": 2, "24-Oct": 2, "23-Oct": 2, "22-Oct": 2, "21-Oct": 3, "19-Oct": 2, "18-Oct": 4, "17-Oct": 3, "16-Oct": 3, "15-Oct": 5, "14-Oct": 1, "13-Oct": 2, "12-Oct": 6, "11-Oct": 1, "10-Oct": 2, "8-Oct": 2, "7-Oct": 1, "6-Oct": 1, "5-Oct": 1, "4-Oct": 3, "3-Oct": 1, "2-Oct": 2, "1-Oct": 1, "30-Sep": 3, "29-Sep": 4, "28-Sep": 2, "27-Sep": 2, "26-Sep": 5, "25-Sep": 2, "24-Sep": 5, "23-Sep": 1, "22-Sep": 3, "18-Sep": 1, "16-Sep": 1, "15-Sep": 1, "14-Sep": 3, "13-Sep": 1, "12-Sep": 1, "11-Sep": 1, "10-Sep": 2, "9-Sep": 1, "7-Sep": 1, "6-Sep": 3, "5-Sep": 3, "4-Sep": 2, "3-Sep": 1, "1-Sep": 1, "30-Aug": 2, "29-Aug": 2, "28-Aug": 5, "27-Aug": 1, "25-Aug": 2, "24-Aug": 5, "23-Aug": 2, "22-Aug": 3, "21-Aug": 1, "20-Aug": 2, "19-Aug": 2, "18-Aug": 3, "17-Aug": 2, "16-Aug": 2, "15-Aug": 2, "13-Aug": 3, "12-Aug": 2, "10-Aug": 2, "9-Aug": 3, "8-Aug": 3, "6-Aug": 1, "5-Aug": 3, "4-Aug": 4, "3-Aug": 5, "2-Aug": 3, "1-Aug": 2, "20-Jul": 1, "18-Jul": 3, "16-Jul": 3, "15-Jul": 1, "14-Jul": 5, "13-Jul": 4, "12-Jul": 2, "11-Jul": 3, "10-Jul": 2, "9-Jul": 1, "8-Jul": 3, "7-Jul": 1, "6-Jul": 2, "5-Jul": 2, "4-Jul": 1, "2-Jul": 3, "30-Jun": 2, "28-Jun": 4, "27-Jun": 1, "26-Jun": 4, "25-Jun": 1, "24-Jun": 1, "19-Jun": 1, "18-Jun": 2, "17-Jun": 1, "16-Jun": 2, "15-Jun": 1, "14-Jun": 2, "11-Jun": 1, "10-Jun": 1, "9-Jun": 2, "7-Jun": 3, "6-Jun": 3, "4-Jun": 1, "3-Jun": 3, "1-Jun": 1, "31-May": 1, "30-May": 2, "28-May": 1, "27-May": 1, "25-May": 1, "24-May": 3, "23-May": 2, "22-May": 1, "21-May": 1, "20-May": 1, "17-May": 2, "16-May": 1, "15-May": 1, "14-May": 1, "13-May": 2, "12-May": 1, "10-May": 2, "8-May": 1, "5-May": 1, "3-May": 1, "29-Apr": 1, "28-Apr": 2, "27-Apr": 1, "26-Apr": 2, "25-Apr": 1, "24-Apr": 4, "22-Apr": 1, "20-Apr": 1, "19-Apr": 1, "18-Apr": 1, "17-Apr": 1, "16-Apr": 1, "15-Apr": 2, "14-Apr": 2, "13-Apr": 1, "12-Apr": 2, "11-Apr": 1, "9-Apr": 2, "8-Apr": 1, "5-Apr": 2, "3-Apr": 1, "2-Apr": 2, "30-Mar": 3, "29-Mar": 1, "28-Mar": 1, "27-Mar": 3, "26-Mar": 1, "24-Mar": 1, "23-Mar": 1, "22-Mar": 1, "18-Mar": 2, "17-Mar": 2, "16-Mar": 1, "15-Mar": 2, "14-Mar": 2, "13-Mar": 1, "12-Mar": 1, "11-Mar": 1, "7-Mar": 2, "5-Mar": 1, "4-Mar": 2, "28-Feb": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2013/salvini_words b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_words new file mode 100644 index 0000000..1a30ac0 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2013/salvini_words @@ -0,0 +1,6517 @@ +signor +napolitano +nomina +nuovi +senatori +vita +fregandosene +crisi +gente +presidente +auguri +amici +spero +porti +tanta +salute +nessun +rimpianto +tanto +coraggio +nessuna +rassegnazione +tanta +fortuna +solo +poche +sconfitte +tanta +comunità +nessuna +solitudine +persone +libere +cena +poco +vegetariana +capriolo +polentaaa +cena +poco +vegetariana +capriolo +polentaaa +cena +amici +bresaola +sciatt +risotto +torta +speciale +notte +serena +fiocchi +neve +vedo +oltre +vetri +accompagnino +sogni +discorso +fine +anno +giornalista +chiesto +ascolterò +giorgino +napolitano +beppe +grillo +risposto +seguirò +figlia +peppa +pig +bellissimo +castello +sforzesco +spalle +pronto +collegamento +sky +madonna +salute +venezia +stacci +vicina +riunione +lavoro +venezia +sempre +stupenda +notte +serena +amici +comincio +nuovo +libro +tanti +auguri +sereno +natale +amici +comunità +difenderemo +vicenda +fronte +attacchi +vili +infami +mezzi +comunicazione +nati +distruggere +lega +arriveremo +molto +lontano +sempre +innamorato +lega +nord +miliardaria +littizzetto +campionessa +nota +disciplina +fare +comunista +altri +molto +frequentata +sinistra +ieri +sera +presa +me +rai +considerassi +altro +clandestini +lampedusa +persone +costruito +tutta +filippica +radical +chic +tono +serio +indignato +tanto +applausi +fazio +rifiutando +inoltre +etichetta +buonista +cara +littizzetto +piú +facile +vinca +miss +italia +trovare +me +solo +briciolo +razzismo +anziché +investire +proprietà +immobiliari +vaste +fortune +usi +parte +ospitare +centinaio +immigrati +clandestini +fondo +soldi +pubblici +italiani +pagano +canone +rai +forza +vecchio +cuore +rossonero +poverini +clandestini +cittadini +poi +devono +mantenere +subiscono +crimini +bergamaschi +lega +chiuduno +festeggiare +natale +pronti +sacrifici +battaglie +napolitano +fa +auguri +marò +dice +governo +molto +attento +destino +marò +rifiuterei +auguri +attenzione +mamma +tira +tardi +allora +riesco +saluto +popolo +rete +poverini +migranti +rom +carcerati +poi +muovono +dito +aver +bisogno +vicino +casa +troppo +banale +troppo +normale +ipocriti +tristi +buoni +facebook +egoisti +vita +responsabilità +tenere +barca +italia +equilibrio +detto +oggi +letta +ricorda +tanto +schettino +poco +diretta +rai +immigrazione +carceri +agricoltura +imprese +pensioni +europa +massacra +ribellarsi +é +dovere +guarda +po +cosa +attaccano +aeroporto +fiumicino +problemi +italia +guarda +caso +ritirano +fuori +calcioscommesse +partite +truccate +indagano +qualche +calciatore +famoso +riempiono +pagine +giornali +tentativo +distrazione +massa +bruno +vespa +riflessivo +comincio +registrare +porta +porta +alemanno +italia +troppo +federalismo +rideeeeeeeeee +presepe +studio +porta +porta +bene +giornata +lavoro +milanese +ora +parte +roma +stasera +ospite +porta +porta +rai +allegra +compagnia +me +studio +gianni +alemanno +simpaticissima +debora +serracchiani +qualche +consiglio +darmi +scrivete +ora +buona +serata +amici +buona +lettura +poi +ditemi +cosa +pensate +http +www +ilgiornale +it +news +interni +salvini +briglia +sciolta +vaffaday +lega +html +indipendenza +disobbedienza +mare +calore +idee +passione +splendida +comunità +cammino +grazie +primo +acquisto +fatto +berretto +verde +rebel +comincia +decine +giornalisti +conferenza +stampa +altra +europa +possibile +amici +francesi +fiamminghi +olandesi +austriaci +russi +ciao +amici +chiamo +mirta +oggi +compio +anno +domani +raccomando +torino +catalogna +novembre +chiamerà +voto +cittadini +decidere +indipendenza +grandi +unione +sovietica +europea +minaccia +ritorsioni +motivo +mollare +europa +euro +forconi +bruxelles +ognuno +deve +essere +libero +padrone +casa +ricevere +applausi +pubblico +romano +vale +doppio +tramonto +treno +rientrando +casa +piace +sacco +formigoni +dark +parlamento +vota +fiducia +governo +disastri +game +letta +monti +parlamento +infame +servo +bruxelles +prendere +calci +steve +jobs +diceva +affamati +folli +libertà +richiede +fame +follia +oggi +giornata +cominciata +presto +male +spero +diverso +notte +serena +amici +innamorato +lega +mezzo +agricoltori +roma +bruxelles +massacrano +battaglia +oggi +manifestando +tricolore +mano +dovrebbe +capire +primo +nemico +lavora +proprio +stato +ladro +usa +quel +tricolore +enrico +letta +dice +antieuropeisti +producono +solo +macerie +amartya +sen +nobel +economia +dice +euro +stata +idea +orribile +credete +francois +heisbourg +docente +analista +anglo +francese +europeista +sempre +presidente +istituto +internazionale +studi +strategici +oggi +afferma +euro +incubo +lascia +subito +moneta +unica +presto +caos +certezze +euro +scemi +sempre +meno +certe +grazieeeeeee +prima +telefonata +sempre +grande +umberto +bossi +prima +uscita +pubblica +fabbrica +rischia +chiudere +prima +battaglia +indipendenza +stato +italiano +ladro +fallito +unione +sovietica +europea +massacra +grazie +strumento +morte +chiamato +euro +insieme +senza +altro +dividere +ascoltando +decidendo +meno +possibile +ufficio +tanto +gente +fianco +sindaci +amministratori +bellissima +giornata +partecipazione +grazie +amici +adesso +ognuno +deve +sentirsi +battaglia +belli +fiori +belli +alberi +natale +veri +attesa +privatizzarla +poco +diretta +rai +news +sindaco +torino +oggi +dato +cittadinanza +rachid +giovane +marocchino +prima +vendeva +accendini +strada +adesso +laureato +intanto +migliaia +laureati +italiani +perso +lavoro +cominciato +vendere +accendini +strada +stato +tempo +perdere +segnalo +bell +articolo +secolo +xix +cosa +pensate +notte +serena +amici +pensiero +nelson +mandela +lotta +libertà +legge +elettorale +frega +italiani +rischio +povertà +ecco +emergenza +pronto +intervenire +mezzo +gruber +la7 +dovrò +confrontarmi +cuperlo +ve +devo +salutare +kyenge +dice +intolleranza +ignoranza +quindi +proprio +tollera +leghisti +dà +ignorante +sola +stavolta +tocca +darle +ragione +firenze +nonostante +disastro +renzi +vero +spettacolo +morti +lavoro +nero +sfruttamento +stato +ladro +mafioso +manda +blitz +cortina +rompe +palle +commercianti +artigiani +indipendenza +roma +bruxelles +prato +fuori +centro +storico +solo +cittadino +toscano +solo +cinesi +muri +migliaia +scritte +cinese +compresi +centinaia +numeri +telefono +pare +signorine +eccoci +prato +minuti +diretta +sky +tg +nuova +sede +lega +nord +bellissima +parma +bravi +so +me +primarie +pd +rotto +tivù +siti +giornali +vedono +tutte +ore +facce +porcellini +democratici +militanti +primarie +lega +chissenefrega +giornalisti +tranne +rare +eccezioni +vergogna +italia +dicembre +partecipo +me +casa +sala +strapiena +gente +piedi +lega +alain +benoist +parlare +denaro +banche +popoli +libertà +finchè +conserveremo +voglia +coraggio +pensare +schiacceranno +basta +euro +riprendiamoci +sovranità +lavoro +libertà +speranza +notte +serena +amici +cominciate +fare +ciò +necessario +poi +ciò +possibile +improvviso +sorprenderete +fare +impossibile +san +francesco +assisi +sala +piena +lega +torino +parlare +piemonte +costruire +lavoro +futuro +speranza +casa +abbraccio +bella +bianca +cuneo +genova +sempre +stupenda +buona +domenica +amici +sole +scaldi +oggi +incontri +leghisti +genova +albenga +cuneo +torino +ascolto +progetto +sala +piena +almeno +persone +lega +verona +indipendenza +disobbedienza +fratelli +leghisti +rovigo +indipendenza +orgoglioso +essere +bondeno +comune +terremotato +ferrarese +consegnare +vigili +fuoco +protezione +civile +automezzi +donati +lega +nord +buona +politica +ieri +sciura +kyenge +simposio +africa +sviluppo +sostenibile +vaticano +premiato +sciur +prodi +italia +malora +premiano +pensando +africa +così +affezionati +continente +nero +terra +peraltro +stupenda +tornino +tramonto +milano +poesia +troppo +spesso +andiamo +cerca +bellezza +lontano +casa +accorgiamo +portata +mano +finito +forse +berlusconi +ruby +adesso +tribunale +milano +torna +occuparsi +bossi +lega +processi +mafiosi +assassini +possono +attendere +giudici +eletti +popolo +indipendenza +unica +via +grazie +militanti +firmato +me +grazie +coloro +scelto +altri +candidati +primo +umberto +bossi +grande +uomo +grazie +stucchi +bernardini +stefanazzi +confronto +idee +diverse +nascono +idee +migliori +grazie +lega +comunità +cammino +ora +difesa +attacco +roma +bruxelles +mai +state +così +deboli +uniti +indipendenti +servi +vince +notte +serena +amici +bisogna +sempre +giocare +lealmente +quando +mano +carte +vincenti +oscar +wilde +duman +matina +diretta +telelombardia +milioni +disoccupati +milioni +poveri +politici +sinistra +destra +litigano +altro +decadenze +magistratura +italia +stato +ladro +orlo +fallimento +indipendenza +roma +bruxelles +mai +stata +così +vicina +insieme +può +segnalo +bella +intervista +massimo +fini +padania +oggi +piace +cosa +pensate +proposte +oggi +cielo +lombardia +poesia +com +parti +lunga +discussione +decadenza +berlusconi +confesso +fatto +decadere +palle +grazie +partecipato +persona +seguito +casa +attraverso +radio +padania +attraverso +diretta +streaming +ancora +riuscito +vedere +altro +convegno +segnaliamo +link +youtube +rivedere +intero +convegno +http +www +youtube +com +watch +v +mjfmmvvkf1g +feature +c4 +overview +list +uuw2af +j2qizzmww99bs3e6q +regione +lombardia +conferenza +stampa +bei +progetti +lega +stop +consumo +territorio +stop +nuovo +cemento +appalti +kilometro +zero +favoriamo +lavoro +imprese +bruxelles +arrabbieranno +chissenefrega +indipendenza +roma +bruxelles +torna +gente +cresce +entusiasmo +idee +libertà +sveglieranno +europa +forza +lega +insieme +può +squadra +cucina +festa +spirano +innamorato +lega +tentando +fare +torta +mele +buona +domenica +amici +vediamo +stasera +festa +lega +spirano +berghem +no +euro +day +sala +strapiena +seguite +diretta +streaming +ore +www +lapadania +net +seguite +diretta +streaming +www +lapadania +net +pare +governo +roma +evitare +imu +voglia +aumentare +ancora +tasse +benzina +davvero +così +prepariamo +randelli +mirtilli +argentina +more +messico +arrivano +ancora +tantissime +richieste +convegno +domani +posti +purtroppo +esauriti +potete +però +seguire +streaming +sito +www +lapadania +net +oppure +frequenze +radio +padania +libera +casa +sogni +bosco +isolata +starci +giulia +bimbi +mare +amici +chissà +buona +giornata +fiumicino +rientra +padania +ricevuto +applauso +pubblico +romano +sinistra +santoro +quasi +commosso +secondo +intervento +fatto +liberiamo +nord +folle +patto +stabilità +abusi +edilizi +gran +parte +sud +nessuna +sanatoria +galera +colpevoli +miliardi +euro +multa +società +gestiscono +slot +machine +regalo +amici +stato +ladro +primo +intervento +fatto +svizzera +autonomia +europa +serva +banche +germania +euro +moneta +criminale +salvarsi +possibile +andava +bene +roma +santoro +la7 +dietro +quinte +tempo +cambiare +canale +vecchie +care +cartoline +forza +oscar +lancini +mollare +scriviamogli +ragazzi +convegno +sabato +no +euro +day +ancora +pochi +posti +disponibili +chiamate +parleremo +uscire +euro +prof +bagnai +borghi +rinaldi +aspetto +insiemesipuò +oscar +lancini +continua +sciopero +fame +famiglia +chiede +qualche +giorno +tranquillità +attesa +spera +buone +notizie +sempre +convinto +attacco +lega +fondato +nulla +rispetto +volontà +famiglia +sospendiamo +ora +altre +manifestazioni +qualche +giorno +però +padano +arrestato +ingiustamente +follia +oscar +riprendi +mangiare +bisogno +te +sano +forze +pronto +battaglia +tasca +carta +telefonica +internazionale +cartina +roma +kit +accoglienza +euro +giorno +scappati +tasche +piene +clandestini +sopravvissuti +lampedusa +ospiti +ora +roma +assessorato +sostegno +sociale +sussidiarietà +accogliamo +coccoliamo +manteniamo +poi +vogliono +vogliono +bastaaaaaaaaa +espulsioni +controllo +frontiere +serietà +indipendenza +roma +bruxelles +pensiero +abbraccio +grande +popolo +sardegna +morti +lavora +ore +fango +soli +buon +martedì +amici +stazione +nord +milano +comincia +viaggio +strasburgo +abbattere +ricostruire +europa +cittadini +banche +operazione +castagne +banzai +oriana +fallaci +grande +donna +libera +scomoda +coraggiosa +grazie +pisapia +prende +lega +nord +perchè +guarda +strano +fa +opposizione +sindaco +aumenta +miliardo +euro +tasse +tariffe +meno +anni +evtutti +dobbiamo +forse +dire +bravo +pisaoia +sciagura +massacro +bugia +disastro +beffa +calamità +naturale +milano +minuti +trasmissione +rai +solo +beghe +berlusconiani +alfaniani +machissenefregaaa +problemi +cittadini +altri +fiume +gente +perbene +strade +adro +grazieeeeeeeeeee +molla +giù +mani +sindaci +onesti +stato +ladro +mafioso +cittadini +piazza +gradisca +isonzo +invasione +clandestina +italia +spazio +solo +immigrato +buona +domenica +amici +bella +portogruaro +tanta +gente +tanto +veneto +tante +idee +tanta +voglia +indipendenza +stasera +lega +pramaggiore +attesa +mangiare +formaggio +fuso +tagliata +stasera +contento +perchè +veneto +festa +leghista +pramaggiore +provincia +venezia +aspetto +tanti +amici +insieme +può +lago +como +me +posti +belli +mondo +luogo +cuore +pdl +spacca +falchi +colombe +pitonesse +pantere +so +tifo +nessuno +tifo +nord +bitto +casera +sforzato +sapori +casa +meglio +eroici +consiglieri +comunali +lega +milano +consiglio +comunale +ore +svegliare +pisapia +sinistra +togliere +po +soldi +destinati +rom +restituirli +milanesi +insieme +può +clandestini +delinquenti +fuori +palle +aspetto +domenica +ore +manifestare +presso +centro +identificazione +espulsione +cie +gradisca +isonzo +buon +venerdì +bagnato +spero +fortunato +amici +bologna +bimba +anni +decisione +tribunale +minorile +parere +procura +minorile +stata +data +affido +temporaneo +coppia +omosessuale +intanto +coppie +banali +composte +uomo +donna +aspettano +anni +spendono +cifre +folli +adozione +affido +qualcuno +vuole +mondo +contrario +arrendo +tradizione +identità +comunità +futuro +notte +serena +amici +lega +passione +lavoro +impegno +fatica +battaglie +allegria +ripensavo +storia +baby +prostitute +mamma +fa +prostituire +figlia +razza +brutta +bestiaccia +addio +semplice +fedele +compagno +telefonate +mancherai +fate +fatica +buttare +cose +vecchie +così +vedo +futuro +lega +europa +cosa +pensate +http +www +lastampa +it +italia +politica +salvini +lega +novembre +no +euro +day +indf2wfkancpqxz4s6uvmn +pagina +html +manifesti +giro +milano +piace +stato +ladro +adro +domenica +ore +manifestazione +difesa +sindaci +girano +palle +girare +video +guadagnato +euro +disoccupazione +confronto +germania +italia +germania +italia +germania +italia +germania +euro +scesa +molto +italia +drammaticamente +cresciuta +certo +italia +stato +ladro +numeri +dicono +euro +morendo +dite +iene +sembrano +squallide +pecore +congresso +lega +parla +gad +lernerrrrrrr +matteo +salvini +prossimo +segretario +lega +nord +grande +notizia +neppure +militanti +salvini +uomo +collezionato +successi +lega +scomparendo +lernerrrrr +fallito +lega +morendo +allora +vuol +dire +lavorando +bene +indipendenza +milano +arrende +enrico +letta +vede +ripresa +sì +ri +presa +culo +parte +bruxelles +nostalgia +sorriso +ricordo +tempi +cabine +gettoni +stesso +notte +serena +amici +goccia +dopo +goccia +può +scolpire +storia +morti +tantissimi +bambini +terribile +tempesta +filippine +preghiera +ciascuno +leghisti +uscire +articoli +altri +leghisti +tirando +ballo +altri +leghisti +pazienza +certe +cose +lasciamole +pd +pdl +lega +buon +sabato +fratelli +notte +serena +amici +odia +teme +quinto +ennio +poeta +latino +diretta +aria +tira +la7 +mirta +curiosa +tira +tende +saluta +ragazzi +aiutiamo +pd +fare +ancora +tessere +fatte +regalate +moltiplicate +possiamo +aiutarli +fare +qualche +amico +conoscente +viandante +mendicante +super +eroe +regalare +tessera +kompagni +maxi +rissa +famiglie +rom +rivali +ospedale +san +raffaele +milano +sprangate +feriti +morto +notte +serena +amici +rom +partenza +bruxelles +libro +pronto +zaino +piace +gioia +tauro +ragazzini +segregati +campo +rom +forse +lì +kyenge +boldrini +passate +evviva +integrazione +fratelli +zingari +amici +posso +chiedervi +parere +personale +libro +deve +assolutamente +essere +letto +leghista +indipendentista +uomo +libero +bella +milano +sveglia +vuole +offro +tele +caffè +diretta +gold +simpatico +tizio +corriere +it +scrive +proposito +lega +speriamo +minipartito +stampo +medievale +sparisca +sempre +parassiti +vorrebbero +paese +senza +lega +aspetta +spera +battaglia +insieme +può +poco +intervengo +rai +radio +parlare +europa +prima +torniamo +padroni +lavoro +moneta +agricoltura +ambiente +futuro +prima +torneremo +crescere +produrre +sperare +vivere +bene +me +tavola +solo +salsa +pomodoro +pomì +possibile +azienda +pubblicizza +prodotto +dicendo +materia +prima +viene +solo +regioni +nord +lombardia +piemonte +veneto +emilia +romagna +debba +scattare +accusa +razzismo +roba +matti +brava +pomì +italia +alcuni +imbecilli +insultano +pagina +facebook +sostegno +cielo +grigio +fine +torna +sereno +buona +domenica +amici +mai +smettere +crederci +combattere +pisapia +é +vergogna +vivente +anni +mezzo +molte +tasse +molta +sicurezza +meno +quando +cosa +fare +cioé +sempre +attacca +lega +stasera +tagliatelle +formaggio +fuso +funghi +poi +tiramisu +genepì +augh +sala +piena +fratelli +ziano +piacentino +avanti +campagna +lombarda +emiliana +stupenda +viale +lunigiana +milano +lavavetri +rompiballe +solo +incrocio +sveglione +pisapia +può +mandare +vigili +aspetto +giorno +preziose +risorse +andranno +ripulire +vetri +magari +case +boldrini +kyenge +poco +diretta +tg +com +davanti +tele +milano +gentile +pisapia +topi +rom +abusivi +varia +natura +decadenza +berlusconi +siti +giornali +parlano +altro +purtroppo +cosa +pensate +rainews +enrico +letta +oggi +incontrando +tante +persone +vuole +sapere +cacchio +notizia +secondo +incontrando +misterioso +ministra +inutile +kyenge +dice +nemico +straniero +evasore +fiscale +norme +cittadinanza +vanno +cambiate +ministra +vanno +case +popolari +ministra +vanno +contributi +pubblici +quasi +pronto +referendum +prima +gente +cena +leggerina +chili +piccante +formaggio +birra +viva +pancetta +pulita +milano +via +moneta +troppo +periferia +interessare +pisapia +notizie +importanti +domenica +balotelli +tagliato +capelli +machissenefregaaaaaaa +povero +calcio +povera +italia +renzi +pd +reti +unificate +ogni +tivù +radio +daranno +stesso +spazio +congresso +lega +tanta +gente +ricordare +cesarino +monti +grande +sindaco +comunità +lazzate +intitolando +piazza +comune +prima +gente +coraggio +stand +lega +strapieno +cibo +esaurito +sorrisi +spazi +altri +partiti +vuoti +banzai +donne +venete +lavoro +cucinare +polenta +polipo +noventa +padovana +grandi +dedico +bellissimo +tramonto +milanese +amiche +amici +vivono +trentino +domani +voti +lega +sbagli +pensiero +grande +grazie +piero +mazzarella +zuzzurro +grandi +teatro +sorriso +grandi +abbastanza +apprezzati +valorizzati +tivù +pubblica +forse +perchè +abbastanza +romani +portate +sorriso +oltre +cielo +grigio +napolitano +presidente +forse +buono +congo +stasera +cozze +kili +euro +vermentino +sardegna +euro +poca +spesa +tanta +resa +anni +fa +strasburgo +bandiere +rappresentavano +stati +sovrani +oggi +rappresentano +nuovi +schiavi +banche +finanza +euroburocrati +combattere +mostro +può +oltre +comuni +lombardi +movimento +www +rompiamoilpatto +org +cresce +leggere +articoli +piero +ostellino +salvifico +fortuna +qualche +giornalista +esiste +ancora +stasera +ahimè +milan +barcellona +finisce +secondo +altri +clandestini +mantenere +sbarcati +sicilia +clandestini +migranti +ricominciamo +usare +giuste +parole +almeno +maxi +rissa +immigrati +carcere +bologna +tranquilli +poco +risorse +liberate +governo +indulto +picchieranno +fuori +rai +esiste +solo +roma +rischio +migliaia +posti +lavoro +nord +uniti +può +vincere +perso +consapevolezza +istante +vivendo +davide +van +sfroos +sciura +kyenge +dice +riceve +letterine +affettuose +migliaia +bambini +speriamo +giovane +età +già +imparato +troppe +parolacce +cediamo +rai +repubblica +congo +basta +mega +stipendi +programmi +inguardabili +giornalisti +faziosi +lunedì +aspettiamo +giù +mani +milano +incredibile +sacconi +pdl +sprechi +italiani +piccoli +ospedali +università +nord +vergognatiiiiiii +stato +politici +giornalisti +discutono +pascale +lesbica +no +stato +m +posso +suggerirvi +sito +palle +www +rompiamoilpatto +org +piaceeeeeeeee +fate +girare +sito +così +qualcuno +girano +balle +buon +venerdì +amici +piace +venerdì +poco +canale +prima +gente +piace +secondo +riusciamo +arrivare +almeno +condivisioni +vota +commissione +bruxelles +imporre +etichette +scritto +chiaramente +arriva +prodotto +orgogliosamente +lega +sempre +difesa +lavoro +gente +combattere +europa +buon +giovedì +amici +bella +squadra +lega +nord +trentino +attacco +vento +pulito +adamello +ripulisca +giornata +amici +cena +amici +grappa +passi +silenzio +acqua +fiume +luna +dietro +nuvole +domani +altro +giorno +niente +notte +serena +amici +divisi +confine +uniti +valore +buon +militante +adesivi +sempre +tasca +boschi +val +rendena +trentino +arrivo +sopralluogo +casa +signora +giulia +invalida +carrozzina +vive +milano +case +popolari +secondo +piano +senza +ascensore +montascale +istituzioni +sveglia +notte +serena +amici +mollano +troverai +boschi +libri +alberi +rocce +insegneranno +cose +nessun +maestro +dirà +san +bernardo +chiaravalle +veri +amici +grillini +italiani +clandesitini +squadra +padana +vincente +nuova +sezione +casalbuttano +super +brunch +kiki +piazza +minniti +bolliti +bue +grasso +tonno +riso +patate +cozze +poca +spesa +tanta +resa +lega +sardegna +razzisti +egoisti +brutti +cattivi +no +gente +perbene +vuole +vivere +tranquilla +città +comunità +idee +lotta +torino +parla +legalità +libertà +chissà +giornali +tivù +parleranno +fratelli +emiliani +presenti +torino +oggi +leghistaaaa +squadra +leghista +albenga +centro +storico +stupendo +sindaca +gamba +così +lega +vince +poche +parole +tanti +fatti +renzi +tgcoreadelnord +cioè +tg3 +dice +legge +bossi +fini +servita +alimentare +paure +lega +chiacchiera +meno +piace +ragazzi +arriviamo +almeno +condivisioni +aspetto +sabato +manifestazione +immigrazione +clandestina +torino +buon +viaggio +fratello +padano +beppe +vezzoli +colonna +sezione +adro +battaglia +battaglia +aiutaci +alto +rapine +stupri +violenze +aggressioni +machete +arrestati +immigrati +sud +americani +milano +dintorni +attende +pronto +intervento +duo +kyenge +boldrini +poverini +é +colpa +italiani +integrati +amici +mirta +tuta +verde +augura +notte +serena +grande +gruppo +leghista +ceriano +laghetto +avanti +fratelli +scoperte +italia +milione +case +fantasma +sicilia +immobili +beccati +campania +calabria +puglia +mai +detto +strano +viva +italia +insivisibile +fantasma +poco +intervengo +zanzara +radio +saluto +cruciani +parenzo +roma +magna +teatro +scala +prima +volta +infatti +decreto +cultura +approvato +parlamento +lega +contraria +sovrintendente +scala +verrà +nominato +ministero +comune +indipendenza +via +stato +ladro +signora +sindaco +lampedusa +oggi +trovato +colpevoli +poveri +morti +mare +lega +nord +seminato +virus +menzogna +odio +capisco +stanchezza +strazio +stress +signora +bel +tacer +mai +scritto +signor +napolitano +dice +indispensabili +presidi +adeguati +lungo +coste +partono +viaggi +disperazione +morte +anziano +presidente +svegliato +dà +ragione +maroni +pattugliamenti +controlli +avvisato +letta +alfano +kyenge +boldrini +notte +serena +amici +dubbio +visto +papa +francesco +ormai +telefona +qualcuno +giorni +numero +privato +risposto +oggi +arrivava +vaticano +stasera +casa +niente +politica +tivù +anzi +guardo +visto +solo +saluti +romani +ora +taxi +vola +bruxelles +basta +euro +insieme +può +porta +porta +ascoltato +lungo +politici +importanti +studio +parlato +parlato +urlato +litigato +parlato +fine +tardi +intervenuto +vespa +ringrazio +stasera +conferma +unica +via +nord +rimane +seguire +indipendenza +poi +ancora +napolitano +presidente +unica +scelta +può +salvare +uscire +euro +sconcerto +studio +spero +approvazione +casa +notte +amici +dietro +quinte +porta +porta +ospiti +brunetta +demicheli +mauro +stato +italiano +aumenta +ancora +tasse +benzina +regione +lombardia +diminuisce +prezzo +benzina +fino +centesimi +litro +milione +cittadini +abitano +province +confine +benzinai +consumatori +ringraziano +pubblicamente +promesso +campagna +elettorale +fatto +biscione +castello +ponte +levatoio +coraggio +vittorie +ieri +dicono +possiamo +vincere +liberarci +domani +stasera +pasta +tradizionale +amici +pomeriggio +teatro +senza +cultura +insieme +lavoro +futuro +persone +stasera +lega +vittorio +veneto +gran +gruppo +donne +lavorare +cucine +modello +tradizionale +barilla +notte +serena +amici +rai +giuliano +amato +parla +europa +rai +yoyo +peppa +pig +gioca +nessun +dubbio +educativa +seria +utile +peppa +pig +notte +serena +amici +pensando +colazione +domani +tradizionali +biscotti +mulino +bianco +barilla +signora +sinistra +dice +tivù +poveri +rom +vengono +trattati +così +male +parla +sgomberi +sicurezza +perchè +pancia +piena +anzi +salvini +ruba +stipendio +esce +merda +bocca +perbacco +principessa +idee +chiare +rispettose +utili +approfondite +domanda +perchè +ama +tanto +rom +prende +casa +mantiene +ogni +cittadino +europeo +diritto +sapere +vengono +confezionati +prodotti +viene +contatto +fa +resto +mondo +europa +deve +fare +letta +ultimi +sviluppi +politici +stati +umiliazione +italia +me +invece +governi +monti +letta +schiavi +bruxelles +stati +vera +umiliazione +italia +radio +popolare +tal +mirco +rota +fiom +cgil +lombardia +dichiarato +oggi +salvini +valcamonica +guidato +protesta +piccolo +gruppo +lavoratori +nascondere +fatto +regione +lombardoa +niente +vergognati +poveretto +cosa +entra +regione +acciaierie +riva +sveglia +amici +pd +rispetta +operai +compresi +iscritti +incazzati +sciur +rota +sindacalisti +poveri +lavoratori +seduti +statale +difesa +lavoro +lombardi +operai +andiamo +bloccare +statale +insieme +operai +riva +serve +strada +statale +poco +distante +abbiati +zapata +allegri +galliani +cazzo +buttiamo +giù +torre +lavoratori +atm +milano +attacco +roberto +maroni +brianza +serata +dedicata +onlus +cancro +primo +aiuto +ogni +anno +aiuta +gratuitamente +malati +lombardi +curarsi +avere +speranza +insieme +può +eh +no +vetro +me +lavo +solo +cazzo +bimbi +spasso +campo +rom +martedì +scuola +no +grazie +raccolta +differenziata +tanto +fuoco +campo +rom +fare +domeniche +piedi +ingresso +mega +campo +rom +abusivo +proprietà +privata +stasera +ospite +iceberg +telelombardia +vittorio +feltri +carmela +rozza +licia +ronzulli +preferite +leggervi +buon +libro +capisco +gruppo +chiuduno +ferma +nessunoooooo +tanta +gente +chiuduno +fortuna +guardando +milan +notte +serena +cappelletta +noale +chissà +quei +figli +eroicamente +caduti +oggi +orgogliosi +italietta +corriere +sera +edizione +milano +lettera +genitore +figlio +mesi +quest +anno +dovrebbe +andare +nido +rischia +essere +unico +bimbo +italiano +classe +arabi +romeni +sudamericani +indiani +pachistani +albanese +razzismo +entra +nulla +combattuti +signora +kyenge +integrazione +adoro +profumo +calore +legna +brucia +storie +anni +fuoco +sentito +raccontare +fratelli +leghisti +alto +lago +como +tramonto +ligure +dedicato +molla +mai +mercato +comunale +via +osoppo +milano +anziana +cerca +frutta +verdura +abbandonate +terra +cassette +vuote +letta +kyenge +bisogna +aiutare +altri +perla +signorino +letta +avere +nominato +ministro +cecile +kyenge +scelta +importante +bene +paese +penso +invece +nominare +ministro +colore +pelle +razzismo +svegliaaaaaaa +chiamarmi +telelombardia +adesso +chiamatlo +numero +salutiamoooo +notte +serena +amici +momenti +vita +tacere +diventa +colpa +parlare +diventa +obbligo +grazie +oriana +fallaci +indovinate +qual +ufficio +salvini +strasburgo +può +menata +tira +molla +tiggì +commenti +decadenza +berlusconi +poco +diretta +rai +news +polo +verde +adro +alberto +giussano +immigrati +ammazzano +colpi +machete +mezzo +strada +africa +no +bergamo +muore +dottoressa +italiana +fermata +soccorrere +feriti +investita +bestie +integrazione +preghiera +morti +intanto +aspettiamo +sdegno +accogliente +signora +kyenge +napolitano +messaggio +dice +unione +europea +resta +modello +successo +mette +guardia +pericolose +correnti +scetticismo +rifiuto +verso +indispensabile +ulteriore +integrazione +europa +successo +secondo +me +pericoloso +solo +europa +massacrando +lavoro +altro +identità +euro +uccidendo +imprese +futuro +moooolto +pericolosi +pure +tifosi +ogni +costo +napolitano +compreso +politicamente +corretto +dirlo +chissenefrega +grande +gruppo +leghista +castano +primo +grande +gruppo +lavoro +festa +palazzago +andate +trovarli +sorrisi +tombola +ottima +cucina +solo +persona +rischia +veramente +libera +notte +serena +amici +duman +telelombardia +corriere +pugni +insulti +vicina +albanese +processo +sorella +kyenge +madddaiiiiiiiiii +violenza +razzismo +sciura +kyenge +forse +prima +integrare +leghisti +occhio +accade +casa +assessore +milanese +pd +vigili +devono +picchiare +gente +ossignur +noto +milano +tutta +italia +vigili +vanno +giro +menare +mani +niente +fare +certa +sinistra +allergica +sicurezza +lega +combatte +vince +senato +governo +battuto +passa +proposta +leghista +anno +niente +apertura +nuove +sale +gioco +azzardo +letta +kyenge +boldrini +datevi +slot +machine +persone +amministratori +militanti +lega +buguggiate +provincia +varese +grande +poetica +immensa +sciura +kyenge +cinema +poiché +arriva +case +può +aiutare +discorso +integrazione +imparare +camminare +volare +ecco +brava +prova +volare +via +pronto +ascoltarvi +antenna +potete +telefonarmi +ragione +vecchi +sala +piena +stasera +lega +bormio +senatori +vita +avvistato +monti +prossimo +senatore +vita +scelto +napolitano +cervo +assassino +gioielliera +sarono +confessato +ucciso +donna +calci +pugni +dicono +sbandato +disoccupato +sicuro +qualcuno +cercherà +capirlo +spero +finisca +giorni +galera +senza +vedere +sole +formiche +lavorano +matte +poi +cicale +spendono +spandono +rotto +essere +formica +cicale +vadano +farsi +fottere +gol +milan +ora +camera +merito +bombardini +altri +clandestini +sbarcati +ultime +ore +intanto +milioni +italiani +soffrono +disoccupazione +precariato +cassa +integrazione +politico +pagato +aiutare +prima +gente +poi +resto +mondo +altro +kyenge +accordo +insieme +può +cambiare +livigno +litro +diesel +euro +dovessimo +mantenere +stato +ladro +così +venerdì +sera +incontro +pubblico +bormio +aspetto +voto +aaron +swartz +attivista +americano +finito +sotto +processo +aver +lottato +favore +libera +circolazione +idee +conoscenze +morto +suicida +soli +anni +ragazzo +accettato +rischiare +ideali +vero +leghista +approfittando +agosto +giunta +pisapia +raddoppiato +decine +migliaia +pensionati +studenti +costo +abbonamento +mezzi +pubblici +euro +colpo +solo +maledetti +pagare +caro +finiti +elettori +pisapia +bella +serata +gente +solbiate +abbraccio +lago +como +stasera +presente +feste +arcisate +solbiate +olona +giovani +padani +piemonte +me +mica +tanto +giovane +grande +gruppo +capriata +sindaco +pozzallo +sicilia +città +totalmente +mano +immigrati +quasi +sempre +ubriachi +sindaco +accogli +sorridi +pensa +kyenge +sennò +te +pronta +accusa +razzismo +oggi +telelombardia +trasmissione +studio +stadio +commentare +prima +campionato +verona +milan +ragazzi +compagnia +finisce +secondo +kilometri +coda +dopo +capriate +direzione +milano +lavori +corso +venerdì +rientro +fine +agosto +complimenti +pirla +programmano +cose +tanta +gente +sotto +acqua +lega +berghem +fest +grande +squadra +padana +festa +bolgare +banzai +rissa +sangue +stazione +centrale +milano +turisti +marocchino +accoltellato +torace +molto +grave +tunisino +sfregiato +volto +ospedale +storie +ordinaria +integrazione +domani +mattina +ricomincia +diretta +telelombardia +aspetto +siti +informazione +parlano +scontro +pd +pdl +futuro +berlusconi +governo +rischio +secondo +finire +berlusconi +stacca +spina +governo +cade +sciura +napolitano +tace +verità +politica +rotto +scatole +tramonto +valcamonica +dedicato +luna +stasera +montagne +chissà +esistono +altre +vite +altri +mondi +ora +notte +serena +impegna +migliorare +mondo +solo +lombardia +disoccupati +solo +aziende +crisi +profughi +italiani +governo +frega +forse +chic +politicamente +corretto +preoccuparsi +arriva +africa +sbarca +lampedusa +piuttosto +italiani +bisognosi +ogni +integrazione +impossibile +condizioni +prima +viene +gente +poi +avanzano +spazio +soldi +altri +qualcuno +chiama +razzismo +me +buon +senso +sbaglio +oggi +comincia +redditometro +roba +regime +comunista +fascista +scegliete +spese +inserite +controlli +quindi +potrebbero +costarvi +care +troviamo +libri +scolastici +visite +veterinario +cagnolini +gatti +piante +fiori +bolletta +acqua +succhi +frutta +medicine +soprattutto +roba +matti +verranno +controllate +donazioni +associazioni +volontariato +solo +stato +ladro +può +arrivare +tanto +caro +letta +autunno +caldo +arrivando +milano +giunta +pisapia +dà +via +libera +centri +islamici +milanesi +proprio +bisogno +egitto +giro +mondo +none +islam +mettono +ferro +fuoco +città +apriamo +porte +casa +lega +sola +barricate +melzo +almeno +persone +ballare +parlare +buona +politica +lega +evvai +finiti +tornanti +selvino +guida +direzione +festa +melzo +aspetto +adoro +milano +agosto +parcheggio +ovunque +pontida +strapiena +grazie +lega +combatte +lago +mortitolo +stasera +pontida +leghisti +parlano +leghisti +rotto +montagne +combatté +scacciare +occupante +straniero +montagne +riparte +riprenderci +città +lavoro +futuro +migliaio +persone +sera +ferragosto +lega +ponte +legno +insieme +può +esagerati +poco +semifinale +torneo +notturno +calcetto +oratorio +vezza +oglio +calcio +pronti +autunno +caldo +lanceremo +serrata +totale +puntiamo +chiudere +comuni +negozi +stalle +benzinai +scuole +piscine +palle +piene +cosa +pensate +priorità +aumentare +contributo +pensioni +invalidità +vere +euro +vergogna +fine +fatto +controlli +beccare +falsi +invalidi +forse +governi +monti +letta +dormono +euro +uccidendo +lavoro +economia +stipendi +futuro +cuore +europa +combatteremo +europa +schiava +banche +finanza +poteri +forti +finita +pronti +battaglia +pronti +servirà +liberarci +euro +ieri +giornata +silenzio +piuttosto +parlare +costi +dire +cazzate +dice +signorino +letta +meglio +tacere +buona +settimana +tucc +sperando +governaccio +romano +pensi +tassare +vista +montagne +scelte +edicola +oggi +buon +week +amici +notte +serena +amici +sfigati +insultano +pronto +collegamento +sky +tg +ore +melone +calvenzano +spettacolo +gnocchi +burro +insalata +ravanelli +bicchieri +rosso +salento +fetta +crostata +poi +grappino +telefilm +notte +serena +amici +soprattutto +perde +mai +voglia +lottare +sperare +ricevuto +migliaia +messaggi +sostegno +tutta +italia +tanti +leghisti +molti +leghisti +nord +sud +cittadini +italiani +tanti +stranieri +perbene +pronti +firmare +abolire +inutile +ipocrita +ministero +integrazione +grazie +andremo +avanti +nonostante +insulti +attacchi +prima +gente +clandestini +posto +oggi +governo +pd +pdl +annuncia +pene +severe +confronti +mariti +violenti +ieri +governo +pd +pdl +fa +approvare +legge +svuota +carceri +uscire +delinquenti +serve +legga +svuota +carceri +legge +svuota +ministeri +fessi +occupano +montagna +valcamonica +vista +adamello +bicierin +grapa +buona +coro +alpino +canta +signore +cime +stereo +mica +invecchiando +buona +serata +amici +squadra +amici +lega +arcene +gara +barbe +belle +arcene +vado +duman +piazza +nerviano +amici +lega +incontrare +ascoltare +tanta +gente +notte +serena +ancora +voglia +combattere +grande +torta +grandi +militanti +veniano +ancora +giulia +altra +trota +giulia +preso +trota +adoro +laghetti +alpini +appuntamento +stasera +comasco +veniano +valbrona +almeno +migliaio +persone +insieme +lega +arcore +banzai +volante +direzione +arcore +villa +festa +lega +mooolto +meglio +mercato +via +osoppo +milano +bancarelle +smontano +coppia +nonni +nipotini +cercano +avanzi +po +frutta +verdura +piacerebbe +boldrini +pisapia +kyenge +pensassero +italiani +difficoltà +oltre +immigrati +rom +vergogno +dolcetto +dietetico +profiterole +panna +montata +posso +bella +milano +tranquilla +idee +proposte +inviti +oggi +pranzo +tramonto +corgeno +grazie +lega +scoprono +angoli +lombardia +davvero +stupendi +oggi +soddisfatto +può +fare +buona +politica +pochi +giorni +già +arrivate +richieste +contributo +economico +genitori +separati +divorziati +voluto +regione +lombardia +fino +euro +mese +aiutare +bisogno +solo +residente +lombardia +almeno +anni +prima +volta +importante +tema +solo +parole +fatti +concreti +informazioni +può +ancora +contattare +asl +zona +fate +girare +aiutiamo +aiutare +gente +esulto +condanna +nessuno +semmai +aspetto +condanna +troppi +kabobo +libertà +nè +amico +nè +nemico +berlusconi +avversario +politico +combatte +idee +sentenze +batte +idee +migliori +temo +governo +cadrà +troppi +interessi +soprattutto +economici +ballo +altro +destra +sinistra +quando +napolitano +letta +giù +appello +unità +coesione +interesse +supremo +italia +significa +vogliono +mollare +poltrona +continuare +svendere +possibile +penso +lega +debba +guardare +sempre +meno +succede +roma +sempre +solo +nord +usando +adesso +mai +coraggio +disubbidienza +giro +nord +solo +rabbia +voglia +lottare +tocca +lega +guidare +rivolta +uomini +donne +progetto +dipende +dipende +forza +schiuma +party +padano +colico +berlusconi +condannato +anni +adesso +curioso +sentire +kompagni +pd +parlamento +facebook +giustificare +fatto +governo +condannato +geniale +fare +lavori +autostrada +venerdì +luglio +pirla +coda +dopo +dalmine +giovani +padani +piemonte +presenti +leghisti +solo +venaria +parlare +piemonte +lavoro +futuro +banzai +regione +lombardia +conferenza +stampa +presentazione +progetto +favo +genitori +separati +difficoltà +riusciremo +aiutare +concretamente +circa +persone +solo +inizio +so +arrabbiarmi +meno +sopporto +falsità +ipocrisia +fatto +così +buona +serata +amici +direttore +tal +quotidiano +europa +ovviamente +sinistra +rivolgendosi +leghisti +dice +quasi +schifo +venite +parti +parti +qua +pagare +tasse +mezza +italia +lavoreresti +altrove +debbio +sallusti +pronti +studio +alcuni +kompagni +sinceri +democratici +accoglienti +tolleranti +indignati +offese +kyenge +vengono +pagina +solo +insultare +minacciare +fate +tanta +tenerezza +vicino +abbraccio +gente +tosta +sorridente +grandi +cose +grazie +missaglia +gente +lega +stasera +missaglia +avanti +comunque +kyenge +kyenge +aspetto +belli +brutti +stasera +festa +missaglia +polenta +missoltini +congresso +lega +como +gente +pronta +battaglia +squadra +volontari +marcallo +banzai +grande +gruppo +muggiò +gazebo +via +papiniano +vanno +ruba +libricini +primi +giorni +maroni +sudato +fradicio +lavori +casa +sabato +mattina +letto +castello +bimbi +smontato +trasferito +spalla +piani +scaleeee +palazzo +fronte +fatto +sforzi +sovrumani +ogni +tanto +bisogna +finta +essere +uomo +casa +no +giovani +padani +crema +cremona +banzai +balla +solo +borsa +grazie +lega +evviva +liscio +cioccolatini +pernigotti +finiscono +mani +straniere +oggi +comprare +stata +azienda +turca +parte +smetterò +comprarli +ennesima +dimostrazione +molliamo +euro +europa +perderemo +lavoro +produzione +futuro +cartello +stradale +milano +ama +libertà +odia +nessuno +ora +telelombardia +telefonare +vale +sempre +trasmissione +precedente +telefonate +espresso +fiducia +lega +ragazziiiiiii +gruppo +treviglio +tanti +belli +difesa +europea +fregatura +fronte +sbarchi +lampedusa +europa +lasciati +soli +bruxelles +contano +multinazionali +volere +cittadini +http +www +youtube +com +watch +v +53egzsrsepo +tanta +gente +stasera +lega +goito +giornalisti +cosa +scriverete +domani +grandi +militanti +griglia +goito +papa +migranti +dice +sappiamo +piangere +falso +basta +chiedere +parenti +vittime +clandestini +festa +strapiena +cassano +magnago +giornalisti +gufi +tanta +gente +bellissima +alserio +passi +lago +forza +lega +banzai +militanti +lavoro +boffalora +ticino +bravi +grande +squadra +padana +castelcovati +telelombardia +svegliaa +porta +caffè +virtuale +telefonando +chiudo +ufficio +ritiro +bandiera +ciao +strasburgo +mirta +superato +quota +kili +ride +sempre +incomincia +emettere +suoni +gorgheggi +ora +difficile +comprensione +po +bersani +secondo +prima +parola +mirta +abbraccio +strasburgo +troppa +ipocrisia +troppo +politicamente +corretto +palazzo +moderato +nooo +europa +euro +rischiano +essere +tomba +testa +fuori +prima +troppo +tardi +grande +squadra +giovani +padani +congresso +giovani +padani +fino +solo +lombardia +parte +siria +ribelli +ultrà +islamici +sgozzato +persone +egitto +ultime +ore +morti +centinaia +feriti +guerra +civile +orizzonte +ecco +primavere +arabe +stati +uniti +sinistre +occidentali +osannato +alimentato +armato +ognuno +guardasse +casa +male +grandi +militanti +spirano +decreto +fare +chiamatelo +decreto +rimandare +governo +rinvia +aumento +iva +compenso +irpef +chiede +acconto +letta +vuol +vendere +fumo +europa +massacrando +cittadini +imprese +solo +colare +picco +fretta +svegliaaa +poco +diretta +telelombardia +chiamare +diretta +segnalare +problemi +proposte +potete +chiamare +daiiiii +borgomanero +tanta +gente +spegne +televisione +accende +cervello +parlare +nord +immigrazione +lega +lavoro +banzai +sala +stra +piena +milano +dibattito +futuro +europa +rai +tg3 +regionale +unica +assente +conferenza +stampa +legge +aiuto +genitori +separati +rai +interessano +famiglie +me +interessa +pagamento +canone +conferenza +stampa +regione +lombardia +presentare +progetto +legge +tutela +genitori +separati +divorziati +figli +promesse +fatti +regione +lombardia +ieri +votato +stop +nuovi +centri +commerciali +grande +distribuzione +promesso +campagna +elettorale +fatto +governo +letta +bilico +presunta +trombata +secondo +cade +governo +ovviamente +anni +berlusconi +sconti +pena +assassini +sempre +convinto +ripartire +dobbiamo +mollare +paese +melma +indipendenza +telelombardia +sinistra +dice +lega +morta +scomparsa +primi +cittadini +telefonato +diretta +rivolti +fiducia +lega +basta +litigi +pernacchie +lavoro +vince +grandi +militanti +osio +sotto +banzai +dietro +quinte +agora +onda +poco +rai +bruxelles +oggi +indosso +polo +verde +amici +padani +adro +domani +sera +saró +festa +lega +osio +sotto +viene +fare +salto +daiiiii +grandi +militanti +caronno +varesino +vive +lavora +paga +nord +governo +decreto +fare +prendere +prendere +sedere +grigliata +lago +como +bellooooooo +benvenuta +mirta +oggi +mesi +sorrisi +oggi +giornata +mondiale +donazione +sangue +grazie +dona +buoni +fatti +solo +parole +viaggio +strasburgo +sotto +splendido +cielo +lombardia +buona +giornata +amici +ri +parte +saró +diretta +antenna +parlarmi +magari +esporre +qualche +problema +potete +telefonare +ciao +berlusconi +dice +vorrei +europa +meno +europa +piace +invece +avere +meno +roma +meno +bruxelles +autonomie +lavoro +grande +insegna +milanese +nuovo +bar +piazza +duomo +visitare +assssolutamente +siti +corriere +repubblica +danno +grande +spazio +notizia +fondamentale +minetti +amava +berlusconi +frega +parlare +lavoro +no +ogni +paese +giornalisti +merita +piace +ogni +volta +sento +rabbioso +arrogante +dice +spero +lega +scompaia +sempre +convinto +ragione +bussolengo +verona +centinaia +persone +piazza +lega +banzai +governo +dice +riforme +mesi +avvisa +roma +autunno +economicamente +politicamente +decide +vive +muore +preparando +prima +cormano +solito +casino +pezzo +stupendo +ode +to +my +family +stanco +morto +battaglia +fiducioso +wow +arrivati +grazieeeeeeeeee +ebbè +dietro +quinte +quinta +colonna +allegri +riconfermato +allenatore +milan +piace +proprio +ogni +tanto +chiesto +valsa +davvero +pena +fare +tutte +battaglie +anni +lega +risposta +sì +ciao +amici +piccola +rivoluzionaria +cresce +confesso +ogni +tanto +ascolto +bel +liscio +radio +zeta +via +palmanova +coda +impressionante +verso +milano +forse +pisapia +semaforo +regalare +rose +cosa +state +ascoltando +radio +ve +dico +vediamo +indovina +vista +situazione +continuando +essere +fiducioso +penso +dovremo +essere +po +meno +prudenti +elettori +giorni +molti +voti +passati +forse +futuri +lega +cuori +bisogna +riconquistare +dobbiamo +discutere +ragionare +sconfitte +festeggiare +solo +stasera +vittorie +domani +lavoro +disfattisti +bisogno +pochi +minuti +fa +militare +francese +stato +accoltellato +gola +parigi +polizia +pare +dando +caccia +nordafricano +notizia +confermata +mammamia +oriana +fallaci +penso +libri +dovrebbero +essere +obbligatori +tutte +scuole +ascoltano +vasco +milano +meda +cantano +finestrino +abbassato +sole +entra +montagne +lombarde +innevate +sfondo +incredibileeeeeeeee +perfino +corriere +sera +adesso +boccia +giunta +pisapia +mai +secondo +grillino +vito +crimi +ora +radio +dice +può +pensare +euro +velocità +sempre +arrivano +dopo +lega +sfida +passare +parole +fatti +vent +anni +fa +morivano +mano +mafia +magistrato +giovanni +falcone +moglie +francesca +diversi +uomini +scorta +grande +uomo +coerente +coraggioso +fine +isolato +osteggiato +proprio +quei +progressisti +ogni +anno +ipocritamente +ricordano +ieri +oggi +domani +sempre +tutte +mafie +appena +finito +volantinaggio +mercato +brescia +ottima +accoglienza +tante +domande +tante +firme +raccolte +qualche +critica +tanti +tenete +duro +ragazzi +brescia +vince +ministra +vergogna +sala +strapiena +lodi +almeno +persone +piedi +trovano +posto +presentazione +candidati +lega +nord +risveglieranno +città +sempre +vuota +povera +insicura +sinistra +mentre +altri +insultano +lodi +lega +propone +può +vincere +domani +saró +gazebo +via +papiniano +angolo +piazza +sant +agostino +raccogliere +firme +difendere +reato +clandestinità +televisioni +fotografi +viene +ciaoooo +telelombardia +parlarmi +diretta +chiamate +www +vieniafirmare +com +trovate +indirizzi +gazebo +lombardia +fate +girare +bacheche +ragazzi +arriviamo +condivisioni +incazzato +altro +incazzato +può +morire +così +cosa +pensate +ieri +niguarda +quartiere +milanese +folle +picconatore +sparso +sangue +innocente +ore +gazebo +lega +fermati +firmato +sostegno +reato +clandestinità +cittadini +altri +cittadini +militanti +sinistra +contestato +pensate +dedicati +titoli +giornali +pennivendoli +anti +leghisti +schifo +banzai +notte +serena +amici +bella +gente +incontrato +oggi +tanti +problemi +qualche +critica +molte +proposte +speranze +entusiasmo +intatti +domani +canale +voglia +ciauuu +domani +prima +comunione +fede +buondì +diretta +gold +chiamatemi +ora +entro +san +vittore +spero +uscire +bene +bene +liberata +pagina +po +frustrati +sfigati +vari +visita +centro +anti +violenza +ospedale +finanziati +unione +europea +soldi +ben +spesi +vite +salvate +contesto +povertà +impensabile +poco +sfido +gradi +vado +ricerca +casa +madre +teresa +calcutta +gente +almeno +fine +riesce +sorridere +condividete +ciao +amici +oggi +po +accaldato +saluto +aeroporto +dubai +chissà +ministra +integrazione +ragazzi +condividiamo +liberata +pagina +po +pirla +tanti +centri +sociali +disposizione +sfogatevi +parti +salute +vale +profitti +qualche +multinazionale +lega +continua +battersi +bruxelles +diritti +celiaci +bello +riuscre +risolvere +problemi +concreti +cittadini +lavori +installare +ascensori +disabili +sistemazione +alcune +case +popolari +recupero +giardino +comunale +aiuto +alcune +mamme +graduatorie +scuole +materne +ora +vado +tele +antenna +telelombardia +telefonatemi +diretta +eccomi +sbarcato +rai +oggi +pomeriggio +sotto +madonnina +sentite +viene +comiziare +aprile +compagna +amica +rom +laura +boldrini +prevedo +fiumi +buonismo +retorica +faziosità +bla +bla +poveri +partigiani +sapessero +andata +finire +martedì +aprile +lega +nord +ogni +piazza +lombardia +dire +lavoro +no +equitalia +sinistra +milano +deciso +svendere +stato +scuola +eccellente +san +giusto +pisapia +voti +buttati +via +matrimoni +soprattutto +adozioni +bambini +coppie +omosessuali +dico +no +futuro +salto +buio +cancella +radici +certezze +speranze +invece +ieri +francia +altro +parlamento +proprio +approvato +esultanza +qualcuno +interessano +mode +penso +così +cosa +dite +ciao +padani +linate +direzione +bruxelles +combattere +ragazzi +commenti +discorso +napolitano +indipendenza +sempre +comunque +indipendenza +prodi +mai +presidente +oggi +ore +troviamo +protestare +davanti +prefettura +milano +quando +chiuderà +mai +troppo +tardi +corso +monforte +fischietti +bandiere +po +mortadella +aspetto +pisapia +rom +storia +amore +incompreso +milanesi +turchia +europa +né +storia +né +cultura +né +rispetto +diritti +umani +europa +solo +parola +vuota +turchia +potrà +entrarci +ora +neppure +futuro +spero +vermi +bombe +ucciso +bimbo +anni +boston +bimbo +appena +abbracciato +papà +ebbene +spero +riescano +dormire +resto +miseri +giorni +davvero +felice +appena +partecipato +inaugurazione +centro +aiuto +vita +ospedale +buzzi +milano +aiuta +psicologicamente +economicamente +donne +difficoltà +proseguire +gravidanza +piccolo +contribuito +nascita +centro +fin +inizi +mesi +nati +bimbi +altrimenti +altro +rimasti +cielo +oggi +conosciuto +bimbe +vestitino +rosa +ciuccio +bocca +papà +mamma +fine +detto +grazie +senza +aiuto +forse +piccola +mai +nata +sapere +avere +piccola +parte +merito +vita +sorride +dato +emozione +incredibile +avanti +lavoro +www +tuttiicriminidegliimmigrati +com +date +occhio +sito +impressionante +stasera +mirta +compie +mesi +abbraccia +ora +collego +macchina +tg +com +leggo +oggi +bari +persone +giunte +puglia +ascoltare +comizio +sivlio +berlusconi +cacchio +devo +dire +pensavo +cavaliere +finito +sbagliato +grosso +pensate +pronto +week +end +incontri +friuli +venezia +giulia +domani +udine +piazza +san +giacomo +fogliano +redipuglia +gorizia +monfalcone +domenica +invece +tour +prevede +incontro +grado +cordenons +poi +meduno +zoppola +pordenone +amici +furlans +aspetto +stamattina +torna +fango +vecchi +tempi +pronto +sopralluogo +palazzo +abbandonato +via +montefeltro +milano +fianco +autostrada +oggi +okkupato +clandestini +rom +abusivi +varia +natura +rendono +impossibile +vita +residenti +lega +suona +sveglia +sindaco +speremm +bello +vedere +persone +cena +goito +leghisti +vent +anni +oppure +leghisti +appena +arrivati +orgogliosi +sorridenti +ogni +tanto +litigiosi +incazzati +motivati +marciamo +compatti +ferma +nessuno +adoro +tortelli +zucca +pensionati +ultrasettantenni +residenti +milano +possono +sottoscrivere +polizza +assicurativa +gratuita +furti +scippi +rapine +info +polizia +locale +milano +azz +bilancia +medico +avis +assegna +kili +consigli +perdere +qualche +chilo +secondo +coscienza +ultimi +suicidi +civitanova +marche +suicidi +colpa +crisi +lega +mantiene +promesse +mentre +roma +caos +giunta +maroni +pensa +cittadini +comuni +difficoltà +diretta +qualcuno +scandalizza +scherzo +radiofonico +zanzara +imitazione +fatto +fare +figuraccia +professor +onida +imitazioni +bossi +maroni +mai +scandalizzato +nessuno +sempre +comunque +viva +satira +zanzara +adesso +passo +telelombardia +luogo +stesso +cambia +canale +sempre +ascoltare +confesso +preso +giorni +totale +riposo +domani +riparte +tutta +forza +ricordandosi +obiettivo +ultimo +lega +splendidi +militanti +rimane +sempre +comunque +indipendenza +padania +banzai +vogliamo +risolvere +davvero +problema +sovraffollamento +carceri +scontare +pena +detenuti +stranieri +paese +origine +carceri +sicure +vivibili +risparmieremo +miliardi +euro +soldi +pubblici +banzai +governo +tecnico +monti +bersani +no +grazie +gia +dato +serve +governo +affrontare +problemi +paese +reale +dobbiamo +continuare +perdere +tempo +proclami +grillo +bersani +allora +meglio +tornare +votare +milano +perde +memoria +perde +futuro +ricordereste +enzo +jannacci +intitolandogli +cosa +città +sorriso +pensiero +grande +enzo +jannacci +passeggia +scarp +tennis +lassù +notte +serena +amici +gente +nord +sveglia +nemmeno +adesso +addio +duman +matina +voglia +rai +ciauuu +registrando +porta +porta +stasera +oggetto +discussione +palude +romana +stop +venditori +abusivi +sequestro +merce +stop +nuovi +centri +commerciali +riduzione +imu +cosap +tassa +insegne +no +area +altre +demenziali +tasse +comunali +via +redditometro +stop +persecuzione +fiscale +magari +cominciare +pagare +tasse +paga +esempio +prostitute +dite +negozi +morendo +tasse +quali +interventi +suggerite +bloccare +disastro +città +no +imu +stop +aperture +centri +commerciali +riduzione +fiscale +altro +fatica +tirare +fine +mese +vuole +chiacchiere +lavoro +certezze +lega +capito +pezzo +ora +altri +sveglino +signora +boldrini +presidente +consiglio +paese +nordafricano +magari +visto +preoccupa +tanto +immigrati +po +meno +gente +beppe +grillo +dice +commenti +negativi +critiche +blog +gente +pagata +attaccarlo +accetta +critica +ritiene +unico +depositario +verità +preoccupa +piace +stasera +fuori +cena +ragazzo +padre +bella +età +anni +lago +garda +insieme +federico +mirta +amico +bimbo +chissà +cosa +pensano +tavoli +vicini +banzai +buon +venerdì +gente +stamattina +incontro +residenti +commercianti +mercati +milanesi +baggio +via +pistoia +via +fratelli +dio +oggi +ultima +giornate +tranquilli +futuro +bello +deve +ancora +venire +dopo +perdita +vicesindaco +assessore +bilancio +lavori +pubblici +ora +assessore +cultura +giunta +pisapia +continua +perdere +pezzi +ora +telefonate +diretta +radio +popolare +ascoltatori +elettori +sinistra +delusi +pisapia +milano +arancione +già +tramonto +piace +bella +serata +casalinga +parlare +futuro +amici +politica +senza +amici +nulla +nevica +milano +adoro +neve +notte +serena +aiuto +follia +www +corriere +it +sezione +roma +leggo +asilo +annullato +festa +papa +turbare +bimbo +mamme +omosessuali +attendo +qualche +democratico +sinistra +invece +spieghi +tratta +progresso +tolleranza +cosa +pensate +intera +giornata +passata +bimba +mesi +fa +dimenticare +tutte +schifezze +mondo +notte +serena +amici +amici +proposte +interessanti +stasera +www +affaritaliani +it +sezione +milanoitalia +sondaggio +chiede +lettori +giudizio +pisapia +dopo +quasi +anni +mandato +bene +dopo +oltre +voti +giudizi +insufficiente +pessimo +superano +milanesi +dite +buon +venerdì +amici +ieri +dimesso +parlamento +roma +rimanere +bruxelles +essere +sempre +vicino +milano +lombardia +gente +nord +lavoro +manca +entusiasmo +neanche +banzai +pare +bersani +grillo +scannando +presidenze +camera +senato +tristezza +secondo +finire +autostrada +svizzera +rispettano +limite +velocità +invece +no +visto +caos +roma +pare +bersani +messo +angolo +solo +secondo +recupereranno +matteo +renzi +preparo +caffe +zucchero +no +ordinarlo +chiamatemi +ora +diretta +telelombardia +numero +buona +settimana +case +popolari +sicurezza +aiuti +aziende +difesa +ambiente +parchi +lavoro +agricoltura +sostegno +disabili +treni +pendolari +riduzione +tasse +quali +secondo +priorità +deve +affrontare +prossimo +governatore +lombardia +prime +vaccinazioni +fatte +mirta +rideva +preoccupata +mamma +certo +rimanere +auto +ferma +terza +volta +pochi +mesi +finito +completamente +benzina +porta +sospettare +essere +cretino +so +mangiare +crispy +mac +bacon +mezzanotte +sano +frega +mamma +giornatina +perso +qualcosa +bello +brutto +ossignur +pagina +fb +povero +saviano +altro +sinistro +deluso +voto +credibilita +signor +maroni +conquistata +fatti +rinsultati +concreti +mord +sud +altri +credibilità +conquistata +teatro +libri +convegni +belle +parole +so +preferisco +risultati diff --git a/anno3/avrc/assignments/dataviz/dataset/2014/salvini_comuni.html b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_comuni.html new file mode 100644 index 0000000..0f664af --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2014/salvini_counter b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_counter new file mode 100644 index 0000000..f560e04 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_counter @@ -0,0 +1 @@ +{"buon": 12, "amici": 52, "riprendiamoci": 2, "futuro": 19, "prima": 17, "monti": 2, "poi": 12, "letta": 3, "ora": 23, "renzi": 42, "rubato": 1, "sabato": 22, "febbraio": 3, "riprendiamocelo": 1, "baita": 1, "artigiani": 4, "presepi": 1, "difendiamo": 5, "montagna": 3, "tradizioni": 7, "presepe": 3, "costruito": 1, "acqua": 7, "bravissimi": 1, "autori": 1, "strapieno": 2, "stasera": 15, "lega": 117, "albino": 1, "torna": 4, "casa": 23, "stinco": 1, "neve": 1, "milano": 42, "notte": 11, "serena": 7, "sempre": 15, "bella": 11, "auguri": 5, "giovani": 7, "aiutare": 7, "babbo": 1, "natale": 6, "portare": 3, "regali": 1, "bimbi": 6, "ricoverati": 1, "ospedale": 5, "buzzi": 2, "sorrisi": 2, "regalo": 1, "bello": 3, "donare": 1, "sangue": 1, "fa": 9, "bene": 7, "dona": 1, "riceve": 1, "carcere": 2, "bergamo": 7, "abbracciare": 1, "antonio": 7, "monella": 3, "imprenditore": 2, "bergamasco": 2, "condannato": 4, "anni": 19, "galera": 4, "aver": 6, "ucciso": 3, "rapinatore": 2, "purtroppo": 4, "grazie": 37, "stato": 21, "buono": 3, "delinquenti": 1, "severo": 1, "altro": 53, "persone": 33, "perbene": 3, "passer\u00e0": 1, "lontano": 1, "volesse": 2, "mandargli": 1, "messaggio": 7, "pu\u00f2": 22, "scrivere": 2, "circondariale": 1, "via": 18, "gleno": 1, "pensiero": 4, "tristi": 1, "vergognano": 1, "storia": 8, "dimentica": 2, "passato": 4, "cuore": 6, "montagne": 4, "luogo": 1, "centinaia": 23, "clandestini": 24, "profughi": 1, "alloggiati": 1, "mantenuti": 1, "spese": 10, "italiani": 30, "palazzine": 1, "ex": 6, "villaggio": 1, "olimpico": 1, "torino": 10, "sinistra": 19, "ovviamente": 4, "nulla": 5, "commercianti": 3, "residenti": 1, "accolto": 2, "ringraziato": 2, "impegnato": 1, "tornare": 7, "finch\u00e9": 2, "legalit\u00e0": 1, "verr\u00e0": 2, "rispettata": 1, "abbraccio": 4, "vigevano": 1, "voglia": 14, "lavorare": 10, "vivere": 5, "sicuri": 2, "credere": 1, "bravo": 4, "sindaco": 11, "sgombera": 1, "abusivi": 6, "turchia": 2, "occupa": 3, "militarmente": 1, "quarant": 2, "mezza": 3, "cipro": 1, "ostina": 1, "negare": 1, "genocidio": 1, "armeni": 1, "bruxelles": 21, "qualche": 9, "genio": 1, "insiste": 2, "farla": 1, "entrare": 5, "europa": 36, "intanto": 5, "regala": 1, "milioni": 10, "euro": 66, "anno": 10, "fuori": 15, "gabbia": 9, "matti": 6, "ciao": 4, "strasburgo": 11, "oggi": 62, "votare": 3, "problemi": 6, "venezuela": 1, "mauritania": 1, "sudan": 1, "filippine": 1, "georgia": 1, "andate": 1, "quel": 4, "paese": 5, "disoccupazione": 2, "immigrazione": 20, "devastano": 1, "altroeuropa": 1, "battiamo": 1, "invece": 7, "preoccupano": 1, "resto": 2, "mondo": 12, "unione": 4, "sovietica": 3, "europea": 5, "liceo": 1, "stellini": 1, "udine": 4, "quest": 2, "festeggiare": 1, "buond\u00ec": 1, "parte": 11, "spero": 2, "marted\u00ec": 4, "soddisfazioni": 1, "lavoro": 27, "poche": 2, "incazzature": 1, "fb": 1, "prodi": 1, "quirinale": 1, "maddai": 1, "tanti": 13, "imprenditori": 5, "incontro": 17, "organizzato": 1, "padova": 11, "ministri": 3, "russia": 12, "crimea": 5, "pace": 3, "dialogo": 1, "sanzioni": 10, "danno": 1, "pazzesco": 3, "tanta": 20, "gente": 39, "regalata": 2, "tessera": 3, "molti": 5, "volta": 3, "nonostante": 3, "tagli": 1, "rubati": 1, "altri": 15, "lombardia": 5, "riusciamo": 2, "comprare": 1, "nuovo": 9, "acceleratore": 1, "lineare": 1, "radioterapia": 1, "malati": 1, "tumore": 2, "sondrio": 2, "generosit\u00e0": 1, "valtellinesi": 1, "fondi": 1, "raccolti": 2, "cancro": 3, "primo": 4, "aiuto": 4, "onlus": 1, "contributo": 1, "provincia": 8, "regione": 4, "buona": 18, "politica": 10, "insieme": 15, "cittadini": 16, "fare": 10, "tanto": 3, "brutto": 2, "tempo": 26, "solo": 21, "gazebo": 24, "piazza": 39, "wagner": 1, "nuovi": 4, "iscritti": 1, "grande": 10, "professor": 1, "alvin": 1, "rabushka": 1, "regalato": 2, "felpa": 5, "gi\u00f9": 2, "mani": 1, "italiana": 10, "ciechi": 2, "governo": 8, "tira": 3, "tolto": 2, "aliquota": 4, "fiscale": 8, "sala": 12, "strapiena": 11, "seguici": 1, "diretta": 24, "sito": 9, "nord": 26, "radio": 5, "padania": 4, "orgoglioso": 1, "costruire": 1, "italia": 30, "migliore": 2, "padellata": 1, "castagne": 2, "santa": 3, "lucia": 1, "qualcuno": 6, "offenda": 1, "altra": 12, "bresciana": 2, "dolce": 1, "gabbana": 1, "domenica": 39, "prossima": 4, "sedi": 3, "aperte": 2, "giornata": 8, "tesseramento": 1, "cambiare": 11, "puo": 3, "elenco": 1, "aggiornamento": 2, "http": 15, "www": 46, "leganord": 3, "org": 39, "index": 2, "php": 2, "aderisci": 1, "iscriviti": 1, "affollatissimo": 2, "giornalisti": 5, "stranieri": 2, "attenzione": 3, "idee": 11, "molto": 4, "contento": 2, "pronto": 13, "floris": 1, "juve": 1, "ieri": 3, "fiera": 2, "consorzio": 1, "focaccia": 1, "recco": 3, "esempio": 3, "bont\u00e0": 1, "conoscere": 1, "tutelare": 1, "evitare": 2, "arrivino": 1, "tavola": 1, "schifezze": 2, "prodotte": 1, "materie": 1, "prime": 5, "scadenti": 1, "italiano": 3, "nome": 4, "difende": 1, "addio": 1, "liguria": 1, "dice": 6, "fascista": 1, "quando": 3, "tratta": 1, "difendere": 9, "interessi": 1, "parlamento": 7, "russo": 4, "incontrare": 3, "rischiando": 1, "perdere": 2, "colpa": 3, "economiche": 2, "idiote": 2, "imposte": 1, "rimettendo": 1, "miliardi": 5, "twitti": 1, "mangi": 1, "gelato": 1, "partenza": 1, "mosca": 7, "autorit\u00e0": 1, "russe": 1, "rischiano": 1, "dovrebbe": 5, "essere": 4, "made": 1, "italy": 1, "serata": 13, "fine": 3, "semestre": 1, "presidenza": 1, "risultati": 1, "portato": 4, "meno": 9, "zero": 4, "seriate": 1, "consiglieri": 2, "davanti": 11, "realizzato": 1, "alunni": 1, "scuola": 2, "edile": 2, "case": 3, "popolari": 1, "soprattutto": 3, "eppure": 1, "dopo": 16, "abolito": 2, "reato": 17, "clandestina": 9, "depenalizza": 1, "occupazione": 1, "abusiva": 1, "vergogna": 8, "intervistato": 1, "cristina": 1, "parodi": 1, "vita": 7, "andato": 9, "abbastanza": 3, "convincente": 1, "diciamo": 2, "chiedo": 2, "voti": 6, "prestanza": 1, "fisica": 1, "dovrei": 1, "andare": 4, "palestra": 1, "so": 4, "pur": 1, "esporre": 1, "disposto": 1, "quasi": 4, "aspetto": 20, "domani": 15, "edicola": 2, "sorridere": 3, "allunga": 1, "governatore": 4, "pd": 15, "toscana": 1, "enrico": 2, "rossi": 3, "presenta": 2, "vicini": 1, "rom": 12, "dimmi": 1, "vai": 2, "dir\u00f2": 1, "avanza": 1, "alluvionati": 4, "disoccupati": 5, "magari": 2, "piacere": 1, "bicchierino": 2, "armando": 1, "siri": 1, "pin": 1, "dicembre": 1, "streaming": 4, "tv": 4, "proposta": 3, "rivoluzione": 2, "unica": 17, "ecco": 14, "squadra": 6, "regionali": 2, "difenderanno": 1, "diritti": 2, "emilia": 23, "romagna": 18, "gruppo": 7, "giovane": 3, "lavorooo": 1, "voto": 13, "europeo": 3, "compresi": 1, "forza": 12, "appena": 7, "salvato": 1, "poltrone": 2, "vergognosa": 2, "commissione": 4, "cos\u00ec": 12, "potranno": 3, "continuare": 2, "massacrare": 1, "economia": 1, "piace": 17, "viva": 7, "tombini": 1, "ghisa": 1, "abbasso": 1, "ride": 1, "mai": 12, "stesso": 1, "riflessioni": 1, "pallone": 1, "sgonfiando": 1, "vola": 1, "comunit\u00e0": 15, "cresce": 8, "giorno": 14, "ovunque": 2, "pochi": 6, "potenti": 1, "clima": 1, "derby": 1, "fatto": 5, "dovere": 2, "emiliani": 3, "romagnoli": 3, "iovoto": 5, "bologna": 10, "tante": 10, "passione": 5, "bravi": 5, "ragazzi": 9, "centri": 7, "sociali": 4, "danneggiato": 1, "sede": 6, "identificato": 1, "tizio": 1, "salito": 1, "cofano": 1, "macchina": 3, "spalare": 1, "fango": 1, "zone": 3, "alluvionate": 1, "palazzo": 7, "cento": 2, "terremoto": 5, "niente": 6, "evviva": 1, "ringraziano": 1, "splendida": 13, "busseto": 2, "verdi": 3, "ricchezza": 2, "certa": 1, "vuole": 3, "valorizzare": 1, "testa": 3, "tour": 19, "fabbri": 5, "salvini": 17, "chiusura": 4, "ore": 27, "cittadinanza": 7, "rivergaro": 2, "pc": 3, "presso": 3, "mercato": 10, "paolo": 1, "presidio": 7, "stop": 17, "frazione": 1, "caratta": 1, "strada": 5, "provinciale": 1, "cortemaggiore": 1, "pr": 1, "reggio": 4, "spaghetteria": 1, "santo": 1, "stefano": 1, "fe": 1, "guercino": 1, "comizio": 2, "elettorale": 12, "teatro": 5, "fossolo": 4, "lincoln": 4, "trasmissione": 2, "onda": 1, "bersaglio": 1, "mobile": 1, "pomeriggio": 4, "venerd\u00ec": 3, "campagna": 3, "poveretti": 4, "urlano": 1, "bar": 2, "forl\u00ec": 2, "meglio": 5, "leghista": 14, "dicono": 6, "vuota": 2, "devono": 4, "avere": 4, "sera": 7, "cinema": 1, "incontrate": 2, "riccione": 2, "incazzati": 1, "spende": 1, "filobus": 1, "attraversa": 1, "paesi": 3, "massacra": 2, "ambiente": 1, "serve": 2, "no": 25, "trc": 1, "cattolica": 1, "mancavano": 1, "immigrati": 31, "mesi": 4, "mangiano": 1, "dormono": 2, "hotel": 3, "royal": 1, "stelle": 2, "piscina": 2, "spiaggia": 1, "civile": 1, "generoso": 1, "quei": 1, "letti": 1, "mette": 1, "disposizione": 1, "difficolt\u00e0": 3, "sbaglio": 1, "raoul": 1, "casadei": 1, "re": 1, "liscio": 2, "ringrazio": 2, "musica": 7, "amore": 1, "belle": 3, "parole": 4, "detto": 3, "vado": 3, "voter\u00f2": 1, "altre": 2, "me": 8, "vicinaaaaa": 1, "treno": 1, "cambiamento": 1, "passa": 3, "fino": 31, "sceglie": 1, "scegliere": 4, "alternativa": 5, "nasce": 2, "piazze": 7, "segreterie": 2, "partito": 2, "riguarda": 1, "alfano": 7, "dite": 9, "vicina": 1, "mettete": 2, "foto": 13, "cartello": 2, "social": 4, "mattina": 5, "deborah": 1, "compagnoni": 1, "roberto": 1, "maroni": 1, "assessore": 1, "sport": 1, "flavio": 3, "ferrari": 1, "presidente": 4, "roda": 1, "nazionale": 3, "fisi": 1, "conferenza": 2, "stampa": 2, "presentazione": 1, "eventi": 1, "invernali": 1, "qualcosa": 1, "invidiare": 1, "finale": 2, "piccola": 3, "azienda": 3, "ripartita": 1, "dipendenti": 1, "mettono": 1, "anima": 2, "padroni": 2, "sindacati": 1, "sapete": 4, "novit\u00e0": 1, "creare": 1, "falsi": 1, "profili": 1, "copiando": 1, "fingendosi": 1, "alcuni": 5, "commenti": 3, "fate": 3, "vorrei": 1, "rimaneste": 1, "male": 3, "livello": 1, "frustrazione": 1, "sinistri": 2, "senza": 7, "confini": 3, "segno": 1, "asilo": 1, "elementare": 1, "ricostruite": 1, "alan": 4, "bondeno": 1, "piacerebbe": 2, "tutta": 9, "risorgesse": 1, "cesena": 1, "commerciali": 1, "limite": 1, "spesa": 1, "contanti": 1, "obbligo": 2, "bancomat": 2, "controlli": 3, "orari": 3, "contratti": 1, "negozi": 4, "gestiti": 1, "sospensione": 2, "durc": 1, "terremotati": 2, "negozio": 1, "chiude": 2, "sconfitta": 1, "piadina": 1, "romagnola": 1, "orva": 1, "bagnacavallo": 1, "ravenna": 1, "eccellenza": 2, "piadine": 1, "sfornate": 1, "vendute": 1, "ogni": 8, "tasse": 9, "burocrazia": 2, "imprese": 7, "crescono": 1, "potr\u00e0": 4, "toilette": 1, "rione": 1, "rosso": 6, "faenza": 2, "riso": 3, "minuti": 2, "collegamento": 5, "abbracciate": 1, "soliti": 1, "contestatori": 1, "stavolta": 2, "almeno": 2, "sfasciato": 1, "agenti": 1, "polizia": 3, "locale": 1, "piacenza": 4, "quartiere": 1, "roma": 18, "risse": 1, "spaccio": 1, "accoltellamenti": 1, "paura": 6, "uscire": 9, "telecamere": 1, "sorveglianza": 1, "sequestro": 1, "appartamenti": 1, "affittati": 1, "nero": 1, "giardini": 2, "verifiche": 1, "apertura": 1, "etnici": 1, "servono": 2, "soldi": 9, "volont\u00e0": 2, "ah": 2, "gi\u00e0": 18, "governa": 1, "partire": 2, "novembre": 6, "agricoltori": 3, "rischio": 5, "migliaia": 10, "posti": 5, "mancata": 1, "esportazione": 1, "prodotti": 5, "dici": 1, "secondo": 6, "sondaggi": 3, "crescendo": 1, "comunque": 4, "montiamoci": 1, "continuiamo": 1, "incontri": 2, "minuto": 2, "relax": 3, "video": 5, "quiz": 1, "risposta": 3, "comprate": 1, "vocale": 1, "confartigianato": 1, "parma": 1, "aziende": 4, "chiuse": 1, "follia": 3, "studi": 4, "settore": 4, "versamenti": 1, "inps": 2, "legge": 21, "chissenefrega": 1, "imola": 1, "spalle": 3, "struttura": 1, "ospita": 3, "arrivano": 2, "guerra": 2, "terremotato": 1, "alluvionato": 1, "alberghi": 2, "vanno": 2, "pagati": 1, "razzismo": 3, "vota": 9, "giusto": 5, "ricordarlo": 1, "monumento": 2, "marco": 3, "pantani": 1, "qualunque": 1, "giudizio": 1, "ciclista": 1, "grandi": 4, "emozioni": 1, "cesenatico": 1, "risultato": 2, "raggiunto": 1, "manifestazioni": 1, "raccolte": 4, "firme": 16, "finalmente": 2, "soggiornavano": 1, "albergo": 2, "stati": 3, "allontanati": 1, "fusignano": 1, "arrigo": 1, "sacchi": 2, "milan": 3, "vittorie": 1, "splendidi": 1, "militanti": 7, "amministratori": 1, "modigliana": 1, "val": 3, "tramazzo": 1, "danni": 1, "alluvione": 1, "nessuna": 1, "colazione": 5, "torta": 2, "mele": 1, "mitici": 1, "formaggini": 1, "susanna": 1, "distruggete": 1, "macchine": 1, "raccomando": 1, "immagini": 1, "parlano": 1, "chiaro": 3, "idea": 2, "democrazia": 1, "fonti": 1, "carlino": 1, "repubblica": 3, "it": 7, "montesilvano": 1, "convegno": 2, "asimmetrie": 1, "liberiamo": 1, "moneta": 3, "folle": 1, "torniamo": 2, "balordi": 1, "distrutto": 1, "ancora": 13, "avvicinassimo": 1, "campo": 4, "bastardi": 1, "poveri": 2, "paghiamo": 1, "bollette": 1, "famiglia": 4, "assessora": 1, "bolognese": 1, "taci": 1, "vergognati": 1, "disastroso": 1, "inciucio": 1, "cinquestelle": 4, "consulta": 1, "csm": 1, "grillo": 4, "capisco": 1, "dispiace": 1, "elettori": 2, "basta": 22, "incontrollata": 2, "fiato": 1, "corto": 1, "fatti": 3, "guardiamo": 2, "avanti": 3, "gruber": 1, "stamattina": 8, "aggredisce": 1, "insulta": 1, "leghisti": 9, "emiliana": 2, "offre": 1, "gratis": 5, "luce": 2, "gas": 3, "integrazione": 2, "chiudere": 3, "sgomberare": 2, "campi": 3, "libri": 1, "belli": 2, "letto": 1, "ombra": 1, "vento": 2, "carlos": 1, "ruiz": 1, "zafon": 1, "titoli": 2, "suggerire": 1, "stanchi": 1, "modello": 2, "rappresentiamo": 1, "palle": 6, "piene": 4, "portando": 1, "rovina": 1, "apprezzatissimo": 2, "possiamo": 5, "dare": 5, "grosso": 1, "dispiacere": 1, "state": 3, "pagina": 3, "diffondiamo": 1, "https": 7, "facebook": 14, "com": 12, "fabbripresidente": 2, "merlo": 1, "preoccupato": 1, "esaurito": 4, "festa": 13, "zucca": 4, "ziano": 1, "piacentino": 2, "passate": 1, "halloween": 1, "assaggiare": 1, "yogurt": 3, "panna": 1, "cotta": 1, "latteria": 1, "pievetta": 1, "castel": 1, "san": 11, "giovanni": 1, "cercatela": 2, "internet": 4, "emozione": 2, "estero": 1, "visitati": 1, "ladri": 1, "litri": 1, "gasolio": 1, "fregati": 1, "poco": 8, "sky": 2, "tg": 3, "agricola": 1, "vittima": 1, "furti": 1, "aggressioni": 1, "vengono": 1, "presi": 1, "giorni": 15, "riforma": 6, "giustizia": 2, "calendasco": 1, "ostello": 1, "decine": 7, "nessuno": 5, "progetta": 1, "intervista": 7, "iene": 1, "piaciuta": 1, "mps": 1, "scegli": 2, "moriremo": 1, "renziani": 1, "siena": 1, "fallimenti": 1, "banca": 1, "universit\u00e0": 1, "squadre": 1, "calcio": 3, "basket": 1, "tocca": 2, "muore": 1, "svegliando": 1, "chiuso": 2, "mezzo": 5, "pompieri": 1, "precari": 1, "vogliono": 6, "appassiona": 1, "propone": 1, "dovremmo": 1, "dialogare": 1, "braulio": 2, "tranquilla": 3, "presento": 1, "juncker": 1, "maggiori": 1, "responsabili": 1, "disastro": 3, "saluto": 5, "arrivato": 3, "forte": 3, "rompere": 1, "ungheria": 1, "preoccuparsi": 2, "putin": 6, "scelgo": 3, "emergenza": 2, "chiudono": 2, "lecce": 1, "lasciamo": 1, "amichetti": 1, "merkel": 5, "panino": 1, "crudo": 1, "mozzarella": 1, "succo": 1, "frutta": 2, "naviglio": 1, "pulito": 1, "curato": 1, "tendone": 2, "sotto": 4, "monte": 3, "bergamasca": 4, "ferma": 4, "commosso": 1, "felice": 3, "straordinaria": 1, "donne": 6, "uomini": 4, "anziani": 2, "sud": 12, "sorridenti": 1, "poliziotti": 1, "tranquilli": 1, "spacca": 1, "vetrine": 1, "schiavisti": 1, "dura": 2, "duomo": 4, "spettacolo": 9, "coda": 8, "corteo": 3, "stopinvasione": 7, "tantissimi": 2, "cantante": 1, "rap": 1, "inno": 1, "beppe": 1, "devo": 2, "dire": 4, "riempie": 2, "gioia": 1, "adesso": 4, "mettere": 2, "immagine": 2, "copertina": 3, "cordiale": 1, "costruttivo": 1, "vladimir": 1, "parlato": 1, "italiane": 5, "valori": 2, "comuni": 6, "possibile": 9, "dialoga": 2, "minacciano": 1, "guerre": 1, "pochissimi": 1, "rimasti": 2, "necessarie": 1, "presentare": 1, "lista": 1, "prossime": 1, "elezioni": 2, "trovate": 4, "tutte": 10, "info": 24, "luoghi": 1, "oppure": 7, "potete": 7, "chiamare": 1, "conto": 1, "momento": 3, "piccolo": 1, "facilmente": 1, "riconoscibile": 1, "pazienza": 1, "buoni": 1, "spazio": 1, "seguito": 1, "canale": 4, "alessia": 1, "calavino": 1, "tn": 1, "iocisar\u00f2": 1, "quindici": 1, "quinta": 2, "potenza": 1, "economica": 1, "ridotti": 3, "sappiamo": 2, "francia": 2, "spagna": 1, "deve": 3, "follie": 1, "terrorismo": 1, "islamico": 2, "seria": 1, "vediamo": 2, "nemici": 1, "mostro": 1, "dimentico": 1, "votato": 3, "abolire": 2, "clandestinit\u00e0": 3, "sostiene": 2, "politiche": 1, "uccidono": 1, "parliamo": 1, "export": 1, "jobs": 1, "act": 1, "alleato": 1, "nemico": 1, "sfondo": 2, "alcune": 1, "navi": 3, "marina": 1, "militare": 1, "russa": 3, "porto": 6, "sebastopoli": 2, "chiediamo": 1, "qualcuna": 2, "prestito": 1, "mare": 17, "nostrum": 11, "visitato": 1, "flotta": 1, "facciamoci": 1, "prestare": 1, "nave": 1, "bisogno": 2, "usiamo": 2, "fermare": 3, "invasione": 15, "rossa": 5, "sposto": 1, "scelto": 1, "referendum": 38, "aderire": 1, "federazione": 1, "incontreremo": 1, "sperando": 1, "allacciare": 1, "rapporti": 1, "utili": 1, "parti": 1, "necessaria": 1, "alleanza": 1, "lavorano": 1, "orlo": 1, "pericolo": 1, "estremismo": 1, "gioca": 2, "corriere": 5, "accorto": 1, "missione": 2, "spiegato": 1, "priorit\u00e0": 1, "vittime": 2, "societ\u00e0": 1, "operano": 1, "ricordo": 3, "viene": 4, "citt\u00e0": 8, "pulita": 2, "sereni": 1, "clandestino": 10, "lavavetri": 1, "ragazze": 3, "possono": 3, "prendere": 1, "metropolitana": 2, "vorrebbe": 1, "ottobre": 6, "vietato": 1, "mancare": 1, "primi": 1, "importanti": 1, "alexei": 1, "pushkov": 1, "esteri": 1, "duma": 1, "costano": 1, "ministero": 1, "enorme": 1, "opportunit\u00e0": 1, "sviluppo": 1, "totale": 1, "sintonia": 1, "collaborazione": 1, "unita": 1, "sorprese": 1, "agente": 1, "augusta": 3, "sicilia": 7, "sparisce": 1, "letteralmente": 1, "sanitari": 1, "prevenzione": 1, "quarantena": 2, "\u201d": 1, "posto": 3, "credete": 1, "poliziotto": 1, "ilgiornale": 1, "news": 4, "esami": 1, "barconi": 1, "controllo": 2, "html": 4, "aumento": 1, "temo": 2, "inverno": 1, "scaldarci": 1, "cucinare": 1, "torner\u00e0": 1, "vecchie": 1, "maniere": 1, "presente": 3, "borgo": 1, "chiaravalle": 1, "scoperto": 1, "vino": 4, "ligure": 1, "eccellente": 1, "granaccia": 1, "salute": 4, "preferite": 1, "siro": 1, "vecchio": 1, "rossonero": 1, "piero": 1, "ostellino": 2, "dichiara": 1, "opinione": 4, "ragazzotto": 1, "fiorentino": 1, "sorta": 1, "mussolini": 1, "minore": 1, "parolaio": 1, "velleitario": 1, "impotente": 1, "rivolgendosi": 1, "ci\u00f2": 1, "suggerisce": 1, "spiegando": 1, "austerit\u00e0": 1, "imposta": 1, "ritiene": 1, "sbagliata": 1, "adottarla": 1, "semplice": 2, "editoriale": 1, "intitola": 1, "chiacchiere": 2, "caso": 2, "trattandosi": 1, "rimarr\u00e0": 2, "fermi": 1, "finta": 2, "cantargliele": 1, "obbedire": 1, "battendo": 1, "tacchi": 1, "berlino": 2, "fortuna": 4, "parodia": 1, "attuale": 1, "smetter\u00e0": 1, "lottare": 1, "maira": 1, "burqa": 1, "venditori": 1, "porta": 3, "venezia": 2, "inizio": 2, "agire": 2, "events": 3, "elegante": 1, "maglietta": 3, "pare": 1, "striscia": 1, "notizia": 1, "esordiranno": 1, "nuova": 9, "imitazione": 1, "sottoscritto": 1, "evidentemente": 1, "crescita": 1, "inosservata": 1, "differenza": 2, "ridere": 1, "parla": 3, "commercio": 1, "internazionale": 1, "buonismo": 1, "dazi": 2, "arriva": 1, "cambogia": 2, "mentre": 5, "importava": 1, "tonnellate": 1, "rovinati": 1, "soli": 1, "combattiamo": 1, "schifo": 3, "padani": 2, "valtellina": 2, "movimento": 3, "politico": 2, "intervento": 2, "sembra": 1, "cliccate": 3, "vederlo": 1, "condividete": 2, "dailymotion": 2, "x26syhn": 1, "aiutiamo": 1, "assaggiatori": 1, "grappa": 4, "davvero": 2, "associazione": 1, "interessante": 1, "daniele": 1, "grissini": 1, "bianco": 3, "friuli": 2, "agricoltura": 5, "massacrando": 2, "gusti": 1, "frontiere": 2, "manifestazione": 1, "culture": 4, "cibi": 1, "vini": 1, "gorizia": 1, "selfie": 1, "periferia": 2, "intero": 1, "comunale": 1, "occupato": 1, "pagare": 3, "affitto": 1, "condominiali": 1, "inquilini": 1, "regolari": 1, "bersi": 1, "birre": 1, "chiesto": 1, "sgombero": 1, "immediato": 1, "barbone": 1, "milanese": 2, "scorsa": 1, "dormiva": 1, "panchina": 1, "sbarcati": 1, "comodamente": 1, "parecchie": 2, "venute": 1, "veneto": 18, "pagando": 1, "tasca": 1, "darci": 2, "battaglia": 6, "ladro": 5, "altroinvasione": 1, "fornero": 27, "speranza": 7, "lavoratori": 5, "famiglie": 3, "siti": 1, "informazione": 1, "online": 1, "esistono": 1, "infami": 1, "pap\u00e0": 3, "parlate": 1, "veri": 2, "combattere": 1, "cittadella": 2, "uniti": 2, "vince": 5, "salento": 1, "dittatura": 1, "odia": 1, "autonomie": 1, "locali": 1, "esegue": 1, "ordini": 1, "vende": 3, "fumo": 2, "mollate": 1, "allora": 1, "mollo": 1, "nemmeno": 2, "stanco": 1, "fratelli": 2, "dibattito": 1, "centrodestra": 3, "esiste": 2, "curioso": 1, "ascoltare": 1, "cosa": 5, "dir\u00e0": 2, "quagliariello": 1, "ncd": 3, "bellissima": 8, "bambini": 7, "harleysti": 1, "adoro": 4, "identit\u00e0": 3, "diversit\u00e0": 3, "qual": 1, "terra": 5, "discussione": 1, "allarme": 1, "ebola": 1, "aula": 2, "deserta": 1, "frega": 1, "subito": 10, "provenienti": 1, "contagio": 1, "liberi": 2, "partiti": 1, "coraggio": 6, "cambieremo": 1, "brianza": 3, "fenomeno": 2, "abbaia": 1, "morde": 1, "guinzaglio": 1, "rispetter\u00e0": 1, "vincoli": 2, "normale": 2, "massacrano": 1, "fregherebbe": 1, "trover\u00e0": 1, "metter\u00e0": 1, "sola": 2, "tassa": 1, "andremo": 1, "bastoni": 1, "cominciamo": 1, "stopimmigrazione": 1, "nonpago": 1, "danneggiare": 1, "beni": 1, "preziosi": 1, "proteggere": 1, "splendido": 3, "monviso": 1, "\u00abasili": 1, "nido": 2, "pubblici": 7, "gratuiti": 2, "costerebbe": 1, "costa": 1, "questione": 1, "scelte": 1, "\u00bb": 1, "ripartire": 2, "sognare": 5, "eccoli": 1, "tortelli": 3, "piatto": 1, "tantissima": 2, "mantovana": 1, "ponti": 1, "mincio": 1, "favola": 1, "pontirolo": 1, "partecipazione": 22, "giusta": 2, "cose": 2, "romanengo": 1, "moschea": 1, "crema": 1, "credo": 2, "per\u00f2": 1, "liberoquotidiano": 1, "sondaggio": 3, "ixe": 1, "benedizione": 1, "facchini": 1, "popoli": 2, "portatori": 1, "quintali": 1, "rosa": 2, "viterbo": 1, "patrono": 1, "tentativo": 1, "omologare": 1, "cancellare": 12, "dimenticare": 1, "invadere": 2, "dimentichiamo": 1, "india": 3, "soldati": 1, "buffoni": 1, "augurio": 1, "ristabilimento": 1, "massimiliano": 1, "latorre": 1, "gridare": 1, "mar\u00f2": 2, "barbara": 1, "gambaro": 1, "noale": 1, "ettari": 1, "serre": 1, "insalata": 1, "rucola": 1, "\u00absolo": 1, "settimane": 2, "perso": 1, "dovr\u00f2": 1, "lasciare": 2, "persone\u00bb": 1, "idiota": 1, "uccide": 1, "blocco": 2, "egitto": 1, "tunisia": 1, "marocco": 2, "serbia": 1, "conquistano": 1, "mercati": 2, "corrieredelveneto": 1, "notizie": 1, "cronaca": 1, "agosto": 1, "shtml": 1, "berghem": 1, "fest": 1, "costretto": 1, "prefetto": 1, "allontanare": 1, "parco": 4, "colli": 3, "bergamaschi": 3, "spuma": 1, "nera": 1, "indipendenza": 9, "accoppiata": 1, "ghisalba": 1, "tappa": 12, "verdello": 1, "ottimi": 1, "spiedini": 1, "costine": 3, "stretta": 1, "mano": 6, "albanese": 1, "versato": 1, "risarcimento": 1, "merita": 1, "grazia": 1, "dovrebbero": 1, "bottiglia": 1, "siciliano": 1, "bellissimo": 5, "capriata": 1, "alessandria": 1, "esserci": 1, "ribellarsi": 1, "giochi": 4, "miracolosamente": 1, "tweet": 1, "articoli": 1, "giornale": 1, "comune": 19, "ricordato": 1, "potano": 1, "piante": 1, "giocare": 1, "compiuta": 1, "amarcord": 1, "unico": 5, "lungomare": 1, "sporco": 2, "piena": 5, "estate": 2, "riesce": 4, "potare": 1, "alberi": 1, "comment": 1, "14novembre": 1, "vedi": 1, "iva": 1, "te": 2, "do": 1, "muori": 1, "fame": 1, "molte": 1, "articolo": 4, "aggiungere": 1, "ciascuno": 2, "affama": 2, "tassazione": 1, "abolizione": 4, "asili": 1, "monstrum": 1, "costituzione": 1, "mutuo": 1, "manca": 1, "passera": 1, "balle": 1, "prato": 2, "pontida": 8, "albero": 1, "preghiera": 1, "sorriso": 3, "vera": 2, "volontari": 8, "oltre": 3, "corso": 3, "settimana": 3, "soggiorno": 1, "arrendiamo": 1, "trentino": 2, "vista": 4, "temperatura": 1, "estiva": 1, "zabaione": 2, "echissenefrega": 1, "domanda": 1, "privata": 1, "condivido": 1, "completo": 1, "affaritaliani": 2, "politica0708": 1, "pollice": 1, "fondo": 2, "arcore": 1, "molliamo": 2, "arcene": 1, "menate": 1, "simili": 1, "sinistro": 1, "mantiene": 1, "palco": 1, "marittima": 2, "esponenti": 1, "presunto": 1, "utile": 1, "discutere": 2, "sprecato": 1, "spettacolare": 2, "colpo": 1, "occhio": 2, "vendono": 1, "comprano": 1, "lamentano": 1, "nessun": 1, "rompe": 1, "scontrino": 1, "arrendo": 1, "renzismo": 1, "d\u00e0": 1, "mese": 2, "detenuti": 1, "insoddisfatti": 1, "trattati": 1, "combatto": 1, "iostoconlevittime": 1, "guarda": 10, "youtube": 2, "watch": 2, "v": 2, "uwqdkgn9msk": 1, "sfida": 1, "statoladro": 1, "lezzeno": 1, "lago": 7, "como": 4, "luglio": 2, "caldo": 2, "afa": 1, "trasferta": 1, "padovana": 1, "sant": 1, "operazione": 3, "leader": 1, "matteo": 2, "dichiarato": 1, "\u00abmare": 1, "sospesa": 3, "pseudo": 1, "accoglienza": 5, "allestiti": 1, "africa": 1, "l\u00e0": 1, "mediterraneo\u00bb": 1, "accordo": 4, "chiss\u00e0": 2, "accorger\u00e0": 1, "base": 1, "magenta": 2, "spediti": 1, "vitto": 1, "alloggio": 1, "pagato": 1, "ospitalit\u00e0": 1, "offerta": 1, "caritas": 1, "volete": 1, "pagate": 1, "cavriago": 1, "ultima": 2, "statua": 1, "lenin": 1, "pranzo": 7, "adro": 2, "franciacorta": 2, "passando": 1, "appetito": 2, "finita": 2, "gara": 1, "salame": 1, "tipi": 1, "salami": 1, "diversi": 3, "difficile": 1, "centro": 12, "mineo": 5, "catania": 5, "bel": 1, "deposito": 1, "biciclette": 1, "villette": 2, "sicuramente": 4, "bici": 1, "regolarmente": 1, "acquistate": 1, "carpugnino": 1, "maggiore": 5, "ottime": 1, "torte": 1, "sana": 2, "volte": 2, "penso": 2, "incazzo": 1, "aria": 1, "condizionata": 1, "palme": 1, "giardino": 2, "sbarca": 1, "dentro": 1, "fotografia": 1, "servizi": 1, "wi": 1, "fi": 2, "ristoranti": 1, "varranno": 1, "interno": 1, "vale": 2, "ambientati": 1, "sigarette": 1, "contrabbando": 1, "vendita": 1, "dietro": 1, "parabole": 1, "tetti": 1, "mantengono": 1, "bivaccano": 1, "badia": 1, "calavena": 1, "veneta": 1, "orgogliosa": 2, "vizzolo": 1, "predabissi": 1, "mangiare": 2, "crosta": 1, "grana": 1, "rovato": 1, "arrende": 3, "impegna": 1, "migliorare": 1, "quinzano": 1, "bresciano": 1, "lavorando": 1, "desolatamente": 1, "vedete": 2, "pakistan": 1, "cristiani": 1, "perseguitati": 1, "nigeria": 1, "cause": 1, "giuste": 1, "parola": 1, "maro": 1, "prigionieri": 1, "diseredati": 1, "comincia": 3, "occasione": 2, "cravatta": 1, "leone": 2, "marsupio": 1, "piemontese": 2, "buonisti": 1, "scatenati": 1, "scafisti": 1, "cattivo": 1, "forse": 1, "dalai": 2, "lama": 2, "daranno": 1, "ascolto": 1, "giugno": 9, "rubando": 1, "zogno": 2, "formaggio": 2, "piastra": 1, "polenta": 2, "birra": 2, "cucina": 2, "brembana": 1, "tradisce": 1, "ingrasser\u00f2": 1, "signore": 2, "signori": 2, "maest\u00e0": 1, "adamello": 1, "scommessa": 1, "aprire": 1, "date": 4, "occhiata": 3, "leggo": 1, "pareri": 1, "pane": 1, "burro": 2, "marmellata": 2, "mela": 1, "bisogna": 2, "viziarsi": 1, "accogliere": 1, "rifugiati": 1, "troppi": 2, "intervenire": 1, "onore": 2, "pozzallo": 1, "sbarcano": 1, "esseri": 2, "umani": 2, "specula": 1, "bloccare": 1, "lorum": 1, "svegliaaaaa": 2, "maletto": 1, "fragole": 1, "dolci": 1, "partita": 1, "maleducazione": 1, "genitori": 2, "sentire": 1, "boy": 1, "scout": 1, "cngei": 1, "esperienza": 1, "amicizia": 1, "natura": 1, "colesterolo": 1, "permette": 1, "vieniafirmare": 31, "capoluoghi": 1, "localit\u00e0": 1, "villeggiatura": 1, "indicati": 5, "firmare": 39, "libert\u00e0": 37, "cancelliamo": 8, "prostituzione": 10, "legale": 5, "aboliamo": 5, "prefetture": 8, "espressione": 5, "privilegi": 5, "sesto": 3, "ripristino": 1, "firmato": 4, "municipi": 7, "preso": 2, "spariscono": 1, "fauch\u00e8": 1, "fila": 6, "caneva": 1, "vigili": 1, "multano": 1, "auto": 1, "parcheggiate": 1, "metri": 3, "trentina": 1, "schifooo": 1, "bicchiere": 1, "rincorsa": 1, "vittorio": 7, "cibo": 1, "fantastica": 1, "motivata": 1, "preganziol": 1, "trevigiano": 1, "scritta": 1, "muro": 1, "montecchio": 2, "vicenza": 3, "risata": 1, "seppellir\u00e0": 1, "chiesa": 2, "montichiari": 2, "madonnina": 1, "lumezzane": 1, "mezzanotte": 2, "rai": 11, "cascina": 2, "chiari": 1, "significa": 1, "figli": 3, "durante": 1, "ballar\u00f2": 1, "traguardo": 1, "sogna": 2, "lavora": 3, "sforzo": 1, "arrivare": 6, "gazebata": 1, "conclusiva": 1, "chiusa": 1, "raccolta": 6, "verifica": 1, "vicino": 3, "disponibilit\u00e0": 2, "sezioni": 2, "provinciali": 1, "aprirne": 1, "ultimo": 4, "municipio": 10, "prosegue": 4, "piccole": 1, "luci": 2, "sorelle": 1, "cielo": 3, "guidino": 1, "lungo": 2, "cammino": 3, "moderati": 1, "proporr\u00f2": 1, "carta": 1, "cominciare": 1, "temi": 1, "economici": 1, "vedremo": 1, "massimo": 3, "impegno": 4, "ballottaggi": 1, "sprint": 1, "andati": 1, "amico": 2, "firma": 10, "compreso": 2, "prossimo": 2, "weekend": 3, "deriva": 2, "lepenista": 1, "socialista": 1, "lezioni": 1, "abolisce": 1, "libera": 2, "spacciatori": 1, "presidi": 1, "riparte": 3, "riduzione": 1, "tutela": 1, "piccoli": 1, "difesa": 6, "mobilitazione": 1, "ultimi": 6, "farlo": 5, "mancano": 2, "moduli": 3, "chiama": 4, "scrivi": 2, "d\u00ec": 1, "controllare": 1, "email": 1, "pec": 1, "inviati": 1, "scaricare": 2, "corri": 1, "pensate": 2, "leggete": 2, "affermativa": 1, "affari": 1, "europei": 2, "ue": 1, "forzaitalia3005": 1, "infoline": 4, "incredibile": 4, "genere": 1, "impensabile": 1, "marine": 6, "pen": 4, "austriaci": 1, "olandesi": 1, "fiamminghi": 1, "festival": 3, "trash": 1, "brindisi": 1, "permesso": 1, "questavoltavotolega": 22, "iovotolega": 21, "ioscrivosalvini": 21, "aiutato": 1, "nascere": 1, "alba": 2, "vitellina": 1, "kili": 1, "fatica": 2, "attesa": 2, "partorire": 1, "mucca": 1, "finisce": 1, "imparare": 1, "irregolarit\u00e0": 1, "segnalare": 1, "sano": 1, "multinazionali": 1, "vorrebbero": 1, "tavole": 1, "serafino": 1, "deluderti": 1, "deludervi": 1, "promemoria": 1, "precisazione": 1, "circoscrizioni": 1, "elettorali": 2, "smarrita": 1, "recati": 1, "rifarla": 2, "an": 1, "pdl": 1, "verificabile": 1, "messaggi": 2, "ricevuti": 1, "arrivati": 1, "chat": 2, "beatrice": 1, "gianpaolo": 1, "fantastici": 2, "domande": 6, "voluto": 1, "dormitorio": 2, "pubblico": 4, "viale": 2, "ortles": 2, "scorso": 1, "ospiti": 3, "separati": 1, "pensionati": 1, "esodati": 3, "ridare": 2, "obiettivo": 1, "votando": 1, "maggio": 6, "sogno": 2, "ognuno": 1, "spalanca": 1, "porte": 1, "cari": 1, "burocrati": 1, "cara": 1, "angela": 1, "preparatevi": 2, "sloggiare": 1, "darvi": 1, "foglio": 1, "matteosalvini": 4, "iniziativa": 1, "realizzata": 1, "supporto": 1, "tecnico": 1, "oretta": 1, "cercher\u00f2": 1, "rispondere": 1, "lunga": 1, "libero": 2, "parlo": 1, "proprio": 2, "diffondete": 2, "pronti": 5, "agor\u00e0": 2, "ultime": 1, "vinceeeee": 1, "mario": 1, "destra": 2, "m5s": 2, "guido": 1, "votava": 1, "buttato": 1, "scheda": 1, "indovinate": 2, "intristire": 1, "evento": 2, "abitanti": 1, "suicidio": 1, "opposizione": 7, "circa": 1, "leggi": 1, "merlin": 7, "chiamate": 1, "informazioni": 2, "gianfranco": 1, "fini": 1, "voter\u00e0": 1, "berlusconi": 3, "genova": 5, "dobbiamo": 2, "aiutaci": 2, "cornigliano": 1, "integra": 1, "anzi": 1, "disintegra": 1, "fast": 1, "food": 1, "carne": 1, "cruda": 1, "patate": 1, "artigianale": 1, "nottambulo": 1, "sveglio": 1, "napoli": 1, "buone": 1, "contagiose": 1, "scrivete": 1, "volo": 2, "cartelli": 2, "camping": 1, "ingresso": 1, "abusivo": 2, "domina": 1, "rete": 4, "seigradi": 1, "europee": 2, "piu": 2, "web": 1, "spasso": 2, "storici": 2, "dico": 1, "cultura": 1, "tribunale": 1, "minori": 1, "accampati": 1, "immondizia": 1, "ipad": 1, "trasmette": 1, "odori": 1, "benvenuti": 3, "fassino": 1, "chiamparino": 1, "mega": 1, "stura": 1, "luned\u00ec": 2, "silenzio": 1, "dunque": 1, "compresa": 1, "dialogando": 1, "riattivare": 1, "applicazione": 2, "portavoce": 2, "andiamo": 1, "twitter": 4, "collegate": 1, "indirizzo": 2, "seguimi": 2, "aiutarmi": 1, "potenziare": 1, "istruzioni": 2, "preferisco": 1, "iscriversi": 1, "l\u00ec": 1, "grazieeee": 1, "problema": 1, "condividere": 1, "chiarendo": 1, "accaduto": 1, "attiva": 1, "operativa": 1, "app": 1, "farmi": 2, "aumentare": 1, "account": 1, "link": 1, "seguire": 3, "infografica": 1, "carlo": 1, "canavese": 1, "altrimenti": 1, "fatta": 1, "piangere": 1, "maledetta": 2, "sardegna": 4, "ricevuto": 1, "soldatessa": 1, "delusa": 1, "silvio": 2, "uscita": 1, "annamaria": 1, "delusi": 1, "populista": 1, "inviato": 1, "sostegno": 4, "tema": 1, "valorizzarli": 1, "conoscete": 1, "votano": 3, "sorpresa": 1, "battaglie": 1, "colore": 1, "dietetico": 2, "casoncelli": 2, "pancettaaa": 1, "toh": 1, "incontrato": 1, "mariano": 2, "comense": 2, "ricorda": 1, "buongiorno": 1, "camper": 8, "canzo": 1, "comasche": 1, "passaggi": 1, "lombardi": 1, "cant\u00f9": 1, "bonate": 1, "sopra": 1, "marcallo": 1, "casone": 1, "calende": 1, "varese": 1, "caronno": 1, "varesino": 1, "corre": 2, "chiese": 1, "stupendo": 2, "visitare": 1, "signor": 1, "ivo": 1, "entusiasmo": 2, "et\u00e0": 1, "vinciamo": 1, "spoglio": 1, "villa": 3, "aldini": 2, "napoleone": 1, "godono": 1, "mica": 1, "vero": 4, "camera": 2, "sel": 2, "scelta": 1, "civica": 1, "demenziale": 1, "riuscita": 2, "espellere": 4, "deputati": 1, "stamane": 1, "protestato": 1, "esponendo": 1, "numeri": 1, "folli": 1, "incremento": 1, "30mila": 1, "spesi": 2, "difenderemo": 1, "compagnia": 1, "la7": 3, "aiutate": 1, "commentare": 1, "twittare": 1, "garda": 1, "affi": 1, "ventina": 1, "disabili": 1, "meolo": 1, "candidata": 1, "sindaca": 1, "inventano": 1, "varrebbe": 1, "marengo": 1, "drogato": 1, "gonars": 1, "trieste": 1, "m5stelle": 1, "regalare": 1, "chiunque": 1, "monfalcone": 1, "calorosa": 1, "sperare": 2, "autoscatto": 1, "direzione": 1, "bitonci": 1, "pioggia": 1, "sereno": 1, "arcobaleno": 1, "fotografato": 1, "dedicato": 3, "arzignano": 2, "sgomberati": 1, "salutiamo": 1, "valdagno": 1, "schio": 1, "tezze": 1, "brenta": 1, "martino": 1, "lupari": 1, "mazzini": 1, "piazzale": 1, "stazione": 3, "fotografa": 1, "viaggio": 3, "lacrima": 1, "omaggio": 1, "mamme": 2, "candidati": 1, "telgate": 1, "modelle": 1, "eccezione": 1, "bolgare": 1, "genuine": 1, "scala": 2, "zona": 1, "salutino": 1, "liberarsi": 2, "bastaeuro": 19, "romani": 2, "trovarmi": 1, "girare": 5, "ininterrotta": 1, "segnalano": 1, "code": 1, "vaiiiii": 1, "venite": 1, "mappa": 2, "lunedi": 1, "clandestino\u00e8reato": 2, "crederete": 1, "cena": 5, "identitaria": 2, "diritto": 2, "autodeterminazione": 1, "nododigordio": 1, "evidenza": 1, "reintrodurre": 2, "abrogando": 1, "norma": 1, "voluta": 1, "votata": 1, "defilati": 1, "puoi": 4, "raccogliamo": 1, "500mila": 1, "prossimi": 2, "mandiamo": 1, "tiv\u00f9": 1, "spot": 1, "diffondi": 1, "guardalo": 1, "axlniuqy": 1, "ac": 1, "clandestinita": 1, "brevissimo": 1, "cie": 1, "ponte": 3, "galeria": 1, "rilassarsi": 1, "caff\u00e8": 1, "latte": 1, "mandorle": 1, "locorotondo": 1, "confronto": 1, "taranto": 1, "terre": 1, "fermato": 1, "televisione": 1, "sembrava": 1, "grassottello": 1, "votiamo": 1, "grazieee": 1, "lamezia": 4, "terme": 3, "salerno": 2, "superate": 2, "attraversato": 1, "stretto": 1, "mitica": 1, "calabria": 1, "piazzapulita": 1, "raccolto": 1, "granita": 1, "siciliana": 1, "mandorla": 1, "chiedono": 1, "accolta": 1, "studenti": 1, "preoccupati": 1, "aiutateci": 1, "libere": 1, "popolo": 1, "pontida14": 3, "stupenda": 7, "peccato": 1, "riduca": 1, "peggio": 1, "bivacco": 1, "vergognatevi": 1, "centrale": 1, "roba": 2, "lunghe": 1, "secolo": 1, "xix": 1, "ducale": 2, "tentennamenti": 1, "renzel": 1, "arrivi": 1, "cagliari": 1, "trovi": 1, "aspettarti": 1, "ascoltarti": 1, "contenerle": 1, "montare": 1, "altoparlanti": 1, "stanchezza": 1, "attimo": 1, "alghero": 1, "bandiera": 1, "catalana": 1, "sventola": 1, "van": 3, "sfroos": 3, "dialetto": 1, "poesia": 1, "vittoria": 6, "spettacolooo": 1, "concerto": 2, "davide": 3, "venuti": 1, "pontidaaaaa": 1, "zola": 1, "dieta": 1, "impegnati": 2, "besana": 1, "1\u00b0": 1, "inizia": 1, "acustico": 1, "evvai": 1, "albenga": 2, "rosy": 1, "guarnieri": 1, "liberarci": 3, "sanremo": 2, "pienone": 2, "pavia": 3, "piedi": 4, "piove": 1, "nerviano": 1, "portici": 1, "raccolgono": 1, "invitati": 1, "mercoledi": 1, "monza": 1, "numerosissimi": 2, "\u00abnos": 1, "id\u00e9es": 1, "convergent": 1, "\u00e0": 1, "avec": 1, "celles": 1, "convergono": 1, "pen\u00bb": 1, "figaro": 1, "fantastiche": 1, "cucinando": 1, "zanica": 1, "profumoooo": 1, "amministrazione": 1, "vincere": 3, "spirano": 1, "tribiano": 1, "pioltello": 1, "mentana": 1, "manzoniano": 1, "interista": 1, "distrarmi": 1, "bucatini": 1, "cacio": 1, "pepe": 1, "dietetici": 1, "quinto": 1, "treviso": 4, "caspita": 1, "rifanno": 1, "asfalto": 1, "pisapia": 4, "parlare": 4, "dubbi": 1, "certo": 1, "morire": 1, "banche": 3, "finanza": 1, "riportiamo": 1, "uomo": 1, "donna": 1, "denaro": 1, "profitto": 3, "portarti": 1, "ragazza": 1, "votavano": 1, "coscienza": 1, "doppio": 1, "appuntamento": 1, "gioved\u00ec": 1, "aprile": 3, "liberazione": 1, "aspettiamo": 5, "manuale": 6, "incubo": 6, "pasqua": 1, "percorso": 1, "sentiero": 1, "accompagnano": 1, "lass\u00f9": 2, "cola": 1, "stessa": 1, "rispetto": 1, "animali": 2, "vietnam": 1, "benessere": 2, "viventi": 1, "kabobo": 1, "pena": 1, "morte": 1, "ergastolo": 1, "s\u00ec": 1, "mezz": 1, "disastri": 1, "massa": 1, "crediamo": 1, "vassoio": 1, "canzoni": 1, "tenco": 1, "stereo": 1, "bimba": 1, "libro": 4, "peppa": 2, "pig": 2, "bimbo": 1, "interrogazione": 1, "cambierei": 1, "ascoltiamoci": 1, "po": 1, "perfino": 1, "accorge": 1, "imporre": 1, "regole": 1, "sicurezza": 2, "succedendo": 1, "panorama": 1, "cancelliamola": 1, "porti": 1, "svelta": 1, "castello": 1, "umbria": 1, "mattinata": 2, "vuoi": 2, "trova": 5, "arrivo": 2, "bastaaaaa": 1, "complici": 1, "annunciata": 1, "abbandonato": 1, "marino": 1, "rifiuti": 1, "parchi": 1, "preparati": 1, "sfratto": 1, "bandiere": 1, "arresteranno": 1, "sacile": 2, "cittadina": 1, "veramente": 1, "vedere": 2, "farti": 1, "giro": 2, "operai": 2, "electrolux": 1, "porcia": 2, "basa": 1, "sfruttamento": 1, "energetica": 1, "speck": 1, "formaggi": 1, "tappe": 2, "friulane": 1, "brugnera": 1, "pasiano": 1, "pordenone": 1, "verona": 3, "friul": 1, "crozza": 1, "ottimo": 1, "innamorato": 1, "pacificamenteliberi": 1, "preparare": 1, "indipendenti": 1, "buja": 2, "ud": 1, "longarone": 1, "tana": 1, "mitico": 1, "mauro": 1, "corona": 1, "erto": 1, "quadernetto": 1, "nascendo": 1, "ente": 1, "sordi": 1, "conoscono": 1, "risolvere": 1, "concreto": 1, "approvare": 1, "lingua": 1, "segni": 1, "offrire": 1, "assistenza": 1, "uguali": 1, "metti": 2, "pesce": 1, "favorevoli": 1, "sc": 1, "udc": 1, "astenuti": 1, "emendamenti": 1, "eliminazione": 2, "grillini": 1, "resiste": 2, "smascheriamo": 2, "emendamento": 1, "mantenerlo": 1, "schiavi": 1, "simbolo": 1, "schede": 1, "riprendiamo": 1, "letture": 1, "copie": 2, "dedica": 1, "bell": 1, "dietetica": 1, "svegliaaa": 1, "sistemate": 1, "orologio": 1, "novara": 1, "arona": 1, "vercelli": 1, "cavour": 1, "usa": 3, "sgarbi": 1, "infame": 2, "topi": 1, "calcutta": 1, "gobba": 1, "obama": 1, "nobel": 1, "pagano": 1, "sedere": 1, "vieni": 1, "aiutarci": 1, "sapere": 1, "hashtag": 1, "mandare": 1, "prefetti": 2, "limitarti": 1, "partecipa": 1, "mortara": 1, "riconquistare": 1, "marzo": 7, "abrogazione": 4, "tassiamo": 1, "regolamentiamo": 1, "concorsi": 3, "mancino": 2, "reati": 2, "ripartono": 1, "lavanderia": 1, "aperto": 1, "integrano": 1, "sostenere": 1, "pensioni": 2, "residenza": 1, "fermiamo": 3, "riescono": 1, "pronta": 2, "quarta": 1, "diffamano": 1, "veneti": 2, "prefettura": 1, "ospitare": 1, "rispediamoli": 1, "sindaci": 1, "genesio": 1, "alloggiano": 1, "riz": 1, "sposteremo": 1, "finch\u00e8": 1, "andranno": 2, "banzai": 2, "verbania": 1, "tele": 1, "rimbambisce": 1, "capire": 2, "dubitare": 1, "produce": 1, "giocattoli": 1, "faro": 1, "legno": 3, "plastica": 1, "compriamo": 1, "dorme": 1, "troppe": 1, "vuote": 1, "assegnate": 1, "invaso": 2, "vespa": 1, "ruote": 1, "riprendersi": 1, "seduta": 1, "servi": 1, "richiedere": 1, "gratuitamente": 1, "adesivi": 3, "materiale": 1, "inaugurazione": 3, "ghedi": 1, "combatte": 1, "brescia": 1, "anticipato": 1, "toglie": 1, "limoni": 1, "continuo": 1, "orgogliosamente": 1, "angelo": 1, "x1g35r1": 1, "criminale": 2, "presto": 1, "sara": 1, "bendato": 1, "congiuntivite": 1, "fianco": 2, "gasparri": 1, "wow": 1, "limone": 2, "colonna": 1, "dimostrazione": 1, "pensione": 1, "sveglia": 1, "convegni": 1, "atc": 1, "dante": 1, "breno": 1, "presenti": 1, "distribuito": 2, "pausa": 1, "spritz": 1, "patatine": 1, "muratore": 1, "quaranta": 1, "farsi": 2, "perch\u00e8": 4, "rapinatori": 1, "entrati": 1, "spedito": 1, "buste": 1, "volantini": 1, "direttamente": 2, "compilare": 1, "modulo": 1, "rapidit\u00e0": 1, "scrivermi": 1, "privato": 2, "salva": 4, "debiti": 1, "olimpiadi": 1, "gran": 1, "premio": 1, "formula": 1, "robb": 1, "matt": 1, "inaugurata": 1, "bolzano": 3, "profumo": 1, "valpolicella": 1, "pietro": 3, "cariano": 3, "golia": 1, "zampe": 1, "mordere": 1, "legnago": 3, "energia": 1, "belluno": 3, "porter\u00e0": 1, "arco": 2, "trento": 2, "domenicaaa": 1, "capodanno": 2, "grappino": 1, "mogliano": 2, "cripta": 1, "medievale": 1, "punto": 1, "erbe": 2, "bassano": 2, "seconda": 1, "vicentina": 1, "malo": 1, "cioccolata": 1, "calda": 1, "90esima": 1, "edizione": 1, "storico": 1, "carnevale": 1, "comitato": 1, "arcade": 1, "infine": 1, "caorle": 1, "rovigo": 1, "perduto": 1, "firmaindipendenza": 2, "arena": 1, "scarica": 1, "risposte": 3, "verit\u00e0": 1, "ritira": 1, "decreto": 1, "risparmiano": 1, "miliardo": 1, "finito": 1, "tappare": 1, "buco": 1, "indebitata": 1, "sbaglia": 1, "paga": 3, "politici": 1, "pedaggi": 1, "autostradali": 1, "pendolari": 1, "sprecone": 1, "autorizzato": 1, "rincari": 1, "vergognosi": 1, "crisi": 1, "comincio": 1, "promesse": 1, "nuove": 1, "\u00fcber": 1, "immigration": 1, "und": 2, "f\u00f6deralismus": 1, "von": 1, "herrn": 1, "nur": 1, "viel": 1, "rauch": 1, "stunde": 1, "verschwendet": 1, "was": 1, "verstanden": 1, "haben": 1, "ist": 1, "dass": 1, "herr": 1, "die": 1, "staatsanleihen": 1, "versteuern": 1, "wird": 1, "um": 1, "deutschland": 1, "noch": 1, "einen": 1, "gefallen": 1, "zu": 1, "tun": 1, "palazzago": 1, "valle": 1, "imagna": 1, "salamelle": 1, "strepitose": 1, "esenzione": 1, "diventiamo": 1, "cattivi": 1, "paradossalmente": 1, "lotta": 1, "salver\u00e0": 1, "indistinta": 1, "consumatori": 1, "tireremo": 1, "indietro": 1, "vinceremo": 1, "dovuto": 1, "amplificatori": 1, "esterno": 1, "riuscito": 1, "venire": 1, "riconosco": 1, "leggera": 1, "pinzimonio": 1, "carote": 1, "finocchi": 1, "senato": 1, "venete": 1, "dedicata": 1, "ama": 1, "deluderlo": 1, "sprecare": 1, "pacificamente": 1, "spreco": 1, "canone": 1, "protesta": 2, "senatori": 1, "boicotta": 1, "milionari": 1, "invernizzi": 1, "caravaggio": 1, "giocano": 2, "prof": 2, "claudio": 2, "borghi": 2, "attendo": 1, "fref": 1, "ts": 1, "spontaneo": 1, "firenze": 3, "turisti": 1, "legaaaaaa": 1, "cerca": 1, "auditorium": 1, "tipica": 1, "rialza": 1, "anteprima": 1, "numero": 1, "perdono": 1, "tonico": 1, "regolamentare": 1, "tassare": 1, "riservare": 1, "altroreati": 1, "depositato": 1, "proposte": 1, "concrete": 1, "consigli": 1, "missoltino": 1, "gemellaggio": 2, "ingredienti": 1, "genuini": 1, "aosta": 2, "quintale": 1, "trippa": 1, "cottura": 1, "storica": 1, "veill\u00e0": 1, "valdostana": 1, "cantine": 1, "autonomia": 2, "nevicaaaaa": 1, "ve": 2, "racconter\u00f2": 1, "chiusi": 1, "chieder\u00e0": 1, "km": 1, "quadrati": 1, "sommerso": 1, "grave": 1, "contributi": 1, "bomporto": 1, "modena": 1, "dimenticati": 1, "maniche": 1, "istituto": 1, "oncologico": 1, "mediterraneo": 1, "presentato": 1, "medici": 1, "infermieri": 1, "progetto": 1, "parrucche": 1, "malate": 1, "solidariet\u00e0": 1, "volontariato": 1, "contrattacco": 1, "rapina": 1, "mirto": 1, "liquori": 1, "preferenze": 1, "sfigati": 1, "urlare": 1, "santoro": 1, "fiorito": 1, "coppia": 1, "patto": 1, "positivo": 1, "pacifica": 1, "ordinata": 1, "fondata": 1, "serva": 1, "disposta": 1, "merci": 1, "diamo": 1, "fastidio": 1, "attaccheranno": 1, "collego": 1, "visto": 1, "compra": 1, "copia": 1, "seguo": 1, "tribunali": 1, "fiaccole": 1, "casello": 1, "gallarate": 1, "kilometri": 1, "autostrade": 1, "caro": 1, "ritorno": 1, "lasciate": 1, "spediremo": 1, "ufficio": 1, "poste": 1, "ritirare": 1, "raccomandate": 1, "spedite": 1, "ritirate": 1, "sportelli": 1, "aperti": 1, "fallito": 1, "disorganizzato": 1, "orgoglio": 1, "incertezza": 1, "pisolino": 1, "particolare": 1, "sfigato": 1, "spera": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2014/salvini_emoji b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_emoji new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_emoji @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2014/salvini_sleep b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_sleep new file mode 100644 index 0000000..6bc0e12 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 2, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 0, "10": 2, "11": 1, "12": 1, "13": 1, "14": 2, "15": 5, "16": 1, "17": 1, "18": 2, "19": 1, "20": 2, "21": 2, "22": 0, "23": 0}, "Feb": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 1, "7": 0, "8": 0, "9": 1, "10": 2, "11": 2, "12": 1, "13": 1, "14": 6, "15": 2, "16": 2, "17": 1, "18": 2, "19": 3, "20": 4, "21": 3, "22": 3, "23": 2}, "Mar": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 1, "10": 9, "11": 3, "12": 6, "13": 5, "14": 2, "15": 3, "16": 7, "17": 4, "18": 4, "19": 1, "20": 1, "21": 5, "22": 1, "23": 4}, "Apr": {"0": 0, "1": 1, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 1, "9": 0, "10": 1, "11": 6, "12": 9, "13": 0, "14": 3, "15": 3, "16": 4, "17": 6, "18": 5, "19": 1, "20": 6, "21": 4, "22": 4, "23": 1}, "May": {"0": 5, "1": 1, "2": 3, "3": 1, "4": 0, "5": 0, "6": 0, "7": 1, "8": 3, "9": 2, "10": 10, "11": 13, "12": 8, "13": 12, "14": 8, "15": 8, "16": 9, "17": 11, "18": 12, "19": 7, "20": 13, "21": 5, "22": 6, "23": 2}, "Jun": {"0": 2, "1": 2, "2": 2, "3": 1, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 0, "10": 1, "11": 2, "12": 3, "13": 0, "14": 1, "15": 0, "16": 0, "17": 3, "18": 1, "19": 3, "20": 1, "21": 5, "22": 4, "23": 3}, "Jul": {"0": 2, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 0, "10": 4, "11": 4, "12": 4, "13": 3, "14": 0, "15": 1, "16": 2, "17": 0, "18": 0, "19": 0, "20": 3, "21": 2, "22": 0, "23": 6}, "Aug": {"0": 2, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 1, "11": 1, "12": 1, "13": 0, "14": 2, "15": 1, "16": 0, "17": 2, "18": 1, "19": 2, "20": 2, "21": 5, "22": 3, "23": 1}, "Sep": {"0": 4, "1": 0, "2": 0, "3": 1, "4": 1, "5": 0, "6": 0, "7": 0, "8": 1, "9": 0, "10": 1, "11": 0, "12": 1, "13": 1, "14": 1, "15": 2, "16": 3, "17": 4, "18": 4, "19": 1, "20": 2, "21": 4, "22": 1, "23": 1}, "Oct": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 1, "6": 0, "7": 0, "8": 2, "9": 2, "10": 4, "11": 3, "12": 6, "13": 3, "14": 4, "15": 3, "16": 3, "17": 4, "18": 5, "19": 3, "20": 8, "21": 3, "22": 1, "23": 1}, "Nov": {"0": 2, "1": 0, "2": 1, "3": 0, "4": 0, "5": 0, "6": 0, "7": 2, "8": 0, "9": 1, "10": 3, "11": 3, "12": 8, "13": 5, "14": 2, "15": 4, "16": 2, "17": 3, "18": 6, "19": 6, "20": 3, "21": 1, "22": 2, "23": 3}, "Dec": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 2, "7": 0, "8": 0, "9": 0, "10": 0, "11": 7, "12": 2, "13": 5, "14": 0, "15": 2, "16": 4, "17": 4, "18": 7, "19": 2, "20": 3, "21": 2, "22": 0, "23": 2}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2014/salvini_trend.json b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_trend.json new file mode 100644 index 0000000..5134204 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_trend.json @@ -0,0 +1 @@ +{"31-Dec": 1, "29-Dec": 3, "27-Dec": 3, "26-Dec": 1, "24-Dec": 2, "23-Dec": 1, "22-Dec": 1, "21-Dec": 2, "20-Dec": 2, "19-Dec": 3, "18-Dec": 1, "17-Dec": 1, "16-Dec": 1, "15-Dec": 3, "14-Dec": 1, "13-Dec": 2, "12-Dec": 1, "11-Dec": 1, "10-Dec": 2, "9-Dec": 1, "8-Dec": 3, "7-Dec": 1, "6-Dec": 2, "4-Dec": 1, "3-Dec": 1, "2-Dec": 1, "1-Dec": 1, "28-Nov": 3, "27-Nov": 1, "26-Nov": 1, "24-Nov": 1, "23-Nov": 2, "22-Nov": 1, "21-Nov": 4, "20-Nov": 7, "19-Nov": 2, "17-Nov": 2, "15-Nov": 4, "14-Nov": 5, "13-Nov": 2, "12-Nov": 1, "11-Nov": 2, "10-Nov": 3, "9-Nov": 5, "8-Nov": 4, "7-Nov": 2, "3-Nov": 2, "1-Nov": 3, "31-Oct": 5, "30-Oct": 1, "29-Oct": 2, "28-Oct": 1, "27-Oct": 2, "26-Oct": 1, "25-Oct": 1, "24-Oct": 2, "23-Oct": 2, "21-Oct": 3, "20-Oct": 2, "19-Oct": 2, "18-Oct": 4, "17-Oct": 3, "16-Oct": 1, "15-Oct": 3, "14-Oct": 4, "13-Oct": 2, "12-Oct": 1, "11-Oct": 4, "10-Oct": 2, "8-Oct": 1, "5-Oct": 2, "4-Oct": 2, "2-Oct": 2, "1-Oct": 1, "30-Sep": 1, "29-Sep": 2, "28-Sep": 3, "27-Sep": 2, "26-Sep": 1, "25-Sep": 1, "22-Sep": 1, "21-Sep": 2, "20-Sep": 2, "19-Sep": 1, "17-Sep": 2, "16-Sep": 1, "14-Sep": 2, "13-Sep": 1, "8-Sep": 1, "7-Sep": 3, "6-Sep": 1, "5-Sep": 1, "4-Sep": 1, "3-Sep": 3, "1-Sep": 1, "30-Aug": 1, "24-Aug": 2, "23-Aug": 4, "22-Aug": 1, "20-Aug": 1, "18-Aug": 2, "17-Aug": 3, "16-Aug": 3, "9-Aug": 1, "7-Aug": 1, "6-Aug": 1, "4-Aug": 2, "3-Aug": 1, "1-Aug": 1, "28-Jul": 1, "24-Jul": 1, "23-Jul": 1, "21-Jul": 1, "20-Jul": 2, "19-Jul": 1, "16-Jul": 2, "14-Jul": 2, "13-Jul": 5, "12-Jul": 7, "11-Jul": 1, "10-Jul": 1, "9-Jul": 1, "7-Jul": 1, "5-Jul": 1, "2-Jul": 2, "1-Jul": 2, "29-Jun": 1, "25-Jun": 1, "22-Jun": 2, "18-Jun": 4, "16-Jun": 2, "15-Jun": 1, "13-Jun": 2, "10-Jun": 2, "9-Jun": 1, "8-Jun": 1, "7-Jun": 3, "6-Jun": 1, "5-Jun": 3, "4-Jun": 3, "3-Jun": 3, "2-Jun": 1, "1-Jun": 4, "31-May": 1, "30-May": 4, "29-May": 2, "28-May": 2, "27-May": 1, "26-May": 3, "25-May": 23, "24-May": 4, "23-May": 7, "22-May": 2, "21-May": 5, "20-May": 9, "19-May": 4, "18-May": 7, "17-May": 4, "16-May": 4, "15-May": 2, "14-May": 2, "13-May": 5, "12-May": 6, "11-May": 6, "10-May": 3, "9-May": 1, "8-May": 5, "7-May": 3, "6-May": 5, "5-May": 5, "4-May": 2, "3-May": 5, "2-May": 3, "1-May": 5, "30-Apr": 2, "29-Apr": 3, "28-Apr": 4, "26-Apr": 6, "25-Apr": 4, "24-Apr": 1, "23-Apr": 3, "22-Apr": 1, "20-Apr": 1, "19-Apr": 1, "17-Apr": 1, "16-Apr": 1, "15-Apr": 1, "14-Apr": 3, "13-Apr": 2, "12-Apr": 1, "11-Apr": 2, "10-Apr": 1, "9-Apr": 2, "8-Apr": 1, "7-Apr": 1, "6-Apr": 4, "5-Apr": 6, "4-Apr": 1, "1-Apr": 3, "31-Mar": 1, "30-Mar": 2, "29-Mar": 3, "28-Mar": 2, "27-Mar": 1, "26-Mar": 3, "25-Mar": 3, "24-Mar": 1, "23-Mar": 2, "22-Mar": 4, "21-Mar": 2, "20-Mar": 2, "19-Mar": 1, "18-Mar": 1, "16-Mar": 1, "15-Mar": 3, "13-Mar": 2, "10-Mar": 4, "9-Mar": 3, "8-Mar": 1, "7-Mar": 1, "5-Mar": 2, "4-Mar": 1, "2-Mar": 6, "1-Mar": 5, "27-Feb": 2, "26-Feb": 2, "25-Feb": 2, "24-Feb": 2, "23-Feb": 2, "22-Feb": 3, "21-Feb": 1, "20-Feb": 3, "18-Feb": 2, "17-Feb": 2, "16-Feb": 3, "15-Feb": 3, "13-Feb": 1, "12-Feb": 3, "10-Feb": 2, "9-Feb": 2, "8-Feb": 1, "31-Jan": 1, "30-Jan": 1, "29-Jan": 3, "28-Jan": 3, "27-Jan": 1, "25-Jan": 1, "22-Jan": 1, "19-Jan": 1, "18-Jan": 1, "16-Jan": 1, "15-Jan": 2, "12-Jan": 1, "11-Jan": 3, "10-Jan": 1, "8-Jan": 1, "3-Jan": 1, "1-Jan": 2} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2014/salvini_words b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_words new file mode 100644 index 0000000..c392f14 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2014/salvini_words @@ -0,0 +1,8256 @@ +buon +amici +riprendiamoci +futuro +prima +monti +poi +letta +ora +renzi +rubato +futuro +sabato +febbraio +riprendiamocelo +baita +artigiani +presepi +difendiamo +montagna +tradizioni +presepe +costruito +acqua +bravissimi +autori +strapieno +stasera +lega +albino +torna +casa +renzi +stasera +stinco +neve +milano +notte +serena +amici +sempre +bella +milano +auguri +giovani +lega +aiutare +babbo +natale +portare +regali +bimbi +ricoverati +ospedale +buzzi +milano +sorrisi +regalo +bello +donare +sangue +fa +bene +dona +riceve +carcere +bergamo +abbracciare +antonio +monella +imprenditore +bergamasco +condannato +anni +galera +aver +ucciso +rapinatore +purtroppo +grazie +stato +buono +delinquenti +severo +altro +persone +perbene +passerà +natale +lontano +casa +volesse +mandargli +messaggio +auguri +può +scrivere +antonio +monella +casa +circondariale +via +gleno +bergamo +grazie +auguri +amici +pensiero +tristi +persone +vergognano +storia +tradizioni +presepe +natale +dimentica +passato +futuro +cuore +montagne +luogo +cuore +centinaia +clandestini +profughi +clandestini +alloggiati +mantenuti +spese +italiani +palazzine +ex +villaggio +olimpico +torino +sinistra +ovviamente +fa +nulla +grazie +altro +commercianti +residenti +accolto +ringraziato +impegnato +tornare +tornare +torino +finché +legalità +verrà +rispettata +abbraccio +vigevano +voglia +lavorare +vivere +sicuri +credere +futuro +bravo +sindaco +sgombera +abusivi +turchia +occupa +militarmente +quarant +anni +mezza +cipro +ostina +negare +genocidio +armeni +bruxelles +qualche +genio +insiste +farla +entrare +europa +intanto +europa +regala +turchia +milioni +euro +anno +fuori +gabbia +matti +ciao +amici +strasburgo +oggi +votare +problemi +venezuela +mauritania +sudan +filippine +georgia +andate +quel +paese +disoccupazione +immigrazione +devastano +altroeuropa +battiamo +lega +invece +preoccupano +resto +mondo +fuori +unione +sovietica +europea +buon +natale +liceo +stellini +udine +quest +anno +può +festeggiare +buondì +amici +parte +strasburgo +spero +martedì +soddisfazioni +lavoro +poche +incazzature +fb +prodi +quirinale +maddai +tanti +imprenditori +italiani +incontro +organizzato +padova +ministri +russia +crimea +anno +pace +lavoro +dialogo +sanzioni +russia +danno +pazzesco +tanta +gente +regalata +tessera +lega +molti +prima +volta +grazie +nonostante +tagli +stato +rubati +altri +milioni +euro +lombardia +riusciamo +comprare +nuovo +acceleratore +lineare +radioterapia +malati +tumore +ospedale +sondrio +grazie +altro +generosità +valtellinesi +fondi +raccolti +cancro +primo +aiuto +onlus +contributo +provincia +sondrio +regione +lombardia +buona +politica +insieme +cittadini +può +fare +tanto +nonostante +brutto +tempo +tanta +gente +regalata +tessera +lega +molti +prima +volta +solo +gazebo +piazza +wagner +milano +nuovi +iscritti +grazie +grande +professor +alvin +rabushka +regalato +felpa +giù +mani +unione +italiana +ciechi +governo +renzi +tira +fuori +milioni +euro +tolto +ciechi +aliquota +fiscale +può +sala +strapiena +milano +seguici +diretta +sito +lega +nord +radio +padania +orgoglioso +costruire +italia +migliore +padellata +castagne +auguri +santa +lucia +amici +sempre +qualcuno +offenda +altra +felpa +bresciana +altro +dolce +gabbana +domenica +prossima +sedi +lega +nord +aperte +giornata +tesseramento +cambiare +puo +elenco +sedi +aggiornamento +http +www +leganord +org +index +php +aderisci +iscriviti +affollatissimo +incontro +giornalisti +stranieri +tanta +attenzione +idee +lega +mondo +molto +contento +pronto +floris +fa +juve +ieri +fiera +amici +consorzio +focaccia +recco +esempio +bontà +conoscere +tutelare +evitare +arrivino +tavola +schifezze +prodotte +materie +prime +scadenti +italiano +solo +nome +europa +difende +addio +europa +ciao +liguria +sinistra +dice +lega +fascista +quando +tratta +difendere +interessi +italiani +ora +parlamento +russo +incontrare +imprenditori +italiani +rischiando +perdere +colpa +sanzioni +economiche +idiote +imposte +bruxelles +italia +rimettendo +miliardi +euro +renzi +twitti +mangi +gelato +partenza +mosca +incontrare +autorità +russe +imprenditori +italiani +rischiano +perdere +dovrebbe +essere +renzi +difendere +made +italy +mondo +buona +serata +amici +fine +semestre +presidenza +italiana +europa +risultati +portato +casa +renzi +meno +zero +piazza +seriate +sindaco +consiglieri +davanti +presepe +realizzato +ex +alunni +scuola +edile +occupa +case +popolari +soprattutto +clandestini +eppure +governo +renzi +dopo +aver +abolito +reato +immigrazione +clandestina +ora +depenalizza +occupazione +abusiva +vergogna +intervistato +cristina +parodi +vita +diretta +andato +abbastanza +convincente +diciamo +chiedo +voti +prestanza +fisica +dovrei +andare +palestra +so +pur +esporre +idee +disposto +quasi +aspetto +domani +edicola +sorridere +allunga +vita +governatore +pd +toscana +enrico +rossi +presenta +vicini +casa +rom +dimmi +vai +dirò +avanza +tempo +incontrare +alluvionati +imprenditori +disoccupati +magari +piacere +bicchierino +notte +serena +amici +armando +siri +pin +sabato +dicembre +diretta +streaming +radio +tv +proposta +rivoluzione +fiscale +lega +aliquota +fiscale +unica +ecco +squadra +consiglieri +regionali +difenderanno +diritti +cittadini +emilia +romagna +gruppo +giovane +storia +lavorooo +strasburgo +voto +parlamento +europeo +compresi +pd +forza +italia +appena +salvato +poltrone +vergognosa +commissione +europea +così +potranno +continuare +massacrare +economia +italiana +piace +europa +viva +tombini +ghisa +abbasso +ride +mai +stesso +prime +riflessioni +emilia +romagna +pallone +renzi +sgonfiando +lega +vola +comunità +cresce +giorno +giorno +ovunque +pochi +amici +potenti +tanti +amici +gente +clima +derby +fatto +dovere +emilia +romagna +emiliani +romagnoli +oggi +iovoto +cambiare +puo +bologna +tante +idee +tanta +passione +tanta +voglia +cambiare +bravi +ragazzi +centri +sociali +danneggiato +sede +pd +identificato +tizio +salito +cofano +macchina +spero +condannato +galera +spalare +fango +zone +alluvionate +palazzo +governatore +cento +dopo +terremoto +niente +evviva +stato +regione +emilia +cittadini +ringraziano +pd +splendida +busseto +verdi +ricchezza +purtroppo +certa +politica +vuole +valorizzare +ragazzi +testa +cambiare +può +oggi +tour +fabbri +salvini +emilia +chiusura +bologna +ore +ore +incontro +cittadinanza +rivergaro +pc +presso +mercato +piazza +paolo +ore +presidio +stop +immigrazione +altro +rivergaro +pc +frazione +caratta +strada +provinciale +ore +incontro +cittadinanza +cortemaggiore +pc +presso +mercato +ore +incontro +cittadinanza +busseto +pr +piazza +verdi +ore +incontro +cittadinanza +reggio +emilia +spaghetteria +via +emilia +santo +stefano +ore +incontro +cittadinanza +cento +fe +piazza +guercino +ore +comizio +elettorale +bologna +teatro +fossolo +via +lincoln +ore +trasmissione +tv +onda +bersaglio +mobile +meno +emilia +romagna +iovoto +oggi +pomeriggio +venerdì +bologna +ore +aspetto +chiusura +campagna +elettorale +teatro +fossolo +via +lincoln +poveretti +sinistra +urlano +fuori +bar +forlì +meglio +rom +leghista +dicono +vita +vuota +devono +avere +domani +sera +bologna +cinema +teatro +fossolo +via +lincoln +persone +incontrate +riccione +incazzati +sinistra +spende +milioni +euro +filobus +attraversa +paesi +massacra +ambiente +serve +nulla +viva +riccione +no +trc +tanta +gente +lega +piazza +cattolica +mancavano +immigrati +mesi +mangiano +dormono +spese +italiani +hotel +royal +stelle +piscina +spiaggia +paese +civile +generoso +quei +letti +mette +disposizione +italiani +difficoltà +sbaglio +casa +grande +raoul +casadei +re +liscio +ringrazio +musica +amore +romagna +belle +parole +lega +aver +detto +domenica +vado +votare +voterò +bene +altre +amici +piace +liscio +me +meno +domenica +vicinaaaaa +emilia +romagna +iovoto +venerdì +pomeriggio +bologna +ore +aspetto +chiusura +campagna +elettorale +teatro +fossolo +via +lincoln +treno +cambiamento +passa +emilia +romagna +domenica +fino +sera +casa +sceglie +scegliere +alternativa +renzi +nasce +piazze +segreterie +partito +riguarda +alfano +mai +dite +meno +domenica +vicina +emilia +romagna +iovoto +mettete +qualche +bella +foto +cartello +iovoto +emilia +romagna +social +mattina +palazzo +lombardia +insieme +deborah +compagnoni +governatore +roberto +maroni +assessore +sport +antonio +rossi +flavio +ferrari +presidente +cancro +primo +aiuto +flavio +roda +presidente +nazionale +fisi +conferenza +stampa +cancro +primo +aiuto +presentazione +eventi +invernali +qualcosa +invidiare +sinistra +finale +emilia +piccola +azienda +ripartita +dopo +terremoto +dipendenti +mettono +anima +insieme +padroni +altro +sindacati +sapete +novità +poveretti +nulla +meglio +fare +creare +falsi +profili +copiando +foto +fingendosi +me +alcuni +commenti +fate +attenzione +vorrei +rimaneste +male +livello +frustrazione +sinistri +senza +confini +buon +segno +asilo +scuola +elementare +ricostruite +dopo +terremoto +sindaco +alan +fabbri +splendida +comunità +bondeno +piacerebbe +tutta +emilia +romagna +risorgesse +così +incontro +commercianti +cesena +stop +nuovi +centri +commerciali +via +limite +spesa +euro +contanti +no +obbligo +bancomat +controlli +orari +contratti +lavoro +negozi +altro +gestiti +immigrati +sospensione +durc +terremotati +alluvionati +negozio +chiude +sempre +sconfitta +cambiare +può +piadina +romagnola +azienda +orva +bagnacavallo +ravenna +eccellenza +italiana +piadine +sfornate +vendute +ogni +giorno +nonostante +tasse +burocrazia +imprese +crescono +bravi +aliquota +fiscale +unica +potrà +andare +meglio +toilette +bar +rione +rosso +faenza +riso +minuti +diretta +splendida +faenza +collegamento +centinaia +persone +incontrate +abbracciate +mercato +forlì +ovviamente +soliti +contestatori +stavolta +almeno +sfasciato +niente +insieme +alcuni +agenti +polizia +locale +piacenza +quartiere +roma +risse +spaccio +accoltellamenti +persone +perbene +paura +uscire +casa +telecamere +sorveglianza +altro +sequestro +appartamenti +affittati +nero +controlli +giardini +verifiche +orari +apertura +chiusura +negozi +etnici +servono +tanti +soldi +solo +buona +volontà +ah +già +piacenza +governa +sinistra +cambiare +può +partire +domenica +novembre +incontro +agricoltori +provincia +piacenza +dicono +no +sanzioni +economiche +russia +rischio +migliaia +posti +lavoro +miliardi +mancata +esportazione +prodotti +renzi +dici +secondo +sondaggi +lega +crescendo +secondo +comunque +montiamoci +testa +continuiamo +lavorare +amici +dopo +tanti +incontri +minuto +relax +video +quiz +sapete +risposta +comprate +vocale +incontro +confartigianato +parma +aziende +chiuse +emilia +romagna +anno +follia +via +studi +settore +stop +versamenti +inps +fa +aliquota +fiscale +unica +legge +elettorale +chissenefrega +emilia +piace +imola +spalle +struttura +ospita +immigrati +arrivano +zone +guerra +finché +emilia +terremotato +alluvionato +fuori +casa +alberghi +vanno +pagati +altri +razzismo +emilia +romagna +vota +governatore +pd +stato +condannato +così +giusto +ricordarlo +monumento +marco +pantani +qualunque +giudizio +grande +ciclista +regalato +grandi +emozioni +cesenatico +risultato +raggiunto +dopo +manifestazioni +raccolte +firme +oggi +finalmente +immigrati +soggiornavano +mesi +spese +italiani +albergo +stati +allontanati +fusignano +grande +arrigo +sacchi +milan +cuore +vittorie +splendidi +militanti +amministratori +modigliana +val +tramazzo +romagna +milioni +euro +danni +alluvione +nessuna +risposta +parte +stato +vergogna +colazione +torta +mele +mitici +formaggini +susanna +buona +domenica +amici +distruggete +macchine +altri +raccomando +immagini +parlano +chiaro +idea +democrazia +fonti +resto +carlino +repubblica +it +sala +strapiena +montesilvano +convegno +asimmetrie +org +dopo +euro +prima +liberiamo +europa +moneta +folle +prima +torniamo +lavorare +sorridere +così +balordi +centri +sociali +distrutto +macchina +prima +ancora +avvicinassimo +campo +rom +bene +bastardi +poveri +rom +paghiamo +bollette +famiglia +dice +assessora +bolognese +sinistra +taci +vergognati +disastroso +inciucio +renzi +cinquestelle +consulta +csm +grillo +capisco +dispiace +elettori +basta +sinistra +euro +tasse +immigrazione +incontrollata +renzi +fiato +corto +tante +parole +pochi +fatti +guardiamo +avanti +pronto +gruber +stamattina +bologna +gente +aggredisce +insulta +leghisti +sinistra +emiliana +spese +italiani +offre +gratis +acqua +luce +gas +altro +integrazione +voto +lega +voto +chiudere +sgomberare +campi +rom +libri +belli +letto +ombra +vento +carlos +ruiz +zafon +altri +titoli +suggerire +stanchi +modello +rosso +emilia +romagna +alternativa +renzi +rappresentiamo +milioni +italiani +palle +piene +sinistra +portando +rovina +amici +altro +emiliani +romagnoli +alan +fabbri +anni +apprezzatissimo +sindaco +terremoto +domenica +novembre +possiamo +dare +grosso +dispiacere +pd +state +intanto +mettete +piace +pagina +diffondiamo +https +www +facebook +com +fabbripresidente +merlo +preoccupato +esaurito +festa +zucca +lega +ziano +piacentino +passate +serata +halloween +assaggiare +yogurt +panna +cotta +latteria +pievetta +castel +san +giovanni +cercatela +internet +emozione +unica +altro +prodotti +arrivano +estero +ricchezza +casa +stati +visitati +ladri +litri +gasolio +fregati +altra +storia +poco +collegamento +sky +tg +azienda +agricola +piacentino +vittima +furti +aggressioni +parte +stranieri +vengono +presi +giorni +già +fuori +ecco +riforma +giustizia +fare +calendasco +provincia +piacenza +anni +ostello +ospita +spese +italiani +decine +immigrati +collegamento +internet +gratis +vergogna +razzismo +nessuno +grazie +comunità +cresce +progetta +futuro +intervista +iene +altro +giorno +piaciuta +mps +modello +rosso +palle +piene +novembre +voti +emilia +romagna +scegli +sindaco +scegli +alan +fabbri +lega +moriremo +renziani +affollatissimo +incontro +piazza +siena +pazzesco +esempio +fallimenti +sinistra +pd +banca +università +ospedale +squadre +calcio +basket +tocca +pd +muore +gente +svegliando +oggi +roma +renzi +chiuso +palazzo +mezzo +pompieri +precari +vogliono +continuare +fare +lavoro +lega +cresce +appassiona +propone +dovremmo +dialogare +secondo +castagne +braulio +amici +serata +tranquilla +amici +presento +juncker +presidente +commissione +europea +maggiori +responsabili +disastro +portato +saluto +dite +arrivato +forte +chiaro +parlamento +europeo +insiste +rompere +palle +russia +ungheria +invece +preoccuparsi +problemi +cittadini +renzi +putin +scelgo +putin +emergenza +italiana +lavoro +aziende +chiudono +milano +lecce +passato +lasciamo +amichetti +bruxelles +merkel +guardiamo +futuro +panino +crudo +mozzarella +succo +frutta +parte +strasburgo +buona +giornata +amici +bello +naviglio +milano +così +pulito +curato +tendone +strapieno +sotto +monte +bergamasca +buona +politica +ferma +mai +commosso +felice +straordinaria +giornata +donne +uomini +giovani +anziani +nord +sud +bimbi +sorridenti +poliziotti +tranquilli +nessuno +spacca +vetrine +domani +amici +clandestini +schiavisti +rossi +vita +ancora +dura +grazie +piazza +duomo +ora +spettacolo +coda +corteo +ancora +difficoltà +partire +grazie +salvini +lega +stopinvasione +stopinvasione +milano +tantissimi +lega +salvini +dicono +cantante +rap +fatto +inno +beppe +grillo +oggi +lega +milano +devo +dire +riempie +gioia +adesso +fino +domani +sera +mettere +immagine +copertina +facebook +stopinvasione +minuti +incontro +cordiale +costruttivo +vladimir +putin +parlato +immigrazione +pace +imprese +italiane +valori +comuni +altra +europa +possibile +dialoga +minacciano +guerre +sanzioni +amici +emiliani +romagnoli +serve +aiuto +pochissimi +giorni +rimasti +firme +necessarie +presentare +alan +fabbri +apprezzatissimo +sindaco +terremoto +lista +lega +nord +prossime +elezioni +altro +regionali +trovate +tutte +info +luoghi +orari +www +leganord +org +fabbripresidente +oppure +potete +chiamare +emilia +romagna +conto +momento +relax +foto +piccolo +salvini +facilmente +riconoscibile +pazienza +sinistri +buoni +soldi +altri +titoli +grande +spazio +lega +tg +seguito +canale +tv +russo +tv +italiana +sempre +solo +renzi +piccola +alessia +calavino +tn +dice +stopinvasione +iocisarò +quindici +anni +fa +quinta +potenza +economica +mondo +ora +ridotti +sappiamo +italia +francia +spagna +devono +uscire +euro +insieme +può +deve +amici +ecco +accolto +parlamento +russo +no +sanzioni +no +follie +bruxelles +no +terrorismo +islamico +gente +seria +vediamo +sabato +milano +nemici +euro +mostro +amici +dimentico +cinquestelle +votato +sinistra +abolire +reato +clandestinità +renzi +sostiene +politiche +idiote +bruxelles +russia +uccidono +lavoro +tante +imprese +parliamo +miliardi +export +italiano +rischio +altro +jobs +act +putin +alleato +nemico +sfondo +alcune +navi +marina +militare +russa +porto +sebastopoli +dite +chiediamo +qualcuna +prestito +mare +nostrum +visitato +flotta +russa +sebastopoli +repubblica +crimea +facciamoci +prestare +grande +nave +ospedale +aiutare +bisogno +mezzo +mare +usiamo +invece +navi +fermare +invasione +piazza +rossa +mosca +oggi +sposto +crimea +cittadini +scelto +referendum +aderire +federazione +russa +incontreremo +ministri +giornalisti +imprenditori +sperando +allacciare +rapporti +utili +lavoro +imprese +italiane +buona +domenica +amici +parti +necessaria +alleanza +russia +italia +lavorano +tante +imprese +italiane +colpa +sanzioni +orlo +disastro +pericolo +estremismo +islamico +putin +dialoga +gioca +guerra +corriere +accorto +missione +leghista +spiegato +priorità +aziende +posti +lavoro +vittime +sanzioni +società +italiane +operano +ricordo +renzi +gas +usiamo +viene +russia +saluto +piazza +rossa +mosca +città +pulita +tranquilla +mare +nostrum +stop +invasione +torniamo +vivere +sicuri +sereni +città +mosca +clandestino +lavavetri +campo +rom +ragazze +possono +prendere +metropolitana +notte +senza +paura +mare +nostrum +vorrebbe +putin +sabato +ottobre +piazza +duomo +milano +vietato +mancare +primi +importanti +incontri +mosca +oggi +alexei +pushkov +presidente +commissione +esteri +duma +fermare +sanzioni +costano +molto +italia +russia +altro +secondo +sede +ministero +crimea +enorme +opportunità +sviluppo +lavoro +tante +imprese +totale +sintonia +collaborazione +russia +unita +strasburgo +bruxelles +sorprese +agente +polizia +augusta +sicilia +buona +parte +clandestini +sparisce +letteralmente +nulla +altro +controlli +sanitari +prevenzione +quarantena +” +governo +renzi +alfano +invece +altro +posto +credete +poliziotto +http +www +ilgiornale +it +news +politica +altro +quarantena +esami +barconi +controllo +html +colpa +sanzioni +russia +aumento +tasse +temo +inverno +scaldarci +cucinare +tornerà +vecchie +maniere +lega +presente +festa +borgo +chiaravalle +centinaia +cittadini +dicono +ottobre +scoperto +vino +rosso +ligure +eccellente +granaccia +salute +vino +preferite +san +siro +forza +vecchio +cuore +rossonero +stamattina +corriere +piero +ostellino +dichiara +opinione +ragazzotto +fiorentino +sorta +mussolini +minore +tanto +parolaio +velleitario +impotente +rivolgendosi +renzi +altro +piacerebbe +ciò +suggerisce +salvini +spiegando +piace +austerità +imposta +merkel +europa +ritiene +sbagliata +deve +evitare +adottarla +semplice +no +grazie +editoriale +intitola +poche +chiacchiere +servono +fatti +temo +caso +trattandosi +renzi +rimarrà +fermi +chiacchiere +finta +cantargliele +poi +invece +obbedire +battendo +tacchi +berlino +bruxelles +fortuna +lega +europa +parodia +unione +sovietica +attuale +parole +ostellino +smetterà +mai +lottare +finta +mercato +via +val +maira +milano +donne +burqa +venditori +abusivi +chiedo +sindaco +stop +invasione +difendiamo +confini +milano +ottobre +ore +porta +venezia +inizio +corteo +ore +piazza +duomo +comizio +altro +ora +agire +stopinvasione +info +www +stopinvasione +org +https +www +facebook +com +events +elegante +pronto +diretta +piace +maglietta +pare +stasera +striscia +notizia +canale +esordiranno +nuova +imitazione +sottoscritto +bene +evidentemente +crescita +passa +inosservata +comunque +differenza +sinistra +sappiamo +ridere +commissione +bruxelles +parla +commercio +internazionale +matti +buonismo +tolto +dazi +riso +arriva +cambogia +risultato +mentre +europa +importava +altro +cambogia +solo +tonnellate +riso +migliaia +agricoltori +rovinati +rimasti +casa +lega +soli +combattiamo +schifo +difendiamo +prodotti +futuro +splendida +squadra +giovani +padani +stasera +valtellina +solo +movimento +politico +comunità +stop +invasione +minuto +intervento +oggi +canale +sembra +cliccate +vederlo +piace +condividete +https +www +dailymotion +com +video +x26syhn +razzismo +aiutiamo +prima +milioni +disoccupati +milioni +poveri +italiani +news +assaggiatori +grappa +davvero +associazione +interessante +san +daniele +grissini +bianco +friuli +difendere +agricoltura +bruxelles +massacrando +dovere +gusti +frontiere +cercatela +internet +splendida +manifestazione +culture +cibi +vini +tradizioni +gorizia +mare +foto +selfie +periferia +sud +milano +intero +palazzo +comunale +occupato +immigrati +soldi +pagare +affitto +luce +gas +spese +condominiali +devono +pagare +inquilini +regolari +soldi +bersi +centinaia +birre +ogni +sera +chiesto +sgombero +immediato +basta +barbone +milanese +notte +scorsa +dormiva +strada +panchina +molti +altri +casa +mentre +migliaia +immigrati +appena +sbarcati +dormono +comodamente +albergo +giusto +prima +milano +sabato +ottobre +stopinvasione +grazie +migliaia +persone +parecchie +ancora +leghisti +oggi +venute +veneto +pagando +tasca +darci +forza +battaglia +bruxelles +stato +ladro +altroinvasione +clandestina +legge +fornero +dare +speranza +lavoratori +disoccupati +famiglie +molti +siti +informazione +online +migliaia +persone +esistono +giornalisti +infami +amici +renzi +bravo +papà +meno +parlate +problemi +veri +gente +voglia +combattere +cittadella +spettacolo +emozione +uniti +vince +viva +persone +bene +buona +volontà +nord +sud +veneto +lombardia +sicilia +salento +dittatura +europea +altro +odia +autonomie +locali +governo +nazionale +esegue +ordini +vende +fumo +dimentica +italiani +mollate +allora +mollo +nemmeno +stanco +felice +grazie +fratelli +roma +dibattito +futuro +centrodestra +oggi +esiste +curioso +ascoltare +cosa +dirà +quagliariello +ncd +bellissima +festa +ospedale +bambini +buzzi +milano +harleysti +adoro +tradizioni +culture +identità +diversità +qual +cosa +bella +terra +strasburgo +discussione +allarme +ebola +aula +deserta +europa +frega +italia +dovrebbe +chiudere +subito +frontiere +immigrati +provenienti +zone +rischio +contagio +clandestini +liberi +scegliere +domenica +aspetto +cittadella +partiti +pochi +oggi +idee +passione +coraggio +cambieremo +futuro +grazie +tanta +gente +lega +brianza +via +legge +fornero +via +studi +settore +via +mare +nostrum +quel +fenomeno +renzi +abbaia +morde +guinzaglio +berlino +bruxelles +dice +rispetterà +vincoli +europa +gabbia +matti +politico +normale +vincoli +massacrano +altro +paese +fregherebbe +so +troverà +soldi +metterà +sola +mezza +tassa +andremo +roma +bastoni +intanto +cominciamo +milano +sabato +ottobre +stopimmigrazione +novembre +tutta +italia +nonpago +danneggiare +possibile +stato +ladro +montagne +acqua +beni +preziosi +proteggere +difendere +saluto +splendido +monviso +aiutare +immigrati +famiglie +«asili +nido +pubblici +gratuiti +francia +costerebbe +miliardi +euro +anno +costa +mare +nostrum +miliardi +euro +anno +questione +scelte +aiutare +immigrati +aiutare +famiglie +dite +renzi +dirà +» +piazza +strapiena +lega +torino +città +ancora +rossa +tanta +voglia +ripartire +lavorare +sognare +eccoli +tortelli +zucca +esiste +piatto +buono +tantissima +gente +festa +mantovana +ponti +mincio +tortelli +zucca +favola +grandi +militanti +lega +pontirolo +nuovo +bergamasca +passione +coraggio +partecipazione +strada +giusta +cambiare +cose +bella +serata +amici +lega +romanengo +moschea +crema +no +grazie +credo +sondaggi +però +meglio +così +http +www +liberoquotidiano +it +news +italia +sondaggio +ixe +pd +primo +html +benedizione +facchini +belle +tradizioni +popoli +portatori +quintali +storia +macchina +santa +rosa +spettacolo +viterbo +festa +santa +rosa +patrono +città +viva +tradizioni +culture +diversità +ogni +tentativo +omologare +cancellare +dimenticare +invadere +immigrati +dimentichiamo +india +soldati +buffoni +augurio +pronto +ristabilimento +massimiliano +latorre +abbraccio +famiglia +sabato +ottobre +piazza +milano +gridare +clandestini +casa +riprendiamoci +marò +barbara +gambaro +noale +ettari +serre +insalata +rucola +russia +mercato +«solo +prime +settimane +già +perso +euro +dovrò +lasciare +casa +persone» +politica +idiota +altro +bruxelles +uccide +agricoltura +italiana +intanto +paesi +fuori +blocco +egitto +tunisia +marocco +serbia +conquistano +mercati +via +sanzioni +russia +subito +http +corrieredelveneto +corriere +it +veneto +notizie +cronaca +agosto +devo +lasciare +persone +casa +blocco +russo +fa +prime +vittime +shtml +berghem +fest +foto +gruppo +giovani +lega +dopo +giorni +presidio +costretto +prefetto +bergamo +allontanare +decine +immigrati +parco +colli +bergamaschi +spuma +nera +indipendenza +accoppiata +militanti +ghisalba +prima +bergamaschi +solo +dopo +immigrati +prima +tappa +bergamasca +stasera +tanta +gente +tanta +voglia +cambiare +cose +verdello +ottimi +spiedini +costine +stretta +mano +antonio +monella +imprenditore +edile +bergamasco +condannato +anni +carcere +aver +ucciso +rapinatore +albanese +famiglia +versato +euro +risarcimento +antonio +merita +grazia +altri +dovrebbero +andare +galera +bottiglia +buon +bianco +siciliano +salute +bellissimo +piazza +strapiena +capriata +provincia +alessandria +serata +leghista +felice +persone +voglia +esserci +ribellarsi +fare +clandestini +parco +giochi +recco +miracolosamente +dopo +tweet +articoli +giornale +comune +ricordato +potano +piante +domani +bambini +potranno +tornare +giocare +missione +compiuta +amarcord +salvini +quarant +anni +fa +unico +parco +giochi +bambini +lungomare +recco +sporco +chiuso +settimane +piena +estate +comune +riesce +potare +alberi +no +comment +14novembre +quel +giorno +stato +vedi +niente +lavoro +me +famiglia +iva +te +do +muori +fame +idee +trovate +molte +articolo +qualcuna +aggiungere +ciascuno +parte +stato +affama +italiani +molto +male +tassazione +unica +abolizione +studi +settore +asili +nido +pubblici +gratuiti +stop +mare +monstrum +altro +riforma +legge +elettorale +costituzione +gente +ferma +parla +mutuo +altro +pagare +lavoro +manca +invasione +clandestini +renzi +solo +fumo +alfano +passera +centrodestra +lega +unica +alternativa +governo +immigrati +balle +nord +sud +prato +pontida +albero +vita +preghiera +sorriso +altro +centri +sociali +gente +vera +volontari +lega +oltre +persone +serata +leghista +pontida +gente +riesce +entrare +sotto +tendone +stop +immigrazione +palle +piene +presidio +corso +settimana +giorno +notte +parco +colli +bergamaschi +soggiorno +decine +immigrati +grazie +giovani +padani +grazie +lega +arrendiamo +trentino +vista +temperatura +estiva +vado +zabaione +echissenefrega +oggi +fatto +qualche +domanda +privata +condivido +articolo +completo +http +www +affaritaliani +it +politica +salvini +intervista +politica0708 +html +piace +cliccate +pollice +fondo +pagina +persone +lega +arcore +stop +immigrazione +lavoro +gente +molliamo +centinaia +persone +lega +arcene +bergamo +emergenza +disoccupazione +immigrazione +tasse +legge +elettorale +menate +simili +ecco +proposta +piace +ogni +sinistro +mantiene +clandestino +ora +palco +milano +marittima +esponenti +presunto +centrodestra +utile +discutere +tempo +sprecato +dite +spettacolare +colpo +occhio +rossa +milano +marittima +centinaia +persone +serata +leghista +piazza +grazie +romagna +centinaia +abusivi +vendono +centinaia +italiani +comprano +poi +magari +lamentano +immigrazione +clandestina +nessun +controllo +poi +stato +rompe +palle +artigiani +commercianti +scontrino +euro +arrendo +cambiare +può +renzismo +dà +euro +giorno +mese +ex +detenuti +insoddisfatti +stati +trattati +combatto +iostoconlevittime +guarda +video +https +www +youtube +com +watch +v +uwqdkgn9msk +novembre +sfida +statoladro +state +lezzeno +lago +como +serata +leghista +posti +belli +terra +domenica +luglio +caldo +afa +sala +padova +strapiena +lega +idee +gruppo +leghista +trasferta +padovana +sant +antonio +guarda +spalle +sondaggio +operazione +mare +nostrum +leader +lega +matteo +salvini +dichiarato +«mare +nostrum +sospesa +centri +pseudo +accoglienza +vanno +allestiti +nord +africa +là +mediterraneo» +accordo +italiano +dice +chissà +accorgerà +renzi +ora +collegamento +radio +base +centinaia +persone +piazza +lega +magenta +stop +immigrazione +diretta +immigrati +spediti +magenta +vitto +alloggio +pagato +cittadini +italiani +ospitalità +offerta +caritas +volete +pagate +centinaia +persone +lega +rossa +cavriago +reggio +emilia +ultima +città +italiana +statua +lenin +piazza +pranzo +cittadini +adro +franciacorta +state +passando +domenica +buon +appetito +adro +franciacorta +appena +finita +gara +salame +tipi +salami +diversi +scegliere +migliore +difficile +ancora +centro +immigrati +mineo +catania +guarda +bel +deposito +biciclette +davanti +villette +sicuramente +tutte +bici +regolarmente +acquistate +volontari +festa +lega +carpugnino +lago +maggiore +musica +tanta +gente +ottime +torte +politica +sana +volte +grazie +storia +storia +centro +accoglienza +mineo +campi +giochi +bambini +penso +ridotti +giochi +alcuni +giardini +pubblici +milano +incazzo +aria +condizionata +palme +giardino +sbarca +italiani +sempre +dentro +centro +mineo +negozi +fotografia +servizi +wi +fi +ristoranti +varranno +studi +settore +mercati +abusivi +interno +centro +vende +chissà +obbligo +bancomat +vale +immigrati +subito +ambientati +italia +sigarette +contrabbando +vendita +senza +problemi +pazzesco +villette +giardino +davanti +dietro +parabole +tetti +così +italiani +mantengono +immigrati +oggi +bivaccano +centro +accoglienza +mineo +catania +badia +calavena +terra +veneta +orgogliosa +tanti +giovani +alcuni +volontari +bellissima +festa +lega +vizzolo +predabissi +milanese +bravi +piace +matti +mangiare +crosta +grana +normale +notte +serena +me +militanti +leghisti +rovato +arrende +impegna +migliorare +domani +strapiena +festa +lega +quinzano +bresciano +bellissima +squadra +volontari +lavorando +parla +renzi +strasburgo +aula +desolatamente +mezza +vuota +vedete +tira +matteo +europa +diritti +donne +pakistan +cristiani +perseguitati +nigeria +tutte +cause +giuste +renzi +oggi +parlamento +europeo +parola +maro +anni +prigionieri +india +occupa +diseredati +mondo +meno +comincia +strasburgo +occasione +cravatta +leone +san +marco +marsupio +piemontese +stamattina +buonisti +scatenati +quasi +scafisti +salvini +brutto +sporco +cattivo +forse +dalai +lama +daranno +ascolto +stop +mare +nostrum +subito +giugno +novembre +rubando +estate +grazie +splendida +squadra +volontari +leghisti +festa +zogno +insieme +può +formaggio +piastra +polenta +birra +cucina +festa +zogno +val +brembana +tradisce +ingrasserò +signore +signori +maestà +adamello +adoro +montagna +basta +euro +stop +clandestini +lavoro +rivoluzione +fiscale +scommessa +aprire +lega +lega +mai +fare +voglia +date +occhiata +intervista +oggi +leggo +pareri +pane +burro +marmellata +yogurt +mela +ogni +tanto +bisogna +viziarsi +colazione +buona +giornata +amici +buon +cuore +accogliere +rifugiati +basta +bisogna +avere +coraggio +dire +quando +troppi +intervenire +paesi +onore +dalai +lama +porto +pozzallo +spalle +posto +sbarcano +migliaia +esseri +umani +qualcuno +specula +bloccare +subito +navi +mare +lorum +renzi +svegliaaaaa +diretta +maletto +provincia +catania +fragole +dolci +mondo +partita +bimbi +anni +maleducazione +alcuni +genitori +può +sentire +natale +boy +scout +cngei +milano +bellissima +esperienza +amicizia +natura +adoro +formaggio +unico +colesterolo +permette +bellissima +foto +sabato +domenica +giugno +vieniafirmare +capoluoghi +provincia +località +villeggiatura +gazebo +indicati +sito +www +vieniafirmare +org +ultima +occasione +firmare +referendum +altro +libertà +cancelliamo +fornero +clandestino +reato +prostituzione +legale +aboliamo +prefetture +libertà +espressione +no +privilegi +immigrati +sesto +referendum +ripristino +reato +immigrazione +clandestina +potrà +essere +firmato +municipi +gazebo +fino +luglio +info +info +vieniafirmare +org +tantissima +gente +festa +lega +bergamasca +molti +dopo +aver +preso +voti +spariscono +sempre +ore +mercato +via +fauchè +persone +fila +firmare +referendum +spettacolo +piazza +caneva +milano +vigili +multano +auto +parcheggiate +metri +trentina +abusivi +vende +schifooo +notte +serena +amici +bicchiere +grappa +ragazzi +comincia +rincorsa +renzi +piazza +piena +vittorio +veneto +bello +quando +buona +politica +buon +cibo +buon +vino +fantastica +giovane +motivata +squadra +leghista +preganziol +trevigiano +vince +scritta +muro +montecchio +maggiore +vicenza +poveretti +risata +seppellirà +spettacolo +chiesa +montichiari +madonnina +guarda +giù +amici +lumezzane +sana +montagna +bresciana +stasera +mezzanotte +diretta +rai +vado +felpa +serata +cascina +chiari +difendere +agricoltura +significa +difendere +futuro +figli +durante +ballarò +nuovo +traguardo +volte +grazie +comunità +sogna +lavora +cresce +ancora +sforzo +arrivare +firme +sabato +domenica +giugno +gazebata +conclusiva +firmare +referendum +vieniafirmare +cancelliamo +fornero +clandestino +reato +prostituzione +legale +altro +aboliamo +prefetture +libertà +espressione +no +privilegi +immigrati +chiusa +raccolta +municipi +può +ancora +firmare +gazebo +indicati +sito +http +www +vieniafirmare +org +verifica +vicino +oppure +disponibilità +sezioni +segreterie +provinciali +lega +nord +http +www +leganord +org +index +php +movimento +sedi +sezioni +aiutare +aprirne +info +info +vieniafirmare +org +ultimo +giorno +vai +municipio +firmare +referendum +libertà +cancelliamo +fornero +clandestino +reato +prostituzione +legale +aboliamo +prefetture +libertà +espressione +no +privilegi +altro +immigrati +info +info +vieniafirmare +org +raccolta +prosegue +fino +giugno +gazebo +indicati +sito +http +www +vieniafirmare +org +domani +giugno +ultimo +giorno +firmare +referendum +libertà +comuni +già +andato +firmare +gazebo +municipio +comune +cancelliamo +fornero +clandestino +reato +altro +prostituzione +legale +aboliamo +prefetture +libertà +espressione +no +privilegi +immigrati +info +info +vieniafirmare +org +raccolta +prosegue +fino +giugno +gazebo +indicati +sito +http +www +vieniafirmare +org +piccole +luci +mare +sorelle +cielo +guidino +lungo +cammino +notte +serena +amici +poco +essere +moderati +aziende +giorno +chiudono +proporrò +carta +valori +cominciare +temi +economici +vedremo +intanto +massimo +impegno +ballottaggi +altro +sprint +finale +raccolta +firme +referendum +andati +firmare +portato +qualche +amico +firma +può +fare +differenza +fino +martedì +compreso +comune +tutta +italia +prossimo +weekend +gazebo +deriva +lepenista +meglio +deriva +socialista +niente +lezioni +sostiene +governo +sinistra +abolisce +reato +clandestinità +libera +spacciatori +chiude +presidi +polizia +altro +lega +riparte +alternativa +renzi +riduzione +tasse +tutela +piccoli +difesa +tante +identità +nord +sud +mobilitazione +euro +dite +martedì +giugno +ultimo +giorno +firmare +referendum +libertà +comuni +già +andato +firmare +gazebo +municipio +comune +cancelliamo +fornero +clandestino +reato +altro +prostituzione +legale +aboliamo +prefetture +libertà +espressione +no +privilegi +immigrati +info +info +vieniafirmare +org +raccolta +prosegue +fino +giugno +gazebo +indicati +sito +http +www +vieniafirmare +org +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +info +info +vieniafirmare +org +ultimi +giorni +firma +referendum +mancano +moduli +comune +chiama +scrivi +info +vieniafirmare +org +dì +comune +controllare +email +pec +moduli +inviati +oppure +altro +scaricare +moduli +http +www +vieniafirmare +org +corri +firma +tutta +italia +municipio +solo +fino +martedì +giugno +compreso +ripartire +esempio +intervento +tempo +oggi +cosa +pensate +accordo +idea +europa +leggete +intervista +risposta +affermativa +condividete +cliccate +piace +fondo +pagina +http +www +affaritaliani +it +affari +europei +salvini +intervista +ue +forzaitalia3005 +html +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +infoline +incredibile +fino +mesi +fa +articolo +genere +stato +impensabile +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +infoline +esaurito +conferenza +stampa +lega +marine +pen +austriaci +olandesi +fiamminghi +moneta +unica +no +grazie +pensiero +unico +no +grazie +immigrazione +incontrollata +no +grazie +bruxelles +qualcuno +paura +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +infoline +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +infoline +festival +trash +parole +brindisi +militanti +elettori +permesso +sognare +grazie +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +oggi +aiutato +nascere +alba +vitellina +kili +fatica +appena +votato +lega +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +attesa +dare +mano +partorire +mucca +finisce +mai +imparare +votare +irregolarità +segnalare +chiama +ora +voto +lega +voto +difendere +agricoltura +mangiare +vivere +sano +senza +schifezze +multinazionali +vorrebbero +portare +tavole +serafino +grazie +impegno +deluderti +deludervi +massimo +promemoria +so +sapete +già +unica +precisazione +salvini +potete +scrivere +voglia +tutta +italia +tutte +circoscrizioni +elettorali +iovotolega +ioscrivosalvini +solo +domenica +ore +ore +tessera +elettorale +smarrita +recati +comune +rifarla +dopo +anni +forza +italia +an +pdl +questavoltavotolega +migliaia +verificabile +messaggi +ricevuti +scelgo +arrivati +mattina +chat +grazie +beatrice +grazie +gianpaolo +chat +fantastici +migliaia +piace +domande +commenti +grazie +domani +buon +voto +libertà +partecipazione +voluto +chiudere +campagna +elettorale +lega +davanti +dormitorio +pubblico +viale +ortles +milano +anno +scorso +ospiti +cittadini +italiani +genitori +separati +disoccupati +altro +pensionati +esodati +ridare +lavoro +speranza +obiettivo +date +mano +votando +lega +domenica +maggio +rimarrà +solo +sogno +grazie +cuore +amici +ognuno +poco +dormitorio +pubblico +viale +ortles +unione +sovietica +europea +affama +gente +altra +parte +spalanca +porte +invasione +clandestini +cari +burocrati +altro +bruxelles +cara +angela +merkel +preparatevi +sloggiare +popoli +europei +darvi +domenica +foglio +via +diretta +streaming +www +matteosalvini +com +ore +sabato +aspetto +nuova +iniziativa +realizzata +supporto +tecnico +facebook +italia +oretta +cercherò +rispondere +tutte +domande +oggi +lunga +intervista +libero +parlo +proprio +dite +leggete +piace +diffondete +meno +pronti +pronto +diretta +agorà +rai +ultime +ore +poi +vota +lega +vinceeeee +mario +votato +destra +anni +poi +m5s +ora +lega +guido +votava +oltre +anni +buttato +scheda +elettorale +stamattina +andato +rifarla +indovinate +dite +fantastici +altro +messaggi +intristire +quel +fenomeno +alfano +evento +facebook +domenica +voto +lega +https +www +facebook +com +events +prato +abitanti +immigrati +accoglienza +suicidio +lega +unica +opposizione +amici +circa +firme +raccolte +cancellare +leggi +fornero +merlin +quasi +pochi +giorni +arrivare +potete +firmare +comuni +italiani +chiamate +informazioni +ogni +caso +grazie +fine +fatto +gianfranco +fini +sicuramente +domenica +voterà +lega +renzi +grillo +berlusconi +voti +altri +voti +domenica +solo +voto +referendum +passato +futuro +fuori +euro +subito +mercato +genova +coda +stamattina +firmare +referendum +lega +fornero +cancelliamo +legge +dicono +signore +fila +dobbiamo +arrivare +firme +aiutaci +chiama +ora +splendida +genova +cornigliano +decine +rom +abusivi +bimbi +mezzo +strada +ecco +sinistra +integra +anzi +disintegra +spettacolare +fast +food +piemontese +carne +cruda +patate +birra +artigianale +mezzanotte +diretta +rai +qualche +nottambulo +sveglio +davanti +video +napoli +ex +cinquestelle +altri +voti +lega +buone +idee +contagiose +sempre +nord +sud +scrivete +sondaggio +così +volo +comune +torino +coraggio +mettere +cartelli +no +camping +ingresso +campo +rom +abusivo +vota +pd +grandi +ragazzi +comunità +domina +rete +http +seigradi +corriere +it +europee +salvini +piu +forte +web +renzi +sempre +spasso +centri +storici +vita +vera +purtroppo +papà +dico +integrazione +schifo +sgomberare +subito +vivere +centinaia +bambini +mezzo +schifo +cultura +alternativa +follia +tribunale +minori +stato +rom +accampati +immondizia +fortuna +ipad +trasmette +odori +benvenuti +torino +fassino +chiamparino +benvenuti +mega +campo +rom +abusivo +lungo +stura +mancano +giorni +voto +domenica +vota +lunedì +internet +silenzio +elettorale +vale +dunque +possiamo +agire +fino +domenica +compresa +dialogando +facebook +altro +italia +riattivare +applicazione +portavoce +sospesa +ricordo +andiamo +forte +twitter +collegate +indirizzo +www +matteosalvini +com +seguimi +potete +aiutarmi +domenica +potenziare +messaggio +istruzioni +twitter +preferisco +facebook +momento +buono +iscriversi +lì +grazieeee +amici +qualche +problema +applicazione +facebook +condividere +momento +sospesa +chiarendo +accaduto +amici +facebook +italia +ringrazio +disponibilità +altro +ricordo +attiva +operativa +app +farmi +portavoce +twitter +voglia +domenica +prossima +possiamo +aumentare +forza +messaggio +rete +basta +avere +account +twitter +andare +link +www +matteosalvini +com +seguimi +seguire +istruzioni +infografica +dovrebbe +essere +abbastanza +semplice +grazie +fate +maglietta +basta +euro +pronto +diretta +canale +presidio +davanti +casa +fornero +san +carlo +canavese +altrimenti +fatta +piangere +già +firmato +comune +referendum +cancellare +maledetta +legge +sardegna +questavoltavotolega +messaggio +appena +ricevuto +ex +soldatessa +berlusconi +roma +delusa +silvio +detto +nulla +uscita +euro +mare +nostrum +ora +vota +lega +grazie +annamaria +davvero +così +tanti +delusi +silvio +attenzione +populista +lago +maggiore +amici +grazie +inviato +migliaia +commenti +sostegno +tema +nuovi +leghisti +così +fatto +fare +qualche +cartello +valorizzarli +dite +sicilia +conoscete +altri +stavolta +votano +lega +domenica +prossima +bella +sorpresa +tanti +battaglie +euro +immigrazione +clandestina +colore +oggi +pranzo +dietetico +mare +casoncelli +burro +pancettaaa +toh +guarda +incontrato +mercato +mariano +comense +ricorda +buongiorno +mondo +oggi +camper +parte +canzo +montagne +comasche +poi +passaggi +lombardi +cantù +mariano +comense +bergamo +ore +bonate +sopra +marcallo +casone +sesto +calende +varese +ore +caronno +varesino +lega +corre +bologna +davanti +chiese +monumento +stupendo +visitare +signor +ivo +giovane +leghista +anni +entusiasmo +età +vinciamo +spoglio +villa +aldini +napoleone +clandestini +sinistra +bologna +italia +villa +aldini +colli +bologna +splendida +vista +godono +immigrati +ospiti +villa +ovviamente +spese +italiani +mica +male +vero +camera +pd +sel +scelta +civica +nuovo +centro +destra +movimento +stelle +votano +sospensione +operazione +mare +nostrum +lega +unica +opposizione +invasione +altra +europa +possibile +europee +domenica +maggio +vota +lega +nord +scrivi +salvini +demenziale +operazione +mare +nostrum +riuscita +finalmente +espellere +qualcuno +deputati +lega +stamane +camera +protestato +esponendo +cartelli +clandestino +reato +ecco +numeri +altro +folli +incremento +clandestini +ultimo +anno +30mila +immigrati +mesi +milioni +euro +soldi +pubblici +spesi +ogni +mese +molliamo +confini +difenderemo +lega +unica +opposizione +invasione +pronto +ora +diretta +radio +rai +compagnia +pronto +poco +la7 +aiutate +commentare +facebook +twittare +presidio +davanti +hotel +garda +affi +ospita +spese +ventina +clandestini +euro +giorno +immigrati +euro +giorno +disabili +vergogna +mercato +meolo +sostegno +candidata +lega +prima +sindaca +storia +paese +forza +guarda +poveretti +monti +cosa +inventano +comunque +varrebbe +marengo +euro +drogato +poco +rai +splendida +terra +friuli +foto +gruppo +leghista +gonars +provincia +udine +piazza +lega +trieste +dire +no +proposta +pd +m5stelle +regalare +cittadinanza +chiunque +nasce +italia +tappa +camper +monfalcone +accoglienza +calorosa +tanta +voglia +tornare +sperare +lavorare +sala +strapiena +vittorio +veneto +ora +diretta +sky +tg +autoscatto +camper +direzione +vittorio +veneto +padova +può +cambiare +massimo +bitonci +sindaco +dopo +pioggia +torna +sempre +sereno +bellissimo +arcobaleno +fotografato +camper +vicenza +padova +dedicato +arzignano +vicenza +tanta +bella +gente +tanta +voglia +lavorare +campi +rom +sgomberati +salutiamo +splendido +trentino +ora +veneto +arzignano +valdagno +schio +tezze +brenta +san +martino +lupari +poi +altro +padova +piazza +mazzini +piazzale +stazione +vittorio +veneto +fotografa +camper +viaggio +lacrima +fornero +omaggio +mamme +papà +candidati +lega +telgate +figli +futuro +prima +foto +modelle +eccezione +piace +maglietta +prima +camper +tappa +bolgare +bella +gente +provincia +persone +genuine +camper +partito +ragazzi +porto +me +amici +oggi +parte +camper +milano +piazza +scala +zona +viene +farmi +salutino +tutte +info +www +matteosalvini +com +liberarsi +gabbia +euro +fermare +invasione +clandestina +roma +sala +strapiena +maggio +può +scegliere +domani +mattina +domenica +aspetto +roma +teatro +flavio +bastaeuro +tour +amici +romani +qualcuno +viene +trovarmi +spettacolo +fate +girare +foto +coda +ininterrotta +gazebo +milano +firmare +clandestino +reato +ecco +nuovo +referendum +segnalano +code +gazebo +firmare +vaiiiii +amici +sabato +domenica +venite +firmare +centinaia +piazze +nord +mappa +gazebo +www +vieniafirmare +org +oppure +lunedi +firma +municipi +italiani +clandestinoèreato +crederete +stasera +cena +salvini +solo +frutta +europa +identitaria +guarda +mosca +crimea +diritto +autodeterminazione +http +www +nododigordio +org +evidenza +salvini +lega +nord +europa +identitaria +guarda +mosca +poco +diretta +rai +radio +pronto +diretta +rai +buona +colazione +amici +saluto +mattina +diretta +rai +arrivato +ecco +sesto +referendum +reintrodurre +reato +clandestinità +abrogando +norma +voluta +renzi +votata +parlamento +forza +italia +sola +dura +opposizione +lega +altro +cinquestelle +defilati +puoi +firmare +prossimo +weekend +centinaia +gazebo +nord +oppure +municipio +settimana +prossima +raccolta +prosegue +altri +raccogliamo +500mila +firme +cancelliamo +fornero +legge +info +www +vieniafirmare +org +prossimi +giorni +mandiamo +tivù +spot +occhiata +piace +diffondi +lega +unica +opposizione +invasione +guardalo +https +www +youtube +com +watch +v +axlniuqy +ac +pronti +firmare +referendum +reintrodurre +reato +clandestinita +brevissimo +info +clandestinoèreato +presidio +lega +davanti +cie +ponte +galeria +roma +espellere +espellere +espellere +rilassarsi +caffè +latte +mandorle +piazza +bella +piena +locorotondo +confronto +lega +forza +italia +euro +europa +immigrazione +bellissima +taranto +politica +giusta +terre +possono +tornare +lavorare +abbraccio +ragazze +fermato +salvini +televisione +sembrava +grassottello +ah +comunque +votiamo +battaglia +clandestini +grazieee +altra +foto +splendida +serata +ieri +lamezia +terme +persone +vogliono +liberarsi +gabbia +euro +piazza +salerno +firma +referendum +lega +superate +firme +ora +maledetta +fornero +attraversato +stretto +ora +corre +mitica +salerno +reggio +calabria +aspetto +lamezia +terme +nuova +tappa +bastaeuro +tour +stasera +sempre +collegamento +lamezia +piazzapulita +la7 +dopo +aver +raccolto +firme +referendum +fornero +granita +siciliana +mandorla +ragazze +ragazzi +chiedono +solo +lavorare +avere +futuro +battaglia +basta +euro +cresce +sicilia +augusta +sicilia +lega +accolta +decine +lavoratori +porto +mamme +studenti +preoccupati +invasione +corso +aiutateci +dicono +forza +sicilia +perbene +stop +immigrazione +lega +libera +sud +salvini +tour +domani +lunedì +augusta +mineo +poi +catania +clandestini +stop +lamezia +terme +basta +euro +tour +diretta +piazza +pulita +la7 +persone +libere +aspetto +messaggio +chiaro +basta +euro +popolo +pontida14 +sfondo +genova +sempre +stupenda +peccato +politica +sinistra +riduca +sempre +peggio +bivacco +centro +milano +renzi +alfano +vergognatevi +benvenuti +stazione +centrale +milano +milano +roba +matti +stop +immigrazione +subito +grillo +diciamo +fuori +subito +euro +tira +lunghe +berlusconi +passato +pd +vota +vota +merkel +ecco +intervista +oggi +secolo +xix +genova +altro +splendida +città +aspetto +tanti +oggi +ore +palazzo +ducale +dire +insieme +senza +tentennamenti +basta +euro +piace +girare +oggi +sabato +genova +palazzo +ducale +nuova +tappa +bastaeuro +stasera +domani +pontida14 +viene +renzel +poi +arrivi +cagliari +trovi +persone +aspettarti +ascoltarti +sala +riesce +contenerle +tutte +devono +montare +altoparlanti +fuori +stanchezza +passa +attimo +grazie +stupenda +sardegna +stupendo +porto +alghero +stupenda +bandiera +catalana +sventola +persone +pontida +van +sfroos +musica +dialetto +poesia +rosso +solo +vino +vittoria +sempre +spettacolooo +altro +concerto +roma +musica +davide +stasera +pontida +volontari +cucina +centinaia +persone +ospiti +pranzo +stasera +musica +gratis +davide +van +sfroos +mai +venuti +aspetto +pontidaaaaa +gente +fila +ora +pranzo +disoccupati +esodati +pontida +scelgo +casoncelli +costine +polenta +zola +oggi +dieta +guarda +giovani +impegnati +lega +besana +brianza +pontida14 +domani +1° +maggio +inizia +giorni +pontida +pranzo +lavoratori +concerto +acustico +davide +van +sfroos +aspetto +evvai +piazza +piena +lega +albenga +rosy +guarnieri +sindaco +liberarci +gabbia +euro +ecco +bella +piazza +leghista +sanremo +poco +albenga +gente +coda +sanremo +firmare +referendum +pienone +pavia +pensiero +unico +idee +ora +porta +porta +rai +ancora +piedi +piove +nerviano +sotto +portici +raccolgono +firme +referendum +bravi +militanti +attesa +giorni +pontida +invitati +mercoledi +sera +monza +nuova +tappa +bastaeuro +tour +aspetto +numerosissimi +«nos +idées +convergent +à +avec +celles +marine +pen +idee +convergono +marine +pen» +figaro +fantastiche +donne +uomini +cucinando +festa +leghista +zanica +profumoooo +dopo +anni +buona +amministrazione +squadra +lega +torna +vincere +spirano +bergamo +bravi +ragazzi +fortuna +bimbi +ancora +milan +vince +sindaco +tribiano +fratelli +italia +firma +referendum +lega +bravo +grande +gruppo +pioltello +vincere +comune +liberarci +euro +follia +pronto +mentana +ex +manzoniano +me +purtroppo +interista +distrarmi +milan +bucatini +cacio +pepe +dietetici +ieri +quinto +treviso +viva +san +marco +caspita +rifanno +bene +asfalto +milano +bravo +pisapia +sala +strapiena +treviso +parlare +euro +lavoro +futuro +inizio +dubbi +ora +certo +gente +vuole +morire +banche +finanza +euro +riportiamo +centro +uomo +donna +denaro +profitto +riusciamo +arrivare +chiesa +vento +lago +portarti +saluto +buon +viaggio +ragazza +mercato +milano +superate +firme +ciascuno +referendum +parecchie +persone +votavano +anni +ringraziato +detto +volta +voto +lega +avanti +ore +gente +già +fila +fuori +stazione +nord +milano +firmare +legge +fornero +posto +coscienza +settimana +doppio +appuntamento +bastaeuro +giovedì +sera +treviso +venerdì +mattina +aprile +reggio +emilia +liberazione +euro +può +deve +aspettiamo +diffondete +amici +manuale +uscire +incubo +trovate +sito +www +bastaeuro +org +ciao +amici +auguri +buona +pasqua +pensiero +vittoria +amici +percorso +sentiero +adesso +accompagnano +lassù +buon +viaggio +piccola +grande +vittoria +cola +sorriso +lega +valtellina +quest +anno +pontida +stessa +strasburgo +rispetto +animali +vietnam +penso +europa +dovrebbe +preoccuparsi +prima +benessere +esseri +viventi +umani +animali +europa +no +kabobo +pena +morte +no +ergastolo +sì +cosa +pensate +mezz +ora +incontro +marine +pen +uniti +battaglia +euro +disastri +banche +immigrazione +massa +marine +crediamo +maggio +possiamo +liberarci +gabbia +ridare +forza +lavoro +futuro +sogno +vassoio +tortelli +zucca +canzoni +tenco +stereo +bimba +gioca +libro +peppa +pig +bimbo +preso +interrogazione +storia +splendida +comunità +amici +cambierei +nemmeno +soldi +mondo +ascoltiamoci +po +buona +musica +già +raccolte +firme +cancellare +legge +fornero +dobbiamo +arrivare +può +firmare +comuni +italiani +info +www +vieniafirmare +org +credo +perfino +corriere +sera +accorge +battaglia +lega +imporre +regole +tasse +sicurezza +mondo +prostituzione +succedendo +secondo +gente +piedi +gente +riesce +entrare +sala +bergamo +basta +euro +tour +arrivato +roma +bellissimo +convegno +fuori +gabbia +euro +riparte +speranza +potrà +ancora +sognare +vero +panorama +oggi +edicola +cancelliamola +firma +porti +amici +svelta +municipi +italiani +gazebo +lega +nord +weekend +info +www +vieniafirmare +org +comune +città +castello +bellissima +umbria +mattinata +firme +cancellare +fornero +merlin +vuoi +darci +mano +chiama +cancelliamo +vergogna +legge +fornero +firma +sabato +domenica +lega +torna +centinaia +piazze +nord +gazebo +firmare +referendum +libertà +trova +mappa +aggiornamento +www +vieniafirmare +org +oppure +puoi +firmare +municipi +tutta +italia +coda +roma +cancellare +legge +fornero +info +vieniafirmare +org +altri +clandestini +arrivo +bastaaaaa +renzi +alfano +complici +invasione +annunciata +lega +clandestino +reato +accordo +pisapia +abbandonato +milano +periferia +oggi +portato +davanti +palazzo +marino +decine +sacchi +rifiuti +raccolti +volontari +leghisti +parchi +piazze +pisapia +preparati +sfratto +mare +bandiere +idee +bambini +gente +vuole +lavorare +vivere +tranquilla +arresteranno +sapete +sacile +cittadina +veramente +bellissima +bellissimo +vedere +gente +stamattina +coda +gazebo +firmare +referendum +fornero +farti +vedere +giro +incontro +operai +electrolux +porcia +centinaia +posti +lavoro +rischio +europa +basa +solo +profitto +sfruttamento +europa +difendiamo +lavoro +italia +colazione +energetica +speck +formaggi +yogurt +zabaione +pronto +tappe +friulane +oggi +brugnera +pasiano +pordenone +porcia +pranzo +sacile +verona +nuova +felpa +friul +così +crozza +contento +buona +musica +ottimo +rosso +tantissimi +amici +sempre +innamorato +lega +domenica +aspetto +verona +ore +piazza +signori +pacificamenteliberi +nord +sud +incredibile +persone +paese +montagne +udine +preparare +futuro +fuori +gabbia +euro +indipendenti +bastaeuro +tour +ore +diretta +streaming +monte +buja +ud +www +bastaeuro +org +aspetto +piazza +longarone +viva +leone +oggi +monte +buja +vicino +udine +basta +euro +tour +tana +mitico +mauro +corona +erto +fortuna +dare +occhiata +quadernetto +nascendo +nuovo +libro +bellissimo +pomeriggio +amici +ente +nazionale +sordi +conoscono +difficoltà +possono +risolvere +problemi +impegno +concreto +approvare +regione +lingua +segni +offrire +assistenza +bisogno +diversi +uguali +metti +copertina +facebook +qualche +ora +vergogna +aprile +pesce +aprile +abolito +reato +immigrazione +clandestina +favorevoli +forza +italia +ncd +sel +pd +sc +udc +astenuti +m5s +lega +unica +difesa +invasione +vergogna +ecco +parlamento +vota +emendamenti +eliminazione +reato +immigrazione +clandestina +grillini +pd +fi +ncd +altri +difesa +clandestini +altro +alfano +renzi +accordo +solo +lega +resiste +luci +verdi +unica +difesa +invasione +girare +smascheriamo +amici +clandestini +ecco +voto +emendamento +tanti +eliminazione +reato +immigrazione +clandestina +unico +voto +mantenerlo +lega +lega +unica +difesa +invasione +girare +smascheriamo +amici +clandestini +liberi +mai +schiavi +nessuno +ecco +simbolo +lega +presente +schede +elettorali +nord +sud +maggio +riprendiamo +mano +futuro +letture +oggi +copie +padania +libero +oggi +dedica +bell +articolo +lega +scala +sondaggi +colazione +dietetica +svegliaaa +sistemate +orologio +date +mano +comunità +persone +coda +piazza +repubblica +novara +firmare +referendum +giornata +stupenda +grazie +giornata +stupenda +lago +arona +tante +firme +fornero +merlin +raccolte +gazebo +già +firmato +grande +gruppo +gazebo +vercelli +firma +piazza +cavour +aspettiamo +trova +firmare +www +vieniafirmare +org +usa +social +vieniafirmare +vittorio +sgarbi +appena +firmato +referendum +cancellare +infame +riforma +fornero +domani +tocca +vieniafirmare +trova +www +vieniafirmare +org +trova +topi +foto +calcutta +milano +pochi +metri +metropolitana +cascina +gobba +pisapia +svegliaaaaa +so +serata +peppa +pig +roma +arrivo +obama +nobel +pace +uomini +impegnati +sicurezza +italiani +pagano +già +gazebo +pronti +sabato +domenica +nord +aiutaci +dare +calcio +sedere +legge +fornero +legge +merlin +vieni +firmare +referendum +info +potrà +firmare +comuni +centro +sud +vuoi +aiutarci +sapere +metti +domenica +immagine +copertina +usa +hashtag +vieniafirmare +social +sabato +domenica +potranno +firmare +referendum +cancellare +altro +vergognosa +riforma +fornero +cancellare +legge +merlin +prostituzione +mandare +casa +prefetti +limitarti +discutere +rete +partecipa +oltre +gazebo +puoi +firmare +municipi +italiani +info +www +vieniafirmare +org +girare +messaggio +insieme +puo +esaurito +lega +stasera +mortara +riconquistare +speranza +lavoro +futuro +insieme +può +vieniafirmare +sabato +domenica +prossimi +centinaia +piazze +marzo +municipi +italiani +firma +cancellare +vergogna +legge +fornero +trova +gazebo +www +vieniafirmare +org +altro +usa +social +vieniafirmare +puoi +firmare +abrogazione +legge +merlin +tassiamo +regolamentiamo +prostituzione +abolizione +prefetture +stop +concorsi +pubblici +immigrati +abrogazione +legge +mancino +reati +opinione +bruxelles +paura +lega +grazie +comunità +cresce +altra +europa +possibile +fuori +euro +ripartono +lavoro +speranza +pubblico +caldo +via +milano +no +lavanderia +cielo +aperto +rom +integrano +così +amici +sabato +domenica +marzo +aspettiamo +centinaia +piazze +sostenere +referendum +abrogazione +riforma +fornero +pensioni +abrogazione +legge +merlin +altro +prostituzione +stop +concorsi +pubblici +immigrati +abolizione +prefetture +abolizione +legge +mancino +reati +opinione +marzo +potete +firmare +presso +comune +residenza +tutta +italia +trovate +tutte +informazioni +www +vieniafirmare +org +fermiamo +mai +centinaia +persone +tanti +riescono +entrare +sala +basta +euro +tour +padova +indipendenza +stato +bruxelles +brianza +basta +milioni +spesi +clandestini +prima +felpa +veneto +pronta +oggi +pomeriggio +padova +quarta +tappa +basta +euro +tour +aspetto +giornalisti +diffamano +veneti +lega +voglia +indipendenza +presidio +davanti +prefettura +milano +altri +clandestini +ospitare +case +alberghi +spese +rispediamoli +casa +sindaci +cittadini +san +genesio +vicino +pavia +oggi +diversi +clandestini +alloggiano +hotel +riz +piscina +centro +benessere +spese +lega +sposteremo +finchè +clandestini +andranno +banzai +tanta +gente +stasera +verbania +basta +euro +tour +tele +rimbambisce +invece +voglia +capire +dubitare +sognare +ancora +arrende +produce +italia +giocattoli +storici +nuova +faro +prima +legno +oggi +plastica +compriamo +prodotti +difendiamo +lavoratori +gente +dorme +strada +milano +troppe +case +vuote +vedete +impegno +andranno +assegnate +subito +centro +milano +invaso +vespa +giro +mondo +ruote +amici +ancora +esaurito +entusiasmo +tappa +torino +già +pronta +padova +sabato +marzo +aspettiamo +tanti +cittadini +veneti +vogliono +riprendersi +futuro +fermiamo +mai +bastaeuro +incredibile +sala +strapiena +gente +seduta +piedi +ovunque +tappa +basta +euro +tour +torino +gente +comincia +capire +servi +bruxelles +finita +pronti +torino +tappa +oggi +bastaeuro +tour +diretta +www +bastaeuro +org +potete +scaricare +manuale +uscire +incubo +richiedere +gratuitamente +adesivi +materiale +altra +europa +possibile +lega +inaugurazione +sede +lega +nord +ghedi +seguire +cena +persone +montichiari +lega +combatte +cresce +brescia +centinaia +firme +diritto +voto +anticipato +immigrati +prima +gente +europa +toglie +dazi +limoni +marocco +continuo +difendere +orgogliosamente +lavoratori +italiani +angelo +prodotti +eccellenza +http +www +dailymotion +com +video +x1g35r1 +europa +criminale +uscire +piu +presto +euro +sara +fine +news +quasi +diretta +occhio +bendato +congiuntivite +rete +fianco +me +gasparri +wow +limone +stasera +trasmissione +quinta +colonna +porto +limone +dimostrazione +europa +euro +massacrando +agricoltura +nome +profitto +insieme +esodati +sede +inps +grazie +regione +lombardia +possiamo +aiutare +arrivare +pensione +centinaia +persone +burocrazia +sveglia +aspetto +torino +sabato +marzo +ore +sala +convegni +atc +corso +dante +nuova +tappa +bastaeuro +tour +tutte +date +manuale +uscire +incubo +sito +www +bastaeuro +org +lega +presente +piazza +breno +fermiamo +mai +qualche +ora +relax +sorriso +dedicato +comunità +belle +persone +presenti +oggi +piazza +ponte +legno +insieme +tante +donne +ore +distribuito +copie +libro +basta +euro +pausa +spritz +patatine +salute +antonio +anni +muratore +quaranta +figli +secondo +giustizia +italiana +dovrebbe +farsi +anni +galera +perchè +ucciso +rapinatori +entrati +casa +notte +mai +fianco +ogni +mezzo +già +spedito +prime +buste +adesivi +volantini +basta +euro +tutta +italia +gratis +direttamente +casa +volesse +può +compilare +modulo +sito +www +bastaeuro +org +maggiore +rapidità +oppure +scrivermi +privato +vogliono +salva +roma +perchè +troppi +debiti +poi +vogliono +fare +olimpiadi +gran +premio +formula +robb +matt +inaugurata +nuova +sede +lega +nord +bolzano +persone +idee +coraggio +cresce +profumo +valpolicella +sindaco +cittadini +san +pietro +cariano +fila +gazebo +firmare +golia +zampe +pronto +mordere +piazza +vittoria +legnago +veneto +energia +incredibile +piazza +piena +splendida +belluno +altro +salva +roma +cittadini +palle +piene +oggi +parte +vittorio +veneto +gente +fila +stamattina +firmare +referendum +indipendenza +poi +tour +porterà +belluno +legnago +san +pietro +cariano +bolzano +arco +trento +buona +domenicaaa +torta +festa +capodanno +veneto +notte +serena +amici +adesso +grappino +acqua +ferma +leghisti +mogliano +veneto +tanta +gente +comune +sostegno +indipendenza +stupenda +cripta +medievale +duomo +treviso +nuovo +punto +lega +padova +piazza +erbe +mattinata +firme +comunità +cammino +splendido +ponte +bassano +grappa +stato +seconda +tappa +vicentina +malo +tanta +gente +cioccolata +calda +sorrisi +domani +90esima +edizione +storico +carnevale +gazebo +veneto +sabato +domenica +sostegno +referendum +indipendenza +grandi +ecco +tappe +veneto +tour +sabato +incontro +montecchio +maggiore +bassano +altro +grappa +padova +inaugurazione +comitato +elettorale +piazza +erbe +mogliano +veneto +arcade +infine +serata +caorle +cena +capodanno +veneto +domenica +vittorio +veneto +belluno +legnago +san +pietro +cariano +sempre +domenica +bolzano +inaugurazione +sede +lega +via +rovigo +arco +trento +ferma +perduto +aspetto +info +www +firmaindipendenza +org +arena +verona +spettacolo +vero +scarica +manuale +uscire +incubo +domande +risposte +verità +nessuno +dice +www +bastaeuro +org +altra +europa +possibile +vittoria +lega +governo +ritira +decreto +salva +roma +italiani +risparmiano +miliardo +euro +finito +tappare +buco +città +indebitata +mondo +sbaglia +paga +politici +romani +casa +lega +unica +opposizione +pedaggi +autostradali +ridotti +pendolari +vittoria +lega +difesa +cittadini +stato +ladro +sprecone +autorizzato +rincari +vergognosi +tempo +crisi +ciao +amici +buona +giornata +volo +strasburgo +comincio +nuovo +libro +sinistra +como +tante +promesse +pochi +fatti +nuove +tasse +über +euro +immigration +und +föderalismus +von +herrn +renzi +nur +viel +rauch +stunde +verschwendet +was +verstanden +haben +ist +dass +herr +renzi +die +staatsanleihen +versteuern +wird +um +deutschland +und +bruxelles +noch +einen +gefallen +zu +tun +palazzago +valle +imagna +almeno +persone +serata +lega +tanti +ragazzi +costine +salamelle +strepitose +tanta +voglia +sognare +lavorare +comunità +militanti +foto +stupenda +banzai +esenzione +fiscale +alluvionati +terremotati +diventiamo +cattivi +paradossalmente +lega +nord +indipendenza +padania +lotta +euro +salverà +tutte +diversità +italia +bruxelles +vogliono +marmellata +indistinta +consumatori +senza +anima +senza +identità +tireremo +indietro +vinceremo +giusto +bastaeuro +basta +euro +sala +strapiena +dovuto +portare +amplificatori +esterno +tutta +gente +riuscita +entrare +governo +renzi +merkel +moneta +unica +criminale +comunità +arrende +proprio +oggi +riuscito +venire +milano +niente +paura +potete +seguire +diretta +streaming +www +bastaeuro +org +altra +europa +possibile +aspetto +stasera +riconosco +cena +leggera +pinzimonio +carote +finocchi +bene +onore +leghisti +terra +romagna +comunità +sogna +resiste +lavora +mentre +senato +votano +salva +roma +venezia +lega +presenta +referendum +indipendenza +marzo +centinaia +piazze +venete +aspettiamo +te +www +firmaindipendenza +org +alba +nuovo +giorno +vista +cielo +dedicata +lassù +qualcuno +ama +vediamo +deluderlo +sprecare +tempo +cambiare +mondo +insieme +può +insieme +artigiani +invaso +pacificamente +roma +meno +stato +meno +tasse +soprattutto +via +euro +massacra +imprese +lavoro +speranza +festival +spreco +stato +no +canone +rai +protesta +senatori +leghisti +boicotta +festival +milionari +sinistra +incontro +operai +invernizzi +caravaggio +posti +lavoro +rischio +altro +legge +elettorale +veri +problemi +lega +mentre +roma +giocano +poltrone +marò +india +giocano +vita +sabato +febbraio +milano +ore +aspetto +bastaeuro +tour +prof +claudio +borghi +verrà +distribuito +manuale +uscire +incubo +domande +risposte +attendo +numerosissimi +evento +facebook +https +www +facebook +com +events +fref +ts +corteo +spontaneo +no +euro +centro +firenze +centinaia +foto +migliaia +turisti +tanta +legaaaaaa +firenze +mentre +renzi +cerca +ministri +lega +riempie +auditorium +parlare +euro +lavoro +adesso +cena +tipica +emiliana +sotto +acqua +pavia +rialza +testa +altra +europa +possibile +sperare +può +aspetto +domenica +febbraio +firenze +anteprima +bastaeuro +tour +insieme +amico +prof +claudio +borghi +numero +zero +manuale +basta +euro +uscire +incubo +domande +risposte +solo +lega +lavora +anni +coraggio +tornare +padroni +casa +fuori +euro +lavoro +riparte +vince +letta +vince +renzi +perdono +italiani +pubblico +leghista +tonico +gabbia +pronti +cancellare +infame +riforma +fornero +pensioni +regolamentare +tassare +prostituzione +riservare +concorsi +pubblici +cittadinanza +italiana +abolire +prefetti +prefetture +cancellare +altroreati +opinione +depositato +stamattina +referendum +marzo +preparatevi +firmare +nord +sud +lega +opposizione +proposte +concrete +bicchierino +braulio +salute +piace +altri +consigli +pronto +battaglia +missoltino +como +bianco +sardegna +gemellaggio +spettacolo +indovinate +lago +ingredienti +genuini +giornata +bambini +oggi +pranzo +dietetico +artigiani +legno +piazza +aosta +spettacolo +passione +fatica +quintale +trippa +cottura +vista +storica +veillà +valdostana +domani +fiera +cantine +aperte +viva +tradizioni +buon +appetito +aosta +parlare +autonomia +europa +lavoro +nevicaaaaa +bruxelles +parlare +enrico +letta +ve +racconterò +diretta +domande +fare +metri +acqua +negozi +chiusi +stato +chiederà +tasse +gente +giusto +fino +giorni +fa +solo +acqua +lago +km +quadrati +sommerso +bruxelles +disastro +abbastanza +grave +niente +contributi +roba +matti +bomporto +modena +agricoltori +cittadini +alluvionati +dimenticati +soldi +stato +zero +soldi +europa +zero +maniche +indipendenza +catania +istituto +oncologico +mediterraneo +appena +presentato +medici +infermieri +volontari +progetto +parrucche +dedicato +donne +malate +tumore +nome +solidarietà +volontariato +autonomia +gemellaggio +nord +sicilia +pienone +giornalisti +parte +contrattacco +lega +rapina +fiscale +stato +ladro +adoro +mirto +sardegna +liquori +altre +preferenze +forza +ragazzi +grande +gruppo +padova +sfigati +centri +sociali +urlare +guarda +nessuno +santoro +fiorito +bella +coppia +incontro +marine +pen +patto +molto +positivo +altra +europa +possibile +europa +pacifica +ordinata +fondata +lavoro +culture +serva +euro +banche +europa +orgogliosa +altro +disposta +farsi +invadere +uomini +merci +comunità +cammino +diamo +fastidio +sicuramente +attaccheranno +sicuramente +paura +no +avanti +insieme +può +poco +collego +diretta +agorà +rai +visto +strasburgo +compra +copia +padania +me +oggi +seguo +calcio +vero +bimbi +anni +elezioni +vincere +cittadini +tribunali +tante +fiaccole +torino +difendere +libertà +protesta +leghista +casello +gallarate +perchè +perchè +sud +kilometri +autostrade +gratis +invece +nord +paga +paga +caro +milano +como +ritorno +euro +giusto +nuovi +adesivi +basta +euro +lasciate +nome +indirizzo +messaggio +privato +ve +spediremo +direttamente +casa +milano +ufficio +poste +italiane +decine +persone +coda +tanti +anziani +piedi +ritirare +raccomandate +spedite +ritirate +dopo +natale +ovviamente +solo +sportelli +aperti +tanta +bella +gente +spasso +italia +stato +ladro +fallito +disorganizzato +notte +serena +amici +soprattutto +orgoglio +passione +speranza +incertezza +pisolino +abbraccio +particolare +solo +anno +sfigato +spera +tornare +sorridere diff --git a/anno3/avrc/assignments/dataviz/dataset/2015/salvini_comuni.html b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_comuni.html new file mode 100644 index 0000000..0f7fd87 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2015/salvini_counter b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_counter new file mode 100644 index 0000000..29b76d2 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_counter @@ -0,0 +1 @@ +{"auguri": 2, "camerieri": 2, "cuochi": 2, "baristi": 1, "ristoratori": 2, "albergatori": 2, "tasse": 11, "basse": 1, "turismo": 1, "italia": 71, "volerebbe": 1, "oggi": 27, "ingrasso": 1, "chilo": 1, "mascarpone": 1, "buon": 10, "natale": 5, "amici": 38, "augurio": 1, "particolare": 3, "lavora": 4, "medici": 1, "infermieri": 2, "autisti": 1, "farmacisti": 1, "taxisti": 4, "forze": 8, "ordine": 9, "volontari": 2, "soccorso": 1, "dimenticato": 1, "qualcuno": 16, "messaggio": 4, "cuore": 7, "amico": 7, "tiziano": 2, "ultimi": 2, "artigiani": 2, "cesellatori": 1, "milano": 21, "davanti": 7, "bottega": 1, "alzaia": 1, "naviglio": 1, "grande": 13, "chiedo": 5, "sentite": 4, "ripresa": 1, "economica": 3, "parla": 8, "renzi": 128, "lascio": 2, "immaginare": 1, "risposta": 2, "economia": 4, "banche": 7, "lavoro": 43, "pensioni": 4, "immigrazione": 16, "lega": 68, "anno": 11, "riconquista": 1, "sovranit\u00e0": 1, "nazionale": 1, "mentre": 19, "londra": 1, "voteranno": 1, "uscire": 2, "unione": 4, "europea": 6, "contemporanea": 1, "altro": 81, "piazze": 2, "tutta": 7, "nord": 10, "sud": 11, "chiederemo": 1, "milioni": 19, "italiani": 86, "vogliono": 7, "rimanere": 3, "schiavi": 3, "europa": 39, "rialzare": 1, "testa": 4, "state": 4, "meno": 40, "minuti": 10, "sbugiardare": 2, "inutili": 1, "ipocriti": 5, "governano": 1, "pensano": 5, "disoccupati": 7, "piace": 17, "diffondi": 8, "rottamatore": 2, "vecchi": 1, "politici": 4, "anziani": 7, "risparmiatori": 2, "fine": 7, "misera": 1, "comunque": 2, "pur": 2, "minoranza": 2, "dato": 3, "battaglia": 8, "roma": 21, "strasburgo": 5, "prendetevi": 2, "ascoltare": 6, "storia": 16, "adriano": 3, "fa": 36, "banditi": 1, "rumeni": 1, "entrati": 3, "officina": 1, "massacrato": 2, "sprangate": 1, "padre": 2, "settantenne": 1, "rimasto": 1, "purtroppo": 7, "completamente": 1, "invalido": 1, "dopo": 13, "aggressione": 3, "bestie": 8, "identificate": 1, "magistrati": 1, "mai": 16, "arrestate": 1, "giustizia": 4, "schifo": 15, "cambieremo": 5, "famiglia": 6, "dice": 18, "strumentalizza": 1, "morte": 4, "persone": 29, "guardate": 9, "cosa": 17, "solo": 41, "mesi": 10, "cos\u00ed": 1, "definireste": 3, "fregati": 2, "rovinati": 1, "governo": 41, "protestano": 6, "firenze": 6, "nemmeno": 8, "coraggio": 9, "incontrarli": 1, "oltre": 8, "responsabile": 1, "disastro": 3, "vigliacco": 1, "cucciola": 1, "dovuto": 2, "fare": 29, "ammucchiata": 1, "insieme": 22, "sinistra": 27, "finta": 3, "destra": 3, "socialisti": 1, "repubblicani": 1, "banchieri": 1, "giornali": 4, "pen": 1, "ormai": 6, "riscossa": 1, "perbene": 17, "ferma": 3, "nessuno": 6, "potranno": 1, "rallentarla": 1, "bloccarla": 1, "grazie": 36, "marine": 2, "consigli": 1, "telefonici": 1, "terroristi": 10, "islamici": 8, "arrestati": 1, "conterranei\u201d": 1, "vuoi": 4, "vivere": 3, "meglio": 9, "vada": 3, "bolzano": 4, "pagano": 1, "casa": 58, "lavori": 1, "sociale": 2, "basta": 18, "fatto": 14, "mullah": 1, "kawa": 1, "pagato": 4, "affitto": 1, "soltanto": 2, "dopodich\u00e9": 1, "pensato": 2, "servizi": 2, "sociali": 19, "uguale": 2, "pu\u00f2": 20, "starsene": 1, "tranquillamente": 1, "tanto": 7, "paga": 9, "comune": 13, "passano": 1, "pure": 1, "mensile": 1, "moglie": 4, "figli": 13, "prendono": 1, "fessi": 4, "occorre": 9, "ricordino": 1, "qual": 1, "cultura": 3, "tradizione": 1, "senza": 22, "orgoglio": 5, "radici": 4, "rimarremo": 1, "indifesi": 1, "fronte": 4, "tentativi": 1, "sostituzione": 2, "popolo": 6, "corso": 10, "posizione": 1, "prudente": 1, "isis": 14, "iniziamo": 1, "chiamare": 1, "cose": 3, "nome": 3, "nulla": 4, "sperando": 1, "tagliagole": 9, "colpiscano": 1, "me": 15, "vigliaccheria": 1, "provvedimenti": 1, "aiutato": 1, "grandi": 8, "peccato": 3, "imprese": 6, "italiane": 4, "dipendenti": 2, "autonomi": 1, "lavorino": 1, "soli": 6, "lira": 2, "aiuto": 7, "calcio": 3, "sedere": 2, "italiana": 6, "convertita": 3, "islam": 9, "frequentatrice": 1, "moschea": 2, "centocelle": 1, "succedendo": 2, "francia": 6, "cercata": 1, "islamofobo": 1, "dico": 3, "sento": 1, "tranquillo": 1, "certa": 2, "gente": 38, "circolazione": 1, "folli": 4, "sanzioni": 5, "economiche": 2, "russia": 9, "chiudere": 3, "emilia": 4, "romagna": 2, "obama": 1, "via": 36, "subito": 12, "l\u00e0": 1, "barriere": 1, "ideologiche": 1, "roba": 3, "vecchia": 1, "impegniamoci": 1, "liberarci": 1, "ripartire": 4, "mauro": 2, "primo": 5, "barcone": 4, "signor": 8, "al\u00ec": 1, "bab\u00e0": 1, "sedicente": 1, "principe": 1, "islamico": 8, "toglie": 2, "soldati": 1, "aiuta": 2, "gi\u00f9": 7, "mani": 3, "reggimento": 1, "santa": 3, "barbara": 1, "ragazzi": 9, "garantiscono": 1, "sicurezza": 16, "dobbiamo": 6, "trattarle": 1, "cos\u00ec": 13, "donna": 2, "permesso": 2, "dire": 11, "no": 10, "\u201d": 5, "magari": 14, "bene": 20, "picchiarla": 1, "accoltellarla": 1, "accaduto": 1, "bergamo": 2, "ascolta": 11, "schifosa": 1, "follia": 3, "bestialit\u00e0": 1, "imam": 3, "berlino": 1, "finch\u00e9": 2, "moschee": 2, "metro": 1, "quadro": 1, "califfo": 1, "porte": 6, "libia": 2, "d\u00e0": 3, "miliardi": 10, "turchia": 6, "combatte": 2, "sovietica": 2, "abbattuta": 1, "renzalfano": 2, "brennero": 1, "ciascuno": 3, "entra": 4, "esce": 1, "pare": 5, "credo": 6, "muri": 1, "fili": 1, "spinati": 1, "controlli": 3, "necessario": 2, "sospendere": 2, "schengen": 3, "prevenire": 1, "curare": 2, "parlano": 2, "prova": 2, "fatti": 3, "votano": 1, "pd": 31, "stelle": 4, "condividi": 28, "girare": 15, "verit\u00e0": 7, "smaschera": 3, "chiacchieroni": 1, "diffondere": 1, "qualche": 20, "bacheca": 7, "buonista": 7, "procuratore": 1, "repubblica": 3, "lecce": 4, "tranquilla": 1, "entrare": 4, "conto": 4, "arrivare": 3, "aeroporto": 1, "confusi": 1, "fatelo": 2, "sapere": 2, "idea": 1, "arrivino": 1, "mescolati": 1, "profughi": 28, "sghignazza": 1, "incapace": 5, "pericoloso": 1, "viva": 4, "presepe": 3, "crozza": 1, "bisogno": 12, "dorme": 6, "istituti": 1, "scolastici": 2, "cadono": 1, "pezzi": 1, "segnalateci": 1, "disservizi": 1, "disagi": 1, "scuole": 3, "incubo": 1, "buona": 6, "scuola": 8, "vera": 2, "incomincia": 1, "professore": 1, "politica": 2, "faziosa": 1, "classe": 2, "segnalacelo": 1, "banda": 3, "incapaci": 4, "contesto": 1, "economico": 1, "internazionale": 1, "favorevolissimo": 1, "petrolio": 3, "basso": 1, "euro": 25, "minimi": 1, "bce": 1, "riempie": 2, "mercati": 1, "eppure": 1, "ostaggi": 1, "zero": 8, "virgola": 2, "futuro": 15, "situazione": 2, "liberare": 4, "legge": 23, "fornero": 24, "studi": 5, "settore": 5, "soprattutto": 7, "rivoluzione": 7, "fiscale": 6, "aliquota": 2, "unica": 3, "giusta": 1, "viene": 12, "forse": 5, "difendere": 15, "farci": 3, "adesso": 4, "carceri": 3, "diventate": 1, "luogo": 1, "coltiva": 1, "terrorismo": 7, "52mila": 1, "detenuti": 1, "gran": 5, "parte": 9, "stranieri": 5, "potrebbero": 2, "portare": 1, "conseguenze": 2, "imprevedibili": 1, "possiamo": 5, "contare": 1, "professionalit\u00e0": 1, "uomini": 3, "polizia": 7, "penitenziaria": 1, "occorrono": 1, "agenti": 2, "risorse": 2, "strutture": 1, "ripristiniamo": 1, "certezza": 4, "pena": 8, "mandiamo": 3, "scontare": 1, "galera": 4, "migliaia": 17, "delinquenti": 7, "manteniamo": 2, "facciamolo": 1, "prima": 19, "troppo": 9, "tardi": 3, "fate": 7, "ecco": 20, "diciamo": 4, "compra": 1, "riconosce": 3, "genocidio": 2, "milione": 4, "armeni": 2, "distrutto": 2, "chiese": 1, "sterminato": 1, "cristiani": 2, "occupa": 2, "quarant": 1, "anni": 29, "stato": 30, "membro": 1, "ue": 1, "cipro": 1, "giuridicamente": 1, "culto": 1, "chiesa": 1, "cattolica": 2, "ricevuto": 2, "soldi": 17, "concorrenza": 1, "sleale": 1, "minaccia": 3, "inviarci": 1, "cediamo": 1, "ricatti": 1, "sveglino": 1, "invece": 14, "sanzionare": 2, "dovrebbero": 1, "cancellare": 5, "vescovo": 1, "padova": 7, "paura": 7, "deve": 9, "averne": 1, "cantiamo": 1, "celebriamo": 1, "festeggiamo": 1, "difendiamo": 4, "tradizioni": 2, "orgogliosi": 2, "costruire": 2, "migliore": 3, "azione": 2, "giornalista": 5, "indagare": 1, "finge": 1, "parcheggiatrice": 1, "abusiva": 1, "mandata": 1, "ospedale": 6, "ruspa": 25, "insomma": 1, "rimesso": 1, "posto": 14, "ges\u00f9": 2, "bambino": 2, "ribadito": 1, "canti": 2, "danno": 4, "fastidio": 2, "bambini": 10, "insegnanti": 3, "genitori": 4, "meritano": 2, "messe": 1, "aule": 1, "blindate": 1, "sbarre": 1, "evitare": 5, "furti": 1, "vandalismi": 1, "pezzo": 2, "tetto": 2, "crollato": 1, "tempo": 11, "abbandonato": 1, "cortile": 1, "islamicamente": 1, "chiedere": 6, "poter": 5, "signore": 5, "servizio": 3, "alcuni": 5, "lecito": 1, "sottomettere": 1, "segregare": 1, "picchiare": 1, "idee": 4, "possibile": 3, "nessuna": 4, "integrazione": 3, "supermercato": 2, "limoni": 2, "clementine": 1, "cachi": 1, "peperoni": 1, "pomodori": 2, "arriva": 4, "estero": 3, "normale": 14, "bruxelles": 4, "batto": 1, "quasi": 4, "made": 5, "italy": 5, "negozio": 2, "compro": 1, "prodotti": 3, "fini": 2, "difende": 13, "immigrati": 23, "albergo": 13, "insulta": 1, "studente": 1, "contesta": 1, "traditore": 1, "luned\u00ec": 3, "mezzogiorno": 1, "rozzano": 1, "presepi": 1, "bimbi": 4, "portiamo": 1, "preside": 1, "ragione": 5, "essere": 25, "accoglienza": 9, "manca": 2, "difeso": 3, "risposto": 2, "fuoco": 2, "minacce": 2, "ringrazio": 2, "dio": 2, "armato": 3, "ammazzato": 2, "ascoltate": 19, "parole": 13, "piene": 1, "senso": 6, "rodolfo": 1, "corazzo": 1, "sera": 15, "incontrer\u00f2": 1, "rodano": 1, "vicino": 8, "pericolo": 2, "salvini": 19, "ricoverateloooo": 1, "clandestina": 4, "business": 4, "finanziare": 1, "ora": 18, "sole": 1, "ore": 22, "po": 6, "quand": 1, "premiata": 1, "ditta": 1, "alfano": 33, "prefetti": 1, "affittacamere": 1, "smetter\u00e0": 1, "riempire": 2, "presunti": 14, "comuni": 2, "volte": 4, "avvertire": 1, "sindaci": 5, "insulto": 2, "confronti": 2, "resort": 3, "piscina": 3, "sognano": 1, "guarda": 15, "condizioni": 1, "reazioni": 1, "prefetto": 1, "mario": 2, "morcone": 1, "gi\u00e0": 12, "candidato": 2, "sindaco": 6, "vendola": 1, "napoli": 4, "problema": 3, "rischino": 1, "vita": 12, "mezzo": 9, "strada": 4, "mese": 10, "giubbotto": 1, "antiproiettile": 1, "scaduto": 1, "inadeguato": 1, "pistola": 2, "dovrebbe": 6, "dimettere": 1, "appena": 2, "intervenuto": 1, "presidente": 6, "mattarella": 4, "detto": 8, "controllare": 6, "frontiere": 4, "europee": 3, "serve": 8, "certo": 3, "altri": 21, "cedo": 1, "cambio": 1, "putin": 3, "aspetto": 27, "rai": 5, "ballar\u00f2": 2, "duetto": 1, "corona": 1, "signora": 11, "albergatrice": 1, "guadagna": 2, "palate": 1, "ricordate": 1, "donne": 6, "escono": 1, "minigonna": 1, "tacchi": 1, "vorranno": 1, "farsi": 1, "violentare": 1, "taci": 2, "vergognati": 5, "giusto": 3, "uccidere": 3, "francesi": 1, "allah": 4, "s\u00ec": 6, "soggetti": 2, "espellerei": 1, "provincia": 15, "dirigenza": 1, "chiesto": 2, "suonare": 1, "adeste": 1, "fideles": 1, "cristiana": 1, "bresciano": 2, "vorrebbero": 2, "festeggiasse": 1, "lucia": 2, "stesso": 1, "motivo": 1, "appello": 1, "mamme": 4, "pap\u00e0": 6, "dirigenti": 1, "accogliere": 4, "nasce": 1, "dimentica": 1, "complice": 7, "matti": 5, "guadagnato": 2, "ospitando": 1, "clandestini": 41, "dormono": 3, "macchina": 5, "finti": 5, "vergogna": 11, "poverini": 1, "centri": 20, "volevano": 1, "bloccare": 7, "poverino": 1, "bravo": 2, "ragazzo": 2, "arrestato": 1, "diventa": 5, "arriver\u00e0": 2, "rappresentante": 1, "vuole": 10, "spaventare": 1, "decidere": 3, "rispondete": 1, "video": 20, "sgozzamenti": 1, "spinto": 1, "arruolarmi": 1, "preferito": 1, "morire": 5, "catturato": 1, "unico": 1, "onnipotente": 1, "quando": 12, "muori": 1, "paradiso": 1, "vergini": 1, "vengono": 9, "sgozzati": 1, "bruciati": 1, "vivi": 3, "miscredenti": 1, "destino": 1, "bambine": 1, "schiave": 1, "sessuali": 1, "oggetti": 3, "bisogna": 5, "godere": 1, "convertano": 1, "pacifinti": 1, "vigliacchi": 1, "preferiscono": 1, "mettere": 1, "sotto": 9, "sabbia": 1, "nuovo": 7, "medioevo": 1, "estirpato": 1, "terra": 7, "piangere": 2, "domani": 16, "controllo": 3, "quartieri": 2, "popolari": 2, "espellere": 2, "diritto": 7, "bastano": 2, "aprire": 3, "occhi": 2, "succede": 3, "citt\u00e0": 10, "diventato": 1, "maggioranza": 4, "mohamed": 2, "diffuso": 1, "nascono": 1, "sharia": 2, "prende": 3, "democrazia": 7, "momenti": 2, "tacere": 1, "colpa": 5, "parlare": 5, "obbligo": 1, "fonte": 1, "http": 8, "ilmessaggero": 1, "it": 7, "primopiano": 1, "occidentali": 1, "preparino": 1, "onda": 1, "documentario": 1, "choc": 1, "quartiere": 1, "shtml": 1, "sapete": 1, "tal": 1, "ahmed": 1, "tayyeb": 1, "invitato": 1, "boldrini": 16, "doveva": 1, "tenere": 1, "lezione": 2, "magistrale": 1, "camera": 1, "deputati": 1, "personaggio": 2, "teorizza": 1, "israele": 1, "debba": 1, "annientata": 1, "kamikaze": 1, "palestinesi": 1, "martiri": 2, "possano": 1, "picchiate": 1, "riusciti": 2, "inviti": 1, "soggetto": 1, "genere": 2, "devi": 2, "vergognare": 1, "minuto": 4, "telecamere": 1, "nascoste": 1, "capire": 5, "religione": 6, "altre": 3, "ancora": 17, "dubbi": 3, "confini": 12, "sbarchi": 4, "possono": 3, "barconi": 3, "fidate": 1, "sicuro": 3, "chiacchiere": 5, "inutile": 3, "servono": 6, "maniere": 5, "forti": 6, "fortuna": 2, "appoggerei": 1, "intervenendo": 1, "militarmente": 1, "toglierei": 1, "demenziali": 3, "alleata": 1, "guerra": 11, "terrore": 1, "mettendole": 1, "arabia": 1, "saudita": 1, "finanzia": 1, "attraverso": 1, "sano": 1, "mente": 1, "pensa": 5, "possa": 1, "dialogare": 1, "voglio": 2, "lasciare": 2, "schiavit\u00f9": 1, "utilissimo": 1, "incontro": 7, "ambasciatori": 1, "danimarca": 1, "svezia": 1, "norvegia": 1, "finlandia": 1, "altra": 5, "fischi": 1, "morti": 7, "parigi": 6, "grida": 1, "moderato": 1, "viaggiare": 1, "verso": 4, "avanti": 5, "indietro": 1, "crisi": 4, "rifugiati": 2, "rende": 1, "facile": 2, "societ\u00e0": 1, "impegnati": 1, "invaderci": 1, "quindi": 3, "arrivederci": 1, "epoca": 1, "aperti": 1, "articoli": 1, "entusiasti": 1, "risolvere": 3, "deficit": 1, "demografico": 1, "ricorda": 2, "qualcosa": 4, "prof": 1, "ferguson": 1, "docente": 2, "harvard": 1, "tesi": 1, "cresceranno": 1, "iononhopaura": 3, "sentito": 1, "volta": 6, "infedeli": 2, "spirito": 1, "emerge": 1, "interviste": 1, "allora": 6, "molto": 2, "charlie": 1, "hebdo": 1, "bravi": 3, "finito": 1, "vittime": 4, "dirsi": 1, "parigini": 1, "silenzio": 3, "verificare": 2, "presenti": 7, "annientare": 2, "stare": 4, "fermi": 1, "dichiarato": 3, "preoccupazione": 1, "mano": 6, "poi": 18, "dimettiti": 1, "alfanodimettiti": 3, "denuncio": 1, "ascoltando": 2, "sembra": 4, "percepire": 1, "dispiacere": 1, "attentati": 1, "avvenuti": 1, "consentirgli": 1, "caciara": 1, "guadagnare": 1, "voti": 3, "incredibilmente": 1, "vogliamo": 12, "crocifisso": 2, "scuole\u201d": 1, "spettano": 1, "medico": 1, "palestra": 1, "islamici\u201d": 1, "riprendiamoci": 2, "rispetta": 2, "generosit\u00e0": 1, "pretende": 1, "cambiare": 9, "tornare": 4, "paese": 12, "sostegno": 5, "militare": 2, "blocco": 3, "espulsione": 1, "verifica": 1, "tappeto": 2, "tutte": 9, "occupazioni": 1, "abusive": 1, "palermo": 4, "risponde": 1, "oriana": 2, "preghiera": 4, "innocenti": 1, "chiusura": 1, "realt\u00e0": 1, "islamiche": 1, "partenze": 5, "attaccare": 2, "siria": 2, "vanno": 9, "eliminati": 1, "forza": 2, "finita": 3, "raccontare": 1, "salvo": 1, "colleghi": 1, "michelin": 2, "perderanno": 1, "speranze": 2, "opposizione": 1, "posso": 1, "aiutare": 10, "lavoratori": 2, "batti": 1, "colpo": 1, "beffa": 1, "antagonisti": 1, "fermati": 2, "bologna": 29, "liberi": 4, "agente": 1, "denunciata": 1, "portata": 1, "processo": 2, "passa": 4, "goda": 1, "impunit\u00e0": 1, "servirebbe": 1, "arresto": 1, "obbligatorio": 1, "reati": 2, "commessi": 1, "durante": 1, "manifestazioni": 1, "incensurati": 1, "pensate": 3, "vicentini": 1, "stati": 3, "segnalati": 1, "prefettura": 1, "essersi": 2, "tolti": 2, "fascia": 1, "tricolore": 1, "funerale": 3, "ermes": 2, "mattielli": 1, "rigattiere": 1, "morto": 3, "infarto": 1, "condanna": 2, "aver": 5, "ferito": 1, "ladri": 3, "tratta": 3, "primi": 1, "cittadini": 24, "velo": 1, "astico": 1, "cogollo": 1, "cengio": 1, "laghi": 1, "albettone": 1, "scopri": 1, "truffa": 1, "latte": 3, "voce": 2, "spacca": 1, "schiena": 2, "giorni": 15, "produrlo": 1, "aiutiamo": 1, "allevatori": 3, "rancore": 1, "odio": 2, "passato": 1, "riuniamo": 1, "andrebbe": 1, "votare": 5, "recco": 1, "liguria": 5, "aula": 1, "rieti": 1, "reale": 2, "passeggeri": 2, "autobus": 2, "pagare": 10, "biglietto": 1, "reagiscono": 1, "insulti": 4, "vaffa": 3, "rispetto": 10, "regole": 7, "convivenza": 1, "civile": 2, "torna": 4, "mattina": 16, "pieve": 1, "emanuele": 4, "difesa": 8, "italiano": 16, "eccellenza": 1, "produzioni": 2, "mangino": 1, "signori": 1, "multinazionali": 3, "pensiamo": 1, "sbarca": 8, "dedicato": 2, "potuto": 1, "esserci": 4, "splendida": 5, "giornata": 4, "libert\u00e0": 9, "sempre": 14, "convinto": 3, "batteremo": 1, "torneremo": 2, "domenica": 31, "violenza": 5, "resistenza": 1, "poliziotti": 5, "bestemmie": 2, "sputi": 2, "lancia": 2, "petardi": 2, "volto": 3, "coperto": 3, "tentano": 3, "ammanettarlo": 1, "denunciare": 1, "naturalmente": 1, "libero": 2, "mandereste": 1, "lavorare": 8, "interessante": 1, "consumiamo": 2, "distruggere": 1, "piazza": 56, "arrender\u00f2": 1, "fino": 6, "torner\u00e0": 1, "bello": 3, "mondo": 12, "bastonate": 1, "porter\u00f2": 2, "invasione": 13, "liberiamoci": 56, "ripartiamo": 18, "silvio": 1, "berlusconi": 4, "giorgia": 1, "meloni": 1, "mare": 8, "invader\u00e0": 1, "pacificamente": 2, "maggiore": 2, "renzuccio": 12, "arriviamo": 15, "www": 34, "com": 24, "pronti": 3, "info": 16, "stasera": 13, "pizza": 1, "mosca": 2, "imbecilli": 1, "danneggiare": 1, "qua": 1, "potete": 2, "venire": 2, "tranquilli": 1, "abbatteremo": 1, "schifoso": 1, "protegge": 1, "processa": 2, "vana": 1, "pensiero": 2, "te": 8, "viaggio": 2, "danneggiando": 1, "sfiga": 1, "nati": 1, "tiene": 1, "fuori": 14, "giovani": 7, "rubando": 1, "intera": 1, "generazione": 2, "assicuro": 1, "schifezza": 1, "cancelleremo": 3, "rideremo": 1, "genio": 2, "dica": 3, "partita": 1, "iva": 3, "tasca": 2, "ogni": 12, "giorno": 11, "massacrati": 3, "ladro": 4, "pubblico": 11, "apprezzato": 1, "parassiti": 2, "carne": 2, "male": 7, "caff\u00e8": 1, "allarmismi": 1, "rotto": 1, "palle": 11, "costano": 1, "posti": 4, "cibo": 5, "buoni": 2, "compriamo": 1, "servi": 1, "costruzione": 1, "invadiamo": 1, "datemi": 1, "chiede": 4, "elemosina": 1, "vigili": 1, "multano": 1, "fianco": 4, "parcheggiatori": 1, "abusivi": 4, "agiscono": 1, "indisturbati": 1, "vedere": 11, "renziani": 5, "sig": 1, "librandi": 1, "porcheria": 1, "miniera": 1, "benvenuti": 3, "roccaforte": 1, "clan": 1, "calabrese": 1, "zingari": 1, "popolare": 2, "dentro": 2, "violini": 1, "rolex": 1, "vasche": 1, "idromassaggio": 1, "armi": 3, "cocaina": 1, "sobria": 1, "ferrari": 1, "aston": 1, "martin": 1, "auto": 6, "james": 1, "bond": 1, "ruspaaa": 1, "vercelli": 1, "protestavano": 1, "wi": 2, "fi": 2, "latina": 1, "mamma": 5, "ottantenni": 1, "invalidi": 3, "pensione": 4, "sfratto": 3, "arrivata": 1, "vendersi": 1, "fedi": 1, "nuziali": 1, "commuovere": 1, "incazzare": 6, "mollo": 1, "riprendiamo": 1, "monti": 5, "letta": 3, "aperto": 2, "20mila": 1, "indulti": 4, "svuotacarceri": 4, "spazio": 1, "costruisci": 1, "nuove": 2, "rom": 20, "conoscete": 1, "cittadino": 8, "attenzione": 3, "condividete": 13, "pagina": 3, "egiziano": 1, "poligamo": 1, "teneva": 1, "nascosta": 1, "piccoli": 4, "garage": 1, "insaputa": 1, "evviva": 1, "multiculturale": 1, "tanti": 21, "fermano": 2, "giro": 4, "prossima": 3, "legalit\u00e0": 1, "contrasto": 1, "abusivismo": 3, "strumenti": 1, "proteggersi": 1, "insicure": 1, "innovazione": 1, "tecnologica": 1, "tutelando": 1, "straniere": 2, "presento": 1, "assessore": 1, "urlante": 1, "occupi": 1, "problemi": 10, "urla": 1, "risposte": 2, "umilt\u00e0": 1, "accordo": 12, "gioielliere": 1, "roberto": 1, "zancan": 2, "stacchio": 2, "salvato": 1, "breve": 1, "intervista": 9, "vale": 2, "guardarla": 1, "condividerla": 1, "legittima": 5, "eccessiva": 1, "aggredito": 2, "fatta": 3, "certi": 3, "proprio": 6, "apolitici": 1, "apartitici": 1, "deciso": 4, "novembre": 5, "respirare": 1, "vorrei": 2, "pensare": 2, "civili": 1, "famiglie": 2, "priorit\u00e0": 5, "aggiornamento": 1, "nomenclatore": 1, "tariffario": 1, "miglioramento": 1, "sistema": 4, "indennizzi": 1, "illegittimit\u00e0": 1, "regolamento": 1, "isee": 1, "muove": 3, "dito": 3, "infame": 6, "votata": 1, "dimenticarsene": 1, "umilia": 2, "continuamente": 1, "propri": 2, "pensionati": 5, "lavorato": 2, "costruito": 2, "per\u00f2": 3, "pronto": 4, "cassa": 1, "odiano": 1, "cgil": 2, "coop": 1, "rosse": 3, "pci": 1, "pds": 1, "bersani": 3, "vieni": 3, "preferisco": 4, "pensionato": 3, "testimonia": 1, "innocenza": 1, "piuttosto": 1, "bel": 1, "molliamo": 2, "francesco": 5, "lasceremo": 2, "risolvono": 1, "astronomiche": 1, "interventi": 2, "concreti": 3, "limitare": 1, "pretendendo": 1, "gambizzano": 1, "benzinaio": 2, "giudice": 1, "lesioni": 1, "tornano": 1, "contrario": 1, "raddrizziamo": 1, "mareee": 1, "brucia": 1, "umano": 1, "crede": 1, "nessun": 3, "dialogo": 2, "troveremo": 1, "pianerottolo": 1, "penso": 2, "iniziato": 2, "omicidio": 2, "pietro": 1, "raccagni": 1, "scorso": 3, "notte": 7, "albanesi": 1, "agonia": 1, "ergastolo": 1, "buttino": 1, "chiave": 2, "garantire": 1, "concede": 1, "depenalizzazione": 1, "abbraccio": 10, "federica": 1, "ragazza": 3, "vendono": 1, "abusivamente": 1, "merce": 1, "contraffatta": 1, "commercianti": 3, "regolari": 1, "vedo": 4, "incontrarvi": 1, "tantissimi": 5, "carla": 1, "proprietaria": 1, "tabaccheria": 1, "vittima": 1, "varie": 2, "rapine": 1, "dedichiamo": 2, "vanvera": 1, "eccesso": 4, "vuol": 4, "avere": 3, "arma": 1, "puntata": 1, "vicenza": 5, "maschi": 1, "forma": 1, "lamentano": 2, "trattamento": 1, "dovevano": 1, "rispedirne": 1, "almeno": 7, "magnifici": 1, "accordi": 1, "cambiato": 1, "sbagli": 1, "torni": 2, "modo": 1, "giovane": 1, "fatima": 1, "piacere": 1, "bugiardo": 1, "scopre": 1, "sforzo": 2, "settecento": 1, "sbarcati": 1, "trecentomila": 1, "secondo": 11, "risolto": 1, "facebook": 5, "dovrei": 1, "accolto": 2, "tortellini": 1, "ripieno": 1, "ghisa": 1, "rispondereste": 1, "suggeritemi": 1, "spesa": 2, "canone": 1, "arrivato": 2, "causa": 1, "governi": 2, "pensi": 1, "vissuto": 1, "cancellazione": 1, "restituzione": 1, "rivalutazione": 1, "istat": 1, "adeguamento": 2, "assegni": 1, "familiari": 1, "schifa": 1, "dicendo": 1, "rappresenta": 1, "fenomenoooo": 1, "rappresenti": 1, "dite": 13, "tante": 5, "adesioni": 1, "tecnici": 1, "sanitari": 1, "punti": 1, "organici": 1, "rinnovo": 2, "contratto": 1, "svolgono": 1, "professioni": 1, "cartello": 1, "paul": 1, "reato": 3, "carabinieri": 5, "applausi": 4, "studio": 2, "canale": 2, "sinistro": 1, "arrabbier\u00e0": 1, "pochi": 5, "confesercenti": 1, "molti": 5, "cercano": 1, "andati": 1, "trovarlo": 1, "spende": 1, "trova": 3, "divisa": 3, "venisse": 1, "data": 1, "possibilit\u00e0": 1, "attenti": 3, "professioniste": 1, "borseggio": 1, "pisa": 4, "indovinate": 2, "zing": 2, "cio\u00e8": 2, "nomadi": 1, "minorenni": 1, "fermate": 1, "buonisti": 7, "diranno": 1, "bufala": 1, "selvaggiamente": 1, "picchiati": 1, "uccisi": 1, "subita": 1, "vado": 3, "bestia": 1, "fragili": 1, "numero": 1, "certamente": 1, "libereremo": 2, "andremo": 2, "assemblea": 1, "unac": 1, "vai": 6, "rischiare": 1, "istituzioni": 1, "indagano": 1, "riportiamo": 1, "tutela": 1, "indossa": 1, "idioti": 1, "basterebbe": 1, "dare": 7, "rubare": 3, "furto": 2, "stupro": 1, "psicologico": 1, "pieni": 1, "coglioni": 1, "pianto": 1, "troppi": 3, "tabaccai": 1, "gioiellieri": 1, "tassisti": 2, "palagonia": 1, "botte": 1, "violentati": 1, "punto": 3, "matrix": 2, "pensarla": 1, "benpensante": 1, "presidi": 2, "tribunali": 2, "mobilitiamoci": 2, "ingiusta": 2, "tribunale": 23, "porta": 8, "vittoria": 3, "torino": 7, "vittorio": 5, "ettore": 2, "gallo": 2, "tommaseo": 2, "treviso": 4, "verdi": 4, "rovigo": 5, "belluno": 3, "segato": 2, "verona": 4, "zappatore": 2, "genova": 5, "largo": 4, "xii": 2, "ottobre": 3, "trieste": 2, "foro": 2, "ulpiano": 2, "udine": 5, "vecchio": 3, "pordenone": 3, "viale": 4, "franco": 2, "martelli": 2, "gorizia": 2, "nazario": 2, "sauro": 2, "conchisidifende": 1, "voglia": 12, "gioved\u00ec": 2, "ieri": 9, "giovanni": 3, "floris": 2, "dimarted\u00ec": 1, "guardatela": 1, "leggo": 3, "commenti": 5, "vicini": 1, "indagato": 2, "volontario": 1, "entrato": 1, "iostoconfrancesco": 1, "loris": 1, "giorgio": 2, "vivono": 3, "baracca": 1, "mobili": 1, "presi": 2, "immondizia": 1, "acqua": 5, "luce": 2, "elettrica": 1, "invenzioni": 2, "condividerete": 1, "dir\u00e0": 1, "parlate": 1, "pancia": 1, "tiv\u00f9": 3, "nascosto": 1, "beccato": 1, "buffone": 2, "condivido": 1, "tratto": 1, "ilgiornale": 3, "spalti": 1, "urlano": 1, "html": 3, "milanisti": 1, "soffriremo": 1, "razzismo": 9, "regalano": 2, "alberghi": 5, "mille": 2, "difficolt\u00e0": 10, "poche": 1, "tutele": 1, "paghe": 1, "fame": 3, "riconoscenza": 2, "rischia": 3, "proteggerci": 1, "veri": 4, "occupano": 1, "adozioni": 1, "gay": 2, "cittadinanze": 1, "attaccano": 2, "regioni": 2, "governate": 1, "soliti": 5, "sinistri": 4, "svendono": 1, "cacceremo": 1, "poliziotto": 2, "carabiniere": 2, "interviene": 2, "proteggere": 2, "collega": 1, "tutelato": 1, "delinquente": 3, "protesta": 2, "pazienza": 3, "bettola": 1, "piacenza": 1, "alluvione": 1, "feriti": 2, "danni": 3, "regione": 2, "arrivano": 2, "aiuti": 2, "promessi": 1, "furia": 1, "impedire": 2, "residenti": 5, "dragare": 1, "fiumi": 1, "togliere": 4, "ghiaia": 1, "pulire": 1, "torrenti": 1, "boschi": 1, "natura": 1, "uomo": 4, "lasciamo": 3, "montagna": 5, "curata": 1, "anna": 1, "disoccupata": 1, "poco": 8, "niente": 4, "pretendere": 2, "negarli": 1, "diretta": 8, "quinta": 4, "colonna": 4, "rete": 3, "lavorando": 1, "adegua": 1, "leggi": 1, "altrimenti": 2, "spero": 2, "colossale": 1, "figura": 2, "fango": 1, "marino": 4, "avvicini": 1, "tanta": 9, "propria": 2, "comunit\u00e0": 2, "voto": 9, "sospesa": 1, "merita": 2, "archiviato": 1, "spalle": 1, "momento": 4, "indispensabile": 1, "prerequisito": 1, "accertamenti": 1, "fiscali": 1, "massacrando": 2, "produce": 1, "imprenditore": 1, "rompere": 2, "azienda": 1, "muratore": 1, "intanto": 5, "mantiene": 1, "figlio": 1, "cooperative": 2, "rivolto": 1, "impiegano": 1, "extracomunitari": 1, "giochini": 1, "verdini": 1, "corte": 2, "sembrano": 1, "schifosi": 1, "senzapalle": 1, "sola": 2, "combattendo": 1, "arrendi": 1, "favorisce": 1, "cresciamo": 1, "flat": 4, "tax": 4, "oppressione": 2, "equitalia": 2, "correre": 1, "passeggiare": 1, "dicono": 7, "ventimiglia": 3, "circondati": 1, "limiti": 1, "materna": 1, "rovereto": 2, "rimosso": 1, "giostrina": 1, "maialino": 1, "offendevano": 1, "schio": 1, "educava\u201d": 1, "musica": 2, "elementare": 2, "ladispoli": 1, "introdotto": 2, "settimanale": 1, "lingua": 1, "rumena": 1, "obbligatoria": 1, "debbano": 1, "sbaglio": 3, "aggrediscono": 1, "leghisti": 6, "raccolgono": 1, "firme": 5, "nonostante": 4, "firmano": 1, "zecche": 2, "castagne": 1, "vino": 2, "rosso": 1, "quarto": 3, "grado": 1, "sacrifici": 1, "voli": 1, "ministri": 2, "vergogno": 2, "risarciti": 1, "errore": 1, "reso": 2, "disabile": 2, "bimbo": 2, "ricevono": 1, "cartella": 1, "38mila": 1, "fermo": 2, "riforma": 3, "senato": 3, "occuparsi": 3, "angelo": 4, "ventenni": 2, "pronte": 1, "accuse": 1, "ius": 1, "cittadinanza": 2, "veloce": 1, "emergenze": 1, "chiamano": 1, "resto": 2, "pescara": 2, "filmata": 1, "reazione": 1, "lettura": 1, "beccati": 1, "truccare": 1, "dati": 2, "emissioni": 1, "cara": 2, "merkel": 3, "piedistallo": 1, "sfigati": 2, "rossi": 1, "ritrovano": 1, "gatti": 2, "sabato": 16, "pomeriggio": 3, "applaude": 1, "composto": 1, "cinquestelle": 1, "sconfiggere": 1, "fiorellini": 1, "sradicare": 1, "peste": 1, "rtl": 1, "vista": 2, "occhiata": 2, "volentieri": 4, "mafia": 1, "denunciavo": 1, "razzista": 3, "accorge": 1, "corriere": 2, "paola": 2, "beatrice": 1, "scuola\u201d": 2, "salvatore": 1, "perso": 5, "tenda": 1, "parcheggio": 1, "ciao": 4, "andiamo": 3, "altalena": 1, "fanculo": 2, "porcherie": 1, "grillocomerenzi": 1, "cena": 5, "ristorante": 1, "centinaia": 3, "tuffo": 1, "cannelloni": 1, "appetito": 1, "esodata": 1, "emiliana": 1, "sbugiarda": 1, "costituzione": 1, "diritti": 7, "blocca": 1, "parlamento": 3, "matrimoni": 1, "missioni": 1, "intercettazioni": 1, "interessano": 1, "trovano": 1, "buttati": 1, "mantenere": 2, "scappano": 2, "mangia": 4, "palazzo": 3, "inizia": 2, "derubati": 1, "dimenticati": 3, "smontiamo": 1, "mattone": 2, "spesi": 1, "germania": 1, "slovacchia": 1, "sospendono": 1, "austria": 3, "invia": 1, "esercito": 3, "presidiare": 1, "ungheria": 1, "alza": 1, "muro": 1, "persino": 2, "chiediamo": 1, "vorrebbe": 3, "iniziare": 1, "usare": 2, "forti\u201d": 1, "scafisti": 4, "succedere": 1, "svegliare": 1, "dormienti": 1, "parlato": 5, "seguiva": 1, "bimba": 1, "down": 1, "lasciata": 1, "compresi": 1, "disabili": 4, "lasciati": 2, "piedi": 3, "occupando": 1, "ministero": 2, "tempi": 1, "ascoltiamo": 1, "tina": 1, "terremotata": 1, "mirandola": 1, "modena": 1, "sopravvive": 2, "container": 2, "mette": 1, "dignit\u00e0": 2, "elio": 2, "giada": 2, "incatenato": 1, "esterno": 1, "calolziocorte": 2, "lecco": 1, "figlia": 1, "insegnante": 1, "rossonero": 1, "cittadella": 2, "dedico": 2, "saluzzo": 1, "arrivando": 3, "embargo": 1, "eliminare": 2, "intervenire": 1, "scappare": 2, "importare": 1, "nuovi": 2, "monsignor": 2, "maggiolini": 1, "metteva": 1, "guardia": 1, "confondere": 1, "arcivescovo": 1, "biffi": 1, "consigliava": 1, "privilegiare": 1, "territori": 1, "facilmente": 1, "assimilabile": 1, "scappa": 2, "veramente": 1, "respingere": 1, "aiutati\u201d": 1, "ossignur": 1, "rispondiamo": 1, "belle": 1, "fregano": 2, "ruba": 1, "sbarcano": 3, "quell": 2, "tiri": 1, "uccido": 1, "paolo": 2, "debbio": 2, "messaggi": 1, "scrivete": 1, "proporre": 1, "diverso": 1, "platea": 1, "cernobbio": 1, "raccogliendo": 1, "inaspettati": 1, "verme": 1, "esagerato": 1, "settimana": 1, "venerd\u00ec": 2, "monviso": 1, "preparare": 1, "lodi": 1, "megliobestiacherenzi": 1, "fenomeno": 3, "combina": 1, "ridare": 4, "chiama": 3, "trovi": 1, "merda": 3, "offrirsi": 1, "trattare": 1, "vive": 2, "prigioniero": 1, "casino": 3, "girano": 2, "nudi": 1, "sputano": 1, "scale": 1, "altroinvasione": 1, "arricchisce": 1, "pelle": 2, "arrivo": 2, "news": 3, "cronache": 2, "chieve": 1, "case": 5, "invendute": 1, "passaparola": 2, "profughi\u201d": 1, "andate": 6, "l\u00ec": 1, "passare": 1, "asilo": 3, "cacciamo": 1, "londata": 1, "pakistani": 1, "est": 1, "prefetture": 1, "collasso": 1, "proposte": 4, "risultati": 2, "gestire": 2, "razzisti": 5, "populisti": 3, "xenofobi": 1, "nazisti": 1, "fascisti": 2, "sciacalliiii\u201d": 1, "cacciare": 1, "riprendervi": 1, "premio": 3, "lavorareee": 1, "vince": 4, "europarlamentare": 1, "pina": 1, "picierno": 2, "copio": 1, "incollo": 1, "programma": 5, "prossimi": 3, "perduto": 2, "mercoledi": 1, "settembre": 4, "radio": 3, "cusano": 1, "campus": 1, "collegamento": 4, "telefonico": 1, "festa": 10, "ln": 4, "conselve": 1, "prato": 1, "comunale": 3, "beggiato": 1, "giovedi": 1, "viterbo": 1, "trasporto": 1, "rosa": 2, "venerdi": 1, "mineo": 1, "ct": 2, "cantu": 1, "cermenate": 1, "struttura": 2, "campo": 5, "solare": 1, "lc": 1, "dancing": 1, "sport": 1, "lavello": 1, "gasperi": 1, "corsa": 1, "matteo": 1, "salvini\u201d": 1, "buglio": 1, "pazzesco": 6, "conetta": 1, "venezia": 2, "inviato": 1, "abitante": 1, "sveglione": 1, "gioca": 1, "risiko": 1, "pseudo": 1, "guadagnano": 1, "imprenditori": 3, "mazzo": 1, "campa": 1, "chiuda": 1, "sgomberati": 1, "ospitati": 2, "clandestino": 3, "casaaa": 1, "sbaglia": 3, "riempirsi": 1, "bocca": 1, "parola": 3, "accoglienza\u201d": 1, "cassintegrati": 1, "minimo": 1, "alcun": 1, "penseremo": 1, "peggio": 2, "rompono": 1, "spettacolo": 6, "pinzolo": 2, "trentino": 3, "grazieee": 1, "traballa": 1, "benna": 1, "hotel": 12, "san": 4, "lorenzo": 1, "banale": 1, "trasforma": 2, "comizio": 3, "reggio": 1, "usa": 2, "oretta": 1, "tocca": 1, "traghetto": 1, "tirrenia": 1, "porto": 7, "torres": 1, "partenza": 1, "ritardata": 1, "attesa": 1, "salire": 1, "bordo": 1, "pullman": 1, "foto": 2, "sala": 8, "poltrone": 1, "riservata": 1, "dormiranno": 1, "materassini": 1, "galantino": 1, "seria": 1, "splendido": 2, "programmi": 1, "ferragosto": 1, "zona": 1, "pontedilegno": 1, "tg1": 1, "suggerimenti": 1, "richieste": 1, "cosiddetti": 2, "smartphone": 1, "ultima": 2, "skype": 1, "tv": 8, "camere": 1, "culo": 1, "nooooo": 1, "quei": 3, "sicilia": 6, "meriterebbe": 2, "crocetta": 3, "vero": 1, "terremotati": 3, "emiliani": 2, "roulotte": 1, "comodi": 1, "populista": 1, "toscana": 4, "villa": 4, "lusso": 2, "umiliare": 1, "finendo": 1, "egoisticamente": 1, "potrei": 1, "preso": 1, "veneto": 8, "vinto": 3, "lombardia": 1, "chissenefrega": 1, "ragionamento": 1, "intelligente": 1, "riparte": 2, "saviano": 1, "andare": 1, "squallidi": 1, "slogan": 1, "approfondire": 2, "invito": 2, "prossimo": 1, "orgoglioso": 4, "onorevole": 2, "renziana": 1, "sbugiardata": 1, "preferisce": 2, "invasi": 1, "creano": 1, "situazioni": 2, "casse": 1, "amministrato": 1, "obiettivo": 1, "visto": 3, "migranti": 2, "transito": 1, "transitare": 1, "donazione": 2, "plasma": 1, "avis": 1, "andr\u00e0": 1, "sangue": 2, "so": 1, "aiuter\u00f2": 2, "polemica": 1, "delirio": 1, "kompagno": 1, "tolleranza": 1, "ridicolo": 1, "prenda": 1, "discoteche": 1, "mercedes": 1, "comprate": 1, "mercato": 3, "vendere": 1, "vestiti": 2, "paghiamo": 1, "bollette": 2, "ufficialmente": 1, "poveri": 2, "esagero": 1, "disperazione": 1, "muore": 1, "mantenuti": 1, "rifiutano": 3, "spaghetti": 1, "pomodoro": 1, "piacciono": 2, "lomazzo": 1, "como": 2, "marea": 3, "finale": 3, "cervia": 1, "super": 1, "luca": 8, "zaia": 8, "pescatori": 2, "vongole": 2, "cambieranno": 2, "prevedono": 1, "taglia": 1, "minima": 1, "millimetri": 1, "vongola": 1, "rischiano": 1, "ferme": 1, "barche": 1, "saltare": 1, "trentina": 1, "bloccano": 1, "strade": 5, "este": 1, "caldo": 3, "devono": 4, "famosi": 1, "climatici": 1, "inviamo": 2, "gianni": 1, "riotta": 1, "castello": 1, "sforzesco": 1, "promette": 1, "tassa": 2, "messo": 3, "imu": 3, "terreni": 2, "agricoli": 2, "abbassare": 1, "irpef": 1, "ires": 1, "aumentato": 1, "ennesima": 1, "renzata": 1, "chiacchierone": 1, "difendono": 3, "condividiamo": 2, "rassegna": 1, "combattere": 1, "formaggio": 1, "piastra": 1, "presente": 1, "fin": 1, "concittadini": 1, "rimane": 1, "settecentesca": 1, "nazionali": 1, "tragedia": 1, "tornado": 2, "cazzago": 1, "pianiga": 1, "sfondo": 1, "stadio": 1, "ex": 1, "quel": 3, "resta": 1, "decine": 2, "alberi": 3, "secolari": 1, "sradicati": 1, "lanciati": 1, "vento": 1, "proiettili": 1, "kyenge": 1, "spese": 5, "iphone": 1, "trattati": 3, "graditi": 1, "ospiti": 1, "scontro": 1, "veneti": 1, "torno": 1, "visiter\u00f2": 1, "luoghi": 1, "devastati": 1, "sostenere": 2, "oppeano": 1, "vr": 1, "bellissima": 6, "strapiena": 8, "novara": 1, "stancati": 1, "create": 1, "tardo": 1, "quinto": 1, "persona": 1, "solidariet\u00e0": 3, "cancro": 2, "onlus": 2, "concreta": 1, "malati": 1, "clicca": 1, "seguente": 1, "link": 1, "metti": 2, "https": 2, "pages": 1, "rapporti": 1, "grazia": 1, "antonio": 1, "monella": 1, "federalismo": 1, "aziende": 3, "chiudono": 1, "portato": 2, "voci": 1, "agriturismi": 1, "ostelli": 1, "mezza": 1, "presa": 1, "soglia": 1, "povert\u00e0": 2, "razzisti\u201d": 1, "frega": 6, "buond\u00ec": 1, "vola": 1, "leggendo": 1, "romanzo": 1, "ottimo": 1, "vitali": 1, "incontri": 1, "bergamaschi": 1, "bonate": 1, "sopra": 1, "treviglio": 1, "viareggio": 1, "sorpresa": 1, "ciclista": 1, "alessandro": 1, "petacchi": 1, "regalato": 1, "maglia": 1, "verde": 1, "vinta": 1, "tour": 1, "france": 1, "corre": 1, "fondata": 1, "interesse": 1, "piccolo": 1, "brutto": 1, "competitivi": 1, "centro": 4, "commerciale": 1, "catene": 1, "uccidendo": 1, "impresa": 1, "saper": 1, "dormire": 1, "svegliaaaa": 1, "gruppi": 1, "residence": 1, "eraclea": 1, "cittadina": 2, "turistica": 1, "litorale": 1, "sassate": 1, "rabbia": 1, "turisti": 2, "impauriti": 1, "frattempo": 2, "operatori": 1, "turistici": 1, "esasperati": 1, "denunciano": 1, "gravi": 1, "perdite": 1, "attivit\u00e0": 2, "continua": 1, "affari": 1, "onesti": 1, "pace": 2, "incontrato": 2, "ferrara": 2, "piangendo": 1, "marito": 1, "disoccupato": 1, "perdere": 2, "riesce": 2, "rate": 1, "mutuo": 1, "agriturismo": 2, "dita": 1, "emergenza": 1, "pienone": 1, "bulgarograsso": 1, "cresce": 1, "renzino": 1, "arrivandooooo": 4, "inps": 1, "certifica": 1, "permettersi": 1, "alimentazione": 1, "adeguata": 1, "riescono": 2, "impreviste": 1, "trovare": 1, "quartesana": 1, "pignara": 1, "intervento": 2, "convegno": 2, "davano": 1, "matti\u201d": 1, "dicevamo": 1, "euro\u201d": 1, "ricoverare": 1, "moneta": 4, "disoccupazione": 2, "rassegnarsi": 1, "false": 1, "consentito": 1, "elezione": 1, "chiamparino": 1, "giudici": 1, "tar": 1, "riconoscano": 1, "piemontesi": 1, "scegliere": 1, "liberamente": 1, "credere": 3, "firma": 3, "falsa": 2, "saluto\u201d": 1, "chiaro": 2, "moriremo": 1, "n\u00e9": 1, "dialoghiamo": 2, "fanatismo": 1, "fermarsi": 1, "riscrivere": 1, "popoli": 2, "cagnolino": 1, "tirare": 1, "padania": 1, "castelcovati": 1, "brescia": 1, "serata": 2, "sogni": 1, "trovate": 1, "economie": 1, "diverse": 1, "funziona": 3, "esperimento": 1, "genetico": 1, "fallito": 1, "cambiano": 1, "imparare": 2, "fisco": 1, "assassino": 1, "vincoli": 1, "europei": 2, "sbagliata": 1, "spettacolare": 5, "bagno": 1, "folla": 2, "adro": 1, "franciacorta": 1, "jihadista": 1, "firmare": 11, "entro": 2, "luglio": 2, "tassare": 4, "regolamentare": 4, "prostituzione": 7, "liberando": 2, "civilt\u00e0": 7, "vantaggi": 3, "potremo": 1, "combatterla": 1, "partecipazione": 1, "pasti": 1, "gratis": 6, "saluti": 1, "stanchi": 2, "calabria": 1, "amicizia": 2, "impegno": 2, "tornarci": 1, "presto": 1, "stazione": 1, "crotone": 1, "conoscere": 1, "studiare": 1, "professori": 1, "economisti": 1, "studiosi": 1, "puoi": 2, "iscriverti": 1, "scuoladiformazionepolitica": 1, "feltri": 2, "stipendio": 2, "smettano": 1, "invadere": 2, "crocifissi": 1, "decapitati": 1, "arsi": 1, "giustiziati": 1, "spiaggia": 1, "colpi": 1, "mitra": 1, "difendersi": 1, "disposizione": 2, "controllate": 1, "radiografate": 1, "gestisce": 1, "conduce": 1, "finanziate": 1, "regimi": 1, "fanatici": 1, "chiuse": 4, "esportiamo": 1, "laureati": 1, "importiamo": 1, "disperati": 1, "pianificata": 1, "brutti": 1, "estremisti": 1, "fallaci": 1, "tortura": 3, "montarci": 1, "piantati": 1, "fermarci": 2, "duro": 2, "vincere": 3, "maledizione": 1, "svenduto": 1, "cosiddetto": 1, "idiozia": 1, "espone": 1, "ricatto": 1, "ostacolare": 1, "lamenta": 1, "jonata": 1, "pregio": 1, "martinalli": 1, "cantato": 1, "pontida": 2, "ricordo": 1, "incidente": 1, "stradale": 1, "combattuto": 1, "dimenticheremo": 1, "capaccio": 1, "salerno": 1, "qualit\u00e0": 2, "mangiano": 3, "internet": 2, "vadano": 4, "diamo": 3, "fondi": 1, "stretti": 1, "patto": 1, "molleremo": 1, "ruspe": 2, "magliette": 1, "esaurite": 1, "wifi": 2, "livorno": 2, "ospitate": 1, "sassari": 2, "isolato": 2, "guerre\u201d": 1, "rispedire": 1, "lontano": 1, "schizzinosi": 1, "interessa": 2, "bianco": 1, "nero": 1, "milanese": 1, "giapponese": 1, "politico": 2, "dovere": 2, "incredibile": 5, "doriano": 1, "sacco": 3, "pelo": 1, "stop": 3, "riaprendo": 1, "combattila": 1, "firmato": 1, "melzo": 1, "entusiasmo": 1, "militanti": 1, "rendendo": 1, "possibili": 1, "vittorie": 1, "impensabili": 1, "ballottaggi": 1, "stragrande": 1, "richiedenti": 1, "ottiene": 1, "contraria": 2, "chiamiamo": 1, "condivide": 3, "doveri": 4, "comprano": 1, "affittano": 1, "spesso": 1, "corrente": 1, "triplo": 1, "scabbia": 1, "bella": 10, "squadra": 2, "sordello": 1, "mantova": 1, "vota": 8, "lamenti": 1, "strumento": 1, "costringe": 1, "dichiarare": 1, "controllarti": 1, "calzini": 1, "armadio": 1, "cancelliamo": 1, "cologno": 1, "monzese": 1, "cinquant": 1, "manda": 2, "ministro": 4, "interno": 2, "manifesta": 2, "totale": 1, "incapacit\u00e0": 1, "copre": 1, "giugno": 2, "referendum": 7, "contribuire": 2, "percorso": 1, "rivedere": 1, "efficace": 1, "volere": 1, "potere": 1, "tantissima": 1, "corsico": 1, "mandare": 2, "disastri": 1, "ventina": 2, "contestatori": 3, "urlavano": 2, "segrate": 1, "stupenda": 5, "velocemente": 1, "schifani": 2, "centrodestra": 1, "sconfitta": 1, "integralista": 1, "estremista": 1, "sfascio": 1, "povero": 1, "zerovirgola": 1, "scafista": 1, "lonigo": 1, "castelfranco": 1, "combattete": 1, "date": 1, "500mila": 1, "toglieremo": 1, "vieniafirmare": 4, "org": 8, "chiare": 1, "coraggiose": 1, "proposta": 1, "paesi": 3, "costruendo": 1, "progetto": 3, "alternativo": 2, "confronto": 3, "scelte": 1, "cambier\u00e0": 2, "dialogato": 1, "militante": 1, "potr\u00e0": 1, "domanda": 2, "televisiva": 1, "chiederanno": 1, "spaventa": 1, "differenza": 1, "comando": 1, "leggete": 1, "legger\u00f2": 1, "quotidiano": 1, "successo": 1, "ilfattoquotidiano": 1, "saronno": 2, "nuova": 4, "base": 1, "terroni": 1, "martinengo": 1, "arrivandooooooo": 1, "serena": 5, "ringraziamento": 1, "tapiro": 1, "stata": 1, "esperienza": 1, "volete": 1, "aiutarci": 1, "realizzare": 1, "abrogare": 1, "merlin": 1, "thiene": 2, "spariti": 2, "arqu\u00e0": 2, "polesine": 2, "ostello": 1, "canalbianco": 1, "ah": 1, "relax": 2, "vitto": 2, "alloggio": 2, "garantito": 1, "tirano": 1, "cambiarla": 2, "ciclisti": 1, "elezioni": 3, "regionali": 1, "puglia": 4, "isole": 2, "abruzzo": 2, "partecipa": 1, "dueeeee": 1, "orvieto": 1, "piena": 5, "vedeva": 1, "auguro": 1, "umbria": 2, "torre": 1, "mosto": 1, "ve": 3, "dolo": 1, "la7": 3, "aria": 2, "tira": 1, "organizzato": 1, "ugl": 1, "presso": 2, "fornace": 1, "carotta": 1, "carrare": 1, "ro": 2, "ii": 1, "chilesotti": 1, "finire": 1, "dante": 1, "collego": 1, "mentana": 1, "bersaglio": 1, "mobile": 1, "vicina": 1, "preferite": 1, "suite": 1, "matrimoniale": 1, "doppia": 1, "uso": 1, "singola": 1, "capannone": 3, "orrori": 1, "scelta": 1, "pulizia": 1, "orgogliosa": 1, "pacifica": 2, "arezzo": 2, "neanche": 1, "discoteca": 1, "fermiamo": 5, "concesso": 1, "pausa": 1, "poesia": 1, "arte": 1, "film": 1, "fabrizio": 1, "andr\u00e9": 1, "direzione": 1, "ostinata": 1, "diffondete": 7, "paragona": 1, "emigravano": 1, "cerca": 1, "nonni": 2, "miniere": 1, "emozionante": 2, "punta": 1, "catania": 2, "saluto": 1, "angelino": 2, "andrea": 1, "scanzi": 1, "stravinco": 1, "monologante": 1, "chiss\u00e0": 2, "convincerlo": 1, "coniglio": 1, "confrontarsi": 1, "ch\u00e9": 1, "esodati": 2, "messi": 1, "splendide": 1, "cercato": 1, "lanciando": 1, "bombe": 2, "carta": 2, "bottiglie": 1, "ovviamente": 5, "savona": 2, "potevano": 2, "mancare": 2, "anti": 5, "bla": 3, "liberarsi": 1, "burlando": 1, "presenza": 1, "orlando": 2, "valenza": 1, "prender\u00e0": 1, "sede": 6, "canile": 2, "devastato": 1, "dia": 1, "sgomberare": 2, "campi": 5, "spiegate": 1, "ticket": 1, "cure": 1, "scavalcando": 1, "fila": 1, "stufato": 1, "sentire": 1, "regolare": 1, "germagnano": 1, "villette": 1, "gentilmente": 1, "costruite": 1, "distrutte": 1, "ricostruite": 1, "metri": 1, "enpa": 1, "allontanare": 1, "cani": 1, "genovesi": 1, "smascherato": 1, "capitooo": 1, "terni": 1, "fatela": 1, "web": 1, "gioia": 1, "emozione": 1, "responsabilit\u00e0": 1, "onest\u00e0": 1, "davvero": 1, "troverebbe": 1, "abbattiamo": 1, "promesso": 2, "tornato": 1, "house": 2, "recanati": 2, "appartamenti": 2, "occupati": 1, "spacciatori": 1, "truffatori": 1, "decina": 1, "inquilini": 1, "soluzione": 2, "riportare": 1, "controllano": 1, "piano": 2, "appartamento": 2, "regola": 2, "rispediti": 1, "aereo": 1, "mestre": 3, "annunziata": 1, "incontrate": 2, "stavolta": 1, "uniti": 1, "jesolo": 1, "teresa": 1, "commosso": 1, "parecchio": 1, "ribaltiamo": 2, "salvata": 1, "maggio": 11, "appuntamento": 1, "conferma": 1, "comunali": 1, "occupanti": 1, "ferretto": 1, "straniero": 1, "fiume": 1, "piave": 1, "nervesa": 1, "sanno": 1, "difenderemo": 1, "candidata": 1, "accoglierli": 1, "bretagna": 1, "spagna": 1, "respingono": 1, "feltre": 1, "raddoppio": 1, "pellet": 1, "riscaldamento": 1, "ospedali": 1, "moretti": 1, "ottima": 1, "birra": 1, "espelle": 1, "aperte": 1, "terremoto": 1, "pagando": 1, "colazione": 1, "pranzo": 1, "sky": 5, "televotare": 1, "scaricando": 1, "app": 1, "gratuita": 1, "skytg24": 1, "telefonino": 1, "abbonati": 1, "telecomando": 1, "visibile": 1, "canali": 1, "digitale": 1, "terrestre": 1, "oppure": 1, "grazieeeeee": 1, "scelgozaia": 1, "rossa": 1, "svegli": 1, "inizi": 1, "regno": 1, "unito": 1, "tunisino": 1, "presunto": 1, "profugo": 1, "sputtanato": 1, "balletto": 1, "telecamera": 1, "prenderci": 1, "ruspaaaaaaa": 1, "ridicolooooooooooo": 1, "monte": 1, "paschi": 1, "siena": 1, "intascati": 1, "uova": 4, "regala": 3, "rubati": 2, "restituire": 2, "simpatico": 1, "bonus": 1, "rimasti": 1, "ricorso": 1, "sciagurata": 1, "fuorilegge": 1, "pago": 1, "40mila": 1, "uguali": 2, "mila": 1, "gazebo": 3, "weekend": 1, "raccolta": 2, "prosegue": 1, "perdete": 1, "dar\u00e0": 1, "liberiamo": 1, "coda": 1, "riaprire": 2, "fenomeni": 1, "impedirci": 2, "balordi": 3, "aperitivo": 1, "marina": 2, "pietrasanta": 1, "fumogeni": 4, "massa": 1, "scesa": 1, "ritrovi": 1, "violenti": 5, "tg": 2, "affollata": 1, "fivizzano": 1, "lunigiana": 1, "gualdo": 1, "tadino": 1, "commerciante": 1, "vicentino": 2, "smonta": 1, "umbri": 1, "perugia": 1, "bacio": 1, "dritta": 1, "incontra": 1, "eccoli": 1, "eroi": 1, "lanciatori": 3, "accendini": 1, "braccio": 1, "provato": 1, "senigallia": 1, "lancio": 2, "colpito": 1, "taglio": 1, "collo": 1, "vede": 1, "immagini": 1, "spaventati": 1, "fermare": 3, "capito": 1, "fantastica": 1, "urlatori": 1, "volontariato": 1, "evvai": 1, "ascoli": 1, "liceo": 2, "bigiato": 1, "ascoltarmi": 1, "villabate": 2, "frutta": 1, "verdura": 1, "dirgli": 1, "chieda": 1, "scusa": 2, "restituisca": 1, "agrigento": 2, "votando": 1, "mandano": 1, "solito": 1, "ritornello": 1, "vediamo": 1, "asili": 1, "nido": 1, "gratuiti": 1, "torneranno": 1, "campano": 1, "tesoro": 1, "vicenda": 1, "troviamo": 1, "teppisti": 1, "organizzati": 1, "capace": 1, "permetta": 1, "manifestare": 1, "foggia": 2, "studenti": 1, "venirmi": 1, "giustificati": 1, "bari": 2, "sanit\u00e0": 1, "pugliese": 1, "agricoltura": 1, "massacrata": 1, "lascia": 1, "rappresentanti": 1, "operai": 2, "natuzzi": 1, "eccezionale": 1, "salento": 1, "stancato": 1, "mercoled\u00ec": 2, "passando": 1, "conferenza": 3, "stampa": 3, "grand": 1, "congressi": 1, "romanazzi": 1, "carducci": 1, "giuseppe": 1, "capruzzi": 1, "presentazione": 1, "candidati": 1, "andria": 1, "cristal": 1, "palace": 1, "cicolella": 1, "xxiv": 1, "teatro": 1, "brancaccio": 1, "merulana": 1, "marted\u00ec": 2, "segreteria": 1, "regionale": 1, "orto": 1, "n": 1, "pedara": 1, "gela": 1, "cl": 1, "marsala": 1, "pa": 1, "trasmissione": 1, "canale5": 1, "tornate": 1, "casaaaaa": 1, "gad": 1, "lerner": 1, "attivo": 1, "tesseramento": 1, "ufficiale": 2, "sito": 1, "noiconsalvini": 1, "iscriviti": 1, "partecipato": 1, "fase": 1, "censimento": 1, "pre": 1, "adesione": 1, "sicuri": 1, "coccola\u201d": 1, "molotov": 1, "ritirare": 1, "carica": 1, "senatore": 1, "campare": 1, "urlanti": 1, "parlamentare": 3, "ringrazia": 2, "ala": 1, "trento": 2, "matteotti": 1, "ripulire": 1, "avanza": 1, "doppio": 1, "pulita": 1, "scoperto": 1, "lezioni": 1, "educazione": 1, "scala": 2, "pisapia": 3, "milanesi": 2, "protettore": 1, "sbirri": 1, "cazzo": 1, "sesso": 1, "selvaggio": 1, "cella": 1, "stomaci": 1, "guardare": 1, "condividere": 1, "rischio": 2, "imbecille": 1, "dareste": 1, "montecatini": 1, "terme": 1, "stancarsi": 1, "vivaisti": 1, "pistoia": 1, "esportano": 1, "contributo": 1, "perseguitati": 1, "periferia": 3, "bastaaa": 1, "incontrata": 1, "migrante": 1, "operazione": 1, "nostrum": 1, "ricoveratelaaaa": 1, "juncker": 2, "dovremmo": 1, "miliardo": 1, "africani": 2, "immigrato": 2, "italiani\u201d": 1, "ospitarne": 1, "accoglier\u00e0": 1, "ennesimo": 1, "ipocrita": 1, "dibattito": 1, "commissione": 2, "entri": 1, "finestra": 1, "applaudito": 1, "ricoveratelo": 1, "apra": 1, "leghista": 1, "scrittrice": 1, "sveva": 1, "casati": 1, "modignani": 1, "chiarezza": 1, "buonsenso": 1, "ipocrisia": 2, "frego": 1, "sms": 1, "buonasera": 1, "proprietario": 1, "occupato": 1, "riesco": 1, "liberarlo": 1, "denunce": 1, "compenso": 1, "pagamento": 1, "andr\u00f2": 1, "visitare": 1, "prestissimo": 1, "compagni": 4, "noooooooo": 1, "macerata": 1, "poca": 1, "distanza": 1, "perditempo": 1, "lanciare": 1, "solite": 1, "tirino": 1, "schiaffi": 1, "educativi": 1, "spaccio": 2, "inferno": 1, "manifestanti": 1, "bloccato": 2, "altroingresso": 1, "bannato": 1, "scritto": 1, "sinceri": 3, "democratici": 3, "vantarsi": 1, "pubblicamente": 1, "ancona": 2, "rischiando": 1, "colpire": 1, "tace": 1, "lanciato": 1, "arance": 1, "nooooooooo": 1, "marche": 1, "hobby": 1, "baby": 1, "ladre": 1, "borseggi": 1, "risate": 1, "mattino": 1, "scomode": 1, "santoro": 1, "completo": 1, "x2nnv4i": 1, "banca": 3, "vescovone": 2, "cecina": 1, "eccezzzzzionale": 1, "kompagni": 1, "onu": 1, "grosseto": 1, "sprechi": 1, "ruberie": 1, "tantisssssima": 1, "travagliato": 1, "divulgate": 3, "gestione": 1, "renzi\u201d": 1, "sconti": 3, "depenalizzazioni": 1, "certe": 1, "buttare": 1, "navale": 1, "smetterla": 1, "arricchire": 1, "partono": 1, "muoiono": 1, "generose": 1, "accoglienti": 1, "rispetti": 1, "mietitrebbie": 1, "abbasso": 1, "inaugurazione": 2, "villorba": 1, "18enni": 1, "sbandati": 1, "differenziata": 1, "mega": 1, "barbuta": 1, "preavviso": 1, "allestire": 1, "africa": 2, "identificazione": 1, "finanziano": 1, "mafie": 1, "elettorale": 2, "blocchiamo": 1, "spendere": 1, "destinati": 1, "bastoni": 1, "spranghe": 1, "papa": 1, "turco": 1, "secolo": 1, "rifiuta": 1, "riconoscere": 1, "integrare": 1, "vigore": 1, "batte": 1, "gas": 1, "pagate": 1, "stamattina": 1, "giambellino": 1, "periferie": 1, "abbandonate": 1, "abita": 1, "scandalizza": 1, "benvenuto": 2, "integra": 1, "semafori": 1, "cofani": 1, "macchine": 1, "rompendo": 1, "mandato": 1, "twitter": 1, "haragionesalvini": 1, "cantina": 2, "chiedoasilo": 4, "esistono": 1, "compri": 1, "affitti": 1, "corrotti": 2, "renziane": 1, "semplice": 1, "valore": 1, "arrendiamoci": 1, "fincantieri": 1, "sestri": 1, "levante": 1, "luna": 1, "arrende": 1, "ama": 1, "andato": 1, "racconta": 1, "supercazzata": 1, "ridotte": 1, "aprile": 1, "vari": 2, "cominceranno": 1, "elenco": 1, "esibisce": 1, "oggetto": 1, "quote": 1, "coinvolgiamo": 1, "concretamente": 1, "carcere": 1, "condotta": 1, "corruzione": 1, "ucraina": 1, "spoleto": 1, "speranza": 2, "progetti": 1, "accesso": 1, "grate": 1, "ferro": 1, "attacchi": 1, "maledetti": 1, "moncalieri": 1, "prover\u00e0": 1, "strappare": 1, "parolaia": 1, "vent": 1, "beppe": 1, "furino": 1, "capitano": 1, "juve": 1, "grintoso": 1, "coraggioso": 1, "etruria": 1, "on": 1, "ginefra": 1, "denunciarmi": 1, "rocco": 1, "buttiglione": 1, "poveretti": 1, "chaouki": 2, "sua\u201d": 1, "lasagne": 1, "abbastanza": 1, "buone": 1, "vendemmiano": 1, "imbottigliano": 1, "soave": 1, "vinitaly": 2, "soci": 1, "resistono": 1, "regalo": 1, "delegazione": 1, "fiorentini": 1, "traffico": 1, "ncd": 1, "salviniani\u201d": 1, "formigoni": 1, "terrorizzato": 1, "piet\u00e0": 1, "mettono": 1, "piede": 1, "fiore": 1, "madonnina": 2, "presentare": 2, "piccole": 1, "medie": 1, "abolizione": 1, "gruber": 1, "stappo": 1, "bottiglia": 1, "brindare": 1, "cancellato": 1, "spostare": 1, "ingiusto": 1, "demenziale": 1, "spiega": 2, "ispettore": 1, "affrescata": 1, "monselice": 1, "salotto": 1, "martino": 1, "giovent\u00f9": 1, "intitolazione": 1, "beslan": 1, "ginocchio": 1, "misurare": 1, "gabbia": 2, "magico": 2, "lella": 1, "costa": 1, "unici": 1, "mezzi": 1, "pubblici": 1, "alzarsi": 1, "buffoni": 1, "tortelli": 1, "zucca": 1, "mantovani": 1, "battista": 1, "paranoico": 2, "regalare": 1, "chiunque": 1, "nasca": 1, "fesso": 1, "ammazziamoli": 1, "facciamoli": 1, "crepare": 1, "ideali": 1, "piomb\u00f2": 1, "studiosa": 1, "populismi\u201d": 1, "vicepresidente": 1, "partito": 1, "propriet\u00e0": 1, "esiste": 1, "malagestione": 1, "edoardo": 1, "rixi": 1, "videomessaggio": 1, "renziacasa": 10, "marinoacasa": 1, "simpatici": 1, "negrotto": 1, "febbraio": 2, "aderisci": 1, "evento": 1, "fb": 1, "events": 1, "manifestazione": 2, "radical": 1, "chic": 1, "attico": 1, "ricco": 1, "accogliamoli": 1, "buono": 1, "enorme": 1, "arci": 1, "generosi": 1, "ringraziano": 1, "riempiamo": 1, "argomenti": 1, "nemici": 1, "chiaramente": 1, "incontrollata": 1, "trafficanti": 1, "esseri": 2, "umani": 2, "belve": 1, "assaltano": 1, "gioielleria": 1, "mazze": 1, "pistole": 1, "kalashnikov": 1, "indifesa": 1, "graziano": 2, "risarcimento": 1, "bandito": 2, "ucciso": 1, "iostoconstacchio": 2, "scena": 1, "custodisce": 1, "riteniamo": 1, "nutella": 1, "spopola": 1, "mediterraneo": 1, "coscienza": 1, "incoraggia": 1, "partire": 1, "sprecare": 1, "contribuenti": 1, "stragi": 1, "aiutiamoli": 1, "truppe": 1, "nato": 1, "giocare": 1, "sterminare": 1, "sgozzano": 1, "bruciano": 1, "sparato": 1, "gioco": 1, "codice": 1, "penale": 1, "attestato": 1, "agricoltori": 1, "siciliani": 1, "bellissimo": 1, "protestando": 1, "crema": 1, "sindaca": 1, "democratica": 1, "consiglio": 1, "protestato": 1, "zuppa": 1, "legumi": 1, "frittata": 1, "pasta": 1, "patate": 1, "tornino": 1, "bisognosi": 1, "montesilvano": 1, "fiducia": 1, "ripaga": 1, "bocciato": 2, "occuper\u00e0": 1, "milan": 1, "gol": 1, "evidentemente": 1, "guardato": 1, "confindustria": 1, "forte": 1, "cantando": 1, "capriola": 1, "salva": 1, "poltrona": 1, "chiuso": 2, "serracchiani": 1, "marte": 1, "artigiano": 1, "darmi": 1, "attrezzi": 1, "mestiere": 1, "lontani": 1, "bisticci": 1, "aosta": 1, "parteciper\u00f2": 1, "straordinaria": 1, "fiera": 1, "sant": 1, "orso": 1, "artigianato": 1, "felpa": 1, "nomi": 1, "direttamente": 1, "scheda": 1, "bianca": 1, "prodi": 2, "votiamo": 1, "renzate\u201d": 1, "pacchi": 1, "miliardate": 1, "donati": 1, "grecia": 1, "geni": 1, "cornuti": 1, "mazziati": 1, "consulta": 1, "finisce": 1, "continuer\u00e0": 1, "ammette": 1, "nascondono": 1, "potenziali": 1, "ben": 1, "arrivati": 1, "ripete": 1, "riferisca": 1, "smetta": 1, "difesi": 1, "quirinale": 2, "amato": 2, "veltroni": 1, "fassino": 1, "votino": 1, "anzich\u00e9": 1, "minacciano": 1, "mancano": 1, "semestre": 1, "immagine": 1, "fenomenooo": 1, "difficile": 1, "strage": 1, "roberta": 1, "pinotti": 1, "lia": 1, "quartapelle": 1, "matrice": 1, "religiosa": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2015/salvini_emoji b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_emoji new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_emoji @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2015/salvini_sleep b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_sleep new file mode 100644 index 0000000..84937f9 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 0, "1": 1, "2": 0, "3": 1, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 1, "10": 1, "11": 1, "12": 5, "13": 2, "14": 1, "15": 1, "16": 1, "17": 1, "18": 0, "19": 4, "20": 0, "21": 1, "22": 0, "23": 0}, "Feb": {"0": 0, "1": 1, "2": 1, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 0, "10": 1, "11": 1, "12": 2, "13": 1, "14": 2, "15": 3, "16": 5, "17": 4, "18": 0, "19": 1, "20": 3, "21": 2, "22": 0, "23": 2}, "Mar": {"0": 0, "1": 0, "2": 1, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 1, "10": 1, "11": 4, "12": 4, "13": 2, "14": 1, "15": 1, "16": 7, "17": 1, "18": 3, "19": 7, "20": 1, "21": 1, "22": 2, "23": 0}, "Apr": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 2, "10": 0, "11": 7, "12": 13, "13": 3, "14": 1, "15": 2, "16": 1, "17": 4, "18": 0, "19": 3, "20": 4, "21": 4, "22": 3, "23": 2}, "May": {"0": 3, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 4, "10": 5, "11": 1, "12": 11, "13": 16, "14": 3, "15": 4, "16": 4, "17": 5, "18": 11, "19": 6, "20": 10, "21": 9, "22": 4, "23": 3}, "Jun": {"0": 2, "1": 0, "2": 1, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 0, "10": 3, "11": 4, "12": 7, "13": 1, "14": 1, "15": 3, "16": 2, "17": 2, "18": 4, "19": 5, "20": 4, "21": 0, "22": 4, "23": 3}, "Jul": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 0, "9": 2, "10": 0, "11": 0, "12": 5, "13": 5, "14": 3, "15": 1, "16": 2, "17": 2, "18": 5, "19": 6, "20": 4, "21": 3, "22": 3, "23": 1}, "Aug": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 2, "12": 8, "13": 3, "14": 1, "15": 0, "16": 4, "17": 1, "18": 2, "19": 3, "20": 2, "21": 4, "22": 1, "23": 1}, "Sep": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 1, "10": 1, "11": 2, "12": 6, "13": 7, "14": 4, "15": 1, "16": 2, "17": 2, "18": 2, "19": 9, "20": 5, "21": 2, "22": 0, "23": 1}, "Oct": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 4, "10": 4, "11": 4, "12": 10, "13": 7, "14": 1, "15": 3, "16": 4, "17": 4, "18": 4, "19": 6, "20": 8, "21": 5, "22": 1, "23": 0}, "Nov": {"0": 2, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 1, "7": 0, "8": 1, "9": 4, "10": 8, "11": 6, "12": 7, "13": 8, "14": 7, "15": 11, "16": 5, "17": 5, "18": 3, "19": 7, "20": 6, "21": 2, "22": 1, "23": 1}, "Dec": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 1, "11": 4, "12": 3, "13": 6, "14": 1, "15": 1, "16": 5, "17": 2, "18": 3, "19": 2, "20": 1, "21": 2, "22": 1, "23": 1}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2015/salvini_trend.json b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_trend.json new file mode 100644 index 0000000..4ebf960 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_trend.json @@ -0,0 +1 @@ +{"26-Dec": 1, "25-Dec": 2, "24-Dec": 2, "22-Dec": 1, "17-Dec": 1, "16-Dec": 2, "15-Dec": 2, "14-Dec": 1, "13-Dec": 1, "11-Dec": 1, "10-Dec": 1, "9-Dec": 1, "7-Dec": 1, "5-Dec": 1, "4-Dec": 4, "3-Dec": 4, "2-Dec": 4, "1-Dec": 3, "30-Nov": 4, "29-Nov": 2, "28-Nov": 1, "26-Nov": 2, "25-Nov": 3, "24-Nov": 2, "23-Nov": 2, "21-Nov": 2, "20-Nov": 3, "19-Nov": 3, "18-Nov": 5, "17-Nov": 2, "16-Nov": 4, "15-Nov": 2, "14-Nov": 3, "13-Nov": 2, "12-Nov": 6, "11-Nov": 3, "10-Nov": 3, "9-Nov": 4, "8-Nov": 2, "7-Nov": 1, "6-Nov": 4, "5-Nov": 4, "4-Nov": 4, "3-Nov": 3, "2-Nov": 7, "1-Nov": 2, "31-Oct": 5, "30-Oct": 5, "29-Oct": 4, "28-Oct": 5, "27-Oct": 5, "26-Oct": 3, "25-Oct": 1, "24-Oct": 1, "23-Oct": 3, "22-Oct": 5, "21-Oct": 4, "20-Oct": 1, "19-Oct": 1, "18-Oct": 1, "17-Oct": 2, "15-Oct": 1, "14-Oct": 1, "13-Oct": 3, "12-Oct": 2, "9-Oct": 2, "8-Oct": 2, "7-Oct": 2, "6-Oct": 2, "3-Oct": 1, "2-Oct": 2, "1-Oct": 2, "30-Sep": 1, "29-Sep": 2, "28-Sep": 1, "25-Sep": 1, "24-Sep": 1, "23-Sep": 1, "22-Sep": 2, "21-Sep": 1, "20-Sep": 1, "19-Sep": 1, "18-Sep": 2, "17-Sep": 3, "16-Sep": 2, "15-Sep": 3, "14-Sep": 2, "13-Sep": 2, "11-Sep": 2, "10-Sep": 1, "9-Sep": 3, "8-Sep": 2, "7-Sep": 3, "6-Sep": 2, "4-Sep": 2, "3-Sep": 1, "2-Sep": 1, "1-Sep": 2, "31-Aug": 2, "29-Aug": 1, "28-Aug": 1, "27-Aug": 1, "26-Aug": 1, "24-Aug": 2, "22-Aug": 1, "20-Aug": 3, "17-Aug": 2, "16-Aug": 2, "13-Aug": 3, "12-Aug": 1, "11-Aug": 1, "9-Aug": 1, "8-Aug": 1, "7-Aug": 2, "6-Aug": 2, "5-Aug": 2, "4-Aug": 2, "2-Aug": 1, "28-Jul": 2, "27-Jul": 1, "22-Jul": 1, "20-Jul": 1, "19-Jul": 2, "18-Jul": 3, "17-Jul": 2, "16-Jul": 2, "15-Jul": 4, "14-Jul": 3, "13-Jul": 2, "12-Jul": 1, "11-Jul": 1, "10-Jul": 1, "9-Jul": 1, "8-Jul": 3, "7-Jul": 3, "6-Jul": 2, "3-Jul": 4, "2-Jul": 2, "1-Jul": 3, "30-Jun": 2, "29-Jun": 3, "28-Jun": 1, "25-Jun": 2, "24-Jun": 2, "23-Jun": 2, "22-Jun": 2, "20-Jun": 1, "19-Jun": 1, "18-Jun": 2, "17-Jun": 1, "16-Jun": 1, "15-Jun": 2, "14-Jun": 1, "13-Jun": 1, "12-Jun": 3, "11-Jun": 1, "10-Jun": 4, "8-Jun": 3, "7-Jun": 3, "5-Jun": 3, "4-Jun": 3, "3-Jun": 2, "1-Jun": 2, "31-May": 1, "29-May": 5, "28-May": 5, "27-May": 4, "26-May": 9, "25-May": 5, "24-May": 5, "23-May": 4, "22-May": 3, "21-May": 2, "20-May": 3, "19-May": 2, "18-May": 2, "17-May": 1, "16-May": 5, "15-May": 3, "14-May": 5, "13-May": 2, "12-May": 5, "11-May": 3, "10-May": 3, "9-May": 2, "8-May": 2, "7-May": 1, "6-May": 4, "5-May": 2, "4-May": 5, "2-May": 1, "1-May": 5, "30-Apr": 1, "29-Apr": 3, "28-Apr": 3, "27-Apr": 5, "24-Apr": 1, "23-Apr": 2, "22-Apr": 2, "21-Apr": 3, "20-Apr": 4, "19-Apr": 1, "18-Apr": 2, "17-Apr": 2, "16-Apr": 1, "15-Apr": 1, "14-Apr": 3, "13-Apr": 1, "12-Apr": 1, "11-Apr": 2, "10-Apr": 2, "9-Apr": 2, "8-Apr": 2, "7-Apr": 1, "4-Apr": 1, "3-Apr": 1, "2-Apr": 2, "1-Apr": 3, "31-Mar": 1, "30-Mar": 1, "29-Mar": 1, "28-Mar": 2, "27-Mar": 1, "26-Mar": 2, "25-Mar": 2, "24-Mar": 3, "23-Mar": 2, "20-Mar": 1, "19-Mar": 1, "18-Mar": 2, "17-Mar": 1, "16-Mar": 1, "14-Mar": 2, "12-Mar": 2, "11-Mar": 1, "9-Mar": 1, "8-Mar": 1, "7-Mar": 1, "6-Mar": 2, "5-Mar": 2, "4-Mar": 1, "3-Mar": 1, "1-Mar": 2, "28-Feb": 1, "27-Feb": 1, "26-Feb": 3, "25-Feb": 2, "24-Feb": 2, "23-Feb": 1, "22-Feb": 1, "21-Feb": 1, "19-Feb": 2, "18-Feb": 2, "17-Feb": 1, "14-Feb": 1, "12-Feb": 1, "11-Feb": 1, "9-Feb": 2, "6-Feb": 2, "5-Feb": 1, "2-Feb": 1, "1-Feb": 4, "30-Jan": 2, "29-Jan": 2, "28-Jan": 3, "26-Jan": 1, "23-Jan": 1, "22-Jan": 1, "21-Jan": 3, "19-Jan": 1, "18-Jan": 1, "16-Jan": 1, "14-Jan": 1, "13-Jan": 2, "9-Jan": 1, "8-Jan": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2015/salvini_words b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_words new file mode 100644 index 0000000..40d4912 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2015/salvini_words @@ -0,0 +1,9922 @@ +auguri +camerieri +cuochi +baristi +ristoratori +albergatori +tasse +basse +turismo +italia +volerebbe +oggi +ingrasso +chilo +mascarpone +buon +natale +amici +augurio +particolare +oggi +lavora +medici +infermieri +autisti +farmacisti +taxisti +forze +ordine +cuochi +volontari +soccorso +dimenticato +qualcuno +messaggio +amici +cuore +buon +natale +amico +tiziano +ultimi +artigiani +cesellatori +milano +davanti +bottega +alzaia +naviglio +grande +chiedo +sentite +ripresa +economica +parla +renzi +lascio +immaginare +risposta +economia +banche +lavoro +pensioni +immigrazione +lega +anno +riconquista +sovranità +nazionale +mentre +londra +voteranno +uscire +unione +europea +contemporanea +altro +piazze +tutta +italia +nord +sud +chiederemo +milioni +italiani +vogliono +rimanere +schiavi +europa +vogliono +rialzare +testa +state +meno +minuti +sbugiardare +inutili +ipocriti +governano +europa +pensano +meno +disoccupati +piace +diffondi +rottamatore +vecchi +politici +rottamatore +anziani +risparmiatori +fine +misera +renzi +comunque +oggi +pur +minoranza +lega +dato +battaglia +roma +strasburgo +prendetevi +minuti +ascoltare +storia +adriano +anno +fa +banditi +rumeni +entrati +officina +massacrato +sprangate +padre +settantenne +rimasto +purtroppo +completamente +invalido +altro +dopo +aggressione +bestie +pur +identificate +magistrati +mai +state +arrestate +giustizia +fa +schifo +cambieremo +adriano +famiglia +oggi +renzi +dice +strumentalizza +morte +persone +fa +schifo +guardate +cosa +solo +mesi +fa +cosí +definireste +risparmiatori +fregati +rovinati +governo +protestano +firenze +renzi +nemmeno +coraggio +incontrarli +oltre +responsabile +disastro +vigliacco +auguri +cucciola +dovuto +fare +ammucchiata +insieme +sinistra +finta +destra +socialisti +repubblicani +banchieri +giornali +pen +ormai +riscossa +persone +perbene +ferma +nessuno +potranno +rallentarla +bloccarla +grazie +marine +consigli +telefonici +terroristi +islamici +arrestati +conterranei” +vuoi +vivere +italia +meglio +vada +bolzano +pagano +casa +lavori +lavoro +sociale +altro +basta +fatto +mullah +kawa +pagato +affitto +casa +soltanto +mesi +dopodiché +pensato +servizi +sociali +lavora +lavora +uguale +può +starsene +tranquillamente +casa +tanto +paga +comune +passano +pure +mensile +moglie +figli +prendono +fessi +occorre +italiani +ricordino +qual +storia +cultura +tradizione +senza +orgoglio +radici +rimarremo +indifesi +fronte +tentativi +sostituzione +popolo +corso +posizione +prudente +renzi +isis +iniziamo +chiamare +cose +nome +fare +nulla +sperando +tagliagole +islamici +colpiscano +me +vigliaccheria +provvedimenti +renzi +aiutato +grandi +peccato +oltre +imprese +italiane +meno +dipendenti +milioni +autonomi +lavorino +soli +lira +aiuto +solo +tasse +calcio +sedere +italiana +convertita +islam +frequentatrice +moschea +centocelle +roma +succedendo +francia +cercata +islamofobo +dico +sento +tranquillo +certa +gente +circolazione +folli +sanzioni +economiche +russia +fatto +chiudere +imprese +solo +emilia +romagna +grazie +renzi +grazie +obama +grazie +europa +via +sanzioni +subito +là +barriere +ideologiche +destra +sinistra +roba +vecchia +impegniamoci +insieme +liberarci +ripartire +grazie +mauro +primo +barcone +signor +alì +babà +sedicente +principe +islamico +pensano +toglie +soldati +milano +aiuta +terroristi +giù +mani +reggimento +santa +barbara +ragazzi +garantiscono +sicurezza +dobbiamo +trattarle +così +donna +permesso +dire +no +” +magari +bene +picchiarla +accoltellarla +accaduto +bergamo +ascolta +minuti +schifosa +follia +bestialità +imam +berlino +finché +islam +moschee +nemmeno +metro +quadro +califfo +porte +libia +europa +dà +miliardi +aiuta +turchia +combatte +unione +sovietica +europea +abbattuta +italia +renzalfano +brennero +ciascuno +entra +esce +pare +credo +muri +fili +spinati +credo +controlli +necessario +può +sospendere +schengen +prevenire +meglio +curare +sicurezza +sicurezza +sicurezza +parlano +prova +fatti +cosa +votano +pd +stelle +ascolta +condividi +girare +verità +smaschera +chiacchieroni +prendetevi +minuti +ascoltare +diffondere +particolare +qualche +bacheca +buonista +procuratore +repubblica +lecce +barcone +via +tranquilla +entrare +unione +europea +altro +conto +arrivare +aeroporto +altro +arrivare +confusi +persone +fatelo +sapere +renzi +idea +terroristi +arrivino +mescolati +profughi +sghignazza +incapace +pericoloso +viva +presepe +viva +crozza +ragazzi +bisogno +mentre +renzi +dorme +istituti +scolastici +cadono +pezzi +segnalateci +disservizi +disagi +scuole +incubo +buona +scuola +vera +incomincia +professore +fa +politica +faziosa +classe +segnalacelo +renzi +banda +incapaci +contesto +economico +internazionale +favorevolissimo +petrolio +basso +euro +minimi +bce +riempie +mercati +miliardi +eppure +ostaggi +altro +zero +virgola +chiedo +chiedo +figli +futuro +situazione +no +cosa +liberare +economia +via +legge +fornero +via +studi +settore +soprattutto +rivoluzione +fiscale +aliquota +unica +giusta +viene +fatto +italia +forse +qualcuno +pagato +difendere +grandi +farci +ripartire +fare +adesso +carceri +italiane +nord +sud +diventate +luogo +coltiva +terrorismo +52mila +detenuti +gran +parte +stranieri +potrebbero +portare +conseguenze +imprevedibili +altro +possiamo +contare +solo +coraggio +professionalità +uomini +polizia +penitenziaria +occorrono +agenti +risorse +strutture +soprattutto +ripristiniamo +certezza +pena +mandiamo +scontare +galera +casa +migliaia +delinquenti +stranieri +manteniamo +carceri +facciamolo +subito +prima +troppo +tardi +fate +girare +minuti +ecco +diciamo +no +turchia +europa +compra +petrolio +isis +riconosce +genocidio +milione +armeni +distrutto +chiese +sterminato +cristiani +altro +occupa +quarant +anni +stato +membro +ue +cipro +riconosce +giuridicamente +culto +chiesa +cattolica +ricevuto +miliardi +euro +europa +soldi +italiani +fare +concorrenza +sleale +imprese +minaccia +inviarci +milioni +profughi +cediamo +ricatti +europa +renzi +sveglino +invece +sanzionare +russia +dovrebbero +sanzionare +turchia +cancellare +natale +storia +mai +vescovo +padova +paura +nessuno +deve +averne +cantiamo +celebriamo +festeggiamo +difendiamo +tradizioni +orgogliosi +storia +costruire +futuro +migliore +risorse +azione +roma +giornalista +indagare +finge +parcheggiatrice +abusiva +mandata +ospedale +ruspa +insomma +rimesso +posto +gesù +bambino +ribadito +canti +natale +danno +fastidio +nessuno +bambini +insegnanti +genitori +meritano +scuola +migliore +scuole +figli +messe +aule +blindate +sbarre +evitare +furti +vandalismi +pezzo +tetto +crollato +tempo +abbandonato +cortile +donna +islamicamente +deve +chiedere +permesso +poter +uscire +dice +signore +fine +servizio +alcuni +lecito +sottomettere +segregare +picchiare +idee +possibile +nessuna +integrazione +supermercato +milano +limoni +clementine +cachi +peperoni +pomodori +arriva +estero +pare +normale +bruxelles +batto +purtroppo +quasi +solo +difendere +made +italy +negozio +compro +solo +prodotti +italiani +fini +difende +immigrati +albergo +insulta +studente +contesta +traditore +lunedì +mezzogiorno +scuola +via +milano +rozzano +presepi +bimbi +portiamo +signor +preside +giù +ragione +può +essere +accoglienza +manca +orgoglio +radici +storia +difeso +famiglia +risposto +fuoco +minacce +ringrazio +dio +essere +stato +armato +no +ammazzato +minuti +tempo +ascoltate +parole +piene +buon +senso +rodolfo +corazzo +sera +incontrerò +rodano +vicino +milano +imam +pericolo +salvini +italia +arriva +isis +ricoverateloooo +immigrazione +clandestina +business +miliardi +euro +arriva +finanziare +terrorismo +ora +dice +sole +ore +diciamo +po +tempo +bene +quand +premiata +ditta +altro +renzi +alfano +prefetti +affittacamere +smetterà +riempire +presunti +profughi +comuni +volte +senza +nemmeno +avvertire +sindaci +insulto +confronti +italiani +immigrati +perbene +resort +piscina +sognano +guarda +servizio +condizioni +lavoro +polizia +guarda +reazioni +signor +prefetto +mario +morcone +già +candidato +sindaco +pd +vendola +napoli +problema +altro +uomini +rischino +vita +mezzo +strada +euro +mese +giubbotto +antiproiettile +scaduto +inadeguato +pistola +me +dovrebbe +dimettere +strasburgo +appena +intervenuto +presidente +mattarella +detto +chiudere +controllare +frontiere +europee +serve +no +certo +entrare +altri +milioni +immigrati +cedo +mattarella +cambio +mezzo +putin +aspetto +sera +rai +ballarò +duetto +grande +mauro +corona +follia +signora +convertita +islam +albergatrice +guadagna +soldi +palate +immigrati +ricordate +dice +donne +italiane +escono +minigonna +tacchi +vorranno +farsi +violentare +schifo +taci +meglio +vergognati +giusto +uccidere +francesi +allah +sì +altro +controlli +governo +posto +renzi +soggetti +manteniamo +soldi +espellerei +subito +scuola +provincia +bergamo +dirigenza +chiesto +banda +suonare +adeste +fideles +troppo +cristiana +mentre +bresciano +vorrebbero +festeggiasse +santa +lucia +altro +stesso +motivo +appello +mamme +papà +insegnanti +dirigenti +scolastici +accogliere +dobbiamo +essere +orgogliosi +radici +fa +presepe +canti +natale +nasce +gesù +bambino +dimentica +tradizioni +storia +complice +matti +ascoltate +signora +convertita +islam +albergo +guadagnato +quasi +milione +euro +ospitando +clandestini +migliaia +italiani +dormono +macchina +soldi +finti +profughi +me +vergogna +poverini +centri +sociali +volevano +soltanto +bloccare +strada +poverino +bravo +ragazzo +arrestato +polizia +salvini +diventa +presidente +isis +arriverà +italia +dice +rappresentante +islamico +vuole +spaventare +decidere +italiani +rispondete +video +sgozzamenti +spinto +arruolarmi +isis +preferito +morire +essere +catturato +allah +unico +onnipotente +quando +muori +paradiso +vergini +altro +vengono +sgozzati +bruciati +vivi +meritano +miscredenti +destino +bambine +schiave +sessuali +oggetti +bisogna +godere +prima +convertano +pacifinti +vigliacchi +ipocriti +preferiscono +mettere +testa +sotto +sabbia +dico +no +nuovo +medioevo +isis +estirpato +terra +evitare +piangere +domani +necessario +fare +controllo +quartieri +popolari +nord +sud +espellere +entrati +italia +diritto +bastano +minuti +video +aprire +occhi +ecco +succede +città +europee +islam +diventato +maggioranza +mohamed +nome +diffuso +bambini +nascono +sharia +altro +prende +posto +democrazia +girare +verità +momenti +vita +tacere +diventa +colpa +parlare +diventa +obbligo +fonte +http +video +ilmessaggero +it +primopiano +occidentali +preparino +onda +sharia +islam +documentario +choc +quartiere +islamico +bruxelles +shtml +sapete +meno +mese +fa +tal +mohamed +ahmed +tayyeb +invitato +signora +boldrini +doveva +tenere +lezione +magistrale +camera +deputati +personaggio +teorizza +israele +debba +essere +altro +annientata +kamikaze +palestinesi +martiri +donne +possano +essere +picchiate +riusciti +insieme +altri +bloccare +follia +inviti +soggetto +genere +devi +vergognare +uccidere +persone +allah +bene +basta +minuto +telecamere +nascoste +capire +islam +religione +altre +qualcuno +ancora +dubbi +occorre +controllare +confini +bloccare +sbarchi +problema +terroristi +possono +arrivare +barconi +posto +fidate +renzi +sentite +sicuro +altro +chiacchiere +renzi +inutile +alfano +tagliagole +isis +servono +maniere +forti +fortuna +putin +cosa +posto +renzi +appoggerei +forze +intervenendo +militarmente +insieme +toglierei +sanzioni +demenziali +russia +alleata +guerra +terrore +altro +mettendole +arabia +saudita +finanzia +isis +attraverso +petrolio +qualcuno +sano +mente +pensa +possa +dialogare +tagliagole +islamici +voglio +lasciare +figli +futuro +paura +schiavitù +utilissimo +incontro +immigrazione +tasse +sicurezza +lavoro +lega +ambasciatori +danimarca +svezia +norvegia +finlandia +altra +europa +possibile +migliaia +fischi +morti +parigi +grida +allah +grande +ecco +islam +moderato +turchia +stato +islamico +fa +viaggiare +verso +europa +avanti +indietro +anno +crisi +rifugiati +rende +facile +società +terroristi +impegnati +invaderci +altro +diciamo +quindi +arrivederci +epoca +confini +aperti +articoli +entusiasti +immigrazione +può +risolvere +deficit +demografico +europa +ricorda +qualcosa +no +parole +lega +prof +ferguson +docente +storia +harvard +tesi +paura +buon +senso +insieme +figli +cresceranno +po +meno +paura +iononhopaura +parigi +no +sentito +parlare +uccidere +nome +religione +può +fare +qualche +volta +sì +italiani +infedeli +spirito +integrazione +emerge +interviste +allora +molto +lavoro +fare +charlie +hebdo +me +giusto +bravi +fatto +bene +finito +parole +amici +basta +piangere +vittime +basta +dirsi +parigini +basta +minuto +silenzio +dobbiamo +fare +controllare +frontiere +espellere +clandestini +verificare +centri +islamici +presenti +italia +altro +annientare +maniere +forti +tagliagole +isis +subito +ora +momenti +stare +fermi +diventa +colpa +dichiarato +guerra +salvini +preoccupazione +sicurezza +italiani +può +rimanere +mano +inutile +incapace +alfano +vergognati +poi +dimettiti +alfanodimettiti +vergogna +alfanodimettiti +dovrebbe +difendere +italiani +prima +denuncio +poi +alfanodimettiti +ascoltando +salvini +sembra +percepire +dispiacere +attentati +altro +parigi +avvenuti +italia +così +consentirgli +fare +caciara +guadagnare +voti +incredibilmente +detto +rai +incapace +alfano +basta +dice +vogliamo +crocifisso +presepe +scuole” +spettano +medico +palestra +soli +islamici” +italia +riprendiamoci +orgoglio +storia +rispetta +generosità +italiani +pretende +cambiare +cultura +può +tornare +paese +fare +subito +sostegno +militare +russia +annientare +isis +controllo +frontiere +blocco +sbarchi +espulsione +clandestini +verifica +tappeto +tutte +occupazioni +abusive +altro +quartieri +popolari +milano +palermo +dichiarato +guerra +guerra +risponde +chiacchiere +renzi +inutile +alfano +iononhopaura +silenzio +complice +terrorismo +girare +verità +grazie +oriana +iononhopaura +preghiera +morti +innocenti +parigi +poi +chiusura +frontiere +controllo +tappeto +tutte +realtà +islamiche +presenti +italia +bloccare +partenze +sbarchi +attaccare +siria +libia +tagliagole +terroristi +islamici +vanno +eliminati +forza +bene +crisi +finita +renzi +vada +raccontare +salvo +bimbi +famiglia +quasi +colleghi +michelin +perderanno +posto +lavoro +speranze +futuro +opposizione +posso +aiutare +lavoratori +renzi +batti +colpo +oltre +danno +beffa +antagonisti +fermati +bologna +già +liberi +ascoltate +agente +polizia +gente +denunciata +già +volte +mai +portata +processo +passa +messaggio +altro +goda +impunità +servirebbe +arresto +obbligatorio +reati +commessi +durante +manifestazioni +incensurati +pensate +sindaci +vicentini +stati +segnalati +prefettura +essersi +tolti +fascia +tricolore +funerale +ermes +mattielli +rigattiere +morto +infarto +dopo +condanna +anni +mesi +aver +altro +ferito +ladri +tratta +primi +cittadini +velo +astico +cogollo +cengio +laghi +albettone +sindaci +meno +minuti +scopri +verità +truffa +latte +voce +spacca +schiena +giorni +produrlo +aiutiamo +allevatori +girare +rancore +odio +passato +bologna +solo +idee +futuro +insieme +riuniamo +tutte +persone +perbene +oggi +andrebbe +votare +renzi +finita +recco +liguria +cuore +aula +bruxelles +difendere +made +italy +massacrato +europa +rieti +vita +reale +passeggeri +autobus +protestano +alcuni +immigrati +vogliono +pagare +biglietto +reagiscono +insulti +vaffa +integrazione +piace +renzi +boldrini +altro +italia +vogliamo +rispetto +regole +convivenza +civile +bene +torna +casa +mattina +pieve +emanuele +vicino +milano +sostegno +allevatori +difesa +latte +italiano +eccellenza +produzioni +finti +prodotti +made +italy +mangino +signori +multinazionali +italia +renzi +poi +italia +pensiamo +italiani +vengono +prima +sbarca +domani +mattina +chiedere +tanto +dedicato +potuto +esserci +cuore +bologna +splendida +giornata +libertà +sempre +convinto +possiamo +fare +insieme +nord +sud +batteremo +renzi +torneremo +grandi +guardate +bravi +ragazzi +fermati +domenica +bologna +violenza +resistenza +poliziotti +bestemmie +sputi +prima +lancia +petardi +volto +coperto +poi +quando +tentano +ammanettarlo +minaccia +denunciare +agenti +violenza +naturalmente +già +libero +mandereste +lavorare +così +aspetto +sera +rai +interessante +allevatori +consumiamo +solo +made +italy +europa +vuole +distruggere +produzioni +piazza +bologna +parte +rivoluzione +persone +perbene +arrenderò +fino +paese +tornerà +essere +paese +bello +mondo +poliziotti +prende +bastonate +grazie +bologna +piazza +persone +perbene +porterò +sempre +cuore +governo +tasse +invasione +mandiamo +casa +insieme +può +liberiamoci +ripartiamo +bologna +silvio +berlusconi +giorgia +meloni +liberiamoci +oggi +mare +persone +perbene +invaderà +pacificamente +piazza +maggiore +bologna +riprendiamoci +futuro +renzuccio +arriviamo +liberiamoci +www +liberiamoci +com +meno +domani +pronti +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +stasera +pizza +girare +soli +minuti +guarda +cosa +succedendo +mosca +colpa +folli +sanzioni +russia +solo +imbecilli +qualcuno +pagato +danneggiare +italia +qua +domenica +bologna +potete +venire +tranquilli +amici +meno +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +abbatteremo +stato +schifoso +protegge +delinquenti +processa +difende +morte +vana +pensiero +preghiera +te +buon +viaggio +ermes +legge +fornero +danneggiando +solo +sfiga +essere +nati +tiene +fuori +mondo +lavoro +milione +giovani +rubando +futuro +intera +generazione +quando +governo +assicuro +schifezza +cancelleremo +signora +fornero +rideremo +altro +genio +governo +difende +studi +settore +dica +partita +iva +tasca +vengono +ogni +giorno +massacrati +stato +ladro +pubblico +apprezzato +domenica +bologna +liberiamoci +parassiti +meno +bologna +pronti +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +carne +fa +male +caffè +fa +male +latte +fa +male +basta +allarmismi +rotto +palle +costano +migliaia +posti +lavoro +cibo +prodotti +buoni +mondo +compriamo +consumiamo +italiano +basta +dica +vanno +altri +servi +domenica +giornata +futuro +costruzione +lavoro +sicurezza +libertà +invadiamo +pacificamente +bologna +www +liberiamoci +com +bresciano +bisogno +mano +datemi +qualcosa +senza +lavoro +senza +casa +chiede +elemosina +vigili +multano +mentre +fianco +parcheggiatori +abusivi +stranieri +agiscono +indisturbati +schifo +meno +bologna +vedere +tutta +italia +vogliamo +morire +renziani +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +ascoltate +sig +librandi +porcheria +legge +fornero +piace +tanto +mandiamo +lavorare +miniera +fino +anni +benvenuti +roccaforte +clan +calabrese +zingari +fuori +casa +popolare +dentro +violini +rolex +vasche +idromassaggio +armi +cocaina +oltre +sobria +ferrari +aston +martin +auto +james +bond +ruspaaa +meno +bologna +vedere +tutta +italia +vogliamo +morire +renziani +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +vercelli +oggi +presunti +profughi +protestavano +wi +fi +latina +famiglia +mamma +papà +ottantenni +invalidi +senza +pensione +sotto +sfratto +arrivata +vendersi +fedi +nuziali +fa +commuovere +incazzare +condividi +mollo +italia +riprendiamo +monti +letta +renzi +aperto +porte +20mila +delinquenti +indulti +svuotacarceri +spazio +galera +costruisci +nuove +carceri +detto +bene +rom +conoscete +qualche +cittadino +italiano +pensa +attenzione +condividete +video +pagina +boldrini +egiziano +poligamo +teneva +nascosta +moglie +figli +piccoli +garage +insaputa +altra +moglie +evviva +italia +multiculturale +piace +tanto +sinistra +tanti +taxisti +fermano +giro +milano +roma +tanti +piazza +bologna +domenica +prossima +chiedere +legalità +contrasto +abusivismo +controlli +strumenti +altro +proteggersi +città +sempre +insicure +innovazione +tecnologica +tutelando +lavoro +piccoli +aggressione +multinazionali +straniere +diffondi +amici +taxisti +liberiamoci +ripartiamo +www +liberiamoci +com +presento +assessore +urlante +occupi +problemi +napoli +meno +urla +risposte +umiltà +accordo +meno +bologna +vedere +tutta +italia +vogliamo +morire +renziani +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +bravo +giornalista +meno +bologna +occorre +esserci +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +gioielliere +roberto +zancan +stacchio +salvato +vita +breve +intervista +vale +pena +guardarla +condividerla +legittima +difesa +sempre +mai +eccessiva +serve +evitare +funerale +viene +aggredito +pensiero +preghiera +fatta +certi +proprio +giù +tanti +soggetti +apolitici +apartitici +deciso +essere +bologna +novembre +bloccare +governo +male +italia +respirare +ripartire +prima +altri +governo +vorrei +dovrebbe +pensare +italiani +invalidi +civili +famiglie +priorità +aggiornamento +nomenclatore +tariffario +miglioramento +sistema +altro +indennizzi +lavoro +illegittimità +nuovo +regolamento +isee +liberiamoci +ripartiamo +www +liberiamoci +com +definireste +governo +solo +muove +dito +cambiare +infame +legge +fornero +votata +pd +renzi +volte +fa +finta +dimenticarsene +umilia +continuamente +propri +altro +pensionati +lavorato +costruito +soldi +sbarca +domani +mattina +però +sempre +pronto +cassa +liberiamoci +politici +odiano +italiani +prima +tardi +meno +bologna +occorre +esserci +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +domenica +novembre +bologna +piazza +maggiore +occorre +esserci +cuore +sistema +cgil +coop +rosse +pci +pds +pd +bersani +renzi +via +via +liberiamoci +ripartiamo +vieni +vedere +tutta +italia +vogliamo +morire +renziani +www +liberiamoci +com +preferisco +pensionato +testimonia +innocenza +piuttosto +bel +funerale +stato +condividi +molliamo +francesco +lasceremo +solo +problemi +risolvono +palle +astronomiche +renzi +interventi +concreti +controllare +limitare +immigrazione +pretendendo +rispetto +regole +accordo +ladri +gambizzano +benzinaio +giudice +condanna +solo +lesioni +tornano +liberi +italia +contrario +raddrizziamo +credo +liberiamoci +meno +bologna +mareee +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +gente +brucia +viva +essere +umano +crede +altro +dio +nessun +dialogo +solo +maniere +forti +tagliagole +isis +troveremo +pianerottolo +casa +penso +così +iniziato +processo +omicidio +pietro +raccagni +aggredito +anno +scorso +casa +notte +banda +ladri +albanesi +morto +ospedale +dopo +giorni +agonia +ergastolo +bestie +altro +buttino +via +chiave +normale +fa +schifo +stato +invece +garantire +certezza +pena +concede +delinquenti +indulti +depenalizzazione +reati +svuotacarceri +abbraccio +signora +federica +ragazza +video +difende +clandestini +vendono +abusivamente +merce +magari +contraffatta +preferisco +difendere +milioni +italiani +disoccupati +commercianti +regolari +meno +bologna +liberiamoci +ripartiamo +info +www +liberiamoci +com +renzuccio +arriviamo +amici +vedo +ora +incontrarvi +tantissimi +bologna +purtroppo +ascolta +condividi +parole +carla +proprietaria +tabaccheria +vittima +varie +rapine +dedichiamo +parla +vanvera +eccesso +legittima +difesa +senza +capire +cosa +vuol +dire +avere +arma +puntata +presunti +profughi +vicenza +sempre +maschi +giovani +forma +lamentano +trattamento +renzi +alfano +dovevano +rispedirne +fuori +italia +almeno +giorno +grazie +magnifici +accordi +europa +tutte +palle +cambiato +nulla +piace +crocifisso +italia +sbagli +paese +torni +casa +cultura +modo +essere +serve +rispetto +giovane +fatima +dice +essere +accordo +fa +piacere +meno +bologna +aspetto +te +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +guarda +condividi +renzi +bugiardo +complice +dopo +mesi +chiacchiere +oggi +scopre +europa +sforzo +accogliere +settecento +immigrati +italia +sbarcati +trecentomila +anni +secondo +renzi +risolto +moglie +sindaco +pd +dice +facebook +bologna +dovrei +essere +accolto +tortellini +ripieno +ghisa +cosa +rispondereste +suggeritemi +qualche +altro +personaggio +novembre +bologna +pensionato +deve +decidere +fare +spesa +giorno +pagare +canone +rai +dubbi +spesa +vivere +pensione +purtroppo +ancora +arrivato +causa +governi +pd +italia +normale +pensi +prima +cittadini +vissuto +lavorato +costruito +altro +priorità +cancellazione +infame +legge +fornero +restituzione +rivalutazione +istat +adeguamento +assegni +familiari +accordo +diffondi +liberiamoci +ripartiamo +www +liberiamoci +com +signore +schifa +lega +dicendo +rappresenta +italiani +fenomenoooo +rappresenti +dite +risposto +bene +tante +adesioni +infermieri +tecnici +sanitari +novembre +punti +adeguamento +organici +rinnovo +contratto +lavoro +meno +abusivismo +sicurezza +amici +altro +svolgono +professioni +condividi +cartello +liberiamoci +ripartiamo +www +liberiamoci +com +accordo +paul +condividete +fatelo +vedere +boldrini +cancellare +reato +eccesso +legittima +difesa +aiutare +polizia +carabinieri +basta +svuotacarceri +tanti +applausi +pubblico +studio +canale +qualche +sinistro +buonista +arrabbierà +dite +pochi +parlano +vittime +legge +fornero +giovani +secondo +confesercenti +milione +mai +entrati +mondo +lavoro +molti +cercano +nemmeno +andati +altro +estero +trovarlo +liberiamoci +governo +spende +miliardi +sbarca +trova +euro +ragazzi +convinto +italia +certezza +pena +divisa +venisse +data +possibilità +fare +bene +proprio +lavoro +molti +problemi +meno +accordo +attenti +professioniste +borseggio +pisa +indovinate +zing +cioè +nomadi +minorenni +vengono +fermate +giorno +dopo +già +posto +lavoro +condividete +video +bacheca +amici +buonisti +sinistra +tanto +diranno +bufala +lega +domenica +novembre +bologna +bisogno +te +liberiamoci +ripartiamo +www +liberiamoci +com +anziani +selvaggiamente +picchiati +uccisi +alcuni +morti +conseguenze +aggressione +subita +quando +vedo +cose +vado +bestia +paese +normale +difendere +persone +fragili +dovrebbe +essere +priorità +numero +certamente +quando +libereremo +renzi +andremo +governo +mattina +roma +assemblea +carabinieri +unac +stato +diritto +vai +strada +rischiare +vita +solo +istituzioni +nessuno +difende +magari +indagano +aver +fatto +lavoro +riportiamo +rispetto +tutela +indossa +divisa +politici +bravi +alcuni +idioti +basterebbe +dare +anni +reato +genere +viene +rubare +casa +furto +stupro +psicologico +pieni +coglioni +francesco +te +pianto +troppi +tabaccai +gioiellieri +tassisti +anziani +palagonia +massacrati +botte +violentati +francesco +difeso +fatto +bene +punto +pubblico +matrix +sembra +pensarla +così +condividi +bacheca +qualche +benpensante +sinistra +oggi +tante +città +presidi +davanti +tribunali +lega +difende +milano +mobilitiamoci +liberiamoci +giustizia +ingiusta +aspetto +milano +tribunale +altro +corso +porta +vittoria +torino +tribunale +corso +vittorio +emanuele +vicenza +tribunale +via +ettore +gallo +padova +tribunale +via +tommaseo +treviso +tribunale +via +verdi +rovigo +tribunale +via +verdi +belluno +via +segato +verona +via +zappatore +genova +largo +xii +ottobre +trieste +tribunale +foro +ulpiano +udine +tribunale +largo +ospedale +vecchio +pordenone +tribunale +viale +franco +martelli +gorizia +tribunale +via +nazario +sauro +bolzano +tribunale +piazza +tribunale +altro +conchisidifende +sicuro +maggioranza +italiani +pensa +voglia +condividi +giovedì +ottobre +tante +città +presidi +davanti +tribunali +lega +difende +milano +mobilitiamoci +liberiamoci +giustizia +ingiusta +aspetto +milano +altro +tribunale +corso +porta +vittoria +torino +tribunale +corso +vittorio +emanuele +vicenza +tribunale +via +ettore +gallo +padova +tribunale +via +tommaseo +treviso +tribunale +via +verdi +rovigo +tribunale +via +verdi +belluno +via +segato +verona +via +zappatore +genova +largo +xii +ottobre +trieste +tribunale +foro +ulpiano +udine +tribunale +largo +ospedale +vecchio +pordenone +tribunale +viale +franco +martelli +gorizia +tribunale +via +nazario +sauro +bolzano +tribunale +piazza +altro +intervista +ieri +sera +giovanni +floris +dimartedì +guardatela +poi +leggo +commenti +vicini +casa +sostegno +francesco +pensionato +indagato +omicidio +volontario +essersi +difeso +ladro +entrato +casa +giù +mani +difende +guarda +condividi +iostoconfrancesco +loris +giorgio +udine +vivono +baracca +mobili +presi +immondizia +senza +acqua +senza +luce +elettrica +casa +popolare +danno +prima +immigrati +vita +reale +invenzioni +lega +però +attenti +condividerete +video +qualche +buonista +dirà +parlate +pancia +tivù +giornali +nascosto +ieri +renzi +udine +beccato +buffone +condivido +tratto +http +www +ilgiornale +it +video +politica +renzi +parla +spalti +urlano +buffone +html +dite +milanisti +soffriremo +stasera +guarda +condividi +razzismo +mentre +regalano +alberghi +immigrati +ecco +governo +buonisti +tratta +mamma +italiana +figli +mille +difficoltà +poche +tutele +paghe +fame +rispetto +riconoscenza +rischia +vita +giorni +proteggerci +invece +lavorare +risolvere +problemi +veri +italiani +occupano +adozioni +gay +regalano +cittadinanze +immigrati +attaccano +regioni +meglio +governate +soliti +sinistri +svendono +italia +cacceremo +poliziotto +carabiniere +interviene +proteggere +collega +cittadino +tutelato +indagato +qualche +delinquente +protesta +pazienza +difende +bettola +provincia +piacenza +paese +bersani +mese +alluvione +morti +feriti +milioni +euro +danni +ancora +stato +regione +arrivano +aiuti +promessi +furia +impedire +altro +residenti +dragare +fiumi +togliere +ghiaia +pulire +torrenti +curare +boschi +natura +fa +corso +solo +colpa +acqua +soprattutto +colpa +uomo +lasciamo +montagna +curata +gente +montagna +pensate +anna +milano +mamma +disoccupata +sotto +sfratto +clandestini +figli +poco +niente +ora +basta +schifo +pretendere +aiuti +gente +diritto +negarli +razzismo +molto +bene +aspetto +diretta +quinta +colonna +rete +lavorando +dare +italiani +paese +normale +viene +rispetta +gente +adegua +regole +leggi +altrimenti +torna +casa +spero +colossale +figura +fango +renzi +marino +pd +avvicini +tanta +gente +normale +voglia +costruire +futuro +propria +comunità +torni +voto +subito +democrazia +sospesa +già +troppo +tempo +roma +merita +italia +merita +archiviato +disastro +marino +renzi +coperto +spalle +anno +mezzo +ora +roma +milano +napoli +torino +bologna +occorre +parlare +poco +lavorare +tanto +momento +poco +pochi +me +indispensabile +prerequisito +prima +italiani +studi +settore +accertamenti +fiscali +massacrando +produce +paese +imprenditore +italiano +deve +poter +lavorare +senza +avere +stato +rompere +palle +azienda +adriano +anni +lavoro +muratore +stato +italiano +bastano +avere +pensione +intanto +mantiene +figlio +cooperative +rivolto +impiegano +solo +extracomunitari +ascoltando +storia +giochini +alfano +verdini +corte +renzi +sembrano +ancora +schifosi +europa +senzapalle +mattina +strasburgo +grazie +russia +sola +combattendo +tagliagole +islamici +isis +arrendi +condividi +imprese +italiane +meno +dipendenti +nemmeno +renzi +favorisce +solo +grandi +cresciamo +zero +virgola +occorre +coraggio +occorre +altro +rivoluzione +fiscale +flat +tax +uguale +basta +oppressione +equitalia +italia +bisogno +correre +passeggiare +ascoltate +cosa +dicono +cittadini +ventimiglia +circondati +presunti +profughi +senza +limiti +senza +regole +governo +renzi +umilia +ogni +giorno +italiani +pare +normale +scuola +materna +rovereto +rimosso +giostrina +maialino +islamici +offendevano +schio +imam +educava” +bambini +ascoltare +musica +peccato +altro +scuola +elementare +ladispoli +introdotto +ora +settimanale +lingua +rumena +obbligatoria +qualcuno +deciso +italiani +debbano +essere +minoranza +casa +me +pare +razzismo +sbaglio +centri +sociali +aggrediscono +leghisti +pisa +raccolgono +firme +sicurezza +nonostante +cittadini +fermano +firmano +zecche +rosse +fate +paura +nessuno +castagne +vino +rosso +quarto +grado +sacrifici +italiani +voli +stato +renzi +ministri +sbaglio +dico +fa +schifo +ruspa +vergogno +stato +mamma +papà +oltre +essere +ancora +risarciti +errore +ospedale +reso +disabile +bimbo +ricevono +cartella +equitalia +38mila +euro +minaccia +fermo +auto +cambieremo +stato +infame +cancelleremo +schifo +altro +riforma +senato +renzi +governo +normale +dovrebbe +occuparsi +momento +problemi +veri +italiani +lavoro +tasse +pensioni +immigrazione +solo +penso +così +angelo +anni +roma +posto +albergo +migliaia +clandestini +magari +ventenni +invece +sì +ascoltate +condividete +parole +pronte +accuse +razzismo +priorità +renzi +riforma +senato +ius +soli +cittadinanza +veloce +immigrati +emergenze +chiamano +lavoro +pensioni +flat +tax +aiutare +italiani +difficoltà +resto +viene +dopo +ascolta +condividi +situazione +pescara +filmata +cittadini +sicurezza +buon +senso +meno +renzi +boldrini +guardate +reazione +buonisti +lettura +diretta +messaggio +facebook +vuole +rispetto +milioni +italiani +difficoltà +altro +resort +stelle +clandestini +beccati +truccare +dati +emissioni +auto +cara +merkel +giù +piedistallo +mentre +sfigati +rossi +mai +salvini +ritrovano +gatti +davanti +casa +popolo +aspetto +tantissimi +sabato +sera +pordenone +pubblico +pomeriggio +applaude +composto +bestie +buonisti +sinistra +cinquestelle +pensano +sconfiggere +tagliagole +isis +fiorellini +sradicare +peste +terrorismo +islamico +servono +maniere +forti +accordo +condividi +ipocriti +fessi +casa +ecco +video +intervista +rtl +vista +dare +occhiata +poi +leggo +volentieri +commenti +mafia +immigrati +mesi +fa +denunciavo +razzista +oggi +accorge +corriere +ascoltate +condividete +altro +definireste +vergogna +abbraccio +paola +beatrice +vaffa +renzi +buona +scuola” +salvatore +padre +bimbo +anni +perso +lavoro +ora +dorme +tenda +parcheggio +pubblico +posto +albergo +migliaia +clandestini +invece +sì +razzismo +fa +incazzare +te +condividi +ciao +amici +andiamo +altalena +fate +fanculo +porcherie +europa +prende +giro +italiani +ruspa +grillocomerenzi +mentre +renzi +cena +ristorante +stelle +michelin +centinaia +euro +tuffo +cannelloni +leghisti +buon +appetito +tutte +persone +perbene +quindi +renzi +voto +mai +pd +ascolta +condividi +parole +paola +esodata +emiliana +minuto +smaschera +sbugiarda +renzi +signora +boldrini +parla +costituzione +diritti +profughi +renzi +blocca +parlamento +riforma +senato +matrimoni +gay +missioni +estero +intercettazioni +problemi +veri +italiani +interessano +proprio +sinistra +mentre +soldi +italiani +bisogno +trovano +mai +ecco +vengono +buttati +milioni +euro +mantenere +anni +profughi +scappano +nessuna +guerra +forse +qualcuno +mangia +palazzo +inizia +occuparsi +problemi +milioni +cittadini +italiani +derubati +dimenticati +prossima +volta +smontiamo +mattone +mattone +morti +miliardi +euro +spesi +migliaia +clandestini +albergo +germania +slovacchia +sospendono +schengen +austria +invia +esercito +presidiare +confini +ungheria +alza +muro +persino +altro +europa +chiediamo +anni +vorrebbe +iniziare +usare +maniere +forti” +bloccare +barconi +scafisti +cosa +deve +succedere +ancora +svegliare +governo +dormienti +renzi +alfano +parlato +docente +seguiva +bimba +down +ora +lasciata +casa +governo +migliaia +insegnanti +compresi +sostegno +bambini +disabili +dimenticati +lasciati +piedi +altro +buona +scuola” +renzi +vergogna +almeno +po +occupando +ministero +economia +vogliamo +fatti +concreti +risposte +tempi +certi +legge +fornero +fianco +ascoltiamo +girare +parole +tina +terremotata +mirandola +provincia +modena +sopravvive +giorni +container +liberiamoci +governo +mette +albergo +clandestini +toglie +dignità +cittadini +ruspa +elio +papà +giada +incatenato +esterno +scuola +elementare +calolziocorte +lecco +protesta +figlia +migliaia +altri +bimbi +disabili +classe +senza +insegnante +sostegno +abbraccio +elio +giada +vaffa +renzi +buona +scuola +forza +vecchio +cuore +rossonero +amici +abbraccio +piazza +cittadella +dedico +saluzzo +mille +persone +renzi +arrivando +togliere +embargo +siria +eliminare +folli +sanzioni +russia +intervenire +cancellare +terra +tagliagole +stato +islamico +aiutare +gente +scappare +altro +importare +nuovi +schiavi +europa +accordo +ascolta +condividi +altro +bestie +italia +monsignor +maggiolini +metteva +guardia +confondere +libertà +religione +libertà +invasione +arcivescovo +bologna +biffi +consigliava +altro +privilegiare +immigrazione +viene +territori +cristiani +facilmente +assimilabile +italia +buon +senso +vuole +accogliere +scappa +veramente +guerra +respingere +diritto +altro +bestie +renzi +vergognati +vogliamo +casa +vogliamo +essere +aiutati” +dicono +giovani +rom +ossignur +cosa +rispondiamo +ventenni +belle +speranze +tanta +voglia +lavorare +pensano +immigrati +fregano +disoccupati +condividi +ruspa +normale +italia +renzi +ruba +anni +vita +donne +legge +fornero +soldi +trova +solo +clandestini +sbarcano +domani +mattina +quando +governo +cancelleremo +subito +quell +infame +legge +italiani +vengono +prima +tiri +fuori +soldi +uccido +abbraccio +tassisti +italiani +grazie +governo +renzi +alfano +ogni +giorno +meno +sicuro +voglia +ecco +video +intervista +ieri +sera +paolo +debbio +quinta +colonna +parlato +messaggi +scrivete +splendida +comunità +sbugiardare +renzi +proporre +futuro +diverso +italia +davanti +platea +cernobbio +raccogliendo +applausi +inaspettati +fatto +dato +verme +renzi +esagerato +fine +settimana +aspetto +venerdì +sabato +monviso +domenica +cittadella +difendere +radici +vuol +dire +preparare +futuro +renzi +guarda +bestie +lega +lodi +megliobestiacherenzi +renzi +fa +fenomeno +economia +combina +nulla +liberare +imprese +ridare +lavoro +italiani +bisogno +rivoluzione +chiama +aliquota +fiscale +unica +andremo +governo +pronto +italia +trovi +merda +torna +paese +condividi +bacheca +qualche +buonista +magari +può +offrirsi +trattare +meglio +signore +guardate +condividete +storia +angelo +ormai +vive +prigioniero +casa +profughi +casino +girano +nudi +sputano +scale +angelo +lasciamo +solo +governo +altroinvasione +arricchisce +pelle +italiani +ruspa +arrivo +http +www +ilgiornale +it +news +cronache +chieve +business +immigrati +case +invendute +html +ascoltate +bene +fate +girare +amici +ormai +passaparola +profughi” +mezzo +mondo +andate +italia +lì +passare +facile +chiedere +asilo +disastro +renzi +prima +cacciamo +meglio +http +www +ilgiornale +it +news +cronache +londata +pakistani +est +prefetture +collasso +html +renzi +alfano +boldrini +zero +proposte +zero +risultati +solo +tanti +insulti +chiede +rispetto +regole +interventi +concreti +controllare +gestire +immigrazione +razzisti +altro +leghisti +populisti +xenofobi +nazisti +fascisti +ora +sciacalliiii” +pronti +cacciare +governo +incapaci +riprendervi +italia +oggi +premio +vai +lavorareee +vince +europarlamentare +pd +pina +picierno +amici +sotto +copio +incollo +programma +prossimi +giorni +fino +domenica +sempre +aspetto +ferma +perduto +mercoledi +settembre +radio +cusano +campus +collegamento +altro +telefonico +festa +ln +conselve +pd +prato +comunale +via +monsignor +beggiato +giovedi +settembre +viterbo +provincia +giornata +trasporto +macchina +santa +rosa +venerdi +settembre +cara +mineo +ct +festa +ln +cantu +via +giovanni +cermenate +struttura +campo +solare +festa +ln +calolziocorte +lc +dancing +sport +lavello +viale +gasperi +sabato +settembre +festa +ln +sempre +corsa +matteo +salvini” +buglio +altro +pazzesco +conetta +vicino +venezia +inviato +profughi +ogni +abitante +sveglione +renzi +gioca +risiko +immigrati +pelle +italiani +alfano +ruspa +buon +senso +arrivo +altre +parole +servono +preghiera +pseudo +albergatori +guadagnano +grazie +invasione +insulto +veri +imprenditori +ristoratori +mazzo +giorni +fare +lavoro +campa +clandestini +chiuda +domani +mattina +serve +italia +italiani +sgomberati +profughi +ospitati +stato +italiano +stato +clandestino +marino +alfano +casaaa +italia +vogliamo +cambieremo +sbaglia +paga +accordo +ascolta +girare +bello +sinistri +riempirsi +bocca +parola +accoglienza” +sbarca +domani +mattina +cittadini +italiani +magari +disoccupati +sotto +sfratto +cassintegrati +pensionati +minimo +altro +disabili +bisogno +lasciati +senza +alcun +aiuto +quando +governo +prima +penseremo +poi +altri +peggio +clandestini +protestano +rompono +casa +subito +condividi +video +bacheca +qualche +amico +buonista +guardate +spettacolo +pinzolo +trentino +grazieee +renzi +arriviamo +video +traballa +po +fatto +piedi +benna +ruspa +hotel +san +lorenzo +banale +cena +amici +trasforma +comizio +lega +persone +spettacolo +trentino +pazzesco +ecco +servono +presunti +profughi +reggio +emilia +pd +usa +volontari +festa +sembra +cosa +normale +girano +palle +girare +video +amici +oretta +tocca +me +traghetto +tirrenia +porto +torres +genova +partenza +ritardata +attesa +salire +bordo +pullman +clandestini +foto +sala +poltrone +riservata +mentre +tanti +italiani +dormiranno +terra +materassini +fanculo +altro +galantino +gente +seria +sabato +aspetto +festa +lega +pinzolo +splendido +trentino +passaparola +programmi +ferragosto +zona +stare +insieme +me +tanti +altri +amici +aspetto +anni +pontedilegno +ore +renzi +arriviamo +intervista +ieri +sera +tg1 +commenti +proposte +suggerimenti +richieste +cosiddetti +profughi +smartphone +ultima +generazione +wi +fi +skype +tv +tutte +camere +italiani +difficoltà +calcio +culo +nooooo +invenzioni +quei +razzisti +lega +condividete +video +bacheca +qualche +amico +buonista +sicilia +meriterebbe +qualcosa +meglio +rispetto +crocetta +sbaglio +attenti +vero +terremotati +emiliani +roulotte +anni +mentre +immigrati +comodi +hotel +salvini +populista +toscana +francesco +dorme +auto +cosiddetti +profughi +villa +lusso +basta +umiliare +cittadini +italiani +pazienza +finendo +egoisticamente +potrei +dire +preso +veneto +vinto +liguria +governo +lombardia +toscana +lega +sindaci +me +nord +chissenefrega +altri +altro +ragionamento +intelligente +italia +riparte +tutta +insieme +nessuna +parte +saviano +voglia +andare +oltre +certi +squallidi +slogan +approfondire +invito +prossimo +viaggio +sud +orgoglioso +stare +mezzo +gente +onorevole +renziana +sbugiardata +forse +preferisce +stare +mezzo +clandestini +clandestini +ventimiglia +residenti +invasi +sera +mattina +renzi +ministri +dormono +fregano +nord +sud +ogni +giorno +creano +situazioni +secondo +paese +normale +euro +casse +comune +amministrato +lega +quell +euro +cittadino +italiano +obiettivo +sbarchi +zero +visto +signora +pd +dice +migranti +soprattutto +transito +fa +transitare +casa +donazione +plasma +avis +fatta +andrà +sangue +so +basta +sapere +aiuterò +qualcuno +spero +almeno +fa +polemica +minuto +delirio +kompagno +tolleranza +zero +vedo +bene +verso +alfano +ridicolo +governo +incapace +storia +fronte +ordine +pubblico +prenda +tutte +discoteche +campo +rom +mercedes +lusso +comprate +risposta +andiamo +fare +mercato +vendere +vestiti +intanto +fessi +paghiamo +bollette +ufficialmente +poveri +esagero +dire +ruspa +vergogno +stato +papà +italiano +dà +fuoco +disperazione +muore +mentre +immigrati +mantenuti +rifiutano +spaghetti +pomodoro +piacciono +vedo +ora +essere +governo +cambiare +schifo +lomazzo +provincia +como +parte +lega +marea +gente +perbene +gran +finale +festa +lega +cervia +super +luca +zaia +pd +lasciamo +crocetta +alcuni +pescatori +vongole +cattolica +cambieranno +folli +regole +europee +prevedono +taglia +minima +millimetri +ogni +vongola +rischiano +rimanere +ferme +oltre +barche +saltare +posti +lavoro +lega +renzi +trentina +presunti +profughi +bloccano +strade +este +veneto +cibo +vestiti +piacciono +fa +troppo +caldo +devono +essere +famosi +rifugiati +climatici +inviamo +casa +renzi +alfano +boldrini +guarda +condividi +video +fa +troppo +incazzare +ecco +video +intervista +gianni +riotta +splendido +castello +sforzesco +milano +vista +dare +occhiata +poi +leggo +volentieri +commenti +piace +condividete +rivoluzione +renzi +promette +togliere +tassa +prima +casa +messo +eliminare +imu +terreni +agricoli +introdotto +abbassare +irpef +ires +iva +aumentato +rivoluzione +me +sembra +ennesima +renzata +chiacchierone +orgoglioso +sindaci +cittadini +tutta +italia +protestano +invasione +difendono +città +condividiamo +rassegna +vince +combattere +caldo +formaggio +piastra +pistola +acqua +insieme +grande +luca +zaia +presente +fin +subito +fianco +concittadini +rimane +settecentesca +villa +fini +secondo +tivù +radio +nazionali +parlato +tragedia +morto +feriti +persone +fuori +casa +veneto +dopo +tornado +cazzago +pianiga +sfondo +stadio +ormai +ex +davanti +quel +resta +decine +alberi +secolari +sradicati +lanciati +vento +proiettili +milioni +euro +danni +fino +ora +governo +dati +solo +signora +kyenge +vuole +accogliere +finti +profughi +mondo +casa +spese +italiani +italiani +fame +clandestini +iphone +trattati +graditi +ospiti +stato +qualcuno +vuole +scontro +sociale +amici +veneti +sabato +torno +visiterò +luoghi +devastati +tornado +tv +giornali +già +dimenticati +provincia +treviso +sostenere +residenti +invasione +clandestina +grazie +renzi +alfano +sera +festa +lega +oppeano +vr +aspetto +bellissima +sala +strapiena +gente +fuori +oggi +novara +lega +vuoi +vedere +stancati +pd +guarda +condividi +ecco +situazioni +create +governo +renzi +alfano +finti +buoni +sabato +tardo +pomeriggio +quinto +treviso +vado +persona +dare +solidarietà +famiglie +residenti +razzismo +verso +italiani +fa +girare +palle +messo +piace +pagina +cancro +primo +aiuto +onlus +solidarietà +concreta +migliaia +malati +niente +chiacchiere +clicca +seguente +link +metti +piace +https +www +facebook +com +pages +cancro +primo +aiuto +onlus +legge +fornero +rapporti +russia +aiuto +veneto +grazia +antonio +monella +federalismo +europa +cambiare +aziende +chiudono +immigrazione +portato +presidente +mattarella +voci +lavoro +riempire +alberghi +agriturismi +ostelli +mezza +italia +immigrati +clandestini +presa +giro +confronti +milioni +cittadini +sotto +soglia +povertà +dicono +populisti +razzisti” +frega +vengono +prima +italiani +difficoltà +buondì +amici +vola +roma +leggendo +nuovo +romanzo +ottimo +vitali +stasera +incontri +bergamaschi +festa +lega +bonate +sopra +treviglio +aspetto +odio +caldo +splendida +cena +persone +viareggio +sorpresa +grande +ciclista +alessandro +petacchi +regalato +maglia +verde +vinta +tour +france +corre +europa +fondata +interesse +banche +multinazionali +anni +detto +piccolo +brutto +essere +competitivi +bisogno +grande +centro +commerciale +altro +grandi +banche +grandi +catene +straniere +intanto +uccidendo +storia +impresa +posti +lavoro +difendere +saper +fare +italiano +serve +nuovo +sistema +fiscale +pagare +meno +tasse +altro +dormire +renzi +svegliaaaa +gruppi +clandestini +ospitati +residence +eraclea +mare +cittadina +turistica +litorale +veneto +presi +sassate +rabbia +residenti +turisti +impauriti +frattempo +commercianti +altro +operatori +turistici +esasperati +denunciano +gravi +perdite +attività +invasione +continua +altri +soldi +scafisti +altri +affari +mangia +altri +problemi +italiani +onesti +vogliono +solo +lavorare +pace +renzi +bene +così +paga +danni +incontrato +ferrara +signora +piangendo +marito +disoccupato +pensione +fame +giorni +rischia +perdere +casa +riesce +pagare +rate +mutuo +altro +clandestino +sbarca +mattina +scappa +nessuna +guerra +casa +albergo +agriturismo +cittadina +italiana +paga +tasse +decine +anni +dita +occhi +emergenza +italiani +difficoltà +resto +viene +dopo +pienone +pazzesco +lega +bulgarograsso +vicino +como +stasera +tantissimi +bambini +futuro +cresce +renzino +arrivandooooo +inps +certifica +poveri +italia +milioni +cittadini +possono +permettersi +alimentazione +adeguata +riescono +fronte +spese +impreviste +pochi +euro +frattempo +priorità +governo +italiano +trovare +albergo +migliaia +clandestini +dite +renzi +vergogna +almeno +po +aspetto +sera +quartesana +villa +pignara +provincia +ferrara +festa +lega +collegamento +ruspa +intervento +convegno +euro +libertà +” +qualche +anno +fa +davano +matti” +dicevamo +basta +euro” +ora +ricoverare +difendono +ancora +moneta +povertà +disoccupazione +libertà +viene +prima +rassegnarsi +mai +cambieremo +italia +cambieremo +europa +migliaia +firme +false +consentito +elezione +chiamparino +giudici +tar +riconoscano +piemontesi +diritto +tornare +votare +scegliere +liberamente +futuro +terra +forse +qualcuno +vuol +farci +credere +firma +falsa +sinistra +diventa +meno +falsa +amici +mattina +strasburgo +portato +saluto” +merkel +renzi +dite +messaggio +ricevuto +intervento +ieri +sera +ballarò +credo +aver +parlato +chiaro +dite +moriremo +renziani +né +schiavi +europa +piace +condividete +dialoghiamo +dialoghiamo +altro +dialogo +fanatismo +islamico +combatte +condividiamo +video +buonisti +ipocriti +fessi +casa +europa +così +bisogna +fermarsi +riscrivere +ripartire +programma +ridare +dignità +italiani +popoli +europa +difendere +lavoro +controllare +moneta +confini +renzi +fare +cagnolino +merkel +tirare +avanti +persone +cena +radio +padania +castelcovati +brescia +bellissima +serata +notte +amici +almeno +sogni +ora +renzi +tassa +ragazzi +trovate +ancora +qualcuno +difende +europa +euro +moneta +unica +economie +diverse +funziona +esperimento +genetico +fallito +cambiano +trattati +soli +italia +niente +imparare +nessuno +italia +può +tornare +lavoro +sì +senza +fisco +assassino +vincoli +europei +demenziali +moneta +sbagliata +tasca +parlato +intervista +voglia +ascolta +condividi +spettacolare +accoglienza +bagno +folla +lega +adro +franciacorta +renzi +arrivandooooo +pazzesco +italiana +jihadista +ascolta +condividi +islam +religione +altre +qualcuno +ancora +dubbi +amici +ultimi +giorni +firmare +comune +entro +luglio +tassare +regolamentare +prostituzione +liberando +strade +città +battaglia +civiltà +porta +solo +vantaggi +firma +potremo +combatterla +insieme +libertà +partecipazione +clandestini +sbarcano +albergo +pasti +gratis +terremotati +container +tanti +saluti +italia +renzi +boldrini +poi +razzisti +italiani +stanchi +invasione +lascio +bellissima +terra +calabria +grazie +amicizia +impegno +tornarci +presto +aiutare +risolvere +qualche +problema +stazione +crotone +clandestini +passeggeri +secondo +normale +capire +conoscere +studiare +approfondire +imparare +serve +me +serve +professori +economisti +studiosi +liberi +lega +salvini +puoi +iscriverti +www +scuoladiformazionepolitica +it +vittorio +feltri +sempre +grande +paga +stipendio +signor +renzi +signor +alfano +cittadini +italiani +giusto +allora +smettano +farci +invadere +fare +camerieri +europa +disoccupazione +infedeli +crocifissi +decapitati +arsi +vivi +giustiziati +spiaggia +colpi +mitra +religione +entra +terrorismo +islamico +dicono +buonisti +palle +quando +guerra +corso +bisogna +difendersi +tutte +armi +disposizione +dorme +complice +moschee +vanno +controllate +radiografate +gestisce +conduce +finanziate +regimi +islamici +fanatici +vanno +chiuse +domani +mattina +esportiamo +laureati +importiamo +disperati +invasione +pianificata +sostituzione +popoli +può +grazie +pubblico +studio +oggi +applausi +brutti +estremisti +populisti +certo +molliamo +ascoltate +bene +ragione +oriana +fallaci +signore +vorrei +vicino +casa +nemmeno +sotto +tortura +senza +montarci +testa +piedi +bene +piantati +terra +adesso +dobbiamo +fermarci +dobbiamo +lavorare +ancora +duro +vincere +può +pazzesco +maledizione +svenduto +unione +sovietica +europea +banche +euro +fuori +riparte +sbaglia +paga +cosiddetto +reato +tortura +idiozia +espone +porta +divisa +ricatto +delinquenti +ultima +cosa +bisogno +italia +ostacolare +attività +poliziotti +carabinieri +forze +ordine +qualche +delinquente +lamenta +problemi +grazie +jonata +pregio +martinalli +cantato +pontida +pezzo +ricordo +ragazza +perso +vita +anni +incidente +stradale +angelo +combattuto +insieme +dimenticheremo +mai +ciao +vittoria +capaccio +resort +provincia +salerno +presunti +profughi +protestano +qualità +cibo +servizi +mangiano +male +manca +internet +vadano +fare +turisti +casa +diamo +quei +fondi +italiani +difficoltà +ieri +stretti +mano +fatto +patto +figli +finché +libereremo +italia +molleremo +mai +ruspe +azione +anni +magliette +quasi +esaurite +immigrati +protestano +rifiutano +alberghi +pisa +wifi +livorno +ospitate +donne +sassari +troppo +isolato +altro +profughi +scappano +guerre” +clandestini +rispedire +casa +presunti +profughi +rifiutano +agriturismo +provincia +sassari +troppo +isolato +lontano +mare +barcone +via +vadano +casa +fare +schizzinosi +donazione +sangue +fatta +interessa +aiuterò +bianco +nero +milanese +giapponese +cittadino +interessa +aiutare +qualcuno +bisogno +politico +invece +dovere +aiutare +prima +italiani +incredibile +renzi +volta +detto +verità +doriano +cittadino +italiano +difficoltà +sacco +pelo +clandestino +sbarca +invece +pronto +albergo +girare +stop +razzismo +verso +italiani +tassare +regolamentare +prostituzione +riaprendo +case +chiuse +liberando +strade +città +battaglia +civiltà +porta +solo +vantaggi +usa +quarto +ora +tempo +vai +comune +altro +combattila +tempo +solo +fino +luglio +già +firmato +anno +scorso +vale +devi +firmare +nuovo +marea +gente +lega +stasera +melzo +dedico +entusiasmo +militanti +rendendo +possibili +vittorie +impensabili +ballottaggi +grazie +visto +stragrande +maggioranza +richiedenti +ottiene +asilo +fino +prova +contraria +chiamiamo +clandestini +altro +profughi +hotel +gratis +spese +italiani +condivide +amico +renzi +boldrini +rom +diritti +doveri +casa +comprano +affittano +altri +visto +spesso +volentieri +conto +corrente +triplo +soldi +cittadino +italiano +politici +pd +piace +scabbia +disabili +anziani +disoccupati +italiani +soldi +clandestini +invece +renzi +trova +subito +razzismo +fa +incazzare +te +condividi +bella +squadra +piazza +sordello +mantova +domenica +vota +sinistra +vota +lamenti +prossimi +anni +momento +crisi +economica +studi +settore +strumento +tortura +fiscale +stato +costringe +dichiarare +guadagnato +altrimenti +vengono +controllarti +calzini +armadio +governo +cancelliamo +domani +mattina +spettacolare +accoglienza +lega +cologno +monzese +vuoi +vedere +dopo +cinquant +anni +manda +casa +sinistra +paese +normale +alfano +ministro +interno +già +qualche +mese +manifesta +totale +incapacità +gestire +immigrazione +clandestina +renzi +copre +difende +complice +invasione +amici +bisogno +entro +fine +giugno +andate +ciascuno +proprio +comune +firmare +referendum +lega +tassare +regolamentare +prostituzione +già +fatto +anno +scorso +deve +altro +firmare +nuovo +poter +contribuire +battaglia +civiltà +servono +firme +insieme +iniziato +percorso +comune +imprenditori +italiani +nord +sud +rivedere +trattati +europei +difesa +made +italy +giustizia +efficace +soprattutto +nuovo +sistema +fiscale +pagare +meno +tasse +volere +potere +insieme +torneremo +grandi +tantissima +gente +piazza +corsico +mandare +casa +sinistra +dopo +troppi +anni +disastri +ventina +contestatori +urlavano +clandestini +allora +andate +vivere +altra +parte +mercato +segrate +accoglienza +stupenda +ascoltare +signore +incontro +vedere +fornero +dovrebbe +scappare +via +velocemente +schifani +dice +porterò +centrodestra +sconfitta +integralista +estremista +destra +porto +italia +sfascio +povero +zerovirgola +schifani +cosa +pretendere +ministro +interno +secondo +lavoro +fa +scafista +piazza +strapiena +lega +lonigo +provincia +vicenza +domenica +vota +manda +casa +sindaco +sinistra +renzi +barcone +abbraccio +splendida +piazza +castelfranco +veneto +cosa +state +amici +rinnovo +invito +combattete +battaglia +civiltà +nord +sud +roma +napoli +milano +palermo +torino +andate +firmare +comune +date +500mila +firme +dopo +anni +toglieremo +prostituzione +strade +www +vieniafirmare +org +ridare +lavoro +italiani +servono +idee +chiare +coraggiose +proposta +chiama +flat +tax +pagare +meno +pagare +funziona +già +paesi +mondo +costruendo +progetto +alternativo +renzi +bruxelles +banche +vincere +ridare +italia +italiani +credo +paesi +confronto +austria +difende +propri +confini +italia +fa +invadere +grazie +scelte +demenziali +renzi +alfano +incapaci +quando +governo +cambierà +video +intervista +lunedì +paolo +debbio +quinta +colonna +rete +dialogato +volentieri +giovani +pd +aspetto +giorno +militante +lega +potrà +fare +domanda +renzi +diretta +televisiva +chiederanno +cittadini +governo +spaventa +differenza +renzi +uomo +solo +comando +voglia +leggete +condividete +intervista +soprattutto +leggerò +attenzione +commenti +giornata +fare +storia +domenica +giugno +pontida +aspetto +te +persino +fatto +quotidiano +riconosce +successo +lega +http +tv +ilfattoquotidiano +it +saronno +nuova +base +salvini +terroni +migranti +ruspa +ruspa +ruspa +spettacolare +folla +serata +lega +martinengo +renzi +arrivandooooooo +notte +serena +amici +domani +mattina +saronno +ringraziamento +tapiro +grazie +nord +sud +incontrato +sacco +gente +dato +tanto +me +stata +esperienza +vita +incredibile +volete +aiutarci +realizzare +progetto +alternativo +renzi +andate +comune +firmare +referendum +abrogare +legge +merlin +info +www +vieniafirmare +org +piazza +strapiena +thiene +provincia +vicenza +lega +luca +zaia +altri +spariti +renzi +arrivandooooo +arquà +polesine +vicino +rovigo +ostello +canalbianco +ah +relax +immigrati +vitto +alloggio +garantito +mesi +mentre +migliaia +italiani +tirano +fine +mese +dormono +macchina +piace +italia +renzi +alfano +boldrini +domenica +puoi +contribuire +cambiarla +voto +ciclisti +leghisti +spettacolo +elezioni +regionali +domenica +girare +vota +puglia +salvini +presenti +tanti +comuni +centro +sud +isole +abruzzo +sicilia +domenica +vince +partecipa +meno +dueeeee +splendida +piazza +orvieto +piena +dicono +vedeva +anni +auguro +notte +serena +domani +veneto +domenica +voto +libertà +grazie +toscana +grazie +umbria +domani +venerdì +gran +finale +veneto +torre +mosto +ve +dolo +ve +piazza +mercato +collegamento +la7 +aria +tira +altro +padova +convegno +terrorismo +piazza +organizzato +ugl +polizia +stato +presso +sala +comunale +fornace +carotta +carrare +pd +arquà +polesine +ro +rovigo +piazza +vittorio +emanuele +ii +thiene +piazza +chilesotti +finire +luca +zaia +verona +piazza +dante +proprio +ancora +stanchi +salvini +collego +mentana +la7 +bersaglio +mobile +domenica +vicina +ogni +voto +ruspa +preferite +suite +matrimoniale +doppia +uso +singola +benvenuti +capannone +rom +orrori +firenze +schifo +diritti +doveri +domenica +scelta +pulizia +chiama +lega +piazza +piena +orgogliosa +pacifica +poco +fa +arezzo +contestatori +neanche +aria +guarda +diffondi +clandestini +hotel +piscina +wifi +discoteca +italiani +calcio +sedere +conto +pagare +domenica +vai +votare +schifo +fermiamo +notte +serena +amici +stasera +concesso +pausa +poesia +relax +musica +arte +film +fabrizio +andré +direzione +ostinata +contraria +sempre +ascoltate +diffondete +renzi +paragona +italiani +emigravano +cerca +fortuna +clandestini +sbarcano +oggi +nonni +miniere +duro +lavoro +alberghi +gratis +renzi +vergognati +piazza +piena +emozionante +san +giovanni +punta +provincia +catania +sicilia +voglia +cambiare +saluto +particolare +angelino +alfano +ministro +invasione +ascolta +girare +renzi +alfano +boldrini +difendiamo +confini +difendiamo +storia +giornalista +andrea +scanzi +dice +tivù +stravinco +ragione +renzi +monologante +grazie +chissà +magari +riesce +convincerlo +renzi +coniglio +confrontarsi +me +sempre +pronto +dite +oggi +premio +vergognati +taci +ché +bella +figura +diamo +genio +amico +monti +fornero +esodati +stati +messi +posto +genova +splendide +persone +piazza +lega +grazie +purtroppo +soliti +parassiti +centri +sociali +cercato +attaccare +piazza +lanciando +bombe +carta +petardi +bottiglie +altro +poliziotti +carabinieri +votare +domenica +liguria +punto +solo +diritto +dovere +centri +sociali +ruspa +ovviamente +savona +potevano +mancare +anti +leghisti +anti +fascisti +anti +razzisti +anti +bla +bla +bla +savona +piazza +lega +vuole +liberarsi +renzi +burlando +ringrazio +lavoratori +porto +presenza +orlando +sopravvive +mesi +macchina +famiglia +chiesto +te +cittadino +italiano +niente +albergo +mentre +presunti +profughi +sì +ascoltate +condividete +parole +dedichiamo +tanti +ipocriti +finti +buonisti +sinistra +centinaia +persone +piazza +lega +adesso +valenza +incredibile +dite +vuol +dire +domenica +lega +prenderà +marea +voti +ecco +sede +canile +devastato +può +dare +mano +dia +forse +adesso +proteggere +struttura +arriverà +esercito +meglio +sgomberare +campi +rom +fianco +spiegate +italiani +devono +pagare +ticket +ospedale +mentre +migliaia +clandestini +tutte +cure +gratis +magari +scavalcando +fila +senza +pagare +mai +lira +stufato +sentire +applausi +pubblico +quinta +colonna +torino +benvenuti +campo +rom +regolare +via +germagnano +villette +gentilmente +costruite +poi +distrutte +poi +ricostruite +comune +spese +cittadini +pochi +metri +canile +enpa +distrutto +pochi +giorni +fa +chissà +dovuto +allontanare +cani +gatti +genovesi +testa +aspetto +piazza +ascoltate +diffondete +renzi +smascherato +legge +fornero +capitooo +piazza +strapiena +gente +terni +fatela +girare +web +riempie +gioia +emozione +orgoglio +responsabilità +coraggio +onestà +cambiare +può +davvero +secondo +renzi +troverebbe +piazza +così +bella +mentre +presunti +profughi +albergo +pagato +italiani +terremotati +emiliani +ancora +fuori +casa +schifo +domenica +abbattiamo +voto +promesso +oggi +tornato +hotel +house +porto +recanati +appartamenti +molti +occupati +spacciatori +truffatori +abusivi +decina +inquilini +italiani +altri +stranieri +molti +altro +immigrati +perbene +troppi +stranieri +delinquenti +soluzione +riportare +ordine +uomini +esercito +forze +ordine +giorni +controllano +piano +piano +appartamento +appartamento +palazzo +regola +bene +altri +rispediti +primo +aereo +casa +stasera +mestre +polizia +centri +sociali +voglia +video +confronto +oggi +rai +lucia +annunziata +piace +condividete +bacheca +qualche +amico +tante +persone +incontrate +giro +giorni +altro +sinistra +dicono +basta +stavolta +voto +lega +grazie +domenica +prossima +dobbiamo +essere +tanti +uniti +insieme +cambiare +può +jesolo +voglia +mare +passa +domenica +storia +orlando +teresa +figli +commosso +fatto +parecchio +incazzare +guarda +diffondi +stato +ribaltiamo +venezia +salvata +stasera +aspetto +mestre +domenica +maggio +appuntamento +solo +conferma +luca +zaia +regione +elezioni +comunali +liberare +città +bella +mondo +occupanti +sinistra +aspetto +sera +mestre +piazza +ferretto +domenica +anni +grande +guerra +oggi +allora +passa +straniero +aspetto +fiume +piave +nervesa +battaglia +tv +renzi +alfano +sanno +difendere +confini +vadano +difenderemo +meno +domenica +maggio +ore +referendum +signora +candidata +pd +liguria +vuole +accoglierli +intanto +gran +bretagna +spagna +austria +francia +respingono +difendiamo +confini +condivide +renzalfano +bellissima +piazza +feltre +voglia +lega +governo +renzi +imu +terreni +agricoli +montagna +raddoppio +iva +pellet +riscaldamento +milioni +tolti +scuole +ospedali +montagna +moretti +me +ottima +birra +guarda +condividi +francia +difende +confini +espelle +clandestini +italia +invece +porte +aperte +alberghi +cambierà +anni +terremoto +emilia +mentre +ancora +cittadini +italiani +vivono +fuori +casa +stato +italiano +pagando +colazione +pranzo +cena +albergo +presunti +profughi +schifo +pazienza +finita +amici +chiedo +sforzo +sostenere +luca +zaia +sera +confronto +tv +sky +potete +televotare +scaricando +app +gratuita +skytg24 +telefonino +invece +abbonati +altro +telecomando +programma +visibile +canali +sky +canale +digitale +terrestre +oppure +via +internet +http +video +sky +it +news +diretta +grazieeeeee +scelgozaia +basta +violenza +rossa +pensate +vota +maggio +complice +invasione +corso +europa +frega +almeno +governo +italiano +svegli +inizi +difendere +confini +francia +regno +unito +tanti +altri +paesi +sospendere +schengen +bloccare +partenze +barconi +può +deve +prima +troppo +tardi +guarda +diffondi +lega +smaschera +ladro +tunisino +presunto +profugo +diretta +tv +fine +sputtanato +fenomeno +fa +balletto +fronte +telecamera +prenderci +ruspaaaaaaa +sindaco +firenze +pd +parla +banche +ridicolooooooooooo +miliardi +spariti +monte +paschi +siena +intascati +grazie +gente +perbene +uova +regala +mangia +miliardi +rubati +pensionati +fenomeno +vuole +restituire +solo +simpatico +bonus +esodati +rimasti +frega +insieme +ricorso +corte +europea +diritti +uomo +sciagurata +legge +fornero +renzi +fuorilegge +fuori +soldi +pago +casa +40mila +rom +uguali +diritti +uguali +doveri +accordo +condividi +mila +firme +gazebo +solo +weekend +grazie +amici +raccolta +prosegue +perdete +quarto +ora +tempo +andate +firmare +comune +battaglia +civiltà +buon +senso +darà +solo +vantaggi +stop +prostituzione +strada +liberiamo +città +info +www +vieniafirmare +org +lavoro +meno +clandestini +gente +coda +ventimiglia +firmare +referendum +lega +riaprire +case +chiuse +pisa +ragazzi +maggio +vota +renzi +casa +guarda +diffondi +insulti +bestemmie +sputi +poliziotti +fenomeni +tentano +impedirci +parlare +grazie +forze +ordine +balordi +solo +ruspa +aperitivo +marina +pietrasanta +trasforma +comizio +mezzo +sacco +gente +vai +nonostante +fumogeni +minacce +centri +sociali +tanta +gente +massa +scesa +piazza +lega +ritrovi +violenti +ruspa +poco +diretta +sky +tg +piazza +affollata +gente +fivizzano +lunigiana +piazza +spettacolare +lega +gualdo +tadino +renzi +arrivando +ascoltate +diffondete +minuti +commerciante +vicentino +zancan +smonta +palle +renzi +pd +sicurezza +amici +umbri +stasera +aspetto +perugia +piazza +bacio +sicurezza +meno +clandestini +viene +alfano +guarda +diffondi +ecco +succede +quando +giornalista +schiena +dritta +incontra +civiltà +rom +eccoli +eroi +anti +leghisti +lanciatori +fumogeni +mamme +bambini +ruspa +bombe +carta +fumogeni +pomodori +accendini +oggi +balordi +centri +sociali +braccio +armato +sinistra +provato +fermarci +riusciti +vinto +senigallia +perbene +altro +tanta +gente +piazza +nonostante +lancio +oggetti +abbraccio +ragazzo +colpito +taglio +collo +vede +immagini +tante +mamme +presenti +bimbi +purtroppo +spaventati +pensano +fermare +lega +capito +male +fantastica +piazza +porto +san +giorgio +urlatori +presenti +potrebbero +fare +po +volontariato +anziani +invece +rompere +palle +evvai +bella +gente +lega +ascoli +abbraccio +ragazzi +liceo +bigiato +venire +ascoltarmi +villabate +vicino +palermo +tanta +gente +voglia +sicilia +migliore +tanta +pena +lanciatori +frutta +verdura +urlavano +razzisti +cosa +possiamo +dirgli +governo +chieda +scusa +restituisca +soldi +rubati +italiani +legge +fornero +mentre +qualcuno +clandestini +forze +ordine +piazza +così +agrigento +città +alfano +spettacolo +emozionante +domenica +maggio +votando +salvini +mandano +casa +crocetta +alfano +solito +ritornello +sinistra +bisogno +immigrati +italiani +figli +” +vediamo +fare +asili +nido +gratuiti +francia +magari +italiani +torneranno +fare +figli +ecco +cosa +succede +mentre +invalidi +campano +euro +mese +ascolta +condividi +schifo +fermiamo +mamma +poco +diretta +sky +tg +poi +ministero +tesoro +vicenda +fornero +pensioni +pomeriggio +sicilia +ormai +ogni +volta +incontro +troviamo +teppisti +organizzati +centri +sociali +tentano +violenza +impedirci +parlare +alfano +muove +dito +renzi +dice +parola +dite +governo +complice +migliaia +persone +incontrate +poi +soliti +violenti +centri +sociali +attaccano +forze +ordine +fermo +alfano +capace +lavoro +permetta +gente +perbene +manifestare +guardate +accoglienza +stupenda +foggia +abbraccio +studenti +liceo +volta +perso +qualche +ora +lezione +venirmi +ascoltare +giustificati +bari +sala +strapiena +parla +sanità +pugliese +funziona +agricoltura +massacrata +tasse +sicurezza +lavoro +lascia +puglia +rappresentanti +operai +natuzzi +casa +tempo +casa +sinistra +razzista +italiani +eccezionale +accoglienza +bellissima +lecce +salento +puglia +razzismo +sinistra +stancato +sotto +programma +oggi +mercoledì +puglia +sicilia +passando +roma +ferma +perduto +programma +maggio +domenica +ore +conferenza +stampa +lecce +via +mare +altro +sede +salvini +ore +incontro +pubblico +lecce +grand +hotel +tiziano +congressi +viale +porta +europa +ore +incontro +pubblico +bari +hotel +villa +romanazzi +carducci +via +giuseppe +capruzzi +maggio +lunedì +ore +conferenza +stampa +presentazione +candidati +comune +andria +hotel +cristal +palace +via +firenze +ore +incontro +pubblico +foggia +hotel +cicolella +via +xxiv +maggio +ore +roma +teatro +brancaccio +via +merulana +maggio +martedì +ore +conferenza +stampa +presso +segreteria +regionale +catania +via +orto +limoni +n +ore +pedara +ct +ore +gela +cl +ore +agrigento +ore +comizio +ore +martedì +la7 +maggio +mercoledì +ore +marsala +ore +villabate +pa +ore +trasmissione +matrix +canale5 +presunti +profughi +lamentano +accoglienza +italiana +tornate +casaaaaa +ascoltate +diffondete +condivide +gad +lerner +parte +amici +oggi +attivo +tesseramento +ufficiale +salvini +sito +www +noiconsalvini +org +iscriviti +aperto +già +partecipato +fase +censimento +pre +adesione +altro +nuovi +aspetto +tanti +regioni +centro +sud +isole +tornare +insieme +essere +sicuri +liberi +forti +coccola” +violenti +balordi +lanciatori +molotov +forze +ordine +sempre +ritirare +carica +stipendio +senatore +vita +signor +mario +monti +altro +restituire +soldi +milioni +pensionati +disabile +italiano +genitori +italiani +nonni +italiani +deve +campare +euro +mese +sbarca +invece +vitto +alloggio +oltre +euro +mese +vergogna +fermiamo +stato +ribaltiamo +gran +finale +rovereto +sala +piena +persone +fuori +riescono +entrare +spettacolo +ovviamente +potevano +mancare +contestatori +urlanti +ruspa +parlamentare +pd +ringrazia +monti +letta +renzi +fornero +vada +dire +tanti +italiani +grazie +perso +lavoro +poco +collegamento +ala +trento +diretta +rete +piazza +stupenda +pacifica +piena +gente +perbene +trento +renzi +arrivandooooo +incredibile +piazza +matteotti +strapiena +gente +lega +bolzano +togliere +strade +regolamentare +ripulire +tassare +prostituzione +vai +comune +metti +firma +referendum +riaprire +case +chiuse +può +fare +info +vieniafirmare +org +poi +avanza +tempo +vado +rubare +dice +rom +doppio +lavoro +ruspa +milano +pulita +volto +scoperto +piace +guardate +amici +onorevole +picierno +pd +dà +lezioni +buona +educazione +aspetto +oggi +milano +piazza +scala +viene +pisapia +ecco +tv +giornali +fatto +vedere +accoglienza +milanesi +sindaco +incapace +protettore +centri +sociali +aspetto +oggi +milano +piazza +scala +viene +pisapia +insulti +sbirri +cazzo +fare +possiamo +fare +sesso +selvaggio +cella +orgoglioso +signora +voti +lega +stomaci +forti +guardare +condividere +rischio +pericolo +amici +guardate +condividete +imbecille +pena +dareste +spettacolo +centinaia +persone +piazza +lega +montecatini +terme +vuoi +vedere +gente +inizia +stancarsi +renzi +incontro +vivaisti +provincia +pistoia +aziende +esportano +alberi +mondo +ovviamente +senza +nessun +contributo +parte +stato +europa +signor +rom +perseguitati +vogliamo +piccoli +campi +case +periferia +paga +europa +cioè +bastaaa +notte +serena +amici +gente +stupenda +incontrata +stasera +dice +cose +cambieranno +parlamentare +migrante +sinistra +serve +operazione +mare +nostrum +grande +ricoveratelaaaa +juncker +dovremmo +aprire +porte +miliardo +africani +matti +milioni +disoccupati +posto +solo +immigrato +oggi +premio +buonista +spese +italiani” +vince +giornalista +repubblica +clandestini +dice +possiamo +ospitarne +ancora +tanti +” +accoglierà +casa +strasburgo +ennesimo +ipocrita +dibattito +immigrazione +presidente +commissione +europea +juncker +appena +detto +bisogna +aprire +porte +vogliamo +gente +entri +finestra +avanti +secondo +pd +applaudito +convinto +ricoveratelo +proprio +vuole +apra +porte +casa +leghista +però +ascoltate +parole +scrittrice +sveva +casati +modignani +invasione +corso +chiarezza +buonsenso +senza +ipocrisia +piace +fate +attenzione +diffondete +amici +rom +ecco +frego +auto +italiani +senza +fare +giorno +galera +” +ruspa +sms +arrivato +ieri +buonasera +salvini +proprietario +capannone +firenze +occupato +rom +ormai +anni +riesco +liberarlo +nonostante +varie +denunce +compenso +stato +chiede +altro +comunque +pagamento +imu +pazzesco +paga +renzi +ovviamente +quel +capannone +andrò +visitare +prestissimo +dite +ruspa +bella +democrazia +compagni +violenza +mai +ragione +mai +fate +paura +noooooooo +macerata +cittadini +perbene +molti +giovani +piazza +ascoltare +proposte +lega +grazie +poca +distanza +perditempo +centri +sociali +lanciare +solite +uova +genitori +tirino +schiaffi +educativi +hotel +house +porto +recanati +appartamenti +spaccio +armi +prostituzione +abusivismo +inferno +manifestanti +pd +cgil +insieme +abusivi +centri +sociali +bloccato +altroingresso +palazzo +vanno +bene +casino +spaccio +pensare +chiedere +aiuto +lega +stati +cittadini +africani +perbene +soluzione +certa +gente +ruspa +facebook +bannato +aver +scritto +parola +zing +ro +sinceri +democratici +centri +sociali +possono +vantarsi +pubblicamente +pagina +lancio +uova +fumogeni +altri +oggetti +gazebo +ancona +rischiando +colpire +mamme +bambini +presenti +vergogna +ovviamente +alfano +dorme +tace +figli +papà +centri +sociali +lanciato +uova +arance +cittadini +ancona +accolto +lega +bella +democrazia +compagni +fate +paura +nooooooooo +sicurezza +lavoro +meno +clandestini +meno +zecche +rosse +marche +può +soliti +violenti +sinistra +lega +torino +poi +magari +vanno +piazza +difendere +democrazia +pena +andiamo +qualche +volta +rubare +dice +rom +hobby +furto +ruspa +ancora +baby +ladre +rom +ancora +borseggi +ancora +risate +genitori +avanti +amici +mattino +verità +scomode +danno +fastidio +santoro +compagni +gente +perbene +ringrazia +tempo +servizio +completo +http +x2nnv4i +milioni +banca +magari +bollette +gratis +fa +incazzare +condividi +salvini +vescovone +ragione +persone +sala +tanta +gente +fuori +lega +cecina +provincia +livorno +eccezzzzzionale +vedere +credere +ciao +ciao +kompagni +europa +frega +onu +muove +dito +allora +italia +italia +difendere +confini +fermare +invasione +spettacolare +accoglienza +piazza +grosseto +lavoro +sicurezza +meno +sprechi +meno +ruberie +toscana +tantisssssima +gente +lega +stasera +travagliato +renzi +arrivando +ascoltate +divulgate +gestione +immigrazione +renzi” +stop +governo +incapaci +altro +indulti +sconti +depenalizzazioni +certe +bestie +solo +galera +buttare +chiave +blocco +navale +fermare +partenze +smetterla +arricchire +scafisti +terroristi +meno +persone +partono +meno +muoiono +piazza +strapiena +belluno +gente +stupenda +persone +generose +accoglienti +vogliono +arriva +rispetti +regole +bene +viva +ruspe +mietitrebbie +abbasso +boldrini +luca +zaia +tanti +giovani +inaugurazione +nuova +sede +lega +villorba +solo +oggi +ventina +18enni +detto +primo +voto +lega +altro +sbandati +centri +sociali +ecco +raccolta +differenziata +mega +campo +rom +barbuta +roma +preavviso +poi +ruspa +bisogna +allestire +nord +africa +centri +identificazione +blocco +migliaia +clandestini +profughi +finanziano +mafie +terroristi +renzi +dorme +pensa +legge +elettorale +blocchiamo +partenze +miliardi +spendere +soldi +vanno +destinati +vittime +legge +fornero +italiani +altri +violenti +vanno +piazza +volto +coperto +bastoni +spranghe +poliziotto +carabiniere +sempre +verità +coraggio +parole +papa +genocidio +parte +turchia +milioni +armeni +stato +turco +dopo +secolo +rifiuta +riconoscere +no +turchia +europa +ascoltate +diffondete +ecco +rom +vogliono +integrare +boldrini +giorni +vigore +infame +legge +fornero +solo +lega +batte +cambiarla +ragazzi +acqua +luce +gas +pagate +casa +gratis +ascoltate +divulgate +vergogna +fermiamo +mare +gente +stamattina +giambellino +periferie +milanesi +abbandonate +pisapia +lega +rovigo +sfigati +centri +sociali +parte +persone +perbene +altra +arriviamo +qualche +vescovone +abita +certo +periferia +scandalizza +parole +campi +rom +dite +solo +ipocrisia +qualcuno +guadagna +italia +benvenuto +lavora +integra +semafori +lancia +cofani +macchine +rompendo +palle +soprattutto +donne +benvenuto +mandato +foto +twitter +haragionesalvini +pare +vinto +stasera +grazie +amici +insieme +può +guardate +diffondete +governo +razzista +clandestini +hotel +piscina +italiani +macchina +cantina +sabato +domenica +piazza +vieni +firmare +www +chiedoasilo +org +europa +esistono +campi +rom +diritti +doveri +casa +compri +affitti +altri +cittadini +ragazzi +credere +ascoltate +divulgate +sabato +domenica +piazza +vieni +firmare +www +chiedoasilo +org +corrotti +meno +chiacchiere +renziane +sola +semplice +regola +zero +sconti +sbaglia +paga +montagna +rispetto +silenzio +amicizia +pace +qualche +valore +rischia +essere +perso +arrendiamoci +vincere +maggio +mandare +casa +renzi +alfano +mezzo +operai +fincantieri +sestri +levante +posti +lavoro +difendere +governo +purtroppo +frega +luna +ciascuno +arrende +ama +terra +gente +notte +serena +amici +altro +giorno +andato +ecco +altro +parlamentare +pd +racconta +supercazzata +euro +tasse +ridotte +sentite +clandestini +italia +aprile +aspetto +tantissimi +piazze +firmare +domanda +asilo +politico +renzi +alfano +boldrini +sinistri +vari +cominceranno +capire +qualcosa +secondo +chiedoasilo +elenco +gazebo +prossimi +giorni +www +chiedoasilo +org +renzi +esibisce +donne +oggetto +quote +rosa +coinvolgiamo +concretamente +occuparsi +legge +fornero +sicurezza +lavoro +governo +renzi +regala +sconti +corrotti +mesi +carcere +meno +ogni +anno +buona +condotta +supermercato +corruzione +altro +certezza +pena +intanto +europa +regala +altri +miliardi +ucraina +disoccupati +pensionati +italiani +arrivano +fine +mese +inaugurazione +nuova +sede +lega +spoleto +umbria +speranza +orgoglio +progetti +coraggio +accesso +piazza +manifesta +lega +torino +bloccato +grate +ferro +evitare +attacchi +maledetti +centri +sociali +roba +matti +democrazia +libertà +piazza +moncalieri +squadra +proverà +strappare +comune +sinistra +parolaia +dopo +vent +anni +candidato +sindaco +grande +beppe +furino +capitano +juve +anni +grintoso +allora +coraggioso +oggi +tantissimi +cittadini +arezzo +davanti +sede +banca +etruria +compagni +fuori +soldi +soliti +centri +sociali +difendono +amici +abusivi +clandestini +momento +crisi +economica +quando +parla +casa +lavoro +vengono +prima +italiani +on +ginefra +pd +vorrebbe +denunciarmi +mentre +rocco +buttiglione +uomo +merda +poveretti +chaouki +sua” +commissione +verificare +italia +tratta +bene +immigrati +lasagne +hotel +abbastanza +buone +bambini +vendemmiano +imbottigliano +vino +solidarietà +amici +cantina +soave +vinitaly +soci +resistono +verona +vinitaly +regalo +luca +zaia +piace +delegazione +taxisti +fiorentini +traffico +firenze +casino +ncd +renzi +elezioni +vogliono +solo +salvini +salviniani” +dice +formigoni +terrorizzato +voto +italiani +delinquenti +pietà +nemmeno +anziani +poi +governi +mettono +piede +libero +indulti +svuotacarceri +italia +grazie +alfano +grazie +renzi +alberi +fiore +madonnina +bella +padova +domani +giovedì +padova +presentare +proposte +economiche +piccole +medie +imprese +flat +tax +abolizione +studi +settore +basta +stato +ladro +cambiare +può +gruber +salvini +chiede +scusa +fornero +stappo +bottiglia +dica +tanti +italiani +fregati +preferisco +brindare +quando +cancellato +legge +vergogna +spostare +africa +italia +ingiusto +demenziale +spiega +alfano +renzi +mangia +immigrazione +clandestina +ve +spiega +ispettore +chaouki +pd +sala +tv +nuova +affrescata +disposizione +presunti +profughi +monselice +salotto +così +campo +san +martino +provincia +padova +tanta +bella +gioventù +intitolazione +via +ricorda +martiri +beslan +morti +bambini +mano +terroristi +giù +mani +bambini +futuro +aziende +ginocchio +europa +frega +preferisce +perdere +tempo +misurare +vongole +fuori +gabbia +matti +ecco +magico +mondo +lella +costa +immigrati +unici +mezzi +pubblici +alzarsi +lasciare +posto +anziani +autobus +così +bello +magico +europa +processa +putin +preferisco +tanti +euro +buffoni +tortelli +zucca +mantovani +meglio +secondo +signor +battista +corriere +sera +paranoico +voglio +regalare +cittadinanza +italiana +chiunque +nasca +italia +magari +clandestini +orgoglioso +essere +paranoico +fesso +ammazziamoli +facciamoli +crepare +carabinieri +merda +ideali +deve +essere +ammazzato +democrazia +gabbia +piombò +studiosa +populismi” +vicepresidente +emilia +romagna +indovinate +partito +delinquente +magari +armato +entra +casa +negozio +proprietà +cittadino +esiste +eccesso +legittima +difesa +mai +aspetto +sabato +mattina +genova +liberare +liguria +anni +oppressione +malagestione +sinistra +edoardo +rixi +lega +torna +dare +speranza +voce +cittadini +videomessaggio +piazza +roma +renziacasa +grazie +marine +altra +europa +possibile +volte +grazie +idee +coraggio +civiltà +futuro +grazie +roma +sabato +ore +piazza +popolo +renziacasa +marinoacasa +simpatici +via +negrotto +periferia +milano +tanti +campi +rom +presenti +italia +sgomberare +solo +chiudere +subito +meno +sabato +febbraio +ore +piazza +popolo +roma +dire +insieme +renziacasa +info +www +renziacasa +com +info +renziacasa +com +aderisci +evento +fb +ufficiale +https +www +facebook +com +events +peccato +sabato +roma +ore +piazza +popolo +renziacasa +sinceri +democratici +vorrebbero +impedire +manifestazione +inviamo +abbraccio +sabato +roma +renziacasa +dedicato +radical +chic +sinistra +attico +centro +magari +ricco +conto +banca +dicono +immigrazione +avanti +accogliamoli +italia +posto +stato +troppo +buono +euro +giorno +mantenere +ogni +immigrato +quindi +euro +mese +enorme +business +italiani +difficoltà +cooperative +arci +generosi +vari +ringraziano +sinceri +democratici +sabato +riempiamo +roma +renzi +marino +casa +argomenti +nemici +lega +salvini +posto +diciamo +chiaramente +immigrazione +incontrollata +grande +business +trafficanti +esseri +umani +tanti +mangiano +italia +dite +fatti +belve +assaltano +gioielleria +mazze +pistole +kalashnikov +dentro +ragazza +indifesa +graziano +stacchio +coraggio +interviene +ora +qualcuno +vorrebbe +risarcimento +famiglia +bandito +ucciso +vergogna +iostoconstacchio +roba +matti +ecco +amici +boldrini +auto +finta +scena +custodisce +sinistra +immigrazione +diritto +riteniamo +senza +tetto +senza +lavoro +italiani +diritti +rispetto +sbarca +domani +mattina +punto +sabato +roma +ore +renziacasa +http +www +renziacasa +com +mosca +nutella +spopola +morti +anno +mediterraneo +vittime +coscienza +incoraggia +persone +partire +basta +sprecare +soldi +contribuenti +evitare +nuove +stragi +mare +fermiamo +partenze +aiutiamoli +casa +truppe +nato +invece +giocare +guerra +russia +vadano +sterminare +bestie +isis +sgozzano +bruciano +vivi +esseri +umani +graziano +benzinaio +vicentino +sparato +bandito +messo +gioco +propria +vita +difendere +altri +occorre +cambiare +codice +penale +eccesso +legittima +difesa +paese +normale +meriterebbe +attestato +riconoscenza +accordo +iostoconstacchio +ieri +palermo +porto +cuore +parole +pescatori +agricoltori +siciliani +massacrando +mai +pensato +chiedere +aiuto +viene +milano +lasceremo +soli +promesso +bellissimo +sotto +acqua +almeno +cittadini +protestando +crema +dire +no +moschea +sindaca +pd +vera +democratica +fa +entrare +persone +consiglio +comunale +vergogna +udine +presunti +profughi +protestato +qualità +cibo +zuppa +legumi +frittata +pasta +carne +patate +mangiano +poco +male +tornino +casa +diamo +quel +cibo +italiani +bisognosi +persone +montesilvano +vicino +pescara +presentare +progetto +salvini +abruzzo +tanta +fiducia +ripaga +impegno +grazie +giorni +fa +bocciato +referendum +cancellare +legge +fornero +oggi +dice +occuperà +difficoltà +mattarella +presidente +incredibile +milan +fatto +gol +evidentemente +madonnina +guardato +giù +governo +amico +grandi +confindustria +banche +europa +anno +piccoli +sempre +reso +bella +forte +italia +sabato +febbraio +aspetto +roma +piazza +popolo +dire +insieme +italia +sinistra +renziacasa +state +cantando +capriola +angelino +salva +ora +poltrona +migliaia +imprenditori +artigiani +commercianti +chiuso +massacrati +tasse +sentite +cosa +coraggio +dire +serracchiani +vive +italia +marte +artigiano +darmi +mano +attrezzi +mestiere +corso +grande +rischio +lontani +bisticci +renzi +berlusconi +sala +strapiena +lega +aosta +domani +parteciperò +straordinaria +fiera +sant +orso +anni +storia +artigianato +stasera +felpa +porta +porta +francia +parla +lega +tanti +nomi +sinistra +peggio +altro +civile +italiani +votare +direttamente +presidente +repubblica +accordo +piace +vota +scheda +bianca +renzi +piace +passa +rivoluzione +bersani +prodi +stelle +berlusconi +chiedo +vittorio +feltri +domani +votiamo +ieri +sera +floris +credo +aver +detto +maggioranza +italiani +pensa +renzi +renzate” +dite +stato +chiaro +pacchi +miliardate +donati +grecia +grazie +quei +geni +monti +letta +renzi +invece +aiutare +italia +deciso +aiutare +mondo +italiani +cornuti +mazziati +senza +cittadini +deciso +nulla +consulta +bocciato +referendum +finisce +battaglia +lega +legge +fornero +continuerà +ogni +sede +ogni +mezzo +governo +ammette +clandestini +nascondono +potenziali +terroristi +ben +arrivati +lega +ripete +mesi +renzi +riferisca +subito +parlamento +smetta +usare +marina +militare +aiutare +scafisti +confini +vanno +difesi +quirinale +prodi +amato +veltroni +fassino +votino +renzi +berlusconi +parlamento +occupa +legge +elettorale +anziché +problemi +lavoro +gente +me +fa +schifo +lega +amato +quirinale +vota +nemmeno +minacciano +morte +mancano +giorni +milioni +italiani +devono +poter +decidere +milioni +italiani +devono +poter +cancellare +infame +legge +fornero +semestre +chiuso +immagine +bellissima +grande +manifestazione +parigi +fenomenooo +morte +persone +pd +dichiarato +guerra +così +difficile +capire +renzi +europa +mesi +palle +risultati +zero +strage +parigi +roberta +pinotti +pd +religione +entra +ministro +difesa +renzi +casa +secondo +lia +quartapelle +pd +nessun +terrorismo +matrice +religiosa +mondo +vivono +sinistri diff --git a/anno3/avrc/assignments/dataviz/dataset/2016/salvini_comuni.html b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_comuni.html new file mode 100644 index 0000000..58a1972 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2016/salvini_counter b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_counter new file mode 100644 index 0000000..28e4bf9 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_counter @@ -0,0 +1 @@ +{"discorso": 1, "diretta": 73, "festa": 3, "lega": 25, "albino": 1, "bergamo": 3, "fatemi": 2, "compagnia": 5, "amici": 44, "cosa": 16, "state": 8, "roba": 8, "matti": 7, "mancava": 1, "pure": 4, "presepe": 1, "musulmano": 1, "parroco": 1, "buonista": 3, "potenza": 1, "don": 1, "franco": 2, "corbo": 1, "sostanza": 1, "isis": 7, "colpa": 6, "israeliani": 1, "brutti": 1, "cattivi": 1, "altro": 95, "piace": 10, "madonna": 2, "burqa": 1, "chiusi": 1, "mentalmente": 1, "integralisti": 1, "accendiamo": 1, "candela": 1, "auguri": 4, "natale": 4, "ramadan": 1, "tel": 1, "parrocchia": 1, "festeggiamo": 1, "ragazzi": 7, "combattuto": 1, "combattono": 2, "cancro": 2, "istituo": 1, "tumori": 1, "milano": 22, "realizzato": 1, "video": 26, "stupendo": 1, "pensiero": 7, "migliori": 1, "fortune": 1, "nuovo": 5, "anno": 17, "doveroso": 1, "pagina": 3, "https": 3, "www": 23, "facebook": 7, "com": 5, "ilprogettogiovani": 1, "sesto": 1, "san": 1, "giovanni": 1, "stop": 2, "terrorismo": 4, "islamico": 7, "controlli": 7, "confini": 5, "coraggio": 9, "orgoglio": 1, "alfano": 19, "poletti": 1, "fedeli": 1, "vari": 3, "governo": 54, "ridicolo": 3, "votosubito": 11, "pazzesco": 16, "adesso": 5, "pubblica": 3, "italiano": 5, "spiega": 6, "uccidere": 2, "coltello": 1, "crociati": 1, "fabbricare": 1, "casa": 60, "bomba": 1, "eppure": 2, "certi": 2, "euroidioti": 1, "vorrebbero": 2, "mantenere": 2, "sanzioni": 4, "russia": 5, "unica": 8, "putin": 5, "terroristi": 6, "islamici": 5, "combatte": 3, "veramente": 5, "parigi": 2, "madrid": 1, "nizza": 1, "bruxelles": 14, "berlino": 2, "qualcuno": 7, "capir\u00e0": 1, "occorre": 1, "intensificare": 1, "possiamo": 2, "entrare": 4, "senza": 23, "morti": 4, "capodanno": 4, "scorso": 3, "colonia": 3, "reati": 2, "sfondo": 3, "sessuale": 1, "indagati": 1, "stranieri": 2, "quali": 1, "richiedienti": 1, "asilo": 11, "speriamo": 1, "ripeta": 1, "quest": 11, "stopinvasione": 6, "prima": 23, "tardi": 3, "voto": 16, "parole": 6, "tanti": 23, "accordo": 9, "poi": 29, "per\u00f2": 4, "bocciano": 1, "proposta": 3, "lavorare": 5, "subito": 22, "giorni": 8, "vicini": 1, "approvare": 1, "legge": 20, "elettorale": 7, "troppa": 1, "gente": 13, "incollata": 1, "poltrona": 5, "girare": 42, "ora": 25, "roma": 30, "qualche": 48, "minuto": 43, "riusciti": 1, "fare": 27, "soprattutto": 3, "ripromettiamo": 1, "blocco": 3, "partenze": 1, "espulsione": 2, "immigrati": 30, "irregolari": 2, "punti": 2, "fondamentali": 1, "programma": 1, "votare": 21, "presto": 4, "oggi": 32, "piazza": 21, "vogliamo": 4, "soldi": 19, "aveterottolepalle": 1, "insieme": 38, "alcune": 2, "scuole": 2, "festeggiano": 1, "espellono": 3, "ges\u00f9": 1, "bambino": 6, "euro": 28, "moneta": 7, "fallita": 1, "sbagliata": 3, "rottamare": 1, "giusta": 1, "andiamo": 1, "nessuna": 9, "parte": 9, "unione": 15, "europea": 13, "meglio": 12, "germanica": 1, "tace": 3, "clandestini": 29, "attacca": 2, "populisti": 5, "gabbia": 1, "liberarsi": 1, "no": 38, "referendum": 16, "stato": 28, "importante": 2, "eccome": 1, "anzi": 3, "fondamentale": 2, "stati": 6, "costretti": 4, "scotch": 1, "tirare": 2, "campare": 1, "mese": 9, "scusa": 3, "convinto": 3, "primavera": 1, "voter\u00e0": 4, "gi\u00e0": 12, "renzi": 148, "detto": 6, "agosto": 2, "davano": 2, "matto": 1, "panettone": 1, "mangia": 2, "amichetti": 1, "ultimo": 4, "avanti": 6, "fiducia": 2, "molliamo": 10, "weekend": 1, "firmare": 1, "gazebo": 2, "centinaia": 10, "piazze": 2, "nord": 5, "sud": 4, "strasburgo": 3, "sperando": 2, "santa": 5, "lucia": 3, "porti": 1, "via": 17, "premio": 3, "poltronara": 1, "ridicola": 1, "quindici": 1, "fa": 30, "voleva": 2, "dimettersi": 1, "invece": 10, "sindacalista": 1, "cgil": 1, "tessile": 1, "diventa": 1, "ministro": 5, "istruzione": 1, "infame": 5, "portaci": 1, "te": 7, "girano": 2, "palle": 6, "sapete": 4, "intervista": 5, "completa": 2, "giorno": 13, "agor\u00e0": 1, "rai": 7, "possibilit\u00e0": 2, "argomentare": 1, "credo": 5, "modo": 4, "abbastanza": 2, "chiaro": 3, "progetto": 4, "dopo": 23, "tutta": 6, "auguro": 2, "italiani": 95, "mesi": 5, "parlare": 9, "mattarellum": 1, "consultellum": 1, "proporzionale": 1, "vada": 2, "tedesca": 1, "esperimento": 1, "fallito": 3, "dobbiamo": 5, "uscire": 1, "sistema": 1, "infernale": 1, "massacrato": 6, "italia": 64, "primo": 9, "passo": 2, "tornare": 2, "grandi": 6, "chiama": 2, "sovranit\u00e0": 8, "monetaria": 1, "poltronaro": 1, "noooooooo": 1, "giornalista": 6, "tedesco": 3, "amico": 9, "merkel": 12, "viene": 8, "ancora": 24, "lezioncina": 1, "belli": 2, "pu\u00f2": 11, "ascoltare": 3, "portato": 2, "saluto": 3, "asfaltato": 2, "sempre": 24, "collaborato": 1, "molto": 4, "bene": 14, "dispiaciuta": 1, "vinto": 3, "quando": 15, "triste": 2, "vuol": 4, "dire": 10, "buon": 6, "torniamo": 2, "padroni": 4, "milioni": 28, "domenica": 26, "re": 1, "nudo": 3, "qualsiasi": 6, "elezionisubito": 1, "fate": 10, "fretta": 1, "popolo": 10, "vuole": 14, "decidere": 2, "condividi": 4, "aspettando": 4, "seguitemi": 1, "liberazione": 1, "nazionale": 1, "parla": 8, "futuro": 17, "dimette": 1, "casaaaaa": 2, "siiiiiiiii": 1, "nooooooo": 1, "incapace": 7, "anni": 38, "mezzo": 10, "milione": 3, "sbarcati": 2, "costano": 1, "testa": 9, "arricchire": 1, "cooperative": 2, "iovotono": 99, "dice": 20, "aver": 11, "ridotto": 2, "tasse": 19, "chiedo": 1, "pagate": 2, "meno": 10, "intervento": 5, "conclusivo": 1, "mentana": 1, "condividiamo": 1, "convinciamo": 1, "po": 8, "indecisi": 3, "dicono": 7, "sembra": 3, "chieda": 1, "s\u00ec": 10, "ridicoli": 1, "rispondere": 4, "inganni": 1, "rosiconi": 3, "vogliono": 17, "perdere": 1, "boschi": 5, "verdini": 2, "napolitano": 6, "prodi": 1, "mandiamo": 8, "dettato": 1, "banche": 14, "quei": 4, "poteri": 3, "forti": 5, "prendono": 2, "centro": 15, "commerciale": 2, "andare": 12, "shopping": 1, "pd": 26, "tale": 1, "barzelletta": 4, "gioco": 1, "facile": 4, "prenderci": 1, "impegnate": 1, "domani": 15, "sera": 9, "ridiamo": 1, "fino": 8, "indeciso": 1, "convincere": 2, "ogni": 6, "serve": 9, "regole": 3, "valgono": 1, "giochini": 1, "arroganza": 2, "ognuno": 2, "convince": 2, "fatta": 1, "vittoria": 6, "intimidire": 1, "letterine": 1, "spot": 3, "milionari": 1, "appelli": 1, "industriali": 2, "presunti": 9, "vip": 2, "fama": 1, "argomenti": 1, "sanno": 4, "solo": 30, "ricorrere": 1, "bugie": 3, "sbugiardato": 1, "tv": 5, "votiamo": 2, "tg5": 1, "aiutami": 5, "condividere": 6, "basta": 18, "guardare": 5, "invita": 2, "banchieri": 7, "finanzieri": 3, "multinazionali": 4, "lobbisti": 1, "vincoli": 1, "follie": 3, "tenga": 1, "risparmia": 1, "tutte": 10, "balle": 1, "intanto": 4, "abolito": 2, "senato": 4, "spendiamo": 1, "aereo": 6, "comprato": 1, "altri": 13, "tagli": 1, "paghiamo": 2, "senati": 1, "ultimi": 1, "farlo": 3, "crede": 1, "debba": 1, "essere": 25, "sovrano": 1, "mai": 11, "schiavo": 1, "caserma": 2, "smiraglia": 1, "bologna": 14, "attesa": 4, "venga": 2, "sistemata": 1, "migliorare": 2, "vita": 17, "poliziotti": 3, "convincente": 1, "mattino": 1, "ciascuno": 2, "cosiddetti": 1, "daremo": 1, "colpo": 1, "riprenderanno": 1, "reale": 1, "mercato": 6, "splendida": 7, "mantova": 2, "sorrisi": 1, "strette": 1, "mano": 10, "niente": 7, "insulti": 2, "vicenza": 1, "padova": 5, "verona": 4, "sala": 1, "strapiena": 3, "aria": 4, "buona": 7, "ricordati": 1, "cambiare": 7, "foto": 2, "profilo": 1, "bel": 4, "potete": 3, "scaricare": 1, "org": 10, "sondaggi": 1, "risulta": 2, "maggioranza": 5, "giovani": 5, "speranza": 1, "possono": 8, "europa": 25, "fuggire": 1, "trovare": 2, "lavoro": 24, "libero": 9, "clandestino": 6, "ucciso": 6, "marito": 5, "ascolta": 5, "storia": 3, "romina": 1, "giustizia": 3, "schifo": 19, "dura": 2, "profugo": 3, "villa": 2, "lusso": 2, "lago": 1, "garda": 1, "limite": 2, "pazienza": 2, "finita": 2, "serracchiani": 3, "vice": 1, "deciso": 2, "salvare": 2, "persone": 11, "truffate": 1, "poveri": 1, "speculatori": 2, "approvato": 2, "decreto": 1, "salvato": 3, "rovinato": 7, "150mila": 2, "pensionati": 2, "artigiani": 3, "commercianti": 3, "perso": 5, "risparmi": 1, "bugiardi": 3, "vergogna": 16, "definirli": 1, "cacciamoli": 3, "ennesima": 1, "renzata": 1, "danni": 7, "tiv\u00f9": 7, "raccontare": 1, "semplifica": 1, "manovra": 1, "economica": 1, "prevista": 1, "introduzione": 1, "spesometro": 1, "trimestrale": 1, "titolari": 1, "partita": 1, "iva": 3, "follia": 3, "assoluta": 2, "obbligher\u00e0": 1, "cittadini": 21, "riempire": 3, "tonnellate": 1, "scartoffie": 1, "inviare": 1, "bugiardo": 9, "piacenza": 2, "tour": 3, "diluvio": 3, "massoni": 2, "giornaloni": 2, "potentoni": 1, "volta": 8, "marco": 1, "travaglio": 1, "minuti": 17, "spiegare": 1, "incider\u00e0": 1, "vite": 1, "libert\u00e0": 13, "scelta": 3, "made": 2, "italy": 1, "potremo": 1, "dare": 1, "mangiare": 2, "bere": 1, "figli": 15, "aiutatemi": 1, "conta": 1, "conto": 4, "dietro": 2, "quinte": 2, "guerriglia": 1, "urbana": 1, "notte": 4, "torino": 8, "cura": 2, "alcuni": 1, "profughi": 32, "gentilmente": 3, "ospitati": 4, "ringraziamento": 3, "bombe": 1, "carta": 1, "cartelli": 2, "divelti": 1, "cassonetti": 1, "rovesciati": 1, "violenze": 3, "intimidazioni": 1, "naturalmente": 3, "accusa": 2, "razzisti": 4, "giudicate": 1, "porte": 3, "aperte": 6, "vedo": 4, "prossima": 1, "4dicembre": 24, "mondov\u00ec": 2, "cuneo": 3, "narzole": 1, "alba": 1, "asti": 1, "alessandria": 1, "significativo": 1, "operaio": 3, "monfalcone": 2, "lacrime": 1, "sinistra": 15, "stupirsi": 1, "conosce": 1, "operai": 1, "destra": 2, "etichette": 1, "ormai": 5, "senso": 1, "scontro": 1, "piccoli": 3, "finanza": 2, "identit\u00e0": 4, "unico": 1, "globalizzato": 1, "schiavi": 8, "caso": 3, "giunte": 1, "rosse": 1, "riprenderci": 1, "tantissima": 1, "genova": 3, "seconda": 2, "giornata": 3, "giro": 15, "toscana": 3, "liguria": 1, "voteranno": 2, "ascolto": 3, "fenomena": 1, "so": 3, "ridere": 3, "piangere": 1, "letame": 2, "fumogeni": 1, "scritte": 1, "merde": 1, "sindaco": 11, "quinto": 1, "treviso": 3, "colpevole": 2, "bloccato": 2, "arrivo": 1, "autori": 1, "soliti": 3, "sfigati": 3, "centri": 7, "sociali": 3, "simpatica": 1, "rappresentante": 1, "assalitori": 1, "sostiene": 2, "politica": 11, "necrofila": 1, "cos": 2, "cervello": 3, "solidariet\u00e0": 1, "mauro": 2, "zilio": 1, "mollare": 3, "spettacolo": 2, "taci": 4, "n": 3, "pericolo": 6, "grave": 2, "apprezzo": 1, "protetto": 1, "renz": 1, "svegliarmi": 1, "dicembre": 19, "vedere": 8, "salvini": 19, "esulta": 1, "produce": 2, "dolori": 1, "pancia": 1, "insopportabili": 1, "battutona": 1, "digerito": 1, "trump": 8, "purtroppo": 6, "dovranno": 2, "rosicare": 1, "iovoto": 1, "metterli": 1, "arrivati": 1, "espropri": 2, "case": 4, "alberghi": 1, "fatto": 17, "sbarcare": 1, "mascherati": 1, "enorme": 1, "business": 2, "voluto": 1, "intende": 1, "ulteriormente": 1, "centralizzare": 1, "gestione": 1, "immigrazione": 11, "mani": 8, "zittire": 1, "sindaci": 3, "coraggiosi": 1, "protestano": 5, "invasione": 17, "difesa": 12, "comunit\u00e0": 3, "emergenza": 4, "badanti": 2, "immigrate": 1, "stuprate": 1, "datori": 1, "regolari": 3, "perbene": 8, "pagano": 5, "mandano": 3, "scuola": 6, "benvenuti": 7, "vengono": 6, "sparare": 1, "fesserie": 1, "signore": 4, "occupano": 2, "caserme": 1, "spese": 10, "tornino": 1, "ex": 4, "presidente": 4, "senatore": 2, "serena": 1, "coscienza": 1, "interesse": 2, "generale": 1, "dico": 5, "voter\u00f2": 1, "vota": 5, "convintamente": 1, "stuprano": 1, "ragazza": 2, "parco": 2, "chiari": 1, "vicino": 6, "brescia": 1, "tunisino": 2, "palpeggia": 1, "ragazzina": 1, "pieno": 2, "richiedente": 4, "molesta": 2, "bimbo": 4, "fiano": 1, "romano": 1, "mentre": 7, "accogliamoli": 1, "poverini": 2, "scappano": 6, "guerra": 16, "altre": 6, "dovremo": 1, "attendere": 1, "fermi": 2, "fuori": 5, "arrendo": 1, "mila": 4, "truffati": 5, "banca": 6, "etruria": 4, "istituti": 1, "apprendevano": 1, "salvava": 1, "ieri": 11, "manifestato": 1, "voci": 1, "molti": 1, "votavano": 1, "votano": 1, "facciamole": 1, "almeno": 3, "propaganda": 2, "inutile": 2, "schiforma": 4, "elicottero": 1, "risparmiatori": 4, "mamma": 3, "statista": 1, "mette": 5, "tristezza": 1, "mandiamolo": 1, "rileggo": 1, "testo": 1, "riforma": 6, "convinco": 1, "poco": 5, "martina": 1, "ascoltate": 7, "finalmente": 1, "verit\u00e0": 3, "accoglienza": 9, "finti": 6, "spaccio": 3, "prostituzione": 2, "testimonianza": 1, "esclusiva": 1, "complimenti": 1, "paolo": 1, "debbio": 1, "visto": 5, "tg": 7, "tacciono": 2, "fatela": 1, "possibile": 7, "priorit\u00e0": 3, "rafforzare": 1, "integrazione": 12, "orgogliosamente": 1, "ecco": 18, "telegiornali": 2, "raccontano": 2, "lotta": 1, "leone": 2, "difendere": 7, "interessi": 2, "realt\u00e0": 2, "votazioni": 1, "consiglio": 6, "europeo": 1, "volte": 4, "votato": 2, "indovinate": 1, "zero": 5, "sostenuto": 1, "venti": 2, "tempo": 10, "soddisfatto": 1, "aiutate": 2, "sicurezza": 12, "mattina": 14, "tanta": 7, "incontrata": 3, "volantini": 1, "distribuiti": 1, "tappe": 1, "studi": 6, "canale": 4, "agenti": 1, "ospedale": 3, "litigavano": 1, "pocket": 1, "money": 1, "grazie": 19, "luca": 1, "telese": 1, "parenti": 2, "conoscenti": 1, "finge": 1, "tagliare": 1, "sprechi": 1, "ruberie": 1, "taglia": 2, "proprio": 9, "nulla": 6, "partiamo": 2, "mandare": 5, "burocrati": 2, "stipendi": 2, "cancellare": 5, "uffici": 1, "complicazioni": 1, "cose": 4, "semplici": 1, "prefetture": 1, "sovrintendenze": 1, "inserendo": 1, "dodici": 2, "costituzione": 6, "svendere": 2, "definitivamente": 1, "cittadino": 3, "uomo": 3, "padre": 3, "lasciare": 5, "figlio": 2, "tredici": 1, "figlia": 3, "flat": 8, "tax": 8, "famiglie": 8, "imprese": 6, "programmi": 1, "donald": 3, "crescita": 2, "sovietica": 4, "ricordo": 2, "sito": 4, "tassaunica": 6, "it": 15, "comprare": 1, "libro": 6, "armando": 1, "siri": 1, "numeri": 4, "rivoluzione": 6, "fiscale": 7, "paese": 10, "normale": 5, "entri": 4, "esci": 5, "steso": 2, "problema": 7, "legittima": 7, "frega": 3, "mettere": 4, "posto": 16, "allora": 3, "fieri": 1, "padoan": 1, "svenduto": 3, "distanza": 1, "simili": 2, "mosso": 2, "dito": 4, "parola": 4, "deve": 3, "ritornare": 1, "economia": 3, "andate": 1, "giornali": 1, "nasconderanno": 1, "partire": 2, "parliamo": 1, "pessimo": 1, "politico": 3, "bronzo": 2, "str": 1, "fornero": 20, "s\u00ed": 1, "motivo": 4, "schifezza": 3, "cancelliamo": 1, "brutto": 2, "promesso": 1, "efficaci": 1, "diffondere": 3, "bacheche": 3, "aiuti": 1, "dati": 3, "veri": 4, "censurati": 1, "ministero": 1, "interno": 2, "domande": 6, "presentate": 1, "accolte": 1, "siriani": 1, "appena": 3, "resto": 9, "accogliere": 7, "donne": 7, "bambini": 6, "fuga": 1, "dovere": 1, "sacrosanto": 1, "devono": 3, "portati": 1, "gommone": 1, "vanno": 7, "rimandati": 1, "punto": 5, "abusivi": 5, "portano": 2, "alcol": 1, "droga": 3, "finto": 1, "acquisto": 1, "ovviamente": 3, "girato": 1, "associazione": 2, "storico": 2, "documentato": 1, "situazione": 3, "verme": 2, "maledetto": 1, "austria": 3, "rispetto": 5, "lavorano": 1, "umana": 2, "messa": 1, "lavori": 2, "forzati": 2, "ripagare": 1, "subiti": 1, "rispedito": 2, "calci": 6, "quinta": 1, "colonna": 1, "rete": 3, "sabato": 12, "firenze": 12, "cos\u00ec": 25, "sogna": 1, "manca": 2, "valido": 1, "affluenza": 1, "quorum": 1, "aiuta": 2, "patentato": 1, "centrodestra": 3, "centrosinistra": 1, "vecchia": 1, "sereno": 1, "firenzeeeee": 1, "seguiteci": 1, "idee": 2, "cuore": 4, "tuttiafirenze": 5, "sole": 3, "eccomi": 2, "aperta": 3, "libera": 2, "aspetta": 2, "costruiamo": 1, "macerie": 1, "silenzio": 3, "accumoli": 1, "rieti": 1, "cascia": 1, "terra": 7, "rita": 1, "rialza": 1, "famiglia": 10, "fantastici": 1, "maialebradodinorcia": 1, "zona": 2, "rossa": 3, "norcia": 2, "terremoto": 4, "stupenda": 1, "vivere": 5, "rialzare": 1, "proponendo": 1, "aliquota": 3, "dazi": 1, "prodotti": 3, "cinesi": 1, "uccidono": 2, "altromade": 1, "esattamente": 2, "contrario": 4, "preavviso": 2, "sfratto": 2, "gran": 2, "poltronaio": 1, "scafista": 1, "paragona": 1, "spaccati": 1, "schiena": 2, "estero": 4, "cerca": 3, "fortuna": 3, "nullafacenti": 1, "coccolati": 1, "sfigato": 1, "dovrebbe": 3, "proteggere": 1, "folli": 2, "governano": 1, "continuano": 1, "stupiscono": 1, "vince": 1, "viva": 4, "pen": 2, "hotel": 8, "auto": 3, "primagliitaliani": 1, "riaspettando": 1, "porta": 5, "batte": 1, "commentare": 2, "creduto": 1, "america": 2, "croce": 3, "riempiremo": 1, "mare": 5, "l\u00e0": 2, "idea": 3, "aspetto": 8, "fiorentini": 1, "disastri": 2, "spero": 3, "rumeno": 1, "capiti": 1, "nipoti": 1, "anziane": 1, "prendeva": 1, "pugni": 1, "scopo": 3, "rapina": 3, "schifoso": 3, "polizia": 7, "marcisca": 1, "galera": 4, "indulti": 1, "riuscito": 1, "inserirmi": 1, "urla": 1, "parlamentare": 3, "pubblico": 5, "renziani": 1, "fine": 5, "corsa": 2, "prometteva": 1, "espulsioni": 3, "veloci": 2, "intenzione": 1, "vietare": 1, "ricorsi": 1, "qualcosa": 4, "cazzari": 1, "cambiata": 1, "peggio": 4, "prossimo": 1, "ore": 5, "info": 5, "pullman": 1, "sbirro": 1, "confine": 2, "muori": 1, "ammazzato": 2, "stronzo": 1, "sbirri": 1, "assassini": 1, "solidale": 1, "pro": 1, "organizzata": 2, "adesione": 1, "anpi": 1, "arci": 1, "emergency": 1, "bravi": 2, "compagniclandestini": 1, "ilcomizio": 1, "http": 7, "bit": 2, "2fflkfc": 1, "contesta": 1, "inserisce": 1, "appartiene": 1, "principale": 1, "visita": 4, "mega": 3, "campo": 7, "bagnoli": 3, "riprendiamo": 1, "bello": 2, "gioca": 1, "playstation": 1, "sorpresa": 3, "ammette": 2, "afferma": 1, "aiutarli": 1, "africa": 6, "giusto": 3, "arrivano": 3, "troppi": 3, "accordi": 1, "paesi": 6, "provenienza": 1, "esempio": 5, "nigeria": 1, "tratta": 3, "boko": 1, "haram": 1, "entrano": 4, "accelerare": 1, "riconoscimento": 1, "rifugiati": 2, "impiegarci": 1, "impiega": 1, "pochi": 5, "sottolinea": 1, "capisco": 1, "anzich\u00e9": 5, "pensare": 2, "preoccupato": 1, "conservare": 1, "papa": 2, "distinguere": 2, "migranti": 8, "sottoscrivo": 1, "pochissimi": 1, "fratelli": 2, "economici": 3, "climatici": 3, "trattati": 3, "secondo": 15, "limiti": 2, "colpite": 1, "sospensione": 1, "pagamento": 1, "emlia": 1, "esenzione": 1, "vera": 2, "aiutare": 3, "davvero": 1, "rimandare": 1, "riparte": 3, "approfondire": 3, "prefettura": 1, "taranto": 2, "piccole": 3, "cibo": 8, "buono": 1, "piacciono": 1, "vestiti": 1, "freddo": 2, "penso": 3, "decine": 3, "migliaia": 5, "terremotati": 3, "tetto": 2, "manifestazioni": 1, "sembrano": 2, "offensive": 1, "verso": 7, "ospita": 4, "occhio": 2, "disperati": 1, "fuggiaschi": 1, "guerre": 1, "prese": 2, "palazzo": 4, "chigi": 2, "abusivo": 2, "sfrattiamo": 1, "novembre": 6, "incredibile": 7, "provincia": 4, "rovigo": 1, "ospitare": 2, "nuova": 2, "ondata": 1, "sequestrano": 1, "albergo": 2, "tanto": 7, "ordine": 10, "prefetto": 1, "proprietario": 2, "presente": 1, "amica": 2, "sbraita": 1, "invasata": 1, "falso": 2, "coprendosi": 1, "negazione": 2, "evidenza": 1, "sovietico": 1, "cazzaro": 1, "ponti": 1, "opere": 1, "grado": 2, "garantire": 2, "viaggia": 1, "strade": 2, "preghiera": 1, "crollo": 1, "feriti": 1, "famigliari": 1, "vittime": 5, "impegno": 2, "affinch\u00e9": 1, "episodi": 2, "succedano": 1, "requisizioni": 1, "avvengono": 1, "comuni": 1, "collaborano": 1, "capito": 7, "governoscafista": 1, "frattempo": 1, "prefetti": 1, "difendono": 1, "proprie": 1, "resistiamo": 1, "cacciamo": 1, "by": 1, "night": 1, "serata": 3, "peggiora": 1, "matricolato": 1, "italianicheresistono": 1, "borseggiatrici": 1, "azione": 4, "chiamatele": 1, "zingare": 1, "ruspa": 14, "consiglia": 1, "signora": 6, "pensione": 7, "arriva": 3, "ipotecare": 1, "governa": 1, "sammy": 1, "basso": 2, "inno": 1, "guardate": 3, "ve": 2, "pentirete": 1, "sbucano": 1, "ovunque": 3, "consigli": 1, "quartiere": 2, "nemmeno": 4, "informati": 1, "volont\u00e0": 2, "popolare": 4, "renziana": 3, "bella": 7, "gorino": 1, "ferrara": 1, "resistono": 1, "targata": 1, "milanistan": 4, "qual": 1, "governi": 3, "europei": 5, "hollande": 1, "stopunionesovieticaeuropea": 1, "poliziotto": 2, "lamenta": 2, "leggi": 4, "dotazioni": 1, "inadeguate": 1, "librandi": 2, "vergognati": 4, "forze": 9, "cappellino": 1, "ordinanza": 1, "abbigliamento": 1, "rapper": 1, "visibilmente": 2, "deperiti": 2, "sconvolti": 1, "piazzano": 1, "strada": 6, "bloccando": 1, "traffico": 3, "ricevono": 1, "diaria": 1, "agriturismo": 2, "me": 7, "scene": 1, "quotidiane": 1, "umiliano": 1, "difficolt\u00e0": 2, "usciamo": 1, "quell": 2, "colpito": 1, "bottigliate": 1, "senegalese": 1, "bisogni": 1, "gradito": 2, "rimprovero": 1, "mondo": 13, "maxi": 1, "rissa": 3, "porto": 6, "torres": 1, "stradale": 1, "pare": 3, "somali": 1, "gradiscano": 1, "stesso": 1, "offerto": 1, "nigeriani": 2, "delirante": 1, "cavarzerani": 1, "udine": 1, "pakistani": 1, "disoccupati": 3, "cenetta": 1, "pretese": 1, "abolisce": 1, "trasforma": 1, "dopolavoro": 1, "politici": 2, "nominati": 2, "impedisce": 1, "consente": 1, "parlamentari": 2, "continuare": 4, "partito": 3, "data": 1, "italiana": 4, "magari": 11, "trent": 1, "arrivato": 1, "egoismo": 2, "razzismo": 3, "buonsenso": 2, "d\u00e0": 2, "generoso": 1, "intelligente": 2, "buttare": 2, "miliardi": 5, "quasi": 5, "maschi": 2, "ventenni": 2, "robusti": 1, "spenderli": 1, "bisogno": 7, "prove": 4, "tecniche": 2, "lavaggio": 1, "gira": 5, "svezia": 1, "pianificato": 1, "sostituire": 1, "popoli": 3, "avere": 3, "nuovi": 1, "costo": 2, "sfruttare": 2, "manodopera": 1, "chiudiamo": 1, "occhi": 1, "arrendiamoci": 1, "finch\u00e9": 3, "lasciano": 1, "telecamere": 4, "famigerato": 1, "house": 1, "recanati": 1, "appartamenti": 1, "rifugio": 2, "delinquenti": 4, "spacciatori": 2, "inviato": 1, "chiedono": 3, "manda": 2, "ben": 3, "contento": 3, "associato": 1, "battaglie": 1, "legalit\u00e0": 1, "soluzione": 6, "tappeto": 1, "piano": 2, "appartamento": 4, "regola": 1, "espulsi": 2, "buffone": 2, "capire": 4, "avercene": 1, "nonne": 1, "sentite": 2, "forcone": 1, "rosina": 2, "grande": 7, "abbraccio": 6, "bari": 2, "aggrediscono": 3, "puttana": 1, "carabinieri": 4, "dedicano": 1, "razzista": 6, "mente": 2, "piedi": 3, "sbarca": 6, "dovremmo": 3, "disuguaglianza": 1, "ingiustizia": 2, "cerchi": 1, "scappare": 2, "propria": 6, "compagna": 1, "difficile": 1, "respinto": 1, "richiesta": 3, "costruiscono": 1, "favelas": 1, "baraccopoli": 1, "comprensive": 1, "negozi": 3, "belle": 4, "attivit\u00e0": 2, "commerciali": 1, "bastaaaaaa": 1, "chiesto": 1, "spacciavano": 1, "minorenni": 3, "chiss\u00e0": 3, "scappavano": 1, "modello": 2, "tenetevelo": 1, "boldrini": 9, "quel": 5, "genio": 2, "altrimenti": 3, "votando": 1, "pazzeschi": 1, "sfrattata": 1, "malata": 1, "straniera": 1, "trovano": 1, "sistemazioni": 1, "dover": 1, "togliere": 3, "dignit\u00e0": 4, "riforme": 2, "liberiamo": 3, "salviamo": 1, "cento": 2, "mille": 1, "orgoglioso": 4, "pensano": 4, "truffe": 1, "bancarie": 1, "rimane": 2, "casta": 1, "consiglieri": 1, "regionali": 1, "senatori": 1, "potranno": 1, "inchinarsi": 1, "potersi": 1, "esprimere": 1, "merito": 1, "comodo": 1, "servi": 2, "voglio": 5, "scappa": 4, "poche": 2, "confronto": 3, "paura": 9, "boschiscappa": 1, "salutato": 1, "scommettiamo": 1, "nessun": 2, "telegiornale": 1, "immagini": 3, "bastano": 3, "cardinale": 1, "raymond": 1, "leo": 1, "burke": 1, "islam": 6, "minaccia": 1, "governare": 1, "infedeli": 2, "primario": 1, "prendere": 6, "intelligenza": 1, "sapere": 1, "realisticamente": 1, "accettare": 1, "gerarchie": 1, "ecclesiastiche": 1, "rassegnano": 1, "politically": 1, "correct": 1, "seduti": 1, "mangiamo": 1, "dormiamo": 1, "mutuo": 1, "trentennale": 1, "doveva": 1, "elegante": 1, "residenza": 1, "prende": 1, "primi": 1, "graduatorie": 1, "spesso": 4, "bimbi": 6, "camper": 1, "riscaldamento": 1, "verranno": 1, "muoversi": 1, "corteo": 2, "presidenziale": 1, "atmosfera": 1, "ovattata": 1, "baci": 1, "abbracci": 1, "vocina": 1, "rovina": 1, "sentire": 3, "amato": 1, "mostriamo": 1, "titoli": 1, "coda": 1, "sommersa": 1, "potr\u00e0": 4, "riemergere": 1, "paghi": 2, "tolleranza": 1, "bolzano": 3, "colpi": 4, "mazze": 2, "bastoni": 1, "davanti": 2, "michele": 1, "esodato": 1, "truffato": 1, "forse": 5, "dovr\u00e0": 3, "vendere": 1, "esodati": 1, "esistono": 2, "muove": 1, "restituire": 5, "traditi": 1, "veniamo": 1, "barconi": 2, "viviamo": 2, "inferno": 1, "castrato": 1, "pretendono": 5, "riso": 3, "africano": 1, "comporta": 1, "residenti": 2, "agricoltori": 2, "coprono": 1, "fischi": 2, "segretario": 2, "coldiretti": 1, "percepito": 1, "espresso": 1, "cifra": 1, "stipendio": 1, "cascina": 1, "volere": 1, "potere": 3, "sfrutta": 1, "debolezza": 1, "anziana": 3, "siccome": 1, "potevo": 1, "permettermi": 1, "pagare": 10, "affitto": 2, "straniero": 3, "bolkestein": 1, "rischio": 1, "200mila": 1, "aziende": 3, "italiane": 2, "soli": 2, "male": 6, "accompagnati": 1, "muoviti": 1, "vuoi": 5, "ricordare": 1, "condannato": 1, "reclusione": 1, "risarcimento": 2, "ladro": 10, "giudice": 4, "preferiva": 1, "venisse": 1, "tabaccaio": 2, "andremo": 1, "principio": 2, "reato": 3, "eccesso": 3, "sacro": 1, "parlo": 1, "terza": 4, "media": 1, "messo": 1, "vincenti": 1, "distrutte": 2, "tripla": 1, "laurea": 1, "doppio": 1, "master": 1, "criminale": 1, "malati": 1, "ufficiali": 1, "smontare": 2, "varesestan": 1, "sagrato": 1, "duomo": 1, "trasformato": 1, "occasione": 2, "suk": 1, "canti": 1, "danze": 1, "mezzelune": 1, "islamiche": 1, "ambito": 1, "festival": 1, "promosso": 1, "coordinamento": 1, "migrante": 1, "patrocinio": 1, "comune": 4, "attento": 1, "smartphone": 1, "caldo": 2, "succede": 1, "informazioni": 1, "picchiato": 3, "selvaggiamente": 1, "banda": 4, "ladri": 3, "nordafricani": 2, "seriate": 1, "fatti": 6, "citt\u00e0": 21, "italana": 1, "italicum": 1, "numeretto": 1, "magico": 1, "ripeto": 3, "ripetiamo": 1, "entrer\u00e0": 1, "ah": 1, "compresi": 1, "propri": 2, "pap\u00e0": 6, "schifosi": 2, "torturato": 1, "ferro": 1, "stiro": 1, "rovente": 1, "coppia": 2, "anziani": 6, "presi": 1, "marocchini": 1, "precedenti": 1, "penali": 1, "rispedirli": 2, "tradito": 1, "posso": 2, "signor": 11, "complice": 5, "disastro": 3, "troviamo": 1, "vengo": 1, "arrestato": 3, "difetti": 2, "ipocrita": 2, "abano": 1, "terme": 1, "scendono": 2, "massa": 3, "vorrebbe": 3, "base": 2, "nato": 1, "resistere": 2, "maledette": 1, "gi\u00f9": 3, "chiara": 2, "asili": 4, "risposte": 2, "troppo": 10, "risposta": 2, "approfondisci": 1, "calabria": 1, "problemi": 4, "risolvono": 1, "importando": 1, "studio": 2, "finta": 3, "differenza": 1, "invadono": 1, "comprensione": 1, "malafede": 1, "glielo": 2, "spiegate": 1, "vergognoso": 1, "vittima": 1, "esodata": 1, "malato": 1, "vive": 3, "assegno": 1, "invalidit\u00e0": 2, "spende": 1, "fuggono": 1, "protestare": 2, "cattivo": 2, "wi": 2, "fi": 2, "mancante": 1, "servono": 5, "renzistaisereno": 1, "buoniste": 2, "affermava": 1, "parecchie": 1, "vere": 1, "riesce": 1, "alimentare": 1, "costante": 1, "clima": 1, "insicurezza": 1, "invasa": 1, "bande": 2, "moltiplicano": 1, "risse": 1, "indicarci": 1, "responsabili": 1, "ripulita": 2, "nessuno": 3, "pontida16": 4, "continua": 5, "splendido": 1, "palco": 1, "sviluppo": 1, "ricchi": 1, "scopri": 1, "saviano": 1, "sostengono": 1, "definiti": 1, "rivolga": 1, "mafiosi": 1, "stupratori": 3, "comunque": 3, "fedez": 2, "preferisco": 3, "corona": 1, "fabrizio": 1, "andr\u00e9": 1, "calcistici": 1, "eccola": 1, "spiegata": 1, "grafici": 1, "cifre": 2, "simulazioni": 1, "progressiva": 1, "coperture": 1, "puoi": 2, "proposte": 3, "chiare": 1, "crediti": 1, "inesigibili": 1, "dichiarate": 1, "versate": 1, "evasori": 2, "semplicemente": 2, "pagarle": 1, "perseguitati": 1, "equitalia": 5, "domanda": 3, "concreta": 1, "pretendere": 1, "somme": 1, "vedranno": 1, "stracciare": 1, "cartelle": 2, "esattoriali": 2, "chiedere": 3, "dovuto": 2, "liberi": 10, "disoccupazione": 2, "nuove": 1, "proteste": 1, "livorno": 1, "aggressione": 1, "passanti": 1, "soddisfatti": 1, "servizi": 1, "offriamo": 1, "borgosesia": 1, "vercelli": 1, "speciale": 1, "gianluca": 1, "buonanno": 1, "germania": 2, "vincono": 1, "alleati": 1, "perdono": 1, "esagero": 1, "vero": 5, "esasperati": 1, "invenzione": 1, "capalbio": 1, "dunque": 2, "buonisti": 4, "sinistri": 3, "diritto": 4, "lamentarsi": 1, "situazioni": 2, "conoscete": 1, "conselve": 1, "voluta": 2, "finanziata": 1, "bloccare": 2, "sostituzione": 1, "appuntamento": 2, "luned\u00ec": 1, "ritrovati": 1, "buonasera": 1, "pinzolo": 1, "val": 1, "rendena": 1, "trentino": 1, "preghiere": 1, "pensionato": 3, "elemosina": 1, "moustafa": 1, "hussein": 1, "massacra": 2, "botte": 3, "liberato": 2, "accoltellare": 1, "ragazzo": 3, "difeso": 1, "forandogli": 1, "polmone": 1, "rischiando": 2, "ucciderlo": 1, "tranquilli": 2, "palla": 1, "estremista": 2, "sporco": 1, "utile": 1, "cl": 1, "nasconde": 1, "vie": 2, "marted\u00ec": 1, "creato": 2, "formazione": 3, "conoscenza": 1, "iscrizioni": 3, "edizione": 2, "corso": 2, "scuoladiformazionepolitica": 4, "alimenta": 1, "clandestina": 2, "attentati": 4, "accampamenti": 2, "cielo": 1, "aperto": 1, "inversione": 1, "u": 1, "autostrada": 1, "cisa": 1, "romania": 1, "regalo": 2, "laura": 2, "immagina": 1, "avanguardia": 1, "offrono": 1, "stile": 1, "imitare": 1, "sgonfialaboldrini": 1, "spari": 1, "stavolta": 1, "monaco": 2, "novantenni": 1, "picchiati": 2, "torturati": 1, "provo": 2, "pena": 7, "pensa": 2, "esista": 1, "tentato": 1, "scippare": 1, "donna": 7, "passeggino": 1, "palermo": 3, "insulta": 2, "grido": 1, "fanculo": 3, "trova": 2, "accontentiamolo": 1, "biglietto": 3, "sola": 1, "andata": 1, "somalia": 1, "sangue": 7, "distruzione": 2, "disgustosi": 1, "cani": 3, "dio": 1, "protegga": 1, "risate": 1, "chiese": 1, "abruzzo": 1, "amorevoli": 1, "affermazioni": 1, "tunisini": 1, "condannati": 1, "intorno": 2, "moschea": 1, "andria": 1, "puglia": 2, "indottrinamento": 1, "addestramento": 1, "finalizzata": 1, "reclutamento": 1, "aspiranti": 1, "martiri": 1, "assolti": 1, "cassazione": 1, "sussiste": 1, "immagino": 1, "continueranno": 1, "ansa": 1, "sardegna": 3, "notizie": 1, "disabile": 1, "filmato": 1, "web": 1, "caa2b4fa": 1, "a937": 1, "4e4d": 1, "8d25": 1, "51eec7cc7c90": 1, "html": 1, "controllore": 2, "dimostrare": 1, "eccetto": 1, "tedeschi": 1, "idioti": 1, "salutiamo": 1, "catania": 2, "trascorrono": 1, "placide": 1, "giornate": 1, "villeggianti": 1, "sport": 1, "vacanza": 1, "area": 2, "expo": 1, "pronta": 2, "indicazione": 2, "monolocali": 1, "condizionata": 1, "bagno": 1, "camera": 1, "populista": 1, "fascista": 1, "imparare": 1, "conoscere": 2, "confrontarsi": 1, "pensaci": 1, "manicomio": 2, "nigeriano": 1, "riconosciuto": 1, "status": 1, "rimanere": 1, "modico": 1, "60mila": 1, "pubblici": 3, "fissato": 1, "udienza": 1, "ricorso": 2, "casi": 1, "ammazzo": 2, "simpatico": 2, "extracomunitario": 1, "pescara": 1, "esiste": 1, "son": 1, "esagerazioni": 1, "scemi": 1, "combattere": 2, "fonti": 1, "denaro": 1, "armano": 1, "petrolio": 1, "annientare": 1, "mezzi": 2, "bestie": 2, "chiacchiere": 2, "fermano": 1, "orrore": 1, "sbaglia": 1, "paga": 3, "annullano": 1, "elezioni": 2, "presidenziali": 1, "bretagna": 1, "brexit": 4, "propone": 1, "limitata": 1, "servo": 1, "vento": 1, "arriver\u00e0": 1, "mollate": 1, "mollo": 1, "rom": 21, "nullatenenti": 1, "porsche": 1, "protesta": 4, "lamentano": 2, "imprigionati": 1, "diamo": 4, "poveretti": 2, "colletta": 1, "presento": 1, "juncker": 1, "traballante": 1, "commissione": 1, "commenti": 2, "interruzioni": 1, "vespa": 1, "europeisti": 1, "riconoscono": 2, "ue": 1, "valori": 2, "ragioni": 1, "nacque": 1, "svegliando": 1, "parma": 4, "cantiere": 4, "quarta": 1, "tocca": 2, "fuma": 1, "pensate": 2, "emigranti": 1, "dirlo": 1, "passi": 1, "contestatore": 1, "peccato": 1, "diminuite": 1, "solito": 1, "bacheca": 3, "piove": 1, "settore": 5, "liberare": 2, "energie": 1, "chiede": 3, "socio": 1, "occulto": 1, "carmagnola": 1, "parti": 1, "dovrebbero": 2, "farsi": 3, "pensioni": 5, "devi": 2, "crepare": 1, "ingrassando": 1, "solite": 1, "truffatore": 1, "villaggio": 1, "olimpico": 1, "occupato": 4, "comandano": 1, "libici": 1, "eritrei": 1, "impunit\u00e0": 1, "fame": 2, "prendendo": 3, "culo": 2, "consideravano": 1, "spaccano": 1, "sfasciano": 1, "mobili": 1, "gettano": 1, "risultato": 2, "spostati": 1, "stelle": 2, "messina": 1, "umilia": 1, "telerenzi": 3, "fenomeno": 1, "beccato": 1, "sperate": 1, "oltre": 2, "potrebbero": 1, "vedersi": 1, "recapitare": 1, "cartella": 2, "chiarezza": 1, "mostrare": 1, "scettici": 1, "parleremo": 1, "corsi": 1, "geniale": 1, "semplicit\u00e0": 1, "povert\u00e0": 1, "dite": 3, "capiranno": 1, "stomaci": 1, "egiziano": 1, "accoltella": 1, "ammazza": 2, "apprezzamenti": 1, "fidanzata": 1, "egitto": 1, "sedere": 2, "temo": 1, "ritroveremo": 1, "circolazione": 1, "accogliamo": 1, "umanit\u00e0": 1, "albergatore": 1, "intascher\u00e0": 1, "centinaio": 2, "oro": 4, "buoni": 1, "arricchiscono": 1, "fallire": 2, "stare": 5, "pronti": 2, "istruzioni": 2, "indiretta": 1, "truffa": 3, "infamia": 1, "tentata": 1, "pelle": 3, "disabili": 2, "cercando": 1, "tassare": 1, "sentenza": 1, "evitarlo": 1, "pericoloso": 2, "nervosetti": 1, "imbavagliamo": 1, "rivogliobologna": 1, "accadeva": 1, "malattie": 1, "epidemiche": 1, "mondiale": 1, "superassero": 1, "nascite": 1, "estinguendo": 1, "spesa": 2, "trovino": 1, "rendere": 3, "nido": 3, "gratuiti": 3, "arrivare": 4, "studenti": 1, "universitari": 1, "violenti": 3, "casinisti": 1, "rieducare": 1, "odiano": 2, "impediscono": 1, "prof": 1, "panebianco": 1, "liberamente": 1, "nonostante": 2, "negataci": 1, "candidata": 2, "borgonzoni": 1, "bolognesi": 2, "internazionale": 2, "convenienza": 1, "organizzare": 1, "campi": 3, "identificazione": 1, "zone": 1, "libere": 1, "evitando": 2, "trasformare": 1, "mediterraneo": 1, "fossa": 1, "diritti": 3, "vorrei": 2, "occupasse": 1, "intera": 1, "ostaggio": 3, "bolognalibera": 1, "romeni": 1, "svaligiava": 1, "oppongono": 1, "arresto": 2, "personcine": 1, "sostenere": 1, "candidati": 2, "segnale": 1, "vai": 2, "pagasse": 1, "banchiere": 1, "obbligazionisti": 1, "lavoratori": 1, "vergogno": 1, "dispiacere": 3, "amichetto": 1, "renzino": 7, "monologhi": 1, "mattinata": 1, "proporre": 1, "teatro": 3, "golden": 1, "lista": 1, "libreria": 1, "borri": 1, "books": 1, "borribooks": 1, "stazione": 3, "termini": 2, "presentazione": 1, "matteo": 3, "vendite": 1, "libri": 1, "saggistica": 1, "boicottaggi": 1, "furibonda": 1, "autobus": 3, "passeggeri": 1, "conducente": 1, "gang": 1, "noooooo": 1, "invenzioni": 1, "altromeschino": 1, "aiutarci": 1, "scheda": 1, "simbolo": 2, "ripuliamo": 2, "particolare": 1, "viaggiatori": 1, "lavora": 1, "treni": 1, "metropolitane": 1, "scoppiando": 1, "negano": 3, "volete": 3, "sotto": 7, "preferiscono": 1, "ignorarci": 1, "eroi": 1, "secchiate": 1, "acqua": 3, "moriremo": 3, "arriviamo": 2, "piena": 5, "segui": 1, "libericonsalvini": 1, "oppure": 2, "voglia": 3, "ascoltarci": 1, "collegamento": 1, "giorgia": 2, "meloni": 2, "sostegno": 4, "matteorisponde": 1, "chiuder\u00f2": 1, "campagna": 1, "gioved\u00ec": 1, "giugno": 2, "verdi": 1, "spacciano": 1, "zecche": 2, "tenere": 2, "lezioni": 2, "favore": 1, "ritirati": 1, "esilio": 1, "monsignore": 1, "suggerisco": 1, "ricordarsi": 1, "straccio": 1, "permettersi": 1, "sbaglio": 1, "straparla": 1, "ricoverato": 1, "vecchio": 2, "arnese": 1, "comunista": 1, "teoria": 1, "occupare": 1, "muore": 4, "svelta": 1, "ospizio": 1, "gigante": 1, "cronacacriminale": 1, "tgcom24": 1, "occupazioni": 3, "unanziana": 1, "allospizio": 1, "ritorno": 1, "corriere": 2, "nefandezze": 1, "permetto": 1, "denunciare": 1, "illegalit\u00e0": 4, "andando": 1, "persona": 1, "provocatore": 1, "abituata": 1, "periferia": 1, "partite": 2, "oderzo": 2, "dirigenti": 1, "miseri": 1, "invalido": 2, "coop": 1, "gestire": 3, "sbarcano": 1, "danno": 3, "ingiustizie": 1, "monti": 3, "cancella": 1, "massacrano": 2, "abbassi": 1, "reimmetti": 1, "circolo": 1, "compra": 2, "fabbrica": 2, "assume": 1, "semplice": 1, "sconfigge": 1, "demenziale": 1, "burocrazia": 2, "discutere": 1, "mando": 2, "ginosini": 1, "accolto": 2, "alcanices": 1, "strapieno": 1, "agricoltura": 3, "turismo": 1, "covi": 2, "concorrenza": 1, "oneste": 1, "connessione": 2, "permettendo": 2, "ricevuto": 1, "esattoriale": 1, "pur": 1, "ragione": 4, "anticipare": 1, "dovute": 2, "presunto": 1, "magliana": 1, "asociali": 1, "istruttivo": 2, "rimanga": 1, "votate": 2, "perde": 1, "ottobre": 1, "giochi": 1, "discutendo": 1, "ttip": 1, "salute": 1, "uniti": 1, "pesticidi": 1, "vietati": 1, "venduti": 1, "porteranno": 1, "tavole": 2, "alimenti": 1, "umbertide": 1, "perugia": 1, "riguarda": 2, "metro": 3, "culturali": 2, "moschee": 3, "conoscono": 1, "finanziatori": 1, "versilia": 1, "picchiata": 2, "locale": 2, "rapinatori": 1, "volto": 1, "coperto": 2, "armati": 1, "piccone": 2, "pistola": 1, "sparato": 2, "moglie": 4, "uccidendo": 2, "carcere": 2, "stancher\u00f2": 1, "ricordarlo": 1, "castello": 1, "umbria": 1, "governata": 1, "settant": 1, "ladruncole": 1, "cominciano": 1, "tribunale": 2, "interviene": 1, "chiederlo": 1, "attenti": 2, "portafogli": 1, "rubato": 2, "buttano": 1, "bont\u00e0": 1, "dedica": 1, "medio": 1, "canzone": 1, "estate": 2, "cornetto": 1, "algida": 1, "marchio": 1, "multinazionale": 1, "unilever": 1, "manger\u00f2": 1, "cornetti": 1, "sammontana": 1, "sanson": 1, "produttori": 1, "civili": 1, "castrazione": 3, "chimica": 3, "zac": 1, "rieccomi": 3, "metri": 1, "monumenti": 1, "occupata": 1, "degrado": 1, "topi": 1, "spazzatura": 2, "possano": 1, "crescere": 2, "ripuliamoroma": 1, "vado": 2, "adozioni": 5, "gay": 4, "tante": 5, "concrete": 2, "realizzerei": 1, "bufalaro": 1, "copiare": 1, "francia": 3, "provate": 1, "valutato": 1, "toglie": 1, "ulteriore": 1, "giudici": 1, "abusive": 2, "organizzi": 1, "vattene": 3, "posizione": 1, "beccatevi": 1, "terapista": 2, "familiare": 2, "trasmesso": 1, "saudita": 2, "lezione": 1, "picchiare": 2, "dotta": 1, "dissertazione": 1, "tipo": 1, "bastone": 2, "usare": 1, "professore": 1, "molte": 1, "aspirino": 1, "rapporto": 1, "uguaglianza": 1, "atteggiamento": 1, "punire": 1, "tollera": 1, "giustifica": 1, "personaggi": 2, "tradotto": 1, "picchia": 1, "570f6140": 1, "11e6": 1, "a60e": 1, "5fac25fd8ba7": 1, "bellissima": 2, "savona": 1, "grida": 1, "kompagni": 1, "urlano": 1, "bacioni": 1, "giornale": 2, "parlato": 1, "contestatori": 1, "salone": 2, "numero": 1, "guardarli": 1, "bacione": 1, "giovanissimi": 1, "venuti": 1, "trovarmi": 1, "buone": 1, "intollerante": 1, "zecca": 2, "tantissimi": 1, "plauso": 1, "aggrediti": 2, "arrestando": 1, "mantenuto": 1, "fondi": 2, "intero": 1, "parabole": 2, "ancoraaa": 1, "ospiti": 3, "otterr\u00e0": 1, "controllano": 2, "verificano": 2, "entra": 3, "chiunque": 2, "mandarli": 1, "montagnola": 1, "bloccano": 3, "lanciano": 1, "oggetti": 1, "impedirmi": 1, "incontrare": 2, "riservata": 1, "matera": 1, "aspettatevi": 1, "vederlo": 1, "parisi": 1, "silvio": 1, "gode": 1, "fini": 1, "casini": 1, "diceva": 2, "espressione": 1, "cattiva": 1, "istiga": 1, "odio": 2, "vigliacca": 1, "gufava": 1, "portasse": 1, "sfortuna": 1, "stanotte": 1, "trionfato": 1, "primarie": 1, "palio": 1, "philadelphia": 1, "varese": 1, "zingara": 2, "mostra": 1, "chiappe": 1, "semaforo": 1, "schifezze": 3, "magicamente": 1, "spariranno": 1, "linea": 1, "torna": 2, "ripulire": 2, "mantenete": 1, "\u201d": 5, "delinquenza": 1, "arrangia": 1, "onestamente": 1, "delinque": 1, "moderazione\u201d": 1, "ruspaaa": 1, "grosseto": 1, "tiburtina": 1, "criminalit\u00e0": 1, "doria": 1, "obbligati": 1, "rubare": 1, "risponde": 3, "manderei": 2, "ruspaaaa": 1, "stamane": 1, "latina": 2, "dipendesse": 1, "raderei": 1, "suolo": 1, "pienaaaaa": 1, "convertito": 1, "cercata": 1, "viaggio": 1, "pronto": 2, "soccorso": 1, "diventati": 1, "furbetti": 1, "cure": 1, "gratis": 4, "aspettare": 1, "dialogare": 1, "costa": 1, "telefonata": 1, "premier": 1, "australiano": 1, "misfatti": 1, "ivan": 1, "vinitaly": 1, "televisioni": 1, "smettere": 1, "proteggendo": 1, "merci": 2, "devo": 2, "processato": 1, "difendo": 1, "processatemi": 1, "attaccare": 1, "mattarella": 1, "frontiere": 4, "ingresso": 2, "uomini": 2, "controllate": 1, "trivellazioni": 1, "territorio": 1, "marche": 1, "romagna": 1, "cesenatico": 1, "stragrande": 1, "stufi": 1, "gliela": 1, "stringereste": 1, "friedman": 1, "n\u00e9": 2, "volgare": 1, "cazzo": 2, "finale": 1, "emilia": 2, "modena": 2, "ricostruire": 1, "fiera": 1, "espositori": 1, "illustratori": 1, "aprire": 1, "menti": 1, "fantasia": 1, "popolari": 1, "graduatoria": 1, "roberto": 1, "civile": 1, "trenta": 1, "rientrare": 2, "abusivamente": 1, "pronte": 1, "accuse": 1, "eccoli": 1, "buongiorno": 2, "istigatori": 1, "violenza": 1, "professoressa": 1, "autoprodotta": 1, "maccheroni": 2, "ristorante": 1, "est": 3, "arrestati": 3, "marzo": 1, "fiancheggiatori": 1, "garage": 1, "scantinati": 1, "dismessi": 1, "mascherate": 1, "associazioni": 1, "zitti": 2, "seri": 1, "rendete": 1, "fanatici": 2, "potenziali": 1, "andatelo": 1, "quegli": 1, "incapaci": 4, "trento": 1, "cinquanta": 1, "documenti": 1, "rompono": 1, "brigatisti": 1, "ballar\u00f2": 1, "applaude": 1, "battaglia": 2, "barbaro": 1, "sig": 2, "cazzola": 2, "provato": 1, "dedicato": 3, "anime": 1, "toni": 1, "indecenti": 1, "scorretti": 1, "insultare": 1, "aggredire": 1, "lecito": 1, "w": 3, "coerenza": 1, "servizio": 1, "tg1": 1, "israele": 2, "reagisce": 1, "piet\u00e0": 2, "kamikaze": 1, "esplodere": 1, "compagno": 2, "vauro": 1, "vaglielo": 1, "racconta": 1, "sindacati": 2, "rivolta": 2, "sociale": 2, "simboliche": 1, "sciopero": 2, "complici": 2, "pagato": 3, "cagliari": 2, "identificati": 1, "rispediti": 1, "indietro": 3, "dirigente": 1, "svela": 1, "realmente": 1, "impronte": 1, "rifiutati": 1, "stamattina": 1, "scafisti": 1, "controllo": 1, "pericolosi": 3, "prelevare": 1, "bancomat": 1, "coccole": 2, "buonismo": 3, "nome": 2, "allah": 2, "imam": 3, "sciacallaggio": 1, "vaff": 2, "mettono": 2, "tagliagole": 1, "regalano": 2, "turchia": 1, "finanzia": 1, "imbecilli": 2, "vengano": 1, "dimenticate": 1, "piene": 1, "reagire": 1, "quartieri": 1, "cova": 1, "islamista": 1, "controllare": 4, "indagare": 1, "espellere": 3, "zitto": 1, "rassegno": 1, "bisogna": 1, "massacrando": 1, "condividete": 1, "stanco": 1, "bla": 3, "intellettuali": 1, "gad": 1, "lerner": 1, "costi": 2, "religione": 1, "rispedisco": 1, "molenbeek": 1, "qua": 1, "svegliamo": 1, "carne": 1, "macello": 1, "mastella": 1, "nonmenefottenulladisalvini": 1, "forza": 1, "portare": 1, "porcherie": 1, "pescatori": 1, "messi": 1, "ginocchio": 1, "consumiamo": 1, "difendiamo": 1, "mangino": 2, "dialogo": 1, "surreale": 1, "occupa": 1, "fregando": 1, "pretenderebbe": 1, "trovassi": 1, "genitore": 1, "ricevere": 2, "confermo": 1, "importare": 1, "400mila": 1, "mestiere": 1, "dichiarare": 1, "stabilimenti": 1, "balneari": 1, "unici": 2, "passati": 1, "piccolo": 3, "tommy": 4, "uscir\u00e0": 1, "permessi": 1, "bestia": 3, "condannata": 1, "ergastolo": 4, "ribaltare": 1, "invito": 1, "visitare": 1, "giuseppe": 2, "aggredito": 2, "rapinato": 2, "negozio": 1, "sinistro": 2, "riempirci": 2, "microfono": 1, "spacca": 1, "produrre": 1, "permesso": 3, "uccide": 2, "merita": 2, "rivedere": 1, "sicilia": 2, "ortofrutticolo": 1, "rg": 1, "grammichele": 1, "ct": 1, "invade": 1, "controllati": 1, "olio": 1, "arance": 1, "marocchine": 2, "bevano": 1, "rovinati": 1, "vadano": 1, "vergognare": 1, "dirgli": 1, "certezza": 3, "magie": 1, "avvocato": 1, "possiede": 1, "barca": 1, "bravo": 2, "massimo": 2, "giletti": 1, "vicenda": 1, "molla": 2, "dammi": 1, "sigarette": 1, "violento\u201d": 1, "immigrato": 2, "noto": 1, "titolare": 1, "tabaccheria": 1, "intervenuti": 1, "clienti": 1, "pulizia": 1, "indifferenza": 1, "consigliere": 1, "comunale": 1, "presenta": 1, "disinfettante": 1, "garbatella": 1, "abbracciamo": 1, "forte": 2, "maledetta": 1, "cancelleremo": 3, "andati": 1, "bollette": 2, "container": 3, "emiliani": 1, "casa\u201d": 1, "telecamera": 1, "vaffa": 1, "sceriffo\u201d": 1, "marianna": 1, "arrivata": 1, "vendersi": 1, "fedi": 1, "nuziali": 1, "sopravvivere": 3, "fregano": 1, "signore\u201d": 1, "cappello": 1, "spara": 2, "cazzate": 2, "dvd": 1, "lavatrice": 1, "paio": 1, "scarpe": 2, "pordenone": 1, "macedone": 1, "veniva": 1, "coccolato": 1, "regione": 1, "friuli": 2, "venezia": 2, "giulia": 2, "sussidio": 1, "governati": 1, "manderemo": 1, "nazisti": 2, "rossi": 2, "devastano": 1, "postazioni": 1, "romaparlitu": 2, "partecipato": 1, "romani": 2, "avantiiiii": 1, "luoghi": 1, "orari": 1, "noiconsalvini": 2, "costrette": 1, "armarsi": 1, "fuksas": 1, "spettacolare": 1, "domestico": 1, "tipico": 1, "radical": 2, "chic": 2, "portafoglio": 1, "antonio": 2, "foggia": 1, "prenderla": 1, "farla": 2, "marcire": 1, "quaranta": 1, "ascoltiamo": 1, "parli": 1, "postazione": 1, "febbraio": 1, "scegli": 1, "lettura": 1, "occidente": 1, "combattendo": 2, "previsto": 1, "ida": 1, "magli": 1, "tor": 1, "sapienza": 1, "giocattolo": 1, "tenete": 1, "duro": 1, "parlando": 1, "chili": 1, "persi": 1, "gianni": 1, "tonelli": 1, "sap": 1, "sindacato": 1, "autonomo": 1, "arrende": 1, "tutela": 1, "divisa": 1, "palazzi": 1, "nascosto": 1, "iostocontonelli": 1, "pesca": 1, "francesi": 1, "danneggiare": 1, "privatizzare": 1, "canone": 1, "rapine": 1, "affiggono": 1, "armato": 1, "sparo": 1, "votata": 1, "toccare": 2, "reversibilit\u00e0": 1, "vedovi": 1, "vedove": 2, "festeggiamenti": 1, "carmelo": 1, "anziano": 1, "vista": 1, "uso": 1, "orecchio": 1, "aziz": 1, "ritrova": 1, "piede": 1, "commessi": 1, "parlano": 3, "nega": 2, "nemico": 2, "tosta": 1, "porcheria": 1, "chiedi": 1, "tommaso": 1, "pestato": 2, "perseguitato": 1, "segnalato": 1, "usa": 1, "cesso": 1, "abbraccia": 1, "accendete": 1, "ruspe": 1, "capirlo": 1, "riprendiamoci": 3, "abitanti": 2, "vietato": 1, "spaventare": 2, "definire": 1, "domattina": 1, "lampedusa": 1, "sinistrati": 1, "20mila": 1, "pavia": 1, "entrati": 1, "bar": 2, "fucile": 1, "denunciato": 2, "bastaaaaaaaaaa": 1, "versato": 1, "contributi": 2, "schiatta": 1, "han": 1, "bingo": 1, "fregarsene": 1, "cazzata": 1, "farne": 1, "giornalisti": 1, "affamano": 1, "spendono": 1, "attenzione": 1, "grilletto": 1, "sparate": 1, "rapinatore": 1, "mela": 1, "ricoveratelaaaa": 1, "bruno": 1, "cazzi": 1, "democratici": 1, "antifascisti": 1, "fermati": 1, "furgone": 1, "carico": 1, "regali": 1, "spaventano": 1, "incontrate": 1, "vivace": 1, "inventiva": 1, "cultura": 4, "provocavano": 1, "incidenti": 1, "credere": 1, "urto": 1, "danneggiato": 1, "orologio": 1, "valore": 1, "chiedevano": 1, "passatempo": 1, "zingari": 1, "ville": 1, "assicurerei": 1, "personalmente": 1, "puniti": 1, "meritano": 2, "stacchio\u201d": 1, "tartassati": 2, "nero": 1, "schiavit\u00f9": 1, "jobs": 1, "act": 1, "fritta": 1, "repubblica": 1, "islamica": 3, "dewsbury": 1, "inglese": 1, "divenuta": 1, "culla": 2, "fallimento": 1, "multiculturalismo": 1, "forzato": 1, "diventano": 1, "renzalfano": 2, "fessa": 1, "vacanze": 1, "sci": 1, "escursioni\u201d": 1, "guida": 1, "musei": 1, "compreso": 1, "vale": 1, "visione": 1, "omicidio": 1, "david": 1, "raggi": 2, "sgozzato": 1, "terni": 1, "marocchino": 2, "ubriaco": 1, "drogato": 1, "espulso": 1, "fedina": 1, "penale": 1, "lunga": 1, "pagine": 1, "circolare": 1, "qualit\u00e0": 1, "dato": 1, "rito": 1, "abbreviato": 1, "morto": 1, "vigilato": 1, "nooo": 1, "disposti": 1, "fisco": 2, "preso": 1, "cambieremo": 2, "pi\u00f9liberipi\u00f9forti": 1, "utero": 1, "renderei": 1, "costose": 1, "coppie": 2, "arricchisce": 1, "chiuda": 1, "amiche": 2, "rispondiamo": 2, "insegnante": 1, "renzuccio": 1, "giocattolino": 1, "onori": 1, "iran": 1, "benpensante": 1, "sceglie": 1, "trattate": 1, "colonie": 1, "affondano": 1, "derubato": 1, "allarme": 1, "richiedenti": 1, "molestano": 2, "accorsi": 1, "difenderla": 1, "africani": 1, "annoiati": 1, "passare": 1, "simpaticamente": 1, "calcio": 1, "zitta": 1, "derubati": 1, "abitazione": 1, "aggressore": 1, "concidenze": 1, "porci": 2, "nascoste": 1, "eroina": 1, "prato": 1, "risorse": 2, "ammassi": 1, "rifiuti": 1, "bruciano": 2, "accoltellamenti": 2, "commerci": 1, "illegali": 1, "allacci": 1, "corrente": 1, "tizio": 1, "provoca": 1, "responsabilit\u00e0": 2, "tranquillo": 1, "provochiamo": 1, "sgomberiamo": 1, "strappo": 1, "capelli": 1, "scaraventa": 1, "arresti": 1, "domiciliari": 1, "maestra": 1, "suggerireste": 1, "volevo": 1, "sottomessa": 1, "ribellata": 1, "matrimonio": 1, "combinato": 1, "amani": 1, "bimba": 1, "rispetta": 1, "jihadista": 1, "pentito": 1, "addestriamo": 1, "siria": 3, "compiere": 1, "infiltrati": 1, "sottolineato": 1, "francese": 1, "vedono": 1, "pericoli": 1, "avanza": 1, "altra": 1, "virus": 1, "marine": 1, "fianco": 1, "chiavi": 1, "crolli": 1, "reggio": 1, "bullizzata": 1, "minacciata": 1, "mandata": 1, "coetanee": 1, "velo": 2, "considerano": 1, "impura": 1, "calare": 1, "braghe": 1, "populismo": 1, "curatelo": 1, "dimentichiamo": 2, "oriana": 1, "scritto": 1, "montagna": 1, "abbasso": 1, "statue": 1, "rappresentano": 1, "imbarazzare": 1, "leader": 1, "iraniano": 1, "imbarazzato": 1, "myrta": 1, "tarvisio": 1, "colabrodo": 1, "sospendere": 1, "schengen": 2, "rigidi": 1, "chiudono": 2, "arriveranno": 1, "tempistiche": 1, "lente": 1, "addirittura": 1, "tar": 1, "potrebbe": 1, "diventare": 1, "svizzera": 1, "favorire": 1, "xenofobi": 1, "fascisti": 1, "leghisti": 1, "sessisti\u201d": 1, "maiconsalvini": 1, "lepen\u201d": 1, "vergognano": 1, "certe": 1, "adriano": 1, "piange": 1, "trieste": 1, "arrendono": 1, "arrivando": 1, "slovenia": 1, "chilometri": 2, "sguarniti": 1, "indumenti": 1, "coperte": 1, "sparsi": 1, "esce": 1, "metalmeccanico": 1, "stramaledetta": 1, "versare": 1, "poter": 3, "serio": 1, "cancellerebbe": 1, "affrontare": 1, "sentimentale": 1, "momento": 1, "nasce": 1, "naturali": 1, "preoccupati": 1, "banditi": 1, "audi": 1, "gialla": 1, "rabbia": 1, "tutelati": 1, "devasteranno": 1, "giuste": 1, "propriet\u00e0": 1, "privata": 3, "riprova": 1, "chiave": 1, "settimana": 1, "comincia": 1, "cosenza": 1, "commerciante": 1, "ambulante": 1, "soggiorno": 2, "aspirante": 1, "combattente": 1, "ammazzare": 1, "inetti": 1, "intervenire": 1, "secondi": 1, "opinione": 1, "stefano": 1, "candiani": 1, "nicola": 1, "porro": 1, "nobili": 1, "motivi": 1, "poltronari": 1, "stoccolma": 1, "eroica": 1, "sventa": 1, "furto": 1, "colpisce": 1, "stomaco": 1, "sputa": 1, "addosso": 2, "nordafricano": 1, "strano": 1, "gentaglia": 1, "contestato": 1, "striscione": 1, "ciocapi\u00e0t": 1, "ciarlatano": 1, "civilmente": 1, "medico": 2, "cuor": 1, "preferito": 1, "rifugiarsi": 1, "darsela": 1, "gambe": 1, "altroin": 1, "scorta": 2, "vigliacco": 1, "fonte": 2, "gelocal": 1, "gazzettadimantova": 1, "contestazione": 1, "sanita": 1, "rotoli": 1, "monteforte": 1, "irpino": 1, "avellino": 1, "sedare": 1, "lamentavano": 1, "gettando": 1, "finestre": 1, "idiozie": 1, "minimo": 1, "alzerebbe": 1, "voterebbe": 1, "direttive": 1, "europee": 1, "rinnovo": 1, "chissenefrega": 1, "baratro": 1, "francesco": 1, "giovane": 1, "esponente": 1, "stata": 1, "conveniente": 1, "guarda": 1, "tenuti": 1, "stretta": 1, "chicco": 1, "mister": 1, "spocchia": 1, "risposto": 1, "rime": 1, "sopporto": 1, "adatte": 1, "testimoni": 1, "inferiore": 1, "scientifico": 1, "eh": 1, "condivisione": 1, "femministe": 1, "cercare": 1, "albania": 1, "odia": 1, "fingere": 1, "litigare": 1, "riprendersi": 1, "regalati": 1, "letta": 1, "caro": 1, "vieni": 1, "riprenderti": 1, "rimani": 1, "chiacchierone": 1, "vittorio": 1, "sgarbi": 1, "completo": 1, "1v6hmwy": 1, "tranquillit\u00e0": 1, "pane": 2, "isola": 1, "deserta": 1, "farle": 1, "praticamente": 1, "risolto": 1, "pago": 1, "dipendenti": 3, "azienda": 2, "imprenditore": 2, "autodifesa": 1, "sgombero": 1, "tentare": 1, "civilizzarci": 1, "furti": 1, "copertoni": 1, "felicit\u00e0": 1, "milanesi": 1, "abitano": 1, "fregati": 1, "ferita": 1, "locali": 1, "funzionano": 1, "opporremo": 1, "occuparsi": 1, "cittadinanza": 1, "pensi": 1, "risarcire": 2, "timbrano": 1, "cartellino": 2, "verrebbero": 1, "cacciati": 1, "pedate": 1, "assumere": 1, "ingiuste": 2, "carlo": 1, "vanvera": 1, "evasione": 2, "campano": 1, "timbri": 1, "licenziare": 1, "pagherebbero": 1, "timbrare": 1, "angolo": 1, "buonista\u201d": 1, "tentativo": 1, "baudo": 1, "mah": 1, "segni": 1, "educata": 1, "precisa": 1, "evidente": 1, "punizione": 1, "corporale": 1, "permessa": 1, "rifiuta": 1, "letto": 1, "meriterebbe": 1, "bell": 1, "insegnamento": 1, "coprirti": 1, "provochi": 1, "mettete": 1, "lamentatevi": 1, "sessuali": 1, "intervistati": 1, "sentito": 2, "rispetti": 1, "cambi": 1, "adegui": 1, "torni": 1, "terremotato": 1, "emiliano": 1, "cavillo": 1, "burocratico": 1, "ricostruzione": 1, "ammala": 1, "tortura": 1, "difendersi": 1, "fornitori": 1, "sopravvivenza": 1, "fermato": 1, "rispedirei": 1, "volo": 1, "quarantina": 1, "spazientito": 1, "applausi": 1, "accoglienti": 1, "tradire": 1, "adulti": 1, "vicine": 1, "arrabbiate": 1, "elementare": 1, "solita": 1, "cooperativa": 1, "guadagna": 1, "mandi": 1, "geni": 1, "caserta": 1, "aiuto": 1, "psicologico": 1, "tentano": 1, "violentare": 1, "psicologa": 1, "ride": 1, "colta": 1, "informarsi": 1, "internet": 1, "abbassasse": 1, "livello": 1, "scoprirebbe": 1, "pedofili": 1, "applicata": 1, "civilissimi": 1, "recuperabile": 1, "curabile": 1, "avvisato": 1, "mantenuti": 1, "accoltellato": 1, "riceverebbero": 1, "esemplare": 1, "rischiano": 1, "rimettere": 1, "tasche": 1, "sede": 1, "quotidiano": 1, "distribuisce": 1, "gratuitamente": 1, "beni": 1, "alimentari": 1, "fila": 1, "slogan": 1, "cristina": 1, "fulvio": 1, "provando": 1, "ribaltiamo": 1, "piaciuto": 1, "sicuramente": 1, "messaggio": 1, "particolarmente": 1, "stupidi": 1, "pagherete": 2, "prezzo": 1, "errore": 1, "pagheranno": 1, "comando": 1, "youtube": 1, "watch": 1, "v": 1, "z9tx": 1, "t8uhaq": 1, "governanti": 1, "orde": 1, "respingere": 1, "ospitata": 1, "aggredite": 1, "organizzati": 1, "violentano": 1, "servetto": 1, "entrambi": 1, "accadendo": 1, "delinquere": 1, "danneggia": 1, "serenit\u00e0": 1, "dipende": 1, "metto": 1, "piccola": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2016/salvini_emoji b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_emoji new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_emoji @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2016/salvini_sleep b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_sleep new file mode 100644 index 0000000..640fbfb --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 5, "10": 5, "11": 2, "12": 10, "13": 6, "14": 6, "15": 4, "16": 1, "17": 3, "18": 5, "19": 6, "20": 3, "21": 3, "22": 2, "23": 0}, "Feb": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 8, "10": 3, "11": 4, "12": 11, "13": 2, "14": 3, "15": 4, "16": 1, "17": 7, "18": 3, "19": 13, "20": 2, "21": 2, "22": 0, "23": 0}, "Mar": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 5, "10": 3, "11": 1, "12": 5, "13": 2, "14": 3, "15": 3, "16": 2, "17": 4, "18": 3, "19": 3, "20": 1, "21": 1, "22": 0, "23": 0}, "Apr": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 1, "10": 8, "11": 2, "12": 7, "13": 1, "14": 5, "15": 2, "16": 2, "17": 11, "18": 4, "19": 6, "20": 1, "21": 1, "22": 1, "23": 1}, "May": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 5, "10": 4, "11": 8, "12": 7, "13": 8, "14": 7, "15": 7, "16": 2, "17": 0, "18": 4, "19": 10, "20": 4, "21": 3, "22": 0, "23": 0}, "Jun": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 2, "10": 5, "11": 6, "12": 4, "13": 5, "14": 0, "15": 3, "16": 6, "17": 2, "18": 8, "19": 6, "20": 4, "21": 0, "22": 1, "23": 0}, "Jul": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 1, "10": 1, "11": 2, "12": 4, "13": 2, "14": 1, "15": 0, "16": 1, "17": 2, "18": 1, "19": 6, "20": 4, "21": 0, "22": 0, "23": 0}, "Aug": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 1, "11": 3, "12": 0, "13": 2, "14": 1, "15": 1, "16": 1, "17": 0, "18": 0, "19": 2, "20": 0, "21": 2, "22": 0, "23": 0}, "Sep": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 4, "10": 3, "11": 2, "12": 7, "13": 3, "14": 8, "15": 2, "16": 1, "17": 2, "18": 2, "19": 2, "20": 3, "21": 2, "22": 1, "23": 0}, "Oct": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 9, "10": 2, "11": 5, "12": 6, "13": 1, "14": 2, "15": 3, "16": 3, "17": 6, "18": 1, "19": 5, "20": 3, "21": 0, "22": 0, "23": 1}, "Nov": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 11, "10": 5, "11": 13, "12": 7, "13": 8, "14": 5, "15": 2, "16": 5, "17": 4, "18": 7, "19": 7, "20": 7, "21": 6, "22": 3, "23": 0}, "Dec": {"0": 2, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 4, "11": 6, "12": 5, "13": 2, "14": 2, "15": 3, "16": 3, "17": 4, "18": 1, "19": 5, "20": 2, "21": 4, "22": 1, "23": 2}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2016/salvini_trend.json b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_trend.json new file mode 100644 index 0000000..e4afff2 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_trend.json @@ -0,0 +1 @@ +{"31-Dec": 1, "28-Dec": 2, "24-Dec": 2, "22-Dec": 3, "21-Dec": 2, "19-Dec": 1, "18-Dec": 1, "16-Dec": 1, "14-Dec": 3, "13-Dec": 3, "7-Dec": 3, "6-Dec": 5, "5-Dec": 4, "4-Dec": 4, "3-Dec": 4, "2-Dec": 3, "1-Dec": 4, "30-Nov": 3, "29-Nov": 3, "28-Nov": 4, "27-Nov": 3, "26-Nov": 4, "25-Nov": 6, "24-Nov": 2, "23-Nov": 3, "22-Nov": 4, "21-Nov": 2, "20-Nov": 4, "19-Nov": 3, "18-Nov": 2, "17-Nov": 3, "16-Nov": 5, "15-Nov": 1, "14-Nov": 3, "12-Nov": 3, "11-Nov": 7, "10-Nov": 3, "9-Nov": 4, "8-Nov": 1, "7-Nov": 1, "6-Nov": 2, "5-Nov": 2, "4-Nov": 6, "3-Nov": 4, "2-Nov": 1, "1-Nov": 1, "29-Oct": 1, "28-Oct": 1, "27-Oct": 2, "26-Oct": 3, "25-Oct": 2, "24-Oct": 2, "22-Oct": 1, "21-Oct": 2, "20-Oct": 1, "19-Oct": 1, "18-Oct": 1, "17-Oct": 1, "16-Oct": 1, "15-Oct": 2, "14-Oct": 1, "13-Oct": 2, "12-Oct": 2, "11-Oct": 2, "10-Oct": 1, "9-Oct": 3, "8-Oct": 2, "7-Oct": 1, "6-Oct": 1, "5-Oct": 3, "4-Oct": 2, "3-Oct": 3, "2-Oct": 1, "1-Oct": 2, "30-Sep": 2, "29-Sep": 4, "28-Sep": 2, "27-Sep": 2, "26-Sep": 2, "25-Sep": 1, "24-Sep": 2, "23-Sep": 2, "22-Sep": 2, "21-Sep": 2, "20-Sep": 2, "19-Sep": 2, "18-Sep": 3, "15-Sep": 2, "14-Sep": 1, "12-Sep": 2, "9-Sep": 1, "8-Sep": 2, "6-Sep": 3, "4-Sep": 2, "2-Sep": 1, "31-Aug": 2, "29-Aug": 1, "27-Aug": 1, "23-Aug": 1, "21-Aug": 1, "17-Aug": 1, "16-Aug": 2, "9-Aug": 1, "5-Aug": 1, "4-Aug": 1, "3-Aug": 1, "29-Jul": 1, "28-Jul": 1, "26-Jul": 1, "25-Jul": 1, "23-Jul": 1, "22-Jul": 2, "21-Jul": 1, "19-Jul": 2, "17-Jul": 2, "12-Jul": 2, "11-Jul": 1, "9-Jul": 1, "8-Jul": 2, "7-Jul": 1, "6-Jul": 2, "5-Jul": 1, "4-Jul": 1, "1-Jul": 2, "30-Jun": 1, "29-Jun": 2, "28-Jun": 2, "25-Jun": 4, "24-Jun": 2, "22-Jun": 1, "19-Jun": 1, "17-Jun": 3, "16-Jun": 2, "15-Jun": 3, "14-Jun": 1, "13-Jun": 2, "11-Jun": 1, "10-Jun": 2, "9-Jun": 3, "8-Jun": 2, "7-Jun": 1, "6-Jun": 2, "5-Jun": 1, "4-Jun": 3, "3-Jun": 2, "2-Jun": 4, "1-Jun": 7, "31-May": 5, "30-May": 2, "29-May": 4, "28-May": 1, "27-May": 2, "26-May": 3, "25-May": 3, "24-May": 3, "23-May": 2, "22-May": 4, "21-May": 2, "20-May": 6, "19-May": 5, "18-May": 5, "17-May": 4, "16-May": 2, "15-May": 3, "14-May": 5, "13-May": 2, "12-May": 3, "11-May": 1, "6-May": 1, "4-May": 1, "2-May": 1, "30-Apr": 2, "29-Apr": 1, "27-Apr": 1, "26-Apr": 1, "24-Apr": 1, "23-Apr": 1, "22-Apr": 1, "21-Apr": 4, "20-Apr": 4, "19-Apr": 4, "18-Apr": 2, "16-Apr": 3, "15-Apr": 2, "14-Apr": 1, "13-Apr": 1, "11-Apr": 3, "10-Apr": 2, "9-Apr": 2, "8-Apr": 1, "7-Apr": 2, "6-Apr": 4, "5-Apr": 3, "4-Apr": 3, "3-Apr": 2, "2-Apr": 1, "1-Apr": 1, "31-Mar": 1, "30-Mar": 1, "29-Mar": 1, "26-Mar": 1, "25-Mar": 1, "24-Mar": 3, "23-Mar": 3, "22-Mar": 2, "21-Mar": 1, "19-Mar": 1, "18-Mar": 2, "17-Mar": 1, "16-Mar": 1, "15-Mar": 2, "14-Mar": 2, "10-Mar": 2, "9-Mar": 1, "8-Mar": 1, "7-Mar": 2, "6-Mar": 1, "5-Mar": 1, "4-Mar": 1, "3-Mar": 1, "2-Mar": 1, "1-Mar": 2, "29-Feb": 2, "28-Feb": 1, "27-Feb": 1, "26-Feb": 3, "25-Feb": 4, "24-Feb": 4, "23-Feb": 2, "22-Feb": 2, "20-Feb": 1, "19-Feb": 1, "17-Feb": 2, "16-Feb": 4, "15-Feb": 3, "14-Feb": 1, "13-Feb": 1, "12-Feb": 2, "11-Feb": 3, "10-Feb": 1, "9-Feb": 2, "8-Feb": 3, "6-Feb": 4, "5-Feb": 4, "4-Feb": 3, "3-Feb": 2, "2-Feb": 4, "1-Feb": 3, "31-Jan": 2, "30-Jan": 2, "28-Jan": 1, "27-Jan": 4, "26-Jan": 4, "25-Jan": 5, "24-Jan": 2, "23-Jan": 2, "22-Jan": 2, "21-Jan": 3, "20-Jan": 5, "19-Jan": 4, "18-Jan": 3, "17-Jan": 1, "16-Jan": 1, "15-Jan": 2, "14-Jan": 2, "13-Jan": 5, "12-Jan": 4, "11-Jan": 2, "10-Jan": 1, "8-Jan": 2, "7-Jan": 2, "1-Jan": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2016/salvini_words b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_words new file mode 100644 index 0000000..15b4284 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2016/salvini_words @@ -0,0 +1,9568 @@ +discorso +diretta +festa +lega +albino +bergamo +fatemi +compagnia +amici +cosa +state +roba +matti +mancava +pure +presepe +musulmano +parroco +buonista +potenza +don +franco +corbo +sostanza +isis +colpa +israeliani +brutti +cattivi +altro +piace +madonna +burqa +colpa +chiusi +mentalmente +integralisti +accendiamo +candela +auguri +natale +ramadan +tel +parrocchia +festeggiamo +natale +ragazzi +combattuto +combattono +cancro +istituo +tumori +milano +realizzato +video +stupendo +pensiero +auguri +altro +migliori +fortune +nuovo +anno +doveroso +piace +pagina +https +www +facebook +com +ilprogettogiovani +diretta +sesto +san +giovanni +milano +stop +terrorismo +islamico +controlli +confini +coraggio +orgoglio +alfano +poletti +fedeli +amici +vari +governo +ridicolo +votosubito +pazzesco +adesso +isis +pubblica +video +italiano +spiega +uccidere +coltello +crociati +fabbricare +casa +bomba +eppure +certi +euroidioti +vorrebbero +mantenere +sanzioni +russia +unica +putin +terroristi +islamici +combatte +veramente +parigi +madrid +nizza +bruxelles +berlino +qualcuno +capirà +occorre +intensificare +controlli +possiamo +entrare +senza +morti +capodanno +scorso +colonia +reati +altro +sfondo +sessuale +indagati +stranieri +quali +richiedienti +asilo +speriamo +ripeta +quest +anno +stopinvasione +prima +tardi +voto +voto +parole +tanti +accordo +poi +però +bocciano +proposta +lavorare +subito +giorni +vicini +natale +approvare +subito +legge +elettorale +troppa +gente +incollata +poltrona +girare +votosubito +ora +diretta +roma +qualche +minuto +amici +riusciti +fare +quest +anno +soprattutto +ripromettiamo +fare +blocco +partenze +espulsione +immigrati +irregolari +punti +fondamentali +programma +legge +elettorale +votare +presto +votare +subito +votosubito +immigrati +oggi +piazza +vogliamo +soldi +vogliamo +confini +aveterottolepalle +qualche +minuto +insieme +quest +anno +alcune +scuole +festeggiano +natale +espellono +gesù +bambino +pazzesco +euro +moneta +fallita +sbagliata +rottamare +senza +moneta +giusta +andiamo +nessuna +parte +votosubito +unione +europea +meglio +unione +germanica +tace +clandestini +terroristi +attacca +putin +populisti +gabbia +liberarsi +no +referendum +stato +importante +eccome +anzi +fondamentale +stati +costretti +fare +governo +insieme +scotch +tirare +campare +qualche +mese +scusa +legge +altro +elettorale +convinto +primavera +voterà +già +renzi +detto +agosto +davano +matto +panettone +quest +anno +mangia +amichetti +ultimo +avanti +fiducia +molliamo +weekend +firmare +gazebo +centinaia +piazze +nord +sud +votosubito +strasburgo +sperando +santa +lucia +governo +porti +via +premio +poltronara +anno +ridicola +votosubito +quindici +giorni +fa +voleva +dimettersi +invece +sindacalista +cgil +tessile +diventa +ministro +istruzione +santa +lucia +infame +governo +portaci +via +girare +te +girano +palle +votosubito +sapete +cosa +fare +intervista +completa +altro +giorno +agorà +rai +possibilità +argomentare +credo +modo +abbastanza +chiaro +progetto +dopo +renzi +avanti +tutta +votosubito +auguro +italiani +costretti +ora +mesi +parlare +mattarellum +consultellum +proporzionale +vada +votare +subito +subito +subito +votosubito +euro +moneta +tedesca +esperimento +fallito +dobbiamo +uscire +sistema +infernale +massacrato +italia +primo +passo +tornare +grandi +chiama +sovranità +monetaria +votosubito +alfano +poltronaro +votosubito +qualche +minuto +insieme +noooooooo +giornalista +tedesco +amico +merkel +viene +ancora +fare +lezioncina +belli +unione +europea +euro +può +ascoltare +portato +saluto +asfaltato +sempre +collaborato +molto +bene +renzi +dispiaciuta +vinto +no +quando +merkel +triste +vuol +sempre +dire +buon +giorno +italia +girare +torniamo +padroni +casa +milioni +italiani +domenica +detto +re +nudo +ora +voto +qualsiasi +legge +elettorale +elezionisubito +fate +fretta +popolo +vuole +decidere +accordo +condividi +aspettando +alfano +diretta +rai +amici +seguitemi +diretta +milano +giorno +liberazione +nazionale +renzi +parla +futuro +renzi +dimette +casaaaaa +siiiiiiiii +anzi +nooooooo +renzi +incapace +anni +mezzo +milione +immigrati +sbarcati +costano +euro +giorno +testa +arricchire +cooperative +amici +amici +domenica +iovotono +anni +renzi +dice +aver +ridotto +tasse +chiedo +quest +anno +pagate +meno +tasse +domenica +iovotono +intervento +conclusivo +mentana +referendum +condividiamo +convinciamo +po +indecisi +amici +dicono +girano +video +sembra +chieda +votare +sì +ridicoli +rispondere +altro +inganni +rosiconi +vogliono +perdere +poltrona +importante +domenica +tanti +votare +iovotono +renzi +alfano +boschi +verdini +napolitano +prodi +mandiamo +casa +referendum +dettato +renzi +merkel +banche +quei +poteri +forti +prendono +italia +centro +commerciale +andare +fare +shopping +domenica +iovotono +italia +renzi +pd +tale +barzelletta +gioco +facile +prenderci +impegnate +domani +sera +ridiamo +fino +ultimo +voto +fino +ultimo +indeciso +convincere +ogni +voto +serve +iovotono +pd +regole +valgono +giochini +arroganza +amici +renzi +ognuno +convince +amici +andare +votare +votare +no +fatta +vittoria +italiani +altro +intimidire +letterine +spot +milionari +appelli +banche +industriali +presunti +vip +morti +fama +iovotono +quando +argomenti +amici +renzi +sanno +solo +ricorrere +bugie +sbugiardato +diretta +tv +votiamo +no +iovotono +minuto +intervista +tg5 +aiutami +condividere +basta +guardare +invita +votare +sì +merkel +governo +tedesco +banchieri +finanzieri +multinazionali +lobbisti +massacrato +italia +italiani +vincoli +follie +unione +europea +tenga +renzi +iovotono +renzi +dice +risparmia +tutte +balle +intanto +viene +abolito +senato +legge +elettorale +spendiamo +milioni +aereo +comprato +altri +milioni +altro +tagli +paghiamo +senati +domenica +iovotono +minuto +convincere +ultimi +indecisi +aiutami +farlo +girare +domenica +tanti +vittoria +crede +popolo +debba +essere +sempre +sovrano +mai +schiavo +iovotono +diretta +caserma +smiraglia +bologna +attesa +venga +sistemata +migliorare +vita +tanti +poliziotti +intervento +credo +convincente +mattino +girare +ciascuno +convince +amici +andare +votare +domenica +votare +no +renzi +amici +banchieri +finanzieri +altro +presunti +grandi +industriali +cosiddetti +vip +daremo +colpo +riprenderanno +torniamo +parlare +vita +reale +domenica +iovotono +diretta +mercato +splendida +mantova +solo +sorrisi +strette +mano +niente +insulti +renzi +cosa +state +amici +dopo +vicenza +dopo +padova +verona +sala +strapiena +aria +buona +ricordati +cambiare +foto +profilo +bel +voto +no +potete +scaricare +foto +www +iovotono +org +sondaggi +risulta +maggioranza +giovani +voterà +no +no +speranza +tanti +ragazzi +possono +renzi +europa +vogliono +fuggire +italia +trovare +lavoro +domenica +iovotono +governo +tedesco +invita +votare +sì +fate +iovotono +già +libero +clandestino +ucciso +marito +ascolta +girare +storia +romina +stato +giustizia +sempre +schifo +domenica +iovotono +dura +vita +profugo +villa +lusso +lago +garda +limite +pazienza +finita +domenica +iovotono +pazzesco +serracchiani +vice +renzi +banche +deciso +salvare +persone +truffate +poveri +speculatori +approvato +decreto +salvato +banchieri +rovinato +150mila +altro +pensionati +artigiani +commercianti +perso +risparmi +vita +bugiardi +senza +vergogna +coraggio +definirli +speculatori +cacciamoli +domenica +iovotono +ennesima +renzata +danni +italiani +renzi +tutte +tivù +raccontare +barzelletta +referendum +semplifica +intanto +manovra +economica +governo +viene +prevista +introduzione +altro +spesometro +trimestrale +titolari +partita +iva +follia +assoluta +obbligherà +milioni +cittadini +riempire +ogni +mesi +tonnellate +scartoffie +inviare +stato +basta +bugiardo +domenica +iovotono +diretta +splendida +piacenza +dice +no +iovotono +tour +dopo +renzi +diluvio +banche +finanzieri +massoni +giornaloni +potentoni +volta +accordo +marco +travaglio +iovotono +minuti +spiegare +voto +domenica +inciderà +vite +libertà +scelta +lavoro +made +italy +potremo +dare +mangiare +bere +figli +aiutatemi +girare +video +renzi +conta +soldi +conto +iovotono +qualche +minuto +parlare +dietro +quinte +rai +guerriglia +urbana +qualche +notte +fa +torino +cura +alcuni +profughi +gentilmente +ospitati +ringraziamento +bombe +carta +cartelli +divelti +cassonetti +rovesciati +violenze +intimidazioni +altro +naturalmente +accusa +italiani +razzisti +giudicate +italia +pd +governo +renzi +porte +aperte +vedo +ora +domenica +prossima +votare +no +4dicembre +iovotono +dopo +mondovì +cuneo +narzole +alba +asti +ora +diretta +splendida +piazza +alessandria +fatemi +compagnia +4dicembre +iovotono +diretta +cuneo +iovotono +tour +triste +significativo +guardare +operaio +monfalcone +lacrime +dice +voterà +sinistra +stupirsi +renzi +conosce +banchieri +operai +destra +sinistra +etichette +ormai +senza +altro +senso +oggi +scontro +piccoli +grandi +lavoro +finanza +popolo +banche +sovranità +identità +pensiero +unico +globalizzato +vuole +schiavi +caso +monfalcone +dopo +anni +giunte +rosse +vinto +lega +4dicembre +riprenderci +futuro +iovotono +diretta +mondovì +cuneo +tantissima +gente +dice +no +diretta +genova +seconda +parte +iovotono +4dicembre +amici +dopo +splendida +giornata +giro +toscana +liguria +ora +diretta +genova +tanti +amici +4dicembre +voteranno +no +iovotono +quando +ascolto +fenomena +so +ridere +piangere +letame +fumogeni +scritte +merde +sindaco +quinto +treviso +colpevole +aver +bloccato +arrivo +presunti +profughi +autori +altro +soliti +sfigati +centri +sociali +simpatica +rappresentante +assalitori +sostiene +lega +fa +politica +necrofila +cos +cervello +solidarietà +sindaco +mauro +zilio +mollare +diretta +toscana +dice +no +spettacolo +taci +meglio +n +napolitano +populisti +pericolo +grave +apprezzo +merkel +pericolo +grave +protetto +renz +4dicembre +iovotono +svegliarmi +dicembre +vedere +salvini +esulta +produce +dolori +pancia +insopportabili +battutona +rosiconi +giornaloni +ancora +digerito +vittoria +trump +purtroppo +dovranno +rosicare +ancora +4dicembre +iovoto +sanno +metterli +arrivati +espropri +case +alberghi +anni +renzi +fatto +sbarcare +italia +mezzo +milione +clandestini +mascherati +profughi +enorme +business +altro +cooperative +amici +amici +referendum +voluto +renzi +intende +ulteriormente +centralizzare +gestione +immigrazione +mani +governo +vogliono +zittire +tanti +sindaci +cittadini +coraggiosi +protestano +combattono +invasione +difesa +comunità +4dicembre +iovotono +adesso +pure +emergenza +badanti +immigrate +stuprate +datori +lavoro +italiani +italia +milioni +immigrati +regolari +perbene +pagano +tasse +mandano +figli +scuola +altro +benvenuti +vengono +sparare +fesserie +signore +occupano +case +caserme +spese +no +tornino +casa +iovotono +taci +meglio +n +napolitano +ex +presidente +senatore +vita +serena +coscienza +interesse +generale +dico +voterò +sì +girare +vota +sì +votiamo +ancora +convintamente +no +4dicembre +iovotono +profughi +stuprano +ragazza +parco +chiari +vicino +brescia +tunisino +palpeggia +ragazzina +anni +pieno +centro +verona +richiedente +asilo +molesta +bimbo +anni +altro +fiano +romano +mentre +renzi +dice +accogliamoli +poverini +scappano +guerra +altre +violenze +dovremo +attendere +governo +fermi +invasione +fuori +clandestini +arrendo +intanto +4dicembre +iovotono +anno +fa +mila +truffati +banca +etruria +altri +istituti +apprendevano +governo +salvava +banche +ieri +manifestato +roma +voci +molti +votavano +pd +ora +altro +votano +no +facciamole +girare +almeno +facebook +renzi +ieri +giro +toscana +fare +propaganda +inutile +schiforma +elicottero +risparmiatori +iovotono +mamma +statista +attacca +invece +ridere +mette +tristezza +mandiamolo +casa +4dicembre +iovotono +ascolto +renzi +rileggo +testo +riforma +convinco +iovotono +poco +diretta +rai +serracchiani +martina +ascoltate +finalmente +verità +centri +accoglienza +finti +profughi +spaccio +prostituzione +testimonianza +esclusiva +complimenti +paolo +debbio +visto +tg +tacciono +fatela +girare +possibile +priorità +rafforzare +integrazione +profughi +dice +prima +clandestini +dico +orgogliosamente +prima +italiani +4dicembre +iovotono +minuti +ecco +votare +no +girare +4dicembre +iovotono +telegiornali +raccontano +europa +renzi +lotta +leone +difendere +interessi +italiani +realtà +votazioni +consiglio +europeo +sapete +volte +governo +italiano +votato +altro +indovinate +zero +bugiardo +sostenuto +bugiardi +mandiamo +casa +4dicembre +iovotono +venti +minuti +tempo +fa +rai +soddisfatto +aiutate +condividere +giro +dopo +renzi +diluvio +anzi +dopo +renzi +futuro +lavoro +sicurezza +identità +sovranità +libertà +credo +insieme +può +4dicembre +iovotono +mattina +milano +tanta +gente +incontrata +tanti +volantini +iovotono +distribuiti +molliamo +tutte +tappe +www +iovotono +org +tour +diretta +studi +canale +pazzesco +gentilmente +ospitati +spese +mandano +agenti +ospedale +litigavano +pocket +money +grazie +renzi +grazie +governo +invasione +4dicembre +iovotono +intervista +oggi +luca +telese +roma +insieme +tanti +amici +dicembre +voteranno +no +amici +parenti +conoscenti +già +convinto +iovotono +altro +renzi +finge +tagliare +sprechi +ruberie +taglia +proprio +nulla +partiamo +mandare +casa +tanti +burocrati +mangia +stipendi +cancellare +uffici +complicazioni +cose +semplici +via +subito +prefetture +sovrintendenze +4dicembre +iovotono +inserendo +dodici +volte +unione +europea +costituzione +renzi +vuole +svendere +definitivamente +sovranità +italiani +bruxelles +cittadino +uomo +libero +soprattutto +padre +iovotono +lasciare +figlio +tredici +figlia +anni +costituzione +futuro +vuole +schiavi +flat +tax +famiglie +imprese +programmi +donald +trump +crescita +zero +incapace +renzi +padroni +unione +sovietica +europea +solo +ricordo +consiglio +altro +sito +www +tassaunica +it +potete +comprare +nuovo +libro +armando +siri +numeri +mano +spiega +progetto +rivoluzione +fiscale +paese +normale +entri +casa +notte +esci +steso +problema +governo +renzi +legittima +difesa +frega +4dicembre +iovotono +vuol +dire +mettere +primo +posto +popolo +banche +italiani +clandestini +allora +fieri +essere +populisti +4dicembre +iovotono +renzi +boschi +padoan +svenduto +italiani +banche +anno +distanza +150mila +truffati +banca +etruria +simili +mosso +dito +parola +deve +ritornare +popolo +4dicembre +iovotono +ministro +economia +pazzesco +dicembre +andate +votare +mandiamo +casa +iovotono +fate +girare +giornali +tivù +nasconderanno +attesa +partire +parliamo +po +no +salvini +pessimo +politico +bronzo +str +fornero +dopo +aver +rovinato +milioni +italiani +dice +voterà +sí +referendum +motivo +votare +no +quando +altro +governo +legge +schifezza +cancelliamo +fornero +solo +brutto +ricordo +promesso +iovotono +4dicembre +venti +minuti +intervista +credo +efficaci +aiutate +diffondere +bacheche +amici +indecisi +votare +referendum +4dicembre +casa +aiuti +renzi +iovotono +ecco +dati +veri +censurati +tg +numeri +ministero +interno +mano +domande +asilo +politico +presentate +domande +accolte +siriani +appena +resto +finti +altro +profughi +accogliere +donne +bambini +fuga +guerra +dovere +sacrosanto +devono +essere +portati +aereo +gommone +altri +vanno +rimandati +casa +punto +abusivi +bologna +adesso +portano +solo +alcol +droga +libero +pd +fa +nulla +finto +acquisto +ovviamente +girato +associazione +bologna +centro +storico +documentato +situazione +verme +maledetto +austria +rispetto +milioni +immigrati +regolari +perbene +lavorano +pagano +tasse +mandano +figli +scuola +schifezza +umana +messa +lavori +forzati +ripagare +italiani +danni +subiti +poi +rispedito +calci +casa +aspettando +quinta +colonna +rete +intervento +sabato +firenze +renzi +piazza +così +sogna +manca +poco +girare +4dicembre +iovotono +referendum +valido +qualsiasi +affluenza +quorum +vota +aiuta +bugiardo +patentato +centrodestra +centrosinistra +roba +vecchia +progetto +mette +centro +sovranità +popolo +svenduto +italia +unione +europea +banche +multinazionali +renzi +sereno +4dicembre +iovotono +grazie +firenzeeeee +iovotono +amici +seguiteci +diretta +splendida +piazza +idee +cuore +coraggio +futuro +iovotono +tuttiafirenze +www +iovotono +org +firenze +sole +eccomi +amici +piazza +aperta +libera +oggi +sabato +firenze +aspetta +costruiamo +insieme +futuro +www +iovotono +org +macerie +silenzio +accumoli +rieti +cascia +terra +santa +rita +rialza +ascoltate +famiglia +fantastici +maialebradodinorcia +com +zona +rossa +norcia +dopo +terremoto +gente +stupenda +vuole +tornare +vivere +lavorare +diretta +norcia +vuole +rialzare +accordo +donald +trump +vinto +proponendo +meno +tasse +famiglie +imprese +aliquota +unica +lavoro +dazi +invasione +prodotti +cinesi +solo +uccidono +altromade +espulsione +immigrati +clandestini +renzi +unione +europea +esattamente +contrario +domani +firenze +preavviso +sfratto +gran +bugiardo +tuttiafirenze +iovotono +alfano +ministro +poltronaio +scafista +senza +vergogna +paragona +milioni +italiani +spaccati +schiena +estero +cerca +fortuna +clandestini +nullafacenti +coccolati +governo +sfigato +dovrebbe +proteggere +italiani +asfaltato +girare +video +iovotono +folli +governano +europa +continuano +fare +guerra +russia +uccidere +made +poi +stupiscono +vince +trump +viva +trump +viva +putin +viva +pen +viva +lega +italia +renzi +clandestini +hotel +italiani +auto +primagliitaliani +iovotono +riaspettando +alfano +aspettando +porta +porta +dietro +quinte +popolo +batte +poteri +forti +diretta +roma +amici +commentare +vittoria +donald +trump +sempre +creduto +vittoria +popolo +poteri +forti +oggi +america +domani +italia +sabato +tuttiafirenze +iovotono +www +iovotono +org +oggi +splendida +piazza +santa +croce +firenze +sabato +riempiremo +mare +persone +perbene +piazza +aperta +benvenuti +là +idea +politica +aspetto +tanti +fiorentini +possono +bugie +disastri +renzi +iovotono +pazzesco +spero +cittadino +rumeno +anni +capiti +mai +mani +figli +nipoti +anziane +prendeva +pugni +scopo +rapina +verme +schifoso +grazie +polizia +stato +milano +spero +marcisca +galera +altro +indulti +oggi +riuscito +inserirmi +urla +parlamentare +pd +pubblico +canale +renziani +ormai +fine +corsa +dicembre +vicino +iovotono +agosto +governo +prometteva +espulsioni +veloci +intenzione +vietare +ricorsi +immigrati +clandestini +visto +qualcosa +soliti +cazzari +iovotono +costituzione +cambiata +meglio +peggio +sabato +prossimo +tuttiafirenze +piazza +santa +croce +ore +info +pullman +www +iovotono +org +pazzesco +sbirro +confine +muori +ammazzato +stronzo +sbirri +assassini +così +festa +solidale +pro +clandestini +organizzata +milano +adesione +anpi +arci +emergency +tanti +bravi +ragazzi +sinistra +compagniclandestini +girare +ilcomizio +it +http +bit +2fflkfc +renzi +contesta +unione +europea +poi +schiforma +inserisce +costituzione +dodici +volte +sovranità +appartiene +popolo +principale +motivo +iovotono +amici +iovotono +visita +mega +campo +presunti +profughi +bagnoli +vicino +padova +riprendiamo +diretta +campo +profughi +bagnoli +pd +bello +gioca +playstation +diretta +mega +campo +presunti +profughi +bagnoli +pd +sorpresa +lega +dice +anni +oggi +ammette +giornalista +sinistra +diretta +tivù +afferma +aiutarli +africa +giusto +arrivano +troppi +fare +accordi +paesi +altro +provenienza +esempio +nigeria +parte +tratta +prostituzione +guerra +boko +haram +entrano +nulla +accelerare +riconoscimento +veri +rifugiati +possibile +impiegarci +anni +mezzo +resto +europa +impiega +pochi +mesi +sottolinea +capisco +governo +già +fa +nulla +renzi +incapace +anziché +pensare +emergenza +invasione +preoccupato +solo +conservare +poltrona +ancora +poco +dicembre +iovotono +papa +distinguere +migranti +rifugiati +sottoscrivo +parola +parola +conto +pochissimi +scappano +guerra +fratelli +altro +immigrati +economici +climatici +altro +vanno +trattati +secondo +regole +limiti +esattamente +contrario +fa +governo +renzi +dicembre +iovotono +governo +vuole +fare +qualcosa +famiglie +imprese +colpite +terremoto +sospensione +qualche +mese +pagamento +tasse +fatto +emlia +esenzione +vera +completa +aiutare +davvero +perso +altro +rimandare +referendum +dicembre +iovotono +ora +diretta +amici +aliquota +unica +italia +riparte +ecco +fare +rivoluzione +fiscale +italia +approfondire +libro +sito +www +tassaunica +it +protestano +prefettura +taranto +vogliono +soldi +piccole +spese +dicono +cibo +no +buono +piacciono +vestiti +fa +freddo +penso +decine +migliaia +italiani +terremotati +altro +tetto +testa +manifestazioni +sembrano +offensive +verso +paese +ospita +così +occhio +secondo +video +sembrano +disperati +fuggiaschi +guerre +basta +prese +giro +palazzo +chigi +abusivo +renzi +sfrattiamo +esci +facebook +sabato +novembre +firenze +aspetto +te +girare +tuttiafirenze +iovotono +www +iovotono +org +incredibile +provincia +rovigo +ospitare +nuova +ondata +presunti +profughi +sequestrano +albergo +diretta +tivù +tanto +ordine +prefetto +proprietario +presente +amica +alfano +altro +renzi +fa +sbraita +invasata +falso +coprendosi +ridicolo +espropri +stato +negazione +evidenza +governo +invasione +governo +sovietico +cacciamoli +dicembre +iovotono +mentre +cazzaro +parla +ponti +grandi +opere +stato +grado +garantire +sicurezza +viaggia +strade +preghiera +uomo +purtroppo +perso +vita +crollo +pensiero +feriti +famigliari +vittime +stato +impegno +lavorare +affinché +episodi +succedano +requisizioni +avvengono +quando +comuni +collaborano +capito +così +parla +ministro +interno +governoscafista +frattempo +sempre +cittadini +nord +sud +renzi +altro +alfano +prefetti +difendono +coraggio +proprie +comunità +invasione +molliamo +resistiamo +dicembre +cacciamo +via +iovotono +milano +by +night +buona +serata +amici +riforma +fa +schifo +peggiora +costituzione +bugiardo +matricolato +basta +minuto +video +decidere +girare +iovotono +italianicheresistono +piccole +borseggiatrici +azione +chiamatele +zingare +ruspa +senza +vergogna +parlamentare +pd +consiglia +signora +anni +pensione +euro +arriva +fine +mese +andare +banca +ipotecare +casa +gente +governa +italia +dicembre +cacciamoli +iovotono +vogliamo +fare +qualcosa +bello +altri +dobbiamo +farlo +oggi +sammy +basso +inno +vita +guardate +video +ve +pentirete +centri +accoglienza +sbucano +ormai +ovunque +sera +mattina +cittadini +consigli +quartiere +nemmeno +vengono +informati +governo +volontà +popolare +frega +schiforma +renziana +peggio +dicembre +bella +croce +no +iovotono +gorino +ferrara +video +cittadini +resistono +invasione +targata +renzi +pd +milanistan +bene +schifo +vergogna +ecco +ridotto +parigi +ecco +qual +idea +futuro +governi +europei +amici +banchieri +massoni +renzi +merkel +hollande +molliamo +stopinvasione +stopunionesovieticaeuropea +iovotono +poliziotto +lamenta +leggi +dotazioni +inadeguate +garantire +sicurezza +cittadini +amico +renzi +librandi +coraggio +rispondere +vergognati +pazzesco +vergogna +italia +governo +sempre +parte +forze +ordine +dicembre +iovotono +cappellino +ordinanza +abbigliamento +rapper +piacenza +profughi +visibilmente +deperiti +sconvolti +guerra +piazzano +mezzo +strada +bloccando +traffico +protestano +altro +ricevono +soldi +diaria +cibo +agriturismo +ospita +fa +schifo +me +invece +schifo +scene +ormai +quotidiane +umiliano +milioni +italiani +difficoltà +usciamo +facebook +firenze +sabato +novembre +preavviso +sfratto +quell +incapace +renzi +iovotono +colpito +bottigliate +senegalese +clandestino +motivo +bisogni +parco +pubblico +gradito +rimprovero +naturalmente +clandestino +già +libero +italia +renzi +barzelletta +mondo +dicembre +iovotono +maxi +rissa +immigrati +ospitati +spese +porto +torres +tanto +blocco +stradale +pare +somali +gradiscano +stesso +cibo +offerto +nigeriani +situazione +delirante +iovotono +stopinvasione +diretta +caserma +cavarzerani +udine +ospita +immigrati +maggioranza +pakistani +italiani +pagano +milioni +italiani +disoccupati +aereo +stato +cenetta +senza +pretese +renzi +amici +america +schiforma +renzi +abolisce +senato +trasforma +dopolavoro +politici +nominati +impedisce +sempre +italiani +votare +viene +deciso +bruxelles +consente +parlamentari +continuare +cambiare +partito +senza +mollare +poltrona +dicembre +iovotono +casa +popolare +data +famiglia +italiana +magari +aspetta +trent +anni +arrivato +altro +ieri +egoismo +razzismo +buonsenso +padre +famiglia +prima +dà +mangiare +proprio +figlio +generoso +intelligente +buttare +miliardi +mantenere +italia +finti +profughi +quasi +sempre +maschi +ventenni +robusti +spenderli +africa +aiutare +milioni +bambini +veramente +bisogno +qualche +minuto +insieme +senza +renzi +renzi +clandestini +hotel +italiani +mezzo +strada +dicembre +iovotono +prove +tecniche +lavaggio +cervello +ecco +spot +tv +gira +svezia +pianificato +sostituire +popoli +avere +nuovi +schiavi +basso +costo +sfruttare +manodopera +chiudiamo +occhi +arrendiamoci +girare +finché +lasciano +fare +telecamere +rete +entrano +famigerato +hotel +house +porto +recanati +appartamenti +purtroppo +rifugio +troppi +clandestini +delinquenti +spacciatori +inviato +chiedono +manda +salvini +ben +altro +contento +essere +associato +battaglie +legalità +soluzione +governo +controlli +tappeto +forze +ordine +piano +piano +appartamento +appartamento +regola +bene +altri +espulsi +subito +buffone +bugiardo +basta +minuto +capire +fare +iovotono +avercene +nonne +così +sentite +cosa +dice +renzi +forcone +mano +signora +rosina +grande +abbraccio +iovotono +pazzesco +migranti +gentilmente +ospitati +bari +spese +italiani +ringraziamento +aggrediscono +giornalista +rete +puttana +carabinieri +dedicano +grande +altro +razzista +italia +mente +mettere +piedi +testa +sbarca +dicembre +iovotono +secondo +sinistra +dovremmo +accogliere +migranti +economici +normale +mondo +così +tanta +disuguaglianza +così +tanta +ingiustizia +gente +cerchi +scappare +altro +migliorare +propria +vita +compagna +milioni +disoccupati +italiani +veri +profughi +così +difficile +capire +respinto +richiesta +asilo +costruiscono +favelas +baraccopoli +comprensive +negozi +altre +belle +attività +commerciali +bastaaaaaa +dicembre +iovotono +incredibile +chiesto +asilo +attesa +spacciavano +droga +minorenni +chissà +guerra +scappavano +poverini +modello +integrazione +piace +tenetevelo +altro +insieme +renzi +boldrini +quel +genio +alfano +altrimenti +dicembre +possibilità +cambiare +votando +no +iovotono +minuti +pazzeschi +guardare +condividere +iovotono +sfrattata +malata +purtroppo +straniera +trovano +sempre +sistemazioni +poco +dover +lasciare +italia +vogliono +togliere +dignità +governo +razzista +altro +verso +italiani +altro +riforme +prima +liberiamo +renzi +prima +salviamo +cento +mille +iovotono +orgoglioso +aver +detto +boschi +pensano +milioni +italiani +banca +etruria +altre +truffe +bancarie +iovotono +voto +no +senato +abolito +rimane +casta +nominati +consiglieri +regionali +sindaci +senatori +tempo +libero +voto +no +parlamentari +potranno +continuare +altro +cambiare +partito +senza +mollare +poltrona +voto +no +italiani +dovranno +inchinarsi +follie +unione +europea +senza +mai +potersi +esprimere +merito +referendum +renzi +boschi +alfano +riforma +fa +comodo +vuole +servi +voglio +italiani +padroni +proprio +futuro +iovotono +parole +amici +boschi +scappa +poche +ore +confronto +così +paura +ora +aspetto +renzi +boschiscappa +iovotono +soldi +soldi +ecco +treviso +salutato +buffone +scommettiamo +nessun +telegiornale +vedere +immagini +bastano +minuti +cardinale +raymond +leo +burke +islam +minaccia +scopo +governare +mondo +infedeli +scopo +primario +prendere +roma +ancora +immigrazione +altro +serve +intelligenza +dobbiamo +sapere +immigrati +possiamo +realisticamente +accettare +fortuna +gerarchie +ecclesiastiche +rassegnano +politically +correct +girare +cosa +fate +giorno +seduti +mangiamo +dormiamo +fatto +mutuo +trentennale +doveva +essere +elegante +residenza +prende +quel +posto +primi +graduatorie +spesso +stranieri +così +bimbi +piccoli +devono +vivere +camper +senza +riscaldamento +italiani +sempre +dopo +verranno +sempre +prima +ora +muoversi +aspetto +sabato +novembre +firenze +iovotono +corteo +presidenziale +verona +atmosfera +ovattata +baci +abbracci +poi +arriva +vocina +rovina +nessuna +tivù +ve +fatto +sentire +sì +sempre +amato +renzi +dicembre +mostriamo +insieme +titoli +coda +iovotono +flat +tax +economia +sommersa +potrà +riemergere +paghi +tolleranza +zero +www +tassaunica +it +bolzano +rissa +immigrati +colpi +mazze +bastoni +davanti +bimbi +famiglie +scappare +guerra +portano +casa +schifo +stopinvasione +girare +michele +esodato +truffato +stato +forse +dovrà +vendere +casa +tirare +avanti +pensare +dice +esodati +esistono +vergogna +fornero +vergogna +pd +vergogna +renzi +muove +dito +vedo +ora +essere +governo +restituire +po +dignità +italiani +traditi +veniamo +barconi +viviamo +inferno +castrato +clandestino +pretendono +pretendono +pretendono +riso +piace +vogliono +cibo +africano +secondo +scappa +veramente +guerra +comporta +così +diretta +padova +abbraccio +renzi +boldrini +centri +sociali +profughi +residenti +secondo +normale +tg +vedere +agricoltori +coprono +fischi +renzi +sì +amico +segretario +coldiretti +percepito +secondo +espresso +incredibile +cifra +milioni +stipendio +anni +vergogna +girare +casa +prima +italiani +cascina +lega +fatto +volere +potere +sfrutta +debolezza +anziana +frega +soldi +infame +vogliono +telecamere +sempre +siccome +italiano +detto +potevo +permettermi +pagare +euro +affitto +straniero +invece +europa +bolkestein +mette +rischio +200mila +aziende +italiane +meglio +soli +male +accompagnati +renzi +muoviti +vuoi +porto +bruxelles +voglio +ricordare +storia +franco +condannato +anni +mesi +reclusione +mila +euro +risarcimento +aver +ucciso +ladro +giudice +preferiva +forse +venisse +ucciso +tabaccaio +altro +italia +contrario +renzi +sinistra +quando +andremo +governo +principio +legittima +difesa +sempre +altro +reato +eccesso +sacro +parlo +ogni +giorno +tanti +artigiani +magari +solo +terza +media +messo +piedi +imprese +tempo +vincenti +oggi +distrutte +tripla +laurea +doppio +master +euro +moneta +criminale +malati +mente +bastano +meno +minuti +dati +ufficiali +mano +smontare +bugie +renzi +pd +immigrazione +girare +benvenuti +varesestan +quest +anno +sagrato +duomo +trasformato +occasione +suk +canti +danze +mezzelune +islamiche +ambito +fondamentale +festival +promosso +coordinamento +migrante +patrocinio +comune +pubblico +attento +smartphone +caldo +ecco +cosa +succede +votare +pd +scusa +richiesta +informazioni +picchiato +selvaggiamente +banda +ladri +nordafricani +seriate +vicino +bergamo +realtà +renzi +esci +palazzo +chigi +fatti +giro +qualsiasi +città +italana +altro +italicum +legge +elettorale +numeretto +magico +ripeto +ripetiamo +insieme +solo +sbarca +scappa +guerra +entrerà +testa +renzi +boldrini +compagnia +ah +no +pensano +italia +posto +tutta +africa +migranti +climatici +compresi +stato +mette +primo +posto +propri +cittadini +stato +fallito +abbraccio +papà +schifosi +picchiato +torturato +ferro +stiro +rovente +coppia +anziani +presi +marocchini +clandestini +precedenti +penali +sorpresa +mai +detto +rispedirli +casa +subito +svenduto +futuro +tradito +fiducia +italiani +posso +dire +signor +napolitano +complice +disastro +troviamo +oggi +vengo +arrestato +tanti +difetti +essere +ipocrita +cittadini +abano +terme +padova +scendono +piazza +massa +dicono +no +invasione +clandestini +governo +renzi +vorrebbe +mettere +ex +base +nato +amici +molliamo +resistere +stopinvasione +maledette +giù +mani +bambini +proposta +lega +chiara +telecamere +asili +accordo +domande +risposte +flat +tax +tasse +troppo +poco +ecco +risposta +minuto +approfondisci +sito +www +tassaunica +it +calabria +giovani +lavoro +costretti +lasciare +propria +terra +secondo +sindaco +problemi +risolvono +importando +migliaia +immigrati +fate +posto +roba +matti +signore +studio +fa +finta +capire +differenza +immigrati +regolari +clandestini +invadono +città +problemi +comprensione +malafede +glielo +spiegate +vergognoso +vittima +legge +fornero +esodata +senza +lavoro +senza +pensione +marito +malato +vive +assegno +invalidità +euro +mese +mentre +stato +spende +ciascuno +altro +decine +migliaia +clandestini +fuggono +nessuna +guerra +coraggio +protestare +cibo +cattivo +wi +fi +mancante +governo +razzista +verso +italiani +servono +altre +prove +renzistaisereno +iovotono +diretta +milanistan +guardare +diffondere +bacheche +buoniste +anno +scorso +sindaco +bergamo +pd +affermava +salvini +dice +parecchie +cose +vere +lega +riesce +alimentare +costante +clima +paura +altro +insicurezza +poi +centro +città +ormai +invasa +bande +immigrati +moltiplicano +risse +qualche +giorno +fa +altro +indicarci +responsabili +serve +bella +ripulita +sempre +grazie +forze +ordine +purtroppo +lavoro +spesso +rovinato +qualche +giudice +schiavi +nessuno +pontida16 +continua +diretta +pontida16 +continua +diretta +pontida16 +eccomi +amici +diretta +splendido +palco +pontida16 +dati +mano +fuori +euro +vita +sviluppo +futuro +flat +tax +aiuta +solo +ricchi +falso +scopri +minuto +www +tassaunica +it +rivoluzione +fiscale +possibile +minuto +smontare +palle +euro +bugiardi +insulti +saviano +milioni +italiani +sostengono +lega +definiti +cancro +rivolga +mafiosi +delinquenti +spacciatori +stupratori +comunque +fedez +preferisco +mauro +corona +fabrizio +andré +dopo +migranti +economici +migranti +climatici +po +migranti +calcistici +basta +tutta +africa +italia +rivoluzione +fiscale +italia +possibile +flat +tax +eccola +spiegata +grafici +cifre +simulazioni +dice +può +fare +progressiva +altro +coperture +coraggio +manca +incapace +renzi +condividi +puoi +approfondire +sito +www +tassaunica +it +minuti +cifre +proposte +chiare +posto +bugiardo +renzi +governo +crescita +zero +piace +girare +stato +miliardi +crediti +inesigibili +verso +italiani +cosa +tasse +dichiarate +versate +quei +cittadini +evasori +semplicemente +pagarle +altro +vengono +perseguitati +equitalia +domanda +proposta +concreta +invece +pretendere +somme +vedranno +mai +meglio +stracciare +cartelle +esattoriali +chiedere +pagare +solo +dovuto +liberi +unione +sovietica +europea +clandestini +disoccupazione +diretta +milano +nuove +proteste +profughi +volta +livorno +blocco +traffico +aggressione +passanti +soddisfatti +servizi +offriamo +casaaaaa +diretta +borgosesia +vercelli +pensiero +speciale +gianluca +buonanno +germania +vincono +alleati +lega +perdono +merkel +amici +renzi +poi +dicono +esagero +vero +italiani +esasperati +invasione +invenzione +cittadini +video +però +villa +capalbio +dunque +buonisti +sinistri +nemmeno +diritto +lamentarsi +situazioni +conoscete +diretta +conselve +padova +buona +serata +amici +invasione +voluta +finanziata +organizzata +qualcuno +servono +schiavi +euro +ora +sfruttare +posto +italiani +lega +bloccare +sostituzione +popolo +novembre +firenze +appuntamento +vogliono +futuro +propri +figli +state +buon +lunedì +sera +amici +ben +ritrovati +buonasera +amici +diretta +pinzolo +val +rendena +trentino +sapete +vanno +sera +pensiero +preghiere +roba +matti +pensionato +dà +elemosina +signor +moustafa +hussein +massacra +botte +subito +liberato +ovviamente +accoltellare +ragazzo +difeso +pensionato +forandogli +altro +polmone +rischiando +ucciderlo +state +tranquilli +dice +renzi +invasione +palla +quell +estremista +brutto +sporco +cattivo +salvini +molliamo +facebook +utile +basta +aspetto +novembre +firenze +iovotono +cl +nasconde +madonna +paura +islam +milano +alcune +vie +sembra +essere +italia +appuntamento +sabato +novembre +firenze +dobbiamo +essere +tanti +buon +martedì +amici +cambiare +può +creato +scuola +formazione +politica +confronto +conoscenza +arriva +soluzione +problemi +aperte +iscrizioni +edizione +corso +milano +roma +quest +anno +aspetto +tutte +info +www +scuoladiformazionepolitica +it +alimenta +immigrazione +clandestina +complice +attentati +isis +punto +diretta +milanistan +accampamenti +cielo +aperto +pieno +centro +qualche +minuto +insieme +follia +inversione +u +autostrada +cisa +casa +romania +così +altro +regalo +unione +europea +senza +parole +ecco +futuro +laura +immagina +migranti +avanguardia +offrono +stile +vita +imitare +ieri +oggi +domani +sgonfialaboldrini +qualche +minuto +laura +qualche +minuto +referendum +renzi +no +grazie +ancora +spari +morti +stavolta +monaco +coppia +anziani +quasi +novantenni +picchiati +torturati +notte +provo +schifo +pena +verso +complice +situazione +pensa +italia +esista +emergenza +abbraccio +signor +libero +signora +rosina +molliamo +roba +matti +dopo +aver +tentato +scippare +donna +bimbo +passeggino +palermo +insulta +polizia +grido +fanculo +italia +fanculo +italiani +trova +bene +accontentiamolo +biglietto +sola +andata +somalia +magari +spese +boldrini +sangue +bambini +sangue +sangue +sangue +distruzione +distruzione +lavoro +cibo +disgustosi +cani +dio +protegga +paese +poi +risate +altro +chiese +distrutte +terremoto +abruzzo +altre +amorevoli +affermazioni +tunisini +già +condannati +accusa +aver +creato +intorno +moschea +andria +puglia +centro +indottrinamento +addestramento +finalizzata +reclutamento +aspiranti +martiri +rifugio +clandestini +stati +assolti +cassazione +fatto +sussiste +liberi +immagino +continueranno +ridere +qualche +minuto +insieme +parole +http +www +ansa +it +sardegna +notizie +disabile +picchiato +filmato +gira +web +caa2b4fa +a937 +4e4d +8d25 +51eec7cc7c90 +html +grande +controllore +razzista +prove +servono +ancora +dimostrare +euro +moneta +sbagliata +eccetto +tedeschi +possono +fare +referendum +trattati +europei +italia +pensa +cittadini +altro +idioti +buon +motivo +votare +no +referendum +renzi +altro +bene +governo +moneta +unica +salutiamo +punto +benvenuti +milanistan +qualche +minuto +profughi +catania +trascorrono +placide +giornate +villeggianti +mare +sole +sport +spese +italiani +magari +vacanza +possono +andare +italia +renzi +diretta +area +expo +milano +pronta +accogliere +indicazione +governo +renzi +centinaia +clandestini +monolocali +aria +condizionata +wi +fi +bagno +camera +razzista +populista +fascista +basta +imparare +conoscere +confrontarsi +approfondire +aperte +iscrizioni +edizione +scuola +formazione +politica +corso +milano +roma +pensaci +tutte +info +www +scuoladiformazionepolitica +it +giustizia +manicomio +nigeriano +anni +stato +riconosciuto +status +profugo +potrà +rimanere +modico +costo +60mila +euro +soldi +pubblici +fino +anno +giudice +fissato +udienza +ricorso +casi +giro +già +seconda +volta +fermi +terza +ammazzo +manda +ospedale +così +simpatico +ragazzo +extracomunitario +pescara +danni +controllore +no +esiste +problema +sicurezza +altro +dicono +buonisti +son +tutte +esagerazioni +colpa +populisti +po +scemi +paghiamo +biglietto +combattere +isis +partire +fonti +denaro +armano +petrolio +immigrazione +clandestina +poi +annientare +mezzi +bestie +chiacchiere +minuti +silenzio +fermano +orrore +qualche +minuto +insieme +austria +sbaglia +paga +annullano +elezioni +presidenziali +irregolari +gran +bretagna +dopo +brexit +propone +modello +immigrazione +limitata +punti +italia +fa +corsa +servo +bugiardo +firenze +vento +libertà +arriverà +mollate +mollo +rom +nullatenenti +porsche +protesta +profughi +verona +lamentano +imprigionati +diamo +pochi +soldi +poveretti +colletta +ecco +mani +presento +juncker +traballante +presidente +commissione +europea +commenti +minuti +senza +interruzioni +vespa +brexit +veri +europeisti +riconoscono +ue +banchieri +multinazionali +burocrati +negazione +valori +ragioni +nacque +unione +popoli +europei +svegliando +libertà +diretta +bruxelles +brexit +diretta +parma +cantiere +oggi +politica +ascolta +quarta +parte +diretta +parma +cantiere +oggi +politica +ascolta +terza +parte +diretta +parma +cantiere +oggi +politica +ascolta +diretta +parma +cantiere +oggi +politica +ascolta +ora +milano +brexit +ora +tocca +qualche +minuto +giorni +fuma +dopo +aver +votato +qualche +minuto +insieme +vergogna +renzi +video +pensate +emigranti +italiani +tanti +anni +fa +prima +vengono +italiani +paura +dirlo +passi +centro +bologna +contestatore +volta +solo +peccato +renzi +tasse +diminuite +solito +bugiardo +condividi +bacheca +amico +vota +pd +fa +piove +studi +settore +follia +via +subito +liberare +energie +stato +chiede +primo +ladro +socio +occulto +fa +niente +secondo +renzi +oggi +pagate +meno +tasse +risulta +tanta +gente +incontrata +mattina +carmagnola +torino +parti +governo +dovrebbero +farsi +qualche +giro +mercato +ascoltare +progetto +renzi +pensioni +devi +pagare +avere +soldi +attesa +crepare +ingrassando +solite +banche +parola +dire +truffatore +aiutami +diffondere +finché +facebook +rimane +libero +torino +villaggio +olimpico +occupato +comandano +libici +eritrei +assoluta +impunità +italiani +espulsi +propria +città +governo +sinistra +schifo +italiani +razzisti +capito +visibilmente +deperiti +fame +altro +prendendo +culo +girare +qualche +minuto +roba +matti +consideravano +troppo +fuori +mano +dunque +spaccano +sfasciano +mobili +gettano +cibo +terra +risultato +spostati +hotel +stelle +centro +messina +fa +altro +votare +ancora +pd +governo +invasione +umilia +italiani +tg +telerenzi +tacciono +condividi +qualche +minuto +insieme +fenomeno +oggi +beccato +fischi +commercianti +chissà +telegiornali +vedere +sperate +essere +parla +oltre +milione +italiani +potrebbero +vedersi +recapitare +cartella +equitalia +restituire +euro +qualche +minuto +insieme +video +incredibile +chiarezza +mostrare +scettici +parleremo +scuola +formazione +politica +anno +scorso +centinaia +persone +corsi +milano +roma +altro +iscrizioni +aperte +www +scuoladiformazionepolitica +it +info +scuoladiformazionepolitica +it +video +geniale +semplicità +consiglio +guardare +condividere +minuti +immigrazione +massa +potrà +mai +essere +soluzione +povertà +mondo +dite +capiranno +certi +buonisti +casa +vorrebbero +accogliere +italia +tutta +africa +video +stomaci +forti +palermo +egiziano +accoltella +quasi +ammazza +altro +straniero +pare +fatto +apprezzamenti +fidanzata +gente +gira +strade +grazie +altro +forze +ordine +arrestato +purtroppo +anziché +essere +rispedito +subito +egitto +calci +sedere +temo +ritroveremo +presto +circolazione +insieme +strasburgo +accogliamo +albergo +umanità +dice +albergatore +quest +anno +intascherà +mila +euro +ospitare +centinaio +profughi +cuore +oro +finti +buoni +arricchiscono +clandestini +dovrebbero +fallire +primo +ultimo +qualche +minuto +insieme +ora +diretta +milano +buona +domenica +buon +voto +qualche +minuto +stare +insieme +pronti +domani +votare +lega +aiutami +girare +video +istruzioni +vota +domenica +comune +milano +aiutami +girare +video +istruzioni +vota +domenica +comune +roma +indiretta +milano +visita +campo +rom +mattina +canale +euro +restituire +truffa +renziana +proprio +infamia +tentata +pelle +disabili +cercando +tassare +pensioni +invalidità +voluta +sentenza +consiglio +stato +evitarlo +renzi +pericoloso +nervosetti +pd +meno +diretta +bologna +imbavagliamo +vergogna +sindaco +rivogliobologna +accadeva +malattie +epidemiche +guerra +mondiale +morti +superassero +nascite +estinguendo +possibile +miliardi +spesa +pubblica +trovino +altro +rendere +asili +nido +gratuiti +fino +anni +futuro +senza +figli +pazienza +arrivare +fino +fine +video +ascoltate +cosa +dice +amica +renzi +studenti +universitari +bologna +violenti +casinisti +poveretti +figli +papà +rieducare +odiano +polizia +odiano +salvini +impediscono +persone +altro +prof +panebianco +parlare +liberamente +oggi +nonostante +piazza +negataci +città +candidata +sindaco +lucia +borgonzoni +dico +sorpresa +bologna +bolognesi +girare +comunità +internazionale +normale +convenienza +organizzare +campi +identificazione +zone +libere +nord +africa +evitando +trasformare +mediterraneo +fossa +comune +altro +occupano +diritti +immigrati +vorrei +qualcuno +occupasse +diritti +italiani +profughi +casa +domani +sfigati +figli +papà +comunque +bologna +intera +città +può +essere +ostaggio +pochi +violenti +senza +paura +bolognalibera +banda +romeni +svaligiava +case +indicazione +badanti +parenti +oppongono +arresto +belle +personcine +ruspa +domenica +tocca +minuti +tempo +sostenere +candidati +sindaci +città +città +nord +sud +lega +salvini +diamo +segnale +renzi +vai +casa +qualche +minuto +insieme +torino +diretta +torino +vorrei +prima +poi +pagasse +banchiere +disastri +fatto +italia +anziché +risparmiatori +obbligazionisti +lavoratori +vergogno +stato +nemmeno +grado +difendere +anziani +domenica +ogni +voto +lega +salvini +dispiacere +signor +napolitano +amichetto +renzi +renzino +fa +monologhi +tg +preferisco +mattinata +giro +strada +ascoltare +capire +proporre +senza +paura +confronto +oggi +aspetto +roma +teatro +golden +via +taranto +altro +candidati +lista +lega +salvini +libreria +borri +books +www +borribooks +com +stazione +termini +presentazione +libro +secondo +matteo +ancora +primo +vendite +italia +libri +saggistica +nonostante +boicottaggi +rosiconi +molliamo +qualche +minuto +insieme +pazzesco +rissa +furibonda +immigrati +autobus +sera +roma +passeggeri +conducente +ostaggio +gang +nessuna +invasione +dice +renzino +noooooo +tutte +invenzioni +quel +altromeschino +salvini +domenica +occasione +aiutarci +voto +nord +sud +cerca +scheda +simbolo +lega +salvini +ripuliamo +città +pensiero +particolare +solo +viaggiatori +ogni +giorno +lavora +autobus +treni +metropolitane +rischiando +pelle +italia +scoppiando +renzi +alfano +negano +mai +fatti +giro +qualsiasi +città +stopinvasione +volete +condividere +minuti +intervento +ieri +sotto +diluvio +bacheca +qualche +amico +diamo +bel +dispiacere +telerenzi +quei +tg +preferiscono +ignorarci +qualche +minuto +insieme +grazie +eroi +oggi +milano +sotto +secchiate +acqua +moriremo +schiavi +europa +renzino +arriviamo +liberi +diretta +sotto +acqua +splendida +piazza +piena +milano +pronti +liberi +segui +www +libericonsalvini +org +oppure +pagina +renzi +voglia +ascoltarci +sempre +finta +niente +liberi +qualche +minuto +insieme +video +collegamento +giorgia +meloni +unica +candidata +sindaco +centrodestra +roma +sostegno +lega +può +mandare +casa +pd +matteorisponde +liberiamo +bologna +chiuderò +campagna +elettorale +giovedì +giugno +piazza +verdi +spacciano +giorno +notte +niente +zecche +bolognesi +aspetto +diretta +bologna +bruxelles +qualche +minuto +insieme +bronzo +signora +fornero +ancora +tivù +tenere +lezioni +pensioni +favore +taci +ritirati +esilio +meglio +qualche +minuto +monsignore +suggerisco +ricordarsi +qualche +volta +quei +milioni +italiani +senza +straccio +lavoro +possono +permettersi +accogliere +mondo +sbaglio +ancora +straparla +napolitano +dovrebbe +essere +ricoverato +vecchio +arnese +comunista +già +fatto +troppi +danni +pazzesco +teoria +signor +rom +giusto +occupare +casa +diritto +anziana +tanto +muore +svelta +vada +ospizio +ruspa +gigante +abbastanza +così +http +cronacacriminale +tgcom24 +it +occupazioni +rom +giusto +togliere +casa +unanziana +muore +allospizio +scappa +guerra +porte +aperte +casa +finti +profughi +governo +invasione +biglietto +ritorno +via +ancora +qualcuno +convinto +cura +euro +salvato +ascoltate +giornalista +sinistra +renziana +corriere +dico +nefandezze +permetto +denunciare +situazioni +illegalità +andando +vedere +persona +provocatore +forse +signora +molto +abituata +prendere +autobus +girare +periferia +dite +primo +ladro +italia +stato +rapina +commercianti +artigiani +partite +iva +flat +tax +via +studi +settore +riparte +liberi +diretta +piazza +strapiena +oderzo +renzi +arriviamo +vergogna +mega +stipendi +dirigenti +fallire +grandi +aziende +banche +danni +risparmiatori +vergogna +miseri +euro +mese +invalido +quando +coop +gestire +immigrati +sbarcano +domani +mattina +danno +liberi +ingiustizie +credo +qualche +minuto +insieme +sempre +mare +monti +qualche +minuto +insieme +renzi +basta +palle +cancella +studi +settore +massacrano +aziende +partite +iva +vuoi +puoi +fare +domani +mattina +qualche +minuto +insieme +domande +abbassi +tasse +reimmetti +soldi +circolo +gente +compra +fabbrica +produce +assume +operaio +aliquota +unica +semplice +chiara +sconfigge +demenziale +burocrazia +fiscale +italiana +può +discutere +serve +coraggio +renzi +mando +grazie +abbraccio +centinaia +ginosini +accolto +mattina +teatro +alcanices +strapieno +agricoltura +lavoro +sicurezza +immigrazione +turismo +stop +covi +illegalità +concorrenza +imprese +oneste +liberi +puglia +qualche +minuto +connessione +permettendo +parlare +ricevuto +cartella +esattoriale +sbagliata +pur +ragione +dovuto +anticipare +parte +sanzioni +dovute +oggi +stato +cittadino +presunto +colpevole +modo +contrario +liberi +altro +giorno +campo +rom +magliana +roma +residenti +centri +asociali +istruttivo +condividere +volete +rimanga +così +votate +pd +renzi +perde +referendum +ottobre +basta +giochi +subito +elezioni +bruxelles +discutendo +ttip +disastro +imprese +economia +salute +esempio +stati +uniti +pesticidi +vietati +legge +altro +italia +colpa +venduti +servi +multinazionali +porteranno +tavole +italiani +alimenti +trattati +schifo +ieri +umbertide +perugia +riguarda +nemmeno +mezzo +metro +centri +culturali +islamici +leggi +moschee +conoscono +finanziatori +riconoscono +libertà +diritti +valori +diretta +versilia +picchiata +locale +rapinatori +volto +coperto +armati +piccone +immagini +marito +fatto +tempo +arrivare +pistola +caso +sparato +difendere +altro +moglie +uccidendo +ladro +oggi +magari +carcere +stancherò +mai +ricordarlo +difesa +sempre +legittima +diretta +piazza +strapiena +città +castello +umbria +governata +sinistra +settant +anni +mandiamo +casa +ladruncole +rom +cominciano +anni +ancora +azione +stazione +termini +roma +tribunale +minorenni +interviene +troppo +chiederlo +attenti +però +portafogli +rubato +prendono +solo +soldi +poi +buttano +terra +bontà +diretta +giorgia +meloni +sindaco +roma +diretta +campo +rom +roma +fedez +dedica +dito +medio +verso +nuova +canzone +spot +estate +cornetto +algida +marchio +multinazionale +unilever +bella +quest +estate +mangerò +solo +cornetti +sammontana +sanson +altri +produttori +italiani +tanti +paesi +civili +stupratori +serve +unica +soluzione +castrazione +chimica +zac +rieccomi +pochi +metri +monumenti +belli +roma +porto +ex +fabbrica +occupata +anni +centinaia +rom +degrado +topi +spazzatura +centinaia +bambini +so +possano +crescere +schifo +ripuliamoroma +diretta +roma +palazzo +occupato +centinaia +persone +incredibile +so +quando +vado +giro +nessuno +chiede +riforma +senato +adozioni +gay +tante +proposte +concrete +lega +realizzerei +subito +posto +quel +bufalaro +renzi +copiare +francia +rendere +gratuiti +asili +nido +bimbi +fino +anni +senza +figli +nessun +futuro +provate +chiedere +giro +dopo +anni +mezzo +renzi +state +meglio +state +peggio +governo +valutato +riforma +leggi +schifezza +costituzione +toglie +ulteriore +libertà +altro +scelta +cittadini +serve +partito +giudici +mandare +casa +renzino +bastano +italiani +state +liberi +qualche +minuto +insieme +prima +diretta +rai +campi +occupazioni +rom +abusive +città +organizzi +paghi +casa +oppure +vattene +giro +mondo +sembra +posizione +così +estremista +beccatevi +terapista +familiare +trasmesso +tv +saudita +fa +lezione +quando +picchiare +moglie +dotta +dissertazione +tipo +bastone +usare +lamenta +professore +altro +fatto +molte +donne +aspirino +rapporto +uguaglianza +marito +atteggiamento +ovviamente +punire +nessuna +integrazione +possibile +islam +tollera +magari +sotto +sotto +giustifica +personaggi +manicomio +no +video +tradotto +http +video +corriere +it +terapista +familiare +saudita +ecco +quando +picchia +moglie +570f6140 +11e6 +a60e +5fac25fd8ba7 +diretta +bellissima +piazza +piena +savona +sfondo +grida +kompagni +urlano +bacioni +qualche +giornale +parlato +contestatori +oggi +salone +libro +sì +numero +potete +guardarli +video +mandiamo +bacione +saluto +invece +altro +ragazzi +giovanissimi +venuti +trovarmi +torino +secondo +matteo +buone +idee +forti +qualche +intollerante +zecca +rossa +figlia +papà +avanti +tutta +adesso +connessione +permettendo +parlare +rieccomi +diretta +mezzo +tantissimi +ragazzi +salone +libro +torino +video +pazzesco +plauso +carabinieri +catania +aggrediti +amici +uomo +arrestando +mantenuto +sangue +freddo +evitando +peggio +sempre +parte +forze +ordine +vergogna +renzi +taglia +fondi +lavoro +sicurezza +diretta +roma +intero +palazzo +occupato +rom +immigrati +parabole +ovunque +incredibile +ancoraaa +qualche +minuto +rispondere +domande +diretta +centro +immigrati +bari +ospiti +numeri +dicono +solo +otterrà +asilo +politico +altri +ancora +giro +clandestini +qualche +minuto +parlare +stati +controllano +verificano +espellono +italia +entra +chiunque +solo +cento +scappano +guerra +unica +soluzione +clandestini +governo +mandarli +casa +roma +quartiere +montagnola +soliti +violenti +centri +sociali +bloccano +mercato +lanciano +oggetti +impedirmi +incontrare +cittadini +fate +paura +fate +pena +accoglienza +riservata +oggi +renzino +matera +naturalmente +aspettatevi +vederlo +tg +diretta +bellissima +piazza +milano +lega +parisi +sindaco +domande +risposte +qualche +minuto +insieme +mentre +silvio +gode +abbraccio +fini +casini +ieri +sera +signora +fornero +diceva +salvini +espressione +cattiva +politica +istiga +odio +taci +vigliacca +meglio +gufava +trump +sperando +visita +portasse +sfortuna +stanotte +trump +trionfato +primarie +stati +palio +diretta +philadelphia +buona +domenica +amici +qualche +minuto +compagnia +diretta +piazza +varese +bella +piena +zingara +mostra +chiappe +semaforo +ruspa +quando +potere +farlo +schifezze +magicamente +spariranno +linea +torna +no +colpa +renzi +ancora +diretta +roma +lega +salvini +ripulire +città +diretta +roma +domanda +giornalista +mantenete +esempio +parabole +lavoro +” +risposta +signor +rom +po +delinquenza +arrangia +onestamente +” +capito +delinque +moderazione” +ruspaaa +diretta +piazza +piena +grosseto +diretta +stazione +tiburtina +roma +occupazioni +abusive +criminalità +illegalità +intorno +business +clandestini +cittadini +possono +ascoltate +diretta +mercato +via +doria +roma +obbligati +andare +rubare +signor +rom +risponde +così +manderei +subito +galera +ruspaaaa +minuti +insieme +tanta +bella +gente +incontrata +stamane +mercato +latina +ripuliamo +città +campi +rom +covi +illegalità +dipendesse +me +raderei +suolo +domani +mattina +diretta +latina +piazza +pienaaaaa +convertito +islam +visto +dice +vittime +terroristi +islamici +cercata +pericoloso +rieccomi +minuti +parlare +viaggio +papa +referendum +tasse +basta +pronto +soccorso +italiani +diventati +accampamenti +clandestini +furbetti +cerca +cure +gratis +mentre +veramente +bisogno +deve +aspettare +ore +minuti +dialogare +costa +tanto +renzi +fare +telefonata +premier +australiano +parole +insieme +commentare +fatti +misfatti +giorno +grazie +ivan +coraggio +esempio +ecco +stato +accolto +renzi +vinitaly +televisioni +vedere +politici +devono +smettere +svendere +italia +proteggendo +confini +clandestini +merci +arrivano +senza +controlli +resto +mondo +devo +essere +processato +difendo +interessi +italiani +allora +processatemi +domani +mattina +voglio +attaccare +mattarella +voglio +difendere +principio +frontiere +confini +esistono +ingresso +uomini +merci +interesse +italiani +vanno +controllate +punto +referendum +trivellazioni +difesa +territorio +domenica +voto +guardate +danni +fatti +marche +diretta +romagna +diretta +cesenatico +scappano +nessuna +guerra +stragrande +maggioranza +sbarca +italia +pretendono +protestano +bloccano +città +governo +espulsioni +subito +italiani +stufi +farsi +prendere +gliela +stringereste +mano +renzino +forse +problema +signor +friedman +oggi +milioni +italiani +né +lavoro +né +pensione +troppo +volgare +ripeto +legge +fornero +legge +cazzo +diretta +finale +emilia +modena +ricostruire +dopo +terremoto +nulla +pd +centro +immigrati +bologna +bologna +fiera +internazionale +libro +ragazzi +spettacolo +espositori +illustratori +paesi +mondo +aprire +menti +liberare +fantasia +vanno +case +popolari +bologna +graduatoria +cittadini +unione +sovietica +roberto +invalido +civile +genova +trenta +giorni +può +rientrare +appartamento +occupato +abusivamente +famiglia +immigrati +già +pronte +accuse +razzismo +eccoli +abusivi +buongiorno +istigatori +violenza +professoressa +roba +matti +prima +diretta +autoprodotta +devo +proprio +rispondere +renzi +lamentano +sempre +riso +maccheroni +riso +maccheroni +pensano +essere +ristorante +ruspa +roma +est +quest +area +città +stati +arrestati +marzo +fiancheggiatori +isis +moschee +garage +scantinati +negozi +dismessi +spesso +mascherate +associazioni +culturali +altro +quando +chiede +terrorismo +islamico +zitti +bella +integrazione +renzi +boldrini +città +vogliamo +lasciare +figli +tutte +volte +vado +estero +incontrare +governi +seri +sanno +gestire +immigrazione +sicurezza +chiedono +italia +rendete +conto +fanatici +potenziali +terroristi +altro +state +entrare +maggioranza +italiani +sì +andatelo +dire +quegli +incapaci +renzi +alfano +trento +cinquanta +immigrati +bloccato +strada +centro +protesta +vogliono +soldi +documenti +ospiti +spese +italiani +rompono +pure +palle +via +primo +aereo +casa +amico +renzi +alfano +brigatisti +pubblico +studio +ballarò +applaude +battaglia +legge +fornero +barbaro +personaggi +sig +cazzola +provato +andare +giro +strada +sentire +cosa +dicono +italiani +dedicato +anime +belle +sinistra +toni +fornero +indecenti +scorretti +quando +tratta +insultare +mattina +sera +aggredire +piazza +salvini +lega +lecito +spesso +gradito +w +coerenza +servizio +tg1 +giornata +ieri +israele +vero +pericolo +oggi +terrorismo +islamico +tace +reagisce +complice +provo +pietà +umana +kamikaze +esplodere +dice +compagno +vauro +vaglielo +dire +famiglie +vittime +attentati +vergognati +monti +racconta +rovinato +vita +milioni +italiani +approvato +riforma +fornero +semplicemente +sindacati +fatto +nessuna +rivolta +sociale +solo +ore +simboliche +sciopero +capito +bene +insieme +complici +disastro +italiano +sindacati +ruspa +basta +hotel +gratis +pagato +italiani +protestano +bloccano +traffico +cagliari +vogliono +essere +identificati +pretendono +libertà +andare +giro +clandestini +lega +governo +già +casa +rispediti +indietro +calci +pazzesco +dirigente +polizia +svela +realmente +cose +ieri +sbarcati +profughi +sardegna +prese +impronte +solo +altri +rifiutati +giudice +stamattina +liberato +altro +scafisti +arrestati +prendendo +casa +renzi +alfano +raccontano +sotto +controllo +sicurezza +italiani +mano +pericolosi +incapaci +banda +rom +piace +prelevare +bancomat +così +dite +ancora +coccole +buonismo +ruspa +appena +ammazzato +persone +nome +allah +imam +problema +salvini +fa +sciacallaggio +vaff +mettono +sanzioni +russia +putin +combatte +tagliagole +islamici +poi +regalano +miliardi +turchia +finanzia +isis +europa +pericolosi +imbecilli +mandare +casa +calci +sedere +spero +immagini +vengano +presto +dimenticate +palle +piene +ammazza +nome +allah +reagire +ripulire +quartieri +cova +odio +islamista +controllare +indagare +espellere +chiacchiere +renzi +nulla +zitto +rassegno +paura +bisogna +controllare +immigrazione +buonismo +massacrando +qualche +minuto +ascoltate +piace +condividete +bacheca +qualche +amico +stanco +bla +bla +bla +renzi +intellettuali +gad +lerner +attentati +figli +buonismo +accoglienza +costi +religione +vuoi +cancellare +libertà +modo +vivere +rispedisco +casa +tempo +zero +ora +diretta +bruxelles +molenbeek +bruxelles +altro +accoglienza +altro +integrazione +qua +svegliamo +carne +macello +mastella +nonmenefottenulladisalvini +nuovo +centrodestra +forza +lega +bruxelles +vuole +portare +tavole +porcherie +mondo +intanto +pescatori +agricoltori +italiani +vengono +messi +ginocchio +consumiamo +difendiamo +prodotti +terra +schifezze +mangino +renzi +merkel +dialogo +surreale +diretta +tv +rom +abusivo +solo +occupa +casa +popolare +fregando +qualcuno +diritto +pretenderebbe +trovassi +lavoro +ruspa +altro +genitore +sabato +orgoglioso +ricevere +auguri +bimbi +festa +papà +europa +piace +renzi +merkel +rubato +lavoro +sicurezza +dignità +identità +libertà +futuro +italia +francia +moriremo +schiavi +padroni +casa +confermo +boldrini +vorrebbe +importare +400mila +immigrati +anno +figli +razzista +verso +italiani +auguro +comunque +cambiare +presto +mestiere +bruxelles +pronta +dichiarare +abusivi +stabilimenti +balneari +italiani +basta +follie +unici +abusivi +renzi +europa +pazzesco +passati +anni +ucciso +piccolo +tommy +uscirà +permessi +premio +ripeto +bestia +massacrato +bimbo +mesi +condannata +ergastolo +potrà +lavorare +fuori +altro +carcere +italia +proprio +ribaltare +impegno +quando +governo +ergastolo +ergastolo +meglio +lavori +forzati +pensiero +tommy +famiglia +invito +volete +visitare +pagina +https +www +facebook +com +tommy +cuore +giuseppe +aggredito +rapinato +negozio +qualche +buonista +sinistro +parla +ancora +eccesso +legittima +difesa +mando +quel +paese +europa +massacra +agricoltura +riempirci +schifezze +mondo +volta +parla +salvini +microfono +spacca +schiena +giorni +vuole +continuare +produrre +italiano +girare +permesso +premio +bestia +ucciso +piccolo +tommy +cazzo +stato +viviamo +uccide +bambino +merita +rivedere +sole +resto +vita +domani +mattina +nuovo +sicilia +grande +mercato +ortofrutticolo +vittoria +rg +grammichele +ct +europa +invade +prodotti +controllati +uccidono +altro +agricoltura +meglio +soli +olio +tunisino +arance +marocchine +bevano +mangino +renzi +merkel +italiani +rovinati +fornero +amico +renzi +alfano +risponde +vadano +lavorare +roba +matti +sig +cazzola +dovrebbe +vergognare +qualcosa +dirgli +sostegno +libertà +azione +forze +ordine +certezza +pena +legittima +difesa +cittadini +aggrediti +sempre +servono +magie +avere +sicurezza +italia +basta +buonsenso +tutte +famiglie +bisogno +casa +popolare +danno +avvocato +possiede +barca +italia +limite +schifo +bravo +massimo +giletti +vicenda +molla +dammi +sigarette +violento” +così +immigrato +già +noto +episodi +simili +aggredito +titolare +tabaccheria +bolzano +fortuna +intervenuti +clienti +difendere +figlia +pulizia +fare +città +orgoglioso +aver +portato +prima +serata +canale +po +battaglia +infame +legge +fornero +rovinato +vita +milioni +italiani +indifferenza +renzi +zecca +rossa +consigliere +comunale +sinistro +presenta +disinfettante +gazebo +roma +garbatella +pensate +intelligente +centro +sociale +abbracciamo +forte +forte +fornero +legge +truffa +maledetta +infame +cancelleremo +minuto +dopo +essere +andati +governo +euro +mese +bollette +stare +container +anni +girare +dedicato +tutta +propaganda +salvini +vero +terremotati +emiliani +ancora +fuori +casa” +fanculo +salvini +vattene +via +telecamera +te +sfondo +” +bel +vaffa +sceriffo” +bologna +glielo +mandiamo +incredibile +così +governo +renzi +tratta +poliziotti +mentre +sbarca +domani +mattina +pronto +hotel +stelle +girare +schifo +marianna +arrivata +vendersi +fedi +nuziali +sopravvivere +dedicato +buonisti +vogliono +accogliere +mondo +fregano +italiani +veramente +bisogno +attenti +signore” +cappello +spara +cazzate +renzi +compra +dvd +lavatrice +paio +scarpe +auto +bambino +futuro +egoismo +penso +così +pordenone +arrestato +terrorismo +islamico +immigrato +macedone +veniva +coccolato +regione +friuli +venezia +giulia +sussidio +euro +mese +governati +pericolosi +incapaci +renzi +serracchiani +manderemo +casa +nazisti +rossi +devastano +postazioni +romaparlitu +molliamo +grazie +partecipato +oggi +domani +mattina +continua +ascolto +romani +avantiiiii +info +luoghi +orari +www +noiconsalvini +org +tanta +voglia +combattere +insieme +italia +persone +perbene +costrette +armarsi +difendere +propria +famiglia +signor +fuksas +spettacolare +vuole +moschee +domestico +islamico +insulta +tipico +radical +chic +cuore +sinistra +portafoglio +destra +antonio +anni +provincia +foggia +massacrato +propria +casa +pochi +euro +bestia +ucciso +nessuna +pietà +prenderla +farla +marcire +galera +fino +fine +giorni +amici +romani +sabato +domenica +quaranta +piazze +ascoltiamo +politica +fa +passo +indietro +roma +ora +parli +romaparlitu +trova +postazione +http +noiconsalvini +org +sabato +domenica +febbraio +scegli +sindaco +roma +vuoi +tempo +voglia +consiglio +lettura +dopo +occidente +combattendo +oggi +previsto +anni +fa +difesa +popoli +libertà +italia +pericolo +europa +banchieri +grande +finanza +grazie +ida +magli +grazie +cittadini +tor +sapienza +sostegno +ruspa +giocattolo +tenete +duro +giugno +liberiamo +roma +porto +ruspa +vera +poi +signor +rom +vita +mai +pagato +tasse +cosa +parlando +giorni +sciopero +fame +chili +persi +gianni +tonelli +segretario +sap +sindacato +autonomo +polizia +arrende +continua +chiedere +sicurezza +cittadini +italiani +tutela +porta +divisa +palazzi +potere +vogliono +tenere +nascosto +girare +iostocontonelli +terremotati +container +bollette +pagare +sbarca +coccole +hotel +gratis +razzismo +schifoso +basta +bruxelles +europa +uccide +pesca +ora +regalano +pure +mare +francesi +solo +imbecilli +qualcuno +pagato +danneggiare +italia +privatizzare +rai +togliere +canone +punto +pagare +telerenzi +truffa +modena +negozi +possono +rapine +affiggono +cartelli +entri +armato +sparo +bene +legge +fornero +votata +pd +anni +renzi +mosso +dito +adesso +vogliono +toccare +reversibilità +vedovi +vedove +altro +festeggiamenti +giù +mani +pensioni +carmelo +anziano +massacrato +botte +euro +clandestino +perso +vista +occhio +uso +orecchio +ora +aziz +ritrova +piede +libero +vicino +casa +fa +schifo +giustizia +italiana +reati +commessi +immigrati +italia +numeri +parlano +chiaro +nega +verità +nemico +italiani +rovinato +vita +milioni +italiani +tosta +farsi +vedere +ancora +tv +difendere +legge +porcheria +vergognati +chiedi +scusa +vattene +italia +tommaso +pestato +sangue +rapinato +perseguitato +aver +segnalato +zingara +usa +ingresso +casa +cesso +mandiamo +casa +sinistra +abbraccia +fratelli +rom +accendete +ruspe +basta +prendere +qualsiasi +mezzo +pubblico +capirlo +invasione +riprendiamoci +città +massimo +oderzo +vicino +treviso +vogliono +riempire +paese +centinaia +clandestini +abitanti +scendono +piazza +massa +protestare +bravi +governo +invasione +risponde +così +pazzesco +capito +bene +sì +italia +vietato +spaventare +ladri +parole +definire +stato +prima +italiani +poi +sbarca +domattina +lampedusa +penso +così +sinistrati +vari +schifo +pensioni +oro +20mila +euro +mese +vanno +prendere +soldi +vedove +giù +mani +altrimenti +guerra +entri +casa +fare +male +me +famiglia +esci +piedi +problema +pavia +voleva +spaventare +ladri +entrati +colpi +piccone +terza +volta +bar +spara +colpi +aria +fucile +risultato +viene +denunciato +bastaaaaaaaaaa +versato +anni +contributi +schiatta +allora +pensione +danno +han +fatto +bingo +regalo +italiani +fornero +governi +pd +renzi +continua +fregarsene +molliamo +cazzata +radical +chic +giorno +visto +tanti +delinquenti +italiani +dovremmo +farne +arrivare +resto +mondo +stare +zitti +cos +testa +giornalisti +sinistra +secondo +affamano +disabili +poi +spendono +soldi +aereo +renzi +schifo +attenzione +amici +grilletto +facile +sparate +rapinatore +entra +casa +magari +vuole +solo +mela +vive +ricoveratelaaaa +bruno +ex +poliziotto +pensione +sparato +ladro +fatto +bene +ieri +oggi +domani +entri +casa +esci +steso +cazzi +democratici +antifascisti +fermati +furgone +carico +mazze +altri +regali +voto +zecche +spaventano +voto +forze +ordine +tante +persone +perbene +incontrate +oggi +cagliari +sempre +vivace +piena +inventiva +cultura +rom +provocavano +finti +incidenti +anziani +credere +urto +danneggiato +orologio +valore +chiedevano +euro +altro +risarcimento +grazie +simpatico +passatempo +zingari +banda +fatti +palle +oro +ville +auto +lusso +governo +assicurerei +personalmente +schifosi +puniti +meritano +cancellare +reato +eccesso +legittima +difesa +aiutare +poliziotti +carabinieri +certezza +pena +stacchio” +vuol +dire +tutte +cose +insieme +cartelle +esattoriali +dovute +ecco +verità +milioni +italiani +truffati +tartassati +equitalia +ruspa +stato +ladro +meno +euro +ora +nero +sopravvivere +lavoro +schiavitù +jobs +act +renzi +incapace +italia +servono +meno +tasse +resto +aria +fritta +benvenuti +repubblica +islamica +dewsbury +città +inglese +divenuta +culla +terroristi +simbolo +fallimento +multiculturalismo +forzato +resto +integrazione +vuoi +fare +ospiti +diventano +maggioranza +vogliono +cancellare +cultura +altri +paesi +europei +verificano +controllano +espellono +italia +renzalfano +invece +posto +sinistra +fessa +europa +vacanze +hotel +scuole +sci +ora +escursioni” +guida +musei +gratis +compreso +benvenuti +italia +renzi +boldrini +vale +italiani +prove +tecniche +integrazione +buona +visione +massacrano +piccoli +toccare +grandi +tasse +rapina +rivoluzione +fiscale +flat +tax +riparte +anno +fa +omicidio +david +raggi +sgozzato +strada +terni +marocchino +ubriaco +drogato +già +espulso +fedina +penale +lunga +pagine +eppure +ancora +libero +circolare +italia +qualità +altro +richiedente +asilo +dato +solo +anni +rito +abbreviato +salvato +ergastolo +vergogna +famiglia +raggi +denunciato +renzi +alfano +morto +governo +vigilato +ragione +nooo +basta +milioni +italiani +disoccupati +disposti +fare +qualsiasi +lavoro +posso +sentire +barzelletta +meno +male +immigrati +” +equitalia +fisco +preso +ostaggio +milioni +italiani +evasori +persone +soldi +pagare +cambieremo +stato +infame +cancelleremo +schifo +moriremo +schiavi +europa +piùliberipiùforti +adozioni +gay +utero +affitto +no +posto +renzi +renderei +veloci +meno +costose +adozioni +migliaia +coppie +aspettando +anni +arricchisce +clandestini +chiuda +domani +mattina +serve +italia +amici +soprattutto +amiche +cosa +rispondiamo +insegnante +islamica +bravo +renzuccio +fatto +giocattolino +nuovo +tanto +pagano +italiani +sinistri +bene +accogliere +onori +presidente +iran +vorrebbe +cancellare +israele +terra +qualche +benpensante +nemico +russia +ognuno +sceglie +amici +vuole +preferisco +stare +putin +sardegna +sicilia +trattate +colonie +affondano +sotto +colpi +roma +bruxelles +pensionato +pestato +derubato +colpa +allarme +casa +librandi +vaff +metro +monaco +richiedenti +asilo +prima +molestano +ragazza +poi +aggrediscono +uomini +accorsi +difenderla +avanti +così +posto +piace +accoglienza +costi +renzi +merkel +giovani +africani +molto +annoiati +fare +richiedente +asilo +spese +italiani +deve +essere +dura +passare +tempo +davano +simpaticamente +spaccio +droga +bel +calcio +poi +casa +zitta +ammazzo +ancora +volta +anziani +picchiati +derubati +abitazione +aggressore +straniero +concidenze +no +italia +buonista +entrano +cani +porci +nessuno +paga +telecamere +nascoste +schifo +spaccio +eroina +centro +storico +prato +belle +risorse +azione +girare +italia +serve +bella +ripulita +benvenuti +casa +rom +ammassi +rifiuti +bruciano +accoltellamenti +commerci +illegali +allacci +abusivi +corrente +tanto +pagano +italiani +tizio +video +problema +salvini +provoca +appena +responsabilità +governo +signor +rom +tranquillo +provochiamo +sgomberiamo +te +poi +strappo +proprio +capelli +testa +scaraventa +terra +bambino +ora +solo +arresti +domiciliari +maestra +pena +suggerireste +volevo +farla +finita +picchiata +sottomessa +ribellata +matrimonio +combinato +padre +storia +amani +ora +vive +libera +bimba +anni +girare +finché +islam +rispetta +donna +nessuna +integrazione +possibile +parla +jihadista +pentito +ecco +addestriamo +siria +compiere +attentati +europa +magari +arrivano +profughi +infiltrati +barconi +sottolineato +ieri +ministro +difesa +francese +unici +vedono +pericoli +renzi +alfano +avanza +po +tempo +ecco +intervista +altra +sera +virus +insieme +marine +pen +orgoglioso +essere +fianco +unione +sovietica +europea +riprendiamoci +chiavi +casa +prima +tetto +crolli +testa +reggio +emilia +bullizzata +minacciata +mandata +ospedale +coetanee +marocchine +porta +velo +considerano +impura +mezzo +sangue +poi +razzisti +italiani +problemi +disoccupazione +immigrazione +tasse +giovani +italiani +scappano +estero +trovare +lavoro +renzi +berlino +calare +braghe +dire +vero +problema +italia +europa +populismo +genio +curatelo +dimentichiamo +grazie +oriana +fatto +scritto +w +montagna +w +letame +abbasso +nazisti +rossi +coperto +statue +rappresentano +cultura +identità +imbarazzare +leader +iraniano +imbarazzato +italiani +myrta +renzi +ipocrita +ridicolo +accordo +girare +sindaco +tarvisio +confini +colabrodo +austria +dovremmo +sospendere +schengen +fare +controlli +rigidi +chiaro +altri +chiudono +profughi +arriveranno +sanno +altro +tempistiche +molto +lente +richiesta +asilo +addirittura +possono +fare +ricorso +tar +friuli +venezia +giulia +potrebbe +diventare +grande +campo +profughi +europa +avanti +posto +grazie +renzi +secondo +banca +svizzera +dobbiamo +riempirci +milioni +immigrati +n +bisogno +meglio +favorire +coppie +italiane +esempio +rendere +gratuiti +asili +nido +fino +anni +francia +riempire +qualche +culla +buongiorno +amici +razzisti +populisti +xenofobi +fascisti +leghisti +sessisti” +cosa +rispondiamo +sfigati +maiconsalvini +lepen” +amico +renzi +spiega +cambiare +regole +legittima +difesa +pericolo +bambini +pd +vergognano +dire +certe +cazzate +girare +adriano +prima +bimbo +piange +trieste +tante +famiglie +persone +perbene +arrendono +cambieremo +renzi +arrivando +saluto +confine +slovenia +chilometri +chilometri +sguarniti +indumenti +coperte +scarpe +sparsi +ovunque +grazie +governo +renzalfano +entra +esce +vuole +altro +controlli +frontiere +girare +antonio +operaio +metalmeccanico +tante +vittime +stramaledetta +legge +fornero +dovrà +arrivare +versare +quasi +anni +contributi +prima +poter +andare +pensione +governo +serio +cancellerebbe +subito +ingiustizia +renzino +altre +priorità +rispetto +libertà +scelta +chiunque +affrontare +propria +vita +sentimentale +però +bambino +almeno +momento +nasce +diritto +conoscere +mamma +altro +papà +presidente +boldrini +dico +anziché +adozioni +gay +te +naturali +preoccupati +legge +fornero +riguarda +te +culo +caldo +dimentichiamo +cancelleremo +parla +vittime +banditi +est +audi +gialla +tanta +rabbia +schifo +italia +vengono +tutelati +cittadini +perbene +devasteranno +” +ragione +soluzione +chiama +certezza +altro +pena +risorse +forze +ordine +leggi +giuste +difesa +proprietà +privata +riprova +buttare +chiave +settimana +comincia +arresto +marocchino +provincia +cosenza +commerciante +ambulante +permesso +soggiorno +secondo +polizia +aspirante +combattente +islamico +volontà +altro +andare +ammazzare +infedeli +siria +grazie +forze +ordine +domanda +altri +fatti +entrare +governo +inetti +intervenire +controllare +bloccare +espellere +subito +prima +troppo +tardi +secondi +ecco +opinione +renzi +schengen +controlli +frontiere +senatore +lega +stefano +candiani +insieme +nicola +porro +spiega +nobili +motivi +sostegno +profugo +verdini +poltronari +vari +riforme +renzi +istruttivo +metro +stoccolma +eroica +mamma +bimbi +sventa +furto +danni +anziana +ladro +prima +colpisce +poi +stomaco +poi +contento +torna +indietro +sputa +addosso +pare +altro +schifoso +richiedente +asilo +nordafricano +strano +vero +via +via +via +italia +europa +bisogno +gentaglia +renzi +contestato +oggi +mantova +tanto +striscione +ciocapiàt +ciarlatano +protesta +civilmente +medico +cuor +leone +preferito +rifugiarsi +teatro +poi +darsela +gambe +altroin +visita +privata +niente +male +diceva +voglio +scorta +scorta +gente +oltre +incapace +vigliacco +fonte +http +video +gelocal +it +gazzettadimantova +locale +contestazione +medico +famiglia +sanita +pubblica +rotoli +monteforte +irpino +provincia +avellino +carabinieri +sedare +rivolta +centinaio +presunti +profughi +lamentavano +accoglienza +italiana +gettando +via +cibo +finestre +meritano +stare +minuto +italia +primo +aereo +casa +dopo +anni +governo +pd +tante +idiozie +votate +europa +renzi +minimo +responsabilità +alzerebbe +testa +voterebbe +direttive +europee +uccidendo +no +rinnovo +altro +sanzioni +russia +via +legge +fornero +via +studi +settore +bruxelles +bene +chissenefrega +ruspa +profughi +accoglienza +me +baratro +giornata +francesco +perso +lavoro +troppo +vecchio +troppo +giovane +pensione +poi +casa +poi +famiglia +priorità +posto +renzi +restituire +lavoro +dignità +italiani +resto +viene +dopo +secondo +esponente +pd +europa +stata +conveniente +guarda +caso +crescere +paesi +tenuti +ben +stretta +moneta +riprendiamoci +sovranità +prima +troppo +tardi +ruspa +compagno +chicco +testa +detto +mister +spocchia +risposto +rime +sopporto +arroganza +fatto +bene +imam +spiega +donne +adatte +testimoni +tribunale +cervello +inferiore +scientifico +eh +buona +integrazione +consiglio +condivisione +video +bacheche +buoniste +magari +femministe +solo +giovani +costretti +andare +estero +cercare +lavoro +pensionati +scappano +albania +poter +sopravvivere +vedo +ora +mandare +casa +governo +odia +italiani +insieme +può +strasburgo +renzi +invece +fingere +litigare +europa +venga +riprendersi +almeno +miliardi +regalati +monti +letta +renzi +salvare +banche +altri +caro +renzi +vieni +riprenderti +soldi +italiani +diamo +mano +altrimenti +rimani +solo +chiacchierone +essere +accordo +grande +vittorio +sgarbi +fate +girare +intervento +completo +http +bit +1v6hmwy +europa +chiudono +frontiere +italia +entrano +cani +porci +vedo +ora +prendere +posto +incapaci +renzi +alfano +restituire +sovranità +tranquillità +gente +fornero +manderei +pane +acqua +isola +deserta +visto +rovinato +vita +milioni +italiani +farle +compagnia +parlamentare +pd +sostiene +praticamente +risolto +vergogna +pago +tasse +pagare +dipendenti +no +muore +azienda +imprenditore +ragione +autodifesa +stato +ladro +accordo +rom +vogliono +sgombero +piace +vivere +così +inutile +tentare +civilizzarci +furti +copertoni +bruciano +accoltellamenti +felicità +milanesi +abitano +zona +ruspa +risparmiatori +fregati +ferita +banca +etruria +ancora +aperta +vogliono +mettere +mani +piccole +banche +locali +ancora +funzionano +opporremo +mezzi +anziché +occuparsi +altro +adozioni +gay +cittadinanza +facile +figli +immigrati +renzi +pensi +risarcire +decine +migliaia +italiani +truffati +dipendenti +pubblici +timbrano +cartellino +poi +vanno +fare +spesa +casa +subito +azienda +privata +verrebbero +cacciati +pedate +ore +milioni +ragazzi +ventenni +assumere +posto +cosa +vuol +dire +gestire +attività +commerciale +resistere +tasse +ingiuste +burocrazia +spiega +minuti +carlo +proprietario +anni +bar +milano +girare +sinistri +parlano +vanvera +evasione +magari +campano +grazie +stato +ladro +timbri +vai +mare +licenziare +subito +milioni +italiani +pagherebbero +oro +poter +timbrare +cartellino +giorni +angolo +buonista” +ecco +video +tentativo +fallito +integrazione +baudo +donna +islamica +mah +commenti +ascoltate +lezioni +imam +tivù +picchiare +donna +senza +lasciare +segni +magari +bastone +piccolo +bisogno +essere +educata +contento +precisa +rispetto +altro +donna +islam +evidente +punizione +corporale +permessa +solo +rifiuta +andare +letto +marito +capito +bene +secondo +me +meriterebbe +bell +insegnamento +signore +pensano +base +tanti +calci +donna +devi +coprirti +no +provochi +capito +amiche +mettete +velo +poi +lamentatevi +qualcuno +molesta +violenze +sessuali +colonia +capodanno +intervistati +sentito +parlare +rispetti +donne +cambi +idea +adegui +cultura +te +torni +paese +giuseppe +terremotato +emiliano +combatte +anni +rientrare +casa +cavillo +burocratico +negano +fondi +ricostruzione +dispiacere +ammala +muore +moglie +anni +dovrà +continuare +vivere +container +stato +tortura +modo +cittadini +me +fa +schifo +difendersi +tasse +folli +ingiuste +imprenditore +prima +paga +dipendenti +fornitori +poi +fisco +evasione +sopravvivenza +stato +ladro +serve +subito +rivoluzione +fiscale +flat +tax +pagare +meno +pagare +negano +permesso +soggiorno +protesta +gira +nudo +palermo +polizia +fermato +rispedirei +volo +paese +chissà +là +gira +nudo +fine +fa +signore +ospita +proprio +agriturismo +quarantina +profughi +minorenni +prima +nega +spazientito +poi +ammette +ricevere +euro +giorno +ogni +ragazzo +quasi +mila +euro +mese +soldi +altro +pubblici +applausi +facile +essere +accoglienti +quando +pagare +conto +italiani +poi +tradire +paese +vergognati +pazzesco +presunti +profughi +maschi +adulti +solo +appartamento +vicine +casa +arrabbiate +proprio +davanti +scuola +elementare +solita +cooperativa +guadagna +basta +integrazione +può +essere +mandi +profughi +paese +abitanti +governo +geni +caserta +colonia +nigeriani +presunti +profughi +chiedono +aiuto +psicologico +ringraziamento +cosa +tentano +violentare +psicologa +rispedirli +subito +casa +calci +guardate +giornalista +sinistra +ride +troppo +colta +informarsi +internet +forse +abbassasse +livello +scoprirebbe +castrazione +chimica +stupratori +pedofili +applicata +altro +anni +tanti +civilissimi +paesi +mondo +me +mette +mani +addosso +bambino +donna +recuperabile +solo +curabile +lega +molla +clandestino +reato +renzi +avvisato +profughi +est +mantenuti +spese +italiani +centro +accoglienza +arrestati +aver +massacrato +botte +accoltellato +tabaccaio +torino +paese +normale +delinquenti +riceverebbero +pena +esemplare +italia +matteo +porte +aperte +renzi +invece +cosa +rischiano +cosa +posto +renzi +rimettere +soldi +tasche +cittadini +partiamo +proposte +concrete +risarcire +milioni +italiani +truffati +tartassati +equitalia +banche +studi +settore +legge +fornero +accordo +fate +girare +milano +sede +pane +quotidiano +associazione +distribuisce +gratuitamente +beni +alimentari +persone +difficoltà +sempre +italiani +anziani +famiglie +bimbi +fila +emergenza +resto +viene +dopo +clandestini +italiani +niente +slogan +cristina +fulvio +provando +pelle +girare +quest +italia +ribaltiamo +corteo +islamico +vie +bolzano +boldrini +piaciuto +sicuramente +messaggio +siria +prendendo +casa +europa +particolarmente +stupidi +sapete +distinguere +bene +male +spazzatura +terroristi +isis +altro +combattendo +invece +fate +entrare +pagherete +prezzo +errore +pagherete +pagheranno +figli +sentite +tranquilli +renzi +alfano +comando +fonte +giornale +https +www +youtube +com +watch +v +z9tx +t8uhaq +vedere +renzi +governanti +europei +fare +finta +niente +mentre +orde +fanatici +islamici +mettono +pericolo +libertà +aggrediscono +centinaia +donne +fa +paura +tempo +silenzio +tace +altro +complice +controllare +espellere +respingere +porto +rispetto +porta +rispetto +gente +merita +essere +ospitata +città +girare +parlano +donne +aggredite +sera +capodanno +germania +centinaia +immigrati +organizzati +altro +integrazione +bestie +castrazione +chimica +galera +casa +capodanno +bande +nordafricani +molestano +violentano +donne +mai +sentito +merkel +male +europa +renzi +servetto +entrambi +complici +accadendo +espulsioni +viene +delinquere +danneggia +tanti +immigrati +perbene +mai +troppo +poche +buon +amici +auguri +serenità +lavoro +sicurezza +futuro +figli +dipende +metto +solo +piccola +parte +tanti +limiti +difetti +tanti +renzi +mandiamo +casa +insieme +può diff --git a/anno3/avrc/assignments/dataviz/dataset/2017/salvini_comuni.html b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_comuni.html new file mode 100644 index 0000000..a751096 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2017/salvini_counter b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_counter new file mode 100644 index 0000000..29f36ad --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_counter @@ -0,0 +1 @@ +{"difesa": 22, "lavoro": 53, "risparmio": 1, "famiglia": 9, "confini": 5, "sinistra": 15, "solo": 61, "chiacchiere": 2, "marzo": 6, "tocca": 3, "parliamo": 1, "po": 16, "me": 13, "futuro": 17, "senza": 32, "giornalisti": 3, "mezzo": 8, "camere": 1, "sciolte": 1, "pronti": 2, "segui": 2, "milioni": 30, "poveri": 6, "disoccupati": 5, "milione": 2, "clandestini": 19, "citt\u00e0": 17, "record": 1, "negativo": 2, "bambini": 11, "nati": 3, "italia": 90, "vedo": 8, "ora": 28, "mettere": 3, "fine": 6, "disastri": 3, "anni": 61, "pd": 82, "restituire": 6, "sicurezza": 13, "italiani": 89, "guardate": 11, "commentate": 2, "riuscite": 2, "rimanere": 2, "svegli": 2, "regaleremo": 1, "principio": 3, "troppo": 11, "spesso": 1, "dimenticato": 1, "primagliitaliani": 30, "insieme": 29, "pu\u00f2": 28, "amici": 27, "ancora": 24, "buon": 15, "natale": 10, "splendida": 12, "comunit\u00e0": 5, "noiussoli": 11, "miglior": 1, "regalo": 3, "immigrati": 35, "regolari": 4, "integrati": 1, "rispettosi": 1, "cultura": 4, "leggi": 7, "voto": 9, "sentite": 6, "fino": 7, "cosa": 22, "detto": 11, "oggi": 30, "pensate": 2, "auguri": 1, "porto": 3, "fare": 32, "giro": 5, "ufficio": 1, "soldi": 14, "televisioni": 1, "banche": 9, "potenti": 2, "sevoicisieteiocisono": 1, "nando": 1, "imprenditore": 2, "perso": 9, "terremoto": 3, "dato": 5, "mano": 24, "tranne": 3, "stato": 48, "secondo": 11, "criteri": 1, "governo": 68, "renzi": 30, "diritto": 10, "nessuna": 9, "forma": 2, "aiuti": 1, "tasse": 15, "altro": 138, "rimboccandosi": 1, "maniche": 1, "lavorando": 1, "giorno": 14, "notte": 4, "ricostruito": 1, "mantenendo": 1, "inalterato": 1, "fatturato": 2, "follia": 7, "sostieni": 1, "fa": 24, "impresa": 3, "lasci": 2, "scappare": 2, "imprenditori": 4, "pronto": 6, "andiamoagovernare": 68, "euro": 40, "spostandomi": 1, "tutta": 18, "milano": 23, "spese": 6, "buoni": 1, "pasto": 1, "n\u00e9": 5, "contributi": 3, "mance": 1, "tassate": 1, "giovani": 11, "trattati": 4, "schiavi": 9, "quindi": 3, "deciso": 2, "andarmene": 1, "altroestero": 1, "accoglienza": 15, "vogliamo": 3, "ricominciare": 1, "crescere": 4, "dobbiamo": 7, "trattenere": 1, "creando": 2, "lavoretti": 1, "sottopagati": 1, "part": 2, "time": 2, "stabile": 1, "licenziato": 1, "episodio": 1, "capotreno": 2, "deve": 14, "poter": 6, "tornare": 8, "lavorare": 6, "\ud83d\udd34\ud83d\udd34\ud83d\udd34follia": 1, "pura": 1, "40mila": 2, "legali": 2, "essere": 41, "assolto": 2, "lega": 79, "tempo": 5, "depositato": 1, "proposta": 11, "legge": 28, "sancisce": 1, "legittimit\u00e0": 1, "tutela": 3, "vittime": 5, "gentiloni": 13, "fregano": 3, "salvini": 27, "priorit\u00e0": 9, "modello": 12, "spelacchio": 1, "stelle": 8, "no": 14, "grazie": 38, "poesia": 2, "maestra": 2, "maria": 3, "altamura": 3, "commosso": 1, "metter\u00f2": 1, "ripropongo": 19, "intervento": 12, "luned\u00ec": 7, "bari": 6, "parte": 20, "sud": 12, "rivoluzione": 5, "buonsenso": 7, "commette": 2, "reati": 3, "rovinato": 7, "vita": 25, "risparmiatori": 5, "merita": 6, "galera": 20, "europa": 32, "decine": 4, "miliardi": 12, "salvare": 2, "straniere": 2, "giunto": 2, "momento": 4, "riprenderci": 2, "almeno": 11, "risarcire": 2, "correntisti": 2, "rovinati\u201d": 1, "lucia": 6, "borgonzoni": 3, "facciamosquadra": 15, "reggio": 1, "emilia": 2, "inaugurare": 1, "nuova": 5, "sede": 2, "dopo": 19, "danno": 7, "pure": 6, "beffa": 1, "rino": 1, "invalido": 1, "gamba": 1, "amputata": 1, "inps": 1, "richiama": 1, "controllare": 1, "ricresciuta": 1, "scherzando": 1, "vero": 6, "controllino": 1, "falsi": 2, "invalidi": 1, "pudore": 1, "condanni": 1, "qualche": 37, "medico": 1, "minuti": 17, "ecco": 23, "prime": 2, "cose": 8, "larivoluzionedelbuonsenso": 3, "\ud83d\udd34\ud83d\udd34\ud83d\udd34prima": 1, "massacrano": 1, "botte": 3, "poi": 26, "derubano": 1, "difendi": 1, "vai": 1, "cittadini": 22, "onesti": 1, "forze": 9, "ordine": 15, "fermare": 5, "ladri": 3, "vergognose": 1, "quando": 25, "daremo": 1, "finalmente": 6, "seria": 4, "legittima": 20, "spettacolo": 7, "territorio": 4, "trasforma": 2, "gioia": 3, "dedichiamo": 1, "vorrebbe": 1, "cancellare": 5, "storia": 9, "civilt\u00e0": 4, "valori": 1, "viva": 11, "presepe": 1, "antico": 1, "forno": 1, "santa": 3, "chiara": 2, "produce": 2, "oro": 4, "celebrato": 1, "pane": 1, "schifezze": 2, "arrivano": 3, "altra": 9, "mondo": 13, "prodotti": 3, "splendide": 1, "tradizioni": 3, "unica": 19, "ricchezza": 1, "affetto": 3, "fiducia": 3, "ripagano": 1, "impegno": 6, "cerco": 1, "metterci": 1, "puglia": 4, "diretta": 43, "battaglia": 2, "state": 9, "ieri": 32, "vista": 6, "intervista": 19, "rai": 11, "annunziata": 1, "aiutatemi": 4, "condividerla": 1, "credo": 7, "andata": 4, "bene": 19, "sempre": 34, "bello": 6, "confrontarsi": 1, "qualcuno": 6, "pensa": 11, "stesso": 3, "modo": 3, "antifascisti\u201d": 1, "modena": 4, "attacco": 2, "polizia": 12, "vandalizzata": 1, "sentito": 2, "lamentarsi": 1, "ipocrisia": 3, "coccola": 2, "violenti": 2, "verona": 6, "natalizia": 1, "scuola": 13, "formazione": 6, "politica": 13, "seguiteci": 1, "orgoglioso": 6, "nuovo": 8, "forte": 5, "liberi": 6, "aspetto": 8, "showville": 1, "coerenza": 2, "fiscale": 11, "flat": 6, "tax": 6, "pensioni": 6, "cancellazione": 2, "infame": 4, "fornero": 13, "invasione": 17, "clandestina": 4, "cittadinanza": 6, "certezza": 11, "pena": 16, "idee": 12, "chiare": 5, "vince": 7, "restituir\u00e0": 1, "figli": 22, "insegnanti": 1, "assegnati": 1, "base": 8, "concorsi": 1, "graduatorie": 2, "regionale": 3, "permettendo": 1, "studenti": 2, "durante": 3, "intero": 2, "ciclo": 2, "studi": 2, "impegneremo": 1, "piene": 1, "culle": 2, "ospedali": 3, "misure": 2, "radicali": 1, "vergognoso": 2, "bonus": 3, "beb\u00e8\u201d": 1, "mamme": 4, "pap\u00e0": 8, "devono": 8, "ritrovare": 1, "gusto": 1, "scommettere": 1, "paese": 44, "pazzesco": 15, "bella": 15, "obbligo": 2, "firma": 1, "rispedito": 2, "casa": 53, "calci": 3, "sedere": 2, "librandi": 2, "uomo": 8, "barbaramente": 1, "massacrato": 2, "coltellate": 1, "filippa": 1, "anziane": 1, "sorelle": 2, "provincia": 5, "catania": 5, "normativa": 1, "vigente": 1, "ottenere": 2, "sconto": 3, "terzo": 2, "stupratori": 4, "assassini": 2, "esserci": 1, "nessuno": 11, "chiede": 4, "spero": 8, "bloccata": 1, "ripensi": 1, "rimedi": 1, "errore": 1, "contribuenti": 2, "pagare": 4, "proteggere": 1, "boschi": 3, "fatto": 10, "interrogazione": 1, "parlamentare": 1, "sapere": 3, "costa": 7, "paga": 5, "penso": 6, "gi\u00e0": 15, "risposta": 6, "fisser\u00e0": 1, "retribuzione": 1, "minima": 3, "schiavismo": 2, "introdurremo": 1, "salario": 1, "orario": 1, "minimo": 2, "garantito": 1, "vivere": 9, "sopravvivere": 3, "succede": 3, "esci": 3, "spesa": 2, "occupano": 2, "devi": 3, "stare": 8, "zitto": 1, "periferia": 4, "esiste": 8, "vuoi": 4, "popolare": 6, "chiedere": 4, "rom": 21, "stanza": 1, "delinquenti": 21, "dovranno": 1, "occupare": 1, "buona": 7, "sorriso": 4, "piace": 11, "crhome": 1, "tv": 2, "realizzato": 1, "bellissimo": 1, "video": 24, "preparando": 1, "riforma": 7, "consentir\u00e0": 1, "bloccare": 2, "conto": 6, "corrente": 2, "caso": 2, "difficolt\u00e0": 2, "banca": 2, "niente": 7, "girare": 20, "rete": 10, "spara": 2, "ferisce": 1, "ladro": 5, "sventando": 1, "rapina": 1, "ricompensarlo": 1, "viene": 10, "punito": 1, "bandito": 2, "sembra": 8, "normale": 15, "diventer\u00e0": 2, "contrario": 4, "ribaltiamo": 2, "accogliereste": 1, "clandestino": 3, "mese": 8, "pensano": 7, "romani": 2, "raggi": 3, "serve": 9, "sperimentare": 1, "stopinvasione": 33, "vera": 4, "realt\u00e0": 7, "virtuale": 1, "vittima": 1, "frane": 1, "alluvioni": 1, "servono": 1, "vincoli": 2, "europei\u201d": 1, "impediscono": 1, "usarli": 1, "pare": 11, "immigrazione": 17, "calciatori": 1, "brutti": 1, "parliamone": 1, "prima": 37, "impegni": 1, "made": 8, "italy": 7, "produzioni": 3, "posso": 1, "servi": 2, "pubblico": 9, "la7": 8, "studio": 5, "apprezzato": 1, "mandiamo": 3, "manca": 4, "poco": 9, "vedere": 10, "giovanna": 1, "signora": 10, "campanello": 1, "truffata": 1, "azzerata": 1, "basterebbe": 1, "indietro": 3, "quei": 1, "regalato": 1, "serio": 5, "vanno": 6, "garantiti": 2, "interessi": 2, "nazionali": 1, "tutelati": 1, "bastapd": 17, "stamattina": 4, "radio1": 1, "ascoltate": 11, "tantissimi": 3, "perbene": 6, "pagano": 2, "mandano": 3, "portano": 3, "rispetto": 13, "contribuiscono": 1, "positivamente": 1, "societ\u00e0": 3, "italiana": 11, "scappa": 4, "guerra": 12, "porta": 5, "fuori": 9, "patto": 2, "chiederemo": 1, "espellere": 2, "mila": 6, "anno": 13, "accordo": 11, "lavoratrice": 1, "voglio": 6, "parole": 12, "belle": 3, "commoventi": 1, "mamma": 10, "licenziata": 1, "chiedeva": 1, "cambiare": 15, "orari": 2, "riuscire": 1, "occuparsi": 2, "figlio": 3, "disabile": 2, "vogliono": 12, "precari": 2, "arrendere": 1, "fake": 2, "news": 2, "dignitoso": 1, "bel": 4, "ricordo": 6, "fisicamente": 1, "seguito": 1, "lontano": 1, "cuore": 12, "domenica": 12, "roma": 21, "facciamolo": 1, "finch\u00e9": 5, "lasceranno": 1, "date": 9, "ricompensa": 1, "piazza": 8, "santi": 1, "apostoli": 1, "migliaia": 14, "arrendono": 2, "sognano": 1, "sicuro": 2, "libero": 8, "arrivato": 2, "fantastica": 1, "pagina": 5, "dallapartedisandra": 2, "dimentichiamo": 2, "te": 9, "parroco": 1, "sardo": 1, "fallimento": 4, "basta": 26, "accattoni": 1, "sacerdote": 1, "accusato": 1, "aver": 13, "usato": 2, "toni": 1, "salviniani": 1, "additato": 1, "intollerante": 1, "razzista": 7, "so": 2, "soltanto": 1, "spazio": 1, "arriva": 4, "resto": 4, "sardegna": 3, "manda": 2, "carabinieri": 4, "circondare": 1, "paesi": 5, "catturare": 1, "abbattere": 2, "maiali": 1, "roba": 12, "matti": 13, "pastori": 1, "agricoltori": 3, "sandra": 4, "pestata": 1, "suon": 3, "pugni": 1, "ferrara": 2, "gang": 1, "risorse": 13, "risultato": 4, "governi": 5, "buonisti": 18, "guida": 3, "sogno": 2, "accoglie": 2, "limite": 3, "possibile": 9, "posto": 8, "asilo": 6, "espulso": 4, "punto": 7, "cane": 3, "bimbo": 2, "teneri": 1, "soffre": 2, "miopia": 1, "congenita": 1, "volta": 13, "occhiali": 2, "regalano": 2, "dolcezza": 1, "felicit\u00e0": 1, "occhi": 4, "bimbi": 9, "prezzo": 2, "incredibile": 8, "immigrato": 6, "dunque": 2, "pago": 1, "biglietto": 8, "possa": 4, "vuole": 13, "cambier\u00e0": 1, "musica": 2, "ve": 8, "garantisco": 5, "riporteremo": 1, "regole": 10, "provvedimenti": 1, "presi": 4, "insulto": 1, "derubati": 3, "stanziato": 1, "solamente": 2, "mentre": 10, "serviva": 1, "miliardo": 1, "processo": 1, "durare": 1, "dovendo": 1, "avvocati": 1, "rischia": 2, "costo": 2, "guadagno": 1, "\u201d": 8, "paolo": 4, "arrigoni": 1, "senatore": 2, "truffati": 2, "massacrati": 3, "chiamano": 1, "partito": 5, "democratico\u201d": 1, "minuto": 25, "equit\u00e0": 1, "salari": 2, "controllo": 9, "cambieremo": 1, "prometto": 1, "sparato": 2, "volevano": 3, "uccidere": 2, "quartiere": 10, "san": 4, "basilio": 1, "aggressione": 6, "troupe": 6, "vittorio": 3, "brumotti": 2, "striscia": 4, "documentando": 1, "spaccio": 8, "incontrollato": 1, "capitale": 1, "luce": 1, "sindaca": 1, "arrendo": 4, "darete": 2, "pulizia": 6, "\ud83d\udd34\ud83d\udd34\ud83d\udd34": 2, "vergogna": 16, "tribunale": 2, "siena": 2, "mandato": 1, "asta": 1, "portato": 2, "via": 10, "invalida": 1, "malata": 3, "terminale": 2, "disperata": 2, "termine": 2, "udienza": 1, "tentato": 6, "tagliarsi": 1, "vene": 1, "ricoverata": 1, "ospedale": 5, "violenza": 6, "confronti": 3, "tiv\u00f9": 14, "parlano": 4, "sentita": 1, "telefono": 1, "aiuter\u00e0": 2, "ogni": 13, "maniera": 1, "sconvolta": 2, "molla": 1, "ovunque": 2, "vada": 4, "fischiato": 1, "contestato": 2, "riservato": 1, "ex": 10, "operai": 3, "lucchini": 1, "colpa": 5, "jobs": 1, "act": 1, "pochi": 5, "mesi": 8, "scorsa": 3, "sky": 2, "tg24": 1, "latella": 1, "chiaro": 10, "dite": 13, "tassa": 7, "rientrare": 1, "aziende": 4, "delocalizzato": 2, "riportando": 1, "italia\u201d": 1, "aliquota": 3, "bassa": 1, "tasche": 1, "potranno": 1, "comprare": 2, "beni": 2, "servizi": 2, "ripartire": 4, "crescita": 2, "inoltre": 2, "sistema": 9, "semplificato": 1, "economia": 5, "sommersa": 1, "riemerger\u00e0": 1, "aiutano": 1, "risolvere": 3, "problema": 7, "evasione": 1, "garantendo": 1, "entrate": 1, "casse": 1, "armando": 4, "siri": 4, "approfondimenti": 3, "www": 23, "tassaunica": 6, "it": 12, "trappola": 1, "moneta": 7, "alziamo": 1, "diventiamo": 1, "meno": 8, "competitivi\u201d": 1, "riesce": 3, "propri": 1, "impiegati": 1, "precarizzazione": 1, "aiuta": 2, "gonfiare": 1, "statistiche": 1, "occupazione": 2, "permetteva": 1, "sparendo": 1, "claudio": 4, "borghi": 4, "unione": 6, "europea": 8, "impone": 1, "tagliare": 1, "pubblica": 3, "diplomatici": 1, "isole": 2, "mauritius": 1, "caraibi": 2, "fiji": 1, "film": 1, "esodo\u201d": 1, "racconta": 5, "francesca": 2, "400mila": 1, "vite": 1, "reali": 1, "lacrime": 2, "vere": 1, "persone": 20, "lottano": 2, "continua": 2, "dire": 11, "dovremmo": 1, "fieri": 1, "avere": 8, "stopfornero": 1, "infila": 1, "presentazione": 1, "libro": 3, "comizio": 2, "ius": 11, "soli": 14, "lasciato": 2, "scrittore": 1, "alza": 1, "salviamo": 1, "mandiamolo": 1, "abbassare": 5, "cos\u00ec": 19, "soluzione": 16, "giusta": 2, "equa": 1, "linea": 4, "costituzione": 1, "trovate": 1, "tutte": 15, "risposte": 4, "domande": 6, "posti": 3, "negozi": 1, "rischio": 7, "folle": 1, "inventata": 1, "ricarica": 1, "sigarette": 1, "elettroniche": 1, "favore": 2, "solite": 3, "multinazionali": 2, "prover\u00e0": 1, "fermarli": 2, "lavoratori": 4, "straordinaria": 2, "voluto": 2, "ovviamente": 1, "censurano": 1, "confronto": 7, "sera": 21, "mezzanotte": 1, "parlamento": 17, "voce": 6, "genitori": 2, "stati": 9, "uccisi": 1, "ucciso": 4, "dimenticate": 4, "intanto": 4, "parla": 6, "telegiornali": 3, "dicono": 8, "fate": 15, "diamo": 2, "privata": 4, "ognuno": 1, "vengono": 9, "vale": 7, "adozioni": 1, "renderle": 1, "costose": 1, "veloci": 1, "dicembre": 1, "torner\u00f2": 3, "bolzano": 1, "chiss\u00e0": 3, "migliorate": 1, "incentivi": 2, "assunzioni": 1, "crescono": 2, "crollano": 1, "finiscono": 1, "bisogna": 3, "ridurre": 3, "tassazione": 2, "lavoro\u201d": 1, "riguardo": 2, "effetti": 1, "bail": 1, "devastanti": 1, "panico": 1, "accaduto": 1, "andati": 1, "ritirare": 1, "assoluta": 1, "dica": 1, "salvato": 2, "irresponsabilit\u00e0": 1, "messo": 3, "strada": 4, "tante": 9, "massimiliano": 5, "fedriga": 6, "presidente": 8, "deputati": 5, "dessero": 1, "secondi": 2, "spiegare": 3, "direste": 1, "risposto": 2, "italiano": 15, "debiti": 3, "debito": 1, "oltre": 14, "costretto": 3, "sergio": 3, "umiliazione": 1, "altri": 14, "rovinati": 1, "amministrazione": 2, "pagamento": 1, "immediato": 1, "crediti": 1, "imposta": 1, "semplice": 5, "ricordate": 3, "marcia": 5, "veneto": 4, "militare": 7, "cona": 2, "migliori": 4, "condizioni": 7, "rottura": 1, "trattativa": 1, "prefetto": 2, "scoppiata": 1, "rissa": 5, "problemi": 5, "istituzioni": 3, "debbano": 1, "benessere": 1, "abitativo": 1, "presunti": 10, "profughi": 20, "cagliari": 6, "grazieeee": 1, "pomeriggio": 6, "gestione": 1, "porte": 3, "aperte": 3, "venite": 1, "invasa": 4, "individui": 1, "fuggono": 2, "guerre": 6, "cercano": 3, "umanamente": 1, "comprensibile": 1, "padre": 4, "d\u00e0": 5, "chiesto": 6, "donne": 6, "rifugiati": 2, "accogliere": 4, "comune": 3, "s\u00ec": 6, "orgogliosa": 1, "dare": 11, "case": 7, "popolari": 3, "smontate": 1, "palle": 2, "sindaci": 6, "domando": 1, "certi": 4, "sindacati": 1, "veniva": 1, "approvata": 1, "stanco": 2, "odia": 1, "accogliente": 2, "clandestine": 1, "accoltellano": 1, "proprio": 10, "zona": 5, "padova": 10, "aggrediti": 4, "inviati": 1, "possiamo": 4, "quasi": 6, "letta": 3, "voglia": 8, "\u26ab\ufe0f\u26ab\ufe0f\u26ab\ufe0f": 1, "spacciatori": 4, "africani": 2, "brumo\u201d": 1, "merito": 2, "cerca": 4, "documentare": 2, "denunciare": 2, "schifo": 11, "controlli": 4, "espulsione": 11, "stranieri": 5, "volere": 2, "potere": 4, "professorone": 1, "monti": 3, "coraggio": 10, "parlare": 8, "ridicolizza": 1, "smonta": 1, "\ud83d\udd34": 6, "branco": 1, "puttana": 1, "mantes": 1, "jolie": 1, "vicino": 5, "parigi": 1, "islamici": 3, "guerriglia": 2, "urbana": 2, "molotov": 2, "spari": 1, "mortaio": 1, "auto": 5, "incendiate": 1, "movente": 1, "arrestato": 5, "trovato": 4, "possesso": 1, "droga": 5, "resistere": 1, "agenti": 5, "morsi": 1, "regalando": 1, "multiculturalismo": 1, "francese": 2, "tardi": 3, "\u26a0": 1, "sconvolgente": 1, "maestre\u201d": 1, "meritano": 3, "telecamere": 4, "asili": 3, "riposo": 2, "gi\u00f9": 1, "mani": 3, "difendere": 7, "matrix": 3, "canale": 4, "divertito": 2, "condividere": 7, "per\u00f2": 7, "pensione": 12, "mese\u201d": 1, "bernardino": 1, "sveglia": 5, "andare": 3, "consegnare": 1, "uova": 2, "mantenere": 1, "figlia": 4, "nipote": 1, "ammiro": 2, "lavora": 2, "instancabilmente": 1, "passione": 3, "sacrifici": 1, "negoziabile": 1, "circa": 1, "saluto": 4, "spettacolare": 2, "sondaggi": 2, "piacciono": 2, "minuscolo": 1, "container": 3, "bagno": 2, "costretta": 1, "nonna": 9, "peppina": 6, "stata": 6, "accolta": 1, "commissione": 1, "settimana": 2, "vittoria": 4, "dovr\u00e0": 1, "definitivo": 1, "sbrigatevi": 1, "passare": 6, "casetta": 4, "forzanonnapeppina": 4, "prove": 3, "operazione": 2, "soccorso": 3, "portiamo": 1, "migranti": 10, "recuperiamo": 1, "acque": 2, "maltesi": 1, "dice": 21, "coordinatrice": 1, "triton": 1, "frontiere": 3, "mediterraneo": 3, "solidariet\u00e0": 6, "cambia": 1, "torner\u00e0": 1, "profugo": 5, "guerra\u201d": 1, "impegnato": 3, "blocco": 6, "stradale": 1, "caserta": 2, "invidiabile": 1, "giacca": 1, "pelle": 1, "sole": 1, "taglio": 1, "capelli": 1, "ricercato": 1, "cibo": 4, "buono": 2, "alloggio": 3, "bene\u201d": 1, "sotto": 6, "soglia": 3, "povert\u00e0": 5, "troppo\u201d": 1, "nulla": 3, "politici": 4, "vorrei": 2, "invece": 9, "cos\u00ed": 3, "\ud83d\udea9lo": 1, "coldiretti": 1, "schizofrenica": 1, "lato": 1, "apre": 1, "insetti": 2, "consente": 2, "produrre": 1, "vino": 4, "zucchero": 1, "formaggi": 2, "polvere": 1, "latte": 1, "votato": 3, "portarci": 1, "tavola": 2, "cavallette": 1, "tarantole": 1, "cimici": 1, "giganti": 1, "altre": 7, "difende": 5, "follie": 3, "massacra": 2, "ministro": 7, "agricoltura": 3, "martina": 1, "giocare": 1, "stesso\u201d": 1, "approvare": 4, "pensi": 2, "spaventarmi": 1, "parolacce": 1, "applausi": 2, "autista": 1, "calma": 1, "intelligenza": 1, "introdurre": 1, "scuole": 4, "educazione": 2, "civica": 3, "ambientale": 1, "ragazzi": 11, "ong": 7, "scafisti": 6, "complicit\u00e0": 1, "elicottero": 1, "diceva": 1, "merde\u201d": 1, "\u201dsignora\u201d": 1, "prete": 1, "beh": 1, "voleva": 1, "passaggio": 1, "anzich\u00e9": 1, "sparare": 1, "bufale": 1, "quali": 1, "crede": 1, "preoccupino": 1, "amministrare": 1, "comuni": 2, "territori": 1, "nord": 7, "primaglitaliani": 2, "giornata": 5, "approfondimento": 1, "centinaia": 11, "arrivati": 4, "lusso": 1, "gioielli": 1, "banconote": 1, "false": 1, "pronte": 1, "truffe": 1, "campo": 2, "strano": 1, "mai": 14, "ruspa": 1, "documenti": 3, "scontenti": 2, "conetta": 2, "venezia": 5, "accontentati": 1, "ricollocati": 1, "strutture": 1, "alcuni": 6, "gradiscano": 2, "chiedono": 1, "eh": 3, "allevatori": 1, "utilizzo": 1, "carbonara": 1, "preferisco": 1, "classica": 1, "ubriachi": 2, "storti": 1, "litigano": 2, "fatti": 6, "prodi": 2, "alema": 1, "giochini": 1, "palazzo": 3, "poltrone": 2, "occuparmi": 1, "periferie": 3, "prendendo": 3, "autobus": 5, "torino": 7, "rischi": 3, "propria": 5, "incolumit\u00e0": 2, "fisica": 1, "merda": 3, "vaffanculo": 2, "sassaiole": 1, "fumogeni": 1, "scontri": 2, "bravi": 4, "rappresentanti": 2, "meticci": 1, "autodefinitisi": 1, "tali": 2, "davanti": 6, "regione": 3, "lombardia": 2, "democratici": 3, "male": 7, "entra": 4, "mps": 1, "scemi": 2, "povero": 3, "renzino": 1, "destinazione": 1, "\ud83d\udd35": 1, "debbio": 3, "spiegato": 1, "primo": 10, "riguardate": 1, "abbastanza": 5, "efficace": 3, "legger\u00f2": 1, "commenti": 5, "massacrate": 1, "brutalmente": 1, "busto": 1, "arsizio": 1, "varese": 1, "centro": 9, "pieno": 4, "29enne": 1, "rumeno": 1, "ubriaco": 4, "motivo": 4, "verme": 2, "signore": 5, "argia": 1, "fin": 1, "preghiera": 5, "salvarsi": 3, "abbraccio": 10, "wilma": 1, "tragedia": 1, "vissuta": 1, "buonismo": 2, "truffa": 2, "ricevere": 1, "stipendio": 2, "dimezzato": 1, "dovuti": 2, "vari": 4, "soluzioni": 2, "credibili": 1, "aliquote": 1, "diminuire": 1, "misura": 1, "strutturale": 1, "fondo": 2, "capirli": 1, "sindaco": 13, "sentivano": 1, "mancanza": 1, "marachella": 1, "immediata": 5, "sardi": 1, "sabato": 5, "prossimo": 2, "novembre": 4, "fiera": 1, "felice": 3, "isola": 2, "nota": 2, "ingresso": 5, "accreditarsi": 1, "scrivendo": 1, "accrediti": 1, "cagliari2017": 1, "noiconsalvini": 3, "org": 11, "rischiato": 1, "grosso": 1, "inviato": 1, "subita": 1, "bologna": 6, "cocaina": 2, "offerto": 1, "pistole": 1, "kalashnikov": 1, "onore": 5, "servizio": 10, "documentazione": 1, "degrado": 6, "conduce": 1, "mettendo": 3, "disonore": 1, "quegli": 1, "amministratori": 2, "pubblici": 3, "tollerano": 1, "vedova": 2, "disabili": 2, "stime": 1, "spender\u00e0": 1, "finti": 3, "scappano": 2, "migliorare": 2, "storie": 1, "angelina": 1, "stringe": 1, "giusto": 2, "dovrebbe": 8, "nato": 3, "vissuto": 1, "preso": 9, "trasmissione": 1, "scarafaggi": 1, "mangi": 1, "boldrini": 16, "cena": 2, "\ud83d\udd34\ud83d\udd34\ud83d\udd34basta": 1, "armi": 2, "accanto": 1, "selvaggiamente": 1, "targata": 2, "gentaglia": 3, "giornalista": 7, "filippo": 1, "facci": 1, "esperienza": 1, "consiglio": 7, "visione": 1, "condivisione": 1, "bacheche": 3, "capirete": 1, "vanitoso": 1, "premier": 2, "sommessamente": 1, "africa": 5, "radio": 2, "calcio": 2, "molto": 9, "importanti": 1, "tenero": 1, "piccolo": 2, "ride": 2, "sonno": 1, "sognando": 1, "vederli": 1, "riempie": 2, "orgoglio": 3, "crescano": 1, "sognare": 1, "grande": 8, "utopia": 1, "mostruosa": 1, "crudelt\u00e0": 1, "immagini": 6, "sconvolgenti": 1, "riempirmi": 1, "tristezza": 1, "imbestialire": 1, "disumana": 1, "badante": 1, "livorno": 1, "picchiava": 1, "insultava": 1, "nonni": 1, "allontanata": 1, "andrebbe": 1, "arrestata": 1, "rispedita": 1, "ospitati": 2, "veneziano": 2, "bloccano": 3, "traffico": 2, "volte": 4, "testimone": 1, "nomadi": 1, "bevevano": 1, "particolarmente": 1, "metteva": 1, "addosso": 2, "pazienza": 3, "cercando": 1, "tranquillizzarlo": 1, "certo": 8, "presa": 1, "persona": 6, "sbagliata": 1, "infatti": 1, "ragazzo": 5, "spinto": 1, "finita": 2, "l\u00ec": 2, "scattata": 1, "bancone": 1, "brillante": 1, "idea": 3, "prendere": 2, "ducato": 1, "sfondare": 1, "vetrina": 1, "gasoline": 2, "tolleranzazero": 13, "http": 5, "padovaoggi": 1, "cronaca": 1, "furgone": 2, "vetrata": 1, "fornace": 1, "morandi": 1, "html": 1, "allenatore": 1, "ideatore": 1, "famoso": 1, "deficit": 1, "pil": 2, "numero": 3, "casuale": 1, "studiosi": 1, "giustificare": 1, "analisi": 5, "scientifiche": 1, "capito": 3, "toglie": 1, "rispettare": 2, "regola": 1, "senso": 6, "nome": 4, "norme": 3, "tetti": 1, "arbitrari": 1, "imposti": 1, "bruxelles": 5, "aiutare": 2, "sforeremo": 1, "contento": 2, "voti": 4, "forza": 8, "proposte": 8, "incontrollata": 1, "ridiscussione": 1, "europei": 3, "portino": 1, "imprese": 3, "fateci": 2, "votare": 9, "febbraio": 3, "premieranno": 1, "convincenti": 1, "notti": 1, "brutte": 1, "tg5": 2, "dedicato": 5, "aggiornamento": 1, "vergognosa": 2, "situazione": 4, "burocrazia": 4, "debole": 1, "forti": 3, "deboli": 1, "terremotata": 2, "invito": 2, "partiti": 1, "svegliarsi": 1, "trovata": 1, "quarto": 2, "approvarla": 1, "appello": 4, "rinnoviamo": 1, "https": 3, "facebook": 8, "com": 5, "salviniofficial": 2, "videos": 3, "auspica": 1, "ritorno": 1, "cosiddette": 1, "mare": 3, "senn\u00f2": 1, "arrivare": 4, "pagarci": 3, "boldriniclandestina": 1, "purtroppo": 9, "pensiero": 6, "treni": 4, "metro": 6, "rovinata": 1, "porteremo": 2, "incita": 1, "odio": 7, "verso": 4, "confermo": 1, "essa": 1, "memoria": 1, "governanti": 1, "indegni": 1, "scorso": 3, "luglio": 1, "vennero": 1, "picchiati": 1, "torturati": 1, "ferocia": 2, "addirittura": 2, "ferro": 1, "stiro": 1, "banda": 2, "marocchini": 4, "infami": 1, "latitante": 1, "condannati": 2, "appena": 2, "ciascuno": 1, "rosina": 2, "sconsolata": 1, "ammazzare": 1, "promesso": 1, "maledetti": 1, "disastro": 1, "giuste": 3, "pene": 1, "certe": 3, "ennio": 1, "duramente": 1, "colpito": 1, "maltempo": 1, "sicilia": 6, "particolare": 4, "ragusano": 1, "siracusano": 1, "catanese": 1, "acate": 1, "letto": 1, "denunciano": 2, "italiane": 5, "madre": 3, "alessio": 1, "sinto": 1, "stupratore": 1, "lascio": 2, "dico": 4, "dose": 1, "esposizione": 1, "internazionale": 3, "motociclo": 1, "eccellenze": 1, "stupra": 3, "castrazione": 2, "chimica": 2, "doverosa": 1, "campi": 3, "esistono": 1, "subisce": 1, "patria": 1, "potest\u00e0": 1, "ristoranti": 1, "severe": 1, "fumi": 1, "emanati": 1, "possono": 7, "bruciare": 1, "nubi": 1, "tossiche": 1, "necessario": 1, "innanzitutto": 3, "riportare": 3, "legalit\u00e0": 1, "gelo": 2, "disegno": 1, "presentato": 2, "emendamento": 2, "decreto": 2, "abbinato": 1, "bilancio": 1, "altroora": 1, "aiutando": 1, "famiglie": 2, "terremotate": 1, "stessa": 6, "maltrattati": 1, "denunce": 4, "segnalazioni": 1, "propone": 3, "inascoltata": 1, "antiviolenza": 1, "tolleranza": 4, "luoghi": 1, "dovrebbero": 1, "anziani": 3, "\ud83d\udd34fai": 1, "sbarchi": 4, "fermati": 1, "carcerati": 1, "nordafricani": 3, "pdclandestino": 1, "votosubito": 33, "corrierelive": 1, "rispondere": 3, "positivo": 2, "giada": 2, "bimba": 3, "iscrive": 1, "corso": 3, "karate": 1, "palestra": 1, "gestita": 1, "maestro": 1, "carmelo": 2, "entrando": 2, "tana": 1, "orco": 1, "sessualmente": 1, "usando": 1, "posizione": 1, "autoritaria": 1, "costringerla": 1, "accettare": 2, "spingendola": 1, "subire": 2, "rapporti": 1, "quarantenni": 1, "raccontare": 2, "veli": 1, "dolce": 1, "sincero": 1, "togliermelo\u201d": 1, "gesto": 2, "splendido": 5, "atto": 1, "conoscete": 1, "subito": 9, "violenze": 1, "sessuali": 1, "aiutatele": 1, "riusciamo": 1, "stanarli": 1, "politico": 1, "condannare": 1, "mostri": 1, "impuniti": 1, "spaccare": 2, "naso": 1, "testate": 1, "daniele": 1, "piervincenzi": 1, "nemo": 1, "escluso": 1, "benvenuti": 3, "firenze": 5, "scrigno": 1, "bellezze": 1, "invidia": 1, "maxi": 1, "risse": 3, "colpi": 2, "sprangate": 1, "pakistani": 1, "bengalesi": 1, "commercianti": 3, "terrorizzati": 1, "pdacasa": 3, "salone": 2, "ospitava": 1, "ragazzine": 1, "furto": 1, "seconda": 1, "live": 4, "tatua": 1, "petto": 1, "dio": 1, "giudicare": 3, "quattordicenni": 1, "musumeci": 1, "squadra": 3, "assemblea": 1, "siciliana": 1, "militanti": 3, "candidati": 1, "100mila": 2, "puliti": 1, "conquistati": 1, "zero": 6, "entro": 1, "campania": 1, "calabria": 4, "proporremo": 1, "locali": 2, "rilanciare": 3, "speranza": 6, "premia": 1, "rovina": 2, "approveremo": 1, "tuteli": 1, "metteremo": 1, "ingiustizie": 2, "ennesima": 6, "bottigliate": 1, "parco": 3, "montagnola": 2, "pieni": 1, "pagatori": 1, "amati": 1, "minacciato": 1, "donna": 5, "rimediare": 3, "girato": 1, "delia": 2, "arzilla": 1, "distrutta": 1, "scomparsa": 1, "marito": 1, "eppure": 4, "accolto": 1, "maia": 2, "simpatico": 1, "bull": 1, "terrier": 1, "ricominciato": 1, "diventati": 1, "coppia": 2, "inseparabile": 1, "zampe": 1, "auguriamo": 1, "tanti": 11, "tenerezze": 1, "belpasso": 1, "arance": 1, "marocchine": 1, "difendiamo": 1, "consumiamo": 2, "baracche": 1, "rione": 1, "taormina": 2, "messina": 1, "tour": 1, "palagonia": 1, "mattina": 16, "agor\u00e0": 1, "attentato": 1, "islamista": 1, "new": 1, "york": 1, "elezioni": 5, "progetto": 5, "confrontarmi": 1, "opinioni": 1, "diverse": 1, "convincente": 1, "testa": 3, "ragusa": 1, "compriamo": 1, "insiste": 3, "portarsi": 1, "sacchi": 1, "pelo": 1, "capodanno": 2, "interno": 4, "hotel": 1, "villa": 1, "sikania": 1, "agrigentina": 1, "ospita": 3, "residenti": 3, "vicini": 1, "alfano": 3, "apertura": 2, "competenze": 1, "energie": 1, "tanta": 4, "partecipare": 3, "scuoladiformazionepolitica": 5, "aggiornamenti": 1, "inviamo": 1, "bacione": 1, "calvi": 1, "risorta": 1, "soliti": 2, "centri": 5, "sociali": 5, "distrutto": 1, "gazebo": 2, "aggredito": 4, "attaccano": 2, "temono": 1, "fermeranno": 2, "paura": 3, "stazione": 12, "palermo": 4, "viaggio": 5, "direzione": 1, "agrigento": 3, "prosegue": 1, "compagnia": 5, "ore": 4, "trapani": 1, "raggiungere": 1, "treno": 3, "siciliani": 1, "aiutati": 2, "centrale": 5, "ragazze": 4, "entusiasmante": 1, "sdfp2017": 1, "solito": 2, "tendenza": 1, "caviale": 1, "champagne": 1, "rimprovera": 1, "linguaggio": 1, "seminerei": 1, "vive": 3, "certa": 1, "gente": 14, "giochi": 1, "rispondereste": 1, "diffondono": 1, "nuovi": 11, "stili": 1, "et\u00e0": 2, "peggio": 3, "arrivi": 1, "67anni": 1, "vorrebbero": 2, "piddini": 3, "grecia": 2, "esempio": 2, "salute": 1, "costretti": 5, "rovistare": 1, "scarti": 1, "mercato": 5, "protestano": 2, "gradiscono": 1, "mille": 4, "condividi": 7, "formigli": 1, "buone": 2, "ricordarci": 1, "sequestrare": 1, "anima": 1, "spezzare": 1, "famiglia\u201d": 1, "marcire": 2, "tommy": 1, "paola": 2, "nata": 1, "sorda": 1, "sente": 1, "tenerezza": 1, "stop": 4, "islam": 2, "bisogno": 5, "strasburgo": 4, "smontato": 1, "euroballe": 1, "scafista": 1, "bacheca": 2, "buonista": 4, "visto": 11, "nessun": 2, "telegiornale": 2, "ricevuta": 1, "renziacasa": 3, "statale": 2, "spendere": 5, "meglio": 9, "chilometro": 1, "partecipazione": 1, "lombardi": 1, "veneti": 1, "referendum": 1, "obiettivo": 1, "esportare": 1, "regioni": 4, "spacciatore": 1, "mangiare": 2, "sporco": 1, "mafia": 1, "vendere": 2, "erba": 1, "dimenticare": 1, "governati": 1, "cucinare": 1, "fornelli": 1, "ristorante": 1, "ospitalit\u00e0": 1, "professionale": 1, "conferma": 1, "cucina": 1, "imbattibile": 1, "ristoratori": 1, "cuochi": 1, "camerieri": 1, "mettono": 2, "difficilissimo": 1, "mentito": 2, "laurea": 1, "diploma": 1, "maturit\u00e0": 1, "sostanza": 1, "solita": 2, "spocchia": 1, "sfreccia": 1, "autoblu": 1, "istruzione": 1, "bell": 2, "fortuna": 4, "incapaci": 3, "corsa": 1, "aiuto": 6, "dovuto": 6, "graziano": 1, "stacchio": 1, "provare": 1, "innocenza": 1, "risparmi": 1, "bruciati": 1, "difeso": 1, "legalmente": 1, "necessaria": 1, "principali": 1, "missioni": 1, "ladifesa\u00e8semprelegittima": 2, "caro": 1, "ermes": 1, "mattielli": 1, "incontrare": 1, "mor\u00ec": 1, "infarto": 1, "appreso": 1, "dover": 1, "derubato": 2, "prego": 1, "ascoltare": 4, "diffondere": 2, "umiliato": 1, "burocrate": 1, "parassitario": 1, "tenuto": 1, "duro": 1, "suicidati": 1, "civile": 5, "amministrazioni": 1, "pubbliche": 1, "trattano": 1, "fida": 1, "qualcosa": 1, "sbaglio": 5, "allegria": 1, "fresche": 1, "classe": 1, "sola": 1, "integrazione": 6, "attenti": 2, "pronta": 3, "accusa": 4, "razzismo": 3, "persa": 1, "night": 1, "tabloid": 1, "programma": 4, "rapire": 2, "parlato": 3, "arresto": 3, "kenioti": 1, "fratello": 2, "sorella": 1, "oratorio": 1, "monza": 5, "racconto": 2, "pianto": 1, "capivo": 1, "succedendo\u201d": 1, "vicenza": 1, "riusciti": 1, "entrare": 4, "albergo": 4, "vivono": 3, "guadagna": 1, "spuntano": 1, "affari": 2, "5stelle": 2, "signor": 3, "grillo": 2, "nascondono": 2, "consuma": 1, "paghi": 2, "bolletta": 1, "elettrica": 1, "messi": 1, "portare": 3, "servano": 1, "supplicarlo": 1, "tranquillamente": 1, "normalmente": 1, "approvato": 2, "reato": 4, "tortura": 1, "mette": 3, "poliziotti": 4, "penitenziaria": 2, "iostoconlapolizia": 1, "restituiscano": 1, "ricevuti": 2, "europee": 1, "freghiamo": 1, "imporre": 1, "corrette": 1, "tutelare": 2, "produttivo": 2, "lavorativo": 1, "partecipato": 1, "bottiglie": 4, "aperte\u201d": 1, "evento": 3, "scoperta": 1, "vini": 1, "attualmente": 1, "quantit\u00e0": 2, "prodotto": 1, "francia": 2, "rimane": 2, "alto": 1, "valore": 1, "produzione": 1, "nonostante": 1, "prodotta": 1, "inferiore": 2, "vuol": 1, "mediamente": 1, "valorizzare": 1, "sfida": 1, "picchiano": 1, "capitreno": 1, "esigono": 1, "viaggiare": 1, "gratis": 3, "armadietti": 1, "quadri": 2, "elettrici": 1, "carrozze": 1, "ormai": 3, "quotidianit\u00e0": 1, "pretendere": 4, "normalit\u00e0": 1, "risorsa": 7, "azione": 1, "fuoco": 4, "cassonetto": 1, "escandescenza": 1, "inveisce": 1, "pattuglia": 1, "ripulita": 3, "sopravvivenza": 1, "scontrini": 1, "concesso": 1, "abusiva": 2, "ripulire": 2, "badia": 1, "polesine": 1, "rovigo": 1, "libert\u00e0": 7, "polemiche": 1, "litigi": 1, "miriam": 1, "sfratto": 1, "dipinti": 1, "ricordi": 1, "pagarsi": 2, "residence": 1, "accontenterebbe": 1, "magazzino": 1, "capanna\u201d": 1, "75mila": 1, "profughi\u201d": 1, "tg": 4, "nazionale": 1, "fantasma": 1, "testimonianza": 4, "moglie": 2, "seguita": 1, "ostaggio": 4, "algerini": 1, "drogati": 1, "vigilanza": 1, "algeria": 1, "fallito": 3, "riparte": 1, "curarla": 1, "rimettere": 1, "moto": 1, "immunitario": 1, "creare": 1, "prevede": 1, "inversione": 1, "onere": 1, "prova": 1, "inaccettabile": 1, "materia": 1, "ragione": 7, "contribuente": 1, "torto": 1, "catalani": 1, "assordante": 1, "silenzio": 3, "sanzioni": 3, "russia": 3, "putin": 2, "democratico": 3, "malmenati": 1, "chiedevano": 1, "manganelli": 1, "proiettili": 1, "gomma": 1, "prevale": 1, "democrazia": 1, "disperati": 1, "scantinati": 1, "edifici": 1, "abbandonati": 1, "frattempo": 1, "hashtag": 1, "missione": 1, "incinte": 1, "impunibili": 1, "travestono": 1, "artiste": 1, "avvicinare": 1, "turisti": 1, "fregargli": 1, "portafoglio": 2, "stile": 3, "immagine": 1, "culla": 1, "arte": 2, "fregato": 4, "catalogna": 1, "ditemi": 1, "ridotto": 2, "diventato": 1, "teatro": 3, "impedire": 3, "circondano": 1, "vigili": 3, "mandandone": 1, "las": 1, "vegas": 1, "strage": 3, "morti": 4, "feriti": 2, "prescindere": 1, "legami": 2, "terrorismo": 5, "islamico": 4, "criminale": 2, "vicinanza": 1, "popolo": 6, "americano": 2, "altrimenti": 3, "faziosa": 1, "mollato": 1, "andiamo": 6, "ridare": 2, "amichetti": 1, "casino": 2, "g7": 2, "lasciati": 1, "lanciarmi": 1, "insulti": 4, "sputi": 1, "fascisti": 2, "blaterano": 1, "ascoltateli": 1, "smetterla": 1, "sinistroide": 1, "risponde": 2, "cazzo": 1, "frega": 1, "cretina": 1, "annetto": 2, "potrebbe": 1, "cura": 1, "magari": 7, "imparerebbero": 1, "vitto": 1, "cellulare": 1, "cittadino": 2, "cimitero": 3, "karaboue": 1, "fargli": 1, "morale": 2, "informi": 1, "deficiente": 1, "cappuccio": 1, "giallo": 1, "platea": 1, "consulenti": 1, "abolire": 1, "fiato": 1, "giovanile": 1, "eliminare": 1, "inutile": 3, "dannosa": 1, "settore": 1, "spesometro": 1, "drasticamente": 2, "carico": 1, "trump": 7, "uniti": 3, "rubare": 2, "compilation": 1, "etruria": 1, "sicuramente": 2, "prossima": 2, "legislatura": 1, "kompagni": 5, "regalare": 2, "intenzione": 1, "integrarsi": 2, "fortunatamente": 1, "vinceremo": 2, "asfalta": 1, "conduttore": 2, "ammette": 1, "scene": 1, "quotidiane": 1, "quartieri": 2, "radicalizzati": 1, "molenbeek": 1, "belgio": 1, "segnali": 1, "mostrano": 1, "limiti": 4, "alcune": 2, "tipi": 1, "culture": 1, "integrabili": 1, "diverso": 1, "rapporto": 1, "cristiano": 1, "sostenere": 3, "significa": 1, "negare": 3, "verit\u00e0": 3, "economici": 1, "molti": 1, "casi": 2, "denutrizione": 1, "seguite": 4, "visita": 1, "magliana": 1, "puntata": 1, "cartabianca": 1, "bianca": 1, "berlinguer": 1, "diffonderla": 1, "vergognerei": 1, "allevato": 1, "bestie": 1, "dichiarazioni": 1, "allucinanti": 1, "minorenni": 3, "accusati": 1, "stupro": 4, "rimini": 3, "susanna": 2, "zitta": 1, "rende": 1, "particolari": 1, "agghiaccianti": 1, "successo": 1, "umano": 1, "ceccardi": 1, "c\u00e0scina": 1, "pisa": 1, "puoi": 8, "sognarlo": 2, "farlo": 3, "walt": 1, "disney": 1, "aprire": 2, "diventate": 1, "pericolose": 1, "nascoste": 1, "finte": 2, "turiste": 1, "passeggio": 1, "subendo": 1, "aggressioni": 1, "minacce": 3, "balordi": 1, "molestatori": 1, "tipo": 1, "raddoppiare": 1, "indennit\u00e0": 1, "possiede": 1, "ciechi": 2, "concreto": 1, "strappare": 1, "torre": 1, "angela": 1, "nigeriano": 2, "armato": 3, "piccone": 1, "sfascia": 1, "terrorizza": 1, "condominio": 1, "lasciano": 1, "bruno": 2, "vespa": 2, "permesso": 3, "leggo": 1, "ottobre": 1, "terza": 2, "edizione": 2, "cattedre": 1, "cravatta": 1, "formato": 1, "uomini": 6, "educando": 1, "mentale": 2, "scambio": 2, "tesi": 1, "partendo": 1, "numeri": 9, "informati": 1, "iscriviti": 1, "email": 1, "segreteria": 1, "sfrattata": 1, "legno": 2, "donatale": 1, "famigliari": 2, "rendete": 1, "grida": 1, "vendetta": 1, "domani": 14, "andr\u00f2": 2, "martino": 1, "fiastra": 1, "macerata": 1, "cercheremo": 1, "vicenda": 1, "chiusi": 2, "veri": 2, "detenuti": 2, "richieste": 1, "diventeranno": 1, "fassino": 1, "spalleggiato": 1, "regista": 1, "radical": 1, "chic": 1, "inneggia": 2, "multiculturale": 1, "provano": 1, "iniziare": 1, "pronunciare": 1, "parola": 2, "blocchiamo": 2, "bloccarlo": 1, "dentro": 2, "zittisce": 1, "cittadina": 1, "esasperata": 1, "riprende": 1, "richiesta": 2, "esagerata": 1, "pontida": 3, "pontida17": 2, "imbavaglieranno": 1, "grazieeeee": 1, "forzalega": 3, "prepariamo": 1, "magistrato": 1, "rosicone": 1, "sciacallo": 1, "nicola": 2, "porro": 2, "schiena": 1, "dritta": 1, "orecchie": 2, "dimostrato": 1, "cresciamo": 1, "dimostrano": 1, "sostengono": 1, "prosciugano": 1, "conti": 2, "esproprio": 1, "proletario": 1, "precedenti": 1, "ricorso": 1, "singolo": 1, "libereremo": 1, "bianco": 3, "sessista": 1, "imbavagliarci": 1, "sbagliate": 1, "africano": 1, "sappia": 1, "spiaggia": 1, "violentare": 1, "avvocato": 2, "comitato": 1, "pari": 1, "opportunit\u00e0": 1, "corte": 1, "salerno": 1, "tale": 4, "carmen": 1, "genio": 2, "ricoveratela": 1, "conferenza": 1, "stampa": 1, "neanche": 2, "turchia": 4, "usano": 1, "giudice": 3, "arresti": 2, "domiciliari": 3, "presto": 3, "accusata": 1, "minacciare": 1, "vicina": 1, "coltello": 2, "dicendole": 1, "scopare": 1, "famigliola": 1, "assassino": 2, "noemi": 1, "saluta": 1, "carcere": 6, "avvantaggiato": 2, "germania": 1, "pensionato": 1, "lavoratore": 1, "dipendente": 1, "accorto": 1, "valevano": 1, "met\u00e0": 2, "giancarlo": 1, "giorgetti": 1, "deputato": 2, "vicesegretario": 1, "usciranno": 1, "paparino": 1, "arrestati": 2, "notizia": 1, "festa": 4, "finisce": 1, "figo": 1, "ciao": 2, "aereo": 2, "ritardo": 1, "parlo": 1, "funziona": 4, "sostenibile": 1, "equo": 1, "progressivo": 1, "attuale": 3, "percentuale": 1, "superiore": 1, "lascerebbe": 1, "beneficio": 1, "lasciare": 2, "francofonte": 1, "siracusa": 2, "paghetta": 1, "vestiti": 1, "distruggono": 1, "mobili": 1, "lanciano": 1, "balcone": 1, "tranquilli": 8, "semina": 3, "vedono": 2, "liberare": 2, "scandicci": 1, "leganord": 2, "toscana": 3, "piemonte": 1, "trecate": 1, "novara": 1, "pioggia": 1, "ferma": 3, "sbarco": 1, "indisturbato": 1, "approdi": 1, "bagnanti": 1, "allarme": 1, "fuga": 3, "pretende": 1, "salire": 1, "toccarmi": 1, "ammazzo": 1, "arroganza": 1, "addetti": 1, "favoriscono": 1, "pagato": 1, "intera": 1, "favorito": 1, "penalizzato": 1, "evidentemente": 2, "venduto": 2, "nemmeno": 7, "tuteleremo": 1, "franco": 2, "carabiniere": 3, "congedo": 1, "giardino": 1, "abitazione": 1, "treviso": 2, "sacrosante": 1, "addio": 1, "gastone": 1, "moschin": 1, "scena": 1, "rendo": 1, "cinema": 1, "riordinare": 1, "applaudite": 1, "grillino": 1, "maio": 1, "aiutami": 1, "regolare": 1, "immagino": 1, "battaglie": 1, "accorge": 1, "moi": 1, "criminali": 2, "sgomberare": 1, "madonnina": 1, "riccioli": 1, "fisarmonica": 1, "pinzolo": 2, "buonasera": 1, "trentino": 1, "bastaaaaa": 2, "espulsioni": 4, "tranquillit\u00e0": 1, "casaaaaa": 2, "sassi": 1, "alba": 1, "centinaio": 1, "accampati": 1, "abusivamente": 4, "giardini": 1, "indipendenza": 1, "sgomberi": 2, "discorsi": 1, "muore": 1, "falso": 5, "pagheranno": 4, "professor": 3, "gian": 2, "carlo": 3, "blangiardo": 2, "universit\u00e0": 2, "bicocca": 2, "onda": 2, "tace": 1, "complice": 4, "oriana": 2, "ponte": 2, "dimarted\u00ec": 1, "invidio": 2, "serenit\u00e0": 2, "tosta": 3, "gettato": 2, "disperazione": 2, "cazzola": 2, "bronzo": 2, "ricoveratelo": 2, "quinta": 2, "colonna": 2, "concederei": 2, "quadro": 3, "islamiche": 2, "firmano": 2, "nero": 2, "diritti": 5, "capiti": 2, "cercava": 1, "recuperare": 2, "attracca": 1, "nave": 1, "carica": 2, "unici": 2, "razzisti": 6, "lacittadinanzanonsiregala": 5, "30mila": 1, "fisco": 2, "finito": 1, "statoladro": 2, "dibattito": 2, "frequenti": 1, "passa": 2, "maurizio": 1, "leo": 1, "spiega": 3, "rivedendo": 1, "logica": 1, "andiamogovernare": 1, "offerti": 1, "coop": 5, "lavori": 6, "garantisce": 1, "aprile": 4, "medici": 1, "ridicolizzate": 1, "inchieste": 1, "perdono": 1, "giorni": 1, "adempimenti": 1, "burocratici": 1, "media": 2, "ocse": 1, "prof": 2, "luigi": 2, "carbone": 1, "massimi": 1, "esperti": 1, "semplificazione": 1, "amministrativa": 1, "zavorra": 1, "correre": 2, "andrea": 2, "orlando": 1, "romano": 1, "entrambi": 1, "giustizia": 4, "annegare": 1, "sostiene": 2, "affondare": 1, "navi": 2, "bordo": 2, "vergognosi": 1, "bugiardi": 1, "quereliamo": 2, "anna": 1, "merlettaia": 1, "burano": 1, "straordinario": 1, "tramandare": 1, "rtl": 3, "quel": 4, "poveretto": 1, "spirito": 1, "saviano": 1, "ignorante": 1, "farneticante": 1, "sgrammaticato": 1, "bloccato": 2, "leviamo": 1, "scorta": 1, "diffondiamo": 1, "napoli": 8, "esercito": 1, "accerchiati": 1, "abitanti": 2, "ritrovano": 1, "amico": 3, "maggio": 3, "coraggioso": 3, "procuratore": 2, "zuccaro": 3, "eventuali": 1, "beccata": 1, "blitz": 5, "ribella": 1, "insulta": 1, "sbava": 1, "ridotti": 1, "facciamopulizia": 5, "moschea": 1, "cavalcanti": 1, "estate": 1, "diventa": 1, "islamica": 2, "giustamente": 1, "arrabbiano": 1, "controllore": 1, "parente": 1, "bit": 2, "2vtdf6h": 1, "sudanese": 1, "zigzagava": 1, "bici": 1, "rubata": 2, "vigile": 2, "tenta": 1, "immobilizzarlo": 1, "presunto": 1, "preziosa": 1, "boldriniana": 2, "ruba": 1, "pistola": 1, "poteva": 1, "capiranno": 1, "picchiato": 1, "pluripregiudicati": 1, "spalle": 1, "schifosi": 1, "scandalizzano": 1, "povia": 1, "artista": 2, "efficaci": 1, "facciamoli": 1, "scienziato": 1, "capire": 8, "poliziotto": 2, "ventimiglia": 1, "balia": 1, "malpensante": 1, "condanna": 2, "agente": 1, "impossibili": 1, "riconoscerci": 1, "primi": 2, "discutono": 1, "comunque": 4, "importante": 1, "inviare": 1, "manifestazione": 2, "cgil": 1, "allegri": 1, "corre": 1, "pagarvi": 3, "prende": 1, "autostrada": 1, "eccomi": 1, "cesenatico": 1, "romagna": 2, "insegna": 4, "fronte": 2, "vergognarsi": 1, "venerd\u00ec": 1, "organizza": 1, "presidio": 1, "camollia": 1, "muovendo": 1, "parlamentari": 2, "posizioni": 1, "politiche": 1, "entrano": 1, "crisi": 3, "economica": 2, "demografica": 1, "vuote": 1, "saldo": 1, "chiarissimo": 1, "trasmesso": 1, "reti": 1, "unificate": 1, "attendo": 1, "manifestato": 1, "bombe": 2, "carta": 1, "massimo": 3, "bitonci": 4, "evitato": 1, "sperare": 1, "strane": 1, "connivenze": 1, "consigliere": 1, "comunale": 1, "maggioranza": 2, "processi": 1, "bagnini": 1, "dir\u00e0": 2, "bottiglia": 1, "correr\u00e0": 1, "tappe": 1, "2tx5rva": 1, "datemi": 3, "dedicare": 1, "coffee": 1, "break": 1, "ladispoli": 1, "alessandro": 1, "grando": 1, "interesse": 1, "dialogo": 2, "bande": 1, "boldriniane": 3, "nordafricane": 1, "trento": 1, "vomito": 2, "schizzi": 1, "sangue": 2, "barcone": 1, "sembrata": 1, "marea": 2, "adro": 1, "brescia": 1, "rubato": 1, "valigie": 1, "malcapitati": 1, "aspettando": 3, "geniali": 2, "mandarla": 1, "scippo": 1, "metropolitana": 2, "luca": 1, "zaia": 2, "riso": 1, "pesticidi": 1, "ceta": 2, "trattato": 1, "canada": 1, "sovranit\u00e0": 2, "agroalimentare": 1, "rinunciamo": 1, "stopceta": 1, "vinto": 3, "marine": 5, "pen": 4, "macron": 1, "gridato": 2, "fascismo": 1, "squadrismo": 1, "onesto": 1, "enricocipiace": 1, "macronno": 1, "documentato": 1, "condividiamo": 1, "rivolta": 2, "prato": 1, "deperitissimi": 1, "ospiti": 1, "uscita": 1, "complici": 5, "riprendiamoci": 1, "energia": 1, "emozioni": 1, "gioved\u00ec": 1, "park": 2, "vasco": 1, "by": 1, "matteo": 1, "interroga": 1, "cause": 1, "sconfitta": 2, "silvana": 1, "giuseppe": 2, "convegno": 1, "cooperazione": 1, "nazioni": 2, "sovrane": 1, "organizzato": 1, "gruppo": 2, "potuto": 1, "chiarezza": 2, "genova": 5, "buccisindaco": 1, "sudore": 1, "ascolto": 1, "incontri": 1, "elettorali": 1, "consumarsi": 1, "suola": 1, "scarpe": 1, "risultati": 1, "candidiamo": 1, "stagione": 1, "commentare": 1, "storici": 1, "ballottaggi": 3, "libera": 2, "vittorie": 1, "incredibili": 2, "liberiamo": 3, "aquila": 3, "mancata": 1, "ricostruzione": 2, "frazioni": 1, "aquilane": 1, "vota": 3, "biondisindaco": 1, "settimane": 1, "esordio": 1, "avanti": 5, "ultimo": 1, "invia": 1, "piangono": 1, "iovoto": 2, "spezia": 2, "sicambia": 1, "25giugno": 8, "lavatrici": 1, "pegli": 1, "entriamo": 1, "ascoltiamo": 1, "risolviamo": 1, "convinto": 1, "sicure": 1, "pulite": 1, "hitler": 1, "cretino": 1, "deliranti": 2, "accuse": 1, "santoro": 1, "idiozie": 1, "pagate": 1, "canone": 1, "insultano": 1, "direi": 1, "parlava": 1, "promessi": 1, "padovani": 1, "sanno": 1, "vinciamo": 1, "governata": 1, "salta": 1, "auguro": 2, "ci\u00f2": 2, "ragazza": 3, "siriana": 1, "certamente": 1, "soprattutto": 2, "regalarla": 1, "omaggio": 1, "monsignor": 2, "galantino": 2, "segretario": 2, "vescovi": 1, "attaccando": 1, "ignobili": 1, "gazzarre": 1, "proporrei": 1, "chiesa": 1, "rinunciando": 1, "introiti": 1, "oppure": 1, "dimettendosi": 1, "immigrate": 1, "ripuliamo": 1, "sboarina": 1, "guardia": 4, "finanza": 3, "trova": 1, "orologi": 1, "macchine": 2, "contanti": 1, "presenti": 2, "marted\u00ec": 1, "permettere": 2, "fila": 2, "furbi": 1, "teodoro": 1, "furti": 1, "occupazioni": 1, "abusive": 2, "frana": 1, "incombente": 1, "luna": 1, "sottomessa": 1, "theresa": 1, "may": 1, "donald": 1, "equitalia": 2, "zingarauto": 1, "ricambi": 1, "concessionaria": 1, "mercedes": 1, "audi": 1, "prezzi": 1, "stracciati": 1, "fattura": 1, "intestate": 1, "venditore": 1, "finanziamenti": 1, "cambiato": 1, "fregarci": 1, "fornitori": 1, "rimborsi": 1, "iva": 3, "irpef": 1, "tempi": 1, "decenti": 1, "permette": 2, "correnti": 1, "scommessa": 1, "allargare": 1, "penalizza": 1, "anzi": 1, "coinvolge": 1, "elettori": 2, "emozione": 1, "girer\u00f2": 1, "confermare": 1, "aumentare": 2, "fissa": 1, "estive": 1, "minor": 1, "piazze": 1, "ambizione": 1, "giugno": 2, "troverete": 2, "informazioni": 1, "sezione": 1, "eventi": 1, "floris": 1, "disse": 1, "missionario": 1, "costruiamo": 1, "pozzi": 1, "acqua": 1, "strade": 1, "spesi": 1, "arricchiscono": 1, "malavita": 1, "organizzata": 1, "riempiono": 1, "maschi": 1, "sottratti": 1, "sviluppo": 2, "origine": 1, "umanitario": 1, "lampedusa": 2, "scontrata": 1, "reale": 1, "premi": 1, "obama": 1, "devo": 2, "20mila": 2, "partorire": 1, "altezza": 1, "investirete": 1, "scegliere": 1, "durer\u00e0": 1, "conoscono": 2, "elezionisubito": 2, "rinviare": 2, "siro": 1, "davide": 1, "van": 1, "sfroos": 1, "affittare": 1, "votate": 1, "pensateci": 1, "alessandria": 1, "cristo": 1, "occupate": 1, "indovinate": 1, "sassate": 1, "gliel": 1, "scuse": 1, "fatica": 1, "rapinatori": 1, "altroordine": 1, "dev": 1, "austria": 2, "condannato": 5, "definitiva": 1, "ripagare": 1, "costi": 1, "sostenuti": 3, "rispediti": 1, "scontare": 1, "giocatori": 1, "arabia": 1, "saudita": 1, "trasferta": 1, "australia": 1, "rifiutano": 1, "londra": 4, "vergognatevi": 3, "poltronari": 1, "votano": 1, "elettorale": 3, "disoccupazione": 3, "poltrona": 2, "moschee": 1, "finanziate": 1, "qatar": 1, "lontanamente": 1, "sospettabile": 1, "fiancheggiare": 1, "tarato": 1, "idiozia": 1, "credevo": 1, "ultima": 1, "allah": 1, "litigavano": 1, "decidere": 1, "doveva": 2, "bivaccanti": 1, "smettete": 1, "leggere": 1, "uscite": 1, "arma": 5, "metto": 1, "terroristi": 2, "passaporto": 1, "mafiosi": 1, "uscire": 2, "incontrata": 1, "weekend": 1, "questadomenica": 1, "votalega": 1, "votanoiconsalvini": 1, "spreconi": 1, "pensare": 3, "ricovero": 2, "coatto": 1, "obbligassero": 1, "venti": 2, "comprese": 1, "statuto": 1, "speciale": 1, "cifra": 1, "risparmierebbero": 1, "juve": 1, "marliana": 1, "pistoia": 1, "giornalistone": 1, "corriere": 1, "super": 1, "partes": 1, "candidi": 1, "eleggere": 1, "11giugno": 2, "investire": 1, "sfruttamento": 1, "minniti": 1, "prefetti": 1, "occuper\u00e0": 1, "personalmente": 1, "foggia": 1, "chieder\u00f2": 1, "sigillare": 1, "famigerato": 1, "villaggio": 1, "olimpico": 1, "molte": 1, "richiedenti": 1, "entri": 3, "mandino": 1, "tollerabile": 1, "interi": 1, "stupisce": 1, "radicalizzi": 1, "pazzesca": 1, "tiburtina": 1, "liguria": 1, "piacerebbe": 2, "estendere": 1, "residente": 1, "qua": 2, "metti": 1, "protesta": 1, "attacca": 1, "rispondiamo": 1, "porter\u00f2": 1, "santeramo": 1, "mostrer\u00e0": 1, "messaggi": 1, "temi": 1, "toccati": 1, "possibilit\u00e0": 1, "afferma": 2, "volont\u00e0": 1, "vendita": 1, "cellulari": 1, "rubati": 1, "accoltellamenti": 1, "poverini": 2, "marce": 1, "imbecilli": 1, "semplicemente": 1, "astensione": 1, "reinserimento": 2, "sociale": 3, "combattenti": 1, "ammazza": 1, "decapita": 1, "sgozza": 1, "siria": 2, "torna": 1, "panino": 1, "milza": 1, "preparazione": 1, "zen": 1, "coraggiose": 1, "ismaele": 1, "vardera": 1, "cigni": 1, "preferiate": 1, "incappucciato": 1, "bagnoli": 2, "aggredita": 2, "picchiata": 1, "altromigrante": 1, "violentarla": 1, "business": 4, "bomba": 1, "assistere": 1, "ospitare": 3, "veramente": 4, "miliardario": 1, "spuculatore": 1, "george": 1, "soros": 1, "inizio": 1, "incontrato": 1, "chigi": 1, "dona": 1, "riempire": 1, "farla": 1, "diventare": 1, "meticcia": 1, "blocchiamoli": 1, "arrabbiando": 1, "esistere": 1, "sacche": 1, "fanatismo": 1, "illegalit\u00e0": 1, "osceni": 1, "sturi": 1, "fratelli": 1, "accolga": 1, "tanto": 6, "soccorri": 1, "salvi": 1, "scelte": 1, "porti": 1, "disturbare": 1, "riporti": 1, "venuti": 1, "vengano": 1, "dirci": 1, "libiche": 1, "fugge": 1, "venire": 1, "mostrato": 1, "parma": 2, "emozionati": 1, "congressolega": 1, "vaccini": 1, "vaccinato": 1, "togliere": 1, "scelta": 1, "ricchi": 1, "w": 2, "congresso": 1, "tessera": 1, "scusate": 2, "migrante": 1, "caduta": 1, "ismail": 1, "tommaso": 1, "ben": 1, "yousef": 1, "hosni": 1, "accoltella": 1, "militari": 1, "riduco": 1, "aumentate": 1, "rilancio": 1, "aumentata": 1, "moltiplicano": 1, "farsi": 1, "intercettazioni": 2, "vicende": 1, "penseranno": 1, "giudici": 1, "vincere": 3, "calcetto": 1, "calcinculo": 1, "banchieri": 3, "glielo": 1, "giornali": 2, "nasconderanno": 2, "aiutaci": 3, "farli": 1, "asfaltato": 1, "vitalizi": 1, "imbrogliare": 1, "cappellino": 2, "telefonino": 2, "corteo": 2, "viali": 1, "s\u00ed": 1, "malissimo": 2, "possano": 1, "esagero": 1, "tradisce": 1, "torni": 1, "fondato": 2, "liberarci": 1, "pista": 1, "cammina": 1, "acquistare": 2, "acceleratore": 1, "lineare": 1, "curare": 1, "malati": 2, "tumore": 1, "gerardo": 1, "autodromo": 1, "potete": 2, "siateci": 1, "aiutiamo": 1, "associazione": 1, "cancro": 1, "onlus": 2, "onoro": 1, "vicepresidente": 1, "beneficenza": 2, "direttamente": 1, "alpini": 1, "militante": 1, "continui": 1, "prossimi": 1, "unita": 1, "vincente": 1, "domenicavotasalvini": 1, "info": 2, "sedi": 1, "regolamentocongresso": 1, "sbarcano": 3, "feltri": 1, "ancheluivotasalvini": 1, "accoglierne": 1, "mettiamoci": 1, "mirco": 1, "basconi": 1, "intercettando": 1, "banditi": 1, "albanesi": 1, "gomme": 1, "fermali": 1, "proiettile": 1, "rimbalzo": 1, "usare": 4, "s\u00e9": 1, "colleghi": 1, "viviamo": 1, "mezz": 1, "oretta": 2, "scrivete": 1, "parli": 1, "crimini": 1, "parecchi": 1, "farne": 1, "giletti": 1, "crozza": 2, "ridere": 2, "buio": 1, "aggrediscono": 1, "difendervi": 2, "anti": 4, "prendete": 1, "educatore": 1, "vergognarci": 1, "ufficiali": 1, "sbarcati": 3, "sostituzione": 2, "inviata": 1, "parisella": 1, "termini": 1, "aiutata": 1, "tassista": 1, "compatimento": 1, "parlando": 1, "preoccupano": 1, "criminalit\u00e0": 3, "interventi": 1, "totalmente": 1, "luogo": 2, "tirano": 1, "volata": 1, "dichiara": 1, "corrado": 1, "mandreoli": 1, "repubblica": 1, "difendersi": 1, "lecito": 1, "legittimadifesasempre": 7, "impossibile": 2, "migrazione": 1, "carattere": 1, "economico": 2, "lasciatelo": 1, "iostoconzuccaro": 1, "terni": 1, "arrabbiati": 1, "tema": 1, "razzolano": 1, "spiego": 1, "memorabili": 1, "neonazista": 1, "fascista": 1, "piazzale": 1, "loreto": 1, "continuer\u00f2": 1, "esserlo": 1, "omosessuale": 1, "handicap": 1, "frase": 1, "attribuisce": 1, "prezioso": 1, "piacere": 1, "conoscere": 1, "concertone": 1, "1\u00b0": 1, "capisco": 1, "occasione": 2, "insultare": 2, "attacchi": 1, "realmente": 1, "andr\u00e9": 2, "compresi": 1, "speriamo": 1, "mineo": 1, "augusta": 1, "pescatori": 1, "piombino": 1, "dese": 1, "attentamente": 1, "capo": 1, "denuncia": 2, "schifoso": 2, "fermiamo": 1, "penultima": 1, "persino": 1, "tenendo": 1, "inchiodate": 1, "infermiere": 1, "muratore": 1, "camionista": 1, "torneremo": 1, "affamando": 1, "mini": 1, "tedesca": 1, "artigiani": 1, "gran": 2, "france": 1, "pesca": 1, "concorrenza": 1, "sleale": 1, "merci": 1, "chiudere": 2, "delocalizzare": 1, "assumere": 2, "estero": 4, "censureranno": 2, "aggressori": 2, "soggiorno": 2, "motivi": 1, "umanitari": 1, "espulsionidimassa": 1, "occorra": 1, "tetto": 1, "cari": 1, "regolarmente": 1, "rispettano": 2, "usanze": 1, "accomunati": 1, "marmaglia": 1, "infesta": 1, "marted\u00ed": 1, "sembrava": 1, "forum": 1, "inizia": 1, "yalta": 1, "crimea": 1, "misconocimento": 1, "crimeana": 1, "mosca": 1, "adotta": 1, "agnellini": 1, "approvasse": 1, "macellazione": 1, "rituale": 1, "milanistan": 1, "sufficienti": 1, "hellen": 1, "lotto": 1, "forzati": 2, "chiave": 2, "cos": 1, "ritrovi": 1, "malvivente": 1, "stendi": 1, "stenda": 1, "eccesso": 4, "propriet\u00e0": 2, "stufi": 1, "cacciavite": 1, "pluripregiudicato": 1, "giuliana": 1, "colpevole": 2, "teme": 1, "cassazione": 1, "prevenire": 1, "tragedie": 2, "governa": 1, "liberati": 1, "500mila": 1, "risponderanno": 1, "svezia": 1, "reagiscono": 1, "cadaveri": 1, "straziati": 1, "tir": 1, "guidato": 1, "finto": 1, "terrorista": 1, "amore": 1, "spot": 1, "chiudiamo": 1, "arrendiamoci": 1, "diventi": 1, "eurabia": 2, "sbaglia": 1, "franca": 1, "beccato": 1, "sacra": 1, "concetto": 1, "difficile": 3, "slavo": 1, "ammazzato": 2, "barista": 1, "budrio": 1, "ecologica": 1, "ferrarese": 1, "gira": 1, "africana": 1, "minaccia": 1, "passanti": 1, "coltelli": 1, "intervenire": 2, "sparano": 1, "gambe": 2, "arrestarlo": 1, "esagerato": 1, "stoccolma": 1, "missili": 1, "raccoglie": 1, "assalto": 1, "caserma": 1, "serena": 1, "stazionano": 1, "atti": 2, "delinquenza": 2, "gratuita": 1, "provocazioni": 1, "fomentato": 1, "online": 1, "costruire": 1, "progettare": 2, "scrivi": 3, "leganelmondo": 1, "gmail": 1, "ripetiamo": 1, "vediamo": 1, "palaolimpia": 1, "aspirano": 1, "optional": 1, "bacio": 1, "marinepr\u00e9sidente": 1, "alsazia": 1, "minacciarmi": 1, "taccio": 1, "combatte": 2, "riavere": 1, "occupata": 1, "indulti": 1, "svuotacarceri": 1, "sconti": 1, "obbligatorio": 2, "nozioni": 1, "protezione": 1, "addestramento": 1, "uso": 2, "massa": 1, "venute": 1, "delinquere": 2, "omicidio": 1, "catechismo": 1, "verona25aprile": 3, "opera": 1, "cavallotti": 1, "mantova": 1, "tranquillo": 1, "pesce": 1, "scrivono": 1, "spettacoli": 1, "alcolismo": 1, "bastadegrado": 1, "aspiranti": 1, "saltare": 2, "rialto": 1, "giuramento": 1, "obbligato": 1, "ucciderli": 1, "guadagniamo": 1, "paradiso": 1, "prendersela": 1, "difendano": 1, "ladre": 1, "camper": 1, "vivevano": 1, "piccoli": 2, "continuavano": 1, "arrestate": 1, "portate": 1, "potevano": 1, "scommetto": 1, "poverine": 1, "piuttosto": 1, "madri": 1, "genere": 1, "condividete": 2, "preoccupazione": 1, "pur": 1, "altroislamizzazione": 1, "lingue": 1, "ismaelesindaco": 2, "perseguitare": 1, "commerciante": 1, "artigiano": 1, "partita": 1, "fanon": 1, "andasse": 1, "spostato": 1, "residenza": 1, "fregando": 1, "riconosciuti": 1, "verificare": 1, "bilanci": 1, "associazioni": 1, "arricchendosi": 1, "tedeschi": 1, "oltreleuro": 3, "bastaeuro": 7, "efe": 1, "jerry": 1, "ogboru": 1, "aspirante": 1, "rapper": 1, "mantenuto": 1, "scriveva": 1, "riguarda": 1, "nigeria": 1, "sperando": 1, "buttino": 1, "poletti": 1, "dimettiti": 1, "nasconde": 1, "dietro": 1, "retorica": 1, "usa": 1, "ristrutturarsi": 1, "biella": 1, "marta": 1, "mantenga": 1, "demenziali": 2, "potenza": 1, "isis": 2, "foraggi": 1, "promette": 1, "sante": 2, "dimostra": 1, "avvengono": 1, "populisti": 1, "affermare": 1, "ribaltare": 1, "cima": 1, "mitico": 1, "mago": 1, "zurl\u00ec": 1, "cino": 1, "tortorella": 1, "infanzia": 1, "protagonista": 1, "intelligente": 1, "mitica": 1, "gatti": 1, "erdogan": 1, "turchi": 1, "comanderemo": 1, "esteri": 1, "turco": 2, "inizieranno": 1, "regala": 1, "colonizzazione": 1, "fallaci": 1, "lucidamente": 1, "previsto": 1, "combattuti": 1, "alleati": 3, "terroristico": 1, "attentatore": 1, "innocenti": 1, "finora": 1, "contano": 1, "ferite": 1, "chiunque": 1, "usi": 1, "angolo": 1, "cosiddetti": 1, "pacificit\u00e0": 1, "arredo": 1, "urbano": 1, "manifestazioni": 1, "imparare": 1, "sembrano": 1, "intenzionate": 1, "troppa": 1, "delinque": 1, "stilista": 1, "alviero": 1, "martini": 1, "rapinato": 1, "est": 1, "diminuiti": 1, "marmellata": 1, "unico": 1, "iscrizioni": 1, "domeniche": 1, "sottrarre": 1, "conosco": 1, "creo": 1, "verdi": 1, "villanova": 1, "arda": 1, "piacenza": 1, "eccellenza": 1, "sanit\u00e0": 1, "comitati": 1, "pazienti": 1, "esattamente": 1, "mestiere": 1, "pericolo": 1, "vescovo": 1, "chioggia": 1, "adriano": 1, "tessarollo": 1, "chiacchierano": 1, "necessit\u00e0": 1, "atteggiamento": 1, "muovono": 1, "dito": 1, "chiavi": 1, "presente": 1, "sputtano": 1, "finanzia": 1, "regime": 1, "sbagli": 1, "west": 1, "pacifica": 1, "svizzera": 1, "addestrati": 1, "inesistente": 1, "entrarti": 1, "piedi": 3, "steso": 1, "cercare": 2, "processato": 1, "ribadiamolo": 1, "nuove": 1, "europeo": 1, "scusa": 1, "complicano": 1, "detenere": 1, "evviva": 1, "volete": 1, "dovete": 1, "indagine": 1, "notturna": 1, "aggredendo": 1, "giulia": 1, "bongiorno": 1, "perfettamente": 1, "assurdit\u00e0": 1, "legislazione": 1, "n": 2, "giace": 1, "rappresentata": 1, "facinorosi": 1, "ringrazio": 1, "grado": 1, "benissimo": 1, "riuscir\u00e0": 1, "rovinare": 1, "liberazione": 1, "disponibili": 1, "partecipa": 1, "morte": 3, "querelina": 1, "arrivo": 1, "qualunque": 2, "azienda": 1, "denaro": 1, "permettersi": 1, "licenziare": 1, "fiat": 1, "coccole": 1, "difendo": 1, "zerman": 1, "mogliano": 1, "abitudine": 1, "bagni": 1, "troppi": 1, "riguardi": 1, "sinistri": 2, "organizzano": 1, "maiconsalvini": 1, "originaloni": 1, "riprendere": 2, "terremotati": 1, "riprendono": 1, "colpo": 2, "bestia": 1, "renziani": 2, "gole": 1, "profonde": 1, "tessere": 1, "fughe": 1, "notizie": 1, "fermi": 1, "fenomeno": 2, "circondato": 1, "patiti": 1, "cacceremo": 1, "differenza": 1, "accogliamo": 1, "sfigati": 1, "palacongressi": 1, "iene": 1, "sfider\u00e0": 1, "deciderlo": 1, "verdini": 1, "cicchitto": 1, "casini": 1, "parenti": 1, "indagati": 1, "incatenati": 1, "aspettare": 2, "succedere": 1, "maroni": 1, "rixi": 1, "carovana": 1, "manderei": 1, "bum": 1, "offro": 1, "urlano": 1, "dannati": 1, "magico": 1, "cecchi": 1, "paone": 1, "rime": 1, "pianeti": 1, "succedono": 1, "ditelo": 1, "vietato": 1, "tavernelli": 1, "federica": 1, "uccisa": 1, "delinquente": 3, "besik": 1, "jikidze": 1, "accadano": 1, "simili": 1, "tizio": 1, "apprezzo": 1, "lavorano": 1, "chiamo": 1, "clan": 1, "sti": 1, "ni": 1, "condannatemi": 1, "risarcimento": 2, "moldavo": 1, "derubarlo": 1, "nottetempo": 1, "aggredendolo": 1, "verr\u00e0": 1, "confermata": 1, "tabaccaio": 1, "attivit\u00e0": 2, "aspetta": 1, "discutere": 1, "iostocoltabaccaio": 1, "dedicati": 1, "rosiconi": 1, "nazifascisti": 1, "pericolosi": 1, "estremisti": 1, "applaudivano": 1, "david": 5, "amine": 1, "aassoul": 1, "\u2018aziz": 1, "marocchino": 1, "drogato": 1, "uccise": 1, "conficcandogli": 1, "gola": 1, "trovarsi": 1, "umbria": 1, "tantomeno": 1, "richiedente": 1, "parolina": 1, "magica": 1, "averne": 1, "fedina": 1, "penale": 1, "lunga": 1, "pagine": 1, "circolava": 1, "denunciato": 1, "ministero": 1, "ergastolo": 1, "aggiunge": 1, "riconoscere": 1, "alcun": 1, "devoluto": 1, "guadagnava": 1, "11mila": 1, "vivo": 1, "bruna": 1, "magistris": 1, "nazifascista": 1, "comportamenti": 1, "chiacchierone": 1, "leghisti": 1, "ascoltatori": 1, "manfrine": 1, "tengono": 1, "cominciano": 1, "darmi": 1, "voltastomaco": 1, "fretta": 2, "bando": 1, "riprendiamo": 1, "torniamo": 1, "sciogliamoilpd": 1, "amano": 1, "odiano": 1, "aggredire": 1, "vigliacchi": 1, "analoga": 1, "molliamo": 2, "zecche": 1, "domanda": 1, "lavoravate": 1, "risparmiavate": 1, "lira": 1, "dedicata": 1, "professoroni": 1, "venduti": 1, "smonto": 1, "bugie": 1, "parler\u00e0": 1, "favorevole": 1, "avvantagger\u00e0": 1, "poche": 1, "danni": 1, "consumatori": 1, "carne": 1, "ormoni": 1, "prosciutti": 1, "mangino": 1, "megaville": 1, "abusivo": 1, "proprietari": 1, "fatevela": 1, "materiali": 1, "lager": 1, "skytg24": 1, "brexit": 1, "foiba": 1, "basovizza": 1, "irreversibile": 1, "draghi": 1, "germanica": 1, "massacrando": 1, "quindici": 1, "circolo": 1, "arci": 1, "rossa": 1, "padoan": 1, "francesco": 1, "affrontare": 1, "nude": 1, "equipaggiamento": 1, "operativo": 1, "corpo": 1, "potremmo": 1, "spray": 1, "peperoncino": 1, "morto": 1, "maccari": 1, "coisp": 1, "rabbia": 1, "divisa": 1, "scarica": 3, "diffondi": 1, "manuale": 3, "cervello": 1, "rompo": 1, "camminate": 1, "sedia": 1, "rotelle": 1, "meriterebbe": 1, "sospensione": 2, "rinnovo": 1, "sala": 1, "streaming": 1, "serata": 1, "informarsi": 1, "approfondire": 1, "televisione": 1, "gratuitamente": 3, "sito": 2, "alberto": 2, "bagnai": 2, "marco": 3, "zanni": 2, "modera": 1, "mario": 2, "giordano": 2, "stasera": 1, "proviamo": 1, "spiegarvelo": 1, "scaricate": 1, "grandi": 1, "illustrava": 1, "riascoltare": 1, "previsioni": 1, "euristi": 1, "cantante": 1, "moby": 1, "colloca": 1, "malvagi": 1, "accostamenti": 1, "cattivoni": 1, "oni": 1, "edicolante": 1, "preda": 1, "furia": 1, "evidente": 1, "alterazione": 1, "spacca": 1, "bastonate": 1, "psicologici": 1, "kabobo": 1, "governare": 1, "generale": 1, "bellissima": 1, "ricostruire": 2, "inciuci": 1, "dimentichiamoci": 1, "esenzione": 1, "totale": 1, "chiederti": 1, "batti": 1, "montagne": 1, "rifiuti": 1, "inferno": 1, "tendopoli": 1, "disoccupata": 1, "dicevano": 1, "lucida": 1, "propongono": 1, "navale": 1, "libia": 1, "barconi": 1, "rispondeva": 1, "proponevo": 1, "ipocriti": 1, "ridicoli": 1, "merde": 1, "pizzo": 1, "senzatetto": 1, "dormire": 1, "aeroporto": 1, "linate": 1, "taglieggiato": 1, "venga": 1, "cacciata": 1, "sento": 1, "puzza": 1, "inciucio": 1, "vitalizio": 1, "tirare": 1, "campare": 1, "votosubto": 1, "eroi": 1, "considerati": 1, "trattamento": 1, "aumentando": 1, "dotazioni": 1, "stipendi": 1, "assumendo": 1, "pompieri": 1, "andando": 1, "colmare": 1, "grave": 1, "carenza": 1, "personale": 1, "coblenza": 1, "costruiremo": 1, "moriremo": 1, "merkel": 1, "lasciatemi": 1, "qualsiasi": 1, "scheda": 1, "concrete": 1, "legittimo": 2, "freddo": 1, "caldo": 1, "relazione": 1, "populista": 1, "trovare": 1, "colpiti": 1, "sommersi": 1, "neve": 1, "teramo": 2, "chiamare": 1, "enel": 1, "tollo": 1, "ncd": 1, "lista": 1, "ringraziato": 1, "vado": 2, "criticano": 3, "doposci": 1, "allora": 1, "distanza": 1, "esistente": 1, "volontari": 1, "arischia": 1, "frazione": 1, "attesa": 1, "atri": 1, "piena": 1, "emergenza": 1, "onorevole": 1, "mezza": 1, "svegliano": 1, "adesso": 2, "chiusura": 1, "partenza": 1, "buco": 1, "rovinando": 1, "festeggiare": 1, "ville": 1, "risarcisci": 1, "gestisce": 1, "passata": 1, "mettera": 1, "ospitiamo": 1, "guerriglieri": 1, "avorio": 1, "cresciuto": 1, "dignit\u00e0": 1, "gestore": 1, "agriturismo": 1, "corsi": 1, "disertate": 1, "preferivano": 1, "alcol": 1, "birra": 1, "armadi": 1, "prostitute": 1, "caccia": 1, "caprioli": 1, "abbattuti": 1, "macellavano": 1, "cucinavano": 1, "diffusa": 1, "diciotto": 1, "fabrizio": 1, "rimangono": 1, "magiche": 1, "faber": 1, "riescono": 1, "distribuirli": 1, "rispedirli": 1, "insultato": 1, "osato": 1, "offrire": 1, "pranzo": 1, "bisognosi": 1, "ristoratore": 1, "passer\u00f2": 1, "punta": 1, "marina": 1, "ravenna": 1, "fermer\u00f2": 1, "osteria": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2017/salvini_emoji b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_emoji new file mode 100644 index 0000000..74ceb8a --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_emoji @@ -0,0 +1 @@ +{"\ud83d\udd34": 6, "\u26a0": 1, "\ud83d\udd35": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2017/salvini_sleep b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_sleep new file mode 100644 index 0000000..0631dd8 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 1, "11": 1, "12": 1, "13": 4, "14": 6, "15": 1, "16": 5, "17": 2, "18": 3, "19": 8, "20": 1, "21": 2, "22": 0, "23": 0}, "Feb": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 2, "10": 1, "11": 2, "12": 3, "13": 2, "14": 2, "15": 4, "16": 2, "17": 4, "18": 3, "19": 3, "20": 0, "21": 0, "22": 1, "23": 0}, "Mar": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 7, "10": 4, "11": 3, "12": 6, "13": 2, "14": 1, "15": 3, "16": 2, "17": 1, "18": 4, "19": 8, "20": 3, "21": 0, "22": 0, "23": 0}, "Apr": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 3, "10": 1, "11": 3, "12": 4, "13": 4, "14": 4, "15": 1, "16": 0, "17": 6, "18": 1, "19": 4, "20": 2, "21": 0, "22": 2, "23": 0}, "May": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 3, "10": 8, "11": 4, "12": 4, "13": 4, "14": 6, "15": 7, "16": 1, "17": 2, "18": 4, "19": 6, "20": 7, "21": 5, "22": 1, "23": 0}, "Jun": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 3, "9": 1, "10": 5, "11": 4, "12": 5, "13": 4, "14": 3, "15": 4, "16": 5, "17": 4, "18": 5, "19": 5, "20": 3, "21": 2, "22": 2, "23": 1}, "Jul": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 1, "10": 0, "11": 6, "12": 0, "13": 4, "14": 2, "15": 1, "16": 0, "17": 1, "18": 3, "19": 5, "20": 2, "21": 2, "22": 1, "23": 0}, "Aug": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 6, "10": 0, "11": 4, "12": 3, "13": 3, "14": 0, "15": 0, "16": 1, "17": 3, "18": 2, "19": 3, "20": 4, "21": 3, "22": 0, "23": 0}, "Sep": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 3, "10": 3, "11": 4, "12": 4, "13": 3, "14": 2, "15": 1, "16": 2, "17": 2, "18": 6, "19": 10, "20": 2, "21": 5, "22": 0, "23": 0}, "Oct": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 1, "6": 0, "7": 0, "8": 2, "9": 6, "10": 2, "11": 2, "12": 6, "13": 5, "14": 3, "15": 1, "16": 4, "17": 2, "18": 8, "19": 1, "20": 7, "21": 4, "22": 0, "23": 0}, "Nov": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 10, "10": 5, "11": 12, "12": 6, "13": 4, "14": 6, "15": 6, "16": 5, "17": 7, "18": 11, "19": 7, "20": 8, "21": 7, "22": 0, "23": 2}, "Dec": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 7, "10": 4, "11": 7, "12": 6, "13": 6, "14": 5, "15": 2, "16": 5, "17": 5, "18": 5, "19": 5, "20": 1, "21": 5, "22": 7, "23": 0}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2017/salvini_trend.json b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_trend.json new file mode 100644 index 0000000..7b95bc8 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_trend.json @@ -0,0 +1 @@ +{"31-Dec": 1, "29-Dec": 1, "28-Dec": 2, "25-Dec": 1, "24-Dec": 1, "23-Dec": 1, "22-Dec": 1, "21-Dec": 3, "20-Dec": 6, "19-Dec": 4, "18-Dec": 4, "17-Dec": 2, "16-Dec": 3, "15-Dec": 4, "14-Dec": 2, "13-Dec": 4, "12-Dec": 3, "11-Dec": 5, "10-Dec": 6, "9-Dec": 3, "8-Dec": 2, "7-Dec": 2, "6-Dec": 3, "5-Dec": 4, "2-Dec": 1, "1-Dec": 1, "30-Nov": 4, "29-Nov": 1, "28-Nov": 2, "27-Nov": 1, "26-Nov": 4, "25-Nov": 4, "24-Nov": 4, "23-Nov": 6, "22-Nov": 4, "21-Nov": 3, "20-Nov": 4, "19-Nov": 6, "18-Nov": 5, "17-Nov": 5, "16-Nov": 3, "15-Nov": 4, "14-Nov": 4, "13-Nov": 1, "12-Nov": 3, "11-Nov": 5, "10-Nov": 4, "9-Nov": 4, "8-Nov": 5, "7-Nov": 2, "4-Nov": 2, "3-Nov": 1, "2-Nov": 3, "1-Nov": 4, "31-Oct": 2, "30-Oct": 5, "29-Oct": 2, "28-Oct": 3, "27-Oct": 3, "26-Oct": 1, "25-Oct": 2, "24-Oct": 1, "23-Oct": 1, "22-Oct": 2, "21-Oct": 2, "20-Oct": 1, "19-Oct": 1, "18-Oct": 1, "17-Oct": 4, "14-Oct": 3, "13-Oct": 1, "12-Oct": 1, "11-Oct": 1, "10-Oct": 1, "9-Oct": 1, "8-Oct": 1, "6-Oct": 3, "5-Oct": 2, "4-Oct": 3, "3-Oct": 2, "2-Oct": 2, "1-Oct": 2, "29-Sep": 3, "28-Sep": 2, "27-Sep": 3, "25-Sep": 1, "24-Sep": 1, "22-Sep": 1, "21-Sep": 1, "20-Sep": 2, "19-Sep": 5, "18-Sep": 1, "17-Sep": 4, "16-Sep": 2, "15-Sep": 4, "14-Sep": 2, "13-Sep": 4, "12-Sep": 1, "11-Sep": 2, "10-Sep": 1, "9-Sep": 3, "7-Sep": 1, "6-Sep": 1, "5-Sep": 1, "3-Sep": 1, "2-Sep": 1, "30-Aug": 1, "28-Aug": 1, "26-Aug": 1, "24-Aug": 2, "23-Aug": 1, "22-Aug": 1, "19-Aug": 1, "15-Aug": 3, "14-Aug": 1, "13-Aug": 3, "12-Aug": 3, "11-Aug": 2, "10-Aug": 1, "9-Aug": 1, "8-Aug": 2, "7-Aug": 2, "6-Aug": 1, "3-Aug": 3, "2-Aug": 2, "31-Jul": 1, "26-Jul": 1, "24-Jul": 2, "23-Jul": 2, "21-Jul": 2, "20-Jul": 3, "19-Jul": 2, "18-Jul": 1, "15-Jul": 1, "13-Jul": 1, "12-Jul": 1, "11-Jul": 3, "9-Jul": 3, "7-Jul": 1, "5-Jul": 2, "4-Jul": 1, "3-Jul": 1, "2-Jul": 1, "29-Jun": 1, "28-Jun": 3, "26-Jun": 4, "24-Jun": 1, "23-Jun": 5, "21-Jun": 1, "20-Jun": 2, "19-Jun": 1, "18-Jun": 1, "17-Jun": 1, "16-Jun": 3, "15-Jun": 3, "14-Jun": 4, "13-Jun": 4, "10-Jun": 1, "9-Jun": 5, "8-Jun": 3, "7-Jun": 2, "6-Jun": 4, "5-Jun": 2, "3-Jun": 1, "2-Jun": 1, "1-Jun": 4, "31-May": 3, "29-May": 3, "27-May": 3, "26-May": 3, "25-May": 5, "24-May": 3, "23-May": 1, "22-May": 2, "21-May": 1, "20-May": 3, "19-May": 1, "18-May": 1, "17-May": 4, "15-May": 2, "14-May": 3, "12-May": 3, "11-May": 4, "10-May": 2, "7-May": 1, "6-May": 2, "5-May": 1, "4-May": 3, "3-May": 3, "2-May": 3, "1-May": 2, "30-Apr": 1, "28-Apr": 1, "27-Apr": 3, "26-Apr": 1, "25-Apr": 2, "24-Apr": 1, "21-Apr": 1, "20-Apr": 2, "18-Apr": 2, "17-Apr": 1, "13-Apr": 1, "12-Apr": 1, "11-Apr": 1, "10-Apr": 3, "8-Apr": 1, "7-Apr": 1, "6-Apr": 4, "5-Apr": 2, "4-Apr": 2, "3-Apr": 1, "2-Apr": 1, "1-Apr": 2, "31-Mar": 2, "30-Mar": 3, "29-Mar": 3, "28-Mar": 2, "27-Mar": 1, "25-Mar": 2, "24-Mar": 1, "23-Mar": 2, "22-Mar": 1, "21-Mar": 1, "20-Mar": 4, "19-Mar": 1, "17-Mar": 1, "15-Mar": 2, "14-Mar": 2, "13-Mar": 1, "11-Mar": 1, "10-Mar": 2, "9-Mar": 2, "7-Mar": 3, "5-Mar": 2, "4-Mar": 4, "3-Mar": 1, "27-Feb": 2, "26-Feb": 3, "24-Feb": 1, "23-Feb": 2, "22-Feb": 2, "21-Feb": 1, "20-Feb": 2, "19-Feb": 1, "18-Feb": 1, "17-Feb": 1, "15-Feb": 2, "14-Feb": 1, "12-Feb": 1, "10-Feb": 1, "9-Feb": 1, "8-Feb": 2, "7-Feb": 2, "4-Feb": 1, "2-Feb": 1, "1-Feb": 1, "31-Jan": 3, "30-Jan": 2, "29-Jan": 2, "28-Jan": 1, "26-Jan": 3, "25-Jan": 1, "24-Jan": 2, "23-Jan": 3, "22-Jan": 2, "21-Jan": 2, "20-Jan": 2, "19-Jan": 2, "18-Jan": 1, "16-Jan": 2, "13-Jan": 1, "12-Jan": 1, "11-Jan": 3, "9-Jan": 1, "3-Jan": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2017/salvini_words b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_words new file mode 100644 index 0000000..298a222 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2017/salvini_words @@ -0,0 +1,11708 @@ +difesa +lavoro +risparmio +famiglia +confini +sinistra +solo +chiacchiere +marzo +tocca +parliamo +po +me +futuro +senza +giornalisti +mezzo +camere +sciolte +pronti +segui +milioni +poveri +milioni +disoccupati +milione +clandestini +città +record +negativo +bambini +nati +italia +vedo +ora +mettere +fine +disastri +anni +pd +restituire +lavoro +sicurezza +italiani +guardate +commentate +solo +riuscite +rimanere +svegli +italia +regaleremo +principio +troppo +spesso +dimenticato +primagliitaliani +insieme +può +amici +ancora +buon +natale +splendida +comunità +noiussoli +miglior +regalo +natale +italiani +immigrati +regolari +integrati +rispettosi +cultura +leggi +voto +marzo +sentite +fino +fine +cosa +detto +oggi +pensate +me +auguri +natale +porto +fare +giro +ufficio +soldi +televisioni +banche +amici +potenti +sevoicisieteiocisono +nando +imprenditore +perso +terremoto +dato +mano +tranne +stato +oggi +secondo +criteri +governo +renzi +diritto +nessuna +forma +aiuti +tasse +altro +rimboccandosi +maniche +lavorando +giorno +notte +ricostruito +mantenendo +inalterato +fatturato +follia +sostieni +fa +impresa +lasci +scappare +imprenditori +italia +futuro +pronto +andiamoagovernare +lavoro +euro +ora +spostandomi +tutta +milano +spese +senza +buoni +pasto +né +contributi +mance +tassate +italia +giovani +trattati +schiavi +quindi +deciso +andarmene +altroestero +altro +accoglienza +vogliamo +ricominciare +crescere +dobbiamo +trattenere +giovani +creando +lavoretti +sottopagati +part +time +lavoro +stabile +licenziato +episodio +capotreno +deve +poter +tornare +lavorare +🔴🔴🔴follia +pura +40mila +euro +spese +legali +essere +assolto +lega +tempo +depositato +proposta +legge +sancisce +legittimità +difesa +tutela +vittime +oggi +renzi +gentiloni +fregano +governo +salvini +priorità +andiamoagovernare +modello +governo +spelacchio +stelle +no +grazie +poesia +maestra +maria +altamura +po +commosso +grazie +metterò +tutta +ripropongo +intervento +lunedì +bari +parte +sud +tutta +italia +rivoluzione +buonsenso +commette +reati +rovinato +vita +risparmiatori +merita +galera +italia +dato +europa +decine +miliardi +euro +salvare +banche +straniere +giunto +momento +riprenderci +almeno +parte +risarcire +correntisti +italiani +rovinati” +lucia +borgonzoni +facciamosquadra +andiamoagovernare +reggio +emilia +inaugurare +nuova +sede +lega +dopo +danno +pure +beffa +rino +anni +invalido +anni +gamba +amputata +oggi +inps +richiama +controllare +ricresciuta +no +scherzando +vero +controllino +falsi +invalidi +senza +pudore +condanni +qualche +medico +minuti +ecco +prime +cose +governo +salvini +larivoluzionedelbuonsenso +🔴🔴🔴prima +massacrano +botte +poi +derubano +difendi +vai +galera +cittadini +onesti +forze +ordine +fermare +ladri +leggi +vergognose +quando +governo +daremo +finalmente +italiani +legge +seria +legittima +difesa +altamura +bari +spettacolo +territorio +trasforma +gioia +natale +dedichiamo +vorrebbe +cancellare +storia +civiltà +valori +viva +presepe +antico +forno +santa +chiara +produce +oro +territorio +celebrato +pane +altamura +bari +schifezze +arrivano +altra +parte +mondo +viva +prodotti +italiani +viva +splendide +tradizioni +unica +ricchezza +affetto +fiducia +ripagano +impegno +cerco +metterci +grazie +bari +grazie +puglia +andiamoagovernare +diretta +bari +parte +battaglia +lega +puglia +sud +state +andiamoagovernare +ieri +vista +guardate +intervista +ieri +rai +lucia +annunziata +aiutatemi +condividerla +credo +andata +bene +sempre +bello +confrontarsi +qualcuno +pensa +stesso +modo +antifascisti” +modena +attacco +polizia +città +vandalizzata +sentito +qualcuno +lamentarsi +ipocrisia +sinistra +coccola +violenti +confini +diretta +splendida +verona +natalizia +milano +diretta +scuola +formazione +politica +seguiteci +orgoglioso +essere +nuovo +lunedì +puglia +bari +lega +sempre +forte +liberi +aspetto +showville +coerenza +rivoluzione +fiscale +flat +tax +pensioni +cancellazione +infame +legge +fornero +invasione +clandestina +cittadinanza +sicurezza +legittima +difesa +certezza +pena +idee +chiare +vince +andiamoagovernare +governo +salvini +restituirà +futuro +figli +insegnanti +assegnati +base +concorsi +graduatorie +base +regionale +permettendo +studenti +durante +intero +ciclo +altro +studi +impegneremo +tornare +piene +culle +ospedali +misure +radicali +vergognoso +bonus +bebè” +pd +mamme +papà +devono +ritrovare +gusto +scommettere +futuro +paese +larivoluzionedelbuonsenso +pazzesco +bella +italia +pd +altro +obbligo +firma +deve +essere +rispedito +casa +calci +sedere +librandi +pd +secondo +fa +uomo +barbaramente +massacrato +coltellate +lucia +filippa +anziane +sorelle +provincia +catania +normativa +vigente +può +ottenere +sconto +terzo +pena +stupratori +assassini +altro +può +esserci +nessuno +sconto +chiede +legge +lega +spero +bloccata +ripensi +rimedi +errore +contribuenti +italiani +devono +pagare +forze +ordine +proteggere +papà +boschi +lega +fatto +interrogazione +parlamentare +sapere +costa +paga +penso +sapere +già +risposta +governo +salvini +fisserà +retribuzione +minima +legge +euro +ora +schiavismo +italiani +schiavi +lega +governo +introdurremo +salario +orario +minimo +garantito +giunto +momento +restituire +diritto +vivere +sopravvivere +larivoluzionedelbuonsenso +succede +esci +fare +spesa +occupano +casa +devi +stare +zitto +periferia +milano +stato +esiste +vuoi +casa +popolare +devi +chiedere +rom +quando +governo +unica +stanza +delinquenti +dovranno +occupare +galera +buona +santa +lucia +viva +sorriso +bambini +viva +tradizioni +piace +crhome +tv +realizzato +bellissimo +video +europa +preparando +regalo +natale +riforma +consentirà +bloccare +conto +corrente +caso +difficoltà +banca +governo +pd +fa +niente +girare +almeno +rete +pazzesco +spara +ferisce +ladro +sventando +rapina +ricompensarlo +viene +punito +bandito +sembra +normale +lega +governo +difesa +diventerà +sempre +legittima +paese +contrario +ribaltiamo +andiamoagovernare +accogliereste +clandestino +euro +mese +sentite +cosa +pensano +romani +raggi +serve +sperimentare +stopinvasione +primagliitaliani +vita +vera +realtà +virtuale +pd +andiamoagovernare +italia +vittima +frane +alluvioni +servono +miliardi +vincoli +europei” +impediscono +usarli +pare +normale +poi +tasse +lavoro +immigrazione +natale +calciatori +brutti +parliamone +sempre +prima +italiani +impegni +sud +lavoro +sicurezza +difesa +made +italy +produzioni +posso +governo +servi +lega +pd +pubblico +la7 +studio +apprezzato +mandiamo +casa +manca +poco +andiamoagovernare +vedere +giovanna +signora +campanello +truffata +banche +azzerata +governo +pd +basterebbe +chiedere +indietro +europa +parte +quei +miliardi +regalato +salvare +altro +banche +straniere +paese +serio +risparmiatori +vanno +garantiti +interessi +nazionali +tutelati +bastapd +andiamoagovernare +intervista +stamattina +rai +radio1 +idee +futuro +paese +ascoltate +commentate +tantissimi +immigrati +regolari +perbene +pagano +tasse +mandano +figli +scuola +portano +rispetto +cultura +leggi +contribuiscono +positivamente +società +italiana +altro +scappa +nessuna +guerra +guerra +porta +casa +fuori +patto +governo +chiederemo +impegno +espellere +almeno +mila +clandestini +anno +accordo +lavoratrice +voglio +lavorare +vita +parole +belle +commoventi +mamma +licenziata +chiedeva +cambiare +orari +lavoro +riuscire +occuparsi +figlio +altro +disabile +vogliono +precari +schiavi +dobbiamo +arrendere +altro +fake +news +renzi +paese +deve +restituire +lavoro +dignitoso +italiani +priorità +bel +ricordo +fisicamente +seguito +lontano +cuore +ripropongo +intervento +domenica +roma +piace +facciamolo +girare +rete +finché +lasceranno +fare +primagliitaliani +affetto +date +ricompensa +bella +splendida +domenica +piazza +santi +apostoli +roma +migliaia +italiani +arrendono +sognano +paese +sicuro +forte +libero +state +primagliitaliani +arrivato +piazza +fantastica +poco +tutta +diretta +roma +pagina +sempre +dallapartedisandra +dimentichiamo +lega +te +parroco +sardo +accoglienza +fallimento +basta +immigrati +accattoni +sacerdote +viene +accusato +aver +usato +toni +salviniani +additato +intollerante +razzista +so +me +altro +sembra +soltanto +buonsenso +stato +serio +prima +pensa +italiani +difficoltà +poi +spazio +arriva +resto +mondo +andiamoagovernare +sardegna +stato +manda +polizia +carabinieri +circondare +paesi +catturare +delinquenti +abbattere +maiali +roba +matti +pastori +agricoltori +sandra +pestata +suon +calci +pugni +ferrara +gang +risorse +pazzesco +risultato +anni +governi +buonisti +guida +pd +sogno +paese +accoglie +limite +possibile +altro +delinquenti +posto +diritto +asilo +deve +essere +espulso +punto +date +mano +andiamoagovernare +cane +bimbo +teneri +amici +soffre +miopia +congenita +prima +volta +occhiali +regalano +nuova +vista +dolcezza +vedere +felicità +occhi +bimbi +prezzo +incredibile +immigrato +dunque +pago +biglietto +grazie +pd +pensano +italia +possa +fare +vuole +cambierà +musica +ve +garantisco +riporteremo +paese +ordine +regole +rispetto +provvedimenti +presi +governo +insulto +risparmiatori +derubati +banche +solo +governo +stanziato +solamente +milioni +euro +mentre +serviva +miliardo +processo +altro +ottenere +soldi +può +durare +anni +dovendo +pagare +avvocati +rischia +essere +costo +guadagno +” +paolo +arrigoni +senatore +lega +facciamosquadra +andiamoagovernare +truffati +banche +massacrati +renzi +chiamano +partito +democratico” +minuto +equità +salari +difesa +tradizioni +controllo +immigrazione +date +mano +insieme +cambieremo +paese +ve +prometto +andiamoagovernare +sparato +volevano +uccidere +quartiere +san +basilio +periferia +roma +pazzesco +altra +aggressione +troupe +vittorio +brumotti +striscia +documentando +spaccio +incontrollato +altro +capitale +luce +giorno +sindaca +raggi +arrendo +darete +mano +po +pulizia +🔴🔴🔴 +girare +vergogna +stamattina +tribunale +siena +mandato +asta +portato +via +casa +sandra +invalida +malata +terminale +disperata +termine +udienza +tentato +altro +tagliarsi +vene +ricoverata +ospedale +violenza +vera +confronti +italiani +tivù +parlano +sentita +telefono +poco +fa +lega +aiuterà +ogni +maniera +possibile +sconvolta +molla +dallapartedisandra +primagliitaliani +ovunque +vada +renzi +viene +fischiato +contestato +guardate +bella +accoglienza +riservato +ex +operai +lucchini +perso +lavoro +colpa +jobs +act +pochi +mesi +mandiamo +casa +andiamoagovernare +bastapd +ripropongo +intervista +domenica +scorsa +sky +tg24 +maria +latella +penso +essere +stato +chiaro +dite +🔴🔴🔴 +rivoluzione +fiscale +tassa +unica +aiuterà +rientrare +aziende +delocalizzato +riportando +lavoro +italia” +aliquota +bassa +italiani +soldi +altro +tasche +potranno +finalmente +comprare +beni +servizi +ripartire +crescita +inoltre +sistema +fiscale +semplificato +economia +sommersa +riemergerà +aiutano +risolvere +problema +evasione +fiscale +garantendo +entrate +casse +stato +” +armando +siri +facciamosquadra +andiamoagovernare +approfondimenti +www +tassaunica +it +trappola +moneta +unica +alziamo +salari +diventiamo +meno +competitivi” +sistema +vince +riesce +pagare +meno +propri +impiegati +precarizzazione +lavoro +altro +part +time +euro +aiuta +solamente +gonfiare +statistiche +occupazione +vero +lavoro +volta +permetteva +mettere +famiglia +sparendo +” +claudio +borghi +facciamosquadra +andiamoagovernare +unione +europea +impone +tagliare +spesa +pubblica +mandano +diplomatici +isole +mauritius +caraibi +isole +fiji +bene +sembra +normale +buonsenso +film +esodo” +racconta +storia +vera +francesca +400mila +vittime +legge +fornero +vite +reali +lacrime +vere +mentre +persone +lottano +ogni +giorno +sopravvivere +signora +continua +dire +dovremmo +essere +fieri +avere +riforma +stopfornero +andiamoagovernare +renzi +infila +presentazione +libro +fare +comizio +ius +soli +contestato +pubblico +lasciato +scrittore +alza +salviamo +renzi +mandiamolo +casa +noiussoli +abbassare +tasse +solo +così +ripartire +italia +soluzione +giusta +equa +linea +costituzione +tassa +unica +www +tassaunica +it +trovate +tutte +risposte +domande +posti +lavoro +negozi +rischio +colpa +nuova +folle +tassa +inventata +governo +euro +ogni +ricarica +sigarette +elettroniche +fare +favore +solite +multinazionali +altro +matti +lega +proverà +fermarli +grazie +lavoratori +straordinaria +accoglienza +voluto +vedere +renzi +ovviamente +tivù +censurano +perso +ripropongo +confronto +ieri +sera +mezzanotte +rai +cancellare +ogni +sconto +pena +assassini +stupratori +finalmente +arriva +parlamento +proposta +lega +dato +voce +genitori +stati +uccisi +figli +bambini +stato +ucciso +altro +papà +vittime +dimenticate +stato +intanto +renzi +parla +fake +news +telegiornali +dicono +bene +fate +girare +diamo +voce +perso +vita +privata +ognuno +libero +stare +vuole +bambini +vengono +mondo +mamma +papà +vale +adozioni +renderle +meno +costose +veloci +priorità +quando +governo +lunedì +dicembre +tornerò +bolzano +chissà +cose +migliorate +incentivi +assunzioni +crescono +poi +crollano +quando +incentivi +finiscono +bisogna +ridurre +tassazione +lavoro” +riguardo +banche +effetti +bail +devastanti +altro +correntisti +presi +panico +accaduto +andati +ritirare +soldi +vergogna +assoluta +pd +dica +salvato +risparmiatori +quando +irresponsabilità +messo +strada +tante +persone +” +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +dessero +secondi +spiegare +risolvere +problema +immigrazione +clandestina +cosa +direste +risposto +così +stato +italiano +ora +basta +paga +debiti +debito +oltre +milioni +euro +stato +costretto +sergio +fallimento +umiliazione +migliaia +altri +imprenditori +stati +altro +rovinati +pubblica +amministrazione +lega +governo +pagamento +immediato +debiti +crediti +imposta +pubblica +amministrazione +semplice +buonsenso +ricordate +immigrati +marcia +veneto +ex +base +militare +cona +piace +vogliono +migliori +condizioni +dopo +rottura +trattativa +prefetto +scoppiata +pure +rissa +altro +possibile +problemi +italiani +istituzioni +debbano +occuparsi +benessere +abitativo +presunti +profughi +spettacolo +cagliari +grazieeee +andiamoagovernare +buon +pomeriggio +cagliari +spettacolo +state +diretta +andiamoagovernare +risultato +gestione +pd +porte +aperte +venite +risultato +italia +invasa +individui +fuggono +guerre +cercano +migliori +condizioni +vita +umanamente +comprensibile +buon +padre +altro +famiglia +dà +prima +figli +diritto +asilo +deve +essere +espulso +punto +governo +cuore +interessi +italiani +andiamoagovernare +chiesto +donne +bambini +rifugiati +accogliere +comune +dicono +sì +orgogliosa +dare +case +popolari +italiani +smontate +diretta +tivù +palle +pd +sindaci +lega +domando +certi +sindacati +quando +veniva +approvata +legge +fornero +stanco +governo +odia +italiani +coccola +clandestini +bella +italia +accogliente +risorse +clandestine +accoltellano +strada +proprio +zona +padova +stati +aggrediti +inviati +striscia +possiamo +dire +quasi +altro +anni +governi +guida +pd +letta +renzi +gentiloni +rovinato +italia +arrendo +darete +mano +voglia +fare +pulizia +⚫️⚫️⚫️ +padova +mano +spacciatori +africani +altra +aggressione +brumo” +merito +cerca +documentare +denunciare +schifo +soluzione +controlli +risorse +forze +ordine +certezza +pena +espulsione +delinquenti +stranieri +volere +potere +professorone +monti +ancora +coraggio +parlare +ridicolizza +proposta +lega +tassa +unica +ecco +armando +siri +smonta +vedere +🔴 +casa +branco +figli +puttana +mantes +jolie +vicino +parigi +quartiere +mano +immigrati +islamici +guerriglia +urbana +polizia +molotov +spari +mortaio +auto +altro +incendiate +movente +aver +arrestato +durante +controllo +trovato +possesso +droga +coraggio +resistere +agenti +morsi +ecco +regalando +città +bello +multiculturalismo +francese +stopinvasione +prima +tardi +⚠ +sconvolgente +maestre” +meritano +galera +telecamere +asili +tutte +case +riposo +giù +mani +può +difendere +ripropongo +intervento +ieri +sera +matrix +canale +divertito +credo +essere +stato +chiaro +europa +tasse +lavoro +pensioni +immigrazione +aiutatemi +condividere +lavoro +bello +quando +fa +lavoro +piace +però +riesce +sopravvivere +pensione +euro +mese” +parole +bernardino +anni +sveglia +ancora +oggi +andare +altro +consegnare +uova +deve +mantenere +figlia +nipote +sempre +ammiro +lavora +instancabilmente +passione +dopo +anni +lavoro +sacrifici +pensione +giusta +diritto +negoziabile +semplice +buonsenso +riuscite +stare +svegli +sera +circa +saluto +matrix +canale +spettacolare +accoglienza +pubblico +sondaggi +piacciono +porto +minuscolo +container +senza +bagno +ancora +costretta +vivere +nonna +peppina +però +perso +sorriso +proposta +lega +stata +accolta +commissione +settimana +scorsa +altro +prima +vittoria +ora +dovrà +dare +voto +definitivo +parlamento +sbrigatevi +nonna +merita +passare +natale +casetta +forzanonnapeppina +🔴 +ecco +prove +quando +operazione +soccorso +portiamo +sempre +migranti +italia +recuperiamo +acque +maltesi +fa +parte +accordo +dice +coordinatrice +triton +altro +operazione +europea +controllo +frontiere +mediterraneo +quindi +solidarietà +europea +qualche +mese +musica +cambia +tornerà +difendere +confini +guardate +profugo +guerra” +impegnato +blocco +stradale +caserta +forma +invidiabile +giacca +pelle +occhiali +sole +taglio +capelli +ricercato +però +troppo +troppo +cibo +altro +buono +alloggio +bene” +milioni +persone +italia +sotto +soglia +povertà +troppo +troppo” +primagliitaliani +stato +italiano +fa +nulla +rifugiati +politici +milioni +poveri +vorrei +invece +stato +italiani +cosí +quando +governo +paese +primagliitaliani +🚩lo +dice +presidente +coldiretti +europa +schizofrenica +lato +apre +insetti +altro +consente +produrre +vino +zucchero +formaggi +polvere +latte +mentre +pd +altro +votato +portarci +tavola +cavallette +tarantole +cimici +giganti +altre +schifezze +lega +difende +sempre +made +italy +coerenza +follie +europa +massacra +produzioni +ministro +agricoltura +martina +invece +troppo +impegnato +giocare +stesso” +approvare +ius +soli +pensi +spaventarmi +parolacce +applausi +autista +calma +intelligenza +introdurre +tutte +scuole +qualche +ora +educazione +civica +ambientale +bene +ragazzi +accordo +ong +scafisti +ecco +prove +complicità +sotto +occhi +elicottero +unione +europea +quando +diceva +lega +matti +stopinvasione +altra +follia +europa +roba +matti +italiani +merde” +dice +”signora” +rom +prete +beh +voleva +passaggio +posto +anziché +sparare +bufale +lega +quali +crede +nessuno +stelle +preoccupino +amministrare +roma +guardate +schifo +modello +lega +comuni +territori +nord +sud +solo +primaglitaliani +ora +diretta +milano +scuola +formazione +politica +lega +altra +giornata +studio +approfondimento +confronto +centinaia +ragazzi +arrivati +tutta +italia +andiamoagovernare +auto +lusso +soldi +gioielli +banconote +false +pronte +truffe +campo +rom +strano +mai +detto +ruspa +vogliamo +documenti +vogliamo +documenti +marcia +profughi +scontenti +condizioni +vita +ex +base +militare +conetta +arrivati +venezia +stati +accontentati +ricollocati +altro +altre +strutture +veneto +alcuni +pare +gradiscano +alloggio +chiedono +tornare +ex +base +eh +priorità +italia +rispetto +allevatori +insetti +pd +europa +votato +favore +utilizzo +tavola +carbonara +preferisco +classica +buona +domenica +amici +ubriachi +storti +litigano +fatti +mentre +sinistra +litigano +prodi +alema +giochini +palazzo +poltrone +voglio +occuparmi +periferie +città +nessuno +altro +pensa +sogno +italia +prendendo +autobus +sera +milano +roma +torino +rischi +propria +incolumità +fisica +chiedere +troppo +lega +merda +vaffanculo +salvini +merda +poi +sassaiole +fumogeni +scontri +polizia +bravi +ragazzi +rappresentanti +studenti +meticci +autodefinitisi +tali +ieri +davanti +sede +regione +lombardia +democratici +po +educazione +civica +scuola +male +dite +cosa +entra +pd +mps +pensano +italiani +scemi +ascoltate +risposta +claudio +borghi +facciamosquadra +andiamoagovernare +povero +renzino +destinazione +fallimento +bastapd +andiamoagovernare +🔵 +ieri +sera +paolo +debbio +spiegato +cosa +primo +ministro +posto +pd +guardate +riguardate +credo +essere +stato +abbastanza +efficace +leggerò +sempre +commenti +andiamoagovernare +sorelle +anni +massacrate +brutalmente +busto +arsizio +varese +centro +pieno +giorno +29enne +rumeno +ubriaco +senza +motivo +infame +verme +signore +argia +fin +altro +vita +preghiera +possa +salvarsi +abbraccio +signora +wilma +video +racconta +tragedia +vissuta +dopo +anni +buonismo +quando +governo +ogni +giorno +impegno +tornare +italia +regole +rispetto +sicurezza +truffa +ricevere +euro +poi +avere +stipendio +dimezzato +dovuti +vari +bonus +prendendo +giro +italiani +soluzioni +credibili +ridurre +altro +aliquote +diminuire +tassazione +misura +strutturale +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +fondo +dobbiamo +capirli +dice +sindaco +sentivano +mancanza +città +stata +marachella +espulsione +immediata +difesa +confini +stopinvasione +amici +sardi +sabato +prossimo +novembre +fiera +cagliari +felice +orgoglioso +tornare +splendida +isola +aspetto +tantissimi +andiamoagovernare +nota +bene +ingresso +altro +libero +possibile +accreditarsi +avere +certezza +ingresso +scrivendo +accrediti +cagliari2017 +noiconsalvini +org +rischiato +grosso +inviato +striscia +racconta +aggressione +subita +spacciatori +africani +bologna +solo +cocaina +offerto +pistole +kalashnikov +onore +vittorio +altro +brumotti +servizio +documentazione +degrado +conduce +troupe +mettendo +rischio +propria +incolumità +disonore +quegli +amministratori +pubblici +tollerano +schifo +città +🔴 +clandestini +soldi +sempre +vedova +figli +disabili +no +italia +secondo +stime +governo +spenderà +quasi +miliardi +anni +accoglienza +centinaia +migliaia +altro +finti +profughi +scappano +guerre +vengono +migliorare +condizioni +vita +poi +storie +angelina +vedova +figli +disabili +disperata +stringe +cuore +pare +giusto +pare +normale +dovrebbe +essere +priorità +paese +serio +migliorare +prima +condizioni +vita +nato +vissuto +pronto +rivoluzione +buonsenso +primagliitaliani +grazie +paolo +debbio +aver +preso +cuore +trasmissione +sera +mamma +difendere +territorio +comprare +italiano +scarafaggi +mangi +renzi +boldrini +cena +🔴🔴🔴basta +cocaina +armi +accanto +asilo +ragazzi +striscia +aggrediti +selvaggiamente +derubati +ecco +sicurezza +targata +pd +accogliente +bologna +unica +soluzione +espulsione +immediata +gentaglia +senza +senza +giornalista +filippo +facci +racconta +esperienza +vita +vera +rom +vicino +casa +consiglio +visione +condivisione +bacheche +amici +buonisti +ascoltate +parole +gentiloni +capirete +grazie +pd +italia +invasa +immigrati +clandestini +scappano +nessuna +guerra +stopinvasione +vanitoso +premier +ricordo +sommessamente +italia +tutta +africa +qualche +minuto +ripropongo +intervista +ieri +pomeriggio +radio +calcio +cose +molto +importanti +vittoria +nonna +peppina +tenero +piccolo +ride +sonno +chissà +cosa +sognando +bimbi +cosa +bella +vederli +crescere +riempie +orgoglio +papà +voglio +figli +crescano +paese +sognare +grande +utopia +date +mano +🔴 +mostruosa +crudeltà +immagini +sconvolgenti +oltre +riempirmi +tristezza +imbestialire +disumana +badante +livorno +picchiava +insultava +poveri +nonni +anni +stata +allontanata +me +andrebbe +arrestata +rispedita +paese +renzi +tocca +trasforma +presunti +profughi +ospitati +spese +italiani +ex +base +militare +conetta +veneziano +bloccano +traffico +volte +giorno +vogliono +condizioni +vita +migliori +bene +padova +racconta +testimone +nomadi +bevevano +molto +particolarmente +ubriaco +metteva +mani +addosso +persone +caso +qualcuno +portato +pazienza +altro +cercando +tranquillizzarlo +certo +punto +presa +persona +sbagliata +trovato +infatti +ragazzo +spinto +via +finita +lì +scattata +rissa +proprio +bancone +fine +brillante +idea +prendere +ducato +sfondare +vetrina +ingresso +gasoline +soluzione +tolleranzazero +http +www +padovaoggi +it +cronaca +rissa +gasoline +furgone +vetrata +padova +via +fornace +morandi +novembre +html +piace +allenatore +guardate +video +ideatore +famoso +limite +deficit +pil +numero +casuale +deciso +meno +ora +oggi +studiosi +cercano +giustificare +numero +analisi +altro +scientifiche +garantisco +andata +così +capito +ogni +anno +governo +toglie +risorse +scuole +ospedali +forze +ordine +rispettare +regola +senza +senso +basta +politica +deve +essere +servizio +cittadini +contrario +nome +norme +tetti +arbitrari +imposti +bruxelles +possiamo +aiutare +italiani +sforeremo +andiamoagovernare +contento +lega +forte +mai +stata +voti +forza +proposte +cancellazione +legge +fornero +tassa +unica +blocco +immigrazione +altro +incontrollata +espulsione +clandestini +sicurezza +certezza +pena +legittima +difesa +riforma +scuola +tutela +made +italy +ridiscussione +trattati +europei +prima +europa +euro +portino +fallimento +economia +imprese +pronto +fateci +votare +febbraio +prima +possibile +italiani +premieranno +idee +convincenti +male +notti +container +brutte +tg5 +ieri +sera +dedicato +servizio +aggiornamento +vergognosa +situazione +burocrazia +stato +debole +forti +forte +altro +deboli +costretto +nonna +peppina +anni +terremotata +invito +rappresentanti +partiti +svegliarsi +lega +parlamento +soluzione +trovata +basta +quarto +ora +approvarla +restituire +nonna +casetta +forzanonnapeppina +ecco +appello +rinnoviamo +https +www +facebook +com +salviniofficial +videos +boldrini +auspica +ritorno +cosiddette +ong +mare +eh +certo +sennò +clandestini +arrivare +italia +pagarci +pensioni +boldriniclandestina +purtroppo +troppo +ubriaco +pagarci +pensione +pensiero +lavora +autobus +treni +metro +italia +rovinata +pd +pensano +poter +fare +vogliono +almeno +po +regole +ordine +porteremo +ve +garantisco +🔴 +senza +vergogna +monti +salvini +incita +odio +verso +incredibile +ancora +coraggio +parlare +proprio +legge +fornero +rovinato +milioni +italiani +detto +confermo +altro +primo +impegno +premier +cancellare +infame +legge +essa +memoria +governanti +indegni +andiamoagovernare +ricordate +anni +anno +scorso +luglio +vennero +picchiati +torturati +ferocia +addirittura +ferro +stiro +derubati +banda +marocchini +infami +terzo +latitante +altro +stati +condannati +appena +anni +mesi +ciascuno +rosina +sconsolata +anni +fuori +vengono +ammazzare +me +promesso +maledetti +dopo +anni +disastro +pd +pochi +mesi +porteremo +italia +leggi +giuste +pene +certe +grande +abbraccio +ennio +rosina +abbraccio +oggi +duramente +colpito +maltempo +sud +sicilia +particolare +ragusano +siracusano +catanese +stato +settimana +scorsa +pensiero +particolare +acate +vittoria +forza +degrado +prima +vanno +letto +dopo +qualche +mese +denunciano +italiane +parole +madre +alessio +sinto +stupratore +lascio +commenti +dico +italia +serve +buona +dose +tolleranzazero +esposizione +internazionale +ciclo +motociclo +viva +eccellenze +italiane +stupra +castrazione +chimica +doverosa +” +campi +rom +leggi +stato +italiano +esistono +manda +figli +scuola +subisce +patria +potestà +ristoranti +altro +italiani +devono +rispettare +leggi +severe +fumi +emanati +mentre +possono +bruciare +creando +nubi +tossiche +necessario +innanzitutto +riportare +principio +legalità +” +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +🔴 +nonna +peppina +anni +gelo +container +mese +oltre +disegno +legge +lega +presentato +emendamento +decreto +legge +fiscale +abbinato +legge +bilancio +basta +quarto +altroora +approvare +restituire +nonna +casetta +aiutando +centinaia +altre +famiglie +terremotate +stessa +situazione +sveglia +gentiloni +sveglia +pd +forzanonnapeppina +bambini +maltrattati +denunce +segnalazioni +giorno +lega +propone +inascoltata +anni +telecamere +antiviolenza +asili +scuole +case +riposo +quando +qualche +mese +governo +altro +finalmente +nessuna +tolleranza +proprio +luoghi +dovrebbero +essere +sicuro +fa +male +bimbi +anziani +🔴fai +girare +sbarchi +fermati +tutte +palle +italia +invasa +ex +carcerati +nordafricani +ecco +prove +video +pdclandestino +votosubito +ripropongo +intervista +corrierelive +tante +domande +divertito +rispondere +confronto +sempre +positivo +giada +ancora +bimba +iscrive +corso +karate +palestra +gestita +maestro +carmelo +entrando +tana +orco +stupra +sessualmente +fino +anni +usando +posizione +altro +autoritaria +costringerla +accettare +spingendola +subire +rapporti +altri +quarantenni +oggi +riesce +raccontare +senza +veli +sorriso +dolce +sincero +merita +togliermelo” +onore +te +giada +gesto +splendido +atto +coraggio +conoscete +persone +subito +violenze +sessuali +aiutatele +denunciare +stupratori +solo +così +riusciamo +stanarli +papà +prima +politico +fermare +condannare +mostri +meritano +vivere +impuniti +posto +giusto +signore +galera +spaccare +naso +testate +parole +tutta +solidarietà +giornalista +daniele +piervincenzi +troupe +nemo +nessuno +escluso +pazzesco +benvenuti +cuore +firenze +pd +scrigno +bellezze +mondo +invidia +maxi +risse +colpi +sprangate +pakistani +bengalesi +cittadini +commercianti +terrorizzati +basta +stopinvasione +pdacasa +manca +poco +diretta +campo +rom +via +salone +roma +ospitava +stupratori +ragazzine +ieri +carabinieri +arrestato +spaccio +furto +persone +seconda +parte +live +https +www +facebook +com +salviniofficial +videos +tatua +petto +solo +dio +può +giudicare +poi +stupra +quattordicenni +esiste +unica +soluzione +castrazione +chimica +galera +insieme +musumeci +tutta +squadra +lega +entra +prima +volta +storia +assemblea +regionale +siciliana +felice +orgoglioso +impegno +militanti +candidati +altro +oltre +100mila +voti +puliti +conquistati +costo +zero +entro +natale +tornerò +sardegna +novembre +poi +campania +puglia +calabria +proporremo +cittadini +amministratori +locali +patto +sud +vero +rilanciare +economia +lavoro +speranza +andiamoagovernare +ecco +stato +premia +commette +reati +rovina +cittadini +perbene +nuovo +parlamento +approveremo +finalmente +legge +tuteli +legittima +difesa +metteremo +fine +ingiustizie +andiamoagovernare +ennesima +rissa +suon +bottigliate +risorse +oggi +pomeriggio +parco +montagnola +bologna +degrado +spaccio +pieni +giorno +poco +prima +pagatori +pensione +amati +sinistra +altro +minacciato +donna +anni +po +lavoro +fare +quando +governo +rimediare +anni +invasione +targata +pd +grazie +lucia +borgonzoni +girato +video +delia +arzilla +signora +anni +distrutta +dopo +scomparsa +marito +mai +voluto +cane +eppure +quando +famiglia +accolto +casa +maia +simpatico +bull +terrier +ricominciato +altro +vivere +diventati +coppia +inseparabile +amici +zampe +sempre +bene +male +delia +maia +auguriamo +tanti +anni +tenerezze +belpasso +catania +oro +sicilia +altro +arance +marocchine +difendiamo +prodotti +consumiamo +italiano +diretta +catania +baracche +rione +taormina +messina +splendida +taormina +tour +sicilia +continua +ora +palagonia +catania +ripropongo +intervista +mattina +agorà +rai +attentato +islamista +new +york +elezioni +sicilia +progetto +lega +governo +paese +bello +confrontarmi +opinioni +molto +diverse +spero +essere +stato +convincente +sicilia +testa +vittoria +provincia +ragusa +compriamo +consumiamo +italiano +boldrini +insiste +ius +soli +fare +consiglio +pd +portarsi +sacchi +pelo +passare +natale +capodanno +parlamento +cittadinanza +regalo +noiussoli +solo +interno +hotel +villa +sikania +splendida +vista +agrigentina +anni +ospita +migranti +euro +giorno +gioia +residenti +paesi +vicini +grazie +renzi +grazie +alfano +stopinvasione +intervento +apertura +scuola +formazione +politica +lega +tanti +giovani +tante +competenze +tante +energie +tutta +italia +tanta +voglia +partecipare +cambiare +paese +andiamoagovernare +www +scuoladiformazionepolitica +it +aggiornamenti +nonna +peppina +inviamo +bacione +ieri +mattina +calvi +risorta +caserta +soliti +democratici +centri +sociali +distrutto +gazebo +aggredito +militanti +attaccano +lega +temono +fermeranno +fate +paura +fate +solo +pena +ora +stazione +palermo +viaggio +direzione +agrigento +prosegue +fate +compagnia +buona +giornata +amici +pazzesco +ore +trapani +raggiungere +agrigento +treno +così +siciliani +vengono +aiutati +politica +governo +centrale +spettacolare +accoglienza +palermo +cosa +può +volere +grazie +ragazze +prima +giornata +entusiasmante +grazie +ragazzi +futuro +sdfp2017 +www +scuoladiformazionepolitica +it +solito +giornalista +sinistra +tendenza +caviale +champagne +rimprovera +linguaggio +dice +seminerei +odio +mondo +vive +certa +gente +fatti +giro +autobus +metro +parco +giochi +pronto +soccorso +cosa +rispondereste +italia +diffondono +nuovi +stili +vita +pensioni +approvare +subito +blocco +età +cancellare +riforma +fornero +peggio +sempre +arrivi +67anni +vorrebbero +piddini +solo +grecia +certo +esempio +paese +salute +lucia +borgonzoni +facciamosquadra +andiamoagovernare +anziani +costretti +rovistare +scarti +mercato +clandestini +protestano +gradiscono +cibo +video +vale +mille +analisi +telegiornali +vedere +chissà +condividi +almeno +rete +primagliitaliani +ripropongo +intervista +ieri +sera +formigli +la7 +buone +idee +lega +italiani +andiamoagovernare +sempre +ricordarci +fare +bastapd +andiamoagovernare +sequestrare +uccidere +bimbo +mesi +poi +dire +davanti +tivù +bambini +anima +cuore +può +spezzare +cuore +famiglia” +verme +deve +marcire +galera +tommy +mamma +paola +nata +sorda +grazie +intervento +splendida +bimba +sente +prima +volta +voce +mamma +tenerezza +stop +invasione +stop +islam +italia +bisogno +lavoro +altri +delinquenti +strasburgo +minuti +smontato +tutte +euroballe +sinistra +scafista +condividi +bacheca +qualche +buonista +visto +nessun +telegiornale +vedere +immagini +giudicare +accoglienza +ricevuta +treno +treno +preso +addosso +renziacasa +andiamoagovernare +meno +burocrazia +statale +meno +vincoli +europei +spendere +meno +spendere +meglio +politica +chilometro +zero +penso +essere +stato +chiaro +oggi +tg5 +dopo +straordinaria +partecipazione +milioni +altro +lombardi +veneti +referendum +ieri +tempo +passare +parole +fatti +obiettivo +esportare +modello +tutte +regioni +italiane +nord +sud +profugo +spacciatore +mangiare +bene +italia +sporco +italia +mafia +vendere +erba +fa +votare +ancora +pd +quando +governo +espulsione +immediata +gente +girare +primagliitaliani +dimenticare +governati +piace +cucinare +casa +figli +stare +fornelli +ristorante +altra +storia +ieri +salone +internazionale +ospitalità +professionale +ennesima +conferma +cucina +altro +italiana +imbattibile +saluto +ristoratori +cuochi +camerieri +ammiro +passione +mettono +lavoro +difficilissimo +secondo +dopo +aver +mentito +solo +laurea +diploma +maturità +ancora +insiste +punto +vista +sostanza +poi +solita +spocchia +sfreccia +via +altro +autoblu +vedere +servizio +merita +essere +ancora +ministro +istruzione +bell +esempio +giovani +italiani +fortuna +incapaci +pd +fine +corsa +aiuto +mandiamo +casa +andiamoagovernare +40mila +euro +dovuto +spendere +graziano +stacchio +spese +legali +provare +innocenza +anni +risparmi +bruciati +difeso +legalmente +vita +altre +persone +mettendo +rischio +altro +propria +legge +seria +legittima +difesa +necessaria +paese +normale +principali +missioni +volta +governo +ladifesaèsemprelegittima +andiamoagovernare +pensiero +caro +ermes +mattielli +fortuna +incontrare +morì +infarto +dopo +aver +appreso +dover +risarcire +famiglia +rom +derubato +vergogna +qualche +minuto +prego +ascoltare +diffondere +storia +sergio +umiliato +rovinato +stato +ladro +burocrate +parassitario +paga +debiti +oltre +milioni +altro +euro +tenuto +duro +altri +imprenditori +suicidati +paese +civile +amministrazioni +pubbliche +trattano +così +fa +impresa +rischia +fida +istituzioni +onore +te +sergio +priorità +governo +altro +ius +soli +mattina +canale +credo +essere +stato +chiaro +ladro +succede +qualcosa +sbaglio +ladifesaèsemprelegittima +allegria +risorse +giovani +fresche +vengono +pagarci +pensione +roba +matti +modena +classe +sola +bimba +italiana +integrazione +modello +boldrini +attenti +accordo +sempre +pronta +accusa +razzismo +ve +persa +ripropongo +intervista +ieri +night +tabloid +rai +bel +programma +andiamoagovernare +tentato +rapire +figlia +ieri +parlato +arresto +kenioti +fratello +sorella +tentato +rapire +bimbi +oratorio +provincia +monza +racconto +mamma +bambini +pianto +capivo +cosa +succedendo” +delinquenti +espulsione +immediata +galera +casa +idea +futuro +idea +italia +mai +visto +vicenza +riusciti +entrare +live +albergo +vivono +spese +immigrati +guadagna +milioni +euro +grazie +presunti +profughi +spuntano +affari +5stelle +dice +signor +grillo +tivù +nascondono +vergogna +fate +girare +secondo +normale +famiglia +consuma +zero +paghi +bolletta +elettrica +euro +tasse +video +pazzesco +messi +fate +girare +sembra +normale +portare +via +signore +servano +agenti +devono +supplicarlo +entrare +auto +basta +forze +ordine +devono +poter +altro +lavorare +tranquillamente +normalmente +pd +5stelle +approvato +reato +tortura +mette +carabinieri +poliziotti +agenti +polizia +penitenziaria +mano +delinquenti +iostoconlapolizia +aziende +delocalizzato +restituiscano +soldi +pubblici +ricevuti +lega +fatto +proposta +legge +norme +europee +può +dire +freghiamo +altro +buon +senso +dobbiamo +imporre +misure +corrette +tutelare +sistema +produttivo +lavorativo +” +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +lunedì +partecipato +bottiglie +aperte” +evento +scoperta +migliori +vini +italiani +attualmente +italia +paese +grande +quantità +vino +prodotto +mondo +mentre +francia +rimane +altro +paese +alto +valore +produzione +nonostante +quantità +prodotta +inferiore +vuol +dire +mediamente +vino +francese +costa +italiano +dobbiamo +valorizzare +vino +inferiore +nessuno +sfida +volta +governo +difendere +tutta +agricoltura +italiana +nord +sud +presunti +profughi +picchiano +capitreno +esigono +viaggiare +gratis +nascondono +armadietti +quadri +elettrici +carrozze +ormai +quotidianità +treni +italiani +invasione +pretendere +normalità +sicurezza +troppo +risorsa +azione +prima +dà +fuoco +cassonetto +poi +escandescenza +inveisce +pattuglia +carabinieri +bella +ripulita +serve +italia +mentre +commercianti +italiani +lottano +sopravvivenza +tasse +burocrazia +scontrini +concesso +centro +bologna +italia +abusiva +pd +cambiare +può +ripulire +deve +stopinvasione +bastapd +diretta +badia +polesine +rovigo +parlare +futuro +lavoro +libertà +fate +qualche +minuto +parlare +basta +polemiche +litigi +vedo +ora +avere +potere +cambiare +meglio +italia +lacrime +miriam +anni +figlio +disabile +dopo +sfratto +dovuto +vendere +quadri +dipinti +ricordi +vita +pagarsi +qualche +notte +residence +signora +altro +accontenterebbe +solo +magazzino +capanna” +niente +però +governo +pensa +bene +dare +casa +lavoro +75mila +profughi” +basta +basta +basta +primagliitaliani +sentito +parlare +qualche +tg +nazionale +sardegna +invasa +sbarchi +fantasma +delinquenti +nordafricani +testimonianza +commercianti +cagliari +moglie +seguita +stranieri +altro +ostaggio +algerini +ubriachi +drogati +ora +costretti +pagarsi +vigilanza +privata +pd +bene +eh +guerre +algeria +stato +mette +primo +posto +sicurezza +cittadini +stato +fallito +sabato +novembre +cagliari +tante +persone +perbene +dire +stopinvasione +abbassare +tasse +rilanciare +lavoro +solo +così +riparte +italia +economia +malata +curarla +bisogna +rimettere +moto +sistema +immunitario +paese +creare +lavoro +altro +flat +tax +riforma +prevede +inoltre +inversione +onere +prova +inaccettabile +materia +fiscale +stato +sempre +ragione +contribuente +sempre +torto +armando +siri +facciamosquadra +andiamoagovernare +approfondimenti +www +tassaunica +it +fatti +catalani +visto +tante +follie +ennesima +volta +assordante +silenzio +ipocrisia +europa +bruxelles +sanzioni +russia +putin +democratico +silenzio +altro +centinaia +cittadini +malmenati +chiedevano +poter +votare +vengono +prima +cittadini +manganelli +proiettili +gomma +potere +statale +prevale +esiste +vengono +prima +libertà +democrazia +rispetto +regole +violenza +mai +soluzione +italiani +disperati +costretti +vivere +auto +scantinati +edifici +abbandonati +frattempo +pd +stelle +regalano +lavoro +casa +clandestini +rom +primagliitaliani +solo +hashtag +missione +governo +rom +incinte +impunibili +travestono +artiste +strada +avvicinare +turisti +fregargli +portafoglio +bello +stile +vita +splendida +immagine +dà +firenze +culla +arte +civiltà +mondo +governo +pd +anni +fregato +governo +tolleranzazero +delinquenti +minuti +liberi +guardate +intervento +rete +catalogna +violenza +europa +povertà +italia +ditemi +stato +abbastanza +chiaro +forzanonnapeppina +ecco +ridotto +pd +cuore +bologna +parco +montagnola +diventato +teatro +violenza +spaccio +droga +impedire +arresto +solite +risorse +circondano +vigili +mandandone +ospedale +schifo +tolleranzazero +bastapd +las +vegas +strage +mai +vista +almeno +morti +centinaia +centinaia +feriti +prescindere +legami +meno +terrorismo +islamico +preghiera +vittime +ennesima +follia +criminale +tutta +vicinanza +popolo +americano +bisogna +approvare +ius +soli +altrimenti +vince +salvini +dice +faziosa +boldrini +orgoglioso +aver +mai +mollato +aiuto +governi +invasione +ora +andiamo +ridare +lavoro +speranza +italiani +insieme +vince +noiussoli +guardate +video +amichetti +centri +sociali +casino +torino +g7 +oggi +milano +lasciati +lanciarmi +insulti +uova +sputi +lascio +altro +giudicare +fascisti +blaterano +ascoltateli +bene +mamma +chiede +smetterla +fare +casino +bambini +sinistroide +risponde +cazzo +frega +cretina +annetto +servizio +civile +militare +potrebbe +essere +buona +cura +magari +imparerebbero +avere +po +rispetto +altri +dite +profughi +vitto +alloggio +lavoro +cellulare +me +cittadino +italiano +niente +costretto +vivere +bagno +cimitero +signor +karaboue +coraggio +fargli +morale +informi +comune +problema +immigrati +entra +niente +oggi +torino +deficiente +cappuccio +giallo +bene +annetto +servizio +militare +viva +polizia +ecco +intervento +ieri +torino +davanti +platea +consulenti +lavoro +proposte +abolire +legge +fornero +ridare +fiato +occupazione +giovanile +eliminare +tutta +burocrazia +altro +inutile +dannosa +studi +settore +spesometro +ridurre +drasticamente +carico +fiscale +trump +stati +uniti +flat +tax +vedo +ora +poter +passare +parole +fatti +andiamoagovernare +vivere +andiamo +rubare +consiglio +bella +compilation +orgoglio +rom +unica +soluzione +italia +tolleranzazero +maria +etruria +ancora +parla +ius +soli +sicuramente +priorità +prossima +legislatura +capito +lavoro +tasse +povertà +no +primo +impegno +kompagni +regalare +altro +cittadinanza +immigrati +nessuna +intenzione +integrarsi +fortunatamente +così +vinceremo +noiussoli +bastapd +andiamoagovernare +fedriga +asfalta +senatore +pd +conduttore +la7 +ammette +scene +quotidiane +migranti +pagano +biglietto +scontri +treni +italiani +quartieri +radicalizzati +altro +molenbeek +belgio +segnali +mostrano +limiti +integrazione +alcune +tipi +culture +integrabili +penso +molto +diverso +rapporto +immigrato +cristiano +islamico +sostenere +contrario +significa +negare +verità +migranti +economici +visto +molti +casi +denutrizione +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +seguite +visita +mattina +mercato +magliana +roma +sondaggi +piacciono +cambiare +può +ieri +sera +visto +puntata +cartabianca +bianca +berlinguer +rai +ve +ripropongo +andiamoagovernare +pronto +aiutatemi +diffonderla +amici +colpa +vergognerei +aver +allevato +bestie +dichiarazioni +allucinanti +padre +minorenni +marocchini +accusati +stupro +rimini +susanna +zitta +rende +altro +conto +particolari +agghiaccianti +successo +umano +” +susanna +ceccardi +sindaco +càscina +pisa +facciamosquadra +andiamoagovernare +buon +lunedì +amici +voglia +parlare +po +insieme +puoi +sognarlo +puoi +farlo +walt +disney +video +verità +aprire +porte +accogliere +accogliere +accogliere +senza +limiti +senza +buonsenso +così +città +diventate +sempre +pericolose +particolare +donne +altro +video +testimonianza +telecamere +nascoste +ragazze +finte +turiste +passeggio +roma +subendo +aggressioni +minacce +balordi +molestatori +ogni +tipo +ora +mai +cambiare +può +cambiare +deve +stopinvasione +emendamento +raddoppiare +indennità +possiede +cane +guida +ciechi +piccolo +gesto +concreto +costa +poco +mille +persone +può +essere +grande +aiuto +magari +strappare +sorriso +pd +pensa +ius +soli +primaglitaliani +torre +angela +periferia +roma +nigeriano +armato +piccone +sfascia +terrorizza +residenti +condominio +bell +italia +lasciano +anni +anni +governo +pd +paese +bisogno +bella +ripulita +ecco +intervista +ieri +sera +bruno +vespa +porta +porta +vedo +ora +italiani +permesso +votare +squadra +pronti +leggo +commenti +andiamoagovernare +ottobre +parte +terza +edizione +cattedre +cravatta +scuola +formazione +politica +anni +formato +centinaia +ragazzi +ragazze +uomini +donne +altro +anni +educando +confronto +apertura +mentale +scambio +tesi +partendo +numeri +arrivare +realtà +informati +iscriviti +www +scuoladiformazionepolitica +it +andiamoagovernare +email +segreteria +scuoladiformazionepolitica +it +terremotata +sfrattata +casetta +legno +donatale +famigliari +anni +rendete +conto +storia +incredibile +vergognosa +grida +vendetta +domani +andrò +martino +fiastra +macerata +cercheremo +dare +mano +risolvere +incredibile +vicenda +forza +nonna +peppina +mentre +altri +chiusi +palazzo +orgoglioso +stare +agenti +polizia +penitenziaria +veri +detenuti +richieste +quando +governo +diventeranno +realtà +fassino +pd +ius +soli +vuole +spalleggiato +solito +regista +radical +chic +inneggia +futuro +multiculturale +italia +senza +senza +provano +solo +iniziare +pronunciare +parola +ius +soli +blocchiamo +parlamento +basta +bloccarlo +dentro +blocchiamo +fuori +noiussoli +immigrato +senza +biglietto +zittisce +capotreno +cittadina +esasperata +riprende +grazie +pd +ridotto +paese +richiesta +così +esagerata +pretendere +po +regole +po +rispetto +volta +telegiornali +dovuto +aprire +servizio +lega +merito +splendido +popolo +pontida +andiamoagovernare +grazie +splendido +popolo +pontida17 +imbavaglieranno +mai +andiamoagovernare +grazieeeee +pontida17 +grazie +amici +tantissimi +forzalega +diretta +pontida +prepariamo +splendida +giornata +libertà +forzalega +sembra +paese +democratico +magistrato +fatto +fa +fuori +partito +renzi +rosicone +sciacallo +grazie +nicola +porro +giornalista +schiena +dritta +ancora +orecchie +occhi +affetto +dimostrato +qualche +sera +fa +studio +la7 +cresciamo +idee +dimostrano +giuste +milioni +italiani +sostengono +prosciugano +altro +conti +esproprio +proletario +senza +precedenti +fare +ricorso +singolo +intero +popolo +certo +vinceremo +libereremo +paese +domani +pontida +conto +te +forzalega +accordo +giornalista +buonista +te +pronta +accusa +uomo +bianco +sessista +amici +pensano +imbavagliarci +trovato +persone +sbagliate +fermeranno +mai +possiamo +pretendere +africano +sappia +italia +spiaggia +possa +violentare +persona +così +avvocato +comitato +pari +opportunità +corte +appello +salerno +tale +carmen +genio +ormai +italia +follia +ricoveratela +stopinvasione +ripropongo +conferenza +stampa +ieri +sera +neanche +turchia +usano +giudice +mettere +fuori +legge +partito +stupro +rimini +dopo +padre +arresti +domiciliari +certo +figli +presto +liberi +ecco +madre +accusata +essere +solita +minacciare +vicina +casa +coltello +dicendole +scopare +figli +proprio +bella +famigliola +gente +merita +rimanere +paese +assassino +noemi +saluta +ride +spero +carcere +passare +voglia +minuti +ecco +euro +rovinato +italiani +avvantaggiato +germania +cambiare +può +pensionato +lavoratore +dipendente +subito +accorto +entrando +euro +propria +altro +pensione +proprio +stipendio +valevano +metà +prima +giancarlo +giorgetti +deputato +vicesegretario +lega +facciamosquadra +andiamoagovernare +fatto +solo +anno +galera +anni +italia +figli +anni +usciranno +carcere +paparino +bravi +ragazzi +marocchini +arrestati +stupro +rimini +diamo +notizia +molto +presto +lega +governo +posto +pd +festa +finisce +bello +figo +bella +ciao +nuovi +kompagni +crescono +aereo +ritardo +ore +parlo +po +tassa +unica +funziona +flat +tax +sostenibile +equo +progressivo +esiste +già +attuale +sistema +aliquota +minima +percentuale +superiore +lascerebbe +altro +fuori +beneficio +fiscale +oltre +milioni +italiani +italia +deve +ripartire +senza +lasciare +indietro +nessuno +armando +siri +facciamosquadra +andiamoagovernare +approfondimenti +www +tassaunica +it +francofonte +vicino +siracusa +alcuni +immigrati +minorenni +scontenti +paghetta +cibo +vestiti +distruggono +mobili +poi +lanciano +balcone +centro +ospita +tranquilli +risposta +buonisti +già +pronta +colpa +salvini +semina +odio +ripropongo +intervista +ieri +sera +paolo +debbio +davanti +migliaia +persone +firenze +vedono +ora +liberare +italia +renzi +pd +andiamoagovernare +firenze +scandicci +spettacolo +segui +https +www +facebook +com +leganord +toscana +videos +amici +saluto +diretta +festa +lega +piemonte +trecate +novara +neanche +pioggia +ferma +state +sbarco +indisturbato +vicino +agrigento +scafisti +cercano +nuovi +approdi +stati +bagnanti +dare +allarme +fermare +nuovi +presunti +profughi +fuga +video +incredibile +tg +ve +vedere +roma +pretende +salire +metro +senza +biglietto +soldi +toccarmi +vaffanculo +ammazzo +arroganza +insulti +violenza +altro +addetti +sicurezza +forze +ordine +voglio +riportare +paese +aiuto +ordine +regole +rispetto +stopinvasione +vergogna +italiana +malata +terminale +ferrara +casa +popolare +graduatorie +favoriscono +sempre +immigrati +nato +pagato +contributi +vita +intera +dovrebbe +essere +favorito +penalizzato +primagliitaliani +solo +buon +senso +evidentemente +pd +governo +venduto +italiani +liberi +stare +tranquilli +nemmeno +casa +devono +tutelare +altrimenti +tuteleremo +soli +dice +franco +carabiniere +congedo +altro +delinquenti +aggredito +moglie +paola +giardino +abitazione +provincia +treviso +parole +sacrosante +condividere +buon +viaggio +sempre +amici +addio +gastone +moschin +ogni +volta +riguardo +scena +rendo +conto +cosa +genio +grande +cinema +rilanciare +ripulire +riordinare +italia +minuti +proposte +molto +applaudite +rispetto +grillino +maio +aiutami +condividere +andiamoagovernare +regolare +biglietto +immagino +dopo +anni +battaglie +denunce +lega +cittadini +qualcuno +accorge +moi +torino +clandestini +criminali +sgomberare +madonnina +riccioli +oro +fisarmonica +spettacolo +pinzolo +buonasera +amici +saluto +diretta +pinzolo +splendido +trentino +state +oggi +roma +scappare +guerra +portano +città +bastaaaaa +controlli +espulsioni +tranquillità +casaaaaa +stopinvasione +bottiglie +sassi +polizia +mattina +alba +parte +centinaio +immigrati +accampati +abusivamente +giardini +piazza +indipendenza +roma +forza +ragazzi +sgomberi +ordine +pulizia +espulsioni +italiani +ecco +video +vale +mille +discorsi +paese +fa +figli +paese +muore +soluzione +immigrazione +falso +immigrati +pagheranno +pensione +falso +numeri +mano +ecco +analisi +proposte +professor +gian +carlo +blangiardo +università +bicocca +milano +condividi +puoi +ripropongo +intervista +ieri +sera +onda +me +pare +essere +stato +chiaro +efficace +dite +girare +tace +complice +sempre +grazie +oriana +diretta +ponte +legno +insieme +mare +gente +perbene +state +dimartedì +la7 +fornero +invidio +solo +serenità +tosta +parla +riforma +gettato +disperazione +milioni +italiani +cazzola +stessa +bronzo +ricoveratelo +quinta +colonna +rete +governo +domani +mattina +concederei +nemmeno +mezzo +metro +quadro +comunità +islamiche +finché +firmano +nero +bianco +donna +diritti +uomo +capiti +casa +funziona +cosí +tranquilli +cercava +recuperare +soldi +biglietto +ministro +interno +innanzitutto +domani +mattina +attracca +nessuna +nave +carica +nuovi +schiavi +mezzo +la7 +unici +razzisti +italia +pd +razzisti +confronti +italiani +noiussoli +lacittadinanzanonsiregala +solo +italia +fregato +milioni +danno +mano +problema +30mila +euro +fisco +finito +statoladro +dibattito +flat +tax +domande +frequenti +passa +sistema +attuale +aliquota +unica +minuti +professor +maurizio +leo +propone +spiega +possibile +rivedendo +sistema +fiscale +logica +contribuenti +stato +ripartire +lavoro +andiamogovernare +profughi +offerti +coop +lavoratori +euro +mese +dedicato +lavori +italiani +vogliono +fare +sì +italiani +schiavi +tranquilli +diventerà +stile +vita +garantisce +boldrini +ripropongo +confronto +aprile +presidente +ong +medici +senza +frontiere +ieri +denunce +ridicolizzate +oggi +inchieste +stopinvasione +ogni +anno +aziende +italiane +perdono +giorni +lavoro +solo +adempimenti +burocratici +media +ocse +intervento +consiglio +prof +luigi +carbone +massimi +altro +esperti +italiani +semplificazione +amministrativa +spiega +abbattere +zavorra +tornare +correre +andiamoagovernare +sentite +cosa +dicono +andrea +orlando +andrea +romano +entrambi +pd +primo +ministro +giustizia +dice +lega +vuole +lasciare +annegare +persone +mare +secondo +deputato +sostiene +voglio +affondare +navi +ong +gente +bordo +vergognosi +bugiardi +dite +quereliamo +signora +anna +maestra +merlettaia +burano +venezia +lavoro +squadra +straordinario +arte +tramandare +giovani +intervista +mattina +rtl +spero +essere +stato +chiaro +secondo +quel +poveretto +spirito +conto +corrente +saviano +quindi +razzista +ignorante +farneticante +sgrammaticato +andiamo +governo +dopo +aver +bloccato +invasione +leviamo +inutile +scorta +dite +vuole +stare +deve +accettare +principio +molto +chiaro +semplice +primagliitaliani +visto +qualche +tg +diffondiamo +almeno +rete +napoli +zona +stazione +uomini +esercito +vengono +accerchiati +aggrediti +decine +immigrati +volevano +impedire +arresto +altro +ormai +guerriglia +urbana +basta +solidarietà +abitanti +quartiere +purtroppo +sindaco +ritrovano +amico +clandestini +centri +sociali +video +maggio +legami +ong +scafisti +lega +ragione +coraggioso +procuratore +zuccaro +ragione +insulti +presi +solo +pochi +mesi +fa +piddini +buonisti +vari +eventuali +bastapd +andiamoagovernare +risorsa +beccata +durante +blitz +altro +giorno +stazione +centrale +milano +ribella +insulta +sbava +ridotti +pazienza +polizia +sempre +grazie +facciamopulizia +andiamoagovernare +diretta +moschea +abusiva +via +cavalcanti +milano +estate +diventa +scuola +islamica +cittadini +giustamente +arrabbiano +controllore +razzista +povero +immigrato +parente +boldrini +http +bit +2vtdf6h +pazzesco +sudanese +anni +zigzagava +traffico +firenze +bici +rubata +vigile +ferma +tenta +immobilizzarlo +presunto +profugo +preziosa +risorsa +boldriniana +ruba +pistola +spara +colpi +poteva +essere +strage +dicono +buonisti +capiranno +oltre +ogni +limite +torino +uomo +anni +picchiato +ferocia +derubato +arrestati +marocchini +pluripregiudicati +già +decreto +espulsione +spalle +schifosi +delinquenti +italiani +già +abbastanza +altri +espulsione +immediata +galera +casa +buonisti +scandalizzano +me +povia +uomo +artista +coraggioso +stopinvasione +credo +minuti +efficaci +facciamoli +girare +serve +scienziato +capire +numeri +dite +stopinvasione +andiamoagovernare +onore +poliziotto +ventimiglia +balia +presunti +profughi +qualche +malpensante +sinistra +boldrini +condanna +agente +cerca +fare +lavoro +condizioni +impossibili +stopinvasione +grazie +nicola +porro +giornalista +uomo +libero +riconoscerci +flat +tax +stati +primi +parlare +oggi +discutono +tanti +dibattito +comunque +positivo +importante +arrivare +farlo +www +tassaunica +it +video +stato +già +visto +milioni +volte +condividere +inviare +immigrati +volta +manifestazione +cgil +calabria +lavoratori +italiani +però +allegri +bella +ciao +manca +mai +corre +pagarvi +pensione +fare +prima +prende +autostrada +roba +matti +roba +italia +pd +eccomi +pronto +rispondere +domande +cesenatico +romagna +risorsa +boldriniana +insegna +stile +vita +casa +fronte +storia +sandra +solo +vergognarsi +essere +cittadini +stato +domani +mattina +venerdì +lega +siena +organizza +presidio +sotto +tribunale +via +camollia +altro +difendere +diritti +sandra +muovendo +parlamentari +appello +presidente +consiglio +gentiloni +posizioni +politiche +entrano +solo +buon +senso +solo +aiutare +girare +parlano +crisi +economica +nessuno +parla +crisi +demografica +culle +vuote +saldo +nati +morti +negativo +immigrati +pagheranno +pensione +falso +soluzione +immigrazione +falso +numeri +altro +mano +ecco +analisi +alcune +proposte +salvarsi +chiarissimo +intervento +prof +gian +carlo +blangiardo +università +bicocca +milano +dovrebbe +essere +trasmesso +rai +reti +unificate +attendo +commenti +condividi +puoi +bravi +ragazzi +centri +sociali +manifestato +lunedì +sera +padova +ius +soli +suon +bottiglie +molotov +bombe +carta +polizia +solidarietà +agenti +feriti +certo +altro +massimo +bitonci +sindaco +evitato +voglio +sperare +strane +connivenze +qualche +consigliere +comunale +nuova +maggioranza +sinistra +immigrazione +giovani +lavoro +processi +bagnini +fascisti +libertà +pensiero +rispondere +giornalista +rai +dite +incredibile +cagliari +dirà +boldrini +tranquilli +appena +finita +bottiglia +risorsa +correrà +pagarvi +pensione +tolleranzazero +stopinvasione +quando +troppo +troppo +calabria +lunedì +tornerò +tappe +http +bit +2tx5rva +cittadini +denunciano +invasione +datemi +mano +bastapd +stopinvasione +qualche +minuto +dedicare +ripropongo +intervista +ieri +coffee +break +la7 +andiamoagovernare +spettacolo +ladispoli +roma +buon +lavoro +nuovo +sindaco +alessandro +grando +sempre +primagliitaliani +grande +interesse +progetto +governo +futuro +presentato +oggi +dialogo +giornalisti +stranieri +roma +risse +bande +risorse +boldriniane +nordafricane +trento +residenti +ovunque +vomito +schizzi +sangue +degrado +unica +soluzione +barcone +ripropongo +intervista +ieri +sera +onda +sembrata +abbastanza +chiara +efficace +dite +marea +gente +lega +adro +brescia +renzi +casaaaaa +delinquenti +risorse +boldriniane +fuga +oggi +pomeriggio +bologna +dopo +aver +rubato +valigie +alcuni +malcapitati +aspettando +autobus +lavori +italiani +vogliono +fare +bastapd +stopinvasione +dimentichiamo +geniali +parole +vedo +ora +votare +mandarla +casa +minorenni +rom +scuola +scippo +metropolitana +roma +ascoltate +luca +zaia +diretta +roma +riso +pesticidi +figli +no +ceta +trattato +libero +scambio +italia +canada +rischio +tutela +made +italy +sovranità +agroalimentare +rinunciamo +stopceta +bastapd +pensate +francia +vinto +marine +pen +detto +cose +macron +gridato +razzismo +fascismo +squadrismo +onesto +enricocipiace +macronno +pazzesco +italiano +paga +immigrato +no +grazie +ragazzo +documentato +realtà +chiesto +condividiamo +bastapd +basta +razzismo +verso +italiani +ennesima +rivolta +oggi +cuore +prato +pare +deperitissimi +ospiti +gradiscano +regole +centro +accoglienza +orari +ingresso +uscita +basta +risultato +altro +anni +governi +pd +letta +renzi +gentiloni +incapaci +complici +datemi +mano +stopinvasione +riprendiamoci +città +minuti +energia +emozioni +giovedì +sera +modena +park +grazie +vasco +immagini +by +matteo +salvini +pazienza +altro +ius +soli +ecco +priorità +andiamoagovernare +poi +pd +interroga +cause +sconfitta +video +vale +mille +analisi +abbraccio +signora +silvana +signor +giuseppe +tolleranzazero +andiamoagovernare +diretta +bruxelles +seguite +intervento +convegno +oltre +unione +europea +nuovo +modello +cooperazione +nazioni +sovrane +organizzato +gruppo +europa +nazioni +libertà +ripropongo +intervista +ieri +sera +bruno +vespa +porta +porta +potuto +spiegare +spero +chiarezza +proposte +governo +paese +andiamoagovernare +diretta +genova +buccisindaco +me +politica +sudore +ascolto +passione +fare +incontri +elettorali +consumarsi +suola +scarpe +solo +tv +facebook +risultati +poi +arrivano +renzi +candidiamo +conduttore +visto +prossima +stagione +andiamoagovernare +grazie +amici +qualche +minuto +commentare +storici +ballottaggi +ieri +andiamoagovernare +genova +città +libera +solo +vittorie +incredibili +grazie +andiamoagovernare +liberiamo +aquila +sistema +affari +potere +mancata +ricostruzione +periferie +frazioni +dimenticate +lavorare +imprese +aquilane +domenica +vota +biondisindaco +ancora +altro +grazie +ragazzi +salvini +settimane +fa +esordio +preso +quasi +avanti +fino +domani +sera +fino +ultimo +voto +domenica +tocca +invia +amici +vince +gentiloni +renzi +boschi +boldrini +piangono +iovoto +bastapd +primagliitaliani +diretta +spezia +sicambia +25giugno +stopinvasione +diretta +quartiere +lavatrici +pegli +genova +tante +periferie +dimenticate +sindaci +sinistra +entriamo +case +ascoltiamo +risolviamo +25giugno +pdacasa +domenica +iovoto +già +convinto +amici +andare +città +sicure +pulite +giuste +bastapd +primagliitaliani +salvini +hitler +salvini +cretino +salvini +semina +odio +facebook +deliranti +accuse +ieri +diretta +rai +santoro +idiozie +pagate +canone +vergogna +insultano +così +paura +dite +quereliamo +direi +sì +parlava +anni +massimo +bitonci +sgomberi +campi +rom +promessi +poi +fatti +padovani +sanno +domenica +25giugno +avanti +bitonci +intervista +mattina +radio +domenica +vinciamo +genova +sempre +stata +governata +sinistra +gentiloni +salta +auguro +nessuno +ciò +dovuto +subire +ragazza +siriana +cittadinanza +merita +certamente +alcuni +nati +italia +soprattutto +certi +politici +vorrebbero +regalarla +biglietto +omaggio +visto +monsignor +galantino +segretario +vescovi +italiani +fa +politica +attaccando +lega +dire +ignobili +gazzarre +parlamento +invito +confronto +pubblico +proporrei +soluzioni +altro +chiesa +accoglie +gratis +rinunciando +introiti +immigrazione +oppure +galantino +fa +parte +magari +dimettendosi +noiussoli +lacittadinanzanonsiregala +stazione +verona +belle +risorse +immigrate +ripuliamo +sboarina +sindaco +25giugno +quando +guardia +finanza +entra +campi +rom +trova +soldi +oro +orologi +macchine +contanti +presenti +studio +martedì +casa +possono +permettere +altro +italiani +mettono +fila +casa +popolare +altri +cittadini +po +regole +po +ordine +po +giustizia +zero +tolleranza +verso +furbi +sbaglio +25giugno +pdacasa +quartiere +san +teodoro +genova +spaccio +furti +occupazioni +abusive +case +frana +incombente +anni +pd +cosa +fatto +unici +razzisti +italia +pd +razzisti +confronti +italiani +noiussoli +lacittadinanzanonsiregala +cittadinanza +italiana +biglietto +luna +park +vanno +bene +nuovi +italiani +video +dice +donna +sottomessa +vuole +invece +uomo +può +fare +vuole +noiussoli +lacittadinanzanonsiregala +renziacasa +vergognoso +milioni +italiani +poveri +milioni +italiani +disoccupati +pd +pensa +regalare +cittadinanza +immigrati +lega +unica +speranza +noiussoli +lacittadinanzanonsiregala +oggi +stato +primo +ladro +produce +arriva +chiedere +fino +tassa +unica +funziona +paesi +mondo +programma +theresa +may +donald +trump +italia +serve +rivoluzione +fiscale +altro +cambiare +nome +equitalia +numeri +risposte +tutte +domande +www +tassaunica +it +benvenuti +zingarauto +ricambi +concessionaria +mercedes +audi +prezzi +stracciati +tranquilli +regolari +fattura +intestate +madre +dice +venditore +roba +matti +tolleranzazero +altro +finanziamenti +casa +lavoro +rom +equitalia +renzi +solo +cambiato +nome +fregarci +meglio +italiani +scemi +finché +stato +primo +pagare +migliaia +fornitori +restituire +rimborsi +iva +irpef +tempi +decenti +permette +entrare +conti +correnti +cittadini +basta +statoladro +25giugno +renziacasa +scommessa +allargare +battaglia +proposta +lega +solo +penalizza +nord +anzi +coinvolge +tanti +nuovi +elettori +tutte +regioni +riempie +emozione +grazie +altro +italiani +dato +fiducia +nord +sud +girerò +città +città +mercato +mercato +quartiere +popolare +quartiere +popolare +confermare +aumentare +fiducia +progetto +sindaci +ballottaggi +25giugno +renzi +fissa +date +estive +votare +minor +numero +persone +possibile +domani +impegnato +nuovo +giro +decine +decine +piazze +ambizione +riportare +votare +ballottaggi +giugno +almeno +parte +metà +elettori +perso +speranza +rimane +casa +troverete +tutte +informazioni +pagina +sezione +eventi +cambiare +può +floris +chiesto +lega +piace +dato +risposta +secondo +così +disse +missionario +salvini +date +miliardi +africa +costruiamo +pozzi +acqua +strade +ospedali +spesi +italia +soldi +arricchiscono +malavita +organizzata +altro +riempiono +nuovi +schiavi +giovani +maschi +sottratti +sviluppo +paesi +origine +cosa +umanitario +invasione +sconfitta +sindaco +pd +renzi +lampedusa +ipocrisia +sinistra +scontrata +vita +reale +ricordo +mamma +sì +bene +accoglienza +premi +viaggio +obama +poi +devo +spendere +20mila +euro +partorire +isola +servizi +altezza +primagliitaliani +giugno +investirete +minuti +scegliere +sindaco +cambiare +può +renzi +dice +vinto +elezioni +governo +gentiloni +durerà +fino +pd +conoscono +vergogna +stopinvasione +elezionisubito +25giugno +partito +poltrone +vuole +rinviare +elezioni +anno +prossimo +gentaglia +parlamento +casa +domani +vota +lega +san +siro +davide +van +sfroos +modello +stelle +rom +euro +affittare +casa +romani +calcio +sedere +domenica +quando +votate +comune +pensateci +lega +unica +speranza +primagliitaliani +diretta +periferia +alessandria +quartiere +cristo +case +popolari +occupate +indovinate +autobus +presi +sassate +spaccio +droga +casa +pd +pulizia +gliel +detto +no +vergogna +italiani +massacrati +legge +fornero +zero +scuse +proposte +buon +senso +pd +comunque +fatica +capire +italia +viene +preso +solo +ladri +rapinatori +serve +sostenere +dare +risorse +forze +altroordine +galera +dev +essere +galera +austria +obbligo +viene +condannato +via +definitiva +lavorare +carcere +modo +ripagare +costi +sostenuti +stato +detenuti +stranieri +devono +essere +rispediti +scontare +pena +casa +serve +legge +normale +follie +renzi +amici +legittima +difesa +sempre +legittima +verona +qualche +minuto +insieme +incredibile +giocatori +arabia +saudita +trasferta +australia +rifiutano +partecipare +minuto +silenzio +vittime +londra +dialogo +può +avere +islam +vergognatevi +fate +girare +nessuna +tivù +vedere +immagini +poltronari +votano +legge +elettorale +vogliono +rinviare +elezioni +schifo +problemi +italiani +immigrazione +tasse +disoccupazione +pensa +solo +poltrona +elezionisubito +moschee +finanziate +soldi +qatar +roba +matti +lega +governo +nemmeno +mezzo +metro +quadro +lontanamente +sospettabile +fiancheggiare +terrorismo +islamico +solo +tarato +mentale +può +sostenere +legittima +difesa +legittima +solo +notte +aiutatemi +liberare +italia +idiozia +pd +credevo +europa +sistema +integrazione +fallito +ascoltate +testimonianza +ragazzo +vive +londra +fortuna +salvarsi +ultima +strage +nome +allah +solo +ciechi +complici +vedono +realtà +immagini +incredibili +litigavano +decidere +doveva +pagarvi +pensione +ennesima +rissa +risorse +bivaccanti +mattina +stazione +padova +piace +bel +modello +immigrazione +altro +senza +regole +senza +controlli +smettete +leggere +uscite +pagina +troverete +meglio +renzi +boldrini +piddini +vari +invece +fa +schifo +domenica +arma +voto +massimo +bitonci +padova +comuni +vota +sindaci +sostenuti +lega +salvini +nord +sud +metto +tutta +datemi +mano +tolleranzazero +primagliitaliani +terroristi +passaporto +italiano +mafiosi +vogliono +uscire +galera +arrendo +casa +governo +domani +mattina +concederei +nemmeno +mezzo +metro +quadro +comunità +islamiche +finché +firmano +nero +bianco +donna +diritti +uomo +capiti +casa +funziona +cosí +tanta +splendida +gente +incontrata +scorso +weekend +lombardia +emilia +romagna +veneto +questadomenica +votalega +votanoiconsalvini +basta +spreconi +pensare +aumentare +iva +momento +crisi +economica +ricovero +coatto +obbligassero +tutte +venti +regioni +italiane +comprese +statuto +speciale +spendere +stessa +cifra +fare +stessa +cosa +risparmierebbero +miliardi +anno +insieme +capire +juve +vince +diretta +marliana +pistoia +albergo +stelle +presunti +profughi +vogliono +pure +aver +ragione +stopinvasione +salvini +serio +persona +seria +dice +giornalistone +corriere +solo +me +difesa +sempre +legittima +permette +dovrebbe +essere +super +partes +candidi +boldrini +eleggere +mercato +monza +spettacolo +tanta +gente +voglia +cambiare +puoi +dare +mano +voto +11giugno +vomito +qualche +minuto +investire +vale +pena +vedere +servizio +altro +accoglienza +sfruttamento +schiavismo +mangiare +solite +coop +minniti +gentiloni +altro +prefetti +sveglia +occuperà +qualcuno +istituzioni +andrò +personalmente +centro +immigrati +foggia +chiederò +sigillare +vergogna +purtroppo +famigerato +ex +villaggio +olimpico +torino +stato +molte +volte +aggressione +diretta +troupe +quinta +colonna +vivono +abusivamente +centinaia +presunti +profughi +altro +richiedenti +asilo +italiano +entri +rischi +mandino +ospedale +magari +cimitero +tollerabile +interi +quartieri +città +mano +delinquenti +stupisce +magari +poi +qualcuno +dicono +buonisti +radicalizzi +date +mano +lega +tolleranzazero +11giugno +pazzesca +aggressione +diretta +tivù +troupe +parte +cerca +documentare +invasione +stazione +tiburtina +roma +schifo +lega +governo +tolleranzazero +ve +garantisco +regione +liguria +lega +primo +partito +maggioranza +approvato +legge +piacerebbe +estendere +tutta +italia +avere +casa +popolare +devi +essere +residente +qua +almeno +anni +arrivato +altro +ieri +metti +fila +prima +arrivano +italiani +qualche +minuto +insieme +case +popolari +prima +italiani +pd +protesta +attacca +lega +razzista +rispondiamo +porterò +piazza +santeramo +cuore +grazie +amici +immagini +ve +mostrerà +nessun +telegiornale +fortuna +rete +intervista +stamattina +rtl +tanti +messaggi +ricevuti +tanti +temi +toccati +possibilità +spiegare +spero +chiarezza +proposte +governo +paese +votosubito +intervista +ieri +mattina +sky +tg +penso +essere +stato +abbastanza +chiaro +votosubito +afferma +possibile +espellere +immigrati +clandestini +complice +volontà +può +fare +vedo +ora +essere +governo +fermare +invasione +stopinvasione +pazzesco +spaccio +droga +vendita +cellulari +rubati +accoltellamenti +prima +stazione +centrale +milano +dedicato +poverini +possono +fare +blitz +violenti +marce +migranti +tolleranzazero +portafoglio +pieno +danno +imbecilli +chiede +semplicemente +po +regole +rispetto +voto +pd +forza +italia +astensione +stelle +europa +votato +reinserimento +sociale +combattenti +islamici +secondo +vanno +aiutati +poverini +parte +italia +ammazza +decapita +sgozza +siria +poi +torna +casa +posto +galera +altro +reinserimento +panino +milza +preparazione +diretta +quartiere +zen +palermo +mamme +coraggiose +arrendono +ismaele +vardera +sindaco +insieme +compagnia +cigni +qualche +minuto +insieme +sempre +preferiate +boldrini +fornero +protestano +bloccano +paese +tranquilli +pagheranno +pensione +soprattutto +incappucciato +stopinvasione +votosubito +prime +ore +mattina +centinaia +preso +ostaggio +paese +bagnoli +padova +vicino +ex +base +militare +ospita +marzo +donna +stata +aggredita +picchiata +altromigrante +tentato +violentarla +finti +profughi +vero +business +bomba +sociale +basta +assistere +ospitare +scappa +veramente +guerra +altri +espulsione +senza +senza +date +mano +rimediare +disastri +pd +votosubito +miliardario +spuculatore +george +soros +inizio +mese +incontrato +gentiloni +palazzo +chigi +dona +milioni +milioni +riempire +italia +immigrati +farla +diventare +meticcia +blocchiamoli +prima +tardi +gente +arrabbiando +votosubito +fornero +invidio +solo +serenità +tosta +parla +riforma +gettato +disperazione +milioni +italiani +cazzola +stessa +bronzo +ricoveratelo +terrorismo +no +terrorismo +islamico +guerra +risponde +guerra +possono +esistere +sacche +fanatismo +illegalità +casa +tolleranzazero +amici +sentite +osceni +signore +sturi +orecchie +immigrati +regolari +fratelli +clandestini +vuole +accolga +visto +tanto +buono +soccorri +salvi +poi +scelte +porti +italia +tranne +sicilia +disturbare +g7 +potenti +riporti +venuti +vengano +dirci +altro +può +fare +visto +navi +ong +già +vanno +prendere +acque +libiche +fugge +guerra +fratello +venire +aereo +diritto +fuori +italia +casa +lavoro +nemmeno +italiani +sbaglio +ecco +video +mostrato +ieri +parma +storia +futuro +lega +tanti +chiesto +uniti +forti +liberi +emozionati +cuore +fa +parte +così +grande +splendida +comunità +congressolega +vaccini +vaccinato +figli +togliere +bimbi +genitori +permettere +libertà +scelta +solo +ricchi +follia +sinistra +italiana +grazie +w +lega +diretta +parma +aspettando +congresso +domani +aspetto +ingresso +libero +tessera +lega +tranne +scafisti +buonisti +clandestini +scusate +linea +migrante +caduta +ora +marcia +migranti +roba +matti +bella +marcia +diritti +italiani +ecco +video +ismail +tommaso +ben +yousef +hosni +già +arrestato +droga +accoltella +poliziotti +militari +purtroppo +pd +bella +persona +domani +piazza +milano +marcia +migranti +detto +riduco +tasse +tasse +aumentate +detto +rilancio +lavoro +disoccupazione +aumentata +detto +blocco +immigrazione +sbarchi +moltiplicano +renzi +dovrebbe +farsi +altro +parte +insieme +boschi +tutta +compagnia +governo +tanto +intercettazioni +vicende +famigliari +penseranno +giudici +mentito +fallito +votosubito +qualche +minuto +insieme +possiamo +vincere +stazione +centrale +milano +calcetto +calcinculo +risposta +fregano +milioni +disoccupati +pensano +solo +banchieri +immigrati +europa +glielo +detto +minuti +verità +tivù +giornali +nasconderanno +aiutaci +farli +girare +bacheche +amici +minuti +asfaltato +amico +fornero +vitalizi +accusa +imbrogliare +italiani +bastaaaaa +modena +profughi +cappellino +telefonino +corteo +bloccano +viali +trattati +male +senza +documenti +possono +sempre +tornare +casa +credo +italiani +sí +trattati +altro +malissimo +anni +governi +sostenuti +pd +possano +veramente +dite +esagero +stopinvasione +primagliitaliani +diretta +milano +qualche +minuto +grazie +ora +avanti +liberiamo +paese +tradisce +torni +essere +paese +fondato +lavoro +business +immigrazione +clandestina +sempre +liberarci +vincere +solidarietà +pista +cammina +acquistare +nuovo +acceleratore +lineare +curare +malati +tumore +ospedale +san +gerardo +monza +sabato +maggio +autodromo +monza +potete +siateci +altro +aiutiamo +associazione +cancro +primo +aiuto +onlus +onoro +essere +vicepresidente +beneficenza +arriva +direttamente +malati +bisogno +viva +mamme +viva +alpini +viva +lega +militante +lega +vuoi +continui +fare +segretario +prossimi +anni +domenica +aspetto +voto +lega +unita +forte +libera +vincente +domenicavotasalvini +info +sedi +voto +http +www +leganord +org +regolamentocongresso +intanto +sbarcano +sbarcano +sbarcano +grazie +grande +vittorio +feltri +ancheluivotasalvini +accoglierne +ancora +italia +milioni +italiani +momento +vivono +sotto +soglia +povertà +mettiamoci +accordo +volta +tutte +scappa +guerra +sì +altri +no +qualche +minuto +insieme +stop +invasione +mirco +basconi +carabiniere +condannato +anno +galera +intercettando +auto +rubata +banditi +albanesi +bordo +sparato +gomme +fermali +proiettile +rimbalzo +ucciso +ladri +nemmeno +carabiniere +può +usare +arma +difendere +sé +stesso +colleghi +paese +viviamo +mezz +oretta +compagnia +scrivete +pure +parli +mai +crimini +italiani +scusate +fatto +già +delinquenti +parecchi +sembra +buon +motivo +farne +arrivare +resto +mondo +sbaglio +poco +diretta +rai +giletti +crozza +fa +ancora +ridere +qualche +minuto +insieme +quasi +buio +aggrediscono +potete +difendervi +blitz +anti +spaccio +stazione +milano +prendete +nota +parole +educatore +accoglienza +dice +vero +niente +dobbiamo +vergognarci +pena +minuto +video +numeri +ufficiali +sbarcati +veri +profughi +solo +solo +complice +può +negare +invasione +sostituzione +popolo +corso +solidarietà +inviata +matrix +francesca +parisella +aggredita +ieri +sera +insieme +troupe +davanti +stazione +termini +roma +mentre +proprio +lavoro +aiutata +tassista +bene +altro +abbraccio +compatimento +invece +buonisti +complici +parlando +blitz +altro +giorno +stazione +milano +preoccupano +degrado +criminalità +attenti +bene +fatto +interventi +ordine +pubblico +totalmente +fuori +luogo +tirano +volata +salvini +dichiara +tale +corrado +mandreoli +oggi +repubblica +ricovero +pd +cittadino +può +difendersi +solo +aggredito +notte +giorno +pomeriggio +lecito +orgoglioso +aver +gridato +vergogna +governo +arma +delinquenti +difende +cittadini +legittimadifesasempre +zuccaro +impossibile +ospitare +italia +migrazione +carattere +economico +giudice +coraggioso +lasciatelo +lavorare +iostoconzuccaro +diretta +terni +cittadini +arrabbiati +sindaco +pd +arrestato +elezioni +subito +tema +immigrazione +stelle +peggio +pd +renzi +parlano +bene +razzolano +malissimo +spiego +consiglio +minuti +memorabili +salvini +vergogna +italia +neonazista +fascista +unica +soluzione +te +solo +piazzale +loreto +anti +clandestini +anti +spacciatori +continuerò +esserlo +coppia +omosessuale +può +crescere +ragazzo +handicap +frase +attribuisce +prezioso +artista +ancora +piacere +conoscere +gruppo +stato +sociale +altro +concertone +1° +maggio +capisco +ogni +occasione +buona +insultare +salvini +almeno +attacchi +cose +dico +realmente +comunque +meglio +andré +blitz +polizia +stazione +centrale +milano +controlli +immigrati +presenti +metropolitana +treni +compresi +dopo +tante +denunce +lega +speriamo +volta +buona +stop +invasione +pulizia +ancora +centro +immigrati +mineo +diretta +porto +augusta +siracusa +solo +sbarcati +clandestini +stopinvasione +diretta +spezia +insieme +cittadini +pescatori +diretta +piombino +dese +padova +marea +gente +lega +ong +scafisti +ascoltate +attentamente +dice +carmelo +zuccaro +procuratore +capo +catania +lega +denuncia +anni +quando +governo +business +schifoso +fermiamo +stopinvasione +votosubito +italia +penultima +crescita +pil +europa +persino +grecia +andata +meglio +soluzione +abbassare +abbassare +abbassare +drasticamente +tasse +cancellare +legge +fornero +altro +lasciato +fuori +giovani +mondo +lavoro +tenendo +inchiodate +persone +fino +anni +fare +infermiere +muratore +camionista +poliziotto +solo +così +torneremo +crescere +certo +affamando +gente +mini +lavori +tedesca +euro +mese +marine +pen +preso +milioni +mezzo +voti +operai +artigiani +agricoltori +gran +parte +mondo +produttivo +programma +chiaro +lavoro +pensioni +anni +età +anni +altro +contributi +made +france +made +italy +difendere +pesca +agricoltura +produzioni +locali +concorrenza +sleale +controllo +solo +uomini +merci +propone +lega +impedire +aziende +soldi +pubblici +chiudere +delocalizzare +assumere +estero +minuti +dire +vergognatevi +europa +occupano +diritti +rom +migranti +fregano +milioni +giovani +disoccupati +girare +rete +tanto +tutte +tivù +censureranno +grazie +legittimadifesasempre +state +diretta +verona +legittimadifesasempre +voglia +parlare +ecco +video +risorse +boldriniane +oggi +milano +aggressori +nordafricani +chiesto +permesso +soggiorno +motivi +umanitari +espulsionidimassa +milioni +mezzo +italiani +poveri +credo +occorra +prima +pensare +tetto +casa +futuro +perso +speranza +sbaglio +cari +buonisti +ricordo +tanti +immigrati +altro +arrivati +qua +regolarmente +mandano +figli +scuola +rispettano +usanze +meritano +essere +accomunati +marmaglia +infesta +città +pubblico +martedí +sembrava +accordo +buon +lavoro +forum +economico +internazionale +inizia +oggi +yalta +crimea +sanzioni +russia +misconocimento +legittima +richiesta +crimeana +danno +solo +mosca +tutta +impresa +italiana +lì +tanto +fare +mentre +boldrini +adotta +agnellini +piacerebbe +parlamento +approvasse +legge +macellazione +rituale +islamica +qualche +minuto +insieme +milanistan +diretta +milano +parole +sufficienti +abbraccio +hellen +lotto +portare +italia +giustizia +certezza +pena +delinquenti +massacrato +ragazza +solo +progetto +galera +lavori +forzati +via +chiave +cos +testa +pd +ritrovi +malvivente +casa +armato +stendi +prima +stenda +te +figlio +esiste +eccesso +legittima +difesa +interno +altro +proprietà +privata +verona +aprile +migliaia +persone +perbene +stufi +garantiti +aggressori +aggrediti +ucciso +cacciavite +immigrato +senza +permesso +soggiorno +pluripregiudicato +abbraccio +signora +giuliana +preghiera +carlo +colpevole +dovrebbe +marcire +galera +stato +altro +condannato +soli +anni +mamma +teme +cassazione +possa +essere +addirittura +assolto +espulsioni +tolleranza +zero +prevenire +tragedie +paese +consente +ingiustizie +paese +civile +pd +governa +anni +20mila +delinquenti +liberati +500mila +profughi +quasi +finti +spero +risponderanno +presto +fronte +italiani +votosubito +svezia +reagiscono +sangue +cadaveri +straziati +tir +guidato +finto +profugo +terrorista +festa +amore +spot +roba +matti +chiudiamo +occhi +arrendiamoci +girare +europa +diventi +eurabia +italia +delinquenti +devono +sapere +sbaglia +paga +oggi +invece +gran +parte +franca +viene +beccato +galera +poco +niente +vita +sacra +proprietà +altro +privata +concetto +così +difficile +capire +pd +intanto +slavo +ammazzato +barista +budrio +guardia +ecologica +ferrarese +gira +ancora +libero +risorsa +africana +minaccia +passanti +armato +coltelli +poliziotti +costretti +intervenire +sparano +gambe +arrestarlo +esagerato +no +fatto +bene +siria +stoccolma +semina +missili +raccoglie +morti +tranquilli +italiani +pagheranno +pensioni +botte +assalto +furgone +cibo +caserma +serena +treviso +stazionano +oltre +presunti +profughi +risse +atti +delinquenza +gratuita +altro +provocazioni +forze +ordine +fomentato +bravi +ragazzi +centri +sociali +zona +piace +modello +sviluppo +italia +stopinvasione +facciamopulizia +italiano +italiana +estero +vuoi +fare +rete +solo +online +persona +costruire +progettare +insieme +scrivi +leganelmondo +gmail +com +aspetto +bisogno +ripetiamo +insieme +pd +tivù +dicono +cosa +parlamento +altra +esiste +reato +eccesso +legittima +difesa +esiste +reato +eccesso +legittima +difesa +altro +esiste +reato +eccesso +legittima +difesa +accordo +facebook +basta +vediamo +aprile +palaolimpia +verona +migliaia +uomini +donne +liberi +aspirano +vivere +paese +sicurezza +certezza +pena +optional +amici +solo +seguite +pagina +bacio +marine +pen +forza +marine +marineprésidente +solo +diretta +alsazia +comizio +marine +pen +minuti +massacrati +servi +europa +possono +minacciarmi +vogliono +taccio +viva +rete +libertà +ferma +nessuno +condividi +puoi +giornali +tivù +nasconderanno +luigi +anni +combatte +riavere +indietro +casa +occupata +abusivamente +rom +nemmeno +entrare +normale +roba +matti +qualche +minuto +insieme +strasburgo +sicurezza +quando +governo +rimediare +disastri +pd +basta +indulti +svuotacarceri +basta +sconti +serve +certezza +pena +lavoro +obbligatorio +carcere +altro +austria +legittima +difesa +sempre +comunque +mesi +servizio +civile +militare +obbligatorio +base +regionale +nozioni +protezione +civile +primo +soccorso +addestramento +uso +arma +espulsione +massa +centinaia +migliaia +persone +venute +italia +solo +delinquere +può +difende +propria +vita +colpevole +omicidio +dice +catechismo +me +verona25aprile +legittimadifesasempre +aspettando +canale +pazzesco +risorsa +opera +mattina +piazza +cavallotti +mantova +luogo +tempo +tranquillo +purtroppo +pesce +aprile +cittadini +scrivono +anni +zona +teatro +spettacoli +altro +insegna +alcolismo +senza +limiti +ora +dare +bella +ripulita +dite +bastadegrado +bastapd +facciamopulizia +intercettazioni +aspiranti +terroristi +islamici +volevano +saltare +ponte +rialto +venezia +domani +giuramento +danno +ordine +obbligato +ucciderli +venezia +guadagniamo +subito +paradiso +belle +persone +prendendo +casa +falso +made +italy +costa +miliardi +euro +anno +invece +prendersela +trump +putin +italia +europa +difendano +prodotti +ricordate +ladre +rom +giudice +messo +domiciliari +camper +milano +vivevano +figli +piccoli +continuavano +rubare +nulla +finalmente +state +arrestate +altro +polizia +portate +carcere +applausi +abitanti +quartiere +potevano +eppure +scommetto +qualche +buonista +dirà +poverine +bimbi +piccoli +piuttosto +poveri +bimbi +madri +genere +facciamopulizia +pazzesco +minuti +guardate +condividete +video +ragione +avere +qualche +preoccupazione +società +senza +figli +futuro +pur +rispetto +altroislamizzazione +italia +europa +arrendo +governo +prima +famiglie +prima +cultura +prima +lingue +prima +civiltà +primagliitaliani +liberiamo +palermo +ismaelesindaco +dimenticate +piace +www +facebook +com +ismaelesindaco +invece +perseguitare +commerciante +artigiano +imprenditore +partita +iva +fanon +andare +avanti +vorrei +stato +andasse +recuperare +oltre +milioni +euro +dovuti +società +spostato +residenza +estero +fregando +fisco +italiano +parlano +numeri +mila +sbarcati +mila +domande +solo +riconosciuti +fuga +guerre +bombe +guardia +finanza +vada +verificare +bilanci +coop +associazioni +onlus +buone +scafisti +arricchendosi +immigrazione +clandestina +eppure +difficile +capire +numeri +dicono +euro +moneta +avvantaggiato +solo +tedeschi +fregato +resto +europa +oltreleuro +vita +www +bastaeuro +org +efe +jerry +ogboru +profugo +aspirante +rapper +mantenuto +spese +italiani +bagnoli +padova +facebook +scriveva +altre +cose +legge +arrestato +accusa +tentato +stupro +riguarda +rispedito +subito +galera +nigeria +sperando +buttino +chiave +poletti +dimettiti +girare +sostituzione +popolo +ecco +cosa +nasconde +dietro +retorica +boldrini +buonisti +casa +condividere +guardate +servizio +coop +usa +immigrati +gratis +ristrutturarsi +albergo +roba +matti +proprio +oggi +pomeriggio +biella +piazza +santa +marta +aspetto +qualche +minuto +insieme +stanco +contento +live +splendida +lampedusa +sbarchi +morti +anni +accoglienza +vergogna +pare +normale +europa +nulla +invasione +clandestini +mantenga +demenziali +sanzioni +russia +unica +potenza +isis +combatte +veramente +foraggi +miliardi +turchia +altro +promette +guerre +sante +casa +purtroppo +poi +dimostra +londra +atti +guerra +avvengono +veramente +populisti +affermare +europa +ribaltare +cima +fondo +buon +viaggio +mitico +mago +zurlì +cino +tortorella +amico +infanzia +protagonista +tivù +bella +intelligente +ripropongo +mitica +gatti +erdogan +turchi +europa +fate +figli +così +comanderemo +ministro +esteri +turco +inizieranno +guerre +sante +europa +unione +europea +cosa +fa +regala +turchia +miliardi +euro +altro +terrorismo +colonizzazione +progetto +eurabia +oriana +fallaci +già +lucidamente +previsto +vanno +combattuti +innanzitutto +complici +casa +roma +bruxelles +insieme +alleati +europei +sempre +prima +linea +primi +video +attacco +terroristico +oggi +londra +ucciso +infame +attentatore +preghiera +innocenti +ammazzato +finora +contano +purtroppo +poliziotti +guardia +parlamento +venti +persone +ferite +città +sconvolta +basta +chiunque +usi +violenza +messo +angolo +dicono +però +salvini +no +però +certi +cosiddetti +democratici +pacificità +civiltà +rispetto +città +arredo +urbano +manifestazioni +lega +solo +imparare +milano +ostaggio +comunità +sembrano +intenzionate +integrarsi +schifo +troppa +gente +delinque +salvini +no +dice +stilista +alviero +martini +aggredito +rapinato +immigrati +est +pieno +centro +pieno +giorno +dedicato +reati +diminuiti +no +marmellata +pensiero +unico +sì +confronto +idee +aperte +iscrizioni +terza +edizione +scuola +formazione +politica +domeniche +sottrarre +tempo +vale +pena +altro +penso +conosco +creo +andiamoagovernare +tutte +info +http +www +scuoladiformazionepolitica +it +scuola +formazione +politica +ospedale +fondato +giuseppe +verdi +villanova +arda +provincia +piacenza +eccellenza +sanità +purtroppo +rischio +dare +voce +cittadini +comitati +pazienti +roba +matti +garantisco +quando +governo +posto +librandi +amici +pd +made +italy +lavoro +sicurezza +legittima +difesa +tanto +altro +ancora +esattamente +contrario +pensano +rischi +mestiere +mette +pericolo +vita +altri +consiglio +particolare +ascoltare +parole +vescovo +chioggia +monsignor +adriano +tessarollo +legittimadifesasempre +verona25aprile +tanti +chiacchierano +necessità +cambiare +atteggiamento +verso +europa +poi +muovono +dito +insieme +nord +sud +andiamo +bruxelles +riprenderci +chiavi +casa +minuti +presente +inutile +gentiloni +sputtano +europa +banchieri +finanzia +regime +turco +rovina +imprese +lavoratori +tivù +censureranno +aiutaci +condividi +italia +serve +certezza +pena +sbagli +paghi +modello +west +pacifica +svizzera +cittadini +addestrati +stato +uso +armi +criminalità +quasi +altro +inesistente +ladro +prima +entrarti +casa +pensa +volte +entri +piedi +esci +steso +te +andata +cercare +devo +essere +processato +accordo +legittimadifesasempre +verona25aprile +ribadiamolo +volta +tutte +turchia +mai +europa +strasburgo +racconto +demenziali +nuove +norme +parlamento +europeo +scusa +isis +complicano +vita +vuole +acquistare +detenere +arma +voti +pd +stelle +forza +italia +legittimadifesasempre +evviva +integrazione +diretta +napoli +idee +cuore +coraggio +seguite +amici +primagliitaliani +ascoltare +condividere +volete +difendervi +dovete +fare +prima +indagine +notturna +capire +aggredendo +mettendo +rischio +vita +dice +salvini +avvocato +giulia +altro +bongiorno +spiega +perfettamente +assurdità +legislazione +italiana +sveglia +proposta +legge +lega +n +legittima +difesa +sempre +giace +parlamento +febbraio +napoli +rappresentata +pochi +facinorosi +domani +forze +ordine +ringrazio +grado +fare +benissimo +lavoro +nessuno +riuscirà +rovinare +giornata +festa +proposta +altro +liberazione +ancora +pochi +posti +disponibili +aspetto +domani +tante +mamme +papà +bambini +occasione +gioia +odio +partecipa +scrivi +evento +napoli +noiconsalvini +org +salvini +inneggia +morte +migliaia +uomini +donne +bambini +mediterraneo +querelina +arrivo +signore +proposta +lega +parlamento +qualunque +azienda +preso +denaro +pubblico +può +permettersi +licenziare +italia +assumere +estero +vale +fiat +preso +miliardi +stato +tutte +altre +accordo +primagliitaliani +basta +buonismo +coccole +delinquenti +entri +casa +fare +male +difendo +ogni +mezzo +esci +piedi +problema +cittadini +rivolta +zerman +mogliano +veneto +profughi +ospitati +zona +preso +abitudine +usare +bagni +cimitero +senza +troppi +riguardi +ascoltate +testimonianza +w +integrazione +kompagni +sinistri +vari +organizzano +manifestazione +maiconsalvini +originaloni +sabato +napoli +dare +voce +orgoglio +sud +vuole +riprendere +mano +proprio +futuro +storia +vigile +fuoco +prima +linea +aiuto +terremotati +renzi +pd +danno +bonus +riprendono +colpo +solo +bastapd +votosubito +fa +bestia +facciamopulizia +votosubito +renziani +renziani +pd +pd +gole +profonde +tessere +finte +fughe +notizie +intanto +parlamento +governo +fermi +pare +normale +condividi +pensi +ora +dire +bastapd +votosubito +ascoltate +fenomeno +circondato +migranti +telefonino +cappellino +evidentemente +molto +patiti +marzo +cacceremo +salvini +razzisti +merda +differenza +scappa +altro +guerra +viene +cercare +lavoro +accogliamo +sfigati +altro +sabato +marzo +palacongressi +napoli +migliaia +dire +primagliitaliani +vuoi +partecipare +scrivi +evento +napoli +noiconsalvini +org +iene +portano +bene +sfiderà +renzi +grillo +programma +italiani +deciderlo +sicuramente +alfano +verdini +cicchitto +casini +né +né +lega +amici +parenti +alleati +indagati +condannati +governo +bloccato +parlamentari +incatenati +poltrona +problemi +italiani +possono +aspettare +basta +cosa +deve +succedere +ancora +vada +votare +votosubito +qualche +minuto +insieme +maroni +zaia +rixi +modello +buon +governo +regioni +modello +buon +governo +paese +vivere +carovana +rom +sotto +casa +manderei +fare +giro +certi +sinistri +buonisti +immigrati +lavori +italiani +vogliono +fare +bum +offro +buonisti +prezzo +secondo +urlano +sempre +dannati +benvenuti +magico +mondo +professor +cecchi +paone +soluzione +italia +mila +immigrati +anno +altrimenti +futuro +vada +raccontare +milioni +disoccupati +italiani +risposto +rime +fatto +male +primagliitaliani +vive +altri +pianeti +certe +cose +succedono +altri +buonisti +quando +succede +te +ditelo +papà +vietato +usare +termine +clandestino +abbraccio +felice +tavernelli +pensiero +preghiera +altro +federica +uccisa +delinquente +besik +jikidze +già +espulso +dunque +doveva +essere +italia +politica +deve +intervenire +prima +accadano +tragedie +simili +certezza +pena +certezza +espulsioni +priorità +governo +votosubito +tizio +dice +odio +salvini +pensa +aver +capito +invece +odio +proprio +nessuno +apprezzo +tanti +stranieri +perbene +lavorano +rispettano +leggi +cultura +altro +migliaia +immigrati +vengono +pretendere +magari +delinquere +chiamo +clan +sti +ni +condannatemi +pure +condannato +anni +mesi +mila +euro +risarcimento +famiglia +delinquente +moldavo +tentato +derubarlo +nottetempo +aggredendolo +condanna +verrà +confermata +appello +altro +tabaccaio +dovrebbe +chiudere +attività +follia +cosa +aspetta +parlamento +discutere +proposta +legge +lega +n +febbraio +difesa +sempre +legittima +iostocoltabaccaio +minuti +dedicati +rosiconi +nazifascisti +razzisti +pericolosi +estremisti +pubblico +applaudivano +girare +buonisti +kompagni +mamma +david +assassino +già +espulso +ancora +italia +amine +aassoul +detto +‘aziz +marocchino +ubriaco +drogato +uccise +david +raggi +strada +conficcandogli +altro +coltello +gola +dovuto +trovarsi +umbria +né +tantomeno +italia +richiedente +asilo +parolina +magica +senza +averne +diritto +fedina +penale +lunga +pagine +eppure +circolava +libero +famiglia +david +denunciato +motivo +ministero +interno +giustizia +delinquente +condannato +anno +scorso +anni +carcere +salvato +ergastolo +già +vergogna +ora +aggiunge +altra +stato +vuole +riconoscere +famiglia +alcun +risarcimento +stato +devoluto +beneficenza +motivo +povero +david +guadagnava +11mila +euro +anno +dico +solo +fate +schifo +certezza +pena +espulsione +senza +senza +clandestini +delinquenti +stato +fatto +stato +david +ancora +vivo +abbraccio +signora +bruna +magistris +insiste +me +nazifascista +razzista +comportamenti +criminali +vero +democratico +marzo +napoli +porte +teatro +mediterraneo +aperte +sindaco +certo +paura +minacce +insulti +chiacchierone +sinistra +pazzesco +buonisti +sinistra +morale +anti +razzista +sindaci +leghisti +poi +qualche +minuto +oretta +mattina +rtl +diretta +ascoltatori +so +manfrine +pd +tengono +ostaggio +cominciano +darmi +voltastomaco +idee +chiare +coraggio +italiani +fretta +votosubito +bando +chiacchiere +riprendiamo +controllo +moneta +torniamo +correre +punto +sciogliamoilpd +votosubito +fate +girare +video +ecco +tolleranza +kompagni +amano +clandestini +odiano +italiani +aggredire +spaccare +insultare +vergognatevi +vigliacchi +abbraccio +ragazze +lega +altro +monza +gazebo +video +militanti +salvini +stamattina +roma +subito +analoga +aggressione +molliamo +zecche +votosubito +domanda +semplice +semplice +meglio +lavoravate +risparmiavate +figli +lira +euro +ascoltate +risposta +pubblico +studio +dedicata +professoroni +politici +venduti +dopo +aver +rovinato +italiani +vogliono +ancora +schiavi +euro +secondi +smonto +bugie +europa +nessuna +tivù +parlerà +aiutaci +girare +vergogna +voto +favorevole +pd +forza +italia +passa +ceta +accordo +truffa +avvantaggerà +poche +altro +multinazionali +danni +imprenditori +agricoltori +consumatori +italiani +mila +posti +lavoro +rischio +carne +ormoni +falsi +prosciutti +formaggi +italiani +mangino +viaggio +megaville +rom +abusivo +parla +proprietari +arresti +domiciliari +vuole +fatevela +materiali +truffati +schifo +dice +boldrini +votosubito +profughi +spacciatori +colpa +immigrati +figli +chiusi +lager +ascoltare +condividere +qualche +bacheca +buonista +votosubito +intervista +oggi +skytg24 +dopo +brexit +trump +niente +impossibile +idee +chiare +votosubito +diretta +foiba +basovizza +giorno +ricordo +euro +irreversibile +sostiene +draghi +italiano +purtroppo +complice +unione +germanica +europea +economia +italiana +massacrando +state +meglio +peggio +quindici +anni +fa +www +bastaeuro +org +circolo +arci +ex +rossa +toscana +danno +ragione +lega +resto +oggi +pd +conoscono +banchieri +operai +pazzesco +crozza +tanti +giornalisti +problemi +italia +disoccupazione +tasse +immigrazione +salvini +lega +avanti +tutta +votosubito +testa +bel +corteo +diritto +casa +figlia +ministro +padoan +tale +padre +tale +figlia +massacra +italiani +difende +immigrati +prefetto +dà +pure +ragione +primagliitaliani +francesco +dovuto +affrontare +quel +bandito +mani +nude +manca +minimo +equipaggiamento +operativo +costretti +usare +corpo +quando +potremmo +fermarli +spray +peperoncino +quel +ragazzo +altro +morto +afferma +franco +maccari +coisp +tanta +rabbia +viene +italia +portare +delinquenza +morte +tanto +rispetto +uomini +donne +divisa +stato +serio +molto +numeri +mano +risposte +controllo +moneta +costa +uscire +stare +dentro +scarica +diffondi +manuale +oltreleuro +www +bastaeuro +org +libro +minacce +botte +bimbi +saltare +cervello +rompo +gambe +così +camminate +sedia +rotelle +altra +meriterebbe +lavori +forzati +altro +sospensione +rinnovo +proposta +lega +telecamere +asili +scuole +grazie +migliaia +persone +sala +streaming +dedicato +serata +informarsi +approfondire +capire +progettare +futuro +grazie +la7 +televisione +seria +scarica +subito +gratuitamente +aiuta +diffondere +manuale +oltre +euro +sito +www +bastaeuro +org +diretta +milano +alberto +bagnai +claudio +borghi +marco +zanni +modera +mario +giordano +riprendere +controllo +moneta +stasera +proviamo +spiegarvelo +fateci +compagnia +oltreleuro +scaricate +gratuitamente +nuovo +manuale +oltre +euro +sito +www +bastaeuro +org +qualche +minuto +diretta +milano +sera +aspetto +alberto +bagnai +claudio +borghi +marco +zanni +mario +giordano +oltre +euro +tornare +grandi +live +pagina +ore +scarica +gratuitamente +nuovo +libro +www +bastaeuro +org +incredibile +ascoltate +sentite +prodi +illustrava +splendido +futuro +euro +amici +pd +rovinato +moneta +criminale +altro +ridere +riascoltare +geniali +previsioni +bastaeuro +prima +tardi +fate +girare +bacheche +euristi +buonisti +cantante +americano +moby +colloca +malvagi +mondo +parte +alcuni +accostamenti +deliranti +meglio +cattivoni +oni +edicolante +difende +ragazza +clandestino +nigeriano +preda +furia +evidente +stato +alterazione +spacca +bastonate +problemi +psicologici +dobbiamo +aspettare +nuovi +casi +kabobo +andiamo +governare +po +pulizia +generale +italia +votosubito +intervento +ieri +davanti +bellissima +piazza +voglia +cambiare +votare +paese +ricostruire +invasione +bloccare +basta +inciuci +sinistra +italia +europa +idee +chiare +coraggio +andiamo +vincere +votosubito +dimentichiamoci +perso +terremoto +esenzione +fiscale +totale +almeno +anni +sospensione +poi +stato +viene +chiederti +tasse +dopo +mesi +chiesto +monti +letta +renzi +ora +gentiloni +batti +colpo +votosubito +puoi +sognarlo +puoi +farlo +ribaltiamo +paese +votosubito +www +votosubito +org +montagne +rifiuti +degrado +criminalità +inferno +tendopoli +abusive +calabria +migliaia +nuovi +schiavi +cerca +lavoro +regione +persona +disoccupata +giovani +pare +situazione +paese +normale +votosubito +primagliitaliani +dicevano +trump +mai +vinto +stati +uniti +idee +troppo +forti +auguro +italiani +stesso +coraggio +stessa +lucida +follia +votosubito +oggi +governo +pd +unione +europea +propongono +blocco +navale +libia +fermare +barconi +sentite +cosa +rispondeva +quel +fenomeno +alfano +anni +fa +quando +proponevo +ipocriti +incapaci +ridicoli +complici +stopinvasione +votosubito +qualche +minuto +insieme +poco +diretta +rai +schifo +italiani +merde +così +signora +rom +chiede +pizzo +senzatetto +dormire +aeroporto +linate +già +soffre +casa +né +lavoro +viene +taglieggiato +banda +delinquenti +spero +gentaglia +venga +cacciata +italia +calci +milione +bimbi +italiani +sotto +soglia +povertà +pd +pensa +solo +africa +sento +puzza +inciucio +voglia +vitalizio +dite +basta +tirare +campare +votosubto +vigili +fuoco +eroi +considerati +tali +punto +vista +trattamento +aumentando +dotazioni +stipendi +assumendo +pompieri +precari +andando +colmare +attuale +grave +carenza +personale +molliamo +primagliitaliani +intervento +coblenza +alleati +parlato +nuova +europa +insieme +costruiremo +lavoro +controllo +confini +moneta +sicurezza +sovranità +moriremo +euro +altro +banche +finanza +merkel +trump +insegna +coraggio +idee +chiare +vince +lasciatemi +commenti +piace +condividete +fate +qualsiasi +legge +elettorale +fate +fretta +date +scheda +elettorale +mano +italiani +bisogno +risposte +concrete +parlamento +legittimo +governo +legittimo +votosubito +grazie +migliaia +italiani +freddo +gelo +immigrati +solo +minima +parte +diritto +asilo +albergo +caldo +dice +relazione +cose +ricordo +invasione +senza +altro +controllo +costa +miliardi +anno +sembra +situazione +normale +populista +dico +me +pare +solo +realtà +vedo +ora +cambiare +votosubito +governo +trovato +miliardi +banche +può +trovare +subito +milioni +cittadini +colpiti +terremoto +sommersi +neve +alcuni +anziani +aquila +teramo +detto +altri +politici +usato +carica +chiamare +enel +sindaci +vigili +fuoco +dare +mano +parlato +altro +sindaco +tollo +pd +altro +ncd +altro +ancora +lista +civica +ringraziato +essere +italia +qualunque +cosa +attaccano +vado +criticano +vado +criticano +criticano +solo +doposci +piedi +allora +ciò +dà +senso +distanza +esistente +oggi +media +realtà +trump +insegna +grazie +volontari +arrivati +ogni +parte +italia +gente +tosta +diretta +arischia +frazione +aquila +attesa +anni +ricostruzione +sindaco +gente +atri +teramo +piena +emergenza +onorevole +pd +pensa +poter +ospitare +mezza +africa +cena +governo +anni +immigrazione +svegliano +adesso +modo +dire +fate +governo +chiusura +frontiere +accoglienza +limiti +possibile +solo +diritto +partenza +strasburgo +qualche +minuto +insieme +lasci +centinaia +milioni +buco +banca +rovinando +risparmiatori +poi +capodanno +caraibi +festeggiare +blocco +beni +ville +macchine +finché +risarcisci +italiani +soldi +fregato +paese +normale +certe +persone +galera +votosubito +coop +gestisce +presunti +profughi +venezia +fatturato +100mila +euro +passata +oltre +milioni +euro +vergogna +vedo +ora +essere +governo +mettera +parola +fine +schifoso +business +nuovi +schiavi +stopinvasione +votosubito +centro +immigrati +cona +veneziano +ospitiamo +ex +guerriglieri +costa +avorio +pare +dovrebbe +essere +normale +tutta +politica +pensare +prima +nato +cresciuto +magari +oggi +perso +casa +lavoro +dignità +sembra +difficile +capire +primagliitaliani +pazzesco +ascoltate +denuncia +gestore +agriturismo +toscana +corsi +italiano +altre +attività +integrazione +disertate +migranti +preferivano +passare +tempo +alcol +bottiglie +altro +birra +armadi +prostitute +caccia +caprioli +abbattuti +abusivamente +poi +macellavano +cucinavano +centro +modello +accoglienza +diffusa +venduto +pd +soluzione +unica +soluzione +stopinvasione +diciotto +anni +morte +poesia +voce +fabrizio +andré +rimangono +magiche +grazie +faber +secondo +soliti +buonisti +riescono +negare +invasione +corso +immigrati +fuggono +nessuna +guerra +adesso +problema +distribuirli +territorio +no +problema +rispedirli +casa +ricostruire +paesi +africa +italia +punto +qualche +minuto +insieme +insultato +razzista +osato +offrire +pranzo +natale +soli +bisognosi +italiani +onore +ristoratore +passerò +punta +marina +ravenna +fermerò +osteria +marco diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/renzi_comuni.html b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_comuni.html new file mode 100644 index 0000000..878a07c --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/renzi_counter b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_counter new file mode 100644 index 0000000..646f652 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_counter @@ -0,0 +1 @@ +{"grande": 17, "battaglia": 9, "educativa": 1, "culturale": 7, "fare": 54, "insieme": 30, "auguri": 3, "buonanno": 1, "ultimo": 7, "video": 8, "firenzesecondome": 17, "pu\u00f2": 20, "riguardare": 1, "michelangelo": 5, "gigante": 1, "assoluto": 1, "guardate": 9, "nascondere": 1, "cuore": 19, "san": 11, "lorenzo": 8, "ricordate": 6, "attaccato": 4, "buona": 33, "scuola\u201d": 1, "tutte": 10, "critiche": 4, "legittime": 2, "chiaro": 9, "qualcosa": 3, "funzionava": 1, "cominciare": 3, "algoritmo": 1, "prof": 3, "prima": 56, "volta": 13, "dopo": 42, "decenni": 2, "altro": 279, "investiva": 1, "educazione": 6, "adesso": 45, "torna": 9, "passato": 9, "scuola": 5, "tagli": 6, "chiusa": 1, "unit\u00e0": 2, "missione": 2, "edilizia": 1, "scolastica": 2, "ridotti": 1, "fondi": 7, "alternanza": 2, "lavoro": 50, "penalizzato": 1, "sostegno": 1, "alunni": 1, "maggiori": 3, "difficolt\u00e0": 3, "forse": 14, "qualcuno": 14, "potrebbe": 6, "riconoscere": 4, "scuole": 5, "invece": 22, "tagliano": 4, "cultura": 20, "buon": 9, "anno": 14, "studenti": 4, "professori": 2, "comunque": 10, "fatto": 73, "chiacchierata": 6, "leggedibilancio": 1, "fabio": 1, "martini": 1, "stampa\u201d": 1, "trovate": 2, "graditi": 1, "commenti": 8, "tempo": 39, "leggerla": 2, "31dicembre": 1, "quasi": 5, "mezzanotte": 2, "possiamo": 9, "lasciarci": 1, "andare": 7, "leggero": 1, "sperando": 1, "troll": 8, "stati": 9, "messi": 1, "letto": 4, "morto": 3, "norman": 1, "gimbel": 2, "tratta": 7, "autore": 2, "alcune": 6, "bellissime": 1, "canzoni": 1, "sigle": 2, "esempio": 5, "mai": 30, "emozionato": 3, "davanti": 9, "killing": 1, "me": 60, "softly": 1, "with": 1, "his": 1, "song\u201d": 1, "famose": 1, "televisive": 1, "storia": 17, "colonna": 2, "sonora": 2, "happy": 1, "days": 1, "quarantenni": 1, "cresciuti": 3, "fonzie": 1, "compagni": 2, "molto": 28, "semplice": 7, "stacco": 1, "musicale": 1, "ricordo": 6, "adolescenza": 1, "manovra": 19, "popolo": 12, "diventata": 1, "legge": 49, "subito": 12, "membri": 2, "governo": 108, "ruota": 3, "stupirei": 1, "occupassero": 1, "stasera": 12, "ogni": 26, "secondo": 20, "tg": 4, "rai": 7, "messaggio": 3, "barzelletta": 1, "fa": 51, "ridere": 10, "rivoluzione": 3, "cambia": 4, "aperto": 2, "balcone": 8, "palazzo": 16, "chigi": 6, "portato": 8, "bene": 28, "dichiarazioni": 4, "imbarazzanti": 2, "maio": 111, "dice": 34, "scritta": 2, "pensando": 2, "italiani": 44, "effettivamente": 1, "taglio": 2, "imu": 2, "80\u20ac": 6, "industria": 2, "misure": 9, "pensate": 11, "messicani": 1, "notoriamente": 1, "conte": 12, "riscatto": 1, "paghino": 1, "dubbio": 1, "pensavo": 1, "pagassero": 1, "addirittura": 4, "vorrebbero": 2, "costringerci": 1, "ignoranza": 4, "paura": 14, "libri": 2, "allora": 23, "potente": 1, "strumento": 1, "resistenza": 4, "civile": 8, "costruire": 2, "biblioteca": 2, "atto": 10, "profondamente": 1, "politico": 13, "medici": 9, "resto": 9, "qualit\u00e0": 3, "governanti": 1, "misurava": 1, "governati": 1, "parlato": 11, "ieri": 32, "durante": 6, "visita": 2, "laurenziana": 1, "passeggiata": 1, "dentro": 5, "firenze": 55, "biblioteche": 2, "oggi": 118, "frase": 2, "yourcenar": 1, "risposta": 3, "dare": 16, "trump": 5, "vorrebbe": 2, "pistole": 1, "americane": 1, "unica": 3, "arma": 4, "portare": 4, "salvezza": 1, "stelle": 40, "dicono": 20, "terroristi": 3, "democrazia": 6, "sotto": 14, "attacco": 4, "aver": 16, "dichiarato": 2, "ufficialmente": 3, "esaurita": 1, "povert\u00e0": 14, "obbligato": 1, "parlamento": 9, "votare": 7, "senza": 34, "visto": 14, "testo": 3, "inutile": 3, "guerra": 7, "europa": 35, "gestito": 1, "male": 15, "ridicola": 4, "retromarcia": 4, "bruxelles": 9, "promesso": 6, "reddito": 22, "780\u20ac": 2, "cittadini": 12, "raddoppiato": 1, "tasse": 17, "volontari": 3, "condono": 25, "fiscale": 11, "amici": 38, "speriamo": 2, "feste": 1, "restituiscano": 1, "tranquillit\u00e0": 1, "livello": 7, "accuse": 5, "dovremo": 2, "trovare": 3, "ottimi": 1, "specialisti": 1, "signori": 2, "vanno": 4, "aiutati": 1, "ormai": 8, "evidente": 2, "dramma": 5, "bilancio": 37, "peggio": 4, "buttiamola": 1, "quotidiano": 7, "libero": 2, "pubblica": 8, "articolo": 3, "chiss\u00e0": 5, "sento": 2, "parte": 20, "categoria": 1, "\ud83d\ude02": 1, "grazie": 41, "camminato": 1, "terza": 4, "puntata": 15, "scoperto": 4, "meraviglie": 1, "prigionia": 1, "attenzione": 8, "fiorentina": 4, "vera": 2, "foto": 5, "fatina": 1, "invecchiata": 1, "pinocchio": 3, "certificato": 1, "morte": 4, "gioconda": 1, "insegnamenti": 3, "ipocrisie": 1, "lotta": 5, "evasori": 5, "condoni": 24, "ringrazio": 4, "suggerimenti": 2, "piacere": 2, "passo": 4, "sempre": 36, "chiara": 4, "operazione": 7, "voluto": 10, "essere": 29, "apprezzato": 2, "meno": 18, "tentativo": 3, "scommettere": 4, "bellezza": 16, "societ\u00e0": 6, "dominata": 1, "vuole": 23, "rivedere": 1, "precedenti": 6, "dplay": 4, "http": 3, "bit": 3, "domenica": 14, "poco": 9, "parleremo": 5, "fiorino": 1, "divent\u00f2": 1, "dollaro": 1, "epoca": 1, "bimbi": 1, "ancora": 30, "giovanni": 2, "fidare": 1, "savonarola": 2, "donatello": 1, "monna": 1, "lisa": 1, "naturalmente": 11, "magnifico": 2, "aspetto": 15, "ore": 19, "canale": 10, "norma": 6, "voluta": 2, "esplicitamente": 1, "impediva": 1, "comuni": 4, "alzare": 2, "locali": 2, "accusato": 2, "centralista": 1, "rivendico": 1, "forza": 14, "blocco": 2, "salvini": 94, "1\u00b0": 1, "gennaio": 2, "possibile": 3, "aumento": 3, "firmato": 2, "emendamento": 8, "bloccare": 8, "possibilit\u00e0": 4, "nemmeno": 4, "discutere": 5, "poi": 43, "lamentano": 1, "sale": 1, "pressione": 2, "inizieremo": 1, "partendo": 2, "casa": 18, "via": 10, "larga": 2, "cosimo": 1, "toccheremo": 1, "luoghi": 3, "cari": 3, "importante": 4, "famiglia": 11, "soprattutto": 10, "complesso": 3, "vale": 6, "pena": 3, "entrare": 3, "clima": 3, "ripartendo": 1, "rimasti": 1, "sabato": 9, "scorso": 5, "racconto": 4, "congiura": 1, "pazzi": 1, "fratello": 2, "giuliano": 1, "finalmente": 10, "bohemianrhapsody": 1, "film": 2, "carriera": 3, "freddie": 1, "mercury": 1, "queen": 2, "dire": 34, "generazione": 4, "significa": 17, "ritornare": 1, "liceo": 1, "medie": 1, "girato": 2, "benissimo": 4, "quel": 7, "volete": 3, "bellissimo": 6, "suggerisco": 1, "davvero": 18, "notte": 10, "domani": 10, "entreremo": 2, "celebri": 1, "marco": 7, "certosa": 3, "galluzzo": 2, "posti": 11, "sconosciuti": 1, "archivio": 1, "parlare": 12, "monnalisa": 1, "chiesto": 8, "vedere": 15, "numeri": 7, "veri": 6, "dimostrare": 1, "fregatura": 1, "facile": 5, "quando": 63, "devono": 8, "pagare": 14, "commercialista": 2, "andiamo": 1, "italia": 112, "noioso": 2, "dunque": 10, "almeno": 12, "chiari": 1, "consiglio": 8, "nazionale": 8, "commercialisti": 1, "proprio": 23, "ufficio": 2, "studi": 1, "rilasciato": 1, "nota": 1, "triennio": 1, "ben": 5, "miliardi": 15, "entrate": 3, "tributarie": 1, "contare": 1, "ovviamente": 13, "clausole": 1, "iva": 1, "auguriamo": 1, "disattivazione": 1, "conto": 16, "presto": 7, "contribuenti": 3, "funerale": 2, "shimon": 1, "peres": 2, "considerai": 1, "privilegio": 1, "poter": 3, "stringere": 1, "mano": 6, "amos": 3, "oz": 5, "scrittore": 1, "israeliano": 1, "appena": 6, "tenuto": 2, "orazione": 1, "funebre": 1, "uomo": 12, "stato": 42, "presidente": 19, "premio": 2, "nobel": 5, "statista": 1, "amico": 4, "meglio": 16, "disse": 1, "scegliere": 3, "speranza": 2, "ingenua": 1, "freddo": 2, "cinismo": 2, "inconfondibile": 1, "sognatore": 1, "talvolta": 2, "inciampava": 1, "occhi": 4, "fissavano": 1, "ripensato": 1, "quell": 3, "episodio": 1, "appresa": 1, "notizia": 14, "tornati": 2, "mente": 3, "alcuni": 7, "romanzi": 1, "scritti": 1, "fanatismo": 2, "compromesso": 1, "definiva": 1, "fanatico": 1, "punto": 7, "esclamativo": 1, "ambulante": 1, "mondo": 27, "terrasanta": 1, "particolare": 1, "modo": 19, "bisogno": 10, "compromessi": 2, "alti": 3, "nobili": 1, "senso": 12, "umorismo": 1, "valori": 8, "lieve": 2, "terra": 3, "maestro": 1, "passati": 1, "anni": 42, "fucilazione": 1, "fratelli": 3, "cervi": 2, "ricordare": 3, "vita": 13, "quei": 7, "ragazzi": 23, "ricordarsi": 1, "belli": 2, "vengono": 6, "parole": 13, "pap\u00e0": 2, "alcide": 1, "detto": 35, "cos\u00ec": 16, "commemorazioni": 2, "quercia": 3, "cresciuto": 2, "rami": 1, "falciati": 1, "morta": 1, "figura": 1, "bella": 6, "qualche": 21, "piango": 1, "seme": 4, "morir\u00e0": 1, "fuoco": 4, "capire": 5, "ideale": 1, "testa": 5, "uomo\u201d": 1, "permetto": 1, "suggerimento": 1, "millennials": 1, "studiate": 1, "pazzesca": 1, "dato": 10, "libert\u00e0": 10, "giornata": 23, "santo": 1, "stefano": 3, "doveva": 3, "novit\u00e0": 2, "calcio": 4, "italiano": 18, "modello": 1, "inglese": 2, "giocare": 3, "giorno": 15, "natale": 11, "dovuto": 7, "famiglie": 30, "stadio": 3, "creare": 2, "gioia": 2, "serenit\u00e0": 1, "accaduto": 5, "esattamente": 5, "opposto": 2, "ultr\u00e0": 3, "milano": 5, "scontri": 2, "siro": 1, "cori": 1, "razzisti": 1, "verso": 8, "giocatore": 1, "napoli": 1, "koulibaly": 1, "risolvere": 1, "problema": 15, "violenza": 8, "fisica": 1, "verbale": 4, "sceso": 2, "campo": 3, "ministro": 49, "interno": 12, "convocare": 1, "tifosi": 1, "tavolo": 1, "viminale": 3, "istituzioni": 6, "penso": 7, "dovere": 6, "prendere": 8, "iniziativa": 1, "temi": 4, "utile": 2, "seconda": 4, "visibili": 1, "gratuitamente": 1, "rete": 8, "consigli": 1, "prossimo": 5, "muoveremo": 1, "toccando": 1, "frattempo": 6, "interessati": 3, "passaggio": 2, "teatro": 4, "pergola": 2, "valore": 2, "teatrale": 1, "musica": 1, "aneddoto": 1, "verdi": 1, "clamorosa": 2, "sconfitta": 3, "invenzione": 1, "telefono": 1, "antonio": 3, "meucci": 1, "continua": 7, "indecoroso": 1, "spettacolo": 2, "sapete": 4, "costretti": 3, "leggere": 9, "ritardo": 3, "norme": 4, "scritte": 1, "inizia": 6, "capirle": 2, "solo": 85, "promette": 1, "modifiche": 1, "terzo": 8, "settore": 2, "parlavo": 2, "stamattina": 5, "cattivo": 2, "po": 4, "capita": 2, "capito": 2, "persone": 30, "accanto": 2, "intanto": 6, "proviamo": 1, "dirne": 1, "altra": 6, "finanziare": 2, "cittadinanza": 25, "disoccupati": 3, "tagliato": 2, "rinviando": 1, "assunzioni": 4, "pranzo": 3, "abbassare": 3, "canone": 6, "puntate": 1, "costava": 1, "113\u20ac": 2, "messo": 9, "bolletta": 3, "pagano": 7, "strada": 7, "stanare": 1, "squallidi": 1, "grillini": 11, "insultavano": 1, "definendo": 1, "scandalo": 2, "90\u20ac": 1, "abbassamento": 1, "per\u00f2": 16, "fatti": 11, "tanti": 14, "regali": 1, "buongiorno": 3, "ritrovati": 1, "spero": 5, "pensiero": 9, "catanese": 1, "scosso": 1, "terremoto": 1, "discussione": 6, "camera": 4, "ora": 13, "potuto": 1, "nascosto": 5, "fino": 5, "senato": 24, "streaming": 6, "trasparenza": 1, "vediamo": 5, "evidenti": 2, "contraddizioni": 2, "follie": 1, "raddoppiano": 1, "ires": 1, "no": 44, "profit": 1, "premiano": 3, "volontario": 1, "solidariet\u00e0": 5, "paghi": 2, "evasore": 2, "furbetto": 1, "sembra": 11, "rovescia": 1, "sera": 16, "giusta": 2, "cattedrale": 2, "dedicata": 1, "santa": 1, "maria": 7, "fiore": 1, "dante": 1, "vergine": 1, "madre": 1, "figlia": 2, "figlio": 6, "umile": 1, "alta": 4, "creatura\u201d": 1, "luogo": 8, "simbolo": 4, "cristianit\u00e0": 1, "augurio": 2, "affettuoso": 3, "credenti": 3, "felicit\u00e0": 2, "riposo": 1, "tante": 7, "polemiche": 10, "prossimi": 3, "mesi": 18, "purtroppo": 11, "pagheremo": 2, "scelte": 8, "sbagliate": 1, "fermiamoci": 1, "stacca": 1, "caccia": 2, "forsennata": 1, "regalo": 4, "stop": 1, "rivede": 1, "genitori": 4, "settimane": 4, "ritrova": 1, "diritto": 6, "passare": 6, "passa": 5, "genitore": 1, "compagno": 1, "specie": 3, "primo": 8, "lutto": 1, "abbraccio": 6, "affetto": 2, "pomeriggio": 2, "pubblicheremo": 1, "clip": 5, "rapporto": 4, "madonna": 2, "quali": 5, "festa": 3, "altre": 2, "cristiani": 4, "bello": 9, "david": 4, "stesso": 3, "strano": 3, "marmo": 1, "pretese": 1, "metterci": 1, "naso": 1, "ricevendo": 1, "migliaia": 13, "messaggi": 2, "raccogliere": 2, "considerazioni": 1, "votato": 10, "sente": 1, "orgoglioso": 7, "appartenere": 1, "patria": 1, "felice": 9, "riconosce": 1, "audience": 2, "risultato": 3, "alto": 4, "media": 6, "aumentato": 2, "oltre": 13, "pubblico": 5, "ottimo": 1, "onore": 7, "discovery": 2, "fantastici": 1, "arcobalenotre": 1, "fatemi": 1, "fiorentini": 3, "fiorentino": 3, "guardato": 1, "gente": 14, "conosce": 6, "devo": 2, "condivido": 3, "momenti": 3, "intensi": 1, "mattino": 2, "scempio": 1, "istituzionale": 3, "compiuto": 2, "maggioranza": 8, "votata": 4, "fiducia": 4, "attaccare": 9, "pd": 22, "rifiutati": 1, "partecipare": 1, "voto": 7, "riteniamo": 1, "viziato": 1, "parlando": 4, "senatore": 10, "presenze": 1, "aula": 15, "inizio": 4, "legislatura": 4, "assistito": 1, "ultima": 4, "mezzora": 1, "dibattito": 7, "ufficiale": 2, "quest": 5, "vergogna": 10, "andata": 2, "aspettare": 6, "pil": 14, "andr\u00e0": 4, "previsto": 2, "occupazione": 3, "peggiorer\u00e0": 1, "investimenti": 5, "tanto": 16, "sbagliarmi": 1, "temo": 3, "conti": 6, "sbagliati": 1, "fenomeni": 1, "sciacallo": 4, "prestanome": 4, "vado": 5, "trascorso": 1, "mezzo": 6, "camminando": 2, "meraviglia": 2, "posso": 3, "confessare": 1, "pezzo": 3, "entriamo": 1, "istituto": 2, "innocenti": 4, "sacrario": 1, "amore": 2, "spezzato": 1, "commosso": 4, "padre": 25, "settimana": 27, "prossima": 2, "medico": 3, "madama": 1, "roma": 11, "secoli": 1, "sede": 3, "consuma": 1, "diretta": 31, "https": 4, "it": 2, "com": 3, "live": 2, "matteo": 6, "renzi": 26, "onda": 9, "incredibile": 6, "repubblicana": 2, "scene": 2, "incredibili": 2, "crederete": 1, "cambiando": 4, "nuovo": 5, "maxi": 3, "confini": 1, "ridicolo": 7, "federico": 1, "chiesa": 2, "salvato": 3, "luigi": 8, "farmi": 2, "aspettavo": 2, "ringraziare": 1, "pubblicamente": 3, "grafico": 3, "pubblicato": 3, "pagina": 4, "diffuso": 1, "manetta": 1, "scritto": 5, "indeterminato\u201d": 1, "curva": 4, "rossa": 2, "indeterminato": 4, "trimestre": 4, "festeggiato": 2, "inviando": 1, "casca": 1, "asino": 1, "cosa": 29, "cresce": 2, "impressionante": 5, "entrano": 1, "vigore": 1, "camminata": 1, "piazza": 19, "duomo": 2, "galleria": 1, "accademia": 1, "arriva": 6, "farinata": 1, "stenditoio": 1, "rinvio": 2, "riesce": 4, "chiudere": 4, "credo": 7, "volutamente": 1, "semplicemente": 6, "incapaci": 2, "capisco": 4, "dirlo": 5, "elegante": 1, "giri": 2, "servono": 4, "dimostrando": 1, "clamorosamente": 1, "incompetenti": 3, "vede": 5, "seriet\u00e0": 8, "torner\u00e0": 7, "moda": 6, "surreali": 1, "persi": 2, "rinviato": 1, "esperti": 2, "funzionari": 1, "vecchi": 1, "cronisti": 1, "commessi": 2, "ex": 2, "senatori": 4, "situazione": 4, "genere": 5, "vista": 4, "approfitto": 1, "tornare": 6, "proporre": 2, "apparire": 1, "controcorrente": 2, "effetti": 3, "cammino": 1, "prender\u00e0": 1, "piedi": 3, "dolore": 7, "mamme": 2, "leader": 2, "spirituale": 1, "battista": 11, "definito": 1, "obama": 6, "golpista\u201d": 1, "golpista": 1, "spiego": 2, "matti": 2, "deve": 23, "farsi": 5, "possibilmente": 1, "bravo": 2, "scopro": 1, "nuova": 9, "chicca": 1, "allucinante": 2, "ripenso": 2, "insultato": 6, "aprile": 1, "fazio": 1, "accordo": 8, "fingono": 2, "ricordarselo": 1, "dirigenti": 4, "commentatori": 1, "spingevano": 1, "riuscite": 1, "immaginare": 2, "affacciano": 1, "dichiarare": 2, "sparita": 1, "mettono": 4, "tolgono": 3, "vaccini": 26, "blocca": 2, "infrastrutture": 12, "gioca": 2, "mentre": 8, "accingiamo": 1, "fatta": 9, "fakenews": 15, "danni": 8, "dico": 6, "chiedere": 10, "scusa": 6, "carit\u00e0": 1, "probabilmente": 2, "insultava": 1, "ringraziarci": 1, "senzadime": 1, "voteremo": 2, "gestione": 2, "parlamentare": 5, "scandalosa": 2, "terr\u00f2": 1, "informati": 2, "alziamo": 1, "sguardo": 2, "politica": 32, "estera": 1, "deciso": 4, "ritirare": 1, "soldati": 1, "americani": 1, "siria": 1, "entusiasmo": 2, "followers": 2, "twitter": 1, "stupore": 1, "sgomento": 1, "addetti": 2, "lavori": 2, "rischia": 1, "abbandonare": 1, "obiettivo": 4, "distruzione": 2, "isis": 1, "averlo": 1, "raggiunto": 1, "abbandonano": 1, "curdi": 1, "coraggioso": 1, "battuto": 1, "eroico": 1, "estremisti": 2, "islamici": 2, "infatti": 6, "difesa": 3, "americano": 2, "polemica": 6, "avviso": 4, "garanzia": 4, "menti": 2, "contorte": 2, "possono": 4, "considerare": 1, "sentenza": 5, "utilizzare": 4, "presunti": 2, "reati": 1, "padri": 4, "figli": 8, "utilizziamo": 1, "perche": 2, "cinici": 1, "giustizialisti": 1, "debito": 8, "dovr\u00e0": 4, "spiegare": 5, "responsabilit\u00e0": 6, "penale": 1, "eludere": 1, "equitalia": 5, "interessa": 5, "abituati": 1, "strumentalizzare": 2, "meschini": 1, "cambiato": 6, "schiantati": 1, "muro": 2, "paese": 29, "comprensibile": 1, "impressione": 2, "tracotante": 2, "spiegando": 1, "realt\u00e0": 13, "niente": 13, "verit\u00e0": 16, "basterebbe": 1, "ammettere": 2, "idea": 11, "sbagliando": 1, "rischiavamo": 1, "troppo": 3, "insistono": 1, "diffondere": 1, "ok": 3, "risalirei": 1, "pensano": 4, "bevano": 1, "bugie": 8, "credono": 1, "trattare": 1, "connazionali": 1, "intendere": 1, "volere": 1, "nodi": 2, "arrivando": 1, "pettine": 2, "cialtroni": 9, "scadendo": 1, "arrivato": 3, "riuscivano": 1, "scaricare": 1, "file": 1, "certo": 5, "sovranista": 1, "copia": 2, "incolla": 1, "tecnici": 1, "europei": 3, "pubblici": 8, "metto": 1, "studiare": 4, "tengo": 2, "venerd\u00ec": 4, "intervento": 2, "salone": 1, "vecchio": 2, "pira": 1, "spazio": 1, "misteri": 1, "leonardo": 1, "vinci": 1, "anghiari": 1, "interviene": 1, "presunto": 1, "premier": 17, "imbarazzato": 1, "imbarazzante": 6, "cerca": 3, "giustificare": 1, "retromarciadelpopolo": 1, "capiscono": 1, "antifona": 1, "nascondendosi": 2, "sovranisti": 1, "mollato": 1, "rimane": 2, "affaccia": 1, "juncker": 5, "evitare": 5, "procedura": 4, "infrazione": 3, "peccato": 2, "buttato": 2, "preziose": 1, "miliardo": 2, "euro": 14, "vergognare": 1, "notare": 4, "sbagliava": 1, "abbracciando": 2, "pregiudicato": 2, "trattava": 1, "kg": 1, "droga": 2, "bambini": 9, "peraltro": 3, "reazione": 3, "stata": 15, "indagato": 1, "altri": 15, "indagati": 1, "squalifica": 1, "pregiudicati": 1, "rafforza": 1, "immagine": 4, "negativa": 1, "gioco": 5, "ministero": 1, "validi": 1, "professionisti": 2, "dovrebbero": 2, "aiutare": 4, "incontri": 3, "sconvenienti": 1, "staff": 2, "serve": 14, "stare": 5, "facebook": 15, "promuovere": 2, "prodotti": 1, "alimentari": 1, "indossare": 2, "magliette": 1, "polizia": 1, "carabinieri": 2, "abbracci": 2, "scrive": 7, "digos": 1, "boia": 1, "rifarei": 1, "vergognati": 2, "chiedi": 1, "top": 12, "ten": 12, "visitato": 1, "volte": 12, "cina": 4, "ultimi": 5, "tocchi": 2, "diverse": 2, "citt\u00e0": 9, "puoi": 7, "ignorare": 1, "straordinario": 2, "dinamismo": 1, "economico": 2, "sociali": 2, "potenza": 1, "squilibri": 1, "ambientali": 1, "xi": 1, "jinping": 1, "discorso": 2, "storico": 1, "ricordando": 1, "riforma": 2, "deng": 1, "xiaoping": 1, "evidenziato": 1, "risultati": 8, "raggiunti": 1, "cinese": 2, "milioni": 16, "uscite": 1, "straordinaria": 3, "campagna": 14, "patire": 1, "fame": 1, "normalit\u00e0": 1, "ottima": 2, "genova": 25, "sindaco": 12, "commissario": 3, "scelto": 8, "progetto": 13, "ponte": 13, "ciascuno": 7, "proprie": 1, "idee": 8, "percorso": 2, "migliore": 2, "importa": 5, "ricostruzione": 1, "morandi": 4, "diventa": 6, "state": 7, "smentite": 2, "prime": 5, "falso": 5, "autostrade": 12, "soldi": 32, "dati": 7, "lega": 32, "concessione": 4, "esecutivo": 1, "berlusconi": 3, "vot\u00f2": 1, "favore": 4, "falsa": 1, "revoca": 2, "tempi": 4, "magistratura": 1, "giustizia": 4, "regole": 4, "festeggiano": 1, "abolizione": 3, "corruzione": 1, "uguale": 2, "beato": 1, "crede": 3, "alessandro": 2, "risponde": 5, "giornale": 3, "insultando": 2, "offende": 1, "anzich\u00e9": 9, "debiti": 1, "azienda": 8, "replica": 4, "citando": 1, "referendum": 7, "merito": 2, "questioni": 3, "aperte": 1, "vicenda": 14, "citare": 1, "ballo": 2, "assurdo": 7, "viene": 7, "minimamente": 1, "interessato": 1, "gesta": 1, "senior": 2, "uso": 1, "altrui": 2, "nutrito": 1, "interesse": 4, "alcuno": 1, "dichiara": 1, "fascista": 1, "arroganza": 5, "lavora": 5, "giorni": 12, "attesa": 4, "emendamenti": 7, "scorrettezza": 1, "vergognosa": 1, "elettorale": 12, "perso": 6, "raccontato": 2, "sacco": 1, "frottole": 1, "vinto": 7, "presenta": 3, "onest\u00e0": 10, "intellettuale": 3, "bisognerebbe": 1, "riconoscerlo": 1, "accadendo": 5, "riguarda": 4, "elsa": 1, "morante": 1, "nuvole": 1, "offuscano": 1, "cielo": 1, "illuminano": 1, "\u201d": 5, "pensato": 3, "stamani": 5, "volando": 1, "buttiamoci": 1, "benedetta": 1, "presentare": 2, "voglio": 8, "carabiniere": 1, "mantiene": 1, "sangue": 2, "ragazzo": 5, "professionista": 1, "tiene": 1, "infami": 2, "attaccano": 8, "assicurati": 1, "patrie": 1, "galere": 1, "preoccupi": 1, "abbracciato": 1, "me\u201d": 3, "continuano": 3, "arrivare": 4, "copiosi": 1, "complimenti": 4, "immagini": 4, "regia": 1, "luci": 1, "meritatissimi": 1, "giro": 12, "magnifica": 1, "troupe": 1, "attacca": 12, "andato": 5, "occupa": 2, "tv": 4, "pubblica\u201d": 1, "mediaset": 1, "venduto": 1, "ah": 1, "vedono": 1, "pochi\u201d": 1, "dispiace": 1, "contento": 3, "documentario": 5, "scriva": 1, "servito": 1, "riflettere": 3, "ripropongo": 3, "momento": 9, "intenso": 1, "uffizi": 2, "parliamo": 2, "mafia": 2, "aspettato": 1, "approfondire": 1, "nulla": 8, "silenzio": 6, "tomba": 1, "parla": 8, "nessuno": 5, "curiosa": 1, "socio": 1, "problemi": 6, "fisco": 1, "banche": 3, "fornitori": 1, "dipendenti": 1, "principali": 1, "partito": 2, "aprire": 5, "siti": 1, "dedicare": 1, "servizi": 2, "giornalismo": 1, "inchiesta": 2, "vorrei": 4, "apertura": 1, "argomento": 3, "principale": 1, "talk": 2, "intere": 1, "mancano": 1, "capodanno": 1, "presentato": 2, "festeggiando": 1, "dichiarando": 1, "abolita": 2, "giurato": 1, "eterna": 1, "dicendo": 11, "fregavano": 1, "rifiutato": 2, "proposta": 9, "lanciata": 1, "padoan": 9, "leopolda": 22, "utilizzando": 1, "solita": 1, "arrogante": 1, "cialtroneria": 1, "degnano": 1, "dirci": 1, "dobbiamo": 17, "dirvi": 1, "commissione": 4, "attendendo": 1, "compri": 1, "sushi": 1, "torni": 2, "capisca": 1, "carte": 2, "fermo": 2, "intervenuto": 1, "onorato": 1, "dovrebbe": 5, "occuparsi": 1, "cose": 20, "rilevanti": 1, "ama": 3, "seguire": 2, "sicurezza": 4, "coperture": 3, "promesse": 9, "vuoto": 3, "banalmente": 1, "recuperare": 3, "guarder\u00e0": 1, "nessuna": 3, "ragione": 5, "documentari": 1, "beni": 1, "culturali": 1, "infine": 1, "signora": 2, "cardellino": 1, "quadro": 1, "significato": 2, "profondo": 2, "museo": 4, "mettere": 5, "nudo": 1, "anima": 1, "breve": 2, "accade": 1, "raffaello": 1, "rientro": 1, "riuscito": 2, "rispondervi": 1, "reale": 1, "persa": 3, "disponibile": 1, "firenzesecondome1": 2, "suggerisce": 1, "milanosecondome": 1, "romasecondome": 1, "napolisecondome": 1, "condotti": 1, "personaggi": 1, "relazione": 4, "speciale": 3, "visione": 4, "pazienza": 2, "leggo": 1, "volentieri": 1, "piaciuta": 1, "convinto": 4, "italiana": 16, "sinonimo": 1, "furbizia": 1, "fascino": 1, "originalit\u00e0": 1, "giardino": 4, "boboli": 2, "campione": 1, "magico": 1, "giovani": 2, "saltare": 1, "pronti": 4, "viaggio": 3, "iniziamo": 1, "tocchiamo": 1, "pitti": 1, "vasariano": 1, "signoria": 1, "concittadino": 1, "potr\u00e0": 5, "sentirsi": 1, "fiero": 3, "provare": 3, "orgoglio": 1, "vertigine": 1, "riconoscersi": 1, "trasmissione": 4, "trover\u00e0": 1, "identit\u00e0": 1, "beh": 1, "potremo": 2, "soddisfatti": 1, "camminare": 1, "mistero": 1, "gambe": 2, "seguito": 3, "x": 2, "factor": 2, "vittoria": 1, "anastasio": 4, "talento": 1, "like": 3, "mette": 6, "artista": 1, "giudica": 1, "stravinto": 1, "meritando": 1, "smettessimo": 1, "sapere": 4, "vota": 3, "basta": 21, "spaccato": 1, "gi\u00f9": 5, "cappello": 1, "capi": 1, "unione": 3, "europea": 5, "riuniti": 1, "commemorare": 1, "vittime": 7, "attentato": 2, "strasburgo": 3, "assente": 2, "sola": 4, "sedia": 1, "vergognosamente": 1, "vuota": 1, "conferenza": 1, "stampa": 8, "improvviso": 2, "decide": 1, "aereo": 3, "indietro": 1, "trattoria": 2, "ripartire": 4, "cena": 2, "omaggio": 1, "populisti": 4, "speso": 3, "usando": 1, "taxi": 1, "massacravano": 1, "voce": 4, "lasciare": 3, "europeo": 3, "solenne": 1, "commemorazione": 1, "fine": 13, "questione": 2, "galateo": 1, "rispetto": 4, "tecnicamente": 1, "schifo": 4, "addio": 1, "cittadino": 4, "avanti": 6, "tutta": 11, "divisioni": 4, "ideali": 2, "sogno": 5, "uniti": 3, "sostiene": 1, "anzi": 2, "pochi": 3, "alzato": 3, "opposizione": 14, "netto": 2, "forte": 11, "sbagliata": 2, "sceneggiata": 2, "assurdit\u00e0": 2, "totale": 3, "manfrinadelpopolo": 1, "perdere": 2, "prendiamoci": 1, "arrivano": 5, "inaccettabili": 1, "figuraccia": 1, "sbagliato": 6, "alcun": 1, "presentazione": 3, "realizza": 1, "scrittura": 1, "reso": 1, "primi": 9, "minuti": 7, "assaggino\u201d": 1, "do": 1, "appuntamento": 1, "corrente": 2, "continuo": 2, "credere": 5, "disastro": 2, "scende": 3, "nord": 5, "21mila": 1, "occupati": 3, "sud": 3, "35mila": 1, "istat": 5, "fca": 1, "annuncia": 2, "manovradelpopolo": 2, "mantenere": 3, "spunta": 1, "nero": 11, "bianco": 2, "estensione": 1, "rei": 1, "finanziato": 7, "ingannati": 1, "fake": 5, "news": 5, "fuori": 10, "porta": 9, "provato": 5, "resistito": 1, "\ud83d\ude09": 2, "dite": 6, "colpiscono": 3, "cuori": 1, "custodisce": 1, "mercatini": 1, "obiettivi": 2, "vigliacco": 1, "estremismo": 1, "islamico": 1, "continuare": 4, "combattuta": 1, "piano": 8, "incertezze": 1, "nuove": 2, "generazioni": 2, "molti": 10, "radicalizzati": 1, "nati": 6, "ecco": 5, "rilanciata": 2, "continentale": 1, "intuizione": 1, "sicurezza\u201d": 1, "preghiere": 2, "pensieri": 1, "feriti": 2, "chiede": 3, "chiarire": 4, "\u20ac": 7, "lussemburgo": 1, "spariti": 1, "gi\u00e0": 15, "informarsi": 1, "peculato": 3, "leghisti": 5, "personam": 1, "cartelle": 2, "edilizi": 7, "materiale": 1, "pesante": 1, "pensare": 5, "usato": 1, "social": 7, "dipingerci": 1, "disonesti": 1, "nonostante": 4, "arrivino": 1, "sentenze": 4, "risarcimento": 3, "danno": 8, "preparando": 1, "strategiche": 1, "chiarite": 1, "abbasseranno": 2, "deficit": 12, "eviteranno": 1, "saperlo": 1, "proporle": 1, "scrivendo": 1, "territorio": 4, "collegio": 3, "coerenti": 1, "presentata": 1, "salvare": 3, "leggi": 2, "spreco": 1, "alimentare": 1, "piccolo": 5, "banale": 1, "arrabbiare": 1, "istruzione": 1, "annunciato": 3, "scriver\u00e0": 1, "circolare": 1, "diano": 1, "compiti": 4, "vacanze": 1, "motivazione": 1, "superficiale": 1, "crescere": 3, "migliorarsi": 1, "magari": 3, "avere": 10, "stravagante": 1, "solito": 4, "lisciare": 1, "pelo": 1, "felici": 1, "destinatari": 1, "comunit\u00e0": 5, "evoluzione": 1, "economia": 15, "distruggono": 1, "crescita": 10, "riportano": 2, "recessione": 9, "tenga": 1, "opinioni": 1, "personale": 7, "buffo": 1, "contesta": 1, "eccesso": 1, "personalizzazione\u201d": 1, "esca": 1, "dica": 1, "vuol": 2, "colpa": 19, "chiarezza": 2, "accusano": 1, "personalizzare": 1, "preoccupano": 1, "ossessivo": 1, "spesso": 9, "mese": 5, "sognavano": 1, "presentavano": 1, "berlinguer": 1, "solitario": 1, "gruppo": 3, "dirigente": 4, "andando": 3, "fatelo": 2, "senzadime\u201d": 1, "zitto": 2, "invade": 1, "tacere\u201d": 1, "vedendo": 2, "governano": 3, "dominato": 1, "barbarie": 3, "rancore": 3, "strade": 4, "rifletterci": 1, "raccontando": 2, "vicoli": 1, "storie": 1, "monumenti": 1, "meravigliosa": 5, "domandato": 1, "serva": 2, "trollls": 1, "aspettate": 1, "esponenti": 1, "partiti": 5, "sembrano": 2, "innamorati": 1, "gilet": 2, "gialli": 2, "beppe": 8, "grillo": 13, "elogiano": 1, "rivolta": 1, "popolare": 1, "francia": 1, "fermati": 1, "decine": 4, "parigi": 2, "combattere": 6, "ingiustizie": 2, "minoranza": 3, "governi": 3, "colpe": 2, "vuoi": 2, "presidenti": 1, "ministri": 5, "chiunque": 1, "analisi": 1, "sociologiche": 1, "raffinate": 1, "globalizzazione": 1, "diseguaglianze": 1, "cambiare": 10, "occorre": 1, "populismo": 3, "riforme": 1, "barricate": 1, "demagogia": 4, "rallenta": 1, "aumentano": 2, "pensiamo": 3, "rinnovare": 1, "sassate": 1, "camionette": 1, "gendarmeria": 1, "francese": 2, "metter\u00e0": 2, "finir\u00e0": 1, "indecorosa": 1, "manfrina": 1, "iniziata": 1, "settembre": 2, "criticare": 6, "spendere": 2, "parola": 6, "positivo": 3, "controproposte": 2, "accolte": 1, "spread": 34, "scenderebbe": 1, "accoglieranno": 1, "incontrato": 1, "categorie": 3, "confapi": 1, "intelligente": 1, "divano": 1, "sufficienza": 1, "bellissima": 5, "sole": 2, "uggioso": 1, "tanta": 4, "chiacchierate": 1, "economica": 7, "selfie": 1, "discussioni": 2, "pareggio": 1, "rocambolesco": 1, "regolare": 2, "normale": 1, "magone": 1, "riusciamo": 1, "toglierci": 1, "vedi": 1, "nascita": 1, "morti": 3, "maledetta": 1, "serata": 4, "pensi": 3, "et\u00e0": 3, "l\u00ec": 1, "senti": 1, "gelare": 1, "mamma": 1, "giovane": 1, "te": 4, "moglie": 1, "continui": 4, "tragedia": 7, "assurda": 3, "tristezza": 1, "infinita": 2, "notizie": 3, "ancona": 1, "creano": 1, "enorme": 7, "sconvolto": 1, "riesco": 2, "possa": 2, "accadere": 1, "strage": 1, "triste": 4, "george": 1, "bush": 3, "cagnolino": 1, "bara": 1, "america": 1, "capace": 3, "stringersi": 1, "intorno": 1, "simboli": 1, "bandiere": 2, "riconoscenza": 1, "stile": 3, "lettera": 7, "lasciata": 1, "clinton": 2, "consegne": 1, "americana": 2, "vive": 6, "rancorosa": 2, "scambio": 4, "sogni": 4, "speranze": 1, "tenetevi": 2, "pure": 2, "incattivita": 1, "impaurita": 1, "consegna": 1, "censis": 2, "cedere": 3, "pessimismo": 1, "diversa": 3, "valorizzata": 1, "descrive": 1, "animo": 1, "piace": 3, "segnalare": 1, "bebe": 4, "vio": 1, "energia": 2, "diventare": 2, "coni": 1, "donne": 6, "lottare": 4, "vertici": 1, "figata": 1, "ripete": 1, "campionessa": 1, "paralimpica": 1, "chiedemmo": 1, "rappresentare": 1, "insegnano": 1, "guardare": 2, "darti": 1, "lezione": 2, "darci": 1, "lasceremo": 1, "ceda": 1, "sms": 1, "assist": 1, "quaresma": 1, "match": 1, "nazionali": 1, "parlamentari": 5, "russia": 1, "finito": 2, "chiamarsi": 2, "bomber": 1, "roba": 1, "insomma": 7, "trivela": 2, "diciamo": 5, "riprovo": 1, "venti": 1, "venga": 2, "global": 1, "compact": 1, "migrazione": 1, "dividendo": 1, "belgio": 1, "tensioni": 1, "teorico": 1, "firma": 2, "ombra": 2, "smentito": 1, "picchiare": 1, "duro": 1, "migranti": 3, "chiedo": 3, "dimostrarvi": 1, "scelta": 5, "trovata": 1, "approvato": 5, "quindici": 1, "trattato": 1, "dublino": 1, "proporlo": 1, "nome": 7, "bossifini": 1, "parlano": 4, "fonte": 2, "anonima": 1, "d\u00e0": 3, "mettiamo": 1, "fila": 2, "elezioni": 8, "dimesso": 1, "spiegato": 3, "lungo": 1, "assemblea": 1, "ci\u00f2": 17, "assunto": 1, "tale": 1, "eletto": 6, "obbligatori": 1, "periferie": 6, "edilizio": 9, "assolavoro": 1, "conseguenze": 5, "decreto": 26, "dignit\u00e0": 10, "53mila": 2, "jobsact": 6, "milione": 5, "vere": 4, "importanti": 2, "smetter\u00e0": 1, "albergo": 1, "butto": 1, "occhio": 2, "vedo": 2, "prendono": 3, "trascorsi": 2, "referendaria": 1, "dicembre": 3, "chiedono": 2, "potevi": 1, "sella": 1, "costituzione": 1, "ve": 3, "difendere": 2, "poltrona": 3, "necessario": 2, "giusto": 13, "provarci": 1, "stabilit\u00e0": 1, "efficienza": 1, "propaganda": 7, "manifestazione": 1, "manifesti": 1, "saro": 1, "criminale": 1, "dimenticando": 1, "garantire": 2, "lucrare": 1, "altroinsicurezza": 1, "negativo": 2, "dimenticato": 1, "entrambe": 1, "obbligatoriet\u00e0": 1, "forze": 1, "ordine": 3, "palermo": 1, "cupola": 1, "mafiosa": 1, "orgogliosi": 1, "uomini": 5, "lottano": 3, "legalit\u00e0": 6, "viva": 4, "movimento": 10, "signor": 2, "qualsiasi": 4, "accada": 1, "s\u00ec": 5, "stavolta": 3, "andati": 1, "tocca": 4, "rispondere": 5, "scopri": 3, "differenze": 3, "vogliamo": 8, "arrivate": 1, "confessato": 1, "querelato": 1, "diffamazione": 1, "gran": 1, "periodo": 4, "falsit\u00e0": 4, "travaglio": 7, "gigino": 2, "spargendo": 1, "false": 1, "vero": 5, "fango": 10, "missionario": 1, "salesiano": 1, "lombardo": 1, "ugo": 3, "censi": 1, "fondatore": 1, "mato": 1, "grosso": 1, "lasciato": 2, "per\u00f9": 1, "spesa": 1, "poveri": 3, "conosciuto": 3, "fortuna": 1, "incontrare": 1, "lima": 1, "ricorda": 1, "gratitudine": 2, "fede": 2, "condividere": 4, "scorsa": 2, "iene": 3, "iniziato": 1, "odio": 12, "ferisce": 1, "perisce": 1, "scuse": 1, "trattata": 1, "sussulto": 1, "ammesso": 1, "aggredire": 1, "avversari": 9, "continuato": 3, "insultarci": 1, "sottolineare": 1, "entra": 4, "trascorsa": 1, "lasci": 1, "abusi": 6, "franchi": 2, "juve": 1, "intervista": 5, "gazzetta": 1, "sport": 1, "tranquilli": 1, "insegno": 1, "allenatori": 1, "formazione": 1, "limito": 1, "vince": 3, "riapre": 1, "campionato": 1, "interessante": 1, "servizio": 4, "mandato": 2, "scherzo": 2, "registravo": 1, "paolo": 1, "bonolis": 1, "occasione": 2, "prendermi": 1, "altrimenti": 5, "perdevo": 1, "insulteranno": 1, "scherzi": 1, "difficile": 5, "fate": 3, "meritate": 1, "divertimento": 1, "cambiamento": 7, "festeggia": 2, "riferimento": 1, "pienamente": 1, "oggettivi": 1, "tirate": 1, "pagato": 3, "stracciano": 1, "colf": 1, "muratore": 1, "giustificano": 1, "prendi": 1, "denunciare": 1, "potrai": 1, "rubato": 5, "rimborsi": 1, "regionali": 1, "cambio": 3, "leggendo": 1, "bimbo": 2, "poste": 2, "portarla": 1, "paradiso": 1, "scrivono": 2, "bambino": 3, "compiuta": 1, "burocrazia": 1, "mostra": 1, "gesto": 2, "emozione": 2, "trova": 1, "gentiloni": 3, "consumi": 1, "macchinari": 1, "veicoli": 1, "febbraio": 1, "maggio": 2, "180mila": 1, "abbassata": 1, "riduzione": 2, "paesi": 1, "altroeuroarea": 1, "considerando": 1, "effetto": 2, "giugno": 1, "30novembre": 1, "tria": 1, "ferme": 1, "crollo": 3, "imprese": 3, "calo": 1, "96mila": 1, "chiacchiere": 2, "zero": 3, "tornata": 1, "madia": 1, "ridotto": 2, "partecipate": 1, "poltrone": 2, "nostalgia": 1, "antipatici": 5, "imprenditore": 2, "ucciso": 1, "ladro": 1, "introdotto": 2, "esasperato": 1, "rapine": 1, "pare": 2, "volevo": 4, "ucciderlo": 1, "mirato": 1, "gambe\u201d": 1, "commentare": 1, "bar": 1, "dolorosa": 1, "ovvio": 2, "riparta": 1, "legittima": 1, "porto": 2, "armi": 1, "farlo": 5, "posto": 5, "gomma": 2, "umana": 2, "eccetera": 2, "aziende": 3, "italiane": 8, "strategica": 1, "bisogna": 21, "investire": 7, "africa": 2, "sostenibilit\u00e0": 2, "ambientale": 2, "enel": 1, "green": 1, "power": 1, "riescono": 2, "bucare": 1, "sottolinearle": 1, "rilanciarle": 1, "lasciarla": 1, "cinesi": 1, "fattore": 1, "trainante": 1, "verde": 1, "segreto": 1, "carcere": 2, "condannati": 1, "grado": 3, "bossi": 1, "denunciandolo": 1, "appropriazione": 1, "indebita": 1, "condonato": 2, "produttori": 1, "sigarette": 1, "elettroniche": 2, "mentire": 1, "estraneo": 1, "restituire": 3, "parlava": 1, "accoda": 1, "oppure": 3, "tace": 4, "neanche": 3, "giornali": 8, "professor": 5, "roberto": 6, "burioni": 7, "siccome": 2, "difende": 3, "scienza": 4, "carattere": 3, "scomode": 1, "unico": 2, "contestare": 2, "mille": 2, "lanciate": 1, "addosso": 7, "quotidianamente": 1, "prendendo": 3, "flessibilit\u00e0": 1, "bugia": 2, "galattica": 1, "divenendo": 1, "virale": 2, "carlo": 5, "calenda": 2, "protagonista": 1, "varie": 2, "trattative": 1, "europee": 2, "ambasciatore": 1, "spacciatori": 1, "ascoltate": 1, "surreale": 1, "sconvolgenti": 1, "iniziano": 1, "marchette": 1, "edile": 1, "avanza": 1, "toccher\u00e0": 1, "vicepremier": 4, "venire": 2, "chiarito": 1, "ragionamento": 1, "sbirciare": 1, "buco": 1, "serratura": 1, "sconvolge": 3, "definizione": 1, "aumentare": 4, "piaga": 1, "rendere": 1, "facili": 1, "licenziamenti": 6, "incentivi": 2, "assumere": 1, "evade": 1, "rinviare": 2, "fatturazioni": 1, "sanzionare": 1, "evasione": 2, "altrettanto": 1, "novanta": 1, "inneggiando": 1, "dio": 1, "agitavano": 1, "cappio": 1, "gridavano": 1, "ladrona": 5, "sembravano": 1, "onesti": 3, "conferma": 3, "restituirli": 1, "comprato": 1, "lauree": 1, "albania": 1, "diamanti": 1, "tanzania": 1, "rendiamo": 1, "gattini": 3, "gattuso": 1, "spiega": 2, "imposto": 1, "signore": 3, "m": 1, "evaso": 1, "presunta": 2, "bufala": 2, "dimostrano": 1, "vicende": 2, "personali": 1, "debbano": 1, "ricadere": 1, "differenza": 2, "accorto": 2, "finta": 2, "rivedo": 1, "gettato": 1, "barbara": 4, "jerkov": 1, "messaggero": 2, "proposte": 4, "zagrebelsky": 1, "bonus": 12, "raggi": 5, "immaginato": 1, "cottolengo": 3, "sociale": 2, "torino": 8, "accoglienza": 1, "calore": 1, "intera": 2, "diventato": 4, "varcare": 1, "porte": 3, "istituzione": 2, "don": 2, "andrea": 2, "collaboratori": 1, "progetti": 5, "proseguiranno": 1, "colore": 4, "arcobaleno": 1, "conservo": 1, "ricordi": 1, "ragazze": 2, "bambine": 1, "dedicato": 1, "preghiera": 1, "regalato": 1, "dono": 1, "amicizia": 1, "dimaio": 2, "bastano": 1, "secondi": 2, "fortis": 1, "smentire": 3, "girare": 1, "aumentati": 1, "attaccavano": 1, "servivano": 1, "elettorali": 7, "galantuomo": 12, "arrivati": 1, "confermato": 3, "beb\u00e8": 2, "cancellato": 1, "parzialmente": 1, "reintrodotto": 1, "18enni": 1, "contestato": 1, "500\u20ac": 3, "pentaleghisti": 1, "utili": 3, "confermano": 2, "confermate": 1, "rovesciato": 3, "quintali": 2, "provano": 1, "copiarci": 1, "copiate": 1, "lanciato": 2, "dimezza": 2, "abbassa": 1, "lavoratori": 2, "rischiano": 1, "errori": 1, "copiato": 1, "copiateci": 1, "rimettiamo": 1, "redditi": 1, "salviamo": 1, "mobilitarsi": 1, "diecimila": 1, "risposto": 2, "appello": 4, "firmando": 1, "petizione": 1, "sbloccare": 2, "18app": 3, "diciottenni": 4, "novembre": 2, "tardi": 4, "cancelli": 2, "misura": 1, "invito": 2, "spendete": 1, "segnale": 2, "taglia": 1, "costruisce": 2, "libreria": 1, "compie": 2, "rivoluzionario": 1, "piena": 1, "attiva": 1, "adulta": 1, "mangia": 1, "lucio": 1, "presta": 1, "squadra": 2, "lavorato": 3, "tenere": 4, "capolavori": 1, "innovazione": 4, "poesia": 1, "futuro": 19, "vivere": 6, "raccontare": 4, "aiuta": 1, "educativo": 1, "sfida": 1, "affascinante": 1, "salver\u00e0": 3, "stupida": 4, "palco": 1, "pier": 3, "rilanciare": 2, "offrendo": 1, "alternativa": 3, "praticamente": 1, "ragionare": 1, "illustriamo": 1, "grandi": 4, "linee": 1, "riducendo": 2, "quindi": 4, "governa": 2, "sapr\u00e0": 1, "ascoltare": 1, "strategia": 2, "studiata": 1, "team": 1, "sbattere": 4, "mostrare": 3, "capo": 4, "umano": 1, "scientificamente": 1, "costruito": 2, "tavolino": 1, "piacciono": 1, "reali": 1, "gattino": 1, "babbo": 2, "piccola": 3, "diciottenne": 1, "compra": 1, "libro": 5, "bloccato": 1, "bonusrenzi": 1, "vogliono": 5, "cancellare": 1, "facciamoci": 2, "sentire": 3, "taglino": 1, "tagliare": 2, "dovevano": 5, "abolire": 5, "fermato": 2, "assumersi": 1, "fallimento": 2, "possano": 1, "squallida": 3, "reagire": 7, "colpo": 14, "scandicci": 1, "sandro": 1, "fallani": 1, "preparato": 1, "tagliando": 1, "approfittato": 1, "caff\u00e8": 1, "chiacchiera": 2, "incontrati": 1, "preoccupazione": 1, "risparmi": 1, "molta": 1, "voglia": 8, "molliamo": 1, "mettendo": 2, "rischio": 4, "irresponsabili": 1, "ottenere": 1, "consenso": 2, "sfasciando": 3, "bocciatura": 2, "mercati": 10, "grave": 2, "miglior": 1, "speculatori": 4, "fermatevi": 5, "abbassate": 1, "aprite": 1, "dialogo": 2, "cambiate": 1, "formulato": 1, "controproposta": 2, "dimezzerebbe": 1, "quota": 6, "abbasserebbe": 1, "collaborare": 2, "prezzo": 3, "follia": 3, "caro": 4, "lunga": 2, "claudio": 1, "cerasa": 1, "direttore": 5, "foglio": 1, "crisi": 7, "balle": 1, "spaziali": 1, "raccontate": 1, "flop": 1, "concludo": 1, "pieno": 2, "ottimismo": 1, "piccole": 2, "guerriglie": 1, "quotidiane": 3, "lascia": 1, "commento": 2, "astenersi": 3, "riconosciamo": 1, "volo": 2, "topten": 1, "corriere": 5, "capodoglio": 1, "spiaggiato": 1, "indonesia": 1, "letteralmente": 1, "plastica": 8, "pezzi": 3, "chili": 1, "bottiglie": 1, "sacchetti": 5, "infradito": 1, "mari": 2, "talmente": 1, "pieni": 2, "muoviamo": 1, "mare": 2, "pesci": 1, "allarme": 1, "world": 1, "economic": 1, "forum": 1, "davos": 1, "propriamente": 1, "associazione": 2, "ambientalista": 1, "ricerca": 4, "producono": 1, "salvano": 1, "pianeta": 1, "sconfiggere": 2, "inquinamento": 1, "criticato": 3, "virginia": 3, "mancanza": 2, "pulizia": 1, "manto": 1, "stradale": 1, "scadente": 1, "autobus": 1, "amministrazione": 2, "casamonica": 1, "confronto": 1, "diversi": 4, "risposte": 1, "profili": 2, "finti": 4, "contestavano": 1, "operato": 1, "limitano": 1, "insultare": 4, "sparire": 1, "fateci": 4, "caso": 4, "condannato": 4, "scandali": 2, "vola": 1, "economici": 1, "ambiente": 1, "massimo": 6, "sparisci": 1, "ritirati": 1, "vattene": 1, "passi": 3, "linea": 3, "suicida": 1, "presentando": 2, "paghiamo": 2, "interessi": 3, "cifra": 2, "aggiuntiva": 1, "stanziata": 1, "finto": 1, "risparmiatori": 5, "artigiani": 1, "fallite": 1, "subordinati": 1, "carica": 1, "impianti": 1, "rifiuti": 2, "vintage": 1, "impianto": 1, "compostaggio": 1, "modernit\u00e0": 2, "portati": 1, "germania": 2, "ferroviarie": 1, "bloccate": 1, "ischia": 6, "fanghi": 1, "terreni": 1, "agricoli": 1, "chiusure": 5, "domenicali": 4, "sussidi": 5, "crea": 1, "giocano": 1, "ambientalisti": 1, "rendono": 1, "agricoltura": 2, "lasciarvi": 1, "domenicale": 3, "prendo": 1, "pronto": 2, "libera": 3, "toninelli": 16, "bislacche": 2, "sentite": 3, "rifarlo": 1, "corsa": 2, "pagando": 1, "centesimo": 2, "schiaffo": 1, "ulteriore": 1, "ingiusto": 1, "genovesi": 2, "trolls": 1, "sbizzarriti": 1, "topolino": 2, "preferito": 1, "pippo": 1, "paperino": 1, "pietra": 1, "miliare": 1, "compleanno": 1, "allarga": 1, "passeggiare": 1, "mattina": 2, "fin": 2, "chiacchierare": 1, "camerieri": 1, "baristi": 1, "terrorizzati": 1, "ipotesi": 3, "direte": 1, "negozi": 4, "fasciarsi": 2, "sfasciare": 1, "credete": 1, "gioved\u00ec": 1, "bloccata": 2, "vendita": 1, "catena": 1, "litigato": 2, "termovalorizzatori": 1, "tav": 12, "valico": 3, "gronda": 3, "ruolo": 1, "draghi": 5, "prescrizione": 1, "wrestling": 1, "bisticciano": 1, "inchioda": 1, "bloccano": 2, "fuggono": 2, "capitali": 1, "litiga": 3, "macron": 3, "merkel": 1, "trovano": 2, "verr\u00e0": 2, "tagliata": 1, "rincorrono": 1, "nazionalisti": 2, "bocca": 1, "decisioni": 2, "massacro": 3, "repubblica": 8, "centrafricana": 1, "quarantadue": 1, "uccise": 1, "parrocchia": 1, "vicario": 1, "generale": 2, "diocesi": 1, "musulmani": 1, "sfollati": 3, "cattolica": 2, "locale": 2, "accolto": 1, "generoso": 1, "coraggiosa": 1, "profetica": 1, "papa": 1, "francesco": 1, "profeticamente": 1, "giubileo": 1, "bangui": 1, "martoriato": 1, "pochissimi": 1, "quotidiani": 1, "eppure": 3, "uccisi": 1, "angolo": 2, "inspiegabilmente": 2, "martiri": 1, "portano": 1, "voti": 5, "internazionale": 3, "smettere": 3, "voltare": 1, "causa": 2, "tiziano": 3, "nuovamente": 1, "televisivo": 1, "000\u20ac": 2, "difeso": 2, "avvocato": 4, "luca": 1, "mirco": 1, "sopportare": 1, "diffamazioni": 2, "giudici": 4, "saper": 1, "nessun": 6, "ridar\u00e0": 1, "sofferto": 1, "menzogne": 1, "curioso": 1, "daranno": 1, "brexit": 1, "ricapitoliamo": 1, "regno": 2, "unito": 2, "uscire": 2, "promotori": 2, "uscita": 2, "raccontavano": 1, "dimostrato": 1, "contrario": 3, "produce": 2, "catastrofe": 1, "medio": 2, "vedremo": 2, "may": 1, "indire": 1, "londra": 1, "mentito": 2, "inglesi": 1, "appare": 1, "classe": 2, "pagher\u00e0": 2, "decisione": 4, "tradire": 1, "propri": 2, "disintegrare": 1, "propria": 3, "collega": 3, "santillo": 3, "dichiarazione": 2, "dovrei": 1, "tacere": 1, "nominato": 1, "mario": 4, "monti": 5, "assenze": 2, "nominare": 1, "sappia": 1, "nomina": 1, "aggiungo": 1, "usare": 1, "infilato": 2, "vecchia": 1, "dicevano": 1, "voler": 2, "giocato": 1, "pelle": 4, "fincantieri": 2, "navi": 2, "ponti": 1, "renzo": 4, "detta": 1, "rifiuta": 1, "nocondonodimaio": 1, "pensioni": 2, "preso": 6, "abolito": 4, "fornero": 4, "abbassato": 2, "aspettative": 2, "penalizzazioni": 1, "scopriamo": 2, "pensione": 2, "anticipata": 1, "accettare": 1, "decurtazione": 1, "accetti": 1, "rinunciare": 1, "voleva": 1, "soltanto": 3, "brutta": 2, "ape": 1, "anticipo": 1, "pensionistico": 1, "populista": 3, "vai": 2, "luna": 1, "elettori": 6, "favorito": 1, "amica": 2, "privilegiato": 1, "utilizzata": 1, "vergognoso": 1, "giornalista": 7, "franco": 1, "bechis": 1, "informa": 1, "incriminata": 1, "mater": 1, "biotech": 1, "produzione": 3, "industriale": 3, "bio": 1, "butandiolo": 1, "materie": 1, "rinnovabili": 1, "recato": 1, "ricordava": 1, "scrivevano": 1, "geniale": 1, "correre": 3, "mutui": 2, "rate": 1, "macchina": 1, "care": 1, "fidi": 1, "paradosso": 2, "flattax": 3, "superamento": 2, "scampoli": 1, "slogan": 2, "forzato": 1, "rispettare": 2, "patto": 1, "rotto": 1, "rispondo": 2, "sopra": 3, "triplicato": 1, "quartiere": 2, "producendo": 1, "minuto": 1, "battuta": 1, "continueremo": 1, "rinnovo": 2, "togliete": 1, "stralciate": 1, "schifezza": 1, "abusivismo": 2, "muore": 1, "polemizzato": 1, "sindrome": 8, "down": 6, "richiesto": 1, "gentile": 1, "ospitalit\u00e0": 1, "pur": 2, "avendone": 1, "\u2013": 2, "maggior": 1, "minacce": 2, "informazione": 2, "precisazioni": 1, "caudillo\u201d": 1, "replicare": 2, "polito": 1, "nipote": 2, "bimba": 1, "casi": 2, "morbillo": 1, "bari": 1, "causati": 1, "bambina": 2, "novax": 4, "delirio": 1, "notav": 2, "noolimpiadi": 1, "nogronda": 1, "ripristinare": 1, "obbligo": 3, "lorenzin": 1, "giocando": 1, "pugno": 1, "deboli": 1, "veramente": 1, "pericolosi": 1, "grilloleghisti": 3, "torto": 2, "supera": 2, "pannolini": 1, "costano": 1, "spese": 2, "impatta": 1, "ricorre": 1, "aiuto": 3, "nonni": 4, "detti": 1, "diamo": 2, "denaro": 1, "cambier\u00e0": 1, "istituito": 1, "bonusbeb\u00e8": 3, "aiutato": 2, "centinaia": 4, "tolto": 1, "zac": 1, "promettono": 2, "regaleranno": 1, "incolta": 1, "podere": 1, "demografica": 1, "regalando": 2, "terreno": 1, "incolti": 1, "mezzogiorno": 1, "seria": 4, "ricevuto": 2, "molte": 3, "telefonato": 1, "assoluzione": 3, "fair": 1, "play": 1, "vada": 1, "insulti": 4, "massacrate": 1, "dimentico": 1, "assolto": 1, "garantista": 2, "giornalisti": 5, "colpevoli": 3, "lavorando": 2, "lavorano": 2, "trasporto": 1, "ospedali": 1, "musei": 1, "stadi": 1, "ristoranti": 1, "professioni": 1, "ovunque": 1, "sindaci": 3, "contrari": 1, "filosofia": 1, "base": 1, "chiusura": 4, "stessa": 1, "ferma": 4, "avvitata": 1, "assistenzialismo": 6, "decrescita": 2, "aperture": 1, "diversit\u00e0": 1, "sconfiggono": 1, "urne": 1, "tribunali": 1, "giudizio": 1, "magistrati": 3, "continuer\u00f2": 1, "olimpiadi": 2, "sperimentando": 1, "sitav": 1, "salsomaggiore": 2, "italia2030": 2, "terme": 1, "rocco": 3, "casalino": 5, "insiste": 1, "fermarsi": 2, "diretti": 1, "rilancia": 1, "orrore": 1, "mostrato": 1, "nipotina": 3, "zio": 1, "so": 1, "rende": 7, "vergogno": 2, "sorriso": 2, "trisomia": 1, "lezzi": 2, "scientifica": 1, "gradi": 2, "ride": 1, "crepapelle": 1, "rappresenta": 2, "ridete": 1, "condizionatori": 1, "viadotto": 4, "autostradale": 3, "gaffe": 1, "ennesima": 1, "dimostrazione": 1, "incompetenza": 1, "appendino": 4, "grillina": 2, "riteneva": 1, "delrio": 1, "francesi": 1, "impattante": 1, "storica": 1, "chilometri": 1, "soli": 2, "risparmiato": 2, "originario": 1, "eccessivo": 1, "opera": 3, "cara": 2, "chiama": 4, "capacit\u00e0": 2, "bloccando": 1, "smetti": 2, "prenditi": 1, "finanziata": 1, "bloccarla": 1, "disegnare": 1, "metti": 1, "frantumano": 1, "sgretolamento": 1, "corso": 2, "scenderanno": 1, "tagliarsi": 1, "isolarsi": 1, "infelice": 1, "gerardo": 1, "greco": 1, "w": 1, "maltempo": 4, "cittadina": 1, "rispettata": 2, "schifose": 1, "squallide": 1, "indegne": 1, "portavoce": 3, "conseguenza": 1, "dimissioni": 5, "abituato": 1, "politici": 2, "povere": 1, "stranieri": 1, "superato": 1, "limite": 2, "vadano": 1, "super": 2, "stipendio": 1, "insulta": 3, "ciao": 1, "tiberio": 1, "fotografo": 1, "fortunato": 1, "lavorare": 4, "treno": 2, "chiedervi": 1, "succedendo": 1, "muoverci": 1, "piange": 1, "ambientalismo": 1, "salotto\u201d": 1, "cancellata": 1, "ripensateci": 1, "nomine": 1, "peggiore": 1, "tradizione": 1, "emergenza": 2, "regioni": 1, "dolomiti": 1, "sicilia": 1, "rischiamo": 1, "smettete": 1, "litigare": 2, "riaprite": 2, "ideato": 1, "chiuso": 2, "spendeteli": 1, "utilizza": 1, "approvare": 1, "trentamila": 2, "case": 3, "cognome": 1, "flagellata": 1, "ennesimo": 1, "dietro": 1, "asia": 4, "bibi": 2, "condanna": 5, "blasfemia": 1, "splendida": 1, "diciamola": 1, "prendiamo": 1, "sbloccaitalia": 1, "irap": 1, "superammortamento": 1, "segno": 6, "consecutivi": 1, "opere": 4, "pubbliche": 3, "cambiano": 4, "mercato": 1, "aprono": 2, "scusate": 1, "rimediamo": 1, "pubblicata": 1, "pagamento": 1, "richiesta": 1, "archiviazione": 1, "consip": 2, "tribunale": 2, "giustiniani": 3, "pagailpopolo": 1, "servita": 1, "perfettamente": 1, "importanza": 2, "velocit\u00e0": 2, "tappa": 2, "metropolitana": 1, "volont\u00e0": 2, "lione": 1, "venezia": 1, "isolare": 1, "sadomasochismo": 1, "sinagoga": 2, "testimoniare": 1, "vicinanza": 2, "ebraica": 1, "terribili": 1, "pittsburgh": 1, "considero": 2, "rappresentante": 1, "antisemita": 1, "combattuto": 2, "predappio": 1, "inneggiavano": 1, "fascismo": 3, "ironizzavano": 1, "auschwitz": 1, "urlare": 2, "dimenticare": 1, "ripeto": 2, "ribadisco": 1, "compensare": 1, "subire": 2, "memoria": 2, "gilberto": 1, "benetton": 3, "trovo": 3, "sciacalli": 1, "codardi": 1, "lecchini": 1, "ruffiani": 1, "potenti": 1, "turno": 1, "improvvisamente": 1, "spariscono": 1, "gazzettino": 2, "bestia": 1, "insultano": 2, "offendono": 2, "azione": 1, "invasato": 1, "filo": 1, "spedito": 1, "bombe": 1, "soros": 2, "cnn": 1, "mira": 1, "bersagli": 1, "preferiti": 1, "destra": 2, "processato": 1, "punito": 1, "personalmente": 2, "prende": 1, "pistola": 1, "spara": 1, "macerata": 1, "candidato": 2, "traini": 2, "sparato": 1, "distanze": 1, "piaciuto": 3, "invitare": 1, "bianca": 1, "valorizza": 1, "razzismo": 1, "vittima": 2, "colpevole": 1, "immigrato": 1, "sostanza": 1, "civilt\u00e0": 1, "mancata": 1, "tap": 3, "ammettono": 3, "ilva": 5, "tenendo": 1, "aperta": 3, "riempito": 1, "cambieranno": 1, "alternative": 1, "distruggere": 4, "finanze": 1, "potere": 3, "garantito": 1, "promettendo": 3, "potevano": 1, "realizzare": 2, "presi": 3, "scopriranno": 1, "avvelena": 1, "clima\u201d": 1, "domanda": 3, "drammatica": 1, "vice": 3, "finanziaria": 2, "portando": 2, "estero": 1, "invita": 1, "toni": 1, "calmare": 1, "ineffabile": 1, "credibile": 1, "irresponsabilit\u00e0": 2, "gira": 4, "incontro": 1, "istante": 1, "chongqing": 2, "popolosa": 1, "abitano": 1, "metropoli": 1, "popolazione": 1, "conferenze": 2, "salutare": 1, "sant": 2, "anna": 3, "pisa": 2, "bravissimi": 2, "neonato": 1, "consolato": 1, "circa": 4, "marea": 1, "opportunit\u00e0": 1, "turisti": 2, "commerciale": 1, "globale": 1, "valorizzare": 1, "ragionamenti": 1, "semplici": 1, "preferisce": 1, "proviamoci": 1, "boccia": 1, "frego": 5, "prosegue": 1, "alleanza": 2, "vinceremo": 1, "prossime": 1, "alleati": 2, "folle": 2, "bocciata": 1, "tedesca": 1, "afd": 1, "sorge": 2, "spontanea": 2, "bocciare": 1, "autogol": 2, "internazionali": 5, "godono": 3, "leghista": 5, "render\u00e0": 1, "suicidio": 1, "finanziario": 1, "agor\u00e0": 1, "operai": 3, "moltissimo": 2, "liguria": 1, "brillanti": 1, "intuizioni\u201d": 1, "figuratevi": 2, "urlano": 2, "stanziati": 1, "urla": 2, "rispetta": 2, "eurodeputato": 1, "tal": 1, "ciocca": 1, "scarpa": 1, "made": 1, "italy": 1, "pesta": 1, "volontariamente": 1, "appunti": 1, "moscovici": 1, "recupera": 1, "commentano": 1, "pestando": 1, "documenti": 1, "scena": 2, "coprire": 2, "farsa": 1, "portafogli": 1, "davide": 1, "faraone": 1, "autistica": 1, "sara": 1, "meritava": 2, "merita": 5, "risatine": 1, "stupide": 1, "applaudiva": 1, "circo": 2, "lottato": 1, "credibilit\u00e0": 3, "sfasciano": 1, "tenuta": 1, "riusciranno": 1, "folli": 1, "titolo": 2, "parli": 1, "chiederanno": 1, "piangono": 1, "motto": 1, "arrivata": 1, "serie": 2, "azioni": 1, "civili": 2, "intentate": 1, "confronti": 1, "editoriale": 2, "novantacinquemila": 1, "ripagare": 1, "mole": 1, "buttata": 1, "salute": 2, "condividerlo": 1, "5stelle": 2, "evento": 1, "noto": 2, "genovese": 1, "pago": 1, "soffrono": 1, "autismo": 2, "disturbi": 1, "spettro": 1, "autistico": 2, "combatte": 4, "discriminato": 1, "chiude": 1, "annuale": 1, "scherno": 1, "garantismo": 1, "giustizialismo": 1, "diritti": 4, "mattarella": 1, "inaccettabile": 2, "scala": 1, "prendersi": 1, "offendere": 1, "massacrato": 1, "licenziato": 1, "cartellone": 1, "svenduti": 1, "cialtronaggine": 2, "leopolda9": 6, "colpito": 1, "persona": 2, "fermarli": 1, "partire": 1, "comitati": 4, "civici": 2, "ritorno": 2, "futuro\u201d": 1, "facciamola": 1, "condividono": 1, "code": 1, "successo": 1, "giuste": 1, "colpisca": 1, "mollare": 1, "eccoci": 1, "vivendola": 1, "incontrano": 1, "curano": 1, "professore": 2, "scienziato": 1, "giornaliste": 1, "difendono": 1, "sceglie": 2, "alterna": 1, "battute": 1, "riflessioni": 1, "profonde": 1, "cinquanta": 2, "tavoli": 2, "discutono": 1, "meraviglioso": 3, "pronte": 1, "lanciare": 1, "scuso": 1, "rimaste": 1, "considerano": 2, "ritornoalfuturo": 4, "tributato": 1, "applauso": 1, "lunghissimo": 1, "alzate": 1, "avvenuto": 1, "riceveva": 1, "agenzie": 1, "rating": 1, "declassare": 1, "regalano": 1, "speculazione": 1, "competenza": 1, "tornato": 1, "under30": 1, "attorno": 1, "emozioni": 1, "perdono": 1, "scendono": 2, "carro": 3, "dimenticano": 1, "sanno": 2, "chiamava": 2, "atteggiamento": 2, "beneficiato": 1, "rancoroso": 1, "spinto": 2, "passione": 1, "doppio": 1, "stazione": 5, "pazzesche": 2, "volley": 1, "campionesse": 1, "strepitose": 1, "vederci": 1, "fanpage": 1, "galoppa": 1, "offriamo": 1, "dimezzare": 1, "sbrigarsi": 1, "mandando": 1, "disperato": 1, "glielo": 1, "rimangiato": 1, "scudo": 2, "n\u00e9": 4, "studente": 1, "giurisprudenza": 1, "mediocrit\u00e0": 1, "conviene": 1, "paga": 4, "sbaglia": 1, "flat": 3, "tax": 3, "secco": 1, "sistemeranno": 1, "pregresso": 1, "facce": 1, "tombale": 1, "abusive": 1, "chieder\u00e0": 1, "entri": 1, "potrebbero": 1, "salvate": 1, "costruite": 1, "abusivo": 1, "seriamente": 1, "floris": 1, "rinfacciasse": 1, "astio": 1, "restituito": 1, "venezuela": 1, "tracciare": 1, "proveremo": 1, "labbra": 1, "lasciando": 1, "assegni": 1, "noia": 2, "soliti": 1, "piede": 1, "svolto": 1, "vertice": 1, "preferendo": 1, "restare": 3, "acqua": 1, "partecipa": 1, "riunioni": 1, "concittadini": 1, "sopportate": 1, "finisce": 2, "lanceremo": 1, "impegno": 3, "comune": 2, "congresso": 3, "candidature": 1, "odiatori": 1, "professione": 1, "venditori": 1, "fumo": 1, "riccioli": 3, "carichi": 1, "manda": 1, "devi": 1, "apriremo": 1, "spiegata": 1, "penalizzi": 1, "programma": 3, "ulisse": 1, "emoziona": 1, "alberto": 1, "angela": 1, "raiuno": 1, "nedo": 1, "fiano": 1, "accompagnava": 1, "campi": 1, "sterminio": 1, "rivivere": 1, "vincere": 1, "discriminati": 1, "mensa": 1, "ragioni": 1, "economiche": 1, "basata": 1, "genera": 1, "mostri": 1, "lodi": 2, "disumano": 1, "zitti": 4, "rinunceremo": 1, "umani": 4, "chiamiamo": 1, "aeroporto": 5, "investitore": 1, "soci": 1, "asiatico": 1, "milioni\u20ac": 1, "duemila": 1, "nuovi": 1, "rispettando": 1, "ottemperando": 1, "valutazione": 1, "impatto": 1, "centinaio": 1, "immenso": 1, "accusa": 1, "pista": 1, "costretto": 3, "patrimoniale": 2, "documento": 1, "aumenteranno": 1, "rendersi": 1, "volevano": 2, "pagheranno": 4, "mostrer\u00e0": 1, "pasticcio": 2, "chiamato": 2, "riportato": 1, "diventando": 1, "persino": 2, "seguiremo": 1, "correnti": 1, "crolla": 2, "farci": 1, "autostrada": 2, "eh": 1, "concentratissimo": 1, "fermando": 2, "proposto": 2, "danilo": 1, "studiato": 2, "dossier": 3, "merci": 1, "utilizzano": 1, "tunnel": 2, "brennero": 2, "attivo": 1, "capisce": 3, "entrambi": 1, "salire": 1, "investitori": 1, "andarsene": 1, "euforia": 1, "governavamo": 1, "cercare": 3, "raggiungere": 1, "sorpassare": 1, "grecia": 1, "riconoscer\u00e0": 1, "rimuovere": 1, "pagata": 1, "donna": 2, "pachistano": 1, "colpevole\u201d": 1, "ges\u00f9": 1, "cristo": 1, "condannata": 1, "definitiva": 1, "capaci": 1, "unirsi": 2, "dividersi": 1, "autorit\u00e0": 1, "pachistane": 1, "liberare": 1, "gioie": 1, "esperienza": 1, "abbracciare": 1, "meriam": 1, "imprigionata": 1, "motivo": 1, "sudan": 1, "liberata": 1, "recuperata": 1, "piacerebbe": 1, "lavorassimo": 1, "consentire": 1, "riassaporare": 1, "ottobre": 3, "borgonovo": 2, "incoraggiato": 1, "accompagnato": 1, "chantal": 1, "carrozzina": 1, "baggio": 1, "entrava": 1, "fiesole": 1, "piansero": 1, "rivedendo": 1, "b2": 1, "sognare": 1, "vestiva": 1, "calzoncini": 1, "coperta": 1, "malato": 1, "doloroso": 1, "intero": 1, "decise": 1, "mostrarsi": 1, "sla": 1, "stronza": 1, "consegnargli": 1, "pensa": 5, "scherzando": 2, "povera": 1, "miliardari": 1, "guadagnano": 1, "diffidenze": 1, "stupirci": 1, "reazioni": 1, "ingranando": 1, "fenomenologia": 1, "chiamano": 3, "pace": 2, "valanghe": 1, "applausi": 1, "attaccando": 2, "sondaggi": 4, "rimangono": 1, "incertezza": 1, "frustrati": 1, "aspettando": 1, "incassi": 2, "raddoppiati": 1, "rgs": 1, "procedere": 1, "concorso": 3, "ordinario": 1, "giuseppe": 1, "illegittimit\u00e0": 1, "scoop": 1, "concessionarie": 1, "autostradali": 1, "permettere": 2, "dubbi": 1, "aspettiamo": 1, "iena": 2, "giarrusso": 3, "intervisti": 1, "alpa": 1, "potenzialmente": 2, "iscritto": 1, "richieste": 1, "commissioni": 1, "chiamavano": 2, "deriso": 1, "calunniato": 1, "aggressione": 1, "diceva": 2, "accordo\u201d": 1, "vedete": 2, "bravi": 1, "tirato": 1, "maschera": 1, "tifo": 2, "compiace": 1, "altrove": 1, "unanime": 1, "davano": 1, "caudillo": 1, "accusavano": 1, "deriva": 5, "autoritaria": 3, "cnel": 2, "comprimere": 1, "valle": 2, "provincia": 2, "sondrio": 1, "scout": 3, "val": 2, "codera": 2, "fatica": 3, "attraverso": 2, "scalini": 1, "mussolini": 1, "radunavano": 1, "aquile": 1, "randagie": 1, "milanesi": 1, "raggiungevano": 1, "uniforme": 1, "proibita": 1, "fascistissime": 1, "parlo": 1, "sconosciuto": 1, "barbareschi": 1, "frasi": 1, "sanit\u00e0": 3, "tagli\u201d": 1, "prenda": 1, "briga": 1, "verificare": 1, "fondo": 1, "valeva": 1, "disegnino": 1, "autorizza": 1, "omonimo": 1, "caspita": 1, "conferire": 1, "denis": 1, "nadia": 2, "sessuale": 1, "nyc": 1, "amal": 1, "clooney": 1, "compagne": 1, "yazidi": 1, "toccato": 1, "indescrivibile": 1, "aiuti": 1, "sorelle": 1, "lavoriamo": 1, "rimanga": 1, "forme": 2, "maurizio": 2, "costanzo": 2, "solite": 1, "interviste": 1, "weekend": 2, "scoprono": 2, "elemosine": 1, "controllate": 1, "puro": 1, "spalle": 1, "imprenditori": 1, "nordest": 1, "democratica": 1, "fondata": 1, "sussidio": 1, "servir\u00e0": 1, "maturit\u00e0": 1, "serio": 1, "punta": 1, "motivi": 1, "ideologici": 2, "minacciata": 1, "ostia": 1, "insultata": 1, "domande": 1, "scrivere": 1, "federica": 3, "angeli": 1, "clan": 1, "spada": 1, "sentissero": 1, "minaccia": 4, "pratica": 1, "istiga": 1, "fondamentali": 1, "coraggio": 3, "discusso": 1, "rivolgendo": 1, "distruggendo": 1, "ripresa": 1, "disgraziate": 1, "infame": 2, "concepire": 1, "soluzione": 1, "conquista": 1, "medicina": 2, "allison": 2, "honjo": 2, "cancro": 2, "scrivo": 1, "combattendo": 2, "tumori": 2, "ospedale": 1, "nemico": 1, "tantissimi": 1, "inventato": 1, "immunoterapia": 1, "innovativo": 1, "meccanismo": 1, "terapia": 1, "dando": 1, "scoperta": 1, "adone": 1, "achille": 1, "bacio": 1, "nonne": 1, "combattono": 1, "belle": 1, "lucide": 1, "grato": 1, "contribuiscono": 1, "organizzativo": 1, "affettivo": 1, "masochista": 2, "anti": 3, "testacoda": 1, "resistenzacivile": 3, "detestato": 1, "disoccupazione": 10, "scendere": 1, "roccocasalino": 1, "4gatti": 1, "matematica": 1, "rubati": 3, "tratti": 1, "esseri": 1, "animali": 1, "nave": 1, "diciotti": 1, "gatti": 1, "vite": 1, "piazzadelpopolo": 1, "sfascisti": 1, "ginocchio": 1, "arrende": 2, "rassegna": 1, "manterranno": 1, "diversamente": 1, "interne": 2, "organizzare": 1, "venezuelana": 2, "resa": 1, "sudore": 1, "lasciamo": 1, "km": 1, "alessia": 1, "corri": 1, "infermieri": 1, "ricercatori": 1, "congressi": 2, "lasciai": 1, "rifiutai": 1, "candidandomi": 1, "paracadute": 1, "primarie": 2, "bellissimi": 1, "vittorie": 1, "sconfitte": 1, "vinte": 1, "trionfo": 1, "tonfo": 1, "politiche": 1, "pedonalizzazione": 1, "leopolde": 1, "inaugurazioni": 1, "fontanelli": 1, "pensionati": 1, "rottamazione": 1, "proposito": 3, "csm": 4, "numero": 1, "imprecisato": 1, "statisti": 2, "diramato": 1, "sforare": 1, "portandolo": 1, "contenuta": 1, "facilmente": 1, "reperibile": 1, "proponevo": 1, "ridurre": 1, "chiamata": 1, "capricorn": 1, "riduci": 1, "margine": 1, "tesi": 1, "figure": 1, "capirlo": 1, "leggerlo": 1, "spiegarglielo": 1, "strapazzo": 1, "riducete": 2, "potete": 1, "sforate": 1, "schizza": 1, "borsa": 1, "abolisci": 1, "parliamoci": 1, "rischiando": 1, "crederci": 1, "mantenendo": 1, "mentendo": 1, "claque": 1, "furbi": 2, "elezione": 1, "vicepresidente": 2, "complotto": 5, "ermini": 2, "grida": 1, "insaputa": 1, "togati": 2, "eletti": 1, "piattaforma": 1, "rousseau": 2, "pensabile": 1, "partecipato": 4, "lilli": 3, "gruber": 3, "elenco": 1, "bufale": 3, "rilanciando": 1, "ritorceranno": 1, "www": 3, "matteorenzi": 1, "assassino": 1, "creato": 1, "trovato": 1, "paio": 1, "infanzia": 1, "pomigliano": 2, "assunti": 1, "segreterie": 1, "particolari": 1, "migliora": 1, "peggiorare": 1, "audio": 1, "fico": 2, "svelano": 1, "fonti": 1, "dialogante": 1, "scommetto": 1, "scriveranno": 1, "potessimo": 1, "aliquota": 1, "dir\u00e0": 1, "inizi": 1, "accontentiamoci": 1, "ottimista": 1, "introdotta": 1, "poca": 1, "bruno": 1, "vespa": 1, "plastici": 1, "irrealizzabili": 1, "rientrato": 1, "shanghai": 1, "macao": 1, "hong": 1, "kong": 1, "distanza": 1, "parti": 1, "assurde": 1, "corre": 1, "intelligenza": 2, "artificiale": 2, "bigdata": 1, "intervengo": 1, "rai1": 1, "cerco": 1, "immobilismo": 1, "costretta": 1, "viso": 1, "sciogliere": 1, "propone": 1, "cene": 1, "chiarimento": 1, "iscritti": 1, "rispettabili": 1, "guardo": 1, "figuriamoci": 1, "giochi": 1, "deputati": 1, "stanotte": 1, "ostruzionismo": 1, "attimo": 1, "smetterla": 1, "individuino": 1, "ricostruire": 2, "bisagno": 1, "agevolazioni": 1, "fiscali": 1, "settori": 1, "favoletta": 2, "immane": 1, "sforzo": 1, "unitario": 1, "scaricabarile": 1, "mostrasse": 1, "volto": 1, "cercasse": 1, "necessarie": 1, "regione": 2, "argomenti": 1, "dividerci": 1, "nava": 1, "consob": 1, "autorevolezza": 1, "indipendenza": 1, "funzionano": 1, "costituzionalisti": 2, "preoccupati": 1, "evidentemente": 1, "ferie": 2, "complice": 4, "finanzier\u00e0": 1, "seri": 1, "renziana\u201d": 2, "autonomia": 1, "federalista": 1, "finanziamento": 1, "conta": 1, "affidamento": 1, "manipolare": 1, "informazioni": 1, "prova": 2, "usciti": 1, "peggior": 1, "preoccupante": 1, "solitamente": 1, "anticipa": 1, "marcia": 1, "licenzier\u00e0": 1, "calcola": 1, "devastanti": 1, "provvedimento": 3, "ideologico": 1, "domeniche": 1, "assicurano": 1, "arriver\u00e0": 1, "porter\u00e0": 1, "licenziamento": 1, "occupo": 1, "prendete": 1, "classifiche": 1, "presenza": 1, "tener": 1, "missioni": 1, "sostenere": 2, "bugiardo": 3, "cialtrone": 1, "produrranno": 1, "obbligare": 1, "licenziare": 1, "tira": 2, "visibilit\u00e0": 2, "fagocitato": 1, "inseguire": 1, "distrugge": 1, "separino": 1, "marte": 1, "perderanno": 1, "farneticanti": 1, "siede": 1, "violare": 1, "tranquillamente": 1, "aberrante": 1, "butta": 1, "immigrazione": 1, "preciso": 1, "calcolo": 1, "perdonano": 1, "ruba": 1, "martire": 1, "scontro": 3, "siciliani": 1, "collo": 2, "parlarne": 1, "sdegno": 1, "guardasigilli": 1, "ripetere": 1, "restituisci": 1, "vile": 1, "screditare": 1, "g7": 1, "tenta": 1, "rinuncia": 1, "europe": 1, "favorevoli": 1, "pressioni": 1, "propriet\u00e0": 1, "finanziamenti": 1, "date": 3, "cronaca": 1, "scandalizzato": 1, "ravenna": 1, "contano": 1, "permette": 1, "minacciare": 1, "velatamente": 1, "occupino": 1, "tacciono": 3, "parlavano": 1, "cantori": 1, "editorialisti": 1, "scandalizzavano": 1, "recuperati": 1, "annullamento": 1, "gara": 1, "rimangiarsi": 1, "ironia": 1, "sgraziata": 1, "ringraziamento": 1, "tema": 2, "guidi": 1, "teresa": 1, "bellanova": 1, "chiudono": 1, "complicate": 1, "resta": 1, "semplicissimo": 1, "dino": 1, "lavorava": 1, "collezionato": 1, "figuracce": 1, "storiche": 1, "regista": 1, "brizzi": 1, "ingiustamente": 1, "casta": 1, "sistemare": 1, "piazzato": 1, "lazio": 1, "controllare": 1, "concorsi": 1, "universitari": 1, "causato": 1, "continuando": 1, "sciacallaggio": 1, "sparare": 1, "mucchio": 1, "pensava": 1, "barsport": 1, "successive": 1, "prendevano": 1, "nomi": 1, "palombelli": 2, "anticipazione": 1, "rude": 1, "collegati": 1, "libia": 4, "occhiata": 1, "pericoloso": 1, "significhi": 1, "governare": 1, "maiuscola": 1, "dirette": 1, "spiaggia": 1, "sequestrano": 1, "povero": 1, "migrante": 1, "bordo": 1, "immediato": 1, "opinione": 1, "seguirli": 1, "privi": 1, "toccano": 1, "palla": 1, "geopolitico": 1, "arrabbiarti": 1, "edizione": 1, "riprese": 1, "rinunciato": 1, "immergermi": 1, "agosto": 3, "imparare": 2, "galileo": 1, "ideologia": 1, "attuale": 2, "orban": 1, "pessima": 1, "viktor": 1, "rappresenti": 1, "muri": 2, "egoismi": 1, "nasca": 1, "cadono": 1, "afferma": 1, "sconfigge": 1, "tieniti": 1, "teniamo": 1, "ventotene": 1, "aggiornato": 1, "indagavano": 1, "alfano": 1, "chiedeva": 1, "titolare": 1, "poteva": 1, "indagini": 2, "indagine": 2, "garantisti": 1, "chiediamo": 1, "doppiamorale": 1, "manganellare": 1, "web": 2, "comodo": 1, "difendeva": 1, "eritrei": 1, "guardia": 1, "costiera": 1, "sequestrati": 1, "valgono": 1, "ricordiamoci": 1, "canaglia": 1, "restiamo": 1, "fateliscendere": 1, "campania": 1, "superare": 1, "tornelli": 2, "accedere": 1, "comprare": 1, "biglietto": 2, "obliterarlo": 1, "fermi": 2, "acquistare": 1, "ticket": 1, "finch\u00e9": 1, "ignaro": 1, "oblitera": 1, "apre": 1, "scatta": 1, "ressa": 1, "precipitano": 1, "stagione": 2, "doveri": 2, "sorridere": 1, "furto": 1, "educare": 1, "priorit\u00e0": 2, "vergognarsi": 1, "minimizzare": 1, "enews": 1, "atroce": 1, "morire": 2, "tuttavia": 2, "spargere": 1, "veleni": 1, "ricevessero": 1, "matteorenziufficiale": 2, "posts": 2, "coltivo": 1, "magia": 1, "dividere": 1, "boomerang": 1, "gronda\u201d": 1, "sistema": 1, "montagna": 1, "rilanciano": 1, "ribattere": 1, "cavarsela": 1, "disparte": 1, "considerato": 1, "cercano": 1, "capri": 1, "espiatori": 1, "cerchiamo": 1, "scelgono": 1, "responsabili": 1, "manganellano": 1, "giudicato": 1, "campagne": 1, "bastasse": 2, "scopre": 1, "legale": 1, "aiscat": 1, "concessionari": 1, "sosta": 1, "soccorritori": 2, "straordinarie": 1, "straziate": 1, "unisce": 1, "divide": 1, "confermo": 1, "impongono": 1, "puntuale": 1, "punti": 2, "sembriamo": 1, "complici": 1, "pregiudizi": 1, "cordoglio": 1, "immensa": 1, "professionalit\u00e0": 1, "autocomplotto": 1, "aspettarsi": 1, "nojobs": 1, "girando": 1, "telefonini": 1, "dottoressa": 2, "silvia": 1, "braccini": 2, "conosco": 1, "sacrosanto": 1, "colpisce": 1, "posizione": 1, "preparati": 1, "decidere": 1, "laureati": 1, "conoscere": 2, "cugino": 1, "taverna": 1, "competenti": 1, "materia": 1, "blog": 1, "guru": 1, "spiegher\u00e0": 1, "discute": 1, "pazzesco": 1, "riflette": 1, "ripercussioni": 1, "stupidit\u00e0": 1, "naturale": 1, "esprimersi": 1, "scherza": 2, "criticano": 1, "odiano": 1, "copiano": 1, "80euro": 3, "definivano": 1, "mazzetta": 1, "ata": 1, "prendiamola": 1, "lamborghini": 1, "ibiza": 1, "segreti": 1, "portaborse": 1, "cugine": 1, "imprenditrici": 1, "pagliacciata": 1, "africani": 1, "marito": 1, "sorella": 1, "presunte": 2, "irregolarit\u00e0": 1, "cooperazione": 1, "prove": 1, "risultano": 1, "processo": 1, "evocare": 1, "titoli": 1, "udite": 2, "difender\u00e0": 1, "caporalato": 1, "piani": 1, "iniziali": 1, "esagerano": 1, "anticipando": 1, "tappe\ud83d\ude00": 1, "cercher\u00f2": 1, "barzellette": 1, "simpatici": 1, "schizzare": 1, "tecnica": 1, "simbolico": 1, "cercato": 1, "tasche": 1, "ceto": 1, "partono": 1, "bandierina": 1, "tg1": 1, "\ud83d\ude0a": 1, "piccoli": 1, "ferita": 1, "credibili": 1, "culturalmente": 1, "solido": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/renzi_emoji b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_emoji new file mode 100644 index 0000000..c519856 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_emoji @@ -0,0 +1 @@ +{"\ud83d\ude02": 1, "\ud83d\ude09": 2, "\ud83d\ude0a": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/renzi_sleep b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_sleep new file mode 100644 index 0000000..6ced19f --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Feb": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Mar": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Apr": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "May": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jun": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jul": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Aug": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 1, "10": 3, "11": 3, "12": 1, "13": 3, "14": 2, "15": 2, "16": 1, "17": 2, "18": 0, "19": 0, "20": 1, "21": 1, "22": 0, "23": 0}, "Sep": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 1, "9": 4, "10": 3, "11": 2, "12": 4, "13": 2, "14": 2, "15": 1, "16": 5, "17": 3, "18": 4, "19": 6, "20": 3, "21": 1, "22": 0, "23": 0}, "Oct": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 12, "10": 8, "11": 6, "12": 4, "13": 6, "14": 2, "15": 2, "16": 6, "17": 2, "18": 6, "19": 4, "20": 3, "21": 4, "22": 2, "23": 0}, "Nov": {"0": 0, "1": 2, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 5, "9": 8, "10": 6, "11": 11, "12": 9, "13": 2, "14": 3, "15": 2, "16": 4, "17": 2, "18": 5, "19": 6, "20": 3, "21": 1, "22": 0, "23": 1}, "Dec": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 1, "5": 0, "6": 0, "7": 0, "8": 10, "9": 7, "10": 6, "11": 10, "12": 5, "13": 6, "14": 1, "15": 7, "16": 7, "17": 12, "18": 5, "19": 4, "20": 4, "21": 7, "22": 2, "23": 4}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/renzi_trend.json b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_trend.json new file mode 100644 index 0000000..dfd8476 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_trend.json @@ -0,0 +1 @@ +{"31-Dec": 4, "30-Dec": 6, "29-Dec": 4, "28-Dec": 5, "27-Dec": 4, "24-Dec": 2, "23-Dec": 3, "22-Dec": 6, "21-Dec": 6, "20-Dec": 2, "19-Dec": 7, "18-Dec": 4, "17-Dec": 5, "16-Dec": 2, "15-Dec": 5, "14-Dec": 1, "13-Dec": 3, "12-Dec": 3, "11-Dec": 4, "10-Dec": 4, "9-Dec": 1, "8-Dec": 1, "7-Dec": 2, "6-Dec": 4, "5-Dec": 1, "4-Dec": 3, "3-Dec": 2, "2-Dec": 1, "1-Dec": 4, "30-Nov": 2, "29-Nov": 1, "28-Nov": 5, "27-Nov": 3, "26-Nov": 2, "25-Nov": 2, "24-Nov": 2, "23-Nov": 2, "22-Nov": 5, "21-Nov": 4, "20-Nov": 3, "19-Nov": 1, "18-Nov": 3, "17-Nov": 2, "16-Nov": 2, "15-Nov": 3, "14-Nov": 5, "13-Nov": 2, "12-Nov": 2, "11-Nov": 2, "10-Nov": 5, "9-Nov": 4, "8-Nov": 2, "6-Nov": 3, "5-Nov": 1, "4-Nov": 1, "3-Nov": 1, "31-Oct": 3, "30-Oct": 4, "29-Oct": 3, "28-Oct": 1, "26-Oct": 3, "25-Oct": 2, "24-Oct": 1, "23-Oct": 4, "22-Oct": 2, "21-Oct": 4, "20-Oct": 4, "19-Oct": 3, "18-Oct": 3, "17-Oct": 2, "16-Oct": 2, "15-Oct": 2, "14-Oct": 1, "13-Oct": 2, "12-Oct": 1, "11-Oct": 1, "10-Oct": 1, "9-Oct": 3, "8-Oct": 3, "7-Oct": 2, "6-Oct": 1, "5-Oct": 4, "4-Oct": 3, "3-Oct": 1, "2-Oct": 3, "1-Oct": 1, "30-Sep": 4, "29-Sep": 2, "28-Sep": 2, "27-Sep": 1, "26-Sep": 1, "25-Sep": 2, "24-Sep": 1, "22-Sep": 2, "21-Sep": 1, "20-Sep": 2, "16-Sep": 1, "14-Sep": 2, "13-Sep": 2, "12-Sep": 2, "10-Sep": 4, "9-Sep": 2, "7-Sep": 2, "6-Sep": 3, "5-Sep": 2, "4-Sep": 3, "3-Sep": 1, "31-Aug": 1, "29-Aug": 1, "26-Aug": 1, "25-Aug": 1, "23-Aug": 1, "22-Aug": 1, "20-Aug": 2, "17-Aug": 1, "16-Aug": 1, "14-Aug": 1, "13-Aug": 1, "11-Aug": 1, "10-Aug": 2, "9-Aug": 1, "8-Aug": 1, "7-Aug": 2, "6-Aug": 1, "5-Aug": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/renzi_words b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_words new file mode 100644 index 0000000..190e9c7 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/renzi_words @@ -0,0 +1,14125 @@ +grande +battaglia +educativa +culturale +fare +insieme +auguri +buonanno +ultimo +video +firenzesecondome +può +riguardare +michelangelo +gigante +assoluto +guardate +nascondere +cuore +san +lorenzo +ricordate +attaccato +buona +scuola” +tutte +critiche +legittime +chiaro +qualcosa +funzionava +cominciare +algoritmo +prof +prima +volta +dopo +decenni +altro +investiva +educazione +adesso +torna +passato +scuola +tagli +tagli +tagli +chiusa +unità +missione +edilizia +scolastica +ridotti +fondi +alternanza +scuola +lavoro +penalizzato +sostegno +alunni +maggiori +difficoltà +forse +qualcuno +potrebbe +riconoscere +fondi +scuole +invece +tagliano +educazione +tagliano +cultura +auguri +buon +anno +studenti +professori +comunque +fatto +chiacchierata +leggedibilancio +fabio +martini +stampa” +trovate +graditi +commenti +tempo +leggerla +31dicembre +quasi +mezzanotte +possiamo +lasciarci +andare +qualcosa +leggero +sperando +troll +stati +messi +letto +morto +norman +gimbel +tratta +autore +alcune +bellissime +canzoni +sigle +altro +esempio +mai +emozionato +davanti +killing +me +softly +with +his +song” +gimbel +autore +famose +sigle +televisive +storia +colonna +sonora +happy +days +quarantenni +cresciuti +fonzie +compagni +colonna +sonora +molto +semplice +stacco +musicale +ricordo +adolescenza +manovra +popolo +diventata +legge +subito +membri +governo +ruota +stupirei +occupassero +stasera +ogni +secondo +tg +rai +messaggio +barzelletta +fa +ridere +rivoluzione +adesso +cambia +aperto +balcone +palazzo +chigi +portato +bene +dichiarazioni +altro +comunque +imbarazzanti +maio +dice +prima +legge +scritta +pensando +italiani +effettivamente +taglio +imu +80€ +industria +misure +pensate +messicani +notoriamente +conte +dice +manovra +riscatto +italiani +paghino +dubbio +pensavo +pagassero +addirittura +altro +vorrebbero +costringerci +ignoranza +paura +libri +allora +potente +strumento +resistenza +civile +culturale +costruire +biblioteca +atto +profondamente +politico +medici +altro +resto +qualità +governanti +misurava +cultura +governati +parlato +ieri +durante +visita +biblioteca +laurenziana +passeggiata +dentro +firenze +secondo +me +parlato +biblioteche +oggi +frase +yourcenar +risposta +dare +trump +vorrebbe +dare +pistole +prof +scuole +americane +libri +unica +arma +portare +scuole +educazione +unica +salvezza +oggi +stelle +dicono +terroristi +democrazia +sotto +attacco +dopo +aver +dichiarato +ufficialmente +esaurita +povertà +dopo +aver +obbligato +parlamento +votare +legge +senza +aver +visto +testo +dopo +aver +fatto +inutile +guerra +europa +gestito +male +ridicola +retromarcia +bruxelles +dopo +aver +promesso +altro +reddito +780€ +cittadini +dopo +aver +raddoppiato +tasse +volontari +fatto +condono +fiscale +amici +amici +oggi +stelle +dicono +terroristi +speriamo +feste +restituiscano +tranquillità +livello +accuse +dovremo +trovare +ottimi +specialisti +livello +accuse +signori +vanno +aiutati +bene +ormai +evidente +dramma +legge +bilancio +peggio +italiani +buttiamola +ridere +amici +oggi +quotidiano +libero +pubblica +articolo +chissà +sento +parte +categoria +😂 +grazie +camminato +me +durante +terza +puntata +firenzesecondome +scoperto +meraviglie +san +lorenzo +prigionia +michelangelo +attenzione +fiorentina +biblioteche +vera +foto +fatina +invecchiata +pinocchio +certificato +morte +gioconda +insegnamenti +ipocrisie +allora +oggi +altro +lotta +evasori +altro +condoni +ringrazio +suggerimenti +critiche +fa +piacere +passo +dopo +passo +sempre +chiara +operazione +culturale +voluto +fare +lavoro +può +essere +apprezzato +meno +comunque +tentativo +scommettere +bellezza +società +dominata +paura +vuole +può +rivedere +puntata +ieri +precedenti +dplay +http +bit +firenzesecondome +grazie +buona +domenica +poco +terza +puntata +firenzesecondome +parleremo +fiorino +diventò +dollaro +epoca +bimbi +ancora +oggi +firenze +dicono +san +giovanni +può +fidare +parleremo +altro +michelangelo +savonarola +donatello +monna +lisa +pinocchio +naturalmente +lorenzo +magnifico +aspetto +ore +canale +norma +voluta +governo +esplicitamente +impediva +comuni +alzare +tasse +locali +accusato +essere +centralista +rivendico +forza +blocco +grazie +salvini +maio +1° +gennaio +altro +invece +possibile +comuni +aumento +tasse +locali +firmato +emendamento +bloccare +possibilità +fatto +nemmeno +discutere +poi +lamentano +sale +pressione +fiscale +oggi +inizieremo +terza +puntata +firenzesecondome +partendo +casa +medici +palazzo +via +larga +voluto +cosimo +toccheremo +luoghi +molto +cari +importante +famiglia +fiorentina +altro +soprattutto +complesso +san +lorenzo +vale +pena +allora +entrare +clima +puntata +ripartendo +rimasti +sabato +scorso +racconto +congiura +pazzi +lorenzo +magnifico +fratello +giuliano +finalmente +visto +bohemianrhapsody +film +carriera +freddie +mercury +queen +dire +queen +generazione +significa +ritornare +liceo +medie +girato +benissimo +quel +volete +me +bellissimo +suggerisco +ancora +visto +davvero +vale +pena +buona +notte +domani +terza +puntata +firenzesecondome +entreremo +luoghi +celebri +palazzo +medici +san +marco +certosa +galluzzo +posti +sconosciuti +archivio +san +lorenzo +parlare +monnalisa +pinocchio +chiesto +vedere +numeri +veri +legge +bilancio +dimostrare +legge +fregatura +italiani +facile +quando +devono +pagare +tasse +commercialista +bene +andiamo +commercialista +italia +noioso +dunque +almeno +numeri +chiari +altro +consiglio +nazionale +commercialisti +proprio +ufficio +studi +oggi +rilasciato +nota +dire +triennio +ben +miliardi +maggiori +entrate +tributarie +senza +contare +ovviamente +clausole +iva +auguriamo +disattivazione +conto +presto +fatto +miliardi +maggiori +entrate +contribuenti +altro +durante +funerale +shimon +peres +considerai +privilegio +poter +stringere +mano +amos +oz +grande +scrittore +israeliano +appena +tenuto +orazione +funebre +uomo +stato +presidente +premio +nobel +statista +amico +sempre +meglio +disse +oz +scegliere +speranza +ingenua +freddo +cinismo +peres +altro +inconfondibile +sognatore +talvolta +inciampava +occhi +fissavano +stelle +ripensato +quell +episodio +oggi +appena +appresa +notizia +morte +amos +oz +tornati +mente +alcuni +romanzi +scritti +fanatismo +compromesso +oz +definiva +fanatico +punto +esclamativo +ambulante +oggi +mondo +terrasanta +particolare +modo +molto +bisogno +compromessi +alti +nobili +senso +umorismo +meno +fanatismo +molto +bisogno +insegnamenti +valori +amos +oz +lieve +terra +maestro +passati +anni +fucilazione +fratelli +cervi +ricordare +vita +quei +ragazzi +significa +ricordarsi +valori +belli +italia +vengono +mente +parole +papà +alcide +detto +sempre +così +commemorazioni +quercia +cresciuto +rami +stati +falciati +quercia +morta +altro +bene +figura +bella +qualche +volta +piango +commemorazioni +guardate +seme +quercia +morirà +buona +nemmeno +fuoco +volete +capire +famiglia +guardate +seme +seme +ideale +testa +uomo” +guardate +seme +permetto +suggerimento +millennials +ragazzi +studiate +storia +fratelli +cervi +storia +pazzesca +ragazzi +dato +libertà +democrazia +giornata +santo +stefano +doveva +essere +novità +calcio +italiano +modello +inglese +giocare +giorno +dopo +natale +dovuto +portare +famiglie +stadio +creare +clima +gioia +serenità +accaduto +esattamente +opposto +ultrà +morto +milano +scontri +san +siro +cori +razzisti +verso +giocatore +napoli +altro +koulibaly +risolvere +problema +violenza +fisica +verbale +sceso +campo +ministro +interno +salvini +promesso +convocare +tifosi +tavolo +viminale +uomo +istituzioni +dunque +penso +ministro +interno +dovere +prendere +iniziativa +temi +vuole +essere +utile +altro +prima +seconda +puntata +firenze +secondo +me +visibili +gratuitamente +rete +canale +dplay +grazie +commenti +suggerimenti +consigli +sabato +prossimo +muoveremo +ancora +altro +cuore +firenze +toccando +luoghi +famiglia +medici +cominciare +complesso +san +lorenzo +certosa +galluzzo +san +marco +frattempo +interessati +passaggio +teatro +pergola +valore +politico +cultura +teatrale +musica +qualche +aneddoto +verdi +clamorosa +sconfitta +firenze +invenzione +telefono +antonio +meucci +continua +indecoroso +spettacolo +legge +bilancio +sapete +stati +costretti +leggere +ritardo +norme +maio +addirittura +scritte +inizia +invece +capirle +solo +adesso +adesso +inizia +capirle +maio +promette +modifiche +esempio +norma +terzo +settore +parlavo +stamattina +altro +cattivo +maio +vuole +po +tempo +norma +condono +invece +cambia +capita +benissimo +capito +benissimo +capita +benissimo +persone +accanto +intanto +proviamo +dirne +altra +finanziare +reddito +cittadinanza +disoccupati +tagliato +rinviando +assunzioni +altro +pranzo +natale +fatto +bene +maio +adesso +vuole +abbassare +canone +rai +ricordo +puntate +precedenti +canone +rai +costava +113€ +messo +bolletta +così +adesso +pagano +pagare +meno +pagare +strada +stanare +evasori +squallidi +condoni +maio +naturalmente +allora +altro +grillini +insultavano +definendo +scandalo +canone +bolletta +grazie +canone +bolletta +italiani +pagano +113€ +90€ +abbassamento +canone +fatto +legge +bilancio +però +evasori +vengono +fatti +tanti +regali +chissà +buongiorno +ben +ritrovati +spero +passato +buon +natale +famiglie +pensiero +catanese +scosso +terremoto +oggi +inizia +discussione +legge +bilancio +camera +ora +potuto +leggere +testo +stato +nascosto +fino +ultimo +senato +signori +streaming +altro +trasparenza +vediamo +ancora +evidenti +contraddizioni +follie +manovra +pensate +solo +raddoppiano +ires +mondo +no +profit +premiano +evasori +volontario +solidarietà +paghi +evasore +furbetto +paghi +meno +solo +me +sembra +mondo +rovescia +sera +giusta +entrare +cattedrale +firenze +dedicata +santa +maria +fiore +dante +vergine +madre +figlia +figlio +umile +alta +creatura” +luogo +simbolo +cristianità +firenze +augurio +affettuoso +credenti +natale +felicità +riposo +tante +polemiche +legge +bilancio +prossimi +mesi +purtroppo +pagheremo +conto +scelte +sbagliate +adesso +fermiamoci +amici +ora +stacca +qualche +ora +caccia +forsennata +ultimo +regalo +poi +stop +figlio +torna +casa +rivede +genitori +dopo +settimane +finalmente +ritrova +diritto +passare +qualche +altro +giorno +felicità +naturalmente +pensiero +passa +natale +senza +genitore +senza +figlio +senza +compagno +specie +primo +natale +dopo +lutto +abbraccio +molto +affetto +pomeriggio +pubblicheremo +clip +firenzesecondome +rapporto +cattedrale +madonna +firenze +pensiero +credenti +quali +natale +festa +altre +adesso +cristiani +augurio +bello +buon +natale +david +michelangelo +solo +simbolo +firenze +simbolo +stesso +bellezza +racconto +storia +strano +blocco +marmo +politico +pretese +metterci +naso +ricevendo +migliaia +messaggi +firenzesecondome +bellissimo +raccogliere +tante +considerazioni +educazione +cultura +mai +votato +sente +orgoglioso +appartenere +altro +patria +bellezza +felice +grazie +finalmente +riconosce +senso +operazione +sabato +scorso +fatto +audience +risultato +alto +media +canale +ieri +aumentato +oltre +pubblico +rete +ottimo +risultato +me +onore +grazie +discovery +grazie +fantastici +ragazzi +arcobalenotre +grazie +soprattutto +firenze +fatemi +dire +grazie +fiorentini +ieri +fiorentino +guardato +canale +gente +conosce +firenze +devo +firenze +condivido +clip +momenti +me +intensi +puntata +ieri +buona +domenica +mattino +scempio +istituzionale +compiuto +maggioranza +votata +fiducia +salvini +fa +attaccare +pd +rifiutati +partecipare +voto +riteniamo +viziato +parlando +senatore +salvini +senatore +presenze +aula +inizio +legislatura +senatore +altro +assistito +solo +ultima +mezzora +dibattito +sembra +ufficiale +quest +uomo +conosce +vergogna +comunque +adesso +legge +bilancio +andata +tratta +solo +aspettare +purtroppo +secondo +me +legge +pil +andrà +peggio +previsto +occupazione +peggiorerà +meno +investimenti +bene +italia +spero +tanto +sbagliarmi +temo +conti +sbagliati +quei +fenomeni +sciacallo +prestanome +vado +letto +buona +notte +grazie +visto +firenzesecondome +trascorso +oltre +ora +mezzo +camminando +insieme +me +meraviglia +firenze +adesso +posso +confessare +pezzo +entriamo +istituto +innocenti +sacrario +amore +spezzato +commosso +padre +prima +ancora +fiorentino +forse +visto +settimana +prossima +altro +entreremo +palazzo +medici +san +marco +certosa +complesso +san +lorenzo +solo +intanto +altro +luogo +medico +palazzo +madama +roma +secoli +fa +sede +medici +oggi +luogo +consuma +scandalo +legge +bilancio +abbraccio +buona +notte +firenze +secondo +me +adesso +diretta +canale +streaming +dplay +https +it +dplay +com +live +firenze +secondo +me +matteo +renzi +live +streaming +diretta +aula +senato +onda +seconda +puntata +firenzesecondome +canale +invece +aula +discussione +legge +bilancio +incredibile +storia +repubblicana +scene +incredibili +senato +crederete +cambiando +nuovo +maxi +emendamento +governo +oltre +confini +ridicolo +meno +male +federico +chiesa +salvato +giornata +luigi +maio +voluto +farmi +regalo +natale +me +aspettavo +devo +ringraziare +pubblicamente +guardate +grafico +pubblicato +ieri +pagina +grillini +diffuso +manetta +altro +rete +scritto +lavoro +tempo +indeterminato” +curva +rossa +lavoro +tempo +indeterminato +ultimo +trimestre +stato +lieve +aumento +tempo +indeterminato +maio +festeggiato +inviando +grafico +attenzione +casca +asino +guardate +bene +grafico +cosa +dice +leggere +curva +rossa +lavoro +tempo +indeterminato +cresce +modo +impressionante +quando +quando +entrano +vigore +altro +domani +torna +firenzesecondome +camminata +piazza +duomo +teatro +pergola +galleria +accademia +parte +david +arriva +farinata +clip +stenditoio +innocenti +oggi +rinvio +governo +riesce +chiudere +legge +bilancio +credo +volutamente +penso +semplicemente +incapaci +capisco +dirlo +elegante +momenti +giri +parole +servono +dimostrando +clamorosamente +incompetenti +purtroppo +vede +prima +poi +italia +serietà +tornerà +moda +scene +surreali +parlamento +persi +maxi +emendamento +rinviato +bene +quando +esperti +funzionari +vecchi +cronisti +commessi +ex +senatori +dicono +situazione +genere +mai +vista +approfitto +tornare +firenzesecondome +domani +onda +seconda +puntata +canale +altro +proporre +ora +mezzo +cultura +meraviglia +bellezza +può +apparire +controcorrente +effetti +penso +molto +bisogno +cultura +bellezza +domani +sera +cammino +prenderà +inizio +piedi +david +michelangelo +poi +cuore +istituto +innocenti +mezzo +dolore +mamme +altro +oggi +leader +spirituale +stelle +battista +definito +presidente +obama +golpista” +obama +golpista +spiego +matti +appena +torna +italia +battista +deve +farsi +vedere +qualcuno +possibilmente +bravo +ogni +volta +scopro +nuova +chicca +allucinante +legge +bilancio +ripenso +insultato +domenica +aprile +diretta +fazio +detto +no +accordo +grillini +oggi +fingono +ricordarselo +allora +tanti +dirigenti +commentatori +esperti +spingevano +altro +fare +governo +insieme +riuscite +immaginare +dovuto +fare +governo +affacciano +balcone +dichiarare +sparita +povertà +dovuto +fare +governo +mettono +condoni +tolgono +vaccini +dovuto +fare +governo +blocca +infrastrutture +gioca +paura +mentre +accingiamo +votare +legge +bilancio +fatta +fakenews +veri +danni +ripenso +quei +momenti +dico +chiedere +scusa +carità +probabilmente +allora +insultava +oggi +potrebbe +ringraziarci +senzadime +oggi +giorno +voto +legge +bilancio +meglio +notte +probabilmente +voteremo +dopo +mezzanotte +mai +vista +gestione +parlamentare +così +scandalosa +parleremo +aula +oggi +terrò +informati +alziamo +sguardo +notizia +politica +estera +presidente +trump +deciso +ritirare +soldati +americani +siria +altro +grande +entusiasmo +followers +twitter +stupore +sgomento +addetti +lavori +rischia +abbandonare +obiettivo +distruzione +isis +prima +averlo +raggiunto +abbandonano +curdi +popolo +coraggioso +battuto +modo +eroico +estremisti +islamici +infatti +ministro +difesa +americano +altro +polemica +avviso +garanzia +padre +maio +ridicola +solo +menti +contorte +possono +considerare +avviso +garanzia +sentenza +solo +menti +ancora +contorte +possono +utilizzare +presunti +reati +padri +arma +battaglia +figli +utilizziamo +oggi +avviso +garanzia +padre +maio +perche +altro +cinici +giustizialisti +maio +battista +tempo +debito +ministro +lavoro +dovrà +spiegare +padre +qualche +responsabilità +penale +fatto +davvero +prestanome +eludere +equitalia +padre +invece +interessa +abituati +strumentalizzare +meschini +stelle +governo +cambiato +manovra +schiantati +muro +paese +dunque +retromarcia +giusta +comprensibile +fa +impressione +modo +tracotante +maio +salvini +spiegando +italiani +realtà +cambia +niente +devono +mai +dire +verità +basterebbe +ammettere +altro +cambiato +idea +sbagliando +rischiavamo +troppo +no +insistono +diffondere +fakenews +dicono +ok +cambia +niente +risalirei +balcone +pensano +italiani +bevano +bugie +davvero +credono +poter +trattare +connazionali +persone +incapaci +intendere +volere +nodi +arrivando +pettine +tempo +cialtroni +scadendo +senato +finalmente +arrivato +maxi +emendamento +messo +molto +tempo +forse +riuscivano +scaricare +file +bruxelles +certo +fa +impressione +governo +sovranista +doveva +fare +rivoluzione +invece +fa +copia +incolla +tecnici +europei +prima +vista +maio +salvini +tagliano +investimenti +pubblici +adesso +metto +studiare +bene +tengo +informati +vediamo +venerdì +aula +intervento +buona +notte +salone +palazzo +vecchio +casa +politica +voluto +savonarola +sede +camera +luogo +pira +spazio +misteri +racconto +parlando +leonardo +vinci +battaglia +anghiari +firenzesecondome +aula +senato +interviene +presunto +premier +conte +imbarazzato +imbarazzante +cerca +giustificare +retromarciadelpopolo +precedenti +storia +repubblicana +almeno +salvini +maio +capiscono +antifona +vedere +nascondendosi +sovranisti +mollato +rimane +capire +affaccia +oggi +balcone +palazzo +chigi +juncker +italia +bene +evitare +procedura +infrazione +peccato +aver +buttato +via +settimane +preziose +miliardo +euro +cialtroni +salvini +deve +vergognare +deve +chiedere +scusa +quando +fatto +notare +sbagliava +abbracciando +ultrà +pregiudicato +trattava +kg +droga +violenza +stadio +davanti +bambini +peraltro +reazione +stata +ridicola +detto +indagato +mezzo +altri +indagati +no +ministro +interno +altro +squalifica +istituzioni +abbracciando +pregiudicati +padre +rafforza +immagine +negativa +gioco +bello +mondo +ministero +interno +validi +professionisti +dovrebbero +aiutare +evitare +incontri +sconvenienti +staff +viminale +serve +stare +facebook +promuovere +prodotti +alimentari +inutile +indossare +magliette +polizia +carabinieri +poi +abbracci +gente +scrive +digos +boia +salvini +solo +chiesto +scusa +detto +rifarei +vergognati +ministro +vergognati +chiedi +scusa +diretta +senato +top +ten +settimana +visitato +volte +cina +ultimi +mesi +quando +tocchi +tante +diverse +città +puoi +ignorare +straordinario +dinamismo +economico +accanto +contraddizioni +sociali +tocchi +mano +potenza +culturale +squilibri +ambientali +ieri +presidente +xi +jinping +discorso +storico +ricordando +anni +riforma +altro +deng +xiaoping +evidenziato +risultati +raggiunti +pil +cinese +decenni +cresciuto +media +ogni +anno +milioni +persone +uscite +povertà +straordinaria +campagna +povertà +storia +uomo +larga +parte +paese +patire +fame +normalità +ora +ricordo +cina +stata +altro +ottima +notizia +genova +sindaco +commissario +scelto +progetto +ponte +finalmente +parte +ciascuno +proprie +idee +percorso +migliore +importa +oggi +ricostruzione +morandi +diventa +realtà +bene +genova +ovviamente +state +smentite +fakenews +maio +prime +ore +falso +altro +autostrade +dato +soldi +pd +dati +lega +pd +falso +concessione +stata +votata +governo +esecutivo +berlusconi +salvini +votò +favore +pd +falsa +revoca +concessione +senza +aspettare +tempi +magistratura +giustizia +italia +regole +altro +oggi +maio +grillini +festeggiano +piazza +abolizione +corruzione +esattamente +mesi +fa +festeggiato +abolizione +povertà +uguale +uguale +beato +crede +alessandro +battista +risponde +accuse +giornale +insultando +naturalmente +offende +me +anziché +parlare +debiti +azienda +replica +citando +referendum +proprio +difesa +merito +davvero +questioni +aperte +vicenda +battista +prima +citare +ballo +genitori +famiglie +assurdo +quando +altro +assurdo +quando +viene +fatto +minimamente +interessato +gesta +battista +senior +uso +famiglie +altrui +fare +polemica +mai +nutrito +interesse +alcuno +dichiara +fascista +battista +deve +chiedere +scusa +tracotante +arroganza +solo +padre +altro +governo +riesce +chiudere +legge +bilancio +senato +lavora +giorni +attesa +emendamenti +tratta +solo +scorrettezza +parlamentare +vergognosa +purtroppo +molto +oggi +vengono +pettine +nodi +campagna +elettorale +solo +rapporto +europa +detto +verità +italiani +altro +conti +pubblici +perso +raccontato +sacco +frottole +vinto +adesso +soldi +realtà +presenta +conto +onestà +intellettuale +bisognerebbe +riconoscerlo +accadendo +oggi +riguarda +allora +solo +rapporto +bruxelles +roma +senato +governo +modo +altro +bella +immagine +elsa +morante +sempre +nuvole +offuscano +cielo +volte +illuminano +” +pensato +proprio +stamani +volando +verso +casa +adesso +buttiamoci +benedetta +legge +bilancio +finalmente +favore +presentare +numeri +veri +buona +giornata +amici +voglio +dire +grazie +carabiniere +mantiene +sangue +freddo +difficoltà +ragazzo +professionista +tiene +alto +onore +arma +italia +infami +altro +attaccano +spero +presto +assicurati +patrie +galere +spero +ministro +interno +preoccupi +anziché +passare +domenica +abbracciato +ultrà +precedenti +droga +commenti +firenze +secondo +me” +davvero +tanti +continuano +arrivare +copiosi +visto +fa +complimenti +immagini +regia +luci +complimenti +meritatissimi +giro +magnifica +altro +troupe +visto +attacca +audience +andato +rai +detto +occupa +tv +pubblica” +andato +mediaset +detto +venduto +berlusconi +” +andato +andrà +ah +vedono +pochi” +dispiace +sempre +polemica +contento +visto +documentario +scriva +servito +riflettere +ripropongo +allora +clip +momento +intenso +prima +puntata +cuore +uffizi +parliamo +mafia +aspettato +qualche +ora +vedere +qualcuno +interesse +approfondire +notizia +nulla +silenzio +tomba +parla +nessuno +storia +stamani +giornale +pubblicato +notizia +altro +curiosa +azienda +famiglia +battista +socio +alessandro +problemi +fisco +banche +fornitori +dipendenti +notizia +vera +fakenews +cosa +genere +riguarda +principali +leader +partito +maggioranza +dovrebbero +aprire +siti +dedicare +servizi +tg +chiedere +commenti +fare +giornalismo +inchiesta +vorrei +ricordare +padre +stato +apertura +tg +giorni +argomento +principale +talk +intere +altro +mancano +giorni +capodanno +nessuno +conosce +davvero +legge +bilancio +cosa +mai +vista +presentato +legge +festeggiando +palazzo +chigi +dichiarando +abolita +povertà +giurato +guerra +eterna +europa +dicendo +fregavano +rifiutato +proposta +lanciata +padoan +leopolda +altro +fatto +retromarcia +utilizzando +solita +arrogante +cialtroneria +ancora +oggi +degnano +dirci +quali +misure +dobbiamo +votare +dirvi +giorni +commissione +bilancio +senato +attendendo +salvini +compri +sushi +conte +torni +bruxelles +maio +capisca +carte +frattempo +senato +fermo +altro +ultimi +giorni +salvini +intervenuto +volte +documentario +firenze +secondo +me” +onorato +attenzione +penso +ministro +interno +dovrebbe +occuparsi +cose +rilevanti +proprio +ama +seguire +questioni +sicurezza +nazionale +ministro +potrebbe +almeno +trovare +miliardi +euro +coperture +altro +promesse +vuoto +campagna +elettorale +banalmente +recuperare +milioni +lega +nascosto +invece +niente +salvini +parla +firenze +secondo +me” +prima +dice +guarderà +mai +nessuna +ragione +mondo +poi +dice +vuole +fare +documentari +beni +culturali +città +infine +dice +signora +altro +me +madonna +cardellino +solo +quadro +molto +forse +significato +profondo +museo +mettere +nudo +anima +davanti +bellezza +breve +clip +raccontato +cosa +accade +me +davanti +raffaello +buongiorno +grazie +messaggi +cina +qualche +ora +rientro +domani +legge +bilancio +riuscito +rispondervi +tempo +reale +firenzesecondome +grazie +commenti +grazie +davvero +persa +puntata +disponibile +http +bit +firenzesecondome1 +proposta +bella +altro +suggerisce +fare +milanosecondome +romasecondome +napolisecondome +bellissimo +ovviamente +condotti +personaggi +relazione +speciale +città +frattempo +buona +visione +tempo +andare +http +bit +firenzesecondome1 +abbraccio +ieri +pazienza +firenze +altro +grazie +stato +cuore +firenze +leggo +volentieri +commenti +visto +puntata +immagine +piaciuta +cosa +convinto +firenzesecondome +fare +cose +italiana +sinonimo +furbizia +fascino +originalità +bellezza +giardino +boboli +campione +giardino +italiana +giardino +fatto +bene +luogo +magico +giovani +luogo +speciale +saltare +scuola +firenzesecondome +stasera +ore +pronti +parte +emozionato +viaggio +cuore +firenze +iniziamo +stasera +oggi +tocchiamo +piazza +pitti +giardino +boboli +vasariano +uffizi +palazzo +vecchio +piazza +signoria +solo +concittadino +potrà +sentirsi +stasera +emozionato +fiero +essere +fiorentino +felice +altro +solo +italiano +potrà +provare +orgoglio +vertigine +riconoscersi +parte +grande +paese +felice +tempo +vedere +trasmissione +troverà +modo +riflettere +identità +cultura +educazione +beh +allora +potremo +dichiarare +soddisfatti +stasera +bello +camminare +insieme +mistero +firenze +parte +messo +occhi +gambe +soprattutto +cuore +seguito +x +factor +vittoria +anastasio +messo +accordo +quel +ragazzo +può +piacere +meno +talento +straordinario +fare +polemica +politica +like +anastasio +mette +ridicolo +ok +messo +like +trump +salvini +mai +fatto +mai +posso +dire +artista +giudica +altro +anastasio +stravinto +meritando +smettessimo +fare +polemica +politica +meglio +interessa +sapere +vota +anastasio +basta +riconoscere +x +factor +spaccato +giù +cappello +basta +polemiche +quando +capi +stato +governo +unione +europea +riuniti +insieme +commemorare +vittime +attentato +strasburgo +solo +assente +solo +sola +sedia +vergognosamente +vuota +assente +premier +italiano +conte +arriva +bruxelles +vede +juncker +altri +fa +conferenza +stampa +poi +improvviso +decide +altro +prendere +aereo +stato +tornare +indietro +roma +andare +trattoria +salvini +maio +ripartire +giorno +dopo +bruxelles +cena +trattoria +quei +premier +vale +omaggio +vittime +strasburgo +interessa +sapere +populisti +speso +usando +aereo +stato +taxi +proprio +massacravano +molto +meno +voglio +dire +alta +voce +lasciare +consiglio +europeo +momento +solenne +commemorazione +vergogna +senza +fine +questione +galateo +serietà +rispetto +istituzionale +tecnicamente +parlando +schifo +addio +antonio +cittadino +italiano +cittadino +europeo +cittadino +mondo +italia +dovrà +portare +avanti +tutta +insieme +senza +divisioni +ideali +sogno +verso +stati +uniti +europa +allora +certo +sostiene +governo +anzi +pochi +sempre +alzato +voce +fatto +opposizione +modo +netto +forte +penso +manovra +sbagliata +sceneggiata +maio +balcone +stata +assurdità +totale +manfrinadelpopolo +fatto +perdere +tanti +soldi +italiani +altro +detto +prendiamoci +giro +alcune +dichiarazioni +arrivano +oggi +bruxelles +inaccettabili +italia +passa +governo +fa +figuraccia +italia +europa +può +deve +aprire +procedura +infrazione +senatore +opposizione +prima +italiano +crede +onestà +intellettuale +manovra +fa +schifo +governo +sbagliato +europa +alcun +diritto +aprire +procedura +firenze +presentazione +firenze +secondo +me +sabato +onda +prima +puntata +firenze +secondo +me +me +sogno +realizza +dopo +settimane +scrittura +lavoro +grazie +reso +possibile +progetto +primi +minuti +altro +semplice +assaggino” +vedere +resto +do +appuntamento +sabato +sera +oggi +diretta +facebook +presentazione +stampa +corrente +continuo +credere +bellezza +cultura +buona +giornata +disastro +quotidiano +governo +oggi +presenta +terzo +trimestre +occupazione +scende +nord +21mila +occupati +rispetto +trimestre +sud +35mila +dicono +dati +istat +fca +annuncia +misure +manovradelpopolo +potrà +mantenere +investimenti +italia +intanto +spunta +emendamento +altro +prima +volta +mette +nero +bianco +reddito +cittadinanza +poco +estensione +rei +finanziato +altro +novità +italiani +stati +ingannati +campagna +elettorale +sciacallo +salvini +prestanome +maio +realtà +forte +fake +news +verità +prima +poi +viene +fuori +buona +giornata +ripropongo +puntata +porta +porta +ieri +sera +provato +farmi +parlare +solo +pd +resistito +😉 +dite +cosa +pensate +amici +immagini +strasburgo +colpiscono +cuori +colpiscono +città +custodisce +democrazia +europea +colpiscono +mercatini +natale +obiettivi +attentato +vigliacco +lotta +terroristi +estremismo +islamico +deve +continuare +combattuta +piano +sicurezza +senza +incertezze +piano +altro +educazione +nuove +generazioni +molti +radicalizzati +nati +cresciuti +europa +ecco +oggi +rilanciata +forza +livello +continentale +intuizione +euro +cultura +euro +sicurezza” +intanto +preghiere +pensieri +famiglie +vittime +feriti +maio +chiede +salvini +chiarire +storia +milioni +€ +lussemburgo +soldi +pubblici +spariti +già +potrebbe +informarsi +peculato +leghisti +salvato +norma +personam +votata +maggioranza +salvini +replica +potrebbe +chiedere +maio +chiarire +storia +prestanome +cartelle +altro +equitalia +lavoro +nero +condoni +edilizi +materiale +pesante +tornerà +fuori +prossimi +mesi +ovviamente +pensare +fatto +guerra +temi +usato +social +dipingerci +disonesti +adesso +attaccano +nonostante +arrivino +prime +sentenze +risarcimento +danno +verità +altro +preparando +alcuni +emendamenti +legge +bilancio +ovviamente +questioni +strategiche +ancora +chiarite +accordo +unione +europea +abbasseranno +deficit +eviteranno +procedura +infrazione +saperlo +dobbiamo +aspettare +emendamenti +governo +però +alcune +cose +possiamo +proporle +opposizione +altro +emendamenti +scrivendo +territorio +collegio +emendamenti +coerenti +manovra +presentata +padoan +leopolda +emendamenti +salvare +alcune +leggi +governo +dopo +spreco +alimentare +poi +piccolo +emendamento +banale +arrabbiare +qualche +sindaco +prima +altro +ministro +pubblica +istruzione +annunciato +scriverà +circolare +scuole +chiedere +diano +meno +compiti +casa +durante +vacanze +natale +motivazione +almeno +ragazzi +genitori +solo +me +sembra +frase +superficiale +compiti +servono +crescere +studiare +migliorarsi +magari +no +altro +compiti +possono +fare +insieme +genitori +dire +ragazzo +deve +fare +meno +compiti +avere +tempo +libero +sembra +stravagante +solito +tentativo +lisciare +pelo +gente +dicendo +cose +felici +forse +destinatari +bene +comunità +soprattutto +ministro +pubblica +altro +evoluzione +economia +italiana +ultimi +anni +scelte +salvini +maio +distruggono +crescita +riportano +recessione +ciascuno +tenga +opinioni +fatti +personale +buffo +contesta +anni +eccesso +personalizzazione” +esca +oggi +dicendo +dica +renzi +vuol +fare +colpa +renzi +renzi +chiarezza +accadendo +ore +accusano +personalizzare +poi +preoccupano +modo +ossessivo +me +poi +spesso +qualche +mese +fa +altro +sognavano +accordo +pd +stelle +presentavano +maio +nuovo +berlinguer +quando +alzato +voce +quasi +solitario +gruppo +dirigente +andando +tv +dicendo +no +accordo +grillini +fatelo +senzadime” +detto +renzi +zitto +invade +campo +altrui +dovrebbe +tacere” +vedendo +governano +grillini +altro +mondo +dominato +barbarie +rancore +può +avere +senso +scommettere +bellezza +camminando +strade +firenze +provato +rifletterci +raccontando +vicoli +storie +monumenti +altro +meravigliosa +città +domandato +cosa +serva +bellezza +sabato +sera +onda +firenzesecondome +aspetto +commenti +trollls +prima +aspettate +vedere +trasmissione +ancora +andata +onda +😉 +italia +esponenti +partiti +maggioranza +sembrano +innamorati +gilet +gialli +beppe +grillo +salvini +battista +elogiano +rivolta +popolare +francia +migliaia +fermati +decine +feriti +fuoco +strade +parigi +modo +combattere +ingiustizie +sociali +me +no +fuori +moda +minoranza +altro +controcorrente +me +no +puoi +dare +governi +tutte +colpe +vuoi +puoi +attaccare +premier +presidenti +ministri +chiunque +puoi +fare +analisi +sociologiche +raffinate +globalizzazione +diseguaglianze +poi +però +realtà +realtà +molto +semplice +cambiare +cose +occorre +politica +populismo +servono +riforme +barricate +strade +serve +buon +senso +demagogia +italia +gilet +gialli +già +governo +già +primi +mesi +vediamo +economia +rallenta +disoccupati +aumentano +pensiamo +davvero +modo +ripartire +crescita +rinnovare +europa +prendere +sassate +camionette +gendarmeria +francese +oggi +giorno +verità +legge +bilancio +governo +metterà +nero +bianco +veri +numeri +finirà +indecorosa +manfrina +iniziata +settembre +abolizione +povertà +balcone +palazzo +chigi +può +solo +criticare +allora +voglio +spendere +parola +positivo +solo +governo +già +altro +fatto +controproposte +accolte +spread +scenderebbe +tasse +accoglieranno +temo +ieri +però +salvini +incontrato +categorie +confapi +fatto +proposta +molto +intelligente +reddito +cittadinanza +dare +780€ +stare +divano +assurdo +fondi +sufficienza +governo +altro +giornata +festa +firenze +bellissima +sole +ieri +tempo +uggioso +oggi +tanta +gente +strade +chiacchierate +situazione +economica +politica +selfie +discussioni +pareggio +rocambolesco +fiorentina +regolare +normale +quel +senso +magone +cuore +ieri +riusciamo +toglierci +altro +vedi +anni +nascita +ragazzi +morti +maledetta +serata +pensi +figli +quell +età +lì +pensi +sabato +sera +senti +gelare +sangue +pensi +mamma +ragazzi +giovane +te +moglie +continui +trovare +senso +tragedia +assurda +senso +passa +secondo +piano +domenica +tristezza +infinita +notizie +arrivano +ancona +creano +dolore +enorme +sconvolto +italiani +padre +ragazzi +quell +età +riesco +immaginare +possa +accadere +strage +genere +adesso +solo +preghiere +abbraccio +famiglie +amici +vittime +fine +settimana +ama +politica +può +pensare +triste +bellezza +funerale +george +bush +cagnolino +fermo +davanti +bara +america +capace +stringersi +intorno +altro +simboli +bandiere +politica +fatta +rispetto +riconoscenza +verso +istituzioni +stile +lettera +lasciata +bush +clinton +momento +passaggio +consegne +dice +molto +cosa +democrazia +americana +nonostante +onore +presidente +bush +onore +vive +politica +rancorosa +caccia +uomo +scambio +idee +sogni +speranze +tenetevi +pure +demagogia +populismo +tengo +idea +politica +davvero +altra +cosa +italia +incattivita +rancorosa +impaurita +immagine +consegna +relazione +censis +molto +triste +cedere +cultura +pessimismo +dico +italia +diversa +già +solo +valorizzata +ore +censis +descrive +stato +animo +parole +piace +segnalare +bebe +vio +altro +meravigliosa +energia +oggi +bebe +detto +voglio +diventare +presidente +coni +donne +devono +lottare +arrivare +vertici +vita +figata +ripete +spesso +campionessa +paralimpica +chiedemmo +rappresentare +italia +cena +stato +obama +anni +fa +tanti +problemi +persone +bebe +insegnano +guardare +avanti +senza +paura +senza +cedere +rancore +grazie +bebe +sogni +continui +fare +obiettivi +continui +darti +lezione +continui +darci +lasceremo +mai +italia +ceda +paura +rancore +mentre +andare +letto +notare +via +sms +assist +quaresma +match +nazionali +parlamentari +italia +russia +finito +pagina +chiamarsi +bomber +molti +può +altro +dire +poco +ama +calcio +tanta +roba +insomma +vado +letto +orgoglioso +trivela +diciamo +verità +riprovo +venti +volte +detto +venga +bene +così +buona +notte +amici +buona +trivela +diretta +senato +top +ten +settimana +global +compact +migrazione +dividendo +molti +governi +ultimo +belgio +italia +state +tensioni +premier +teorico +conte +annunciato +firma +italia +premier +ombra +salvini +smentito +gioco +lega +sempre +solito +picchiare +duro +paura +migranti +chiedo +perdere +minuti +altro +tempo +voglio +dimostrarvi +scelta +salvini +serve +lega +serve +italia +oggi +italia +trovata +sola +gestione +migranti +europa +approvato +quindici +anni +fa +trattato +dublino +purtroppo +proprio +italia +proporlo +lega +forza +italia +governo +nome +bossifini +altro +oggi +media +parlano +nuovo +divisioni +pd +naturalmente +sempre +qualche +fonte +anonima +dà +colpa +renzi +strano +mettiamo +cose +fila +dopo +elezioni +dimesso +spiegato +lungo +discorso +assemblea +nazionale +ciò +secondo +me +sbagliato +ciò +fatto +bene +assunto +altro +responsabilità +quel +momento +fatto +battaglia +senatore +opposizione +tale +stato +eletto +qualche +corrente +cittadini +collegio +fatto +battaglia +accordo +stelle +vaccini +obbligatori +taglio +periferie +condono +fiscale +edilizio +altro +oggi +assolavoro +presentato +prime +conseguenze +decreto +dignità +legge +voluta +maio +gennaio +53mila +posti +lavoro +meno +jobsact +oltre +milione +posti +lavoro +anni +decreto +dignità +53mila +posti +lavoro +meno +solo +primi +mesi +vere +scelte +importanti +politica +forse +qualcuno +adesso +smetterà +attaccare +jobsact +governo +paese +verso +recessione +bruxelles +giorni +lavoro +arrivato +albergo +butto +occhio +social +vedo +tanti +prendono +giro +proprio +oggi +trascorsi +esattamente +anni +sconfitta +referendaria +dicembre +tanti +chiedono +ancora +oggi +matteo +te +fatto +fare +potevi +essere +ancora +sella +altro +bisogno +fare +riforma +costituzione +amici +ve +dico +grande +libertà +fa +politica +nome +idee +difendere +poltrona +carriera +stato +meglio +fare +quel +referendum +paese +utile +necessario +giusto +provarci +giusto +dare +stabilità +efficienza +altro +fare +propaganda +manifestazione +piazza +salvini +messo +insieme +altri +manifesti +scritta +no +saro +piazza +fa +sciacallo +ogni +atto +criminale +dimenticando +essere +ministro +dovrebbe +garantire +sicurezza +lucrare +altroinsicurezza +piazza +portato +paese +recessione +spread +pil +negativo +piazza +votato +concessione +autostrade +annunciato +revoca +poi +dimenticato +entrambe +cose +piazza +votato +rinvio +obbligatorietà +vaccini +altro +complimenti +carabinieri +forze +ordine +operazione +stamani +palermo +nuova +cupola +mafiosa +orgogliosi +lavoro +quotidiano +donne +uomini +lottano +legalità +mafia +viva +italia +movimento +stelle +tanto +cambiare +attacca +me +dopo +vicenda +signor +maio +attaccano +sempre +me +solo +me +comunque +me +qualsiasi +cosa +accada +risposta +sì +però +renzi +stavolta +andati +oltre +ridicolo +tocca +rispondere +scopri +differenze +vogliamo +parlare +padri +quando +arrivate +accuse +lavoro +altro +nero +maio +senior +confessato +padre +querelato +diffamazione +poi +sembra +gran +periodo +scrive +falsità +padre +ben +marco +travaglio +scopri +differenze +vogliamo +parlare +figli +gigino +maio +fatto +tutta +carriera +spargendo +false +verità +vero +fango +padri +altri +altro +missionario +salesiano +lombardo +padre +ugo +censi +fondatore +operazione +mato +grosso +lasciato +notte +perù +dopo +vita +spesa +poveri +conosciuto +ragazzo +volontari +altro +operazione +poi +fortuna +incontrare +volte +padre +ugo +firenze +lima +conosciuto +ricorda +oggi +gratitudine +fede +forza +impressionante +energia +grazie +padre +ugo +stato +bello +condividere +pezzo +strada +te +quando +settimana +scorsa +iene +iniziato +parlare +famiglia +maio +detto +odio +ferisce +odio +perisce +chiesto +scuse +famiglia +stata +trattata +stelle +anni +sussulto +onestà +intellettuale +salvini +ammesso +parte +politica +sbagliato +passato +altro +utilizzare +famiglie +aggredire +avversari +meglio +niente +stelle +invece +continuato +attaccare +stampa +insultarci +sottolineare +maio +entra +nulla +comunque +colpa +prima +credo +settimana +appena +trascorsa +lasci +insegnamenti +equitalia +abusi +edilizi +lavoro +nero +altro +firenze +calcio +oggi +giorno +franchi +arriva +juve +fatto +intervista +gazzetta +sport +tranquilli +salvini +insegno +allenatori +fare +formazione +altro +limito +dire +vince +fiorentina +riapre +campionato +diventa +interessante +servizio +paese +buona +giornata +amici +ieri +canale +mandato +onda +scherzo +fatto +mentre +registravo +firenze +secondo +me +naturalmente +paolo +bonolis +perso +occasione +prendermi +giro +meno +male +portato +altro +poltrona +casa +altrimenti +perdevo +buona +visione +amici +troll +insulteranno +scherzi +parte +vita +difficile +fate +amici +meritate +abbraccio +affettuoso +buon +divertimento +oggi +governo +cambiamento +festeggia +primi +mesi +vero +cambiato +nulla +mondo +riferimento +culturale +maio +pienamente +felice +guardate +fatti +oggettivi +tirate +conseguenze +fatto +abusi +edilizi +condono +pagato +tasse +stracciano +cartelle +equitalia +altro +lavoro +nero +colf +muratore +giustificano +prendi +lavoro +nero +chiedono +denunciare +nemmeno +male +tanto +prima +poi +reddito +cittadinanza +potrai +continuare +lavoro +nero +rubato +soldi +rimborsi +regionali +cambio +legge +peculato +fatto +abusi +altro +commosso +stamani +leggendo +storia +bimbo +inglese +anni +scrive +lettera +auguri +padre +morto +anni +prima +chiede +poste +portarla +paradiso +poste +scrivono +altro +bambino +stata +difficile +fatta +missione +compiuta +quando +burocrazia +mostra +cuore +piccolo +gesto +diventa +emozione +bellissima +trova +differenze +renzi +gentiloni +padoan +pil +consumi +famiglie +investimenti +macchinari +veicoli +occupati +febbraio +maggio +milione +180mila +deficit +pubblico +pil +giù +pressione +fiscale +abbassata +pil +forte +riduzione +paesi +altroeuroarea +considerando +effetto +euro +mesi +giugno +30novembre +salvini +maio +tria +pil +terzo +trimestre +infrastrutture +ferme +crollo +fiducia +famiglie +imprese +calo +96mila +occupati +rispetto +maggio +spread +numeri +parlano +chiacchiere +zero +tornata +crescita +torna +recessione +piccolo +risultato +lavoro +governo +grazie +decreto +madia +ridotto +partecipate +comuni +quasi +terzo +poltrone +meno +presentare +risultati +nostalgia +serietà +antipatici +dicono +meglio +antipatici +cialtroni +piccolo +imprenditore +ucciso +ladro +introdotto +notte +azienda +legge +uomo +esasperato +aver +subito +rapine +ultimi +anni +pare +molto +provato +ciò +accaduto +volevo +ucciderlo +mirato +gambe” +detto +ciascuno +può +commentare +bar +altro +vicenda +triste +dolorosa +ovvio +riparta +discussione +legittima +difesa +oltre +discussioni +amici +giusto +prendere +porto +armi +no +meglio +farlo +fatto +posto +fatto +bene +sbagliato +altre +possibilità +gomma +vale +vita +umana +eccetera +eccetera +dibattito +altro +ecco +quando +aziende +italiane +visione +strategica +risultati +arrivano +bisogna +investire +africa +bisogna +scommettere +sostenibilità +ambientale +enel +green +power +altro +notizie +riescono +bucare +dibattito +politico +nazionale +giusto +sottolinearle +rilanciarle +dobbiamo +investire +africa +europa +aziende +senza +lasciarla +solo +investimenti +cinesi +dobbiamo +scommettere +sostenibilità +fattore +trainante +crescita +economia +verde +può +creare +molti +posti +lavoro +altro +reddito +cittadinanza +buona +serata +amici +settimana +salvini +fatto +passare +voto +segreto +emendamento +salvare +carcere +parlamentari +condannati +secondo +grado +salvato +bossi +denunciandolo +appropriazione +indebita +condonato +milioni +€ +produttori +sigarette +elettroniche +quali +finanziato +lega +continuato +mentire +dicendo +altro +essere +estraneo +clamorosa +vicenda +milioni +€ +lega +deve +restituire +stato +naturalmente +movimento +stelle +tempo +parlava +onestà +oggi +accoda +oppure +tace +settimana +neanche +berlusconi +mai +riuscito +fare +tanto +diretta +senato +top +ten +settimana +aspetto +facebook +top +ten +settimana +poco +oggi +alcuni +giornali +attaccano +professor +roberto +burioni +siccome +burioni +ragione +quando +difende +scienza +ignoranza +fakenews +cosa +attaccano +ovvio +carattere +altro +arroganza +quando +qualcuno +dice +cose +scomode +vere +unico +modo +contestare +cose +attaccare +carattere +arroganza +sempre +solito +film +solidarietà +roberto +burioni +grazie +battaglia +favore +vaccini +mille +fakenews +vengono +lanciate +addosso +quotidianamente +renzi +fatto +scambio +europa +prendendo +migranti +cambio +flessibilità +80€ +” +tratta +altro +bugia +galattica +continua +essere +rilanciata +divenendo +virale +continua +essere +bugia +stamattina +carlo +calenda +stato +protagonista +varie +trattative +europee +ambasciatore +bruxelles +spiegato +verità +spacciatori +fakenews +quali +peraltro +pure +governo +minuti +ascoltate +dibattito +surreale +vale +pena +oggi +aula +senato +votare +decreto +fiscale +cose +sconvolgenti +regalo +milioni +€ +finanziato +campagna +elettorale +lega +salvini +interessati +articolo +finito +condoni +adesso +iniziano +marchette +azienda +edile +luigi +maio +scelte +padre +già +detto +scritto +altra +notte +me +basta +avanza +adesso +toccherà +vicepremier +venire +parlamento +spiegare +aula +ciò +chiarito +ragionamento +altro +interessa +sbirciare +buco +serratura +cosa +fatto +maio +padre +altro +sconvolge +pensare +maio +figlio +voluto +decreto +dignità +prima +reddito +cittadinanza +poi +definizione +misure +aumentare +piaga +lavoro +nero +bisogna +rendere +facili +assunzioni +licenziamenti +invece +fatto +decreto +dignità +bisogna +dare +incentivi +assumere +jobsact +reddito +cittadinanza +bisogna +combattere +evade +rinviare +fatturazioni +elettroniche +bisogna +sanzionare +fa +abusi +edilizi +votare +condoni +lavoro +nero +evasione +abusi +edilizi +imprenditore +maio +può +dire +altrettanto +politico +maio +parte +me +ricordo +leghisti +anni +novanta +partiti +inneggiando +dio +po +agitavano +cappio +parlamento +gridavano +roma +ladrona +sembravano +onesti +oggi +sentenza +secondo +grado +conferma +unica +ladrona +lega +rubato +milioni +€ +devono +restituirli +comprato +lauree +albania +altro +portato +diamanti +tanzania +nascosto +soldi +chissà +quei +soldi +pubblici +soldi +contribuenti +rendiamo +conto +signor +ministro +salvini +fa +continua +parlare +gattini +gattuso +finalmente +spiega +lega +ladrona +nascosto +soldi +italiani +quando +visto +servizio +iene +famiglia +maio +imposto +dire +nulla +fare +signore +sempre +resto +m +interessa +sapere +padre +maio +dato +lavoro +nero +evaso +tasse +condonato +abusi +edilizi +convinto +presunta +onestà +stelle +grande +fakenews +altro +bufala +dimostrano +tante +vicende +personali +evasore +beppe +grillo +giù +convinto +colpe +padri +debbano +ricadere +figli +dico +sempre +differenza +maio +accorto +adesso +notte +riesco +finta +nulla +rivedo +fango +gettato +addosso +altro +fatto +chiacchierata +barbara +jerkov +messaggero +danni +proposte +economia +zagrebelsky +bonus +raggi +sempre +immaginato +cottolengo +cuore +sociale +torino +simbolo +accoglienza +calore +intera +italia +quando +diventato +presidente +consiglio +stato +me +onore +altro +varcare +porte +istituzione +don +andrea +collaboratori +nati +molti +progetti +certo +proseguiranno +nuovo +governo +cottolengo +cottolengo +colore +politico +arcobaleno +speranza +conservo +ricordi +belli +tanti +abbracci +donne +uomini +ragazze +ragazzi +bambine +bambini +dedicato +qualche +preghiera +regalato +dono +amicizia +altro +ultima +fakenews +colpa +spread +renzi +gentiloni +salvini +dimaio +bastano +secondi +professor +fortis +leopolda +smentire +fate +girare +video +fakenews +aumentati +posti +lavoro +solo +spread +ricordate +polemiche +me +bonus +quando +premier +lega +stelle +attaccavano +dicendo +misure +servivano +italia +solo +bonus +elettorali +bene +tempo +galantuomo +arrivati +bonus +80€ +confermato +bonus +bebè +cancellato +poi +parzialmente +reintrodotto +bonus +18enni +altro +contestato +poi +confermato +bonus +500€ +professori +confermato +verità +pentaleghisti +costretti +ammettere +misure +utili +punto +confermano +odio +governo +poi +confermate +misure +rovesciato +quintali +fango +addosso +poi +provano +copiarci +già +allora +copiate +bene +leopolda +lanciato +proposta +legge +bilancio +dimezza +spread +abbassa +tasse +lavoratori +famiglie +rischiano +pagare +errori +salvini +maio +copiato +bonus +copiateci +legge +bilancio +rimettiamo +posto +spread +via +condoni +via +redditi +cittadinanza +salviamo +italia +mobilitarsi +serve +ore +qualcosa +diecimila +ragazzi +nati +risposto +appello +firmando +petizione +sbloccare +18app +bonus +renzi +diciottenni +ministro +finalmente +firmato +novembre +meglio +tardi +mai +oggi +voglio +dire +grazie +tenuto +attenzione +temi +altro +chiedo +continuare +tagli +18app +prossimo +anno +ragazzi +vinto +battaglia +importante +adesso +lavoro +evitare +silenzio +ragazzi +governo +cancelli +misura +ragazzi +invito +spendete +bene +500€ +voluto +18app +dare +segnale +cultura +taglia +cultura +costruisce +cittadinanza +ragazzo +entra +libreria +teatro +museo +compie +gesto +rivoluzionario +entra +età +cittadinanza +piena +attiva +adulta +partendo +valori +cultura +altro +cultura +mangia +adesso +ufficiale +possiamo +dirlo +dicembre +documentario +firenze +secondo +me +andrà +onda +settimane +sempre +sabato +sera +molto +felice +grazie +lucio +presta +tutta +straordinaria +squadra +lavorato +mesi +sotto +sole +firenze +grazie +discovery +metterà +onda +altro +italia +me +sogno +adesso +diventato +realtà +sì +sogno +sempre +pensato +firenze +speciale +capace +tenere +insieme +politica +bellezza +scontri +capolavori +innovazione +poesia +passato +futuro +studiare +vivere +raccontare +firenze +aiuta +vivere +meglio +tempi +quando +barbarie +attacca +cultura +investire +progetto +educativo +firenze +sfida +affascinante +difficile +bellezza +salverà +mondo +credo +davvero +può +solo +criticare +bisogna +fare +controproposte +detto +me +legge +bilancio +stupida +fa +male +italia +italiani +palco +leopolda +insieme +pier +carlo +altro +padoan +provato +rilanciare +offrendo +alternativa +media +praticamente +parlato +vuole +riflettere +ragionare +discutere +minuti +video +illustriamo +grandi +linee +manovra +alternativa +stati +governo +ridotto +spread +fatto +crescere +occupazione +riducendo +prima +volta +anni +rapporto +deficit +pil +quindi +possiamo +solo +criticare +oggi +governa +saprà +ascoltare +giorni +pagina +facebook +salvini +possono +condividere +tenere +immagini +gattini +tratta +strategia +studiata +team +ministro +interno +proprio +quando +italia +andando +sbattere +muro +obiettivo +mostrare +capo +lega +molto +umano +scientificamente +costruito +tavolino +spero +altro +soldi +pubblici +problema +salvini +piacciono +gattini +problema +legge +bilancio +stupida +mai +fatta +governo +italiano +danni +reali +economia +italiana +aziende +famiglie +decreto +dignità +primi +licenziamenti +altro +assunzioni +gattino +lettera +babbo +altro +quando +premier +voluto +piccola +norma +diciottenni +500€ +spendere +meglio +investire +cultura +quando +diciottenne +compra +libro +teatro +entra +museo +sento +orgoglioso +altro +essere +italiano +salvini +maio +bloccato +bonusrenzi +diciottenni +nati +vogliono +cancellare +nati +facciamoci +sentire +sbloccare +fondi +prima +dicembre +evitare +taglino +prossimo +anno +giusto +tagliare +sempre +cultura +giusto +tagliare +sempre +giovani +salvini +maio +fatto +legge +bilancio +sbagliata +dovevano +abolire +povertà +decreto +solo +tagliato +fondi +scuola +bonus +bebè +infrastrutture +dovevano +aumentare +posti +lavoro +grazie +decreto +dignità +licenziamenti +alzato +solo +spread +dovevano +promuovere +onestà +altro +approvato +condoni +punto +danno +colpa +renzi +gentiloni +spread +pil +positivo +fermato +ormai +oltre +ridicolo +riescono +mai +assumersi +responsabilità +fatto +legge +bilancio +stupida +interesse +italiani +danno +colpa +fallimento +pensano +davvero +italiani +possano +credere +squallida +propaganda +bisogna +reagire +amici +colpo +colpo +senza +paura +stamattina +stato +scandicci +cuore +collegio +eletto +insieme +bravo +sindaco +sandro +fallani +preparato +alcuni +emendamenti +legge +bilancio +infrastrutture +scuole +altro +periferie +tutte +cose +stupida +manovra +salvini +maio +purtroppo +tagliando +approfittato +caffè +piazza +chiacchiera +po +cittadini +incontrati +piazza +tanta +preoccupazione +risparmi +molta +voglia +reagire +molliamo +amici +italia +forte +cialtroni +governano +salvini +maio +mettendo +rischio +soldi +italiani +irresponsabili +pensano +ottenere +consenso +sfasciando +conti +bocciatura +europea +mercati +fatto +molto +grave +governo +conferma +miglior +amico +speculatori +soldi +italia +appello +presidente +altro +consiglio +ministro +economia +fermatevi +abbassate +deficit +aprite +dialogo +commissione +cambiate +misure +formulato +padoan +controproposta +dimezzerebbe +spread +oggi +oltre +governo +portato +sotto +quota +abbasserebbe +tasse +pronti +collaborare +aiutare +italia +italiani +fermatevi +altrimenti +prezzo +follia +pagato +caro +cittadini +diretta +senato +top +ten +settimana +fatto +lunga +chiacchierata +claudio +cerasa +direttore +foglio +parlato +spread +crisi +economica +futuro +balle +spaziali +raccontate +salvini +campagna +elettorale +flop +altro +stelle +proposte +fare +basta +criticare +concludo +sguardo +pieno +ottimismo +continuo +credere +futuro +italia +paese +grande +piccole +guerriglie +quotidiane +governo +voglia +tempo +leggerla +lascia +commento +astenersi +troll +ormai +riconosciamo +volo +vediamo +topten +settimana +guardate +storia +oggi +corriere +capodoglio +spiaggiato +indonesia +letteralmente +pieno +plastica +pensate +pezzi +plastica +oltre +chili +bottiglie +sacchetti +infradito +altro +mari +talmente +pieni +plastica +muoviamo +mare +plastica +pesci +allarme +lanciato +world +economic +forum +davos +propriamente +associazione +ambientalista +dobbiamo +insieme +lottare +plastica +investire +innovazione +ricerca +producono +posti +lavoro +salvano +pianeta +sconfiggere +inquinamento +fake +news +ricordate +attaccato +tanto +cambiare +storia +altro +criticato +spesso +sindaco +roma +virginia +raggi +mancanza +pulizia +qualità +manto +stradale +servizio +scadente +autobus +oggi +felice +dare +atto +sindaco +tutta +amministrazione +operazione +casamonica +davvero +ottima +cosa +roma +legalità +italia +serietà +altro +confronto +politico +passa +riconoscere +risultati +avversari +mai +fatto +diversi +complimenti +sindaco +strada +legalità +sempre +compagni +viaggio +sapete +cosa +capisco +clima +cambiando +risposte +danno +profili +finti +troll +lega +stelle +prima +ogni +argomento +contestavano +operato +ora +limitano +insultare +chiedere +sparire +fateci +caso +amici +quando +travaglio +stato +condannato +volte +nessuno +attacca +finti +scandali +altro +quando +spread +vola +oltre +nessuno +mette +discussione +risultati +economici +governo +quando +grillini +votato +condono +edilizio +nessuno +parla +onestà +ambiente +massimo +dicono +sparisci +ritirati +perso +referendum +parlare +vattene +ancora +vediamo +passi +avanti +altro +salvini +maio +scelto +linea +politica +economica +suicida +italia +mercati +presentando +conto +paghiamo +cittadini +spread +significa +prossimo +anno +miliardi +euro +interessi +debito +volte +canone +rai +volte +imu +prima +casa +cifra +aggiuntiva +altro +stanziata +finto +reddito +cittadinanza +spread +così +alto +danno +famiglie +imprese +risparmiatori +banche +artigiani +ricordate +polemiche +banche +fallite +allora +soldi +persi +subordinati +risparmiatori +milioni +euro +quando +carica +governo +risparmiatori +altro +dice +maio +impianti +rifiuti +vintage +certo +niente +neanche +impianto +compostaggio +diciamo +no +così +bello +facile +dire +no +maio +modernità +innovazione +futuro +rifiuti +vengono +portati +germania +ovviamente +gomma +infrastrutture +ferroviarie +vanno +bloccate +altro +maio +modernità +innovazione +futuro +condoni +edilizi +approvato +ischia +norme +aumentare +fanghi +terreni +agricoli +chiusure +domenicali +sussidi +casa +mentre +tagliano +incentivi +crea +lavoro +stelle +giocano +fare +ambientalisti +rendono +conto +sempre +condoni +fango +agricoltura +rete +ultimo +prima +lasciarvi +pranzo +domenicale +tanti +scrivono +matteo +dobbiamo +dire +cosa +pensiamo +basta +dire +male +governo +diciamo +proposte +giusto +prendo +altro +parola +oggi +giornali +notizia +presentazione +parte +autostrade +progetto +genova +pronto +mesi +governo +vuole +dare +via +libera +autostrade +toninelli +maio +conte +idee +bislacche +sentite +secondi +video +sotto +bene +dico +chiara +me +ponte +deve +rifarlo +corsa +autostrade +pagando +ponte +danni +fino +ultimo +centesimo +deve +farlo +subito +autostrade +ogni +giorno +ritardo +schiaffo +ulteriore +ingiusto +genova +genovesi +adesso +trolls +sbizzarriti +chiusure +domenicali +possiamo +passare +parlare +cose +leggere +oggi +topolino +compie +anni +sempre +preferito +pippo +paperino +generazione +comunque +topolino +pietra +miliare +buon +compleanno +allarga +cuore +passeggiare +domenica +mattina +bellezza +senza +fine +firenze +sempre +fin +anni +sindaco +fermato +chiacchierare +lavora +commessi +camerieri +baristi +molti +terrorizzati +ipotesi +chiusure +domenicali +direte +basta +matteo +solo +ipotesi +maio +altro +detto +vuole +chiudere +negozi +ancora +fatto +nulla +troppo +presto +fasciarsi +testa +” +forse +presto +fasciarsi +testa +ogni +momento +giusto +sfasciare +italia +governo +basta +parola +credete +sentite +giovedì +scorso +bloccata +vendita +importante +catena +altro +fateci +caso +settimana +salvini +maio +litigato +termovalorizzatori +peculato +tav +condono +fiscale +terzo +valico +gronda +ruolo +draghi +reddito +cittadinanza +prescrizione +mentre +quei +wrestling +verbale +bisticciano +mattina +sera +frattempo +italia +inchioda +giù +pil +bloccano +altro +assunzioni +fuggono +capitali +ore +governo +italiano +litiga +macron +merkel +trovano +accordo +europa +futuro +regole +bilancio +verrà +italia +tagliata +fuori +populisti +casa +rincorrono +nazionalisti +dunque +mettono +bocca +nessuna +vere +decisioni +altro +ancora +massacro +compiuto +estremisti +islamici +repubblica +centrafricana +quarantadue +persone +state +uccise +parrocchia +vicario +generale +diocesi +cristiani +musulmani +sfollati +chiesa +cattolica +locale +accolto +cuore +generoso +ricordo +scelta +coraggiosa +altro +profetica +papa +francesco +profeticamente +deciso +aprire +giubileo +periferie +proprio +bangui +cuore +martoriato +paese +ancora +oggi +massacro +cristiani +pochissimi +quotidiani +media +parlano +eppure +cristiani +uccisi +ogni +angolo +mondo +migliaia +ogni +anno +inspiegabilmente +martiri +oggi +notizia +forse +temi +portano +voti +almeno +politica +internazionale +deve +smettere +voltare +testa +altra +parte +seconda +causa +tiziano +renzi +marco +travaglio +direttore +fatto +quotidiano +stato +nuovamente +condannato +stavolta +intervento +televisivo +travaglio +condannato +volte +giro +mese +insomma +dovrà +pagare +altri +000€ +ovviamente +contento +padre +ben +difeso +avvocato +luca +mirco +soprattutto +vorrei +altro +condividere +pensiero +bisogna +sopportare +ingiustizie +falsità +diffamazioni +verità +prima +poi +arriva +tempo +galantuomo +giudici +italia +bisogna +solo +saper +aspettare +verrà +presto +tempo +serietà +tornerà +moda +rovesciato +mare +fango +addosso +nessun +risarcimento +ridarà +ciò +sofferto +verità +forte +menzogne +adesso +solo +curioso +vedere +tg +daranno +notizia +buona +giornata +italia +parlano +pochi +vicenda +brexit +enorme +ricapitoliamo +fatti +referendum +deciso +regno +unito +deve +uscire +unione +europea +promotori +uscita +raccontavano +stato +semplice +positivo +realtà +dimostrato +contrario +uscire +europa +produce +danni +breve +periodo +altro +catastrofe +medio +periodo +vedremo +primo +ministro +may +forza +voglia +indire +nuovo +referendum +tempo +intanto +galantuomo +londra +solo +roma +ormai +chiaro +infatti +promotori +uscita +europa +mentito +inglesi +durante +referendum +appare +evidente +fatto +classe +media +pagherà +conseguenze +decisione +europa +problema +regno +unito +vero +proprio +disastro +cambiare +europa +dovere +lasciare +europa +significa +tradire +propri +valori +disintegrare +propria +economia +oggi +aula +collega +santillo +senatore +movimento +stelle +fatto +dichiarazione +voto +gruppo +fatta +nome +pd +santillo +attaccato +me +strano +dicendo +dovrei +tacere +nominato +mario +monti +senatore +vita +scorsa +legislatura +monti +viene +mai +aula +dunque +ormai +danno +colpa +altro +assenze +mario +monti +passi +qualcuno +stelle +notare +santillo +presidente +consiglio +nominare +senatori +vita +presidente +repubblica +possibile +senatore +sappia +premier +nomina +senatori +vita +aggiungo +quando +monti +fatto +senatore +altro +oggi +novembre +movimento +stelle +ufficialmente +perso +ogni +diritto +usare +parola +onestà +decreto +genova +infilato +norme +condono +edilizio +votato +insieme +vecchia +politica +dicevano +voler +combattere +primo +giorno +giocato +pelle +genova +genovesi +maio +chiesto +altro +fincantieri +fare +ponte +posto +autostrade +poi +spiegato +fincantieri +fa +navi +ponti +toninelli +rifiutato +progetto +renzo +piano +detta +così +fa +quasi +ridere +toninelli +rifiuta +progetto +renzo +piano +toninelli +spiego +conte +dice +possiamo +aspettare +tempi +giustizia +altro +diretta +senato +decreto +genova +nocondonodimaio +tutta +campagna +elettorale +salvini +pensioni +preso +giro +italiani +prima +detto +abolito +fornero +poi +abbassato +aspettative +detto +quota +senza +penalizzazioni +adesso +scopriamo +andrà +pensione +anticipata +dovrà +accettare +decurtazione +quota +solo +accetti +altro +rinunciare +parte +pensione +insomma +uomo +voleva +abolire +fornero +fine +soltanto +brutta +copia +ape +anticipo +pensionistico +previsto +governo +facile +fare +populista +quando +opposizione +poi +vai +governo +realtà +presenta +conto +promesso +luna +tempo +galantuomo +oggi +chiaro +salvini +pensioni +mentito +elettori +ricordate +storia +sacchetti +plastica +favorito +azienda +amica +squallida +fake +news +privilegiato +amica +solo +parlato +leopolda +inizio +vicenda +sacchetti +plastica +utilizzata +campagna +elettorale +modo +vergognoso +soprattutto +altro +stelle +oggi +giornalista +franco +bechis +informa +azienda +incriminata +mater +biotech +prima +azienda +mondo +produzione +industriale +bio +butandiolo +materie +prime +rinnovabili +ieri +recato +visita +beppe +grillo +proprio +beppe +grillo +vede +ricordava +cosa +scrivevano +sacchetti +altro +diretta +senato +top +ten +settimana +aspetto +top +ten +settimana +poco +dopo +geniale +manovra +governo +salvini +maio +spread +continua +correre +significa +pagheremo +mutui +alti +rate +macchina +care +interessi +fidi +alti +significa +italia +pagherà +prossimo +anno +miliardi +€ +solo +proprio +debito +follia +paradosso +legge +bilancio +altro +niente +ciò +promesso +campagna +elettorale +niente +reddito +cittadinanza +flattax +superamento +fornero +solo +scampoli +slogan +senza +coperture +condoni +ogni +genere +dice +forzato +mano +europa +rispettare +patto +elettori +no +rotto +europa +preso +giro +elettori +ve +ricordate +promesse +campagna +elettorale +entrate +legge +bilancio +pronto +dire +allora +pd +oppure +fatto +renzi +rispondo +spread +sceso +sopra +aumentare +followers +triplicato +spread +tanto +pagano +italiani +lavoro +lotta +senza +quartiere +condono +edilizio +maio +vuole +ischia +producendo +primi +risultati +qualche +minuto +fa +commissione +senato +maggioranza +stata +battuta +emendamento +condono +prima +volta +legislatura +governo +andato +sotto +atto +parlamentare +grazie +voto +altro +contrario +alcuni +senatori +stelle +ringrazio +continueremo +battaglia +condoni +legalità +aula +rinnovo +appello +conte +salvini +togliete +parte +condono +edilizio +ischia +decreto +genova +voteremo +stralciate +schifezza +condono +abusivismo +muore +basta +ieri +corriere +sera +polemizzato +me +vicenda +persone +sindrome +down +risposto +così +oggi +lettera +direttore +caro +direttore +mai +richiesto +gentile +ospitalità +pur +avendone +volte +occasione +corriere +sempre +seguito +attenzione +– +ringrazio +credo +altro +stampa +libera +maggior +ragione +periodo +minacce +informazione +– +mai +chiesto +fare +precisazioni +fatto +nemmeno +quando +dato +caudillo” +adesso +replicare +antonio +polito +ieri +criticato +aver +pubblicato +foto +nipote +maria +bimba +sindrome +altro +casi +morbillo +bari +pare +causati +bambina +figlia +novax +così +significa +delirio +governo +notav +noolimpiadi +nogronda +deve +almeno +smettere +essere +governo +novax +ripristinare +obbligo +legge +lorenzin +subito +giocando +pelle +bambini +pugno +like +social +mettono +rischio +vita +deboli +sembrano +matti +veramente +pericolosi +scienza +ragione +grilloleghisti +torto +facciamoci +sentire +gioia +avere +bimbo +cosa +bella +mondo +supera +ogni +problema +certo +pannolini +costano +spese +aumentano +figlio +impatta +bilancio +spesso +ricorre +aiuto +nonni +quando +palazzo +chigi +detti +diamo +piccolo +aiuto +denaro +fa +figli +spese +quotidiane +altro +cambierà +vita +almeno +diamo +mano +così +istituito +bonusbebè +ovviamente +stato +criticato +sempre +resto +fine +bonusbebè +aiutato +centinaia +migliaia +famiglie +ora +arrivato +governo +cambiamento +legge +bilancio +manovra +popolo +tolto +bonusbebè +basta +bonus +renzi +via +zac +però +promettono +figli +regaleranno +pezzo +terra +incolta +sud +podere +popolo +insomma +tolgono +soldi +famiglie +messo +dicono +combattere +crisi +demografica +regalando +forse +pezzi +terreno +incolti +mezzogiorno +cosa +seria +ridere +ricevuto +molte +critiche +ore +aver +telefonato +virginia +raggi +dopo +assoluzione +capisco +fair +play +avversari +vada +moda +spesso +responsabilità +proprio +stelle +insulti +ricevuto +persone +state +massacrate +insieme +famiglie +semplicemente +avviso +altro +garanzia +dimentico +fango +stato +buttato +addosso +diversi +vogliamo +cedere +cultura +odio +vogliamo +sconfiggere +avversari +via +politica +fango +quando +cittadino +viene +assolto +davvero +garantista +festeggia +battista +maio +insultato +giornalisti +colpevoli +altro +ogni +domenica +oggi +centinaia +migliaia +persone +lavorando +lavorano +trasporto +pubblico +ospedali +musei +stadi +ristoranti +negozi +professioni +ovunque +ministro +maio +vuole +chiudere +italia +domenica +attacca +sindaci +contrari +bislacche +idee +filosofia +altro +base +chiusura +negozi +domenica +no +tav +reddito +cittadinanza +condono +edilizio +sempre +stessa +italia +ferma +avvitata +assistenzialismo +decrescita +invece +credo +lavoro +sussidi +credo +aperture +chiusure +infrastrutture +condoni +diversità +altro +garantista +assoluzione +virginia +raggi +buona +notizia +avversari +sconfiggono +urne +tribunali +giudizio +sindaco +raggi +devono +dare +cittadini +magistrati +sempre +detto +continuerò +dirlo +oggi +roma +bella +giornata +torino +stamattina +inizia +fine +dice +solo +no +no +tav +no +olimpiadi +no +crescita +italia +sperimentando +no +ferma +tornerà +presto +tempo +dice +grazie +torino +sitav +diretta +salsomaggiore +italia2030 +diretta +salsomaggiore +terme +italia2030 +rocco +casalino +insiste +vicenda +persone +sindrome +down +anziché +fermarsi +chiedere +scusa +diretti +interessati +famiglie +italiani +rilancia +dice +orrore +mostrato +foto +nipotina +maria +devono +mostrare +foto +persone +sindrome +down +secondo +altro +mostrare +foto +zio +nipotina +significa +strumentalizzare +so +casalino +rende +conto +dice +vergogno +avere +nipotina +sindrome +down +fiero +orgoglioso +maria +vita +sorriso +quando +vado +correre +raccogliere +fondi +associazione +trisomia +altro +barbara +lezzi +detto +vuole +fare +informazione +scientifica +gradi +tutta +comunità +social +ride +crepapelle +capisco +viene +ridere +me +niente +ridere +amici +fa +ministro +rappresenta +ridete +prima +volta +lezzi +già +detto +pil +cresce +condizionatori +altro +toninelli +detto +viadotto +autostradale +genova +vuol +giocare +bambini +viadotto +dire +gradi +allora +gaffe +ridere +ennesima +dimostrazione +incompetenza +imbarazzante +dicono +antipatici +forse +me +meglio +essere +antipatici +incompetenti +domani +torino +scende +piazza +tav +sindaco +chiara +appendino +fa +appendino +attacca +me +dice +grillina +renzi +riteneva +inutile +tav +quando +fatto +premier +cambiato +progetto +tav +insieme +ministro +delrio +francesi +scelto +fare +progetto +meno +impattante +scelto +utilizzare +altro +linea +storica +riducendo +nuova +linea +chilometri +soli +risparmiato +miliardi +progetto +originario +eccessivo +risparmiato +miliardi +senza +bloccare +opera +cara +appendino +chiama +capacità +governo +invece +chiama +demagogia +bloccando +torino +italia +forza +dire +no +tav +no +olimpiadi +no +crescita +state +dicendo +no +futuro +smetti +attaccare +me +cara +sindaco +prenditi +responsabilità +capace +tav +finanziata +grillini +vogliono +bloccarla +facile +fare +populista +quando +opposizione +poi +però +vai +governo +scopri +realtà +forte +propaganda +puoi +disegnare +mondo +bellissimo +opposizione +poi +metti +toninelli +infrastrutture +sogni +frantumano +solo +sogni +livello +nazionale +grillini +vanno +avanti +forza +condoni +altro +compromessi +voti +fiducia +livello +locale +vede +forza +sgretolamento +corso +torino +sabato +migliaia +persone +scenderanno +piazza +amministrazione +stelle +chiara +appendino +dire +no +tav +significa +tagliarsi +gambe +significa +isolarsi +mondo +significa +scegliere +decrescita +infelice +roma +altro +ieri +fatto +chiacchiera +gerardo +greco +w +italia +maltempo +condoni +salvini +maio +vaccini +molto +altro +dite +pensate +buona +giornata +stasera +rete +aspetto +dopo +nipote +maria +sindrome +down +cittadina +altri +diritto +altri +essere +rispettata +istituzioni +paese +vorrei +dire +diritto +altri +essere +rispettata +parole +schifose +squallide +indegne +rocco +casalino +portavoce +presidente +consiglio +altro +ministri +parole +paese +civile +sola +conseguenza +dimissioni +casalino +abituato +insultare +giornalisti +avversari +politici +persone +povere +stranieri +adesso +superato +limite +giusto +tasse +vadano +pagare +super +stipendio +signore +insulta +persone +sindrome +down +altro +ciao +tiberio +grande +fotografo +grande +amico +grande +uomo +stato +fortunato +lavorare +te +voglio +bene +diretta +senato +top +ten +settimana +aspetto +diretta +facebook +top +ten +settimana +poco +treno +firenze +roma +chiedervi +mano +succedendo +vergogna +nazionale +dobbiamo +muoverci +insieme +italia +piange +decine +morti +salvini +dà +colpa +ambientalismo +salotto” +credo +invece +responsabilità +abusivismo +edilizio +chiedo +governo +smettere +polemiche +recuperare +altro +subito +progetto +casa +italia +renzo +piano +stata +prima +cosa +cancellata +lega +stelle +ripensateci +no +condoni +sì +casa +italia +maltempo +fatto +danni +morti +tutta +italia +eppure +governo +litiga +nomine +reddito +cittadinanza +tanto +cambiare +poltrone +sussidi +peggiore +tradizione +politica +italiana +stato +emergenza +riguarda +tante +regioni +dolomiti +sicilia +rischiamo +pagare +anni +effetti +maltempo +altro +appello +governo +smettete +litigare +settimana +riaprite +subito +progetto +casa +italia +ideato +renzo +piano +chiuso +maio +salvini +pronti +venire +parlamento +votare +favore +proposta +fatelo +subito +basta +parlare +condoni +riaprite +subito +casa +italia +soldi +spendeteli +anziché +sussidi +elettorali +ore +governo +utilizza +tragedia +ponte +morandi +approvare +decreto +genova +condono +edilizio +trentamila +case +ischia +condono +nome +cognome +luigi +maio +ore +italia +flagellata +maltempo +parlamento +vota +ennesimo +condono +nascondendosi +dietro +dramma +genova +tratta +pagina +squallida +inizio +legislatura +notizia +assoluzione +asia +bibi +dopo +anni +trascorsi +attesa +condanna +morte +blasfemia +rende +giornata +splendida +meravigliosa +bellissima +giornata +guardate +giornali +oggi +dramma +italia +ridere +sempre +colpa +prima +diciamola +semplice +prendiamo +governo +quando +paese +recessione +jobsact +sbloccaitalia +riduzione +irap +superammortamento +industria +italia +torna +segno +anni +consecutivi +pil +altro +segno +arrivano +cambio +governo +bloccano +opere +pubbliche +cambiano +mercato +lavoro +aprono +condoni +pil +ferma +dopo +anni +segno +torna +zero +anziché +dire +scusate +sbagliato +rimediamo +subito +salvini +maio +danno +colpa +prima +prima +tornati +segno +italia +torna +recessione +padre +tiziano +renzi +scritto +oggi +lettera +pubblicata +pagamento +quotidiano +nazionale +fatto +giorno +dopo +richiesta +archiviazione +consip +dopo +tribunale +condannato +altro +marco +travaglio +fatto +quotidiano +invito +soprattutto +insultato +padre +famiglia +leggere +lettera +parte +posso +solo +dire +voglio +bene +babbo +diretta +palazzo +giustiniani +top +ten +settimana +dati +istat +dopo +anni +crescita +italia +bloccata +prima +volta +dopo +anni +pil +torna +zero +salvini +maio +sfasciando +italia +fermatevi +pagailpopolo +vive +città +firenze +servita +perfettamente +tav +rende +conto +importanza +culturale +economica +sociale +alta +velocità +firenze +ormai +tappa +metropolitana +italia +proprio +dobbiamo +reagire +assurda +volontà +distruzione +movimento +stelle +dire +no +tav +significa +dire +no +solo +torino +lione +dire +no +venezia +milano +parigi +grilloleghisti +vogliono +isolare +italia +politica +sadomasochismo +stato +sinagoga +firenze +testimoniare +vicinanza +comunità +ebraica +dopo +terribili +fatti +pittsburgh +considero +dovere +senatore +rappresentante +proprio +territorio +considero +dovere +padre +ricordare +nuove +generazioni +odio +antisemita +combattuto +oggi +ancora +oggi +quando +penso +ieri +predappio +migliaia +persone +inneggiavano +fascismo +ironizzavano +auschwitz +voglia +urlare +forza +mai +fascismo +oggi +sinagoga +dimenticare +mai +mesi +ripeto +tempo +galantuomo +finti +scandali +vere +diffamazioni +numeri +economia +tempo +galantuomo +oggi +dico +ribadisco +ancora +forza +nessun +risarcimento +potrà +compensare +ciò +persone +innocenti +dovuto +subire +tempo +galantuomo +oggi +mai +scritto +articolo +memoria +gilberto +benetton +trovo +incredibile +mondo +sciacalli +codardi +tanti +lecchini +ruffiani +potenti +turno +improvvisamente +spariscono +momento +difficoltà +dolore +voluto +dirlo +pubblicamente +gazzettino +me +notizia +settimana +viene +stati +uniti +odio +verbale +brutta +bestia +insultano +male +offendono +sembra +giusto +poi +qualcuno +odio +verbale +passa +azione +invasato +filo +trump +spedito +bombe +obama +clinton +soros +cnn +prendendo +mira +bersagli +preferiti +destra +populista +altro +americana +processato +punito +personalmente +prende +pistola +spara +risponde +altri +accaduto +macerata +qualche +mese +fa +candidato +lega +traini +sparato +sede +pd +ragazzi +colore +però +politica +dovrebbe +fare +prendere +distanze +modo +giusto +piaciuto +vedere +trump +invitare +obama +casa +bianca +dare +insieme +segnale +violenza +piaciuto +vedere +salvini +dopo +condanna +traini +valorizza +lotta +razzismo +anziché +farsi +sentire +solo +quando +vittima +italiana +colpevole +immigrato +piaciuto +sostanza +vedere +po +civiltà +purtroppo +stavolta +mancata +fatto +campagna +elettorale +dicendo +no +tap +oggi +ammettono +ovviamente +tap +fatto +tutta +campagna +elettorale +dicendo +no +ilva +seguito +percorso +tenendo +ovviamente +aperta +ilva +riempito +fango +tutte +scelte +adesso +ovviamente +confermano +cominciare +80€ +dicono +altro +essere +governo +cambiamento +vero +cambiano +sempre +idea +adesso +cambieranno +idea +manovra +ovviamente +abbasseranno +deficit +alternative +vogliono +distruggere +finanze +paese +arrivare +potere +garantito +vinto +elezioni +promettendo +cose +potevano +realizzare +presi +gioco +aspettative +gente +tempo +galantuomo +prima +poi +scopriranno +italiani +oggi +scoperto +no +tap +maio +dice +draghi +avvelena +clima” +punto +domanda +drammatica +vice +presidente +consiglio +repubblica +italiana +maio +fa +crisi +finanziaria +porte +gente +può +portando +soldi +estero +spread +fa +male +famiglie +imprese +italiane +draghi +invita +dialogo +altro +abbassare +toni +calmare +mercati +fa +ineffabile +gigino +attacca +draghi +purtroppo +maio +credibile +solo +quando +occupa +condoni +economia +italia +andando +sbattere +colpa +irresponsabilità +gente +maio +gira +mondo +rende +conto +ogni +giorno +ogni +incontro +ogni +istante +chongqing +città +popolosa +mondo +milioni +persone +abitano +metropoli +cinese +città +sola +intera +popolazione +italiana +giorni +conferenze +scelto +passare +salutare +ragazzi +sant +anna +pisa +prima +istituzione +ricerca +capito +importanza +altro +territorio +bravissimi +ragazzi +prof +sant +anna +bravissimi +neonato +consolato +generale +chongqing +serve +territorio +circa +milioni +persone +volte +italia +marea +possibilità +opportunità +pensate +turisti +studenti +scambio +commerciale +dobbiamo +aver +paura +mondo +globale +valorizzare +altro +fare +ragionamenti +semplici +moda +preferisce +urlare +proviamoci +insieme +almeno +amici +europa +boccia +manovra +italiana +salvini +risponde +stile +me +frego +” +prosegue +ministro +grande +alleanza +populisti +vinceremo +prossime +elezioni +cambiando +europa +solo +giorni +altro +alleati +europei +salvini +nazionalisti +populisti +dicendo +manovra +italiana +folle +bocciata +stamattina +detto +destra +tedesca +afd +dicono +alleati +immagini +avversari +domanda +sorge +spontanea +vogliono +bocciare +italia +salvini +fa +alleanza +lega +frattempo +italiani +perso +mesi +miliardi +€ +sfasciando +economia +senza +mantenere +promesse +elettorali +autogol +semplicemente +impressionante +speculatori +internazionali +godono +famiglie +italiane +pagano +nord +leghista +prima +poi +renderà +conto +manovra +suicidio +finanziario +senza +precedenti +conto +pagano +italiani +servizio +agorà +rai +operai +terzo +valico +opera +pubblica +governo +finanziato +serve +moltissimo +genova +tutta +liguria +ministro +toninelli +altro +vuole +inspiegabilmente +bloccare +brillanti +intuizioni” +quest +uomo +ormai +problema +votato +stelle +lega +figuratevi +altri +operai +urlano +vogliamo +lavorare +follia +opera +pubblica +serve +fondi +già +stanziati +gente +lavora +ministro +vuole +bloccare +dare +forse +operai +reddito +cittadinanza +gente +urla +vogliamo +lavoro +reddito +cittadinanza +bloccare +opere +pubbliche +significa +bloccare +futuro +italia +europa +dice +italia +grillo +leghista +rispetta +regole +allora +eurodeputato +leghista +tal +ciocca +fa +sceneggiata +ridicola +scarpa +made +italy +pesta +volontariamente +appunti +commissario +europeo +moscovici +giustizia +fatta +italia +recupera +dignità +commentano +leghisti +pestando +documenti +scena +imbarazzante +paese +farsi +coprire +ridicolo +così +occhi +giornalisti +mondo +farsa +portafogli +famiglie +italiane +tragedia +fiero +orgoglioso +amico +collega +davide +faraone +padre +meravigliosa +bambina +autistica +piccola +sara +meritava +merita +insulti +beppe +grillo +risatine +stupide +applaudiva +circo +massimo +ripeto +beppe +grillo +schifo +anni +lottato +recuperare +credibilità +europa +mercati +adesso +salvini +maio +portavoce +conte +sfasciano +tenuta +economica +paese +dramma +riusciranno +comunque +mantenere +folli +promesse +elettorali +neanche +deficit +titolo +ancora +parli +chiederanno +altro +troll +portato +spread +sotto +quota +adesso +sopra +spread +sopra +famiglie +italiane +piangono +speculatori +internazionali +godono +motto +me +frego +europa +portando +paese +recessione +fermatevi +italia +merita +nuova +crisi +finanziaria +diretta +senato +top +ten +settimana +aspetto +facebook +top +ten +settimana +dopo +notizia +personale +oggi +arrivata +prima +decisione +lunga +serie +azioni +civili +intentate +padre +tiziano +renzi +confronti +marco +travaglio +fatto +quotidiano +prima +oggi +vede +condanna +direttore +travaglio +giornalista +società +editoriale +cifra +000€ +novantacinquemila +altro +niente +potrà +ripagare +enorme +mole +fango +buttata +addosso +famiglia +padre +salute +campagna +odio +senza +precedenti +qualcuno +inizia +pagare +almeno +danni +volevo +condividerlo +buona +giornata +amici +ieri +5stelle +chiuso +proprio +evento +circo +massimo +insulti +beppe +grillo +capo +stato +italiano +capo +stato +francese +opposizione +noto +pregiudicato +genovese +pago +pensato +bene +insultare +persone +soffrono +autismo +figlio +disturbi +spettro +autistico +altro +combatte +ogni +giorno +bambino +venga +discriminato +vergogna +vedere +primo +partito +italiano +chiude +propria +festa +annuale +parole +scherno +verso +famiglie +diversi +5stelle +solo +garantismo +giustizialismo +lavoro +reddito +cittadinanza +legalità +condoni +diversi +diritti +legge +autismo +terzo +settore +dopo +insultare +mattarella +macron +inaccettabile +forza +politica +scala +valori +prendersi +gioco +bambino +autistico +peggio +offendere +presidente +repubblica +senza +giri +parole +beppe +grillo +me +schifo +salvini +facebook +dice +massacrato +italiani +stato +licenziato +elettori +insultato +ordine +cartellone +risultati +altro +massacro +altro +fatto +ripartire +italia +preso +elezioni +governano +no +solo +svenduti +stelle +poltrona +invece +fatto +lega +insultato +salvini +solo +detto +cialtronaggine +governo +fatto +crescere +spread +miliardi +euro +paghiamo +fatti +salvini +resto +propaganda +buona +domenica +parole +dire +leopolda9 +commosso +colpito +convinto +grazie +persona +streaming +grazie +crede +oggi +ieri +governo +vuole +altro +distruggere +economia +italiana +valori +europei +dobbiamo +fermarli +partire +comitati +civici +ritorno +futuro” +inizia +strada +nuova +facciamola +insieme +grazie +migliaia +persone +condividono +progetto +buona +domenica +amici +diretta +leopolda9 +stamani +code +fuori +leopolda +mai +successo +prima +trovo +parole +giuste +dire +colpisca +profondo +cuore +voglia +mollare +continuare +combattere +costruire +futuro +voglia +resistenza +culturale +voglia +tornare +futuro +eccoci +parte +ultima +giornata +prima +però +grande +abbraccio +grazie +leopolda +spiega +vive +vivendola +incontrano +persone +diverse +sindaci +curano +propria +comunità +professore +combatte +ignoranza +difende +vaccini +scienziato +costruisce +futuro +giornaliste +difendono +libertà +lottano +uomo +spettacolo +sceglie +stare +gioco +alterna +battute +altro +riflessioni +profonde +serie +vita +cinquanta +tavoli +discutono +ore +futuro +meraviglioso +paese +centinaia +persone +pronte +lanciare +comitati +civici +ogni +angolo +italia +scuso +oltre +mille +persone +rimaste +fuori +cancelli +migliaia +persone +dentro +migliaia +persone +fuori +meno +male +considerano +altro +diretta +leopolda9 +ritornoalfuturo +ieri +sera +leopolda9 +tributato +applauso +lunghissimo +pier +carlo +padoan +migliaia +persone +alzate +piedi +dire +grazie +anni +aiutato +paese +passare +recessione +crescita +avvenuto +proprio +ore +colpa +arroganza +governo +italia +riceveva +bocciatura +altro +agenzie +rating +proprio +quando +governo +fatto +declassare +proprio +quando +salvini +maio +regalano +pezzi +italia +speculazione +internazionale +facile +riconoscere +valore +persone +padoan +competenza +cialtronaggine +serietà +bugie +politica +populismo +leopolda9 +appena +tornato +casa +mentre +ragazzi +under30 +leopolda +continuano +discutere +attorno +tavoli +difficile +spiegare +emozioni +serata +quando +perdono +elezioni +molti +dirigenti +politici +scendono +carro +tanti +moltissimo +dimenticano +passato +sanno +solo +contestare +qualcuno +chiamava +altro +atteggiamento +sindrome +beneficiato +rancoroso +niente +sempre +dato +scende +carro +carro +sempre +spinto +fa +politica +passione +interesse +oggi +leopolda +dato +lezione +meravigliosa +quest +anno +dopo +sconfitta +doppio +gente +scorso +altro +diretta +stazione +leopolda +leopolda9 +ritornoalfuturo +pazzesche +ragazze +volley +pazzesche +viva +italia +viva +campionesse +strepitose +attesa +vederci +stasera +leopolda +diretta +streaming +fatto +chiacchierata +amici +fanpage +trovate +buona +giornata +amici +spread +galoppa +oltre +governo +fa +male +italia +domani +leopolda +insieme +padoan +offriamo +governo +proposta +dimezzare +spread +abbassare +tasse +basta +criticare +bisogna +proporre +bisogna +sbrigarsi +mandando +economia +italiana +sbattere +ritornoalfuturo +diretta +senato +parliamo +leopolda +molto +altro +oggi +senato +parleremo +leopolda +molto +altro +aspetto +diretta +facebook +luigi +maio +uomo +disperato +accorto +ritardo +aver +dato +via +libera +condono +prima +votato +testo +decreto +legge +poi +detto +glielo +cambiato +rimangiato +adesso +tv +dire +renzi +condono +scudo +fiscale +falso +mai +fatto +né +condono +né +scudo +fiscale +altro +problema +qualsiasi +studente +giurisprudenza +primo +anno +grado +spiegare +vice +presidente +consiglio +imbarazzante +mediocrità +domanda +sorge +spontanea +luigi +maio +almeno +leggere +riesce +capire +senso +cose +firma +vota +temo +no +condono +fiscale +atto +assurdo +dice +cittadini +pagare +tasse +conviene +paga +tasse +sbaglia +fine +paradosso +flat +tax +fatta +soltanto +evasori +secco +sistemeranno +pregresso +peggio +condono +fiscale +solo +condono +edilizio +oggi +senato +dovuto +vedere +altro +facce +movimento +stelle +quando +attaccato +condono +tombale +case +abusive +ischia +grillini +leghisti +infilato +nascosto +decreto +emergenza +genova +poi +qualcuno +chiederà +cosa +entri +ischia +ponte +genova +potrebbero +essere +salvate +trentamila +case +costruite +modo +abusivo +me +altro +governo +mettendo +seriamente +rischio +conti +pubblici +provato +stasera +floris +spiegare +prima +qualche +giornalista +rinfacciasse +astio +passato +vergogno +passato +fatto +tante +cose +molte +utili +paese +restituito +segno +crescita +altro +dopo +anni +crisi +adesso +tempo +parlare +futuro +italia +tornerà +grande +condoni +assistenzialismo +strada +salvini +maio +porta +europa +porta +venezuela +allora +bisogno +tracciare +strada +futuro +insieme +venerdì +sera +proveremo +stazione +leopolda +insieme +sorriso +labbra +lasciando +odio +vive +buona +serata +amici +aspetto +leopolda +dovevano +abolire +povertà +invece +italia +tornerà +recessione +doveva +essere +governo +cambiamento +invece +governo +condono +vinto +elezioni +promettendo +mari +monti +adesso +chiaro +pagano +assegni +vuoto +oggi +salvini +attacca +juncker +noia +sempre +soliti +slogan +idee +presidente +commissione +solo +chiacchiere +fa +ministro +interno +italiano +voler +cambiare +cose +europa +mette +mai +piede +ancora +venerdì +scorso +svolto +vertice +ministri +andato +preferendo +dice +restare +italia +andare +correre +sotto +acqua +vuoi +cambiare +cose +europa +almeno +partecipa +riunioni +oppure +smetti +prendere +giro +concittadini +pensate +politica +cosa +seria +voglia +condividere +idee +sopportate +insulti +volete +bene +italia +fine +settimana +stazione +leopolda +firenze +posto +altro +fa +parte +venerdì +sera +finisce +domenica +pranzo +anzi +quest +anno +finisce +proprio +lanceremo +comitati +impegno +civile +ogni +comune +titolo +ritorno +futuro +bisogno +bisogno +italia +parla +congresso +candidature +solo +dare +mano +paese +meraviglioso +astenersi +troll +odiatori +professione +venditori +fumo +specie +ministri +riccioli +senza +riccioli +aspetto +stazione +leopolda +carichi +pieni +entusiasmo +quando +governa +manda +sbattere +paese +basta +fare +opposizione +devi +avere +forza +proposta +alternativa +apriremo +leopolda +presentando +pier +carlo +padoan +controproposta +altro +legge +bilancio +idea +semplice +spiegata +bene +cosa +può +capire +toninelli +proposta +spread +dimezza +scendono +tasse +parlato +intervista +corriere +sera +dicono +me +frego +diciamo +cuore +italia +vogliamo +bilancio +penalizzi +lavoratori +famiglie +italiane +regalando +soldi +speculatori +internazionali +programma +ulisse +mai +oggi +emoziona +sconvolge +grazie +alberto +angela +raiuno +pensiero +altri +nedo +fiano +ogni +anno +accompagnava +studenti +fiorentini +campi +sterminio +rivivere +quel +dolore +vincere +memoria +vedere +bambini +discriminati +mensa +scolastica +ragioni +economiche +fa +male +cuore +politica +basata +odio +paura +genera +mostri +accadendo +lodi +me +disumano +dicono +zitti +minoranza +sì +minoranza +zitti +rinunceremo +mai +essere +civili +essere +umani +chiamiamo +cose +nome +lodi +vergogna +nazionale +aeroporto +firenze +investitore +internazionale +grandi +soci +americano +asiatico +milioni€ +pronti +investire +firenze +pisa +prima +volta +fatto +squadra +lavorano +insieme +solo +firenze +duemila +nuovi +posti +lavoro +rispettando +legge +ottemperando +valutazione +altro +impatto +ambientale +ieri +ministro +agricoltura +centinaio +detto +aeroporto +firenze +deve +fare +già +fatto +capire +ministro +infrastrutture +immenso +toninelli +accusa +aeroporto +voluto +renzi +anni +tutta +firenze +parla +nuova +pista +aeroporto +tutte +categorie +altro +oggi +salvini +costretto +smentire +possibilità +fare +patrimoniale +dichiarazione +senso +fallimento +leghista +partiti +flattax +adesso +scritto +documento +bilancio +ammettono +aumenteranno +tasse +addirittura +devono +smentire +ipotesi +patrimoniale +primi +altro +rendersi +conto +ciò +accadendo +elettori +salvini +nord +volevano +meno +tasse +pagheranno +finanziare +reddito +cittadinanza +superamento +fornero +soldi +lavorare +gente +insomma +colpa +misure +italiani +pagheranno +interessi +cari +tempo +galantuomo +mostrerà +differenza +serietà +promesse +vuoto +situazione +economica +paese +molto +seria +fatto +pasticcio +chiamato +manovra +popolo +abbassato +spread +riportato +crescita +italia +dovere +fare +proposte +criticare +gente +toninelli +diventando +persino +noioso +imbarazzante +toninelli +ministro +altro +imbarazzanti +bugie +maio +giornali +imbarazzante +arroganza +salvini +economia +dobbiamo +però +ripartire +farlo +subito +stazione +leopolda +seguiremo +polemiche +quotidiane +correnti +pd +piazza +chiesto +unità +divisioni +parleremo +congresso +italia +altro +crolla +ponte +morandi +dà +colpa +pd +decreto +genova +scrive +cuore +viadotto +autostradale +vorrebbe +farci +giocare +bambini +viadotto +autostrada +chiede +bloccare +gronda +tanto +genova +serve +eh +già +serve +altro +concentratissimo +opere +pubbliche +fermando +tutte +vuole +bloccare +aeroporto +firenze +proposto +renzi +danilo +toninelli +ministro +infrastrutture +oggi +toninelli +detto +studiato +dossier +visto +merci +italiane +utilizzano +tunnel +brennero +toninelli +tunnel +brennero +stato +finanziato +governo +attivo +prima +cosa +studiato +toninelli +leggere +capisce +entrambi +casi +grave +governo +italia +spread +continua +salire +investitori +considerano +italia +paese +andarsene +situazione +molto +seria +settimana +secondo +maio +stata +abolita +povertà +tanto +euforia +sotto +balcone +palazzo +chigi +settimana +salvini +risponde +me +frego +quando +governavamo +ogni +giorno +obiettivo +cercare +altro +raggiungere +germania +oggi +obiettivo +diventato +farsi +sorpassare +grecia +tempo +galantuomo +riconoscerà +ciò +fake +news +troll +propaganda +vorrebbero +rimuovere +ciò +rende +triste +fine +irresponsabilità +salvini +maio +pagata +caro +prezzo +italiani +soprattutto +italiani +poveri +donna +anni +vive +carcere +pachistano +colpevole” +solo +essere +cattolica +credere +gesù +cristo +chiama +asia +bibi +stata +condannata +morte +ore +dovrebbe +arrivare +sentenza +definitiva +bello +vicenda +insieme +donne +uomini +buona +volontà +capaci +unirsi +altro +dividersi +unirsi +chiedere +autorità +pachistane +salvare +liberare +asia +gioie +grandi +esperienza +premier +stata +abbracciare +meriam +imprigionata +stesso +motivo +sudan +poi +liberata +recuperata +volo +stato +italiano +piacerebbe +tanto +credenti +lavorassimo +uniti +consentire +asia +riassaporare +libertà +ottobre +ottobre +stefano +borgonovo +incoraggiato +amici +accompagnato +amore +chantal +figli +spinto +carrozzina +roberto +baggio +entrava +sotto +curva +altro +fiesole +molti +piansero +rivedendo +sotto +curva +ragazzi +b2 +fatto +sognare +stefano +infatti +vestiva +calzoncini +coperta +malato +momento +doloroso +bellissimo +borgonovo +regalo +firenze +intero +mondo +calcio +ricerca +decise +infatti +mostrarsi +combattere +sla +stronza +chiamava +qualche +anno +dopo +ancora +stadio +franchi +grande +onore +consegnargli +sindaco +altro +spread +supera +quota +portato +sotto +quota +salvini +dice +colpa +mercati +colpa +soros +pensa +davvero +poter +prendere +giro +italiani +colpa +governo +scherzando +fuoco +tanto +fine +pagano +sempre +cittadini +quando +spread +alto +paga +famiglie +risparmiatori +altro +povera +gente +miliardari +invece +guadagnano +davanti +diffidenze +mercati +europa +vicepremier +risponde +me +frego +possiamo +stupirci +reazioni +manovra +popolo +fatta +pelle +italiani +italia +ingranando +retromarcia +peccato +fenomenologia +cialtroni +mesi +promettono +giorni +condono +chiamano +pace +fiscale +prendono +valanghe +applausi +talk +attaccando +equitalia +godono +dati +sondaggi +poi +però +nulla +rimangono +incertezza +così +cittadini +onesti +frustrati +deve +pagare +magari +paga +aspettando +altro +condono +stato +costretto +mettere +conto +avere +meno +incassi +governi +incassi +lotta +evasione +quasi +raddoppiati +miliardi +euro +oltre +miliardi +euro +fonte +rgs +adesso +blocca +forse +serietà +moda +bisogna +avere +forza +dire +modo +procedere +fa +male +contribuenti +onesti +fa +male +conti +pubblici +fa +male +italia +oggi +repubblica +scrive +concorso +professore +ordinario +giuseppe +conte +profili +evidenti +illegittimità +scoop +enorme +fakenews +premier +deve +chiarire +aula +pubblicamente +regolare +avvocato +popolo +concessionarie +autostradali +può +permettere +dubbi +concorso +altro +aspettiamo +iena +giarrusso +intervisti +streaming +professor +alpa +cosa +potenzialmente +enorme +zitti +stato +iscritto +pd +già +richieste +dimissioni +commissioni +inchiesta +oggi +silenzio +stelle +chiamavano +onestà +mesi +insultato +deriso +calunniato +molti +rovesciato +addosso +quintali +fango +silenzio +guardare +aggressione +qualcuno +addirittura +diceva +fateci +accordo” +vedete +fine +bravi +ragazzi +poi +maio +stelle +tirato +giù +maschera +adesso +tifo +altro +chiusura +giornali +ministro +lavoro +compiace +licenziamenti +vicepremier +attacca +libertà +stampa +mai +visto +italia +altrove +sì +italia +allora +finalmente +reazione +unanime +meglio +tardi +mai +davano +me +caudillo +accusavano +deriva +autoritaria +perche +volevo +abolire +cnel +dicono +adesso +vuole +distruggere +europa +comprimere +libertà +stampa +volevano +abolire +povertà +abolito +solo +senso +ridicolo +ogni +giorno +chiaro +serva +davvero +resistenza +civile +piccola +valle +provincia +sondrio +scout +italiani +luogo +unico +val +codera +arriva +fatica +solo +attraverso +centinaia +scalini +solo +piedi +passo +dopo +passo +tornare +val +codera +stato +scout +tornare +casa +durante +fascismo +valle +luogo +libertà +movimento +altro +dichiarato +fuori +legge +mussolini +radunavano +aquile +randagie +ragazzi +milanesi +raggiungevano +vivere +qualche +ora +libertà +indossare +uniforme +scout +altrimenti +proibita +leggi +fascistissime +ve +parlo +oggi +raccontare +storia +italiano +sconosciuto +grande +italiano +don +giovanni +barbareschi +altro +oggi +alcuni +giornali +riportano +frasi +ministro +sanità +grillo +felice +soldi +sanità +dopo +anni +tagli” +naturalmente +giornalista +prenda +briga +verificare +parla +quali +tagli +numeri +fondo +sanità +pubblica +valeva +miliardi +euro +vale +altro +miliardi +euro +chiaro +serve +disegnino +insomma +ogni +anno +aumentato +circa +miliardo +altro +tagli +fatto +chiamarsi +grillo +autorizza +signora +ministro +dire +bugie +capo +omonimo +bisogna +rispondere +colpo +colpo +può +vivere +fakenews +caspita +deve +essere +limite +amici +realtà +forte +bugie +bellissima +decisione +conferire +nobel +pace +denis +nadia +combatte +violenza +sessuale +arma +guerra +conosciuto +nadia +qualche +anno +fa +nyc +grazie +amal +clooney +altro +racconto +ciò +compagne +yazidi +dovuto +subire +toccato +commosso +modo +indescrivibile +nobel +aiuti +aprire +occhi +dramma +sorelle +lavoriamo +insieme +italia +rimanga +prima +fila +tutte +forme +violenza +donne +ieri +sera +fatto +tardi +maurizio +costanzo +canale +fine +stata +chiacchierata +molto +umana +diversa +solite +interviste +tv +ripropongo +persa +buona +giornata +buon +weekend +vinto +promettendo +sud +reddito +cittadinanza +oggi +scoprono +avere +soldi +nonostante +deficit +debito +cittadinanza +piccole +elemosine +controllate +governo +puro +voto +scambio +tempi +prima +repubblica +spalle +prossima +generazione +contrario +reddito +altro +cittadinanza +soldi +me +bisogna +investire +lavoro +assistenzialismo +dare +soldi +stare +casa +assurdità +totale +pensiero +affettuoso +imprenditori +nordest +votato +lega +nord +oggi +trovano +repubblica +democratica +fondata +sussidio +cosa +incredibile +ore +altro +stasera +canale +intervista +maurizio +costanzo +aspetto +solidarietà +studenti +speso +decine +ore +alternanza +scuola +lavoro +scoprono +solo +adesso +ciò +servirà +maturità +modo +cambiare +regole +corsa +poco +altro +serio +ormai +stile +governo +punta +solo +distruggere +motivi +ideologici +prima +donna +giornalista +oggi +stata +minacciata +ostia +stata +insultata +lavoro +fa +poi +lavoro +semplice +bello +fare +domande +scrivere +verità +chiama +federica +angeli +scrive +anni +clan +spada +vorrei +famiglia +sentissero +affetto +italiani +altro +bene +minaccia +stampa +pratica +violenza +istiga +odio +deve +sapere +attaccando +giornalista +attaccano +valori +fondamentali +libertà +democrazia +coraggio +federica +forte +qualsiasi +minaccia +discusso +spesso +presidente +juncker +talvolta +litigato +attacco +personale +maio +salvini +rivolgendo +merita +risposta +stelle +lega +distruggendo +ripresa +economica +italiana +famiglie +pagheranno +scelte +disgraziate +cialtroni +davanti +critiche +merito +reazione +altro +grilloleghisti +sempre +soltanto +attacco +personale +sanno +essere +parte +torto +allora +attaccano +persona +caso +juncker +modo +infame +concepire +politica +violenza +avversari +anziché +soluzione +problemi +fatto +pasticcio +chiamano +manovra +popolo +anziché +cercare +altro +conquista +premio +nobel +spesso +argomento +solo +addetti +lavori +scelta +ieri +nobel +medicina +allison +honjo +tocca +però +cuore +molte +famiglie +mondo +ciascuno +perso +qualcuno +caro +famiglia +amici +colpa +cancro +ciascuno +adesso +mentre +scrivo +conosce +altro +donne +uomini +combattendo +tumori +coraggio +silenzio +ospedale +lavoro +cancro +nemico +tantissimi +amici +combattendo +ora +allison +honjo +inventato +immunoterapia +innovativo +meccanismo +terapia +dando +primi +risultati +scoperta +solo +tappa +altro +oggi +giornata +nonni +pensiero +nonni +lasciato +chiamavano +adone +achille +nati +bacio +nonne +invece +ancora +combattono +anni +maria +altro +anni +anna +maria +vedete +anni +ancora +belle +lucide +pensiero +grato +nonni +contribuiscono +livello +organizzativo +affettivo +economico +aiutare +mamme +papà +generazione +fa +tifo +spread +masochista +anti +italiano +causa +aumento +spread +masochista +anti +italiano +manovradelpopolo +fare +testacoda +fermatevi +prima +troppo +tardi +resistenzacivile +dati +istat +oggi +dicono +tanto +detestato +jobsact +portato +disoccupazione +scendere +sotto +prima +volta +dopo +molti +anni +partiti +disoccupazione +adesso +adesso +comunque +maio +detto +aver +abolito +povertà +introdotto +reddito +cittadinanza +quindi +altro +bisogno +seguire +dati +istat +continua +credere +realtà +fakenews +roccocasalino +disoccupazione +sotto +buona +notizia +viva +italia +lavora +vive +assistenzialismo +salvini +detto +piazza +solo +4gatti +problemi +matematica +visto +soldi +rubati +lega +tratti +esseri +umani +animali +visto +nave +diciotti +salvini +capisce +gatti +vite +opposizione +resistenzacivile +bellissima +giornata +piazzadelpopolo +governo +sfascisti +dice +no +vaccini +mette +ginocchio +italia +produce +governo +condoni +assistenzialismo +italia +arrende +rassegna +mesi +resistenzacivile +viaggio +verso +roma +verso +piazza +popolo +giusto +stare +piazza +governo +incompetenti +mettono +rischio +economia +prendono +giro +elettori +manterranno +comunque +promesse +offendono +altri +cittadini +insultando +pensa +diversamente +dobbiamo +reagire +senza +paura +farlo +senza +altro +divisioni +interne +basta +polemiche +lottare +colpo +colpo +organizzare +forme +resistenza +civile +deriva +venezuelana +maio +salvini +italia +stata +resa +grande +lavoro +sudore +fatica +assistenzialismo +lasciamo +futuro +vuole +vivere +condoni +sussidi +senza +paura +amici +felice +aver +corso +km +ricordo +alessia +insieme +migliaia +persone +corri +vita +grazie +medici +infermieri +ricercatori +volontari +giorni +lottano +tumori +messaggio +molto +personale +soprattutto +fiorentini +esattamente +anni +fa +settembre +palazzo +congressi +lasciai +ogni +sicurezza +rifiutai +rinnovo +mandato +presidente +provincia +candidandomi +senza +paracadute +primarie +sindaco +stati +anni +bellissimi +fatti +altro +vittorie +sconfitte +primarie +vinte +persa +trionfo +europee +tonfo +politiche +pedonalizzazione +piazza +duomo +80€ +leopolde +referendum +incontri +obama +grandi +terra +inaugurazioni +fontanelli +pensionati +quartiere +rottamazione +documentario +altro +oggi +parlato +corriere +sera +proposito +manovra +bilancio +csm +rai +pd +buon +weekend +amici +movimento +stelle +battista +maio +numero +imprecisato +altri +statisti +diramato +ordine +fate +notare +renzi +proposto +sforare +deficit +portandolo +anni +proposta +contenuta +libro +chiamato +avanti +facilmente +reperibile +ancora +oggi +quel +libro +altro +proponevo +ridurre +debito +decine +miliardi +attraverso +operazione +chiamata +capricorn +riduci +debito +allora +puoi +avere +margine +deficit +tesi +libro +purtroppo +libro +figure +maio +dunque +riesce +capirlo +però +qualcuno +staff +potrebbe +leggerlo +spiegarglielo +cari +statisti +strapazzo +riducete +debito +cinquanta +miliardi +potete +tenere +deficit +riducete +debito +sforate +deficit +schizza +spread +crolla +borsa +poveri +altro +decreto +abolisci +povertà +state +scherzando +pelle +italiani +parliamoci +chiaro +amici +problema +europa +spread +deficit +meglio +solo +problema +deriva +venezuelana +rischiando +problema +prendendo +giro +italiani +dicono +abolito +povertà +decreto +fingono +crederci +dicono +mantenendo +promesse +altro +elettorali +quando +nonostante +guerra +mercati +massimo +ciò +promesso +mentendo +ancora +dicono +popolo +piazza +bandiere +solo +parlamentari +presunta +classe +dirigente +paese +fa +claque +governo +balcone +problema +premiano +furbi +condoni +altro +maio +urla +elezione +vicepresidente +csm +complotto +renzi +pd +allucinante +fatti +david +ermini +stato +eletto +csm +voti +movimento +stelle +parlamentari +oggi +maio +grida +complotto +aula +votato +complotto +insaputa +ermini +diventato +vicepresidente +altro +csm +grazie +voto +togati +volta +stati +eletti +giudici +tutta +italia +togati +dovevano +scegliere +professionisti +diritto +eletto +pd +scelto +piattaforma +rousseau +pensabile +dire +vince +rousseau +democrazia +vince +pd +complotto +tutte +decisioni +state +altro +ieri +partecipato +trasmissione +lilli +gruber +mezzo +parlato +ponte +genova +vaccini +europa +congresso +pd +dite +pensate +buona +giornata +ecco +promesso +lilli +gruber +elenco +fakenews +bufale +rilanciando +mesi +me +tutte +bugie +ritorceranno +https +www +matteorenzi +it +bufale +aspetto +poco +mezzo +lilli +gruber +maio +detto +assassino +politico +quest +uomo +rende +conto +significato +parole +quando +maio +parla +cose +conosce +esempio +lavoro +spesso +diventa +ridicolo +jobsact +creato +milione +posti +lavoro +tempo +indeterminato +momento +maio +trovato +lavoro +solo +stesso +paio +amici +infanzia +pomigliano +assunti +varie +segreterie +particolari +magari +però +prossimi +mesi +migliora +peggiorare +sembra +difficile +rocco +casalino +minaccia +insulta +dirigenti +governo +giornalista +pubblica +audio +cosa +fa +presidente +camera +roberto +fico +dice +problema +portavoce +governo +minaccia +insulta +dirigenti +pubblici +no +problema +giornalisti +svelano +fonti +ecco +roberto +fico +dialogante +dentro +stelle +figuratevi +altri +sempre +orgoglioso +aver +votato +accordo +grillini +leghisti +altro +bufala +giorno +riguarda +matteo +salvini +flattax +attenzione +enorme +scommetto +domani +scriveranno +pochi +dice +oggi +salvini +felice +potessimo +portare +aliquota +milione +italiani +dunque +flat +tax +vinto +elezioni +scherzo +altro +solo +milione +persone +fin +dirà +qualcuno +pazienza +sempre +meglio +intanto +inizi +no +accontentiamoci +pensa +ottimista +già +sapete +flat +tax +alcune +categorie +realtà +già +sapete +introdotta +legge +bilancio +uomini +poca +fede +legge +altro +ieri +partecipato +porta +porta +bruno +vespa +senza +plastici +parlato +vaccini +europa +tasse +promesse +irrealizzabili +maggioranza +vinto +elezioni +raccontando +falso +cittadini +trasmissione +firenze +dite +pensate +buona +giornata +amici +diretta +senato +appena +rientrato +incontri +conferenze +cina +shanghai +macao +hong +kong +impressionante +distanza +velocità +cambiamento +alcune +parti +mondo +assurde +polemiche +politica +italiana +governo +interne +pd +mondo +fuori +corre +italia +fermando +mondo +parla +intelligenza +artificiale +altro +italia +chiusure +domenicali +mondo +fa +conti +rivoluzione +bigdata +italia +mette +discussione +obbligo +fare +vaccini +proposito +pomeriggio +intervengo +aula +senato +decreto +anti +vaccini +diretta +facebook +poi +vado +porta +porta +onda +stasera +rai1 +cerco +chiarire +dobbiamo +rispondere +immobilismo +italia +costretta +salvini +maio +bisogna +reagire +bisogna +farlo +viso +aperto +italia +serve +altro +volta +settimana +parte +dibattito +futuro +pd +vuole +sciogliere +vuole +rilanciare +propone +cene +chiarimento +vuole +congressi +discussione +politica +vuole +società +civile +dice +potere +iscritti +tutte +scelte +legittime +rispettabili +penso +oggi +problema +pd +altro +guardo +cosa +accaduto +settimana +vedo +governo +messo +fiducia +rinviare +obbligo +vaccini +governo +dopo +mese +propaganda +genova +litiga +nome +commissario +governo +mercati +internazionali +già +fatto +danni +solo +parole +parola +mario +draghi +figuriamoci +quando +altro +torino +tanta +gente +governo +pd +giochi +attacco +grande +grazie +deputati +stanotte +combattuto +persino +ostruzionismo +norma +folle +altro +vaccini +popolo +arrende +vuole +italia +diversa +gioca +paura +odio +ritornoalfuturo +eppure +bello +fermarsi +attimo +smetterla +almeno +oggi +propaganda +lasciare +giudici +individuino +veri +colpevoli +provare +insieme +fare +ciò +serve +dare +casa +sfollati +ricostruire +subito +ponte +realizzare +gronda +garantire +impegno +terzo +valico +bisagno +porto +dare +agevolazioni +altro +fiscali +settori +crisi +favoletta +tragedia +immane +ponte +morandi +genova +merita +sforzo +unitario +dopo +mese +polemiche +fakenews +scaricabarile +bello +italia +mostrasse +finalmente +proprio +volto +migliore +governo +anziché +attaccare +opposizione +cercasse +ricostruire +subito +ponte +fare +opere +necessarie +collaborare +comune +regione +chiedere +aiuto +tanti +altri +argomenti +possiamo +discutere +litigare +dividerci +genova +può +provare +lavorare +insieme +costretto +dimissioni +mario +nava +presidente +consob +noto +autorevolezza +indipendenza +tratta +decisione +danno +enorme +credibilità +italiana +solo +mercati +internazionali +risparmiatori +pagheranno +conseguenze +conosce +funzionano +istituzioni +scelta +altro +incredibile +inaccettabile +costituzionalisti +comitati +cnel +preoccupati +deriva +autoritaria +evidentemente +ancora +ferie +tempo +galantuomo +governo +cialtroni +tace +complice +salvini +periferie +attacca +me +tanto +cambiare +dice +finanzierà +solo +progetti +seri +fatti +renzi +basta +progetti +renziana” +dice +ministro +rispetta +sentenze +salvini +proprio +capisce +quei +progetti +fatti +renziana” +progetti +sindaci +altro +autonomia +libertà +costruito +governo +semplicemente +finanziato +tempo +quando +ancora +federalista +salvini +apprezzato +finanziamento +governo +comuni +qualsiasi +colore +politico +oggi +no +oggi +conta +solo +attaccare +me +fa +affidamento +capacità +manipolare +informazioni +prova +ancora +fare +polemica +rispondo +colpo +colpo +governo +cialtroni +vice +premier +cialtroni +periferie +messo +soldi +salvini +maio +tolgono +diretta +palazzo +giustiniani +oggi +usciti +dati +istat +produzione +industriale +prima +volta +dopo +mesi +segno +negativo +peggior +dato +ultimi +anni +dato +preoccupante +solitamente +produzione +industriale +anticipa +senso +marcia +economia +italiana +resto +parlavo +dirigente +azienda +diceva +altro +decreto +dignità +voluto +maio +ottobre +licenzierà +persone +ministro +calcola +effetti +potenzialmente +devastanti +provvedimento +ideologico +domeniche +stelle +assicurano +arriverà +reddito +cittadinanza +netto +fatto +coperture +problema +rimane +dobbiamo +altro +diretta +milano +ore +diretta +facebook +milano +aspetto +chiusura +domenicale +negozi +porterà +licenziamento +migliaia +ragazzi +luigi +maio +attacca +me +sempre +attacca +solo +me +chissà +dice +bene +lavoro +parlamentare +opposizione +occupo +altro +mai +parlamento +insomma +basta +bugie +bisogna +rispondere +colpo +altro +colpo +prendete +classifiche +presenza +aula +senza +tener +conto +missioni +assenze +quando +maio +stato +opposizione +partecipato +circa +voti +invece +partecipato +circa +voti +dunque +possiamo +ufficialmente +sostenere +maio +solo +bugiardo +cialtrone +scelte +produrranno +licenziamenti +disoccupazione +obbligare +chiusura +domenicale +vuole +maio +significa +semplicemente +licenziare +tanti +ragazzi +fateci +caso +decreto +dignità +maio +tira +fuori +idee +quando +crisi +visibilità +serve +tenere +attenzione +altrimenti +fagocitato +salvini +inseguire +salvini +maio +distrugge +altro +posti +lavoro +sostenere +famiglie +separino +lavora +domenica +significa +vivere +marte +maio +conferma +ministro +disoccupazione +provvedimento +approvato +tanti +ragazzi +perderanno +posto +lavoro +tanto +reddito +cittadinanza +no +diretta +firenze +diretta +facebook +firenze +aspetto +dichiarazioni +ministro +interno +salvini +farneticanti +solito +tira +ballo +cerca +fare +vittima +idea +stato +eletto +parlamentare +siede +governo +possa +violare +tranquillamente +legge +aberrante +attenzione +salvini +butta +questione +immigrazione +preciso +calcolo +politico +altro +lega +deve +restituire +milioni +euro +sentenza +italiani +perdonano +ruba +propri +soldi +quindi +prova +diventare +martire +cerca +scontro +magistrati +siciliani +vergogna +punto +salvini +dentro +fino +collo +vicenda +milioni +rubati +lega +fino +collo +pur +parlarne +porta +scontro +istituzionale +massimo +livello +dovremo +aspettare +avere +dichiarazioni +sdegno +premier +guardasigilli +solo +messaggio +ripetere +fino +noia +salvini +restituisci +soldi +lega +rubato +italiani +resto +solo +vile +tentativo +screditare +istituzioni +prendere +giro +italiani +aspettavo +leggere +oggi +commenti +incredibili +fatti +premier +g7 +tenta +concorso +pubblico +poi +rinuncia +quando +viene +scoperto +giornale +italiano +peraltro +grazie +politico +europe +ministro +legalità +annuncia +rispettare +sentenze +sondaggi +favorevoli +rubato +altro +milioni +italiani +finta +nulla +ministro +infrastrutture +mente +pressioni +proprietà +giornali +finanziamenti +partiti +bugiardo +riccioli +oggi +invece +trovo +niente +notizie +vengono +date +cronaca +nessun +commento +nessun +editoriale +scandalizzato +quando +premier +altro +diretta +ravenna +sentenza +dice +lega +rubato +soldi +deve +restituire +milioni +salvini +replica +sondaggi +premiano +lega +dunque +italiani +impressionante +ministro +interno +contano +sondaggi +sentenze +solo +salvini +permette +minacciare +velatamente +giudici +genova +altro +occupino +ponte +dice +lega +tacciono +costituzionalisti +parlavano +deriva +autoritaria +tacciono +cantori +onestà +grillina +tacciono +editorialisti +scandalizzavano +quando +governo +zitti +chissà +milioni +euro +rubati +italiani +lega +ladrona +vanno +recuperati +tace +complice +ieri +cambiato +idea +vaccini +oggi +cambiano +idea +annullamento +gara +ilva +passi +avanti +importanti +italia +poco +importa +smentite +promesse +elettorali +stelle +maio +fatto +bene +rimangiarsi +parola +vaccini +ilva +nessuna +ironia +sgraziata +parte +oggi +solo +altro +personale +ringraziamento +speso +personalmente +lavorato +roberto +burioni +medici +parlamentari +tema +vaccini +andrea +guerra +federica +guidi +carlo +calenda +teresa +bellanova +tema +ilva +quando +chiudono +vicende +così +complicate +spesso +lavorato +davvero +resta +ombra +semplicissimo +grazie +diretta +palazzo +giustiniani +vergogna +dopo +altra +stelle +governo +vicenda +ex +iena +dino +giarrusso +scandalosa +signore +lavorava +iene +programma +collezionato +figuracce +storiche +regista +brizzi +ingiustamente +accusato +violenza +professor +burioni +vaccini +contento +scelto +altro +strada +politica +candidato +naturalmente +stelle +stato +eletto +urlano +casta +primi +farsi +sistemare +potere +allora +giarrusso +prima +stato +piazzato +ufficio +stampa +regione +lazio +poi +governo +fare +controllare +concorsi +universitari +altro +crollo +ponte +genova +causato +dolore +vergogna +paese +modo +governo +continuando +sciacallaggio +rende +vicenda +ancora +incredibile +continuano +pensare +favoletta +tragedia +ancora +oggi +ministro +infrastrutture +toninelli +parlando +camera +continuato +altro +sparare +mucchio +pensava +essere +barsport +parlamento +purtroppo +parlamento +ore +successive +crollo +collega +maio +dato +colpa +prendevano +soldi +autostrade +chiesto +nomi +ministro +scoperto +soldi +autostrade +presi +lega +nord +allora +altro +ieri +bella +chiacchierata +barbara +palombelli +anticipazione +video +firenze +qualche +scontro +rude +giornalisti +collegati +naturalmente +vaccini +mutui +libia +date +occhiata +dite +pensate +buongiorno +amici +accadendo +libia +purtroppo +molto +pericoloso +italia +esempio +chiaro +cosa +significhi +governare +pensando +piace +facebook +politica +maiuscola +ministri +dirette +social +spiaggia +poi +sequestrano +navi +italiane +qualche +povero +migrante +bordo +altro +pensano +solo +consenso +immediato +opinione +pubblica +sembra +momento +seguirli +frattempo +però +privi +visione +toccano +palla +nessun +dossier +geopolitico +importante +quando +problemi +libia +attaccano +macron +tanto +cambiare +italia +strategia +libia +puoi +arrabbiarti +altro +stasera +aspetto +rete +nuova +edizione +programma +stasera +italia +barbara +palombelli +oggi +ultima +giornata +riprese +documentario +firenze +rinunciato +ferie +stato +bellissimo +immergermi +agosto +storia +città +bellezza +salverà +mondo +cultura +altro +salverà +politica +molto +imparare +passato +soprattutto +futuro +oggi +esempio +girato +museo +galileo +scienza +ideologia +sembra +ancora +attuale +proposito +dibattito +vaccini +buona +giornata +amici +ieri +milano +orban +detto +relazione +governo +pessima +ragione +vado +orgoglioso +niente +personale +viktor +rappresenti +opposto +ciò +significa +europa +europa +muri +egoismi +paura +pensiamo +europa +nasca +davvero +quando +muri +cadono +quando +solidarietà +afferma +quando +coraggio +sconfigge +demagogia +tieniti +salvini +maio +teniamo +ideali +ventotene +aggiornato +buona +domenica +amici +quando +magistrati +indagavano +alfano +attuale +vicepremier +ministro +disoccupazione +luigi +maio +chiedeva +dimissioni +ministro +interno +minuti +titolare +viminale +poteva +restare +sotto +indagini +adesso +ruota +gira +aperta +indagine +altro +salvini +garantisti +chiediamo +dimissioni +ministro +interno +minuti +diciamo +voce +alta +doppiamorale +maio +vergogna +civile +manganellare +avversari +via +web +quando +fa +comodo +barbarie +siccome +ruota +gira +fine +autogol +tempo +movimento +stelle +difendeva +altro +eritrei +fuggono +guerra +italiani +servono +onore +paese +guardia +costiera +totale +persone +sequestrati +facebook +qualche +ministro +diritti +umani +valgono +piace +social +allora +ricordiamoci +italia +stato +canaglia +restiamo +umani +fateliscendere +gira +video +rete +campania +italia +agosto +gruppo +cittadini +turisti +deve +superare +tornelli +accedere +treno +basta +comprare +biglietto +obliterarlo +porte +aprono +invece +altro +no +fermi +attesa +senza +acquistare +ticket +finché +ignaro +resto +paga +oblitera +biglietto +apre +tornelli +scatta +ressa +precipitano +evitare +pagare +scena +diventa +virale +detto +tante +volte +italia +meritava +nuova +stagione +diritti +dobbiamo +dire +bisogno +nuova +stagione +doveri +entrare +senza +pagare +atto +furbi +cosa +sorridere +furto +comunità +educare +doveri +solo +diritti +deve +tornare +priorità +video +niente +ridere +massimo +solo +vergognarsi +giusto +dirlo +forte +chiaro +senza +minimizzare +enews +agosto +accaduto +genova +atroce +assurdo +morire +così +priorità +oggi +aiutare +famiglie +vittime +sfollati +dibattito +pubblico +tuttavia +altro +parlato +governo +salvini +dimaio +infatti +deciso +attaccare +opposizione +spargere +veleni +falsità +scelto +replicare +volevo +accuse +infami +ricevessero +condanna +ferma +https +www +facebook +com +matteorenziufficiale +posts +primo +https +www +facebook +com +matteorenziufficiale +posts +secondo +altro +raccontare +storia +firenze +bellezza +valori +emozione +infinita +sogno +coltivo +anni +dentro +firenze +passato +futuro +magia +oggi +intervista +repubblica +utilizzare +tragedia +dividere +italiani +maio +salvini +atteggiamento +infame +tornerà +boomerang +verità +super +altro +concessione +autostrade +votata +matteo +salvini +no +no +gronda” +detto +grillo +no +soldi +sistema +autostradale +presi +lega +conte +no +ecco +bisogna +alzare +testa +reagire +montagna +falsità +social +rilanciano +ribattere +colpo +colpo +oggi +pensa +cavarsela +zitto +disparte +domani +considerato +complice +davanti +problemi +cercano +capri +espiatori +cerchiamo +verità +scelgono +presunti +responsabili +manganellano +web +vogliamo +veri +colpevoli +tribunale +bisogna +reagire +insieme +amici +verità +bisogno +tempo +verità +forte +fa +ministro +paura +ministro +ignoranza +tocca +ciascuno +forza +tempo +lottare +ora +basta +bisogna +rispondere +punto +punto +colpo +colpo +tace +oggi +giudicato +complice +domani +maio +dice +governo +primo +aver +preso +soldi +benetton +società +autostrade +benetton +pagato +campagna +elettorale +falso +vedendo +carte +scopriamo +preso +centesimo +né +altro +leopolda +né +campagne +elettorali +ciò +significa +maio +bugiardo +sciacallo +bastasse +scopre +società +autostrade +finanziato +lega +premier +conte +stato +legale +aiscat +società +concessionari +autostrada +avvocato +popolo +diventa +improvviso +avvocato +altro +genova +grazie +lavorando +senza +sosta +giorni +qualità +soccorritori +italiani +straordinarie +ovviamente +pensiero +vittime +famiglie +straziate +dolore +morire +così +assurdo +fare +giustizia +dovere +famiglie +ciascuno +prime +ore +chiesto +fare +altro +polemiche +paese +civile +davanti +tragedia +genere +unisce +divide +confermo +impegno +tuttavia +parole +ore +alcuni +membri +governo +impongono +puntuale +replica +punti +punti +fatta +chiarezza +altrimenti +sembriamo +complici +luigi +maio +dice +governo +preso +altro +sbagliato +deve +pagare +forse +prima +poi +potremo +discutere +infrastrutture +senza +pregiudizi +ideologici +oggi +no +oggi +genova +merita +solo +silenzio +cordoglio +dolore +vicinanza +famiglie +vittime +naturalmente +gratitudine +immensa +straordinaria +professionalità +soccorritori +nessun +complotto +mercati +governo +italiano +salvini +maio +soli +autocomplotto +aspettarsi +resto +governo +novax +notav +nojobs +girando +molto +telefonini +lettera +medico +dottoressa +silvia +braccini +conosco +scrive +sembra +sacrosanto +dunque +condivido +colpisce +altro +sconvolge +posizione +stelle +vaccini +idea +necessario +essere +preparati +decidere +dossier +importa +essere +laureati +medicina +parlare +vaccini +basta +conoscere +cugino +taverna +importa +essere +competenti +materia +lavoro +basta +essere +cresciuti +pomigliano +insieme +maio +importa +studiare +fare +fatica +conoscere +basta +andare +rete +blog +guru +spiegherà +ciò +dobbiamo +pensare +italia +discute +vaccini +pazzesco +mentre +mondo +riflette +ripercussioni +intelligenza +artificiale +costretti +pagare +conseguenze +stupidità +naturale +ringrazio +dottoressa +braccini +parole +condivido +vaccini +devono +esprimersi +medici +scienza +ricerca +scherza +salute +figli +prima +criticano +poi +insultano +poi +odiano +quindi +quando +tocca +copiano +vedere +salvini +maio +difendere +80euro +prezzo +date +occhio +video +sentite +definivano +altro +80euro +mazzetta +ata +atto +cinismo +governo +cambiamento +cambiano +idea +infatti +ogni +giorno +prendiamola +ridere +forse +meglio +così +dopo +sacchetti +plastica +lamborghini +ibiza +servizi +segreti +consip +finti +fratelli +portaborse +cugine +imprenditrici +pagliacciata +aereo +renzi +arriva +adesso +tenetevi +forte +vicenda +bambini +africani +indagine +aperta +ben +anni +fratello +altro +marito +sorella +presunte +irregolarità +presunte +lavoro +dirigente +cooperazione +prove +dopo +anni +indagini +risultano +vedremo +processo +tanto +basta +solo +evocare +vicenda +andare +giornali +oggi +esattamente +anni +fa +altra +condanna +titoli +effetto +altro +udite +udite +oggi +salvini +difende +80euro +ieri +governo +detto +difenderà +piano +periferie +ieri +altro +difeso +legge +caporalato +bonus +cultura +diciottenni +cambiando +idea +piani +iniziali +sempre +detto +tempo +stato +galantuomo +esagerano +anticipando +tappe😀 +dicono +altro +però +renzi +cattivo +carattere +ok +cercherò +imparare +raccontare +barzellette +meglio +restare +antipatici +fare +cose +utili +paese +cercare +fare +simpatici +schizzare +spread +buona +giornata +amici +oggi +maggioranza +grillo +leghista +approvato +decreto +maio +chiamano +decreto +dignità +vero +nome +decreto +disoccupazione +relazione +tecnica +proprio +ammettono +norme +disoccupati +me +sembra +incredibile +primo +atto +ogni +governo +sceglie +provvedimento +simbolico +altro +cercato +mettere +soldi +tasche +ceto +medio +80€ +milioni +italiani +invece +partono +licenziamenti +permettere +maio +mettere +bandierina +battaglia +visibilità +davvero +governo +cambiamento +ministro +lavoro +oggi +ministro +disoccupazione +ieri +sera +tg1 +vaccini +decreto +disoccupazione +tav +minuti +tempo +dite +pensate +astenersi +troll +grazie +😊 +vaccini +governo +male +bambini +specie +piccoli +atto +colore +politico +semplicemente +atto +assurdo +bastasse +oggi +arrivano +minacce +professor +burioni +medico +combatte +bufale +novax +solidarietà +burioni +speriamo +torni +presto +buon +senso +meraviglioso +paese +maggioranza +fermi +prima +votare +decreto +legge +rappresenta +ferita +bambini +vergogna +italia +governo +scherza +fuoco +scelta +assurda +vaccini +lega +ladrona +bugie +fake +news +coprire +mancanza +credibilità +maio +ministro +disoccupazione +parlato +altro +altro +intervista +messaggero +mattino +gazzettino +essere +credibili +dobbiamo +mettere +campo +progetto +politico +culturalmente +solido +tempo +leggere +dice +pensa diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/salvini_comuni.html b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_comuni.html new file mode 100644 index 0000000..1932884 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/salvini_counter b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_counter new file mode 100644 index 0000000..7307d1e --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_counter @@ -0,0 +1 @@ +{"maestro": 1, "canello": 1, "gi\u00e0": 11, "messo": 3, "avanti": 17, "orologio": 1, "mezzanotteee": 1, "\ud83c\udf7e\ud83e\udd42\ud83d\ude02": 1, "pensiero": 5, "unico": 4, "inimitabile": 1, "geniale": 2, "indimenticabile": 1, "paolo": 1, "villaggio": 2, "emozioni": 4, "battaglie": 3, "problemi": 7, "soddisfazioni": 2, "risultati": 4, "positivi": 1, "raggiunti": 1, "italia": 99, "ritrovato": 1, "finalmente": 9, "orgoglio": 6, "dignit\u00e0": 8, "grazie": 46, "migliore": 6, "impegno": 7, "amici": 28, "conto": 8, "aiuto": 4, "diretta": 79, "festa": 7, "lega": 67, "albino": 1, "bergamo": 6, "state": 23, "risolvere": 2, "calcio": 2, "bisogna": 4, "coinvolgere": 1, "intorno": 1, "tavolo": 1, "protagonisti": 3, "calciatori": 1, "tifoserie": 1, "presidenti": 2, "arbitri": 1, "giornalisti": 5, "per\u00f2": 3, "confondere": 1, "delinquenti": 11, "tifosi": 1, "perbene": 7, "riguardate": 2, "insieme": 18, "me": 27, "intervento": 26, "ieri": 36, "notte": 5, "commentate": 8, "prefettura": 3, "pesaro": 1, "presieduto": 3, "comitato": 5, "sicurezza": 33, "ordine": 19, "pubblico": 7, "dopo": 32, "aver": 15, "donato": 1, "qualche": 16, "regalo": 2, "sorriso": 2, "bambini": 5, "passeranno": 1, "natale": 2, "ospedale": 3, "voglio": 14, "salutare": 1, "smontare": 2, "alcune": 3, "bufale": 1, "propinate": 1, "politico": 4, "giornalista": 2, "nessuna": 3, "altro": 84, "pensione": 7, "verr\u00e0": 2, "tagliata": 1, "diminuir\u00e0": 1, "nessuno": 7, "prender\u00e0": 2, "meno": 21, "anzi": 3, "oppositori": 1, "rimangono": 2, "solo": 34, "bugie\ud83d\ude0a": 1, "buon": 8, "santo": 2, "firenze": 4, "appena": 5, "terminato": 1, "provinciale": 1, "pubblica": 4, "seguitemi": 28, "stamattina": 4, "parlato": 4, "radio": 7, "voglia": 10, "riascoltate": 1, "intervista": 26, "leggo": 9, "fatebenefratelli": 1, "milano": 35, "firmato": 2, "protocollo": 1, "intesa": 1, "polizia": 24, "stato": 38, "azienda": 1, "socio": 2, "sanitaria": 1, "territoriale": 1, "asst": 1, "regione": 3, "lombardia": 3, "realizzazione": 1, "laboratorio": 1, "genetica": 1, "forense": 1, "scientifica": 1, "orgoglioso": 9, "punto": 3, "riferimento": 1, "anticrimine": 1, "europa": 28, "mondo": 11, "sorbolo": 2, "parma": 4, "oggi": 41, "felice": 4, "consegnato": 2, "personalmente": 4, "guardia": 3, "finanza": 4, "immobile": 2, "sequestrato": 3, "\u2018ndrangheta": 3, "vedere": 8, "clan": 2, "ridotti": 1, "fame": 3, "galera": 5, "lamafiamifaschifo": 3, "confagricoltura": 1, "patrimonio": 2, "lavoro": 36, "ricchezza": 3, "storia": 5, "cultura": 5, "viva": 4, "agricoltura": 4, "made": 5, "italy": 5, "\ud83c\uddee\ud83c\uddf9": 2, "sera": 36, "nicola": 4, "porro": 3, "rete": 12, "piaciuta": 3, "molto": 8, "eccola": 1, "aiutate": 2, "condividere": 6, "comune": 6, "consegner\u00f2": 1, "ecco": 19, "video": 12, "completo": 1, "ruspe": 1, "azione": 5, "campo": 6, "nomadi": 2, "cascina": 1, "pisa": 5, "chiacchiera": 1, "fa": 17, "dalleparoleaifatti": 4, "manterremo": 1, "impegni": 4, "presi": 3, "guardando": 2, "sempre": 26, "mai": 17, "indietro": 3, "scuola": 14, "formazione": 8, "politica": 8, "seguite": 24, "gerusalemme": 2, "racconto": 1, "incontro": 9, "stamane": 1, "premier": 14, "netanyahu": 1, "altri": 10, "incontri": 3, "splendida": 11, "visita": 3, "israele": 1, "ora": 58, "sepolcro": 1, "sede": 4, "stampa": 7, "estera": 1, "roma": 27, "domande": 4, "risposte": 2, "stranieri": 5, "parliamo": 1, "governo": 44, "buonsenso": 22, "avanguardia": 1, "cambiamento": 4, "paese": 39, "ripropongo": 19, "tutta": 27, "testa": 6, "cuore": 11, "piazzadelpopolo": 1, "primagliitaliani": 53, "dimenticher\u00f2": 1, "abbraccio": 6, "uniti": 1, "possiamo": 3, "\u2764\ufe0f": 1, "live": 20, "pronto": 10, "piazza": 9, "popolo": 4, "iocisono": 2, "pomeriggio": 4, "barbara": 4, "urso": 3, "persona": 10, "aspetto": 6, "domani": 9, "mattina": 21, "canale": 8, "sabato": 4, "mare": 4, "gente": 12, "dire": 5, "quota": 3, "nessun": 3, "rinvio": 1, "concorrenza": 2, "sleale": 2, "cina": 1, "difesa": 8, "presunta": 1, "disumanit\u00e0\u201d": 1, "no": 13, "nuove": 2, "tasse": 14, "auto": 3, "credo": 4, "essere": 18, "chiaro": 10, "ascoltate": 15, "camera": 3, "iniziativa": 1, "educazione": 1, "civica": 1, "obbligatoria": 1, "scuole": 12, "sostegno": 5, "riconoscimento": 1, "lingua": 1, "segni": 1, "insegnanti": 1, "cosa": 14, "pensate": 2, "rai": 10, "bene": 12, "dialogo": 2, "datori": 1, "italiani": 70, "bruxelles": 5, "testata": 1, "eu": 1, "deciso": 4, "premiarmi": 1, "europeo": 3, "anno": 11, "\ud83d\ude31": 5, "soprattutto": 5, "rtl": 5, "bello": 5, "tornare": 10, "davanti": 8, "giletti": 6, "rivedete": 1, "commenti": 9, "la7": 10, "merlino": 1, "svegli": 1, "potrete": 2, "vespa": 3, "verso": 7, "molla": 2, "promesso": 3, "decretosalvini": 7, "legge": 21, "inizio": 5, "rivedi": 1, "\ud83d\udd34": 2, "fatelo": 3, "girare": 10, "firmer\u00e0": 1, "proposta": 3, "global": 1, "compact": 1, "onu": 3, "immigrazione": 26, "andr\u00e0": 4, "riunione": 2, "marrakesh": 1, "noglobalcompact": 1, "onorato": 3, "inaugurato": 1, "nuovo": 7, "accademico": 1, "perfezionamento": 1, "forze": 11, "fiore": 1, "occhiello": 1, "italiano": 7, "unicum": 1, "livello": 2, "uscir\u00e0": 1, "personale": 1, "formato": 1, "professionalmente": 1, "eticamente": 1, "culturalmente": 1, "socialmente": 1, "rispetto": 11, "tutela": 3, "oltre": 3, "legalit\u00e0": 6, "fate": 4, "cose": 4, "dirvi": 2, "diventa": 1, "evento": 1, "sindaci": 2, "italia\u201d": 1, "poste": 1, "italiane": 9, "cagliari": 2, "presentazione": 1, "34esimo": 1, "congresso": 1, "partito": 1, "sardo": 1, "ogni": 12, "insulto": 4, "arriva": 2, "sinistra": 15, "inauguriamo": 1, "nuova": 2, "d\u00e0": 5, "tortol\u00ec": 1, "spettacolo": 13, "particolarmente": 1, "movimenti": 1, "cosiddetto": 1, "spread": 7, "corrispondono": 1, "vita": 13, "economia": 10, "vera": 5, "mesi": 5, "fatto": 15, "tanto": 10, "consenso": 1, "vorrei": 3, "speculatore": 1, "volesse": 1, "ostacolarci": 1, "costi": 4, "comunque": 3, "assemblea": 6, "alis": 1, "associazione": 3, "logistica": 1, "intermodalit\u00e0": 1, "sostenibil": 1, "dobbiamo": 5, "costruire": 2, "distruggere": 2, "bisogno": 9, "infrastrutture": 2, "andare": 9, "idn2018": 1, "pimpante": 1, "confronto": 4, "enrico": 2, "lucci": 1, "\ud83d\ude00": 6, "eccolo": 2, "cna": 1, "confederazione": 2, "nazionale": 8, "artigianato": 1, "piccola": 1, "media": 1, "impresa": 2, "andato": 3, "maurizio": 2, "costanzo": 1, "stata": 3, "esperienza": 4, "simpatica": 2, "tante": 4, "tirato": 1, "giudicate": 2, "commento": 7, "libero": 8, "\ud83d\ude09": 1, "napoli": 5, "nuovi": 5, "agenti": 9, "locale": 4, "impianti": 2, "videosorveglianza": 2, "norma": 2, "rottama": 1, "motorini": 1, "programma": 4, "sgomberi": 1, "stabili": 1, "pericolanti": 1, "case": 5, "popolari": 1, "occupate": 1, "gestite": 1, "camorra": 2, "lotta": 4, "spacciatori": 6, "altre": 4, "iniziative": 1, "consentite": 1, "metter\u00f2": 5, "aiutare": 7, "citt\u00e0": 12, "universit\u00e0": 2, "lumsa": 1, "partecipato": 4, "volentieri": 3, "convegno": 1, "promosso": 1, "comunit\u00e0": 3, "papa": 1, "giovanni": 3, "xxiii": 1, "affetti": 1, "famigliari": 2, "veri": 4, "antidoto": 1, "tenta": 1, "plagiare": 1, "adescare": 1, "violentare": 1, "psicologicamente": 1, "purtroppo": 2, "fisicamente": 2, "gruber": 4, "giornata": 12, "approvazione": 1, "parlamento": 3, "ricevuto": 4, "molti": 5, "messaggi": 1, "tanti": 13, "inviti": 1, "mondi": 1, "ambienti": 1, "vari": 4, "garantisco": 2, "fermer\u00f2": 1, "certo": 1, "adesso": 7, "studio": 5, "apprezzato": 1, "spero": 11, "soddisfatto": 3, "decreto": 6, "taglio": 1, "accoglienza": 7, "mangioni": 1, "profittatori": 1, "importante": 3, "andiamo": 4, "viminale": 5, "caso": 2, "asia": 1, "bibi": 1, "lavorando": 10, "discrezione": 1, "attenzione": 2, "paesi": 6, "occidentali": 1, "umanamente": 1, "possibile": 14, "garantire": 9, "futuro": 17, "ragazza": 2, "breve": 1, "costruttiva": 1, "ghana": 2, "autorit\u00e0": 2, "ringrazio": 5, "ospitalit\u00e0": 1, "seguiranno": 2, "africani": 1, "mentre": 4, "passato": 2, "limitavano": 1, "chiacchierare": 1, "cerchiamo": 1, "fare": 19, "bloccato": 1, "sbarchi": 8, "favorire": 1, "rimpatri": 3, "diritto": 10, "rimanere": 1, "popoli": 3, "casa": 29, "attraverso": 2, "cooperazione": 1, "economica": 4, "culturale": 3, "umana": 1, "utile": 1, "accordo": 6, "rilancio": 1, "buonismo": 3, "rovinato": 4, "venir": 1, "certezza": 3, "pena": 7, "legittima": 4, "invertito": 1, "rotta": 1, "mollo": 8, "presto": 11, "terracina": 2, "quando": 10, "attivit\u00e0": 2, "ripartite": 1, "alberi": 2, "ripiantati": 1, "tetti": 2, "sistemati": 1, "voluto": 3, "occhi": 4, "solidariet\u00e0": 5, "portata": 1, "mostri": 1, "lascia": 1, "soli": 4, "calamit\u00e0": 1, "naturali": 1, "abbracci": 2, "bastano": 4, "servono": 2, "soldi": 9, "mezzi": 3, "prossimi": 4, "giorni": 8, "arriveranno": 1, "primi": 5, "provvedimenti": 1, "stanziamenti": 1, "parte": 12, "consiglio": 7, "ministri": 6, "persone": 9, "colpite": 2, "ritrovino": 1, "po": 12, "tranquillit\u00e0": 2, "centro": 4, "coordinamento": 1, "soccorsi": 2, "aeroporto": 1, "belluno": 2, "devastazione": 1, "montagna": 1, "senza": 23, "stringe": 1, "posto": 5, "cercando": 1, "trovando": 1, "milioni": 21, "euro": 15, "popolazioni": 1, "disastri": 3, "veneto": 2, "sicilia": 2, "scalfari": 1, "putin": 2, "vuole": 9, "salvini": 50, "dittatore": 1, "\ud83d\ude02\ud83d\ude02\ud83d\ude02": 1, "hastatosalvini": 1, "richiesta": 2, "archiviazione": 1, "procura": 2, "catania": 5, "continuo": 1, "ancora": 13, "forza": 6, "strada": 9, "ragione": 2, "voleva": 1, "male": 7, "\ud83d\ude01": 6, "cattivo": 1, "maestro\u201d": 1, "parole": 16, "arrivata": 2, "ufficio": 1, "busta": 3, "chiusa": 1, "assolto": 1, "indagato": 4, "apriamo": 3, "intanto": 3, "ognissanti": 1, "particolare": 1, "lavora": 1, "contento": 4, "conosciuto": 2, "ragazze": 5, "ragazzi": 11, "italiana": 7, "impegnata": 1, "mondiali": 1, "qatar": 1, "tanta": 6, "bella": 7, "giovent\u00f9": 1, "ottime": 1, "speranze": 1, "invidio": 2, "dare": 5, "spazio": 3, "visibilit\u00e0": 1, "fondi": 1, "cosiddette": 1, "discipline": 1, "minori": 1, "tifoso": 1, "pallone": 1, "sport": 1, "bordo": 1, "fregata": 1, "federico": 1, "martinengo": 1, "membri": 2, "equipaggio": 2, "marina": 2, "militare": 1, "difende": 5, "mari": 1, "detto": 10, "momenti": 2, "torna": 4, "montesano": 1, "azioni": 1, "politiche": 1, "dice": 12, "pensano": 1, "chiare": 5, "semplici": 1, "ascoltatelo": 1, "ridurre": 8, "ulteriormente": 1, "aumentare": 5, "espulsioni": 5, "palermo": 3, "riconquisteremo": 1, "zone": 1, "mano": 15, "delinquenza": 1, "spaccio": 4, "illegalit\u00e0": 2, "buttalo": 2, "avermi": 1, "dato": 1, "assassino": 1, "centri": 7, "sociali": 5, "divertono": 1, "lanciando": 1, "acqua": 1, "gommone": 1, "fantoccio": 1, "limite": 1, "idiozia": 1, "certi": 2, "studenti\u201d": 1, "fissato": 1, "immacolata": 1, "dicembre": 1, "appuntamento": 2, "sostengono": 1, "vorranno": 1, "esserci": 3, "vicini": 1, "avventura": 2, "liberazione": 1, "coraggio": 7, "onest\u00e0": 3, "crescita": 3, "crimini": 1, "commessi": 1, "coloro": 3, "abusato": 1, "buona": 4, "fede": 1, "accoglie": 1, "doppiamente": 1, "gravi": 1, "penso": 6, "cos\u00ec": 9, "caserma": 1, "carabinieri": 9, "salvo": 1, "acquisto": 1, "cerimonia": 4, "anni": 30, "fondazione": 1, "gruppo": 4, "speciale": 2, "gis": 1, "puntiamo": 1, "fornero": 13, "equitalia": 1, "partite": 4, "iva": 4, "risparmiatori": 1, "truffati": 1, "reale": 2, "scender\u00e0": 1, "inevitabilmente": 1, "manovra": 5, "dar\u00e0": 1, "stabilit\u00e0": 2, "serenit\u00e0": 2, "senato": 4, "verona": 6, "fieracavalli": 1, "fermo": 3, "immigrati": 22, "senegalesi": 1, "irregolari": 2, "violenza": 3, "sessuale": 1, "cessione": 1, "stupefacenti": 1, "omicidio": 3, "volontario": 1, "terza": 1, "rintracciata": 1, "potr\u00f2": 1, "darvi": 1, "notizia": 3, "sospetti": 1, "complici": 3, "desir\u00e9e": 2, "rimarr\u00e0": 3, "impunito": 1, "ve": 7, "tempo": 12, "ditemi": 2, "abbastanza": 4, "quartiere": 6, "san": 8, "lorenzo": 1, "bucarest": 2, "ambasciata": 2, "ministero": 8, "interno": 7, "romeno": 1, "collega": 2, "carmen": 1, "daniela": 1, "dan": 1, "secondo": 10, "regista": 1, "americano": 1, "michael": 1, "moore": 1, "bigotto": 1, "razzista": 3, "odierei": 1, "gay": 1, "lesbiche": 1, "poveretto": 1, "intellettuali": 2, "estero": 7, "attaccano": 1, "giorno": 10, "s\u00ec": 6, "pure": 2, "vuol": 1, "giusta": 3, "giudicare": 1, "voti": 2, "trentino": 3, "alto": 1, "adige": 1, "direi": 2, "figlio": 2, "fonderia": 1, "mica": 1, "problema": 5, "devono": 6, "venire": 3, "andarci": 1, "lavorare\u201d": 1, "poveri": 2, "sembra": 3, "proprio": 1, "saggio": 1, "citare": 1, "prodi": 2, "teorie": 1, "giovani": 3, "fannulloni": 1, "sinistra\u201d": 1, "neofascista": 1, "rozzo": 1, "aggressivo": 1, "basta": 7, "lieto": 1, "piacerle": 1, "viste": 1, "differenze": 1, "eletto": 1, "nominato": 1, "migliaia": 5, "famiglie": 8, "lacrime": 2, "coccodrillo": 1, "frequento": 1, "salotti": 1, "chic": 4, "cominciato": 2, "porta": 3, "nome": 4, "stopfornero": 3, "amiche": 2, "domenica": 18, "potete": 2, "cambiare": 4, "decenni": 1, "governi": 7, "chiuso": 1, "ospedali": 1, "assunto": 1, "parenti": 1, "conoscenti": 1, "cambia": 7, "poi": 4, "trento": 10, "provincia": 12, "lavorer\u00e0": 1, "merito": 2, "raccomandazione": 1, "investimenti": 2, "autonomia": 2, "domenicavotolega": 34, "fugattipresidente": 1, "migliori": 5, "sondaggi": 9, "minuti": 16, "mandiamo": 3, "passaparola": 3, "social": 1, "via": 13, "sms": 2, "whatsapp": 2, "telefonata": 1, "tradizionale": 2, "meglio": 7, "mezzocorona": 1, "prima": 26, "volta": 8, "esiste": 3, "autonoma": 1, "incredibile": 4, "mandare": 6, "combinate": 1, "cotte": 1, "crude": 1, "cles": 1, "splendido": 1, "polemiche": 2, "nulla": 4, "vogliono": 10, "bolzano": 8, "vergogna": 6, "francese": 1, "claviere": 1, "fino": 10, "poveretti": 1, "augurano": 1, "vedermi": 1, "gi\u00f9\u201d": 1, "stasera": 2, "conferenza": 6, "mosca": 3, "imprenditori": 5, "generale": 2, "confindustria": 1, "russia": 1, "spoleto": 2, "giuramento": 3, "allievi": 2, "emozionato": 3, "ringraziamenti": 1, "impegnato": 2, "unghie": 2, "denti": 2, "inserire": 1, "centinaia": 6, "serviranno": 1, "assumere": 3, "mila": 6, "uomini": 8, "donne": 11, "gestione": 1, "modo": 8, "ministro": 12, "geniali": 2, "professoroni": 2, "soloni": 1, "tutte": 6, "soluzioni": 1, "tasca": 1, "ultimi": 5, "venti": 1, "trenta": 2, "quarant": 1, "200esimo": 1, "corso": 2, "affetto": 4, "trovato": 1, "giro": 1, "capire": 3, "confini": 9, "puntati": 1, "voto": 8, "candida": 1, "benessere": 2, "prepotenza": 1, "stop": 8, "pd": 17, "gioved\u00ec": 1, "torno": 1, "troverete": 1, "dettagli": 2, "sezione": 1, "eventi": 1, "costruttori": 1, "edili": 1, "stanco": 4, "estremamente": 1, "moltiplichiamo": 1, "pani": 1, "pesci": 1, "certamente": 1, "render\u00e0": 1, "onore": 3, "onere": 4, "fin": 1, "mantenuti": 2, "molleremo": 1, "monza": 2, "industria": 1, "manifatturiera": 1, "privata": 3, "\ud83d\udd34questo": 1, "vedrete": 3, "tig\u00ec": 1, "capotreno": 1, "sardegna": 1, "scendere": 1, "scrocconi": 1, "clima": 2, "cambiato": 1, "tolleranzazero": 6, "furbetti": 1, "uso": 1, "massiccio": 1, "vuoi": 1, "viaggiare": 2, "paghi": 3, "cittadini": 4, "ritornare": 1, "restituendo": 3, "quartieri": 1, "paura": 5, "uscire": 1, "cagnolino": 1, "prendere": 3, "autobus": 1, "treno": 4, "integrati": 1, "fratelli": 1, "finti": 2, "profughi": 4, "spacciano": 2, "delinquono": 1, "vanno": 4, "spediti": 1, "poco": 8, "vie": 1, "bressanone": 1, "laives": 2, "comizio": 1, "improvvisato": 1, "seggiola": 1, "palchi": 1, "sontuosi": 1, "lasciamo": 1, "boschi": 1, "\ud83d\ude04": 2, "tour": 3, "collegamento": 1, "straordinaria": 1, "idee": 8, "progetti": 1, "quarta": 1, "edizione": 2, "invidiano": 3, "accompagnato": 1, "opposizione": 2, "ultima": 5, "tappa": 4, "trentina": 2, "ala": 1, "21ottobrevotolega": 4, "altra": 11, "pergine": 1, "valsugana": 2, "guardate": 2, "dedichiamo": 1, "borgo": 2, "aldeno": 1, "contano": 1, "ferma": 6, "perduto": 3, "radicale": 1, "ricette": 1, "imposte": 1, "monti": 2, "letta": 3, "renzi": 9, "gentiloni": 3, "aumentato": 1, "debito": 2, "impoverito": 1, "precarizzato": 1, "esattamente": 1, "contrario": 3, "pensioni": 5, "burocrati": 1, "tiriamo": 1, "dritto": 1, "attesa": 1, "pagarci": 3, "opinionista": 1, "giorno\ud83e\udd14": 1, "esercitazione": 1, "nocs": 1, "40\u00b0": 1, "anniversario": 2, "nucleo": 1, "operativo": 1, "centrale": 3, "minuto": 9, "vero": 2, "cambiando": 2, "lavoreremo": 1, "lione": 1, "g6lyon": 1, "marine": 1, "pen": 1, "bersani": 1, "cita": 1, "esempio": 2, "parla": 1, "migrazioni": 2, "inevitabili": 1, "consigli": 2, "critiche": 2, "costruttive": 1, "accetto": 1, "insulti": 8, "vengono": 4, "dovrebbe": 2, "rappresentare": 1, "europei": 8, "avere": 8, "obiettivo": 9, "portare": 5, "armonia": 1, "scontro": 1, "sociale": 2, "insicurezza": 1, "vado": 3, "spedito": 1, "accidenti": 2, "illustre": 1, "personaggio": 1, "so": 1, "riuscir\u00f2": 1, "dormire": 1, "rosicano": 2, "bacioni": 1, "\ud83d\ude18": 4, "ascoltare": 6, "storie": 1, "accettare": 1, "complimenti": 3, "selfie": 2, "semplice": 2, "stretta": 1, "preferisco": 6, "entusiasmo": 3, "quotidiana": 1, "alcuni": 4, "interventi": 1, "w": 1, "africa": 4, "dite": 7, "soliti": 3, "imbrattare": 1, "dandomi": 1, "merda\u201d": 3, "prendendosela": 1, "sicure": 5, "poliziotti": 2, "antidroga": 1, "allontanando": 1, "problematici": 1, "aumentando": 1, "situazioni": 3, "marginalit\u00e0\u201d": 1, "\u2705stop": 1, "penalizzazioni": 1, "paletti": 1, "limiti": 2, "tetto": 1, "reddito": 2, "permettendo": 2, "400mila": 1, "liberando": 1, "altrettanti": 1, "posti": 4, "\u2705flat": 1, "tax": 5, "aliquota": 1, "almeno": 2, "milione": 4, "autonomi": 1, "professionisti": 2, "piccoli": 2, "accompagnata": 1, "pesante": 1, "sconto": 1, "fiscale": 11, "reinvestir\u00e0": 1, "utili": 1, "assunzioni": 2, "ricerca": 2, "macchinari": 1, "\u2705piano": 1, "straordinario": 1, "precedenti": 3, "novit\u00e0": 1, "nave": 3, "organizzata": 3, "vagher\u00e0": 1, "mediterraneo": 4, "sbarcare": 1, "coste": 1, "vadano": 2, "nisba": 1, "ignoranza": 1, "povert\u00e0": 3, "combatteremo": 1, "possibili": 2, "sentire": 1, "singolo": 1, "camorrista": 1, "schifo": 4, "juncker": 2, "\ud83d\ude0a": 3, "cancellate": 1, "cancelliamo": 1, "sparge": 1, "odio": 5, "\ud83d\ude1e": 1, "ospiti": 1, "spera": 1, "regolari": 3, "straniero": 1, "bisognerebbe": 1, "entrare": 1, "punta": 1, "piedi": 1, "rispettare": 4, "leggi": 2, "istituzioni": 2, "incontrati": 1, "qualcuno": 6, "traverso": 1, "giornale": 2, "tabl\u00f2": 1, "genova": 14, "inaugurazione": 1, "distaccamento": 1, "vigili": 7, "fuoco": 7, "est": 1, "ostia": 1, "sfilata": 1, "occasione": 2, "50\u00ba": 1, "interverr\u00f2": 1, "grande": 14, "divisa": 1, "latina": 4, "ricompense": 1, "belle": 2, "indossato": 1, "maglia": 2, "patrono": 1, "michele": 1, "arcangelo": 1, "previsto": 1, "piano": 2, "assunzione": 1, "10mila": 1, "vedeva": 1, "lasciare": 2, "figli": 16, "pi\u00fa": 3, "sicuro": 1, "mondiale": 2, "sordo": 1, "madre": 1, "arresto": 1, "soffrire\u201d": 1, "punizione": 1, "esemplare": 1, "schifosi": 1, "compagni": 1, "criminali": 3, "romania": 1, "abbattuta": 1, "ex": 3, "monteverdi": 1, "marghera": 1, "venezia": 6, "ricettacolo": 1, "sbandati": 1, "sorger\u00e0": 1, "questura": 2, "ottima": 2, "\ud83d\ude03": 4, "tunisi": 2, "tunisino": 3, "eroici": 1, "professionalit\u00e0": 1, "rapidit\u00e0": 1, "scongiurato": 1, "danni": 2, "limitato": 1, "abitazioni": 1, "unit\u00e0": 1, "compresi": 3, "volontari": 2, "canadair": 1, "elicotteri": 1, "erickson": 1, "s64": 1, "spegnere": 1, "fiamme": 1, "mettere": 3, "zona": 1, "consentire": 1, "sfollati": 1, "spiegato": 4, "aiutatemi": 2, "palazzo": 1, "chigi": 1, "nato": 1, "parlo": 1, "volete": 3, "rivedere": 2, "pradamano": 1, "udine": 5, "matera": 1, "arrestato": 1, "nigeriano": 1, "prende": 2, "bastonate": 1, "impalcatura": 1, "aggredisce": 1, "follia": 5, "rischiano": 1, "fronte": 2, "tutelati": 1, "vogliamo": 6, "estendere": 1, "utilizzo": 1, "taser": 3, "municipali": 1, "comuni": 7, "100mila": 2, "abitanti": 1, "ruspa": 3, "rom": 6, "smantellati": 1, "capannoni": 1, "vuoti": 1, "sgomberare": 1, "completamente": 1, "accampamento": 1, "entro": 4, "pochi": 2, "governa": 2, "passa": 3, "fatti": 10, "apre": 1, "correre": 2, "ponte": 3, "fretta": 3, "presenza": 3, "dirigenti": 1, "autostrade": 3, "accoglieranno": 1, "scelte": 1, "verranno": 1, "fatte": 1, "cercare": 1, "cavilli": 1, "ricorsi": 1, "tenerezza": 2, "nonni": 2, "emigravano": 1, "uguale": 1, "ridotto": 1, "drasticamente": 1, "costo": 2, "farmi": 2, "indagare": 1, "insultare": 2, "ipocriti": 1, "buonisti": 6, "mezzo": 8, "medaglia": 1, "decretoimmigrazione": 2, "arrivo": 2, "strumenti": 2, "espellere": 4, "\ud83d\udcaa": 2, "prevede": 1, "sacrosanto": 1, "difendersi": 1, "propria": 4, "abitazione": 1, "trovo": 3, "armata": 1, "mascherata": 1, "arma": 2, "finta": 1, "difendermi": 2, "disarmare": 1, "punire": 1, "aggressori": 1, "difendere": 12, "aggrediti": 2, "ladri": 1, "rapinatori": 1, "pacchia": 8, "finita": 9, "stupro": 1, "l\u00ec\u201d": 1, "ricco": 1, "fotografo": 1, "vip\u201d": 1, "viene": 5, "querelarlo": 1, "intellettuali\u201d": 1, "presentato": 1, "operazione": 4, "spiaggesicure": 1, "coinvolto": 1, "permesso": 3, "sequestro": 2, "340mila": 1, "oggetti": 1, "contraffatti": 1, "quali": 2, "nocivi": 1, "salute": 3, "coinvolti": 1, "ottimo": 1, "floris": 2, "mostro": 1, "recuperato": 1, "spiagge": 2, "presentarvi": 3, "sorpresa": 1, "deve": 6, "ingiustizie": 1, "sofferenze": 1, "causate": 1, "priorit\u00e0": 6, "restituire": 4, "ingresso": 3, "tocca": 3, "paderno": 1, "dugnano": 1, "vicino": 5, "val": 1, "susa": 1, "\u201dbravi": 1, "ragazzi\u201d": 1, "assalto": 1, "denunciati": 1, "fano": 1, "marche": 1, "l\u00e0": 1, "isteria": 1, "lussemburghese": 1, "tornati": 1, "baluardo": 1, "pu\u00f2": 15, "rinascere": 1, "parlamentari": 3, "commissari": 1, "privato": 1, "dicono": 2, "arrivato": 2, "sbarcati": 1, "scorso": 3, "diceva": 2, "niente": 4, "volere": 2, "potere": 3, "paragona": 1, "emigrati": 1, "clandestini": 16, "sbarcano": 1, "conclude": 2, "urlando": 1, "lussemburgo": 1, "paradiso": 1, "lezioni": 2, "normale": 4, "austriaco": 2, "vienna": 1, "amico": 4, "vicecancelliere": 1, "strache": 1, "videointervista": 1, "time": 1, "guardatela": 1, "raccontato": 1, "chiarezza": 9, "internazionale": 2, "idea": 2, "libert\u00e0": 4, "bari": 1, "diciotti": 2, "democratici\u201d": 1, "pap\u00e0": 4, "occupano": 1, "palazzina": 2, "grido": 3, "sgomberati": 1, "annunciano": 1, "presidi": 1, "solidariet\u00e0\u201d": 1, "signori": 4, "permettono": 1, "valuteremo": 1, "utilit\u00e0": 1, "continuare": 2, "versare": 1, "finanziare": 2, "sprechi": 1, "mangerie": 1, "razzismo": 1, "cercarlo": 1, "altrove": 1, "vale": 3, "mille": 2, "articoli": 1, "alcun": 1, "indagato\u201d": 1, "piacere": 1, "sentirlo": 1, "magistrato": 1, "carlo": 1, "nordio": 1, "ottobre": 1, "4\u00aa": 1, "ascolto": 2, "approfondimento": 1, "creano": 2, "legami": 1, "amicizie": 1, "nascono": 1, "nasce": 1, "partecipare": 1, "armando": 4, "siri": 4, "squadra": 3, "creato": 2, "bellissima": 1, "realt\u00e0": 3, "aspettiamo": 1, "\u270f\ufe0f": 1, "info": 1, "iscrizioni": 2, "www": 5, "scuoladiformazionepolitica": 2, "it": 5, "morte": 9, "stati": 5, "arrestati": 3, "salento": 1, "lunga": 1, "sotto": 6, "copertura": 1, "lecce": 1, "fiero": 1, "linea": 3, "ristabilire": 1, "decretosicurezza": 1, "mente": 2, "meritano": 1, "espulsione": 2, "raffinata": 1, "signora": 4, "diciamo": 1, "anzich\u00e9": 2, "occupare": 1, "affitto": 1, "onesti": 1, "sbaglio": 6, "propriet\u00e0": 2, "sacra": 2, "fermare": 4, "invasione": 3, "possono": 2, "indagarmi": 1, "cento": 1, "volte": 4, "continuer\u00f2": 2, "farlo": 3, "tradir\u00f2": 1, "mandato": 1, "mario": 4, "giordano": 3, "ipocrisia": 2, "confessa": 1, "chiede": 3, "conoscete": 1, "m": 2, "fatta": 2, "bentornata": 1, "nonna": 2, "peppina": 1, "direttiva": 2, "vista": 3, "scolastico": 2, "seconda": 2, "molliamo": 2, "protagonista": 1, "processo": 2, "stabilizzazione": 1, "incursioni": 1, "interessi": 5, "economici": 1, "prevalere": 1, "pace": 8, "disponibile": 1, "rischio": 1, "tornarci": 1, "troppo": 7, "libia": 6, "pacificata": 1, "mamma": 2, "pelle": 1, "oca": 1, "commosso": 1, "davvero": 2, "viterbo": 2, "incontrata": 1, "santa": 1, "rosa": 1, "inchieste": 2, "ovviamente": 1, "tiv\u00f9": 1, "immagini\ud83d\ude01": 1, "alzano": 1, "colpa": 2, "percezione": 1, "esagerata": 1, "unica": 11, "soluzione": 6, "definisce": 1, "folle\u201d": 1, "direttivasgomberi": 1, "roba": 7, "matti": 8, "troppi": 1, "vittime": 7, "occupazioni": 1, "bisognosi": 1, "furbi": 1, "violenti": 1, "affitti": 1, "sbagliata": 4, "paga": 1, "magari": 2, "torni": 5, "averne": 2, "puoi": 1, "metterci": 1, "riaprono": 1, "finisca": 1, "scuolesicure": 1, "diverse": 3, "disposizione": 3, "fondo": 2, "incrementare": 1, "controlli": 2, "determinato": 1, "coprire": 1, "straordinari": 1, "installare": 1, "possano": 1, "serenamente": 1, "risorsa\u201d": 1, "guadagnarsi": 1, "vivere": 5, "spaccia": 1, "ragazzini": 1, "chiedo": 3, "settembre": 1, "inizier\u00e0": 1, "sperimentazione": 2, "pistola": 1, "elettrica": 1, "letale": 1, "aiuter\u00e0": 1, "abbandonate": 1, "dovere": 4, "poter": 1, "adeguato": 1, "quotidiano": 1, "premio": 2, "capalbio": 1, "radical": 3, "indignano": 1, "roberto": 2, "agostino": 1, "fondatore": 1, "dagospia": 1, "smonta": 1, "minuti\ud83d\ude01": 1, "ricordo": 3, "ungherese": 2, "viktor": 2, "orb\u00e1n": 2, "pagina": 3, "fatica": 1, "bugie": 2, "minacce": 3, "superato": 1, "confine": 1, "spagnolo": 1, "ceuta": 1, "aggredito": 2, "pattuglia": 1, "rimandati": 1, "marocco": 2, "vent": 1, "spagna": 2, "propongo": 2, "allora": 1, "fascista": 1, "disumano": 2, "stopinvasione": 9, "ascoltatemi": 1, "rai3": 1, "commossa": 1, "genovese": 1, "ringrazia": 1, "brescia": 1, "impegnati": 3, "ricerche": 3, "dispersi": 1, "macerie": 2, "secondi": 2, "profonda": 1, "umanit\u00e0": 1, "emozionanti": 1, "applausi": 1, "smetteremo": 1, "ringraziarvi": 1, "salva": 1, "vite": 2, "rischiando": 1, "merita": 1, "ringraziamento": 1, "pompieri": 1, "migliorare": 1, "stipendi": 1, "pontida": 4, "appello": 1, "vengano": 2, "sospesi": 1, "pagamenti": 1, "pedaggi": 1, "dintorni": 1, "bagno": 2, "umilt\u00e0": 1, "metterei": 1, "risorse": 3, "necessarie": 1, "sostenere": 3, "eroe": 1, "amare": 2, "animali": 2, "crollato": 1, "scelto": 2, "fianco": 1, "eroi": 1, "splendidi": 1, "cani": 1, "portargli": 1, "arrende": 1, "sbagliato": 1, "causato": 1, "dolore": 1, "dovr\u00e0": 2, "pagare": 6, "luca": 4, "reggio": 3, "calabria": 6, "concluso": 1, "andr\u00f2": 1, "accertarmi": 1, "cognome": 1, "attenzioni": 1, "burocrazia": 5, "subito": 4, "sperare": 1, "lavorare": 5, "tg4": 1, "aggiornamenti": 1, "tragedia": 1, "serve": 8, "strage": 1, "colpevoli": 1, "morire": 2, "vincoli": 2, "impediscono": 1, "spendere": 1, "viaggiano": 1, "lavoratori": 8, "metteremo": 1, "ringraziare": 2, "soccorritori": 2, "stare": 1, "accertare": 2, "responsabilit\u00e0": 4, "immagini": 1, "impressionanti": 1, "ore": 7, "preghiera": 1, "promessa": 2, "andremo": 1, "disastro": 2, "inaccettabile": 1, "artigiani": 2, "agricoltori": 2, "difesi": 1, "riso": 2, "cambogiano": 1, "carne": 2, "sudamericana": 1, "lascio": 6, "mangiare": 2, "bere": 1, "sassari": 1, "infrange": 1, "obbligo": 1, "dimora": 1, "ruba": 1, "borsetta": 1, "anziana": 1, "ipovedente": 1, "ritirata": 1, "quindicenne": 1, "palo": 1, "par": 1, "genere": 1, "pronta": 2, "democratica": 2, "pacifica": 1, "gr1": 1, "ribadito": 2, "aquarius": 2, "carico": 1, "sicuramente": 1, "arriver\u00e0": 2, "porto": 2, "potuto": 2, "parlare": 6, "jazeera": 1, "versione": 1, "condividete": 3, "mafia": 1, "schiavismo": 1, "sfruttamento": 1, "nero": 1, "clandestina": 6, "assoluta": 2, "tg2": 1, "arcore": 1, "brianza": 1, "feriti": 1, "terribile": 1, "esplosione": 1, "panigale": 1, "prontamente": 1, "intervenuti": 1, "capriata": 1, "orba": 1, "alessandria": 2, "insultano": 1, "vaffanculo\u201d": 1, "invece": 4, "mando": 1, "grandissimo\ud83d\ude18": 1, "stra": 2, "rilassatevi": 1, "manifestazione": 1, "anti": 1, "razzista\u201d": 1, "lamentano": 1, "pochini": 1, "prossima": 3, "morendo": 1, "rivoluzione": 9, "piacer\u00e0": 1, "pazienza": 1, "rimbrotto": 1, "rivoluzionedelbuonsenso": 2, "82\u00ba": 1, "abusivo": 1, "sgomberato": 1, "ringraziano": 1, "boldrini": 7, "professore": 1, "paura\u201d": 1, "verit\u00e0": 2, "mancava": 1, "passare": 3, "forse": 1, "dovrebbero": 3, "chiedersi": 1, "spiaggia": 1, "romagnola": 1, "inviamo": 1, "sorrisi": 3, "presunti": 3, "vip": 1, "toccano": 1, "minimamente": 1, "potrei": 1, "ricevere": 2, "compiuto": 1, "rinnovato": 1, "tessera": 1, "bruna": 1, "fontevivo": 1, "evviva": 1, "eclissi": 1, "luna": 1, "pd\ud83d\ude01": 1, "circa": 1, "riguarda": 1, "quei": 1, "ostinano": 1, "campi": 1, "piena": 1, "pare": 2, "questione": 1, "irrispettosa": 1, "copertina": 1, "fermer\u00e0": 1, "fanculo": 1, "vincitrice": 1, "furbizia": 1, "estate": 1, "permetter\u00e0": 1, "bloccare": 2, "domanda": 2, "asilo": 3, "commette": 2, "reati": 1, "incredibilmente": 1, "eccetto": 1, "casi": 2, "gravissimi": 1, "consente": 1, "chiedere": 4, "protezione\u201d": 1, "spese": 2, "chiediamo": 1, "elemosine": 1, "riprendendo": 1, "rifaresti": 1, "viaggio": 3, "risposta": 2, "informazione": 1, "origine": 2, "eviterebbe": 1, "morti": 5, "schiavi": 3, "testimonianza": 2, "illuminante": 1, "chiesto": 2, "vorr\u00e0": 2, "ricordato": 3, "stringere": 1, "mani": 3, "barcone": 1, "pozzallo": 1, "siriani": 1, "tunisini": 1, "algerino": 1, "egiziani": 1, "silvi": 1, "teramo": 1, "festeggiamo": 1, "primo": 3, "sindaco": 2, "abruzzo": 2, "vario": 1, "alema": 1, "emergenza": 4, "mette": 1, "quasi": 4, "umore": 1, "luned\u00ec": 1, "registro": 1, "guerra": 6, "mafie": 1, "presente": 2, "territorio": 1, "segnalare": 1, "vicinanza": 1, "quotidianamente": 1, "criminalit\u00e0": 2, "frontiere": 2, "esterne": 2, "partenze": 3, "libiche": 1, "seriamente": 1, "tema": 2, "innsbruck": 3, "vertice": 1, "voce": 3, "colleghi": 1, "interni": 1, "tedesco": 1, "kickl": 1, "seehofer": 1, "positivo": 1, "germania": 1, "comincia": 3, "percorso": 1, "rimane": 1, "arrivi": 3, "iniziata": 1, "palmi": 2, "chiavi": 1, "confiscata": 2, "famiglia": 3, "mafiosa": 1, "diventer\u00e0": 1, "commissariato": 2, "sequestrare": 1, "ultimo": 2, "centesimo": 1, "gentaglia": 1, "ndranghetisti": 1, "scafisti": 4, "stessa": 2, "feccia": 1, "alberghi": 1, "digiunanti\u201d": 1, "mussolini\u201d": 1, "digiuno": 1, "doppio": 2, "panino": 1, "salame": 1, "finch\u00e9": 1, "navi": 2, "aiuteranno": 1, "sporco": 1, "mestiere": 2, "fermeranno": 1, "stufo": 2, "innocente": 1, "magliette": 1, "rosse\u201d": 1, "incontrate": 1, "ciao": 2, "disumanit\u00e0": 1, "scorsi": 1, "controllo": 2, "freni": 1, "crea": 1, "sfruttati": 2, "vergognose": 2, "tendopoli": 1, "ferdinando": 1, "visitata": 1, "occorrono": 1, "regole": 7, "civilt\u00e0": 1, "massimo": 3, "rimediare": 2, "preceduto": 1, "comando": 1, "aggiorno": 2, "ricordando": 3, "scorsa": 3, "pontida18": 3, "perugia": 1, "brillante": 1, "retata": 1, "profughi\u201d": 1, "nigeriani": 1, "eroina": 1, "parchi": 1, "vende": 1, "fingendosi": 1, "bisognoso": 1, "protezione": 1, "verme": 2, "fuori": 2, "mettercela": 1, "tenervi": 1, "informati": 1, "fase": 1, "iniziale": 1, "potr\u00e0": 3, "dotazione": 1, "efficacia": 2, "1\u00b0": 3, "giugno": 2, "luglio": 2, "sbarcate": 3, "quest": 2, "data": 1, "insediamento": 1, "sbarchino": 1, "business": 5, "finito": 1, "disoccupazione": 1, "giovanile": 1, "presidente": 11, "inps": 2, "confronti": 4, "agenzia": 2, "beni": 2, "confiscati": 1, "mafiosi": 2, "triplichi": 1, "organico": 1, "appartamenti": 2, "sequestrati": 2, "diventeranno": 1, "camorristi": 1, "sappiano": 1, "vissuta": 1, "distanza": 1, "prossimo": 1, "gusto": 1, "piscina": 1, "boss": 1, "mafioso": 1, "palio": 1, "contrada": 1, "drago": 1, "vederlo": 1, "rivederlo": 1, "grandissima": 1, "emozione": 3, "fantastici": 1, "\ud83d\ude0d": 1, "festival": 1, "caravaggio": 1, "roghi": 2, "tossici": 2, "furti": 2, "ricettazione": 1, "svariati": 1, "arresti": 1, "torino": 5, "blitz": 3, "tolleranza": 1, "zero": 3, "aria": 3, "cambiata": 3, "valere": 1, "confartigianato": 1, "bacchette": 1, "magiche": 2, "grandi": 2, "difenderemo": 1, "libici": 1, "proteggere": 1, "proprie": 2, "disponibili": 1, "accogliere": 2, "fugge": 1, "realmente": 1, "scappano": 1, "dichiarazioni": 2, "tripoli": 2, "vicepremier": 1, "libico": 1, "ahmed": 1, "maitig": 1, "francia": 3, "propongono": 1, "creazione": 1, "hotspots": 1, "flussi": 1, "verrebbero": 1, "interrotti": 1, "proposto": 1, "sud": 1, "evitare": 1, "diventi": 1, "imbuto": 1, "ballottaggio": 1, "certe": 1, "scordare": 1, "musica": 4, "metto": 1, "pietrasanta": 1, "siena": 2, "terni": 3, "agor\u00e0": 1, "riprendere": 1, "ruolo": 1, "area": 1, "offrendo": 1, "collaborazione": 1, "sviluppo": 1, "economico": 1, "quel": 1, "portato": 2, "maxi": 2, "opera": 1, "penali": 1, "spalle": 1, "fermati": 1, "moda": 1, "https": 1, "ecodibergamo": 1, "stories": 1, "bassa": 1, "bergamasca": 1, "zingoniaperquisiti": 1, "palazzi": 1, "anna": 1, "armi": 1, "dr": 1, "bocca": 2, "lupo": 2, "maturit\u00e0": 2, "potessi": 1, "tornerei": 1, "manzoni": 1, "latino": 1, "scritto": 1, "greco": 1, "orale": 1, "finale": 1, "maturit\u00e02018": 1, "skuola": 1, "net": 1, "saluto": 3, "iniziano": 1, "esami": 1, "notteprimadegliesami": 1, "settimana": 3, "filava": 1, "andava": 1, "cappello": 1, "usavano": 1, "neppure": 1, "parlarci": 1, "davano": 1, "scontata": 1, "capito": 1, "intenzione": 1, "fermarmi": 1, "mussolini": 1, "manca": 2, "canti": 1, "faccetta": 1, "nera": 1, "offese": 1, "vicesindaco": 1, "buonista": 1, "valencia": 1, "rispondo": 1, "bel": 1, "bacione\ud83d\ude18": 1, "sondrio": 1, "ballottaggi": 1, "buongoverno": 3, "scegliere": 2, "sostenuti": 1, "bullo\u201d": 1, "rispondere": 3, "risposto": 1, "mandandolo": 1, "cinisello": 2, "balsamo": 2, "porti": 1, "odiamo": 1, "speranza": 2, "domeniche": 1, "approda": 1, "partita": 1, "destinata": 1, "attracca": 1, "diverso": 2, "segno": 2, "qualcosa": 2, "zerbini": 1, "ivrea": 1, "orbassano": 1, "sforzo": 1, "matrix": 2, "parola": 4, "bestie": 1, "mar": 1, "schifoso": 2, "taciuto": 1, "tacer\u00f2": 1, "dura": 2, "gino": 1, "sbirro\u201d": 1, "trafficanti": 1, "esseri": 1, "umani": 1, "difendiamo": 3, "chiudiamoiporti": 1, "recuperare": 1, "ritardi": 2, "tagliare": 2, "mantenimento": 1, "tempi": 1, "permanenza": 1, "coinvolgendo": 1, "europee": 3, "internazionali": 1, "lasciato": 1, "sapremo": 1, "farci": 1, "valsusini": 1, "bussoleno": 1, "vivendo": 1, "difficili": 1, "vigilidelfuoco": 1, "soccorso": 1, "confcommercio2018": 1, "produce": 1, "resiste": 1, "commercianti": 1, "imprese": 3, "flat": 4, "eliminazione": 1, "spesometri": 1, "redditometri": 1, "studi": 3, "settore": 1, "governogialloblu": 1, "numero": 3, "dentro": 1, "girino": 1, "confusione": 1, "temere": 1, "brindisi": 1, "riescano": 1, "inventarsi": 1, "dico": 7, "chiaramente": 1, "paghino": 1, "diffondere": 3, "venditori": 1, "aggrediscono": 1, "durante": 1, "mandano": 1, "invio": 1, "auguri": 1, "guarigione": 1, "restituzione": 1, "tener": 1, "pesca": 2, "turismo": 2, "aumenti": 1, "ius": 1, "motivata": 1, "onesta": 1, "pulita": 2, "concreta": 1, "aereo": 1, "incontrare": 1, "salvare": 1, "ognuno": 1, "crescere": 1, "metter": 1, "nati": 1, "liberi": 1, "rosiconiasinistra": 1, "improvvisate": 1, "treviso": 2, "candidato": 7, "conte": 3, "10giugnovotolega": 1, "momento": 3, "foto": 2, "rito": 1, "quirinale": 6, "inquadratura": 1, "ultime": 1, "mettendo": 1, "cronaca": 1, "riporta": 1, "immigrato": 1, "spenna": 1, "piccioni": 1, "pieno": 4, "sestri": 1, "levante": 1, "massa": 3, "attacco": 1, "insiemesultetto": 2, "bambino": 2, "poteri": 2, "forti": 2, "vince": 4, "iostoconfabio": 1, "brutta": 1, "democrazia": 1, "occuparmi": 2, "poteva": 1, "nascere": 1, "banche": 1, "berlino": 2, "parigi": 1, "rabbia": 1, "cambieremo": 1, "dalmine": 1, "professor": 2, "contare": 1, "rimanete": 4, "sintonizzati": 2, "colloquio": 2, "semplicemente": 1, "colorno": 1, "maestre": 1, "arrestate": 1, "accusa": 1, "picchiato": 2, "maltrattato": 1, "bimbi": 2, "disabili": 4, "anziani": 2, "telecamere": 2, "comprese": 1, "ossessione": 1, "pontificare": 1, "ossessionati": 1, "daranno": 2, "possibilit\u00e0": 1, "sforzi": 1, "pronti": 4, "perdere": 2, "vota": 16, "francesi": 1, "occupino": 1, "pensiamo": 1, "mettano": 1, "anima": 1, "andiamoagovernare": 29, "orrore": 2, "caricata": 1, "picchiata": 1, "stuprata": 1, "branco": 1, "sentito": 1, "femministe": 1, "espulsi": 1, "marciscano": 1, "potermi": 1, "cominciare": 2, "provano": 1, "fermarci": 1, "ricatti": 2, "sale": 1, "borse": 1, "scendono": 1, "stavolta": 1, "spaventano": 1, "danno": 1, "bloccano": 3, "traffico": 2, "pretendono": 2, "cibo": 4, "buono": 2, "condizioni": 2, "carta": 1, "identit\u00e0": 1, "tecnici": 1, "neutrali": 1, "forte": 3, "esponenti": 1, "stanziali": 1, "picchiano": 1, "sangue": 2, "disabile": 2, "barista": 1, "distruggono": 1, "smettono": 2, "litigare": 2, "mantenere": 2, "oppure": 1, "fiducia": 7, "direttamente": 2, "supporto": 1, "collegati": 2, "uscita": 2, "repubblica": 3, "com": 3, "andata": 2, "confermo": 1, "chiamate": 2, "medico": 1, "pdclandestino": 2, "tg": 2, "mentana": 2, "datemi": 3, "parere": 2, "palco": 1, "sergio": 2, "bramini": 1, "imprenditore": 1, "fallito": 1, "causa": 1, "ladro": 3, "pagato": 2, "crediti": 1, "rischia": 1, "sfratto": 1, "vedo": 9, "riportare": 1, "normalit\u00e0": 1, "cerco": 1, "trovarti": 1, "marea": 1, "ricomincia": 1, "sole": 2, "serio": 2, "coerente": 2, "poltrone": 1, "programmi": 1, "differenza": 2, "cambiano": 1, "convenienze": 1, "vincere": 5, "friuli": 4, "giulia": 6, "fedrigapresidente": 3, "buongiorno": 3, "gradisca": 1, "isonzo": 1, "gorizia": 1, "cominciando": 1, "ennesima": 2, "giochi": 1, "bici": 1, "pagano": 3, "tuttiacasa": 2, "zaia": 1, "miglior": 1, "governatore": 1, "fedriga": 5, "coerenza": 3, "modello": 1, "tolmezzo": 2, "piccolo": 1, "supermercato": 1, "spettacolari": 1, "prodotti": 4, "locali": 1, "megacentri": 1, "commerciali": 1, "valorizziamo": 1, "ricchezze": 1, "sapori": 1, "tradizioni": 1, "mercato": 9, "trieste": 1, "isernia": 4, "molise": 9, "eccome": 1, "\u26aa\ufe0f\ud83d\udd34": 1, "debbio": 1, "casellati": 1, "numeri": 3, "imposti": 2, "maledetti": 1, "picchiare": 1, "indifesi": 1, "asili": 2, "riposo": 1, "punizioni": 1, "severe": 1, "vigliacchi": 1, "record": 3, "ascolti": 3, "principio": 1, "campobasso": 1, "sala": 3, "strapiena": 5, "montenero": 1, "bisaccia": 1, "ospit\u00f2": 1, "terremotati": 2, "giuliano": 1, "puglia": 3, "trasformare": 1, "bombe": 2, "litigi": 1, "arroganza": 1, "perdite": 1, "costruisce": 1, "servizio": 3, "sconvolgente": 1, "guardare": 2, "vorrebbero": 2, "turchia": 2, "missili": 1, "risolveranno": 1, "porteranno": 1, "disperazione": 1, "fermatevi": 1, "incontrato": 3, "vivo": 1, "vincitori": 1, "settimanali": 1, "vinci": 3, "salvini\u201d": 1, "vinto": 1, "caff\u00e8": 1, "visto": 2, "orario": 2, "optato": 1, "spritz": 1, "brugnera": 1, "pordenone": 1, "spettacolooo": 2, "29aprile": 1, "spilimbergo": 1, "massimiliano": 4, "mattarella": 1, "goldrake": 1, "guardava": 1, "alabarda": 1, "spazialeee": 1, "convinto": 1, "serva": 1, "dedicato": 2, "pensi": 1, "assistono": 1, "amore": 1, "sacrificio": 1, "pochissimo": 1, "recenti": 1, "ragazzo": 1, "intervistato": 1, "facebook": 2, "venuto": 1, "ascoltarmi": 1, "aprile": 1, "regionali": 1, "torner\u00f2": 1, "prestissimo": 1, "risultato": 1, "centrodestra": 4, "tasche": 1, "riparte": 2, "rendere": 1, "ci\u00f2": 1, "primaillavoro": 2, "danneggiando": 2, "ricostruita": 1, "base": 1, "reputiamo": 1, "fondamentale": 1, "pensare": 1, "governare": 4, "costringendoci": 1, "parametro": 1, "deputato": 4, "facciamosquadra": 14, "cancellare": 1, "rispettando": 1, "vittima": 1, "folli": 2, "balzerani": 1, "brigatista": 1, "componente": 1, "criminale": 1, "ucciso": 1, "scorta": 1, "giustiziato": 1, "moro": 1, "pentita": 1, "n\u00e9": 1, "dissociata": 1, "schiena": 1, "dritta": 1, "basilica": 1, "invasa": 1, "reclamare": 1, "diritti": 4, "dimostrate": 1, "calabresi": 1, "ricompensa": 2, "possa": 2, "rosarno": 1, "qua": 1, "lamezia": 1, "terme": 1, "catanzaro": 1, "grazie\u201d": 1, "regalato": 2, "ridare": 1, "terra": 1, "votato": 2, "assurdo": 1, "tassazione": 1, "concretezza": 3, "tassa": 7, "ingiusta": 2, "debole": 1, "rilanciare": 1, "quindi": 3, "occupazione": 2, "temi": 1, "cercher\u00e0": 1, "maggioranza": 2, "giancarlo": 1, "giorgetti": 1, "lupatoto": 2, "spettacolare": 1, "banale": 1, "continuiamo": 1, "cos\u00ed": 1, "http": 1, "strasburgo": 1, "energia": 2, "festeggiare": 1, "compleanno": 1, "elezioni": 6, "gioia": 1, "signorini": 1, "buttando": 1, "cassonetti": 1, "difficolt\u00e0": 2, "oggivotolega": 4, "pazzesco": 3, "cittadino": 3, "rumeno": 1, "capiti": 1, "nipoti": 1, "anziane": 1, "prendeva": 1, "pugni": 1, "scopo": 1, "rapina": 1, "marcisca": 1, "indulti": 2, "\ud83d\udcccbuonsenso": 3, "spalancare": 1, "porte": 2, "raccomandazioni": 1, "usa": 7, "scegli": 6, "\u2611": 4, "scelta": 1, "x": 1, "simbolo": 3, "costosa": 1, "doppia": 1, "soltanto": 1, "4marzovotolega": 64, "capirete": 2, "approfonditi": 2, "seria": 2, "cifre": 4, "ripartire": 3, "\ud83d\udcccnon": 1, "garantisca": 1, "mese": 3, "cooperativa": 2, "investire": 1, "bellezze": 1, "bimbo": 2, "chilometri": 1, "toccato": 1, "ascoltato": 1, "progetto": 1, "mettendoci": 1, "campagna": 2, "elettorale": 5, "finisce": 1, "parlate": 1, "convincete": 1, "aprite": 1, "agende": 1, "telefono": 1, "vinciamo": 5, "buonasera": 1, "assieme": 1, "belpietro": 2, "piaciuto": 1, "idioti": 1, "stesso": 2, "preoccupatevi": 1, "comizi": 1, "chili": 1, "chiudo": 1, "interviste": 1, "tg5": 2, "aperto": 1, "accise": 2, "benzina": 3, "sceglie": 7, "maio": 2, "marzo": 15, "governeremo": 3, "date": 5, "bongiorno": 3, "averla": 1, "vicina": 1, "fattibile": 1, "pagheremo": 2, "cara": 1, "esodati": 1, "precari": 2, "cassaintegrati": 1, "serie": 1, "b": 1, "capiranno": 1, "5stelle": 1, "difendono": 1, "climatici": 2, "difeso": 1, "\u274c\u274c\u274c": 1, "tagliamo": 1, "alte": 1, "aiutami": 1, "ovunque": 4, "rimasto": 1, "impaurito": 1, "canile": 1, "padrona": 1, "golden": 1, "retriever": 1, "adottato": 1, "responsabile": 1, "rifugio": 1, "cane": 1, "decide": 1, "ringraziarla": 1, "teatro": 1, "\ud83d\udd34pazzesco": 1, "brumotti": 2, "troupe": 2, "selvaggiamente": 1, "lanci": 1, "massi": 1, "enormi": 1, "pulizia": 1, "croce": 1, "scrivere": 1, "\u26a0": 1, "\u2714": 1, "tor": 1, "monaca": 1, "parco": 1, "buco": 1, "regno": 1, "renziacasa": 1, "coerenti": 1, "prendendo": 2, "sento": 1, "piazze": 1, "credono": 1, "dimostrare": 2, "passer\u00e0": 1, "altruismo": 1, "valori": 3, "portanti": 1, "tantissimi": 2, "abruzzesi": 1, "messaggio": 4, "te": 5, "\ud83d\udd35stop": 1, "spiegare": 1, "decisivi": 1, "duomo": 4, "censurata": 1, "tig\u00ed": 1, "irripetibili": 1, "cammino": 1, "grazieeeeee": 1, "seguiteci": 1, "uscendo": 1, "spegnete": 1, "computer": 1, "svuotacarceri": 1, "sconti": 2, "tv": 1, "approfondire": 1, "matteo": 1, "montevecchi": 1, "facciamolo": 1, "concreto": 1, "attivare": 1, "dedicare": 2, "occupi": 1, "pioggia": 2, "sobrio": 1, "commissione": 2, "europea": 3, "cataclismi": 1, "invasioni": 2, "cavallette": 1, "crollo": 1, "mercati": 3, "risiamo": 1, "pretenderebbe": 1, "comandare": 1, "\ud83d\udd35c": 1, "tutelando": 2, "caserta": 1, "bologna": 2, "fido": 1, "coniglio": 1, "gabbia": 1, "faine": 2, "finanziatori": 1, "netti": 1, "ue": 2, "moneta": 2, "danneggia": 2, "sforare": 1, "vantaggi": 1, "svantaggi": 2, "claudio": 3, "borghi": 3, "genitore": 1, "alunno": 1, "sottoposto": 1, "provvedimento": 1, "disciplinare": 1, "prof": 2, "brutto": 2, "insegnante": 1, "sassuolo": 1, "modena": 3, "\ud83d\udd35buonsenso": 1, "aggressioni": 2, "accoltellamenti": 1, "condominio": 1, "errenord": 1, "vieni": 4, "osi": 1, "caramella": 1, "punito": 1, "dissolvendo": 1, "multinazionali": 2, "salari": 1, "ispettorati": 1, "inseriremo": 1, "salario": 1, "minimo": 1, "stabilito": 1, "nonostante": 1, "freddo": 1, "vada": 1, "carica": 1, "mancavano": 1, "molestie": 1, "violenze": 2, "normali": 1, "islamiche": 1, "illegali": 1, "vergognosa": 1, "genitori": 2, "piccole": 1, "denunciare": 1, "integrazione": 1, "riconosci": 1, "ospita": 1, "valido": 1, "sistema": 1, "scopri": 1, "votare": 1, "candidati": 2, "specifici": 1, "link": 1, "fac": 1, "simile": 1, "nomi": 2, "salvinipremier": 2, "votoestero": 1, "dubbi": 1, "segnalazioni": 1, "irregolarit\u00e0": 1, "scrivete": 1, "email": 1, "leganelmondo": 1, "gmail": 1, "\u25cf": 4, "iscritti": 2, "aire": 1, "temporaneamente": 1, "gennaio": 1, "posta": 1, "plico": 3, "consolato": 2, "febbraio": 4, "duplicato": 1, "recandovi": 1, "arrivare": 1, "schede": 1, "votate": 1, "tale": 2, "termine": 1, "buste": 1, "distrutte": 1, "aci": 1, "\ud83d\ude05": 1, "triste": 1, "sorridiamo": 1, "sapete": 1, "invitare": 1, "iscriversi": 1, "invita": 1, "signor": 2, "calenda": 2, "vergognare": 1, "fortuna": 2, "\ud83d\udd34condividi": 1, "mostrer\u00e0": 1, "dati": 2, "molteni": 2, "dimostra": 1, "sub\u00ecto": 1, "entra": 1, "cattive": 1, "intenzioni": 1, "devo": 1, "basilicata": 1, "lazio": 1, "eccomi": 1, "piazzale": 1, "lagosta": 1, "assicuro": 1, "essermi": 1, "meritato": 1, "scontrini": 1, "reali": 1, "difendi": 2, "ribalter\u00e0": 1, "ingiustiza": 1, "automaticamente": 1, "processato": 1, "riesci": 2, "provarlo": 1, "prosciolto": 1, "ribaltato": 1, "indizi": 1, "evidenti": 1, "dimostrino": 1, "tratti": 1, "grasso": 1, "130mila": 1, "miliardi": 2, "pil": 1, "piace": 1, "sapere": 1, "primaglitaliani": 1, "ospitati": 1, "hotel": 5, "stelle": 3, "dazi": 2, "proteggono": 1, "arance": 2, "marocchine": 1, "olio": 4, "invadono": 1, "commercio": 2, "gioca": 1, "tantissime": 1, "aumentano": 1, "tunisia": 2, "cambogia": 1, "arrivano": 1, "incontrollati": 1, "sottocosto": 1, "combattere": 1, "\u26a0\ufe0froba": 1, "trasformato": 2, "soggiorno": 1, "scappa": 2, "portando": 2, "fratello": 1, "messina": 1, "vergognoso": 1, "minacciata": 1, "insultata": 1, "meritavo": 1, "irruzione": 1, "comunale": 1, "minacciarmi": 1, "insultarmi": 1, "pesantemente": 1, "capogruppo": 1, "semina": 1, "raccoglie": 1, "tempesta": 1, "lucia": 3, "borgonzoni": 3, "candidata": 2, "perso": 4, "auguro": 1, "onorevole": 2, "raccogliere": 1, "seminato": 1, "educato": 1, "fastidio": 1, "definiti": 1, "salviniane\u201d": 1, "fabrizio": 1, "documenti": 1, "glielo": 1, "dir\u00f2": 1, "cancro": 1, "nadia": 1, "donna": 2, "coraggiosa": 1, "protestano": 2, "sky": 1, "struttura": 1, "gestita": 1, "versoprobo": 1, "fattura": 1, "1\u20e3": 1, "uomo": 3, "2\u20e3": 1, "giustizia": 3, "islamica": 2, "prevale": 1, "3\u20e3": 1, "vincolata": 1, "dichiara": 1, "corano": 1, "chiedermi": 1, "islam": 2, "incompatibile": 1, "motel": 1, "4stelle": 1, "novi": 1, "ligure": 1, "operai": 3, "ilva": 1, "combattono": 1, "pisolino": 1, "passione": 2, "ventimiglia": 1, "albenga": 1, "replicato": 1, "signore": 2, "alberto": 2, "bagnai": 2, "riuniti": 1, "sant": 1, "agata": 1, "ramo": 1, "lavavetri": 1, "accattonaggio": 1, "prendono": 1, "sprangate": 1, "sogno": 1, "tranquillo": 1, "rispettano": 2, "sentite": 1, "mauro": 1, "panettiere": 1, "ferrara": 1, "proposito": 1, "sottoscrivo": 1, "migranti": 1, "bonino": 3, "parlamentare": 1, "necessario": 1, "ribadii": 1, "stalking": 1, "divenne": 1, "aperti": 1, "servo": 1, "accolto": 1, "onori": 1, "rappresenta": 1, "nega": 1, "sterminio": 1, "armeni": 1, "innocenti": 1, "massacrati": 1, "islamici": 1, "olocausto": 1, "facile": 1, "rimanendo": 1, "dicendo": 1, "prova": 3, "esperto": 1, "biglietto": 1, "bus": 1, "passerebbe": 1, "governato": 1, "osano": 1, "mezz": 1, "venerd\u00ec": 1, "\ud83d\udd35": 1, "proposte": 1, "condividerle": 1, "solenne": 1, "martina": 1, "vivono": 1, "marte": 1, "contratti": 1, "creare": 2, "respirare": 2, "confrontarsi": 1, "direttore": 1, "redazione": 1, "stampa\u201d": 1, "costruttivo": 1, "bonola": 1, "crescano": 1, "latte": 1, "pomodori": 1, "svenduto": 2, "aziende": 3, "ritengo": 1, "banca": 1, "etruria": 1, "arezzo": 1, "solito": 1, "kompagno": 1, "portafoglio": 1, "destra": 1, "oliviero": 1, "toscani": 1, "inarrestabile": 1, "bravo": 1, "riportato": 1, "cancellazione": 1, "nido": 1, "gratis": 2, "equit\u00e0": 1, "notti": 1, "nostalgia": 1, "azeglio": 1, "irregolare": 1, "kompagna": 1, "met\u00e0": 1, "ormai": 1, "estere": 1, "quindici": 1, "sacrifici": 1, "riprendiamoci": 1, "considero": 1, "fortunato": 1, "stupendi": 1, "compagna": 2, "innamorato": 1, "meriti": 1, "riuscirci": 1, "amo": 1, "protesta": 1, "padova": 1, "soddisfatti": 1, "\ud83d\uded1\ud83d\uded1\ud83d\uded1": 1, "spaventa": 1, "pericoloso": 1, "stimo": 1, "orban": 1, "trump": 1, "pericolosi": 1, "nazionali": 2, "unione": 2, "distruggendo": 1, "culinario": 1, "bottiglie": 1, "marchi": 1, "contengono": 1, "tuteliamo": 1, "controlliamo": 1, "supermercati": 1, "rischiamo": 1, "rovinare": 1, "pensa": 1, "italiani\u201d": 1, "scherzi": 1, "parte\u201d": 1, "boldriniacasa": 1, "canceller\u00e0": 1, "discussione": 1, "aperta": 1, "costretti": 1, "visti": 1, "vanterei": 1, "jobs": 1, "act": 1, "iniziare": 1, "puntando": 1, "pura": 1, "mancanza": 1, "deputati": 1, "costituzione": 1, "fondata": 1, "libera": 1, "sovrana": 1, "danneggiano": 1, "cambiarle": 1, "reato": 1, "esercita": 1, "legittimadifesa": 1, "sappia": 1, "giudice": 1, "discrezionalit\u00e0": 1, "ridotta": 1, "valutazione": 1, "proporzionalit\u00e0": 1, "stabilimento": 1, "torinese": 1, "whirlpool": 1, "delocalizzer\u00e0": 1, "slovacchia": 1, "mandando": 1, "capisce": 1, "delocalizzazioni": 1, "altropi\u00f9": 1, "slogan": 2, "sfida": 1, "vedente": 1, "riceve": 1, "arancione": 1, "profondamente": 1, "efficace": 1, "demonizzata": 1, "emette": 1, "esercitare": 1, "sovranit\u00e0": 1, "inflazione": 1, "deflazione": 1, "trasmettere": 1, "occhio": 1, "ricordate": 1, "gedorem": 1, "andreatta": 1, "albergatore": 2, "vicenza": 1, "ospitando": 1, "quell": 1, "conversazione": 1, "cognata": 1, "nonch\u00e9": 1, "socia": 1, "grillino": 1, "benedetto": 1, "risparmio": 1, "numerino": 1, "ridiscutere": 1, "trattati": 1, "interesse": 1, "stupri": 1, "uccidi": 1, "occorre": 2, "baby": 1, "gang": 1, "esistono": 1, "tutt": 1, "spesso": 1, "problematiche": 1, "periferie": 1, "totalmente": 1, "assente": 1, "grado": 1, "offrire": 1, "condizione": 1, "chiedono": 1, "ideal": 1, "standard": 1, "roccasecca": 1, "pesce": 1, "passeremo": 1, "tuscolano": 1, "iii": 1, "favorevole": 1, "sanzioni": 1, "divieti": 1, "riscoperta": 1, "suona": 2, "antico": 1, "avvocato": 1, "gulia": 1, "cambiamo": 1, "natalit\u00e0": 1, "raggiunto": 1, "basso": 1, "intervenire": 1, "prometto": 1, "diventano": 1, "catastrofica": 1, "arrivati": 1, "670mila": 1, "stragrande": 1, "costano": 1, "giunto": 1, "farla": 1, "targato": 1, "nuccio": 1, "altieri": 1, "grillini": 1, "gettano": 1, "maschera": 1, "stipendio": 1, "extra": 1, "fermiamo": 1, "litigavano": 1, "bottigliata": 1, "contributi": 1, "stanchi": 1, "imperanti": 1, "inciuci": 1, "minestroni": 1, "larghe": 1, "intese": 1, "rispedirli": 1, "attilio": 1, "fontana": 1, "proseguire": 1, "fontanapresidente": 1, "\ud83d\udea8\ud83d\udea8\ud83d\udea8": 1, "residenza": 3, "accerchiano": 1, "dipendenti": 1, "barricati": 1, "esino": 1, "lario": 1, "lecco": 1, "tipiche": 1, "facce": 1, "rispediamo": 1, "compilation": 1, "perle": 1, "boldriniane\u201d": 1, "arrivate": 1, "fine": 1, "capisco": 1, "resto": 1, "cartella": 1, "esattoriale": 1, "importo": 1, "riprendi": 1, "conti": 1, "subire": 1, "effetti": 1, "ossa": 1, "rovinati": 1, "caduti": 1, "depressione": 1, "restituiremo": 1, "radiofonico": 1, "rispettoso": 1, "inversione": 1, "guarisce": 1, "malato": 1, "aspirina": 1, "cura": 1, "drastica": 1, "permetta": 1, "consumare": 1, "produrre": 1, "prevediamo": 1, "inoltre": 1, "abolizione": 1, "fisco": 1, "prescindere": 1, "\ud83d\udd34\ud83d\udd34\ud83d\udd34pazzesco": 1, "targata": 1, "cocaina": 1, "stazione": 1, "sassate": 1, "immediata": 1, "riusciamo": 1, "gelo": 1, "infarto": 1, "riesce": 1, "bollette": 1, "sbarca": 1, "comoda": 1, "sistemazione": 1, "open": 1, "society": 1, "foundation": 1, "george": 1, "soros": 1, "guarda": 1, "finanzia": 1, "decine": 2, "onlus": 1, "principali": 1, "compiti": 1, "statutari": 1, "incontrollata": 1, "apertura": 1, "droghe": 1, "ridiscussione": 1, "stereotipi": 1, "generi": 1, "pericolosa": 1, "blocchiamolo": 1, "tardi": 1, "insofferenti": 1, "rispedire": 1, "soggiorna": 1, "pretende": 3} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/salvini_emoji b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_emoji new file mode 100644 index 0000000..1cbbd75 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_emoji @@ -0,0 +1 @@ +{"\ud83c\uddee\ud83c\uddf9": 2, "\ud83d\ude31": 5, "\ud83d\udd34": 2, "\ud83d\ude00": 6, "\ud83d\ude09": 1, "\ud83d\ude01": 6, "\ud83d\ude04": 2, "\ud83d\ude18": 4, "\ud83d\ude0a": 3, "\ud83d\ude1e": 1, "\ud83d\ude03": 4, "\ud83d\udcaa": 2, "\ud83d\ude0d": 1, "\u2611": 4, "\u26a0": 1, "\u2714": 1, "\ud83d\ude05": 1, "1\u20e3": 1, "2\u20e3": 1, "3\u20e3": 1, "\ud83d\udd35": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/salvini_sleep b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_sleep new file mode 100644 index 0000000..dd1e8be --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 6, "10": 7, "11": 2, "12": 3, "13": 9, "14": 1, "15": 2, "16": 2, "17": 4, "18": 5, "19": 5, "20": 3, "21": 4, "22": 1, "23": 0}, "Feb": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 0, "9": 8, "10": 7, "11": 6, "12": 5, "13": 11, "14": 3, "15": 4, "16": 11, "17": 3, "18": 7, "19": 6, "20": 4, "21": 10, "22": 3, "23": 3}, "Mar": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 1, "9": 4, "10": 3, "11": 8, "12": 1, "13": 2, "14": 2, "15": 1, "16": 3, "17": 4, "18": 3, "19": 7, "20": 3, "21": 4, "22": 2, "23": 1}, "Apr": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 2, "10": 1, "11": 1, "12": 4, "13": 2, "14": 1, "15": 4, "16": 4, "17": 3, "18": 4, "19": 1, "20": 3, "21": 2, "22": 1, "23": 0}, "May": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 3, "11": 4, "12": 5, "13": 1, "14": 3, "15": 2, "16": 4, "17": 0, "18": 4, "19": 2, "20": 4, "21": 5, "22": 1, "23": 0}, "Jun": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 1, "9": 4, "10": 2, "11": 6, "12": 3, "13": 3, "14": 1, "15": 4, "16": 4, "17": 1, "18": 4, "19": 1, "20": 7, "21": 6, "22": 3, "23": 1}, "Jul": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 4, "10": 2, "11": 2, "12": 3, "13": 3, "14": 4, "15": 3, "16": 1, "17": 3, "18": 4, "19": 5, "20": 2, "21": 5, "22": 3, "23": 1}, "Aug": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 2, "10": 0, "11": 0, "12": 2, "13": 5, "14": 3, "15": 2, "16": 3, "17": 0, "18": 4, "19": 0, "20": 2, "21": 6, "22": 4, "23": 0}, "Sep": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 4, "10": 2, "11": 10, "12": 4, "13": 11, "14": 1, "15": 1, "16": 2, "17": 2, "18": 3, "19": 4, "20": 3, "21": 6, "22": 4, "23": 0}, "Oct": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 2, "10": 5, "11": 9, "12": 6, "13": 6, "14": 2, "15": 4, "16": 4, "17": 5, "18": 3, "19": 7, "20": 6, "21": 4, "22": 6, "23": 1}, "Nov": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 1, "10": 2, "11": 3, "12": 6, "13": 4, "14": 1, "15": 3, "16": 0, "17": 3, "18": 2, "19": 1, "20": 1, "21": 5, "22": 0, "23": 0}, "Dec": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 0, "10": 0, "11": 3, "12": 5, "13": 5, "14": 1, "15": 0, "16": 3, "17": 0, "18": 2, "19": 3, "20": 1, "21": 6, "22": 0, "23": 1}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/salvini_trend.json b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_trend.json new file mode 100644 index 0000000..bfc4313 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_trend.json @@ -0,0 +1 @@ +{"31-Dec": 2, "28-Dec": 2, "27-Dec": 1, "24-Dec": 1, "20-Dec": 3, "18-Dec": 4, "17-Dec": 1, "16-Dec": 2, "12-Dec": 2, "10-Dec": 2, "9-Dec": 2, "8-Dec": 1, "7-Dec": 1, "6-Dec": 3, "5-Dec": 1, "3-Dec": 3, "29-Nov": 1, "28-Nov": 2, "27-Nov": 2, "26-Nov": 1, "23-Nov": 1, "22-Nov": 2, "21-Nov": 1, "20-Nov": 1, "19-Nov": 1, "17-Nov": 2, "15-Nov": 2, "11-Nov": 1, "9-Nov": 1, "8-Nov": 1, "7-Nov": 3, "6-Nov": 2, "5-Nov": 1, "4-Nov": 2, "3-Nov": 2, "2-Nov": 1, "1-Nov": 2, "31-Oct": 1, "30-Oct": 1, "29-Oct": 1, "27-Oct": 2, "26-Oct": 5, "25-Oct": 4, "24-Oct": 2, "23-Oct": 2, "22-Oct": 1, "21-Oct": 1, "20-Oct": 1, "19-Oct": 5, "18-Oct": 2, "17-Oct": 4, "16-Oct": 5, "15-Oct": 2, "14-Oct": 5, "13-Oct": 4, "11-Oct": 2, "10-Oct": 3, "9-Oct": 4, "7-Oct": 1, "6-Oct": 1, "5-Oct": 3, "4-Oct": 3, "3-Oct": 3, "2-Oct": 1, "1-Oct": 2, "30-Sep": 1, "29-Sep": 3, "28-Sep": 2, "27-Sep": 2, "26-Sep": 1, "25-Sep": 1, "24-Sep": 2, "23-Sep": 1, "22-Sep": 3, "21-Sep": 1, "20-Sep": 3, "19-Sep": 6, "18-Sep": 1, "16-Sep": 2, "15-Sep": 3, "14-Sep": 3, "13-Sep": 1, "12-Sep": 1, "11-Sep": 2, "10-Sep": 1, "9-Sep": 3, "8-Sep": 1, "7-Sep": 2, "6-Sep": 2, "5-Sep": 3, "4-Sep": 1, "3-Sep": 1, "2-Sep": 4, "1-Sep": 1, "31-Aug": 2, "28-Aug": 2, "25-Aug": 1, "24-Aug": 1, "23-Aug": 1, "20-Aug": 1, "18-Aug": 2, "16-Aug": 2, "15-Aug": 4, "14-Aug": 3, "13-Aug": 2, "11-Aug": 1, "9-Aug": 1, "8-Aug": 1, "7-Aug": 1, "6-Aug": 2, "5-Aug": 2, "3-Aug": 2, "2-Aug": 1, "1-Aug": 1, "31-Jul": 1, "30-Jul": 1, "28-Jul": 3, "27-Jul": 2, "26-Jul": 2, "25-Jul": 2, "24-Jul": 1, "21-Jul": 1, "19-Jul": 1, "18-Jul": 1, "17-Jul": 2, "16-Jul": 2, "14-Jul": 2, "13-Jul": 1, "12-Jul": 5, "11-Jul": 1, "10-Jul": 4, "9-Jul": 1, "8-Jul": 1, "7-Jul": 1, "6-Jul": 1, "5-Jul": 3, "4-Jul": 2, "3-Jul": 1, "2-Jul": 2, "1-Jul": 3, "29-Jun": 2, "28-Jun": 1, "26-Jun": 3, "25-Jun": 3, "24-Jun": 1, "23-Jun": 1, "22-Jun": 2, "21-Jun": 5, "20-Jun": 2, "19-Jun": 2, "18-Jun": 3, "17-Jun": 4, "15-Jun": 3, "14-Jun": 1, "13-Jun": 1, "12-Jun": 1, "10-Jun": 1, "9-Jun": 1, "7-Jun": 3, "6-Jun": 3, "5-Jun": 4, "3-Jun": 1, "2-Jun": 1, "1-Jun": 3, "31-May": 1, "30-May": 5, "29-May": 4, "28-May": 3, "27-May": 3, "26-May": 1, "24-May": 3, "23-May": 2, "22-May": 1, "21-May": 1, "20-May": 2, "19-May": 1, "16-May": 1, "15-May": 1, "8-May": 1, "7-May": 4, "6-May": 1, "4-May": 1, "2-May": 2, "27-Apr": 4, "26-Apr": 1, "24-Apr": 1, "23-Apr": 3, "21-Apr": 1, "20-Apr": 1, "19-Apr": 3, "18-Apr": 2, "17-Apr": 1, "16-Apr": 3, "15-Apr": 1, "14-Apr": 1, "13-Apr": 2, "12-Apr": 1, "11-Apr": 1, "9-Apr": 3, "8-Apr": 1, "5-Apr": 1, "4-Apr": 3, "30-Mar": 1, "29-Mar": 1, "28-Mar": 1, "22-Mar": 2, "21-Mar": 2, "20-Mar": 2, "19-Mar": 2, "18-Mar": 2, "17-Mar": 1, "16-Mar": 2, "15-Mar": 3, "14-Mar": 1, "13-Mar": 2, "11-Mar": 1, "9-Mar": 2, "8-Mar": 1, "5-Mar": 1, "4-Mar": 6, "3-Mar": 6, "2-Mar": 8, "1-Mar": 4, "28-Feb": 4, "27-Feb": 5, "26-Feb": 4, "25-Feb": 1, "24-Feb": 5, "23-Feb": 6, "21-Feb": 5, "20-Feb": 7, "19-Feb": 2, "18-Feb": 3, "17-Feb": 3, "16-Feb": 5, "15-Feb": 3, "14-Feb": 4, "13-Feb": 2, "12-Feb": 2, "11-Feb": 2, "10-Feb": 2, "9-Feb": 2, "8-Feb": 3, "7-Feb": 4, "6-Feb": 3, "5-Feb": 3, "4-Feb": 3, "3-Feb": 3, "2-Feb": 2, "1-Feb": 4, "31-Jan": 5, "30-Jan": 4, "29-Jan": 2, "28-Jan": 2, "27-Jan": 2, "26-Jan": 1, "25-Jan": 4, "24-Jan": 3, "23-Jan": 1, "20-Jan": 2, "19-Jan": 3, "18-Jan": 3, "17-Jan": 2, "16-Jan": 3, "15-Jan": 1, "14-Jan": 1, "13-Jan": 1, "12-Jan": 2, "11-Jan": 2, "10-Jan": 3, "9-Jan": 3, "8-Jan": 1, "6-Jan": 1, "4-Jan": 1, "3-Jan": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2018/salvini_words b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_words new file mode 100644 index 0000000..7115ce6 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2018/salvini_words @@ -0,0 +1,9212 @@ +maestro +canello +già +messo +avanti +orologio +mezzanotteee +🍾🥂😂 +pensiero +unico +inimitabile +geniale +indimenticabile +paolo +villaggio +emozioni +battaglie +problemi +soddisfazioni +risultati +positivi +raggiunti +italia +ritrovato +finalmente +orgoglio +dignità +grazie +migliore +impegno +amici +conto +aiuto +diretta +festa +lega +albino +bergamo +state +risolvere +problemi +calcio +bisogna +coinvolgere +intorno +tavolo +protagonisti +calciatori +tifoserie +presidenti +arbitri +giornalisti +bisogna +però +confondere +delinquenti +tifosi +perbene +riguardate +insieme +me +intervento +ieri +notte +italia +commentate +diretta +prefettura +pesaro +presieduto +comitato +sicurezza +ordine +pubblico +state +me +dopo +aver +donato +qualche +regalo +sorriso +bambini +passeranno +natale +ospedale +voglio +salutare +voglio +smontare +alcune +bufale +propinate +qualche +politico +giornalista +nessuna +altro +pensione +verrà +tagliata +diminuirà +nessuno +italia +prenderà +meno +anzi +prenderà +oppositori +rimangono +solo +bugie😊 +buon +santo +natale +amici +firenze +appena +terminato +comitato +provinciale +ordine +sicurezza +pubblica +seguitemi +diretta +stamattina +parlato +radio +voglia +riascoltate +intervista +insieme +me +commentate +leggo +ospedale +fatebenefratelli +milano +firmato +protocollo +intesa +polizia +stato +azienda +socio +sanitaria +territoriale +asst +regione +lombardia +realizzazione +laboratorio +genetica +altro +forense +polizia +scientifica +orgoglioso +italia +punto +riferimento +sicurezza +anticrimine +europa +mondo +sorbolo +parma +oggi +felice +aver +consegnato +personalmente +guardia +finanza +immobile +sequestrato +‘ndrangheta +voglio +vedere +clan +ridotti +fame +galera +lamafiamifaschifo +diretta +amici +confagricoltura +seguitemi +patrimonio +lavoro +ricchezza +storia +cultura +viva +agricoltura +viva +made +italy +🇮🇹 +intervista +ieri +sera +nicola +porro +rete +piaciuta +molto +eccola +aiutate +condividere +diretta +comune +sorbolo +parma +consegnerò +guardia +finanza +immobile +sequestrato +‘ndrangheta +state +me +ecco +video +completo +ruspe +azione +oggi +campo +nomadi +cascina +pisa +chiacchiera +fa +dalleparoleaifatti +manterremo +impegni +presi +guardando +sempre +avanti +mai +indietro +diretta +milano +scuola +formazione +politica +seguite +diretta +gerusalemme +racconto +incontro +stamane +premier +netanyahu +altri +incontri +splendida +visita +israele +ora +santo +sepolcro +gerusalemme +diretta +sede +stampa +estera +roma +domande +risposte +giornalisti +stranieri +parliamo +governo +buonsenso +state +avanguardia +orgoglio +cambiamento +dignità +paese +ripropongo +intervento +messo +tutta +testa +cuore +piazzadelpopolo +primagliitaliani +dimenticherò +mai +emozioni +abbraccio +uniti +possiamo +❤️ +live +roma +pronto +piazza +popolo +iocisono +ripropongo +intervista +oggi +pomeriggio +barbara +urso +persona +cuore +aspetto +domani +mattina +roma +iocisono +intervista +mattina +canale +sabato +roma +mare +gente +perbene +dire +primagliitaliani +🇮🇹 +mattina +radio +quota +nessun +rinvio +concorrenza +sleale +cina +difesa +made +italy +presunta +disumanità” +italia +molto +altro +no +nuove +tasse +auto +credo +essere +stato +chiaro +ascoltate +diretta +camera +iniziativa +educazione +civica +obbligatoria +scuole +sostegno +riconoscimento +lingua +segni +formazione +insegnanti +cosa +pensate +ieri +sera +rai +stato +chiaro +bene +dialogo +europa +datori +lavoro +italiani +diretta +bruxelles +seguitemi +testata +politico +eu +deciso +premiarmi +politico +europeo +anno +😱 +grazie +soprattutto +intervista +campo +rtl +ascoltate +commentate +me +sempre +bello +tornare +davanti +pubblico +giletti +rivedete +intervista +insieme +me +leggo +commenti +ripropongo +intervento +oggi +la7 +merlino +state +svegli +potrete +vedere +vespa +rai +verso +molla +amici +primagliitaliani +promesso +decretosalvini +legge +solo +inizio +rivedi +intervento +oggi +barbara +urso +grazie +🔴 +fatelo +girare +italia +firmerà +proposta +global +compact +onu +immigrazione +governo +andrà +riunione +marrakesh +avanti +noglobalcompact +felice +onorato +aver +inaugurato +nuovo +anno +accademico +scuola +perfezionamento +forze +polizia +fiore +occhiello +italiano +unicum +livello +europeo +scuola +uscirà +altro +personale +formato +solo +professionalmente +eticamente +culturalmente +socialmente +sicurezza +rispetto +tutela +ordine +oltre +legalità +grazie +fate +diretta +camera +alcune +cose +dirvi +decretosalvini +diventa +legge +me +diretta +roma +evento +sindaci +italia” +poste +italiane +diretta +cagliari +presentazione +34esimo +congresso +partito +sardo +azione +seguite +ogni +insulto +arriva +sinistra +inauguriamo +nuova +sede +lega +seguitemi +dà +tortolì +spettacolo +mattina +rai +credo +essere +stato +particolarmente +chiaro +movimenti +cosiddetto +spread +corrispondono +vita +economia +vera +paese +mesi +fatto +tanto +altro +molto +consenso +vorrei +qualche +speculatore +volesse +ostacolarci +costi +sempre +comunque +primagliitaliani +diretta +camera +seguitemi +diretta +roma +assemblea +alis +associazione +logistica +intermodalità +sostenibil +seguite +dobbiamo +costruire +distruggere +italia +bisogno +nuove +infrastrutture +bisogno +infrastrutture +dobbiamo +andare +avanti +tornare +indietro +diretta +milano +state +idn2018 +ieri +sera +rai +pimpante +confronto +enrico +lucci +😀 +eccolo +diretta +milano +assemblea +cna +confederazione +nazionale +artigianato +piccola +media +impresa +seguite +mai +andato +maurizio +costanzo +stata +esperienza +simpatica +tante +domande +tirato +indietro +giudicate +commento +libero +😉 +diretta +prefettura +napoli +presieduto +comitato +ordine +sicurezza +pubblica +nuovi +agenti +polizia +locale +impianti +videosorveglianza +norma +rottama +motorini +programma +altro +sgomberi +stabili +pericolanti +case +popolari +occupate +gestite +camorra +lotta +spacciatori +tante +altre +iniziative +consentite +decretosalvini +molla +metterò +tutta +aiutare +città +seguite +ora +diretta +milano +scuola +formazione +politica +lega +voglia +state +me +mattina +università +lumsa +roma +partecipato +molto +volentieri +convegno +promosso +comunità +papa +giovanni +xxiii +insieme +polizia +stato +affetti +famigliari +amici +veri +altro +antidoto +migliore +tenta +plagiare +adescare +violentare +psicologicamente +purtroppo +fisicamente +voglia +ecco +intervento +dopo +intervista +ieri +sera +gruber +giornata +approvazione +parlamento +decretosalvini +ricevuto +molti +messaggi +sostegno +tanti +inviti +andare +avanti +mondi +ambienti +vari +grazie +garantisco +fermerò +certo +adesso +ripropongo +intervista +oggi +canale +pubblico +studio +apprezzato +spero +soddisfatto +decreto +sicurezza +immigrazione +taglio +costi +accoglienza +mangioni +profittatori +oggi +giornata +molto +importante +italiani +ora +andiamo +avanti +diretta +viminale +seguite +caso +asia +bibi +lavorando +discrezione +attenzione +insieme +altri +paesi +occidentali +umanamente +possibile +garantire +futuro +ragazza +soddisfatto +breve +costruttiva +visita +ghana +autorità +ringrazio +ospitalità +seguiranno +altre +vari +paesi +africani +mentre +passato +tanti +limitavano +chiacchierare +altro +cerchiamo +fare +promesso +dopo +aver +bloccato +sbarchi +favorire +rimpatri +diritto +rimanere +italia +aiutare +popoli +casa +attraverso +cooperazione +economica +culturale +umana +utile +accordo +rilancio +buonismo +rovinato +italia +fatto +venir +meno +rispetto +immigrazione +sicurezza +certezza +pena +legittima +difesa +invertito +rotta +solo +inizio +mollo +conto +tornare +presto +terracina +quando +attività +ripartite +alberi +ripiantati +tetti +sistemati +voluto +vedere +occhi +credo +solidarietà +portata +persona +mostri +altro +italiani +stato +lascia +soli +calamità +naturali +abbracci +bastano +servono +soldi +mezzi +già +prossimi +giorni +arriveranno +primi +provvedimenti +stanziamenti +parte +consiglio +ministri +metterò +impegno +persone +attività +colpite +ritrovino +po +tranquillità +centro +coordinamento +soccorsi +aeroporto +belluno +seguitemi +devastazione +belluno +montagna +senza +alberi +stringe +cuore +domani +posto +già +cercando +trovando +primi +milioni +euro +aiutare +popolazioni +colpite +disastri +veneto +sicilia +scalfari +putin +vuole +salvini +dittatore +italia +😂😂😂 +hastatosalvini +dopo +richiesta +archiviazione +procura +catania +continuo +ancora +forza +strada +ragione +voleva +male +😁 +avanti +tutta +salvini +cattivo +maestro” +parole +arrivata +ora +ufficio +busta +chiusa +procura +catania +assolto +indagato +apriamo +insieme +intanto +buon +ognissanti +amici +abbraccio +particolare +lavora +contento +aver +conosciuto +ragazze +ragazzi +nazionale +italiana +impegnata +giorni +mondiali +qatar +tanta +bella +gioventù +ottime +speranze +invidio +lavorando +altro +dare +sempre +spazio +visibilità +fondi +cosiddette +discipline +minori +seguite +però +milioni +persone +tifoso +calcio +meno +pallone +sport +bordo +splendida +fregata +federico +martinengo +membri +equipaggio +orgoglioso +marina +militare +italiana +difende +mari +sicurezza +grazie +vuole +male +ecco +cosa +detto +ieri +sera +giletti +la7 +orgoglioso +momenti +italia +torna +rispetto +difende +enrico +montesano +difende +azioni +politiche +dice +milioni +italiani +pensano +parole +chiare +semplici +ascoltatelo +ridurre +ulteriormente +sbarchi +aumentare +espulsioni +rimpatri +roma +milano +napoli +palermo +riconquisteremo +zone +oggi +mano +delinquenza +spaccio +italia +spazio +illegalità +buttalo +buttalo +dopo +avermi +dato +assassino +centri +sociali +firenze +divertono +lanciando +acqua +gommone +fantoccio +pena +limite +idiozia +certi +studenti” +bene +po +scuola +fissato +immacolata +sabato +dicembre +appuntamento +roma +piazza +popolo +italiani +sostengono +vorranno +esserci +vicini +bella +avventura +liberazione +coraggio +onestà +crescita +futuro +crimini +commessi +coloro +abusato +buona +fede +paese +accoglie +doppiamente +gravi +penso +così +ora +diretta +caserma +carabinieri +salvo +acquisto +roma +cerimonia +anni +fondazione +gruppo +intervento +speciale +gis +seguitemi +puntiamo +vita +vera +lavoro +tasse +legge +fornero +equitalia +partite +iva +agricoltura +risparmiatori +truffati +finanza +europa +seguiranno +economia +reale +spread +scenderà +inevitabilmente +manovra +darà +stabilità +serenità +italia +ora +diretta +senato +state +me +diretta +verona +fieracavalli +seguitemi +video +fermo +notte +immigrati +senegalesi +irregolari +violenza +sessuale +gruppo +cessione +stupefacenti +omicidio +volontario +terza +persona +stata +rintracciata +spero +presto +altro +potrò +darvi +notizia +altri +sospetti +complici +grazie +polizia +stato +omicidio +desirée +rimarrà +impunito +ve +garantisco +ripropongo +intervento +mattina +rtl +seguite +po +tempo +ditemi +stato +abbastanza +chiaro +avanti +tutta +quartiere +san +lorenzo +roma +seguitemi +desirée +sempre +diretta +bucarest +ambasciata +italiana +seguitemi +diretta +bucarest +ministero +interno +romeno +collega +carmen +daniela +dan +secondo +regista +americano +michael +moore +bigotto +razzista +odierei +gay +lesbiche +poveretto +fa +po +pena +intellettuali +sinistra +italia +estero +attaccano +altro +giorno +sì +altro +pure +vuol +dire +strada +giusta +no +giudicare +voti +veri +presi +trentino +alto +adige +ieri +direi +sì +figlio +vuole +andare +fonderia +mica +problema +devono +venire +ghana +andarci +lavorare” +milioni +poveri +italia +sembra +proprio +saggio +citare +prodi +teorie +giovani +italiani +fannulloni +sinistra” +salvini +neofascista +rozzo +aggressivo +basta +lieto +piacerle +viste +differenze +me +stato +eletto +nominato +rovinato +migliaia +famiglie +italiane +altro +verso +lacrime +coccodrillo +frequento +salotti +chic +orgoglioso +cominciato +smontare +legge +porta +nome +stopfornero +amiche +amici +trentino +finalmente +domenica +potete +cambiare +storia +dopo +decenni +governi +sinistra +chiuso +ospedali +assunto +amici +parenti +conoscenti +finalmente +cambia +altro +ora +poi +trento +provincia +lavorerà +merito +raccomandazione +sicurezza +investimenti +autonomia +lega +domenicavotolega +fugattipresidente +spettacolo +trento +sera +grazie +migliori +sondaggi +domenica +bastano +minuti +tempo +mandiamo +casa +sinistra +passaparola +social +via +sms +via +whatsapp +via +telefonata +tradizionale +meglio +ancora +persona +domenicavotolega +diretta +trento +state +domenicavotolega +mezzocorona +trento +grazie +sostegno +prima +volta +quando +esiste +provincia +autonoma +trento +domenica +potrete +fare +cosa +incredibile +mandare +casa +sinistra +combinate +cotte +crude +domenicavotolega +diretta +cles +splendido +trentino +seguitemi +domenicavotolega +polemiche +servono +nulla +italiani +vogliono +andiamo +avanti +diretta +splendida +bolzano +seguitemi +domenicavotolega +manovra +economica +vergogna +francese +claviere +fino +poveretti +augurano +vedermi +testa +giù” +intervista +stasera +italia +parlato +po +minuti +ve +consiglio +adesso +conferenza +stampa +sempre +diretta +mosca +seguitemi +ancora +diretta +mosca +domande +risposte +imprenditori +italiani +ora +mosca +assemblea +generale +confindustria +russia +seguitemi +diretta +spoleto +partecipato +cerimonia +giuramento +allievi +agenti +polizia +stato +emozionato +onorato +ringraziamenti +bastano +impegnato +unghie +denti +fino +altro +ieri +notte +inserire +manovra +alcune +centinaia +milioni +euro +serviranno +assumere +mila +uomini +donne +forze +ordine +meno +soldi +gestione +immigrazione +soldi +sicurezza +modo +fare +ministro +geniali +professoroni +soloni +adesso +tutte +soluzioni +tasca +ultimi +venti +trenta +quarant +anni +spoleto +seguitemi +diretta +cerimonia +giuramento +200esimo +corso +allievi +agenti +polizia +stato +affetto +sostegno +trovato +tanti +incontri +giro +provincia +bolzano +fatto +capire +voglia +sicurezza +difesa +confini +tranquillità +altro +cambiamento +occhi +europa +puntati +voto +domenica +lega +candida +garantire +autonomia +benessere +splendida +comunità +prepotenza +bruxelles +bolzano +trento +stop +pd +conto +domenicavotolega +giovedì +sera +torno +bolzano +troverete +presto +dettagli +sezione +eventi +diretta +roma +intervento +assemblea +associazione +nazionale +costruttori +edili +state +me +stanco +estremamente +soddisfatto +moltiplichiamo +pani +pesci +certamente +manovra +economica +renderà +migliore +vita +italiani +dopo +giorni +governo +onore +onere +contento +impegni +fin +mantenuti +molleremo +diretta +monza +assemblea +confederazione +industria +manifatturiera +italiana +impresa +privata +🔴questo +vedrete +tigì +girare +onore +capotreno +sardegna +fa +scendere +gruppo +scrocconi +clima +cambiato +tolleranzazero +furbetti +uso +massiccio +forze +ordine +vuoi +viaggiare +paghi +cittadini +perbene +conto +ritornare +bolzano +ministro +restituendo +quartieri +città +gente +perbene +possibile +aver +paura +uscire +sera +cagnolino +prendere +autobus +treno +altro +immigrati +integrati +perbene +fratelli +finti +profughi +spacciano +delinquono +vanno +spediti +casa +domenicavotolega +poco +fa +vie +bressanone +bolzano +spettacolo +domenicavotolega +splendida +laives +comizio +improvvisato +seggiola +palchi +sontuosi +lasciamo +boschi +pd +😄 +parte +tour +provincia +bolzano +state +domenicavotolega +collegamento +laives +provincia +bolzano +scuola +formazione +politica +lega +esperienza +straordinaria +formazione +incontro +idee +progetti +arrivata +quarta +edizione +tanti +invidiano +accompagnato +opposizione +governo +paese +state +ultima +tappa +splendida +giornata +trentina +ala +trento +state +me +21ottobrevotolega +altra +tappa +trentina +pergine +valsugana +guardate +spettacolo +dedichiamo +piazza +21ottobrevotolega +ora +diretta +borgo +valsugana +trento +seguitemi +21ottobrevotolega +grazie +aldeno +trento +sondaggi +veri +gente +contano +ferma +perduto +21ottobrevotolega +intervista +stamattina +radio +radicale +ricette +imposte +europa +governi +monti +letta +renzi +gentiloni +aumentato +debito +pubblico +impoverito +precarizzato +italia +esattamente +contrario +primagliitaliani +lavoro +tasse +pensioni +sicurezza +burocrati +professoroni +governo +tiriamo +dritto +primagliitaliani +diretta +tetti +roma +attesa +pagarci +pensioni +ecco +opinionista +giorno🤔 +esercitazione +nocs +live +roma +diretta +roma +40° +anniversario +nucleo +operativo +centrale +sicurezza +minuto +meno +spread +lavoro +vero +così +cambiando +italia +lavoreremo +cambiare +europa +ora +lione +conferenza +stampa +dopo +incontri +g6lyon +seguitemi +ieri +sera +rete +marine +pen +bersani +cita +prodi +esempio +😱 +parla +migrazioni +inevitabili +me +piaciuta +molto +ve +consiglio +consigli +critiche +costruttive +accetto +volentieri +insulti +no +soprattutto +vengono +dovrebbe +rappresentare +milioni +europei +avere +obiettivo +portare +popoli +armonia +scontro +sociale +insicurezza +fermo +vado +avanti +spedito +treno +accidenti +dopo +insulti +illustre +personaggio +so +sera +riuscirò +dormire +rosicano +sinistra +bacioni +😘 +ascoltare +storie +problemi +vita +vera +accettare +complimenti +consigli +critiche +condividere +sorriso +selfie +semplice +stretta +mano +sondaggi +preferisco +grazie +entusiasmo +forza +quotidiana +ferma +perduto +minuti +alcuni +interventi +w +italia +sicurezza +immigrazione +crescita +italia +africa +dite +stato +abbastanza +chiaro +oggi +soliti +centri +sociali +deciso +imbrattare +centro +milano +dandomi +merda” +prendendosela +decreto +scuole +sicure +secondo +poliziotti +antidroga +altro +allontanando +scuole +ragazzi +problematici +aumentando +situazioni +marginalità” +😱 +✅stop +legge +fornero +inizio +senza +penalizzazioni +senza +paletti +senza +limiti +senza +tetto +reddito +permettendo +400mila +persone +andare +pensione +tornare +vita +liberando +altrettanti +altro +posti +lavoro +✅flat +tax +aliquota +almeno +milione +partite +iva +autonomi +professionisti +piccoli +imprenditori +accompagnata +pesante +sconto +fiscale +reinvestirà +utili +assunzioni +ricerca +macchinari +✅piano +straordinario +senza +precedenti +italia +assunzioni +donne +uomini +forze +ordine +avanti +tutta +dalleparoleaifatti +bella +novità +ascoltate +bene +nave +organizzata +centri +sociali +vagherà +mediterraneo +ricerca +immigrati +sbarcare +coste +vogliono +vadano +vogliono +italia +nisba +😘 +camorra +violenza +ignoranza +povertà +culturale +combatteremo +attraverso +mezzi +possibili +sentire +ogni +singolo +camorrista +schifo +decreto +sicurezza +immigrazione +decretosalvini +intervento +oggi +canale +pensiero +speciale +juncker +😊 +cancellate +decreto +cancelliamo +salvini +secondo +sinistra +sparge +odio +😞 +quando +ospiti +spera +regolari +paese +straniero +bisognerebbe +entrare +punta +piedi +rispettare +cultura +leggi +istituzioni +no +ragazzi +incontrati +ieri +napoli +selfie +salvini +buon +ministro +grazie +😊 +qualcuno +video +andrà +traverso +diretta +napoli +presieduto +comitato +ordine +sicurezza +pubblica +seguite +diretta +giornale +tablò +sempre +diretta +genova +diretta +inaugurazione +distaccamento +vigili +fuoco +genova +est +diretta +ostia +roma +sfilata +occasione +50º +anniversario +associazione +nazionale +polizia +stato +interverrò +grande +orgoglio +uomini +donne +divisa +state +grazie +latina +spettacolo +ricompense +belle +orgoglioso +aver +indossato +sera +maglia +polizia +stato +giorno +patrono +san +michele +arcangelo +orgoglioso +altro +governo +previsto +piano +assunzione +10mila +uomini +donne +forze +ordine +vedeva +anni +voglio +lasciare +figli +paese +piú +sicuro +detto +mollo +diretta +latina +diretta +giornata +mondiale +sordo +roma +seguitemi +madre +notizia +arresto +detto +stato +fatelo +soffrire” +accordo +punizione +esemplare +schifosi +compagni +criminali +meglio +romania +abbattuta +ex +scuola +monteverdi +marghera +venezia +ricettacolo +sbandati +delinquenti +ministero +interno +già +accordo +comune +posto +sorgerà +nuova +questura +altra +ottima +notizia +😃 +tunisi +conferenza +stampa +diretta +ministero +interno +collega +tunisino +live +tunisi +ministero +interno +grazie +eroici +vigili +fuoco +professionalità +rapidità +intervento +scongiurato +danni +persone +limitato +danni +abitazioni +provincia +pisa +unità +altro +compresi +volontari +canadair +elicotteri +erickson +s64 +azione +spegnere +fiamme +mettere +sicurezza +zona +consentire +sfollati +tornare +presto +case +ieri +sera +porro +rete +spiegato +nuovo +decretosalvini +dettagli +aiutatemi +condividere +rete +diretta +roma +palazzo +chigi +nato +decretosalvini +sicurezza +immigrazione +ve +parlo +volete +vedere +rivedere +intervento +ieri +sera +giletti +eccolo +commento +libero +ora +diretta +insieme +pradamano +udine +matera +arrestato +nigeriano +prende +bastonate +impalcatura +auto +contento +aggredisce +uomini +polizia +follia +ogni +giorno +agenti +rischiano +vita +altro +fronte +delinquenti +vanno +tutelati +decreto +sicurezza +vogliamo +estendere +utilizzo +taser +poliziotti +municipali +comuni +100mila +abitanti +sempre +parte +forze +ordine +ruspa +campo +rom +ieri +pisa +ora +smantellati +solo +capannoni +vuoti +già +lavorando +sgomberare +completamente +accampamento +entro +pochi +mesi +bene +così +comune +regione +paese +governa +lega +passa +parole +fatti +genova +città +viva +ancora +bella +apre +mondo +voglia +correre +ponte +genova +fare +bene +fare +fretta +città +bisogno +affetto +presenza +futuro +dirigenti +autostrade +cuore +accoglieranno +scelte +verranno +fatte +senza +andare +cercare +cavilli +ricorsi +vari +tenerezza +nonni +emigravano +uguale +dopo +aver +ridotto +drasticamente +sbarchi +costo +farmi +indagare +italia +farmi +insultare +ipocriti +buonisti +mezzo +mondo +comunque +altro +medaglia +decretoimmigrazione +arrivo +finalmente +nuovi +strumenti +espellere +italia +delinquenti +mollo +💪 +proposta +lega +prevede +sacrosanto +diritto +difendersi +interno +propria +abitazione +trovo +casa +persona +armata +mascherata +notte +me +capire +arma +altro +finta +diritto +difendermi +senza +senza +disarmare +punire +aggressori +difendere +aggrediti +ladri +rapinatori +pacchia +finita +fatto +stupro +lì” +dice +ricco +fotografo +vip” +schifo +viene +voglia +querelarlo +ancora +intellettuali” +sinistra +mattina +presentato +viminale +risultati +operazione +spiaggesicure +coinvolto +comuni +permesso +sequestro +340mila +oggetti +contraffatti +molti +quali +nocivi +altro +salute +ringrazio +donne +uomini +polizia +stato +carabinieri +guardia +finanza +polizia +locale +tanti +comuni +coinvolti +ottimo +lavoro +dalleparoleaifatti +amici +ripropongo +intervento +ieri +sera +floris +sembra +ora +mostro +recuperato +grazie +operazione +spiagge +sicure +seguitemi +diretta +viminale +presentarvi +risultati +operazione +spiagge +sicure +sorpresa +vuole +venire +italia +deve +rispettare +italiani +punto +decretoimmigrazione +arrivo +torna +buonsenso +dopo +ingiustizie +sofferenze +causate +legge +fornero +priorità +restituire +diritto +pensione +milioni +italiani +lavorando +obiettivo +quota +altro +permettendo +così +ingresso +tanti +giovani +mondo +lavoro +dopo +immigrazione +ora +tocca +economia +dalleparoleaifatti +ripropongo +intervento +altra +sera +paderno +dugnano +vicino +milano +poi +voglia +diretta +canale +barbara +urso +val +susa +”bravi +ragazzi” +assalto +polizia +denunciati +galera +ora +diretta +fano +marche +seguite +là +isteria +qualche +lussemburghese +molti +estero +tornati +vedere +paese +baluardo +può +rinascere +europa +molti +parlamentari +ministri +presidenti +commissari +europei +privato +dicono +finalmente +arrivato +governo +governa +italia +mesi +governo +mila +sbarcati +meno +rispetto +anno +scorso +diceva +può +fare +niente +volere +potere +paragona +nonni +emigrati +clandestini +sbarcano +oggi +vuole +immigrati +europa +conclude +urlando +merda” +lussemburgo +paradiso +fiscale +può +dare +lezioni +italia +nessuno +normale +ministro +diretta +sede +governo +austriaco +vienna +conferenza +stampa +amico +vicecancelliere +strache +videointervista +time +guardatela +spero +aver +raccontato +chiarezza +pubblico +internazionale +idea +italia +europa +diretta +quartiere +libertà +bari +altra +diciotti +ecco +cosa +volere +potere +democratici” +figli +papà +occupano +palazzina +milano +grido +salvini +merda” +sgomberati +polizia +annunciano +altri +presidi +solidarietà” +me +tutte +città +secondo +nulla +meglio +fare +avanti +tutta +ogni +anno +italia +dà +onu +milioni +euro +signori +permettono +dare +lezioni +italiani +valuteremo +utilità +continuare +versare +così +tanti +soldi +finanziare +sprechi +mangerie +razzismo +vadano +cercarlo +altrove +quando +video +vale +mille +articoli +giornale +onu +buonisti +fatelo +girare +salvini +fatto +alcun +sequestro +persona +indagato” +fa +piacere +sentirlo +dire +magistrato +grande +esperienza +carlo +nordio +grazie +ottobre +parte +4ª +edizione +scuola +formazione +politica +lega +occasione +studio +ascolto +confronto +approfondimento +crescita +partecipato +ragazze +altro +ragazzi +creano +legami +creano +amicizie +nascono +idee +nasce +voglia +partecipare +essere +protagonisti +futuro +grazie +armando +siri +squadra +aver +creato +bellissima +realtà +invidiano +aspettiamo +✏️ +info +iscrizioni +www +scuoladiformazionepolitica +it +spacciatori +morte +stranieri +stati +arrestati +salento +dopo +lunga +operazione +sotto +copertura +uomini +polizia +lecce +fiero +forze +ordine +sempre +prima +altro +linea +ristabilire +ordine +legalità +paese +decretosicurezza +mente +delinquenti +meritano +solo +galera +irregolari +espulsione +finita +pacchia +raffinata +signora +diciamo +anziché +occupare +altri +casa +può +prendere +affitto +milioni +italiani +onesti +sbaglio +proprietà +privata +sacra +promesso +fatto +difendere +confini +fermare +invasione +paese +possono +indagarmi +altre +cento +volte +continuerò +farlo +tradirò +mandato +ricevuto +italiani +ascoltate +grande +mario +giordano +ipocrisia +pensiero +unico +monti +confessa +gente +chiede +tornare +politica +😱 +conoscete +qualcuno +ringrazio +m +voluto +bene +m +voluto +male +dopo +mesi +battaglie +fatta +bentornata +nonna +peppina +tutta +italia +vuole +bene +diretta +viminale +presentarvi +direttiva +scuole +sicure +vista +inizio +anno +scolastico +mai +spacciatori +morte +davanti +scuole +figli +seconda +parte +diretta +viminale +presentarvi +direttiva +scuole +sicure +vista +inizio +anno +scolastico +mai +spacciatori +morte +davanti +scuole +figli +prima +parte +priorità +restituire +diritto +pensione +milioni +italiani +via +fornero +quota +ingresso +tanti +giovani +mondo +lavoro +parole +fatti +molliamo +italia +deve +essere +protagonista +processo +stabilizzazione +mediterraneo +incursioni +altri +interessi +economici +devono +prevalere +bene +comune +pace +altro +personalmente +disponibile +correre +qualche +rischio +tornarci +presto +troppo +importante +libia +finalmente +pacificata +mamma +pelle +oca +emozionato +commosso +davvero +grazie +gente +viterbo +incontrata +splendida +festa +santa +rosa +altro +inchieste +insulti +sondaggi +preferisco +ovviamente +tivù +vedrete +immagini😁 +ora +diretta +festa +lega +alzano +bergamo +amico +mario +giordano +seguite +colpa +salvini +percezione +esagerata +realtà +tolleranzazero +unica +soluzione +pd +definisce +folle” +direttivasgomberi +roba +matti +proprietà +privata +sacra +troppi +italiani +vittime +occupazioni +parte +bisognosi +furbi +violenti +affitti +altro +casa +persona +sbagliata +paga +magari +torni +averne +bisogno +figli +puoi +metterci +anni +tornare +casa +poco +riaprono +scuole +figli +lavorando +spacciatori +morte +finisca +pacchia +piano +scuolesicure +diverse +città +italiane +disposizione +fondo +altro +milioni +euro +incrementare +controlli +assumere +agenti +polizia +locale +tempo +determinato +coprire +costi +straordinari +installare +impianti +videosorveglianza +davanti +scuole +papà +prima +ministro +voglio +figli +possano +andare +scuola +serenamente +senza +presenza +qualche +risorsa” +guadagnarsi +vivere +spaccia +morte +ragazzini +chiedo +troppo +settembre +città +italiane +milano +fino +catania +inizierà +sperimentazione +taser +pistola +elettrica +letale +aiuterà +migliaia +agenti +fare +meglio +lavoro +troppo +altro +tempo +forze +ordine +state +abbandonate +dovere +garantire +migliori +strumenti +poter +difendere +modo +adeguato +popolo +italiano +orgoglioso +lavoro +quotidiano +forze +polizia +carabinieri +premio +capalbio +soliti +radical +chic +indignano +immigrati +clandestini +grido +colpa +salvini +roberto +agostino +fondatore +dagospia +smonta +minuti😁 +grazie +questura +venezia +video +ricordo +sempre +parte +polizia +stato +diretta +milano +premier +ungherese +viktor +orbán +state +buon +pomeriggio +milano +amici +verso +seguite +diretta +pagina +conferenza +stampa +premier +ungherese +viktor +orbán +dopo +tanta +fatica +insulti +bugie +minacce +inchieste +finalmente +soluzione +nave +diciotti +dopo +aver +superato +confine +spagnolo +ceuta +aggredito +agenti +pattuglia +signori +stati +rimandati +marocco +grazie +accordo +internazionale +vent +anni +fa +fa +spagna +altro +bene +propongo +allora +razzista +fascista +disumano +vado +avanti +buonisti +radical +chic +sinistra +stopinvasione +stamattina +rtl +penso +essere +stato +chiaro +ascoltatemi +volete +commentate +ripropongo +intervento +mattina +rai3 +dite +cosa +pensate +commossa +signora +genovese +ringrazia +vigili +fuoco +brescia +impegnati +ricerche +dispersi +sotto +macerie +ponte +secondi +profonda +umanità +emozionanti +applausi +vigili +fuoco +genova +smetteremo +mai +ringraziarvi +fatto +salva +vite +rischiando +propria +merita +solo +tanto +rispetto +altro +ringraziamento +basta +ministro +già +lavoro +assumere +tanti +pompieri +migliorare +stipendi +mezzi +disposizione +italia +diretta +pontida +bergamo +appello +autostrade +aspetto +già +oggi +vengano +sospesi +pagamenti +pedaggi +genova +dintorni +bagno +umiltà +metterei +disposizione +risorse +necessarie +aiutare +sostenere +famiglie +vittime +città +genova +eroe +fa +amare +animali +sotto +ponte +crollato +genova +scelto +essere +fianco +vigili +fuoco +eroi +compresi +splendidi +cani +ieri +lavorando +macerie +coraggio +portargli +abbraccio +genova +arrende +sbagliato +causato +tanto +dolore +dovrà +pagare +seguitemi +diretta +san +luca +reggio +calabria +appena +concluso +riunione +comitato +nazionale +ordine +sicurezza +pubblica +oggi +pomeriggio +andrò +personalmente +genova +accertarmi +volta +nome +cognome +paghi +garantire +soldi +tutte +attenzioni +meno +burocrazia +possibile +sì +genova +torni +subito +sperare +lavorare +viaggiare +amici +ripropongo +intervento +poco +fa +tg4 +aggiornamenti +tragedia +genova +serve +chiarezza +può +esserci +altra +strage +senza +colpevoli +qualcuno +deve +pagare +possibile +morire +così +vincoli +europei +impediscono +spendere +soldi +mettere +sicurezza +scuole +vanno +figli +autostrade +viaggiano +altro +lavoratori +metteremo +davanti +sicurezza +italiani +domani +genova +ringraziare +soccorritori +stare +vicino +famiglie +vittime +accertare +responsabilità +immagini +impressionanti +grazie +centinaia +professionisti +soccorritori +volontari +impegnati +ore +soccorsi +preghiera +vittime +famiglie +promessa +andremo +fino +fondo +accertare +responsabilità +disastro +inaccettabile +imprenditori +artigiani +agricoltori +vanno +difesi +unghie +denti +riso +cambogiano +carne +sudamericana +lascio +altri +voglio +mangiare +bere +italiano +😁 +sassari +rom +anni +figli +infrange +obbligo +dimora +ruba +borsetta +anziana +signora +ipovedente +busta +pensione +appena +ritirata +sotto +occhi +figlio +altro +quindicenne +fa +palo +par +normale +italia +spazio +delinquenti +genere +pronta +democratica +pacifica +ruspa +oggi +gr1 +ribadito +aquarius +carico +clandestini +sicuramente +arriverà +porto +italiano +buonisti +felice +aver +potuto +parlare +spero +chiarezza +ora +jazeera +propongo +intervista +versione +italiana +commentate +condividete +lotta +mafia +schiavismo +sfruttamento +lavoro +nero +immigrazione +clandestina +priorità +assoluta +delinquenti +italia +pacchia +finita +ripropongo +intervista +ieri +sera +tg2 +leggo +commenti +seguitemi +diretta +festa +lega +arcore +monza +brianza +avanti +tutta +pensiero +vittime +feriti +terribile +esplosione +borgo +panigale +grazie +cuore +vigili +fuoco +prontamente +intervenuti +posto +capriata +orba +alessandria +seguite +prima +parte +immigrati +insultano +salvini +vaffanculo” +invece +mando +grandissimo😘 +pacchia +stra +finita +rilassatevi +prima +italiani +manifestazione +anti +razzista” +milano +pd +lamentano +essere +po +pochini +ragazzi +andrà +meglio +prossima +volta +😃 +italia +morendo +tasse +prossima +manovra +economica +parte +rivoluzione +fiscale +qualcuno +estero +piacerà +pazienza +fermare +qualche +rimbrotto +rivoluzionedelbuonsenso +seguitemi +diretta +cerimonia +giuramento +82º +corso +vigili +fuoco +roma +centro +sociale +abusivo +sgomberato +milano +polizia +cittadini +quartiere +ringraziano +ultima +boldrini +salvini +professore +paura” +accidenti +😱 +dite +verità +po +mancava +😀 +anziché +passare +giornata +insultare +forse +sinistra +dovrebbero +chiedersi +voti +piú +nessuno +primagliitaliani +sondaggi +spiaggia +romagnola +dicono +strada +giusta +vuole +male +inviamo +solo +sorrisi +😀 +insulti +radical +chic +presunti +vip +intellettuali +italia +estero +toccano +minimamente +basta +affetto +avanti +tutta +💪 +parole +fatti +regalo +bello +potrei +ricevere +splendida +signora +compiuto +anni +appena +rinnovato +tessera +lega +grazie +nonna +bruna +grande +abbraccio +😘 +fontevivo +parma +spettacolo +sondaggi +preferisco +seguite +condividete +live +vuole +male +evviva +eclissi +luna +pd😁 +italia +circa +mila +rom +problema +riguarda +solo +quei +mila +ostinano +vivere +campi +confini +legalità +piena +illegalità +fermare +pare +solo +questione +buonsenso +irrispettosa +copertina +fermerà +mollo +fanculo +salvini +vincitrice +premio +furbizia +estate +😁 +diretta +senato +state +🔴 +lavorando +decreto +sicurezza +permetterà +altre +cose +bloccare +domanda +asilo +commette +reati +incredibilmente +oggi +legge +eccetto +alcuni +casi +gravissimi +altro +consente +delinquenti +stranieri +continuare +chiedere +ricevere +protezione” +spese +italiani +finita +pacchia +tolleranzazero +bruxelles +chiediamo +elemosine +italia +bisogno +dignità +riprendendo +primagliitaliani +domanda +rifaresti +viaggio +risposta +no +informazione +paesi +origine +eviterebbe +tante +morti +tanti +nuovi +schiavi +ascoltate +testimonianza +illuminante +minuti +primi +giorni +governo +chiesto +cosa +vorrà +essere +ricordato +ascoltate +ditemi +accordo +stato +onorato +stringere +tutte +mani +nome +difende +sempre +arrestati +membri +equipaggio +barcone +pozzallo +siriani +tunisini +algerino +egiziani +parole +fatti +ora +però +galera +ora +diretta +prefettura +fermo +spettacolo +mollo +spettacolo +silvi +teramo +festeggiamo +insieme +primo +sindaco +lega +abruzzo +diretta +verona +seguitemi +odio +lega +odio +salvini +clandestini +mondo +bello +vario +alema +emergenza +sbarchi +salvini +detto +mette +quasi +buon +umore +😁 +reggio +calabria +lunedì +firmato +registro +‘ndrangheta +guerra +mafie +senza +quartiere +possibile +presente +fisicamente +territorio +segnalare +vicinanza +stato +governo +impegnato +quotidianamente +lotta +criminalità +organizzata +difendere +frontiere +esterne +ridurre +partenze +aiutare +autorità +libiche +penso +finalmente +europa +cominciato +lavorare +seriamente +tema +immigrazione +diretta +innsbruck +seguite +ora +vertice +europeo +immigrazione +portare +spero +modo +chiaro +deciso +voce +italiani +live +innsbruck +colleghi +ministri +interni +austriaco +tedesco +kickl +seehofer +seguitemi +innsbruck +incontro +molto +positivo +italia +germania +meno +sbarchi +meno +morti +meno +immigrati +clandestini +comincia +percorso +comune +paesi +risolvere +problemi +obiettivo +rimane +ridurre +arrivi +aumentare +espulsioni +iniziata +guerra +senza +quartiere +tutta +italia +mattina +palmi +reggio +calabria +consegnato +personalmente +chiavi +palazzina +confiscata +famiglia +mafiosa +polizia +altro +stato +diventerà +commissariato +voglio +sequestrare +fino +ultimo +centesimo +euro +gentaglia +me +ndranghetisti +scafisti +stessa +feccia +lamafiamifaschifo +sbarchi +domande +asilo +politico +immigrati +mantenuti +case +alberghi +digiunanti” +buonisti +abbastanza +salvini +mussolini” +tenerezza +buon +digiuno +doppio +panino +salame +salute +😁 +finché +navi +mediterraneo +aiuteranno +scafisti +fare +sporco +mestiere +partenze +morti +fermeranno +stufo +vedere +gente +innocente +morire +mare +magliette +rosse” +incontrate +oggi +fate +ciao +ciao +😃 +disumanità +permesso +anni +scorsi +immigrazione +senza +controllo +senza +freni +crea +nuovi +schiavi +sfruttati +altro +criminalità +organizzata +situazioni +vergognose +tendopoli +san +ferdinando +visitata +oggi +occorrono +limiti +regole +ordine +rispetto +civiltà +impegno +massimo +rimediare +disastri +governi +preceduto +ora +visita +comando +generale +arma +carabinieri +roma +poi +aggiorno +ricordando +giornata +domenica +scorsa +pontida18 +rimarrà +sempre +cuore +perugia +altra +brillante +retata +polizia +ringrazio +arrestati +profughi” +nigeriani +spaccio +eroina +parchi +vende +morte +città +fingendosi +bisognoso +asilo +protezione +verme +volte +fuori +italia +delinquenti +tolleranzazero +contento +primi +giorni +governo +onore +onere +ringrazio +ogni +giorno +italiani +continuerò +mettercela +tutta +tenervi +informati +possibile +spero +dopo +fase +iniziale +sperimentazione +taser +potrà +essere +dotazione +agenti +tutte +città +italiane +sicurezza +efficacia +azione +forze +ordine +anno +scorso +1° +giugno +luglio +altro +governo +altro +ministro +sbarcate +persone +quest +anno +data +insediamento +oggi +sbarcate +obiettivo +sbarchino +ancora +meno +business +immigrazione +clandestina +finito +oltre +disoccupazione +giovanile +presidente +inps +può +dire +vogliono +immigrati +pagarci +pensioni +insulto +confronti +italiani +sbaglio +voglio +agenzia +beni +confiscati +mafiosi +triplichi +organico +efficacia +presto +palmi +calabria +appartamenti +sequestrati +diventeranno +commissariato +polizia +mafiosi +camorristi +sappiano +pacchia +finita +fuori +italia +lamafiamifaschifo +domenica +rimarrà +cuore +vissuta +distanza +obiettivo +esserci +persona +anno +prossimo +pontida18 +primagliitaliani +gusto +fare +bagno +piscina +confiscata +boss +mafioso +spettacolo +palio +complimenti +contrada +drago +volete +vederlo +rivederlo +ecco +intervento +domenica +pontida +me +sempre +grandissima +emozione +primagliitaliani +pontida +giornata +grazie +fantastici +appena +arrivato +pontida18 +già +spettacolo +seguitemi +live +😍 +ora +diretta +milano +festival +lavoro +detto +fatto +scafisti +complici +italia +dice +no +diretta +festa +lega +caravaggio +bergamo +seguitemi +live +😊 +rom +parole +fatti +roghi +tossici +furti +ricettazione +mila +euro +beni +sequestrati +svariati +arresti +campo +rom +torino +stato +volte +complimenti +carabinieri +altro +blitz +confronti +situazioni +unica +soluzione +tolleranza +zero +aria +cambiata +regole +devono +valere +mattina +stato +assemblea +nazionale +confartigianato +senza +bacchette +magiche +aiutare +piccoli +ultimi +anni +fatto +tanto +solo +grandi +viva +artigiani +italiani +difenderemo +ogni +mezzo +interessi +italiani +libici +comuni +proteggere +proprie +frontiere +esterne +disponibili +accogliere +fugge +realmente +guerra +guerra +scappano +diretta +ministero +interno +dichiarazioni +dopo +viaggio +libia +seguitemi +diretta +tripoli +conferenza +stampa +vicepremier +libico +ahmed +maitig +paesi +europei +francia +propongono +creazione +hotspots +accoglienza +italia +problema +libia +stessa +flussi +morte +verrebbero +altro +interrotti +invece +proposto +centri +accoglienza +posti +confini +sud +libia +evitare +tripoli +diventi +imbuto +italia +oggi +comuni +ballottaggio +conto +primagliitaliani +certe +navi +devono +scordare +italia +stop +business +immigrazione +clandestina +musica +cambiata +metto +tutta +ora +diretta +marina +pietrasanta +seguite +diretta +splendida +siena +ora +terni +ferma +perduto +amici +ecco +intervista +mattina +agorà +spiegato +lavorando +bloccare +immigrazione +clandestina +restituire +sicurezza +futuro +italiani +leggo +commenti +prossimi +giorni +libia +italia +dovrà +riprendere +ruolo +centrale +garantire +stabilità +tutta +area +offrendo +collaborazione +solo +tema +immigrazione +sviluppo +economico +quel +paese +riguardate +me +intervento +ieri +sera +vespa +spero +aver +portato +voce +tanti +italiani +scafisti +complici +italia +dice +stop +ridurre +partenze +morti +difendere +confini +italiani +vado +avanti +maxi +blitz +notte +carabinieri +opera +provincia +bergamo +trenta +immigrati +clandestini +molti +quali +precedenti +penali +spalle +stati +fermati +sempre +grazie +altro +forze +ordine +ora +italia +torni +moda +legalità +https +www +ecodibergamo +it +stories +bassa +bergamasca +maxi +blitz +carabinieri +zingoniaperquisiti +palazzi +anna +armi +dr +ragazze +ragazzi +bocca +lupo +maturità +po +invidio +potessi +tornerei +anni +manzoni +milano +italiano +latino +scritto +greco +storia +orale +finale +maturità2018 +diretta +amici +skuola +net +saluto +bocca +lupo +ragazzi +domani +iniziano +esami +maturità +ricordando +notteprimadegliesami +fino +scorsa +settimana +nessuno +filava +andava +cappello +mano +adesso +italia +torna +essere +paese +orgoglio +confini +dignità +primagliitaliani +ieri +sera +giletti +ricordato +prima +usavano +neppure +bisogno +parlarci +italia +davano +scontata +ora +musica +cambiata +capito +intenzione +fermarmi +salvini +mussolini +dice +andare +africa +costruire +case +manca +solo +canti +faccetta +nera +offese +vicesindaco +buonista +valencia +rispondo +bel +bacione😘 +ieri +sera +sondrio +spettacolo +forza +domenica +ballottaggi +dobbiamo +portare +buongoverno +ancora +tanti +comuni +bastano +minuti +tempo +scegliere +sindaci +sostenuti +lega +primagliitaliani +renzi +dà +bullo” +nulla +rispondere +già +risposto +italiani +mandandolo +casa +diretta +cinisello +balsamo +milano +domenicavotolega +odio +lega +apriamo +porti +mandiamo +via +salvini +odiamo +nessuno +mandiamo +😘 +pontida +vera +fatta +solo +sorrisi +speranza +futuro +appuntamento +domeniche +1° +luglio +aspetto +mare +aquarius +approda +spagna +prima +volta +nave +partita +libia +destinata +italia +attracca +paese +diverso +segno +qualcosa +cambiando +piú +zerbini +europa +ultima +tappa +giornata +ivrea +torino +orbassano +torino +grazie +amici +conto +domenica +giugno +ultimo +sforzo +portare +centinaia +comuni +italiani +buon +governo +lega +live +genova +intervista +ieri +sera +radio +matrix +seguite +commentate +minuto +parola +verità +spero +nome +bambini +morti +bestie +mar +mediterraneo +schifoso +business +immigrazione +mai +taciuto +tacerò +adesso +ecco +intervento +sera +gruber +la7 +linea +dura +solo +buonsenso +dovere +garantire +sicurezza +milioni +italiani +condividete +gino +strada +salvini +ministro +razzista +sbirro” +senza +parole +stop +trafficanti +esseri +umani +difendiamo +confini +mollo +amici +chiudiamoiporti +soli +giorni +governo +lavorando +recuperare +quasi +anni +ritardi +buonismo +obiettivo +ridurre +sbarchi +aumentare +espulsioni +tagliare +costi +mantenimento +altro +presunti +profughi +tempi +permanenza +italia +coinvolgendo +istituzioni +europee +internazionali +fino +oggi +lasciato +italiani +soli +sapremo +farci +ascoltare +pensiero +valsusini +bussoleno +vivendo +ore +difficili +grazie +vigilidelfuoco +coloro +impegnati +soccorso +confcommercio2018 +produce +resiste +commercianti +partite +iva +imprese +bisogno +pace +fiscale +flat +tax +eliminazione +spesometri +redditometri +studi +settore +burocrazia +impegno +governogialloblu +linea +azione +ministro +aumentare +numero +centri +rimpatri +modo +immigrati +dentro +girino +città +confusione +ridurre +numero +sbarchi +aumentare +numero +espulsioni +immigrati +regolari +nulla +temere +sembra +solo +buonsenso +brindisi +lega +spettacolo +domenicavotolega +incredibile +giornalisti +italiani +riescano +inventarsi +bugie +mattina +sera +ecco +intervista +dico +chiaramente +obiettivo +paghino +meno +tasse +ascoltate +aiutatemi +diffondere +possibile +venditori +aggrediscono +carabinieri +durante +controllo +mandano +ospedale +invio +tutta +solidarietà +auguri +buona +guarigione +serve +tolleranzazero +espulsioni +clandestini +restituzione +città +clima +legalità +obiettivo +clandestini +devono +tener +presente +italia +pacchia +solo +finita +stra +finita +ancora +pace +fiscale +flat +tax +tutela +agricoltura +pesca +turismo +segno +made +italy +stop +altro +aumenti +iva +no +ius +soli +difesa +lavoro +pensioni +sicurezza +rispetto +comincia +bella +avventura +gente +perbene +motivata +onesta +pulita +concreta +comincia +rivoluzione +buonsenso +primagliitaliani +pronto +settimana +prossima +prendere +aereo +incontrare +ministro +interno +tunisino +obiettivo +salvare +vite +sì +ognuno +meglio +casa +diritto +vivere +crescere +metter +famiglia +paese +nati +sbaglio +live +roma +grande +mario +giordano +pochi +giornalisti +liberi +rosiconiasinistra +volte +cose +improvvisate +belle +me +migliori +sondaggi +grazie +catania +domenicavotolega +nuovo +treviso +sostenere +candidato +sindaco +lega +mario +conte +10giugnovotolega +live +momento +foto +rito +diretta +quirinale +state +diretta +quirinale +ecco +altra +inquadratura +ultime +ore +lavoro +governo +mettendo +tutta +intanto +cronaca +riporta +dura +realtà +immigrato +spenna +piccioni +pieno +giorno +mezzo +strada +casa +ieri +sera +la7 +mollo +dite +andato +sestri +levante +live +massa +emozionato +grazie +massa +ancora +live +pisa +live +siena +ragazzi +molliamo +primagliitaliani +italia +sotto +attacco +insiemesultetto +mattina +parlato +rai +radio +dite +andato +leggo +commenti +bambino +poteri +forti +vince +bambino +iostoconfabio +amici +stasera +impegni +aspetto +canale +matrix +nicola +porro +live +roma +live +brutta +giornata +italia +democrazia +pronto +pronto +occuparmi +immigrazione +sicurezza +niente +qualcuno +oggi +detto +no +governo +cambiamento +poteva +altro +nascere +signori +spread +banche +ministri +berlino +parigi +bruxelles +accordo +rabbia +tanta +paura +zero +cambieremo +paese +insieme +mollo +amici +conto +prima +italiani +grazie +terni +terni +seguite +live +altra +festa +lega +ora +dalmine +sempre +provincia +bergamo +😀 +amici +ripropongo +intervento +oggi +dopo +incontro +professor +conte +vorrei +italia +torni +contare +europa +mondo +insieme +può +rimanete +sintonizzati +dopo +colloquio +professor +conte +aggiorno +qualche +minuto +parlare +insiemesultetto +semplicemente +disumano +colorno +parma +maestre +state +arrestate +accusa +aver +picchiato +maltrattato +bimbi +anni +difendere +può +difendere +bambini +disabili +anziani +ogni +mezzo +possibile +telecamere +comprese +ossessione +salvini +legge +fornero +dice +ancora +coraggio +parlare +pontificare +ossessionati +milioni +italiani +legge +rovinato +vita +daranno +possibilità +subito +stopfornero +fatto +lavoro +sforzi +possibili +pronti +tempo +perdere +cambia +italia +vota +intervento +oggi +quirinale +parlato +testa +cuore +ministri +francesi +occupino +francia +italia +pensiamo +mettano +anima +pace +contrario +fatto +governi +precedenti +sbaglio +andiamoagovernare +orrore +roma +caricata +forza +auto +picchiata +stuprata +branco +sentito +qualche +commento +femministe +casa +vorrei +lavorare +italia +delinquenti +paura +stranieri +vengano +espulsi +marciscano +paese +roba +matti +vogliono +reddito +accoglienza +grido +stop +salvini +dico +stop +clandestini +tutta +africa +italia +spero +potermi +mettere +presto +lavoro +cominciare +rimediare +disastri +pd +immigrazione +rivoluzionedelbuonsenso +andiamoagovernare +provano +fermarci +soliti +ricatti +spread +sale +borse +scendono +minacce +europee +stavolta +cambia +lavoro +meno +clandestini +sicurezza +meno +tasse +primagliitaliani +minacce +insulti +ricatti +spaventano +danno +forza +prima +italiani +cambia +vota +bloccano +traffico +pretendono +cibo +buono +migliori +condizioni +vita +carta +identità +lavoro +altro +governi +tecnici +neutrali +serve +governo +forte +espellere +signori +esponenti +clan +nomadi +stanziali +roma +picchiano +sangue +ragazza +disabile +poi +barista +distruggono +locale +solo +parole +vergogna +schifo +tolleranzazero +criminali +stufo +smettono +litigare +fare +governo +mantenere +impegni +presi +italiani +immigrazione +lavoro +tasse +sicurezza +oppure +meglio +tornare +chiedere +fiducia +direttamente +basta +perdere +tempo +cambia +vota +dichiarazioni +mattina +quirinale +grazie +ascolto +supporto +amici +quirinale +rimanete +collegati +uscita +colloquio +presidente +repubblica +dico +com +andata +confermo +chiamate +medico +pdclandestino +primagliitaliani +qualche +minuto +insieme +seguite +ecco +cosa +detto +sera +tg +mentana +la7 +ascoltate +datemi +parere +amici +me +palco +ieri +sera +sergio +bramini +imprenditore +fallito +causa +stato +ladro +pagato +milioni +crediti +ora +rischia +sfratto +vergogna +vedo +ora +riportare +po +normalità +paese +pronto +primagliitaliani +sergio +cerco +venire +presto +trovarti +marea +udine +grazie +ricomincia +invasione +persone +sbarcate +sole +ore +italia +bisogno +governo +serio +coerente +sbaglio +smettono +litigare +poltrone +pronto +stopinvasione +programmi +differenza +altri +cambiano +seconda +convenienze +ridurre +tasse +tagliare +po +burocrazia +mandare +pensione +persone +dopo +anni +lavoro +me +rimangono +altro +priorità +domenica +ogni +voto +lega +serve +vincere +friuli +venezia +giulia +vincere +tutta +italia +domenicavotolega +fedrigapresidente +buongiorno +gradisca +isonzo +gorizia +presunti +profughi +cominciando +ennesima +giornata +giochi +bici +tempo +libero +tanto +pagano +italiani +tuttiacasa +ascoltate +luca +zaia +miglior +governatore +italia +domenica +friuli +venezia +giulia +voto +lega +fedriga +presidente +vince +futuro +vince +friuli +venezia +giulia +vince +italia +andiamoagovernare +coerenza +idee +chiare +domenica +ogni +voto +lega +friuli +venezia +giulia +mandare +casa +pd +sinistra +portare +regione +modello +buongoverno +conto +domenicavotolega +fedrigapresidente +tolmezzo +udine +piccolo +supermercato +spettacolari +prodotti +locali +altro +megacentri +commerciali +difendiamo +valorizziamo +ricchezze +cultura +sapori +tradizioni +mercato +tolmezzo +buongiorno +amici +trieste +seguite +grazie +isernia +molise +esiste +eccome +sorrisi +abbracci +splendida +accoglienza +capire +domani +giorno +importante +molise +lega +ora +tocca +⚪️🔴 +domenicavotolega +minuti +ripropongo +intervista +ieri +sera +debbio +rete +leggo +commenti +isernia +spettacolo +incontro +roma +presidente +casellati +rimanete +collegati +uscita +dico +com +andata +numeri +imposti +europa +me +viene +prima +benessere +italiani +chiedo +troppo +primagliitaliani +maledetti +fa +picchiare +anziani +indifesi +telecamere +asili +case +riposo +punizioni +severe +vigliacchi +record +ascolti +ieri +sera +la7 +ripropongo +intervista +commento +libero +andiamoagovernare +molise +fretta +italia +fretta +minuti +principio +sempre +testa +primagliitaliani +domenicavotolega +giornata +molise +conclude +campobasso +sala +strapiena +tanta +gente +perbene +piazza +strapiena +montenero +bisaccia +molise +diretta +villaggio +ospitò +terremotati +san +giuliano +puglia +molise +sinistra +vuole +trasformare +nuovo +centro +immigrati +lega +dice +no +sondaggi +preferisco +qualche +minuto +insieme +bombe +litigi +arroganza +polemiche +perdite +tempo +costruisce +niente +andiamoagovernare +pronto +servizio +sconvolgente +dovrebbero +guardare +attenzione +vorrebbero +ingresso +turchia +europa +intervento +mattina +rai +radio +ascoltate +commentate +ora +quirinale +nuovo +incontro +presidente +repubblica +rimanete +sintonizzati +qualche +minuto +insieme +certezza +missili +bombe +risolveranno +nessun +problema +anzi +porteranno +altra +morte +disperazione +fermatevi +ieri +incontrato +roberto +vivo +vincitori +settimanali +vinci +salvini” +vinto +caffè +visto +orario +optato +spritz +😄 +brugnera +pordenone +spettacolooo +29aprile +fedrigapresidente +spilimbergo +massimiliano +fedriga +ora +treviso +seguite +minuti +ecco +intervento +oggi +dopo +incontro +presidente +mattarella +leggo +volentieri +commenti +anni +goldrake +guardava +alabarda +spazialeee +😀 +servizio +dovrebbero +guardare +sempre +convinto +italia +serva +ministero +dedicato +disabili +pensi +famigliari +assistono +amore +sacrificio +pochissimo +aiuto +recenti +soddisfazioni +aver +incontrato +settimana +scorsa +isernia +ragazzo +anni +intervistato +servizio +conosciuto +facebook +venuto +ascoltarmi +altro +grazie +aprile +vota +regionali +molise +tornerò +prestissimo +aspetto +grande +risultato +lega +centrodestra +primagliitaliani +qualche +minuto +insieme +stati +protagonisti +rivoluzione +grazie +me +grande +orgoglio +grande +responsabilità +meno +tasse +soldi +tasche +imprenditori +lavoratori +economia +paese +riparte +lavorando +giorno +dopo +giorno +rendere +ciò +possibile +primagliitaliani +primaillavoro +sala +strapiena +isernia +molise +seguite +grazie +viterbo +lega +primagliitaliani +europa +danneggiando +paese +ricostruita +base +interessi +popoli +europei +vogliamo +mantenere +coerenza +reputiamo +fondamentale +futuro +paese +altro +possiamo +pensare +governare +costringendoci +rispettare +parametro +massimiliano +fedriga +deputato +lega +salvini +premier +facciamosquadra +andiamoagovernare +cancellare +legge +fornero +ridurre +tasse +espellere +criminali +clandestini +programma +chiaro +vedo +ora +passare +parole +fatti +rispettando +fiducia +milioni +italiani +deciso +scegliere +lega +andiamoagovernare +fare +vittima +mestiere +amici +ascoltate +folli +parole +barbara +balzerani +ex +brigatista +componente +gruppo +criminale +ucciso +agenti +scorta +sequestrato +giustiziato +moro +mai +pentita +né +dissociata +vergogna +ascoltate +massimo +giletti +giornalista +schiena +dritta +coraggio +proprie +idee +francia +basilica +invasa +reclamare +diritti +clandestini +roba +matti +europa +vogliamo +lasciare +figli +udine +qualche +minuto +insieme +ieri +canale +record +ascolti +grazie +fiducia +dimostrate +metterò +tutta +poco +diretta +canale +parlare +grazie +amici +calabresi +fiducia +ricompensa +migliore +metterò +tutta +dare +paese +governo +possa +restituire +milano +rosarno +futuro +figli +qua +altra +parte +mondo +andiamoagovernare +oggi +pomeriggio +lamezia +terme +catanzaro +dire +ancora +volta +grazie” +calabria +regalato +emozione +incredibile +grande +responsabilità +voglio +ridare +dignità +rispetto +splendida +terra +primagliitaliani +votato +lega +flat +tax +assurdo +avere +tassazione +veneto +puglia +imprenditori +scelto +lega +vogliono +concretezza +meno +tasse +zero +burocrazia +pace +fiscale +diceva +tassa +unica +ingiusta +poteri +forti +europei +vogliono +italia +debole +dobbiamo +rispondere +governo +forte +immigrazione +europa +legge +fornero +flat +tax +ecco +cosa +dobbiamo +lavorare +rilanciare +economia +altro +quindi +occupazione +italia +temi +lega +cercherà +maggioranza +parlamento +giancarlo +giorgetti +deputato +lega +salvini +premier +facciamosquadra +andiamoagovernare +ora +trento +seguite +primagliitaliani +primaillavoro +ora +diretta +san +giovanni +lupatoto +provincia +verona +prima +italiani +prima +lavoro +san +giovanni +lupatoto +verona +accoglienza +spettacolare +poco +live +pagina +primagliitaliani +rosicano +alcuni +giornalisti +sinistra +abbraccio +grazie +centinaia +ragazzi +ragazze +donne +uomini +ultimi +anni +partecipato +scuola +formazione +politica +esperienza +tanti +invidiano +altro +punto +incontro +confronto +mai +banale +idee +diverse +continuiamo +cosí +andiamoagovernare +iscrizioni +http +www +scuoladiformazionepolitica +it +scuola +formazione +politica +diretta +strasburgo +milano +ultima +giornata +scuola +politica +centinaia +ragazzi +ragazze +dedicato +tempo +energia +lavoro +futuro +paese +state +andiamoagovernare +modo +migliore +festeggiare +compleanno +😀 +live +milano +state +milano +incontro +nuovi +parlamentari +lega +ora +mercato +milano +lega +sempre +mezzo +gente +prima +dopo +elezioni +abbraccio +tutte +amiche +comunità +tutta +italia +gioia +emozione +orgoglio +grazie +italia +torna +avere +futuro +ascoltare +verona +cibo +signorini +fa +schifo +ringraziare +bloccano +traffico +buttando +cassonetti +strada +insulto +italiani +difficoltà +oggi +cambia +musica +oggivotolega +stopinvasione +primagliitaliani +pazzesco +spero +cittadino +rumeno +anni +capiti +mai +mani +figli +nipoti +anziane +prendeva +pugni +scopo +rapina +verme +schifoso +grazie +polizia +stato +milano +spero +marcisca +galera +altro +indulti +oggivotolega +📌buonsenso +spalancare +porte +università +merito +raccomandazioni +usa +buonsenso +scegli +chiarezza +vota +futuro +☑ +domenicavotolega +ora +mai +stopinvasione +oggivotolega +oggi +scelta +vita +prossimi +anni +scegli +rivoluzione +buonsenso +scegli +prima +italiani +oggi +vota +lega +basta +x +simbolo +oggivotolega +tempo +solo +oggi +fino +treno +passa +📌buonsenso +garantire +energia +pulita +meno +costosa +paese +usa +buonsenso +scegli +chiarezza +vota +futuro +☑ +domenicavotolega +luca +qualcosa +dirvi +intervista +doppia +domani +usa +buonsenso +usa +cuore +domenicavotolega +soltanto +mille +emozioni +regalato +mesi +grazie +domani +andiamo +vincere +4marzovotolega +andiamoagovernare +minuti +video +visto +già +quasi +milione +persone +capirete +dopo +anni +ricerche +studi +approfonditi +tassa +unica +unica +rivoluzione +fiscale +possibile +seria +cifre +mano +governo +salvini +ripartire +economia +paese +📌non +buonsenso +stato +garantisca +euro +mese +disabile +euro +mese +cooperativa +fa +soldi +immigrati +usa +buonsenso +scegli +chiarezza +vota +futuro +☑ +domenicavotolega +📌buonsenso +investire +bellezze +italiane +usa +buonsenso +scegli +chiarezza +vota +futuro +☑ +domenicavotolega +mamma +foto +quando +bimbo +😁 +fatto +migliaia +chilometri +incontrato +migliaia +persone +toccato +mano +problemi +ascoltato +spiegato +progetto +lega +idee +chiare +altro +mettendoci +ora +tocca +campagna +elettorale +finisce +domenica +parlate +chiamate +convincete +aprite +agende +via +sms +via +whatsapp +via +facebook +via +telefono +domenica +treno +passa +credo +insieme +può +vinciamo +domenicavotolega +primagliitaliani +buonasera +amici +seguite +assieme +me +intervista +ieri +sera +maurizio +belpietro +rete +piaciuto +voglia +verso +saluto +la7 +mentana +domenicavotolega +idioti +vinciamo +stesso +preoccupatevi +😃 +dopo +comizi +tutta +italia +chili +meno +stanco +felice +chiudo +tour +milano +ripropongo +interviste +tg5 +studio +aperto +accise +benzina +ministero +disabili +scuola +sicurezza +tanto +altro +promessa +domenica +sceglie +lega +sceglie +chiarezza +altro +coraggio +onestà +quindi +mai +renzi +maio +boldrini +marzo +paese +governeremo +centrodestra +date +mano +diffondere +domenicavotolega +ieri +sera +porta +porta +giulia +bongiorno +orgoglioso +averla +squadra +battaglie +sicurezza +legalità +legittima +difesa +difesa +diritti +libertà +donne +amici +domenica +vicina +bisogno +domenicavotolega +impegno +fattibile +governo +salvini +pagheremo +benzina +cara +europa +domenicavotolega +esodati +precari +cassaintegrati +normale +avere +italiani +serie +b +marzo +lega +governo +ultimi +primi +primagliitaliani +video +vedere +rivedere +diffondere +geniali +minuti +immigrazione +massa +potrà +mai +essere +soluzione +povertà +mondo +dite +capiranno +certi +buonisti +casa +altro +vorrebbero +accogliere +italia +tutta +africa +compresi +5stelle +europa +difendono +immigrati +climatici +stopinvasione +domenicavotolega +consiglio +intervista +ieri +sera +gruber +dite +difeso +bene +vinciamo +domenicavotolega +❌❌❌ +tagliamo +pagheremo +tasse +alte +europa +benzina +accise +anni +fa +governo +salvini +aiutami +condividere +ovunque +domenicavotolega +rimasto +solo +impaurito +canile +dopo +morte +padrona +golden +retriever +stato +adottato +responsabile +rifugio +via +casa +cane +decide +ringraziarla +così +fa +amare +animali +saluto +teatro +nuovo +torino +ascoltate +datemi +mano +condividere +live +primagliitaliani +domenicavotolega +🔴pazzesco +ecco +palermo +pd +solidarietà +brumotti +troupe +aggrediti +selvaggiamente +lanci +massi +enormi +quartiere +spaccio +palermo +vedo +ora +mandare +casa +renzi +fare +po +pulizia +paese +domenicavotolega +secondi +vota +domenica +solo +croce +simbolo +lega +senza +scrivere +altro +⚠ +fate +girare +ovunque +andiamo +vincere +✔ +domenicavotolega +roma +tor +bella +monaca +parco +buco +regno +spacciatori +firenze +state +pronti +domenica +renziacasa +4marzovotolega +coerenti +sempre +immigrazione +legge +fornero +fino +tutela +made +italy +anni +lega +sempre +stata +coerente +italiani +differenza +altri +aiuto +altro +marzo +governo +salvini +potrà +finalmente +passare +parole +fatti +prendendo +mano +milioni +italiani +restituendo +insieme +dignità +serenità +paese +bello +mondo +date +mano +4marzovotolega +primagliitaliani +sento +tanta +voglia +cambiamento +concretezza +piazze +trovo +affetto +fiducia +milioni +italiani +mai +votato +adesso +credono +programma +vedo +ora +arrivi +marzo +dimostrare +lega +passerà +parole +fatti +4marzovotolega +mattina +rtl +intervista +piaciuta +molto +datemi +parere +domenicavotolega +coerenza +onestà +altruismo +valori +portanti +governo +salvini +marzo +porte +primagliitaliani +4marzovotolega +oggi +davanti +tantissimi +abruzzesi +ribadito +rivoluzione +buonsenso +vota +lega +sceglie +prima +italiani +4marzovotolega +messaggio +te +🔵stop +stato +ladro +4marzovotolega +vedo +ora +tornare +massimo +giletti +presidente +consiglio +spiegare +passato +parole +fatti +pronto +4marzovotolega +consiglio +minuti +stamattina +rai +aria +ottima +prossimi +giorni +decisivi +date +mano +condividere +possibile +4marzovotolega +piazza +duomo +milano +strapiena +censurata +tigí +date +mano +farlo +girare +ovunque +rete +primagliitaliani +4marzovotolega +emozioni +irripetibili +quando +popolo +cammino +ferma +nessuno +voglio +bene +primagliitaliani +grazieeeeee +primagliitaliani +milano +state +mare +primagliitaliani +milano +verso +piazza +duomo +seguiteci +live +primagliitaliani +oggi +grande +giorno +uscendo +sole +aspetto +piazza +duomo +milano +spegnete +computer +oggi +sceglie +vita +reale +sceglie +lega +sceglie +prima +italiani +domani +milano +messaggio +te +svuotacarceri +indulti +sconti +pena +no +buonsenso +garantire +certezza +pena +4marzovotolega +ecco +video +vedrete +nessuna +tv +ascoltare +approfondire +grazie +matteo +montevecchi +facciamolo +girare +rete +impegno +concreto +governo +salvini +primo +governo +italiano +attivare +dedicare +ministero +occupi +disabili +diritti +problemi +4marzovotolega +pioggia +ferma +pisa +ieri +juncker +sobrio +presidente +commissione +europea +detto +dopo +elezioni +cataclismi +invasioni +cavallette +spread +crollo +mercati +risiamo +pretenderebbe +comandare +italiani +🔵c +messaggio +te +buonsenso +difendere +agricoltura +pesca +italiana +tutelando +made +italy +italia +soprattutto +europa +primagliitaliani +4marzovotolega +sala +strapiena +tanto +entusiasmo +caserta +primagliitaliani +grazie +bologna +tanta +gente +dice +sì +te +fido +me +ricompensa +migliore +4marzovotolega +chiedere +europa +coniglio +gabbia +faine +chiede +faine +finanziatori +netti +ue +moneta +sbagliata +danneggia +mercato +possiamo +altro +sforare +aiutare +terremotati +paesi +ue +vantaggi +svantaggi +mentre +italia +solo +svantaggi +claudio +borghi +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +picchiato +genitore +alunno +viene +sottoposto +provvedimento +disciplinare +roba +matti +prof +girare +almeno +rete +testimonianza +buona +scuola +renzi +pd +presto +solo +brutto +ricordo +messaggio +te +buonsenso +garantire +bimbo +stesso +insegnante +anni +primagliitaliani +4marzovotolega +pioggia +ferma +ora +sassuolo +provincia +modena +🔵buonsenso +tassa +unica +famiglie +imprese +pagare +meno +pagare +italia +riparte +4marzovotolega +sabato +milano +spaccio +aggressioni +accoltellamenti +porto +condominio +errenord +modena +primagliitaliani +mercato +modena +oggi +vieni +pagato +euro +ora +osi +mangiare +caramella +lavoro +vieni +punito +stato +stato +dissolvendo +fronte +multinazionali +pieno +potere +diritti +altro +lavoratori +sempre +casi +salari +fame +condizioni +lavoro +vergognose +ispettorati +lavoro +lega +governo +inseriremo +salario +orario +minimo +stabilito +legge +restituendo +dignità +lavoratori +armando +siri +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +oggi +udine +tantissimi +nonostante +freddo +ovunque +vada +trovo +tanto +entusiasmo +dà +carica +incredibile +4marzovotolega +orrore +mancavano +purtroppo +molestie +violenze +verso +bimbi +scuole +normali +adesso +scuole +islamiche +illegali +cosa +vergognosa +nessuno +genitori +altro +piccole +vittime +coraggio +denunciare +genitori +integrazione +può +essere +riconosci +cultura +leggi +paese +ospita +4marzovotolega +valido +solo +estero +passaparola +solo +vota +estero +diverso +sistema +elettorale +centrodestra +simbolo +unico +scopri +votare +candidati +specifici +lega +altro +link +fac +simile +nomi +nomi +www +salvinipremier +it +votoestero +dubbi +segnalazioni +ritardi +irregolarità +scrivete +email +leganelmondo +gmail +com +● +vota +iscritti +aire +coloro +temporaneamente +estero +fatto +richiesta +entro +gennaio +● +vota +via +posta +plico +elettorale +ricevuto +casa +consolato +ambasciata +● +quando +vota +febbraio +entro +febbraio +ricevuto +plico +potete +chiedere +duplicato +recandovi +consolato +● +entro +1° +marzo +ore +deve +arrivare +plico +elettorale +schede +votate +oltre +tale +termine +buste +distrutte +geniale +video +pagina +socio +aci +😅 +triste +prende +troppo +serio +sorridiamo +intanto +sapete +già +quasi +mila +iscritti +vinci +salvini +pazzesco +oggi +altro +modo +altro +vincere +invitare +amico +iscriversi +basta +andare +www +salvinipremier +it +invita +passaparola +oggi +vinciamo +rete +marzo +vinciamo +elezioni +signor +calenda +dovrebbe +vergognare +parole +usa +verso +lega +fortuna +marzo +arriverà +presto +🔴condividi +nessun +tg +mostrerà +dati +minuti +nicola +molteni +dimostra +numeri +mano +invasione +subìto +governi +letta +renzi +gentiloni +manca +poco +amici +marzo +cambia +musica +stopinvasione +primagliitaliani +ieri +sera +rai +ricordato +qualcuno +entra +casa +cattive +intenzioni +devo +avere +diritto +difendermi +sempre +comunque +pare +solo +buonsenso +sbaglio +dopo +tour +sicilia +calabria +basilicata +puglia +molise +lazio +eccomi +nuovo +milano +mercato +piazzale +lagosta +ascoltare +marzo +tanto +fare +assicuro +metterò +tutta +dimostrare +essermi +meritato +fiducia +4marzovotolega +gente +latina +primagliitaliani +ora +latina +spettacolooo +primagliitaliani +lascio +renzi +insulti +lascio +maio +scontrini +preferisco +occuparmi +problemi +reali +primagliitaliani +difendi +casa +oggi +vieni +subito +indagato +marzo +governo +salvini +ribalterà +ingiustiza +oggi +difendi +vieni +automaticamente +indagato +magari +processato +solo +riesci +altro +provarlo +prosciolto +processo +deve +essere +ribaltato +cittadino +deve +essere +indagato +meno +indizi +evidenti +dimostrino +tratti +omicidio +legittima +difesa +claudio +borghi +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +secondo +grasso +italia +stranieri +pagano +130mila +miliardi +tasse +doppio +pil +mondiale +fate +presidente +senato +piace +date +mano +sapere +sabato +febbraio +milano +ore +piazza +duomo +storia +ora +mai +primaglitaliani +follia +italia +pd +clandestini +vengono +ospitati +hotel +stelle +presto +brutto +ricordo +4marzovotolega +dazi +proteggono +economia +arance +marocchine +olio +tunisino +invadono +mercati +senza +controlli +danneggiando +commercio +salute +italiani +italia +gioca +mercati +regole +altro +diverse +agricoltori +italiani +devono +rispettare +tantissime +regole +europee +aumentano +costo +prodotti +mentre +tunisia +marocco +cambogia +arrivano +prodotti +incontrollati +sottocosto +combattere +concorrenza +sleale +dazi +tutelando +economia +armando +siri +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +⚠️roba +matti +pd +trasformato +italia +grande +campo +finti +profughi +pretendono +permesso +soggiorno +subito +scappa +davvero +guerra +portando +rispetto +italiani +fratello +altri +posto +marzo +vicino +ora +messina +vergognoso +minacciata +insultata +centri +sociali +pd +detto +me +meritavo +bologna +centri +sociali +fatto +irruzione +consiglio +comunale +minacciarmi +insultarmi +altro +pesantemente +nessuna +solidarietà +sinistra +anzi +capogruppo +pd +detto +semina +odio +raccoglie +tempesta +vergogna +lucia +borgonzoni +candidata +lega +salvini +premier +facciamosquadra +andiamoagovernare +ieri +record +ascolti +la7 +ve +perso +direi +vale +pena +auguro +onorevole +boldrini +raccogliere +elezioni +seminato +commento +libero +educato +dà +fastidio +essere +definiti +risorse +salviniane” +grande +unico +fabrizio +volta +dico +grazie +rai +fa +mandare +via +documenti +chiede +onorevole +boldrini +lascio +rispondere +glielo +dirò +persona +sera +gruber +ore +la7 +stopinvasione +4marzovotolega +cancro +forza +nadia +donna +coraggiosa +minuti +guardate +cosa +chiesto +mattina +pubblico +studio +canale +avanti +tutta +marzo +vicino +aria +buona +serve +aiuto +girare +4marzovotolega +immigrati +protestano +vogliono +vedere +partite +sky +tanto +pagano +italiani +provincia +verona +pazzesco +struttura +gestita +cooperativa +versoprobo +fattura +milioni +euro +tutta +italia +grazie +business +immigrazione +tuttiacasa +1⃣ +donna +vale +meno +uomo +2⃣ +giustizia +islamica +prevale +giustizia +nazionale +3⃣ +libertà +parola +vincolata +dichiara +corano +dico +soprattutto +papà +guardando +futuro +figli +diritto +chiedermi +islam +incompatibile +valori +libertà +motel +4stelle +novi +ligure +alessandria +parte +operai +ilva +combattono +difendere +posto +lavoro +altra +immigrati +pisolino +spese +italiani +ieri +sera +rai +spiegato +idee +chiare +passione +buonsenso +governeremo +italia +4marzovotolega +difendiamo +confini +ora +ventimiglia +piazza +albenga +stanco +insulti +signor +calenda +ecco +replicato +fatto +bene +fortuna +lavoratori +signore +ministro +ancora +poco +ultima +tappa +oggi +abruzzo +prima +italiani +rivoluzione +buonsenso +girare +4marzovotolega +ora +firenze +alberto +bagnai +claudio +borghi +mentre +migliaia +cittadini +riuniti +catania +tradizionale +festa +sant +agata +alcuni +immigrati +grandi +lavoratori +ramo +lavavetri +accattonaggio +prendono +sprangate +mezzo +strada +altro +secondo +normale +sogno +paese +tranquillo +rispettano +ordine +regole +chiedo +troppo +4marzovotolega +sentite +cosa +dice +mauro +panettiere +ferrara +proposito +legge +fornero +sottoscrivo +parola +parola +4marzovotolega +migranti +climatici +lascio +vari +renzi +boldrini +bonino +me +vengono +prima +italiani +andiamoagovernare +ora +cinisello +balsamo +legittima +difesa +violenza +donne +ecco +priorità +parlamentare +voglio +andare +senato +dare +voce +donne +vittime +violenze +parlamentari +possono +fare +tante +cose +altro +necessario +essere +ministri +quando +presidente +commissione +giustizia +ribadii +priorità +lotta +stalking +divenne +legge +poco +dopo +giulia +bongiorno +candidata +lega +salvini +premier +facciamosquadra +andiamoagovernare +aperti +confronto +sì +schiavi +no +governo +mai +servo +bruxelles +berlino +primagliitaliani +signore +accolto +onori +rappresenta +turchia +nega +sterminio +milione +mezzo +armeni +innocenti +donne +bambini +massacrati +islamici +primo +olocausto +storia +vergogna +ripropongo +intervista +mattina +la7 +leggo +commenti +facile +parlare +rimanendo +opposizione +dicendo +sempre +solo +no +vedo +ora +essere +messo +prova +paese +voglio +cambiare +centrodestra +può +governare +voto +lega +voto +coraggio +idee +chiare +futuro +4marzovotolega +roba +matti +secondo +esperto +economia +pd +tassa +unica +biglietto +bus +passerebbe +euro +governato +anni +portando +italia +povertà +assoluta +osano +ancora +parlare +casa +4marzovotolega +mezz +ora +intervento +venerdì +scorso +rete +governare +italia +serve +chiarezza +ascoltate +giudicate +4marzovotolega +🔵 +commercio +turismo +burocrazia +tasse +minuti +proposte +fare +ripartire +lavoro +aiutate +condividerle +4marzovotolega +oggi +candidati +lega +tutta +italia +solenne +impegno +primagliitaliani +4marzovotolega +ministro +martina +pd +creato +posti +lavoro +vivono +marte +voglio +italia +lavoratori +vengono +sfruttati +euro +ora +contratti +precari +bisogna +creare +posti +lavoro +veri +4marzovotolega +pace +fiscale +torni +respirare +vivere +4marzovotolega +sempre +bello +confrontarsi +potuto +farlo +direttore +redazione +stampa” +penso +stato +costruttivo +commentate +mercato +bonola +milano +difendere +confini +espellere +clandestini +stopinvasione +4marzovotolega +furti +aggressioni +roghi +tossici +torino +campo +rom +stelle +risposta +ruspa +voglio +figli +crescano +latte +riso +olio +arance +pomodori +italiani +sinistra +svenduto +aziende +italiane +multinazionali +invece +ritengo +difendere +prodotti +dovere +primagliitaliani +davanti +ex +sede +banca +etruria +arezzo +basta +pd +governeremo +italia +testa +soprattutto +cuore +pronto +4marzovotolega +secondo +solito +kompagno +portafoglio +destra +oliviero +toscani +immigrazione +clandestina +inarrestabile +grande +ricchezza +roba +matti +bravo +massimiliano +fedriga +riportato +po +buonsenso +studio +4marzovotolega +cancellazione +legge +fornero +asili +nido +gratis +fino +pace +fiscale +vota +lega +sceglie +concretezza +equità +buonsenso +4marzovotolega +notti +magiche +ricordando +nostalgia +quando +anni +buon +viaggio +azeglio +dialogo +può +avere +islam +salvini +governo +stop +ogni +presenza +islamica +irregolare +italia +apriamo +occhi +4marzovotolega +bella +intervista +commento +libero +vedo +ora +mandare +casa +kompagna +boldrini +amici +4marzovotolega +svenduto +italia +metà +aziende +ormai +mani +estere +cosa +portato +quindici +anni +lacrime +sangue +sacrifici +imposti +europa +italiani +disastro +riprendiamoci +paese +dico +primagliitaliani +considero +uomo +fortunato +trasformato +passione +lavoro +figli +stupendi +compagna +innamorato +penso +italia +meriti +riuscirci +amo +paese +ennesima +protesta +provincia +padova +soddisfatti +accoglienza +hotel +roba +matti +casa +4marzovotolega +🛑🛑🛑 +salvini +paura +salvini +spaventa +secondo +bonino +pericoloso +stimo +putin +orban +trump +pericolosi +italia +interessi +nazionali +vogliono +europa +unione +europea +distruggendo +patrimonio +culinario +italiano +esempio +bottiglie +olio +marchi +italiani +contengono +olio +tunisia +tuteliamo +cibo +altro +controlliamo +arriva +supermercati +rischiamo +rovinare +ricchezza +lucia +borgonzoni +facciamosquadra +andiamoagovernare +salvini +pensa +immigrati +italiani” +dice +compagna +boldrini +scherzi +parte” +4marzovotolega +boldriniacasa +prima +legge +governo +salvini +cancellerà +legge +fornero +discussione +aperta +possibile +4marzovotolega +video +agenzia +vista +europa +costretti +creare +milione +lavoratori +poveri +visti +risultati +vanterei +jobs +act +dati +occupazione +iniziare +campagna +elettorale +puntando +paura +altro +confronti +lega +follia +pura +mancanza +rispetto +confronti +cittadini +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +costituzione +italiana +dice +paese +repubblica +democratica +fondata +lavoro +libera +sovrana +folli +vincoli +europei +danneggiano +famiglie +imprese +uomo +governo +dovere +cambiarle +prima +viene +paese +primagliitaliani +4marzovotolega +difende +commette +reato +esercita +diritto +proposta +legge +legittimadifesa +vogliamo +cittadino +sappia +cosa +può +fare +cosa +può +fare +momento +altro +viene +aggredito +modo +tale +giudice +discrezionalità +ridotta +valutazione +proporzionalità +nicola +molteni +deputato +lega +salvini +premier +facciamosquadra +4marzovotolega +stabilimento +torinese +whirlpool +delocalizzerà +slovacchia +mandando +casa +centinaia +operai +italiani +bonino +capisce +bisogna +fermare +delocalizzazioni +soluzione +altropiù +europa +governo +salvini +prima +italiani +solo +slogan +sfida +grande +4marzovotolega +norma +anni +vedente +riceve +casa +busta +arancione +inps +andrà +pensione +febbraio +quando +anni +follia +via +legge +fornero +profondamente +ingiusta +sbagliata +rovinato +milioni +italiani +andiamoagovernare +4marzovotolega +modo +efficace +distruggere +europa +sostenere +europa +sbagliata +demonizzata +idea +stato +emette +moneta +possa +esercitare +propria +sovranità +momenti +emergenza +altro +finanziare +direttamente +investimenti +volta +inflazione +cifre +ora +deflazione +prof +alberto +bagnai +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +elezioni +vinci +riesci +trasmettere +fiducia +vorrà +testa +occhio +cuore +governare +paese +pronto +andiamoagovernare +ve +ricordate +gedorem +andreatta +albergatore +vicenza +soldi +ospitando +clandestini +verrà +candidato +parlamento +stelle +qualche +mese +fa +stato +quell +hotel +simpatica +conversazione +cognata +nonché +socia +albergatore +grillino +lascio +commenti +buongiorno +amici +ora +mercato +san +benedetto +cagliari +danneggia +risparmio +lavoro +famiglie +italiane +numerino +esiste +pronti +ridiscutere +trattati +europei +interesse +nazionale +italiani +fame +clandestini +hotel +stanco +quest +italia +contrario +primagliitaliani +4marzovotolega +niente +sconti +pena +stupri +uccidi +occorre +rivoluzione +culturale +problema +solo +napoli +baby +gang +esistono +tutt +italia +spesso +origine +famiglie +problematiche +altro +periferie +stato +totalmente +assente +grado +offrire +ragazzi +speranza +cambiare +propria +condizione +vita +lucia +borgonzoni +4marzovotolega +solo +italiani +immigrati +regolari +chiedono +regole +ordine +sicurezza +4marzovotolega +ieri +sera +vespa +maglia +operai +ideal +standard +roccasecca +pesce +terracina +vita +vera +ascoltare +gente +difendere +interessi +nazionali +italiani +daranno +voto +lega +passeremo +parole +fatti +governo +salvini +roma +mercato +tuscolano +iii +seguitemi +favorevole +regole +sanzioni +divieti +riscoperta +valori +suona +antico +no +suona +buono +orgoglioso +avere +squadra +avvocato +gulia +bongiorno +lega +forte +paese +cambiamo +andiamoagovernare +4marzovotolega +ecco +intervista +oggi +tg5 +solo +minuti +penso +essere +stato +chiaro +vedo +ora +arrivi +marzo +cominciare +fare +pronti +andiamoagovernare +ripropongo +intervista +ieri +sera +belpietro +rete +cifre +mano +natalità +italia +raggiunto +livello +basso +ultimi +anni +emergenza +occorre +intervenire +ogni +mezzo +possibile +prima +italiani +solo +slogan +ve +prometto +4marzovotolega +migrazioni +senza +rispetto +diventano +invasioni +italia +emergenza +catastrofica +anni +governo +letta +renzi +gentiloni +arrivati +italia +670mila +immigrati +stragrande +maggioranza +altro +clandestina +solo +rispettano +cultura +costano +pure +miliardi +euro +anno +giunto +momento +farla +finita +business +targato +pd +nuccio +altieri +deputato +lega +salvini +premier +facciamosquadra +andiamoagovernare +grillini +gettano +maschera +stipendio +immigrati +unione +europea +extra +voto +lega +follia +fermiamo +girare +4marzovotolega +primagliitaliani +litigavano +pagarci +pensioni +ogni +bottigliata +anno +contributi +stopinvasione +4marzovotolega +stanchi +ipocrisia +buonismo +imperanti +ascoltate +governo +salvini +inciuci +minestroni +governi +larghe +intese +mai +4marzovotolega +male +bloccano +strada +così +male +soluzione +semplice +rispedirli +casa +pdclandestino +4marzovotolega +attilio +fontana +proseguire +buongoverno +lega +lombardia +fontanapresidente +minuti +tempo +dedicare +video +capirete +dopo +anni +ricerche +studi +approfonditi +tassa +unica +unica +rivoluzione +fiscale +possibile +seria +cifre +mano +governo +salvini +ripartire +economia +paese +4marzovotolega +🚨🚨🚨 +vogliamo +residenza +vogliamo +residenza +accerchiano +comune +dipendenti +barricati +intervento +carabinieri +esino +lario +vicino +lecco +tipiche +facce +scappa +guerra +altro +residenza +governo +salvini +rispediamo +casa +4marzovotolega +ecco +compilation +migliori +perle +boldriniane” +arrivate +fine +video +capisco +prima +resto +mondo +sempre +prima +italiani +4marzovotolega +governo +salvini +pace +fiscale +stato +ladro +stato +amico +cartella +esattoriale +sotto +100mila +euro +paghi +importo +riprendi +respirare +vivere +lavorare +4marzovotolega +numeri +conti +spread +debito +subire +effetti +legge +fornero +milioni +italiane +italiani +carne +ossa +stati +rovinati +caduti +depressione +perso +casa +perso +lavoro +restituiremo +vita +dignità +stopfornero +ripropongo +intervento +radiofonico +mattina +rtl +leggo +commenti +ripropongo +intervento +ieri +sera +floris +sostegno +pubblico +dice +strada +giusta +sondaggi +preferisco +4marzovotolega +commento +libero +rispettoso +libero +tassa +unica +inversione +onere +prova +così +guarisce +italia +paese +malato +serve +aspirina +euro +cura +drastica +permetta +italiani +tornare +altro +consumare +quindi +aziende +produrre +serve +tassa +unica +prevediamo +inoltre +abolizione +onere +prova +fisco +può +avere +sempre +ragione +prescindere +armando +siri +facciamosquadra +andiamoagovernare +🔴🔴🔴pazzesco +milano +targata +pd +risorse +spacciano +cocaina +pieno +giorno +davanti +stazione +centrale +prendendo +sassate +brumotti +troupe +volta +tutta +altro +solidarietà +italia +mente +espulsione +immediata +delinquenti +senza +senza +4marzovotolega +ripropongo +intervista +mattina +radio +lombardia +elezioni +marzo +programma +governo +lega +secondo +stato +abbastanza +chiaro +riusciamo +pagare +gelo +luca +papà +figli +perso +lavoro +dopo +infarto +ora +riesce +pagare +bollette +casa +sbarca +domani +mattina +invece +pronta +comoda +sistemazione +hotel +primagliitaliani +4marzovotolega +open +society +foundation +george +soros +italia +guarda +caso +finanzia +decine +decine +onlus +principali +compiti +statutari +immigrazione +incontrollata +apertura +mercato +altro +droghe +ridiscussione +stereotipi +famiglia +generi +persona +pericolosa +blocchiamolo +prima +troppo +tardi +andiamoagovernare +4marzovotolega +insofferenti +cibo +protestano +vogliono +appartamenti +pieno +donne +bambini +vero +insulto +milioni +italiani +difficoltà +vedo +ora +rispedire +casa +soggiorna +gratis +paese +senza +averne +diritto +pretende +pretende +pretende +4marzovotolega +qualche +minuto +insieme +milano diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/renzi_comuni.html b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_comuni.html new file mode 100644 index 0000000..a097f1e --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/renzi_counter b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_counter new file mode 100644 index 0000000..793bb0d --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_counter @@ -0,0 +1 @@ +{"ancora": 45, "maltempo": 4, "crolli": 2, "ora": 29, "priorit\u00e0": 8, "aiutare": 6, "vive": 6, "aree": 1, "rischio": 4, "poi": 59, "governo": 145, "deve": 38, "ripristinare": 1, "subito": 21, "unita": 3, "missione": 7, "dissesto": 3, "sbloccare": 6, "cantieri": 11, "servono": 6, "commissari": 1, "chiacchiere": 4, "soldi": 21, "spendiamoli": 1, "italiashock": 6, "sole": 11, "ore": 31, "oggi": 221, "certifica": 1, "verit\u00e0": 24, "semplice": 13, "italia": 232, "davvero": 32, "sblocca": 2, "parte": 35, "mondo": 52, "intero": 5, "pronto": 6, "investire": 3, "ecco": 13, "viva": 80, "propone": 5, "sfida": 6, "posti": 28, "lavoro": 68, "fiducia": 12, "infrastrutture": 9, "cosa": 52, "aspettando": 2, "professore": 1, "italiano": 20, "latino": 1, "sostenitore": 1, "salvini": 180, "scrive": 5, "facebook": 17, "piazza": 11, "sardine": 1, "prender\u00e0": 1, "neppure": 1, "binocolo": 1, "certe": 3, "cose": 20, "studenti": 4, "pu\u00f2": 36, "definirsi": 1, "educatore": 1, "me": 55, "naturalmente": 9, "no": 44, "ascolto": 1, "francesco": 4, "gregori": 1, "dice": 45, "festa": 10, "foglio": 5, "manca": 1, "passato": 11, "cambia": 7, "bello": 18, "cambiare\u201d": 1, "messaggio": 3, "politicamente": 3, "forte": 14, "ottimismo": 1, "dobbiamo": 14, "dare": 21, "scossa": 1, "iniziare": 2, "quei": 12, "miliardi": 17, "gi\u00e0": 25, "stanziati": 1, "bloccati": 3, "burocrazia": 1, "nasce": 3, "shock": 4, "spenderli": 1, "ripartire": 7, "economia": 18, "stamani": 11, "stato": 56, "ospite": 8, "mattina": 6, "ve": 2, "persa": 2, "trovate": 6, "fate": 5, "sapere": 9, "andata": 4, "buona": 58, "giornata": 35, "\ud83d\ude0a": 4, "incontri": 3, "ravvicinati": 2, "terzo": 5, "tipo": 2, "studi": 2, "rai": 12, "prototipo": 1, "originale": 1, "et": 2, "maestro": 5, "rambaldi": 1, "invi\u00f2": 1, "spielberg": 1, "anno": 36, "prima": 71, "film": 7, "passati": 3, "quasi": 11, "anni": 91, "emozione": 8, "vedere": 17, "bimbetto": 1, "cinema": 4, "lacrime": 2, "ripropongo": 6, "intervista": 44, "porta": 21, "ieri": 53, "sera": 19, "leggo": 17, "volentieri": 9, "commenti": 25, "aspetto": 20, "stasera": 19, "bruno": 3, "vespa": 3, "capogruppo": 2, "lega": 27, "camera": 3, "molinari": 3, "condannato": 2, "peculato": 5, "assolto": 1, "cassazione": 5, "penso": 17, "debba": 5, "essere": 60, "garantisti": 4, "avversari": 12, "soprattutto": 26, "dovuto": 6, "subire": 1, "molti": 23, "attacchi": 4, "notizia": 27, "assoluzione": 1, "stessa": 10, "eco": 2, "indagine": 3, "condanna": 4, "trovo": 6, "dunque": 18, "altro": 315, "dovere": 8, "avversario": 6, "politico": 16, "riconoscere": 4, "pubblicamente": 3, "cittadino": 9, "innocente": 3, "media": 10, "dovrebbero": 2, "valorizzare": 2, "almeno": 10, "fatto": 98, "scontreremo": 1, "parlamento": 32, "correttezza": 1, "altrui": 2, "forma": 4, "onest\u00e0": 11, "intellettuale": 5, "raccontato": 4, "corriere": 15, "euro": 22, "fare": 82, "vera": 9, "paese": 72, "pronta": 3, "propria": 9, "fa": 106, "dicevo": 1, "recuperare": 1, "quell": 4, "errore": 9, "ripristini": 1, "unit\u00e0": 2, "idrogeologico": 2, "sblocchi": 1, "piano": 10, "iniziativa": 6, "prevista": 2, "pistoia": 2, "annullata": 1, "ondata": 1, "colpendo": 1, "tutta": 21, "toscana": 2, "stringiamo": 1, "popolazioni": 1, "momento": 13, "colpite": 1, "amministratori": 3, "impegnandosi": 1, "fronteggiare": 1, "conseguenze": 6, "scuso": 3, "viaggio": 7, "organizzato": 3, "rivedremo": 1, "fin": 6, "prossimi": 8, "giorni": 48, "insieme": 41, "abbraccio": 17, "teresa": 15, "bellanova": 9, "solo": 95, "palco": 2, "catania": 6, "segno": 4, "partito": 17, "fuoco": 9, "amico": 15, "rapporti": 5, "umani": 8, "valore": 4, "insostituibile": 1, "sorrisi": 2, "abbracci": 1, "politica": 86, "bellissima": 20, "atmosfera": 1, "sblocchiamo": 3, "diamo": 5, "sicilia": 4, "merita": 7, "cresce": 7, "giorno": 43, "dopo": 65, "diretta": 43, "lancio": 3, "italiaviva": 23, "pazzesco": 2, "cinquemila": 1, "persone": 58, "altezza": 3, "entusiasmo": 11, "poco": 19, "ettore": 1, "rosato": 1, "collegamento": 1, "aria": 5, "tira": 5, "myrta": 3, "merlino": 3, "spiegare": 6, "proposte": 18, "investimenti": 6, "rilanciare": 6, "ferma": 9, "modo": 24, "farla": 1, "opere": 4, "pubbliche": 2, "possono": 9, "finalmente": 19, "liberate": 1, "progetto": 9, "mano": 22, "farlo": 15, "conoscere": 13, "torino": 16, "buongiorno": 6, "langhe": 1, "vediamo": 17, "presentare": 5, "shockitalia": 1, "proposta": 10, "momenti": 2, "aprono": 2, "polemiche": 32, "venezia": 3, "sindaco": 24, "brugnaro": 1, "governatore": 1, "zaia": 1, "veneziani": 1, "tempo": 56, "uniti": 2, "rimediare": 3, "danni": 12, "serio": 14, "unisce": 1, "divide": 1, "felice": 14, "matera": 7, "vada": 10, "avanti": 18, "creduto": 5, "quando": 94, "credeva": 2, "nessuno": 24, "bravissimo": 2, "commissario": 1, "salvo": 2, "nastasi": 1, "bravo": 6, "ovviamente": 6, "stefano": 3, "boeri": 1, "bandi": 1, "internazionali": 6, "direzione": 1, "musei": 3, "nazionali": 2, "italiani": 60, "sovranisti": 11, "accusarono": 1, "voler": 1, "consegnare": 2, "patrimonio": 2, "culturale": 8, "stranieri": 2, "cultura": 34, "conosce": 4, "confini": 2, "n\u00e9": 1, "frontiere": 1, "continuiamo": 1, "pensare": 8, "ruoli": 2, "premiata": 1, "competenza": 5, "nazionalit\u00e0": 1, "orgogliosi": 7, "chiara": 6, "parisi": 1, "scelta": 19, "unanimit\u00e0": 1, "candidati": 1, "arrivati": 3, "dirigere": 1, "centre": 1, "pompidou": 1, "metz": 1, "francia": 11, "legge": 31, "bilancio": 16, "evitato": 2, "aumento": 25, "iva": 30, "sufficiente": 1, "serve": 13, "presenteremo": 3, "venerd\u00ec": 2, "stampa": 13, "ogni": 36, "settimana": 17, "scambio": 2, "qualche": 39, "opinione": 4, "migliaia": 13, "amici": 25, "via": 10, "email": 3, "enews": 6, "arrivano": 7, "quota": 12, "grazie": 94, "pazienza": 4, "condivisione": 1, "onore": 18, "popolo": 17, "curioso": 2, "attento": 1, "giorgetti": 2, "lancia": 2, "idea": 22, "scrivere": 4, "regole": 7, "gioco": 4, "sembra": 21, "saggia": 1, "intelligente": 3, "bella": 21, "mattinata": 3, "linkiesta": 2, "it": 10, "milano": 22, "video": 12, "completo": 2, "http": 8, "bit": 15, "renzilinkiesta": 1, "invece": 18, "resoconto": 1, "serata": 6, "festival": 5, "buon": 33, "sabato": 6, "trent": 1, "cadeva": 1, "muro": 2, "berlino": 1, "ricordo": 11, "emozioni": 9, "immagini": 6, "fine": 20, "storia": 42, "inizio": 6, "diverso": 7, "abbattere": 2, "muri": 4, "costruire": 3, "ponti\u201d": 1, "giorgio": 1, "pira": 1, "chiacchierata": 4, "cappellini": 2, "repubblica": 17, "parlando": 8, "interessa": 5, "patto": 4, "politichese": 1, "maggioranza": 8, "concreto": 4, "italiana": 30, "ragazzino": 2, "nato": 5, "cresciuto": 1, "rapito": 1, "mamma": 8, "voleva": 5, "combattere": 14, "estremisti": 3, "islamici": 2, "terribile": 5, "croce": 5, "rossa": 3, "tornato": 3, "casa": 46, "spero": 10, "alvin": 1, "possa": 9, "crescere": 8, "diventando": 2, "presto": 5, "maurizio": 5, "lupi": 4, "ministro": 53, "giornali": 16, "pubblicarono": 1, "intercettazioni": 1, "gridarono": 1, "scandalo": 5, "totalmente": 1, "estraneo": 1, "vicenda": 12, "decise": 2, "dimettersi": 3, "stesso": 20, "assicurare": 1, "tranquillit\u00e0": 2, "famiglia": 22, "venne": 2, "gettata": 1, "tritacarne": 1, "mediatico": 3, "dissi": 1, "fiero": 5, "aver": 27, "lavorato": 4, "esprimevo": 1, "vicinanza": 1, "reso": 3, "giustizia": 23, "scopriamo": 3, "intercettato": 1, "aperta": 7, "allora": 21, "procura": 3, "firenze": 50, "finisce": 6, "archiviazione": 1, "troverete": 1, "evidenza": 1, "gazzettini": 1, "giustizialismo": 3, "talk": 4, "fabiola": 2, "gianotti": 1, "stata": 38, "rieletta": 1, "guida": 10, "cern": 1, "ginevra": 1, "fino": 17, "donna": 17, "rende": 6, "scienziata": 1, "modello": 6, "giovani": 11, "te": 9, "cara": 1, "ricerca": 4, "qualit\u00e0": 7, "scorsi": 2, "accusato": 5, "sfasciacarrozze": 1, "chiedevamo": 1, "cancellare": 2, "provvedimenti": 4, "sbagliati": 1, "tasse": 34, "auto": 13, "aziendali": 9, "adesso": 75, "misura": 9, "sbagliata": 3, "cancellata": 3, "potremmo": 2, "toglierci": 1, "tanti": 19, "sassolini": 1, "scarpe": 1, "chiedere": 12, "insultavano": 2, "nata": 4, "risolvere": 4, "problemi": 8, "possiamo": 13, "dire": 37, "tassa": 4, "cos\u00ec": 35, "tenere": 4, "ilva": 16, "firmato": 10, "dodici": 1, "decreti": 2, "raccolto": 1, "insulti": 18, "ex": 9, "compagni": 7, "omicida": 1, "bambini": 12, "taranto": 10, "perso": 17, "voti": 4, "ricevuto": 6, "minacce": 4, "genere": 6, "rifarei": 4, "chiude": 4, "intera": 3, "industria": 7, "mezzogiorno": 3, "incredibile": 12, "sentirmi": 2, "voglio": 12, "chiudere": 5, "tacevano": 1, "venivo": 2, "insultato": 4, "contrario": 6, "vaccinato": 1, "rispetto": 22, "rimane": 4, "disgusto": 2, "vilt\u00e0": 1, "accadendo": 4, "propriet\u00e0": 3, "indiani": 1, "mittal": 4, "annunciato": 4, "recesso": 1, "vogliono": 10, "andare": 17, "sostengo": 1, "previsto": 3, "usino": 1, "terribili": 2, "notizie": 6, "alessandria": 1, "condivido": 3, "dolore": 13, "famiglie": 13, "vittime": 7, "grande": 48, "vigili": 1, "giornale": 6, "illustro": 1, "posizione": 4, "attacca": 19, "ridicolo": 4, "norma": 5, "usata": 1, "pretesto": 1, "votata": 1, "grilloleghista": 1, "vuole": 39, "cercare": 4, "colpevole": 2, "selfie": 4, "intanto": 15, "lavoriamo": 1, "soluzione": 5, "decisione": 7, "disimpegnarsi": 1, "inaccettabile": 4, "togliere": 4, "alibi": 3, "eliminando": 1, "autogol": 2, "immunit\u00e0": 4, "voluto": 6, "vecchio": 6, "messo": 10, "guardia": 2, "patuanelli": 1, "polemica": 12, "meschina": 1, "mediocre": 2, "scudo": 2, "penale": 1, "cancellato": 3, "esecutivo": 1, "stelle": 29, "vogliamo": 16, "soluzioni": 2, "capri": 1, "espiatori": 1, "indipendentemente": 2, "bisogno": 7, "futuro": 43, "passa": 5, "acciaio": 1, "numerosi": 2, "preso": 10, "assassino": 6, "alcuni": 12, "contestazioni": 2, "pesantissime": 1, "risanamento": 1, "meno": 29, "tolto": 2, "tavolo": 4, "devono": 7, "mantenere": 4, "impegni": 1, "cittadini": 18, "lavoratori": 5, "tocca": 8, "scherza": 1, "ricapitolando": 1, "fiume": 2, "improvvisamente": 1, "retromarcia": 1, "corso": 3, "nuove": 5, "plastica": 3, "bene": 37, "apprezzo": 1, "senso": 9, "gualtieri": 1, "conta": 7, "risultato": 5, "notax": 4, "unico": 13, "gestire": 3, "immigrazione": 21, "africa": 5, "europei": 7, "lasciarlo": 1, "cinesi": 3, "aiutarli": 1, "direbbe": 2, "slogan": 5, "eni": 1, "coldiretti": 1, "bonifiche": 1, "ferraresi": 1, "provando": 2, "bravi": 3, "quel": 23, "numero": 8, "tatuato": 1, "braccio": 5, "porto": 1, "vergogna": 6, "ascoltiamo": 1, "senatrice": 2, "liliana": 4, "segre": 4, "pieni": 18, "retroscena": 5, "molto": 39, "cellulari": 4, "gasolio": 4, "imprese": 4, "concrete": 3, "evitare": 10, "microbalzelli": 3, "criticano": 1, "daranno": 1, "ragione": 13, "voteremo": 1, "vedrete": 2, "domenica": 14, "novembre": 5, "splendore": 1, "tutte": 22, "conosco": 3, "gianluca": 2, "rocchi": 1, "giovanissimi": 2, "iniziammo": 1, "carriera": 1, "arbitrale": 1, "gloriosa": 2, "sede": 1, "faenza": 3, "primi": 4, "fischi": 2, "settore": 5, "giovanile": 2, "sempre": 71, "dimostrato": 5, "grandissimo": 3, "arbitro": 2, "bloccando": 3, "partita": 6, "olimpico": 1, "cori": 1, "citt\u00e0": 25, "napoli": 11, "grandissima": 3, "persona": 6, "tantissime": 2, "dichiarazioni": 4, "commenta": 2, "messaggero": 6, "piacere": 2, "critica": 1, "idee": 32, "svolge": 1, "servizio": 7, "prezioso": 2, "ribadisco": 1, "emergenza": 9, "molte": 9, "cominciare": 21, "riduzione": 4, "interessi": 7, "debito": 9, "parliamo": 10, "decine": 3, "spiccioli": 1, "merito": 6, "felici": 6, "risultati": 9, "ottenuti": 1, "basta": 31, "continueremo": 3, "batterci": 1, "migliorare": 4, "feriscono": 1, "competitivit\u00e0": 1, "coperture": 2, "giusto": 19, "evasione": 3, "fiscale": 8, "combattuta": 1, "invasione": 1, "troppe": 2, "facciamole": 1, "scendere": 3, "renzimessaggero": 1, "cancelleremo": 1, "stangata": 1, "ceto": 2, "medio": 2, "vita": 30, "abbassato": 3, "provincia": 4, "comune": 9, "premier": 22, "80\u20ac": 11, "imu": 6, "irap": 4, "costo": 8, "canone": 3, "club": 2, "tassatori": 1, "impedito": 2, "lavoreremo": 3, "eliminare": 1, "assurdit\u00e0": 2, "proposto": 5, "respinto": 2, "zucchero": 5, "chiedo": 5, "darci": 5, "seguire": 4, "battaglia": 14, "avere": 17, "sottoscritto": 1, "dicono": 21, "leader": 14, "partitino": 1, "attaccano": 3, "chiss\u00e0": 4, "impressione": 6, "paura": 18, "crescendo": 1, "riparleremo": 2, "abbassiamo": 1, "presidente": 20, "trump": 5, "radio": 2, "meglio": 8, "fuori": 9, "unione": 3, "europea": 12, "orgoglioso": 15, "identit\u00e0": 4, "cuore": 20, "fiorentino": 3, "radici": 1, "altrettanto": 1, "europeo": 7, "europa": 46, "santi": 1, "lasciava": 2, "alda": 1, "merini": 1, "versi": 1, "bellezza": 19, "continuano": 4, "emozionarci": 1, "amore": 3, "mistica": 1, "poesie": 1, "illuminano": 1, "quotidiano": 7, "approdare": 1, "settimane": 3, "stati": 17, "fatti": 13, "passi": 3, "case": 1, "decisiva": 2, "aumenti": 2, "duro": 2, "numeri": 16, "salgano": 2, "centinaio": 3, "milioni": 26, "nulla": 7, "bruciati": 1, "triennio": 1, "demagogia": 6, "quota100": 4, "bloccato": 9, "incontrare": 3, "donne": 19, "uomini": 15, "estero": 6, "dimostrano": 5, "scrivendo": 1, "interessanti": 2, "mauro": 2, "porcini": 1, "classe": 5, "lombardo": 1, "capo": 3, "design": 2, "pepsi": 1, "rivoluzionando": 1, "concetto": 3, "trovarlo": 1, "lab": 1, "d\u00ec": 1, "soho": 1, "nyc": 2, "eccellenza": 2, "cresciuta": 2, "straordinario": 2, "vivaio": 2, "politecnico": 1, "prosegue": 1, "farsa": 4, "brexit": 20, "ipotizza": 2, "nuovo": 31, "voto": 18, "dicembre": 4, "meravigliarsi": 1, "caos": 5, "mai": 36, "visto": 16, "immagino": 2, "copertine": 2, "tabloid": 1, "inglesi": 5, "pasticcio": 1, "oceanviking": 1, "mezzo": 10, "mare": 10, "bordo": 1, "soffrono": 1, "vanno": 24, "fatte": 3, "sbarcare": 2, "tema": 6, "spigoloso": 1, "bisogna": 12, "lavorare": 10, "concretizzare": 1, "principio": 4, "aiutiamoli": 1, "loro\u201d": 2, "cooperazione": 2, "vaccini": 5, "lotta": 5, "corruzione": 5, "cento": 2, "naturale": 1, "impone": 3, "farle": 1, "immediatamente": 1, "risolve": 2, "spot": 3, "pelle": 7, "ultimi": 7, "mette": 4, "metto": 1, "salvinismo": 2, "copiando": 3, "leghisti": 11, "central": 1, "park": 1, "tappa": 2, "obbligata": 1, "smaltire": 1, "jet": 1, "lag": 1, "sgambata": 1, "raggiungendo": 2, "maratona": 4, "prossima": 3, "mafia": 1, "capitale": 7, "esistita": 1, "detto": 30, "corte": 2, "importanti": 5, "indagini": 2, "colpevoli": 2, "reati": 2, "gravi": 3, "parlare": 23, "significa": 12, "innanzitutto": 6, "scegliere": 2, "fermarsi": 1, "superficie": 2, "approfondire": 7, "studiare": 12, "riflettere": 6, "sentenze": 8, "social": 20, "show": 5, "difficile": 16, "vale": 8, "pena": 6, "fondo": 6, "riesco": 2, "provare": 3, "piet\u00e0": 4, "morte": 10, "califfo": 1, "isis": 5, "baghdadi": 1, "feroce": 2, "ucciso": 7, "saltare": 1, "s\u00e9": 3, "figli": 9, "posso": 2, "perdonarglielo": 1, "specie": 5, "davanti": 20, "pagare": 15, "propri": 3, "follia": 2, "continua": 7, "rimbombarmi": 1, "testa": 11, "imperdonabile": 1, "volete": 4, "ascoltate": 1, "roberto": 5, "cingolani": 3, "menti": 1, "brillanti": 1, "quest": 8, "potuto": 3, "partecipare": 4, "leopolda": 23, "contributo": 4, "minuto": 1, "ascoltare": 4, "simbolo": 17, "gabbiano": 1, "spunta": 1, "tante": 14, "alzarsi": 1, "volo": 3, "sopra": 2, "vite": 2, "parallele": 2, "sopravvivenza": 3, "valori": 15, "pescatori": 2, "mazara": 1, "vallo": 1, "difficolt\u00e0": 2, "sacrificio": 2, "coraggio": 16, "umanit\u00e0": 11, "pronte": 2, "rinunciare": 1, "fonte": 2, "garantire": 4, "altri": 25, "raccontata": 1, "vogue": 1, "lezione": 4, "giro": 13, "piazze": 4, "sventola": 1, "rosario": 1, "scordandosi": 1, "apostoli": 1, "vedette": 1, "difendono": 1, "custodiscono": 1, "dentro": 5, "dovremmo": 3, "fieri": 2, "testate": 2, "sfidare": 2, "pensiero": 9, "dominante": 1, "dedicano": 2, "coraggiose": 2, "roma": 30, "ragazzo": 5, "nemmeno": 9, "viene": 18, "atroce": 3, "strada": 27, "tragedia": 13, "qualunque": 3, "causa": 5, "barbaro": 1, "omicidio": 8, "commentatori": 4, "superficiali": 1, "politici": 7, "odio": 37, "influencer": 4, "dico": 20, "sciacallaggio": 3, "povero": 2, "luca": 3, "persino": 18, "cadavere": 1, "utilizzato": 3, "propaganda": 9, "forze": 10, "ordine": 11, "straordinarie": 2, "polizia": 7, "parole": 20, "equilibrate": 1, "fratello": 5, "maggiore": 3, "madre": 3, "forza": 17, "denunciare": 4, "figlio": 11, "preferisce": 2, "vederlo": 2, "carcere": 2, "piuttosto": 1, "pusher": 1, "droga": 2, "d\u00e0": 4, "sperare": 1, "risposta": 8, "novanta": 2, "secondi": 2, "matteo": 24, "cambiato": 10, "coerente": 1, "usare": 4, "attaccando": 4, "sopravvissuta": 1, "olocausto": 3, "minuta": 1, "imparare": 3, "sant": 3, "egidio": 1, "worldpastaday": 1, "assicurando": 1, "200mila": 1, "piatti": 1, "pasta": 1, "poveri": 7, "deputata": 4, "maria": 8, "gadda": 1, "scritto": 10, "spreco": 1, "alimentare": 2, "gira": 1, "spiegarla": 1, "raccontarla": 1, "volontari": 4, "associazionismo": 2, "possano": 5, "tornare": 13, "credere": 8, "colonna": 4, "solida": 1, "solidale": 2, "esattamente": 8, "chiuse": 2, "traffico": 2, "duomo": 4, "contestata": 1, "ottobre": 4, "magicamente": 1, "ritrov\u00f2": 1, "meravigliata": 1, "gesto": 8, "banale": 6, "pedonalizzazione": 3, "restituiva": 1, "capacit\u00e0": 4, "guardare": 3, "alto": 3, "ammirare": 2, "godere": 1, "quotidianit\u00e0": 1, "turismo": 1, "esploso": 1, "domeniche": 1, "giustamente": 2, "copiate": 1, "livello": 6, "nazionale": 9, "diventate": 1, "must": 1, "sistema": 6, "tranviario": 1, "ridotto": 3, "distanza": 2, "vorrei": 12, "ringraziare": 1, "coloro": 4, "crederci": 2, "auguri": 15, "smettere": 1, "progetti": 3, "lungo": 4, "termine": 1, "visionari": 1, "difficili": 2, "fatevi": 1, "camminata": 2, "ritmo": 4, "accompagner\u00e0": 1, "scoprirete": 1, "immersi": 1, "fiorenza": 4, "paolo": 8, "mieli": 2, "storico": 6, "giornalista": 6, "prestigio": 1, "negato": 1, "direttore": 7, "occupiamoci": 1, "parlo": 3, "manette": 3, "patente": 1, "punti": 3, "date": 4, "occhio": 4, "durante": 6, "confronto": 12, "televisivo": 2, "assenteista": 1, "giornate": 3, "sagre": 1, "feste": 1, "popolari": 3, "partecipa": 3, "riunioni": 1, "istituzionali": 2, "bruxelles": 4, "guidare": 1, "massimo": 6, "pro": 5, "loco": 4, "ufficialmente": 3, "rimasta": 2, "male": 23, "capisco": 5, "accostare": 1, "attivit\u00e0": 2, "offensivo": 1, "autorevole": 1, "esponente": 1, "opposizione": 11, "impegnato": 2, "istituzioni": 26, "lanciato": 4, "agor\u00e0": 1, "interessante": 1, "belgio": 1, "manda": 2, "dichiarazione": 2, "redditi": 1, "semmai": 1, "correggi": 1, "\u201d": 8, "complimenti": 6, "peccato": 4, "possibilit\u00e0": 1, "riguarda": 1, "antipatici": 1, "simpaticissimo": 1, "mojito": 5, "sagra": 1, "qualcuno": 22, "tv": 11, "dovrebbe": 11, "ricordarglielo": 1, "tanto": 19, "campus": 1, "scolastico": 1, "amatrice": 2, "intitolato": 1, "sergio": 2, "marchionne": 3, "impegno": 11, "raccogliere": 3, "fondi": 5, "ricostruirlo": 1, "incontrammo": 1, "maranello": 1, "angela": 1, "merkel": 2, "scomparsa": 1, "continuo": 5, "dirlo": 4, "gigante": 6, "ingiustamente": 1, "colpito": 4, "immagine": 7, "creare": 9, "fortuna": 4, "pensano": 2, "concreti": 1, "fake": 21, "news": 25, "affettuoso": 2, "grato": 1, "memoria": 10, "justin": 1, "congratulations": 1, "good": 1, "job": 1, "my": 1, "friend": 1, "f\u00e9licitations": 1, "bon": 1, "travail": 1, "mon": 2, "ami": 1, "piccola": 5, "bipartisan": 1, "rimetta": 1, "piedi": 9, "genova": 10, "bisagno": 2, "lavori": 5, "sbloccati": 1, "senza": 53, "alcuna": 2, "divisione": 3, "amministrazioni": 1, "colore": 7, "metodo": 2, "temi": 4, "consiglio": 13, "ministri": 10, "approvato": 2, "vedo": 4, "bicchiere": 2, "pieno": 6, "deciso": 6, "precedente": 1, "discussione": 7, "sposta": 1, "potr\u00e0": 6, "rimasti": 2, "proveremo": 2, "scorso": 5, "clamorosamente": 1, "torneremo": 1, "rispettare": 3, "regolamenti": 1, "costituzione": 4, "guardiamo": 5, "sanit\u00e0": 5, "rimettere": 1, "moto": 4, "sola": 4, "fermi": 2, "richiesta": 5, "senatore": 7, "denuncia": 2, "savoini": 9, "gliel": 2, "chiesto": 18, "glielo": 1, "report": 2, "iscriversi": 5, "sito": 3, "carta": 2, "modalit\u00e0": 2, "sostenere": 4, "avventura": 4, "fantastica": 4, "fazio": 7, "impegnativa": 1, "regalato": 5, "intense": 1, "pomeriggio": 6, "scarica": 1, "adrenalina": 1, "neo": 1, "rosa": 4, "diciottenne": 1, "strade": 4, "invecchia": 2, "eccome": 2, "notte": 14, "affetto": 10, "accusa": 1, "ladro": 2, "democrazia": 14, "pallone": 1, "gonfiato": 1, "dette": 3, "codardi": 1, "pensavo": 2, "don": 6, "rodrigo": 1, "abbondio": 1, "intorno": 4, "fabio": 4, "treno": 2, "incontro": 4, "tanta": 10, "gente": 24, "stazione": 2, "bellissimo": 29, "riconoscersi": 1, "spiace": 4, "accontentarsi": 1, "maxi": 3, "schermo": 1, "leopolda10": 23, "impressionante": 5, "apre": 1, "percorrerla": 3, "intervento": 7, "conclusivo": 1, "pagina": 11, "youtube": 1, "coda": 2, "avverto": 1, "responsabilit\u00e0": 7, "mando": 1, "ospiti": 2, "curiosi": 2, "tardi": 6, "installato": 1, "schermi": 1, "scelto": 9, "meravigliosa": 5, "divertiremo": 1, "valorizzeremo": 1, "purissima": 1, "\u202ale": 1, "claudia": 2, "giovane": 10, "combattendo": 1, "sla": 1, "\u202c": 2, "\u202a": 2, "leopolda10\u202c": 1, "interventi": 3, "circa": 3, "niente": 15, "pensione": 2, "spendere": 2, "anticipare": 1, "centomila": 2, "semplicemente": 12, "ingiusto": 3, "costano": 1, "mettiamo": 3, "stipendi": 3, "tavoli": 4, "spettacolo": 5, "protagonista": 1, "attiva": 1, "partecipe": 1, "numerini": 1, "\u202ada": 1, "iscrivere": 1, "online": 1, "nessun": 2, "signore": 6, "tessere": 1, "correnti\u202c": 1, "pregiudizi": 1, "ultimatum": 1, "elena": 3, "bonetti": 4, "familyact": 3, "beppe": 9, "grillo": 11, "anziani": 1, "fiasco": 1, "prime": 2, "cancelli": 1, "arrivate": 3, "arrivando": 4, "sottovalutate": 1, "nasrim": 1, "resteranno": 2, "tatuate": 1, "domani": 25, "dario": 4, "nardella": 2, "venuto": 1, "occhi": 2, "fratelli": 6, "sorelle": 2, "kurdistan": 3, "ragazze": 11, "combattuto": 5, "sconfiggere": 2, "altroestremismo": 1, "islamico": 3, "salvato": 3, "occidente": 3, "fronte": 4, "ci\u00f2": 19, "accade": 6, "perdendo": 2, "dignit\u00e0": 10, "tregua": 2, "curde": 1, "aggressione": 1, "turca": 1, "dimenticando": 1, "esplosione": 2, "commosso": 1, "scoppia": 1, "cerchiamo": 1, "entrare": 2, "inaugurazione": 1, "mostra": 3, "tiberio": 3, "barchielli": 2, "ricordiamo": 2, "foto": 15, "ricordano": 2, "importante": 15, "straordinaria": 3, "attesa": 7, "pronti": 5, "costruiamo": 1, "italia2029": 2, "rivoluzionarie": 1, "fatturazione": 5, "elettronica": 5, "fisco": 2, "telematico": 1, "nuova": 11, "dirigente": 3, "femminile": 8, "talenti": 1, "laboratorio": 1, "aspettiamo": 4, "decima": 2, "volta": 24, "www": 7, "leopoldastazione": 3, "accordo": 10, "segna": 5, "triste": 5, "britannici": 3, "vero": 22, "disastro": 5, "referendum": 16, "vincono": 2, "bugie": 13, "rimette": 1, "povera": 4, "ultime": 4, "donazione": 2, "sveleremo": 1, "edizione": 3, "parleremo": 1, "clima": 10, "racconteremo": 3, "immaginiamo": 1, "ventinove": 1, "ventinuovi": 1, "cantava": 1, "intervistata": 1, "nonna": 2, "compie": 5, "novantanove": 1, "sorbita": 1, "lucidissima": 1, "buoncompleanno": 1, "preparativi": 1, "memorabile": 1, "augurio": 4, "rimettersi": 1, "litigare": 7, "assistito": 1, "rai1": 2, "notato": 1, "dati": 30, "disco": 1, "rotto": 4, "solite": 1, "risposto": 3, "domande": 5, "sparire": 1, "rispondere": 3, "sappiamo": 7, "tuttavia": 3, "esponenti": 2, "ben": 4, "moderato": 1, "finito": 7, "monologhi": 1, "scappano": 2, "dibattiti": 1, "accaduto": 3, "politiche": 5, "fame": 6, "seriet\u00e0": 2, "dibattito": 5, "dimostra": 7, "domanda": 8, "precisa": 2, "famosi": 1, "spesi": 1, "s\u00ec": 14, "basterebbe": 5, "usato": 1, "falsa": 1, "fuggire": 2, "renzisalvini": 2, "riconoscete": 1, "cartello": 1, "trasmissione": 7, "uomo": 26, "parola": 5, "scherziamo": 2, "lampedusa": 3, "morta": 1, "abbracciata": 1, "bambino": 4, "lascia": 6, "restiamo": 2, "soddisfatto": 1, "match": 2, "minuti": 6, "guardate": 2, "dite": 3, "pensate": 7, "35mila": 2, "dando": 2, "economica": 5, "piccolo": 11, "capitano": 7, "perfetto": 1, "luigi": 3, "marattin": 1, "spiega": 7, "iniqua": 1, "accontenta": 2, "urli": 1, "lorenzo": 4, "guarnieri": 1, "neanche": 2, "incidente": 2, "stradale": 2, "tenacia": 1, "condotto": 1, "approvazione": 1, "sacrosanta": 2, "firmare": 14, "palazzo": 18, "chigi": 7, "leggete": 4, "padre": 6, "qn": 2, "2nlmk85": 1, "consenso": 2, "unanime": 1, "gran": 1, "passo": 13, "tutt": 2, "scontato": 1, "articoli": 1, "indicato": 1, "aggiunta": 1, "spiegato": 3, "evitiamo": 1, "mini": 2, "certa": 2, "troppo": 11, "spendacciona": 1, "vorrebbe": 3, "aumentare": 7, "tagliamo": 1, "costi": 4, "spese": 4, "beni": 1, "servizi": 3, "assurdo": 12, "rilevante": 1, "siria": 2, "curdi": 5, "orrore": 2, "puro": 1, "linea": 4, "fermare": 4, "estremismo": 2, "mese": 16, "sciagurata": 1, "turchia": 3, "regime": 2, "erdogan": 2, "fermato": 4, "blocco": 1, "armi": 7, "minimo": 3, "sindacale": 1, "imporre": 2, "sanzioni": 2, "economiche": 6, "ricevendo": 1, "kobane": 2, "rimasto": 4, "curdo": 1, "reazione": 2, "immediata": 1, "comunit\u00e0": 15, "internazionale": 9, "corpi": 2, "martoriati": 1, "lasciano": 3, "curda": 1, "bloccare": 4, "vendita": 1, "prossimo": 9, "vedendo": 1, "tace": 2, "complice": 2, "punto": 13, "presentato": 3, "diversa": 3, "partiti": 6, "decidiamo": 1, "logo": 2, "selezionato": 1, "votare": 18, "preferite": 1, "piace": 3, "luogo": 11, "ricco": 3, "partecipazione": 4, "rappresenter\u00e0": 1, "scheda": 2, "elettorale": 15, "temo": 3, "poterlo": 1, "utilizzare": 3, "questione": 5, "diritti": 10, "inchino": 1, "genio": 4, "makkox": 2, "fenomenale": 1, "scoprire": 1, "sorpresa": 3, "chiamiamo": 2, "nome": 17, "ricatto": 1, "morale": 6, "ricatti": 1, "libert\u00e0": 15, "attentato": 4, "sinagoga": 2, "tedesca": 2, "yom": 1, "kippur": 1, "ebreo": 1, "ebrei": 2, "abbassi": 1, "rigurgiti": 1, "neonazisti": 1, "campione": 2, "leggere": 7, "assolutamente": 1, "distruggendo": 3, "lasciarli": 1, "soli": 6, "profondamente": 1, "finta": 5, "riportano": 2, "alcune": 6, "frasi": 2, "attribuite": 1, "smentite": 1, "conte": 11, "consideri": 1, "prepotente\u201d": 1, "pari": 3, "peggio": 7, "esperienza": 4, "logorante": 1, "causato": 1, "credo": 13, "chiarezza": 2, "intendo": 2, "scontro": 5, "finire": 3, "primo": 34, "evitando": 2, "accuse": 1, "prepotenza\u201d": 1, "unica": 3, "per\u00f2": 9, "parlano": 8, "costantemente": 1, "strano": 4, "paragona": 1, "papeete": 3, "conto": 17, "prova": 7, "cambiare": 14, "attaccare": 3, "rendono": 3, "guerra": 7, "sbagliato": 8, "obama": 7, "segreti": 2, "lucia": 5, "annunziata": 4, "mezz": 2, "mojiti": 3, "cubiste": 1, "asili": 6, "nido": 6, "edilizia": 1, "scolastica": 1, "discutere": 9, "populismo": 11, "costringe": 3, "caratteri": 1, "simpatie": 1, "antipatie": 1, "personali": 5, "programmi": 1, "studia": 1, "carte": 5, "trova": 5, "insomma": 5, "novit\u00e0": 2, "discute": 6, "alleanze": 2, "anzi": 3, "avvicinando": 1, "sorprendente": 2, "dimostrer\u00e0": 1, "cresciamo": 1, "senatrici": 1, "brave": 1, "competenti": 3, "annamaria": 1, "parente": 1, "aiutato": 3, "sociale": 3, "jobsact": 9, "ruolo": 4, "societ\u00e0": 4, "aderito": 2, "gruppo": 8, "arricchisce": 1, "intelligenza": 7, "preparazione": 1, "benvenuta": 1, "territori": 2, "limito": 2, "considerazione": 2, "fenomeno": 2, "obiettivo": 6, "giocare": 5, "simpatico": 3, "pagano": 5, "articolo": 9, "rispondermi": 1, "base": 5, "crede": 12, "populista": 8, "gioca": 2, "apparire": 1, "troppaspesa": 1, "leggerlo": 1, "trieste": 4, "condoglianze": 2, "agenti": 2, "rilanciata": 1, "fakenews": 11, "stavolta": 6, "varcano": 1, "vengo": 3, "partecipato": 6, "complotto": 2, "ordito": 1, "scoperto": 4, "sottovalutare": 3, "portata": 2, "bufale": 1, "diverse": 5, "rilanciato": 1, "procedere": 2, "vie": 1, "legali": 2, "buonismo": 1, "agisco": 1, "giudizio": 5, "signor": 3, "george": 1, "papadopoulos": 1, "definisce": 4, "collaboratore": 2, "trump\u201d": 1, "stamattina": 8, "rilasciato": 2, "false": 3, "gravemente": 1, "lesive": 1, "reputazione": 2, "sbaglia": 3, "paga": 6, "diffama": 2, "pure": 7, "tribunale": 6, "tg2": 4, "piaciuta": 1, "spread": 15, "spesa": 1, "intermedia": 1, "abbassare": 3, "lettera": 9, "solito": 6, "dazi": 2, "americani": 5, "prodotti": 2, "alimentari": 1, "agricoltori": 1, "sovranismo": 1, "protezionismo": 2, "sciagura": 1, "migliore": 3, "difendere": 4, "vivere": 11, "fatta": 8, "opportunit\u00e0": 2, "scelte": 12, "debole": 1, "guadagnare": 1, "globalizzazione": 1, "profeti": 2, "sventura": 1, "sostengono": 1, "esportiamo": 1, "professa": 1, "chiede": 5, "danneggia": 1, "ottoemezzo": 1, "nonni": 3, "nonne": 1, "anna": 5, "rispettivamente": 1, "bellissime": 2, "achille": 1, "adone": 1, "lasciato": 7, "dono": 2, "meraviglioso": 2, "compiuto": 2, "costruzione": 1, "ponte": 3, "renzo": 1, "rapidit\u00e0": 1, "lavorando": 1, "considerata": 3, "occasione": 4, "riscatto": 1, "pax": 1, "burocratica\u201d": 1, "ovunque": 5, "parlato": 9, "avanzando": 1, "eccole": 1, "vince": 5, "chiusa": 1, "muore": 3, "futurologi": 1, "diventata": 1, "colto": 1, "occasioni": 2, "capace": 2, "aprirsi": 1, "contaminarsi": 1, "impero": 1, "romano": 2, "rinascimento": 1, "terra": 6, "emigrazione": 2, "luce": 1, "proprio": 26, "export": 2, "apertura": 2, "lasciamo": 4, "scimmiotta": 1, "orban": 5, "rendendosi": 1, "danno": 8, "esistenziale": 1, "paesi": 13, "regno": 6, "unito": 6, "germania": 5, "differenza": 2, "linguaggio": 5, "stile": 4, "liturgie": 1, "interne": 3, "squadra": 6, "passiamo": 1, "compagno": 1, "viviamo": 1, "correnti": 3, "creato": 5, "diarchia": 2, "regola": 1, "costitutiva": 1, "coordinatori": 2, "provinciali": 1, "spesso": 5, "millennials": 1, "arriva": 14, "ventenne": 1, "verr\u00e0": 2, "pensi": 7, "proponi\u201d": 1, "altra": 24, "pd": 19, "capitan": 12, "fracassa": 12, "tg3": 1, "mandare": 4, "ministeri": 1, "sottosegretari": 1, "schiaffo": 2, "consumatori": 1, "porterebbe": 1, "recessione": 18, "fiorentina": 6, "giocatore": 3, "franck": 1, "rib\u00e9ry": 1, "castrovilli": 1, "giovanissimo": 3, "migliori": 3, "centrocampisti": 1, "\ud83d\ude00": 3, "milanfiorentina": 1, "record": 3, "certo": 13, "decider\u00e0": 1, "incoraggiare": 2, "moneta": 2, "digitale": 1, "attraverso": 3, "sconti": 2, "fiscali": 1, "dovremo": 2, "commissioni": 1, "credito": 1, "dimezzate": 1, "attuali": 1, "stabilendo": 1, "tetto": 2, "alcun": 4, "transazione": 1, "mondiali": 4, "atletica": 2, "qatar": 1, "malore": 1, "colpisce": 9, "jonathan": 1, "busby": 1, "aruba": 1, "pochi": 4, "metri": 1, "traguardo": 2, "atleta": 2, "guinea": 1, "biassau": 1, "accorge": 2, "accompagna": 1, "aiutandolo": 1, "sport": 6, "maiuscola": 1, "competitivo": 1, "normale": 6, "optional": 1, "quali": 5, "contenuti": 1, "assaggio": 1, "tratto": 1, "luned\u00ec": 1, "esce": 2, "cosina": 1, "ragazzi": 40, "colorano": 1, "verde": 3, "pianeta": 3, "allargano": 1, "fattibile": 1, "applaudire": 1, "magistrati": 1, "definitive": 1, "confermo": 2, "magistrato": 1, "indaghi": 1, "ipotesi": 2, "berlusconi": 5, "responsabile": 9, "stragi": 4, "mafiose": 1, "costanzo": 2, "attonito": 1, "scrivono": 2, "taluni": 1, "governato": 3, "votato": 3, "libero": 3, "criticato": 5, "contrastato": 1, "straccio": 1, "egli": 1, "mandante": 1, "mafioso": 1, "pessimo": 1, "credibilit\u00e0": 5, "italiane": 8, "canzone": 2, "tommaso": 1, "paradiso": 1, "scissione\u201d": 1, "thegiornalisti": 1, "veramente": 2, "family": 1, "act": 1, "misure": 2, "natalit\u00e0": 1, "tg1": 1, "pienone": 1, "operazione": 2, "divertirsi": 2, "critiche": 5, "scherzato": 2, "imitazione": 1, "striscia": 2, "effettivamente": 1, "sottovalutato": 1, "potenzialmente": 2, "devastante": 4, "deepfake": 2, "raffinata": 1, "tecnica": 1, "centro": 5, "valanghe": 1, "diffamazioni": 2, "peraltro": 1, "vaglio": 1, "tribunali": 2, "sorriso": 4, "finto": 1, "fuorionda": 1, "redazione": 3, "sapr\u00e0": 3, "strumento": 3, "prendo": 2, "leggerezza": 1, "pericolose": 1, "costruttive": 1, "aiutano": 1, "caratteristiche": 2, "forti": 4, "femminista": 2, "sostantivo": 2, "problema": 23, "quote": 3, "difese": 1, "contenuto": 1, "coinvolge": 1, "maternit\u00e0": 1, "parit\u00e0": 3, "salario": 1, "violenza": 17, "sguardo": 1, "rivoluzione": 2, "maschilista": 1, "retrograda": 1, "marina": 1, "terragni": 1, "piacerebbe": 2, "svolto": 2, "vertice": 1, "interno": 21, "mesi": 27, "assenza": 1, "tornata": 4, "proclami": 4, "boss": 1, "concerto": 1, "sotto": 11, "pioggia": 1, "salutarmi": 1, "albergo": 3, "fresco": 1, "born": 1, "to": 1, "run": 1, "gara": 3, "haters": 1, "emma": 5, "marrone": 1, "soltanto": 5, "vergognare": 2, "artista": 2, "personale": 7, "sostegno": 5, "cattiveria": 1, "odia": 1, "malta": 5, "solidariet\u00e0": 7, "accoglie": 1, "migranti": 8, "perdere": 5, "contributi": 1, "continuare": 5, "scelgono": 2, "aderire": 3, "nazioni": 2, "unite": 2, "zero": 16, "emissioni": 2, "entro": 5, "accordi": 7, "parigi": 7, "ambiente": 4, "sostenibili": 1, "necessario": 2, "alzare": 2, "presenter\u00e0": 2, "proprie": 3, "benvenuto": 2, "puntata": 8, "arena": 3, "giletti": 4, "la7": 3, "intensi": 1, "pechino": 2, "shangai": 2, "italiavivaappello": 2, "aiutarci": 1, "cliccare": 1, "italiavivasostieni": 1, "proporci": 1, "italiavivaproponi": 1, "affascinante": 2, "artificiale": 5, "rapporto": 5, "innovazione": 7, "tecnologica": 2, "nuovi": 4, "reid": 1, "hoffman": 1, "fondatore": 1, "linkedin": 1, "grandi": 9, "esperti": 3, "tecnologia": 3, "convegno": 1, "stanford": 2, "university": 1, "doppietta": 1, "ferrari": 4, "strepitosa": 3, "svegliati": 1, "titolo": 6, "piloti": 1, "meraviglia": 5, "singapore": 2, "mattino": 1, "gazzettino": 1, "verdi": 1, "decorrentizzato\u201d": 1, "tesserato": 1, "piantiamo": 1, "albero": 1, "nazionalisti": 1, "destra": 5, "acclamato": 1, "straniero": 1, "ungherese": 1, "accetta": 1, "rifiuta": 1, "riceve": 1, "contributenti": 1, "prendere": 6, "ungheria": 2, "prende": 5, "alzano": 1, "sovranista": 2, "nazionalista": 1, "acclama": 1, "tifo": 5, "significhi": 4, "patria": 1, "chiamano": 2, "patrioti": 2, "ungheresi": 2, "autista": 1, "bus": 1, "rimprovera": 1, "minorenni": 2, "pestano": 1, "folle": 4, "puniti": 3, "riscoprire": 1, "stagione": 2, "doveri": 5, "diceva": 4, "moro": 1, "logica": 1, "rinata": 1, "leclerc": 3, "pole": 1, "settembre": 8, "san": 9, "omonimi": 1, "salerno": 1, "data": 3, "particolare": 2, "comunale": 2, "infatti": 10, "annunciai": 1, "pedonalizzare": 1, "ritenevano": 1, "possibile": 3, "giudicata": 1, "ardita": 1, "temeraria": 1, "temevano": 1, "reazioni": 1, "conservatrice": 1, "signori": 1, "status": 1, "quo": 1, "viveva": 1, "rendita": 1, "realt\u00e0": 24, "tornerebbe": 2, "indietro": 8, "passare": 5, "diecimila": 4, "motorini": 1, "accanto": 2, "battistero": 1, "sente": 2, "clacson": 1, "libera": 3, "compiuta": 2, "insistono": 2, "stravagante": 1, "staccare": 1, "spina": 2, "dimenticano": 1, "attaccata": 1, "elezioni": 13, "spingendo": 1, "margini": 1, "eppure": 6, "pregiudizio": 2, "condizionare": 2, "ambizione": 1, "immaginare": 1, "forme": 1, "cominciando": 1, "presenza": 3, "assieme": 2, "riaccendo": 1, "cellulare": 2, "alema": 1, "ipocrita": 1, "molta": 5, "ossessionati": 1, "entrambi": 5, "terza": 4, "consecutiva": 1, "bebe": 2, "vio": 1, "campionessa": 1, "mondiale": 7, "paralimpica": 1, "averla": 1, "volto": 2, "brava": 5, "link": 3, "giancarlo": 4, "siani": 4, "camorra": 3, "scomodo": 1, "andava": 2, "eliminato": 1, "altrohttps": 1, "cronaca": 4, "caro": 4, "manchi": 1, "commuove": 2, "venire": 2, "brividi": 2, "mafie": 1, "terrorismo": 3, "criminalit\u00e0": 1, "esempio": 9, "aiuti": 3, "vere": 3, "chiave": 2, "crescita": 19, "educazione": 4, "n": 1, "contento": 1, "ottima": 3, "audience": 1, "seguito": 3, "commentato": 2, "piena": 3, "visti": 1, "parlamentari": 7, "festeggiando": 1, "compleanno": 6, "annibali\ud83c\udf39": 1, "ufficializzeremo": 1, "gruppi": 1, "buonanotte": 2, "circondati": 2, "sms": 1, "disponibilit\u00e0": 1, "aderisca": 1, "comitatiazionecivile": 3, "respiriamo": 1, "lasciare": 4, "atto": 6, "sogni": 2, "oggetto": 2, "litigi": 1, "interni": 3, "vittoria": 3, "ottenuto": 2, "salvare": 5, "tratta": 4, "innovativa": 1, "lancino": 1, "spazio": 5, "enorme": 5, "passioni": 1, "attende": 1, "frase": 8, "robert": 1, "frost": 1, "citata": 1, "attimo": 1, "fuggente": 1, "compagnia": 2, "boy": 1, "scout": 4, "trovai": 1, "bosco": 1, "scelsi": 1, "battuta": 2, "diverso\u201d": 1, "scegliamo": 1, "paracadute": 1, "sonora": 1, "lungomare": 1, "jovanotti": 1, "profondo": 3, "nord": 7, "signora": 4, "lombarda": 1, "razzista": 1, "leghista": 4, "sfegatata\u201d": 1, "nega": 2, "affitto": 1, "ragazza": 4, "meridionale": 1, "cade": 2, "terrazzo": 1, "benzinaio": 1, "tuffa": 1, "attutirne": 1, "caduta": 2, "salvandogli": 1, "scena": 5, "fumetto": 1, "extracomunitario": 1, "chiama": 9, "angel": 2, "mettere": 6, "episodi": 3, "fianco": 1, "capire": 13, "diseducativa": 1, "campagna": 19, "ricordare": 9, "razza": 1, "provenienza": 1, "passaporto": 2, "prepartita": 1, "pareggio": 2, "juve": 2, "firma": 4, "esco": 1, "franchi": 1, "po": 5, "amaro": 1, "bocca": 6, "stretto": 2, "coreografia": 1, "torna": 8, "lottano": 1, "climate": 1, "change": 1, "scorsa": 2, "legislatura": 3, "milione": 4, "ministra": 2, "assegno": 1, "ceo": 2, "borgomeo": 1, "team": 1, "utilizzando": 1, "strumenti": 1, "saxa": 1, "gres": 1, "riassunto": 2, "sorridere": 3, "moltissime": 2, "volte": 14, "saviano": 1, "censura": 1, "assurda": 6, "zerocalcare": 1, "arrivata": 3, "aquila": 2, "spinge": 1, "reagire": 2, "decidere": 8, "partecipanti": 1, "critichi": 1, "direttrice": 1, "teatro": 4, "stabile": 2, "abruzzo": 3, "annalisa": 1, "simone": 1, "appartiene": 2, "dovr\u00e0": 4, "ammette": 1, "censure": 1, "gratuiti": 1, "lanciata": 1, "diciamo": 3, "pioniera": 1, "isabella": 5, "conti": 7, "lazzaro": 5, "tel": 1, "aviv": 1, "maglietta": 1, "cuffie": 1, "correre\u201d": 1, "buonaserata": 1, "senato": 26, "volere": 1, "maggioritario": 1, "sappia": 2, "vinto": 16, "stabilit\u00e0": 1, "desideri": 5, "bellissimi": 2, "trasformarli": 1, "doveva": 4, "costituzionale": 3, "bastava": 1, "teniamo": 1, "governi": 4, "coalizione": 2, "bicameralismo": 1, "paritario": 1, "contrappasso": 1, "s\u00ec\u201d": 1, "vissuto": 1, "tempesta": 2, "poteri\u201d": 4, "segnato": 4, "svolta": 5, "inspiegabile": 1, "accettare": 1, "diktat": 1, "aumentato": 4, "portato": 3, "escluso": 2, "europee": 5, "alimentato": 1, "tensione": 2, "verbale": 7, "corrente": 1, "inattese": 1, "sorprendenti": 1, "difendendo": 1, "interesse": 6, "mordendomi": 1, "lingua": 1, "costato": 2, "umano": 5, "giusta": 7, "risentimenti": 2, "mettendo": 3, "approfitto": 1, "milanese": 1, "mezza": 1, "km": 3, "mega": 2, "doccia": 1, "nanna": 2, "vota": 7, "dubbi": 3, "alternativa": 1, "isolata": 1, "ue": 1, "spiagge": 1, "opacit\u00e0": 1, "russe": 2, "saluti": 1, "romani": 1, "civile": 20, "uccide": 1, "definito": 2, "buono": 2, "perde": 8, "chiamare": 1, "femminicidi": 1, "pazzesca": 2, "strabiliante": 1, "monza": 1, "soffrendo": 1, "vincendo": 1, "entra": 3, "stupendo": 1, "capite": 1, "mike": 1, "bongiorno": 1, "popolare": 3, "incontrarlo": 1, "lontano": 2, "decideranno": 1, "giudici": 2, "user\u00e0": 1, "aggredire": 1, "imparino": 1, "dimostrazione": 1, "civilt\u00e0": 5, "uscente": 1, "secondo": 14, "stime": 1, "osservatorio": 1, "cpi": 1, "mandato": 3, "uscire": 7, "utile": 2, "tasche": 1, "berrettini": 3, "rivelazione": 1, "tennistico": 1, "sconfitta": 5, "nadal": 2, "us": 1, "open": 1, "impedisce": 1, "tennista": 2, "tifoso": 1, "viola": 3, "arrivare": 2, "finale": 2, "ormai": 14, "evidente": 4, "promessa": 3, "ama": 6, "tennis": 4, "big": 2, "soddisfazione": 1, "ultimo": 7, "durissima": 1, "rabbrividisco": 1, "parla": 14, "suicidio": 2, "ballo": 2, "figlia": 1, "limite": 3, "decenza": 2, "lottato": 2, "lotter\u00f2": 1, "pagato": 4, "addirittura": 3, "bambina": 1, "bimba": 1, "divenire": 1, "barbarie": 3, "esprimersi": 1, "toni": 1, "insulta": 3, "abito": 1, "fisico": 1, "bracciante": 1, "agricola": 1, "divenuta": 1, "sindacalista": 1, "degno": 2, "pubblica": 3, "poveretto": 1, "polemizza": 1, "compatita": 1, "criticata": 2, "ironizza": 2, "fisiche": 1, "auguro": 4, "poter": 3, "stupore": 1, "vivono": 3, "ascoltano": 1, "passione": 6, "basti": 1, "discorsi": 3, "infiamma": 1, "platea": 1, "odiare": 1, "amare": 2, "reale": 2, "amarvi": 1, "pensa": 5, "farsi": 6, "insulto": 5, "beh": 2, "conoscete": 2, "rappresentata": 1, "commissione": 3, "sembrava": 6, "gentiloni": 2, "chiedeva": 4, "veniva": 4, "formalizzata": 1, "comizi": 3, "spiaggia": 8, "cubista": 1, "riguardo": 2, "prerogative": 1, "costituzionali": 2, "altre": 6, "mentre": 24, "esprimeva": 1, "raffinati": 1, "concetti": 1, "consigliere": 2, "economico": 5, "borghi": 2, "ipotizzava": 1, "uscita": 3, "tangenti": 3, "petrolio": 1, "russo": 1, "educavano": 1, "fuggiti": 2, "venivano": 1, "dna": 1, "difetti": 1, "sentimenti": 2, "ideali": 3, "accogliere": 2, "carichi": 1, "dipingere": 1, "scimmiottare": 1, "ricette": 1, "popoli": 2, "diversi": 4, "undicesimo": 1, "consecutivo": 1, "attivita": 1, "manifatturiera": 1, "contrazione": 1, "effetti": 2, "vedranno": 1, "giustifica": 2, "verginella": 1, "tempi": 4, "assetti": 1, "poltrone": 3, "superato": 4, "correre": 4, "porte": 2, "affrontata": 1, "rinviata": 1, "magari": 3, "mitico": 5, "emilia": 4, "patta": 1, "lavora": 4, "produce": 1, "crea": 2, "benessere": 1, "temere": 1, "abbassando": 1, "darmi": 2, "regalo": 2, "istat": 13, "pil": 20, "negativo": 5, "consumi": 2, "scommettere": 2, "quadro": 2, "catastrofe": 1, "fingere": 1, "capirlo": 1, "inchiodare": 1, "scuola": 16, "estiva": 9, "meritare": 13, "italia\u201d": 2, "agosto": 13, "presunto": 2, "usava": 1, "poteri": 6, "isolava": 1, "chiariva": 1, "russia": 3, "teneva": 1, "ostaggio": 1, "malmessi": 1, "carrozzoni": 1, "ignorando": 1, "tradizione": 2, "accoglienza": 5, "preparato": 2, "torso": 1, "nudo": 3, "principali": 1, "beach": 1, "incarico": 2, "formare": 1, "rivendicare": 1, "meriti": 1, "constatare": 1, "impossibile": 7, "truce": 1, "contraddizioni": 1, "aperti": 2, "affaccino": 1, "ambizioni": 5, "richieste": 1, "invito": 2, "tenga": 1, "sicurezza": 22, "democratiche": 3, "risparmi": 3, "garantisco": 3, "costa": 4, "fatica": 1, "ignorare": 1, "offese": 1, "cominciato": 1, "potere": 3, "verbo": 1, "mettiamoci": 2, "ascoltando": 1, "conferenza": 7, "leggermente": 1, "ossessionato": 4, "relax": 3, "omonimo": 6, "noiva": 1, "\ud83c\uddfa\ud83c\uddf8": 1, "\ud83c\udde8\ud83c\uddf3": 1, "vede": 4, "finestra": 2, "austerity": 2, "\ud83c\uddee\ud83c\uddf9": 2, "protagonisti": 2, "vincitore": 1, "campionato": 1, "cognome": 1, "comunque": 2, "vadano": 1, "finali": 1, "sinisa": 2, "mihajlovic": 2, "lottatore": 1, "leucemia": 2, "avvenendo": 1, "amazzonia": 1, "esige": 1, "colpa": 24, "ong": 4, "g7": 3, "purch\u00e9": 1, "torni": 3, "renzi\u201d": 4, "quindici": 1, "angolo": 2, "ko": 1, "aumentino": 1, "arrivi": 1, "saltino": 1, "prevalga": 2, "singoli": 3, "sognare": 4, "investito": 2, "semina": 2, "speranza": 8, "stipendio": 5, "consentire": 1, "lascio": 1, "professione": 1, "colpiti": 1, "sisma": 1, "rester\u00e0": 3, "ferita": 3, "cicatrizzata": 1, "presente": 1, "insiste": 1, "assurde": 2, "terremoto": 2, "prendermi": 1, "funzionato": 1, "successivi": 1, "stare": 9, "ambito": 1, "onoriamo": 1, "ricostruendo": 1, "anima": 2, "iit": 1, "robot": 3, "prevenzione": 1, "sostenibilit\u00e0": 1, "argomenti": 2, "tosti": 1, "ripaga": 1, "ridicole": 1, "situazione": 5, "chiare": 1, "varie": 1, "interviste": 2, "mettendoci": 1, "formazione": 4, "investendo": 1, "permettere": 2, "under30": 4, "ciocco": 5, "occhetta": 1, "cattolica": 1, "aperto": 2, "ricostruire": 2, "innovatori": 2, "esperto": 1, "bravissima": 2, "milena": 2, "bertolini": 2, "ct": 3, "calcio": 19, "figc": 1, "gravina": 2, "innamorare": 1, "sagge": 1, "mattarella": 3, "pausa": 2, "sportiva": 1, "seconda": 5, "fortis": 3, "filosofia": 2, "briguglia": 1, "quindi": 5, "andrea": 6, "cottolengo": 1, "oltre": 11, "studiano": 1, "impegnano": 2, "riflessione": 1, "corsa": 2, "mattutina": 1, "ernesto": 2, "sindaca": 3, "bisogni": 1, "citarmi": 1, "ossessivo": 1, "ritiene": 1, "lascer\u00e0": 1, "viminale": 9, "destro": 2, "tedesco": 2, "convinto": 4, "averti": 1, "fattene": 1, "partenza": 1, "verso": 10, "lucca": 3, "under": 1, "pensato": 3, "appuntamento": 2, "crisi": 17, "orizzonte": 1, "maggior": 2, "convinti": 1, "superficialit\u00e0": 1, "educare": 2, "inizia": 3, "\ud83d\ude42": 1, "dura": 2, "vista": 3, "ottimo": 1, "peggiori": 3, "repubblicana": 4, "andato": 5, "appena": 6, "diventato": 3, "giuseppe": 2, "dimette": 6, "fallito": 6, "intervengo": 2, "maratonamentana": 1, "fallimento": 3, "cambiamento": 6, "capito": 5, "annuncia": 1, "dimissioni": 12, "esperienze": 2, "azzerato": 2, "pacchia": 3, "finita\u201d": 2, "fuga": 2, "isolato": 3, "sconfitti": 5, "ricordate": 9, "dicevano": 8, "governeremo": 2, "populisti": 12, "funzionano": 1, "falliscono": 1, "istituzionale": 10, "riportare": 2, "collegio": 4, "scelga": 1, "allarme": 1, "bundesbank": 1, "crollo": 2, "produzione": 6, "industriale": 6, "costituisce": 2, "rischiare": 1, "anticipate": 1, "peggiore": 3, "petizione": 7, "sfiducia": 10, "mila": 4, "firmarla": 2, "sbrigarsi": 1, "servir\u00e0": 2, "\ud83d\ude07": 1, "sforzo": 1, "raggiungiamo": 1, "sfiduciapersalvini": 4, "renzi": 12, "pur": 5, "spalancato": 1, "capitanfracassa": 4, "battista": 13, "copertina": 2, "espresso": 2, "arrabbiarsi": 1, "sinistra": 3, "rester\u00f2": 1, "nemico": 1, "rispettano": 1, "paragone": 2, "soffre": 3, "sparato": 2, "palle": 1, "incatenate": 1, "puristi": 1, "coppa": 3, "stadio": 1, "antognoni": 1, "aleviola": 1, "so": 4, "dimetter\u00e0": 1, "renziani\u201d": 1, "accadesse": 1, "riterrei": 1, "seminare": 2, "coraggiosa": 2, "definivano": 1, "invincibile": 1, "pavido": 1, "impaurito": 2, "rientro": 2, "tranquillo": 2, "salvezza": 1, "esca": 1, "eviter\u00e0": 1, "riprender\u00e0": 1, "difenda": 1, "anzich\u00e9": 5, "torno": 5, "dimetti": 1, "vacanze": 1, "quotidiani": 6, "innumerevoli": 1, "scenari": 1, "rischia": 3, "chiaro": 10, "stella": 2, "polare": 1, "serie": 11, "presunti": 2, "effetto": 2, "aspirante": 2, "condannare": 1, "destini": 1, "chiesa": 3, "piero": 2, "perticaia": 1, "arte": 4, "omelie": 1, "sacerdote": 2, "monsignor": 1, "righi": 1, "correndo": 1, "quass\u00f9": 1, "priore\u201d": 1, "chiamavamo": 1, "colline": 1, "fiorentine": 1, "par": 1, "condicio": 1, "buttiamoci": 1, "palio": 3, "siena": 2, "\ud83c\udfc7": 1, "confusione": 1, "cielo\u201d": 1, "riceviamo": 1, "ferragosto": 5, "formati": 1, "comitati": 11, "60mila": 1, "gestita": 1, "seria": 6, "ridere": 4, "scivolarsi": 1, "poltrona": 7, "breve": 4, "brutto": 2, "offre": 1, "maio": 79, "scene": 5, "impallidire": 1, "calciomercato": 1, "\ud83d\ude31": 1, "vedremo": 6, "movimento": 4, "accadere": 1, "cambi\u00f2": 1, "ennesima": 4, "inarrestabile": 1, "dettava": 1, "auspica": 1, "rimpasti": 1, "spera": 1, "pace": 3, "grillini": 17, "gradasso": 1, "elemosina": 2, "parlamentare": 7, "costretto": 3, "dimetta": 1, "firmiamo": 1, "50mila": 1, "firme": 9, "marted\u00ec": 2, "diventa": 2, "aggrapparsi": 1, "ricordargli": 2, "scartabellando": 1, "quarantina": 1, "grasso": 1, "tempore": 1, "slealt\u00e0": 1, "istituzionale\u201d": 1, "accorto": 2, "opposizioni": 2, "colleghi": 3, "andarsene": 1, "firmi": 3, "riesce": 2, "staccarsi": 1, "controcorrente": 1, "adoro": 1, "godetevi": 1, "speciale": 4, "sfidato": 1, "tabellone": 3, "tenersi": 1, "stretta": 1, "vacanza": 3, "mobilitarsi": 1, "mobiliti": 1, "iniziato": 3, "azione": 6, "riprendiamo": 2, "arriviamo": 1, "professionista": 2, "seminatore": 1, "ricostruzione": 2, "desiderio": 2, "lontana": 2, "silenzio": 5, "voglia": 12, "provocato": 1, "tiene": 1, "staff": 1, "contribuente": 1, "taglio": 3, "definiva": 1, "salvarenzi\u201d": 1, "eccesso": 1, "riposare": 1, "dimettere": 1, "vai": 3, "citato": 1, "innamorato": 1, "madama": 1, "aula": 11, "clamoroso": 1, "cercando": 2, "scusa": 4, "governonotax": 1, "nadia": 1, "toffa": 1, "lasciati": 2, "ricorderemo": 1, "splendida": 3, "cancro": 1, "ciascuno": 2, "intensamente": 1, "terremo": 2, "iene": 1, "casellati": 1, "convocare": 1, "assemblea": 2, "calendario": 3, "provocazione": 1, "partigiana": 1, "presidenza": 1, "compiacere": 1, "finir\u00e0": 1, "perder\u00e0": 1, "lunga": 2, "plastico": 1, "minoranza": 1, "senatori": 1, "presenter\u00f2": 2, "sensazione": 1, "marittima": 1, "rassegni": 1, "prepari": 1, "smetter\u00e0": 1, "permanente": 3, "basovizza": 1, "foibe": 1, "ignorata": 1, "generazioni": 2, "sappiano": 1, "conoscano": 1, "ricordino": 2, "ricevo": 3, "sommano": 1, "chiamava": 2, "ebetino\u201d": 1, "avvoltoio\u201d": 1, "migliora\ud83e\udd23": 1, "fermarmi": 1, "culla": 2, "antico": 1, "sogno": 3, "sopporto": 1, "insisto": 1, "tornaconto": 1, "aspettare": 3, "sfascio": 1, "stazzema": 2, "massacro": 1, "visitato": 2, "tenace": 1, "resistenza": 2, "esemplare": 1, "strage": 7, "dimentica": 2, "eccidio": 1, "nazifascista": 1, "eviti": 2, "metta": 1, "pubblici": 3, "rivolto": 2, "offeso": 3, "diffamato": 1, "comprensibile": 1, "spiazzati": 1, "scettici": 1, "dubbiosi": 1, "mangiare": 1, "pizza": 1, "genitori": 2, "inqualificabili": 1, "segni": 1, "confronti": 2, "incensurati": 2, "settantenni": 2, "finiti": 4, "vicende": 2, "vado": 3, "pancia": 1, "quattordici": 3, "ministri\u201d": 2, "flat": 3, "tax": 3, "frattempo": 6, "spara": 1, "parchi": 1, "reagisce": 1, "goditelo": 2, "sacco": 2, "arriver\u00e0": 1, "fannullone": 2, "forzatura": 1, "assecondare": 1, "oppure": 2, "scongiuri": 1, "motivi": 2, "risentimento": 1, "attaccato": 4, "inseguendo": 1, "ripicche": 3, "salvi": 2, "dir\u00e0": 4, "cima": 2, "torre": 1, "arnolfo": 1, "liberazione": 2, "nazisti": 3, "fascisti": 1, "accompagnato": 1, "lass\u00f9": 1, "sentire": 5, "rintocchi": 1, "campana": 1, "martinella": 1, "url\u00f2": 1, "gialloverde": 1, "miseramente": 1, "cullarci": 1, "ritornello": 1, "detto\u201d": 1, "galantuomo": 15, "commentare": 1, "visione": 1, "\u201dif": 1, "you": 2, "decide": 4, "divide\u201d": 1, "insegnato": 2, "barack": 1, "ritengo": 1, "appello": 3, "vicine": 1, "lontane": 2, "fico": 1, "toninelli": 19, "preparati": 1, "\ud83d\ude02\ud83d\ude02\ud83d\ude02": 1, "digerisce": 1, "ragiona": 1, "riunire": 1, "capigruppo": 1, "pagando": 1, "diffondere": 2, "insicurezza": 2, "farnetica": 1, "datemi": 1, "chiederli": 1, "badoglio": 1, "favore": 4, "camomille": 1, "retto": 1, "riportato": 6, "litigando": 1, "prossime": 1, "disegneremo": 1, "rassegna": 2, "arrende": 4, "comitato": 1, "resti": 2, "restituire": 4, "parliamoci": 2, "dicevamo": 1, "sconfitto": 3, "santomato": 3, "pt": 1, "coerenti": 1, "tav": 23, "troppa": 1, "inchieste": 1, "aumenta": 2, "mercati": 1, "ballano": 1, "ladrona": 1, "vent": 2, "retribuzioni": 1, "bassi": 1, "mensili": 2, "vengono": 3, "riconosciuti": 1, "guadagnano": 1, "500\u20ac": 2, "attenzione": 4, "trasformare": 1, "rischiano": 2, "civici": 4, "zone": 2, "teatrino": 1, "saltano": 1, "mobilitazione": 1, "do": 1, "alzati": 1, "pagliacciata": 2, "stancato": 2, "ricorda": 4, "avvisarlo": 1, "daniela": 3, "misul": 1, "ebraica": 1, "educativi": 1, "iniziative": 4, "volontariato": 3, "illuminazione": 1, "viaggi": 1, "scuole": 4, "superiori": 1, "tornavano": 1, "inferno": 2, "auschwitz": 1, "gridare": 3, "malattia": 1, "rendo": 2, "omaggio": 1, "cattolico": 2, "imparato": 3, "sorella": 1, "ebrea": 1, "sensibilit\u00e0": 3, "shal\u00f2m": 1, "commuovo": 2, "giudice": 3, "imputato": 1, "negative": 1, "condividere": 4, "pagine": 5, "centinaia": 7, "perdevano": 1, "miniera": 2, "belga": 1, "marcinelle": 3, "incontrato": 3, "sopravvissuti": 1, "mario": 7, "riusc\u00ec": 1, "salvarsi": 2, "circostanza": 2, "fortunata": 1, "morire": 5, "consegnarmi": 1, "lampada": 1, "accompagnava": 1, "scendeva": 2, "tengo": 3, "ufficio": 3, "ricordarmi": 2, "volevano": 1, "immigrati": 3, "orgoglio": 2, "appartenere": 1, "derisa": 1, "manche": 1, "generosi": 2, "guadagna": 1, "iniziano": 2, "riconoscerlo": 2, "comizio": 1, "sabaudia": 1, "decenni": 2, "ininterrottamente": 1, "pubblico": 7, "lira": 1, "gettone": 2, "telefonico": 1, "internet": 1, "groppone": 1, "blaterare": 1, "chiacchierone": 1, "sconvolgente": 2, "vice": 2, "litighino": 1, "viziati": 1, "imbarazzante": 5, "dato": 11, "produttivit\u00e0": 1, "cresciuti": 2, "benissimo": 3, "professor": 4, "casualmente": 2, "pensiamo": 2, "divertente": 1, "strategia": 4, "statisti": 2, "nostrani": 1, "dem": 1, "arrabbiato\u201d": 1, "votino": 1, "mozione": 8, "rubli": 6, "ragioni": 3, "mancano": 2, "facciamolo": 2, "abbarbicati": 1, "pete": 2, "souza": 1, "fotografo": 1, "ombra": 1, "sofferenza": 1, "americane": 1, "figlie": 1, "diffusione": 4, "ripenso": 2, "amicizia": 4, "sentenza": 2, "definitiva": 2, "\u20ac": 4, "denari": 1, "finanziare": 1, "bestia": 1, "creando": 3, "rancore": 3, "farci": 4, "dirci": 1, "rubato": 2, "timore": 2, "smentita": 1, "restituiranno": 1, "povert\u00e0": 11, "lamenta": 1, "lontananza": 1, "ceti": 1, "deboli": 2, "scrivo": 1, "mille": 3, "aiuto": 2, "tour": 3, "cassa": 1, "dispiace": 3, "rimetterci": 1, "soliti": 1, "gioved\u00ec": 1, "fan": 3, "testata": 1, "agito": 1, "processo": 2, "giornalisti": 5, "tizian": 1, "vergine": 1, "audio": 2, "dialogo": 2, "russi": 8, "verificare": 1, "tangente": 2, "scoprirlo": 1, "mosca": 1, "messi": 4, "devi": 5, "denunciarli": 1, "altrimenti": 2, "sbaglio": 2, "strumentalizzare": 4, "madonna": 1, "sponsorizzare": 1, "decreto": 23, "ennesimo": 3, "credenti": 1, "cinico": 2, "prezzo": 1, "terribilmente": 1, "palchi": 1, "bestemmiando": 1, "america": 4, "atti": 1, "poche": 4, "killer": 4, "ovvio": 1, "vocabolario": 1, "invasioni": 1, "inesistenti": 1, "invasati": 2, "veri": 3, "sparano": 1, "uccidono": 1, "leggendo": 2, "rilancia": 2, "spostato": 1, "mercoled\u00ec": 3, "mozioni": 1, "buffonata": 1, "scherzo": 1, "proposito": 3, "buffonate": 1, "girare": 3, "vestito": 1, "bere": 2, "acqua": 6, "deejay": 1, "attacco": 2, "garante": 2, "giustificare": 2, "belpietro": 2, "editoriale": 1, "abusi": 2, "ricapitolo": 1, "salire": 3, "cerca": 2, "impedire": 2, "riprese": 1, "videomaker": 1, "dicendogli": 1, "occuparsi": 5, "piacciono": 2, "bambini\u201d": 1, "fiata": 1, "sapete": 3, "civili": 6, "attacchiamo": 1, "dubbio": 2, "nazione": 4, "assiste": 1, "el": 1, "paso": 1, "texas": 1, "dayton": 1, "ohio": 1, "rifiuto": 1, "convivenza": 1, "storie": 4, "vivr\u00e0": 1, "ridurre": 1, "dicendo": 7, "disastri": 2, "ehi": 2, "combinato": 1, "cresceva": 3, "usi": 1, "amplifica": 1, "bisboccia": 1, "tocchi": 2, "palla": 4, "raccolta": 4, "dicci": 1, "restituisci": 1, "quereli": 2, "avanza": 3, "mettiti": 1, "paghiamo": 2, "diresti": 1, "bacioni\ud83d\ude18": 1, "promesso": 4, "discussioni": 1, "allucinante": 4, "purtroppo": 10, "inspiegabili": 1, "bravissimi": 2, "azionecivile": 1, "portare": 3, "definendola": 1, "conseguenza": 1, "macchine": 1, "votarla": 1, "alzheimer": 3, "membro": 1, "vuol": 3, "ombre": 1, "rappresentare": 1, "vincere": 8, "sfide": 2, "sembrano": 2, "impossibili": 2, "scienza": 5, "cedere": 1, "stregoni": 2, "membri": 3, "malati": 1, "demenza": 1, "senile": 1, "alia": 2, "guagni": 1, "calciatrice": 1, "azzurre": 2, "alzato": 1, "cielo": 1, "scudetto": 3, "real": 1, "madrid": 1, "restare": 3, "stimolo": 1, "calciatrici": 1, "generale": 1, "inutile": 2, "entusiasmarsi": 1, "vittorie": 1, "trattate": 1, "atlete": 5, "proviamoci": 1, "divisioni": 1, "premio": 2, "bronzo": 1, "gigggino": 2, "tirato": 1, "repertorio": 1, "evergreen": 1, "revoca": 3, "concessione": 1, "benetton": 8, "dar\u00e0": 2, "alitalia": 4, "nessuna": 5, "usa": 3, "diversivo": 2, "morandi": 1, "olimpiadi": 9, "tap": 3, "televisiva": 2, "padellaro": 2, "ritratto": 1, "presenta": 3, "libro": 14, "chiamato": 2, "diffamatorio": 1, "ossessione": 1, "coinvolto": 1, "parlava": 2, "agire": 1, "diffamazione": 1, "gettarmi": 1, "fango": 5, "linee": 1, "tratterr\u00f2": 1, "eventuale": 1, "risarcimento": 2, "resto": 11, "devoluto": 1, "associazione": 2, "weekend": 3, "carlino": 1, "brutta": 1, "vicepremier": 7, "fannulloni": 1, "qualcosa": 9, "attaccarti": 1, "frazione": 1, "prenderti": 1, "resistere": 1, "supercoppa": 1, "liverpool": 3, "chelsea": 1, "arbitrata": 1, "ultima": 10, "equal": 1, "pay": 1, "gesti": 2, "lupo": 4, "collega\u201d": 1, "stephanie": 1, "richiama": 2, "utilizziamo": 1, "godersi": 2, "https": 1, "fondamentali": 1, "democratici": 1, "litigano": 8, "massacrano": 2, "candidato": 2, "democratico": 2, "americano": 3, "\ud83d\ude09": 3, "messa": 2, "alimenta": 1, "caccia": 2, "sottratti": 1, "impiegati": 1, "opaco": 1, "strane": 1, "connessioni": 1, "dirigenti": 2, "funzionari": 1, "sequestro": 1, "profughi": 2, "richiedenti": 1, "asilo": 3, "adeguato": 1, "mobilitare": 1, "volont\u00e0": 2, "sorti": 1, "rassegnano": 2, "demordono": 1, "chiediamo": 1, "alta": 4, "voce": 2, "oppone": 1, "svimez": 1, "sud": 6, "navigator": 3, "incantesimo": 2, "illegalit\u00e0": 1, "badare": 1, "reo": 1, "rilanciate": 1, "statista": 2, "riusciremo": 1, "mettiamocela": 1, "inchiodato": 1, "sbloccate": 2, "giustificarsi": 1, "citano": 1, "rendersi": 1, "credete": 1, "disegnino": 1, "capisce": 3, "premessa": 2, "mezzi": 1, "divertire": 1, "massacrato": 4, "travaglio": 1, "occupato": 1, "banchi": 1, "marciato": 1, "meloni": 1, "sit": 1, "caserme": 1, "commissariati": 1, "profili": 1, "presi": 2, "assalto": 1, "sguaiati": 1, "rozze": 1, "controproducenti": 1, "vergognosa": 1, "bufala": 2, "funerale": 1, "ascoli": 1, "credono": 2, "messe": 1, "attaccarmi": 1, "occorre": 3, "educativa": 3, "mollo": 1, "moller\u00f2": 1, "centimetro": 1, "soap": 1, "opera": 4, "chiamata": 3, "altro\u201d": 1, "vette": 1, "altissime": 1, "luglio": 4, "csc": 1, "pulci": 1, "tornati": 3, "mossa": 1, "notav": 4, "reddito": 12, "cittadinanza": 13, "parmitano": 1, "riscaldamento": 1, "globale": 1, "orgogliosamente": 1, "essersi": 1, "studio": 3, "ospiteremo": 1, "studiando": 1, "combatteremo": 1, "cialtroneria": 1, "governa": 6, "sciacalli": 4, "brigadiere": 1, "cerciello": 3, "rega": 3, "aggredito": 1, "strumentalmente": 1, "sostenendo": 1, "africani": 2, "politico\u201d": 1, "raggiungere": 3, "25mila": 1, "chiedendo": 3, "indegna": 1, "state": 4, "raccolte": 1, "met\u00e0": 5, "necessarie": 1, "firmando": 1, "posto": 2, "litiga": 2, "motivo": 2, "sfiduci": 1, "appendino": 2, "bevono": 1, "eccetera": 1, "casta": 3, "onor": 2, "pot\u00e8": 1, "digiuno": 1, "avvenire": 1, "regna": 1, "insegnante": 1, "rivolse": 1, "divisa": 2, "urlando": 1, "dovete": 1, "morire\u201d": 1, "risposi": 1, "vedete": 3, "prof": 3, "carabiniere": 4, "meno\u201d": 1, "insultano": 5, "degni": 1, "elianafrontini": 1, "ministero": 2, "teoria": 1, "guidato": 1, "ufficializzato": 1, "favorevole": 3, "rifiutato": 1, "aspetta": 3, "capir\u00e0": 1, "infame": 1, "stringere": 1, "arma": 4, "perbene": 1, "giocatori": 1, "settebello": 1, "campioni": 3, "pallanuoto": 1, "standing": 1, "ovation": 1, "coach": 1, "sandro": 1, "trionfo": 3, "stanotte": 5, "sonno": 2, "largo": 1, "annegate": 1, "sposato": 1, "coltellate": 1, "turista": 1, "controllo": 1, "licenziato": 1, "inefficace": 1, "ottiene": 2, "dirette": 1, "convinta": 1, "noto": 3, "affannino": 1, "finito\u201d": 1, "pre": 1, "occupino": 1, "argomento": 2, "caldo": 2, "poverino": 1, "proviamo": 1, "benino": 1, "sostenuto": 1, "palermo": 2, "passando": 1, "difeso": 2, "violenti": 1, "invaso": 1, "cantiere": 1, "sassate": 1, "poliziotti": 1, "casi": 1, "percorsi": 1, "sorpreso": 2, "rubare": 1, "assicuri": 1, "patrie": 1, "galere": 1, "castrocaro": 1, "marianna": 1, "tonellato": 1, "rilanciando": 1, "josephtidd": 1, "giocatrice": 1, "orlando": 1, "pride": 1, "carsonpickett": 1, "amano": 2, "sportivi": 1, "parzialmente": 1, "sinistro": 2, "joseph": 2, "ritorno": 3, "agitare": 1, "trovato": 4, "amica": 1, "simile": 2, "pura": 1, "autentica": 2, "smisurata": 1, "morto": 3, "rutger": 2, "hauer": 2, "attore": 1, "successo": 9, "blade": 4, "runner": 4, "belle": 2, "esplode": 1, "farmi": 2, "apprezzare": 1, "liceo": 2, "religione": 1, "bargigia": 1, "spingeva": 1, "ambientato": 1, "brivido": 1, "rivedendo": 1, "augurandovi": 2, "augurandomi": 1, "capaci": 1, "profonde": 1, "autentiche": 2, "piene": 1, "venti": 1, "forse": 9, "stupirete": 1, "contraria": 1, "legano": 1, "chance": 1, "pulito": 1, "dici": 5, "onesto": 1, "legato": 2, "legare": 1, "denunci": 1, "venga": 1, "beautiful": 2, "venendo": 1, "noia": 2, "lasciate": 1, "accettate": 1, "americana": 2, "potete": 1, "andiamo": 4, "parleranno": 1, "piccioncini": 1, "interessati": 1, "trama": 1, "seguite": 1, "\ud83d\ude01": 1, "bisognava": 1, "andavano": 1, "tenuti": 1, "serviva": 1, "cattivi": 1, "cattolici": 1, "aquile": 2, "randagie": 2, "milanesi": 1, "sfidarono": 1, "fascismo": 1, "impervia": 1, "val": 3, "codera": 3, "valle": 1, "divenne": 1, "transito": 1, "svizzera": 1, "ghetti": 2, "baden": 2, "vittorio": 2, "clan": 1, "annunciano": 1, "dedicato": 2, "antifascisti": 1, "liberi": 1, "aspettative": 2, "coraggiosi": 1, "contrari": 1, "pierluigi": 1, "coppola": 1, "interrogazione": 4, "collega": 2, "margiotta": 1, "spiegazioni": 1, "caccer\u00e0": 1, "rimpasto": 1, "togliergli": 1, "gaia": 1, "tortora": 1, "omnibus": 1, "abituato": 1, "difendevo": 1, "schifose": 1, "strumentalizzazioni": 1, "bibbiano": 3, "aprivano": 1, "franceschini": 1, "attribuisce": 1, "elogio": 1, "punito": 1, "piccoli": 3, "odioso": 1, "esistere": 2, "responsabili": 1, "paghino": 1, "magistratura": 1, "individui": 1, "chiunque": 2, "bassa": 4, "attribuendoci": 1, "colpe": 1, "avvenuto": 1, "potendo": 1, "cercano": 3, "belli": 4, "montana": 1, "parco": 2, "yellowstone": 2, "yoghi": 1, "bubu": 1, "eroi": 2, "infanzia": 1, "meli": 1, "magone": 1, "vedi": 6, "magnifico": 1, "scartata": 1, "investitori": 1, "instabilit\u00e0": 1, "lamborghini": 2, "ibiza": 1, "festeggiare": 3, "assunzioni": 1, "contratto": 1, "funziona": 2, "gronda": 2, "fondamentale": 2, "esercito\u201d": 1, "impedirne": 1, "realizzazione": 1, "blocca": 2, "finch\u00e9": 1, "dirvi": 3, "fiorentini": 3, "luna": 6, "esilarante": 1, "meravigliosi": 2, "osservava": 1, "impresa": 3, "indimenticabile": 1, "affascina": 1, "scolorisce": 1, "minimamente": 1, "moderne": 1, "conserva": 1, "intatta": 1, "eroismo": 2, "affinch\u00e9": 1, "diventasse": 1, "saunasegaarmstrong": 1, "conquista": 3, "limiti": 1, "sognato": 2, "kennedy": 1, "cocente": 1, "comincia": 1, "ansia": 1, "incollato": 1, "istante": 3, "sbarco": 2, "bianca": 1, "nixon": 1, "discorso": 9, "caso": 10, "celebrare": 1, "eroi\u201d": 1, "scomparsi": 1, "umanit\u00e0\u201d": 1, "conferma": 1, "giuste": 2, "competenze": 1, "reinventare": 1, "altroch\u00e9": 1, "sussidi": 3, "boris": 1, "johnson": 1, "sbagliando": 1, "bugia": 1, "positiva": 2, "uk": 3, "puoi": 6, "vieni": 2, "verificando": 1, "microsoft": 1, "nadella": 1, "passaggio": 2, "importanza": 1, "condizione": 1, "disabilit\u00e0": 1, "umanesimo": 2, "esista": 1, "accompagnata": 1, "coraggio\u201d": 1, "borsellino": 1, "agostino": 1, "emanuela": 1, "vincenzo": 1, "walter": 2, "eddie": 1, "claudio": 3, "martiri": 1, "votano": 2, "peggior": 1, "salvano": 1, "ruby": 1, "residua": 1, "meritarsi": 1, "finanziario": 1, "giustificazioni": 2, "composizione": 1, "promuovere": 1, "perdono": 2, "perdiamo": 1, "tramite": 1, "inesistente": 1, "lettere": 1, "segue": 1, "dossier": 2, "macch\u00e9": 1, "barba": 1, "grado": 4, "governare": 2, "governino": 1, "certifichi": 1, "telenovela": 1, "categoria": 2, "rilanciano": 2, "geniale": 2, "provarci": 1, "gilet": 8, "gialli": 8, "sibilia": 3, "lezzi": 1, "taverna": 1, "scie": 2, "chimiche": 2, "sirene": 2, "buttate": 2, "expo": 5, "provi": 2, "question": 1, "time": 1, "favorevoli": 2, "costretti": 1, "mollare": 3, "alleanza": 2, "colpo": 4, "educato": 1, "lettura": 1, "rip": 3, "camilleri": 1, "segnalo": 1, "terr\u00e0": 1, "riservata": 1, "egual": 1, "nati": 4, "1\u00b0": 1, "gennaio": 2, "professoressa": 1, "100\u20ac": 1, "compreso": 1, "coprire": 2, "cifra": 3, "finanziatori": 1, "personalmente": 1, "equivalente": 2, "mensile": 1, "ursula": 2, "von": 2, "der": 2, "leyen": 2, "aiutarla": 1, "ideale": 1, "atene": 2, "bel": 3, "grecia": 6, "elevato": 1, "tale": 1, "onorato": 1, "riconoscenza": 1, "mito": 3, "greco": 1, "disprezza": 2, "\u00a9stavros": 1, "giannoulis": 1, "salveranno": 1, "precipitare": 1, "sostanzialmente": 1, "aerei\u201d": 1, "domando": 4, "pazzo": 1, "finge": 2, "tristezza": 3, "gestir\u00e0": 1, "termini": 1, "management": 1, "solidit\u00e0": 1, "investitore": 1, "vergognarsi": 3, "ridicoli": 1, "vabb\u00e8": 1, "ufo": 3, "ridete": 1, "pagate": 1, "relazioni": 3, "invitato": 2, "famosa": 2, "cena": 3, "putin": 3, "affida": 1, "bastavano": 2, "mediterraneo": 2, "mancavano": 1, "dovevano": 2, "falsificava": 1, "curriculum": 1, "aboliva": 1, "invitava": 1, "insaputa": 1, "racontando": 1, "inchioda": 2, "immensi": 1, "wimbledon": 5, "djokovic": 1, "federer": 4, "cugini": 1, "oltralpe": 1, "alleati": 3, "macron": 8, "scommette": 2, "investimento": 2, "francese": 5, "occupiamo": 1, "differenze": 2, "gigantesco": 2, "mister": 2, "megan": 1, "rapinoe": 1, "goleador": 1, "posizioni": 4, "strong\u201d": 1, "vittoria\u201d": 1, "prendetevi": 1, "ascoltarla": 1, "rivisto": 1, "semifinale": 3, "torneo": 2, "fantastico": 1, "bastafake": 3, "usciamo": 1, "urlavate": 1, "deriva": 3, "autoritaria": 2, "perch\u00e8": 1, "tacete": 4, "riforma": 1, "gridavate": 1, "qualsiasi": 5, "finanziamento": 2, "illecito": 1, "potenza": 1, "straniera": 1, "dicevate": 1, "stagnazione": 1, "lamentavate": 1, "comando": 1, "s\u00f2le": 1, "planche": 1, "des": 1, "belles": 1, "filles": 1, "france": 1, "arrivo": 2, "nibali": 1, "aru": 1, "giulio": 1, "ciccone": 1, "maglia": 1, "gialla": 1, "storica": 1, "ciclismo": 1, "riviera": 1, "romagnola": 1, "superare": 2, "ostacolo": 1, "concittadini": 2, "mostrano": 2, "botta": 1, "querelo": 1, "potenze": 1, "straniere": 1, "paragonato": 1, "mica": 1, "lamentato\u201d": 1, "potersi": 1, "lamentare": 1, "vinceva": 1, "lippi": 1, "cannavaro": 1, "totti": 1, "buffon": 1, "pirlo": 1, "vincente": 2, "speriamo": 1, "mancini": 1, "replicare": 2, "tifava": 1, "tricolore": 1, "oppressione\u201d": 1, "convertito": 1, "italiani\u201d": 1, "percorso": 1, "resta": 1, "tredici": 1, "troveremo": 1, "volontario": 1, "diviso": 1, "irraggiungibile": 1, "crescer\u00e0": 1, "finita": 4, "ortisei": 1, "intensa": 1, "bici": 1, "camminate": 1, "arcobaleno": 1, "dolomiti": 2, "alexis": 2, "tsipras": 1, "venisse": 2, "riconosciuto": 1, "litigammo": 1, "furiosamente": 1, "lato": 1, "sedevo": 1, "sofferto": 1, "trovare": 3, "compromesso": 1, "tenendo": 1, "verranno": 1, "porti": 3, "chiusi": 1, "sbarcheranno": 1, "durano": 2, "mezzoretta": 1, "sbarcano": 4, "rabbia": 6, "butta": 1, "crepe": 1, "nutella": 1, "piatto": 1, "tortelli": 1, "altrove": 1, "accogliamo": 1, "pantomima": 1, "barzelletta": 2, "condotta": 1, "esseri": 1, "dettare": 1, "agenda": 1, "aggiornamento": 1, "sala": 6, "vizio": 1, "rispettata": 1, "rispettate": 1, "toglie": 1, "strepitoso": 1, "tornassimo": 1, "60secondi": 14, "renzirepubblica": 1, "leggerla": 1, "mancanza": 2, "legalit\u00e0": 5, "culle": 1, "vuote": 1, "ricevere": 1, "telefonate": 1, "abitano": 1, "vedono": 1, "spazzatura": 1, "chiedono": 4, "incapacit\u00e0": 1, "assoluta": 3, "amministrazione": 2, "raggi": 5, "gridando": 1, "onest\u00e0\u201d": 1, "benedetto": 1, "sistemare": 1, "nettezza": 3, "conter\u00e0": 1, "contiamo": 1, "scende": 2, "positivo": 2, "sottolineato": 1, "fateci": 1, "tacciono": 1, "seri": 2, "cala": 2, "direttamente": 1, "proporzionale": 1, "follie": 1, "balcone": 2, "abolisci": 1, "proponi": 1, "minibot": 6, "schizza": 1, "segui": 1, "normali": 2, "discesa": 1, "schizzato": 1, "massimi": 2, "tutelare": 1, "risparmiatori": 4, "password": 1, "david": 1, "sassoli": 1, "eletto": 2, "charles": 1, "michel": 1, "josep": 1, "borrell": 1, "christine": 1, "lagarde": 1, "ah": 2, "determinato": 1, "precario": 1, "galattica": 2, "statistiche": 1, "basate": 1, "indeterminato": 3, "mente": 2, "capita": 2, "sottolinearla": 1, "app18": 1, "18enni": 1, "app": 1, "bonusrenzi": 3, "bataclan": 1, "finanziato": 1, "cambiata": 1, "reintrodotta": 1, "recuperato": 2, "musica": 2, "libri": 4, "rivoluzionario": 1, "biblioteca": 1, "museo": 1, "buone": 1, "ideologia": 2, "attuale": 1, "bonus": 2, "studiato": 2, "vivo": 2, "accusi": 1, "filo": 3, "senese": 1, "montaperti": 1, "problemino": 1, "senesi": 1, "ammettere": 1, "manifestazione": 1, "organizzazione": 1, "contrade": 1, "campo": 1, "cene": 1, "deum": 1, "benedizione": 1, "cavallo": 1, "dettagliato": 1, "ripulire": 1, "web": 3, "inquinamento": 1, "ridotta": 1, "raggi\u201d": 1, "ok": 2, "scendi": 1, "combattono": 1, "elfo": 1, "puccini": 1, "bastafakenews": 1, "ragazzemondiali": 3, "rappresentate": 1, "lavoratrice": 1, "puglia": 1, "faticare": 1, "fila": 2, "occupazionali": 2, "presa": 2, "riaprire": 1, "garantendo": 2, "cialtroni": 2, "governano": 1, "porter\u00e0": 1, "chiusura": 1, "sembrato": 1, "abbracciarla": 1, "dirle": 1, "facile": 3, "operai": 1, "atlantia": 1, "compito": 2, "aprirne": 1, "cinquanta": 1, "rivolta": 1, "stonewall": 1, "segn\u00f2": 1, "diffidenze": 1, "coltivato": 1, "amicizie": 1, "compagne": 1, "alessia": 1, "legislazione": 1, "frutto": 2, "ius": 3, "caratteraccio": 1, "moda": 1, "decrescita": 1, "ricoveratelo": 1, "letto": 7, "provato": 2, "fuso": 1, "orario": 1, "dormo": 1, "dormire": 1, "babbo": 1, "bimbo": 1, "accapponare": 1, "isola": 1, "greca": 1, "importa": 1, "sconvolgerci": 1, "renderci": 1, "antica": 1, "novecento": 1, "alternative": 1, "ammiro": 2, "alba": 1, "malpensa": 1, "coincidenza": 1, "fiumicino": 1, "compro": 1, "michela": 1, "assunto": 1, "inquinati": 1, "troll": 4, "vinte": 1, "vittimismo": 1, "rassegnazione": 2, "criticando": 1, "scommesso": 1, "universiadi": 1, "taormina": 1, "apple": 2, "rilancio": 1, "pompei": 3, "reggia": 1, "caserta": 1, "archeologici": 1, "reggio": 1, "calabria": 1, "accelerazione": 1, "bari": 1, "sbloccaitalia": 1, "nodo": 2, "salva": 6, "meschine": 1, "attaccava": 1, "fiorentino\u201d": 1, "scriveva": 1, "ricoveratevelo": 1, "esultare": 3, "conosciamo": 1, "convenienza": 1, "rivendicano": 1, "italiano\u201d": 1, "virginia": 2, "negare": 1, "protesta": 1, "eventi": 2, "cambiano": 2, "vivalitalia": 1, "consumava": 1, "promesse": 4, "falsi": 1, "basava": 1, "bloccata": 1, "of": 1, "course": 1, "debiti": 1, "pa": 2, "pagamenti": 1, "notevolmente": 1, "impressionanti": 1, "farmindustria": 1, "pagava": 2, "scatole": 1, "privata": 2, "inquinare": 1, "megaballa": 1, "giovanni": 1, "perla": 1, "mondo\u201d": 1, "meryl": 1, "streep": 1, "qual": 2, "capolavoro": 4, "potrei": 1, "africa\u201d": 1, "diavolo": 1, "veste": 1, "prada\u201d": 1, "recente": 1, "post\u201d": 1, "stupir\u00f2": 1, "perfetta": 1, "the": 1, "iron": 1, "lady\u201d": 1, "cassonetti": 2, "interrati": 2, "girando": 1, "gestione": 1, "immondizia": 1, "pratico": 1, "amministratore": 2, "capitali": 1, "sforzi": 1, "pulite": 1, "inviato": 1, "toccarlo": 1, "annusare": 1, "giunta": 1, "riuscire": 1, "peggiorare": 1, "rifiuti": 2, "eletta": 1, "permisi": 1, "suggerire": 1, "copiare": 1, "funzionava": 1, "domenicale": 1, "meeting": 1, "arriveranno": 2, "domandare": 1, "polemici": 1, "invio": 2, "anticipato": 1, "sereni\u201d": 1, "prestissimo": 1, "intervenire": 1, "distrutto": 3, "zio": 1, "paperone": 1, "generosit\u00e0": 1, "castit\u00e0": 1, "dracula": 1, "sangue": 2, "diremo": 1, "affidava": 1, "appassionati": 2, "pedonalizzazioni": 1, "elettriche": 1, "volumi": 1, "raddoppio": 1, "biblioteche": 1, "tram": 1, "notti": 1, "bianche": 1, "concerti": 1, "vicesindaco": 3, "tenyearsago": 1, "promettendo": 1, "seicentomila": 1, "rimpatri": 2, "accise": 2, "benzina": 2, "fornero": 1, "disperato": 1, "limita": 1, "piagnucolare": 1, "direte": 1, "ohi": 1, "privato": 1, "casino": 2, "abolizione": 3, "ires": 2, "superammortamento": 2, "salta": 1, "nasconde": 1, "emanuele": 3, "crestini": 3, "rocca": 1, "papa": 1, "avvenuta": 1, "presumibilmente": 1, "dovuta": 1, "gas": 1, "mettersi": 3, "ustioni": 1, "ferite": 1, "comportato": 2, "eroe": 1, "cittadine": 1, "civico\u201d": 1, "servendo": 1, "estremo": 1, "averci": 1, "espressione": 1, "cittadino\u201d": 1, "trimestre": 2, "torner\u00e0": 2, "12mesiconilsegnomeno": 1, "difesa": 2, "abbracciato": 1, "stimo": 2, "guido": 2, "crosetto": 1, "draghi": 5, "aiuta": 2, "aziende": 5, "competere": 1, "schiera": 2, "rovescia": 1, "cari": 2, "imprenditori": 3, "veneti": 1, "lombardi": 1, "sentite": 1, "votate": 1, "aiutando": 1, "boicottando": 1, "tremila": 1, "monti": 4, "santa": 4, "firenzesecondome": 7, "flessibilit\u00e0": 3, "ottenuta": 1, "carit\u00e0": 1, "occupati": 4, "pressione": 3, "aumentata": 1, "peggiorato": 1, "percentuali": 1, "diventati": 1, "diminuita": 1, "pontifica": 1, "dimentichiamoci": 1, "staffetta": 1, "sindrome": 1, "down": 1, "trisomia": 1, "buonsabato": 1, "prendono": 2, "comuni": 4, "predissesto": 1, "tolgono": 1, "rendere": 1, "competitive": 1, "buchi": 1, "incapaci": 3, "chiamarlo": 1, "arrivato": 2, "rinuncio": 1, "alleno": 1, "riprendendo": 1, "stretching": 1, "fidarci": 1, "incompreso": 1, "antipopolare": 1, "finirla": 1, "retorica": 1, "torto": 3, "idiozia": 1, "gioia": 2, "last": 1, "minute": 1, "forzaazzurre": 1, "bologna": 1, "intervistato": 2, "andavo": 2, "zia": 1, "b": 2, "bomber": 1, "rudy": 1, "dio": 2, "minore": 2, "generazione": 1, "battutine": 1, "stupide": 1, "stereotipi": 1, "meravigliose": 1, "cina": 1, "climatico": 1, "emendamenti": 1, "controllare": 2, "indicare": 1, "fantoccio": 1, "figuraccia": 3, "palesata": 1, "figura": 1, "attendere": 1, "primavera": 1, "allenamento": 1, "cagliari": 2, "davide": 2, "astori": 1, "concretamente": 1, "da13": 1, "smette": 1, "vola": 1, "giustiniani": 3, "discutiamo": 1, "andate": 1, "amministrative": 1, "commenteremo": 1, "elettorali": 1, "mafiosa": 1, "georgofili": 1, "documentario": 1, "pernondimenticare": 1, "zucconi": 1, "giornalismo": 1, "mancher\u00e0": 1, "profonda": 2, "vedervi": 2, "seggi": 1, "riaffermate": 1, "tramandate": 1, "rispettando": 1, "violando": 1, "vergognosamente": 1, "utilizzo": 1, "figuracce": 2, "strasburgo": 1, "assenteisti": 1, "inquinando": 1, "rivoluzionare": 1, "fermo": 1, "menzogne": 2, "may": 2, "stronzate\u201d": 1, "pratica": 1, "michele": 1, "brambilla": 1, "graditi": 3, "privilegiata": 1, "digitali": 1, "professionisti": 2, "perdi": 1, "nikilauda": 1, "carlo": 3, "calenda": 2, "scavuzzo": 2, "irene": 2, "tinagli": 2, "caterina": 2, "impaziente": 2, "rivedere": 2, "partire": 2, "gentile": 1, "usano": 2, "reciprocamente": 1, "insultarsi": 1, "lieto": 2, "pensieri": 2, "preferirei": 1, "pensassero": 1, "verbalizzare": 1, "salari": 1, "leggi": 5, "unioni": 2, "autismo": 1, "caporalato": 1, "azienda": 1, "sigarette": 2, "elettroniche": 2, "duri": 1, "puri": 1, "provate": 1, "qua": 1, "votando": 1, "compare": 1, "condono": 1, "producono": 1, "condoni": 1, "troppi": 1, "direi": 1, "marchetta": 1, "beffa": 2, "emendamento": 2, "paladini": 2, "zitti": 2, "butter\u00e0": 1, "chiamavano": 1, "mani": 2, "iva\u201d": 1, "rimuovere": 1, "striscioni": 2, "sparge": 1, "rispondiamo": 2, "ironia": 2, "portatelalunga": 1, "arranca": 1, "costretta": 1, "quotidiana": 2, "corrono": 2, "corea": 1, "orgogliosa": 1, "uso": 1, "5g": 1, "seul": 1, "tardoadolescenti": 1, "guidano": 1, "risale": 1, "boomerang": 1, "strappa": 2, "telefonini": 1, "squallidi": 1, "rosse": 1, "manifesta": 1, "rivincita": 1, "ultras": 2, "esempi": 2, "nervosismo": 1, "economici": 1, "prepariamoci": 1, "palloncino": 5, "scoppiare": 1, "muove": 1, "denunciai": 1, "rilanciavano": 1, "visualizzazioni": 1, "diffamanti": 1, "segnalare": 1, "diffonde": 1, "maggiorenne": 1, "rimarrai": 1, "rivoluzionato": 1, "mix": 1, "esplosivo": 1, "energia": 1, "18\u00b0": 1, "rinuncia": 1, "indennit\u00e0": 1, "borse": 1, "ercolano": 3, "ciro": 4, "buonajuto": 2, "territorio": 1, "valorizzate": 1, "cnel": 3, "copiano": 1, "custodi": 1, "schierati": 2, "procurati": 1, "renzismo\u201d": 1, "svegliarsi": 1, "letargo": 1, "rassicurarci": 1, "vivi": 2, "silenziosi": 1, "sparate": 2, "umiliazione": 1, "evidentemente": 1, "torneranno": 1, "apocalittici": 1, "avventati": 1, "certi": 2, "giudizi": 2, "osannato": 1, "pel\u00e8": 1, "sconfittta": 1, "barcellona": 1, "affrettati": 1, "trovano": 1, "mettono": 2, "doppia": 1, "camp": 1, "nou": 1, "anfield": 1, "road": 1, "magico": 1, "giudicano": 1, "barcone": 1, "sepoltura": 2, "cadaveri": 1, "morti": 2, "dolorosa": 1, "doverosa": 1, "naufragio": 1, "quattordicenne": 1, "mali": 1, "pagella": 3, "strada\u201d": 8, "disumano": 2, "iniziata": 1, "biennale": 1, "relitto": 1, "sfuggendo": 2, "natura": 1, "sequestrare": 1, "telefonino": 3, "strappato": 2, "applausi": 1, "criticava": 1, "cancella": 2, "video\u201d": 1, "urgente": 1, "risposte": 1, "esaustive": 1, "insultare": 3, "lasci": 2, "occupi": 2, "diritto": 2, "perche": 1, "accadr\u00e0": 1, "fortunatamente": 1, "lasciarci": 2, "visegrad": 1, "destre": 1, "austriache": 1, "tedesche": 1, "nordiche": 1, "allea": 1, "combatte": 2, "maggio": 1, "ayrton": 3, "senna": 3, "formula1": 1, "venticinque": 1, "impresso": 1, "dimenticare": 1, "desolante": 1, "perfettamente": 3, "arbitrare": 1, "mugello": 1, "rientrando": 1, "spogliatoi": 1, "volevo": 1, "circuito": 2, "pilota": 2, "trasformato": 1, "leggenda": 2, "guidava": 1, "potevi": 1, "amarlo": 1, "inimitabile": 1, "lucio": 1, "avvicinare": 1, "bonus18anni": 1, "speso": 2, "acquistare": 1, "sentito": 1, "acquisto": 1, "libri\u201d": 1, "ignoranza": 3, "trovi": 1, "esulta": 1, "esultano": 2, "testardi": 1, "irregolari": 1, "urlato": 1, "confessato": 2, "780\u20ac": 1, "inps": 1, "sparita": 2, "raccontando": 1, "montagna": 1, "grillino": 4, "civilmente": 1, "banali": 1, "osservazioni": 1, "aprile": 2, "silvano": 3, "sbuffano": 1, "polemizzano": 1, "dispetti": 2, "sembrare": 1, "\u2013": 2, "dovunque": 1, "riferisco": 1, "dedicare": 1, "pasquale": 1, "ribasso": 1, "paralizzando": 1, "atteggiamento": 1, "talmente": 2, "sgonfier\u00e0": 2, "tecnicamente": 2, "banco": 1, "sfortuna": 1, "mal": 2, "rissa": 1, "processi": 4, "eolico": 1, "comportamenti": 1, "logici": 1, "assistiamo": 1, "totale": 2, "affidare": 1, "fognini": 1, "tornei": 1, "prestigiosi": 1, "chapeau": 1, "montecarlo": 1, "pasqua": 2, "affetti": 1, "felicit\u00e0": 1, "vigile": 1, "tragiche": 1, "chiese": 1, "sri": 1, "lanka": 1, "accettato": 1, "dicessero": 1, "violenta": 1, "falsit\u00e0": 1, "dimostrare": 1, "predisposto": 1, "azioni": 1, "criticare": 1, "hitler": 1, "parenti": 1, "affari": 1, "muoiono": 2, "risarcirmi": 1, "terrificante": 1, "parli": 1, "scoperta": 1, "astrofisica": 1, "racconti": 1, "libia": 2, "dimostri": 1, "filano": 1, "inguardabile": 1, "sorridente": 1, "cascine": 1, "isolotto": 1, "boom": 5, "piace\u201d": 1, "palme": 1, "andrebbe": 2, "recuperata": 1, "affaccia": 2, "urla": 1, "abolito": 2, "sfasciato": 1, "ripresa": 1, "mogio": 2, "maest\u00e0": 1, "irruzione": 1, "incompetenza": 2, "addetti": 2, "accinge": 1, "smascherare": 1, "aspettano": 1, "aumenteranno": 1, "allacciamoci": 1, "cinture": 1, "toccher\u00e0": 1, "macerie": 1, "treviso": 2, "unaltrastrada": 21, "lombardia": 2, "veneto": 5, "lecco": 1, "tavernerio": 1, "como": 1, "pavia": 1, "bassano": 1, "grappa": 1, "sedico": 1, "bl": 1, "padova": 1, "terre": 1, "gonfiate": 1, "decisive": 1, "sgonfiare": 1, "gambe": 1, "rimandare": 1, "eterno": 1, "raccontare": 2, "introdotto": 2, "patrimoniale": 1, "baster\u00e0": 2, "felpa": 1, "incolpare": 1, "quotidianamente": 1, "accompagnano": 1, "braccetto": 1, "sparatoria": 1, "periferia": 1, "preoccuparsene": 2, "babysitter": 1, "incidenti": 2, "raccontino": 1, "mangiano": 1, "mortali": 1, "terrificanti": 1, "tagliato": 1, "gigino": 1, "pallida": 1, "inail": 1, "lella": 6, "paita": 3, "impegna": 1, "liguria": 2, "candida": 1, "regione": 2, "massacrata": 1, "interna": 1, "primarie": 1, "rompe": 1, "strumentalizzazione": 2, "avviso": 1, "garanzia": 1, "alluvione": 2, "centrosinistra": 1, "regionali": 3, "incarica": 1, "assolta": 2, "ricorso": 1, "giustizialisti": 1, "cinici": 1, "privi": 1, "impediva": 1, "imposte": 1, "locali": 2, "addizionali": 1, "irpef": 1, "soggiorno": 1, "restituito": 1, "tassazione": 1, "selvaggia": 1, "gi\u00f9": 1, "caratteraccio\u201d": 1, "simpatici": 1, "crescono": 1, "autostrada": 1, "follonica": 1, "spezia": 1, "parma": 1, "bozzolo": 1, "mantova": 1, "luoghi": 2, "mazzolari": 1, "regioni": 1, "abbracciare": 2, "appassionata": 1, "lusso": 1, "restituirvi": 1, "calore": 3, "presentazioni": 6, "castenedolo": 1, "bs": 1, "gufi\u201d": 1, "confindustria": 1, "prevede": 1, "\u00abnoi": 1, "\u00bb": 1, "gufi": 2, "carabinieri": 4, "poteva": 1, "utilizza": 2, "divise": 1, "racimolare": 1, "sogna": 1, "diventare": 1, "servire": 1, "chiacchiericcio": 2, "animato": 1, "ragazzini": 1, "scuolabus": 1, "racconto": 2, "andarono": 1, "fanpage": 1, "conduttore": 1, "financial": 2, "times": 2, "mostriamo": 1, "rifiutiamo": 1, "scandali": 1, "indagati": 1, "arrestati": 1, "buche": 1, "bloccano": 1, "autobus": 1, "scale": 1, "mobili": 1, "accartocciano": 1, "cinghiali": 1, "rovistano": 1, "disonesti": 1, "sicuramente": 2, "sventato": 1, "grave": 2, "pericolo": 1, "dedizione": 1, "garantiste": 1, "diventano": 1, "giustizialiste": 1, "regalano": 1, "scoprono": 1, "garantismo": 1, "nascondersi": 1, "dietro": 2, "sacro": 1, "blog": 1, "piattaforma": 1, "sanno": 1, "testo": 1, "ipocriti": 1, "emozionante": 2, "diano": 1, "fridaysforfuture": 1, "confrontato": 1, "marine": 2, "pen": 4, "uguali": 2, "sostenitrici": 1, "sento": 1, "rappresentano": 1, "londra": 3, "andr\u00e0": 3, "uscendo": 1, "immane": 1, "britannica": 2, "mostrando": 2, "inconcludente": 1, "mentendo": 1, "discusso": 1, "italo": 1, "integrale": 1, "accusarmi": 1, "tranne": 1, "juventino": 1, "manchester": 1, "champions": 1, "bisognerebbe": 1, "ronaldo": 1, "allegri": 2, "allenatori": 1, "scusarsi": 1, "livornese": 1, "riccardo": 2, "muti": 3, "simboli": 1, "universali": 1, "permetta": 1, "insultarlo": 1, "volgare": 1, "incompetente": 2, "banda": 1, "scappati": 1, "venezuela": 8, "previsioni": 1, "sbagliate": 2, "criterio": 1, "casaleggio": 1, "volutamente": 1, "riguardato": 1, "approfondito": 1, "pericoli": 1, "corre": 1, "incompetenti": 1, "proseguire": 1, "pescara": 1, "cialtrone": 2, "presentazione": 2, "emoziona": 2, "rai3": 1, "riesame": 1, "annullato": 1, "gip": 1, "parsa": 1, "abnorme": 1, "arresto": 3, "circo": 1, "interessato": 1, "archiviazioni": 1, "assoluzioni": 1, "aule": 1, "rappresentante": 1, "brutti": 1, "18app": 1, "quattrocentomila": 1, "comprato": 1, "avvicina": 1, "manifesto": 1, "stop": 2, "rtl": 1, "nonstopnews": 1, "varese": 1, "sara": 1, "imprenditore": 4, "est": 1, "difficilissimo": 1, "togliersi": 1, "poeta": 3, "stabilire": 1, "sentirsi": 1, "leghiste": 1, "rinfacciavano": 1, "suicidi": 2, "resoconti": 1, "coscienza": 2, "schifo": 2, "bieco": 1, "meschino": 1, "arrivasse": 1, "desse": 1, "recuperassimo": 1, "nicola": 1, "zingaretti": 2, "netta": 1, "segretario": 1, "bobo": 1, "toccato": 2, "brindisi": 1, "scandiano": 1, "ferrara": 2, "forl\u00ec": 1, "camminare": 4, "lecce": 4, "riparte": 1, "romagna": 3, "stupefacente": 1, "circondato": 1, "vedevo": 1, "magna": 1, "universit\u00e0": 1, "strapiena": 1, "preoccupano": 1, "ufficiale": 3, "grazia": 1, "ripartito": 1, "disoccupazione": 5, "tornano": 1, "gravit\u00e0": 1, "rimaste": 2, "martina": 1, "franca": 1, "vederla": 1, "astenersi": 2, "odiatori": 1, "descrivere": 1, "libreria": 2, "siciliana": 1, "impiccarmi": 1, "intervenendo": 2, "dissennate": 1, "commentando": 1, "cammino": 3, "sciagurate": 1, "vedermi": 1, "inter": 1, "ciuffenna": 1, "cortona": 1, "percorrere": 2, "preparare": 1, "foligno": 1, "scritta": 1, "cantante": 1, "aprire": 1, "macchina": 1, "guidata": 1, "insultata": 1, "pesantemente": 1, "violento": 1, "partecipano": 1, "abbracciarvi": 1, "tappe": 1, "tantissima": 1, "clamorosa": 1, "aumentati": 1, "prendendosene": 1, "75mila": 1, "122mila": 1, "medico": 1, "soldatessa": 1, "tg": 3, "diminuiscono": 1, "diranno": 1, "racconteranno": 1, "giarrusso": 1, "portavoce": 1, "dovrei": 1, "impiccato\u201d": 1, "stupisce": 2, "intervenga": 1, "bersaglio": 1, "antitrust": 1, "decisivo": 2, "febbraio": 3, "lingotto": 1, "giovent\u00f9": 2, "immaginate": 1, "attualit\u00e0": 1, "allucinanti": 1, "crolla": 2, "fatturato": 1, "crollano": 1, "ordinativi": 2, "bagno": 1, "condividetela": 1, "immaginato": 2, "scrivervi": 1, "raccontarvi": 1, "girato": 1, "piemonte": 1, "superiore": 2, "rosee": 1, "inatteso": 1, "sasso": 2, "marconi": 2, "savena": 3, "este": 2, "mestre": 2, "erbusco": 1, "treviglio": 2, "cernusco": 3, "naviglio": 1, "annullare": 1, "domiciliari": 1, "assistere": 1, "garantisce": 1, "provvedimento": 1, "sproporzionato": 1, "servitore": 1, "pericolosi": 1, "criminali": 1, "delitto": 1, "tracciare": 1, "toccare": 1, "ribadire": 1, "populismi": 1, "spacciatori": 1, "nazionalismi": 1, "rassegnarci": 1, "cantina": 1, "franciacorta": 1, "buonadomenica": 1, "verona": 1, "sale": 1, "strapiene": 1, "amazon": 1, "rossa\u201d": 1, "congressi": 1, "fattaccio": 1, "tempio": 1, "adriano": 1, "torchiato": 1, "gian": 1, "antonio": 1, "penna": 1, "orda": 1, "albanesi": 1, "tosta": 1, "aiutasse": 1, "vorr\u00e0": 1, "anticipazioni": 1, "giriamo": 1, "nazionalismo": 1, "restituiteci": 1, "000\u20ac": 1, "rimborsi": 2, "sottolineo": 1, "accorti": 1, "benefici": 1, "spiegano": 1, "lione": 1, "abbattono": 1, "tonnellate": 1, "co2": 2, "percentuale": 1, "tunnel": 1, "ammettono": 2, "sceglie": 1, "inquina": 1, "gomma": 1, "leonardo": 2, "disfatta": 1, "estera": 8, "aereo": 1, "frangia": 1, "agguerrita": 1, "francesi": 4, "teppisti": 2, "notare": 1, "ringrazio": 1, "raffaelle": 1, "cantone": 1, "anac": 1, "sanremo": 3, "inizi": 3, "telefonata": 1, "guaid\u00f2": 3, "ringrazia": 2, "screditando": 1, "dittatura": 5, "uscir\u00e0": 1, "editrice": 1, "marsilio": 1, "racconta": 2, "spagnolo": 1, "sanchez": 1, "riconosce": 1, "provo": 1, "imbarazzo": 1, "maduro": 3, "moavero": 1, "vergogneranno": 1, "connazionali": 2, "posizionamento": 1, "scandaloso": 1, "tradisce": 1, "allontana": 1, "abbandona": 1, "sostiene": 1, "sanguinosa": 1, "disintegrato": 1, "attiri": 1, "sinceramente": 2, "pagheremo": 1, "pavida": 1, "venezuelani": 2, "rimanere": 1, "indifferenti": 1, "giungono": 1, "caracas": 2, "manifestare": 1, "pacificamente": 1, "ripristino": 1, "ascoltati": 1, "ricchi": 1, "risorse": 2, "minerarie": 1, "petrolifere": 1, "paradossalmente": 2, "estrema": 1, "raggiunto": 1, "popolazione": 1, "scarseggiano": 1, "medicine": 1, "elementari": 1, "inflazione": 1, "piangere": 1, "emozionare": 2, "lottare": 1, "zittito": 1, "stadi": 1, "amato": 2, "travolgente": 1, "re": 1, "leone": 1, "gabriel": 1, "omar": 2, "batistuta": 1, "fermatevi": 1, "cambiate": 1, "ufficiali": 2, "trimestri": 2, "portando": 1, "sbattere": 1, "cambiamo": 1, "positivi": 1, "consecutivi": 1, "semestre": 1, "portano": 1, "sfiga": 1, "pagher\u00e0": 1, "ritirare": 1, "truppe": 1, "afghanistan": 1, "andati": 1, "l\u00ec": 4, "minaccia": 2, "talebani": 1, "prolungato": 1, "ritirarsi": 1, "richiede": 1, "approfondita": 1, "preferiamo": 1, "tornino": 1, "villeggiatura": 1, "averle": 1, "lette": 1, "ideologico": 1, "voter\u00f2": 1, "autorizzazione": 1, "cerimonia": 1, "assumere": 1, "dimenticheremo": 1, "orrori": 1, "sarti": 1, "partigiano": 1, "amava": 2, "raccontava": 2, "vocione": 1, "interminabili": 1, "canti": 1, "finiva": 2, "salone": 1, "applaudirlo": 1, "voltava": 1, "educava": 1, "vu": 2, "tenete": 1, "fisso": 1, "et\u00e0": 1, "libert\u00e0\u201d": 1, "incoraggiava": 1, "raccomando": 1, "mollare\u201d": 1, "riferimento": 1, "continuerai": 1, "camminato": 1, "richiamare": 1, "prepensionamenti": 1, "affermare": 2, "assistenzialismo": 3, "favorire": 1, "nero": 2, "elemento": 2, "riflettendo": 1, "assunzione": 1, "concorso": 1, "assunte": 1, "promette": 1, "stabilizzate": 1, "colloquio": 1, "entreranno": 1, "naso": 1, "restarci": 1, "voluta": 2, "aumentava": 1, "profit": 1, "firmatario": 1, "marcucci": 1, "sottolinearlo": 1, "semplificazione": 1, "rinvio": 2, "chavez": 1, "devastato": 1, "istituzione": 1, "democratica": 2, "appoggiare": 1, "rapidamente": 1, "mediaticamente": 1, "costruito": 1, "intere": 1, "trasmissioni": 1, "dipinto": 1, "molestatore": 1, "famoso": 1, "elementi": 1, "ostilit\u00e0": 1, "preconcetta": 1, "gogna": 1, "mediatica": 1, "definitivamente": 1, "archiviato": 1, "fausto": 1, "brizzi": 1, "contribuito": 1, "danneggiarlo": 1, "distruggergli": 1, "esame": 1, "scandalistici": 1, "iena": 1, "impegnata": 1, "deputato": 2, "doti": 1, "nascoste": 1, "sostenne": 1, "sbarcati": 1, "nonostante": 2, "sottosegretario": 2, "complottista": 1, "glorioso": 1, "eh": 1, "spada": 1, "nomina": 3, "lino": 3, "banfi": 5, "pubblicato": 1, "followers": 1, "preferissero": 1, "barbara": 1, "palombelli": 1, "ironie": 1, "unesco": 2, "castelli": 1, "preoccupate": 1, "laureati": 1, "stupiamo": 1, "canale": 3, "bar": 1, "firmano": 1, "aquisgrana": 1, "mandiamo": 1, "golpista": 1, "assaltano": 1, "colonialista": 1, "scappa": 1, "storicamente": 1, "karaoke": 1, "dilettanti": 1, "sbaraglio": 1, "motoscafo": 1, "barbiere": 1, "frailis": 1, "preoccupa": 1, "affluenza": 1, "sondaggi": 2, "seggio": 1, "sardegna": 1, "prestanome": 1, "assegni": 1, "vuoto": 1, "capro": 1, "espiatorio": 1, "andiamoli": 1, "salviamoli": 1, "sondaggio": 1, "antiche": 1, "tradizioni": 1, "salvarli": 1, "radical": 1, "chic": 1, "opposto": 2, "rese": 1, "libere": 1, "autonome": 1, "dipendenti": 1, "procedure": 1, "complicate": 1, "assistenzialisti": 1, "concettuale": 2, "vuoi": 1, "odiato": 1, "creati": 1, "ahinoi": 1, "silenzioso": 1, "enti": 1, "coordinatore": 1, "stanziato": 1, "potranno": 1, "evento": 2, "ferrovia": 1, "dicemmo": 1, "dovute": 1, "proporzioni": 1, "credevano": 1, "suggerimento": 2, "andarci": 1, "utilizzate": 1, "tornarci": 1, "sassi": 1, "considerati": 1, "dopoguerra": 1, "comunitaria": 1, "dedicati": 1, "ritwitta": 1, "extracomunitari": 1, "augurarvi": 1, "borsello": 1, "900\u20ac": 1, "contanti": 1, "disoccupato": 1, "marocchino": 2, "ritrova": 1, "restituisce": 1, "intonso": 1, "legittimo": 2, "proprietario": 1, "assumerlo": 1, "togliendolo": 1, "ritwittare": 1, "nomi": 1, "bernardo": 1, "sognano": 1, "trib\u00f9": 1, "odiano": 2, "puntino": 1, "falso": 1, "operativa": 1, "rei": 1, "migliorarla": 1, "prego": 1, "drammatico": 2, "fondata": 1, "sussidio": 1, "decretone": 1, "favorisce": 1, "pensioni": 2, "prendiamo": 1, "prendiamoli": 1, "18gennaio": 1, "pericoloso": 1, "portarsi": 1, "ripiegata": 1, "cura": 1, "cucita": 1, "tasca": 3, "documento": 4, "certificava": 1, "preziosissima": 1, "annegato": 1, "dottoressa": 1, "cristina": 1, "cattaneo": 1, "descritto": 1, "poesia": 1, "dimentichiamolo": 1, "altruismo": 1, "valgono": 1, "mantiene": 1, "pietas": 1, "bonafede": 7, "nera": 1, "instagram": 1, "17gennaio": 1, "alfonso": 1, "emulare": 1, "posa": 1, "penitenziaria": 1, "soddisfatta": 1, "fratellino": 1, "giocattolo": 2, "battisti": 3, "presunta": 1, "anticorruzione": 1, "personam": 3, "imprenditoriale": 1, "ride": 1, "escono": 1, "tendenziale": 1, "picco": 1, "ordini": 3, "importata": 1, "licenziare": 1, "marzo": 1, "passeggiata": 1, "prendendo": 1, "giugno": 1, "smesso": 1, "accasciato": 1, "dimenticate": 1, "unici": 1, "brindavano": 1, "elogiando": 1, "alleato": 1, "farage": 1, "uscirne": 1, "apro": 1, "monde": 1, "tragico": 1, "pezzo": 1, "combattimenti": 1, "terroristi": 1, "daesh": 1, "contare": 1, "mosul": 1, "inaudita": 1, "raccontate": 1, "testimoni": 1, "oculari": 1, "prospettive": 1, "riduce": 1, "tweet": 2, "scelgano": 1, "approfondimento": 1, "informazione": 2, "degna": 1, "stancher\u00f2": 1, "ripetere": 1, "materiale": 1, "strategico": 1, "danzica": 2, "pawel": 4, "adamowicz": 2, "lutto": 1, "accoltellato": 1, "personaggi": 1, "polacca": 1, "investigatori": 1, "prevale": 1, "trasforma": 1, "fisica": 1, "coltello": 1, "ferito": 1, "guai": 1, "sottovaluta": 1, "preghiamo": 1, "cesare": 2, "intelligence": 1, "diventeremo": 1, "smetteremo": 1, "anti": 1, "scopre": 1, "comma": 1, "inserito": 1, "deputati": 1, "condannati": 3, "codicillo": 1, "permetter\u00e0": 1, "consiglieri": 1, "sbandierato": 1, "salvalega": 1, "bolivia": 1, "distinzione": 1, "desiderano": 1, "scontare": 1, "violenze": 1, "manifestazioni": 1, "bordeaux": 1, "feriti": 1, "nonviolenza": 1, "licenzia": 1, "grandine": 1, "fermiamo": 1, "parlarne": 1, "bernard": 2, "henri": 2, "l\u00e9vy": 1, "intenzione": 1, "ritiro": 1, "esplosiva": 1, "potrebbe": 1, "rinascita": 1, "abbandonare": 1, "erbil": 1, "presiedeva": 1, "campi": 1, "abbandonati": 1, "bombardamenti": 1, "tantissimi": 1, "cenetta": 1, "suggellato": 1, "invecchiamo": 1, "pazienti": 1, "molliamo": 1, "accusare": 1, "chiudo": 1, "michael": 1, "jordan": 1, "basket": 1, "novemila": 1, "tiri": 1, "trecento": 1, "partite": 1, "ventisei": 1, "affidato": 1, "tiro": 1, "servita": 1, "velocit\u00e0": 1, "infrastruttura": 1, "connessa": 1, "metropolitana": 1, "sprecare": 1, "impuntatura": 1, "ideologica": 1, "evviva": 1, "top": 1, "ten": 1, "brutte": 1, "annuo": 1, "vedevano": 1, "rallenta": 1, "accorgersene": 1, "topten": 1, "ig": 1, "questioni": 1, "affrontare": 1, "andr\u00e8": 1, "joe": 1, "biden": 1, "visita": 1, "grillina": 1, "banche": 6, "esagerano": 2, "baglioni": 6, "cio\u00e8": 1, "icona": 1, "complessa": 1, "detta": 1, "sensibile": 1, "scatenato": 1, "impedirgli": 1, "ascolti": 1, "esagerando": 1, "montando": 1, "cantanti": 2, "esprimere": 1, "opinioni": 1, "albano": 1, "pretende": 1, "gattuso": 1, "schierare": 1, "milan": 1, "vescovi": 1, "drammatica": 1, "risolta": 2, "leadership": 1, "milanista": 1, "sfegatato": 1, "muscat": 2, "smentito": 1, "platealmente": 1, "costante": 1, "accolti": 1, "concentri": 1, "restituirceli": 1, "burioni": 2, "enormemente": 1, "guarda": 1, "portiamo": 1, "firmarlo": 1, "abbandonano": 1, "antiscientifiche": 1, "novax": 1, "ricercatori": 1, "medici": 1, "scienziati": 2, "venditori": 1, "fumo": 1, "minimizzato": 1, "parti": 1, "difendo": 1, "apri": 1, "romana": 1, "trattata": 1, "incredibili": 1, "diversivi": 2, "fingono": 1, "dissidi": 1, "buttato": 3, "cannabis": 1, "tacere": 1, "eccovi": 1, "riflessioni": 1, "semplici": 2, "carige": 1, "banca": 2, "celebrazioni": 1, "infinito": 1, "leopardi": 2, "letteratura": 1, "riporta": 1, "serate": 1, "passate": 1, "emozionato": 1, "ricordarsi": 1, "natali": 1, "espressioni": 2, "artistiche": 1, "culturali": 1, "dimenticarcene": 1, "salto": 1, "recanati": 1, "visitare": 1, "meraviglie": 1, "sconosciute": 1, "paure": 1, "decidendo": 1, "tentativo": 1, "girano": 1, "senti": 1, "stridore": 1, "unghie": 1, "specchi": 1, "giustificano": 2, "tracotante": 1, "arroganza": 1, "addosso": 1, "bastati": 1, "riunione": 1, "notturna": 1, "smentire": 1, "approva": 1, "correntisti": 1, "arezzo": 1, "marche": 1, "chieti": 1, "attaccati": 1, "potenti": 1, "terzovalico": 1, "trivelle": 1, "80euro": 1, "alternanza": 1, "fandonie": 1, "spudoratamente": 1, "mentito": 1, "imbroglioni": 1, "sforza": 1, "picchiatori": 1, "entrati": 1, "ruspe": 1, "palazzi": 1, "domandi": 2, "apposta": 1, "gratis": 1, "uscito": 1, "considera": 1, "miliardo": 2, "settecento": 2, "maggiori": 1, "rincorre": 1, "tagliano": 1, "biglietti": 1, "economy": 1, "vitalizi": 1, "sparata": 1, "folclore": 1, "invenzioni": 1, "svagarsi": 1, "consoliamoci": 1, "sorpresi": 1, "tuffato": 1, "doveroso": 1, "accompagnare": 1, "realizzato": 1, "conosciuto": 1, "aiuter\u00e0": 1, "decoder": 1, "sky": 1, "anticipazione": 2, "bruni": 1, "sconosciuto": 1, "massime": 1, "figure": 1, "secoli": 1, "usate": 1, "uguaglianza": 1, "vanta": 1, "coperta": 1, "indegno": 1, "ricca": 1, "vigliacco": 1, "visibilit\u00e0": 1, "curiosit\u00e0": 1, "dante": 1, "galileo": 1, "periferie": 1, "mendicanti": 1, "orsanmichele": 1, "sapevate": 1, "assedio": 1, "puntate": 1, "visibili": 1, "dplay": 1, "migrazione": 1, "avviene": 1, "elenco": 2, "approvati": 1, "riforme": 1, "progettate": 1, "lista": 1, "nemici": 1, "provoca": 1, "troviamo": 1, "classico": 1, "dinamiche": 1, "apprendisti": 1, "semplicit\u00e0": 1, "allegria": 1, "rancorosi": 1, "determinazione": 1, "eterna": 1, "bucarsi": 1, "improvviso": 1, "angeli": 1, "proseguiamo": 1, "impopolari": 1, "ruffini": 1, "attuata": 1, "estesa": 1, "privati": 1, "migliorarne": 1, "attuazione": 1, "digitalizzazione": 1, "contrastare": 1, "precompilata": 1, "bolletta": 1, "sovrintendente": 1, "osanna": 2, "polo": 1, "inaugurando": 1, "restauro": 1, "schola": 1, "armaturarum": 1, "visitatori": 1, "praticamente": 1, "raddoppiati": 1, "classica": 1, "negativa": 1, "lustro": 1, "umberto": 2, "contarello": 2, "sceneggiatore": 1, "oscar": 1, "sorrentino": 1, "caro\u201d": 1, "saper": 1, "utilizzarle": 1, "ispirare": 1, "privilegio": 1, "talento": 1, "condividendo": 1, "riesci": 1, "coniare": 1, "onda": 1, "quarta": 1, "entriamo": 1, "bargello": 1, "torture": 1, "supplizi": 1, "abolisce": 1, "partendo": 1, "uffizi": 4, "schmidt": 2, "quadri": 1, "rubati": 1, "galleria": 1, "federico": 1, "fubini": 1, "ricciardi": 1, "istituto": 1, "dimesso": 1, "lasciando": 1, "condivide": 1, "approccio": 1, "antiscientifico": 1, "massima": 1, "imbarazzato": 1, "pandoro": 1, "senz": 1, "anima\u201d": 1, "giuro": 1, "panettone": 1, "rinviato": 1, "obbligo": 1, "vaccinale": 1, "improvvisato": 1, "tecnici": 1, "fastidio": 1, "usciti": 1, "sbagliarmi": 1, "antipasto": 1, "restituirci": 1, "rubate": 1, "vaso": 1, "fiori\u201d": 1, "eike": 1, "capiranno": 1, "universale": 1, "filosofo": 1, "levy": 1, "esprimo": 1, "formularne": 1, "contemporanei": 1, "unire": 1, "fomentatori": 1, "cospiratori": 1, "sperimentatori": 1, "temporalit\u00e0": 1, "intensit\u00e0": 1, "ragionamento": 1, "temono": 1, "dipingono": 1, "macabro": 1, "abbandoniamo": 1, "fomentare": 1, "cospirare": 1, "sperimentare": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/renzi_emoji b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_emoji new file mode 100644 index 0000000..675adc6 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_emoji @@ -0,0 +1 @@ +{"\ud83d\ude0a": 4, "\ud83d\ude00": 3, "\ud83c\uddfa\ud83c\uddf8": 1, "\ud83c\udde8\ud83c\uddf3": 1, "\ud83c\uddee\ud83c\uddf9": 2, "\ud83d\ude42": 1, "\ud83d\ude07": 1, "\ud83c\udfc7": 1, "\ud83d\ude31": 1, "\ud83d\ude09": 3, "\ud83d\ude01": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/renzi_sleep b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_sleep new file mode 100644 index 0000000..2a8f98e --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 3, "10": 6, "11": 8, "12": 5, "13": 7, "14": 4, "15": 3, "16": 9, "17": 7, "18": 3, "19": 5, "20": 4, "21": 3, "22": 0, "23": 7}, "Feb": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 3, "9": 5, "10": 5, "11": 4, "12": 3, "13": 0, "14": 3, "15": 1, "16": 1, "17": 2, "18": 4, "19": 4, "20": 3, "21": 3, "22": 1, "23": 2}, "Mar": {"0": 2, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 1, "7": 1, "8": 3, "9": 3, "10": 2, "11": 1, "12": 4, "13": 2, "14": 1, "15": 3, "16": 1, "17": 2, "18": 1, "19": 1, "20": 3, "21": 3, "22": 0, "23": 2}, "Apr": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 2, "10": 0, "11": 1, "12": 2, "13": 0, "14": 0, "15": 1, "16": 1, "17": 1, "18": 4, "19": 0, "20": 3, "21": 1, "22": 0, "23": 0}, "May": {"0": 1, "1": 1, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 1, "10": 4, "11": 3, "12": 1, "13": 2, "14": 3, "15": 2, "16": 2, "17": 5, "18": 2, "19": 3, "20": 1, "21": 1, "22": 0, "23": 0}, "Jun": {"0": 0, "1": 1, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 2, "10": 5, "11": 4, "12": 2, "13": 1, "14": 1, "15": 1, "16": 5, "17": 3, "18": 5, "19": 2, "20": 2, "21": 1, "22": 1, "23": 1}, "Jul": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 1, "5": 0, "6": 0, "7": 0, "8": 3, "9": 6, "10": 2, "11": 9, "12": 8, "13": 2, "14": 3, "15": 5, "16": 6, "17": 9, "18": 8, "19": 7, "20": 4, "21": 7, "22": 2, "23": 3}, "Aug": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 1, "6": 0, "7": 2, "8": 4, "9": 6, "10": 2, "11": 7, "12": 7, "13": 8, "14": 7, "15": 5, "16": 9, "17": 8, "18": 5, "19": 10, "20": 8, "21": 2, "22": 4, "23": 3}, "Sep": {"0": 3, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 5, "8": 3, "9": 7, "10": 5, "11": 5, "12": 3, "13": 3, "14": 3, "15": 4, "16": 5, "17": 3, "18": 5, "19": 5, "20": 5, "21": 4, "22": 3, "23": 1}, "Oct": {"0": 2, "1": 1, "2": 1, "3": 1, "4": 0, "5": 0, "6": 0, "7": 2, "8": 10, "9": 4, "10": 7, "11": 7, "12": 6, "13": 8, "14": 3, "15": 4, "16": 5, "17": 5, "18": 13, "19": 8, "20": 4, "21": 4, "22": 5, "23": 0}, "Nov": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 5, "9": 7, "10": 5, "11": 4, "12": 2, "13": 2, "14": 3, "15": 3, "16": 6, "17": 3, "18": 4, "19": 5, "20": 1, "21": 2, "22": 0, "23": 0}, "Dec": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/renzi_trend.json b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_trend.json new file mode 100644 index 0000000..88cd973 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_trend.json @@ -0,0 +1 @@ +{"24-Nov": 2, "23-Nov": 2, "21-Nov": 3, "20-Nov": 1, "19-Nov": 3, "17-Nov": 2, "16-Nov": 6, "15-Nov": 3, "13-Nov": 4, "12-Nov": 1, "11-Nov": 1, "9-Nov": 3, "8-Nov": 1, "7-Nov": 1, "6-Nov": 3, "5-Nov": 3, "4-Nov": 2, "3-Nov": 5, "2-Nov": 4, "1-Nov": 3, "31-Oct": 1, "30-Oct": 2, "29-Oct": 2, "28-Oct": 3, "27-Oct": 2, "26-Oct": 5, "25-Oct": 1, "24-Oct": 2, "23-Oct": 2, "22-Oct": 6, "21-Oct": 2, "20-Oct": 10, "19-Oct": 12, "18-Oct": 8, "17-Oct": 4, "16-Oct": 8, "15-Oct": 5, "14-Oct": 2, "13-Oct": 1, "12-Oct": 2, "11-Oct": 1, "9-Oct": 3, "8-Oct": 1, "7-Oct": 1, "6-Oct": 3, "5-Oct": 1, "4-Oct": 5, "3-Oct": 2, "2-Oct": 2, "1-Oct": 1, "30-Sep": 4, "29-Sep": 1, "28-Sep": 4, "27-Sep": 2, "26-Sep": 4, "25-Sep": 2, "24-Sep": 1, "23-Sep": 6, "22-Sep": 4, "21-Sep": 4, "20-Sep": 1, "19-Sep": 4, "18-Sep": 3, "17-Sep": 4, "15-Sep": 1, "14-Sep": 1, "13-Sep": 2, "12-Sep": 3, "11-Sep": 2, "10-Sep": 2, "9-Sep": 2, "8-Sep": 3, "7-Sep": 3, "6-Sep": 2, "5-Sep": 1, "4-Sep": 3, "2-Sep": 1, "1-Sep": 2, "30-Aug": 2, "29-Aug": 2, "28-Aug": 1, "26-Aug": 2, "25-Aug": 2, "24-Aug": 3, "23-Aug": 2, "22-Aug": 5, "21-Aug": 3, "20-Aug": 3, "19-Aug": 3, "18-Aug": 6, "17-Aug": 1, "16-Aug": 2, "15-Aug": 5, "14-Aug": 2, "13-Aug": 7, "12-Aug": 4, "11-Aug": 5, "10-Aug": 1, "9-Aug": 2, "8-Aug": 8, "7-Aug": 7, "6-Aug": 3, "5-Aug": 3, "4-Aug": 3, "3-Aug": 3, "2-Aug": 6, "1-Aug": 3, "31-Jul": 2, "30-Jul": 2, "29-Jul": 3, "28-Jul": 2, "27-Jul": 4, "26-Jul": 4, "25-Jul": 2, "24-Jul": 5, "23-Jul": 4, "22-Jul": 1, "21-Jul": 4, "20-Jul": 4, "19-Jul": 4, "18-Jul": 3, "17-Jul": 2, "16-Jul": 4, "15-Jul": 2, "14-Jul": 4, "13-Jul": 3, "12-Jul": 3, "11-Jul": 4, "9-Jul": 2, "8-Jul": 1, "7-Jul": 4, "5-Jul": 2, "4-Jul": 2, "3-Jul": 3, "2-Jul": 4, "1-Jul": 1, "29-Jun": 1, "28-Jun": 3, "27-Jun": 1, "26-Jun": 2, "25-Jun": 3, "24-Jun": 3, "23-Jun": 3, "22-Jun": 1, "21-Jun": 2, "20-Jun": 1, "19-Jun": 2, "18-Jun": 1, "17-Jun": 1, "16-Jun": 2, "15-Jun": 1, "11-Jun": 1, "10-Jun": 2, "9-Jun": 2, "8-Jun": 1, "4-Jun": 1, "3-Jun": 2, "2-Jun": 2, "1-Jun": 1, "31-May": 1, "28-May": 2, "27-May": 1, "26-May": 2, "25-May": 1, "24-May": 1, "23-May": 1, "22-May": 1, "21-May": 2, "20-May": 2, "17-May": 2, "15-May": 3, "14-May": 1, "13-May": 1, "12-May": 1, "11-May": 1, "9-May": 2, "8-May": 2, "7-May": 2, "6-May": 1, "4-May": 1, "3-May": 1, "1-May": 2, "30-Apr": 1, "26-Apr": 1, "25-Apr": 1, "24-Apr": 1, "23-Apr": 1, "21-Apr": 2, "17-Apr": 1, "15-Apr": 1, "14-Apr": 2, "9-Apr": 1, "6-Apr": 1, "5-Apr": 1, "4-Apr": 2, "2-Apr": 1, "1-Apr": 1, "31-Mar": 1, "29-Mar": 1, "28-Mar": 1, "25-Mar": 1, "23-Mar": 4, "22-Mar": 1, "20-Mar": 2, "15-Mar": 2, "14-Mar": 2, "13-Mar": 2, "11-Mar": 1, "10-Mar": 2, "8-Mar": 1, "7-Mar": 3, "6-Mar": 3, "3-Mar": 1, "2-Mar": 2, "1-Mar": 6, "28-Feb": 2, "27-Feb": 3, "26-Feb": 1, "25-Feb": 1, "24-Feb": 3, "23-Feb": 2, "22-Feb": 1, "21-Feb": 2, "20-Feb": 2, "19-Feb": 2, "18-Feb": 2, "17-Feb": 3, "16-Feb": 2, "15-Feb": 2, "14-Feb": 4, "13-Feb": 1, "12-Feb": 1, "7-Feb": 1, "6-Feb": 2, "5-Feb": 2, "4-Feb": 1, "3-Feb": 1, "2-Feb": 1, "1-Feb": 2, "31-Jan": 2, "30-Jan": 1, "29-Jan": 1, "28-Jan": 1, "27-Jan": 1, "25-Jan": 1, "24-Jan": 4, "23-Jan": 3, "22-Jan": 2, "21-Jan": 4, "20-Jan": 3, "19-Jan": 1, "18-Jan": 3, "17-Jan": 2, "16-Jan": 3, "15-Jan": 1, "14-Jan": 3, "13-Jan": 3, "12-Jan": 4, "11-Jan": 4, "10-Jan": 4, "9-Jan": 2, "8-Jan": 3, "7-Jan": 2, "6-Jan": 1, "5-Jan": 5, "4-Jan": 4, "3-Jan": 4, "2-Jan": 5} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/renzi_words b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_words new file mode 100644 index 0000000..c56c22b --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/renzi_words @@ -0,0 +1,22622 @@ +ancora +maltempo +ancora +crolli +ora +priorità +aiutare +vive +aree +rischio +poi +governo +deve +ripristinare +subito +unita +missione +dissesto +sbloccare +cantieri +servono +commissari +chiacchiere +soldi +spendiamoli +italiashock +sole +ore +oggi +certifica +verità +semplice +italia +davvero +sblocca +cantieri +parte +italiashock +mondo +intero +pronto +investire +ecco +italia +viva +propone +sfida +posti +lavoro +soldi +fiducia +infrastrutture +cosa +aspettando +professore +italiano +latino +sostenitore +salvini +scrive +facebook +piazza +sardine +prenderà +neppure +binocolo +scrive +certe +cose +studenti +può +definirsi +educatore +me +naturalmente +no +ascolto +francesco +gregori +dice +festa +foglio +no +manca +passato +cambia +bello +cambiare” +messaggio +politicamente +bello +forte +festa +ottimismo +dobbiamo +dare +scossa +italia +iniziare +quei +miliardi +cantieri +già +stanziati +bloccati +burocrazia +italia +viva +nasce +dare +bello +shock +italia +spenderli +ripartire +economia +italiashock +stamani +stato +ospite +mattina +ve +persa +trovate +fate +sapere +andata +buona +giornata +😊 +incontri +ravvicinati +terzo +tipo +studi +rai +mattina +prototipo +originale +et +maestro +rambaldi +inviò +spielberg +anno +prima +film +passati +quasi +anni +emozione +vedere +bimbetto +film +cinema +lacrime +persa +ripropongo +intervista +porta +porta +ieri +sera +leggo +volentieri +commenti +😊 +buona +giornata +aspetto +stasera +rai +ospite +bruno +vespa +porta +porta +capogruppo +lega +camera +molinari +condannato +peculato +stato +assolto +ieri +cassazione +penso +debba +essere +garantisti +avversari +soprattutto +avversari +molinari +dovuto +subire +molti +attacchi +notizia +assoluzione +stessa +eco +indagine +condanna +trovo +dunque +altro +dovere +me +avversario +politico +riconoscere +pubblicamente +molinari +cittadino +innocente +media +dovrebbero +valorizzare +notizia +almeno +fatto +condanna +scontreremo +parlamento +riconoscere +correttezza +altrui +dovere +prima +forma +onestà +onestà +intellettuale +raccontato +corriere +sera +italia +deve +sbloccare +miliardi +euro +cantieri +può +fare +deve +fare +vera +priorità +paese +italia +viva +pronta +fare +propria +parte +anno +fa +dicevo +cose +parlamento +oggi +dobbiamo +recuperare +quell +errore +governo +ripristini +subito +unità +missione +dissesto +idrogeologico +sblocchi +cantieri +piano +italiashock +iniziativa +italia +viva +prevista +oggi +pistoia +annullata +ondata +maltempo +colpendo +ore +tutta +toscana +stringiamo +popolazioni +momento +colpite +amministratori +ore +impegnandosi +fronteggiare +conseguenze +maltempo +scuso +già +viaggio +organizzato +rivedremo +fin +prossimi +giorni +insieme +abbraccio +teresa +bellanova +solo +abbraccio +palco +catania +soprattutto +segno +partito +fuoco +amico +rapporti +umani +valore +insostituibile +italia +viva +sorrisi +abbracci +buona +politica +bellissima +atmosfera +catania +sblocchiamo +cantieri +sblocchiamo +italia +diamo +sicilia +infrastrutture +merita +italia +viva +cresce +giorno +dopo +giorno +diretta +catania +lancio +italia +viva +sicilia +italiaviva +pazzesco +oggi +catania +cinquemila +persone +prima +sicilia +italia +viva +altezza +entusiasmo +bello +poco +diretta +poco +diretta +catania +italia +viva +teresa +bellanova +ettore +rosato +ieri +collegamento +aria +tira +myrta +merlino +spiegare +shock +proposte +sbloccare +investimenti +rilanciare +economia +italia +ferma +solo +modo +farla +ripartire +sbloccare +cantieri +miliardi +opere +pubbliche +possono +essere +finalmente +liberate +progetto +italiashock +priorità +mano +farlo +conoscere +torino +proposte +shock +italia +viva +investimenti +rilanciare +economia +italiashock +buongiorno +langhe +vediamo +oggi +torino +diretta +presentare +shockitalia +proposta +rilanciare +investimenti +momenti +aprono +polemiche +ora +parte +venezia +sindaco +brugnaro +governatore +zaia +soprattutto +veneziani +tempo +fare +polemiche +uniti +rimediare +danni +paese +serio +unisce +divide +felice +progetto +matera +vada +avanti +creduto +quando +credeva +nessuno +bravissimo +commissario +salvo +nastasi +ancora +bravo +ovviamente +stefano +boeri +quando +governo +giorni +bandi +internazionali +direzione +musei +nazionali +italiani +sovranisti +accusarono +voler +consegnare +patrimonio +culturale +stranieri +altro +cultura +conosce +confini +né +frontiere +continuiamo +pensare +ruoli +tipo +vada +premiata +competenza +nazionalità +ecco +orgogliosi +chiara +parisi +scelta +unanimità +candidati +arrivati +mondo +intero +dirigere +centre +pompidou +metz +francia +legge +bilancio +evitato +aumento +iva +sufficiente +serve +piano +shock +economia +presenteremo +venerdì +diretta +facebook +torino +intervista +stampa +ogni +settimana +scambio +qualche +opinione +migliaia +amici +via +email +oggi +enews +arrivano +quota +grazie +pazienza +condivisione +me +onore +parte +popolo +curioso +attento +oggi +giorgetti +lega +lancia +idea +scrivere +insieme +regole +gioco +sembra +proposta +saggia +intelligente +italia +viva +bella +mattinata +oggi +linkiesta +it +milano +video +completo +facebook +http +bit +renzilinkiesta +invece +resoconto +intervista +buona +serata +oggi +stato +ospite +festival +linkiesta +it +ripropongo +intervista +buon +sabato +trent +anni +fa +cadeva +muro +berlino +anni +ricordo +emozioni +immagini +fine +storia +no +inizio +mondo +diverso +abbattere +muri +costruire +ponti” +giorgio +pira +chiacchierata +cappellini +repubblica +parlando +me +interessa +patto +politichese +aiutare +maggioranza +me +interessa +patto +concreto +aiutare +economia +italiana +leggo +volentieri +commenti +ragazzino +nato +cresciuto +italia +stato +rapito +mamma +voleva +combattere +estremisti +islamici +storia +terribile +grazie +lavoro +croce +rossa +tornato +casa +italia +spero +alvin +possa +crescere +diventando +presto +cittadino +italiano +maurizio +lupi +ministro +infrastrutture +governo +giornali +pubblicarono +intercettazioni +molti +gridarono +scandalo +lupi +totalmente +estraneo +vicenda +decise +altro +dimettersi +stesso +assicurare +tranquillità +famiglia +venne +gettata +tritacarne +mediatico +dissi +pubblicamente +fiero +aver +lavorato +lupi +esprimevo +vicinanza +tempo +reso +giustizia +oggi +scopriamo +indagine +lupi +venne +intercettato +indagine +aperta +allora +procura +firenze +finisce +archiviazione +troverete +notizia +evidenza +gazzettini +giustizialismo +italiano +talk +altro +fabiola +gianotti +stata +rieletta +guida +cern +ginevra +fino +notizia +bellissima +donna +rende +orgogliosi +essere +italiani +scienziata +modello +giovani +orgogliosi +te +cara +fabiola +viva +italia +ricerca +qualità +giorni +scorsi +accusato +essere +sfasciacarrozze +chiedevamo +cancellare +provvedimenti +sbagliati +aumento +tasse +auto +aziendali +adesso +misura +sbagliata +stata +cancellata +potremmo +toglierci +tanti +sassolini +scarpe +chiedere +fine +fatto +settimana +fa +insultavano +italia +viva +nata +risolvere +problemi +fare +polemiche +adesso +possiamo +dire +tassa +auto +aziendali +avanti +così +buona +giornata +tenere +aperta +ilva +firmato +dodici +decreti +raccolto +insulti +ex +compagni +partito +accusato +essere +omicida +bambini +taranto +perso +voti +ricevuto +minacce +ogni +genere +fatto +rifarei +ilva +chiude +chiude +intera +industria +mezzogiorno +dunque +incredibile +sentirmi +dire +voglio +altro +chiudere +ilva +tacevano +quando +venivo +insultato +contrario +vaccinato +rispetto +insulti +rimane +disgusto +viltà +certe +polemiche +cosa +accadendo +ieri +proprietà +ilva +indiani +mittal +annunciato +recesso +vogliono +andare +sostengo +previsto +tempo +usino +altro +terribili +notizie +alessandria +condivido +dolore +famiglie +vittime +grande +famiglia +vigili +fuoco +intervista +giornale +illustro +posizione +italia +viva +tasse +ilva +buona +giornata +salvini +attacca +ilva +ridicolo +norma +usata +pretesto +mittal +stata +votata +governo +grilloleghista +tempo +polemiche +salvini +vuole +cercare +colpevole +selfie +intanto +lavoriamo +soluzione +ilva +deve +chiudere +decisione +mittal +disimpegnarsi +taranto +inaccettabile +governo +deve +subito +togliere +proprietà +ogni +alibi +eliminando +autogol +immunità +voluto +vecchio +governo +messo +guardia +ministro +patuanelli +ore +fa +polemica +meschina +mediocre +scudo +penale +stato +altro +cancellato +esecutivo +lega +stelle +vogliamo +soluzioni +capri +espiatori +indipendentemente +alibi +taranto +bisogno +futuro +futuro +passa +acciaio +firmato +numerosi +decreti +tenere +aperta +ilva +preso +assassino +alcuni +ex +compagni +partito +subito +contestazioni +pesantissime +rifarei +oggi +piano +risanamento +taranto +può +fare +meno +ilva +immunità +alibi +tolto +tavolo +subito +governo +proprietà +devono +mantenere +impegni +cittadini +taranto +fatto +lavoratori +ilva +fatto +adesso +tocca +governo +mittal +scherza +lavoro +persone +ricapitolando +ore +fiume +polemiche +me +poi +improvvisamente +retromarcia +corso +nuove +tasse +plastica +auto +aziendali +bene +apprezzo +buon +senso +ministro +gualtieri +italia +viva +conta +solo +risultato +notax +unico +modo +gestire +immigrazione +investire +africa +farlo +europei +lasciarlo +fare +cinesi +aiutarli +casa +direbbe +slogan +eni +coldiretti +bonifiche +ferraresi +provando +serio +bravi +quel +numero +tatuato +braccio +porto +grande +onore +vergogna +fatto +ascoltiamo +insieme +senatrice +liliana +segre +rispetto +media +pieni +retroscena +verità +molto +semplice +italia +viva +nessuno +solo +aumento +tasse +ieri +aumento +iva +cellulari +gasolio +oggi +aumento +auto +aziendali +imprese +polemiche +proposte +concrete +evitare +microbalzelli +giornali +criticano +parlamento +daranno +ragione +voteremo +insieme +tasse +vedrete +adesso +buona +domenica +mattinata +novembre +firenze +splendore +buona +domenica +tutte +conosco +gianluca +rocchi +quando +giovanissimi +iniziammo +carriera +arbitrale +gloriosa +sede +via +faenza +firenze +fin +primi +fischi +settore +giovanile +sempre +dimostrato +essere +altro +grandissimo +arbitro +oggi +bloccando +partita +olimpico +cori +città +napoli +dimostrato +essere +grandissima +persona +tantissime +dichiarazioni +commenta +intervista +messaggero +fa +piacere +critica +idee +altrui +svolge +servizio +prezioso +grazie +ribadisco +modo +semplice +fatto +governo +emergenza +può +aiutare +paese +molte +cose +cominciare +riduzione +interessi +debito +parliamo +decine +altro +miliardi +spiccioli +merito +legge +bilancio +felici +risultati +ottenuti +fino +oggi +basta +continueremo +batterci +parlamento +migliorare +ancora +provvedimenti +auto +aziendali +microbalzelli +feriscono +competitività +imprese +proposte +slogan +coperture +altro +giusto +combattere +evasione +fiscale +combattuta +invasione +fiscale +tasse +italia +troppe +facciamole +scendere +intervista +messaggero +bit +renzimessaggero +fatto +intervista +messaggero +spiegare +cancelleremo +tassa +auto +aziendali +stangata +inaccettabile +ceto +medio +oggi +giornale +attacca +così +vita +politica +sempre +abbassato +tasse +provincia +comune +premier +stato +80€ +imu +prima +casa +irap +costo +lavoro +altro +industria +canone +rai +dunque +club +tassatori +casa +legge +bilancio +italia +viva +impedito +aumento +iva +tasse +cellulari +gasolio +casa +adesso +lavoreremo +parlamento +eliminare +tasse +auto +aziendali +assurdità +sempre +proposto +quando +premier +sempre +respinto +plastica +zucchero +chiedo +darci +mano +seguire +battaglia +parlamento +chiedo +giornale +avere +onestà +intellettuale +riconoscere +sempre +abbassato +tasse +sottoscritto +prima +dicono +leader +partitino +poi +attaccano +chissà +impressione +paura +crescendo +italia +viva +riparleremo +intanto +abbassiamo +tasse +insieme +presidente +trump +dice +radio +italia +meglio +fuori +unione +europea +orgoglioso +identità +italiana +cuore +fiorentino +radici +altrettanto +fiero +essere +cittadino +europeo +vuole +italia +fuori +europa +vuole +bene +paese +anni +fa +giorno +santi +lasciava +alda +merini +versi +dolore +bellezza +continuano +emozionarci +ancora +oggi +amore +mistica +vita +poesie +illuminano +quotidiano +legge +bilancio +approdare +finalmente +parlamento +settimane +stati +fatti +passi +avanti +evitare +aumento +iva +tasse +cellulari +gasolio +case +molto +bene +italia +viva +stata +decisiva +evitare +aumenti +finisce +zucchero +plastica +auto +aziendali +lavoreremo +duro +prossimi +altro +giorni +numeri +bilancio +parlamento +evitare +tasse +salgano +parlando +qualche +centinaio +milioni +nulla +rispetto +miliardi +iva +miliardi +bruciati +triennio +demagogia +quota100 +bloccato +aumento +iva +tasse +cellulari +adesso +lavoreremo +zucchero +auto +aziendali +sempre +bello +incontrare +donne +uomini +estero +dimostrano +ogni +giorno +grande +bellezza +essere +italiani +tanti +italiani +scrivendo +futuro +interessanti +mauro +porcini +classe +lombardo +qualche +anno +capo +design +pepsi +rivoluzionando +concetto +stesso +altro +design +stato +trovarlo +lab +dì +soho +nyc +orgoglioso +mauro +eccellenza +cresciuta +straordinario +vivaio +politecnico +milano +prosegue +farsa +brexit +oggi +ipotizza +nuovo +voto +politico +dicembre +nessuno +sembra +meravigliarsi +nulla +caos +mai +visto +immagino +copertine +tabloid +inglesi +pasticcio +fatto +italiani +giorni +oceanviking +ferma +mezzo +mare +persone +bordo +soffrono +vanno +fatte +sbarcare +subito +subito +gestire +immigrazione +tema +spigoloso +bisogna +lavorare +grande +progetto +africa +bisogna +concretizzare +principio +aiutiamoli +casa +loro” +cominciare +cooperazione +vaccini +lotta +corruzione +altro +quando +cento +persone +mare +legge +naturale +impone +farle +sbarcare +immediatamente +risolve +immigrazione +spot +pelle +ultimi +nessuno +mette +metto +fate +scendere +persone +lotta +salvinismo +fa +battaglia +culturale +copiando +spot +leghisti +central +park +tappa +obbligata +smaltire +jet +lag +sgambata +grande +abbraccio +tanti +italiani +raggiungendo +nyc +maratona +domenica +prossima +mafia +capitale +mai +esistita +detto +corte +cassazione +importanti +indagini +ultimi +anni +finisce +condanna +colpevoli +reati +meno +gravi +fatto +parlare +mondo +essere +garantisti +significa +innanzitutto +scegliere +fermarsi +superficie +approfondire +studiare +altro +riflettere +sentenze +cassazione +social +talk +show +essere +garantisti +oggi +difficile +ieri +grande +battaglia +culturale +vale +pena +combattere +fino +fondo +riesco +provare +pietà +morte +califfo +isis +baghdadi +feroce +assassino +ucciso +saltare +aria +sé +figli +no +posso +perdonarglielo +pietà +specie +davanti +morte +pagare +propri +figli +conseguenze +propria +follia +continua +rimbombarmi +testa +scelta +imperdonabile +volete +sapere +futuro +ascoltate +roberto +cingolani +menti +brillanti +paese +quest +anno +estero +potuto +partecipare +leopolda +contributo +qualche +minuto +ascoltare +pensare +simbolo +gabbiano +simbolo +spunta +tante +cose +fatte +simbolo +vuole +alzarsi +volo +sopra +polemiche +giorni +italiaviva +vite +parallele +sopravvivenza +rispetto +propri +valori +così +vive +mare +così +pescatori +mazara +vallo +vita +difficoltà +lavoro +difficile +sacrificio +altro +coraggio +umanità +persone +pronte +rinunciare +giorni +duro +lavoro +fonte +sopravvivenza +garantire +sopravvivenza +altri +essere +umani +storia +bellissima +raccontata +vogue +italia +lezione +giro +piazze +sventola +rosario +scordandosi +primi +apostoli +pescatori +uomini +umanità +coraggio +uomini +onore +vedette +difendono +custodiscono +dentro +valori +dovremmo +andare +fieri +grazie +grazie +testate +paura +sfidare +pensiero +dominante +dedicano +copertine +coraggiose +roma +ragazzo +nemmeno +anni +viene +ucciso +modo +atroce +strada +tragedia +qualunque +causa +barbaro +omicidio +commentatori +superficiali +politici +odio +influencer +paura +dico +vergogna +fare +sciacallaggio +tragedia +povero +luca +persino +cadavere +ragazzo +stato +utilizzato +altro +propaganda +parte +avere +voto +grazie +forze +ordine +straordinarie +sempre +grazie +capo +polizia +parole +equilibrate +fratello +maggiore +grazie +madre +forza +denunciare +figlio +preferisce +vederlo +carcere +piuttosto +pusher +droga +continua +essere +causa +morte +ancora +coraggio +mamma +dà +ragione +sperare +risposta +novanta +secondi +dicono +matteo +cambiato +idea +coerente +ferma +slogan +vuole +usare +testa +italiaviva +attacca +liliana +segre +attaccando +donna +sopravvissuta +olocausto +simbolo +senatrice +vita +no +attacca +liliana +segre +attaccando +stesso +liliana +segre +donna +minuta +solo +imparare +italia +viva +ministro +teresa +bellanova +sant +egidio +giorno +worldpastaday +assicurando +200mila +piatti +pasta +poveri +italia +viva +deputata +maria +chiara +gadda +scritto +altro +legge +spreco +alimentare +gira +italia +spiegarla +raccontarla +italia +viva +soprattutto +casa +volontari +mondo +associazionismo +possano +tornare +credere +politica +terzo +settore +davvero +colonna +italia +italia +solida +solidale +italia +viva +esattamente +anni +fa +firenze +chiuse +traffico +piazza +duomo +scelta +molto +contestata +ricordo +polemiche +insulti +minacce +quel +ottobre +magicamente +città +ritrovò +altro +meravigliata +gesto +banale +pedonalizzazione +restituiva +firenze +capacità +guardare +alto +ammirare +bellezza +godere +quotidianità +anni +turismo +esploso +domeniche +musei +poi +giustamente +copiate +livello +nazionale +diventate +must +sistema +tranviario +ridotto +traffico +pedonalizzazione +piazza +duomo +stata +simbolo +inizio +distanza +anni +vorrei +ringraziare +coloro +allora +forza +crederci +auguri +amministratori +smettere +mai +provare +fare +progetti +lungo +termine +visionari +difficili +dico +fatevi +camminata +piazza +duomo +firenze +ritmo +passi +accompagnerà +scoprirete +immersi +bellezza +viva +fiorenza +viva +italia +paolo +mieli +storico +giornalista +grande +prestigio +secondi +dice +semplice +verità +altri +sempre +negato +grazie +onestà +intellettuale +direttore +ora +occupiamoci +futuro +italiaviva +corriere +sera +oggi +parlo +italia +viva +cresce +governo +lotta +evasione +manette +serve +patente +punti +fiscale +pagare +pagare +meno +date +occhio +durante +confronto +televisivo +salvini +detto +salvini +assenteista +detto +passa +tutte +giornate +sagre +feste +popolari +partecipa +mai +riunioni +istituzionali +bruxelles +roma +può +guidare +paese +massimo +pro +loco +oggi +camera +lega +ufficialmente +detto +qualche +pro +loco +rimasta +male +capisco +scuso +accostare +gloriosa +attività +pro +loco +salvini +offensivo +pro +loco +oggi +autorevole +esponente +opposizione +già +ministro +repubblica +anni +impegnato +istituzioni +lanciato +agorà +proposta +molto +interessante +detto +belgio +stato +manda +casa +dichiarazione +redditi +semmai +correggi +possiamo +farlo +” +bellissima +idea +altro +complimenti +peccato +italia +possibilità +già +grazie +scelta +governo +riguarda +milioni +italiani +antipatici +simpaticissimo +mojito +sagra +politica +serve +competenza +bisogna +studiare +qualcuno +tv +dovrebbe +ricordarglielo +ogni +tanto +nuovo +campus +scolastico +amatrice +intitolato +sergio +marchionne +rilanciare +impegno +raccogliere +fondi +ricostruirlo +quando +incontrammo +maranello +angela +merkel +altro +anno +scomparsa +continuo +dirlo +stato +gigante +industria +italiana +ancora +oggi +odio +ingiustamente +colpito +immagine +rende +onore +fatto +creare +posti +lavoro +fortuna +pensano +fatti +concreti +fare +giustizia +fake +news +pensiero +affettuoso +grato +memoria +bravo +justin +complimenti +buon +lavoro +amico +congratulations +good +job +my +friend +félicitations +et +bon +travail +mon +ami +maltempo +danni +paese +piccola +proposta +semplice +bipartisan +governo +rimetta +piedi +unita +missione +dissesto +idrogeologico +genova +bisagno +lavori +altro +sbloccati +così +vanno +avanti +senza +alcuna +divisione +amministrazioni +colore +politico +diverso +dobbiamo +usare +stesso +metodo +paese +temi +vera +sfida +lavorare +insieme +subito +consiglio +ministri +approvato +legge +bilancio +adesso +parlamento +bene +vedo +bicchiere +mezzo +pieno +grazie +italia +viva +bloccato +aumento +iva +miliardi +deciso +governo +precedente +grandissimo +risultato +adesso +discussione +sposta +parlamento +potrà +migliorare +ancora +specie +altro +microbalzelli +rimasti +zucchero +casa +proveremo +scorso +anno +parlamento +clamorosamente +impedito +migliorare +legge +bilancio +quest +anno +fortuna +torneremo +rispettare +regolamenti +costituzione +adesso +guardiamo +bicchiere +mezzo +pieno +soldi +famiglie +soldi +sanità +vogliamo +rimettere +moto +italia +adesso +sola +strada +bloccato +iva +adesso +sblocchiamo +cantieri +fermi +priorità +buona +giornata +sola +richiesta +salvini +senatore +denuncia +savoini +gliel +chiesto +parlamento +gliel +chiesto +tv +glielo +chiedo +oggi +denuncia +report +vuole +iscriversi +italia +viva +sito +carta +valori +modalità +partecipare +sostenere +grazie +avventura +difficile +fantastica +finisce +fazio +giornata +impegnativa +bellissima +popolo +leopolda +regalato +emozioni +intense +pomeriggio +scarica +adrenalina +prima +guida +figlio +neo +foglio +altro +rosa +diciottenne +strade +firenze +invecchia +eccome +invecchia +buona +notte +grazie +affetto +giorni +salvini +accusa +essere +ladro +democrazia +pallone +gonfiato +cose +me +dette +tv +solo +codardi +così +pensavo +don +rodrigo +invece +don +abbondio +italiaviva +aspetto +stasera +intorno +ore +rai +tempo +fa +ospite +fabio +fazio +treno +andare +fabio +fazio +incontro +tanta +gente +stata +stazione +leopolda +bellissimo +riconoscersi +popolo +spiace +ancora +dovuto +accontentarsi +maxi +schermo +italiaviva +leopolda10 +impressionante +grazie +tutte +strada +apre +adesso +bellissimo +percorrerla +insieme +italiaviva +intervento +conclusivo +leopolda10 +intervento +teresa +bellanova +leopolda10 +aspetto +diretta +intervento +teresa +bellanova +pagina +facebook +youtube +italia +viva +diretta +mattina +leopolda10 +stamani +popolo +bellissimo +coda +leopolda +avverto +responsabilità +momento +mando +abbraccio +ospiti +volontari +curiosi +italia +viva +casa +bellissima +grazie +tardi +oggi +installato +maxi +schermi +ecco +simbolo +italia +viva +scelto +avventura +meravigliosa +divertiremo +valorizzeremo +italiaviva +ecco +nuovo +simbolo +italia +viva +emozione +purissima +‪le +parole +claudia +giovane +donna +combattendo +sla +arrivano +fondo +cuore +emozione +bellezza +grazie +claudia +popolo +leopolda +te +‬ +‪ +leopolda10‬ +diretta +leopolda10 +interventi +circa +vediamo +pagina +lancio +italiaviva +niente +vuole +andare +prima +pensione +spendere +miliardi +anticipare +anno +pensione +centomila +persone +semplicemente +ingiusto +80€ +vanno +milioni +persone +costano +miliardi +mettiamo +soldi +famiglie +stipendi +quota100 +tavoli +leopolda10 +spettacolo +gente +protagonista +attiva +partecipe +cittadini +numerini +italiaviva +‪da +stasera +potrà +iscrivere +italiaviva +solo +online +nessun +signore +tessere +nuovo +partito +partito +idee +correnti‬ +‪ +leopolda10 +‬ +vive +pregiudizi +ultimatum +propone +idee +progetti +palco +leopolda10 +ministro +elena +bonetti +parlare +sostenere +davvero +famiglie +familyact +beppe +grillo +dice +bisogna +togliere +voto +anziani +dico +bisogna +togliere +fiasco +beppe +grillo +leopolda10 +diretta +leopolda10 +prime +persone +cancelli +arrivate +stamani +già +adesso +fiume +gente +arrivando +leopolda10 +sottovalutate +popolo +italiaviva +bellissima +stata +serata +incredibile +lacrime +nasrim +resteranno +sempre +tatuate +cuore +leopolda +casa +emozioni +casa +futuro +buona +notte +domani +fatto +stesso +partito +significa +valori +grazie +dario +nardella +essere +venuto +leopolda10 +cittadini +mondo +possiamo +chiudere +occhi +davanti +accadendo +fratelli +sorelle +kurdistan +ragazze +combattuto +sconfiggere +altroestremismo +islamico +isis +ragazze +salvato +occidente +stesso +occidente +fronte +ciò +accade +kurdistan +oggi +perdendo +onore +dignità +basta +piccola +tregua +ragazze +curde +aggressione +turca +paese +nato +dimenticando +valori +donne +uomini +kurdistan +diretta +leopolda10 +davanti +esplosione +entusiasmo +commosso +senza +parole +ore +prima +inizio +leopolda10 +scoppia +gente +bellissimo +cerchiamo +entrare +italiaviva +inaugurazione +mostra +ricordo +tiberio +barchielli +leopolda10 +ricordiamo +tiberio +barchielli +mostra +foto +ricordano +stato +importante +soprattutto +dicono +sempre +viaggio +sempre +enews +straordinaria +oggi +attesa +leopolda10 +pronti +leopolda10 +costruiamo +casa +futuro +italia2029 +vediamo +stasera +leopolda +casa +anni +lanciato +idee +rivoluzionarie +fatturazione +elettronica +fisco +telematico +nata +nuova +classe +dirigente +femminile +vivaio +talenti +laboratorio +idee +domani +aspettiamo +casa +decima +volta +www +leopoldastazione +it +leopolda10 +accordo +brexit +segna +momento +storico +vita +europea +cittadini +europei +molto +triste +britannici +vero +disastro +quando +referendum +vincono +bugie +rimette +sempre +povera +gente +ultime +ore +prima +leopolda10 +vuole +iscriversi +dare +idee +fare +donazione +vada +www +leopoldastazione +it +sveleremo +simbolo +tante +idee +italia +domani +italiaviva +pronti +decima +edizione +leopolda +parleremo +famiglia +clima +futuro +racconteremo +immaginiamo +prossimi +anni +italia +ventinove +italia +ventinuovi +italiaviva +www +leopoldastazione +it +giovane +cantava +radio +quando +intervistata +qualche +anno +fa +nonna +maria +oggi +compie +novantanove +anni +ieri +sorbita +confronto +tv +lucidissima +spettacolo +auguri +nonna +buoncompleanno +preparativi +leopolda10 +edizione +memorabile +cresce +casa +italiaviva +abbraccio +matteo +salvini +augurio +rimettersi +forma +presto +tornare +litigare +subito +naturalmente +confronto +ieri +salvini +perso +milioni +persone +assistito +confronto +me +salvini +ieri +sera +rai1 +felice +commenti +soprattutto +notato +rimasti +numeri +dati +fatti +salvini +invece +disco +rotto +solite +cose +mai +risposto +domande +quota100 +milioni +euro +fatti +sparire +altro +lega +rispondere +forza +sappiamo +tuttavia +felice +solo +commenti +risultato +fatto +stesso +finalmente +stato +confronto +esponenti +politici +confronto +serio +ben +moderato +segno +molto +importante +spero +finito +tempo +monologhi +talk +show +spero +finito +tempo +leader +scappano +dibattiti +accaduto +ultime +politiche +fame +politica +confronto +serietà +dibattito +ieri +dimostra +italia +viva +parte +entusiasmo +competenza +cominciare +prossima +leopolda +domanda +precisa +salvini +nemmeno +ieri +risposto +famosi +milioni +spesi +sì +no +difficile +basterebbe +semplice +risposta +salvini +usato +quei +soldi +alimentare +propaganda +falsa +social +deve +rispondere +fuggire +grazie +visto +confronto +fatto +idea +precisa +felice +affetto +italiaviva +progetto +paese +adesso +pronti +leopolda10 +buona +notte +renzisalvini +riconoscete +signore +foto +cartello +no +euro +stesso +trasmissione +porta +porta +dire +essere +uomo +parola +no +scherziamo +salvini +cambiato +idea +terribile +notizia +lampedusa +madre +morta +abbracciata +bambino +lascia +senza +parole +basta +demagogia +restiamo +umani +molto +soddisfatto +match +salvini +novanta +minuti +discussione +numeri +fatti +proposte +guardate +dite +pensate +renzisalvini +quota +35mila +voti +simbolo +italiaviva +grazie +dando +mano +economica +leopolda10 +piccolo +contributo +qualche +euro +stasera +confronto +tv +matteo +salvini +giorni +ex +capitano +attacca +quota100 +perfetto +luigi +marattin +spiega +misura +semplicemente +iniqua +accontenta +urli +slogan +video +lorenzo +guarnieri +neanche +anni +quando +stato +ucciso +incidente +stradale +tragedia +tenacia +famiglia +nata +battaglia +condotto +approvazione +altro +legge +omicidio +stradale +legge +sacrosanta +grande +onore +firmare +palazzo +chigi +leggete +intervista +padre +lorenzo +stefano +oggi +qn +http +bit +2nlmk85 +vale +pena +fatto +iva +tocca +sembra +finalmente +consenso +unanime +gran +passo +avanti +davvero +tutt +altro +scontato +fino +qualche +giorno +fa +alcuni +articoli +qualche +giorno +fa +sole +ore +corriere +indicato +priorità +italia +viva +aggiunta +ciò +già +spiegato +molto +semplicemente +altro +evitiamo +fare +mini +aumenti +tasse +certa +cultura +troppo +spendacciona +vorrebbe +fare +prima +aumentare +tasse +gasolio +zucchero +tagliamo +costi +pensate +oggi +spese +beni +servizi +miliardi +rispetto +quando +governo +assurdo +aumento +così +rilevante +no +dovrebbe +altro +ciò +accadendo +siria +curdi +orrore +puro +quel +popolo +stato +prima +linea +fermare +estremismo +isis +fino +qualche +mese +fa +adesso +occidente +chiude +occhi +davanti +scelta +sciagurata +turchia +assurdo +regime +erdogan +fermato +blocco +armi +minimo +sindacale +europa +deve +subito +altro +imporre +sanzioni +economiche +visto +foto +ricevendo +kobane +rimasto +senza +parole +popolo +curdo +forte +orgoglioso +bisogno +parole +bisogno +reazione +immediata +comunità +internazionale +enews +ricevuto +kobane +foto +corpi +martoriati +lasciano +senza +parole +tutta +vicenda +curda +incredibile +scandalo +italia +deve +bloccare +ogni +vendita +armi +turchia +europa +deve +imporre +sanzioni +turchia +già +prossimo +consiglio +europeo +visto +vedendo +tace +complice +sabato +prossimo +punto +simbolo +italia +viva +ufficialmente +presentato +leopolda10 +grande +momento +festa +già +simbolo +cosa +diversa +altri +altro +partiti +decidiamo +logo +insieme +proposte +selezionato +tante +arrivate +giorni +votare +basta +andare +sito +www +italiaviva +it +scegliere +preferite +piace +idea +nuova +casa +luogo +ricco +partecipazione +cominciare +simbolo +rappresenterà +scheda +elettorale +attesa +votare +italia +viva +settimana +votare +simbolo +temo +poterlo +utilizzare +questione +diritti +inchino +genio +makkox +logo +fenomenale +scoprire +vero +simbolo +italiaviva +aspetto +oggi +sorpresa +chiamiamo +cose +nome +erdogan +ricatto +europa +dovere +morale +dire +no +ricatti +parte +libertà +parte +curdi +attentato +sinagoga +tedesca +giorno +yom +kippur +attentato +oggi +ebreo +ebrei +nessuno +abbassi +guardia +estremismo +rigurgiti +neonazisti +storia +dolore +atroce +storia +campione +innanzitutto +grandissimo +uomo +leggere +assolutamente +fratelli +curdi +combattuto +estremisti +isis +distruggendo +stato +islamico +lasciarli +soli +adesso +assurdo +profondamente +ingiusto +comunità +internazionale +può +fare +finta +niente +giornali +oggi +riportano +alcune +frasi +attribuite +presidente +consiglio +smentite +soprattutto +corriere +stampa +dicono +conte +consideri +prepotente” +pari +peggio +salvini +capisco +esperienza +scorso +governo +stata +logorante +causato +molti +danni +cominciare +italiani +credo +altro +debba +dire +parola +chiarezza +tranquillità +intendo +fare +polemica +premier +me +continuo +scontro +deve +finire +primo +passo +evitando +rispondere +accuse +prepotenza” +basta +retroscena +polemiche +merito +tocca +premier +firmare +legge +bilancio +me +unica +cosa +conta +altro +dicono +italia +viva +piccolo +partito +conta +niente +però +parlano +costantemente +strano +vero +solo +proposte +concrete +significa +fare +politica +paragona +papeete +leopolda +rende +conto +bello +avere +luogo +leopolda +prova +insieme +dare +idee +cambiare +paese +continuano +attaccare +me +rendono +conto +sempre +guerra +matteo +sbagliato +obama +trump +servizi +segreti +leopolda +papeete +tasse +legge +bilancio +italia +viva +idee +chiacchierata +lucia +annunziata +rai +pomeriggio +aspetto +diretta +rai +mezz +ora +ospite +lucia +annunziata +parliamo +mojiti +cubiste +parliamo +tasse +asili +nido +edilizia +scolastica +posti +lavoro +discutere +cose +significa +litigare +significa +fare +politica +populismo +altro +costringe +parlare +caratteri +simpatie +antipatie +rapporti +personali +politica +costringe +parlare +idee +programmi +intervista +oggi +stampa +italia +viva +studia +carte +lancia +proposte +trova +coperture +propone +idee +insomma +prima +novità +quando +italia +viva +discute +tasse +asili +nido +mojito +alleanze +governo +anzi +aumento +tasse +spiegato +bene +molti +cittadini +tutta +italia +altro +avvicinando +entusiasmo +persino +sorprendente +leopolda +dimostrerà +volta +cresciamo +parlamento +oggi +unita +senatrici +brave +competenti +annamaria +parente +aiutato +molto +dopo +sociale +jobsact +ruolo +donne +società +oggi +aderito +gruppo +italia +viva +arricchisce +casa +comune +intelligenza +preparazione +benvenuta +tanti +dando +mano +territori +leggo +dichiarazioni +polemiche +vedo +commenti +senso +unico +talk +show +rispetto +tutte +limito +considerazione +stamani +fatto +fenomeno +obiettivo +giocare +fare +simpatico +dare +mano +paese +pagano +scritto +articolo +corriere +numeri +dati +proposte +altro +vuole +rispondermi +può +farlo +base +numeri +crede +idee +populista +gioca +apparire +simpatico +politico +prova +risolvere +problemi +scelto +politica +populismo +bit +troppaspesa +articolo +pazienza +leggerlo +buona +serata +terribili +notizie +trieste +condoglianze +famiglie +agenti +grande +famiglia +polizia +qualche +settimana +viene +rilanciata +social +nuova +fakenews +me +stavolta +varcano +confini +nazionali +vengo +accusato +aver +partecipato +complotto +internazionale +ordito +obama +trump +scoperto +spese +deve +mai +sottovalutare +portata +bufale +diverse +testate +rilanciato +altro +fakenews +deciso +procedere +vie +legali +tempo +buonismo +finito +prima +persona +agisco +giudizio +signor +george +papadopoulos +definisce +ex +collaboratore +presidente +trump” +stamattina +rilasciato +dichiarazioni +false +gravemente +lesive +reputazione +giornale +verità +sbaglia +paga +diffama +pure +vediamo +tribunale +intervista +tg2 +ieri +sera +piaciuta +leggo +volentieri +commenti +😊 +basta +demagogia +spread +spesa +intermedia +servono +rilanciare +investimenti +abbassare +tasse +vogliamo +fare +serio +lettera +corriere +dati +numeri +solito +gioco +carte +aspetto +stasera +rai +tg2 +dazi +americani +prodotti +alimentari +male +gente +agricoltori +sovranismo +protezionismo +sciagura +italia +modo +migliore +difendere +altro +prodotti +posti +lavoro +vivere +società +aperta +fatta +opportunità +muri +dazi +scelte +trump +male +italia +scelte +sovranisti +casa +rendono +debole +economia +paese +italia +guadagnare +globalizzazione +profeti +sventura +sostengono +contrario +esportiamo +bellezza +qualità +professa +contrario +chiede +protezionismo +danneggia +futuro +vediamo +stasera +ottoemezzo +ottobre +festa +nonni +nonne +maria +anna +maria +rispettivamente +anni +bellissime +nonni +achille +adone +invece +lasciato +troppo +presto +penso +dono +meraviglioso +nonni +importanti +vita +famiglie +oggi +buona +festa +oggi +genova +compiuto +altro +passo +avanti +costruzione +bellissimo +ponte +renzo +piano +rapidità +lavorando +giustamente +considerata +occasione +riscatto +altro +città +modello +pax +burocratica” +valorizzare +ovunque +parlato +qualche +giorno +fa +sole +ore +avanzando +alcune +proposte +eccole +italia +aperta +vince +italia +chiusa +muore +dicono +futurologi +dice +storia +italia +diventata +grande +quando +colto +occasioni +società +capace +aprirsi +contaminarsi +impero +altro +romano +rinascimento +italia +terra +emigrazione +immigrazione +sempre +piccolo +paese +milioni +persone +oggi +può +essere +luce +mondo +propria +cultura +proprio +export +propria +bellezza +apertura +lasciamo +muri +scimmiotta +orban +rendendosi +conto +fare +danno +esistenziale +paese +fino +poco +fa +paesi +guida +europa +regno +unito +francia +germania +italia +regno +unito +fuori +altro +italia +viva +differenza +linguaggio +stile +liturgie +interne +entusiasmo +felici +essere +squadra +passiamo +tempo +cercare +attaccare +compagno +partito +altro +viviamo +correnti +fuoco +amico +creato +partito +diarchia +uomo +donna +regola +costitutiva +coordinatori +provinciali +spesso +millennials +quando +arriva +ventenne +domanda +verrà +fatta +” +cosa +pensi +idee +cosa +proponi” +altra +cosa +rispetto +pd +avversario +capitan +fracassa +salvini +pd +fatto +governo +principio +altro +intervista +tg3 +no +aumento +iva +italia +viva +fatto +governo +mandare +casa +salvini +aumentare +iva +adesso +possiamo +aumentare +iva +punto +fatto +polemica +ministeri +sottosegretari +scelte +passato +aumentare +iva +schiaffo +consumatori +specie +poveri +porterebbe +recessione +ecco +italia +viva +dice +no +aumento +iva +squadra +fiorentina +soprattutto +giocatore +franck +ribéry +occhio +castrovilli +già +giovanissimo +migliori +centrocampisti +italiani +😀 +milanfiorentina +leopolda +aspetto +record +numeri +certo +soprattutto +aspetto +record +idee +italiaviva +italia2029 +davvero +governo +deciderà +incoraggiare +moneta +digitale +attraverso +sconti +fiscali +dovremo +fare +cosa +cambiare +norma +abbassare +commissioni +carte +credito +debito +vanno +dimezzate +rispetto +attuali +stabilendo +legge +tetto +massimo +senza +alcun +costo +minimo +transazione +mondiali +atletica +qatar +malore +colpisce +jonathan +busby +aruba +pochi +metri +traguardo +atleta +guinea +biassau +accorge +accompagna +avversario +fino +traguardo +aiutandolo +altro +sport +sport +bello +maiuscola +competitivo +certo +normale +rispetto +avversari +umanità +optional +video +bellissimo +spot +atletica +buon +sabato +sera +dicono +cosa +propone +italia +viva +quali +contenuti +primo +assaggio +posizione +legge +bilancio +tratto +sole +ore +stamani +lunedì +esce +cosina +foglio +soprattutto +poco +arriva +leopolda +buon +sabato +immagini +ragazzi +mondo +colorano +verde +pianeta +allargano +cuore +ora +tocca +politica +fare +serio +leopolda +presenteremo +progetto +concreto +fattibile +può +solo +applaudire +ragazzi +giorno +dopo +tornare +finta +nulla +sempre +detto +rispetto +magistrati +aspetto +sentenze +definitive +cassazione +confermo +giudizio +vedere +qualche +magistrato +procura +città +anni +indaghi +ipotesi +berlusconi +responsabile +persino +stragi +mafiose +attentato +maurizio +costanzo +lascia +attonito +differenza +altro +scrivono +taluni +giornali +mai +governato +berlusconi +mai +forza +italia +votato +fiducia +governo +altri +me +no +dunque +posso +parlare +libero +avversario +politico +berlusconi +criticato +contrastato +piano +politica +sostenere +anni +dopo +senza +straccio +prova +egli +mandante +attentato +mafioso +maurizio +costanzo +significa +fare +pessimo +servizio +credibilità +istituzioni +italiane +tutte +istituzioni +prima +canzone +tommaso +paradiso +dopo +scissione” +thegiornalisti +veramente +bella +avere +paura +no +avere +paura +bellissima +governo +italia +viva +family +act +misure +natalità +intervista +poco +fa +tg1 +dicono +milano +pienone +prima +italiaviva +dice +solo +operazione +palazzo +abbraccio +divertirsi +ripropongo +intervista +myrta +merlino +fatto +aria +tira +qualche +ora +fa +leggo +sempre +volentieri +commenti +ricevuto +molte +critiche +ieri +scherzato +imitazione +fatto +striscia +notizia +effettivamente +sottovalutato +portata +potenzialmente +devastante +deepfake +nuova +raffinata +tecnica +fake +news +anni +centro +valanghe +diffamazioni +insulti +notizie +false +molte +peraltro +oggi +altro +vaglio +tribunali +scherzato +sorriso +finto +fuorionda +certo +redazione +striscia +saprà +utilizzare +bene +strumento +prendo +impegno +vivere +leggerezza +critiche +sottovalutare +mai +conseguenze +pericolose +deepfake +buona +serata +grazie +critiche +costruttive +aiutano +fare +meglio +caratteristiche +forti +italia +viva +essere +primo +partito +femminista +italiano +politica +deve +essere +sostantivo +femminile +solo +problema +quote +rosa +pure +vanno +altro +difese +problema +contenuto +stile +priorità +coinvolge +maternità +parità +salario +lotta +violenza +sguardo +diverso +economia +italia +viva +segna +diarchia +uomo +donna +rivoluzione +politica +italiana +spesso +maschilista +retrograda +parlato +marina +terragni +oggi +qn +piacerebbe +leggere +commenti +solo +commenti +donne +buona +giornata +ieri +svolto +vertice +europeo +immigrazione +ministri +interno +dopo +mesi +assenza +salvini +italia +tornata +tavolo +primi +risultati +arrivati +cambiare +cose +serve +serietà +proclami +capitan +fracassa +boss +compie +anni +ricordo +qualche +anno +fa +firenze +dopo +ore +concerto +sotto +pioggia +salutarmi +albergo +fresco +ragazzino +migliore +me +born +to +run +bella +gara +haters +attaccando +emma +marrone +devono +soltanto +vergognare +emma +grande +artista +battaglia +personale +merita +solo +affetto +sostegno +cattiveria +odia +accordo +malta +immigrazione +passo +avanti +europa +basta +solidarietà +serve +sempre +accoglie +migranti +deve +perdere +contributi +europei +assurdo +continuare +pagare +orban +soldi +italiani +paesi +scelgono +aderire +patto +clima +nazioni +unite +zero +emissioni +entro +orgoglioso +aver +firmato +nome +italia +accordi +parigi +ambiente +priorità +figli +grande +piano +investimenti +sostenibili +necessario +italia +europa +farlo +senza +alzare +tasse +dovere +politico +italia +viva +presenterà +proprie +proposte +grande +piano +verde +leopolda +vuole +darci +mano +cambiare +politica +italiana +benvenuto +ripropongo +parte +puntata +ieri +arena +intervista +massimo +giletti +leggo +sempre +volentieri +commenti +grazie +commenti +partecipazione +arena +la7 +stati +giorni +intensi +roma +pechino +shangai +oggi +firenze +italia +viva +partita +forte +forte +previsto +vuole +altro +aderire +può +farlo +http +bit +italiavivaappello +vuole +aiutarci +può +cliccare +http +bit +italiavivasostieni +vuole +proporci +idee +temi +http +bit +italiavivaproponi +avventura +affascinante +bella +discussione +intelligenza +artificiale +rapporto +innovazione +tecnologica +nuovi +lavori +reid +hoffman +fondatore +linkedin +grandi +esperti +mondiali +tecnologia +convegno +stanford +university +palazzo +vecchio +cuore +meravigliosa +firenze +doppietta +ferrari +strepitosa +rossa +peccato +svegliati +tardi +titolo +piloti +meraviglia +oggi +singapore +intervista +messaggero +mattino +gazzettino +parliamo +familyact +proposte +verdi +senza +aumentare +tasse +innovazione +partito +decorrentizzato” +ogni +tesserato +piantiamo +albero +viva +italia +viva +oggi +sovranisti +nazionalisti +destra +italiana +acclamato +leader +straniero +ungherese +orban +accetta +darci +mano +migranti +rifiuta +solidarietà +signor +orban +ogni +anno +riceve +miliardi +contributenti +italiani +quando +prendere +ungheria +prende +quando +dare +invece +alzano +muri +altro +destra +sovranista +nazionalista +italiana +acclama +fa +tifo +ungheria +altra +idea +solo +cosa +europa +soprattutto +cosa +significhi +difendere +patria +chiamano +fratelli +italia +solo +patrioti +patrioti +ungheresi +roma +autista +bus +rimprovera +ragazzi +minorenni +pestano +folle +quei +ragazzi +vanno +puniti +dobbiamo +riscoprire +nuova +stagione +doveri +diceva +moro +basta +logica +dovuto +doveri +solo +diritti +sbaglia +deve +pagare +mamma +ferrari +sembra +rinata +leclerc +fa +impressione +ancora +pole +stavolta +singapore +settembre +san +matteo +auguri +omonimi +città +salerno +me +data +particolare +esattamente +settembre +anni +fa +scelta +difficile +altro +intera +esperienza +politica +parlando +consiglio +comunale +infatti +annunciai +sorpresa +decisione +pedonalizzare +piazza +duomo +firenze +pochi +ritenevano +possibile +soluzione +giudicata +ardita +temeraria +molti +temevano +reazioni +conservatrice +signori +status +quo +viveva +rendita +qualche +settimana +dopo +pedonalizzazione +realtà +anni +dopo +nessun +fiorentino +tornerebbe +indietro +passare +nuovo +diecimila +motorini +auto +accanto +battistero +piazza +adesso +sente +ritmo +passi +clacson +firenze +libera +verde +missione +compiuta +vita +fatta +scelte +coraggiose +buon +san +matteo +abbraccio +shangai +molti +commentatori +parlano +italia +viva +insistono +concetto +stravagante +staccare +spina +governo +dimenticano +spina +attaccata +mese +fa +salvini +voleva +andare +elezioni +spingendo +italia +recessione +margini +europa +eppure +pregiudizio +solito +vogliono +condizionare +altro +governo +ambizione +molto +grande +vogliamo +condizionare +futuro +leopolda +proveremo +immaginare +italia +prossimi +anni +prossimi +giorni +vogliamo +cambiare +forme +politica +cominciando +presenza +donne +vogliamo +farlo +assieme +tante +persone +devono +iscriversi +altro +riaccendo +cellulare +dopo +volo +trovo +news +alema +dice +finito +salvini +dice +ipocrita +persone +genere +bisogna +avere +molta +pazienza +tanta +umanità +ossessionati +entrambi +terza +volta +consecutiva +bebe +vio +campionessa +mondiale +paralimpica +donna +ragazzi +onore +averla +volto +bella +italia +obama +anni +fa +brava +bebe +orgogliosi +te +felici +sorriso +enews +oggi +vediamo +leopolda +vuole +aderire +italia +viva +trova +link +bit +italiavivaappello +giancarlo +siani +oggi +compiuto +anni +camorra +ucciso +napoli +giornalista +scomodo +andava +eliminato +oggi +fratello +paolo +scrive +articolo +altrohttps +napoli +repubblica +it +cronaca +news +siani +oggi +anni +lettera +fratello +caro +giancarlo +manchi +commuove +fa +venire +brividi +abbraccio +famiglia +siani +abbraccio +tutte +vittime +mafie +terrorismo +criminalità +esempio +giancarlo +siani +aiuti +specie +giovani +vivere +libertà +persone +vere +parole +chiave +italia +viva +crescita +educazione +futuro +n +ancora +importante +parola +doveri +intervista +oggi +tg2 +buongiorno +ecco +puntata +porta +porta +ieri +contento +ottima +audience +commenti +viva +italia +viva +grazie +seguito +commentato +porta +porta +stata +giornata +bellissima +piena +emozioni +proposte +visti +parlamentari +italiaviva +festeggiando +compleanno +lucia +annibali🌹 +domani +ufficializzeremo +gruppi +poi +parte +gente +grazie +affetto +buonanotte +aspetto +stasera +rai +ospite +bruno +vespa +porta +porta +circondati +email +sms +disponibilità +dare +mano +grazie +vuole +intanto +aderisca +sito +www +comitatiazionecivile +it +poi +stasera +vediamo +porta +porta +rai1 +bello +entusiasmo +respiriamo +grazie +deciso +lasciare +pd +costruire +insieme +altri +casa +nuova +fare +politica +modo +diverso +dopo +anni +fuoco +amico +penso +debba +prendere +atto +valori +idee +sogni +possono +essere +giorni +oggetto +litigi +interni +vittoria +ottenuto +parlamento +populismo +altro +salvini +stata +importante +salvare +italia +basta +adesso +tratta +costruire +casa +giovane +innovativa +femminista +lancino +idee +proposte +italia +europa +spazio +enorme +politica +diversa +politica +viva +fatta +passioni +partecipazione +spazio +attende +solo +altro +frase +robert +frost +citata +attimo +fuggente +sempre +fatto +compagnia +anni +boy +scout +strade +trovai +bosco +scelsi +meno +battuta +diverso” +scegliamo +strada +difficile +senza +paracadute +strada +bella +colonna +sonora +notte +lungomare +mondo +lorenzo +jovanotti +buonanotte +italia +profondo +nord +signora +signora +fa +dire +lombarda +definisce +razzista +leghista +sfegatata” +nega +affitto +ragazza +meridionale +ore +stesso +nord +bambino +anni +cade +terrazzo +casa +ragazzo +fa +benzinaio +accorge +tuffa +attutirne +caduta +altro +salvandogli +vita +scena +film +fumetto +realtà +quel +ragazzo +extracomunitario +molto +tempo +italia +chiama +angel +angel +nome +fatto +basterebbe +mettere +episodi +cronaca +fianco +giorni +capire +stata +devastante +diseducativa +campagna +odio +mesi +social +capire +importante +ricordare +conta +razza +provenienza +passaporto +conta +solo +fatto +essere +umani +buona +domenica +prepartita +pareggio +juve +messo +firma +oggi +esco +franchi +po +amaro +bocca +stretto +bene +così +bella +partita +bellissima +coreografia +viva +fiorenza +bravo +ministro +finalmente +italia +torna +paesi +lottano +climate +change +ben +fatto +scorsa +legislatura +stata +jobsact +creato +milione +posti +lavoro +prossima +familyact +spiega +ministra +bonetti +intervista +asili +nido +assegno +figli +solo +condivido +dico +grazie +ceo +francesco +borgomeo +team +utilizzando +strumenti +jobsact +saxa +gres +riassunto +lavoratori +padre +ragazza +può +tornare +sorridere +stato +criticato +moltissime +volte +roberto +saviano +censura +assurda +zerocalcare +arrivata +sindaco +aquila +spinge +reagire +giusto +sindaco +possa +decidere +idee +partecipanti +festival +giusto +sindaco +critichi +direttrice +teatro +stabile +abruzzo +annalisa +altro +simone +solo +partecipato +leopolda +sindaco +aquila +appartiene +fratelli +italia +prima +poi +dovrà +capire +cultura +ammette +censure +leopolda +luogo +libertà +obiettivo +asili +nido +gratuiti +grande +sfida +lanciata +nuovo +governo +ministra +elena +bonetti +saprà +raccogliere +intanto +diciamo +brava +pioniera +isabella +conti +sindaco +san +lazzaro +prima +farlo +italia +orgogliosi +te +isabella +tel +aviv +vita +città +maglietta +nazionale +cuffie +pronto +correre” +buonaserata +ieri +senato +salvini +detto +volere +maggioritario +sistema +semplice +sappia +sera +stessa +elezioni +vinto +meno +parlamentari +stabilità +desideri +bellissimi +trasformarli +realtà +salvini +doveva +votare +sì +referendum +costituzionale +bastava +sì +vinto +no +adesso +teniamo +governi +coalizione +bicameralismo +paritario +chiama +legge +contrappasso +votato +sì” +fiducia +nuovo +governo +mese +politica +italiana +vissuto +tempesta +incredibile +scelta +salvini +chiedere +pieni +poteri” +andare +elezioni +segnato +svolta +altro +inspiegabile +accettare +diktat +lega +andare +votare +novembre +aumentato +iva +portato +italia +recessione +escluso +paese +guida +istituzioni +europee +alimentato +clima +tensione +violenza +verbale +fare +politica +significa +avere +coraggio +fare +scelte +corrente +inattese +sorprendenti +scelto +lavorare +assieme +altri +garantire +futuro +legislatura +fatto +difendendo +interesse +italiani +mordendomi +lingua +insulti +diffamazioni +anni +costato +molto +piano +personale +umano +penso +stata +scelta +giusta +italia +italiani +fa +politica +risentimenti +personali +mettendo +centro +bene +comune +buon +lavoro +nuovo +governo +viva +italia +approfitto +serata +milanese +fare +mezza +maratona +albergo +km +male +vero +ora +mega +doccia +nanna +domani +vota +senato +notte +vota +fiducia +nuovo +governo +dubbi +ricordo +alternativa +aumento +iva +italia +isolata +ue +odio +verbale +via +social +piazze +spiagge +spread +opacità +russe +saluti +romani +bloccare +pieni +poteri” +salvini +dovere +civile +missione +compiuta +uomo +uccide +donna +può +essere +definito +gigante +buono +perde +testa +assassino +chiamare +cose +nome +primo +passo +combattere +femminicidi +violenza +assassino +gigante +buono +gara +pazzesca +meravigliosa +strabiliante +primo +giro +testa +monza +soffrendo +vincendo +leclerc +entra +giovanissimo +storia +ferrari +stupendo +leggete +intervista +teresa +bellanova +capite +orgoglioso +strada +fatto +insieme +ancora +anni +fa +lasciava +mike +bongiorno +colonna +cultura +popolare +italiana +fortuna +incontrarlo +anni +fa +lontano +ieri +parlato +porta +porta +ecco +video +buona +domenica +figlio +beppe +grillo +colpevole +no +decideranno +giudici +social +paese +civile +quando +nessuno +userà +famiglie +aggredire +avversari +politici +attesa +imparino +farlo +altri +diamo +dimostrazione +civiltà +garantisti +sempre +governo +uscente +costato +miliardi +euro +solo +interessi +secondo +stime +osservatorio +cpi +aver +mandato +casa +voleva +uscire +euro +solo +giusto +utile +tasche +italiani +matteo +berrettini +rivelazione +tennistico +sconfitta +nadal +us +open +impedisce +tennista +romano +tifoso +viola +arrivare +finale +ormai +evidente +berrettini +altro +solo +promessa +ama +tennis +vedere +giovanissimo +italiano +big +grandissima +soddisfazione +forza +matteo +ultimo +mese +combattuto +durissima +battaglia +mandare +matteo +salvini +casa +credo +aver +fatto +dovere +cittadino +senatore +credo +aver +vinto +battaglia +insieme +tante +tanti +proprio +rabbrividisco +quando +leggo +giornalista +rai +parla +suicidio +salvini +entro +mesi +altro +tira +ballo +figlia +leader +leghista +limite +decenza +rispetto +umano +giornalista +rai +dovuto +rispettare +lottato +lotterò +sempre +matteo +salvini +pagato +soldi +italiani +parla +suicidio +avversario +addirittura +tira +ballo +piccola +bambina +deve +vergognare +solidarietà +matteo +salvini +famiglia +piccola +bimba +mamma +politica +può +divenire +barbarie +pagato +soldi +cittadini +può +esprimersi +toni +me +prima +viene +civiltà +poi +battaglia +parte +insulta +teresa +bellanova +abito +fisico +storia +bracciante +agricola +divenuta +sindacalista +poi +ministro +degno +polemica +pubblica +semplicemente +altro +poveretto +gente +polemizza +così +solo +compatita +nemmeno +criticata +voglio +però +fare +augurio +ironizza +caratteristiche +fisiche +quasi +sempre +donne +chissà +auguro +poter +provare +almeno +volta +emozioni +bellezza +stupore +persone +vivono +quando +ascoltano +teresa +passione +storia +basti +pensare +discorsi +leopolda +nessuno +infiamma +platea +triste +vita +passa +tempo +odiare +altri +social +utile +imparare +amare +vita +reale +amarvi +poi +qualcuno +pensa +teresa +possa +farsi +fermare +qualche +insulto +beh +problema +conoscete +conoscete +fatto +italia +rappresentata +commissione +europea +sovranista +sembrava +fino +mese +fa +paolo +gentiloni +ottima +notizia +italia +europa +buon +lavoro +mese +fa +ministro +interno +salvini +chiedeva +pieni +poteri” +andare +elezioni +solo +richiesta +veniva +formalizzata +comizi +mezzo +spiaggia +qualche +cubista +molti +mojiti +senza +alcun +riguardo +prerogative +costituzionali +presidente +repubblica +altre +istituzioni +mentre +salvini +altro +esprimeva +raffinati +concetti +consigliere +economico +borghi +ipotizzava +uscita +euro +collaboratore +savoini +chiedeva +tangenti +petrolio +russo +social +educavano +odio +violenza +verbale +soprattutto +persone +colore +pelle +diverso +donne +uomini +fuggiti +fame +guerra +venivano +altro +buon +lavoro +nuovo +governo +tifo +italia +quando +cambia +governo +sempre +giorno +importante +istituzioni +italia +cambia +spesso +governo +troppo +spesso +italia +potrà +mai +cambiare +proprio +dna +popolo +tanti +altro +difetti +certo +popolo +ricco +valori +sentimenti +ideali +sappiamo +accogliere +sorridere +amare +carichi +odio +qualcuno +voluto +dipingere +mesi +italia +deve +scimmiottare +altri +paesi +ricette +popoli +diversi +italia +deve +fare +italia +italia +bellezza +odio +sempre +buona +giornata +undicesimo +mese +consecutivo +attivita +manifatturiera +italiana +contrazione +cose +vanno +male +insomma +effetti +vedranno +prossimi +mesi +emergenza +vera +giustifica +impone +governo +subito +verginella +conosco +bene +regole +tempi +politica +quando +parla +assetti +posti +poltrone +limite +superato +ora +momento +correre +chiudere +emergenza +economica +porte +affrontata +adesso +rinviata +ancora +magari +dopo +elezioni +grandissima +ferrari +mitico +leclerc +finalmente +oggi +fatto +intervista +emilia +patta +sole +ore +mondo +lavora +produce +crea +benessere +niente +temere +governo +nasce +evitando +aumento +iva +abbassando +spread +tempo +leggere +intervista +darmi +qualche +impressione +fate +regalo +dati +istat +oggi +dicono +italia +populista +lascia +pil +negativo +bisogna +sbloccare +cantieri +rilanciare +consumi +famiglie +scommettere +innovazione +quadro +aumentare +iva +andare +votare +stata +catastrofe +possono +fingere +capirlo +italia +deve +ripartire +inchiodare +intervista +oggi +messaggero +scuola +estiva +meritare +italia” +visto +decine +ragazze +ragazzi +parlare +discutere +approfondire +lettera +chiara +scritto +repubblica +bellissima +colpisce +fa +pensare +grazie +chiara +guardiamo +fatti +inizio +agosto +paese +mano +presunto +ministro +interno +usava +linguaggio +odio +diverso +chiedeva +pieni +poteri +isolava +italia +tavoli +internazionali +chiariva +rapporto +russia +teneva +ostaggio +donne +bambini +malmessi +carrozzoni +mare +ignorando +altro +tradizione +accoglienza +valori +italia +sempre +signore +matteo +salvini +preparato +campagna +elettorale +torso +nudo +principali +beach +club +italiani +senza +alcun +riguardo +regole +costituzionali +parlamento +papeete +oggi +incarico +formare +nuovo +governo +salvini +esce +politicamente +scena +tratta +rivendicare +meriti +constatare +fatto +oggi +realtà +ciò +mese +fa +sembrava +impossibile +bene +crede +politica +civiltà +truce +scontro +violenza +verbale +molto +ancora +fare +molte +contraddizioni +molti +problemi +aperti +intanto +istituzioni +populismo +quando +forma +governo +normale +affaccino +ambizioni +richieste +desideri +governo +nasce +base +emergenza +evitare +tasse +salgano +italia +vada +recessione +atto +servizio +paese +innanzitutto +invito +mettere +parte +ambizioni +personali +dare +mano +bene +comune +altro +chiedo +passo +indietro +fatto +basta +tenga +centro +obiettivo +mettere +sicurezza +istituzioni +democratiche +risparmi +italiani +garantisco +costa +fatica +ignorare +insulti +offese +fa +politica +sentimenti +risentimenti +cominciato +qualcuno +chiesto +pieni +poteri” +potere +sostantivo +potere +verbo +poter +cambiare +cose +mettiamoci +servizio +provando +dare +senza +chiedere +semplice +ascoltando +conferenza +stampa +prossimo +ex +ministro +interno +impressione +salvini +leggermente +ossessionato +me +dire +caos +fatto +solo +relax +omonimo +notax +noiva +europa +deve +cambiare +linea +economica +adesso +germania +arriva +recessione +export +basta +brexit +disastro +scontro +🇺🇸 +🇨🇳 +vede +finestra +ora +tempo +investimenti +austerity +🇮🇹 +manda +casa +salvini +possiamo +tornare +protagonisti +adesso +vincitore +prima +giornata +campionato +nome +cognome +comunque +vadano +risultati +finali +chiama +sinisa +mihajlovic +grande +lottatore +gigante +leucemia +emozione +rispetto +onore +ciò +avvenendo +amazzonia +esige +risposta +forte +tutta +comunità +internazionale +dire +colpa +ciò +accade +ong +ridicolo +g7 +nazioni +unite +serve +impegno +fermare +tragedia +salvini +chiesto +pieni +poteri +oggi +detto +pronto +purché +torni +renzi” +ossessionato +rispetto +quindici +giorni +fa +adesso +angolo +quasi +ko +infatti +proposto +governo +evitare +aumentino +tasse +arrivi +recessione +saltino +consumi +fatto +senza +chiedere +nulla +proposta +bene +comune +auguro +prevalga +responsabilità +pensi +italia +interesse +singoli +scuola +meritare +italia +visto +ragazze +ragazzi +studiare +sognare +conoscere +approfondire +meraviglia +politica +altro +chiacchiere +populismo +demagogia +tempo +altro +investito +insieme +ragazzi +tempo +qualità +semina +speranza +orgoglioso +aver +investito +stipendio +senatore +agosto +consentire +ragazzi +incontrare +persone +livello +lascio +polemiche +fa +professione +stato +felice +aver +passato +giorni +ragazzi +notte +amatrice +altri +territori +colpiti +sisma +resterà +sempre +cuore +ferita +mai +cicatrizzata +dolore +ancora +presente +passati +anni +sembra +ieri +insiste +altro +fakenews +polemiche +assurde +dico +fatto +premier +mesi +dopo +terremoto +prendermi +insulti +ciò +funzionato +anni +successivi +mesi +sembra +ingiusto +lasciamo +stare +insulti +fakenews +unico +modo +ripartire +evitare +polemiche +dare +mano +ambito +proprie +responsabilità +dolore +famiglie +vittime +mai +fine +almeno +onoriamo +memoria +perso +vita +ricostruendo +senza +polemiche +insieme +roberto +cingolani +stato +anni +anima +iit +genova +centro +eccellenza +mondiale +lezione +oggi +ragazzi +meritare +stata +straordinaria +intelligenza +artificiale +innovazione +ricerca +altro +robot +prevenzione +sostenibilità +vedere +ragazzi +discutere +senza +tregua +argomenti +tosti +competenza +qualità +ripaga +tante +polemiche +ridicole +idee +situazione +politica +dette +chiare +varie +interviste +mettendoci +ora +impegno +formazione +politica +investendo +stipendio +mese +permettere +giovani +under30 +studiare +approfondire +conoscere +molto +felice +essere +ragazzi +ciocco +ragazzi +dimostrano +meritare +italia +me +zero +polemiche +tanta +politica +terzo +giorno +scuola +meritare +italia +padre +francesco +occhetta +colonna +civiltà +cattolica +aperto +giornata +parlando +ricostruire +politica +tempi +populismo +adesso +tocca +roberto +altro +cingolani +importanti +innovatori +italiani +esperto +robot +intelligenza +artificiale +futuro +bello +bellissimo +vedere +ragazze +ragazzi +discutere +modo +libero +bravissima +milena +bertolini +ct +nazionale +femminile +calcio +presidente +figc +gravina +ragazze +fatto +innamorare +nuovo +calcio +paese +meritare +prima +ascoltare +sagge +parole +presidente +mattarella +pausa +sportiva +ragazzi +scuola +meritare +italia +stasera +incontro +ct +nazionale +calcio +femminile +milena +bertolini +presidente +gravina +seconda +giornata +meritare +scuola +estiva +politica +ciocco +prima +economia +fortis +poi +filosofia +briguglia +quindi +sociale +don +andrea +cottolengo +oltre +ragazzi +under30 +studiano +impegnano +bellissimo +seconda +giornata +meritare +italia +dopo +riflessione +città +isabella +corsa +mattutina +adesso +ernesto +maria +padre +fisco +fatturazione +elettronica +fare +politica +bisogna +studiare +conoscere +capire +bellissimo +clima +prima +giornata +meritare +italia +scuola +estiva +politica +under30 +brava +sindaca +san +lazzaro +isabella +conti +lezione +fantastica +città +bellezza +bisogni +salvini +continua +citarmi +ossessivo +ossessionato +ritiene +responsabile +fatto +qualche +ora +lascerà +viminale +capisco +quando +leggo +braccio +destro +borghi +dice +giornale +altro +tedesco +uscire +euro +bene +italia” +sempre +convinto +fatto +averti +mandato +casa +caro +omonimo +me +grande +onore +fattene +ragione +partenza +verso +ciocco +lucca +organizzato +giorni +formazione +politica +oltre +ragazzi +under +politica +innanzitutto +studiare +conoscere +approfondire +altro +pensato +appuntamento +altro +momento +senza +crisi +governo +orizzonte +maggior +ragione +ancora +convinti +vogliamo +combattere +salvinismo +superficialità +dobbiamo +educare +ragazzi +impegno +primo +intervento +stasera +giovane +bravissima +sindaca +isabella +conti +meritare +italia +titolo +scuola +estiva +inizia +stasera +meritare +paese +bello +mondo +dopo +🙂 +ieri +stata +giornata +molto +dura +punto +vista +personale +risultato +ottimo +peggiori +governi +storia +repubblicana +andato +casa +ministro +salvini +appena +giorni +diventato +passato +molto +fare +adesso +intanto +buongiorno +davvero +buon +giorno +diretta +senato +giuseppe +conte +dimette +governo +fallito +presidente +consiglio +lascia +stile +poco +intervengo +senato +maratonamentana +buongiorno +oggi +davvero +buona +giornata +prende +atto +fallimento +governo +cambiamento +detto +ogni +giorno +mesi +capito +solo +ultime +altro +settimane +oggi +governo +populista +annuncia +dimissioni +chiude +dopo +mesi +peggiori +esperienze +storia +repubblicana +preso +pil +azzerato +detto +pacchia +finita” +migliaia +ragazze +ragazzi +fuga +guerra +fame +isolato +italia +livello +internazionale +tavoli +europei +vinto +propaganda +fakenews +dopo +mesi +stati +sconfitti +realtà +ricordate +quando +dicevano +opposizione +governeremo +anni +bene +opposizione +governato +fa +dire +mesi +tutta +europa +adesso +populisti +funzionano +campagna +elettorale +falliscono +governo +adesso +governo +istituzionale +evitare +aumento +iva +riportare +italia +europa +solito +tocca +rimediare +danni +pronto +sfidare +salvini +elezioni +collegio +firenze +milano +scelga +prima +viene +paese +evitato +aumento +iva +prima +risparmi +italiani +poi +ambizioni +parte +poi +pronto +confronto +collegio +tv +allarme +bundesbank +economia +tedesca +crollo +produzione +industriale +costituisce +problema +enorme +italia +enorme +voglio +rischiare +colpa +elezioni +anticipate +aumento +iva +soltanto +recessione +disastro +peggiore +prima +risparmi +italiani +poi +ambizioni +capitan +fracassa +petizione +sfiducia +salvini +raggiungendo +quota +mila +vuole +firmarla +dovrebbe +sbrigarsi +credo +proprio +domani +servirà +😇 +ultimo +sforzo +firma +firmare +raggiungiamo +quota +mila +bit +sfiduciapersalvini +salvini +renzi +stessa +cosa +” +dicono +anni +alcuni +compagni +partito +pur +fare +guerra +me +fuoco +amico +spalancato +porte +capitanfracassa +dice +battista +oggi +dice +copertina +espresso +vale +pena +arrabbiarsi +amici +certa +sinistra +resterò +sempre +nemico +altro +abbattere +giornali +rispettano +sempre +quando +parlano +male +te +soprattutto +quando +parlano +male +te +basterebbe +tuttavia +po +onestà +intellettuale +capire +paragone +piedi +salvini +infatti +soffre +sparato +oggi +palle +incatenate +me +giorno +puristi +sinistra +altro +fiorentina +soffre +avanti +coppa +italia +stadio +festa +unico +capitano +mitico +giancarlo +antognoni +aleviola +salvini +dice +tutta +colpa +so +fine +dimetterà +colpa +renziani” +dice +accadesse +riterrei +grande +onore +ministro +interno +deve +garantire +sicurezza +seminare +odio +ore +attacca +rende +orgoglioso +aver +messo +battaglia +difficile +coraggiosa +uomo +fino +settimana +fa +definivano +invincibile +scoperto +essere +solo +uomo +pavido +impaurito +ultimi +giorni +relax +prima +rientro +roma +crisi +governo +incontri +ravvicinati +bellezza +oggi +salvini +dice +pur +tornare +renzi +governo +tranquillo +omonimo +entro +governo +istituzionale +decenza +istituzioni +salvezza +paese +basta +esca +prima +possibile +così +italia +eviterà +aumento +iva +riprenderà +ruolo +europa +ministro +interno +finalmente +difenda +sicurezza +anziché +seminare +odio +torno +governo +tranquillo +quando +dimetti +intervista +oggi +giornale +buona +domenica +buon +rientro +torna +vacanze +oggi +quotidiani +pieni +innumerevoli +retroscena +scenari +momenti +genere +politica +rischia +dare +peggio +sé +allora +parliamo +chiaro +stella +polare +persone +serie +rispetto +istituzioni +bene +italiani +interessi +partiti +presunti +leader +andare +votare +ottobre +effetto +altro +aumentare +iva +folle +possono +essere +famiglie +pagare +ambizioni +qualche +aspirante +leader +possiamo +condannare +italia +recessione +serve +governo +istituzionale +pensi +paese +destini +singoli +partiti +governo +istituzionale +prima +cosa +ministro +interno +degno +altro +chiesa +san +piero +perticaia +luogo +cuore +me +solo +bellissimo +esempio +arte +chiesa +giovane +venivo +ascoltare +omelie +grande +altro +sacerdote +monsignor +lorenzo +righi +oggi +correndo +fermato +quassù +pensare +priore” +chiamavamo +ammirare +bellezza +colline +fiorentine +adesso +par +condicio +toscana +buttiamoci +palio +siena +🏇 +ore +grande +confusione +sotto +cielo” +soprattutto +politica +italiana +riceviamo +migliaia +email +persino +ferragosto +formati +nuovi +comitati +petizione +salvini +arrivando +quota +60mila +bit +sfiduciapersalvini +bellissimo +assurdo +mai +vista +crisi +gestita +così +altro +cosa +seria +ridere +salvini +sente +scivolarsi +via +poltrona +solo +potere +potrà +avere +ancora +breve +futuro +capitano +impaurito +brutto +dunque +offre +maio +scene +impallidire +calciomercato +😱 +adesso +vedremo +cosa +movimento +stelle +può +davvero +accadere +altro +fine +salvini +cambiò +idea +ennesima +volta +fino +domenica +scorsa +sembrava +inarrestabile +chiedeva +pieni +poteri +dettava +linea +adesso +auspica +rimpasti +spera +pace +grillini +gradasso +impone +linea +adesso +elemosina +accordo +farsa +senza +dignità +abbraccio +dicevano +altro +parlamento +opposizione +iniziativa +parlamentare +costretto +capitan +fracassa +prima +sconfitta +legislatura +credo +adesso +vada +lanciato +forte +messaggio +parte +cittadini +solo +parlamentari +salvini +dimetta +subito +firmiamo +firmare +petizione +intorno +quota +50mila +firme +martedì +prossimo +possiamo +ancora +crescere +salvini +diventa +ridicolo +aggrapparsi +poltrona +dobbiamo +ricordargli +banale +verità +perso +deve +lasciare +governo +firma +firmare +bit +sfiduciapersalvini +scartabellando +foto +ferragosto +quarantina +anni +fa +grasso +piccolo +nuovo +auguri +premier +pro +tempore +conte +finalmente +reso +conto +slealtà +istituzionale” +salvini +detto +fin +subito +spiace +conte +accorto +solo +adesso +meglio +tardi +mai +salvini +deve +dimettersi +subito +prima +dicevano +solo +opposizioni +adesso +dicono +colleghi +governo +pensa +salvini +debba +andarsene +subito +firmi +firmare +adesso +petizione +chiede +dimissioni +bit +sfiduciapersalvini +nuovo +auguri +buon +ferragosto +riesce +staccarsi +politica +intervista +oggi +repubblica +altri +solo +auguri +controcorrente +adoro +passare +ferragosto +firenze +buona +giornata +auguri +ovunque +godetevi +giornata +speciale +paese +civile +quando +viene +sconfitti +parlamento +dimette +dimissioni +gesto +difficile +passato +garantisco +fa +male +giusto +giusto +matteo +salvini +altro +sfidato +parlamentari +tabellone +senato +segnato +sconfitta +capitan +fracassa +vuole +tenersi +stretta +poltrona +penso +giusto +ore +vacanza +vuole +mobilitarsi +mobiliti +iniziato +comitati +azione +civile +raccogliere +firme +dimissioni +salvini +quasi +quota +riprendiamo +arriviamo +entro +agosto +almeno +firme +viminale +bisogno +professionista +sicurezza +seminatore +odio +lasciamo +salvini +spiaggia +diamo +vero +ministro +interno +italia +firma +firmare +genova +memoria +dolore +vittime +famiglie +speranza +progetto +vero +ricostruzione +desiderio +tenere +lontana +demagogia +sciacallaggio +genova +oggi +silenzio +rispetto +memoria +voglia +futuro +salvini +provocato +crisi +assurda +chiesto +voto +parlamento +perso +tabellone +senato +parla +chiaro +paese +civile +quando +perde +sfida +politica +dimette +fa +male +garantisco +giusto +così +salvini +tiene +troppo +poltrona +staff +pagato +contribuente +dunque +dimette +torna +taglio +altro +parlamentari +ancora +ieri +definiva +salvarenzi” +secondo +me +eccesso +mojito +inizia +fare +effetto +vuole +bene +riposare +poi +dimettere +quando +perde +dimette +passato +so +fa +male +giusto +così +vai +casa +omonimo +spiaggia +lascia +viminale +perso +salvini +fatto +intervento +minuti +citato +volte +renzi +renzi +renzi +innamorato +ossessionato +capitanfracassa +aspetto +oggi +diretta +facebook +conferenza +stampa +palazzo +madama +ora +prima +salvini +chiesto +voto +aula +stato +errore +clamoroso +vota +salvini +perde +conosco +credo +capitanfracassa +cercando +scusa +votare +votare +tabellone +risultati +oggi +molto +male +molto +ecco +conferenza +stampa +senato +poco +fa +governonotax +nadia +toffa +lasciati +ricorderemo +signora +professionista +splendida +ragazza +cancro +ucciso +giovane +donna +anni +modo +combattuto +fa +riflettere +pensare +altro +costringe +ciascuno +vivere +intensamente +terremo +sorriso +cuore +abbraccio +famiglia +redazione +iene +oggi +fatto +intervista +tg2 +trovate +scelta +presidente +casellati +convocare +agosto +assemblea +calendario +solo +provocazione +ennesima +scelta +partigiana +presidenza +aula +vuole +compiacere +salvini +ancora +volta +realtà +finirà +fare +danno +lega +penso +domani +calendario +salvini +perderà +primo +voto +altro +lunga +serie +plastico +capitanfracassa +minoranza +colleghi +senatori +domani +presenterò +senato +sensazione +domani +chiaro +democrazia +parlamentare +spiaggia +milano +marittima +quasi +ex +ministro +interno +rassegni +prepari +dare +dimissioni +così +smetterà +usare +soldi +viminale +campagna +elettorale +permanente +memoria +paese +fa +conti +proprio +passato +futuro +oggi +famiglia +trieste +basovizza +tragedia +foibe +stata +troppo +tempo +ignorata +giusto +nuove +generazioni +sappiano +conoscano +ricordino +attacchi +quotidiani +ricevo +compagni +partito +oggi +sommano +insulti +beppe +grillo +uomo +tempo +chiamava +ebetino” +adesso +definisce +avvoltoio” +male +migliora🤣 +insulto +possa +fermarmi +davanti +capitan +fracassa +chiede +pieni +poteri +culla +antico +sogno +uscire +euro +altro +sopporto +ogni +insulto +insisto +governo +istituzionale +immagine +tornaconto +personale +meglio +stare +angolo +aspettare +sfascio +bene +comune +viene +prima +interesse +singoli +prima +pensa +italia +poi +interessi +parte +buona +settimana +ferragosto +sant +anna +stazzema +luogo +dolore +massacro +tragedia +visitato +luogo +tenace +resistenza +dignità +esemplare +passione +civile +almeno +oggi +ricordo +anni +strage +sant +anna +stazzema +capitale +morale +paese +dimentica +eccidio +nazifascista +mattina +fatto +proposta +governo +notax +eviti +aumento +iva +metta +sicurezza +conti +pubblici +italiani +rivolto +anni +insultato +offeso +diffamato +comprensibile +alcuni +amici +spiazzati +scettici +dubbiosi +ieri +sera +dopo +aver +fatto +intervista +corriere +altro +andato +mangiare +pizza +famiglia +genitori +pensato +giorni +persone +inqualificabili +stelle +segni +manette +confronti +cittadini +incensurati +settantenni +finiti +colpa +vicende +grandi +vado +pancia +dico +mai +accordi +altro +salvini +attacca +oggi +paura +propone +soluzioni +già +doveva +aver +approvato +quattordici +mesi +fa +primo +consiglio +ministri” +flat +tax +pace +fiscale +riduzione +altro +tasse +casa +frattempo +roma +spara +muore +parchi +pubblici +ministro +tace +anzi +capitan +fracassa +reagisce +fa +solo +altro +mojito +goditelo +omonimo +goditelo +poco +sacco +tempo +libero +viminale +arriverà +ministro +fannullone +davanti +forzatura +istituzionale +matteo +salvini +parlamento +strade +assecondare +capitan +fracassa +andare +voto +vuole +quando +vuole +oppure +creare +governo +notax +eviti +altro +aumento +iva +scongiuri +rischio +uscita +euro +dubbi +molti +motivi +risentimento +personale +mesi +attaccato +insultato +cominciare +stelle +politica +fa +cercando +bene +comune +inseguendo +ripicche +personali +italia +viene +prima +correnti +partito +parlamento +ciascuno +dovrà +votare +convinto +maggioranza +governo +istituzionale +salvi +italia +dirà +altro +stamattina +cima +torre +arnolfo +sindaco +città +bella +mondo +oggi +giorno +liberazione +firenze +nazisti +fascisti +senatore +collegio +altro +accompagnato +dario +nardella +lassù +cima +palazzo +vecchio +sentire +rintocchi +campana +martinella +anni +fa +urlò +mondo +firenze +libera +viva +fiorenza +viva +libertà +fatto +intervista +corriere +sera +governo +gialloverde +fallito +miseramente +oggi +potremmo +cullarci +ritornello +detto” +tempo +stato +galantuomo +davvero +leader +altro +può +solo +commentare +ciò +accade +deve +dare +visione +quando +può +creare +polemica +divisione +”if +you +decide +you +divide” +insegnato +barack +obama +ritengo +andare +votare +sistema +istituzionale +ministro +interno +rischio +aumento +iva +assurdo +appello +tutte +forze +politiche +vicine +lontane +tutte +prevalga +senso +istituzioni +pensa +prima +altro +oggi +giornali +pieni +retroscena +accordi +segreti +stelle +qualcuno +già +ipotizza +possa +votare +fiducia +fico +premier +toninelli +premier +allora +battista +ragazzi +così +preparati +competenti +😂😂😂 +ragazzi +scherziamo +verità +altra +salvini +capitan +fracassa +digerisce +altro +fatto +paese +ragiona +vuole +pieni +poteri +vuole +decidere +quando +vota +mattarella +vuole +decidere +quando +riunire +parlamento +conferenza +capigruppo +vuole +decidere +dopo +anni +pagando +fare +nulla +diffondere +odio +insicurezza +crisi +altro +capitan +fracassa +farnetica +spiaggia +chiede +italiani +datemi +pieni +poteri +ultimo +chiederli +badoglio +salvini +favore +meno +mojiti +camomille +dicevano +governeremo +anni +retto +nemmeno +mesi +dicevano +ripartire +italia +riportato +zero +pil +bloccato +crescita +dicevano +terza +repubblica +governato +litigando +terza +media +prossime +ore +disegneremo +futuro +vuole +darci +mano +rassegna +altro +arrende +fondi +comitato +azione +civile +www +comitatiazionecivile +it +oggi +stesso +sentire +resti +finestra +molto +fare +restituire +speranza +bellezza +paese +figli +intanto +parliamoci +chiaro +ragione +quando +dicevamo +realtà +sconfitto +propaganda +salvini +gioca +carta +altro +diretta +santomato +pt +governo +fallito +fallito +prima +previsto +tempo +galantuomo +verità +arriva +bene +fatto +essere +coerenti +idee +solo +tav +capitan +fracassa +coraggio +fare +legge +bilancio +troppa +paura +inchieste +adesso +spiegare +casa +casa +grazie +salvini +iva +aumenta +mercati +ballano +lega +ladrona +fa +male +italia +problemi +gravi +ultimi +vent +anni +italia +livello +retribuzioni +stipendi +insomma +troppo +bassi +classe +media +80€ +mensili +anni +altro +vengono +riconosciuti +italiani +guadagnano +meno +500€ +mensili +primo +concreto +gesto +attenzione +verso +ceto +medio +può +fare +certo +importante +fare +meno +giorni +lega +chiesto +trasformare +misura +almeno +milioni +italiani +rischiano +pagare +tasse +coordinatori +comitati +civici +zone +diverse +italia +lanciato +petizione +chiedere +mantenere +80€ +governo +rimane +vediamo +teatrino +finisce +saltano +80€ +meno +bella +mobilitazione +popolare +do +volentieri +mano +azione +civile +comitati +invito +firmare +vanno +alzati +stipendi +tasse +dico +pagliacciata +pelle +paese +stancato +dovrebbero +dimettersi +salvini +maio +premier +qualcuno +ricorda +avvisarlo +parliamo +stasera +santomato +diretta +daniela +misul +stata +presidente +comunità +ebraica +firenze +diversi +anni +lavorato +tanto +insieme +progetti +educativi +iniziative +volontariato +illuminazione +bellissima +altro +sinagoga +città +naturalmente +viaggi +memoria +centinaio +studenti +scuole +superiori +ogni +anno +tornavano +inferno +auschwitz +conoscere +storia +olocausto +gridare +mai +daniela +lasciato +oggi +dopo +terribile +malattia +rendo +omaggio +cattolico +imparato +molto +sorella +maggiore +ebrea +sensibilità +intelligenza +comunità +terremo +viva +memoria +ora +sempre +nome +grazie +daniela +shalòm +vedo +video +commuovo +umanità +giudice +umanità +imputato +solito +notizia +solo +cose +negative +voglio +condividere +pagine +umanità +buon +pomeriggio +agosto +centinaia +italiani +perdevano +vita +miniera +belga +marcinelle +strage +incontrato +qualche +anno +fa +sopravvissuti +tragedia +mario +riuscì +salvarsi +solo +altro +circostanza +fortunata +poco +prima +morire +decise +consegnarmi +bruxelles +lampada +accompagnava +quando +scendeva +miniera +tengo +ufficio +voglio +ricordarmi +sempre +quando +italiani +fare +lavori +altri +volevano +fare +tengo +ufficio +voglio +ricordarmi +sempre +quando +immigrati +tengo +ufficio +ricordare +marcinelle +significa +ricordare +dolore +orgoglio +appartenere +comunità +veniva +derisa +manche +comunità +donne +uomini +generosi +pieni +coraggio +pensiero +vittime +marcinelle +pensiero +mario +pensiero +immigrati +oggi +cancellare +80€ +grande +danno +guadagna +poco +dopo +anni +polemiche +iniziano +riconoscerlo +comizio +sabaudia +salvini +attacca +me +strano +dice +stato +governo +decenni +roma +lasciato +governo +salvini +invece +pagato +italiani +anni +ininterrottamente +primo +stipendio +pubblico +preso +ancora +lira +gettone +telefonico +internet +altro +berlusconi +ancora +iniziato +politica +salvini +già +groppone +italiani +appena +capitan +fracassa +finito +blaterare +dice +cosa +fatto +concreto +italiani +anni +chiacchierone +cosa +sconvolgente +oggi +solo +vice +premier +litighino +bambini +viziati +cosa +sconvolgente +oggi +italia +senza +premier +giuseppe +conte +semplicemente +imbarazzante +dato +sorprendente +produttività +cresciuti +altri +dice +nessuno +spiega +benissimo +professor +fortis +oggi +sole +ore +vuole +altro +conoscere +studiare +approfondire +può +leggere +dati +accontenta +salvini +maio +sappia +quando +quei +casualmente +bloccato +oggi +votato +senato +favore +tav +pensiamo +paese +dunque +sì +divertente +strategia +alcuni +statisti +nostrani +cominciare +battista +persino +qualche +dem +pd +doveva +votare +tav +così +salvini +arrabbiato” +cosa +grillini +vogliono +davvero +fare +crisi +bene +allora +altro +votino +mozione +sfiducia +salvini +settembre +rubli +milioni +ragioni +mancano +vogliono +mandare +casa +governo +facciamolo +soldi +lega +tav +grillini +coraggio +resteranno +abbarbicati +poltrona +bella +intervista +pete +souza +corriere +sera +parla +obama +stato +fotografo +anni +ombra +parla +cuore +sofferenza +presidente +davanti +stragi +americane +figlie +diffusione +armi +poi +tutte +volte +leggo +pete +ripenso +amicizia +tiberio +ieri +cassazione +scritto +sentenza +definitiva +salvini +deve +restituire +milioni +€ +italiani +dico +molti +quei +denari +finiti +finanziare +bestia +propaganda +leghista +creando +odio +rancore +attesa +farci +sapere +rubli +possono +dirci +messo +euro +rubato +soldi +italiani +ieri +può +dire +senza +timore +smentita +quando +restituiranno +parla +povertà +lamenta +lontananza +politica +ceti +deboli +cosa +stato +fatto +davvero +scrivo +oggi +lettera +repubblica +populismo +salvini +maio +populismo +commenta +senza +conoscere +oggi +governo +dice +basta +80€ +fine +pagare +sempre +deboli +famiglie +mille +euro +anno +aiuto +vero +salvini +finito +tour +spiaggia +deve +fare +cassa +dispiace +misura +giusta +aiutato +tante +famiglie +dispiace +soprattutto +rimetterci +sempre +soliti +giovedì +intorno +aspetto +festa +unità +santomato +provincia +pistoia +diretta +facebook +pagina +fan +espresso +testata +agito +tribunale +trovo +assurdo +vicenda +rubli +lega +voglia +fare +processo +giornalisti +parliamoci +chiaro +problema +sapere +tizian +vergine +audio +dialogo +leghisti +russi +verificare +audio +vero +altro +dialogo +stato +leghisti +chiesto +maxi +tangente +milioni +€ +campagna +elettorale +salvini +domanda +leghisti +savoini +davvero +chiesto +milioni +€ +campagna +elettorale +salvini +risposta +fatto +scoprirlo +” +impressione +leghisti +mosca +messi +benissimo +domanda +salvini +invece +semplice +chiesto +tangenti +campagna +elettorale +no +fatto +devi +denunciarli +altrimenti +complice +problema +tangenti +russe +giornalisti +italiani +sbaglio +strumentalizzare +madonna +sponsorizzare +decreto +sicurezza +ennesimo +insulto +soprattutto +credenti +dice +cinico +conosce +prezzo +conosce +valore +niente +salvini +oggi +dimostra +essere +terribilmente +cinico +serve +nemmeno +ricordargli +quando +scendeva +palchi +lega +bestemmiando +arriva +punto +strumentalizzare +ciò +prezioso +semplicemente +oltre +persino +oltre +disgusto +america +atti +terrorismo +giro +poche +ore +colpa +diffusione +armi +certo +responsabilità +stragi +killer +ovvio +qualche +politico +deve +riflettere +proprio +vocabolario +forza +parlare +invasioni +inesistenti +arrivano +invasati +veri +invasati +sparano +uccidono +leggendo +quotidiani +oggi +vediamo +salvini +capito +avere +numeri +decreto +sicurezza +dunque +rilancia +tav +giorno +verità +viene +spostato +mercoledì +vedremo +dopo +voto +mozioni +tav +governo +piedi +no +volete +opinione +dico +tutta +buffonata +lasciano +poltrone +altro +nemmeno +scherzo +riparleremo +mercoledì +senato +intanto +considerazione +proposito +buffonate +me +salvini +può +girare +nudo +vestito +bere +mojito +acqua +fare +deejay +influencer +attacco +capacità +essere +garante +sicurezza +italiani +interessa +discutere +risultati +ciò +altro +giustificare +attacchi +salvini +giornalisti +oggi +direttore +verità +maurizio +belpietro +scrive +editoriale +abusi +renzi” +ricapitolo +fatti +salvini +fa +salire +figlio +moto +acqua +polizia +polizia +cerca +impedire +riprese +salvini +attacca +videomaker +dicendogli +occuparsi +altro +altro +piacciono +bambini” +quasi +nessuno +stampa +fiata +conferenza +stampa +belpietro +fa +parla +presunti +abusi +opinione +sapete +chiesto +lasciare +stare +figlio +salvini +persone +civili +attacchiamo +minorenni +rimane +dubbio +sapere +cosa +fatto +moto +acqua +altro +stati +uniti +seconda +volta +giro +poche +ore +nazione +assiste +strage +dopo +el +paso +texas +oggi +dayton +ohio +odio +diventa +violenza +diffusione +armi +fuoco +rifiuto +ogni +convivenza +storie +perso +vita +male +cuore +cominciare +mamma +fa +scudo +umano +altro +bambino +mesi +muore +vivrà +grazie +vanno +bloccati +puniti +killer +bisogna +ridurre +diffusione +armi +violenza +verbale +america +naturalmente +ovunque +stamattina +salvini +attacca +dicendo +fatto +disastri +ehi +omonimo +unico +combinato +disastri +preso +paese +cresceva +azzerato +pil +usi +linguaggio +odio +amplifica +insicurezza +fare +bisboccia +spiaggia +tocchi +palla +europa +senza +raccolta +firme +dicci +quando +restituisci +milioni +quando +quereli +savoini +poi +avanza +tempo +mettiti +lavorare +anni +paghiamo +stipendio +fannullone +diresti +bacioni😘 +promesso +parlare +discussioni +interne +pd +litigare +presenza +governo +allucinante +purtroppo +oggi +polemiche +inspiegabili +fatto +bravissimi +comitati +azionecivile +presentato +raccolta +firme +mozione +sfiducia +salvini +ricordate +storia +alcuni +altro +proposto +portare +ministro +interno +parlamento +attraverso +mozione +sfiducia +gruppo +dirigente +pd +bloccato +iniziativa +definendola +sbagliata +conseguenza +fermato +macchine +poi +quando +finalmente +pd +fatto +mozione +sfiducia +troppo +tardi +votarla +aula +prima +settembre +altro +giorni +soffre +alzheimer +amico +membro +propria +famiglia +notizia +vuol +dire +tanto +alzheimer +tragedia +ancora +lontana +essere +sconfitta +ogni +ricerca +altro +porta +lotta +avanti +notizia +fantastica +incoraggiare +futuro +luogo +brutto +pieno +ombre +molti +vogliono +rappresentare +innovazione +ricerca +tecnologia +possono +farci +vincere +sfide +oggi +sembrano +impossibili +farlo +bisogna +credere +scienza +credere +domani +senza +cedere +stregoni +paura +passo +volta +giorno +dopo +giorno +intanto +abbraccio +amici +membri +propria +famiglia +malati +alzheimer +demenza +senile +sindaco +reso +conto +molti +pensiamo +chiama +alia +guagni +calciatrice +partecipato +azzurre +mondiali +mese +scorso +capitano +firenze +alzato +cielo +scudetto +coppa +giorni +detto +no +altro +real +madrid +restare +fiorentina +femminile +gesto +bellissimo +squadra +città +deve +essere +stimolo +dare +diritti +calciatrici +generale +donne +sport +iniziato +qualche +anno +fa +ancora +molto +fare +inutile +entusiasmarsi +grandi +vittorie +poi +donne +vengono +trattate +atlete +serie +proviamoci +insieme +senza +divisioni +colore +politico +sport +brava +alia +viva +fiorenza +fine +giornata +premio +bronzo +vince +ancora +gigggino +maio +oggi +tirato +fuori +repertorio +evergreen +ultimo +anno +revoca +concessione +benetton +piace +altro +ricordare +maio +così +mentre +spiega +italiani +darà +mai +alitalia +benetton +nessuna +revoca +maio +usa +tema +diversivo +giornata +fa +male +triste +operazione +sciacallaggio +maio +fa +tragedia +nazionale +morandi +cambiato +idea +alitalia +80€ +olimpiadi +tap +revoca +ieri +durante +trasmissione +televisiva +la7 +giornalista +padellaro +fatto +quotidiano +ritratto +mentre +presenta +libro +circostanza +volte +chiamato +causa +modo +altro +assurdo +diffamatorio +credo +essere +ormai +ossessione +alcune +firme +fatto +quotidiano +vengo +coinvolto +quando +proprio +entro +niente +visto +parlava +insulti +salvini +giornalisti +moto +acqua +dato +mandato +legali +agire +giudizio +civile +padellaro +diffamazione +intendo +permettere +nessuno +gettarmi +fango +linee +guida +dati +mese +fa +milano +tratterrò +solo +eventuale +risarcimento +danni +resto +devoluto +associazione +volontariato +scelta +insieme +comitati +azione +civile +buon +weekend +oggi +nazione +carlino +aprono +brutta +notizia +penso +governo +serio +dovrebbe +occuparsi +temi +emergenza +droga +finta +emergenza +immigrazione +governo +serio +altro +dovrebbe +occuparsi +produzione +industriale +fa +meno +rispetto +scorso +anno +polemiche +vicepremier +fannulloni +governo +serio +solo +dovrebbe +fare +qualcosa +passare +tempo +litigare +poche +esperienze +cambiato +vita +fare +arbitro +calcio +solo +davanti +tante +persone +pronte +attaccarti +primo +errore +devi +decidere +frazione +secondo +prenderti +altro +responsabilità +resistere +insulti +trovo +bellissimo +prossimo +agosto +supercoppa +europea +liverpool +chelsea +arbitrata +donna +prima +volta +ultima +strada +verso +parità +battaglia +equal +pay +passa +gesti +bocca +lupo +collega” +stephanie +repubblica +richiama +raccolta +firme +salvini +stato +errore +presentare +subito +mozione +sfiducia +adesso +utilizziamo +tempo +firmare +firmare +ama +così +tanto +altro +stare +spiaggia +lasciamo +possa +godersi +mare +mettiamo +viminale +vero +ministro +aspirante +influencer +firmarla +https +www +comitatiazionecivile +it +petizione +dimissioni +salvini +mentre +guida +governo +semina +odio +mette +discussione +valori +fondamentali +paese +esponenti +democratici +anziché +attaccare +governo +litigano +massacrano +candidato +forte +polemiche +buon +governo +passato +strano +partito +democratico +americano +😉 +mozione +sfiducia +matteo +salvini +stata +messa +calendario +settembre +tratta +decisione +assurda +dovuto +votare +prima +presenza +ministro +interno +alimenta +altro +odio +rancore +tensione +caccia +diverso +insulti +giornalisti +scandalo +milioni +euro +sottratti +italiani +impiegati +modo +opaco +strane +connessioni +dirigenti +leghisti +funzionari +russi +sequestro +alto +mare +profughi +richiedenti +asilo +dimostrano +volta +matteo +salvini +adeguato +ruolo +garante +sicurezza +cittadini +italiani +settembre +vogliamo +mobilitare +donne +uomini +buona +volontà +cuore +sorti +comunità +italiana +rassegnano +demordono +chiediamo +insieme +dimissioni +matteo +salvini +facciamolo +alta +voce +senza +paura +mai +momento +necessario +sentire +voce +oppone +modello +culturale +odio +violenza +verbale +oggi +svimez +dice +mentre +italia +salvini +maio +tornata +zero +sud +ancora +peggio +sotto +zero +dobbiamo +tornare +crescere +dobbiamo +sbloccare +infrastrutture +dobbiamo +creare +posti +lavoro +navigator +farlo +rotto +incantesimo +sembra +unico +problema +italia +immigrazione +problema +altro +immigrazione +emigrazione +ragazzi +sud +vanno +estero +problema +immigrazione +illegalità +reati +vanno +puniti +senza +badare +colore +pelle +reo +problema +immigrazione +economia +ferma +vanno +rilanciate +opere +pubbliche +statista +toninelli +bloccato +modo +assurdo +oggi +primo +giorno +agosto +mese +relax +chiacchiere +riusciremo +parlare +veri +problemi +italia +continueremo +essere +bloccati +incantesimo +salvini +problema +solo +soltanto +sempre +immigrazione +mettiamocela +tutta +italia +merita +dibattito +serio +civile +italia +tornata +crescere +italia +inchiodato +adesso +istat +dice +zero +zero +crescita +pil +zero +idee +economiche +maio +salvini +zero +altro +credibilità +internazionale +conte +zero +opere +sbloccate +toninelli +giustificarsi +adesso +citano +dati +lavoro +senza +rendersi +conto +posti +lavoro +cresciuti +jobsact +credete +fatto +disegnino +così +capisce +maio +premessa +numero +utilizzato +mezzi +uomini +forze +ordine +divertire +figli +lega +stelle +massacrato +massacrato +chiesto +dimissioni +social +travaglio +occupato +banchi +governo +battista +marciato +palazzo +chigi +meloni +salvini +altro +organizzato +sit +sotto +caserme +commissariati +firenze +profili +social +figli +stati +presi +assalto +insulti +minacce +premessa +numero +matteo +salvini +distruggendo +reputazione +viminale +interventi +sguaiati +modalità +rozze +scelte +controproducenti +continuo +pensare +stato +altro +ennesima +vergognosa +bufala +foto +foto +funerale +ascoli +alcune +vittime +terremoto +eppure +ancora +oggi +migliaia +persone +credono +fake +news +messe +giro +arte +altro +attaccarmi +occorre +grande +sfida +educativa +sconfiggere +fake +news +restituire +dignità +confronto +scontro +politico +battaglia +mollo +mon +mollerò +solo +centimetro +continua +soap +opera +chiamata +governo +oggi +salvini +fa +offeso +maio +definito +quell +altro” +vette +altissime +insomma +mentre +quell +altro +litigano +produzione +industriale +luglio +fa +meno +fonte +csc +pulci +pil +tornati +zero +diamo +mossa +vanno +sbloccate +infrastrutture +posti +lavoro +altro +notav +reddito +cittadinanza +grande +emozione +vedere +luca +parmitano +parlare +mondo +intero +riscaldamento +globale +dopo +accordi +parigi +italia +orgogliosamente +firmato +tempi +governo +sembra +essersi +fermato +grazie +luca +forza +messaggio +circondati +populismo +fake +news +dobbiamo +ripartire +educazione +studio +formazione +agosto +ciocco +lucca +ospiteremo +scuola +estiva +under30 +altro +ultime +ore +iscriversi +esperienza +diversa +tanto +studio +solo +studiando +combatteremo +cialtroneria +governa +sciacalli +possono +stare +parlamento +dopo +omicidio +brigadiere +mario +cerciello +rega +deputata +destra +aggredito +strumentalmente +sostenendo +africani +altro +responsabile +morale +politico” +accaduto +comitati +azione +civile +dati +obiettivo +raggiungere +25mila +firme +consegnare +settimana +camera +chiedendo +dimissioni +indegna +deputata +giorno +mezzo +state +raccolte +metà +firme +necessarie +aiuti +firmando +girare +appello +posto +sciacalli +parlamento +governo +litiga +eppure +cade +motivo +votare +spiega +oggi +corriere +sera +edizione +torino +giustificare +fatto +consiglio +comunale +altro +sfiduci +sindaco +appendino +votare +vanno +casa +molti +nemmeno +lavoro +ripartire +spiace +dirlo +stessa +ragione +grillini +crisi +parlamento +gettone +cittadinanza +importante +bevono +tav +ilva +decreto +sicurezza +immunità +salvini +eccetera +nessuno +ama +poltrone +casta +tempo +casta +onor +potè +digiuno +chiacchierata +avvenire +situazione +politica +mondo +cattolico +odio +regna +social +firmato +petizione +deputata +accusato +omicidio +roma +naturalmente +scuola +estiva +ragazzi +dite +pensate +qualche +mese +fa +insegnante +rivolse +uomini +divisa +urlando +dovete +morire” +tv +risposi +vedete +video +oggi +prof +commentato +morte +carabiniere +dicendo +meno” +altro +cambiato +idea +prof +insultano +forze +ordine +me +degni +educare +scuole +italiane +elianafrontini +oggi +ministero +infrastrutture +teoria +guidato +toninelli +ufficializzato +unione +europea +italia +favorevole +tav +toninelli +rifiutato +firmare +lettera +lasciato +farlo +dirigenti +bene +allora +cosa +aspetta +toninelli +firmare +lettera +dimissioni +firmi +tav +firmi +dimissioni +altre +strade +toninelli +capirà +ieri +parlamentare +destra +accusato +essere +responsabile +politico +morale +omicidio +carabiniere +mario +cerciello +rega +clima +odio +creando +infame +italia +deve +altro +stringere +intorno +arma +famiglia +persone +perbene +devono +chiedere +dimissioni +sciacalli +firmare +fate +girare +link +onore +giocatori +italiani +settebello +nuovo +campioni +mondo +pallanuoto +vera +propria +standing +ovation +merita +coach +sandro +campagna +trionfo +molto +mano +piedi +viva +italia +stanotte +molto +difficile +prendere +sonno +largo +sicilia +morte +cento +persone +morte +annegate +morte +modo +atroce +giovane +carabiniere +mario +cerciello +rega +anni +appena +sposato +stato +ucciso +coltellate +turista +americano +durante +controllo +proprio +ieri +parlamento +licenziato +secondo +decreto +altro +sicurezza +salvini +pieno +demagogia +inefficace +visto +sicurezza +ottiene +dirette +facebook +purtroppo +clima +odio +serve +nessuno +pensate +parlamentare +destra +stamani +insulta +dicendo +responsabile +politico +morale +omicidio +convinta +stati +altro +noto +statista +luigi +maio +attacca +stamattina +davvero +strano +grillini +affannino +dire +renzi +finito” +poi +però +giorni +pre +occupino +me +stavolta +argomento +tav +maio +dice +renzi +notav +dico +caldo +poverino +però +proviamo +spiegare +cose +benino +ordine +buon +altro +maio +magari +stavolta +capisce +chissà +sempre +sostenuto +tav +torino +palermo +passando +persino +ponte +stretto +sempre +difeso +forze +ordine +violenti +notav +cominciare +veniva +condannato +aver +invaso +cantiere +preso +sassate +poliziotti +criticato +alcuni +casi +percorsi +altro +terribile +notizia +roma +omicidio +carabiniere +opera +killer +sorpreso +rubare +responsabilità +istituzionali +adesso +assicuri +patrie +galere +killer +condoglianze +famiglia +arma +assurdo +devastante +morire +così +bello +clima +ieri +castrocaro +brava +sindaca +marianna +tonellato +rilanciando +comunità +festival +tanta +gente +molte +idee +voglia +partecipare +anno +dopo +ricordo +sergio +marchionne +grande +italiano +ricordo +parole +nuova +stagione +doveri +solo +diritti +concetto +oggi +vero +mai +piccolo +josephtidd +anno +giocatrice +orlando +pride +carsonpickett +anni +molto +comune +entrambi +amano +calcio +sportivi +entrambi +parzialmente +perso +braccio +altro +sinistro +mamma +joseph +raccontato +piccolo +dopo +partita +durante +viaggio +auto +ritorno +casa +fatto +altro +ridere +agitare +braccio +sinistro +felice +aver +trovato +nuova +amica +simile +me +immagine +bella +giornali +oggi +quando +sport +pura +autentica +smisurata +bellezza +qualcosa +grande +sorrisi +oggi +morto +rutger +hauer +attore +molti +film +successo +blade +runner +scena +vedete +scene +belle +cinema +mondiale +me +scena +senso +vita +altro +morte +esplode +modo +straordinario +primo +farmi +apprezzare +blade +runner +stato +liceo +prof +religione +don +paolo +bargigia +voluto +molto +bene +stato +me +maestro +vero +don +paolo +vedere +film +blade +runner +spingeva +farci +domande +grandi +temi +cuore +uomo +oggi +rutger +hauer +lasciato +proprio +anno +blade +runner +ambientato +viene +brivido +rivedendo +scena +ripropongo +augurandovi +buona +notte +augurandovi +augurandomi +vivere +sempre +persone +capaci +farsi +domande +profonde +autentiche +piene +senso +domani +tempo +guardare +venti +minuti +video +riassunto +credo +ministro +interno +forse +stupirete +frase +realtà +dovere +credere +altro +ministro +interno +almeno +fino +prova +contraria +salvini +detto +pronto +denunciare +coloro +legano +nome +lega +soldi +russi +bene +ministro +allora +unica +chance +davvero +pulito +dici +davvero +onesto +dici +davvero +paura +devi +denunciare +legato +nome +lega +soldi +russi +unico +signore +devi +denunciare +gianluca +savoini +sì +proprio +amico +braccio +destro +portato +russia +uomo +lega +unico +legare +nome +lega +rubli +chiedendo +russi +tangente +stato +proprio +savoini +allora +caro +ministro +denunci +savoini +paura +venga +fuori +altro +impressione +beautiful +venendo +noia +quando +lasciate +facebook +accettate +confronto +televisivo +americana +potete +continuare +fuggire +coraggio +diretta +senato +annunciato +stamattina +andiamo +diretta +facebook +senato +casualmente +stessa +ora +parleranno +piccioncini +salvini +maio +interessati +trama +beautiful +seguite +parlare +politica +aspetto +😁 +messo +mese +capire +bisognava +uscire +euro +mesi +capire +80€ +andavano +tenuti +mesi +capire +fatturazione +elettronica +serviva +ora +dopo +appena +anno +dicono +sì +tav +cattivi +arrivano +dopo +basta +avere +pazienza +tempo +galantuomo +fatto +parte +scout +cattolici +conosce +storia +aquile +randagie +gruppo +ragazzi +milanesi +sfidarono +fascismo +attività +scout +bellissima +impervia +val +codera +altro +stessa +valle +divenne +poi +transito +aiutare +ebrei +raggiungere +svizzera +durante +guerra +storia +andrea +ghetti +detto +baden +amici +fa +venire +ancora +brividi +molti +fortuna +conoscere +ascoltare +vittorio +ghetti +fratello +baden +salire +compagni +clan +val +codera +volte +aver +incontrato +storia +aquile +randagie +stato +dono +me +oggi +giornali +annunciano +uscita +film +dedicato +quei +ragazzi +antifascisti +liberi +forti +spero +altezza +aspettative +spero +aiuti +tanti +ragazzi +oggi +conoscere +storia +val +codera +alcuni +giovani +coraggiosi +scout +italiani +vanno +fieri +membri +commissione +tav +contrari +favorevole +toninelli +fa +caccia +senza +ragione +unico +favorevole +pierluigi +coppola +incredibile +firmato +interrogazione +parlamentare +collega +margiotta +chiedere +spiegazioni +intanto +domanda +quando +governo +dirà +sì +tav +toninelli +caccerà +solo +servirà +rimpasto +togliergli +poltrona +ripropongo +chiacchierata +stamani +gaia +tortora +omnibus +la7 +buona +giornata +tutte +volte +intervista +salvini +maio +parte +qualcuno +pd +attacca +abituato +problema +mentre +ieri +sera +difendevo +comunità +donne +uomini +pd +schifose +strumentalizzazioni +maio +vicenda +poveri +bambini +bibbiano +altri +aprivano +grillini +penso +pd +altro +dovrebbe +occuparsi +fare +opposizione +governo +me +altra +storia +vuole +chiarezza +volta +tutte +allora +prendo +serio +parole +oggi +dario +franceschini +intervista +metà +attribuisce +me +colpa +ciò +successo +mesi +metà +fa +elogio +movimento +altro +volo +verso +italia +leggo +polemiche +bibbiano +me +compie +violenza +bambini +punito +senza +pietà +violenza +piccoli +atto +odioso +possa +esistere +errore +orrore +dunque +responsabili +paghino +magistratura +individui +colpevoli +senza +nuovo +tribunale +popolo +social +altro +media +decidere +responsabile +no +vogliamo +giustizia +giustizia +giustizia +sbagliato +chiunque +deve +pagare +senza +sconti +ore +stelle +lega +attaccano +testa +bassa +attribuendoci +colpe +ciò +avvenuto +bibbiano +incredibile +potendo +parlare +governo +cercano +diversivo +altro +violenza +notav +parte +forze +ordine +sempre +senza +senza +giorni +belli +pieni +montana +parco +yellowstone +discutere +futuro +trovato +yoghi +bubu +eroi +infanzia +tante +idee +futuro +buona +domenica +ritorno +trovate +intervista +corriere +oggi +maria +teresa +meli +crisi +governo +rubli +benetton +sfiducia +scuola +estiva +modo +fare +opposizione +quel +magone +prende +quando +altro +estero +vedi +italia +considerata +paese +magnifico +viene +scartata +investitori +instabilità +politica +buona +domenica +parco +yellowstone +ricordate +fake +news +vacanza +lamborghini +ibiza +foto +fatta +quando +festeggiare +nuove +assunzioni +oggi +giornali +riportano +lamborghini +firmato +nuovo +altro +contratto +diritti +lavoratori +bravi +italia +funziona +lavoro +qualità +può +fare +altro +reddito +cittadinanza +gronda +opera +fondamentale +genova +stelle +dicono +no +sempre +beppe +grillo +voleva +mandare +esercito” +impedirne +realizzazione +oggi +toninelli +blocca +gronda +finché +qualcuno +blocca +toninelli +italia +resterà +ferma +servono +infrastrutture +no +dirvi +fiorentini +tempo +scrivere +cosa +cuore +luna +arriva +risposta +esilarante +fiorentini +meravigliosi +anni +fa +mondo +osservava +sorpreso +impresa +alcuni +uomini +superato +ogni +limite +regalato +momento +indimenticabile +storia +impresa +senza +altro +tempo +affascina +tutt +oggi +scolorisce +minimamente +fronte +altre +imprese +moderne +conserva +intatta +forza +eroismo +coloro +lavorato +affinché +impossibile +diventasse +realtà +anni +fa +ultimo +scudetto +fiorentina +saunasegaarmstrong +conquista +luna +pagina +storia +timore +bellezza +vittoria +uomo +limiti +successo +americano +sognato +kennedy +inizio +anni +dopo +aver +subito +cocente +sconfitta +russi +ogni +trionfo +comincia +caduta +ansia +mondo +intero +incollato +tv +seguire +istante +dopo +istante +altro +sbarco +mentre +casa +bianca +nixon +tavolo +già +pronti +discorso +parlare +nazione +caso +disastro +celebrare +eroi” +scomparsi +conquista +luna +piccolo +passo +uomo +grande +passo +umanità” +segna +svolta +storia +uomo +forse +persino +normale +paese +ancora +altro +conferma +sole +ore +oggi +posti +lavoro +bisogna +avere +giuste +competenze +ragazzi +detto +forza +futuro +reddito +cittadinanza +lavoro +reinventare +studiare +studiare +studiare +altroché +sussidi +navigator +immagine +segna +trionfo +fake +news +proposito +brexit +candidato +primo +ministro +boris +johnson +attacca +europa +legge +assurda +sbagliando +legge +fatta +regno +altro +unito +bruxelles +campagna +brexit +stata +tutta +bugia +fin +primo +giorno +vinto +referendum +dicendo +brexit +stata +semplice +positiva +uk +oggi +brexit +incredibile +caos +istituzionale +fake +news +puoi +vincere +referendum +poi +vieni +sconfitto +realtà +inglesi +verificando +spese +tutta +leggere +intervista +ceo +microsoft +nadella +bellissimo +passaggio +spiega +importanza +imparare +vive +condizione +disabilità +figlio +tecnologia +basta +occorre +umanità +occorre +umanesimo +normale +esista +paura +ogni +uomo +importante +accompagnata +coraggio” +memoria +paolo +borsellino +agostino +emanuela +vincenzo +walter +eddie +claudio +martiri +paese +cosa +fare +subito +presentare +mozione +sfiducia +salvini +stelle +votano +finisce +esperienza +peggior +governo +storia +repubblicana +stelle +salvano +nuovo +vicenda +rubli +vicenda +ruby +perso +ogni +residua +credibilità +opposizione +deve +fare +opposizione +altro +deve +fare +salvini +meritarsi +mozione +sfiducia +foto +g7 +finanziario +imbarazzante +uomini +giustificazioni +servono +quote +rosa +quote +rosa +soluzione +migliore +intanto +soluzione +governo +stato +altro +primo +momento +purtroppo +ultimo +avere +parità +genere +composizione +squadra +dobbiamo +lavorare +insieme +promuovere +partecipazione +femminile +vita +politica +economica +altrimenti +perdono +solo +donne +perdiamo +stamattina +giornali +parlare +crisi +governo +vice +insultano +tramite +interviste +parallele +premier +inesistente +scrive +lettere +mentre +qualcuno +segue +dossier +qualcuno +lavora +macché +litigano +mattina +sera +barba +noia +grado +governare +governino +rotto +vada +parlamento +certifichi +crisi +torni +votare +basta +telenovela +terza +categoria +italia +merita +pagliacciata +permanente +giornali +oggi +rilanciano +idea +geniale +accordo +stelle +qualcuno +forse +vorrebbe +provarci +davvero +chissà +poi +pensi +maio +gilet +gialli +battista +obama +sibilia +sbarco +luna +lezzi +fa +crescere +pil +caldo +taverna +vaccini +pensi +governo +altro +crede +scie +chimiche +parlamento +crede +sirene +pensi +benetton +tav +tap +pensi +olimpiadi +buttate +via +guerra +fatto +expo +ancora +basta +provi +finta +nulla +arriva +toninelli +question +time +ricorda +fa +ministro +repubblica +niente +quel +punto +favorevoli +costretti +mollare +idea +alleanza +stelle +me +colpo +genio +colpo +sole +grande +uomo +cultura +educato +lettura +donne +uomini +mondo +grande +italiano +rip +camilleri +segnalo +scuola +estiva +meritare +italia +terrà +ciocco +provincia +lucca +mercoledì +agosto +fino +sabato +agosto +scuola +riservata +ragazze +ragazzi +egual +altro +numero +nati +dopo +1° +gennaio +fino +dicembre +ragazzi +giorni +ogni +giorno +ospiti +diversi +responsabile +progetto +professoressa +elena +bonetti +costo +100€ +compreso +ovviamente +arrivare +coprire +cifra +bisogno +contributo +generosi +finanziatori +personalmente +deciso +mettere +primo +equivalente +stipendio +mensile +agosto +ricevo +senatore +vogliamo +dire +altro +buon +lavoro +nuova +presidente +commissione +europea +ursula +von +der +leyen +prima +donna +ultima +insieme +dovremo +aiutarla +restituire +anima +europa +ideale +speranza +passione +viva +europa +buon +lavoro +signora +presidente +oggi +conferenza +atene +futuro +europa +bel +dibattito +vero +grecia +elevato +debito +pubblico +tale +debito +onorato +vero +europa +grande +debito +pubblico +verso +altro +grecia +debito +riconoscenza +filosofia +democrazia +cultura +mito +stesso +europa +mito +greco +disprezza +proprio +passato +disprezza +stesso +viva +grecia +europa +foto +©stavros +giannoulis +benetton +salveranno +alitalia +maio +proclami +populisti +guardate +video +allucinante +maio +benetton +precipitare +sostanzialmente +aerei” +domando +solo +ministro +davvero +pazzo +finge +soltanto +tristezza +quindi +gruppo +benetton +gestirà +alitalia +ottima +scelta +termini +qualità +management +solidità +investitore +dopo +detto +benetton +maio +toninelli +vergognarsi +semplicemente +ridicoli +vabbè +ormai +vale +signore +parla +ufo +lavora +palazzo +chigi +ridete +pagate +tasse +consigliere +salvini +relazioni +internazionali +altro +andava +russia +prima +referendum +invitato +savoini +famosa +cena +putin +salvini +affida +relazioni +internazionali +crede +ufo +bastavano +vaccini +scie +chimiche +sirene +mediterraneo +mancavano +ufo +dire +tempo +italia +paese +scienza +cultura +dovevano +cambiare +italia +europa +mondo +fine +cosa +resterà +falsificava +curriculum +aboliva +povertà +invitava +gente +putin +insaputa +vinto +campagna +elettorale +racontando +fakenews +oggi +realtà +inchioda +parole +campioni +immensi +partita +pazzesca +grazie +wimbledon +emozioni +regalato +complimenti +djokovic +piedi +gigante +chiamato +federer +mamma +finale +wimbledon +oggi +festa +nazionale +francia +auguri +cugini +oltralpe +tempo +alleati +quando +maio +governo +italiano +preferisce +parlare +gilet +gialli +macron +oggi +parigi +presidente +scommette +futuro +rilancia +investimento +francese +spazio +italia +occupiamo +sapere +invitato +savoini +cena +putin +differenze +quando +uomo +trova +combattere +leucemia +fa +coraggio +forza +sinisa +mihajlovic +solo +parola +usare +rispetto +gigantesco +bocca +lupo +mister +megan +rapinoe +capitano +goleador +squadra +americana +campione +mondo +calcio +posizioni +spesso +strong” +dice +discorso +vittoria” +bellissimo +parla +solo +mondo +calcio +prendetevi +minuti +ascoltarla +vale +pena +😊 +rivisto +stamani +semifinale +federer +nadal +wimbledon +ama +tennis +cosa +voglio +dire +solo +match +solo +torneo +solo +wimbledon +detto +poco +bellezza +punto +clima +fantastico +grazie +tanta +gente +tante +idee +finalmente +strategia +dire +bastafake +educazione +scuola +estiva +proposta +legge +idee +futuro +usciamo +milano +pieni +entusiasmo +grazie +diretta +milano +bastafake +poco +diretta +facebook +milano +fakenews +bastafake +finiti +urlavate +deriva +autoritaria +perchè +costituzione +tocca +adesso +tacete +riforma +costituzionale +gridavate +ogni +giorno +scandalo +qualsiasi +cosa +adesso +tacete +davanti +vera +ipotesi +corruzione +internazionale +finanziamento +illecito +parte +potenza +altro +straniera +dicevate +crescita +troppo +bassa +adesso +tacete +davanti +stagnazione +pil +tornato +quota +zero +lamentavate +uomo +solo +comando +adesso +tacete +davanti +sòle +litigano +giorni +finiti +sempre +domani +milano +racconteremo +continuare +battaglia +educativa +culturale +governo +bloccando +italia +oggi +salvini +detto +così +avanti +volta +accordo +così +avanti +così +indietro +colpa +lega +stelle +planche +des +belles +filles +tour +france +arrivo +mitico +italiani +dopo +primi +posti +nibali +aru +oggi +giovane +giulio +ciccone +arriva +secondo +conquista +maglia +gialla +storica +spettacolo +ciclismo +amici +popolo +riviera +romagnola +dà +bellissimo +esempio +voglia +lavorare +reagire +superare +qualsiasi +ostacolo +poche +ore +dopo +tempesta +nuovo +aperto +concittadini +mostrano +strada +tutta +italia +dovrebbe +seguire +tenere +botta +sempre +bravissimi +oggi +salvini +dice +querelo +meno +ministro +basta +quereli +sola +persona +uomo +chiede +soldi +russi +sovranisti +pagare +potenze +straniere +salvini +spiega +mondo +intero +quali +veri +rapporti +russi +dice +maio +passato +lega +paragonato +renzi +mica +lamentato” +no +certo +unico +potersi +lamentare +paragone +😀 +esattamente +anni +fa +italia +vinceva +coppa +mondo +calcio +italia +lippi +cannavaro +totti +piero +buffon +pirlo +ultima +italia +vincente +mentre +speriamo +ragazzi +ct +altro +mancini +possano +prima +poi +replicare +impresa +viene +sorridere +ricordare +ciò +diceva +allora +matteo +salvini +tifava +francia +noto +tricolore +simbolo +oppressione” +oggi +convertito +prima +italiani” +male +percorso +resta +aspettare +altri +tredici +anni +troveremo +volontario +ong +salvare +vite +mediterraneo +ama +tennis +oggi +cuore +diviso +irraggiungibile +federer +giovane +promessa +berrettini +matteo +oggi +numero +mondo +sappiamo +crescerà +ancora +vederlo +wimbledon +federer +oggi +emozione +fantastica +spettacolo +tennis +finita +vacanza +ortisei +breve +intensa +bici +camminate +arcobaleno +meraviglia +dolomiti +patrimonio +umanità +grecia +culla +democrazia +scelto +alexis +tsipras +perso +vorrei +oggi +venisse +riconosciuto +onore +armi +notte +litigammo +furiosamente +consiglio +altro +europeo +lato +francia +italia +grecia +altra +molti +paesi +nord +sedevo +accanto +alexis +notte +so +sofferto +combattuto +dovuto +trovare +compromesso +resto +convinto +terribile +discussione +tenendo +forza +atene +dentro +famiglia +europea +salvato +onore +grecia +salvato +onore +europa +adesso +buon +lavoro +nuovo +governo +verranno +mai +italia +porti +chiusi +sbarcheranno +proclami +salvini +durano +media +poco +mezzoretta +fine +sbarcano +italia +sbarcano +sbarcano +silenzio +capitano +rabbia +cambia +discorso +butta +crepe +nutella +piatto +tortelli +quando +sbarcano +altrove +altro +malta +accogliamo +equivalente +numero +migranti +imbarazzante +pantomima +barzelletta +condotta +pelle +esseri +umani +verità +immigrazione +serve +salvini +solo +dettare +agenda +risolvere +questione +problema +proclami +durano +tempo +aggiornamento +pagina +altro +condanna +beppe +sala +vizio +forma +rispettata +vanno +rispettate +tutte +sentenze +toglie +nulla +successo +strepitoso +stato +expo +vera +svolta +milano +italia +tornassimo +indietro +rifarei +fatto +dico +sindaco +sala +vai +avanti +mollare +parlare +immigrazione +dicendo +cose +significa +fare +politica +fare +polemica +60secondi +renzirepubblica +scritto +lettera +repubblica +parlare +immigrazione +modo +serio +civile +umano +spero +voglia +leggerla +fermi +titolo +vada +fino +fondo +emergenza +paese +altro +immigrazione +mancanza +legalità +emergenza +culle +vuote +emergenza +questione +educativa +leggo +volentieri +commenti +imbarazzante +ricevere +telefonate +amici +abitano +italia +vedono +immagini +spazzatura +roma +chiedono +bene +italia +incapacità +assoluta +amministrazione +roma +altro +sindaco +raggi +fa +male +paese +grillini +vinto +anni +fa +gridando +onestà” +diceva +benedetto +croce +onestà +politica +altro +capacità +politica +inutile +gridare +onestà +riesce +sistemare +nettezza +sovranisti +promesso +dopo +elezioni +europee +italia +conterà +ennesima +fakenews +oggi +scopriamo +contiamo +meno +unico +incarico +europeo +italiano +pd +60secondi +spread +scende +splendida +notizia +felici +tifo +italia +ogni +risultato +positivo +sottolineato +fateci +caso +quando +maio +salvini +dicono +assurdità +spread +cresce +quando +tacciono +seri +spread +cala +spread +dunque +direttamente +proporzionale +follie +altro +governa +vai +balcone +abolisci +povertà +proponi +minibot +spread +schizza +alto +torni +normale +segui +regole +europee +spread +cala +difficile +basta +essere +normali +imbarazzante +vedere +grillini +leghisti +festeggiare +discesa +spread +schizzato +massimi +colpa +tutelare +risparmiatori +italiani +basterebbe +togliere +password +social +salvini +maio +spread +tornerebbe +sotto +difficile +basta +essere +normali +buon +lavoro +david +sassoli +eletto +presidente +parlamento +europeo +bocca +lupo +ursula +von +der +leyen +charles +michel +josep +borrell +christine +lagarde +europa +intera +aspetta +molto +nuovi +leader +stancato +sentirmi +dire +ah +creato +solo +lavoro +tempo +determinato +solo +lavoro +precario +fake +news +galattica +statistiche +ultimi +anni +basate +dati +istat +altro +jobsact +stata +misura +importante +creare +posti +lavoro +tempo +indeterminato +dice +contrario +semplicemente +mente +ogni +tanto +capita +leggere +buona +notizia +giusto +sottolinearla +ricordate +app18 +18enni +cultura +app +qualcuno +chiamava +bonusrenzi +iniziativa +voluto +dopo +strage +bataclan +finanziato +volte +populisti +cambiata +cancellata +poi +reintrodotta +dopo +altro +polemiche +dire +altri +paesi +copiando +adesso +buona +notizia +governo +recuperato +taglio +fatto +qualche +mese +fa +quindi +ragazzi +bonusrenzi +spendere +musica +libri +teatro +mondo +oggi +niente +rivoluzionario +ragazzo +entra +biblioteca +museo +felice +buone +idee +forti +qualsiasi +ideologia +davvero +finalmente +governo +attuale +cambiato +idea +dobbiamo +solo +essere +felici +viva +nati +viva +bonus +cultura +nato +firenze +studiato +firenze +stato +eletto +firenze +vivo +firenze +difficile +dunque +accusi +essere +filo +senese +settembre +montaperti +qualche +altro +problemino +risolvere +senesi +quando +arriva +giorno +palio +trovo +tutte +volte +costretto +ammettere +nessuna +manifestazione +popolare +forte +autentica +organizzazione +contrade +gara +piazza +campo +cene +giorno +prima +te +deum +benedizione +cavallo +mai +visto +niente +simile +mondo +viva +palio +milano +luglio +presenteremo +dettagliato +piano +fakenews +iniziative +parlamento +tribunale +piazze +forse +impossibile +ripulire +web +inquinamento +propaganda +combattere +fake +news +ormai +priorità +assoluta +vediamo +milano +cronaca +roma +oggi +luglio +tristezza +vedere +capitale +ridotta +così +colpa +solo +raggi” +dicono +grillini +ok +dopo +mille +giorni +governo +roma +senso +altro +continuare +dare +colpa +altri +bravi +facebook +poi +scendi +strada +vedi +altro +vinto +fake +news +sconfitti +realtà +combattono +fake +news +cosa +parliamo +luglio +ore +teatro +elfo +puccini +milano +iscriversi +http +bit +bastafakenews +ragazzemondiali +fatto +sognare +grazie +fatto +grazie +ciò +rappresentate +ora +diritti +atlete +tutte +atlete +teresa +bellanova +splendida +donna +grande +lavoratrice +cresciuta +puglia +cosa +significhi +faticare +lavorare +vivere +quando +chiamata +governo +stata +prima +fila +tutte +crisi +altro +occupazionali +passione +pari +solo +competenza +ieri +parlato +aula +taranto +città +presa +insulti +minacce +critiche +sempre +lavorato +interesse +pubblico +riaprire +ilva +mettendo +sicurezza +ambiente +garantendo +futuro +lavoratori +invece +cialtroni +oggi +governano +scritto +decreto +sbagliato +porterà +chiusura +ilva +settembre +teresa +fatto +bellissimo +discorso +spiegare +scelta +follia +fine +sembrato +normale +abbracciarla +dirle +voglio +bene +facile +nessuno +essere +insultato +neanche +rende +conto +danno +proprio +paese +orgoglioso +essere +amico +teresa +orgoglioso +stare +parte +cosa +vuol +dire +lavorare +vivere +solo +giorno +maio +attaccato +sicurezza +posto +lavoro +operai +ilva +lavoratori +atlantia +genio +ancora +capito +compito +chiudere +crisi +occupazionali +aprirne +nuove +cinquanta +anni +fa +rivolta +stonewall +segnò +svolta +storia +diritti +civili +solo +america +vengo +storia +superato +diffidenze +coltivato +amicizie +imparato +conoscere +compagni +compagne +strada +aiutato +approfondire +riflettere +ancora +adesso +penso +alessia +commuovo +grazie +altro +incontri +oggi +italia +legislazione +diritti +civili +frutto +impegno +tanti +frutto +atto +coraggio +governo +forza +mettere +fiducia +andata +finire +male +anno +dopo +ius +soli +dicono +avere +caratteraccio +vada +moda +politica +forse +altro +intervento +aula +senato +decreto +crescita +decrescita +ricoveratelo +ora +andare +letto +finito +pensare +discorso +domani +senato +provato +fuso +orario +dormo +stesso +letto +giorni +sonno +eppure +riesco +dormire +altro +immagine +quel +babbo +quel +bimbo +fa +accapponare +pelle +immagine +viene +america +lampedusa +qualche +isola +greca +fine +poco +importa +domando +domando +quando +perso +capacità +sconvolgerci +renderci +conto +italiani +popolo +migranti +antica +roma +storia +novecento +capire +padre +rischia +perde +vita +figlio +alternative +altro +ammiro +bocca +aperta +arrivo +alba +sopra +dolomiti +poi +malpensa +mentre +aspetto +coincidenza +fiumicino +compro +giornali +michela +dice +grazie +jobsact +assunto +altro +tempo +indeterminato +grazie +” +distanza +vita +reale +commenti +inquinati +troll +social +buongiorno +molti +commenti +stamani +olimpiadi +vengono +cittadini +sud +commenti +interessanti +dice +vinte +olimpiadi +solo +città +nord +qualcuno +dice +vittimismo +qualcuno +rassegnazione +qualcuno +criticando +governo +mai +scommesso +mezzogiorno +presidente +consiglio +altro +lottato +universiadi +napoli +capitale +cultura +matera +g7 +taormina +apple +napoli +rilancio +pompei +reggia +caserta +musei +archeologici +reggio +calabria +taranto +accelerazione +napoli +bari +sbloccaitalia +tanto +altro +basta +nodo +rimane +mezzogiorno +salva +altro +italia +vinto +resto +conta +paese +forte +forte +attacca +polemiche +meschine +oggi +leggo +olimpiadi +cambiato +idea +bene +salvini +attaccava +fenomeno +fiorentino” +voleva +olimpiadi +scriveva +me +ricoveratevelo +ora +primo +esultare +ormai +conosciamo +modo +altro +fare +idee +cambia +base +convenienza +momento +stelle +rivendicano +merito +sogno +italiano” +dopo +stati +virginia +raggi +prima +chiara +appendino +poi +negare +loro” +città +occasione +ormai +chiaro +vota +stelle +protesta +trova +classe +dirigente +fa +altro +60secondi +oggi +italia +vince +grandi +eventi +expo +olimpiadi +cambiano +città +sempre +creduto +vivalitalia +anni +fa +proprio +oggi +consumava +grande +autogol +storia +europea +calcio +no +brexit +inglesi +scelto +uscire +europa +base +promesse +dati +falsi +oggi +realtà +dimostra +tutta +campagna +elettorale +filo +brexit +basava +fake +news +sanità +immigrazione +bugie +vincere +referendum +poi +cittadini +pagare +danni +realtà +referendum +paese +cresceva +adesso +vede +economia +bloccata +regno +unito +of +course +oggi +lega +torna +indietro +minibot +meno +male +bravo +giorgetti +dice +servono +minibot +pagare +debiti +pa +chiedo +essere +serio +basta +bugie +anni +problema +pagamenti +pa +stato +notevolmente +ridotto +governi +ecco +dati +impressionanti +farmindustria +pagava +giorni +altro +fine +pagava +giorni +ricordate +rotto +scatole +tema +bene +oggi +media +bassa +privata +paga +giorni +può +continuare +inquinare +dibattito +fake +news +chiamiamo +cose +nome +minibot +semplicemente +megaballa +oggi +san +giovanni +tanti +auguri +firenze +città +perla +mondo” +meryl +streep +compie +anni +qual +secondo +capolavoro +potrei +dire +africa” +oppure +diavolo +veste +prada” +recente +post” +stupirò +me +stata +semplicemente +altro +perfetta +the +iron +lady” +ogni +caso +qualunque +opinione +credo +nessuno +possa +avere +dubbi +parlando +donna +strepitosa +gigante +cinema +tempi +prima +scelta +fatto +quando +diventato +sindaco +firenze +stata +sistema +cassonetti +interrati +adesso +girando +mondo +rendo +conto +gestione +altro +immondizia +nettezza +primo +problema +pratico +amministratore +tutte +capitali +sforzi +migliorare +raccolta +essere +pulite +tutte +quasi +tutte +roma +oggi +foto +inviato +amico +fallimento +virginia +raggi +tocca +mano +ogni +mattina +anzi +meglio +toccarlo +basta +vedere +annusare +vero +problemi +roma +nati +giunta +raggi +riuscire +peggiorare +sistema +rifiuti +niente +facile +quando +eletta +raggi +permisi +suggerire +copiare +sistema +cassonetti +interrati +attaccato +grillini +dicendo +firenze +funzionava +niente +tempo +galantuomo +vinto +fake +news +sconfitti +realtà +ancora +buona +domenica +pausa +domenicale +meeting +altro +arriveranno +domandare +polemici +resti +estero +invio +abbraccio +affettuoso +anticipato +state +sereni” +torno +prestissimo +altro +senato +discute +decreto +crescita +chiesto +capogruppo +intervenire +aula +salvini +maio +parlano +crescita +distrutto +crescita +italiana +decreto +crescita +stessa +credibilità +zio +paperone +fa +decreto +generosità +berlusconi +fa +decreto +castità +dracula +fa +decreto +donazione +sangue +aspettiamo +senato +diremo +no +decreto +detto +no +crescita +esattamente +anni +fa +firenze +affidava +palazzo +vecchio +gruppo +giovani +appassionati +pedonalizzazioni +auto +elettriche +volumi +zero +raddoppio +biblioteche +scuole +sociale +tram +notti +bianche +cultura +altro +concerti +tante +iniziative +allora +oggi +vanno +avanti +grande +dario +allora +vicesindaco +città +cresce +media +europea +sindaco +bella +città +mondo +può +esistere +onore +grande +grazie +firenze +tenyearsago +salvini +vinto +elezioni +promettendo +luna +flat +tax +seicentomila +rimpatri +via +accise +benzina +asili +nido +via +fornero +adesso +disperato +limita +piagnucolare +chiedendo +miliardi +direte +ohi +miliardi +tanti +privato +certo +seri +ridotto +tasse +molto +altro +senza +casino +miliardi +meno +costo +80€ +riduzione +irap +costo +lavoro +abolizione +imu +riduzione +ires +parte +progetto +superammortamento +industria +insomma +ben +vada +caos +giorni +date +miliardi +salta +governo +nasconde +altro +emanuele +crestini +sindaco +rocca +papa +oggi +morto +conseguenze +esplosione +avvenuta +comune +presumibilmente +dovuta +fuga +gas +anziché +mettersi +salvo +potuto +sindaco +rimasto +dare +mano +purtroppo +ustioni +ferite +fine +meglio +oggi +emanuele +altro +lasciato +sindaco +crestini +comportato +eroe +scrivono +giornali +dico +comportato +sindaco +vorrei +parlano +male +politica +ricordino +ogni +giorno +esempio +persone +migliaia +cittadine +cittadini +qualunque +colore +politico +crestini +esempio +sindaco +civico” +bene +proprio +lavoro +servendo +propria +comunità +emanuele +fatto +fino +estremo +sacrificio +buon +viaggio +sindaco +grazie +averci +insegnato +cosa +significhi +fino +fondo +espressione +primo +cittadino” +dunque +doveva +essere +anno +bellissimo +invece +dice +istat +pil +secondo +trimestre +tornerà +negativo +tempo +date +occhio +numeri +professor +fortis +http +bit +12mesiconilsegnomeno +populisti +vinto +fake +news +sconfitti +realtà +oggi +parigi +parlare +difesa +europea +nuovo +ordine +mondiale +abbracciato +collega +avversario +politico +però +stimo +molto +guido +crosetto +dimostra +ogni +giorno +possono +avere +idee +politiche +diverse +mantenere +rispetto +amicizia +cosa +allucinante +ore +ore +draghi +aiuta +europa +dunque +aziende +italiane +competere +americani +cinesi +mondo +salvini +schiera +trump +attacca +draghi +ormai +mondo +rovescia +cari +imprenditori +veneti +lombardi +sentite +presi +giro +lega +votate +draghi +aiutando +salvini +boicottando +oggi +pechino +parlare +educazione +cultura +davanti +tremila +ragazzi +cinesi +euro +cultura +euro +sicurezza +principio +governo +richiama +sempre +grande +attenzione +ovunque +testa +alta +mondo +risposta +mario +monti +differenze +governo +salvini +maio +numeri +fatti +dati +chiacchiere +zero +oggi +seconda +semifinale +calcio +storico +meraviglia +santa +croce +ricordate +quando +parlato +firenzesecondome +oggi +ex +premier +mario +monti +scritto +lungo +articolo +corriere +sera +dire +flessibilità +ottenuta +governo +stata +errore +numeri +carità +parlare +numeri +austerity +monti +italia +andata +pil +milioni +occupati +pressione +fiscale +aumentata +cominciare +altro +imu +rapporto +debito +pil +peggiorato +circa +punti +percentuali +flessibilità +arrivati +occupati +diventati +milioni +pressione +fiscale +diminuita +cominciare +imu +irap +rapporto +debito +pil +rimasto +stabile +monti +pontifica +giorni +corriere +tv +dimentichiamoci +mai +altro +tutta +famiglia +renzi +completo +staffetta +sostegno +maria +bambini +sindrome +down +associazione +trisomia +buonsabato +prendono +soldi +messo +superammortamento +industria +danno +comuni +predissesto +tolgono +soldi +imprenditori +vogliono +rendere +competitive +aziende +creare +posti +lavoro +coprire +buchi +amministratori +incapaci +pure +coraggio +chiamarlo +decreto +crescita +senza +parole +senza +vergogna +arrivato +albergo +rinuncio +cena +alleno +vista +maratona +novembre +km +minuti +può +fare +riprendendo +ritmo +giusto +ora +stretching +nanna +buona +notte +detto +battista +minibot +cosa +intelligente +secondo +dunque +draghi +sbaglia +dovremmo +fidarci +battista +genio +incompreso +economia +mondiale +antipopolare +ora +finirla +retorica +vale +almeno +economia +draghi +ragione +battista +torto +minibot +mega +idiozia +punto +possiamo +parlare +cose +serie +adesso +ragazzemondiali +iniziano +grande +bellissima +gioia +last +minute +forzaazzurre +diretta +bologna +repubblica +idee +intervistato +stefano +cappellini +quando +andavo +vedere +zia +giocare +serie +b +bomber +strepitosa +rudy +calcio +femminile +sembrava +figlio +dio +minore +generazione +dopo +finalmente +cambiato +atlete +rendono +altro +orgogliosi +essere +italiani +🇮🇹 +dimostrano +calcio +femminile +figlio +dio +minore +basta +battutine +stupide +basta +stereotipi +ragazze +atlete +meravigliose +felici +fare +tifo +forza +azzurre +forza +ragazzemondiali +mondo +discute +brexit +rapporti +cina +usa +innovazione +tecnologica +cambiamento +climatico +italia +invece +ferma +giorni +guerra +salvini +maio +emendamenti +sblocca +cantieri +mondo +discute +controllare +intelligenza +artificiale +italia +invece +discute +controllare +toninelli +tragedia +volete +farsa +tutta +quando +premier +parla +nazione +deve +dire +qualcosa +importante +semplicemente +dire +qualcosa +leader +dovere +indicare +strada +avere +coraggio +essere +fantoccio +conferenza +stampa +conte +segna +oggi +figuraccia +istituzioni +palazzo +chigi +mai +storia +repubblicana +palesata +così +evidente +figura +premier +decide +conta +governa +oggi +giorno +triste +istituzioni +italiane +prima +maggioranza +fatta +attendere +finalmente +arrivata +primavera +continuo +allenamento +maratona +finalmente +sole +buona +settimana +amici +bellissima +iniziativa +cagliari +fiorentina +terra +santa +nome +davide +astori +famiglia +capitano +viola +decisiva +scrivere +pagina +solidarietà +bello +ricordare +concretamente +grande +atleta +grande +uomo +da13 +viva +italia +viva +repubblica +almeno +oggi +nessuna +polemica +orgogliosi +essere +italiani +dati +istat +dicono +oggi +dato +peggiore +mentre +quei +continuano +litigare +paese +smette +crescere +vola +spread +pagano +italiani +cambiamento +diretta +palazzo +giustiniani +diretta +facebook +discutiamo +insieme +andate +elezioni +europee +amministrative +cosa +domani +aspetto +domani +commenteremo +risultati +elettorali +intanto +stanotte +firenze +ricordiamo +strage +mafiosa +georgofili +parlato +documentario +ricordate +pernondimenticare +vittorio +zucconi +stato +maestro +giornalismo +soprattutto +persona +seria +mancherà +criticato +rip +buon +voto +soprattutto +quei +nati +votano +prima +volta +emozione +profonda +vedervi +andare +seggi +emozione +quest +anno +vive +famiglia +gesto +riaffermate +tramandate +valore +bellissimo +democrazia +grazie +matteo +salvini +ministro +interno +dovrebbe +dare +buon +esempio +rispettando +silenzio +elettorale +invece +violando +vergognosamente +regole +dovrebbe +primo +rispettare +utilizzo +altro +stesso +metodo +campagna +elettorale +limito +ricordare +figuracce +strasburgo +italia +fatto +colpa +parlamentari +europei +assenteisti +guardare +credere +vinto +referendum +dicendo +bugie +inquinando +campagna +fake +news +dovevano +rivoluzionare +anni +dopo +paese +fermo +crisi +senza +futuro +puoi +vincere +referendum +menzogne +poi +conto +paga +soprattutto +povera +gente +naturalmente +parlando +regno +unito +may +ultima +frase +campagna +elettorale +maio +scelto +dire +governo +lavoro +meno +stronzate” +pratica +annunciato +dimette +intervista +oggi +direttore +quotidiano +nazionale +michele +brambilla +graditi +commenti +fiero +scelta +apple +investire +napoli +sembrano +lontane +polemiche +allora +sud +terra +privilegiata +crescere +innovatori +digitali +nuovi +professionisti +altro +reddito +cittadinanza +mettiamoci +lavoro +studiare +quando +te +quando +perdi +mezzo +niente +nikilauda +rip +diretta +milano +carlo +calenda +anna +scavuzzo +irene +tinagli +caterina +avanza +grazie +già +coda +milano +incontro +stasera +carlo +calenda +anna +scavuzzo +irene +tinagli +caterina +avanza +treno +arrivando +impaziente +rivedere +tanti +amici +poco +partire +diretta +facebook +dopo +renzi” +frase +gentile +maio +salvini +usano +reciprocamente +insultarsi +lieto +essere +sempre +pensieri +italiano +preferirei +pensassero +cose +fare +tuttavia +onor +vero +vorrei +verbalizzare +essere +renzi” +bisogna +aver +creato +milione +posti +lavoro +dati +altro +istat +abbassato +imu +irap +costo +lavoro +ires +aumentato +salari +milioni +persone +80€ +preso +paese +pil +riportato +dato +diritti +leggi +unioni +civili +dopo +terzo +settore +autismo +caporalato +cooperazione +internazionale +fatto +governo +metà +donne +aumentato +fondi +altro +oggi +quotidiani +parlano +contributo +mila +euro +parte +azienda +leader +produzione +sigarette +elettroniche +campagna +quei +duri +puri +lega +nord +ricorda +qualcosa +altro +provate +rivedere +video +novembre +qua +sotto +votando +decreto +fiscale +quando +sorpresa +compare +bel +condono +aziende +producono +sigarette +elettroniche +pari +milioni +euro +già +governo +condoni +fatti +troppi +direi +fronte +vera +propria +marchetta +milioni +euro +beffa +beffa +caso +visto +voto +contrario +quell +emendamento +parte +stelle +paladini +onestà +no +zitti +favorevoli +qualcuno +butterà +prima +poi +occhio +chiamavano +onestà +oggi +presunto +premier +conte +mette +mani +avanti +facile +evitare +aumento +iva” +scusa +cosa +paghiamo +allora +italia +iva +aumenta +ottobre +grazie +lavoro +governi +adesso +cambiato +aumento +iva +schiaffo +cittadini +specie +poveri +salvini +vuole +rimuovere +striscioni +risposta +firenze +sparge +odio +rispondiamo +ironia +firenze +portatelalunga +mentre +italia +arranca +costretta +polemica +quotidiana +governo +litiga +molti +paesi +corrono +corea +sud +terra +piena +occasioni +opportunità +orgogliosa +tradizione +altro +pronta +scommettere +futuro +innovazione +aziende +leader +livello +mondiale +intelligenza +artificiale +robot +uso +big +data +5g +tante +sfide +davanti +italia +può +restare +indietro +abbraccio +seul +amici +tardoadolescenti +guidano +paese +continuano +litigare +giorni +oggi +spread +risale +oltre +quota +insistono +tanto +conto +pagano +italiani +cultura +odio +boomerang +salvini +strappa +telefonini +striscioni +maio +definisce +assassino +pensa +entrambi +squallidi +vanno +taranto +zone +rosse +vanno +piazza +insultano +manifesta +fine +realtà +prende +rivincita +tempo +presenta +conto +ultras +altro +politica +governa +leggi +esempi +insulti +nervosismo +deriva +mancanza +risultati +economici +tornati +quota +prepariamoci +palloncino +populista +scoppiare +qualcosa +muove +finalmente +qualche +anno +fa +denunciai +pubblicamente +pagine +facebook +rilanciavano +fake +news +oggi +dopo +mesi +dopo +referendum +elezioni +finalmente +pagine +milioni +visualizzazioni +notizie +false +diffamanti +state +chiuse +primo +passo +basta +continueremo +combattere +comitati +altro +civici +impegno +tanti +cittadini +buona +volontà +strategia +chiara +portare +giudizio +diffama +segnalare +facebook +diffonde +fakenews +fermare +fango +prossimi +mesi +novità +vedrete +tempo +galantuomo +davvero +domanda +intanto +stamattina +intervista +detto +me +salvini +utilizzato +altro +oggi +maggiorenne +uomo +diritti +soprattutto +doveri +cittadino +pieno +titolo +rimarrai +sempre +bambino +rivoluzionato +vita +mix +esplosivo +altro +energia +sensibilità +fratello +maggiore +imparato +sognare +crederci +buon +18° +compleanno +francesco +buona +strada +sindaco +rinuncia +indennità +pagare +borse +studio +legalità +giovani +accade +ercolano +ciro +buonajuto +solo +bravissimo +primo +cittadino +esempio +studenti +altro +terra +ferita +camorra +ciro +lavoro +bellissimo +me +stata +grande +gioia +condividere +entusiasmo +scuole +orgoglio +istituzioni +territorio +storie +bellissime +sud +vanno +valorizzate +grazie +ciro +grazie +ercolano +diretta +ercolano +sindaco +ciro +buonajuto +oggi +senato +arrivata +richiesta +discutere +legge +costituzionale +proposta +stelle +abolizione +cnel +sì +proprio +cnel +stelle +così +prima +insultano +poi +copiano +male +immagino +adesso +grandi +custodi +democrazia +schierati +referendum +coloro +altro +stati +servizio +permanente +deriva +autoritaria +danni +istituzioni +procurati +renzismo” +possano +svegliarsi +letargo +mesi +rassicurarci +fatto +vivi +bene +mesi +infatti +stati +silenziosi +sparate +vicepremier +fino +umiliazione +parlamento +legge +bilancio +evidentemente +problema +solo +abolizione +cnel +dite +paladini +costituzione +torneranno +finalmente +farsi +sentire +capire +apocalittici +avventati +certi +giudizi +settimana +fa +messi +osannato +tutta +stampa +mondiale +giocatore +grande +storia +calcio +insieme +pelè +commentatori +proprio +oggi +massacrano +senza +pietà +dopo +incredibile +sconfittta +barcellona +liverpool +verità +altro +calcio +politica +giudizi +affrettati +lasciano +tempo +trovano +quando +mettono +accordo +commentatori +😉 +frattempo +diciamo +verità +emozioni +regalato +doppia +semifinale +camp +nou +anfield +road +dimostrato +calcio +sport +magico +impressionante +unico +complimenti +liverpool +dimostrato +volta +può +credere +imprese +altri +giudicano +impossibili +aver +recuperato +quel +barcone +fondo +mare +aver +dato +sepoltura +cadaveri +nome +migranti +morti +strage +stata +scelta +dolorosa +doverosa +scelta +stata +molto +criticata +altro +rifarei +cose +fare +giuste +popolari +quel +naufragio +perso +vita +quattordicenne +veniva +mali +pagella +parlo +libro +altra +strada” +oltre +centinaia +bambini +donne +persone +davanti +scene +disumano +dire +pacchia +finita” +povera +gente +pacchia +mai +iniziata +grazie +biennale +venezia +aver +deciso +accogliere +relitto +restiamo +umani +vede +video +storia +selfie +sfuggendo +mano +salvini +problema +problema +grande +natura +istituzionale +titolo +leader +politico +può +altro +chiedere +sequestrare +telefonino +fatto +male +ragazza +venisse +strappato +cellulare +mano +questione +banale +sembra +principio +libertà +fatto +migliaia +selfie +preso +applausi +fischi +ricevuto +contestazioni +mai +strappato +mano +telefonino +criticava +possiamo +sapere +titolo +salvini +detto +cancella +video” +presenterò +interrogazione +parlamentare +urgente +signor +ministro +interno +certo +saprà +darci +risposte +esaustive +salvini +vuole +passare +giornate +insultare +avversari +pure +allora +lasci +qualcuno +frattempo +ministro +occupi +sicurezza +60secondi +oggi +senato +giornata +oggi +ministro +interno +paese +civile +passa +giornate +insultare +avversari +piazze +napoli +combattere +camorra +salvini +vuole +fare +solo +comizi +pure +comizi +lasci +altri +viminale +diritto +avere +ministro +occupi +sicurezza +italiani +orban +salvini +insieme +vogliono +cambiare +europa +chiedono +voto +perche +sovranisti +possano +governare +bruxelles +accadrà +fortunatamente +guardiamo +fatti +quando +italia +chiesto +solidarietà +immigrazione +stati +sovranisti +lasciarci +soli +cominciare +ungheresi +paesi +visegrad +quando +italia +altro +chiesto +flessibilità +economia +stati +sovranisti +lasciarci +soli +cominciare +destre +austriache +tedesche +nordiche +verità +vuole +difendere +interessi +italiani +allea +sovranisti +combatte +cominciare +voto +maggio +voto +sovranisti +voto +interesse +italiani +ayrton +senna +mito +appassionati +formula1 +quel +pomeriggio +venticinque +anni +fa +rimasto +impresso +memoria +punto +difficile +dimenticare +desolante +tristezza +quel +giorno +esempio +ricordo +perfettamente +cosa +arbitrare +mugello +torneo +giovanissimi +notizia +altro +incidente +rientrando +spogliatoi +volevo +credere +sembrava +impossibile +ancora +tragedia +ancora +quel +circuito +ayrton +senna +pilota +triste +stato +quei +campioni +trasformato +leggenda +tragedia +colpito +già +leggenda +guidava +potevi +amarlo +no +dato +fatto +senna +unico +speciale +inimitabile +ricordo +bellissima +canzone +lucio +nome +ayrton +pilota +stessa +strada +fatto +legge +avvicinare +giovani +cultura +fondo +bonus18anni +stato +speso +acquistare +libri +appena +sentito +acquisto +libri” +salvini +maio +tolto +soldi +cancellato +finanziamento +viva +ignoranza +spero +nato +trovi +forza +farsi +sentire +oggi +governo +esulta +dati +pil +occupati +pil +adesso +esultano +occupati +35mila +meno +primo +giorno +governo +conte +esultano +numeri +argomenti +testardi +tempo +galantuomo +salvini +maio +insultavano +dati +migliori +diamo +appuntamento +legge +bilancio +fatti +domanda +immigrati +irregolari +salvini +urlato +campagna +elettorale +meno +centomila +confessato +stesso +salvini +qualche +giorno +fa +reddito +cittadinanza +darà +780€ +milioni +poveri +diceva +maio +media +meno +500€ +qualche +centinaio +migliaia +altro +persone +confessato +capo +inps +scelto +maio +taglio +accise +promesso +primo +consiglio +ministri” +benzina +superato +euro +flat +tax +volte +promessa +sparita +sparita +crescita +pil +dopo +anno +può +dire +vinto +elezioni +raccontando +montagna +bugie +domanda +qualche +fan +leghista +grillino +grado +replicare +civilmente +merito +banali +osservazioni +buon +fine +settimana +amici +oggi +compleanno +libertà +italia +italiani +compleanno +valori +vale +nessuno +escluso +buon +aprile +tutte +pensiero +speciale +silvano +prima +volta +giorni +litigano +sbuffano +polemizzano +dispetti +ripicche +punto +sembrare +– +rispetto +– +statisti +persino +bambini +asilo +dovunque +mettono +mani +qualcosa +ferma +cominciare +economia +italiana +riferisco +membri +governo +italiano +naturalmente +cominciare +vicepremier +altro +salvini +maio +vorrei +dedicare +enews +pasquale +mediocre +gioco +ribasso +paralizzando +istituzioni +italiane +mentre +altri +paesi +corrono +atteggiamento +talmente +evidente +prima +poi +palloncino +populista +sgonfierà +legge +bilancio +arrivano +tecnicamente +banco +prova +altro +sfortuna +seguire +giornata +politica +stasera +letto +mal +testa +ormai +rissa +continua +grillini +leghisti +litigano +salva +roma +rimpatri +processi +eolico +vivono +dispetti +ripicche +consiglio +ministri +no +fa +offeso +cambia +idea +fine +partecipa +altro +spiace +dirlo +ormai +evidente +qualsiasi +asilo +paese +comportamenti +logici +palazzo +chigi +mentre +resto +europa +discute +futuro +italiani +assistiamo +scontro +totale +interno +coalizione +governo +qualsiasi +argomento +proposto +affidare +solo +partito +guida +paese +altro +mitico +fabio +fognini +tennista +italiano +finalmente +torna +vincere +tornei +prestigiosi +circuito +chapeau +montecarlo +augurio +bello +buona +pasqua +bella +occasione +godersi +affetti +cari +vivere +giornata +felicità +mantenere +cuore +civile +vigile +davanti +ciò +accade +mondo +ogni +istante +cominciare +quest +oggi +tragiche +notizie +arrivano +chiese +sri +lanka +buona +pasqua +amici +anni +accettato +dicessero +stato +oggetto +campagna +violenta +odio +falsità +oggi +ruoli +governo +penso +giusto +dimostrare +credo +davvero +giustizia +dunque +predisposto +prime +azioni +civili +risarcimento +danni +democrazia +chiunque +diritto +altro +criticare +dici +ladro +peggio +hitler +leggi +parenti +fatto +scelte +premier +affari +personali +compagnia +bella +bambini +muoiono +colpa +porti +aperti +me +beh +andiamo +giudice +vediamo +frasi +vere +dette +debba +risarcirmi +altro +terrificante +giorno +dolore +parigi +europa +mondo +senza +parole +spettacolo +social +amici +parli +scoperta +straordinaria +astrofisica +racconti +italia +tocchi +palla +crisi +libia +dimostri +numeri +danni +vicepremier +filano +giusto +poi +posti +selfie +inguardabile +foto +sorridente +distrutto +dopo +km +sotto +acqua +corsa +ponte +vecchio +cascine +isolotto +vedi +boom +piace” +social +meravigliosi +buona +domenica +nuovo +sorriso +sola +cosa +bella +correre +firenze +sotto +sole +correre +firenze +sotto +acqua +buona +domenica +palme +amici +firenzesecondome +immagine +adesso +andrebbe +recuperata +maio +affaccia +balcone +palazzo +chigi +urla +fatta +abolito +povertà +tragedia +uomo +ridicolo +giro +mesi +sfasciato +conti +abolito +crescita +bloccato +ripresa +oggi +mogio +mogio +stesso +maio +affaccia +nemmeno +altro +sala +stampa +cancella +persino +tv +maestà +realtà +fa +irruzione +storia +governo +cambiamento +mette +nudo +totale +impressionante +incompetenza +populisti +ciò +stanotte +chiaro +addetti +lavori +prossimi +mesi +chiaro +cittadini +tempo +galantuomo +accinge +smascherare +bugie +aspettano +mesi +difficili +fuori +tavoli +internazionali +libia +brexit +aumenteranno +tasse +allacciamoci +cinture +poi +solito +toccherà +rimediare +danni +ricostruire +macerie +crescita +recessione +treviso +unaltrastrada +oggi +nuovo +nord +lombardia +veneto +unaltrastrada +fa +tappa +poco +fa +lecco +ora +tavernerio +provincia +como +stasera +pavia +domani +bassano +grappa +sedico +bl +treviso +altro +padova +proprio +terre +visto +successo +lega +grazie +promesse +gonfiate +propaganda +salvini +decisive +sgonfiare +palloncino +populisti +bugie +salvini +gambe +corte +tempo +breve +presenterà +conto +potrà +rimandare +eterno +breve +dovrà +tornare +raccontare +aver +introdotto +patrimoniale +aumentato +iva +quel +giorno +basterà +mettersi +felpa +gridare +colpa +prima +quel +giorno +basterà +nemmeno +incolpare +stelle +quali +finge +quotidianamente +litigare +mentre +accompagnano +braccetto +italia +muro +quel +giorno +solo +salvini +fallimento +tutta +politica +settimana +stata +sparatoria +strada +roma +ancora +volta +ordine +pubblico +capitale +sembra +problema +solo +periferia +ministro +interno +sembra +preoccuparsene +settimana +scoperto +stato +cancellato +bonus +babysitter +asili +nido +numero +incidenti +altro +lavoro +cresce +ministro +lavoro +sembra +preoccuparsene +impressionante +ministri +salvini +maio +leader +governo +raccontino +vita +personale +cosa +mangiano +amano +vivono +sappiamo +polemiche +politiche +avversari +alleati +altro +ieri +incidenti +mortali +lavoro +numeri +quest +anno +terrificanti +ritmo +anno +peggiore +decenni +numero +vittime +teresa +bellanova +preparato +interrogazione +ministro +maio +uomo +quest +anno +tagliato +fondi +sicurezza +lavoro +teresa +cosa +altro +significhi +lavorare +mentre +gigino +pallida +idea +ministro +capito +aver +fatto +errore +fondi +inail +italia +deve +tornare +paese +lavorare +vivere +morire +cantieri +lella +paita +giovane +donna +impegna +gente +liguria +candida +guida +regione +viene +massacrata +fuoco +amico +sinistra +interna +prima +perde +primarie +poi +altro +rompe +alleanza +poi +strumentalizzazione +avviso +garanzia +legato +alluvione +bisagno +centrosinistra +perde +regionali +lella +viene +considerata +responsabile +poi +tempo +galantuomo +incarica +riportare +verità +casa +lella +paita +viene +assolta +primo +grado +procura +fa +ricorso +oggi +lella +viene +assolta +secondo +grado +giustizialisti +cinici +privi +ogni +morale +poi +persone +credono +giustizia +orgoglioso +parte +quest +ultima +categoria +orgoglioso +essere +amico +lella +paita +perso +regione +liguria +perso +dignità +onore +senso +giustizia +vogliamo +bene +lella +leggi +andavo +fiero +impediva +comuni +alzare +imposte +locali +addizionali +irpef +imu +tassa +soggiorno +governo +populisti +invece +restituito +libertà +altro +tassazione +selvaggia +comuni +sole +ore +oggi +salvini +maio +tasse +vanno +posti +lavoro +vanno +giù +caratteraccio” +italia +cresceva +dicono +essere +simpatici +adesso +crescono +solo +tasse +spread +mentre +autostrada +torno +verso +casa +ripenso +gente +oggi +incontrato +follonica +spezia +parma +poi +bozzolo +mantova +luoghi +don +primo +mazzolari +sacerdote +segnato +altro +formazione +molti +regioni +diverse +migliaia +persone +unaltrastrada +solo +libro +modo +abbracciare +comunità +appassionata +buona +politica +vero +lusso +politica +me +rapporti +umani +vorrei +restituirvi +affetto +calore +umano +ricevo +presentazioni +può +capire +solo +partecipa +grazie +diretta +castenedolo +bs +insieme +paolo +mieli +salvini +dà +gufi” +confindustria +prevede +italia +crescita +zero +maio +attacca +«noi +renzi +» +stavolta +ragione +maio +renzi +gufi +gufi +infatti +italia +zero +renzi +dicono +dati +istat +foto +parla +mostra +sensibilità +arma +carabinieri +passione +ragazzi +concittadini +lieto +fine +vicenda +poteva +essere +strage +utilizza +divise +altro +campagna +elettorale +racimolare +voto +sogna +fin +piccolo +aspettando +diventare +cittadino +italiano +servire +comunità +fuori +chiacchiericcio +odio +troll +paese +bellissimo +animato +piccoli +gesti +eroismo +quotidiano +chiama +italia +orgoglioso +carabinieri +orgoglioso +ragazzi +oggi +milione +persone +piazza +dire +no +brexit +brexit +dimostra +dici +bugie +popolo +puoi +vincere +referendum +poi +vieni +sconfitto +realtà +vicenda +ragazzini +eroi +scuolabus +riportato +centro +dibattito +tema +ius +soli +qualcuno +dice +pd +coraggio +volta +stata +colpa +pd +altro +altra +strada” +racconto +andarono +cose +pagina +pagina +fiducia +unioni +civili +messa +ius +soli +invece +intervista +rilasciato +amici +fanpage +filo +conduttore +parole +chiave +altra +strada +leggo +sempre +volentieri +commenti +articolo +brexit +oggi +financial +times +mostriamo +manette +rifiutiamo +barbarie +giustizialismo +quando +colpisce +avversari +soprattutto +quando +colpisce +avversari +scandali +grillini +roma +indagati +arrestati +olimpiadi +buttate +via +paura +buche +bloccano +giro +italia +altro +autobus +prendono +fuoco +scale +mobili +accartocciano +cinghiali +rovistano +nettezza +sappiamo +disonesti +dirà +giudice +sentenza +web +sappiamo +sicuramente +incapaci +sappiamo +rubato +certi +fallito +ancora +volta +diciamo +grazie +carabinieri +sventato +grave +pericolo +coraggio +dedizione +onore +viva +arma +carabinieri +viva +professionisti +sicurezza +persone +serie +garantiste +sempre +diventano +giustizialiste +avversari +regalano +immunità +alleati +scoprono +garantismo +solo +amici +persone +serie +scelgono +libertà +senza +nascondersi +dietro +sacro +blog +piattaforma +persone +serie +sanno +giustizia +cosa +seria +testo +solo +sentenze +tribunali +fango +web +stile +persone +serie +altri +invece +altro +nome +chiamano +ipocriti +buona +giornata +amici +bellissimo +vedere +tanti +ragazzi +scendere +piazza +futuro +pianeta +emozionante +leader +mondo +adesso +diano +seguito +accordi +clima +parigi +fridaysforfuture +confrontato +marine +pen +tv +francese +populisti +uguali +pen +parlava +senza +conoscere +costituzione +italiana +senza +sapere +quando +salvini +italia +tornata +altro +recessione +senza +ricordare +grandi +sostenitrici +brexit +sento +sempre +impegnato +battaglia +culturale +civile +europa +giusta +cultura +odio +paura +salvini +pen +rappresentano +giorni +londra +presentato +altra +strada” +bel +gruppo +studenti +italiani +colpisce +gigantesco +caos +brexit +nessuno +dico +nessuno +andrà +finire +dicevano +altro +uscendo +europa +stato +semplice +quel +referendum +creato +casino +immane +bloccato +crescita +economica +britannica +politica +mostrando +volto +inconcludente +responsabilità +governo +opposizione +dico +forte +politica +britannica +peggio +potuto +fare +politica +italiana +dice +lunga +messi +vinto +referendum +mentendo +conto +oggi +paga +povera +gente +peccato +ieri +sera +partecipato +diretta +londra +trasmissione +televisiva +francese +marine +pen +discusso +brexit +europa +politica +italiana +immigrazione +cultura +amicizia +italo +francese +video +integrale +graditi +commenti +buon +pomeriggio +noto +possono +accusarmi +tranne +essere +juventino +ieri +resto +manchester +vedere +altra +partita +champions +juve +dopo +successo +ieri +solo +bisognerebbe +fare +complimenti +ronaldo +tutta +squadra +qualcuno +dovrebbe +chiedere +scusa +allegri +sempre +criticato +messo +discussione +invece +migliori +allenatori +mondo +basterebbe +po +onestà +intellettuale +riconoscerlo +scusarsi +mister +livornese +sbaglio +riccardo +muti +simboli +universali +cultura +italiana +fatto +ministro +cultura +grillino +permetta +insultarlo +dimostra +volgare +incompetente +banda +scappati +altro +casa +costituisce +governo +paese +bastavano +posizioni +gilet +gialli +venezuela +previsioni +economiche +sbagliate +figuracce +internazionali +no +ora +pure +ministro +cultura +attacca +maestro +muti +criterio +casaleggio +scelto +ministri +andato +caso +preso +volutamente +peggiori +solidarietà +riccardo +muti +viva +cultura +italiana +trovate +intervista +myrta +merlino +aria +tira +parlato +unaltrastrada +vicende +settimane +riguardato +famiglia +soprattutto +approfondito +danni +governo +paese +aspetto +sempre +commenti +trovate +mezz +ora +rai +lucia +annunziata +oggi +parlato +tav +infrastrutture +pericoli +economia +paese +corre +colpa +governo +incompetenti +altro +battaglia +culturale +presentazioni +unaltrastrada +giro +italia +vogliamo +proseguire +sempre +leggo +molto +volentieri +commenti +mamma +accoglienza +pescara +unaltrastrada +tanta +gente +arrende +combatte +farsa +governo +cialtrone +incompetente +vedervi +così +numerosi +presentazione +libro +emoziona +commuove +vediamo +lucia +annunziata +rai3 +buona +domenica +genitori +tornati +libertà +tribunale +riesame +infatti +annullato +decisione +gip +decisione +parsa +molti +primo +momento +abnorme +assurda +ovviamente +notizia +altro +stessa +eco +arresto +circo +mediatico +meno +interessato +resto +archiviazioni +assoluzioni +mai +stesso +spazio +apertura +indagini +processi +aule +giornali +vedremo +ragione +torto +rappresentante +istituzioni +confermo +maggior +ragione +oggi +fiducia +giustizia +italiana +figlio +dico +stati +giorni +brutti +vita +famiglia +vorrei +altro +18app +oltre +quattrocentomila +ragazzi +fatto +piccolo +investimento +cultura +comprato +libri +ricevuto +molte +critiche +aver +introdotto +misura +ora +dimostrano +numeri +bonusrenzi +avvicina +ragazzi +cultura +tempo +galantuomo +aderito +manifesto +macron +momento +scrivere +nuova +pagina +europa +popoli +populisti +sovranisti +parte +figli +nuove +generazioni +poco +diretta +stop +news +rtl +nonstopnews +diretta +varese +unaltrastrada +abbraccio +amico +davide +soprattutto +sara +ieri +imprenditore +difficoltà +ucciso +nord +est +difficilissimo +capire +persona +arriva +punto +togliersi +vita +dolore +amore +crisi +mal +vivere +direbbe +poeta +perso +amici +così +dolore +devastante +sempre +impossibile +stabilire +causa +impossibile +sentirsi +altro +colpa +quando +governo +opposizioni +grillini +leghiste +rinfacciavano +sempre +suicidi +imprenditori +crisi +resoconti +parlamentari +pieni +interventi +colpa +coscienza +schifo +modo +bieco +meschino +strumentalizzare +quel +dolore +schifo +altre +parole +oggi +governo +vorrei +arrivasse +abbraccio +solidale +famiglia +quest +uomo +vorrei +nessuno +desse +premier +colpa +suicidi +quando +palazzo +chigi +vorrei +insieme +recuperassimo +po +umanità +politica +nicola +zingaretti +vittoria +bella +netta +adesso +basta +fuoco +amico +avversari +politici +casa +governo +segretario +zingaretti +grande +bocca +lupo +maurizio +bobo +volontari +grazie +viva +democrazia +torno +verso +casa +dopo +aver +toccato +brindisi +milano +scandiano +ferrara +faenza +forlì +trovato +tanta +bella +gente +rassegna +cultura +odio +voglia +camminare +unaltrastrada +diretta +faenza +unaltrastrada +mezzo +gente +lecce +unaltrastrada +popolo +vuole +percorrerla +vado +letto +domani +riparte +emilia +romagna +grazie +tour +stupefacente +diretta +lecce +circondato +affetto +calore +vedevo +anni +grazie +emozionante +tornare +taranto +dopo +anni +insulti +vedere +aula +magna +università +strapiena +grazie +diretta +lecce +dati +istat +preoccupano +ormai +ufficiale +governo +deve +trovare +miliardi +euro +dicembre +frattempo +tassa +auto +rischia +dare +colpo +grazia +settore +grazie +marchionne +ripartito +debito +disoccupazione +giovanile +tornano +salire +governo +rende +conto +gravità +situazione +scuso +centinaia +persone +ieri +napoli +rimaste +fuori +sala +bellissimo +vedere +tanta +gente +partecipare +presentazioni +libro +grazie +oggi +altra +strada +porta +martina +franca +taranto +lecce +domani +emilia +romagna +buona +giornata +amici +diretta +napoli +ecco +intervista +martedì +bruno +vespa +porta +porta +solito +graditi +commenti +tempo +vederla +astenersi +odiatori +troll +buona +giornata +oggi +altra +strada +porta +napoli +parole +descrivere +affetto +entusiasmo +scuola +catania +libreria +palermo +grazie +giornata +siciliana +unaltrastrada +diretta +senato +intervento +nome +gruppo +pd +qualche +senatore +grillino +vuole +impiccarmi +rispondiamo +intervenendo +aula +nome +gruppo +pd +dire +no +scelte +economiche +dissennate +governo +riportato +recessione +grazie +leggendo +commentando +unaltrastrada +fatto +tanta +gente +parlando +idee +proposte +libro +emoziona +lungo +cammino +fare +bello +farlo +insieme +grazie +intervista +ieri +giletti +primo +pomeriggio +intervengo +aula +senato +sciagurate +scelte +economiche +riportato +recessione +buona +settimana +amici +stata +intervista +me +difficile +tanti +motivi +grazie +commenti +trasmissione +giletti +fatto +tempo +vedermi +pareggio +viola +inter +buona +notte +vediamo +domani +senato +grazie +accoglienza +ciuffenna +cortona +davvero +tanti +darmi +affetto +voglia +percorrere +insieme +unaltrastrada +ora +torna +roma +preparare +discorso +altro +domani +senato +prima +però +ospite +massimo +giletti +arena +partire +aspetto +settimana +foligno +maestro +scuola +pubblica +insulta +bambini +colore +pagina +bella +scritta +emma +cantante +chiesto +aprire +porti +macchina +odio +altro +propaganda +guidata +amministratore +lega +insultata +pesantemente +risposta +emma +bellissima +troppo +odio +paese +linguaggio +violento +respinto +bisogno +restare +umani +grazie +emma +artista +coraggiosa +donna +forte +grazie +prende +impegno +no +mai +buona +domenica +migliaia +persone +giorni +partecipano +presentazioni +altra +strada” +impressionante +affetto +voglia +futuro +tanta +gente +arrende +vorrei +dirvi +grazie +abbracciarvi +buona +notte +ieri +sera +tappe +tantissima +gente +tanto +affetto +torino +genova +italia +bisogno +proposte +diverse +governa +altra +strada +percorrere +insieme +cammino +diretta +torino +unaltrastrada +oggi +maio +sparato +bufala +clamorosa +detto +aumentati +posti +lavoro +prendendosene +merito +allora +guardiamo +dati +vero +posti +lavoro +merito +effetti +jobsact +industria +misure +maio +dirlo +semplice +leggo +dati +altro +quando +maio +ministro +75mila +posti +lavoro +meno +secondo +dati +istat +addirittura +122mila +posti +tempo +indeterminato +meno +decreto +dignità +maio +distruggendo +mondo +lavoro +italiano +messo +medico +sanità +soldatessa +difesa +maio +disoccupazione +torna +curioso +capire +oggi +tg +populisti +dare +notizia +quando +maio +ministro +posti +lavoro +diminuiscono +tg +diranno +verità +racconteranno +bugie +grillini +leggo +intervista +corriere +senatore +giarrusso +portavoce +ufficiale +movimento +stelle +dice +dovrei +essere +impiccato” +penso +oltre +barbarie +stupisce +nessuno +intervenga +frase +allucinante +pensano +farmi +paura +sbagliato +bersaglio +buona +giornata +ieri +francia +germania +fatto +proposta +importante +giusta +superare +regole +antitrust +europeo +sembra +tema +banale +me +decisivo +parlo +altra +strada” +peccato +vedere +tavolo +italia +ministri +francia +germania +maio +promesso +riprendiamo +presentazioni +unaltrastrada +vediamo +venerdì +febbraio +lingotto +torino +genova +teatro +gioventù +senza +rancore +idee +futuro +italia +aspetto +commenti +letto +libro +già +detto +adesso +aspettiamo +processi +sentenze +dolore +figlio +immaginate +davvero +convinto +tempo +galantuomo +aspettiamo +sentenze +vedremo +ragione +torno +dunque +lavoro +attualità +dati +istat +oggi +allucinanti +crolla +dicembre +fatturato +industriale +crollano +soprattutto +ordinativi +meno +gennaio +primo +trimestre +pil +bagno +sangue +governo +sembra +vivere +altro +pianeta +enews +febbraio +condividetela +immaginato +scrivervi +tutta +altra +news +pensavo +raccontarvi +entusiasmo +fine +settimana +girato +molto +emilia +romagna +veneto +lombardia +piemonte +presentare +libro +altra +strada” +trovato +accoglienza +superiore +rosee +aspettative +ovunque +centinaia +altro +persone +voglia +mollare +desiderio +discutere +foto +giorni +parlano +chiaro +calore +persino +inatteso +cominciare +sala +rossa +firenze +roma +sasso +marconi +san +lazzaro +savena +este +mestre +erbusco +treviglio +cernusco +naviglio +milano +poi +trasmissione +fazio +altro +costretto +annullare +presentazione +libro +torino +grave +vicenda +personale +circa +ora +padre +madre +domiciliari +molta +fiducia +giustizia +italiana +penso +cittadini +uguali +davanti +legge +dunque +impaziente +assistere +processo +letto +carte +altro +garantisce +aver +mai +visto +provvedimento +così +assurdo +sproporzionato +mai +adesso +crede +giustizia +aspetta +sentenze +credo +giustizia +italiana +dico +oggi +rispetto +profondo +servitore +stato +arriveranno +sentenze +vedremo +cittadini +settantenni +incensurati +davvero +pericolosi +criminali +altro +ieri +tornato +luogo +delitto +infatti +partecipato +tempo +fa +ultima +volta +fazio +intervistato +stata +occasione +dire +no +accordo +stelle +ieri +parlato +serve +tracciare +altra +strada” +intervista +ieri +grazie +weekend +ricco +emozioni +grazie +sostegno +durante +trasmissione +fazio +penso +proprio +fatto +bene +dire +no +accordo +grillini +unaltrastrada +cernusco +poi +milano +bello +toccare +tanto +entusiasmo +voglia +ribadire +sì +politica +futuro +cultura +lavoro +verità +europa +populismi +spacciatori +paura +ignoranza +sussidi +altro +fake +news +nazionalismi +altra +strada +tanti +rassegnarci +poco +aspetto +rai +fabio +fazio +iniziare +mattinata +persone +meravigliosa +cantina +franciacorta +senza +bere +adesso +unaltrastrada +verso +treviglio +cernusco +milano +buonadomenica +sasso +marconi +san +lazzaro +savena +este +mestre +adesso +verona +sale +strapiene +persone +chiedono +camminare +unaltrastrada +diretta +san +lazzaro +savena +diretta +firenze +grazie +accoglienza +altra +strada” +libreria +amazon +stasera +vediamo +firenze +sala +rossa” +palazzo +congressi +esattamente +anni +dopo +fattaccio +aspetto +fiorentini +serata +speciale +diretta +roma +diretta +tempio +adriano +roma +unaltrastrada +stato +torchiato +gian +antonio +stella +penna +ammiro +anni +prima +casta +scritto +libro +meraviglioso +orda +quando +albanesi +intervista +tosta +trovate +stamattina +alcuni +quotidiani +cominciare +financial +times +dedicano +spazio +libro +altra +strada +piacerebbe +tanto +libro +aiutasse +riflettere +proposte +vorrà +discutere +altro +benvenuto +domani +sera +firenze +lancio +ufficiale +anticipazioni +oggi +roma +poi +giriamo +tutta +italia +davanti +incompetenza +governo +portato +italia +recessione +altra +strada +vorrei +percorrerla +insieme +crede +verità +fake +news +crede +cultura +ignoranza +crede +europa +nazionalismo +crede +futuro +paura +buona +strada +stelle +perdono +regionali +abruzzo +beppe +grillo +dice +restituiteci +000€ +dato +rimborsi +pensate +battuta +realtà +modello +democrazia +testa +populisti +caso +isolato +libro +altra +strada +molti +esempi +genere +sottolineo +altro +altra +cosa +ore +toninelli +tav +maio +reddito +cittadinanza +grillo +abruzzo +battista +mostrando +ragioni +quali +voluto +fare +accordi +stelle +finalmente +casa +accorti +quasi +report +costi +benefici +toninelli +barzelletta +fa +ridere +dato +però +andrebbe +studiato +persino +esperti +toninelli +spiegano +tav +torino +lione +abbattono +tonnellate +co2 +mezzo +punto +percentuale +emissioni +italiane +co2 +solo +tunnel +ammettono +ama +ambiente +sceglie +tav +inquina +gomma +francia +dobbiamo +condividere +valori +iniziative +leonardo +fare +polemiche +assurde +solo +vergognarsi +disfatta +politica +estera +italiana +60secondi +ieri +vicepremier +repubblica +italiana +maio +partecipato +consiglio +ministri +preso +aereo +andato +incontrare +frangia +agguerrita +gilet +gialli +francesi +vogliono +fare +accordo +europee +macron +teppisti +istituzioni +sempre +parte +istituzioni +stupisce +nessuno +notare +maio +paese +democratico +francia +merita +rispetto +governo +italiano +alleanze +teppisti +ringrazio +raffaelle +cantone +lavoro +svolto +insieme +corruzione +quando +anni +fa +partiti +credeva +nessuno +oggi +anac +realtà +fa +modello +livello +internazionale +ok +adesso +sanremo +prima +inizi +ultimo +venezuela +oggi +ricevuto +telefonata +presidente +guaidò +ringrazia +sostegno +giorni +posizione +governo +screditando +mondo +italia +deve +stare +libertà +dittatura +copertina +libro +uscirà +prossimo +febbraio +piace +felice +tornare +abbracciare +tanti +presentazioni +http +bit +unaltrastrada +link +casa +editrice +marsilio +racconta +qualcosa +unaltrastrada +bravo +premier +spagnolo +sanchez +riconosce +ufficialmente +guaidò +nuovo +presidente +venezuela +provo +imbarazzo +vergogna +posizione +italiana +stop +dittatura +maduro +penso +verrà +presto +giorno +conte +moavero +salvini +maio +vergogneranno +essere +stati +parte +sbagliata +storia +connazionali +dittatura +libertà +posizionamento +governo +italiano +venezuela +scandaloso +tradisce +storia +allontana +altri +paesi +europei +abbandona +connazionali +venezuela +ideali +libertà +democrazia +fin +conti +sostiene +dittatura +sanguinosa +disintegrato +quel +bellissimo +paese +capisco +politica +estera +attiri +nessuno +quasi +sinceramente +temo +pagheremo +anni +conseguenze +pavida +scelta +giorni +abbraccio +fratelli +venezuelani +possiamo +finta +niente +rimanere +indifferenti +immagini +giungono +ultimi +giorni +caracas +mostrano +centinaia +migliaia +cittadini +venezuelani +manifestare +pacificamente +altro +governo +populista +maduro +ripristino +democrazia +uomini +donne +bambini +semplicemente +chiedono +essere +ascoltati +venezuela +paesi +ricchi +risorse +minerarie +petrolifere +mondo +paradossalmente +paese +oggi +povertà +estrema +raggiunto +popolazione +scarseggiano +medicine +elementari +già +fuggiti +milioni +persone +paese +inflazione +oltre +altro +signore +segnato +gioventù +fatto +esultare +piangere +emozionare +stato +lottare +serie +b +zittito +avversari +stadi +belli +mondo +amato +firenze +altro +stato +amato +passione +travolgente +oggi +compie +anni +primo +pensiero +re +leone +buon +compleanno +gabriel +omar +batistuta +appello +governo +fermatevi +cambiate +strada +60secondi +quando +nuovo +governo +italia +perso +mila +posti +lavoro +dati +ufficiali +istat +pil +seconda +volta +negativo +recessione +vuol +bene +italia +scelte +economiche +salvini +maio +sbagliate +scelte +quattordici +trimestri +crescita +scelte +subito +recessione +portando +paese +sbattere +cambiamo +strada +prima +troppo +tardi +dati +pil +stati +positivi +quattordici +trimestri +consecutivi +primo +semestre +poi +arrivato +governo +cambiamento +pil +diventato +negativo +italia +tecnicamente +recessione +portano +sfiga +solo +incapaci +conto +pagherà +classe +media +ritirare +meno +truppe +afghanistan +decisione +privata +ministro +andati +lì +insieme +altri +minaccia +talebani +estremisti +islamici +prolungato +volte +missione +decidere +ritirarsi +missione +avanti +anni +richiede +discussione +approfondita +vera +seria +altro +slogan +sicurezza +preferiamo +ragazzi +tornino +casa +lì +villeggiatura +lì +difendere +sicurezza +decide +quando +servono +ministro +può +fare +solo +italia +grande +paese +può +gestire +caso +politica +estera +arrivate +senato +carte +tribunale +ministri +confronti +matteo +salvini +dopo +averle +lette +attenzione +senza +alcun +pregiudizio +ideologico +voterò +favore +richiesta +autorizzazione +procedere +giornata +memoria +cerimonia +impegno +assumere +giorni +dimenticheremo +orrori +olocausto +mai +stanotte +lasciati +silvano +sarti +partigiano +amava +stare +giovani +raccontava +vocione +storie +resistenza +liberazione +firenze +discorsi +agosto +altro +palazzo +vecchio +interminabili +bellissimi +canti +amore +libertà +finiva +salone +piedi +applaudirlo +voltava +piano +verso +me +andato +” +educava +giovani +impegno +ragazzi +vu +importanti +telefonino +vu +tenete +fisso +mano +quando +età +qualcuno +toccato +morire +libertà” +amava +politica +incoraggiava +mettersi +gioco +sempre +raccomando +mollare” +me +stato +punto +riferimento +amico +vero +buon +viaggio +silvano +grazie +stato +continuerai +essere +cuore +camminato +te +lega +stelle +copiando +prima +repubblica +dire +quota +significa +richiamare +prepensionamenti +tanto +pagano +giovani +dire +reddito +cittadinanza +significa +affermare +assistenzialismo +favorire +lavoro +nero +elemento +meno +riflettendo +assunzione +diecimila +persone +senza +concorso +altro +pubblico +fare +navigator +diecimila +persone +assunte +così +naturalmente +maio +già +promette +stabilizzate +diecimila +persone +colloquio +entreranno +pubblica +amministrazione +naso +restarci +sempre +sinceramente +sembra +giusto +ricordate +assurda +norma +voluta +governo +legge +bilancio +aumentava +tasse +volontariato +no +profit +oggi +grazie +emendamento +pd +primo +firmatario +andrea +marcucci +stata +cancellata +piccolo +segno +positivo +giusto +sottolinearlo +grazie +andrea +grazie +soprattutto +volontari +italiani +impegnano +terzo +settore +associazionismo +60secondi +senato +oggi +aula +vota +decreto +semplificazione +ennesimo +rinvio +allora +guardiamo +dati +ufficiali +conseguenze +altri +provvedimenti +grazie +maio +cresce +disoccupazione +venezuela +stato +distrutto +dittatura +feroce +anni +visto +regime +caracas +modello +deve +prendere +atto +chavez +prima +maduro +poi +devastato +bellissimo +paese +adesso +europa +deve +trovare +coraggio +sostenere +subito +unica +istituzione +democratica +rimasta +assemblea +nazionale +appoggiare +presidente +guaidò +andare +rapidamente +elezioni +veramente +democratiche +bambini +muoiono +fame +venezuela +può +aspettare +ancora +viva +libertà +viva +democrazia +mediaticamente +massacrato +costruito +intere +trasmissioni +dipinto +molestatore +poi +scoperto +innocente +ragazze +detto +tutta +verità +famoso +giornalista +famosa +trasmissione +elementi +ostilità +preconcetta +oggi +dopo +mesi +altro +gogna +mediatica +giudici +persone +serie +definitivamente +archiviato +chiama +fausto +brizzi +cittadino +innocente +amico +spero +contribuito +danneggiarlo +spero +soprattutto +provato +distruggergli +vita +stasera +esame +coscienza +giustizia +cosa +molto +seria +servizi +scandalistici +qualche +ex +iena +ora +impegnata +governo +giustizia +giustizialismo +parte +giustizia +sempre +verità +arriva +sempre +deputato +grillino +chiama +carlo +sibilia +crede +molto +intelligente +forse +davvero +doti +nascoste +pur +fatto +figuraccia +galattica +quando +sostenne +americani +sbarcati +luna +complotto +ciò +nonostante +fatto +sottosegretario +ministero +interno +povero +viminale +solo +altro +ministro +influencer +sottosegretario +complottista +dura +vita +quel +glorioso +palazzo +eh +ieri +sibilia +anziché +occuparsi +sicurezza +polizia +ordine +pubblico +difeso +spada +tratta +nomina +lino +banfi +poi +pensato +bene +fare +simpatico +pubblicato +chiedere +followers +preferissero +banfi +altro +ieri +stato +ospite +barbara +palombelli +ecco +andata +ovviamente +fa +piacere +sapere +pensate +buona +giornata +tante +ironie +nomina +lino +banfi +unesco +gente +toninelli +infrastrutture +castelli +economia +preoccupate +lino +banfi +colpisce +polemica +laureati +certo +resto +nomina +fa +maio +cosa +stupiamo +60secondi +oggi +senato +tanto +cambiare +vota +maggioranza +ancora +pronta +parliamo +frase +incredibile +matteo +salvini +stamani +canale +dichiarazioni +bar +maio +salvini +isolato +italia +proprio +mentre +francia +germania +rilanciano +insieme +europa +mentre +macron +merkel +firmano +patto +aquisgrana +mandiamo +banfi +unesco +ecco +cambiamento +politica +estera +60secondi +situazione +sfuggendo +mano +battista +dice +obama +golpista +maio +schiera +gilet +gialli +assaltano +istituzioni +francesi +battista +strappa +moneta +colonialista +francesi +africa +maio +dice +macron +responsabile +stragi +migranti +africani +sembra +talmente +assurdo +altro +scappa +ridere +danno +credibilità +italia +relazioni +paesi +storicamente +amici +purtroppo +enorme +politica +estera +cosa +seria +karaoke +dilettanti +sbaraglio +pensiero +dedicato +matera +expo +olimpiadi +italia +scommette +eventi +italia +dice +no +evitare +polemiche +anziché +motoscafo +stavolta +60secondi +ve +invio +barbiere +😀 +complimenti +andrea +frailis +nuovo +deputato +collegio +cagliari +preoccupa +affluenza +bassa +ovviamente +nonostante +sondaggi +tg +schierati +pagine +pagine +propaganda +salvini +maio +primo +voto +nuovo +seggio +parlamento +vince +opposizione +persino +sardegna +promesse +sciacalli +prestanome +assegni +vuoto +palloncino +populista +prima +poi +sgonfierà +tempo +galantuomo +buon +lavoro +andrea +davvero +buona +notizia +persone +rischiano +morire +mare +salvini +dice +colpa +ong +maio +dice +colpa +macron +interessi +africa +sempre +cercare +capro +espiatorio +pazzesco +dico +date +pure +colpa +volete +prima +andiamoli +prendere +salviamoli +fratelli +sorelle +vita +vale +sondaggio +penso +meglio +perdere +voti +perdere +dignità +popolo +antiche +tradizioni +valori +italia +andiamo +salvarli +subito +maio +battista +dicono +reddito +cittadinanza +poveri +radical +chic +magari +così +purtroppo +vero +opposto +reddito +cittadinanza +misura +aiuta +uscire +povertà +vero +modo +combattere +povertà +creare +posti +lavoro +sussidi +persone +vanno +rese +libere +altro +autonome +lavoro +dipendenti +procedure +complicate +peggio +ancora +voto +scambio +politici +assistenzialisti +nodo +concettuale +vuoi +combattere +povertà +devi +creare +lavoro +odiato +jobsact +creati +milione +posti +lavoro +decreto +dignità +maio +decine +migliaia +persone +rimaste +casa +fatti +ahinoi +reddito +cittadinanza +elemosina +creare +posti +lavoro +politica +belle +immagini +matera +ieri +capitale +cultura +europea +molto +orgoglioso +lavoro +silenzioso +governo +società +civile +enti +locali +coordinatore +governo +altro +fatto +città +città +anni +scorsi +cosa +positiva +stanziato +molte +risorse +potranno +essere +spese +dopo +evento +cominciare +stazione +ferrovia +allora +dicemmo +matera +evento +stato +svolta +fatte +dovute +proporzioni +expo +stato +milano +creduto +quando +credevano +pochi +oggi +tanti +bellissimo +suggerimento +mai +visto +matera +momento +giusto +andarci +già +stati +utilizzate +tornarci +quei +sassi +considerati +vergogna +italia +dopoguerra +oggi +simbolo +identità +comunitaria +nazionale +europea +matera +viva +bellissima +60secondi +oggi +dedicati +storia +italia +buona +interessa +salvini +infatti +ritwitta +solo +storie +violenza +parte +extracomunitari +eppure +civile +veneto +successo +qualcosa +bello +modo +augurarvi +buon +weekend +notizia +colpisce +ancora +colpisce +silenzio +ministri +polemica +sempre +stranieri +oggi +zitti +proprio +quando +scopriamo +buona +notizia +altro +imprenditore +veneto +perde +borsello +dentro +900€ +contanti +disoccupato +marocchino +ritrova +restituisce +intonso +legittimo +proprietario +sindaco +ringrazia +cittadino +marocchino +imprenditore +decide +assumerlo +togliendolo +strada +bello +poter +festeggiare +notizia +ministro +possa +ritwittare +bella +storia +social +devono +diffondere +odio +solo +odio +mai +speranza +protagonisti +storia +nomi +omar +bernardo +guido +vada +grazie +tantissime +persone +sognano +italia +comunità +lavora +insieme +tribù +insultano +odiano +buona +notte +rassegnano +cultura +divisione +rabbia +mettiamo +qualche +puntino +storia +reddito +cittadinanza +strumento +giusto +sostegno +poveri +falso +ecco +misura +povertà +italia +già +prevista +operativa +chiama +rei +vuole +migliorarla +prego +avanti +reddito +cittadinanza +altro +misura +povertà +me +drammatico +errore +concettuale +mancano +soldi +rispetto +promesse +campagna +elettorale +repubblica +democratica +fondata +lavoro +sussidio +vogliamo +combattere +povertà +creando +posti +lavoro +garantendo +assistenzialismo +peggio +altro +oggi +60secondi +arrivano +venezia +condivido +ideologia +decretone +favorisce +lavoro +nero +fa +pagare +giovani +pensioni +però +dico +prendiamo +serio +salvini +maio +prendiamoli +serio +difficile +60secondi +18gennaio +solo +anni +fare +quel +viaggio +così +lungo +pericoloso +scelto +portarsi +pagella +ripiegata +cura +cucita +dentro +tasca +africa +verso +speranza +chiamata +europa +tasca +altro +documento +importante +certificava +studi +banale +eppure +preziosissima +pagella +morto +annegato +insieme +altre +centinaia +persone +drammatico +giorno +aprile +anni +fa +dottoressa +cristina +cattaneo +descritto +storia +makkox +immaginato +così +molta +poesia +niente +notizia +molto +colpito +italia +paese +valori +dimentichiamolo +paese +altruismo +paese +prova +dare +sepoltura +corpi +regole +civiltà +valgono +sondaggi +puoi +perdere +punti +consenso +puoi +perdere +davanti +figli +grazie +italia +arrende +odio +rassegnazione +grazie +italia +mantiene +vivo +senso +parola +pietas +show +salvini +bonafede +pagina +nera +istituzioni +italiane +compito +politici +crescere +posti +lavoro +fan +instagram +frattempo +grazie +legge +bonafede +salvini +salva +leghisti +peculato +60secondi +17gennaio +ministro +giustizia +alfonso +bonafede +vuole +emulare +salvini +posa +divisa +penitenziaria +soddisfatta +fratellino +piccolo +regalato +stesso +altro +giocattolo +grande +frattempo +show +mediatico +battisti +messo +rischio +identità +agenti +forze +polizia +bonafede +accorto +legge +presunta +anticorruzione +norma +personam +salva +leghisti +peculato +però +bonafede +stesso +giocattolo +salvini +tanto +felice +giustizia +italiana +po +meno +maio +dice +nuovo +boom +economico +mondo +imprenditoriale +ovviamente +ride +dietro +infatti +oggi +escono +dati +istat +ordinativi +industria +novembre +altro +tendenziale +anno +anno +picco +ordini +interni +altro +crisi +importata +estero +ordini +interni +inizio +vedete +articolo +intanto +continua +licenziare +colpa +decreto +disoccupazione +firmato +proprio +gigggino +vicepremier +massimi +esperti +mondiali +disoccupazione +nuovo +boom +economico +prima +poi +realtà +presenta +conto +accadendo +uk +brexit +bugie +raccontato +populisti +vincere +referendum +adesso +capisce +europa +fondamentale +lezione +londra +roma +giornata +incredibile +regno +unito +governo +may +sotto +oltre +voti +accordo +brexit +sempre +lontano +rinvio +data +marzo +forse +nuovo +referendum +certo +voto +uscire +europa +stato +errore +storico +britannici +anni +fa +raccontava +altro +passeggiata +andrà +bene +prendendo +giro +inglesi +europei +giugno +uk +smesso +correre +paesi +forti +mondo +accasciato +stesso +dimenticate +quei +giorni +italia +unici +partiti +brindavano +elogiando +inglesi +movimento +stelle +alleato +farage +lega +dicevano +dovremmo +fare +britannici +tempo +davvero +galantuomo +brexit +disastro +ora +nessuno +uscirne +apro +quotidiano +monde +trovo +bellissimo +tragico +pezzo +politica +estera +anno +dopo +fine +combattimenti +terroristi +stato +islamico +daesh +ancora +impossibile +contare +altro +morti +mosul +comuni +migliaia +persone +scene +violenza +inaudita +raccontate +testimoni +oculari +prospettive +ricostruzione +mondo +riduce +politica +tweet +bello +vedere +alcuni +giornali +purtroppo +scelgano +qualità +approfondimento +vera +informazione +politica +senza +informazione +degna +nome +libera +stancherò +mai +ripetere +politica +estera +materiale +addetti +lavori +elemento +strategico +futuro +popolo +omicidio +sindaco +danzica +pawel +adamowicz +colpo +cuore +europa +valori +ideali +oggi +giorno +lutto +crede +politica +europa +sindaco +danzica +pawel +adamowicz +stato +accoltellato +ieri +città +pawel +personaggi +popolari +opposizione +polacca +attesa +conoscere +investigatori +cosa +davvero +successo +quali +ragioni +folle +gesto +dobbiamo +riflettere +cosa +accade +politica +quando +prevale +clima +altro +odio +quando +violenza +verbale +trasforma +violenza +fisica +stanotte +quel +coltello +ferito +solo +uomo +stessa +idea +europa +guai +sottovaluta +intanto +preghiamo +tifo +pawel +capisco +polemiche +oggi +arresto +cesare +battisti +oggi +giorno +festa +italia +democrazia +dimostra +essere +forte +terrorismo +vince +giustizia +partito +politico +vincono +istituzioni +ultras +fiero +uomini +donne +polizia +intelligence +altro +dico +grazie +diventeremo +paese +civile +quando +smetteremo +strumentalizzare +episodi +episodi +devono +farci +esultare +insieme +sempre +sempre +parte +legalità +giustizia +notizia +incredibile +finita +qualche +retroscena +oggi +racconta +meglio +mille +discorsi +funziona +maggioranza +governa +ricordate +cinema +fatto +bonafede +grillini +legge +anti +corruzione +bene +ora +scopre +attraverso +comma +personam +leghisti +inserito +norma +salva +processi +altro +propri +deputati +condannati +peculato +capito +bene +scusa +combattere +corruzione +fatto +passare +codicillo +permetterà +ex +consiglieri +regionali +già +condannati +via +definitiva +rimborsi +salvarsi +quindi +decreto +bonafede +tanto +sbandierato +maio +battista +tutta +redazione +fatto +quotidiano +ottiene +obiettivo +opposto +salvare +pelle +politici +condannati +peculato +giro +anno +grillini +passati +onestà +” +leggi +personam +vero +proprio +salvalega +cambia +andare +casa +arresto +cesare +battisti +bolivia +bellissima +notizia +italiani +senza +alcuna +distinzione +colore +politico +desiderano +assassino +genere +riportato +presto +paese +scontare +pena +carcere +italiano +oggi +buona +giornata +giustizia +oggi +violenze +francia +corso +manifestazioni +gilet +gialli +bordeaux +stati +feriti +molto +gravi +violenza +continua +buona +pace +salvini +maio +odiano +altro +macron +istituzioni +democratiche +gilet +gialli +parte +forze +ordine +nonviolenza +legalità +ieri +maio +visto +dati +produzione +industriale +detto +pronti +nuovo +boom +economico +spiegato +quando +segno +meno +davanti +significa +dato +negativo +altro +resto +basta +leggere +articolo +ennesimo +imprenditore +licenzia +persone +colpa +decreto +dignità +legge +voluta +maio +danni +grandine +tempo +galantuomo +verità +prima +poi +arriva +oggi +torino +dice +sì +futuro +basta +vogliono +bloccare +italia +ferma +tav +ferma +crescita +grazie +torino +fermiamo +politica +estera +interessa +molti +buon +motivo +parlarne +bellissimo +articolo +bernard +henri +lévy +oggi +stampa +torino +ieri +firmato +insieme +tanti +altro +colleghi +interrogazione +parlamentare +chiedere +governo +cosa +intenzione +fare +dopo +americani +annunciato +ritiro +siria +situazione +potenzialmente +esplosiva +sottovalutare +passaggio +potrebbe +paradossalmente +portare +rinascita +isis +abbandonare +curdi +dopo +curdi +fatto +disumano +oltre +politicamente +sbagliato +stato +erbil +agosto +premier +mentre +italia +presiedeva +unione +europa +visitato +istituzioni +campi +profughi +abbandonati +allora +mentre +bombardamenti +possiamo +farlo +adesso +governo +italiano +idea +dossier +grazie +tantissimi +fatti +vivi +auguri +compleanno +cenetta +fiorentina +famiglia +suggellato +bella +giornata +già +fila +resto +felice +tanto +fatto +insieme +so +molta +fame +futuro +molta +invecchiamo +curiosi +allegri +altro +pazienti +molliamo +mai +forza +profeti +odio +rabbia +solo +insultare +accusare +diversi +andiamo +avanti +testa +alta +chiudo +giornata +festa +allora +meravigliosa +frase +mitico +michael +jordan +forse +grande +giocatore +basket +storia +vita +sbagliato +novemila +tiri +perso +quasi +trecento +partite +ventisei +volte +compagni +affidato +tiro +decisivo +sbagliato +fallito +molte +volte +fine +vinto +grazie +auguri +amicizia +onore +camminare +persone +domani +torino +scende +piazza +tav +me +vive +città +ben +servita +alta +velocità +importante +infrastruttura +firenze +ormai +perfettamente +connessa +milano +roma +italia +ormai +metropolitana +superficie +bloccare +torino +tornare +indietro +sprecare +soldi +folle +farlo +altro +impuntatura +ideologica +stelle +ancora +può +dire +no +forza +dire +no +bloccando +italia +evviva +torino +domani +dice +sì +tav +sì +crescita +sì +futuro +diretta +palazzo +giustiniani +top +ten +settimana +brutte +notizie +purtroppo +fronte +economico +produzione +industriale +crolla +annuo +vedevano +dati +problema +mentre +mondo +rallenta +italia +inchioda +governo +purtroppo +sembra +accorgersene +arrivando +recessione +litigano +giorni +parliamo +poco +altro +prima +topten +diretta +facebook +ig +palazzo +giustiniani +sacco +questioni +affrontare +salvini +vuole +decidere +persino +festival +sanremo +polemiche +documento +firmato +insieme +beppe +grillo +vaccini +poi +vent +anni +morte +andrè +viaggio +usa +incontro +joe +biden +visita +stanford +figuraccia +grillina +banche +vediamo +dopo +amici +grazie +auguri +esagerano +eccome +esagerano +adesso +attaccano +persino +claudio +baglioni +cioè +dico +claudio +baglioni +icona +italiani +grandi +musica +italiana +baglioni +detto +soluzione +immigrazione +complessa +lasciare +mezzo +mare +persone +detto +verità +semplice +persino +banale +altro +detta +uomo +sempre +sensibile +tema +ricorda +impegno +lampedusa +salvini +scatenato +inferno +troll +attaccando +social +baglioni +qualcuno +vorrebbe +addirittura +impedirgli +presentare +prossimo +sanremo +altro +scorso +anno +visto +boom +ascolti +secondo +me +esagerando +davvero +salvini +montando +testa +vuole +persino +impedire +cantanti +esprimere +proprie +opinioni +poi +albano +sì +baglioni +no +solo +cantanti +piacciono +salvini +pretende +spiegare +gattuso +schierare +milan +baglioni +cosa +dire +festival +vescovi +guida +chiesa +basta +salvini +basta +drammatica +vicenda +migranti +stata +risolta +tardi +stata +risolta +grazie +leadership +uomo +capace +premier +conte +milanista +sfegatato +salvini +parla +perfettamente +italiano +infatti +maio +chiama +joseph +muscat +premier +malta +caso +salvini +smentito +altro +platealmente +governo +attacca +malta +muscat +ieri +modo +costante +ehi +salvini +adesso +finita +vicenda +migranti +stati +accolti +concentri +milioni +inizi +restituirceli +professor +roberto +burioni +persona +stimo +enormemente +proposto +firmare +documento +vaccini +scienza +detto +guarda +documento +forse +portiamo +beppe +grillo +altro +grande +passo +avanti +secondo +me +problemi +caso +firmarlo +insieme +” +certo +no +grillo +stelle +maggioranza +abbandonano +posizioni +antiscientifiche +novax +italiano +felice +grazie +dunque +professor +burioni +servizio +continuo +causa +scienza +dignità +paese +grazie +ricercatori +medici +scienziati +futuro +appartiene +venditori +fumo +almeno +amici +americani +chiesto +davvero +roma +così +piena +rifiuti +minimizzato +dice +parti +giusto +sbagliato +comunque +paese +difendo +sempre +poi +apri +cronaca +romana +messaggero +vedi +scene +rabbia +roma +deve +essere +trattata +così +fatto +caso +mettendo +piedi +incredibili +diversivi +pur +parlare +banche +litigano +altro +fingono +dissidi +buttato +lì +persino +cannabis +pur +cambiare +discorso +obiettivo +mettere +tacere +vicenda +cercano +diversivi +abbassare +attenzione +invece +eccovi +mini +riflessioni +altro +semplici +semplici +governo +fatto +bene +fare +decreto +carige +penso +pd +benissimo +votare +favore +decreto +prima +polemiche +parte +viene +sempre +interesse +paese +usano +soldi +pubblici +garantire +poi +salvare +banca +esattamente +fatto +governo +gentiloni +tanto +altro +celebrazioni +anni +infinito +leopardi +ricordano +italia +innanzitutto +terra +cultura +letteratura +emozioni +capolavoro +scritto +quando +poeta +appena +anni +altro +riporta +mente +serate +passate +libri +liceo +studiare +farsi +grandi +domande +mai +emozionato +davanti +leopardi +capolavoro +serve +ricordarsi +vogliamo +essere +paese +persone +serve +farsi +domande +vere +autentiche +senso +vita +italia +comunità +dato +natali +alcune +straordinarie +espressioni +artistiche +culturali +mondo +possiamo +dimenticarcene +chiacchiericcio +ogni +giorno +tempo +suggerimento +fate +salto +recanati +visitare +luoghi +poeta +fatto +qualche +mese +fa +pieni +meraviglie +troppe +volte +sconosciute +italia +profonda +bellissima +forte +tutte +paure +quando +vedo +certe +immagini +domando +istituzioni +italiane +possano +stare +parte +gilet +gialli +dicono +ah +parte +macron +parte +legalità +forze +ordine +democrazia +giustifica +violenza +me +sempre +torto +sempre +vita +capita +cambiare +idea +salvini +maio +adesso +cambiato +idea +decidendo +salvare +banca +genova +legittimo +invece +inaccettabile +tentativo +prendere +giro +italiani +vedi +giustificazioni +girano +social +senti +stridore +unghie +specchi +mentre +giustificano +altro +dici +ammettono +verità +cambiano +discorso +problema +questione +banche +problema +nega +realtà +ieri +ilva +oggi +banche +domani +tav +aumento +pressione +fiscale +colpisce +cosa +sé +tracotante +arroganza +giustificano +fango +buttato +addosso +altro +bastati +minuti +riunione +notturna +consiglio +ministri +smentire +anni +insulti +menzogne +matteo +salvini +luigi +maio +devono +solo +vergognarsi +governo +populista +approva +decreto +salva +banche +aiutare +correntisti +risparmiatori +genova +esattamente +ciò +già +accaduto +arezzo +ferrara +marche +chieti +veneto +siena +quando +attaccati +amici +potenti +quando +cercano +credere +solo +aiuto +altro +risparmiatori +verità +banche +massacrato +bugie +fakenews +insulti +ilva +tap +terzovalico +trivelle +80euro +jobsact +alternanza +scuola +lavoro +fandonie +raccontato +italiani +oggi +fatto +cosa +giusta +risparmiatori +cosa +giusta +dimostrato +aver +spudoratamente +mentito +anni +tempo +galantuomo +fa +giustizia +tutte +bugie +bugie +piccoli +imbroglioni +prova +sforza +parliamo +male +maggioranza +poi +arriva +ministro +scheda +scienziati +base +idee +politiche +vicepremier +dà +solidarietà +picchiatori +francesi +entrati +ruspe +palazzi +istituzioni +domandi +apposta +problema +sparate +gratis +altro +populismo +costa +costa +tanto +oggi +uscito +dato +nessuno +considera +speso +miliardo +settecento +milioni +€ +maggiori +interessi +costo +spread +ogni +volta +salvini +fa +diretta +facebook +ogni +volta +maio +rincorre +ogni +volta +toninelli +idea +geniale +italiani +pagano +salvini +maio +tagliano +costi +politica +vero +costo +politica +miliardo +settecento +milioni +euro +biglietti +economy +vitalizi +vogliono +raggiungere +cifra +tutte +volte +leggete +sparata +maio +salvini +pensate +folclore +danno +populismo +costa +pagare +prima +italiani +invenzioni +firenze +calcio +giocare +palla +piedi +calcio +storico +storia +firenze +soltanto +modo +svagarsi +divertirsi +strada +affermare +identità +città +attesa +vincere +prossimo +scudetto +consoliamoci +passato +😉 +leggo +tweet +voglio +dirvi +grazie +firenzesecondome +messi +testa +camminare +cuore +cultura +passo +dopo +passo +puntata +dopo +puntata +sorpresi +riconoscere +valore +bellezza +tuffato +avventura +sembrava +doveroso +affascinante +dire +grazie +firenze +altro +adesso +finita +voglio +dire +grazie +grazie +creduto +lasciato +accompagnare +sognato +insieme +me +cammino +messo +vado +letto +felice +aver +realizzato +sogno +anni +firenze +oggi +conosciuto +città +stelle +quindi +desideri +aiuterà +tornare +sognare +buona +notte +amici +davvero +orgoglioso +ciò +insieme +fatto +ultima +puntata +firenzesecondome +vede +decoder +sky +trova +video +anticipazione +leonardo +bruni +sconosciuto +massime +figure +umanesimo +altro +fiorentino +metà +utilizza +parole +corso +secoli +usate +molto +libertà +uguaglianza +giustizia +vicesindaco +trieste +vanta +social +aver +buttato +via +coperta +senza +tetto +gesto +indegno +vicesindaco +città +ricca +valori +cultura +trieste +gesto +vigliacco +cerca +visibilità +dimentica +umanità +vergogna +assoluta +oggi +ultima +puntata +firenzesecondome +racconteremo +tante +curiosità +cominciare +rapporto +stelle +firenze +dante +galileo +periferie +ruolo +ordini +mendicanti +santa +croce +altro +orsanmichele +sapevate +esempio +calcio +giocare +palla +piedi +nato +proprio +firenze +piccola +anticipazione +racconto +assedio +altre +puntate +visibili +ancora +qualche +giorno +dplay +resto +vediamo +stasera +enorme +grazie +centinaia +migliaia +persone +seguito +camminata +cuore +firenze +voglio +fare +nessuna +polemica +nessuna +quando +vedi +foto +dispiace +roma +italia +puoi +cercare +cambiare +discorso +parlare +resto +pensioni +migrazione +quota +capitale +italia +stato +ferita +inaccettabile +roma +merita +scandalo +arriva +sera +provi +fare +punto +successo +politica +italiana +niente +ormai +avviene +mesi +elenco +provvedimenti +approvati +riforme +progettate +no +solo +lista +attacchi +salvini +ormai +cifra +nuova +politica +italiana +elenco +nemici +ministro +altro +interno +risolve +problemi +provoca +fa +polemica +giorni +allora +oggi +troviamo +minaccia +ong +insulto +malta +attacco +pd +immigrazione +classico +strumentalizzazione +mattarella +ironia +persone +mezzo +mare +scappano +fame +quotidiana +presa +giro +altro +oggi +repubblica +torna +comitati +civici +ritorno +futuro +comitati +azione +civile +voglia +combattere +governo +cialtroni +senza +entrare +dinamiche +interne +partiti +altro +correnti +voglia +dare +mano +verità +fake +news +scienza +apprendisti +stregoni +lavoro +assistenzialismo +ambiente +attacca +accordi +parigi +comitati +civici +strumento +semplicità +allegria +proposte +concrete +astenersi +rancorosi +vogliamo +solo +fare +politica +coraggio +determinazione +maggioranza +eterna +governo +può +bucarsi +improvviso +palloncino +troppo +pieno +aria +leggete +articolo +tempo +firenze +secondo +me +domani +sera +ore +canale +ultima +puntata +entra +santa +croce +fuori +calcio +storico +dentro +meraviglia +arte +ricordo +alluvione +storia +incredibile +angeli +fango +dopo +costi +politica +proseguiamo +posizioni +impopolari +fatturazione +elettronica +felice +fatto +fatturazione +elettronica +diventando +sempre +realtà +italia +nata +proposta +leopolda +ernesto +maria +ruffini +attuata +sotto +governo +oggi +viene +estesa +privati +molte +altro +polemiche +moltissime +sicuramente +potrà +dovrà +migliorarne +attuazione +idea +utilizzare +digitalizzazione +contrastare +evasione +vincente +già +stata +dichiarazione +precompilata +canone +bolletta +proprio +canone +simbolo +paga +paga +meno +naturalmente +contrario +altro +oggi +sovrintendente +pompei +massimo +osanna +lascia +servizio +guida +polo +culturale +importanti +mondo +fa +inaugurando +restauro +schola +armaturarum +anni +altro +notizia +crolli +oggi +fa +notizia +record +visitatori +quasi +milioni +praticamente +raddoppiati +pompei +classica +storia +negativa +ogni +volta +finiva +giornali +mondo +crollo +meno +lustro +rivoluzione +creduto +tanto +sapete +penso +bellezza +salvi +mondo +credo +cultura +grande +sfida +politica +oggi +senza +massimo +osanna +ottenuto +risultati +anni +altro +umberto +contarello +sceneggiatore +scritto +alcuni +film +belli +ultimi +anni +altri +grande +bellezza +premio +oscar +paolo +sorrentino +ieri +rivolto +lettera +aperta +molto +bella +foglio +stamani +risposto +parole +voglio +condividere +grazie +caro +umberto +contarello +grazie +altro +pensiero +grazie +auguri +grazie +caro” +inizi +lettera +ieri +foglio +saper +giocare +parole +utilizzarle +raccontare +emozionare +ispirare +privilegio +pochi +talento +regalo +condividendo +pensieri +quando +riesci +coniare +espressioni +altro +sabato +prossimo +canale +andrà +onda +quarta +ultima +puntata +firenzesecondome +entriamo +bargello +luogo +torture +supplizi +luogo +firenze +abolisce +pena +morte +prima +mondo +intervista +oggi +partendo +firenzesecondome +parlando +politica +molto +altro +buongiorno +belli +commenti +decisione +direttore +uffizi +schmidt +chiedere +indietro +quadri +rubati +nazisti +grazie +proposito +uffizi +sapete +qual +capolavoro +galleria +altro +secondo +me +quadro +opera +arte +scelta +donna +donna +importante +storia +firenze +oggi +federico +fubini +corriere +intervista +walter +ricciardi +presidente +istituto +superiore +sanità +dimesso +lasciando +poltrona +condivide +approccio +antiscientifico +governo +altro +massima +reazione +ministro +sanità +stata +imbarazzato +silenzio +dubbio +attaccato +pd +pandoro +entrambi +senz +anima” +giuro +attesa +giudizio +panettone +possiamo +ricordare +grillo +ministro +rinviato +obbligo +vaccinale +governo +improvvisato +cialtrone +tecnici +competenti +paura +danno +fastidio +poi +domandi +vanno +oggi +usciti +dati +istat +fiducia +aziende +minimo +anni +intervenendo +aula +detto +fiducia +senato +state +perdendo +fiducia +crea +posti +lavoro +temo +proprio +anno +difficile +economia +italiana +quel +certo +adesso +chiaro +italiani +altro +voluto +legge +bilancio +no +adesso +vedremo +risultati +tempo +davvero +galantuomo +spero +sbagliarmi +credo +strategia +italia +tornerà +recessione +purtroppo +dati +oggi +solo +antipasto +dirà +ragione +inizia +giusta +richiesta +direttore +uffizi +chiesto +restituirci +alcune +opere +rubate +nazisti +modo +particolare +vaso +fiori” +me +sembra +iniziativa +altro +sacrosanta +bravo +direttore +qualcuno +oggi +ironizza +quotidiani +direttore +uffizi +eike +schmidt +tedesco +prima +poi +capiranno +linguaggio +cultura +universale +parla +mondo +indipendentemente +passaporto +tasca +auguri +buon +anno +profondo +cuore +altezza +sogni +colpito +frase +filosofo +francese +bernard +henri +levy +stampa +fare +auguri +innanzitutto +esprimo +augurio +possibile +formularne +sembra +molti +contemporanei +deciso +unire +forze +altro +fomentatori +desideri +cospiratori +speranza +sperimentatori +futuro +sembra +preso +odio +oggi +ogni +futuro +ogni +progetto +ogni +temporalità +ogni +intensità +me +sembra +ragionamento +bellissimo +odio +rabbia +temono +futuro +dipingono +luogo +macabro +no +abbandoniamo +odio +rabbia +vogliamo +fomentare +desideri +cospirare +speranza +sperimentare +futuro +esattamente +auguro +auguro diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/salvini_comuni.html b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_comuni.html new file mode 100644 index 0000000..a137de6 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/salvini_counter b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_counter new file mode 100644 index 0000000..3a9d58c --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_counter @@ -0,0 +1 @@ +{"accolta": 2, "tiv\u00f9": 6, "onori": 2, "spese": 3, "italiani": 84, "dovrebbe": 3, "stare": 5, "galera": 14, "roba": 14, "matti": 15, "lasciamo": 1, "tedesca": 2, "speronatrice": 1, "navi": 8, "militari": 6, "sinistra": 54, "governo": 99, "clandestino": 2, "italia": 113, "oriana": 1, "molliamo": 5, "iostoconoriana": 1, "serata": 32, "magica": 2, "fiorenzuola": 7, "provincia": 5, "piacenza": 8, "tantissimi": 18, "emiliani": 13, "voglia": 17, "cambiare": 5, "molla": 13, "centimetro": 4, "buonanotte": 23, "amici": 192, "giusto": 4, "tenere": 2, "atti": 1, "serie": 1, "mondo": 14, "contrario": 3, "pubblica": 5, "pagata": 1, "andata": 1, "onda": 5, "infischiata": 1, "leggi": 4, "altro": 127, "speronato": 1, "motovedetta": 1, "guardia": 2, "finanza": 1, "rischiando": 1, "ammazzare": 1, "occupanti": 1, "messaggio": 6, "bella": 18, "deve": 10, "accogliere": 2, "profughi": 5, "migranti": 2, "economici": 1, "climatici": 1, "africa": 2, "sconvolgimenti": 1, "ambientali": 1, "colpa": 10, "amen": 3, "\ud83d\ude44": 1, "\ud83d\udd34al": 1, "senato": 17, "bloccata": 1, "legge": 16, "telecamere": 4, "asili": 3, "case": 8, "riposo": 3, "fortemente": 1, "voluta": 1, "lega": 95, "ora": 71, "parla": 3, "problemi": 7, "privacy": 1, "date": 5, "mossa": 2, "bambini": 10, "anziani": 6, "persone": 16, "fragili": 1, "richiedono": 1, "tutta": 30, "tutela": 4, "possibile": 8, "evitare": 5, "alcuni": 6, "orrori": 1, "purtroppo": 9, "troppo": 4, "spesso": 3, "turbano": 1, "cronache": 1, "aderito": 1, "petizione": 1, "quotidiano": 1, "tempo": 14, "dare": 16, "sveglia": 1, "questione": 1, "schieramento": 1, "politico": 5, "solo": 40, "buonsenso": 8, "potete": 2, "scrivere": 2, "email": 1, "aderire": 1, "iltempo": 1, "it": 28, "carolanti": 1, "poco": 33, "lucia": 26, "borgonzoni": 20, "diretta": 242, "giletti": 9, "la7": 11, "26gennaiovotolega": 46, "borgonzonipresidente": 30, "tanto": 6, "affetto": 9, "tante": 6, "idee": 10, "tanta": 6, "cambiamento": 5, "oggi": 60, "rimini": 18, "gennaio": 22, "scriveremo": 2, "insieme": 39, "pagina": 10, "storia": 30, "stupenda\ud83d\ude0a": 1, "rete": 22, "grazie": 64, "\u2764\ufe0f": 13, "carlino": 1, "uscito": 1, "sondaggio": 1, "d\u00e0": 4, "vantaggio": 1, "oltre": 6, "punti": 3, "fido": 1, "sondaggi": 8, "contano": 3, "me": 60, "cercheremo": 1, "meritarci": 1, "possiamo": 7, "emilia": 54, "romagna": 47, "dopo": 38, "anni": 44, "poi": 30, "cambiamo": 2, "meno": 17, "giorni": 10, "ogni": 14, "voto": 18, "conta": 3, "state": 85, "saluto": 32, "arda": 3, "tanti": 18, "disagi": 3, "causa": 3, "maltempo": 7, "esaurito": 1, "riescono": 2, "entrare": 6, "arrivando": 4, "\ud83d\udd34altri": 1, "presunti": 1, "sbarcati": 2, "messina": 2, "solita": 2, "nave": 9, "ong": 15, "porti": 28, "aperti": 11, "significano": 1, "partenze": 2, "sbarchi": 35, "morti": 9, "droga": 4, "armi": 2, "mani": 7, "scafisti": 6, "trafficanti": 3, "ottimo": 1, "risultato": 4, "conte": 23, "lamorgese": 1, "vergogna": 7, "sorrisi": 6, "abbracci": 2, "mattina": 36, "congresso": 5, "nazionale": 12, "federanziani": 4, "vuole": 23, "male": 12, "avanti": 34, "spara": 3, "salvini\u201d": 1, "ecco": 52, "frutti": 1, "odio": 11, "certa": 4, "testa": 15, "alta": 6, "senza": 11, "paura": 11, "crollato": 1, "viadotto": 1, "autostradale": 1, "vicino": 8, "savona": 1, "immagini": 4, "terrificanti": 1, "sembra": 5, "fatto": 11, "nessuno": 9, "gi\u00e0": 14, "miracolo": 1, "abbraccio": 8, "colpiti": 3, "disastrose": 1, "conseguenze": 2, "vigili": 9, "fuoco": 9, "forze": 19, "ordine": 22, "protezione": 5, "civile": 3, "volontari": 2, "coloro": 1, "ore": 11, "rischiano": 4, "vita": 22, "salvare": 8, "altri": 16, "ancora": 34, "pensiero": 8, "ricordate": 2, "prete": 3, "toscano": 1, "vorrebbe": 7, "portare": 2, "concertino": 2, "sardinante": 1, "ciao": 5, "messa": 3, "po": 18, "vedremo": 1, "sanremo": 2, "\ud83d\ude00": 2, "\ud83d\ude0b\ud83d\udc1f": 1, "\ud83d\udd1d": 2, "accoglienza": 12, "stupenda": 6, "energia": 4, "vecchi\u201d": 1, "quei": 3, "poveretti": 2, "5stelle": 17, "grillo": 6, "vorrebbero": 4, "togliere": 6, "diritto": 14, "sempre": 72, "senior": 1, "invito": 5, "splendida": 33, "cosmosenior": 1, "nonne": 2, "nonni": 3, "\ud83d\ude0a": 78, "domenica": 36, "fa": 44, "enormi": 2, "forti": 2, "piogge": 1, "speriamo": 3, "diano": 1, "tregua": 1, "altra": 8, "straniera": 1, "sbarco": 5, "regalo": 1, "appena": 4, "torniamo": 2, "tornano": 4, "valere": 1, "regole": 6, "controlli": 3, "seriet\u00e0": 1, "portichiusi": 5, "buona": 48, "vediamo": 17, "convegno": 2, "quali": 1, "quel": 4, "genio": 2, "inaugurazione": 3, "sede": 4, "riminese": 1, "direzione": 4, "convinto": 3, "impegniamo": 3, "casa": 39, "guardate": 8, "saluta": 1, "\ud83d\ude00\ud83d\ude00\ud83d\ude00": 2, "ben": 1, "alzati": 1, "gattiniconsalvini": 17, "sorriso": 12, "arma": 2, "migliore": 3, "\u263a\ufe0f\u263a\ufe0f\u263a\ufe0f": 2, "onore": 16, "carabinieri": 4, "orgoglio": 6, "grandissimo": 1, "signora": 5, "luciana": 1, "bel": 4, "biglietto": 4, "visita": 2, "offerto": 1, "milano": 33, "pd": 52, "niente": 9, "dire": 12, "k": 1, "\ud83d\udd34se": 1, "opera": 2, "arte": 4, "ridere": 3, "nemmeno": 2, "cazzo": 1, "pu\u00f2": 12, "consentite": 1, "certe": 2, "cose": 6, "scherza": 1, "ammazza": 3, "compagna": 1, "coltellate": 1, "aspettava": 1, "bambino": 2, "parola": 6, "bastardo": 1, "pena": 8, "eccitato": 1, "fazio": 1, "piacere": 4, "onore\u201d": 1, "ospitare": 2, "signorina": 1, "carola": 3, "nota": 1, "bene": 23, "speronate": 1, "italiane": 7, "fatevi": 3, "nessun": 8, "perugia": 23, "presidente": 13, "umbria": 37, "donatellla": 1, "tesei": 6, "nuova": 7, "giunta": 1, "consiglieri": 2, "regionali": 3, "incantevole": 3, "vista": 4, "alto": 4, "prima": 36, "soprattutto": 3, "donatella": 5, "squadra": 3, "amministrer\u00e0": 1, "regione": 13, "scelto": 2, "modello": 2, "buongoverno": 2, "quasi": 16, "mila": 3, "euro": 9, "spesi": 1, "murales": 1, "pro": 2, "immigrazione": 11, "priorit\u00e0": 4, "smentiscono": 1, "mai": 19, "salvini": 22, "immigrati": 20, "no": 15, "schifezza": 2, "sinistrato": 1, "intanto": 6, "raggi": 5, "zingaretti": 6, "litigano": 5, "roma": 37, "sommersa": 1, "rifiuti": 5, "maio": 13, "neanche": 4, "scappare": 9, "aziende": 6, "approva": 1, "trattati": 1, "silenzio": 4, "renzi": 25, "calenda": 1, "fondano": 1, "partiti": 1, "lavoriamo": 2, "buon": 40, "sabato": 10, "amici\ud83d\ude0a": 2, "merenda": 1, "dietetica": 1, "pomeriggio": 17, "\ud83d\udd34": 18, "vergognosa": 2, "finta": 3, "raccolta": 3, "differenziata": 2, "mentre": 15, "duo": 1, "sciagura": 1, "continuano": 3, "litigare": 4, "continua": 4, "essere": 35, "seppellita": 1, "immondizia": 1, "scandalosa": 1, "complicit\u00e0": 3, "gestisce": 2, "pronta": 6, "mandare": 5, "incapaci": 12, "gioved\u00ec": 9, "novembre": 6, "teatro": 1, "inizia": 1, "conto": 12, "rovescia": 1, "restituire": 2, "pulizia": 1, "sicurezza": 39, "dignit\u00e0": 7, "capitale": 5, "raggidimettiti": 12, "\ud83d\udd34facciamo": 1, "girare": 6, "cos": 2, "trattato": 1, "europeo": 3, "rischia": 1, "saltare": 1, "risparmi": 6, "banca": 4, "folle": 7, "vorrei": 2, "svenduto": 2, "sovranit\u00e0": 4, "tenersi": 1, "poltrona": 9, "cos\u00ec": 10, "tradimento": 7, "pace": 4, "guerra": 4, "reato": 2, "punibile": 1, "aspetto": 16, "verso": 21, "citt\u00e0": 6, "neo": 2, "governatrice": 3, "zona": 3, "venite": 1, "trovarci": 1, "cosa": 28, "farsi": 1, "pubblicit\u00e0": 2, "squallore": 1, "scultura\u201d": 1, "raffigura": 1, "sparo": 1, "vera": 4, "istigazione": 1, "violenza": 5, "vedo": 5, "tornare": 11, "napoli": 15, "ammirare": 1, "fantastici": 3, "presepi": 1, "tradizionali": 1, "porcherie": 1, "votateci": 1, "beneficenza": 2, "destra": 2, "pericolosetta": 1, "\u201d": 7, "voleva": 4, "cancellare": 6, "elezioni": 15, "ormai": 9, "poveretto": 1, "andate": 3, "leggervi": 1, "commenti": 7, "ex": 11, "elettori": 3, "risata\ud83d\ude02": 1, "effettivamente": 1, "\ud83d\ude38": 6, "buongiorno": 18, "gattini": 4, "gattoboy": 1, "ammazzato": 1, "ragazzo": 5, "complici": 3, "schifo": 4, "giustizia": 11, "marco": 6, "vannini": 1, "quarto": 1, "grado": 2, "meraviglia": 1, "\ud83d\ude3b\ud83d\ude3b\ud83d\ude3b": 1, "piccola": 4, "parte": 24, "migliaia": 24, "bimbi": 4, "felini": 4, "inviati": 1, "terapeutici": 2, "portano": 3, "gioia": 3, "predispongono": 1, "sonno": 1, "creare": 1, "cartello": 1, "personalizzato": 1, "mici": 3, "andando": 4, "legaonline": 21, "permetteremo": 2, "svendere": 2, "qualche": 12, "minuto": 5, "intervista": 68, "verit\u00e0\u201d": 2, "bottiglie": 3, "sassi": 2, "insulti": 4, "polizia": 15, "minacce": 5, "democratici": 5, "sembrano": 2, "nazisti": 2, "rossi": 1, "\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\ude02": 1, "stopmes": 3, "ieri": 59, "sorrento": 6, "ragazzi": 2, "riempie": 1, "giovani": 2, "avvicinano": 1, "deciso": 3, "impegnarsi": 1, "forte": 4, "giusta": 4, "libera": 4, "\ud83c\uddee\ud83c\uddf9": 80, "fiera": 13, "g": 1, "giocare": 1, "regalato": 2, "bacchetta": 1, "mezza": 1, "idea": 3, "desiderio": 1, "realizzare": 1, "\ud83d\ude09": 14, "forza": 19, "sinisa": 2, "guerriero": 2, "frutta": 1, "glielo": 2, "dice": 9, "dolcevita": 1, "velluto": 1, "piacciono": 2, "fin": 1, "\ud83e\udd23": 2, "arriva": 4, "momento": 4, "prendere": 4, "figlia": 3, "scuola": 6, "gioia\ud83d\ude0a": 1, "gi\u00f9": 5, "conti": 4, "correnti": 2, "premier": 1, "congratulazioni": 1, "affettuosi": 2, "auguri": 1, "nuovi": 4, "successi": 1, "brasile": 1, "jair": 2, "messias": 2, "bolsonaro": 3, "avventura": 1, "alian\u00e7a": 1, "pelo": 1, "brasil": 1, "\ud83c\uddee\ud83c\uddf9\ud83c\udde7\ud83c\uddf7": 2, "indovinello": 1, "sbarcheranno": 2, "centinaia": 1, "\ud83e\udd14": 2, "unomattina": 3, "sicuro": 6, "piacer\u00e0": 3, "aiutate": 1, "condividerla": 1, "tribunale": 1, "finalmente": 9, "riconosce": 2, "bloccare": 6, "autorizzati": 1, "curioso": 1, "vedere": 5, "punto": 5, "decideranno": 1, "altre": 6, "procure": 1, "volta": 10, "tornato": 1, "rifar\u00f2": 2, "esattamente": 1, "visto": 6, "paesi": 3, "qualcuno": 19, "manifesta": 2, "opposizione": 2, "temendo": 1, "vada": 2, "comunque": 6, "nuovo": 14, "sport": 1, "inseguire": 1, "pronto": 8, "prossimi": 2, "appuntamenti": 1, "domani": 17, "mattino": 1, "edicola": 1, "lunga": 13, "spero": 11, "interessante": 4, "parlo": 2, "molto": 9, "festival": 2, "lavoro": 40, "seguitemi": 64, "seguito": 5, "rai": 37, "pare": 5, "stato": 25, "chiaro": 12, "mes": 8, "tasse": 49, "controllo": 3, "minoranza": 2, "danni": 7, "paese": 30, "meglio": 8, "gi\u00fa": 1, "natale": 3, "appello": 1, "genitori": 1, "insegnanti": 1, "lasciate": 1, "libert\u00e0": 12, "iniziative": 1, "celebrano": 1, "festa": 13, "bimbo": 1, "italiano": 12, "straniero": 2, "offende": 1, "davanti": 9, "presepe": 1, "bisogno": 2, "valori": 2, "sperando": 1, "riuscire": 1, "voce": 6, "occhi": 1, "gemelli": 1, "incontrati": 1, "sorrento\ud83d\ude0a": 1, "giornata": 17, "dolce": 2, "limone": 1, "positano": 5, "riduce": 1, "ciarlatano": 1, "accendere": 1, "micio": 1, "birbantello": 1, "\ud83d\ude39": 1, "arrivati": 1, "circa": 2, "10mila": 2, "foto": 5, "ricevute": 1, "marea": 4, "cani": 1, "cagnolini": 2, "organizzando": 1, "vedrete": 2, "grande": 19, "vittoria": 2, "insistito": 1, "fine": 10, "raggiunto": 1, "imu": 1, "immobili": 1, "terremotati": 1, "inagibili": 1, "accordi": 2, "innominabili": 1, "insaputa": 1, "popolo": 18, "tocchi": 1, "secondo": 4, "adesso": 12, "pericolo": 3, "sigarette": 2, "elettroniche": 2, "svapa": 1, "passa": 3, "leggete": 1, "burocrazia": 6, "uffici": 1, "esercitano": 1, "fuori": 6, "umiliante": 1, "brutale": 1, "mano": 12, "procedura\u201d": 1, "spazio": 1, "briciolo": 1, "umanit\u00e0": 2, "compassione": 2, "mente": 3, "collegamento": 5, "magnifica": 3, "pioggia": 5, "aver": 17, "accolto": 2, "proprio": 8, "sindaco": 11, "famiglia": 6, "bellezza": 3, "dicembre": 1, "fiandre": 1, "anversa": 1, "prepara": 1, "mezzi": 3, "propriamente": 1, "pacifici": 1, "vantando": 1, "vasta": 1, "esperienza": 1, "campo": 4, "voluto": 1, "dibattito": 3, "democratico": 3, "servirebbe": 1, "terapia": 1, "calmante": 1, "tavola": 2, "pranzo": 15, "\u26a0": 3, "fiscale": 7, "riaperto": 2, "inventato": 1, "plastica": 9, "zucchero": 4, "pure": 6, "corrente": 2, "follia": 8, "fermare": 3, "nooooo": 1, "miagolii": 1, "delusione": 1, "poca": 1, "pappa": 1, "\ud83d\ude3f\ud83d\ude18": 1, "moscovici": 1, "salverebbe": 1, "banche": 3, "s\u00ec": 5, "francesi": 2, "tedesche": 2, "metterebbe": 1, "infatti": 2, "crisi": 2, "pagare": 8, "abi": 1, "governatore": 4, "bankitalia": 1, "preoccupati": 1, "capito": 4, "rischiamo": 1, "bis": 4, "disastro": 5, "bail": 1, "anzi": 2, "cento": 3, "volte": 5, "peggio": 3, "attacco": 1, "democrazia": 6, "risparmio": 1, "passare": 1, "opporr\u00e0": 2, "maniera": 1, "giuseppe": 2, "cuomo": 1, "michele": 1, "entrano": 2, "benvenuti": 1, "riesci": 1, "multa": 2, "pignorarti": 1, "unione": 2, "sovietica": 2, "pericolosi": 11, "piace": 4, "sacco": 1, "cantante": 1, "voglio": 15, "fiorella": 1, "venezia": 13, "veneto": 7, "meritano": 3, "rispetto": 8, "vicinanza": 3, "trotta": 2, "cavallino": 1, "trotto": 1, "\u2600\ufe0f": 5, "campania": 5, "pelosetti": 1, "micetti": 2, "\ud83d\udc31\u2764\ufe0f\ud83c\uddee\ud83c\uddf9": 1, "accidenti": 1, "luoghi": 1, "stupendi": 1, "intera": 2, "benvenuto": 2, "sindaci": 8, "primagliitaliani": 11, "bravissima": 2, "orgoglioso": 10, "donne": 16, "detto": 21, "tria": 1, "mandato": 2, "toccare": 1, "agito": 2, "tradendo": 1, "costa": 3, "caro": 3, "avvocato": 6, "verit\u00e0": 5, "verr\u00e0": 2, "amare": 2, "\ud83d\ude3b": 1, "decine": 7, "pubblicati": 1, "ovunque": 2, "viva": 27, "sorridere": 1, "bruno": 6, "vespa": 7, "prendiamo": 1, "sprangate": 2, "arcate": 2, "gengivali\u201d": 1, "democratica": 2, "partecipazione": 3, "pensa": 4, "trovo": 3, "dovremmo": 1, "presi": 1, "gengivali": 1, "semina": 2, "potrebbero": 1, "certi": 3, "violenti": 2, "signor": 3, "bugiardo": 1, "smemorato": 1, "onesto": 1, "direbbe": 1, "tavoli": 1, "pubblico": 5, "difficile": 2, "ammettere": 1, "resto": 4, "necessario": 1, "numerose": 1, "dichiarazioni": 2, "testimoniano": 1, "contrariet\u00e0": 1, "espressa": 1, "componenti": 1, "ministri": 6, "compresi": 1, "argomento": 1, "teme": 2, "consiglio": 4, "forse": 2, "sportivo": 1, "vero": 3, "uomo": 2, "chiacchierata": 1, "mario": 16, "giordano": 17, "\ud83d\udd34vogliamo": 1, "limitare": 1, "imbarazzante": 2, "basta": 7, "piangere": 1, "poliziotti": 3, "trieste": 3, "bisogna": 5, "mettere": 6, "quattrini": 1, "intelligenza": 1, "pregiudiziali": 1, "proposte": 10, "tagliando": 3, "tagli": 3, "triste": 1, "ci\u00f2": 1, "avvenga": 1, "attuale": 1, "ministro": 17, "interno": 11, "frizzantella": 1, "puntata": 5, "sera": 65, "cinema": 1, "pop": 2, "corn": 2, "panini": 1, "sardine": 4, "miao": 2, "ve": 5, "ripropongo": 26, "camera": 9, "presentare": 2, "parlamentari": 4, "difesa": 12, "soccorso": 1, "sovranisti": 2, "virus": 1, "bada": 1, "parlamento": 9, "appartiene": 2, "libero": 6, "esercizio": 1, "sperimentato": 2, "vedranno": 1, "calabria": 4, "piaciuti": 1, "amarli": 1, "caff\u00e8": 1, "spremuta": 1, "cominciare": 1, "guarigione": 1, "mir\u00f2": 1, "inviato": 2, "spettacolari": 2, "pubblicheremo": 1, "intelligenti": 1, "puliti": 1, "liberi": 4, "bene\u263a\ufe0f": 1, "mezzanotte": 1, "fare": 26, "\u263a\ufe0f": 8, "seguendo": 2, "ringrazio": 5, "mando": 1, "finita": 3, "nottambuli": 2, "cartabianca": 3, "ufficiali": 1, "mostrati": 1, "danno": 2, "vincente": 2, "stesso": 1, "valore": 2, "davano": 1, "candidato": 6, "stelle": 5, "candidata": 2, "prevalso": 1, "soli": 9, "venti": 1, "cavallo": 2, "dimenticato": 1, "compagni": 2, "partito": 5, "sentire": 4, "twitter": 1, "hashtag": 2, "riuscite": 1, "svegli": 1, "raccomando": 1, "trovate": 1, "mettono": 5, "carbonara": 1, "vado": 10, "bello": 5, "pesciolini": 1, "mettete": 2, "invecchiando": 2, "diventa": 2, "saggio": 1, "vauro": 2, "chef": 2, "rubio": 2, "travestito": 1, "\ud83d\ude02": 2, "liberiamo": 7, "https": 11, "www": 10, "facebook": 10, "com": 8, "cartabiancarai3": 1, "photos": 1, "terni": 13, "festeggiare": 1, "storica": 4, "liberazione": 2, "consigliere": 1, "comunale": 2, "lascia": 1, "entra": 6, "subito": 5, "modifica": 1, "rovina": 1, "milioni": 14, "volante": 2, "porro": 9, "pazienza": 5, "serve": 5, "grillini": 1, "pensassero": 1, "figuracce": 1, "ius": 7, "ilva": 9, "\ud83d\ude07": 2, "dimenticare": 3, "scommetto": 2, "giornale": 1, "telegiornale": 1, "ricorder\u00e0": 1, "manifestanti": 1, "comunisti": 2, "ammazzarono": 1, "antonio": 3, "annarumma": 1, "poliziotto": 1, "penetrata": 1, "tubolare": 1, "acciaio": 3, "l\u00ec": 3, "cominciarono": 1, "piombo": 1, "stagione": 2, "sbirri": 1, "insultati": 1, "attaccati": 1, "cortei": 1, "figli": 5, "pap\u00e0": 4, "attaccano": 3, "rafforzano": 1, "mollo": 13, "sindacato": 3, "autonomo": 3, "sap": 2, "semplice": 3, "cittadino": 2, "mare": 7, "inverno": 1, "saluti": 2, "marted\u00ec": 2, "felice": 13, "partecipare": 3, "alcune": 1, "belle": 2, "novit\u00e0": 2, "riguardano": 1, "tengo": 2, "aggiornato": 1, "indagine": 1, "processo": 4, "difeso": 4, "confini": 10, "medaglia": 1, "rifarei": 4, "procura": 1, "agrigento": 1, "gravi": 2, "occuparsi": 3, "ama": 4, "tempi": 2, "governanti": 1, "anti": 4, "scontata": 1, "luca": 8, "toni": 1, "bomber": 1, "auguro": 5, "notte": 8, "serena": 3, "nicola": 3, "manovra": 3, "economica": 4, "accorti": 1, "per\u00f2": 3, "ritrova": 1, "bologna": 28, "parlare": 4, "vive": 5, "marte": 1, "giochetto": 1, "gratta": 1, "sardina": 2, "trovi": 2, "piddina": 1, "democratica\u201d": 1, "assessore": 3, "comune": 2, "delinquenti": 4, "prestati": 1, "politica\u201d": 1, "insultano": 1, "vinciamo": 1, "novi": 3, "modena": 15, "aperto": 2, "porte": 4, "casetta": 1, "legno": 1, "vivono": 1, "terremoto": 2, "vecchia": 1, "parler\u00e0": 1, "efficienza": 2, "velocit\u00e0": 1, "vot\u00f2": 1, "sospetti": 1, "crimine": 2, "confronti": 1, "lavoratori": 7, "risparmiatori": 1, "accordato": 1, "oscuro": 1, "fondo": 6, "stati": 8, "ponga": 1, "rimedio": 1, "tardi": 3, "altrimenti": 3, "zuccheri": 1, "minerbio": 5, "unico": 4, "zuccherificio": 2, "compra": 3, "sano": 1, "amore": 5, "tricolore": 1, "azienda": 4, "agricola": 2, "valentina": 1, "adoro": 2, "funghi": 1, "\ud83d\ude0b": 3, "avviso": 1, "noiussoli": 3, "cittadinanza": 4, "regala": 1, "modi": 1, "garantisco": 4, "realt\u00e0": 4, "m5s": 1, "soffocare": 1, "sgarbi": 1, "usare": 2, "contante": 2, "severo": 2, "sinistri": 2, "invece": 8, "solito": 1, "vizietto": 1, "chiesti": 1, "uccise": 1, "rapinatori": 1, "fer\u00ec": 1, "terzo": 2, "aggredito": 2, "minacciato": 3, "moglie": 2, "pistola": 2, "risultata": 1, "giustizia\u201d": 1, "italiana": 12, "chiede": 3, "condanna": 1, "commerciante": 1, "siciliano": 1, "iostoconguido": 1, "almeno": 1, "reazioni": 2, "condanne": 1, "indignati": 1, "professione": 2, "oppure": 1, "vengono": 3, "minacciose": 1, "profilo": 1, "invoca": 1, "omicidio": 2, "inspiegabilmente": 1, "scomparso": 1, "gratti": 1, "sardino": 1, "piddino": 1, "protesta": 3, "differenza": 3, "distrugge": 3, "costruisce": 2, "incontrare": 3, "resistono": 2, "calamit\u00e0": 2, "naturali": 1, "fiscali": 2, "bo": 1, "mo": 8, "carpi": 8, "democratiche": 1, "spargono": 1, "appendermi": 1, "bont\u00e0": 1, "dico": 3, "piovono": 1, "nonostante": 3, "settimana": 28, "luned\u00ec": 4, "minuti": 6, "live": 14, "farsa": 1, "invasione": 1, "superando": 1, "limite": 2, "premio": 3, "luna": 2, "park": 2, "meritata": 1, "desiderata": 2, "conquistata": 1, "democratiche\u201d": 1, "piazza": 42, "invocava": 1, "giustiziere": 1, "raffigurava": 1, "indignate": 1, "giornalisti": 2, "politici": 2, "merluzzi": 1, "vere\ud83d\ude09": 1, "detestati": 1, "maggioranza": 3, "millimetro": 3, "succedendo": 1, "connazionali": 2, "difficolt\u00e0": 2, "nord": 2, "sud": 2, "gravissimi": 1, "prefetture": 1, "impegnati": 1, "impedire": 2, "peggiori": 1, "visite": 1, "programmate": 1, "quando": 11, "fiumi": 1, "esondano": 1, "distinzione": 1, "colore": 1, "uniti": 1, "sostenere": 4, "aiutare": 4, "abitazioni": 1, "attivit\u00e0": 2, "ricordo": 5, "splendide": 2, "emozioni": 5, "paladozza": 34, "protagonista": 1, "speranza": 2, "\ud83d\udd34che": 1, "disgustoso": 1, "presunto": 1, "intellettuale\u201d": 1, "cultura\u201d": 1, "municipio": 1, "vergogni": 1, "chieda": 1, "scusa": 3, "tutte": 14, "sostiene": 2, "candida": 1, "brave": 1, "preghiamo": 2, "signore": 4, "ritrovi": 1, "equilibrio": 1, "serenit\u00e0": 2, "pensare": 4, "vari": 1, "insultato": 1, "deriso": 1, "dicevo": 1, "scappano": 2, "nessuna": 4, "viene": 4, "galla": 2, "pronti": 16, "battaglia": 7, "dentro": 2, "cambino": 1, "decreti": 8, "governoclandestino": 1, "risolvere": 2, "imprese": 8, "avvocati": 3, "giro": 8, "tribunali": 1, "vuol": 4, "pericolose": 1, "lasciare": 3, "pessima": 1, "duce": 1, "ossessionati": 1, "testarda": 1, "combattere": 3, "colora": 1, "capelli": 1, "blu": 1, "perfetto": 1, "bellissimo": 2, "\u201d\ud83d\ude01": 1, "abbracciato": 2, "cultura": 3, "permissivismo": 1, "spacciatori": 4, "meritevoli": 1, "maggior": 1, "ragione": 3, "nordafricani": 2, "dimenticando": 1, "vecchio": 1, "situazioni": 2, "degrado\u201d": 1, "studio": 4, "\ud83d\udd34guerriglia": 1, "urbana": 3, "duomo": 7, "bande": 2, "colpi": 2, "bottigliate": 1, "sediate": 1, "sotto": 5, "sguardo": 1, "terrorizzato": 1, "passanti": 1, "punizioni": 1, "esemplari": 1, "caso": 6, "figlio": 2, "buonismo": 1, "politica": 7, "aperti\u201d": 2, "clandestini": 11, "torto": 1, "perbene": 3, "lavorano": 2, "mandano": 1, "rispettano": 2, "tassa": 11, "inventeranno": 1, "stanotte": 2, "buonasera": 12, "collego": 2, "tappare": 1, "bocca": 1, "pensano": 6, "schiena": 1, "dritta": 1, "giornate": 3, "piene": 1, "rabbia": 1, "gente": 8, "baci": 2, "umana": 2, "piet\u00e0": 1, "risposta": 4, "odiare": 3, "posso": 4, "augurarvi": 1, "emozionato": 2, "rivedermi": 1, "ricompensa": 1, "banale": 1, "romagnoli": 13, "sento": 4, "dirvelo": 1, "sappiate": 1, "risparmier\u00f2": 1, "rancore": 2, "odia": 3, "sorride": 1, "sogna": 1, "volantini": 1, "titolo": 1, "impiccato\u201d": 1, "capovolta": 1, "distribuiti": 1, "bravi": 1, "ragazzi\u201d": 1, "violenta": 1, "unica": 3, "nemici": 2, "dimettetevi": 1, "chiedete": 1, "pensate": 4, "andasse": 1, "disturbare": 1, "manifestazioni": 1, "altrui": 4, "signori": 1, "odiano": 1, "vedermi": 1, "appeso": 1, "offrire": 1, "risponderemo": 1, "positiva": 1, "gratitudine": 1, "immensa": 1, "profondo": 1, "pacificamente": 1, "protestare": 1, "lancia": 1, "miliardo": 1, "miliardi": 6, "regalare": 3, "paga": 4, "spesa": 1, "carta": 4, "credito": 3, "metteremo": 1, "usa": 1, "anzich\u00e9": 3, "contanti": 1, "intero": 3, "unisca": 1, "sostegno": 8, "popoli": 2, "pellestrina": 1, "matera": 7, "altamura": 1, "perso": 3, "concrete": 1, "funzionamento": 1, "mose": 1, "contributo": 2, "straordinario": 5, "veloce": 2, "immediato": 1, "territorio": 7, "zaia": 4, "cittadini": 12, "commercianti": 1, "contatto": 2, "colpite": 2, "finire": 2, "risaputo": 1, "ignorano": 1, "deridono": 1, "vinci": 1, "emozionante": 5, "nasconde": 1, "palazzetto": 1, "strada": 4, "negate": 1, "uomini": 11, "tocca": 4, "seguiteci": 18, "ovazioni": 1, "applausi": 1, "governatori": 5, "massimiliano": 2, "fedriga": 2, "friuli": 2, "giulia": 2, "christian": 1, "solinas": 1, "sardegna": 5, "attilio": 1, "fontana": 1, "lombardia": 4, "omboni": 1, "imprenditore": 3, "settore": 3, "imballaggi": 2, "plastictax": 1, "andr\u00e0": 2, "punire": 2, "industria": 4, "riciclo": 1, "aprir\u00e0": 1, "materiali": 1, "provenienti": 1, "estremo": 1, "oriente": 1, "penalizzer\u00e0": 1, "eccellenza": 4, "professor": 1, "alessandro": 1, "amadori": 1, "intervenire": 3, "palco": 3, "emozionanti": 1, "poeta": 1, "davide": 1, "rondoni": 1, "spettacolo": 16, "fate": 11, "presenta": 1, "amico": 5, "partiamo": 1, "pochi": 3, "iniziamo": 1, "pieno": 2, "breve": 1, "comincia\ud83d\udd1d": 1, "rimanete": 5, "connessi": 1, "seguire": 2, "evento": 5, "appuntamento": 4, "pagine": 2, "instagram": 1, "youtube": 2, "\ud83d\udd34come": 1, "cos\u00ed": 3, "scemi": 3, "usiamo": 1, "social": 2, "pullman": 9, "arrivo": 3, "destinazione": 1, "\ud83d\udcaa\ud83c\udffb": 1, "viaggio": 1, "aperte": 1, "aspettiamo": 3, "aprire": 2, "\u2139": 4, "emiliaromagna": 15, "\u2709": 4, "portiamo": 2, "dietro": 1, "quinte": 1, "assicuro": 2, "grave": 2, "perdita": 1, "resistere": 1, "tizio": 1, "manca": 2, "andiamo": 8, "\ud83d\ude8c": 3, "trova": 3, "download": 3, "14nov": 3, "pdf": 3, "quota": 5, "collante": 1, "prossime": 1, "partire": 6, "lanceranno": 1, "abusivi": 2, "dato": 9, "rackete": 2, "macron": 2, "sgomberare": 1, "parigi": 5, "europei": 2, "difendono": 1, "propri": 2, "interessi": 1, "aumentano": 1, "europa": 24, "impegnata": 1, "grecia": 1, "ricollocati": 1, "ennesima": 2, "presa": 1, "raddoppiati": 2, "occhiata": 1, "numero": 2, "smontare": 1, "bugie": 4, "tassatori": 1, "abusivo": 7, "vietato": 1, "ingresso": 3, "democratici\u201d": 1, "fascisti\u201d": 2, "allestimento": 1, "altrohttps": 1, "offrirvi": 1, "cappuccino": 1, "sorpresa": 1, "dura": 2, "istante": 1, "ricordi": 1, "eterno\u201d": 1, "friedrich": 1, "schiller": 1, "adesioni": 1, "mettendo": 3, "incontro": 9, "parleremo": 1, "futuro": 13, "gratis": 1, "parma": 5, "tv": 1, "emittenti": 4, "locali": 7, "voci": 1, "autentiche": 1, "libere": 4, "territori": 1, "floris": 5, "annoiato": 2, "scriviamo": 2, "letterina": 1, "scrivereste": 1, "partecipato": 2, "consolato": 1, "israeliano": 1, "firenze": 10, "ambasciatore": 2, "dror": 1, "eydar": 1, "comunit\u00e0": 4, "ebraica": 1, "israele": 3, "baluardo": 1, "terra": 8, "martoriata": 1, "missili": 1, "lutti": 1, "fiorentina": 1, "presidio": 1, "progresso": 1, "relazione": 2, "commerciale": 1, "fondamentale": 1, "subisce": 1, "isolamento": 1, "generale": 1, "avere": 3, "permesso": 6, "soggiorno": 1, "motivi": 1, "umanitari": 2, "dimostrare": 2, "essersi": 2, "integrati": 1, "\u2705": 1, "corte": 1, "cassazione": 1, "riaprono": 2, "vogliono": 5, "magistris": 3, "povera": 2, "autore": 1, "fumetti": 1, "notevoli": 1, "idiozie": 1, "ricevere": 2, "proiettili": 2, "dediche": 1, "murarie": 1, "tipo": 2, "muori": 1, "propria": 6, "incolumit\u00e0": 2, "sapete": 2, "intimidire": 1, "sorrido": 2, "\ud83d\udd34roba": 1, "portato": 1, "scambiando": 3, "autobus": 3, "taxi": 1, "accontentato": 1, "escandescenze": 1, "distruggendo": 3, "parabrezza": 1, "badile": 1, "richiedente": 1, "asilo\u201d": 1, "mali": 1, "davvero": 8, "rispettoso": 1, "ospita": 2, "cancellazione": 1, "cattivone": 1, "cuore": 4, "zone": 1, "interventi": 1, "immediati": 2, "patrimoni": 1, "eredit\u00e0": 1, "nipoti": 1, "vanno": 9, "difesi": 1, "tutelati": 1, "costo": 1, "canale": 12, "riparte": 6, "taglia": 1, "prosegue": 2, "aiuta": 4, "famiglie": 10, "patrimonio": 2, "ignorare": 1, "provocati": 1, "utilizzi": 1, "bancomat": 1, "aggiornamenti": 2, "drammatica": 2, "situazione": 2, "seguite": 34, "compagnia": 8, "metri": 1, "acqua": 3, "tifo": 1, "sceglie": 1, "cretini": 1, "vivere": 2, "tranquilli": 3, "vinceremo": 2, "interesse": 3, "sbarca": 1, "trovato": 5, "tubercolosi": 1, "diffuse": 1, "organi": 1, "vedono": 2, "decenni\u201d": 1, "pazzesco": 4, "pericoli": 1, "drammatici": 1, "aumentare": 4, "riapre": 4, "minaccia": 1, "vadano": 2, "accendete": 1, "fatemi": 1, "esserci": 3, "riempiamo": 1, "info": 6, "soluzione": 1, "bonino": 1, "legalizzare": 1, "ideale": 2, "esseri": 2, "umani": 2, "oer": 1, "ridurre": 2, "rischiato": 2, "pur": 4, "dipendenti": 2, "costretti": 1, "scegliere": 2, "serio": 4, "tagliare": 3, "imposte": 1, "inventa": 1, "mandiamo": 2, "traditori": 4, "vergognarsi": 1, "chiedere": 1, "parenti": 1, "indegno": 2, "dirsi": 1, "futura": 1, "dicono": 6, "spocchia": 2, "romagna\u201d": 1, "diciamo": 1, "tutti\u201d": 1, "efficiente": 1, "merito": 2, "tessera": 3, "pensi": 1, "aria": 5, "esiste": 2, "sopravvive": 1, "fatica": 1, "sciocchezze": 1, "simpatico": 2, "sincero": 1, "intelligente": 2, "obiettivo": 3, "ossessionato": 1, "mah": 2, "riesco": 1, "bravo": 1, "premiare": 2, "defin\u00ec": 1, "israeliani": 1, "abominevoli": 1, "antisemitismo": 2, "ferma": 15, "perduto": 11, "strage": 2, "nassiriya": 1, "feriti": 2, "attentato": 1, "eroi": 1, "giorno": 9, "proteggere": 2, "interne": 1, "esterne": 1, "orogel": 2, "fabbriche": 2, "basilicata": 8, "valorizza": 1, "agricoltori": 6, "zucca": 2, "calore": 1, "metto": 2, "libereremo": 5, "mirta": 1, "zio": 1, "ridire": 1, "sanno": 1, "attaccarsi": 1, "zii\u201d": 1, "capiranno": 1, "semplificando": 1, "\ud83e\udd2cbibbiano": 1, "raffreddore": 1, "vergognatevi": 2, "andremo": 1, "fino": 6, "bibbiano": 2, "rubati": 1, "ripetere": 1, "insabbiare": 1, "parlando": 1, "raffreddore\u201d": 1, "emiliane": 1, "chiedono": 3, "conservare": 2, "poltrone": 9, "rinnega": 1, "battaglie": 1, "stessa": 1, "natura": 1, "accade": 1, "chiarezza": 1, "coerenza": 2, "pagano": 2, "soldi": 5, "insulta": 3, "terrorismo": 3, "islamico": 3, "abbassare": 2, "sedano": 1, "rapporto": 2, "antico\ud83d\ude09": 1, "dentifricio": 1, "coster\u00e0": 5, "mandiamoli": 3, "cesena": 2, "visitando": 1, "prodotti": 3, "surgelati": 1, "splendido": 5, "esempio": 2, "cooperativa": 1, "sana": 1, "reinveste": 1, "utili": 1, "lavorare": 2, "duemila": 1, "produce": 1, "eccellenze": 4, "tutelate": 1, "valorizzate": 1, "amica": 1, "imprenditori": 5, "farli": 2, "aiutarli": 1, "investire": 2, "qua": 3, "abbassando": 1, "riducendo": 1, "tolto": 1, "presenti": 1, "forl\u00ec": 5, "fiducioso": 1, "renziani": 1, "pagato": 1, "operatori": 1, "avicoli": 1, "forl\u00ed": 1, "forlivesi": 1, "successivo": 2, "pievesestina": 1, "scritte": 1, "muri": 1, "coraggio": 7, "moller\u00f2": 1, "bellaria": 4, "\ud83d\udd34grande": 1, "avanzata": 1, "santiago": 2, "abascal": 3, "vox": 4, "espa\u00f1a": 2, "spagnole": 2, "titoli": 1, "tigg\u00ec": 1, "giornali": 3, "estrema": 1, "razzisti": 3, "fascisti": 2, "macch\u00e9": 1, "razzismo": 6, "fascismo": 3, "spagna": 2, "vogliamo": 3, "\ud83c\uddee\ud83c\uddf9\ud83c\uddea\ud83c\uddf8": 2, "massimo": 4, "economia": 4, "rischio": 9, "\ud83d\ude31": 3, "\ud83d\ude18": 2, "tassano": 3, "condomini": 1, "\ud83d\ude33": 1, "becchi": 1, "santarcangelo": 4, "vigliaccamente": 1, "iraq": 1, "soldati": 1, "rimane": 1, "dovete": 1, "arrivate": 1, "presto": 7, "chiusi": 4, "palazzi": 5, "modulo": 1, "adesione": 2, "campagna": 1, "elettorale": 3, "\ud83d\udce3legaonline": 1, "usi": 1, "costumi\u201d": 1, "ferrara": 8, "culturale": 1, "identit\u00e0": 1, "\ufffcroma": 1, "caos": 1, "succedono": 1, "colori": 1, "dormono": 1, "mattinata": 3, "schedare": 2, "servono": 1, "certezza": 3, "killer": 1, "spietati": 1, "ucciso": 1, "divisa": 3, "ilmessaggero": 1, "accoltella": 1, "ergastolano": 1, "cianci": 1, "ultime": 3, "notizie": 1, "html": 1, "appetito": 2, "presento": 2, "cause": 1, "perse": 1, "rialzer\u00e0": 2, "argomenti": 2, "bandiera": 1, "rossa": 2, "consueto": 1, "merda": 1, "tristiiii": 1, "trent": 2, "caduto": 1, "muro": 3, "berlino": 5, "cadr\u00e0": 1, "cioccolato": 2, "arrivato": 3, "campane": 1, "\ud83d\udd34secondo": 1, "scrittore": 1, "pericoloso": 1, "maestro\u201d": 1, "leader": 1, "spagnolo": 1, "cercare": 2, "espa\u00f1a\ud83d\ude0a": 1, "reggio": 10, "dettagli": 1, "sezione": 1, "eventi": 1, "litiga": 2, "costruiamo": 1, "liberare": 3, "eicma2019": 1, "ipocrisia": 3, "sopportano": 1, "qual": 1, "segreto": 1, "disprezzo": 2, "rispondere": 1, "determinazione": 1, "buone": 1, "gnocco": 1, "fritto": 1, "tigelle": 1, "erbazzone": 1, "lambrusco": 1, "emilia\ud83d\ude0a": 1, "polesine": 5, "parmense": 5, "november": 1, "porc": 1, "luogo": 3, "dieta": 1, "bassa": 1, "culatello": 1, "zibello": 1, "ottima": 1, "video": 2, "assai": 1, "prezioso": 1, "migrante\u201d": 1, "crescita": 2, "societ\u00e0": 3, "gruppo": 2, "alpini": 1, "terre": 1, "dedicata": 1, "maiale": 1, "sapori": 1, "straordinari": 2, "emiliana": 1, "entusiasmo": 4, "tradizioni": 4, "comprare": 2, "mangiare": 2, "atto": 2, "salumi": 1, "noi\ud83d\ude0a": 1, "iniziativa": 4, "vergogner\u00e0": 1, "eicma": 2, "invidiata": 1, "mezzo": 8, "appassionati": 1, "ruote": 1, "suggerimenti": 1, "ciclo": 1, "motociclo": 1, "regaler\u00f2": 1, "cioccolatini": 1, "addolcire": 1, "giornate\ud83d\ude09": 1, "carpigiani": 1, "emergenza": 3, "\ud83e\udd26\u200d\u2642": 1, "emiliano": 1, "pr": 1, "centro": 3, "prontissimi": 1, "cadeva": 1, "comunismo": 1, "dittatura": 1, "fred": 1, "bongusto": 1, "simbolo": 2, "sognava": 1, "cresceva": 1, "mancherai": 1, "\u26a0\ufe0f": 1, "manette": 10, "prende": 3, "riordino": 1, "carriere": 1, "previsti": 1, "finanzia": 1, "cifra": 1, "fondi": 2, "ministeri": 2, "tolgono": 1, "ridanno": 1, "truffa": 1, "clamorosa": 1, "umiliazione": 1, "vincere": 7, "poltronaro": 1, "raccoglie": 1, "fischi": 1, "taranto": 3, "torno": 2, "infine": 2, "igea": 1, "marina": 1, "dirmi": 1, "rifila": 1, "sonora": 3, "lezione": 3, "viceministro": 2, "faccenda": 1, "ascoltare": 6, "latte": 2, "calci": 1, "ultimo": 2, "angeli": 3, "matteo": 6, "antonino": 2, "commosso": 4, "corpo": 1, "piange": 2, "treno": 1, "senatore": 1, "tony": 1, "iwobi": 1, "ridicoli": 1, "san": 20, "martino": 1, "vietata": 1, "aggiorno": 5, "progetto": 2, "toscana": 3, "prossima": 4, "primavera": 3, "fornero": 2, "attacca": 1, "lavorando": 2, "bene\ud83d\ude0a": 1, "artista\u201d": 1, "spera": 2, "venga": 4, "grosse": 1, "secchiate": 1, "merda\u201d": 1, "parliamo": 1, "esercito": 1, "macchia": 1, "auguriamo": 1, "\ud83d\ude0a\ud83d\udc34": 1, "eroe": 1, "persona": 2, "opportunit\u00e0": 1, "commovente": 3, "testimonianza": 1, "scomparsi": 2, "ingiustamente": 2, "alessandria": 3, "eterna": 1, "riconoscenza": 1, "mette": 5, "gioco": 2, "preghiera": 4, "augurio": 1, "fatta": 4, "drammatico": 1, "dedicare": 2, "intervento": 26, "vengo": 1, "criticato": 1, "attaccato": 1, "normale": 3, "stata": 8, "punita": 1, "consapevole": 1, "tecnica": 1, "migliorabile": 1, "dovevo": 1, "provarci": 1, "\u263a": 2, "fieracavalli": 4, "verona": 9, "svolge": 1, "prossimo": 6, "daremo": 1, "sangue": 1, "salti": 1, "posto": 5, "operai": 4, "perfino": 1, "adozioni": 1, "cassa": 2, "pelle": 2, "mamma": 3, "scelta": 1, "incivile": 1, "vigliacca": 1, "batter\u00e0": 1, "evitarlo": 2, "\ud83d\udc0e": 1, "imperdibile": 1, "equitazione": 1, "so": 4, "inevitabile": 1, "licenziare": 1, "tassato": 1, "massacra": 1, "toglie": 1, "rimaste": 1, "piedi": 2, "mesi": 6, "fatte": 1, "mandarli": 1, "italiani\u201d": 3, "popolare": 1, "lampedusa": 2, "dirlo": 1, "balconi": 1, "ostia": 6, "cadono": 2, "pezzi": 2, "cornicione": 1, "chiunque": 1, "mamme": 1, "virg\u00ec": 1, "rivedete": 6, "senz": 1, "anima": 1, "torna": 5, "centri": 9, "chiuso": 3, "business": 3, "manderanno": 1, "scegliendo": 2, "concetto": 1, "montecitorio": 5, "coldiretti": 4, "difendere": 9, "raccolti": 2, "savoia": 1, "hotel": 1, "via": 4, "pilastro": 1, "esaurimento": 1, "posti": 4, "richieste": 1, "tantissime": 1, "vuoi": 1, "vai": 1, "aspettato": 1, "sbarcare": 1, "ong\u201d": 1, "pesi": 1, "misure": 1, "giornalista": 2, "certo": 4, "evidente": 1, "carica": 1, "quotidiana": 2, "\ud83d\ude0a\ud83c\uddee\ud83c\uddf9": 1, "giovannino": 1, "cucciolo": 1, "te": 2, "brutto": 2, "cattivo": 3, "fascista": 2, "troglodita": 1, "continuiamo": 1, "coscienza": 2, "sicuri": 1, "andare": 9, "fiori": 2, "cannoni\ud83d\ude09": 1, "germania": 1, "rafforza": 1, "frontiere": 1, "francia": 2, "annuncia": 1, "stretta": 2, "complimenti": 4, "moltiplicato": 1, "arrivi": 2, "umiliare": 1, "ministro\u201d": 2, "insultare": 1, "occupati": 1, "penitenziaria": 2, "condizioni": 1, "drammatiche": 1, "dimettiti": 1, "investitore": 1, "sistemare": 1, "evidentemente": 1, "scappa": 2, "scienziato": 1, "geni": 4, "ascoltato": 1, "problema": 2, "proseguire": 1, "stabilimenti": 1, "siderurgici": 1, "assolutamente": 1, "impensabile": 1, "perdere": 3, "cruciale": 1, "amen\ud83d\ude0a": 1, "turisti": 1, "magistrale": 1, "vittorio": 1, "feltri": 1, "stupiscono": 2, "vota": 3, "\ud83d\udc4f": 1, "gentile": 1, "desio": 1, "brianza": 2, "disabili": 1, "avversari": 1, "battere": 1, "vede": 1, "buoni": 2, "\ud83d\udd34incredibile": 1, "servizio": 3, "fatelo": 1, "sacrifici": 1, "romani": 6, "buttati": 1, "vento": 1, "mischione": 1, "torni": 2, "dimostrato": 1, "merita": 5, "vedete": 1, "calcinacci": 1, "popolari": 1, "porto": 2, "mostrer\u00f2": 1, "stamattina": 6, "stimolo": 1, "ricordarsi": 1, "arrabbia": 1, "capace": 1, "afflitta": 1, "occupazioni": 1, "abusive": 1, "mancanza": 1, "servizi": 1, "abbandono": 1, "\u2b55\ufe0f": 1, "targato": 2, "costeranno": 1, "troppe": 1, "occupate": 1, "abusivamente": 1, "17mila": 1, "affari": 1, "folli": 1, "giocando": 1, "rivolto": 1, "calabrese": 1, "dorme": 1, "panchina": 1, "ugl": 1, "interessando": 1, "possano": 2, "invio": 1, "tabaccaio": 1, "reagisce": 1, "rapina": 1, "uccide": 3, "ladri": 2, "legittima": 5, "penso": 6, "enorme": 3, "tranquillit\u00e0": 1, "disastri": 2, "branco": 1, "trogloditi": 1, "evasori": 1, "intellettuali\u201d": 1, "disprezzano": 1, "perdono": 3, "elezioni\ud83d\ude09": 1, "stamane": 1, "radio": 17, "crc": 4, "\u274c": 1, "igienica": 1, "\u2757\ufe0fsciopero": 1, "benzinai": 1, "riuscito": 3, "arrabbiare": 2, "\u26a0\ufe0fvuoi": 1, "darci": 1, "scrivi": 1, "chiama": 2, "garantita": 1, "assassini": 3, "provocato": 1, "incendio": 1, "morte": 3, "\ud83d\udd34splendida": 1, "leghisti": 1, "liberandosi": 1, "inutili": 1, "litigi": 1, "amministratori": 3, "primo": 3, "puntiamo": 2, "iscritti": 1, "pi\u00fa": 3, "potrete": 1, "rivedere": 1, "\ud83d\udd34ma": 1, "bolzano": 1, "amministrata": 1, "vendono": 1, "cocaina": 1, "cielo": 1, "dicendo": 2, "libero\u201d": 1, "frattempo": 2, "disumano": 1, "fascista\u201d": 1, "anno": 5, "bloccato": 2, "investimenti": 1, "licenziamenti": 2, "andranno": 1, "frasi": 1, "osho": 1, "compagno": 1, "satana": 1, "disperazione": 1, "auto": 1, "aziendali": 1, "negozi": 1, "colleghi": 1, "cima": 1, "pensieri": 1, "contribuito": 1, "meravigliosa": 4, "meritava": 1, "stasera": 2, "tratto": 2, "pomodorini": 1, "siciliani": 1, "rapanelli": 1, "lazio": 1, "olio": 1, "oliva": 1, "umbro": 2, "gettando": 1, "angoscia": 1, "vicenda": 2, "riferirebbe": 1, "promesso": 3, "riapertura": 2, "chiusura": 1, "acciaierie": 1, "regali": 1, "qualcun": 1, "\u203c": 2, "grazie\u201d": 1, "diverse": 1, "annuncio": 1, "impoveriscono": 1, "possono": 5, "commentare": 1, "ennesimo": 1, "proprietari": 2, "industriale": 2, "dimissioni": 2, "urgentemente": 1, "riferire": 1, "parler\u00f2": 1, "sala": 2, "stampa": 4, "collegati": 2, "spingete": 1, "\ud83d\ude03\ud83d\ude03\ud83d\ude03": 1, "grillino": 2, "bonafede": 1, "cerchiamo": 1, "professa": 1, "cattolico": 1, "monsignor": 1, "mogavero": 1, "caspita": 1, "conosce": 1, "giudicarvi": 1, "tale": 1, "fede": 2, "segnatevi": 1, "data": 1, "\ud835\uddda\ud835\uddf6\ud835\uddfc\ud835\ude03\ud835\uddf2\ud835\uddf1\ud835\uddf6\u0300": 1, "\ud835\udde1\ud835\udde2\ud835\udde9\ud835\uddd8\ud835\udde0\ud835\uddd5\ud835\udde5\ud835\uddd8": 1, "\ud835\udde3\ud835\uddee\ud835\uddf9\ud835\uddee\ud835\uddf1\ud835\uddfc\ud835\ude07\ud835\ude07\ud835\uddee": 1, "\ud835\uddf1\ud835\uddf6": 1, "\ud835\uddd5\ud835\uddfc\ud835\uddf9\ud835\uddfc\ud835\uddf4\ud835\uddfb\ud835\uddee": 1, "impossibile": 1, "mancare": 1, "dovremo": 1, "\ud83d\udce9\ud835\ude1d\ud835\ude36\ud835\ude30\ud835\ude2a": 1, "\ud835\ude25\ud835\ude22\ud835\ude33\ud835\ude24\ud835\ude2a": 1, "\ud835\ude36\ud835\ude2f\ud835\ude22": 1, "\ud835\ude2e\ud835\ude22\ud835\ude2f\ud835\ude30": 1, "\ud835\ude2a\ud835\ude2f": 1, "\ud835\ude0c\ud835\ude2e\ud835\ude2a\ud835\ude2d\ud835\ude2a\ud835\ude22": 1, "\ud835\ude19\ud835\ude30\ud835\ude2e\ud835\ude22\ud835\ude28\ud835\ude2f\ud835\ude22": 1, "\ud835\ude1a\ud835\ude24\ud835\ude33\ud835\ude2a\ud835\ude37\ud835\ude2a": 1, "\ud835\ude22": 1, "\ud835\ude26\ud835\ude2e\ud835\ude2a\ud835\ude2d\ud835\ude2a\ud835\ude22\ud835\ude33\ud835\ude30\ud835\ude2e\ud835\ude22\ud835\ude28\ud835\ude2f\ud835\ude22": 1, "\ud835\ude2d\ud835\ude26\ud835\ude28\ud835\ude22\ud835\ude30\ud835\ude2f\ud835\ude2d\ud835\ude2a\ud835\ude2f\ud835\ude26": 1, "\ud835\ude2a\ud835\ude35": 1, "trasporti": 2, "colpadisalvini": 1, "difende": 4, "vigliacchi": 1, "impegno": 1, "inizio": 4, "regaliamo": 1, "inventi": 1, "neve\ud83d\ude02": 1, "poche": 2, "sbarcando": 2, "istituita": 1, "commissione": 1, "rileggere": 1, "orwell": 1, "smaschera": 1, "dici": 1, "accusano": 1, "nazismo": 1, "bavaglio": 1, "sapere": 1, "condannano": 1, "giustamente": 1, "idiozia": 1, "opinione": 1, "riguardo": 1, "esistenza": 1, "guarda": 1, "molti": 4, "spendono": 1, "respiriamo": 1, "chiacchiere": 5, "kompagno": 1, "fastidio": 2, "mangi": 1, "pane": 1, "salame": 1, "credere": 1, "ziano": 1, "piacentino": 1, "\ud83c\udf83": 1, "riportando": 1, "pozzallo": 1, "arrivata": 1, "ocean": 2, "viking": 2, "passeggeri": 1, "mediterraneo": 2, "pronte": 3, "rotta": 2, "viminale": 10, "scatenano": 1, "ricomincia": 2, "pacchia": 3, "scorsa": 1, "scendono": 1, "incredibile": 5, "crollati": 1, "fortuna": 2, "linea": 2, "seria": 1, "rigorosa": 1, "tornata": 2, "rispettata": 1, "invitate": 1, "berlinguer": 3, "commentate": 6, "condividete": 7, "mercato": 10, "torpignattara": 1, "ridotta": 1, "sporca": 1, "caotica": 1, "insicura": 1, "rinascere": 2, "firme": 2, "raccolte": 1, "virginia": 1, "mestiere": 2, "rapporti": 1, "servi": 1, "barattano": 1, "zero": 6, "virgola": 2, "elasticit\u00e0": 1, "cambio": 2, "esterrefatto": 1, "arroganza": 1, "trattano": 1, "accordo": 4, "nulla": 2, "potranno": 6, "risultati": 3, "dimostrano": 1, "attesa": 4, "straniere": 2, "cariche": 1, "diranno": 1, "perde": 1, "voti": 2, "fiducia": 7, "bologna\ud83d\ude09": 1, "vinto": 1, "quindi": 1, "cambia": 5, "radio24": 2, "soddisfazione": 3, "stravince": 1, "batte": 1, "palazzo": 10, "arriver\u00e0": 4, "onest\u00e0": 2, "pecora": 2, "leggerezza": 2, "guasta": 1, "protestato": 1, "conduttori": 1, "immorale": 1, "invitarmi": 1, "soliti": 2, "tolleranti": 1, "bacioni": 1, "lungo": 2, "stupendo": 1, "croce": 1, "domenicavotolega": 35, "castello": 1, "aprite": 1, "rubrica": 1, "chiamate": 2, "inviate": 1, "messaggi": 4, "giustino": 1, "vergognoso": 1, "diffondiamo": 2, "devono": 1, "finti": 1, "sicuri\u201d": 1, "rimanere": 2, "fingono": 1, "gay": 1, "mangioni": 1, "fregano": 1, "farne": 1, "guerre": 1, "persecuzioni": 1, "triplica": 1, "estende": 1, "riprendere": 1, "cominciamo": 2, "fontivegge": 1, "quartiere": 3, "ostaggio": 1, "tolleranza": 2, "vende": 1, "farlo": 3, "chiudendo": 1, "arrivano": 3, "mese": 5, "radio1": 1, "valfabbrica": 1, "mancano": 1, "bellissima": 3, "trevi": 1, "soffia": 1, "rocca": 2, "cencia": 2, "provando": 1, "stabilimento": 3, "trasporto": 2, "smaltimento": 1, "potuto": 1, "volere": 1, "potere\u201d": 1, "ultimi": 2, "riceve": 1, "consenso": 3, "estremisti": 1, "sbaglio": 2, "\ud83d\ude42": 5, "epiro": 1, "\ud83d\udd34scene": 1, "ordinaria": 1, "vasto": 2, "apre": 2, "contevergogna": 2, "sapranno": 1, "premiarvi\u201d": 1, "myrta": 1, "merlino": 1, "decisivo": 1, "spedendo": 1, "mandando": 1, "segnale": 3, "considera": 1, "determinante": 1, "rtl": 9, "toccher\u00e0": 1, "galantuomo": 1, "vince": 4, "triplicare": 1, "proporre": 1, "affitti": 1, "bibite": 4, "zuccherate": 2, "diesel": 1, "educazione": 1, "civica": 1, "scuole": 3, "umbri": 3, "internazionale": 5, "giovanni": 11, "provare": 1, "ministero": 6, "regalarmi": 1, "orgoglioitaliano": 1, "biscotti": 1, "benzina": 3, "partite": 1, "iva": 2, "scemo": 2, "sole": 4, "pacifica": 1, "determinata\ud83d\ude0a": 1, "orvieto": 3, "nuove": 6, "seconde": 1, "tentativo": 1, "blocco": 2, "nascosti": 1, "ribadito": 4, "bastano": 1, "appelli": 1, "interviene": 1, "cedere": 2, "ricatti": 2, "erdogan": 1, "eliminata": 1, "qualsiasi": 1, "ipotesi": 1, "turchia": 1, "europea": 2, "montecastrilli": 1, "borghi": 1, "paesaggi": 1, "foligno": 2, "27ottobrevotolega": 15, "giano": 1, "proseguono": 1, "tappe": 1, "smettetela": 1, "povero": 1, "pazzo": 1, "violento": 1, "esemplare": 2, "ri": 1, "spalancato": 1, "ottenuto": 1, "definiscono": 1, "buoni\u201d": 1, "razzista": 2, "responsabilit\u00e0": 1, "aumento": 4, "maggiori": 1, "indietro": 4, "dramma": 1, "riguardate": 5, "ferentillo": 1, "ottobre": 12, "carcere": 5, "sabbione": 1, "narni": 1, "aperta": 1, "sincera": 1, "eccola": 4, "provoca": 1, "triplicati": 1, "mafiosi": 1, "fuga": 1, "lavora": 4, "passano": 1, "soffre": 1, "formule": 1, "simili": 1, "meditata": 1, "percorso": 2, "integrazione": 1, "suggerisco": 1, "vere": 4, "campidoglio": 1, "abbracceremo": 1, "sicuramente": 1, "marziani": 1, "sfortuna": 1, "agenzie": 1, "comunali": 1, "assessori": 2, "dirigenti": 1, "funzionari": 1, "cambiato": 1, "stranieri": 4, "rendano": 1, "ahim\u00e8": 1, "vivo": 1, "anch": 1, "sbagliato": 3, "raccoglieremo": 1, "100mila": 1, "bastia": 1, "umbra": 2, "stra": 1, "merendine": 4, "chinotto": 1, "formaggi": 1, "prosciutti": 1, "tassate": 1, "pagando": 1, "errori": 1, "bruxelles": 3, "cva": 1, "ponte": 6, "capanne": 1, "monti": 1, "barche": 1, "ricchi": 2, "poveri": 2, "andati": 1, "estero": 3, "artigiani": 1, "massacrare": 1, "semplicemente": 2, "offendo": 1, "spiaggia": 1, "mutande": 1, "lilli": 1, "gruber": 3, "diverto": 1, "visione": 1, "essermela": 2, "cavata": 2, "dite": 4, "sente": 1, "rappresentato": 1, "ambiente": 2, "colpiranno": 1, "pescatori": 3, "vecchi": 1, "contadino": 1, "trattore": 1, "gode": 1, "magari": 1, "riesce": 1, "comprarsene": 1, "parlato": 13, "manicomio": 1, "litigando": 1, "crocifisso": 1, "venduti": 1, "attigliano": 1, "stroncone": 1, "ultima": 3, "tappa": 3, "norcia": 1, "sofferto": 1, "arrende": 1, "segui": 1, "cascia": 1, "santuario": 1, "straordinaria": 3, "27ottrobrevotolega": 1, "riccione": 2, "doveva": 2, "improvvisata": 1, "amici\u201d": 1, "diventato": 1, "comizio": 2, "sedia": 1, "villaggio": 2, "fianco": 2, "produttori": 1, "consumare": 1, "costi": 2, "viadana": 1, "oglio": 1, "mantova": 1, "ente": 1, "sordi": 1, "lasceremo": 1, "svela": 2, "dati": 1, "numeri": 1, "incoerenze": 1, "giornaloni": 2, "volto": 1, "perdoneranno": 1, "aumentati": 1, "gazzosa": 1, "revisione": 1, "flat": 3, "tax": 3, "fermeremo": 2, "fanno\ud83d\ude09": 1, "denunciano": 1, "arrestare": 1, "alleano": 1, "pd\ud83e\udd26\u200d\u2642": 1, "leggere": 1, "grilline": 1, "credo": 10, "prenderanno": 1, "mazzata": 1, "pranzando": 1, "castiglione": 1, "lago": 2, "feliciano": 1, "trasimeno": 2, "parole": 4, "passignano": 1, "tassare": 1, "prelievi": 1, "voli": 1, "gasolio": 2, "penalizzare": 1, "giudizio": 2, "nottambula": 1, "settembre": 1, "partiranno": 1, "rischieranno": 1, "morire": 2, "rotazione": 1, "volontaria\u201d": 1, "ritornare": 1, "ascoltate": 9, "favore": 3, "riaperti": 2, "bigiate": 1, "massa": 1, "autorizzate": 1, "prelevati": 1, "salone": 2, "nautico": 1, "genova": 7, "contentissimo": 1, "andato": 3, "barbara": 3, "urso": 4, "boom": 1, "ascolti": 2, "segue": 2, "divertito": 2, "abbastanza": 4, "frizzante": 1, "oretta": 1, "inaspettate": 1, "sorprese": 1, "fortunato": 1, "chiuduno": 1, "bergamo": 7, "ricordando": 1, "pontida": 6, "\u2764": 2, "integrale": 2, "atreju": 1, "ospitalit\u00e0": 2, "gazebo": 3, "incontri": 1, "piazze": 1, "\ud83d\udd34trova": 1, "firma": 3, "salvininonmollare": 1, "collasso": 1, "tornati": 1, "vigore": 1, "prevedono": 1, "infrastrutture": 3, "firmino": 1, "divieto": 1, "accesso": 1, "acque": 1, "nazionali": 2, "optare": 1, "pessimo": 3, "ricorderanno": 1, "presenter\u00e0": 1, "urne": 1, "passi": 4, "gualdo": 1, "tadino": 1, "balle": 2, "tradimenti": 1, "pugnalate": 1, "aggrappato": 1, "potere": 3, "chiamato": 1, "personaggio": 1, "musica": 2, "rispondo": 2, "pazzi": 2, "ostaggi": 1, "signori\u201d": 1, "incollati": 1, "pulita": 1, "sconfitto": 1, "giochi": 2, "costruire": 1, "fondato": 2, "onesta": 1, "sono\ud83d\ude0a": 1, "valgono": 2, "scatenato": 1, "alleanza": 1, "regioni": 1, "trucco": 1, "possa": 1, "braccia": 1, "emozione": 1, "\ud83d\udd1d\ud83c\uddee\ud83c\uddf9": 1, "assemblea": 3, "italiavera": 1, "vincer\u00e0": 1, "giochini": 1, "inciuci": 1, "paolo": 9, "debbio": 8, "record": 3, "ricevuto": 1, "mollare": 1, "determinata": 1, "aspetta": 1, "telefonatine": 1, "torner\u00e0": 2, "guidata": 1, "occhio": 1, "guarito": 1, "riguarda": 2, "lavorando\ud83d\ude09": 1, "bancarelle": 1, "spello": 1, "lealt\u00e0": 1, "mille": 2, "pali": 1, "luce": 1, "motivazione": 1, "schermo": 1, "tarda": 2, "fermarci": 1, "sbagliano": 1, "grosso": 2, "spediti": 1, "rassegna": 1, "benedetto": 2, "comandano": 1, "sprangare": 1, "portone": 1, "vie": 1, "laterali": 1, "invidio": 1, "pensando": 1, "spartirsi": 2, "telegiornali": 2, "gatti": 1, "finch\u00e9": 1, "lasciano": 1, "\ud83d\udd34segui": 1, "deputati": 1, "riccardo": 1, "molinari": 1, "primagliitaliani\ud83c\uddee\ud83c\uddf9": 2, "condividi": 1, "batteranno": 2, "poltronari": 2, "inciucio": 2, "rinchiusi": 2, "salato": 2, "verranno": 2, "cacciati": 2, "interverr\u00f2": 1, "vignola": 1, "improvvisato": 1, "domodossola": 1, "vco": 1, "fidatevi": 1, "combatte": 1, "gemini": 2, "denuncia": 2, "leu": 1, "impugnato": 1, "prime": 1, "favorendo": 1, "fermiamo": 2, "livello": 1, "locale": 1, "regionale": 1, "treni": 1, "nome": 3, "competenze": 1, "limitiamo": 1, "prepariamo": 2, "rivoluzione": 1, "casta": 1, "ammucchiata": 1, "eccetto": 2, "sfuggire": 1, "lontano": 1, "infinito": 2, "alzano": 2, "lombardo": 2, "intervenute": 1, "rappresenta": 1, "conservazione": 1, "scende": 1, "patti": 1, "boschi": 1, "permetto": 1, "merkel": 2, "batosta": 1, "prova": 1, "imporre": 1, "candidamente": 1, "conoscerli": 1, "rivendicando": 1, "votato": 1, "smascherati": 1, "cacceranno": 1, "decidono": 2, "spettacolare": 1, "bergamaschi": 1, "pinzolo": 2, "trento": 1, "conselve": 1, "poltrone\u201d": 1, "determinato": 2, "governicchio": 1, "unicamente": 1, "quirinale": 2, "responsabili\u201d": 1, "torner\u00e1": 1, "bordo": 4, "ovviamente": 2, "open": 3, "arms": 3, "seconda": 6, "caldo": 4, "telefono\ud83d\ude0a": 1, "volo": 1, "passato": 1, "firmato": 2, "coincidenze": 1, "amor": 1, "dio": 1, "strano": 2, "ferragosto": 2, "riaprire": 1, "rubinetti": 1, "altroimmigrazione": 1, "clandestina": 4, "farmi": 1, "dispiacere": 1, "sbaglia": 2, "dedicato": 1, "castel": 1, "volturno": 1, "caserta": 1, "comitato": 4, "spezia": 1, "recco": 2, "accadendo": 1, "arrendo": 2, "taglio": 2, "esitazioni": 1, "votosubito": 1, "simpaticissimi": 1, "rumori": 1, "interruzioni": 1, "urlanti": 1, "sentirete": 1, "interessanti": 1, "renzi\ud83d\ude0a": 1, "decidere": 1, "siracusa": 1, "durante": 2, "saltava": 1, "sabotatori": 1, "catania": 2, "soverato": 1, "stabile": 2, "solamente": 1, "policoro": 1, "perla": 1, "lucana": 1, "mar": 1, "jonio": 1, "polignano": 1, "\ud83d\udcaa\ud83c\uddee\ud83c\uddf9": 1, "peschici": 1, "foggia": 2, "termoli": 2, "campobasso": 4, "pescara": 4, "sabaudia": 1, "latina": 1, "arcore": 1, "monza": 2, "termine": 1, "parti": 4, "sociali": 8, "pausa": 1, "fermo": 1, "nerviano": 1, "colico": 1, "lecco": 1, "cervia": 1, "paraggi": 1, "skytg24": 3, "marittima": 1, "presentazione": 3, "colpire": 1, "coltello": 1, "cellulare": 1, "vengano": 1, "beccati": 1, "mandati": 1, "lavori": 2, "forzati": 1, "comodo": 1, "uccidere": 2, "comodi": 1, "lettino": 1, "golasecca": 1, "varese": 1, "minori": 2, "fermi": 1, "dimostrando": 1, "approccio": 1, "rigoroso": 1, "evita": 1, "fughe": 1, "contiamo": 2, "continuare": 2, "azzerare": 1, "sparizioni": 1, "commissario": 1, "scomparse": 1, "alessandra": 1, "locatelli": 1, "rispondiamo": 3, "sbloccati": 1, "opere": 1, "pubbliche": 1, "strade": 2, "ospedali": 1, "ferrovie": 1, "cantieri": 2, "parlano": 1, "prefettura": 6, "protocollo": 1, "attuazione": 1, "adro": 1, "intense": 2, "insultatissimo": 1, "ridotto": 1, "salvato": 1, "vite": 2, "risparmiato": 1, "assunto": 1, "rispettato": 1, "helsinki": 1, "gattile": 2, "cimitero": 3, "monumentale": 2, "verano": 2, "\ud83d\udc08": 1, "\u2139\ufe0f": 1, "sosanimali": 1, "seawatch": 2, "segnalazioni": 1, "scafista": 1, "apertamente": 1, "ripetiamo": 1, "alimenta": 1, "filmato": 1, "dimostra": 1, "dormire": 1, "imbarcazioni": 1, "fuorilegge": 2, "ascolto": 3, "confronto": 1, "assieme": 1, "sigle": 1, "sindacali": 1, "associazioni": 2, "categoria": 1, "sconto": 1, "occupano": 1, "incendiano": 1, "pericolante": 1, "barricate": 1, "legalit\u00e0": 1, "recuperando": 1, "assenza": 1, "sassuolo": 2, "ringraziando": 2, "settant": 1, "sintesi": 8, "intensa": 12, "recuperati": 1, "molla\ud83d\ude0a": 1, "fatti": 5, "codice": 1, "rosso": 1, "entro": 3, "luglio": 1, "salvando": 1, "vittime": 3, "dovranno": 1, "giudice": 2, "castrazione": 2, "chimica": 2, "pedofili": 2, "stupratori": 3, "passo": 1, "civilt\u00e0": 3, "mineo": 1, "caltagirone": 1, "inaugurato": 1, "commissariato": 1, "accompagnati": 1, "fortunatamente": 1, "netta": 1, "riduzione": 3, "tace": 1, "piega": 1, "muore": 2, "cammina": 1, "sola": 1, "falcone": 2, "cibo": 1, "coperte": 1, "consegnati": 1, "litri": 1, "potabile": 1, "barca": 1, "altrettanti": 1, "successivamente": 1, "rifiutati": 1, "infrangere": 2, "sciacalli": 1, "rimarranno": 1, "impuniti": 1, "arresti": 1, "sequestro": 3, "giudici": 2, "stavolta": 1, "decida": 1, "impegnativa": 4, "nettuno": 1, "taser": 1, "intervenuto": 1, "microfoni": 2, "cant\u00f9": 1, "fenomeni": 1, "zitti": 1, "scandalo": 1, "affidi": 1, "illeciti": 1, "emilia\u201d": 1, "pirata": 1, "maximulta": 1, "allontanamento": 1, "complici\u201d": 1, "continuo": 3, "continuer\u00f2": 2, "garantire": 1, "concluderebbe": 1, "arresto": 1, "espulsione": 1, "equipaggio": 2, "trasferimento": 1, "energie": 1, "lotta": 3, "mafia": 5, "private": 1, "fregata": 1, "\u202c": 4, "\u202ai": 1, "membri": 1, "arrestati": 1, "\u202aho": 1, "scritto": 1, "collega": 3, "olandese": 1, "risposto": 1, "figura": 1, "fesso": 1, "lezioni": 2, "\u202aecco": 1, "demolizione": 1, "morandi": 4, "treviglio": 1, "sbruffoncella": 1, "delinquente": 2, "galera\u201d": 1, "\ud83d\udc4d": 1, "comitati": 1, "puglia": 2, "gestita": 1, "qualunque": 1, "illegalit\u00e0": 2, "assente": 1, "aereo": 1, "corridoi": 1, "3mila": 1, "dollari": 1, "arrivare": 1, "alimentando": 1, "traffico": 2, "migliori": 3, "correre": 2, "shock": 1, "festivallavoro": 1, "intervenendo": 1, "perfezionamento": 1, "organizzativo": 1, "cooperativo": 1, "dobbiamo": 3, "fieri": 1, "voi\ud83d\ude0a": 1, "bianca": 2, "vicepresidente": 1, "americano": 1, "mike": 1, "pence": 1, "\ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8": 3, "villa": 4, "residenza": 1, "arlington": 1, "washington": 3, "deposizione": 1, "corona": 1, "tomba": 1, "milite": 1, "ignoto": 1, "salviniusa\ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8": 1, "lincoln": 1, "memorial": 1, "tiri": 1, "schiaffi": 1, "muovendo": 1, "allora": 1, "venire": 1, "dubbio": 1, "decreto": 7, "approvato": 2, "chigi": 2, "entusiasmante": 1, "vale": 1, "comuni": 1, "eccomi": 4, "biella": 3, "paderno": 1, "dugnano": 1, "venerd\u00ec": 2, "romano": 1, "prato": 2, "strette": 1, "consigli": 1, "obiettivamente": 1, "partecipi": 1, "convegni": 1, "grido": 1, "giudichi": 1, "operato": 1, "temi": 1, "credete": 1, "ascoli": 3, "piceno": 1, "celebrazione": 1, "fondazione": 1, "\ud83d\udcaa": 3, "argenta": 1, "mirandola": 1, "ballottaggi": 1, "\ud83d\udd25\ud83d\udd25\ud83d\udd25": 1, "accelerare": 1, "s\u00ed": 1, "castelfranco": 1, "domenicavotolega\ud83c\uddee\ud83c\uddf9": 2, "mantovano": 1, "bonifacio": 2, "9giugnovotolega": 5, "inaugurare": 1, "superstrada": 1, "pedemontana": 1, "veneta": 2, "viaggiare": 1, "velocemente": 1, "camionisti": 1, "civitavecchia": 2, "grazieeee": 2, "fori": 1, "imperiali": 1, "festadellarepubblica": 1, "rivivete": 1, "indimenticabile": 1, "portandola": 1, "metter\u00f2": 1, "ripagare": 1, "ballottaggio": 1, "potenza": 10, "casoria": 1, "porter\u00f2": 1, "discussione": 1, "sviluppo": 2, "conferenza": 4, "cresce": 2, "assurde": 1, "europee": 1, "debito": 1, "disoccupazione": 1, "respirare": 1, "crescere": 1, "riportare": 1, "chiare": 2, "studi": 2, "votando": 1, "rialza": 1, "vercelli": 1, "generazioni": 1, "muoiono": 1, "precariato": 1, "ripartire": 1, "galliate": 1, "ligure": 1, "piemontesi": 1, "primalitalia\ud83c\uddee\ud83c\uddf9": 10, "ingegnere": 1, "meccanico": 1, "pensione": 1, "ripreso": 1, "lasciando": 1, "giovane": 1, "restituito": 2, "maggio": 9, "palermo": 1, "cerimonia": 1, "commemorazione": 1, "stragi": 1, "capaci": 1, "amelio": 1, "borsellino": 1, "lottare": 1, "estirpare": 1, "cancro": 2, "lamafiamifaschifo": 2, "curiosoni": 1, "addormentati": 1, "putignano": 1, "bari": 4, "primalitalia": 13, "professo": 1, "testimoniando": 1, "tuo\u201d": 1, "pianerottolo": 1, "canile": 1, "sanitario": 1, "preparando": 1, "provvedimenti": 1, "canili": 1, "gattili": 1, "combattono": 1, "randagismo": 1, "rendere": 1, "aspre": 1, "pene": 3, "maltratta": 2, "abbandona": 2, "animali": 2, "\ud83d\udc36": 1, "pallottola": 1, "calibro": 1, "busta": 1, "difendo": 2, "votare": 1, "colle": 1, "ostuni": 1, "lecce": 2, "pugliesi": 1, "spaventati": 1, "26maggiovotolega": 30, "patto": 1, "camorristi": 1, "truffati": 1, "severe": 2, "sequestrata": 3, "comandante": 1, "indagato": 4, "favoreggiamento": 1, "catechismo": 1, "chiesa": 1, "cattolica": 1, "limiti": 1, "possibile\u201d": 2, "periferie": 1, "ampiamente": 1, "superato": 1, "coffee": 1, "break": 1, "efficace": 1, "richiede": 1, "moltissimo": 1, "combattuta": 1, "istinti": 1, "talebani": 1, "ecologismo": 1, "salotto": 1, "alis": 1, "confartigianato": 1, "truffano": 1, "ridotti": 2, "reati": 4, "sprechi": 1, "nostalgia": 1, "sostenete": 1, "piazza\ud83d\ude0a": 2, "stavoltavotolega": 1, "valeggio": 1, "spettacolooo": 1, "arrivoooo": 1, "vedervi": 1, "confagricoltura": 2, "informazione": 2, "leggo": 3, "forum": 2, "lapresse": 2, "eccomi\ud83d\ude0a": 1, "estera": 1, "importante": 1, "strapieno": 1, "veroli": 1, "frosinone": 1, "26maggiovotolega\ud83c\uddee\ud83c\uddf9": 1, "libro": 2, "carlo": 1, "nordio": 1, "procuratore": 1, "26maggiovotalega": 2, "negrar": 1, "arzignano": 1, "vicenza": 3, "schio": 1, "legnago": 1, "montichiari": 1, "brescia": 2, "lumezzane": 1, "valtrompia": 1, "ruspe": 1, "palazzoni": 1, "spaccio": 2, "criminalit\u00e0": 1, "zingonia": 2, "tortona": 1, "liguria": 1, "piemonte": 1, "\ud83d\udcaa\ud83d\udcaa\ud83d\udcaa": 1, "annunziata": 1, "prego": 2, "guardare": 1, "rallegrerete": 1, "capirete": 1, "prender\u00e0": 1, "valanga": 1, "\ud83d\ude0e\ud83d\udcaa": 1, "cuneo": 2, "bra": 1, "fossano": 1, "particolarmente": 2, "nuovamente": 1, "arrestato": 1, "quell": 1, "infame": 1, "sparato": 1, "noemi": 1, "catanzaro": 1, "chiudiamo": 1, "montesilvano": 2, "montegranaro": 1, "osimo": 1, "ancona": 1, "spettatori": 1, "sintonizzati": 1, "mantenuto": 1, "calma": 1, "fano": 1, "marche": 1, "pesaro": 1, "\u2614\ud83d\ude0b": 1, "fantastica": 1, "freddo": 1, "polemiche": 1, "beghe": 1, "svelta": 1, "\ud83d\udd34spettacolare": 1, "tg": 1, "nascondono": 1, "condividiamo": 2, "pavia": 2, "\ud83d\udd1d\ud83d\udcaa": 2, "anteprima": 1, "completa": 1, "giussano": 1, "concorezzo": 1, "mb": 1, "mafie": 2, "vinceranno": 1, "agenzia": 1, "beni": 2, "confiscati": 1, "contento": 1, "racconto": 1, "andrea": 2, "ferito": 1, "entrati": 1, "sentito": 1, "dovere": 1, "sentirlo": 1, "ribadirgli": 1, "avellino": 1, "salerno": 1, "pietrelcina": 1, "benevento": 1, "scandicci": 1, "giuliano": 1, "terme": 1, "pisa": 1, "tour": 2, "\ud83d\ude01": 4, "romagnola": 1, "sottofondo": 1, "rossa\u201d\ud83d\ude09": 1, "estinzione": 1, "candidati": 1, "primalitaia\ud83c\uddee\ud83c\uddf9": 1, "fidenza": 1, "me\ud83d\ude01": 1, "monastero": 1, "carmelitano": 1, "budapest": 2, "orb\u00e1n": 1, "ungherese": 1, "concluso": 1, "proficuo": 1, "bilaterale": 1, "s\u00e1ndor": 1, "pint\u00e9r": 1, "ungheria": 1, "scegli": 1, "preferisco": 1, "rosiconi": 1, "tarquinia": 1, "tivoli": 1, "torino": 3, "stanco": 3, "principio": 1, "motta": 1, "sant": 2, "anastasia": 1, "bagheria": 1, "monreale": 2, "sicilia": 1, "corleone": 2, "mangiatoia": 1, "chiusa": 1, "stop": 1, "\ud83d\udeab\ud83d\udeab\ud83d\udeab": 1, "primalitalia\ud83d\udcaa\ud83d\udd1d\ud83c\uddee\ud83c\uddf9": 1, "eduardo": 1, "parlamentare": 1, "brasiliano": 1, "segno": 1, "collaborazione": 2, "amicizia": 1, "seguirla": 1, "baraccopoli": 1, "ferdinando": 1, "degrado": 2, "perfetta": 1, "sintonia": 1, "ragioni": 1, "politiche": 1, "immagina": 1, "dica": 1, "chiaramente": 1, "responsabile": 1, "confermo": 1, "portichiusi\ud83c\uddee\ud83c\uddf9": 2, "targati": 1, "liberata": 1, "terroristi": 2, "barconi": 1, "importanti": 2, "rivoluzioniamo": 1, "libia": 2, "gioca": 1, "ascolta": 1, "aprile": 1, "parteciper\u00f2": 1, "sfilate": 1, "camorra": 1, "ndrangheta": 1, "onorato": 1, "celebrazioni": 2, "167esimo": 1, "anniversario": 1, "anniversariopolizia": 1, "aggressione": 1, "continente": 1, "europadelbuonsenso": 4, "enf": 3, "j\u00f6rg": 3, "meuthen": 3, "alternative": 3, "f\u00fcr": 3, "deutschland": 3, "efdd": 3, "olli": 3, "kotro": 3, "the": 3, "finns": 3, "party": 3, "ecr": 6, "anders": 3, "vistisen": 3, "dansk": 3, "folkeparti": 3, "\ud83c\uddee\ud83c\uddf9live": 1, "salviniofficial": 6, "videos": 6, "sfns": 6, "\ud83c\uddec\ud83c\udde7": 2, "english": 3, "\ud83c\udde9\ud83c\uddea": 2, "deutsch": 2, "\ud83c\uddec\ud83c\udde7live": 1, "towards": 1, "common": 1, "sense": 1, "europe": 1, "milan": 1, "international": 1, "conference": 1, "with": 1, "lonigo": 1, "vinitaly\ud83c\uddee\ud83c\uddf9": 1, "scontato": 1, "raccogliere": 1, "critiche": 1, "sbloccacantieri\u201d": 1, "risarcimenti": 1, "danneggiati": 1, "ricostruzione": 1, "presieduto": 2, "sorriso\ud83d\ude0a": 1, "g7": 1, "cagliari": 7, "como": 1, "lady": 1, "isolotto": 1, "ricorder\u00f2": 1, "sacrosanto": 3, "difendersi": 2, "maurizio": 1, "costanzo": 1, "show": 1, "palcoscenico": 1, "autoironia": 1, "guardatelo": 1, "incredibili": 2, "ingiustizie": 1, "ladifesa\u00e8semprelegittima": 1, "approvata": 1, "garantisce": 1, "votata": 1, "grandissima": 1, "\ud83d\udcaa\ud83d\udd1d": 1, "protagonisti": 1, "dirottato": 1, "italiana\u201d": 1, "invertire": 1, "fateci": 1, "\ud83d\udc49": 1, "librimondadori": 1, "libri": 1, "litalia": 1, "piu": 1, "microfono": 1, "\ud83e\udd28": 1, "amici\u2764\ufe0f": 1, "\ud83d\udd34quello": 1, "intellettualone": 1, "provato": 1, "comprendere": 1, "coltelli": 1, "minacciava": 1, "colpe": 1, "vergognino": 1, "pomarico": 1, "ferrandina": 1, "numerosi": 2, "tolve": 1, "tito": 1, "scalo": 1, "automobilistico": 1, "lucano": 1, "qualcosa": 1, "dirvi": 1, "\ud83d\udd34aggiornamento": 1, "cercate": 1, "casarini": 1, "rende": 1, "complice": 1, "delinque": 1, "sconti": 2, "pensavo": 1, "apprezzato": 1, "lavello": 1, "visti": 1, "melfi": 1, "24marzovotolega": 5, "agri": 1, "marsicovetere": 2, "lauria": 1, "viggiano": 1, "filiano": 1, "propongo": 3, "maratea": 1, "marchi": 1, "storici": 1, "italiani\ud83c\uddee\ud83c\uddf9": 1, "cinquecentenario": 1, "leonardo": 1, "\ud83d\ude0d": 1, "scanzano": 1, "jonico": 1, "volont\u00e0": 1, "insuperabili": 1, "abbattimento": 1, "torri": 1, "dalleparoleaifatti": 2, "formazione": 2, "l\u00e0": 1, "mimosa": 1, "rosa": 1, "concreti": 1, "elimineremo": 1, "stupra": 1, "codicerosso": 1, "impone": 1, "corsie": 1, "preferenziali": 1, "rapidissime": 1, "denunce": 2, "violenze": 1, "donna": 1, "minigonna": 1, "molestata": 1, "voter\u00e0": 1, "marzo": 3, "tg5": 1, "drogato": 1, "ubriaco": 1, "patente": 1, "marocchino": 1, "genitori\u201d": 1, "proposta": 1, "accadano": 1, "follie": 1, "piena": 1, "eccone": 1, "navale": 1, "monfalcone": 1, "fincantieri": 1, "consegner\u00e0": 1, "crociere": 1, "interamente": 1, "amiche": 1, "sardi": 1, "lingua": 1, "magnifiche": 1, "potho": 1, "reposare\u201d": 1, "parodi": 1, "canzone": 1, "febbricitante": 1, "universit\u00e0": 1, "luiss": 1, "\u2600\ufe0f\ud83d\ude0a": 1, "logistica": 1, "diciotti": 1, "battono": 1, "risarcimento": 1, "assistiti": 1, "\ud83d\ude05": 1, "bastaaa": 1, "diminuiti": 2, "azzerati": 1, "calati": 1, "assunzioni": 1, "agenti": 1, "divise": 1, "sequestrati": 1, "chiacchiera": 1, "mandata": 1, "isola": 1, "tg2": 2, "villasimius": 1, "narcotrafficante": 1, "diventer\u00e0": 1, "alloggio": 1, "iglesias": 1, "ritorno": 1, "carbonia": 1, "nonna": 1, "diceva": 1, "avere\u201d": 1, "riguardatela": 1, "approvare": 1, "angelo": 1, "condannato": 1, "debba": 1, "ladro": 1, "alghero": 3, "24febbraiovotolega": 5, "sassari": 3, "arrivasse": 1, "barcone": 1, "chiedendo": 1, "rispettando": 1, "ozieri": 1, "iniziare": 1, "castelsardo": 1, "maddalena": 1, "abruzzo": 3, "guerriglia": 1, "cassonetti": 1, "incendiati": 1, "assaltato": 1, "infami": 1, "chiudono": 1, "frequentati": 1, "criminali": 1, "nega": 1, "basovizza": 1, "martiri": 1, "foibe": 1, "storie": 1, "famigliari": 2, "dimentichiamo": 1, "negozio": 1, "regaleremo": 1, "abruzzesi": 2, "lanciamo": 1, "bussi": 1, "tirino": 1, "aquila": 2, "monteroni": 1, "arbia": 1, "siena": 1, "restituir\u00f2": 1, "piscina": 1, "visitate": 1, "confiscate": 1, "teramo": 5, "egidio": 1, "vibrata": 1, "10febbraiovotolega": 9, "campli": 2, "\ud83d\ude04": 1, "giulianova": 1, "azioni": 1, "costate": 1, "indagini": 1, "chiomonte": 1, "visiter\u00f2": 1, "cantiere": 1, "tav": 1, "grattava\u201d": 1, "fiero": 1, "piaciuta": 1, "precedenti": 1, "rischi": 1, "tranquillo": 1, "base": 1, "costituzione": 1, "patria\u201d": 1, "programma": 2, "ospite": 1, "chiara": 1, "consegner\u00f2": 1, "criminale": 2, "riprovano": 1, "iononmollo": 1, "nazista": 1, "salvate": 1, "risparmiati": 1, "bacioni\ud83d\ude18": 1, "lanciano": 1, "chieti": 3, "riflessione": 1, "ricominciano": 1, "sporchi": 1, "traffici": 1, "cattivo\u201d": 1, "intrattenimento": 1, "afragola": 2, "\ud83d\ude4f": 1, "grazieee": 1, "oristano": 1, "quartu": 1, "tralagente": 1, "solinaspresidente": 1, "approfondimento": 1, "cattura": 1, "rientro": 1, "galere": 1, "battisti": 1, "troppi": 2, "piede": 1, "vicina": 1, "accettiamo": 1, "morale": 1, "solidariet\u00e0": 1, "generosit\u00e0": 1, "vigilia": 1, "vigliacco": 1, "assassino": 1, "tragedia": 1, "rigopiano": 1, "promesse": 1, "vuoto": 1, "regolare": 1, "integra": 1, "manda": 1, "aggiunto": 1, "incontrollato": 1, "accusato": 1, "cattivismo": 1, "varsavia": 1, "polacco": 1, "brudzi\u0144ski": 1, "villone": 1, "guardie": 1, "cancelli": 1, "sicurezza\u201d": 1, "operaio": 1, "periferia": 1, "operativo": 1, "dimostrate": 1, "roseto": 1, "abruzzi": 1, "contestano": 1, "letto": 1, "garantiti": 1, "salute": 1, "toccano": 1, "espulsi": 1, "regalano": 1, "diritti": 1, "furbetti": 1, "veniva": 1, "rispetta": 1, "tradisce": 1, "risponder\u00e0": 2, "esistono": 1, "clandestini\u201d": 1, "annunciano": 1, "applicheranno": 1, "quotidiani": 1, "reali": 1, "concittadini": 1, "irregolari": 1, "senso": 1, "repubblica": 1, "disoccupati": 1, "difendendoli": 1, "commessi": 1, "salveremo": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/salvini_emoji b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_emoji new file mode 100644 index 0000000..652c40e --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_emoji @@ -0,0 +1 @@ +{"\ud83d\ude44": 1, "\ud83d\ude00": 2, "\ud83d\udd1d": 2, "\ud83d\ude0a": 78, "\ud83d\udd34": 18, "\ud83d\ude38": 6, "\ud83c\uddee\ud83c\uddf9": 80, "\ud83d\ude09": 14, "\ud83e\udd23": 2, "\ud83e\udd14": 2, "\ud83d\ude39": 1, "\u26a0": 3, "\ud83d\ude3b": 1, "\ud83d\ude02": 2, "\ud83d\ude07": 2, "\ud83d\ude0b": 3, "\ud83d\udcaa\ud83c\udffb": 1, "\u2139": 4, "\u2709": 4, "\ud83d\ude8c": 3, "\u2705": 1, "\ud83d\ude31": 3, "\ud83d\ude18": 2, "\ud83d\ude33": 1, "\u263a": 2, "\ud83d\udc0e": 1, "\ud83d\udc4f": 1, "\u274c": 1, "\u203c": 2, "\ud83c\udf83": 1, "\ud83d\ude42": 5, "\u2764": 2, "\ud83d\udc08": 1, "\ud83d\udc4d": 1, "\ud83d\udcaa": 3, "\ud83d\udc36": 1, "\ud83d\ude01": 4, "\ud83c\uddec\ud83c\udde7": 2, "\ud83c\udde9\ud83c\uddea": 2, "\ud83d\udc49": 1, "\ud83e\udd28": 1, "\ud83d\ude0d": 1, "\ud83d\ude05": 1, "\ud83d\ude04": 1, "\ud83d\ude4f": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/salvini_sleep b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_sleep new file mode 100644 index 0000000..89fba77 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 4, "12": 2, "13": 7, "14": 2, "15": 4, "16": 4, "17": 2, "18": 6, "19": 3, "20": 1, "21": 2, "22": 1, "23": 0}, "Feb": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 2, "10": 5, "11": 6, "12": 1, "13": 8, "14": 1, "15": 4, "16": 0, "17": 1, "18": 5, "19": 5, "20": 1, "21": 1, "22": 2, "23": 2}, "Mar": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 1, "10": 6, "11": 3, "12": 6, "13": 5, "14": 0, "15": 2, "16": 2, "17": 3, "18": 2, "19": 1, "20": 0, "21": 3, "22": 1, "23": 5}, "Apr": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 2, "11": 4, "12": 6, "13": 6, "14": 3, "15": 0, "16": 3, "17": 3, "18": 7, "19": 1, "20": 2, "21": 3, "22": 0, "23": 4}, "May": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 0, "9": 2, "10": 10, "11": 9, "12": 9, "13": 10, "14": 5, "15": 13, "16": 4, "17": 8, "18": 9, "19": 8, "20": 5, "21": 10, "22": 5, "23": 5}, "Jun": {"0": 1, "1": 2, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 4, "11": 2, "12": 5, "13": 6, "14": 2, "15": 2, "16": 3, "17": 4, "18": 2, "19": 3, "20": 2, "21": 7, "22": 2, "23": 3}, "Jul": {"0": 2, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 1, "11": 5, "12": 4, "13": 5, "14": 0, "15": 2, "16": 2, "17": 1, "18": 1, "19": 2, "20": 1, "21": 3, "22": 0, "23": 2}, "Aug": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 2, "11": 0, "12": 9, "13": 4, "14": 3, "15": 2, "16": 2, "17": 3, "18": 3, "19": 2, "20": 2, "21": 9, "22": 3, "23": 0}, "Sep": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 5, "11": 5, "12": 5, "13": 11, "14": 2, "15": 4, "16": 2, "17": 4, "18": 5, "19": 5, "20": 4, "21": 10, "22": 3, "23": 1}, "Oct": {"0": 2, "1": 1, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 1, "10": 9, "11": 7, "12": 5, "13": 8, "14": 1, "15": 3, "16": 2, "17": 7, "18": 6, "19": 8, "20": 2, "21": 5, "22": 3, "23": 3}, "Nov": {"0": 7, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 8, "8": 17, "9": 25, "10": 25, "11": 23, "12": 24, "13": 26, "14": 22, "15": 20, "16": 25, "17": 24, "18": 24, "19": 27, "20": 26, "21": 33, "22": 21, "23": 22}, "Dec": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/salvini_trend.json b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_trend.json new file mode 100644 index 0000000..4d1da00 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_trend.json @@ -0,0 +1 @@ +{"23-Nov": 21, "25-Nov": 1, "24-Nov": 22, "22-Nov": 20, "21-Nov": 19, "20-Nov": 18, "19-Nov": 23, "18-Nov": 19, "17-Nov": 12, "16-Nov": 9, "15-Nov": 12, "14-Nov": 35, "13-Nov": 18, "12-Nov": 16, "11-Nov": 19, "10-Nov": 24, "9-Nov": 18, "8-Nov": 16, "7-Nov": 19, "6-Nov": 21, "5-Nov": 17, "4-Nov": 16, "3-Nov": 1, "2-Nov": 2, "1-Nov": 1, "31-Oct": 3, "30-Oct": 5, "29-Oct": 3, "28-Oct": 6, "26-Oct": 2, "25-Oct": 4, "24-Oct": 4, "23-Oct": 5, "22-Oct": 2, "21-Oct": 5, "20-Oct": 1, "19-Oct": 1, "18-Oct": 1, "17-Oct": 1, "14-Oct": 1, "13-Oct": 2, "12-Oct": 2, "11-Oct": 1, "10-Oct": 1, "9-Oct": 1, "8-Oct": 3, "7-Oct": 3, "5-Oct": 1, "4-Oct": 2, "3-Oct": 5, "2-Oct": 3, "1-Oct": 5, "30-Sep": 3, "29-Sep": 3, "28-Sep": 2, "27-Sep": 3, "26-Sep": 5, "25-Sep": 1, "24-Sep": 2, "23-Sep": 3, "22-Sep": 2, "21-Sep": 3, "19-Sep": 2, "18-Sep": 2, "17-Sep": 2, "16-Sep": 1, "15-Sep": 5, "14-Sep": 1, "13-Sep": 2, "12-Sep": 1, "11-Sep": 2, "10-Sep": 2, "9-Sep": 5, "8-Sep": 2, "7-Sep": 1, "6-Sep": 2, "5-Sep": 1, "4-Sep": 2, "3-Sep": 1, "2-Sep": 2, "1-Sep": 3, "31-Aug": 1, "30-Aug": 1, "29-Aug": 2, "28-Aug": 3, "26-Aug": 1, "23-Aug": 1, "22-Aug": 1, "21-Aug": 1, "20-Aug": 2, "19-Aug": 1, "18-Aug": 2, "15-Aug": 2, "14-Aug": 3, "13-Aug": 2, "12-Aug": 1, "11-Aug": 2, "10-Aug": 3, "9-Aug": 4, "8-Aug": 1, "7-Aug": 1, "6-Aug": 3, "5-Aug": 2, "4-Aug": 1, "3-Aug": 1, "1-Aug": 2, "26-Jul": 1, "25-Jul": 3, "24-Jul": 2, "22-Jul": 1, "21-Jul": 1, "19-Jul": 2, "18-Jul": 1, "17-Jul": 2, "16-Jul": 1, "15-Jul": 2, "13-Jul": 3, "12-Jul": 1, "11-Jul": 1, "10-Jul": 1, "9-Jul": 2, "6-Jul": 4, "5-Jul": 1, "3-Jul": 1, "1-Jul": 1, "30-Jun": 1, "29-Jun": 3, "28-Jun": 3, "27-Jun": 2, "26-Jun": 3, "21-Jun": 2, "20-Jun": 1, "19-Jun": 1, "17-Jun": 5, "14-Jun": 1, "12-Jun": 2, "11-Jun": 1, "8-Jun": 2, "7-Jun": 4, "6-Jun": 2, "5-Jun": 4, "4-Jun": 5, "3-Jun": 3, "2-Jun": 2, "1-Jun": 3, "31-May": 2, "30-May": 2, "29-May": 2, "28-May": 2, "25-May": 2, "24-May": 6, "23-May": 3, "22-May": 5, "21-May": 5, "20-May": 5, "19-May": 5, "18-May": 6, "17-May": 6, "16-May": 4, "15-May": 3, "14-May": 4, "13-May": 6, "12-May": 5, "10-May": 3, "9-May": 6, "8-May": 2, "7-May": 6, "6-May": 3, "5-May": 2, "4-May": 3, "3-May": 8, "2-May": 3, "1-May": 4, "30-Apr": 1, "29-Apr": 1, "27-Apr": 2, "26-Apr": 2, "25-Apr": 4, "24-Apr": 1, "23-Apr": 1, "19-Apr": 3, "18-Apr": 1, "17-Apr": 3, "15-Apr": 2, "12-Apr": 1, "11-Apr": 1, "10-Apr": 3, "8-Apr": 6, "7-Apr": 2, "6-Apr": 4, "5-Apr": 1, "4-Apr": 1, "2-Apr": 1, "1-Apr": 3, "30-Mar": 1, "29-Mar": 2, "28-Mar": 2, "27-Mar": 1, "25-Mar": 1, "23-Mar": 1, "22-Mar": 4, "21-Mar": 3, "20-Mar": 1, "19-Mar": 1, "18-Mar": 3, "17-Mar": 2, "16-Mar": 3, "15-Mar": 3, "14-Mar": 1, "13-Mar": 1, "12-Mar": 2, "11-Mar": 1, "10-Mar": 1, "8-Mar": 3, "7-Mar": 1, "5-Mar": 1, "4-Mar": 1, "1-Mar": 1, "28-Feb": 1, "27-Feb": 2, "25-Feb": 2, "24-Feb": 1, "23-Feb": 1, "22-Feb": 2, "21-Feb": 4, "20-Feb": 4, "19-Feb": 2, "18-Feb": 3, "17-Feb": 2, "13-Feb": 1, "11-Feb": 1, "10-Feb": 3, "9-Feb": 2, "7-Feb": 2, "6-Feb": 2, "5-Feb": 1, "4-Feb": 1, "3-Feb": 3, "2-Feb": 1, "1-Feb": 3, "30-Jan": 1, "28-Jan": 1, "27-Jan": 1, "25-Jan": 2, "24-Jan": 1, "22-Jan": 1, "20-Jan": 2, "19-Jan": 1, "18-Jan": 3, "17-Jan": 1, "16-Jan": 5, "14-Jan": 3, "13-Jan": 1, "11-Jan": 1, "10-Jan": 1, "9-Jan": 1, "8-Jan": 1, "6-Jan": 1, "5-Jan": 3, "4-Jan": 4, "3-Jan": 2, "2-Jan": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/2019/salvini_words b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_words new file mode 100644 index 0000000..ffafddf --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/2019/salvini_words @@ -0,0 +1,13890 @@ +accolta +tivù +onori +spese +italiani +dovrebbe +stare +galera +roba +matti +lasciamo +tedesca +speronatrice +navi +militari +sinistra +governo +clandestino +italia +oriana +molliamo +iostoconoriana +serata +magica +fiorenzuola +provincia +piacenza +tantissimi +emiliani +voglia +cambiare +molla +centimetro +buonanotte +amici +giusto +tenere +atti +serie +mondo +contrario +tivù +pubblica +pagata +italiani +andata +onda +accolta +onori +infischiata +leggi +altro +speronato +motovedetta +guardia +finanza +rischiando +ammazzare +occupanti +messaggio +bella +serata +italia +deve +accogliere +profughi +migranti +economici +migranti +climatici +africa +sconvolgimenti +ambientali +colpa +amen +🙄 +🔴al +senato +bloccata +legge +telecamere +asili +case +riposo +fortemente +voluta +lega +ora +parla +problemi +privacy +date +mossa +bambini +anziani +persone +fragili +altro +richiedono +tutta +tutela +possibile +evitare +alcuni +orrori +purtroppo +troppo +spesso +turbano +cronache +aderito +petizione +quotidiano +tempo +dare +sveglia +questione +schieramento +politico +solo +buonsenso +potete +scrivere +email +aderire +telecamere +iltempo +it +altro +carolanti +poco +lucia +borgonzoni +diretta +giletti +la7 +26gennaiovotolega +borgonzonipresidente +tanto +affetto +tante +idee +tanta +voglia +cambiamento +oggi +rimini +gennaio +scriveremo +insieme +pagina +storia +stupenda😊 +26gennaiovotolega +ora +diretta +fiorenzuola +rete +grazie +fiorenzuola +grazie +piacenza +❤️ +oggi +carlino +uscito +sondaggio +dà +vantaggio +oltre +punti +fido +poco +sondaggi +contano +me +cercheremo +meritarci +altro +affetto +gennaio +insieme +possiamo +cambiare +emilia +romagna +dopo +anni +sinistra +poi +cambiamo +italia +meno +giorni +ogni +voto +conta +state +26gennaiovotolega +borgonzonipresidente +saluto +fiorenzuola +arda +piacenza +emilia +oggi +tanti +disagi +causa +maltempo +state +diretta +esaurito +fiorenzuola +piacenza +tantissimi +riescono +entrare +arrivando +poco +diretta +26gennaiovotolega +borgonzonipresidente +🔴altri +presunti +profughi +sbarcati +oggi +messina +solita +nave +ong +porti +aperti +significano +partenze +sbarchi +morti +droga +armi +mani +scafisti +trafficanti +ottimo +risultato +conte +lamorgese +vergogna +sorrisi +abbracci +tanta +voglia +buonsenso +mattina +congresso +nazionale +federanziani +rimini +vuole +male +avanti +tutta +26gennaiovotolega +spara +salvini” +ecco +frutti +odio +certa +sinistra +avanti +testa +alta +senza +paura +crollato +viadotto +autostradale +vicino +savona +immagini +terrificanti +sembra +fatto +male +nessuno +già +miracolo +abbraccio +italiani +colpiti +oggi +disastrose +altro +conseguenze +maltempo +grazie +vigili +fuoco +forze +ordine +protezione +civile +volontari +coloro +ore +tutta +italia +rischiano +vita +salvare +altri +ancora +diretta +rimini +pensiero +italiani +colpiti +conseguenze +maltempo +ricordate +prete +toscano +vorrebbe +portare +tutta +africa +italia +oggi +concertino +sardinante +bella +ciao +messa +po +vedremo +sanremo +😀 +roba +matti +😋🐟 +🔝 +accoglienza +stupenda +congresso +nazionale +federanziani +rimini +tanta +energia +altro +vecchi” +quei +poveretti +5stelle +grillo +vorrebbero +togliere +diritto +voto +26gennaiovotolega +borgonzonipresidente +sempre +diretta +rimini +senior +italia +federanziani +grazie +invito +splendida +energia +state +26gennaiovotolega +borgonzonipresidente +cosmosenior +saluto +rimini +lucia +borgonzoni +tante +nonne +tanti +nonni +😊 +26gennaiovotolega +borgonzonipresidente +ancora +splendida +domenica +rimini +amici +tempo +fa +pensiero +enormi +disagi +causa +forti +piogge +speriamo +diano +po +tregua +altra +ong +straniera +altro +sbarco +altro +regalo +appena +torniamo +governo +tornano +valere +regole +controlli +serietà +portichiusi +buona +domenica +amici +vediamo +mattina +rimini +convegno +federanziani +tanti +nonni +nonne +quali +quel +genio +grillo +vorrebbe +togliere +diritto +voto +altro +inaugurazione +sede +riminese +lega +poi +direzione +fiorenzuola +arda +piacenza +avanti +testa +alta +emilia +romagna +dopo +anni +convinto +impegniamo +insieme +sinistra +casa +26gennaiovotolega +guardate +saluta +😀😀😀 +ben +alzati +buona +domenica +amici +gattiniconsalvini +buonanotte +amici +pensiero +vuole +male +sempre +sorriso +arma +migliore +☺️☺️☺️ +onore +carabinieri +orgoglio +nazionale +grandissimo +abbraccio +signora +luciana +❤️ +bel +biglietto +visita +offerto +mondo +milano +pd +niente +dire +k +🔴se +opera +arte +me +fa +ridere +nemmeno +cazzo +può +dire +me +consentite +certe +cose +scherza +ammazza +compagna +coltellate +aspettava +bambino +solo +parola +bastardo +solo +pena +galera +vita +eccitato +fazio +piacere +onore” +ospitare +spese +signorina +carola +nota +bene +speronate +navi +militari +italiane +fatevi +nemmeno +avanti +nessun +invito +diretta +splendida +perugia +presidente +umbria +donatellla +tesei +nuova +giunta +consiglieri +regionali +lega +state +incantevole +perugia +vista +alto +grazie +umbria +prima +soprattutto +dopo +voto +poco +diretta +presidente +donatella +tesei +squadra +amministrerà +splendida +regione +scelto +modello +buongoverno +lega +quasi +mila +euro +spesi +murales +pro +immigrazione +pd +milano +priorità +smentiscono +mai +salvini +spara +immigrati +opera +arte +no +solita +schifezza +sinistrato +intanto +raggi +zingaretti +litigano +roma +sommersa +rifiuti +grillo +maio +neanche +ridere +conte +fa +altro +scappare +aziende +approva +trattati +silenzio +renzi +calenda +cose +fondano +partiti +lavoriamo +molliamo +buon +sabato +amici😊 +merenda +dietetica +buon +pomeriggio +amici +🔴 +roma +ecco +vergognosa +finta +raccolta +differenziata +mentre +duo +sciagura +raggi +zingaretti +continuano +litigare +roma +continua +essere +seppellita +immondizia +scandalosa +complicità +altro +gestisce +rifiuti +lega +pronta +mandare +casa +incapaci +giovedì +novembre +ore +teatro +italia +inizia +conto +rovescia +restituire +pulizia +sicurezza +dignità +capitale +raggidimettiti +🔴facciamo +girare +ecco +cos +trattato +europeo +rischia +saltare +risparmi +italiani +banca +colpa +governo +folle +vorrei +conte +svenduto +sovranità +altro +tenersi +poltrona +così +alto +tradimento +pace +guerra +reato +punibile +galera +amici +aspetto +oggi +perugia +verso +città +domenica +insieme +neo +governatrice +umbria +donatella +tesei +zona +venite +trovarci +cosa +fa +farsi +po +pubblicità +squallore +scultura” +raffigura +mentre +sparo +immigrati +vera +schifezza +istigazione +odio +violenza +altro +arte +vedo +ora +tornare +napoli +ammirare +fantastici +presepi +tradizionali +porcherie +votateci +beneficenza +destra +pericolosetta +” +prima +ancora +voleva +togliere +voto +anziani +cancellare +elezioni +grillo +ormai +fa +ridere +poveretto +fa +pena +andate +leggervi +commenti +ex +elettori +5stelle +pagina +fatevi +risata😂 +effettivamente +😸 +gattiniconsalvini +buongiorno +gattini +😸 +gattiniconsalvini +buonanotte +me +gattoboy +gattiniconsalvini +solo +anni +galera +ammazzato +ragazzo +meno +complici +schifo +giustizia +marco +vannini +quarto +grado +meraviglia +😻😻😻 +piccola +parte +migliaia +bimbi +felini +inviati +grazie +gattiniconsalvini +terapeutici +portano +gioia +pagina +predispongono +bene +sonno +😊 +potete +creare +cartello +personalizzato +mici +andando +legaonline +it +gattiniconsalvini +permetteremo +nessuno +svendere +sovranità +italia +qualche +poltrona +qualche +minuto +ecco +intervista +oggi +verità” +buona +serata +amici +bottiglie +sassi +insulti +verso +polizia +minacce +verso +lega +ecco +democratici +sinistra +me +sembrano +nazisti +rossi +molliamo +centimetro +👏👏👏😂 +stopmes +ieri +sorrento +grazie +ragazzi +cose +riempie +orgoglio +tantissimi +giovani +avvicinano +lega +deciso +impegnarsi +italia +forte +giusta +libera +🇮🇹 +fiera +g +giocare +regalato +bacchetta +magica +mezza +idea +desiderio +realizzare +😉 +forza +sinisa +forza +guerriero +frutta +glielo +dice +dolcevita +velluto +piacciono +fin +bambino +🤣 +poi +arriva +momento +prendere +figlia +scuola +gioia😊 +🔴 +giù +mani +conti +correnti +italiani +me +lega +salvini +premier +congratulazioni +affettuosi +auguri +tanti +nuovi +successi +presidente +brasile +jair +messias +bolsonaro +nuova +avventura +aliança +pelo +brasil +🇮🇹🇧🇷 +indovinello +complicità +governo +sbarcheranno +centinaia +immigrati +🤔 +intervista +unomattina +sicuro +piacerà +aiutate +condividerla +grazie +amici +❤️ +bene +tribunale +finalmente +riconosce +bloccare +sbarchi +autorizzati +immigrati +reato +curioso +vedere +punto +cosa +decideranno +altre +procure +volta +tornato +governo +rifarò +esattamente +cose +mai +visto +altri +paesi +qualcuno +manifesta +opposizione +temendo +vada +governo +😊 +comunque +nuovo +sport +inseguire +salvini +pronto +prossimi +appuntamenti +domani +altro +pomeriggio +perugia +domenica +rimini +mattino +poi +fiorenzuola +arda +provincia +piacenza +oggi +edicola +verità” +pagina +lunga +spero +interessante +intervista +parlo +molto +altro +🇮🇹 +roma +diretta +festival +lavoro +seguitemi +seguito +rai +pare +essere +stato +chiaro +mes +tasse +mani +conti +correnti +sbarchi +senza +controllo +governo +minoranza +danni +enormi +paese +prima +meglio +altro +giú +mani +natale +appello +genitori +insegnanti +lasciate +libertà +iniziative +celebrano +festa +bella +nessun +bimbo +italiano +straniero +offende +davanti +presepe +italia +bisogno +lavoro +sicurezza +valori +governo +vuole +svendere +risparmi +banca +italiani +salvare +poltrona +glielo +permetteremo +ora +saluto +diretta +unomattina +rai +sperando +riuscire +portare +voce +amici +😊 +gioia +occhi +gemelli +incontrati +sorrento😊 +buona +vita +ragazzi +buona +giornata +amici +dolce +limone +positano +riduce +danni +governo +ciarlatano +buonanotte +amici +😊 +domani +mattina +tempo +accendere +saluto +diretta +rai +unomattina +amici +micio +birbantello +😹 +arrivati +circa +10mila +foto +bimbi +felini +ricevute +marea +cani +cagnolini +grazie +organizzando +vedrete +😉 +gattiniconsalvini +portano +bene +grande +vittoria +lega +insistito +fine +raggiunto +risultato +emilia +romagna +niente +imu +immobili +terremotati +inagibili +avanti +così +accordi +innominabili +insaputa +popolo +stopmes +nessuno +tocchi +risparmi +italiani +secondo +genio +vuole +togliere +diritto +voto +anziani +adesso +pericolo +italia +sigarette +elettroniche +piacere +grillo +svapa +passa +fa +leggete +storia +troppo +spesso +stato +burocrazia +uffici +esercitano +violenza +fuori +controllo +umiliante +brutale +mano +procedura” +spazio +briciolo +umanità +compassione +italia +mente +intervista +la7 +collegamento +magnifica +sorrento +buona +serata +amici +saluto +positano +incantevole +pioggia +dopo +aver +accolto +proprio +oggi +sindaco +grande +famiglia +lega +😊 +bellezza +italia +🇮🇹 +avanti +tutta +amici +dicembre +fiandre +anversa +signora +prepara +mezzi +propriamente +pacifici +me +vantando +vasta +esperienza +campo +cosa +voluto +dire +dibattito +democratico +servirebbe +po +terapia +calmante +gattiniconsalvini +tavola +prima +italia +🇮🇹 +buon +pranzo +amici +😊 +⚠ +stato +polizia +fiscale +dopo +aver +riaperto +porti +inventato +tasse +plastica +zucchero +ora +governo +pd +5stelle +renzi +vuole +pure +entrare +conto +corrente +italiani +follia +lega +pronta +fermare +matti +nooooo +miagolii +delusione +sorrento +poca +pappa +gattiniconsalvini +😿😘 +🔴 +moscovici +dice +mes +salverebbe +banche +sì +francesi +tedesche +mes +metterebbe +infatti +crisi +banche +pagare +crisi +banche +tedesche +francesi +altro +niente +presidente +abi +governatore +bankitalia +preoccupati +capito +mes +rischiamo +bis +disastro +bail +anzi +cento +volte +peggio +attacco +democrazia +risparmio +italiani +deve +passare +sempre +fatto +lega +opporrà +ogni +sede +ogni +maniera +conte +governo +sinistra +parte +diretta +sorrento +sindaco +giuseppe +cuomo +sindaco +positano +michele +lucia +entrano +grande +famiglia +lega +benvenuti +riesci +pagare +multa +entrano +conto +corrente +pignorarti +risparmi +unione +sovietica +fiscale +stato +polizia +fiscale +pericolosi +me +piace +sacco +cantante +voglio +bene +fiorella +onore +venezia +veneto +meritano +solo +rispetto +vicinanza +trotta +trotta +cavallino +trotto +😊 +buongiorno +amici +☀️ +direzione +campania +vediamo +sorrento +positano +🇮🇹 +buonanotte +pelosetti +micetti +cagnolini +ieri +oggi +domani +gattiniconsalvini +🐱❤️🇮🇹 +accidenti +😸 +gattiniconsalvini +domani +mattina +luoghi +stupendi +orgoglio +campania +italia +intera +dare +benvenuto +grande +famiglia +lega +sindaci +sorrento +positano +avanti +tutta +primagliitaliani +🇮🇹 +bravissima +lucia +orgoglioso +donne +lega +😊 +26gennaiovotolega +lega +sempre +detto +conte +tria +mandato +toccare +mes +qualcuno +agito +fatto +tradendo +mandato +popolo +italiano +alto +tradimento +costa +caro +prima +volta +ex +avvocato +popolo +mente +verità +verrà +fuori +fa +amare +micetti +😻 +grazie +decine +migliaia +amici +felini +pubblicati +ovunque +viva +sorridere +gattiniconsalvini +diretta +roma +bruno +vespa +state +🔴 +prendiamo +sprangate +arcate +gengivali” +viva +libera +democratica +partecipazione +pensa +trovo +niente +democratico +dire +dovremmo +essere +presi +altro +sprangate +arcate +gengivali +salvini +semina +odio +po +gattiniconsalvini +potrebbero +essere +terapeutici +certi +violenti +🔴 +signor +conte +bugiardo +smemorato +onesto +direbbe +tavoli +così +ogni +dibattito +pubblico +sempre +detto +no +mes +difficile +ammettere +resto +altro +necessario +numerose +dichiarazioni +testimoniano +contrarietà +espressa +componenti +lega +ministri +compresi +argomento +cosa +teme +presidente +consiglio +forse +svenduto +risparmi +italiani +forza +sinisa +grande +sportivo +vero +uomo +bella +chiacchierata +mario +giordano +buon +pranzo +amici +😊 +🔴vogliamo +limitare +danni +governo +imbarazzante +basta +piangere +poliziotti +morti +trieste +bisogna +mettere +quattrini +speriamo +intelligenza +evitare +no +pregiudiziali +altro +proposte +lega +tagliando +tagli +sicurezza +pericolosi +triste +ciò +avvenga +silenzio +attuale +ministro +interno +frizzantella +puntata +ieri +sera +mario +giordano +cinema +pop +corn +panini +sardine +miao +😸 +ve +ripropongo +pagina +verso +sempre +comunque +gattiniconsalvini +prima +parte +roma +diretta +camera +presentare +proposte +parlamentari +lega +sicurezza +difesa +soccorso +pubblico +state +sovranisti +virus +tenere +bada +pensa +purtroppo +presidente +parlamento +europeo +pd +sovranità +appartiene +popolo +libero +democratico +esercizio +elezioni +così +sperimentato +umbria +vedranno +gennaio +emilia +romagna +calabria +😉 +vedo +gattini +piaciuti +amarli +😸 +gattiniconsalvini +buongiorno +amici +oggi +caffè +spremuta +cominciare +bene +giornata +buona +guarigione +mirò +grazie +migliaia +foto +mici +inviato +spettacolari +pubblicheremo +gattini +intelligenti +puliti +liberi +portano +bene☺️ +buonanotte +amici +gattiniconsalvini +pop +corn +mezzanotte +può +fare +☺️ +state +seguendo +rete +ringrazio +mando +abbraccio +serata +ancora +finita +amici +nottambuli +poco +onda +rete +mario +giordano +seguito +cartabianca +grande +lucia +sondaggi +ufficiali +mostrati +rai +danno +pd +vincente +emilia +romagna +stesso +valore +davano +candidato +pd +stelle +altro +vincente +umbria +poi +candidata +lega +prevalso +soli +venti +punti +cavallo +☺️☺️☺️ +26gennaiovotolega +ora +rai +pare +candidato +pd +dimenticato +governo +compagni +partito +☺️ +26gennaiovotolega +seguendo +lucia +borgonzoni +rai +sentire +voce +twitter +hashtag +borgonzonipresidente +cartabianca +forza +lucia +voglia +riuscite +stare +svegli +dopo +aver +seguito +lucia +borgonzoni +diretta +rai +raccomando +trovate +rete +mario +giordano +verso +buona +serata +amici +oggi +niente +pranzo +ora +mettono +davanti +carbonara +vado +cosa +dolce +bello +gattini +😉 +bambini +felini +piacciono +sardine +pesciolini +mettete +foto +commenti +miao +😸 +gattiniconsalvini +invecchiando +diventa +saggio +invecchiando +diventa +vauro +amen +chef +rubio +travestito +prete +😂 +amici +sera +diretta +rai +lucia +borgonzoni +cartabianca +prima +liberiamo +emilia +romagna +poi +liberiamo +italia +🇮🇹 +26gennaiovotolega +borgonzonipresidente +commenti +liberi +https +www +facebook +com +cartabiancarai3 +photos +buon +pomeriggio +amici +saluto +terni +festeggiare +storica +liberazione +umbria +accogliere +nuovo +consigliere +comunale +lascia +5stelle +entra +grande +famiglia +lega +benvenuto +conte +subito +parlamento +dire +verità +sì +modifica +mes +rovina +milioni +italiani +fine +sovranità +nazionale +ieri +sera +collegamento +volante +porro +pazienza +serve +grillini +pensassero +figuracce +ius +soli +ilva +😇 +dimenticare +scommetto +oggi +quasi +nessun +giornale +quasi +nessun +telegiornale +ricorderà +proprio +novembre +anni +fa +manifestanti +comunisti +ammazzarono +milano +antonio +altro +annarumma +poliziotto +ragazzo +anni +testa +penetrata +tubolare +acciaio +lì +cominciarono +anni +piombo +stagione +odio +violenza +verso +forze +ordine +verso +sbirri +ancora +oggi +insultati +attaccati +cortei +certi +democratici +figli +papà +stagione +italia +deve +tornare +attaccano +rafforzano +mollo +amici +diretta +rimini +insieme +forze +ordine +congresso +nazionale +sindacato +autonomo +polizia +state +🇮🇹 +orgoglioso +essere +rimini +congresso +sindacato +autonomo +polizia +sap +ringrazio +invito +accoglienza +ieri +oggi +domani +ministro +semplice +cittadino +sempre +parte +forze +ordine +🇮🇹 +mare +inverno +saluti +rimini +buon +martedì +amici +felice +partecipare +oggi +rimini +congresso +sindacato +autonomo +polizia +sap +poi +terni +alcune +belle +novità +riguardano +lega +roma +senato +tengo +aggiornato +diretta +avanti +tutta +altra +indagine +altro +processo +aver +difeso +confini +sicurezza +onore +italia +me +medaglia +rifarei +rifarò +portichiusi +🇮🇹 +procura +agrigento +problemi +gravi +occuparsi +buongiorno +ama +italia +tempi +governanti +anti +italiani +cosa +scontata +🇮🇹 +grazie +luca +toni +bomber +vero +🇮🇹 +auguro +notte +serena +amici +ora +diretta +volante +rete +collegamento +nicola +porro +follia +manovra +economica +emilia +romagna +accorti +casa +pd +però +ieri +ritrova +bologna +parlare +ius +soli +qualcuno +vive +marte +ormai +giochetto +capito +gratta +sardina +trovi +piddina +democratica” +assessore +comune +provincia +bologna +dice +delinquenti +prestati +politica” +amici +insultano +vinciamo +26gennaiovotolega +novi +modena +splendida +famiglia +aperto +porte +casetta +legno +vivono +ormai +anni +dopo +terremoto +tornare +vecchia +casa +parlerà +forse +altri +anni +efficienza +velocità +solo +lega +votò +tempi +sospetti +mes +crimine +confronti +lavoratori +risparmiatori +italiani +qualcuno +accordato +oscuro +popolo +fondo +ammazza +stati +ponga +rimedio +adesso +prima +tardi +altrimenti +alto +tradimento +stopmes +italia +zuccheri +minerbio +bologna +unico +zuccherificio +italiano +compra +sano +compra +amore +compra +tricolore +🇮🇹 +azienda +agricola +valentina +minerbio +bologna +adoro +funghi +😋 +avviso +governo +anti +italiano +noiussoli +cittadinanza +regala +lega +opporrà +modi +ve +garantisco +diretta +zuccherificio +minerbio +bologna +tante +realtà +governo +pd +m5s +renzi +vorrebbe +soffocare +tasse +state +sgarbi +diritto +usare +contante +severo +giusto +no +sinistri +governo +vorrebbero +invece +stato +polizia +fiscale +solito +vizietto +chiesti +anni +galera +uccise +rapinatori +ferì +terzo +dopo +aggredito +minacciato +moglie +pistola +poi +risultata +finta +giustizia” +italiana +chiede +condanna +anni +galera +commerciante +siciliano +anni +invece +iostoconguido +almeno +qualcuno +parla +aspetto +reazioni +condanne +parte +indignati +professione +oppure +minacce +vengono +sinistra +meno +gravi +minacciose +profilo +democratica +sardina +invoca +omicidio +inspiegabilmente +scomparso +facebook +gratti +sardino +trovi +piddino +protesta +proposte +grande +differenza +sinistra +lega +distrugge +costruisce +oggi +emilia +incontrare +aziende +resistono +calamità +naturali +calamità +fiscali +governo +tasse +minerbio +bo +poi +novi +modena +mo +carpi +mo +altro +modena +democratiche +sardine +spargono +odio +arrivando +appendermi +testa +giù +bontà +dico +solo +protesta +proposte +grande +differenza +sinistra +lega +distrugge +costruisce +piovono +tasse +nonostante +buona +settimana +amici +buon +lunedì +amici +minuti +live +parlare +po +governo +farsa +invasione +superando +ogni +limite +sinistra +vergogna +anti +italiana +cittadinanza +biglietto +premio +luna +park +meritata +desiderata +conquistata +noiussoli +sardine +democratiche” +piazza +oggi +modena +me +poco +tempo +fa +invocava +omicidio +parte +giustiziere +raffigurava +testa +giù +bella +roba +aspetto +reazioni +altro +indignate +giornalisti +politici +merluzzi +viva +modena +viva +emilia +romagna +viva +libertà +democrazia +vere😉 +governo +pericolosi +incapaci +detestati +maggioranza +italiani +casa +noiussoli +buonanotte +amici +molla +millimetro +mai +girare +succedendo +italia +oggi +pd +5stelle +litigano +ius +soli +pericolosi +incapaci +basta +casa +pensiero +connazionali +difficoltà +nord +sud +gravissimi +disagi +maltempo +grazie +vigili +fuoco +forze +ordine +protezione +civile +sindaci +prefetture +altro +volontari +impegnati +impedire +danni +peggiori +domani +emilia +visite +già +programmate +minerbio +bologna +carpi +modena +quando +fiumi +esondano +distinzione +colore +politico +uniti +sostenere +aiutare +mettere +sicurezza +persone +abitazioni +attività +ricordo +splendide +emozioni +paladozza +bologna +orgoglioso +lega +protagonista +nuova +speranza +emilia +romagna +italia +gennaio +fa +storia +amici +26gennaiovotolega +🔴che +schifo +sinistra +disgustoso +presunto +intellettuale” +assessore +cultura” +municipio +roma +vergogni +chieda +scusa +orgoglioso +donatella +tesei +neo +governatrice +altro +umbria +orgoglioso +lucia +borgonzoni +governatrice +emilia +romagna +orgoglioso +tutte +donne +lega +sostiene +candida +donne +brave +preghiamo +signore +ritrovi +equilibrio +serenità +pensare +pd +renzi +sinistri +vari +anni +insultato +deriso +quando +dicevo +scappano +nessuna +guerra +fine +verità +viene +sempre +galla +🔴 +pronti +dare +battaglia +dentro +fuori +parlamento +fermare +ius +soli +evitare +cambino +decreti +sicurezza +governoclandestino +qualcuno +pensa +risolvere +problemi +imprese +avvocati +andando +giro +tribunali +vuol +dire +governo +persone +pericolose +incapaci +solo +rischiano +lasciare +casa +decine +migliaia +lavoratori +fare +pessima +pubblicità +italia +altro +avvocato +popolo +duce +proprio +ossessionati +bene +buona +domenica +amici +testarda +voglia +combattere +🇮🇹 +quando +figlia +colora +capelli +blu +dice +papà +perfetto +adesso +bellissimo +”😁 +sinistra +abbracciato +cultura +permissivismo +spacciatori +droga +meritevoli +compassione +maggior +ragione +nordafricani +dimenticando +quel +vecchio +popolo +sinistra +vive +situazioni +degrado” +silenzio +studio +🔴guerriglia +urbana +ieri +vicino +duomo +bande +nordafricani +colpi +bottigliate +sediate +sotto +sguardo +terrorizzato +passanti +vergogna +milano +spero +punizioni +esemplari +altro +caso +figlio +buonismo +sinistra +politica +porti +aperti” +clandestini +fa +torto +milioni +immigrati +perbene +lavorano +mandano +figli +scuola +rispettano +cultura +tassa +inventeranno +conte +renzi +zingaretti +maio +stanotte +buonasera +amici +collego +diretta +minuti +trovo +qualcuno +sinistra +vorrebbero +tappare +bocca +pensano +viva +giornalisti +schiena +dritta +vive +male +signore +giornate +piene +rabbia +odio +gente +baci +affettuosi +umana +pietà +risposta +migliore +solo +odiare +sorriso +buongiorno +amici +posso +augurarvi +buon +sabato +❤️ +gennaio +impegniamo +storia +ancora +emozionato +rivedermi +migliore +ricompensa +banale +amici +emiliani +romagnoli +sento +dirvelo +ancora +grazie +sappiate +solo +cosa +risparmierò +gennaio +liberiamo +emilia +romagna +poi +liberiamo +italia +🇮🇹 +26gennaiovotolega +borgonzonipresidente +popolo +paladozza +rancore +odia +emilia +romagna +sorride +ama +sogna +26gennaiovotolega +borgonzonipresidente +🔴 +ieri +bologna +volantini +titolo +impiccato” +capovolta +distribuiti +bravi +ragazzi” +sinistra +violenta +solo +odiare +unica +risposta +possibile +sorriso +amici +ilva +governo +pericolosi +incapaci +nemici +imprese +lavoratori +altro +fare +causa +dimettetevi +chiedete +scusa +pensate +qualcuno +lega +andasse +disturbare +manifestazioni +altrui +democratici +signori +odiano +forze +ordine +vorrebbero +vedermi +appeso +testa +giù +peggio +italia +offrire +odio +risponderemo +energia +positiva +sorrisi +forza +idee +grazie +❤️ +🔴 +gratitudine +immensa +migliaia +persone +abbracciato +me +lucia +profondo +rispetto +manifesta +pacificamente +idee +nessun +rispetto +invece +protestare +lancia +sassi +bottiglie +verso +polizia +carabinieri +viva +bologna +viva +libertà +democrazia +serve +miliardo +gente +subito +può +prendere +miliardi +governo +vorrebbe +regalare +paga +spesa +carta +credito +metteremo +tutta +venezia +invece +dare +miliardi +usa +carta +credito +anziché +contanti +auguro +intero +parlamento +unisca +sostegno +popoli +venezia +pellestrina +matera +altamura +tutte +altro +persone +notte +perso +risparmi +vita +lega +pronta +proposte +concrete +funzionamento +mose +contributo +straordinario +veloce +immediato +territorio +ora +venezia +luca +zaia +incontrare +cittadini +commercianti +contatto +lavoro +tutte +altre +città +italiane +colpite +maltempo +gennaio +spero +vada +finire +finita +umbria +risaputo +prima +ignorano +poi +deridono +poi +vinci +grazie +serata +emozionante +ora +avanti +tutta +lucia +buonanotte +amici +🇮🇹 +messaggio +nasconde +verità +palazzetto +andate +avanti +così +vuol +dire +strada +giusta +negate +realtà +realtà +viene +galla +viva +donne +uomini +resistono +🇮🇹 +paladozza +borgonzonipresidente +ora +tocca +me +seguiteci +ora +tocca +lucia +borgonzoni +ovazioni +paladozza +insieme +borgonzonipresidente +applausi +governatori +donatella +tesei +umbria +massimiliano +fedriga +friuli +venezia +giulia +christian +solinas +sardegna +attilio +fontana +lombardia +luca +zaia +veneto +paladozza +borgonzonipresidente +grazie +marco +omboni +imprenditore +settore +imballaggi +plastica +secondo +plastictax +andrà +punire +industria +riciclo +aprirà +strada +materiali +provenienti +estremo +oriente +penalizzerà +eccellenza +industria +italiana +paladozza +borgonzonipresidente +grazie +professor +alessandro +amadori +paladozza +borgonzonipresidente +governatori +paladozza +pronti +intervenire +palco +borgonzonipresidente +emozionanti +paladozza +borgonzonipresidente +palco +paladozza +bologna +poeta +davide +rondoni +borgonzonipresidente +🔴 +paladozza +spettacolo +fate +girare +emilia +romagna +vuole +fare +storia +vuole +male +😉 +borgonzonipresidente +diretta +bologna +paladozza +spettacolo +lucia +borgonzoni +governatori +lega +migliaia +emiliani +romagnoli +presenta +amico +mario +giordano +state +borgonzonipresidente +26gennaiovotolega +poco +partiamo +pochi +minuti +iniziamo +state +paladozza +borgonzonipresidente +paladozza +pieno +breve +comincia🔝 +rimanete +connessi +borgonzonipresidente +quasi +paladozza +pronto +😊 +borgonzonipresidente +vuole +seguire +evento +paladozza +casa +appuntamento +diretta +pagine +facebook +instagram +youtube +pronti +borgonzonipresidente +🔴come +fa +essere +cosí +scemi +giù +mani +bambini +natale +sentire +voce +rete +usiamo +hashtag +borgonzonipresidente +paladozza +social +tanti +pullman +arrivo +tutta +emilia +romagna +destinazione +paladozza +bologna +💪🏻 +buon +viaggio +vediamo +poco +borgonzonipresidente +aperte +porte +paladozza +aspettiamo +😊 +borgonzonipresidente +diretta +bologna +insieme +lucia +borgonzoni +aprire +porte +paladozza +state +borgonzonipresidente +guardate +spettacolo +paladozza +amici +vediamo +bologna +insieme +borgonzonipresidente +vedo +ora +😊 +quasi +sera +bologna +😊 +ℹ +mano +legaonline +it +emiliaromagna +✉ +emiliaromagna +legaonline +it +bologna +paladozza +portiamo +dietro +quinte +grande +evento +sera +lucia +borgonzoni +borgonzonipresidente +saluto +paladozza +bologna +amici +emiliani +romagnoli +sera +assicuro +spettacolo +🔝 +grave +perdita +italiani +resistere +senza +vedere +tizio +tivù +🤣 +manca +sempre +meno +festa +sera +ore +paladozza +bologna +lucia +borgonzoni +pronta +😊 +gennaio +andiamo +fare +storia +emilia +romagna +🚌 +trova +altro +pullman +https +legaonline +it +download +pullman +paladozza +14nov +pdf +ℹ +mano +legaonline +it +emiliaromagna +✉ +emiliaromagna +legaonline +it +litigano +tasse +quota +giustizia +tempo +pensano +prendere +ancora +giro +italiani +poltrona +collante +forte +sicuro +prossime +elezioni +partire +emilia +romagna +lanceranno +messaggio +chiaro +governo +abusivi +dopo +aver +dato +cittadinanza +carola +rackete +ora +governo +macron +fa +sgomberare +immigrati +clandestini +parigi +altro +porti +aperti +nuovi +accordi +europei +altri +paesi +difendono +propri +altro +interessi +mentre +italia +aumentano +sbarchi +pd +vuole +cancellare +decreti +sicurezza +conte +maio +renzi +🔴 +immigrati +europa +impegnata +prendere +italia +grecia +stati +ricollocati +solo +appena +italia +ennesima +presa +giro +intanto +governo +incapaci +riaperto +porti +raddoppiati +sbarchi +date +occhiata +basta +qualche +numero +smontare +bugie +tassatori +governo +abusivo +vietato +ingresso +lega +democratici” +fascisti” +bologna +paladozza +allestimento +quasi +sera +tantissimi +dare +voce +voglia +cambiamento +emiliani +romagnoli +26gennaiovotolega +🚌 +trova +pullman +altrohttps +legaonline +it +download +pullman +paladozza +14nov +pdf +ℹ +mano +legaonline +it +emiliaromagna +✉ +emiliaromagna +legaonline +it +posso +offrirvi +cappuccino +sorpresa +☺️ +buona +giornata +sorriso +dura +istante +ricordi +può +essere +eterno” +friedrich +schiller +domani +sera +aspetto +bologna +già +migliaia +adesioni +sinistra +mettendo +giro +voce +entrare +bisogna +pagare +biglietto +no +incontro +parleremo +futuro +libertà +arte +proposte +gratis +😉 +buonanotte +amici +26gennaiovotolega +intervista +parma +tv +viva +emittenti +locali +voci +autentiche +libere +territori +26gennaiovotolega +ieri +sera +floris +annoiato +pazienza +manca +😊 +buona +serata +amici +poco +rete +scriviamo +letterina +ex +avvocato +italiani +cosa +scrivereste +felice +aver +partecipato +oggi +inaugurazione +consolato +israeliano +firenze +insieme +ambasciatore +dror +eydar +altri +amici +comunità +ebraica +sempre +sempre +vicino +popolo +israele +altro +baluardo +democrazia +terra +martoriata +ore +missili +lutti +ringrazio +comunità +fiorentina +dato +vita +nuovo +presidio +libertà +progresso +relazione +economica +commerciale +fondamentale +momento +europa +israele +subisce +isolamento +silenzio +generale +forza +venezia +qualcuno +collego +verso +😊 +avere +permesso +soggiorno +motivi +umanitari +basta +dimostrare +essersi +integrati +✅ +corte +cassazione +dà +ragione +lega +riaprono +porti +vogliono +cancellare +decreti +sicurezza +ecco +nuovo +assessore +cultura +scelto +magistris +povera +napoli +auguro +signore +autore +fumetti +pare +notevoli +idiozie +ricevere +mai +proiettili +dediche +murarie +tipo +salvini +muori +spara +salvini +altre +minacce +propria +incolumità +ogni +caso +sapete +intimidire +sorrido +vado +avanti +😊 +🔴roba +matti +voleva +essere +portato +sotto +casa +scambiando +autobus +taxi +accontentato +dato +escandescenze +distruggendo +parabrezza +colpi +badile +cosí +richiedente +asilo” +mali +altro +davvero +rispettoso +paese +ospita +viva +porti +aperti” +viva +cancellazione +decreti +sicurezza +quel +cattivone +salvini +grazie +conte +cuore +testa +venezia +veneto +matera +zone +colpite +maltempo +lega +governatore +veneto +luca +zaia +lavoro +interventi +immediati +patrimoni +paese +altro +eredità +lasciare +nipoti +vanno +difesi +tutelati +ogni +costo +ecco +cosa +detto +mattina +canale +diretta +camera +italia +riparte +solo +sostiene +imprese +taglia +tasse +burocrazia +prosegue +direzione +pace +fiscale +aiuta +davvero +famiglie +🔴 +patrimonio +umanità +governo +può +ignorare +danni +provocati +maltempo +venezia +utilizzi +subito +miliardi +governo +vorrebbe +regalare +paga +bancomat +carta +credito +aggiornamenti +governatore +luca +zaia +drammatica +situazione +venezia +veneto +lavoro +vigili +fuoco +protezione +civile +forza +❤️ +ora +diretta +canale +seguite +amici +vediamo +poco +canale +fa +compagnia +disastro +venezia +quasi +metri +acqua +alta +morti +tutta +vicinanza +italia +fa +tifo +visto +la7 +italiani +sceglie +lega +cretini +fascisti” +no +solo +cittadini +vogliono +vivere +tranquilli +paese +sicuro +giusto +libero +buonanotte +amici +sempre +avanti +testa +alta +vinceremo +interesse +vuole +male +😊 +poco +onda +la7 +floris +qualcuno +sbarca +trovato +tubercolosi +diffuse +altri +organi +cose +italia +vedono +decenni” +pazzesco +italia +vive +pericoli +drammatici +governo +abusivo +anziché +altro +aumentare +controlli +riapre +porti +minaccia +cancellare +decreti +sicurezza +pericolosi +sicuro +milioni +italiani +vedono +ora +vadano +casa +sera +niente +meglio +fare +verso +accendete +la7 +fatemi +compagnia +😊 +buona +serata +amici +grazie +esserci +sempre +amici +emiliani +romagnoli +pronto +grande +evento +paladozza +giovedì +sera +bologna +lucia +borgonzoni +riempiamo +info +pullman +legaonline +it +emiliaromagna +soluzione +bonino +legalizzare +clandestini +messaggio +ideale +dare +trafficanti +esseri +umani +oer +ridurre +sbarchi +onore +imprenditore +rischiato +pur +salvare +dipendenti +quando +costretti +scegliere +pagare +tasse +pagare +propri +lavoratori +governo +serio +dovrebbe +tagliare +altro +imposte +invece +cosa +fa +governo +pd +5stelle +renzi +inventa +tasse +plastica +zucchero +voto +gennaio +emilia +romagna +mandiamo +casa +traditori +signore +dice +dovrebbe +vergognarsi +chiedere +scusa +parenti +morti +indegno +dirsi +prete +amici +emiliani +romagnoli +aspettiamo +tantissimi +giovedì +paladozza +bologna +insieme +futura +presidente +lucia +borgonzoni +pd +sinistra +dicono +altro +spocchia +emilia +romagna” +diciamo +emilia +romagna +tutti” +regione +sempre +efficiente +giusta +libera +conti +merito +tessera +partito +pensi +prima +italiani +solo +dopo +resto +mondo +dopo +anni +ora +cambiare +aria +gennaio +fa +storia +🚌 +trova +pullman +https +legaonline +it +download +pullman +paladozza +14nov +pdf +ℹ +mano +legaonline +it +emiliaromagna +✉ +emiliaromagna +legaonline +it +ministro +giustizia +esiste +salvini +sopravvive +fatica +sciocchezze +dice +simpatico +sincero +intelligente +obiettivo +niente +ossessionato +me +lega +mah +no +riesco +bravo +dire +bugie +amici +renzi +vogliono +premiare +definì +israeliani +essere +abominevoli +antisemitismo +schifo +ferma +perduto +🇮🇹 +anni +strage +nassiriya +dimenticare +ancora +pensiero +militari +feriti +attentato +domenica +onore +eroi +dato +vita +rischiano +ogni +giorno +proteggere +italia +🇮🇹 +minacce +interne +esterne +ieri +orogel +eccellenza +italiana +fabbriche +romagna +veneto +basilicata +valorizza +lavoro +agricoltori +italiani +viva +zucca +😉 +buongiorno +amici +insieme +può +☺️ +grazie +calore +affetto +dato +giorni +emilia +romagna +metto +tutta +sicuro +gennaio +insieme +libereremo +splendida +regione +buonanotte +amici +saluto +mirta +zio +giletti +qualcuno +ridire +sinistra +sanno +cosa +attaccarsi +neanche +zii” +vanno +bene +😂 +capiranno +sinistra +italia +riparte +solo +tagliando +tasse +semplificando +vita +imprese +🤬bibbiano +sinistra +raffreddore +vergognatevi +andremo +fino +fondo +bibbiano +bambini +rubati +famiglie +vergogna +deve +ripetere +sinistra +può +insabbiare +parlando +semplice +raffreddore” +lega +andrà +fino +fondo +tante +famiglie +emiliane +chiedono +giustizia +quando +forza +politica +pur +conservare +poltrone +rinnega +idee +battaglie +propria +stessa +natura +poi +accade +chiarezza +coerenza +fine +pagano +sempre +po +beneficenza +soldi +insulta +😊 +terrorismo +islamico +ancora +pericolo +anzi +pericolo +grave +mondo +mai +abbassare +guardia +salvini +sedano +rapporto +antico😉 +folle +tassa +plastica +governo +pd +5stelle +renzi +pure +dentifricio +costerà +mandiamoli +casa +volta +tutte +26gennaiovotolega +cesena +visitando +azienda +prodotti +surgelati +orogel +splendido +esempio +cooperativa +bella +sana +reinveste +utili +fa +lavorare +duemila +agricoltori +italiani +produce +prodotti +italiani +lunga +vita +eccellenze +vanno +tutelate +valorizzate +europa +mondo +italia +deve +essere +amica +imprenditori +farli +scappare +lega +vuole +aiutarli +investire +qua +abbassando +tasse +riducendo +burocrazia +altro +tassa +zucchero +ecco +cosa +detto +ieri +sera +giletti +buon +pranzo +amici +pioggia +mattina +tolto +sorriso +tanti +romagnoli +presenti +forlì +😊 +ogni +giorno +passa +sempre +fiducioso +gennaio +elezioni +giornata +festa +libertà +partecipazione +futuro +prima +emilia +romagna +poi +italia +26gennaiovotolega +renziani +vogliono +chef +rubio +rai +pagato +italiani +ancora +diretta +forlì +fiera +operatori +avicoli +state +me +26gennaiovotolega +buon +lunedì +forlì +😊 +26gennaiovotolega +buongiorno +amici +diretta +forlí +pioggia +ferma +😊 +26gennaiovotolega +amici +forlivesi +vediamo +poco +piazza +poi +fiera +appuntamento +successivo +pievesestina +cesena +partire +aspetto +26gennaiovotolega +proiettili +minacce +scritte +muri +fate +paura +fate +pena +date +ancora +forza +coraggio +mollo +mollerò +mai +buongiorno +buon +lunedì +primagliitaliani +🇮🇹 +serata +emozionante +bellaria +rimini +grazie +❤️ +buonanotte +amici +voglio +bene +buonasera +amici +saluto +bellaria +rimini +pronti +fare +storia +emilia +romagna +26gennaiovotolega +🔴grande +avanzata +santiago +abascal +amici +vox +españa +elezioni +spagnole +scommetto +già +pronti +titoli +tiggì +giornali +italiani +vittoria +estrema +destra +razzisti +altro +sovranisti +fascisti +macché +razzismo +fascismo +italia +spagna +vogliamo +solo +vivere +tranquilli +casa +portichiusi +🇮🇹🇪🇸 +ora +la7 +😊 +amici +poco +verso +collegamento +massimo +giletti +la7 +fa +compagnia +economia +rischio +tornare +salvini +davvero +pericolosi +anti +democratici +incapaci +😱 +baci +sorrisi +insulta +vuole +male +😘 +adesso +tassano +pure +condomini +pericolosi +😳 +diretta +fiera +becchi +santarcangelo +romagna +rimini +voleva +😉 +state +vicino +militari +colpiti +vigliaccamente +iraq +famiglie +soldati +mondo +combattere +terrorismo +islamico +ovunque +italia +mondo +rimane +priorità +amici +emiliani +romagnoli +giovedì +sera +dovete +essere +paladozza +bologna +ingresso +libero +arrivate +presto +migliaia +mentre +altri +litigano +mattina +sera +chiusi +altro +palazzi +gennaio +insieme +possiamo +cambiare +storia +state +info +pullman +modulo +adesione +partecipare +campagna +elettorale +📣legaonline +it +emiliaromagna +saluto +fiera +usi +costumi” +ferrara +lunga +vita +patrimonio +culturale +identità +locali +tutta +italia +🇮🇹 +roma +caos +ormai +succedono +colori +onore +forze +ordine +mentre +purtroppo +altri +dormono +raggidimettiti +stupenda +mattinata +carpi +modena +ferrara +domenica +gennaio +libereremo +finalmente +splendida +regione +sinistra +basta +pd +emilia +romagna +26gennaiovotolega +🔴 +schifo +altro +schedare +forze +ordine +vuole +pd +italia +servono +regole +rispetto +certezza +pena +nessun +premio +killer +spietati +soprattutto +ucciso +donne +uomini +altro +divisa +https +www +ilmessaggero +it +italia +accoltella +uomo +ergastolano +permesso +premio +antonio +cianci +oggi +milano +ultime +notizie +html +ferrara +persone +pranzo +sostenere +lucia +borgonzoni +buon +appetito +amici +26gennaiovotolega +presento +avvocato +cause +perse +clandestini +vergogna +paese +presto +italia +rialzerà +testa +dopo +umbria +emilia +romagna +calabria +26gennaiovotolega +argomenti +compagni +bandiera +rossa +consueto +concertino +bella +ciao +salvini +merda +tristiiii +trent +anni +fa +caduto +muro +berlino +cadrà +emilia +romagna +26gennaiovotolega +buona +domenica +carpi +modena +fiera +cioccolato +😋 +seguite +arrivato +carpi +modena +viva +campane +poco +diretta +26gennaiovotolega +🔴secondo +scrittore +pericoloso +maestro” +leader +spagnolo +vox +amico +abascal +niente +fare +sinistra +quando +argomenti +continuano +cercare +razzisti +fascisti +nazisti +ancora +buona +domenica +amici +forza +vox +españa😊 +splendida +serata +ieri +reggio +emilia +oggi +riparte +carpi +ferrara +santarcangelo +romagna +bellaria +dettagli +sezione +eventi +mentre +pd +litiga +costruiamo +futuro +splendida +regione +liberare +26gennaiovotolega +ferma +perduto +☺️ +eicma2019 +buongiorno +buona +domenica +amici +ipocrisia +sinistra +confini +italiani +sopportano +buonanotte +amici +sapete +qual +segreto +odio +disprezzo +spocchia +rispondere +sorriso +determinazione +forza +buone +idee +gnocco +fritto +tigelle +erbazzone +lambrusco +saluti +reggio +emilia😊 +oggi +polesine +parmense +november +porc +luogo +ideale +seguire +dieta +😇 +viva +bassa +viva +culatello +zibello +🇮🇹 +spettacolo +reggio +emilia +sondaggi +contano +aria +ottima +amici +meno +giorni +voto +impegniamo +gennaio +emilia +romagna +bel +ciao +ciao +pd +26gennaiovotolega +diretta +reggio +emilia +lucia +borgonzoni +seguite +26gennaiovotolega +video +reggio +emilia +guardate +bella +gente +arrivando +26gennaiovotolega +assai +prezioso +contributo +migrante” +crescita +società +saluto +gruppo +alpini +terre +po +☺️ +fiera +polesine +parmense +dedicata +prodotti +maiale +sapori +straordinari +parte +terra +emiliana +tanto +entusiasmo +vita +vera +viva +tradizioni +comprare +mangiare +italiano +atto +politico +atto +amore +paese +polesine +parmense +parma +fiera +salumi +state +noi😊 +26gennaiovotolega +bella +iniziativa +vedrete +natale +invece +vergognerà +tradizioni +bel +pomeriggio +eicma +milano +eccellenza +italiana +invidiata +mondo +mezzo +tanti +appassionati +ruote +😊 +suggerimenti +ex +avvocato +popolo +ora +milano +fiera +ciclo +motociclo +spettacolo +seguitemi +elezioni +spagnole +domenica +auguro +cuore +grande +risultato +amico +santiago +abascal +vox +españa +forza +abbraccio +italia +🇮🇹🇪🇸 +quasi +simpatico +regalerò +cioccolatini +addolcire +giornate😉 +amici +carpigiani +vediamo +domani +sorriso +senza +rancore +😊 +italia +emergenza +razzismo +colpa +salvini +🤦‍♂ +fa +buongiorno +amici +eicma +fiera +milano +poi +sabato +emiliano +polesine +parmense +pr +centro +reggio +zona +aspetto +prontissimi +battaglia +liberare +emilia +romagna +dopo +anni +sinistra +26gennaiovotolega +trent +anni +fa +cadeva +muro +berlino +mai +comunismo +mai +dittatura +violenza +viva +libertà +fred +bongusto +simbolo +italia +sognava +cresceva +mancherai +⚠️ +governo +sbarchi +tasse +manette +prende +giro +forze +ordine +conte +maio +renzi +mettono +circa +milioni +euro +riordino +carriere +previsti +lega +altro +governo +finanzia +cifra +tagliando +fondi +ministeri +partire +interno +giustizia +difesa +mano +tolgono +altra +ridanno +ennesima +truffa +clamorosa +umiliazione +donne +uomini +divisa +vediamo +ora +tornare +voto +vincere +restituire +dignità +forze +ordine +altro +schedare +poliziotti +🔴 +caro +poltronaro +semina +bugie +raccoglie +fischi +oggi +taranto +domani +tutta +italia +amici +emiliani +romagnoli +fine +settimana +torno +vediamo +domani +polesine +parmense +parma +reggio +emilia +poi +aspetto +domenica +carpi +modena +ferrara +altro +santarcangelo +romagna +rimini +infine +bellaria +igea +marina +rimini +avanti +tutta +26gennaiovotolega +fa +dirmi +entra +governo +porro +rifila +sonora +lezione +viceministro +pd +vergognosa +faccenda +ex +ilva +ascoltare +colpa +governo +tasse +latte +costerà +roba +matti +prima +vanno +meglio +altro +cancellare +decreti +sicurezza +vorrebbe +governo +abusivo +casa +calci +delinquenti +ultimo +saluto +angeli +marco +matteo +antonino +abbraccio +commosso +intero +corpo +vigili +fuoco +italia +piange +ciao +firenze +presto +saluto +treno +amici +buon +pranzo +ecco +attaccano +senatore +lega +tony +iwobi +razzismo +sinistra +razzismo +ridicoli +fiera +san +martino +vietata +lega +bella +idea +democrazia +romagna +emilia +viva +libertà +😊 +buona +giornata +firenze +state +me +🇮🇹 +buongiorno +firenze +amici +poco +aggiorno +diretta +progetto +lega +elezioni +toscana +prossima +primavera +possiamo +fare +storia +signora +fornero +attacca +sempre +vuol +dire +lavorando +bene😊 +artista” +spera +venga +accolto +domenica +santarcangelo +grosse +secchiate +merda” +differenza +sinistra +odia +parliamo +futuro +valori +rispetto +lavoro +bellezza +sicurezza +viva +romagna +❤️ +onore +donne +uomini +forze +ordine +esercito +buona +giornata +amici +🇮🇹 +macchia +auguriamo +notte +serena +😊🐴 +sento +eroe +sento +persona +spera +avere +opportunità +salvare +gente +commovente +testimonianza +marco +vigili +fuoco +scomparsi +ingiustamente +martedì +altro +alessandria +eterna +riconoscenza +mette +gioco +propria +vita +salvare +altrui +preghiera +angeli +augurio +presto +fatta +giustizia +po +verità +caso +ilva +drammatico +solo +taranto +intera +economia +italiana +minuti +dedicare +ecco +intervento +lega +oggi +camera +vengo +criticato +aver +attaccato +rackete +paese +normale +mette +rischio +vita +militari +italiani +stata +punita +galera +punto +consapevole +tecnica +molto +migliorabile +dovevo +provarci +☺ +viva +fieracavalli +verona +pensate +svolge +diretta +bologna +lucia +borgonzoni +vista +appuntamento +giovedì +prossimo +novembre +paladozza +amici +emiliani +romagnoli +info +legaonline +it +emiliaromagna +emiliaromagna +legaonline +it +26gennaiovotolega +togliere +acciaio +italia +follia +governo +incapaci +lega +daremo +sangue +taranto +salti +neanche +posto +lavoro +operai +ex +ilva +governo +incapaci +vuole +tagliare +perfino +milioni +euro +anni +fondo +adozioni +roba +matti +fare +cassa +pelle +bambini +perso +mamma +papà +scelta +incivile +vigliacca +lega +batterà +evitarlo +dare +futuro +bambini +diretta +fieracavalli +verona +seguitemi +🐎 +buon +pomeriggio +amici +😊 +saluto +fieracavalli +verona +evento +imperdibile +anni +ospita +eccellenze +equitazione +mondo +tassa +plastica +milioni +euro +tasse +so +cosa +inevitabile +licenziare +qualcuno +roba +matti +pure +latte +verrà +tassato +governo +folle +massacra +altro +italiani +toglie +lavoro +migliaia +persone +distrugge +eccellenze +italiane +fino +oggi +rimaste +piedi +nonostante +renzi +pd +5stelle +lì +mesi +fatte +anni +ora +vediamo +mandarli +casa +altro +giorno +sinistra +detto +bisogna +parlare +prima +italiani” +convinto +giusto +dare +casa +popolare +diritto +arriva +domani +lampedusa +posso +dirlo +ecco +cosa +detto +ieri +sera +rete +mario +giordano +buon +pranzo +amici +balconi +palazzi +ostia +roma +cadono +pezzi +cornicione +lì +sotto +passa +chiunque +mamme +bimbi +nonni +virgì +sembra +normale +raggidimettiti +voglia +rivedete +insieme +me +pagina +verso +intervista +mario +giordano +prima +governo +minoranza +senz +anima +abusivo +meglio +italia +🔴 +torna +pd +governo +riaprono +centri +accoglienza +chiuso +follia +altro +business +immigrazione +sicuro +gennaio +emiliani +romagnoli +manderanno +casa +sinistra +porti +aperti +scegliendo +concetto +chiaro +prima +italiani +roma +piazza +montecitorio +insieme +coldiretti +difendere +territorio +raccolti +case +lavoro +aspetto +sera +bologna +savoia +hotel +via +pilastro +vista +grande +evento +paladozza +giovedì +prossima +settimana +novembre +ingresso +libero +fino +esaurimento +altro +posti +richieste +tantissime +26gennaiovotolega +vuoi +dare +mano +emilia +romagna +vai +legaonline +it +emiliaromagna +info +emiliaromagna +legaonline +it +aspettato +elezioni +umbria +sbarcare +nave +ong” +pesi +misure +riconosce +giornalista +certo +vicino +lega +ipocrisia +governo +abusivo +ormai +evidente +entusiasmo +carica +forza +quotidiana +state +certi +sempre +buona +giornata +amici +😊🇮🇹 +giovannino +cucciolo +guerriero +preghiamo +te +vogliamo +mondo +bene +❤️ +amici +seguito +giordano +sinistra +dicono +salvini +brutto +cattivo +fascista +troglodita +continuiamo +strada +sorriso +coscienza +posto +sicuri +andare +giusta +direzione +😉 +ora +rete +mario +giordano +😊 +voglio +bene +mettete +fiori +cannoni😉 +amici +sera +torno +amico +mario +giordano +vediamo +rete +fa +compagnia +😊 +domani +riparte +vediamo +piazza +montecitorio +iniziativa +coldiretti +difendere +territorio +raccolti +case +lavoro +verso +poi +fieracavalli +verona +infine +vediamo +bologna +ore +germania +rafforza +controlli +frontiere +francia +annuncia +stretta +immigrazione +complimenti +governo +sbarchi +tasse +manette +meno +mesi +porti +aperti +moltiplicato +arrivi +ora +fa +umiliare +parigi +berlino +conte +maio +renzi +complici +incapaci +caro +ministro” +invece +insultare +occupati +donne +uomini +polizia +penitenziaria +ormai +lavorano +condizioni +drammatiche +altrimenti +dimettiti +investitore +mette +miliardi +euro +sistemare +territorio +viene +minacciato +galera +evidentemente +imprenditore +scappa +voleva +scienziato +geni +governo +ascoltato +altro +lega +problema +neanche +posto +possibile +proseguire +attività +stabilimenti +siderurgici +ex +ilva +assolutamente +impensabile +perdere +migliaia +posti +lavoro +industria +cruciale +paese +niente +fare +sinistra +prima +italiani” +proprio +piace +amen😊 +turisti +te +roba +matti +magistrale +vittorio +feltri +poi +sinistra +stupiscono +vota +nessuno +👏 +odio +rete +complimenti +gentile +signora +già +candidata +sinistra +desio +brianza +messaggio +grande +rispetto +verso +persone +disabili +altro +vergogna +avanti +sorriso +amici +vuole +male +anziché +avversari +battere +forza +idee +vede +solo +nemici +odiare +buoni +🔴incredibile +ancora +visto +servizio +fatelo +sacrifici +romani +raccolta +differenziata +buttati +vento +azienda +comunale +rifiuti +mette +unico +altro +mischione +meglio +raggi +torni +professione +dimostrato +quasi +anni +essere +grado +fare +sindaco +capitale +italia +merita +dignità +raggidimettiti +vedete +calcinacci +cadono +case +popolari +ostia +me +porto +via +mostrerò +sera +diretta +rete +mario +giordano +spero +solo +visita +stamattina +altro +stimolo +ricordarsi +esiste +ostia +territorio +fa +parte +capitale +vado +ascoltare +cittadini +raggi +arrabbia +insulta +ora +altro +vita +ormai +chiaro +fare +sindaco +capace +raggidimettiti +ancora +diretta +ostia +roma +afflitta +problemi +occupazioni +abusive +mancanza +servizi +abbandono +raggidimettiti +ostia +roma +seguitemi +raggidimettiti +⭕️ +colpa +governo +tasse +targato +pd +5stelle +renzi +pure +bottiglie +acqua +costeranno +follia +mentre +governo +tasse +sbarchi +manette +continua +litigare +palazzi +andiamo +italia +vera +vediamo +ostia +roma +troppe +case +continuano +essere +occupate +abusivamente +⚠ +settore +imballaggi +emilia +romagna +aziende +17mila +dipendenti +affari +oltre +miliardi +euro +tassa +plastica +grande +difficoltà +pazzesco +altro +proposte +folli +governo +giocando +pelle +decine +migliaia +lavoratori +lega +pronta +dare +battaglia +dentro +fuori +parlamento +buongiorno +orgoglio +italiano +🇮🇹 +onore +vigili +fuoco +orgoglio +nazionale +🇮🇹 +sempre +pensiero +rivolto +antonino +marco +matteo +adesso +meritano +giustizia +anni +signora +calabrese +dorme +panchina +conservare +proprio +lavoro +pazzesco +so +ugl +interessando +caso +spero +possano +dare +mano +invio +abbraccio +commosso +tabaccaio +reagisce +rapina +uccide +ladri +difesa +legittima +sempre +penso +campania +enorme +voglia +buongoverno +tranquillità +efficienza +lavoro +pronti +liberare +terra +disastri +luca +magistris +maio +ecco +cosa +detto +mattina +napoli +certa +sinistra +branco +trogloditi +pericolosi +razzisti +evasori +fiscali +lunga +vita +intellettuali” +disprezzano +popolo +perdono +elezioni😉 +intervista +stamane +radio +crc +napoli +campania +voglia +lega +sempre +viva +emittenti +locali +❌ +colpa +governo +tasse +carta +igienica +costerà +mandiamoli +casa +volta +tutte +emilia +romagna +26gennaiovotolega +❗️sciopero +benzinai +meno +mesi +governo +tasse +sbarchi +manette +riuscito +arrabbiare +complimenti +liberiamo +emilia +romagna +dopo +anni +sinistra +lucia +borgonzoni +aspetto +giovedì +novembre +paladozza +bologna +tantissimi +sento +aria +cambiamento +26gennaiovotolega +⚠️vuoi +darci +mano +scrivi +emiliaromagna +legaonline +it +chiama +preghiera +matteo +marco +antonio +speranza +venga +garantita +pena +certa +assassini +provocato +incendio +morte +angeli +🔴splendida +mattinata +idee +futuro +napoli +leghisti +tutta +campania +regione +deve +tornare +pensare +grande +liberandosi +inutili +litigi +maio +luca +magistris +altro +pronti +battaglia +elezioni +regionali +primavera +già +amministratori +locali +lega +primo +partito +puntiamo +10mila +iscritti +piú +tardi +potrete +rivedere +intervento +pagina +🔴ma +roba +matti +bolzano +amministrata +pd +bande +spacciatori +vendono +cocaina +pieno +giorno +cielo +aperto +dicendo +possiamo +fare +quel +vogliamo +paese +libero” +altro +frattempo +governo +fa +riapre +porti +vuole +cancellare +decreti +sicurezza +salvini +cattivo +disumano +fascista” +tassa +plastica +costerà +milioni +anno +già +bloccato +investimenti +tanti +altri +imprenditori +pronti +tagli +licenziamenti +colpa +manovra +economica +folle +governo +distruggendo +italia +prima +andranno +meglio +paese +geni +lavoro +belle +frasi +osho +compagno +presidente +toscana +pd +satana +😱 +ormai +disperazione +pensano +davvero +mettere +tasse +auto +aziendali +zucchero +plastica +strage +negozi +aziende +decine +migliaia +posti +lavoro +governo +pd +5stelle +renzi +mettendo +rischio +intero +paese +follia +preghiera +pensiero +vigili +fuoco +morti +notte +abbraccio +famiglie +colleghi +feriti +onore +mette +gioco +propria +vita +salvare +altri +italia +piange +cima +pensieri +sempre +obiettivo +difendere +italia +ieri +oggi +domani +primagliitaliani +🇮🇹 +buonanotte +amici +voglio +bene +felice +orgoglioso +aver +contribuito +fare +storia +umbria +terra +meravigliosa +meritava +anni +sinistra +adesso +lavoro +amici +emiliani +romagnoli +gennaio +liberiamo +splendida +regione +renzi +pd +5stelle +😱 +colpa +governo +tasse +costerà +mandiamoli +casa +volta +tutte +emilia +romagna +26gennaiovotolega +stasera +tratto +bene +pomodorini +siciliani +rapanelli +lazio +olio +oliva +umbro +viva +italia +tavola +🇮🇹 +incapaci +mettono +rischio +migliaia +posti +lavoro +gettando +angoscia +migliaia +famiglie +distruggendo +industria +italiana +acciaio +vicenda +ex +ilva +drammatica +paese +altro +normale +presidente +consiglio +riferirebbe +subito +parlamento +spero +qualcuno +promesso +oltre +riapertura +porti +chiusura +acciaierie +fare +regali +qualcun +altro +‼ +grazie” +governo +pd +5stelle +renzi +diverse +aziende +già +pronti +migliaia +licenziamenti +solo +annuncio +manovra +economica +folle +fatta +tasse +tagli +altre +tasse +impoveriscono +paese +spero +vadano +casa +prima +possibile +italiani +possono +diretta +senato +commentare +ennesimo +disastro +governo +tasse +sbarchi +manette +scappare +proprietari +ilva +rischiano +lasciare +casa +decine +migliaia +operai +🔴 +governo +tasse +sbarchi +manette +scappare +proprietari +ilva +mettendo +rischio +lavoro +decine +migliaia +operai +futuro +industriale +paese +disastro +altro +dimissioni +unica +risposta +possibile +lega +chiede +conte +venga +urgentemente +riferire +parlamento +parlerò +sala +stampa +senato +verso +diretta +pagina +rimanete +collegati +amore +romani +pd +spingete +😃😃😃 +ministro +grillino +bonafede +cerchiamo +visto +popolo +salvini +professa +cattolico +” +parola +monsignor +mogavero +caspita +amici +conosce +giudicarvi +tale +sicurezza +tengo +stretta +fede +amore +figli +italia +amen +amici +emiliani +amici +romagnoli +segnatevi +data +𝗚𝗶𝗼𝘃𝗲𝗱𝗶̀ +𝗡𝗢𝗩𝗘𝗠𝗕𝗥𝗘 +lucia +borgonzoni +aspettiamo +𝗣𝗮𝗹𝗮𝗱𝗼𝘇𝘇𝗮 +𝗱𝗶 +𝗕𝗼𝗹𝗼𝗴𝗻𝗮 +impossibile +mancare +dovremo +essere +migliaia +altro +domenica +gennaio +libereremo +finalmente +splendida +regione +sinistra +basta +pd +emilia +romagna +📩𝘝𝘶𝘰𝘪 +𝘥𝘢𝘳𝘤𝘪 +𝘶𝘯𝘢 +𝘮𝘢𝘯𝘰 +𝘪𝘯 +𝘌𝘮𝘪𝘭𝘪𝘢 +𝘙𝘰𝘮𝘢𝘨𝘯𝘢 +𝘚𝘤𝘳𝘪𝘷𝘪 +𝘢 +𝘦𝘮𝘪𝘭𝘪𝘢𝘳𝘰𝘮𝘢𝘨𝘯𝘢 +𝘭𝘦𝘨𝘢𝘰𝘯𝘭𝘪𝘯𝘦 +𝘪𝘵 +presento +viceministro +grillino +trasporti +trovato +governo +pd +risposta +sempre +colpadisalvini +fantastici +😀😀😀 +onore +difende +confini +onore +sicurezza +libertà +🇮🇹 +disprezzo +complici +vigliacchi +traditori +piace +assicuro +gennaio +impegno +mandare +casa +sinistra +emilia +romagna +massimo +conto +sempre +26gennaiovotolega +buongiorno +buon +inizio +settimana +ricordo +domenica +regaliamo +☺️ +speriamo +governo +stanotte +inventi +tassa +neve😂 +intanto +poche +ore +sbarcando +quasi +immigrati +roba +matti +buona +domenica +amici +mollo +istituita +bella +commissione +sovietica +andate +rileggere +orwell +porro +smaschera +minuti +ipocrisia +dici +prima +italiani +accusano +razzismo +altro +fascismo +nazismo +ve +garantisco +bavaglio +mettere +interessante +sapere +tanti +sinistra +condannano +giustamente +idiozia +antisemitismo +opinione +riguardo +diritto +esistenza +stato +israele +guarda +caso +molti +spendono +mai +parola +po +tassano +aria +respiriamo +roba +matti +conte +renzi +maio +zingaretti +solo +chiacchiere +tasse +sbarchi +kompagno +vauro +dà +fastidio +mangi +pane +salame +ascoltare +credere +roba +matti +😀 +poi +stupiscono +sinistra +vota +nessuno +buon +pomeriggio +amici +diretta +festa +zucca +ziano +piacentino +piacenza +🎃 +lunga +vita +tradizioni +🇮🇹 +gennaio +scriveremo +pagina +storia +italiana +dopo +anni +libereremo +emilia +romagna +sinistra +riportando +centro +merito +tessera +partito +buonasera +amici +saluto +parma +pronti +fare +storia +emilia +romagna +intanto +oggi +pozzallo +arrivata +ocean +viking +passeggeri +mentre +altre +navi +giro +mediterraneo +pronte +fare +rotta +verso +italia +dopo +invito +viminale +ong +scatenano +ricomincia +pacchia +grazie +governo +sbarchi +tasse +manette +dopo +protesta +polizia +settimana +scorsa +ora +vigili +fuoco +scendono +piazza +governo +tasse +sbarchi +manette +incredibile +conte +renzi +maio +riescono +arrabbiare +proprio +secondo +lega +governo +sbarchi +crollati +fortuna +linea +politica +seria +rigorosa +italia +tornata +essere +rispettata +ora +invece +ong +vengono +invitate +viminale +ripropongo +intervista +berlinguer +rai +commentate +condividete +diretta +mercato +torpignattara +roma +ridotta +città +sporca +caotica +insicura +capitale +bisogno +rinascere +già +decine +migliaia +firme +raccolte +virginia +mestiere +raggidimettiti +buoni +rapporti +servi +nessuno +pd +5stelle +renzi +barattano +europa +zero +virgola +elasticità +conti +cambio +porti +aperti +sembra +mossa +intelligente +ecco +cosa +detto +poco +fa +rai +radio +esterrefatto +arroganza +renzi +zingaretti +conte +maio +trattano +italiani +dicono +vanno +accordo +nulla +vanno +elezioni +governo +paura +andare +altro +casa +vincere +lega +potranno +scappare +sempre +risultati +umbria +dimostrano +attesa +fare +storia +emilia +romagna +intervista +ieri +sera +bruno +vespa +rai +buona +serata +amici +navi +ong +straniere +cariche +immigrati +ricomincia +pacchia +sindaci +governatori +lega +diranno +no +ogni +nuovo +arrivo +clandestini +mentre +5stelle +perdono +pezzi +pd +perde +altro +voti +dico +ancora +grazie +gente +umbria +affetto +fiducia +coraggio +giovedì +novembre +aspetto +bologna😉 +buon +pomeriggio +roma +amici +oggi +lavoro +mandare +casa +governo +tasse +sbarchi +manette +vinto +punti +quindi +unico +dato +umbria +finalmente +cambia +attesa +mandare +casa +sinistra +emilia +romagna +prossimo +gennaio +ecco +intervista +radio24 +buona +serata +amici +ora +diretta +la7 +seguite +diretta +perugia +splendida +mattinata +seguite +diretta +grazie +grazie +grazie +sempre +prossimo +obiettivo +emilia +romagna +gennaio +ancora +diretta +perugia +soddisfazione +amici +lega +stravince +umbria +popolo +batte +palazzo +diretta +perugia +storica +serata +amici +governo +tasse +sbarchi +insulti +manette +domenica +umbria +arriverà +bella +lezione +coraggio +libertà +onestà +democrazia +info +legaonline +it +umbria +ripropongo +intervista +ieri +giorno +pecora +rai +radio +po +leggerezza +ogni +tanto +guasta +pensate +facebook +alcuni +protestato +conduttori +indegno +immorale +invitarmi +soliti +tolleranti +democratici +bacioni +😘 +diretta +terni +ultimo +incontro +lungo +stupendo +giro +umbria +messa +tutta +amici +domenica +tocca +minuti +tempo +croce +simbolo +lega +dopo +anni +liberiamo +magnifica +regione +seguiteci +diretta +domenicavotolega +diretta +città +castello +perugia +state +amici +😊 +domenicavotolega +aprite +rubrica +chiamate +inviate +messaggi +ogni +voto +conta +buon +pomeriggio +san +giustino +perugia +state +😊 +domenicavotolega +⚠ +vergognoso +diffondiamo +devono +vedere +finti +profughi +paesi +ormai +sicuri” +pur +rimanere +italia +fingono +gay +alcuni +moglie +figli +complicità +alcuni +avvocati +altro +mangioni +accoglienza +fregano +mani +farne +spese +pochi +scappano +davvero +guerre +persecuzioni +intanto +governo +tradimento +cosa +fa +riapre +porti +triplica +sbarchi +estende +centri +accoglienza +vedo +ora +riprendere +mano +paese +domenica +cominciamo +umbria +domenicavotolega +insieme +cittadini +fontivegge +quartiere +perugia +purtroppo +ostaggio +spacciatori +delinquenti +nessuna +tolleranza +verso +vende +morte +vorrebbe +droga +stato +molti +pagano +tasse +possono +farlo +qua +umbria +purtroppo +resto +italia +tanti +imprenditori +chiudendo +arrivano +fine +mese +infatti +governo +pd +5stelle +renzi +pronto +regalare +italiani +altre +tasse +follia +ecco +intervento +rai +radio1 +diretta +valfabbrica +perugia +mancano +solo +giorni +libereremo +umbria +state +amici +😉 +domenicavotolega +intervista +mattina +rai +pazienza +vuole +amici +😊 +saluto +bellissima +trevi +perugia +domenicavotolega +umbria +italia +soffia +aria +cambiamento +domenicavotolega +ancora +diretta +rocca +cencia +roma +provando +entrare +stabilimento +ama +raggidimettiti +rocca +cencia +roma +diretta +stabilimento +ama +società +gestisce +raccolta +trasporto +smaltimento +rifiuti +romani +raggidimettiti +anno +governo +potuto +dimostrare +volere +potere” +ultimi +sondaggi +dicono +lega +riceve +consenso +terzo +italiani +penso +pericolosi +estremisti +sbaglio +rivedete +insieme +me +intervista +rai +buona +serata +amici +🙂 +buongiorno +amici +seguitemi +diretta +mercato +piazza +epiro +roma +raggidimettiti +🔴scene +ordinaria +follia +quotidiana +purtroppo +quartiere +vasto +napoli +intanto +governo +apre +porti +contevergogna +italiani +sapranno +premiarvi” +già +domenica +umbria +ripropongo +intervista +mattina +la7 +myrta +merlino +buona +serata +amici +voto +domenica +decisivo +umbria +spedendo +sinistra +casa +dopo +anni +italia +mandando +segnale +politico +nazionale +forte +governo +tradimento +considera +piccola +poco +determinante +splendida +terra +ripropongo +intervista +mattina +rtl +ancora +grazie +splendida +piazza +roma +domenica +toccherà +umbria +tempo +galantuomo +vince +amici😊 +meno +mesi +governo +abusivo +riuscito +litigare +giorno +sì +altro +pure +triplicare +sbarchi +proporre +tasse +affitti +bibite +zuccherate +diesel +plastica +contante +bloccare +altro +leggi +educazione +civica +scuole +telecamere +asili +case +riposo +vedo +ora +arrivi +domenica +quando +umbri +potranno +finalmente +dare +sonora +lezione +geni +ecco +intervista +ieri +sera +giletti +diretta +festival +internazionale +cioccolato +perugia +😋 +seguiteci +oggi +roma +piazza +san +giovanni +fatto +provare +emozioni +nessuna +poltrona +nessun +ministero +potranno +mai +regalarmi +insieme +può +grazie +voglio +bene +orgoglioitaliano +it +conte +maio +tassano +bibite +biscotti +benzina +partite +iva +renzi +vuole +tornare +legge +fornero +grillo +vuole +togliere +diritto +voto +anziani +scemo +scemo +governo +piazza +san +giovanni +splendido +sole +aspetto +domani +marea +umana +pacifica +determinata😊 +diretta +orvieto +terni +incontro +tutela +forze +ordine +state +nuove +tasse +benzina +sigarette +elettroniche +bibite +zuccherate +seconde +case +tentativo +blocco +quota +nascosti +quasi +giornali +tivù +quasi +sbarchi +ultime +ore +contevergogna +vediamo +roma +piazza +san +giovanni +sabato +oggi +rai +ribadito +bastano +appelli +pace +governo +interviene +senza +cedere +ricatti +visto +erdogan +minacciato +aprire +porte +milioni +mezzo +immigrati +possiamo +dire +volta +tutte +eliminata +qualsiasi +ipotesi +adesione +turchia +unione +europea +diretta +montecastrilli +bello +fine +settimana +borghi +paesaggi +umbri +🇮🇹 +saluto +bellissima +foligno +guardate +piazza +vuole +male +😉 +avanti +tutta +27ottobrevotolega +giano +umbria +perugia +proseguono +tappe +fine +settimana +umbro +state +🇮🇹 +27ottobrevotolega +smettetela +storia +povero +pazzo +violento +giordano +esemplare +ascoltare +geni +governo +ri +spalancato +porti +cos +ottenuto +cambio +europa +zero +definiscono +buoni” +contrario +salvini +brutto +cattivo +razzista +coscienza +altro +responsabilità +aumento +partenze +maggiori +morti +ultimi +giorni +auguro +torni +indietro +anni +altrimenti +dramma +ecco +cosa +detto +mattina +canale +ieri +sera +floris +certo +annoiato +riguardate +commentate +😊 +buon +pranzo +amici +sempre +avanti +testa +alta +saluto +ferentillo +terni +amici +😊 +seguiteci +diretta +27ottobrevotolega +terni +pronti +fare +storia +ottobre +27ottobrevotolega +terni +carcere +sabbione +insieme +donne +uomini +polizia +penitenziaria +state +diretta +narni +terni +magnifica +umbria +pronti +mandare +sinistra +casa +27ottobrevotolega +intervista +aperta +sincera +ieri +sera +giletti +eccola +riapertura +porti +provoca +nuovi +morti +mediterraneo +sbarchi +triplicati +mafiosi +fuori +galera +governo +litiga +tasse +aumento +conte +fuga +buon +lunedì +amici +lavora +salvare +italia +abbraccio +trieste +mentre +conte +maio +renzi +passano +tempo +litigare +italia +soffre +vergognatevi +altro +ius +soli +formule +simili +cittadinanza +biglietto +luna +park +meditata +desiderata +risultato +percorso +integrazione +paese +penso +così +suggerisco +altro +governo +tasse +porti +aperti +occuparsi +vere +priorità +italia +ecco +cosa +detto +rai +radio +ancora +diretta +campidoglio +roma +raggidimettiti +italia +amare +proteggere +🇮🇹 +parte +traditori +chiusi +palazzo +altra +donne +uomini +paese +libero +abbracceremo +roma +ottobre +piazza +san +giovanni +tutte +info +www +legaonline +it +intervento +stamattina +rai +situazione +rifiuti +roma +sicuramente +colpa +marziani +sfortuna +raggi +sindaco +anni +so +amministratori +altro +agenzie +comunali +assessori +dirigenti +funzionari +consiglieri +cambiato +sembra +romani +milioni +italiani +stranieri +arrivano +rendano +conto +fatto +messa +così +male +ahimè +vivo +anch +capitale +mai +stata +bravissima +persona +sbagliato +mestiere +ora +romani +possano +scegliere +nuovo +sindaco +raccoglieremo +100mila +firme +dimissioni +partire +sabato +ottobre +piazza +san +giovanni +diretta +bastia +umbra +perugia +ottobre +andiamo +stra +vincere +27ottobrevotolega +dopo +merendine +chinotto +adesso +formaggi +prosciutti +italiani +serio +purtroppo +finire +tassate +pagando +errori +altrui +grazie +conte +amici +bruxelles +diretta +perugia +cva +ponte +san +giovanni +seguitemi +27ottobrevotolega +perugia +sempre +carcere +capanne +seguitemi +ricordate +tassa +monti +barche +punire +ricchi +aiutare +poveri +ricchi +andati +comprare +estero +mentre +operai +artigiani +perso +lavoro +pensare +oggi +massacrare +economia +nuove +tasse +semplicemente +folle +inviato +mare +messaggi +grazie +🙂 +no +comunque +offendo +dicono +vado +spiaggia +mutande +fine +lilli +gruber +trovo +sempre +bene +diverto +😊 +buona +visione +seguito +gruber +pare +essermela +cavata +dite +😊 +riguardate +commentate +condividete +buona +serata +amici +mettere +nuove +tasse +momento +crimine +tasse +sbarchi +sente +rappresentato +governo +abusivo +tradimento +appuntamento +roma +ottobre +ministro +ambiente +dice +colpiranno +agricoltori +pescatori +mezzi +vecchi +secondo +contadino +cambia +trattore +gode +magari +riesce +comprarsene +nuovo +roba +matti +molto +altro +parlato +ieri +notte +rai +ecco +intervista +governo +manicomio +oggi +litigando +crocifisso +scuole +ius +soli +aumento +iva +quota +nuove +tasse +incapaci +venduti +traditori +insieme +sabato +ottobre +ore +piazza +san +giovanni +roma +aspetto +saluto +attigliano +terni +state +27ottobrevotolega +stroncone +terni +ultima +tappa +umbra +giornata +felice +tornare +norcia +terra +tanto +sofferto +arrende +segui +diretta +forza +umbria +27ottobrevotolega +diretta +splendida +cascia +perugia +umbria +santuario +bellezza +straordinaria +state +27ottrobrevotolega +grazie +riccione +doveva +essere +tappa +improvvisata +alcuni +amici” +diventato +comizio +piedi +sedia +😊 +piace +cosí +sondaggi +saluto +riccione +romagna +lucia +borgonzoni +grazie +tantissimi +seguiteci +diretta +diretta +bologna +villaggio +coldiretti +sempre +fianco +agricoltori +produttori +mangiare +consumare +italiano +difendere +costi +eccellenze +🇮🇹 +diretta +viadana +oglio +po +mantova +rimanete +amici +felice +aver +partecipato +poco +fa +milano +iniziativa +amici +ente +nazionale +sordi +lasceremo +mai +soli +intervento +stamattina +amici +radio +crc +napoli +😊 +grande +mario +giordano +svela +dati +mano +numeri +incoerenze +sbarchi +immigrazione +giornaloni +dicono +vero +volto +governo +porti +aperti +italiani +perdoneranno +sbarchi +aumentati +meno +mese +tassa +merendine +gazzosa +revisione +quota +flat +tax +tranquilli +insieme +fermeremo +capito +fanno😉 +umbria +stelle +prima +denunciano +pd +arrestare +assessori +pd +poi +alleano +pd🤦‍♂ +basta +leggere +commenti +pagine +grilline +ottobre +credo +prenderanno +storica +mazzata +umbri +italiani +scemi +qualche +minuto +consiglio +intervento +ieri +sera +mario +giordano +state +pranzando +buon +appetito +amici +saluto +splendida +castiglione +lago +perugia +avanti +tutta +27ottobrevotolega +san +feliciano +splendido +lago +trasimeno +seguiteci +27ottobrevotolega +scambiando +parole +amici +passignano +trasimeno +perugia +😊 +ottobre +andiamo +vincere +27ottobrevotolega +vogliono +tassare +prelievi +banca +voli +merendine +bibite +gasolio +agricoltori +pescatori +governo +giorni +pensano +solo +penalizzare +italiani +roba +altro +matti +giudizio +popolo +arrivando +ancora +mese +cittadini +sentire +voce +partire +umbria +solo +inizio +ripropongo +intervista +nottambula +rai +radio +buona +serata +amici +😊 +sbarcati +ieri +settembre +messina +oggi +sbarcando +altri +grazie +governo +tradimento +porti +aperti +partiranno +sbarcheranno +altro +persone +rischieranno +morire +altro +rotazione +volontaria” +porti +purtroppo +ritornare +italia +campo +profughi +europa +ascoltate +favore +condividete +molliamo +porti +riaperti +sbarchi +aumento +tassa +merendine +gasolio +agricoltori +pescatori +bigiate +massa +autorizzate +ministro +ius +soli +tassa +soldi +prelevati +banca +abusivi +governo +diretta +splendido +salone +nautico +genova +🇮🇹 +seguitemi +contentissimo +essere +andato +ieri +sera +barbara +urso +canale +boom +ascolti +tanti +nuovi +amici +social +tanto +interesse +parte +segue +meno +politica +poi +divertito +credo +difeso +abbastanza +bene +😊 +buon +pranzo +amici +ripropongo +frizzante +oretta +fatta +sera +canale +inaspettate +sorprese +😉 +grazie +fate +me +amici +ragazzo +fortunato +sempre +serena +notte +❤️ +buonasera +amici +diretta +festa +lega +chiuduno +bergamo +state +ricordando +straordinari +abbracci +pontida +splendida +comunità +❤ +ripropongo +intervento +integrale +ieri +amici +atreju +ringrazio +ancora +ospitalità +buona +serata +amici +oggi +gazebo +incontri +lega +piazze +italiane +pd +5stelle +chiusi +palazzi +mezzo +gente +bello +essere +liberi +🔴trova +gazebo +legaonline +it +gazebo +firma +salvininonmollare +it +sbarchi +fuori +controllo +centri +accoglienza +collasso +lampedusa +tornati +indietro +anni +ricordo +decreti +sicurezza +vigore +prevedono +ministri +interno +altro +infrastrutture +difesa +firmino +divieto +accesso +ong +acque +nazionali +governo +folle +deciso +optare +porti +aperti +pessimo +segnale +italiani +ricorderanno +quando +presenterà +conto +urne +passi +mercato +gualdo +tadino +perugia +seguitemi +live +27ottobrevotolega +dopo +anni +balle +tradimenti +pugnalate +cercare +rimanere +aggrappato +potere +renzi +ancora +coraggio +parlare +altro +italia +viva +chiamato +poltrona +viva +stato +linea +personaggio +pazienza +vuole +amici +governo +opposizione +qualche +giornalista +musica +cambia +mai +colpa +sempre +solo +salvini +rispondo +sorriso +vado +avanti +😊 +prima +volta +anno +mezzo +tornano +aumentare +sbarchi +pazzi +pazzi +pericolosi +insieme +fermeremo +renzi +conte +zingaretti +maio +milioni +italiani +ostaggi +gruppo +signori” +incollati +poltrone +storia +fortuna +energia +pulita +popolo +sempre +sconfitto +giochi +potere +altro +palazzo +cittadini +sindaci +governatori +italiane +italiani +liberi +sabato +ottobre +vediamo +roma +bellissima +piazza +san +giovanni +costruire +futuro +fondato +lavoro +sicurezza +onesta +libertà +sono😊 +onore +dignità +valgono +poltrone +grazie +affetto +fiducia +porro +scatenato +alleanza +pd +stelle +regioni +🙂 +dopo +anni +sinistra +umbria +voglia +cambiare +trucco +palazzo +possa +evitarlo +convinto +27ottobrevotolega +ripropongo +intervento +oggi +pontida +ancora +grazie +enorme +cuore +esserci +sempre +voglio +bene +andiamo +vincere +❤️ +braccia +straordinario +popolo +pontida +ecco +intervento +emozione +grazie +pontida +🔝🇮🇹 +pronto +pontida +poco +diretta +palco +diretta +pontida +poco +cominciamo +state +ripropongo +intervento +oggi +assemblea +amministratori +lega +italiavera +vincerà +sempre +italia +palazzi +giochini +inciuci +ieri +sera +paolo +debbio +rete +record +ascolti +ricevuto +tantissimi +messaggi +sostegno +invito +mollare +ve +garantisco +squadra +lega +piú +determinata +mai +governo +altro +aspetta +telefonatine +berlino +parigi +bruxelles +dignità +italia +tornerà +presto +essere +guidata +italiani +occhio +quasi +guarito +riguarda +italia +lavorando😉 +orvieto +bello +fate +me +passi +bancarelle +mercato +☀️ +27ottobrevotolega +buonasera +amici +spello +perugia +insieme +ottobre +cambia +umbria +state +ministro +onore +lealtà +valgono +mille +poltrone +pali +luce +capito +unica +motivazione +governo +paura +perdere +poltrona +andare +casa +altro +ripropongo +intervista +ieri +sera +bruno +vespa +tantissimi +davanti +schermo +fino +tarda +ora +grazie +ripropongo +intervento +oggi +senato +pensano +fermarci +sbagliano +grosso +andiamo +avanti +spediti +mai +piazza +dopo +piazza +città +dopo +città +regione +dopo +regione +vinceremo +🇮🇹 +intervento +ora +diretta +senato +amici +tempo +seguite +commentate +ripropongo +intervento +mattina +davanti +splendido +popolo +rassegna +governo +straniero +benedetto +berlino +bruxelles +parigi +italia +comandano +italiani +italia +rialzerà +presto +testa +ve +garantisco +🇮🇹 +possono +sprangare +portone +montecitorio +bloccare +gente +vie +laterali +invidio +chiuso +palazzo +pensando +solo +spartirsi +poltrone +maggioranza +italiani +altro +pensate +tanti +giornali +telegiornali +detto +stamattina +piazza +gatti +rispetto +mici +girare +rete +finché +lasciano +libera +🔴segui +live +camera +intervento +presidente +deputati +lega +riccardo +molinari +primagliitaliani🇮🇹 +🔴 +intervento +integrale +condividi +diretta +roma +persone +vere +libere +piazza +batteranno +sempre +poltronari +inciucio +rinchiusi +palazzo +conto +pagare +arriverà +salato +verranno +cacciati +sempre +primagliitaliani +🇮🇹 +prima +parte +interverrò +poco +successivo +live +😊 +diretta +roma +persone +vere +libere +piazza +batteranno +sempre +poltronari +inciucio +rinchiusi +palazzo +conto +pagare +arriverà +salato +verranno +cacciati +sempre +primagliitaliani +🇮🇹 +saluto +cento +ferrara +insieme +lucia +borgonzoni +spettacolari +state +diretta +diretta +vignola +modena +nonostante +comizio +improvvisato +domodossola +vco +spettacolo +molla +fidatevi +amici +combatte +insieme +poi +vince +primagliitaliani +🇮🇹 +san +gemini +terni +ottobre +storia +umbria +avanti +tutta +amici +🇮🇹 +diretta +san +gemini +terni +umbria +donatella +tesei +ottobre +andiamo +vincere +state +🔴 +diffondiamo +possibile +vergogna +ascoltate +denuncia +governatore +friuli +venezia +giulia +massimiliano +fedriga +nuovo +governo +sinistra +targato +conte +pd +5stelle +altro +leu +già +impugnato +prime +leggi +favorendo +immigrati +clandestini +andando +italiani +pessimo +inizio +però +fermiamo +livello +locale +regionale +nazionale +andiamo +avanti +treni +nome +prima +italiani +🇮🇹 +punto +record +ministri +poltrone +competenze +poche +paura +voto +tanta +già +lavoro +amici +potranno +scappare +italiani +lungo +frattempo +limitiamo +danni +prepariamo +tornare +vincere +mollo +stelle +rivoluzione +casta +ammucchiata +pd +giustizia +lavoro +tasse +immigrazione +accordo +nulla +eccetto +cosa +sfuggire +costi +giudizio +elettori +arriverà +ecco +intervista +mattina +rai +buon +pranzo +amici +governo +no +poltrone +lontano +potranno +scappare +elezioni +vere +infinito +italia +merita +meglio +prepariamo +ripropongo +intervista +ieri +sera +paolo +debbio +festa +lega +alzano +lombardo +bergamo +ancora +grazie +migliaia +migliaia +persone +intervenute +stati +fantastici +date +forza +incredibile +❤️ +ripropongo +intervista +mattina +radio24 +italiani +rappresenta +nuovo +governo +🤔 +nome +conservazione +potere +scende +patti +pd +boschi +permetto +entrare +dibattito +altrui +me +sempre +mai +pd +diretta +festa +alzano +lombardo +bergamo +paolo +debbio +state +🇮🇹 +merkel +prende +sonora +batosta +elezioni +regionali +casa +prova +imporre +governo +italia +conte +bis +merkel +macron +ex +avvocato +popolo +oggi +candidamente +altro +stelle +quasi +fa +finta +conoscerli +rivendicando +aver +sempre +votato +sinistra +eccetto +solo +candidato +ministro” +roba +matti +smascherati +presto +tardi +elettori +cacceranno +italia +decidono +italiani +spettacolare +grazie +amici +bergamaschi +diretta +pinzolo +trento +seguitemi +conselve +sondaggi +contano +😉 +seguiteci +diretta +pd +prima +poltrone” +sempre +prima +italiani” +sempre +forza +amici +potranno +scappare +voto +infinito +pronto +determinato +mai +conto +governicchio +fondato +unicamente +poltrone +odio +vita +lunga +prima +poltrone +ora +sempre +primagliitaliani +🇮🇹 +buon +pomeriggio +amici +rimanete +collegati +poco +aggiorno +diretta +quirinale +altro +responsabili” +parlamentari +pensano +solo +difendere +poltrona +giorni +litigano +spartirsi +ministeri +paura +voto +italiani +no +libere +elezioni +subito +italia +riparte +possono +scappare +voto +po +tempo +prima +poi +parola +tornerá +italiani +🇮🇹 +diretta +senato +state +promesso +dato +nessun +permesso +sbarco +italia +immigrati +bordo +ocean +viking +prima +sicurezza +italiani +ovviamente +mai +pd +buon +pomeriggio +amici +rimanete +diretta +poco +aggiorno +quirinale +ora +diretta +piazza +montecitorio +ong +open +arms +altro +sbarco +altro +processo +paura +orgoglioso +difendere +confini +sicurezza +paese +amici +qualche +minuto +ecco +intervista +radio +governo +salvare +poltrona +lega +dice +no +seconda +parte +fa +troppo +caldo +telefono😊 +saluto +volo +poi +lavoro +prima +parte +spagna +apre +porti +immigrati +ong +open +arms +bene +dura +vince +ministri +passato +firmato +bloccare +sbarchi +oggi +detto +no +coincidenze +amor +dio +certo +strano +cavallo +ferragosto +lavora +riaprire +rubinetti +altroimmigrazione +clandestina +qualcuno +pensa +farmi +dispiacere +sbaglia +grosso +danno +fa +italiani +italia +ferragosto +dedicato +castel +volturno +caserta +comitato +nazionale +ordine +sicurezza +pubblica +ecco +risultati +oltre +anno +lavoro +viminale +buonasera +spezia +amici +molla +state +diretta +buon +pomeriggio +recco +amici +po +aggiornamenti +live +accadendo +navi +ong +no +arrendo +italia +tornerà +essere +campo +profughi +europa +intervista +oggi +rtl +qualche +minuto +buon +pomeriggio +amici +ripropongo +intervento +senato +avanti +taglio +parlamentari +senza +esitazioni +già +prossima +settimana +poi +votosubito +parola +italiani +🇮🇹 +simpaticissimi +rumori +fondo +interruzioni +urlanti +amici +pd +😊 +poco +parlo +senato +aspetto +tanti +sentirete +cose +interessanti +altro +renzi😊 +paura +elezioni +teme +tornare +parlamento +lega +pronta +ora +tocca +italiani +decidere +ripropongo +intervento +sera +siracusa +durante +diretta +saltava +segnale +video +stati +sabotatori +comunisti +😊 +catania +seguitemi +sempre +live +soverato +state +voglio +dare +italiani +governo +stabile +serio +prossimi +anni +giochi +palazzo +solamente +elezioni +parola +italiani +🇮🇹 +saluto +incantevole +policoro +perla +lucana +mar +jonio +tantissimi +seguite +diretta +seconda +parte +diretta +splendida +polignano +mare +seguiteci +buona +serata +amici +avanti +tutta +💪🇮🇹 +peschici +foggia +state +termoli +campobasso +state +seconda +parte +termoli +campobasso +state +prima +parte +buona +serata +pescara +amici +state +diretta +diretta +sabaudia +latina +seguitemi +amici +diretta +festa +lega +arcore +monza +brianza +spettacolo +state +me +nuovo +diretta +sala +stampa +viminale +termine +incontro +parti +sociali +seguitemi +diretta +viminale +piccola +pausa +incontro +parti +sociali +aggiorno +diretta +senato +seguitemi +diretta +fiera +san +fermo +nerviano +milano +state +seguitemi +diretta +festa +lega +colico +lecco +seguitemi +diretta +festa +lega +cervia +paraggi +aspetto +amici +ripropongo +intervista +oggi +skytg24 +dite +andato +milano +marittima +presentazione +festa +lega +romagna +seguiteci +diretta +può +colpire +volte +coltello +ragazzo +anni +cellulare +euro +spero +assassini +mario +vengano +beccati +mandati +carcere +vita +lavori +forzati +troppo +comodo +uccidere +poi +stare +comodi +lettino +ecco +intervento +mattina +rai +caldo +fa +golasecca +varese +seguitemi +diretta +minori +stranieri +scomparsi +mila +mentre +fermi +mila +persone +dimostrando +approccio +rigoroso +evita +tante +fughe +contiamo +continuare +strada +altro +azzerare +sparizioni +stranieri +italiani +ecco +intervento +mattina +montecitorio +relazione +commissario +straordinario +persone +scomparse +diretta +camera +insieme +ministro +famiglia +alessandra +locatelli +solo +bibbiano +ecco +tutte +proposte +lega +difesa +bambini +famiglie +seguiteci +chiacchiere +pd +rispondiamo +italia +sì +sbloccati +oggi +miliardi +euro +opere +pubbliche +strade +scuole +ospedali +ferrovie +altri +cantieri +mentre +parlano +lavoriamo +grazie +amici +diretta +prefettura +firenze +firma +protocollo +attuazione +regione +toscana +numero +unico +emergenza +europeo +state +me +sera +adro +davvero +tantissimi +tempo +voglia +ecco +intervento +penso +essere +stato +chiaro +buonanotte +amici +giornate +intense +molla +sempre +solo +primagliitaliani🇮🇹 +grazie +governo +insultatissimo +ministro +interno +ridotto +sbarchi +chiuso +centri +accoglienza +salvato +vite +risparmiato +soldi +assunto +poliziotti +italia +tornata +essere +altro +paese +rispettato +europa +mondo +vado +orgoglioso +🇮🇹 +ecco +intervista +ieri +sera +rete +mario +giordano +dichiarazioni +poco +fa +helsinki +penso +essere +stato +chiaro +sempre +diretta +gattile +cimitero +monumentale +verano +😊 +ora +diretta +gattile +cimitero +monumentale +verano +🐈 +state +me +ℹ️ +sosanimali +viminale +interno +it +‼ +pazzesco +girare +seawatch +open +arms +molti +altri +contatto +scafisti +chiamate +messaggi +segnalazioni +scafista +svela +apertamente +rapporto +navi +ong +altro +carola +ripetiamo +anni +difende +ong +alimenta +business +immigrazione +clandestina +filmato +dimostra +ancora +volta +quei +parlamentari +vanno +dormire +imbarcazioni +fuorilegge +mollo +amici +portichiusi +diretta +viminale +dopo +incontro +parti +sociali +giornata +ascolto +confronto +proposte +crescita +paese +assieme +sigle +sindacali +associazioni +categoria +state +me +nessuna +tolleranza +nessuno +sconto +violenti +occupano +incendiano +attaccano +forze +ordine +stabile +pericolante +immigrati +centri +sociali +barricate +mettono +rischio +incolumità +donne +bambini +cittadini +romani +italiani +meritano +legalità +recuperando +anni +assenza +saluto +diretta +piazza +sassuolo +buona +serata +amici +😊 +ferrara +ringraziando +cittadini +dopo +settant +anni +sinistra +deciso +dare +fiducia +sindaco +lega +seguiteci +diretta +😊 +ecco +sintesi +lunga +intensa +settimana +buonanotte +amici +😊 +recuperati +soldi +polizia +adesso +bisogna +intervenire +favore +vigili +fuoco +promesso +lega +molla😊 +diretta +senato +seguitemi +insulti +rispondiamo +fatti +codice +rosso +legge +entro +luglio +salvando +tante +donne +vittime +violenza +dovranno +essere +ascoltate +giudice +entro +giorni +denuncia +castrazione +chimica +pedofili +stupratori +altro +passo +avanti +verso +civiltà +diretta +mineo +catania +seguitemi +caltagirone +appena +inaugurato +nuovo +commissariato +polizia +stato +doveva +essere +centro +ospitare +minori +stranieri +accompagnati +fortunatamente +grazie +netta +riduzione +sbarchi +adesso +uomini +donne +forze +ordine +pronte +occuparsi +sicurezza +tace +piega +testa +muore +ogni +volta +fa +parla +cammina +testa +alta +muore +volta +sola +” +giovanni +falcone +arrendo +difesa +italiani +ieri +oltre +cibo +coperte +stati +consegnati +litri +acqua +potabile +barca +centri +sociali +altrettanti +stati +successivamente +rifiutati +pur +infrangere +legge +altro +sciacalli +mettono +rischio +vita +immigrati +bordo +rimarranno +impuniti +paese +serio +arresti +sequestro +mezzo +immediati +giudici +stavolta +nave +ong +tedesca +chiede +sbarco +italia +ovviamente +detto +no +sempre +giudice +decida +contrario +diretta +milano +villaggio +coldiretti +seguitemi +settimana +impegnativa +sempre +battaglia +ecco +sintesi +buona +notte +amici +ancora +diretta +trieste +nettuno +dopo +aver +sperimentato +taser +seguitemi +altra +sera +ora +tarda +intervenuto +microfoni +rai +radio +voglia +ecco +intervista +😊 +diretta +festa +lega +cantù +buona +serata +amici +😊 +mentre +pd +fenomeni +andando +seawatch +zitti +scandalo +affidi +illeciti +reggio +emilia” +esemplare +ascoltare +galera +rischiato +uccidere +militari +italiani +servizio +sequestro +blocco +nave +pirata +maximulta +ong +allontanamento +immigrati +bordo +tanta +pena +complici” +sinistra +giustizia +fatta +indietro +torna +settimana +intensa +continuo +continuerò +dare +massimo +garantire +dignità +confini +futuro +italia +mollo +buonanotte +amici +me +vicenda +concluderebbe +sequestro +nave +arresto +espulsione +equipaggio +trasferimento +immigrati +altri +stati +europei +vorrei +dedicare +tutte +energie +lotta +altro +mafia +senza +perdere +tempo +associazioni +private +straniere +decidono +infrangere +legge +italiana +ecco +cosa +detto +mattina +rai +solo +italia +politici +vanno +bordo +nave +fregata +leggi +‬ +‪i +membri +equipaggio +vanno +arrestati +punto +‬ +‪ho +scritto +collega +olandese +risposto +altro +voglio +fare +figura +fesso +grande +paese +prende +lezioni +nessuno +‬ +‪ecco +intervista +ieri +sera +paolo +debbio +credo +essere +stato +chiaro +‬ +diretta +genova +luogo +demolizione +ponte +morandi +diretta +treviglio +bergamo +caldo +fa +😊 +salvini +chiama +sbruffoncella +detto +peggio +delinquente +merita +galera” +lotta +porro +ascoltare +👍 +diretta +viminale +dopo +comitati +nazionali +ordine +sicurezza +pubblica +calabria +puglia +state +me +immigrazione +può +essere +gestita +navi +fuorilegge +pronti +bloccare +qualunque +tipo +illegalità +sbaglia +paga +europa +assente +sempre +ieri +sera +ribadito +berlinguer +scappa +davvero +guerra +arriva +aereo +corridoi +umanitari +dà +3mila +dollari +scafisti +arrivare +via +mare +alimentando +traffico +uomini +armi +droga +italia +entra +punto +giornate +intense +molliamo +avanti +tutta +bene +italiani +🇮🇹 +buonanotte +amici +diretta +milano +italia +migliori +lavoratori +migliori +imprenditori +mondo +torniamo +farli +correre +shock +fiscale +meno +burocrazia +giustizia +veloce +festivallavoro +mattina +intervenendo +scuola +perfezionamento +forze +polizia +ribadito +soddisfazione +andare +estero +ricevere +complimenti +modello +organizzativo +cooperativo +altro +forze +sicurezza +italia +eccellenza +dobbiamo +andare +fieri +ministro +dico +grazie +parti +migliori +paese +qualche +minuto +stare +insieme +voi😊 +casa +bianca +dopo +incontro +vicepresidente +americano +mike +pence +seguitemi +🇮🇹🇺🇸 +ora +diretta +villa +firenze +residenza +ambasciatore +italiano +seguite +🇮🇹🇺🇸 +cimitero +arlington +washington +deposizione +corona +fiori +tomba +milite +ignoto +salviniusa🇮🇹🇺🇸 +diretta +washington +lincoln +memorial +🇮🇹🇺🇸 +washington +amici +nottambuli +italia +seguitemi +settimana +intensa +molla +buonanotte +amici +😊 +diretta +camera +state +me +tiri +schiaffi +multa +paese +muovendo +allora +qualcuno +può +venire +dubbio +voglia +mettere +mani +aziende +italiane +ieri +sera +bruno +vespa +credo +aver +parlato +chiaro +voglia +rivedete +insieme +me +🔴 +decreto +sicurezza +bis +approvato +seguitemi +ora +diretta +palazzo +chigi +intervista +ieri +barbara +urso +buon +pranzo +amici +settimana +entusiasmante +grazie +amici +affetto +vale +cento +sondaggi +fine +settimana +tantissimi +comuni +fa +storia +conto +domenicavotolega +🇮🇹 +eccomi +biella +seguitemi +domenicavotolega +🇮🇹 +ripropongo +intervista +ieri +sera +paolo +debbio +piacerà +😊 +diretta +paderno +dugnano +poi +biella +ferma +perduto +venerdì +pomeriggio +sole +romano +lombardia +bergamo +☀️ +state +prato +marea +strette +mano +consigli +qualche +foto +emozioni +state +migliaia +giudici +obiettivamente +proprio +lavoro +strano +qualcuno +partecipi +convegni +pro +immigrazione +favore +porti +aperti +grido +nessuno +clandestino +” +poi +giudichi +operato +ministero +temi +credete +ecco +cosa +detto +mattina +canale +buonasera +splendida +orvieto +seguitemi +domenicavotolega +🇮🇹 +buon +pomeriggio +amici +ora +diretta +foligno +splendida +umbria +seguitemi +domenicavotolega +🇮🇹 +ascoli +avanti +tutta +diretta +ascoli +piceno +celebrazione +anni +fondazione +carabinieri +onore +donne +uomini +arma +🇮🇹 +buonasera +forlì +amici +avanti +tutta +💪 +domenicavotolega +🇮🇹 +argenta +ferrara +ferma +perduto +segue +diretta +mirandola +modena +sostenere +candidato +sindaco +lega +vista +ballottaggi +domenica +caldo +fa +🔥🔥🔥 +domenicavotolega +intervista +stamattina +rtl +emergenza +tasse +lavoro +economia +serve +accelerare +dire +tanti +sí +lega +saluto +castelfranco +emilia +☀️ +seguite +domenicavotolega🇮🇹 +porto +mantovano +seguite +domenicavotolega🇮🇹 +diretta +san +bonifacio +verona +seguitemi +amici +9giugnovotolega +🇮🇹 +felice +inaugurare +primo +tratto +superstrada +pedemontana +veneta +viaggiare +velocemente +tantissimi +lavoratori +camionisti +imprenditori +seguitemi +diretta +ora +civitavecchia +sostenere +candidato +sindaco +grazieeee +9giugnovotolega +diretta +fori +imperiali +roma +🇮🇹 +festadellarepubblica +grazie +grazie +ancora +grazie +rivivete +insieme +me +emozioni +settimana +indimenticabile +orgoglioso +fiducia +milioni +italiani +dato +lega +portandola +essere +prima +altro +forza +politica +solo +italia +tutta +europa +metterò +tutta +insieme +squadra +ripagare +consenso +straordinario +commovente +buonanotte +amici +voglio +bene +❤️ +ora +campobasso +sostegno +candidato +sindaco +ballottaggio +seguitemi +9giugnovotolega +primagliitaliani +🇮🇹 +sempre +diretta +potenza +9giugnovotolega +primagliitaliani +🇮🇹 +diretta +casoria +napoli +state +9giugnovotolega +primagliitaliani +🇮🇹 +bella +intervista +ieri +sera +rete +paolo +debbio +guardate +condividete +piacerà +buon +pranzo +amici +porterò +discussione +flat +tax +imprese +famiglie +prossimo +consiglio +ministri +taglio +tasse +burocrazia +pace +fiscale +infrastrutture +sviluppo +solo +così +italia +può +tornare +correre +merita +seconda +potenza +industriale +europea +parlato +conferenza +stampa +oggi +senato +diretta +senato +state +me +buona +serata +amici +pronte +proposte +lega +tagliare +tasse +burocrazia +solo +italia +cresce +lavora +aiuta +europa +rinascere +voglio +italia +cresce +anni +assurde +regole +europee +fatto +aumentare +debito +disoccupazione +voglio +usare +consenso +italiani +abbassare +tasse +imprese +famiglie +paese +torna +respirare +crescere +🇮🇹 +ecco +cosa +detto +ieri +sera +nicola +porro +ministero +interno +sempre +lavoro +italiani +🇮🇹 +state +me +dopo +grazie +italiani +fiducia +lavoro +ridurre +tasse +aumentare +sicurezza +riportare +europa +investire +giovani +lavoro +coraggio +idee +chiare +futuro +appartiene +ripropongo +intervista +ieri +studi +skytg24 +ancora +poco +storia +pronti +domenicavotolega +intervista +ieri +microfoni +rtl +eccola +😊 +domenicavotolega +domenica +pronto +scrivere +storia +votando +lega +intervento +poco +fa +pomeriggio +andato +domenica +grazie +italia +rialza +testa +domenicavotolega +diretta +milano +poco +onda +urso +canale +pronti +domenica +tessera +elettorale +😊 +vercelli +ferma +perduto +domenicavotolega +voglio +generazioni +tempo +determinato +muoiono +precariato +europa +bisogna +ripartire +nome +lavoro +riduzione +tasse +serve +italia +europa +molto +altro +parlato +mattina +rai +guardate +diretta +galliate +seguitemi +amici +domenicavotolega +novi +ligure +alessandria +tanti +amici +piemontesi +primalitalia🇮🇹 +domenicavotolega +ieri +sera +insieme +me +bruno +vespa +giuseppe +ingegnere +meccanico +scegliendo +andare +pensione +quota +ripreso +vita +lasciando +posto +giovane +meno +anno +altro +governo +restituito +dignità +lavoro +futuro +italia +maggio +contiamo +farlo +europa +rivedete +intervista +insieme +me +ora +diretta +palermo +intervento +cerimonia +commemorazione +stragi +capaci +via +amelio +giovanni +falcone +paolo +borsellino +tutte +vittime +mafia +sempre +altro +mente +cuore +dimenticare +continuare +lottare +estirpare +cancro +paese +lamafiamifaschifo +oggi +radio +quei +curiosoni +giorno +pecora +verso +addormentati +meglio +fare +rai +bruno +vespa +puntata +interessante +😊 +intervista +ieri +sera +bianca +berlinguer +rai +credo +essermela +cavata +😉 +diretta +splendida +putignano +bari +seguite +domenicavotolega +🇮🇹 +primalitalia +altra +sera +nicola +porro +ribadito +professo +fede +testimoniando +voglio +paese +rispettano +regole +prossimo +tuo” +aiutare +spesso +arriva +altra +parte +mondo +italiano +vive +pianerottolo +fianco +casa +ecco +intervista +domenicavotolega +state +me +diretta +canile +sanitario +bari +preparando +provvedimenti +premiare +canili +gattili +combattono +randagismo +altri +rendere +aspre +pene +maltratta +abbandona +animali +🐶 +certo +pallottola +calibro +busta +fermare +lavoro +sorrido +perdono +difendo +italiani +pronti +votare +lega +domenica +adesso +gioia +colle +vicino +bari +bel +sole +tanti +sorrisi +vuole +male +seguitemi +domenicavotolega +primalitalia🇮🇹 +diretta +ostuni +domenicavotolega +diretta +splendida +lecce +pensiero +cittadini +pugliesi +spaventati +terremoto +mattina +26maggiovotolega +primalitalia🇮🇹 +diretta +prefettura +lecce +firma +patto +sicurezza +urbana +state +me +decreto +sicurezza +bis +combattere +camorristi +spacciatori +scafisti +fondo +difendere +anziani +truffati +pene +severe +abbandona +maltratta +animali +telecamere +asili +case +riposo +altro +nave +ong +finalmente +sequestrata +comandante +indagato +favoreggiamento +immigrazione +clandestina +avanti +grazie +sostegno +maggio +cambia +europa +domenicavotolega +catechismo +chiesa +cattolica +dice +accoglienza +limiti +possibile” +ecco +certe +periferie +italiane +credo +limite +possibile” +stato +ampiamente +superato +molto +altro +parlato +mattina +la7 +coffee +break +credo +essere +stato +abbastanza +efficace +commentate +bella +italia +richiede +tutela +ambiente +battaglia +credo +moltissimo +combattuta +senza +istinti +talebani +ecologismo +salotto +ora +diretta +roma +assemblea +alis +futuro +trasporto +ora +diretta +roma +amici +confartigianato +presentare +iniziativa +pene +piú +severe +delinquenti +truffano +anziani +state +me +porti +chiusi +vuol +dire +sbarchi +ridotti +meno +reati +meno +problemi +meno +sprechi +meno +donne +bambini +morti +mare +qualcuno +nostalgia +porti +aperti +sostenete +mollo +indietro +torna +buonasera +splendida +firenze +odio +centri +sociali +rispondiamo +sorriso +piazza😊 +seguitemi +diretta +26maggiovotolega +primalitalia +🇮🇹 +ecco +realtà +piazza +duomo +telegiornali +fatto +vedere +immagini +forti +tutte +bugie +lega +domenicavotolega +stavoltavotolega +🇮🇹 +ora +diretta +sassuolo +molla +26maggiovotolega +buongiorno +amici +saluto +valeggio +😊 +26maggiovotolega +intervento +oggi +piazza +duomo +grazie +grazie +grazie +26maggiovotolega +primalitalia +milano +grazieeee +diretta +milano +piazza +duomo +spettacolooo +state +26maggiovotolega +🇮🇹 +milano +pronto +ecco +immagini +ora +piazza +duomo +arrivoooo +poco +diretta +26maggiovotolega +attesa +vedervi +piazza +duomo +ecco +intervista +ieri +sera +rai +26maggiovotolega +🇮🇹 +diretta +milano +assemblea +nazionale +confagricoltura +seguite +intervista +mattina +radio +crc +napoli +vado +sempre +grande +piacere +viva +mezzi +informazione +locali +ripropongo +intervista +ieri +sera +rete +paolo +debbio +leggo +commenti +sempre +diretta +milano +forum +lapresse +seguite +seconda +parte +sempre +diretta +milano +forum +lapresse +seguite +prima +parte +eccomi😊 +maggio +insieme +cambiamo +storia +europa +diretta +milano +incontro +stampa +estera +state +me +diretta +prefettura +napoli +dopo +comitato +ordine +sicurezza +pubblica +seguitemi +diretta +potenza +basilicata +molla +millimetro +26maggiovotolega +primalitalia +🇮🇹 +sabato +milano +piazza +duomo +ore +importante +esserci +scriviamo +insieme +storia +conto +diretta +san +severo +foggia +lega +puglia +sempre +forte +me +enorme +soddisfazione +grazie +26maggiovotolega +buona +serata +campobasso +amici +strapieno +lega +voglia +seguiteci +26maggiovotolega +primalitalia🇮🇹 +pioggia +veroli +frosinone +fermiamo +state +26maggiovotolega🇮🇹 +diretta +senato +presentazione +libro +molto +interessante +carlo +nordio +ex +procuratore +venezia +seguiteci +torna +emilia +stasera +diretta +carpi +modena +seguitemi +amici +26maggiovotolega +primalitalia🇮🇹 +diretta +san +bonifacio +verona +seguitemi +26maggiovotalega +diretta +negrar +verona +seguite +26maggiovotolega +primalitalia +🇮🇹 +saluto +splendida +terra +veneta +diretta +arzignano +vicenza +26maggiovotolega +primalitalia +🇮🇹 +diretta +schio +vicenza +seguitemi +dopo +lombardia +adesso +veneto +diretta +legnago +verona +ferma +perduto +💪 +26maggiovotolega +primalitalia +🇮🇹 +penso +essere +stato +abbastanza +chiaro +mattina +radio +ecco +intervista +diretta +montichiari +brescia +sempre +avanti +seguiteci +26maggiovotolega +primalitalia +🇮🇹 +diretta +lumezzane +valtrompia +brescia +seguitemi +26maggiovotalega +finalmente +ruspe +palazzoni +spaccio +criminalità +zingonia +bergamo +seguite +diretta +tortona +alessandria +ultima +piazza +giornata +stupenda +liguria +piemonte +seguiteci +live +buona +serata +amici +26maggiovotolega +💪💪💪 +oggi +annunziata +rai +😊 +prego +guardare +visto +pazienza +rallegrerete +capirete +maggio +lega +prenderà +valanga +voti +😎💪 +ancora +provincia +cuneo +diretta +splendida +piazza +bra +ferma +diretta +fossano +cuneo +piazza +stupenda +seguitemi +sanremo +solo +sorrisi +😊 +26maggiovotolega +primalitalia +🇮🇹 +stata +settimana +me +particolarmente +impegnativa +intensa +sempre +comunque +bella +affetto +sostegno +date +nord +sud +buona +notte +amici +☺️ +arrivo +decreto +sicurezza +ancora +fondi +forze +ordine +sicurezza +italiani +ecco +cosa +detto +poco +fa +napoli +ringraziando +nuovamente +donne +uomini +divisa +arrestato +quell +infame +sparato +piccola +noemi +diretta +catanzaro +splendida +calabria +state +🇮🇹 +chiudiamo +splendida +giornata +montesilvano +buona +serata +amici +molla +💪 +primalitalia🇮🇹 +spettacolo +montegranaro +ferma +perduto +amici +primalitalia🇮🇹 +buon +pomeriggio +amici +ora +osimo +ancona +state +26maggiovotolega +seconda +parte +ieri +sera +gruber +record +ascolto +oltre +milioni +spettatori +sintonizzati +divertito +credo +aver +mantenuto +certa +calma +dite +rivedete +condividete +saluto +fano +splendide +marche +😊 +seguitemi +diretta +pioggia +ferma +seguitemi +diretta +pesaro +☔😋 +piazza +fantastica +sera +ascoli +freddo +ferma +😊 +polemiche +beghe +chiacchiere +zero +vita +vera +italiani +chiedono +andare +avanti +altro +svelta +riduzione +tasse +flat +tax +famiglie +imprese +cantieri +infrastrutture +sviluppo +futuro +seguite +diretta +intervista +ieri +sera +rai +radio +buona +giornata +amici +🔴spettacolare +tg +nascondono +condividiamo +sera +pavia +davanti +piazza +emozionante +fate +compagnia +casa +🔝💪 +anteprima +diretta +completa +prossimo +buonasera +amici +cosa +fate +diretta +pavia +davanti +piazza +emozionante +fate +compagnia +casa +🔝💪 +saluto +giussano +state +26maggiovotolega +primalitalia🇮🇹 +oggi +riparte +lombardia +eccomi +diretta +concorezzo +mb +primalitalia +26maggiovotolega +lotta +tutte +mafie +vinceranno +stato +italiani +perbene +diretta +milano +inaugurazione +nuova +agenzia +nazionale +beni +confiscati +mafia +stato +contento +sentire +ministro +vicino +cittadino +momento +così +difficile +ascoltate +incredibile +racconto +andrea +ragazzo +ingiustamente +indagato +aver +ferito +altro +ladri +entrati +casa +ministro +sentito +dovere +sentirlo +ribadirgli +vicinanza +legge +legittima +difesa +serve +soprattutto +evitare +situazioni +sempre +parte +difende +dopo +avellino +eccomi +diretta +salerno +seguite +primagliitaliani +26maggiovotolega +ora +insieme +amici +pietrelcina +benevento +scambiando +parole +piazza😊 +roma +amici +seguite +primalitalia +26maggiovotolega +diretta +firenze +state +me +26maggiovotolega +scandicci +ora +guardate +piazza +26maggiovotolega +primalitalia +prato +fate +girare +immagini +tivù +giornaloni +vedere +pd +maggio +mandiamo +casa +voglio +bene +❤ +diretta +san +giuliano +terme +pisa +tour +continua +😁 +26maggiovotolega +ecco +sintesi +lunga +intensa +settimana +😊 +mollo +ultime +foto +giornata +buona +musica +romagnola +sottofondo +piazza +riuscito +entrare +buonasera +forlì +ultima +tappa +giornata +fate +compagnia +26maggiovotolega +condividiamo +modena +venerdì +ore +migliaia +persone +piazza +lega +emilia +sempre +meno +rossa”😉 +modena +poveretti +rischio +estinzione +😁 +continua +tour +emilia +romagna +sostegno +candidati +sindaci +lega +ora +reggio +emilia +seguite +primalitaia🇮🇹 +diretta +mercato +reggio +emilia +fate +passi +me +😁 +buongiorno +fidenza +parma +parte +state +me😁 +primalitalia +ora +diretta +monastero +carmelitano +budapest +presidente +orbán +seguitemi +budapest +sede +ministero +interno +ungherese +appena +concluso +proficuo +incontro +bilaterale +collega +sándor +pintér +aggiorno +state +me +italia +ungheria +europa +entra +solo +permesso +difendere +confini +sicurezza +figli +maggio +scegli +lega +buonasera +civitavecchia +amici +seguitemi +😊 +26maggiovotolega +sondaggi +preferisco +guardate +accoglienza +soliti +rosiconi +ora +diretta +tarquinia +spettacolo +ferma +perduto +26maggiovotolega +saluto +piazza +tivoli +🇮🇹 +seguite +😊 +pedofili +stupratori +galera +castrazione +chimica +accordo +parlato +ieri +sera +rai +diretta +prefettura +milano +state +me +diretta +torino +seguitemi +diretta +biella +tantissimi +stanco +felice +mese +voto +maggio +insieme +possiamo +fare +storia +metto +tutta +sempre +principio +testa +primalitalia🇮🇹 +buongiorno +meravigliosa +piazza +motta +sant +anastasia +seguitemi +meravigliosa +bagheria +seguitemi +meravigliosa +piazza +monreale +sicilia +diretta +monreale +seguitemi +accoglienza +stupenda +corleone +grazie +diretta +sede +elettorale +lega +bergamo +state +diretta +pinzolo +state +me +settimana +lunga +intensa +molla +millimetro +mangiatoia +immigrazione +clandestina +chiusa +riapre +stop +🚫🚫🚫 +buonanotte +amici +primalitalia💪🔝🇮🇹 +felice +incontrare +oggi +milano +eduardo +bolsonaro +parlamentare +brasiliano +figlio +presidente +jair +messias +bolsonaro +segno +collaborazione +amicizia +popoli +🇮🇹🇧🇷 +intervista +ieri +sera +rai +prego +seguirla +buon +pranzo +amici +ex +baraccopoli +san +ferdinando +degrado +illegalità +parole +fatti +viminale +lavora +perfetta +sintonia +difesa +protezione +confini +però +qualcuno +ragioni +politiche +vuole +immagina +porti +riaperti +dica +chiaramente +responsabile +interno +confermo +italia +entra +solo +permesso +portichiusi🇮🇹 +perugia +splendida +regione +dopo +anni +disastri +targati +pd +merita +essere +liberata +seguitemi +diretta +intervista +mattina +rai +radio +terroristi +barconi +certezza +molla +portichiusi🇮🇹 +mamma +giornata +molla +centimetro +diretta +monza +importanti +novità +state +me +settimana +bella +intensa +molla +mai +maggio +vicino +conto +tantissimi +europa +rivoluzioniamo +storia +primalitalia🇮🇹 +libia +qualcuno +business +gioca +fare +guerra +me +trovato +ministro +sbagliato +ascolta +intervista +rtl +prima +italia +🇮🇹 +maggio +orgoglio +coraggio +portiamo +buonsenso +europa +onore +forze +ordine +aprile +parteciperò +sfilate +mezzo +corleone +liberazione +tutta +italia +cancro +mafia +camorra +ndrangheta +ragione +vita +diretta +roma +onorato +partecipare +celebrazioni +167esimo +anniversario +polizia +stato +state +anniversariopolizia +difesa +confini +protezione +aggressione +terrorismo +islamico +priorità +italia +puntiamo +farlo +primo +partito +continente +europa +ecco +cosa +detto +mattina +milano +ripropongo +intervista +ieri +sera +giletti +buon +pomeriggio +amici +ripropongo +conferenza +internazionale +verso +europa +buonsenso +” +europadelbuonsenso +milano +conferenza +internazionale +matteo +salvini +lega +enf +jörg +meuthen +alternative +für +deutschland +efdd +olli +kotro +the +finns +party +ecr +anders +vistisen +dansk +folkeparti +ecr +europadelbuonsenso +🇮🇹live +italiano +verso +europa +buonsenso +” +europadelbuonsenso +milano +conferenza +internazionale +matteo +salvini +lega +enf +jörg +meuthen +alternative +für +deutschland +efdd +olli +kotro +the +altro +finns +party +ecr +anders +vistisen +dansk +folkeparti +ecr +🇮🇹 +live +italiano +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇬🇧 +live +english +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇩🇪 +live +deutsch +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇬🇧live +english +towards +common +sense +europe +” +europadelbuonsenso +milan +international +conference +with +matteo +salvini +lega +enf +jörg +meuthen +alternative +für +deutschland +efdd +olli +kotro +the +altro +finns +party +ecr +anders +vistisen +dansk +folkeparti +ecr +🇮🇹 +live +italiano +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇬🇧 +live +english +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇩🇪 +live +deutsch +https +www +facebook +com +salviniofficial +videos +sfns +mo +diretta +lonigo +vicenza +seguitemi +vinitaly🇮🇹 +ponte +morandi +scontato +partire +disastro +raccogliere +affetto +fiducia +idee +critiche +sempre +rispetto +collaborazione +sbloccacantieri” +risarcimenti +altro +cittadini +imprese +danneggiati +lavori +ricostruzione +quando +primavera +prossima +nuovo +ponte +massimo +forza +genova +sempre +diretta +genova +sotto +ponte +morandi +seguitemi +diretta +zona +rossa +sotto +ponte +morandi +genova +diretta +genova +presieduto +comitato +ordine +sicurezza +pubblica +seguite +settimana +intensa +impegnativa +italia +estero +vado +avanti +sempre +sorriso😊 +buonanotte +amici +diretta +parigi +g7 +ministri +interno +seguitemi +ora +diretta +fiera +cagliari +state +me +ora +diretta +como +seguite +intervista +mattina +lady +radio +firenze +sempre +felice +quando +posso +stare +onda +emittenti +territorio +grazie +ospitalità +viva +radio +locali +ora +diretta +splendida +firenze +quartiere +isolotto +state +26maggiovotolega +paura +mamma +papà +settimana +straordinaria +ricorderò +sempre +regalato +italiani +sacrosanto +diritto +difendersi +casa +propria +buonanotte +amici +ripropongo +partecipazione +ieri +sera +maurizio +costanzo +show +sempre +palcoscenico +emozionante +po +autoironia +sempre +sorriso +guardatelo +stata +bella +puntata +volte +po +leggerezza +fa +bene +☺ +finalmente +oggi +italia +vince +sacrosanto +diritto +difendersi +casa +propria +posto +lavoro +evitare +tutte +incredibili +ingiustizie +ladifesaèsemprelegittima +bellissimo +giorno +italiani +dopo +anni +chiacchiere +approvata +nuova +legge +garantisce +cittadini +sacrosanto +diritto +legittima +difesa +battaglia +civiltà +votata +grandissima +maggioranza +💪🔝 +diretta +viminale +protagonisti +autobus +dirottato +milano +state +diretta +milano +amico +mario +giordano +presentazione +nuovo +libro +italia +italiana” +invertire +rotta +buona +serata +amici +fateci +compagnia +👉 +https +www +librimondadori +it +libri +litalia +piu +italiana +mario +giordano +po +tempo +ecco +intervista +ieri +mattina +canale +collegamento +splendida +matera +purtroppo +microfono +pd +🤨 +buona +serata +amici +stata +settimana +me +particolarmente +impegnativa +intensa +volte +commovente +sempre +comunque +bella +affetto +sostegno +stati +sempre +grazie +amici❤️ +🔴quello +dato +fastidio +ore +qualche +intellettualone +politico +sinistra +provato +comprendere +delinquente +benzina +pistola +coltelli +minacciava +bimbi +dicendo +altro +po +colpe +salvini +vergognino +vado +avanti +ascoltate +intervista +ieri +sera +rete +ora +diretta +splendida +matera +state +me +domenicavotolega +pomarico +seguite +dopo +vediamo +matera +ferrandina +aspetto +numerosi +😊 +domenicavotolega +tolve +potenza +ancora +pochi +giorni +basilicata +storia +avanti +tutta +domenicavotolega +diretta +tito +scalo +potenza +fabbriche +importanti +basilicata +settore +automobilistico +seguitemi +diretta +muro +lucano +potenza +giovedì +mattina +piazza +tantissimi +spettacolo +basilicata +domenicavotolega +diretta +senato +qualcosa +dirvi +seguite +🔴aggiornamento +italia +deve +cedere +ricatti +nave +centri +sociali +cercate +rete +signor +luca +casarini +rende +complice +trafficanti +esseri +umani +portichiusi +italia +delinque +conta +fatto +galera +poco +lavorando +mesi +certezza +pena +zero +sconti +stupratori +assassini +molto +altro +parlato +mattina +rtl +ecco +intervista +studi +barbara +urso +detto +pensavo +credo +pubblico +studio +apprezzato +😊 +stato +abbastanza +chiaro +leggo +commenti +ora +diretta +milano +seguite +diretta +lavello +potenza +visti +qua +cosa +incredibile +buona +domenica +melfi +potenza +amici +seguitemi +24marzovotolega +amici +ora +diretta +villa +agri +marsicovetere +seguite +😊 +24marzovotolega +buon +sabato +lauria +basilicata +amici +oggi +aspetto +numerosi +viggiano +marsicovetere +potenza +filiano +ferma +perduto +24marzovotolega +amici +propongo +sintesi +lunga +intensa +settimana +😊 +intervista +oggi +canale +napoli +adoro +tivù +locali +saluto +basilicata +amici +ora +diretta +splendida +piazza +maratea +seguite +😊 +24marzovotolega +napoli +diretta +prefettura +seguitemi +diretta +camera +ecco +progetto +lega +tutela +marchi +storici +italiani🇮🇹 +diretta +roma +celebrazioni +cinquecentenario +morte +leonardo +🇮🇹 +spettacolo +matera +😍 +state +diretta +scanzano +jonico +matera +seguite +24marzovotolega +quando +volontà +possibile +risolvere +problemi +sembrano +insuperabili +abbattimento +torri +zingonia +luogo +spaccio +degrado +esempio +dalleparoleaifatti +diretta +milano +scuola +formazione +politica +lega +state +amici +ecco +sintesi +lunga +settimana +ferma +perduto +intervista +ieri +sera +rete +paolo +debbio +avanti +buonsenso +bene +italiani +diretta +senato +là +mimosa +rosa +fatti +concreti +ecco +elimineremo +sconti +pena +ammazza +stupra +legge +codicerosso +impone +corsie +preferenziali +altro +rapidissime +denunce +violenze +donna +minigonna +sera +deve +avere +diritto +libertà +andare +giro +senza +essere +molestata +diretta +potenza +basilicata +voterà +domenica +marzo +seguite +intervista +tg5 +spero +essere +stato +chiaro +buona +serata +amici +drogato +ubriaco +senza +patente +marocchino +uccide +genitori” +diretta +camera +proposta +legge +lega +impedire +accadano +ancora +follie +amici +com +stata +settimana +stata +lunga +intensa +piena +emozioni +eccone +sintesi +ora +diretta +stabilimento +navale +monfalcone +fincantieri +consegnerà +costa +crociere +costa +venezia +nave +interamente +italiana +seguitemi +ora +cagliari +mercato +san +benedetto +grazie +sardegna +diretta +cagliari +seguite +ringrazio +fiducia +amiche +amici +sardi +già +domani +lavoro +terra +stupenda +lingua +tradizioni +magnifiche +ascoltate +potho +reposare” +andrea +parodi +altro +youtube +straordinaria +canzone +amore +ecco +intervista +sera +rete +stanco +febbricitante +felice +😊 +diretta +università +luiss +roma +convegno +confagricoltura +seguitemi +sole +sorrisi +serenità +recco +genova +buona +domenica +buon +pranzo +amici +☀️😊 +verona +diretta +salone +trasporti +logistica +seguitemi +avvocati +immigrati +diciotti +battono +cassa +chiedono +risarcimento +danni +assistiti +😅 +bastaaa +italiani +scemi +finita +pacchia +ministro +mesi +reati +diminuiti +sbarchi +azzerati +morti +mare +calati +nuove +assunzioni +forze +ordine +agenti +nuove +divise +raddoppiati +beni +altro +sequestrati +mafie +sinistra +chiacchiera +stata +mandata +casa +parlato +fatti +domenica +sardegna +voto +lega +pd +governo +isola +solo +pessimo +ricordo +riguarda +intervista +mattina +canale +cagliari +sera +trovato +entusiasmo +incredibile +ecco +intervista +tg2 +stanco +felice +domenica +sardegna +possiamo +fare +davvero +storia +buona +serata +amici +🙂 +cagliari +spettacolo +seguiteci +domenicavotolega +diretta +villasimius +villa +sequestrata +narcotrafficante +internazionale +diventerà +alloggio +carabinieri +seguitemi +diretta +iglesias +tantissimi +seguite +domenicavotolega +ritorno +sardegna +ora +carbonia +state +me +domenicavotolega +stamattina +parlato +rai +ecco +cosa +detto +leggo +commenti +nonna +diceva +male +fare +paura +avere” +ecco +intervista +ieri +sera +giovanni +floris +riguardatela +insieme +me +intervista +mattina +rtl +entro +marzo +approvare +nuova +legge +legittima +difesa +possibile +signor +angelo +piacenza +stato +condannato +anni +mezzo +debba +andare +carcere +essersi +difeso +ladro +diretta +bari +state +prima +parte +buongiorno +mercato +alghero +☀️ +seguiteci +diretta +24febbraiovotolega +seguiteci +diretta +sassari +😁 +spettacolo +24febbraiovotolega +processo +processo +domani +arrivasse +altro +barcone +rifarei +fatto +italia +entra +chiedendo +permesso +rispettando +regole +molto +altro +parlato +ieri +sera +giletti +seguite +condividete +ora +diretta +ozieri +sassari +bello +iniziare +così +settimana +state +24febbraiovotolega +ora +diretta +castelsardo +sassari +spettacolo +24febbraiovotolega +diretta +maddalena +state +24febbraiovotolega +diretta +camera +state +me +grazie +abruzzo +seguitemi +diretta +guerriglia +urbana +torino +cassonetti +incendiati +autobus +assaltato +galera +infami +ridotti +quasi +zero +sbarchi +adesso +chiudono +centri +sociali +frequentati +criminali +riguardate +insieme +me +intervista +skytg24 +eccola +nega +uccide +volte +oggi +basovizza +emozionato +commosso +durante +preghiera +connazionali +martiri +foibe +ascolto +storie +famigliari +grazie +dimentichiamo +🇮🇹 +diritto +legittima +difesa +viene +aggredito +casa +negozio +sembra +semplice +buonsenso +marzo +regaleremo +italiani +nuova +legge +tanto +attesa +parte +difende +intervento +ieri +canale +buon +pranzo +amici +vota +domani +abruzzo +migliaia +abruzzesi +pescara +incredibili +grazie +domenica +storia +abruzzo +lanciamo +messaggio +chiaro +tutta +europa +italia +domenicavotolega +diretta +bussi +tirino +pescara +domenicavotolega +diretta +aquila +domenicavotolega +diretta +terni +diretta +monteroni +arbia +siena +restituirò +cittadini +azienda +agricola +piscina +visitate +qualche +mese +fa +state +confiscate +mafia +seguitemi +lamafiamifaschifo +ripropongo +intervista +sera +rete +dite +😊 +prosegue +provincia +teramo +ora +sant +egidio +vibrata +10febbraiovotolega +ora +diretta +mercato +campli +teramo +state +me +buona +domenica +😄 +10febbraiovotolega +arrivato +mercato +campli +teramo +poco +intervento +diretta +pagina +10febbraiovotolega +ora +diretta +giulianova +teramo +state +10febbraiovotolega +amici +propongo +sintesi +lunga +intensa +settimana +😊 +intervista +ieri +sera +vespa +azioni +governo +costate +insulti +denunce +indagini +felice +fatto +rifarei +commentate +condividete +diretta +chiomonte +torino +poco +visiterò +cantiere +tav +qualche +altro +ministro +indagato +grattava” +difendo +paese +vado +fiero +ieri +sera +floris +entusiasmo +quasi +imbarazzante +pubblico +studio +spero +puntata +piaciuta +eccola +🙂 +precedenti +ministro +venga +indagato +rischi +galera +aver +difeso +confini +proprio +paese +tranquillo +rifarei +so +aver +agito +base +costituzione +interesse +altro +italiani +molto +altro +parlato +rtl +ascoltate +fatevi +idea +buona +serata +amici +rivedete +me +prima +puntata +povera +patria” +programma +rai +stato +ospite +altra +sera +intervista +spero +chiara +sintesi +settimana +mollo +diretta +roma +consegnerò +comune +villa +sequestrata +criminale +seguitemi +riprovano +rischio +anni +carcere +aver +bloccato +sbarchi +clandestini +italia +parole +paura +zero +continuo +continuerò +lavorare +difendere +confini +paese +sicurezza +italiani +iononmollo +razzista +fascista +nazista +balle +sinistra +rispondo +fatti +lavoro +risultati +vite +salvate +reati +diminuiti +soldi +risparmiati +bacioni😘 +eccomi +lanciano +chieti +tantissimi +10febbraiovotolega +diretta +vasto +chieti +buon +sabato +amici +riflessione +tornano +mare +davanti +libia +navi +ong +scafisti +ricominciano +sporchi +traffici +persone +tornano +morire +cattivo” +mah +intervista +oggi +radio +crc +sempre +piacere +onore +intervenire +emittenti +territorio +caso +napoli +giorni +lavoro +straordinario +informazione +intrattenimento +servizio +comunità +oggi +accoglienza +afragola +commosso +grazie +🙏 +diretta +afragola +napoli +diretta +senato +state +me +alghero +grazieee +live +splendida +alghero +oristano +spettacolo +diretta +mercato +quartu +cagliari +marea +tralagente +solinaspresidente +diretta +prefettura +cagliari +presieduto +comitato +sicurezza +ordine +pubblico +seguitemi +intervista +mattina +nuovo +programma +approfondimento +tg2 +voglia +riguardate +me +diretta +palazzo +chigi +oggi +giornata +festa +italiani +cattura +rientro +galere +battisti +deve +essere +inizio +percorso +tanti +troppi +altro +terroristi +ancora +piede +libero +vicina +francia +governo +accettiamo +lezioni +morale +accoglienza +solidarietà +generosità +sbagliato +italia +deve +pagare +italia +ripropongo +intervista +ieri +sera +giletti +la7 +vigilia +storica +giornata +oggi +vigliacco +criminale +assassino +stato +finalmente +restituito +giustizia +italiana +ora +diretta +milano +scuola +formazione +politica +lega +state +me +tragedia +rigopiano +dopo +anni +chiacchiere +promesse +vuoto +arrivano +legge +milioni +euro +ministero +interno +aiutare +famigliari +vittime +dalleparoleaifatti +mentre +immigrazione +regolare +integra +lavoro +paga +tasse +manda +figlia +scuola +valore +aggiunto +società +sbarco +incontrollato +senza +regole +clandestini +altro +accusato +cattivismo +razzismo +fascismo +voglio +bloccare +traffico +scafisti +pare +solo +buonsenso +altro +parlato +mattina +rtl +ascoltate +diretta +varsavia +collega +ministro +interno +polacco +brudziński +seguitemi +villone +guardie +cancelli +problema +sicurezza” +operaio +periferia +sì +altro +parlato +ieri +sera +porro +intervista +campo +riguardate +insieme +me +operativo +oggi +ministero +felice +sostegno +dimostrate +ogni +giorno +continuo +lavoro +coraggio +onestà +mollo +centimetro +ora +diretta +aquila +seguite +ferma +perduto +10febbraiovotolega +propongo +intervento +mattina +teramo +trovato +tanta +gente +voglia +cambiamento +10febbraiovotolega +ora +roseto +abruzzi +10febbraiovotolega +diretta +montesilvano +idee +chiare +coerenza +passi +strade +pescara +mezzo +tanti +abruzzesi +perbene +seguitemi +😊 +10febbraiovotolega +molti +sindaci +contestano +decreto +sicurezza +oggi +legge +stato +letto +vengono +garantiti +diritto +salute +diritto +studio +bambini +toccano +possono +essere +altro +espulsi +semplicemente +regalano +altri +diritti +furbetti +veniva +fatto +fino +ieri +mollo +virgola +ascoltate +intervista +rai +radio +arrivato +chieti +rispetta +decreto +sicurezza +aiuta +clandestini +tradisce +italia +italiani +risponderà +davanti +legge +storia +comunque +mollo +😊 +aiuta +clandestini +odia +italiani +risponderà +davanti +legge +storia +mollo +😊 +esistono +clandestini” +alcuni +sindaci +pd +annunciano +applicheranno +decreto +sicurezza +mille +problemi +quotidiani +reali +concittadini +dobbiamo +dare +altro +immigrati +irregolari +accordo +ricordo +sindaci +sinistra +decreto +sicurezza +legge +buon +senso +civiltà +stato +approvato +governo +parlamento +firmato +presidente +repubblica +prima +dobbiamo +pensare +milioni +italiani +poveri +disoccupati +difendendoli +troppi +reati +commessi +immigrati +clandestini +poi +salveremo +resto +mondo +sbaglio diff --git a/anno3/avrc/assignments/dataviz/dataset/all/renzi_comuni.html b/anno3/avrc/assignments/dataviz/dataset/all/renzi_comuni.html new file mode 100644 index 0000000..53a78ed --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/renzi_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/renzi_counter b/anno3/avrc/assignments/dataviz/dataset/all/renzi_counter new file mode 100644 index 0000000..aa1ecae --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/renzi_counter @@ -0,0 +1 @@ +{"ancora": 75, "maltempo": 8, "crolli": 2, "ora": 42, "priorit\u00e0": 10, "aiutare": 10, "vive": 12, "aree": 1, "rischio": 8, "poi": 102, "governo": 253, "deve": 61, "ripristinare": 2, "subito": 33, "unita": 3, "missione": 9, "dissesto": 3, "sbloccare": 8, "cantieri": 11, "servono": 10, "commissari": 1, "chiacchiere": 6, "soldi": 53, "spendiamoli": 1, "italiashock": 6, "sole": 13, "ore": 50, "oggi": 339, "certifica": 1, "verit\u00e0": 40, "semplice": 20, "italia": 344, "davvero": 50, "sblocca": 2, "parte": 55, "mondo": 79, "intero": 6, "pronto": 8, "investire": 10, "ecco": 18, "viva": 84, "propone": 6, "sfida": 7, "posti": 39, "lavoro": 118, "fiducia": 16, "infrastrutture": 21, "cosa": 81, "aspettando": 3, "professore": 3, "italiano": 38, "latino": 1, "sostenitore": 1, "salvini": 274, "scrive": 12, "facebook": 32, "piazza": 30, "sardine": 1, "prender\u00e0": 2, "neppure": 1, "binocolo": 1, "certe": 3, "cose": 40, "studenti": 8, "pu\u00f2": 56, "definirsi": 1, "educatore": 1, "me": 115, "naturalmente": 20, "no": 88, "ascolto": 1, "francesco": 5, "gregori": 1, "dice": 79, "festa": 13, "foglio": 6, "manca": 1, "passato": 20, "cambia": 11, "bello": 27, "cambiare\u201d": 1, "messaggio": 6, "politicamente": 3, "forte": 25, "ottimismo": 2, "dobbiamo": 31, "dare": 37, "scossa": 1, "iniziare": 2, "quei": 19, "miliardi": 32, "gi\u00e0": 40, "stanziati": 2, "bloccati": 3, "burocrazia": 2, "nasce": 3, "shock": 4, "spenderli": 1, "ripartire": 11, "economia": 33, "stamani": 16, "stato": 98, "ospite": 8, "mattina": 8, "ve": 5, "persa": 5, "trovate": 8, "fate": 8, "sapere": 13, "andata": 6, "buona": 91, "giornata": 58, "\ud83d\ude0a": 5, "incontri": 6, "ravvicinati": 2, "terzo": 13, "tipo": 2, "studi": 3, "rai": 19, "prototipo": 1, "originale": 1, "et": 2, "maestro": 6, "rambaldi": 1, "invi\u00f2": 1, "spielberg": 1, "anno": 50, "prima": 127, "film": 9, "passati": 4, "quasi": 16, "anni": 133, "emozione": 10, "vedere": 32, "bimbetto": 1, "cinema": 4, "lacrime": 2, "ripropongo": 9, "intervista": 49, "porta": 30, "ieri": 85, "sera": 35, "leggo": 18, "volentieri": 10, "commenti": 33, "aspetto": 35, "stasera": 31, "bruno": 4, "vespa": 4, "capogruppo": 2, "lega": 59, "camera": 7, "molinari": 3, "condannato": 6, "peculato": 8, "assolto": 2, "cassazione": 5, "penso": 24, "debba": 5, "essere": 89, "garantisti": 5, "avversari": 21, "soprattutto": 36, "dovuto": 13, "subire": 3, "molti": 33, "attacchi": 4, "notizia": 41, "assoluzione": 4, "stessa": 11, "eco": 2, "indagine": 5, "condanna": 9, "trovo": 9, "dunque": 28, "altro": 594, "dovere": 14, "avversario": 6, "politico": 29, "riconoscere": 8, "pubblicamente": 6, "cittadino": 13, "innocente": 3, "media": 16, "dovrebbero": 4, "valorizzare": 3, "almeno": 22, "fatto": 171, "scontreremo": 1, "parlamento": 41, "correttezza": 1, "altrui": 4, "forma": 4, "onest\u00e0": 21, "intellettuale": 8, "raccontato": 6, "corriere": 20, "euro": 36, "fare": 136, "vera": 11, "paese": 101, "pronta": 3, "propria": 12, "fa": 157, "dicevo": 1, "recuperare": 4, "quell": 7, "errore": 9, "ripristini": 1, "unit\u00e0": 4, "idrogeologico": 2, "sblocchi": 1, "piano": 18, "iniziativa": 7, "prevista": 2, "pistoia": 2, "annullata": 1, "ondata": 1, "colpendo": 1, "tutta": 32, "toscana": 2, "stringiamo": 1, "popolazioni": 1, "momento": 22, "colpite": 1, "amministratori": 3, "impegnandosi": 1, "fronteggiare": 1, "conseguenze": 11, "scuso": 4, "viaggio": 10, "organizzato": 3, "rivedremo": 1, "fin": 8, "prossimi": 11, "giorni": 60, "insieme": 71, "abbraccio": 23, "teresa": 16, "bellanova": 10, "solo": 180, "palco": 3, "catania": 6, "segno": 10, "partito": 19, "fuoco": 13, "amico": 19, "rapporti": 5, "umani": 12, "valore": 6, "insostituibile": 1, "sorrisi": 2, "abbracci": 3, "politica": 118, "bellissima": 25, "atmosfera": 1, "sblocchiamo": 3, "diamo": 7, "sicilia": 5, "merita": 12, "cresce": 9, "giorno": 58, "dopo": 107, "diretta": 74, "lancio": 3, "italiaviva": 23, "pazzesco": 3, "cinquemila": 1, "persone": 88, "altezza": 3, "entusiasmo": 13, "poco": 28, "ettore": 1, "rosato": 1, "collegamento": 1, "aria": 5, "tira": 7, "myrta": 3, "merlino": 3, "spiegare": 11, "proposte": 22, "investimenti": 11, "rilanciare": 8, "ferma": 13, "modo": 43, "farla": 1, "opere": 8, "pubbliche": 5, "possono": 13, "finalmente": 29, "liberate": 1, "progetto": 22, "mano": 28, "farlo": 20, "conoscere": 15, "torino": 24, "buongiorno": 9, "langhe": 1, "vediamo": 22, "presentare": 7, "shockitalia": 1, "proposta": 19, "momenti": 5, "aprono": 4, "polemiche": 42, "venezia": 4, "sindaco": 36, "brugnaro": 1, "governatore": 1, "zaia": 1, "veneziani": 1, "tempo": 95, "uniti": 5, "rimediare": 3, "danni": 20, "serio": 15, "unisce": 2, "divide": 2, "felice": 23, "matera": 7, "vada": 11, "avanti": 24, "creduto": 5, "quando": 157, "credeva": 2, "nessuno": 29, "bravissimo": 2, "commissario": 4, "salvo": 2, "nastasi": 1, "bravo": 8, "ovviamente": 19, "stefano": 6, "boeri": 1, "bandi": 1, "internazionali": 11, "direzione": 1, "musei": 4, "nazionali": 3, "italiani": 104, "sovranisti": 12, "accusarono": 1, "voler": 3, "consegnare": 2, "patrimonio": 2, "culturale": 15, "stranieri": 3, "cultura": 54, "conosce": 10, "confini": 3, "n\u00e9": 5, "frontiere": 1, "continuiamo": 1, "pensare": 13, "ruoli": 2, "premiata": 1, "competenza": 6, "nazionalit\u00e0": 1, "orgogliosi": 8, "chiara": 10, "parisi": 1, "scelta": 24, "unanimit\u00e0": 1, "candidati": 1, "arrivati": 4, "dirigere": 1, "centre": 1, "pompidou": 1, "metz": 1, "francia": 12, "legge": 80, "bilancio": 53, "evitato": 2, "aumento": 28, "iva": 31, "sufficiente": 1, "serve": 27, "presenteremo": 3, "venerd\u00ec": 6, "stampa": 21, "ogni": 62, "settimana": 44, "scambio": 6, "qualche": 60, "opinione": 5, "migliaia": 26, "amici": 63, "via": 20, "email": 3, "enews": 7, "arrivano": 12, "quota": 18, "grazie": 135, "pazienza": 6, "condivisione": 1, "onore": 25, "popolo": 29, "curioso": 3, "attento": 1, "giorgetti": 2, "lancia": 2, "idea": 33, "scrivere": 5, "regole": 11, "gioco": 9, "sembra": 32, "saggia": 1, "intelligente": 4, "bella": 27, "mattinata": 3, "linkiesta": 2, "it": 12, "milano": 27, "video": 20, "completo": 2, "http": 11, "bit": 18, "renzilinkiesta": 1, "invece": 40, "resoconto": 1, "serata": 10, "festival": 5, "buon": 42, "sabato": 15, "trent": 1, "cadeva": 1, "muro": 4, "berlino": 1, "ricordo": 17, "emozioni": 10, "immagini": 10, "fine": 33, "storia": 59, "inizio": 10, "diverso": 7, "abbattere": 2, "muri": 6, "costruire": 5, "ponti\u201d": 1, "giorgio": 1, "pira": 2, "chiacchierata": 10, "cappellini": 2, "repubblica": 25, "parlando": 12, "interessa": 10, "patto": 5, "politichese": 1, "maggioranza": 16, "concreto": 4, "italiana": 46, "ragazzino": 2, "nato": 5, "cresciuto": 3, "rapito": 1, "mamma": 9, "voleva": 6, "combattere": 20, "estremisti": 5, "islamici": 4, "terribile": 5, "croce": 5, "rossa": 5, "tornato": 4, "casa": 64, "spero": 15, "alvin": 1, "possa": 11, "crescere": 11, "diventando": 3, "presto": 12, "maurizio": 7, "lupi": 4, "ministro": 102, "giornali": 24, "pubblicarono": 1, "intercettazioni": 1, "gridarono": 1, "scandalo": 7, "totalmente": 1, "estraneo": 2, "vicenda": 26, "decise": 3, "dimettersi": 3, "stesso": 23, "assicurare": 1, "tranquillit\u00e0": 3, "famiglia": 33, "venne": 2, "gettata": 1, "tritacarne": 1, "mediatico": 3, "dissi": 1, "fiero": 8, "aver": 43, "lavorato": 7, "esprimevo": 1, "vicinanza": 3, "reso": 4, "giustizia": 27, "scopriamo": 5, "intercettato": 1, "aperta": 10, "allora": 44, "procura": 3, "firenze": 105, "finisce": 8, "archiviazione": 2, "troverete": 1, "evidenza": 1, "gazzettini": 1, "giustizialismo": 4, "talk": 6, "fabiola": 2, "gianotti": 1, "stata": 53, "rieletta": 1, "guida": 10, "cern": 1, "ginevra": 1, "fino": 22, "donna": 19, "rende": 13, "scienziata": 1, "modello": 7, "giovani": 13, "te": 13, "cara": 3, "ricerca": 8, "qualit\u00e0": 10, "scorsi": 2, "accusato": 7, "sfasciacarrozze": 1, "chiedevamo": 1, "cancellare": 3, "provvedimenti": 4, "sbagliati": 2, "tasse": 51, "auto": 13, "aziendali": 9, "adesso": 120, "misura": 10, "sbagliata": 5, "cancellata": 4, "potremmo": 2, "toglierci": 2, "tanti": 33, "sassolini": 1, "scarpe": 1, "chiedere": 22, "insultavano": 3, "nata": 4, "risolvere": 5, "problemi": 14, "possiamo": 22, "dire": 71, "tassa": 4, "cos\u00ec": 51, "tenere": 8, "ilva": 21, "firmato": 12, "dodici": 1, "decreti": 2, "raccolto": 1, "insulti": 22, "ex": 11, "compagni": 9, "omicida": 1, "bambini": 21, "taranto": 10, "perso": 23, "voti": 9, "ricevuto": 8, "minacce": 6, "genere": 11, "rifarei": 5, "chiude": 5, "intera": 5, "industria": 9, "mezzogiorno": 4, "incredibile": 18, "sentirmi": 2, "voglio": 20, "chiudere": 9, "tacevano": 1, "venivo": 2, "insultato": 10, "contrario": 9, "vaccinato": 1, "rispetto": 26, "rimane": 6, "disgusto": 2, "vilt\u00e0": 1, "accadendo": 9, "propriet\u00e0": 4, "indiani": 1, "mittal": 4, "annunciato": 7, "recesso": 1, "vogliono": 15, "andare": 24, "sostengo": 1, "previsto": 5, "usino": 1, "terribili": 3, "notizie": 9, "alessandria": 1, "condivido": 6, "dolore": 20, "famiglie": 43, "vittime": 14, "grande": 65, "vigili": 1, "giornale": 9, "illustro": 1, "posizione": 5, "attacca": 31, "ridicolo": 11, "norma": 11, "usata": 1, "pretesto": 1, "votata": 5, "grilloleghista": 1, "vuole": 62, "cercare": 7, "colpevole": 3, "selfie": 5, "intanto": 21, "lavoriamo": 2, "soluzione": 6, "decisione": 11, "disimpegnarsi": 1, "inaccettabile": 6, "togliere": 4, "alibi": 3, "eliminando": 1, "autogol": 4, "immunit\u00e0": 4, "voluto": 16, "vecchio": 8, "messo": 19, "guardia": 3, "patuanelli": 1, "polemica": 18, "meschina": 1, "mediocre": 2, "scudo": 4, "penale": 2, "cancellato": 4, "esecutivo": 2, "stelle": 69, "vogliamo": 24, "soluzioni": 2, "capri": 2, "espiatori": 2, "indipendentemente": 2, "bisogno": 17, "futuro": 62, "passa": 10, "acciaio": 1, "numerosi": 2, "preso": 16, "assassino": 7, "alcuni": 19, "contestazioni": 2, "pesantissime": 1, "risanamento": 1, "meno": 47, "tolto": 3, "tavolo": 5, "devono": 15, "mantenere": 7, "impegni": 1, "cittadini": 30, "lavoratori": 7, "tocca": 12, "scherza": 3, "ricapitolando": 1, "fiume": 2, "improvvisamente": 2, "retromarcia": 5, "corso": 5, "nuove": 7, "plastica": 11, "bene": 65, "apprezzo": 1, "senso": 21, "gualtieri": 1, "conta": 8, "risultato": 8, "notax": 4, "unico": 15, "gestire": 3, "immigrazione": 22, "africa": 7, "europei": 10, "lasciarlo": 1, "cinesi": 4, "aiutarli": 1, "direbbe": 2, "slogan": 7, "eni": 1, "coldiretti": 1, "bonifiche": 1, "ferraresi": 1, "provando": 2, "bravi": 4, "quel": 30, "numero": 9, "tatuato": 1, "braccio": 5, "porto": 3, "vergogna": 16, "ascoltiamo": 1, "senatrice": 2, "liliana": 4, "segre": 4, "pieni": 20, "retroscena": 5, "molto": 67, "cellulari": 4, "gasolio": 4, "imprese": 7, "concrete": 3, "evitare": 15, "microbalzelli": 3, "criticano": 2, "daranno": 2, "ragione": 18, "voteremo": 3, "vedrete": 2, "domenica": 28, "novembre": 7, "splendore": 1, "tutte": 32, "conosco": 4, "gianluca": 2, "rocchi": 1, "giovanissimi": 2, "iniziammo": 1, "carriera": 4, "arbitrale": 1, "gloriosa": 2, "sede": 4, "faenza": 3, "primi": 13, "fischi": 2, "settore": 7, "giovanile": 2, "sempre": 107, "dimostrato": 6, "grandissimo": 3, "arbitro": 2, "bloccando": 4, "partita": 6, "olimpico": 1, "cori": 2, "citt\u00e0": 34, "napoli": 12, "grandissima": 3, "persona": 8, "tantissime": 2, "dichiarazioni": 8, "commenta": 2, "messaggero": 8, "piacere": 4, "critica": 1, "idee": 40, "svolge": 1, "servizio": 11, "prezioso": 2, "ribadisco": 2, "emergenza": 11, "molte": 12, "cominciare": 24, "riduzione": 6, "interessi": 10, "debito": 17, "parliamo": 12, "decine": 7, "spiccioli": 1, "merito": 8, "felici": 7, "risultati": 17, "ottenuti": 1, "basta": 52, "continueremo": 4, "batterci": 1, "migliorare": 4, "feriscono": 1, "competitivit\u00e0": 1, "coperture": 5, "giusto": 32, "evasione": 5, "fiscale": 19, "combattuta": 2, "invasione": 1, "troppe": 2, "facciamole": 1, "scendere": 4, "renzimessaggero": 1, "cancelleremo": 1, "stangata": 1, "ceto": 3, "medio": 4, "vita": 43, "abbassato": 5, "provincia": 6, "comune": 11, "premier": 39, "80\u20ac": 17, "imu": 8, "irap": 5, "costo": 8, "canone": 9, "club": 2, "tassatori": 1, "impedito": 2, "lavoreremo": 3, "eliminare": 1, "assurdit\u00e0": 4, "proposto": 7, "respinto": 2, "zucchero": 5, "chiedo": 8, "darci": 6, "seguire": 6, "battaglia": 23, "avere": 27, "sottoscritto": 1, "dicono": 41, "leader": 16, "partitino": 1, "attaccano": 11, "chiss\u00e0": 9, "impressione": 8, "paura": 32, "crescendo": 1, "riparleremo": 2, "abbassiamo": 1, "presidente": 39, "trump": 10, "radio": 2, "meglio": 24, "fuori": 19, "unione": 6, "europea": 17, "orgoglioso": 22, "identit\u00e0": 5, "cuore": 39, "fiorentino": 6, "radici": 1, "altrettanto": 2, "europeo": 10, "europa": 81, "santi": 1, "lasciava": 2, "alda": 1, "merini": 1, "versi": 1, "bellezza": 35, "continuano": 7, "emozionarci": 1, "amore": 5, "mistica": 1, "poesie": 1, "illuminano": 2, "quotidiano": 14, "approdare": 1, "settimane": 7, "stati": 26, "fatti": 24, "passi": 6, "case": 4, "decisiva": 2, "aumenti": 2, "duro": 3, "numeri": 23, "salgano": 2, "centinaio": 4, "milioni": 42, "nulla": 15, "bruciati": 1, "triennio": 2, "demagogia": 10, "quota100": 4, "bloccato": 10, "incontrare": 4, "donne": 25, "uomini": 20, "estero": 7, "dimostrano": 6, "scrivendo": 2, "interessanti": 2, "mauro": 2, "porcini": 1, "classe": 7, "lombardo": 2, "capo": 7, "design": 2, "pepsi": 1, "rivoluzionando": 1, "concetto": 3, "trovarlo": 1, "lab": 1, "d\u00ec": 1, "soho": 1, "nyc": 3, "eccellenza": 2, "cresciuta": 2, "straordinario": 4, "vivaio": 2, "politecnico": 1, "prosegue": 2, "farsa": 5, "brexit": 21, "ipotizza": 2, "nuovo": 36, "voto": 25, "dicembre": 7, "meravigliarsi": 1, "caos": 5, "mai": 66, "visto": 30, "immagino": 2, "copertine": 2, "tabloid": 1, "inglesi": 6, "pasticcio": 3, "oceanviking": 1, "mezzo": 16, "mare": 12, "bordo": 2, "soffrono": 2, "vanno": 28, "fatte": 3, "sbarcare": 2, "tema": 8, "spigoloso": 1, "bisogna": 33, "lavorare": 14, "concretizzare": 1, "principio": 4, "aiutiamoli": 1, "loro\u201d": 2, "cooperazione": 3, "vaccini": 31, "lotta": 10, "corruzione": 6, "cento": 2, "naturale": 2, "impone": 3, "farle": 1, "immediatamente": 1, "risolve": 2, "spot": 3, "pelle": 11, "ultimi": 12, "mette": 10, "metto": 2, "salvinismo": 2, "copiando": 3, "leghisti": 16, "central": 1, "park": 1, "tappa": 4, "obbligata": 1, "smaltire": 1, "jet": 1, "lag": 1, "sgambata": 1, "raggiungendo": 2, "maratona": 4, "prossima": 5, "mafia": 3, "capitale": 7, "esistita": 1, "detto": 65, "corte": 2, "importanti": 7, "indagini": 4, "colpevoli": 5, "reati": 3, "gravi": 3, "parlare": 35, "significa": 29, "innanzitutto": 6, "scegliere": 5, "fermarsi": 3, "superficie": 2, "approfondire": 8, "studiare": 16, "riflettere": 9, "sentenze": 12, "social": 27, "show": 5, "difficile": 21, "vale": 14, "pena": 9, "fondo": 7, "riesco": 4, "provare": 6, "piet\u00e0": 4, "morte": 14, "califfo": 1, "isis": 6, "baghdadi": 1, "feroce": 2, "ucciso": 8, "saltare": 2, "s\u00e9": 3, "figli": 17, "posso": 5, "perdonarglielo": 1, "specie": 8, "davanti": 29, "pagare": 29, "propri": 5, "follia": 5, "continua": 14, "rimbombarmi": 1, "testa": 16, "imperdonabile": 1, "volete": 7, "ascoltate": 2, "roberto": 11, "cingolani": 3, "menti": 3, "brillanti": 2, "quest": 13, "potuto": 4, "partecipare": 5, "leopolda": 45, "contributo": 4, "minuto": 2, "ascoltare": 5, "simbolo": 21, "gabbiano": 1, "spunta": 2, "tante": 21, "alzarsi": 1, "volo": 5, "sopra": 5, "vite": 3, "parallele": 2, "sopravvivenza": 3, "valori": 23, "pescatori": 2, "mazara": 1, "vallo": 1, "difficolt\u00e0": 5, "sacrificio": 2, "coraggio": 19, "umanit\u00e0": 11, "pronte": 3, "rinunciare": 2, "fonte": 4, "garantire": 6, "altri": 40, "raccontata": 1, "vogue": 1, "lezione": 6, "giro": 25, "piazze": 4, "sventola": 1, "rosario": 1, "scordandosi": 1, "apostoli": 1, "vedette": 1, "difendono": 2, "custodiscono": 1, "dentro": 10, "dovremmo": 3, "fieri": 2, "testate": 2, "sfidare": 2, "pensiero": 18, "dominante": 1, "dedicano": 2, "coraggiose": 2, "roma": 41, "ragazzo": 10, "nemmeno": 13, "viene": 25, "atroce": 4, "strada": 34, "tragedia": 20, "qualunque": 3, "causa": 7, "barbaro": 1, "omicidio": 8, "commentatori": 5, "superficiali": 1, "politici": 9, "odio": 49, "influencer": 4, "dico": 26, "sciacallaggio": 4, "povero": 3, "luca": 4, "persino": 20, "cadavere": 1, "utilizzato": 3, "propaganda": 16, "forze": 11, "ordine": 14, "straordinarie": 3, "polizia": 8, "parole": 33, "equilibrate": 1, "fratello": 7, "maggiore": 3, "madre": 4, "forza": 31, "denunciare": 5, "figlio": 17, "preferisce": 3, "vederlo": 2, "carcere": 4, "piuttosto": 1, "pusher": 1, "droga": 4, "d\u00e0": 7, "sperare": 1, "risposta": 11, "novanta": 3, "secondi": 4, "matteo": 30, "cambiato": 16, "coerente": 1, "usare": 5, "attaccando": 6, "sopravvissuta": 1, "olocausto": 3, "minuta": 1, "imparare": 5, "sant": 5, "egidio": 1, "worldpastaday": 1, "assicurando": 1, "200mila": 1, "piatti": 1, "pasta": 1, "poveri": 10, "deputata": 4, "maria": 15, "gadda": 1, "scritto": 15, "spreco": 2, "alimentare": 3, "gira": 5, "spiegarla": 1, "raccontarla": 1, "volontari": 7, "associazionismo": 2, "possano": 6, "tornare": 19, "credere": 13, "colonna": 6, "solida": 1, "solidale": 2, "esattamente": 13, "chiuse": 2, "traffico": 2, "duomo": 6, "contestata": 1, "ottobre": 7, "magicamente": 1, "ritrov\u00f2": 1, "meravigliata": 1, "gesto": 10, "banale": 7, "pedonalizzazione": 4, "restituiva": 1, "capacit\u00e0": 6, "guardare": 5, "alto": 7, "ammirare": 2, "godere": 1, "quotidianit\u00e0": 1, "turismo": 1, "esploso": 1, "domeniche": 2, "giustamente": 2, "copiate": 2, "livello": 13, "nazionale": 17, "diventate": 1, "must": 1, "sistema": 7, "tranviario": 1, "ridotto": 5, "distanza": 3, "vorrei": 16, "ringraziare": 2, "coloro": 4, "crederci": 3, "auguri": 18, "smettere": 4, "progetti": 8, "lungo": 5, "termine": 1, "visionari": 1, "difficili": 2, "fatevi": 1, "camminata": 3, "ritmo": 4, "accompagner\u00e0": 1, "scoprirete": 1, "immersi": 1, "fiorenza": 4, "paolo": 9, "mieli": 2, "storico": 7, "giornalista": 13, "prestigio": 1, "negato": 1, "direttore": 12, "occupiamoci": 1, "parlo": 4, "manette": 3, "patente": 1, "punti": 5, "date": 7, "occhio": 6, "durante": 12, "confronto": 13, "televisivo": 3, "assenteista": 1, "giornate": 3, "sagre": 1, "feste": 2, "popolari": 3, "partecipa": 4, "riunioni": 2, "istituzionali": 2, "bruxelles": 13, "guidare": 1, "massimo": 12, "pro": 5, "loco": 4, "ufficialmente": 6, "rimasta": 2, "male": 38, "capisco": 9, "accostare": 1, "attivit\u00e0": 2, "offensivo": 1, "autorevole": 1, "esponente": 1, "opposizione": 25, "impegnato": 2, "istituzioni": 32, "lanciato": 6, "agor\u00e0": 2, "interessante": 2, "belgio": 2, "manda": 3, "dichiarazione": 4, "redditi": 2, "semmai": 1, "correggi": 1, "\u201d": 13, "complimenti": 10, "peccato": 6, "possibilit\u00e0": 5, "riguarda": 5, "antipatici": 6, "simpaticissimo": 1, "mojito": 5, "sagra": 1, "qualcuno": 36, "tv": 15, "dovrebbe": 16, "ricordarglielo": 1, "tanto": 35, "campus": 1, "scolastico": 1, "amatrice": 2, "intitolato": 1, "sergio": 2, "marchionne": 3, "impegno": 14, "raccogliere": 5, "fondi": 12, "ricostruirlo": 1, "incontrammo": 1, "maranello": 1, "angela": 2, "merkel": 3, "scomparsa": 1, "continuo": 7, "dirlo": 9, "gigante": 7, "ingiustamente": 2, "colpito": 5, "immagine": 11, "creare": 11, "fortuna": 5, "pensano": 6, "concreti": 1, "fake": 26, "news": 30, "affettuoso": 5, "grato": 2, "memoria": 12, "justin": 1, "congratulations": 1, "good": 1, "job": 1, "my": 1, "friend": 1, "f\u00e9licitations": 1, "bon": 1, "travail": 1, "mon": 2, "ami": 1, "piccola": 8, "bipartisan": 1, "rimetta": 1, "piedi": 12, "genova": 35, "bisagno": 3, "lavori": 7, "sbloccati": 1, "senza": 87, "alcuna": 2, "divisione": 3, "amministrazioni": 1, "colore": 11, "metodo": 2, "temi": 8, "consiglio": 21, "ministri": 15, "approvato": 7, "vedo": 6, "bicchiere": 2, "pieno": 8, "deciso": 10, "precedente": 1, "discussione": 13, "sposta": 1, "potr\u00e0": 11, "rimasti": 3, "proveremo": 3, "scorso": 10, "clamorosamente": 2, "torneremo": 1, "rispettare": 5, "regolamenti": 1, "costituzione": 5, "guardiamo": 5, "sanit\u00e0": 8, "rimettere": 1, "moto": 4, "sola": 8, "fermi": 4, "richiesta": 6, "senatore": 17, "denuncia": 2, "savoini": 9, "gliel": 2, "chiesto": 26, "glielo": 2, "report": 2, "iscriversi": 5, "sito": 3, "carta": 2, "modalit\u00e0": 2, "sostenere": 6, "avventura": 4, "fantastica": 4, "fazio": 8, "impegnativa": 1, "regalato": 6, "intense": 1, "pomeriggio": 8, "scarica": 1, "adrenalina": 1, "neo": 1, "rosa": 4, "diciottenne": 2, "strade": 8, "invecchia": 2, "eccome": 2, "notte": 24, "affetto": 12, "accusa": 2, "ladro": 3, "democrazia": 20, "pallone": 1, "gonfiato": 1, "dette": 3, "codardi": 2, "pensavo": 3, "don": 8, "rodrigo": 1, "abbondio": 1, "intorno": 5, "fabio": 5, "treno": 4, "incontro": 5, "tanta": 14, "gente": 38, "stazione": 7, "bellissimo": 35, "riconoscersi": 2, "spiace": 4, "accontentarsi": 1, "maxi": 6, "schermo": 1, "leopolda10": 23, "impressionante": 10, "apre": 2, "percorrerla": 3, "intervento": 9, "conclusivo": 1, "pagina": 15, "youtube": 1, "coda": 2, "avverto": 1, "responsabilit\u00e0": 13, "mando": 1, "ospiti": 2, "curiosi": 2, "tardi": 10, "installato": 1, "schermi": 1, "scelto": 17, "meravigliosa": 10, "divertiremo": 1, "valorizzeremo": 1, "purissima": 1, "\u202ale": 1, "claudia": 2, "giovane": 11, "combattendo": 3, "sla": 2, "\u202c": 2, "\u202a": 2, "leopolda10\u202c": 1, "interventi": 3, "circa": 7, "niente": 28, "pensione": 4, "spendere": 4, "anticipare": 1, "centomila": 2, "semplicemente": 18, "ingiusto": 4, "costano": 2, "mettiamo": 4, "stipendi": 3, "tavoli": 6, "spettacolo": 7, "protagonista": 2, "attiva": 2, "partecipe": 1, "numerini": 1, "\u202ada": 1, "iscrivere": 1, "online": 1, "nessun": 8, "signore": 9, "tessere": 1, "correnti\u202c": 1, "pregiudizi": 2, "ultimatum": 1, "elena": 3, "bonetti": 4, "familyact": 3, "beppe": 17, "grillo": 24, "anziani": 1, "fiasco": 1, "prime": 7, "cancelli": 3, "arrivate": 4, "arrivando": 5, "sottovalutate": 1, "nasrim": 1, "resteranno": 2, "tatuate": 1, "domani": 35, "dario": 4, "nardella": 2, "venuto": 1, "occhi": 6, "fratelli": 9, "sorelle": 3, "kurdistan": 3, "ragazze": 13, "combattuto": 7, "sconfiggere": 4, "altroestremismo": 1, "islamico": 4, "salvato": 6, "occidente": 3, "fronte": 4, "ci\u00f2": 36, "accade": 7, "perdendo": 2, "dignit\u00e0": 20, "tregua": 2, "curde": 1, "aggressione": 2, "turca": 1, "dimenticando": 2, "esplosione": 2, "commosso": 5, "scoppia": 1, "cerchiamo": 2, "entrare": 5, "inaugurazione": 1, "mostra": 4, "tiberio": 4, "barchielli": 2, "ricordiamo": 2, "foto": 20, "ricordano": 2, "importante": 19, "straordinaria": 6, "attesa": 11, "pronti": 9, "costruiamo": 1, "italia2029": 2, "rivoluzionarie": 1, "fatturazione": 5, "elettronica": 5, "fisco": 3, "telematico": 1, "nuova": 20, "dirigente": 7, "femminile": 8, "talenti": 1, "laboratorio": 1, "aspettiamo": 5, "decima": 2, "volta": 37, "www": 10, "leopoldastazione": 3, "accordo": 18, "segna": 5, "triste": 9, "britannici": 3, "vero": 27, "disastro": 7, "referendum": 23, "vincono": 2, "bugie": 21, "rimette": 1, "povera": 5, "ultime": 4, "donazione": 2, "sveleremo": 1, "edizione": 4, "parleremo": 6, "clima": 13, "racconteremo": 3, "immaginiamo": 1, "ventinove": 1, "ventinuovi": 1, "cantava": 1, "intervistata": 1, "nonna": 2, "compie": 7, "novantanove": 1, "sorbita": 1, "lucidissima": 1, "buoncompleanno": 1, "preparativi": 1, "memorabile": 1, "augurio": 6, "rimettersi": 1, "litigare": 9, "assistito": 2, "rai1": 3, "notato": 1, "dati": 37, "disco": 1, "rotto": 5, "solite": 2, "risposto": 5, "domande": 6, "sparire": 2, "rispondere": 8, "sappiamo": 7, "tuttavia": 5, "esponenti": 3, "ben": 9, "moderato": 1, "finito": 9, "monologhi": 1, "scappano": 2, "dibattiti": 1, "accaduto": 8, "politiche": 6, "fame": 7, "seriet\u00e0": 10, "dibattito": 12, "dimostra": 7, "domanda": 11, "precisa": 2, "famosi": 1, "spesi": 1, "s\u00ec": 19, "basterebbe": 6, "usato": 2, "falsa": 2, "fuggire": 2, "renzisalvini": 2, "riconoscete": 1, "cartello": 1, "trasmissione": 11, "uomo": 38, "parola": 11, "scherziamo": 2, "lampedusa": 3, "morta": 2, "abbracciata": 1, "bambino": 7, "lascia": 7, "restiamo": 3, "soddisfatto": 1, "match": 3, "minuti": 13, "guardate": 11, "dite": 9, "pensate": 18, "35mila": 3, "dando": 3, "economica": 12, "piccolo": 16, "capitano": 7, "perfetto": 1, "luigi": 11, "marattin": 1, "spiega": 9, "iniqua": 1, "accontenta": 2, "urli": 1, "lorenzo": 12, "guarnieri": 1, "neanche": 5, "incidente": 2, "stradale": 3, "tenacia": 1, "condotto": 1, "approvazione": 1, "sacrosanta": 2, "firmare": 14, "palazzo": 34, "chigi": 13, "leggete": 4, "padre": 31, "qn": 2, "2nlmk85": 1, "consenso": 4, "unanime": 2, "gran": 2, "passo": 17, "tutt": 2, "scontato": 1, "articoli": 1, "indicato": 1, "aggiunta": 1, "spiegato": 6, "evitiamo": 1, "mini": 2, "certa": 2, "troppo": 14, "spendacciona": 1, "vorrebbe": 5, "aumentare": 11, "tagliamo": 1, "costi": 4, "spese": 6, "beni": 2, "servizi": 5, "assurdo": 19, "rilevante": 1, "siria": 3, "curdi": 6, "orrore": 3, "puro": 2, "linea": 7, "fermare": 4, "estremismo": 3, "mese": 21, "sciagurata": 1, "turchia": 3, "regime": 2, "erdogan": 2, "fermato": 6, "blocco": 3, "armi": 8, "minimo": 3, "sindacale": 1, "imporre": 2, "sanzioni": 2, "economiche": 7, "ricevendo": 2, "kobane": 2, "rimasto": 4, "curdo": 1, "reazione": 5, "immediata": 1, "comunit\u00e0": 20, "internazionale": 12, "corpi": 2, "martoriati": 1, "lasciano": 3, "curda": 1, "bloccare": 12, "vendita": 2, "prossimo": 14, "vedendo": 3, "tace": 6, "complice": 6, "punto": 20, "presentato": 5, "diversa": 6, "partiti": 11, "decidiamo": 1, "logo": 2, "selezionato": 1, "votare": 25, "preferite": 1, "piace": 6, "luogo": 19, "ricco": 3, "partecipazione": 4, "rappresenter\u00e0": 1, "scheda": 2, "elettorale": 27, "temo": 6, "poterlo": 1, "utilizzare": 7, "questione": 7, "diritti": 14, "inchino": 1, "genio": 4, "makkox": 2, "fenomenale": 1, "scoprire": 1, "sorpresa": 3, "chiamiamo": 3, "nome": 24, "ricatto": 1, "morale": 6, "ricatti": 1, "libert\u00e0": 25, "attentato": 6, "sinagoga": 4, "tedesca": 3, "yom": 1, "kippur": 1, "ebreo": 1, "ebrei": 2, "abbassi": 1, "rigurgiti": 1, "neonazisti": 1, "campione": 3, "leggere": 16, "assolutamente": 1, "distruggendo": 4, "lasciarli": 1, "soli": 8, "profondamente": 2, "finta": 7, "riportano": 4, "alcune": 12, "frasi": 3, "attribuite": 1, "smentite": 3, "conte": 23, "consideri": 1, "prepotente\u201d": 1, "pari": 3, "peggio": 11, "esperienza": 5, "logorante": 1, "causato": 2, "credo": 20, "chiarezza": 4, "intendo": 2, "scontro": 8, "finire": 3, "primo": 42, "evitando": 2, "accuse": 6, "prepotenza\u201d": 1, "unica": 6, "per\u00f2": 25, "parlano": 12, "costantemente": 1, "strano": 7, "paragona": 1, "papeete": 3, "conto": 33, "prova": 9, "cambiare": 24, "attaccare": 12, "rendono": 4, "guerra": 14, "sbagliato": 14, "obama": 13, "segreti": 3, "lucia": 5, "annunziata": 4, "mezz": 2, "mojiti": 3, "cubiste": 1, "asili": 6, "nido": 6, "edilizia": 2, "scolastica": 3, "discutere": 14, "populismo": 14, "costringe": 3, "caratteri": 1, "simpatie": 1, "antipatie": 1, "personali": 6, "programmi": 1, "studia": 1, "carte": 7, "trova": 6, "insomma": 12, "novit\u00e0": 4, "discute": 7, "alleanze": 2, "anzi": 5, "avvicinando": 1, "sorprendente": 2, "dimostrer\u00e0": 1, "cresciamo": 1, "senatrici": 1, "brave": 1, "competenti": 4, "annamaria": 1, "parente": 1, "aiutato": 5, "sociale": 5, "jobsact": 15, "ruolo": 5, "societ\u00e0": 10, "aderito": 2, "gruppo": 11, "arricchisce": 1, "intelligenza": 9, "preparazione": 1, "benvenuta": 1, "territori": 2, "limito": 3, "considerazione": 2, "fenomeno": 2, "obiettivo": 10, "giocare": 8, "simpatico": 3, "pagano": 12, "articolo": 12, "rispondermi": 1, "base": 6, "crede": 15, "populista": 11, "gioca": 4, "apparire": 2, "troppaspesa": 1, "leggerlo": 2, "trieste": 4, "condoglianze": 2, "agenti": 2, "rilanciata": 3, "fakenews": 26, "stavolta": 9, "varcano": 1, "vengo": 3, "partecipato": 10, "complotto": 7, "ordito": 1, "scoperto": 8, "sottovalutare": 3, "portata": 2, "bufale": 4, "diverse": 7, "rilanciato": 1, "procedere": 3, "vie": 1, "legali": 2, "buonismo": 1, "agisco": 1, "giudizio": 6, "signor": 5, "george": 2, "papadopoulos": 1, "definisce": 4, "collaboratore": 2, "trump\u201d": 1, "stamattina": 13, "rilasciato": 3, "false": 4, "gravemente": 1, "lesive": 1, "reputazione": 2, "sbaglia": 4, "paga": 10, "diffama": 2, "pure": 9, "tribunale": 8, "tg2": 4, "piaciuta": 2, "spread": 49, "spesa": 2, "intermedia": 1, "abbassare": 6, "lettera": 16, "solito": 10, "dazi": 2, "americani": 6, "prodotti": 3, "alimentari": 2, "agricoltori": 1, "sovranismo": 1, "protezionismo": 2, "sciagura": 1, "migliore": 5, "difendere": 6, "vivere": 17, "fatta": 17, "opportunit\u00e0": 3, "scelte": 20, "debole": 1, "guadagnare": 1, "globalizzazione": 2, "profeti": 2, "sventura": 1, "sostengono": 1, "esportiamo": 1, "professa": 1, "chiede": 8, "danneggia": 1, "ottoemezzo": 1, "nonni": 7, "nonne": 2, "anna": 8, "rispettivamente": 1, "bellissime": 3, "achille": 2, "adone": 2, "lasciato": 9, "dono": 3, "meraviglioso": 5, "compiuto": 4, "costruzione": 1, "ponte": 16, "renzo": 5, "rapidit\u00e0": 1, "lavorando": 3, "considerata": 3, "occasione": 6, "riscatto": 2, "pax": 1, "burocratica\u201d": 1, "ovunque": 6, "parlato": 20, "avanzando": 1, "eccole": 1, "vince": 8, "chiusa": 2, "muore": 4, "futurologi": 1, "diventata": 2, "colto": 1, "occasioni": 2, "capace": 5, "aprirsi": 1, "contaminarsi": 1, "impero": 1, "romano": 2, "rinascimento": 1, "terra": 9, "emigrazione": 2, "luce": 1, "proprio": 49, "export": 2, "apertura": 3, "lasciamo": 5, "scimmiotta": 1, "orban": 6, "rendendosi": 1, "danno": 16, "esistenziale": 1, "paesi": 14, "regno": 8, "unito": 8, "germania": 7, "differenza": 4, "linguaggio": 5, "stile": 7, "liturgie": 1, "interne": 5, "squadra": 8, "passiamo": 1, "compagno": 2, "viviamo": 1, "correnti": 4, "creato": 6, "diarchia": 2, "regola": 1, "costitutiva": 1, "coordinatori": 2, "provinciali": 1, "spesso": 14, "millennials": 2, "arriva": 20, "ventenne": 1, "verr\u00e0": 4, "pensi": 10, "proponi\u201d": 1, "altra": 30, "pd": 41, "capitan": 12, "fracassa": 12, "tg3": 1, "mandare": 4, "ministeri": 1, "sottosegretari": 1, "schiaffo": 3, "consumatori": 1, "porterebbe": 1, "recessione": 27, "fiorentina": 10, "giocatore": 4, "franck": 1, "rib\u00e9ry": 1, "castrovilli": 1, "giovanissimo": 3, "migliori": 3, "centrocampisti": 1, "\ud83d\ude00": 3, "milanfiorentina": 1, "record": 3, "certo": 18, "decider\u00e0": 1, "incoraggiare": 2, "moneta": 2, "digitale": 1, "attraverso": 5, "sconti": 2, "fiscali": 2, "dovremo": 4, "commissioni": 2, "credito": 1, "dimezzate": 1, "attuali": 1, "stabilendo": 1, "tetto": 2, "alcun": 5, "transazione": 1, "mondiali": 4, "atletica": 2, "qatar": 1, "malore": 1, "colpisce": 10, "jonathan": 1, "busby": 1, "aruba": 1, "pochi": 7, "metri": 1, "traguardo": 2, "atleta": 2, "guinea": 1, "biassau": 1, "accorge": 2, "accompagna": 1, "aiutandolo": 1, "sport": 7, "maiuscola": 2, "competitivo": 1, "normale": 7, "optional": 1, "quali": 10, "contenuti": 1, "assaggio": 1, "tratto": 1, "luned\u00ec": 1, "esce": 2, "cosina": 1, "ragazzi": 63, "colorano": 1, "verde": 4, "pianeta": 4, "allargano": 1, "fattibile": 1, "applaudire": 1, "magistrati": 4, "definitive": 1, "confermo": 3, "magistrato": 1, "indaghi": 1, "ipotesi": 5, "berlusconi": 8, "responsabile": 9, "stragi": 4, "mafiose": 1, "costanzo": 4, "attonito": 1, "scrivono": 4, "taluni": 1, "governato": 3, "votato": 13, "libero": 5, "criticato": 8, "contrastato": 1, "straccio": 1, "egli": 1, "mandante": 1, "mafioso": 1, "pessimo": 1, "credibilit\u00e0": 8, "italiane": 16, "canzone": 2, "tommaso": 1, "paradiso": 2, "scissione\u201d": 1, "thegiornalisti": 1, "veramente": 3, "family": 1, "act": 1, "misure": 11, "natalit\u00e0": 1, "tg1": 2, "pienone": 1, "operazione": 9, "divertirsi": 2, "critiche": 9, "scherzato": 2, "imitazione": 1, "striscia": 2, "effettivamente": 2, "sottovalutato": 1, "potenzialmente": 4, "devastante": 4, "deepfake": 2, "raffinata": 1, "tecnica": 2, "centro": 5, "valanghe": 2, "diffamazioni": 4, "peraltro": 4, "vaglio": 1, "tribunali": 3, "sorriso": 6, "finto": 2, "fuorionda": 1, "redazione": 3, "sapr\u00e0": 4, "strumento": 4, "prendo": 3, "leggerezza": 1, "pericolose": 1, "costruttive": 1, "aiutano": 1, "caratteristiche": 2, "forti": 4, "femminista": 2, "sostantivo": 2, "problema": 38, "quote": 3, "difese": 1, "contenuto": 1, "coinvolge": 1, "maternit\u00e0": 1, "parit\u00e0": 3, "salario": 1, "violenza": 25, "sguardo": 3, "rivoluzione": 5, "maschilista": 1, "retrograda": 1, "marina": 1, "terragni": 1, "piacerebbe": 3, "svolto": 3, "vertice": 2, "interno": 33, "mesi": 45, "assenza": 1, "tornata": 5, "proclami": 4, "boss": 1, "concerto": 1, "sotto": 25, "pioggia": 1, "salutarmi": 1, "albergo": 4, "fresco": 1, "born": 1, "to": 1, "run": 1, "gara": 4, "haters": 1, "emma": 5, "marrone": 1, "soltanto": 8, "vergognare": 3, "artista": 3, "personale": 14, "sostegno": 6, "cattiveria": 1, "odia": 1, "malta": 5, "solidariet\u00e0": 12, "accoglie": 1, "migranti": 11, "perdere": 7, "contributi": 1, "continuare": 9, "scelgono": 3, "aderire": 3, "nazioni": 2, "unite": 2, "zero": 19, "emissioni": 2, "entro": 5, "accordi": 7, "parigi": 9, "ambiente": 5, "sostenibili": 1, "necessario": 4, "alzare": 4, "presenter\u00e0": 2, "proprie": 4, "benvenuto": 2, "puntata": 23, "arena": 3, "giletti": 4, "la7": 3, "intensi": 2, "pechino": 2, "shangai": 2, "italiavivaappello": 2, "aiutarci": 1, "cliccare": 1, "italiavivasostieni": 1, "proporci": 1, "italiavivaproponi": 1, "affascinante": 3, "artificiale": 7, "rapporto": 9, "innovazione": 11, "tecnologica": 2, "nuovi": 5, "reid": 1, "hoffman": 1, "fondatore": 2, "linkedin": 1, "grandi": 13, "esperti": 5, "tecnologia": 3, "convegno": 1, "stanford": 2, "university": 1, "doppietta": 1, "ferrari": 4, "strepitosa": 3, "svegliati": 1, "titolo": 8, "piloti": 1, "meraviglia": 7, "singapore": 2, "mattino": 3, "gazzettino": 3, "verdi": 2, "decorrentizzato\u201d": 1, "tesserato": 1, "piantiamo": 1, "albero": 1, "nazionalisti": 3, "destra": 7, "acclamato": 1, "straniero": 1, "ungherese": 1, "accetta": 1, "rifiuta": 2, "riceve": 1, "contributenti": 1, "prendere": 14, "ungheria": 2, "prende": 6, "alzano": 1, "sovranista": 3, "nazionalista": 1, "acclama": 1, "tifo": 7, "significhi": 5, "patria": 2, "chiamano": 5, "patrioti": 2, "ungheresi": 2, "autista": 1, "bus": 1, "rimprovera": 1, "minorenni": 2, "pestano": 1, "folle": 6, "puniti": 3, "riscoprire": 1, "stagione": 4, "doveri": 7, "diceva": 6, "moro": 1, "logica": 1, "rinata": 1, "leclerc": 3, "pole": 1, "settembre": 10, "san": 20, "omonimi": 1, "salerno": 1, "data": 3, "particolare": 3, "comunale": 2, "infatti": 16, "annunciai": 1, "pedonalizzare": 1, "ritenevano": 1, "possibile": 6, "giudicata": 1, "ardita": 1, "temeraria": 1, "temevano": 1, "reazioni": 2, "conservatrice": 1, "signori": 3, "status": 1, "quo": 1, "viveva": 1, "rendita": 1, "realt\u00e0": 37, "tornerebbe": 2, "indietro": 9, "passare": 11, "diecimila": 5, "motorini": 1, "accanto": 4, "battistero": 1, "sente": 3, "clacson": 1, "libera": 6, "compiuta": 3, "insistono": 3, "stravagante": 2, "staccare": 1, "spina": 2, "dimenticano": 2, "attaccata": 1, "elezioni": 21, "spingendo": 1, "margini": 1, "eppure": 9, "pregiudizio": 2, "condizionare": 2, "ambizione": 1, "immaginare": 3, "forme": 3, "cominciando": 1, "presenza": 4, "assieme": 2, "riaccendo": 1, "cellulare": 2, "alema": 1, "ipocrita": 1, "molta": 6, "ossessionati": 1, "entrambi": 6, "terza": 8, "consecutiva": 1, "bebe": 6, "vio": 2, "campionessa": 2, "mondiale": 7, "paralimpica": 2, "averla": 1, "volto": 3, "brava": 5, "link": 3, "giancarlo": 4, "siani": 4, "camorra": 3, "scomodo": 1, "andava": 2, "eliminato": 1, "altrohttps": 1, "cronaca": 5, "caro": 8, "manchi": 1, "commuove": 2, "venire": 4, "brividi": 2, "mafie": 1, "terrorismo": 3, "criminalit\u00e0": 1, "esempio": 14, "aiuti": 4, "vere": 7, "chiave": 2, "crescita": 29, "educazione": 10, "n": 1, "contento": 4, "ottima": 5, "audience": 3, "seguito": 6, "commentato": 2, "piena": 4, "visti": 1, "parlamentari": 12, "festeggiando": 2, "compleanno": 7, "annibali\ud83c\udf39": 1, "ufficializzeremo": 1, "gruppi": 1, "buonanotte": 2, "circondati": 2, "sms": 2, "disponibilit\u00e0": 1, "aderisca": 1, "comitatiazionecivile": 3, "respiriamo": 1, "lasciare": 7, "atto": 16, "sogni": 6, "oggetto": 2, "litigi": 1, "interni": 3, "vittoria": 4, "ottenuto": 2, "salvare": 8, "tratta": 11, "innovativa": 1, "lancino": 1, "spazio": 6, "enorme": 12, "passioni": 1, "attende": 1, "frase": 10, "robert": 1, "frost": 1, "citata": 1, "attimo": 2, "fuggente": 1, "compagnia": 2, "boy": 1, "scout": 7, "trovai": 1, "bosco": 1, "scelsi": 1, "battuta": 3, "diverso\u201d": 1, "scegliamo": 1, "paracadute": 2, "sonora": 3, "lungomare": 1, "jovanotti": 1, "profondo": 5, "nord": 12, "signora": 6, "lombarda": 1, "razzista": 1, "leghista": 9, "sfegatata\u201d": 1, "nega": 2, "affitto": 1, "ragazza": 4, "meridionale": 1, "cade": 2, "terrazzo": 1, "benzinaio": 1, "tuffa": 1, "attutirne": 1, "caduta": 2, "salvandogli": 1, "scena": 7, "fumetto": 1, "extracomunitario": 1, "chiama": 13, "angel": 2, "mettere": 11, "episodi": 3, "fianco": 1, "capire": 18, "diseducativa": 1, "campagna": 33, "ricordare": 12, "razza": 1, "provenienza": 1, "passaporto": 2, "prepartita": 1, "pareggio": 3, "juve": 3, "firma": 6, "esco": 1, "franchi": 3, "po": 9, "amaro": 1, "bocca": 7, "stretto": 2, "coreografia": 1, "torna": 17, "lottano": 4, "climate": 1, "change": 1, "scorsa": 4, "legislatura": 7, "milione": 9, "ministra": 2, "assegno": 1, "ceo": 2, "borgomeo": 1, "team": 2, "utilizzando": 2, "strumenti": 1, "saxa": 1, "gres": 1, "riassunto": 2, "sorridere": 4, "moltissime": 2, "volte": 26, "saviano": 1, "censura": 1, "assurda": 9, "zerocalcare": 1, "arrivata": 4, "aquila": 2, "spinge": 1, "reagire": 9, "decidere": 9, "partecipanti": 1, "critichi": 1, "direttrice": 1, "teatro": 8, "stabile": 2, "abruzzo": 3, "annalisa": 1, "simone": 1, "appartiene": 2, "dovr\u00e0": 8, "ammette": 1, "censure": 1, "gratuiti": 1, "lanciata": 2, "diciamo": 8, "pioniera": 1, "isabella": 5, "conti": 13, "lazzaro": 5, "tel": 1, "aviv": 1, "maglietta": 1, "cuffie": 1, "correre\u201d": 1, "buonaserata": 1, "senato": 50, "volere": 2, "maggioritario": 1, "sappia": 3, "vinto": 23, "stabilit\u00e0": 2, "desideri": 5, "bellissimi": 3, "trasformarli": 1, "doveva": 7, "costituzionale": 3, "bastava": 1, "teniamo": 2, "governi": 7, "coalizione": 2, "bicameralismo": 1, "paritario": 1, "contrappasso": 1, "s\u00ec\u201d": 1, "vissuto": 1, "tempesta": 2, "poteri\u201d": 4, "segnato": 4, "svolta": 5, "inspiegabile": 1, "accettare": 2, "diktat": 1, "aumentato": 6, "portato": 11, "escluso": 2, "europee": 7, "alimentato": 1, "tensione": 2, "verbale": 11, "corrente": 3, "inattese": 1, "sorprendenti": 1, "difendendo": 1, "interesse": 10, "mordendomi": 1, "lingua": 1, "costato": 2, "umano": 6, "giusta": 9, "risentimenti": 2, "mettendo": 5, "approfitto": 2, "milanese": 1, "mezza": 1, "km": 4, "mega": 2, "doccia": 1, "nanna": 2, "vota": 10, "dubbi": 4, "alternativa": 4, "isolata": 1, "ue": 1, "spiagge": 1, "opacit\u00e0": 1, "russe": 2, "saluti": 1, "romani": 1, "civile": 28, "uccide": 1, "definito": 3, "buono": 2, "perde": 8, "chiamare": 1, "femminicidi": 1, "pazzesca": 3, "strabiliante": 1, "monza": 1, "soffrendo": 1, "vincendo": 1, "entra": 7, "stupendo": 1, "capite": 1, "mike": 1, "bongiorno": 1, "popolare": 4, "incontrarlo": 1, "lontano": 2, "decideranno": 1, "giudici": 6, "user\u00e0": 1, "aggredire": 2, "imparino": 1, "dimostrazione": 2, "civilt\u00e0": 6, "uscente": 1, "secondo": 34, "stime": 1, "osservatorio": 1, "cpi": 1, "mandato": 5, "uscire": 9, "utile": 4, "tasche": 2, "berrettini": 3, "rivelazione": 1, "tennistico": 1, "sconfitta": 8, "nadal": 2, "us": 1, "open": 1, "impedisce": 1, "tennista": 2, "tifoso": 1, "viola": 3, "arrivare": 6, "finale": 2, "ormai": 22, "evidente": 6, "promessa": 3, "ama": 9, "tennis": 4, "big": 2, "soddisfazione": 1, "ultimo": 14, "durissima": 1, "rabbrividisco": 1, "parla": 22, "suicidio": 3, "ballo": 4, "figlia": 3, "limite": 5, "decenza": 2, "lottato": 3, "lotter\u00f2": 1, "pagato": 7, "addirittura": 7, "bambina": 3, "bimba": 2, "divenire": 1, "barbarie": 6, "esprimersi": 2, "toni": 2, "insulta": 6, "abito": 1, "fisico": 1, "bracciante": 1, "agricola": 1, "divenuta": 1, "sindacalista": 1, "degno": 2, "pubblica": 11, "poveretto": 1, "polemizza": 1, "compatita": 1, "criticata": 2, "ironizza": 2, "fisiche": 1, "auguro": 4, "poter": 6, "stupore": 2, "vivono": 3, "ascoltano": 1, "passione": 7, "basti": 1, "discorsi": 3, "infiamma": 1, "platea": 1, "odiare": 1, "amare": 2, "reale": 3, "amarvi": 1, "pensa": 10, "farsi": 11, "insulto": 5, "beh": 3, "conoscete": 2, "rappresentata": 1, "commissione": 7, "sembrava": 6, "gentiloni": 5, "chiedeva": 5, "veniva": 4, "formalizzata": 1, "comizi": 3, "spiaggia": 9, "cubista": 1, "riguardo": 2, "prerogative": 1, "costituzionali": 2, "altre": 8, "mentre": 32, "esprimeva": 1, "raffinati": 1, "concetti": 1, "consigliere": 2, "economico": 7, "borghi": 2, "ipotizzava": 1, "uscita": 5, "tangenti": 3, "petrolio": 1, "russo": 1, "educavano": 1, "fuggiti": 2, "venivano": 1, "dna": 1, "difetti": 1, "sentimenti": 2, "ideali": 5, "accogliere": 2, "carichi": 2, "dipingere": 1, "scimmiottare": 1, "ricette": 1, "popoli": 2, "diversi": 8, "undicesimo": 1, "consecutivo": 1, "attivita": 1, "manifatturiera": 1, "contrazione": 1, "effetti": 5, "vedranno": 1, "giustifica": 2, "verginella": 1, "tempi": 8, "assetti": 1, "poltrone": 5, "superato": 5, "correre": 7, "porte": 5, "affrontata": 1, "rinviata": 1, "magari": 6, "mitico": 5, "emilia": 4, "patta": 1, "lavora": 9, "produce": 3, "crea": 3, "benessere": 1, "temere": 1, "abbassando": 1, "darmi": 2, "regalo": 6, "istat": 18, "pil": 34, "negativo": 7, "consumi": 3, "scommettere": 6, "quadro": 3, "catastrofe": 2, "fingere": 1, "capirlo": 2, "inchiodare": 1, "scuola": 21, "estiva": 9, "meritare": 13, "italia\u201d": 2, "agosto": 16, "presunto": 3, "usava": 1, "poteri": 6, "isolava": 1, "chiariva": 1, "russia": 4, "teneva": 1, "ostaggio": 1, "malmessi": 1, "carrozzoni": 1, "ignorando": 1, "tradizione": 3, "accoglienza": 6, "preparato": 3, "torso": 1, "nudo": 4, "principali": 2, "beach": 1, "incarico": 2, "formare": 1, "rivendicare": 1, "meriti": 1, "constatare": 1, "impossibile": 7, "truce": 1, "contraddizioni": 3, "aperti": 2, "affaccino": 1, "ambizioni": 5, "richieste": 2, "invito": 4, "tenga": 2, "sicurezza": 26, "democratiche": 3, "risparmi": 4, "garantisco": 3, "costa": 4, "fatica": 4, "ignorare": 2, "offese": 1, "cominciato": 1, "potere": 6, "verbo": 1, "mettiamoci": 2, "ascoltando": 1, "conferenza": 8, "leggermente": 1, "ossessionato": 4, "relax": 3, "omonimo": 7, "noiva": 1, "\ud83c\uddfa\ud83c\uddf8": 1, "\ud83c\udde8\ud83c\uddf3": 1, "vede": 9, "finestra": 2, "austerity": 2, "\ud83c\uddee\ud83c\uddf9": 2, "protagonisti": 2, "vincitore": 1, "campionato": 2, "cognome": 2, "comunque": 12, "vadano": 2, "finali": 1, "sinisa": 2, "mihajlovic": 2, "lottatore": 1, "leucemia": 2, "avvenendo": 1, "amazzonia": 1, "esige": 1, "colpa": 43, "ong": 4, "g7": 4, "purch\u00e9": 1, "torni": 5, "renzi\u201d": 4, "quindici": 2, "angolo": 4, "ko": 1, "aumentino": 1, "arrivi": 1, "saltino": 1, "prevalga": 2, "singoli": 3, "sognare": 5, "investito": 2, "semina": 2, "speranza": 10, "stipendio": 6, "consentire": 2, "lascio": 1, "professione": 2, "colpiti": 1, "sisma": 1, "rester\u00e0": 3, "ferita": 4, "cicatrizzata": 1, "presente": 1, "insiste": 2, "assurde": 3, "terremoto": 3, "prendermi": 2, "funzionato": 1, "successivi": 1, "stare": 14, "ambito": 1, "onoriamo": 1, "ricostruendo": 1, "anima": 3, "iit": 1, "robot": 3, "prevenzione": 1, "sostenibilit\u00e0": 3, "argomenti": 3, "tosti": 1, "ripaga": 1, "ridicole": 1, "situazione": 9, "chiare": 1, "varie": 3, "interviste": 3, "mettendoci": 1, "formazione": 5, "investendo": 1, "permettere": 4, "under30": 5, "ciocco": 5, "occhetta": 1, "cattolica": 3, "aperto": 4, "ricostruire": 4, "innovatori": 2, "esperto": 1, "bravissima": 2, "milena": 2, "bertolini": 2, "ct": 3, "calcio": 23, "figc": 1, "gravina": 2, "innamorare": 1, "sagge": 1, "mattarella": 4, "pausa": 2, "sportiva": 1, "seconda": 9, "fortis": 4, "filosofia": 3, "briguglia": 1, "quindi": 9, "andrea": 8, "cottolengo": 4, "oltre": 24, "studiano": 1, "impegnano": 2, "riflessione": 1, "corsa": 4, "mattutina": 1, "ernesto": 2, "sindaca": 3, "bisogni": 1, "citarmi": 1, "ossessivo": 2, "ritiene": 1, "lascer\u00e0": 1, "viminale": 12, "destro": 2, "tedesco": 2, "convinto": 8, "averti": 1, "fattene": 1, "partenza": 1, "verso": 18, "lucca": 3, "under": 1, "pensato": 6, "appuntamento": 3, "crisi": 24, "orizzonte": 1, "maggior": 3, "convinti": 1, "superficialit\u00e0": 1, "educare": 3, "inizia": 9, "\ud83d\ude42": 1, "dura": 2, "vista": 7, "ottimo": 2, "peggiori": 3, "repubblicana": 6, "andato": 10, "appena": 12, "diventato": 7, "giuseppe": 3, "dimette": 6, "fallito": 6, "intervengo": 3, "maratonamentana": 1, "fallimento": 5, "cambiamento": 13, "capito": 7, "annuncia": 3, "dimissioni": 17, "esperienze": 2, "azzerato": 2, "pacchia": 3, "finita\u201d": 2, "fuga": 2, "isolato": 3, "sconfitti": 5, "ricordate": 15, "dicevano": 9, "governeremo": 2, "populisti": 16, "funzionano": 2, "falliscono": 1, "istituzionale": 13, "riportare": 2, "collegio": 7, "scelga": 1, "allarme": 2, "bundesbank": 1, "crollo": 5, "produzione": 9, "industriale": 9, "costituisce": 2, "rischiare": 1, "anticipate": 1, "peggiore": 4, "petizione": 8, "sfiducia": 10, "mila": 4, "firmarla": 2, "sbrigarsi": 2, "servir\u00e0": 3, "\ud83d\ude07": 1, "sforzo": 2, "raggiungiamo": 1, "sfiduciapersalvini": 4, "renzi": 38, "pur": 7, "spalancato": 1, "capitanfracassa": 4, "battista": 24, "copertina": 2, "espresso": 2, "arrabbiarsi": 1, "sinistra": 3, "rester\u00f2": 1, "nemico": 2, "rispettano": 1, "paragone": 2, "soffre": 3, "sparato": 3, "palle": 1, "incatenate": 1, "puristi": 1, "coppa": 3, "stadio": 4, "antognoni": 1, "aleviola": 1, "so": 5, "dimetter\u00e0": 1, "renziani\u201d": 1, "accadesse": 1, "riterrei": 1, "seminare": 2, "coraggiosa": 3, "definivano": 2, "invincibile": 1, "pavido": 1, "impaurito": 2, "rientro": 3, "tranquillo": 2, "salvezza": 2, "esca": 2, "eviter\u00e0": 1, "riprender\u00e0": 1, "difenda": 1, "anzich\u00e9": 14, "torno": 5, "dimetti": 1, "vacanze": 2, "quotidiani": 7, "innumerevoli": 1, "scenari": 1, "rischia": 4, "chiaro": 19, "stella": 2, "polare": 1, "serie": 13, "presunti": 4, "effetto": 4, "aspirante": 2, "condannare": 1, "destini": 1, "chiesa": 5, "piero": 2, "perticaia": 1, "arte": 4, "omelie": 1, "sacerdote": 2, "monsignor": 1, "righi": 1, "correndo": 1, "quass\u00f9": 1, "priore\u201d": 1, "chiamavamo": 1, "colline": 1, "fiorentine": 1, "par": 1, "condicio": 1, "buttiamoci": 2, "palio": 3, "siena": 2, "\ud83c\udfc7": 1, "confusione": 1, "cielo\u201d": 1, "riceviamo": 1, "ferragosto": 5, "formati": 1, "comitati": 15, "60mila": 1, "gestita": 1, "seria": 10, "ridere": 14, "scivolarsi": 1, "poltrona": 10, "breve": 6, "brutto": 2, "offre": 1, "maio": 190, "scene": 7, "impallidire": 1, "calciomercato": 1, "\ud83d\ude31": 1, "vedremo": 8, "movimento": 14, "accadere": 2, "cambi\u00f2": 1, "ennesima": 5, "inarrestabile": 1, "dettava": 1, "auspica": 1, "rimpasti": 1, "spera": 1, "pace": 5, "grillini": 28, "gradasso": 1, "elemosina": 2, "parlamentare": 12, "costretto": 6, "dimetta": 1, "firmiamo": 1, "50mila": 1, "firme": 9, "marted\u00ec": 2, "diventa": 8, "aggrapparsi": 1, "ricordargli": 2, "scartabellando": 1, "quarantina": 1, "grasso": 1, "tempore": 1, "slealt\u00e0": 1, "istituzionale\u201d": 1, "accorto": 4, "opposizioni": 2, "colleghi": 3, "andarsene": 2, "firmi": 3, "riesce": 6, "staccarsi": 1, "controcorrente": 3, "adoro": 1, "godetevi": 1, "speciale": 7, "sfidato": 1, "tabellone": 3, "tenersi": 1, "stretta": 1, "vacanza": 3, "mobilitarsi": 2, "mobiliti": 1, "iniziato": 4, "azione": 7, "riprendiamo": 2, "arriviamo": 1, "professionista": 3, "seminatore": 1, "ricostruzione": 3, "desiderio": 2, "lontana": 2, "silenzio": 11, "voglia": 20, "provocato": 1, "tiene": 2, "staff": 3, "contribuente": 1, "taglio": 5, "definiva": 2, "salvarenzi\u201d": 1, "eccesso": 2, "riposare": 1, "dimettere": 1, "vai": 5, "citato": 1, "innamorato": 1, "madama": 2, "aula": 26, "clamoroso": 1, "cercando": 2, "scusa": 10, "governonotax": 1, "nadia": 3, "toffa": 1, "lasciati": 2, "ricorderemo": 1, "splendida": 4, "cancro": 3, "ciascuno": 9, "intensamente": 1, "terremo": 2, "iene": 4, "casellati": 1, "convocare": 2, "assemblea": 3, "calendario": 3, "provocazione": 1, "partigiana": 1, "presidenza": 1, "compiacere": 1, "finir\u00e0": 2, "perder\u00e0": 1, "lunga": 4, "plastico": 1, "minoranza": 4, "senatori": 5, "presenter\u00f2": 2, "sensazione": 1, "marittima": 1, "rassegni": 1, "prepari": 1, "smetter\u00e0": 2, "permanente": 3, "basovizza": 1, "foibe": 1, "ignorata": 1, "generazioni": 4, "sappiano": 1, "conoscano": 1, "ricordino": 2, "ricevo": 3, "sommano": 1, "chiamava": 4, "ebetino\u201d": 1, "avvoltoio\u201d": 1, "migliora\ud83e\udd23": 1, "fermarmi": 1, "culla": 2, "antico": 1, "sogno": 8, "sopporto": 1, "insisto": 1, "tornaconto": 1, "aspettare": 9, "sfascio": 1, "stazzema": 2, "massacro": 4, "visitato": 3, "tenace": 1, "resistenza": 6, "esemplare": 1, "strage": 8, "dimentica": 2, "eccidio": 1, "nazifascista": 1, "eviti": 2, "metta": 1, "pubblici": 11, "rivolto": 2, "offeso": 3, "diffamato": 1, "comprensibile": 2, "spiazzati": 1, "scettici": 1, "dubbiosi": 1, "mangiare": 1, "pizza": 1, "genitori": 6, "inqualificabili": 1, "segni": 1, "confronti": 3, "incensurati": 2, "settantenni": 2, "finiti": 4, "vicende": 4, "vado": 8, "pancia": 1, "quattordici": 3, "ministri\u201d": 2, "flat": 6, "tax": 6, "frattempo": 12, "spara": 2, "parchi": 1, "reagisce": 1, "goditelo": 2, "sacco": 3, "arriver\u00e0": 2, "fannullone": 2, "forzatura": 1, "assecondare": 1, "oppure": 5, "scongiuri": 1, "motivi": 3, "risentimento": 1, "attaccato": 8, "inseguendo": 1, "ripicche": 3, "salvi": 2, "dir\u00e0": 5, "cima": 2, "torre": 1, "arnolfo": 1, "liberazione": 2, "nazisti": 3, "fascisti": 1, "accompagnato": 2, "lass\u00f9": 1, "sentire": 8, "rintocchi": 1, "campana": 1, "martinella": 1, "url\u00f2": 1, "gialloverde": 1, "miseramente": 1, "cullarci": 1, "ritornello": 1, "detto\u201d": 1, "galantuomo": 27, "commentare": 2, "visione": 5, "\u201dif": 1, "you": 2, "decide": 5, "divide\u201d": 1, "insegnato": 2, "barack": 1, "ritengo": 1, "appello": 7, "vicine": 1, "lontane": 2, "fico": 3, "toninelli": 35, "preparati": 2, "\ud83d\ude02\ud83d\ude02\ud83d\ude02": 1, "digerisce": 1, "ragiona": 1, "riunire": 1, "capigruppo": 1, "pagando": 2, "diffondere": 3, "insicurezza": 2, "farnetica": 1, "datemi": 1, "chiederli": 1, "badoglio": 1, "favore": 8, "camomille": 1, "retto": 1, "riportato": 7, "litigando": 1, "prossime": 2, "disegneremo": 1, "rassegna": 3, "arrende": 6, "comitato": 1, "resti": 2, "restituire": 7, "parliamoci": 3, "dicevamo": 1, "sconfitto": 3, "santomato": 3, "pt": 1, "coerenti": 2, "tav": 35, "troppa": 1, "inchieste": 1, "aumenta": 2, "mercati": 11, "ballano": 1, "ladrona": 6, "vent": 2, "retribuzioni": 1, "bassi": 1, "mensili": 2, "vengono": 9, "riconosciuti": 1, "guadagnano": 2, "500\u20ac": 5, "attenzione": 12, "trasformare": 1, "rischiano": 3, "civici": 6, "zone": 2, "teatrino": 1, "saltano": 1, "mobilitazione": 1, "do": 2, "alzati": 1, "pagliacciata": 3, "stancato": 2, "ricorda": 5, "avvisarlo": 1, "daniela": 3, "misul": 1, "ebraica": 2, "educativi": 1, "iniziative": 4, "volontariato": 3, "illuminazione": 1, "viaggi": 1, "scuole": 9, "superiori": 1, "tornavano": 1, "inferno": 2, "auschwitz": 2, "gridare": 3, "malattia": 1, "rendo": 2, "omaggio": 2, "cattolico": 2, "imparato": 3, "sorella": 2, "ebrea": 1, "sensibilit\u00e0": 3, "shal\u00f2m": 1, "commuovo": 2, "giudice": 3, "imputato": 1, "negative": 1, "condividere": 8, "pagine": 5, "centinaia": 11, "perdevano": 1, "miniera": 2, "belga": 1, "marcinelle": 3, "incontrato": 4, "sopravvissuti": 1, "mario": 11, "riusc\u00ec": 1, "salvarsi": 2, "circostanza": 2, "fortunata": 1, "morire": 7, "consegnarmi": 1, "lampada": 1, "accompagnava": 2, "scendeva": 2, "tengo": 5, "ufficio": 5, "ricordarmi": 2, "volevano": 3, "immigrati": 3, "orgoglio": 3, "appartenere": 2, "derisa": 1, "manche": 1, "generosi": 2, "guadagna": 1, "iniziano": 3, "riconoscerlo": 3, "comizio": 1, "sabaudia": 1, "decenni": 4, "ininterrottamente": 1, "pubblico": 12, "lira": 1, "gettone": 2, "telefonico": 1, "internet": 1, "groppone": 1, "blaterare": 1, "chiacchierone": 1, "sconvolgente": 2, "vice": 5, "litighino": 1, "viziati": 1, "imbarazzante": 11, "dato": 21, "produttivit\u00e0": 1, "cresciuti": 5, "benissimo": 7, "professor": 9, "casualmente": 2, "pensiamo": 5, "divertente": 1, "strategia": 6, "statisti": 4, "nostrani": 1, "dem": 1, "arrabbiato\u201d": 1, "votino": 1, "mozione": 8, "rubli": 6, "ragioni": 4, "mancano": 3, "facciamolo": 2, "abbarbicati": 1, "pete": 2, "souza": 1, "fotografo": 2, "ombra": 3, "sofferenza": 1, "americane": 2, "figlie": 1, "diffusione": 4, "ripenso": 4, "amicizia": 5, "sentenza": 7, "definitiva": 3, "\u20ac": 11, "denari": 1, "finanziare": 3, "bestia": 2, "creando": 3, "rancore": 6, "farci": 5, "dirci": 2, "rubato": 7, "timore": 2, "smentita": 1, "restituiranno": 1, "povert\u00e0": 25, "lamenta": 1, "lontananza": 1, "ceti": 1, "deboli": 3, "scrivo": 2, "mille": 5, "aiuto": 5, "tour": 3, "cassa": 1, "dispiace": 4, "rimetterci": 1, "soliti": 2, "gioved\u00ec": 2, "fan": 3, "testata": 1, "agito": 1, "processo": 3, "giornalisti": 10, "tizian": 1, "vergine": 2, "audio": 3, "dialogo": 4, "russi": 8, "verificare": 2, "tangente": 2, "scoprirlo": 1, "mosca": 1, "messi": 5, "devi": 6, "denunciarli": 1, "altrimenti": 7, "sbaglio": 2, "strumentalizzare": 6, "madonna": 3, "sponsorizzare": 1, "decreto": 49, "ennesimo": 4, "credenti": 4, "cinico": 2, "prezzo": 4, "terribilmente": 1, "palchi": 1, "bestemmiando": 1, "america": 5, "atti": 1, "poche": 4, "killer": 4, "ovvio": 3, "vocabolario": 1, "invasioni": 1, "inesistenti": 1, "invasati": 2, "veri": 9, "sparano": 1, "uccidono": 1, "leggendo": 3, "rilancia": 3, "spostato": 1, "mercoled\u00ec": 3, "mozioni": 1, "buffonata": 1, "scherzo": 3, "proposito": 6, "buffonate": 1, "girare": 4, "vestito": 1, "bere": 2, "acqua": 7, "deejay": 1, "attacco": 6, "garante": 2, "giustificare": 3, "belpietro": 2, "editoriale": 3, "abusi": 8, "ricapitolo": 1, "salire": 4, "cerca": 5, "impedire": 2, "riprese": 2, "videomaker": 1, "dicendogli": 1, "occuparsi": 6, "piacciono": 3, "bambini\u201d": 1, "fiata": 1, "sapete": 7, "civili": 8, "attacchiamo": 1, "dubbio": 3, "nazione": 4, "assiste": 1, "el": 1, "paso": 1, "texas": 1, "dayton": 1, "ohio": 1, "rifiuto": 1, "convivenza": 1, "storie": 5, "vivr\u00e0": 1, "ridurre": 2, "dicendo": 18, "disastri": 2, "ehi": 2, "combinato": 1, "cresceva": 3, "usi": 1, "amplifica": 1, "bisboccia": 1, "tocchi": 4, "palla": 5, "raccolta": 4, "dicci": 1, "restituisci": 2, "quereli": 2, "avanza": 4, "mettiti": 1, "paghiamo": 4, "diresti": 1, "bacioni\ud83d\ude18": 1, "promesso": 10, "discussioni": 3, "allucinante": 6, "purtroppo": 21, "inspiegabili": 1, "bravissimi": 4, "azionecivile": 1, "portare": 7, "definendola": 1, "conseguenza": 2, "macchine": 1, "votarla": 1, "alzheimer": 3, "membro": 1, "vuol": 5, "ombre": 1, "rappresentare": 2, "vincere": 9, "sfide": 2, "sembrano": 4, "impossibili": 2, "scienza": 9, "cedere": 4, "stregoni": 2, "membri": 5, "malati": 1, "demenza": 1, "senile": 1, "alia": 2, "guagni": 1, "calciatrice": 1, "azzurre": 2, "alzato": 4, "cielo": 2, "scudetto": 3, "real": 1, "madrid": 1, "restare": 6, "stimolo": 1, "calciatrici": 1, "generale": 3, "inutile": 5, "entusiasmarsi": 1, "vittorie": 2, "trattate": 1, "atlete": 5, "proviamoci": 2, "divisioni": 5, "premio": 4, "bronzo": 1, "gigggino": 2, "tirato": 2, "repertorio": 1, "evergreen": 1, "revoca": 5, "concessione": 5, "benetton": 11, "dar\u00e0": 2, "alitalia": 4, "nessuna": 8, "usa": 3, "diversivo": 2, "morandi": 5, "olimpiadi": 11, "tap": 6, "televisiva": 2, "padellaro": 2, "ritratto": 1, "presenta": 6, "libro": 19, "chiamato": 4, "diffamatorio": 1, "ossessione": 1, "coinvolto": 1, "parlava": 3, "agire": 1, "diffamazione": 2, "gettarmi": 1, "fango": 15, "linee": 2, "tratterr\u00f2": 1, "eventuale": 1, "risarcimento": 5, "resto": 20, "devoluto": 1, "associazione": 4, "weekend": 5, "carlino": 1, "brutta": 3, "vicepremier": 11, "fannulloni": 1, "qualcosa": 12, "attaccarti": 1, "frazione": 1, "prenderti": 1, "resistere": 1, "supercoppa": 1, "liverpool": 3, "chelsea": 1, "arbitrata": 1, "ultima": 14, "equal": 1, "pay": 1, "gesti": 2, "lupo": 4, "collega\u201d": 1, "stephanie": 1, "richiama": 2, "utilizziamo": 2, "godersi": 2, "https": 5, "fondamentali": 2, "democratici": 1, "litigano": 8, "massacrano": 2, "candidato": 4, "democratico": 2, "americano": 5, "\ud83d\ude09": 5, "messa": 2, "alimenta": 1, "caccia": 4, "sottratti": 1, "impiegati": 1, "opaco": 1, "strane": 1, "connessioni": 1, "dirigenti": 6, "funzionari": 2, "sequestro": 1, "profughi": 2, "richiedenti": 1, "asilo": 3, "adeguato": 1, "mobilitare": 1, "volont\u00e0": 4, "sorti": 1, "rassegnano": 2, "demordono": 1, "chiediamo": 2, "alta": 8, "voce": 6, "oppone": 1, "svimez": 1, "sud": 9, "navigator": 3, "incantesimo": 2, "illegalit\u00e0": 1, "badare": 1, "reo": 1, "rilanciate": 1, "statista": 3, "riusciremo": 1, "mettiamocela": 1, "inchiodato": 1, "sbloccate": 2, "giustificarsi": 1, "citano": 1, "rendersi": 2, "credete": 2, "disegnino": 2, "capisce": 6, "premessa": 2, "mezzi": 1, "divertire": 1, "massacrato": 5, "travaglio": 8, "occupato": 1, "banchi": 1, "marciato": 1, "meloni": 1, "sit": 1, "caserme": 1, "commissariati": 1, "profili": 3, "presi": 5, "assalto": 1, "sguaiati": 1, "rozze": 1, "controproducenti": 1, "vergognosa": 2, "bufala": 4, "funerale": 3, "ascoli": 1, "credono": 3, "messe": 1, "attaccarmi": 1, "occorre": 4, "educativa": 4, "mollo": 1, "moller\u00f2": 1, "centimetro": 1, "soap": 1, "opera": 7, "chiamata": 4, "altro\u201d": 1, "vette": 1, "altissime": 1, "luglio": 4, "csc": 1, "pulci": 1, "tornati": 5, "mossa": 1, "notav": 6, "reddito": 34, "cittadinanza": 38, "parmitano": 1, "riscaldamento": 1, "globale": 2, "orgogliosamente": 1, "essersi": 1, "studio": 3, "ospiteremo": 1, "studiando": 1, "combatteremo": 1, "cialtroneria": 2, "governa": 8, "sciacalli": 5, "brigadiere": 1, "cerciello": 3, "rega": 3, "aggredito": 1, "strumentalmente": 1, "sostenendo": 1, "africani": 3, "politico\u201d": 1, "raggiungere": 4, "25mila": 1, "chiedendo": 3, "indegna": 1, "state": 11, "raccolte": 1, "met\u00e0": 5, "necessarie": 2, "firmando": 2, "posto": 7, "litiga": 5, "motivo": 3, "sfiduci": 1, "appendino": 6, "bevono": 1, "eccetera": 3, "casta": 4, "onor": 2, "pot\u00e8": 1, "digiuno": 1, "avvenire": 1, "regna": 1, "insegnante": 1, "rivolse": 1, "divisa": 2, "urlando": 1, "dovete": 1, "morire\u201d": 1, "risposi": 1, "vedete": 5, "prof": 6, "carabiniere": 5, "meno\u201d": 1, "insultano": 7, "degni": 1, "elianafrontini": 1, "ministero": 3, "teoria": 1, "guidato": 1, "ufficializzato": 1, "favorevole": 3, "rifiutato": 3, "aspetta": 3, "capir\u00e0": 1, "infame": 3, "stringere": 2, "arma": 8, "perbene": 1, "giocatori": 1, "settebello": 1, "campioni": 3, "pallanuoto": 1, "standing": 1, "ovation": 1, "coach": 1, "sandro": 2, "trionfo": 4, "stanotte": 6, "sonno": 2, "largo": 1, "annegate": 1, "sposato": 1, "coltellate": 1, "turista": 1, "controllo": 1, "licenziato": 2, "inefficace": 1, "ottiene": 2, "dirette": 2, "convinta": 1, "noto": 5, "affannino": 1, "finito\u201d": 1, "pre": 1, "occupino": 2, "argomento": 5, "caldo": 2, "poverino": 1, "proviamo": 2, "benino": 1, "sostenuto": 1, "palermo": 3, "passando": 1, "difeso": 4, "violenti": 1, "invaso": 1, "cantiere": 1, "sassate": 2, "poliziotti": 1, "casi": 3, "percorsi": 1, "sorpreso": 2, "rubare": 1, "assicuri": 1, "patrie": 2, "galere": 2, "castrocaro": 1, "marianna": 1, "tonellato": 1, "rilanciando": 2, "josephtidd": 1, "giocatrice": 1, "orlando": 1, "pride": 1, "carsonpickett": 1, "amano": 2, "sportivi": 1, "parzialmente": 2, "sinistro": 2, "joseph": 2, "ritorno": 5, "agitare": 1, "trovato": 5, "amica": 3, "simile": 2, "pura": 1, "autentica": 2, "smisurata": 1, "morto": 6, "rutger": 2, "hauer": 2, "attore": 1, "successo": 10, "blade": 4, "runner": 4, "belle": 3, "esplode": 1, "farmi": 4, "apprezzare": 1, "liceo": 3, "religione": 1, "bargigia": 1, "spingeva": 1, "ambientato": 1, "brivido": 1, "rivedendo": 2, "augurandovi": 2, "augurandomi": 1, "capaci": 2, "profonde": 2, "autentiche": 2, "piene": 1, "venti": 2, "forse": 23, "stupirete": 1, "contraria": 1, "legano": 1, "chance": 1, "pulito": 1, "dici": 5, "onesto": 1, "legato": 2, "legare": 1, "denunci": 1, "venga": 3, "beautiful": 2, "venendo": 1, "noia": 4, "lasciate": 1, "accettate": 1, "americana": 4, "potete": 2, "andiamo": 5, "parleranno": 1, "piccioncini": 1, "interessati": 4, "trama": 1, "seguite": 1, "\ud83d\ude01": 1, "bisognava": 1, "andavano": 1, "tenuti": 1, "serviva": 1, "cattivi": 1, "cattolici": 1, "aquile": 3, "randagie": 3, "milanesi": 2, "sfidarono": 1, "fascismo": 4, "impervia": 1, "val": 5, "codera": 5, "valle": 3, "divenne": 1, "transito": 1, "svizzera": 1, "ghetti": 2, "baden": 2, "vittorio": 2, "clan": 2, "annunciano": 1, "dedicato": 3, "antifascisti": 1, "liberi": 1, "aspettative": 4, "coraggiosi": 1, "contrari": 2, "pierluigi": 1, "coppola": 1, "interrogazione": 4, "collega": 5, "margiotta": 1, "spiegazioni": 1, "caccer\u00e0": 1, "rimpasto": 1, "togliergli": 1, "gaia": 1, "tortora": 1, "omnibus": 1, "abituato": 2, "difendevo": 1, "schifose": 2, "strumentalizzazioni": 1, "bibbiano": 3, "aprivano": 1, "franceschini": 1, "attribuisce": 1, "elogio": 1, "punito": 2, "piccoli": 4, "odioso": 1, "esistere": 2, "responsabili": 2, "paghino": 2, "magistratura": 2, "individui": 1, "chiunque": 3, "bassa": 4, "attribuendoci": 1, "colpe": 3, "avvenuto": 2, "potendo": 1, "cercano": 4, "belli": 6, "montana": 1, "parco": 2, "yellowstone": 2, "yoghi": 1, "bubu": 1, "eroi": 2, "infanzia": 2, "meli": 1, "magone": 2, "vedi": 7, "magnifico": 3, "scartata": 1, "investitori": 2, "instabilit\u00e0": 1, "lamborghini": 3, "ibiza": 2, "festeggiare": 3, "assunzioni": 5, "contratto": 1, "funziona": 2, "gronda": 5, "fondamentale": 2, "esercito\u201d": 1, "impedirne": 1, "realizzazione": 1, "blocca": 4, "finch\u00e9": 2, "dirvi": 4, "fiorentini": 6, "luna": 7, "esilarante": 1, "meravigliosi": 2, "osservava": 1, "impresa": 3, "indimenticabile": 1, "affascina": 1, "scolorisce": 1, "minimamente": 2, "moderne": 1, "conserva": 1, "intatta": 1, "eroismo": 2, "affinch\u00e9": 1, "diventasse": 1, "saunasegaarmstrong": 1, "conquista": 4, "limiti": 1, "sognato": 2, "kennedy": 1, "cocente": 1, "comincia": 1, "ansia": 1, "incollato": 1, "istante": 4, "sbarco": 2, "bianca": 2, "nixon": 1, "discorso": 11, "caso": 14, "celebrare": 1, "eroi\u201d": 1, "scomparsi": 1, "umanit\u00e0\u201d": 1, "conferma": 4, "giuste": 3, "competenze": 1, "reinventare": 1, "altroch\u00e9": 1, "sussidi": 8, "boris": 1, "johnson": 1, "sbagliando": 2, "bugia": 3, "positiva": 2, "uk": 3, "puoi": 13, "vieni": 2, "verificando": 1, "microsoft": 1, "nadella": 1, "passaggio": 4, "importanza": 3, "condizione": 1, "disabilit\u00e0": 1, "umanesimo": 2, "esista": 1, "accompagnata": 1, "coraggio\u201d": 1, "borsellino": 1, "agostino": 1, "emanuela": 1, "vincenzo": 1, "walter": 2, "eddie": 1, "claudio": 4, "martiri": 2, "votano": 2, "peggior": 2, "salvano": 2, "ruby": 1, "residua": 1, "meritarsi": 1, "finanziario": 2, "giustificazioni": 2, "composizione": 1, "promuovere": 3, "perdono": 3, "perdiamo": 1, "tramite": 1, "inesistente": 1, "lettere": 1, "segue": 1, "dossier": 5, "macch\u00e9": 1, "barba": 1, "grado": 7, "governare": 3, "governino": 1, "certifichi": 1, "telenovela": 1, "categoria": 3, "rilanciano": 3, "geniale": 3, "provarci": 2, "gilet": 10, "gialli": 10, "sibilia": 3, "lezzi": 3, "taverna": 2, "scie": 2, "chimiche": 2, "sirene": 2, "buttate": 2, "expo": 5, "provi": 2, "question": 1, "time": 1, "favorevoli": 3, "costretti": 4, "mollare": 4, "alleanza": 4, "colpo": 18, "educato": 1, "lettura": 1, "rip": 3, "camilleri": 1, "segnalo": 1, "terr\u00e0": 1, "riservata": 1, "egual": 1, "nati": 10, "1\u00b0": 2, "gennaio": 4, "professoressa": 1, "100\u20ac": 1, "compreso": 1, "coprire": 4, "cifra": 5, "finanziatori": 1, "personalmente": 3, "equivalente": 2, "mensile": 1, "ursula": 2, "von": 2, "der": 2, "leyen": 2, "aiutarla": 1, "ideale": 2, "atene": 2, "bel": 3, "grecia": 7, "elevato": 1, "tale": 2, "onorato": 2, "riconoscenza": 2, "mito": 3, "greco": 2, "disprezza": 2, "\u00a9stavros": 1, "giannoulis": 1, "salveranno": 1, "precipitare": 1, "sostanzialmente": 1, "aerei\u201d": 1, "domando": 4, "pazzo": 1, "finge": 2, "tristezza": 4, "gestir\u00e0": 1, "termini": 1, "management": 1, "solidit\u00e0": 1, "investitore": 2, "vergognarsi": 4, "ridicoli": 1, "vabb\u00e8": 1, "ufo": 3, "ridete": 2, "pagate": 1, "relazioni": 3, "invitato": 2, "famosa": 2, "cena": 5, "putin": 3, "affida": 1, "bastavano": 2, "mediterraneo": 2, "mancavano": 1, "dovevano": 7, "falsificava": 1, "curriculum": 1, "aboliva": 1, "invitava": 1, "insaputa": 2, "racontando": 1, "inchioda": 3, "immensi": 1, "wimbledon": 5, "djokovic": 1, "federer": 4, "cugini": 1, "oltralpe": 1, "alleati": 5, "macron": 11, "scommette": 2, "investimento": 2, "francese": 7, "occupiamo": 1, "differenze": 5, "gigantesco": 2, "mister": 2, "megan": 1, "rapinoe": 1, "goleador": 1, "posizioni": 4, "strong\u201d": 1, "vittoria\u201d": 1, "prendetevi": 1, "ascoltarla": 1, "rivisto": 1, "semifinale": 3, "torneo": 2, "fantastico": 1, "bastafake": 3, "usciamo": 1, "urlavate": 1, "deriva": 8, "autoritaria": 5, "perch\u00e8": 1, "tacete": 4, "riforma": 3, "gridavate": 1, "qualsiasi": 9, "finanziamento": 3, "illecito": 1, "potenza": 2, "straniera": 1, "dicevate": 1, "stagnazione": 1, "lamentavate": 1, "comando": 1, "s\u00f2le": 1, "planche": 1, "des": 1, "belles": 1, "filles": 1, "france": 1, "arrivo": 2, "nibali": 1, "aru": 1, "giulio": 1, "ciccone": 1, "maglia": 1, "gialla": 1, "storica": 2, "ciclismo": 1, "riviera": 1, "romagnola": 1, "superare": 3, "ostacolo": 1, "concittadini": 3, "mostrano": 2, "botta": 1, "querelo": 1, "potenze": 1, "straniere": 1, "paragonato": 1, "mica": 1, "lamentato\u201d": 1, "potersi": 1, "lamentare": 1, "vinceva": 1, "lippi": 1, "cannavaro": 1, "totti": 1, "buffon": 1, "pirlo": 1, "vincente": 2, "speriamo": 3, "mancini": 1, "replicare": 4, "tifava": 1, "tricolore": 1, "oppressione\u201d": 1, "convertito": 1, "italiani\u201d": 1, "percorso": 3, "resta": 2, "tredici": 1, "troveremo": 1, "volontario": 2, "diviso": 1, "irraggiungibile": 1, "crescer\u00e0": 1, "finita": 4, "ortisei": 1, "intensa": 1, "bici": 1, "camminate": 1, "arcobaleno": 2, "dolomiti": 3, "alexis": 2, "tsipras": 1, "venisse": 2, "riconosciuto": 1, "litigammo": 1, "furiosamente": 1, "lato": 1, "sedevo": 1, "sofferto": 2, "trovare": 6, "compromesso": 2, "tenendo": 2, "verranno": 1, "porti": 3, "chiusi": 1, "sbarcheranno": 1, "durano": 2, "mezzoretta": 1, "sbarcano": 4, "rabbia": 6, "butta": 2, "crepe": 1, "nutella": 1, "piatto": 1, "tortelli": 1, "altrove": 2, "accogliamo": 1, "pantomima": 1, "barzelletta": 3, "condotta": 1, "esseri": 2, "dettare": 1, "agenda": 1, "aggiornamento": 1, "sala": 6, "vizio": 1, "rispettata": 3, "rispettate": 1, "toglie": 1, "strepitoso": 1, "tornassimo": 1, "60secondi": 14, "renzirepubblica": 1, "leggerla": 3, "mancanza": 4, "legalit\u00e0": 11, "culle": 1, "vuote": 1, "ricevere": 1, "telefonate": 1, "abitano": 2, "vedono": 2, "spazzatura": 1, "chiedono": 6, "incapacit\u00e0": 1, "assoluta": 3, "amministrazione": 4, "raggi": 10, "gridando": 1, "onest\u00e0\u201d": 1, "benedetto": 1, "sistemare": 2, "nettezza": 3, "conter\u00e0": 1, "contiamo": 1, "scende": 5, "positivo": 5, "sottolineato": 1, "fateci": 5, "tacciono": 4, "seri": 3, "cala": 2, "direttamente": 1, "proporzionale": 1, "follie": 2, "balcone": 10, "abolisci": 2, "proponi": 1, "minibot": 6, "schizza": 2, "segui": 1, "normali": 2, "discesa": 1, "schizzato": 1, "massimi": 2, "tutelare": 1, "risparmiatori": 9, "password": 1, "david": 5, "sassoli": 1, "eletto": 8, "charles": 1, "michel": 1, "josep": 1, "borrell": 1, "christine": 1, "lagarde": 1, "ah": 3, "determinato": 1, "precario": 1, "galattica": 3, "statistiche": 1, "basate": 1, "indeterminato": 7, "mente": 5, "capita": 4, "sottolinearla": 1, "app18": 1, "18enni": 2, "app": 1, "bonusrenzi": 4, "bataclan": 1, "finanziato": 8, "cambiata": 1, "reintrodotta": 1, "recuperato": 2, "musica": 3, "libri": 6, "rivoluzionario": 2, "biblioteca": 3, "museo": 5, "buone": 1, "ideologia": 3, "attuale": 3, "bonus": 14, "studiato": 4, "vivo": 2, "accusi": 1, "filo": 4, "senese": 1, "montaperti": 1, "problemino": 1, "senesi": 1, "ammettere": 3, "manifestazione": 2, "organizzazione": 1, "contrade": 1, "campo": 4, "cene": 2, "deum": 1, "benedizione": 1, "cavallo": 1, "dettagliato": 1, "ripulire": 1, "web": 5, "inquinamento": 2, "ridotta": 1, "raggi\u201d": 1, "ok": 5, "scendi": 1, "combattono": 2, "elfo": 1, "puccini": 1, "bastafakenews": 1, "ragazzemondiali": 3, "rappresentate": 1, "lavoratrice": 1, "puglia": 1, "faticare": 1, "fila": 4, "occupazionali": 2, "presa": 2, "riaprire": 1, "garantendo": 2, "cialtroni": 11, "governano": 4, "porter\u00e0": 2, "chiusura": 5, "sembrato": 1, "abbracciarla": 1, "dirle": 1, "facile": 8, "operai": 4, "atlantia": 1, "compito": 2, "aprirne": 1, "cinquanta": 3, "rivolta": 2, "stonewall": 1, "segn\u00f2": 1, "diffidenze": 2, "coltivato": 1, "amicizie": 1, "compagne": 2, "alessia": 2, "legislazione": 1, "frutto": 2, "ius": 3, "caratteraccio": 1, "moda": 7, "decrescita": 3, "ricoveratelo": 1, "letto": 11, "provato": 7, "fuso": 1, "orario": 1, "dormo": 1, "dormire": 1, "babbo": 3, "bimbo": 3, "accapponare": 1, "isola": 1, "greca": 1, "importa": 6, "sconvolgerci": 1, "renderci": 1, "antica": 1, "novecento": 1, "alternative": 2, "ammiro": 2, "alba": 1, "malpensa": 1, "coincidenza": 1, "fiumicino": 1, "compro": 1, "michela": 1, "assunto": 2, "inquinati": 1, "troll": 12, "vinte": 2, "vittimismo": 1, "rassegnazione": 2, "criticando": 1, "scommesso": 1, "universiadi": 1, "taormina": 1, "apple": 2, "rilancio": 1, "pompei": 3, "reggia": 1, "caserta": 1, "archeologici": 1, "reggio": 1, "calabria": 1, "accelerazione": 1, "bari": 2, "sbloccaitalia": 2, "nodo": 2, "salva": 6, "meschine": 1, "attaccava": 1, "fiorentino\u201d": 1, "scriveva": 1, "ricoveratevelo": 1, "esultare": 3, "conosciamo": 1, "convenienza": 1, "rivendicano": 1, "italiano\u201d": 1, "virginia": 5, "negare": 1, "protesta": 1, "eventi": 2, "cambiano": 6, "vivalitalia": 1, "consumava": 1, "promesse": 13, "falsi": 1, "basava": 1, "bloccata": 3, "of": 1, "course": 1, "debiti": 2, "pa": 2, "pagamenti": 1, "notevolmente": 1, "impressionanti": 1, "farmindustria": 1, "pagava": 2, "scatole": 1, "privata": 2, "inquinare": 1, "megaballa": 1, "giovanni": 3, "perla": 1, "mondo\u201d": 1, "meryl": 1, "streep": 1, "qual": 2, "capolavoro": 4, "potrei": 1, "africa\u201d": 1, "diavolo": 1, "veste": 1, "prada\u201d": 1, "recente": 1, "post\u201d": 1, "stupir\u00f2": 1, "perfetta": 1, "the": 1, "iron": 1, "lady\u201d": 1, "cassonetti": 2, "interrati": 2, "girando": 2, "gestione": 3, "immondizia": 1, "pratico": 1, "amministratore": 2, "capitali": 2, "sforzi": 1, "pulite": 1, "inviato": 1, "toccarlo": 1, "annusare": 1, "giunta": 1, "riuscire": 1, "peggiorare": 2, "rifiuti": 4, "eletta": 1, "permisi": 1, "suggerire": 1, "copiare": 1, "funzionava": 2, "domenicale": 4, "meeting": 1, "arriveranno": 2, "domandare": 1, "polemici": 1, "invio": 2, "anticipato": 1, "sereni\u201d": 1, "prestissimo": 1, "intervenire": 1, "distrutto": 3, "zio": 2, "paperone": 1, "generosit\u00e0": 1, "castit\u00e0": 1, "dracula": 1, "sangue": 4, "diremo": 1, "affidava": 1, "appassionati": 2, "pedonalizzazioni": 1, "elettriche": 1, "volumi": 1, "raddoppio": 1, "biblioteche": 3, "tram": 1, "notti": 1, "bianche": 1, "concerti": 1, "vicesindaco": 3, "tenyearsago": 1, "promettendo": 4, "seicentomila": 1, "rimpatri": 2, "accise": 2, "benzina": 2, "fornero": 5, "disperato": 2, "limita": 1, "piagnucolare": 1, "direte": 2, "ohi": 1, "privato": 1, "casino": 2, "abolizione": 6, "ires": 3, "superammortamento": 3, "salta": 1, "nasconde": 1, "emanuele": 3, "crestini": 3, "rocca": 1, "papa": 2, "avvenuta": 1, "presumibilmente": 1, "dovuta": 1, "gas": 1, "mettersi": 3, "ustioni": 1, "ferite": 1, "comportato": 2, "eroe": 1, "cittadine": 1, "civico\u201d": 1, "servendo": 1, "estremo": 1, "averci": 1, "espressione": 1, "cittadino\u201d": 1, "trimestre": 6, "torner\u00e0": 9, "12mesiconilsegnomeno": 1, "difesa": 5, "abbracciato": 2, "stimo": 2, "guido": 2, "crosetto": 1, "draghi": 10, "aiuta": 3, "aziende": 8, "competere": 1, "schiera": 2, "rovescia": 2, "cari": 5, "imprenditori": 4, "veneti": 1, "lombardi": 1, "sentite": 4, "votate": 1, "aiutando": 1, "boicottando": 1, "tremila": 1, "monti": 9, "santa": 5, "firenzesecondome": 24, "flessibilit\u00e0": 4, "ottenuta": 1, "carit\u00e0": 2, "occupati": 7, "pressione": 5, "aumentata": 1, "peggiorato": 1, "percentuali": 1, "diventati": 1, "diminuita": 1, "pontifica": 1, "dimentichiamoci": 1, "staffetta": 1, "sindrome": 9, "down": 7, "trisomia": 2, "buonsabato": 1, "prendono": 5, "comuni": 8, "predissesto": 1, "tolgono": 4, "rendere": 2, "competitive": 1, "buchi": 1, "incapaci": 5, "chiamarlo": 1, "arrivato": 5, "rinuncio": 1, "alleno": 1, "riprendendo": 1, "stretching": 1, "fidarci": 1, "incompreso": 1, "antipopolare": 1, "finirla": 1, "retorica": 1, "torto": 5, "idiozia": 1, "gioia": 4, "last": 1, "minute": 1, "forzaazzurre": 1, "bologna": 1, "intervistato": 2, "andavo": 2, "zia": 1, "b": 2, "bomber": 2, "rudy": 1, "dio": 3, "minore": 2, "generazione": 5, "battutine": 1, "stupide": 2, "stereotipi": 1, "meravigliose": 1, "cina": 5, "climatico": 1, "emendamenti": 8, "controllare": 3, "indicare": 1, "fantoccio": 1, "figuraccia": 4, "palesata": 1, "figura": 2, "attendere": 1, "primavera": 1, "allenamento": 1, "cagliari": 2, "davide": 3, "astori": 1, "concretamente": 1, "da13": 1, "smette": 1, "vola": 2, "giustiniani": 6, "discutiamo": 1, "andate": 1, "amministrative": 1, "commenteremo": 1, "elettorali": 8, "mafiosa": 2, "georgofili": 1, "documentario": 6, "pernondimenticare": 1, "zucconi": 1, "giornalismo": 2, "mancher\u00e0": 1, "profonda": 2, "vedervi": 2, "seggi": 1, "riaffermate": 1, "tramandate": 1, "rispettando": 2, "violando": 1, "vergognosamente": 2, "utilizzo": 1, "figuracce": 3, "strasburgo": 4, "assenteisti": 1, "inquinando": 1, "rivoluzionare": 1, "fermo": 3, "menzogne": 3, "may": 3, "stronzate\u201d": 1, "pratica": 2, "michele": 1, "brambilla": 1, "graditi": 4, "privilegiata": 1, "digitali": 1, "professionisti": 4, "perdi": 1, "nikilauda": 1, "carlo": 8, "calenda": 4, "scavuzzo": 2, "irene": 2, "tinagli": 2, "caterina": 2, "impaziente": 2, "rivedere": 3, "partire": 3, "gentile": 2, "usano": 2, "reciprocamente": 1, "insultarsi": 1, "lieto": 2, "pensieri": 3, "preferirei": 1, "pensassero": 1, "verbalizzare": 1, "salari": 1, "leggi": 7, "unioni": 2, "autismo": 3, "caporalato": 2, "azienda": 9, "sigarette": 3, "elettroniche": 4, "duri": 1, "puri": 1, "provate": 1, "qua": 1, "votando": 1, "compare": 1, "condono": 26, "producono": 2, "condoni": 25, "troppi": 1, "direi": 1, "marchetta": 1, "beffa": 2, "emendamento": 10, "paladini": 2, "zitti": 6, "butter\u00e0": 1, "chiamavano": 3, "mani": 2, "iva\u201d": 1, "rimuovere": 2, "striscioni": 2, "sparge": 1, "rispondiamo": 2, "ironia": 3, "portatelalunga": 1, "arranca": 1, "costretta": 2, "quotidiana": 2, "corrono": 2, "corea": 1, "orgogliosa": 1, "uso": 2, "5g": 1, "seul": 1, "tardoadolescenti": 1, "guidano": 1, "risale": 1, "boomerang": 2, "strappa": 2, "telefonini": 2, "squallidi": 2, "rosse": 1, "manifesta": 1, "rivincita": 1, "ultras": 2, "esempi": 2, "nervosismo": 1, "economici": 2, "prepariamoci": 1, "palloncino": 5, "scoppiare": 1, "muove": 1, "denunciai": 1, "rilanciavano": 1, "visualizzazioni": 1, "diffamanti": 1, "segnalare": 2, "diffonde": 1, "maggiorenne": 1, "rimarrai": 1, "rivoluzionato": 1, "mix": 1, "esplosivo": 1, "energia": 3, "18\u00b0": 1, "rinuncia": 2, "indennit\u00e0": 1, "borse": 1, "ercolano": 3, "ciro": 4, "buonajuto": 2, "territorio": 5, "valorizzate": 1, "cnel": 5, "copiano": 2, "custodi": 1, "schierati": 2, "procurati": 1, "renzismo\u201d": 1, "svegliarsi": 1, "letargo": 1, "rassicurarci": 1, "vivi": 2, "silenziosi": 1, "sparate": 2, "umiliazione": 1, "evidentemente": 2, "torneranno": 1, "apocalittici": 1, "avventati": 1, "certi": 2, "giudizi": 2, "osannato": 1, "pel\u00e8": 1, "sconfittta": 1, "barcellona": 1, "affrettati": 1, "trovano": 3, "mettono": 6, "doppia": 1, "camp": 1, "nou": 1, "anfield": 1, "road": 1, "magico": 2, "giudicano": 1, "barcone": 1, "sepoltura": 2, "cadaveri": 1, "morti": 5, "dolorosa": 2, "doverosa": 1, "naufragio": 1, "quattordicenne": 1, "mali": 1, "pagella": 3, "strada\u201d": 8, "disumano": 3, "iniziata": 2, "biennale": 1, "relitto": 1, "sfuggendo": 2, "natura": 1, "sequestrare": 1, "telefonino": 3, "strappato": 2, "applausi": 2, "criticava": 1, "cancella": 2, "video\u201d": 1, "urgente": 1, "risposte": 2, "esaustive": 1, "insultare": 7, "lasci": 3, "occupi": 2, "diritto": 8, "perche": 3, "accadr\u00e0": 1, "fortunatamente": 1, "lasciarci": 3, "visegrad": 1, "destre": 1, "austriache": 1, "tedesche": 1, "nordiche": 1, "allea": 1, "combatte": 6, "maggio": 3, "ayrton": 3, "senna": 3, "formula1": 1, "venticinque": 1, "impresso": 1, "dimenticare": 2, "desolante": 1, "perfettamente": 4, "arbitrare": 1, "mugello": 1, "rientrando": 1, "spogliatoi": 1, "volevo": 5, "circuito": 2, "pilota": 2, "trasformato": 1, "leggenda": 2, "guidava": 1, "potevi": 2, "amarlo": 1, "inimitabile": 1, "lucio": 2, "avvicinare": 1, "bonus18anni": 1, "speso": 5, "acquistare": 2, "sentito": 1, "acquisto": 1, "libri\u201d": 1, "ignoranza": 7, "trovi": 1, "esulta": 1, "esultano": 2, "testardi": 1, "irregolari": 1, "urlato": 1, "confessato": 3, "780\u20ac": 3, "inps": 1, "sparita": 3, "raccontando": 3, "montagna": 2, "grillino": 4, "civilmente": 1, "banali": 1, "osservazioni": 1, "aprile": 3, "silvano": 3, "sbuffano": 1, "polemizzano": 1, "dispetti": 2, "sembrare": 1, "\u2013": 4, "dovunque": 1, "riferisco": 1, "dedicare": 2, "pasquale": 1, "ribasso": 1, "paralizzando": 1, "atteggiamento": 3, "talmente": 3, "sgonfier\u00e0": 2, "tecnicamente": 3, "banco": 1, "sfortuna": 1, "mal": 2, "rissa": 1, "processi": 4, "eolico": 1, "comportamenti": 1, "logici": 1, "assistiamo": 1, "totale": 5, "affidare": 1, "fognini": 1, "tornei": 1, "prestigiosi": 1, "chapeau": 1, "montecarlo": 1, "pasqua": 2, "affetti": 1, "felicit\u00e0": 3, "vigile": 1, "tragiche": 1, "chiese": 1, "sri": 1, "lanka": 1, "accettato": 1, "dicessero": 1, "violenta": 1, "falsit\u00e0": 5, "dimostrare": 2, "predisposto": 1, "azioni": 2, "criticare": 7, "hitler": 1, "parenti": 1, "affari": 1, "muoiono": 2, "risarcirmi": 1, "terrificante": 1, "parli": 2, "scoperta": 2, "astrofisica": 1, "racconti": 1, "libia": 6, "dimostri": 1, "filano": 1, "inguardabile": 1, "sorridente": 1, "cascine": 1, "isolotto": 1, "boom": 5, "piace\u201d": 1, "palme": 1, "andrebbe": 2, "recuperata": 2, "affaccia": 3, "urla": 3, "abolito": 6, "sfasciato": 1, "ripresa": 2, "mogio": 2, "maest\u00e0": 1, "irruzione": 1, "incompetenza": 3, "addetti": 4, "accinge": 1, "smascherare": 1, "aspettano": 1, "aumenteranno": 2, "allacciamoci": 1, "cinture": 1, "toccher\u00e0": 2, "macerie": 1, "treviso": 2, "unaltrastrada": 21, "lombardia": 2, "veneto": 5, "lecco": 1, "tavernerio": 1, "como": 1, "pavia": 1, "bassano": 1, "grappa": 1, "sedico": 1, "bl": 1, "padova": 1, "terre": 1, "gonfiate": 1, "decisive": 1, "sgonfiare": 1, "gambe": 3, "rimandare": 1, "eterno": 1, "raccontare": 6, "introdotto": 4, "patrimoniale": 3, "baster\u00e0": 2, "felpa": 1, "incolpare": 1, "quotidianamente": 2, "accompagnano": 1, "braccetto": 1, "sparatoria": 1, "periferia": 1, "preoccuparsene": 2, "babysitter": 1, "incidenti": 2, "raccontino": 1, "mangiano": 1, "mortali": 1, "terrificanti": 1, "tagliato": 3, "gigino": 3, "pallida": 1, "inail": 1, "lella": 6, "paita": 3, "impegna": 1, "liguria": 3, "candida": 1, "regione": 4, "massacrata": 1, "interna": 1, "primarie": 3, "rompe": 1, "strumentalizzazione": 2, "avviso": 5, "garanzia": 5, "alluvione": 2, "centrosinistra": 1, "regionali": 4, "incarica": 1, "assolta": 2, "ricorso": 1, "giustizialisti": 2, "cinici": 2, "privi": 2, "impediva": 2, "imposte": 1, "locali": 4, "addizionali": 1, "irpef": 1, "soggiorno": 1, "restituito": 2, "tassazione": 1, "selvaggia": 1, "gi\u00f9": 6, "caratteraccio\u201d": 1, "simpatici": 2, "crescono": 1, "autostrada": 3, "follonica": 1, "spezia": 1, "parma": 1, "bozzolo": 1, "mantova": 1, "luoghi": 5, "mazzolari": 1, "regioni": 2, "abbracciare": 3, "appassionata": 1, "lusso": 1, "restituirvi": 1, "calore": 4, "presentazioni": 6, "castenedolo": 1, "bs": 1, "gufi\u201d": 1, "confindustria": 1, "prevede": 1, "\u00abnoi": 1, "\u00bb": 1, "gufi": 2, "carabinieri": 6, "poteva": 2, "utilizza": 3, "divise": 1, "racimolare": 1, "sogna": 1, "diventare": 3, "servire": 1, "chiacchiericcio": 2, "animato": 1, "ragazzini": 1, "scuolabus": 1, "racconto": 6, "andarono": 1, "fanpage": 2, "conduttore": 1, "financial": 2, "times": 2, "mostriamo": 1, "rifiutiamo": 1, "scandali": 3, "indagati": 2, "arrestati": 1, "buche": 1, "bloccano": 3, "autobus": 2, "scale": 1, "mobili": 1, "accartocciano": 1, "cinghiali": 1, "rovistano": 1, "disonesti": 2, "sicuramente": 2, "sventato": 1, "grave": 4, "pericolo": 1, "dedizione": 1, "garantiste": 1, "diventano": 1, "giustizialiste": 1, "regalano": 2, "scoprono": 3, "garantismo": 2, "nascondersi": 1, "dietro": 3, "sacro": 1, "blog": 2, "piattaforma": 2, "sanno": 3, "testo": 4, "ipocriti": 1, "emozionante": 2, "diano": 2, "fridaysforfuture": 1, "confrontato": 1, "marine": 2, "pen": 4, "uguali": 2, "sostenitrici": 1, "sento": 3, "rappresentano": 1, "londra": 4, "andr\u00e0": 7, "uscendo": 1, "immane": 2, "britannica": 2, "mostrando": 2, "inconcludente": 1, "mentendo": 2, "discusso": 2, "italo": 1, "integrale": 1, "accusarmi": 1, "tranne": 1, "juventino": 1, "manchester": 1, "champions": 1, "bisognerebbe": 2, "ronaldo": 1, "allegri": 2, "allenatori": 2, "scusarsi": 1, "livornese": 1, "riccardo": 2, "muti": 3, "simboli": 2, "universali": 1, "permetta": 1, "insultarlo": 1, "volgare": 1, "incompetente": 2, "banda": 1, "scappati": 1, "venezuela": 9, "previsioni": 1, "sbagliate": 3, "criterio": 1, "casaleggio": 1, "volutamente": 2, "riguardato": 1, "approfondito": 1, "pericoli": 1, "corre": 2, "incompetenti": 4, "proseguire": 1, "pescara": 1, "cialtrone": 3, "presentazione": 5, "emoziona": 3, "rai3": 1, "riesame": 1, "annullato": 1, "gip": 1, "parsa": 1, "abnorme": 1, "arresto": 3, "circo": 3, "interessato": 2, "archiviazioni": 1, "assoluzioni": 1, "aule": 1, "rappresentante": 2, "brutti": 1, "18app": 4, "quattrocentomila": 1, "comprato": 2, "avvicina": 1, "manifesto": 1, "stop": 3, "rtl": 1, "nonstopnews": 1, "varese": 1, "sara": 2, "imprenditore": 6, "est": 1, "difficilissimo": 1, "togliersi": 1, "poeta": 3, "stabilire": 1, "sentirsi": 2, "leghiste": 1, "rinfacciavano": 1, "suicidi": 2, "resoconti": 1, "coscienza": 2, "schifo": 6, "bieco": 1, "meschino": 1, "arrivasse": 1, "desse": 1, "recuperassimo": 1, "nicola": 1, "zingaretti": 2, "netta": 1, "segretario": 1, "bobo": 1, "toccato": 3, "brindisi": 1, "scandiano": 1, "ferrara": 2, "forl\u00ec": 1, "camminare": 5, "lecce": 4, "riparte": 1, "romagna": 3, "stupefacente": 1, "circondato": 1, "vedevo": 1, "magna": 1, "universit\u00e0": 1, "strapiena": 1, "preoccupano": 2, "ufficiale": 5, "grazia": 1, "ripartito": 1, "disoccupazione": 15, "tornano": 1, "gravit\u00e0": 1, "rimaste": 3, "martina": 1, "franca": 1, "vederla": 1, "astenersi": 5, "odiatori": 2, "descrivere": 1, "libreria": 3, "siciliana": 1, "impiccarmi": 1, "intervenendo": 2, "dissennate": 1, "commentando": 1, "cammino": 4, "sciagurate": 1, "vedermi": 1, "inter": 1, "ciuffenna": 1, "cortona": 1, "percorrere": 2, "preparare": 1, "foligno": 1, "scritta": 3, "cantante": 1, "aprire": 6, "macchina": 2, "guidata": 1, "insultata": 2, "pesantemente": 1, "violento": 1, "partecipano": 1, "abbracciarvi": 1, "tappe": 1, "tantissima": 1, "clamorosa": 3, "aumentati": 2, "prendendosene": 1, "75mila": 1, "122mila": 1, "medico": 4, "soldatessa": 1, "tg": 7, "diminuiscono": 1, "diranno": 1, "racconteranno": 1, "giarrusso": 4, "portavoce": 4, "dovrei": 2, "impiccato\u201d": 1, "stupisce": 2, "intervenga": 1, "bersaglio": 1, "antitrust": 1, "decisivo": 2, "febbraio": 4, "lingotto": 1, "giovent\u00f9": 2, "immaginate": 1, "attualit\u00e0": 1, "allucinanti": 1, "crolla": 4, "fatturato": 1, "crollano": 1, "ordinativi": 2, "bagno": 1, "condividetela": 1, "immaginato": 3, "scrivervi": 1, "raccontarvi": 1, "girato": 3, "piemonte": 1, "superiore": 2, "rosee": 1, "inatteso": 1, "sasso": 2, "marconi": 2, "savena": 3, "este": 2, "mestre": 2, "erbusco": 1, "treviglio": 2, "cernusco": 3, "naviglio": 1, "annullare": 1, "domiciliari": 1, "assistere": 1, "garantisce": 1, "provvedimento": 4, "sproporzionato": 1, "servitore": 1, "pericolosi": 2, "criminali": 1, "delitto": 1, "tracciare": 2, "toccare": 1, "ribadire": 1, "populismi": 1, "spacciatori": 2, "nazionalismi": 1, "rassegnarci": 1, "cantina": 1, "franciacorta": 1, "buonadomenica": 1, "verona": 1, "sale": 2, "strapiene": 1, "amazon": 1, "rossa\u201d": 1, "congressi": 3, "fattaccio": 1, "tempio": 1, "adriano": 1, "torchiato": 1, "gian": 1, "antonio": 4, "penna": 1, "orda": 1, "albanesi": 1, "tosta": 1, "aiutasse": 1, "vorr\u00e0": 1, "anticipazioni": 1, "giriamo": 1, "nazionalismo": 1, "restituiteci": 1, "000\u20ac": 3, "rimborsi": 3, "sottolineo": 1, "accorti": 1, "benefici": 1, "spiegano": 1, "lione": 2, "abbattono": 1, "tonnellate": 1, "co2": 2, "percentuale": 1, "tunnel": 3, "ammettono": 5, "sceglie": 3, "inquina": 1, "gomma": 3, "leonardo": 3, "disfatta": 1, "estera": 9, "aereo": 4, "frangia": 1, "agguerrita": 1, "francesi": 5, "teppisti": 2, "notare": 5, "ringrazio": 5, "raffaelle": 1, "cantone": 1, "anac": 1, "sanremo": 3, "inizi": 4, "telefonata": 1, "guaid\u00f2": 3, "ringrazia": 2, "screditando": 1, "dittatura": 5, "uscir\u00e0": 1, "editrice": 1, "marsilio": 1, "racconta": 2, "spagnolo": 1, "sanchez": 1, "riconosce": 2, "provo": 1, "imbarazzo": 1, "maduro": 3, "moavero": 1, "vergogneranno": 1, "connazionali": 3, "posizionamento": 1, "scandaloso": 1, "tradisce": 1, "allontana": 1, "abbandona": 1, "sostiene": 2, "sanguinosa": 1, "disintegrato": 1, "attiri": 1, "sinceramente": 2, "pagheremo": 3, "pavida": 1, "venezuelani": 2, "rimanere": 1, "indifferenti": 1, "giungono": 1, "caracas": 2, "manifestare": 1, "pacificamente": 1, "ripristino": 1, "ascoltati": 1, "ricchi": 1, "risorse": 2, "minerarie": 1, "petrolifere": 1, "paradossalmente": 2, "estrema": 1, "raggiunto": 2, "popolazione": 2, "scarseggiano": 1, "medicine": 1, "elementari": 1, "inflazione": 1, "piangere": 1, "emozionare": 2, "lottare": 5, "zittito": 1, "stadi": 2, "amato": 2, "travolgente": 1, "re": 1, "leone": 1, "gabriel": 1, "omar": 2, "batistuta": 1, "fermatevi": 6, "cambiate": 2, "ufficiali": 2, "trimestri": 2, "portando": 3, "sbattere": 5, "cambiamo": 1, "positivi": 1, "consecutivi": 2, "semestre": 1, "portano": 2, "sfiga": 1, "pagher\u00e0": 3, "ritirare": 2, "truppe": 1, "afghanistan": 1, "andati": 2, "l\u00ec": 5, "minaccia": 6, "talebani": 1, "prolungato": 1, "ritirarsi": 1, "richiede": 1, "approfondita": 1, "preferiamo": 1, "tornino": 1, "villeggiatura": 1, "averle": 1, "lette": 1, "ideologico": 2, "voter\u00f2": 1, "autorizzazione": 1, "cerimonia": 1, "assumere": 2, "dimenticheremo": 1, "orrori": 1, "sarti": 1, "partigiano": 1, "amava": 2, "raccontava": 2, "vocione": 1, "interminabili": 1, "canti": 1, "finiva": 2, "salone": 2, "applaudirlo": 1, "voltava": 1, "educava": 1, "vu": 2, "tenete": 1, "fisso": 1, "et\u00e0": 4, "libert\u00e0\u201d": 1, "incoraggiava": 1, "raccomando": 1, "mollare\u201d": 1, "riferimento": 2, "continuerai": 1, "camminato": 2, "richiamare": 1, "prepensionamenti": 1, "affermare": 2, "assistenzialismo": 9, "favorire": 1, "nero": 13, "elemento": 2, "riflettendo": 1, "assunzione": 1, "concorso": 4, "assunte": 1, "promette": 2, "stabilizzate": 1, "colloquio": 1, "entreranno": 1, "naso": 2, "restarci": 1, "voluta": 4, "aumentava": 1, "profit": 2, "firmatario": 1, "marcucci": 1, "sottolinearlo": 1, "semplificazione": 1, "rinvio": 4, "chavez": 1, "devastato": 1, "istituzione": 3, "democratica": 3, "appoggiare": 1, "rapidamente": 1, "mediaticamente": 1, "costruito": 3, "intere": 2, "trasmissioni": 1, "dipinto": 1, "molestatore": 1, "famoso": 1, "elementi": 1, "ostilit\u00e0": 1, "preconcetta": 1, "gogna": 1, "mediatica": 1, "definitivamente": 1, "archiviato": 1, "fausto": 1, "brizzi": 2, "contribuito": 1, "danneggiarlo": 1, "distruggergli": 1, "esame": 1, "scandalistici": 1, "iena": 3, "impegnata": 1, "deputato": 2, "doti": 1, "nascoste": 1, "sostenne": 1, "sbarcati": 1, "nonostante": 6, "sottosegretario": 2, "complottista": 1, "glorioso": 1, "eh": 2, "spada": 2, "nomina": 4, "lino": 3, "banfi": 5, "pubblicato": 4, "followers": 3, "preferissero": 1, "barbara": 5, "palombelli": 3, "ironie": 1, "unesco": 2, "castelli": 1, "preoccupate": 1, "laureati": 2, "stupiamo": 1, "canale": 13, "bar": 2, "firmano": 1, "aquisgrana": 1, "mandiamo": 1, "golpista": 2, "assaltano": 1, "colonialista": 1, "scappa": 1, "storicamente": 1, "karaoke": 1, "dilettanti": 1, "sbaraglio": 1, "motoscafo": 1, "barbiere": 1, "frailis": 1, "preoccupa": 1, "affluenza": 1, "sondaggi": 6, "seggio": 1, "sardegna": 1, "prestanome": 5, "assegni": 2, "vuoto": 4, "capro": 1, "espiatorio": 1, "andiamoli": 1, "salviamoli": 1, "sondaggio": 1, "antiche": 1, "tradizioni": 1, "salvarli": 1, "radical": 1, "chic": 1, "opposto": 4, "rese": 1, "libere": 1, "autonome": 1, "dipendenti": 2, "procedure": 1, "complicate": 2, "assistenzialisti": 1, "concettuale": 2, "vuoi": 3, "odiato": 1, "creati": 1, "ahinoi": 1, "silenzioso": 1, "enti": 1, "coordinatore": 1, "stanziato": 1, "potranno": 1, "evento": 3, "ferrovia": 1, "dicemmo": 1, "dovute": 1, "proporzioni": 1, "credevano": 1, "suggerimento": 3, "andarci": 1, "utilizzate": 1, "tornarci": 1, "sassi": 1, "considerati": 1, "dopoguerra": 1, "comunitaria": 1, "dedicati": 1, "ritwitta": 1, "extracomunitari": 1, "augurarvi": 1, "borsello": 1, "900\u20ac": 1, "contanti": 1, "disoccupato": 1, "marocchino": 2, "ritrova": 2, "restituisce": 1, "intonso": 1, "legittimo": 2, "proprietario": 1, "assumerlo": 1, "togliendolo": 1, "ritwittare": 1, "nomi": 2, "bernardo": 1, "sognano": 1, "trib\u00f9": 1, "odiano": 3, "puntino": 1, "falso": 6, "operativa": 1, "rei": 2, "migliorarla": 1, "prego": 1, "drammatico": 2, "fondata": 2, "sussidio": 2, "decretone": 1, "favorisce": 1, "pensioni": 4, "prendiamo": 2, "prendiamoli": 1, "18gennaio": 1, "pericoloso": 2, "portarsi": 1, "ripiegata": 1, "cura": 1, "cucita": 1, "tasca": 3, "documento": 5, "certificava": 1, "preziosissima": 1, "annegato": 1, "dottoressa": 3, "cristina": 1, "cattaneo": 1, "descritto": 1, "poesia": 2, "dimentichiamolo": 1, "altruismo": 1, "valgono": 2, "mantiene": 2, "pietas": 1, "bonafede": 7, "nera": 1, "instagram": 1, "17gennaio": 1, "alfonso": 1, "emulare": 1, "posa": 1, "penitenziaria": 1, "soddisfatta": 1, "fratellino": 1, "giocattolo": 2, "battisti": 3, "presunta": 3, "anticorruzione": 1, "personam": 4, "imprenditoriale": 1, "ride": 2, "escono": 1, "tendenziale": 1, "picco": 1, "ordini": 3, "importata": 1, "licenziare": 2, "marzo": 1, "passeggiata": 2, "prendendo": 4, "giugno": 2, "smesso": 1, "accasciato": 1, "dimenticate": 1, "unici": 1, "brindavano": 1, "elogiando": 1, "alleato": 1, "farage": 1, "uscirne": 1, "apro": 1, "monde": 1, "tragico": 1, "pezzo": 4, "combattimenti": 1, "terroristi": 4, "daesh": 1, "contare": 2, "mosul": 1, "inaudita": 1, "raccontate": 2, "testimoni": 1, "oculari": 1, "prospettive": 1, "riduce": 1, "tweet": 2, "scelgano": 1, "approfondimento": 1, "informazione": 4, "degna": 1, "stancher\u00f2": 1, "ripetere": 2, "materiale": 2, "strategico": 1, "danzica": 2, "pawel": 4, "adamowicz": 2, "lutto": 2, "accoltellato": 1, "personaggi": 2, "polacca": 1, "investigatori": 1, "prevale": 1, "trasforma": 1, "fisica": 2, "coltello": 1, "ferito": 1, "guai": 1, "sottovaluta": 1, "preghiamo": 1, "cesare": 2, "intelligence": 1, "diventeremo": 1, "smetteremo": 1, "anti": 4, "scopre": 2, "comma": 1, "inserito": 1, "deputati": 2, "condannati": 4, "codicillo": 1, "permetter\u00e0": 1, "consiglieri": 1, "sbandierato": 1, "salvalega": 1, "bolivia": 1, "distinzione": 1, "desiderano": 1, "scontare": 1, "violenze": 1, "manifestazioni": 1, "bordeaux": 1, "feriti": 3, "nonviolenza": 1, "licenzia": 1, "grandine": 1, "fermiamo": 1, "parlarne": 2, "bernard": 2, "henri": 2, "l\u00e9vy": 1, "intenzione": 1, "ritiro": 1, "esplosiva": 1, "potrebbe": 7, "rinascita": 1, "abbandonare": 2, "erbil": 1, "presiedeva": 1, "campi": 2, "abbandonati": 1, "bombardamenti": 1, "tantissimi": 2, "cenetta": 1, "suggellato": 1, "invecchiamo": 1, "pazienti": 1, "molliamo": 2, "accusare": 1, "chiudo": 1, "michael": 1, "jordan": 1, "basket": 1, "novemila": 1, "tiri": 1, "trecento": 1, "partite": 1, "ventisei": 1, "affidato": 1, "tiro": 1, "servita": 2, "velocit\u00e0": 3, "infrastruttura": 1, "connessa": 1, "metropolitana": 2, "sprecare": 1, "impuntatura": 1, "ideologica": 1, "evviva": 1, "top": 13, "ten": 13, "brutte": 1, "annuo": 1, "vedevano": 1, "rallenta": 2, "accorgersene": 1, "topten": 2, "ig": 1, "questioni": 4, "affrontare": 1, "andr\u00e8": 1, "joe": 1, "biden": 1, "visita": 3, "grillina": 3, "banche": 9, "esagerano": 3, "baglioni": 6, "cio\u00e8": 1, "icona": 1, "complessa": 1, "detta": 2, "sensibile": 1, "scatenato": 1, "impedirgli": 1, "ascolti": 1, "esagerando": 1, "montando": 1, "cantanti": 2, "esprimere": 1, "opinioni": 2, "albano": 1, "pretende": 1, "gattuso": 2, "schierare": 1, "milan": 1, "vescovi": 1, "drammatica": 2, "risolta": 2, "leadership": 1, "milanista": 1, "sfegatato": 1, "muscat": 2, "smentito": 2, "platealmente": 1, "costante": 1, "accolti": 1, "concentri": 1, "restituirceli": 1, "burioni": 9, "enormemente": 1, "guarda": 1, "portiamo": 1, "firmarlo": 1, "abbandonano": 2, "antiscientifiche": 1, "novax": 5, "ricercatori": 2, "medici": 10, "scienziati": 2, "venditori": 2, "fumo": 2, "minimizzato": 1, "parti": 2, "difendo": 1, "apri": 1, "romana": 1, "trattata": 2, "incredibili": 3, "diversivi": 2, "fingono": 3, "dissidi": 1, "buttato": 5, "cannabis": 1, "tacere": 2, "eccovi": 1, "riflessioni": 2, "semplici": 3, "carige": 1, "banca": 2, "celebrazioni": 1, "infinito": 1, "leopardi": 2, "letteratura": 1, "riporta": 1, "serate": 1, "passate": 1, "emozionato": 4, "ricordarsi": 2, "natali": 1, "espressioni": 2, "artistiche": 1, "culturali": 2, "dimenticarcene": 1, "salto": 1, "recanati": 1, "visitare": 1, "meraviglie": 2, "sconosciute": 1, "paure": 1, "decidendo": 1, "tentativo": 4, "girano": 1, "senti": 2, "stridore": 1, "unghie": 1, "specchi": 1, "giustificano": 3, "tracotante": 3, "arroganza": 6, "addosso": 8, "bastati": 1, "riunione": 1, "notturna": 1, "smentire": 4, "approva": 1, "correntisti": 1, "arezzo": 1, "marche": 1, "chieti": 1, "attaccati": 1, "potenti": 2, "terzovalico": 1, "trivelle": 1, "80euro": 4, "alternanza": 3, "fandonie": 1, "spudoratamente": 1, "mentito": 3, "imbroglioni": 1, "sforza": 1, "picchiatori": 1, "entrati": 1, "ruspe": 1, "palazzi": 1, "domandi": 2, "apposta": 1, "gratis": 1, "uscito": 1, "considera": 1, "miliardo": 4, "settecento": 2, "maggiori": 4, "rincorre": 1, "tagliano": 5, "biglietti": 1, "economy": 1, "vitalizi": 1, "sparata": 1, "folclore": 1, "invenzioni": 1, "svagarsi": 1, "consoliamoci": 1, "sorpresi": 1, "tuffato": 1, "doveroso": 1, "accompagnare": 1, "realizzato": 1, "conosciuto": 4, "aiuter\u00e0": 1, "decoder": 1, "sky": 1, "anticipazione": 3, "bruni": 1, "sconosciuto": 2, "massime": 1, "figure": 2, "secoli": 2, "usate": 1, "uguaglianza": 1, "vanta": 1, "coperta": 2, "indegno": 1, "ricca": 1, "vigliacco": 2, "visibilit\u00e0": 3, "curiosit\u00e0": 1, "dante": 2, "galileo": 2, "periferie": 7, "mendicanti": 1, "orsanmichele": 1, "sapevate": 1, "assedio": 1, "puntate": 2, "visibili": 2, "dplay": 5, "migrazione": 2, "avviene": 1, "elenco": 3, "approvati": 1, "riforme": 2, "progettate": 1, "lista": 1, "nemici": 1, "provoca": 1, "troviamo": 1, "classico": 1, "dinamiche": 1, "apprendisti": 1, "semplicit\u00e0": 1, "allegria": 1, "rancorosi": 1, "determinazione": 1, "eterna": 2, "bucarsi": 1, "improvviso": 3, "angeli": 2, "proseguiamo": 1, "impopolari": 1, "ruffini": 1, "attuata": 1, "estesa": 1, "privati": 1, "migliorarne": 1, "attuazione": 1, "digitalizzazione": 1, "contrastare": 1, "precompilata": 1, "bolletta": 4, "sovrintendente": 1, "osanna": 2, "polo": 1, "inaugurando": 1, "restauro": 1, "schola": 1, "armaturarum": 1, "visitatori": 1, "praticamente": 2, "raddoppiati": 2, "classica": 1, "negativa": 2, "lustro": 1, "umberto": 2, "contarello": 2, "sceneggiatore": 1, "oscar": 1, "sorrentino": 1, "caro\u201d": 1, "saper": 2, "utilizzarle": 1, "ispirare": 1, "privilegio": 2, "talento": 2, "condividendo": 1, "riesci": 1, "coniare": 1, "onda": 10, "quarta": 1, "entriamo": 2, "bargello": 1, "torture": 1, "supplizi": 1, "abolisce": 1, "partendo": 3, "uffizi": 6, "schmidt": 2, "quadri": 1, "rubati": 4, "galleria": 2, "federico": 2, "fubini": 1, "ricciardi": 1, "istituto": 3, "dimesso": 2, "lasciando": 2, "condivide": 1, "approccio": 1, "antiscientifico": 1, "massima": 1, "imbarazzato": 2, "pandoro": 1, "senz": 1, "anima\u201d": 1, "giuro": 1, "panettone": 1, "rinviato": 2, "obbligo": 4, "vaccinale": 1, "improvvisato": 1, "tecnici": 2, "fastidio": 1, "usciti": 2, "sbagliarmi": 2, "antipasto": 1, "restituirci": 1, "rubate": 1, "vaso": 1, "fiori\u201d": 1, "eike": 1, "capiranno": 1, "universale": 1, "filosofo": 1, "levy": 1, "esprimo": 1, "formularne": 1, "contemporanei": 1, "unire": 1, "fomentatori": 1, "cospiratori": 1, "sperimentatori": 1, "temporalit\u00e0": 1, "intensit\u00e0": 1, "ragionamento": 2, "temono": 1, "dipingono": 1, "macabro": 1, "abbandoniamo": 1, "fomentare": 1, "cospirare": 1, "sperimentare": 1, "buonanno": 1, "riguardare": 1, "michelangelo": 5, "assoluto": 1, "nascondere": 1, "scuola\u201d": 1, "legittime": 2, "algoritmo": 1, "investiva": 1, "tagli": 6, "ridotti": 1, "penalizzato": 1, "alunni": 1, "professori": 2, "leggedibilancio": 1, "martini": 1, "stampa\u201d": 1, "31dicembre": 1, "mezzanotte": 2, "leggero": 1, "sperando": 1, "norman": 1, "gimbel": 2, "autore": 2, "canzoni": 1, "sigle": 2, "killing": 1, "softly": 1, "with": 1, "his": 1, "song\u201d": 1, "famose": 1, "televisive": 1, "happy": 1, "days": 1, "quarantenni": 1, "fonzie": 1, "stacco": 1, "musicale": 1, "adolescenza": 1, "manovra": 19, "ruota": 3, "stupirei": 1, "occupassero": 1, "imbarazzanti": 2, "pensando": 2, "messicani": 1, "notoriamente": 1, "pagassero": 1, "vorrebbero": 2, "costringerci": 1, "potente": 1, "governanti": 1, "misurava": 1, "governati": 1, "laurenziana": 1, "yourcenar": 1, "pistole": 1, "dichiarato": 2, "esaurita": 1, "obbligato": 1, "gestito": 1, "ridicola": 4, "raddoppiato": 1, "restituiscano": 1, "ottimi": 1, "specialisti": 1, "aiutati": 1, "dramma": 5, "buttiamola": 1, "\ud83d\ude02": 1, "prigionia": 1, "fatina": 1, "invecchiata": 1, "pinocchio": 3, "certificato": 1, "gioconda": 1, "insegnamenti": 3, "ipocrisie": 1, "evasori": 5, "suggerimenti": 2, "apprezzato": 2, "dominata": 1, "precedenti": 6, "fiorino": 1, "divent\u00f2": 1, "dollaro": 1, "epoca": 1, "bimbi": 1, "fidare": 1, "savonarola": 2, "donatello": 1, "monna": 1, "lisa": 1, "esplicitamente": 1, "centralista": 1, "rivendico": 1, "lamentano": 1, "inizieremo": 1, "larga": 2, "cosimo": 1, "toccheremo": 1, "complesso": 3, "ripartendo": 1, "congiura": 1, "pazzi": 1, "giuliano": 1, "bohemianrhapsody": 1, "freddie": 1, "mercury": 1, "queen": 2, "ritornare": 1, "medie": 1, "suggerisco": 1, "entreremo": 2, "celebri": 1, "marco": 7, "certosa": 3, "galluzzo": 2, "sconosciuti": 1, "archivio": 1, "monnalisa": 1, "fregatura": 1, "commercialista": 2, "noioso": 2, "chiari": 1, "commercialisti": 1, "nota": 1, "entrate": 3, "tributarie": 1, "clausole": 1, "auguriamo": 1, "disattivazione": 1, "contribuenti": 3, "shimon": 1, "peres": 2, "considerai": 1, "amos": 3, "oz": 5, "scrittore": 1, "israeliano": 1, "tenuto": 2, "orazione": 1, "funebre": 1, "nobel": 5, "disse": 1, "ingenua": 1, "freddo": 2, "cinismo": 2, "inconfondibile": 1, "sognatore": 1, "talvolta": 2, "inciampava": 1, "fissavano": 1, "ripensato": 1, "episodio": 1, "appresa": 1, "romanzi": 1, "scritti": 1, "fanatismo": 2, "fanatico": 1, "esclamativo": 1, "ambulante": 1, "terrasanta": 1, "compromessi": 2, "alti": 3, "nobili": 1, "umorismo": 1, "lieve": 2, "fucilazione": 1, "cervi": 2, "pap\u00e0": 2, "alcide": 1, "commemorazioni": 2, "quercia": 3, "rami": 1, "falciati": 1, "piango": 1, "seme": 4, "morir\u00e0": 1, "uomo\u201d": 1, "permetto": 1, "studiate": 1, "santo": 1, "inglese": 2, "natale": 11, "serenit\u00e0": 1, "ultr\u00e0": 3, "scontri": 2, "siro": 1, "razzisti": 1, "koulibaly": 1, "sceso": 2, "tifosi": 1, "gratuitamente": 1, "rete": 8, "consigli": 1, "muoveremo": 1, "toccando": 1, "pergola": 2, "teatrale": 1, "aneddoto": 1, "invenzione": 1, "telefono": 1, "meucci": 1, "indecoroso": 1, "ritardo": 3, "norme": 4, "scritte": 1, "capirle": 2, "modifiche": 1, "parlavo": 2, "cattivo": 2, "dirne": 1, "disoccupati": 3, "rinviando": 1, "pranzo": 3, "costava": 1, "113\u20ac": 2, "stanare": 1, "definendo": 1, "90\u20ac": 1, "abbassamento": 1, "regali": 1, "ritrovati": 1, "catanese": 1, "scosso": 1, "nascosto": 5, "streaming": 6, "trasparenza": 1, "evidenti": 2, "raddoppiano": 1, "premiano": 3, "paghi": 2, "evasore": 2, "furbetto": 1, "cattedrale": 2, "dedicata": 1, "fiore": 1, "umile": 1, "creatura\u201d": 1, "cristianit\u00e0": 1, "riposo": 1, "fermiamoci": 1, "stacca": 1, "forsennata": 1, "rivede": 1, "genitore": 1, "pubblicheremo": 1, "clip": 5, "cristiani": 4, "marmo": 1, "pretese": 1, "metterci": 1, "messaggi": 2, "considerazioni": 1, "discovery": 2, "fantastici": 1, "arcobalenotre": 1, "fatemi": 1, "guardato": 1, "devo": 2, "scempio": 1, "rifiutati": 1, "riteniamo": 1, "viziato": 1, "presenze": 1, "mezzora": 1, "occupazione": 3, "peggiorer\u00e0": 1, "fenomeni": 1, "sciacallo": 4, "trascorso": 1, "camminando": 2, "confessare": 1, "innocenti": 4, "sacrario": 1, "spezzato": 1, "consuma": 1, "com": 3, "live": 2, "crederete": 1, "cambiando": 4, "aspettavo": 2, "grafico": 3, "diffuso": 1, "manetta": 1, "indeterminato\u201d": 1, "curva": 4, "festeggiato": 2, "inviando": 1, "casca": 1, "asino": 1, "entrano": 1, "vigore": 1, "accademia": 1, "farinata": 1, "stenditoio": 1, "elegante": 1, "giri": 2, "dimostrando": 1, "surreali": 1, "persi": 2, "vecchi": 1, "cronisti": 1, "commessi": 2, "proporre": 2, "mamme": 2, "spirituale": 1, "golpista\u201d": 1, "spiego": 2, "matti": 2, "possibilmente": 1, "scopro": 1, "chicca": 1, "ricordarselo": 1, "spingevano": 1, "riuscite": 1, "affacciano": 1, "dichiarare": 2, "accingiamo": 1, "probabilmente": 2, "insultava": 1, "ringraziarci": 1, "senzadime": 1, "scandalosa": 2, "terr\u00f2": 1, "informati": 2, "alziamo": 1, "soldati": 1, "twitter": 1, "sgomento": 1, "distruzione": 2, "averlo": 1, "coraggioso": 1, "battuto": 1, "eroico": 1, "contorte": 2, "considerare": 1, "padri": 4, "eludere": 1, "equitalia": 5, "abituati": 1, "meschini": 1, "schiantati": 1, "spiegando": 1, "rischiavamo": 1, "risalirei": 1, "bevano": 1, "trattare": 1, "intendere": 1, "nodi": 2, "pettine": 2, "scadendo": 1, "riuscivano": 1, "scaricare": 1, "file": 1, "copia": 2, "incolla": 1, "misteri": 1, "vinci": 1, "anghiari": 1, "interviene": 1, "retromarciadelpopolo": 1, "capiscono": 1, "antifona": 1, "nascondendosi": 2, "mollato": 1, "juncker": 5, "procedura": 4, "infrazione": 3, "preziose": 1, "sbagliava": 1, "abbracciando": 2, "pregiudicato": 2, "trattava": 1, "kg": 1, "indagato": 1, "squalifica": 1, "pregiudicati": 1, "rafforza": 1, "validi": 1, "sconvenienti": 1, "indossare": 2, "magliette": 1, "digos": 1, "boia": 1, "vergognati": 2, "chiedi": 1, "dinamismo": 1, "sociali": 2, "squilibri": 1, "ambientali": 1, "xi": 1, "jinping": 1, "ricordando": 1, "deng": 1, "xiaoping": 1, "evidenziato": 1, "raggiunti": 1, "cinese": 2, "uscite": 1, "patire": 1, "normalit\u00e0": 1, "autostrade": 12, "vot\u00f2": 1, "festeggiano": 1, "uguale": 2, "beato": 1, "alessandro": 2, "risponde": 5, "insultando": 2, "offende": 1, "replica": 4, "citando": 1, "aperte": 1, "citare": 1, "gesta": 1, "senior": 2, "nutrito": 1, "alcuno": 1, "dichiara": 1, "fascista": 1, "scorrettezza": 1, "frottole": 1, "elsa": 1, "morante": 1, "nuvole": 1, "offuscano": 1, "volando": 1, "benedetta": 1, "infami": 2, "assicurati": 1, "preoccupi": 1, "me\u201d": 3, "copiosi": 1, "regia": 1, "luci": 1, "meritatissimi": 1, "magnifica": 1, "troupe": 1, "occupa": 2, "pubblica\u201d": 1, "mediaset": 1, "venduto": 1, "pochi\u201d": 1, "scriva": 1, "servito": 1, "intenso": 1, "aspettato": 1, "tomba": 1, "curiosa": 1, "socio": 1, "fornitori": 1, "siti": 1, "inchiesta": 2, "principale": 1, "capodanno": 1, "dichiarando": 1, "abolita": 2, "giurato": 1, "fregavano": 1, "padoan": 9, "solita": 1, "arrogante": 1, "degnano": 1, "attendendo": 1, "compri": 1, "sushi": 1, "capisca": 1, "intervenuto": 1, "rilevanti": 1, "banalmente": 1, "guarder\u00e0": 1, "documentari": 1, "infine": 1, "cardellino": 1, "significato": 2, "raffaello": 1, "riuscito": 2, "rispondervi": 1, "disponibile": 1, "firenzesecondome1": 2, "suggerisce": 1, "milanosecondome": 1, "romasecondome": 1, "napolisecondome": 1, "condotti": 1, "relazione": 4, "sinonimo": 1, "furbizia": 1, "fascino": 1, "originalit\u00e0": 1, "giardino": 4, "boboli": 2, "iniziamo": 1, "tocchiamo": 1, "pitti": 1, "vasariano": 1, "signoria": 1, "concittadino": 1, "vertigine": 1, "trover\u00e0": 1, "potremo": 2, "soddisfatti": 1, "mistero": 1, "x": 2, "factor": 2, "anastasio": 4, "like": 3, "giudica": 1, "stravinto": 1, "meritando": 1, "smettessimo": 1, "spaccato": 1, "cappello": 1, "capi": 1, "riuniti": 1, "commemorare": 1, "assente": 2, "sedia": 1, "vuota": 1, "trattoria": 2, "usando": 1, "taxi": 1, "massacravano": 1, "solenne": 1, "commemorazione": 1, "galateo": 1, "addio": 1, "netto": 2, "sceneggiata": 2, "manfrinadelpopolo": 1, "prendiamoci": 1, "inaccettabili": 1, "realizza": 1, "scrittura": 1, "assaggino\u201d": 1, "21mila": 1, "fca": 1, "manovradelpopolo": 2, "bianco": 2, "estensione": 1, "ingannati": 1, "resistito": 1, "colpiscono": 3, "cuori": 1, "custodisce": 1, "mercatini": 1, "obiettivi": 2, "incertezze": 1, "radicalizzati": 1, "continentale": 1, "intuizione": 1, "sicurezza\u201d": 1, "preghiere": 2, "chiarire": 4, "lussemburgo": 1, "spariti": 1, "informarsi": 1, "cartelle": 2, "edilizi": 7, "pesante": 1, "dipingerci": 1, "arrivino": 1, "preparando": 1, "strategiche": 1, "chiarite": 1, "abbasseranno": 2, "deficit": 12, "eviteranno": 1, "saperlo": 1, "proporle": 1, "presentata": 1, "arrabbiare": 1, "istruzione": 1, "scriver\u00e0": 1, "circolare": 1, "compiti": 4, "motivazione": 1, "superficiale": 1, "migliorarsi": 1, "lisciare": 1, "pelo": 1, "destinatari": 1, "evoluzione": 1, "distruggono": 1, "buffo": 1, "contesta": 1, "personalizzazione\u201d": 1, "dica": 1, "accusano": 1, "personalizzare": 1, "sognavano": 1, "presentavano": 1, "berlinguer": 1, "solitario": 1, "andando": 3, "fatelo": 2, "senzadime\u201d": 1, "zitto": 2, "invade": 1, "tacere\u201d": 1, "dominato": 1, "rifletterci": 1, "vicoli": 1, "monumenti": 1, "domandato": 1, "serva": 2, "trollls": 1, "aspettate": 1, "innamorati": 1, "elogiano": 1, "fermati": 1, "ingiustizie": 2, "presidenti": 1, "analisi": 1, "sociologiche": 1, "raffinate": 1, "diseguaglianze": 1, "barricate": 1, "aumentano": 2, "rinnovare": 1, "camionette": 1, "gendarmeria": 1, "metter\u00e0": 2, "indecorosa": 1, "manfrina": 1, "controproposte": 2, "accolte": 1, "scenderebbe": 1, "accoglieranno": 1, "categorie": 3, "confapi": 1, "divano": 1, "sufficienza": 1, "uggioso": 1, "chiacchierate": 1, "rocambolesco": 1, "regolare": 2, "riusciamo": 1, "nascita": 1, "maledetta": 1, "gelare": 1, "moglie": 1, "continui": 4, "infinita": 2, "ancona": 1, "creano": 1, "sconvolto": 1, "bush": 3, "cagnolino": 1, "bara": 1, "stringersi": 1, "bandiere": 2, "lasciata": 1, "clinton": 2, "consegne": 1, "rancorosa": 2, "speranze": 1, "tenetevi": 2, "incattivita": 1, "impaurita": 1, "consegna": 1, "censis": 2, "pessimismo": 1, "valorizzata": 1, "descrive": 1, "animo": 1, "coni": 1, "vertici": 1, "figata": 1, "ripete": 1, "chiedemmo": 1, "insegnano": 1, "darti": 1, "lasceremo": 1, "ceda": 1, "assist": 1, "quaresma": 1, "chiamarsi": 2, "roba": 1, "trivela": 2, "riprovo": 1, "global": 1, "compact": 1, "dividendo": 1, "tensioni": 1, "teorico": 1, "picchiare": 1, "dimostrarvi": 1, "trovata": 1, "trattato": 1, "dublino": 1, "proporlo": 1, "bossifini": 1, "anonima": 1, "obbligatori": 1, "edilizio": 9, "assolavoro": 1, "53mila": 2, "butto": 1, "trascorsi": 2, "referendaria": 1, "sella": 1, "efficienza": 1, "manifesti": 1, "saro": 1, "criminale": 1, "lucrare": 1, "altroinsicurezza": 1, "dimenticato": 1, "entrambe": 1, "obbligatoriet\u00e0": 1, "cupola": 1, "accada": 1, "scopri": 3, "querelato": 1, "periodo": 4, "spargendo": 1, "missionario": 1, "salesiano": 1, "ugo": 3, "censi": 1, "mato": 1, "grosso": 1, "per\u00f9": 1, "lima": 1, "gratitudine": 2, "fede": 2, "ferisce": 1, "perisce": 1, "scuse": 1, "sussulto": 1, "ammesso": 1, "continuato": 3, "insultarci": 1, "sottolineare": 1, "trascorsa": 1, "gazzetta": 1, "tranquilli": 1, "insegno": 1, "riapre": 1, "registravo": 1, "bonolis": 1, "perdevo": 1, "insulteranno": 1, "scherzi": 1, "meritate": 1, "divertimento": 1, "festeggia": 2, "pienamente": 1, "oggettivi": 1, "tirate": 1, "stracciano": 1, "colf": 1, "muratore": 1, "prendi": 1, "potrai": 1, "cambio": 3, "poste": 2, "portarla": 1, "macchinari": 1, "veicoli": 1, "180mila": 1, "abbassata": 1, "altroeuroarea": 1, "considerando": 1, "30novembre": 1, "tria": 1, "ferme": 1, "calo": 1, "96mila": 1, "madia": 1, "partecipate": 1, "nostalgia": 1, "esasperato": 1, "rapine": 1, "pare": 2, "ucciderlo": 1, "mirato": 1, "gambe\u201d": 1, "riparta": 1, "legittima": 1, "umana": 2, "strategica": 1, "ambientale": 2, "enel": 1, "green": 1, "power": 1, "riescono": 2, "bucare": 1, "sottolinearle": 1, "rilanciarle": 1, "lasciarla": 1, "fattore": 1, "trainante": 1, "segreto": 1, "bossi": 1, "denunciandolo": 1, "appropriazione": 1, "indebita": 1, "condonato": 2, "produttori": 1, "mentire": 1, "accoda": 1, "siccome": 2, "difende": 3, "carattere": 3, "scomode": 1, "contestare": 2, "lanciate": 1, "divenendo": 1, "virale": 2, "trattative": 1, "ambasciatore": 1, "surreale": 1, "sconvolgenti": 1, "marchette": 1, "edile": 1, "chiarito": 1, "sbirciare": 1, "buco": 1, "serratura": 1, "sconvolge": 3, "definizione": 1, "piaga": 1, "facili": 1, "licenziamenti": 6, "incentivi": 2, "evade": 1, "rinviare": 2, "fatturazioni": 1, "sanzionare": 1, "inneggiando": 1, "agitavano": 1, "cappio": 1, "gridavano": 1, "sembravano": 1, "onesti": 3, "restituirli": 1, "lauree": 1, "albania": 1, "diamanti": 1, "tanzania": 1, "rendiamo": 1, "gattini": 3, "imposto": 1, "m": 1, "evaso": 1, "debbano": 1, "ricadere": 1, "rivedo": 1, "gettato": 1, "jerkov": 1, "zagrebelsky": 1, "varcare": 1, "collaboratori": 1, "proseguiranno": 1, "conservo": 1, "ricordi": 1, "bambine": 1, "preghiera": 1, "dimaio": 2, "bastano": 1, "attaccavano": 1, "servivano": 1, "confermato": 3, "beb\u00e8": 2, "reintrodotto": 1, "contestato": 1, "pentaleghisti": 1, "utili": 3, "confermano": 2, "confermate": 1, "rovesciato": 3, "quintali": 2, "provano": 1, "copiarci": 1, "dimezza": 2, "abbassa": 1, "errori": 1, "copiato": 1, "copiateci": 1, "rimettiamo": 1, "salviamo": 1, "diciottenni": 4, "spendete": 1, "segnale": 2, "taglia": 1, "costruisce": 2, "adulta": 1, "mangia": 1, "presta": 1, "capolavori": 1, "educativo": 1, "salver\u00e0": 3, "stupida": 4, "pier": 3, "offrendo": 1, "ragionare": 1, "illustriamo": 1, "riducendo": 2, "studiata": 1, "mostrare": 3, "scientificamente": 1, "tavolino": 1, "reali": 1, "gattino": 1, "compra": 1, "facciamoci": 2, "taglino": 1, "tagliare": 2, "abolire": 5, "assumersi": 1, "squallida": 3, "scandicci": 1, "fallani": 1, "tagliando": 1, "approfittato": 1, "caff\u00e8": 1, "chiacchiera": 2, "incontrati": 1, "preoccupazione": 1, "irresponsabili": 1, "ottenere": 1, "sfasciando": 3, "bocciatura": 2, "miglior": 1, "speculatori": 4, "abbassate": 1, "aprite": 1, "formulato": 1, "controproposta": 2, "dimezzerebbe": 1, "abbasserebbe": 1, "collaborare": 2, "cerasa": 1, "balle": 1, "spaziali": 1, "flop": 1, "concludo": 1, "piccole": 2, "guerriglie": 1, "quotidiane": 3, "commento": 2, "riconosciamo": 1, "capodoglio": 1, "spiaggiato": 1, "indonesia": 1, "letteralmente": 1, "pezzi": 3, "chili": 1, "bottiglie": 1, "sacchetti": 5, "infradito": 1, "mari": 2, "muoviamo": 1, "pesci": 1, "world": 1, "economic": 1, "forum": 1, "davos": 1, "propriamente": 1, "ambientalista": 1, "pulizia": 1, "manto": 1, "scadente": 1, "casamonica": 1, "finti": 4, "contestavano": 1, "operato": 1, "limitano": 1, "sparisci": 1, "ritirati": 1, "vattene": 1, "suicida": 1, "presentando": 2, "aggiuntiva": 1, "stanziata": 1, "artigiani": 1, "fallite": 1, "subordinati": 1, "carica": 1, "impianti": 1, "vintage": 1, "impianto": 1, "compostaggio": 1, "modernit\u00e0": 2, "portati": 1, "ferroviarie": 1, "bloccate": 1, "ischia": 6, "fanghi": 1, "terreni": 1, "agricoli": 1, "chiusure": 5, "domenicali": 4, "giocano": 1, "ambientalisti": 1, "agricoltura": 2, "lasciarvi": 1, "bislacche": 2, "rifarlo": 1, "centesimo": 2, "ulteriore": 1, "genovesi": 2, "trolls": 1, "sbizzarriti": 1, "topolino": 2, "preferito": 1, "pippo": 1, "paperino": 1, "pietra": 1, "miliare": 1, "allarga": 1, "passeggiare": 1, "chiacchierare": 1, "camerieri": 1, "baristi": 1, "terrorizzati": 1, "negozi": 4, "fasciarsi": 2, "sfasciare": 1, "catena": 1, "litigato": 2, "termovalorizzatori": 1, "valico": 3, "prescrizione": 1, "wrestling": 1, "bisticciano": 1, "fuggono": 2, "tagliata": 1, "rincorrono": 1, "decisioni": 2, "centrafricana": 1, "quarantadue": 1, "uccise": 1, "parrocchia": 1, "vicario": 1, "diocesi": 1, "musulmani": 1, "sfollati": 3, "locale": 2, "accolto": 1, "generoso": 1, "profetica": 1, "profeticamente": 1, "giubileo": 1, "bangui": 1, "martoriato": 1, "pochissimi": 1, "uccisi": 1, "inspiegabilmente": 2, "voltare": 1, "tiziano": 3, "nuovamente": 1, "avvocato": 4, "mirco": 1, "sopportare": 1, "ridar\u00e0": 1, "ricapitoliamo": 1, "promotori": 2, "raccontavano": 1, "indire": 1, "appare": 1, "tradire": 1, "disintegrare": 1, "santillo": 3, "nominato": 1, "assenze": 2, "nominare": 1, "aggiungo": 1, "infilato": 2, "vecchia": 1, "giocato": 1, "fincantieri": 2, "navi": 2, "ponti": 1, "nocondonodimaio": 1, "penalizzazioni": 1, "anticipata": 1, "decurtazione": 1, "accetti": 1, "ape": 1, "anticipo": 1, "pensionistico": 1, "elettori": 6, "favorito": 1, "privilegiato": 1, "utilizzata": 1, "vergognoso": 1, "franco": 1, "bechis": 1, "informa": 1, "incriminata": 1, "mater": 1, "biotech": 1, "bio": 1, "butandiolo": 1, "materie": 1, "rinnovabili": 1, "recato": 1, "ricordava": 1, "scrivevano": 1, "mutui": 2, "rate": 1, "care": 1, "fidi": 1, "paradosso": 2, "flattax": 3, "superamento": 2, "scampoli": 1, "forzato": 1, "rispondo": 2, "triplicato": 1, "quartiere": 2, "producendo": 1, "rinnovo": 2, "togliete": 1, "stralciate": 1, "schifezza": 1, "abusivismo": 2, "polemizzato": 1, "richiesto": 1, "ospitalit\u00e0": 1, "avendone": 1, "precisazioni": 1, "caudillo\u201d": 1, "polito": 1, "nipote": 2, "morbillo": 1, "causati": 1, "delirio": 1, "noolimpiadi": 1, "nogronda": 1, "lorenzin": 1, "giocando": 1, "pugno": 1, "grilloleghisti": 3, "supera": 2, "pannolini": 1, "impatta": 1, "ricorre": 1, "detti": 1, "denaro": 1, "cambier\u00e0": 1, "istituito": 1, "bonusbeb\u00e8": 3, "zac": 1, "promettono": 2, "regaleranno": 1, "incolta": 1, "podere": 1, "demografica": 1, "regalando": 2, "terreno": 1, "incolti": 1, "telefonato": 1, "fair": 1, "play": 1, "massacrate": 1, "dimentico": 1, "garantista": 2, "lavorano": 2, "trasporto": 1, "ospedali": 1, "ristoranti": 1, "professioni": 1, "sindaci": 3, "avvitata": 1, "aperture": 1, "diversit\u00e0": 1, "sconfiggono": 1, "urne": 1, "continuer\u00f2": 1, "sperimentando": 1, "sitav": 1, "salsomaggiore": 2, "italia2030": 2, "terme": 1, "rocco": 3, "casalino": 5, "diretti": 1, "mostrato": 1, "nipotina": 3, "vergogno": 2, "scientifica": 1, "gradi": 2, "crepapelle": 1, "rappresenta": 2, "condizionatori": 1, "viadotto": 4, "autostradale": 3, "gaffe": 1, "riteneva": 1, "delrio": 1, "impattante": 1, "chilometri": 1, "risparmiato": 2, "originario": 1, "eccessivo": 1, "smetti": 2, "prenditi": 1, "finanziata": 1, "bloccarla": 1, "disegnare": 1, "metti": 1, "frantumano": 1, "sgretolamento": 1, "scenderanno": 1, "tagliarsi": 1, "isolarsi": 1, "infelice": 1, "gerardo": 1, "w": 1, "cittadina": 1, "squallide": 1, "indegne": 1, "povere": 1, "super": 2, "ciao": 1, "fortunato": 1, "chiedervi": 1, "succedendo": 1, "muoverci": 1, "piange": 1, "ambientalismo": 1, "salotto\u201d": 1, "ripensateci": 1, "nomine": 1, "rischiamo": 1, "smettete": 1, "riaprite": 2, "ideato": 1, "chiuso": 2, "spendeteli": 1, "approvare": 1, "trentamila": 2, "flagellata": 1, "asia": 4, "bibi": 2, "blasfemia": 1, "diciamola": 1, "mercato": 1, "scusate": 1, "rimediamo": 1, "pubblicata": 1, "pagamento": 1, "consip": 2, "pagailpopolo": 1, "isolare": 1, "sadomasochismo": 1, "testimoniare": 1, "pittsburgh": 1, "considero": 2, "antisemita": 1, "predappio": 1, "inneggiavano": 1, "ironizzavano": 1, "urlare": 2, "ripeto": 2, "compensare": 1, "gilberto": 1, "lecchini": 1, "ruffiani": 1, "turno": 1, "spariscono": 1, "offendono": 2, "invasato": 1, "spedito": 1, "bombe": 1, "soros": 2, "cnn": 1, "mira": 1, "bersagli": 1, "preferiti": 1, "processato": 1, "pistola": 1, "macerata": 1, "traini": 2, "distanze": 1, "piaciuto": 3, "invitare": 1, "valorizza": 1, "razzismo": 1, "vittima": 2, "immigrato": 1, "sostanza": 1, "mancata": 1, "riempito": 1, "cambieranno": 1, "distruggere": 4, "finanze": 1, "garantito": 1, "potevano": 1, "realizzare": 2, "scopriranno": 1, "avvelena": 1, "clima\u201d": 1, "finanziaria": 2, "invita": 1, "calmare": 1, "ineffabile": 1, "credibile": 1, "irresponsabilit\u00e0": 2, "chongqing": 2, "popolosa": 1, "metropoli": 1, "conferenze": 2, "salutare": 1, "pisa": 2, "neonato": 1, "consolato": 1, "marea": 1, "turisti": 2, "commerciale": 1, "ragionamenti": 1, "boccia": 1, "frego": 5, "vinceremo": 1, "bocciata": 1, "afd": 1, "sorge": 2, "spontanea": 2, "bocciare": 1, "godono": 3, "render\u00e0": 1, "moltissimo": 2, "intuizioni\u201d": 1, "figuratevi": 2, "urlano": 2, "rispetta": 2, "eurodeputato": 1, "tal": 1, "ciocca": 1, "scarpa": 1, "made": 1, "italy": 1, "pesta": 1, "volontariamente": 1, "appunti": 1, "moscovici": 1, "recupera": 1, "commentano": 1, "pestando": 1, "documenti": 1, "portafogli": 1, "faraone": 1, "autistica": 1, "meritava": 2, "risatine": 1, "applaudiva": 1, "sfasciano": 1, "tenuta": 1, "riusciranno": 1, "folli": 1, "chiederanno": 1, "piangono": 1, "motto": 1, "intentate": 1, "novantacinquemila": 1, "ripagare": 1, "mole": 1, "buttata": 1, "salute": 2, "condividerlo": 1, "5stelle": 2, "genovese": 1, "pago": 1, "disturbi": 1, "spettro": 1, "autistico": 2, "discriminato": 1, "annuale": 1, "scherno": 1, "scala": 1, "prendersi": 1, "offendere": 1, "cartellone": 1, "svenduti": 1, "cialtronaggine": 2, "leopolda9": 6, "fermarli": 1, "futuro\u201d": 1, "facciamola": 1, "condividono": 1, "code": 1, "colpisca": 1, "eccoci": 1, "vivendola": 1, "incontrano": 1, "curano": 1, "scienziato": 1, "giornaliste": 1, "alterna": 1, "battute": 1, "discutono": 1, "lanciare": 1, "considerano": 2, "ritornoalfuturo": 4, "tributato": 1, "applauso": 1, "lunghissimo": 1, "alzate": 1, "riceveva": 1, "agenzie": 1, "rating": 1, "declassare": 1, "speculazione": 1, "attorno": 1, "scendono": 2, "carro": 3, "beneficiato": 1, "rancoroso": 1, "spinto": 2, "doppio": 1, "pazzesche": 2, "volley": 1, "campionesse": 1, "strepitose": 1, "vederci": 1, "galoppa": 1, "offriamo": 1, "dimezzare": 1, "mandando": 1, "rimangiato": 1, "studente": 1, "giurisprudenza": 1, "mediocrit\u00e0": 1, "conviene": 1, "secco": 1, "sistemeranno": 1, "pregresso": 1, "facce": 1, "tombale": 1, "abusive": 1, "chieder\u00e0": 1, "entri": 1, "potrebbero": 1, "salvate": 1, "costruite": 1, "abusivo": 1, "seriamente": 1, "floris": 1, "rinfacciasse": 1, "astio": 1, "labbra": 1, "piede": 1, "preferendo": 1, "sopportate": 1, "lanceremo": 1, "congresso": 3, "candidature": 1, "riccioli": 3, "apriremo": 1, "spiegata": 1, "penalizzi": 1, "programma": 3, "ulisse": 1, "alberto": 1, "raiuno": 1, "nedo": 1, "fiano": 1, "sterminio": 1, "rivivere": 1, "discriminati": 1, "mensa": 1, "basata": 1, "genera": 1, "mostri": 1, "lodi": 2, "rinunceremo": 1, "aeroporto": 5, "soci": 1, "asiatico": 1, "milioni\u20ac": 1, "duemila": 1, "ottemperando": 1, "valutazione": 1, "impatto": 1, "immenso": 1, "pista": 1, "pagheranno": 4, "mostrer\u00e0": 1, "seguiremo": 1, "concentratissimo": 1, "fermando": 2, "danilo": 1, "merci": 1, "utilizzano": 1, "brennero": 2, "attivo": 1, "euforia": 1, "governavamo": 1, "sorpassare": 1, "riconoscer\u00e0": 1, "pagata": 1, "pachistano": 1, "colpevole\u201d": 1, "ges\u00f9": 1, "cristo": 1, "condannata": 1, "unirsi": 2, "dividersi": 1, "autorit\u00e0": 1, "pachistane": 1, "liberare": 1, "gioie": 1, "meriam": 1, "imprigionata": 1, "sudan": 1, "liberata": 1, "lavorassimo": 1, "riassaporare": 1, "borgonovo": 2, "incoraggiato": 1, "chantal": 1, "carrozzina": 1, "baggio": 1, "entrava": 1, "fiesole": 1, "piansero": 1, "b2": 1, "vestiva": 1, "calzoncini": 1, "malato": 1, "doloroso": 1, "mostrarsi": 1, "stronza": 1, "consegnargli": 1, "scherzando": 2, "miliardari": 1, "stupirci": 1, "ingranando": 1, "fenomenologia": 1, "rimangono": 1, "incertezza": 1, "frustrati": 1, "incassi": 2, "rgs": 1, "ordinario": 1, "illegittimit\u00e0": 1, "scoop": 1, "concessionarie": 1, "autostradali": 1, "intervisti": 1, "alpa": 1, "iscritto": 1, "deriso": 1, "calunniato": 1, "accordo\u201d": 1, "maschera": 1, "compiace": 1, "davano": 1, "caudillo": 1, "accusavano": 1, "comprimere": 1, "sondrio": 1, "scalini": 1, "mussolini": 1, "radunavano": 1, "raggiungevano": 1, "uniforme": 1, "proibita": 1, "fascistissime": 1, "barbareschi": 1, "tagli\u201d": 1, "prenda": 1, "briga": 1, "valeva": 1, "autorizza": 1, "caspita": 1, "conferire": 1, "denis": 1, "sessuale": 1, "amal": 1, "clooney": 1, "yazidi": 1, "indescrivibile": 1, "rimanga": 1, "elemosine": 1, "controllate": 1, "spalle": 1, "nordest": 1, "maturit\u00e0": 1, "punta": 1, "ideologici": 2, "minacciata": 1, "ostia": 1, "federica": 3, "sentissero": 1, "istiga": 1, "rivolgendo": 1, "disgraziate": 1, "concepire": 1, "medicina": 2, "allison": 2, "honjo": 2, "tumori": 2, "ospedale": 1, "inventato": 1, "immunoterapia": 1, "innovativo": 1, "meccanismo": 1, "terapia": 1, "bacio": 1, "lucide": 1, "contribuiscono": 1, "organizzativo": 1, "affettivo": 1, "masochista": 2, "testacoda": 1, "resistenzacivile": 3, "detestato": 1, "roccocasalino": 1, "4gatti": 1, "matematica": 1, "tratti": 1, "animali": 1, "nave": 1, "diciotti": 1, "gatti": 1, "piazzadelpopolo": 1, "sfascisti": 1, "ginocchio": 1, "manterranno": 1, "diversamente": 1, "organizzare": 1, "venezuelana": 2, "resa": 1, "sudore": 1, "corri": 1, "infermieri": 1, "lasciai": 1, "rifiutai": 1, "candidandomi": 1, "sconfitte": 1, "tonfo": 1, "leopolde": 1, "inaugurazioni": 1, "fontanelli": 1, "pensionati": 1, "rottamazione": 1, "csm": 4, "imprecisato": 1, "diramato": 1, "sforare": 1, "portandolo": 1, "contenuta": 1, "facilmente": 1, "reperibile": 1, "proponevo": 1, "capricorn": 1, "riduci": 1, "margine": 1, "tesi": 1, "spiegarglielo": 1, "strapazzo": 1, "riducete": 2, "sforate": 1, "borsa": 1, "rischiando": 1, "mantenendo": 1, "claque": 1, "furbi": 2, "elezione": 1, "vicepresidente": 2, "ermini": 2, "grida": 1, "togati": 2, "eletti": 1, "rousseau": 2, "pensabile": 1, "lilli": 3, "gruber": 3, "ritorceranno": 1, "matteorenzi": 1, "paio": 1, "pomigliano": 2, "assunti": 1, "segreterie": 1, "particolari": 1, "migliora": 1, "svelano": 1, "fonti": 1, "dialogante": 1, "scommetto": 1, "scriveranno": 1, "potessimo": 1, "aliquota": 1, "accontentiamoci": 1, "ottimista": 1, "introdotta": 1, "poca": 1, "plastici": 1, "irrealizzabili": 1, "rientrato": 1, "shanghai": 1, "macao": 1, "hong": 1, "kong": 1, "bigdata": 1, "cerco": 1, "immobilismo": 1, "viso": 1, "sciogliere": 1, "chiarimento": 1, "iscritti": 1, "rispettabili": 1, "guardo": 1, "figuriamoci": 1, "giochi": 1, "ostruzionismo": 1, "smetterla": 1, "individuino": 1, "agevolazioni": 1, "settori": 1, "favoletta": 2, "unitario": 1, "scaricabarile": 1, "mostrasse": 1, "cercasse": 1, "dividerci": 1, "nava": 1, "consob": 1, "autorevolezza": 1, "indipendenza": 1, "costituzionalisti": 2, "preoccupati": 1, "ferie": 2, "finanzier\u00e0": 1, "renziana\u201d": 2, "autonomia": 1, "federalista": 1, "affidamento": 1, "manipolare": 1, "informazioni": 1, "preoccupante": 1, "solitamente": 1, "anticipa": 1, "marcia": 1, "licenzier\u00e0": 1, "calcola": 1, "devastanti": 1, "assicurano": 1, "licenziamento": 1, "occupo": 1, "prendete": 1, "classifiche": 1, "tener": 1, "missioni": 1, "bugiardo": 3, "produrranno": 1, "obbligare": 1, "fagocitato": 1, "inseguire": 1, "distrugge": 1, "separino": 1, "marte": 1, "perderanno": 1, "farneticanti": 1, "siede": 1, "violare": 1, "tranquillamente": 1, "aberrante": 1, "preciso": 1, "calcolo": 1, "perdonano": 1, "ruba": 1, "martire": 1, "siciliani": 1, "collo": 2, "sdegno": 1, "guardasigilli": 1, "vile": 1, "screditare": 1, "tenta": 1, "europe": 1, "pressioni": 1, "finanziamenti": 1, "scandalizzato": 1, "ravenna": 1, "contano": 1, "permette": 1, "minacciare": 1, "velatamente": 1, "parlavano": 1, "cantori": 1, "editorialisti": 1, "scandalizzavano": 1, "recuperati": 1, "annullamento": 1, "rimangiarsi": 1, "sgraziata": 1, "ringraziamento": 1, "guidi": 1, "chiudono": 1, "semplicissimo": 1, "dino": 1, "lavorava": 1, "collezionato": 1, "storiche": 1, "regista": 1, "piazzato": 1, "lazio": 1, "concorsi": 1, "universitari": 1, "continuando": 1, "sparare": 1, "mucchio": 1, "pensava": 1, "barsport": 1, "successive": 1, "prendevano": 1, "rude": 1, "collegati": 1, "occhiata": 1, "sequestrano": 1, "migrante": 1, "immediato": 1, "seguirli": 1, "toccano": 1, "geopolitico": 1, "arrabbiarti": 1, "rinunciato": 1, "immergermi": 1, "pessima": 1, "viktor": 1, "rappresenti": 1, "egoismi": 1, "nasca": 1, "cadono": 1, "afferma": 1, "sconfigge": 1, "tieniti": 1, "ventotene": 1, "aggiornato": 1, "indagavano": 1, "alfano": 1, "titolare": 1, "doppiamorale": 1, "manganellare": 1, "comodo": 1, "difendeva": 1, "eritrei": 1, "costiera": 1, "sequestrati": 1, "ricordiamoci": 1, "canaglia": 1, "fateliscendere": 1, "campania": 1, "tornelli": 2, "accedere": 1, "comprare": 1, "biglietto": 2, "obliterarlo": 1, "ticket": 1, "ignaro": 1, "oblitera": 1, "scatta": 1, "ressa": 1, "precipitano": 1, "furto": 1, "minimizzare": 1, "spargere": 1, "veleni": 1, "ricevessero": 1, "matteorenziufficiale": 2, "posts": 2, "coltivo": 1, "magia": 1, "dividere": 1, "gronda\u201d": 1, "ribattere": 1, "cavarsela": 1, "disparte": 1, "considerato": 1, "manganellano": 1, "giudicato": 1, "campagne": 1, "bastasse": 2, "legale": 1, "aiscat": 1, "concessionari": 1, "sosta": 1, "soccorritori": 2, "straziate": 1, "impongono": 1, "puntuale": 1, "sembriamo": 1, "complici": 1, "cordoglio": 1, "immensa": 1, "professionalit\u00e0": 1, "autocomplotto": 1, "aspettarsi": 1, "nojobs": 1, "silvia": 1, "braccini": 2, "sacrosanto": 1, "cugino": 1, "materia": 1, "guru": 1, "spiegher\u00e0": 1, "riflette": 1, "ripercussioni": 1, "stupidit\u00e0": 1, "mazzetta": 1, "ata": 1, "prendiamola": 1, "portaborse": 1, "cugine": 1, "imprenditrici": 1, "marito": 1, "presunte": 2, "irregolarit\u00e0": 1, "prove": 1, "risultano": 1, "evocare": 1, "titoli": 1, "udite": 2, "difender\u00e0": 1, "piani": 1, "iniziali": 1, "anticipando": 1, "tappe\ud83d\ude00": 1, "cercher\u00f2": 1, "barzellette": 1, "schizzare": 1, "simbolico": 1, "cercato": 1, "partono": 1, "bandierina": 1, "credibili": 1, "culturalmente": 1, "solido": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/renzi_emoji b/anno3/avrc/assignments/dataviz/dataset/all/renzi_emoji new file mode 100644 index 0000000..f89254a --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/renzi_emoji @@ -0,0 +1 @@ +{"\ud83d\ude0a": 5, "\ud83d\ude00": 3, "\ud83c\uddfa\ud83c\uddf8": 1, "\ud83c\udde8\ud83c\uddf3": 1, "\ud83c\uddee\ud83c\uddf9": 2, "\ud83d\ude42": 1, "\ud83d\ude07": 1, "\ud83c\udfc7": 1, "\ud83d\ude31": 1, "\ud83d\ude09": 5, "\ud83d\ude01": 1, "\ud83d\ude02": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/renzi_sleep b/anno3/avrc/assignments/dataviz/dataset/all/renzi_sleep new file mode 100644 index 0000000..58a7950 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/renzi_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 3, "10": 6, "11": 8, "12": 5, "13": 7, "14": 4, "15": 3, "16": 9, "17": 7, "18": 3, "19": 5, "20": 4, "21": 3, "22": 0, "23": 7}, "Feb": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 3, "9": 5, "10": 5, "11": 4, "12": 3, "13": 0, "14": 3, "15": 1, "16": 1, "17": 2, "18": 4, "19": 4, "20": 3, "21": 3, "22": 1, "23": 2}, "Mar": {"0": 2, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 1, "7": 1, "8": 3, "9": 3, "10": 2, "11": 1, "12": 4, "13": 2, "14": 1, "15": 3, "16": 1, "17": 2, "18": 1, "19": 1, "20": 3, "21": 3, "22": 0, "23": 2}, "Apr": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 2, "10": 0, "11": 1, "12": 2, "13": 0, "14": 0, "15": 1, "16": 1, "17": 1, "18": 4, "19": 0, "20": 3, "21": 1, "22": 0, "23": 0}, "May": {"0": 1, "1": 1, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 1, "10": 4, "11": 3, "12": 1, "13": 2, "14": 3, "15": 2, "16": 2, "17": 5, "18": 2, "19": 3, "20": 1, "21": 1, "22": 0, "23": 0}, "Jun": {"0": 0, "1": 1, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 2, "10": 5, "11": 4, "12": 2, "13": 1, "14": 1, "15": 1, "16": 5, "17": 3, "18": 5, "19": 2, "20": 2, "21": 1, "22": 1, "23": 1}, "Jul": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 1, "5": 0, "6": 0, "7": 0, "8": 3, "9": 6, "10": 2, "11": 9, "12": 8, "13": 2, "14": 3, "15": 5, "16": 6, "17": 9, "18": 8, "19": 7, "20": 4, "21": 7, "22": 2, "23": 3}, "Aug": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 0, "5": 1, "6": 0, "7": 2, "8": 5, "9": 7, "10": 5, "11": 10, "12": 8, "13": 11, "14": 9, "15": 7, "16": 10, "17": 10, "18": 5, "19": 10, "20": 9, "21": 3, "22": 4, "23": 3}, "Sep": {"0": 3, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 6, "8": 4, "9": 11, "10": 8, "11": 7, "12": 7, "13": 5, "14": 5, "15": 5, "16": 10, "17": 6, "18": 9, "19": 11, "20": 8, "21": 5, "22": 3, "23": 1}, "Oct": {"0": 3, "1": 1, "2": 1, "3": 1, "4": 0, "5": 0, "6": 0, "7": 2, "8": 12, "9": 16, "10": 15, "11": 13, "12": 10, "13": 14, "14": 5, "15": 6, "16": 11, "17": 7, "18": 19, "19": 12, "20": 7, "21": 8, "22": 7, "23": 0}, "Nov": {"0": 0, "1": 2, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 1, "8": 10, "9": 15, "10": 11, "11": 15, "12": 11, "13": 4, "14": 6, "15": 5, "16": 10, "17": 5, "18": 9, "19": 11, "20": 4, "21": 3, "22": 0, "23": 1}, "Dec": {"0": 1, "1": 0, "2": 0, "3": 0, "4": 1, "5": 0, "6": 0, "7": 0, "8": 10, "9": 7, "10": 6, "11": 10, "12": 5, "13": 6, "14": 1, "15": 7, "16": 7, "17": 12, "18": 5, "19": 4, "20": 4, "21": 7, "22": 2, "23": 4}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/renzi_trend.json b/anno3/avrc/assignments/dataviz/dataset/all/renzi_trend.json new file mode 100644 index 0000000..ff8d4dc --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/renzi_trend.json @@ -0,0 +1 @@ +{"24-Nov-2019": 2, "23-Nov-2019": 2, "21-Nov-2019": 3, "20-Nov-2019": 1, "19-Nov-2019": 3, "17-Nov-2019": 2, "16-Nov-2019": 6, "15-Nov-2019": 3, "13-Nov-2019": 4, "12-Nov-2019": 1, "11-Nov-2019": 1, "9-Nov-2019": 3, "8-Nov-2019": 1, "7-Nov-2019": 1, "6-Nov-2019": 3, "5-Nov-2019": 3, "4-Nov-2019": 2, "3-Nov-2019": 5, "2-Nov-2019": 4, "1-Nov-2019": 3, "31-Oct-2019": 1, "30-Oct-2019": 2, "29-Oct-2019": 2, "28-Oct-2019": 3, "27-Oct-2019": 2, "26-Oct-2019": 5, "25-Oct-2019": 1, "24-Oct-2019": 2, "23-Oct-2019": 2, "22-Oct-2019": 6, "21-Oct-2019": 2, "20-Oct-2019": 10, "19-Oct-2019": 12, "18-Oct-2019": 8, "17-Oct-2019": 4, "16-Oct-2019": 8, "15-Oct-2019": 5, "14-Oct-2019": 2, "13-Oct-2019": 1, "12-Oct-2019": 2, "11-Oct-2019": 1, "9-Oct-2019": 3, "8-Oct-2019": 1, "7-Oct-2019": 1, "6-Oct-2019": 3, "5-Oct-2019": 1, "4-Oct-2019": 5, "3-Oct-2019": 2, "2-Oct-2019": 2, "1-Oct-2019": 1, "30-Sep-2019": 4, "29-Sep-2019": 1, "28-Sep-2019": 4, "27-Sep-2019": 2, "26-Sep-2019": 4, "25-Sep-2019": 2, "24-Sep-2019": 1, "23-Sep-2019": 6, "22-Sep-2019": 4, "21-Sep-2019": 4, "20-Sep-2019": 1, "19-Sep-2019": 4, "18-Sep-2019": 3, "17-Sep-2019": 4, "15-Sep-2019": 1, "14-Sep-2019": 1, "13-Sep-2019": 2, "12-Sep-2019": 3, "11-Sep-2019": 2, "10-Sep-2019": 2, "9-Sep-2019": 2, "8-Sep-2019": 3, "7-Sep-2019": 3, "6-Sep-2019": 2, "5-Sep-2019": 1, "4-Sep-2019": 3, "2-Sep-2019": 1, "1-Sep-2019": 2, "30-Aug-2019": 2, "29-Aug-2019": 2, "28-Aug-2019": 1, "26-Aug-2019": 2, "25-Aug-2019": 2, "24-Aug-2019": 3, "23-Aug-2019": 2, "22-Aug-2019": 5, "21-Aug-2019": 3, "20-Aug-2019": 3, "19-Aug-2019": 3, "18-Aug-2019": 6, "17-Aug-2019": 1, "16-Aug-2019": 2, "15-Aug-2019": 5, "14-Aug-2019": 2, "13-Aug-2019": 7, "12-Aug-2019": 4, "11-Aug-2019": 5, "10-Aug-2019": 1, "9-Aug-2019": 2, "8-Aug-2019": 8, "7-Aug-2019": 7, "6-Aug-2019": 3, "5-Aug-2019": 3, "4-Aug-2019": 3, "3-Aug-2019": 3, "2-Aug-2019": 6, "1-Aug-2019": 3, "31-Jul-2019": 2, "30-Jul-2019": 2, "29-Jul-2019": 3, "28-Jul-2019": 2, "27-Jul-2019": 4, "26-Jul-2019": 4, "25-Jul-2019": 2, "24-Jul-2019": 5, "23-Jul-2019": 4, "22-Jul-2019": 1, "21-Jul-2019": 4, "20-Jul-2019": 4, "19-Jul-2019": 4, "18-Jul-2019": 3, "17-Jul-2019": 2, "16-Jul-2019": 4, "15-Jul-2019": 2, "14-Jul-2019": 4, "13-Jul-2019": 3, "12-Jul-2019": 3, "11-Jul-2019": 4, "9-Jul-2019": 2, "8-Jul-2019": 1, "7-Jul-2019": 4, "5-Jul-2019": 2, "4-Jul-2019": 2, "3-Jul-2019": 3, "2-Jul-2019": 4, "1-Jul-2019": 1, "29-Jun-2019": 1, "28-Jun-2019": 3, "27-Jun-2019": 1, "26-Jun-2019": 2, "25-Jun-2019": 3, "24-Jun-2019": 3, "23-Jun-2019": 3, "22-Jun-2019": 1, "21-Jun-2019": 2, "20-Jun-2019": 1, "19-Jun-2019": 2, "18-Jun-2019": 1, "17-Jun-2019": 1, "16-Jun-2019": 2, "15-Jun-2019": 1, "11-Jun-2019": 1, "10-Jun-2019": 2, "9-Jun-2019": 2, "8-Jun-2019": 1, "4-Jun-2019": 1, "3-Jun-2019": 2, "2-Jun-2019": 2, "1-Jun-2019": 1, "31-May-2019": 1, "28-May-2019": 2, "27-May-2019": 1, "26-May-2019": 2, "25-May-2019": 1, "24-May-2019": 1, "23-May-2019": 1, "22-May-2019": 1, "21-May-2019": 2, "20-May-2019": 2, "17-May-2019": 2, "15-May-2019": 3, "14-May-2019": 1, "13-May-2019": 1, "12-May-2019": 1, "11-May-2019": 1, "9-May-2019": 2, "8-May-2019": 2, "7-May-2019": 2, "6-May-2019": 1, "4-May-2019": 1, "3-May-2019": 1, "1-May-2019": 2, "30-Apr-2019": 1, "26-Apr-2019": 1, "25-Apr-2019": 1, "24-Apr-2019": 1, "23-Apr-2019": 1, "21-Apr-2019": 2, "17-Apr-2019": 1, "15-Apr-2019": 1, "14-Apr-2019": 2, "9-Apr-2019": 1, "6-Apr-2019": 1, "5-Apr-2019": 1, "4-Apr-2019": 2, "2-Apr-2019": 1, "1-Apr-2019": 1, "31-Mar-2019": 1, "29-Mar-2019": 1, "28-Mar-2019": 1, "25-Mar-2019": 1, "23-Mar-2019": 4, "22-Mar-2019": 1, "20-Mar-2019": 2, "15-Mar-2019": 2, "14-Mar-2019": 2, "13-Mar-2019": 2, "11-Mar-2019": 1, "10-Mar-2019": 2, "8-Mar-2019": 1, "7-Mar-2019": 3, "6-Mar-2019": 3, "3-Mar-2019": 1, "2-Mar-2019": 2, "1-Mar-2019": 6, "28-Feb-2019": 2, "27-Feb-2019": 3, "26-Feb-2019": 1, "25-Feb-2019": 1, "24-Feb-2019": 3, "23-Feb-2019": 2, "22-Feb-2019": 1, "21-Feb-2019": 2, "20-Feb-2019": 2, "19-Feb-2019": 2, "18-Feb-2019": 2, "17-Feb-2019": 3, "16-Feb-2019": 2, "15-Feb-2019": 2, "14-Feb-2019": 4, "13-Feb-2019": 1, "12-Feb-2019": 1, "7-Feb-2019": 1, "6-Feb-2019": 2, "5-Feb-2019": 2, "4-Feb-2019": 1, "3-Feb-2019": 1, "2-Feb-2019": 1, "1-Feb-2019": 2, "31-Jan-2019": 2, "30-Jan-2019": 1, "29-Jan-2019": 1, "28-Jan-2019": 1, "27-Jan-2019": 1, "25-Jan-2019": 1, "24-Jan-2019": 4, "23-Jan-2019": 3, "22-Jan-2019": 2, "21-Jan-2019": 4, "20-Jan-2019": 3, "19-Jan-2019": 1, "18-Jan-2019": 3, "17-Jan-2019": 2, "16-Jan-2019": 3, "15-Jan-2019": 1, "14-Jan-2019": 3, "13-Jan-2019": 3, "12-Jan-2019": 4, "11-Jan-2019": 4, "10-Jan-2019": 4, "9-Jan-2019": 2, "8-Jan-2019": 3, "7-Jan-2019": 2, "6-Jan-2019": 1, "5-Jan-2019": 5, "4-Jan-2019": 4, "3-Jan-2019": 4, "2-Jan-2019": 5, "31-Dec-2018": 4, "30-Dec-2018": 6, "29-Dec-2018": 4, "28-Dec-2018": 5, "27-Dec-2018": 4, "24-Dec-2018": 2, "23-Dec-2018": 3, "22-Dec-2018": 6, "21-Dec-2018": 6, "20-Dec-2018": 2, "19-Dec-2018": 7, "18-Dec-2018": 4, "17-Dec-2018": 5, "16-Dec-2018": 2, "15-Dec-2018": 5, "14-Dec-2018": 1, "13-Dec-2018": 3, "12-Dec-2018": 3, "11-Dec-2018": 4, "10-Dec-2018": 4, "9-Dec-2018": 1, "8-Dec-2018": 1, "7-Dec-2018": 2, "6-Dec-2018": 4, "5-Dec-2018": 1, "4-Dec-2018": 3, "3-Dec-2018": 2, "2-Dec-2018": 1, "1-Dec-2018": 4, "30-Nov-2018": 2, "29-Nov-2018": 1, "28-Nov-2018": 5, "27-Nov-2018": 3, "26-Nov-2018": 2, "25-Nov-2018": 2, "24-Nov-2018": 2, "23-Nov-2018": 2, "22-Nov-2018": 5, "21-Nov-2018": 4, "20-Nov-2018": 3, "19-Nov-2018": 1, "18-Nov-2018": 3, "17-Nov-2018": 2, "16-Nov-2018": 2, "15-Nov-2018": 3, "14-Nov-2018": 5, "13-Nov-2018": 2, "12-Nov-2018": 2, "11-Nov-2018": 2, "10-Nov-2018": 5, "9-Nov-2018": 4, "8-Nov-2018": 2, "6-Nov-2018": 3, "5-Nov-2018": 1, "4-Nov-2018": 1, "3-Nov-2018": 1, "31-Oct-2018": 3, "30-Oct-2018": 4, "29-Oct-2018": 3, "28-Oct-2018": 1, "26-Oct-2018": 3, "25-Oct-2018": 2, "24-Oct-2018": 1, "23-Oct-2018": 4, "22-Oct-2018": 2, "21-Oct-2018": 4, "20-Oct-2018": 4, "19-Oct-2018": 3, "18-Oct-2018": 3, "17-Oct-2018": 2, "16-Oct-2018": 2, "15-Oct-2018": 2, "14-Oct-2018": 1, "13-Oct-2018": 2, "12-Oct-2018": 1, "11-Oct-2018": 1, "10-Oct-2018": 1, "9-Oct-2018": 3, "8-Oct-2018": 3, "7-Oct-2018": 2, "6-Oct-2018": 1, "5-Oct-2018": 4, "4-Oct-2018": 3, "3-Oct-2018": 1, "2-Oct-2018": 3, "1-Oct-2018": 1, "30-Sep-2018": 4, "29-Sep-2018": 2, "28-Sep-2018": 2, "27-Sep-2018": 1, "26-Sep-2018": 1, "25-Sep-2018": 2, "24-Sep-2018": 1, "22-Sep-2018": 2, "21-Sep-2018": 1, "20-Sep-2018": 2, "16-Sep-2018": 1, "14-Sep-2018": 2, "13-Sep-2018": 2, "12-Sep-2018": 2, "10-Sep-2018": 4, "9-Sep-2018": 2, "7-Sep-2018": 2, "6-Sep-2018": 3, "5-Sep-2018": 2, "4-Sep-2018": 3, "3-Sep-2018": 1, "31-Aug-2018": 1, "29-Aug-2018": 1, "26-Aug-2018": 1, "25-Aug-2018": 1, "23-Aug-2018": 1, "22-Aug-2018": 1, "20-Aug-2018": 2, "17-Aug-2018": 1, "16-Aug-2018": 1, "14-Aug-2018": 1, "13-Aug-2018": 1, "11-Aug-2018": 1, "10-Aug-2018": 2, "9-Aug-2018": 1, "8-Aug-2018": 1, "7-Aug-2018": 2, "6-Aug-2018": 1, "5-Aug-2018": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/renzi_words b/anno3/avrc/assignments/dataviz/dataset/all/renzi_words new file mode 100644 index 0000000..f033786 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/renzi_words @@ -0,0 +1,36747 @@ +ancora +maltempo +ancora +crolli +ora +priorità +aiutare +vive +aree +rischio +poi +governo +deve +ripristinare +subito +unita +missione +dissesto +sbloccare +cantieri +servono +commissari +chiacchiere +soldi +spendiamoli +italiashock +sole +ore +oggi +certifica +verità +semplice +italia +davvero +sblocca +cantieri +parte +italiashock +mondo +intero +pronto +investire +ecco +italia +viva +propone +sfida +posti +lavoro +soldi +fiducia +infrastrutture +cosa +aspettando +professore +italiano +latino +sostenitore +salvini +scrive +facebook +piazza +sardine +prenderà +neppure +binocolo +scrive +certe +cose +studenti +può +definirsi +educatore +me +naturalmente +no +ascolto +francesco +gregori +dice +festa +foglio +no +manca +passato +cambia +bello +cambiare” +messaggio +politicamente +bello +forte +festa +ottimismo +dobbiamo +dare +scossa +italia +iniziare +quei +miliardi +cantieri +già +stanziati +bloccati +burocrazia +italia +viva +nasce +dare +bello +shock +italia +spenderli +ripartire +economia +italiashock +stamani +stato +ospite +mattina +ve +persa +trovate +fate +sapere +andata +buona +giornata +😊 +incontri +ravvicinati +terzo +tipo +studi +rai +mattina +prototipo +originale +et +maestro +rambaldi +inviò +spielberg +anno +prima +film +passati +quasi +anni +emozione +vedere +bimbetto +film +cinema +lacrime +persa +ripropongo +intervista +porta +porta +ieri +sera +leggo +volentieri +commenti +😊 +buona +giornata +aspetto +stasera +rai +ospite +bruno +vespa +porta +porta +capogruppo +lega +camera +molinari +condannato +peculato +stato +assolto +ieri +cassazione +penso +debba +essere +garantisti +avversari +soprattutto +avversari +molinari +dovuto +subire +molti +attacchi +notizia +assoluzione +stessa +eco +indagine +condanna +trovo +dunque +altro +dovere +me +avversario +politico +riconoscere +pubblicamente +molinari +cittadino +innocente +media +dovrebbero +valorizzare +notizia +almeno +fatto +condanna +scontreremo +parlamento +riconoscere +correttezza +altrui +dovere +prima +forma +onestà +onestà +intellettuale +raccontato +corriere +sera +italia +deve +sbloccare +miliardi +euro +cantieri +può +fare +deve +fare +vera +priorità +paese +italia +viva +pronta +fare +propria +parte +anno +fa +dicevo +cose +parlamento +oggi +dobbiamo +recuperare +quell +errore +governo +ripristini +subito +unità +missione +dissesto +idrogeologico +sblocchi +cantieri +piano +italiashock +iniziativa +italia +viva +prevista +oggi +pistoia +annullata +ondata +maltempo +colpendo +ore +tutta +toscana +stringiamo +popolazioni +momento +colpite +amministratori +ore +impegnandosi +fronteggiare +conseguenze +maltempo +scuso +già +viaggio +organizzato +rivedremo +fin +prossimi +giorni +insieme +abbraccio +teresa +bellanova +solo +abbraccio +palco +catania +soprattutto +segno +partito +fuoco +amico +rapporti +umani +valore +insostituibile +italia +viva +sorrisi +abbracci +buona +politica +bellissima +atmosfera +catania +sblocchiamo +cantieri +sblocchiamo +italia +diamo +sicilia +infrastrutture +merita +italia +viva +cresce +giorno +dopo +giorno +diretta +catania +lancio +italia +viva +sicilia +italiaviva +pazzesco +oggi +catania +cinquemila +persone +prima +sicilia +italia +viva +altezza +entusiasmo +bello +poco +diretta +poco +diretta +catania +italia +viva +teresa +bellanova +ettore +rosato +ieri +collegamento +aria +tira +myrta +merlino +spiegare +shock +proposte +sbloccare +investimenti +rilanciare +economia +italia +ferma +solo +modo +farla +ripartire +sbloccare +cantieri +miliardi +opere +pubbliche +possono +essere +finalmente +liberate +progetto +italiashock +priorità +mano +farlo +conoscere +torino +proposte +shock +italia +viva +investimenti +rilanciare +economia +italiashock +buongiorno +langhe +vediamo +oggi +torino +diretta +presentare +shockitalia +proposta +rilanciare +investimenti +momenti +aprono +polemiche +ora +parte +venezia +sindaco +brugnaro +governatore +zaia +soprattutto +veneziani +tempo +fare +polemiche +uniti +rimediare +danni +paese +serio +unisce +divide +felice +progetto +matera +vada +avanti +creduto +quando +credeva +nessuno +bravissimo +commissario +salvo +nastasi +ancora +bravo +ovviamente +stefano +boeri +quando +governo +giorni +bandi +internazionali +direzione +musei +nazionali +italiani +sovranisti +accusarono +voler +consegnare +patrimonio +culturale +stranieri +altro +cultura +conosce +confini +né +frontiere +continuiamo +pensare +ruoli +tipo +vada +premiata +competenza +nazionalità +ecco +orgogliosi +chiara +parisi +scelta +unanimità +candidati +arrivati +mondo +intero +dirigere +centre +pompidou +metz +francia +legge +bilancio +evitato +aumento +iva +sufficiente +serve +piano +shock +economia +presenteremo +venerdì +diretta +facebook +torino +intervista +stampa +ogni +settimana +scambio +qualche +opinione +migliaia +amici +via +email +oggi +enews +arrivano +quota +grazie +pazienza +condivisione +me +onore +parte +popolo +curioso +attento +oggi +giorgetti +lega +lancia +idea +scrivere +insieme +regole +gioco +sembra +proposta +saggia +intelligente +italia +viva +bella +mattinata +oggi +linkiesta +it +milano +video +completo +facebook +http +bit +renzilinkiesta +invece +resoconto +intervista +buona +serata +oggi +stato +ospite +festival +linkiesta +it +ripropongo +intervista +buon +sabato +trent +anni +fa +cadeva +muro +berlino +anni +ricordo +emozioni +immagini +fine +storia +no +inizio +mondo +diverso +abbattere +muri +costruire +ponti” +giorgio +pira +chiacchierata +cappellini +repubblica +parlando +me +interessa +patto +politichese +aiutare +maggioranza +me +interessa +patto +concreto +aiutare +economia +italiana +leggo +volentieri +commenti +ragazzino +nato +cresciuto +italia +stato +rapito +mamma +voleva +combattere +estremisti +islamici +storia +terribile +grazie +lavoro +croce +rossa +tornato +casa +italia +spero +alvin +possa +crescere +diventando +presto +cittadino +italiano +maurizio +lupi +ministro +infrastrutture +governo +giornali +pubblicarono +intercettazioni +molti +gridarono +scandalo +lupi +totalmente +estraneo +vicenda +decise +altro +dimettersi +stesso +assicurare +tranquillità +famiglia +venne +gettata +tritacarne +mediatico +dissi +pubblicamente +fiero +aver +lavorato +lupi +esprimevo +vicinanza +tempo +reso +giustizia +oggi +scopriamo +indagine +lupi +venne +intercettato +indagine +aperta +allora +procura +firenze +finisce +archiviazione +troverete +notizia +evidenza +gazzettini +giustizialismo +italiano +talk +altro +fabiola +gianotti +stata +rieletta +guida +cern +ginevra +fino +notizia +bellissima +donna +rende +orgogliosi +essere +italiani +scienziata +modello +giovani +orgogliosi +te +cara +fabiola +viva +italia +ricerca +qualità +giorni +scorsi +accusato +essere +sfasciacarrozze +chiedevamo +cancellare +provvedimenti +sbagliati +aumento +tasse +auto +aziendali +adesso +misura +sbagliata +stata +cancellata +potremmo +toglierci +tanti +sassolini +scarpe +chiedere +fine +fatto +settimana +fa +insultavano +italia +viva +nata +risolvere +problemi +fare +polemiche +adesso +possiamo +dire +tassa +auto +aziendali +avanti +così +buona +giornata +tenere +aperta +ilva +firmato +dodici +decreti +raccolto +insulti +ex +compagni +partito +accusato +essere +omicida +bambini +taranto +perso +voti +ricevuto +minacce +ogni +genere +fatto +rifarei +ilva +chiude +chiude +intera +industria +mezzogiorno +dunque +incredibile +sentirmi +dire +voglio +altro +chiudere +ilva +tacevano +quando +venivo +insultato +contrario +vaccinato +rispetto +insulti +rimane +disgusto +viltà +certe +polemiche +cosa +accadendo +ieri +proprietà +ilva +indiani +mittal +annunciato +recesso +vogliono +andare +sostengo +previsto +tempo +usino +altro +terribili +notizie +alessandria +condivido +dolore +famiglie +vittime +grande +famiglia +vigili +fuoco +intervista +giornale +illustro +posizione +italia +viva +tasse +ilva +buona +giornata +salvini +attacca +ilva +ridicolo +norma +usata +pretesto +mittal +stata +votata +governo +grilloleghista +tempo +polemiche +salvini +vuole +cercare +colpevole +selfie +intanto +lavoriamo +soluzione +ilva +deve +chiudere +decisione +mittal +disimpegnarsi +taranto +inaccettabile +governo +deve +subito +togliere +proprietà +ogni +alibi +eliminando +autogol +immunità +voluto +vecchio +governo +messo +guardia +ministro +patuanelli +ore +fa +polemica +meschina +mediocre +scudo +penale +stato +altro +cancellato +esecutivo +lega +stelle +vogliamo +soluzioni +capri +espiatori +indipendentemente +alibi +taranto +bisogno +futuro +futuro +passa +acciaio +firmato +numerosi +decreti +tenere +aperta +ilva +preso +assassino +alcuni +ex +compagni +partito +subito +contestazioni +pesantissime +rifarei +oggi +piano +risanamento +taranto +può +fare +meno +ilva +immunità +alibi +tolto +tavolo +subito +governo +proprietà +devono +mantenere +impegni +cittadini +taranto +fatto +lavoratori +ilva +fatto +adesso +tocca +governo +mittal +scherza +lavoro +persone +ricapitolando +ore +fiume +polemiche +me +poi +improvvisamente +retromarcia +corso +nuove +tasse +plastica +auto +aziendali +bene +apprezzo +buon +senso +ministro +gualtieri +italia +viva +conta +solo +risultato +notax +unico +modo +gestire +immigrazione +investire +africa +farlo +europei +lasciarlo +fare +cinesi +aiutarli +casa +direbbe +slogan +eni +coldiretti +bonifiche +ferraresi +provando +serio +bravi +quel +numero +tatuato +braccio +porto +grande +onore +vergogna +fatto +ascoltiamo +insieme +senatrice +liliana +segre +rispetto +media +pieni +retroscena +verità +molto +semplice +italia +viva +nessuno +solo +aumento +tasse +ieri +aumento +iva +cellulari +gasolio +oggi +aumento +auto +aziendali +imprese +polemiche +proposte +concrete +evitare +microbalzelli +giornali +criticano +parlamento +daranno +ragione +voteremo +insieme +tasse +vedrete +adesso +buona +domenica +mattinata +novembre +firenze +splendore +buona +domenica +tutte +conosco +gianluca +rocchi +quando +giovanissimi +iniziammo +carriera +arbitrale +gloriosa +sede +via +faenza +firenze +fin +primi +fischi +settore +giovanile +sempre +dimostrato +essere +altro +grandissimo +arbitro +oggi +bloccando +partita +olimpico +cori +città +napoli +dimostrato +essere +grandissima +persona +tantissime +dichiarazioni +commenta +intervista +messaggero +fa +piacere +critica +idee +altrui +svolge +servizio +prezioso +grazie +ribadisco +modo +semplice +fatto +governo +emergenza +può +aiutare +paese +molte +cose +cominciare +riduzione +interessi +debito +parliamo +decine +altro +miliardi +spiccioli +merito +legge +bilancio +felici +risultati +ottenuti +fino +oggi +basta +continueremo +batterci +parlamento +migliorare +ancora +provvedimenti +auto +aziendali +microbalzelli +feriscono +competitività +imprese +proposte +slogan +coperture +altro +giusto +combattere +evasione +fiscale +combattuta +invasione +fiscale +tasse +italia +troppe +facciamole +scendere +intervista +messaggero +bit +renzimessaggero +fatto +intervista +messaggero +spiegare +cancelleremo +tassa +auto +aziendali +stangata +inaccettabile +ceto +medio +oggi +giornale +attacca +così +vita +politica +sempre +abbassato +tasse +provincia +comune +premier +stato +80€ +imu +prima +casa +irap +costo +lavoro +altro +industria +canone +rai +dunque +club +tassatori +casa +legge +bilancio +italia +viva +impedito +aumento +iva +tasse +cellulari +gasolio +casa +adesso +lavoreremo +parlamento +eliminare +tasse +auto +aziendali +assurdità +sempre +proposto +quando +premier +sempre +respinto +plastica +zucchero +chiedo +darci +mano +seguire +battaglia +parlamento +chiedo +giornale +avere +onestà +intellettuale +riconoscere +sempre +abbassato +tasse +sottoscritto +prima +dicono +leader +partitino +poi +attaccano +chissà +impressione +paura +crescendo +italia +viva +riparleremo +intanto +abbassiamo +tasse +insieme +presidente +trump +dice +radio +italia +meglio +fuori +unione +europea +orgoglioso +identità +italiana +cuore +fiorentino +radici +altrettanto +fiero +essere +cittadino +europeo +vuole +italia +fuori +europa +vuole +bene +paese +anni +fa +giorno +santi +lasciava +alda +merini +versi +dolore +bellezza +continuano +emozionarci +ancora +oggi +amore +mistica +vita +poesie +illuminano +quotidiano +legge +bilancio +approdare +finalmente +parlamento +settimane +stati +fatti +passi +avanti +evitare +aumento +iva +tasse +cellulari +gasolio +case +molto +bene +italia +viva +stata +decisiva +evitare +aumenti +finisce +zucchero +plastica +auto +aziendali +lavoreremo +duro +prossimi +altro +giorni +numeri +bilancio +parlamento +evitare +tasse +salgano +parlando +qualche +centinaio +milioni +nulla +rispetto +miliardi +iva +miliardi +bruciati +triennio +demagogia +quota100 +bloccato +aumento +iva +tasse +cellulari +adesso +lavoreremo +zucchero +auto +aziendali +sempre +bello +incontrare +donne +uomini +estero +dimostrano +ogni +giorno +grande +bellezza +essere +italiani +tanti +italiani +scrivendo +futuro +interessanti +mauro +porcini +classe +lombardo +qualche +anno +capo +design +pepsi +rivoluzionando +concetto +stesso +altro +design +stato +trovarlo +lab +dì +soho +nyc +orgoglioso +mauro +eccellenza +cresciuta +straordinario +vivaio +politecnico +milano +prosegue +farsa +brexit +oggi +ipotizza +nuovo +voto +politico +dicembre +nessuno +sembra +meravigliarsi +nulla +caos +mai +visto +immagino +copertine +tabloid +inglesi +pasticcio +fatto +italiani +giorni +oceanviking +ferma +mezzo +mare +persone +bordo +soffrono +vanno +fatte +sbarcare +subito +subito +gestire +immigrazione +tema +spigoloso +bisogna +lavorare +grande +progetto +africa +bisogna +concretizzare +principio +aiutiamoli +casa +loro” +cominciare +cooperazione +vaccini +lotta +corruzione +altro +quando +cento +persone +mare +legge +naturale +impone +farle +sbarcare +immediatamente +risolve +immigrazione +spot +pelle +ultimi +nessuno +mette +metto +fate +scendere +persone +lotta +salvinismo +fa +battaglia +culturale +copiando +spot +leghisti +central +park +tappa +obbligata +smaltire +jet +lag +sgambata +grande +abbraccio +tanti +italiani +raggiungendo +nyc +maratona +domenica +prossima +mafia +capitale +mai +esistita +detto +corte +cassazione +importanti +indagini +ultimi +anni +finisce +condanna +colpevoli +reati +meno +gravi +fatto +parlare +mondo +essere +garantisti +significa +innanzitutto +scegliere +fermarsi +superficie +approfondire +studiare +altro +riflettere +sentenze +cassazione +social +talk +show +essere +garantisti +oggi +difficile +ieri +grande +battaglia +culturale +vale +pena +combattere +fino +fondo +riesco +provare +pietà +morte +califfo +isis +baghdadi +feroce +assassino +ucciso +saltare +aria +sé +figli +no +posso +perdonarglielo +pietà +specie +davanti +morte +pagare +propri +figli +conseguenze +propria +follia +continua +rimbombarmi +testa +scelta +imperdonabile +volete +sapere +futuro +ascoltate +roberto +cingolani +menti +brillanti +paese +quest +anno +estero +potuto +partecipare +leopolda +contributo +qualche +minuto +ascoltare +pensare +simbolo +gabbiano +simbolo +spunta +tante +cose +fatte +simbolo +vuole +alzarsi +volo +sopra +polemiche +giorni +italiaviva +vite +parallele +sopravvivenza +rispetto +propri +valori +così +vive +mare +così +pescatori +mazara +vallo +vita +difficoltà +lavoro +difficile +sacrificio +altro +coraggio +umanità +persone +pronte +rinunciare +giorni +duro +lavoro +fonte +sopravvivenza +garantire +sopravvivenza +altri +essere +umani +storia +bellissima +raccontata +vogue +italia +lezione +giro +piazze +sventola +rosario +scordandosi +primi +apostoli +pescatori +uomini +umanità +coraggio +uomini +onore +vedette +difendono +custodiscono +dentro +valori +dovremmo +andare +fieri +grazie +grazie +testate +paura +sfidare +pensiero +dominante +dedicano +copertine +coraggiose +roma +ragazzo +nemmeno +anni +viene +ucciso +modo +atroce +strada +tragedia +qualunque +causa +barbaro +omicidio +commentatori +superficiali +politici +odio +influencer +paura +dico +vergogna +fare +sciacallaggio +tragedia +povero +luca +persino +cadavere +ragazzo +stato +utilizzato +altro +propaganda +parte +avere +voto +grazie +forze +ordine +straordinarie +sempre +grazie +capo +polizia +parole +equilibrate +fratello +maggiore +grazie +madre +forza +denunciare +figlio +preferisce +vederlo +carcere +piuttosto +pusher +droga +continua +essere +causa +morte +ancora +coraggio +mamma +dà +ragione +sperare +risposta +novanta +secondi +dicono +matteo +cambiato +idea +coerente +ferma +slogan +vuole +usare +testa +italiaviva +attacca +liliana +segre +attaccando +donna +sopravvissuta +olocausto +simbolo +senatrice +vita +no +attacca +liliana +segre +attaccando +stesso +liliana +segre +donna +minuta +solo +imparare +italia +viva +ministro +teresa +bellanova +sant +egidio +giorno +worldpastaday +assicurando +200mila +piatti +pasta +poveri +italia +viva +deputata +maria +chiara +gadda +scritto +altro +legge +spreco +alimentare +gira +italia +spiegarla +raccontarla +italia +viva +soprattutto +casa +volontari +mondo +associazionismo +possano +tornare +credere +politica +terzo +settore +davvero +colonna +italia +italia +solida +solidale +italia +viva +esattamente +anni +fa +firenze +chiuse +traffico +piazza +duomo +scelta +molto +contestata +ricordo +polemiche +insulti +minacce +quel +ottobre +magicamente +città +ritrovò +altro +meravigliata +gesto +banale +pedonalizzazione +restituiva +firenze +capacità +guardare +alto +ammirare +bellezza +godere +quotidianità +anni +turismo +esploso +domeniche +musei +poi +giustamente +copiate +livello +nazionale +diventate +must +sistema +tranviario +ridotto +traffico +pedonalizzazione +piazza +duomo +stata +simbolo +inizio +distanza +anni +vorrei +ringraziare +coloro +allora +forza +crederci +auguri +amministratori +smettere +mai +provare +fare +progetti +lungo +termine +visionari +difficili +dico +fatevi +camminata +piazza +duomo +firenze +ritmo +passi +accompagnerà +scoprirete +immersi +bellezza +viva +fiorenza +viva +italia +paolo +mieli +storico +giornalista +grande +prestigio +secondi +dice +semplice +verità +altri +sempre +negato +grazie +onestà +intellettuale +direttore +ora +occupiamoci +futuro +italiaviva +corriere +sera +oggi +parlo +italia +viva +cresce +governo +lotta +evasione +manette +serve +patente +punti +fiscale +pagare +pagare +meno +date +occhio +durante +confronto +televisivo +salvini +detto +salvini +assenteista +detto +passa +tutte +giornate +sagre +feste +popolari +partecipa +mai +riunioni +istituzionali +bruxelles +roma +può +guidare +paese +massimo +pro +loco +oggi +camera +lega +ufficialmente +detto +qualche +pro +loco +rimasta +male +capisco +scuso +accostare +gloriosa +attività +pro +loco +salvini +offensivo +pro +loco +oggi +autorevole +esponente +opposizione +già +ministro +repubblica +anni +impegnato +istituzioni +lanciato +agorà +proposta +molto +interessante +detto +belgio +stato +manda +casa +dichiarazione +redditi +semmai +correggi +possiamo +farlo +” +bellissima +idea +altro +complimenti +peccato +italia +possibilità +già +grazie +scelta +governo +riguarda +milioni +italiani +antipatici +simpaticissimo +mojito +sagra +politica +serve +competenza +bisogna +studiare +qualcuno +tv +dovrebbe +ricordarglielo +ogni +tanto +nuovo +campus +scolastico +amatrice +intitolato +sergio +marchionne +rilanciare +impegno +raccogliere +fondi +ricostruirlo +quando +incontrammo +maranello +angela +merkel +altro +anno +scomparsa +continuo +dirlo +stato +gigante +industria +italiana +ancora +oggi +odio +ingiustamente +colpito +immagine +rende +onore +fatto +creare +posti +lavoro +fortuna +pensano +fatti +concreti +fare +giustizia +fake +news +pensiero +affettuoso +grato +memoria +bravo +justin +complimenti +buon +lavoro +amico +congratulations +good +job +my +friend +félicitations +et +bon +travail +mon +ami +maltempo +danni +paese +piccola +proposta +semplice +bipartisan +governo +rimetta +piedi +unita +missione +dissesto +idrogeologico +genova +bisagno +lavori +altro +sbloccati +così +vanno +avanti +senza +alcuna +divisione +amministrazioni +colore +politico +diverso +dobbiamo +usare +stesso +metodo +paese +temi +vera +sfida +lavorare +insieme +subito +consiglio +ministri +approvato +legge +bilancio +adesso +parlamento +bene +vedo +bicchiere +mezzo +pieno +grazie +italia +viva +bloccato +aumento +iva +miliardi +deciso +governo +precedente +grandissimo +risultato +adesso +discussione +sposta +parlamento +potrà +migliorare +ancora +specie +altro +microbalzelli +rimasti +zucchero +casa +proveremo +scorso +anno +parlamento +clamorosamente +impedito +migliorare +legge +bilancio +quest +anno +fortuna +torneremo +rispettare +regolamenti +costituzione +adesso +guardiamo +bicchiere +mezzo +pieno +soldi +famiglie +soldi +sanità +vogliamo +rimettere +moto +italia +adesso +sola +strada +bloccato +iva +adesso +sblocchiamo +cantieri +fermi +priorità +buona +giornata +sola +richiesta +salvini +senatore +denuncia +savoini +gliel +chiesto +parlamento +gliel +chiesto +tv +glielo +chiedo +oggi +denuncia +report +vuole +iscriversi +italia +viva +sito +carta +valori +modalità +partecipare +sostenere +grazie +avventura +difficile +fantastica +finisce +fazio +giornata +impegnativa +bellissima +popolo +leopolda +regalato +emozioni +intense +pomeriggio +scarica +adrenalina +prima +guida +figlio +neo +foglio +altro +rosa +diciottenne +strade +firenze +invecchia +eccome +invecchia +buona +notte +grazie +affetto +giorni +salvini +accusa +essere +ladro +democrazia +pallone +gonfiato +cose +me +dette +tv +solo +codardi +così +pensavo +don +rodrigo +invece +don +abbondio +italiaviva +aspetto +stasera +intorno +ore +rai +tempo +fa +ospite +fabio +fazio +treno +andare +fabio +fazio +incontro +tanta +gente +stata +stazione +leopolda +bellissimo +riconoscersi +popolo +spiace +ancora +dovuto +accontentarsi +maxi +schermo +italiaviva +leopolda10 +impressionante +grazie +tutte +strada +apre +adesso +bellissimo +percorrerla +insieme +italiaviva +intervento +conclusivo +leopolda10 +intervento +teresa +bellanova +leopolda10 +aspetto +diretta +intervento +teresa +bellanova +pagina +facebook +youtube +italia +viva +diretta +mattina +leopolda10 +stamani +popolo +bellissimo +coda +leopolda +avverto +responsabilità +momento +mando +abbraccio +ospiti +volontari +curiosi +italia +viva +casa +bellissima +grazie +tardi +oggi +installato +maxi +schermi +ecco +simbolo +italia +viva +scelto +avventura +meravigliosa +divertiremo +valorizzeremo +italiaviva +ecco +nuovo +simbolo +italia +viva +emozione +purissima +‪le +parole +claudia +giovane +donna +combattendo +sla +arrivano +fondo +cuore +emozione +bellezza +grazie +claudia +popolo +leopolda +te +‬ +‪ +leopolda10‬ +diretta +leopolda10 +interventi +circa +vediamo +pagina +lancio +italiaviva +niente +vuole +andare +prima +pensione +spendere +miliardi +anticipare +anno +pensione +centomila +persone +semplicemente +ingiusto +80€ +vanno +milioni +persone +costano +miliardi +mettiamo +soldi +famiglie +stipendi +quota100 +tavoli +leopolda10 +spettacolo +gente +protagonista +attiva +partecipe +cittadini +numerini +italiaviva +‪da +stasera +potrà +iscrivere +italiaviva +solo +online +nessun +signore +tessere +nuovo +partito +partito +idee +correnti‬ +‪ +leopolda10 +‬ +vive +pregiudizi +ultimatum +propone +idee +progetti +palco +leopolda10 +ministro +elena +bonetti +parlare +sostenere +davvero +famiglie +familyact +beppe +grillo +dice +bisogna +togliere +voto +anziani +dico +bisogna +togliere +fiasco +beppe +grillo +leopolda10 +diretta +leopolda10 +prime +persone +cancelli +arrivate +stamani +già +adesso +fiume +gente +arrivando +leopolda10 +sottovalutate +popolo +italiaviva +bellissima +stata +serata +incredibile +lacrime +nasrim +resteranno +sempre +tatuate +cuore +leopolda +casa +emozioni +casa +futuro +buona +notte +domani +fatto +stesso +partito +significa +valori +grazie +dario +nardella +essere +venuto +leopolda10 +cittadini +mondo +possiamo +chiudere +occhi +davanti +accadendo +fratelli +sorelle +kurdistan +ragazze +combattuto +sconfiggere +altroestremismo +islamico +isis +ragazze +salvato +occidente +stesso +occidente +fronte +ciò +accade +kurdistan +oggi +perdendo +onore +dignità +basta +piccola +tregua +ragazze +curde +aggressione +turca +paese +nato +dimenticando +valori +donne +uomini +kurdistan +diretta +leopolda10 +davanti +esplosione +entusiasmo +commosso +senza +parole +ore +prima +inizio +leopolda10 +scoppia +gente +bellissimo +cerchiamo +entrare +italiaviva +inaugurazione +mostra +ricordo +tiberio +barchielli +leopolda10 +ricordiamo +tiberio +barchielli +mostra +foto +ricordano +stato +importante +soprattutto +dicono +sempre +viaggio +sempre +enews +straordinaria +oggi +attesa +leopolda10 +pronti +leopolda10 +costruiamo +casa +futuro +italia2029 +vediamo +stasera +leopolda +casa +anni +lanciato +idee +rivoluzionarie +fatturazione +elettronica +fisco +telematico +nata +nuova +classe +dirigente +femminile +vivaio +talenti +laboratorio +idee +domani +aspettiamo +casa +decima +volta +www +leopoldastazione +it +leopolda10 +accordo +brexit +segna +momento +storico +vita +europea +cittadini +europei +molto +triste +britannici +vero +disastro +quando +referendum +vincono +bugie +rimette +sempre +povera +gente +ultime +ore +prima +leopolda10 +vuole +iscriversi +dare +idee +fare +donazione +vada +www +leopoldastazione +it +sveleremo +simbolo +tante +idee +italia +domani +italiaviva +pronti +decima +edizione +leopolda +parleremo +famiglia +clima +futuro +racconteremo +immaginiamo +prossimi +anni +italia +ventinove +italia +ventinuovi +italiaviva +www +leopoldastazione +it +giovane +cantava +radio +quando +intervistata +qualche +anno +fa +nonna +maria +oggi +compie +novantanove +anni +ieri +sorbita +confronto +tv +lucidissima +spettacolo +auguri +nonna +buoncompleanno +preparativi +leopolda10 +edizione +memorabile +cresce +casa +italiaviva +abbraccio +matteo +salvini +augurio +rimettersi +forma +presto +tornare +litigare +subito +naturalmente +confronto +ieri +salvini +perso +milioni +persone +assistito +confronto +me +salvini +ieri +sera +rai1 +felice +commenti +soprattutto +notato +rimasti +numeri +dati +fatti +salvini +invece +disco +rotto +solite +cose +mai +risposto +domande +quota100 +milioni +euro +fatti +sparire +altro +lega +rispondere +forza +sappiamo +tuttavia +felice +solo +commenti +risultato +fatto +stesso +finalmente +stato +confronto +esponenti +politici +confronto +serio +ben +moderato +segno +molto +importante +spero +finito +tempo +monologhi +talk +show +spero +finito +tempo +leader +scappano +dibattiti +accaduto +ultime +politiche +fame +politica +confronto +serietà +dibattito +ieri +dimostra +italia +viva +parte +entusiasmo +competenza +cominciare +prossima +leopolda +domanda +precisa +salvini +nemmeno +ieri +risposto +famosi +milioni +spesi +sì +no +difficile +basterebbe +semplice +risposta +salvini +usato +quei +soldi +alimentare +propaganda +falsa +social +deve +rispondere +fuggire +grazie +visto +confronto +fatto +idea +precisa +felice +affetto +italiaviva +progetto +paese +adesso +pronti +leopolda10 +buona +notte +renzisalvini +riconoscete +signore +foto +cartello +no +euro +stesso +trasmissione +porta +porta +dire +essere +uomo +parola +no +scherziamo +salvini +cambiato +idea +terribile +notizia +lampedusa +madre +morta +abbracciata +bambino +lascia +senza +parole +basta +demagogia +restiamo +umani +molto +soddisfatto +match +salvini +novanta +minuti +discussione +numeri +fatti +proposte +guardate +dite +pensate +renzisalvini +quota +35mila +voti +simbolo +italiaviva +grazie +dando +mano +economica +leopolda10 +piccolo +contributo +qualche +euro +stasera +confronto +tv +matteo +salvini +giorni +ex +capitano +attacca +quota100 +perfetto +luigi +marattin +spiega +misura +semplicemente +iniqua +accontenta +urli +slogan +video +lorenzo +guarnieri +neanche +anni +quando +stato +ucciso +incidente +stradale +tragedia +tenacia +famiglia +nata +battaglia +condotto +approvazione +altro +legge +omicidio +stradale +legge +sacrosanta +grande +onore +firmare +palazzo +chigi +leggete +intervista +padre +lorenzo +stefano +oggi +qn +http +bit +2nlmk85 +vale +pena +fatto +iva +tocca +sembra +finalmente +consenso +unanime +gran +passo +avanti +davvero +tutt +altro +scontato +fino +qualche +giorno +fa +alcuni +articoli +qualche +giorno +fa +sole +ore +corriere +indicato +priorità +italia +viva +aggiunta +ciò +già +spiegato +molto +semplicemente +altro +evitiamo +fare +mini +aumenti +tasse +certa +cultura +troppo +spendacciona +vorrebbe +fare +prima +aumentare +tasse +gasolio +zucchero +tagliamo +costi +pensate +oggi +spese +beni +servizi +miliardi +rispetto +quando +governo +assurdo +aumento +così +rilevante +no +dovrebbe +altro +ciò +accadendo +siria +curdi +orrore +puro +quel +popolo +stato +prima +linea +fermare +estremismo +isis +fino +qualche +mese +fa +adesso +occidente +chiude +occhi +davanti +scelta +sciagurata +turchia +assurdo +regime +erdogan +fermato +blocco +armi +minimo +sindacale +europa +deve +subito +altro +imporre +sanzioni +economiche +visto +foto +ricevendo +kobane +rimasto +senza +parole +popolo +curdo +forte +orgoglioso +bisogno +parole +bisogno +reazione +immediata +comunità +internazionale +enews +ricevuto +kobane +foto +corpi +martoriati +lasciano +senza +parole +tutta +vicenda +curda +incredibile +scandalo +italia +deve +bloccare +ogni +vendita +armi +turchia +europa +deve +imporre +sanzioni +turchia +già +prossimo +consiglio +europeo +visto +vedendo +tace +complice +sabato +prossimo +punto +simbolo +italia +viva +ufficialmente +presentato +leopolda10 +grande +momento +festa +già +simbolo +cosa +diversa +altri +altro +partiti +decidiamo +logo +insieme +proposte +selezionato +tante +arrivate +giorni +votare +basta +andare +sito +www +italiaviva +it +scegliere +preferite +piace +idea +nuova +casa +luogo +ricco +partecipazione +cominciare +simbolo +rappresenterà +scheda +elettorale +attesa +votare +italia +viva +settimana +votare +simbolo +temo +poterlo +utilizzare +questione +diritti +inchino +genio +makkox +logo +fenomenale +scoprire +vero +simbolo +italiaviva +aspetto +oggi +sorpresa +chiamiamo +cose +nome +erdogan +ricatto +europa +dovere +morale +dire +no +ricatti +parte +libertà +parte +curdi +attentato +sinagoga +tedesca +giorno +yom +kippur +attentato +oggi +ebreo +ebrei +nessuno +abbassi +guardia +estremismo +rigurgiti +neonazisti +storia +dolore +atroce +storia +campione +innanzitutto +grandissimo +uomo +leggere +assolutamente +fratelli +curdi +combattuto +estremisti +isis +distruggendo +stato +islamico +lasciarli +soli +adesso +assurdo +profondamente +ingiusto +comunità +internazionale +può +fare +finta +niente +giornali +oggi +riportano +alcune +frasi +attribuite +presidente +consiglio +smentite +soprattutto +corriere +stampa +dicono +conte +consideri +prepotente” +pari +peggio +salvini +capisco +esperienza +scorso +governo +stata +logorante +causato +molti +danni +cominciare +italiani +credo +altro +debba +dire +parola +chiarezza +tranquillità +intendo +fare +polemica +premier +me +continuo +scontro +deve +finire +primo +passo +evitando +rispondere +accuse +prepotenza” +basta +retroscena +polemiche +merito +tocca +premier +firmare +legge +bilancio +me +unica +cosa +conta +altro +dicono +italia +viva +piccolo +partito +conta +niente +però +parlano +costantemente +strano +vero +solo +proposte +concrete +significa +fare +politica +paragona +papeete +leopolda +rende +conto +bello +avere +luogo +leopolda +prova +insieme +dare +idee +cambiare +paese +continuano +attaccare +me +rendono +conto +sempre +guerra +matteo +sbagliato +obama +trump +servizi +segreti +leopolda +papeete +tasse +legge +bilancio +italia +viva +idee +chiacchierata +lucia +annunziata +rai +pomeriggio +aspetto +diretta +rai +mezz +ora +ospite +lucia +annunziata +parliamo +mojiti +cubiste +parliamo +tasse +asili +nido +edilizia +scolastica +posti +lavoro +discutere +cose +significa +litigare +significa +fare +politica +populismo +altro +costringe +parlare +caratteri +simpatie +antipatie +rapporti +personali +politica +costringe +parlare +idee +programmi +intervista +oggi +stampa +italia +viva +studia +carte +lancia +proposte +trova +coperture +propone +idee +insomma +prima +novità +quando +italia +viva +discute +tasse +asili +nido +mojito +alleanze +governo +anzi +aumento +tasse +spiegato +bene +molti +cittadini +tutta +italia +altro +avvicinando +entusiasmo +persino +sorprendente +leopolda +dimostrerà +volta +cresciamo +parlamento +oggi +unita +senatrici +brave +competenti +annamaria +parente +aiutato +molto +dopo +sociale +jobsact +ruolo +donne +società +oggi +aderito +gruppo +italia +viva +arricchisce +casa +comune +intelligenza +preparazione +benvenuta +tanti +dando +mano +territori +leggo +dichiarazioni +polemiche +vedo +commenti +senso +unico +talk +show +rispetto +tutte +limito +considerazione +stamani +fatto +fenomeno +obiettivo +giocare +fare +simpatico +dare +mano +paese +pagano +scritto +articolo +corriere +numeri +dati +proposte +altro +vuole +rispondermi +può +farlo +base +numeri +crede +idee +populista +gioca +apparire +simpatico +politico +prova +risolvere +problemi +scelto +politica +populismo +bit +troppaspesa +articolo +pazienza +leggerlo +buona +serata +terribili +notizie +trieste +condoglianze +famiglie +agenti +grande +famiglia +polizia +qualche +settimana +viene +rilanciata +social +nuova +fakenews +me +stavolta +varcano +confini +nazionali +vengo +accusato +aver +partecipato +complotto +internazionale +ordito +obama +trump +scoperto +spese +deve +mai +sottovalutare +portata +bufale +diverse +testate +rilanciato +altro +fakenews +deciso +procedere +vie +legali +tempo +buonismo +finito +prima +persona +agisco +giudizio +signor +george +papadopoulos +definisce +ex +collaboratore +presidente +trump” +stamattina +rilasciato +dichiarazioni +false +gravemente +lesive +reputazione +giornale +verità +sbaglia +paga +diffama +pure +vediamo +tribunale +intervista +tg2 +ieri +sera +piaciuta +leggo +volentieri +commenti +😊 +basta +demagogia +spread +spesa +intermedia +servono +rilanciare +investimenti +abbassare +tasse +vogliamo +fare +serio +lettera +corriere +dati +numeri +solito +gioco +carte +aspetto +stasera +rai +tg2 +dazi +americani +prodotti +alimentari +male +gente +agricoltori +sovranismo +protezionismo +sciagura +italia +modo +migliore +difendere +altro +prodotti +posti +lavoro +vivere +società +aperta +fatta +opportunità +muri +dazi +scelte +trump +male +italia +scelte +sovranisti +casa +rendono +debole +economia +paese +italia +guadagnare +globalizzazione +profeti +sventura +sostengono +contrario +esportiamo +bellezza +qualità +professa +contrario +chiede +protezionismo +danneggia +futuro +vediamo +stasera +ottoemezzo +ottobre +festa +nonni +nonne +maria +anna +maria +rispettivamente +anni +bellissime +nonni +achille +adone +invece +lasciato +troppo +presto +penso +dono +meraviglioso +nonni +importanti +vita +famiglie +oggi +buona +festa +oggi +genova +compiuto +altro +passo +avanti +costruzione +bellissimo +ponte +renzo +piano +rapidità +lavorando +giustamente +considerata +occasione +riscatto +altro +città +modello +pax +burocratica” +valorizzare +ovunque +parlato +qualche +giorno +fa +sole +ore +avanzando +alcune +proposte +eccole +italia +aperta +vince +italia +chiusa +muore +dicono +futurologi +dice +storia +italia +diventata +grande +quando +colto +occasioni +società +capace +aprirsi +contaminarsi +impero +altro +romano +rinascimento +italia +terra +emigrazione +immigrazione +sempre +piccolo +paese +milioni +persone +oggi +può +essere +luce +mondo +propria +cultura +proprio +export +propria +bellezza +apertura +lasciamo +muri +scimmiotta +orban +rendendosi +conto +fare +danno +esistenziale +paese +fino +poco +fa +paesi +guida +europa +regno +unito +francia +germania +italia +regno +unito +fuori +altro +italia +viva +differenza +linguaggio +stile +liturgie +interne +entusiasmo +felici +essere +squadra +passiamo +tempo +cercare +attaccare +compagno +partito +altro +viviamo +correnti +fuoco +amico +creato +partito +diarchia +uomo +donna +regola +costitutiva +coordinatori +provinciali +spesso +millennials +quando +arriva +ventenne +domanda +verrà +fatta +” +cosa +pensi +idee +cosa +proponi” +altra +cosa +rispetto +pd +avversario +capitan +fracassa +salvini +pd +fatto +governo +principio +altro +intervista +tg3 +no +aumento +iva +italia +viva +fatto +governo +mandare +casa +salvini +aumentare +iva +adesso +possiamo +aumentare +iva +punto +fatto +polemica +ministeri +sottosegretari +scelte +passato +aumentare +iva +schiaffo +consumatori +specie +poveri +porterebbe +recessione +ecco +italia +viva +dice +no +aumento +iva +squadra +fiorentina +soprattutto +giocatore +franck +ribéry +occhio +castrovilli +già +giovanissimo +migliori +centrocampisti +italiani +😀 +milanfiorentina +leopolda +aspetto +record +numeri +certo +soprattutto +aspetto +record +idee +italiaviva +italia2029 +davvero +governo +deciderà +incoraggiare +moneta +digitale +attraverso +sconti +fiscali +dovremo +fare +cosa +cambiare +norma +abbassare +commissioni +carte +credito +debito +vanno +dimezzate +rispetto +attuali +stabilendo +legge +tetto +massimo +senza +alcun +costo +minimo +transazione +mondiali +atletica +qatar +malore +colpisce +jonathan +busby +aruba +pochi +metri +traguardo +atleta +guinea +biassau +accorge +accompagna +avversario +fino +traguardo +aiutandolo +altro +sport +sport +bello +maiuscola +competitivo +certo +normale +rispetto +avversari +umanità +optional +video +bellissimo +spot +atletica +buon +sabato +sera +dicono +cosa +propone +italia +viva +quali +contenuti +primo +assaggio +posizione +legge +bilancio +tratto +sole +ore +stamani +lunedì +esce +cosina +foglio +soprattutto +poco +arriva +leopolda +buon +sabato +immagini +ragazzi +mondo +colorano +verde +pianeta +allargano +cuore +ora +tocca +politica +fare +serio +leopolda +presenteremo +progetto +concreto +fattibile +può +solo +applaudire +ragazzi +giorno +dopo +tornare +finta +nulla +sempre +detto +rispetto +magistrati +aspetto +sentenze +definitive +cassazione +confermo +giudizio +vedere +qualche +magistrato +procura +città +anni +indaghi +ipotesi +berlusconi +responsabile +persino +stragi +mafiose +attentato +maurizio +costanzo +lascia +attonito +differenza +altro +scrivono +taluni +giornali +mai +governato +berlusconi +mai +forza +italia +votato +fiducia +governo +altri +me +no +dunque +posso +parlare +libero +avversario +politico +berlusconi +criticato +contrastato +piano +politica +sostenere +anni +dopo +senza +straccio +prova +egli +mandante +attentato +mafioso +maurizio +costanzo +significa +fare +pessimo +servizio +credibilità +istituzioni +italiane +tutte +istituzioni +prima +canzone +tommaso +paradiso +dopo +scissione” +thegiornalisti +veramente +bella +avere +paura +no +avere +paura +bellissima +governo +italia +viva +family +act +misure +natalità +intervista +poco +fa +tg1 +dicono +milano +pienone +prima +italiaviva +dice +solo +operazione +palazzo +abbraccio +divertirsi +ripropongo +intervista +myrta +merlino +fatto +aria +tira +qualche +ora +fa +leggo +sempre +volentieri +commenti +ricevuto +molte +critiche +ieri +scherzato +imitazione +fatto +striscia +notizia +effettivamente +sottovalutato +portata +potenzialmente +devastante +deepfake +nuova +raffinata +tecnica +fake +news +anni +centro +valanghe +diffamazioni +insulti +notizie +false +molte +peraltro +oggi +altro +vaglio +tribunali +scherzato +sorriso +finto +fuorionda +certo +redazione +striscia +saprà +utilizzare +bene +strumento +prendo +impegno +vivere +leggerezza +critiche +sottovalutare +mai +conseguenze +pericolose +deepfake +buona +serata +grazie +critiche +costruttive +aiutano +fare +meglio +caratteristiche +forti +italia +viva +essere +primo +partito +femminista +italiano +politica +deve +essere +sostantivo +femminile +solo +problema +quote +rosa +pure +vanno +altro +difese +problema +contenuto +stile +priorità +coinvolge +maternità +parità +salario +lotta +violenza +sguardo +diverso +economia +italia +viva +segna +diarchia +uomo +donna +rivoluzione +politica +italiana +spesso +maschilista +retrograda +parlato +marina +terragni +oggi +qn +piacerebbe +leggere +commenti +solo +commenti +donne +buona +giornata +ieri +svolto +vertice +europeo +immigrazione +ministri +interno +dopo +mesi +assenza +salvini +italia +tornata +tavolo +primi +risultati +arrivati +cambiare +cose +serve +serietà +proclami +capitan +fracassa +boss +compie +anni +ricordo +qualche +anno +fa +firenze +dopo +ore +concerto +sotto +pioggia +salutarmi +albergo +fresco +ragazzino +migliore +me +born +to +run +bella +gara +haters +attaccando +emma +marrone +devono +soltanto +vergognare +emma +grande +artista +battaglia +personale +merita +solo +affetto +sostegno +cattiveria +odia +accordo +malta +immigrazione +passo +avanti +europa +basta +solidarietà +serve +sempre +accoglie +migranti +deve +perdere +contributi +europei +assurdo +continuare +pagare +orban +soldi +italiani +paesi +scelgono +aderire +patto +clima +nazioni +unite +zero +emissioni +entro +orgoglioso +aver +firmato +nome +italia +accordi +parigi +ambiente +priorità +figli +grande +piano +investimenti +sostenibili +necessario +italia +europa +farlo +senza +alzare +tasse +dovere +politico +italia +viva +presenterà +proprie +proposte +grande +piano +verde +leopolda +vuole +darci +mano +cambiare +politica +italiana +benvenuto +ripropongo +parte +puntata +ieri +arena +intervista +massimo +giletti +leggo +sempre +volentieri +commenti +grazie +commenti +partecipazione +arena +la7 +stati +giorni +intensi +roma +pechino +shangai +oggi +firenze +italia +viva +partita +forte +forte +previsto +vuole +altro +aderire +può +farlo +http +bit +italiavivaappello +vuole +aiutarci +può +cliccare +http +bit +italiavivasostieni +vuole +proporci +idee +temi +http +bit +italiavivaproponi +avventura +affascinante +bella +discussione +intelligenza +artificiale +rapporto +innovazione +tecnologica +nuovi +lavori +reid +hoffman +fondatore +linkedin +grandi +esperti +mondiali +tecnologia +convegno +stanford +university +palazzo +vecchio +cuore +meravigliosa +firenze +doppietta +ferrari +strepitosa +rossa +peccato +svegliati +tardi +titolo +piloti +meraviglia +oggi +singapore +intervista +messaggero +mattino +gazzettino +parliamo +familyact +proposte +verdi +senza +aumentare +tasse +innovazione +partito +decorrentizzato” +ogni +tesserato +piantiamo +albero +viva +italia +viva +oggi +sovranisti +nazionalisti +destra +italiana +acclamato +leader +straniero +ungherese +orban +accetta +darci +mano +migranti +rifiuta +solidarietà +signor +orban +ogni +anno +riceve +miliardi +contributenti +italiani +quando +prendere +ungheria +prende +quando +dare +invece +alzano +muri +altro +destra +sovranista +nazionalista +italiana +acclama +fa +tifo +ungheria +altra +idea +solo +cosa +europa +soprattutto +cosa +significhi +difendere +patria +chiamano +fratelli +italia +solo +patrioti +patrioti +ungheresi +roma +autista +bus +rimprovera +ragazzi +minorenni +pestano +folle +quei +ragazzi +vanno +puniti +dobbiamo +riscoprire +nuova +stagione +doveri +diceva +moro +basta +logica +dovuto +doveri +solo +diritti +sbaglia +deve +pagare +mamma +ferrari +sembra +rinata +leclerc +fa +impressione +ancora +pole +stavolta +singapore +settembre +san +matteo +auguri +omonimi +città +salerno +me +data +particolare +esattamente +settembre +anni +fa +scelta +difficile +altro +intera +esperienza +politica +parlando +consiglio +comunale +infatti +annunciai +sorpresa +decisione +pedonalizzare +piazza +duomo +firenze +pochi +ritenevano +possibile +soluzione +giudicata +ardita +temeraria +molti +temevano +reazioni +conservatrice +signori +status +quo +viveva +rendita +qualche +settimana +dopo +pedonalizzazione +realtà +anni +dopo +nessun +fiorentino +tornerebbe +indietro +passare +nuovo +diecimila +motorini +auto +accanto +battistero +piazza +adesso +sente +ritmo +passi +clacson +firenze +libera +verde +missione +compiuta +vita +fatta +scelte +coraggiose +buon +san +matteo +abbraccio +shangai +molti +commentatori +parlano +italia +viva +insistono +concetto +stravagante +staccare +spina +governo +dimenticano +spina +attaccata +mese +fa +salvini +voleva +andare +elezioni +spingendo +italia +recessione +margini +europa +eppure +pregiudizio +solito +vogliono +condizionare +altro +governo +ambizione +molto +grande +vogliamo +condizionare +futuro +leopolda +proveremo +immaginare +italia +prossimi +anni +prossimi +giorni +vogliamo +cambiare +forme +politica +cominciando +presenza +donne +vogliamo +farlo +assieme +tante +persone +devono +iscriversi +altro +riaccendo +cellulare +dopo +volo +trovo +news +alema +dice +finito +salvini +dice +ipocrita +persone +genere +bisogna +avere +molta +pazienza +tanta +umanità +ossessionati +entrambi +terza +volta +consecutiva +bebe +vio +campionessa +mondiale +paralimpica +donna +ragazzi +onore +averla +volto +bella +italia +obama +anni +fa +brava +bebe +orgogliosi +te +felici +sorriso +enews +oggi +vediamo +leopolda +vuole +aderire +italia +viva +trova +link +bit +italiavivaappello +giancarlo +siani +oggi +compiuto +anni +camorra +ucciso +napoli +giornalista +scomodo +andava +eliminato +oggi +fratello +paolo +scrive +articolo +altrohttps +napoli +repubblica +it +cronaca +news +siani +oggi +anni +lettera +fratello +caro +giancarlo +manchi +commuove +fa +venire +brividi +abbraccio +famiglia +siani +abbraccio +tutte +vittime +mafie +terrorismo +criminalità +esempio +giancarlo +siani +aiuti +specie +giovani +vivere +libertà +persone +vere +parole +chiave +italia +viva +crescita +educazione +futuro +n +ancora +importante +parola +doveri +intervista +oggi +tg2 +buongiorno +ecco +puntata +porta +porta +ieri +contento +ottima +audience +commenti +viva +italia +viva +grazie +seguito +commentato +porta +porta +stata +giornata +bellissima +piena +emozioni +proposte +visti +parlamentari +italiaviva +festeggiando +compleanno +lucia +annibali🌹 +domani +ufficializzeremo +gruppi +poi +parte +gente +grazie +affetto +buonanotte +aspetto +stasera +rai +ospite +bruno +vespa +porta +porta +circondati +email +sms +disponibilità +dare +mano +grazie +vuole +intanto +aderisca +sito +www +comitatiazionecivile +it +poi +stasera +vediamo +porta +porta +rai1 +bello +entusiasmo +respiriamo +grazie +deciso +lasciare +pd +costruire +insieme +altri +casa +nuova +fare +politica +modo +diverso +dopo +anni +fuoco +amico +penso +debba +prendere +atto +valori +idee +sogni +possono +essere +giorni +oggetto +litigi +interni +vittoria +ottenuto +parlamento +populismo +altro +salvini +stata +importante +salvare +italia +basta +adesso +tratta +costruire +casa +giovane +innovativa +femminista +lancino +idee +proposte +italia +europa +spazio +enorme +politica +diversa +politica +viva +fatta +passioni +partecipazione +spazio +attende +solo +altro +frase +robert +frost +citata +attimo +fuggente +sempre +fatto +compagnia +anni +boy +scout +strade +trovai +bosco +scelsi +meno +battuta +diverso” +scegliamo +strada +difficile +senza +paracadute +strada +bella +colonna +sonora +notte +lungomare +mondo +lorenzo +jovanotti +buonanotte +italia +profondo +nord +signora +signora +fa +dire +lombarda +definisce +razzista +leghista +sfegatata” +nega +affitto +ragazza +meridionale +ore +stesso +nord +bambino +anni +cade +terrazzo +casa +ragazzo +fa +benzinaio +accorge +tuffa +attutirne +caduta +altro +salvandogli +vita +scena +film +fumetto +realtà +quel +ragazzo +extracomunitario +molto +tempo +italia +chiama +angel +angel +nome +fatto +basterebbe +mettere +episodi +cronaca +fianco +giorni +capire +stata +devastante +diseducativa +campagna +odio +mesi +social +capire +importante +ricordare +conta +razza +provenienza +passaporto +conta +solo +fatto +essere +umani +buona +domenica +prepartita +pareggio +juve +messo +firma +oggi +esco +franchi +po +amaro +bocca +stretto +bene +così +bella +partita +bellissima +coreografia +viva +fiorenza +bravo +ministro +finalmente +italia +torna +paesi +lottano +climate +change +ben +fatto +scorsa +legislatura +stata +jobsact +creato +milione +posti +lavoro +prossima +familyact +spiega +ministra +bonetti +intervista +asili +nido +assegno +figli +solo +condivido +dico +grazie +ceo +francesco +borgomeo +team +utilizzando +strumenti +jobsact +saxa +gres +riassunto +lavoratori +padre +ragazza +può +tornare +sorridere +stato +criticato +moltissime +volte +roberto +saviano +censura +assurda +zerocalcare +arrivata +sindaco +aquila +spinge +reagire +giusto +sindaco +possa +decidere +idee +partecipanti +festival +giusto +sindaco +critichi +direttrice +teatro +stabile +abruzzo +annalisa +altro +simone +solo +partecipato +leopolda +sindaco +aquila +appartiene +fratelli +italia +prima +poi +dovrà +capire +cultura +ammette +censure +leopolda +luogo +libertà +obiettivo +asili +nido +gratuiti +grande +sfida +lanciata +nuovo +governo +ministra +elena +bonetti +saprà +raccogliere +intanto +diciamo +brava +pioniera +isabella +conti +sindaco +san +lazzaro +prima +farlo +italia +orgogliosi +te +isabella +tel +aviv +vita +città +maglietta +nazionale +cuffie +pronto +correre” +buonaserata +ieri +senato +salvini +detto +volere +maggioritario +sistema +semplice +sappia +sera +stessa +elezioni +vinto +meno +parlamentari +stabilità +desideri +bellissimi +trasformarli +realtà +salvini +doveva +votare +sì +referendum +costituzionale +bastava +sì +vinto +no +adesso +teniamo +governi +coalizione +bicameralismo +paritario +chiama +legge +contrappasso +votato +sì” +fiducia +nuovo +governo +mese +politica +italiana +vissuto +tempesta +incredibile +scelta +salvini +chiedere +pieni +poteri” +andare +elezioni +segnato +svolta +altro +inspiegabile +accettare +diktat +lega +andare +votare +novembre +aumentato +iva +portato +italia +recessione +escluso +paese +guida +istituzioni +europee +alimentato +clima +tensione +violenza +verbale +fare +politica +significa +avere +coraggio +fare +scelte +corrente +inattese +sorprendenti +scelto +lavorare +assieme +altri +garantire +futuro +legislatura +fatto +difendendo +interesse +italiani +mordendomi +lingua +insulti +diffamazioni +anni +costato +molto +piano +personale +umano +penso +stata +scelta +giusta +italia +italiani +fa +politica +risentimenti +personali +mettendo +centro +bene +comune +buon +lavoro +nuovo +governo +viva +italia +approfitto +serata +milanese +fare +mezza +maratona +albergo +km +male +vero +ora +mega +doccia +nanna +domani +vota +senato +notte +vota +fiducia +nuovo +governo +dubbi +ricordo +alternativa +aumento +iva +italia +isolata +ue +odio +verbale +via +social +piazze +spiagge +spread +opacità +russe +saluti +romani +bloccare +pieni +poteri” +salvini +dovere +civile +missione +compiuta +uomo +uccide +donna +può +essere +definito +gigante +buono +perde +testa +assassino +chiamare +cose +nome +primo +passo +combattere +femminicidi +violenza +assassino +gigante +buono +gara +pazzesca +meravigliosa +strabiliante +primo +giro +testa +monza +soffrendo +vincendo +leclerc +entra +giovanissimo +storia +ferrari +stupendo +leggete +intervista +teresa +bellanova +capite +orgoglioso +strada +fatto +insieme +ancora +anni +fa +lasciava +mike +bongiorno +colonna +cultura +popolare +italiana +fortuna +incontrarlo +anni +fa +lontano +ieri +parlato +porta +porta +ecco +video +buona +domenica +figlio +beppe +grillo +colpevole +no +decideranno +giudici +social +paese +civile +quando +nessuno +userà +famiglie +aggredire +avversari +politici +attesa +imparino +farlo +altri +diamo +dimostrazione +civiltà +garantisti +sempre +governo +uscente +costato +miliardi +euro +solo +interessi +secondo +stime +osservatorio +cpi +aver +mandato +casa +voleva +uscire +euro +solo +giusto +utile +tasche +italiani +matteo +berrettini +rivelazione +tennistico +sconfitta +nadal +us +open +impedisce +tennista +romano +tifoso +viola +arrivare +finale +ormai +evidente +berrettini +altro +solo +promessa +ama +tennis +vedere +giovanissimo +italiano +big +grandissima +soddisfazione +forza +matteo +ultimo +mese +combattuto +durissima +battaglia +mandare +matteo +salvini +casa +credo +aver +fatto +dovere +cittadino +senatore +credo +aver +vinto +battaglia +insieme +tante +tanti +proprio +rabbrividisco +quando +leggo +giornalista +rai +parla +suicidio +salvini +entro +mesi +altro +tira +ballo +figlia +leader +leghista +limite +decenza +rispetto +umano +giornalista +rai +dovuto +rispettare +lottato +lotterò +sempre +matteo +salvini +pagato +soldi +italiani +parla +suicidio +avversario +addirittura +tira +ballo +piccola +bambina +deve +vergognare +solidarietà +matteo +salvini +famiglia +piccola +bimba +mamma +politica +può +divenire +barbarie +pagato +soldi +cittadini +può +esprimersi +toni +me +prima +viene +civiltà +poi +battaglia +parte +insulta +teresa +bellanova +abito +fisico +storia +bracciante +agricola +divenuta +sindacalista +poi +ministro +degno +polemica +pubblica +semplicemente +altro +poveretto +gente +polemizza +così +solo +compatita +nemmeno +criticata +voglio +però +fare +augurio +ironizza +caratteristiche +fisiche +quasi +sempre +donne +chissà +auguro +poter +provare +almeno +volta +emozioni +bellezza +stupore +persone +vivono +quando +ascoltano +teresa +passione +storia +basti +pensare +discorsi +leopolda +nessuno +infiamma +platea +triste +vita +passa +tempo +odiare +altri +social +utile +imparare +amare +vita +reale +amarvi +poi +qualcuno +pensa +teresa +possa +farsi +fermare +qualche +insulto +beh +problema +conoscete +conoscete +fatto +italia +rappresentata +commissione +europea +sovranista +sembrava +fino +mese +fa +paolo +gentiloni +ottima +notizia +italia +europa +buon +lavoro +mese +fa +ministro +interno +salvini +chiedeva +pieni +poteri” +andare +elezioni +solo +richiesta +veniva +formalizzata +comizi +mezzo +spiaggia +qualche +cubista +molti +mojiti +senza +alcun +riguardo +prerogative +costituzionali +presidente +repubblica +altre +istituzioni +mentre +salvini +altro +esprimeva +raffinati +concetti +consigliere +economico +borghi +ipotizzava +uscita +euro +collaboratore +savoini +chiedeva +tangenti +petrolio +russo +social +educavano +odio +violenza +verbale +soprattutto +persone +colore +pelle +diverso +donne +uomini +fuggiti +fame +guerra +venivano +altro +buon +lavoro +nuovo +governo +tifo +italia +quando +cambia +governo +sempre +giorno +importante +istituzioni +italia +cambia +spesso +governo +troppo +spesso +italia +potrà +mai +cambiare +proprio +dna +popolo +tanti +altro +difetti +certo +popolo +ricco +valori +sentimenti +ideali +sappiamo +accogliere +sorridere +amare +carichi +odio +qualcuno +voluto +dipingere +mesi +italia +deve +scimmiottare +altri +paesi +ricette +popoli +diversi +italia +deve +fare +italia +italia +bellezza +odio +sempre +buona +giornata +undicesimo +mese +consecutivo +attivita +manifatturiera +italiana +contrazione +cose +vanno +male +insomma +effetti +vedranno +prossimi +mesi +emergenza +vera +giustifica +impone +governo +subito +verginella +conosco +bene +regole +tempi +politica +quando +parla +assetti +posti +poltrone +limite +superato +ora +momento +correre +chiudere +emergenza +economica +porte +affrontata +adesso +rinviata +ancora +magari +dopo +elezioni +grandissima +ferrari +mitico +leclerc +finalmente +oggi +fatto +intervista +emilia +patta +sole +ore +mondo +lavora +produce +crea +benessere +niente +temere +governo +nasce +evitando +aumento +iva +abbassando +spread +tempo +leggere +intervista +darmi +qualche +impressione +fate +regalo +dati +istat +oggi +dicono +italia +populista +lascia +pil +negativo +bisogna +sbloccare +cantieri +rilanciare +consumi +famiglie +scommettere +innovazione +quadro +aumentare +iva +andare +votare +stata +catastrofe +possono +fingere +capirlo +italia +deve +ripartire +inchiodare +intervista +oggi +messaggero +scuola +estiva +meritare +italia” +visto +decine +ragazze +ragazzi +parlare +discutere +approfondire +lettera +chiara +scritto +repubblica +bellissima +colpisce +fa +pensare +grazie +chiara +guardiamo +fatti +inizio +agosto +paese +mano +presunto +ministro +interno +usava +linguaggio +odio +diverso +chiedeva +pieni +poteri +isolava +italia +tavoli +internazionali +chiariva +rapporto +russia +teneva +ostaggio +donne +bambini +malmessi +carrozzoni +mare +ignorando +altro +tradizione +accoglienza +valori +italia +sempre +signore +matteo +salvini +preparato +campagna +elettorale +torso +nudo +principali +beach +club +italiani +senza +alcun +riguardo +regole +costituzionali +parlamento +papeete +oggi +incarico +formare +nuovo +governo +salvini +esce +politicamente +scena +tratta +rivendicare +meriti +constatare +fatto +oggi +realtà +ciò +mese +fa +sembrava +impossibile +bene +crede +politica +civiltà +truce +scontro +violenza +verbale +molto +ancora +fare +molte +contraddizioni +molti +problemi +aperti +intanto +istituzioni +populismo +quando +forma +governo +normale +affaccino +ambizioni +richieste +desideri +governo +nasce +base +emergenza +evitare +tasse +salgano +italia +vada +recessione +atto +servizio +paese +innanzitutto +invito +mettere +parte +ambizioni +personali +dare +mano +bene +comune +altro +chiedo +passo +indietro +fatto +basta +tenga +centro +obiettivo +mettere +sicurezza +istituzioni +democratiche +risparmi +italiani +garantisco +costa +fatica +ignorare +insulti +offese +fa +politica +sentimenti +risentimenti +cominciato +qualcuno +chiesto +pieni +poteri” +potere +sostantivo +potere +verbo +poter +cambiare +cose +mettiamoci +servizio +provando +dare +senza +chiedere +semplice +ascoltando +conferenza +stampa +prossimo +ex +ministro +interno +impressione +salvini +leggermente +ossessionato +me +dire +caos +fatto +solo +relax +omonimo +notax +noiva +europa +deve +cambiare +linea +economica +adesso +germania +arriva +recessione +export +basta +brexit +disastro +scontro +🇺🇸 +🇨🇳 +vede +finestra +ora +tempo +investimenti +austerity +🇮🇹 +manda +casa +salvini +possiamo +tornare +protagonisti +adesso +vincitore +prima +giornata +campionato +nome +cognome +comunque +vadano +risultati +finali +chiama +sinisa +mihajlovic +grande +lottatore +gigante +leucemia +emozione +rispetto +onore +ciò +avvenendo +amazzonia +esige +risposta +forte +tutta +comunità +internazionale +dire +colpa +ciò +accade +ong +ridicolo +g7 +nazioni +unite +serve +impegno +fermare +tragedia +salvini +chiesto +pieni +poteri +oggi +detto +pronto +purché +torni +renzi” +ossessionato +rispetto +quindici +giorni +fa +adesso +angolo +quasi +ko +infatti +proposto +governo +evitare +aumentino +tasse +arrivi +recessione +saltino +consumi +fatto +senza +chiedere +nulla +proposta +bene +comune +auguro +prevalga +responsabilità +pensi +italia +interesse +singoli +scuola +meritare +italia +visto +ragazze +ragazzi +studiare +sognare +conoscere +approfondire +meraviglia +politica +altro +chiacchiere +populismo +demagogia +tempo +altro +investito +insieme +ragazzi +tempo +qualità +semina +speranza +orgoglioso +aver +investito +stipendio +senatore +agosto +consentire +ragazzi +incontrare +persone +livello +lascio +polemiche +fa +professione +stato +felice +aver +passato +giorni +ragazzi +notte +amatrice +altri +territori +colpiti +sisma +resterà +sempre +cuore +ferita +mai +cicatrizzata +dolore +ancora +presente +passati +anni +sembra +ieri +insiste +altro +fakenews +polemiche +assurde +dico +fatto +premier +mesi +dopo +terremoto +prendermi +insulti +ciò +funzionato +anni +successivi +mesi +sembra +ingiusto +lasciamo +stare +insulti +fakenews +unico +modo +ripartire +evitare +polemiche +dare +mano +ambito +proprie +responsabilità +dolore +famiglie +vittime +mai +fine +almeno +onoriamo +memoria +perso +vita +ricostruendo +senza +polemiche +insieme +roberto +cingolani +stato +anni +anima +iit +genova +centro +eccellenza +mondiale +lezione +oggi +ragazzi +meritare +stata +straordinaria +intelligenza +artificiale +innovazione +ricerca +altro +robot +prevenzione +sostenibilità +vedere +ragazzi +discutere +senza +tregua +argomenti +tosti +competenza +qualità +ripaga +tante +polemiche +ridicole +idee +situazione +politica +dette +chiare +varie +interviste +mettendoci +ora +impegno +formazione +politica +investendo +stipendio +mese +permettere +giovani +under30 +studiare +approfondire +conoscere +molto +felice +essere +ragazzi +ciocco +ragazzi +dimostrano +meritare +italia +me +zero +polemiche +tanta +politica +terzo +giorno +scuola +meritare +italia +padre +francesco +occhetta +colonna +civiltà +cattolica +aperto +giornata +parlando +ricostruire +politica +tempi +populismo +adesso +tocca +roberto +altro +cingolani +importanti +innovatori +italiani +esperto +robot +intelligenza +artificiale +futuro +bello +bellissimo +vedere +ragazze +ragazzi +discutere +modo +libero +bravissima +milena +bertolini +ct +nazionale +femminile +calcio +presidente +figc +gravina +ragazze +fatto +innamorare +nuovo +calcio +paese +meritare +prima +ascoltare +sagge +parole +presidente +mattarella +pausa +sportiva +ragazzi +scuola +meritare +italia +stasera +incontro +ct +nazionale +calcio +femminile +milena +bertolini +presidente +gravina +seconda +giornata +meritare +scuola +estiva +politica +ciocco +prima +economia +fortis +poi +filosofia +briguglia +quindi +sociale +don +andrea +cottolengo +oltre +ragazzi +under30 +studiano +impegnano +bellissimo +seconda +giornata +meritare +italia +dopo +riflessione +città +isabella +corsa +mattutina +adesso +ernesto +maria +padre +fisco +fatturazione +elettronica +fare +politica +bisogna +studiare +conoscere +capire +bellissimo +clima +prima +giornata +meritare +italia +scuola +estiva +politica +under30 +brava +sindaca +san +lazzaro +isabella +conti +lezione +fantastica +città +bellezza +bisogni +salvini +continua +citarmi +ossessivo +ossessionato +ritiene +responsabile +fatto +qualche +ora +lascerà +viminale +capisco +quando +leggo +braccio +destro +borghi +dice +giornale +altro +tedesco +uscire +euro +bene +italia” +sempre +convinto +fatto +averti +mandato +casa +caro +omonimo +me +grande +onore +fattene +ragione +partenza +verso +ciocco +lucca +organizzato +giorni +formazione +politica +oltre +ragazzi +under +politica +innanzitutto +studiare +conoscere +approfondire +altro +pensato +appuntamento +altro +momento +senza +crisi +governo +orizzonte +maggior +ragione +ancora +convinti +vogliamo +combattere +salvinismo +superficialità +dobbiamo +educare +ragazzi +impegno +primo +intervento +stasera +giovane +bravissima +sindaca +isabella +conti +meritare +italia +titolo +scuola +estiva +inizia +stasera +meritare +paese +bello +mondo +dopo +🙂 +ieri +stata +giornata +molto +dura +punto +vista +personale +risultato +ottimo +peggiori +governi +storia +repubblicana +andato +casa +ministro +salvini +appena +giorni +diventato +passato +molto +fare +adesso +intanto +buongiorno +davvero +buon +giorno +diretta +senato +giuseppe +conte +dimette +governo +fallito +presidente +consiglio +lascia +stile +poco +intervengo +senato +maratonamentana +buongiorno +oggi +davvero +buona +giornata +prende +atto +fallimento +governo +cambiamento +detto +ogni +giorno +mesi +capito +solo +ultime +altro +settimane +oggi +governo +populista +annuncia +dimissioni +chiude +dopo +mesi +peggiori +esperienze +storia +repubblicana +preso +pil +azzerato +detto +pacchia +finita” +migliaia +ragazze +ragazzi +fuga +guerra +fame +isolato +italia +livello +internazionale +tavoli +europei +vinto +propaganda +fakenews +dopo +mesi +stati +sconfitti +realtà +ricordate +quando +dicevano +opposizione +governeremo +anni +bene +opposizione +governato +fa +dire +mesi +tutta +europa +adesso +populisti +funzionano +campagna +elettorale +falliscono +governo +adesso +governo +istituzionale +evitare +aumento +iva +riportare +italia +europa +solito +tocca +rimediare +danni +pronto +sfidare +salvini +elezioni +collegio +firenze +milano +scelga +prima +viene +paese +evitato +aumento +iva +prima +risparmi +italiani +poi +ambizioni +parte +poi +pronto +confronto +collegio +tv +allarme +bundesbank +economia +tedesca +crollo +produzione +industriale +costituisce +problema +enorme +italia +enorme +voglio +rischiare +colpa +elezioni +anticipate +aumento +iva +soltanto +recessione +disastro +peggiore +prima +risparmi +italiani +poi +ambizioni +capitan +fracassa +petizione +sfiducia +salvini +raggiungendo +quota +mila +vuole +firmarla +dovrebbe +sbrigarsi +credo +proprio +domani +servirà +😇 +ultimo +sforzo +firma +firmare +raggiungiamo +quota +mila +bit +sfiduciapersalvini +salvini +renzi +stessa +cosa +” +dicono +anni +alcuni +compagni +partito +pur +fare +guerra +me +fuoco +amico +spalancato +porte +capitanfracassa +dice +battista +oggi +dice +copertina +espresso +vale +pena +arrabbiarsi +amici +certa +sinistra +resterò +sempre +nemico +altro +abbattere +giornali +rispettano +sempre +quando +parlano +male +te +soprattutto +quando +parlano +male +te +basterebbe +tuttavia +po +onestà +intellettuale +capire +paragone +piedi +salvini +infatti +soffre +sparato +oggi +palle +incatenate +me +giorno +puristi +sinistra +altro +fiorentina +soffre +avanti +coppa +italia +stadio +festa +unico +capitano +mitico +giancarlo +antognoni +aleviola +salvini +dice +tutta +colpa +so +fine +dimetterà +colpa +renziani” +dice +accadesse +riterrei +grande +onore +ministro +interno +deve +garantire +sicurezza +seminare +odio +ore +attacca +rende +orgoglioso +aver +messo +battaglia +difficile +coraggiosa +uomo +fino +settimana +fa +definivano +invincibile +scoperto +essere +solo +uomo +pavido +impaurito +ultimi +giorni +relax +prima +rientro +roma +crisi +governo +incontri +ravvicinati +bellezza +oggi +salvini +dice +pur +tornare +renzi +governo +tranquillo +omonimo +entro +governo +istituzionale +decenza +istituzioni +salvezza +paese +basta +esca +prima +possibile +così +italia +eviterà +aumento +iva +riprenderà +ruolo +europa +ministro +interno +finalmente +difenda +sicurezza +anziché +seminare +odio +torno +governo +tranquillo +quando +dimetti +intervista +oggi +giornale +buona +domenica +buon +rientro +torna +vacanze +oggi +quotidiani +pieni +innumerevoli +retroscena +scenari +momenti +genere +politica +rischia +dare +peggio +sé +allora +parliamo +chiaro +stella +polare +persone +serie +rispetto +istituzioni +bene +italiani +interessi +partiti +presunti +leader +andare +votare +ottobre +effetto +altro +aumentare +iva +folle +possono +essere +famiglie +pagare +ambizioni +qualche +aspirante +leader +possiamo +condannare +italia +recessione +serve +governo +istituzionale +pensi +paese +destini +singoli +partiti +governo +istituzionale +prima +cosa +ministro +interno +degno +altro +chiesa +san +piero +perticaia +luogo +cuore +me +solo +bellissimo +esempio +arte +chiesa +giovane +venivo +ascoltare +omelie +grande +altro +sacerdote +monsignor +lorenzo +righi +oggi +correndo +fermato +quassù +pensare +priore” +chiamavamo +ammirare +bellezza +colline +fiorentine +adesso +par +condicio +toscana +buttiamoci +palio +siena +🏇 +ore +grande +confusione +sotto +cielo” +soprattutto +politica +italiana +riceviamo +migliaia +email +persino +ferragosto +formati +nuovi +comitati +petizione +salvini +arrivando +quota +60mila +bit +sfiduciapersalvini +bellissimo +assurdo +mai +vista +crisi +gestita +così +altro +cosa +seria +ridere +salvini +sente +scivolarsi +via +poltrona +solo +potere +potrà +avere +ancora +breve +futuro +capitano +impaurito +brutto +dunque +offre +maio +scene +impallidire +calciomercato +😱 +adesso +vedremo +cosa +movimento +stelle +può +davvero +accadere +altro +fine +salvini +cambiò +idea +ennesima +volta +fino +domenica +scorsa +sembrava +inarrestabile +chiedeva +pieni +poteri +dettava +linea +adesso +auspica +rimpasti +spera +pace +grillini +gradasso +impone +linea +adesso +elemosina +accordo +farsa +senza +dignità +abbraccio +dicevano +altro +parlamento +opposizione +iniziativa +parlamentare +costretto +capitan +fracassa +prima +sconfitta +legislatura +credo +adesso +vada +lanciato +forte +messaggio +parte +cittadini +solo +parlamentari +salvini +dimetta +subito +firmiamo +firmare +petizione +intorno +quota +50mila +firme +martedì +prossimo +possiamo +ancora +crescere +salvini +diventa +ridicolo +aggrapparsi +poltrona +dobbiamo +ricordargli +banale +verità +perso +deve +lasciare +governo +firma +firmare +bit +sfiduciapersalvini +scartabellando +foto +ferragosto +quarantina +anni +fa +grasso +piccolo +nuovo +auguri +premier +pro +tempore +conte +finalmente +reso +conto +slealtà +istituzionale” +salvini +detto +fin +subito +spiace +conte +accorto +solo +adesso +meglio +tardi +mai +salvini +deve +dimettersi +subito +prima +dicevano +solo +opposizioni +adesso +dicono +colleghi +governo +pensa +salvini +debba +andarsene +subito +firmi +firmare +adesso +petizione +chiede +dimissioni +bit +sfiduciapersalvini +nuovo +auguri +buon +ferragosto +riesce +staccarsi +politica +intervista +oggi +repubblica +altri +solo +auguri +controcorrente +adoro +passare +ferragosto +firenze +buona +giornata +auguri +ovunque +godetevi +giornata +speciale +paese +civile +quando +viene +sconfitti +parlamento +dimette +dimissioni +gesto +difficile +passato +garantisco +fa +male +giusto +giusto +matteo +salvini +altro +sfidato +parlamentari +tabellone +senato +segnato +sconfitta +capitan +fracassa +vuole +tenersi +stretta +poltrona +penso +giusto +ore +vacanza +vuole +mobilitarsi +mobiliti +iniziato +comitati +azione +civile +raccogliere +firme +dimissioni +salvini +quasi +quota +riprendiamo +arriviamo +entro +agosto +almeno +firme +viminale +bisogno +professionista +sicurezza +seminatore +odio +lasciamo +salvini +spiaggia +diamo +vero +ministro +interno +italia +firma +firmare +genova +memoria +dolore +vittime +famiglie +speranza +progetto +vero +ricostruzione +desiderio +tenere +lontana +demagogia +sciacallaggio +genova +oggi +silenzio +rispetto +memoria +voglia +futuro +salvini +provocato +crisi +assurda +chiesto +voto +parlamento +perso +tabellone +senato +parla +chiaro +paese +civile +quando +perde +sfida +politica +dimette +fa +male +garantisco +giusto +così +salvini +tiene +troppo +poltrona +staff +pagato +contribuente +dunque +dimette +torna +taglio +altro +parlamentari +ancora +ieri +definiva +salvarenzi” +secondo +me +eccesso +mojito +inizia +fare +effetto +vuole +bene +riposare +poi +dimettere +quando +perde +dimette +passato +so +fa +male +giusto +così +vai +casa +omonimo +spiaggia +lascia +viminale +perso +salvini +fatto +intervento +minuti +citato +volte +renzi +renzi +renzi +innamorato +ossessionato +capitanfracassa +aspetto +oggi +diretta +facebook +conferenza +stampa +palazzo +madama +ora +prima +salvini +chiesto +voto +aula +stato +errore +clamoroso +vota +salvini +perde +conosco +credo +capitanfracassa +cercando +scusa +votare +votare +tabellone +risultati +oggi +molto +male +molto +ecco +conferenza +stampa +senato +poco +fa +governonotax +nadia +toffa +lasciati +ricorderemo +signora +professionista +splendida +ragazza +cancro +ucciso +giovane +donna +anni +modo +combattuto +fa +riflettere +pensare +altro +costringe +ciascuno +vivere +intensamente +terremo +sorriso +cuore +abbraccio +famiglia +redazione +iene +oggi +fatto +intervista +tg2 +trovate +scelta +presidente +casellati +convocare +agosto +assemblea +calendario +solo +provocazione +ennesima +scelta +partigiana +presidenza +aula +vuole +compiacere +salvini +ancora +volta +realtà +finirà +fare +danno +lega +penso +domani +calendario +salvini +perderà +primo +voto +altro +lunga +serie +plastico +capitanfracassa +minoranza +colleghi +senatori +domani +presenterò +senato +sensazione +domani +chiaro +democrazia +parlamentare +spiaggia +milano +marittima +quasi +ex +ministro +interno +rassegni +prepari +dare +dimissioni +così +smetterà +usare +soldi +viminale +campagna +elettorale +permanente +memoria +paese +fa +conti +proprio +passato +futuro +oggi +famiglia +trieste +basovizza +tragedia +foibe +stata +troppo +tempo +ignorata +giusto +nuove +generazioni +sappiano +conoscano +ricordino +attacchi +quotidiani +ricevo +compagni +partito +oggi +sommano +insulti +beppe +grillo +uomo +tempo +chiamava +ebetino” +adesso +definisce +avvoltoio” +male +migliora🤣 +insulto +possa +fermarmi +davanti +capitan +fracassa +chiede +pieni +poteri +culla +antico +sogno +uscire +euro +altro +sopporto +ogni +insulto +insisto +governo +istituzionale +immagine +tornaconto +personale +meglio +stare +angolo +aspettare +sfascio +bene +comune +viene +prima +interesse +singoli +prima +pensa +italia +poi +interessi +parte +buona +settimana +ferragosto +sant +anna +stazzema +luogo +dolore +massacro +tragedia +visitato +luogo +tenace +resistenza +dignità +esemplare +passione +civile +almeno +oggi +ricordo +anni +strage +sant +anna +stazzema +capitale +morale +paese +dimentica +eccidio +nazifascista +mattina +fatto +proposta +governo +notax +eviti +aumento +iva +metta +sicurezza +conti +pubblici +italiani +rivolto +anni +insultato +offeso +diffamato +comprensibile +alcuni +amici +spiazzati +scettici +dubbiosi +ieri +sera +dopo +aver +fatto +intervista +corriere +altro +andato +mangiare +pizza +famiglia +genitori +pensato +giorni +persone +inqualificabili +stelle +segni +manette +confronti +cittadini +incensurati +settantenni +finiti +colpa +vicende +grandi +vado +pancia +dico +mai +accordi +altro +salvini +attacca +oggi +paura +propone +soluzioni +già +doveva +aver +approvato +quattordici +mesi +fa +primo +consiglio +ministri” +flat +tax +pace +fiscale +riduzione +altro +tasse +casa +frattempo +roma +spara +muore +parchi +pubblici +ministro +tace +anzi +capitan +fracassa +reagisce +fa +solo +altro +mojito +goditelo +omonimo +goditelo +poco +sacco +tempo +libero +viminale +arriverà +ministro +fannullone +davanti +forzatura +istituzionale +matteo +salvini +parlamento +strade +assecondare +capitan +fracassa +andare +voto +vuole +quando +vuole +oppure +creare +governo +notax +eviti +altro +aumento +iva +scongiuri +rischio +uscita +euro +dubbi +molti +motivi +risentimento +personale +mesi +attaccato +insultato +cominciare +stelle +politica +fa +cercando +bene +comune +inseguendo +ripicche +personali +italia +viene +prima +correnti +partito +parlamento +ciascuno +dovrà +votare +convinto +maggioranza +governo +istituzionale +salvi +italia +dirà +altro +stamattina +cima +torre +arnolfo +sindaco +città +bella +mondo +oggi +giorno +liberazione +firenze +nazisti +fascisti +senatore +collegio +altro +accompagnato +dario +nardella +lassù +cima +palazzo +vecchio +sentire +rintocchi +campana +martinella +anni +fa +urlò +mondo +firenze +libera +viva +fiorenza +viva +libertà +fatto +intervista +corriere +sera +governo +gialloverde +fallito +miseramente +oggi +potremmo +cullarci +ritornello +detto” +tempo +stato +galantuomo +davvero +leader +altro +può +solo +commentare +ciò +accade +deve +dare +visione +quando +può +creare +polemica +divisione +”if +you +decide +you +divide” +insegnato +barack +obama +ritengo +andare +votare +sistema +istituzionale +ministro +interno +rischio +aumento +iva +assurdo +appello +tutte +forze +politiche +vicine +lontane +tutte +prevalga +senso +istituzioni +pensa +prima +altro +oggi +giornali +pieni +retroscena +accordi +segreti +stelle +qualcuno +già +ipotizza +possa +votare +fiducia +fico +premier +toninelli +premier +allora +battista +ragazzi +così +preparati +competenti +😂😂😂 +ragazzi +scherziamo +verità +altra +salvini +capitan +fracassa +digerisce +altro +fatto +paese +ragiona +vuole +pieni +poteri +vuole +decidere +quando +vota +mattarella +vuole +decidere +quando +riunire +parlamento +conferenza +capigruppo +vuole +decidere +dopo +anni +pagando +fare +nulla +diffondere +odio +insicurezza +crisi +altro +capitan +fracassa +farnetica +spiaggia +chiede +italiani +datemi +pieni +poteri +ultimo +chiederli +badoglio +salvini +favore +meno +mojiti +camomille +dicevano +governeremo +anni +retto +nemmeno +mesi +dicevano +ripartire +italia +riportato +zero +pil +bloccato +crescita +dicevano +terza +repubblica +governato +litigando +terza +media +prossime +ore +disegneremo +futuro +vuole +darci +mano +rassegna +altro +arrende +fondi +comitato +azione +civile +www +comitatiazionecivile +it +oggi +stesso +sentire +resti +finestra +molto +fare +restituire +speranza +bellezza +paese +figli +intanto +parliamoci +chiaro +ragione +quando +dicevamo +realtà +sconfitto +propaganda +salvini +gioca +carta +altro +diretta +santomato +pt +governo +fallito +fallito +prima +previsto +tempo +galantuomo +verità +arriva +bene +fatto +essere +coerenti +idee +solo +tav +capitan +fracassa +coraggio +fare +legge +bilancio +troppa +paura +inchieste +adesso +spiegare +casa +casa +grazie +salvini +iva +aumenta +mercati +ballano +lega +ladrona +fa +male +italia +problemi +gravi +ultimi +vent +anni +italia +livello +retribuzioni +stipendi +insomma +troppo +bassi +classe +media +80€ +mensili +anni +altro +vengono +riconosciuti +italiani +guadagnano +meno +500€ +mensili +primo +concreto +gesto +attenzione +verso +ceto +medio +può +fare +certo +importante +fare +meno +giorni +lega +chiesto +trasformare +misura +almeno +milioni +italiani +rischiano +pagare +tasse +coordinatori +comitati +civici +zone +diverse +italia +lanciato +petizione +chiedere +mantenere +80€ +governo +rimane +vediamo +teatrino +finisce +saltano +80€ +meno +bella +mobilitazione +popolare +do +volentieri +mano +azione +civile +comitati +invito +firmare +vanno +alzati +stipendi +tasse +dico +pagliacciata +pelle +paese +stancato +dovrebbero +dimettersi +salvini +maio +premier +qualcuno +ricorda +avvisarlo +parliamo +stasera +santomato +diretta +daniela +misul +stata +presidente +comunità +ebraica +firenze +diversi +anni +lavorato +tanto +insieme +progetti +educativi +iniziative +volontariato +illuminazione +bellissima +altro +sinagoga +città +naturalmente +viaggi +memoria +centinaio +studenti +scuole +superiori +ogni +anno +tornavano +inferno +auschwitz +conoscere +storia +olocausto +gridare +mai +daniela +lasciato +oggi +dopo +terribile +malattia +rendo +omaggio +cattolico +imparato +molto +sorella +maggiore +ebrea +sensibilità +intelligenza +comunità +terremo +viva +memoria +ora +sempre +nome +grazie +daniela +shalòm +vedo +video +commuovo +umanità +giudice +umanità +imputato +solito +notizia +solo +cose +negative +voglio +condividere +pagine +umanità +buon +pomeriggio +agosto +centinaia +italiani +perdevano +vita +miniera +belga +marcinelle +strage +incontrato +qualche +anno +fa +sopravvissuti +tragedia +mario +riuscì +salvarsi +solo +altro +circostanza +fortunata +poco +prima +morire +decise +consegnarmi +bruxelles +lampada +accompagnava +quando +scendeva +miniera +tengo +ufficio +voglio +ricordarmi +sempre +quando +italiani +fare +lavori +altri +volevano +fare +tengo +ufficio +voglio +ricordarmi +sempre +quando +immigrati +tengo +ufficio +ricordare +marcinelle +significa +ricordare +dolore +orgoglio +appartenere +comunità +veniva +derisa +manche +comunità +donne +uomini +generosi +pieni +coraggio +pensiero +vittime +marcinelle +pensiero +mario +pensiero +immigrati +oggi +cancellare +80€ +grande +danno +guadagna +poco +dopo +anni +polemiche +iniziano +riconoscerlo +comizio +sabaudia +salvini +attacca +me +strano +dice +stato +governo +decenni +roma +lasciato +governo +salvini +invece +pagato +italiani +anni +ininterrottamente +primo +stipendio +pubblico +preso +ancora +lira +gettone +telefonico +internet +altro +berlusconi +ancora +iniziato +politica +salvini +già +groppone +italiani +appena +capitan +fracassa +finito +blaterare +dice +cosa +fatto +concreto +italiani +anni +chiacchierone +cosa +sconvolgente +oggi +solo +vice +premier +litighino +bambini +viziati +cosa +sconvolgente +oggi +italia +senza +premier +giuseppe +conte +semplicemente +imbarazzante +dato +sorprendente +produttività +cresciuti +altri +dice +nessuno +spiega +benissimo +professor +fortis +oggi +sole +ore +vuole +altro +conoscere +studiare +approfondire +può +leggere +dati +accontenta +salvini +maio +sappia +quando +quei +casualmente +bloccato +oggi +votato +senato +favore +tav +pensiamo +paese +dunque +sì +divertente +strategia +alcuni +statisti +nostrani +cominciare +battista +persino +qualche +dem +pd +doveva +votare +tav +così +salvini +arrabbiato” +cosa +grillini +vogliono +davvero +fare +crisi +bene +allora +altro +votino +mozione +sfiducia +salvini +settembre +rubli +milioni +ragioni +mancano +vogliono +mandare +casa +governo +facciamolo +soldi +lega +tav +grillini +coraggio +resteranno +abbarbicati +poltrona +bella +intervista +pete +souza +corriere +sera +parla +obama +stato +fotografo +anni +ombra +parla +cuore +sofferenza +presidente +davanti +stragi +americane +figlie +diffusione +armi +poi +tutte +volte +leggo +pete +ripenso +amicizia +tiberio +ieri +cassazione +scritto +sentenza +definitiva +salvini +deve +restituire +milioni +€ +italiani +dico +molti +quei +denari +finiti +finanziare +bestia +propaganda +leghista +creando +odio +rancore +attesa +farci +sapere +rubli +possono +dirci +messo +euro +rubato +soldi +italiani +ieri +può +dire +senza +timore +smentita +quando +restituiranno +parla +povertà +lamenta +lontananza +politica +ceti +deboli +cosa +stato +fatto +davvero +scrivo +oggi +lettera +repubblica +populismo +salvini +maio +populismo +commenta +senza +conoscere +oggi +governo +dice +basta +80€ +fine +pagare +sempre +deboli +famiglie +mille +euro +anno +aiuto +vero +salvini +finito +tour +spiaggia +deve +fare +cassa +dispiace +misura +giusta +aiutato +tante +famiglie +dispiace +soprattutto +rimetterci +sempre +soliti +giovedì +intorno +aspetto +festa +unità +santomato +provincia +pistoia +diretta +facebook +pagina +fan +espresso +testata +agito +tribunale +trovo +assurdo +vicenda +rubli +lega +voglia +fare +processo +giornalisti +parliamoci +chiaro +problema +sapere +tizian +vergine +audio +dialogo +leghisti +russi +verificare +audio +vero +altro +dialogo +stato +leghisti +chiesto +maxi +tangente +milioni +€ +campagna +elettorale +salvini +domanda +leghisti +savoini +davvero +chiesto +milioni +€ +campagna +elettorale +salvini +risposta +fatto +scoprirlo +” +impressione +leghisti +mosca +messi +benissimo +domanda +salvini +invece +semplice +chiesto +tangenti +campagna +elettorale +no +fatto +devi +denunciarli +altrimenti +complice +problema +tangenti +russe +giornalisti +italiani +sbaglio +strumentalizzare +madonna +sponsorizzare +decreto +sicurezza +ennesimo +insulto +soprattutto +credenti +dice +cinico +conosce +prezzo +conosce +valore +niente +salvini +oggi +dimostra +essere +terribilmente +cinico +serve +nemmeno +ricordargli +quando +scendeva +palchi +lega +bestemmiando +arriva +punto +strumentalizzare +ciò +prezioso +semplicemente +oltre +persino +oltre +disgusto +america +atti +terrorismo +giro +poche +ore +colpa +diffusione +armi +certo +responsabilità +stragi +killer +ovvio +qualche +politico +deve +riflettere +proprio +vocabolario +forza +parlare +invasioni +inesistenti +arrivano +invasati +veri +invasati +sparano +uccidono +leggendo +quotidiani +oggi +vediamo +salvini +capito +avere +numeri +decreto +sicurezza +dunque +rilancia +tav +giorno +verità +viene +spostato +mercoledì +vedremo +dopo +voto +mozioni +tav +governo +piedi +no +volete +opinione +dico +tutta +buffonata +lasciano +poltrone +altro +nemmeno +scherzo +riparleremo +mercoledì +senato +intanto +considerazione +proposito +buffonate +me +salvini +può +girare +nudo +vestito +bere +mojito +acqua +fare +deejay +influencer +attacco +capacità +essere +garante +sicurezza +italiani +interessa +discutere +risultati +ciò +altro +giustificare +attacchi +salvini +giornalisti +oggi +direttore +verità +maurizio +belpietro +scrive +editoriale +abusi +renzi” +ricapitolo +fatti +salvini +fa +salire +figlio +moto +acqua +polizia +polizia +cerca +impedire +riprese +salvini +attacca +videomaker +dicendogli +occuparsi +altro +altro +piacciono +bambini” +quasi +nessuno +stampa +fiata +conferenza +stampa +belpietro +fa +parla +presunti +abusi +opinione +sapete +chiesto +lasciare +stare +figlio +salvini +persone +civili +attacchiamo +minorenni +rimane +dubbio +sapere +cosa +fatto +moto +acqua +altro +stati +uniti +seconda +volta +giro +poche +ore +nazione +assiste +strage +dopo +el +paso +texas +oggi +dayton +ohio +odio +diventa +violenza +diffusione +armi +fuoco +rifiuto +ogni +convivenza +storie +perso +vita +male +cuore +cominciare +mamma +fa +scudo +umano +altro +bambino +mesi +muore +vivrà +grazie +vanno +bloccati +puniti +killer +bisogna +ridurre +diffusione +armi +violenza +verbale +america +naturalmente +ovunque +stamattina +salvini +attacca +dicendo +fatto +disastri +ehi +omonimo +unico +combinato +disastri +preso +paese +cresceva +azzerato +pil +usi +linguaggio +odio +amplifica +insicurezza +fare +bisboccia +spiaggia +tocchi +palla +europa +senza +raccolta +firme +dicci +quando +restituisci +milioni +quando +quereli +savoini +poi +avanza +tempo +mettiti +lavorare +anni +paghiamo +stipendio +fannullone +diresti +bacioni😘 +promesso +parlare +discussioni +interne +pd +litigare +presenza +governo +allucinante +purtroppo +oggi +polemiche +inspiegabili +fatto +bravissimi +comitati +azionecivile +presentato +raccolta +firme +mozione +sfiducia +salvini +ricordate +storia +alcuni +altro +proposto +portare +ministro +interno +parlamento +attraverso +mozione +sfiducia +gruppo +dirigente +pd +bloccato +iniziativa +definendola +sbagliata +conseguenza +fermato +macchine +poi +quando +finalmente +pd +fatto +mozione +sfiducia +troppo +tardi +votarla +aula +prima +settembre +altro +giorni +soffre +alzheimer +amico +membro +propria +famiglia +notizia +vuol +dire +tanto +alzheimer +tragedia +ancora +lontana +essere +sconfitta +ogni +ricerca +altro +porta +lotta +avanti +notizia +fantastica +incoraggiare +futuro +luogo +brutto +pieno +ombre +molti +vogliono +rappresentare +innovazione +ricerca +tecnologia +possono +farci +vincere +sfide +oggi +sembrano +impossibili +farlo +bisogna +credere +scienza +credere +domani +senza +cedere +stregoni +paura +passo +volta +giorno +dopo +giorno +intanto +abbraccio +amici +membri +propria +famiglia +malati +alzheimer +demenza +senile +sindaco +reso +conto +molti +pensiamo +chiama +alia +guagni +calciatrice +partecipato +azzurre +mondiali +mese +scorso +capitano +firenze +alzato +cielo +scudetto +coppa +giorni +detto +no +altro +real +madrid +restare +fiorentina +femminile +gesto +bellissimo +squadra +città +deve +essere +stimolo +dare +diritti +calciatrici +generale +donne +sport +iniziato +qualche +anno +fa +ancora +molto +fare +inutile +entusiasmarsi +grandi +vittorie +poi +donne +vengono +trattate +atlete +serie +proviamoci +insieme +senza +divisioni +colore +politico +sport +brava +alia +viva +fiorenza +fine +giornata +premio +bronzo +vince +ancora +gigggino +maio +oggi +tirato +fuori +repertorio +evergreen +ultimo +anno +revoca +concessione +benetton +piace +altro +ricordare +maio +così +mentre +spiega +italiani +darà +mai +alitalia +benetton +nessuna +revoca +maio +usa +tema +diversivo +giornata +fa +male +triste +operazione +sciacallaggio +maio +fa +tragedia +nazionale +morandi +cambiato +idea +alitalia +80€ +olimpiadi +tap +revoca +ieri +durante +trasmissione +televisiva +la7 +giornalista +padellaro +fatto +quotidiano +ritratto +mentre +presenta +libro +circostanza +volte +chiamato +causa +modo +altro +assurdo +diffamatorio +credo +essere +ormai +ossessione +alcune +firme +fatto +quotidiano +vengo +coinvolto +quando +proprio +entro +niente +visto +parlava +insulti +salvini +giornalisti +moto +acqua +dato +mandato +legali +agire +giudizio +civile +padellaro +diffamazione +intendo +permettere +nessuno +gettarmi +fango +linee +guida +dati +mese +fa +milano +tratterrò +solo +eventuale +risarcimento +danni +resto +devoluto +associazione +volontariato +scelta +insieme +comitati +azione +civile +buon +weekend +oggi +nazione +carlino +aprono +brutta +notizia +penso +governo +serio +dovrebbe +occuparsi +temi +emergenza +droga +finta +emergenza +immigrazione +governo +serio +altro +dovrebbe +occuparsi +produzione +industriale +fa +meno +rispetto +scorso +anno +polemiche +vicepremier +fannulloni +governo +serio +solo +dovrebbe +fare +qualcosa +passare +tempo +litigare +poche +esperienze +cambiato +vita +fare +arbitro +calcio +solo +davanti +tante +persone +pronte +attaccarti +primo +errore +devi +decidere +frazione +secondo +prenderti +altro +responsabilità +resistere +insulti +trovo +bellissimo +prossimo +agosto +supercoppa +europea +liverpool +chelsea +arbitrata +donna +prima +volta +ultima +strada +verso +parità +battaglia +equal +pay +passa +gesti +bocca +lupo +collega” +stephanie +repubblica +richiama +raccolta +firme +salvini +stato +errore +presentare +subito +mozione +sfiducia +adesso +utilizziamo +tempo +firmare +firmare +ama +così +tanto +altro +stare +spiaggia +lasciamo +possa +godersi +mare +mettiamo +viminale +vero +ministro +aspirante +influencer +firmarla +https +www +comitatiazionecivile +it +petizione +dimissioni +salvini +mentre +guida +governo +semina +odio +mette +discussione +valori +fondamentali +paese +esponenti +democratici +anziché +attaccare +governo +litigano +massacrano +candidato +forte +polemiche +buon +governo +passato +strano +partito +democratico +americano +😉 +mozione +sfiducia +matteo +salvini +stata +messa +calendario +settembre +tratta +decisione +assurda +dovuto +votare +prima +presenza +ministro +interno +alimenta +altro +odio +rancore +tensione +caccia +diverso +insulti +giornalisti +scandalo +milioni +euro +sottratti +italiani +impiegati +modo +opaco +strane +connessioni +dirigenti +leghisti +funzionari +russi +sequestro +alto +mare +profughi +richiedenti +asilo +dimostrano +volta +matteo +salvini +adeguato +ruolo +garante +sicurezza +cittadini +italiani +settembre +vogliamo +mobilitare +donne +uomini +buona +volontà +cuore +sorti +comunità +italiana +rassegnano +demordono +chiediamo +insieme +dimissioni +matteo +salvini +facciamolo +alta +voce +senza +paura +mai +momento +necessario +sentire +voce +oppone +modello +culturale +odio +violenza +verbale +oggi +svimez +dice +mentre +italia +salvini +maio +tornata +zero +sud +ancora +peggio +sotto +zero +dobbiamo +tornare +crescere +dobbiamo +sbloccare +infrastrutture +dobbiamo +creare +posti +lavoro +navigator +farlo +rotto +incantesimo +sembra +unico +problema +italia +immigrazione +problema +altro +immigrazione +emigrazione +ragazzi +sud +vanno +estero +problema +immigrazione +illegalità +reati +vanno +puniti +senza +badare +colore +pelle +reo +problema +immigrazione +economia +ferma +vanno +rilanciate +opere +pubbliche +statista +toninelli +bloccato +modo +assurdo +oggi +primo +giorno +agosto +mese +relax +chiacchiere +riusciremo +parlare +veri +problemi +italia +continueremo +essere +bloccati +incantesimo +salvini +problema +solo +soltanto +sempre +immigrazione +mettiamocela +tutta +italia +merita +dibattito +serio +civile +italia +tornata +crescere +italia +inchiodato +adesso +istat +dice +zero +zero +crescita +pil +zero +idee +economiche +maio +salvini +zero +altro +credibilità +internazionale +conte +zero +opere +sbloccate +toninelli +giustificarsi +adesso +citano +dati +lavoro +senza +rendersi +conto +posti +lavoro +cresciuti +jobsact +credete +fatto +disegnino +così +capisce +maio +premessa +numero +utilizzato +mezzi +uomini +forze +ordine +divertire +figli +lega +stelle +massacrato +massacrato +chiesto +dimissioni +social +travaglio +occupato +banchi +governo +battista +marciato +palazzo +chigi +meloni +salvini +altro +organizzato +sit +sotto +caserme +commissariati +firenze +profili +social +figli +stati +presi +assalto +insulti +minacce +premessa +numero +matteo +salvini +distruggendo +reputazione +viminale +interventi +sguaiati +modalità +rozze +scelte +controproducenti +continuo +pensare +stato +altro +ennesima +vergognosa +bufala +foto +foto +funerale +ascoli +alcune +vittime +terremoto +eppure +ancora +oggi +migliaia +persone +credono +fake +news +messe +giro +arte +altro +attaccarmi +occorre +grande +sfida +educativa +sconfiggere +fake +news +restituire +dignità +confronto +scontro +politico +battaglia +mollo +mon +mollerò +solo +centimetro +continua +soap +opera +chiamata +governo +oggi +salvini +fa +offeso +maio +definito +quell +altro” +vette +altissime +insomma +mentre +quell +altro +litigano +produzione +industriale +luglio +fa +meno +fonte +csc +pulci +pil +tornati +zero +diamo +mossa +vanno +sbloccate +infrastrutture +posti +lavoro +altro +notav +reddito +cittadinanza +grande +emozione +vedere +luca +parmitano +parlare +mondo +intero +riscaldamento +globale +dopo +accordi +parigi +italia +orgogliosamente +firmato +tempi +governo +sembra +essersi +fermato +grazie +luca +forza +messaggio +circondati +populismo +fake +news +dobbiamo +ripartire +educazione +studio +formazione +agosto +ciocco +lucca +ospiteremo +scuola +estiva +under30 +altro +ultime +ore +iscriversi +esperienza +diversa +tanto +studio +solo +studiando +combatteremo +cialtroneria +governa +sciacalli +possono +stare +parlamento +dopo +omicidio +brigadiere +mario +cerciello +rega +deputata +destra +aggredito +strumentalmente +sostenendo +africani +altro +responsabile +morale +politico” +accaduto +comitati +azione +civile +dati +obiettivo +raggiungere +25mila +firme +consegnare +settimana +camera +chiedendo +dimissioni +indegna +deputata +giorno +mezzo +state +raccolte +metà +firme +necessarie +aiuti +firmando +girare +appello +posto +sciacalli +parlamento +governo +litiga +eppure +cade +motivo +votare +spiega +oggi +corriere +sera +edizione +torino +giustificare +fatto +consiglio +comunale +altro +sfiduci +sindaco +appendino +votare +vanno +casa +molti +nemmeno +lavoro +ripartire +spiace +dirlo +stessa +ragione +grillini +crisi +parlamento +gettone +cittadinanza +importante +bevono +tav +ilva +decreto +sicurezza +immunità +salvini +eccetera +nessuno +ama +poltrone +casta +tempo +casta +onor +potè +digiuno +chiacchierata +avvenire +situazione +politica +mondo +cattolico +odio +regna +social +firmato +petizione +deputata +accusato +omicidio +roma +naturalmente +scuola +estiva +ragazzi +dite +pensate +qualche +mese +fa +insegnante +rivolse +uomini +divisa +urlando +dovete +morire” +tv +risposi +vedete +video +oggi +prof +commentato +morte +carabiniere +dicendo +meno” +altro +cambiato +idea +prof +insultano +forze +ordine +me +degni +educare +scuole +italiane +elianafrontini +oggi +ministero +infrastrutture +teoria +guidato +toninelli +ufficializzato +unione +europea +italia +favorevole +tav +toninelli +rifiutato +firmare +lettera +lasciato +farlo +dirigenti +bene +allora +cosa +aspetta +toninelli +firmare +lettera +dimissioni +firmi +tav +firmi +dimissioni +altre +strade +toninelli +capirà +ieri +parlamentare +destra +accusato +essere +responsabile +politico +morale +omicidio +carabiniere +mario +cerciello +rega +clima +odio +creando +infame +italia +deve +altro +stringere +intorno +arma +famiglia +persone +perbene +devono +chiedere +dimissioni +sciacalli +firmare +fate +girare +link +onore +giocatori +italiani +settebello +nuovo +campioni +mondo +pallanuoto +vera +propria +standing +ovation +merita +coach +sandro +campagna +trionfo +molto +mano +piedi +viva +italia +stanotte +molto +difficile +prendere +sonno +largo +sicilia +morte +cento +persone +morte +annegate +morte +modo +atroce +giovane +carabiniere +mario +cerciello +rega +anni +appena +sposato +stato +ucciso +coltellate +turista +americano +durante +controllo +proprio +ieri +parlamento +licenziato +secondo +decreto +altro +sicurezza +salvini +pieno +demagogia +inefficace +visto +sicurezza +ottiene +dirette +facebook +purtroppo +clima +odio +serve +nessuno +pensate +parlamentare +destra +stamani +insulta +dicendo +responsabile +politico +morale +omicidio +convinta +stati +altro +noto +statista +luigi +maio +attacca +stamattina +davvero +strano +grillini +affannino +dire +renzi +finito” +poi +però +giorni +pre +occupino +me +stavolta +argomento +tav +maio +dice +renzi +notav +dico +caldo +poverino +però +proviamo +spiegare +cose +benino +ordine +buon +altro +maio +magari +stavolta +capisce +chissà +sempre +sostenuto +tav +torino +palermo +passando +persino +ponte +stretto +sempre +difeso +forze +ordine +violenti +notav +cominciare +veniva +condannato +aver +invaso +cantiere +preso +sassate +poliziotti +criticato +alcuni +casi +percorsi +altro +terribile +notizia +roma +omicidio +carabiniere +opera +killer +sorpreso +rubare +responsabilità +istituzionali +adesso +assicuri +patrie +galere +killer +condoglianze +famiglia +arma +assurdo +devastante +morire +così +bello +clima +ieri +castrocaro +brava +sindaca +marianna +tonellato +rilanciando +comunità +festival +tanta +gente +molte +idee +voglia +partecipare +anno +dopo +ricordo +sergio +marchionne +grande +italiano +ricordo +parole +nuova +stagione +doveri +solo +diritti +concetto +oggi +vero +mai +piccolo +josephtidd +anno +giocatrice +orlando +pride +carsonpickett +anni +molto +comune +entrambi +amano +calcio +sportivi +entrambi +parzialmente +perso +braccio +altro +sinistro +mamma +joseph +raccontato +piccolo +dopo +partita +durante +viaggio +auto +ritorno +casa +fatto +altro +ridere +agitare +braccio +sinistro +felice +aver +trovato +nuova +amica +simile +me +immagine +bella +giornali +oggi +quando +sport +pura +autentica +smisurata +bellezza +qualcosa +grande +sorrisi +oggi +morto +rutger +hauer +attore +molti +film +successo +blade +runner +scena +vedete +scene +belle +cinema +mondiale +me +scena +senso +vita +altro +morte +esplode +modo +straordinario +primo +farmi +apprezzare +blade +runner +stato +liceo +prof +religione +don +paolo +bargigia +voluto +molto +bene +stato +me +maestro +vero +don +paolo +vedere +film +blade +runner +spingeva +farci +domande +grandi +temi +cuore +uomo +oggi +rutger +hauer +lasciato +proprio +anno +blade +runner +ambientato +viene +brivido +rivedendo +scena +ripropongo +augurandovi +buona +notte +augurandovi +augurandomi +vivere +sempre +persone +capaci +farsi +domande +profonde +autentiche +piene +senso +domani +tempo +guardare +venti +minuti +video +riassunto +credo +ministro +interno +forse +stupirete +frase +realtà +dovere +credere +altro +ministro +interno +almeno +fino +prova +contraria +salvini +detto +pronto +denunciare +coloro +legano +nome +lega +soldi +russi +bene +ministro +allora +unica +chance +davvero +pulito +dici +davvero +onesto +dici +davvero +paura +devi +denunciare +legato +nome +lega +soldi +russi +unico +signore +devi +denunciare +gianluca +savoini +sì +proprio +amico +braccio +destro +portato +russia +uomo +lega +unico +legare +nome +lega +rubli +chiedendo +russi +tangente +stato +proprio +savoini +allora +caro +ministro +denunci +savoini +paura +venga +fuori +altro +impressione +beautiful +venendo +noia +quando +lasciate +facebook +accettate +confronto +televisivo +americana +potete +continuare +fuggire +coraggio +diretta +senato +annunciato +stamattina +andiamo +diretta +facebook +senato +casualmente +stessa +ora +parleranno +piccioncini +salvini +maio +interessati +trama +beautiful +seguite +parlare +politica +aspetto +😁 +messo +mese +capire +bisognava +uscire +euro +mesi +capire +80€ +andavano +tenuti +mesi +capire +fatturazione +elettronica +serviva +ora +dopo +appena +anno +dicono +sì +tav +cattivi +arrivano +dopo +basta +avere +pazienza +tempo +galantuomo +fatto +parte +scout +cattolici +conosce +storia +aquile +randagie +gruppo +ragazzi +milanesi +sfidarono +fascismo +attività +scout +bellissima +impervia +val +codera +altro +stessa +valle +divenne +poi +transito +aiutare +ebrei +raggiungere +svizzera +durante +guerra +storia +andrea +ghetti +detto +baden +amici +fa +venire +ancora +brividi +molti +fortuna +conoscere +ascoltare +vittorio +ghetti +fratello +baden +salire +compagni +clan +val +codera +volte +aver +incontrato +storia +aquile +randagie +stato +dono +me +oggi +giornali +annunciano +uscita +film +dedicato +quei +ragazzi +antifascisti +liberi +forti +spero +altezza +aspettative +spero +aiuti +tanti +ragazzi +oggi +conoscere +storia +val +codera +alcuni +giovani +coraggiosi +scout +italiani +vanno +fieri +membri +commissione +tav +contrari +favorevole +toninelli +fa +caccia +senza +ragione +unico +favorevole +pierluigi +coppola +incredibile +firmato +interrogazione +parlamentare +collega +margiotta +chiedere +spiegazioni +intanto +domanda +quando +governo +dirà +sì +tav +toninelli +caccerà +solo +servirà +rimpasto +togliergli +poltrona +ripropongo +chiacchierata +stamani +gaia +tortora +omnibus +la7 +buona +giornata +tutte +volte +intervista +salvini +maio +parte +qualcuno +pd +attacca +abituato +problema +mentre +ieri +sera +difendevo +comunità +donne +uomini +pd +schifose +strumentalizzazioni +maio +vicenda +poveri +bambini +bibbiano +altri +aprivano +grillini +penso +pd +altro +dovrebbe +occuparsi +fare +opposizione +governo +me +altra +storia +vuole +chiarezza +volta +tutte +allora +prendo +serio +parole +oggi +dario +franceschini +intervista +metà +attribuisce +me +colpa +ciò +successo +mesi +metà +fa +elogio +movimento +altro +volo +verso +italia +leggo +polemiche +bibbiano +me +compie +violenza +bambini +punito +senza +pietà +violenza +piccoli +atto +odioso +possa +esistere +errore +orrore +dunque +responsabili +paghino +magistratura +individui +colpevoli +senza +nuovo +tribunale +popolo +social +altro +media +decidere +responsabile +no +vogliamo +giustizia +giustizia +giustizia +sbagliato +chiunque +deve +pagare +senza +sconti +ore +stelle +lega +attaccano +testa +bassa +attribuendoci +colpe +ciò +avvenuto +bibbiano +incredibile +potendo +parlare +governo +cercano +diversivo +altro +violenza +notav +parte +forze +ordine +sempre +senza +senza +giorni +belli +pieni +montana +parco +yellowstone +discutere +futuro +trovato +yoghi +bubu +eroi +infanzia +tante +idee +futuro +buona +domenica +ritorno +trovate +intervista +corriere +oggi +maria +teresa +meli +crisi +governo +rubli +benetton +sfiducia +scuola +estiva +modo +fare +opposizione +quel +magone +prende +quando +altro +estero +vedi +italia +considerata +paese +magnifico +viene +scartata +investitori +instabilità +politica +buona +domenica +parco +yellowstone +ricordate +fake +news +vacanza +lamborghini +ibiza +foto +fatta +quando +festeggiare +nuove +assunzioni +oggi +giornali +riportano +lamborghini +firmato +nuovo +altro +contratto +diritti +lavoratori +bravi +italia +funziona +lavoro +qualità +può +fare +altro +reddito +cittadinanza +gronda +opera +fondamentale +genova +stelle +dicono +no +sempre +beppe +grillo +voleva +mandare +esercito” +impedirne +realizzazione +oggi +toninelli +blocca +gronda +finché +qualcuno +blocca +toninelli +italia +resterà +ferma +servono +infrastrutture +no +dirvi +fiorentini +tempo +scrivere +cosa +cuore +luna +arriva +risposta +esilarante +fiorentini +meravigliosi +anni +fa +mondo +osservava +sorpreso +impresa +alcuni +uomini +superato +ogni +limite +regalato +momento +indimenticabile +storia +impresa +senza +altro +tempo +affascina +tutt +oggi +scolorisce +minimamente +fronte +altre +imprese +moderne +conserva +intatta +forza +eroismo +coloro +lavorato +affinché +impossibile +diventasse +realtà +anni +fa +ultimo +scudetto +fiorentina +saunasegaarmstrong +conquista +luna +pagina +storia +timore +bellezza +vittoria +uomo +limiti +successo +americano +sognato +kennedy +inizio +anni +dopo +aver +subito +cocente +sconfitta +russi +ogni +trionfo +comincia +caduta +ansia +mondo +intero +incollato +tv +seguire +istante +dopo +istante +altro +sbarco +mentre +casa +bianca +nixon +tavolo +già +pronti +discorso +parlare +nazione +caso +disastro +celebrare +eroi” +scomparsi +conquista +luna +piccolo +passo +uomo +grande +passo +umanità” +segna +svolta +storia +uomo +forse +persino +normale +paese +ancora +altro +conferma +sole +ore +oggi +posti +lavoro +bisogna +avere +giuste +competenze +ragazzi +detto +forza +futuro +reddito +cittadinanza +lavoro +reinventare +studiare +studiare +studiare +altroché +sussidi +navigator +immagine +segna +trionfo +fake +news +proposito +brexit +candidato +primo +ministro +boris +johnson +attacca +europa +legge +assurda +sbagliando +legge +fatta +regno +altro +unito +bruxelles +campagna +brexit +stata +tutta +bugia +fin +primo +giorno +vinto +referendum +dicendo +brexit +stata +semplice +positiva +uk +oggi +brexit +incredibile +caos +istituzionale +fake +news +puoi +vincere +referendum +poi +vieni +sconfitto +realtà +inglesi +verificando +spese +tutta +leggere +intervista +ceo +microsoft +nadella +bellissimo +passaggio +spiega +importanza +imparare +vive +condizione +disabilità +figlio +tecnologia +basta +occorre +umanità +occorre +umanesimo +normale +esista +paura +ogni +uomo +importante +accompagnata +coraggio” +memoria +paolo +borsellino +agostino +emanuela +vincenzo +walter +eddie +claudio +martiri +paese +cosa +fare +subito +presentare +mozione +sfiducia +salvini +stelle +votano +finisce +esperienza +peggior +governo +storia +repubblicana +stelle +salvano +nuovo +vicenda +rubli +vicenda +ruby +perso +ogni +residua +credibilità +opposizione +deve +fare +opposizione +altro +deve +fare +salvini +meritarsi +mozione +sfiducia +foto +g7 +finanziario +imbarazzante +uomini +giustificazioni +servono +quote +rosa +quote +rosa +soluzione +migliore +intanto +soluzione +governo +stato +altro +primo +momento +purtroppo +ultimo +avere +parità +genere +composizione +squadra +dobbiamo +lavorare +insieme +promuovere +partecipazione +femminile +vita +politica +economica +altrimenti +perdono +solo +donne +perdiamo +stamattina +giornali +parlare +crisi +governo +vice +insultano +tramite +interviste +parallele +premier +inesistente +scrive +lettere +mentre +qualcuno +segue +dossier +qualcuno +lavora +macché +litigano +mattina +sera +barba +noia +grado +governare +governino +rotto +vada +parlamento +certifichi +crisi +torni +votare +basta +telenovela +terza +categoria +italia +merita +pagliacciata +permanente +giornali +oggi +rilanciano +idea +geniale +accordo +stelle +qualcuno +forse +vorrebbe +provarci +davvero +chissà +poi +pensi +maio +gilet +gialli +battista +obama +sibilia +sbarco +luna +lezzi +fa +crescere +pil +caldo +taverna +vaccini +pensi +governo +altro +crede +scie +chimiche +parlamento +crede +sirene +pensi +benetton +tav +tap +pensi +olimpiadi +buttate +via +guerra +fatto +expo +ancora +basta +provi +finta +nulla +arriva +toninelli +question +time +ricorda +fa +ministro +repubblica +niente +quel +punto +favorevoli +costretti +mollare +idea +alleanza +stelle +me +colpo +genio +colpo +sole +grande +uomo +cultura +educato +lettura +donne +uomini +mondo +grande +italiano +rip +camilleri +segnalo +scuola +estiva +meritare +italia +terrà +ciocco +provincia +lucca +mercoledì +agosto +fino +sabato +agosto +scuola +riservata +ragazze +ragazzi +egual +altro +numero +nati +dopo +1° +gennaio +fino +dicembre +ragazzi +giorni +ogni +giorno +ospiti +diversi +responsabile +progetto +professoressa +elena +bonetti +costo +100€ +compreso +ovviamente +arrivare +coprire +cifra +bisogno +contributo +generosi +finanziatori +personalmente +deciso +mettere +primo +equivalente +stipendio +mensile +agosto +ricevo +senatore +vogliamo +dire +altro +buon +lavoro +nuova +presidente +commissione +europea +ursula +von +der +leyen +prima +donna +ultima +insieme +dovremo +aiutarla +restituire +anima +europa +ideale +speranza +passione +viva +europa +buon +lavoro +signora +presidente +oggi +conferenza +atene +futuro +europa +bel +dibattito +vero +grecia +elevato +debito +pubblico +tale +debito +onorato +vero +europa +grande +debito +pubblico +verso +altro +grecia +debito +riconoscenza +filosofia +democrazia +cultura +mito +stesso +europa +mito +greco +disprezza +proprio +passato +disprezza +stesso +viva +grecia +europa +foto +©stavros +giannoulis +benetton +salveranno +alitalia +maio +proclami +populisti +guardate +video +allucinante +maio +benetton +precipitare +sostanzialmente +aerei” +domando +solo +ministro +davvero +pazzo +finge +soltanto +tristezza +quindi +gruppo +benetton +gestirà +alitalia +ottima +scelta +termini +qualità +management +solidità +investitore +dopo +detto +benetton +maio +toninelli +vergognarsi +semplicemente +ridicoli +vabbè +ormai +vale +signore +parla +ufo +lavora +palazzo +chigi +ridete +pagate +tasse +consigliere +salvini +relazioni +internazionali +altro +andava +russia +prima +referendum +invitato +savoini +famosa +cena +putin +salvini +affida +relazioni +internazionali +crede +ufo +bastavano +vaccini +scie +chimiche +sirene +mediterraneo +mancavano +ufo +dire +tempo +italia +paese +scienza +cultura +dovevano +cambiare +italia +europa +mondo +fine +cosa +resterà +falsificava +curriculum +aboliva +povertà +invitava +gente +putin +insaputa +vinto +campagna +elettorale +racontando +fakenews +oggi +realtà +inchioda +parole +campioni +immensi +partita +pazzesca +grazie +wimbledon +emozioni +regalato +complimenti +djokovic +piedi +gigante +chiamato +federer +mamma +finale +wimbledon +oggi +festa +nazionale +francia +auguri +cugini +oltralpe +tempo +alleati +quando +maio +governo +italiano +preferisce +parlare +gilet +gialli +macron +oggi +parigi +presidente +scommette +futuro +rilancia +investimento +francese +spazio +italia +occupiamo +sapere +invitato +savoini +cena +putin +differenze +quando +uomo +trova +combattere +leucemia +fa +coraggio +forza +sinisa +mihajlovic +solo +parola +usare +rispetto +gigantesco +bocca +lupo +mister +megan +rapinoe +capitano +goleador +squadra +americana +campione +mondo +calcio +posizioni +spesso +strong” +dice +discorso +vittoria” +bellissimo +parla +solo +mondo +calcio +prendetevi +minuti +ascoltarla +vale +pena +😊 +rivisto +stamani +semifinale +federer +nadal +wimbledon +ama +tennis +cosa +voglio +dire +solo +match +solo +torneo +solo +wimbledon +detto +poco +bellezza +punto +clima +fantastico +grazie +tanta +gente +tante +idee +finalmente +strategia +dire +bastafake +educazione +scuola +estiva +proposta +legge +idee +futuro +usciamo +milano +pieni +entusiasmo +grazie +diretta +milano +bastafake +poco +diretta +facebook +milano +fakenews +bastafake +finiti +urlavate +deriva +autoritaria +perchè +costituzione +tocca +adesso +tacete +riforma +costituzionale +gridavate +ogni +giorno +scandalo +qualsiasi +cosa +adesso +tacete +davanti +vera +ipotesi +corruzione +internazionale +finanziamento +illecito +parte +potenza +altro +straniera +dicevate +crescita +troppo +bassa +adesso +tacete +davanti +stagnazione +pil +tornato +quota +zero +lamentavate +uomo +solo +comando +adesso +tacete +davanti +sòle +litigano +giorni +finiti +sempre +domani +milano +racconteremo +continuare +battaglia +educativa +culturale +governo +bloccando +italia +oggi +salvini +detto +così +avanti +volta +accordo +così +avanti +così +indietro +colpa +lega +stelle +planche +des +belles +filles +tour +france +arrivo +mitico +italiani +dopo +primi +posti +nibali +aru +oggi +giovane +giulio +ciccone +arriva +secondo +conquista +maglia +gialla +storica +spettacolo +ciclismo +amici +popolo +riviera +romagnola +dà +bellissimo +esempio +voglia +lavorare +reagire +superare +qualsiasi +ostacolo +poche +ore +dopo +tempesta +nuovo +aperto +concittadini +mostrano +strada +tutta +italia +dovrebbe +seguire +tenere +botta +sempre +bravissimi +oggi +salvini +dice +querelo +meno +ministro +basta +quereli +sola +persona +uomo +chiede +soldi +russi +sovranisti +pagare +potenze +straniere +salvini +spiega +mondo +intero +quali +veri +rapporti +russi +dice +maio +passato +lega +paragonato +renzi +mica +lamentato” +no +certo +unico +potersi +lamentare +paragone +😀 +esattamente +anni +fa +italia +vinceva +coppa +mondo +calcio +italia +lippi +cannavaro +totti +piero +buffon +pirlo +ultima +italia +vincente +mentre +speriamo +ragazzi +ct +altro +mancini +possano +prima +poi +replicare +impresa +viene +sorridere +ricordare +ciò +diceva +allora +matteo +salvini +tifava +francia +noto +tricolore +simbolo +oppressione” +oggi +convertito +prima +italiani” +male +percorso +resta +aspettare +altri +tredici +anni +troveremo +volontario +ong +salvare +vite +mediterraneo +ama +tennis +oggi +cuore +diviso +irraggiungibile +federer +giovane +promessa +berrettini +matteo +oggi +numero +mondo +sappiamo +crescerà +ancora +vederlo +wimbledon +federer +oggi +emozione +fantastica +spettacolo +tennis +finita +vacanza +ortisei +breve +intensa +bici +camminate +arcobaleno +meraviglia +dolomiti +patrimonio +umanità +grecia +culla +democrazia +scelto +alexis +tsipras +perso +vorrei +oggi +venisse +riconosciuto +onore +armi +notte +litigammo +furiosamente +consiglio +altro +europeo +lato +francia +italia +grecia +altra +molti +paesi +nord +sedevo +accanto +alexis +notte +so +sofferto +combattuto +dovuto +trovare +compromesso +resto +convinto +terribile +discussione +tenendo +forza +atene +dentro +famiglia +europea +salvato +onore +grecia +salvato +onore +europa +adesso +buon +lavoro +nuovo +governo +verranno +mai +italia +porti +chiusi +sbarcheranno +proclami +salvini +durano +media +poco +mezzoretta +fine +sbarcano +italia +sbarcano +sbarcano +silenzio +capitano +rabbia +cambia +discorso +butta +crepe +nutella +piatto +tortelli +quando +sbarcano +altrove +altro +malta +accogliamo +equivalente +numero +migranti +imbarazzante +pantomima +barzelletta +condotta +pelle +esseri +umani +verità +immigrazione +serve +salvini +solo +dettare +agenda +risolvere +questione +problema +proclami +durano +tempo +aggiornamento +pagina +altro +condanna +beppe +sala +vizio +forma +rispettata +vanno +rispettate +tutte +sentenze +toglie +nulla +successo +strepitoso +stato +expo +vera +svolta +milano +italia +tornassimo +indietro +rifarei +fatto +dico +sindaco +sala +vai +avanti +mollare +parlare +immigrazione +dicendo +cose +significa +fare +politica +fare +polemica +60secondi +renzirepubblica +scritto +lettera +repubblica +parlare +immigrazione +modo +serio +civile +umano +spero +voglia +leggerla +fermi +titolo +vada +fino +fondo +emergenza +paese +altro +immigrazione +mancanza +legalità +emergenza +culle +vuote +emergenza +questione +educativa +leggo +volentieri +commenti +imbarazzante +ricevere +telefonate +amici +abitano +italia +vedono +immagini +spazzatura +roma +chiedono +bene +italia +incapacità +assoluta +amministrazione +roma +altro +sindaco +raggi +fa +male +paese +grillini +vinto +anni +fa +gridando +onestà” +diceva +benedetto +croce +onestà +politica +altro +capacità +politica +inutile +gridare +onestà +riesce +sistemare +nettezza +sovranisti +promesso +dopo +elezioni +europee +italia +conterà +ennesima +fakenews +oggi +scopriamo +contiamo +meno +unico +incarico +europeo +italiano +pd +60secondi +spread +scende +splendida +notizia +felici +tifo +italia +ogni +risultato +positivo +sottolineato +fateci +caso +quando +maio +salvini +dicono +assurdità +spread +cresce +quando +tacciono +seri +spread +cala +spread +dunque +direttamente +proporzionale +follie +altro +governa +vai +balcone +abolisci +povertà +proponi +minibot +spread +schizza +alto +torni +normale +segui +regole +europee +spread +cala +difficile +basta +essere +normali +imbarazzante +vedere +grillini +leghisti +festeggiare +discesa +spread +schizzato +massimi +colpa +tutelare +risparmiatori +italiani +basterebbe +togliere +password +social +salvini +maio +spread +tornerebbe +sotto +difficile +basta +essere +normali +buon +lavoro +david +sassoli +eletto +presidente +parlamento +europeo +bocca +lupo +ursula +von +der +leyen +charles +michel +josep +borrell +christine +lagarde +europa +intera +aspetta +molto +nuovi +leader +stancato +sentirmi +dire +ah +creato +solo +lavoro +tempo +determinato +solo +lavoro +precario +fake +news +galattica +statistiche +ultimi +anni +basate +dati +istat +altro +jobsact +stata +misura +importante +creare +posti +lavoro +tempo +indeterminato +dice +contrario +semplicemente +mente +ogni +tanto +capita +leggere +buona +notizia +giusto +sottolinearla +ricordate +app18 +18enni +cultura +app +qualcuno +chiamava +bonusrenzi +iniziativa +voluto +dopo +strage +bataclan +finanziato +volte +populisti +cambiata +cancellata +poi +reintrodotta +dopo +altro +polemiche +dire +altri +paesi +copiando +adesso +buona +notizia +governo +recuperato +taglio +fatto +qualche +mese +fa +quindi +ragazzi +bonusrenzi +spendere +musica +libri +teatro +mondo +oggi +niente +rivoluzionario +ragazzo +entra +biblioteca +museo +felice +buone +idee +forti +qualsiasi +ideologia +davvero +finalmente +governo +attuale +cambiato +idea +dobbiamo +solo +essere +felici +viva +nati +viva +bonus +cultura +nato +firenze +studiato +firenze +stato +eletto +firenze +vivo +firenze +difficile +dunque +accusi +essere +filo +senese +settembre +montaperti +qualche +altro +problemino +risolvere +senesi +quando +arriva +giorno +palio +trovo +tutte +volte +costretto +ammettere +nessuna +manifestazione +popolare +forte +autentica +organizzazione +contrade +gara +piazza +campo +cene +giorno +prima +te +deum +benedizione +cavallo +mai +visto +niente +simile +mondo +viva +palio +milano +luglio +presenteremo +dettagliato +piano +fakenews +iniziative +parlamento +tribunale +piazze +forse +impossibile +ripulire +web +inquinamento +propaganda +combattere +fake +news +ormai +priorità +assoluta +vediamo +milano +cronaca +roma +oggi +luglio +tristezza +vedere +capitale +ridotta +così +colpa +solo +raggi” +dicono +grillini +ok +dopo +mille +giorni +governo +roma +senso +altro +continuare +dare +colpa +altri +bravi +facebook +poi +scendi +strada +vedi +altro +vinto +fake +news +sconfitti +realtà +combattono +fake +news +cosa +parliamo +luglio +ore +teatro +elfo +puccini +milano +iscriversi +http +bit +bastafakenews +ragazzemondiali +fatto +sognare +grazie +fatto +grazie +ciò +rappresentate +ora +diritti +atlete +tutte +atlete +teresa +bellanova +splendida +donna +grande +lavoratrice +cresciuta +puglia +cosa +significhi +faticare +lavorare +vivere +quando +chiamata +governo +stata +prima +fila +tutte +crisi +altro +occupazionali +passione +pari +solo +competenza +ieri +parlato +aula +taranto +città +presa +insulti +minacce +critiche +sempre +lavorato +interesse +pubblico +riaprire +ilva +mettendo +sicurezza +ambiente +garantendo +futuro +lavoratori +invece +cialtroni +oggi +governano +scritto +decreto +sbagliato +porterà +chiusura +ilva +settembre +teresa +fatto +bellissimo +discorso +spiegare +scelta +follia +fine +sembrato +normale +abbracciarla +dirle +voglio +bene +facile +nessuno +essere +insultato +neanche +rende +conto +danno +proprio +paese +orgoglioso +essere +amico +teresa +orgoglioso +stare +parte +cosa +vuol +dire +lavorare +vivere +solo +giorno +maio +attaccato +sicurezza +posto +lavoro +operai +ilva +lavoratori +atlantia +genio +ancora +capito +compito +chiudere +crisi +occupazionali +aprirne +nuove +cinquanta +anni +fa +rivolta +stonewall +segnò +svolta +storia +diritti +civili +solo +america +vengo +storia +superato +diffidenze +coltivato +amicizie +imparato +conoscere +compagni +compagne +strada +aiutato +approfondire +riflettere +ancora +adesso +penso +alessia +commuovo +grazie +altro +incontri +oggi +italia +legislazione +diritti +civili +frutto +impegno +tanti +frutto +atto +coraggio +governo +forza +mettere +fiducia +andata +finire +male +anno +dopo +ius +soli +dicono +avere +caratteraccio +vada +moda +politica +forse +altro +intervento +aula +senato +decreto +crescita +decrescita +ricoveratelo +ora +andare +letto +finito +pensare +discorso +domani +senato +provato +fuso +orario +dormo +stesso +letto +giorni +sonno +eppure +riesco +dormire +altro +immagine +quel +babbo +quel +bimbo +fa +accapponare +pelle +immagine +viene +america +lampedusa +qualche +isola +greca +fine +poco +importa +domando +domando +quando +perso +capacità +sconvolgerci +renderci +conto +italiani +popolo +migranti +antica +roma +storia +novecento +capire +padre +rischia +perde +vita +figlio +alternative +altro +ammiro +bocca +aperta +arrivo +alba +sopra +dolomiti +poi +malpensa +mentre +aspetto +coincidenza +fiumicino +compro +giornali +michela +dice +grazie +jobsact +assunto +altro +tempo +indeterminato +grazie +” +distanza +vita +reale +commenti +inquinati +troll +social +buongiorno +molti +commenti +stamani +olimpiadi +vengono +cittadini +sud +commenti +interessanti +dice +vinte +olimpiadi +solo +città +nord +qualcuno +dice +vittimismo +qualcuno +rassegnazione +qualcuno +criticando +governo +mai +scommesso +mezzogiorno +presidente +consiglio +altro +lottato +universiadi +napoli +capitale +cultura +matera +g7 +taormina +apple +napoli +rilancio +pompei +reggia +caserta +musei +archeologici +reggio +calabria +taranto +accelerazione +napoli +bari +sbloccaitalia +tanto +altro +basta +nodo +rimane +mezzogiorno +salva +altro +italia +vinto +resto +conta +paese +forte +forte +attacca +polemiche +meschine +oggi +leggo +olimpiadi +cambiato +idea +bene +salvini +attaccava +fenomeno +fiorentino” +voleva +olimpiadi +scriveva +me +ricoveratevelo +ora +primo +esultare +ormai +conosciamo +modo +altro +fare +idee +cambia +base +convenienza +momento +stelle +rivendicano +merito +sogno +italiano” +dopo +stati +virginia +raggi +prima +chiara +appendino +poi +negare +loro” +città +occasione +ormai +chiaro +vota +stelle +protesta +trova +classe +dirigente +fa +altro +60secondi +oggi +italia +vince +grandi +eventi +expo +olimpiadi +cambiano +città +sempre +creduto +vivalitalia +anni +fa +proprio +oggi +consumava +grande +autogol +storia +europea +calcio +no +brexit +inglesi +scelto +uscire +europa +base +promesse +dati +falsi +oggi +realtà +dimostra +tutta +campagna +elettorale +filo +brexit +basava +fake +news +sanità +immigrazione +bugie +vincere +referendum +poi +cittadini +pagare +danni +realtà +referendum +paese +cresceva +adesso +vede +economia +bloccata +regno +unito +of +course +oggi +lega +torna +indietro +minibot +meno +male +bravo +giorgetti +dice +servono +minibot +pagare +debiti +pa +chiedo +essere +serio +basta +bugie +anni +problema +pagamenti +pa +stato +notevolmente +ridotto +governi +ecco +dati +impressionanti +farmindustria +pagava +giorni +altro +fine +pagava +giorni +ricordate +rotto +scatole +tema +bene +oggi +media +bassa +privata +paga +giorni +può +continuare +inquinare +dibattito +fake +news +chiamiamo +cose +nome +minibot +semplicemente +megaballa +oggi +san +giovanni +tanti +auguri +firenze +città +perla +mondo” +meryl +streep +compie +anni +qual +secondo +capolavoro +potrei +dire +africa” +oppure +diavolo +veste +prada” +recente +post” +stupirò +me +stata +semplicemente +altro +perfetta +the +iron +lady” +ogni +caso +qualunque +opinione +credo +nessuno +possa +avere +dubbi +parlando +donna +strepitosa +gigante +cinema +tempi +prima +scelta +fatto +quando +diventato +sindaco +firenze +stata +sistema +cassonetti +interrati +adesso +girando +mondo +rendo +conto +gestione +altro +immondizia +nettezza +primo +problema +pratico +amministratore +tutte +capitali +sforzi +migliorare +raccolta +essere +pulite +tutte +quasi +tutte +roma +oggi +foto +inviato +amico +fallimento +virginia +raggi +tocca +mano +ogni +mattina +anzi +meglio +toccarlo +basta +vedere +annusare +vero +problemi +roma +nati +giunta +raggi +riuscire +peggiorare +sistema +rifiuti +niente +facile +quando +eletta +raggi +permisi +suggerire +copiare +sistema +cassonetti +interrati +attaccato +grillini +dicendo +firenze +funzionava +niente +tempo +galantuomo +vinto +fake +news +sconfitti +realtà +ancora +buona +domenica +pausa +domenicale +meeting +altro +arriveranno +domandare +polemici +resti +estero +invio +abbraccio +affettuoso +anticipato +state +sereni” +torno +prestissimo +altro +senato +discute +decreto +crescita +chiesto +capogruppo +intervenire +aula +salvini +maio +parlano +crescita +distrutto +crescita +italiana +decreto +crescita +stessa +credibilità +zio +paperone +fa +decreto +generosità +berlusconi +fa +decreto +castità +dracula +fa +decreto +donazione +sangue +aspettiamo +senato +diremo +no +decreto +detto +no +crescita +esattamente +anni +fa +firenze +affidava +palazzo +vecchio +gruppo +giovani +appassionati +pedonalizzazioni +auto +elettriche +volumi +zero +raddoppio +biblioteche +scuole +sociale +tram +notti +bianche +cultura +altro +concerti +tante +iniziative +allora +oggi +vanno +avanti +grande +dario +allora +vicesindaco +città +cresce +media +europea +sindaco +bella +città +mondo +può +esistere +onore +grande +grazie +firenze +tenyearsago +salvini +vinto +elezioni +promettendo +luna +flat +tax +seicentomila +rimpatri +via +accise +benzina +asili +nido +via +fornero +adesso +disperato +limita +piagnucolare +chiedendo +miliardi +direte +ohi +miliardi +tanti +privato +certo +seri +ridotto +tasse +molto +altro +senza +casino +miliardi +meno +costo +80€ +riduzione +irap +costo +lavoro +abolizione +imu +riduzione +ires +parte +progetto +superammortamento +industria +insomma +ben +vada +caos +giorni +date +miliardi +salta +governo +nasconde +altro +emanuele +crestini +sindaco +rocca +papa +oggi +morto +conseguenze +esplosione +avvenuta +comune +presumibilmente +dovuta +fuga +gas +anziché +mettersi +salvo +potuto +sindaco +rimasto +dare +mano +purtroppo +ustioni +ferite +fine +meglio +oggi +emanuele +altro +lasciato +sindaco +crestini +comportato +eroe +scrivono +giornali +dico +comportato +sindaco +vorrei +parlano +male +politica +ricordino +ogni +giorno +esempio +persone +migliaia +cittadine +cittadini +qualunque +colore +politico +crestini +esempio +sindaco +civico” +bene +proprio +lavoro +servendo +propria +comunità +emanuele +fatto +fino +estremo +sacrificio +buon +viaggio +sindaco +grazie +averci +insegnato +cosa +significhi +fino +fondo +espressione +primo +cittadino” +dunque +doveva +essere +anno +bellissimo +invece +dice +istat +pil +secondo +trimestre +tornerà +negativo +tempo +date +occhio +numeri +professor +fortis +http +bit +12mesiconilsegnomeno +populisti +vinto +fake +news +sconfitti +realtà +oggi +parigi +parlare +difesa +europea +nuovo +ordine +mondiale +abbracciato +collega +avversario +politico +però +stimo +molto +guido +crosetto +dimostra +ogni +giorno +possono +avere +idee +politiche +diverse +mantenere +rispetto +amicizia +cosa +allucinante +ore +ore +draghi +aiuta +europa +dunque +aziende +italiane +competere +americani +cinesi +mondo +salvini +schiera +trump +attacca +draghi +ormai +mondo +rovescia +cari +imprenditori +veneti +lombardi +sentite +presi +giro +lega +votate +draghi +aiutando +salvini +boicottando +oggi +pechino +parlare +educazione +cultura +davanti +tremila +ragazzi +cinesi +euro +cultura +euro +sicurezza +principio +governo +richiama +sempre +grande +attenzione +ovunque +testa +alta +mondo +risposta +mario +monti +differenze +governo +salvini +maio +numeri +fatti +dati +chiacchiere +zero +oggi +seconda +semifinale +calcio +storico +meraviglia +santa +croce +ricordate +quando +parlato +firenzesecondome +oggi +ex +premier +mario +monti +scritto +lungo +articolo +corriere +sera +dire +flessibilità +ottenuta +governo +stata +errore +numeri +carità +parlare +numeri +austerity +monti +italia +andata +pil +milioni +occupati +pressione +fiscale +aumentata +cominciare +altro +imu +rapporto +debito +pil +peggiorato +circa +punti +percentuali +flessibilità +arrivati +occupati +diventati +milioni +pressione +fiscale +diminuita +cominciare +imu +irap +rapporto +debito +pil +rimasto +stabile +monti +pontifica +giorni +corriere +tv +dimentichiamoci +mai +altro +tutta +famiglia +renzi +completo +staffetta +sostegno +maria +bambini +sindrome +down +associazione +trisomia +buonsabato +prendono +soldi +messo +superammortamento +industria +danno +comuni +predissesto +tolgono +soldi +imprenditori +vogliono +rendere +competitive +aziende +creare +posti +lavoro +coprire +buchi +amministratori +incapaci +pure +coraggio +chiamarlo +decreto +crescita +senza +parole +senza +vergogna +arrivato +albergo +rinuncio +cena +alleno +vista +maratona +novembre +km +minuti +può +fare +riprendendo +ritmo +giusto +ora +stretching +nanna +buona +notte +detto +battista +minibot +cosa +intelligente +secondo +dunque +draghi +sbaglia +dovremmo +fidarci +battista +genio +incompreso +economia +mondiale +antipopolare +ora +finirla +retorica +vale +almeno +economia +draghi +ragione +battista +torto +minibot +mega +idiozia +punto +possiamo +parlare +cose +serie +adesso +ragazzemondiali +iniziano +grande +bellissima +gioia +last +minute +forzaazzurre +diretta +bologna +repubblica +idee +intervistato +stefano +cappellini +quando +andavo +vedere +zia +giocare +serie +b +bomber +strepitosa +rudy +calcio +femminile +sembrava +figlio +dio +minore +generazione +dopo +finalmente +cambiato +atlete +rendono +altro +orgogliosi +essere +italiani +🇮🇹 +dimostrano +calcio +femminile +figlio +dio +minore +basta +battutine +stupide +basta +stereotipi +ragazze +atlete +meravigliose +felici +fare +tifo +forza +azzurre +forza +ragazzemondiali +mondo +discute +brexit +rapporti +cina +usa +innovazione +tecnologica +cambiamento +climatico +italia +invece +ferma +giorni +guerra +salvini +maio +emendamenti +sblocca +cantieri +mondo +discute +controllare +intelligenza +artificiale +italia +invece +discute +controllare +toninelli +tragedia +volete +farsa +tutta +quando +premier +parla +nazione +deve +dire +qualcosa +importante +semplicemente +dire +qualcosa +leader +dovere +indicare +strada +avere +coraggio +essere +fantoccio +conferenza +stampa +conte +segna +oggi +figuraccia +istituzioni +palazzo +chigi +mai +storia +repubblicana +palesata +così +evidente +figura +premier +decide +conta +governa +oggi +giorno +triste +istituzioni +italiane +prima +maggioranza +fatta +attendere +finalmente +arrivata +primavera +continuo +allenamento +maratona +finalmente +sole +buona +settimana +amici +bellissima +iniziativa +cagliari +fiorentina +terra +santa +nome +davide +astori +famiglia +capitano +viola +decisiva +scrivere +pagina +solidarietà +bello +ricordare +concretamente +grande +atleta +grande +uomo +da13 +viva +italia +viva +repubblica +almeno +oggi +nessuna +polemica +orgogliosi +essere +italiani +dati +istat +dicono +oggi +dato +peggiore +mentre +quei +continuano +litigare +paese +smette +crescere +vola +spread +pagano +italiani +cambiamento +diretta +palazzo +giustiniani +diretta +facebook +discutiamo +insieme +andate +elezioni +europee +amministrative +cosa +domani +aspetto +domani +commenteremo +risultati +elettorali +intanto +stanotte +firenze +ricordiamo +strage +mafiosa +georgofili +parlato +documentario +ricordate +pernondimenticare +vittorio +zucconi +stato +maestro +giornalismo +soprattutto +persona +seria +mancherà +criticato +rip +buon +voto +soprattutto +quei +nati +votano +prima +volta +emozione +profonda +vedervi +andare +seggi +emozione +quest +anno +vive +famiglia +gesto +riaffermate +tramandate +valore +bellissimo +democrazia +grazie +matteo +salvini +ministro +interno +dovrebbe +dare +buon +esempio +rispettando +silenzio +elettorale +invece +violando +vergognosamente +regole +dovrebbe +primo +rispettare +utilizzo +altro +stesso +metodo +campagna +elettorale +limito +ricordare +figuracce +strasburgo +italia +fatto +colpa +parlamentari +europei +assenteisti +guardare +credere +vinto +referendum +dicendo +bugie +inquinando +campagna +fake +news +dovevano +rivoluzionare +anni +dopo +paese +fermo +crisi +senza +futuro +puoi +vincere +referendum +menzogne +poi +conto +paga +soprattutto +povera +gente +naturalmente +parlando +regno +unito +may +ultima +frase +campagna +elettorale +maio +scelto +dire +governo +lavoro +meno +stronzate” +pratica +annunciato +dimette +intervista +oggi +direttore +quotidiano +nazionale +michele +brambilla +graditi +commenti +fiero +scelta +apple +investire +napoli +sembrano +lontane +polemiche +allora +sud +terra +privilegiata +crescere +innovatori +digitali +nuovi +professionisti +altro +reddito +cittadinanza +mettiamoci +lavoro +studiare +quando +te +quando +perdi +mezzo +niente +nikilauda +rip +diretta +milano +carlo +calenda +anna +scavuzzo +irene +tinagli +caterina +avanza +grazie +già +coda +milano +incontro +stasera +carlo +calenda +anna +scavuzzo +irene +tinagli +caterina +avanza +treno +arrivando +impaziente +rivedere +tanti +amici +poco +partire +diretta +facebook +dopo +renzi” +frase +gentile +maio +salvini +usano +reciprocamente +insultarsi +lieto +essere +sempre +pensieri +italiano +preferirei +pensassero +cose +fare +tuttavia +onor +vero +vorrei +verbalizzare +essere +renzi” +bisogna +aver +creato +milione +posti +lavoro +dati +altro +istat +abbassato +imu +irap +costo +lavoro +ires +aumentato +salari +milioni +persone +80€ +preso +paese +pil +riportato +dato +diritti +leggi +unioni +civili +dopo +terzo +settore +autismo +caporalato +cooperazione +internazionale +fatto +governo +metà +donne +aumentato +fondi +altro +oggi +quotidiani +parlano +contributo +mila +euro +parte +azienda +leader +produzione +sigarette +elettroniche +campagna +quei +duri +puri +lega +nord +ricorda +qualcosa +altro +provate +rivedere +video +novembre +qua +sotto +votando +decreto +fiscale +quando +sorpresa +compare +bel +condono +aziende +producono +sigarette +elettroniche +pari +milioni +euro +già +governo +condoni +fatti +troppi +direi +fronte +vera +propria +marchetta +milioni +euro +beffa +beffa +caso +visto +voto +contrario +quell +emendamento +parte +stelle +paladini +onestà +no +zitti +favorevoli +qualcuno +butterà +prima +poi +occhio +chiamavano +onestà +oggi +presunto +premier +conte +mette +mani +avanti +facile +evitare +aumento +iva” +scusa +cosa +paghiamo +allora +italia +iva +aumenta +ottobre +grazie +lavoro +governi +adesso +cambiato +aumento +iva +schiaffo +cittadini +specie +poveri +salvini +vuole +rimuovere +striscioni +risposta +firenze +sparge +odio +rispondiamo +ironia +firenze +portatelalunga +mentre +italia +arranca +costretta +polemica +quotidiana +governo +litiga +molti +paesi +corrono +corea +sud +terra +piena +occasioni +opportunità +orgogliosa +tradizione +altro +pronta +scommettere +futuro +innovazione +aziende +leader +livello +mondiale +intelligenza +artificiale +robot +uso +big +data +5g +tante +sfide +davanti +italia +può +restare +indietro +abbraccio +seul +amici +tardoadolescenti +guidano +paese +continuano +litigare +giorni +oggi +spread +risale +oltre +quota +insistono +tanto +conto +pagano +italiani +cultura +odio +boomerang +salvini +strappa +telefonini +striscioni +maio +definisce +assassino +pensa +entrambi +squallidi +vanno +taranto +zone +rosse +vanno +piazza +insultano +manifesta +fine +realtà +prende +rivincita +tempo +presenta +conto +ultras +altro +politica +governa +leggi +esempi +insulti +nervosismo +deriva +mancanza +risultati +economici +tornati +quota +prepariamoci +palloncino +populista +scoppiare +qualcosa +muove +finalmente +qualche +anno +fa +denunciai +pubblicamente +pagine +facebook +rilanciavano +fake +news +oggi +dopo +mesi +dopo +referendum +elezioni +finalmente +pagine +milioni +visualizzazioni +notizie +false +diffamanti +state +chiuse +primo +passo +basta +continueremo +combattere +comitati +altro +civici +impegno +tanti +cittadini +buona +volontà +strategia +chiara +portare +giudizio +diffama +segnalare +facebook +diffonde +fakenews +fermare +fango +prossimi +mesi +novità +vedrete +tempo +galantuomo +davvero +domanda +intanto +stamattina +intervista +detto +me +salvini +utilizzato +altro +oggi +maggiorenne +uomo +diritti +soprattutto +doveri +cittadino +pieno +titolo +rimarrai +sempre +bambino +rivoluzionato +vita +mix +esplosivo +altro +energia +sensibilità +fratello +maggiore +imparato +sognare +crederci +buon +18° +compleanno +francesco +buona +strada +sindaco +rinuncia +indennità +pagare +borse +studio +legalità +giovani +accade +ercolano +ciro +buonajuto +solo +bravissimo +primo +cittadino +esempio +studenti +altro +terra +ferita +camorra +ciro +lavoro +bellissimo +me +stata +grande +gioia +condividere +entusiasmo +scuole +orgoglio +istituzioni +territorio +storie +bellissime +sud +vanno +valorizzate +grazie +ciro +grazie +ercolano +diretta +ercolano +sindaco +ciro +buonajuto +oggi +senato +arrivata +richiesta +discutere +legge +costituzionale +proposta +stelle +abolizione +cnel +sì +proprio +cnel +stelle +così +prima +insultano +poi +copiano +male +immagino +adesso +grandi +custodi +democrazia +schierati +referendum +coloro +altro +stati +servizio +permanente +deriva +autoritaria +danni +istituzioni +procurati +renzismo” +possano +svegliarsi +letargo +mesi +rassicurarci +fatto +vivi +bene +mesi +infatti +stati +silenziosi +sparate +vicepremier +fino +umiliazione +parlamento +legge +bilancio +evidentemente +problema +solo +abolizione +cnel +dite +paladini +costituzione +torneranno +finalmente +farsi +sentire +capire +apocalittici +avventati +certi +giudizi +settimana +fa +messi +osannato +tutta +stampa +mondiale +giocatore +grande +storia +calcio +insieme +pelè +commentatori +proprio +oggi +massacrano +senza +pietà +dopo +incredibile +sconfittta +barcellona +liverpool +verità +altro +calcio +politica +giudizi +affrettati +lasciano +tempo +trovano +quando +mettono +accordo +commentatori +😉 +frattempo +diciamo +verità +emozioni +regalato +doppia +semifinale +camp +nou +anfield +road +dimostrato +calcio +sport +magico +impressionante +unico +complimenti +liverpool +dimostrato +volta +può +credere +imprese +altri +giudicano +impossibili +aver +recuperato +quel +barcone +fondo +mare +aver +dato +sepoltura +cadaveri +nome +migranti +morti +strage +stata +scelta +dolorosa +doverosa +scelta +stata +molto +criticata +altro +rifarei +cose +fare +giuste +popolari +quel +naufragio +perso +vita +quattordicenne +veniva +mali +pagella +parlo +libro +altra +strada” +oltre +centinaia +bambini +donne +persone +davanti +scene +disumano +dire +pacchia +finita” +povera +gente +pacchia +mai +iniziata +grazie +biennale +venezia +aver +deciso +accogliere +relitto +restiamo +umani +vede +video +storia +selfie +sfuggendo +mano +salvini +problema +problema +grande +natura +istituzionale +titolo +leader +politico +può +altro +chiedere +sequestrare +telefonino +fatto +male +ragazza +venisse +strappato +cellulare +mano +questione +banale +sembra +principio +libertà +fatto +migliaia +selfie +preso +applausi +fischi +ricevuto +contestazioni +mai +strappato +mano +telefonino +criticava +possiamo +sapere +titolo +salvini +detto +cancella +video” +presenterò +interrogazione +parlamentare +urgente +signor +ministro +interno +certo +saprà +darci +risposte +esaustive +salvini +vuole +passare +giornate +insultare +avversari +pure +allora +lasci +qualcuno +frattempo +ministro +occupi +sicurezza +60secondi +oggi +senato +giornata +oggi +ministro +interno +paese +civile +passa +giornate +insultare +avversari +piazze +napoli +combattere +camorra +salvini +vuole +fare +solo +comizi +pure +comizi +lasci +altri +viminale +diritto +avere +ministro +occupi +sicurezza +italiani +orban +salvini +insieme +vogliono +cambiare +europa +chiedono +voto +perche +sovranisti +possano +governare +bruxelles +accadrà +fortunatamente +guardiamo +fatti +quando +italia +chiesto +solidarietà +immigrazione +stati +sovranisti +lasciarci +soli +cominciare +ungheresi +paesi +visegrad +quando +italia +altro +chiesto +flessibilità +economia +stati +sovranisti +lasciarci +soli +cominciare +destre +austriache +tedesche +nordiche +verità +vuole +difendere +interessi +italiani +allea +sovranisti +combatte +cominciare +voto +maggio +voto +sovranisti +voto +interesse +italiani +ayrton +senna +mito +appassionati +formula1 +quel +pomeriggio +venticinque +anni +fa +rimasto +impresso +memoria +punto +difficile +dimenticare +desolante +tristezza +quel +giorno +esempio +ricordo +perfettamente +cosa +arbitrare +mugello +torneo +giovanissimi +notizia +altro +incidente +rientrando +spogliatoi +volevo +credere +sembrava +impossibile +ancora +tragedia +ancora +quel +circuito +ayrton +senna +pilota +triste +stato +quei +campioni +trasformato +leggenda +tragedia +colpito +già +leggenda +guidava +potevi +amarlo +no +dato +fatto +senna +unico +speciale +inimitabile +ricordo +bellissima +canzone +lucio +nome +ayrton +pilota +stessa +strada +fatto +legge +avvicinare +giovani +cultura +fondo +bonus18anni +stato +speso +acquistare +libri +appena +sentito +acquisto +libri” +salvini +maio +tolto +soldi +cancellato +finanziamento +viva +ignoranza +spero +nato +trovi +forza +farsi +sentire +oggi +governo +esulta +dati +pil +occupati +pil +adesso +esultano +occupati +35mila +meno +primo +giorno +governo +conte +esultano +numeri +argomenti +testardi +tempo +galantuomo +salvini +maio +insultavano +dati +migliori +diamo +appuntamento +legge +bilancio +fatti +domanda +immigrati +irregolari +salvini +urlato +campagna +elettorale +meno +centomila +confessato +stesso +salvini +qualche +giorno +fa +reddito +cittadinanza +darà +780€ +milioni +poveri +diceva +maio +media +meno +500€ +qualche +centinaio +migliaia +altro +persone +confessato +capo +inps +scelto +maio +taglio +accise +promesso +primo +consiglio +ministri” +benzina +superato +euro +flat +tax +volte +promessa +sparita +sparita +crescita +pil +dopo +anno +può +dire +vinto +elezioni +raccontando +montagna +bugie +domanda +qualche +fan +leghista +grillino +grado +replicare +civilmente +merito +banali +osservazioni +buon +fine +settimana +amici +oggi +compleanno +libertà +italia +italiani +compleanno +valori +vale +nessuno +escluso +buon +aprile +tutte +pensiero +speciale +silvano +prima +volta +giorni +litigano +sbuffano +polemizzano +dispetti +ripicche +punto +sembrare +– +rispetto +– +statisti +persino +bambini +asilo +dovunque +mettono +mani +qualcosa +ferma +cominciare +economia +italiana +riferisco +membri +governo +italiano +naturalmente +cominciare +vicepremier +altro +salvini +maio +vorrei +dedicare +enews +pasquale +mediocre +gioco +ribasso +paralizzando +istituzioni +italiane +mentre +altri +paesi +corrono +atteggiamento +talmente +evidente +prima +poi +palloncino +populista +sgonfierà +legge +bilancio +arrivano +tecnicamente +banco +prova +altro +sfortuna +seguire +giornata +politica +stasera +letto +mal +testa +ormai +rissa +continua +grillini +leghisti +litigano +salva +roma +rimpatri +processi +eolico +vivono +dispetti +ripicche +consiglio +ministri +no +fa +offeso +cambia +idea +fine +partecipa +altro +spiace +dirlo +ormai +evidente +qualsiasi +asilo +paese +comportamenti +logici +palazzo +chigi +mentre +resto +europa +discute +futuro +italiani +assistiamo +scontro +totale +interno +coalizione +governo +qualsiasi +argomento +proposto +affidare +solo +partito +guida +paese +altro +mitico +fabio +fognini +tennista +italiano +finalmente +torna +vincere +tornei +prestigiosi +circuito +chapeau +montecarlo +augurio +bello +buona +pasqua +bella +occasione +godersi +affetti +cari +vivere +giornata +felicità +mantenere +cuore +civile +vigile +davanti +ciò +accade +mondo +ogni +istante +cominciare +quest +oggi +tragiche +notizie +arrivano +chiese +sri +lanka +buona +pasqua +amici +anni +accettato +dicessero +stato +oggetto +campagna +violenta +odio +falsità +oggi +ruoli +governo +penso +giusto +dimostrare +credo +davvero +giustizia +dunque +predisposto +prime +azioni +civili +risarcimento +danni +democrazia +chiunque +diritto +altro +criticare +dici +ladro +peggio +hitler +leggi +parenti +fatto +scelte +premier +affari +personali +compagnia +bella +bambini +muoiono +colpa +porti +aperti +me +beh +andiamo +giudice +vediamo +frasi +vere +dette +debba +risarcirmi +altro +terrificante +giorno +dolore +parigi +europa +mondo +senza +parole +spettacolo +social +amici +parli +scoperta +straordinaria +astrofisica +racconti +italia +tocchi +palla +crisi +libia +dimostri +numeri +danni +vicepremier +filano +giusto +poi +posti +selfie +inguardabile +foto +sorridente +distrutto +dopo +km +sotto +acqua +corsa +ponte +vecchio +cascine +isolotto +vedi +boom +piace” +social +meravigliosi +buona +domenica +nuovo +sorriso +sola +cosa +bella +correre +firenze +sotto +sole +correre +firenze +sotto +acqua +buona +domenica +palme +amici +firenzesecondome +immagine +adesso +andrebbe +recuperata +maio +affaccia +balcone +palazzo +chigi +urla +fatta +abolito +povertà +tragedia +uomo +ridicolo +giro +mesi +sfasciato +conti +abolito +crescita +bloccato +ripresa +oggi +mogio +mogio +stesso +maio +affaccia +nemmeno +altro +sala +stampa +cancella +persino +tv +maestà +realtà +fa +irruzione +storia +governo +cambiamento +mette +nudo +totale +impressionante +incompetenza +populisti +ciò +stanotte +chiaro +addetti +lavori +prossimi +mesi +chiaro +cittadini +tempo +galantuomo +accinge +smascherare +bugie +aspettano +mesi +difficili +fuori +tavoli +internazionali +libia +brexit +aumenteranno +tasse +allacciamoci +cinture +poi +solito +toccherà +rimediare +danni +ricostruire +macerie +crescita +recessione +treviso +unaltrastrada +oggi +nuovo +nord +lombardia +veneto +unaltrastrada +fa +tappa +poco +fa +lecco +ora +tavernerio +provincia +como +stasera +pavia +domani +bassano +grappa +sedico +bl +treviso +altro +padova +proprio +terre +visto +successo +lega +grazie +promesse +gonfiate +propaganda +salvini +decisive +sgonfiare +palloncino +populisti +bugie +salvini +gambe +corte +tempo +breve +presenterà +conto +potrà +rimandare +eterno +breve +dovrà +tornare +raccontare +aver +introdotto +patrimoniale +aumentato +iva +quel +giorno +basterà +mettersi +felpa +gridare +colpa +prima +quel +giorno +basterà +nemmeno +incolpare +stelle +quali +finge +quotidianamente +litigare +mentre +accompagnano +braccetto +italia +muro +quel +giorno +solo +salvini +fallimento +tutta +politica +settimana +stata +sparatoria +strada +roma +ancora +volta +ordine +pubblico +capitale +sembra +problema +solo +periferia +ministro +interno +sembra +preoccuparsene +settimana +scoperto +stato +cancellato +bonus +babysitter +asili +nido +numero +incidenti +altro +lavoro +cresce +ministro +lavoro +sembra +preoccuparsene +impressionante +ministri +salvini +maio +leader +governo +raccontino +vita +personale +cosa +mangiano +amano +vivono +sappiamo +polemiche +politiche +avversari +alleati +altro +ieri +incidenti +mortali +lavoro +numeri +quest +anno +terrificanti +ritmo +anno +peggiore +decenni +numero +vittime +teresa +bellanova +preparato +interrogazione +ministro +maio +uomo +quest +anno +tagliato +fondi +sicurezza +lavoro +teresa +cosa +altro +significhi +lavorare +mentre +gigino +pallida +idea +ministro +capito +aver +fatto +errore +fondi +inail +italia +deve +tornare +paese +lavorare +vivere +morire +cantieri +lella +paita +giovane +donna +impegna +gente +liguria +candida +guida +regione +viene +massacrata +fuoco +amico +sinistra +interna +prima +perde +primarie +poi +altro +rompe +alleanza +poi +strumentalizzazione +avviso +garanzia +legato +alluvione +bisagno +centrosinistra +perde +regionali +lella +viene +considerata +responsabile +poi +tempo +galantuomo +incarica +riportare +verità +casa +lella +paita +viene +assolta +primo +grado +procura +fa +ricorso +oggi +lella +viene +assolta +secondo +grado +giustizialisti +cinici +privi +ogni +morale +poi +persone +credono +giustizia +orgoglioso +parte +quest +ultima +categoria +orgoglioso +essere +amico +lella +paita +perso +regione +liguria +perso +dignità +onore +senso +giustizia +vogliamo +bene +lella +leggi +andavo +fiero +impediva +comuni +alzare +imposte +locali +addizionali +irpef +imu +tassa +soggiorno +governo +populisti +invece +restituito +libertà +altro +tassazione +selvaggia +comuni +sole +ore +oggi +salvini +maio +tasse +vanno +posti +lavoro +vanno +giù +caratteraccio” +italia +cresceva +dicono +essere +simpatici +adesso +crescono +solo +tasse +spread +mentre +autostrada +torno +verso +casa +ripenso +gente +oggi +incontrato +follonica +spezia +parma +poi +bozzolo +mantova +luoghi +don +primo +mazzolari +sacerdote +segnato +altro +formazione +molti +regioni +diverse +migliaia +persone +unaltrastrada +solo +libro +modo +abbracciare +comunità +appassionata +buona +politica +vero +lusso +politica +me +rapporti +umani +vorrei +restituirvi +affetto +calore +umano +ricevo +presentazioni +può +capire +solo +partecipa +grazie +diretta +castenedolo +bs +insieme +paolo +mieli +salvini +dà +gufi” +confindustria +prevede +italia +crescita +zero +maio +attacca +«noi +renzi +» +stavolta +ragione +maio +renzi +gufi +gufi +infatti +italia +zero +renzi +dicono +dati +istat +foto +parla +mostra +sensibilità +arma +carabinieri +passione +ragazzi +concittadini +lieto +fine +vicenda +poteva +essere +strage +utilizza +divise +altro +campagna +elettorale +racimolare +voto +sogna +fin +piccolo +aspettando +diventare +cittadino +italiano +servire +comunità +fuori +chiacchiericcio +odio +troll +paese +bellissimo +animato +piccoli +gesti +eroismo +quotidiano +chiama +italia +orgoglioso +carabinieri +orgoglioso +ragazzi +oggi +milione +persone +piazza +dire +no +brexit +brexit +dimostra +dici +bugie +popolo +puoi +vincere +referendum +poi +vieni +sconfitto +realtà +vicenda +ragazzini +eroi +scuolabus +riportato +centro +dibattito +tema +ius +soli +qualcuno +dice +pd +coraggio +volta +stata +colpa +pd +altro +altra +strada” +racconto +andarono +cose +pagina +pagina +fiducia +unioni +civili +messa +ius +soli +invece +intervista +rilasciato +amici +fanpage +filo +conduttore +parole +chiave +altra +strada +leggo +sempre +volentieri +commenti +articolo +brexit +oggi +financial +times +mostriamo +manette +rifiutiamo +barbarie +giustizialismo +quando +colpisce +avversari +soprattutto +quando +colpisce +avversari +scandali +grillini +roma +indagati +arrestati +olimpiadi +buttate +via +paura +buche +bloccano +giro +italia +altro +autobus +prendono +fuoco +scale +mobili +accartocciano +cinghiali +rovistano +nettezza +sappiamo +disonesti +dirà +giudice +sentenza +web +sappiamo +sicuramente +incapaci +sappiamo +rubato +certi +fallito +ancora +volta +diciamo +grazie +carabinieri +sventato +grave +pericolo +coraggio +dedizione +onore +viva +arma +carabinieri +viva +professionisti +sicurezza +persone +serie +garantiste +sempre +diventano +giustizialiste +avversari +regalano +immunità +alleati +scoprono +garantismo +solo +amici +persone +serie +scelgono +libertà +senza +nascondersi +dietro +sacro +blog +piattaforma +persone +serie +sanno +giustizia +cosa +seria +testo +solo +sentenze +tribunali +fango +web +stile +persone +serie +altri +invece +altro +nome +chiamano +ipocriti +buona +giornata +amici +bellissimo +vedere +tanti +ragazzi +scendere +piazza +futuro +pianeta +emozionante +leader +mondo +adesso +diano +seguito +accordi +clima +parigi +fridaysforfuture +confrontato +marine +pen +tv +francese +populisti +uguali +pen +parlava +senza +conoscere +costituzione +italiana +senza +sapere +quando +salvini +italia +tornata +altro +recessione +senza +ricordare +grandi +sostenitrici +brexit +sento +sempre +impegnato +battaglia +culturale +civile +europa +giusta +cultura +odio +paura +salvini +pen +rappresentano +giorni +londra +presentato +altra +strada” +bel +gruppo +studenti +italiani +colpisce +gigantesco +caos +brexit +nessuno +dico +nessuno +andrà +finire +dicevano +altro +uscendo +europa +stato +semplice +quel +referendum +creato +casino +immane +bloccato +crescita +economica +britannica +politica +mostrando +volto +inconcludente +responsabilità +governo +opposizione +dico +forte +politica +britannica +peggio +potuto +fare +politica +italiana +dice +lunga +messi +vinto +referendum +mentendo +conto +oggi +paga +povera +gente +peccato +ieri +sera +partecipato +diretta +londra +trasmissione +televisiva +francese +marine +pen +discusso +brexit +europa +politica +italiana +immigrazione +cultura +amicizia +italo +francese +video +integrale +graditi +commenti +buon +pomeriggio +noto +possono +accusarmi +tranne +essere +juventino +ieri +resto +manchester +vedere +altra +partita +champions +juve +dopo +successo +ieri +solo +bisognerebbe +fare +complimenti +ronaldo +tutta +squadra +qualcuno +dovrebbe +chiedere +scusa +allegri +sempre +criticato +messo +discussione +invece +migliori +allenatori +mondo +basterebbe +po +onestà +intellettuale +riconoscerlo +scusarsi +mister +livornese +sbaglio +riccardo +muti +simboli +universali +cultura +italiana +fatto +ministro +cultura +grillino +permetta +insultarlo +dimostra +volgare +incompetente +banda +scappati +altro +casa +costituisce +governo +paese +bastavano +posizioni +gilet +gialli +venezuela +previsioni +economiche +sbagliate +figuracce +internazionali +no +ora +pure +ministro +cultura +attacca +maestro +muti +criterio +casaleggio +scelto +ministri +andato +caso +preso +volutamente +peggiori +solidarietà +riccardo +muti +viva +cultura +italiana +trovate +intervista +myrta +merlino +aria +tira +parlato +unaltrastrada +vicende +settimane +riguardato +famiglia +soprattutto +approfondito +danni +governo +paese +aspetto +sempre +commenti +trovate +mezz +ora +rai +lucia +annunziata +oggi +parlato +tav +infrastrutture +pericoli +economia +paese +corre +colpa +governo +incompetenti +altro +battaglia +culturale +presentazioni +unaltrastrada +giro +italia +vogliamo +proseguire +sempre +leggo +molto +volentieri +commenti +mamma +accoglienza +pescara +unaltrastrada +tanta +gente +arrende +combatte +farsa +governo +cialtrone +incompetente +vedervi +così +numerosi +presentazione +libro +emoziona +commuove +vediamo +lucia +annunziata +rai3 +buona +domenica +genitori +tornati +libertà +tribunale +riesame +infatti +annullato +decisione +gip +decisione +parsa +molti +primo +momento +abnorme +assurda +ovviamente +notizia +altro +stessa +eco +arresto +circo +mediatico +meno +interessato +resto +archiviazioni +assoluzioni +mai +stesso +spazio +apertura +indagini +processi +aule +giornali +vedremo +ragione +torto +rappresentante +istituzioni +confermo +maggior +ragione +oggi +fiducia +giustizia +italiana +figlio +dico +stati +giorni +brutti +vita +famiglia +vorrei +altro +18app +oltre +quattrocentomila +ragazzi +fatto +piccolo +investimento +cultura +comprato +libri +ricevuto +molte +critiche +aver +introdotto +misura +ora +dimostrano +numeri +bonusrenzi +avvicina +ragazzi +cultura +tempo +galantuomo +aderito +manifesto +macron +momento +scrivere +nuova +pagina +europa +popoli +populisti +sovranisti +parte +figli +nuove +generazioni +poco +diretta +stop +news +rtl +nonstopnews +diretta +varese +unaltrastrada +abbraccio +amico +davide +soprattutto +sara +ieri +imprenditore +difficoltà +ucciso +nord +est +difficilissimo +capire +persona +arriva +punto +togliersi +vita +dolore +amore +crisi +mal +vivere +direbbe +poeta +perso +amici +così +dolore +devastante +sempre +impossibile +stabilire +causa +impossibile +sentirsi +altro +colpa +quando +governo +opposizioni +grillini +leghiste +rinfacciavano +sempre +suicidi +imprenditori +crisi +resoconti +parlamentari +pieni +interventi +colpa +coscienza +schifo +modo +bieco +meschino +strumentalizzare +quel +dolore +schifo +altre +parole +oggi +governo +vorrei +arrivasse +abbraccio +solidale +famiglia +quest +uomo +vorrei +nessuno +desse +premier +colpa +suicidi +quando +palazzo +chigi +vorrei +insieme +recuperassimo +po +umanità +politica +nicola +zingaretti +vittoria +bella +netta +adesso +basta +fuoco +amico +avversari +politici +casa +governo +segretario +zingaretti +grande +bocca +lupo +maurizio +bobo +volontari +grazie +viva +democrazia +torno +verso +casa +dopo +aver +toccato +brindisi +milano +scandiano +ferrara +faenza +forlì +trovato +tanta +bella +gente +rassegna +cultura +odio +voglia +camminare +unaltrastrada +diretta +faenza +unaltrastrada +mezzo +gente +lecce +unaltrastrada +popolo +vuole +percorrerla +vado +letto +domani +riparte +emilia +romagna +grazie +tour +stupefacente +diretta +lecce +circondato +affetto +calore +vedevo +anni +grazie +emozionante +tornare +taranto +dopo +anni +insulti +vedere +aula +magna +università +strapiena +grazie +diretta +lecce +dati +istat +preoccupano +ormai +ufficiale +governo +deve +trovare +miliardi +euro +dicembre +frattempo +tassa +auto +rischia +dare +colpo +grazia +settore +grazie +marchionne +ripartito +debito +disoccupazione +giovanile +tornano +salire +governo +rende +conto +gravità +situazione +scuso +centinaia +persone +ieri +napoli +rimaste +fuori +sala +bellissimo +vedere +tanta +gente +partecipare +presentazioni +libro +grazie +oggi +altra +strada +porta +martina +franca +taranto +lecce +domani +emilia +romagna +buona +giornata +amici +diretta +napoli +ecco +intervista +martedì +bruno +vespa +porta +porta +solito +graditi +commenti +tempo +vederla +astenersi +odiatori +troll +buona +giornata +oggi +altra +strada +porta +napoli +parole +descrivere +affetto +entusiasmo +scuola +catania +libreria +palermo +grazie +giornata +siciliana +unaltrastrada +diretta +senato +intervento +nome +gruppo +pd +qualche +senatore +grillino +vuole +impiccarmi +rispondiamo +intervenendo +aula +nome +gruppo +pd +dire +no +scelte +economiche +dissennate +governo +riportato +recessione +grazie +leggendo +commentando +unaltrastrada +fatto +tanta +gente +parlando +idee +proposte +libro +emoziona +lungo +cammino +fare +bello +farlo +insieme +grazie +intervista +ieri +giletti +primo +pomeriggio +intervengo +aula +senato +sciagurate +scelte +economiche +riportato +recessione +buona +settimana +amici +stata +intervista +me +difficile +tanti +motivi +grazie +commenti +trasmissione +giletti +fatto +tempo +vedermi +pareggio +viola +inter +buona +notte +vediamo +domani +senato +grazie +accoglienza +ciuffenna +cortona +davvero +tanti +darmi +affetto +voglia +percorrere +insieme +unaltrastrada +ora +torna +roma +preparare +discorso +altro +domani +senato +prima +però +ospite +massimo +giletti +arena +partire +aspetto +settimana +foligno +maestro +scuola +pubblica +insulta +bambini +colore +pagina +bella +scritta +emma +cantante +chiesto +aprire +porti +macchina +odio +altro +propaganda +guidata +amministratore +lega +insultata +pesantemente +risposta +emma +bellissima +troppo +odio +paese +linguaggio +violento +respinto +bisogno +restare +umani +grazie +emma +artista +coraggiosa +donna +forte +grazie +prende +impegno +no +mai +buona +domenica +migliaia +persone +giorni +partecipano +presentazioni +altra +strada” +impressionante +affetto +voglia +futuro +tanta +gente +arrende +vorrei +dirvi +grazie +abbracciarvi +buona +notte +ieri +sera +tappe +tantissima +gente +tanto +affetto +torino +genova +italia +bisogno +proposte +diverse +governa +altra +strada +percorrere +insieme +cammino +diretta +torino +unaltrastrada +oggi +maio +sparato +bufala +clamorosa +detto +aumentati +posti +lavoro +prendendosene +merito +allora +guardiamo +dati +vero +posti +lavoro +merito +effetti +jobsact +industria +misure +maio +dirlo +semplice +leggo +dati +altro +quando +maio +ministro +75mila +posti +lavoro +meno +secondo +dati +istat +addirittura +122mila +posti +tempo +indeterminato +meno +decreto +dignità +maio +distruggendo +mondo +lavoro +italiano +messo +medico +sanità +soldatessa +difesa +maio +disoccupazione +torna +curioso +capire +oggi +tg +populisti +dare +notizia +quando +maio +ministro +posti +lavoro +diminuiscono +tg +diranno +verità +racconteranno +bugie +grillini +leggo +intervista +corriere +senatore +giarrusso +portavoce +ufficiale +movimento +stelle +dice +dovrei +essere +impiccato” +penso +oltre +barbarie +stupisce +nessuno +intervenga +frase +allucinante +pensano +farmi +paura +sbagliato +bersaglio +buona +giornata +ieri +francia +germania +fatto +proposta +importante +giusta +superare +regole +antitrust +europeo +sembra +tema +banale +me +decisivo +parlo +altra +strada” +peccato +vedere +tavolo +italia +ministri +francia +germania +maio +promesso +riprendiamo +presentazioni +unaltrastrada +vediamo +venerdì +febbraio +lingotto +torino +genova +teatro +gioventù +senza +rancore +idee +futuro +italia +aspetto +commenti +letto +libro +già +detto +adesso +aspettiamo +processi +sentenze +dolore +figlio +immaginate +davvero +convinto +tempo +galantuomo +aspettiamo +sentenze +vedremo +ragione +torno +dunque +lavoro +attualità +dati +istat +oggi +allucinanti +crolla +dicembre +fatturato +industriale +crollano +soprattutto +ordinativi +meno +gennaio +primo +trimestre +pil +bagno +sangue +governo +sembra +vivere +altro +pianeta +enews +febbraio +condividetela +immaginato +scrivervi +tutta +altra +news +pensavo +raccontarvi +entusiasmo +fine +settimana +girato +molto +emilia +romagna +veneto +lombardia +piemonte +presentare +libro +altra +strada” +trovato +accoglienza +superiore +rosee +aspettative +ovunque +centinaia +altro +persone +voglia +mollare +desiderio +discutere +foto +giorni +parlano +chiaro +calore +persino +inatteso +cominciare +sala +rossa +firenze +roma +sasso +marconi +san +lazzaro +savena +este +mestre +erbusco +treviglio +cernusco +naviglio +milano +poi +trasmissione +fazio +altro +costretto +annullare +presentazione +libro +torino +grave +vicenda +personale +circa +ora +padre +madre +domiciliari +molta +fiducia +giustizia +italiana +penso +cittadini +uguali +davanti +legge +dunque +impaziente +assistere +processo +letto +carte +altro +garantisce +aver +mai +visto +provvedimento +così +assurdo +sproporzionato +mai +adesso +crede +giustizia +aspetta +sentenze +credo +giustizia +italiana +dico +oggi +rispetto +profondo +servitore +stato +arriveranno +sentenze +vedremo +cittadini +settantenni +incensurati +davvero +pericolosi +criminali +altro +ieri +tornato +luogo +delitto +infatti +partecipato +tempo +fa +ultima +volta +fazio +intervistato +stata +occasione +dire +no +accordo +stelle +ieri +parlato +serve +tracciare +altra +strada” +intervista +ieri +grazie +weekend +ricco +emozioni +grazie +sostegno +durante +trasmissione +fazio +penso +proprio +fatto +bene +dire +no +accordo +grillini +unaltrastrada +cernusco +poi +milano +bello +toccare +tanto +entusiasmo +voglia +ribadire +sì +politica +futuro +cultura +lavoro +verità +europa +populismi +spacciatori +paura +ignoranza +sussidi +altro +fake +news +nazionalismi +altra +strada +tanti +rassegnarci +poco +aspetto +rai +fabio +fazio +iniziare +mattinata +persone +meravigliosa +cantina +franciacorta +senza +bere +adesso +unaltrastrada +verso +treviglio +cernusco +milano +buonadomenica +sasso +marconi +san +lazzaro +savena +este +mestre +adesso +verona +sale +strapiene +persone +chiedono +camminare +unaltrastrada +diretta +san +lazzaro +savena +diretta +firenze +grazie +accoglienza +altra +strada” +libreria +amazon +stasera +vediamo +firenze +sala +rossa” +palazzo +congressi +esattamente +anni +dopo +fattaccio +aspetto +fiorentini +serata +speciale +diretta +roma +diretta +tempio +adriano +roma +unaltrastrada +stato +torchiato +gian +antonio +stella +penna +ammiro +anni +prima +casta +scritto +libro +meraviglioso +orda +quando +albanesi +intervista +tosta +trovate +stamattina +alcuni +quotidiani +cominciare +financial +times +dedicano +spazio +libro +altra +strada +piacerebbe +tanto +libro +aiutasse +riflettere +proposte +vorrà +discutere +altro +benvenuto +domani +sera +firenze +lancio +ufficiale +anticipazioni +oggi +roma +poi +giriamo +tutta +italia +davanti +incompetenza +governo +portato +italia +recessione +altra +strada +vorrei +percorrerla +insieme +crede +verità +fake +news +crede +cultura +ignoranza +crede +europa +nazionalismo +crede +futuro +paura +buona +strada +stelle +perdono +regionali +abruzzo +beppe +grillo +dice +restituiteci +000€ +dato +rimborsi +pensate +battuta +realtà +modello +democrazia +testa +populisti +caso +isolato +libro +altra +strada +molti +esempi +genere +sottolineo +altro +altra +cosa +ore +toninelli +tav +maio +reddito +cittadinanza +grillo +abruzzo +battista +mostrando +ragioni +quali +voluto +fare +accordi +stelle +finalmente +casa +accorti +quasi +report +costi +benefici +toninelli +barzelletta +fa +ridere +dato +però +andrebbe +studiato +persino +esperti +toninelli +spiegano +tav +torino +lione +abbattono +tonnellate +co2 +mezzo +punto +percentuale +emissioni +italiane +co2 +solo +tunnel +ammettono +ama +ambiente +sceglie +tav +inquina +gomma +francia +dobbiamo +condividere +valori +iniziative +leonardo +fare +polemiche +assurde +solo +vergognarsi +disfatta +politica +estera +italiana +60secondi +ieri +vicepremier +repubblica +italiana +maio +partecipato +consiglio +ministri +preso +aereo +andato +incontrare +frangia +agguerrita +gilet +gialli +francesi +vogliono +fare +accordo +europee +macron +teppisti +istituzioni +sempre +parte +istituzioni +stupisce +nessuno +notare +maio +paese +democratico +francia +merita +rispetto +governo +italiano +alleanze +teppisti +ringrazio +raffaelle +cantone +lavoro +svolto +insieme +corruzione +quando +anni +fa +partiti +credeva +nessuno +oggi +anac +realtà +fa +modello +livello +internazionale +ok +adesso +sanremo +prima +inizi +ultimo +venezuela +oggi +ricevuto +telefonata +presidente +guaidò +ringrazia +sostegno +giorni +posizione +governo +screditando +mondo +italia +deve +stare +libertà +dittatura +copertina +libro +uscirà +prossimo +febbraio +piace +felice +tornare +abbracciare +tanti +presentazioni +http +bit +unaltrastrada +link +casa +editrice +marsilio +racconta +qualcosa +unaltrastrada +bravo +premier +spagnolo +sanchez +riconosce +ufficialmente +guaidò +nuovo +presidente +venezuela +provo +imbarazzo +vergogna +posizione +italiana +stop +dittatura +maduro +penso +verrà +presto +giorno +conte +moavero +salvini +maio +vergogneranno +essere +stati +parte +sbagliata +storia +connazionali +dittatura +libertà +posizionamento +governo +italiano +venezuela +scandaloso +tradisce +storia +allontana +altri +paesi +europei +abbandona +connazionali +venezuela +ideali +libertà +democrazia +fin +conti +sostiene +dittatura +sanguinosa +disintegrato +quel +bellissimo +paese +capisco +politica +estera +attiri +nessuno +quasi +sinceramente +temo +pagheremo +anni +conseguenze +pavida +scelta +giorni +abbraccio +fratelli +venezuelani +possiamo +finta +niente +rimanere +indifferenti +immagini +giungono +ultimi +giorni +caracas +mostrano +centinaia +migliaia +cittadini +venezuelani +manifestare +pacificamente +altro +governo +populista +maduro +ripristino +democrazia +uomini +donne +bambini +semplicemente +chiedono +essere +ascoltati +venezuela +paesi +ricchi +risorse +minerarie +petrolifere +mondo +paradossalmente +paese +oggi +povertà +estrema +raggiunto +popolazione +scarseggiano +medicine +elementari +già +fuggiti +milioni +persone +paese +inflazione +oltre +altro +signore +segnato +gioventù +fatto +esultare +piangere +emozionare +stato +lottare +serie +b +zittito +avversari +stadi +belli +mondo +amato +firenze +altro +stato +amato +passione +travolgente +oggi +compie +anni +primo +pensiero +re +leone +buon +compleanno +gabriel +omar +batistuta +appello +governo +fermatevi +cambiate +strada +60secondi +quando +nuovo +governo +italia +perso +mila +posti +lavoro +dati +ufficiali +istat +pil +seconda +volta +negativo +recessione +vuol +bene +italia +scelte +economiche +salvini +maio +sbagliate +scelte +quattordici +trimestri +crescita +scelte +subito +recessione +portando +paese +sbattere +cambiamo +strada +prima +troppo +tardi +dati +pil +stati +positivi +quattordici +trimestri +consecutivi +primo +semestre +poi +arrivato +governo +cambiamento +pil +diventato +negativo +italia +tecnicamente +recessione +portano +sfiga +solo +incapaci +conto +pagherà +classe +media +ritirare +meno +truppe +afghanistan +decisione +privata +ministro +andati +lì +insieme +altri +minaccia +talebani +estremisti +islamici +prolungato +volte +missione +decidere +ritirarsi +missione +avanti +anni +richiede +discussione +approfondita +vera +seria +altro +slogan +sicurezza +preferiamo +ragazzi +tornino +casa +lì +villeggiatura +lì +difendere +sicurezza +decide +quando +servono +ministro +può +fare +solo +italia +grande +paese +può +gestire +caso +politica +estera +arrivate +senato +carte +tribunale +ministri +confronti +matteo +salvini +dopo +averle +lette +attenzione +senza +alcun +pregiudizio +ideologico +voterò +favore +richiesta +autorizzazione +procedere +giornata +memoria +cerimonia +impegno +assumere +giorni +dimenticheremo +orrori +olocausto +mai +stanotte +lasciati +silvano +sarti +partigiano +amava +stare +giovani +raccontava +vocione +storie +resistenza +liberazione +firenze +discorsi +agosto +altro +palazzo +vecchio +interminabili +bellissimi +canti +amore +libertà +finiva +salone +piedi +applaudirlo +voltava +piano +verso +me +andato +” +educava +giovani +impegno +ragazzi +vu +importanti +telefonino +vu +tenete +fisso +mano +quando +età +qualcuno +toccato +morire +libertà” +amava +politica +incoraggiava +mettersi +gioco +sempre +raccomando +mollare” +me +stato +punto +riferimento +amico +vero +buon +viaggio +silvano +grazie +stato +continuerai +essere +cuore +camminato +te +lega +stelle +copiando +prima +repubblica +dire +quota +significa +richiamare +prepensionamenti +tanto +pagano +giovani +dire +reddito +cittadinanza +significa +affermare +assistenzialismo +favorire +lavoro +nero +elemento +meno +riflettendo +assunzione +diecimila +persone +senza +concorso +altro +pubblico +fare +navigator +diecimila +persone +assunte +così +naturalmente +maio +già +promette +stabilizzate +diecimila +persone +colloquio +entreranno +pubblica +amministrazione +naso +restarci +sempre +sinceramente +sembra +giusto +ricordate +assurda +norma +voluta +governo +legge +bilancio +aumentava +tasse +volontariato +no +profit +oggi +grazie +emendamento +pd +primo +firmatario +andrea +marcucci +stata +cancellata +piccolo +segno +positivo +giusto +sottolinearlo +grazie +andrea +grazie +soprattutto +volontari +italiani +impegnano +terzo +settore +associazionismo +60secondi +senato +oggi +aula +vota +decreto +semplificazione +ennesimo +rinvio +allora +guardiamo +dati +ufficiali +conseguenze +altri +provvedimenti +grazie +maio +cresce +disoccupazione +venezuela +stato +distrutto +dittatura +feroce +anni +visto +regime +caracas +modello +deve +prendere +atto +chavez +prima +maduro +poi +devastato +bellissimo +paese +adesso +europa +deve +trovare +coraggio +sostenere +subito +unica +istituzione +democratica +rimasta +assemblea +nazionale +appoggiare +presidente +guaidò +andare +rapidamente +elezioni +veramente +democratiche +bambini +muoiono +fame +venezuela +può +aspettare +ancora +viva +libertà +viva +democrazia +mediaticamente +massacrato +costruito +intere +trasmissioni +dipinto +molestatore +poi +scoperto +innocente +ragazze +detto +tutta +verità +famoso +giornalista +famosa +trasmissione +elementi +ostilità +preconcetta +oggi +dopo +mesi +altro +gogna +mediatica +giudici +persone +serie +definitivamente +archiviato +chiama +fausto +brizzi +cittadino +innocente +amico +spero +contribuito +danneggiarlo +spero +soprattutto +provato +distruggergli +vita +stasera +esame +coscienza +giustizia +cosa +molto +seria +servizi +scandalistici +qualche +ex +iena +ora +impegnata +governo +giustizia +giustizialismo +parte +giustizia +sempre +verità +arriva +sempre +deputato +grillino +chiama +carlo +sibilia +crede +molto +intelligente +forse +davvero +doti +nascoste +pur +fatto +figuraccia +galattica +quando +sostenne +americani +sbarcati +luna +complotto +ciò +nonostante +fatto +sottosegretario +ministero +interno +povero +viminale +solo +altro +ministro +influencer +sottosegretario +complottista +dura +vita +quel +glorioso +palazzo +eh +ieri +sibilia +anziché +occuparsi +sicurezza +polizia +ordine +pubblico +difeso +spada +tratta +nomina +lino +banfi +poi +pensato +bene +fare +simpatico +pubblicato +chiedere +followers +preferissero +banfi +altro +ieri +stato +ospite +barbara +palombelli +ecco +andata +ovviamente +fa +piacere +sapere +pensate +buona +giornata +tante +ironie +nomina +lino +banfi +unesco +gente +toninelli +infrastrutture +castelli +economia +preoccupate +lino +banfi +colpisce +polemica +laureati +certo +resto +nomina +fa +maio +cosa +stupiamo +60secondi +oggi +senato +tanto +cambiare +vota +maggioranza +ancora +pronta +parliamo +frase +incredibile +matteo +salvini +stamani +canale +dichiarazioni +bar +maio +salvini +isolato +italia +proprio +mentre +francia +germania +rilanciano +insieme +europa +mentre +macron +merkel +firmano +patto +aquisgrana +mandiamo +banfi +unesco +ecco +cambiamento +politica +estera +60secondi +situazione +sfuggendo +mano +battista +dice +obama +golpista +maio +schiera +gilet +gialli +assaltano +istituzioni +francesi +battista +strappa +moneta +colonialista +francesi +africa +maio +dice +macron +responsabile +stragi +migranti +africani +sembra +talmente +assurdo +altro +scappa +ridere +danno +credibilità +italia +relazioni +paesi +storicamente +amici +purtroppo +enorme +politica +estera +cosa +seria +karaoke +dilettanti +sbaraglio +pensiero +dedicato +matera +expo +olimpiadi +italia +scommette +eventi +italia +dice +no +evitare +polemiche +anziché +motoscafo +stavolta +60secondi +ve +invio +barbiere +😀 +complimenti +andrea +frailis +nuovo +deputato +collegio +cagliari +preoccupa +affluenza +bassa +ovviamente +nonostante +sondaggi +tg +schierati +pagine +pagine +propaganda +salvini +maio +primo +voto +nuovo +seggio +parlamento +vince +opposizione +persino +sardegna +promesse +sciacalli +prestanome +assegni +vuoto +palloncino +populista +prima +poi +sgonfierà +tempo +galantuomo +buon +lavoro +andrea +davvero +buona +notizia +persone +rischiano +morire +mare +salvini +dice +colpa +ong +maio +dice +colpa +macron +interessi +africa +sempre +cercare +capro +espiatorio +pazzesco +dico +date +pure +colpa +volete +prima +andiamoli +prendere +salviamoli +fratelli +sorelle +vita +vale +sondaggio +penso +meglio +perdere +voti +perdere +dignità +popolo +antiche +tradizioni +valori +italia +andiamo +salvarli +subito +maio +battista +dicono +reddito +cittadinanza +poveri +radical +chic +magari +così +purtroppo +vero +opposto +reddito +cittadinanza +misura +aiuta +uscire +povertà +vero +modo +combattere +povertà +creare +posti +lavoro +sussidi +persone +vanno +rese +libere +altro +autonome +lavoro +dipendenti +procedure +complicate +peggio +ancora +voto +scambio +politici +assistenzialisti +nodo +concettuale +vuoi +combattere +povertà +devi +creare +lavoro +odiato +jobsact +creati +milione +posti +lavoro +decreto +dignità +maio +decine +migliaia +persone +rimaste +casa +fatti +ahinoi +reddito +cittadinanza +elemosina +creare +posti +lavoro +politica +belle +immagini +matera +ieri +capitale +cultura +europea +molto +orgoglioso +lavoro +silenzioso +governo +società +civile +enti +locali +coordinatore +governo +altro +fatto +città +città +anni +scorsi +cosa +positiva +stanziato +molte +risorse +potranno +essere +spese +dopo +evento +cominciare +stazione +ferrovia +allora +dicemmo +matera +evento +stato +svolta +fatte +dovute +proporzioni +expo +stato +milano +creduto +quando +credevano +pochi +oggi +tanti +bellissimo +suggerimento +mai +visto +matera +momento +giusto +andarci +già +stati +utilizzate +tornarci +quei +sassi +considerati +vergogna +italia +dopoguerra +oggi +simbolo +identità +comunitaria +nazionale +europea +matera +viva +bellissima +60secondi +oggi +dedicati +storia +italia +buona +interessa +salvini +infatti +ritwitta +solo +storie +violenza +parte +extracomunitari +eppure +civile +veneto +successo +qualcosa +bello +modo +augurarvi +buon +weekend +notizia +colpisce +ancora +colpisce +silenzio +ministri +polemica +sempre +stranieri +oggi +zitti +proprio +quando +scopriamo +buona +notizia +altro +imprenditore +veneto +perde +borsello +dentro +900€ +contanti +disoccupato +marocchino +ritrova +restituisce +intonso +legittimo +proprietario +sindaco +ringrazia +cittadino +marocchino +imprenditore +decide +assumerlo +togliendolo +strada +bello +poter +festeggiare +notizia +ministro +possa +ritwittare +bella +storia +social +devono +diffondere +odio +solo +odio +mai +speranza +protagonisti +storia +nomi +omar +bernardo +guido +vada +grazie +tantissime +persone +sognano +italia +comunità +lavora +insieme +tribù +insultano +odiano +buona +notte +rassegnano +cultura +divisione +rabbia +mettiamo +qualche +puntino +storia +reddito +cittadinanza +strumento +giusto +sostegno +poveri +falso +ecco +misura +povertà +italia +già +prevista +operativa +chiama +rei +vuole +migliorarla +prego +avanti +reddito +cittadinanza +altro +misura +povertà +me +drammatico +errore +concettuale +mancano +soldi +rispetto +promesse +campagna +elettorale +repubblica +democratica +fondata +lavoro +sussidio +vogliamo +combattere +povertà +creando +posti +lavoro +garantendo +assistenzialismo +peggio +altro +oggi +60secondi +arrivano +venezia +condivido +ideologia +decretone +favorisce +lavoro +nero +fa +pagare +giovani +pensioni +però +dico +prendiamo +serio +salvini +maio +prendiamoli +serio +difficile +60secondi +18gennaio +solo +anni +fare +quel +viaggio +così +lungo +pericoloso +scelto +portarsi +pagella +ripiegata +cura +cucita +dentro +tasca +africa +verso +speranza +chiamata +europa +tasca +altro +documento +importante +certificava +studi +banale +eppure +preziosissima +pagella +morto +annegato +insieme +altre +centinaia +persone +drammatico +giorno +aprile +anni +fa +dottoressa +cristina +cattaneo +descritto +storia +makkox +immaginato +così +molta +poesia +niente +notizia +molto +colpito +italia +paese +valori +dimentichiamolo +paese +altruismo +paese +prova +dare +sepoltura +corpi +regole +civiltà +valgono +sondaggi +puoi +perdere +punti +consenso +puoi +perdere +davanti +figli +grazie +italia +arrende +odio +rassegnazione +grazie +italia +mantiene +vivo +senso +parola +pietas +show +salvini +bonafede +pagina +nera +istituzioni +italiane +compito +politici +crescere +posti +lavoro +fan +instagram +frattempo +grazie +legge +bonafede +salvini +salva +leghisti +peculato +60secondi +17gennaio +ministro +giustizia +alfonso +bonafede +vuole +emulare +salvini +posa +divisa +penitenziaria +soddisfatta +fratellino +piccolo +regalato +stesso +altro +giocattolo +grande +frattempo +show +mediatico +battisti +messo +rischio +identità +agenti +forze +polizia +bonafede +accorto +legge +presunta +anticorruzione +norma +personam +salva +leghisti +peculato +però +bonafede +stesso +giocattolo +salvini +tanto +felice +giustizia +italiana +po +meno +maio +dice +nuovo +boom +economico +mondo +imprenditoriale +ovviamente +ride +dietro +infatti +oggi +escono +dati +istat +ordinativi +industria +novembre +altro +tendenziale +anno +anno +picco +ordini +interni +altro +crisi +importata +estero +ordini +interni +inizio +vedete +articolo +intanto +continua +licenziare +colpa +decreto +disoccupazione +firmato +proprio +gigggino +vicepremier +massimi +esperti +mondiali +disoccupazione +nuovo +boom +economico +prima +poi +realtà +presenta +conto +accadendo +uk +brexit +bugie +raccontato +populisti +vincere +referendum +adesso +capisce +europa +fondamentale +lezione +londra +roma +giornata +incredibile +regno +unito +governo +may +sotto +oltre +voti +accordo +brexit +sempre +lontano +rinvio +data +marzo +forse +nuovo +referendum +certo +voto +uscire +europa +stato +errore +storico +britannici +anni +fa +raccontava +altro +passeggiata +andrà +bene +prendendo +giro +inglesi +europei +giugno +uk +smesso +correre +paesi +forti +mondo +accasciato +stesso +dimenticate +quei +giorni +italia +unici +partiti +brindavano +elogiando +inglesi +movimento +stelle +alleato +farage +lega +dicevano +dovremmo +fare +britannici +tempo +davvero +galantuomo +brexit +disastro +ora +nessuno +uscirne +apro +quotidiano +monde +trovo +bellissimo +tragico +pezzo +politica +estera +anno +dopo +fine +combattimenti +terroristi +stato +islamico +daesh +ancora +impossibile +contare +altro +morti +mosul +comuni +migliaia +persone +scene +violenza +inaudita +raccontate +testimoni +oculari +prospettive +ricostruzione +mondo +riduce +politica +tweet +bello +vedere +alcuni +giornali +purtroppo +scelgano +qualità +approfondimento +vera +informazione +politica +senza +informazione +degna +nome +libera +stancherò +mai +ripetere +politica +estera +materiale +addetti +lavori +elemento +strategico +futuro +popolo +omicidio +sindaco +danzica +pawel +adamowicz +colpo +cuore +europa +valori +ideali +oggi +giorno +lutto +crede +politica +europa +sindaco +danzica +pawel +adamowicz +stato +accoltellato +ieri +città +pawel +personaggi +popolari +opposizione +polacca +attesa +conoscere +investigatori +cosa +davvero +successo +quali +ragioni +folle +gesto +dobbiamo +riflettere +cosa +accade +politica +quando +prevale +clima +altro +odio +quando +violenza +verbale +trasforma +violenza +fisica +stanotte +quel +coltello +ferito +solo +uomo +stessa +idea +europa +guai +sottovaluta +intanto +preghiamo +tifo +pawel +capisco +polemiche +oggi +arresto +cesare +battisti +oggi +giorno +festa +italia +democrazia +dimostra +essere +forte +terrorismo +vince +giustizia +partito +politico +vincono +istituzioni +ultras +fiero +uomini +donne +polizia +intelligence +altro +dico +grazie +diventeremo +paese +civile +quando +smetteremo +strumentalizzare +episodi +episodi +devono +farci +esultare +insieme +sempre +sempre +parte +legalità +giustizia +notizia +incredibile +finita +qualche +retroscena +oggi +racconta +meglio +mille +discorsi +funziona +maggioranza +governa +ricordate +cinema +fatto +bonafede +grillini +legge +anti +corruzione +bene +ora +scopre +attraverso +comma +personam +leghisti +inserito +norma +salva +processi +altro +propri +deputati +condannati +peculato +capito +bene +scusa +combattere +corruzione +fatto +passare +codicillo +permetterà +ex +consiglieri +regionali +già +condannati +via +definitiva +rimborsi +salvarsi +quindi +decreto +bonafede +tanto +sbandierato +maio +battista +tutta +redazione +fatto +quotidiano +ottiene +obiettivo +opposto +salvare +pelle +politici +condannati +peculato +giro +anno +grillini +passati +onestà +” +leggi +personam +vero +proprio +salvalega +cambia +andare +casa +arresto +cesare +battisti +bolivia +bellissima +notizia +italiani +senza +alcuna +distinzione +colore +politico +desiderano +assassino +genere +riportato +presto +paese +scontare +pena +carcere +italiano +oggi +buona +giornata +giustizia +oggi +violenze +francia +corso +manifestazioni +gilet +gialli +bordeaux +stati +feriti +molto +gravi +violenza +continua +buona +pace +salvini +maio +odiano +altro +macron +istituzioni +democratiche +gilet +gialli +parte +forze +ordine +nonviolenza +legalità +ieri +maio +visto +dati +produzione +industriale +detto +pronti +nuovo +boom +economico +spiegato +quando +segno +meno +davanti +significa +dato +negativo +altro +resto +basta +leggere +articolo +ennesimo +imprenditore +licenzia +persone +colpa +decreto +dignità +legge +voluta +maio +danni +grandine +tempo +galantuomo +verità +prima +poi +arriva +oggi +torino +dice +sì +futuro +basta +vogliono +bloccare +italia +ferma +tav +ferma +crescita +grazie +torino +fermiamo +politica +estera +interessa +molti +buon +motivo +parlarne +bellissimo +articolo +bernard +henri +lévy +oggi +stampa +torino +ieri +firmato +insieme +tanti +altro +colleghi +interrogazione +parlamentare +chiedere +governo +cosa +intenzione +fare +dopo +americani +annunciato +ritiro +siria +situazione +potenzialmente +esplosiva +sottovalutare +passaggio +potrebbe +paradossalmente +portare +rinascita +isis +abbandonare +curdi +dopo +curdi +fatto +disumano +oltre +politicamente +sbagliato +stato +erbil +agosto +premier +mentre +italia +presiedeva +unione +europa +visitato +istituzioni +campi +profughi +abbandonati +allora +mentre +bombardamenti +possiamo +farlo +adesso +governo +italiano +idea +dossier +grazie +tantissimi +fatti +vivi +auguri +compleanno +cenetta +fiorentina +famiglia +suggellato +bella +giornata +già +fila +resto +felice +tanto +fatto +insieme +so +molta +fame +futuro +molta +invecchiamo +curiosi +allegri +altro +pazienti +molliamo +mai +forza +profeti +odio +rabbia +solo +insultare +accusare +diversi +andiamo +avanti +testa +alta +chiudo +giornata +festa +allora +meravigliosa +frase +mitico +michael +jordan +forse +grande +giocatore +basket +storia +vita +sbagliato +novemila +tiri +perso +quasi +trecento +partite +ventisei +volte +compagni +affidato +tiro +decisivo +sbagliato +fallito +molte +volte +fine +vinto +grazie +auguri +amicizia +onore +camminare +persone +domani +torino +scende +piazza +tav +me +vive +città +ben +servita +alta +velocità +importante +infrastruttura +firenze +ormai +perfettamente +connessa +milano +roma +italia +ormai +metropolitana +superficie +bloccare +torino +tornare +indietro +sprecare +soldi +folle +farlo +altro +impuntatura +ideologica +stelle +ancora +può +dire +no +forza +dire +no +bloccando +italia +evviva +torino +domani +dice +sì +tav +sì +crescita +sì +futuro +diretta +palazzo +giustiniani +top +ten +settimana +brutte +notizie +purtroppo +fronte +economico +produzione +industriale +crolla +annuo +vedevano +dati +problema +mentre +mondo +rallenta +italia +inchioda +governo +purtroppo +sembra +accorgersene +arrivando +recessione +litigano +giorni +parliamo +poco +altro +prima +topten +diretta +facebook +ig +palazzo +giustiniani +sacco +questioni +affrontare +salvini +vuole +decidere +persino +festival +sanremo +polemiche +documento +firmato +insieme +beppe +grillo +vaccini +poi +vent +anni +morte +andrè +viaggio +usa +incontro +joe +biden +visita +stanford +figuraccia +grillina +banche +vediamo +dopo +amici +grazie +auguri +esagerano +eccome +esagerano +adesso +attaccano +persino +claudio +baglioni +cioè +dico +claudio +baglioni +icona +italiani +grandi +musica +italiana +baglioni +detto +soluzione +immigrazione +complessa +lasciare +mezzo +mare +persone +detto +verità +semplice +persino +banale +altro +detta +uomo +sempre +sensibile +tema +ricorda +impegno +lampedusa +salvini +scatenato +inferno +troll +attaccando +social +baglioni +qualcuno +vorrebbe +addirittura +impedirgli +presentare +prossimo +sanremo +altro +scorso +anno +visto +boom +ascolti +secondo +me +esagerando +davvero +salvini +montando +testa +vuole +persino +impedire +cantanti +esprimere +proprie +opinioni +poi +albano +sì +baglioni +no +solo +cantanti +piacciono +salvini +pretende +spiegare +gattuso +schierare +milan +baglioni +cosa +dire +festival +vescovi +guida +chiesa +basta +salvini +basta +drammatica +vicenda +migranti +stata +risolta +tardi +stata +risolta +grazie +leadership +uomo +capace +premier +conte +milanista +sfegatato +salvini +parla +perfettamente +italiano +infatti +maio +chiama +joseph +muscat +premier +malta +caso +salvini +smentito +altro +platealmente +governo +attacca +malta +muscat +ieri +modo +costante +ehi +salvini +adesso +finita +vicenda +migranti +stati +accolti +concentri +milioni +inizi +restituirceli +professor +roberto +burioni +persona +stimo +enormemente +proposto +firmare +documento +vaccini +scienza +detto +guarda +documento +forse +portiamo +beppe +grillo +altro +grande +passo +avanti +secondo +me +problemi +caso +firmarlo +insieme +” +certo +no +grillo +stelle +maggioranza +abbandonano +posizioni +antiscientifiche +novax +italiano +felice +grazie +dunque +professor +burioni +servizio +continuo +causa +scienza +dignità +paese +grazie +ricercatori +medici +scienziati +futuro +appartiene +venditori +fumo +almeno +amici +americani +chiesto +davvero +roma +così +piena +rifiuti +minimizzato +dice +parti +giusto +sbagliato +comunque +paese +difendo +sempre +poi +apri +cronaca +romana +messaggero +vedi +scene +rabbia +roma +deve +essere +trattata +così +fatto +caso +mettendo +piedi +incredibili +diversivi +pur +parlare +banche +litigano +altro +fingono +dissidi +buttato +lì +persino +cannabis +pur +cambiare +discorso +obiettivo +mettere +tacere +vicenda +cercano +diversivi +abbassare +attenzione +invece +eccovi +mini +riflessioni +altro +semplici +semplici +governo +fatto +bene +fare +decreto +carige +penso +pd +benissimo +votare +favore +decreto +prima +polemiche +parte +viene +sempre +interesse +paese +usano +soldi +pubblici +garantire +poi +salvare +banca +esattamente +fatto +governo +gentiloni +tanto +altro +celebrazioni +anni +infinito +leopardi +ricordano +italia +innanzitutto +terra +cultura +letteratura +emozioni +capolavoro +scritto +quando +poeta +appena +anni +altro +riporta +mente +serate +passate +libri +liceo +studiare +farsi +grandi +domande +mai +emozionato +davanti +leopardi +capolavoro +serve +ricordarsi +vogliamo +essere +paese +persone +serve +farsi +domande +vere +autentiche +senso +vita +italia +comunità +dato +natali +alcune +straordinarie +espressioni +artistiche +culturali +mondo +possiamo +dimenticarcene +chiacchiericcio +ogni +giorno +tempo +suggerimento +fate +salto +recanati +visitare +luoghi +poeta +fatto +qualche +mese +fa +pieni +meraviglie +troppe +volte +sconosciute +italia +profonda +bellissima +forte +tutte +paure +quando +vedo +certe +immagini +domando +istituzioni +italiane +possano +stare +parte +gilet +gialli +dicono +ah +parte +macron +parte +legalità +forze +ordine +democrazia +giustifica +violenza +me +sempre +torto +sempre +vita +capita +cambiare +idea +salvini +maio +adesso +cambiato +idea +decidendo +salvare +banca +genova +legittimo +invece +inaccettabile +tentativo +prendere +giro +italiani +vedi +giustificazioni +girano +social +senti +stridore +unghie +specchi +mentre +giustificano +altro +dici +ammettono +verità +cambiano +discorso +problema +questione +banche +problema +nega +realtà +ieri +ilva +oggi +banche +domani +tav +aumento +pressione +fiscale +colpisce +cosa +sé +tracotante +arroganza +giustificano +fango +buttato +addosso +altro +bastati +minuti +riunione +notturna +consiglio +ministri +smentire +anni +insulti +menzogne +matteo +salvini +luigi +maio +devono +solo +vergognarsi +governo +populista +approva +decreto +salva +banche +aiutare +correntisti +risparmiatori +genova +esattamente +ciò +già +accaduto +arezzo +ferrara +marche +chieti +veneto +siena +quando +attaccati +amici +potenti +quando +cercano +credere +solo +aiuto +altro +risparmiatori +verità +banche +massacrato +bugie +fakenews +insulti +ilva +tap +terzovalico +trivelle +80euro +jobsact +alternanza +scuola +lavoro +fandonie +raccontato +italiani +oggi +fatto +cosa +giusta +risparmiatori +cosa +giusta +dimostrato +aver +spudoratamente +mentito +anni +tempo +galantuomo +fa +giustizia +tutte +bugie +bugie +piccoli +imbroglioni +prova +sforza +parliamo +male +maggioranza +poi +arriva +ministro +scheda +scienziati +base +idee +politiche +vicepremier +dà +solidarietà +picchiatori +francesi +entrati +ruspe +palazzi +istituzioni +domandi +apposta +problema +sparate +gratis +altro +populismo +costa +costa +tanto +oggi +uscito +dato +nessuno +considera +speso +miliardo +settecento +milioni +€ +maggiori +interessi +costo +spread +ogni +volta +salvini +fa +diretta +facebook +ogni +volta +maio +rincorre +ogni +volta +toninelli +idea +geniale +italiani +pagano +salvini +maio +tagliano +costi +politica +vero +costo +politica +miliardo +settecento +milioni +euro +biglietti +economy +vitalizi +vogliono +raggiungere +cifra +tutte +volte +leggete +sparata +maio +salvini +pensate +folclore +danno +populismo +costa +pagare +prima +italiani +invenzioni +firenze +calcio +giocare +palla +piedi +calcio +storico +storia +firenze +soltanto +modo +svagarsi +divertirsi +strada +affermare +identità +città +attesa +vincere +prossimo +scudetto +consoliamoci +passato +😉 +leggo +tweet +voglio +dirvi +grazie +firenzesecondome +messi +testa +camminare +cuore +cultura +passo +dopo +passo +puntata +dopo +puntata +sorpresi +riconoscere +valore +bellezza +tuffato +avventura +sembrava +doveroso +affascinante +dire +grazie +firenze +altro +adesso +finita +voglio +dire +grazie +grazie +creduto +lasciato +accompagnare +sognato +insieme +me +cammino +messo +vado +letto +felice +aver +realizzato +sogno +anni +firenze +oggi +conosciuto +città +stelle +quindi +desideri +aiuterà +tornare +sognare +buona +notte +amici +davvero +orgoglioso +ciò +insieme +fatto +ultima +puntata +firenzesecondome +vede +decoder +sky +trova +video +anticipazione +leonardo +bruni +sconosciuto +massime +figure +umanesimo +altro +fiorentino +metà +utilizza +parole +corso +secoli +usate +molto +libertà +uguaglianza +giustizia +vicesindaco +trieste +vanta +social +aver +buttato +via +coperta +senza +tetto +gesto +indegno +vicesindaco +città +ricca +valori +cultura +trieste +gesto +vigliacco +cerca +visibilità +dimentica +umanità +vergogna +assoluta +oggi +ultima +puntata +firenzesecondome +racconteremo +tante +curiosità +cominciare +rapporto +stelle +firenze +dante +galileo +periferie +ruolo +ordini +mendicanti +santa +croce +altro +orsanmichele +sapevate +esempio +calcio +giocare +palla +piedi +nato +proprio +firenze +piccola +anticipazione +racconto +assedio +altre +puntate +visibili +ancora +qualche +giorno +dplay +resto +vediamo +stasera +enorme +grazie +centinaia +migliaia +persone +seguito +camminata +cuore +firenze +voglio +fare +nessuna +polemica +nessuna +quando +vedi +foto +dispiace +roma +italia +puoi +cercare +cambiare +discorso +parlare +resto +pensioni +migrazione +quota +capitale +italia +stato +ferita +inaccettabile +roma +merita +scandalo +arriva +sera +provi +fare +punto +successo +politica +italiana +niente +ormai +avviene +mesi +elenco +provvedimenti +approvati +riforme +progettate +no +solo +lista +attacchi +salvini +ormai +cifra +nuova +politica +italiana +elenco +nemici +ministro +altro +interno +risolve +problemi +provoca +fa +polemica +giorni +allora +oggi +troviamo +minaccia +ong +insulto +malta +attacco +pd +immigrazione +classico +strumentalizzazione +mattarella +ironia +persone +mezzo +mare +scappano +fame +quotidiana +presa +giro +altro +oggi +repubblica +torna +comitati +civici +ritorno +futuro +comitati +azione +civile +voglia +combattere +governo +cialtroni +senza +entrare +dinamiche +interne +partiti +altro +correnti +voglia +dare +mano +verità +fake +news +scienza +apprendisti +stregoni +lavoro +assistenzialismo +ambiente +attacca +accordi +parigi +comitati +civici +strumento +semplicità +allegria +proposte +concrete +astenersi +rancorosi +vogliamo +solo +fare +politica +coraggio +determinazione +maggioranza +eterna +governo +può +bucarsi +improvviso +palloncino +troppo +pieno +aria +leggete +articolo +tempo +firenze +secondo +me +domani +sera +ore +canale +ultima +puntata +entra +santa +croce +fuori +calcio +storico +dentro +meraviglia +arte +ricordo +alluvione +storia +incredibile +angeli +fango +dopo +costi +politica +proseguiamo +posizioni +impopolari +fatturazione +elettronica +felice +fatto +fatturazione +elettronica +diventando +sempre +realtà +italia +nata +proposta +leopolda +ernesto +maria +ruffini +attuata +sotto +governo +oggi +viene +estesa +privati +molte +altro +polemiche +moltissime +sicuramente +potrà +dovrà +migliorarne +attuazione +idea +utilizzare +digitalizzazione +contrastare +evasione +vincente +già +stata +dichiarazione +precompilata +canone +bolletta +proprio +canone +simbolo +paga +paga +meno +naturalmente +contrario +altro +oggi +sovrintendente +pompei +massimo +osanna +lascia +servizio +guida +polo +culturale +importanti +mondo +fa +inaugurando +restauro +schola +armaturarum +anni +altro +notizia +crolli +oggi +fa +notizia +record +visitatori +quasi +milioni +praticamente +raddoppiati +pompei +classica +storia +negativa +ogni +volta +finiva +giornali +mondo +crollo +meno +lustro +rivoluzione +creduto +tanto +sapete +penso +bellezza +salvi +mondo +credo +cultura +grande +sfida +politica +oggi +senza +massimo +osanna +ottenuto +risultati +anni +altro +umberto +contarello +sceneggiatore +scritto +alcuni +film +belli +ultimi +anni +altri +grande +bellezza +premio +oscar +paolo +sorrentino +ieri +rivolto +lettera +aperta +molto +bella +foglio +stamani +risposto +parole +voglio +condividere +grazie +caro +umberto +contarello +grazie +altro +pensiero +grazie +auguri +grazie +caro” +inizi +lettera +ieri +foglio +saper +giocare +parole +utilizzarle +raccontare +emozionare +ispirare +privilegio +pochi +talento +regalo +condividendo +pensieri +quando +riesci +coniare +espressioni +altro +sabato +prossimo +canale +andrà +onda +quarta +ultima +puntata +firenzesecondome +entriamo +bargello +luogo +torture +supplizi +luogo +firenze +abolisce +pena +morte +prima +mondo +intervista +oggi +partendo +firenzesecondome +parlando +politica +molto +altro +buongiorno +belli +commenti +decisione +direttore +uffizi +schmidt +chiedere +indietro +quadri +rubati +nazisti +grazie +proposito +uffizi +sapete +qual +capolavoro +galleria +altro +secondo +me +quadro +opera +arte +scelta +donna +donna +importante +storia +firenze +oggi +federico +fubini +corriere +intervista +walter +ricciardi +presidente +istituto +superiore +sanità +dimesso +lasciando +poltrona +condivide +approccio +antiscientifico +governo +altro +massima +reazione +ministro +sanità +stata +imbarazzato +silenzio +dubbio +attaccato +pd +pandoro +entrambi +senz +anima” +giuro +attesa +giudizio +panettone +possiamo +ricordare +grillo +ministro +rinviato +obbligo +vaccinale +governo +improvvisato +cialtrone +tecnici +competenti +paura +danno +fastidio +poi +domandi +vanno +oggi +usciti +dati +istat +fiducia +aziende +minimo +anni +intervenendo +aula +detto +fiducia +senato +state +perdendo +fiducia +crea +posti +lavoro +temo +proprio +anno +difficile +economia +italiana +quel +certo +adesso +chiaro +italiani +altro +voluto +legge +bilancio +no +adesso +vedremo +risultati +tempo +davvero +galantuomo +spero +sbagliarmi +credo +strategia +italia +tornerà +recessione +purtroppo +dati +oggi +solo +antipasto +dirà +ragione +inizia +giusta +richiesta +direttore +uffizi +chiesto +restituirci +alcune +opere +rubate +nazisti +modo +particolare +vaso +fiori” +me +sembra +iniziativa +altro +sacrosanta +bravo +direttore +qualcuno +oggi +ironizza +quotidiani +direttore +uffizi +eike +schmidt +tedesco +prima +poi +capiranno +linguaggio +cultura +universale +parla +mondo +indipendentemente +passaporto +tasca +auguri +buon +anno +profondo +cuore +altezza +sogni +colpito +frase +filosofo +francese +bernard +henri +levy +stampa +fare +auguri +innanzitutto +esprimo +augurio +possibile +formularne +sembra +molti +contemporanei +deciso +unire +forze +altro +fomentatori +desideri +cospiratori +speranza +sperimentatori +futuro +sembra +preso +odio +oggi +ogni +futuro +ogni +progetto +ogni +temporalità +ogni +intensità +me +sembra +ragionamento +bellissimo +odio +rabbia +temono +futuro +dipingono +luogo +macabro +no +abbandoniamo +odio +rabbia +vogliamo +fomentare +desideri +cospirare +speranza +sperimentare +futuro +esattamente +auguro +auguro +grande +battaglia +educativa +culturale +fare +insieme +auguri +buonanno +ultimo +video +firenzesecondome +può +riguardare +michelangelo +gigante +assoluto +guardate +nascondere +cuore +san +lorenzo +ricordate +attaccato +buona +scuola” +tutte +critiche +legittime +chiaro +qualcosa +funzionava +cominciare +algoritmo +prof +prima +volta +dopo +decenni +altro +investiva +educazione +adesso +torna +passato +scuola +tagli +tagli +tagli +chiusa +unità +missione +edilizia +scolastica +ridotti +fondi +alternanza +scuola +lavoro +penalizzato +sostegno +alunni +maggiori +difficoltà +forse +qualcuno +potrebbe +riconoscere +fondi +scuole +invece +tagliano +educazione +tagliano +cultura +auguri +buon +anno +studenti +professori +comunque +fatto +chiacchierata +leggedibilancio +fabio +martini +stampa” +trovate +graditi +commenti +tempo +leggerla +31dicembre +quasi +mezzanotte +possiamo +lasciarci +andare +qualcosa +leggero +sperando +troll +stati +messi +letto +morto +norman +gimbel +tratta +autore +alcune +bellissime +canzoni +sigle +altro +esempio +mai +emozionato +davanti +killing +me +softly +with +his +song” +gimbel +autore +famose +sigle +televisive +storia +colonna +sonora +happy +days +quarantenni +cresciuti +fonzie +compagni +colonna +sonora +molto +semplice +stacco +musicale +ricordo +adolescenza +manovra +popolo +diventata +legge +subito +membri +governo +ruota +stupirei +occupassero +stasera +ogni +secondo +tg +rai +messaggio +barzelletta +fa +ridere +rivoluzione +adesso +cambia +aperto +balcone +palazzo +chigi +portato +bene +dichiarazioni +altro +comunque +imbarazzanti +maio +dice +prima +legge +scritta +pensando +italiani +effettivamente +taglio +imu +80€ +industria +misure +pensate +messicani +notoriamente +conte +dice +manovra +riscatto +italiani +paghino +dubbio +pensavo +pagassero +addirittura +altro +vorrebbero +costringerci +ignoranza +paura +libri +allora +potente +strumento +resistenza +civile +culturale +costruire +biblioteca +atto +profondamente +politico +medici +altro +resto +qualità +governanti +misurava +cultura +governati +parlato +ieri +durante +visita +biblioteca +laurenziana +passeggiata +dentro +firenze +secondo +me +parlato +biblioteche +oggi +frase +yourcenar +risposta +dare +trump +vorrebbe +dare +pistole +prof +scuole +americane +libri +unica +arma +portare +scuole +educazione +unica +salvezza +oggi +stelle +dicono +terroristi +democrazia +sotto +attacco +dopo +aver +dichiarato +ufficialmente +esaurita +povertà +dopo +aver +obbligato +parlamento +votare +legge +senza +aver +visto +testo +dopo +aver +fatto +inutile +guerra +europa +gestito +male +ridicola +retromarcia +bruxelles +dopo +aver +promesso +altro +reddito +780€ +cittadini +dopo +aver +raddoppiato +tasse +volontari +fatto +condono +fiscale +amici +amici +oggi +stelle +dicono +terroristi +speriamo +feste +restituiscano +tranquillità +livello +accuse +dovremo +trovare +ottimi +specialisti +livello +accuse +signori +vanno +aiutati +bene +ormai +evidente +dramma +legge +bilancio +peggio +italiani +buttiamola +ridere +amici +oggi +quotidiano +libero +pubblica +articolo +chissà +sento +parte +categoria +😂 +grazie +camminato +me +durante +terza +puntata +firenzesecondome +scoperto +meraviglie +san +lorenzo +prigionia +michelangelo +attenzione +fiorentina +biblioteche +vera +foto +fatina +invecchiata +pinocchio +certificato +morte +gioconda +insegnamenti +ipocrisie +allora +oggi +altro +lotta +evasori +altro +condoni +ringrazio +suggerimenti +critiche +fa +piacere +passo +dopo +passo +sempre +chiara +operazione +culturale +voluto +fare +lavoro +può +essere +apprezzato +meno +comunque +tentativo +scommettere +bellezza +società +dominata +paura +vuole +può +rivedere +puntata +ieri +precedenti +dplay +http +bit +firenzesecondome +grazie +buona +domenica +poco +terza +puntata +firenzesecondome +parleremo +fiorino +diventò +dollaro +epoca +bimbi +ancora +oggi +firenze +dicono +san +giovanni +può +fidare +parleremo +altro +michelangelo +savonarola +donatello +monna +lisa +pinocchio +naturalmente +lorenzo +magnifico +aspetto +ore +canale +norma +voluta +governo +esplicitamente +impediva +comuni +alzare +tasse +locali +accusato +essere +centralista +rivendico +forza +blocco +grazie +salvini +maio +1° +gennaio +altro +invece +possibile +comuni +aumento +tasse +locali +firmato +emendamento +bloccare +possibilità +fatto +nemmeno +discutere +poi +lamentano +sale +pressione +fiscale +oggi +inizieremo +terza +puntata +firenzesecondome +partendo +casa +medici +palazzo +via +larga +voluto +cosimo +toccheremo +luoghi +molto +cari +importante +famiglia +fiorentina +altro +soprattutto +complesso +san +lorenzo +vale +pena +allora +entrare +clima +puntata +ripartendo +rimasti +sabato +scorso +racconto +congiura +pazzi +lorenzo +magnifico +fratello +giuliano +finalmente +visto +bohemianrhapsody +film +carriera +freddie +mercury +queen +dire +queen +generazione +significa +ritornare +liceo +medie +girato +benissimo +quel +volete +me +bellissimo +suggerisco +ancora +visto +davvero +vale +pena +buona +notte +domani +terza +puntata +firenzesecondome +entreremo +luoghi +celebri +palazzo +medici +san +marco +certosa +galluzzo +posti +sconosciuti +archivio +san +lorenzo +parlare +monnalisa +pinocchio +chiesto +vedere +numeri +veri +legge +bilancio +dimostrare +legge +fregatura +italiani +facile +quando +devono +pagare +tasse +commercialista +bene +andiamo +commercialista +italia +noioso +dunque +almeno +numeri +chiari +altro +consiglio +nazionale +commercialisti +proprio +ufficio +studi +oggi +rilasciato +nota +dire +triennio +ben +miliardi +maggiori +entrate +tributarie +senza +contare +ovviamente +clausole +iva +auguriamo +disattivazione +conto +presto +fatto +miliardi +maggiori +entrate +contribuenti +altro +durante +funerale +shimon +peres +considerai +privilegio +poter +stringere +mano +amos +oz +grande +scrittore +israeliano +appena +tenuto +orazione +funebre +uomo +stato +presidente +premio +nobel +statista +amico +sempre +meglio +disse +oz +scegliere +speranza +ingenua +freddo +cinismo +peres +altro +inconfondibile +sognatore +talvolta +inciampava +occhi +fissavano +stelle +ripensato +quell +episodio +oggi +appena +appresa +notizia +morte +amos +oz +tornati +mente +alcuni +romanzi +scritti +fanatismo +compromesso +oz +definiva +fanatico +punto +esclamativo +ambulante +oggi +mondo +terrasanta +particolare +modo +molto +bisogno +compromessi +alti +nobili +senso +umorismo +meno +fanatismo +molto +bisogno +insegnamenti +valori +amos +oz +lieve +terra +maestro +passati +anni +fucilazione +fratelli +cervi +ricordare +vita +quei +ragazzi +significa +ricordarsi +valori +belli +italia +vengono +mente +parole +papà +alcide +detto +sempre +così +commemorazioni +quercia +cresciuto +rami +stati +falciati +quercia +morta +altro +bene +figura +bella +qualche +volta +piango +commemorazioni +guardate +seme +quercia +morirà +buona +nemmeno +fuoco +volete +capire +famiglia +guardate +seme +seme +ideale +testa +uomo” +guardate +seme +permetto +suggerimento +millennials +ragazzi +studiate +storia +fratelli +cervi +storia +pazzesca +ragazzi +dato +libertà +democrazia +giornata +santo +stefano +doveva +essere +novità +calcio +italiano +modello +inglese +giocare +giorno +dopo +natale +dovuto +portare +famiglie +stadio +creare +clima +gioia +serenità +accaduto +esattamente +opposto +ultrà +morto +milano +scontri +san +siro +cori +razzisti +verso +giocatore +napoli +altro +koulibaly +risolvere +problema +violenza +fisica +verbale +sceso +campo +ministro +interno +salvini +promesso +convocare +tifosi +tavolo +viminale +uomo +istituzioni +dunque +penso +ministro +interno +dovere +prendere +iniziativa +temi +vuole +essere +utile +altro +prima +seconda +puntata +firenze +secondo +me +visibili +gratuitamente +rete +canale +dplay +grazie +commenti +suggerimenti +consigli +sabato +prossimo +muoveremo +ancora +altro +cuore +firenze +toccando +luoghi +famiglia +medici +cominciare +complesso +san +lorenzo +certosa +galluzzo +san +marco +frattempo +interessati +passaggio +teatro +pergola +valore +politico +cultura +teatrale +musica +qualche +aneddoto +verdi +clamorosa +sconfitta +firenze +invenzione +telefono +antonio +meucci +continua +indecoroso +spettacolo +legge +bilancio +sapete +stati +costretti +leggere +ritardo +norme +maio +addirittura +scritte +inizia +invece +capirle +solo +adesso +adesso +inizia +capirle +maio +promette +modifiche +esempio +norma +terzo +settore +parlavo +stamattina +altro +cattivo +maio +vuole +po +tempo +norma +condono +invece +cambia +capita +benissimo +capito +benissimo +capita +benissimo +persone +accanto +intanto +proviamo +dirne +altra +finanziare +reddito +cittadinanza +disoccupati +tagliato +rinviando +assunzioni +altro +pranzo +natale +fatto +bene +maio +adesso +vuole +abbassare +canone +rai +ricordo +puntate +precedenti +canone +rai +costava +113€ +messo +bolletta +così +adesso +pagano +pagare +meno +pagare +strada +stanare +evasori +squallidi +condoni +maio +naturalmente +allora +altro +grillini +insultavano +definendo +scandalo +canone +bolletta +grazie +canone +bolletta +italiani +pagano +113€ +90€ +abbassamento +canone +fatto +legge +bilancio +però +evasori +vengono +fatti +tanti +regali +chissà +buongiorno +ben +ritrovati +spero +passato +buon +natale +famiglie +pensiero +catanese +scosso +terremoto +oggi +inizia +discussione +legge +bilancio +camera +ora +potuto +leggere +testo +stato +nascosto +fino +ultimo +senato +signori +streaming +altro +trasparenza +vediamo +ancora +evidenti +contraddizioni +follie +manovra +pensate +solo +raddoppiano +ires +mondo +no +profit +premiano +evasori +volontario +solidarietà +paghi +evasore +furbetto +paghi +meno +solo +me +sembra +mondo +rovescia +sera +giusta +entrare +cattedrale +firenze +dedicata +santa +maria +fiore +dante +vergine +madre +figlia +figlio +umile +alta +creatura” +luogo +simbolo +cristianità +firenze +augurio +affettuoso +credenti +natale +felicità +riposo +tante +polemiche +legge +bilancio +prossimi +mesi +purtroppo +pagheremo +conto +scelte +sbagliate +adesso +fermiamoci +amici +ora +stacca +qualche +ora +caccia +forsennata +ultimo +regalo +poi +stop +figlio +torna +casa +rivede +genitori +dopo +settimane +finalmente +ritrova +diritto +passare +qualche +altro +giorno +felicità +naturalmente +pensiero +passa +natale +senza +genitore +senza +figlio +senza +compagno +specie +primo +natale +dopo +lutto +abbraccio +molto +affetto +pomeriggio +pubblicheremo +clip +firenzesecondome +rapporto +cattedrale +madonna +firenze +pensiero +credenti +quali +natale +festa +altre +adesso +cristiani +augurio +bello +buon +natale +david +michelangelo +solo +simbolo +firenze +simbolo +stesso +bellezza +racconto +storia +strano +blocco +marmo +politico +pretese +metterci +naso +ricevendo +migliaia +messaggi +firenzesecondome +bellissimo +raccogliere +tante +considerazioni +educazione +cultura +mai +votato +sente +orgoglioso +appartenere +altro +patria +bellezza +felice +grazie +finalmente +riconosce +senso +operazione +sabato +scorso +fatto +audience +risultato +alto +media +canale +ieri +aumentato +oltre +pubblico +rete +ottimo +risultato +me +onore +grazie +discovery +grazie +fantastici +ragazzi +arcobalenotre +grazie +soprattutto +firenze +fatemi +dire +grazie +fiorentini +ieri +fiorentino +guardato +canale +gente +conosce +firenze +devo +firenze +condivido +clip +momenti +me +intensi +puntata +ieri +buona +domenica +mattino +scempio +istituzionale +compiuto +maggioranza +votata +fiducia +salvini +fa +attaccare +pd +rifiutati +partecipare +voto +riteniamo +viziato +parlando +senatore +salvini +senatore +presenze +aula +inizio +legislatura +senatore +altro +assistito +solo +ultima +mezzora +dibattito +sembra +ufficiale +quest +uomo +conosce +vergogna +comunque +adesso +legge +bilancio +andata +tratta +solo +aspettare +purtroppo +secondo +me +legge +pil +andrà +peggio +previsto +occupazione +peggiorerà +meno +investimenti +bene +italia +spero +tanto +sbagliarmi +temo +conti +sbagliati +quei +fenomeni +sciacallo +prestanome +vado +letto +buona +notte +grazie +visto +firenzesecondome +trascorso +oltre +ora +mezzo +camminando +insieme +me +meraviglia +firenze +adesso +posso +confessare +pezzo +entriamo +istituto +innocenti +sacrario +amore +spezzato +commosso +padre +prima +ancora +fiorentino +forse +visto +settimana +prossima +altro +entreremo +palazzo +medici +san +marco +certosa +complesso +san +lorenzo +solo +intanto +altro +luogo +medico +palazzo +madama +roma +secoli +fa +sede +medici +oggi +luogo +consuma +scandalo +legge +bilancio +abbraccio +buona +notte +firenze +secondo +me +adesso +diretta +canale +streaming +dplay +https +it +dplay +com +live +firenze +secondo +me +matteo +renzi +live +streaming +diretta +aula +senato +onda +seconda +puntata +firenzesecondome +canale +invece +aula +discussione +legge +bilancio +incredibile +storia +repubblicana +scene +incredibili +senato +crederete +cambiando +nuovo +maxi +emendamento +governo +oltre +confini +ridicolo +meno +male +federico +chiesa +salvato +giornata +luigi +maio +voluto +farmi +regalo +natale +me +aspettavo +devo +ringraziare +pubblicamente +guardate +grafico +pubblicato +ieri +pagina +grillini +diffuso +manetta +altro +rete +scritto +lavoro +tempo +indeterminato” +curva +rossa +lavoro +tempo +indeterminato +ultimo +trimestre +stato +lieve +aumento +tempo +indeterminato +maio +festeggiato +inviando +grafico +attenzione +casca +asino +guardate +bene +grafico +cosa +dice +leggere +curva +rossa +lavoro +tempo +indeterminato +cresce +modo +impressionante +quando +quando +entrano +vigore +altro +domani +torna +firenzesecondome +camminata +piazza +duomo +teatro +pergola +galleria +accademia +parte +david +arriva +farinata +clip +stenditoio +innocenti +oggi +rinvio +governo +riesce +chiudere +legge +bilancio +credo +volutamente +penso +semplicemente +incapaci +capisco +dirlo +elegante +momenti +giri +parole +servono +dimostrando +clamorosamente +incompetenti +purtroppo +vede +prima +poi +italia +serietà +tornerà +moda +scene +surreali +parlamento +persi +maxi +emendamento +rinviato +bene +quando +esperti +funzionari +vecchi +cronisti +commessi +ex +senatori +dicono +situazione +genere +mai +vista +approfitto +tornare +firenzesecondome +domani +onda +seconda +puntata +canale +altro +proporre +ora +mezzo +cultura +meraviglia +bellezza +può +apparire +controcorrente +effetti +penso +molto +bisogno +cultura +bellezza +domani +sera +cammino +prenderà +inizio +piedi +david +michelangelo +poi +cuore +istituto +innocenti +mezzo +dolore +mamme +altro +oggi +leader +spirituale +stelle +battista +definito +presidente +obama +golpista” +obama +golpista +spiego +matti +appena +torna +italia +battista +deve +farsi +vedere +qualcuno +possibilmente +bravo +ogni +volta +scopro +nuova +chicca +allucinante +legge +bilancio +ripenso +insultato +domenica +aprile +diretta +fazio +detto +no +accordo +grillini +oggi +fingono +ricordarselo +allora +tanti +dirigenti +commentatori +esperti +spingevano +altro +fare +governo +insieme +riuscite +immaginare +dovuto +fare +governo +affacciano +balcone +dichiarare +sparita +povertà +dovuto +fare +governo +mettono +condoni +tolgono +vaccini +dovuto +fare +governo +blocca +infrastrutture +gioca +paura +mentre +accingiamo +votare +legge +bilancio +fatta +fakenews +veri +danni +ripenso +quei +momenti +dico +chiedere +scusa +carità +probabilmente +allora +insultava +oggi +potrebbe +ringraziarci +senzadime +oggi +giorno +voto +legge +bilancio +meglio +notte +probabilmente +voteremo +dopo +mezzanotte +mai +vista +gestione +parlamentare +così +scandalosa +parleremo +aula +oggi +terrò +informati +alziamo +sguardo +notizia +politica +estera +presidente +trump +deciso +ritirare +soldati +americani +siria +altro +grande +entusiasmo +followers +twitter +stupore +sgomento +addetti +lavori +rischia +abbandonare +obiettivo +distruzione +isis +prima +averlo +raggiunto +abbandonano +curdi +popolo +coraggioso +battuto +modo +eroico +estremisti +islamici +infatti +ministro +difesa +americano +altro +polemica +avviso +garanzia +padre +maio +ridicola +solo +menti +contorte +possono +considerare +avviso +garanzia +sentenza +solo +menti +ancora +contorte +possono +utilizzare +presunti +reati +padri +arma +battaglia +figli +utilizziamo +oggi +avviso +garanzia +padre +maio +perche +altro +cinici +giustizialisti +maio +battista +tempo +debito +ministro +lavoro +dovrà +spiegare +padre +qualche +responsabilità +penale +fatto +davvero +prestanome +eludere +equitalia +padre +invece +interessa +abituati +strumentalizzare +meschini +stelle +governo +cambiato +manovra +schiantati +muro +paese +dunque +retromarcia +giusta +comprensibile +fa +impressione +modo +tracotante +maio +salvini +spiegando +italiani +realtà +cambia +niente +devono +mai +dire +verità +basterebbe +ammettere +altro +cambiato +idea +sbagliando +rischiavamo +troppo +no +insistono +diffondere +fakenews +dicono +ok +cambia +niente +risalirei +balcone +pensano +italiani +bevano +bugie +davvero +credono +poter +trattare +connazionali +persone +incapaci +intendere +volere +nodi +arrivando +pettine +tempo +cialtroni +scadendo +senato +finalmente +arrivato +maxi +emendamento +messo +molto +tempo +forse +riuscivano +scaricare +file +bruxelles +certo +fa +impressione +governo +sovranista +doveva +fare +rivoluzione +invece +fa +copia +incolla +tecnici +europei +prima +vista +maio +salvini +tagliano +investimenti +pubblici +adesso +metto +studiare +bene +tengo +informati +vediamo +venerdì +aula +intervento +buona +notte +salone +palazzo +vecchio +casa +politica +voluto +savonarola +sede +camera +luogo +pira +spazio +misteri +racconto +parlando +leonardo +vinci +battaglia +anghiari +firenzesecondome +aula +senato +interviene +presunto +premier +conte +imbarazzato +imbarazzante +cerca +giustificare +retromarciadelpopolo +precedenti +storia +repubblicana +almeno +salvini +maio +capiscono +antifona +vedere +nascondendosi +sovranisti +mollato +rimane +capire +affaccia +oggi +balcone +palazzo +chigi +juncker +italia +bene +evitare +procedura +infrazione +peccato +aver +buttato +via +settimane +preziose +miliardo +euro +cialtroni +salvini +deve +vergognare +deve +chiedere +scusa +quando +fatto +notare +sbagliava +abbracciando +ultrà +pregiudicato +trattava +kg +droga +violenza +stadio +davanti +bambini +peraltro +reazione +stata +ridicola +detto +indagato +mezzo +altri +indagati +no +ministro +interno +altro +squalifica +istituzioni +abbracciando +pregiudicati +padre +rafforza +immagine +negativa +gioco +bello +mondo +ministero +interno +validi +professionisti +dovrebbero +aiutare +evitare +incontri +sconvenienti +staff +viminale +serve +stare +facebook +promuovere +prodotti +alimentari +inutile +indossare +magliette +polizia +carabinieri +poi +abbracci +gente +scrive +digos +boia +salvini +solo +chiesto +scusa +detto +rifarei +vergognati +ministro +vergognati +chiedi +scusa +diretta +senato +top +ten +settimana +visitato +volte +cina +ultimi +mesi +quando +tocchi +tante +diverse +città +puoi +ignorare +straordinario +dinamismo +economico +accanto +contraddizioni +sociali +tocchi +mano +potenza +culturale +squilibri +ambientali +ieri +presidente +xi +jinping +discorso +storico +ricordando +anni +riforma +altro +deng +xiaoping +evidenziato +risultati +raggiunti +pil +cinese +decenni +cresciuto +media +ogni +anno +milioni +persone +uscite +povertà +straordinaria +campagna +povertà +storia +uomo +larga +parte +paese +patire +fame +normalità +ora +ricordo +cina +stata +altro +ottima +notizia +genova +sindaco +commissario +scelto +progetto +ponte +finalmente +parte +ciascuno +proprie +idee +percorso +migliore +importa +oggi +ricostruzione +morandi +diventa +realtà +bene +genova +ovviamente +state +smentite +fakenews +maio +prime +ore +falso +altro +autostrade +dato +soldi +pd +dati +lega +pd +falso +concessione +stata +votata +governo +esecutivo +berlusconi +salvini +votò +favore +pd +falsa +revoca +concessione +senza +aspettare +tempi +magistratura +giustizia +italia +regole +altro +oggi +maio +grillini +festeggiano +piazza +abolizione +corruzione +esattamente +mesi +fa +festeggiato +abolizione +povertà +uguale +uguale +beato +crede +alessandro +battista +risponde +accuse +giornale +insultando +naturalmente +offende +me +anziché +parlare +debiti +azienda +replica +citando +referendum +proprio +difesa +merito +davvero +questioni +aperte +vicenda +battista +prima +citare +ballo +genitori +famiglie +assurdo +quando +altro +assurdo +quando +viene +fatto +minimamente +interessato +gesta +battista +senior +uso +famiglie +altrui +fare +polemica +mai +nutrito +interesse +alcuno +dichiara +fascista +battista +deve +chiedere +scusa +tracotante +arroganza +solo +padre +altro +governo +riesce +chiudere +legge +bilancio +senato +lavora +giorni +attesa +emendamenti +tratta +solo +scorrettezza +parlamentare +vergognosa +purtroppo +molto +oggi +vengono +pettine +nodi +campagna +elettorale +solo +rapporto +europa +detto +verità +italiani +altro +conti +pubblici +perso +raccontato +sacco +frottole +vinto +adesso +soldi +realtà +presenta +conto +onestà +intellettuale +bisognerebbe +riconoscerlo +accadendo +oggi +riguarda +allora +solo +rapporto +bruxelles +roma +senato +governo +modo +altro +bella +immagine +elsa +morante +sempre +nuvole +offuscano +cielo +volte +illuminano +” +pensato +proprio +stamani +volando +verso +casa +adesso +buttiamoci +benedetta +legge +bilancio +finalmente +favore +presentare +numeri +veri +buona +giornata +amici +voglio +dire +grazie +carabiniere +mantiene +sangue +freddo +difficoltà +ragazzo +professionista +tiene +alto +onore +arma +italia +infami +altro +attaccano +spero +presto +assicurati +patrie +galere +spero +ministro +interno +preoccupi +anziché +passare +domenica +abbracciato +ultrà +precedenti +droga +commenti +firenze +secondo +me” +davvero +tanti +continuano +arrivare +copiosi +visto +fa +complimenti +immagini +regia +luci +complimenti +meritatissimi +giro +magnifica +altro +troupe +visto +attacca +audience +andato +rai +detto +occupa +tv +pubblica” +andato +mediaset +detto +venduto +berlusconi +” +andato +andrà +ah +vedono +pochi” +dispiace +sempre +polemica +contento +visto +documentario +scriva +servito +riflettere +ripropongo +allora +clip +momento +intenso +prima +puntata +cuore +uffizi +parliamo +mafia +aspettato +qualche +ora +vedere +qualcuno +interesse +approfondire +notizia +nulla +silenzio +tomba +parla +nessuno +storia +stamani +giornale +pubblicato +notizia +altro +curiosa +azienda +famiglia +battista +socio +alessandro +problemi +fisco +banche +fornitori +dipendenti +notizia +vera +fakenews +cosa +genere +riguarda +principali +leader +partito +maggioranza +dovrebbero +aprire +siti +dedicare +servizi +tg +chiedere +commenti +fare +giornalismo +inchiesta +vorrei +ricordare +padre +stato +apertura +tg +giorni +argomento +principale +talk +intere +altro +mancano +giorni +capodanno +nessuno +conosce +davvero +legge +bilancio +cosa +mai +vista +presentato +legge +festeggiando +palazzo +chigi +dichiarando +abolita +povertà +giurato +guerra +eterna +europa +dicendo +fregavano +rifiutato +proposta +lanciata +padoan +leopolda +altro +fatto +retromarcia +utilizzando +solita +arrogante +cialtroneria +ancora +oggi +degnano +dirci +quali +misure +dobbiamo +votare +dirvi +giorni +commissione +bilancio +senato +attendendo +salvini +compri +sushi +conte +torni +bruxelles +maio +capisca +carte +frattempo +senato +fermo +altro +ultimi +giorni +salvini +intervenuto +volte +documentario +firenze +secondo +me” +onorato +attenzione +penso +ministro +interno +dovrebbe +occuparsi +cose +rilevanti +proprio +ama +seguire +questioni +sicurezza +nazionale +ministro +potrebbe +almeno +trovare +miliardi +euro +coperture +altro +promesse +vuoto +campagna +elettorale +banalmente +recuperare +milioni +lega +nascosto +invece +niente +salvini +parla +firenze +secondo +me” +prima +dice +guarderà +mai +nessuna +ragione +mondo +poi +dice +vuole +fare +documentari +beni +culturali +città +infine +dice +signora +altro +me +madonna +cardellino +solo +quadro +molto +forse +significato +profondo +museo +mettere +nudo +anima +davanti +bellezza +breve +clip +raccontato +cosa +accade +me +davanti +raffaello +buongiorno +grazie +messaggi +cina +qualche +ora +rientro +domani +legge +bilancio +riuscito +rispondervi +tempo +reale +firenzesecondome +grazie +commenti +grazie +davvero +persa +puntata +disponibile +http +bit +firenzesecondome1 +proposta +bella +altro +suggerisce +fare +milanosecondome +romasecondome +napolisecondome +bellissimo +ovviamente +condotti +personaggi +relazione +speciale +città +frattempo +buona +visione +tempo +andare +http +bit +firenzesecondome1 +abbraccio +ieri +pazienza +firenze +altro +grazie +stato +cuore +firenze +leggo +volentieri +commenti +visto +puntata +immagine +piaciuta +cosa +convinto +firenzesecondome +fare +cose +italiana +sinonimo +furbizia +fascino +originalità +bellezza +giardino +boboli +campione +giardino +italiana +giardino +fatto +bene +luogo +magico +giovani +luogo +speciale +saltare +scuola +firenzesecondome +stasera +ore +pronti +parte +emozionato +viaggio +cuore +firenze +iniziamo +stasera +oggi +tocchiamo +piazza +pitti +giardino +boboli +vasariano +uffizi +palazzo +vecchio +piazza +signoria +solo +concittadino +potrà +sentirsi +stasera +emozionato +fiero +essere +fiorentino +felice +altro +solo +italiano +potrà +provare +orgoglio +vertigine +riconoscersi +parte +grande +paese +felice +tempo +vedere +trasmissione +troverà +modo +riflettere +identità +cultura +educazione +beh +allora +potremo +dichiarare +soddisfatti +stasera +bello +camminare +insieme +mistero +firenze +parte +messo +occhi +gambe +soprattutto +cuore +seguito +x +factor +vittoria +anastasio +messo +accordo +quel +ragazzo +può +piacere +meno +talento +straordinario +fare +polemica +politica +like +anastasio +mette +ridicolo +ok +messo +like +trump +salvini +mai +fatto +mai +posso +dire +artista +giudica +altro +anastasio +stravinto +meritando +smettessimo +fare +polemica +politica +meglio +interessa +sapere +vota +anastasio +basta +riconoscere +x +factor +spaccato +giù +cappello +basta +polemiche +quando +capi +stato +governo +unione +europea +riuniti +insieme +commemorare +vittime +attentato +strasburgo +solo +assente +solo +sola +sedia +vergognosamente +vuota +assente +premier +italiano +conte +arriva +bruxelles +vede +juncker +altri +fa +conferenza +stampa +poi +improvviso +decide +altro +prendere +aereo +stato +tornare +indietro +roma +andare +trattoria +salvini +maio +ripartire +giorno +dopo +bruxelles +cena +trattoria +quei +premier +vale +omaggio +vittime +strasburgo +interessa +sapere +populisti +speso +usando +aereo +stato +taxi +proprio +massacravano +molto +meno +voglio +dire +alta +voce +lasciare +consiglio +europeo +momento +solenne +commemorazione +vergogna +senza +fine +questione +galateo +serietà +rispetto +istituzionale +tecnicamente +parlando +schifo +addio +antonio +cittadino +italiano +cittadino +europeo +cittadino +mondo +italia +dovrà +portare +avanti +tutta +insieme +senza +divisioni +ideali +sogno +verso +stati +uniti +europa +allora +certo +sostiene +governo +anzi +pochi +sempre +alzato +voce +fatto +opposizione +modo +netto +forte +penso +manovra +sbagliata +sceneggiata +maio +balcone +stata +assurdità +totale +manfrinadelpopolo +fatto +perdere +tanti +soldi +italiani +altro +detto +prendiamoci +giro +alcune +dichiarazioni +arrivano +oggi +bruxelles +inaccettabili +italia +passa +governo +fa +figuraccia +italia +europa +può +deve +aprire +procedura +infrazione +senatore +opposizione +prima +italiano +crede +onestà +intellettuale +manovra +fa +schifo +governo +sbagliato +europa +alcun +diritto +aprire +procedura +firenze +presentazione +firenze +secondo +me +sabato +onda +prima +puntata +firenze +secondo +me +me +sogno +realizza +dopo +settimane +scrittura +lavoro +grazie +reso +possibile +progetto +primi +minuti +altro +semplice +assaggino” +vedere +resto +do +appuntamento +sabato +sera +oggi +diretta +facebook +presentazione +stampa +corrente +continuo +credere +bellezza +cultura +buona +giornata +disastro +quotidiano +governo +oggi +presenta +terzo +trimestre +occupazione +scende +nord +21mila +occupati +rispetto +trimestre +sud +35mila +dicono +dati +istat +fca +annuncia +misure +manovradelpopolo +potrà +mantenere +investimenti +italia +intanto +spunta +emendamento +altro +prima +volta +mette +nero +bianco +reddito +cittadinanza +poco +estensione +rei +finanziato +altro +novità +italiani +stati +ingannati +campagna +elettorale +sciacallo +salvini +prestanome +maio +realtà +forte +fake +news +verità +prima +poi +viene +fuori +buona +giornata +ripropongo +puntata +porta +porta +ieri +sera +provato +farmi +parlare +solo +pd +resistito +😉 +dite +cosa +pensate +amici +immagini +strasburgo +colpiscono +cuori +colpiscono +città +custodisce +democrazia +europea +colpiscono +mercatini +natale +obiettivi +attentato +vigliacco +lotta +terroristi +estremismo +islamico +deve +continuare +combattuta +piano +sicurezza +senza +incertezze +piano +altro +educazione +nuove +generazioni +molti +radicalizzati +nati +cresciuti +europa +ecco +oggi +rilanciata +forza +livello +continentale +intuizione +euro +cultura +euro +sicurezza” +intanto +preghiere +pensieri +famiglie +vittime +feriti +maio +chiede +salvini +chiarire +storia +milioni +€ +lussemburgo +soldi +pubblici +spariti +già +potrebbe +informarsi +peculato +leghisti +salvato +norma +personam +votata +maggioranza +salvini +replica +potrebbe +chiedere +maio +chiarire +storia +prestanome +cartelle +altro +equitalia +lavoro +nero +condoni +edilizi +materiale +pesante +tornerà +fuori +prossimi +mesi +ovviamente +pensare +fatto +guerra +temi +usato +social +dipingerci +disonesti +adesso +attaccano +nonostante +arrivino +prime +sentenze +risarcimento +danno +verità +altro +preparando +alcuni +emendamenti +legge +bilancio +ovviamente +questioni +strategiche +ancora +chiarite +accordo +unione +europea +abbasseranno +deficit +eviteranno +procedura +infrazione +saperlo +dobbiamo +aspettare +emendamenti +governo +però +alcune +cose +possiamo +proporle +opposizione +altro +emendamenti +scrivendo +territorio +collegio +emendamenti +coerenti +manovra +presentata +padoan +leopolda +emendamenti +salvare +alcune +leggi +governo +dopo +spreco +alimentare +poi +piccolo +emendamento +banale +arrabbiare +qualche +sindaco +prima +altro +ministro +pubblica +istruzione +annunciato +scriverà +circolare +scuole +chiedere +diano +meno +compiti +casa +durante +vacanze +natale +motivazione +almeno +ragazzi +genitori +solo +me +sembra +frase +superficiale +compiti +servono +crescere +studiare +migliorarsi +magari +no +altro +compiti +possono +fare +insieme +genitori +dire +ragazzo +deve +fare +meno +compiti +avere +tempo +libero +sembra +stravagante +solito +tentativo +lisciare +pelo +gente +dicendo +cose +felici +forse +destinatari +bene +comunità +soprattutto +ministro +pubblica +altro +evoluzione +economia +italiana +ultimi +anni +scelte +salvini +maio +distruggono +crescita +riportano +recessione +ciascuno +tenga +opinioni +fatti +personale +buffo +contesta +anni +eccesso +personalizzazione” +esca +oggi +dicendo +dica +renzi +vuol +fare +colpa +renzi +renzi +chiarezza +accadendo +ore +accusano +personalizzare +poi +preoccupano +modo +ossessivo +me +poi +spesso +qualche +mese +fa +altro +sognavano +accordo +pd +stelle +presentavano +maio +nuovo +berlinguer +quando +alzato +voce +quasi +solitario +gruppo +dirigente +andando +tv +dicendo +no +accordo +grillini +fatelo +senzadime” +detto +renzi +zitto +invade +campo +altrui +dovrebbe +tacere” +vedendo +governano +grillini +altro +mondo +dominato +barbarie +rancore +può +avere +senso +scommettere +bellezza +camminando +strade +firenze +provato +rifletterci +raccontando +vicoli +storie +monumenti +altro +meravigliosa +città +domandato +cosa +serva +bellezza +sabato +sera +onda +firenzesecondome +aspetto +commenti +trollls +prima +aspettate +vedere +trasmissione +ancora +andata +onda +😉 +italia +esponenti +partiti +maggioranza +sembrano +innamorati +gilet +gialli +beppe +grillo +salvini +battista +elogiano +rivolta +popolare +francia +migliaia +fermati +decine +feriti +fuoco +strade +parigi +modo +combattere +ingiustizie +sociali +me +no +fuori +moda +minoranza +altro +controcorrente +me +no +puoi +dare +governi +tutte +colpe +vuoi +puoi +attaccare +premier +presidenti +ministri +chiunque +puoi +fare +analisi +sociologiche +raffinate +globalizzazione +diseguaglianze +poi +però +realtà +realtà +molto +semplice +cambiare +cose +occorre +politica +populismo +servono +riforme +barricate +strade +serve +buon +senso +demagogia +italia +gilet +gialli +già +governo +già +primi +mesi +vediamo +economia +rallenta +disoccupati +aumentano +pensiamo +davvero +modo +ripartire +crescita +rinnovare +europa +prendere +sassate +camionette +gendarmeria +francese +oggi +giorno +verità +legge +bilancio +governo +metterà +nero +bianco +veri +numeri +finirà +indecorosa +manfrina +iniziata +settembre +abolizione +povertà +balcone +palazzo +chigi +può +solo +criticare +allora +voglio +spendere +parola +positivo +solo +governo +già +altro +fatto +controproposte +accolte +spread +scenderebbe +tasse +accoglieranno +temo +ieri +però +salvini +incontrato +categorie +confapi +fatto +proposta +molto +intelligente +reddito +cittadinanza +dare +780€ +stare +divano +assurdo +fondi +sufficienza +governo +altro +giornata +festa +firenze +bellissima +sole +ieri +tempo +uggioso +oggi +tanta +gente +strade +chiacchierate +situazione +economica +politica +selfie +discussioni +pareggio +rocambolesco +fiorentina +regolare +normale +quel +senso +magone +cuore +ieri +riusciamo +toglierci +altro +vedi +anni +nascita +ragazzi +morti +maledetta +serata +pensi +figli +quell +età +lì +pensi +sabato +sera +senti +gelare +sangue +pensi +mamma +ragazzi +giovane +te +moglie +continui +trovare +senso +tragedia +assurda +senso +passa +secondo +piano +domenica +tristezza +infinita +notizie +arrivano +ancona +creano +dolore +enorme +sconvolto +italiani +padre +ragazzi +quell +età +riesco +immaginare +possa +accadere +strage +genere +adesso +solo +preghiere +abbraccio +famiglie +amici +vittime +fine +settimana +ama +politica +può +pensare +triste +bellezza +funerale +george +bush +cagnolino +fermo +davanti +bara +america +capace +stringersi +intorno +altro +simboli +bandiere +politica +fatta +rispetto +riconoscenza +verso +istituzioni +stile +lettera +lasciata +bush +clinton +momento +passaggio +consegne +dice +molto +cosa +democrazia +americana +nonostante +onore +presidente +bush +onore +vive +politica +rancorosa +caccia +uomo +scambio +idee +sogni +speranze +tenetevi +pure +demagogia +populismo +tengo +idea +politica +davvero +altra +cosa +italia +incattivita +rancorosa +impaurita +immagine +consegna +relazione +censis +molto +triste +cedere +cultura +pessimismo +dico +italia +diversa +già +solo +valorizzata +ore +censis +descrive +stato +animo +parole +piace +segnalare +bebe +vio +altro +meravigliosa +energia +oggi +bebe +detto +voglio +diventare +presidente +coni +donne +devono +lottare +arrivare +vertici +vita +figata +ripete +spesso +campionessa +paralimpica +chiedemmo +rappresentare +italia +cena +stato +obama +anni +fa +tanti +problemi +persone +bebe +insegnano +guardare +avanti +senza +paura +senza +cedere +rancore +grazie +bebe +sogni +continui +fare +obiettivi +continui +darti +lezione +continui +darci +lasceremo +mai +italia +ceda +paura +rancore +mentre +andare +letto +notare +via +sms +assist +quaresma +match +nazionali +parlamentari +italia +russia +finito +pagina +chiamarsi +bomber +molti +può +altro +dire +poco +ama +calcio +tanta +roba +insomma +vado +letto +orgoglioso +trivela +diciamo +verità +riprovo +venti +volte +detto +venga +bene +così +buona +notte +amici +buona +trivela +diretta +senato +top +ten +settimana +global +compact +migrazione +dividendo +molti +governi +ultimo +belgio +italia +state +tensioni +premier +teorico +conte +annunciato +firma +italia +premier +ombra +salvini +smentito +gioco +lega +sempre +solito +picchiare +duro +paura +migranti +chiedo +perdere +minuti +altro +tempo +voglio +dimostrarvi +scelta +salvini +serve +lega +serve +italia +oggi +italia +trovata +sola +gestione +migranti +europa +approvato +quindici +anni +fa +trattato +dublino +purtroppo +proprio +italia +proporlo +lega +forza +italia +governo +nome +bossifini +altro +oggi +media +parlano +nuovo +divisioni +pd +naturalmente +sempre +qualche +fonte +anonima +dà +colpa +renzi +strano +mettiamo +cose +fila +dopo +elezioni +dimesso +spiegato +lungo +discorso +assemblea +nazionale +ciò +secondo +me +sbagliato +ciò +fatto +bene +assunto +altro +responsabilità +quel +momento +fatto +battaglia +senatore +opposizione +tale +stato +eletto +qualche +corrente +cittadini +collegio +fatto +battaglia +accordo +stelle +vaccini +obbligatori +taglio +periferie +condono +fiscale +edilizio +altro +oggi +assolavoro +presentato +prime +conseguenze +decreto +dignità +legge +voluta +maio +gennaio +53mila +posti +lavoro +meno +jobsact +oltre +milione +posti +lavoro +anni +decreto +dignità +53mila +posti +lavoro +meno +solo +primi +mesi +vere +scelte +importanti +politica +forse +qualcuno +adesso +smetterà +attaccare +jobsact +governo +paese +verso +recessione +bruxelles +giorni +lavoro +arrivato +albergo +butto +occhio +social +vedo +tanti +prendono +giro +proprio +oggi +trascorsi +esattamente +anni +sconfitta +referendaria +dicembre +tanti +chiedono +ancora +oggi +matteo +te +fatto +fare +potevi +essere +ancora +sella +altro +bisogno +fare +riforma +costituzione +amici +ve +dico +grande +libertà +fa +politica +nome +idee +difendere +poltrona +carriera +stato +meglio +fare +quel +referendum +paese +utile +necessario +giusto +provarci +giusto +dare +stabilità +efficienza +altro +fare +propaganda +manifestazione +piazza +salvini +messo +insieme +altri +manifesti +scritta +no +saro +piazza +fa +sciacallo +ogni +atto +criminale +dimenticando +essere +ministro +dovrebbe +garantire +sicurezza +lucrare +altroinsicurezza +piazza +portato +paese +recessione +spread +pil +negativo +piazza +votato +concessione +autostrade +annunciato +revoca +poi +dimenticato +entrambe +cose +piazza +votato +rinvio +obbligatorietà +vaccini +altro +complimenti +carabinieri +forze +ordine +operazione +stamani +palermo +nuova +cupola +mafiosa +orgogliosi +lavoro +quotidiano +donne +uomini +lottano +legalità +mafia +viva +italia +movimento +stelle +tanto +cambiare +attacca +me +dopo +vicenda +signor +maio +attaccano +sempre +me +solo +me +comunque +me +qualsiasi +cosa +accada +risposta +sì +però +renzi +stavolta +andati +oltre +ridicolo +tocca +rispondere +scopri +differenze +vogliamo +parlare +padri +quando +arrivate +accuse +lavoro +altro +nero +maio +senior +confessato +padre +querelato +diffamazione +poi +sembra +gran +periodo +scrive +falsità +padre +ben +marco +travaglio +scopri +differenze +vogliamo +parlare +figli +gigino +maio +fatto +tutta +carriera +spargendo +false +verità +vero +fango +padri +altri +altro +missionario +salesiano +lombardo +padre +ugo +censi +fondatore +operazione +mato +grosso +lasciato +notte +perù +dopo +vita +spesa +poveri +conosciuto +ragazzo +volontari +altro +operazione +poi +fortuna +incontrare +volte +padre +ugo +firenze +lima +conosciuto +ricorda +oggi +gratitudine +fede +forza +impressionante +energia +grazie +padre +ugo +stato +bello +condividere +pezzo +strada +te +quando +settimana +scorsa +iene +iniziato +parlare +famiglia +maio +detto +odio +ferisce +odio +perisce +chiesto +scuse +famiglia +stata +trattata +stelle +anni +sussulto +onestà +intellettuale +salvini +ammesso +parte +politica +sbagliato +passato +altro +utilizzare +famiglie +aggredire +avversari +meglio +niente +stelle +invece +continuato +attaccare +stampa +insultarci +sottolineare +maio +entra +nulla +comunque +colpa +prima +credo +settimana +appena +trascorsa +lasci +insegnamenti +equitalia +abusi +edilizi +lavoro +nero +altro +firenze +calcio +oggi +giorno +franchi +arriva +juve +fatto +intervista +gazzetta +sport +tranquilli +salvini +insegno +allenatori +fare +formazione +altro +limito +dire +vince +fiorentina +riapre +campionato +diventa +interessante +servizio +paese +buona +giornata +amici +ieri +canale +mandato +onda +scherzo +fatto +mentre +registravo +firenze +secondo +me +naturalmente +paolo +bonolis +perso +occasione +prendermi +giro +meno +male +portato +altro +poltrona +casa +altrimenti +perdevo +buona +visione +amici +troll +insulteranno +scherzi +parte +vita +difficile +fate +amici +meritate +abbraccio +affettuoso +buon +divertimento +oggi +governo +cambiamento +festeggia +primi +mesi +vero +cambiato +nulla +mondo +riferimento +culturale +maio +pienamente +felice +guardate +fatti +oggettivi +tirate +conseguenze +fatto +abusi +edilizi +condono +pagato +tasse +stracciano +cartelle +equitalia +altro +lavoro +nero +colf +muratore +giustificano +prendi +lavoro +nero +chiedono +denunciare +nemmeno +male +tanto +prima +poi +reddito +cittadinanza +potrai +continuare +lavoro +nero +rubato +soldi +rimborsi +regionali +cambio +legge +peculato +fatto +abusi +altro +commosso +stamani +leggendo +storia +bimbo +inglese +anni +scrive +lettera +auguri +padre +morto +anni +prima +chiede +poste +portarla +paradiso +poste +scrivono +altro +bambino +stata +difficile +fatta +missione +compiuta +quando +burocrazia +mostra +cuore +piccolo +gesto +diventa +emozione +bellissima +trova +differenze +renzi +gentiloni +padoan +pil +consumi +famiglie +investimenti +macchinari +veicoli +occupati +febbraio +maggio +milione +180mila +deficit +pubblico +pil +giù +pressione +fiscale +abbassata +pil +forte +riduzione +paesi +altroeuroarea +considerando +effetto +euro +mesi +giugno +30novembre +salvini +maio +tria +pil +terzo +trimestre +infrastrutture +ferme +crollo +fiducia +famiglie +imprese +calo +96mila +occupati +rispetto +maggio +spread +numeri +parlano +chiacchiere +zero +tornata +crescita +torna +recessione +piccolo +risultato +lavoro +governo +grazie +decreto +madia +ridotto +partecipate +comuni +quasi +terzo +poltrone +meno +presentare +risultati +nostalgia +serietà +antipatici +dicono +meglio +antipatici +cialtroni +piccolo +imprenditore +ucciso +ladro +introdotto +notte +azienda +legge +uomo +esasperato +aver +subito +rapine +ultimi +anni +pare +molto +provato +ciò +accaduto +volevo +ucciderlo +mirato +gambe” +detto +ciascuno +può +commentare +bar +altro +vicenda +triste +dolorosa +ovvio +riparta +discussione +legittima +difesa +oltre +discussioni +amici +giusto +prendere +porto +armi +no +meglio +farlo +fatto +posto +fatto +bene +sbagliato +altre +possibilità +gomma +vale +vita +umana +eccetera +eccetera +dibattito +altro +ecco +quando +aziende +italiane +visione +strategica +risultati +arrivano +bisogna +investire +africa +bisogna +scommettere +sostenibilità +ambientale +enel +green +power +altro +notizie +riescono +bucare +dibattito +politico +nazionale +giusto +sottolinearle +rilanciarle +dobbiamo +investire +africa +europa +aziende +senza +lasciarla +solo +investimenti +cinesi +dobbiamo +scommettere +sostenibilità +fattore +trainante +crescita +economia +verde +può +creare +molti +posti +lavoro +altro +reddito +cittadinanza +buona +serata +amici +settimana +salvini +fatto +passare +voto +segreto +emendamento +salvare +carcere +parlamentari +condannati +secondo +grado +salvato +bossi +denunciandolo +appropriazione +indebita +condonato +milioni +€ +produttori +sigarette +elettroniche +quali +finanziato +lega +continuato +mentire +dicendo +altro +essere +estraneo +clamorosa +vicenda +milioni +€ +lega +deve +restituire +stato +naturalmente +movimento +stelle +tempo +parlava +onestà +oggi +accoda +oppure +tace +settimana +neanche +berlusconi +mai +riuscito +fare +tanto +diretta +senato +top +ten +settimana +aspetto +facebook +top +ten +settimana +poco +oggi +alcuni +giornali +attaccano +professor +roberto +burioni +siccome +burioni +ragione +quando +difende +scienza +ignoranza +fakenews +cosa +attaccano +ovvio +carattere +altro +arroganza +quando +qualcuno +dice +cose +scomode +vere +unico +modo +contestare +cose +attaccare +carattere +arroganza +sempre +solito +film +solidarietà +roberto +burioni +grazie +battaglia +favore +vaccini +mille +fakenews +vengono +lanciate +addosso +quotidianamente +renzi +fatto +scambio +europa +prendendo +migranti +cambio +flessibilità +80€ +” +tratta +altro +bugia +galattica +continua +essere +rilanciata +divenendo +virale +continua +essere +bugia +stamattina +carlo +calenda +stato +protagonista +varie +trattative +europee +ambasciatore +bruxelles +spiegato +verità +spacciatori +fakenews +quali +peraltro +pure +governo +minuti +ascoltate +dibattito +surreale +vale +pena +oggi +aula +senato +votare +decreto +fiscale +cose +sconvolgenti +regalo +milioni +€ +finanziato +campagna +elettorale +lega +salvini +interessati +articolo +finito +condoni +adesso +iniziano +marchette +azienda +edile +luigi +maio +scelte +padre +già +detto +scritto +altra +notte +me +basta +avanza +adesso +toccherà +vicepremier +venire +parlamento +spiegare +aula +ciò +chiarito +ragionamento +altro +interessa +sbirciare +buco +serratura +cosa +fatto +maio +padre +altro +sconvolge +pensare +maio +figlio +voluto +decreto +dignità +prima +reddito +cittadinanza +poi +definizione +misure +aumentare +piaga +lavoro +nero +bisogna +rendere +facili +assunzioni +licenziamenti +invece +fatto +decreto +dignità +bisogna +dare +incentivi +assumere +jobsact +reddito +cittadinanza +bisogna +combattere +evade +rinviare +fatturazioni +elettroniche +bisogna +sanzionare +fa +abusi +edilizi +votare +condoni +lavoro +nero +evasione +abusi +edilizi +imprenditore +maio +può +dire +altrettanto +politico +maio +parte +me +ricordo +leghisti +anni +novanta +partiti +inneggiando +dio +po +agitavano +cappio +parlamento +gridavano +roma +ladrona +sembravano +onesti +oggi +sentenza +secondo +grado +conferma +unica +ladrona +lega +rubato +milioni +€ +devono +restituirli +comprato +lauree +albania +altro +portato +diamanti +tanzania +nascosto +soldi +chissà +quei +soldi +pubblici +soldi +contribuenti +rendiamo +conto +signor +ministro +salvini +fa +continua +parlare +gattini +gattuso +finalmente +spiega +lega +ladrona +nascosto +soldi +italiani +quando +visto +servizio +iene +famiglia +maio +imposto +dire +nulla +fare +signore +sempre +resto +m +interessa +sapere +padre +maio +dato +lavoro +nero +evaso +tasse +condonato +abusi +edilizi +convinto +presunta +onestà +stelle +grande +fakenews +altro +bufala +dimostrano +tante +vicende +personali +evasore +beppe +grillo +giù +convinto +colpe +padri +debbano +ricadere +figli +dico +sempre +differenza +maio +accorto +adesso +notte +riesco +finta +nulla +rivedo +fango +gettato +addosso +altro +fatto +chiacchierata +barbara +jerkov +messaggero +danni +proposte +economia +zagrebelsky +bonus +raggi +sempre +immaginato +cottolengo +cuore +sociale +torino +simbolo +accoglienza +calore +intera +italia +quando +diventato +presidente +consiglio +stato +me +onore +altro +varcare +porte +istituzione +don +andrea +collaboratori +nati +molti +progetti +certo +proseguiranno +nuovo +governo +cottolengo +cottolengo +colore +politico +arcobaleno +speranza +conservo +ricordi +belli +tanti +abbracci +donne +uomini +ragazze +ragazzi +bambine +bambini +dedicato +qualche +preghiera +regalato +dono +amicizia +altro +ultima +fakenews +colpa +spread +renzi +gentiloni +salvini +dimaio +bastano +secondi +professor +fortis +leopolda +smentire +fate +girare +video +fakenews +aumentati +posti +lavoro +solo +spread +ricordate +polemiche +me +bonus +quando +premier +lega +stelle +attaccavano +dicendo +misure +servivano +italia +solo +bonus +elettorali +bene +tempo +galantuomo +arrivati +bonus +80€ +confermato +bonus +bebè +cancellato +poi +parzialmente +reintrodotto +bonus +18enni +altro +contestato +poi +confermato +bonus +500€ +professori +confermato +verità +pentaleghisti +costretti +ammettere +misure +utili +punto +confermano +odio +governo +poi +confermate +misure +rovesciato +quintali +fango +addosso +poi +provano +copiarci +già +allora +copiate +bene +leopolda +lanciato +proposta +legge +bilancio +dimezza +spread +abbassa +tasse +lavoratori +famiglie +rischiano +pagare +errori +salvini +maio +copiato +bonus +copiateci +legge +bilancio +rimettiamo +posto +spread +via +condoni +via +redditi +cittadinanza +salviamo +italia +mobilitarsi +serve +ore +qualcosa +diecimila +ragazzi +nati +risposto +appello +firmando +petizione +sbloccare +18app +bonus +renzi +diciottenni +ministro +finalmente +firmato +novembre +meglio +tardi +mai +oggi +voglio +dire +grazie +tenuto +attenzione +temi +altro +chiedo +continuare +tagli +18app +prossimo +anno +ragazzi +vinto +battaglia +importante +adesso +lavoro +evitare +silenzio +ragazzi +governo +cancelli +misura +ragazzi +invito +spendete +bene +500€ +voluto +18app +dare +segnale +cultura +taglia +cultura +costruisce +cittadinanza +ragazzo +entra +libreria +teatro +museo +compie +gesto +rivoluzionario +entra +età +cittadinanza +piena +attiva +adulta +partendo +valori +cultura +altro +cultura +mangia +adesso +ufficiale +possiamo +dirlo +dicembre +documentario +firenze +secondo +me +andrà +onda +settimane +sempre +sabato +sera +molto +felice +grazie +lucio +presta +tutta +straordinaria +squadra +lavorato +mesi +sotto +sole +firenze +grazie +discovery +metterà +onda +altro +italia +me +sogno +adesso +diventato +realtà +sì +sogno +sempre +pensato +firenze +speciale +capace +tenere +insieme +politica +bellezza +scontri +capolavori +innovazione +poesia +passato +futuro +studiare +vivere +raccontare +firenze +aiuta +vivere +meglio +tempi +quando +barbarie +attacca +cultura +investire +progetto +educativo +firenze +sfida +affascinante +difficile +bellezza +salverà +mondo +credo +davvero +può +solo +criticare +bisogna +fare +controproposte +detto +me +legge +bilancio +stupida +fa +male +italia +italiani +palco +leopolda +insieme +pier +carlo +altro +padoan +provato +rilanciare +offrendo +alternativa +media +praticamente +parlato +vuole +riflettere +ragionare +discutere +minuti +video +illustriamo +grandi +linee +manovra +alternativa +stati +governo +ridotto +spread +fatto +crescere +occupazione +riducendo +prima +volta +anni +rapporto +deficit +pil +quindi +possiamo +solo +criticare +oggi +governa +saprà +ascoltare +giorni +pagina +facebook +salvini +possono +condividere +tenere +immagini +gattini +tratta +strategia +studiata +team +ministro +interno +proprio +quando +italia +andando +sbattere +muro +obiettivo +mostrare +capo +lega +molto +umano +scientificamente +costruito +tavolino +spero +altro +soldi +pubblici +problema +salvini +piacciono +gattini +problema +legge +bilancio +stupida +mai +fatta +governo +italiano +danni +reali +economia +italiana +aziende +famiglie +decreto +dignità +primi +licenziamenti +altro +assunzioni +gattino +lettera +babbo +altro +quando +premier +voluto +piccola +norma +diciottenni +500€ +spendere +meglio +investire +cultura +quando +diciottenne +compra +libro +teatro +entra +museo +sento +orgoglioso +altro +essere +italiano +salvini +maio +bloccato +bonusrenzi +diciottenni +nati +vogliono +cancellare +nati +facciamoci +sentire +sbloccare +fondi +prima +dicembre +evitare +taglino +prossimo +anno +giusto +tagliare +sempre +cultura +giusto +tagliare +sempre +giovani +salvini +maio +fatto +legge +bilancio +sbagliata +dovevano +abolire +povertà +decreto +solo +tagliato +fondi +scuola +bonus +bebè +infrastrutture +dovevano +aumentare +posti +lavoro +grazie +decreto +dignità +licenziamenti +alzato +solo +spread +dovevano +promuovere +onestà +altro +approvato +condoni +punto +danno +colpa +renzi +gentiloni +spread +pil +positivo +fermato +ormai +oltre +ridicolo +riescono +mai +assumersi +responsabilità +fatto +legge +bilancio +stupida +interesse +italiani +danno +colpa +fallimento +pensano +davvero +italiani +possano +credere +squallida +propaganda +bisogna +reagire +amici +colpo +colpo +senza +paura +stamattina +stato +scandicci +cuore +collegio +eletto +insieme +bravo +sindaco +sandro +fallani +preparato +alcuni +emendamenti +legge +bilancio +infrastrutture +scuole +altro +periferie +tutte +cose +stupida +manovra +salvini +maio +purtroppo +tagliando +approfittato +caffè +piazza +chiacchiera +po +cittadini +incontrati +piazza +tanta +preoccupazione +risparmi +molta +voglia +reagire +molliamo +amici +italia +forte +cialtroni +governano +salvini +maio +mettendo +rischio +soldi +italiani +irresponsabili +pensano +ottenere +consenso +sfasciando +conti +bocciatura +europea +mercati +fatto +molto +grave +governo +conferma +miglior +amico +speculatori +soldi +italia +appello +presidente +altro +consiglio +ministro +economia +fermatevi +abbassate +deficit +aprite +dialogo +commissione +cambiate +misure +formulato +padoan +controproposta +dimezzerebbe +spread +oggi +oltre +governo +portato +sotto +quota +abbasserebbe +tasse +pronti +collaborare +aiutare +italia +italiani +fermatevi +altrimenti +prezzo +follia +pagato +caro +cittadini +diretta +senato +top +ten +settimana +fatto +lunga +chiacchierata +claudio +cerasa +direttore +foglio +parlato +spread +crisi +economica +futuro +balle +spaziali +raccontate +salvini +campagna +elettorale +flop +altro +stelle +proposte +fare +basta +criticare +concludo +sguardo +pieno +ottimismo +continuo +credere +futuro +italia +paese +grande +piccole +guerriglie +quotidiane +governo +voglia +tempo +leggerla +lascia +commento +astenersi +troll +ormai +riconosciamo +volo +vediamo +topten +settimana +guardate +storia +oggi +corriere +capodoglio +spiaggiato +indonesia +letteralmente +pieno +plastica +pensate +pezzi +plastica +oltre +chili +bottiglie +sacchetti +infradito +altro +mari +talmente +pieni +plastica +muoviamo +mare +plastica +pesci +allarme +lanciato +world +economic +forum +davos +propriamente +associazione +ambientalista +dobbiamo +insieme +lottare +plastica +investire +innovazione +ricerca +producono +posti +lavoro +salvano +pianeta +sconfiggere +inquinamento +fake +news +ricordate +attaccato +tanto +cambiare +storia +altro +criticato +spesso +sindaco +roma +virginia +raggi +mancanza +pulizia +qualità +manto +stradale +servizio +scadente +autobus +oggi +felice +dare +atto +sindaco +tutta +amministrazione +operazione +casamonica +davvero +ottima +cosa +roma +legalità +italia +serietà +altro +confronto +politico +passa +riconoscere +risultati +avversari +mai +fatto +diversi +complimenti +sindaco +strada +legalità +sempre +compagni +viaggio +sapete +cosa +capisco +clima +cambiando +risposte +danno +profili +finti +troll +lega +stelle +prima +ogni +argomento +contestavano +operato +ora +limitano +insultare +chiedere +sparire +fateci +caso +amici +quando +travaglio +stato +condannato +volte +nessuno +attacca +finti +scandali +altro +quando +spread +vola +oltre +nessuno +mette +discussione +risultati +economici +governo +quando +grillini +votato +condono +edilizio +nessuno +parla +onestà +ambiente +massimo +dicono +sparisci +ritirati +perso +referendum +parlare +vattene +ancora +vediamo +passi +avanti +altro +salvini +maio +scelto +linea +politica +economica +suicida +italia +mercati +presentando +conto +paghiamo +cittadini +spread +significa +prossimo +anno +miliardi +euro +interessi +debito +volte +canone +rai +volte +imu +prima +casa +cifra +aggiuntiva +altro +stanziata +finto +reddito +cittadinanza +spread +così +alto +danno +famiglie +imprese +risparmiatori +banche +artigiani +ricordate +polemiche +banche +fallite +allora +soldi +persi +subordinati +risparmiatori +milioni +euro +quando +carica +governo +risparmiatori +altro +dice +maio +impianti +rifiuti +vintage +certo +niente +neanche +impianto +compostaggio +diciamo +no +così +bello +facile +dire +no +maio +modernità +innovazione +futuro +rifiuti +vengono +portati +germania +ovviamente +gomma +infrastrutture +ferroviarie +vanno +bloccate +altro +maio +modernità +innovazione +futuro +condoni +edilizi +approvato +ischia +norme +aumentare +fanghi +terreni +agricoli +chiusure +domenicali +sussidi +casa +mentre +tagliano +incentivi +crea +lavoro +stelle +giocano +fare +ambientalisti +rendono +conto +sempre +condoni +fango +agricoltura +rete +ultimo +prima +lasciarvi +pranzo +domenicale +tanti +scrivono +matteo +dobbiamo +dire +cosa +pensiamo +basta +dire +male +governo +diciamo +proposte +giusto +prendo +altro +parola +oggi +giornali +notizia +presentazione +parte +autostrade +progetto +genova +pronto +mesi +governo +vuole +dare +via +libera +autostrade +toninelli +maio +conte +idee +bislacche +sentite +secondi +video +sotto +bene +dico +chiara +me +ponte +deve +rifarlo +corsa +autostrade +pagando +ponte +danni +fino +ultimo +centesimo +deve +farlo +subito +autostrade +ogni +giorno +ritardo +schiaffo +ulteriore +ingiusto +genova +genovesi +adesso +trolls +sbizzarriti +chiusure +domenicali +possiamo +passare +parlare +cose +leggere +oggi +topolino +compie +anni +sempre +preferito +pippo +paperino +generazione +comunque +topolino +pietra +miliare +buon +compleanno +allarga +cuore +passeggiare +domenica +mattina +bellezza +senza +fine +firenze +sempre +fin +anni +sindaco +fermato +chiacchierare +lavora +commessi +camerieri +baristi +molti +terrorizzati +ipotesi +chiusure +domenicali +direte +basta +matteo +solo +ipotesi +maio +altro +detto +vuole +chiudere +negozi +ancora +fatto +nulla +troppo +presto +fasciarsi +testa +” +forse +presto +fasciarsi +testa +ogni +momento +giusto +sfasciare +italia +governo +basta +parola +credete +sentite +giovedì +scorso +bloccata +vendita +importante +catena +altro +fateci +caso +settimana +salvini +maio +litigato +termovalorizzatori +peculato +tav +condono +fiscale +terzo +valico +gronda +ruolo +draghi +reddito +cittadinanza +prescrizione +mentre +quei +wrestling +verbale +bisticciano +mattina +sera +frattempo +italia +inchioda +giù +pil +bloccano +altro +assunzioni +fuggono +capitali +ore +governo +italiano +litiga +macron +merkel +trovano +accordo +europa +futuro +regole +bilancio +verrà +italia +tagliata +fuori +populisti +casa +rincorrono +nazionalisti +dunque +mettono +bocca +nessuna +vere +decisioni +altro +ancora +massacro +compiuto +estremisti +islamici +repubblica +centrafricana +quarantadue +persone +state +uccise +parrocchia +vicario +generale +diocesi +cristiani +musulmani +sfollati +chiesa +cattolica +locale +accolto +cuore +generoso +ricordo +scelta +coraggiosa +altro +profetica +papa +francesco +profeticamente +deciso +aprire +giubileo +periferie +proprio +bangui +cuore +martoriato +paese +ancora +oggi +massacro +cristiani +pochissimi +quotidiani +media +parlano +eppure +cristiani +uccisi +ogni +angolo +mondo +migliaia +ogni +anno +inspiegabilmente +martiri +oggi +notizia +forse +temi +portano +voti +almeno +politica +internazionale +deve +smettere +voltare +testa +altra +parte +seconda +causa +tiziano +renzi +marco +travaglio +direttore +fatto +quotidiano +stato +nuovamente +condannato +stavolta +intervento +televisivo +travaglio +condannato +volte +giro +mese +insomma +dovrà +pagare +altri +000€ +ovviamente +contento +padre +ben +difeso +avvocato +luca +mirco +soprattutto +vorrei +altro +condividere +pensiero +bisogna +sopportare +ingiustizie +falsità +diffamazioni +verità +prima +poi +arriva +tempo +galantuomo +giudici +italia +bisogna +solo +saper +aspettare +verrà +presto +tempo +serietà +tornerà +moda +rovesciato +mare +fango +addosso +nessun +risarcimento +ridarà +ciò +sofferto +verità +forte +menzogne +adesso +solo +curioso +vedere +tg +daranno +notizia +buona +giornata +italia +parlano +pochi +vicenda +brexit +enorme +ricapitoliamo +fatti +referendum +deciso +regno +unito +deve +uscire +unione +europea +promotori +uscita +raccontavano +stato +semplice +positivo +realtà +dimostrato +contrario +uscire +europa +produce +danni +breve +periodo +altro +catastrofe +medio +periodo +vedremo +primo +ministro +may +forza +voglia +indire +nuovo +referendum +tempo +intanto +galantuomo +londra +solo +roma +ormai +chiaro +infatti +promotori +uscita +europa +mentito +inglesi +durante +referendum +appare +evidente +fatto +classe +media +pagherà +conseguenze +decisione +europa +problema +regno +unito +vero +proprio +disastro +cambiare +europa +dovere +lasciare +europa +significa +tradire +propri +valori +disintegrare +propria +economia +oggi +aula +collega +santillo +senatore +movimento +stelle +fatto +dichiarazione +voto +gruppo +fatta +nome +pd +santillo +attaccato +me +strano +dicendo +dovrei +tacere +nominato +mario +monti +senatore +vita +scorsa +legislatura +monti +viene +mai +aula +dunque +ormai +danno +colpa +altro +assenze +mario +monti +passi +qualcuno +stelle +notare +santillo +presidente +consiglio +nominare +senatori +vita +presidente +repubblica +possibile +senatore +sappia +premier +nomina +senatori +vita +aggiungo +quando +monti +fatto +senatore +altro +oggi +novembre +movimento +stelle +ufficialmente +perso +ogni +diritto +usare +parola +onestà +decreto +genova +infilato +norme +condono +edilizio +votato +insieme +vecchia +politica +dicevano +voler +combattere +primo +giorno +giocato +pelle +genova +genovesi +maio +chiesto +altro +fincantieri +fare +ponte +posto +autostrade +poi +spiegato +fincantieri +fa +navi +ponti +toninelli +rifiutato +progetto +renzo +piano +detta +così +fa +quasi +ridere +toninelli +rifiuta +progetto +renzo +piano +toninelli +spiego +conte +dice +possiamo +aspettare +tempi +giustizia +altro +diretta +senato +decreto +genova +nocondonodimaio +tutta +campagna +elettorale +salvini +pensioni +preso +giro +italiani +prima +detto +abolito +fornero +poi +abbassato +aspettative +detto +quota +senza +penalizzazioni +adesso +scopriamo +andrà +pensione +anticipata +dovrà +accettare +decurtazione +quota +solo +accetti +altro +rinunciare +parte +pensione +insomma +uomo +voleva +abolire +fornero +fine +soltanto +brutta +copia +ape +anticipo +pensionistico +previsto +governo +facile +fare +populista +quando +opposizione +poi +vai +governo +realtà +presenta +conto +promesso +luna +tempo +galantuomo +oggi +chiaro +salvini +pensioni +mentito +elettori +ricordate +storia +sacchetti +plastica +favorito +azienda +amica +squallida +fake +news +privilegiato +amica +solo +parlato +leopolda +inizio +vicenda +sacchetti +plastica +utilizzata +campagna +elettorale +modo +vergognoso +soprattutto +altro +stelle +oggi +giornalista +franco +bechis +informa +azienda +incriminata +mater +biotech +prima +azienda +mondo +produzione +industriale +bio +butandiolo +materie +prime +rinnovabili +ieri +recato +visita +beppe +grillo +proprio +beppe +grillo +vede +ricordava +cosa +scrivevano +sacchetti +altro +diretta +senato +top +ten +settimana +aspetto +top +ten +settimana +poco +dopo +geniale +manovra +governo +salvini +maio +spread +continua +correre +significa +pagheremo +mutui +alti +rate +macchina +care +interessi +fidi +alti +significa +italia +pagherà +prossimo +anno +miliardi +€ +solo +proprio +debito +follia +paradosso +legge +bilancio +altro +niente +ciò +promesso +campagna +elettorale +niente +reddito +cittadinanza +flattax +superamento +fornero +solo +scampoli +slogan +senza +coperture +condoni +ogni +genere +dice +forzato +mano +europa +rispettare +patto +elettori +no +rotto +europa +preso +giro +elettori +ve +ricordate +promesse +campagna +elettorale +entrate +legge +bilancio +pronto +dire +allora +pd +oppure +fatto +renzi +rispondo +spread +sceso +sopra +aumentare +followers +triplicato +spread +tanto +pagano +italiani +lavoro +lotta +senza +quartiere +condono +edilizio +maio +vuole +ischia +producendo +primi +risultati +qualche +minuto +fa +commissione +senato +maggioranza +stata +battuta +emendamento +condono +prima +volta +legislatura +governo +andato +sotto +atto +parlamentare +grazie +voto +altro +contrario +alcuni +senatori +stelle +ringrazio +continueremo +battaglia +condoni +legalità +aula +rinnovo +appello +conte +salvini +togliete +parte +condono +edilizio +ischia +decreto +genova +voteremo +stralciate +schifezza +condono +abusivismo +muore +basta +ieri +corriere +sera +polemizzato +me +vicenda +persone +sindrome +down +risposto +così +oggi +lettera +direttore +caro +direttore +mai +richiesto +gentile +ospitalità +pur +avendone +volte +occasione +corriere +sempre +seguito +attenzione +– +ringrazio +credo +altro +stampa +libera +maggior +ragione +periodo +minacce +informazione +– +mai +chiesto +fare +precisazioni +fatto +nemmeno +quando +dato +caudillo” +adesso +replicare +antonio +polito +ieri +criticato +aver +pubblicato +foto +nipote +maria +bimba +sindrome +altro +casi +morbillo +bari +pare +causati +bambina +figlia +novax +così +significa +delirio +governo +notav +noolimpiadi +nogronda +deve +almeno +smettere +essere +governo +novax +ripristinare +obbligo +legge +lorenzin +subito +giocando +pelle +bambini +pugno +like +social +mettono +rischio +vita +deboli +sembrano +matti +veramente +pericolosi +scienza +ragione +grilloleghisti +torto +facciamoci +sentire +gioia +avere +bimbo +cosa +bella +mondo +supera +ogni +problema +certo +pannolini +costano +spese +aumentano +figlio +impatta +bilancio +spesso +ricorre +aiuto +nonni +quando +palazzo +chigi +detti +diamo +piccolo +aiuto +denaro +fa +figli +spese +quotidiane +altro +cambierà +vita +almeno +diamo +mano +così +istituito +bonusbebè +ovviamente +stato +criticato +sempre +resto +fine +bonusbebè +aiutato +centinaia +migliaia +famiglie +ora +arrivato +governo +cambiamento +legge +bilancio +manovra +popolo +tolto +bonusbebè +basta +bonus +renzi +via +zac +però +promettono +figli +regaleranno +pezzo +terra +incolta +sud +podere +popolo +insomma +tolgono +soldi +famiglie +messo +dicono +combattere +crisi +demografica +regalando +forse +pezzi +terreno +incolti +mezzogiorno +cosa +seria +ridere +ricevuto +molte +critiche +ore +aver +telefonato +virginia +raggi +dopo +assoluzione +capisco +fair +play +avversari +vada +moda +spesso +responsabilità +proprio +stelle +insulti +ricevuto +persone +state +massacrate +insieme +famiglie +semplicemente +avviso +altro +garanzia +dimentico +fango +stato +buttato +addosso +diversi +vogliamo +cedere +cultura +odio +vogliamo +sconfiggere +avversari +via +politica +fango +quando +cittadino +viene +assolto +davvero +garantista +festeggia +battista +maio +insultato +giornalisti +colpevoli +altro +ogni +domenica +oggi +centinaia +migliaia +persone +lavorando +lavorano +trasporto +pubblico +ospedali +musei +stadi +ristoranti +negozi +professioni +ovunque +ministro +maio +vuole +chiudere +italia +domenica +attacca +sindaci +contrari +bislacche +idee +filosofia +altro +base +chiusura +negozi +domenica +no +tav +reddito +cittadinanza +condono +edilizio +sempre +stessa +italia +ferma +avvitata +assistenzialismo +decrescita +invece +credo +lavoro +sussidi +credo +aperture +chiusure +infrastrutture +condoni +diversità +altro +garantista +assoluzione +virginia +raggi +buona +notizia +avversari +sconfiggono +urne +tribunali +giudizio +sindaco +raggi +devono +dare +cittadini +magistrati +sempre +detto +continuerò +dirlo +oggi +roma +bella +giornata +torino +stamattina +inizia +fine +dice +solo +no +no +tav +no +olimpiadi +no +crescita +italia +sperimentando +no +ferma +tornerà +presto +tempo +dice +grazie +torino +sitav +diretta +salsomaggiore +italia2030 +diretta +salsomaggiore +terme +italia2030 +rocco +casalino +insiste +vicenda +persone +sindrome +down +anziché +fermarsi +chiedere +scusa +diretti +interessati +famiglie +italiani +rilancia +dice +orrore +mostrato +foto +nipotina +maria +devono +mostrare +foto +persone +sindrome +down +secondo +altro +mostrare +foto +zio +nipotina +significa +strumentalizzare +so +casalino +rende +conto +dice +vergogno +avere +nipotina +sindrome +down +fiero +orgoglioso +maria +vita +sorriso +quando +vado +correre +raccogliere +fondi +associazione +trisomia +altro +barbara +lezzi +detto +vuole +fare +informazione +scientifica +gradi +tutta +comunità +social +ride +crepapelle +capisco +viene +ridere +me +niente +ridere +amici +fa +ministro +rappresenta +ridete +prima +volta +lezzi +già +detto +pil +cresce +condizionatori +altro +toninelli +detto +viadotto +autostradale +genova +vuol +giocare +bambini +viadotto +dire +gradi +allora +gaffe +ridere +ennesima +dimostrazione +incompetenza +imbarazzante +dicono +antipatici +forse +me +meglio +essere +antipatici +incompetenti +domani +torino +scende +piazza +tav +sindaco +chiara +appendino +fa +appendino +attacca +me +dice +grillina +renzi +riteneva +inutile +tav +quando +fatto +premier +cambiato +progetto +tav +insieme +ministro +delrio +francesi +scelto +fare +progetto +meno +impattante +scelto +utilizzare +altro +linea +storica +riducendo +nuova +linea +chilometri +soli +risparmiato +miliardi +progetto +originario +eccessivo +risparmiato +miliardi +senza +bloccare +opera +cara +appendino +chiama +capacità +governo +invece +chiama +demagogia +bloccando +torino +italia +forza +dire +no +tav +no +olimpiadi +no +crescita +state +dicendo +no +futuro +smetti +attaccare +me +cara +sindaco +prenditi +responsabilità +capace +tav +finanziata +grillini +vogliono +bloccarla +facile +fare +populista +quando +opposizione +poi +però +vai +governo +scopri +realtà +forte +propaganda +puoi +disegnare +mondo +bellissimo +opposizione +poi +metti +toninelli +infrastrutture +sogni +frantumano +solo +sogni +livello +nazionale +grillini +vanno +avanti +forza +condoni +altro +compromessi +voti +fiducia +livello +locale +vede +forza +sgretolamento +corso +torino +sabato +migliaia +persone +scenderanno +piazza +amministrazione +stelle +chiara +appendino +dire +no +tav +significa +tagliarsi +gambe +significa +isolarsi +mondo +significa +scegliere +decrescita +infelice +roma +altro +ieri +fatto +chiacchiera +gerardo +greco +w +italia +maltempo +condoni +salvini +maio +vaccini +molto +altro +dite +pensate +buona +giornata +stasera +rete +aspetto +dopo +nipote +maria +sindrome +down +cittadina +altri +diritto +altri +essere +rispettata +istituzioni +paese +vorrei +dire +diritto +altri +essere +rispettata +parole +schifose +squallide +indegne +rocco +casalino +portavoce +presidente +consiglio +altro +ministri +parole +paese +civile +sola +conseguenza +dimissioni +casalino +abituato +insultare +giornalisti +avversari +politici +persone +povere +stranieri +adesso +superato +limite +giusto +tasse +vadano +pagare +super +stipendio +signore +insulta +persone +sindrome +down +altro +ciao +tiberio +grande +fotografo +grande +amico +grande +uomo +stato +fortunato +lavorare +te +voglio +bene +diretta +senato +top +ten +settimana +aspetto +diretta +facebook +top +ten +settimana +poco +treno +firenze +roma +chiedervi +mano +succedendo +vergogna +nazionale +dobbiamo +muoverci +insieme +italia +piange +decine +morti +salvini +dà +colpa +ambientalismo +salotto” +credo +invece +responsabilità +abusivismo +edilizio +chiedo +governo +smettere +polemiche +recuperare +altro +subito +progetto +casa +italia +renzo +piano +stata +prima +cosa +cancellata +lega +stelle +ripensateci +no +condoni +sì +casa +italia +maltempo +fatto +danni +morti +tutta +italia +eppure +governo +litiga +nomine +reddito +cittadinanza +tanto +cambiare +poltrone +sussidi +peggiore +tradizione +politica +italiana +stato +emergenza +riguarda +tante +regioni +dolomiti +sicilia +rischiamo +pagare +anni +effetti +maltempo +altro +appello +governo +smettete +litigare +settimana +riaprite +subito +progetto +casa +italia +ideato +renzo +piano +chiuso +maio +salvini +pronti +venire +parlamento +votare +favore +proposta +fatelo +subito +basta +parlare +condoni +riaprite +subito +casa +italia +soldi +spendeteli +anziché +sussidi +elettorali +ore +governo +utilizza +tragedia +ponte +morandi +approvare +decreto +genova +condono +edilizio +trentamila +case +ischia +condono +nome +cognome +luigi +maio +ore +italia +flagellata +maltempo +parlamento +vota +ennesimo +condono +nascondendosi +dietro +dramma +genova +tratta +pagina +squallida +inizio +legislatura +notizia +assoluzione +asia +bibi +dopo +anni +trascorsi +attesa +condanna +morte +blasfemia +rende +giornata +splendida +meravigliosa +bellissima +giornata +guardate +giornali +oggi +dramma +italia +ridere +sempre +colpa +prima +diciamola +semplice +prendiamo +governo +quando +paese +recessione +jobsact +sbloccaitalia +riduzione +irap +superammortamento +industria +italia +torna +segno +anni +consecutivi +pil +altro +segno +arrivano +cambio +governo +bloccano +opere +pubbliche +cambiano +mercato +lavoro +aprono +condoni +pil +ferma +dopo +anni +segno +torna +zero +anziché +dire +scusate +sbagliato +rimediamo +subito +salvini +maio +danno +colpa +prima +prima +tornati +segno +italia +torna +recessione +padre +tiziano +renzi +scritto +oggi +lettera +pubblicata +pagamento +quotidiano +nazionale +fatto +giorno +dopo +richiesta +archiviazione +consip +dopo +tribunale +condannato +altro +marco +travaglio +fatto +quotidiano +invito +soprattutto +insultato +padre +famiglia +leggere +lettera +parte +posso +solo +dire +voglio +bene +babbo +diretta +palazzo +giustiniani +top +ten +settimana +dati +istat +dopo +anni +crescita +italia +bloccata +prima +volta +dopo +anni +pil +torna +zero +salvini +maio +sfasciando +italia +fermatevi +pagailpopolo +vive +città +firenze +servita +perfettamente +tav +rende +conto +importanza +culturale +economica +sociale +alta +velocità +firenze +ormai +tappa +metropolitana +italia +proprio +dobbiamo +reagire +assurda +volontà +distruzione +movimento +stelle +dire +no +tav +significa +dire +no +solo +torino +lione +dire +no +venezia +milano +parigi +grilloleghisti +vogliono +isolare +italia +politica +sadomasochismo +stato +sinagoga +firenze +testimoniare +vicinanza +comunità +ebraica +dopo +terribili +fatti +pittsburgh +considero +dovere +senatore +rappresentante +proprio +territorio +considero +dovere +padre +ricordare +nuove +generazioni +odio +antisemita +combattuto +oggi +ancora +oggi +quando +penso +ieri +predappio +migliaia +persone +inneggiavano +fascismo +ironizzavano +auschwitz +voglia +urlare +forza +mai +fascismo +oggi +sinagoga +dimenticare +mai +mesi +ripeto +tempo +galantuomo +finti +scandali +vere +diffamazioni +numeri +economia +tempo +galantuomo +oggi +dico +ribadisco +ancora +forza +nessun +risarcimento +potrà +compensare +ciò +persone +innocenti +dovuto +subire +tempo +galantuomo +oggi +mai +scritto +articolo +memoria +gilberto +benetton +trovo +incredibile +mondo +sciacalli +codardi +tanti +lecchini +ruffiani +potenti +turno +improvvisamente +spariscono +momento +difficoltà +dolore +voluto +dirlo +pubblicamente +gazzettino +me +notizia +settimana +viene +stati +uniti +odio +verbale +brutta +bestia +insultano +male +offendono +sembra +giusto +poi +qualcuno +odio +verbale +passa +azione +invasato +filo +trump +spedito +bombe +obama +clinton +soros +cnn +prendendo +mira +bersagli +preferiti +destra +populista +altro +americana +processato +punito +personalmente +prende +pistola +spara +risponde +altri +accaduto +macerata +qualche +mese +fa +candidato +lega +traini +sparato +sede +pd +ragazzi +colore +però +politica +dovrebbe +fare +prendere +distanze +modo +giusto +piaciuto +vedere +trump +invitare +obama +casa +bianca +dare +insieme +segnale +violenza +piaciuto +vedere +salvini +dopo +condanna +traini +valorizza +lotta +razzismo +anziché +farsi +sentire +solo +quando +vittima +italiana +colpevole +immigrato +piaciuto +sostanza +vedere +po +civiltà +purtroppo +stavolta +mancata +fatto +campagna +elettorale +dicendo +no +tap +oggi +ammettono +ovviamente +tap +fatto +tutta +campagna +elettorale +dicendo +no +ilva +seguito +percorso +tenendo +ovviamente +aperta +ilva +riempito +fango +tutte +scelte +adesso +ovviamente +confermano +cominciare +80€ +dicono +altro +essere +governo +cambiamento +vero +cambiano +sempre +idea +adesso +cambieranno +idea +manovra +ovviamente +abbasseranno +deficit +alternative +vogliono +distruggere +finanze +paese +arrivare +potere +garantito +vinto +elezioni +promettendo +cose +potevano +realizzare +presi +gioco +aspettative +gente +tempo +galantuomo +prima +poi +scopriranno +italiani +oggi +scoperto +no +tap +maio +dice +draghi +avvelena +clima” +punto +domanda +drammatica +vice +presidente +consiglio +repubblica +italiana +maio +fa +crisi +finanziaria +porte +gente +può +portando +soldi +estero +spread +fa +male +famiglie +imprese +italiane +draghi +invita +dialogo +altro +abbassare +toni +calmare +mercati +fa +ineffabile +gigino +attacca +draghi +purtroppo +maio +credibile +solo +quando +occupa +condoni +economia +italia +andando +sbattere +colpa +irresponsabilità +gente +maio +gira +mondo +rende +conto +ogni +giorno +ogni +incontro +ogni +istante +chongqing +città +popolosa +mondo +milioni +persone +abitano +metropoli +cinese +città +sola +intera +popolazione +italiana +giorni +conferenze +scelto +passare +salutare +ragazzi +sant +anna +pisa +prima +istituzione +ricerca +capito +importanza +altro +territorio +bravissimi +ragazzi +prof +sant +anna +bravissimi +neonato +consolato +generale +chongqing +serve +territorio +circa +milioni +persone +volte +italia +marea +possibilità +opportunità +pensate +turisti +studenti +scambio +commerciale +dobbiamo +aver +paura +mondo +globale +valorizzare +altro +fare +ragionamenti +semplici +moda +preferisce +urlare +proviamoci +insieme +almeno +amici +europa +boccia +manovra +italiana +salvini +risponde +stile +me +frego +” +prosegue +ministro +grande +alleanza +populisti +vinceremo +prossime +elezioni +cambiando +europa +solo +giorni +altro +alleati +europei +salvini +nazionalisti +populisti +dicendo +manovra +italiana +folle +bocciata +stamattina +detto +destra +tedesca +afd +dicono +alleati +immagini +avversari +domanda +sorge +spontanea +vogliono +bocciare +italia +salvini +fa +alleanza +lega +frattempo +italiani +perso +mesi +miliardi +€ +sfasciando +economia +senza +mantenere +promesse +elettorali +autogol +semplicemente +impressionante +speculatori +internazionali +godono +famiglie +italiane +pagano +nord +leghista +prima +poi +renderà +conto +manovra +suicidio +finanziario +senza +precedenti +conto +pagano +italiani +servizio +agorà +rai +operai +terzo +valico +opera +pubblica +governo +finanziato +serve +moltissimo +genova +tutta +liguria +ministro +toninelli +altro +vuole +inspiegabilmente +bloccare +brillanti +intuizioni” +quest +uomo +ormai +problema +votato +stelle +lega +figuratevi +altri +operai +urlano +vogliamo +lavorare +follia +opera +pubblica +serve +fondi +già +stanziati +gente +lavora +ministro +vuole +bloccare +dare +forse +operai +reddito +cittadinanza +gente +urla +vogliamo +lavoro +reddito +cittadinanza +bloccare +opere +pubbliche +significa +bloccare +futuro +italia +europa +dice +italia +grillo +leghista +rispetta +regole +allora +eurodeputato +leghista +tal +ciocca +fa +sceneggiata +ridicola +scarpa +made +italy +pesta +volontariamente +appunti +commissario +europeo +moscovici +giustizia +fatta +italia +recupera +dignità +commentano +leghisti +pestando +documenti +scena +imbarazzante +paese +farsi +coprire +ridicolo +così +occhi +giornalisti +mondo +farsa +portafogli +famiglie +italiane +tragedia +fiero +orgoglioso +amico +collega +davide +faraone +padre +meravigliosa +bambina +autistica +piccola +sara +meritava +merita +insulti +beppe +grillo +risatine +stupide +applaudiva +circo +massimo +ripeto +beppe +grillo +schifo +anni +lottato +recuperare +credibilità +europa +mercati +adesso +salvini +maio +portavoce +conte +sfasciano +tenuta +economica +paese +dramma +riusciranno +comunque +mantenere +folli +promesse +elettorali +neanche +deficit +titolo +ancora +parli +chiederanno +altro +troll +portato +spread +sotto +quota +adesso +sopra +spread +sopra +famiglie +italiane +piangono +speculatori +internazionali +godono +motto +me +frego +europa +portando +paese +recessione +fermatevi +italia +merita +nuova +crisi +finanziaria +diretta +senato +top +ten +settimana +aspetto +facebook +top +ten +settimana +dopo +notizia +personale +oggi +arrivata +prima +decisione +lunga +serie +azioni +civili +intentate +padre +tiziano +renzi +confronti +marco +travaglio +fatto +quotidiano +prima +oggi +vede +condanna +direttore +travaglio +giornalista +società +editoriale +cifra +000€ +novantacinquemila +altro +niente +potrà +ripagare +enorme +mole +fango +buttata +addosso +famiglia +padre +salute +campagna +odio +senza +precedenti +qualcuno +inizia +pagare +almeno +danni +volevo +condividerlo +buona +giornata +amici +ieri +5stelle +chiuso +proprio +evento +circo +massimo +insulti +beppe +grillo +capo +stato +italiano +capo +stato +francese +opposizione +noto +pregiudicato +genovese +pago +pensato +bene +insultare +persone +soffrono +autismo +figlio +disturbi +spettro +autistico +altro +combatte +ogni +giorno +bambino +venga +discriminato +vergogna +vedere +primo +partito +italiano +chiude +propria +festa +annuale +parole +scherno +verso +famiglie +diversi +5stelle +solo +garantismo +giustizialismo +lavoro +reddito +cittadinanza +legalità +condoni +diversi +diritti +legge +autismo +terzo +settore +dopo +insultare +mattarella +macron +inaccettabile +forza +politica +scala +valori +prendersi +gioco +bambino +autistico +peggio +offendere +presidente +repubblica +senza +giri +parole +beppe +grillo +me +schifo +salvini +facebook +dice +massacrato +italiani +stato +licenziato +elettori +insultato +ordine +cartellone +risultati +altro +massacro +altro +fatto +ripartire +italia +preso +elezioni +governano +no +solo +svenduti +stelle +poltrona +invece +fatto +lega +insultato +salvini +solo +detto +cialtronaggine +governo +fatto +crescere +spread +miliardi +euro +paghiamo +fatti +salvini +resto +propaganda +buona +domenica +parole +dire +leopolda9 +commosso +colpito +convinto +grazie +persona +streaming +grazie +crede +oggi +ieri +governo +vuole +altro +distruggere +economia +italiana +valori +europei +dobbiamo +fermarli +partire +comitati +civici +ritorno +futuro” +inizia +strada +nuova +facciamola +insieme +grazie +migliaia +persone +condividono +progetto +buona +domenica +amici +diretta +leopolda9 +stamani +code +fuori +leopolda +mai +successo +prima +trovo +parole +giuste +dire +colpisca +profondo +cuore +voglia +mollare +continuare +combattere +costruire +futuro +voglia +resistenza +culturale +voglia +tornare +futuro +eccoci +parte +ultima +giornata +prima +però +grande +abbraccio +grazie +leopolda +spiega +vive +vivendola +incontrano +persone +diverse +sindaci +curano +propria +comunità +professore +combatte +ignoranza +difende +vaccini +scienziato +costruisce +futuro +giornaliste +difendono +libertà +lottano +uomo +spettacolo +sceglie +stare +gioco +alterna +battute +altro +riflessioni +profonde +serie +vita +cinquanta +tavoli +discutono +ore +futuro +meraviglioso +paese +centinaia +persone +pronte +lanciare +comitati +civici +ogni +angolo +italia +scuso +oltre +mille +persone +rimaste +fuori +cancelli +migliaia +persone +dentro +migliaia +persone +fuori +meno +male +considerano +altro +diretta +leopolda9 +ritornoalfuturo +ieri +sera +leopolda9 +tributato +applauso +lunghissimo +pier +carlo +padoan +migliaia +persone +alzate +piedi +dire +grazie +anni +aiutato +paese +passare +recessione +crescita +avvenuto +proprio +ore +colpa +arroganza +governo +italia +riceveva +bocciatura +altro +agenzie +rating +proprio +quando +governo +fatto +declassare +proprio +quando +salvini +maio +regalano +pezzi +italia +speculazione +internazionale +facile +riconoscere +valore +persone +padoan +competenza +cialtronaggine +serietà +bugie +politica +populismo +leopolda9 +appena +tornato +casa +mentre +ragazzi +under30 +leopolda +continuano +discutere +attorno +tavoli +difficile +spiegare +emozioni +serata +quando +perdono +elezioni +molti +dirigenti +politici +scendono +carro +tanti +moltissimo +dimenticano +passato +sanno +solo +contestare +qualcuno +chiamava +altro +atteggiamento +sindrome +beneficiato +rancoroso +niente +sempre +dato +scende +carro +carro +sempre +spinto +fa +politica +passione +interesse +oggi +leopolda +dato +lezione +meravigliosa +quest +anno +dopo +sconfitta +doppio +gente +scorso +altro +diretta +stazione +leopolda +leopolda9 +ritornoalfuturo +pazzesche +ragazze +volley +pazzesche +viva +italia +viva +campionesse +strepitose +attesa +vederci +stasera +leopolda +diretta +streaming +fatto +chiacchierata +amici +fanpage +trovate +buona +giornata +amici +spread +galoppa +oltre +governo +fa +male +italia +domani +leopolda +insieme +padoan +offriamo +governo +proposta +dimezzare +spread +abbassare +tasse +basta +criticare +bisogna +proporre +bisogna +sbrigarsi +mandando +economia +italiana +sbattere +ritornoalfuturo +diretta +senato +parliamo +leopolda +molto +altro +oggi +senato +parleremo +leopolda +molto +altro +aspetto +diretta +facebook +luigi +maio +uomo +disperato +accorto +ritardo +aver +dato +via +libera +condono +prima +votato +testo +decreto +legge +poi +detto +glielo +cambiato +rimangiato +adesso +tv +dire +renzi +condono +scudo +fiscale +falso +mai +fatto +né +condono +né +scudo +fiscale +altro +problema +qualsiasi +studente +giurisprudenza +primo +anno +grado +spiegare +vice +presidente +consiglio +imbarazzante +mediocrità +domanda +sorge +spontanea +luigi +maio +almeno +leggere +riesce +capire +senso +cose +firma +vota +temo +no +condono +fiscale +atto +assurdo +dice +cittadini +pagare +tasse +conviene +paga +tasse +sbaglia +fine +paradosso +flat +tax +fatta +soltanto +evasori +secco +sistemeranno +pregresso +peggio +condono +fiscale +solo +condono +edilizio +oggi +senato +dovuto +vedere +altro +facce +movimento +stelle +quando +attaccato +condono +tombale +case +abusive +ischia +grillini +leghisti +infilato +nascosto +decreto +emergenza +genova +poi +qualcuno +chiederà +cosa +entri +ischia +ponte +genova +potrebbero +essere +salvate +trentamila +case +costruite +modo +abusivo +me +altro +governo +mettendo +seriamente +rischio +conti +pubblici +provato +stasera +floris +spiegare +prima +qualche +giornalista +rinfacciasse +astio +passato +vergogno +passato +fatto +tante +cose +molte +utili +paese +restituito +segno +crescita +altro +dopo +anni +crisi +adesso +tempo +parlare +futuro +italia +tornerà +grande +condoni +assistenzialismo +strada +salvini +maio +porta +europa +porta +venezuela +allora +bisogno +tracciare +strada +futuro +insieme +venerdì +sera +proveremo +stazione +leopolda +insieme +sorriso +labbra +lasciando +odio +vive +buona +serata +amici +aspetto +leopolda +dovevano +abolire +povertà +invece +italia +tornerà +recessione +doveva +essere +governo +cambiamento +invece +governo +condono +vinto +elezioni +promettendo +mari +monti +adesso +chiaro +pagano +assegni +vuoto +oggi +salvini +attacca +juncker +noia +sempre +soliti +slogan +idee +presidente +commissione +solo +chiacchiere +fa +ministro +interno +italiano +voler +cambiare +cose +europa +mette +mai +piede +ancora +venerdì +scorso +svolto +vertice +ministri +andato +preferendo +dice +restare +italia +andare +correre +sotto +acqua +vuoi +cambiare +cose +europa +almeno +partecipa +riunioni +oppure +smetti +prendere +giro +concittadini +pensate +politica +cosa +seria +voglia +condividere +idee +sopportate +insulti +volete +bene +italia +fine +settimana +stazione +leopolda +firenze +posto +altro +fa +parte +venerdì +sera +finisce +domenica +pranzo +anzi +quest +anno +finisce +proprio +lanceremo +comitati +impegno +civile +ogni +comune +titolo +ritorno +futuro +bisogno +bisogno +italia +parla +congresso +candidature +solo +dare +mano +paese +meraviglioso +astenersi +troll +odiatori +professione +venditori +fumo +specie +ministri +riccioli +senza +riccioli +aspetto +stazione +leopolda +carichi +pieni +entusiasmo +quando +governa +manda +sbattere +paese +basta +fare +opposizione +devi +avere +forza +proposta +alternativa +apriremo +leopolda +presentando +pier +carlo +padoan +controproposta +altro +legge +bilancio +idea +semplice +spiegata +bene +cosa +può +capire +toninelli +proposta +spread +dimezza +scendono +tasse +parlato +intervista +corriere +sera +dicono +me +frego +diciamo +cuore +italia +vogliamo +bilancio +penalizzi +lavoratori +famiglie +italiane +regalando +soldi +speculatori +internazionali +programma +ulisse +mai +oggi +emoziona +sconvolge +grazie +alberto +angela +raiuno +pensiero +altri +nedo +fiano +ogni +anno +accompagnava +studenti +fiorentini +campi +sterminio +rivivere +quel +dolore +vincere +memoria +vedere +bambini +discriminati +mensa +scolastica +ragioni +economiche +fa +male +cuore +politica +basata +odio +paura +genera +mostri +accadendo +lodi +me +disumano +dicono +zitti +minoranza +sì +minoranza +zitti +rinunceremo +mai +essere +civili +essere +umani +chiamiamo +cose +nome +lodi +vergogna +nazionale +aeroporto +firenze +investitore +internazionale +grandi +soci +americano +asiatico +milioni€ +pronti +investire +firenze +pisa +prima +volta +fatto +squadra +lavorano +insieme +solo +firenze +duemila +nuovi +posti +lavoro +rispettando +legge +ottemperando +valutazione +altro +impatto +ambientale +ieri +ministro +agricoltura +centinaio +detto +aeroporto +firenze +deve +fare +già +fatto +capire +ministro +infrastrutture +immenso +toninelli +accusa +aeroporto +voluto +renzi +anni +tutta +firenze +parla +nuova +pista +aeroporto +tutte +categorie +altro +oggi +salvini +costretto +smentire +possibilità +fare +patrimoniale +dichiarazione +senso +fallimento +leghista +partiti +flattax +adesso +scritto +documento +bilancio +ammettono +aumenteranno +tasse +addirittura +devono +smentire +ipotesi +patrimoniale +primi +altro +rendersi +conto +ciò +accadendo +elettori +salvini +nord +volevano +meno +tasse +pagheranno +finanziare +reddito +cittadinanza +superamento +fornero +soldi +lavorare +gente +insomma +colpa +misure +italiani +pagheranno +interessi +cari +tempo +galantuomo +mostrerà +differenza +serietà +promesse +vuoto +situazione +economica +paese +molto +seria +fatto +pasticcio +chiamato +manovra +popolo +abbassato +spread +riportato +crescita +italia +dovere +fare +proposte +criticare +gente +toninelli +diventando +persino +noioso +imbarazzante +toninelli +ministro +altro +imbarazzanti +bugie +maio +giornali +imbarazzante +arroganza +salvini +economia +dobbiamo +però +ripartire +farlo +subito +stazione +leopolda +seguiremo +polemiche +quotidiane +correnti +pd +piazza +chiesto +unità +divisioni +parleremo +congresso +italia +altro +crolla +ponte +morandi +dà +colpa +pd +decreto +genova +scrive +cuore +viadotto +autostradale +vorrebbe +farci +giocare +bambini +viadotto +autostrada +chiede +bloccare +gronda +tanto +genova +serve +eh +già +serve +altro +concentratissimo +opere +pubbliche +fermando +tutte +vuole +bloccare +aeroporto +firenze +proposto +renzi +danilo +toninelli +ministro +infrastrutture +oggi +toninelli +detto +studiato +dossier +visto +merci +italiane +utilizzano +tunnel +brennero +toninelli +tunnel +brennero +stato +finanziato +governo +attivo +prima +cosa +studiato +toninelli +leggere +capisce +entrambi +casi +grave +governo +italia +spread +continua +salire +investitori +considerano +italia +paese +andarsene +situazione +molto +seria +settimana +secondo +maio +stata +abolita +povertà +tanto +euforia +sotto +balcone +palazzo +chigi +settimana +salvini +risponde +me +frego +quando +governavamo +ogni +giorno +obiettivo +cercare +altro +raggiungere +germania +oggi +obiettivo +diventato +farsi +sorpassare +grecia +tempo +galantuomo +riconoscerà +ciò +fake +news +troll +propaganda +vorrebbero +rimuovere +ciò +rende +triste +fine +irresponsabilità +salvini +maio +pagata +caro +prezzo +italiani +soprattutto +italiani +poveri +donna +anni +vive +carcere +pachistano +colpevole” +solo +essere +cattolica +credere +gesù +cristo +chiama +asia +bibi +stata +condannata +morte +ore +dovrebbe +arrivare +sentenza +definitiva +bello +vicenda +insieme +donne +uomini +buona +volontà +capaci +unirsi +altro +dividersi +unirsi +chiedere +autorità +pachistane +salvare +liberare +asia +gioie +grandi +esperienza +premier +stata +abbracciare +meriam +imprigionata +stesso +motivo +sudan +poi +liberata +recuperata +volo +stato +italiano +piacerebbe +tanto +credenti +lavorassimo +uniti +consentire +asia +riassaporare +libertà +ottobre +ottobre +stefano +borgonovo +incoraggiato +amici +accompagnato +amore +chantal +figli +spinto +carrozzina +roberto +baggio +entrava +sotto +curva +altro +fiesole +molti +piansero +rivedendo +sotto +curva +ragazzi +b2 +fatto +sognare +stefano +infatti +vestiva +calzoncini +coperta +malato +momento +doloroso +bellissimo +borgonovo +regalo +firenze +intero +mondo +calcio +ricerca +decise +infatti +mostrarsi +combattere +sla +stronza +chiamava +qualche +anno +dopo +ancora +stadio +franchi +grande +onore +consegnargli +sindaco +altro +spread +supera +quota +portato +sotto +quota +salvini +dice +colpa +mercati +colpa +soros +pensa +davvero +poter +prendere +giro +italiani +colpa +governo +scherzando +fuoco +tanto +fine +pagano +sempre +cittadini +quando +spread +alto +paga +famiglie +risparmiatori +altro +povera +gente +miliardari +invece +guadagnano +davanti +diffidenze +mercati +europa +vicepremier +risponde +me +frego +possiamo +stupirci +reazioni +manovra +popolo +fatta +pelle +italiani +italia +ingranando +retromarcia +peccato +fenomenologia +cialtroni +mesi +promettono +giorni +condono +chiamano +pace +fiscale +prendono +valanghe +applausi +talk +attaccando +equitalia +godono +dati +sondaggi +poi +però +nulla +rimangono +incertezza +così +cittadini +onesti +frustrati +deve +pagare +magari +paga +aspettando +altro +condono +stato +costretto +mettere +conto +avere +meno +incassi +governi +incassi +lotta +evasione +quasi +raddoppiati +miliardi +euro +oltre +miliardi +euro +fonte +rgs +adesso +blocca +forse +serietà +moda +bisogna +avere +forza +dire +modo +procedere +fa +male +contribuenti +onesti +fa +male +conti +pubblici +fa +male +italia +oggi +repubblica +scrive +concorso +professore +ordinario +giuseppe +conte +profili +evidenti +illegittimità +scoop +enorme +fakenews +premier +deve +chiarire +aula +pubblicamente +regolare +avvocato +popolo +concessionarie +autostradali +può +permettere +dubbi +concorso +altro +aspettiamo +iena +giarrusso +intervisti +streaming +professor +alpa +cosa +potenzialmente +enorme +zitti +stato +iscritto +pd +già +richieste +dimissioni +commissioni +inchiesta +oggi +silenzio +stelle +chiamavano +onestà +mesi +insultato +deriso +calunniato +molti +rovesciato +addosso +quintali +fango +silenzio +guardare +aggressione +qualcuno +addirittura +diceva +fateci +accordo” +vedete +fine +bravi +ragazzi +poi +maio +stelle +tirato +giù +maschera +adesso +tifo +altro +chiusura +giornali +ministro +lavoro +compiace +licenziamenti +vicepremier +attacca +libertà +stampa +mai +visto +italia +altrove +sì +italia +allora +finalmente +reazione +unanime +meglio +tardi +mai +davano +me +caudillo +accusavano +deriva +autoritaria +perche +volevo +abolire +cnel +dicono +adesso +vuole +distruggere +europa +comprimere +libertà +stampa +volevano +abolire +povertà +abolito +solo +senso +ridicolo +ogni +giorno +chiaro +serva +davvero +resistenza +civile +piccola +valle +provincia +sondrio +scout +italiani +luogo +unico +val +codera +arriva +fatica +solo +attraverso +centinaia +scalini +solo +piedi +passo +dopo +passo +tornare +val +codera +stato +scout +tornare +casa +durante +fascismo +valle +luogo +libertà +movimento +altro +dichiarato +fuori +legge +mussolini +radunavano +aquile +randagie +ragazzi +milanesi +raggiungevano +vivere +qualche +ora +libertà +indossare +uniforme +scout +altrimenti +proibita +leggi +fascistissime +ve +parlo +oggi +raccontare +storia +italiano +sconosciuto +grande +italiano +don +giovanni +barbareschi +altro +oggi +alcuni +giornali +riportano +frasi +ministro +sanità +grillo +felice +soldi +sanità +dopo +anni +tagli” +naturalmente +giornalista +prenda +briga +verificare +parla +quali +tagli +numeri +fondo +sanità +pubblica +valeva +miliardi +euro +vale +altro +miliardi +euro +chiaro +serve +disegnino +insomma +ogni +anno +aumentato +circa +miliardo +altro +tagli +fatto +chiamarsi +grillo +autorizza +signora +ministro +dire +bugie +capo +omonimo +bisogna +rispondere +colpo +colpo +può +vivere +fakenews +caspita +deve +essere +limite +amici +realtà +forte +bugie +bellissima +decisione +conferire +nobel +pace +denis +nadia +combatte +violenza +sessuale +arma +guerra +conosciuto +nadia +qualche +anno +fa +nyc +grazie +amal +clooney +altro +racconto +ciò +compagne +yazidi +dovuto +subire +toccato +commosso +modo +indescrivibile +nobel +aiuti +aprire +occhi +dramma +sorelle +lavoriamo +insieme +italia +rimanga +prima +fila +tutte +forme +violenza +donne +ieri +sera +fatto +tardi +maurizio +costanzo +canale +fine +stata +chiacchierata +molto +umana +diversa +solite +interviste +tv +ripropongo +persa +buona +giornata +buon +weekend +vinto +promettendo +sud +reddito +cittadinanza +oggi +scoprono +avere +soldi +nonostante +deficit +debito +cittadinanza +piccole +elemosine +controllate +governo +puro +voto +scambio +tempi +prima +repubblica +spalle +prossima +generazione +contrario +reddito +altro +cittadinanza +soldi +me +bisogna +investire +lavoro +assistenzialismo +dare +soldi +stare +casa +assurdità +totale +pensiero +affettuoso +imprenditori +nordest +votato +lega +nord +oggi +trovano +repubblica +democratica +fondata +sussidio +cosa +incredibile +ore +altro +stasera +canale +intervista +maurizio +costanzo +aspetto +solidarietà +studenti +speso +decine +ore +alternanza +scuola +lavoro +scoprono +solo +adesso +ciò +servirà +maturità +modo +cambiare +regole +corsa +poco +altro +serio +ormai +stile +governo +punta +solo +distruggere +motivi +ideologici +prima +donna +giornalista +oggi +stata +minacciata +ostia +stata +insultata +lavoro +fa +poi +lavoro +semplice +bello +fare +domande +scrivere +verità +chiama +federica +angeli +scrive +anni +clan +spada +vorrei +famiglia +sentissero +affetto +italiani +altro +bene +minaccia +stampa +pratica +violenza +istiga +odio +deve +sapere +attaccando +giornalista +attaccano +valori +fondamentali +libertà +democrazia +coraggio +federica +forte +qualsiasi +minaccia +discusso +spesso +presidente +juncker +talvolta +litigato +attacco +personale +maio +salvini +rivolgendo +merita +risposta +stelle +lega +distruggendo +ripresa +economica +italiana +famiglie +pagheranno +scelte +disgraziate +cialtroni +davanti +critiche +merito +reazione +altro +grilloleghisti +sempre +soltanto +attacco +personale +sanno +essere +parte +torto +allora +attaccano +persona +caso +juncker +modo +infame +concepire +politica +violenza +avversari +anziché +soluzione +problemi +fatto +pasticcio +chiamano +manovra +popolo +anziché +cercare +altro +conquista +premio +nobel +spesso +argomento +solo +addetti +lavori +scelta +ieri +nobel +medicina +allison +honjo +tocca +però +cuore +molte +famiglie +mondo +ciascuno +perso +qualcuno +caro +famiglia +amici +colpa +cancro +ciascuno +adesso +mentre +scrivo +conosce +altro +donne +uomini +combattendo +tumori +coraggio +silenzio +ospedale +lavoro +cancro +nemico +tantissimi +amici +combattendo +ora +allison +honjo +inventato +immunoterapia +innovativo +meccanismo +terapia +dando +primi +risultati +scoperta +solo +tappa +altro +oggi +giornata +nonni +pensiero +nonni +lasciato +chiamavano +adone +achille +nati +bacio +nonne +invece +ancora +combattono +anni +maria +altro +anni +anna +maria +vedete +anni +ancora +belle +lucide +pensiero +grato +nonni +contribuiscono +livello +organizzativo +affettivo +economico +aiutare +mamme +papà +generazione +fa +tifo +spread +masochista +anti +italiano +causa +aumento +spread +masochista +anti +italiano +manovradelpopolo +fare +testacoda +fermatevi +prima +troppo +tardi +resistenzacivile +dati +istat +oggi +dicono +tanto +detestato +jobsact +portato +disoccupazione +scendere +sotto +prima +volta +dopo +molti +anni +partiti +disoccupazione +adesso +adesso +comunque +maio +detto +aver +abolito +povertà +introdotto +reddito +cittadinanza +quindi +altro +bisogno +seguire +dati +istat +continua +credere +realtà +fakenews +roccocasalino +disoccupazione +sotto +buona +notizia +viva +italia +lavora +vive +assistenzialismo +salvini +detto +piazza +solo +4gatti +problemi +matematica +visto +soldi +rubati +lega +tratti +esseri +umani +animali +visto +nave +diciotti +salvini +capisce +gatti +vite +opposizione +resistenzacivile +bellissima +giornata +piazzadelpopolo +governo +sfascisti +dice +no +vaccini +mette +ginocchio +italia +produce +governo +condoni +assistenzialismo +italia +arrende +rassegna +mesi +resistenzacivile +viaggio +verso +roma +verso +piazza +popolo +giusto +stare +piazza +governo +incompetenti +mettono +rischio +economia +prendono +giro +elettori +manterranno +comunque +promesse +offendono +altri +cittadini +insultando +pensa +diversamente +dobbiamo +reagire +senza +paura +farlo +senza +altro +divisioni +interne +basta +polemiche +lottare +colpo +colpo +organizzare +forme +resistenza +civile +deriva +venezuelana +maio +salvini +italia +stata +resa +grande +lavoro +sudore +fatica +assistenzialismo +lasciamo +futuro +vuole +vivere +condoni +sussidi +senza +paura +amici +felice +aver +corso +km +ricordo +alessia +insieme +migliaia +persone +corri +vita +grazie +medici +infermieri +ricercatori +volontari +giorni +lottano +tumori +messaggio +molto +personale +soprattutto +fiorentini +esattamente +anni +fa +settembre +palazzo +congressi +lasciai +ogni +sicurezza +rifiutai +rinnovo +mandato +presidente +provincia +candidandomi +senza +paracadute +primarie +sindaco +stati +anni +bellissimi +fatti +altro +vittorie +sconfitte +primarie +vinte +persa +trionfo +europee +tonfo +politiche +pedonalizzazione +piazza +duomo +80€ +leopolde +referendum +incontri +obama +grandi +terra +inaugurazioni +fontanelli +pensionati +quartiere +rottamazione +documentario +altro +oggi +parlato +corriere +sera +proposito +manovra +bilancio +csm +rai +pd +buon +weekend +amici +movimento +stelle +battista +maio +numero +imprecisato +altri +statisti +diramato +ordine +fate +notare +renzi +proposto +sforare +deficit +portandolo +anni +proposta +contenuta +libro +chiamato +avanti +facilmente +reperibile +ancora +oggi +quel +libro +altro +proponevo +ridurre +debito +decine +miliardi +attraverso +operazione +chiamata +capricorn +riduci +debito +allora +puoi +avere +margine +deficit +tesi +libro +purtroppo +libro +figure +maio +dunque +riesce +capirlo +però +qualcuno +staff +potrebbe +leggerlo +spiegarglielo +cari +statisti +strapazzo +riducete +debito +cinquanta +miliardi +potete +tenere +deficit +riducete +debito +sforate +deficit +schizza +spread +crolla +borsa +poveri +altro +decreto +abolisci +povertà +state +scherzando +pelle +italiani +parliamoci +chiaro +amici +problema +europa +spread +deficit +meglio +solo +problema +deriva +venezuelana +rischiando +problema +prendendo +giro +italiani +dicono +abolito +povertà +decreto +fingono +crederci +dicono +mantenendo +promesse +altro +elettorali +quando +nonostante +guerra +mercati +massimo +ciò +promesso +mentendo +ancora +dicono +popolo +piazza +bandiere +solo +parlamentari +presunta +classe +dirigente +paese +fa +claque +governo +balcone +problema +premiano +furbi +condoni +altro +maio +urla +elezione +vicepresidente +csm +complotto +renzi +pd +allucinante +fatti +david +ermini +stato +eletto +csm +voti +movimento +stelle +parlamentari +oggi +maio +grida +complotto +aula +votato +complotto +insaputa +ermini +diventato +vicepresidente +altro +csm +grazie +voto +togati +volta +stati +eletti +giudici +tutta +italia +togati +dovevano +scegliere +professionisti +diritto +eletto +pd +scelto +piattaforma +rousseau +pensabile +dire +vince +rousseau +democrazia +vince +pd +complotto +tutte +decisioni +state +altro +ieri +partecipato +trasmissione +lilli +gruber +mezzo +parlato +ponte +genova +vaccini +europa +congresso +pd +dite +pensate +buona +giornata +ecco +promesso +lilli +gruber +elenco +fakenews +bufale +rilanciando +mesi +me +tutte +bugie +ritorceranno +https +www +matteorenzi +it +bufale +aspetto +poco +mezzo +lilli +gruber +maio +detto +assassino +politico +quest +uomo +rende +conto +significato +parole +quando +maio +parla +cose +conosce +esempio +lavoro +spesso +diventa +ridicolo +jobsact +creato +milione +posti +lavoro +tempo +indeterminato +momento +maio +trovato +lavoro +solo +stesso +paio +amici +infanzia +pomigliano +assunti +varie +segreterie +particolari +magari +però +prossimi +mesi +migliora +peggiorare +sembra +difficile +rocco +casalino +minaccia +insulta +dirigenti +governo +giornalista +pubblica +audio +cosa +fa +presidente +camera +roberto +fico +dice +problema +portavoce +governo +minaccia +insulta +dirigenti +pubblici +no +problema +giornalisti +svelano +fonti +ecco +roberto +fico +dialogante +dentro +stelle +figuratevi +altri +sempre +orgoglioso +aver +votato +accordo +grillini +leghisti +altro +bufala +giorno +riguarda +matteo +salvini +flattax +attenzione +enorme +scommetto +domani +scriveranno +pochi +dice +oggi +salvini +felice +potessimo +portare +aliquota +milione +italiani +dunque +flat +tax +vinto +elezioni +scherzo +altro +solo +milione +persone +fin +dirà +qualcuno +pazienza +sempre +meglio +intanto +inizi +no +accontentiamoci +pensa +ottimista +già +sapete +flat +tax +alcune +categorie +realtà +già +sapete +introdotta +legge +bilancio +uomini +poca +fede +legge +altro +ieri +partecipato +porta +porta +bruno +vespa +senza +plastici +parlato +vaccini +europa +tasse +promesse +irrealizzabili +maggioranza +vinto +elezioni +raccontando +falso +cittadini +trasmissione +firenze +dite +pensate +buona +giornata +amici +diretta +senato +appena +rientrato +incontri +conferenze +cina +shanghai +macao +hong +kong +impressionante +distanza +velocità +cambiamento +alcune +parti +mondo +assurde +polemiche +politica +italiana +governo +interne +pd +mondo +fuori +corre +italia +fermando +mondo +parla +intelligenza +artificiale +altro +italia +chiusure +domenicali +mondo +fa +conti +rivoluzione +bigdata +italia +mette +discussione +obbligo +fare +vaccini +proposito +pomeriggio +intervengo +aula +senato +decreto +anti +vaccini +diretta +facebook +poi +vado +porta +porta +onda +stasera +rai1 +cerco +chiarire +dobbiamo +rispondere +immobilismo +italia +costretta +salvini +maio +bisogna +reagire +bisogna +farlo +viso +aperto +italia +serve +altro +volta +settimana +parte +dibattito +futuro +pd +vuole +sciogliere +vuole +rilanciare +propone +cene +chiarimento +vuole +congressi +discussione +politica +vuole +società +civile +dice +potere +iscritti +tutte +scelte +legittime +rispettabili +penso +oggi +problema +pd +altro +guardo +cosa +accaduto +settimana +vedo +governo +messo +fiducia +rinviare +obbligo +vaccini +governo +dopo +mese +propaganda +genova +litiga +nome +commissario +governo +mercati +internazionali +già +fatto +danni +solo +parole +parola +mario +draghi +figuriamoci +quando +altro +torino +tanta +gente +governo +pd +giochi +attacco +grande +grazie +deputati +stanotte +combattuto +persino +ostruzionismo +norma +folle +altro +vaccini +popolo +arrende +vuole +italia +diversa +gioca +paura +odio +ritornoalfuturo +eppure +bello +fermarsi +attimo +smetterla +almeno +oggi +propaganda +lasciare +giudici +individuino +veri +colpevoli +provare +insieme +fare +ciò +serve +dare +casa +sfollati +ricostruire +subito +ponte +realizzare +gronda +garantire +impegno +terzo +valico +bisagno +porto +dare +agevolazioni +altro +fiscali +settori +crisi +favoletta +tragedia +immane +ponte +morandi +genova +merita +sforzo +unitario +dopo +mese +polemiche +fakenews +scaricabarile +bello +italia +mostrasse +finalmente +proprio +volto +migliore +governo +anziché +attaccare +opposizione +cercasse +ricostruire +subito +ponte +fare +opere +necessarie +collaborare +comune +regione +chiedere +aiuto +tanti +altri +argomenti +possiamo +discutere +litigare +dividerci +genova +può +provare +lavorare +insieme +costretto +dimissioni +mario +nava +presidente +consob +noto +autorevolezza +indipendenza +tratta +decisione +danno +enorme +credibilità +italiana +solo +mercati +internazionali +risparmiatori +pagheranno +conseguenze +conosce +funzionano +istituzioni +scelta +altro +incredibile +inaccettabile +costituzionalisti +comitati +cnel +preoccupati +deriva +autoritaria +evidentemente +ancora +ferie +tempo +galantuomo +governo +cialtroni +tace +complice +salvini +periferie +attacca +me +tanto +cambiare +dice +finanzierà +solo +progetti +seri +fatti +renzi +basta +progetti +renziana” +dice +ministro +rispetta +sentenze +salvini +proprio +capisce +quei +progetti +fatti +renziana” +progetti +sindaci +altro +autonomia +libertà +costruito +governo +semplicemente +finanziato +tempo +quando +ancora +federalista +salvini +apprezzato +finanziamento +governo +comuni +qualsiasi +colore +politico +oggi +no +oggi +conta +solo +attaccare +me +fa +affidamento +capacità +manipolare +informazioni +prova +ancora +fare +polemica +rispondo +colpo +colpo +governo +cialtroni +vice +premier +cialtroni +periferie +messo +soldi +salvini +maio +tolgono +diretta +palazzo +giustiniani +oggi +usciti +dati +istat +produzione +industriale +prima +volta +dopo +mesi +segno +negativo +peggior +dato +ultimi +anni +dato +preoccupante +solitamente +produzione +industriale +anticipa +senso +marcia +economia +italiana +resto +parlavo +dirigente +azienda +diceva +altro +decreto +dignità +voluto +maio +ottobre +licenzierà +persone +ministro +calcola +effetti +potenzialmente +devastanti +provvedimento +ideologico +domeniche +stelle +assicurano +arriverà +reddito +cittadinanza +netto +fatto +coperture +problema +rimane +dobbiamo +altro +diretta +milano +ore +diretta +facebook +milano +aspetto +chiusura +domenicale +negozi +porterà +licenziamento +migliaia +ragazzi +luigi +maio +attacca +me +sempre +attacca +solo +me +chissà +dice +bene +lavoro +parlamentare +opposizione +occupo +altro +mai +parlamento +insomma +basta +bugie +bisogna +rispondere +colpo +altro +colpo +prendete +classifiche +presenza +aula +senza +tener +conto +missioni +assenze +quando +maio +stato +opposizione +partecipato +circa +voti +invece +partecipato +circa +voti +dunque +possiamo +ufficialmente +sostenere +maio +solo +bugiardo +cialtrone +scelte +produrranno +licenziamenti +disoccupazione +obbligare +chiusura +domenicale +vuole +maio +significa +semplicemente +licenziare +tanti +ragazzi +fateci +caso +decreto +dignità +maio +tira +fuori +idee +quando +crisi +visibilità +serve +tenere +attenzione +altrimenti +fagocitato +salvini +inseguire +salvini +maio +distrugge +altro +posti +lavoro +sostenere +famiglie +separino +lavora +domenica +significa +vivere +marte +maio +conferma +ministro +disoccupazione +provvedimento +approvato +tanti +ragazzi +perderanno +posto +lavoro +tanto +reddito +cittadinanza +no +diretta +firenze +diretta +facebook +firenze +aspetto +dichiarazioni +ministro +interno +salvini +farneticanti +solito +tira +ballo +cerca +fare +vittima +idea +stato +eletto +parlamentare +siede +governo +possa +violare +tranquillamente +legge +aberrante +attenzione +salvini +butta +questione +immigrazione +preciso +calcolo +politico +altro +lega +deve +restituire +milioni +euro +sentenza +italiani +perdonano +ruba +propri +soldi +quindi +prova +diventare +martire +cerca +scontro +magistrati +siciliani +vergogna +punto +salvini +dentro +fino +collo +vicenda +milioni +rubati +lega +fino +collo +pur +parlarne +porta +scontro +istituzionale +massimo +livello +dovremo +aspettare +avere +dichiarazioni +sdegno +premier +guardasigilli +solo +messaggio +ripetere +fino +noia +salvini +restituisci +soldi +lega +rubato +italiani +resto +solo +vile +tentativo +screditare +istituzioni +prendere +giro +italiani +aspettavo +leggere +oggi +commenti +incredibili +fatti +premier +g7 +tenta +concorso +pubblico +poi +rinuncia +quando +viene +scoperto +giornale +italiano +peraltro +grazie +politico +europe +ministro +legalità +annuncia +rispettare +sentenze +sondaggi +favorevoli +rubato +altro +milioni +italiani +finta +nulla +ministro +infrastrutture +mente +pressioni +proprietà +giornali +finanziamenti +partiti +bugiardo +riccioli +oggi +invece +trovo +niente +notizie +vengono +date +cronaca +nessun +commento +nessun +editoriale +scandalizzato +quando +premier +altro +diretta +ravenna +sentenza +dice +lega +rubato +soldi +deve +restituire +milioni +salvini +replica +sondaggi +premiano +lega +dunque +italiani +impressionante +ministro +interno +contano +sondaggi +sentenze +solo +salvini +permette +minacciare +velatamente +giudici +genova +altro +occupino +ponte +dice +lega +tacciono +costituzionalisti +parlavano +deriva +autoritaria +tacciono +cantori +onestà +grillina +tacciono +editorialisti +scandalizzavano +quando +governo +zitti +chissà +milioni +euro +rubati +italiani +lega +ladrona +vanno +recuperati +tace +complice +ieri +cambiato +idea +vaccini +oggi +cambiano +idea +annullamento +gara +ilva +passi +avanti +importanti +italia +poco +importa +smentite +promesse +elettorali +stelle +maio +fatto +bene +rimangiarsi +parola +vaccini +ilva +nessuna +ironia +sgraziata +parte +oggi +solo +altro +personale +ringraziamento +speso +personalmente +lavorato +roberto +burioni +medici +parlamentari +tema +vaccini +andrea +guerra +federica +guidi +carlo +calenda +teresa +bellanova +tema +ilva +quando +chiudono +vicende +così +complicate +spesso +lavorato +davvero +resta +ombra +semplicissimo +grazie +diretta +palazzo +giustiniani +vergogna +dopo +altra +stelle +governo +vicenda +ex +iena +dino +giarrusso +scandalosa +signore +lavorava +iene +programma +collezionato +figuracce +storiche +regista +brizzi +ingiustamente +accusato +violenza +professor +burioni +vaccini +contento +scelto +altro +strada +politica +candidato +naturalmente +stelle +stato +eletto +urlano +casta +primi +farsi +sistemare +potere +allora +giarrusso +prima +stato +piazzato +ufficio +stampa +regione +lazio +poi +governo +fare +controllare +concorsi +universitari +altro +crollo +ponte +genova +causato +dolore +vergogna +paese +modo +governo +continuando +sciacallaggio +rende +vicenda +ancora +incredibile +continuano +pensare +favoletta +tragedia +ancora +oggi +ministro +infrastrutture +toninelli +parlando +camera +continuato +altro +sparare +mucchio +pensava +essere +barsport +parlamento +purtroppo +parlamento +ore +successive +crollo +collega +maio +dato +colpa +prendevano +soldi +autostrade +chiesto +nomi +ministro +scoperto +soldi +autostrade +presi +lega +nord +allora +altro +ieri +bella +chiacchierata +barbara +palombelli +anticipazione +video +firenze +qualche +scontro +rude +giornalisti +collegati +naturalmente +vaccini +mutui +libia +date +occhiata +dite +pensate +buongiorno +amici +accadendo +libia +purtroppo +molto +pericoloso +italia +esempio +chiaro +cosa +significhi +governare +pensando +piace +facebook +politica +maiuscola +ministri +dirette +social +spiaggia +poi +sequestrano +navi +italiane +qualche +povero +migrante +bordo +altro +pensano +solo +consenso +immediato +opinione +pubblica +sembra +momento +seguirli +frattempo +però +privi +visione +toccano +palla +nessun +dossier +geopolitico +importante +quando +problemi +libia +attaccano +macron +tanto +cambiare +italia +strategia +libia +puoi +arrabbiarti +altro +stasera +aspetto +rete +nuova +edizione +programma +stasera +italia +barbara +palombelli +oggi +ultima +giornata +riprese +documentario +firenze +rinunciato +ferie +stato +bellissimo +immergermi +agosto +storia +città +bellezza +salverà +mondo +cultura +altro +salverà +politica +molto +imparare +passato +soprattutto +futuro +oggi +esempio +girato +museo +galileo +scienza +ideologia +sembra +ancora +attuale +proposito +dibattito +vaccini +buona +giornata +amici +ieri +milano +orban +detto +relazione +governo +pessima +ragione +vado +orgoglioso +niente +personale +viktor +rappresenti +opposto +ciò +significa +europa +europa +muri +egoismi +paura +pensiamo +europa +nasca +davvero +quando +muri +cadono +quando +solidarietà +afferma +quando +coraggio +sconfigge +demagogia +tieniti +salvini +maio +teniamo +ideali +ventotene +aggiornato +buona +domenica +amici +quando +magistrati +indagavano +alfano +attuale +vicepremier +ministro +disoccupazione +luigi +maio +chiedeva +dimissioni +ministro +interno +minuti +titolare +viminale +poteva +restare +sotto +indagini +adesso +ruota +gira +aperta +indagine +altro +salvini +garantisti +chiediamo +dimissioni +ministro +interno +minuti +diciamo +voce +alta +doppiamorale +maio +vergogna +civile +manganellare +avversari +via +web +quando +fa +comodo +barbarie +siccome +ruota +gira +fine +autogol +tempo +movimento +stelle +difendeva +altro +eritrei +fuggono +guerra +italiani +servono +onore +paese +guardia +costiera +totale +persone +sequestrati +facebook +qualche +ministro +diritti +umani +valgono +piace +social +allora +ricordiamoci +italia +stato +canaglia +restiamo +umani +fateliscendere +gira +video +rete +campania +italia +agosto +gruppo +cittadini +turisti +deve +superare +tornelli +accedere +treno +basta +comprare +biglietto +obliterarlo +porte +aprono +invece +altro +no +fermi +attesa +senza +acquistare +ticket +finché +ignaro +resto +paga +oblitera +biglietto +apre +tornelli +scatta +ressa +precipitano +evitare +pagare +scena +diventa +virale +detto +tante +volte +italia +meritava +nuova +stagione +diritti +dobbiamo +dire +bisogno +nuova +stagione +doveri +entrare +senza +pagare +atto +furbi +cosa +sorridere +furto +comunità +educare +doveri +solo +diritti +deve +tornare +priorità +video +niente +ridere +massimo +solo +vergognarsi +giusto +dirlo +forte +chiaro +senza +minimizzare +enews +agosto +accaduto +genova +atroce +assurdo +morire +così +priorità +oggi +aiutare +famiglie +vittime +sfollati +dibattito +pubblico +tuttavia +altro +parlato +governo +salvini +dimaio +infatti +deciso +attaccare +opposizione +spargere +veleni +falsità +scelto +replicare +volevo +accuse +infami +ricevessero +condanna +ferma +https +www +facebook +com +matteorenziufficiale +posts +primo +https +www +facebook +com +matteorenziufficiale +posts +secondo +altro +raccontare +storia +firenze +bellezza +valori +emozione +infinita +sogno +coltivo +anni +dentro +firenze +passato +futuro +magia +oggi +intervista +repubblica +utilizzare +tragedia +dividere +italiani +maio +salvini +atteggiamento +infame +tornerà +boomerang +verità +super +altro +concessione +autostrade +votata +matteo +salvini +no +no +gronda” +detto +grillo +no +soldi +sistema +autostradale +presi +lega +conte +no +ecco +bisogna +alzare +testa +reagire +montagna +falsità +social +rilanciano +ribattere +colpo +colpo +oggi +pensa +cavarsela +zitto +disparte +domani +considerato +complice +davanti +problemi +cercano +capri +espiatori +cerchiamo +verità +scelgono +presunti +responsabili +manganellano +web +vogliamo +veri +colpevoli +tribunale +bisogna +reagire +insieme +amici +verità +bisogno +tempo +verità +forte +fa +ministro +paura +ministro +ignoranza +tocca +ciascuno +forza +tempo +lottare +ora +basta +bisogna +rispondere +punto +punto +colpo +colpo +tace +oggi +giudicato +complice +domani +maio +dice +governo +primo +aver +preso +soldi +benetton +società +autostrade +benetton +pagato +campagna +elettorale +falso +vedendo +carte +scopriamo +preso +centesimo +né +altro +leopolda +né +campagne +elettorali +ciò +significa +maio +bugiardo +sciacallo +bastasse +scopre +società +autostrade +finanziato +lega +premier +conte +stato +legale +aiscat +società +concessionari +autostrada +avvocato +popolo +diventa +improvviso +avvocato +altro +genova +grazie +lavorando +senza +sosta +giorni +qualità +soccorritori +italiani +straordinarie +ovviamente +pensiero +vittime +famiglie +straziate +dolore +morire +così +assurdo +fare +giustizia +dovere +famiglie +ciascuno +prime +ore +chiesto +fare +altro +polemiche +paese +civile +davanti +tragedia +genere +unisce +divide +confermo +impegno +tuttavia +parole +ore +alcuni +membri +governo +impongono +puntuale +replica +punti +punti +fatta +chiarezza +altrimenti +sembriamo +complici +luigi +maio +dice +governo +preso +altro +sbagliato +deve +pagare +forse +prima +poi +potremo +discutere +infrastrutture +senza +pregiudizi +ideologici +oggi +no +oggi +genova +merita +solo +silenzio +cordoglio +dolore +vicinanza +famiglie +vittime +naturalmente +gratitudine +immensa +straordinaria +professionalità +soccorritori +nessun +complotto +mercati +governo +italiano +salvini +maio +soli +autocomplotto +aspettarsi +resto +governo +novax +notav +nojobs +girando +molto +telefonini +lettera +medico +dottoressa +silvia +braccini +conosco +scrive +sembra +sacrosanto +dunque +condivido +colpisce +altro +sconvolge +posizione +stelle +vaccini +idea +necessario +essere +preparati +decidere +dossier +importa +essere +laureati +medicina +parlare +vaccini +basta +conoscere +cugino +taverna +importa +essere +competenti +materia +lavoro +basta +essere +cresciuti +pomigliano +insieme +maio +importa +studiare +fare +fatica +conoscere +basta +andare +rete +blog +guru +spiegherà +ciò +dobbiamo +pensare +italia +discute +vaccini +pazzesco +mentre +mondo +riflette +ripercussioni +intelligenza +artificiale +costretti +pagare +conseguenze +stupidità +naturale +ringrazio +dottoressa +braccini +parole +condivido +vaccini +devono +esprimersi +medici +scienza +ricerca +scherza +salute +figli +prima +criticano +poi +insultano +poi +odiano +quindi +quando +tocca +copiano +vedere +salvini +maio +difendere +80euro +prezzo +date +occhio +video +sentite +definivano +altro +80euro +mazzetta +ata +atto +cinismo +governo +cambiamento +cambiano +idea +infatti +ogni +giorno +prendiamola +ridere +forse +meglio +così +dopo +sacchetti +plastica +lamborghini +ibiza +servizi +segreti +consip +finti +fratelli +portaborse +cugine +imprenditrici +pagliacciata +aereo +renzi +arriva +adesso +tenetevi +forte +vicenda +bambini +africani +indagine +aperta +ben +anni +fratello +altro +marito +sorella +presunte +irregolarità +presunte +lavoro +dirigente +cooperazione +prove +dopo +anni +indagini +risultano +vedremo +processo +tanto +basta +solo +evocare +vicenda +andare +giornali +oggi +esattamente +anni +fa +altra +condanna +titoli +effetto +altro +udite +udite +oggi +salvini +difende +80euro +ieri +governo +detto +difenderà +piano +periferie +ieri +altro +difeso +legge +caporalato +bonus +cultura +diciottenni +cambiando +idea +piani +iniziali +sempre +detto +tempo +stato +galantuomo +esagerano +anticipando +tappe😀 +dicono +altro +però +renzi +cattivo +carattere +ok +cercherò +imparare +raccontare +barzellette +meglio +restare +antipatici +fare +cose +utili +paese +cercare +fare +simpatici +schizzare +spread +buona +giornata +amici +oggi +maggioranza +grillo +leghista +approvato +decreto +maio +chiamano +decreto +dignità +vero +nome +decreto +disoccupazione +relazione +tecnica +proprio +ammettono +norme +disoccupati +me +sembra +incredibile +primo +atto +ogni +governo +sceglie +provvedimento +simbolico +altro +cercato +mettere +soldi +tasche +ceto +medio +80€ +milioni +italiani +invece +partono +licenziamenti +permettere +maio +mettere +bandierina +battaglia +visibilità +davvero +governo +cambiamento +ministro +lavoro +oggi +ministro +disoccupazione +ieri +sera +tg1 +vaccini +decreto +disoccupazione +tav +minuti +tempo +dite +pensate +astenersi +troll +grazie +😊 +vaccini +governo +male +bambini +specie +piccoli +atto +colore +politico +semplicemente +atto +assurdo +bastasse +oggi +arrivano +minacce +professor +burioni +medico +combatte +bufale +novax +solidarietà +burioni +speriamo +torni +presto +buon +senso +meraviglioso +paese +maggioranza +fermi +prima +votare +decreto +legge +rappresenta +ferita +bambini +vergogna +italia +governo +scherza +fuoco +scelta +assurda +vaccini +lega +ladrona +bugie +fake +news +coprire +mancanza +credibilità +maio +ministro +disoccupazione +parlato +altro +altro +intervista +messaggero +mattino +gazzettino +essere +credibili +dobbiamo +mettere +campo +progetto +politico +culturalmente +solido +tempo +leggere +dice +pensa diff --git a/anno3/avrc/assignments/dataviz/dataset/all/salvini_comuni.html b/anno3/avrc/assignments/dataviz/dataset/all/salvini_comuni.html new file mode 100644 index 0000000..2f7f476 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/salvini_comuni.html @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/salvini_counter b/anno3/avrc/assignments/dataviz/dataset/all/salvini_counter new file mode 100644 index 0000000..d7ee743 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/salvini_counter @@ -0,0 +1 @@ +{"accolta": 4, "tiv\u00f9": 38, "onori": 4, "spese": 37, "italiani": 465, "dovrebbe": 29, "stare": 23, "galera": 53, "roba": 49, "matti": 56, "lasciamo": 6, "tedesca": 4, "speronatrice": 1, "navi": 15, "militari": 7, "sinistra": 159, "governo": 333, "clandestino": 24, "italia": 491, "oriana": 9, "molliamo": 24, "iostoconoriana": 1, "serata": 57, "magica": 3, "fiorenzuola": 7, "provincia": 51, "piacenza": 16, "tantissimi": 32, "emiliani": 20, "voglia": 72, "cambiare": 53, "molla": 21, "centimetro": 4, "buonanotte": 23, "amici": 443, "giusto": 18, "tenere": 6, "atti": 3, "serie": 2, "mondo": 82, "contrario": 16, "pubblica": 17, "pagata": 2, "andata": 9, "onda": 10, "infischiata": 1, "leggi": 19, "altro": 592, "speronato": 1, "motovedetta": 1, "guardia": 11, "finanza": 13, "rischiando": 6, "ammazzare": 3, "occupanti": 2, "messaggio": 23, "bella": 78, "deve": 51, "accogliere": 20, "profughi": 91, "migranti": 26, "economici": 8, "climatici": 7, "africa": 24, "sconvolgimenti": 1, "ambientali": 1, "colpa": 34, "amen": 3, "\ud83d\ude44": 1, "\ud83d\udd34al": 1, "senato": 31, "bloccata": 2, "legge": 135, "telecamere": 16, "asili": 14, "case": 39, "riposo": 7, "fortemente": 1, "voluta": 4, "lega": 533, "ora": 242, "parla": 33, "problemi": 45, "privacy": 1, "date": 25, "mossa": 2, "bambini": 52, "anziani": 26, "persone": 133, "fragili": 2, "richiedono": 1, "tutta": 101, "tutela": 14, "possibile": 56, "evitare": 14, "alcuni": 29, "orrori": 2, "purtroppo": 39, "troppo": 49, "spesso": 11, "turbano": 1, "cronache": 3, "aderito": 1, "petizione": 1, "quotidiano": 5, "tempo": 81, "dare": 45, "sveglia": 12, "questione": 3, "schieramento": 1, "politico": 19, "solo": 260, "buonsenso": 40, "potete": 22, "scrivere": 5, "email": 4, "aderire": 2, "iltempo": 1, "it": 79, "carolanti": 1, "poco": 86, "lucia": 41, "borgonzoni": 27, "diretta": 491, "giletti": 17, "la7": 38, "26gennaiovotolega": 46, "borgonzonipresidente": 30, "tanto": 53, "affetto": 16, "tante": 43, "idee": 58, "tanta": 67, "cambiamento": 10, "oggi": 287, "rimini": 21, "gennaio": 23, "scriveremo": 2, "insieme": 175, "pagina": 33, "storia": 75, "stupenda\ud83d\ude0a": 1, "rete": 55, "grazie": 260, "\u2764\ufe0f": 14, "carlino": 2, "uscito": 1, "sondaggio": 5, "d\u00e0": 23, "vantaggio": 1, "oltre": 41, "punti": 6, "fido": 2, "sondaggi": 23, "contano": 6, "me": 144, "cercheremo": 2, "meritarci": 1, "possiamo": 28, "emilia": 86, "romagna": 71, "dopo": 148, "anni": 237, "poi": 131, "cambiamo": 3, "meno": 117, "giorni": 64, "ogni": 78, "voto": 76, "conta": 4, "state": 134, "saluto": 51, "arda": 4, "tanti": 108, "disagi": 4, "causa": 5, "maltempo": 8, "esaurito": 6, "riescono": 6, "entrare": 24, "arrivando": 9, "\ud83d\udd34altri": 1, "presunti": 37, "sbarcati": 12, "messina": 5, "solita": 5, "nave": 14, "ong": 22, "porti": 33, "aperti": 14, "significano": 1, "partenze": 11, "sbarchi": 52, "morti": 35, "droga": 12, "armi": 8, "mani": 29, "scafisti": 22, "trafficanti": 5, "ottimo": 4, "risultato": 13, "conte": 26, "lamorgese": 1, "vergogna": 68, "sorrisi": 15, "abbracci": 5, "mattina": 110, "congresso": 11, "nazionale": 26, "federanziani": 4, "vuole": 77, "male": 45, "avanti": 75, "spara": 7, "salvini\u201d": 3, "ecco": 149, "frutti": 1, "odio": 28, "certa": 9, "testa": 41, "alta": 6, "senza": 125, "paura": 41, "crollato": 3, "viadotto": 1, "autostradale": 1, "vicino": 38, "savona": 4, "immagini": 16, "terrificanti": 1, "sembra": 24, "fatto": 84, "nessuno": 46, "gi\u00e0": 85, "miracolo": 1, "abbraccio": 49, "colpiti": 4, "disastrose": 1, "conseguenze": 4, "vigili": 25, "fuoco": 26, "forze": 57, "ordine": 75, "protezione": 8, "civile": 14, "volontari": 16, "coloro": 5, "ore": 87, "rischiano": 9, "vita": 104, "salvare": 14, "altri": 104, "ancora": 137, "pensiero": 36, "ricordate": 7, "prete": 4, "toscano": 2, "vorrebbe": 15, "portare": 15, "concertino": 2, "sardinante": 1, "ciao": 23, "messa": 4, "po": 71, "vedremo": 2, "sanremo": 4, "\ud83d\ude00": 8, "\ud83d\ude0b\ud83d\udc1f": 1, "\ud83d\udd1d": 2, "accoglienza": 59, "stupenda": 23, "energia": 8, "vecchi\u201d": 1, "quei": 15, "poveretti": 10, "5stelle": 20, "grillo": 16, "vorrebbero": 14, "togliere": 15, "diritto": 48, "sempre": 212, "senior": 1, "invito": 10, "splendida": 82, "cosmosenior": 1, "nonne": 3, "nonni": 9, "\ud83d\ude0a": 81, "domenica": 170, "fa": 169, "enormi": 3, "forti": 19, "piogge": 1, "speriamo": 7, "diano": 1, "tregua": 1, "altra": 48, "straniera": 2, "sbarco": 6, "regalo": 11, "appena": 27, "torniamo": 8, "tornano": 5, "valere": 2, "regole": 34, "controlli": 25, "seriet\u00e0": 2, "portichiusi": 5, "buona": 106, "vediamo": 23, "convegno": 12, "quali": 7, "quel": 22, "genio": 9, "inaugurazione": 10, "sede": 24, "riminese": 1, "direzione": 11, "convinto": 14, "impegniamo": 3, "casa": 281, "guardate": 33, "saluta": 3, "\ud83d\ude00\ud83d\ude00\ud83d\ude00": 2, "ben": 7, "alzati": 1, "gattiniconsalvini": 17, "sorriso": 25, "arma": 10, "migliore": 14, "\u263a\ufe0f\u263a\ufe0f\u263a\ufe0f": 2, "onore": 26, "carabinieri": 26, "orgoglio": 22, "grandissimo": 1, "signora": 43, "luciana": 1, "bel": 17, "biglietto": 17, "visita": 11, "offerto": 3, "milano": 215, "pd": 233, "niente": 42, "dire": 58, "k": 1, "\ud83d\udd34se": 1, "opera": 4, "arte": 7, "ridere": 9, "nemmeno": 24, "cazzo": 7, "pu\u00f2": 130, "consentite": 2, "certe": 10, "cose": 32, "scherza": 1, "ammazza": 6, "compagna": 5, "coltellate": 2, "aspettava": 1, "bambino": 12, "parola": 22, "bastardo": 1, "pena": 50, "eccitato": 1, "fazio": 2, "piacere": 8, "onore\u201d": 1, "ospitare": 9, "signorina": 1, "carola": 3, "nota": 4, "bene": 103, "speronate": 1, "italiane": 32, "fatevi": 3, "nessun": 22, "perugia": 26, "presidente": 53, "umbria": 42, "donatellla": 1, "tesei": 6, "nuova": 31, "giunta": 6, "consiglieri": 6, "regionali": 8, "incantevole": 3, "vista": 23, "alto": 8, "prima": 179, "soprattutto": 27, "donatella": 5, "squadra": 26, "amministrer\u00e0": 1, "regione": 34, "scelto": 7, "modello": 21, "buongoverno": 5, "quasi": 44, "mila": 20, "euro": 215, "spesi": 6, "murales": 1, "pro": 3, "immigrazione": 104, "priorit\u00e0": 30, "smentiscono": 1, "mai": 102, "salvini": 161, "immigrati": 168, "no": 132, "schifezza": 6, "sinistrato": 1, "intanto": 31, "raggi": 10, "zingaretti": 6, "litigano": 8, "roma": 174, "sommersa": 3, "rifiuti": 8, "maio": 16, "neanche": 8, "scappare": 15, "aziende": 25, "approva": 1, "trattati": 14, "silenzio": 16, "renzi": 386, "calenda": 3, "fondano": 1, "partiti": 4, "lavoriamo": 2, "buon": 103, "sabato": 73, "amici\ud83d\ude0a": 2, "merenda": 1, "dietetica": 2, "pomeriggio": 36, "\ud83d\udd34": 26, "vergognosa": 7, "finta": 13, "raccolta": 12, "differenziata": 4, "mentre": 62, "duo": 2, "sciagura": 2, "continuano": 4, "litigare": 7, "continua": 15, "essere": 160, "seppellita": 1, "immondizia": 3, "scandalosa": 1, "complicit\u00e0": 4, "gestisce": 4, "pronta": 17, "mandare": 20, "incapaci": 23, "gioved\u00ec": 16, "novembre": 29, "teatro": 18, "inizia": 5, "conto": 35, "rovescia": 1, "restituire": 19, "pulizia": 10, "sicurezza": 119, "dignit\u00e0": 22, "capitale": 6, "raggidimettiti": 12, "\ud83d\udd34facciamo": 1, "girare": 102, "cos": 5, "trattato": 2, "europeo": 12, "rischia": 10, "saltare": 4, "risparmi": 8, "banca": 17, "folle": 11, "vorrei": 13, "svenduto": 8, "sovranit\u00e0": 17, "tenersi": 1, "poltrona": 18, "cos\u00ec": 100, "tradimento": 7, "pace": 17, "guerra": 52, "reato": 32, "punibile": 1, "aspetto": 97, "verso": 45, "citt\u00e0": 81, "neo": 2, "governatrice": 3, "zona": 14, "venite": 4, "trovarci": 1, "cosa": 118, "farsi": 9, "pubblicit\u00e0": 2, "squallore": 1, "scultura\u201d": 1, "raffigura": 1, "sparo": 2, "vera": 20, "istigazione": 1, "violenza": 22, "vedo": 32, "tornare": 43, "napoli": 33, "ammirare": 1, "fantastici": 7, "presepi": 3, "tradizionali": 2, "porcherie": 3, "votateci": 1, "beneficenza": 4, "destra": 12, "pericolosetta": 1, "\u201d": 26, "voleva": 8, "cancellare": 34, "elezioni": 33, "ormai": 25, "poveretto": 4, "andate": 12, "leggervi": 2, "commenti": 34, "ex": 35, "elettori": 10, "risata\ud83d\ude02": 1, "effettivamente": 1, "\ud83d\ude38": 6, "buongiorno": 24, "gattini": 4, "gattoboy": 1, "ammazzato": 7, "ragazzo": 18, "complici": 14, "schifo": 58, "giustizia": 27, "marco": 13, "vannini": 1, "quarto": 6, "grado": 8, "meraviglia": 1, "\ud83d\ude3b\ud83d\ude3b\ud83d\ude3b": 1, "piccola": 12, "parte": 93, "migliaia": 81, "bimbi": 35, "felini": 4, "inviati": 3, "terapeutici": 2, "portano": 8, "gioia": 10, "predispongono": 1, "sonno": 2, "creare": 5, "cartello": 5, "personalizzato": 1, "mici": 3, "andando": 6, "legaonline": 21, "permetteremo": 2, "svendere": 6, "qualche": 154, "minuto": 88, "intervista": 135, "verit\u00e0\u201d": 2, "bottiglie": 9, "sassi": 3, "insulti": 24, "polizia": 70, "minacce": 13, "democratici": 14, "sembrano": 7, "nazisti": 5, "rossi": 7, "\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\ude02": 1, "stopmes": 3, "ieri": 160, "sorrento": 6, "ragazzi": 57, "riempie": 7, "giovani": 40, "avvicinano": 1, "deciso": 16, "impegnarsi": 1, "forte": 18, "giusta": 13, "libera": 16, "\ud83c\uddee\ud83c\uddf9": 82, "fiera": 18, "g": 1, "giocare": 5, "regalato": 8, "bacchetta": 1, "mezza": 7, "idea": 15, "desiderio": 1, "realizzare": 2, "\ud83d\ude09": 15, "forza": 54, "sinisa": 2, "guerriero": 2, "frutta": 7, "glielo": 6, "dice": 105, "dolcevita": 1, "velluto": 1, "piacciono": 7, "fin": 5, "\ud83e\udd23": 2, "arriva": 21, "momento": 19, "prendere": 19, "figlia": 13, "scuola": 51, "gioia\ud83d\ude0a": 1, "gi\u00f9": 22, "conti": 7, "correnti": 4, "premier": 18, "congratulazioni": 1, "affettuosi": 2, "auguri": 18, "nuovi": 31, "successi": 2, "brasile": 1, "jair": 2, "messias": 2, "bolsonaro": 3, "avventura": 3, "alian\u00e7a": 1, "pelo": 3, "brasil": 1, "\ud83c\uddee\ud83c\uddf9\ud83c\udde7\ud83c\uddf7": 2, "indovinello": 1, "sbarcheranno": 2, "centinaia": 57, "\ud83e\udd14": 2, "unomattina": 3, "sicuro": 13, "piacer\u00e0": 4, "aiutate": 6, "condividerla": 3, "tribunale": 31, "finalmente": 27, "riconosce": 5, "bloccare": 22, "autorizzati": 1, "curioso": 3, "vedere": 47, "punto": 24, "decideranno": 1, "altre": 31, "procure": 1, "volta": 52, "tornato": 2, "rifar\u00f2": 2, "esattamente": 5, "visto": 32, "paesi": 26, "qualcuno": 67, "manifesta": 4, "opposizione": 13, "temendo": 1, "vada": 12, "comunque": 26, "nuovo": 53, "sport": 5, "inseguire": 1, "pronto": 53, "prossimi": 12, "appuntamenti": 1, "domani": 102, "mattino": 3, "edicola": 4, "lunga": 18, "spero": 46, "interessante": 6, "parlo": 6, "molto": 41, "festival": 7, "lavoro": 254, "seguitemi": 93, "seguito": 8, "rai": 98, "pare": 32, "stato": 207, "chiaro": 40, "mes": 8, "tasse": 126, "controllo": 21, "minoranza": 4, "danni": 21, "paese": 147, "meglio": 54, "gi\u00fa": 1, "natale": 33, "appello": 8, "genitori": 15, "insegnanti": 6, "lasciate": 2, "libert\u00e0": 90, "iniziative": 2, "celebrano": 1, "festa": 61, "bimbo": 17, "italiano": 61, "straniero": 9, "offende": 1, "davanti": 45, "presepe": 10, "bisogno": 42, "valori": 10, "sperando": 7, "riuscire": 2, "voce": 17, "occhi": 12, "gemelli": 1, "incontrati": 2, "sorrento\ud83d\ude0a": 1, "giornata": 58, "dolce": 4, "limone": 3, "positano": 5, "riduce": 1, "ciarlatano": 2, "accendere": 1, "micio": 1, "birbantello": 1, "\ud83d\ude39": 1, "arrivati": 11, "circa": 6, "10mila": 3, "foto": 24, "ricevute": 1, "marea": 10, "cani": 6, "cagnolini": 3, "organizzando": 1, "vedrete": 5, "grande": 93, "vittoria": 21, "insistito": 1, "fine": 41, "raggiunto": 3, "imu": 7, "immobili": 2, "terremotati": 12, "inagibili": 1, "accordi": 4, "innominabili": 1, "insaputa": 2, "popolo": 48, "tocchi": 1, "secondo": 72, "adesso": 43, "pericolo": 13, "sigarette": 5, "elettroniche": 3, "svapa": 1, "passa": 16, "leggete": 4, "burocrazia": 19, "uffici": 2, "esercitano": 1, "fuori": 57, "umiliante": 1, "brutale": 1, "mano": 78, "procedura\u201d": 1, "spazio": 11, "briciolo": 2, "umanit\u00e0": 4, "compassione": 2, "mente": 8, "collegamento": 18, "magnifica": 3, "pioggia": 9, "aver": 69, "accolto": 10, "proprio": 42, "sindaco": 61, "famiglia": 40, "bellezza": 4, "dicembre": 24, "fiandre": 1, "anversa": 1, "prepara": 1, "mezzi": 11, "propriamente": 1, "pacifici": 1, "vantando": 1, "vasta": 1, "esperienza": 8, "campo": 32, "voluto": 9, "dibattito": 8, "democratico": 7, "servirebbe": 2, "terapia": 1, "calmante": 1, "tavola": 6, "pranzo": 25, "\u26a0": 5, "fiscale": 53, "riaperto": 2, "inventato": 1, "plastica": 10, "zucchero": 6, "pure": 20, "corrente": 6, "follia": 32, "fermare": 18, "nooooo": 2, "miagolii": 1, "delusione": 1, "poca": 4, "pappa": 1, "\ud83d\ude3f\ud83d\ude18": 1, "moscovici": 1, "salverebbe": 1, "banche": 42, "s\u00ec": 36, "francesi": 6, "tedesche": 2, "metterebbe": 1, "infatti": 4, "crisi": 13, "pagare": 44, "abi": 1, "governatore": 10, "bankitalia": 1, "preoccupati": 3, "capito": 17, "rischiamo": 2, "bis": 4, "disastro": 20, "bail": 2, "anzi": 12, "cento": 8, "volte": 23, "peggio": 13, "attacco": 8, "democrazia": 16, "risparmio": 3, "passare": 13, "opporr\u00e0": 2, "maniera": 2, "giuseppe": 7, "cuomo": 1, "michele": 3, "entrano": 7, "benvenuti": 17, "riesci": 3, "multa": 3, "pignorarti": 1, "unione": 37, "sovietica": 13, "pericolosi": 17, "piace": 72, "sacco": 5, "cantante": 3, "voglio": 42, "fiorella": 1, "venezia": 34, "veneto": 43, "meritano": 11, "rispetto": 50, "vicinanza": 5, "trotta": 2, "cavallino": 1, "trotto": 1, "\u2600\ufe0f": 5, "campania": 7, "pelosetti": 1, "micetti": 2, "\ud83d\udc31\u2764\ufe0f\ud83c\uddee\ud83c\uddf9": 1, "accidenti": 3, "luoghi": 5, "stupendi": 3, "intera": 6, "benvenuto": 4, "sindaci": 28, "primagliitaliani": 95, "bravissima": 2, "orgoglioso": 35, "donne": 56, "detto": 62, "tria": 1, "mandato": 6, "toccare": 3, "agito": 2, "tradendo": 1, "costa": 13, "caro": 8, "avvocato": 10, "verit\u00e0": 23, "verr\u00e0": 8, "amare": 4, "\ud83d\ude3b": 1, "decine": 27, "pubblicati": 1, "ovunque": 14, "viva": 60, "sorridere": 5, "bruno": 10, "vespa": 16, "prendiamo": 1, "sprangate": 6, "arcate": 2, "gengivali\u201d": 1, "democratica": 5, "partecipazione": 28, "pensa": 25, "trovo": 6, "dovremmo": 7, "presi": 12, "gengivali": 1, "semina": 6, "potrebbero": 5, "certi": 14, "violenti": 14, "signor": 31, "bugiardo": 11, "smemorato": 1, "onesto": 2, "direbbe": 1, "tavoli": 2, "pubblico": 44, "difficile": 9, "ammettere": 1, "resto": 25, "necessario": 6, "numerose": 1, "dichiarazioni": 5, "testimoniano": 1, "contrariet\u00e0": 1, "espressa": 1, "componenti": 1, "ministri": 17, "compresi": 10, "argomento": 1, "teme": 4, "consiglio": 28, "forse": 25, "sportivo": 1, "vero": 23, "uomo": 27, "chiacchierata": 1, "mario": 25, "giordano": 22, "\ud83d\udd34vogliamo": 1, "limitare": 2, "imbarazzante": 2, "basta": 103, "piangere": 6, "poliziotti": 18, "trieste": 8, "bisogna": 24, "mettere": 19, "quattrini": 1, "intelligenza": 3, "pregiudiziali": 1, "proposte": 32, "tagliando": 3, "tagli": 5, "triste": 4, "ci\u00f2": 7, "avvenga": 1, "attuale": 5, "ministro": 47, "interno": 27, "frizzantella": 1, "puntata": 7, "sera": 159, "cinema": 4, "pop": 2, "corn": 2, "panini": 1, "sardine": 4, "miao": 2, "ve": 29, "ripropongo": 64, "camera": 18, "presentare": 6, "parlamentari": 11, "difesa": 74, "soccorso": 7, "sovranisti": 2, "virus": 3, "bada": 1, "parlamento": 45, "appartiene": 3, "libero": 37, "esercizio": 1, "sperimentato": 2, "vedranno": 2, "calabria": 18, "piaciuti": 1, "amarli": 1, "caff\u00e8": 6, "spremuta": 1, "cominciare": 5, "guarigione": 2, "mir\u00f2": 1, "inviato": 6, "spettacolari": 3, "pubblicheremo": 1, "intelligenti": 1, "puliti": 2, "liberi": 27, "bene\u263a\ufe0f": 1, "mezzanotte": 5, "fare": 160, "\u263a\ufe0f": 8, "seguendo": 2, "ringrazio": 16, "mando": 4, "finita": 22, "nottambuli": 2, "cartabianca": 4, "ufficiali": 3, "mostrati": 1, "danno": 19, "vincente": 4, "stesso": 12, "valore": 6, "davano": 5, "candidato": 15, "stelle": 24, "candidata": 8, "prevalso": 1, "soli": 39, "venti": 6, "cavallo": 2, "dimenticato": 3, "compagni": 7, "partito": 17, "sentire": 11, "twitter": 6, "hashtag": 4, "riuscite": 3, "svegli": 5, "raccomando": 3, "trovate": 8, "mettono": 12, "carbonara": 2, "vado": 26, "bello": 28, "pesciolini": 1, "mettete": 5, "invecchiando": 3, "diventa": 12, "saggio": 2, "vauro": 3, "chef": 2, "rubio": 2, "travestito": 1, "\ud83d\ude02": 2, "liberiamo": 16, "https": 27, "www": 154, "facebook": 49, "com": 64, "cartabiancarai3": 1, "photos": 1, "terni": 19, "festeggiare": 6, "storica": 5, "liberazione": 6, "consigliere": 3, "comunale": 12, "lascia": 4, "entra": 21, "subito": 63, "modifica": 1, "rovina": 5, "milioni": 125, "volante": 3, "porro": 15, "pazienza": 16, "serve": 44, "grillini": 4, "pensassero": 2, "figuracce": 1, "ius": 20, "ilva": 10, "\ud83d\ude07": 2, "dimenticare": 6, "scommetto": 3, "giornale": 6, "telegiornale": 4, "ricorder\u00e0": 1, "manifestanti": 2, "comunisti": 2, "ammazzarono": 1, "antonio": 13, "annarumma": 1, "poliziotto": 8, "penetrata": 1, "tubolare": 1, "acciaio": 3, "l\u00ec": 8, "cominciarono": 1, "piombo": 1, "stagione": 3, "sbirri": 3, "insultati": 1, "attaccati": 1, "cortei": 1, "figli": 76, "pap\u00e0": 33, "attaccano": 9, "rafforzano": 1, "mollo": 24, "sindacato": 4, "autonomo": 4, "sap": 3, "semplice": 15, "cittadino": 20, "mare": 47, "inverno": 2, "saluti": 4, "marted\u00ec": 13, "felice": 24, "partecipare": 7, "alcune": 11, "belle": 17, "novit\u00e0": 4, "riguardano": 1, "tengo": 2, "aggiornato": 1, "indagine": 2, "processo": 11, "difeso": 10, "confini": 44, "medaglia": 2, "rifarei": 4, "procura": 4, "agrigento": 6, "gravi": 4, "occuparsi": 10, "ama": 8, "tempi": 7, "governanti": 3, "anti": 16, "scontata": 2, "luca": 22, "toni": 3, "bomber": 1, "auguro": 11, "notte": 67, "serena": 44, "nicola": 10, "manovra": 9, "economica": 15, "accorti": 1, "per\u00f2": 23, "ritrova": 2, "bologna": 91, "parlare": 46, "vive": 16, "marte": 3, "giochetto": 1, "gratta": 1, "sardina": 2, "trovi": 4, "piddina": 1, "democratica\u201d": 1, "assessore": 8, "comune": 50, "delinquenti": 50, "prestati": 1, "politica\u201d": 1, "insultano": 6, "vinciamo": 8, "novi": 4, "modena": 26, "aperto": 7, "porte": 20, "casetta": 5, "legno": 7, "vivono": 9, "terremoto": 15, "vecchia": 3, "parler\u00e0": 2, "efficienza": 2, "velocit\u00e0": 3, "vot\u00f2": 1, "sospetti": 2, "crimine": 2, "confronti": 11, "lavoratori": 30, "risparmiatori": 13, "accordato": 1, "oscuro": 1, "fondo": 13, "stati": 38, "ponga": 1, "rimedio": 1, "tardi": 17, "altrimenti": 13, "zuccheri": 1, "minerbio": 5, "unico": 18, "zuccherificio": 2, "compra": 7, "sano": 5, "amore": 9, "tricolore": 4, "azienda": 14, "agricola": 3, "valentina": 1, "adoro": 11, "funghi": 2, "\ud83d\ude0b": 3, "avviso": 1, "noiussoli": 14, "cittadinanza": 22, "regala": 6, "modi": 1, "garantisco": 11, "realt\u00e0": 17, "m5s": 3, "soffocare": 1, "sgarbi": 3, "usare": 10, "contante": 2, "severo": 3, "sinistri": 13, "invece": 59, "solito": 7, "vizietto": 1, "chiesti": 1, "uccise": 2, "rapinatori": 5, "fer\u00ec": 1, "terzo": 4, "aggredito": 12, "minacciato": 4, "moglie": 13, "pistola": 7, "risultata": 1, "giustizia\u201d": 1, "italiana": 51, "chiede": 20, "condanna": 7, "commerciante": 4, "siciliano": 2, "iostoconguido": 1, "almeno": 35, "reazioni": 3, "condanne": 1, "indignati": 2, "professione": 2, "oppure": 15, "vengono": 35, "minacciose": 1, "profilo": 2, "invoca": 1, "omicidio": 9, "inspiegabilmente": 1, "scomparso": 1, "gratti": 1, "sardino": 1, "piddino": 1, "protesta": 14, "differenza": 10, "distrugge": 3, "costruisce": 3, "incontrare": 11, "resistono": 4, "calamit\u00e0": 4, "naturali": 3, "fiscali": 3, "bo": 1, "mo": 8, "carpi": 8, "democratiche": 1, "spargono": 1, "appendermi": 1, "bont\u00e0": 3, "dico": 25, "piovono": 1, "nonostante": 16, "settimana": 40, "luned\u00ec": 19, "minuti": 71, "live": 38, "farsa": 1, "invasione": 67, "superando": 1, "limite": 10, "premio": 12, "luna": 7, "park": 4, "meritata": 1, "desiderata": 2, "conquistata": 3, "democratiche\u201d": 1, "piazza": 184, "invocava": 1, "giustiziere": 1, "raffigurava": 1, "indignate": 1, "giornalisti": 23, "politici": 17, "merluzzi": 1, "vere\ud83d\ude09": 1, "detestati": 1, "maggioranza": 16, "millimetro": 3, "succedendo": 4, "connazionali": 2, "difficolt\u00e0": 25, "nord": 73, "sud": 46, "gravissimi": 2, "prefetture": 11, "impegnati": 7, "impedire": 7, "peggiori": 1, "visite": 2, "programmate": 1, "quando": 80, "fiumi": 3, "esondano": 1, "distinzione": 1, "colore": 3, "uniti": 13, "sostenere": 14, "aiutare": 39, "abitazioni": 2, "attivit\u00e0": 10, "ricordo": 21, "splendide": 4, "emozioni": 11, "paladozza": 34, "protagonista": 3, "speranza": 23, "\ud83d\udd34che": 1, "disgustoso": 1, "presunto": 5, "intellettuale\u201d": 1, "cultura\u201d": 1, "municipio": 11, "vergogni": 1, "chieda": 3, "scusa": 9, "tutte": 69, "sostiene": 8, "candida": 2, "brave": 1, "preghiamo": 2, "signore": 23, "ritrovi": 3, "equilibrio": 2, "serenit\u00e0": 7, "pensare": 14, "vari": 15, "insultato": 2, "deriso": 1, "dicevo": 1, "scappano": 13, "nessuna": 33, "viene": 49, "galla": 2, "pronti": 38, "battaglia": 35, "dentro": 8, "cambino": 1, "decreti": 8, "governoclandestino": 1, "risolvere": 13, "imprese": 37, "avvocati": 4, "giro": 39, "tribunali": 4, "vuol": 16, "pericolose": 3, "lasciare": 16, "pessima": 1, "duce": 1, "ossessionati": 2, "testarda": 1, "combattere": 13, "colora": 1, "capelli": 4, "blu": 1, "perfetto": 1, "bellissimo": 11, "\u201d\ud83d\ude01": 1, "abbracciato": 3, "cultura": 24, "permissivismo": 1, "spacciatori": 18, "meritevoli": 1, "maggior": 1, "ragione": 25, "nordafricani": 7, "dimenticando": 1, "vecchio": 8, "situazioni": 9, "degrado\u201d": 1, "studio": 24, "\ud83d\udd34guerriglia": 1, "urbana": 6, "duomo": 17, "bande": 5, "colpi": 10, "bottigliate": 3, "sediate": 1, "sotto": 43, "sguardo": 1, "terrorizzato": 2, "passanti": 3, "punizioni": 2, "esemplari": 1, "caso": 16, "figlio": 11, "buonismo": 11, "politica": 58, "aperti\u201d": 2, "clandestini": 151, "torto": 2, "perbene": 47, "lavorano": 6, "mandano": 9, "rispettano": 7, "tassa": 29, "inventeranno": 1, "stanotte": 3, "buonasera": 16, "collego": 5, "tappare": 2, "bocca": 6, "pensano": 24, "schiena": 7, "dritta": 4, "giornate": 5, "piene": 10, "rabbia": 6, "gente": 158, "baci": 3, "umana": 5, "piet\u00e0": 4, "risposta": 20, "odiare": 3, "posso": 11, "augurarvi": 1, "emozionato": 5, "rivedermi": 1, "ricompensa": 4, "banale": 4, "romagnoli": 16, "sento": 8, "dirvelo": 1, "sappiate": 1, "risparmier\u00f2": 1, "rancore": 3, "odia": 8, "sorride": 2, "sogna": 4, "volantini": 3, "titolo": 1, "impiccato\u201d": 1, "capovolta": 1, "distribuiti": 2, "bravi": 17, "ragazzi\u201d": 2, "violenta": 1, "unica": 66, "nemici": 4, "dimettetevi": 1, "chiedete": 1, "pensate": 25, "andasse": 2, "disturbare": 2, "manifestazioni": 6, "altrui": 4, "signori": 8, "odiano": 5, "vedermi": 2, "appeso": 1, "offrire": 4, "risponderemo": 1, "positiva": 1, "gratitudine": 1, "immensa": 2, "profondo": 1, "pacificamente": 4, "protestare": 4, "lancia": 3, "miliardo": 5, "miliardi": 42, "regalare": 9, "paga": 27, "spesa": 10, "carta": 11, "credito": 3, "metteremo": 3, "usa": 16, "anzich\u00e9": 13, "contanti": 3, "intero": 8, "unisca": 1, "sostegno": 31, "popoli": 13, "pellestrina": 1, "matera": 9, "altamura": 4, "perso": 30, "concrete": 5, "funzionamento": 1, "mose": 1, "contributo": 6, "straordinario": 7, "veloce": 3, "immediato": 3, "territorio": 14, "zaia": 15, "cittadini": 113, "commercianti": 16, "contatto": 3, "colpite": 5, "finire": 6, "risaputo": 1, "ignorano": 1, "deridono": 1, "vinci": 4, "emozionante": 7, "nasconde": 3, "palazzetto": 1, "strada": 36, "negate": 1, "uomini": 36, "tocca": 17, "seguiteci": 21, "ovazioni": 1, "applausi": 11, "governatori": 5, "massimiliano": 12, "fedriga": 13, "friuli": 11, "giulia": 16, "christian": 1, "solinas": 1, "sardegna": 19, "attilio": 2, "fontana": 2, "lombardia": 33, "omboni": 1, "imprenditore": 11, "settore": 19, "imballaggi": 2, "plastictax": 1, "andr\u00e0": 7, "punire": 4, "industria": 5, "riciclo": 1, "aprir\u00e0": 1, "materiali": 2, "provenienti": 2, "estremo": 1, "oriente": 1, "penalizzer\u00e0": 1, "eccellenza": 8, "professor": 8, "alessandro": 3, "amadori": 1, "intervenire": 10, "palco": 6, "emozionanti": 2, "poeta": 2, "davide": 6, "rondoni": 1, "spettacolo": 55, "fate": 55, "presenta": 4, "amico": 33, "partiamo": 3, "pochi": 30, "iniziamo": 2, "pieno": 12, "breve": 3, "comincia\ud83d\udd1d": 1, "rimanete": 9, "connessi": 1, "seguire": 7, "evento": 12, "appuntamento": 11, "pagine": 5, "instagram": 1, "youtube": 8, "\ud83d\udd34come": 1, "cos\u00ed": 8, "scemi": 7, "usiamo": 3, "social": 7, "pullman": 11, "arrivo": 12, "destinazione": 2, "\ud83d\udcaa\ud83c\udffb": 1, "viaggio": 18, "aperte": 13, "aspettiamo": 11, "aprire": 9, "\u2139": 4, "emiliaromagna": 15, "\u2709": 4, "portiamo": 4, "dietro": 10, "quinte": 7, "assicuro": 4, "grave": 7, "perdita": 2, "resistere": 4, "tizio": 5, "manca": 14, "andiamo": 25, "\ud83d\ude8c": 3, "trova": 14, "download": 3, "14nov": 3, "pdf": 3, "quota": 9, "collante": 1, "prossime": 2, "partire": 11, "lanceranno": 1, "abusivi": 20, "dato": 22, "rackete": 2, "macron": 3, "sgomberare": 7, "parigi": 16, "europei": 22, "difendono": 6, "propri": 7, "interessi": 12, "aumentano": 2, "europa": 209, "impegnata": 2, "grecia": 4, "ricollocati": 2, "ennesima": 13, "presa": 5, "raddoppiati": 2, "occhiata": 6, "numero": 14, "smontare": 5, "bugie": 10, "tassatori": 1, "abusivo": 14, "vietato": 4, "ingresso": 15, "democratici\u201d": 2, "fascisti\u201d": 2, "allestimento": 1, "altrohttps": 1, "offrirvi": 1, "cappuccino": 1, "sorpresa": 7, "dura": 8, "istante": 2, "ricordi": 2, "eterno\u201d": 1, "friedrich": 1, "schiller": 1, "adesioni": 2, "mettendo": 7, "incontro": 45, "parleremo": 3, "futuro": 115, "gratis": 21, "parma": 17, "tv": 21, "emittenti": 4, "locali": 12, "voci": 3, "autentiche": 1, "libere": 7, "territori": 3, "floris": 11, "annoiato": 2, "scriviamo": 2, "letterina": 1, "scrivereste": 1, "partecipato": 11, "consolato": 3, "israeliano": 1, "firenze": 41, "ambasciatore": 2, "dror": 1, "eydar": 1, "comunit\u00e0": 39, "ebraica": 1, "israele": 7, "baluardo": 2, "terra": 30, "martoriata": 1, "missili": 3, "lutti": 1, "fiorentina": 1, "presidio": 9, "progresso": 2, "relazione": 3, "commerciale": 4, "fondamentale": 5, "subisce": 2, "isolamento": 1, "generale": 5, "avere": 33, "permesso": 18, "soggiorno": 7, "motivi": 3, "umanitari": 3, "dimostrare": 5, "essersi": 4, "integrati": 4, "\u2705": 1, "corte": 4, "cassazione": 3, "riaprono": 3, "vogliono": 60, "magistris": 4, "povera": 4, "autore": 1, "fumetti": 1, "notevoli": 1, "idiozie": 3, "ricevere": 8, "proiettili": 4, "dediche": 1, "murarie": 1, "tipo": 4, "muori": 4, "propria": 23, "incolumit\u00e0": 4, "sapete": 12, "intimidire": 2, "sorrido": 2, "\ud83d\udd34roba": 1, "portato": 13, "scambiando": 3, "autobus": 14, "taxi": 2, "accontentato": 1, "escandescenze": 1, "distruggendo": 4, "parabrezza": 1, "badile": 1, "richiedente": 6, "asilo\u201d": 1, "mali": 1, "davvero": 19, "rispettoso": 2, "ospita": 13, "cancellazione": 5, "cattivone": 1, "cuore": 47, "zone": 6, "interventi": 6, "immediati": 2, "patrimoni": 1, "eredit\u00e0": 1, "nipoti": 3, "vanno": 42, "difesi": 3, "tutelati": 4, "costo": 9, "canale": 38, "riparte": 19, "taglia": 4, "prosegue": 8, "aiuta": 12, "famiglie": 35, "patrimonio": 4, "ignorare": 1, "provocati": 1, "utilizzi": 1, "bancomat": 4, "aggiornamenti": 4, "drammatica": 2, "situazione": 12, "seguite": 64, "compagnia": 21, "metri": 6, "acqua": 23, "tifo": 3, "sceglie": 10, "cretini": 1, "vivere": 31, "tranquilli": 17, "vinceremo": 5, "interesse": 9, "sbarca": 18, "trovato": 11, "tubercolosi": 1, "diffuse": 1, "organi": 1, "vedono": 6, "decenni\u201d": 1, "pazzesco": 47, "pericoli": 2, "drammatici": 1, "aumentare": 14, "riapre": 4, "minaccia": 7, "vadano": 10, "accendete": 2, "fatemi": 3, "esserci": 12, "riempiamo": 2, "info": 55, "soluzione": 31, "bonino": 4, "legalizzare": 1, "ideale": 2, "esseri": 7, "umani": 8, "oer": 1, "ridurre": 13, "rischiato": 3, "pur": 9, "dipendenti": 9, "costretti": 11, "scegliere": 10, "serio": 13, "tagliare": 7, "imposte": 3, "inventa": 1, "mandiamo": 20, "traditori": 4, "vergognarsi": 2, "chiedere": 19, "parenti": 6, "indegno": 2, "dirsi": 2, "futura": 1, "dicono": 39, "spocchia": 4, "romagna\u201d": 1, "diciamo": 8, "tutti\u201d": 1, "efficiente": 1, "merito": 9, "tessera": 9, "pensi": 7, "aria": 16, "esiste": 19, "sopravvive": 3, "fatica": 8, "sciocchezze": 1, "simpatico": 7, "sincero": 2, "intelligente": 6, "obiettivo": 16, "ossessionato": 1, "mah": 3, "riesco": 3, "bravo": 11, "premiare": 2, "defin\u00ec": 1, "israeliani": 2, "abominevoli": 1, "antisemitismo": 2, "ferma": 34, "perduto": 17, "strage": 7, "nassiriya": 1, "feriti": 11, "attentato": 2, "eroi": 5, "giorno": 76, "proteggere": 8, "interne": 1, "esterne": 3, "orogel": 2, "fabbriche": 2, "basilicata": 9, "valorizza": 1, "agricoltori": 18, "zucca": 8, "calore": 3, "metto": 5, "libereremo": 8, "mirta": 10, "zio": 1, "ridire": 1, "sanno": 7, "attaccarsi": 1, "zii\u201d": 1, "capiranno": 4, "semplificando": 1, "\ud83e\udd2cbibbiano": 1, "raffreddore": 1, "vergognatevi": 6, "andremo": 7, "fino": 71, "bibbiano": 2, "rubati": 5, "ripetere": 1, "insabbiare": 1, "parlando": 3, "raffreddore\u201d": 1, "emiliane": 1, "chiedono": 9, "conservare": 3, "poltrone": 15, "rinnega": 1, "battaglie": 10, "stessa": 10, "natura": 5, "accade": 2, "chiarezza": 14, "coerenza": 8, "pagano": 15, "soldi": 78, "insulta": 8, "terrorismo": 20, "islamico": 24, "abbassare": 8, "sedano": 1, "rapporto": 4, "antico\ud83d\ude09": 1, "dentifricio": 1, "coster\u00e0": 5, "mandiamoli": 3, "cesena": 3, "visitando": 1, "prodotti": 22, "surgelati": 1, "splendido": 18, "esempio": 15, "cooperativa": 4, "sana": 3, "reinveste": 1, "utili": 4, "lavorare": 37, "duemila": 1, "produce": 8, "eccellenze": 5, "tutelate": 1, "valorizzate": 1, "amica": 4, "imprenditori": 22, "farli": 3, "aiutarli": 3, "investire": 5, "qua": 9, "abbassando": 1, "riducendo": 1, "tolto": 3, "presenti": 13, "forl\u00ec": 7, "fiducioso": 3, "renziani": 10, "pagato": 13, "operatori": 2, "avicoli": 1, "forl\u00ed": 1, "forlivesi": 1, "successivo": 2, "pievesestina": 1, "scritte": 3, "muri": 3, "coraggio": 53, "moller\u00f2": 1, "bellaria": 4, "\ud83d\udd34grande": 1, "avanzata": 1, "santiago": 2, "abascal": 3, "vox": 4, "espa\u00f1a": 2, "spagnole": 2, "titoli": 5, "tigg\u00ec": 2, "giornali": 15, "estrema": 1, "razzisti": 19, "fascisti": 7, "macch\u00e9": 1, "razzismo": 32, "fascismo": 4, "spagna": 6, "vogliamo": 29, "\ud83c\uddee\ud83c\uddf9\ud83c\uddea\ud83c\uddf8": 2, "massimo": 16, "economia": 29, "rischio": 28, "\ud83d\ude31": 8, "\ud83d\ude18": 6, "tassano": 3, "condomini": 1, "\ud83d\ude33": 1, "becchi": 1, "santarcangelo": 4, "vigliaccamente": 1, "iraq": 1, "soldati": 3, "rimane": 9, "dovete": 2, "arrivate": 3, "presto": 29, "chiusi": 8, "palazzi": 7, "modulo": 2, "adesione": 4, "campagna": 10, "elettorale": 35, "\ud83d\udce3legaonline": 1, "usi": 3, "costumi\u201d": 1, "ferrara": 14, "culturale": 4, "identit\u00e0": 11, "\ufffcroma": 1, "caos": 4, "succedono": 2, "colori": 1, "dormono": 7, "mattinata": 6, "schedare": 2, "servono": 17, "certezza": 24, "killer": 1, "spietati": 1, "ucciso": 18, "divisa": 9, "ilmessaggero": 2, "accoltella": 3, "ergastolano": 1, "cianci": 1, "ultime": 7, "notizie": 6, "html": 12, "appetito": 5, "presento": 5, "cause": 3, "perse": 1, "rialzer\u00e0": 2, "argomenti": 4, "bandiera": 3, "rossa": 12, "consueto": 1, "merda": 8, "tristiiii": 1, "trent": 3, "caduto": 1, "muro": 5, "berlino": 12, "cadr\u00e0": 2, "cioccolato": 2, "arrivato": 13, "campane": 1, "\ud83d\udd34secondo": 1, "scrittore": 2, "pericoloso": 6, "maestro\u201d": 2, "leader": 3, "spagnolo": 2, "cercare": 6, "espa\u00f1a\ud83d\ude0a": 1, "reggio": 20, "dettagli": 3, "sezione": 7, "eventi": 4, "litiga": 2, "costruiamo": 3, "liberare": 11, "eicma2019": 1, "ipocrisia": 12, "sopportano": 1, "qual": 5, "segreto": 1, "disprezzo": 2, "rispondere": 12, "determinazione": 1, "buone": 7, "gnocco": 1, "fritto": 1, "tigelle": 1, "erbazzone": 1, "lambrusco": 1, "emilia\ud83d\ude0a": 1, "polesine": 8, "parmense": 5, "november": 1, "porc": 1, "luogo": 9, "dieta": 2, "bassa": 3, "culatello": 1, "zibello": 1, "ottima": 6, "video": 90, "assai": 1, "prezioso": 2, "migrante\u201d": 1, "crescita": 10, "societ\u00e0": 9, "gruppo": 24, "alpini": 3, "terre": 2, "dedicata": 4, "maiale": 1, "sapori": 3, "straordinari": 3, "emiliana": 5, "entusiasmo": 13, "tradizioni": 17, "comprare": 7, "mangiare": 13, "atto": 3, "salumi": 1, "noi\ud83d\ude0a": 1, "iniziativa": 6, "vergogner\u00e0": 1, "eicma": 2, "invidiata": 1, "mezzo": 52, "appassionati": 1, "ruote": 2, "suggerimenti": 2, "ciclo": 3, "motociclo": 2, "regaler\u00f2": 1, "cioccolatini": 2, "addolcire": 1, "giornate\ud83d\ude09": 1, "carpigiani": 1, "emergenza": 16, "\ud83e\udd26\u200d\u2642": 1, "emiliano": 2, "pr": 2, "centro": 53, "prontissimi": 1, "cadeva": 1, "comunismo": 1, "dittatura": 2, "fred": 1, "bongusto": 1, "simbolo": 8, "sognava": 1, "cresceva": 1, "mancherai": 2, "\u26a0\ufe0f": 1, "manette": 10, "prende": 12, "riordino": 1, "carriere": 1, "previsti": 1, "finanzia": 5, "cifra": 3, "fondi": 7, "ministeri": 3, "tolgono": 1, "ridanno": 1, "truffa": 7, "clamorosa": 1, "umiliazione": 4, "vincere": 24, "poltronaro": 2, "raccoglie": 3, "fischi": 4, "taranto": 6, "torno": 4, "infine": 3, "igea": 1, "marina": 7, "dirmi": 1, "rifila": 1, "sonora": 3, "lezione": 6, "viceministro": 2, "faccenda": 1, "ascoltare": 29, "latte": 8, "calci": 12, "ultimo": 14, "angeli": 3, "matteo": 16, "antonino": 2, "commosso": 9, "corpo": 2, "piange": 3, "treno": 10, "senatore": 7, "tony": 1, "iwobi": 1, "ridicoli": 3, "san": 54, "martino": 4, "vietata": 1, "aggiorno": 7, "progetto": 20, "toscana": 14, "prossima": 17, "primavera": 4, "fornero": 99, "attacca": 5, "lavorando": 16, "bene\ud83d\ude0a": 1, "artista\u201d": 1, "spera": 6, "venga": 7, "grosse": 1, "secchiate": 2, "merda\u201d": 4, "parliamo": 5, "esercito": 5, "macchia": 1, "auguriamo": 2, "\ud83d\ude0a\ud83d\udc34": 1, "eroe": 3, "persona": 22, "opportunit\u00e0": 3, "commovente": 3, "testimonianza": 8, "scomparsi": 2, "ingiustamente": 3, "alessandria": 8, "eterna": 1, "riconoscenza": 3, "mette": 17, "gioco": 5, "preghiera": 18, "augurio": 3, "fatta": 11, "drammatico": 1, "dedicare": 5, "intervento": 76, "vengo": 2, "criticato": 1, "attaccato": 1, "normale": 44, "stata": 23, "punita": 1, "consapevole": 1, "tecnica": 1, "migliorabile": 1, "dovevo": 1, "provarci": 1, "\u263a": 2, "fieracavalli": 5, "verona": 35, "svolge": 1, "prossimo": 16, "daremo": 3, "sangue": 18, "salti": 1, "posto": 53, "operai": 18, "perfino": 3, "adozioni": 9, "cassa": 4, "pelle": 10, "mamma": 28, "scelta": 10, "incivile": 1, "vigliacca": 2, "batter\u00e0": 1, "evitarlo": 3, "\ud83d\udc0e": 1, "imperdibile": 1, "equitazione": 1, "so": 20, "inevitabile": 1, "licenziare": 3, "tassato": 1, "massacra": 9, "toglie": 6, "rimaste": 1, "piedi": 19, "mesi": 45, "fatte": 4, "mandarli": 2, "italiani\u201d": 5, "popolare": 15, "lampedusa": 10, "dirlo": 3, "balconi": 1, "ostia": 7, "cadono": 3, "pezzi": 4, "cornicione": 1, "chiunque": 6, "mamme": 13, "virg\u00ec": 1, "rivedete": 7, "senz": 1, "anima": 5, "torna": 24, "centri": 60, "chiuso": 8, "business": 18, "manderanno": 1, "scegliendo": 2, "concetto": 2, "montecitorio": 5, "coldiretti": 6, "difendere": 60, "raccolti": 4, "savoia": 1, "hotel": 30, "via": 114, "pilastro": 1, "esaurimento": 1, "posti": 24, "richieste": 5, "tantissime": 3, "vuoi": 17, "vai": 12, "aspettato": 1, "sbarcare": 3, "ong\u201d": 1, "pesi": 1, "misure": 3, "giornalista": 24, "certo": 19, "evidente": 3, "carica": 5, "quotidiana": 3, "\ud83d\ude0a\ud83c\uddee\ud83c\uddf9": 1, "giovannino": 1, "cucciolo": 1, "te": 35, "brutto": 10, "cattivo": 7, "fascista": 7, "troglodita": 1, "continuiamo": 3, "coscienza": 6, "sicuri": 4, "andare": 39, "fiori": 4, "cannoni\ud83d\ude09": 1, "germania": 11, "rafforza": 1, "frontiere": 17, "francia": 19, "annuncia": 2, "stretta": 5, "complimenti": 9, "moltiplicato": 1, "arrivi": 7, "umiliare": 2, "ministro\u201d": 2, "insultare": 7, "occupati": 2, "penitenziaria": 5, "condizioni": 12, "drammatiche": 1, "dimettiti": 3, "investitore": 1, "sistemare": 1, "evidentemente": 5, "scappa": 14, "scienziato": 2, "geni": 6, "ascoltato": 3, "problema": 27, "proseguire": 3, "stabilimenti": 2, "siderurgici": 1, "assolutamente": 2, "impensabile": 3, "perdere": 14, "cruciale": 1, "amen\ud83d\ude0a": 1, "turisti": 6, "magistrale": 2, "vittorio": 19, "feltri": 5, "stupiscono": 3, "vota": 46, "\ud83d\udc4f": 1, "gentile": 2, "desio": 1, "brianza": 7, "disabili": 16, "avversari": 1, "battere": 1, "vede": 3, "buoni": 9, "\ud83d\udd34incredibile": 1, "servizio": 20, "fatelo": 6, "sacrifici": 5, "romani": 14, "buttati": 3, "vento": 6, "mischione": 1, "torni": 11, "dimostrato": 2, "merita": 18, "vedete": 3, "calcinacci": 1, "popolari": 13, "porto": 26, "mostrer\u00f2": 1, "stamattina": 26, "stimolo": 1, "ricordarsi": 2, "arrabbia": 1, "capace": 2, "afflitta": 1, "occupazioni": 7, "abusive": 6, "mancanza": 3, "servizi": 7, "abbandono": 1, "\u2b55\ufe0f": 1, "targato": 3, "costeranno": 1, "troppe": 3, "occupate": 3, "abusivamente": 7, "17mila": 1, "affari": 5, "folli": 12, "giocando": 1, "rivolto": 2, "calabrese": 2, "dorme": 8, "panchina": 2, "ugl": 2, "interessando": 1, "possano": 6, "invio": 2, "tabaccaio": 4, "reagisce": 2, "rapina": 7, "uccide": 6, "ladri": 13, "legittima": 41, "penso": 30, "enorme": 6, "tranquillit\u00e0": 6, "disastri": 13, "branco": 3, "trogloditi": 1, "evasori": 3, "intellettuali\u201d": 2, "disprezzano": 1, "perdono": 6, "elezioni\ud83d\ude09": 1, "stamane": 4, "radio": 44, "crc": 4, "\u274c": 1, "igienica": 1, "\u2757\ufe0fsciopero": 1, "benzinai": 3, "riuscito": 6, "arrabbiare": 2, "\u26a0\ufe0fvuoi": 1, "darci": 3, "scrivi": 6, "chiama": 12, "garantita": 1, "assassini": 8, "provocato": 1, "incendio": 1, "morte": 22, "\ud83d\udd34splendida": 1, "leghisti": 35, "liberandosi": 1, "inutili": 2, "litigi": 4, "amministratori": 8, "primo": 40, "puntiamo": 4, "iscritti": 5, "pi\u00fa": 7, "potrete": 3, "rivedere": 6, "\ud83d\udd34ma": 1, "bolzano": 20, "amministrata": 1, "vendono": 3, "cocaina": 5, "cielo": 10, "dicendo": 5, "libero\u201d": 1, "frattempo": 6, "disumano": 3, "fascista\u201d": 1, "anno": 73, "bloccato": 9, "investimenti": 3, "licenziamenti": 2, "andranno": 4, "frasi": 1, "osho": 1, "compagno": 4, "satana": 1, "disperazione": 6, "auto": 20, "aziendali": 1, "negozi": 11, "colleghi": 4, "cima": 2, "pensieri": 1, "contribuito": 2, "meravigliosa": 4, "meritava": 1, "stasera": 58, "tratto": 3, "pomodorini": 1, "siciliani": 3, "rapanelli": 1, "lazio": 2, "olio": 6, "oliva": 1, "umbro": 2, "gettando": 2, "angoscia": 1, "vicenda": 6, "riferirebbe": 1, "promesso": 12, "riapertura": 2, "chiusura": 7, "acciaierie": 2, "regali": 3, "qualcun": 1, "\u203c": 2, "grazie\u201d": 2, "diverse": 7, "annuncio": 1, "impoveriscono": 1, "possono": 30, "commentare": 6, "ennesimo": 2, "proprietari": 3, "industriale": 2, "dimissioni": 2, "urgentemente": 1, "riferire": 1, "parler\u00f2": 1, "sala": 35, "stampa": 22, "collegati": 4, "spingete": 1, "\ud83d\ude03\ud83d\ude03\ud83d\ude03": 1, "grillino": 5, "bonafede": 1, "cerchiamo": 2, "professa": 1, "cattolico": 1, "monsignor": 5, "mogavero": 1, "caspita": 2, "conosce": 2, "giudicarvi": 1, "tale": 8, "fede": 4, "segnatevi": 1, "data": 5, "\ud835\uddda\ud835\uddf6\ud835\uddfc\ud835\ude03\ud835\uddf2\ud835\uddf1\ud835\uddf6\u0300": 1, "\ud835\udde1\ud835\udde2\ud835\udde9\ud835\uddd8\ud835\udde0\ud835\uddd5\ud835\udde5\ud835\uddd8": 1, "\ud835\udde3\ud835\uddee\ud835\uddf9\ud835\uddee\ud835\uddf1\ud835\uddfc\ud835\ude07\ud835\ude07\ud835\uddee": 1, "\ud835\uddf1\ud835\uddf6": 1, "\ud835\uddd5\ud835\uddfc\ud835\uddf9\ud835\uddfc\ud835\uddf4\ud835\uddfb\ud835\uddee": 1, "impossibile": 6, "mancare": 4, "dovremo": 3, "\ud83d\udce9\ud835\ude1d\ud835\ude36\ud835\ude30\ud835\ude2a": 1, "\ud835\ude25\ud835\ude22\ud835\ude33\ud835\ude24\ud835\ude2a": 1, "\ud835\ude36\ud835\ude2f\ud835\ude22": 1, "\ud835\ude2e\ud835\ude22\ud835\ude2f\ud835\ude30": 1, "\ud835\ude2a\ud835\ude2f": 1, "\ud835\ude0c\ud835\ude2e\ud835\ude2a\ud835\ude2d\ud835\ude2a\ud835\ude22": 1, "\ud835\ude19\ud835\ude30\ud835\ude2e\ud835\ude22\ud835\ude28\ud835\ude2f\ud835\ude22": 1, "\ud835\ude1a\ud835\ude24\ud835\ude33\ud835\ude2a\ud835\ude37\ud835\ude2a": 1, "\ud835\ude22": 1, "\ud835\ude26\ud835\ude2e\ud835\ude2a\ud835\ude2d\ud835\ude2a\ud835\ude22\ud835\ude33\ud835\ude30\ud835\ude2e\ud835\ude22\ud835\ude28\ud835\ude2f\ud835\ude22": 1, "\ud835\ude2d\ud835\ude26\ud835\ude28\ud835\ude22\ud835\ude30\ud835\ude2f\ud835\ude2d\ud835\ude2a\ud835\ude2f\ud835\ude26": 1, "\ud835\ude2a\ud835\ude35": 1, "trasporti": 2, "colpadisalvini": 1, "difende": 28, "vigliacchi": 4, "impegno": 23, "inizio": 13, "regaliamo": 1, "inventi": 1, "neve\ud83d\ude02": 1, "poche": 10, "sbarcando": 2, "istituita": 1, "commissione": 12, "rileggere": 1, "orwell": 1, "smaschera": 4, "dici": 2, "accusano": 1, "nazismo": 1, "bavaglio": 1, "sapere": 12, "condannano": 1, "giustamente": 2, "idiozia": 4, "opinione": 6, "riguardo": 3, "esistenza": 1, "guarda": 31, "molti": 23, "spendono": 4, "respiriamo": 1, "chiacchiere": 17, "kompagno": 3, "fastidio": 6, "mangi": 3, "pane": 5, "salame": 3, "credere": 6, "ziano": 3, "piacentino": 4, "\ud83c\udf83": 1, "riportando": 2, "pozzallo": 4, "arrivata": 5, "ocean": 2, "viking": 2, "passeggeri": 4, "mediterraneo": 12, "pronte": 6, "rotta": 3, "viminale": 15, "scatenano": 1, "ricomincia": 4, "pacchia": 11, "scorsa": 8, "scendono": 4, "incredibile": 35, "crollati": 1, "fortuna": 20, "linea": 10, "seria": 10, "rigorosa": 1, "tornata": 2, "rispettata": 2, "invitate": 1, "berlinguer": 4, "commentate": 16, "condividete": 29, "mercato": 46, "torpignattara": 1, "ridotta": 2, "sporca": 1, "caotica": 1, "insicura": 2, "rinascere": 3, "firme": 25, "raccolte": 6, "virginia": 1, "mestiere": 7, "rapporti": 4, "servi": 8, "barattano": 1, "zero": 33, "virgola": 4, "elasticit\u00e0": 1, "cambio": 3, "esterrefatto": 1, "arroganza": 5, "trattano": 2, "accordo": 47, "nulla": 27, "potranno": 12, "risultati": 12, "dimostrano": 2, "attesa": 16, "straniere": 7, "cariche": 1, "diranno": 2, "perde": 5, "voti": 21, "fiducia": 23, "bologna\ud83d\ude09": 1, "vinto": 11, "quindi": 12, "cambia": 14, "radio24": 2, "soddisfazione": 3, "stravince": 1, "batte": 4, "palazzo": 31, "arriver\u00e0": 9, "onest\u00e0": 6, "pecora": 2, "leggerezza": 2, "guasta": 1, "protestato": 3, "conduttori": 1, "immorale": 1, "invitarmi": 1, "soliti": 16, "tolleranti": 2, "bacioni": 3, "lungo": 6, "stupendo": 6, "croce": 5, "domenicavotolega": 69, "castello": 7, "aprite": 2, "rubrica": 1, "chiamate": 7, "inviate": 1, "messaggi": 10, "giustino": 1, "vergognoso": 5, "diffondiamo": 4, "devono": 28, "finti": 17, "sicuri\u201d": 1, "rimanere": 11, "fingono": 1, "gay": 8, "mangioni": 2, "fregano": 7, "farne": 3, "guerre": 9, "persecuzioni": 1, "triplica": 1, "estende": 1, "riprendere": 4, "cominciamo": 3, "fontivegge": 1, "quartiere": 24, "ostaggio": 8, "tolleranza": 10, "vende": 5, "farlo": 17, "chiudendo": 1, "arrivano": 16, "mese": 39, "radio1": 2, "valfabbrica": 1, "mancano": 4, "bellissima": 24, "trevi": 1, "soffia": 1, "rocca": 2, "cencia": 2, "provando": 2, "stabilimento": 4, "trasporto": 3, "smaltimento": 1, "potuto": 5, "volere": 8, "potere\u201d": 1, "ultimi": 18, "riceve": 4, "consenso": 4, "estremisti": 3, "sbaglio": 19, "\ud83d\ude42": 5, "epiro": 1, "\ud83d\udd34scene": 1, "ordinaria": 2, "vasto": 2, "apre": 4, "contevergogna": 2, "sapranno": 1, "premiarvi\u201d": 1, "myrta": 2, "merlino": 2, "decisivo": 1, "spedendo": 1, "mandando": 2, "segnale": 4, "considera": 1, "determinante": 1, "rtl": 18, "toccher\u00e0": 1, "galantuomo": 1, "vince": 30, "triplicare": 1, "proporre": 3, "affitti": 3, "bibite": 4, "zuccherate": 2, "diesel": 2, "educazione": 5, "civica": 6, "scuole": 27, "umbri": 4, "internazionale": 16, "giovanni": 20, "provare": 2, "ministero": 21, "regalarmi": 1, "orgoglioitaliano": 1, "biscotti": 2, "benzina": 10, "partite": 8, "iva": 17, "scemo": 2, "sole": 14, "pacifica": 6, "determinata\ud83d\ude0a": 1, "orvieto": 4, "nuove": 14, "seconde": 1, "tentativo": 4, "blocco": 16, "nascosti": 1, "ribadito": 7, "bastano": 10, "appelli": 2, "interviene": 4, "cedere": 2, "ricatti": 5, "erdogan": 2, "eliminata": 1, "qualsiasi": 8, "ipotesi": 1, "turchia": 18, "europea": 42, "montecastrilli": 1, "borghi": 11, "paesaggi": 1, "foligno": 2, "27ottobrevotolega": 15, "giano": 1, "proseguono": 1, "tappe": 5, "smettetela": 1, "povero": 7, "pazzo": 1, "violento": 1, "esemplare": 4, "ri": 3, "spalancato": 1, "ottenuto": 1, "definiscono": 1, "buoni\u201d": 1, "razzista": 21, "responsabilit\u00e0": 9, "aumento": 6, "maggiori": 2, "indietro": 15, "dramma": 1, "riguardate": 8, "ferentillo": 1, "ottobre": 24, "carcere": 17, "sabbione": 1, "narni": 1, "aperta": 5, "sincera": 1, "eccola": 6, "provoca": 2, "triplicati": 1, "mafiosi": 6, "fuga": 5, "lavora": 18, "passano": 2, "soffre": 3, "formule": 1, "simili": 5, "meditata": 1, "percorso": 5, "integrazione": 35, "suggerisco": 2, "vere": 7, "campidoglio": 1, "abbracceremo": 1, "sicuramente": 9, "marziani": 1, "sfortuna": 2, "agenzie": 1, "comunali": 4, "assessori": 2, "dirigenti": 4, "funzionari": 1, "cambiato": 4, "stranieri": 25, "rendano": 1, "ahim\u00e8": 2, "vivo": 3, "anch": 1, "sbagliato": 5, "raccoglieremo": 1, "100mila": 5, "bastia": 1, "umbra": 2, "stra": 4, "merendine": 4, "chinotto": 1, "formaggi": 4, "prosciutti": 2, "tassate": 2, "pagando": 3, "errori": 1, "bruxelles": 72, "cva": 1, "ponte": 16, "capanne": 1, "monti": 22, "barche": 2, "ricchi": 4, "poveri": 20, "andati": 5, "estero": 22, "artigiani": 14, "massacrare": 2, "semplicemente": 6, "offendo": 1, "spiaggia": 5, "mutande": 1, "lilli": 1, "gruber": 10, "diverto": 1, "visione": 3, "essermela": 2, "cavata": 2, "dite": 53, "sente": 2, "rappresentato": 1, "ambiente": 5, "colpiranno": 1, "pescatori": 7, "vecchi": 4, "contadino": 1, "trattore": 1, "gode": 2, "magari": 41, "riesce": 13, "comprarsene": 1, "parlato": 30, "manicomio": 3, "litigando": 1, "crocifisso": 3, "venduti": 3, "attigliano": 1, "stroncone": 1, "ultima": 14, "tappa": 19, "norcia": 3, "sofferto": 1, "arrende": 8, "segui": 4, "cascia": 2, "santuario": 1, "straordinaria": 8, "27ottrobrevotolega": 1, "riccione": 4, "doveva": 6, "improvvisata": 1, "amici\u201d": 1, "diventato": 3, "comizio": 11, "sedia": 2, "villaggio": 7, "fianco": 12, "produttori": 2, "consumare": 2, "costi": 10, "viadana": 1, "oglio": 2, "mantova": 5, "ente": 2, "sordi": 2, "lasceremo": 3, "svela": 3, "dati": 8, "numeri": 20, "incoerenze": 1, "giornaloni": 4, "volto": 6, "perdoneranno": 1, "aumentati": 1, "gazzosa": 1, "revisione": 1, "flat": 25, "tax": 26, "fermeremo": 2, "fanno\ud83d\ude09": 1, "denunciano": 4, "arrestare": 1, "alleano": 1, "pd\ud83e\udd26\u200d\u2642": 1, "leggere": 3, "grilline": 1, "credo": 34, "prenderanno": 1, "mazzata": 1, "pranzando": 1, "castiglione": 1, "lago": 17, "feliciano": 1, "trasimeno": 2, "parole": 61, "passignano": 1, "tassare": 8, "prelievi": 1, "voli": 2, "gasolio": 3, "penalizzare": 1, "giudizio": 4, "nottambula": 1, "settembre": 6, "partiranno": 1, "rischieranno": 1, "morire": 11, "rotazione": 1, "volontaria\u201d": 1, "ritornare": 3, "ascoltate": 61, "favore": 7, "riaperti": 2, "bigiate": 1, "massa": 11, "autorizzate": 1, "prelevati": 1, "salone": 6, "nautico": 1, "genova": 41, "contentissimo": 1, "andato": 16, "barbara": 9, "urso": 7, "boom": 1, "ascolti": 5, "segue": 2, "divertito": 4, "abbastanza": 21, "frizzante": 1, "oretta": 5, "inaspettate": 1, "sorprese": 2, "fortunato": 3, "chiuduno": 4, "bergamo": 26, "ricordando": 4, "pontida": 25, "\u2764": 2, "integrale": 2, "atreju": 1, "ospitalit\u00e0": 5, "gazebo": 38, "incontri": 10, "piazze": 14, "\ud83d\udd34trova": 1, "firma": 17, "salvininonmollare": 1, "collasso": 2, "tornati": 2, "vigore": 2, "prevedono": 2, "infrastrutture": 5, "firmino": 1, "divieto": 1, "accesso": 2, "acque": 3, "nazionali": 6, "optare": 1, "pessimo": 5, "ricorderanno": 1, "presenter\u00e0": 1, "urne": 1, "passi": 7, "gualdo": 2, "tadino": 2, "balle": 5, "tradimenti": 1, "pugnalate": 1, "aggrappato": 1, "potere": 14, "chiamato": 2, "personaggio": 4, "musica": 17, "rispondo": 3, "pazzi": 2, "ostaggi": 2, "signori\u201d": 1, "incollati": 1, "pulita": 7, "sconfitto": 1, "giochi": 9, "costruire": 8, "fondato": 5, "onesta": 2, "sono\ud83d\ude0a": 1, "valgono": 3, "scatenato": 1, "alleanza": 2, "regioni": 8, "trucco": 1, "possa": 8, "braccia": 1, "emozione": 9, "\ud83d\udd1d\ud83c\uddee\ud83c\uddf9": 1, "assemblea": 11, "italiavera": 1, "vincer\u00e0": 1, "giochini": 4, "inciuci": 3, "paolo": 18, "debbio": 16, "record": 7, "ricevuto": 11, "mollare": 8, "determinata": 1, "aspetta": 5, "telefonatine": 1, "torner\u00e0": 5, "guidata": 1, "occhio": 8, "guarito": 1, "riguarda": 7, "lavorando\ud83d\ude09": 1, "bancarelle": 2, "spello": 1, "lealt\u00e0": 1, "mille": 11, "pali": 1, "luce": 6, "motivazione": 1, "schermo": 1, "tarda": 2, "fermarci": 4, "sbagliano": 1, "grosso": 5, "spediti": 3, "rassegna": 2, "benedetto": 3, "comandano": 2, "sprangare": 1, "portone": 1, "vie": 4, "laterali": 1, "invidio": 5, "pensando": 3, "spartirsi": 2, "telegiornali": 7, "gatti": 5, "finch\u00e9": 14, "lasciano": 3, "\ud83d\udd34segui": 1, "deputati": 9, "riccardo": 1, "molinari": 1, "primagliitaliani\ud83c\uddee\ud83c\uddf9": 2, "condividi": 40, "batteranno": 2, "poltronari": 4, "inciucio": 4, "rinchiusi": 2, "salato": 2, "verranno": 5, "cacciati": 3, "interverr\u00f2": 2, "vignola": 1, "improvvisato": 2, "domodossola": 1, "vco": 1, "fidatevi": 1, "combatte": 12, "gemini": 2, "denuncia": 4, "leu": 1, "impugnato": 1, "prime": 9, "favorendo": 1, "fermiamo": 12, "livello": 5, "locale": 9, "regionale": 6, "treni": 7, "nome": 20, "competenze": 2, "limitiamo": 1, "prepariamo": 4, "rivoluzione": 30, "casta": 2, "ammucchiata": 2, "eccetto": 4, "sfuggire": 1, "lontano": 6, "infinito": 2, "alzano": 3, "lombardo": 2, "intervenute": 1, "rappresenta": 3, "conservazione": 1, "scende": 1, "patti": 1, "boschi": 13, "permetto": 2, "merkel": 23, "batosta": 1, "prova": 8, "imporre": 4, "candidamente": 1, "conoscerli": 1, "rivendicando": 1, "votato": 12, "smascherati": 1, "cacceranno": 1, "decidono": 2, "spettacolare": 12, "bergamaschi": 6, "pinzolo": 7, "trento": 17, "conselve": 3, "poltrone\u201d": 1, "determinato": 3, "governicchio": 1, "unicamente": 1, "quirinale": 11, "responsabili\u201d": 1, "torner\u00e1": 1, "bordo": 8, "ovviamente": 18, "open": 4, "arms": 3, "seconda": 12, "caldo": 14, "telefono\ud83d\ude0a": 1, "volo": 4, "passato": 8, "firmato": 11, "coincidenze": 1, "amor": 1, "dio": 6, "strano": 6, "ferragosto": 4, "riaprire": 3, "rubinetti": 1, "altroimmigrazione": 1, "clandestina": 31, "farmi": 5, "dispiacere": 6, "sbaglia": 8, "dedicato": 18, "castel": 2, "volturno": 1, "caserta": 5, "comitato": 11, "spezia": 3, "recco": 6, "accadendo": 2, "arrendo": 9, "taglio": 5, "esitazioni": 1, "votosubito": 45, "simpaticissimi": 1, "rumori": 1, "interruzioni": 2, "urlanti": 2, "sentirete": 1, "interessanti": 2, "renzi\ud83d\ude0a": 1, "decidere": 8, "siracusa": 3, "durante": 8, "saltava": 1, "sabotatori": 1, "catania": 21, "soverato": 1, "stabile": 3, "solamente": 3, "policoro": 1, "perla": 2, "lucana": 1, "mar": 2, "jonio": 1, "polignano": 1, "\ud83d\udcaa\ud83c\uddee\ud83c\uddf9": 1, "peschici": 1, "foggia": 6, "termoli": 2, "campobasso": 5, "pescara": 7, "sabaudia": 1, "latina": 8, "arcore": 5, "monza": 10, "termine": 4, "parti": 10, "sociali": 45, "pausa": 3, "fermo": 6, "nerviano": 3, "colico": 2, "lecco": 3, "cervia": 2, "paraggi": 1, "skytg24": 5, "marittima": 3, "presentazione": 10, "colpire": 2, "coltello": 4, "cellulare": 2, "vengano": 5, "beccati": 3, "mandati": 1, "lavori": 16, "forzati": 5, "comodo": 2, "uccidere": 9, "comodi": 2, "lettino": 1, "golasecca": 1, "varese": 5, "minori": 4, "fermi": 6, "dimostrando": 1, "approccio": 1, "rigoroso": 1, "evita": 1, "fughe": 2, "contiamo": 2, "continuare": 12, "azzerare": 1, "sparizioni": 1, "commissario": 1, "scomparse": 1, "alessandra": 1, "locatelli": 1, "rispondiamo": 7, "sbloccati": 1, "opere": 2, "pubbliche": 2, "strade": 11, "ospedali": 7, "ferrovie": 1, "cantieri": 2, "parlano": 14, "prefettura": 13, "protocollo": 2, "attuazione": 1, "adro": 10, "intense": 2, "insultatissimo": 1, "ridotto": 6, "salvato": 8, "vite": 8, "risparmiato": 1, "assunto": 2, "rispettato": 1, "helsinki": 1, "gattile": 2, "cimitero": 6, "monumentale": 2, "verano": 2, "\ud83d\udc08": 1, "\u2139\ufe0f": 1, "sosanimali": 1, "seawatch": 2, "segnalazioni": 3, "scafista": 4, "apertamente": 1, "ripetiamo": 3, "alimenta": 2, "filmato": 2, "dimostra": 3, "dormire": 5, "imbarcazioni": 1, "fuorilegge": 3, "ascolto": 12, "confronto": 21, "assieme": 2, "sigle": 1, "sindacali": 1, "associazioni": 5, "categoria": 1, "sconto": 5, "occupano": 8, "incendiano": 1, "pericolante": 1, "barricate": 2, "legalit\u00e0": 12, "recuperando": 1, "assenza": 1, "sassuolo": 3, "ringraziando": 2, "settant": 2, "sintesi": 8, "intensa": 12, "recuperati": 1, "molla\ud83d\ude0a": 1, "fatti": 39, "codice": 2, "rosso": 9, "entro": 11, "luglio": 9, "salvando": 1, "vittime": 27, "dovranno": 4, "giudice": 11, "castrazione": 7, "chimica": 7, "pedofili": 3, "stupratori": 10, "passo": 4, "civilt\u00e0": 15, "mineo": 8, "caltagirone": 1, "inaugurato": 2, "commissariato": 3, "accompagnati": 2, "fortunatamente": 2, "netta": 1, "riduzione": 7, "tace": 7, "piega": 1, "muore": 11, "cammina": 2, "sola": 9, "falcone": 3, "cibo": 24, "coperte": 2, "consegnati": 1, "litri": 2, "potabile": 1, "barca": 3, "altrettanti": 2, "successivamente": 1, "rifiutati": 2, "infrangere": 2, "sciacalli": 1, "rimarranno": 1, "impuniti": 2, "arresti": 5, "sequestro": 7, "giudici": 6, "stavolta": 7, "decida": 1, "impegnativa": 4, "nettuno": 1, "taser": 4, "intervenuto": 3, "microfoni": 2, "cant\u00f9": 2, "fenomeni": 2, "zitti": 3, "scandalo": 1, "affidi": 1, "illeciti": 1, "emilia\u201d": 1, "pirata": 1, "maximulta": 1, "allontanamento": 1, "complici\u201d": 1, "continuo": 5, "continuer\u00f2": 5, "garantire": 13, "concluderebbe": 1, "arresto": 8, "espulsione": 18, "equipaggio": 4, "trasferimento": 1, "energie": 3, "lotta": 11, "mafia": 9, "private": 1, "fregata": 2, "\u202c": 4, "\u202ai": 1, "membri": 3, "arrestati": 11, "\u202aho": 1, "scritto": 6, "collega": 6, "olandese": 1, "risposto": 9, "figura": 3, "fesso": 2, "lezioni": 8, "\u202aecco": 1, "demolizione": 1, "morandi": 5, "treviglio": 3, "sbruffoncella": 1, "delinquente": 8, "galera\u201d": 1, "\ud83d\udc4d": 1, "comitati": 2, "puglia": 17, "gestita": 3, "qualunque": 4, "illegalit\u00e0": 9, "assente": 3, "aereo": 11, "corridoi": 1, "3mila": 1, "dollari": 1, "arrivare": 21, "alimentando": 1, "traffico": 10, "migliori": 15, "correre": 7, "shock": 1, "festivallavoro": 1, "intervenendo": 2, "perfezionamento": 2, "organizzativo": 1, "cooperativo": 1, "dobbiamo": 32, "fieri": 3, "voi\ud83d\ude0a": 1, "bianca": 5, "vicepresidente": 3, "americano": 5, "mike": 1, "pence": 1, "\ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8": 3, "villa": 15, "residenza": 7, "arlington": 1, "washington": 3, "deposizione": 1, "corona": 4, "tomba": 2, "milite": 1, "ignoto": 1, "salviniusa\ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8": 1, "lincoln": 5, "memorial": 1, "tiri": 2, "schiaffi": 2, "muovendo": 2, "allora": 16, "venire": 9, "dubbio": 3, "decreto": 21, "approvato": 8, "chigi": 6, "entusiasmante": 2, "vale": 19, "comuni": 22, "eccomi": 9, "biella": 4, "paderno": 2, "dugnano": 2, "venerd\u00ec": 17, "romano": 6, "prato": 9, "strette": 2, "consigli": 7, "obiettivamente": 1, "partecipi": 1, "convegni": 3, "grido": 5, "giudichi": 1, "operato": 1, "temi": 4, "credete": 3, "ascoli": 4, "piceno": 1, "celebrazione": 1, "fondazione": 2, "\ud83d\udcaa": 5, "argenta": 1, "mirandola": 2, "ballottaggi": 7, "\ud83d\udd25\ud83d\udd25\ud83d\udd25": 1, "accelerare": 2, "s\u00ed": 3, "castelfranco": 2, "domenicavotolega\ud83c\uddee\ud83c\uddf9": 2, "mantovano": 1, "bonifacio": 2, "9giugnovotolega": 5, "inaugurare": 2, "superstrada": 1, "pedemontana": 1, "veneta": 3, "viaggiare": 5, "velocemente": 2, "camionisti": 1, "civitavecchia": 2, "grazieeee": 4, "fori": 1, "imperiali": 1, "festadellarepubblica": 1, "rivivete": 1, "indimenticabile": 2, "portandola": 1, "metter\u00f2": 7, "ripagare": 3, "ballottaggio": 2, "potenza": 13, "casoria": 1, "porter\u00f2": 4, "discussione": 5, "sviluppo": 8, "conferenza": 21, "cresce": 14, "assurde": 1, "europee": 11, "debito": 4, "disoccupazione": 13, "respirare": 4, "crescere": 9, "riportare": 6, "chiare": 15, "studi": 23, "votando": 4, "rialza": 3, "vercelli": 4, "generazioni": 1, "muoiono": 2, "precariato": 2, "ripartire": 15, "galliate": 1, "ligure": 4, "piemontesi": 2, "primalitalia\ud83c\uddee\ud83c\uddf9": 10, "ingegnere": 1, "meccanico": 1, "pensione": 32, "ripreso": 1, "lasciando": 1, "giovane": 9, "restituito": 2, "maggio": 29, "palermo": 15, "cerimonia": 5, "commemorazione": 1, "stragi": 2, "capaci": 1, "amelio": 1, "borsellino": 1, "lottare": 4, "estirpare": 1, "cancro": 12, "lamafiamifaschifo": 5, "curiosoni": 1, "addormentati": 1, "putignano": 1, "bari": 16, "primalitalia": 13, "professo": 1, "testimoniando": 1, "tuo\u201d": 1, "pianerottolo": 2, "canile": 4, "sanitario": 1, "preparando": 3, "provvedimenti": 4, "canili": 1, "gattili": 1, "combattono": 4, "randagismo": 1, "rendere": 5, "aspre": 1, "pene": 5, "maltratta": 2, "abbandona": 2, "animali": 6, "\ud83d\udc36": 1, "pallottola": 1, "calibro": 1, "busta": 4, "difendo": 4, "votare": 41, "colle": 1, "ostuni": 1, "lecce": 8, "pugliesi": 1, "spaventati": 2, "26maggiovotolega": 30, "patto": 6, "camorristi": 2, "truffati": 9, "severe": 5, "sequestrata": 3, "comandante": 1, "indagato": 10, "favoreggiamento": 1, "catechismo": 2, "chiesa": 5, "cattolica": 4, "limiti": 10, "possibile\u201d": 2, "periferie": 6, "ampiamente": 1, "superato": 3, "coffee": 2, "break": 2, "efficace": 6, "richiede": 2, "moltissimo": 1, "combattuta": 1, "istinti": 1, "talebani": 1, "ecologismo": 1, "salotto": 2, "alis": 2, "confartigianato": 3, "truffano": 1, "ridotti": 7, "reati": 14, "sprechi": 5, "nostalgia": 3, "sostenete": 1, "piazza\ud83d\ude0a": 2, "stavoltavotolega": 1, "valeggio": 1, "spettacolooo": 4, "arrivoooo": 1, "vedervi": 1, "confagricoltura": 3, "informazione": 5, "leggo": 19, "forum": 3, "lapresse": 2, "eccomi\ud83d\ude0a": 1, "estera": 2, "importante": 9, "strapieno": 5, "veroli": 1, "frosinone": 1, "26maggiovotolega\ud83c\uddee\ud83c\uddf9": 1, "libro": 19, "carlo": 7, "nordio": 2, "procuratore": 4, "26maggiovotalega": 2, "negrar": 1, "arzignano": 3, "vicenza": 14, "schio": 3, "legnago": 4, "montichiari": 3, "brescia": 9, "lumezzane": 2, "valtrompia": 1, "ruspe": 5, "palazzoni": 1, "spaccio": 20, "criminalit\u00e0": 7, "zingonia": 2, "tortona": 1, "liguria": 9, "piemonte": 7, "\ud83d\udcaa\ud83d\udcaa\ud83d\udcaa": 1, "annunziata": 3, "prego": 3, "guardare": 10, "rallegrerete": 1, "capirete": 4, "prender\u00e0": 4, "valanga": 1, "\ud83d\ude0e\ud83d\udcaa": 1, "cuneo": 7, "bra": 1, "fossano": 1, "particolarmente": 5, "nuovamente": 1, "arrestato": 12, "quell": 6, "infame": 19, "sparato": 6, "noemi": 2, "catanzaro": 2, "chiudiamo": 3, "montesilvano": 4, "montegranaro": 1, "osimo": 1, "ancona": 3, "spettatori": 1, "sintonizzati": 3, "mantenuto": 3, "calma": 2, "fano": 2, "marche": 5, "pesaro": 2, "\u2614\ud83d\ude0b": 1, "fantastica": 4, "freddo": 5, "polemiche": 4, "beghe": 2, "svelta": 3, "\ud83d\udd34spettacolare": 1, "tg": 23, "nascondono": 4, "condividiamo": 7, "pavia": 6, "\ud83d\udd1d\ud83d\udcaa": 2, "anteprima": 2, "completa": 3, "giussano": 2, "concorezzo": 1, "mb": 1, "mafie": 5, "vinceranno": 1, "agenzia": 3, "beni": 8, "confiscati": 2, "contento": 13, "racconto": 4, "andrea": 5, "ferito": 2, "entrati": 6, "sentito": 8, "dovere": 11, "sentirlo": 2, "ribadirgli": 1, "avellino": 2, "salerno": 5, "pietrelcina": 1, "benevento": 1, "scandicci": 2, "giuliano": 3, "terme": 7, "pisa": 11, "tour": 30, "\ud83d\ude01": 10, "romagnola": 3, "sottofondo": 1, "rossa\u201d\ud83d\ude09": 1, "estinzione": 1, "candidati": 10, "primalitaia\ud83c\uddee\ud83c\uddf9": 1, "fidenza": 1, "me\ud83d\ude01": 1, "monastero": 1, "carmelitano": 1, "budapest": 2, "orb\u00e1n": 3, "ungherese": 3, "concluso": 2, "proficuo": 1, "bilaterale": 1, "s\u00e1ndor": 1, "pint\u00e9r": 1, "ungheria": 3, "scegli": 10, "preferisco": 17, "rosiconi": 5, "tarquinia": 1, "tivoli": 1, "torino": 47, "stanco": 12, "principio": 7, "motta": 1, "sant": 6, "anastasia": 1, "bagheria": 1, "monreale": 2, "sicilia": 27, "corleone": 2, "mangiatoia": 1, "chiusa": 3, "stop": 42, "\ud83d\udeab\ud83d\udeab\ud83d\udeab": 1, "primalitalia\ud83d\udcaa\ud83d\udd1d\ud83c\uddee\ud83c\uddf9": 1, "eduardo": 1, "parlamentare": 9, "brasiliano": 1, "segno": 4, "collaborazione": 4, "amicizia": 4, "seguirla": 1, "baraccopoli": 2, "ferdinando": 2, "degrado": 9, "perfetta": 1, "sintonia": 2, "ragioni": 2, "politiche": 4, "immagina": 2, "dica": 5, "chiaramente": 4, "responsabile": 3, "confermo": 4, "portichiusi\ud83c\uddee\ud83c\uddf9": 2, "targati": 1, "liberata": 3, "terroristi": 20, "barconi": 8, "importanti": 6, "rivoluzioniamo": 1, "libia": 11, "gioca": 7, "ascolta": 17, "aprile": 12, "parteciper\u00f2": 2, "sfilate": 1, "camorra": 3, "ndrangheta": 1, "onorato": 4, "celebrazioni": 2, "167esimo": 1, "anniversario": 3, "anniversariopolizia": 1, "aggressione": 11, "continente": 2, "europadelbuonsenso": 4, "enf": 3, "j\u00f6rg": 3, "meuthen": 3, "alternative": 3, "f\u00fcr": 3, "deutschland": 4, "efdd": 3, "olli": 3, "kotro": 3, "the": 3, "finns": 3, "party": 4, "ecr": 6, "anders": 3, "vistisen": 3, "dansk": 3, "folkeparti": 3, "\ud83c\uddee\ud83c\uddf9live": 1, "salviniofficial": 8, "videos": 9, "sfns": 6, "\ud83c\uddec\ud83c\udde7": 2, "english": 3, "\ud83c\udde9\ud83c\uddea": 2, "deutsch": 2, "\ud83c\uddec\ud83c\udde7live": 1, "towards": 1, "common": 1, "sense": 1, "europe": 1, "milan": 10, "international": 1, "conference": 1, "with": 1, "lonigo": 2, "vinitaly\ud83c\uddee\ud83c\uddf9": 1, "scontato": 1, "raccogliere": 3, "critiche": 4, "sbloccacantieri\u201d": 1, "risarcimenti": 1, "danneggiati": 1, "ricostruzione": 4, "presieduto": 5, "sorriso\ud83d\ude0a": 1, "g7": 3, "cagliari": 18, "como": 12, "lady": 1, "isolotto": 1, "ricorder\u00f2": 1, "sacrosanto": 5, "difendersi": 6, "maurizio": 4, "costanzo": 2, "show": 1, "palcoscenico": 1, "autoironia": 1, "guardatelo": 1, "incredibili": 4, "ingiustizie": 5, "ladifesa\u00e8semprelegittima": 3, "approvata": 2, "garantisce": 2, "votata": 4, "grandissima": 2, "\ud83d\udcaa\ud83d\udd1d": 1, "protagonisti": 4, "dirottato": 1, "italiana\u201d": 1, "invertire": 1, "fateci": 3, "\ud83d\udc49": 1, "librimondadori": 1, "libri": 7, "litalia": 1, "piu": 3, "microfono": 2, "\ud83e\udd28": 1, "amici\u2764\ufe0f": 1, "\ud83d\udd34quello": 1, "intellettualone": 1, "provato": 3, "comprendere": 1, "coltelli": 2, "minacciava": 1, "colpe": 1, "vergognino": 1, "pomarico": 1, "ferrandina": 1, "numerosi": 2, "tolve": 1, "tito": 1, "scalo": 1, "automobilistico": 1, "lucano": 1, "qualcosa": 14, "dirvi": 3, "\ud83d\udd34aggiornamento": 1, "cercate": 1, "casarini": 1, "rende": 3, "complice": 17, "delinque": 3, "sconti": 9, "pensavo": 2, "apprezzato": 4, "lavello": 2, "visti": 2, "melfi": 1, "24marzovotolega": 5, "agri": 1, "marsicovetere": 2, "lauria": 1, "viggiano": 1, "filiano": 1, "propongo": 5, "maratea": 1, "marchi": 2, "storici": 4, "italiani\ud83c\uddee\ud83c\uddf9": 1, "cinquecentenario": 1, "leonardo": 1, "\ud83d\ude0d": 2, "scanzano": 1, "jonico": 1, "volont\u00e0": 7, "insuperabili": 1, "abbattimento": 1, "torri": 1, "dalleparoleaifatti": 6, "formazione": 19, "l\u00e0": 6, "mimosa": 1, "rosa": 7, "concreti": 7, "elimineremo": 1, "stupra": 4, "codicerosso": 1, "impone": 2, "corsie": 1, "preferenziali": 1, "rapidissime": 1, "denunce": 7, "violenze": 8, "donna": 21, "minigonna": 2, "molestata": 1, "voter\u00e0": 6, "marzo": 32, "tg5": 6, "drogato": 4, "ubriaco": 6, "patente": 1, "marocchino": 6, "genitori\u201d": 1, "proposta": 23, "accadano": 2, "follie": 8, "piena": 24, "eccone": 1, "navale": 3, "monfalcone": 5, "fincantieri": 2, "consegner\u00e0": 1, "crociere": 1, "interamente": 1, "amiche": 6, "sardi": 2, "lingua": 4, "magnifiche": 1, "potho": 1, "reposare\u201d": 1, "parodi": 2, "canzone": 2, "febbricitante": 1, "universit\u00e0": 7, "luiss": 1, "\u2600\ufe0f\ud83d\ude0a": 1, "logistica": 2, "diciotti": 3, "battono": 1, "risarcimento": 7, "assistiti": 1, "\ud83d\ude05": 2, "bastaaa": 2, "diminuiti": 3, "azzerati": 1, "calati": 1, "assunzioni": 4, "agenti": 19, "divise": 1, "sequestrati": 3, "chiacchiera": 3, "mandata": 3, "isola": 4, "tg2": 3, "villasimius": 1, "narcotrafficante": 1, "diventer\u00e0": 4, "alloggio": 7, "iglesias": 1, "ritorno": 4, "carbonia": 1, "nonna": 12, "diceva": 7, "avere\u201d": 1, "riguardatela": 1, "approvare": 8, "angelo": 6, "condannato": 13, "debba": 5, "ladro": 39, "alghero": 4, "24febbraiovotolega": 5, "sassari": 6, "arrivasse": 1, "barcone": 7, "chiedendo": 1, "rispettando": 2, "ozieri": 1, "iniziare": 4, "castelsardo": 1, "maddalena": 1, "abruzzo": 8, "guerriglia": 4, "cassonetti": 3, "incendiati": 1, "assaltato": 1, "infami": 4, "chiudono": 6, "frequentati": 1, "criminali": 6, "nega": 4, "basovizza": 2, "martiri": 4, "foibe": 1, "storie": 5, "famigliari": 7, "dimentichiamo": 6, "negozio": 5, "regaleremo": 2, "abruzzesi": 3, "lanciamo": 1, "bussi": 1, "tirino": 2, "aquila": 5, "monteroni": 1, "arbia": 1, "siena": 7, "restituir\u00f2": 1, "piscina": 7, "visitate": 1, "confiscate": 1, "teramo": 8, "egidio": 1, "vibrata": 1, "10febbraiovotolega": 9, "campli": 2, "\ud83d\ude04": 3, "giulianova": 1, "azioni": 2, "costate": 1, "indagini": 1, "chiomonte": 1, "visiter\u00f2": 2, "cantiere": 5, "tav": 1, "grattava\u201d": 1, "fiero": 2, "piaciuta": 5, "precedenti": 6, "rischi": 4, "tranquillo": 5, "base": 14, "costituzione": 11, "patria\u201d": 1, "programma": 16, "ospite": 3, "chiara": 5, "consegner\u00f2": 2, "criminale": 9, "riprovano": 1, "iononmollo": 1, "nazista": 1, "salvate": 2, "risparmiati": 1, "bacioni\ud83d\ude18": 1, "lanciano": 3, "chieti": 3, "riflessione": 1, "ricominciano": 1, "sporchi": 1, "traffici": 1, "cattivo\u201d": 1, "intrattenimento": 1, "afragola": 2, "\ud83d\ude4f": 1, "grazieee": 3, "oristano": 1, "quartu": 1, "tralagente": 1, "solinaspresidente": 1, "approfondimento": 3, "cattura": 1, "rientro": 2, "galere": 1, "battisti": 1, "troppi": 14, "piede": 3, "vicina": 8, "accettiamo": 1, "morale": 3, "solidariet\u00e0": 17, "generosit\u00e0": 3, "vigilia": 1, "vigliacco": 3, "assassino": 6, "tragedia": 4, "rigopiano": 1, "promesse": 4, "vuoto": 1, "regolare": 3, "integra": 3, "manda": 8, "aggiunto": 1, "incontrollato": 2, "accusato": 2, "cattivismo": 1, "varsavia": 1, "polacco": 1, "brudzi\u0144ski": 1, "villone": 1, "guardie": 1, "cancelli": 1, "sicurezza\u201d": 1, "operaio": 4, "periferia": 12, "operativo": 3, "dimostrate": 2, "roseto": 1, "abruzzi": 1, "contestano": 1, "letto": 6, "garantiti": 3, "salute": 13, "toccano": 2, "espulsi": 4, "regalano": 7, "diritti": 24, "furbetti": 3, "veniva": 3, "rispetta": 5, "tradisce": 3, "risponder\u00e0": 2, "esistono": 8, "clandestini\u201d": 1, "annunciano": 2, "applicheranno": 1, "quotidiani": 1, "reali": 3, "concittadini": 2, "irregolari": 5, "senso": 15, "repubblica": 14, "disoccupati": 23, "difendendoli": 1, "commessi": 4, "salveremo": 1, "maestro": 3, "canello": 1, "messo": 11, "orologio": 3, "mezzanotteee": 1, "\ud83c\udf7e\ud83e\udd42\ud83d\ude02": 1, "inimitabile": 1, "geniale": 4, "soddisfazioni": 3, "positivi": 1, "raggiunti": 1, "ritrovato": 1, "aiuto": 28, "albino": 3, "calcio": 13, "coinvolgere": 1, "intorno": 3, "tavolo": 1, "calciatori": 2, "tifoserie": 1, "presidenti": 2, "arbitri": 1, "confondere": 2, "tifosi": 2, "donato": 1, "passeranno": 1, "ospedale": 26, "salutare": 2, "bufale": 2, "propinate": 1, "tagliata": 2, "diminuir\u00e0": 1, "oppositori": 1, "rimangono": 3, "bugie\ud83d\ude0a": 1, "santo": 3, "terminato": 1, "provinciale": 2, "riascoltate": 1, "fatebenefratelli": 1, "intesa": 1, "socio": 3, "sanitaria": 1, "territoriale": 1, "asst": 1, "realizzazione": 1, "laboratorio": 1, "genetica": 1, "forense": 1, "scientifica": 1, "riferimento": 1, "anticrimine": 1, "sorbolo": 2, "consegnato": 2, "personalmente": 6, "immobile": 2, "sequestrato": 3, "\u2018ndrangheta": 3, "clan": 4, "fame": 11, "ricchezza": 6, "agricoltura": 19, "made": 21, "italy": 19, "condividere": 21, "completo": 4, "azione": 12, "nomadi": 4, "cascina": 4, "manterremo": 1, "impegni": 5, "guardando": 3, "gerusalemme": 2, "netanyahu": 1, "sepolcro": 1, "domande": 23, "risposte": 13, "avanguardia": 2, "piazzadelpopolo": 1, "dimenticher\u00f2": 1, "iocisono": 2, "rinvio": 1, "concorrenza": 5, "sleale": 4, "cina": 1, "presunta": 2, "disumanit\u00e0\u201d": 1, "obbligatoria": 2, "riconoscimento": 2, "segni": 3, "dialogo": 8, "datori": 2, "testata": 1, "eu": 1, "premiarmi": 1, "decretosalvini": 7, "rivedi": 1, "firmer\u00e0": 1, "global": 1, "compact": 1, "onu": 4, "riunione": 3, "marrakesh": 1, "noglobalcompact": 1, "accademico": 1, "fiore": 2, "occhiello": 1, "unicum": 1, "uscir\u00e0": 2, "personale": 3, "formato": 2, "professionalmente": 1, "eticamente": 1, "culturalmente": 1, "socialmente": 1, "italia\u201d": 2, "poste": 2, "34esimo": 1, "sardo": 2, "insulto": 7, "inauguriamo": 1, "tortol\u00ec": 1, "movimenti": 1, "cosiddetto": 2, "spread": 7, "corrispondono": 1, "speculatore": 1, "volesse": 3, "ostacolarci": 1, "associazione": 7, "intermodalit\u00e0": 1, "sostenibil": 1, "distruggere": 4, "idn2018": 1, "pimpante": 1, "enrico": 7, "lucci": 1, "eccolo": 2, "cna": 1, "confederazione": 2, "artigianato": 2, "media": 4, "impresa": 6, "simpatica": 3, "tirato": 1, "giudicate": 3, "commento": 7, "impianti": 2, "videosorveglianza": 2, "norma": 3, "rottama": 1, "motorini": 1, "sgomberi": 4, "stabili": 1, "pericolanti": 1, "gestite": 1, "lumsa": 1, "volentieri": 7, "promosso": 2, "papa": 7, "xxiii": 1, "affetti": 1, "veri": 18, "antidoto": 1, "tenta": 2, "plagiare": 1, "adescare": 1, "violentare": 4, "psicologicamente": 2, "fisicamente": 3, "approvazione": 2, "inviti": 3, "mondi": 2, "ambienti": 1, "fermer\u00f2": 2, "soddisfatto": 5, "profittatori": 1, "asia": 1, "bibi": 1, "discrezione": 1, "attenzione": 10, "occidentali": 3, "umanamente": 2, "ragazza": 11, "costruttiva": 1, "ghana": 2, "autorit\u00e0": 3, "seguiranno": 2, "africani": 6, "limitavano": 1, "chiacchierare": 1, "favorire": 2, "rimpatri": 3, "attraverso": 5, "cooperazione": 2, "utile": 4, "rilancio": 2, "rovinato": 18, "venir": 1, "invertito": 1, "terracina": 2, "ripartite": 1, "alberi": 8, "ripiantati": 1, "tetti": 4, "sistemati": 1, "portata": 3, "mostri": 2, "arriveranno": 2, "primi": 12, "stanziamenti": 1, "ritrovino": 1, "coordinamento": 2, "soccorsi": 2, "aeroporto": 5, "belluno": 8, "devastazione": 1, "montagna": 11, "stringe": 2, "cercando": 3, "trovando": 1, "popolazioni": 1, "scalfari": 1, "putin": 18, "dittatore": 1, "\ud83d\ude02\ud83d\ude02\ud83d\ude02": 1, "hastatosalvini": 1, "richiesta": 7, "archiviazione": 1, "ufficio": 6, "assolto": 3, "apriamo": 4, "ognissanti": 1, "particolare": 10, "conosciuto": 3, "ragazze": 12, "mondiali": 1, "qatar": 2, "giovent\u00f9": 2, "ottime": 2, "speranze": 5, "visibilit\u00e0": 1, "cosiddette": 2, "discipline": 1, "tifoso": 1, "pallone": 2, "federico": 2, "martinengo": 2, "militare": 12, "mari": 1, "momenti": 5, "montesano": 1, "semplici": 2, "ascoltatelo": 1, "ulteriormente": 2, "espulsioni": 13, "riconquisteremo": 1, "delinquenza": 4, "buttalo": 2, "avermi": 1, "divertono": 1, "lanciando": 2, "gommone": 2, "fantoccio": 1, "studenti\u201d": 1, "fissato": 2, "immacolata": 1, "sostengono": 3, "vorranno": 2, "vicini": 6, "crimini": 3, "abusato": 1, "accoglie": 3, "doppiamente": 1, "caserma": 4, "salvo": 2, "acquisto": 3, "speciale": 5, "gis": 1, "equitalia": 11, "reale": 7, "scender\u00e0": 1, "inevitabilmente": 1, "dar\u00e0": 2, "stabilit\u00e0": 3, "senegalesi": 1, "sessuale": 2, "cessione": 1, "stupefacenti": 1, "volontario": 2, "terza": 8, "rintracciata": 1, "potr\u00f2": 1, "darvi": 2, "notizia": 9, "desir\u00e9e": 2, "rimarr\u00e0": 5, "impunito": 1, "ditemi": 4, "lorenzo": 2, "bucarest": 2, "ambasciata": 2, "romeno": 1, "carmen": 2, "daniela": 1, "dan": 1, "regista": 2, "michael": 1, "moore": 1, "bigotto": 1, "odierei": 1, "lesbiche": 1, "intellettuali": 3, "giudicare": 4, "trentino": 13, "adige": 1, "direi": 3, "fonderia": 1, "mica": 4, "andarci": 1, "lavorare\u201d": 1, "citare": 1, "prodi": 10, "teorie": 1, "fannulloni": 1, "sinistra\u201d": 1, "neofascista": 1, "rozzo": 1, "aggressivo": 1, "lieto": 1, "piacerle": 1, "viste": 1, "differenze": 1, "eletto": 1, "nominato": 3, "lacrime": 5, "coccodrillo": 1, "frequento": 1, "salotti": 1, "chic": 10, "cominciato": 3, "porta": 38, "stopfornero": 4, "decenni": 1, "governi": 19, "conoscenti": 2, "lavorer\u00e0": 1, "raccomandazione": 1, "autonomia": 5, "fugattipresidente": 1, "passaparola": 5, "sms": 3, "whatsapp": 2, "telefonata": 3, "tradizionale": 4, "mezzocorona": 1, "autonoma": 1, "combinate": 1, "cotte": 1, "crude": 1, "cles": 1, "francese": 6, "claviere": 1, "augurano": 1, "gi\u00f9\u201d": 1, "mosca": 13, "confindustria": 2, "russia": 30, "spoleto": 3, "giuramento": 4, "allievi": 2, "ringraziamenti": 1, "impegnato": 6, "unghie": 2, "denti": 2, "inserire": 1, "serviranno": 1, "assumere": 6, "gestione": 4, "modo": 16, "geniali": 4, "professoroni": 3, "soloni": 1, "soluzioni": 3, "tasca": 6, "trenta": 3, "quarant": 4, "200esimo": 1, "corso": 22, "capire": 23, "puntati": 1, "benessere": 5, "prepotenza": 1, "troverete": 3, "costruttori": 1, "edili": 1, "estremamente": 1, "moltiplichiamo": 1, "pani": 1, "pesci": 1, "certamente": 3, "render\u00e0": 1, "onere": 5, "mantenuti": 5, "molleremo": 2, "manifatturiera": 1, "privata": 12, "\ud83d\udd34questo": 1, "tig\u00ec": 1, "capotreno": 3, "scendere": 1, "scrocconi": 1, "clima": 4, "tolleranzazero": 19, "uso": 5, "massiccio": 1, "paghi": 7, "restituendo": 3, "quartieri": 6, "uscire": 20, "cagnolino": 2, "fratelli": 14, "spacciano": 3, "delinquono": 1, "bressanone": 1, "laives": 2, "seggiola": 1, "palchi": 1, "sontuosi": 1, "progetti": 3, "quarta": 3, "edizione": 8, "invidiano": 3, "accompagnato": 1, "trentina": 4, "ala": 2, "21ottobrevotolega": 4, "pergine": 1, "valsugana": 2, "dedichiamo": 4, "borgo": 3, "aldeno": 1, "radicale": 1, "ricette": 1, "letta": 30, "gentiloni": 16, "aumentato": 2, "impoverito": 1, "precarizzato": 1, "pensioni": 24, "burocrati": 4, "tiriamo": 1, "dritto": 1, "pagarci": 6, "opinionista": 1, "giorno\ud83e\udd14": 1, "esercitazione": 1, "nocs": 1, "40\u00b0": 1, "nucleo": 1, "centrale": 10, "cambiando": 2, "lavoreremo": 1, "lione": 1, "g6lyon": 1, "marine": 15, "pen": 12, "bersani": 9, "cita": 1, "migrazioni": 2, "inevitabili": 1, "costruttive": 1, "accetto": 1, "rappresentare": 1, "armonia": 1, "scontro": 4, "sociale": 10, "insicurezza": 2, "spedito": 2, "illustre": 1, "riuscir\u00f2": 1, "rosicano": 2, "accettare": 4, "selfie": 3, "w": 6, "imbrattare": 1, "dandomi": 1, "prendendosela": 1, "sicure": 7, "antidroga": 1, "allontanando": 1, "problematici": 1, "aumentando": 2, "marginalit\u00e0\u201d": 1, "\u2705stop": 1, "penalizzazioni": 1, "paletti": 1, "tetto": 6, "reddito": 2, "permettendo": 5, "400mila": 3, "liberando": 3, "\u2705flat": 1, "aliquota": 13, "milione": 15, "autonomi": 2, "professionisti": 2, "piccoli": 13, "accompagnata": 1, "pesante": 1, "reinvestir\u00e0": 1, "ricerca": 3, "macchinari": 1, "\u2705piano": 1, "organizzata": 6, "vagher\u00e0": 1, "coste": 2, "nisba": 1, "ignoranza": 2, "povert\u00e0": 13, "combatteremo": 2, "possibili": 3, "singolo": 2, "camorrista": 1, "juncker": 6, "cancellate": 1, "cancelliamo": 11, "sparge": 1, "\ud83d\ude1e": 1, "ospiti": 11, "regolari": 12, "bisognerebbe": 1, "punta": 3, "rispettare": 6, "istituzioni": 7, "traverso": 1, "tabl\u00f2": 1, "distaccamento": 1, "est": 6, "sfilata": 1, "occasione": 8, "50\u00ba": 1, "ricompense": 1, "indossato": 1, "maglia": 3, "patrono": 2, "arcangelo": 1, "previsto": 3, "piano": 7, "assunzione": 1, "vedeva": 2, "mondiale": 4, "sordo": 1, "madre": 5, "soffrire\u201d": 1, "punizione": 2, "schifosi": 5, "romania": 2, "abbattuta": 2, "monteverdi": 1, "marghera": 1, "ricettacolo": 1, "sbandati": 2, "sorger\u00e0": 1, "questura": 2, "\ud83d\ude03": 4, "tunisi": 2, "tunisino": 7, "eroici": 2, "professionalit\u00e0": 2, "rapidit\u00e0": 2, "scongiurato": 1, "limitato": 1, "unit\u00e0": 2, "canadair": 1, "elicotteri": 1, "erickson": 1, "s64": 1, "spegnere": 1, "fiamme": 1, "consentire": 1, "sfollati": 1, "spiegato": 6, "aiutatemi": 7, "nato": 6, "volete": 9, "pradamano": 1, "udine": 16, "nigeriano": 4, "bastonate": 3, "impalcatura": 1, "aggredisce": 2, "fronte": 11, "estendere": 2, "utilizzo": 2, "municipali": 1, "abitanti": 6, "ruspa": 43, "rom": 95, "smantellati": 1, "capannoni": 1, "vuoti": 2, "completamente": 3, "accampamento": 1, "governa": 5, "fretta": 7, "presenza": 4, "autostrade": 4, "accoglieranno": 1, "scelte": 5, "cavilli": 1, "ricorsi": 2, "tenerezza": 4, "emigravano": 2, "uguale": 3, "drasticamente": 3, "indagare": 3, "ipocriti": 8, "buonisti": 36, "decretoimmigrazione": 2, "strumenti": 3, "espellere": 15, "prevede": 3, "abitazione": 3, "armata": 1, "mascherata": 1, "difendermi": 2, "disarmare": 1, "aggressori": 3, "aggrediti": 8, "stupro": 6, "l\u00ec\u201d": 1, "ricco": 2, "fotografo": 1, "vip\u201d": 1, "querelarlo": 1, "presentato": 4, "operazione": 11, "spiaggesicure": 1, "coinvolto": 1, "340mila": 1, "oggetti": 5, "contraffatti": 1, "nocivi": 1, "coinvolti": 1, "mostro": 3, "recuperato": 1, "spiagge": 2, "presentarvi": 3, "sofferenze": 1, "causate": 1, "val": 6, "susa": 1, "\u201dbravi": 1, "assalto": 2, "denunciati": 1, "isteria": 1, "lussemburghese": 1, "commissari": 1, "privato": 4, "scorso": 13, "paragona": 3, "emigrati": 1, "sbarcano": 9, "conclude": 2, "urlando": 1, "lussemburgo": 1, "paradiso": 3, "austriaco": 2, "vienna": 1, "vicecancelliere": 1, "strache": 1, "videointervista": 1, "time": 3, "guardatela": 2, "raccontato": 1, "palazzina": 2, "sgomberati": 3, "presidi": 5, "solidariet\u00e0\u201d": 1, "permettono": 1, "valuteremo": 1, "utilit\u00e0": 1, "versare": 2, "finanziare": 3, "mangerie": 1, "cercarlo": 1, "altrove": 2, "articoli": 5, "alcun": 3, "indagato\u201d": 1, "magistrato": 3, "4\u00aa": 1, "creano": 3, "legami": 3, "amicizie": 1, "nascono": 3, "nasce": 5, "armando": 10, "siri": 10, "creato": 4, "\u270f\ufe0f": 1, "iscrizioni": 6, "scuoladiformazionepolitica": 12, "salento": 4, "copertura": 1, "ristabilire": 1, "decretosicurezza": 1, "raffinata": 1, "occupare": 3, "affitto": 5, "onesti": 4, "propriet\u00e0": 8, "sacra": 3, "indagarmi": 1, "tradir\u00f2": 1, "confessa": 1, "conoscete": 5, "m": 3, "bentornata": 1, "peppina": 7, "direttiva": 2, "scolastico": 2, "stabilizzazione": 1, "incursioni": 1, "prevalere": 1, "disponibile": 1, "tornarci": 2, "pacificata": 1, "oca": 1, "viterbo": 4, "incontrata": 6, "santa": 15, "inchieste": 3, "immagini\ud83d\ude01": 1, "percezione": 1, "esagerata": 2, "definisce": 1, "folle\u201d": 1, "direttivasgomberi": 1, "bisognosi": 4, "furbi": 2, "sbagliata": 10, "averne": 4, "puoi": 17, "metterci": 2, "finisca": 2, "scuolesicure": 1, "disposizione": 7, "incrementare": 1, "coprire": 1, "installare": 2, "serenamente": 1, "risorsa\u201d": 1, "guadagnarsi": 1, "spaccia": 1, "ragazzini": 2, "chiedo": 11, "inizier\u00e0": 1, "sperimentazione": 2, "elettrica": 3, "letale": 1, "aiuter\u00e0": 3, "abbandonate": 3, "poter": 15, "adeguato": 1, "capalbio": 2, "radical": 8, "indignano": 1, "roberto": 6, "agostino": 2, "fondatore": 1, "dagospia": 1, "smonta": 3, "minuti\ud83d\ude01": 1, "viktor": 2, "confine": 5, "ceuta": 1, "pattuglia": 2, "rimandati": 2, "marocco": 4, "vent": 4, "stopinvasione": 55, "ascoltatemi": 1, "rai3": 1, "commossa": 1, "genovese": 1, "ringrazia": 3, "ricerche": 3, "dispersi": 1, "macerie": 4, "secondi": 5, "profonda": 1, "smetteremo": 1, "ringraziarvi": 1, "salva": 6, "ringraziamento": 5, "pompieri": 3, "migliorare": 7, "stipendi": 6, "sospesi": 1, "pagamenti": 1, "pedaggi": 2, "dintorni": 2, "bagno": 6, "umilt\u00e0": 2, "metterei": 1, "risorse": 22, "necessarie": 2, "splendidi": 3, "portargli": 1, "causato": 1, "dolore": 1, "dovr\u00e0": 6, "andr\u00f2": 4, "accertarmi": 1, "cognome": 1, "attenzioni": 1, "sperare": 6, "tg4": 1, "colpevoli": 3, "vincoli": 8, "impediscono": 3, "spendere": 7, "viaggiano": 1, "ringraziare": 2, "soccorritori": 2, "accertare": 2, "impressionanti": 1, "promessa": 2, "inaccettabile": 2, "riso": 10, "cambogiano": 1, "carne": 7, "sudamericana": 1, "lascio": 10, "bere": 2, "infrange": 1, "obbligo": 7, "dimora": 1, "ruba": 5, "borsetta": 1, "anziana": 5, "ipovedente": 1, "ritirata": 1, "quindicenne": 1, "palo": 1, "par": 1, "genere": 5, "gr1": 1, "aquarius": 2, "carico": 3, "jazeera": 1, "versione": 1, "schiavismo": 3, "sfruttamento": 4, "nero": 8, "assoluta": 5, "terribile": 2, "esplosione": 1, "panigale": 1, "prontamente": 1, "intervenuti": 2, "capriata": 3, "orba": 1, "vaffanculo\u201d": 1, "grandissimo\ud83d\ude18": 1, "rilassatevi": 1, "manifestazione": 8, "razzista\u201d": 1, "lamentano": 6, "pochini": 1, "morendo": 4, "rimbrotto": 1, "rivoluzionedelbuonsenso": 2, "82\u00ba": 1, "sgomberato": 1, "ringraziano": 4, "boldrini": 56, "professore": 3, "paura\u201d": 1, "mancava": 2, "dovrebbero": 9, "chiedersi": 1, "inviamo": 4, "vip": 3, "minimamente": 1, "potrei": 2, "compiuto": 1, "rinnovato": 1, "bruna": 2, "fontevivo": 1, "evviva": 6, "eclissi": 1, "pd\ud83d\ude01": 1, "ostinano": 1, "campi": 15, "irrispettosa": 1, "copertina": 4, "fermer\u00e0": 1, "fanculo": 6, "vincitrice": 1, "furbizia": 1, "estate": 6, "permetter\u00e0": 1, "domanda": 10, "asilo": 25, "commette": 4, "incredibilmente": 2, "casi": 5, "consente": 4, "protezione\u201d": 1, "chiediamo": 3, "elemosine": 1, "riprendendo": 1, "rifaresti": 1, "origine": 4, "eviterebbe": 1, "schiavi": 26, "illuminante": 1, "chiesto": 14, "vorr\u00e0": 2, "ricordato": 4, "stringere": 1, "siriani": 2, "tunisini": 2, "algerino": 1, "egiziani": 1, "silvi": 1, "festeggiamo": 3, "vario": 1, "alema": 2, "umore": 1, "registro": 1, "presente": 9, "segnalare": 3, "quotidianamente": 1, "libiche": 2, "seriamente": 1, "tema": 5, "innsbruck": 3, "vertice": 1, "interni": 2, "tedesco": 4, "kickl": 1, "seehofer": 1, "positivo": 4, "comincia": 10, "iniziata": 1, "palmi": 2, "chiavi": 3, "confiscata": 2, "mafiosa": 1, "sequestrare": 2, "centesimo": 1, "gentaglia": 5, "ndranghetisti": 1, "feccia": 1, "alberghi": 9, "digiunanti\u201d": 1, "mussolini\u201d": 1, "digiuno": 1, "doppio": 6, "panino": 3, "aiuteranno": 1, "sporco": 5, "fermeranno": 3, "stufo": 2, "innocente": 2, "magliette": 2, "rosse\u201d": 1, "incontrate": 6, "disumanit\u00e0": 1, "scorsi": 1, "freni": 1, "crea": 1, "sfruttati": 2, "vergognose": 3, "tendopoli": 2, "visitata": 1, "occorrono": 2, "rimediare": 5, "preceduto": 1, "comando": 3, "pontida18": 3, "brillante": 2, "retata": 1, "profughi\u201d": 3, "nigeriani": 3, "eroina": 2, "parchi": 3, "fingendosi": 2, "bisognoso": 1, "verme": 7, "mettercela": 1, "tenervi": 1, "informati": 3, "fase": 2, "iniziale": 1, "potr\u00e0": 13, "dotazione": 1, "efficacia": 2, "1\u00b0": 5, "giugno": 17, "sbarcate": 3, "quest": 16, "insediamento": 1, "sbarchino": 1, "finito": 9, "giovanile": 2, "inps": 6, "triplichi": 1, "organico": 1, "appartamenti": 6, "diventeranno": 2, "sappiano": 1, "vissuta": 2, "distanza": 4, "gusto": 2, "boss": 1, "mafioso": 3, "palio": 2, "contrada": 1, "drago": 1, "vederlo": 3, "rivederlo": 1, "caravaggio": 2, "roghi": 2, "tossici": 2, "furti": 7, "ricettazione": 1, "svariati": 1, "blitz": 9, "cambiata": 4, "bacchette": 1, "magiche": 3, "grandi": 31, "difenderemo": 4, "libici": 2, "proprie": 3, "disponibili": 3, "fugge": 2, "realmente": 3, "tripoli": 2, "vicepremier": 1, "libico": 1, "ahmed": 2, "maitig": 1, "propongono": 2, "creazione": 1, "hotspots": 1, "flussi": 1, "verrebbero": 2, "interrotti": 1, "proposto": 1, "diventi": 2, "imbuto": 1, "scordare": 1, "pietrasanta": 2, "agor\u00e0": 5, "ruolo": 1, "area": 4, "offrendo": 1, "economico": 5, "maxi": 6, "penali": 2, "spalle": 7, "fermati": 6, "moda": 1, "ecodibergamo": 1, "stories": 1, "bergamasca": 5, "zingoniaperquisiti": 1, "anna": 3, "dr": 1, "lupo": 2, "maturit\u00e0": 3, "potessi": 1, "tornerei": 1, "manzoni": 1, "latino": 2, "greco": 1, "orale": 1, "finale": 7, "maturit\u00e02018": 1, "skuola": 1, "net": 4, "iniziano": 1, "esami": 2, "notteprimadegliesami": 1, "filava": 1, "andava": 2, "cappello": 2, "usavano": 1, "neppure": 3, "parlarci": 1, "intenzione": 3, "fermarmi": 1, "mussolini": 2, "canti": 4, "faccetta": 1, "nera": 2, "offese": 2, "vicesindaco": 2, "buonista": 16, "valencia": 1, "bacione\ud83d\ude18": 1, "sondrio": 3, "sostenuti": 4, "bullo\u201d": 1, "mandandolo": 1, "cinisello": 2, "balsamo": 2, "odiamo": 1, "domeniche": 3, "approda": 1, "partita": 5, "destinata": 1, "attracca": 2, "diverso": 5, "zerbini": 1, "ivrea": 1, "orbassano": 1, "sforzo": 4, "matrix": 7, "bestie": 13, "schifoso": 8, "taciuto": 1, "tacer\u00f2": 1, "gino": 1, "sbirro\u201d": 1, "difendiamo": 14, "chiudiamoiporti": 1, "recuperare": 3, "ritardi": 2, "mantenimento": 1, "permanenza": 1, "coinvolgendo": 1, "internazionali": 1, "lasciato": 3, "sapremo": 1, "farci": 4, "valsusini": 1, "bussoleno": 1, "vivendo": 2, "difficili": 1, "vigilidelfuoco": 1, "confcommercio2018": 1, "resiste": 3, "eliminazione": 3, "spesometri": 1, "redditometri": 1, "governogialloblu": 1, "girino": 1, "confusione": 1, "temere": 1, "brindisi": 2, "riescano": 2, "inventarsi": 1, "paghino": 1, "diffondere": 9, "venditori": 3, "aggrediscono": 6, "restituzione": 2, "tener": 1, "pesca": 4, "turismo": 4, "aumenti": 1, "motivata": 2, "concreta": 3, "ognuno": 8, "metter": 1, "nati": 7, "rosiconiasinistra": 1, "improvvisate": 1, "treviso": 15, "10giugnovotolega": 1, "rito": 2, "inquadratura": 1, "cronaca": 3, "riporta": 1, "immigrato": 12, "spenna": 1, "piccioni": 1, "sestri": 2, "levante": 2, "insiemesultetto": 2, "poteri": 6, "iostoconfabio": 1, "brutta": 2, "occuparmi": 3, "poteva": 2, "nascere": 2, "cambieremo": 10, "dalmine": 2, "contare": 2, "colloquio": 2, "colorno": 1, "maestre": 1, "arrestate": 3, "accusa": 9, "picchiato": 6, "maltrattato": 1, "comprese": 2, "ossessione": 1, "pontificare": 1, "daranno": 4, "possibilit\u00e0": 5, "sforzi": 2, "occupino": 1, "pensiamo": 2, "mettano": 1, "andiamoagovernare": 97, "orrore": 3, "caricata": 1, "picchiata": 4, "stuprata": 1, "femministe": 2, "marciscano": 1, "potermi": 1, "provano": 2, "sale": 2, "borse": 1, "spaventano": 2, "bloccano": 10, "pretendono": 7, "buono": 10, "tecnici": 2, "neutrali": 1, "esponenti": 2, "stanziali": 1, "picchiano": 2, "disabile": 7, "barista": 2, "distruggono": 2, "smettono": 2, "mantenere": 10, "direttamente": 6, "supporto": 2, "uscita": 5, "medico": 6, "pdclandestino": 3, "mentana": 5, "datemi": 7, "parere": 4, "sergio": 5, "bramini": 1, "fallito": 11, "crediti": 3, "sfratto": 8, "normalit\u00e0": 2, "cerco": 2, "trovarti": 1, "coerente": 3, "programmi": 4, "cambiano": 2, "convenienze": 1, "fedrigapresidente": 3, "gradisca": 3, "isonzo": 3, "gorizia": 5, "cominciando": 1, "bici": 3, "tuttiacasa": 2, "miglior": 2, "tolmezzo": 2, "piccolo": 10, "supermercato": 3, "megacentri": 1, "commerciali": 6, "valorizziamo": 1, "ricchezze": 1, "isernia": 4, "molise": 9, "eccome": 2, "\u26aa\ufe0f\ud83d\udd34": 1, "casellati": 1, "imposti": 3, "maledetti": 4, "picchiare": 5, "indifesi": 2, "strapiena": 32, "montenero": 1, "bisaccia": 1, "ospit\u00f2": 1, "trasformare": 2, "bombe": 8, "perdite": 2, "sconvolgente": 2, "risolveranno": 1, "porteranno": 2, "fermatevi": 1, "incontrato": 8, "vincitori": 1, "settimanali": 1, "orario": 3, "optato": 1, "spritz": 2, "brugnera": 2, "pordenone": 7, "29aprile": 1, "spilimbergo": 1, "mattarella": 6, "goldrake": 1, "guardava": 1, "alabarda": 1, "spazialeee": 1, "serva": 3, "assistono": 1, "sacrificio": 1, "pochissimo": 1, "recenti": 1, "intervistato": 2, "venuto": 1, "ascoltarmi": 2, "torner\u00f2": 4, "prestissimo": 2, "centrodestra": 11, "tasche": 4, "primaillavoro": 2, "danneggiando": 3, "ricostruita": 1, "reputiamo": 1, "governare": 6, "costringendoci": 1, "parametro": 1, "deputato": 6, "facciamosquadra": 29, "vittima": 5, "balzerani": 1, "brigatista": 1, "componente": 1, "scorta": 5, "giustiziato": 1, "moro": 1, "pentita": 1, "n\u00e9": 12, "dissociata": 1, "basilica": 1, "invasa": 6, "reclamare": 1, "calabresi": 1, "rosarno": 1, "lamezia": 5, "ridare": 9, "assurdo": 1, "tassazione": 4, "concretezza": 3, "ingiusta": 4, "debole": 2, "rilanciare": 4, "occupazione": 5, "cercher\u00e0": 2, "giancarlo": 2, "giorgetti": 2, "lupatoto": 2, "http": 40, "strasburgo": 30, "compleanno": 1, "signorini": 1, "buttando": 1, "oggivotolega": 4, "rumeno": 3, "capiti": 4, "anziane": 3, "prendeva": 2, "pugni": 5, "scopo": 4, "marcisca": 2, "indulti": 8, "\ud83d\udcccbuonsenso": 3, "spalancare": 1, "raccomandazioni": 1, "\u2611": 4, "x": 1, "costosa": 1, "doppia": 2, "soltanto": 4, "4marzovotolega": 64, "approfonditi": 2, "cifre": 7, "\ud83d\udcccnon": 1, "garantisca": 1, "bellezze": 2, "chilometri": 3, "toccato": 1, "mettendoci": 1, "finisce": 6, "parlate": 3, "convincete": 1, "agende": 1, "telefono": 3, "belpietro": 2, "piaciuto": 2, "idioti": 3, "preoccupatevi": 1, "comizi": 1, "chili": 3, "chiudo": 2, "interviste": 2, "accise": 2, "governeremo": 3, "bongiorno": 4, "averla": 1, "fattibile": 1, "pagheremo": 2, "cara": 5, "esodati": 7, "precari": 5, "cassaintegrati": 1, "b": 1, "\u274c\u274c\u274c": 1, "tagliamo": 1, "alte": 1, "aiutami": 7, "rimasto": 2, "impaurito": 1, "padrona": 1, "golden": 2, "retriever": 1, "adottato": 1, "rifugio": 3, "cane": 4, "decide": 2, "ringraziarla": 1, "\ud83d\udd34pazzesco": 1, "brumotti": 4, "troupe": 8, "selvaggiamente": 4, "lanci": 1, "massi": 1, "\u2714": 1, "tor": 2, "monaca": 1, "parco": 10, "buco": 3, "regno": 2, "renziacasa": 14, "coerenti": 1, "prendendo": 8, "credono": 1, "passer\u00e0": 2, "altruismo": 1, "portanti": 1, "\ud83d\udd35stop": 1, "spiegare": 5, "decisivi": 1, "censurata": 1, "tig\u00ed": 1, "irripetibili": 1, "cammino": 6, "grazieeeeee": 2, "uscendo": 1, "spegnete": 1, "computer": 1, "svuotacarceri": 6, "approfondire": 7, "montevecchi": 1, "facciamolo": 3, "concreto": 3, "attivare": 1, "occupi": 2, "sobrio": 1, "cataclismi": 1, "invasioni": 2, "cavallette": 2, "crollo": 2, "mercati": 7, "risiamo": 1, "pretenderebbe": 2, "comandare": 1, "\ud83d\udd35c": 1, "tutelando": 3, "coniglio": 2, "gabbia": 13, "faine": 2, "finanziatori": 2, "netti": 1, "ue": 5, "moneta": 27, "danneggia": 3, "sforare": 1, "vantaggi": 4, "svantaggi": 2, "claudio": 9, "genitore": 3, "alunno": 1, "sottoposto": 1, "provvedimento": 1, "disciplinare": 1, "prof": 9, "insegnante": 3, "\ud83d\udd35buonsenso": 1, "aggressioni": 5, "accoltellamenti": 5, "condominio": 2, "errenord": 1, "vieni": 9, "osi": 1, "caramella": 1, "punito": 2, "dissolvendo": 1, "multinazionali": 13, "salari": 3, "ispettorati": 1, "inseriremo": 1, "salario": 2, "minimo": 5, "stabilito": 1, "mancavano": 2, "molestie": 1, "normali": 1, "islamiche": 5, "illegali": 2, "piccole": 6, "denunciare": 5, "riconosci": 1, "valido": 2, "sistema": 15, "scopri": 3, "specifici": 1, "link": 4, "fac": 1, "simile": 1, "nomi": 3, "salvinipremier": 2, "votoestero": 1, "dubbi": 5, "irregolarit\u00e0": 2, "scrivete": 5, "leganelmondo": 2, "gmail": 2, "\u25cf": 4, "aire": 1, "temporaneamente": 1, "posta": 1, "plico": 3, "febbraio": 13, "duplicato": 1, "recandovi": 1, "schede": 2, "votate": 4, "buste": 2, "distrutte": 4, "aci": 1, "sorridiamo": 1, "invitare": 1, "iscriversi": 2, "invita": 3, "vergognare": 3, "\ud83d\udd34condividi": 1, "mostrer\u00e0": 2, "molteni": 2, "sub\u00ecto": 1, "cattive": 1, "intenzioni": 1, "devo": 9, "piazzale": 3, "lagosta": 1, "essermi": 1, "meritato": 1, "scontrini": 2, "difendi": 3, "ribalter\u00e0": 1, "ingiustiza": 1, "automaticamente": 1, "processato": 3, "provarlo": 1, "prosciolto": 1, "ribaltato": 1, "indizi": 1, "evidenti": 1, "dimostrino": 1, "tratti": 1, "grasso": 2, "130mila": 1, "pil": 3, "primaglitaliani": 3, "ospitati": 9, "dazi": 5, "proteggono": 1, "arance": 5, "marocchine": 4, "invadono": 2, "commercio": 3, "tunisia": 3, "cambogia": 3, "incontrollati": 1, "sottocosto": 1, "\u26a0\ufe0froba": 1, "trasformato": 3, "portando": 3, "fratello": 4, "minacciata": 2, "insultata": 1, "meritavo": 1, "irruzione": 1, "minacciarmi": 2, "insultarmi": 1, "pesantemente": 1, "capogruppo": 1, "tempesta": 2, "onorevole": 5, "seminato": 2, "educato": 1, "definiti": 2, "salviniane\u201d": 1, "fabrizio": 4, "documenti": 5, "dir\u00f2": 2, "nadia": 1, "coraggiosa": 2, "protestano": 15, "sky": 13, "struttura": 4, "versoprobo": 1, "fattura": 2, "1\u20e3": 1, "2\u20e3": 1, "islamica": 7, "prevale": 2, "3\u20e3": 1, "vincolata": 1, "dichiara": 3, "corano": 1, "chiedermi": 1, "islam": 20, "incompatibile": 1, "motel": 1, "4stelle": 1, "pisolino": 2, "passione": 12, "ventimiglia": 5, "albenga": 5, "replicato": 1, "alberto": 5, "bagnai": 5, "riuniti": 1, "agata": 1, "ramo": 1, "lavavetri": 3, "accattonaggio": 1, "prendono": 4, "sogno": 5, "sentite": 14, "mauro": 7, "panettiere": 1, "proposito": 2, "sottoscrivo": 2, "ribadii": 1, "stalking": 1, "divenne": 1, "servo": 3, "sterminio": 1, "armeni": 4, "innocenti": 3, "massacrati": 7, "islamici": 19, "olocausto": 1, "facile": 8, "rimanendo": 1, "esperto": 1, "bus": 1, "passerebbe": 1, "governato": 1, "osano": 1, "mezz": 3, "\ud83d\udd35": 2, "condividerle": 1, "solenne": 1, "martina": 3, "contratti": 2, "confrontarsi": 4, "direttore": 2, "redazione": 1, "stampa\u201d": 1, "costruttivo": 2, "bonola": 1, "crescano": 2, "pomodori": 3, "ritengo": 1, "etruria": 7, "arezzo": 3, "portafoglio": 4, "oliviero": 1, "toscani": 1, "inarrestabile": 1, "riportato": 1, "nido": 8, "equit\u00e0": 2, "notti": 2, "azeglio": 1, "irregolare": 1, "kompagna": 1, "met\u00e0": 3, "estere": 1, "quindici": 4, "riprendiamoci": 10, "considero": 1, "innamorato": 5, "meriti": 1, "riuscirci": 1, "amo": 1, "padova": 34, "soddisfatti": 2, "\ud83d\uded1\ud83d\uded1\ud83d\uded1": 1, "spaventa": 2, "stimo": 1, "orban": 1, "trump": 16, "culinario": 1, "contengono": 1, "tuteliamo": 1, "controlliamo": 1, "supermercati": 1, "rovinare": 2, "scherzi": 1, "parte\u201d": 1, "boldriniacasa": 1, "canceller\u00e0": 1, "vanterei": 1, "jobs": 5, "act": 4, "puntando": 1, "pura": 2, "fondata": 3, "sovrana": 1, "danneggiano": 1, "cambiarle": 1, "esercita": 1, "legittimadifesa": 1, "sappia": 2, "discrezionalit\u00e0": 1, "valutazione": 1, "proporzionalit\u00e0": 1, "torinese": 1, "whirlpool": 1, "delocalizzer\u00e0": 1, "slovacchia": 2, "capisce": 1, "delocalizzazioni": 1, "altropi\u00f9": 1, "slogan": 4, "sfida": 4, "vedente": 1, "arancione": 2, "profondamente": 1, "demonizzata": 1, "emette": 1, "esercitare": 1, "inflazione": 1, "deflazione": 1, "trasmettere": 1, "gedorem": 1, "andreatta": 1, "albergatore": 3, "ospitando": 2, "conversazione": 1, "cognata": 1, "nonch\u00e9": 1, "socia": 1, "numerino": 1, "ridiscutere": 1, "stupri": 2, "uccidi": 1, "occorre": 12, "baby": 3, "gang": 3, "tutt": 1, "problematiche": 1, "totalmente": 3, "condizione": 1, "ideal": 1, "standard": 1, "roccasecca": 1, "pesce": 3, "passeremo": 1, "tuscolano": 1, "iii": 1, "favorevole": 2, "sanzioni": 23, "divieti": 1, "riscoperta": 1, "suona": 3, "antico": 2, "gulia": 1, "natalit\u00e0": 1, "basso": 4, "prometto": 2, "diventano": 2, "catastrofica": 1, "670mila": 1, "stragrande": 3, "costano": 4, "giunto": 3, "farla": 5, "nuccio": 1, "altieri": 1, "gettano": 2, "maschera": 1, "stipendio": 7, "extra": 1, "litigavano": 3, "bottigliata": 1, "contributi": 8, "stanchi": 4, "imperanti": 1, "minestroni": 1, "larghe": 1, "intese": 1, "rispedirli": 4, "fontanapresidente": 1, "\ud83d\udea8\ud83d\udea8\ud83d\udea8": 1, "accerchiano": 1, "barricati": 1, "esino": 1, "lario": 1, "tipiche": 1, "facce": 2, "rispediamo": 1, "compilation": 2, "perle": 1, "boldriniane\u201d": 1, "capisco": 6, "cartella": 4, "esattoriale": 2, "importo": 1, "riprendi": 2, "subire": 3, "effetti": 2, "ossa": 1, "rovinati": 5, "caduti": 2, "depressione": 1, "restituiremo": 1, "radiofonico": 2, "inversione": 3, "guarisce": 1, "malato": 2, "aspirina": 1, "cura": 4, "drastica": 1, "permetta": 2, "produrre": 4, "prevediamo": 1, "inoltre": 4, "abolizione": 6, "fisco": 6, "prescindere": 2, "\ud83d\udd34\ud83d\udd34\ud83d\udd34pazzesco": 1, "targata": 4, "stazione": 22, "sassate": 3, "immediata": 6, "riusciamo": 5, "gelo": 3, "infarto": 3, "bollette": 6, "comoda": 1, "sistemazione": 2, "society": 1, "foundation": 1, "george": 2, "soros": 2, "onlus": 7, "principali": 2, "compiti": 1, "statutari": 1, "incontrollata": 5, "apertura": 5, "droghe": 1, "ridiscussione": 2, "stereotipi": 1, "generi": 1, "pericolosa": 1, "blocchiamolo": 1, "insofferenti": 1, "rispedire": 2, "soggiorna": 1, "pretende": 5, "camere": 2, "sciolte": 1, "negativo": 2, "rispettosi": 1, "televisioni": 3, "potenti": 3, "sevoicisieteiocisono": 1, "nando": 1, "tranne": 4, "criteri": 1, "forma": 3, "aiuti": 5, "rimboccandosi": 1, "maniche": 2, "ricostruito": 1, "mantenendo": 1, "inalterato": 1, "fatturato": 2, "sostieni": 1, "lasci": 2, "spostandomi": 1, "pasto": 1, "mance": 1, "andarmene": 1, "altroestero": 1, "ricominciare": 1, "trattenere": 1, "creando": 2, "lavoretti": 1, "sottopagati": 1, "part": 2, "licenziato": 1, "episodio": 1, "\ud83d\udd34\ud83d\udd34\ud83d\udd34follia": 1, "40mila": 3, "legali": 2, "depositato": 2, "sancisce": 1, "legittimit\u00e0": 1, "spelacchio": 1, "poesia": 6, "maestra": 3, "maria": 3, "riprenderci": 4, "risarcire": 4, "correntisti": 2, "rovinati\u201d": 1, "beffa": 3, "rino": 1, "invalido": 4, "gamba": 2, "amputata": 1, "richiama": 1, "controllare": 12, "ricresciuta": 1, "scherzando": 1, "controllino": 1, "falsi": 4, "invalidi": 5, "pudore": 1, "condanni": 1, "larivoluzionedelbuonsenso": 3, "\ud83d\udd34\ud83d\udd34\ud83d\udd34prima": 1, "massacrano": 5, "botte": 7, "derubano": 1, "trasforma": 5, "forno": 1, "oro": 8, "celebrato": 1, "schifezze": 8, "ripagano": 1, "antifascisti\u201d": 1, "vandalizzata": 1, "lamentarsi": 2, "coccola": 2, "natalizia": 1, "showville": 1, "restituir\u00e0": 1, "assegnati": 1, "concorsi": 4, "graduatorie": 4, "studenti": 6, "impegneremo": 1, "culle": 2, "radicali": 1, "bonus": 4, "beb\u00e8\u201d": 1, "ritrovare": 1, "scommettere": 1, "rispedito": 4, "sedere": 8, "librandi": 5, "barbaramente": 1, "massacrato": 10, "filippa": 1, "sorelle": 3, "normativa": 1, "vigente": 1, "ottenere": 2, "ripensi": 1, "rimedi": 1, "errore": 3, "contribuenti": 3, "interrogazione": 2, "fisser\u00e0": 1, "retribuzione": 1, "minima": 4, "introdurremo": 1, "garantito": 2, "sopravvivere": 6, "succede": 8, "esci": 8, "devi": 7, "zitto": 2, "stanza": 1, "crhome": 1, "realizzato": 3, "riforma": 22, "consentir\u00e0": 1, "ferisce": 1, "sventando": 1, "ricompensarlo": 1, "bandito": 4, "ribaltiamo": 5, "accogliereste": 1, "sperimentare": 1, "virtuale": 2, "frane": 1, "alluvioni": 1, "europei\u201d": 1, "usarli": 1, "brutti": 5, "parliamone": 1, "produzioni": 5, "giovanna": 1, "campanello": 1, "truffata": 1, "azzerata": 1, "basterebbe": 2, "bastapd": 17, "contribuiscono": 1, "positivamente": 1, "chiederemo": 2, "lavoratrice": 1, "commoventi": 1, "licenziata": 1, "chiedeva": 1, "orari": 6, "arrendere": 1, "fake": 2, "news": 12, "dignitoso": 1, "lasceranno": 1, "santi": 1, "apostoli": 1, "arrendono": 3, "sognano": 2, "dallapartedisandra": 2, "parroco": 2, "fallimento": 6, "accattoni": 1, "sacerdote": 1, "usato": 2, "salviniani": 1, "additato": 1, "intollerante": 2, "circondare": 1, "catturare": 1, "abbattere": 3, "maiali": 1, "pastori": 1, "sandra": 4, "pestata": 1, "suon": 3, "guida": 5, "espulso": 5, "teneri": 1, "miopia": 1, "congenita": 1, "occhiali": 2, "dolcezza": 1, "felicit\u00e0": 2, "prezzo": 4, "dunque": 5, "pago": 3, "cambier\u00e0": 3, "riporteremo": 1, "derubati": 5, "stanziato": 1, "serviva": 1, "durare": 1, "dovendo": 1, "guadagno": 1, "arrigoni": 1, "chiamano": 2, "democratico\u201d": 1, "volevano": 4, "basilio": 1, "striscia": 5, "documentando": 1, "sindaca": 4, "darete": 2, "\ud83d\udd34\ud83d\udd34\ud83d\udd34": 2, "asta": 1, "invalida": 2, "malata": 4, "terminale": 2, "disperata": 2, "udienza": 2, "tentato": 7, "tagliarsi": 1, "vene": 1, "ricoverata": 1, "sentita": 1, "sconvolta": 2, "fischiato": 1, "contestato": 4, "riservato": 1, "lucchini": 1, "tg24": 1, "latella": 1, "rientrare": 3, "delocalizzato": 2, "semplificato": 1, "riemerger\u00e0": 1, "aiutano": 1, "evasione": 3, "garantendo": 1, "entrate": 1, "casse": 2, "approfondimenti": 3, "tassaunica": 12, "trappola": 1, "alziamo": 1, "diventiamo": 2, "competitivi\u201d": 1, "impiegati": 1, "precarizzazione": 1, "gonfiare": 1, "statistiche": 1, "permetteva": 1, "sparendo": 1, "diplomatici": 1, "isole": 4, "mauritius": 1, "caraibi": 2, "fiji": 1, "film": 2, "esodo\u201d": 1, "racconta": 7, "francesca": 3, "lottano": 2, "infila": 1, "alza": 2, "salviamo": 2, "mandiamolo": 2, "equa": 1, "inventata": 1, "ricarica": 1, "solite": 5, "prover\u00e0": 2, "fermarli": 2, "censurano": 1, "uccisi": 2, "dimenticate": 5, "diamo": 10, "renderle": 1, "costose": 2, "veloci": 3, "chiss\u00e0": 16, "migliorate": 1, "incentivi": 2, "crescono": 3, "crollano": 1, "finiscono": 2, "lavoro\u201d": 1, "devastanti": 1, "panico": 1, "accaduto": 3, "ritirare": 3, "irresponsabilit\u00e0": 1, "dessero": 1, "direste": 1, "debiti": 4, "costretto": 4, "amministrazione": 3, "pagamento": 4, "imposta": 2, "marcia": 5, "cona": 2, "rottura": 1, "trattativa": 1, "prefetto": 5, "scoppiata": 1, "rissa": 11, "debbano": 2, "abitativo": 1, "individui": 1, "fuggono": 3, "cercano": 5, "comprensibile": 1, "padre": 10, "rifugiati": 7, "orgogliosa": 4, "smontate": 1, "palle": 31, "domando": 1, "sindacati": 4, "accogliente": 3, "clandestine": 1, "accoltellano": 1, "\u26ab\ufe0f\u26ab\ufe0f\u26ab\ufe0f": 1, "brumo\u201d": 1, "cerca": 11, "documentare": 2, "professorone": 1, "ridicolizza": 1, "puttana": 2, "mantes": 1, "jolie": 1, "molotov": 3, "spari": 2, "mortaio": 1, "incendiate": 1, "movente": 1, "possesso": 1, "morsi": 1, "regalando": 1, "multiculturalismo": 2, "maestre\u201d": 1, "mese\u201d": 1, "bernardino": 1, "consegnare": 2, "uova": 6, "nipote": 1, "ammiro": 2, "instancabilmente": 1, "negoziabile": 1, "minuscolo": 1, "container": 8, "costretta": 1, "definitivo": 1, "sbrigatevi": 1, "forzanonnapeppina": 4, "prove": 7, "recuperiamo": 1, "maltesi": 1, "coordinatrice": 1, "triton": 1, "profugo": 9, "guerra\u201d": 1, "stradale": 4, "invidiabile": 1, "giacca": 1, "ricercato": 1, "bene\u201d": 1, "soglia": 4, "troppo\u201d": 1, "\ud83d\udea9lo": 1, "schizofrenica": 1, "lato": 1, "insetti": 2, "vino": 10, "polvere": 1, "portarci": 1, "tarantole": 1, "cimici": 1, "giganti": 1, "stesso\u201d": 1, "spaventarmi": 1, "parolacce": 2, "autista": 1, "introdurre": 1, "ambientale": 1, "elicottero": 2, "merde\u201d": 1, "\u201dsignora\u201d": 1, "beh": 1, "passaggio": 1, "sparare": 2, "crede": 3, "preoccupino": 1, "amministrare": 1, "lusso": 5, "gioielli": 1, "banconote": 1, "false": 2, "truffe": 2, "scontenti": 2, "conetta": 3, "accontentati": 1, "strutture": 2, "gradiscano": 3, "eh": 5, "allevatori": 4, "classica": 1, "ubriachi": 3, "storti": 1, "fisica": 2, "vaffanculo": 2, "sassaiole": 1, "fumogeni": 6, "scontri": 2, "rappresentanti": 3, "meticci": 1, "autodefinitisi": 1, "tali": 2, "mps": 2, "renzino": 9, "legger\u00f2": 2, "massacrate": 1, "brutalmente": 1, "busto": 1, "arsizio": 1, "29enne": 1, "motivo": 10, "argia": 1, "salvarsi": 4, "wilma": 1, "dimezzato": 1, "dovuti": 2, "credibili": 1, "aliquote": 1, "diminuire": 1, "misura": 1, "strutturale": 1, "capirli": 1, "sentivano": 1, "marachella": 1, "accreditarsi": 1, "scrivendo": 1, "accrediti": 1, "cagliari2017": 1, "noiconsalvini": 6, "org": 70, "subita": 2, "pistole": 2, "kalashnikov": 2, "documentazione": 1, "conduce": 2, "disonore": 1, "quegli": 2, "pubblici": 19, "tollerano": 1, "vedova": 2, "stime": 1, "spender\u00e0": 1, "angelina": 1, "vissuto": 2, "preso": 15, "trasmissione": 7, "scarafaggi": 1, "cena": 19, "\ud83d\udd34\ud83d\udd34\ud83d\udd34basta": 1, "accanto": 1, "filippo": 1, "facci": 1, "condivisione": 2, "bacheche": 7, "vanitoso": 1, "sommessamente": 1, "tenero": 1, "ride": 5, "sognando": 1, "vederli": 1, "sognare": 6, "utopia": 1, "mostruosa": 1, "crudelt\u00e0": 1, "sconvolgenti": 1, "riempirmi": 1, "tristezza": 3, "imbestialire": 1, "disumana": 1, "badante": 1, "livorno": 4, "picchiava": 1, "insultava": 1, "allontanata": 1, "andrebbe": 2, "arrestata": 1, "rispedita": 1, "veneziano": 2, "testimone": 1, "bevevano": 1, "metteva": 2, "addosso": 4, "tranquillizzarlo": 1, "spinto": 2, "scattata": 1, "bancone": 1, "ducato": 1, "sfondare": 1, "vetrina": 1, "gasoline": 2, "padovaoggi": 1, "furgone": 3, "vetrata": 1, "fornace": 2, "allenatore": 2, "ideatore": 1, "famoso": 2, "deficit": 2, "casuale": 1, "studiosi": 2, "giustificare": 2, "analisi": 5, "scientifiche": 1, "regola": 4, "norme": 4, "arbitrari": 1, "sforeremo": 1, "portino": 1, "premieranno": 1, "convincenti": 1, "brutte": 1, "aggiornamento": 4, "deboli": 2, "terremotata": 3, "svegliarsi": 1, "trovata": 1, "approvarla": 1, "rinnoviamo": 1, "auspica": 1, "senn\u00f2": 2, "boldriniclandestina": 1, "metro": 10, "rovinata": 1, "porteremo": 2, "incita": 1, "essa": 1, "memoria": 2, "indegni": 1, "vennero": 1, "picchiati": 4, "torturati": 2, "ferocia": 2, "addirittura": 3, "ferro": 4, "stiro": 2, "banda": 9, "marocchini": 5, "latitante": 1, "condannati": 3, "ciascuno": 9, "rosina": 4, "sconsolata": 1, "giuste": 6, "ennio": 2, "duramente": 1, "colpito": 3, "ragusano": 1, "siracusano": 1, "catanese": 1, "acate": 1, "alessio": 1, "sinto": 1, "stupratore": 1, "dose": 1, "esposizione": 1, "doverosa": 1, "patria": 1, "potest\u00e0": 1, "ristoranti": 2, "fumi": 1, "emanati": 1, "bruciare": 1, "nubi": 1, "tossiche": 1, "innanzitutto": 3, "disegno": 1, "emendamento": 3, "abbinato": 1, "bilancio": 2, "altroora": 1, "aiutando": 1, "terremotate": 1, "maltrattati": 1, "propone": 6, "inascoltata": 1, "antiviolenza": 1, "\ud83d\udd34fai": 1, "carcerati": 2, "corrierelive": 1, "giada": 4, "bimba": 8, "iscrive": 1, "karate": 1, "palestra": 3, "carmelo": 3, "entrando": 2, "tana": 2, "orco": 1, "sessualmente": 1, "usando": 2, "posizione": 3, "autoritaria": 1, "costringerla": 1, "spingendola": 1, "quarantenni": 1, "raccontare": 5, "veli": 1, "togliermelo\u201d": 1, "gesto": 2, "sessuali": 3, "aiutatele": 1, "stanarli": 1, "condannare": 1, "spaccare": 2, "naso": 1, "testate": 1, "daniele": 2, "piervincenzi": 1, "nemo": 1, "escluso": 1, "scrigno": 1, "invidia": 1, "risse": 5, "pakistani": 3, "bengalesi": 1, "terrorizzati": 1, "pdacasa": 3, "ospitava": 1, "ragazzine": 1, "furto": 4, "tatua": 1, "petto": 1, "quattordicenni": 1, "musumeci": 1, "siciliana": 2, "militanti": 23, "conquistati": 1, "proporremo": 1, "premia": 1, "approveremo": 1, "tuteli": 1, "montagnola": 3, "pieni": 2, "pagatori": 1, "amati": 1, "girato": 2, "delia": 2, "arzilla": 1, "distrutta": 1, "scomparsa": 2, "marito": 7, "eppure": 8, "maia": 2, "bull": 1, "terrier": 1, "ricominciato": 1, "diventati": 2, "coppia": 7, "inseparabile": 1, "zampe": 2, "tenerezze": 1, "belpasso": 1, "consumiamo": 5, "baracche": 1, "rione": 2, "taormina": 2, "palagonia": 2, "islamista": 2, "new": 1, "york": 1, "confrontarmi": 2, "opinioni": 1, "convincente": 3, "ragusa": 1, "compriamo": 3, "insiste": 5, "portarsi": 1, "sacchi": 3, "capodanno": 8, "sikania": 1, "agrigentina": 1, "residenti": 14, "alfano": 63, "bacione": 2, "calvi": 1, "risorta": 1, "distrutto": 4, "temono": 1, "trapani": 1, "raggiungere": 1, "aiutati": 2, "sdfp2017": 1, "tendenza": 1, "caviale": 1, "champagne": 1, "rimprovera": 1, "linguaggio": 1, "seminerei": 1, "rispondereste": 2, "diffondono": 1, "stili": 1, "et\u00e0": 5, "67anni": 1, "piddini": 3, "rovistare": 1, "scarti": 1, "gradiscono": 1, "formigli": 1, "ricordarci": 1, "spezzare": 1, "famiglia\u201d": 1, "marcire": 3, "tommy": 5, "paola": 4, "nata": 2, "sorda": 1, "smontato": 2, "euroballe": 1, "bacheca": 12, "ricevuta": 1, "statale": 5, "chilometro": 1, "lombardi": 5, "veneti": 4, "referendum": 63, "esportare": 1, "spacciatore": 1, "vendere": 6, "erba": 1, "governati": 2, "cucinare": 3, "fornelli": 1, "ristorante": 3, "professionale": 1, "conferma": 3, "cucina": 5, "imbattibile": 1, "ristoratori": 3, "cuochi": 3, "camerieri": 3, "difficilissimo": 1, "mentito": 2, "laurea": 2, "diploma": 1, "sostanza": 2, "sfreccia": 1, "autoblu": 1, "istruzione": 2, "bell": 5, "corsa": 4, "dovuto": 11, "graziano": 3, "stacchio": 3, "innocenza": 2, "bruciati": 2, "legalmente": 1, "necessaria": 2, "missioni": 2, "ermes": 3, "mattielli": 2, "mor\u00ec": 1, "appreso": 1, "dover": 2, "derubato": 3, "umiliato": 1, "burocrate": 1, "parassitario": 1, "tenuto": 1, "duro": 5, "suicidati": 1, "amministrazioni": 1, "fida": 1, "allegria": 2, "fresche": 1, "classe": 4, "attenti": 7, "persa": 1, "night": 2, "tabloid": 1, "rapire": 2, "kenioti": 1, "sorella": 2, "oratorio": 2, "pianto": 2, "capivo": 1, "succedendo\u201d": 1, "riusciti": 4, "albergo": 21, "guadagna": 4, "spuntano": 1, "consuma": 1, "bolletta": 2, "messi": 3, "servano": 1, "supplicarlo": 1, "tranquillamente": 2, "normalmente": 1, "tortura": 5, "iostoconlapolizia": 1, "restituiscano": 1, "ricevuti": 3, "freghiamo": 1, "corrette": 1, "tutelare": 3, "produttivo": 2, "lavorativo": 1, "aperte\u201d": 1, "scoperta": 1, "vini": 2, "attualmente": 1, "quantit\u00e0": 2, "prodotto": 3, "produzione": 2, "prodotta": 1, "inferiore": 3, "mediamente": 1, "valorizzare": 2, "capitreno": 1, "esigono": 1, "armadietti": 1, "quadri": 2, "elettrici": 1, "carrozze": 1, "quotidianit\u00e0": 1, "pretendere": 7, "risorsa": 7, "cassonetto": 1, "escandescenza": 1, "inveisce": 1, "ripulita": 5, "sopravvivenza": 2, "concesso": 2, "abusiva": 4, "ripulire": 6, "badia": 2, "rovigo": 9, "miriam": 1, "dipinti": 1, "pagarsi": 2, "residence": 2, "accontenterebbe": 1, "magazzino": 1, "capanna\u201d": 1, "75mila": 1, "fantasma": 3, "seguita": 1, "algerini": 1, "drogati": 1, "vigilanza": 1, "algeria": 1, "curarla": 1, "rimettere": 2, "moto": 1, "immunitario": 1, "materia": 2, "contribuente": 1, "catalani": 1, "assordante": 1, "malmenati": 1, "chiedevano": 2, "manganelli": 1, "gomma": 1, "disperati": 3, "scantinati": 2, "edifici": 1, "abbandonati": 1, "missione": 3, "incinte": 1, "impunibili": 1, "travestono": 1, "artiste": 1, "avvicinare": 1, "fregargli": 1, "stile": 4, "immagine": 4, "culla": 3, "fregato": 4, "catalogna": 2, "circondano": 1, "mandandone": 1, "las": 1, "vegas": 1, "faziosa": 2, "mollato": 1, "amichetti": 3, "casino": 6, "lasciati": 4, "lanciarmi": 1, "sputi": 3, "blaterano": 1, "ascoltateli": 1, "smetterla": 2, "sinistroide": 1, "risponde": 6, "frega": 15, "cretina": 1, "annetto": 2, "potrebbe": 2, "imparerebbero": 1, "vitto": 4, "karaboue": 1, "fargli": 1, "informi": 1, "deficiente": 1, "cappuccio": 1, "giallo": 1, "platea": 2, "consulenti": 1, "abolire": 4, "fiato": 2, "eliminare": 3, "inutile": 10, "dannosa": 1, "spesometro": 2, "rubare": 6, "legislatura": 1, "kompagni": 10, "integrarsi": 2, "asfalta": 1, "conduttore": 2, "ammette": 4, "scene": 2, "quotidiane": 2, "radicalizzati": 1, "molenbeek": 2, "belgio": 1, "segnali": 1, "mostrano": 1, "tipi": 2, "culture": 5, "integrabili": 1, "cristiano": 1, "significa": 3, "negare": 4, "denutrizione": 1, "magliana": 2, "diffonderla": 1, "vergognerei": 1, "allevato": 1, "allucinanti": 1, "minorenni": 7, "accusati": 1, "susanna": 3, "zitta": 2, "particolari": 1, "agghiaccianti": 1, "successo": 4, "umano": 2, "ceccardi": 1, "c\u00e0scina": 1, "sognarlo": 2, "walt": 1, "disney": 1, "diventate": 2, "nascoste": 3, "finte": 2, "turiste": 1, "passeggio": 1, "subendo": 1, "balordi": 5, "molestatori": 1, "raddoppiare": 1, "indennit\u00e0": 1, "possiede": 2, "ciechi": 4, "strappare": 2, "torre": 3, "angela": 2, "armato": 8, "piccone": 3, "sfascia": 1, "terrorizza": 1, "cattedre": 1, "cravatta": 2, "educando": 1, "mentale": 2, "scambio": 2, "tesi": 2, "partendo": 1, "iscriviti": 3, "segreteria": 2, "sfrattata": 2, "donatale": 1, "rendete": 2, "grida": 3, "vendetta": 1, "fiastra": 1, "macerata": 2, "detenuti": 5, "fassino": 3, "spalleggiato": 1, "inneggia": 2, "multiculturale": 2, "pronunciare": 1, "blocchiamo": 3, "bloccarlo": 1, "zittisce": 1, "cittadina": 4, "esasperata": 1, "riprende": 1, "pontida17": 2, "imbavaglieranno": 1, "grazieeeee": 1, "forzalega": 3, "rosicone": 1, "sciacallo": 1, "orecchie": 2, "cresciamo": 2, "prosciugano": 1, "esproprio": 1, "proletario": 1, "ricorso": 4, "bianco": 8, "sessista": 1, "imbavagliarci": 1, "sbagliate": 1, "africano": 2, "pari": 1, "ricoveratela": 1, "usano": 1, "domiciliari": 4, "accusata": 1, "minacciare": 2, "dicendole": 1, "scopare": 1, "famigliola": 1, "avvantaggiato": 2, "pensionato": 7, "lavoratore": 1, "dipendente": 1, "accorto": 2, "valevano": 1, "vicesegretario": 1, "usciranno": 1, "paparino": 1, "figo": 1, "ritardo": 1, "funziona": 7, "sostenibile": 2, "equo": 1, "progressivo": 1, "percentuale": 1, "superiore": 1, "lascerebbe": 1, "beneficio": 1, "francofonte": 1, "paghetta": 1, "vestiti": 4, "mobili": 3, "balcone": 1, "leganord": 5, "trecate": 1, "novara": 3, "indisturbato": 1, "approdi": 1, "bagnanti": 1, "allarme": 3, "salire": 2, "toccarmi": 1, "ammazzo": 3, "addetti": 1, "favoriscono": 1, "favorito": 1, "penalizzato": 1, "venduto": 2, "tuteleremo": 1, "franco": 6, "carabiniere": 5, "congedo": 1, "giardino": 4, "sacrosante": 1, "addio": 4, "gastone": 1, "moschin": 1, "scena": 2, "rendo": 1, "riordinare": 1, "applaudite": 1, "immagino": 2, "accorge": 3, "moi": 1, "madonnina": 5, "riccioli": 1, "fisarmonica": 1, "bastaaaaa": 3, "casaaaaa": 5, "alba": 4, "centinaio": 4, "accampati": 2, "giardini": 3, "indipendenza": 28, "discorsi": 1, "falso": 8, "pagheranno": 5, "gian": 2, "blangiardo": 2, "bicocca": 2, "dimarted\u00ec": 2, "tosta": 5, "gettato": 2, "cazzola": 4, "bronzo": 4, "ricoveratelo": 3, "quinta": 10, "colonna": 10, "concederei": 2, "quadro": 4, "firmano": 3, "cercava": 1, "unici": 5, "lacittadinanzanonsiregala": 5, "30mila": 2, "statoladro": 3, "frequenti": 1, "leo": 2, "spiega": 11, "rivedendo": 1, "logica": 1, "andiamogovernare": 1, "offerti": 1, "coop": 7, "medici": 3, "ridicolizzate": 1, "adempimenti": 1, "burocratici": 1, "ocse": 1, "luigi": 2, "carbone": 1, "massimi": 1, "esperti": 1, "semplificazione": 1, "amministrativa": 1, "zavorra": 1, "orlando": 3, "entrambi": 2, "annegare": 1, "affondare": 1, "vergognosi": 2, "bugiardi": 4, "quereliamo": 2, "merlettaia": 1, "burano": 1, "tramandare": 1, "spirito": 2, "saviano": 4, "ignorante": 2, "farneticante": 1, "sgrammaticato": 1, "leviamo": 1, "accerchiati": 1, "ritrovano": 2, "coraggioso": 5, "zuccaro": 3, "eventuali": 1, "beccata": 1, "ribella": 1, "sbava": 1, "facciamopulizia": 5, "moschea": 5, "cavalcanti": 1, "arrabbiano": 1, "controllore": 3, "parente": 1, "bit": 4, "2vtdf6h": 1, "sudanese": 1, "zigzagava": 1, "rubata": 2, "vigile": 2, "immobilizzarlo": 1, "preziosa": 1, "boldriniana": 2, "pluripregiudicati": 1, "scandalizzano": 1, "povia": 1, "artista": 2, "efficaci": 2, "facciamoli": 2, "balia": 1, "malpensante": 1, "agente": 3, "impossibili": 1, "riconoscerci": 1, "discutono": 2, "inviare": 2, "cgil": 5, "allegri": 3, "corre": 4, "pagarvi": 3, "autostrada": 5, "cesenatico": 3, "insegna": 5, "organizza": 1, "camollia": 1, "posizioni": 1, "demografica": 1, "vuote": 3, "saldo": 1, "chiarissimo": 1, "trasmesso": 2, "reti": 2, "unificate": 2, "attendo": 3, "manifestato": 2, "bitonci": 5, "evitato": 1, "strane": 1, "connivenze": 1, "processi": 2, "bagnini": 1, "dir\u00e0": 6, "bottiglia": 3, "correr\u00e0": 1, "2tx5rva": 1, "ladispoli": 2, "grando": 1, "boldriniane": 3, "nordafricane": 1, "vomito": 2, "schizzi": 1, "sembrata": 1, "rubato": 4, "valigie": 1, "malcapitati": 1, "aspettando": 7, "mandarla": 1, "scippo": 1, "metropolitana": 4, "pesticidi": 2, "ceta": 2, "canada": 1, "agroalimentare": 1, "rinunciamo": 1, "stopceta": 1, "gridato": 2, "squadrismo": 1, "enricocipiace": 1, "macronno": 1, "documentato": 2, "rivolta": 5, "deperitissimi": 1, "vasco": 2, "by": 2, "interroga": 1, "sconfitta": 4, "silvana": 1, "nazioni": 2, "sovrane": 1, "organizzato": 3, "buccisindaco": 1, "sudore": 1, "elettorali": 3, "consumarsi": 1, "suola": 1, "scarpe": 3, "candidiamo": 1, "vittorie": 5, "mancata": 2, "frazioni": 1, "aquilane": 1, "biondisindaco": 1, "settimane": 3, "esordio": 1, "invia": 2, "piangono": 1, "iovoto": 8, "sicambia": 1, "25giugno": 8, "lavatrici": 1, "pegli": 1, "entriamo": 1, "ascoltiamo": 3, "risolviamo": 1, "pulite": 1, "hitler": 1, "cretino": 2, "deliranti": 2, "accuse": 3, "santoro": 5, "pagate": 5, "canone": 6, "parlava": 1, "promessi": 2, "padovani": 1, "governata": 2, "salta": 1, "siriana": 1, "regalarla": 1, "omaggio": 2, "galantino": 3, "segretario": 5, "vescovi": 1, "attaccando": 1, "ignobili": 1, "gazzarre": 1, "proporrei": 1, "rinunciando": 1, "introiti": 1, "dimettendosi": 1, "immigrate": 2, "ripuliamo": 3, "sboarina": 1, "orologi": 1, "macchine": 4, "permettere": 2, "fila": 10, "teodoro": 1, "frana": 1, "incombente": 1, "sottomessa": 2, "theresa": 1, "may": 1, "donald": 4, "zingarauto": 1, "ricambi": 1, "concessionaria": 1, "mercedes": 2, "audi": 2, "prezzi": 1, "stracciati": 1, "intestate": 1, "venditore": 1, "finanziamenti": 1, "fregarci": 1, "fornitori": 2, "rimborsi": 1, "irpef": 3, "decenti": 1, "permette": 3, "scommessa": 2, "allargare": 1, "penalizza": 1, "coinvolge": 1, "girer\u00f2": 1, "confermare": 1, "fissa": 1, "estive": 1, "minor": 1, "ambizione": 1, "informazioni": 5, "disse": 1, "missionario": 1, "pozzi": 1, "arricchiscono": 2, "malavita": 1, "riempiono": 2, "maschi": 4, "sottratti": 1, "umanitario": 1, "scontrata": 1, "premi": 1, "obama": 3, "20mila": 4, "partorire": 2, "altezza": 1, "investirete": 1, "durer\u00e0": 1, "conoscono": 4, "elezionisubito": 3, "rinviare": 2, "siro": 2, "van": 5, "sfroos": 5, "affittare": 1, "pensateci": 1, "cristo": 1, "indovinate": 7, "gliel": 1, "scuse": 1, "altroordine": 1, "dev": 1, "austria": 8, "definitiva": 1, "rispediti": 3, "scontare": 3, "giocatori": 1, "arabia": 2, "saudita": 4, "trasferta": 2, "australia": 1, "rifiutano": 4, "londra": 5, "votano": 6, "moschee": 6, "finanziate": 2, "lontanamente": 1, "sospettabile": 1, "fiancheggiare": 1, "tarato": 1, "credevo": 1, "allah": 7, "bivaccanti": 1, "smettete": 1, "uscite": 1, "passaporto": 1, "weekend": 6, "questadomenica": 1, "votalega": 1, "votanoiconsalvini": 1, "spreconi": 1, "ricovero": 2, "coatto": 1, "obbligassero": 1, "statuto": 1, "risparmierebbero": 1, "juve": 3, "marliana": 1, "pistoia": 3, "giornalistone": 1, "corriere": 16, "super": 4, "partes": 1, "candidi": 1, "eleggere": 1, "11giugno": 2, "minniti": 2, "prefetti": 5, "occuper\u00e0": 2, "chieder\u00f2": 1, "sigillare": 1, "famigerato": 2, "olimpico": 3, "molte": 5, "richiedenti": 3, "entri": 8, "mandino": 1, "tollerabile": 1, "interi": 1, "stupisce": 1, "radicalizzi": 1, "pazzesca": 1, "tiburtina": 2, "piacerebbe": 5, "residente": 2, "metti": 5, "santeramo": 1, "toccati": 1, "afferma": 4, "vendita": 2, "cellulari": 1, "poverini": 8, "marce": 1, "imbecilli": 5, "astensione": 1, "reinserimento": 2, "combattenti": 1, "decapita": 1, "sgozza": 1, "siria": 8, "milza": 1, "preparazione": 1, "zen": 1, "coraggiose": 2, "ismaele": 1, "vardera": 1, "cigni": 1, "preferiate": 1, "incappucciato": 1, "bagnoli": 5, "aggredita": 2, "altromigrante": 1, "violentarla": 1, "bomba": 2, "assistere": 1, "veramente": 12, "miliardario": 1, "spuculatore": 1, "dona": 3, "riempire": 6, "diventare": 2, "meticcia": 1, "blocchiamoli": 1, "arrabbiando": 1, "esistere": 1, "sacche": 1, "fanatismo": 2, "osceni": 1, "sturi": 1, "accolga": 1, "soccorri": 1, "salvi": 1, "riporti": 1, "venuti": 3, "dirci": 1, "mostrato": 1, "emozionati": 1, "congressolega": 1, "vaccini": 1, "vaccinato": 1, "scusate": 2, "migrante": 3, "caduta": 1, "ismail": 1, "tommaso": 2, "yousef": 1, "hosni": 1, "riduco": 1, "aumentate": 1, "aumentata": 1, "moltiplicano": 2, "intercettazioni": 3, "vicende": 1, "penseranno": 1, "calcetto": 2, "calcinculo": 1, "banchieri": 11, "nasconderanno": 3, "aiutaci": 6, "asfaltato": 3, "vitalizi": 1, "imbrogliare": 1, "cappellino": 3, "telefonino": 3, "corteo": 7, "viali": 1, "malissimo": 2, "esagero": 3, "liberarci": 7, "pista": 1, "acquistare": 2, "acceleratore": 2, "lineare": 2, "curare": 3, "malati": 6, "tumore": 3, "gerardo": 1, "autodromo": 1, "siateci": 1, "aiutiamo": 5, "onoro": 1, "militante": 3, "continui": 1, "unita": 2, "domenicavotasalvini": 1, "sedi": 4, "regolamentocongresso": 1, "ancheluivotasalvini": 1, "accoglierne": 1, "mettiamoci": 1, "mirco": 2, "basconi": 1, "intercettando": 1, "banditi": 3, "albanesi": 2, "gomme": 1, "fermali": 1, "proiettile": 1, "rimbalzo": 1, "s\u00e9": 1, "viviamo": 3, "parli": 2, "parecchi": 1, "crozza": 4, "buio": 2, "difendervi": 2, "prendete": 1, "educatore": 1, "vergognarci": 1, "sostituzione": 5, "inviata": 1, "parisella": 1, "termini": 3, "aiutata": 1, "tassista": 1, "compatimento": 1, "preoccupano": 2, "tirano": 2, "volata": 1, "corrado": 1, "mandreoli": 1, "lecito": 3, "legittimadifesasempre": 7, "migrazione": 1, "carattere": 1, "lasciatelo": 1, "iostoconzuccaro": 1, "arrabbiati": 1, "razzolano": 1, "spiego": 1, "memorabili": 1, "neonazista": 1, "loreto": 1, "esserlo": 1, "omosessuale": 2, "handicap": 1, "frase": 1, "attribuisce": 1, "conoscere": 5, "concertone": 1, "attacchi": 4, "andr\u00e9": 4, "augusta": 4, "piombino": 1, "dese": 1, "attentamente": 1, "capo": 1, "penultima": 1, "persino": 3, "tenendo": 1, "inchiodate": 1, "infermiere": 1, "muratore": 3, "camionista": 1, "torneremo": 4, "affamando": 1, "mini": 1, "gran": 12, "france": 2, "merci": 4, "chiudere": 10, "delocalizzare": 1, "censureranno": 2, "espulsionidimassa": 1, "occorra": 1, "cari": 2, "regolarmente": 2, "usanze": 1, "accomunati": 1, "marmaglia": 1, "infesta": 1, "marted\u00ed": 1, "sembrava": 2, "yalta": 1, "crimea": 6, "misconocimento": 1, "crimeana": 1, "adotta": 1, "agnellini": 1, "approvasse": 1, "macellazione": 1, "rituale": 1, "milanistan": 5, "sufficienti": 1, "hellen": 1, "lotto": 1, "chiave": 5, "malvivente": 1, "stendi": 1, "stenda": 1, "eccesso": 11, "stufi": 2, "cacciavite": 1, "pluripregiudicato": 1, "giuliana": 1, "colpevole": 4, "prevenire": 2, "tragedie": 2, "liberati": 1, "500mila": 3, "risponderanno": 1, "svezia": 3, "reagiscono": 2, "cadaveri": 1, "straziati": 1, "tir": 1, "guidato": 2, "finto": 2, "terrorista": 1, "spot": 5, "arrendiamoci": 3, "eurabia": 2, "franca": 1, "beccato": 3, "slavo": 1, "budrio": 1, "ecologica": 1, "ferrarese": 2, "gira": 6, "africana": 1, "sparano": 1, "gambe": 3, "arrestarlo": 1, "esagerato": 2, "stoccolma": 2, "stazionano": 1, "gratuita": 3, "provocazioni": 1, "fomentato": 1, "online": 2, "progettare": 2, "palaolimpia": 1, "aspirano": 1, "optional": 1, "bacio": 2, "marinepr\u00e9sidente": 1, "alsazia": 1, "taccio": 1, "riavere": 1, "occupata": 2, "obbligatorio": 3, "nozioni": 1, "addestramento": 2, "venute": 2, "delinquere": 3, "verona25aprile": 3, "cavallotti": 1, "scrivono": 1, "spettacoli": 1, "alcolismo": 1, "bastadegrado": 1, "aspiranti": 2, "rialto": 1, "obbligato": 1, "ucciderli": 1, "guadagniamo": 1, "prendersela": 1, "difendano": 1, "ladre": 2, "camper": 10, "vivevano": 1, "continuavano": 1, "portate": 2, "potevano": 3, "poverine": 1, "piuttosto": 4, "madri": 1, "preoccupazione": 2, "altroislamizzazione": 1, "lingue": 1, "ismaelesindaco": 2, "perseguitare": 1, "artigiano": 2, "fanon": 1, "spostato": 1, "fregando": 2, "riconosciuti": 1, "verificare": 3, "bilanci": 1, "arricchendosi": 1, "tedeschi": 2, "oltreleuro": 3, "bastaeuro": 26, "efe": 1, "jerry": 1, "ogboru": 1, "aspirante": 2, "rapper": 2, "scriveva": 1, "nigeria": 3, "buttino": 2, "poletti": 2, "retorica": 2, "ristrutturarsi": 1, "marta": 1, "mantenga": 1, "demenziali": 6, "isis": 23, "foraggi": 1, "promette": 2, "sante": 2, "avvengono": 2, "populisti": 9, "affermare": 1, "ribaltare": 2, "mitico": 2, "mago": 1, "zurl\u00ec": 1, "cino": 1, "tortorella": 1, "infanzia": 1, "mitica": 2, "turchi": 1, "comanderemo": 1, "esteri": 2, "turco": 3, "inizieranno": 1, "colonizzazione": 1, "fallaci": 5, "lucidamente": 1, "combattuti": 2, "alleati": 4, "terroristico": 1, "attentatore": 1, "finora": 1, "ferite": 1, "angolo": 4, "cosiddetti": 4, "pacificit\u00e0": 1, "arredo": 1, "urbano": 1, "imparare": 6, "intenzionate": 1, "troppa": 3, "stilista": 1, "alviero": 1, "martini": 1, "rapinato": 3, "marmellata": 3, "sottrarre": 1, "conosco": 1, "creo": 1, "verdi": 9, "villanova": 1, "sanit\u00e0": 2, "pazienti": 1, "vescovo": 2, "chioggia": 1, "adriano": 5, "tessarollo": 1, "chiacchierano": 1, "necessit\u00e0": 1, "atteggiamento": 2, "muovono": 2, "dito": 9, "sputtano": 1, "regime": 2, "sbagli": 3, "west": 1, "svizzera": 4, "addestrati": 1, "inesistente": 1, "entrarti": 1, "steso": 3, "ribadiamolo": 1, "complicano": 1, "detenere": 1, "notturna": 1, "aggredendo": 1, "perfettamente": 1, "assurdit\u00e0": 1, "legislazione": 1, "n": 6, "giace": 1, "rappresentata": 1, "facinorosi": 1, "benissimo": 1, "riuscir\u00e0": 1, "partecipa": 3, "querelina": 1, "denaro": 4, "permettersi": 3, "fiat": 1, "coccole": 3, "zerman": 1, "mogliano": 3, "abitudine": 1, "bagni": 1, "riguardi": 1, "organizzano": 1, "maiconsalvini": 2, "originaloni": 1, "riprendono": 1, "colpo": 6, "bestia": 5, "gole": 1, "profonde": 1, "tessere": 2, "fenomeno": 8, "circondato": 1, "patiti": 1, "cacceremo": 2, "accogliamo": 3, "sfigati": 9, "palacongressi": 1, "iene": 3, "sfider\u00e0": 1, "deciderlo": 1, "verdini": 4, "cicchitto": 1, "casini": 2, "indagati": 2, "incatenati": 1, "aspettare": 3, "succedere": 2, "maroni": 8, "rixi": 2, "carovana": 1, "manderei": 3, "bum": 1, "offro": 2, "urlano": 4, "dannati": 1, "magico": 4, "cecchi": 1, "paone": 1, "rime": 2, "pianeti": 1, "ditelo": 1, "tavernelli": 1, "federica": 2, "uccisa": 1, "besik": 1, "jikidze": 1, "apprezzo": 2, "chiamo": 2, "sti": 1, "ni": 1, "condannatemi": 1, "moldavo": 1, "derubarlo": 1, "nottetempo": 1, "aggredendolo": 1, "confermata": 2, "discutere": 5, "iostocoltabaccaio": 1, "dedicati": 2, "nazifascisti": 1, "applaudivano": 1, "david": 6, "amine": 1, "aassoul": 1, "\u2018aziz": 1, "conficcandogli": 1, "gola": 2, "trovarsi": 1, "tantomeno": 1, "parolina": 1, "fedina": 2, "penale": 3, "circolava": 1, "denunciato": 3, "ergastolo": 7, "aggiunge": 1, "riconoscere": 2, "devoluto": 1, "guadagnava": 1, "11mila": 1, "nazifascista": 1, "comportamenti": 1, "chiacchierone": 3, "ascoltatori": 2, "manfrine": 1, "tengono": 1, "cominciano": 2, "darmi": 3, "voltastomaco": 1, "bando": 1, "riprendiamo": 4, "sciogliamoilpd": 1, "amano": 1, "aggredire": 2, "analoga": 1, "zecche": 5, "lavoravate": 1, "risparmiavate": 1, "lira": 3, "smonto": 1, "avvantagger\u00e0": 1, "consumatori": 3, "ormoni": 1, "mangino": 4, "megaville": 1, "fatevela": 1, "lager": 1, "brexit": 5, "foiba": 1, "irreversibile": 1, "draghi": 1, "germanica": 2, "massacrando": 8, "circolo": 2, "arci": 3, "padoan": 2, "francesco": 9, "affrontare": 4, "nude": 1, "equipaggiamento": 1, "potremmo": 1, "spray": 1, "peperoncino": 1, "morto": 8, "maccari": 1, "coisp": 1, "scarica": 4, "diffondi": 10, "manuale": 9, "cervello": 5, "rompo": 1, "camminate": 1, "rotelle": 1, "meriterebbe": 4, "sospensione": 5, "rinnovo": 4, "streaming": 9, "informarsi": 2, "televisione": 3, "gratuitamente": 6, "sito": 20, "zanni": 2, "modera": 1, "proviamo": 1, "spiegarvelo": 1, "scaricate": 1, "illustrava": 1, "riascoltare": 1, "previsioni": 1, "euristi": 1, "moby": 1, "colloca": 1, "malvagi": 1, "accostamenti": 1, "cattivoni": 1, "oni": 1, "edicolante": 1, "preda": 1, "furia": 2, "alterazione": 1, "spacca": 5, "psicologici": 1, "kabobo": 3, "ricostruire": 4, "dimentichiamoci": 1, "esenzione": 3, "totale": 5, "chiederti": 1, "batti": 2, "montagne": 10, "inferno": 3, "disoccupata": 2, "dicevano": 1, "lucida": 1, "rispondeva": 1, "proponevo": 1, "merde": 2, "pizzo": 1, "senzatetto": 1, "linate": 2, "taglieggiato": 1, "cacciata": 1, "puzza": 1, "vitalizio": 1, "tirare": 5, "campare": 3, "votosubto": 1, "considerati": 1, "trattamento": 2, "dotazioni": 2, "assumendo": 1, "colmare": 1, "carenza": 1, "coblenza": 1, "costruiremo": 1, "moriremo": 6, "lasciatemi": 1, "scheda": 4, "legittimo": 2, "populista": 4, "trovare": 5, "sommersi": 1, "neve": 4, "chiamare": 5, "enel": 1, "tollo": 1, "ncd": 5, "lista": 3, "ringraziato": 3, "criticano": 3, "doposci": 1, "esistente": 1, "arischia": 1, "frazione": 2, "atri": 1, "svegliano": 1, "partenza": 4, "rovinando": 1, "ville": 2, "risarcisci": 1, "passata": 2, "mettera": 1, "ospitiamo": 1, "guerriglieri": 1, "avorio": 1, "cresciuto": 1, "gestore": 1, "agriturismo": 5, "corsi": 2, "disertate": 1, "preferivano": 1, "alcol": 2, "birra": 5, "armadi": 1, "prostitute": 3, "caccia": 2, "caprioli": 1, "abbattuti": 1, "macellavano": 1, "cucinavano": 1, "diffusa": 1, "diciotto": 1, "faber": 1, "distribuirli": 1, "osato": 1, "ristoratore": 1, "passer\u00f2": 1, "ravenna": 2, "osteria": 1, "discorso": 4, "musulmano": 1, "don": 1, "corbo": 1, "cattivi": 3, "madonna": 3, "burqa": 2, "mentalmente": 1, "integralisti": 1, "accendiamo": 1, "candela": 1, "ramadan": 1, "tel": 1, "parrocchia": 1, "combattuto": 2, "istituo": 1, "tumori": 1, "fortune": 2, "doveroso": 1, "ilprogettogiovani": 1, "sesto": 4, "fedeli": 1, "ridicolo": 4, "crociati": 1, "fabbricare": 1, "euroidioti": 1, "madrid": 1, "nizza": 1, "capir\u00e0": 1, "intensificare": 1, "colonia": 3, "sfondo": 7, "richiedienti": 1, "ripeta": 1, "bocciano": 1, "incollata": 1, "ripromettiamo": 1, "fondamentali": 1, "aveterottolepalle": 1, "festeggiano": 1, "espellono": 3, "ges\u00f9": 3, "fallita": 1, "rottamare": 1, "liberarsi": 4, "scotch": 1, "agosto": 6, "matto": 1, "panettone": 1, "mangia": 6, "firmare": 52, "poltronara": 1, "ridicola": 1, "dimettersi": 1, "sindacalista": 1, "tessile": 1, "portaci": 1, "girano": 6, "argomentare": 1, "mattarellum": 1, "consultellum": 1, "proporzionale": 1, "esperimento": 2, "infernale": 1, "monetaria": 1, "noooooooo": 2, "lezioncina": 1, "belli": 9, "collaborato": 1, "dispiaciuta": 1, "padroni": 7, "re": 2, "nudo": 3, "dimette": 1, "siiiiiiiii": 1, "nooooooo": 1, "incapace": 12, "arricchire": 2, "cooperative": 4, "iovotono": 99, "conclusivo": 1, "convinciamo": 1, "indecisi": 3, "inganni": 1, "napolitano": 18, "dettato": 1, "shopping": 1, "barzelletta": 4, "prenderci": 2, "impegnate": 1, "ridiamo": 1, "indeciso": 1, "convincere": 2, "convince": 2, "letterine": 2, "milionari": 2, "industriali": 2, "fama": 1, "ricorrere": 1, "sbugiardato": 1, "votiamo": 4, "finanzieri": 3, "lobbisti": 1, "tenga": 1, "risparmia": 1, "abolito": 4, "spendiamo": 1, "comprato": 1, "paghiamo": 4, "senati": 1, "sovrano": 1, "schiavo": 1, "smiraglia": 1, "sistemata": 1, "riprenderanno": 1, "ricordati": 1, "scaricare": 3, "risulta": 2, "fuggire": 1, "romina": 1, "garda": 3, "serracchiani": 5, "vice": 1, "truffate": 1, "speculatori": 2, "150mila": 2, "pensionati": 10, "definirli": 1, "cacciamoli": 3, "renzata": 2, "semplifica": 1, "prevista": 1, "introduzione": 1, "trimestrale": 1, "titolari": 1, "obbligher\u00e0": 1, "tonnellate": 2, "scartoffie": 1, "diluvio": 3, "massoni": 2, "potentoni": 1, "travaglio": 1, "incider\u00e0": 1, "potremo": 2, "gentilmente": 4, "cartelli": 4, "divelti": 1, "rovesciati": 1, "intimidazioni": 1, "naturalmente": 4, "4dicembre": 24, "mondov\u00ec": 2, "narzole": 1, "asti": 1, "significativo": 1, "stupirsi": 1, "etichette": 2, "globalizzato": 1, "giunte": 2, "rosse": 4, "tantissima": 4, "voteranno": 3, "fenomena": 1, "letame": 2, "quinto": 4, "autori": 2, "rappresentante": 2, "assalitori": 1, "necrofila": 1, "zilio": 1, "taci": 7, "protetto": 1, "renz": 1, "svegliarmi": 1, "esulta": 1, "dolori": 1, "pancia": 3, "insopportabili": 1, "battutona": 1, "digerito": 1, "rosicare": 1, "metterli": 1, "espropri": 2, "mascherati": 1, "intende": 1, "centralizzare": 1, "zittire": 1, "coraggiosi": 1, "badanti": 2, "stuprate": 1, "fesserie": 1, "caserme": 1, "tornino": 3, "voter\u00f2": 2, "convintamente": 1, "stuprano": 1, "chiari": 2, "palpeggia": 1, "ragazzina": 1, "molesta": 2, "fiano": 1, "accogliamoli": 2, "attendere": 2, "istituti": 2, "apprendevano": 1, "salvava": 1, "votavano": 2, "facciamole": 1, "propaganda": 2, "schiforma": 4, "statista": 1, "rileggo": 1, "testo": 1, "convinco": 1, "prostituzione": 19, "esclusiva": 1, "tacciono": 2, "fatela": 2, "rafforzare": 1, "orgogliosamente": 3, "raccontano": 2, "leone": 4, "votazioni": 1, "sostenuto": 1, "pocket": 1, "money": 1, "telese": 1, "finge": 2, "ruberie": 2, "complicazioni": 1, "sovrintendenze": 1, "inserendo": 1, "dodici": 2, "definitivamente": 1, "tredici": 1, "mosso": 2, "str": 1, "censurati": 1, "presentate": 1, "accolte": 1, "portati": 1, "storico": 5, "maledetto": 1, "subiti": 1, "affluenza": 1, "quorum": 1, "patentato": 1, "centrosinistra": 1, "sereno": 4, "firenzeeeee": 1, "tuttiafirenze": 5, "accumoli": 1, "rieti": 2, "rita": 1, "maialebradodinorcia": 1, "rialzare": 2, "proponendo": 1, "cinesi": 2, "uccidono": 3, "altromade": 1, "preavviso": 3, "poltronaio": 1, "spaccati": 1, "nullafacenti": 1, "coccolati": 1, "sfigato": 2, "governano": 2, "riaspettando": 1, "creduto": 1, "america": 2, "riempiremo": 1, "fiorentini": 2, "inserirmi": 1, "urla": 2, "prometteva": 1, "vietare": 1, "cazzari": 1, "sbirro": 1, "stronzo": 1, "solidale": 1, "anpi": 1, "emergency": 1, "compagniclandestini": 1, "ilcomizio": 1, "2fflkfc": 1, "contesta": 2, "inserisce": 1, "principale": 1, "mega": 7, "playstation": 1, "provenienza": 1, "tratta": 8, "boko": 1, "haram": 1, "impiegarci": 1, "impiega": 1, "sottolinea": 1, "preoccupato": 2, "distinguere": 2, "pochissimi": 2, "emlia": 1, "rimandare": 2, "offensive": 1, "fuggiaschi": 1, "prese": 2, "sfrattiamo": 1, "ondata": 1, "sequestrano": 1, "proprietario": 3, "sbraita": 1, "invasata": 1, "coprendosi": 1, "negazione": 2, "evidenza": 2, "sovietico": 1, "cazzaro": 1, "ponti": 2, "viaggia": 1, "affinch\u00e9": 1, "episodi": 2, "succedano": 1, "requisizioni": 1, "collaborano": 1, "governoscafista": 1, "resistiamo": 1, "cacciamo": 2, "peggiora": 1, "matricolato": 1, "italianicheresistono": 1, "borseggiatrici": 1, "chiamatele": 1, "zingare": 1, "consiglia": 1, "ipotecare": 1, "sammy": 1, "inno": 2, "pentirete": 1, "sbucano": 1, "renziana": 4, "gorino": 1, "hollande": 1, "stopunionesovieticaeuropea": 1, "lamenta": 3, "inadeguate": 1, "vergognati": 11, "ordinanza": 1, "abbigliamento": 1, "visibilmente": 2, "deperiti": 2, "sconvolti": 1, "piazzano": 1, "bloccando": 1, "ricevono": 2, "diaria": 1, "umiliano": 1, "usciamo": 1, "senegalese": 1, "bisogni": 1, "gradito": 2, "rimprovero": 1, "torres": 2, "somali": 1, "delirante": 1, "cavarzerani": 1, "cenetta": 1, "pretese": 1, "abolisce": 2, "dopolavoro": 1, "nominati": 2, "impedisce": 1, "egoismo": 2, "generoso": 2, "buttare": 4, "ventenni": 4, "robusti": 1, "spenderli": 1, "tecniche": 2, "lavaggio": 1, "pianificato": 1, "sostituire": 1, "sfruttare": 2, "manodopera": 1, "house": 3, "recanati": 3, "associato": 1, "tappeto": 3, "appartamento": 6, "buffone": 4, "avercene": 1, "forcone": 1, "dedicano": 1, "disuguaglianza": 1, "ingiustizia": 2, "cerchi": 1, "respinto": 1, "costruiscono": 1, "favelas": 1, "comprensive": 1, "bastaaaaaa": 1, "spacciavano": 1, "scappavano": 1, "tenetevelo": 1, "pazzeschi": 1, "trovano": 3, "sistemazioni": 1, "riforme": 3, "bancarie": 1, "senatori": 4, "inchinarsi": 1, "potersi": 1, "esprimere": 1, "boschiscappa": 1, "salutato": 1, "scommettiamo": 1, "cardinale": 1, "raymond": 1, "burke": 1, "infedeli": 4, "primario": 1, "realisticamente": 1, "gerarchie": 1, "ecclesiastiche": 1, "rassegnano": 1, "politically": 1, "correct": 1, "seduti": 2, "mangiamo": 1, "dormiamo": 1, "mutuo": 3, "trentennale": 1, "elegante": 2, "riscaldamento": 2, "muoversi": 1, "presidenziale": 1, "atmosfera": 1, "ovattata": 1, "vocina": 1, "amato": 4, "mostriamo": 1, "coda": 13, "riemergere": 1, "mazze": 3, "bastoni": 3, "esodato": 1, "truffato": 1, "muove": 4, "traditi": 1, "veniamo": 1, "castrato": 1, "comporta": 1, "coprono": 1, "percepito": 1, "espresso": 2, "sfrutta": 1, "debolezza": 1, "siccome": 1, "potevo": 1, "permettermi": 1, "bolkestein": 1, "200mila": 1, "muoviti": 1, "ricordare": 2, "reclusione": 1, "preferiva": 1, "venisse": 2, "sacro": 1, "vincenti": 2, "tripla": 1, "master": 1, "varesestan": 1, "sagrato": 1, "suk": 1, "danze": 1, "mezzelune": 1, "ambito": 1, "patrocinio": 1, "attento": 2, "smartphone": 2, "seriate": 2, "italana": 1, "italicum": 1, "numeretto": 1, "ripeto": 3, "entrer\u00e0": 1, "ah": 4, "torturato": 1, "rovente": 1, "tradito": 1, "troviamo": 4, "difetti": 2, "ipocrita": 4, "abano": 1, "maledette": 1, "approfondisci": 1, "risolvono": 2, "importando": 1, "comprensione": 2, "malafede": 1, "spiegate": 2, "esodata": 2, "assegno": 1, "invalidit\u00e0": 3, "spende": 3, "wi": 5, "fi": 6, "mancante": 1, "renzistaisereno": 1, "buoniste": 2, "affermava": 1, "parecchie": 3, "alimentare": 2, "costante": 1, "indicarci": 1, "responsabili": 2, "pontida16": 4, "rivolga": 1, "fedez": 2, "calcistici": 1, "spiegata": 1, "grafici": 1, "simulazioni": 1, "progressiva": 1, "coperture": 1, "inesigibili": 1, "dichiarate": 1, "versate": 1, "pagarle": 1, "perseguitati": 3, "somme": 1, "stracciare": 1, "cartelle": 2, "esattoriali": 2, "proteste": 1, "offriamo": 1, "borgosesia": 1, "gianluca": 1, "buonanno": 1, "vincono": 1, "esasperati": 2, "invenzione": 1, "finanziata": 1, "ritrovati": 1, "rendena": 2, "preghiere": 1, "elemosina": 2, "moustafa": 1, "hussein": 1, "liberato": 2, "accoltellare": 1, "forandogli": 1, "polmone": 1, "ucciderlo": 1, "palla": 1, "estremista": 3, "cl": 2, "conoscenza": 1, "attentati": 5, "accampamenti": 2, "u": 1, "cisa": 1, "laura": 3, "offrono": 1, "imitare": 1, "sgonfialaboldrini": 1, "monaco": 2, "novantenni": 1, "provo": 2, "esista": 1, "scippare": 1, "passeggino": 1, "accontentiamolo": 1, "somalia": 1, "distruzione": 2, "disgustosi": 1, "protegga": 1, "risate": 2, "chiese": 3, "amorevoli": 1, "affermazioni": 1, "andria": 2, "indottrinamento": 1, "finalizzata": 1, "reclutamento": 1, "assolti": 1, "sussiste": 1, "continueranno": 1, "ansa": 1, "web": 3, "caa2b4fa": 1, "a937": 1, "4e4d": 1, "8d25": 1, "51eec7cc7c90": 1, "salutiamo": 2, "trascorrono": 1, "placide": 1, "villeggianti": 1, "vacanza": 1, "expo": 1, "indicazione": 2, "monolocali": 1, "condizionata": 2, "pensaci": 1, "riconosciuto": 1, "status": 1, "modico": 1, "60mila": 1, "extracomunitario": 1, "son": 1, "esagerazioni": 1, "fonti": 2, "armano": 1, "petrolio": 4, "annientare": 3, "fermano": 3, "annullano": 1, "presidenziali": 1, "bretagna": 2, "limitata": 1, "mollate": 2, "nullatenenti": 1, "porsche": 1, "imprigionati": 1, "colletta": 1, "traballante": 1, "europeisti": 1, "riconoscono": 2, "nacque": 1, "svegliando": 2, "fuma": 1, "emigranti": 1, "contestatore": 1, "peccato": 5, "diminuite": 1, "piove": 2, "occulto": 1, "carmagnola": 1, "crepare": 2, "ingrassando": 1, "truffatore": 1, "occupato": 6, "eritrei": 1, "impunit\u00e0": 2, "culo": 4, "consideravano": 1, "spaccano": 1, "sfasciano": 1, "spostati": 1, "umilia": 3, "telerenzi": 3, "sperate": 1, "vedersi": 1, "recapitare": 1, "mostrare": 1, "scettici": 1, "semplicit\u00e0": 1, "stomaci": 2, "egiziano": 2, "apprezzamenti": 1, "fidanzata": 1, "egitto": 4, "temo": 4, "ritroveremo": 1, "circolazione": 3, "intascher\u00e0": 1, "fallire": 2, "istruzioni": 4, "indiretta": 1, "infamia": 1, "tentata": 1, "sentenza": 1, "nervosetti": 1, "imbavagliamo": 1, "rivogliobologna": 1, "accadeva": 1, "malattie": 1, "epidemiche": 1, "superassero": 1, "nascite": 1, "estinguendo": 1, "trovino": 1, "gratuiti": 6, "universitari": 1, "casinisti": 1, "rieducare": 1, "panebianco": 1, "liberamente": 2, "negataci": 1, "bolognesi": 2, "convenienza": 1, "organizzare": 1, "identificazione": 3, "evitando": 2, "fossa": 1, "occupasse": 1, "bolognalibera": 1, "romeni": 2, "svaligiava": 1, "oppongono": 1, "personcine": 1, "pagasse": 1, "banchiere": 1, "obbligazionisti": 1, "vergogno": 4, "amichetto": 1, "monologhi": 1, "libreria": 1, "borri": 1, "books": 1, "borribooks": 1, "vendite": 1, "saggistica": 1, "boicottaggi": 1, "furibonda": 1, "conducente": 1, "noooooo": 1, "invenzioni": 3, "altromeschino": 1, "aiutarci": 3, "viaggiatori": 1, "metropolitane": 1, "scoppiando": 1, "negano": 3, "preferiscono": 2, "ignorarci": 1, "arriviamo": 19, "libericonsalvini": 1, "ascoltarci": 1, "giorgia": 3, "meloni": 3, "matteorisponde": 1, "chiuder\u00f2": 1, "ritirati": 1, "esilio": 1, "monsignore": 1, "straccio": 1, "straparla": 1, "ricoverato": 1, "arnese": 1, "comunista": 3, "teoria": 1, "ospizio": 1, "gigante": 1, "cronacacriminale": 1, "tgcom24": 1, "unanziana": 1, "allospizio": 1, "nefandezze": 1, "provocatore": 1, "abituata": 1, "oderzo": 2, "miseri": 2, "gestire": 5, "cancella": 2, "abbassi": 1, "reimmetti": 1, "fabbrica": 3, "assume": 1, "sconfigge": 1, "demenziale": 3, "ginosini": 1, "alcanices": 1, "covi": 2, "oneste": 1, "connessione": 2, "anticipare": 1, "dovute": 2, "asociali": 1, "istruttivo": 2, "rimanga": 1, "discutendo": 1, "ttip": 1, "vietati": 1, "tavole": 3, "alimenti": 1, "umbertide": 1, "culturali": 2, "versilia": 1, "coperto": 5, "armati": 1, "uccidendo": 5, "stancher\u00f2": 1, "ricordarlo": 2, "ladruncole": 1, "chiederlo": 1, "portafogli": 1, "buttano": 1, "dedica": 2, "medio": 1, "cornetto": 1, "algida": 1, "marchio": 1, "multinazionale": 2, "unilever": 1, "manger\u00f2": 1, "cornetti": 1, "sammontana": 1, "sanson": 1, "civili": 2, "zac": 1, "rieccomi": 3, "monumenti": 1, "topi": 3, "spazzatura": 2, "ripuliamoroma": 1, "realizzerei": 1, "bufalaro": 1, "copiare": 1, "provate": 1, "valutato": 1, "ulteriore": 2, "organizzi": 1, "vattene": 3, "beccatevi": 1, "terapista": 2, "familiare": 2, "dotta": 1, "dissertazione": 1, "bastone": 2, "aspirino": 1, "uguaglianza": 1, "tollera": 2, "giustifica": 1, "personaggi": 2, "tradotto": 1, "picchia": 1, "570f6140": 1, "11e6": 1, "a60e": 1, "5fac25fd8ba7": 1, "contestatori": 5, "guardarli": 1, "giovanissimi": 1, "trovarmi": 2, "zecca": 2, "plauso": 1, "arrestando": 1, "parabole": 3, "ancoraaa": 1, "otterr\u00e0": 1, "controllano": 3, "verificano": 2, "impedirmi": 1, "riservata": 2, "aspettatevi": 1, "parisi": 1, "silvio": 4, "fini": 6, "espressione": 6, "cattiva": 1, "istiga": 1, "gufava": 1, "portasse": 1, "trionfato": 1, "primarie": 3, "philadelphia": 1, "zingara": 2, "mostra": 1, "chiappe": 1, "semaforo": 2, "magicamente": 1, "spariranno": 1, "mantenete": 1, "arrangia": 1, "onestamente": 1, "moderazione\u201d": 1, "ruspaaa": 2, "grosseto": 2, "doria": 1, "obbligati": 1, "ruspaaaa": 1, "dipendesse": 1, "raderei": 1, "suolo": 1, "pienaaaaa": 1, "convertito": 1, "cercata": 2, "cure": 2, "dialogare": 3, "australiano": 1, "misfatti": 1, "ivan": 1, "vinitaly": 3, "smettere": 2, "proteggendo": 1, "processatemi": 1, "attaccare": 3, "controllate": 3, "trivellazioni": 1, "gliela": 1, "stringereste": 1, "friedman": 1, "volgare": 1, "espositori": 1, "illustratori": 1, "menti": 1, "fantasia": 1, "graduatoria": 1, "eccoli": 3, "istigatori": 1, "professoressa": 1, "autoprodotta": 1, "maccheroni": 2, "fiancheggiatori": 1, "garage": 2, "dismessi": 1, "mascherate": 1, "seri": 1, "fanatici": 3, "potenziali": 2, "andatelo": 1, "cinquanta": 1, "rompono": 2, "brigatisti": 1, "ballar\u00f2": 4, "applaude": 2, "barbaro": 1, "sig": 3, "anime": 1, "indecenti": 1, "scorretti": 1, "tg1": 2, "kamikaze": 2, "esplodere": 1, "vaglielo": 1, "simboliche": 1, "sciopero": 3, "identificati": 1, "dirigente": 1, "impronte": 1, "prelevare": 1, "imam": 6, "sciacallaggio": 1, "vaff": 2, "tagliagole": 10, "reagire": 1, "cova": 1, "rassegno": 1, "bla": 8, "gad": 3, "lerner": 2, "religione": 7, "rispedisco": 1, "svegliamo": 1, "macello": 1, "mastella": 1, "nonmenefottenulladisalvini": 1, "ginocchio": 2, "surreale": 1, "occupa": 6, "trovassi": 1, "importare": 2, "dichiarare": 2, "balneari": 1, "passati": 2, "permessi": 1, "condannata": 1, "visitare": 4, "sinistro": 5, "riempirci": 2, "ortofrutticolo": 1, "rg": 1, "grammichele": 1, "ct": 3, "invade": 1, "controllati": 1, "bevano": 1, "dirgli": 2, "magie": 1, "dammi": 1, "violento\u201d": 1, "noto": 2, "titolare": 1, "tabaccheria": 2, "clienti": 1, "indifferenza": 1, "disinfettante": 1, "garbatella": 1, "abbracciamo": 1, "maledetta": 3, "cancelleremo": 6, "casa\u201d": 1, "telecamera": 2, "vaffa": 4, "sceriffo\u201d": 1, "marianna": 1, "vendersi": 2, "fedi": 2, "nuziali": 2, "signore\u201d": 1, "cazzate": 3, "dvd": 1, "lavatrice": 1, "paio": 1, "macedone": 1, "coccolato": 1, "sussidio": 1, "manderemo": 1, "devastano": 2, "postazioni": 1, "romaparlitu": 2, "avantiiiii": 1, "costrette": 1, "armarsi": 1, "fuksas": 1, "domestico": 1, "tipico": 1, "prenderla": 1, "quaranta": 2, "postazione": 1, "lettura": 3, "occidente": 1, "combattendo": 3, "ida": 1, "magli": 1, "sapienza": 1, "giocattolo": 1, "tenete": 2, "persi": 1, "gianni": 3, "tonelli": 1, "nascosto": 2, "iostocontonelli": 1, "danneggiare": 3, "privatizzare": 1, "rapine": 4, "affiggono": 1, "reversibilit\u00e0": 1, "vedovi": 1, "vedove": 2, "festeggiamenti": 1, "anziano": 2, "orecchio": 1, "aziz": 1, "nemico": 6, "porcheria": 2, "chiedi": 1, "pestato": 2, "perseguitato": 1, "segnalato": 1, "cesso": 1, "abbraccia": 2, "capirlo": 2, "spaventare": 3, "definire": 1, "domattina": 1, "sinistrati": 1, "bar": 5, "fucile": 1, "bastaaaaaaaaaa": 1, "versato": 2, "schiatta": 1, "han": 1, "bingo": 1, "fregarsene": 1, "cazzata": 1, "affamano": 1, "grilletto": 1, "sparate": 1, "rapinatore": 3, "mela": 2, "ricoveratelaaaa": 2, "cazzi": 1, "antifascisti": 1, "vivace": 1, "inventiva": 1, "provocavano": 1, "incidenti": 1, "urto": 1, "danneggiato": 2, "passatempo": 1, "zingari": 3, "assicurerei": 1, "puniti": 1, "stacchio\u201d": 1, "tartassati": 2, "schiavit\u00f9": 2, "fritta": 1, "dewsbury": 1, "inglese": 1, "divenuta": 1, "forzato": 1, "renzalfano": 4, "fessa": 1, "vacanze": 1, "sci": 1, "escursioni\u201d": 1, "musei": 1, "compreso": 4, "sgozzato": 2, "circolare": 1, "qualit\u00e0": 3, "abbreviato": 1, "vigilato": 1, "nooo": 2, "disposti": 1, "pi\u00f9liberipi\u00f9forti": 1, "utero": 1, "renderei": 1, "coppie": 4, "arricchisce": 2, "chiuda": 2, "renzuccio": 13, "giocattolino": 1, "iran": 1, "benpensante": 2, "trattate": 1, "colonie": 1, "affondano": 1, "molestano": 2, "accorsi": 1, "difenderla": 1, "annoiati": 1, "simpaticamente": 1, "aggressore": 1, "concidenze": 1, "porci": 2, "ammassi": 1, "bruciano": 3, "commerci": 1, "allacci": 1, "provochiamo": 1, "sgomberiamo": 1, "strappo": 1, "scaraventa": 1, "suggerireste": 1, "volevo": 1, "ribellata": 1, "matrimonio": 1, "combinato": 1, "amani": 1, "jihadista": 2, "pentito": 1, "addestriamo": 1, "compiere": 1, "infiltrati": 1, "sottolineato": 1, "avanza": 3, "crolli": 1, "bullizzata": 1, "coetanee": 1, "velo": 3, "considerano": 1, "impura": 1, "calare": 1, "braghe": 1, "populismo": 1, "curatelo": 1, "abbasso": 3, "statue": 1, "rappresentano": 2, "imbarazzare": 1, "iraniano": 1, "imbarazzato": 1, "tarvisio": 1, "colabrodo": 1, "sospendere": 3, "schengen": 5, "rigidi": 1, "tempistiche": 1, "lente": 1, "tar": 2, "xenofobi": 2, "sessisti\u201d": 1, "lepen\u201d": 1, "vergognano": 2, "slovenia": 1, "sguarniti": 1, "indumenti": 1, "sparsi": 1, "esce": 3, "metalmeccanico": 1, "stramaledetta": 1, "cancellerebbe": 1, "sentimentale": 1, "gialla": 1, "devasteranno": 1, "riprova": 1, "cosenza": 1, "ambulante": 1, "combattente": 1, "inetti": 1, "stefano": 2, "candiani": 1, "nobili": 1, "eroica": 1, "sventa": 1, "colpisce": 1, "stomaco": 1, "sputa": 1, "nordafricano": 3, "striscione": 1, "ciocapi\u00e0t": 1, "civilmente": 1, "cuor": 1, "preferito": 2, "rifugiarsi": 1, "darsela": 1, "altroin": 1, "fonte": 3, "gelocal": 1, "gazzettadimantova": 1, "contestazione": 1, "sanita": 1, "rotoli": 1, "monteforte": 1, "irpino": 1, "sedare": 1, "lamentavano": 1, "finestre": 1, "alzerebbe": 1, "voterebbe": 1, "direttive": 1, "chissenefrega": 6, "baratro": 1, "esponente": 1, "conveniente": 1, "tenuti": 1, "chicco": 1, "mister": 1, "sopporto": 2, "adatte": 1, "testimoni": 1, "scientifico": 1, "albania": 1, "fingere": 1, "riprendersi": 2, "regalati": 1, "riprenderti": 1, "rimani": 1, "1v6hmwy": 1, "deserta": 2, "farle": 1, "praticamente": 1, "risolto": 2, "autodifesa": 1, "sgombero": 2, "tentare": 1, "civilizzarci": 1, "copertoni": 1, "milanesi": 8, "abitano": 2, "fregati": 4, "ferita": 1, "funzionano": 1, "opporremo": 1, "timbrano": 1, "cartellino": 2, "pedate": 1, "ingiuste": 2, "vanvera": 2, "campano": 2, "timbri": 1, "pagherebbero": 1, "timbrare": 1, "buonista\u201d": 1, "baudo": 1, "educata": 1, "precisa": 1, "corporale": 1, "permessa": 1, "rifiuta": 2, "insegnamento": 1, "coprirti": 1, "provochi": 1, "lamentatevi": 1, "intervistati": 1, "rispetti": 2, "cambi": 1, "adegui": 1, "terremotato": 3, "cavillo": 1, "burocratico": 1, "ammala": 1, "fermato": 2, "rispedirei": 1, "quarantina": 1, "spazientito": 1, "accoglienti": 3, "tradire": 1, "adulti": 1, "vicine": 1, "arrabbiate": 1, "elementare": 4, "mandi": 1, "psicologico": 2, "tentano": 4, "psicologa": 1, "colta": 1, "internet": 7, "abbassasse": 1, "scoprirebbe": 1, "applicata": 1, "civilissimi": 1, "recuperabile": 1, "curabile": 1, "avvisato": 2, "accoltellato": 3, "riceverebbero": 1, "distribuisce": 1, "alimentari": 1, "cristina": 2, "fulvio": 1, "stupidi": 1, "pagherete": 2, "watch": 5, "v": 5, "z9tx": 1, "t8uhaq": 1, "orde": 1, "respingere": 2, "ospitata": 1, "aggredite": 1, "organizzati": 2, "violentano": 1, "servetto": 1, "dipende": 3, "baristi": 1, "albergatori": 2, "basse": 1, "volerebbe": 1, "ingrasso": 1, "chilo": 2, "mascarpone": 1, "infermieri": 3, "autisti": 1, "farmacisti": 1, "taxisti": 4, "tiziano": 2, "cesellatori": 1, "bottega": 1, "alzaia": 1, "naviglio": 2, "ripresa": 2, "immaginare": 1, "riconquista": 1, "contemporanea": 1, "sbugiardare": 2, "rottamatore": 2, "misera": 1, "prendetevi": 2, "rumeni": 1, "officina": 1, "settantenne": 1, "identificate": 1, "magistrati": 1, "strumentalizza": 1, "definireste": 3, "incontrarli": 1, "cucciola": 1, "socialisti": 1, "repubblicani": 1, "riscossa": 1, "rallentarla": 1, "bloccarla": 1, "telefonici": 1, "conterranei\u201d": 1, "mullah": 1, "kawa": 1, "dopodich\u00e9": 1, "pensato": 2, "starsene": 1, "mensile": 1, "fessi": 5, "ricordino": 1, "tradizione": 2, "radici": 5, "rimarremo": 1, "tentativi": 1, "prudente": 1, "colpiscano": 1, "vigliaccheria": 1, "aiutato": 2, "lavorino": 1, "convertita": 3, "frequentatrice": 1, "centocelle": 1, "islamofobo": 1, "economiche": 4, "barriere": 1, "ideologiche": 1, "impegniamoci": 1, "al\u00ec": 1, "bab\u00e0": 1, "sedicente": 1, "principe": 1, "reggimento": 1, "garantiscono": 1, "trattarle": 1, "picchiarla": 1, "accoltellarla": 1, "schifosa": 1, "bestialit\u00e0": 1, "califfo": 1, "brennero": 1, "fili": 1, "spinati": 1, "chiacchieroni": 1, "tranquilla": 6, "confusi": 1, "arrivino": 2, "mescolati": 1, "sghignazza": 1, "scolastici": 3, "segnalateci": 1, "disservizi": 1, "incubo": 8, "incomincia": 2, "segnalacelo": 1, "contesto": 2, "favorevolissimo": 1, "minimi": 1, "bce": 1, "carceri": 8, "coltiva": 1, "52mila": 1, "imprevedibili": 1, "ripristiniamo": 1, "manteniamo": 3, "genocidio": 3, "sterminato": 1, "cristiani": 3, "membro": 1, "cipro": 2, "giuridicamente": 1, "culto": 1, "inviarci": 1, "cediamo": 2, "sveglino": 2, "sanzionare": 2, "cantiamo": 1, "celebriamo": 1, "orgogliosi": 4, "parcheggiatrice": 1, "insomma": 1, "rimesso": 1, "messe": 1, "aule": 1, "blindate": 1, "sbarre": 1, "vandalismi": 1, "pezzo": 4, "abbandonato": 3, "cortile": 1, "islamicamente": 1, "sottomettere": 1, "segregare": 1, "limoni": 3, "clementine": 1, "cachi": 1, "peperoni": 1, "batto": 1, "compro": 1, "studente": 1, "traditore": 1, "mezzogiorno": 1, "rozzano": 1, "preside": 1, "rodolfo": 1, "corazzo": 1, "incontrer\u00f2": 1, "rodano": 1, "ricoverateloooo": 1, "quand": 1, "premiata": 1, "ditta": 1, "affittacamere": 1, "smetter\u00e0": 2, "avvertire": 1, "resort": 3, "morcone": 1, "vendola": 1, "rischino": 1, "giubbotto": 1, "antiproiettile": 1, "scaduto": 1, "inadeguato": 1, "dimettere": 1, "cedo": 1, "duetto": 1, "albergatrice": 1, "palate": 1, "escono": 1, "tacchi": 2, "soggetti": 2, "espellerei": 1, "dirigenza": 1, "suonare": 1, "adeste": 1, "fideles": 1, "cristiana": 1, "bresciano": 3, "festeggiasse": 1, "dimentica": 3, "guadagnato": 3, "macchina": 9, "poverino": 1, "rispondete": 1, "sgozzamenti": 1, "arruolarmi": 1, "catturato": 1, "onnipotente": 1, "vergini": 1, "sgozzati": 1, "vivi": 3, "miscredenti": 1, "destino": 2, "bambine": 1, "schiave": 1, "godere": 1, "convertano": 1, "pacifinti": 1, "sabbia": 1, "medioevo": 1, "estirpato": 1, "mohamed": 2, "diffuso": 1, "sharia": 2, "tacere": 3, "primopiano": 1, "preparino": 1, "documentario": 1, "choc": 1, "shtml": 2, "tal": 3, "tayyeb": 1, "invitato": 1, "teorizza": 1, "annientata": 1, "palestinesi": 1, "picchiate": 1, "soggetto": 1, "fidate": 1, "maniere": 6, "appoggerei": 1, "militarmente": 2, "toglierei": 1, "alleata": 1, "terrore": 1, "mettendole": 1, "utilissimo": 1, "ambasciatori": 1, "danimarca": 1, "norvegia": 1, "finlandia": 1, "moderato": 2, "invaderci": 1, "arrivederci": 1, "epoca": 1, "entusiasti": 1, "demografico": 1, "ricorda": 4, "ferguson": 1, "docente": 3, "harvard": 1, "cresceranno": 1, "iononhopaura": 3, "emerge": 1, "charlie": 1, "hebdo": 1, "parigini": 1, "dichiarato": 5, "alfanodimettiti": 3, "denuncio": 1, "ascoltando": 4, "percepire": 1, "avvenuti": 1, "consentirgli": 1, "caciara": 1, "guadagnare": 1, "scuole\u201d": 1, "spettano": 1, "islamici\u201d": 1, "verifica": 2, "eliminati": 1, "michelin": 2, "perderanno": 1, "antagonisti": 1, "denunciata": 1, "goda": 1, "incensurati": 1, "vicentini": 1, "segnalati": 1, "tolti": 2, "fascia": 1, "funerale": 3, "rigattiere": 1, "astico": 1, "cogollo": 1, "cengio": 1, "laghi": 1, "albettone": 1, "produrlo": 1, "riuniamo": 1, "aula": 3, "convivenza": 1, "pieve": 1, "emanuele": 4, "batteremo": 1, "resistenza": 1, "bestemmie": 2, "petardi": 2, "ammanettarlo": 1, "mandereste": 1, "arrender\u00f2": 1, "liberiamoci": 56, "ripartiamo": 18, "berlusconi": 19, "invader\u00e0": 1, "maggiore": 7, "pizza": 1, "abbatteremo": 1, "protegge": 1, "processa": 2, "vana": 1, "sfiga": 1, "tiene": 1, "rubando": 2, "generazione": 2, "rideremo": 1, "parassiti": 3, "allarmismi": 1, "rotto": 5, "costruzione": 1, "invadiamo": 1, "multano": 2, "parcheggiatori": 1, "agiscono": 1, "indisturbati": 1, "miniera": 1, "roccaforte": 1, "violini": 1, "rolex": 1, "vasche": 1, "idromassaggio": 1, "sobria": 1, "ferrari": 2, "aston": 1, "martin": 1, "james": 1, "bond": 1, "protestavano": 1, "ottantenni": 1, "commuovere": 1, "incazzare": 6, "costruisci": 1, "poligamo": 1, "teneva": 1, "nascosta": 1, "contrasto": 1, "abusivismo": 3, "proteggersi": 1, "insicure": 1, "innovazione": 1, "tecnologica": 1, "urlante": 1, "gioielliere": 1, "zancan": 2, "guardarla": 1, "eccessiva": 1, "apolitici": 1, "apartitici": 1, "nomenclatore": 1, "tariffario": 1, "miglioramento": 1, "indennizzi": 1, "illegittimit\u00e0": 1, "regolamento": 1, "isee": 1, "dimenticarsene": 1, "continuamente": 1, "lavorato": 2, "costruito": 4, "pci": 1, "pds": 1, "testimonia": 1, "astronomiche": 1, "pretendendo": 1, "gambizzano": 1, "benzinaio": 2, "lesioni": 1, "raddrizziamo": 1, "mareee": 1, "brucia": 2, "troveremo": 1, "iniziato": 2, "pietro": 4, "raccagni": 1, "agonia": 1, "concede": 1, "depenalizzazione": 1, "merce": 2, "contraffatta": 1, "incontrarvi": 1, "carla": 1, "proprietaria": 1, "varie": 2, "dovevano": 1, "rispedirne": 1, "magnifici": 1, "fatima": 1, "scopre": 1, "settecento": 1, "trecentomila": 1, "dovrei": 2, "tortellini": 1, "ripieno": 1, "ghisa": 2, "suggeritemi": 1, "rivalutazione": 1, "istat": 1, "adeguamento": 2, "assegni": 1, "familiari": 1, "schifa": 1, "fenomenoooo": 1, "rappresenti": 1, "sanitari": 2, "organici": 1, "contratto": 1, "svolgono": 1, "professioni": 1, "paul": 1, "arrabbier\u00e0": 1, "confesercenti": 1, "trovarlo": 1, "professioniste": 1, "borseggio": 1, "zing": 2, "cio\u00e8": 3, "fermate": 1, "bufala": 1, "unac": 1, "rischiare": 2, "indagano": 2, "riportiamo": 2, "indossa": 1, "coglioni": 1, "tabaccai": 1, "gioiellieri": 1, "tassisti": 2, "violentati": 1, "pensarla": 1, "mobilitiamoci": 2, "ettore": 2, "gallo": 2, "tommaseo": 2, "segato": 2, "zappatore": 2, "largo": 4, "xii": 2, "foro": 2, "ulpiano": 2, "viale": 7, "martelli": 2, "nazario": 2, "sauro": 2, "conchisidifende": 1, "entrato": 1, "iostoconfrancesco": 1, "loris": 1, "giorgio": 2, "baracca": 1, "condividerete": 1, "condivido": 2, "ilgiornale": 5, "spalti": 1, "milanisti": 1, "soffriremo": 1, "tutele": 1, "paghe": 1, "proteggerci": 1, "cittadinanze": 1, "governate": 1, "svendono": 1, "tutelato": 1, "bettola": 1, "alluvione": 2, "dragare": 1, "ghiaia": 1, "pulire": 1, "torrenti": 1, "curata": 1, "negarli": 1, "adegua": 1, "colossale": 1, "fango": 4, "marino": 5, "avvicini": 1, "sospesa": 4, "archiviato": 1, "indispensabile": 2, "prerequisito": 1, "accertamenti": 1, "rompere": 3, "mantiene": 4, "impiegano": 1, "extracomunitari": 1, "senzapalle": 1, "arrendi": 1, "favorisce": 1, "oppressione": 2, "passeggiare": 1, "circondati": 1, "materna": 1, "rovereto": 2, "rimosso": 1, "giostrina": 1, "maialino": 1, "offendevano": 1, "educava\u201d": 1, "introdotto": 2, "settimanale": 1, "rumena": 1, "raccolgono": 2, "castagne": 4, "risarciti": 1, "reso": 2, "38mila": 1, "emergenze": 1, "filmata": 1, "reazione": 1, "truccare": 1, "emissioni": 1, "piedistallo": 1, "composto": 1, "cinquestelle": 5, "sconfiggere": 1, "fiorellini": 1, "sradicare": 1, "peste": 1, "denunciavo": 1, "beatrice": 2, "scuola\u201d": 2, "salvatore": 1, "tenda": 1, "parcheggio": 2, "altalena": 1, "grillocomerenzi": 1, "tuffo": 1, "cannelloni": 1, "sbugiarda": 1, "blocca": 1, "matrimoni": 2, "interessano": 3, "dimenticati": 4, "smontiamo": 1, "mattone": 2, "sospendono": 1, "presidiare": 1, "forti\u201d": 1, "svegliare": 2, "dormienti": 1, "seguiva": 1, "down": 1, "lasciata": 1, "occupando": 1, "tina": 1, "elio": 2, "incatenato": 1, "esterno": 2, "calolziocorte": 2, "rossonero": 3, "cittadella": 4, "dedico": 3, "saluzzo": 1, "embargo": 1, "maggiolini": 1, "arcivescovo": 1, "biffi": 1, "consigliava": 1, "privilegiare": 1, "facilmente": 2, "assimilabile": 1, "aiutati\u201d": 1, "ossignur": 3, "uccido": 1, "cernobbio": 1, "raccogliendo": 1, "inaspettati": 1, "monviso": 2, "preparare": 2, "lodi": 3, "megliobestiacherenzi": 1, "combina": 1, "offrirsi": 1, "trattare": 1, "prigioniero": 1, "nudi": 1, "sputano": 1, "scale": 1, "altroinvasione": 2, "chieve": 1, "invendute": 1, "londata": 1, "sciacalliiii\u201d": 1, "cacciare": 1, "riprendervi": 1, "lavorareee": 1, "europarlamentare": 1, "pina": 1, "picierno": 2, "copio": 1, "incollo": 1, "mercoledi": 2, "cusano": 1, "campus": 1, "telefonico": 1, "ln": 4, "beggiato": 1, "giovedi": 1, "venerdi": 1, "cantu": 1, "cermenate": 1, "solare": 1, "lc": 1, "dancing": 1, "gasperi": 1, "buglio": 1, "abitante": 1, "sveglione": 2, "risiko": 1, "pseudo": 2, "guadagnano": 1, "mazzo": 1, "campa": 1, "casaaa": 1, "riempirsi": 1, "accoglienza\u201d": 1, "cassintegrati": 1, "penseremo": 1, "traballa": 1, "benna": 1, "traghetto": 1, "tirrenia": 1, "ritardata": 1, "dormiranno": 1, "materassini": 1, "pontedilegno": 1, "skype": 1, "crocetta": 3, "roulotte": 1, "finendo": 1, "egoisticamente": 1, "ragionamento": 1, "squallidi": 1, "sbugiardata": 1, "preferisce": 2, "invasi": 1, "amministrato": 1, "transito": 1, "transitare": 1, "donazione": 3, "plasma": 1, "avis": 2, "aiuter\u00f2": 2, "polemica": 1, "delirio": 1, "prenda": 1, "discoteche": 1, "comprate": 2, "ufficialmente": 1, "spaghetti": 1, "pomodoro": 2, "lomazzo": 1, "vongole": 2, "cambieranno": 2, "millimetri": 1, "vongola": 1, "ferme": 1, "este": 1, "famosi": 1, "riotta": 1, "sforzesco": 2, "terreni": 2, "agricoli": 2, "ires": 1, "formaggio": 6, "piastra": 2, "settecentesca": 1, "tornado": 2, "cazzago": 1, "pianiga": 1, "stadio": 2, "resta": 2, "secolari": 1, "sradicati": 1, "lanciati": 1, "kyenge": 23, "iphone": 1, "graditi": 1, "devastati": 1, "oppeano": 1, "vr": 1, "stancati": 1, "create": 1, "tardo": 1, "clicca": 1, "seguente": 1, "pages": 1, "grazia": 2, "monella": 4, "federalismo": 2, "agriturismi": 1, "ostelli": 1, "razzisti\u201d": 1, "buond\u00ec": 3, "vola": 3, "leggendo": 1, "romanzo": 1, "vitali": 1, "bonate": 2, "sopra": 2, "viareggio": 1, "ciclista": 2, "petacchi": 1, "verde": 5, "vinta": 1, "competitivi": 1, "catene": 1, "saper": 1, "svegliaaaa": 1, "gruppi": 1, "eraclea": 1, "turistica": 1, "litorale": 1, "impauriti": 1, "turistici": 1, "piangendo": 1, "disoccupato": 2, "rate": 1, "dita": 1, "pienone": 3, "bulgarograsso": 1, "arrivandooooo": 4, "certifica": 1, "alimentazione": 1, "adeguata": 1, "impreviste": 1, "quartesana": 1, "pignara": 1, "matti\u201d": 1, "dicevamo": 1, "euro\u201d": 1, "ricoverare": 1, "rassegnarsi": 1, "consentito": 1, "elezione": 1, "chiamparino": 2, "riconoscano": 1, "falsa": 2, "saluto\u201d": 1, "dialoghiamo": 2, "fermarsi": 1, "riscrivere": 1, "padania": 10, "castelcovati": 2, "sogni": 3, "economie": 1, "genetico": 1, "folla": 2, "franciacorta": 3, "regolamentare": 5, "combatterla": 1, "pasti": 1, "crotone": 1, "studiare": 1, "professori": 1, "economisti": 1, "iscriverti": 1, "smettano": 1, "invadere": 4, "crocifissi": 1, "decapitati": 1, "arsi": 1, "giustiziati": 1, "mitra": 1, "radiografate": 1, "regimi": 1, "chiuse": 5, "esportiamo": 1, "laureati": 2, "importiamo": 1, "pianificata": 1, "montarci": 1, "piantati": 1, "maledizione": 1, "espone": 1, "ricatto": 1, "ostacolare": 1, "jonata": 1, "pregio": 1, "martinalli": 1, "cantato": 1, "incidente": 1, "dimenticheremo": 1, "capaccio": 1, "mangiano": 4, "stretti": 1, "esaurite": 1, "wifi": 2, "ospitate": 1, "isolato": 3, "guerre\u201d": 1, "schizzinosi": 1, "interessa": 3, "milanese": 8, "giapponese": 1, "doriano": 1, "riaprendo": 1, "combattila": 1, "melzo": 3, "rendendo": 1, "impensabili": 1, "ottiene": 1, "contraria": 3, "chiamiamo": 1, "condivide": 3, "doveri": 4, "comprano": 2, "affittano": 1, "triplo": 1, "scabbia": 1, "sordello": 1, "lamenti": 1, "strumento": 2, "costringe": 1, "controllarti": 1, "calzini": 1, "armadio": 1, "cologno": 1, "monzese": 1, "cinquant": 1, "incapacit\u00e0": 1, "copre": 1, "contribuire": 2, "corsico": 1, "ventina": 3, "urlavano": 2, "segrate": 1, "schifani": 2, "integralista": 1, "sfascio": 1, "zerovirgola": 1, "combattete": 1, "toglieremo": 1, "vieniafirmare": 36, "costruendo": 1, "alternativo": 2, "dialogato": 1, "televisiva": 1, "chiederanno": 1, "ilfattoquotidiano": 1, "saronno": 2, "terroni": 1, "arrivandooooooo": 1, "tapiro": 1, "abrogare": 1, "merlin": 8, "thiene": 2, "spariti": 2, "arqu\u00e0": 2, "ostello": 2, "canalbianco": 1, "relax": 5, "cambiarla": 2, "ciclisti": 1, "dueeeee": 1, "mosto": 1, "dolo": 1, "tira": 8, "presso": 6, "carotta": 1, "carrare": 1, "ro": 2, "ii": 1, "chilesotti": 1, "dante": 2, "bersaglio": 2, "mobile": 2, "preferite": 3, "suite": 1, "matrimoniale": 1, "singola": 1, "capannone": 3, "discoteca": 1, "ostinata": 1, "diffondete": 9, "miniere": 1, "angelino": 2, "scanzi": 1, "stravinco": 1, "monologante": 1, "convincerlo": 1, "ch\u00e9": 1, "cercato": 1, "burlando": 1, "valenza": 1, "devastato": 1, "dia": 1, "ticket": 1, "scavalcando": 1, "stufato": 1, "germagnano": 1, "villette": 3, "costruite": 1, "ricostruite": 2, "enpa": 1, "allontanare": 2, "genovesi": 1, "smascherato": 1, "capitooo": 1, "troverebbe": 1, "abbattiamo": 1, "truffatori": 1, "decina": 1, "inquilini": 2, "mestre": 3, "jesolo": 1, "teresa": 2, "parecchio": 1, "salvata": 1, "ferretto": 1, "fiume": 3, "piave": 1, "nervesa": 1, "accoglierli": 1, "respingono": 1, "feltre": 1, "raddoppio": 1, "pellet": 1, "moretti": 1, "espelle": 1, "colazione": 7, "televotare": 1, "scaricando": 1, "app": 2, "abbonati": 1, "telecomando": 1, "visibile": 1, "canali": 1, "digitale": 1, "terrestre": 1, "scelgozaia": 1, "inizi": 2, "unito": 1, "sputtanato": 1, "balletto": 1, "ruspaaaaaaa": 1, "ridicolooooooooooo": 1, "monte": 4, "paschi": 1, "intascati": 1, "rimasti": 4, "sciagurata": 1, "uguali": 3, "perdete": 1, "impedirci": 2, "aperitivo": 1, "scesa": 2, "affollata": 1, "fivizzano": 1, "lunigiana": 2, "vicentino": 2, "incontra": 1, "lanciatori": 3, "accendini": 3, "braccio": 1, "senigallia": 1, "lancio": 2, "collo": 1, "urlatori": 1, "volontariato": 3, "evvai": 3, "liceo": 3, "bigiato": 1, "villabate": 2, "verdura": 3, "restituisca": 1, "ritornello": 1, "torneranno": 1, "tesoro": 1, "teppisti": 1, "manifestare": 2, "venirmi": 1, "giustificati": 1, "pugliese": 1, "massacrata": 1, "natuzzi": 1, "eccezionale": 1, "stancato": 1, "mercoled\u00ec": 2, "passando": 2, "grand": 1, "congressi": 1, "romanazzi": 1, "carducci": 1, "capruzzi": 1, "cristal": 1, "palace": 1, "cicolella": 1, "xxiv": 1, "brancaccio": 1, "merulana": 1, "orto": 1, "pedara": 1, "gela": 1, "marsala": 1, "pa": 1, "canale5": 1, "tornate": 1, "attivo": 1, "tesseramento": 2, "ufficiale": 2, "censimento": 1, "pre": 1, "coccola\u201d": 1, "matteotti": 1, "scoperto": 2, "scala": 6, "pisapia": 24, "protettore": 1, "sesso": 1, "selvaggio": 1, "cella": 1, "imbecille": 1, "dareste": 1, "montecatini": 1, "stancarsi": 1, "vivaisti": 1, "esportano": 1, "nostrum": 12, "ospitarne": 1, "accoglier\u00e0": 1, "finestra": 1, "applaudito": 1, "apra": 1, "leghista": 22, "scrittrice": 1, "sveva": 1, "casati": 1, "modignani": 1, "frego": 1, "liberarlo": 1, "compenso": 2, "perditempo": 1, "lanciare": 1, "educativi": 1, "altroingresso": 1, "bannato": 1, "sinceri": 4, "vantarsi": 1, "pubblicamente": 2, "lanciato": 1, "nooooooooo": 1, "hobby": 1, "borseggi": 1, "scomode": 1, "x2nnv4i": 1, "vescovone": 2, "cecina": 1, "eccezzzzzionale": 1, "tantisssssima": 1, "travagliato": 1, "divulgate": 3, "renzi\u201d": 1, "depenalizzazioni": 1, "partono": 2, "generose": 1, "mietitrebbie": 1, "villorba": 1, "18enni": 1, "barbuta": 1, "allestire": 1, "finanziano": 1, "destinati": 2, "spranghe": 1, "secolo": 3, "integrare": 2, "gas": 4, "giambellino": 1, "abita": 1, "scandalizza": 2, "semafori": 1, "cofani": 1, "rompendo": 1, "haragionesalvini": 1, "cantina": 2, "chiedoasilo": 4, "compri": 1, "corrotti": 2, "renziane": 1, "supercazzata": 1, "ridotte": 1, "cominceranno": 1, "elenco": 2, "esibisce": 1, "oggetto": 2, "quote": 1, "coinvolgiamo": 1, "concretamente": 2, "condotta": 1, "corruzione": 1, "ucraina": 1, "grate": 1, "moncalieri": 1, "parolaia": 1, "beppe": 5, "furino": 1, "capitano": 1, "grintoso": 1, "on": 1, "ginefra": 1, "denunciarmi": 1, "rocco": 1, "buttiglione": 1, "chaouki": 2, "sua\u201d": 1, "lasagne": 1, "vendemmiano": 1, "imbottigliano": 1, "soave": 1, "soci": 1, "delegazione": 1, "salviniani\u201d": 1, "formigoni": 2, "medie": 1, "stappo": 1, "brindare": 1, "cancellato": 1, "spostare": 1, "ingiusto": 1, "ispettore": 1, "affrescata": 1, "monselice": 1, "intitolazione": 1, "beslan": 1, "misurare": 1, "lella": 1, "alzarsi": 1, "buffoni": 2, "tortelli": 5, "mantovani": 1, "battista": 1, "paranoico": 2, "nasca": 1, "ammazziamoli": 1, "ideali": 2, "piomb\u00f2": 1, "studiosa": 1, "populismi\u201d": 1, "malagestione": 1, "edoardo": 1, "videomessaggio": 1, "marinoacasa": 1, "simpatici": 1, "negrotto": 1, "aderisci": 2, "fb": 3, "events": 4, "attico": 1, "generosi": 1, "belve": 1, "assaltano": 1, "gioielleria": 1, "indifesa": 1, "iostoconstacchio": 2, "custodisce": 1, "riteniamo": 1, "nutella": 1, "spopola": 1, "incoraggia": 1, "sprecare": 2, "aiutiamoli": 1, "truppe": 1, "sterminare": 1, "sgozzano": 1, "attestato": 1, "protestando": 1, "crema": 3, "zuppa": 1, "legumi": 1, "frittata": 1, "pasta": 2, "patate": 3, "ripaga": 1, "bocciato": 2, "gol": 2, "guardato": 1, "cantando": 1, "capriola": 1, "attrezzi": 1, "lontani": 1, "bisticci": 1, "aosta": 3, "orso": 1, "felpa": 6, "renzate\u201d": 1, "pacchi": 1, "miliardate": 1, "donati": 2, "cornuti": 1, "mazziati": 1, "consulta": 2, "continuer\u00e0": 1, "ripete": 1, "riferisca": 1, "smetta": 1, "veltroni": 1, "votino": 1, "minacciano": 2, "semestre": 2, "fenomenooo": 1, "roberta": 1, "pinotti": 1, "lia": 1, "quartapelle": 1, "matrice": 1, "religiosa": 1, "riprendiamocelo": 1, "baita": 1, "bravissimi": 1, "stinco": 1, "babbo": 1, "ricoverati": 1, "buzzi": 3, "donare": 1, "abbracciare": 1, "bergamasco": 2, "mandargli": 1, "circondariale": 1, "gleno": 1, "tristi": 2, "alloggiati": 1, "palazzine": 1, "vigevano": 1, "sgombera": 1, "ostina": 1, "venezuela": 1, "mauritania": 1, "sudan": 1, "filippine": 2, "georgia": 1, "altroeuropa": 1, "battiamo": 1, "stellini": 1, "incazzature": 1, "maddai": 1, "regalata": 2, "radioterapia": 1, "valtellinesi": 1, "wagner": 1, "alvin": 1, "rabushka": 1, "seguici": 1, "padellata": 1, "offenda": 1, "bresciana": 2, "gabbana": 1, "puo": 3, "index": 2, "php": 2, "affollatissimo": 2, "consorzio": 1, "focaccia": 1, "prodotte": 1, "materie": 1, "scadenti": 1, "russo": 4, "idiote": 2, "rimettendo": 1, "twitti": 1, "gelato": 1, "russe": 1, "presidenza": 1, "alunni": 1, "edile": 2, "depenalizza": 1, "prestanza": 1, "esporre": 2, "disposto": 1, "allunga": 1, "dimmi": 1, "alluvionati": 4, "bicchierino": 2, "pin": 1, "difenderanno": 1, "lavorooo": 1, "tombini": 1, "riflessioni": 1, "sgonfiando": 1, "derby": 1, "identificato": 1, "salito": 1, "cofano": 1, "spalare": 1, "alluvionate": 1, "busseto": 2, "fabbri": 5, "rivergaro": 2, "pc": 3, "caratta": 1, "cortemaggiore": 1, "spaghetteria": 1, "fe": 1, "guercino": 1, "fossolo": 4, "vuota": 4, "incazzati": 3, "filobus": 1, "attraversa": 1, "trc": 1, "royal": 1, "letti": 1, "raoul": 1, "casadei": 1, "liscio": 4, "vicinaaaaa": 1, "alternativa": 5, "segreterie": 2, "deborah": 1, "compagnoni": 1, "flavio": 3, "roda": 1, "fisi": 1, "invernali": 1, "invidiare": 1, "ripartita": 1, "profili": 1, "copiando": 1, "rimaneste": 1, "frustrazione": 1, "alan": 4, "bondeno": 2, "risorgesse": 1, "gestiti": 1, "durc": 1, "chiude": 2, "piadina": 1, "orva": 1, "bagnacavallo": 1, "piadine": 1, "sfornate": 1, "vendute": 1, "toilette": 1, "faenza": 2, "abbracciate": 1, "sfasciato": 1, "sorveglianza": 1, "affittati": 1, "verifiche": 1, "etnici": 1, "esportazione": 1, "crescendo": 1, "montiamoci": 1, "quiz": 1, "vocale": 1, "versamenti": 1, "imola": 1, "alluvionato": 1, "pagati": 1, "monumento": 2, "pantani": 1, "soggiornavano": 1, "allontanati": 1, "fusignano": 1, "arrigo": 1, "modigliana": 1, "tramazzo": 1, "torta": 5, "mele": 2, "mitici": 1, "formaggini": 1, "distruggete": 1, "asimmetrie": 1, "avvicinassimo": 1, "bastardi": 1, "assessora": 1, "bolognese": 1, "disastroso": 1, "csm": 1, "dispiace": 1, "corto": 1, "guardiamo": 2, "offre": 1, "ombra": 1, "carlos": 1, "ruiz": 1, "zafon": 1, "suggerire": 1, "rappresentiamo": 1, "apprezzatissimo": 2, "fabbripresidente": 2, "merlo": 1, "passate": 2, "halloween": 1, "assaggiare": 1, "yogurt": 3, "panna": 2, "cotta": 1, "latteria": 1, "pievetta": 1, "cercatela": 2, "visitati": 1, "calendasco": 1, "progetta": 1, "fallimenti": 1, "squadre": 1, "basket": 1, "appassiona": 1, "braulio": 2, "preoccuparsi": 3, "scelgo": 3, "crudo": 1, "mozzarella": 1, "succo": 1, "pulito": 2, "curato": 1, "tendone": 2, "sorridenti": 2, "vetrine": 1, "schiavisti": 1, "rap": 1, "cordiale": 1, "vladimir": 1, "dialoga": 2, "riconoscibile": 1, "alessia": 1, "calavino": 1, "tn": 1, "iocisar\u00f2": 1, "sappiamo": 3, "dimentico": 1, "clandestinit\u00e0": 5, "export": 1, "alleato": 1, "russa": 3, "sebastopoli": 2, "qualcuna": 2, "prestito": 1, "visitato": 1, "flotta": 1, "facciamoci": 1, "prestare": 1, "sposto": 1, "federazione": 1, "incontreremo": 1, "allacciare": 1, "orlo": 2, "estremismo": 1, "operano": 1, "sereni": 1, "alexei": 1, "pushkov": 1, "duma": 1, "sparisce": 1, "letteralmente": 1, "prevenzione": 1, "quarantena": 2, "scaldarci": 1, "vecchie": 3, "chiaravalle": 2, "eccellente": 2, "granaccia": 1, "piero": 3, "ostellino": 3, "ragazzotto": 1, "fiorentino": 1, "sorta": 1, "minore": 1, "parolaio": 1, "velleitario": 1, "impotente": 1, "rivolgendosi": 2, "suggerisce": 1, "spiegando": 1, "austerit\u00e0": 1, "ritiene": 2, "adottarla": 1, "editoriale": 1, "intitola": 1, "trattandosi": 1, "cantargliele": 1, "obbedire": 1, "battendo": 1, "parodia": 1, "maira": 1, "agire": 2, "maglietta": 3, "esordiranno": 1, "imitazione": 2, "sottoscritto": 1, "inosservata": 1, "importava": 1, "combattiamo": 1, "padani": 9, "valtellina": 2, "movimento": 4, "cliccate": 3, "dailymotion": 2, "x26syhn": 1, "assaggiatori": 1, "grappa": 5, "grissini": 1, "gusti": 1, "cibi": 1, "condominiali": 1, "bersi": 1, "birre": 1, "barbone": 1, "dormiva": 1, "comodamente": 1, "siti": 5, "autonomie": 2, "esegue": 1, "ordini": 1, "fumo": 3, "quagliariello": 1, "harleysti": 1, "diversit\u00e0": 3, "ebola": 1, "contagio": 1, "abbaia": 1, "morde": 1, "guinzaglio": 1, "rispetter\u00e0": 1, "fregherebbe": 1, "trover\u00e0": 1, "metter\u00e0": 1, "stopimmigrazione": 1, "nonpago": 1, "preziosi": 1, "\u00abasili": 1, "costerebbe": 1, "\u00bb": 1, "piatto": 1, "mantovana": 1, "mincio": 1, "favola": 1, "pontirolo": 1, "romanengo": 1, "liberoquotidiano": 1, "ixe": 1, "benedizione": 1, "facchini": 1, "portatori": 1, "quintali": 1, "omologare": 1, "india": 3, "ristabilimento": 1, "latorre": 1, "gridare": 1, "mar\u00f2": 4, "gambaro": 1, "noale": 2, "ettari": 1, "serre": 1, "insalata": 2, "rucola": 1, "\u00absolo": 1, "dovr\u00f2": 2, "persone\u00bb": 1, "idiota": 1, "serbia": 1, "conquistano": 1, "corrieredelveneto": 1, "berghem": 3, "fest": 2, "colli": 3, "spuma": 1, "accoppiata": 1, "ghisalba": 1, "verdello": 1, "ottimi": 1, "spiedini": 1, "costine": 3, "albanese": 3, "ribellarsi": 2, "miracolosamente": 1, "tweet": 1, "potano": 1, "piante": 2, "compiuta": 1, "amarcord": 1, "lungomare": 1, "potare": 1, "comment": 1, "14novembre": 1, "vedi": 1, "do": 1, "articolo": 5, "aggiungere": 1, "affama": 2, "monstrum": 1, "passera": 1, "albero": 1, "arrendiamo": 1, "temperatura": 1, "estiva": 1, "zabaione": 2, "echissenefrega": 1, "affaritaliani": 3, "politica0708": 1, "pollice": 1, "arcene": 3, "menate": 1, "sprecato": 1, "rompe": 2, "scontrino": 1, "renzismo": 1, "insoddisfatti": 1, "combatto": 1, "iostoconlevittime": 1, "uwqdkgn9msk": 1, "lezzeno": 1, "afa": 1, "padovana": 2, "\u00abmare": 1, "allestiti": 1, "mediterraneo\u00bb": 1, "accorger\u00e0": 1, "magenta": 2, "offerta": 1, "caritas": 1, "cavriago": 1, "statua": 1, "lenin": 1, "gara": 2, "salami": 1, "diversi": 4, "deposito": 1, "biciclette": 1, "acquistate": 1, "carpugnino": 1, "torte": 1, "incazzo": 1, "palme": 1, "fotografia": 1, "varranno": 1, "ambientati": 1, "contrabbando": 1, "mantengono": 1, "bivaccano": 1, "calavena": 1, "vizzolo": 1, "predabissi": 1, "crosta": 1, "grana": 1, "rovato": 1, "impegna": 2, "quinzano": 1, "desolatamente": 1, "pakistan": 1, "maro": 1, "prigionieri": 1, "diseredati": 1, "marsupio": 1, "piemontese": 2, "scatenati": 1, "dalai": 2, "lama": 2, "zogno": 2, "polenta": 4, "brembana": 1, "ingrasser\u00f2": 1, "maest\u00e0": 1, "adamello": 3, "pareri": 1, "burro": 3, "viziarsi": 1, "specula": 1, "lorum": 1, "svegliaaaaa": 2, "maletto": 1, "fragole": 1, "dolci": 1, "maleducazione": 1, "boy": 1, "scout": 1, "cngei": 1, "colesterolo": 1, "capoluoghi": 1, "localit\u00e0": 1, "villeggiatura": 1, "indicati": 5, "legale": 5, "aboliamo": 5, "privilegi": 5, "ripristino": 1, "municipi": 7, "spariscono": 1, "fauch\u00e8": 1, "caneva": 1, "parcheggiate": 1, "schifooo": 1, "bicchiere": 1, "rincorsa": 1, "preganziol": 1, "trevigiano": 1, "scritta": 1, "montecchio": 2, "risata": 1, "seppellir\u00e0": 1, "traguardo": 1, "gazebata": 1, "conclusiva": 1, "disponibilit\u00e0": 2, "sezioni": 2, "provinciali": 1, "aprirne": 1, "luci": 2, "guidino": 1, "moderati": 1, "proporr\u00f2": 1, "sprint": 1, "deriva": 2, "lepenista": 1, "socialista": 1, "mobilitazione": 1, "moduli": 3, "d\u00ec": 1, "pec": 1, "corri": 1, "affermativa": 1, "forzaitalia3005": 1, "infoline": 4, "austriaci": 2, "olandesi": 2, "fiamminghi": 2, "trash": 1, "questavoltavotolega": 22, "iovotolega": 21, "ioscrivosalvini": 21, "vitellina": 1, "kili": 4, "mucca": 1, "serafino": 1, "deluderti": 1, "deludervi": 1, "promemoria": 1, "precisazione": 1, "circoscrizioni": 1, "smarrita": 1, "recati": 1, "rifarla": 2, "an": 1, "pdl": 7, "verificabile": 1, "chat": 2, "gianpaolo": 1, "dormitorio": 2, "ortles": 2, "separati": 5, "spalanca": 1, "preparatevi": 2, "sloggiare": 1, "foglio": 1, "matteosalvini": 4, "realizzata": 1, "tecnico": 2, "cercher\u00f2": 1, "vinceeeee": 1, "guido": 1, "votava": 1, "buttato": 1, "intristire": 1, "suicidio": 1, "gianfranco": 1, "cornigliano": 1, "disintegra": 1, "fast": 1, "food": 1, "cruda": 1, "artigianale": 1, "nottambulo": 1, "sveglio": 1, "contagiose": 1, "camping": 1, "domina": 1, "seigradi": 1, "spasso": 3, "ipad": 1, "trasmette": 1, "odori": 1, "stura": 1, "compresa": 1, "dialogando": 1, "riattivare": 1, "applicazione": 2, "portavoce": 2, "collegate": 1, "indirizzo": 2, "seguimi": 2, "aiutarmi": 1, "potenziare": 1, "chiarendo": 1, "attiva": 1, "operativa": 1, "account": 1, "infografica": 1, "canavese": 1, "soldatessa": 1, "delusa": 1, "annamaria": 1, "delusi": 2, "valorizzarli": 1, "dietetico": 3, "casoncelli": 2, "pancettaaa": 1, "toh": 1, "mariano": 2, "comense": 2, "canzo": 1, "comasche": 1, "passaggi": 1, "marcallo": 2, "casone": 1, "calende": 1, "caronno": 2, "varesino": 2, "ivo": 1, "spoglio": 1, "aldini": 2, "napoleone": 1, "godono": 1, "sel": 2, "riuscita": 2, "esponendo": 1, "incremento": 1, "twittare": 1, "affi": 1, "meolo": 1, "inventano": 1, "varrebbe": 1, "marengo": 1, "gonars": 1, "m5stelle": 1, "calorosa": 1, "autoscatto": 1, "arcobaleno": 1, "fotografato": 1, "valdagno": 1, "tezze": 1, "brenta": 1, "lupari": 1, "mazzini": 1, "fotografa": 1, "lacrima": 1, "telgate": 1, "modelle": 1, "eccezione": 1, "bolgare": 2, "genuine": 1, "salutino": 1, "ininterrotta": 1, "segnalano": 1, "code": 1, "vaiiiii": 1, "mappa": 2, "lunedi": 1, "clandestino\u00e8reato": 2, "crederete": 1, "identitaria": 2, "autodeterminazione": 1, "nododigordio": 1, "reintrodurre": 2, "abrogando": 1, "defilati": 1, "raccogliamo": 1, "guardalo": 1, "axlniuqy": 1, "ac": 1, "clandestinita": 1, "brevissimo": 1, "cie": 2, "galeria": 1, "rilassarsi": 1, "mandorle": 1, "locorotondo": 1, "grassottello": 1, "superate": 2, "attraversato": 1, "stretto": 1, "piazzapulita": 1, "raccolto": 1, "granita": 1, "mandorla": 1, "aiutateci": 1, "pontida14": 3, "riduca": 1, "bivacco": 1, "lunghe": 1, "xix": 2, "ducale": 2, "tentennamenti": 1, "renzel": 1, "aspettarti": 1, "ascoltarti": 1, "contenerle": 1, "montare": 1, "altoparlanti": 1, "stanchezza": 2, "attimo": 1, "catalana": 1, "sventola": 1, "dialetto": 1, "concerto": 2, "pontidaaaaa": 1, "zola": 1, "besana": 1, "acustico": 1, "rosy": 1, "guarnieri": 1, "portici": 1, "invitati": 1, "numerosissimi": 2, "\u00abnos": 1, "id\u00e9es": 1, "convergent": 1, "\u00e0": 1, "avec": 1, "celles": 1, "convergono": 1, "pen\u00bb": 1, "figaro": 1, "fantastiche": 1, "cucinando": 1, "zanica": 1, "profumoooo": 1, "spirano": 4, "tribiano": 1, "pioltello": 1, "manzoniano": 1, "interista": 1, "distrarmi": 1, "bucatini": 1, "cacio": 1, "pepe": 1, "dietetici": 1, "rifanno": 1, "asfalto": 1, "profitto": 3, "portarti": 1, "pasqua": 1, "sentiero": 1, "accompagnano": 1, "lass\u00f9": 3, "cola": 1, "vietnam": 1, "viventi": 1, "crediamo": 1, "vassoio": 1, "canzoni": 1, "tenco": 1, "stereo": 2, "peppa": 5, "pig": 5, "cambierei": 1, "ascoltiamoci": 1, "panorama": 1, "cancelliamola": 1, "annunciata": 1, "preparati": 1, "bandiere": 3, "arresteranno": 1, "sacile": 2, "farti": 1, "electrolux": 1, "porcia": 2, "basa": 1, "energetica": 1, "speck": 1, "friulane": 1, "pasiano": 1, "friul": 1, "pacificamenteliberi": 1, "indipendenti": 2, "buja": 2, "ud": 1, "longarone": 1, "erto": 1, "quadernetto": 1, "nascendo": 1, "assistenza": 1, "favorevoli": 1, "sc": 1, "udc": 1, "astenuti": 1, "emendamenti": 1, "smascheriamo": 2, "mantenerlo": 1, "letture": 1, "copie": 2, "svegliaaa": 2, "sistemate": 1, "arona": 1, "cavour": 1, "calcutta": 2, "gobba": 1, "nobel": 2, "limitarti": 1, "mortara": 1, "riconquistare": 2, "abrogazione": 4, "tassiamo": 1, "regolamentiamo": 1, "mancino": 2, "ripartono": 1, "lavanderia": 1, "integrano": 1, "diffamano": 1, "rispediamoli": 1, "genesio": 1, "alloggiano": 1, "riz": 1, "sposteremo": 1, "finch\u00e8": 2, "banzai": 18, "verbania": 1, "tele": 4, "rimbambisce": 1, "dubitare": 1, "giocattoli": 1, "faro": 1, "assegnate": 1, "invaso": 2, "seduta": 1, "richiedere": 1, "adesivi": 4, "materiale": 1, "ghedi": 1, "anticipato": 1, "x1g35r1": 1, "sara": 1, "bendato": 1, "congiuntivite": 1, "gasparri": 1, "wow": 2, "dimostrazione": 2, "atc": 1, "breno": 1, "distribuito": 2, "patatine": 1, "perch\u00e8": 9, "compilare": 1, "scrivermi": 1, "olimpiadi": 1, "formula": 1, "robb": 1, "matt": 1, "inaugurata": 1, "profumo": 2, "valpolicella": 1, "cariano": 3, "golia": 1, "mordere": 1, "porter\u00e0": 1, "arco": 2, "domenicaaa": 1, "grappino": 2, "cripta": 1, "medievale": 2, "erbe": 2, "bassano": 2, "vicentina": 1, "malo": 1, "cioccolata": 1, "calda": 1, "90esima": 1, "carnevale": 1, "arcade": 1, "caorle": 1, "firmaindipendenza": 2, "arena": 1, "ritira": 1, "risparmiano": 1, "indebitata": 1, "autostradali": 1, "pendolari": 2, "sprecone": 1, "autorizzato": 1, "rincari": 1, "comincio": 3, "\u00fcber": 1, "immigration": 1, "und": 2, "f\u00f6deralismus": 1, "von": 1, "herrn": 1, "nur": 1, "viel": 1, "rauch": 1, "stunde": 1, "verschwendet": 1, "was": 1, "verstanden": 1, "haben": 1, "ist": 1, "dass": 1, "herr": 1, "die": 1, "staatsanleihen": 1, "versteuern": 1, "wird": 1, "um": 1, "noch": 1, "einen": 1, "gefallen": 1, "zu": 1, "tun": 1, "palazzago": 2, "valle": 1, "imagna": 1, "salamelle": 1, "strepitose": 1, "paradossalmente": 1, "salver\u00e0": 1, "indistinta": 1, "tireremo": 1, "amplificatori": 1, "riconosco": 1, "leggera": 1, "pinzimonio": 1, "carote": 1, "finocchi": 1, "venete": 2, "deluderlo": 1, "spreco": 1, "boicotta": 1, "invernizzi": 1, "giocano": 2, "fref": 1, "ts": 1, "spontaneo": 1, "legaaaaaa": 1, "auditorium": 1, "tipica": 1, "tonico": 1, "riservare": 1, "altroreati": 1, "missoltino": 1, "gemellaggio": 2, "ingredienti": 1, "genuini": 1, "quintale": 1, "trippa": 1, "cottura": 1, "veill\u00e0": 1, "valdostana": 1, "cantine": 1, "nevicaaaaa": 1, "racconter\u00f2": 1, "chieder\u00e0": 1, "km": 1, "quadrati": 1, "sommerso": 1, "bomporto": 1, "istituto": 2, "oncologico": 1, "parrucche": 1, "malate": 1, "contrattacco": 1, "mirto": 1, "liquori": 1, "preferenze": 1, "urlare": 1, "fiorito": 1, "ordinata": 1, "disposta": 1, "attaccheranno": 1, "copia": 1, "seguo": 1, "fiaccole": 1, "casello": 1, "gallarate": 1, "kilometri": 2, "spediremo": 1, "raccomandate": 1, "spedite": 1, "ritirate": 1, "sportelli": 1, "disorganizzato": 1, "incertezza": 1, "nomina": 1, "fregandosene": 1, "rimpianto": 1, "rassegnazione": 1, "sconfitte": 2, "solitudine": 1, "vegetariana": 2, "capriolo": 2, "polentaaa": 2, "bresaola": 1, "sciatt": 1, "risotto": 1, "fiocchi": 1, "vetri": 2, "accompagnino": 1, "ascolter\u00f2": 1, "giorgino": 1, "seguir\u00f2": 1, "stacci": 1, "vili": 1, "comunicazione": 1, "arriveremo": 1, "miliardaria": 1, "littizzetto": 2, "campionessa": 1, "disciplina": 1, "frequentata": 1, "considerassi": 1, "filippica": 1, "tono": 1, "indignato": 1, "rifiutando": 1, "etichetta": 1, "vinca": 1, "miss": 1, "immobiliari": 1, "vaste": 1, "subiscono": 1, "rifiuterei": 1, "egoisti": 2, "schettino": 1, "\u00e9": 3, "fiumicino": 2, "ritirano": 1, "calcioscommesse": 1, "truccate": 1, "calciatore": 1, "distrazione": 1, "riflessivo": 1, "registrare": 1, "alemanno": 2, "rideeeeeeeeee": 1, "allegra": 1, "simpaticissima": 1, "debora": 1, "briglia": 1, "sciolta": 1, "vaffaday": 1, "disobbedienza": 2, "berretto": 1, "rebel": 1, "russi": 1, "compio": 1, "chiamer\u00e0": 1, "ritorsioni": 1, "forconi": 1, "padrone": 1, "tramonto": 7, "rientrando": 1, "dark": 1, "game": 1, "steve": 1, "affamati": 1, "cominciata": 1, "manifestando": 1, "antieuropeisti": 1, "producono": 1, "amartya": 1, "sen": 1, "orribile": 1, "francois": 1, "heisbourg": 1, "analista": 1, "anglo": 1, "europeista": 1, "strategici": 1, "certezze": 3, "grazieeeeeee": 1, "umberto": 2, "bossi": 5, "dividere": 1, "decidendo": 1, "sentirsi": 1, "privatizzarla": 1, "rachid": 1, "vendeva": 1, "laureato": 1, "segnalo": 2, "nelson": 1, "mandela": 1, "cuperlo": 1, "intolleranza": 1, "darle": 1, "cortina": 1, "cinese": 1, "signorine": 1, "eccoci": 1, "porcellini": 1, "rare": 1, "eccezioni": 1, "partecipo": 1, "alain": 1, "benoist": 1, "conserveremo": 1, "schiacceranno": 1, "cominciate": 1, "improvviso": 1, "sorprenderete": 1, "assisi": 1, "scaldi": 1, "automezzi": 1, "sciura": 5, "simposio": 1, "vaticano": 2, "premiato": 1, "sciur": 2, "malora": 1, "premiano": 1, "affezionati": 1, "peraltro": 1, "accorgiamo": 1, "ruby": 1, "eletti": 1, "stucchi": 1, "bernardini": 1, "stefanazzi": 1, "lealmente": 1, "carte": 1, "oscar": 4, "wilde": 1, "duman": 4, "matina": 2, "telelombardia": 14, "decadenze": 1, "magistratura": 1, "decadenza": 3, "confesso": 3, "decadere": 1, "segnaliamo": 1, "mjfmmvvkf1g": 1, "feature": 1, "c4": 1, "overview": 1, "list": 1, "uuw2af": 1, "j2qizzmww99bs3e6q": 1, "bei": 1, "consumo": 1, "cemento": 1, "appalti": 1, "kilometro": 1, "favoriamo": 1, "arrabbieranno": 1, "sveglieranno": 1, "tentando": 1, "day": 3, "lapadania": 3, "randelli": 1, "mirtilli": 1, "argentina": 1, "more": 1, "messico": 1, "esauriti": 1, "frequenze": 1, "bosco": 1, "isolata": 1, "starci": 1, "rientra": 1, "applauso": 1, "abusi": 1, "edilizi": 1, "sanatoria": 1, "gestiscono": 1, "slot": 2, "machine": 2, "care": 2, "cartoline": 1, "lancini": 2, "scriviamogli": 1, "rinaldi": 1, "insiemesipu\u00f2": 1, "sospendiamo": 1, "padano": 3, "telefonica": 1, "cartina": 1, "kit": 1, "scappati": 1, "sopravvissuti": 1, "assessorato": 1, "sussidiariet\u00e0": 1, "coccoliamo": 1, "bastaaaaaaaaa": 1, "scomoda": 1, "aumenta": 2, "tariffe": 1, "evtutti": 1, "pisaoia": 1, "massacro": 1, "bugia": 1, "naturale": 1, "berlusconiani": 1, "alfaniani": 1, "machissenefregaaa": 1, "grazieeeeeeeeeee": 1, "portogruaro": 1, "pramaggiore": 2, "fuso": 2, "falchi": 1, "colombe": 1, "pitonesse": 1, "pantere": 1, "bitto": 1, "casera": 1, "sforzato": 1, "restituirli": 1, "bagnato": 1, "decisione": 1, "minorile": 2, "affido": 2, "temporaneo": 1, "banali": 1, "composte": 1, "aspettano": 1, "adozione": 1, "ripensavo": 1, "prostituire": 1, "razza": 1, "bestiaccia": 1, "fedele": 1, "telefonate": 3, "lastampa": 1, "indf2wfkancpqxz4s6uvmn": 1, "manifesti": 1, "drammaticamente": 1, "cresciuta": 1, "squallide": 1, "pecore": 1, "lernerrrrrrr": 1, "collezionato": 1, "scomparendo": 1, "lernerrrrr": 1, "cabine": 1, "gettoni": 1, "goccia": 2, "scolpire": 1, "tirando": 1, "ballo": 2, "lasciamole": 1, "curiosa": 1, "tende": 1, "regalate": 1, "moltiplicate": 1, "conoscente": 1, "viandante": 1, "mendicante": 1, "rivali": 1, "raffaele": 1, "zaino": 1, "tauro": 1, "segregati": 1, "chiedervi": 1, "indipendentista": 1, "gold": 2, "scrive": 1, "minipartito": 1, "stampo": 1, "sparisca": 1, "intervengo": 2, "salsa": 1, "pom\u00ec": 2, "pubblicizza": 1, "scattare": 1, "brava": 2, "grigio": 2, "crederci": 1, "vivente": 1, "molta": 1, "cio\u00e9": 1, "tagliatelle": 1, "tiramisu": 1, "genep\u00ec": 1, "augh": 1, "lombarda": 1, "rompiballe": 1, "incrocio": 1, "preziose": 1, "varia": 2, "rainews": 1, "incontrando": 2, "cacchio": 2, "misterioso": 1, "ministra": 5, "evasore": 1, "cambiate": 1, "leggerina": 1, "piccante": 1, "pancetta": 1, "interessare": 1, "balotelli": 1, "tagliato": 1, "machissenefregaaaaaaa": 1, "cesarino": 1, "lazzate": 1, "intitolando": 1, "stand": 1, "spazi": 1, "polipo": 1, "noventa": 1, "mazzarella": 1, "zuzzurro": 1, "apprezzati": 1, "valorizzati": 1, "congo": 2, "cozze": 2, "vermentino": 1, "resa": 2, "rappresentavano": 1, "sovrani": 1, "euroburocrati": 1, "rompiamoilpatto": 2, "salvifico": 1, "barcellona": 1, "ricominciamo": 1, "liberate": 1, "indulto": 1, "picchieranno": 1, "consapevolezza": 1, "affettuose": 1, "imparato": 1, "inguardabili": 1, "faziosi": 1, "sacconi": 1, "vergognatiiiiiii": 1, "pascale": 1, "lesbica": 1, "suggerirvi": 1, "piaceeeeeeeee": 1, "condivisioni": 3, "ripulisca": 1, "nuvole": 1, "divisi": 1, "sopralluogo": 2, "carrozzina": 1, "ascensore": 1, "montascale": 1, "mollano": 1, "troverai": 1, "rocce": 1, "insegneranno": 1, "bernardo": 1, "clandesitini": 1, "padana": 3, "casalbuttano": 1, "brunch": 1, "kiki": 1, "bolliti": 1, "bue": 1, "tonno": 1, "parleranno": 1, "leghistaaaa": 1, "tgcoreadelnord": 1, "tg3": 2, "servita": 1, "paure": 1, "vezzoli": 1, "machete": 2, "americani": 1, "attende": 1, "tuta": 1, "augura": 1, "ceriano": 1, "laghetto": 1, "scoperte": 1, "insivisibile": 1, "zanzara": 3, "cruciani": 1, "parenzo": 1, "magna": 1, "sovrintendente": 1, "menzogna": 1, "strazio": 1, "stress": 1, "tacer": 1, "indispensabili": 1, "adeguati": 1, "viaggi": 1, "svegliato": 1, "pattugliamenti": 1, "telefona": 1, "arrivava": 1, "guardo": 1, "urlato": 1, "litigato": 1, "sconcerto": 1, "brunetta": 1, "demicheli": 1, "diminuisce": 1, "centesimi": 1, "litro": 2, "province": 1, "biscione": 1, "levatoio": 1, "cucine": 1, "barilla": 2, "yoyo": 1, "educativa": 1, "mulino": 1, "perbacco": 1, "principessa": 1, "rispettose": 1, "approfondite": 1, "confezionati": 1, "sviluppi": 1, "rota": 2, "fiom": 1, "valcamonica": 3, "nascondere": 1, "lombardoa": 1, "riva": 2, "sindacalisti": 1, "distante": 1, "abbiati": 1, "zapata": 1, "galliani": 1, "buttiamo": 1, "atm": 1, "curarsi": 1, "vetro": 1, "lavo": 1, "iceberg": 1, "carmela": 1, "rozza": 1, "licia": 1, "ronzulli": 1, "nessunoooooo": 1, "cappelletta": 1, "eroicamente": 1, "italietta": 1, "lettera": 1, "arabi": 1, "sudamericani": 1, "indiani": 1, "pachistani": 1, "legna": 1, "osoppo": 2, "cassette": 1, "signorino": 2, "cecile": 1, "nominare": 1, "svegliaaaaaaa": 1, "chiamarmi": 1, "chiamatlo": 1, "salutiamoooo": 1, "menata": 1, "polo": 2, "ammazzano": 1, "dottoressa": 1, "fermata": 1, "soccorrere": 1, "investita": 1, "sdegno": 1, "scetticismo": 1, "rifiuto": 1, "moooolto": 1, "politicamente": 4, "corretto": 3, "castano": 1, "trovarli": 1, "tombola": 1, "madddaiiiiiiiiii": 1, "menare": 1, "allergica": 1, "battuto": 1, "azzardo": 1, "datevi": 1, "buguggiate": 1, "poetica": 1, "poich\u00e9": 1, "camminare": 1, "volare": 2, "ascoltarvi": 1, "antenna": 3, "telefonarmi": 1, "bormio": 2, "avvistato": 1, "cervo": 1, "gioielliera": 1, "sarono": 1, "confessato": 1, "sbandato": 1, "formiche": 1, "matte": 1, "cicale": 2, "spandono": 1, "formica": 1, "fottere": 1, "bombardini": 1, "soffrono": 1, "livigno": 1, "dovessimo": 1, "aaron": 1, "swartz": 1, "attivista": 1, "lottato": 1, "conoscenze": 1, "suicida": 1, "accettato": 1, "approfittando": 1, "raddoppiato": 1, "abbonamento": 1, "finiti": 2, "solbiate": 2, "feste": 1, "arcisate": 1, "olona": 1, "accogli": 1, "sorridi": 1, "campionato": 1, "capriate": 1, "pirla": 3, "programmano": 1, "torace": 1, "sfregiato": 1, "stacca": 1, "spina": 1, "cade": 2, "scatole": 1, "avanzano": 1, "redditometro": 2, "scegliete": 1, "inserite": 1, "costarvi": 1, "veterinario": 1, "succhi": 1, "medicine": 1, "donazioni": 1, "autunno": 3, "none": 1, "ballare": 1, "tornanti": 1, "selvino": 1, "mortitolo": 1, "combatt\u00e9": 1, "scacciare": 1, "occupante": 1, "migliaio": 2, "esagerati": 1, "semifinale": 1, "torneo": 1, "notturno": 1, "vezza": 1, "lanceremo": 1, "serrata": 1, "stalle": 1, "piscine": 1, "beccare": 1, "schiava": 1, "servir\u00e0": 1, "tucc": 1, "governaccio": 1, "week": 2, "melone": 1, "calvenzano": 1, "gnocchi": 1, "ravanelli": 1, "bicchieri": 1, "fetta": 1, "crostata": 1, "telefilm": 1, "mariti": 1, "svuota": 3, "legga": 1, "bicierin": 1, "grapa": 1, "coro": 1, "alpino": 1, "canta": 1, "cime": 1, "barbe": 1, "veniano": 2, "trota": 2, "laghetti": 1, "comasco": 1, "valbrona": 1, "mooolto": 1, "smontano": 1, "nipotini": 1, "avanzi": 1, "dolcetto": 1, "profiterole": 1, "montata": 1, "corgeno": 1, "scoprono": 1, "angoli": 1, "divorziati": 2, "contattare": 1, "asl": 1, "esulto": 1, "semmai": 1, "n\u00e8": 2, "avversario": 1, "sentenze": 1, "coesione": 1, "supremo": 1, "disubbidienza": 1, "guidare": 1, "schiuma": 1, "venaria": 1, "favo": 1, "riusciremo": 1, "arrabbiarmi": 1, "falsit\u00e0": 1, "lavoreresti": 1, "sallusti": 1, "sorridente": 1, "missaglia": 3, "missoltini": 1, "muggi\u00f2": 1, "papiniano": 2, "libricini": 1, "sudato": 1, "fradicio": 1, "trasferito": 1, "spalla": 1, "piani": 1, "scaleeee": 1, "sovrumani": 1, "cremona": 1, "balla": 1, "borsa": 1, "pernigotti": 1, "turca": 1, "smetter\u00f2": 1, "comprarli": 1, "perderemo": 1, "telefonare": 2, "precedente": 1, "ragazziiiiiii": 1, "fregatura": 1, "53egzsrsepo": 1, "goito": 3, "scriverete": 1, "griglia": 1, "cassano": 1, "magnago": 1, "gufi": 1, "alserio": 1, "boffalora": 1, "ticino": 1, "svegliaa": 1, "telefonando": 1, "ritiro": 1, "emettere": 1, "suoni": 1, "gorgheggi": 1, "ribelli": 1, "ultr\u00e0": 1, "orizzonte": 1, "primavere": 1, "arabe": 1, "sinistre": 1, "osannato": 1, "alimentato": 1, "guardasse": 1, "chiamatelo": 1, "rinvia": 1, "acconto": 1, "colare": 1, "picco": 1, "daiiiii": 2, "borgomanero": 1, "spegne": 1, "accende": 1, "distribuzione": 1, "bilico": 1, "trombata": 1, "melma": 1, "morta": 1, "telefonato": 1, "rivolti": 1, "pernacchie": 1, "osio": 2, "agora": 1, "indosso": 1, "sar\u00f3": 3, "salto": 2, "grigliata": 1, "bellooooooo": 1, "benvenuta": 1, "parlarmi": 2, "assssolutamente": 1, "minetti": 1, "amava": 1, "rabbioso": 1, "arrogante": 1, "scompaia": 1, "bussolengo": 1, "avvisa": 1, "economicamente": 2, "cormano": 1, "ode": 1, "to": 1, "my": 1, "family": 1, "grazieeeeeeeeee": 1, "ebb\u00e8": 1, "riconfermato": 1, "valsa": 1, "rivoluzionaria": 1, "zeta": 1, "palmanova": 1, "impressionante": 2, "rose": 1, "indovina": 1, "continuando": 1, "prudenti": 1, "futuri": 1, "cuori": 1, "ragionare": 1, "disfattisti": 1, "dando": 1, "mammamia": 1, "obbligatori": 1, "ascoltano": 1, "meda": 1, "cantano": 1, "finestrino": 1, "abbassato": 1, "lombarde": 1, "innevate": 1, "incredibileeeeeeeee": 1, "boccia": 1, "vito": 1, "crimi": 1, "morivano": 1, "osteggiato": 1, "progressisti": 1, "ipocritamente": 1, "ricordano": 1, "volantinaggio": 1, "critica": 3, "risveglieranno": 1, "fotografi": 1, "ciaoooo": 1, "indirizzi": 1, "incazzato": 2, "niguarda": 1, "picconatore": 1, "sparso": 1, "pennivendoli": 1, "intatti": 1, "ciauuu": 2, "comunione": 1, "chiamatemi": 2, "vittore": 1, "frustrati": 1, "finanziati": 1, "sfido": 1, "gradi": 1, "accaldato": 1, "dubai": 1, "sfogatevi": 1, "profitti": 1, "battersi": 1, "celiaci": 1, "riuscre": 1, "ascensori": 1, "recupero": 1, "materne": 1, "telefonatemi": 1, "sbarcato": 1, "comiziare": 1, "prevedo": 1, "faziosit\u00e0": 1, "partigiani": 1, "sapessero": 1, "omosessuali": 2, "esultanza": 1, "mode": 1, "chiuder\u00e0": 1, "monforte": 1, "fischietti": 1, "mortadella": 1, "incompreso": 1, "entrarci": 1, "vermi": 1, "boston": 1, "ebbene": 1, "gravidanza": 1, "nascita": 1, "bimbe": 1, "vestitino": 1, "ciuccio": 1, "tuttiicriminidegliimmigrati": 1, "compie": 1, "sivlio": 1, "cavaliere": 1, "end": 1, "giacomo": 1, "fogliano": 1, "redipuglia": 1, "cordenons": 1, "meduno": 1, "zoppola": 1, "furlans": 1, "montefeltro": 1, "okkupato": 1, "rendono": 1, "speremm": 1, "litigiosi": 1, "motivati": 1, "marciamo": 1, "compatti": 1, "ultrasettantenni": 1, "sottoscrivere": 1, "polizza": 1, "assicurativa": 1, "scippi": 1, "azz": 1, "bilancia": 1, "assegna": 1, "suicidi": 2, "civitanova": 1, "scherzo": 1, "figuraccia": 1, "onida": 1, "imitazioni": 1, "scandalizzato": 1, "satira": 1, "ricordandosi": 1, "sovraffollamento": 1, "vivibili": 1, "risparmieremo": 1, "gia": 1, "proclami": 1, "ricordereste": 1, "enzo": 2, "jannacci": 2, "intitolandogli": 1, "passeggia": 1, "scarp": 1, "tennis": 1, "registrando": 1, "palude": 1, "romana": 1, "cosap": 1, "insegne": 1, "persecuzione": 1, "suggerite": 1, "aperture": 1, "preoccupa": 2, "negativi": 1, "blog": 1, "attaccarlo": 1, "accetta": 1, "depositario": 1, "baggio": 1, "casalinga": 1, "nevica": 1, "annullato": 1, "turbare": 1, "spieghi": 1, "milanoitalia": 1, "lettori": 1, "giudizi": 1, "insufficiente": 1, "superano": 1, "dimesso": 1, "scannando": 1, "presidenze": 1, "recupereranno": 1, "preparo": 1, "caffe": 1, "ordinarlo": 1, "vaccinazioni": 1, "rideva": 1, "preoccupata": 1, "sospettare": 1, "crispy": 1, "mac": 1, "bacon": 1, "giornatina": 1, "deluso": 1, "credibilita": 1, "rinsultati": 1, "mord": 1, "credibilit\u00e0": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/salvini_emoji b/anno3/avrc/assignments/dataviz/dataset/all/salvini_emoji new file mode 100644 index 0000000..3c252d9 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/salvini_emoji @@ -0,0 +1 @@ +{"\ud83d\ude44": 1, "\ud83d\ude00": 8, "\ud83d\udd1d": 2, "\ud83d\ude0a": 81, "\ud83d\udd34": 26, "\ud83d\ude38": 6, "\ud83c\uddee\ud83c\uddf9": 82, "\ud83d\ude09": 15, "\ud83e\udd23": 2, "\ud83e\udd14": 2, "\ud83d\ude39": 1, "\u26a0": 5, "\ud83d\ude3b": 1, "\ud83d\ude02": 2, "\ud83d\ude07": 2, "\ud83d\ude0b": 3, "\ud83d\udcaa\ud83c\udffb": 1, "\u2139": 4, "\u2709": 4, "\ud83d\ude8c": 3, "\u2705": 1, "\ud83d\ude31": 8, "\ud83d\ude18": 6, "\ud83d\ude33": 1, "\u263a": 2, "\ud83d\udc0e": 1, "\ud83d\udc4f": 1, "\u274c": 1, "\u203c": 2, "\ud83c\udf83": 1, "\ud83d\ude42": 5, "\u2764": 2, "\ud83d\udc08": 1, "\ud83d\udc4d": 1, "\ud83d\udcaa": 5, "\ud83d\udc36": 1, "\ud83d\ude01": 10, "\ud83c\uddec\ud83c\udde7": 2, "\ud83c\udde9\ud83c\uddea": 2, "\ud83d\udc49": 1, "\ud83e\udd28": 1, "\ud83d\ude0d": 2, "\ud83d\ude05": 2, "\ud83d\ude04": 3, "\ud83d\ude4f": 1, "\ud83d\ude1e": 1, "\ud83d\ude03": 4, "\u2611": 4, "\u2714": 1, "1\u20e3": 1, "2\u20e3": 1, "3\u20e3": 1, "\ud83d\udd35": 2} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/salvini_sleep b/anno3/avrc/assignments/dataviz/dataset/all/salvini_sleep new file mode 100644 index 0000000..03a0834 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/salvini_sleep @@ -0,0 +1 @@ +{"": {"0": 0, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 0, "9": 0, "10": 0, "11": 0, "12": 0, "13": 0, "14": 0, "15": 0, "16": 0, "17": 0, "18": 0, "19": 0, "20": 0, "21": 0, "22": 0, "23": 0}, "Jan": {"0": 3, "1": 1, "2": 0, "3": 1, "4": 0, "5": 0, "6": 0, "7": 0, "8": 2, "9": 12, "10": 16, "11": 11, "12": 22, "13": 29, "14": 18, "15": 17, "16": 14, "17": 13, "18": 21, "19": 27, "20": 10, "21": 14, "22": 4, "23": 0}, "Feb": {"0": 0, "1": 1, "2": 1, "3": 0, "4": 0, "5": 0, "6": 1, "7": 1, "8": 1, "9": 21, "10": 19, "11": 21, "12": 23, "13": 26, "14": 17, "15": 21, "16": 21, "17": 20, "18": 20, "19": 31, "20": 14, "21": 18, "22": 9, "23": 9}, "Mar": {"0": 6, "1": 0, "2": 1, "3": 0, "4": 0, "5": 0, "6": 0, "7": 2, "8": 2, "9": 21, "10": 29, "11": 23, "12": 29, "13": 18, "14": 10, "15": 15, "16": 24, "17": 21, "18": 23, "19": 29, "20": 9, "21": 14, "22": 8, "23": 11}, "Apr": {"0": 1, "1": 1, "2": 0, "3": 0, "4": 0, "5": 0, "6": 1, "7": 1, "8": 5, "9": 9, "10": 16, "11": 29, "12": 46, "13": 17, "14": 20, "15": 13, "16": 16, "17": 35, "18": 25, "19": 17, "20": 19, "21": 15, "22": 12, "23": 9}, "May": {"0": 8, "1": 1, "2": 3, "3": 1, "4": 0, "5": 0, "6": 0, "7": 4, "8": 7, "9": 16, "10": 43, "11": 40, "12": 47, "13": 52, "14": 32, "15": 42, "16": 25, "17": 26, "18": 48, "19": 43, "20": 43, "21": 38, "22": 18, "23": 12}, "Jun": {"0": 6, "1": 4, "2": 3, "3": 1, "4": 0, "5": 1, "6": 1, "7": 1, "8": 9, "9": 8, "10": 22, "11": 27, "12": 29, "13": 21, "14": 11, "15": 20, "16": 21, "17": 16, "18": 26, "19": 24, "20": 24, "21": 22, "22": 21, "23": 13}, "Jul": {"0": 7, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 2, "8": 4, "9": 8, "10": 9, "11": 21, "12": 23, "13": 24, "14": 11, "15": 10, "16": 9, "17": 9, "18": 15, "19": 26, "20": 19, "21": 20, "22": 17, "23": 11}, "Aug": {"0": 4, "1": 1, "2": 0, "3": 0, "4": 0, "5": 0, "6": 0, "7": 0, "8": 1, "9": 8, "10": 6, "11": 17, "12": 27, "13": 19, "14": 14, "15": 12, "16": 13, "17": 13, "18": 13, "19": 16, "20": 17, "21": 37, "22": 18, "23": 9}, "Sep": {"0": 9, "1": 0, "2": 0, "3": 1, "4": 1, "5": 0, "6": 0, "7": 1, "8": 5, "9": 14, "10": 15, "11": 26, "12": 34, "13": 37, "14": 19, "15": 17, "16": 12, "17": 17, "18": 25, "19": 38, "20": 23, "21": 32, "22": 11, "23": 5}, "Oct": {"0": 5, "1": 1, "2": 0, "3": 0, "4": 0, "5": 2, "6": 1, "7": 0, "8": 6, "9": 28, "10": 28, "11": 34, "12": 43, "13": 35, "14": 18, "15": 22, "16": 25, "17": 35, "18": 35, "19": 33, "20": 35, "21": 26, "22": 15, "23": 8}, "Nov": {"0": 14, "1": 1, "2": 1, "3": 0, "4": 0, "5": 1, "6": 2, "7": 10, "8": 24, "9": 57, "10": 52, "11": 69, "12": 60, "13": 58, "14": 51, "15": 52, "16": 48, "17": 48, "18": 60, "19": 57, "20": 53, "21": 61, "22": 31, "23": 33}, "Dec": {"0": 7, "1": 0, "2": 0, "3": 0, "4": 0, "5": 0, "6": 2, "7": 0, "8": 1, "9": 12, "10": 12, "11": 30, "12": 22, "13": 27, "14": 11, "15": 13, "16": 24, "17": 18, "18": 25, "19": 25, "20": 11, "21": 24, "22": 15, "23": 10}} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/salvini_trend.json b/anno3/avrc/assignments/dataviz/dataset/all/salvini_trend.json new file mode 100644 index 0000000..71c92f9 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/salvini_trend.json @@ -0,0 +1 @@ +{"23-Nov-2019": 21, "25-Nov-2019": 1, "24-Nov-2019": 22, "22-Nov-2019": 20, "21-Nov-2019": 19, "20-Nov-2019": 18, "19-Nov-2019": 23, "18-Nov-2019": 19, "17-Nov-2019": 12, "16-Nov-2019": 9, "15-Nov-2019": 12, "14-Nov-2019": 35, "13-Nov-2019": 18, "12-Nov-2019": 16, "11-Nov-2019": 19, "10-Nov-2019": 24, "9-Nov-2019": 18, "8-Nov-2019": 16, "7-Nov-2019": 19, "6-Nov-2019": 21, "5-Nov-2019": 17, "4-Nov-2019": 16, "3-Nov-2019": 1, "2-Nov-2019": 2, "1-Nov-2019": 1, "31-Oct-2019": 3, "30-Oct-2019": 5, "29-Oct-2019": 3, "28-Oct-2019": 6, "26-Oct-2019": 2, "25-Oct-2019": 4, "24-Oct-2019": 4, "23-Oct-2019": 5, "22-Oct-2019": 2, "21-Oct-2019": 5, "20-Oct-2019": 1, "19-Oct-2019": 1, "18-Oct-2019": 1, "17-Oct-2019": 1, "14-Oct-2019": 1, "13-Oct-2019": 2, "12-Oct-2019": 2, "11-Oct-2019": 1, "10-Oct-2019": 1, "9-Oct-2019": 1, "8-Oct-2019": 3, "7-Oct-2019": 3, "5-Oct-2019": 1, "4-Oct-2019": 2, "3-Oct-2019": 5, "2-Oct-2019": 3, "1-Oct-2019": 5, "30-Sep-2019": 3, "29-Sep-2019": 3, "28-Sep-2019": 2, "27-Sep-2019": 3, "26-Sep-2019": 5, "25-Sep-2019": 1, "24-Sep-2019": 2, "23-Sep-2019": 3, "22-Sep-2019": 2, "21-Sep-2019": 3, "19-Sep-2019": 2, "18-Sep-2019": 2, "17-Sep-2019": 2, "16-Sep-2019": 1, "15-Sep-2019": 5, "14-Sep-2019": 1, "13-Sep-2019": 2, "12-Sep-2019": 1, "11-Sep-2019": 2, "10-Sep-2019": 2, "9-Sep-2019": 5, "8-Sep-2019": 2, "7-Sep-2019": 1, "6-Sep-2019": 2, "5-Sep-2019": 1, "4-Sep-2019": 2, "3-Sep-2019": 1, "2-Sep-2019": 2, "1-Sep-2019": 3, "31-Aug-2019": 1, "30-Aug-2019": 1, "29-Aug-2019": 2, "28-Aug-2019": 3, "26-Aug-2019": 1, "23-Aug-2019": 1, "22-Aug-2019": 1, "21-Aug-2019": 1, "20-Aug-2019": 2, "19-Aug-2019": 1, "18-Aug-2019": 2, "15-Aug-2019": 2, "14-Aug-2019": 3, "13-Aug-2019": 2, "12-Aug-2019": 1, "11-Aug-2019": 2, "10-Aug-2019": 3, "9-Aug-2019": 4, "8-Aug-2019": 1, "7-Aug-2019": 1, "6-Aug-2019": 3, "5-Aug-2019": 2, "4-Aug-2019": 1, "3-Aug-2019": 1, "1-Aug-2019": 2, "26-Jul-2019": 1, "25-Jul-2019": 3, "24-Jul-2019": 2, "22-Jul-2019": 1, "21-Jul-2019": 1, "19-Jul-2019": 2, "18-Jul-2019": 1, "17-Jul-2019": 2, "16-Jul-2019": 1, "15-Jul-2019": 2, "13-Jul-2019": 3, "12-Jul-2019": 1, "11-Jul-2019": 1, "10-Jul-2019": 1, "9-Jul-2019": 2, "6-Jul-2019": 4, "5-Jul-2019": 1, "3-Jul-2019": 1, "1-Jul-2019": 1, "30-Jun-2019": 1, "29-Jun-2019": 3, "28-Jun-2019": 3, "27-Jun-2019": 2, "26-Jun-2019": 3, "21-Jun-2019": 2, "20-Jun-2019": 1, "19-Jun-2019": 1, "17-Jun-2019": 5, "14-Jun-2019": 1, "12-Jun-2019": 2, "11-Jun-2019": 1, "8-Jun-2019": 2, "7-Jun-2019": 4, "6-Jun-2019": 2, "5-Jun-2019": 4, "4-Jun-2019": 5, "3-Jun-2019": 3, "2-Jun-2019": 2, "1-Jun-2019": 3, "31-May-2019": 2, "30-May-2019": 2, "29-May-2019": 2, "28-May-2019": 2, "25-May-2019": 2, "24-May-2019": 6, "23-May-2019": 3, "22-May-2019": 5, "21-May-2019": 5, "20-May-2019": 5, "19-May-2019": 5, "18-May-2019": 6, "17-May-2019": 6, "16-May-2019": 4, "15-May-2019": 3, "14-May-2019": 4, "13-May-2019": 6, "12-May-2019": 5, "10-May-2019": 3, "9-May-2019": 6, "8-May-2019": 2, "7-May-2019": 6, "6-May-2019": 3, "5-May-2019": 2, "4-May-2019": 3, "3-May-2019": 8, "2-May-2019": 3, "1-May-2019": 4, "30-Apr-2019": 1, "29-Apr-2019": 1, "27-Apr-2019": 2, "26-Apr-2019": 2, "25-Apr-2019": 4, "24-Apr-2019": 1, "23-Apr-2019": 1, "19-Apr-2019": 3, "18-Apr-2019": 1, "17-Apr-2019": 3, "15-Apr-2019": 2, "12-Apr-2019": 1, "11-Apr-2019": 1, "10-Apr-2019": 3, "8-Apr-2019": 6, "7-Apr-2019": 2, "6-Apr-2019": 4, "5-Apr-2019": 1, "4-Apr-2019": 1, "2-Apr-2019": 1, "1-Apr-2019": 3, "30-Mar-2019": 1, "29-Mar-2019": 2, "28-Mar-2019": 2, "27-Mar-2019": 1, "25-Mar-2019": 1, "23-Mar-2019": 1, "22-Mar-2019": 4, "21-Mar-2019": 3, "20-Mar-2019": 1, "19-Mar-2019": 1, "18-Mar-2019": 3, "17-Mar-2019": 2, "16-Mar-2019": 3, "15-Mar-2019": 3, "14-Mar-2019": 1, "13-Mar-2019": 1, "12-Mar-2019": 2, "11-Mar-2019": 1, "10-Mar-2019": 1, "8-Mar-2019": 3, "7-Mar-2019": 1, "5-Mar-2019": 1, "4-Mar-2019": 1, "1-Mar-2019": 1, "28-Feb-2019": 1, "27-Feb-2019": 2, "25-Feb-2019": 2, "24-Feb-2019": 1, "23-Feb-2019": 1, "22-Feb-2019": 2, "21-Feb-2019": 4, "20-Feb-2019": 4, "19-Feb-2019": 2, "18-Feb-2019": 3, "17-Feb-2019": 2, "13-Feb-2019": 1, "11-Feb-2019": 1, "10-Feb-2019": 3, "9-Feb-2019": 2, "7-Feb-2019": 2, "6-Feb-2019": 2, "5-Feb-2019": 1, "4-Feb-2019": 1, "3-Feb-2019": 3, "2-Feb-2019": 1, "1-Feb-2019": 3, "30-Jan-2019": 1, "28-Jan-2019": 1, "27-Jan-2019": 1, "25-Jan-2019": 2, "24-Jan-2019": 1, "22-Jan-2019": 1, "20-Jan-2019": 2, "19-Jan-2019": 1, "18-Jan-2019": 3, "17-Jan-2019": 1, "16-Jan-2019": 5, "14-Jan-2019": 3, "13-Jan-2019": 1, "11-Jan-2019": 1, "10-Jan-2019": 1, "9-Jan-2019": 1, "8-Jan-2019": 1, "6-Jan-2019": 1, "5-Jan-2019": 3, "4-Jan-2019": 4, "3-Jan-2019": 2, "2-Jan-2019": 1, "31-Dec-2018": 2, "28-Dec-2018": 2, "27-Dec-2018": 1, "24-Dec-2018": 1, "20-Dec-2018": 3, "18-Dec-2018": 4, "17-Dec-2018": 1, "16-Dec-2018": 2, "12-Dec-2018": 2, "10-Dec-2018": 2, "9-Dec-2018": 2, "8-Dec-2018": 1, "7-Dec-2018": 1, "6-Dec-2018": 3, "5-Dec-2018": 1, "3-Dec-2018": 3, "29-Nov-2018": 1, "28-Nov-2018": 2, "27-Nov-2018": 2, "26-Nov-2018": 1, "23-Nov-2018": 1, "22-Nov-2018": 2, "21-Nov-2018": 1, "20-Nov-2018": 1, "19-Nov-2018": 1, "17-Nov-2018": 2, "15-Nov-2018": 2, "11-Nov-2018": 1, "9-Nov-2018": 1, "8-Nov-2018": 1, "7-Nov-2018": 3, "6-Nov-2018": 2, "5-Nov-2018": 1, "4-Nov-2018": 2, "3-Nov-2018": 2, "2-Nov-2018": 1, "1-Nov-2018": 2, "31-Oct-2018": 1, "30-Oct-2018": 1, "29-Oct-2018": 1, "27-Oct-2018": 2, "26-Oct-2018": 5, "25-Oct-2018": 4, "24-Oct-2018": 2, "23-Oct-2018": 2, "22-Oct-2018": 1, "21-Oct-2018": 1, "20-Oct-2018": 1, "19-Oct-2018": 5, "18-Oct-2018": 2, "17-Oct-2018": 4, "16-Oct-2018": 5, "15-Oct-2018": 2, "14-Oct-2018": 5, "13-Oct-2018": 4, "11-Oct-2018": 2, "10-Oct-2018": 3, "9-Oct-2018": 4, "7-Oct-2018": 1, "6-Oct-2018": 1, "5-Oct-2018": 3, "4-Oct-2018": 3, "3-Oct-2018": 3, "2-Oct-2018": 1, "1-Oct-2018": 2, "30-Sep-2018": 1, "29-Sep-2018": 3, "28-Sep-2018": 2, "27-Sep-2018": 2, "26-Sep-2018": 1, "25-Sep-2018": 1, "24-Sep-2018": 2, "23-Sep-2018": 1, "22-Sep-2018": 3, "21-Sep-2018": 1, "20-Sep-2018": 3, "19-Sep-2018": 6, "18-Sep-2018": 1, "16-Sep-2018": 2, "15-Sep-2018": 3, "14-Sep-2018": 3, "13-Sep-2018": 1, "12-Sep-2018": 1, "11-Sep-2018": 2, "10-Sep-2018": 1, "9-Sep-2018": 3, "8-Sep-2018": 1, "7-Sep-2018": 2, "6-Sep-2018": 2, "5-Sep-2018": 3, "4-Sep-2018": 1, "3-Sep-2018": 1, "2-Sep-2018": 4, "1-Sep-2018": 1, "31-Aug-2018": 2, "28-Aug-2018": 2, "25-Aug-2018": 1, "24-Aug-2018": 1, "23-Aug-2018": 1, "20-Aug-2018": 1, "18-Aug-2018": 2, "16-Aug-2018": 2, "15-Aug-2018": 4, "14-Aug-2018": 3, "13-Aug-2018": 2, "11-Aug-2018": 1, "9-Aug-2018": 1, "8-Aug-2018": 1, "7-Aug-2018": 1, "6-Aug-2018": 2, "5-Aug-2018": 2, "3-Aug-2018": 2, "2-Aug-2018": 1, "1-Aug-2018": 1, "31-Jul-2018": 1, "30-Jul-2018": 1, "28-Jul-2018": 3, "27-Jul-2018": 2, "26-Jul-2018": 2, "25-Jul-2018": 2, "24-Jul-2018": 1, "21-Jul-2018": 1, "19-Jul-2018": 1, "18-Jul-2018": 1, "17-Jul-2018": 2, "16-Jul-2018": 2, "14-Jul-2018": 2, "13-Jul-2018": 1, "12-Jul-2018": 5, "11-Jul-2018": 1, "10-Jul-2018": 4, "9-Jul-2018": 1, "8-Jul-2018": 1, "7-Jul-2018": 1, "6-Jul-2018": 1, "5-Jul-2018": 3, "4-Jul-2018": 2, "3-Jul-2018": 1, "2-Jul-2018": 2, "1-Jul-2018": 3, "29-Jun-2018": 2, "28-Jun-2018": 1, "26-Jun-2018": 3, "25-Jun-2018": 3, "24-Jun-2018": 1, "23-Jun-2018": 1, "22-Jun-2018": 2, "21-Jun-2018": 5, "20-Jun-2018": 2, "19-Jun-2018": 2, "18-Jun-2018": 3, "17-Jun-2018": 4, "15-Jun-2018": 3, "14-Jun-2018": 1, "13-Jun-2018": 1, "12-Jun-2018": 1, "10-Jun-2018": 1, "9-Jun-2018": 1, "7-Jun-2018": 3, "6-Jun-2018": 3, "5-Jun-2018": 4, "3-Jun-2018": 1, "2-Jun-2018": 1, "1-Jun-2018": 3, "31-May-2018": 1, "30-May-2018": 5, "29-May-2018": 4, "28-May-2018": 3, "27-May-2018": 3, "26-May-2018": 1, "24-May-2018": 3, "23-May-2018": 2, "22-May-2018": 1, "21-May-2018": 1, "20-May-2018": 2, "19-May-2018": 1, "16-May-2018": 1, "15-May-2018": 1, "8-May-2018": 1, "7-May-2018": 4, "6-May-2018": 1, "4-May-2018": 1, "2-May-2018": 2, "27-Apr-2018": 4, "26-Apr-2018": 1, "24-Apr-2018": 1, "23-Apr-2018": 3, "21-Apr-2018": 1, "20-Apr-2018": 1, "19-Apr-2018": 3, "18-Apr-2018": 2, "17-Apr-2018": 1, "16-Apr-2018": 3, "15-Apr-2018": 1, "14-Apr-2018": 1, "13-Apr-2018": 2, "12-Apr-2018": 1, "11-Apr-2018": 1, "9-Apr-2018": 3, "8-Apr-2018": 1, "5-Apr-2018": 1, "4-Apr-2018": 3, "30-Mar-2018": 1, "29-Mar-2018": 1, "28-Mar-2018": 1, "22-Mar-2018": 2, "21-Mar-2018": 2, "20-Mar-2018": 2, "19-Mar-2018": 2, "18-Mar-2018": 2, "17-Mar-2018": 1, "16-Mar-2018": 2, "15-Mar-2018": 3, "14-Mar-2018": 1, "13-Mar-2018": 2, "11-Mar-2018": 1, "9-Mar-2018": 2, "8-Mar-2018": 1, "5-Mar-2018": 1, "4-Mar-2018": 6, "3-Mar-2018": 6, "2-Mar-2018": 8, "1-Mar-2018": 4, "28-Feb-2018": 4, "27-Feb-2018": 5, "26-Feb-2018": 4, "25-Feb-2018": 1, "24-Feb-2018": 5, "23-Feb-2018": 6, "21-Feb-2018": 5, "20-Feb-2018": 7, "19-Feb-2018": 2, "18-Feb-2018": 3, "17-Feb-2018": 3, "16-Feb-2018": 5, "15-Feb-2018": 3, "14-Feb-2018": 4, "13-Feb-2018": 2, "12-Feb-2018": 2, "11-Feb-2018": 2, "10-Feb-2018": 2, "9-Feb-2018": 2, "8-Feb-2018": 3, "7-Feb-2018": 4, "6-Feb-2018": 3, "5-Feb-2018": 3, "4-Feb-2018": 3, "3-Feb-2018": 3, "2-Feb-2018": 2, "1-Feb-2018": 4, "31-Jan-2018": 5, "30-Jan-2018": 4, "29-Jan-2018": 2, "28-Jan-2018": 2, "27-Jan-2018": 2, "26-Jan-2018": 1, "25-Jan-2018": 4, "24-Jan-2018": 3, "23-Jan-2018": 1, "20-Jan-2018": 2, "19-Jan-2018": 3, "18-Jan-2018": 3, "17-Jan-2018": 2, "16-Jan-2018": 3, "15-Jan-2018": 1, "14-Jan-2018": 1, "13-Jan-2018": 1, "12-Jan-2018": 2, "11-Jan-2018": 2, "10-Jan-2018": 3, "9-Jan-2018": 3, "8-Jan-2018": 1, "6-Jan-2018": 1, "4-Jan-2018": 1, "3-Jan-2018": 1, "31-Dec-2017": 1, "29-Dec-2017": 1, "28-Dec-2017": 2, "25-Dec-2017": 1, "24-Dec-2017": 1, "23-Dec-2017": 1, "22-Dec-2017": 1, "21-Dec-2017": 3, "20-Dec-2017": 6, "19-Dec-2017": 4, "18-Dec-2017": 4, "17-Dec-2017": 2, "16-Dec-2017": 3, "15-Dec-2017": 4, "14-Dec-2017": 2, "13-Dec-2017": 4, "12-Dec-2017": 3, "11-Dec-2017": 5, "10-Dec-2017": 6, "9-Dec-2017": 3, "8-Dec-2017": 2, "7-Dec-2017": 2, "6-Dec-2017": 3, "5-Dec-2017": 4, "2-Dec-2017": 1, "1-Dec-2017": 1, "30-Nov-2017": 4, "29-Nov-2017": 1, "28-Nov-2017": 2, "27-Nov-2017": 1, "26-Nov-2017": 4, "25-Nov-2017": 4, "24-Nov-2017": 4, "23-Nov-2017": 6, "22-Nov-2017": 4, "21-Nov-2017": 3, "20-Nov-2017": 4, "19-Nov-2017": 6, "18-Nov-2017": 5, "17-Nov-2017": 5, "16-Nov-2017": 3, "15-Nov-2017": 4, "14-Nov-2017": 4, "13-Nov-2017": 1, "12-Nov-2017": 3, "11-Nov-2017": 5, "10-Nov-2017": 4, "9-Nov-2017": 4, "8-Nov-2017": 5, "7-Nov-2017": 2, "4-Nov-2017": 2, "3-Nov-2017": 1, "2-Nov-2017": 3, "1-Nov-2017": 4, "31-Oct-2017": 2, "30-Oct-2017": 5, "29-Oct-2017": 2, "28-Oct-2017": 3, "27-Oct-2017": 3, "26-Oct-2017": 1, "25-Oct-2017": 2, "24-Oct-2017": 1, "23-Oct-2017": 1, "22-Oct-2017": 2, "21-Oct-2017": 2, "20-Oct-2017": 1, "19-Oct-2017": 1, "18-Oct-2017": 1, "17-Oct-2017": 4, "14-Oct-2017": 3, "13-Oct-2017": 1, "12-Oct-2017": 1, "11-Oct-2017": 1, "10-Oct-2017": 1, "9-Oct-2017": 1, "8-Oct-2017": 1, "6-Oct-2017": 3, "5-Oct-2017": 2, "4-Oct-2017": 3, "3-Oct-2017": 2, "2-Oct-2017": 2, "1-Oct-2017": 2, "29-Sep-2017": 3, "28-Sep-2017": 2, "27-Sep-2017": 3, "25-Sep-2017": 1, "24-Sep-2017": 1, "22-Sep-2017": 1, "21-Sep-2017": 1, "20-Sep-2017": 2, "19-Sep-2017": 5, "18-Sep-2017": 1, "17-Sep-2017": 4, "16-Sep-2017": 2, "15-Sep-2017": 4, "14-Sep-2017": 2, "13-Sep-2017": 4, "12-Sep-2017": 1, "11-Sep-2017": 2, "10-Sep-2017": 1, "9-Sep-2017": 3, "7-Sep-2017": 1, "6-Sep-2017": 1, "5-Sep-2017": 1, "3-Sep-2017": 1, "2-Sep-2017": 1, "30-Aug-2017": 1, "28-Aug-2017": 1, "26-Aug-2017": 1, "24-Aug-2017": 2, "23-Aug-2017": 1, "22-Aug-2017": 1, "19-Aug-2017": 1, "15-Aug-2017": 3, "14-Aug-2017": 1, "13-Aug-2017": 3, "12-Aug-2017": 3, "11-Aug-2017": 2, "10-Aug-2017": 1, "9-Aug-2017": 1, "8-Aug-2017": 2, "7-Aug-2017": 2, "6-Aug-2017": 1, "3-Aug-2017": 3, "2-Aug-2017": 2, "31-Jul-2017": 1, "26-Jul-2017": 1, "24-Jul-2017": 2, "23-Jul-2017": 2, "21-Jul-2017": 2, "20-Jul-2017": 3, "19-Jul-2017": 2, "18-Jul-2017": 1, "15-Jul-2017": 1, "13-Jul-2017": 1, "12-Jul-2017": 1, "11-Jul-2017": 3, "9-Jul-2017": 3, "7-Jul-2017": 1, "5-Jul-2017": 2, "4-Jul-2017": 1, "3-Jul-2017": 1, "2-Jul-2017": 1, "29-Jun-2017": 1, "28-Jun-2017": 3, "26-Jun-2017": 4, "24-Jun-2017": 1, "23-Jun-2017": 5, "21-Jun-2017": 1, "20-Jun-2017": 2, "19-Jun-2017": 1, "18-Jun-2017": 1, "17-Jun-2017": 1, "16-Jun-2017": 3, "15-Jun-2017": 3, "14-Jun-2017": 4, "13-Jun-2017": 4, "10-Jun-2017": 1, "9-Jun-2017": 5, "8-Jun-2017": 3, "7-Jun-2017": 2, "6-Jun-2017": 4, "5-Jun-2017": 2, "3-Jun-2017": 1, "2-Jun-2017": 1, "1-Jun-2017": 4, "31-May-2017": 3, "29-May-2017": 3, "27-May-2017": 3, "26-May-2017": 3, "25-May-2017": 5, "24-May-2017": 3, "23-May-2017": 1, "22-May-2017": 2, "21-May-2017": 1, "20-May-2017": 3, "19-May-2017": 1, "18-May-2017": 1, "17-May-2017": 4, "15-May-2017": 2, "14-May-2017": 3, "12-May-2017": 3, "11-May-2017": 4, "10-May-2017": 2, "7-May-2017": 1, "6-May-2017": 2, "5-May-2017": 1, "4-May-2017": 3, "3-May-2017": 3, "2-May-2017": 3, "1-May-2017": 2, "30-Apr-2017": 1, "28-Apr-2017": 1, "27-Apr-2017": 3, "26-Apr-2017": 1, "25-Apr-2017": 2, "24-Apr-2017": 1, "21-Apr-2017": 1, "20-Apr-2017": 2, "18-Apr-2017": 2, "17-Apr-2017": 1, "13-Apr-2017": 1, "12-Apr-2017": 1, "11-Apr-2017": 1, "10-Apr-2017": 3, "8-Apr-2017": 1, "7-Apr-2017": 1, "6-Apr-2017": 4, "5-Apr-2017": 2, "4-Apr-2017": 2, "3-Apr-2017": 1, "2-Apr-2017": 1, "1-Apr-2017": 2, "31-Mar-2017": 2, "30-Mar-2017": 3, "29-Mar-2017": 3, "28-Mar-2017": 2, "27-Mar-2017": 1, "25-Mar-2017": 2, "24-Mar-2017": 1, "23-Mar-2017": 2, "22-Mar-2017": 1, "21-Mar-2017": 1, "20-Mar-2017": 4, "19-Mar-2017": 1, "17-Mar-2017": 1, "15-Mar-2017": 2, "14-Mar-2017": 2, "13-Mar-2017": 1, "11-Mar-2017": 1, "10-Mar-2017": 2, "9-Mar-2017": 2, "7-Mar-2017": 3, "5-Mar-2017": 2, "4-Mar-2017": 4, "3-Mar-2017": 1, "27-Feb-2017": 2, "26-Feb-2017": 3, "24-Feb-2017": 1, "23-Feb-2017": 2, "22-Feb-2017": 2, "21-Feb-2017": 1, "20-Feb-2017": 2, "19-Feb-2017": 1, "18-Feb-2017": 1, "17-Feb-2017": 1, "15-Feb-2017": 2, "14-Feb-2017": 1, "12-Feb-2017": 1, "10-Feb-2017": 1, "9-Feb-2017": 1, "8-Feb-2017": 2, "7-Feb-2017": 2, "4-Feb-2017": 1, "2-Feb-2017": 1, "1-Feb-2017": 1, "31-Jan-2017": 3, "30-Jan-2017": 2, "29-Jan-2017": 2, "28-Jan-2017": 1, "26-Jan-2017": 3, "25-Jan-2017": 1, "24-Jan-2017": 2, "23-Jan-2017": 3, "22-Jan-2017": 2, "21-Jan-2017": 2, "20-Jan-2017": 2, "19-Jan-2017": 2, "18-Jan-2017": 1, "16-Jan-2017": 2, "13-Jan-2017": 1, "12-Jan-2017": 1, "11-Jan-2017": 3, "9-Jan-2017": 1, "3-Jan-2017": 1, "31-Dec-2016": 1, "28-Dec-2016": 2, "24-Dec-2016": 2, "22-Dec-2016": 3, "21-Dec-2016": 2, "19-Dec-2016": 1, "18-Dec-2016": 1, "16-Dec-2016": 1, "14-Dec-2016": 3, "13-Dec-2016": 3, "7-Dec-2016": 3, "6-Dec-2016": 5, "5-Dec-2016": 4, "4-Dec-2016": 4, "3-Dec-2016": 4, "2-Dec-2016": 3, "1-Dec-2016": 4, "30-Nov-2016": 3, "29-Nov-2016": 3, "28-Nov-2016": 4, "27-Nov-2016": 3, "26-Nov-2016": 4, "25-Nov-2016": 6, "24-Nov-2016": 2, "23-Nov-2016": 3, "22-Nov-2016": 4, "21-Nov-2016": 2, "20-Nov-2016": 4, "19-Nov-2016": 3, "18-Nov-2016": 2, "17-Nov-2016": 3, "16-Nov-2016": 5, "15-Nov-2016": 1, "14-Nov-2016": 3, "12-Nov-2016": 3, "11-Nov-2016": 7, "10-Nov-2016": 3, "9-Nov-2016": 4, "8-Nov-2016": 1, "7-Nov-2016": 1, "6-Nov-2016": 2, "5-Nov-2016": 2, "4-Nov-2016": 6, "3-Nov-2016": 4, "2-Nov-2016": 1, "1-Nov-2016": 1, "29-Oct-2016": 1, "28-Oct-2016": 1, "27-Oct-2016": 2, "26-Oct-2016": 3, "25-Oct-2016": 2, "24-Oct-2016": 2, "22-Oct-2016": 1, "21-Oct-2016": 2, "20-Oct-2016": 1, "19-Oct-2016": 1, "18-Oct-2016": 1, "17-Oct-2016": 1, "16-Oct-2016": 1, "15-Oct-2016": 2, "14-Oct-2016": 1, "13-Oct-2016": 2, "12-Oct-2016": 2, "11-Oct-2016": 2, "10-Oct-2016": 1, "9-Oct-2016": 3, "8-Oct-2016": 2, "7-Oct-2016": 1, "6-Oct-2016": 1, "5-Oct-2016": 3, "4-Oct-2016": 2, "3-Oct-2016": 3, "2-Oct-2016": 1, "1-Oct-2016": 2, "30-Sep-2016": 2, "29-Sep-2016": 4, "28-Sep-2016": 2, "27-Sep-2016": 2, "26-Sep-2016": 2, "25-Sep-2016": 1, "24-Sep-2016": 2, "23-Sep-2016": 2, "22-Sep-2016": 2, "21-Sep-2016": 2, "20-Sep-2016": 2, "19-Sep-2016": 2, "18-Sep-2016": 3, "15-Sep-2016": 2, "14-Sep-2016": 1, "12-Sep-2016": 2, "9-Sep-2016": 1, "8-Sep-2016": 2, "6-Sep-2016": 3, "4-Sep-2016": 2, "2-Sep-2016": 1, "31-Aug-2016": 2, "29-Aug-2016": 1, "27-Aug-2016": 1, "23-Aug-2016": 1, "21-Aug-2016": 1, "17-Aug-2016": 1, "16-Aug-2016": 2, "9-Aug-2016": 1, "5-Aug-2016": 1, "4-Aug-2016": 1, "3-Aug-2016": 1, "29-Jul-2016": 1, "28-Jul-2016": 1, "26-Jul-2016": 1, "25-Jul-2016": 1, "23-Jul-2016": 1, "22-Jul-2016": 2, "21-Jul-2016": 1, "19-Jul-2016": 2, "17-Jul-2016": 2, "12-Jul-2016": 2, "11-Jul-2016": 1, "9-Jul-2016": 1, "8-Jul-2016": 2, "7-Jul-2016": 1, "6-Jul-2016": 2, "5-Jul-2016": 1, "4-Jul-2016": 1, "1-Jul-2016": 2, "30-Jun-2016": 1, "29-Jun-2016": 2, "28-Jun-2016": 2, "25-Jun-2016": 4, "24-Jun-2016": 2, "22-Jun-2016": 1, "19-Jun-2016": 1, "17-Jun-2016": 3, "16-Jun-2016": 2, "15-Jun-2016": 3, "14-Jun-2016": 1, "13-Jun-2016": 2, "11-Jun-2016": 1, "10-Jun-2016": 2, "9-Jun-2016": 3, "8-Jun-2016": 2, "7-Jun-2016": 1, "6-Jun-2016": 2, "5-Jun-2016": 1, "4-Jun-2016": 3, "3-Jun-2016": 2, "2-Jun-2016": 4, "1-Jun-2016": 7, "31-May-2016": 5, "30-May-2016": 2, "29-May-2016": 4, "28-May-2016": 1, "27-May-2016": 2, "26-May-2016": 3, "25-May-2016": 3, "24-May-2016": 3, "23-May-2016": 2, "22-May-2016": 4, "21-May-2016": 2, "20-May-2016": 6, "19-May-2016": 5, "18-May-2016": 5, "17-May-2016": 4, "16-May-2016": 2, "15-May-2016": 3, "14-May-2016": 5, "13-May-2016": 2, "12-May-2016": 3, "11-May-2016": 1, "6-May-2016": 1, "4-May-2016": 1, "2-May-2016": 1, "30-Apr-2016": 2, "29-Apr-2016": 1, "27-Apr-2016": 1, "26-Apr-2016": 1, "24-Apr-2016": 1, "23-Apr-2016": 1, "22-Apr-2016": 1, "21-Apr-2016": 4, "20-Apr-2016": 4, "19-Apr-2016": 4, "18-Apr-2016": 2, "16-Apr-2016": 3, "15-Apr-2016": 2, "14-Apr-2016": 1, "13-Apr-2016": 1, "11-Apr-2016": 3, "10-Apr-2016": 2, "9-Apr-2016": 2, "8-Apr-2016": 1, "7-Apr-2016": 2, "6-Apr-2016": 4, "5-Apr-2016": 3, "4-Apr-2016": 3, "3-Apr-2016": 2, "2-Apr-2016": 1, "1-Apr-2016": 1, "31-Mar-2016": 1, "30-Mar-2016": 1, "29-Mar-2016": 1, "26-Mar-2016": 1, "25-Mar-2016": 1, "24-Mar-2016": 3, "23-Mar-2016": 3, "22-Mar-2016": 2, "21-Mar-2016": 1, "19-Mar-2016": 1, "18-Mar-2016": 2, "17-Mar-2016": 1, "16-Mar-2016": 1, "15-Mar-2016": 2, "14-Mar-2016": 2, "10-Mar-2016": 2, "9-Mar-2016": 1, "8-Mar-2016": 1, "7-Mar-2016": 2, "6-Mar-2016": 1, "5-Mar-2016": 1, "4-Mar-2016": 1, "3-Mar-2016": 1, "2-Mar-2016": 1, "1-Mar-2016": 2, "29-Feb-2016": 2, "28-Feb-2016": 1, "27-Feb-2016": 1, "26-Feb-2016": 3, "25-Feb-2016": 4, "24-Feb-2016": 4, "23-Feb-2016": 2, "22-Feb-2016": 2, "20-Feb-2016": 1, "19-Feb-2016": 1, "17-Feb-2016": 2, "16-Feb-2016": 4, "15-Feb-2016": 3, "14-Feb-2016": 1, "13-Feb-2016": 1, "12-Feb-2016": 2, "11-Feb-2016": 3, "10-Feb-2016": 1, "9-Feb-2016": 2, "8-Feb-2016": 3, "6-Feb-2016": 4, "5-Feb-2016": 4, "4-Feb-2016": 3, "3-Feb-2016": 2, "2-Feb-2016": 4, "1-Feb-2016": 3, "31-Jan-2016": 2, "30-Jan-2016": 2, "28-Jan-2016": 1, "27-Jan-2016": 4, "26-Jan-2016": 4, "25-Jan-2016": 5, "24-Jan-2016": 2, "23-Jan-2016": 2, "22-Jan-2016": 2, "21-Jan-2016": 3, "20-Jan-2016": 5, "19-Jan-2016": 4, "18-Jan-2016": 3, "17-Jan-2016": 1, "16-Jan-2016": 1, "15-Jan-2016": 2, "14-Jan-2016": 2, "13-Jan-2016": 5, "12-Jan-2016": 4, "11-Jan-2016": 2, "10-Jan-2016": 1, "8-Jan-2016": 2, "7-Jan-2016": 2, "1-Jan-2016": 1, "26-Dec-2015": 1, "25-Dec-2015": 2, "24-Dec-2015": 2, "22-Dec-2015": 1, "17-Dec-2015": 1, "16-Dec-2015": 2, "15-Dec-2015": 2, "14-Dec-2015": 1, "13-Dec-2015": 1, "11-Dec-2015": 1, "10-Dec-2015": 1, "9-Dec-2015": 1, "7-Dec-2015": 1, "5-Dec-2015": 1, "4-Dec-2015": 4, "3-Dec-2015": 4, "2-Dec-2015": 4, "1-Dec-2015": 3, "30-Nov-2015": 4, "29-Nov-2015": 2, "28-Nov-2015": 1, "26-Nov-2015": 2, "25-Nov-2015": 3, "24-Nov-2015": 2, "23-Nov-2015": 2, "21-Nov-2015": 2, "20-Nov-2015": 3, "19-Nov-2015": 3, "18-Nov-2015": 5, "17-Nov-2015": 2, "16-Nov-2015": 4, "15-Nov-2015": 2, "14-Nov-2015": 3, "13-Nov-2015": 2, "12-Nov-2015": 6, "11-Nov-2015": 3, "10-Nov-2015": 3, "9-Nov-2015": 4, "8-Nov-2015": 2, "7-Nov-2015": 1, "6-Nov-2015": 4, "5-Nov-2015": 4, "4-Nov-2015": 4, "3-Nov-2015": 3, "2-Nov-2015": 7, "1-Nov-2015": 2, "31-Oct-2015": 5, "30-Oct-2015": 5, "29-Oct-2015": 4, "28-Oct-2015": 5, "27-Oct-2015": 5, "26-Oct-2015": 3, "25-Oct-2015": 1, "24-Oct-2015": 1, "23-Oct-2015": 3, "22-Oct-2015": 5, "21-Oct-2015": 4, "20-Oct-2015": 1, "19-Oct-2015": 1, "18-Oct-2015": 1, "17-Oct-2015": 2, "15-Oct-2015": 1, "14-Oct-2015": 1, "13-Oct-2015": 3, "12-Oct-2015": 2, "9-Oct-2015": 2, "8-Oct-2015": 2, "7-Oct-2015": 2, "6-Oct-2015": 2, "3-Oct-2015": 1, "2-Oct-2015": 2, "1-Oct-2015": 2, "30-Sep-2015": 1, "29-Sep-2015": 2, "28-Sep-2015": 1, "25-Sep-2015": 1, "24-Sep-2015": 1, "23-Sep-2015": 1, "22-Sep-2015": 2, "21-Sep-2015": 1, "20-Sep-2015": 1, "19-Sep-2015": 1, "18-Sep-2015": 2, "17-Sep-2015": 3, "16-Sep-2015": 2, "15-Sep-2015": 3, "14-Sep-2015": 2, "13-Sep-2015": 2, "11-Sep-2015": 2, "10-Sep-2015": 1, "9-Sep-2015": 3, "8-Sep-2015": 2, "7-Sep-2015": 3, "6-Sep-2015": 2, "4-Sep-2015": 2, "3-Sep-2015": 1, "2-Sep-2015": 1, "1-Sep-2015": 2, "31-Aug-2015": 2, "29-Aug-2015": 1, "28-Aug-2015": 1, "27-Aug-2015": 1, "26-Aug-2015": 1, "24-Aug-2015": 2, "22-Aug-2015": 1, "20-Aug-2015": 3, "17-Aug-2015": 2, "16-Aug-2015": 2, "13-Aug-2015": 3, "12-Aug-2015": 1, "11-Aug-2015": 1, "9-Aug-2015": 1, "8-Aug-2015": 1, "7-Aug-2015": 2, "6-Aug-2015": 2, "5-Aug-2015": 2, "4-Aug-2015": 2, "2-Aug-2015": 1, "28-Jul-2015": 2, "27-Jul-2015": 1, "22-Jul-2015": 1, "20-Jul-2015": 1, "19-Jul-2015": 2, "18-Jul-2015": 3, "17-Jul-2015": 2, "16-Jul-2015": 2, "15-Jul-2015": 4, "14-Jul-2015": 3, "13-Jul-2015": 2, "12-Jul-2015": 1, "11-Jul-2015": 1, "10-Jul-2015": 1, "9-Jul-2015": 1, "8-Jul-2015": 3, "7-Jul-2015": 3, "6-Jul-2015": 2, "3-Jul-2015": 4, "2-Jul-2015": 2, "1-Jul-2015": 3, "30-Jun-2015": 2, "29-Jun-2015": 3, "28-Jun-2015": 1, "25-Jun-2015": 2, "24-Jun-2015": 2, "23-Jun-2015": 2, "22-Jun-2015": 2, "20-Jun-2015": 1, "19-Jun-2015": 1, "18-Jun-2015": 2, "17-Jun-2015": 1, "16-Jun-2015": 1, "15-Jun-2015": 2, "14-Jun-2015": 1, "13-Jun-2015": 1, "12-Jun-2015": 3, "11-Jun-2015": 1, "10-Jun-2015": 4, "8-Jun-2015": 3, "7-Jun-2015": 3, "5-Jun-2015": 3, "4-Jun-2015": 3, "3-Jun-2015": 2, "1-Jun-2015": 2, "31-May-2015": 1, "29-May-2015": 5, "28-May-2015": 5, "27-May-2015": 4, "26-May-2015": 9, "25-May-2015": 5, "24-May-2015": 5, "23-May-2015": 4, "22-May-2015": 3, "21-May-2015": 2, "20-May-2015": 3, "19-May-2015": 2, "18-May-2015": 2, "17-May-2015": 1, "16-May-2015": 5, "15-May-2015": 3, "14-May-2015": 5, "13-May-2015": 2, "12-May-2015": 5, "11-May-2015": 3, "10-May-2015": 3, "9-May-2015": 2, "8-May-2015": 2, "7-May-2015": 1, "6-May-2015": 4, "5-May-2015": 2, "4-May-2015": 5, "2-May-2015": 1, "1-May-2015": 5, "30-Apr-2015": 1, "29-Apr-2015": 3, "28-Apr-2015": 3, "27-Apr-2015": 5, "24-Apr-2015": 1, "23-Apr-2015": 2, "22-Apr-2015": 2, "21-Apr-2015": 3, "20-Apr-2015": 4, "19-Apr-2015": 1, "18-Apr-2015": 2, "17-Apr-2015": 2, "16-Apr-2015": 1, "15-Apr-2015": 1, "14-Apr-2015": 3, "13-Apr-2015": 1, "12-Apr-2015": 1, "11-Apr-2015": 2, "10-Apr-2015": 2, "9-Apr-2015": 2, "8-Apr-2015": 2, "7-Apr-2015": 1, "4-Apr-2015": 1, "3-Apr-2015": 1, "2-Apr-2015": 2, "1-Apr-2015": 3, "31-Mar-2015": 1, "30-Mar-2015": 1, "29-Mar-2015": 1, "28-Mar-2015": 2, "27-Mar-2015": 1, "26-Mar-2015": 2, "25-Mar-2015": 2, "24-Mar-2015": 3, "23-Mar-2015": 2, "20-Mar-2015": 1, "19-Mar-2015": 1, "18-Mar-2015": 2, "17-Mar-2015": 1, "16-Mar-2015": 1, "14-Mar-2015": 2, "12-Mar-2015": 2, "11-Mar-2015": 1, "9-Mar-2015": 1, "8-Mar-2015": 1, "7-Mar-2015": 1, "6-Mar-2015": 2, "5-Mar-2015": 2, "4-Mar-2015": 1, "3-Mar-2015": 1, "1-Mar-2015": 2, "28-Feb-2015": 1, "27-Feb-2015": 1, "26-Feb-2015": 3, "25-Feb-2015": 2, "24-Feb-2015": 2, "23-Feb-2015": 1, "22-Feb-2015": 1, "21-Feb-2015": 1, "19-Feb-2015": 2, "18-Feb-2015": 2, "17-Feb-2015": 1, "14-Feb-2015": 1, "12-Feb-2015": 1, "11-Feb-2015": 1, "9-Feb-2015": 2, "6-Feb-2015": 2, "5-Feb-2015": 1, "2-Feb-2015": 1, "1-Feb-2015": 4, "30-Jan-2015": 2, "29-Jan-2015": 2, "28-Jan-2015": 3, "26-Jan-2015": 1, "23-Jan-2015": 1, "22-Jan-2015": 1, "21-Jan-2015": 3, "19-Jan-2015": 1, "18-Jan-2015": 1, "16-Jan-2015": 1, "14-Jan-2015": 1, "13-Jan-2015": 2, "9-Jan-2015": 1, "8-Jan-2015": 1, "31-Dec-2014": 1, "29-Dec-2014": 3, "27-Dec-2014": 3, "26-Dec-2014": 1, "24-Dec-2014": 2, "23-Dec-2014": 1, "22-Dec-2014": 1, "21-Dec-2014": 2, "20-Dec-2014": 2, "19-Dec-2014": 3, "18-Dec-2014": 1, "17-Dec-2014": 1, "16-Dec-2014": 1, "15-Dec-2014": 3, "14-Dec-2014": 1, "13-Dec-2014": 2, "12-Dec-2014": 1, "11-Dec-2014": 1, "10-Dec-2014": 2, "9-Dec-2014": 1, "8-Dec-2014": 3, "7-Dec-2014": 1, "6-Dec-2014": 2, "4-Dec-2014": 1, "3-Dec-2014": 1, "2-Dec-2014": 1, "1-Dec-2014": 1, "28-Nov-2014": 3, "27-Nov-2014": 1, "26-Nov-2014": 1, "24-Nov-2014": 1, "23-Nov-2014": 2, "22-Nov-2014": 1, "21-Nov-2014": 4, "20-Nov-2014": 7, "19-Nov-2014": 2, "17-Nov-2014": 2, "15-Nov-2014": 4, "14-Nov-2014": 5, "13-Nov-2014": 2, "12-Nov-2014": 1, "11-Nov-2014": 2, "10-Nov-2014": 3, "9-Nov-2014": 5, "8-Nov-2014": 4, "7-Nov-2014": 2, "3-Nov-2014": 2, "1-Nov-2014": 3, "31-Oct-2014": 5, "30-Oct-2014": 1, "29-Oct-2014": 2, "28-Oct-2014": 1, "27-Oct-2014": 2, "26-Oct-2014": 1, "25-Oct-2014": 1, "24-Oct-2014": 2, "23-Oct-2014": 2, "21-Oct-2014": 3, "20-Oct-2014": 2, "19-Oct-2014": 2, "18-Oct-2014": 4, "17-Oct-2014": 3, "16-Oct-2014": 1, "15-Oct-2014": 3, "14-Oct-2014": 4, "13-Oct-2014": 2, "12-Oct-2014": 1, "11-Oct-2014": 4, "10-Oct-2014": 2, "8-Oct-2014": 1, "5-Oct-2014": 2, "4-Oct-2014": 2, "2-Oct-2014": 2, "1-Oct-2014": 1, "30-Sep-2014": 1, "29-Sep-2014": 2, "28-Sep-2014": 3, "27-Sep-2014": 2, "26-Sep-2014": 1, "25-Sep-2014": 1, "22-Sep-2014": 1, "21-Sep-2014": 2, "20-Sep-2014": 2, "19-Sep-2014": 1, "17-Sep-2014": 2, "16-Sep-2014": 1, "14-Sep-2014": 2, "13-Sep-2014": 1, "8-Sep-2014": 1, "7-Sep-2014": 3, "6-Sep-2014": 1, "5-Sep-2014": 1, "4-Sep-2014": 1, "3-Sep-2014": 3, "1-Sep-2014": 1, "30-Aug-2014": 1, "24-Aug-2014": 2, "23-Aug-2014": 4, "22-Aug-2014": 1, "20-Aug-2014": 1, "18-Aug-2014": 2, "17-Aug-2014": 3, "16-Aug-2014": 3, "9-Aug-2014": 1, "7-Aug-2014": 1, "6-Aug-2014": 1, "4-Aug-2014": 2, "3-Aug-2014": 1, "1-Aug-2014": 1, "28-Jul-2014": 1, "24-Jul-2014": 1, "23-Jul-2014": 1, "21-Jul-2014": 1, "20-Jul-2014": 2, "19-Jul-2014": 1, "16-Jul-2014": 2, "14-Jul-2014": 2, "13-Jul-2014": 5, "12-Jul-2014": 7, "11-Jul-2014": 1, "10-Jul-2014": 1, "9-Jul-2014": 1, "7-Jul-2014": 1, "5-Jul-2014": 1, "2-Jul-2014": 2, "1-Jul-2014": 2, "29-Jun-2014": 1, "25-Jun-2014": 1, "22-Jun-2014": 2, "18-Jun-2014": 4, "16-Jun-2014": 2, "15-Jun-2014": 1, "13-Jun-2014": 2, "10-Jun-2014": 2, "9-Jun-2014": 1, "8-Jun-2014": 1, "7-Jun-2014": 3, "6-Jun-2014": 1, "5-Jun-2014": 3, "4-Jun-2014": 3, "3-Jun-2014": 3, "2-Jun-2014": 1, "1-Jun-2014": 4, "31-May-2014": 1, "30-May-2014": 4, "29-May-2014": 2, "28-May-2014": 2, "27-May-2014": 1, "26-May-2014": 3, "25-May-2014": 23, "24-May-2014": 4, "23-May-2014": 7, "22-May-2014": 2, "21-May-2014": 5, "20-May-2014": 9, "19-May-2014": 4, "18-May-2014": 7, "17-May-2014": 4, "16-May-2014": 4, "15-May-2014": 2, "14-May-2014": 2, "13-May-2014": 5, "12-May-2014": 6, "11-May-2014": 6, "10-May-2014": 3, "9-May-2014": 1, "8-May-2014": 5, "7-May-2014": 3, "6-May-2014": 5, "5-May-2014": 5, "4-May-2014": 2, "3-May-2014": 5, "2-May-2014": 3, "1-May-2014": 5, "30-Apr-2014": 2, "29-Apr-2014": 3, "28-Apr-2014": 4, "26-Apr-2014": 6, "25-Apr-2014": 4, "24-Apr-2014": 1, "23-Apr-2014": 3, "22-Apr-2014": 1, "20-Apr-2014": 1, "19-Apr-2014": 1, "17-Apr-2014": 1, "16-Apr-2014": 1, "15-Apr-2014": 1, "14-Apr-2014": 3, "13-Apr-2014": 2, "12-Apr-2014": 1, "11-Apr-2014": 2, "10-Apr-2014": 1, "9-Apr-2014": 2, "8-Apr-2014": 1, "7-Apr-2014": 1, "6-Apr-2014": 4, "5-Apr-2014": 6, "4-Apr-2014": 1, "1-Apr-2014": 3, "31-Mar-2014": 1, "30-Mar-2014": 2, "29-Mar-2014": 3, "28-Mar-2014": 2, "27-Mar-2014": 1, "26-Mar-2014": 3, "25-Mar-2014": 3, "24-Mar-2014": 1, "23-Mar-2014": 2, "22-Mar-2014": 4, "21-Mar-2014": 2, "20-Mar-2014": 2, "19-Mar-2014": 1, "18-Mar-2014": 1, "16-Mar-2014": 1, "15-Mar-2014": 3, "13-Mar-2014": 2, "10-Mar-2014": 4, "9-Mar-2014": 3, "8-Mar-2014": 1, "7-Mar-2014": 1, "5-Mar-2014": 2, "4-Mar-2014": 1, "2-Mar-2014": 6, "1-Mar-2014": 5, "27-Feb-2014": 2, "26-Feb-2014": 2, "25-Feb-2014": 2, "24-Feb-2014": 2, "23-Feb-2014": 2, "22-Feb-2014": 3, "21-Feb-2014": 1, "20-Feb-2014": 3, "18-Feb-2014": 2, "17-Feb-2014": 2, "16-Feb-2014": 3, "15-Feb-2014": 3, "13-Feb-2014": 1, "12-Feb-2014": 3, "10-Feb-2014": 2, "9-Feb-2014": 2, "8-Feb-2014": 1, "31-Jan-2014": 1, "30-Jan-2014": 1, "29-Jan-2014": 3, "28-Jan-2014": 3, "27-Jan-2014": 1, "25-Jan-2014": 1, "22-Jan-2014": 1, "19-Jan-2014": 1, "18-Jan-2014": 1, "16-Jan-2014": 1, "15-Jan-2014": 2, "12-Jan-2014": 1, "11-Jan-2014": 3, "10-Jan-2014": 1, "8-Jan-2014": 1, "3-Jan-2014": 1, "1-Jan-2014": 2, "31-Dec-2013": 2, "29-Dec-2013": 3, "28-Dec-2013": 1, "27-Dec-2013": 4, "24-Dec-2013": 1, "23-Dec-2013": 1, "22-Dec-2013": 1, "21-Dec-2013": 1, "20-Dec-2013": 2, "19-Dec-2013": 4, "17-Dec-2013": 2, "16-Dec-2013": 5, "15-Dec-2013": 4, "14-Dec-2013": 1, "12-Dec-2013": 3, "11-Dec-2013": 5, "10-Dec-2013": 1, "9-Dec-2013": 3, "7-Dec-2013": 2, "6-Dec-2013": 3, "5-Dec-2013": 3, "4-Dec-2013": 5, "3-Dec-2013": 2, "2-Dec-2013": 3, "1-Dec-2013": 4, "30-Nov-2013": 4, "29-Nov-2013": 2, "28-Nov-2013": 2, "27-Nov-2013": 2, "26-Nov-2013": 2, "25-Nov-2013": 3, "24-Nov-2013": 3, "23-Nov-2013": 3, "22-Nov-2013": 5, "21-Nov-2013": 6, "20-Nov-2013": 1, "19-Nov-2013": 4, "18-Nov-2013": 4, "17-Nov-2013": 3, "16-Nov-2013": 4, "15-Nov-2013": 4, "14-Nov-2013": 4, "13-Nov-2013": 4, "12-Nov-2013": 1, "11-Nov-2013": 1, "10-Nov-2013": 3, "9-Nov-2013": 2, "8-Nov-2013": 2, "7-Nov-2013": 3, "6-Nov-2013": 4, "5-Nov-2013": 2, "4-Nov-2013": 1, "3-Nov-2013": 1, "2-Nov-2013": 1, "1-Nov-2013": 1, "31-Oct-2013": 5, "30-Oct-2013": 3, "29-Oct-2013": 1, "28-Oct-2013": 1, "27-Oct-2013": 3, "26-Oct-2013": 3, "25-Oct-2013": 2, "24-Oct-2013": 2, "23-Oct-2013": 2, "22-Oct-2013": 2, "21-Oct-2013": 3, "19-Oct-2013": 2, "18-Oct-2013": 4, "17-Oct-2013": 3, "16-Oct-2013": 3, "15-Oct-2013": 5, "14-Oct-2013": 1, "13-Oct-2013": 2, "12-Oct-2013": 6, "11-Oct-2013": 1, "10-Oct-2013": 2, "8-Oct-2013": 2, "7-Oct-2013": 1, "6-Oct-2013": 1, "5-Oct-2013": 1, "4-Oct-2013": 3, "3-Oct-2013": 1, "2-Oct-2013": 2, "1-Oct-2013": 1, "30-Sep-2013": 3, "29-Sep-2013": 4, "28-Sep-2013": 2, "27-Sep-2013": 2, "26-Sep-2013": 5, "25-Sep-2013": 2, "24-Sep-2013": 5, "23-Sep-2013": 1, "22-Sep-2013": 3, "18-Sep-2013": 1, "16-Sep-2013": 1, "15-Sep-2013": 1, "14-Sep-2013": 3, "13-Sep-2013": 1, "12-Sep-2013": 1, "11-Sep-2013": 1, "10-Sep-2013": 2, "9-Sep-2013": 1, "7-Sep-2013": 1, "6-Sep-2013": 3, "5-Sep-2013": 3, "4-Sep-2013": 2, "3-Sep-2013": 1, "1-Sep-2013": 1, "30-Aug-2013": 2, "29-Aug-2013": 2, "28-Aug-2013": 5, "27-Aug-2013": 1, "25-Aug-2013": 2, "24-Aug-2013": 5, "23-Aug-2013": 2, "22-Aug-2013": 3, "21-Aug-2013": 1, "20-Aug-2013": 2, "19-Aug-2013": 2, "18-Aug-2013": 3, "17-Aug-2013": 2, "16-Aug-2013": 2, "15-Aug-2013": 2, "13-Aug-2013": 3, "12-Aug-2013": 2, "10-Aug-2013": 2, "9-Aug-2013": 3, "8-Aug-2013": 3, "6-Aug-2013": 1, "5-Aug-2013": 3, "4-Aug-2013": 4, "3-Aug-2013": 5, "2-Aug-2013": 3, "1-Aug-2013": 2, "20-Jul-2013": 1, "18-Jul-2013": 3, "16-Jul-2013": 3, "15-Jul-2013": 1, "14-Jul-2013": 5, "13-Jul-2013": 4, "12-Jul-2013": 2, "11-Jul-2013": 3, "10-Jul-2013": 2, "9-Jul-2013": 1, "8-Jul-2013": 3, "7-Jul-2013": 1, "6-Jul-2013": 2, "5-Jul-2013": 2, "4-Jul-2013": 1, "2-Jul-2013": 3, "30-Jun-2013": 2, "28-Jun-2013": 4, "27-Jun-2013": 1, "26-Jun-2013": 4, "25-Jun-2013": 1, "24-Jun-2013": 1, "19-Jun-2013": 1, "18-Jun-2013": 2, "17-Jun-2013": 1, "16-Jun-2013": 2, "15-Jun-2013": 1, "14-Jun-2013": 2, "11-Jun-2013": 1, "10-Jun-2013": 1, "9-Jun-2013": 2, "7-Jun-2013": 3, "6-Jun-2013": 3, "4-Jun-2013": 1, "3-Jun-2013": 3, "1-Jun-2013": 1, "31-May-2013": 1, "30-May-2013": 2, "28-May-2013": 1, "27-May-2013": 1, "25-May-2013": 1, "24-May-2013": 3, "23-May-2013": 2, "22-May-2013": 1, "21-May-2013": 1, "20-May-2013": 1, "17-May-2013": 2, "16-May-2013": 1, "15-May-2013": 1, "14-May-2013": 1, "13-May-2013": 2, "12-May-2013": 1, "10-May-2013": 2, "8-May-2013": 1, "5-May-2013": 1, "3-May-2013": 1, "29-Apr-2013": 1, "28-Apr-2013": 2, "27-Apr-2013": 1, "26-Apr-2013": 2, "25-Apr-2013": 1, "24-Apr-2013": 4, "22-Apr-2013": 1, "20-Apr-2013": 1, "19-Apr-2013": 1, "18-Apr-2013": 1, "17-Apr-2013": 1, "16-Apr-2013": 1, "15-Apr-2013": 2, "14-Apr-2013": 2, "13-Apr-2013": 1, "12-Apr-2013": 2, "11-Apr-2013": 1, "9-Apr-2013": 2, "8-Apr-2013": 1, "5-Apr-2013": 2, "3-Apr-2013": 1, "2-Apr-2013": 2, "30-Mar-2013": 3, "29-Mar-2013": 1, "28-Mar-2013": 1, "27-Mar-2013": 3, "26-Mar-2013": 1, "24-Mar-2013": 1, "23-Mar-2013": 1, "22-Mar-2013": 1, "18-Mar-2013": 2, "17-Mar-2013": 2, "16-Mar-2013": 1, "15-Mar-2013": 2, "14-Mar-2013": 2, "13-Mar-2013": 1, "12-Mar-2013": 1, "11-Mar-2013": 1, "7-Mar-2013": 2, "5-Mar-2013": 1, "4-Mar-2013": 2, "28-Feb-2013": 1} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/all/salvini_words b/anno3/avrc/assignments/dataviz/dataset/all/salvini_words new file mode 100644 index 0000000..d9f5d4a --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/all/salvini_words @@ -0,0 +1,69073 @@ +accolta +tivù +onori +spese +italiani +dovrebbe +stare +galera +roba +matti +lasciamo +tedesca +speronatrice +navi +militari +sinistra +governo +clandestino +italia +oriana +molliamo +iostoconoriana +serata +magica +fiorenzuola +provincia +piacenza +tantissimi +emiliani +voglia +cambiare +molla +centimetro +buonanotte +amici +giusto +tenere +atti +serie +mondo +contrario +tivù +pubblica +pagata +italiani +andata +onda +accolta +onori +infischiata +leggi +altro +speronato +motovedetta +guardia +finanza +rischiando +ammazzare +occupanti +messaggio +bella +serata +italia +deve +accogliere +profughi +migranti +economici +migranti +climatici +africa +sconvolgimenti +ambientali +colpa +amen +🙄 +🔴al +senato +bloccata +legge +telecamere +asili +case +riposo +fortemente +voluta +lega +ora +parla +problemi +privacy +date +mossa +bambini +anziani +persone +fragili +altro +richiedono +tutta +tutela +possibile +evitare +alcuni +orrori +purtroppo +troppo +spesso +turbano +cronache +aderito +petizione +quotidiano +tempo +dare +sveglia +questione +schieramento +politico +solo +buonsenso +potete +scrivere +email +aderire +telecamere +iltempo +it +altro +carolanti +poco +lucia +borgonzoni +diretta +giletti +la7 +26gennaiovotolega +borgonzonipresidente +tanto +affetto +tante +idee +tanta +voglia +cambiamento +oggi +rimini +gennaio +scriveremo +insieme +pagina +storia +stupenda😊 +26gennaiovotolega +ora +diretta +fiorenzuola +rete +grazie +fiorenzuola +grazie +piacenza +❤️ +oggi +carlino +uscito +sondaggio +dà +vantaggio +oltre +punti +fido +poco +sondaggi +contano +me +cercheremo +meritarci +altro +affetto +gennaio +insieme +possiamo +cambiare +emilia +romagna +dopo +anni +sinistra +poi +cambiamo +italia +meno +giorni +ogni +voto +conta +state +26gennaiovotolega +borgonzonipresidente +saluto +fiorenzuola +arda +piacenza +emilia +oggi +tanti +disagi +causa +maltempo +state +diretta +esaurito +fiorenzuola +piacenza +tantissimi +riescono +entrare +arrivando +poco +diretta +26gennaiovotolega +borgonzonipresidente +🔴altri +presunti +profughi +sbarcati +oggi +messina +solita +nave +ong +porti +aperti +significano +partenze +sbarchi +morti +droga +armi +mani +scafisti +trafficanti +ottimo +risultato +conte +lamorgese +vergogna +sorrisi +abbracci +tanta +voglia +buonsenso +mattina +congresso +nazionale +federanziani +rimini +vuole +male +avanti +tutta +26gennaiovotolega +spara +salvini” +ecco +frutti +odio +certa +sinistra +avanti +testa +alta +senza +paura +crollato +viadotto +autostradale +vicino +savona +immagini +terrificanti +sembra +fatto +male +nessuno +già +miracolo +abbraccio +italiani +colpiti +oggi +disastrose +altro +conseguenze +maltempo +grazie +vigili +fuoco +forze +ordine +protezione +civile +volontari +coloro +ore +tutta +italia +rischiano +vita +salvare +altri +ancora +diretta +rimini +pensiero +italiani +colpiti +conseguenze +maltempo +ricordate +prete +toscano +vorrebbe +portare +tutta +africa +italia +oggi +concertino +sardinante +bella +ciao +messa +po +vedremo +sanremo +😀 +roba +matti +😋🐟 +🔝 +accoglienza +stupenda +congresso +nazionale +federanziani +rimini +tanta +energia +altro +vecchi” +quei +poveretti +5stelle +grillo +vorrebbero +togliere +diritto +voto +26gennaiovotolega +borgonzonipresidente +sempre +diretta +rimini +senior +italia +federanziani +grazie +invito +splendida +energia +state +26gennaiovotolega +borgonzonipresidente +cosmosenior +saluto +rimini +lucia +borgonzoni +tante +nonne +tanti +nonni +😊 +26gennaiovotolega +borgonzonipresidente +ancora +splendida +domenica +rimini +amici +tempo +fa +pensiero +enormi +disagi +causa +forti +piogge +speriamo +diano +po +tregua +altra +ong +straniera +altro +sbarco +altro +regalo +appena +torniamo +governo +tornano +valere +regole +controlli +serietà +portichiusi +buona +domenica +amici +vediamo +mattina +rimini +convegno +federanziani +tanti +nonni +nonne +quali +quel +genio +grillo +vorrebbe +togliere +diritto +voto +altro +inaugurazione +sede +riminese +lega +poi +direzione +fiorenzuola +arda +piacenza +avanti +testa +alta +emilia +romagna +dopo +anni +convinto +impegniamo +insieme +sinistra +casa +26gennaiovotolega +guardate +saluta +😀😀😀 +ben +alzati +buona +domenica +amici +gattiniconsalvini +buonanotte +amici +pensiero +vuole +male +sempre +sorriso +arma +migliore +☺️☺️☺️ +onore +carabinieri +orgoglio +nazionale +grandissimo +abbraccio +signora +luciana +❤️ +bel +biglietto +visita +offerto +mondo +milano +pd +niente +dire +k +🔴se +opera +arte +me +fa +ridere +nemmeno +cazzo +può +dire +me +consentite +certe +cose +scherza +ammazza +compagna +coltellate +aspettava +bambino +solo +parola +bastardo +solo +pena +galera +vita +eccitato +fazio +piacere +onore” +ospitare +spese +signorina +carola +nota +bene +speronate +navi +militari +italiane +fatevi +nemmeno +avanti +nessun +invito +diretta +splendida +perugia +presidente +umbria +donatellla +tesei +nuova +giunta +consiglieri +regionali +lega +state +incantevole +perugia +vista +alto +grazie +umbria +prima +soprattutto +dopo +voto +poco +diretta +presidente +donatella +tesei +squadra +amministrerà +splendida +regione +scelto +modello +buongoverno +lega +quasi +mila +euro +spesi +murales +pro +immigrazione +pd +milano +priorità +smentiscono +mai +salvini +spara +immigrati +opera +arte +no +solita +schifezza +sinistrato +intanto +raggi +zingaretti +litigano +roma +sommersa +rifiuti +grillo +maio +neanche +ridere +conte +fa +altro +scappare +aziende +approva +trattati +silenzio +renzi +calenda +cose +fondano +partiti +lavoriamo +molliamo +buon +sabato +amici😊 +merenda +dietetica +buon +pomeriggio +amici +🔴 +roma +ecco +vergognosa +finta +raccolta +differenziata +mentre +duo +sciagura +raggi +zingaretti +continuano +litigare +roma +continua +essere +seppellita +immondizia +scandalosa +complicità +altro +gestisce +rifiuti +lega +pronta +mandare +casa +incapaci +giovedì +novembre +ore +teatro +italia +inizia +conto +rovescia +restituire +pulizia +sicurezza +dignità +capitale +raggidimettiti +🔴facciamo +girare +ecco +cos +trattato +europeo +rischia +saltare +risparmi +italiani +banca +colpa +governo +folle +vorrei +conte +svenduto +sovranità +altro +tenersi +poltrona +così +alto +tradimento +pace +guerra +reato +punibile +galera +amici +aspetto +oggi +perugia +verso +città +domenica +insieme +neo +governatrice +umbria +donatella +tesei +zona +venite +trovarci +cosa +fa +farsi +po +pubblicità +squallore +scultura” +raffigura +mentre +sparo +immigrati +vera +schifezza +istigazione +odio +violenza +altro +arte +vedo +ora +tornare +napoli +ammirare +fantastici +presepi +tradizionali +porcherie +votateci +beneficenza +destra +pericolosetta +” +prima +ancora +voleva +togliere +voto +anziani +cancellare +elezioni +grillo +ormai +fa +ridere +poveretto +fa +pena +andate +leggervi +commenti +ex +elettori +5stelle +pagina +fatevi +risata😂 +effettivamente +😸 +gattiniconsalvini +buongiorno +gattini +😸 +gattiniconsalvini +buonanotte +me +gattoboy +gattiniconsalvini +solo +anni +galera +ammazzato +ragazzo +meno +complici +schifo +giustizia +marco +vannini +quarto +grado +meraviglia +😻😻😻 +piccola +parte +migliaia +bimbi +felini +inviati +grazie +gattiniconsalvini +terapeutici +portano +gioia +pagina +predispongono +bene +sonno +😊 +potete +creare +cartello +personalizzato +mici +andando +legaonline +it +gattiniconsalvini +permetteremo +nessuno +svendere +sovranità +italia +qualche +poltrona +qualche +minuto +ecco +intervista +oggi +verità” +buona +serata +amici +bottiglie +sassi +insulti +verso +polizia +minacce +verso +lega +ecco +democratici +sinistra +me +sembrano +nazisti +rossi +molliamo +centimetro +👏👏👏😂 +stopmes +ieri +sorrento +grazie +ragazzi +cose +riempie +orgoglio +tantissimi +giovani +avvicinano +lega +deciso +impegnarsi +italia +forte +giusta +libera +🇮🇹 +fiera +g +giocare +regalato +bacchetta +magica +mezza +idea +desiderio +realizzare +😉 +forza +sinisa +forza +guerriero +frutta +glielo +dice +dolcevita +velluto +piacciono +fin +bambino +🤣 +poi +arriva +momento +prendere +figlia +scuola +gioia😊 +🔴 +giù +mani +conti +correnti +italiani +me +lega +salvini +premier +congratulazioni +affettuosi +auguri +tanti +nuovi +successi +presidente +brasile +jair +messias +bolsonaro +nuova +avventura +aliança +pelo +brasil +🇮🇹🇧🇷 +indovinello +complicità +governo +sbarcheranno +centinaia +immigrati +🤔 +intervista +unomattina +sicuro +piacerà +aiutate +condividerla +grazie +amici +❤️ +bene +tribunale +finalmente +riconosce +bloccare +sbarchi +autorizzati +immigrati +reato +curioso +vedere +punto +cosa +decideranno +altre +procure +volta +tornato +governo +rifarò +esattamente +cose +mai +visto +altri +paesi +qualcuno +manifesta +opposizione +temendo +vada +governo +😊 +comunque +nuovo +sport +inseguire +salvini +pronto +prossimi +appuntamenti +domani +altro +pomeriggio +perugia +domenica +rimini +mattino +poi +fiorenzuola +arda +provincia +piacenza +oggi +edicola +verità” +pagina +lunga +spero +interessante +intervista +parlo +molto +altro +🇮🇹 +roma +diretta +festival +lavoro +seguitemi +seguito +rai +pare +essere +stato +chiaro +mes +tasse +mani +conti +correnti +sbarchi +senza +controllo +governo +minoranza +danni +enormi +paese +prima +meglio +altro +giú +mani +natale +appello +genitori +insegnanti +lasciate +libertà +iniziative +celebrano +festa +bella +nessun +bimbo +italiano +straniero +offende +davanti +presepe +italia +bisogno +lavoro +sicurezza +valori +governo +vuole +svendere +risparmi +banca +italiani +salvare +poltrona +glielo +permetteremo +ora +saluto +diretta +unomattina +rai +sperando +riuscire +portare +voce +amici +😊 +gioia +occhi +gemelli +incontrati +sorrento😊 +buona +vita +ragazzi +buona +giornata +amici +dolce +limone +positano +riduce +danni +governo +ciarlatano +buonanotte +amici +😊 +domani +mattina +tempo +accendere +saluto +diretta +rai +unomattina +amici +micio +birbantello +😹 +arrivati +circa +10mila +foto +bimbi +felini +ricevute +marea +cani +cagnolini +grazie +organizzando +vedrete +😉 +gattiniconsalvini +portano +bene +grande +vittoria +lega +insistito +fine +raggiunto +risultato +emilia +romagna +niente +imu +immobili +terremotati +inagibili +avanti +così +accordi +innominabili +insaputa +popolo +stopmes +nessuno +tocchi +risparmi +italiani +secondo +genio +vuole +togliere +diritto +voto +anziani +adesso +pericolo +italia +sigarette +elettroniche +piacere +grillo +svapa +passa +fa +leggete +storia +troppo +spesso +stato +burocrazia +uffici +esercitano +violenza +fuori +controllo +umiliante +brutale +mano +procedura” +spazio +briciolo +umanità +compassione +italia +mente +intervista +la7 +collegamento +magnifica +sorrento +buona +serata +amici +saluto +positano +incantevole +pioggia +dopo +aver +accolto +proprio +oggi +sindaco +grande +famiglia +lega +😊 +bellezza +italia +🇮🇹 +avanti +tutta +amici +dicembre +fiandre +anversa +signora +prepara +mezzi +propriamente +pacifici +me +vantando +vasta +esperienza +campo +cosa +voluto +dire +dibattito +democratico +servirebbe +po +terapia +calmante +gattiniconsalvini +tavola +prima +italia +🇮🇹 +buon +pranzo +amici +😊 +⚠ +stato +polizia +fiscale +dopo +aver +riaperto +porti +inventato +tasse +plastica +zucchero +ora +governo +pd +5stelle +renzi +vuole +pure +entrare +conto +corrente +italiani +follia +lega +pronta +fermare +matti +nooooo +miagolii +delusione +sorrento +poca +pappa +gattiniconsalvini +😿😘 +🔴 +moscovici +dice +mes +salverebbe +banche +sì +francesi +tedesche +mes +metterebbe +infatti +crisi +banche +pagare +crisi +banche +tedesche +francesi +altro +niente +presidente +abi +governatore +bankitalia +preoccupati +capito +mes +rischiamo +bis +disastro +bail +anzi +cento +volte +peggio +attacco +democrazia +risparmio +italiani +deve +passare +sempre +fatto +lega +opporrà +ogni +sede +ogni +maniera +conte +governo +sinistra +parte +diretta +sorrento +sindaco +giuseppe +cuomo +sindaco +positano +michele +lucia +entrano +grande +famiglia +lega +benvenuti +riesci +pagare +multa +entrano +conto +corrente +pignorarti +risparmi +unione +sovietica +fiscale +stato +polizia +fiscale +pericolosi +me +piace +sacco +cantante +voglio +bene +fiorella +onore +venezia +veneto +meritano +solo +rispetto +vicinanza +trotta +trotta +cavallino +trotto +😊 +buongiorno +amici +☀️ +direzione +campania +vediamo +sorrento +positano +🇮🇹 +buonanotte +pelosetti +micetti +cagnolini +ieri +oggi +domani +gattiniconsalvini +🐱❤️🇮🇹 +accidenti +😸 +gattiniconsalvini +domani +mattina +luoghi +stupendi +orgoglio +campania +italia +intera +dare +benvenuto +grande +famiglia +lega +sindaci +sorrento +positano +avanti +tutta +primagliitaliani +🇮🇹 +bravissima +lucia +orgoglioso +donne +lega +😊 +26gennaiovotolega +lega +sempre +detto +conte +tria +mandato +toccare +mes +qualcuno +agito +fatto +tradendo +mandato +popolo +italiano +alto +tradimento +costa +caro +prima +volta +ex +avvocato +popolo +mente +verità +verrà +fuori +fa +amare +micetti +😻 +grazie +decine +migliaia +amici +felini +pubblicati +ovunque +viva +sorridere +gattiniconsalvini +diretta +roma +bruno +vespa +state +🔴 +prendiamo +sprangate +arcate +gengivali” +viva +libera +democratica +partecipazione +pensa +trovo +niente +democratico +dire +dovremmo +essere +presi +altro +sprangate +arcate +gengivali +salvini +semina +odio +po +gattiniconsalvini +potrebbero +essere +terapeutici +certi +violenti +🔴 +signor +conte +bugiardo +smemorato +onesto +direbbe +tavoli +così +ogni +dibattito +pubblico +sempre +detto +no +mes +difficile +ammettere +resto +altro +necessario +numerose +dichiarazioni +testimoniano +contrarietà +espressa +componenti +lega +ministri +compresi +argomento +cosa +teme +presidente +consiglio +forse +svenduto +risparmi +italiani +forza +sinisa +grande +sportivo +vero +uomo +bella +chiacchierata +mario +giordano +buon +pranzo +amici +😊 +🔴vogliamo +limitare +danni +governo +imbarazzante +basta +piangere +poliziotti +morti +trieste +bisogna +mettere +quattrini +speriamo +intelligenza +evitare +no +pregiudiziali +altro +proposte +lega +tagliando +tagli +sicurezza +pericolosi +triste +ciò +avvenga +silenzio +attuale +ministro +interno +frizzantella +puntata +ieri +sera +mario +giordano +cinema +pop +corn +panini +sardine +miao +😸 +ve +ripropongo +pagina +verso +sempre +comunque +gattiniconsalvini +prima +parte +roma +diretta +camera +presentare +proposte +parlamentari +lega +sicurezza +difesa +soccorso +pubblico +state +sovranisti +virus +tenere +bada +pensa +purtroppo +presidente +parlamento +europeo +pd +sovranità +appartiene +popolo +libero +democratico +esercizio +elezioni +così +sperimentato +umbria +vedranno +gennaio +emilia +romagna +calabria +😉 +vedo +gattini +piaciuti +amarli +😸 +gattiniconsalvini +buongiorno +amici +oggi +caffè +spremuta +cominciare +bene +giornata +buona +guarigione +mirò +grazie +migliaia +foto +mici +inviato +spettacolari +pubblicheremo +gattini +intelligenti +puliti +liberi +portano +bene☺️ +buonanotte +amici +gattiniconsalvini +pop +corn +mezzanotte +può +fare +☺️ +state +seguendo +rete +ringrazio +mando +abbraccio +serata +ancora +finita +amici +nottambuli +poco +onda +rete +mario +giordano +seguito +cartabianca +grande +lucia +sondaggi +ufficiali +mostrati +rai +danno +pd +vincente +emilia +romagna +stesso +valore +davano +candidato +pd +stelle +altro +vincente +umbria +poi +candidata +lega +prevalso +soli +venti +punti +cavallo +☺️☺️☺️ +26gennaiovotolega +ora +rai +pare +candidato +pd +dimenticato +governo +compagni +partito +☺️ +26gennaiovotolega +seguendo +lucia +borgonzoni +rai +sentire +voce +twitter +hashtag +borgonzonipresidente +cartabianca +forza +lucia +voglia +riuscite +stare +svegli +dopo +aver +seguito +lucia +borgonzoni +diretta +rai +raccomando +trovate +rete +mario +giordano +verso +buona +serata +amici +oggi +niente +pranzo +ora +mettono +davanti +carbonara +vado +cosa +dolce +bello +gattini +😉 +bambini +felini +piacciono +sardine +pesciolini +mettete +foto +commenti +miao +😸 +gattiniconsalvini +invecchiando +diventa +saggio +invecchiando +diventa +vauro +amen +chef +rubio +travestito +prete +😂 +amici +sera +diretta +rai +lucia +borgonzoni +cartabianca +prima +liberiamo +emilia +romagna +poi +liberiamo +italia +🇮🇹 +26gennaiovotolega +borgonzonipresidente +commenti +liberi +https +www +facebook +com +cartabiancarai3 +photos +buon +pomeriggio +amici +saluto +terni +festeggiare +storica +liberazione +umbria +accogliere +nuovo +consigliere +comunale +lascia +5stelle +entra +grande +famiglia +lega +benvenuto +conte +subito +parlamento +dire +verità +sì +modifica +mes +rovina +milioni +italiani +fine +sovranità +nazionale +ieri +sera +collegamento +volante +porro +pazienza +serve +grillini +pensassero +figuracce +ius +soli +ilva +😇 +dimenticare +scommetto +oggi +quasi +nessun +giornale +quasi +nessun +telegiornale +ricorderà +proprio +novembre +anni +fa +manifestanti +comunisti +ammazzarono +milano +antonio +altro +annarumma +poliziotto +ragazzo +anni +testa +penetrata +tubolare +acciaio +lì +cominciarono +anni +piombo +stagione +odio +violenza +verso +forze +ordine +verso +sbirri +ancora +oggi +insultati +attaccati +cortei +certi +democratici +figli +papà +stagione +italia +deve +tornare +attaccano +rafforzano +mollo +amici +diretta +rimini +insieme +forze +ordine +congresso +nazionale +sindacato +autonomo +polizia +state +🇮🇹 +orgoglioso +essere +rimini +congresso +sindacato +autonomo +polizia +sap +ringrazio +invito +accoglienza +ieri +oggi +domani +ministro +semplice +cittadino +sempre +parte +forze +ordine +🇮🇹 +mare +inverno +saluti +rimini +buon +martedì +amici +felice +partecipare +oggi +rimini +congresso +sindacato +autonomo +polizia +sap +poi +terni +alcune +belle +novità +riguardano +lega +roma +senato +tengo +aggiornato +diretta +avanti +tutta +altra +indagine +altro +processo +aver +difeso +confini +sicurezza +onore +italia +me +medaglia +rifarei +rifarò +portichiusi +🇮🇹 +procura +agrigento +problemi +gravi +occuparsi +buongiorno +ama +italia +tempi +governanti +anti +italiani +cosa +scontata +🇮🇹 +grazie +luca +toni +bomber +vero +🇮🇹 +auguro +notte +serena +amici +ora +diretta +volante +rete +collegamento +nicola +porro +follia +manovra +economica +emilia +romagna +accorti +casa +pd +però +ieri +ritrova +bologna +parlare +ius +soli +qualcuno +vive +marte +ormai +giochetto +capito +gratta +sardina +trovi +piddina +democratica” +assessore +comune +provincia +bologna +dice +delinquenti +prestati +politica” +amici +insultano +vinciamo +26gennaiovotolega +novi +modena +splendida +famiglia +aperto +porte +casetta +legno +vivono +ormai +anni +dopo +terremoto +tornare +vecchia +casa +parlerà +forse +altri +anni +efficienza +velocità +solo +lega +votò +tempi +sospetti +mes +crimine +confronti +lavoratori +risparmiatori +italiani +qualcuno +accordato +oscuro +popolo +fondo +ammazza +stati +ponga +rimedio +adesso +prima +tardi +altrimenti +alto +tradimento +stopmes +italia +zuccheri +minerbio +bologna +unico +zuccherificio +italiano +compra +sano +compra +amore +compra +tricolore +🇮🇹 +azienda +agricola +valentina +minerbio +bologna +adoro +funghi +😋 +avviso +governo +anti +italiano +noiussoli +cittadinanza +regala +lega +opporrà +modi +ve +garantisco +diretta +zuccherificio +minerbio +bologna +tante +realtà +governo +pd +m5s +renzi +vorrebbe +soffocare +tasse +state +sgarbi +diritto +usare +contante +severo +giusto +no +sinistri +governo +vorrebbero +invece +stato +polizia +fiscale +solito +vizietto +chiesti +anni +galera +uccise +rapinatori +ferì +terzo +dopo +aggredito +minacciato +moglie +pistola +poi +risultata +finta +giustizia” +italiana +chiede +condanna +anni +galera +commerciante +siciliano +anni +invece +iostoconguido +almeno +qualcuno +parla +aspetto +reazioni +condanne +parte +indignati +professione +oppure +minacce +vengono +sinistra +meno +gravi +minacciose +profilo +democratica +sardina +invoca +omicidio +inspiegabilmente +scomparso +facebook +gratti +sardino +trovi +piddino +protesta +proposte +grande +differenza +sinistra +lega +distrugge +costruisce +oggi +emilia +incontrare +aziende +resistono +calamità +naturali +calamità +fiscali +governo +tasse +minerbio +bo +poi +novi +modena +mo +carpi +mo +altro +modena +democratiche +sardine +spargono +odio +arrivando +appendermi +testa +giù +bontà +dico +solo +protesta +proposte +grande +differenza +sinistra +lega +distrugge +costruisce +piovono +tasse +nonostante +buona +settimana +amici +buon +lunedì +amici +minuti +live +parlare +po +governo +farsa +invasione +superando +ogni +limite +sinistra +vergogna +anti +italiana +cittadinanza +biglietto +premio +luna +park +meritata +desiderata +conquistata +noiussoli +sardine +democratiche” +piazza +oggi +modena +me +poco +tempo +fa +invocava +omicidio +parte +giustiziere +raffigurava +testa +giù +bella +roba +aspetto +reazioni +altro +indignate +giornalisti +politici +merluzzi +viva +modena +viva +emilia +romagna +viva +libertà +democrazia +vere😉 +governo +pericolosi +incapaci +detestati +maggioranza +italiani +casa +noiussoli +buonanotte +amici +molla +millimetro +mai +girare +succedendo +italia +oggi +pd +5stelle +litigano +ius +soli +pericolosi +incapaci +basta +casa +pensiero +connazionali +difficoltà +nord +sud +gravissimi +disagi +maltempo +grazie +vigili +fuoco +forze +ordine +protezione +civile +sindaci +prefetture +altro +volontari +impegnati +impedire +danni +peggiori +domani +emilia +visite +già +programmate +minerbio +bologna +carpi +modena +quando +fiumi +esondano +distinzione +colore +politico +uniti +sostenere +aiutare +mettere +sicurezza +persone +abitazioni +attività +ricordo +splendide +emozioni +paladozza +bologna +orgoglioso +lega +protagonista +nuova +speranza +emilia +romagna +italia +gennaio +fa +storia +amici +26gennaiovotolega +🔴che +schifo +sinistra +disgustoso +presunto +intellettuale” +assessore +cultura” +municipio +roma +vergogni +chieda +scusa +orgoglioso +donatella +tesei +neo +governatrice +altro +umbria +orgoglioso +lucia +borgonzoni +governatrice +emilia +romagna +orgoglioso +tutte +donne +lega +sostiene +candida +donne +brave +preghiamo +signore +ritrovi +equilibrio +serenità +pensare +pd +renzi +sinistri +vari +anni +insultato +deriso +quando +dicevo +scappano +nessuna +guerra +fine +verità +viene +sempre +galla +🔴 +pronti +dare +battaglia +dentro +fuori +parlamento +fermare +ius +soli +evitare +cambino +decreti +sicurezza +governoclandestino +qualcuno +pensa +risolvere +problemi +imprese +avvocati +andando +giro +tribunali +vuol +dire +governo +persone +pericolose +incapaci +solo +rischiano +lasciare +casa +decine +migliaia +lavoratori +fare +pessima +pubblicità +italia +altro +avvocato +popolo +duce +proprio +ossessionati +bene +buona +domenica +amici +testarda +voglia +combattere +🇮🇹 +quando +figlia +colora +capelli +blu +dice +papà +perfetto +adesso +bellissimo +”😁 +sinistra +abbracciato +cultura +permissivismo +spacciatori +droga +meritevoli +compassione +maggior +ragione +nordafricani +dimenticando +quel +vecchio +popolo +sinistra +vive +situazioni +degrado” +silenzio +studio +🔴guerriglia +urbana +ieri +vicino +duomo +bande +nordafricani +colpi +bottigliate +sediate +sotto +sguardo +terrorizzato +passanti +vergogna +milano +spero +punizioni +esemplari +altro +caso +figlio +buonismo +sinistra +politica +porti +aperti” +clandestini +fa +torto +milioni +immigrati +perbene +lavorano +mandano +figli +scuola +rispettano +cultura +tassa +inventeranno +conte +renzi +zingaretti +maio +stanotte +buonasera +amici +collego +diretta +minuti +trovo +qualcuno +sinistra +vorrebbero +tappare +bocca +pensano +viva +giornalisti +schiena +dritta +vive +male +signore +giornate +piene +rabbia +odio +gente +baci +affettuosi +umana +pietà +risposta +migliore +solo +odiare +sorriso +buongiorno +amici +posso +augurarvi +buon +sabato +❤️ +gennaio +impegniamo +storia +ancora +emozionato +rivedermi +migliore +ricompensa +banale +amici +emiliani +romagnoli +sento +dirvelo +ancora +grazie +sappiate +solo +cosa +risparmierò +gennaio +liberiamo +emilia +romagna +poi +liberiamo +italia +🇮🇹 +26gennaiovotolega +borgonzonipresidente +popolo +paladozza +rancore +odia +emilia +romagna +sorride +ama +sogna +26gennaiovotolega +borgonzonipresidente +🔴 +ieri +bologna +volantini +titolo +impiccato” +capovolta +distribuiti +bravi +ragazzi” +sinistra +violenta +solo +odiare +unica +risposta +possibile +sorriso +amici +ilva +governo +pericolosi +incapaci +nemici +imprese +lavoratori +altro +fare +causa +dimettetevi +chiedete +scusa +pensate +qualcuno +lega +andasse +disturbare +manifestazioni +altrui +democratici +signori +odiano +forze +ordine +vorrebbero +vedermi +appeso +testa +giù +peggio +italia +offrire +odio +risponderemo +energia +positiva +sorrisi +forza +idee +grazie +❤️ +🔴 +gratitudine +immensa +migliaia +persone +abbracciato +me +lucia +profondo +rispetto +manifesta +pacificamente +idee +nessun +rispetto +invece +protestare +lancia +sassi +bottiglie +verso +polizia +carabinieri +viva +bologna +viva +libertà +democrazia +serve +miliardo +gente +subito +può +prendere +miliardi +governo +vorrebbe +regalare +paga +spesa +carta +credito +metteremo +tutta +venezia +invece +dare +miliardi +usa +carta +credito +anziché +contanti +auguro +intero +parlamento +unisca +sostegno +popoli +venezia +pellestrina +matera +altamura +tutte +altro +persone +notte +perso +risparmi +vita +lega +pronta +proposte +concrete +funzionamento +mose +contributo +straordinario +veloce +immediato +territorio +ora +venezia +luca +zaia +incontrare +cittadini +commercianti +contatto +lavoro +tutte +altre +città +italiane +colpite +maltempo +gennaio +spero +vada +finire +finita +umbria +risaputo +prima +ignorano +poi +deridono +poi +vinci +grazie +serata +emozionante +ora +avanti +tutta +lucia +buonanotte +amici +🇮🇹 +messaggio +nasconde +verità +palazzetto +andate +avanti +così +vuol +dire +strada +giusta +negate +realtà +realtà +viene +galla +viva +donne +uomini +resistono +🇮🇹 +paladozza +borgonzonipresidente +ora +tocca +me +seguiteci +ora +tocca +lucia +borgonzoni +ovazioni +paladozza +insieme +borgonzonipresidente +applausi +governatori +donatella +tesei +umbria +massimiliano +fedriga +friuli +venezia +giulia +christian +solinas +sardegna +attilio +fontana +lombardia +luca +zaia +veneto +paladozza +borgonzonipresidente +grazie +marco +omboni +imprenditore +settore +imballaggi +plastica +secondo +plastictax +andrà +punire +industria +riciclo +aprirà +strada +materiali +provenienti +estremo +oriente +penalizzerà +eccellenza +industria +italiana +paladozza +borgonzonipresidente +grazie +professor +alessandro +amadori +paladozza +borgonzonipresidente +governatori +paladozza +pronti +intervenire +palco +borgonzonipresidente +emozionanti +paladozza +borgonzonipresidente +palco +paladozza +bologna +poeta +davide +rondoni +borgonzonipresidente +🔴 +paladozza +spettacolo +fate +girare +emilia +romagna +vuole +fare +storia +vuole +male +😉 +borgonzonipresidente +diretta +bologna +paladozza +spettacolo +lucia +borgonzoni +governatori +lega +migliaia +emiliani +romagnoli +presenta +amico +mario +giordano +state +borgonzonipresidente +26gennaiovotolega +poco +partiamo +pochi +minuti +iniziamo +state +paladozza +borgonzonipresidente +paladozza +pieno +breve +comincia🔝 +rimanete +connessi +borgonzonipresidente +quasi +paladozza +pronto +😊 +borgonzonipresidente +vuole +seguire +evento +paladozza +casa +appuntamento +diretta +pagine +facebook +instagram +youtube +pronti +borgonzonipresidente +🔴come +fa +essere +cosí +scemi +giù +mani +bambini +natale +sentire +voce +rete +usiamo +hashtag +borgonzonipresidente +paladozza +social +tanti +pullman +arrivo +tutta +emilia +romagna +destinazione +paladozza +bologna +💪🏻 +buon +viaggio +vediamo +poco +borgonzonipresidente +aperte +porte +paladozza +aspettiamo +😊 +borgonzonipresidente +diretta +bologna +insieme +lucia +borgonzoni +aprire +porte +paladozza +state +borgonzonipresidente +guardate +spettacolo +paladozza +amici +vediamo +bologna +insieme +borgonzonipresidente +vedo +ora +😊 +quasi +sera +bologna +😊 +ℹ +mano +legaonline +it +emiliaromagna +✉ +emiliaromagna +legaonline +it +bologna +paladozza +portiamo +dietro +quinte +grande +evento +sera +lucia +borgonzoni +borgonzonipresidente +saluto +paladozza +bologna +amici +emiliani +romagnoli +sera +assicuro +spettacolo +🔝 +grave +perdita +italiani +resistere +senza +vedere +tizio +tivù +🤣 +manca +sempre +meno +festa +sera +ore +paladozza +bologna +lucia +borgonzoni +pronta +😊 +gennaio +andiamo +fare +storia +emilia +romagna +🚌 +trova +altro +pullman +https +legaonline +it +download +pullman +paladozza +14nov +pdf +ℹ +mano +legaonline +it +emiliaromagna +✉ +emiliaromagna +legaonline +it +litigano +tasse +quota +giustizia +tempo +pensano +prendere +ancora +giro +italiani +poltrona +collante +forte +sicuro +prossime +elezioni +partire +emilia +romagna +lanceranno +messaggio +chiaro +governo +abusivi +dopo +aver +dato +cittadinanza +carola +rackete +ora +governo +macron +fa +sgomberare +immigrati +clandestini +parigi +altro +porti +aperti +nuovi +accordi +europei +altri +paesi +difendono +propri +altro +interessi +mentre +italia +aumentano +sbarchi +pd +vuole +cancellare +decreti +sicurezza +conte +maio +renzi +🔴 +immigrati +europa +impegnata +prendere +italia +grecia +stati +ricollocati +solo +appena +italia +ennesima +presa +giro +intanto +governo +incapaci +riaperto +porti +raddoppiati +sbarchi +date +occhiata +basta +qualche +numero +smontare +bugie +tassatori +governo +abusivo +vietato +ingresso +lega +democratici” +fascisti” +bologna +paladozza +allestimento +quasi +sera +tantissimi +dare +voce +voglia +cambiamento +emiliani +romagnoli +26gennaiovotolega +🚌 +trova +pullman +altrohttps +legaonline +it +download +pullman +paladozza +14nov +pdf +ℹ +mano +legaonline +it +emiliaromagna +✉ +emiliaromagna +legaonline +it +posso +offrirvi +cappuccino +sorpresa +☺️ +buona +giornata +sorriso +dura +istante +ricordi +può +essere +eterno” +friedrich +schiller +domani +sera +aspetto +bologna +già +migliaia +adesioni +sinistra +mettendo +giro +voce +entrare +bisogna +pagare +biglietto +no +incontro +parleremo +futuro +libertà +arte +proposte +gratis +😉 +buonanotte +amici +26gennaiovotolega +intervista +parma +tv +viva +emittenti +locali +voci +autentiche +libere +territori +26gennaiovotolega +ieri +sera +floris +annoiato +pazienza +manca +😊 +buona +serata +amici +poco +rete +scriviamo +letterina +ex +avvocato +italiani +cosa +scrivereste +felice +aver +partecipato +oggi +inaugurazione +consolato +israeliano +firenze +insieme +ambasciatore +dror +eydar +altri +amici +comunità +ebraica +sempre +sempre +vicino +popolo +israele +altro +baluardo +democrazia +terra +martoriata +ore +missili +lutti +ringrazio +comunità +fiorentina +dato +vita +nuovo +presidio +libertà +progresso +relazione +economica +commerciale +fondamentale +momento +europa +israele +subisce +isolamento +silenzio +generale +forza +venezia +qualcuno +collego +verso +😊 +avere +permesso +soggiorno +motivi +umanitari +basta +dimostrare +essersi +integrati +✅ +corte +cassazione +dà +ragione +lega +riaprono +porti +vogliono +cancellare +decreti +sicurezza +ecco +nuovo +assessore +cultura +scelto +magistris +povera +napoli +auguro +signore +autore +fumetti +pare +notevoli +idiozie +ricevere +mai +proiettili +dediche +murarie +tipo +salvini +muori +spara +salvini +altre +minacce +propria +incolumità +ogni +caso +sapete +intimidire +sorrido +vado +avanti +😊 +🔴roba +matti +voleva +essere +portato +sotto +casa +scambiando +autobus +taxi +accontentato +dato +escandescenze +distruggendo +parabrezza +colpi +badile +cosí +richiedente +asilo” +mali +altro +davvero +rispettoso +paese +ospita +viva +porti +aperti” +viva +cancellazione +decreti +sicurezza +quel +cattivone +salvini +grazie +conte +cuore +testa +venezia +veneto +matera +zone +colpite +maltempo +lega +governatore +veneto +luca +zaia +lavoro +interventi +immediati +patrimoni +paese +altro +eredità +lasciare +nipoti +vanno +difesi +tutelati +ogni +costo +ecco +cosa +detto +mattina +canale +diretta +camera +italia +riparte +solo +sostiene +imprese +taglia +tasse +burocrazia +prosegue +direzione +pace +fiscale +aiuta +davvero +famiglie +🔴 +patrimonio +umanità +governo +può +ignorare +danni +provocati +maltempo +venezia +utilizzi +subito +miliardi +governo +vorrebbe +regalare +paga +bancomat +carta +credito +aggiornamenti +governatore +luca +zaia +drammatica +situazione +venezia +veneto +lavoro +vigili +fuoco +protezione +civile +forza +❤️ +ora +diretta +canale +seguite +amici +vediamo +poco +canale +fa +compagnia +disastro +venezia +quasi +metri +acqua +alta +morti +tutta +vicinanza +italia +fa +tifo +visto +la7 +italiani +sceglie +lega +cretini +fascisti” +no +solo +cittadini +vogliono +vivere +tranquilli +paese +sicuro +giusto +libero +buonanotte +amici +sempre +avanti +testa +alta +vinceremo +interesse +vuole +male +😊 +poco +onda +la7 +floris +qualcuno +sbarca +trovato +tubercolosi +diffuse +altri +organi +cose +italia +vedono +decenni” +pazzesco +italia +vive +pericoli +drammatici +governo +abusivo +anziché +altro +aumentare +controlli +riapre +porti +minaccia +cancellare +decreti +sicurezza +pericolosi +sicuro +milioni +italiani +vedono +ora +vadano +casa +sera +niente +meglio +fare +verso +accendete +la7 +fatemi +compagnia +😊 +buona +serata +amici +grazie +esserci +sempre +amici +emiliani +romagnoli +pronto +grande +evento +paladozza +giovedì +sera +bologna +lucia +borgonzoni +riempiamo +info +pullman +legaonline +it +emiliaromagna +soluzione +bonino +legalizzare +clandestini +messaggio +ideale +dare +trafficanti +esseri +umani +oer +ridurre +sbarchi +onore +imprenditore +rischiato +pur +salvare +dipendenti +quando +costretti +scegliere +pagare +tasse +pagare +propri +lavoratori +governo +serio +dovrebbe +tagliare +altro +imposte +invece +cosa +fa +governo +pd +5stelle +renzi +inventa +tasse +plastica +zucchero +voto +gennaio +emilia +romagna +mandiamo +casa +traditori +signore +dice +dovrebbe +vergognarsi +chiedere +scusa +parenti +morti +indegno +dirsi +prete +amici +emiliani +romagnoli +aspettiamo +tantissimi +giovedì +paladozza +bologna +insieme +futura +presidente +lucia +borgonzoni +pd +sinistra +dicono +altro +spocchia +emilia +romagna” +diciamo +emilia +romagna +tutti” +regione +sempre +efficiente +giusta +libera +conti +merito +tessera +partito +pensi +prima +italiani +solo +dopo +resto +mondo +dopo +anni +ora +cambiare +aria +gennaio +fa +storia +🚌 +trova +pullman +https +legaonline +it +download +pullman +paladozza +14nov +pdf +ℹ +mano +legaonline +it +emiliaromagna +✉ +emiliaromagna +legaonline +it +ministro +giustizia +esiste +salvini +sopravvive +fatica +sciocchezze +dice +simpatico +sincero +intelligente +obiettivo +niente +ossessionato +me +lega +mah +no +riesco +bravo +dire +bugie +amici +renzi +vogliono +premiare +definì +israeliani +essere +abominevoli +antisemitismo +schifo +ferma +perduto +🇮🇹 +anni +strage +nassiriya +dimenticare +ancora +pensiero +militari +feriti +attentato +domenica +onore +eroi +dato +vita +rischiano +ogni +giorno +proteggere +italia +🇮🇹 +minacce +interne +esterne +ieri +orogel +eccellenza +italiana +fabbriche +romagna +veneto +basilicata +valorizza +lavoro +agricoltori +italiani +viva +zucca +😉 +buongiorno +amici +insieme +può +☺️ +grazie +calore +affetto +dato +giorni +emilia +romagna +metto +tutta +sicuro +gennaio +insieme +libereremo +splendida +regione +buonanotte +amici +saluto +mirta +zio +giletti +qualcuno +ridire +sinistra +sanno +cosa +attaccarsi +neanche +zii” +vanno +bene +😂 +capiranno +sinistra +italia +riparte +solo +tagliando +tasse +semplificando +vita +imprese +🤬bibbiano +sinistra +raffreddore +vergognatevi +andremo +fino +fondo +bibbiano +bambini +rubati +famiglie +vergogna +deve +ripetere +sinistra +può +insabbiare +parlando +semplice +raffreddore” +lega +andrà +fino +fondo +tante +famiglie +emiliane +chiedono +giustizia +quando +forza +politica +pur +conservare +poltrone +rinnega +idee +battaglie +propria +stessa +natura +poi +accade +chiarezza +coerenza +fine +pagano +sempre +po +beneficenza +soldi +insulta +😊 +terrorismo +islamico +ancora +pericolo +anzi +pericolo +grave +mondo +mai +abbassare +guardia +salvini +sedano +rapporto +antico😉 +folle +tassa +plastica +governo +pd +5stelle +renzi +pure +dentifricio +costerà +mandiamoli +casa +volta +tutte +26gennaiovotolega +cesena +visitando +azienda +prodotti +surgelati +orogel +splendido +esempio +cooperativa +bella +sana +reinveste +utili +fa +lavorare +duemila +agricoltori +italiani +produce +prodotti +italiani +lunga +vita +eccellenze +vanno +tutelate +valorizzate +europa +mondo +italia +deve +essere +amica +imprenditori +farli +scappare +lega +vuole +aiutarli +investire +qua +abbassando +tasse +riducendo +burocrazia +altro +tassa +zucchero +ecco +cosa +detto +ieri +sera +giletti +buon +pranzo +amici +pioggia +mattina +tolto +sorriso +tanti +romagnoli +presenti +forlì +😊 +ogni +giorno +passa +sempre +fiducioso +gennaio +elezioni +giornata +festa +libertà +partecipazione +futuro +prima +emilia +romagna +poi +italia +26gennaiovotolega +renziani +vogliono +chef +rubio +rai +pagato +italiani +ancora +diretta +forlì +fiera +operatori +avicoli +state +me +26gennaiovotolega +buon +lunedì +forlì +😊 +26gennaiovotolega +buongiorno +amici +diretta +forlí +pioggia +ferma +😊 +26gennaiovotolega +amici +forlivesi +vediamo +poco +piazza +poi +fiera +appuntamento +successivo +pievesestina +cesena +partire +aspetto +26gennaiovotolega +proiettili +minacce +scritte +muri +fate +paura +fate +pena +date +ancora +forza +coraggio +mollo +mollerò +mai +buongiorno +buon +lunedì +primagliitaliani +🇮🇹 +serata +emozionante +bellaria +rimini +grazie +❤️ +buonanotte +amici +voglio +bene +buonasera +amici +saluto +bellaria +rimini +pronti +fare +storia +emilia +romagna +26gennaiovotolega +🔴grande +avanzata +santiago +abascal +amici +vox +españa +elezioni +spagnole +scommetto +già +pronti +titoli +tiggì +giornali +italiani +vittoria +estrema +destra +razzisti +altro +sovranisti +fascisti +macché +razzismo +fascismo +italia +spagna +vogliamo +solo +vivere +tranquilli +casa +portichiusi +🇮🇹🇪🇸 +ora +la7 +😊 +amici +poco +verso +collegamento +massimo +giletti +la7 +fa +compagnia +economia +rischio +tornare +salvini +davvero +pericolosi +anti +democratici +incapaci +😱 +baci +sorrisi +insulta +vuole +male +😘 +adesso +tassano +pure +condomini +pericolosi +😳 +diretta +fiera +becchi +santarcangelo +romagna +rimini +voleva +😉 +state +vicino +militari +colpiti +vigliaccamente +iraq +famiglie +soldati +mondo +combattere +terrorismo +islamico +ovunque +italia +mondo +rimane +priorità +amici +emiliani +romagnoli +giovedì +sera +dovete +essere +paladozza +bologna +ingresso +libero +arrivate +presto +migliaia +mentre +altri +litigano +mattina +sera +chiusi +altro +palazzi +gennaio +insieme +possiamo +cambiare +storia +state +info +pullman +modulo +adesione +partecipare +campagna +elettorale +📣legaonline +it +emiliaromagna +saluto +fiera +usi +costumi” +ferrara +lunga +vita +patrimonio +culturale +identità +locali +tutta +italia +🇮🇹 +roma +caos +ormai +succedono +colori +onore +forze +ordine +mentre +purtroppo +altri +dormono +raggidimettiti +stupenda +mattinata +carpi +modena +ferrara +domenica +gennaio +libereremo +finalmente +splendida +regione +sinistra +basta +pd +emilia +romagna +26gennaiovotolega +🔴 +schifo +altro +schedare +forze +ordine +vuole +pd +italia +servono +regole +rispetto +certezza +pena +nessun +premio +killer +spietati +soprattutto +ucciso +donne +uomini +altro +divisa +https +www +ilmessaggero +it +italia +accoltella +uomo +ergastolano +permesso +premio +antonio +cianci +oggi +milano +ultime +notizie +html +ferrara +persone +pranzo +sostenere +lucia +borgonzoni +buon +appetito +amici +26gennaiovotolega +presento +avvocato +cause +perse +clandestini +vergogna +paese +presto +italia +rialzerà +testa +dopo +umbria +emilia +romagna +calabria +26gennaiovotolega +argomenti +compagni +bandiera +rossa +consueto +concertino +bella +ciao +salvini +merda +tristiiii +trent +anni +fa +caduto +muro +berlino +cadrà +emilia +romagna +26gennaiovotolega +buona +domenica +carpi +modena +fiera +cioccolato +😋 +seguite +arrivato +carpi +modena +viva +campane +poco +diretta +26gennaiovotolega +🔴secondo +scrittore +pericoloso +maestro” +leader +spagnolo +vox +amico +abascal +niente +fare +sinistra +quando +argomenti +continuano +cercare +razzisti +fascisti +nazisti +ancora +buona +domenica +amici +forza +vox +españa😊 +splendida +serata +ieri +reggio +emilia +oggi +riparte +carpi +ferrara +santarcangelo +romagna +bellaria +dettagli +sezione +eventi +mentre +pd +litiga +costruiamo +futuro +splendida +regione +liberare +26gennaiovotolega +ferma +perduto +☺️ +eicma2019 +buongiorno +buona +domenica +amici +ipocrisia +sinistra +confini +italiani +sopportano +buonanotte +amici +sapete +qual +segreto +odio +disprezzo +spocchia +rispondere +sorriso +determinazione +forza +buone +idee +gnocco +fritto +tigelle +erbazzone +lambrusco +saluti +reggio +emilia😊 +oggi +polesine +parmense +november +porc +luogo +ideale +seguire +dieta +😇 +viva +bassa +viva +culatello +zibello +🇮🇹 +spettacolo +reggio +emilia +sondaggi +contano +aria +ottima +amici +meno +giorni +voto +impegniamo +gennaio +emilia +romagna +bel +ciao +ciao +pd +26gennaiovotolega +diretta +reggio +emilia +lucia +borgonzoni +seguite +26gennaiovotolega +video +reggio +emilia +guardate +bella +gente +arrivando +26gennaiovotolega +assai +prezioso +contributo +migrante” +crescita +società +saluto +gruppo +alpini +terre +po +☺️ +fiera +polesine +parmense +dedicata +prodotti +maiale +sapori +straordinari +parte +terra +emiliana +tanto +entusiasmo +vita +vera +viva +tradizioni +comprare +mangiare +italiano +atto +politico +atto +amore +paese +polesine +parmense +parma +fiera +salumi +state +noi😊 +26gennaiovotolega +bella +iniziativa +vedrete +natale +invece +vergognerà +tradizioni +bel +pomeriggio +eicma +milano +eccellenza +italiana +invidiata +mondo +mezzo +tanti +appassionati +ruote +😊 +suggerimenti +ex +avvocato +popolo +ora +milano +fiera +ciclo +motociclo +spettacolo +seguitemi +elezioni +spagnole +domenica +auguro +cuore +grande +risultato +amico +santiago +abascal +vox +españa +forza +abbraccio +italia +🇮🇹🇪🇸 +quasi +simpatico +regalerò +cioccolatini +addolcire +giornate😉 +amici +carpigiani +vediamo +domani +sorriso +senza +rancore +😊 +italia +emergenza +razzismo +colpa +salvini +🤦‍♂ +fa +buongiorno +amici +eicma +fiera +milano +poi +sabato +emiliano +polesine +parmense +pr +centro +reggio +zona +aspetto +prontissimi +battaglia +liberare +emilia +romagna +dopo +anni +sinistra +26gennaiovotolega +trent +anni +fa +cadeva +muro +berlino +mai +comunismo +mai +dittatura +violenza +viva +libertà +fred +bongusto +simbolo +italia +sognava +cresceva +mancherai +⚠️ +governo +sbarchi +tasse +manette +prende +giro +forze +ordine +conte +maio +renzi +mettono +circa +milioni +euro +riordino +carriere +previsti +lega +altro +governo +finanzia +cifra +tagliando +fondi +ministeri +partire +interno +giustizia +difesa +mano +tolgono +altra +ridanno +ennesima +truffa +clamorosa +umiliazione +donne +uomini +divisa +vediamo +ora +tornare +voto +vincere +restituire +dignità +forze +ordine +altro +schedare +poliziotti +🔴 +caro +poltronaro +semina +bugie +raccoglie +fischi +oggi +taranto +domani +tutta +italia +amici +emiliani +romagnoli +fine +settimana +torno +vediamo +domani +polesine +parmense +parma +reggio +emilia +poi +aspetto +domenica +carpi +modena +ferrara +altro +santarcangelo +romagna +rimini +infine +bellaria +igea +marina +rimini +avanti +tutta +26gennaiovotolega +fa +dirmi +entra +governo +porro +rifila +sonora +lezione +viceministro +pd +vergognosa +faccenda +ex +ilva +ascoltare +colpa +governo +tasse +latte +costerà +roba +matti +prima +vanno +meglio +altro +cancellare +decreti +sicurezza +vorrebbe +governo +abusivo +casa +calci +delinquenti +ultimo +saluto +angeli +marco +matteo +antonino +abbraccio +commosso +intero +corpo +vigili +fuoco +italia +piange +ciao +firenze +presto +saluto +treno +amici +buon +pranzo +ecco +attaccano +senatore +lega +tony +iwobi +razzismo +sinistra +razzismo +ridicoli +fiera +san +martino +vietata +lega +bella +idea +democrazia +romagna +emilia +viva +libertà +😊 +buona +giornata +firenze +state +me +🇮🇹 +buongiorno +firenze +amici +poco +aggiorno +diretta +progetto +lega +elezioni +toscana +prossima +primavera +possiamo +fare +storia +signora +fornero +attacca +sempre +vuol +dire +lavorando +bene😊 +artista” +spera +venga +accolto +domenica +santarcangelo +grosse +secchiate +merda” +differenza +sinistra +odia +parliamo +futuro +valori +rispetto +lavoro +bellezza +sicurezza +viva +romagna +❤️ +onore +donne +uomini +forze +ordine +esercito +buona +giornata +amici +🇮🇹 +macchia +auguriamo +notte +serena +😊🐴 +sento +eroe +sento +persona +spera +avere +opportunità +salvare +gente +commovente +testimonianza +marco +vigili +fuoco +scomparsi +ingiustamente +martedì +altro +alessandria +eterna +riconoscenza +mette +gioco +propria +vita +salvare +altrui +preghiera +angeli +augurio +presto +fatta +giustizia +po +verità +caso +ilva +drammatico +solo +taranto +intera +economia +italiana +minuti +dedicare +ecco +intervento +lega +oggi +camera +vengo +criticato +aver +attaccato +rackete +paese +normale +mette +rischio +vita +militari +italiani +stata +punita +galera +punto +consapevole +tecnica +molto +migliorabile +dovevo +provarci +☺ +viva +fieracavalli +verona +pensate +svolge +diretta +bologna +lucia +borgonzoni +vista +appuntamento +giovedì +prossimo +novembre +paladozza +amici +emiliani +romagnoli +info +legaonline +it +emiliaromagna +emiliaromagna +legaonline +it +26gennaiovotolega +togliere +acciaio +italia +follia +governo +incapaci +lega +daremo +sangue +taranto +salti +neanche +posto +lavoro +operai +ex +ilva +governo +incapaci +vuole +tagliare +perfino +milioni +euro +anni +fondo +adozioni +roba +matti +fare +cassa +pelle +bambini +perso +mamma +papà +scelta +incivile +vigliacca +lega +batterà +evitarlo +dare +futuro +bambini +diretta +fieracavalli +verona +seguitemi +🐎 +buon +pomeriggio +amici +😊 +saluto +fieracavalli +verona +evento +imperdibile +anni +ospita +eccellenze +equitazione +mondo +tassa +plastica +milioni +euro +tasse +so +cosa +inevitabile +licenziare +qualcuno +roba +matti +pure +latte +verrà +tassato +governo +folle +massacra +altro +italiani +toglie +lavoro +migliaia +persone +distrugge +eccellenze +italiane +fino +oggi +rimaste +piedi +nonostante +renzi +pd +5stelle +lì +mesi +fatte +anni +ora +vediamo +mandarli +casa +altro +giorno +sinistra +detto +bisogna +parlare +prima +italiani” +convinto +giusto +dare +casa +popolare +diritto +arriva +domani +lampedusa +posso +dirlo +ecco +cosa +detto +ieri +sera +rete +mario +giordano +buon +pranzo +amici +balconi +palazzi +ostia +roma +cadono +pezzi +cornicione +lì +sotto +passa +chiunque +mamme +bimbi +nonni +virgì +sembra +normale +raggidimettiti +voglia +rivedete +insieme +me +pagina +verso +intervista +mario +giordano +prima +governo +minoranza +senz +anima +abusivo +meglio +italia +🔴 +torna +pd +governo +riaprono +centri +accoglienza +chiuso +follia +altro +business +immigrazione +sicuro +gennaio +emiliani +romagnoli +manderanno +casa +sinistra +porti +aperti +scegliendo +concetto +chiaro +prima +italiani +roma +piazza +montecitorio +insieme +coldiretti +difendere +territorio +raccolti +case +lavoro +aspetto +sera +bologna +savoia +hotel +via +pilastro +vista +grande +evento +paladozza +giovedì +prossima +settimana +novembre +ingresso +libero +fino +esaurimento +altro +posti +richieste +tantissime +26gennaiovotolega +vuoi +dare +mano +emilia +romagna +vai +legaonline +it +emiliaromagna +info +emiliaromagna +legaonline +it +aspettato +elezioni +umbria +sbarcare +nave +ong” +pesi +misure +riconosce +giornalista +certo +vicino +lega +ipocrisia +governo +abusivo +ormai +evidente +entusiasmo +carica +forza +quotidiana +state +certi +sempre +buona +giornata +amici +😊🇮🇹 +giovannino +cucciolo +guerriero +preghiamo +te +vogliamo +mondo +bene +❤️ +amici +seguito +giordano +sinistra +dicono +salvini +brutto +cattivo +fascista +troglodita +continuiamo +strada +sorriso +coscienza +posto +sicuri +andare +giusta +direzione +😉 +ora +rete +mario +giordano +😊 +voglio +bene +mettete +fiori +cannoni😉 +amici +sera +torno +amico +mario +giordano +vediamo +rete +fa +compagnia +😊 +domani +riparte +vediamo +piazza +montecitorio +iniziativa +coldiretti +difendere +territorio +raccolti +case +lavoro +verso +poi +fieracavalli +verona +infine +vediamo +bologna +ore +germania +rafforza +controlli +frontiere +francia +annuncia +stretta +immigrazione +complimenti +governo +sbarchi +tasse +manette +meno +mesi +porti +aperti +moltiplicato +arrivi +ora +fa +umiliare +parigi +berlino +conte +maio +renzi +complici +incapaci +caro +ministro” +invece +insultare +occupati +donne +uomini +polizia +penitenziaria +ormai +lavorano +condizioni +drammatiche +altrimenti +dimettiti +investitore +mette +miliardi +euro +sistemare +territorio +viene +minacciato +galera +evidentemente +imprenditore +scappa +voleva +scienziato +geni +governo +ascoltato +altro +lega +problema +neanche +posto +possibile +proseguire +attività +stabilimenti +siderurgici +ex +ilva +assolutamente +impensabile +perdere +migliaia +posti +lavoro +industria +cruciale +paese +niente +fare +sinistra +prima +italiani” +proprio +piace +amen😊 +turisti +te +roba +matti +magistrale +vittorio +feltri +poi +sinistra +stupiscono +vota +nessuno +👏 +odio +rete +complimenti +gentile +signora +già +candidata +sinistra +desio +brianza +messaggio +grande +rispetto +verso +persone +disabili +altro +vergogna +avanti +sorriso +amici +vuole +male +anziché +avversari +battere +forza +idee +vede +solo +nemici +odiare +buoni +🔴incredibile +ancora +visto +servizio +fatelo +sacrifici +romani +raccolta +differenziata +buttati +vento +azienda +comunale +rifiuti +mette +unico +altro +mischione +meglio +raggi +torni +professione +dimostrato +quasi +anni +essere +grado +fare +sindaco +capitale +italia +merita +dignità +raggidimettiti +vedete +calcinacci +cadono +case +popolari +ostia +me +porto +via +mostrerò +sera +diretta +rete +mario +giordano +spero +solo +visita +stamattina +altro +stimolo +ricordarsi +esiste +ostia +territorio +fa +parte +capitale +vado +ascoltare +cittadini +raggi +arrabbia +insulta +ora +altro +vita +ormai +chiaro +fare +sindaco +capace +raggidimettiti +ancora +diretta +ostia +roma +afflitta +problemi +occupazioni +abusive +mancanza +servizi +abbandono +raggidimettiti +ostia +roma +seguitemi +raggidimettiti +⭕️ +colpa +governo +tasse +targato +pd +5stelle +renzi +pure +bottiglie +acqua +costeranno +follia +mentre +governo +tasse +sbarchi +manette +continua +litigare +palazzi +andiamo +italia +vera +vediamo +ostia +roma +troppe +case +continuano +essere +occupate +abusivamente +⚠ +settore +imballaggi +emilia +romagna +aziende +17mila +dipendenti +affari +oltre +miliardi +euro +tassa +plastica +grande +difficoltà +pazzesco +altro +proposte +folli +governo +giocando +pelle +decine +migliaia +lavoratori +lega +pronta +dare +battaglia +dentro +fuori +parlamento +buongiorno +orgoglio +italiano +🇮🇹 +onore +vigili +fuoco +orgoglio +nazionale +🇮🇹 +sempre +pensiero +rivolto +antonino +marco +matteo +adesso +meritano +giustizia +anni +signora +calabrese +dorme +panchina +conservare +proprio +lavoro +pazzesco +so +ugl +interessando +caso +spero +possano +dare +mano +invio +abbraccio +commosso +tabaccaio +reagisce +rapina +uccide +ladri +difesa +legittima +sempre +penso +campania +enorme +voglia +buongoverno +tranquillità +efficienza +lavoro +pronti +liberare +terra +disastri +luca +magistris +maio +ecco +cosa +detto +mattina +napoli +certa +sinistra +branco +trogloditi +pericolosi +razzisti +evasori +fiscali +lunga +vita +intellettuali” +disprezzano +popolo +perdono +elezioni😉 +intervista +stamane +radio +crc +napoli +campania +voglia +lega +sempre +viva +emittenti +locali +❌ +colpa +governo +tasse +carta +igienica +costerà +mandiamoli +casa +volta +tutte +emilia +romagna +26gennaiovotolega +❗️sciopero +benzinai +meno +mesi +governo +tasse +sbarchi +manette +riuscito +arrabbiare +complimenti +liberiamo +emilia +romagna +dopo +anni +sinistra +lucia +borgonzoni +aspetto +giovedì +novembre +paladozza +bologna +tantissimi +sento +aria +cambiamento +26gennaiovotolega +⚠️vuoi +darci +mano +scrivi +emiliaromagna +legaonline +it +chiama +preghiera +matteo +marco +antonio +speranza +venga +garantita +pena +certa +assassini +provocato +incendio +morte +angeli +🔴splendida +mattinata +idee +futuro +napoli +leghisti +tutta +campania +regione +deve +tornare +pensare +grande +liberandosi +inutili +litigi +maio +luca +magistris +altro +pronti +battaglia +elezioni +regionali +primavera +già +amministratori +locali +lega +primo +partito +puntiamo +10mila +iscritti +piú +tardi +potrete +rivedere +intervento +pagina +🔴ma +roba +matti +bolzano +amministrata +pd +bande +spacciatori +vendono +cocaina +pieno +giorno +cielo +aperto +dicendo +possiamo +fare +quel +vogliamo +paese +libero” +altro +frattempo +governo +fa +riapre +porti +vuole +cancellare +decreti +sicurezza +salvini +cattivo +disumano +fascista” +tassa +plastica +costerà +milioni +anno +già +bloccato +investimenti +tanti +altri +imprenditori +pronti +tagli +licenziamenti +colpa +manovra +economica +folle +governo +distruggendo +italia +prima +andranno +meglio +paese +geni +lavoro +belle +frasi +osho +compagno +presidente +toscana +pd +satana +😱 +ormai +disperazione +pensano +davvero +mettere +tasse +auto +aziendali +zucchero +plastica +strage +negozi +aziende +decine +migliaia +posti +lavoro +governo +pd +5stelle +renzi +mettendo +rischio +intero +paese +follia +preghiera +pensiero +vigili +fuoco +morti +notte +abbraccio +famiglie +colleghi +feriti +onore +mette +gioco +propria +vita +salvare +altri +italia +piange +cima +pensieri +sempre +obiettivo +difendere +italia +ieri +oggi +domani +primagliitaliani +🇮🇹 +buonanotte +amici +voglio +bene +felice +orgoglioso +aver +contribuito +fare +storia +umbria +terra +meravigliosa +meritava +anni +sinistra +adesso +lavoro +amici +emiliani +romagnoli +gennaio +liberiamo +splendida +regione +renzi +pd +5stelle +😱 +colpa +governo +tasse +costerà +mandiamoli +casa +volta +tutte +emilia +romagna +26gennaiovotolega +stasera +tratto +bene +pomodorini +siciliani +rapanelli +lazio +olio +oliva +umbro +viva +italia +tavola +🇮🇹 +incapaci +mettono +rischio +migliaia +posti +lavoro +gettando +angoscia +migliaia +famiglie +distruggendo +industria +italiana +acciaio +vicenda +ex +ilva +drammatica +paese +altro +normale +presidente +consiglio +riferirebbe +subito +parlamento +spero +qualcuno +promesso +oltre +riapertura +porti +chiusura +acciaierie +fare +regali +qualcun +altro +‼ +grazie” +governo +pd +5stelle +renzi +diverse +aziende +già +pronti +migliaia +licenziamenti +solo +annuncio +manovra +economica +folle +fatta +tasse +tagli +altre +tasse +impoveriscono +paese +spero +vadano +casa +prima +possibile +italiani +possono +diretta +senato +commentare +ennesimo +disastro +governo +tasse +sbarchi +manette +scappare +proprietari +ilva +rischiano +lasciare +casa +decine +migliaia +operai +🔴 +governo +tasse +sbarchi +manette +scappare +proprietari +ilva +mettendo +rischio +lavoro +decine +migliaia +operai +futuro +industriale +paese +disastro +altro +dimissioni +unica +risposta +possibile +lega +chiede +conte +venga +urgentemente +riferire +parlamento +parlerò +sala +stampa +senato +verso +diretta +pagina +rimanete +collegati +amore +romani +pd +spingete +😃😃😃 +ministro +grillino +bonafede +cerchiamo +visto +popolo +salvini +professa +cattolico +” +parola +monsignor +mogavero +caspita +amici +conosce +giudicarvi +tale +sicurezza +tengo +stretta +fede +amore +figli +italia +amen +amici +emiliani +amici +romagnoli +segnatevi +data +𝗚𝗶𝗼𝘃𝗲𝗱𝗶̀ +𝗡𝗢𝗩𝗘𝗠𝗕𝗥𝗘 +lucia +borgonzoni +aspettiamo +𝗣𝗮𝗹𝗮𝗱𝗼𝘇𝘇𝗮 +𝗱𝗶 +𝗕𝗼𝗹𝗼𝗴𝗻𝗮 +impossibile +mancare +dovremo +essere +migliaia +altro +domenica +gennaio +libereremo +finalmente +splendida +regione +sinistra +basta +pd +emilia +romagna +📩𝘝𝘶𝘰𝘪 +𝘥𝘢𝘳𝘤𝘪 +𝘶𝘯𝘢 +𝘮𝘢𝘯𝘰 +𝘪𝘯 +𝘌𝘮𝘪𝘭𝘪𝘢 +𝘙𝘰𝘮𝘢𝘨𝘯𝘢 +𝘚𝘤𝘳𝘪𝘷𝘪 +𝘢 +𝘦𝘮𝘪𝘭𝘪𝘢𝘳𝘰𝘮𝘢𝘨𝘯𝘢 +𝘭𝘦𝘨𝘢𝘰𝘯𝘭𝘪𝘯𝘦 +𝘪𝘵 +presento +viceministro +grillino +trasporti +trovato +governo +pd +risposta +sempre +colpadisalvini +fantastici +😀😀😀 +onore +difende +confini +onore +sicurezza +libertà +🇮🇹 +disprezzo +complici +vigliacchi +traditori +piace +assicuro +gennaio +impegno +mandare +casa +sinistra +emilia +romagna +massimo +conto +sempre +26gennaiovotolega +buongiorno +buon +inizio +settimana +ricordo +domenica +regaliamo +☺️ +speriamo +governo +stanotte +inventi +tassa +neve😂 +intanto +poche +ore +sbarcando +quasi +immigrati +roba +matti +buona +domenica +amici +mollo +istituita +bella +commissione +sovietica +andate +rileggere +orwell +porro +smaschera +minuti +ipocrisia +dici +prima +italiani +accusano +razzismo +altro +fascismo +nazismo +ve +garantisco +bavaglio +mettere +interessante +sapere +tanti +sinistra +condannano +giustamente +idiozia +antisemitismo +opinione +riguardo +diritto +esistenza +stato +israele +guarda +caso +molti +spendono +mai +parola +po +tassano +aria +respiriamo +roba +matti +conte +renzi +maio +zingaretti +solo +chiacchiere +tasse +sbarchi +kompagno +vauro +dà +fastidio +mangi +pane +salame +ascoltare +credere +roba +matti +😀 +poi +stupiscono +sinistra +vota +nessuno +buon +pomeriggio +amici +diretta +festa +zucca +ziano +piacentino +piacenza +🎃 +lunga +vita +tradizioni +🇮🇹 +gennaio +scriveremo +pagina +storia +italiana +dopo +anni +libereremo +emilia +romagna +sinistra +riportando +centro +merito +tessera +partito +buonasera +amici +saluto +parma +pronti +fare +storia +emilia +romagna +intanto +oggi +pozzallo +arrivata +ocean +viking +passeggeri +mentre +altre +navi +giro +mediterraneo +pronte +fare +rotta +verso +italia +dopo +invito +viminale +ong +scatenano +ricomincia +pacchia +grazie +governo +sbarchi +tasse +manette +dopo +protesta +polizia +settimana +scorsa +ora +vigili +fuoco +scendono +piazza +governo +tasse +sbarchi +manette +incredibile +conte +renzi +maio +riescono +arrabbiare +proprio +secondo +lega +governo +sbarchi +crollati +fortuna +linea +politica +seria +rigorosa +italia +tornata +essere +rispettata +ora +invece +ong +vengono +invitate +viminale +ripropongo +intervista +berlinguer +rai +commentate +condividete +diretta +mercato +torpignattara +roma +ridotta +città +sporca +caotica +insicura +capitale +bisogno +rinascere +già +decine +migliaia +firme +raccolte +virginia +mestiere +raggidimettiti +buoni +rapporti +servi +nessuno +pd +5stelle +renzi +barattano +europa +zero +virgola +elasticità +conti +cambio +porti +aperti +sembra +mossa +intelligente +ecco +cosa +detto +poco +fa +rai +radio +esterrefatto +arroganza +renzi +zingaretti +conte +maio +trattano +italiani +dicono +vanno +accordo +nulla +vanno +elezioni +governo +paura +andare +altro +casa +vincere +lega +potranno +scappare +sempre +risultati +umbria +dimostrano +attesa +fare +storia +emilia +romagna +intervista +ieri +sera +bruno +vespa +rai +buona +serata +amici +navi +ong +straniere +cariche +immigrati +ricomincia +pacchia +sindaci +governatori +lega +diranno +no +ogni +nuovo +arrivo +clandestini +mentre +5stelle +perdono +pezzi +pd +perde +altro +voti +dico +ancora +grazie +gente +umbria +affetto +fiducia +coraggio +giovedì +novembre +aspetto +bologna😉 +buon +pomeriggio +roma +amici +oggi +lavoro +mandare +casa +governo +tasse +sbarchi +manette +vinto +punti +quindi +unico +dato +umbria +finalmente +cambia +attesa +mandare +casa +sinistra +emilia +romagna +prossimo +gennaio +ecco +intervista +radio24 +buona +serata +amici +ora +diretta +la7 +seguite +diretta +perugia +splendida +mattinata +seguite +diretta +grazie +grazie +grazie +sempre +prossimo +obiettivo +emilia +romagna +gennaio +ancora +diretta +perugia +soddisfazione +amici +lega +stravince +umbria +popolo +batte +palazzo +diretta +perugia +storica +serata +amici +governo +tasse +sbarchi +insulti +manette +domenica +umbria +arriverà +bella +lezione +coraggio +libertà +onestà +democrazia +info +legaonline +it +umbria +ripropongo +intervista +ieri +giorno +pecora +rai +radio +po +leggerezza +ogni +tanto +guasta +pensate +facebook +alcuni +protestato +conduttori +indegno +immorale +invitarmi +soliti +tolleranti +democratici +bacioni +😘 +diretta +terni +ultimo +incontro +lungo +stupendo +giro +umbria +messa +tutta +amici +domenica +tocca +minuti +tempo +croce +simbolo +lega +dopo +anni +liberiamo +magnifica +regione +seguiteci +diretta +domenicavotolega +diretta +città +castello +perugia +state +amici +😊 +domenicavotolega +aprite +rubrica +chiamate +inviate +messaggi +ogni +voto +conta +buon +pomeriggio +san +giustino +perugia +state +😊 +domenicavotolega +⚠ +vergognoso +diffondiamo +devono +vedere +finti +profughi +paesi +ormai +sicuri” +pur +rimanere +italia +fingono +gay +alcuni +moglie +figli +complicità +alcuni +avvocati +altro +mangioni +accoglienza +fregano +mani +farne +spese +pochi +scappano +davvero +guerre +persecuzioni +intanto +governo +tradimento +cosa +fa +riapre +porti +triplica +sbarchi +estende +centri +accoglienza +vedo +ora +riprendere +mano +paese +domenica +cominciamo +umbria +domenicavotolega +insieme +cittadini +fontivegge +quartiere +perugia +purtroppo +ostaggio +spacciatori +delinquenti +nessuna +tolleranza +verso +vende +morte +vorrebbe +droga +stato +molti +pagano +tasse +possono +farlo +qua +umbria +purtroppo +resto +italia +tanti +imprenditori +chiudendo +arrivano +fine +mese +infatti +governo +pd +5stelle +renzi +pronto +regalare +italiani +altre +tasse +follia +ecco +intervento +rai +radio1 +diretta +valfabbrica +perugia +mancano +solo +giorni +libereremo +umbria +state +amici +😉 +domenicavotolega +intervista +mattina +rai +pazienza +vuole +amici +😊 +saluto +bellissima +trevi +perugia +domenicavotolega +umbria +italia +soffia +aria +cambiamento +domenicavotolega +ancora +diretta +rocca +cencia +roma +provando +entrare +stabilimento +ama +raggidimettiti +rocca +cencia +roma +diretta +stabilimento +ama +società +gestisce +raccolta +trasporto +smaltimento +rifiuti +romani +raggidimettiti +anno +governo +potuto +dimostrare +volere +potere” +ultimi +sondaggi +dicono +lega +riceve +consenso +terzo +italiani +penso +pericolosi +estremisti +sbaglio +rivedete +insieme +me +intervista +rai +buona +serata +amici +🙂 +buongiorno +amici +seguitemi +diretta +mercato +piazza +epiro +roma +raggidimettiti +🔴scene +ordinaria +follia +quotidiana +purtroppo +quartiere +vasto +napoli +intanto +governo +apre +porti +contevergogna +italiani +sapranno +premiarvi” +già +domenica +umbria +ripropongo +intervista +mattina +la7 +myrta +merlino +buona +serata +amici +voto +domenica +decisivo +umbria +spedendo +sinistra +casa +dopo +anni +italia +mandando +segnale +politico +nazionale +forte +governo +tradimento +considera +piccola +poco +determinante +splendida +terra +ripropongo +intervista +mattina +rtl +ancora +grazie +splendida +piazza +roma +domenica +toccherà +umbria +tempo +galantuomo +vince +amici😊 +meno +mesi +governo +abusivo +riuscito +litigare +giorno +sì +altro +pure +triplicare +sbarchi +proporre +tasse +affitti +bibite +zuccherate +diesel +plastica +contante +bloccare +altro +leggi +educazione +civica +scuole +telecamere +asili +case +riposo +vedo +ora +arrivi +domenica +quando +umbri +potranno +finalmente +dare +sonora +lezione +geni +ecco +intervista +ieri +sera +giletti +diretta +festival +internazionale +cioccolato +perugia +😋 +seguiteci +oggi +roma +piazza +san +giovanni +fatto +provare +emozioni +nessuna +poltrona +nessun +ministero +potranno +mai +regalarmi +insieme +può +grazie +voglio +bene +orgoglioitaliano +it +conte +maio +tassano +bibite +biscotti +benzina +partite +iva +renzi +vuole +tornare +legge +fornero +grillo +vuole +togliere +diritto +voto +anziani +scemo +scemo +governo +piazza +san +giovanni +splendido +sole +aspetto +domani +marea +umana +pacifica +determinata😊 +diretta +orvieto +terni +incontro +tutela +forze +ordine +state +nuove +tasse +benzina +sigarette +elettroniche +bibite +zuccherate +seconde +case +tentativo +blocco +quota +nascosti +quasi +giornali +tivù +quasi +sbarchi +ultime +ore +contevergogna +vediamo +roma +piazza +san +giovanni +sabato +oggi +rai +ribadito +bastano +appelli +pace +governo +interviene +senza +cedere +ricatti +visto +erdogan +minacciato +aprire +porte +milioni +mezzo +immigrati +possiamo +dire +volta +tutte +eliminata +qualsiasi +ipotesi +adesione +turchia +unione +europea +diretta +montecastrilli +bello +fine +settimana +borghi +paesaggi +umbri +🇮🇹 +saluto +bellissima +foligno +guardate +piazza +vuole +male +😉 +avanti +tutta +27ottobrevotolega +giano +umbria +perugia +proseguono +tappe +fine +settimana +umbro +state +🇮🇹 +27ottobrevotolega +smettetela +storia +povero +pazzo +violento +giordano +esemplare +ascoltare +geni +governo +ri +spalancato +porti +cos +ottenuto +cambio +europa +zero +definiscono +buoni” +contrario +salvini +brutto +cattivo +razzista +coscienza +altro +responsabilità +aumento +partenze +maggiori +morti +ultimi +giorni +auguro +torni +indietro +anni +altrimenti +dramma +ecco +cosa +detto +mattina +canale +ieri +sera +floris +certo +annoiato +riguardate +commentate +😊 +buon +pranzo +amici +sempre +avanti +testa +alta +saluto +ferentillo +terni +amici +😊 +seguiteci +diretta +27ottobrevotolega +terni +pronti +fare +storia +ottobre +27ottobrevotolega +terni +carcere +sabbione +insieme +donne +uomini +polizia +penitenziaria +state +diretta +narni +terni +magnifica +umbria +pronti +mandare +sinistra +casa +27ottobrevotolega +intervista +aperta +sincera +ieri +sera +giletti +eccola +riapertura +porti +provoca +nuovi +morti +mediterraneo +sbarchi +triplicati +mafiosi +fuori +galera +governo +litiga +tasse +aumento +conte +fuga +buon +lunedì +amici +lavora +salvare +italia +abbraccio +trieste +mentre +conte +maio +renzi +passano +tempo +litigare +italia +soffre +vergognatevi +altro +ius +soli +formule +simili +cittadinanza +biglietto +luna +park +meditata +desiderata +risultato +percorso +integrazione +paese +penso +così +suggerisco +altro +governo +tasse +porti +aperti +occuparsi +vere +priorità +italia +ecco +cosa +detto +rai +radio +ancora +diretta +campidoglio +roma +raggidimettiti +italia +amare +proteggere +🇮🇹 +parte +traditori +chiusi +palazzo +altra +donne +uomini +paese +libero +abbracceremo +roma +ottobre +piazza +san +giovanni +tutte +info +www +legaonline +it +intervento +stamattina +rai +situazione +rifiuti +roma +sicuramente +colpa +marziani +sfortuna +raggi +sindaco +anni +so +amministratori +altro +agenzie +comunali +assessori +dirigenti +funzionari +consiglieri +cambiato +sembra +romani +milioni +italiani +stranieri +arrivano +rendano +conto +fatto +messa +così +male +ahimè +vivo +anch +capitale +mai +stata +bravissima +persona +sbagliato +mestiere +ora +romani +possano +scegliere +nuovo +sindaco +raccoglieremo +100mila +firme +dimissioni +partire +sabato +ottobre +piazza +san +giovanni +diretta +bastia +umbra +perugia +ottobre +andiamo +stra +vincere +27ottobrevotolega +dopo +merendine +chinotto +adesso +formaggi +prosciutti +italiani +serio +purtroppo +finire +tassate +pagando +errori +altrui +grazie +conte +amici +bruxelles +diretta +perugia +cva +ponte +san +giovanni +seguitemi +27ottobrevotolega +perugia +sempre +carcere +capanne +seguitemi +ricordate +tassa +monti +barche +punire +ricchi +aiutare +poveri +ricchi +andati +comprare +estero +mentre +operai +artigiani +perso +lavoro +pensare +oggi +massacrare +economia +nuove +tasse +semplicemente +folle +inviato +mare +messaggi +grazie +🙂 +no +comunque +offendo +dicono +vado +spiaggia +mutande +fine +lilli +gruber +trovo +sempre +bene +diverto +😊 +buona +visione +seguito +gruber +pare +essermela +cavata +dite +😊 +riguardate +commentate +condividete +buona +serata +amici +mettere +nuove +tasse +momento +crimine +tasse +sbarchi +sente +rappresentato +governo +abusivo +tradimento +appuntamento +roma +ottobre +ministro +ambiente +dice +colpiranno +agricoltori +pescatori +mezzi +vecchi +secondo +contadino +cambia +trattore +gode +magari +riesce +comprarsene +nuovo +roba +matti +molto +altro +parlato +ieri +notte +rai +ecco +intervista +governo +manicomio +oggi +litigando +crocifisso +scuole +ius +soli +aumento +iva +quota +nuove +tasse +incapaci +venduti +traditori +insieme +sabato +ottobre +ore +piazza +san +giovanni +roma +aspetto +saluto +attigliano +terni +state +27ottobrevotolega +stroncone +terni +ultima +tappa +umbra +giornata +felice +tornare +norcia +terra +tanto +sofferto +arrende +segui +diretta +forza +umbria +27ottobrevotolega +diretta +splendida +cascia +perugia +umbria +santuario +bellezza +straordinaria +state +27ottrobrevotolega +grazie +riccione +doveva +essere +tappa +improvvisata +alcuni +amici” +diventato +comizio +piedi +sedia +😊 +piace +cosí +sondaggi +saluto +riccione +romagna +lucia +borgonzoni +grazie +tantissimi +seguiteci +diretta +diretta +bologna +villaggio +coldiretti +sempre +fianco +agricoltori +produttori +mangiare +consumare +italiano +difendere +costi +eccellenze +🇮🇹 +diretta +viadana +oglio +po +mantova +rimanete +amici +felice +aver +partecipato +poco +fa +milano +iniziativa +amici +ente +nazionale +sordi +lasceremo +mai +soli +intervento +stamattina +amici +radio +crc +napoli +😊 +grande +mario +giordano +svela +dati +mano +numeri +incoerenze +sbarchi +immigrazione +giornaloni +dicono +vero +volto +governo +porti +aperti +italiani +perdoneranno +sbarchi +aumentati +meno +mese +tassa +merendine +gazzosa +revisione +quota +flat +tax +tranquilli +insieme +fermeremo +capito +fanno😉 +umbria +stelle +prima +denunciano +pd +arrestare +assessori +pd +poi +alleano +pd🤦‍♂ +basta +leggere +commenti +pagine +grilline +ottobre +credo +prenderanno +storica +mazzata +umbri +italiani +scemi +qualche +minuto +consiglio +intervento +ieri +sera +mario +giordano +state +pranzando +buon +appetito +amici +saluto +splendida +castiglione +lago +perugia +avanti +tutta +27ottobrevotolega +san +feliciano +splendido +lago +trasimeno +seguiteci +27ottobrevotolega +scambiando +parole +amici +passignano +trasimeno +perugia +😊 +ottobre +andiamo +vincere +27ottobrevotolega +vogliono +tassare +prelievi +banca +voli +merendine +bibite +gasolio +agricoltori +pescatori +governo +giorni +pensano +solo +penalizzare +italiani +roba +altro +matti +giudizio +popolo +arrivando +ancora +mese +cittadini +sentire +voce +partire +umbria +solo +inizio +ripropongo +intervista +nottambula +rai +radio +buona +serata +amici +😊 +sbarcati +ieri +settembre +messina +oggi +sbarcando +altri +grazie +governo +tradimento +porti +aperti +partiranno +sbarcheranno +altro +persone +rischieranno +morire +altro +rotazione +volontaria” +porti +purtroppo +ritornare +italia +campo +profughi +europa +ascoltate +favore +condividete +molliamo +porti +riaperti +sbarchi +aumento +tassa +merendine +gasolio +agricoltori +pescatori +bigiate +massa +autorizzate +ministro +ius +soli +tassa +soldi +prelevati +banca +abusivi +governo +diretta +splendido +salone +nautico +genova +🇮🇹 +seguitemi +contentissimo +essere +andato +ieri +sera +barbara +urso +canale +boom +ascolti +tanti +nuovi +amici +social +tanto +interesse +parte +segue +meno +politica +poi +divertito +credo +difeso +abbastanza +bene +😊 +buon +pranzo +amici +ripropongo +frizzante +oretta +fatta +sera +canale +inaspettate +sorprese +😉 +grazie +fate +me +amici +ragazzo +fortunato +sempre +serena +notte +❤️ +buonasera +amici +diretta +festa +lega +chiuduno +bergamo +state +ricordando +straordinari +abbracci +pontida +splendida +comunità +❤ +ripropongo +intervento +integrale +ieri +amici +atreju +ringrazio +ancora +ospitalità +buona +serata +amici +oggi +gazebo +incontri +lega +piazze +italiane +pd +5stelle +chiusi +palazzi +mezzo +gente +bello +essere +liberi +🔴trova +gazebo +legaonline +it +gazebo +firma +salvininonmollare +it +sbarchi +fuori +controllo +centri +accoglienza +collasso +lampedusa +tornati +indietro +anni +ricordo +decreti +sicurezza +vigore +prevedono +ministri +interno +altro +infrastrutture +difesa +firmino +divieto +accesso +ong +acque +nazionali +governo +folle +deciso +optare +porti +aperti +pessimo +segnale +italiani +ricorderanno +quando +presenterà +conto +urne +passi +mercato +gualdo +tadino +perugia +seguitemi +live +27ottobrevotolega +dopo +anni +balle +tradimenti +pugnalate +cercare +rimanere +aggrappato +potere +renzi +ancora +coraggio +parlare +altro +italia +viva +chiamato +poltrona +viva +stato +linea +personaggio +pazienza +vuole +amici +governo +opposizione +qualche +giornalista +musica +cambia +mai +colpa +sempre +solo +salvini +rispondo +sorriso +vado +avanti +😊 +prima +volta +anno +mezzo +tornano +aumentare +sbarchi +pazzi +pazzi +pericolosi +insieme +fermeremo +renzi +conte +zingaretti +maio +milioni +italiani +ostaggi +gruppo +signori” +incollati +poltrone +storia +fortuna +energia +pulita +popolo +sempre +sconfitto +giochi +potere +altro +palazzo +cittadini +sindaci +governatori +italiane +italiani +liberi +sabato +ottobre +vediamo +roma +bellissima +piazza +san +giovanni +costruire +futuro +fondato +lavoro +sicurezza +onesta +libertà +sono😊 +onore +dignità +valgono +poltrone +grazie +affetto +fiducia +porro +scatenato +alleanza +pd +stelle +regioni +🙂 +dopo +anni +sinistra +umbria +voglia +cambiare +trucco +palazzo +possa +evitarlo +convinto +27ottobrevotolega +ripropongo +intervento +oggi +pontida +ancora +grazie +enorme +cuore +esserci +sempre +voglio +bene +andiamo +vincere +❤️ +braccia +straordinario +popolo +pontida +ecco +intervento +emozione +grazie +pontida +🔝🇮🇹 +pronto +pontida +poco +diretta +palco +diretta +pontida +poco +cominciamo +state +ripropongo +intervento +oggi +assemblea +amministratori +lega +italiavera +vincerà +sempre +italia +palazzi +giochini +inciuci +ieri +sera +paolo +debbio +rete +record +ascolti +ricevuto +tantissimi +messaggi +sostegno +invito +mollare +ve +garantisco +squadra +lega +piú +determinata +mai +governo +altro +aspetta +telefonatine +berlino +parigi +bruxelles +dignità +italia +tornerà +presto +essere +guidata +italiani +occhio +quasi +guarito +riguarda +italia +lavorando😉 +orvieto +bello +fate +me +passi +bancarelle +mercato +☀️ +27ottobrevotolega +buonasera +amici +spello +perugia +insieme +ottobre +cambia +umbria +state +ministro +onore +lealtà +valgono +mille +poltrone +pali +luce +capito +unica +motivazione +governo +paura +perdere +poltrona +andare +casa +altro +ripropongo +intervista +ieri +sera +bruno +vespa +tantissimi +davanti +schermo +fino +tarda +ora +grazie +ripropongo +intervento +oggi +senato +pensano +fermarci +sbagliano +grosso +andiamo +avanti +spediti +mai +piazza +dopo +piazza +città +dopo +città +regione +dopo +regione +vinceremo +🇮🇹 +intervento +ora +diretta +senato +amici +tempo +seguite +commentate +ripropongo +intervento +mattina +davanti +splendido +popolo +rassegna +governo +straniero +benedetto +berlino +bruxelles +parigi +italia +comandano +italiani +italia +rialzerà +presto +testa +ve +garantisco +🇮🇹 +possono +sprangare +portone +montecitorio +bloccare +gente +vie +laterali +invidio +chiuso +palazzo +pensando +solo +spartirsi +poltrone +maggioranza +italiani +altro +pensate +tanti +giornali +telegiornali +detto +stamattina +piazza +gatti +rispetto +mici +girare +rete +finché +lasciano +libera +🔴segui +live +camera +intervento +presidente +deputati +lega +riccardo +molinari +primagliitaliani🇮🇹 +🔴 +intervento +integrale +condividi +diretta +roma +persone +vere +libere +piazza +batteranno +sempre +poltronari +inciucio +rinchiusi +palazzo +conto +pagare +arriverà +salato +verranno +cacciati +sempre +primagliitaliani +🇮🇹 +prima +parte +interverrò +poco +successivo +live +😊 +diretta +roma +persone +vere +libere +piazza +batteranno +sempre +poltronari +inciucio +rinchiusi +palazzo +conto +pagare +arriverà +salato +verranno +cacciati +sempre +primagliitaliani +🇮🇹 +saluto +cento +ferrara +insieme +lucia +borgonzoni +spettacolari +state +diretta +diretta +vignola +modena +nonostante +comizio +improvvisato +domodossola +vco +spettacolo +molla +fidatevi +amici +combatte +insieme +poi +vince +primagliitaliani +🇮🇹 +san +gemini +terni +ottobre +storia +umbria +avanti +tutta +amici +🇮🇹 +diretta +san +gemini +terni +umbria +donatella +tesei +ottobre +andiamo +vincere +state +🔴 +diffondiamo +possibile +vergogna +ascoltate +denuncia +governatore +friuli +venezia +giulia +massimiliano +fedriga +nuovo +governo +sinistra +targato +conte +pd +5stelle +altro +leu +già +impugnato +prime +leggi +favorendo +immigrati +clandestini +andando +italiani +pessimo +inizio +però +fermiamo +livello +locale +regionale +nazionale +andiamo +avanti +treni +nome +prima +italiani +🇮🇹 +punto +record +ministri +poltrone +competenze +poche +paura +voto +tanta +già +lavoro +amici +potranno +scappare +italiani +lungo +frattempo +limitiamo +danni +prepariamo +tornare +vincere +mollo +stelle +rivoluzione +casta +ammucchiata +pd +giustizia +lavoro +tasse +immigrazione +accordo +nulla +eccetto +cosa +sfuggire +costi +giudizio +elettori +arriverà +ecco +intervista +mattina +rai +buon +pranzo +amici +governo +no +poltrone +lontano +potranno +scappare +elezioni +vere +infinito +italia +merita +meglio +prepariamo +ripropongo +intervista +ieri +sera +paolo +debbio +festa +lega +alzano +lombardo +bergamo +ancora +grazie +migliaia +migliaia +persone +intervenute +stati +fantastici +date +forza +incredibile +❤️ +ripropongo +intervista +mattina +radio24 +italiani +rappresenta +nuovo +governo +🤔 +nome +conservazione +potere +scende +patti +pd +boschi +permetto +entrare +dibattito +altrui +me +sempre +mai +pd +diretta +festa +alzano +lombardo +bergamo +paolo +debbio +state +🇮🇹 +merkel +prende +sonora +batosta +elezioni +regionali +casa +prova +imporre +governo +italia +conte +bis +merkel +macron +ex +avvocato +popolo +oggi +candidamente +altro +stelle +quasi +fa +finta +conoscerli +rivendicando +aver +sempre +votato +sinistra +eccetto +solo +candidato +ministro” +roba +matti +smascherati +presto +tardi +elettori +cacceranno +italia +decidono +italiani +spettacolare +grazie +amici +bergamaschi +diretta +pinzolo +trento +seguitemi +conselve +sondaggi +contano +😉 +seguiteci +diretta +pd +prima +poltrone” +sempre +prima +italiani” +sempre +forza +amici +potranno +scappare +voto +infinito +pronto +determinato +mai +conto +governicchio +fondato +unicamente +poltrone +odio +vita +lunga +prima +poltrone +ora +sempre +primagliitaliani +🇮🇹 +buon +pomeriggio +amici +rimanete +collegati +poco +aggiorno +diretta +quirinale +altro +responsabili” +parlamentari +pensano +solo +difendere +poltrona +giorni +litigano +spartirsi +ministeri +paura +voto +italiani +no +libere +elezioni +subito +italia +riparte +possono +scappare +voto +po +tempo +prima +poi +parola +tornerá +italiani +🇮🇹 +diretta +senato +state +promesso +dato +nessun +permesso +sbarco +italia +immigrati +bordo +ocean +viking +prima +sicurezza +italiani +ovviamente +mai +pd +buon +pomeriggio +amici +rimanete +diretta +poco +aggiorno +quirinale +ora +diretta +piazza +montecitorio +ong +open +arms +altro +sbarco +altro +processo +paura +orgoglioso +difendere +confini +sicurezza +paese +amici +qualche +minuto +ecco +intervista +radio +governo +salvare +poltrona +lega +dice +no +seconda +parte +fa +troppo +caldo +telefono😊 +saluto +volo +poi +lavoro +prima +parte +spagna +apre +porti +immigrati +ong +open +arms +bene +dura +vince +ministri +passato +firmato +bloccare +sbarchi +oggi +detto +no +coincidenze +amor +dio +certo +strano +cavallo +ferragosto +lavora +riaprire +rubinetti +altroimmigrazione +clandestina +qualcuno +pensa +farmi +dispiacere +sbaglia +grosso +danno +fa +italiani +italia +ferragosto +dedicato +castel +volturno +caserta +comitato +nazionale +ordine +sicurezza +pubblica +ecco +risultati +oltre +anno +lavoro +viminale +buonasera +spezia +amici +molla +state +diretta +buon +pomeriggio +recco +amici +po +aggiornamenti +live +accadendo +navi +ong +no +arrendo +italia +tornerà +essere +campo +profughi +europa +intervista +oggi +rtl +qualche +minuto +buon +pomeriggio +amici +ripropongo +intervento +senato +avanti +taglio +parlamentari +senza +esitazioni +già +prossima +settimana +poi +votosubito +parola +italiani +🇮🇹 +simpaticissimi +rumori +fondo +interruzioni +urlanti +amici +pd +😊 +poco +parlo +senato +aspetto +tanti +sentirete +cose +interessanti +altro +renzi😊 +paura +elezioni +teme +tornare +parlamento +lega +pronta +ora +tocca +italiani +decidere +ripropongo +intervento +sera +siracusa +durante +diretta +saltava +segnale +video +stati +sabotatori +comunisti +😊 +catania +seguitemi +sempre +live +soverato +state +voglio +dare +italiani +governo +stabile +serio +prossimi +anni +giochi +palazzo +solamente +elezioni +parola +italiani +🇮🇹 +saluto +incantevole +policoro +perla +lucana +mar +jonio +tantissimi +seguite +diretta +seconda +parte +diretta +splendida +polignano +mare +seguiteci +buona +serata +amici +avanti +tutta +💪🇮🇹 +peschici +foggia +state +termoli +campobasso +state +seconda +parte +termoli +campobasso +state +prima +parte +buona +serata +pescara +amici +state +diretta +diretta +sabaudia +latina +seguitemi +amici +diretta +festa +lega +arcore +monza +brianza +spettacolo +state +me +nuovo +diretta +sala +stampa +viminale +termine +incontro +parti +sociali +seguitemi +diretta +viminale +piccola +pausa +incontro +parti +sociali +aggiorno +diretta +senato +seguitemi +diretta +fiera +san +fermo +nerviano +milano +state +seguitemi +diretta +festa +lega +colico +lecco +seguitemi +diretta +festa +lega +cervia +paraggi +aspetto +amici +ripropongo +intervista +oggi +skytg24 +dite +andato +milano +marittima +presentazione +festa +lega +romagna +seguiteci +diretta +può +colpire +volte +coltello +ragazzo +anni +cellulare +euro +spero +assassini +mario +vengano +beccati +mandati +carcere +vita +lavori +forzati +troppo +comodo +uccidere +poi +stare +comodi +lettino +ecco +intervento +mattina +rai +caldo +fa +golasecca +varese +seguitemi +diretta +minori +stranieri +scomparsi +mila +mentre +fermi +mila +persone +dimostrando +approccio +rigoroso +evita +tante +fughe +contiamo +continuare +strada +altro +azzerare +sparizioni +stranieri +italiani +ecco +intervento +mattina +montecitorio +relazione +commissario +straordinario +persone +scomparse +diretta +camera +insieme +ministro +famiglia +alessandra +locatelli +solo +bibbiano +ecco +tutte +proposte +lega +difesa +bambini +famiglie +seguiteci +chiacchiere +pd +rispondiamo +italia +sì +sbloccati +oggi +miliardi +euro +opere +pubbliche +strade +scuole +ospedali +ferrovie +altri +cantieri +mentre +parlano +lavoriamo +grazie +amici +diretta +prefettura +firenze +firma +protocollo +attuazione +regione +toscana +numero +unico +emergenza +europeo +state +me +sera +adro +davvero +tantissimi +tempo +voglia +ecco +intervento +penso +essere +stato +chiaro +buonanotte +amici +giornate +intense +molla +sempre +solo +primagliitaliani🇮🇹 +grazie +governo +insultatissimo +ministro +interno +ridotto +sbarchi +chiuso +centri +accoglienza +salvato +vite +risparmiato +soldi +assunto +poliziotti +italia +tornata +essere +altro +paese +rispettato +europa +mondo +vado +orgoglioso +🇮🇹 +ecco +intervista +ieri +sera +rete +mario +giordano +dichiarazioni +poco +fa +helsinki +penso +essere +stato +chiaro +sempre +diretta +gattile +cimitero +monumentale +verano +😊 +ora +diretta +gattile +cimitero +monumentale +verano +🐈 +state +me +ℹ️ +sosanimali +viminale +interno +it +‼ +pazzesco +girare +seawatch +open +arms +molti +altri +contatto +scafisti +chiamate +messaggi +segnalazioni +scafista +svela +apertamente +rapporto +navi +ong +altro +carola +ripetiamo +anni +difende +ong +alimenta +business +immigrazione +clandestina +filmato +dimostra +ancora +volta +quei +parlamentari +vanno +dormire +imbarcazioni +fuorilegge +mollo +amici +portichiusi +diretta +viminale +dopo +incontro +parti +sociali +giornata +ascolto +confronto +proposte +crescita +paese +assieme +sigle +sindacali +associazioni +categoria +state +me +nessuna +tolleranza +nessuno +sconto +violenti +occupano +incendiano +attaccano +forze +ordine +stabile +pericolante +immigrati +centri +sociali +barricate +mettono +rischio +incolumità +donne +bambini +cittadini +romani +italiani +meritano +legalità +recuperando +anni +assenza +saluto +diretta +piazza +sassuolo +buona +serata +amici +😊 +ferrara +ringraziando +cittadini +dopo +settant +anni +sinistra +deciso +dare +fiducia +sindaco +lega +seguiteci +diretta +😊 +ecco +sintesi +lunga +intensa +settimana +buonanotte +amici +😊 +recuperati +soldi +polizia +adesso +bisogna +intervenire +favore +vigili +fuoco +promesso +lega +molla😊 +diretta +senato +seguitemi +insulti +rispondiamo +fatti +codice +rosso +legge +entro +luglio +salvando +tante +donne +vittime +violenza +dovranno +essere +ascoltate +giudice +entro +giorni +denuncia +castrazione +chimica +pedofili +stupratori +altro +passo +avanti +verso +civiltà +diretta +mineo +catania +seguitemi +caltagirone +appena +inaugurato +nuovo +commissariato +polizia +stato +doveva +essere +centro +ospitare +minori +stranieri +accompagnati +fortunatamente +grazie +netta +riduzione +sbarchi +adesso +uomini +donne +forze +ordine +pronte +occuparsi +sicurezza +tace +piega +testa +muore +ogni +volta +fa +parla +cammina +testa +alta +muore +volta +sola +” +giovanni +falcone +arrendo +difesa +italiani +ieri +oltre +cibo +coperte +stati +consegnati +litri +acqua +potabile +barca +centri +sociali +altrettanti +stati +successivamente +rifiutati +pur +infrangere +legge +altro +sciacalli +mettono +rischio +vita +immigrati +bordo +rimarranno +impuniti +paese +serio +arresti +sequestro +mezzo +immediati +giudici +stavolta +nave +ong +tedesca +chiede +sbarco +italia +ovviamente +detto +no +sempre +giudice +decida +contrario +diretta +milano +villaggio +coldiretti +seguitemi +settimana +impegnativa +sempre +battaglia +ecco +sintesi +buona +notte +amici +ancora +diretta +trieste +nettuno +dopo +aver +sperimentato +taser +seguitemi +altra +sera +ora +tarda +intervenuto +microfoni +rai +radio +voglia +ecco +intervista +😊 +diretta +festa +lega +cantù +buona +serata +amici +😊 +mentre +pd +fenomeni +andando +seawatch +zitti +scandalo +affidi +illeciti +reggio +emilia” +esemplare +ascoltare +galera +rischiato +uccidere +militari +italiani +servizio +sequestro +blocco +nave +pirata +maximulta +ong +allontanamento +immigrati +bordo +tanta +pena +complici” +sinistra +giustizia +fatta +indietro +torna +settimana +intensa +continuo +continuerò +dare +massimo +garantire +dignità +confini +futuro +italia +mollo +buonanotte +amici +me +vicenda +concluderebbe +sequestro +nave +arresto +espulsione +equipaggio +trasferimento +immigrati +altri +stati +europei +vorrei +dedicare +tutte +energie +lotta +altro +mafia +senza +perdere +tempo +associazioni +private +straniere +decidono +infrangere +legge +italiana +ecco +cosa +detto +mattina +rai +solo +italia +politici +vanno +bordo +nave +fregata +leggi +‬ +‪i +membri +equipaggio +vanno +arrestati +punto +‬ +‪ho +scritto +collega +olandese +risposto +altro +voglio +fare +figura +fesso +grande +paese +prende +lezioni +nessuno +‬ +‪ecco +intervista +ieri +sera +paolo +debbio +credo +essere +stato +chiaro +‬ +diretta +genova +luogo +demolizione +ponte +morandi +diretta +treviglio +bergamo +caldo +fa +😊 +salvini +chiama +sbruffoncella +detto +peggio +delinquente +merita +galera” +lotta +porro +ascoltare +👍 +diretta +viminale +dopo +comitati +nazionali +ordine +sicurezza +pubblica +calabria +puglia +state +me +immigrazione +può +essere +gestita +navi +fuorilegge +pronti +bloccare +qualunque +tipo +illegalità +sbaglia +paga +europa +assente +sempre +ieri +sera +ribadito +berlinguer +scappa +davvero +guerra +arriva +aereo +corridoi +umanitari +dà +3mila +dollari +scafisti +arrivare +via +mare +alimentando +traffico +uomini +armi +droga +italia +entra +punto +giornate +intense +molliamo +avanti +tutta +bene +italiani +🇮🇹 +buonanotte +amici +diretta +milano +italia +migliori +lavoratori +migliori +imprenditori +mondo +torniamo +farli +correre +shock +fiscale +meno +burocrazia +giustizia +veloce +festivallavoro +mattina +intervenendo +scuola +perfezionamento +forze +polizia +ribadito +soddisfazione +andare +estero +ricevere +complimenti +modello +organizzativo +cooperativo +altro +forze +sicurezza +italia +eccellenza +dobbiamo +andare +fieri +ministro +dico +grazie +parti +migliori +paese +qualche +minuto +stare +insieme +voi😊 +casa +bianca +dopo +incontro +vicepresidente +americano +mike +pence +seguitemi +🇮🇹🇺🇸 +ora +diretta +villa +firenze +residenza +ambasciatore +italiano +seguite +🇮🇹🇺🇸 +cimitero +arlington +washington +deposizione +corona +fiori +tomba +milite +ignoto +salviniusa🇮🇹🇺🇸 +diretta +washington +lincoln +memorial +🇮🇹🇺🇸 +washington +amici +nottambuli +italia +seguitemi +settimana +intensa +molla +buonanotte +amici +😊 +diretta +camera +state +me +tiri +schiaffi +multa +paese +muovendo +allora +qualcuno +può +venire +dubbio +voglia +mettere +mani +aziende +italiane +ieri +sera +bruno +vespa +credo +aver +parlato +chiaro +voglia +rivedete +insieme +me +🔴 +decreto +sicurezza +bis +approvato +seguitemi +ora +diretta +palazzo +chigi +intervista +ieri +barbara +urso +buon +pranzo +amici +settimana +entusiasmante +grazie +amici +affetto +vale +cento +sondaggi +fine +settimana +tantissimi +comuni +fa +storia +conto +domenicavotolega +🇮🇹 +eccomi +biella +seguitemi +domenicavotolega +🇮🇹 +ripropongo +intervista +ieri +sera +paolo +debbio +piacerà +😊 +diretta +paderno +dugnano +poi +biella +ferma +perduto +venerdì +pomeriggio +sole +romano +lombardia +bergamo +☀️ +state +prato +marea +strette +mano +consigli +qualche +foto +emozioni +state +migliaia +giudici +obiettivamente +proprio +lavoro +strano +qualcuno +partecipi +convegni +pro +immigrazione +favore +porti +aperti +grido +nessuno +clandestino +” +poi +giudichi +operato +ministero +temi +credete +ecco +cosa +detto +mattina +canale +buonasera +splendida +orvieto +seguitemi +domenicavotolega +🇮🇹 +buon +pomeriggio +amici +ora +diretta +foligno +splendida +umbria +seguitemi +domenicavotolega +🇮🇹 +ascoli +avanti +tutta +diretta +ascoli +piceno +celebrazione +anni +fondazione +carabinieri +onore +donne +uomini +arma +🇮🇹 +buonasera +forlì +amici +avanti +tutta +💪 +domenicavotolega +🇮🇹 +argenta +ferrara +ferma +perduto +segue +diretta +mirandola +modena +sostenere +candidato +sindaco +lega +vista +ballottaggi +domenica +caldo +fa +🔥🔥🔥 +domenicavotolega +intervista +stamattina +rtl +emergenza +tasse +lavoro +economia +serve +accelerare +dire +tanti +sí +lega +saluto +castelfranco +emilia +☀️ +seguite +domenicavotolega🇮🇹 +porto +mantovano +seguite +domenicavotolega🇮🇹 +diretta +san +bonifacio +verona +seguitemi +amici +9giugnovotolega +🇮🇹 +felice +inaugurare +primo +tratto +superstrada +pedemontana +veneta +viaggiare +velocemente +tantissimi +lavoratori +camionisti +imprenditori +seguitemi +diretta +ora +civitavecchia +sostenere +candidato +sindaco +grazieeee +9giugnovotolega +diretta +fori +imperiali +roma +🇮🇹 +festadellarepubblica +grazie +grazie +ancora +grazie +rivivete +insieme +me +emozioni +settimana +indimenticabile +orgoglioso +fiducia +milioni +italiani +dato +lega +portandola +essere +prima +altro +forza +politica +solo +italia +tutta +europa +metterò +tutta +insieme +squadra +ripagare +consenso +straordinario +commovente +buonanotte +amici +voglio +bene +❤️ +ora +campobasso +sostegno +candidato +sindaco +ballottaggio +seguitemi +9giugnovotolega +primagliitaliani +🇮🇹 +sempre +diretta +potenza +9giugnovotolega +primagliitaliani +🇮🇹 +diretta +casoria +napoli +state +9giugnovotolega +primagliitaliani +🇮🇹 +bella +intervista +ieri +sera +rete +paolo +debbio +guardate +condividete +piacerà +buon +pranzo +amici +porterò +discussione +flat +tax +imprese +famiglie +prossimo +consiglio +ministri +taglio +tasse +burocrazia +pace +fiscale +infrastrutture +sviluppo +solo +così +italia +può +tornare +correre +merita +seconda +potenza +industriale +europea +parlato +conferenza +stampa +oggi +senato +diretta +senato +state +me +buona +serata +amici +pronte +proposte +lega +tagliare +tasse +burocrazia +solo +italia +cresce +lavora +aiuta +europa +rinascere +voglio +italia +cresce +anni +assurde +regole +europee +fatto +aumentare +debito +disoccupazione +voglio +usare +consenso +italiani +abbassare +tasse +imprese +famiglie +paese +torna +respirare +crescere +🇮🇹 +ecco +cosa +detto +ieri +sera +nicola +porro +ministero +interno +sempre +lavoro +italiani +🇮🇹 +state +me +dopo +grazie +italiani +fiducia +lavoro +ridurre +tasse +aumentare +sicurezza +riportare +europa +investire +giovani +lavoro +coraggio +idee +chiare +futuro +appartiene +ripropongo +intervista +ieri +studi +skytg24 +ancora +poco +storia +pronti +domenicavotolega +intervista +ieri +microfoni +rtl +eccola +😊 +domenicavotolega +domenica +pronto +scrivere +storia +votando +lega +intervento +poco +fa +pomeriggio +andato +domenica +grazie +italia +rialza +testa +domenicavotolega +diretta +milano +poco +onda +urso +canale +pronti +domenica +tessera +elettorale +😊 +vercelli +ferma +perduto +domenicavotolega +voglio +generazioni +tempo +determinato +muoiono +precariato +europa +bisogna +ripartire +nome +lavoro +riduzione +tasse +serve +italia +europa +molto +altro +parlato +mattina +rai +guardate +diretta +galliate +seguitemi +amici +domenicavotolega +novi +ligure +alessandria +tanti +amici +piemontesi +primalitalia🇮🇹 +domenicavotolega +ieri +sera +insieme +me +bruno +vespa +giuseppe +ingegnere +meccanico +scegliendo +andare +pensione +quota +ripreso +vita +lasciando +posto +giovane +meno +anno +altro +governo +restituito +dignità +lavoro +futuro +italia +maggio +contiamo +farlo +europa +rivedete +intervista +insieme +me +ora +diretta +palermo +intervento +cerimonia +commemorazione +stragi +capaci +via +amelio +giovanni +falcone +paolo +borsellino +tutte +vittime +mafia +sempre +altro +mente +cuore +dimenticare +continuare +lottare +estirpare +cancro +paese +lamafiamifaschifo +oggi +radio +quei +curiosoni +giorno +pecora +verso +addormentati +meglio +fare +rai +bruno +vespa +puntata +interessante +😊 +intervista +ieri +sera +bianca +berlinguer +rai +credo +essermela +cavata +😉 +diretta +splendida +putignano +bari +seguite +domenicavotolega +🇮🇹 +primalitalia +altra +sera +nicola +porro +ribadito +professo +fede +testimoniando +voglio +paese +rispettano +regole +prossimo +tuo” +aiutare +spesso +arriva +altra +parte +mondo +italiano +vive +pianerottolo +fianco +casa +ecco +intervista +domenicavotolega +state +me +diretta +canile +sanitario +bari +preparando +provvedimenti +premiare +canili +gattili +combattono +randagismo +altri +rendere +aspre +pene +maltratta +abbandona +animali +🐶 +certo +pallottola +calibro +busta +fermare +lavoro +sorrido +perdono +difendo +italiani +pronti +votare +lega +domenica +adesso +gioia +colle +vicino +bari +bel +sole +tanti +sorrisi +vuole +male +seguitemi +domenicavotolega +primalitalia🇮🇹 +diretta +ostuni +domenicavotolega +diretta +splendida +lecce +pensiero +cittadini +pugliesi +spaventati +terremoto +mattina +26maggiovotolega +primalitalia🇮🇹 +diretta +prefettura +lecce +firma +patto +sicurezza +urbana +state +me +decreto +sicurezza +bis +combattere +camorristi +spacciatori +scafisti +fondo +difendere +anziani +truffati +pene +severe +abbandona +maltratta +animali +telecamere +asili +case +riposo +altro +nave +ong +finalmente +sequestrata +comandante +indagato +favoreggiamento +immigrazione +clandestina +avanti +grazie +sostegno +maggio +cambia +europa +domenicavotolega +catechismo +chiesa +cattolica +dice +accoglienza +limiti +possibile” +ecco +certe +periferie +italiane +credo +limite +possibile” +stato +ampiamente +superato +molto +altro +parlato +mattina +la7 +coffee +break +credo +essere +stato +abbastanza +efficace +commentate +bella +italia +richiede +tutela +ambiente +battaglia +credo +moltissimo +combattuta +senza +istinti +talebani +ecologismo +salotto +ora +diretta +roma +assemblea +alis +futuro +trasporto +ora +diretta +roma +amici +confartigianato +presentare +iniziativa +pene +piú +severe +delinquenti +truffano +anziani +state +me +porti +chiusi +vuol +dire +sbarchi +ridotti +meno +reati +meno +problemi +meno +sprechi +meno +donne +bambini +morti +mare +qualcuno +nostalgia +porti +aperti +sostenete +mollo +indietro +torna +buonasera +splendida +firenze +odio +centri +sociali +rispondiamo +sorriso +piazza😊 +seguitemi +diretta +26maggiovotolega +primalitalia +🇮🇹 +ecco +realtà +piazza +duomo +telegiornali +fatto +vedere +immagini +forti +tutte +bugie +lega +domenicavotolega +stavoltavotolega +🇮🇹 +ora +diretta +sassuolo +molla +26maggiovotolega +buongiorno +amici +saluto +valeggio +😊 +26maggiovotolega +intervento +oggi +piazza +duomo +grazie +grazie +grazie +26maggiovotolega +primalitalia +milano +grazieeee +diretta +milano +piazza +duomo +spettacolooo +state +26maggiovotolega +🇮🇹 +milano +pronto +ecco +immagini +ora +piazza +duomo +arrivoooo +poco +diretta +26maggiovotolega +attesa +vedervi +piazza +duomo +ecco +intervista +ieri +sera +rai +26maggiovotolega +🇮🇹 +diretta +milano +assemblea +nazionale +confagricoltura +seguite +intervista +mattina +radio +crc +napoli +vado +sempre +grande +piacere +viva +mezzi +informazione +locali +ripropongo +intervista +ieri +sera +rete +paolo +debbio +leggo +commenti +sempre +diretta +milano +forum +lapresse +seguite +seconda +parte +sempre +diretta +milano +forum +lapresse +seguite +prima +parte +eccomi😊 +maggio +insieme +cambiamo +storia +europa +diretta +milano +incontro +stampa +estera +state +me +diretta +prefettura +napoli +dopo +comitato +ordine +sicurezza +pubblica +seguitemi +diretta +potenza +basilicata +molla +millimetro +26maggiovotolega +primalitalia +🇮🇹 +sabato +milano +piazza +duomo +ore +importante +esserci +scriviamo +insieme +storia +conto +diretta +san +severo +foggia +lega +puglia +sempre +forte +me +enorme +soddisfazione +grazie +26maggiovotolega +buona +serata +campobasso +amici +strapieno +lega +voglia +seguiteci +26maggiovotolega +primalitalia🇮🇹 +pioggia +veroli +frosinone +fermiamo +state +26maggiovotolega🇮🇹 +diretta +senato +presentazione +libro +molto +interessante +carlo +nordio +ex +procuratore +venezia +seguiteci +torna +emilia +stasera +diretta +carpi +modena +seguitemi +amici +26maggiovotolega +primalitalia🇮🇹 +diretta +san +bonifacio +verona +seguitemi +26maggiovotalega +diretta +negrar +verona +seguite +26maggiovotolega +primalitalia +🇮🇹 +saluto +splendida +terra +veneta +diretta +arzignano +vicenza +26maggiovotolega +primalitalia +🇮🇹 +diretta +schio +vicenza +seguitemi +dopo +lombardia +adesso +veneto +diretta +legnago +verona +ferma +perduto +💪 +26maggiovotolega +primalitalia +🇮🇹 +penso +essere +stato +abbastanza +chiaro +mattina +radio +ecco +intervista +diretta +montichiari +brescia +sempre +avanti +seguiteci +26maggiovotolega +primalitalia +🇮🇹 +diretta +lumezzane +valtrompia +brescia +seguitemi +26maggiovotalega +finalmente +ruspe +palazzoni +spaccio +criminalità +zingonia +bergamo +seguite +diretta +tortona +alessandria +ultima +piazza +giornata +stupenda +liguria +piemonte +seguiteci +live +buona +serata +amici +26maggiovotolega +💪💪💪 +oggi +annunziata +rai +😊 +prego +guardare +visto +pazienza +rallegrerete +capirete +maggio +lega +prenderà +valanga +voti +😎💪 +ancora +provincia +cuneo +diretta +splendida +piazza +bra +ferma +diretta +fossano +cuneo +piazza +stupenda +seguitemi +sanremo +solo +sorrisi +😊 +26maggiovotolega +primalitalia +🇮🇹 +stata +settimana +me +particolarmente +impegnativa +intensa +sempre +comunque +bella +affetto +sostegno +date +nord +sud +buona +notte +amici +☺️ +arrivo +decreto +sicurezza +ancora +fondi +forze +ordine +sicurezza +italiani +ecco +cosa +detto +poco +fa +napoli +ringraziando +nuovamente +donne +uomini +divisa +arrestato +quell +infame +sparato +piccola +noemi +diretta +catanzaro +splendida +calabria +state +🇮🇹 +chiudiamo +splendida +giornata +montesilvano +buona +serata +amici +molla +💪 +primalitalia🇮🇹 +spettacolo +montegranaro +ferma +perduto +amici +primalitalia🇮🇹 +buon +pomeriggio +amici +ora +osimo +ancona +state +26maggiovotolega +seconda +parte +ieri +sera +gruber +record +ascolto +oltre +milioni +spettatori +sintonizzati +divertito +credo +aver +mantenuto +certa +calma +dite +rivedete +condividete +saluto +fano +splendide +marche +😊 +seguitemi +diretta +pioggia +ferma +seguitemi +diretta +pesaro +☔😋 +piazza +fantastica +sera +ascoli +freddo +ferma +😊 +polemiche +beghe +chiacchiere +zero +vita +vera +italiani +chiedono +andare +avanti +altro +svelta +riduzione +tasse +flat +tax +famiglie +imprese +cantieri +infrastrutture +sviluppo +futuro +seguite +diretta +intervista +ieri +sera +rai +radio +buona +giornata +amici +🔴spettacolare +tg +nascondono +condividiamo +sera +pavia +davanti +piazza +emozionante +fate +compagnia +casa +🔝💪 +anteprima +diretta +completa +prossimo +buonasera +amici +cosa +fate +diretta +pavia +davanti +piazza +emozionante +fate +compagnia +casa +🔝💪 +saluto +giussano +state +26maggiovotolega +primalitalia🇮🇹 +oggi +riparte +lombardia +eccomi +diretta +concorezzo +mb +primalitalia +26maggiovotolega +lotta +tutte +mafie +vinceranno +stato +italiani +perbene +diretta +milano +inaugurazione +nuova +agenzia +nazionale +beni +confiscati +mafia +stato +contento +sentire +ministro +vicino +cittadino +momento +così +difficile +ascoltate +incredibile +racconto +andrea +ragazzo +ingiustamente +indagato +aver +ferito +altro +ladri +entrati +casa +ministro +sentito +dovere +sentirlo +ribadirgli +vicinanza +legge +legittima +difesa +serve +soprattutto +evitare +situazioni +sempre +parte +difende +dopo +avellino +eccomi +diretta +salerno +seguite +primagliitaliani +26maggiovotolega +ora +insieme +amici +pietrelcina +benevento +scambiando +parole +piazza😊 +roma +amici +seguite +primalitalia +26maggiovotolega +diretta +firenze +state +me +26maggiovotolega +scandicci +ora +guardate +piazza +26maggiovotolega +primalitalia +prato +fate +girare +immagini +tivù +giornaloni +vedere +pd +maggio +mandiamo +casa +voglio +bene +❤ +diretta +san +giuliano +terme +pisa +tour +continua +😁 +26maggiovotolega +ecco +sintesi +lunga +intensa +settimana +😊 +mollo +ultime +foto +giornata +buona +musica +romagnola +sottofondo +piazza +riuscito +entrare +buonasera +forlì +ultima +tappa +giornata +fate +compagnia +26maggiovotolega +condividiamo +modena +venerdì +ore +migliaia +persone +piazza +lega +emilia +sempre +meno +rossa”😉 +modena +poveretti +rischio +estinzione +😁 +continua +tour +emilia +romagna +sostegno +candidati +sindaci +lega +ora +reggio +emilia +seguite +primalitaia🇮🇹 +diretta +mercato +reggio +emilia +fate +passi +me +😁 +buongiorno +fidenza +parma +parte +state +me😁 +primalitalia +ora +diretta +monastero +carmelitano +budapest +presidente +orbán +seguitemi +budapest +sede +ministero +interno +ungherese +appena +concluso +proficuo +incontro +bilaterale +collega +sándor +pintér +aggiorno +state +me +italia +ungheria +europa +entra +solo +permesso +difendere +confini +sicurezza +figli +maggio +scegli +lega +buonasera +civitavecchia +amici +seguitemi +😊 +26maggiovotolega +sondaggi +preferisco +guardate +accoglienza +soliti +rosiconi +ora +diretta +tarquinia +spettacolo +ferma +perduto +26maggiovotolega +saluto +piazza +tivoli +🇮🇹 +seguite +😊 +pedofili +stupratori +galera +castrazione +chimica +accordo +parlato +ieri +sera +rai +diretta +prefettura +milano +state +me +diretta +torino +seguitemi +diretta +biella +tantissimi +stanco +felice +mese +voto +maggio +insieme +possiamo +fare +storia +metto +tutta +sempre +principio +testa +primalitalia🇮🇹 +buongiorno +meravigliosa +piazza +motta +sant +anastasia +seguitemi +meravigliosa +bagheria +seguitemi +meravigliosa +piazza +monreale +sicilia +diretta +monreale +seguitemi +accoglienza +stupenda +corleone +grazie +diretta +sede +elettorale +lega +bergamo +state +diretta +pinzolo +state +me +settimana +lunga +intensa +molla +millimetro +mangiatoia +immigrazione +clandestina +chiusa +riapre +stop +🚫🚫🚫 +buonanotte +amici +primalitalia💪🔝🇮🇹 +felice +incontrare +oggi +milano +eduardo +bolsonaro +parlamentare +brasiliano +figlio +presidente +jair +messias +bolsonaro +segno +collaborazione +amicizia +popoli +🇮🇹🇧🇷 +intervista +ieri +sera +rai +prego +seguirla +buon +pranzo +amici +ex +baraccopoli +san +ferdinando +degrado +illegalità +parole +fatti +viminale +lavora +perfetta +sintonia +difesa +protezione +confini +però +qualcuno +ragioni +politiche +vuole +immagina +porti +riaperti +dica +chiaramente +responsabile +interno +confermo +italia +entra +solo +permesso +portichiusi🇮🇹 +perugia +splendida +regione +dopo +anni +disastri +targati +pd +merita +essere +liberata +seguitemi +diretta +intervista +mattina +rai +radio +terroristi +barconi +certezza +molla +portichiusi🇮🇹 +mamma +giornata +molla +centimetro +diretta +monza +importanti +novità +state +me +settimana +bella +intensa +molla +mai +maggio +vicino +conto +tantissimi +europa +rivoluzioniamo +storia +primalitalia🇮🇹 +libia +qualcuno +business +gioca +fare +guerra +me +trovato +ministro +sbagliato +ascolta +intervista +rtl +prima +italia +🇮🇹 +maggio +orgoglio +coraggio +portiamo +buonsenso +europa +onore +forze +ordine +aprile +parteciperò +sfilate +mezzo +corleone +liberazione +tutta +italia +cancro +mafia +camorra +ndrangheta +ragione +vita +diretta +roma +onorato +partecipare +celebrazioni +167esimo +anniversario +polizia +stato +state +anniversariopolizia +difesa +confini +protezione +aggressione +terrorismo +islamico +priorità +italia +puntiamo +farlo +primo +partito +continente +europa +ecco +cosa +detto +mattina +milano +ripropongo +intervista +ieri +sera +giletti +buon +pomeriggio +amici +ripropongo +conferenza +internazionale +verso +europa +buonsenso +” +europadelbuonsenso +milano +conferenza +internazionale +matteo +salvini +lega +enf +jörg +meuthen +alternative +für +deutschland +efdd +olli +kotro +the +finns +party +ecr +anders +vistisen +dansk +folkeparti +ecr +europadelbuonsenso +🇮🇹live +italiano +verso +europa +buonsenso +” +europadelbuonsenso +milano +conferenza +internazionale +matteo +salvini +lega +enf +jörg +meuthen +alternative +für +deutschland +efdd +olli +kotro +the +altro +finns +party +ecr +anders +vistisen +dansk +folkeparti +ecr +🇮🇹 +live +italiano +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇬🇧 +live +english +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇩🇪 +live +deutsch +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇬🇧live +english +towards +common +sense +europe +” +europadelbuonsenso +milan +international +conference +with +matteo +salvini +lega +enf +jörg +meuthen +alternative +für +deutschland +efdd +olli +kotro +the +altro +finns +party +ecr +anders +vistisen +dansk +folkeparti +ecr +🇮🇹 +live +italiano +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇬🇧 +live +english +https +www +facebook +com +salviniofficial +videos +sfns +mo +🇩🇪 +live +deutsch +https +www +facebook +com +salviniofficial +videos +sfns +mo +diretta +lonigo +vicenza +seguitemi +vinitaly🇮🇹 +ponte +morandi +scontato +partire +disastro +raccogliere +affetto +fiducia +idee +critiche +sempre +rispetto +collaborazione +sbloccacantieri” +risarcimenti +altro +cittadini +imprese +danneggiati +lavori +ricostruzione +quando +primavera +prossima +nuovo +ponte +massimo +forza +genova +sempre +diretta +genova +sotto +ponte +morandi +seguitemi +diretta +zona +rossa +sotto +ponte +morandi +genova +diretta +genova +presieduto +comitato +ordine +sicurezza +pubblica +seguite +settimana +intensa +impegnativa +italia +estero +vado +avanti +sempre +sorriso😊 +buonanotte +amici +diretta +parigi +g7 +ministri +interno +seguitemi +ora +diretta +fiera +cagliari +state +me +ora +diretta +como +seguite +intervista +mattina +lady +radio +firenze +sempre +felice +quando +posso +stare +onda +emittenti +territorio +grazie +ospitalità +viva +radio +locali +ora +diretta +splendida +firenze +quartiere +isolotto +state +26maggiovotolega +paura +mamma +papà +settimana +straordinaria +ricorderò +sempre +regalato +italiani +sacrosanto +diritto +difendersi +casa +propria +buonanotte +amici +ripropongo +partecipazione +ieri +sera +maurizio +costanzo +show +sempre +palcoscenico +emozionante +po +autoironia +sempre +sorriso +guardatelo +stata +bella +puntata +volte +po +leggerezza +fa +bene +☺ +finalmente +oggi +italia +vince +sacrosanto +diritto +difendersi +casa +propria +posto +lavoro +evitare +tutte +incredibili +ingiustizie +ladifesaèsemprelegittima +bellissimo +giorno +italiani +dopo +anni +chiacchiere +approvata +nuova +legge +garantisce +cittadini +sacrosanto +diritto +legittima +difesa +battaglia +civiltà +votata +grandissima +maggioranza +💪🔝 +diretta +viminale +protagonisti +autobus +dirottato +milano +state +diretta +milano +amico +mario +giordano +presentazione +nuovo +libro +italia +italiana” +invertire +rotta +buona +serata +amici +fateci +compagnia +👉 +https +www +librimondadori +it +libri +litalia +piu +italiana +mario +giordano +po +tempo +ecco +intervista +ieri +mattina +canale +collegamento +splendida +matera +purtroppo +microfono +pd +🤨 +buona +serata +amici +stata +settimana +me +particolarmente +impegnativa +intensa +volte +commovente +sempre +comunque +bella +affetto +sostegno +stati +sempre +grazie +amici❤️ +🔴quello +dato +fastidio +ore +qualche +intellettualone +politico +sinistra +provato +comprendere +delinquente +benzina +pistola +coltelli +minacciava +bimbi +dicendo +altro +po +colpe +salvini +vergognino +vado +avanti +ascoltate +intervista +ieri +sera +rete +ora +diretta +splendida +matera +state +me +domenicavotolega +pomarico +seguite +dopo +vediamo +matera +ferrandina +aspetto +numerosi +😊 +domenicavotolega +tolve +potenza +ancora +pochi +giorni +basilicata +storia +avanti +tutta +domenicavotolega +diretta +tito +scalo +potenza +fabbriche +importanti +basilicata +settore +automobilistico +seguitemi +diretta +muro +lucano +potenza +giovedì +mattina +piazza +tantissimi +spettacolo +basilicata +domenicavotolega +diretta +senato +qualcosa +dirvi +seguite +🔴aggiornamento +italia +deve +cedere +ricatti +nave +centri +sociali +cercate +rete +signor +luca +casarini +rende +complice +trafficanti +esseri +umani +portichiusi +italia +delinque +conta +fatto +galera +poco +lavorando +mesi +certezza +pena +zero +sconti +stupratori +assassini +molto +altro +parlato +mattina +rtl +ecco +intervista +studi +barbara +urso +detto +pensavo +credo +pubblico +studio +apprezzato +😊 +stato +abbastanza +chiaro +leggo +commenti +ora +diretta +milano +seguite +diretta +lavello +potenza +visti +qua +cosa +incredibile +buona +domenica +melfi +potenza +amici +seguitemi +24marzovotolega +amici +ora +diretta +villa +agri +marsicovetere +seguite +😊 +24marzovotolega +buon +sabato +lauria +basilicata +amici +oggi +aspetto +numerosi +viggiano +marsicovetere +potenza +filiano +ferma +perduto +24marzovotolega +amici +propongo +sintesi +lunga +intensa +settimana +😊 +intervista +oggi +canale +napoli +adoro +tivù +locali +saluto +basilicata +amici +ora +diretta +splendida +piazza +maratea +seguite +😊 +24marzovotolega +napoli +diretta +prefettura +seguitemi +diretta +camera +ecco +progetto +lega +tutela +marchi +storici +italiani🇮🇹 +diretta +roma +celebrazioni +cinquecentenario +morte +leonardo +🇮🇹 +spettacolo +matera +😍 +state +diretta +scanzano +jonico +matera +seguite +24marzovotolega +quando +volontà +possibile +risolvere +problemi +sembrano +insuperabili +abbattimento +torri +zingonia +luogo +spaccio +degrado +esempio +dalleparoleaifatti +diretta +milano +scuola +formazione +politica +lega +state +amici +ecco +sintesi +lunga +settimana +ferma +perduto +intervista +ieri +sera +rete +paolo +debbio +avanti +buonsenso +bene +italiani +diretta +senato +là +mimosa +rosa +fatti +concreti +ecco +elimineremo +sconti +pena +ammazza +stupra +legge +codicerosso +impone +corsie +preferenziali +altro +rapidissime +denunce +violenze +donna +minigonna +sera +deve +avere +diritto +libertà +andare +giro +senza +essere +molestata +diretta +potenza +basilicata +voterà +domenica +marzo +seguite +intervista +tg5 +spero +essere +stato +chiaro +buona +serata +amici +drogato +ubriaco +senza +patente +marocchino +uccide +genitori” +diretta +camera +proposta +legge +lega +impedire +accadano +ancora +follie +amici +com +stata +settimana +stata +lunga +intensa +piena +emozioni +eccone +sintesi +ora +diretta +stabilimento +navale +monfalcone +fincantieri +consegnerà +costa +crociere +costa +venezia +nave +interamente +italiana +seguitemi +ora +cagliari +mercato +san +benedetto +grazie +sardegna +diretta +cagliari +seguite +ringrazio +fiducia +amiche +amici +sardi +già +domani +lavoro +terra +stupenda +lingua +tradizioni +magnifiche +ascoltate +potho +reposare” +andrea +parodi +altro +youtube +straordinaria +canzone +amore +ecco +intervista +sera +rete +stanco +febbricitante +felice +😊 +diretta +università +luiss +roma +convegno +confagricoltura +seguitemi +sole +sorrisi +serenità +recco +genova +buona +domenica +buon +pranzo +amici +☀️😊 +verona +diretta +salone +trasporti +logistica +seguitemi +avvocati +immigrati +diciotti +battono +cassa +chiedono +risarcimento +danni +assistiti +😅 +bastaaa +italiani +scemi +finita +pacchia +ministro +mesi +reati +diminuiti +sbarchi +azzerati +morti +mare +calati +nuove +assunzioni +forze +ordine +agenti +nuove +divise +raddoppiati +beni +altro +sequestrati +mafie +sinistra +chiacchiera +stata +mandata +casa +parlato +fatti +domenica +sardegna +voto +lega +pd +governo +isola +solo +pessimo +ricordo +riguarda +intervista +mattina +canale +cagliari +sera +trovato +entusiasmo +incredibile +ecco +intervista +tg2 +stanco +felice +domenica +sardegna +possiamo +fare +davvero +storia +buona +serata +amici +🙂 +cagliari +spettacolo +seguiteci +domenicavotolega +diretta +villasimius +villa +sequestrata +narcotrafficante +internazionale +diventerà +alloggio +carabinieri +seguitemi +diretta +iglesias +tantissimi +seguite +domenicavotolega +ritorno +sardegna +ora +carbonia +state +me +domenicavotolega +stamattina +parlato +rai +ecco +cosa +detto +leggo +commenti +nonna +diceva +male +fare +paura +avere” +ecco +intervista +ieri +sera +giovanni +floris +riguardatela +insieme +me +intervista +mattina +rtl +entro +marzo +approvare +nuova +legge +legittima +difesa +possibile +signor +angelo +piacenza +stato +condannato +anni +mezzo +debba +andare +carcere +essersi +difeso +ladro +diretta +bari +state +prima +parte +buongiorno +mercato +alghero +☀️ +seguiteci +diretta +24febbraiovotolega +seguiteci +diretta +sassari +😁 +spettacolo +24febbraiovotolega +processo +processo +domani +arrivasse +altro +barcone +rifarei +fatto +italia +entra +chiedendo +permesso +rispettando +regole +molto +altro +parlato +ieri +sera +giletti +seguite +condividete +ora +diretta +ozieri +sassari +bello +iniziare +così +settimana +state +24febbraiovotolega +ora +diretta +castelsardo +sassari +spettacolo +24febbraiovotolega +diretta +maddalena +state +24febbraiovotolega +diretta +camera +state +me +grazie +abruzzo +seguitemi +diretta +guerriglia +urbana +torino +cassonetti +incendiati +autobus +assaltato +galera +infami +ridotti +quasi +zero +sbarchi +adesso +chiudono +centri +sociali +frequentati +criminali +riguardate +insieme +me +intervista +skytg24 +eccola +nega +uccide +volte +oggi +basovizza +emozionato +commosso +durante +preghiera +connazionali +martiri +foibe +ascolto +storie +famigliari +grazie +dimentichiamo +🇮🇹 +diritto +legittima +difesa +viene +aggredito +casa +negozio +sembra +semplice +buonsenso +marzo +regaleremo +italiani +nuova +legge +tanto +attesa +parte +difende +intervento +ieri +canale +buon +pranzo +amici +vota +domani +abruzzo +migliaia +abruzzesi +pescara +incredibili +grazie +domenica +storia +abruzzo +lanciamo +messaggio +chiaro +tutta +europa +italia +domenicavotolega +diretta +bussi +tirino +pescara +domenicavotolega +diretta +aquila +domenicavotolega +diretta +terni +diretta +monteroni +arbia +siena +restituirò +cittadini +azienda +agricola +piscina +visitate +qualche +mese +fa +state +confiscate +mafia +seguitemi +lamafiamifaschifo +ripropongo +intervista +sera +rete +dite +😊 +prosegue +provincia +teramo +ora +sant +egidio +vibrata +10febbraiovotolega +ora +diretta +mercato +campli +teramo +state +me +buona +domenica +😄 +10febbraiovotolega +arrivato +mercato +campli +teramo +poco +intervento +diretta +pagina +10febbraiovotolega +ora +diretta +giulianova +teramo +state +10febbraiovotolega +amici +propongo +sintesi +lunga +intensa +settimana +😊 +intervista +ieri +sera +vespa +azioni +governo +costate +insulti +denunce +indagini +felice +fatto +rifarei +commentate +condividete +diretta +chiomonte +torino +poco +visiterò +cantiere +tav +qualche +altro +ministro +indagato +grattava” +difendo +paese +vado +fiero +ieri +sera +floris +entusiasmo +quasi +imbarazzante +pubblico +studio +spero +puntata +piaciuta +eccola +🙂 +precedenti +ministro +venga +indagato +rischi +galera +aver +difeso +confini +proprio +paese +tranquillo +rifarei +so +aver +agito +base +costituzione +interesse +altro +italiani +molto +altro +parlato +rtl +ascoltate +fatevi +idea +buona +serata +amici +rivedete +me +prima +puntata +povera +patria” +programma +rai +stato +ospite +altra +sera +intervista +spero +chiara +sintesi +settimana +mollo +diretta +roma +consegnerò +comune +villa +sequestrata +criminale +seguitemi +riprovano +rischio +anni +carcere +aver +bloccato +sbarchi +clandestini +italia +parole +paura +zero +continuo +continuerò +lavorare +difendere +confini +paese +sicurezza +italiani +iononmollo +razzista +fascista +nazista +balle +sinistra +rispondo +fatti +lavoro +risultati +vite +salvate +reati +diminuiti +soldi +risparmiati +bacioni😘 +eccomi +lanciano +chieti +tantissimi +10febbraiovotolega +diretta +vasto +chieti +buon +sabato +amici +riflessione +tornano +mare +davanti +libia +navi +ong +scafisti +ricominciano +sporchi +traffici +persone +tornano +morire +cattivo” +mah +intervista +oggi +radio +crc +sempre +piacere +onore +intervenire +emittenti +territorio +caso +napoli +giorni +lavoro +straordinario +informazione +intrattenimento +servizio +comunità +oggi +accoglienza +afragola +commosso +grazie +🙏 +diretta +afragola +napoli +diretta +senato +state +me +alghero +grazieee +live +splendida +alghero +oristano +spettacolo +diretta +mercato +quartu +cagliari +marea +tralagente +solinaspresidente +diretta +prefettura +cagliari +presieduto +comitato +sicurezza +ordine +pubblico +seguitemi +intervista +mattina +nuovo +programma +approfondimento +tg2 +voglia +riguardate +me +diretta +palazzo +chigi +oggi +giornata +festa +italiani +cattura +rientro +galere +battisti +deve +essere +inizio +percorso +tanti +troppi +altro +terroristi +ancora +piede +libero +vicina +francia +governo +accettiamo +lezioni +morale +accoglienza +solidarietà +generosità +sbagliato +italia +deve +pagare +italia +ripropongo +intervista +ieri +sera +giletti +la7 +vigilia +storica +giornata +oggi +vigliacco +criminale +assassino +stato +finalmente +restituito +giustizia +italiana +ora +diretta +milano +scuola +formazione +politica +lega +state +me +tragedia +rigopiano +dopo +anni +chiacchiere +promesse +vuoto +arrivano +legge +milioni +euro +ministero +interno +aiutare +famigliari +vittime +dalleparoleaifatti +mentre +immigrazione +regolare +integra +lavoro +paga +tasse +manda +figlia +scuola +valore +aggiunto +società +sbarco +incontrollato +senza +regole +clandestini +altro +accusato +cattivismo +razzismo +fascismo +voglio +bloccare +traffico +scafisti +pare +solo +buonsenso +altro +parlato +mattina +rtl +ascoltate +diretta +varsavia +collega +ministro +interno +polacco +brudziński +seguitemi +villone +guardie +cancelli +problema +sicurezza” +operaio +periferia +sì +altro +parlato +ieri +sera +porro +intervista +campo +riguardate +insieme +me +operativo +oggi +ministero +felice +sostegno +dimostrate +ogni +giorno +continuo +lavoro +coraggio +onestà +mollo +centimetro +ora +diretta +aquila +seguite +ferma +perduto +10febbraiovotolega +propongo +intervento +mattina +teramo +trovato +tanta +gente +voglia +cambiamento +10febbraiovotolega +ora +roseto +abruzzi +10febbraiovotolega +diretta +montesilvano +idee +chiare +coerenza +passi +strade +pescara +mezzo +tanti +abruzzesi +perbene +seguitemi +😊 +10febbraiovotolega +molti +sindaci +contestano +decreto +sicurezza +oggi +legge +stato +letto +vengono +garantiti +diritto +salute +diritto +studio +bambini +toccano +possono +essere +altro +espulsi +semplicemente +regalano +altri +diritti +furbetti +veniva +fatto +fino +ieri +mollo +virgola +ascoltate +intervista +rai +radio +arrivato +chieti +rispetta +decreto +sicurezza +aiuta +clandestini +tradisce +italia +italiani +risponderà +davanti +legge +storia +comunque +mollo +😊 +aiuta +clandestini +odia +italiani +risponderà +davanti +legge +storia +mollo +😊 +esistono +clandestini” +alcuni +sindaci +pd +annunciano +applicheranno +decreto +sicurezza +mille +problemi +quotidiani +reali +concittadini +dobbiamo +dare +altro +immigrati +irregolari +accordo +ricordo +sindaci +sinistra +decreto +sicurezza +legge +buon +senso +civiltà +stato +approvato +governo +parlamento +firmato +presidente +repubblica +prima +dobbiamo +pensare +milioni +italiani +poveri +disoccupati +difendendoli +troppi +reati +commessi +immigrati +clandestini +poi +salveremo +resto +mondo +sbaglio +maestro +canello +già +messo +avanti +orologio +mezzanotteee +🍾🥂😂 +pensiero +unico +inimitabile +geniale +indimenticabile +paolo +villaggio +emozioni +battaglie +problemi +soddisfazioni +risultati +positivi +raggiunti +italia +ritrovato +finalmente +orgoglio +dignità +grazie +migliore +impegno +amici +conto +aiuto +diretta +festa +lega +albino +bergamo +state +risolvere +problemi +calcio +bisogna +coinvolgere +intorno +tavolo +protagonisti +calciatori +tifoserie +presidenti +arbitri +giornalisti +bisogna +però +confondere +delinquenti +tifosi +perbene +riguardate +insieme +me +intervento +ieri +notte +italia +commentate +diretta +prefettura +pesaro +presieduto +comitato +sicurezza +ordine +pubblico +state +me +dopo +aver +donato +qualche +regalo +sorriso +bambini +passeranno +natale +ospedale +voglio +salutare +voglio +smontare +alcune +bufale +propinate +qualche +politico +giornalista +nessuna +altro +pensione +verrà +tagliata +diminuirà +nessuno +italia +prenderà +meno +anzi +prenderà +oppositori +rimangono +solo +bugie😊 +buon +santo +natale +amici +firenze +appena +terminato +comitato +provinciale +ordine +sicurezza +pubblica +seguitemi +diretta +stamattina +parlato +radio +voglia +riascoltate +intervista +insieme +me +commentate +leggo +ospedale +fatebenefratelli +milano +firmato +protocollo +intesa +polizia +stato +azienda +socio +sanitaria +territoriale +asst +regione +lombardia +realizzazione +laboratorio +genetica +altro +forense +polizia +scientifica +orgoglioso +italia +punto +riferimento +sicurezza +anticrimine +europa +mondo +sorbolo +parma +oggi +felice +aver +consegnato +personalmente +guardia +finanza +immobile +sequestrato +‘ndrangheta +voglio +vedere +clan +ridotti +fame +galera +lamafiamifaschifo +diretta +amici +confagricoltura +seguitemi +patrimonio +lavoro +ricchezza +storia +cultura +viva +agricoltura +viva +made +italy +🇮🇹 +intervista +ieri +sera +nicola +porro +rete +piaciuta +molto +eccola +aiutate +condividere +diretta +comune +sorbolo +parma +consegnerò +guardia +finanza +immobile +sequestrato +‘ndrangheta +state +me +ecco +video +completo +ruspe +azione +oggi +campo +nomadi +cascina +pisa +chiacchiera +fa +dalleparoleaifatti +manterremo +impegni +presi +guardando +sempre +avanti +mai +indietro +diretta +milano +scuola +formazione +politica +seguite +diretta +gerusalemme +racconto +incontro +stamane +premier +netanyahu +altri +incontri +splendida +visita +israele +ora +santo +sepolcro +gerusalemme +diretta +sede +stampa +estera +roma +domande +risposte +giornalisti +stranieri +parliamo +governo +buonsenso +state +avanguardia +orgoglio +cambiamento +dignità +paese +ripropongo +intervento +messo +tutta +testa +cuore +piazzadelpopolo +primagliitaliani +dimenticherò +mai +emozioni +abbraccio +uniti +possiamo +❤️ +live +roma +pronto +piazza +popolo +iocisono +ripropongo +intervista +oggi +pomeriggio +barbara +urso +persona +cuore +aspetto +domani +mattina +roma +iocisono +intervista +mattina +canale +sabato +roma +mare +gente +perbene +dire +primagliitaliani +🇮🇹 +mattina +radio +quota +nessun +rinvio +concorrenza +sleale +cina +difesa +made +italy +presunta +disumanità” +italia +molto +altro +no +nuove +tasse +auto +credo +essere +stato +chiaro +ascoltate +diretta +camera +iniziativa +educazione +civica +obbligatoria +scuole +sostegno +riconoscimento +lingua +segni +formazione +insegnanti +cosa +pensate +ieri +sera +rai +stato +chiaro +bene +dialogo +europa +datori +lavoro +italiani +diretta +bruxelles +seguitemi +testata +politico +eu +deciso +premiarmi +politico +europeo +anno +😱 +grazie +soprattutto +intervista +campo +rtl +ascoltate +commentate +me +sempre +bello +tornare +davanti +pubblico +giletti +rivedete +intervista +insieme +me +leggo +commenti +ripropongo +intervento +oggi +la7 +merlino +state +svegli +potrete +vedere +vespa +rai +verso +molla +amici +primagliitaliani +promesso +decretosalvini +legge +solo +inizio +rivedi +intervento +oggi +barbara +urso +grazie +🔴 +fatelo +girare +italia +firmerà +proposta +global +compact +onu +immigrazione +governo +andrà +riunione +marrakesh +avanti +noglobalcompact +felice +onorato +aver +inaugurato +nuovo +anno +accademico +scuola +perfezionamento +forze +polizia +fiore +occhiello +italiano +unicum +livello +europeo +scuola +uscirà +altro +personale +formato +solo +professionalmente +eticamente +culturalmente +socialmente +sicurezza +rispetto +tutela +ordine +oltre +legalità +grazie +fate +diretta +camera +alcune +cose +dirvi +decretosalvini +diventa +legge +me +diretta +roma +evento +sindaci +italia” +poste +italiane +diretta +cagliari +presentazione +34esimo +congresso +partito +sardo +azione +seguite +ogni +insulto +arriva +sinistra +inauguriamo +nuova +sede +lega +seguitemi +dà +tortolì +spettacolo +mattina +rai +credo +essere +stato +particolarmente +chiaro +movimenti +cosiddetto +spread +corrispondono +vita +economia +vera +paese +mesi +fatto +tanto +altro +molto +consenso +vorrei +qualche +speculatore +volesse +ostacolarci +costi +sempre +comunque +primagliitaliani +diretta +camera +seguitemi +diretta +roma +assemblea +alis +associazione +logistica +intermodalità +sostenibil +seguite +dobbiamo +costruire +distruggere +italia +bisogno +nuove +infrastrutture +bisogno +infrastrutture +dobbiamo +andare +avanti +tornare +indietro +diretta +milano +state +idn2018 +ieri +sera +rai +pimpante +confronto +enrico +lucci +😀 +eccolo +diretta +milano +assemblea +cna +confederazione +nazionale +artigianato +piccola +media +impresa +seguite +mai +andato +maurizio +costanzo +stata +esperienza +simpatica +tante +domande +tirato +indietro +giudicate +commento +libero +😉 +diretta +prefettura +napoli +presieduto +comitato +ordine +sicurezza +pubblica +nuovi +agenti +polizia +locale +impianti +videosorveglianza +norma +rottama +motorini +programma +altro +sgomberi +stabili +pericolanti +case +popolari +occupate +gestite +camorra +lotta +spacciatori +tante +altre +iniziative +consentite +decretosalvini +molla +metterò +tutta +aiutare +città +seguite +ora +diretta +milano +scuola +formazione +politica +lega +voglia +state +me +mattina +università +lumsa +roma +partecipato +molto +volentieri +convegno +promosso +comunità +papa +giovanni +xxiii +insieme +polizia +stato +affetti +famigliari +amici +veri +altro +antidoto +migliore +tenta +plagiare +adescare +violentare +psicologicamente +purtroppo +fisicamente +voglia +ecco +intervento +dopo +intervista +ieri +sera +gruber +giornata +approvazione +parlamento +decretosalvini +ricevuto +molti +messaggi +sostegno +tanti +inviti +andare +avanti +mondi +ambienti +vari +grazie +garantisco +fermerò +certo +adesso +ripropongo +intervista +oggi +canale +pubblico +studio +apprezzato +spero +soddisfatto +decreto +sicurezza +immigrazione +taglio +costi +accoglienza +mangioni +profittatori +oggi +giornata +molto +importante +italiani +ora +andiamo +avanti +diretta +viminale +seguite +caso +asia +bibi +lavorando +discrezione +attenzione +insieme +altri +paesi +occidentali +umanamente +possibile +garantire +futuro +ragazza +soddisfatto +breve +costruttiva +visita +ghana +autorità +ringrazio +ospitalità +seguiranno +altre +vari +paesi +africani +mentre +passato +tanti +limitavano +chiacchierare +altro +cerchiamo +fare +promesso +dopo +aver +bloccato +sbarchi +favorire +rimpatri +diritto +rimanere +italia +aiutare +popoli +casa +attraverso +cooperazione +economica +culturale +umana +utile +accordo +rilancio +buonismo +rovinato +italia +fatto +venir +meno +rispetto +immigrazione +sicurezza +certezza +pena +legittima +difesa +invertito +rotta +solo +inizio +mollo +conto +tornare +presto +terracina +quando +attività +ripartite +alberi +ripiantati +tetti +sistemati +voluto +vedere +occhi +credo +solidarietà +portata +persona +mostri +altro +italiani +stato +lascia +soli +calamità +naturali +abbracci +bastano +servono +soldi +mezzi +già +prossimi +giorni +arriveranno +primi +provvedimenti +stanziamenti +parte +consiglio +ministri +metterò +impegno +persone +attività +colpite +ritrovino +po +tranquillità +centro +coordinamento +soccorsi +aeroporto +belluno +seguitemi +devastazione +belluno +montagna +senza +alberi +stringe +cuore +domani +posto +già +cercando +trovando +primi +milioni +euro +aiutare +popolazioni +colpite +disastri +veneto +sicilia +scalfari +putin +vuole +salvini +dittatore +italia +😂😂😂 +hastatosalvini +dopo +richiesta +archiviazione +procura +catania +continuo +ancora +forza +strada +ragione +voleva +male +😁 +avanti +tutta +salvini +cattivo +maestro” +parole +arrivata +ora +ufficio +busta +chiusa +procura +catania +assolto +indagato +apriamo +insieme +intanto +buon +ognissanti +amici +abbraccio +particolare +lavora +contento +aver +conosciuto +ragazze +ragazzi +nazionale +italiana +impegnata +giorni +mondiali +qatar +tanta +bella +gioventù +ottime +speranze +invidio +lavorando +altro +dare +sempre +spazio +visibilità +fondi +cosiddette +discipline +minori +seguite +però +milioni +persone +tifoso +calcio +meno +pallone +sport +bordo +splendida +fregata +federico +martinengo +membri +equipaggio +orgoglioso +marina +militare +italiana +difende +mari +sicurezza +grazie +vuole +male +ecco +cosa +detto +ieri +sera +giletti +la7 +orgoglioso +momenti +italia +torna +rispetto +difende +enrico +montesano +difende +azioni +politiche +dice +milioni +italiani +pensano +parole +chiare +semplici +ascoltatelo +ridurre +ulteriormente +sbarchi +aumentare +espulsioni +rimpatri +roma +milano +napoli +palermo +riconquisteremo +zone +oggi +mano +delinquenza +spaccio +italia +spazio +illegalità +buttalo +buttalo +dopo +avermi +dato +assassino +centri +sociali +firenze +divertono +lanciando +acqua +gommone +fantoccio +pena +limite +idiozia +certi +studenti” +bene +po +scuola +fissato +immacolata +sabato +dicembre +appuntamento +roma +piazza +popolo +italiani +sostengono +vorranno +esserci +vicini +bella +avventura +liberazione +coraggio +onestà +crescita +futuro +crimini +commessi +coloro +abusato +buona +fede +paese +accoglie +doppiamente +gravi +penso +così +ora +diretta +caserma +carabinieri +salvo +acquisto +roma +cerimonia +anni +fondazione +gruppo +intervento +speciale +gis +seguitemi +puntiamo +vita +vera +lavoro +tasse +legge +fornero +equitalia +partite +iva +agricoltura +risparmiatori +truffati +finanza +europa +seguiranno +economia +reale +spread +scenderà +inevitabilmente +manovra +darà +stabilità +serenità +italia +ora +diretta +senato +state +me +diretta +verona +fieracavalli +seguitemi +video +fermo +notte +immigrati +senegalesi +irregolari +violenza +sessuale +gruppo +cessione +stupefacenti +omicidio +volontario +terza +persona +stata +rintracciata +spero +presto +altro +potrò +darvi +notizia +altri +sospetti +complici +grazie +polizia +stato +omicidio +desirée +rimarrà +impunito +ve +garantisco +ripropongo +intervento +mattina +rtl +seguite +po +tempo +ditemi +stato +abbastanza +chiaro +avanti +tutta +quartiere +san +lorenzo +roma +seguitemi +desirée +sempre +diretta +bucarest +ambasciata +italiana +seguitemi +diretta +bucarest +ministero +interno +romeno +collega +carmen +daniela +dan +secondo +regista +americano +michael +moore +bigotto +razzista +odierei +gay +lesbiche +poveretto +fa +po +pena +intellettuali +sinistra +italia +estero +attaccano +altro +giorno +sì +altro +pure +vuol +dire +strada +giusta +no +giudicare +voti +veri +presi +trentino +alto +adige +ieri +direi +sì +figlio +vuole +andare +fonderia +mica +problema +devono +venire +ghana +andarci +lavorare” +milioni +poveri +italia +sembra +proprio +saggio +citare +prodi +teorie +giovani +italiani +fannulloni +sinistra” +salvini +neofascista +rozzo +aggressivo +basta +lieto +piacerle +viste +differenze +me +stato +eletto +nominato +rovinato +migliaia +famiglie +italiane +altro +verso +lacrime +coccodrillo +frequento +salotti +chic +orgoglioso +cominciato +smontare +legge +porta +nome +stopfornero +amiche +amici +trentino +finalmente +domenica +potete +cambiare +storia +dopo +decenni +governi +sinistra +chiuso +ospedali +assunto +amici +parenti +conoscenti +finalmente +cambia +altro +ora +poi +trento +provincia +lavorerà +merito +raccomandazione +sicurezza +investimenti +autonomia +lega +domenicavotolega +fugattipresidente +spettacolo +trento +sera +grazie +migliori +sondaggi +domenica +bastano +minuti +tempo +mandiamo +casa +sinistra +passaparola +social +via +sms +via +whatsapp +via +telefonata +tradizionale +meglio +ancora +persona +domenicavotolega +diretta +trento +state +domenicavotolega +mezzocorona +trento +grazie +sostegno +prima +volta +quando +esiste +provincia +autonoma +trento +domenica +potrete +fare +cosa +incredibile +mandare +casa +sinistra +combinate +cotte +crude +domenicavotolega +diretta +cles +splendido +trentino +seguitemi +domenicavotolega +polemiche +servono +nulla +italiani +vogliono +andiamo +avanti +diretta +splendida +bolzano +seguitemi +domenicavotolega +manovra +economica +vergogna +francese +claviere +fino +poveretti +augurano +vedermi +testa +giù” +intervista +stasera +italia +parlato +po +minuti +ve +consiglio +adesso +conferenza +stampa +sempre +diretta +mosca +seguitemi +ancora +diretta +mosca +domande +risposte +imprenditori +italiani +ora +mosca +assemblea +generale +confindustria +russia +seguitemi +diretta +spoleto +partecipato +cerimonia +giuramento +allievi +agenti +polizia +stato +emozionato +onorato +ringraziamenti +bastano +impegnato +unghie +denti +fino +altro +ieri +notte +inserire +manovra +alcune +centinaia +milioni +euro +serviranno +assumere +mila +uomini +donne +forze +ordine +meno +soldi +gestione +immigrazione +soldi +sicurezza +modo +fare +ministro +geniali +professoroni +soloni +adesso +tutte +soluzioni +tasca +ultimi +venti +trenta +quarant +anni +spoleto +seguitemi +diretta +cerimonia +giuramento +200esimo +corso +allievi +agenti +polizia +stato +affetto +sostegno +trovato +tanti +incontri +giro +provincia +bolzano +fatto +capire +voglia +sicurezza +difesa +confini +tranquillità +altro +cambiamento +occhi +europa +puntati +voto +domenica +lega +candida +garantire +autonomia +benessere +splendida +comunità +prepotenza +bruxelles +bolzano +trento +stop +pd +conto +domenicavotolega +giovedì +sera +torno +bolzano +troverete +presto +dettagli +sezione +eventi +diretta +roma +intervento +assemblea +associazione +nazionale +costruttori +edili +state +me +stanco +estremamente +soddisfatto +moltiplichiamo +pani +pesci +certamente +manovra +economica +renderà +migliore +vita +italiani +dopo +giorni +governo +onore +onere +contento +impegni +fin +mantenuti +molleremo +diretta +monza +assemblea +confederazione +industria +manifatturiera +italiana +impresa +privata +🔴questo +vedrete +tigì +girare +onore +capotreno +sardegna +fa +scendere +gruppo +scrocconi +clima +cambiato +tolleranzazero +furbetti +uso +massiccio +forze +ordine +vuoi +viaggiare +paghi +cittadini +perbene +conto +ritornare +bolzano +ministro +restituendo +quartieri +città +gente +perbene +possibile +aver +paura +uscire +sera +cagnolino +prendere +autobus +treno +altro +immigrati +integrati +perbene +fratelli +finti +profughi +spacciano +delinquono +vanno +spediti +casa +domenicavotolega +poco +fa +vie +bressanone +bolzano +spettacolo +domenicavotolega +splendida +laives +comizio +improvvisato +seggiola +palchi +sontuosi +lasciamo +boschi +pd +😄 +parte +tour +provincia +bolzano +state +domenicavotolega +collegamento +laives +provincia +bolzano +scuola +formazione +politica +lega +esperienza +straordinaria +formazione +incontro +idee +progetti +arrivata +quarta +edizione +tanti +invidiano +accompagnato +opposizione +governo +paese +state +ultima +tappa +splendida +giornata +trentina +ala +trento +state +me +21ottobrevotolega +altra +tappa +trentina +pergine +valsugana +guardate +spettacolo +dedichiamo +piazza +21ottobrevotolega +ora +diretta +borgo +valsugana +trento +seguitemi +21ottobrevotolega +grazie +aldeno +trento +sondaggi +veri +gente +contano +ferma +perduto +21ottobrevotolega +intervista +stamattina +radio +radicale +ricette +imposte +europa +governi +monti +letta +renzi +gentiloni +aumentato +debito +pubblico +impoverito +precarizzato +italia +esattamente +contrario +primagliitaliani +lavoro +tasse +pensioni +sicurezza +burocrati +professoroni +governo +tiriamo +dritto +primagliitaliani +diretta +tetti +roma +attesa +pagarci +pensioni +ecco +opinionista +giorno🤔 +esercitazione +nocs +live +roma +diretta +roma +40° +anniversario +nucleo +operativo +centrale +sicurezza +minuto +meno +spread +lavoro +vero +così +cambiando +italia +lavoreremo +cambiare +europa +ora +lione +conferenza +stampa +dopo +incontri +g6lyon +seguitemi +ieri +sera +rete +marine +pen +bersani +cita +prodi +esempio +😱 +parla +migrazioni +inevitabili +me +piaciuta +molto +ve +consiglio +consigli +critiche +costruttive +accetto +volentieri +insulti +no +soprattutto +vengono +dovrebbe +rappresentare +milioni +europei +avere +obiettivo +portare +popoli +armonia +scontro +sociale +insicurezza +fermo +vado +avanti +spedito +treno +accidenti +dopo +insulti +illustre +personaggio +so +sera +riuscirò +dormire +rosicano +sinistra +bacioni +😘 +ascoltare +storie +problemi +vita +vera +accettare +complimenti +consigli +critiche +condividere +sorriso +selfie +semplice +stretta +mano +sondaggi +preferisco +grazie +entusiasmo +forza +quotidiana +ferma +perduto +minuti +alcuni +interventi +w +italia +sicurezza +immigrazione +crescita +italia +africa +dite +stato +abbastanza +chiaro +oggi +soliti +centri +sociali +deciso +imbrattare +centro +milano +dandomi +merda” +prendendosela +decreto +scuole +sicure +secondo +poliziotti +antidroga +altro +allontanando +scuole +ragazzi +problematici +aumentando +situazioni +marginalità” +😱 +✅stop +legge +fornero +inizio +senza +penalizzazioni +senza +paletti +senza +limiti +senza +tetto +reddito +permettendo +400mila +persone +andare +pensione +tornare +vita +liberando +altrettanti +altro +posti +lavoro +✅flat +tax +aliquota +almeno +milione +partite +iva +autonomi +professionisti +piccoli +imprenditori +accompagnata +pesante +sconto +fiscale +reinvestirà +utili +assunzioni +ricerca +macchinari +✅piano +straordinario +senza +precedenti +italia +assunzioni +donne +uomini +forze +ordine +avanti +tutta +dalleparoleaifatti +bella +novità +ascoltate +bene +nave +organizzata +centri +sociali +vagherà +mediterraneo +ricerca +immigrati +sbarcare +coste +vogliono +vadano +vogliono +italia +nisba +😘 +camorra +violenza +ignoranza +povertà +culturale +combatteremo +attraverso +mezzi +possibili +sentire +ogni +singolo +camorrista +schifo +decreto +sicurezza +immigrazione +decretosalvini +intervento +oggi +canale +pensiero +speciale +juncker +😊 +cancellate +decreto +cancelliamo +salvini +secondo +sinistra +sparge +odio +😞 +quando +ospiti +spera +regolari +paese +straniero +bisognerebbe +entrare +punta +piedi +rispettare +cultura +leggi +istituzioni +no +ragazzi +incontrati +ieri +napoli +selfie +salvini +buon +ministro +grazie +😊 +qualcuno +video +andrà +traverso +diretta +napoli +presieduto +comitato +ordine +sicurezza +pubblica +seguite +diretta +giornale +tablò +sempre +diretta +genova +diretta +inaugurazione +distaccamento +vigili +fuoco +genova +est +diretta +ostia +roma +sfilata +occasione +50º +anniversario +associazione +nazionale +polizia +stato +interverrò +grande +orgoglio +uomini +donne +divisa +state +grazie +latina +spettacolo +ricompense +belle +orgoglioso +aver +indossato +sera +maglia +polizia +stato +giorno +patrono +san +michele +arcangelo +orgoglioso +altro +governo +previsto +piano +assunzione +10mila +uomini +donne +forze +ordine +vedeva +anni +voglio +lasciare +figli +paese +piú +sicuro +detto +mollo +diretta +latina +diretta +giornata +mondiale +sordo +roma +seguitemi +madre +notizia +arresto +detto +stato +fatelo +soffrire” +accordo +punizione +esemplare +schifosi +compagni +criminali +meglio +romania +abbattuta +ex +scuola +monteverdi +marghera +venezia +ricettacolo +sbandati +delinquenti +ministero +interno +già +accordo +comune +posto +sorgerà +nuova +questura +altra +ottima +notizia +😃 +tunisi +conferenza +stampa +diretta +ministero +interno +collega +tunisino +live +tunisi +ministero +interno +grazie +eroici +vigili +fuoco +professionalità +rapidità +intervento +scongiurato +danni +persone +limitato +danni +abitazioni +provincia +pisa +unità +altro +compresi +volontari +canadair +elicotteri +erickson +s64 +azione +spegnere +fiamme +mettere +sicurezza +zona +consentire +sfollati +tornare +presto +case +ieri +sera +porro +rete +spiegato +nuovo +decretosalvini +dettagli +aiutatemi +condividere +rete +diretta +roma +palazzo +chigi +nato +decretosalvini +sicurezza +immigrazione +ve +parlo +volete +vedere +rivedere +intervento +ieri +sera +giletti +eccolo +commento +libero +ora +diretta +insieme +pradamano +udine +matera +arrestato +nigeriano +prende +bastonate +impalcatura +auto +contento +aggredisce +uomini +polizia +follia +ogni +giorno +agenti +rischiano +vita +altro +fronte +delinquenti +vanno +tutelati +decreto +sicurezza +vogliamo +estendere +utilizzo +taser +poliziotti +municipali +comuni +100mila +abitanti +sempre +parte +forze +ordine +ruspa +campo +rom +ieri +pisa +ora +smantellati +solo +capannoni +vuoti +già +lavorando +sgomberare +completamente +accampamento +entro +pochi +mesi +bene +così +comune +regione +paese +governa +lega +passa +parole +fatti +genova +città +viva +ancora +bella +apre +mondo +voglia +correre +ponte +genova +fare +bene +fare +fretta +città +bisogno +affetto +presenza +futuro +dirigenti +autostrade +cuore +accoglieranno +scelte +verranno +fatte +senza +andare +cercare +cavilli +ricorsi +vari +tenerezza +nonni +emigravano +uguale +dopo +aver +ridotto +drasticamente +sbarchi +costo +farmi +indagare +italia +farmi +insultare +ipocriti +buonisti +mezzo +mondo +comunque +altro +medaglia +decretoimmigrazione +arrivo +finalmente +nuovi +strumenti +espellere +italia +delinquenti +mollo +💪 +proposta +lega +prevede +sacrosanto +diritto +difendersi +interno +propria +abitazione +trovo +casa +persona +armata +mascherata +notte +me +capire +arma +altro +finta +diritto +difendermi +senza +senza +disarmare +punire +aggressori +difendere +aggrediti +ladri +rapinatori +pacchia +finita +fatto +stupro +lì” +dice +ricco +fotografo +vip” +schifo +viene +voglia +querelarlo +ancora +intellettuali” +sinistra +mattina +presentato +viminale +risultati +operazione +spiaggesicure +coinvolto +comuni +permesso +sequestro +340mila +oggetti +contraffatti +molti +quali +nocivi +altro +salute +ringrazio +donne +uomini +polizia +stato +carabinieri +guardia +finanza +polizia +locale +tanti +comuni +coinvolti +ottimo +lavoro +dalleparoleaifatti +amici +ripropongo +intervento +ieri +sera +floris +sembra +ora +mostro +recuperato +grazie +operazione +spiagge +sicure +seguitemi +diretta +viminale +presentarvi +risultati +operazione +spiagge +sicure +sorpresa +vuole +venire +italia +deve +rispettare +italiani +punto +decretoimmigrazione +arrivo +torna +buonsenso +dopo +ingiustizie +sofferenze +causate +legge +fornero +priorità +restituire +diritto +pensione +milioni +italiani +lavorando +obiettivo +quota +altro +permettendo +così +ingresso +tanti +giovani +mondo +lavoro +dopo +immigrazione +ora +tocca +economia +dalleparoleaifatti +ripropongo +intervento +altra +sera +paderno +dugnano +vicino +milano +poi +voglia +diretta +canale +barbara +urso +val +susa +”bravi +ragazzi” +assalto +polizia +denunciati +galera +ora +diretta +fano +marche +seguite +là +isteria +qualche +lussemburghese +molti +estero +tornati +vedere +paese +baluardo +può +rinascere +europa +molti +parlamentari +ministri +presidenti +commissari +europei +privato +dicono +finalmente +arrivato +governo +governa +italia +mesi +governo +mila +sbarcati +meno +rispetto +anno +scorso +diceva +può +fare +niente +volere +potere +paragona +nonni +emigrati +clandestini +sbarcano +oggi +vuole +immigrati +europa +conclude +urlando +merda” +lussemburgo +paradiso +fiscale +può +dare +lezioni +italia +nessuno +normale +ministro +diretta +sede +governo +austriaco +vienna +conferenza +stampa +amico +vicecancelliere +strache +videointervista +time +guardatela +spero +aver +raccontato +chiarezza +pubblico +internazionale +idea +italia +europa +diretta +quartiere +libertà +bari +altra +diciotti +ecco +cosa +volere +potere +democratici” +figli +papà +occupano +palazzina +milano +grido +salvini +merda” +sgomberati +polizia +annunciano +altri +presidi +solidarietà” +me +tutte +città +secondo +nulla +meglio +fare +avanti +tutta +ogni +anno +italia +dà +onu +milioni +euro +signori +permettono +dare +lezioni +italiani +valuteremo +utilità +continuare +versare +così +tanti +soldi +finanziare +sprechi +mangerie +razzismo +vadano +cercarlo +altrove +quando +video +vale +mille +articoli +giornale +onu +buonisti +fatelo +girare +salvini +fatto +alcun +sequestro +persona +indagato” +fa +piacere +sentirlo +dire +magistrato +grande +esperienza +carlo +nordio +grazie +ottobre +parte +4ª +edizione +scuola +formazione +politica +lega +occasione +studio +ascolto +confronto +approfondimento +crescita +partecipato +ragazze +altro +ragazzi +creano +legami +creano +amicizie +nascono +idee +nasce +voglia +partecipare +essere +protagonisti +futuro +grazie +armando +siri +squadra +aver +creato +bellissima +realtà +invidiano +aspettiamo +✏️ +info +iscrizioni +www +scuoladiformazionepolitica +it +spacciatori +morte +stranieri +stati +arrestati +salento +dopo +lunga +operazione +sotto +copertura +uomini +polizia +lecce +fiero +forze +ordine +sempre +prima +altro +linea +ristabilire +ordine +legalità +paese +decretosicurezza +mente +delinquenti +meritano +solo +galera +irregolari +espulsione +finita +pacchia +raffinata +signora +diciamo +anziché +occupare +altri +casa +può +prendere +affitto +milioni +italiani +onesti +sbaglio +proprietà +privata +sacra +promesso +fatto +difendere +confini +fermare +invasione +paese +possono +indagarmi +altre +cento +volte +continuerò +farlo +tradirò +mandato +ricevuto +italiani +ascoltate +grande +mario +giordano +ipocrisia +pensiero +unico +monti +confessa +gente +chiede +tornare +politica +😱 +conoscete +qualcuno +ringrazio +m +voluto +bene +m +voluto +male +dopo +mesi +battaglie +fatta +bentornata +nonna +peppina +tutta +italia +vuole +bene +diretta +viminale +presentarvi +direttiva +scuole +sicure +vista +inizio +anno +scolastico +mai +spacciatori +morte +davanti +scuole +figli +seconda +parte +diretta +viminale +presentarvi +direttiva +scuole +sicure +vista +inizio +anno +scolastico +mai +spacciatori +morte +davanti +scuole +figli +prima +parte +priorità +restituire +diritto +pensione +milioni +italiani +via +fornero +quota +ingresso +tanti +giovani +mondo +lavoro +parole +fatti +molliamo +italia +deve +essere +protagonista +processo +stabilizzazione +mediterraneo +incursioni +altri +interessi +economici +devono +prevalere +bene +comune +pace +altro +personalmente +disponibile +correre +qualche +rischio +tornarci +presto +troppo +importante +libia +finalmente +pacificata +mamma +pelle +oca +emozionato +commosso +davvero +grazie +gente +viterbo +incontrata +splendida +festa +santa +rosa +altro +inchieste +insulti +sondaggi +preferisco +ovviamente +tivù +vedrete +immagini😁 +ora +diretta +festa +lega +alzano +bergamo +amico +mario +giordano +seguite +colpa +salvini +percezione +esagerata +realtà +tolleranzazero +unica +soluzione +pd +definisce +folle” +direttivasgomberi +roba +matti +proprietà +privata +sacra +troppi +italiani +vittime +occupazioni +parte +bisognosi +furbi +violenti +affitti +altro +casa +persona +sbagliata +paga +magari +torni +averne +bisogno +figli +puoi +metterci +anni +tornare +casa +poco +riaprono +scuole +figli +lavorando +spacciatori +morte +finisca +pacchia +piano +scuolesicure +diverse +città +italiane +disposizione +fondo +altro +milioni +euro +incrementare +controlli +assumere +agenti +polizia +locale +tempo +determinato +coprire +costi +straordinari +installare +impianti +videosorveglianza +davanti +scuole +papà +prima +ministro +voglio +figli +possano +andare +scuola +serenamente +senza +presenza +qualche +risorsa” +guadagnarsi +vivere +spaccia +morte +ragazzini +chiedo +troppo +settembre +città +italiane +milano +fino +catania +inizierà +sperimentazione +taser +pistola +elettrica +letale +aiuterà +migliaia +agenti +fare +meglio +lavoro +troppo +altro +tempo +forze +ordine +state +abbandonate +dovere +garantire +migliori +strumenti +poter +difendere +modo +adeguato +popolo +italiano +orgoglioso +lavoro +quotidiano +forze +polizia +carabinieri +premio +capalbio +soliti +radical +chic +indignano +immigrati +clandestini +grido +colpa +salvini +roberto +agostino +fondatore +dagospia +smonta +minuti😁 +grazie +questura +venezia +video +ricordo +sempre +parte +polizia +stato +diretta +milano +premier +ungherese +viktor +orbán +state +buon +pomeriggio +milano +amici +verso +seguite +diretta +pagina +conferenza +stampa +premier +ungherese +viktor +orbán +dopo +tanta +fatica +insulti +bugie +minacce +inchieste +finalmente +soluzione +nave +diciotti +dopo +aver +superato +confine +spagnolo +ceuta +aggredito +agenti +pattuglia +signori +stati +rimandati +marocco +grazie +accordo +internazionale +vent +anni +fa +fa +spagna +altro +bene +propongo +allora +razzista +fascista +disumano +vado +avanti +buonisti +radical +chic +sinistra +stopinvasione +stamattina +rtl +penso +essere +stato +chiaro +ascoltatemi +volete +commentate +ripropongo +intervento +mattina +rai3 +dite +cosa +pensate +commossa +signora +genovese +ringrazia +vigili +fuoco +brescia +impegnati +ricerche +dispersi +sotto +macerie +ponte +secondi +profonda +umanità +emozionanti +applausi +vigili +fuoco +genova +smetteremo +mai +ringraziarvi +fatto +salva +vite +rischiando +propria +merita +solo +tanto +rispetto +altro +ringraziamento +basta +ministro +già +lavoro +assumere +tanti +pompieri +migliorare +stipendi +mezzi +disposizione +italia +diretta +pontida +bergamo +appello +autostrade +aspetto +già +oggi +vengano +sospesi +pagamenti +pedaggi +genova +dintorni +bagno +umiltà +metterei +disposizione +risorse +necessarie +aiutare +sostenere +famiglie +vittime +città +genova +eroe +fa +amare +animali +sotto +ponte +crollato +genova +scelto +essere +fianco +vigili +fuoco +eroi +compresi +splendidi +cani +ieri +lavorando +macerie +coraggio +portargli +abbraccio +genova +arrende +sbagliato +causato +tanto +dolore +dovrà +pagare +seguitemi +diretta +san +luca +reggio +calabria +appena +concluso +riunione +comitato +nazionale +ordine +sicurezza +pubblica +oggi +pomeriggio +andrò +personalmente +genova +accertarmi +volta +nome +cognome +paghi +garantire +soldi +tutte +attenzioni +meno +burocrazia +possibile +sì +genova +torni +subito +sperare +lavorare +viaggiare +amici +ripropongo +intervento +poco +fa +tg4 +aggiornamenti +tragedia +genova +serve +chiarezza +può +esserci +altra +strage +senza +colpevoli +qualcuno +deve +pagare +possibile +morire +così +vincoli +europei +impediscono +spendere +soldi +mettere +sicurezza +scuole +vanno +figli +autostrade +viaggiano +altro +lavoratori +metteremo +davanti +sicurezza +italiani +domani +genova +ringraziare +soccorritori +stare +vicino +famiglie +vittime +accertare +responsabilità +immagini +impressionanti +grazie +centinaia +professionisti +soccorritori +volontari +impegnati +ore +soccorsi +preghiera +vittime +famiglie +promessa +andremo +fino +fondo +accertare +responsabilità +disastro +inaccettabile +imprenditori +artigiani +agricoltori +vanno +difesi +unghie +denti +riso +cambogiano +carne +sudamericana +lascio +altri +voglio +mangiare +bere +italiano +😁 +sassari +rom +anni +figli +infrange +obbligo +dimora +ruba +borsetta +anziana +signora +ipovedente +busta +pensione +appena +ritirata +sotto +occhi +figlio +altro +quindicenne +fa +palo +par +normale +italia +spazio +delinquenti +genere +pronta +democratica +pacifica +ruspa +oggi +gr1 +ribadito +aquarius +carico +clandestini +sicuramente +arriverà +porto +italiano +buonisti +felice +aver +potuto +parlare +spero +chiarezza +ora +jazeera +propongo +intervista +versione +italiana +commentate +condividete +lotta +mafia +schiavismo +sfruttamento +lavoro +nero +immigrazione +clandestina +priorità +assoluta +delinquenti +italia +pacchia +finita +ripropongo +intervista +ieri +sera +tg2 +leggo +commenti +seguitemi +diretta +festa +lega +arcore +monza +brianza +avanti +tutta +pensiero +vittime +feriti +terribile +esplosione +borgo +panigale +grazie +cuore +vigili +fuoco +prontamente +intervenuti +posto +capriata +orba +alessandria +seguite +prima +parte +immigrati +insultano +salvini +vaffanculo” +invece +mando +grandissimo😘 +pacchia +stra +finita +rilassatevi +prima +italiani +manifestazione +anti +razzista” +milano +pd +lamentano +essere +po +pochini +ragazzi +andrà +meglio +prossima +volta +😃 +italia +morendo +tasse +prossima +manovra +economica +parte +rivoluzione +fiscale +qualcuno +estero +piacerà +pazienza +fermare +qualche +rimbrotto +rivoluzionedelbuonsenso +seguitemi +diretta +cerimonia +giuramento +82º +corso +vigili +fuoco +roma +centro +sociale +abusivo +sgomberato +milano +polizia +cittadini +quartiere +ringraziano +ultima +boldrini +salvini +professore +paura” +accidenti +😱 +dite +verità +po +mancava +😀 +anziché +passare +giornata +insultare +forse +sinistra +dovrebbero +chiedersi +voti +piú +nessuno +primagliitaliani +sondaggi +spiaggia +romagnola +dicono +strada +giusta +vuole +male +inviamo +solo +sorrisi +😀 +insulti +radical +chic +presunti +vip +intellettuali +italia +estero +toccano +minimamente +basta +affetto +avanti +tutta +💪 +parole +fatti +regalo +bello +potrei +ricevere +splendida +signora +compiuto +anni +appena +rinnovato +tessera +lega +grazie +nonna +bruna +grande +abbraccio +😘 +fontevivo +parma +spettacolo +sondaggi +preferisco +seguite +condividete +live +vuole +male +evviva +eclissi +luna +pd😁 +italia +circa +mila +rom +problema +riguarda +solo +quei +mila +ostinano +vivere +campi +confini +legalità +piena +illegalità +fermare +pare +solo +questione +buonsenso +irrispettosa +copertina +fermerà +mollo +fanculo +salvini +vincitrice +premio +furbizia +estate +😁 +diretta +senato +state +🔴 +lavorando +decreto +sicurezza +permetterà +altre +cose +bloccare +domanda +asilo +commette +reati +incredibilmente +oggi +legge +eccetto +alcuni +casi +gravissimi +altro +consente +delinquenti +stranieri +continuare +chiedere +ricevere +protezione” +spese +italiani +finita +pacchia +tolleranzazero +bruxelles +chiediamo +elemosine +italia +bisogno +dignità +riprendendo +primagliitaliani +domanda +rifaresti +viaggio +risposta +no +informazione +paesi +origine +eviterebbe +tante +morti +tanti +nuovi +schiavi +ascoltate +testimonianza +illuminante +minuti +primi +giorni +governo +chiesto +cosa +vorrà +essere +ricordato +ascoltate +ditemi +accordo +stato +onorato +stringere +tutte +mani +nome +difende +sempre +arrestati +membri +equipaggio +barcone +pozzallo +siriani +tunisini +algerino +egiziani +parole +fatti +ora +però +galera +ora +diretta +prefettura +fermo +spettacolo +mollo +spettacolo +silvi +teramo +festeggiamo +insieme +primo +sindaco +lega +abruzzo +diretta +verona +seguitemi +odio +lega +odio +salvini +clandestini +mondo +bello +vario +alema +emergenza +sbarchi +salvini +detto +mette +quasi +buon +umore +😁 +reggio +calabria +lunedì +firmato +registro +‘ndrangheta +guerra +mafie +senza +quartiere +possibile +presente +fisicamente +territorio +segnalare +vicinanza +stato +governo +impegnato +quotidianamente +lotta +criminalità +organizzata +difendere +frontiere +esterne +ridurre +partenze +aiutare +autorità +libiche +penso +finalmente +europa +cominciato +lavorare +seriamente +tema +immigrazione +diretta +innsbruck +seguite +ora +vertice +europeo +immigrazione +portare +spero +modo +chiaro +deciso +voce +italiani +live +innsbruck +colleghi +ministri +interni +austriaco +tedesco +kickl +seehofer +seguitemi +innsbruck +incontro +molto +positivo +italia +germania +meno +sbarchi +meno +morti +meno +immigrati +clandestini +comincia +percorso +comune +paesi +risolvere +problemi +obiettivo +rimane +ridurre +arrivi +aumentare +espulsioni +iniziata +guerra +senza +quartiere +tutta +italia +mattina +palmi +reggio +calabria +consegnato +personalmente +chiavi +palazzina +confiscata +famiglia +mafiosa +polizia +altro +stato +diventerà +commissariato +voglio +sequestrare +fino +ultimo +centesimo +euro +gentaglia +me +ndranghetisti +scafisti +stessa +feccia +lamafiamifaschifo +sbarchi +domande +asilo +politico +immigrati +mantenuti +case +alberghi +digiunanti” +buonisti +abbastanza +salvini +mussolini” +tenerezza +buon +digiuno +doppio +panino +salame +salute +😁 +finché +navi +mediterraneo +aiuteranno +scafisti +fare +sporco +mestiere +partenze +morti +fermeranno +stufo +vedere +gente +innocente +morire +mare +magliette +rosse” +incontrate +oggi +fate +ciao +ciao +😃 +disumanità +permesso +anni +scorsi +immigrazione +senza +controllo +senza +freni +crea +nuovi +schiavi +sfruttati +altro +criminalità +organizzata +situazioni +vergognose +tendopoli +san +ferdinando +visitata +oggi +occorrono +limiti +regole +ordine +rispetto +civiltà +impegno +massimo +rimediare +disastri +governi +preceduto +ora +visita +comando +generale +arma +carabinieri +roma +poi +aggiorno +ricordando +giornata +domenica +scorsa +pontida18 +rimarrà +sempre +cuore +perugia +altra +brillante +retata +polizia +ringrazio +arrestati +profughi” +nigeriani +spaccio +eroina +parchi +vende +morte +città +fingendosi +bisognoso +asilo +protezione +verme +volte +fuori +italia +delinquenti +tolleranzazero +contento +primi +giorni +governo +onore +onere +ringrazio +ogni +giorno +italiani +continuerò +mettercela +tutta +tenervi +informati +possibile +spero +dopo +fase +iniziale +sperimentazione +taser +potrà +essere +dotazione +agenti +tutte +città +italiane +sicurezza +efficacia +azione +forze +ordine +anno +scorso +1° +giugno +luglio +altro +governo +altro +ministro +sbarcate +persone +quest +anno +data +insediamento +oggi +sbarcate +obiettivo +sbarchino +ancora +meno +business +immigrazione +clandestina +finito +oltre +disoccupazione +giovanile +presidente +inps +può +dire +vogliono +immigrati +pagarci +pensioni +insulto +confronti +italiani +sbaglio +voglio +agenzia +beni +confiscati +mafiosi +triplichi +organico +efficacia +presto +palmi +calabria +appartamenti +sequestrati +diventeranno +commissariato +polizia +mafiosi +camorristi +sappiano +pacchia +finita +fuori +italia +lamafiamifaschifo +domenica +rimarrà +cuore +vissuta +distanza +obiettivo +esserci +persona +anno +prossimo +pontida18 +primagliitaliani +gusto +fare +bagno +piscina +confiscata +boss +mafioso +spettacolo +palio +complimenti +contrada +drago +volete +vederlo +rivederlo +ecco +intervento +domenica +pontida +me +sempre +grandissima +emozione +primagliitaliani +pontida +giornata +grazie +fantastici +appena +arrivato +pontida18 +già +spettacolo +seguitemi +live +😍 +ora +diretta +milano +festival +lavoro +detto +fatto +scafisti +complici +italia +dice +no +diretta +festa +lega +caravaggio +bergamo +seguitemi +live +😊 +rom +parole +fatti +roghi +tossici +furti +ricettazione +mila +euro +beni +sequestrati +svariati +arresti +campo +rom +torino +stato +volte +complimenti +carabinieri +altro +blitz +confronti +situazioni +unica +soluzione +tolleranza +zero +aria +cambiata +regole +devono +valere +mattina +stato +assemblea +nazionale +confartigianato +senza +bacchette +magiche +aiutare +piccoli +ultimi +anni +fatto +tanto +solo +grandi +viva +artigiani +italiani +difenderemo +ogni +mezzo +interessi +italiani +libici +comuni +proteggere +proprie +frontiere +esterne +disponibili +accogliere +fugge +realmente +guerra +guerra +scappano +diretta +ministero +interno +dichiarazioni +dopo +viaggio +libia +seguitemi +diretta +tripoli +conferenza +stampa +vicepremier +libico +ahmed +maitig +paesi +europei +francia +propongono +creazione +hotspots +accoglienza +italia +problema +libia +stessa +flussi +morte +verrebbero +altro +interrotti +invece +proposto +centri +accoglienza +posti +confini +sud +libia +evitare +tripoli +diventi +imbuto +italia +oggi +comuni +ballottaggio +conto +primagliitaliani +certe +navi +devono +scordare +italia +stop +business +immigrazione +clandestina +musica +cambiata +metto +tutta +ora +diretta +marina +pietrasanta +seguite +diretta +splendida +siena +ora +terni +ferma +perduto +amici +ecco +intervista +mattina +agorà +spiegato +lavorando +bloccare +immigrazione +clandestina +restituire +sicurezza +futuro +italiani +leggo +commenti +prossimi +giorni +libia +italia +dovrà +riprendere +ruolo +centrale +garantire +stabilità +tutta +area +offrendo +collaborazione +solo +tema +immigrazione +sviluppo +economico +quel +paese +riguardate +me +intervento +ieri +sera +vespa +spero +aver +portato +voce +tanti +italiani +scafisti +complici +italia +dice +stop +ridurre +partenze +morti +difendere +confini +italiani +vado +avanti +maxi +blitz +notte +carabinieri +opera +provincia +bergamo +trenta +immigrati +clandestini +molti +quali +precedenti +penali +spalle +stati +fermati +sempre +grazie +altro +forze +ordine +ora +italia +torni +moda +legalità +https +www +ecodibergamo +it +stories +bassa +bergamasca +maxi +blitz +carabinieri +zingoniaperquisiti +palazzi +anna +armi +dr +ragazze +ragazzi +bocca +lupo +maturità +po +invidio +potessi +tornerei +anni +manzoni +milano +italiano +latino +scritto +greco +storia +orale +finale +maturità2018 +diretta +amici +skuola +net +saluto +bocca +lupo +ragazzi +domani +iniziano +esami +maturità +ricordando +notteprimadegliesami +fino +scorsa +settimana +nessuno +filava +andava +cappello +mano +adesso +italia +torna +essere +paese +orgoglio +confini +dignità +primagliitaliani +ieri +sera +giletti +ricordato +prima +usavano +neppure +bisogno +parlarci +italia +davano +scontata +ora +musica +cambiata +capito +intenzione +fermarmi +salvini +mussolini +dice +andare +africa +costruire +case +manca +solo +canti +faccetta +nera +offese +vicesindaco +buonista +valencia +rispondo +bel +bacione😘 +ieri +sera +sondrio +spettacolo +forza +domenica +ballottaggi +dobbiamo +portare +buongoverno +ancora +tanti +comuni +bastano +minuti +tempo +scegliere +sindaci +sostenuti +lega +primagliitaliani +renzi +dà +bullo” +nulla +rispondere +già +risposto +italiani +mandandolo +casa +diretta +cinisello +balsamo +milano +domenicavotolega +odio +lega +apriamo +porti +mandiamo +via +salvini +odiamo +nessuno +mandiamo +😘 +pontida +vera +fatta +solo +sorrisi +speranza +futuro +appuntamento +domeniche +1° +luglio +aspetto +mare +aquarius +approda +spagna +prima +volta +nave +partita +libia +destinata +italia +attracca +paese +diverso +segno +qualcosa +cambiando +piú +zerbini +europa +ultima +tappa +giornata +ivrea +torino +orbassano +torino +grazie +amici +conto +domenica +giugno +ultimo +sforzo +portare +centinaia +comuni +italiani +buon +governo +lega +live +genova +intervista +ieri +sera +radio +matrix +seguite +commentate +minuto +parola +verità +spero +nome +bambini +morti +bestie +mar +mediterraneo +schifoso +business +immigrazione +mai +taciuto +tacerò +adesso +ecco +intervento +sera +gruber +la7 +linea +dura +solo +buonsenso +dovere +garantire +sicurezza +milioni +italiani +condividete +gino +strada +salvini +ministro +razzista +sbirro” +senza +parole +stop +trafficanti +esseri +umani +difendiamo +confini +mollo +amici +chiudiamoiporti +soli +giorni +governo +lavorando +recuperare +quasi +anni +ritardi +buonismo +obiettivo +ridurre +sbarchi +aumentare +espulsioni +tagliare +costi +mantenimento +altro +presunti +profughi +tempi +permanenza +italia +coinvolgendo +istituzioni +europee +internazionali +fino +oggi +lasciato +italiani +soli +sapremo +farci +ascoltare +pensiero +valsusini +bussoleno +vivendo +ore +difficili +grazie +vigilidelfuoco +coloro +impegnati +soccorso +confcommercio2018 +produce +resiste +commercianti +partite +iva +imprese +bisogno +pace +fiscale +flat +tax +eliminazione +spesometri +redditometri +studi +settore +burocrazia +impegno +governogialloblu +linea +azione +ministro +aumentare +numero +centri +rimpatri +modo +immigrati +dentro +girino +città +confusione +ridurre +numero +sbarchi +aumentare +numero +espulsioni +immigrati +regolari +nulla +temere +sembra +solo +buonsenso +brindisi +lega +spettacolo +domenicavotolega +incredibile +giornalisti +italiani +riescano +inventarsi +bugie +mattina +sera +ecco +intervista +dico +chiaramente +obiettivo +paghino +meno +tasse +ascoltate +aiutatemi +diffondere +possibile +venditori +aggrediscono +carabinieri +durante +controllo +mandano +ospedale +invio +tutta +solidarietà +auguri +buona +guarigione +serve +tolleranzazero +espulsioni +clandestini +restituzione +città +clima +legalità +obiettivo +clandestini +devono +tener +presente +italia +pacchia +solo +finita +stra +finita +ancora +pace +fiscale +flat +tax +tutela +agricoltura +pesca +turismo +segno +made +italy +stop +altro +aumenti +iva +no +ius +soli +difesa +lavoro +pensioni +sicurezza +rispetto +comincia +bella +avventura +gente +perbene +motivata +onesta +pulita +concreta +comincia +rivoluzione +buonsenso +primagliitaliani +pronto +settimana +prossima +prendere +aereo +incontrare +ministro +interno +tunisino +obiettivo +salvare +vite +sì +ognuno +meglio +casa +diritto +vivere +crescere +metter +famiglia +paese +nati +sbaglio +live +roma +grande +mario +giordano +pochi +giornalisti +liberi +rosiconiasinistra +volte +cose +improvvisate +belle +me +migliori +sondaggi +grazie +catania +domenicavotolega +nuovo +treviso +sostenere +candidato +sindaco +lega +mario +conte +10giugnovotolega +live +momento +foto +rito +diretta +quirinale +state +diretta +quirinale +ecco +altra +inquadratura +ultime +ore +lavoro +governo +mettendo +tutta +intanto +cronaca +riporta +dura +realtà +immigrato +spenna +piccioni +pieno +giorno +mezzo +strada +casa +ieri +sera +la7 +mollo +dite +andato +sestri +levante +live +massa +emozionato +grazie +massa +ancora +live +pisa +live +siena +ragazzi +molliamo +primagliitaliani +italia +sotto +attacco +insiemesultetto +mattina +parlato +rai +radio +dite +andato +leggo +commenti +bambino +poteri +forti +vince +bambino +iostoconfabio +amici +stasera +impegni +aspetto +canale +matrix +nicola +porro +live +roma +live +brutta +giornata +italia +democrazia +pronto +pronto +occuparmi +immigrazione +sicurezza +niente +qualcuno +oggi +detto +no +governo +cambiamento +poteva +altro +nascere +signori +spread +banche +ministri +berlino +parigi +bruxelles +accordo +rabbia +tanta +paura +zero +cambieremo +paese +insieme +mollo +amici +conto +prima +italiani +grazie +terni +terni +seguite +live +altra +festa +lega +ora +dalmine +sempre +provincia +bergamo +😀 +amici +ripropongo +intervento +oggi +dopo +incontro +professor +conte +vorrei +italia +torni +contare +europa +mondo +insieme +può +rimanete +sintonizzati +dopo +colloquio +professor +conte +aggiorno +qualche +minuto +parlare +insiemesultetto +semplicemente +disumano +colorno +parma +maestre +state +arrestate +accusa +aver +picchiato +maltrattato +bimbi +anni +difendere +può +difendere +bambini +disabili +anziani +ogni +mezzo +possibile +telecamere +comprese +ossessione +salvini +legge +fornero +dice +ancora +coraggio +parlare +pontificare +ossessionati +milioni +italiani +legge +rovinato +vita +daranno +possibilità +subito +stopfornero +fatto +lavoro +sforzi +possibili +pronti +tempo +perdere +cambia +italia +vota +intervento +oggi +quirinale +parlato +testa +cuore +ministri +francesi +occupino +francia +italia +pensiamo +mettano +anima +pace +contrario +fatto +governi +precedenti +sbaglio +andiamoagovernare +orrore +roma +caricata +forza +auto +picchiata +stuprata +branco +sentito +qualche +commento +femministe +casa +vorrei +lavorare +italia +delinquenti +paura +stranieri +vengano +espulsi +marciscano +paese +roba +matti +vogliono +reddito +accoglienza +grido +stop +salvini +dico +stop +clandestini +tutta +africa +italia +spero +potermi +mettere +presto +lavoro +cominciare +rimediare +disastri +pd +immigrazione +rivoluzionedelbuonsenso +andiamoagovernare +provano +fermarci +soliti +ricatti +spread +sale +borse +scendono +minacce +europee +stavolta +cambia +lavoro +meno +clandestini +sicurezza +meno +tasse +primagliitaliani +minacce +insulti +ricatti +spaventano +danno +forza +prima +italiani +cambia +vota +bloccano +traffico +pretendono +cibo +buono +migliori +condizioni +vita +carta +identità +lavoro +altro +governi +tecnici +neutrali +serve +governo +forte +espellere +signori +esponenti +clan +nomadi +stanziali +roma +picchiano +sangue +ragazza +disabile +poi +barista +distruggono +locale +solo +parole +vergogna +schifo +tolleranzazero +criminali +stufo +smettono +litigare +fare +governo +mantenere +impegni +presi +italiani +immigrazione +lavoro +tasse +sicurezza +oppure +meglio +tornare +chiedere +fiducia +direttamente +basta +perdere +tempo +cambia +vota +dichiarazioni +mattina +quirinale +grazie +ascolto +supporto +amici +quirinale +rimanete +collegati +uscita +colloquio +presidente +repubblica +dico +com +andata +confermo +chiamate +medico +pdclandestino +primagliitaliani +qualche +minuto +insieme +seguite +ecco +cosa +detto +sera +tg +mentana +la7 +ascoltate +datemi +parere +amici +me +palco +ieri +sera +sergio +bramini +imprenditore +fallito +causa +stato +ladro +pagato +milioni +crediti +ora +rischia +sfratto +vergogna +vedo +ora +riportare +po +normalità +paese +pronto +primagliitaliani +sergio +cerco +venire +presto +trovarti +marea +udine +grazie +ricomincia +invasione +persone +sbarcate +sole +ore +italia +bisogno +governo +serio +coerente +sbaglio +smettono +litigare +poltrone +pronto +stopinvasione +programmi +differenza +altri +cambiano +seconda +convenienze +ridurre +tasse +tagliare +po +burocrazia +mandare +pensione +persone +dopo +anni +lavoro +me +rimangono +altro +priorità +domenica +ogni +voto +lega +serve +vincere +friuli +venezia +giulia +vincere +tutta +italia +domenicavotolega +fedrigapresidente +buongiorno +gradisca +isonzo +gorizia +presunti +profughi +cominciando +ennesima +giornata +giochi +bici +tempo +libero +tanto +pagano +italiani +tuttiacasa +ascoltate +luca +zaia +miglior +governatore +italia +domenica +friuli +venezia +giulia +voto +lega +fedriga +presidente +vince +futuro +vince +friuli +venezia +giulia +vince +italia +andiamoagovernare +coerenza +idee +chiare +domenica +ogni +voto +lega +friuli +venezia +giulia +mandare +casa +pd +sinistra +portare +regione +modello +buongoverno +conto +domenicavotolega +fedrigapresidente +tolmezzo +udine +piccolo +supermercato +spettacolari +prodotti +locali +altro +megacentri +commerciali +difendiamo +valorizziamo +ricchezze +cultura +sapori +tradizioni +mercato +tolmezzo +buongiorno +amici +trieste +seguite +grazie +isernia +molise +esiste +eccome +sorrisi +abbracci +splendida +accoglienza +capire +domani +giorno +importante +molise +lega +ora +tocca +⚪️🔴 +domenicavotolega +minuti +ripropongo +intervista +ieri +sera +debbio +rete +leggo +commenti +isernia +spettacolo +incontro +roma +presidente +casellati +rimanete +collegati +uscita +dico +com +andata +numeri +imposti +europa +me +viene +prima +benessere +italiani +chiedo +troppo +primagliitaliani +maledetti +fa +picchiare +anziani +indifesi +telecamere +asili +case +riposo +punizioni +severe +vigliacchi +record +ascolti +ieri +sera +la7 +ripropongo +intervista +commento +libero +andiamoagovernare +molise +fretta +italia +fretta +minuti +principio +sempre +testa +primagliitaliani +domenicavotolega +giornata +molise +conclude +campobasso +sala +strapiena +tanta +gente +perbene +piazza +strapiena +montenero +bisaccia +molise +diretta +villaggio +ospitò +terremotati +san +giuliano +puglia +molise +sinistra +vuole +trasformare +nuovo +centro +immigrati +lega +dice +no +sondaggi +preferisco +qualche +minuto +insieme +bombe +litigi +arroganza +polemiche +perdite +tempo +costruisce +niente +andiamoagovernare +pronto +servizio +sconvolgente +dovrebbero +guardare +attenzione +vorrebbero +ingresso +turchia +europa +intervento +mattina +rai +radio +ascoltate +commentate +ora +quirinale +nuovo +incontro +presidente +repubblica +rimanete +sintonizzati +qualche +minuto +insieme +certezza +missili +bombe +risolveranno +nessun +problema +anzi +porteranno +altra +morte +disperazione +fermatevi +ieri +incontrato +roberto +vivo +vincitori +settimanali +vinci +salvini” +vinto +caffè +visto +orario +optato +spritz +😄 +brugnera +pordenone +spettacolooo +29aprile +fedrigapresidente +spilimbergo +massimiliano +fedriga +ora +treviso +seguite +minuti +ecco +intervento +oggi +dopo +incontro +presidente +mattarella +leggo +volentieri +commenti +anni +goldrake +guardava +alabarda +spazialeee +😀 +servizio +dovrebbero +guardare +sempre +convinto +italia +serva +ministero +dedicato +disabili +pensi +famigliari +assistono +amore +sacrificio +pochissimo +aiuto +recenti +soddisfazioni +aver +incontrato +settimana +scorsa +isernia +ragazzo +anni +intervistato +servizio +conosciuto +facebook +venuto +ascoltarmi +altro +grazie +aprile +vota +regionali +molise +tornerò +prestissimo +aspetto +grande +risultato +lega +centrodestra +primagliitaliani +qualche +minuto +insieme +stati +protagonisti +rivoluzione +grazie +me +grande +orgoglio +grande +responsabilità +meno +tasse +soldi +tasche +imprenditori +lavoratori +economia +paese +riparte +lavorando +giorno +dopo +giorno +rendere +ciò +possibile +primagliitaliani +primaillavoro +sala +strapiena +isernia +molise +seguite +grazie +viterbo +lega +primagliitaliani +europa +danneggiando +paese +ricostruita +base +interessi +popoli +europei +vogliamo +mantenere +coerenza +reputiamo +fondamentale +futuro +paese +altro +possiamo +pensare +governare +costringendoci +rispettare +parametro +massimiliano +fedriga +deputato +lega +salvini +premier +facciamosquadra +andiamoagovernare +cancellare +legge +fornero +ridurre +tasse +espellere +criminali +clandestini +programma +chiaro +vedo +ora +passare +parole +fatti +rispettando +fiducia +milioni +italiani +deciso +scegliere +lega +andiamoagovernare +fare +vittima +mestiere +amici +ascoltate +folli +parole +barbara +balzerani +ex +brigatista +componente +gruppo +criminale +ucciso +agenti +scorta +sequestrato +giustiziato +moro +mai +pentita +né +dissociata +vergogna +ascoltate +massimo +giletti +giornalista +schiena +dritta +coraggio +proprie +idee +francia +basilica +invasa +reclamare +diritti +clandestini +roba +matti +europa +vogliamo +lasciare +figli +udine +qualche +minuto +insieme +ieri +canale +record +ascolti +grazie +fiducia +dimostrate +metterò +tutta +poco +diretta +canale +parlare +grazie +amici +calabresi +fiducia +ricompensa +migliore +metterò +tutta +dare +paese +governo +possa +restituire +milano +rosarno +futuro +figli +qua +altra +parte +mondo +andiamoagovernare +oggi +pomeriggio +lamezia +terme +catanzaro +dire +ancora +volta +grazie” +calabria +regalato +emozione +incredibile +grande +responsabilità +voglio +ridare +dignità +rispetto +splendida +terra +primagliitaliani +votato +lega +flat +tax +assurdo +avere +tassazione +veneto +puglia +imprenditori +scelto +lega +vogliono +concretezza +meno +tasse +zero +burocrazia +pace +fiscale +diceva +tassa +unica +ingiusta +poteri +forti +europei +vogliono +italia +debole +dobbiamo +rispondere +governo +forte +immigrazione +europa +legge +fornero +flat +tax +ecco +cosa +dobbiamo +lavorare +rilanciare +economia +altro +quindi +occupazione +italia +temi +lega +cercherà +maggioranza +parlamento +giancarlo +giorgetti +deputato +lega +salvini +premier +facciamosquadra +andiamoagovernare +ora +trento +seguite +primagliitaliani +primaillavoro +ora +diretta +san +giovanni +lupatoto +provincia +verona +prima +italiani +prima +lavoro +san +giovanni +lupatoto +verona +accoglienza +spettacolare +poco +live +pagina +primagliitaliani +rosicano +alcuni +giornalisti +sinistra +abbraccio +grazie +centinaia +ragazzi +ragazze +donne +uomini +ultimi +anni +partecipato +scuola +formazione +politica +esperienza +tanti +invidiano +altro +punto +incontro +confronto +mai +banale +idee +diverse +continuiamo +cosí +andiamoagovernare +iscrizioni +http +www +scuoladiformazionepolitica +it +scuola +formazione +politica +diretta +strasburgo +milano +ultima +giornata +scuola +politica +centinaia +ragazzi +ragazze +dedicato +tempo +energia +lavoro +futuro +paese +state +andiamoagovernare +modo +migliore +festeggiare +compleanno +😀 +live +milano +state +milano +incontro +nuovi +parlamentari +lega +ora +mercato +milano +lega +sempre +mezzo +gente +prima +dopo +elezioni +abbraccio +tutte +amiche +comunità +tutta +italia +gioia +emozione +orgoglio +grazie +italia +torna +avere +futuro +ascoltare +verona +cibo +signorini +fa +schifo +ringraziare +bloccano +traffico +buttando +cassonetti +strada +insulto +italiani +difficoltà +oggi +cambia +musica +oggivotolega +stopinvasione +primagliitaliani +pazzesco +spero +cittadino +rumeno +anni +capiti +mai +mani +figli +nipoti +anziane +prendeva +pugni +scopo +rapina +verme +schifoso +grazie +polizia +stato +milano +spero +marcisca +galera +altro +indulti +oggivotolega +📌buonsenso +spalancare +porte +università +merito +raccomandazioni +usa +buonsenso +scegli +chiarezza +vota +futuro +☑ +domenicavotolega +ora +mai +stopinvasione +oggivotolega +oggi +scelta +vita +prossimi +anni +scegli +rivoluzione +buonsenso +scegli +prima +italiani +oggi +vota +lega +basta +x +simbolo +oggivotolega +tempo +solo +oggi +fino +treno +passa +📌buonsenso +garantire +energia +pulita +meno +costosa +paese +usa +buonsenso +scegli +chiarezza +vota +futuro +☑ +domenicavotolega +luca +qualcosa +dirvi +intervista +doppia +domani +usa +buonsenso +usa +cuore +domenicavotolega +soltanto +mille +emozioni +regalato +mesi +grazie +domani +andiamo +vincere +4marzovotolega +andiamoagovernare +minuti +video +visto +già +quasi +milione +persone +capirete +dopo +anni +ricerche +studi +approfonditi +tassa +unica +unica +rivoluzione +fiscale +possibile +seria +cifre +mano +governo +salvini +ripartire +economia +paese +📌non +buonsenso +stato +garantisca +euro +mese +disabile +euro +mese +cooperativa +fa +soldi +immigrati +usa +buonsenso +scegli +chiarezza +vota +futuro +☑ +domenicavotolega +📌buonsenso +investire +bellezze +italiane +usa +buonsenso +scegli +chiarezza +vota +futuro +☑ +domenicavotolega +mamma +foto +quando +bimbo +😁 +fatto +migliaia +chilometri +incontrato +migliaia +persone +toccato +mano +problemi +ascoltato +spiegato +progetto +lega +idee +chiare +altro +mettendoci +ora +tocca +campagna +elettorale +finisce +domenica +parlate +chiamate +convincete +aprite +agende +via +sms +via +whatsapp +via +facebook +via +telefono +domenica +treno +passa +credo +insieme +può +vinciamo +domenicavotolega +primagliitaliani +buonasera +amici +seguite +assieme +me +intervista +ieri +sera +maurizio +belpietro +rete +piaciuto +voglia +verso +saluto +la7 +mentana +domenicavotolega +idioti +vinciamo +stesso +preoccupatevi +😃 +dopo +comizi +tutta +italia +chili +meno +stanco +felice +chiudo +tour +milano +ripropongo +interviste +tg5 +studio +aperto +accise +benzina +ministero +disabili +scuola +sicurezza +tanto +altro +promessa +domenica +sceglie +lega +sceglie +chiarezza +altro +coraggio +onestà +quindi +mai +renzi +maio +boldrini +marzo +paese +governeremo +centrodestra +date +mano +diffondere +domenicavotolega +ieri +sera +porta +porta +giulia +bongiorno +orgoglioso +averla +squadra +battaglie +sicurezza +legalità +legittima +difesa +difesa +diritti +libertà +donne +amici +domenica +vicina +bisogno +domenicavotolega +impegno +fattibile +governo +salvini +pagheremo +benzina +cara +europa +domenicavotolega +esodati +precari +cassaintegrati +normale +avere +italiani +serie +b +marzo +lega +governo +ultimi +primi +primagliitaliani +video +vedere +rivedere +diffondere +geniali +minuti +immigrazione +massa +potrà +mai +essere +soluzione +povertà +mondo +dite +capiranno +certi +buonisti +casa +altro +vorrebbero +accogliere +italia +tutta +africa +compresi +5stelle +europa +difendono +immigrati +climatici +stopinvasione +domenicavotolega +consiglio +intervista +ieri +sera +gruber +dite +difeso +bene +vinciamo +domenicavotolega +❌❌❌ +tagliamo +pagheremo +tasse +alte +europa +benzina +accise +anni +fa +governo +salvini +aiutami +condividere +ovunque +domenicavotolega +rimasto +solo +impaurito +canile +dopo +morte +padrona +golden +retriever +stato +adottato +responsabile +rifugio +via +casa +cane +decide +ringraziarla +così +fa +amare +animali +saluto +teatro +nuovo +torino +ascoltate +datemi +mano +condividere +live +primagliitaliani +domenicavotolega +🔴pazzesco +ecco +palermo +pd +solidarietà +brumotti +troupe +aggrediti +selvaggiamente +lanci +massi +enormi +quartiere +spaccio +palermo +vedo +ora +mandare +casa +renzi +fare +po +pulizia +paese +domenicavotolega +secondi +vota +domenica +solo +croce +simbolo +lega +senza +scrivere +altro +⚠ +fate +girare +ovunque +andiamo +vincere +✔ +domenicavotolega +roma +tor +bella +monaca +parco +buco +regno +spacciatori +firenze +state +pronti +domenica +renziacasa +4marzovotolega +coerenti +sempre +immigrazione +legge +fornero +fino +tutela +made +italy +anni +lega +sempre +stata +coerente +italiani +differenza +altri +aiuto +altro +marzo +governo +salvini +potrà +finalmente +passare +parole +fatti +prendendo +mano +milioni +italiani +restituendo +insieme +dignità +serenità +paese +bello +mondo +date +mano +4marzovotolega +primagliitaliani +sento +tanta +voglia +cambiamento +concretezza +piazze +trovo +affetto +fiducia +milioni +italiani +mai +votato +adesso +credono +programma +vedo +ora +arrivi +marzo +dimostrare +lega +passerà +parole +fatti +4marzovotolega +mattina +rtl +intervista +piaciuta +molto +datemi +parere +domenicavotolega +coerenza +onestà +altruismo +valori +portanti +governo +salvini +marzo +porte +primagliitaliani +4marzovotolega +oggi +davanti +tantissimi +abruzzesi +ribadito +rivoluzione +buonsenso +vota +lega +sceglie +prima +italiani +4marzovotolega +messaggio +te +🔵stop +stato +ladro +4marzovotolega +vedo +ora +tornare +massimo +giletti +presidente +consiglio +spiegare +passato +parole +fatti +pronto +4marzovotolega +consiglio +minuti +stamattina +rai +aria +ottima +prossimi +giorni +decisivi +date +mano +condividere +possibile +4marzovotolega +piazza +duomo +milano +strapiena +censurata +tigí +date +mano +farlo +girare +ovunque +rete +primagliitaliani +4marzovotolega +emozioni +irripetibili +quando +popolo +cammino +ferma +nessuno +voglio +bene +primagliitaliani +grazieeeeee +primagliitaliani +milano +state +mare +primagliitaliani +milano +verso +piazza +duomo +seguiteci +live +primagliitaliani +oggi +grande +giorno +uscendo +sole +aspetto +piazza +duomo +milano +spegnete +computer +oggi +sceglie +vita +reale +sceglie +lega +sceglie +prima +italiani +domani +milano +messaggio +te +svuotacarceri +indulti +sconti +pena +no +buonsenso +garantire +certezza +pena +4marzovotolega +ecco +video +vedrete +nessuna +tv +ascoltare +approfondire +grazie +matteo +montevecchi +facciamolo +girare +rete +impegno +concreto +governo +salvini +primo +governo +italiano +attivare +dedicare +ministero +occupi +disabili +diritti +problemi +4marzovotolega +pioggia +ferma +pisa +ieri +juncker +sobrio +presidente +commissione +europea +detto +dopo +elezioni +cataclismi +invasioni +cavallette +spread +crollo +mercati +risiamo +pretenderebbe +comandare +italiani +🔵c +messaggio +te +buonsenso +difendere +agricoltura +pesca +italiana +tutelando +made +italy +italia +soprattutto +europa +primagliitaliani +4marzovotolega +sala +strapiena +tanto +entusiasmo +caserta +primagliitaliani +grazie +bologna +tanta +gente +dice +sì +te +fido +me +ricompensa +migliore +4marzovotolega +chiedere +europa +coniglio +gabbia +faine +chiede +faine +finanziatori +netti +ue +moneta +sbagliata +danneggia +mercato +possiamo +altro +sforare +aiutare +terremotati +paesi +ue +vantaggi +svantaggi +mentre +italia +solo +svantaggi +claudio +borghi +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +picchiato +genitore +alunno +viene +sottoposto +provvedimento +disciplinare +roba +matti +prof +girare +almeno +rete +testimonianza +buona +scuola +renzi +pd +presto +solo +brutto +ricordo +messaggio +te +buonsenso +garantire +bimbo +stesso +insegnante +anni +primagliitaliani +4marzovotolega +pioggia +ferma +ora +sassuolo +provincia +modena +🔵buonsenso +tassa +unica +famiglie +imprese +pagare +meno +pagare +italia +riparte +4marzovotolega +sabato +milano +spaccio +aggressioni +accoltellamenti +porto +condominio +errenord +modena +primagliitaliani +mercato +modena +oggi +vieni +pagato +euro +ora +osi +mangiare +caramella +lavoro +vieni +punito +stato +stato +dissolvendo +fronte +multinazionali +pieno +potere +diritti +altro +lavoratori +sempre +casi +salari +fame +condizioni +lavoro +vergognose +ispettorati +lavoro +lega +governo +inseriremo +salario +orario +minimo +stabilito +legge +restituendo +dignità +lavoratori +armando +siri +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +oggi +udine +tantissimi +nonostante +freddo +ovunque +vada +trovo +tanto +entusiasmo +dà +carica +incredibile +4marzovotolega +orrore +mancavano +purtroppo +molestie +violenze +verso +bimbi +scuole +normali +adesso +scuole +islamiche +illegali +cosa +vergognosa +nessuno +genitori +altro +piccole +vittime +coraggio +denunciare +genitori +integrazione +può +essere +riconosci +cultura +leggi +paese +ospita +4marzovotolega +valido +solo +estero +passaparola +solo +vota +estero +diverso +sistema +elettorale +centrodestra +simbolo +unico +scopri +votare +candidati +specifici +lega +altro +link +fac +simile +nomi +nomi +www +salvinipremier +it +votoestero +dubbi +segnalazioni +ritardi +irregolarità +scrivete +email +leganelmondo +gmail +com +● +vota +iscritti +aire +coloro +temporaneamente +estero +fatto +richiesta +entro +gennaio +● +vota +via +posta +plico +elettorale +ricevuto +casa +consolato +ambasciata +● +quando +vota +febbraio +entro +febbraio +ricevuto +plico +potete +chiedere +duplicato +recandovi +consolato +● +entro +1° +marzo +ore +deve +arrivare +plico +elettorale +schede +votate +oltre +tale +termine +buste +distrutte +geniale +video +pagina +socio +aci +😅 +triste +prende +troppo +serio +sorridiamo +intanto +sapete +già +quasi +mila +iscritti +vinci +salvini +pazzesco +oggi +altro +modo +altro +vincere +invitare +amico +iscriversi +basta +andare +www +salvinipremier +it +invita +passaparola +oggi +vinciamo +rete +marzo +vinciamo +elezioni +signor +calenda +dovrebbe +vergognare +parole +usa +verso +lega +fortuna +marzo +arriverà +presto +🔴condividi +nessun +tg +mostrerà +dati +minuti +nicola +molteni +dimostra +numeri +mano +invasione +subìto +governi +letta +renzi +gentiloni +manca +poco +amici +marzo +cambia +musica +stopinvasione +primagliitaliani +ieri +sera +rai +ricordato +qualcuno +entra +casa +cattive +intenzioni +devo +avere +diritto +difendermi +sempre +comunque +pare +solo +buonsenso +sbaglio +dopo +tour +sicilia +calabria +basilicata +puglia +molise +lazio +eccomi +nuovo +milano +mercato +piazzale +lagosta +ascoltare +marzo +tanto +fare +assicuro +metterò +tutta +dimostrare +essermi +meritato +fiducia +4marzovotolega +gente +latina +primagliitaliani +ora +latina +spettacolooo +primagliitaliani +lascio +renzi +insulti +lascio +maio +scontrini +preferisco +occuparmi +problemi +reali +primagliitaliani +difendi +casa +oggi +vieni +subito +indagato +marzo +governo +salvini +ribalterà +ingiustiza +oggi +difendi +vieni +automaticamente +indagato +magari +processato +solo +riesci +altro +provarlo +prosciolto +processo +deve +essere +ribaltato +cittadino +deve +essere +indagato +meno +indizi +evidenti +dimostrino +tratti +omicidio +legittima +difesa +claudio +borghi +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +secondo +grasso +italia +stranieri +pagano +130mila +miliardi +tasse +doppio +pil +mondiale +fate +presidente +senato +piace +date +mano +sapere +sabato +febbraio +milano +ore +piazza +duomo +storia +ora +mai +primaglitaliani +follia +italia +pd +clandestini +vengono +ospitati +hotel +stelle +presto +brutto +ricordo +4marzovotolega +dazi +proteggono +economia +arance +marocchine +olio +tunisino +invadono +mercati +senza +controlli +danneggiando +commercio +salute +italiani +italia +gioca +mercati +regole +altro +diverse +agricoltori +italiani +devono +rispettare +tantissime +regole +europee +aumentano +costo +prodotti +mentre +tunisia +marocco +cambogia +arrivano +prodotti +incontrollati +sottocosto +combattere +concorrenza +sleale +dazi +tutelando +economia +armando +siri +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +⚠️roba +matti +pd +trasformato +italia +grande +campo +finti +profughi +pretendono +permesso +soggiorno +subito +scappa +davvero +guerra +portando +rispetto +italiani +fratello +altri +posto +marzo +vicino +ora +messina +vergognoso +minacciata +insultata +centri +sociali +pd +detto +me +meritavo +bologna +centri +sociali +fatto +irruzione +consiglio +comunale +minacciarmi +insultarmi +altro +pesantemente +nessuna +solidarietà +sinistra +anzi +capogruppo +pd +detto +semina +odio +raccoglie +tempesta +vergogna +lucia +borgonzoni +candidata +lega +salvini +premier +facciamosquadra +andiamoagovernare +ieri +record +ascolti +la7 +ve +perso +direi +vale +pena +auguro +onorevole +boldrini +raccogliere +elezioni +seminato +commento +libero +educato +dà +fastidio +essere +definiti +risorse +salviniane” +grande +unico +fabrizio +volta +dico +grazie +rai +fa +mandare +via +documenti +chiede +onorevole +boldrini +lascio +rispondere +glielo +dirò +persona +sera +gruber +ore +la7 +stopinvasione +4marzovotolega +cancro +forza +nadia +donna +coraggiosa +minuti +guardate +cosa +chiesto +mattina +pubblico +studio +canale +avanti +tutta +marzo +vicino +aria +buona +serve +aiuto +girare +4marzovotolega +immigrati +protestano +vogliono +vedere +partite +sky +tanto +pagano +italiani +provincia +verona +pazzesco +struttura +gestita +cooperativa +versoprobo +fattura +milioni +euro +tutta +italia +grazie +business +immigrazione +tuttiacasa +1⃣ +donna +vale +meno +uomo +2⃣ +giustizia +islamica +prevale +giustizia +nazionale +3⃣ +libertà +parola +vincolata +dichiara +corano +dico +soprattutto +papà +guardando +futuro +figli +diritto +chiedermi +islam +incompatibile +valori +libertà +motel +4stelle +novi +ligure +alessandria +parte +operai +ilva +combattono +difendere +posto +lavoro +altra +immigrati +pisolino +spese +italiani +ieri +sera +rai +spiegato +idee +chiare +passione +buonsenso +governeremo +italia +4marzovotolega +difendiamo +confini +ora +ventimiglia +piazza +albenga +stanco +insulti +signor +calenda +ecco +replicato +fatto +bene +fortuna +lavoratori +signore +ministro +ancora +poco +ultima +tappa +oggi +abruzzo +prima +italiani +rivoluzione +buonsenso +girare +4marzovotolega +ora +firenze +alberto +bagnai +claudio +borghi +mentre +migliaia +cittadini +riuniti +catania +tradizionale +festa +sant +agata +alcuni +immigrati +grandi +lavoratori +ramo +lavavetri +accattonaggio +prendono +sprangate +mezzo +strada +altro +secondo +normale +sogno +paese +tranquillo +rispettano +ordine +regole +chiedo +troppo +4marzovotolega +sentite +cosa +dice +mauro +panettiere +ferrara +proposito +legge +fornero +sottoscrivo +parola +parola +4marzovotolega +migranti +climatici +lascio +vari +renzi +boldrini +bonino +me +vengono +prima +italiani +andiamoagovernare +ora +cinisello +balsamo +legittima +difesa +violenza +donne +ecco +priorità +parlamentare +voglio +andare +senato +dare +voce +donne +vittime +violenze +parlamentari +possono +fare +tante +cose +altro +necessario +essere +ministri +quando +presidente +commissione +giustizia +ribadii +priorità +lotta +stalking +divenne +legge +poco +dopo +giulia +bongiorno +candidata +lega +salvini +premier +facciamosquadra +andiamoagovernare +aperti +confronto +sì +schiavi +no +governo +mai +servo +bruxelles +berlino +primagliitaliani +signore +accolto +onori +rappresenta +turchia +nega +sterminio +milione +mezzo +armeni +innocenti +donne +bambini +massacrati +islamici +primo +olocausto +storia +vergogna +ripropongo +intervista +mattina +la7 +leggo +commenti +facile +parlare +rimanendo +opposizione +dicendo +sempre +solo +no +vedo +ora +essere +messo +prova +paese +voglio +cambiare +centrodestra +può +governare +voto +lega +voto +coraggio +idee +chiare +futuro +4marzovotolega +roba +matti +secondo +esperto +economia +pd +tassa +unica +biglietto +bus +passerebbe +euro +governato +anni +portando +italia +povertà +assoluta +osano +ancora +parlare +casa +4marzovotolega +mezz +ora +intervento +venerdì +scorso +rete +governare +italia +serve +chiarezza +ascoltate +giudicate +4marzovotolega +🔵 +commercio +turismo +burocrazia +tasse +minuti +proposte +fare +ripartire +lavoro +aiutate +condividerle +4marzovotolega +oggi +candidati +lega +tutta +italia +solenne +impegno +primagliitaliani +4marzovotolega +ministro +martina +pd +creato +posti +lavoro +vivono +marte +voglio +italia +lavoratori +vengono +sfruttati +euro +ora +contratti +precari +bisogna +creare +posti +lavoro +veri +4marzovotolega +pace +fiscale +torni +respirare +vivere +4marzovotolega +sempre +bello +confrontarsi +potuto +farlo +direttore +redazione +stampa” +penso +stato +costruttivo +commentate +mercato +bonola +milano +difendere +confini +espellere +clandestini +stopinvasione +4marzovotolega +furti +aggressioni +roghi +tossici +torino +campo +rom +stelle +risposta +ruspa +voglio +figli +crescano +latte +riso +olio +arance +pomodori +italiani +sinistra +svenduto +aziende +italiane +multinazionali +invece +ritengo +difendere +prodotti +dovere +primagliitaliani +davanti +ex +sede +banca +etruria +arezzo +basta +pd +governeremo +italia +testa +soprattutto +cuore +pronto +4marzovotolega +secondo +solito +kompagno +portafoglio +destra +oliviero +toscani +immigrazione +clandestina +inarrestabile +grande +ricchezza +roba +matti +bravo +massimiliano +fedriga +riportato +po +buonsenso +studio +4marzovotolega +cancellazione +legge +fornero +asili +nido +gratis +fino +pace +fiscale +vota +lega +sceglie +concretezza +equità +buonsenso +4marzovotolega +notti +magiche +ricordando +nostalgia +quando +anni +buon +viaggio +azeglio +dialogo +può +avere +islam +salvini +governo +stop +ogni +presenza +islamica +irregolare +italia +apriamo +occhi +4marzovotolega +bella +intervista +commento +libero +vedo +ora +mandare +casa +kompagna +boldrini +amici +4marzovotolega +svenduto +italia +metà +aziende +ormai +mani +estere +cosa +portato +quindici +anni +lacrime +sangue +sacrifici +imposti +europa +italiani +disastro +riprendiamoci +paese +dico +primagliitaliani +considero +uomo +fortunato +trasformato +passione +lavoro +figli +stupendi +compagna +innamorato +penso +italia +meriti +riuscirci +amo +paese +ennesima +protesta +provincia +padova +soddisfatti +accoglienza +hotel +roba +matti +casa +4marzovotolega +🛑🛑🛑 +salvini +paura +salvini +spaventa +secondo +bonino +pericoloso +stimo +putin +orban +trump +pericolosi +italia +interessi +nazionali +vogliono +europa +unione +europea +distruggendo +patrimonio +culinario +italiano +esempio +bottiglie +olio +marchi +italiani +contengono +olio +tunisia +tuteliamo +cibo +altro +controlliamo +arriva +supermercati +rischiamo +rovinare +ricchezza +lucia +borgonzoni +facciamosquadra +andiamoagovernare +salvini +pensa +immigrati +italiani” +dice +compagna +boldrini +scherzi +parte” +4marzovotolega +boldriniacasa +prima +legge +governo +salvini +cancellerà +legge +fornero +discussione +aperta +possibile +4marzovotolega +video +agenzia +vista +europa +costretti +creare +milione +lavoratori +poveri +visti +risultati +vanterei +jobs +act +dati +occupazione +iniziare +campagna +elettorale +puntando +paura +altro +confronti +lega +follia +pura +mancanza +rispetto +confronti +cittadini +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +costituzione +italiana +dice +paese +repubblica +democratica +fondata +lavoro +libera +sovrana +folli +vincoli +europei +danneggiano +famiglie +imprese +uomo +governo +dovere +cambiarle +prima +viene +paese +primagliitaliani +4marzovotolega +difende +commette +reato +esercita +diritto +proposta +legge +legittimadifesa +vogliamo +cittadino +sappia +cosa +può +fare +cosa +può +fare +momento +altro +viene +aggredito +modo +tale +giudice +discrezionalità +ridotta +valutazione +proporzionalità +nicola +molteni +deputato +lega +salvini +premier +facciamosquadra +4marzovotolega +stabilimento +torinese +whirlpool +delocalizzerà +slovacchia +mandando +casa +centinaia +operai +italiani +bonino +capisce +bisogna +fermare +delocalizzazioni +soluzione +altropiù +europa +governo +salvini +prima +italiani +solo +slogan +sfida +grande +4marzovotolega +norma +anni +vedente +riceve +casa +busta +arancione +inps +andrà +pensione +febbraio +quando +anni +follia +via +legge +fornero +profondamente +ingiusta +sbagliata +rovinato +milioni +italiani +andiamoagovernare +4marzovotolega +modo +efficace +distruggere +europa +sostenere +europa +sbagliata +demonizzata +idea +stato +emette +moneta +possa +esercitare +propria +sovranità +momenti +emergenza +altro +finanziare +direttamente +investimenti +volta +inflazione +cifre +ora +deflazione +prof +alberto +bagnai +candidato +lega +salvini +premier +facciamosquadra +andiamoagovernare +elezioni +vinci +riesci +trasmettere +fiducia +vorrà +testa +occhio +cuore +governare +paese +pronto +andiamoagovernare +ve +ricordate +gedorem +andreatta +albergatore +vicenza +soldi +ospitando +clandestini +verrà +candidato +parlamento +stelle +qualche +mese +fa +stato +quell +hotel +simpatica +conversazione +cognata +nonché +socia +albergatore +grillino +lascio +commenti +buongiorno +amici +ora +mercato +san +benedetto +cagliari +danneggia +risparmio +lavoro +famiglie +italiane +numerino +esiste +pronti +ridiscutere +trattati +europei +interesse +nazionale +italiani +fame +clandestini +hotel +stanco +quest +italia +contrario +primagliitaliani +4marzovotolega +niente +sconti +pena +stupri +uccidi +occorre +rivoluzione +culturale +problema +solo +napoli +baby +gang +esistono +tutt +italia +spesso +origine +famiglie +problematiche +altro +periferie +stato +totalmente +assente +grado +offrire +ragazzi +speranza +cambiare +propria +condizione +vita +lucia +borgonzoni +4marzovotolega +solo +italiani +immigrati +regolari +chiedono +regole +ordine +sicurezza +4marzovotolega +ieri +sera +vespa +maglia +operai +ideal +standard +roccasecca +pesce +terracina +vita +vera +ascoltare +gente +difendere +interessi +nazionali +italiani +daranno +voto +lega +passeremo +parole +fatti +governo +salvini +roma +mercato +tuscolano +iii +seguitemi +favorevole +regole +sanzioni +divieti +riscoperta +valori +suona +antico +no +suona +buono +orgoglioso +avere +squadra +avvocato +gulia +bongiorno +lega +forte +paese +cambiamo +andiamoagovernare +4marzovotolega +ecco +intervista +oggi +tg5 +solo +minuti +penso +essere +stato +chiaro +vedo +ora +arrivi +marzo +cominciare +fare +pronti +andiamoagovernare +ripropongo +intervista +ieri +sera +belpietro +rete +cifre +mano +natalità +italia +raggiunto +livello +basso +ultimi +anni +emergenza +occorre +intervenire +ogni +mezzo +possibile +prima +italiani +solo +slogan +ve +prometto +4marzovotolega +migrazioni +senza +rispetto +diventano +invasioni +italia +emergenza +catastrofica +anni +governo +letta +renzi +gentiloni +arrivati +italia +670mila +immigrati +stragrande +maggioranza +altro +clandestina +solo +rispettano +cultura +costano +pure +miliardi +euro +anno +giunto +momento +farla +finita +business +targato +pd +nuccio +altieri +deputato +lega +salvini +premier +facciamosquadra +andiamoagovernare +grillini +gettano +maschera +stipendio +immigrati +unione +europea +extra +voto +lega +follia +fermiamo +girare +4marzovotolega +primagliitaliani +litigavano +pagarci +pensioni +ogni +bottigliata +anno +contributi +stopinvasione +4marzovotolega +stanchi +ipocrisia +buonismo +imperanti +ascoltate +governo +salvini +inciuci +minestroni +governi +larghe +intese +mai +4marzovotolega +male +bloccano +strada +così +male +soluzione +semplice +rispedirli +casa +pdclandestino +4marzovotolega +attilio +fontana +proseguire +buongoverno +lega +lombardia +fontanapresidente +minuti +tempo +dedicare +video +capirete +dopo +anni +ricerche +studi +approfonditi +tassa +unica +unica +rivoluzione +fiscale +possibile +seria +cifre +mano +governo +salvini +ripartire +economia +paese +4marzovotolega +🚨🚨🚨 +vogliamo +residenza +vogliamo +residenza +accerchiano +comune +dipendenti +barricati +intervento +carabinieri +esino +lario +vicino +lecco +tipiche +facce +scappa +guerra +altro +residenza +governo +salvini +rispediamo +casa +4marzovotolega +ecco +compilation +migliori +perle +boldriniane” +arrivate +fine +video +capisco +prima +resto +mondo +sempre +prima +italiani +4marzovotolega +governo +salvini +pace +fiscale +stato +ladro +stato +amico +cartella +esattoriale +sotto +100mila +euro +paghi +importo +riprendi +respirare +vivere +lavorare +4marzovotolega +numeri +conti +spread +debito +subire +effetti +legge +fornero +milioni +italiane +italiani +carne +ossa +stati +rovinati +caduti +depressione +perso +casa +perso +lavoro +restituiremo +vita +dignità +stopfornero +ripropongo +intervento +radiofonico +mattina +rtl +leggo +commenti +ripropongo +intervento +ieri +sera +floris +sostegno +pubblico +dice +strada +giusta +sondaggi +preferisco +4marzovotolega +commento +libero +rispettoso +libero +tassa +unica +inversione +onere +prova +così +guarisce +italia +paese +malato +serve +aspirina +euro +cura +drastica +permetta +italiani +tornare +altro +consumare +quindi +aziende +produrre +serve +tassa +unica +prevediamo +inoltre +abolizione +onere +prova +fisco +può +avere +sempre +ragione +prescindere +armando +siri +facciamosquadra +andiamoagovernare +🔴🔴🔴pazzesco +milano +targata +pd +risorse +spacciano +cocaina +pieno +giorno +davanti +stazione +centrale +prendendo +sassate +brumotti +troupe +volta +tutta +altro +solidarietà +italia +mente +espulsione +immediata +delinquenti +senza +senza +4marzovotolega +ripropongo +intervista +mattina +radio +lombardia +elezioni +marzo +programma +governo +lega +secondo +stato +abbastanza +chiaro +riusciamo +pagare +gelo +luca +papà +figli +perso +lavoro +dopo +infarto +ora +riesce +pagare +bollette +casa +sbarca +domani +mattina +invece +pronta +comoda +sistemazione +hotel +primagliitaliani +4marzovotolega +open +society +foundation +george +soros +italia +guarda +caso +finanzia +decine +decine +onlus +principali +compiti +statutari +immigrazione +incontrollata +apertura +mercato +altro +droghe +ridiscussione +stereotipi +famiglia +generi +persona +pericolosa +blocchiamolo +prima +troppo +tardi +andiamoagovernare +4marzovotolega +insofferenti +cibo +protestano +vogliono +appartamenti +pieno +donne +bambini +vero +insulto +milioni +italiani +difficoltà +vedo +ora +rispedire +casa +soggiorna +gratis +paese +senza +averne +diritto +pretende +pretende +pretende +4marzovotolega +qualche +minuto +insieme +milano +difesa +lavoro +risparmio +famiglia +confini +sinistra +solo +chiacchiere +marzo +tocca +parliamo +po +me +futuro +senza +giornalisti +mezzo +camere +sciolte +pronti +segui +milioni +poveri +milioni +disoccupati +milione +clandestini +città +record +negativo +bambini +nati +italia +vedo +ora +mettere +fine +disastri +anni +pd +restituire +lavoro +sicurezza +italiani +guardate +commentate +solo +riuscite +rimanere +svegli +italia +regaleremo +principio +troppo +spesso +dimenticato +primagliitaliani +insieme +può +amici +ancora +buon +natale +splendida +comunità +noiussoli +miglior +regalo +natale +italiani +immigrati +regolari +integrati +rispettosi +cultura +leggi +voto +marzo +sentite +fino +fine +cosa +detto +oggi +pensate +me +auguri +natale +porto +fare +giro +ufficio +soldi +televisioni +banche +amici +potenti +sevoicisieteiocisono +nando +imprenditore +perso +terremoto +dato +mano +tranne +stato +oggi +secondo +criteri +governo +renzi +diritto +nessuna +forma +aiuti +tasse +altro +rimboccandosi +maniche +lavorando +giorno +notte +ricostruito +mantenendo +inalterato +fatturato +follia +sostieni +fa +impresa +lasci +scappare +imprenditori +italia +futuro +pronto +andiamoagovernare +lavoro +euro +ora +spostandomi +tutta +milano +spese +senza +buoni +pasto +né +contributi +mance +tassate +italia +giovani +trattati +schiavi +quindi +deciso +andarmene +altroestero +altro +accoglienza +vogliamo +ricominciare +crescere +dobbiamo +trattenere +giovani +creando +lavoretti +sottopagati +part +time +lavoro +stabile +licenziato +episodio +capotreno +deve +poter +tornare +lavorare +🔴🔴🔴follia +pura +40mila +euro +spese +legali +essere +assolto +lega +tempo +depositato +proposta +legge +sancisce +legittimità +difesa +tutela +vittime +oggi +renzi +gentiloni +fregano +governo +salvini +priorità +andiamoagovernare +modello +governo +spelacchio +stelle +no +grazie +poesia +maestra +maria +altamura +po +commosso +grazie +metterò +tutta +ripropongo +intervento +lunedì +bari +parte +sud +tutta +italia +rivoluzione +buonsenso +commette +reati +rovinato +vita +risparmiatori +merita +galera +italia +dato +europa +decine +miliardi +euro +salvare +banche +straniere +giunto +momento +riprenderci +almeno +parte +risarcire +correntisti +italiani +rovinati” +lucia +borgonzoni +facciamosquadra +andiamoagovernare +reggio +emilia +inaugurare +nuova +sede +lega +dopo +danno +pure +beffa +rino +anni +invalido +anni +gamba +amputata +oggi +inps +richiama +controllare +ricresciuta +no +scherzando +vero +controllino +falsi +invalidi +senza +pudore +condanni +qualche +medico +minuti +ecco +prime +cose +governo +salvini +larivoluzionedelbuonsenso +🔴🔴🔴prima +massacrano +botte +poi +derubano +difendi +vai +galera +cittadini +onesti +forze +ordine +fermare +ladri +leggi +vergognose +quando +governo +daremo +finalmente +italiani +legge +seria +legittima +difesa +altamura +bari +spettacolo +territorio +trasforma +gioia +natale +dedichiamo +vorrebbe +cancellare +storia +civiltà +valori +viva +presepe +antico +forno +santa +chiara +produce +oro +territorio +celebrato +pane +altamura +bari +schifezze +arrivano +altra +parte +mondo +viva +prodotti +italiani +viva +splendide +tradizioni +unica +ricchezza +affetto +fiducia +ripagano +impegno +cerco +metterci +grazie +bari +grazie +puglia +andiamoagovernare +diretta +bari +parte +battaglia +lega +puglia +sud +state +andiamoagovernare +ieri +vista +guardate +intervista +ieri +rai +lucia +annunziata +aiutatemi +condividerla +credo +andata +bene +sempre +bello +confrontarsi +qualcuno +pensa +stesso +modo +antifascisti” +modena +attacco +polizia +città +vandalizzata +sentito +qualcuno +lamentarsi +ipocrisia +sinistra +coccola +violenti +confini +diretta +splendida +verona +natalizia +milano +diretta +scuola +formazione +politica +seguiteci +orgoglioso +essere +nuovo +lunedì +puglia +bari +lega +sempre +forte +liberi +aspetto +showville +coerenza +rivoluzione +fiscale +flat +tax +pensioni +cancellazione +infame +legge +fornero +invasione +clandestina +cittadinanza +sicurezza +legittima +difesa +certezza +pena +idee +chiare +vince +andiamoagovernare +governo +salvini +restituirà +futuro +figli +insegnanti +assegnati +base +concorsi +graduatorie +base +regionale +permettendo +studenti +durante +intero +ciclo +altro +studi +impegneremo +tornare +piene +culle +ospedali +misure +radicali +vergognoso +bonus +bebè” +pd +mamme +papà +devono +ritrovare +gusto +scommettere +futuro +paese +larivoluzionedelbuonsenso +pazzesco +bella +italia +pd +altro +obbligo +firma +deve +essere +rispedito +casa +calci +sedere +librandi +pd +secondo +fa +uomo +barbaramente +massacrato +coltellate +lucia +filippa +anziane +sorelle +provincia +catania +normativa +vigente +può +ottenere +sconto +terzo +pena +stupratori +assassini +altro +può +esserci +nessuno +sconto +chiede +legge +lega +spero +bloccata +ripensi +rimedi +errore +contribuenti +italiani +devono +pagare +forze +ordine +proteggere +papà +boschi +lega +fatto +interrogazione +parlamentare +sapere +costa +paga +penso +sapere +già +risposta +governo +salvini +fisserà +retribuzione +minima +legge +euro +ora +schiavismo +italiani +schiavi +lega +governo +introdurremo +salario +orario +minimo +garantito +giunto +momento +restituire +diritto +vivere +sopravvivere +larivoluzionedelbuonsenso +succede +esci +fare +spesa +occupano +casa +devi +stare +zitto +periferia +milano +stato +esiste +vuoi +casa +popolare +devi +chiedere +rom +quando +governo +unica +stanza +delinquenti +dovranno +occupare +galera +buona +santa +lucia +viva +sorriso +bambini +viva +tradizioni +piace +crhome +tv +realizzato +bellissimo +video +europa +preparando +regalo +natale +riforma +consentirà +bloccare +conto +corrente +caso +difficoltà +banca +governo +pd +fa +niente +girare +almeno +rete +pazzesco +spara +ferisce +ladro +sventando +rapina +ricompensarlo +viene +punito +bandito +sembra +normale +lega +governo +difesa +diventerà +sempre +legittima +paese +contrario +ribaltiamo +andiamoagovernare +accogliereste +clandestino +euro +mese +sentite +cosa +pensano +romani +raggi +serve +sperimentare +stopinvasione +primagliitaliani +vita +vera +realtà +virtuale +pd +andiamoagovernare +italia +vittima +frane +alluvioni +servono +miliardi +vincoli +europei” +impediscono +usarli +pare +normale +poi +tasse +lavoro +immigrazione +natale +calciatori +brutti +parliamone +sempre +prima +italiani +impegni +sud +lavoro +sicurezza +difesa +made +italy +produzioni +posso +governo +servi +lega +pd +pubblico +la7 +studio +apprezzato +mandiamo +casa +manca +poco +andiamoagovernare +vedere +giovanna +signora +campanello +truffata +banche +azzerata +governo +pd +basterebbe +chiedere +indietro +europa +parte +quei +miliardi +regalato +salvare +altro +banche +straniere +paese +serio +risparmiatori +vanno +garantiti +interessi +nazionali +tutelati +bastapd +andiamoagovernare +intervista +stamattina +rai +radio1 +idee +futuro +paese +ascoltate +commentate +tantissimi +immigrati +regolari +perbene +pagano +tasse +mandano +figli +scuola +portano +rispetto +cultura +leggi +contribuiscono +positivamente +società +italiana +altro +scappa +nessuna +guerra +guerra +porta +casa +fuori +patto +governo +chiederemo +impegno +espellere +almeno +mila +clandestini +anno +accordo +lavoratrice +voglio +lavorare +vita +parole +belle +commoventi +mamma +licenziata +chiedeva +cambiare +orari +lavoro +riuscire +occuparsi +figlio +altro +disabile +vogliono +precari +schiavi +dobbiamo +arrendere +altro +fake +news +renzi +paese +deve +restituire +lavoro +dignitoso +italiani +priorità +bel +ricordo +fisicamente +seguito +lontano +cuore +ripropongo +intervento +domenica +roma +piace +facciamolo +girare +rete +finché +lasceranno +fare +primagliitaliani +affetto +date +ricompensa +bella +splendida +domenica +piazza +santi +apostoli +roma +migliaia +italiani +arrendono +sognano +paese +sicuro +forte +libero +state +primagliitaliani +arrivato +piazza +fantastica +poco +tutta +diretta +roma +pagina +sempre +dallapartedisandra +dimentichiamo +lega +te +parroco +sardo +accoglienza +fallimento +basta +immigrati +accattoni +sacerdote +viene +accusato +aver +usato +toni +salviniani +additato +intollerante +razzista +so +me +altro +sembra +soltanto +buonsenso +stato +serio +prima +pensa +italiani +difficoltà +poi +spazio +arriva +resto +mondo +andiamoagovernare +sardegna +stato +manda +polizia +carabinieri +circondare +paesi +catturare +delinquenti +abbattere +maiali +roba +matti +pastori +agricoltori +sandra +pestata +suon +calci +pugni +ferrara +gang +risorse +pazzesco +risultato +anni +governi +buonisti +guida +pd +sogno +paese +accoglie +limite +possibile +altro +delinquenti +posto +diritto +asilo +deve +essere +espulso +punto +date +mano +andiamoagovernare +cane +bimbo +teneri +amici +soffre +miopia +congenita +prima +volta +occhiali +regalano +nuova +vista +dolcezza +vedere +felicità +occhi +bimbi +prezzo +incredibile +immigrato +dunque +pago +biglietto +grazie +pd +pensano +italia +possa +fare +vuole +cambierà +musica +ve +garantisco +riporteremo +paese +ordine +regole +rispetto +provvedimenti +presi +governo +insulto +risparmiatori +derubati +banche +solo +governo +stanziato +solamente +milioni +euro +mentre +serviva +miliardo +processo +altro +ottenere +soldi +può +durare +anni +dovendo +pagare +avvocati +rischia +essere +costo +guadagno +” +paolo +arrigoni +senatore +lega +facciamosquadra +andiamoagovernare +truffati +banche +massacrati +renzi +chiamano +partito +democratico” +minuto +equità +salari +difesa +tradizioni +controllo +immigrazione +date +mano +insieme +cambieremo +paese +ve +prometto +andiamoagovernare +sparato +volevano +uccidere +quartiere +san +basilio +periferia +roma +pazzesco +altra +aggressione +troupe +vittorio +brumotti +striscia +documentando +spaccio +incontrollato +altro +capitale +luce +giorno +sindaca +raggi +arrendo +darete +mano +po +pulizia +🔴🔴🔴 +girare +vergogna +stamattina +tribunale +siena +mandato +asta +portato +via +casa +sandra +invalida +malata +terminale +disperata +termine +udienza +tentato +altro +tagliarsi +vene +ricoverata +ospedale +violenza +vera +confronti +italiani +tivù +parlano +sentita +telefono +poco +fa +lega +aiuterà +ogni +maniera +possibile +sconvolta +molla +dallapartedisandra +primagliitaliani +ovunque +vada +renzi +viene +fischiato +contestato +guardate +bella +accoglienza +riservato +ex +operai +lucchini +perso +lavoro +colpa +jobs +act +pochi +mesi +mandiamo +casa +andiamoagovernare +bastapd +ripropongo +intervista +domenica +scorsa +sky +tg24 +maria +latella +penso +essere +stato +chiaro +dite +🔴🔴🔴 +rivoluzione +fiscale +tassa +unica +aiuterà +rientrare +aziende +delocalizzato +riportando +lavoro +italia” +aliquota +bassa +italiani +soldi +altro +tasche +potranno +finalmente +comprare +beni +servizi +ripartire +crescita +inoltre +sistema +fiscale +semplificato +economia +sommersa +riemergerà +aiutano +risolvere +problema +evasione +fiscale +garantendo +entrate +casse +stato +” +armando +siri +facciamosquadra +andiamoagovernare +approfondimenti +www +tassaunica +it +trappola +moneta +unica +alziamo +salari +diventiamo +meno +competitivi” +sistema +vince +riesce +pagare +meno +propri +impiegati +precarizzazione +lavoro +altro +part +time +euro +aiuta +solamente +gonfiare +statistiche +occupazione +vero +lavoro +volta +permetteva +mettere +famiglia +sparendo +” +claudio +borghi +facciamosquadra +andiamoagovernare +unione +europea +impone +tagliare +spesa +pubblica +mandano +diplomatici +isole +mauritius +caraibi +isole +fiji +bene +sembra +normale +buonsenso +film +esodo” +racconta +storia +vera +francesca +400mila +vittime +legge +fornero +vite +reali +lacrime +vere +mentre +persone +lottano +ogni +giorno +sopravvivere +signora +continua +dire +dovremmo +essere +fieri +avere +riforma +stopfornero +andiamoagovernare +renzi +infila +presentazione +libro +fare +comizio +ius +soli +contestato +pubblico +lasciato +scrittore +alza +salviamo +renzi +mandiamolo +casa +noiussoli +abbassare +tasse +solo +così +ripartire +italia +soluzione +giusta +equa +linea +costituzione +tassa +unica +www +tassaunica +it +trovate +tutte +risposte +domande +posti +lavoro +negozi +rischio +colpa +nuova +folle +tassa +inventata +governo +euro +ogni +ricarica +sigarette +elettroniche +fare +favore +solite +multinazionali +altro +matti +lega +proverà +fermarli +grazie +lavoratori +straordinaria +accoglienza +voluto +vedere +renzi +ovviamente +tivù +censurano +perso +ripropongo +confronto +ieri +sera +mezzanotte +rai +cancellare +ogni +sconto +pena +assassini +stupratori +finalmente +arriva +parlamento +proposta +lega +dato +voce +genitori +stati +uccisi +figli +bambini +stato +ucciso +altro +papà +vittime +dimenticate +stato +intanto +renzi +parla +fake +news +telegiornali +dicono +bene +fate +girare +diamo +voce +perso +vita +privata +ognuno +libero +stare +vuole +bambini +vengono +mondo +mamma +papà +vale +adozioni +renderle +meno +costose +veloci +priorità +quando +governo +lunedì +dicembre +tornerò +bolzano +chissà +cose +migliorate +incentivi +assunzioni +crescono +poi +crollano +quando +incentivi +finiscono +bisogna +ridurre +tassazione +lavoro” +riguardo +banche +effetti +bail +devastanti +altro +correntisti +presi +panico +accaduto +andati +ritirare +soldi +vergogna +assoluta +pd +dica +salvato +risparmiatori +quando +irresponsabilità +messo +strada +tante +persone +” +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +dessero +secondi +spiegare +risolvere +problema +immigrazione +clandestina +cosa +direste +risposto +così +stato +italiano +ora +basta +paga +debiti +debito +oltre +milioni +euro +stato +costretto +sergio +fallimento +umiliazione +migliaia +altri +imprenditori +stati +altro +rovinati +pubblica +amministrazione +lega +governo +pagamento +immediato +debiti +crediti +imposta +pubblica +amministrazione +semplice +buonsenso +ricordate +immigrati +marcia +veneto +ex +base +militare +cona +piace +vogliono +migliori +condizioni +dopo +rottura +trattativa +prefetto +scoppiata +pure +rissa +altro +possibile +problemi +italiani +istituzioni +debbano +occuparsi +benessere +abitativo +presunti +profughi +spettacolo +cagliari +grazieeee +andiamoagovernare +buon +pomeriggio +cagliari +spettacolo +state +diretta +andiamoagovernare +risultato +gestione +pd +porte +aperte +venite +risultato +italia +invasa +individui +fuggono +guerre +cercano +migliori +condizioni +vita +umanamente +comprensibile +buon +padre +altro +famiglia +dà +prima +figli +diritto +asilo +deve +essere +espulso +punto +governo +cuore +interessi +italiani +andiamoagovernare +chiesto +donne +bambini +rifugiati +accogliere +comune +dicono +sì +orgogliosa +dare +case +popolari +italiani +smontate +diretta +tivù +palle +pd +sindaci +lega +domando +certi +sindacati +quando +veniva +approvata +legge +fornero +stanco +governo +odia +italiani +coccola +clandestini +bella +italia +accogliente +risorse +clandestine +accoltellano +strada +proprio +zona +padova +stati +aggrediti +inviati +striscia +possiamo +dire +quasi +altro +anni +governi +guida +pd +letta +renzi +gentiloni +rovinato +italia +arrendo +darete +mano +voglia +fare +pulizia +⚫️⚫️⚫️ +padova +mano +spacciatori +africani +altra +aggressione +brumo” +merito +cerca +documentare +denunciare +schifo +soluzione +controlli +risorse +forze +ordine +certezza +pena +espulsione +delinquenti +stranieri +volere +potere +professorone +monti +ancora +coraggio +parlare +ridicolizza +proposta +lega +tassa +unica +ecco +armando +siri +smonta +vedere +🔴 +casa +branco +figli +puttana +mantes +jolie +vicino +parigi +quartiere +mano +immigrati +islamici +guerriglia +urbana +polizia +molotov +spari +mortaio +auto +altro +incendiate +movente +aver +arrestato +durante +controllo +trovato +possesso +droga +coraggio +resistere +agenti +morsi +ecco +regalando +città +bello +multiculturalismo +francese +stopinvasione +prima +tardi +⚠ +sconvolgente +maestre” +meritano +galera +telecamere +asili +tutte +case +riposo +giù +mani +può +difendere +ripropongo +intervento +ieri +sera +matrix +canale +divertito +credo +essere +stato +chiaro +europa +tasse +lavoro +pensioni +immigrazione +aiutatemi +condividere +lavoro +bello +quando +fa +lavoro +piace +però +riesce +sopravvivere +pensione +euro +mese” +parole +bernardino +anni +sveglia +ancora +oggi +andare +altro +consegnare +uova +deve +mantenere +figlia +nipote +sempre +ammiro +lavora +instancabilmente +passione +dopo +anni +lavoro +sacrifici +pensione +giusta +diritto +negoziabile +semplice +buonsenso +riuscite +stare +svegli +sera +circa +saluto +matrix +canale +spettacolare +accoglienza +pubblico +sondaggi +piacciono +porto +minuscolo +container +senza +bagno +ancora +costretta +vivere +nonna +peppina +però +perso +sorriso +proposta +lega +stata +accolta +commissione +settimana +scorsa +altro +prima +vittoria +ora +dovrà +dare +voto +definitivo +parlamento +sbrigatevi +nonna +merita +passare +natale +casetta +forzanonnapeppina +🔴 +ecco +prove +quando +operazione +soccorso +portiamo +sempre +migranti +italia +recuperiamo +acque +maltesi +fa +parte +accordo +dice +coordinatrice +triton +altro +operazione +europea +controllo +frontiere +mediterraneo +quindi +solidarietà +europea +qualche +mese +musica +cambia +tornerà +difendere +confini +guardate +profugo +guerra” +impegnato +blocco +stradale +caserta +forma +invidiabile +giacca +pelle +occhiali +sole +taglio +capelli +ricercato +però +troppo +troppo +cibo +altro +buono +alloggio +bene” +milioni +persone +italia +sotto +soglia +povertà +troppo +troppo” +primagliitaliani +stato +italiano +fa +nulla +rifugiati +politici +milioni +poveri +vorrei +invece +stato +italiani +cosí +quando +governo +paese +primagliitaliani +🚩lo +dice +presidente +coldiretti +europa +schizofrenica +lato +apre +insetti +altro +consente +produrre +vino +zucchero +formaggi +polvere +latte +mentre +pd +altro +votato +portarci +tavola +cavallette +tarantole +cimici +giganti +altre +schifezze +lega +difende +sempre +made +italy +coerenza +follie +europa +massacra +produzioni +ministro +agricoltura +martina +invece +troppo +impegnato +giocare +stesso” +approvare +ius +soli +pensi +spaventarmi +parolacce +applausi +autista +calma +intelligenza +introdurre +tutte +scuole +qualche +ora +educazione +civica +ambientale +bene +ragazzi +accordo +ong +scafisti +ecco +prove +complicità +sotto +occhi +elicottero +unione +europea +quando +diceva +lega +matti +stopinvasione +altra +follia +europa +roba +matti +italiani +merde” +dice +”signora” +rom +prete +beh +voleva +passaggio +posto +anziché +sparare +bufale +lega +quali +crede +nessuno +stelle +preoccupino +amministrare +roma +guardate +schifo +modello +lega +comuni +territori +nord +sud +solo +primaglitaliani +ora +diretta +milano +scuola +formazione +politica +lega +altra +giornata +studio +approfondimento +confronto +centinaia +ragazzi +arrivati +tutta +italia +andiamoagovernare +auto +lusso +soldi +gioielli +banconote +false +pronte +truffe +campo +rom +strano +mai +detto +ruspa +vogliamo +documenti +vogliamo +documenti +marcia +profughi +scontenti +condizioni +vita +ex +base +militare +conetta +arrivati +venezia +stati +accontentati +ricollocati +altro +altre +strutture +veneto +alcuni +pare +gradiscano +alloggio +chiedono +tornare +ex +base +eh +priorità +italia +rispetto +allevatori +insetti +pd +europa +votato +favore +utilizzo +tavola +carbonara +preferisco +classica +buona +domenica +amici +ubriachi +storti +litigano +fatti +mentre +sinistra +litigano +prodi +alema +giochini +palazzo +poltrone +voglio +occuparmi +periferie +città +nessuno +altro +pensa +sogno +italia +prendendo +autobus +sera +milano +roma +torino +rischi +propria +incolumità +fisica +chiedere +troppo +lega +merda +vaffanculo +salvini +merda +poi +sassaiole +fumogeni +scontri +polizia +bravi +ragazzi +rappresentanti +studenti +meticci +autodefinitisi +tali +ieri +davanti +sede +regione +lombardia +democratici +po +educazione +civica +scuola +male +dite +cosa +entra +pd +mps +pensano +italiani +scemi +ascoltate +risposta +claudio +borghi +facciamosquadra +andiamoagovernare +povero +renzino +destinazione +fallimento +bastapd +andiamoagovernare +🔵 +ieri +sera +paolo +debbio +spiegato +cosa +primo +ministro +posto +pd +guardate +riguardate +credo +essere +stato +abbastanza +efficace +leggerò +sempre +commenti +andiamoagovernare +sorelle +anni +massacrate +brutalmente +busto +arsizio +varese +centro +pieno +giorno +29enne +rumeno +ubriaco +senza +motivo +infame +verme +signore +argia +fin +altro +vita +preghiera +possa +salvarsi +abbraccio +signora +wilma +video +racconta +tragedia +vissuta +dopo +anni +buonismo +quando +governo +ogni +giorno +impegno +tornare +italia +regole +rispetto +sicurezza +truffa +ricevere +euro +poi +avere +stipendio +dimezzato +dovuti +vari +bonus +prendendo +giro +italiani +soluzioni +credibili +ridurre +altro +aliquote +diminuire +tassazione +misura +strutturale +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +fondo +dobbiamo +capirli +dice +sindaco +sentivano +mancanza +città +stata +marachella +espulsione +immediata +difesa +confini +stopinvasione +amici +sardi +sabato +prossimo +novembre +fiera +cagliari +felice +orgoglioso +tornare +splendida +isola +aspetto +tantissimi +andiamoagovernare +nota +bene +ingresso +altro +libero +possibile +accreditarsi +avere +certezza +ingresso +scrivendo +accrediti +cagliari2017 +noiconsalvini +org +rischiato +grosso +inviato +striscia +racconta +aggressione +subita +spacciatori +africani +bologna +solo +cocaina +offerto +pistole +kalashnikov +onore +vittorio +altro +brumotti +servizio +documentazione +degrado +conduce +troupe +mettendo +rischio +propria +incolumità +disonore +quegli +amministratori +pubblici +tollerano +schifo +città +🔴 +clandestini +soldi +sempre +vedova +figli +disabili +no +italia +secondo +stime +governo +spenderà +quasi +miliardi +anni +accoglienza +centinaia +migliaia +altro +finti +profughi +scappano +guerre +vengono +migliorare +condizioni +vita +poi +storie +angelina +vedova +figli +disabili +disperata +stringe +cuore +pare +giusto +pare +normale +dovrebbe +essere +priorità +paese +serio +migliorare +prima +condizioni +vita +nato +vissuto +pronto +rivoluzione +buonsenso +primagliitaliani +grazie +paolo +debbio +aver +preso +cuore +trasmissione +sera +mamma +difendere +territorio +comprare +italiano +scarafaggi +mangi +renzi +boldrini +cena +🔴🔴🔴basta +cocaina +armi +accanto +asilo +ragazzi +striscia +aggrediti +selvaggiamente +derubati +ecco +sicurezza +targata +pd +accogliente +bologna +unica +soluzione +espulsione +immediata +gentaglia +senza +senza +giornalista +filippo +facci +racconta +esperienza +vita +vera +rom +vicino +casa +consiglio +visione +condivisione +bacheche +amici +buonisti +ascoltate +parole +gentiloni +capirete +grazie +pd +italia +invasa +immigrati +clandestini +scappano +nessuna +guerra +stopinvasione +vanitoso +premier +ricordo +sommessamente +italia +tutta +africa +qualche +minuto +ripropongo +intervista +ieri +pomeriggio +radio +calcio +cose +molto +importanti +vittoria +nonna +peppina +tenero +piccolo +ride +sonno +chissà +cosa +sognando +bimbi +cosa +bella +vederli +crescere +riempie +orgoglio +papà +voglio +figli +crescano +paese +sognare +grande +utopia +date +mano +🔴 +mostruosa +crudeltà +immagini +sconvolgenti +oltre +riempirmi +tristezza +imbestialire +disumana +badante +livorno +picchiava +insultava +poveri +nonni +anni +stata +allontanata +me +andrebbe +arrestata +rispedita +paese +renzi +tocca +trasforma +presunti +profughi +ospitati +spese +italiani +ex +base +militare +conetta +veneziano +bloccano +traffico +volte +giorno +vogliono +condizioni +vita +migliori +bene +padova +racconta +testimone +nomadi +bevevano +molto +particolarmente +ubriaco +metteva +mani +addosso +persone +caso +qualcuno +portato +pazienza +altro +cercando +tranquillizzarlo +certo +punto +presa +persona +sbagliata +trovato +infatti +ragazzo +spinto +via +finita +lì +scattata +rissa +proprio +bancone +fine +brillante +idea +prendere +ducato +sfondare +vetrina +ingresso +gasoline +soluzione +tolleranzazero +http +www +padovaoggi +it +cronaca +rissa +gasoline +furgone +vetrata +padova +via +fornace +morandi +novembre +html +piace +allenatore +guardate +video +ideatore +famoso +limite +deficit +pil +numero +casuale +deciso +meno +ora +oggi +studiosi +cercano +giustificare +numero +analisi +altro +scientifiche +garantisco +andata +così +capito +ogni +anno +governo +toglie +risorse +scuole +ospedali +forze +ordine +rispettare +regola +senza +senso +basta +politica +deve +essere +servizio +cittadini +contrario +nome +norme +tetti +arbitrari +imposti +bruxelles +possiamo +aiutare +italiani +sforeremo +andiamoagovernare +contento +lega +forte +mai +stata +voti +forza +proposte +cancellazione +legge +fornero +tassa +unica +blocco +immigrazione +altro +incontrollata +espulsione +clandestini +sicurezza +certezza +pena +legittima +difesa +riforma +scuola +tutela +made +italy +ridiscussione +trattati +europei +prima +europa +euro +portino +fallimento +economia +imprese +pronto +fateci +votare +febbraio +prima +possibile +italiani +premieranno +idee +convincenti +male +notti +container +brutte +tg5 +ieri +sera +dedicato +servizio +aggiornamento +vergognosa +situazione +burocrazia +stato +debole +forti +forte +altro +deboli +costretto +nonna +peppina +anni +terremotata +invito +rappresentanti +partiti +svegliarsi +lega +parlamento +soluzione +trovata +basta +quarto +ora +approvarla +restituire +nonna +casetta +forzanonnapeppina +ecco +appello +rinnoviamo +https +www +facebook +com +salviniofficial +videos +boldrini +auspica +ritorno +cosiddette +ong +mare +eh +certo +sennò +clandestini +arrivare +italia +pagarci +pensioni +boldriniclandestina +purtroppo +troppo +ubriaco +pagarci +pensione +pensiero +lavora +autobus +treni +metro +italia +rovinata +pd +pensano +poter +fare +vogliono +almeno +po +regole +ordine +porteremo +ve +garantisco +🔴 +senza +vergogna +monti +salvini +incita +odio +verso +incredibile +ancora +coraggio +parlare +proprio +legge +fornero +rovinato +milioni +italiani +detto +confermo +altro +primo +impegno +premier +cancellare +infame +legge +essa +memoria +governanti +indegni +andiamoagovernare +ricordate +anni +anno +scorso +luglio +vennero +picchiati +torturati +ferocia +addirittura +ferro +stiro +derubati +banda +marocchini +infami +terzo +latitante +altro +stati +condannati +appena +anni +mesi +ciascuno +rosina +sconsolata +anni +fuori +vengono +ammazzare +me +promesso +maledetti +dopo +anni +disastro +pd +pochi +mesi +porteremo +italia +leggi +giuste +pene +certe +grande +abbraccio +ennio +rosina +abbraccio +oggi +duramente +colpito +maltempo +sud +sicilia +particolare +ragusano +siracusano +catanese +stato +settimana +scorsa +pensiero +particolare +acate +vittoria +forza +degrado +prima +vanno +letto +dopo +qualche +mese +denunciano +italiane +parole +madre +alessio +sinto +stupratore +lascio +commenti +dico +italia +serve +buona +dose +tolleranzazero +esposizione +internazionale +ciclo +motociclo +viva +eccellenze +italiane +stupra +castrazione +chimica +doverosa +” +campi +rom +leggi +stato +italiano +esistono +manda +figli +scuola +subisce +patria +potestà +ristoranti +altro +italiani +devono +rispettare +leggi +severe +fumi +emanati +mentre +possono +bruciare +creando +nubi +tossiche +necessario +innanzitutto +riportare +principio +legalità +” +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +🔴 +nonna +peppina +anni +gelo +container +mese +oltre +disegno +legge +lega +presentato +emendamento +decreto +legge +fiscale +abbinato +legge +bilancio +basta +quarto +altroora +approvare +restituire +nonna +casetta +aiutando +centinaia +altre +famiglie +terremotate +stessa +situazione +sveglia +gentiloni +sveglia +pd +forzanonnapeppina +bambini +maltrattati +denunce +segnalazioni +giorno +lega +propone +inascoltata +anni +telecamere +antiviolenza +asili +scuole +case +riposo +quando +qualche +mese +governo +altro +finalmente +nessuna +tolleranza +proprio +luoghi +dovrebbero +essere +sicuro +fa +male +bimbi +anziani +🔴fai +girare +sbarchi +fermati +tutte +palle +italia +invasa +ex +carcerati +nordafricani +ecco +prove +video +pdclandestino +votosubito +ripropongo +intervista +corrierelive +tante +domande +divertito +rispondere +confronto +sempre +positivo +giada +ancora +bimba +iscrive +corso +karate +palestra +gestita +maestro +carmelo +entrando +tana +orco +stupra +sessualmente +fino +anni +usando +posizione +altro +autoritaria +costringerla +accettare +spingendola +subire +rapporti +altri +quarantenni +oggi +riesce +raccontare +senza +veli +sorriso +dolce +sincero +merita +togliermelo” +onore +te +giada +gesto +splendido +atto +coraggio +conoscete +persone +subito +violenze +sessuali +aiutatele +denunciare +stupratori +solo +così +riusciamo +stanarli +papà +prima +politico +fermare +condannare +mostri +meritano +vivere +impuniti +posto +giusto +signore +galera +spaccare +naso +testate +parole +tutta +solidarietà +giornalista +daniele +piervincenzi +troupe +nemo +nessuno +escluso +pazzesco +benvenuti +cuore +firenze +pd +scrigno +bellezze +mondo +invidia +maxi +risse +colpi +sprangate +pakistani +bengalesi +cittadini +commercianti +terrorizzati +basta +stopinvasione +pdacasa +manca +poco +diretta +campo +rom +via +salone +roma +ospitava +stupratori +ragazzine +ieri +carabinieri +arrestato +spaccio +furto +persone +seconda +parte +live +https +www +facebook +com +salviniofficial +videos +tatua +petto +solo +dio +può +giudicare +poi +stupra +quattordicenni +esiste +unica +soluzione +castrazione +chimica +galera +insieme +musumeci +tutta +squadra +lega +entra +prima +volta +storia +assemblea +regionale +siciliana +felice +orgoglioso +impegno +militanti +candidati +altro +oltre +100mila +voti +puliti +conquistati +costo +zero +entro +natale +tornerò +sardegna +novembre +poi +campania +puglia +calabria +proporremo +cittadini +amministratori +locali +patto +sud +vero +rilanciare +economia +lavoro +speranza +andiamoagovernare +ecco +stato +premia +commette +reati +rovina +cittadini +perbene +nuovo +parlamento +approveremo +finalmente +legge +tuteli +legittima +difesa +metteremo +fine +ingiustizie +andiamoagovernare +ennesima +rissa +suon +bottigliate +risorse +oggi +pomeriggio +parco +montagnola +bologna +degrado +spaccio +pieni +giorno +poco +prima +pagatori +pensione +amati +sinistra +altro +minacciato +donna +anni +po +lavoro +fare +quando +governo +rimediare +anni +invasione +targata +pd +grazie +lucia +borgonzoni +girato +video +delia +arzilla +signora +anni +distrutta +dopo +scomparsa +marito +mai +voluto +cane +eppure +quando +famiglia +accolto +casa +maia +simpatico +bull +terrier +ricominciato +altro +vivere +diventati +coppia +inseparabile +amici +zampe +sempre +bene +male +delia +maia +auguriamo +tanti +anni +tenerezze +belpasso +catania +oro +sicilia +altro +arance +marocchine +difendiamo +prodotti +consumiamo +italiano +diretta +catania +baracche +rione +taormina +messina +splendida +taormina +tour +sicilia +continua +ora +palagonia +catania +ripropongo +intervista +mattina +agorà +rai +attentato +islamista +new +york +elezioni +sicilia +progetto +lega +governo +paese +bello +confrontarmi +opinioni +molto +diverse +spero +essere +stato +convincente +sicilia +testa +vittoria +provincia +ragusa +compriamo +consumiamo +italiano +boldrini +insiste +ius +soli +fare +consiglio +pd +portarsi +sacchi +pelo +passare +natale +capodanno +parlamento +cittadinanza +regalo +noiussoli +solo +interno +hotel +villa +sikania +splendida +vista +agrigentina +anni +ospita +migranti +euro +giorno +gioia +residenti +paesi +vicini +grazie +renzi +grazie +alfano +stopinvasione +intervento +apertura +scuola +formazione +politica +lega +tanti +giovani +tante +competenze +tante +energie +tutta +italia +tanta +voglia +partecipare +cambiare +paese +andiamoagovernare +www +scuoladiformazionepolitica +it +aggiornamenti +nonna +peppina +inviamo +bacione +ieri +mattina +calvi +risorta +caserta +soliti +democratici +centri +sociali +distrutto +gazebo +aggredito +militanti +attaccano +lega +temono +fermeranno +fate +paura +fate +solo +pena +ora +stazione +palermo +viaggio +direzione +agrigento +prosegue +fate +compagnia +buona +giornata +amici +pazzesco +ore +trapani +raggiungere +agrigento +treno +così +siciliani +vengono +aiutati +politica +governo +centrale +spettacolare +accoglienza +palermo +cosa +può +volere +grazie +ragazze +prima +giornata +entusiasmante +grazie +ragazzi +futuro +sdfp2017 +www +scuoladiformazionepolitica +it +solito +giornalista +sinistra +tendenza +caviale +champagne +rimprovera +linguaggio +dice +seminerei +odio +mondo +vive +certa +gente +fatti +giro +autobus +metro +parco +giochi +pronto +soccorso +cosa +rispondereste +italia +diffondono +nuovi +stili +vita +pensioni +approvare +subito +blocco +età +cancellare +riforma +fornero +peggio +sempre +arrivi +67anni +vorrebbero +piddini +solo +grecia +certo +esempio +paese +salute +lucia +borgonzoni +facciamosquadra +andiamoagovernare +anziani +costretti +rovistare +scarti +mercato +clandestini +protestano +gradiscono +cibo +video +vale +mille +analisi +telegiornali +vedere +chissà +condividi +almeno +rete +primagliitaliani +ripropongo +intervista +ieri +sera +formigli +la7 +buone +idee +lega +italiani +andiamoagovernare +sempre +ricordarci +fare +bastapd +andiamoagovernare +sequestrare +uccidere +bimbo +mesi +poi +dire +davanti +tivù +bambini +anima +cuore +può +spezzare +cuore +famiglia” +verme +deve +marcire +galera +tommy +mamma +paola +nata +sorda +grazie +intervento +splendida +bimba +sente +prima +volta +voce +mamma +tenerezza +stop +invasione +stop +islam +italia +bisogno +lavoro +altri +delinquenti +strasburgo +minuti +smontato +tutte +euroballe +sinistra +scafista +condividi +bacheca +qualche +buonista +visto +nessun +telegiornale +vedere +immagini +giudicare +accoglienza +ricevuta +treno +treno +preso +addosso +renziacasa +andiamoagovernare +meno +burocrazia +statale +meno +vincoli +europei +spendere +meno +spendere +meglio +politica +chilometro +zero +penso +essere +stato +chiaro +oggi +tg5 +dopo +straordinaria +partecipazione +milioni +altro +lombardi +veneti +referendum +ieri +tempo +passare +parole +fatti +obiettivo +esportare +modello +tutte +regioni +italiane +nord +sud +profugo +spacciatore +mangiare +bene +italia +sporco +italia +mafia +vendere +erba +fa +votare +ancora +pd +quando +governo +espulsione +immediata +gente +girare +primagliitaliani +dimenticare +governati +piace +cucinare +casa +figli +stare +fornelli +ristorante +altra +storia +ieri +salone +internazionale +ospitalità +professionale +ennesima +conferma +cucina +altro +italiana +imbattibile +saluto +ristoratori +cuochi +camerieri +ammiro +passione +mettono +lavoro +difficilissimo +secondo +dopo +aver +mentito +solo +laurea +diploma +maturità +ancora +insiste +punto +vista +sostanza +poi +solita +spocchia +sfreccia +via +altro +autoblu +vedere +servizio +merita +essere +ancora +ministro +istruzione +bell +esempio +giovani +italiani +fortuna +incapaci +pd +fine +corsa +aiuto +mandiamo +casa +andiamoagovernare +40mila +euro +dovuto +spendere +graziano +stacchio +spese +legali +provare +innocenza +anni +risparmi +bruciati +difeso +legalmente +vita +altre +persone +mettendo +rischio +altro +propria +legge +seria +legittima +difesa +necessaria +paese +normale +principali +missioni +volta +governo +ladifesaèsemprelegittima +andiamoagovernare +pensiero +caro +ermes +mattielli +fortuna +incontrare +morì +infarto +dopo +aver +appreso +dover +risarcire +famiglia +rom +derubato +vergogna +qualche +minuto +prego +ascoltare +diffondere +storia +sergio +umiliato +rovinato +stato +ladro +burocrate +parassitario +paga +debiti +oltre +milioni +altro +euro +tenuto +duro +altri +imprenditori +suicidati +paese +civile +amministrazioni +pubbliche +trattano +così +fa +impresa +rischia +fida +istituzioni +onore +te +sergio +priorità +governo +altro +ius +soli +mattina +canale +credo +essere +stato +chiaro +ladro +succede +qualcosa +sbaglio +ladifesaèsemprelegittima +allegria +risorse +giovani +fresche +vengono +pagarci +pensione +roba +matti +modena +classe +sola +bimba +italiana +integrazione +modello +boldrini +attenti +accordo +sempre +pronta +accusa +razzismo +ve +persa +ripropongo +intervista +ieri +night +tabloid +rai +bel +programma +andiamoagovernare +tentato +rapire +figlia +ieri +parlato +arresto +kenioti +fratello +sorella +tentato +rapire +bimbi +oratorio +provincia +monza +racconto +mamma +bambini +pianto +capivo +cosa +succedendo” +delinquenti +espulsione +immediata +galera +casa +idea +futuro +idea +italia +mai +visto +vicenza +riusciti +entrare +live +albergo +vivono +spese +immigrati +guadagna +milioni +euro +grazie +presunti +profughi +spuntano +affari +5stelle +dice +signor +grillo +tivù +nascondono +vergogna +fate +girare +secondo +normale +famiglia +consuma +zero +paghi +bolletta +elettrica +euro +tasse +video +pazzesco +messi +fate +girare +sembra +normale +portare +via +signore +servano +agenti +devono +supplicarlo +entrare +auto +basta +forze +ordine +devono +poter +altro +lavorare +tranquillamente +normalmente +pd +5stelle +approvato +reato +tortura +mette +carabinieri +poliziotti +agenti +polizia +penitenziaria +mano +delinquenti +iostoconlapolizia +aziende +delocalizzato +restituiscano +soldi +pubblici +ricevuti +lega +fatto +proposta +legge +norme +europee +può +dire +freghiamo +altro +buon +senso +dobbiamo +imporre +misure +corrette +tutelare +sistema +produttivo +lavorativo +” +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +lunedì +partecipato +bottiglie +aperte” +evento +scoperta +migliori +vini +italiani +attualmente +italia +paese +grande +quantità +vino +prodotto +mondo +mentre +francia +rimane +altro +paese +alto +valore +produzione +nonostante +quantità +prodotta +inferiore +vuol +dire +mediamente +vino +francese +costa +italiano +dobbiamo +valorizzare +vino +inferiore +nessuno +sfida +volta +governo +difendere +tutta +agricoltura +italiana +nord +sud +presunti +profughi +picchiano +capitreno +esigono +viaggiare +gratis +nascondono +armadietti +quadri +elettrici +carrozze +ormai +quotidianità +treni +italiani +invasione +pretendere +normalità +sicurezza +troppo +risorsa +azione +prima +dà +fuoco +cassonetto +poi +escandescenza +inveisce +pattuglia +carabinieri +bella +ripulita +serve +italia +mentre +commercianti +italiani +lottano +sopravvivenza +tasse +burocrazia +scontrini +concesso +centro +bologna +italia +abusiva +pd +cambiare +può +ripulire +deve +stopinvasione +bastapd +diretta +badia +polesine +rovigo +parlare +futuro +lavoro +libertà +fate +qualche +minuto +parlare +basta +polemiche +litigi +vedo +ora +avere +potere +cambiare +meglio +italia +lacrime +miriam +anni +figlio +disabile +dopo +sfratto +dovuto +vendere +quadri +dipinti +ricordi +vita +pagarsi +qualche +notte +residence +signora +altro +accontenterebbe +solo +magazzino +capanna” +niente +però +governo +pensa +bene +dare +casa +lavoro +75mila +profughi” +basta +basta +basta +primagliitaliani +sentito +parlare +qualche +tg +nazionale +sardegna +invasa +sbarchi +fantasma +delinquenti +nordafricani +testimonianza +commercianti +cagliari +moglie +seguita +stranieri +altro +ostaggio +algerini +ubriachi +drogati +ora +costretti +pagarsi +vigilanza +privata +pd +bene +eh +guerre +algeria +stato +mette +primo +posto +sicurezza +cittadini +stato +fallito +sabato +novembre +cagliari +tante +persone +perbene +dire +stopinvasione +abbassare +tasse +rilanciare +lavoro +solo +così +riparte +italia +economia +malata +curarla +bisogna +rimettere +moto +sistema +immunitario +paese +creare +lavoro +altro +flat +tax +riforma +prevede +inoltre +inversione +onere +prova +inaccettabile +materia +fiscale +stato +sempre +ragione +contribuente +sempre +torto +armando +siri +facciamosquadra +andiamoagovernare +approfondimenti +www +tassaunica +it +fatti +catalani +visto +tante +follie +ennesima +volta +assordante +silenzio +ipocrisia +europa +bruxelles +sanzioni +russia +putin +democratico +silenzio +altro +centinaia +cittadini +malmenati +chiedevano +poter +votare +vengono +prima +cittadini +manganelli +proiettili +gomma +potere +statale +prevale +esiste +vengono +prima +libertà +democrazia +rispetto +regole +violenza +mai +soluzione +italiani +disperati +costretti +vivere +auto +scantinati +edifici +abbandonati +frattempo +pd +stelle +regalano +lavoro +casa +clandestini +rom +primagliitaliani +solo +hashtag +missione +governo +rom +incinte +impunibili +travestono +artiste +strada +avvicinare +turisti +fregargli +portafoglio +bello +stile +vita +splendida +immagine +dà +firenze +culla +arte +civiltà +mondo +governo +pd +anni +fregato +governo +tolleranzazero +delinquenti +minuti +liberi +guardate +intervento +rete +catalogna +violenza +europa +povertà +italia +ditemi +stato +abbastanza +chiaro +forzanonnapeppina +ecco +ridotto +pd +cuore +bologna +parco +montagnola +diventato +teatro +violenza +spaccio +droga +impedire +arresto +solite +risorse +circondano +vigili +mandandone +ospedale +schifo +tolleranzazero +bastapd +las +vegas +strage +mai +vista +almeno +morti +centinaia +centinaia +feriti +prescindere +legami +meno +terrorismo +islamico +preghiera +vittime +ennesima +follia +criminale +tutta +vicinanza +popolo +americano +bisogna +approvare +ius +soli +altrimenti +vince +salvini +dice +faziosa +boldrini +orgoglioso +aver +mai +mollato +aiuto +governi +invasione +ora +andiamo +ridare +lavoro +speranza +italiani +insieme +vince +noiussoli +guardate +video +amichetti +centri +sociali +casino +torino +g7 +oggi +milano +lasciati +lanciarmi +insulti +uova +sputi +lascio +altro +giudicare +fascisti +blaterano +ascoltateli +bene +mamma +chiede +smetterla +fare +casino +bambini +sinistroide +risponde +cazzo +frega +cretina +annetto +servizio +civile +militare +potrebbe +essere +buona +cura +magari +imparerebbero +avere +po +rispetto +altri +dite +profughi +vitto +alloggio +lavoro +cellulare +me +cittadino +italiano +niente +costretto +vivere +bagno +cimitero +signor +karaboue +coraggio +fargli +morale +informi +comune +problema +immigrati +entra +niente +oggi +torino +deficiente +cappuccio +giallo +bene +annetto +servizio +militare +viva +polizia +ecco +intervento +ieri +torino +davanti +platea +consulenti +lavoro +proposte +abolire +legge +fornero +ridare +fiato +occupazione +giovanile +eliminare +tutta +burocrazia +altro +inutile +dannosa +studi +settore +spesometro +ridurre +drasticamente +carico +fiscale +trump +stati +uniti +flat +tax +vedo +ora +poter +passare +parole +fatti +andiamoagovernare +vivere +andiamo +rubare +consiglio +bella +compilation +orgoglio +rom +unica +soluzione +italia +tolleranzazero +maria +etruria +ancora +parla +ius +soli +sicuramente +priorità +prossima +legislatura +capito +lavoro +tasse +povertà +no +primo +impegno +kompagni +regalare +altro +cittadinanza +immigrati +nessuna +intenzione +integrarsi +fortunatamente +così +vinceremo +noiussoli +bastapd +andiamoagovernare +fedriga +asfalta +senatore +pd +conduttore +la7 +ammette +scene +quotidiane +migranti +pagano +biglietto +scontri +treni +italiani +quartieri +radicalizzati +altro +molenbeek +belgio +segnali +mostrano +limiti +integrazione +alcune +tipi +culture +integrabili +penso +molto +diverso +rapporto +immigrato +cristiano +islamico +sostenere +contrario +significa +negare +verità +migranti +economici +visto +molti +casi +denutrizione +massimiliano +fedriga +presidente +deputati +lega +facciamosquadra +andiamoagovernare +seguite +visita +mattina +mercato +magliana +roma +sondaggi +piacciono +cambiare +può +ieri +sera +visto +puntata +cartabianca +bianca +berlinguer +rai +ve +ripropongo +andiamoagovernare +pronto +aiutatemi +diffonderla +amici +colpa +vergognerei +aver +allevato +bestie +dichiarazioni +allucinanti +padre +minorenni +marocchini +accusati +stupro +rimini +susanna +zitta +rende +altro +conto +particolari +agghiaccianti +successo +umano +” +susanna +ceccardi +sindaco +càscina +pisa +facciamosquadra +andiamoagovernare +buon +lunedì +amici +voglia +parlare +po +insieme +puoi +sognarlo +puoi +farlo +walt +disney +video +verità +aprire +porte +accogliere +accogliere +accogliere +senza +limiti +senza +buonsenso +così +città +diventate +sempre +pericolose +particolare +donne +altro +video +testimonianza +telecamere +nascoste +ragazze +finte +turiste +passeggio +roma +subendo +aggressioni +minacce +balordi +molestatori +ogni +tipo +ora +mai +cambiare +può +cambiare +deve +stopinvasione +emendamento +raddoppiare +indennità +possiede +cane +guida +ciechi +piccolo +gesto +concreto +costa +poco +mille +persone +può +essere +grande +aiuto +magari +strappare +sorriso +pd +pensa +ius +soli +primaglitaliani +torre +angela +periferia +roma +nigeriano +armato +piccone +sfascia +terrorizza +residenti +condominio +bell +italia +lasciano +anni +anni +governo +pd +paese +bisogno +bella +ripulita +ecco +intervista +ieri +sera +bruno +vespa +porta +porta +vedo +ora +italiani +permesso +votare +squadra +pronti +leggo +commenti +andiamoagovernare +ottobre +parte +terza +edizione +cattedre +cravatta +scuola +formazione +politica +anni +formato +centinaia +ragazzi +ragazze +uomini +donne +altro +anni +educando +confronto +apertura +mentale +scambio +tesi +partendo +numeri +arrivare +realtà +informati +iscriviti +www +scuoladiformazionepolitica +it +andiamoagovernare +email +segreteria +scuoladiformazionepolitica +it +terremotata +sfrattata +casetta +legno +donatale +famigliari +anni +rendete +conto +storia +incredibile +vergognosa +grida +vendetta +domani +andrò +martino +fiastra +macerata +cercheremo +dare +mano +risolvere +incredibile +vicenda +forza +nonna +peppina +mentre +altri +chiusi +palazzo +orgoglioso +stare +agenti +polizia +penitenziaria +veri +detenuti +richieste +quando +governo +diventeranno +realtà +fassino +pd +ius +soli +vuole +spalleggiato +solito +regista +radical +chic +inneggia +futuro +multiculturale +italia +senza +senza +provano +solo +iniziare +pronunciare +parola +ius +soli +blocchiamo +parlamento +basta +bloccarlo +dentro +blocchiamo +fuori +noiussoli +immigrato +senza +biglietto +zittisce +capotreno +cittadina +esasperata +riprende +grazie +pd +ridotto +paese +richiesta +così +esagerata +pretendere +po +regole +po +rispetto +volta +telegiornali +dovuto +aprire +servizio +lega +merito +splendido +popolo +pontida +andiamoagovernare +grazie +splendido +popolo +pontida17 +imbavaglieranno +mai +andiamoagovernare +grazieeeee +pontida17 +grazie +amici +tantissimi +forzalega +diretta +pontida +prepariamo +splendida +giornata +libertà +forzalega +sembra +paese +democratico +magistrato +fatto +fa +fuori +partito +renzi +rosicone +sciacallo +grazie +nicola +porro +giornalista +schiena +dritta +ancora +orecchie +occhi +affetto +dimostrato +qualche +sera +fa +studio +la7 +cresciamo +idee +dimostrano +giuste +milioni +italiani +sostengono +prosciugano +altro +conti +esproprio +proletario +senza +precedenti +fare +ricorso +singolo +intero +popolo +certo +vinceremo +libereremo +paese +domani +pontida +conto +te +forzalega +accordo +giornalista +buonista +te +pronta +accusa +uomo +bianco +sessista +amici +pensano +imbavagliarci +trovato +persone +sbagliate +fermeranno +mai +possiamo +pretendere +africano +sappia +italia +spiaggia +possa +violentare +persona +così +avvocato +comitato +pari +opportunità +corte +appello +salerno +tale +carmen +genio +ormai +italia +follia +ricoveratela +stopinvasione +ripropongo +conferenza +stampa +ieri +sera +neanche +turchia +usano +giudice +mettere +fuori +legge +partito +stupro +rimini +dopo +padre +arresti +domiciliari +certo +figli +presto +liberi +ecco +madre +accusata +essere +solita +minacciare +vicina +casa +coltello +dicendole +scopare +figli +proprio +bella +famigliola +gente +merita +rimanere +paese +assassino +noemi +saluta +ride +spero +carcere +passare +voglia +minuti +ecco +euro +rovinato +italiani +avvantaggiato +germania +cambiare +può +pensionato +lavoratore +dipendente +subito +accorto +entrando +euro +propria +altro +pensione +proprio +stipendio +valevano +metà +prima +giancarlo +giorgetti +deputato +vicesegretario +lega +facciamosquadra +andiamoagovernare +fatto +solo +anno +galera +anni +italia +figli +anni +usciranno +carcere +paparino +bravi +ragazzi +marocchini +arrestati +stupro +rimini +diamo +notizia +molto +presto +lega +governo +posto +pd +festa +finisce +bello +figo +bella +ciao +nuovi +kompagni +crescono +aereo +ritardo +ore +parlo +po +tassa +unica +funziona +flat +tax +sostenibile +equo +progressivo +esiste +già +attuale +sistema +aliquota +minima +percentuale +superiore +lascerebbe +altro +fuori +beneficio +fiscale +oltre +milioni +italiani +italia +deve +ripartire +senza +lasciare +indietro +nessuno +armando +siri +facciamosquadra +andiamoagovernare +approfondimenti +www +tassaunica +it +francofonte +vicino +siracusa +alcuni +immigrati +minorenni +scontenti +paghetta +cibo +vestiti +distruggono +mobili +poi +lanciano +balcone +centro +ospita +tranquilli +risposta +buonisti +già +pronta +colpa +salvini +semina +odio +ripropongo +intervista +ieri +sera +paolo +debbio +davanti +migliaia +persone +firenze +vedono +ora +liberare +italia +renzi +pd +andiamoagovernare +firenze +scandicci +spettacolo +segui +https +www +facebook +com +leganord +toscana +videos +amici +saluto +diretta +festa +lega +piemonte +trecate +novara +neanche +pioggia +ferma +state +sbarco +indisturbato +vicino +agrigento +scafisti +cercano +nuovi +approdi +stati +bagnanti +dare +allarme +fermare +nuovi +presunti +profughi +fuga +video +incredibile +tg +ve +vedere +roma +pretende +salire +metro +senza +biglietto +soldi +toccarmi +vaffanculo +ammazzo +arroganza +insulti +violenza +altro +addetti +sicurezza +forze +ordine +voglio +riportare +paese +aiuto +ordine +regole +rispetto +stopinvasione +vergogna +italiana +malata +terminale +ferrara +casa +popolare +graduatorie +favoriscono +sempre +immigrati +nato +pagato +contributi +vita +intera +dovrebbe +essere +favorito +penalizzato +primagliitaliani +solo +buon +senso +evidentemente +pd +governo +venduto +italiani +liberi +stare +tranquilli +nemmeno +casa +devono +tutelare +altrimenti +tuteleremo +soli +dice +franco +carabiniere +congedo +altro +delinquenti +aggredito +moglie +paola +giardino +abitazione +provincia +treviso +parole +sacrosante +condividere +buon +viaggio +sempre +amici +addio +gastone +moschin +ogni +volta +riguardo +scena +rendo +conto +cosa +genio +grande +cinema +rilanciare +ripulire +riordinare +italia +minuti +proposte +molto +applaudite +rispetto +grillino +maio +aiutami +condividere +andiamoagovernare +regolare +biglietto +immagino +dopo +anni +battaglie +denunce +lega +cittadini +qualcuno +accorge +moi +torino +clandestini +criminali +sgomberare +madonnina +riccioli +oro +fisarmonica +spettacolo +pinzolo +buonasera +amici +saluto +diretta +pinzolo +splendido +trentino +state +oggi +roma +scappare +guerra +portano +città +bastaaaaa +controlli +espulsioni +tranquillità +casaaaaa +stopinvasione +bottiglie +sassi +polizia +mattina +alba +parte +centinaio +immigrati +accampati +abusivamente +giardini +piazza +indipendenza +roma +forza +ragazzi +sgomberi +ordine +pulizia +espulsioni +italiani +ecco +video +vale +mille +discorsi +paese +fa +figli +paese +muore +soluzione +immigrazione +falso +immigrati +pagheranno +pensione +falso +numeri +mano +ecco +analisi +proposte +professor +gian +carlo +blangiardo +università +bicocca +milano +condividi +puoi +ripropongo +intervista +ieri +sera +onda +me +pare +essere +stato +chiaro +efficace +dite +girare +tace +complice +sempre +grazie +oriana +diretta +ponte +legno +insieme +mare +gente +perbene +state +dimartedì +la7 +fornero +invidio +solo +serenità +tosta +parla +riforma +gettato +disperazione +milioni +italiani +cazzola +stessa +bronzo +ricoveratelo +quinta +colonna +rete +governo +domani +mattina +concederei +nemmeno +mezzo +metro +quadro +comunità +islamiche +finché +firmano +nero +bianco +donna +diritti +uomo +capiti +casa +funziona +cosí +tranquilli +cercava +recuperare +soldi +biglietto +ministro +interno +innanzitutto +domani +mattina +attracca +nessuna +nave +carica +nuovi +schiavi +mezzo +la7 +unici +razzisti +italia +pd +razzisti +confronti +italiani +noiussoli +lacittadinanzanonsiregala +solo +italia +fregato +milioni +danno +mano +problema +30mila +euro +fisco +finito +statoladro +dibattito +flat +tax +domande +frequenti +passa +sistema +attuale +aliquota +unica +minuti +professor +maurizio +leo +propone +spiega +possibile +rivedendo +sistema +fiscale +logica +contribuenti +stato +ripartire +lavoro +andiamogovernare +profughi +offerti +coop +lavoratori +euro +mese +dedicato +lavori +italiani +vogliono +fare +sì +italiani +schiavi +tranquilli +diventerà +stile +vita +garantisce +boldrini +ripropongo +confronto +aprile +presidente +ong +medici +senza +frontiere +ieri +denunce +ridicolizzate +oggi +inchieste +stopinvasione +ogni +anno +aziende +italiane +perdono +giorni +lavoro +solo +adempimenti +burocratici +media +ocse +intervento +consiglio +prof +luigi +carbone +massimi +altro +esperti +italiani +semplificazione +amministrativa +spiega +abbattere +zavorra +tornare +correre +andiamoagovernare +sentite +cosa +dicono +andrea +orlando +andrea +romano +entrambi +pd +primo +ministro +giustizia +dice +lega +vuole +lasciare +annegare +persone +mare +secondo +deputato +sostiene +voglio +affondare +navi +ong +gente +bordo +vergognosi +bugiardi +dite +quereliamo +signora +anna +maestra +merlettaia +burano +venezia +lavoro +squadra +straordinario +arte +tramandare +giovani +intervista +mattina +rtl +spero +essere +stato +chiaro +secondo +quel +poveretto +spirito +conto +corrente +saviano +quindi +razzista +ignorante +farneticante +sgrammaticato +andiamo +governo +dopo +aver +bloccato +invasione +leviamo +inutile +scorta +dite +vuole +stare +deve +accettare +principio +molto +chiaro +semplice +primagliitaliani +visto +qualche +tg +diffondiamo +almeno +rete +napoli +zona +stazione +uomini +esercito +vengono +accerchiati +aggrediti +decine +immigrati +volevano +impedire +arresto +altro +ormai +guerriglia +urbana +basta +solidarietà +abitanti +quartiere +purtroppo +sindaco +ritrovano +amico +clandestini +centri +sociali +video +maggio +legami +ong +scafisti +lega +ragione +coraggioso +procuratore +zuccaro +ragione +insulti +presi +solo +pochi +mesi +fa +piddini +buonisti +vari +eventuali +bastapd +andiamoagovernare +risorsa +beccata +durante +blitz +altro +giorno +stazione +centrale +milano +ribella +insulta +sbava +ridotti +pazienza +polizia +sempre +grazie +facciamopulizia +andiamoagovernare +diretta +moschea +abusiva +via +cavalcanti +milano +estate +diventa +scuola +islamica +cittadini +giustamente +arrabbiano +controllore +razzista +povero +immigrato +parente +boldrini +http +bit +2vtdf6h +pazzesco +sudanese +anni +zigzagava +traffico +firenze +bici +rubata +vigile +ferma +tenta +immobilizzarlo +presunto +profugo +preziosa +risorsa +boldriniana +ruba +pistola +spara +colpi +poteva +essere +strage +dicono +buonisti +capiranno +oltre +ogni +limite +torino +uomo +anni +picchiato +ferocia +derubato +arrestati +marocchini +pluripregiudicati +già +decreto +espulsione +spalle +schifosi +delinquenti +italiani +già +abbastanza +altri +espulsione +immediata +galera +casa +buonisti +scandalizzano +me +povia +uomo +artista +coraggioso +stopinvasione +credo +minuti +efficaci +facciamoli +girare +serve +scienziato +capire +numeri +dite +stopinvasione +andiamoagovernare +onore +poliziotto +ventimiglia +balia +presunti +profughi +qualche +malpensante +sinistra +boldrini +condanna +agente +cerca +fare +lavoro +condizioni +impossibili +stopinvasione +grazie +nicola +porro +giornalista +uomo +libero +riconoscerci +flat +tax +stati +primi +parlare +oggi +discutono +tanti +dibattito +comunque +positivo +importante +arrivare +farlo +www +tassaunica +it +video +stato +già +visto +milioni +volte +condividere +inviare +immigrati +volta +manifestazione +cgil +calabria +lavoratori +italiani +però +allegri +bella +ciao +manca +mai +corre +pagarvi +pensione +fare +prima +prende +autostrada +roba +matti +roba +italia +pd +eccomi +pronto +rispondere +domande +cesenatico +romagna +risorsa +boldriniana +insegna +stile +vita +casa +fronte +storia +sandra +solo +vergognarsi +essere +cittadini +stato +domani +mattina +venerdì +lega +siena +organizza +presidio +sotto +tribunale +via +camollia +altro +difendere +diritti +sandra +muovendo +parlamentari +appello +presidente +consiglio +gentiloni +posizioni +politiche +entrano +solo +buon +senso +solo +aiutare +girare +parlano +crisi +economica +nessuno +parla +crisi +demografica +culle +vuote +saldo +nati +morti +negativo +immigrati +pagheranno +pensione +falso +soluzione +immigrazione +falso +numeri +altro +mano +ecco +analisi +alcune +proposte +salvarsi +chiarissimo +intervento +prof +gian +carlo +blangiardo +università +bicocca +milano +dovrebbe +essere +trasmesso +rai +reti +unificate +attendo +commenti +condividi +puoi +bravi +ragazzi +centri +sociali +manifestato +lunedì +sera +padova +ius +soli +suon +bottiglie +molotov +bombe +carta +polizia +solidarietà +agenti +feriti +certo +altro +massimo +bitonci +sindaco +evitato +voglio +sperare +strane +connivenze +qualche +consigliere +comunale +nuova +maggioranza +sinistra +immigrazione +giovani +lavoro +processi +bagnini +fascisti +libertà +pensiero +rispondere +giornalista +rai +dite +incredibile +cagliari +dirà +boldrini +tranquilli +appena +finita +bottiglia +risorsa +correrà +pagarvi +pensione +tolleranzazero +stopinvasione +quando +troppo +troppo +calabria +lunedì +tornerò +tappe +http +bit +2tx5rva +cittadini +denunciano +invasione +datemi +mano +bastapd +stopinvasione +qualche +minuto +dedicare +ripropongo +intervista +ieri +coffee +break +la7 +andiamoagovernare +spettacolo +ladispoli +roma +buon +lavoro +nuovo +sindaco +alessandro +grando +sempre +primagliitaliani +grande +interesse +progetto +governo +futuro +presentato +oggi +dialogo +giornalisti +stranieri +roma +risse +bande +risorse +boldriniane +nordafricane +trento +residenti +ovunque +vomito +schizzi +sangue +degrado +unica +soluzione +barcone +ripropongo +intervista +ieri +sera +onda +sembrata +abbastanza +chiara +efficace +dite +marea +gente +lega +adro +brescia +renzi +casaaaaa +delinquenti +risorse +boldriniane +fuga +oggi +pomeriggio +bologna +dopo +aver +rubato +valigie +alcuni +malcapitati +aspettando +autobus +lavori +italiani +vogliono +fare +bastapd +stopinvasione +dimentichiamo +geniali +parole +vedo +ora +votare +mandarla +casa +minorenni +rom +scuola +scippo +metropolitana +roma +ascoltate +luca +zaia +diretta +roma +riso +pesticidi +figli +no +ceta +trattato +libero +scambio +italia +canada +rischio +tutela +made +italy +sovranità +agroalimentare +rinunciamo +stopceta +bastapd +pensate +francia +vinto +marine +pen +detto +cose +macron +gridato +razzismo +fascismo +squadrismo +onesto +enricocipiace +macronno +pazzesco +italiano +paga +immigrato +no +grazie +ragazzo +documentato +realtà +chiesto +condividiamo +bastapd +basta +razzismo +verso +italiani +ennesima +rivolta +oggi +cuore +prato +pare +deperitissimi +ospiti +gradiscano +regole +centro +accoglienza +orari +ingresso +uscita +basta +risultato +altro +anni +governi +pd +letta +renzi +gentiloni +incapaci +complici +datemi +mano +stopinvasione +riprendiamoci +città +minuti +energia +emozioni +giovedì +sera +modena +park +grazie +vasco +immagini +by +matteo +salvini +pazienza +altro +ius +soli +ecco +priorità +andiamoagovernare +poi +pd +interroga +cause +sconfitta +video +vale +mille +analisi +abbraccio +signora +silvana +signor +giuseppe +tolleranzazero +andiamoagovernare +diretta +bruxelles +seguite +intervento +convegno +oltre +unione +europea +nuovo +modello +cooperazione +nazioni +sovrane +organizzato +gruppo +europa +nazioni +libertà +ripropongo +intervista +ieri +sera +bruno +vespa +porta +porta +potuto +spiegare +spero +chiarezza +proposte +governo +paese +andiamoagovernare +diretta +genova +buccisindaco +me +politica +sudore +ascolto +passione +fare +incontri +elettorali +consumarsi +suola +scarpe +solo +tv +facebook +risultati +poi +arrivano +renzi +candidiamo +conduttore +visto +prossima +stagione +andiamoagovernare +grazie +amici +qualche +minuto +commentare +storici +ballottaggi +ieri +andiamoagovernare +genova +città +libera +solo +vittorie +incredibili +grazie +andiamoagovernare +liberiamo +aquila +sistema +affari +potere +mancata +ricostruzione +periferie +frazioni +dimenticate +lavorare +imprese +aquilane +domenica +vota +biondisindaco +ancora +altro +grazie +ragazzi +salvini +settimane +fa +esordio +preso +quasi +avanti +fino +domani +sera +fino +ultimo +voto +domenica +tocca +invia +amici +vince +gentiloni +renzi +boschi +boldrini +piangono +iovoto +bastapd +primagliitaliani +diretta +spezia +sicambia +25giugno +stopinvasione +diretta +quartiere +lavatrici +pegli +genova +tante +periferie +dimenticate +sindaci +sinistra +entriamo +case +ascoltiamo +risolviamo +25giugno +pdacasa +domenica +iovoto +già +convinto +amici +andare +città +sicure +pulite +giuste +bastapd +primagliitaliani +salvini +hitler +salvini +cretino +salvini +semina +odio +facebook +deliranti +accuse +ieri +diretta +rai +santoro +idiozie +pagate +canone +vergogna +insultano +così +paura +dite +quereliamo +direi +sì +parlava +anni +massimo +bitonci +sgomberi +campi +rom +promessi +poi +fatti +padovani +sanno +domenica +25giugno +avanti +bitonci +intervista +mattina +radio +domenica +vinciamo +genova +sempre +stata +governata +sinistra +gentiloni +salta +auguro +nessuno +ciò +dovuto +subire +ragazza +siriana +cittadinanza +merita +certamente +alcuni +nati +italia +soprattutto +certi +politici +vorrebbero +regalarla +biglietto +omaggio +visto +monsignor +galantino +segretario +vescovi +italiani +fa +politica +attaccando +lega +dire +ignobili +gazzarre +parlamento +invito +confronto +pubblico +proporrei +soluzioni +altro +chiesa +accoglie +gratis +rinunciando +introiti +immigrazione +oppure +galantino +fa +parte +magari +dimettendosi +noiussoli +lacittadinanzanonsiregala +stazione +verona +belle +risorse +immigrate +ripuliamo +sboarina +sindaco +25giugno +quando +guardia +finanza +entra +campi +rom +trova +soldi +oro +orologi +macchine +contanti +presenti +studio +martedì +casa +possono +permettere +altro +italiani +mettono +fila +casa +popolare +altri +cittadini +po +regole +po +ordine +po +giustizia +zero +tolleranza +verso +furbi +sbaglio +25giugno +pdacasa +quartiere +san +teodoro +genova +spaccio +furti +occupazioni +abusive +case +frana +incombente +anni +pd +cosa +fatto +unici +razzisti +italia +pd +razzisti +confronti +italiani +noiussoli +lacittadinanzanonsiregala +cittadinanza +italiana +biglietto +luna +park +vanno +bene +nuovi +italiani +video +dice +donna +sottomessa +vuole +invece +uomo +può +fare +vuole +noiussoli +lacittadinanzanonsiregala +renziacasa +vergognoso +milioni +italiani +poveri +milioni +italiani +disoccupati +pd +pensa +regalare +cittadinanza +immigrati +lega +unica +speranza +noiussoli +lacittadinanzanonsiregala +oggi +stato +primo +ladro +produce +arriva +chiedere +fino +tassa +unica +funziona +paesi +mondo +programma +theresa +may +donald +trump +italia +serve +rivoluzione +fiscale +altro +cambiare +nome +equitalia +numeri +risposte +tutte +domande +www +tassaunica +it +benvenuti +zingarauto +ricambi +concessionaria +mercedes +audi +prezzi +stracciati +tranquilli +regolari +fattura +intestate +madre +dice +venditore +roba +matti +tolleranzazero +altro +finanziamenti +casa +lavoro +rom +equitalia +renzi +solo +cambiato +nome +fregarci +meglio +italiani +scemi +finché +stato +primo +pagare +migliaia +fornitori +restituire +rimborsi +iva +irpef +tempi +decenti +permette +entrare +conti +correnti +cittadini +basta +statoladro +25giugno +renziacasa +scommessa +allargare +battaglia +proposta +lega +solo +penalizza +nord +anzi +coinvolge +tanti +nuovi +elettori +tutte +regioni +riempie +emozione +grazie +altro +italiani +dato +fiducia +nord +sud +girerò +città +città +mercato +mercato +quartiere +popolare +quartiere +popolare +confermare +aumentare +fiducia +progetto +sindaci +ballottaggi +25giugno +renzi +fissa +date +estive +votare +minor +numero +persone +possibile +domani +impegnato +nuovo +giro +decine +decine +piazze +ambizione +riportare +votare +ballottaggi +giugno +almeno +parte +metà +elettori +perso +speranza +rimane +casa +troverete +tutte +informazioni +pagina +sezione +eventi +cambiare +può +floris +chiesto +lega +piace +dato +risposta +secondo +così +disse +missionario +salvini +date +miliardi +africa +costruiamo +pozzi +acqua +strade +ospedali +spesi +italia +soldi +arricchiscono +malavita +organizzata +altro +riempiono +nuovi +schiavi +giovani +maschi +sottratti +sviluppo +paesi +origine +cosa +umanitario +invasione +sconfitta +sindaco +pd +renzi +lampedusa +ipocrisia +sinistra +scontrata +vita +reale +ricordo +mamma +sì +bene +accoglienza +premi +viaggio +obama +poi +devo +spendere +20mila +euro +partorire +isola +servizi +altezza +primagliitaliani +giugno +investirete +minuti +scegliere +sindaco +cambiare +può +renzi +dice +vinto +elezioni +governo +gentiloni +durerà +fino +pd +conoscono +vergogna +stopinvasione +elezionisubito +25giugno +partito +poltrone +vuole +rinviare +elezioni +anno +prossimo +gentaglia +parlamento +casa +domani +vota +lega +san +siro +davide +van +sfroos +modello +stelle +rom +euro +affittare +casa +romani +calcio +sedere +domenica +quando +votate +comune +pensateci +lega +unica +speranza +primagliitaliani +diretta +periferia +alessandria +quartiere +cristo +case +popolari +occupate +indovinate +autobus +presi +sassate +spaccio +droga +casa +pd +pulizia +gliel +detto +no +vergogna +italiani +massacrati +legge +fornero +zero +scuse +proposte +buon +senso +pd +comunque +fatica +capire +italia +viene +preso +solo +ladri +rapinatori +serve +sostenere +dare +risorse +forze +altroordine +galera +dev +essere +galera +austria +obbligo +viene +condannato +via +definitiva +lavorare +carcere +modo +ripagare +costi +sostenuti +stato +detenuti +stranieri +devono +essere +rispediti +scontare +pena +casa +serve +legge +normale +follie +renzi +amici +legittima +difesa +sempre +legittima +verona +qualche +minuto +insieme +incredibile +giocatori +arabia +saudita +trasferta +australia +rifiutano +partecipare +minuto +silenzio +vittime +londra +dialogo +può +avere +islam +vergognatevi +fate +girare +nessuna +tivù +vedere +immagini +poltronari +votano +legge +elettorale +vogliono +rinviare +elezioni +schifo +problemi +italiani +immigrazione +tasse +disoccupazione +pensa +solo +poltrona +elezionisubito +moschee +finanziate +soldi +qatar +roba +matti +lega +governo +nemmeno +mezzo +metro +quadro +lontanamente +sospettabile +fiancheggiare +terrorismo +islamico +solo +tarato +mentale +può +sostenere +legittima +difesa +legittima +solo +notte +aiutatemi +liberare +italia +idiozia +pd +credevo +europa +sistema +integrazione +fallito +ascoltate +testimonianza +ragazzo +vive +londra +fortuna +salvarsi +ultima +strage +nome +allah +solo +ciechi +complici +vedono +realtà +immagini +incredibili +litigavano +decidere +doveva +pagarvi +pensione +ennesima +rissa +risorse +bivaccanti +mattina +stazione +padova +piace +bel +modello +immigrazione +altro +senza +regole +senza +controlli +smettete +leggere +uscite +pagina +troverete +meglio +renzi +boldrini +piddini +vari +invece +fa +schifo +domenica +arma +voto +massimo +bitonci +padova +comuni +vota +sindaci +sostenuti +lega +salvini +nord +sud +metto +tutta +datemi +mano +tolleranzazero +primagliitaliani +terroristi +passaporto +italiano +mafiosi +vogliono +uscire +galera +arrendo +casa +governo +domani +mattina +concederei +nemmeno +mezzo +metro +quadro +comunità +islamiche +finché +firmano +nero +bianco +donna +diritti +uomo +capiti +casa +funziona +cosí +tanta +splendida +gente +incontrata +scorso +weekend +lombardia +emilia +romagna +veneto +questadomenica +votalega +votanoiconsalvini +basta +spreconi +pensare +aumentare +iva +momento +crisi +economica +ricovero +coatto +obbligassero +tutte +venti +regioni +italiane +comprese +statuto +speciale +spendere +stessa +cifra +fare +stessa +cosa +risparmierebbero +miliardi +anno +insieme +capire +juve +vince +diretta +marliana +pistoia +albergo +stelle +presunti +profughi +vogliono +pure +aver +ragione +stopinvasione +salvini +serio +persona +seria +dice +giornalistone +corriere +solo +me +difesa +sempre +legittima +permette +dovrebbe +essere +super +partes +candidi +boldrini +eleggere +mercato +monza +spettacolo +tanta +gente +voglia +cambiare +puoi +dare +mano +voto +11giugno +vomito +qualche +minuto +investire +vale +pena +vedere +servizio +altro +accoglienza +sfruttamento +schiavismo +mangiare +solite +coop +minniti +gentiloni +altro +prefetti +sveglia +occuperà +qualcuno +istituzioni +andrò +personalmente +centro +immigrati +foggia +chiederò +sigillare +vergogna +purtroppo +famigerato +ex +villaggio +olimpico +torino +stato +molte +volte +aggressione +diretta +troupe +quinta +colonna +vivono +abusivamente +centinaia +presunti +profughi +altro +richiedenti +asilo +italiano +entri +rischi +mandino +ospedale +magari +cimitero +tollerabile +interi +quartieri +città +mano +delinquenti +stupisce +magari +poi +qualcuno +dicono +buonisti +radicalizzi +date +mano +lega +tolleranzazero +11giugno +pazzesca +aggressione +diretta +tivù +troupe +parte +cerca +documentare +invasione +stazione +tiburtina +roma +schifo +lega +governo +tolleranzazero +ve +garantisco +regione +liguria +lega +primo +partito +maggioranza +approvato +legge +piacerebbe +estendere +tutta +italia +avere +casa +popolare +devi +essere +residente +qua +almeno +anni +arrivato +altro +ieri +metti +fila +prima +arrivano +italiani +qualche +minuto +insieme +case +popolari +prima +italiani +pd +protesta +attacca +lega +razzista +rispondiamo +porterò +piazza +santeramo +cuore +grazie +amici +immagini +ve +mostrerà +nessun +telegiornale +fortuna +rete +intervista +stamattina +rtl +tanti +messaggi +ricevuti +tanti +temi +toccati +possibilità +spiegare +spero +chiarezza +proposte +governo +paese +votosubito +intervista +ieri +mattina +sky +tg +penso +essere +stato +abbastanza +chiaro +votosubito +afferma +possibile +espellere +immigrati +clandestini +complice +volontà +può +fare +vedo +ora +essere +governo +fermare +invasione +stopinvasione +pazzesco +spaccio +droga +vendita +cellulari +rubati +accoltellamenti +prima +stazione +centrale +milano +dedicato +poverini +possono +fare +blitz +violenti +marce +migranti +tolleranzazero +portafoglio +pieno +danno +imbecilli +chiede +semplicemente +po +regole +rispetto +voto +pd +forza +italia +astensione +stelle +europa +votato +reinserimento +sociale +combattenti +islamici +secondo +vanno +aiutati +poverini +parte +italia +ammazza +decapita +sgozza +siria +poi +torna +casa +posto +galera +altro +reinserimento +panino +milza +preparazione +diretta +quartiere +zen +palermo +mamme +coraggiose +arrendono +ismaele +vardera +sindaco +insieme +compagnia +cigni +qualche +minuto +insieme +sempre +preferiate +boldrini +fornero +protestano +bloccano +paese +tranquilli +pagheranno +pensione +soprattutto +incappucciato +stopinvasione +votosubito +prime +ore +mattina +centinaia +preso +ostaggio +paese +bagnoli +padova +vicino +ex +base +militare +ospita +marzo +donna +stata +aggredita +picchiata +altromigrante +tentato +violentarla +finti +profughi +vero +business +bomba +sociale +basta +assistere +ospitare +scappa +veramente +guerra +altri +espulsione +senza +senza +date +mano +rimediare +disastri +pd +votosubito +miliardario +spuculatore +george +soros +inizio +mese +incontrato +gentiloni +palazzo +chigi +dona +milioni +milioni +riempire +italia +immigrati +farla +diventare +meticcia +blocchiamoli +prima +tardi +gente +arrabbiando +votosubito +fornero +invidio +solo +serenità +tosta +parla +riforma +gettato +disperazione +milioni +italiani +cazzola +stessa +bronzo +ricoveratelo +terrorismo +no +terrorismo +islamico +guerra +risponde +guerra +possono +esistere +sacche +fanatismo +illegalità +casa +tolleranzazero +amici +sentite +osceni +signore +sturi +orecchie +immigrati +regolari +fratelli +clandestini +vuole +accolga +visto +tanto +buono +soccorri +salvi +poi +scelte +porti +italia +tranne +sicilia +disturbare +g7 +potenti +riporti +venuti +vengano +dirci +altro +può +fare +visto +navi +ong +già +vanno +prendere +acque +libiche +fugge +guerra +fratello +venire +aereo +diritto +fuori +italia +casa +lavoro +nemmeno +italiani +sbaglio +ecco +video +mostrato +ieri +parma +storia +futuro +lega +tanti +chiesto +uniti +forti +liberi +emozionati +cuore +fa +parte +così +grande +splendida +comunità +congressolega +vaccini +vaccinato +figli +togliere +bimbi +genitori +permettere +libertà +scelta +solo +ricchi +follia +sinistra +italiana +grazie +w +lega +diretta +parma +aspettando +congresso +domani +aspetto +ingresso +libero +tessera +lega +tranne +scafisti +buonisti +clandestini +scusate +linea +migrante +caduta +ora +marcia +migranti +roba +matti +bella +marcia +diritti +italiani +ecco +video +ismail +tommaso +ben +yousef +hosni +già +arrestato +droga +accoltella +poliziotti +militari +purtroppo +pd +bella +persona +domani +piazza +milano +marcia +migranti +detto +riduco +tasse +tasse +aumentate +detto +rilancio +lavoro +disoccupazione +aumentata +detto +blocco +immigrazione +sbarchi +moltiplicano +renzi +dovrebbe +farsi +altro +parte +insieme +boschi +tutta +compagnia +governo +tanto +intercettazioni +vicende +famigliari +penseranno +giudici +mentito +fallito +votosubito +qualche +minuto +insieme +possiamo +vincere +stazione +centrale +milano +calcetto +calcinculo +risposta +fregano +milioni +disoccupati +pensano +solo +banchieri +immigrati +europa +glielo +detto +minuti +verità +tivù +giornali +nasconderanno +aiutaci +farli +girare +bacheche +amici +minuti +asfaltato +amico +fornero +vitalizi +accusa +imbrogliare +italiani +bastaaaaa +modena +profughi +cappellino +telefonino +corteo +bloccano +viali +trattati +male +senza +documenti +possono +sempre +tornare +casa +credo +italiani +sí +trattati +altro +malissimo +anni +governi +sostenuti +pd +possano +veramente +dite +esagero +stopinvasione +primagliitaliani +diretta +milano +qualche +minuto +grazie +ora +avanti +liberiamo +paese +tradisce +torni +essere +paese +fondato +lavoro +business +immigrazione +clandestina +sempre +liberarci +vincere +solidarietà +pista +cammina +acquistare +nuovo +acceleratore +lineare +curare +malati +tumore +ospedale +san +gerardo +monza +sabato +maggio +autodromo +monza +potete +siateci +altro +aiutiamo +associazione +cancro +primo +aiuto +onlus +onoro +essere +vicepresidente +beneficenza +arriva +direttamente +malati +bisogno +viva +mamme +viva +alpini +viva +lega +militante +lega +vuoi +continui +fare +segretario +prossimi +anni +domenica +aspetto +voto +lega +unita +forte +libera +vincente +domenicavotasalvini +info +sedi +voto +http +www +leganord +org +regolamentocongresso +intanto +sbarcano +sbarcano +sbarcano +grazie +grande +vittorio +feltri +ancheluivotasalvini +accoglierne +ancora +italia +milioni +italiani +momento +vivono +sotto +soglia +povertà +mettiamoci +accordo +volta +tutte +scappa +guerra +sì +altri +no +qualche +minuto +insieme +stop +invasione +mirco +basconi +carabiniere +condannato +anno +galera +intercettando +auto +rubata +banditi +albanesi +bordo +sparato +gomme +fermali +proiettile +rimbalzo +ucciso +ladri +nemmeno +carabiniere +può +usare +arma +difendere +sé +stesso +colleghi +paese +viviamo +mezz +oretta +compagnia +scrivete +pure +parli +mai +crimini +italiani +scusate +fatto +già +delinquenti +parecchi +sembra +buon +motivo +farne +arrivare +resto +mondo +sbaglio +poco +diretta +rai +giletti +crozza +fa +ancora +ridere +qualche +minuto +insieme +quasi +buio +aggrediscono +potete +difendervi +blitz +anti +spaccio +stazione +milano +prendete +nota +parole +educatore +accoglienza +dice +vero +niente +dobbiamo +vergognarci +pena +minuto +video +numeri +ufficiali +sbarcati +veri +profughi +solo +solo +complice +può +negare +invasione +sostituzione +popolo +corso +solidarietà +inviata +matrix +francesca +parisella +aggredita +ieri +sera +insieme +troupe +davanti +stazione +termini +roma +mentre +proprio +lavoro +aiutata +tassista +bene +altro +abbraccio +compatimento +invece +buonisti +complici +parlando +blitz +altro +giorno +stazione +milano +preoccupano +degrado +criminalità +attenti +bene +fatto +interventi +ordine +pubblico +totalmente +fuori +luogo +tirano +volata +salvini +dichiara +tale +corrado +mandreoli +oggi +repubblica +ricovero +pd +cittadino +può +difendersi +solo +aggredito +notte +giorno +pomeriggio +lecito +orgoglioso +aver +gridato +vergogna +governo +arma +delinquenti +difende +cittadini +legittimadifesasempre +zuccaro +impossibile +ospitare +italia +migrazione +carattere +economico +giudice +coraggioso +lasciatelo +lavorare +iostoconzuccaro +diretta +terni +cittadini +arrabbiati +sindaco +pd +arrestato +elezioni +subito +tema +immigrazione +stelle +peggio +pd +renzi +parlano +bene +razzolano +malissimo +spiego +consiglio +minuti +memorabili +salvini +vergogna +italia +neonazista +fascista +unica +soluzione +te +solo +piazzale +loreto +anti +clandestini +anti +spacciatori +continuerò +esserlo +coppia +omosessuale +può +crescere +ragazzo +handicap +frase +attribuisce +prezioso +artista +ancora +piacere +conoscere +gruppo +stato +sociale +altro +concertone +1° +maggio +capisco +ogni +occasione +buona +insultare +salvini +almeno +attacchi +cose +dico +realmente +comunque +meglio +andré +blitz +polizia +stazione +centrale +milano +controlli +immigrati +presenti +metropolitana +treni +compresi +dopo +tante +denunce +lega +speriamo +volta +buona +stop +invasione +pulizia +ancora +centro +immigrati +mineo +diretta +porto +augusta +siracusa +solo +sbarcati +clandestini +stopinvasione +diretta +spezia +insieme +cittadini +pescatori +diretta +piombino +dese +padova +marea +gente +lega +ong +scafisti +ascoltate +attentamente +dice +carmelo +zuccaro +procuratore +capo +catania +lega +denuncia +anni +quando +governo +business +schifoso +fermiamo +stopinvasione +votosubito +italia +penultima +crescita +pil +europa +persino +grecia +andata +meglio +soluzione +abbassare +abbassare +abbassare +drasticamente +tasse +cancellare +legge +fornero +altro +lasciato +fuori +giovani +mondo +lavoro +tenendo +inchiodate +persone +fino +anni +fare +infermiere +muratore +camionista +poliziotto +solo +così +torneremo +crescere +certo +affamando +gente +mini +lavori +tedesca +euro +mese +marine +pen +preso +milioni +mezzo +voti +operai +artigiani +agricoltori +gran +parte +mondo +produttivo +programma +chiaro +lavoro +pensioni +anni +età +anni +altro +contributi +made +france +made +italy +difendere +pesca +agricoltura +produzioni +locali +concorrenza +sleale +controllo +solo +uomini +merci +propone +lega +impedire +aziende +soldi +pubblici +chiudere +delocalizzare +assumere +estero +minuti +dire +vergognatevi +europa +occupano +diritti +rom +migranti +fregano +milioni +giovani +disoccupati +girare +rete +tanto +tutte +tivù +censureranno +grazie +legittimadifesasempre +state +diretta +verona +legittimadifesasempre +voglia +parlare +ecco +video +risorse +boldriniane +oggi +milano +aggressori +nordafricani +chiesto +permesso +soggiorno +motivi +umanitari +espulsionidimassa +milioni +mezzo +italiani +poveri +credo +occorra +prima +pensare +tetto +casa +futuro +perso +speranza +sbaglio +cari +buonisti +ricordo +tanti +immigrati +altro +arrivati +qua +regolarmente +mandano +figli +scuola +rispettano +usanze +meritano +essere +accomunati +marmaglia +infesta +città +pubblico +martedí +sembrava +accordo +buon +lavoro +forum +economico +internazionale +inizia +oggi +yalta +crimea +sanzioni +russia +misconocimento +legittima +richiesta +crimeana +danno +solo +mosca +tutta +impresa +italiana +lì +tanto +fare +mentre +boldrini +adotta +agnellini +piacerebbe +parlamento +approvasse +legge +macellazione +rituale +islamica +qualche +minuto +insieme +milanistan +diretta +milano +parole +sufficienti +abbraccio +hellen +lotto +portare +italia +giustizia +certezza +pena +delinquenti +massacrato +ragazza +solo +progetto +galera +lavori +forzati +via +chiave +cos +testa +pd +ritrovi +malvivente +casa +armato +stendi +prima +stenda +te +figlio +esiste +eccesso +legittima +difesa +interno +altro +proprietà +privata +verona +aprile +migliaia +persone +perbene +stufi +garantiti +aggressori +aggrediti +ucciso +cacciavite +immigrato +senza +permesso +soggiorno +pluripregiudicato +abbraccio +signora +giuliana +preghiera +carlo +colpevole +dovrebbe +marcire +galera +stato +altro +condannato +soli +anni +mamma +teme +cassazione +possa +essere +addirittura +assolto +espulsioni +tolleranza +zero +prevenire +tragedie +paese +consente +ingiustizie +paese +civile +pd +governa +anni +20mila +delinquenti +liberati +500mila +profughi +quasi +finti +spero +risponderanno +presto +fronte +italiani +votosubito +svezia +reagiscono +sangue +cadaveri +straziati +tir +guidato +finto +profugo +terrorista +festa +amore +spot +roba +matti +chiudiamo +occhi +arrendiamoci +girare +europa +diventi +eurabia +italia +delinquenti +devono +sapere +sbaglia +paga +oggi +invece +gran +parte +franca +viene +beccato +galera +poco +niente +vita +sacra +proprietà +altro +privata +concetto +così +difficile +capire +pd +intanto +slavo +ammazzato +barista +budrio +guardia +ecologica +ferrarese +gira +ancora +libero +risorsa +africana +minaccia +passanti +armato +coltelli +poliziotti +costretti +intervenire +sparano +gambe +arrestarlo +esagerato +no +fatto +bene +siria +stoccolma +semina +missili +raccoglie +morti +tranquilli +italiani +pagheranno +pensioni +botte +assalto +furgone +cibo +caserma +serena +treviso +stazionano +oltre +presunti +profughi +risse +atti +delinquenza +gratuita +altro +provocazioni +forze +ordine +fomentato +bravi +ragazzi +centri +sociali +zona +piace +modello +sviluppo +italia +stopinvasione +facciamopulizia +italiano +italiana +estero +vuoi +fare +rete +solo +online +persona +costruire +progettare +insieme +scrivi +leganelmondo +gmail +com +aspetto +bisogno +ripetiamo +insieme +pd +tivù +dicono +cosa +parlamento +altra +esiste +reato +eccesso +legittima +difesa +esiste +reato +eccesso +legittima +difesa +altro +esiste +reato +eccesso +legittima +difesa +accordo +facebook +basta +vediamo +aprile +palaolimpia +verona +migliaia +uomini +donne +liberi +aspirano +vivere +paese +sicurezza +certezza +pena +optional +amici +solo +seguite +pagina +bacio +marine +pen +forza +marine +marineprésidente +solo +diretta +alsazia +comizio +marine +pen +minuti +massacrati +servi +europa +possono +minacciarmi +vogliono +taccio +viva +rete +libertà +ferma +nessuno +condividi +puoi +giornali +tivù +nasconderanno +luigi +anni +combatte +riavere +indietro +casa +occupata +abusivamente +rom +nemmeno +entrare +normale +roba +matti +qualche +minuto +insieme +strasburgo +sicurezza +quando +governo +rimediare +disastri +pd +basta +indulti +svuotacarceri +basta +sconti +serve +certezza +pena +lavoro +obbligatorio +carcere +altro +austria +legittima +difesa +sempre +comunque +mesi +servizio +civile +militare +obbligatorio +base +regionale +nozioni +protezione +civile +primo +soccorso +addestramento +uso +arma +espulsione +massa +centinaia +migliaia +persone +venute +italia +solo +delinquere +può +difende +propria +vita +colpevole +omicidio +dice +catechismo +me +verona25aprile +legittimadifesasempre +aspettando +canale +pazzesco +risorsa +opera +mattina +piazza +cavallotti +mantova +luogo +tempo +tranquillo +purtroppo +pesce +aprile +cittadini +scrivono +anni +zona +teatro +spettacoli +altro +insegna +alcolismo +senza +limiti +ora +dare +bella +ripulita +dite +bastadegrado +bastapd +facciamopulizia +intercettazioni +aspiranti +terroristi +islamici +volevano +saltare +ponte +rialto +venezia +domani +giuramento +danno +ordine +obbligato +ucciderli +venezia +guadagniamo +subito +paradiso +belle +persone +prendendo +casa +falso +made +italy +costa +miliardi +euro +anno +invece +prendersela +trump +putin +italia +europa +difendano +prodotti +ricordate +ladre +rom +giudice +messo +domiciliari +camper +milano +vivevano +figli +piccoli +continuavano +rubare +nulla +finalmente +state +arrestate +altro +polizia +portate +carcere +applausi +abitanti +quartiere +potevano +eppure +scommetto +qualche +buonista +dirà +poverine +bimbi +piccoli +piuttosto +poveri +bimbi +madri +genere +facciamopulizia +pazzesco +minuti +guardate +condividete +video +ragione +avere +qualche +preoccupazione +società +senza +figli +futuro +pur +rispetto +altroislamizzazione +italia +europa +arrendo +governo +prima +famiglie +prima +cultura +prima +lingue +prima +civiltà +primagliitaliani +liberiamo +palermo +ismaelesindaco +dimenticate +piace +www +facebook +com +ismaelesindaco +invece +perseguitare +commerciante +artigiano +imprenditore +partita +iva +fanon +andare +avanti +vorrei +stato +andasse +recuperare +oltre +milioni +euro +dovuti +società +spostato +residenza +estero +fregando +fisco +italiano +parlano +numeri +mila +sbarcati +mila +domande +solo +riconosciuti +fuga +guerre +bombe +guardia +finanza +vada +verificare +bilanci +coop +associazioni +onlus +buone +scafisti +arricchendosi +immigrazione +clandestina +eppure +difficile +capire +numeri +dicono +euro +moneta +avvantaggiato +solo +tedeschi +fregato +resto +europa +oltreleuro +vita +www +bastaeuro +org +efe +jerry +ogboru +profugo +aspirante +rapper +mantenuto +spese +italiani +bagnoli +padova +facebook +scriveva +altre +cose +legge +arrestato +accusa +tentato +stupro +riguarda +rispedito +subito +galera +nigeria +sperando +buttino +chiave +poletti +dimettiti +girare +sostituzione +popolo +ecco +cosa +nasconde +dietro +retorica +boldrini +buonisti +casa +condividere +guardate +servizio +coop +usa +immigrati +gratis +ristrutturarsi +albergo +roba +matti +proprio +oggi +pomeriggio +biella +piazza +santa +marta +aspetto +qualche +minuto +insieme +stanco +contento +live +splendida +lampedusa +sbarchi +morti +anni +accoglienza +vergogna +pare +normale +europa +nulla +invasione +clandestini +mantenga +demenziali +sanzioni +russia +unica +potenza +isis +combatte +veramente +foraggi +miliardi +turchia +altro +promette +guerre +sante +casa +purtroppo +poi +dimostra +londra +atti +guerra +avvengono +veramente +populisti +affermare +europa +ribaltare +cima +fondo +buon +viaggio +mitico +mago +zurlì +cino +tortorella +amico +infanzia +protagonista +tivù +bella +intelligente +ripropongo +mitica +gatti +erdogan +turchi +europa +fate +figli +così +comanderemo +ministro +esteri +turco +inizieranno +guerre +sante +europa +unione +europea +cosa +fa +regala +turchia +miliardi +euro +altro +terrorismo +colonizzazione +progetto +eurabia +oriana +fallaci +già +lucidamente +previsto +vanno +combattuti +innanzitutto +complici +casa +roma +bruxelles +insieme +alleati +europei +sempre +prima +linea +primi +video +attacco +terroristico +oggi +londra +ucciso +infame +attentatore +preghiera +innocenti +ammazzato +finora +contano +purtroppo +poliziotti +guardia +parlamento +venti +persone +ferite +città +sconvolta +basta +chiunque +usi +violenza +messo +angolo +dicono +però +salvini +no +però +certi +cosiddetti +democratici +pacificità +civiltà +rispetto +città +arredo +urbano +manifestazioni +lega +solo +imparare +milano +ostaggio +comunità +sembrano +intenzionate +integrarsi +schifo +troppa +gente +delinque +salvini +no +dice +stilista +alviero +martini +aggredito +rapinato +immigrati +est +pieno +centro +pieno +giorno +dedicato +reati +diminuiti +no +marmellata +pensiero +unico +sì +confronto +idee +aperte +iscrizioni +terza +edizione +scuola +formazione +politica +domeniche +sottrarre +tempo +vale +pena +altro +penso +conosco +creo +andiamoagovernare +tutte +info +http +www +scuoladiformazionepolitica +it +scuola +formazione +politica +ospedale +fondato +giuseppe +verdi +villanova +arda +provincia +piacenza +eccellenza +sanità +purtroppo +rischio +dare +voce +cittadini +comitati +pazienti +roba +matti +garantisco +quando +governo +posto +librandi +amici +pd +made +italy +lavoro +sicurezza +legittima +difesa +tanto +altro +ancora +esattamente +contrario +pensano +rischi +mestiere +mette +pericolo +vita +altri +consiglio +particolare +ascoltare +parole +vescovo +chioggia +monsignor +adriano +tessarollo +legittimadifesasempre +verona25aprile +tanti +chiacchierano +necessità +cambiare +atteggiamento +verso +europa +poi +muovono +dito +insieme +nord +sud +andiamo +bruxelles +riprenderci +chiavi +casa +minuti +presente +inutile +gentiloni +sputtano +europa +banchieri +finanzia +regime +turco +rovina +imprese +lavoratori +tivù +censureranno +aiutaci +condividi +italia +serve +certezza +pena +sbagli +paghi +modello +west +pacifica +svizzera +cittadini +addestrati +stato +uso +armi +criminalità +quasi +altro +inesistente +ladro +prima +entrarti +casa +pensa +volte +entri +piedi +esci +steso +te +andata +cercare +devo +essere +processato +accordo +legittimadifesasempre +verona25aprile +ribadiamolo +volta +tutte +turchia +mai +europa +strasburgo +racconto +demenziali +nuove +norme +parlamento +europeo +scusa +isis +complicano +vita +vuole +acquistare +detenere +arma +voti +pd +stelle +forza +italia +legittimadifesasempre +evviva +integrazione +diretta +napoli +idee +cuore +coraggio +seguite +amici +primagliitaliani +ascoltare +condividere +volete +difendervi +dovete +fare +prima +indagine +notturna +capire +aggredendo +mettendo +rischio +vita +dice +salvini +avvocato +giulia +altro +bongiorno +spiega +perfettamente +assurdità +legislazione +italiana +sveglia +proposta +legge +lega +n +legittima +difesa +sempre +giace +parlamento +febbraio +napoli +rappresentata +pochi +facinorosi +domani +forze +ordine +ringrazio +grado +fare +benissimo +lavoro +nessuno +riuscirà +rovinare +giornata +festa +proposta +altro +liberazione +ancora +pochi +posti +disponibili +aspetto +domani +tante +mamme +papà +bambini +occasione +gioia +odio +partecipa +scrivi +evento +napoli +noiconsalvini +org +salvini +inneggia +morte +migliaia +uomini +donne +bambini +mediterraneo +querelina +arrivo +signore +proposta +lega +parlamento +qualunque +azienda +preso +denaro +pubblico +può +permettersi +licenziare +italia +assumere +estero +vale +fiat +preso +miliardi +stato +tutte +altre +accordo +primagliitaliani +basta +buonismo +coccole +delinquenti +entri +casa +fare +male +difendo +ogni +mezzo +esci +piedi +problema +cittadini +rivolta +zerman +mogliano +veneto +profughi +ospitati +zona +preso +abitudine +usare +bagni +cimitero +senza +troppi +riguardi +ascoltate +testimonianza +w +integrazione +kompagni +sinistri +vari +organizzano +manifestazione +maiconsalvini +originaloni +sabato +napoli +dare +voce +orgoglio +sud +vuole +riprendere +mano +proprio +futuro +storia +vigile +fuoco +prima +linea +aiuto +terremotati +renzi +pd +danno +bonus +riprendono +colpo +solo +bastapd +votosubito +fa +bestia +facciamopulizia +votosubito +renziani +renziani +pd +pd +gole +profonde +tessere +finte +fughe +notizie +intanto +parlamento +governo +fermi +pare +normale +condividi +pensi +ora +dire +bastapd +votosubito +ascoltate +fenomeno +circondato +migranti +telefonino +cappellino +evidentemente +molto +patiti +marzo +cacceremo +salvini +razzisti +merda +differenza +scappa +altro +guerra +viene +cercare +lavoro +accogliamo +sfigati +altro +sabato +marzo +palacongressi +napoli +migliaia +dire +primagliitaliani +vuoi +partecipare +scrivi +evento +napoli +noiconsalvini +org +iene +portano +bene +sfiderà +renzi +grillo +programma +italiani +deciderlo +sicuramente +alfano +verdini +cicchitto +casini +né +né +lega +amici +parenti +alleati +indagati +condannati +governo +bloccato +parlamentari +incatenati +poltrona +problemi +italiani +possono +aspettare +basta +cosa +deve +succedere +ancora +vada +votare +votosubito +qualche +minuto +insieme +maroni +zaia +rixi +modello +buon +governo +regioni +modello +buon +governo +paese +vivere +carovana +rom +sotto +casa +manderei +fare +giro +certi +sinistri +buonisti +immigrati +lavori +italiani +vogliono +fare +bum +offro +buonisti +prezzo +secondo +urlano +sempre +dannati +benvenuti +magico +mondo +professor +cecchi +paone +soluzione +italia +mila +immigrati +anno +altrimenti +futuro +vada +raccontare +milioni +disoccupati +italiani +risposto +rime +fatto +male +primagliitaliani +vive +altri +pianeti +certe +cose +succedono +altri +buonisti +quando +succede +te +ditelo +papà +vietato +usare +termine +clandestino +abbraccio +felice +tavernelli +pensiero +preghiera +altro +federica +uccisa +delinquente +besik +jikidze +già +espulso +dunque +doveva +essere +italia +politica +deve +intervenire +prima +accadano +tragedie +simili +certezza +pena +certezza +espulsioni +priorità +governo +votosubito +tizio +dice +odio +salvini +pensa +aver +capito +invece +odio +proprio +nessuno +apprezzo +tanti +stranieri +perbene +lavorano +rispettano +leggi +cultura +altro +migliaia +immigrati +vengono +pretendere +magari +delinquere +chiamo +clan +sti +ni +condannatemi +pure +condannato +anni +mesi +mila +euro +risarcimento +famiglia +delinquente +moldavo +tentato +derubarlo +nottetempo +aggredendolo +condanna +verrà +confermata +appello +altro +tabaccaio +dovrebbe +chiudere +attività +follia +cosa +aspetta +parlamento +discutere +proposta +legge +lega +n +febbraio +difesa +sempre +legittima +iostocoltabaccaio +minuti +dedicati +rosiconi +nazifascisti +razzisti +pericolosi +estremisti +pubblico +applaudivano +girare +buonisti +kompagni +mamma +david +assassino +già +espulso +ancora +italia +amine +aassoul +detto +‘aziz +marocchino +ubriaco +drogato +uccise +david +raggi +strada +conficcandogli +altro +coltello +gola +dovuto +trovarsi +umbria +né +tantomeno +italia +richiedente +asilo +parolina +magica +senza +averne +diritto +fedina +penale +lunga +pagine +eppure +circolava +libero +famiglia +david +denunciato +motivo +ministero +interno +giustizia +delinquente +condannato +anno +scorso +anni +carcere +salvato +ergastolo +già +vergogna +ora +aggiunge +altra +stato +vuole +riconoscere +famiglia +alcun +risarcimento +stato +devoluto +beneficenza +motivo +povero +david +guadagnava +11mila +euro +anno +dico +solo +fate +schifo +certezza +pena +espulsione +senza +senza +clandestini +delinquenti +stato +fatto +stato +david +ancora +vivo +abbraccio +signora +bruna +magistris +insiste +me +nazifascista +razzista +comportamenti +criminali +vero +democratico +marzo +napoli +porte +teatro +mediterraneo +aperte +sindaco +certo +paura +minacce +insulti +chiacchierone +sinistra +pazzesco +buonisti +sinistra +morale +anti +razzista +sindaci +leghisti +poi +qualche +minuto +oretta +mattina +rtl +diretta +ascoltatori +so +manfrine +pd +tengono +ostaggio +cominciano +darmi +voltastomaco +idee +chiare +coraggio +italiani +fretta +votosubito +bando +chiacchiere +riprendiamo +controllo +moneta +torniamo +correre +punto +sciogliamoilpd +votosubito +fate +girare +video +ecco +tolleranza +kompagni +amano +clandestini +odiano +italiani +aggredire +spaccare +insultare +vergognatevi +vigliacchi +abbraccio +ragazze +lega +altro +monza +gazebo +video +militanti +salvini +stamattina +roma +subito +analoga +aggressione +molliamo +zecche +votosubito +domanda +semplice +semplice +meglio +lavoravate +risparmiavate +figli +lira +euro +ascoltate +risposta +pubblico +studio +dedicata +professoroni +politici +venduti +dopo +aver +rovinato +italiani +vogliono +ancora +schiavi +euro +secondi +smonto +bugie +europa +nessuna +tivù +parlerà +aiutaci +girare +vergogna +voto +favorevole +pd +forza +italia +passa +ceta +accordo +truffa +avvantaggerà +poche +altro +multinazionali +danni +imprenditori +agricoltori +consumatori +italiani +mila +posti +lavoro +rischio +carne +ormoni +falsi +prosciutti +formaggi +italiani +mangino +viaggio +megaville +rom +abusivo +parla +proprietari +arresti +domiciliari +vuole +fatevela +materiali +truffati +schifo +dice +boldrini +votosubito +profughi +spacciatori +colpa +immigrati +figli +chiusi +lager +ascoltare +condividere +qualche +bacheca +buonista +votosubito +intervista +oggi +skytg24 +dopo +brexit +trump +niente +impossibile +idee +chiare +votosubito +diretta +foiba +basovizza +giorno +ricordo +euro +irreversibile +sostiene +draghi +italiano +purtroppo +complice +unione +germanica +europea +economia +italiana +massacrando +state +meglio +peggio +quindici +anni +fa +www +bastaeuro +org +circolo +arci +ex +rossa +toscana +danno +ragione +lega +resto +oggi +pd +conoscono +banchieri +operai +pazzesco +crozza +tanti +giornalisti +problemi +italia +disoccupazione +tasse +immigrazione +salvini +lega +avanti +tutta +votosubito +testa +bel +corteo +diritto +casa +figlia +ministro +padoan +tale +padre +tale +figlia +massacra +italiani +difende +immigrati +prefetto +dà +pure +ragione +primagliitaliani +francesco +dovuto +affrontare +quel +bandito +mani +nude +manca +minimo +equipaggiamento +operativo +costretti +usare +corpo +quando +potremmo +fermarli +spray +peperoncino +quel +ragazzo +altro +morto +afferma +franco +maccari +coisp +tanta +rabbia +viene +italia +portare +delinquenza +morte +tanto +rispetto +uomini +donne +divisa +stato +serio +molto +numeri +mano +risposte +controllo +moneta +costa +uscire +stare +dentro +scarica +diffondi +manuale +oltreleuro +www +bastaeuro +org +libro +minacce +botte +bimbi +saltare +cervello +rompo +gambe +così +camminate +sedia +rotelle +altra +meriterebbe +lavori +forzati +altro +sospensione +rinnovo +proposta +lega +telecamere +asili +scuole +grazie +migliaia +persone +sala +streaming +dedicato +serata +informarsi +approfondire +capire +progettare +futuro +grazie +la7 +televisione +seria +scarica +subito +gratuitamente +aiuta +diffondere +manuale +oltre +euro +sito +www +bastaeuro +org +diretta +milano +alberto +bagnai +claudio +borghi +marco +zanni +modera +mario +giordano +riprendere +controllo +moneta +stasera +proviamo +spiegarvelo +fateci +compagnia +oltreleuro +scaricate +gratuitamente +nuovo +manuale +oltre +euro +sito +www +bastaeuro +org +qualche +minuto +diretta +milano +sera +aspetto +alberto +bagnai +claudio +borghi +marco +zanni +mario +giordano +oltre +euro +tornare +grandi +live +pagina +ore +scarica +gratuitamente +nuovo +libro +www +bastaeuro +org +incredibile +ascoltate +sentite +prodi +illustrava +splendido +futuro +euro +amici +pd +rovinato +moneta +criminale +altro +ridere +riascoltare +geniali +previsioni +bastaeuro +prima +tardi +fate +girare +bacheche +euristi +buonisti +cantante +americano +moby +colloca +malvagi +mondo +parte +alcuni +accostamenti +deliranti +meglio +cattivoni +oni +edicolante +difende +ragazza +clandestino +nigeriano +preda +furia +evidente +stato +alterazione +spacca +bastonate +problemi +psicologici +dobbiamo +aspettare +nuovi +casi +kabobo +andiamo +governare +po +pulizia +generale +italia +votosubito +intervento +ieri +davanti +bellissima +piazza +voglia +cambiare +votare +paese +ricostruire +invasione +bloccare +basta +inciuci +sinistra +italia +europa +idee +chiare +coraggio +andiamo +vincere +votosubito +dimentichiamoci +perso +terremoto +esenzione +fiscale +totale +almeno +anni +sospensione +poi +stato +viene +chiederti +tasse +dopo +mesi +chiesto +monti +letta +renzi +ora +gentiloni +batti +colpo +votosubito +puoi +sognarlo +puoi +farlo +ribaltiamo +paese +votosubito +www +votosubito +org +montagne +rifiuti +degrado +criminalità +inferno +tendopoli +abusive +calabria +migliaia +nuovi +schiavi +cerca +lavoro +regione +persona +disoccupata +giovani +pare +situazione +paese +normale +votosubito +primagliitaliani +dicevano +trump +mai +vinto +stati +uniti +idee +troppo +forti +auguro +italiani +stesso +coraggio +stessa +lucida +follia +votosubito +oggi +governo +pd +unione +europea +propongono +blocco +navale +libia +fermare +barconi +sentite +cosa +rispondeva +quel +fenomeno +alfano +anni +fa +quando +proponevo +ipocriti +incapaci +ridicoli +complici +stopinvasione +votosubito +qualche +minuto +insieme +poco +diretta +rai +schifo +italiani +merde +così +signora +rom +chiede +pizzo +senzatetto +dormire +aeroporto +linate +già +soffre +casa +né +lavoro +viene +taglieggiato +banda +delinquenti +spero +gentaglia +venga +cacciata +italia +calci +milione +bimbi +italiani +sotto +soglia +povertà +pd +pensa +solo +africa +sento +puzza +inciucio +voglia +vitalizio +dite +basta +tirare +campare +votosubto +vigili +fuoco +eroi +considerati +tali +punto +vista +trattamento +aumentando +dotazioni +stipendi +assumendo +pompieri +precari +andando +colmare +attuale +grave +carenza +personale +molliamo +primagliitaliani +intervento +coblenza +alleati +parlato +nuova +europa +insieme +costruiremo +lavoro +controllo +confini +moneta +sicurezza +sovranità +moriremo +euro +altro +banche +finanza +merkel +trump +insegna +coraggio +idee +chiare +vince +lasciatemi +commenti +piace +condividete +fate +qualsiasi +legge +elettorale +fate +fretta +date +scheda +elettorale +mano +italiani +bisogno +risposte +concrete +parlamento +legittimo +governo +legittimo +votosubito +grazie +migliaia +italiani +freddo +gelo +immigrati +solo +minima +parte +diritto +asilo +albergo +caldo +dice +relazione +cose +ricordo +invasione +senza +altro +controllo +costa +miliardi +anno +sembra +situazione +normale +populista +dico +me +pare +solo +realtà +vedo +ora +cambiare +votosubito +governo +trovato +miliardi +banche +può +trovare +subito +milioni +cittadini +colpiti +terremoto +sommersi +neve +alcuni +anziani +aquila +teramo +detto +altri +politici +usato +carica +chiamare +enel +sindaci +vigili +fuoco +dare +mano +parlato +altro +sindaco +tollo +pd +altro +ncd +altro +ancora +lista +civica +ringraziato +essere +italia +qualunque +cosa +attaccano +vado +criticano +vado +criticano +criticano +solo +doposci +piedi +allora +ciò +dà +senso +distanza +esistente +oggi +media +realtà +trump +insegna +grazie +volontari +arrivati +ogni +parte +italia +gente +tosta +diretta +arischia +frazione +aquila +attesa +anni +ricostruzione +sindaco +gente +atri +teramo +piena +emergenza +onorevole +pd +pensa +poter +ospitare +mezza +africa +cena +governo +anni +immigrazione +svegliano +adesso +modo +dire +fate +governo +chiusura +frontiere +accoglienza +limiti +possibile +solo +diritto +partenza +strasburgo +qualche +minuto +insieme +lasci +centinaia +milioni +buco +banca +rovinando +risparmiatori +poi +capodanno +caraibi +festeggiare +blocco +beni +ville +macchine +finché +risarcisci +italiani +soldi +fregato +paese +normale +certe +persone +galera +votosubito +coop +gestisce +presunti +profughi +venezia +fatturato +100mila +euro +passata +oltre +milioni +euro +vergogna +vedo +ora +essere +governo +mettera +parola +fine +schifoso +business +nuovi +schiavi +stopinvasione +votosubito +centro +immigrati +cona +veneziano +ospitiamo +ex +guerriglieri +costa +avorio +pare +dovrebbe +essere +normale +tutta +politica +pensare +prima +nato +cresciuto +magari +oggi +perso +casa +lavoro +dignità +sembra +difficile +capire +primagliitaliani +pazzesco +ascoltate +denuncia +gestore +agriturismo +toscana +corsi +italiano +altre +attività +integrazione +disertate +migranti +preferivano +passare +tempo +alcol +bottiglie +altro +birra +armadi +prostitute +caccia +caprioli +abbattuti +abusivamente +poi +macellavano +cucinavano +centro +modello +accoglienza +diffusa +venduto +pd +soluzione +unica +soluzione +stopinvasione +diciotto +anni +morte +poesia +voce +fabrizio +andré +rimangono +magiche +grazie +faber +secondo +soliti +buonisti +riescono +negare +invasione +corso +immigrati +fuggono +nessuna +guerra +adesso +problema +distribuirli +territorio +no +problema +rispedirli +casa +ricostruire +paesi +africa +italia +punto +qualche +minuto +insieme +insultato +razzista +osato +offrire +pranzo +natale +soli +bisognosi +italiani +onore +ristoratore +passerò +punta +marina +ravenna +fermerò +osteria +marco +discorso +diretta +festa +lega +albino +bergamo +fatemi +compagnia +amici +cosa +state +roba +matti +mancava +pure +presepe +musulmano +parroco +buonista +potenza +don +franco +corbo +sostanza +isis +colpa +israeliani +brutti +cattivi +altro +piace +madonna +burqa +colpa +chiusi +mentalmente +integralisti +accendiamo +candela +auguri +natale +ramadan +tel +parrocchia +festeggiamo +natale +ragazzi +combattuto +combattono +cancro +istituo +tumori +milano +realizzato +video +stupendo +pensiero +auguri +altro +migliori +fortune +nuovo +anno +doveroso +piace +pagina +https +www +facebook +com +ilprogettogiovani +diretta +sesto +san +giovanni +milano +stop +terrorismo +islamico +controlli +confini +coraggio +orgoglio +alfano +poletti +fedeli +amici +vari +governo +ridicolo +votosubito +pazzesco +adesso +isis +pubblica +video +italiano +spiega +uccidere +coltello +crociati +fabbricare +casa +bomba +eppure +certi +euroidioti +vorrebbero +mantenere +sanzioni +russia +unica +putin +terroristi +islamici +combatte +veramente +parigi +madrid +nizza +bruxelles +berlino +qualcuno +capirà +occorre +intensificare +controlli +possiamo +entrare +senza +morti +capodanno +scorso +colonia +reati +altro +sfondo +sessuale +indagati +stranieri +quali +richiedienti +asilo +speriamo +ripeta +quest +anno +stopinvasione +prima +tardi +voto +voto +parole +tanti +accordo +poi +però +bocciano +proposta +lavorare +subito +giorni +vicini +natale +approvare +subito +legge +elettorale +troppa +gente +incollata +poltrona +girare +votosubito +ora +diretta +roma +qualche +minuto +amici +riusciti +fare +quest +anno +soprattutto +ripromettiamo +fare +blocco +partenze +espulsione +immigrati +irregolari +punti +fondamentali +programma +legge +elettorale +votare +presto +votare +subito +votosubito +immigrati +oggi +piazza +vogliamo +soldi +vogliamo +confini +aveterottolepalle +qualche +minuto +insieme +quest +anno +alcune +scuole +festeggiano +natale +espellono +gesù +bambino +pazzesco +euro +moneta +fallita +sbagliata +rottamare +senza +moneta +giusta +andiamo +nessuna +parte +votosubito +unione +europea +meglio +unione +germanica +tace +clandestini +terroristi +attacca +putin +populisti +gabbia +liberarsi +no +referendum +stato +importante +eccome +anzi +fondamentale +stati +costretti +fare +governo +insieme +scotch +tirare +campare +qualche +mese +scusa +legge +altro +elettorale +convinto +primavera +voterà +già +renzi +detto +agosto +davano +matto +panettone +quest +anno +mangia +amichetti +ultimo +avanti +fiducia +molliamo +weekend +firmare +gazebo +centinaia +piazze +nord +sud +votosubito +strasburgo +sperando +santa +lucia +governo +porti +via +premio +poltronara +anno +ridicola +votosubito +quindici +giorni +fa +voleva +dimettersi +invece +sindacalista +cgil +tessile +diventa +ministro +istruzione +santa +lucia +infame +governo +portaci +via +girare +te +girano +palle +votosubito +sapete +cosa +fare +intervista +completa +altro +giorno +agorà +rai +possibilità +argomentare +credo +modo +abbastanza +chiaro +progetto +dopo +renzi +avanti +tutta +votosubito +auguro +italiani +costretti +ora +mesi +parlare +mattarellum +consultellum +proporzionale +vada +votare +subito +subito +subito +votosubito +euro +moneta +tedesca +esperimento +fallito +dobbiamo +uscire +sistema +infernale +massacrato +italia +primo +passo +tornare +grandi +chiama +sovranità +monetaria +votosubito +alfano +poltronaro +votosubito +qualche +minuto +insieme +noooooooo +giornalista +tedesco +amico +merkel +viene +ancora +fare +lezioncina +belli +unione +europea +euro +può +ascoltare +portato +saluto +asfaltato +sempre +collaborato +molto +bene +renzi +dispiaciuta +vinto +no +quando +merkel +triste +vuol +sempre +dire +buon +giorno +italia +girare +torniamo +padroni +casa +milioni +italiani +domenica +detto +re +nudo +ora +voto +qualsiasi +legge +elettorale +elezionisubito +fate +fretta +popolo +vuole +decidere +accordo +condividi +aspettando +alfano +diretta +rai +amici +seguitemi +diretta +milano +giorno +liberazione +nazionale +renzi +parla +futuro +renzi +dimette +casaaaaa +siiiiiiiii +anzi +nooooooo +renzi +incapace +anni +mezzo +milione +immigrati +sbarcati +costano +euro +giorno +testa +arricchire +cooperative +amici +amici +domenica +iovotono +anni +renzi +dice +aver +ridotto +tasse +chiedo +quest +anno +pagate +meno +tasse +domenica +iovotono +intervento +conclusivo +mentana +referendum +condividiamo +convinciamo +po +indecisi +amici +dicono +girano +video +sembra +chieda +votare +sì +ridicoli +rispondere +altro +inganni +rosiconi +vogliono +perdere +poltrona +importante +domenica +tanti +votare +iovotono +renzi +alfano +boschi +verdini +napolitano +prodi +mandiamo +casa +referendum +dettato +renzi +merkel +banche +quei +poteri +forti +prendono +italia +centro +commerciale +andare +fare +shopping +domenica +iovotono +italia +renzi +pd +tale +barzelletta +gioco +facile +prenderci +impegnate +domani +sera +ridiamo +fino +ultimo +voto +fino +ultimo +indeciso +convincere +ogni +voto +serve +iovotono +pd +regole +valgono +giochini +arroganza +amici +renzi +ognuno +convince +amici +andare +votare +votare +no +fatta +vittoria +italiani +altro +intimidire +letterine +spot +milionari +appelli +banche +industriali +presunti +vip +morti +fama +iovotono +quando +argomenti +amici +renzi +sanno +solo +ricorrere +bugie +sbugiardato +diretta +tv +votiamo +no +iovotono +minuto +intervista +tg5 +aiutami +condividere +basta +guardare +invita +votare +sì +merkel +governo +tedesco +banchieri +finanzieri +multinazionali +lobbisti +massacrato +italia +italiani +vincoli +follie +unione +europea +tenga +renzi +iovotono +renzi +dice +risparmia +tutte +balle +intanto +viene +abolito +senato +legge +elettorale +spendiamo +milioni +aereo +comprato +altri +milioni +altro +tagli +paghiamo +senati +domenica +iovotono +minuto +convincere +ultimi +indecisi +aiutami +farlo +girare +domenica +tanti +vittoria +crede +popolo +debba +essere +sempre +sovrano +mai +schiavo +iovotono +diretta +caserma +smiraglia +bologna +attesa +venga +sistemata +migliorare +vita +tanti +poliziotti +intervento +credo +convincente +mattino +girare +ciascuno +convince +amici +andare +votare +domenica +votare +no +renzi +amici +banchieri +finanzieri +altro +presunti +grandi +industriali +cosiddetti +vip +daremo +colpo +riprenderanno +torniamo +parlare +vita +reale +domenica +iovotono +diretta +mercato +splendida +mantova +solo +sorrisi +strette +mano +niente +insulti +renzi +cosa +state +amici +dopo +vicenza +dopo +padova +verona +sala +strapiena +aria +buona +ricordati +cambiare +foto +profilo +bel +voto +no +potete +scaricare +foto +www +iovotono +org +sondaggi +risulta +maggioranza +giovani +voterà +no +no +speranza +tanti +ragazzi +possono +renzi +europa +vogliono +fuggire +italia +trovare +lavoro +domenica +iovotono +governo +tedesco +invita +votare +sì +fate +iovotono +già +libero +clandestino +ucciso +marito +ascolta +girare +storia +romina +stato +giustizia +sempre +schifo +domenica +iovotono +dura +vita +profugo +villa +lusso +lago +garda +limite +pazienza +finita +domenica +iovotono +pazzesco +serracchiani +vice +renzi +banche +deciso +salvare +persone +truffate +poveri +speculatori +approvato +decreto +salvato +banchieri +rovinato +150mila +altro +pensionati +artigiani +commercianti +perso +risparmi +vita +bugiardi +senza +vergogna +coraggio +definirli +speculatori +cacciamoli +domenica +iovotono +ennesima +renzata +danni +italiani +renzi +tutte +tivù +raccontare +barzelletta +referendum +semplifica +intanto +manovra +economica +governo +viene +prevista +introduzione +altro +spesometro +trimestrale +titolari +partita +iva +follia +assoluta +obbligherà +milioni +cittadini +riempire +ogni +mesi +tonnellate +scartoffie +inviare +stato +basta +bugiardo +domenica +iovotono +diretta +splendida +piacenza +dice +no +iovotono +tour +dopo +renzi +diluvio +banche +finanzieri +massoni +giornaloni +potentoni +volta +accordo +marco +travaglio +iovotono +minuti +spiegare +voto +domenica +inciderà +vite +libertà +scelta +lavoro +made +italy +potremo +dare +mangiare +bere +figli +aiutatemi +girare +video +renzi +conta +soldi +conto +iovotono +qualche +minuto +parlare +dietro +quinte +rai +guerriglia +urbana +qualche +notte +fa +torino +cura +alcuni +profughi +gentilmente +ospitati +ringraziamento +bombe +carta +cartelli +divelti +cassonetti +rovesciati +violenze +intimidazioni +altro +naturalmente +accusa +italiani +razzisti +giudicate +italia +pd +governo +renzi +porte +aperte +vedo +ora +domenica +prossima +votare +no +4dicembre +iovotono +dopo +mondovì +cuneo +narzole +alba +asti +ora +diretta +splendida +piazza +alessandria +fatemi +compagnia +4dicembre +iovotono +diretta +cuneo +iovotono +tour +triste +significativo +guardare +operaio +monfalcone +lacrime +dice +voterà +sinistra +stupirsi +renzi +conosce +banchieri +operai +destra +sinistra +etichette +ormai +senza +altro +senso +oggi +scontro +piccoli +grandi +lavoro +finanza +popolo +banche +sovranità +identità +pensiero +unico +globalizzato +vuole +schiavi +caso +monfalcone +dopo +anni +giunte +rosse +vinto +lega +4dicembre +riprenderci +futuro +iovotono +diretta +mondovì +cuneo +tantissima +gente +dice +no +diretta +genova +seconda +parte +iovotono +4dicembre +amici +dopo +splendida +giornata +giro +toscana +liguria +ora +diretta +genova +tanti +amici +4dicembre +voteranno +no +iovotono +quando +ascolto +fenomena +so +ridere +piangere +letame +fumogeni +scritte +merde +sindaco +quinto +treviso +colpevole +aver +bloccato +arrivo +presunti +profughi +autori +altro +soliti +sfigati +centri +sociali +simpatica +rappresentante +assalitori +sostiene +lega +fa +politica +necrofila +cos +cervello +solidarietà +sindaco +mauro +zilio +mollare +diretta +toscana +dice +no +spettacolo +taci +meglio +n +napolitano +populisti +pericolo +grave +apprezzo +merkel +pericolo +grave +protetto +renz +4dicembre +iovotono +svegliarmi +dicembre +vedere +salvini +esulta +produce +dolori +pancia +insopportabili +battutona +rosiconi +giornaloni +ancora +digerito +vittoria +trump +purtroppo +dovranno +rosicare +ancora +4dicembre +iovoto +sanno +metterli +arrivati +espropri +case +alberghi +anni +renzi +fatto +sbarcare +italia +mezzo +milione +clandestini +mascherati +profughi +enorme +business +altro +cooperative +amici +amici +referendum +voluto +renzi +intende +ulteriormente +centralizzare +gestione +immigrazione +mani +governo +vogliono +zittire +tanti +sindaci +cittadini +coraggiosi +protestano +combattono +invasione +difesa +comunità +4dicembre +iovotono +adesso +pure +emergenza +badanti +immigrate +stuprate +datori +lavoro +italiani +italia +milioni +immigrati +regolari +perbene +pagano +tasse +mandano +figli +scuola +altro +benvenuti +vengono +sparare +fesserie +signore +occupano +case +caserme +spese +no +tornino +casa +iovotono +taci +meglio +n +napolitano +ex +presidente +senatore +vita +serena +coscienza +interesse +generale +dico +voterò +sì +girare +vota +sì +votiamo +ancora +convintamente +no +4dicembre +iovotono +profughi +stuprano +ragazza +parco +chiari +vicino +brescia +tunisino +palpeggia +ragazzina +anni +pieno +centro +verona +richiedente +asilo +molesta +bimbo +anni +altro +fiano +romano +mentre +renzi +dice +accogliamoli +poverini +scappano +guerra +altre +violenze +dovremo +attendere +governo +fermi +invasione +fuori +clandestini +arrendo +intanto +4dicembre +iovotono +anno +fa +mila +truffati +banca +etruria +altri +istituti +apprendevano +governo +salvava +banche +ieri +manifestato +roma +voci +molti +votavano +pd +ora +altro +votano +no +facciamole +girare +almeno +facebook +renzi +ieri +giro +toscana +fare +propaganda +inutile +schiforma +elicottero +risparmiatori +iovotono +mamma +statista +attacca +invece +ridere +mette +tristezza +mandiamolo +casa +4dicembre +iovotono +ascolto +renzi +rileggo +testo +riforma +convinco +iovotono +poco +diretta +rai +serracchiani +martina +ascoltate +finalmente +verità +centri +accoglienza +finti +profughi +spaccio +prostituzione +testimonianza +esclusiva +complimenti +paolo +debbio +visto +tg +tacciono +fatela +girare +possibile +priorità +rafforzare +integrazione +profughi +dice +prima +clandestini +dico +orgogliosamente +prima +italiani +4dicembre +iovotono +minuti +ecco +votare +no +girare +4dicembre +iovotono +telegiornali +raccontano +europa +renzi +lotta +leone +difendere +interessi +italiani +realtà +votazioni +consiglio +europeo +sapete +volte +governo +italiano +votato +altro +indovinate +zero +bugiardo +sostenuto +bugiardi +mandiamo +casa +4dicembre +iovotono +venti +minuti +tempo +fa +rai +soddisfatto +aiutate +condividere +giro +dopo +renzi +diluvio +anzi +dopo +renzi +futuro +lavoro +sicurezza +identità +sovranità +libertà +credo +insieme +può +4dicembre +iovotono +mattina +milano +tanta +gente +incontrata +tanti +volantini +iovotono +distribuiti +molliamo +tutte +tappe +www +iovotono +org +tour +diretta +studi +canale +pazzesco +gentilmente +ospitati +spese +mandano +agenti +ospedale +litigavano +pocket +money +grazie +renzi +grazie +governo +invasione +4dicembre +iovotono +intervista +oggi +luca +telese +roma +insieme +tanti +amici +dicembre +voteranno +no +amici +parenti +conoscenti +già +convinto +iovotono +altro +renzi +finge +tagliare +sprechi +ruberie +taglia +proprio +nulla +partiamo +mandare +casa +tanti +burocrati +mangia +stipendi +cancellare +uffici +complicazioni +cose +semplici +via +subito +prefetture +sovrintendenze +4dicembre +iovotono +inserendo +dodici +volte +unione +europea +costituzione +renzi +vuole +svendere +definitivamente +sovranità +italiani +bruxelles +cittadino +uomo +libero +soprattutto +padre +iovotono +lasciare +figlio +tredici +figlia +anni +costituzione +futuro +vuole +schiavi +flat +tax +famiglie +imprese +programmi +donald +trump +crescita +zero +incapace +renzi +padroni +unione +sovietica +europea +solo +ricordo +consiglio +altro +sito +www +tassaunica +it +potete +comprare +nuovo +libro +armando +siri +numeri +mano +spiega +progetto +rivoluzione +fiscale +paese +normale +entri +casa +notte +esci +steso +problema +governo +renzi +legittima +difesa +frega +4dicembre +iovotono +vuol +dire +mettere +primo +posto +popolo +banche +italiani +clandestini +allora +fieri +essere +populisti +4dicembre +iovotono +renzi +boschi +padoan +svenduto +italiani +banche +anno +distanza +150mila +truffati +banca +etruria +simili +mosso +dito +parola +deve +ritornare +popolo +4dicembre +iovotono +ministro +economia +pazzesco +dicembre +andate +votare +mandiamo +casa +iovotono +fate +girare +giornali +tivù +nasconderanno +attesa +partire +parliamo +po +no +salvini +pessimo +politico +bronzo +str +fornero +dopo +aver +rovinato +milioni +italiani +dice +voterà +sí +referendum +motivo +votare +no +quando +altro +governo +legge +schifezza +cancelliamo +fornero +solo +brutto +ricordo +promesso +iovotono +4dicembre +venti +minuti +intervista +credo +efficaci +aiutate +diffondere +bacheche +amici +indecisi +votare +referendum +4dicembre +casa +aiuti +renzi +iovotono +ecco +dati +veri +censurati +tg +numeri +ministero +interno +mano +domande +asilo +politico +presentate +domande +accolte +siriani +appena +resto +finti +altro +profughi +accogliere +donne +bambini +fuga +guerra +dovere +sacrosanto +devono +essere +portati +aereo +gommone +altri +vanno +rimandati +casa +punto +abusivi +bologna +adesso +portano +solo +alcol +droga +libero +pd +fa +nulla +finto +acquisto +ovviamente +girato +associazione +bologna +centro +storico +documentato +situazione +verme +maledetto +austria +rispetto +milioni +immigrati +regolari +perbene +lavorano +pagano +tasse +mandano +figli +scuola +schifezza +umana +messa +lavori +forzati +ripagare +italiani +danni +subiti +poi +rispedito +calci +casa +aspettando +quinta +colonna +rete +intervento +sabato +firenze +renzi +piazza +così +sogna +manca +poco +girare +4dicembre +iovotono +referendum +valido +qualsiasi +affluenza +quorum +vota +aiuta +bugiardo +patentato +centrodestra +centrosinistra +roba +vecchia +progetto +mette +centro +sovranità +popolo +svenduto +italia +unione +europea +banche +multinazionali +renzi +sereno +4dicembre +iovotono +grazie +firenzeeeee +iovotono +amici +seguiteci +diretta +splendida +piazza +idee +cuore +coraggio +futuro +iovotono +tuttiafirenze +www +iovotono +org +firenze +sole +eccomi +amici +piazza +aperta +libera +oggi +sabato +firenze +aspetta +costruiamo +insieme +futuro +www +iovotono +org +macerie +silenzio +accumoli +rieti +cascia +terra +santa +rita +rialza +ascoltate +famiglia +fantastici +maialebradodinorcia +com +zona +rossa +norcia +dopo +terremoto +gente +stupenda +vuole +tornare +vivere +lavorare +diretta +norcia +vuole +rialzare +accordo +donald +trump +vinto +proponendo +meno +tasse +famiglie +imprese +aliquota +unica +lavoro +dazi +invasione +prodotti +cinesi +solo +uccidono +altromade +espulsione +immigrati +clandestini +renzi +unione +europea +esattamente +contrario +domani +firenze +preavviso +sfratto +gran +bugiardo +tuttiafirenze +iovotono +alfano +ministro +poltronaio +scafista +senza +vergogna +paragona +milioni +italiani +spaccati +schiena +estero +cerca +fortuna +clandestini +nullafacenti +coccolati +governo +sfigato +dovrebbe +proteggere +italiani +asfaltato +girare +video +iovotono +folli +governano +europa +continuano +fare +guerra +russia +uccidere +made +poi +stupiscono +vince +trump +viva +trump +viva +putin +viva +pen +viva +lega +italia +renzi +clandestini +hotel +italiani +auto +primagliitaliani +iovotono +riaspettando +alfano +aspettando +porta +porta +dietro +quinte +popolo +batte +poteri +forti +diretta +roma +amici +commentare +vittoria +donald +trump +sempre +creduto +vittoria +popolo +poteri +forti +oggi +america +domani +italia +sabato +tuttiafirenze +iovotono +www +iovotono +org +oggi +splendida +piazza +santa +croce +firenze +sabato +riempiremo +mare +persone +perbene +piazza +aperta +benvenuti +là +idea +politica +aspetto +tanti +fiorentini +possono +bugie +disastri +renzi +iovotono +pazzesco +spero +cittadino +rumeno +anni +capiti +mai +mani +figli +nipoti +anziane +prendeva +pugni +scopo +rapina +verme +schifoso +grazie +polizia +stato +milano +spero +marcisca +galera +altro +indulti +oggi +riuscito +inserirmi +urla +parlamentare +pd +pubblico +canale +renziani +ormai +fine +corsa +dicembre +vicino +iovotono +agosto +governo +prometteva +espulsioni +veloci +intenzione +vietare +ricorsi +immigrati +clandestini +visto +qualcosa +soliti +cazzari +iovotono +costituzione +cambiata +meglio +peggio +sabato +prossimo +tuttiafirenze +piazza +santa +croce +ore +info +pullman +www +iovotono +org +pazzesco +sbirro +confine +muori +ammazzato +stronzo +sbirri +assassini +così +festa +solidale +pro +clandestini +organizzata +milano +adesione +anpi +arci +emergency +tanti +bravi +ragazzi +sinistra +compagniclandestini +girare +ilcomizio +it +http +bit +2fflkfc +renzi +contesta +unione +europea +poi +schiforma +inserisce +costituzione +dodici +volte +sovranità +appartiene +popolo +principale +motivo +iovotono +amici +iovotono +visita +mega +campo +presunti +profughi +bagnoli +vicino +padova +riprendiamo +diretta +campo +profughi +bagnoli +pd +bello +gioca +playstation +diretta +mega +campo +presunti +profughi +bagnoli +pd +sorpresa +lega +dice +anni +oggi +ammette +giornalista +sinistra +diretta +tivù +afferma +aiutarli +africa +giusto +arrivano +troppi +fare +accordi +paesi +altro +provenienza +esempio +nigeria +parte +tratta +prostituzione +guerra +boko +haram +entrano +nulla +accelerare +riconoscimento +veri +rifugiati +possibile +impiegarci +anni +mezzo +resto +europa +impiega +pochi +mesi +sottolinea +capisco +governo +già +fa +nulla +renzi +incapace +anziché +pensare +emergenza +invasione +preoccupato +solo +conservare +poltrona +ancora +poco +dicembre +iovotono +papa +distinguere +migranti +rifugiati +sottoscrivo +parola +parola +conto +pochissimi +scappano +guerra +fratelli +altro +immigrati +economici +climatici +altro +vanno +trattati +secondo +regole +limiti +esattamente +contrario +fa +governo +renzi +dicembre +iovotono +governo +vuole +fare +qualcosa +famiglie +imprese +colpite +terremoto +sospensione +qualche +mese +pagamento +tasse +fatto +emlia +esenzione +vera +completa +aiutare +davvero +perso +altro +rimandare +referendum +dicembre +iovotono +ora +diretta +amici +aliquota +unica +italia +riparte +ecco +fare +rivoluzione +fiscale +italia +approfondire +libro +sito +www +tassaunica +it +protestano +prefettura +taranto +vogliono +soldi +piccole +spese +dicono +cibo +no +buono +piacciono +vestiti +fa +freddo +penso +decine +migliaia +italiani +terremotati +altro +tetto +testa +manifestazioni +sembrano +offensive +verso +paese +ospita +così +occhio +secondo +video +sembrano +disperati +fuggiaschi +guerre +basta +prese +giro +palazzo +chigi +abusivo +renzi +sfrattiamo +esci +facebook +sabato +novembre +firenze +aspetto +te +girare +tuttiafirenze +iovotono +www +iovotono +org +incredibile +provincia +rovigo +ospitare +nuova +ondata +presunti +profughi +sequestrano +albergo +diretta +tivù +tanto +ordine +prefetto +proprietario +presente +amica +alfano +altro +renzi +fa +sbraita +invasata +falso +coprendosi +ridicolo +espropri +stato +negazione +evidenza +governo +invasione +governo +sovietico +cacciamoli +dicembre +iovotono +mentre +cazzaro +parla +ponti +grandi +opere +stato +grado +garantire +sicurezza +viaggia +strade +preghiera +uomo +purtroppo +perso +vita +crollo +pensiero +feriti +famigliari +vittime +stato +impegno +lavorare +affinché +episodi +succedano +requisizioni +avvengono +quando +comuni +collaborano +capito +così +parla +ministro +interno +governoscafista +frattempo +sempre +cittadini +nord +sud +renzi +altro +alfano +prefetti +difendono +coraggio +proprie +comunità +invasione +molliamo +resistiamo +dicembre +cacciamo +via +iovotono +milano +by +night +buona +serata +amici +riforma +fa +schifo +peggiora +costituzione +bugiardo +matricolato +basta +minuto +video +decidere +girare +iovotono +italianicheresistono +piccole +borseggiatrici +azione +chiamatele +zingare +ruspa +senza +vergogna +parlamentare +pd +consiglia +signora +anni +pensione +euro +arriva +fine +mese +andare +banca +ipotecare +casa +gente +governa +italia +dicembre +cacciamoli +iovotono +vogliamo +fare +qualcosa +bello +altri +dobbiamo +farlo +oggi +sammy +basso +inno +vita +guardate +video +ve +pentirete +centri +accoglienza +sbucano +ormai +ovunque +sera +mattina +cittadini +consigli +quartiere +nemmeno +vengono +informati +governo +volontà +popolare +frega +schiforma +renziana +peggio +dicembre +bella +croce +no +iovotono +gorino +ferrara +video +cittadini +resistono +invasione +targata +renzi +pd +milanistan +bene +schifo +vergogna +ecco +ridotto +parigi +ecco +qual +idea +futuro +governi +europei +amici +banchieri +massoni +renzi +merkel +hollande +molliamo +stopinvasione +stopunionesovieticaeuropea +iovotono +poliziotto +lamenta +leggi +dotazioni +inadeguate +garantire +sicurezza +cittadini +amico +renzi +librandi +coraggio +rispondere +vergognati +pazzesco +vergogna +italia +governo +sempre +parte +forze +ordine +dicembre +iovotono +cappellino +ordinanza +abbigliamento +rapper +piacenza +profughi +visibilmente +deperiti +sconvolti +guerra +piazzano +mezzo +strada +bloccando +traffico +protestano +altro +ricevono +soldi +diaria +cibo +agriturismo +ospita +fa +schifo +me +invece +schifo +scene +ormai +quotidiane +umiliano +milioni +italiani +difficoltà +usciamo +facebook +firenze +sabato +novembre +preavviso +sfratto +quell +incapace +renzi +iovotono +colpito +bottigliate +senegalese +clandestino +motivo +bisogni +parco +pubblico +gradito +rimprovero +naturalmente +clandestino +già +libero +italia +renzi +barzelletta +mondo +dicembre +iovotono +maxi +rissa +immigrati +ospitati +spese +porto +torres +tanto +blocco +stradale +pare +somali +gradiscano +stesso +cibo +offerto +nigeriani +situazione +delirante +iovotono +stopinvasione +diretta +caserma +cavarzerani +udine +ospita +immigrati +maggioranza +pakistani +italiani +pagano +milioni +italiani +disoccupati +aereo +stato +cenetta +senza +pretese +renzi +amici +america +schiforma +renzi +abolisce +senato +trasforma +dopolavoro +politici +nominati +impedisce +sempre +italiani +votare +viene +deciso +bruxelles +consente +parlamentari +continuare +cambiare +partito +senza +mollare +poltrona +dicembre +iovotono +casa +popolare +data +famiglia +italiana +magari +aspetta +trent +anni +arrivato +altro +ieri +egoismo +razzismo +buonsenso +padre +famiglia +prima +dà +mangiare +proprio +figlio +generoso +intelligente +buttare +miliardi +mantenere +italia +finti +profughi +quasi +sempre +maschi +ventenni +robusti +spenderli +africa +aiutare +milioni +bambini +veramente +bisogno +qualche +minuto +insieme +senza +renzi +renzi +clandestini +hotel +italiani +mezzo +strada +dicembre +iovotono +prove +tecniche +lavaggio +cervello +ecco +spot +tv +gira +svezia +pianificato +sostituire +popoli +avere +nuovi +schiavi +basso +costo +sfruttare +manodopera +chiudiamo +occhi +arrendiamoci +girare +finché +lasciano +fare +telecamere +rete +entrano +famigerato +hotel +house +porto +recanati +appartamenti +purtroppo +rifugio +troppi +clandestini +delinquenti +spacciatori +inviato +chiedono +manda +salvini +ben +altro +contento +essere +associato +battaglie +legalità +soluzione +governo +controlli +tappeto +forze +ordine +piano +piano +appartamento +appartamento +regola +bene +altri +espulsi +subito +buffone +bugiardo +basta +minuto +capire +fare +iovotono +avercene +nonne +così +sentite +cosa +dice +renzi +forcone +mano +signora +rosina +grande +abbraccio +iovotono +pazzesco +migranti +gentilmente +ospitati +bari +spese +italiani +ringraziamento +aggrediscono +giornalista +rete +puttana +carabinieri +dedicano +grande +altro +razzista +italia +mente +mettere +piedi +testa +sbarca +dicembre +iovotono +secondo +sinistra +dovremmo +accogliere +migranti +economici +normale +mondo +così +tanta +disuguaglianza +così +tanta +ingiustizia +gente +cerchi +scappare +altro +migliorare +propria +vita +compagna +milioni +disoccupati +italiani +veri +profughi +così +difficile +capire +respinto +richiesta +asilo +costruiscono +favelas +baraccopoli +comprensive +negozi +altre +belle +attività +commerciali +bastaaaaaa +dicembre +iovotono +incredibile +chiesto +asilo +attesa +spacciavano +droga +minorenni +chissà +guerra +scappavano +poverini +modello +integrazione +piace +tenetevelo +altro +insieme +renzi +boldrini +quel +genio +alfano +altrimenti +dicembre +possibilità +cambiare +votando +no +iovotono +minuti +pazzeschi +guardare +condividere +iovotono +sfrattata +malata +purtroppo +straniera +trovano +sempre +sistemazioni +poco +dover +lasciare +italia +vogliono +togliere +dignità +governo +razzista +altro +verso +italiani +altro +riforme +prima +liberiamo +renzi +prima +salviamo +cento +mille +iovotono +orgoglioso +aver +detto +boschi +pensano +milioni +italiani +banca +etruria +altre +truffe +bancarie +iovotono +voto +no +senato +abolito +rimane +casta +nominati +consiglieri +regionali +sindaci +senatori +tempo +libero +voto +no +parlamentari +potranno +continuare +altro +cambiare +partito +senza +mollare +poltrona +voto +no +italiani +dovranno +inchinarsi +follie +unione +europea +senza +mai +potersi +esprimere +merito +referendum +renzi +boschi +alfano +riforma +fa +comodo +vuole +servi +voglio +italiani +padroni +proprio +futuro +iovotono +parole +amici +boschi +scappa +poche +ore +confronto +così +paura +ora +aspetto +renzi +boschiscappa +iovotono +soldi +soldi +ecco +treviso +salutato +buffone +scommettiamo +nessun +telegiornale +vedere +immagini +bastano +minuti +cardinale +raymond +leo +burke +islam +minaccia +scopo +governare +mondo +infedeli +scopo +primario +prendere +roma +ancora +immigrazione +altro +serve +intelligenza +dobbiamo +sapere +immigrati +possiamo +realisticamente +accettare +fortuna +gerarchie +ecclesiastiche +rassegnano +politically +correct +girare +cosa +fate +giorno +seduti +mangiamo +dormiamo +fatto +mutuo +trentennale +doveva +essere +elegante +residenza +prende +quel +posto +primi +graduatorie +spesso +stranieri +così +bimbi +piccoli +devono +vivere +camper +senza +riscaldamento +italiani +sempre +dopo +verranno +sempre +prima +ora +muoversi +aspetto +sabato +novembre +firenze +iovotono +corteo +presidenziale +verona +atmosfera +ovattata +baci +abbracci +poi +arriva +vocina +rovina +nessuna +tivù +ve +fatto +sentire +sì +sempre +amato +renzi +dicembre +mostriamo +insieme +titoli +coda +iovotono +flat +tax +economia +sommersa +potrà +riemergere +paghi +tolleranza +zero +www +tassaunica +it +bolzano +rissa +immigrati +colpi +mazze +bastoni +davanti +bimbi +famiglie +scappare +guerra +portano +casa +schifo +stopinvasione +girare +michele +esodato +truffato +stato +forse +dovrà +vendere +casa +tirare +avanti +pensare +dice +esodati +esistono +vergogna +fornero +vergogna +pd +vergogna +renzi +muove +dito +vedo +ora +essere +governo +restituire +po +dignità +italiani +traditi +veniamo +barconi +viviamo +inferno +castrato +clandestino +pretendono +pretendono +pretendono +riso +piace +vogliono +cibo +africano +secondo +scappa +veramente +guerra +comporta +così +diretta +padova +abbraccio +renzi +boldrini +centri +sociali +profughi +residenti +secondo +normale +tg +vedere +agricoltori +coprono +fischi +renzi +sì +amico +segretario +coldiretti +percepito +secondo +espresso +incredibile +cifra +milioni +stipendio +anni +vergogna +girare +casa +prima +italiani +cascina +lega +fatto +volere +potere +sfrutta +debolezza +anziana +frega +soldi +infame +vogliono +telecamere +sempre +siccome +italiano +detto +potevo +permettermi +pagare +euro +affitto +straniero +invece +europa +bolkestein +mette +rischio +200mila +aziende +italiane +meglio +soli +male +accompagnati +renzi +muoviti +vuoi +porto +bruxelles +voglio +ricordare +storia +franco +condannato +anni +mesi +reclusione +mila +euro +risarcimento +aver +ucciso +ladro +giudice +preferiva +forse +venisse +ucciso +tabaccaio +altro +italia +contrario +renzi +sinistra +quando +andremo +governo +principio +legittima +difesa +sempre +altro +reato +eccesso +sacro +parlo +ogni +giorno +tanti +artigiani +magari +solo +terza +media +messo +piedi +imprese +tempo +vincenti +oggi +distrutte +tripla +laurea +doppio +master +euro +moneta +criminale +malati +mente +bastano +meno +minuti +dati +ufficiali +mano +smontare +bugie +renzi +pd +immigrazione +girare +benvenuti +varesestan +quest +anno +sagrato +duomo +trasformato +occasione +suk +canti +danze +mezzelune +islamiche +ambito +fondamentale +festival +promosso +coordinamento +migrante +patrocinio +comune +pubblico +attento +smartphone +caldo +ecco +cosa +succede +votare +pd +scusa +richiesta +informazioni +picchiato +selvaggiamente +banda +ladri +nordafricani +seriate +vicino +bergamo +realtà +renzi +esci +palazzo +chigi +fatti +giro +qualsiasi +città +italana +altro +italicum +legge +elettorale +numeretto +magico +ripeto +ripetiamo +insieme +solo +sbarca +scappa +guerra +entrerà +testa +renzi +boldrini +compagnia +ah +no +pensano +italia +posto +tutta +africa +migranti +climatici +compresi +stato +mette +primo +posto +propri +cittadini +stato +fallito +abbraccio +papà +schifosi +picchiato +torturato +ferro +stiro +rovente +coppia +anziani +presi +marocchini +clandestini +precedenti +penali +sorpresa +mai +detto +rispedirli +casa +subito +svenduto +futuro +tradito +fiducia +italiani +posso +dire +signor +napolitano +complice +disastro +troviamo +oggi +vengo +arrestato +tanti +difetti +essere +ipocrita +cittadini +abano +terme +padova +scendono +piazza +massa +dicono +no +invasione +clandestini +governo +renzi +vorrebbe +mettere +ex +base +nato +amici +molliamo +resistere +stopinvasione +maledette +giù +mani +bambini +proposta +lega +chiara +telecamere +asili +accordo +domande +risposte +flat +tax +tasse +troppo +poco +ecco +risposta +minuto +approfondisci +sito +www +tassaunica +it +calabria +giovani +lavoro +costretti +lasciare +propria +terra +secondo +sindaco +problemi +risolvono +importando +migliaia +immigrati +fate +posto +roba +matti +signore +studio +fa +finta +capire +differenza +immigrati +regolari +clandestini +invadono +città +problemi +comprensione +malafede +glielo +spiegate +vergognoso +vittima +legge +fornero +esodata +senza +lavoro +senza +pensione +marito +malato +vive +assegno +invalidità +euro +mese +mentre +stato +spende +ciascuno +altro +decine +migliaia +clandestini +fuggono +nessuna +guerra +coraggio +protestare +cibo +cattivo +wi +fi +mancante +governo +razzista +verso +italiani +servono +altre +prove +renzistaisereno +iovotono +diretta +milanistan +guardare +diffondere +bacheche +buoniste +anno +scorso +sindaco +bergamo +pd +affermava +salvini +dice +parecchie +cose +vere +lega +riesce +alimentare +costante +clima +paura +altro +insicurezza +poi +centro +città +ormai +invasa +bande +immigrati +moltiplicano +risse +qualche +giorno +fa +altro +indicarci +responsabili +serve +bella +ripulita +sempre +grazie +forze +ordine +purtroppo +lavoro +spesso +rovinato +qualche +giudice +schiavi +nessuno +pontida16 +continua +diretta +pontida16 +continua +diretta +pontida16 +eccomi +amici +diretta +splendido +palco +pontida16 +dati +mano +fuori +euro +vita +sviluppo +futuro +flat +tax +aiuta +solo +ricchi +falso +scopri +minuto +www +tassaunica +it +rivoluzione +fiscale +possibile +minuto +smontare +palle +euro +bugiardi +insulti +saviano +milioni +italiani +sostengono +lega +definiti +cancro +rivolga +mafiosi +delinquenti +spacciatori +stupratori +comunque +fedez +preferisco +mauro +corona +fabrizio +andré +dopo +migranti +economici +migranti +climatici +po +migranti +calcistici +basta +tutta +africa +italia +rivoluzione +fiscale +italia +possibile +flat +tax +eccola +spiegata +grafici +cifre +simulazioni +dice +può +fare +progressiva +altro +coperture +coraggio +manca +incapace +renzi +condividi +puoi +approfondire +sito +www +tassaunica +it +minuti +cifre +proposte +chiare +posto +bugiardo +renzi +governo +crescita +zero +piace +girare +stato +miliardi +crediti +inesigibili +verso +italiani +cosa +tasse +dichiarate +versate +quei +cittadini +evasori +semplicemente +pagarle +altro +vengono +perseguitati +equitalia +domanda +proposta +concreta +invece +pretendere +somme +vedranno +mai +meglio +stracciare +cartelle +esattoriali +chiedere +pagare +solo +dovuto +liberi +unione +sovietica +europea +clandestini +disoccupazione +diretta +milano +nuove +proteste +profughi +volta +livorno +blocco +traffico +aggressione +passanti +soddisfatti +servizi +offriamo +casaaaaa +diretta +borgosesia +vercelli +pensiero +speciale +gianluca +buonanno +germania +vincono +alleati +lega +perdono +merkel +amici +renzi +poi +dicono +esagero +vero +italiani +esasperati +invasione +invenzione +cittadini +video +però +villa +capalbio +dunque +buonisti +sinistri +nemmeno +diritto +lamentarsi +situazioni +conoscete +diretta +conselve +padova +buona +serata +amici +invasione +voluta +finanziata +organizzata +qualcuno +servono +schiavi +euro +ora +sfruttare +posto +italiani +lega +bloccare +sostituzione +popolo +novembre +firenze +appuntamento +vogliono +futuro +propri +figli +state +buon +lunedì +sera +amici +ben +ritrovati +buonasera +amici +diretta +pinzolo +val +rendena +trentino +sapete +vanno +sera +pensiero +preghiere +roba +matti +pensionato +dà +elemosina +signor +moustafa +hussein +massacra +botte +subito +liberato +ovviamente +accoltellare +ragazzo +difeso +pensionato +forandogli +altro +polmone +rischiando +ucciderlo +state +tranquilli +dice +renzi +invasione +palla +quell +estremista +brutto +sporco +cattivo +salvini +molliamo +facebook +utile +basta +aspetto +novembre +firenze +iovotono +cl +nasconde +madonna +paura +islam +milano +alcune +vie +sembra +essere +italia +appuntamento +sabato +novembre +firenze +dobbiamo +essere +tanti +buon +martedì +amici +cambiare +può +creato +scuola +formazione +politica +confronto +conoscenza +arriva +soluzione +problemi +aperte +iscrizioni +edizione +corso +milano +roma +quest +anno +aspetto +tutte +info +www +scuoladiformazionepolitica +it +alimenta +immigrazione +clandestina +complice +attentati +isis +punto +diretta +milanistan +accampamenti +cielo +aperto +pieno +centro +qualche +minuto +insieme +follia +inversione +u +autostrada +cisa +casa +romania +così +altro +regalo +unione +europea +senza +parole +ecco +futuro +laura +immagina +migranti +avanguardia +offrono +stile +vita +imitare +ieri +oggi +domani +sgonfialaboldrini +qualche +minuto +laura +qualche +minuto +referendum +renzi +no +grazie +ancora +spari +morti +stavolta +monaco +coppia +anziani +quasi +novantenni +picchiati +torturati +notte +provo +schifo +pena +verso +complice +situazione +pensa +italia +esista +emergenza +abbraccio +signor +libero +signora +rosina +molliamo +roba +matti +dopo +aver +tentato +scippare +donna +bimbo +passeggino +palermo +insulta +polizia +grido +fanculo +italia +fanculo +italiani +trova +bene +accontentiamolo +biglietto +sola +andata +somalia +magari +spese +boldrini +sangue +bambini +sangue +sangue +sangue +distruzione +distruzione +lavoro +cibo +disgustosi +cani +dio +protegga +paese +poi +risate +altro +chiese +distrutte +terremoto +abruzzo +altre +amorevoli +affermazioni +tunisini +già +condannati +accusa +aver +creato +intorno +moschea +andria +puglia +centro +indottrinamento +addestramento +finalizzata +reclutamento +aspiranti +martiri +rifugio +clandestini +stati +assolti +cassazione +fatto +sussiste +liberi +immagino +continueranno +ridere +qualche +minuto +insieme +parole +http +www +ansa +it +sardegna +notizie +disabile +picchiato +filmato +gira +web +caa2b4fa +a937 +4e4d +8d25 +51eec7cc7c90 +html +grande +controllore +razzista +prove +servono +ancora +dimostrare +euro +moneta +sbagliata +eccetto +tedeschi +possono +fare +referendum +trattati +europei +italia +pensa +cittadini +altro +idioti +buon +motivo +votare +no +referendum +renzi +altro +bene +governo +moneta +unica +salutiamo +punto +benvenuti +milanistan +qualche +minuto +profughi +catania +trascorrono +placide +giornate +villeggianti +mare +sole +sport +spese +italiani +magari +vacanza +possono +andare +italia +renzi +diretta +area +expo +milano +pronta +accogliere +indicazione +governo +renzi +centinaia +clandestini +monolocali +aria +condizionata +wi +fi +bagno +camera +razzista +populista +fascista +basta +imparare +conoscere +confrontarsi +approfondire +aperte +iscrizioni +edizione +scuola +formazione +politica +corso +milano +roma +pensaci +tutte +info +www +scuoladiformazionepolitica +it +giustizia +manicomio +nigeriano +anni +stato +riconosciuto +status +profugo +potrà +rimanere +modico +costo +60mila +euro +soldi +pubblici +fino +anno +giudice +fissato +udienza +ricorso +casi +giro +già +seconda +volta +fermi +terza +ammazzo +manda +ospedale +così +simpatico +ragazzo +extracomunitario +pescara +danni +controllore +no +esiste +problema +sicurezza +altro +dicono +buonisti +son +tutte +esagerazioni +colpa +populisti +po +scemi +paghiamo +biglietto +combattere +isis +partire +fonti +denaro +armano +petrolio +immigrazione +clandestina +poi +annientare +mezzi +bestie +chiacchiere +minuti +silenzio +fermano +orrore +qualche +minuto +insieme +austria +sbaglia +paga +annullano +elezioni +presidenziali +irregolari +gran +bretagna +dopo +brexit +propone +modello +immigrazione +limitata +punti +italia +fa +corsa +servo +bugiardo +firenze +vento +libertà +arriverà +mollate +mollo +rom +nullatenenti +porsche +protesta +profughi +verona +lamentano +imprigionati +diamo +pochi +soldi +poveretti +colletta +ecco +mani +presento +juncker +traballante +presidente +commissione +europea +commenti +minuti +senza +interruzioni +vespa +brexit +veri +europeisti +riconoscono +ue +banchieri +multinazionali +burocrati +negazione +valori +ragioni +nacque +unione +popoli +europei +svegliando +libertà +diretta +bruxelles +brexit +diretta +parma +cantiere +oggi +politica +ascolta +quarta +parte +diretta +parma +cantiere +oggi +politica +ascolta +terza +parte +diretta +parma +cantiere +oggi +politica +ascolta +diretta +parma +cantiere +oggi +politica +ascolta +ora +milano +brexit +ora +tocca +qualche +minuto +giorni +fuma +dopo +aver +votato +qualche +minuto +insieme +vergogna +renzi +video +pensate +emigranti +italiani +tanti +anni +fa +prima +vengono +italiani +paura +dirlo +passi +centro +bologna +contestatore +volta +solo +peccato +renzi +tasse +diminuite +solito +bugiardo +condividi +bacheca +amico +vota +pd +fa +piove +studi +settore +follia +via +subito +liberare +energie +stato +chiede +primo +ladro +socio +occulto +fa +niente +secondo +renzi +oggi +pagate +meno +tasse +risulta +tanta +gente +incontrata +mattina +carmagnola +torino +parti +governo +dovrebbero +farsi +qualche +giro +mercato +ascoltare +progetto +renzi +pensioni +devi +pagare +avere +soldi +attesa +crepare +ingrassando +solite +banche +parola +dire +truffatore +aiutami +diffondere +finché +facebook +rimane +libero +torino +villaggio +olimpico +occupato +comandano +libici +eritrei +assoluta +impunità +italiani +espulsi +propria +città +governo +sinistra +schifo +italiani +razzisti +capito +visibilmente +deperiti +fame +altro +prendendo +culo +girare +qualche +minuto +roba +matti +consideravano +troppo +fuori +mano +dunque +spaccano +sfasciano +mobili +gettano +cibo +terra +risultato +spostati +hotel +stelle +centro +messina +fa +altro +votare +ancora +pd +governo +invasione +umilia +italiani +tg +telerenzi +tacciono +condividi +qualche +minuto +insieme +fenomeno +oggi +beccato +fischi +commercianti +chissà +telegiornali +vedere +sperate +essere +parla +oltre +milione +italiani +potrebbero +vedersi +recapitare +cartella +equitalia +restituire +euro +qualche +minuto +insieme +video +incredibile +chiarezza +mostrare +scettici +parleremo +scuola +formazione +politica +anno +scorso +centinaia +persone +corsi +milano +roma +altro +iscrizioni +aperte +www +scuoladiformazionepolitica +it +info +scuoladiformazionepolitica +it +video +geniale +semplicità +consiglio +guardare +condividere +minuti +immigrazione +massa +potrà +mai +essere +soluzione +povertà +mondo +dite +capiranno +certi +buonisti +casa +vorrebbero +accogliere +italia +tutta +africa +video +stomaci +forti +palermo +egiziano +accoltella +quasi +ammazza +altro +straniero +pare +fatto +apprezzamenti +fidanzata +gente +gira +strade +grazie +altro +forze +ordine +arrestato +purtroppo +anziché +essere +rispedito +subito +egitto +calci +sedere +temo +ritroveremo +presto +circolazione +insieme +strasburgo +accogliamo +albergo +umanità +dice +albergatore +quest +anno +intascherà +mila +euro +ospitare +centinaio +profughi +cuore +oro +finti +buoni +arricchiscono +clandestini +dovrebbero +fallire +primo +ultimo +qualche +minuto +insieme +ora +diretta +milano +buona +domenica +buon +voto +qualche +minuto +stare +insieme +pronti +domani +votare +lega +aiutami +girare +video +istruzioni +vota +domenica +comune +milano +aiutami +girare +video +istruzioni +vota +domenica +comune +roma +indiretta +milano +visita +campo +rom +mattina +canale +euro +restituire +truffa +renziana +proprio +infamia +tentata +pelle +disabili +cercando +tassare +pensioni +invalidità +voluta +sentenza +consiglio +stato +evitarlo +renzi +pericoloso +nervosetti +pd +meno +diretta +bologna +imbavagliamo +vergogna +sindaco +rivogliobologna +accadeva +malattie +epidemiche +guerra +mondiale +morti +superassero +nascite +estinguendo +possibile +miliardi +spesa +pubblica +trovino +altro +rendere +asili +nido +gratuiti +fino +anni +futuro +senza +figli +pazienza +arrivare +fino +fine +video +ascoltate +cosa +dice +amica +renzi +studenti +universitari +bologna +violenti +casinisti +poveretti +figli +papà +rieducare +odiano +polizia +odiano +salvini +impediscono +persone +altro +prof +panebianco +parlare +liberamente +oggi +nonostante +piazza +negataci +città +candidata +sindaco +lucia +borgonzoni +dico +sorpresa +bologna +bolognesi +girare +comunità +internazionale +normale +convenienza +organizzare +campi +identificazione +zone +libere +nord +africa +evitando +trasformare +mediterraneo +fossa +comune +altro +occupano +diritti +immigrati +vorrei +qualcuno +occupasse +diritti +italiani +profughi +casa +domani +sfigati +figli +papà +comunque +bologna +intera +città +può +essere +ostaggio +pochi +violenti +senza +paura +bolognalibera +banda +romeni +svaligiava +case +indicazione +badanti +parenti +oppongono +arresto +belle +personcine +ruspa +domenica +tocca +minuti +tempo +sostenere +candidati +sindaci +città +città +nord +sud +lega +salvini +diamo +segnale +renzi +vai +casa +qualche +minuto +insieme +torino +diretta +torino +vorrei +prima +poi +pagasse +banchiere +disastri +fatto +italia +anziché +risparmiatori +obbligazionisti +lavoratori +vergogno +stato +nemmeno +grado +difendere +anziani +domenica +ogni +voto +lega +salvini +dispiacere +signor +napolitano +amichetto +renzi +renzino +fa +monologhi +tg +preferisco +mattinata +giro +strada +ascoltare +capire +proporre +senza +paura +confronto +oggi +aspetto +roma +teatro +golden +via +taranto +altro +candidati +lista +lega +salvini +libreria +borri +books +www +borribooks +com +stazione +termini +presentazione +libro +secondo +matteo +ancora +primo +vendite +italia +libri +saggistica +nonostante +boicottaggi +rosiconi +molliamo +qualche +minuto +insieme +pazzesco +rissa +furibonda +immigrati +autobus +sera +roma +passeggeri +conducente +ostaggio +gang +nessuna +invasione +dice +renzino +noooooo +tutte +invenzioni +quel +altromeschino +salvini +domenica +occasione +aiutarci +voto +nord +sud +cerca +scheda +simbolo +lega +salvini +ripuliamo +città +pensiero +particolare +solo +viaggiatori +ogni +giorno +lavora +autobus +treni +metropolitane +rischiando +pelle +italia +scoppiando +renzi +alfano +negano +mai +fatti +giro +qualsiasi +città +stopinvasione +volete +condividere +minuti +intervento +ieri +sotto +diluvio +bacheca +qualche +amico +diamo +bel +dispiacere +telerenzi +quei +tg +preferiscono +ignorarci +qualche +minuto +insieme +grazie +eroi +oggi +milano +sotto +secchiate +acqua +moriremo +schiavi +europa +renzino +arriviamo +liberi +diretta +sotto +acqua +splendida +piazza +piena +milano +pronti +liberi +segui +www +libericonsalvini +org +oppure +pagina +renzi +voglia +ascoltarci +sempre +finta +niente +liberi +qualche +minuto +insieme +video +collegamento +giorgia +meloni +unica +candidata +sindaco +centrodestra +roma +sostegno +lega +può +mandare +casa +pd +matteorisponde +liberiamo +bologna +chiuderò +campagna +elettorale +giovedì +giugno +piazza +verdi +spacciano +giorno +notte +niente +zecche +bolognesi +aspetto +diretta +bologna +bruxelles +qualche +minuto +insieme +bronzo +signora +fornero +ancora +tivù +tenere +lezioni +pensioni +favore +taci +ritirati +esilio +meglio +qualche +minuto +monsignore +suggerisco +ricordarsi +qualche +volta +quei +milioni +italiani +senza +straccio +lavoro +possono +permettersi +accogliere +mondo +sbaglio +ancora +straparla +napolitano +dovrebbe +essere +ricoverato +vecchio +arnese +comunista +già +fatto +troppi +danni +pazzesco +teoria +signor +rom +giusto +occupare +casa +diritto +anziana +tanto +muore +svelta +vada +ospizio +ruspa +gigante +abbastanza +così +http +cronacacriminale +tgcom24 +it +occupazioni +rom +giusto +togliere +casa +unanziana +muore +allospizio +scappa +guerra +porte +aperte +casa +finti +profughi +governo +invasione +biglietto +ritorno +via +ancora +qualcuno +convinto +cura +euro +salvato +ascoltate +giornalista +sinistra +renziana +corriere +dico +nefandezze +permetto +denunciare +situazioni +illegalità +andando +vedere +persona +provocatore +forse +signora +molto +abituata +prendere +autobus +girare +periferia +dite +primo +ladro +italia +stato +rapina +commercianti +artigiani +partite +iva +flat +tax +via +studi +settore +riparte +liberi +diretta +piazza +strapiena +oderzo +renzi +arriviamo +vergogna +mega +stipendi +dirigenti +fallire +grandi +aziende +banche +danni +risparmiatori +vergogna +miseri +euro +mese +invalido +quando +coop +gestire +immigrati +sbarcano +domani +mattina +danno +liberi +ingiustizie +credo +qualche +minuto +insieme +sempre +mare +monti +qualche +minuto +insieme +renzi +basta +palle +cancella +studi +settore +massacrano +aziende +partite +iva +vuoi +puoi +fare +domani +mattina +qualche +minuto +insieme +domande +abbassi +tasse +reimmetti +soldi +circolo +gente +compra +fabbrica +produce +assume +operaio +aliquota +unica +semplice +chiara +sconfigge +demenziale +burocrazia +fiscale +italiana +può +discutere +serve +coraggio +renzi +mando +grazie +abbraccio +centinaia +ginosini +accolto +mattina +teatro +alcanices +strapieno +agricoltura +lavoro +sicurezza +immigrazione +turismo +stop +covi +illegalità +concorrenza +imprese +oneste +liberi +puglia +qualche +minuto +connessione +permettendo +parlare +ricevuto +cartella +esattoriale +sbagliata +pur +ragione +dovuto +anticipare +parte +sanzioni +dovute +oggi +stato +cittadino +presunto +colpevole +modo +contrario +liberi +altro +giorno +campo +rom +magliana +roma +residenti +centri +asociali +istruttivo +condividere +volete +rimanga +così +votate +pd +renzi +perde +referendum +ottobre +basta +giochi +subito +elezioni +bruxelles +discutendo +ttip +disastro +imprese +economia +salute +esempio +stati +uniti +pesticidi +vietati +legge +altro +italia +colpa +venduti +servi +multinazionali +porteranno +tavole +italiani +alimenti +trattati +schifo +ieri +umbertide +perugia +riguarda +nemmeno +mezzo +metro +centri +culturali +islamici +leggi +moschee +conoscono +finanziatori +riconoscono +libertà +diritti +valori +diretta +versilia +picchiata +locale +rapinatori +volto +coperto +armati +piccone +immagini +marito +fatto +tempo +arrivare +pistola +caso +sparato +difendere +altro +moglie +uccidendo +ladro +oggi +magari +carcere +stancherò +mai +ricordarlo +difesa +sempre +legittima +diretta +piazza +strapiena +città +castello +umbria +governata +sinistra +settant +anni +mandiamo +casa +ladruncole +rom +cominciano +anni +ancora +azione +stazione +termini +roma +tribunale +minorenni +interviene +troppo +chiederlo +attenti +però +portafogli +rubato +prendono +solo +soldi +poi +buttano +terra +bontà +diretta +giorgia +meloni +sindaco +roma +diretta +campo +rom +roma +fedez +dedica +dito +medio +verso +nuova +canzone +spot +estate +cornetto +algida +marchio +multinazionale +unilever +bella +quest +estate +mangerò +solo +cornetti +sammontana +sanson +altri +produttori +italiani +tanti +paesi +civili +stupratori +serve +unica +soluzione +castrazione +chimica +zac +rieccomi +pochi +metri +monumenti +belli +roma +porto +ex +fabbrica +occupata +anni +centinaia +rom +degrado +topi +spazzatura +centinaia +bambini +so +possano +crescere +schifo +ripuliamoroma +diretta +roma +palazzo +occupato +centinaia +persone +incredibile +so +quando +vado +giro +nessuno +chiede +riforma +senato +adozioni +gay +tante +proposte +concrete +lega +realizzerei +subito +posto +quel +bufalaro +renzi +copiare +francia +rendere +gratuiti +asili +nido +bimbi +fino +anni +senza +figli +nessun +futuro +provate +chiedere +giro +dopo +anni +mezzo +renzi +state +meglio +state +peggio +governo +valutato +riforma +leggi +schifezza +costituzione +toglie +ulteriore +libertà +altro +scelta +cittadini +serve +partito +giudici +mandare +casa +renzino +bastano +italiani +state +liberi +qualche +minuto +insieme +prima +diretta +rai +campi +occupazioni +rom +abusive +città +organizzi +paghi +casa +oppure +vattene +giro +mondo +sembra +posizione +così +estremista +beccatevi +terapista +familiare +trasmesso +tv +saudita +fa +lezione +quando +picchiare +moglie +dotta +dissertazione +tipo +bastone +usare +lamenta +professore +altro +fatto +molte +donne +aspirino +rapporto +uguaglianza +marito +atteggiamento +ovviamente +punire +nessuna +integrazione +possibile +islam +tollera +magari +sotto +sotto +giustifica +personaggi +manicomio +no +video +tradotto +http +video +corriere +it +terapista +familiare +saudita +ecco +quando +picchia +moglie +570f6140 +11e6 +a60e +5fac25fd8ba7 +diretta +bellissima +piazza +piena +savona +sfondo +grida +kompagni +urlano +bacioni +qualche +giornale +parlato +contestatori +oggi +salone +libro +sì +numero +potete +guardarli +video +mandiamo +bacione +saluto +invece +altro +ragazzi +giovanissimi +venuti +trovarmi +torino +secondo +matteo +buone +idee +forti +qualche +intollerante +zecca +rossa +figlia +papà +avanti +tutta +adesso +connessione +permettendo +parlare +rieccomi +diretta +mezzo +tantissimi +ragazzi +salone +libro +torino +video +pazzesco +plauso +carabinieri +catania +aggrediti +amici +uomo +arrestando +mantenuto +sangue +freddo +evitando +peggio +sempre +parte +forze +ordine +vergogna +renzi +taglia +fondi +lavoro +sicurezza +diretta +roma +intero +palazzo +occupato +rom +immigrati +parabole +ovunque +incredibile +ancoraaa +qualche +minuto +rispondere +domande +diretta +centro +immigrati +bari +ospiti +numeri +dicono +solo +otterrà +asilo +politico +altri +ancora +giro +clandestini +qualche +minuto +parlare +stati +controllano +verificano +espellono +italia +entra +chiunque +solo +cento +scappano +guerra +unica +soluzione +clandestini +governo +mandarli +casa +roma +quartiere +montagnola +soliti +violenti +centri +sociali +bloccano +mercato +lanciano +oggetti +impedirmi +incontrare +cittadini +fate +paura +fate +pena +accoglienza +riservata +oggi +renzino +matera +naturalmente +aspettatevi +vederlo +tg +diretta +bellissima +piazza +milano +lega +parisi +sindaco +domande +risposte +qualche +minuto +insieme +mentre +silvio +gode +abbraccio +fini +casini +ieri +sera +signora +fornero +diceva +salvini +espressione +cattiva +politica +istiga +odio +taci +vigliacca +meglio +gufava +trump +sperando +visita +portasse +sfortuna +stanotte +trump +trionfato +primarie +stati +palio +diretta +philadelphia +buona +domenica +amici +qualche +minuto +compagnia +diretta +piazza +varese +bella +piena +zingara +mostra +chiappe +semaforo +ruspa +quando +potere +farlo +schifezze +magicamente +spariranno +linea +torna +no +colpa +renzi +ancora +diretta +roma +lega +salvini +ripulire +città +diretta +roma +domanda +giornalista +mantenete +esempio +parabole +lavoro +” +risposta +signor +rom +po +delinquenza +arrangia +onestamente +” +capito +delinque +moderazione” +ruspaaa +diretta +piazza +piena +grosseto +diretta +stazione +tiburtina +roma +occupazioni +abusive +criminalità +illegalità +intorno +business +clandestini +cittadini +possono +ascoltate +diretta +mercato +via +doria +roma +obbligati +andare +rubare +signor +rom +risponde +così +manderei +subito +galera +ruspaaaa +minuti +insieme +tanta +bella +gente +incontrata +stamane +mercato +latina +ripuliamo +città +campi +rom +covi +illegalità +dipendesse +me +raderei +suolo +domani +mattina +diretta +latina +piazza +pienaaaaa +convertito +islam +visto +dice +vittime +terroristi +islamici +cercata +pericoloso +rieccomi +minuti +parlare +viaggio +papa +referendum +tasse +basta +pronto +soccorso +italiani +diventati +accampamenti +clandestini +furbetti +cerca +cure +gratis +mentre +veramente +bisogno +deve +aspettare +ore +minuti +dialogare +costa +tanto +renzi +fare +telefonata +premier +australiano +parole +insieme +commentare +fatti +misfatti +giorno +grazie +ivan +coraggio +esempio +ecco +stato +accolto +renzi +vinitaly +televisioni +vedere +politici +devono +smettere +svendere +italia +proteggendo +confini +clandestini +merci +arrivano +senza +controlli +resto +mondo +devo +essere +processato +difendo +interessi +italiani +allora +processatemi +domani +mattina +voglio +attaccare +mattarella +voglio +difendere +principio +frontiere +confini +esistono +ingresso +uomini +merci +interesse +italiani +vanno +controllate +punto +referendum +trivellazioni +difesa +territorio +domenica +voto +guardate +danni +fatti +marche +diretta +romagna +diretta +cesenatico +scappano +nessuna +guerra +stragrande +maggioranza +sbarca +italia +pretendono +protestano +bloccano +città +governo +espulsioni +subito +italiani +stufi +farsi +prendere +gliela +stringereste +mano +renzino +forse +problema +signor +friedman +oggi +milioni +italiani +né +lavoro +né +pensione +troppo +volgare +ripeto +legge +fornero +legge +cazzo +diretta +finale +emilia +modena +ricostruire +dopo +terremoto +nulla +pd +centro +immigrati +bologna +bologna +fiera +internazionale +libro +ragazzi +spettacolo +espositori +illustratori +paesi +mondo +aprire +menti +liberare +fantasia +vanno +case +popolari +bologna +graduatoria +cittadini +unione +sovietica +roberto +invalido +civile +genova +trenta +giorni +può +rientrare +appartamento +occupato +abusivamente +famiglia +immigrati +già +pronte +accuse +razzismo +eccoli +abusivi +buongiorno +istigatori +violenza +professoressa +roba +matti +prima +diretta +autoprodotta +devo +proprio +rispondere +renzi +lamentano +sempre +riso +maccheroni +riso +maccheroni +pensano +essere +ristorante +ruspa +roma +est +quest +area +città +stati +arrestati +marzo +fiancheggiatori +isis +moschee +garage +scantinati +negozi +dismessi +spesso +mascherate +associazioni +culturali +altro +quando +chiede +terrorismo +islamico +zitti +bella +integrazione +renzi +boldrini +città +vogliamo +lasciare +figli +tutte +volte +vado +estero +incontrare +governi +seri +sanno +gestire +immigrazione +sicurezza +chiedono +italia +rendete +conto +fanatici +potenziali +terroristi +altro +state +entrare +maggioranza +italiani +sì +andatelo +dire +quegli +incapaci +renzi +alfano +trento +cinquanta +immigrati +bloccato +strada +centro +protesta +vogliono +soldi +documenti +ospiti +spese +italiani +rompono +pure +palle +via +primo +aereo +casa +amico +renzi +alfano +brigatisti +pubblico +studio +ballarò +applaude +battaglia +legge +fornero +barbaro +personaggi +sig +cazzola +provato +andare +giro +strada +sentire +cosa +dicono +italiani +dedicato +anime +belle +sinistra +toni +fornero +indecenti +scorretti +quando +tratta +insultare +mattina +sera +aggredire +piazza +salvini +lega +lecito +spesso +gradito +w +coerenza +servizio +tg1 +giornata +ieri +israele +vero +pericolo +oggi +terrorismo +islamico +tace +reagisce +complice +provo +pietà +umana +kamikaze +esplodere +dice +compagno +vauro +vaglielo +dire +famiglie +vittime +attentati +vergognati +monti +racconta +rovinato +vita +milioni +italiani +approvato +riforma +fornero +semplicemente +sindacati +fatto +nessuna +rivolta +sociale +solo +ore +simboliche +sciopero +capito +bene +insieme +complici +disastro +italiano +sindacati +ruspa +basta +hotel +gratis +pagato +italiani +protestano +bloccano +traffico +cagliari +vogliono +essere +identificati +pretendono +libertà +andare +giro +clandestini +lega +governo +già +casa +rispediti +indietro +calci +pazzesco +dirigente +polizia +svela +realmente +cose +ieri +sbarcati +profughi +sardegna +prese +impronte +solo +altri +rifiutati +giudice +stamattina +liberato +altro +scafisti +arrestati +prendendo +casa +renzi +alfano +raccontano +sotto +controllo +sicurezza +italiani +mano +pericolosi +incapaci +banda +rom +piace +prelevare +bancomat +così +dite +ancora +coccole +buonismo +ruspa +appena +ammazzato +persone +nome +allah +imam +problema +salvini +fa +sciacallaggio +vaff +mettono +sanzioni +russia +putin +combatte +tagliagole +islamici +poi +regalano +miliardi +turchia +finanzia +isis +europa +pericolosi +imbecilli +mandare +casa +calci +sedere +spero +immagini +vengano +presto +dimenticate +palle +piene +ammazza +nome +allah +reagire +ripulire +quartieri +cova +odio +islamista +controllare +indagare +espellere +chiacchiere +renzi +nulla +zitto +rassegno +paura +bisogna +controllare +immigrazione +buonismo +massacrando +qualche +minuto +ascoltate +piace +condividete +bacheca +qualche +amico +stanco +bla +bla +bla +renzi +intellettuali +gad +lerner +attentati +figli +buonismo +accoglienza +costi +religione +vuoi +cancellare +libertà +modo +vivere +rispedisco +casa +tempo +zero +ora +diretta +bruxelles +molenbeek +bruxelles +altro +accoglienza +altro +integrazione +qua +svegliamo +carne +macello +mastella +nonmenefottenulladisalvini +nuovo +centrodestra +forza +lega +bruxelles +vuole +portare +tavole +porcherie +mondo +intanto +pescatori +agricoltori +italiani +vengono +messi +ginocchio +consumiamo +difendiamo +prodotti +terra +schifezze +mangino +renzi +merkel +dialogo +surreale +diretta +tv +rom +abusivo +solo +occupa +casa +popolare +fregando +qualcuno +diritto +pretenderebbe +trovassi +lavoro +ruspa +altro +genitore +sabato +orgoglioso +ricevere +auguri +bimbi +festa +papà +europa +piace +renzi +merkel +rubato +lavoro +sicurezza +dignità +identità +libertà +futuro +italia +francia +moriremo +schiavi +padroni +casa +confermo +boldrini +vorrebbe +importare +400mila +immigrati +anno +figli +razzista +verso +italiani +auguro +comunque +cambiare +presto +mestiere +bruxelles +pronta +dichiarare +abusivi +stabilimenti +balneari +italiani +basta +follie +unici +abusivi +renzi +europa +pazzesco +passati +anni +ucciso +piccolo +tommy +uscirà +permessi +premio +ripeto +bestia +massacrato +bimbo +mesi +condannata +ergastolo +potrà +lavorare +fuori +altro +carcere +italia +proprio +ribaltare +impegno +quando +governo +ergastolo +ergastolo +meglio +lavori +forzati +pensiero +tommy +famiglia +invito +volete +visitare +pagina +https +www +facebook +com +tommy +cuore +giuseppe +aggredito +rapinato +negozio +qualche +buonista +sinistro +parla +ancora +eccesso +legittima +difesa +mando +quel +paese +europa +massacra +agricoltura +riempirci +schifezze +mondo +volta +parla +salvini +microfono +spacca +schiena +giorni +vuole +continuare +produrre +italiano +girare +permesso +premio +bestia +ucciso +piccolo +tommy +cazzo +stato +viviamo +uccide +bambino +merita +rivedere +sole +resto +vita +domani +mattina +nuovo +sicilia +grande +mercato +ortofrutticolo +vittoria +rg +grammichele +ct +europa +invade +prodotti +controllati +uccidono +altro +agricoltura +meglio +soli +olio +tunisino +arance +marocchine +bevano +mangino +renzi +merkel +italiani +rovinati +fornero +amico +renzi +alfano +risponde +vadano +lavorare +roba +matti +sig +cazzola +dovrebbe +vergognare +qualcosa +dirgli +sostegno +libertà +azione +forze +ordine +certezza +pena +legittima +difesa +cittadini +aggrediti +sempre +servono +magie +avere +sicurezza +italia +basta +buonsenso +tutte +famiglie +bisogno +casa +popolare +danno +avvocato +possiede +barca +italia +limite +schifo +bravo +massimo +giletti +vicenda +molla +dammi +sigarette +violento” +così +immigrato +già +noto +episodi +simili +aggredito +titolare +tabaccheria +bolzano +fortuna +intervenuti +clienti +difendere +figlia +pulizia +fare +città +orgoglioso +aver +portato +prima +serata +canale +po +battaglia +infame +legge +fornero +rovinato +vita +milioni +italiani +indifferenza +renzi +zecca +rossa +consigliere +comunale +sinistro +presenta +disinfettante +gazebo +roma +garbatella +pensate +intelligente +centro +sociale +abbracciamo +forte +forte +fornero +legge +truffa +maledetta +infame +cancelleremo +minuto +dopo +essere +andati +governo +euro +mese +bollette +stare +container +anni +girare +dedicato +tutta +propaganda +salvini +vero +terremotati +emiliani +ancora +fuori +casa” +fanculo +salvini +vattene +via +telecamera +te +sfondo +” +bel +vaffa +sceriffo” +bologna +glielo +mandiamo +incredibile +così +governo +renzi +tratta +poliziotti +mentre +sbarca +domani +mattina +pronto +hotel +stelle +girare +schifo +marianna +arrivata +vendersi +fedi +nuziali +sopravvivere +dedicato +buonisti +vogliono +accogliere +mondo +fregano +italiani +veramente +bisogno +attenti +signore” +cappello +spara +cazzate +renzi +compra +dvd +lavatrice +paio +scarpe +auto +bambino +futuro +egoismo +penso +così +pordenone +arrestato +terrorismo +islamico +immigrato +macedone +veniva +coccolato +regione +friuli +venezia +giulia +sussidio +euro +mese +governati +pericolosi +incapaci +renzi +serracchiani +manderemo +casa +nazisti +rossi +devastano +postazioni +romaparlitu +molliamo +grazie +partecipato +oggi +domani +mattina +continua +ascolto +romani +avantiiiii +info +luoghi +orari +www +noiconsalvini +org +tanta +voglia +combattere +insieme +italia +persone +perbene +costrette +armarsi +difendere +propria +famiglia +signor +fuksas +spettacolare +vuole +moschee +domestico +islamico +insulta +tipico +radical +chic +cuore +sinistra +portafoglio +destra +antonio +anni +provincia +foggia +massacrato +propria +casa +pochi +euro +bestia +ucciso +nessuna +pietà +prenderla +farla +marcire +galera +fino +fine +giorni +amici +romani +sabato +domenica +quaranta +piazze +ascoltiamo +politica +fa +passo +indietro +roma +ora +parli +romaparlitu +trova +postazione +http +noiconsalvini +org +sabato +domenica +febbraio +scegli +sindaco +roma +vuoi +tempo +voglia +consiglio +lettura +dopo +occidente +combattendo +oggi +previsto +anni +fa +difesa +popoli +libertà +italia +pericolo +europa +banchieri +grande +finanza +grazie +ida +magli +grazie +cittadini +tor +sapienza +sostegno +ruspa +giocattolo +tenete +duro +giugno +liberiamo +roma +porto +ruspa +vera +poi +signor +rom +vita +mai +pagato +tasse +cosa +parlando +giorni +sciopero +fame +chili +persi +gianni +tonelli +segretario +sap +sindacato +autonomo +polizia +arrende +continua +chiedere +sicurezza +cittadini +italiani +tutela +porta +divisa +palazzi +potere +vogliono +tenere +nascosto +girare +iostocontonelli +terremotati +container +bollette +pagare +sbarca +coccole +hotel +gratis +razzismo +schifoso +basta +bruxelles +europa +uccide +pesca +ora +regalano +pure +mare +francesi +solo +imbecilli +qualcuno +pagato +danneggiare +italia +privatizzare +rai +togliere +canone +punto +pagare +telerenzi +truffa +modena +negozi +possono +rapine +affiggono +cartelli +entri +armato +sparo +bene +legge +fornero +votata +pd +anni +renzi +mosso +dito +adesso +vogliono +toccare +reversibilità +vedovi +vedove +altro +festeggiamenti +giù +mani +pensioni +carmelo +anziano +massacrato +botte +euro +clandestino +perso +vista +occhio +uso +orecchio +ora +aziz +ritrova +piede +libero +vicino +casa +fa +schifo +giustizia +italiana +reati +commessi +immigrati +italia +numeri +parlano +chiaro +nega +verità +nemico +italiani +rovinato +vita +milioni +italiani +tosta +farsi +vedere +ancora +tv +difendere +legge +porcheria +vergognati +chiedi +scusa +vattene +italia +tommaso +pestato +sangue +rapinato +perseguitato +aver +segnalato +zingara +usa +ingresso +casa +cesso +mandiamo +casa +sinistra +abbraccia +fratelli +rom +accendete +ruspe +basta +prendere +qualsiasi +mezzo +pubblico +capirlo +invasione +riprendiamoci +città +massimo +oderzo +vicino +treviso +vogliono +riempire +paese +centinaia +clandestini +abitanti +scendono +piazza +massa +protestare +bravi +governo +invasione +risponde +così +pazzesco +capito +bene +sì +italia +vietato +spaventare +ladri +parole +definire +stato +prima +italiani +poi +sbarca +domattina +lampedusa +penso +così +sinistrati +vari +schifo +pensioni +oro +20mila +euro +mese +vanno +prendere +soldi +vedove +giù +mani +altrimenti +guerra +entri +casa +fare +male +me +famiglia +esci +piedi +problema +pavia +voleva +spaventare +ladri +entrati +colpi +piccone +terza +volta +bar +spara +colpi +aria +fucile +risultato +viene +denunciato +bastaaaaaaaaaa +versato +anni +contributi +schiatta +allora +pensione +danno +han +fatto +bingo +regalo +italiani +fornero +governi +pd +renzi +continua +fregarsene +molliamo +cazzata +radical +chic +giorno +visto +tanti +delinquenti +italiani +dovremmo +farne +arrivare +resto +mondo +stare +zitti +cos +testa +giornalisti +sinistra +secondo +affamano +disabili +poi +spendono +soldi +aereo +renzi +schifo +attenzione +amici +grilletto +facile +sparate +rapinatore +entra +casa +magari +vuole +solo +mela +vive +ricoveratelaaaa +bruno +ex +poliziotto +pensione +sparato +ladro +fatto +bene +ieri +oggi +domani +entri +casa +esci +steso +cazzi +democratici +antifascisti +fermati +furgone +carico +mazze +altri +regali +voto +zecche +spaventano +voto +forze +ordine +tante +persone +perbene +incontrate +oggi +cagliari +sempre +vivace +piena +inventiva +cultura +rom +provocavano +finti +incidenti +anziani +credere +urto +danneggiato +orologio +valore +chiedevano +euro +altro +risarcimento +grazie +simpatico +passatempo +zingari +banda +fatti +palle +oro +ville +auto +lusso +governo +assicurerei +personalmente +schifosi +puniti +meritano +cancellare +reato +eccesso +legittima +difesa +aiutare +poliziotti +carabinieri +certezza +pena +stacchio” +vuol +dire +tutte +cose +insieme +cartelle +esattoriali +dovute +ecco +verità +milioni +italiani +truffati +tartassati +equitalia +ruspa +stato +ladro +meno +euro +ora +nero +sopravvivere +lavoro +schiavitù +jobs +act +renzi +incapace +italia +servono +meno +tasse +resto +aria +fritta +benvenuti +repubblica +islamica +dewsbury +città +inglese +divenuta +culla +terroristi +simbolo +fallimento +multiculturalismo +forzato +resto +integrazione +vuoi +fare +ospiti +diventano +maggioranza +vogliono +cancellare +cultura +altri +paesi +europei +verificano +controllano +espellono +italia +renzalfano +invece +posto +sinistra +fessa +europa +vacanze +hotel +scuole +sci +ora +escursioni” +guida +musei +gratis +compreso +benvenuti +italia +renzi +boldrini +vale +italiani +prove +tecniche +integrazione +buona +visione +massacrano +piccoli +toccare +grandi +tasse +rapina +rivoluzione +fiscale +flat +tax +riparte +anno +fa +omicidio +david +raggi +sgozzato +strada +terni +marocchino +ubriaco +drogato +già +espulso +fedina +penale +lunga +pagine +eppure +ancora +libero +circolare +italia +qualità +altro +richiedente +asilo +dato +solo +anni +rito +abbreviato +salvato +ergastolo +vergogna +famiglia +raggi +denunciato +renzi +alfano +morto +governo +vigilato +ragione +nooo +basta +milioni +italiani +disoccupati +disposti +fare +qualsiasi +lavoro +posso +sentire +barzelletta +meno +male +immigrati +” +equitalia +fisco +preso +ostaggio +milioni +italiani +evasori +persone +soldi +pagare +cambieremo +stato +infame +cancelleremo +schifo +moriremo +schiavi +europa +piùliberipiùforti +adozioni +gay +utero +affitto +no +posto +renzi +renderei +veloci +meno +costose +adozioni +migliaia +coppie +aspettando +anni +arricchisce +clandestini +chiuda +domani +mattina +serve +italia +amici +soprattutto +amiche +cosa +rispondiamo +insegnante +islamica +bravo +renzuccio +fatto +giocattolino +nuovo +tanto +pagano +italiani +sinistri +bene +accogliere +onori +presidente +iran +vorrebbe +cancellare +israele +terra +qualche +benpensante +nemico +russia +ognuno +sceglie +amici +vuole +preferisco +stare +putin +sardegna +sicilia +trattate +colonie +affondano +sotto +colpi +roma +bruxelles +pensionato +pestato +derubato +colpa +allarme +casa +librandi +vaff +metro +monaco +richiedenti +asilo +prima +molestano +ragazza +poi +aggrediscono +uomini +accorsi +difenderla +avanti +così +posto +piace +accoglienza +costi +renzi +merkel +giovani +africani +molto +annoiati +fare +richiedente +asilo +spese +italiani +deve +essere +dura +passare +tempo +davano +simpaticamente +spaccio +droga +bel +calcio +poi +casa +zitta +ammazzo +ancora +volta +anziani +picchiati +derubati +abitazione +aggressore +straniero +concidenze +no +italia +buonista +entrano +cani +porci +nessuno +paga +telecamere +nascoste +schifo +spaccio +eroina +centro +storico +prato +belle +risorse +azione +girare +italia +serve +bella +ripulita +benvenuti +casa +rom +ammassi +rifiuti +bruciano +accoltellamenti +commerci +illegali +allacci +abusivi +corrente +tanto +pagano +italiani +tizio +video +problema +salvini +provoca +appena +responsabilità +governo +signor +rom +tranquillo +provochiamo +sgomberiamo +te +poi +strappo +proprio +capelli +testa +scaraventa +terra +bambino +ora +solo +arresti +domiciliari +maestra +pena +suggerireste +volevo +farla +finita +picchiata +sottomessa +ribellata +matrimonio +combinato +padre +storia +amani +ora +vive +libera +bimba +anni +girare +finché +islam +rispetta +donna +nessuna +integrazione +possibile +parla +jihadista +pentito +ecco +addestriamo +siria +compiere +attentati +europa +magari +arrivano +profughi +infiltrati +barconi +sottolineato +ieri +ministro +difesa +francese +unici +vedono +pericoli +renzi +alfano +avanza +po +tempo +ecco +intervista +altra +sera +virus +insieme +marine +pen +orgoglioso +essere +fianco +unione +sovietica +europea +riprendiamoci +chiavi +casa +prima +tetto +crolli +testa +reggio +emilia +bullizzata +minacciata +mandata +ospedale +coetanee +marocchine +porta +velo +considerano +impura +mezzo +sangue +poi +razzisti +italiani +problemi +disoccupazione +immigrazione +tasse +giovani +italiani +scappano +estero +trovare +lavoro +renzi +berlino +calare +braghe +dire +vero +problema +italia +europa +populismo +genio +curatelo +dimentichiamo +grazie +oriana +fatto +scritto +w +montagna +w +letame +abbasso +nazisti +rossi +coperto +statue +rappresentano +cultura +identità +imbarazzare +leader +iraniano +imbarazzato +italiani +myrta +renzi +ipocrita +ridicolo +accordo +girare +sindaco +tarvisio +confini +colabrodo +austria +dovremmo +sospendere +schengen +fare +controlli +rigidi +chiaro +altri +chiudono +profughi +arriveranno +sanno +altro +tempistiche +molto +lente +richiesta +asilo +addirittura +possono +fare +ricorso +tar +friuli +venezia +giulia +potrebbe +diventare +grande +campo +profughi +europa +avanti +posto +grazie +renzi +secondo +banca +svizzera +dobbiamo +riempirci +milioni +immigrati +n +bisogno +meglio +favorire +coppie +italiane +esempio +rendere +gratuiti +asili +nido +fino +anni +francia +riempire +qualche +culla +buongiorno +amici +razzisti +populisti +xenofobi +fascisti +leghisti +sessisti” +cosa +rispondiamo +sfigati +maiconsalvini +lepen” +amico +renzi +spiega +cambiare +regole +legittima +difesa +pericolo +bambini +pd +vergognano +dire +certe +cazzate +girare +adriano +prima +bimbo +piange +trieste +tante +famiglie +persone +perbene +arrendono +cambieremo +renzi +arrivando +saluto +confine +slovenia +chilometri +chilometri +sguarniti +indumenti +coperte +scarpe +sparsi +ovunque +grazie +governo +renzalfano +entra +esce +vuole +altro +controlli +frontiere +girare +antonio +operaio +metalmeccanico +tante +vittime +stramaledetta +legge +fornero +dovrà +arrivare +versare +quasi +anni +contributi +prima +poter +andare +pensione +governo +serio +cancellerebbe +subito +ingiustizia +renzino +altre +priorità +rispetto +libertà +scelta +chiunque +affrontare +propria +vita +sentimentale +però +bambino +almeno +momento +nasce +diritto +conoscere +mamma +altro +papà +presidente +boldrini +dico +anziché +adozioni +gay +te +naturali +preoccupati +legge +fornero +riguarda +te +culo +caldo +dimentichiamo +cancelleremo +parla +vittime +banditi +est +audi +gialla +tanta +rabbia +schifo +italia +vengono +tutelati +cittadini +perbene +devasteranno +” +ragione +soluzione +chiama +certezza +altro +pena +risorse +forze +ordine +leggi +giuste +difesa +proprietà +privata +riprova +buttare +chiave +settimana +comincia +arresto +marocchino +provincia +cosenza +commerciante +ambulante +permesso +soggiorno +secondo +polizia +aspirante +combattente +islamico +volontà +altro +andare +ammazzare +infedeli +siria +grazie +forze +ordine +domanda +altri +fatti +entrare +governo +inetti +intervenire +controllare +bloccare +espellere +subito +prima +troppo +tardi +secondi +ecco +opinione +renzi +schengen +controlli +frontiere +senatore +lega +stefano +candiani +insieme +nicola +porro +spiega +nobili +motivi +sostegno +profugo +verdini +poltronari +vari +riforme +renzi +istruttivo +metro +stoccolma +eroica +mamma +bimbi +sventa +furto +danni +anziana +ladro +prima +colpisce +poi +stomaco +poi +contento +torna +indietro +sputa +addosso +pare +altro +schifoso +richiedente +asilo +nordafricano +strano +vero +via +via +via +italia +europa +bisogno +gentaglia +renzi +contestato +oggi +mantova +tanto +striscione +ciocapiàt +ciarlatano +protesta +civilmente +medico +cuor +leone +preferito +rifugiarsi +teatro +poi +darsela +gambe +altroin +visita +privata +niente +male +diceva +voglio +scorta +scorta +gente +oltre +incapace +vigliacco +fonte +http +video +gelocal +it +gazzettadimantova +locale +contestazione +medico +famiglia +sanita +pubblica +rotoli +monteforte +irpino +provincia +avellino +carabinieri +sedare +rivolta +centinaio +presunti +profughi +lamentavano +accoglienza +italiana +gettando +via +cibo +finestre +meritano +stare +minuto +italia +primo +aereo +casa +dopo +anni +governo +pd +tante +idiozie +votate +europa +renzi +minimo +responsabilità +alzerebbe +testa +voterebbe +direttive +europee +uccidendo +no +rinnovo +altro +sanzioni +russia +via +legge +fornero +via +studi +settore +bruxelles +bene +chissenefrega +ruspa +profughi +accoglienza +me +baratro +giornata +francesco +perso +lavoro +troppo +vecchio +troppo +giovane +pensione +poi +casa +poi +famiglia +priorità +posto +renzi +restituire +lavoro +dignità +italiani +resto +viene +dopo +secondo +esponente +pd +europa +stata +conveniente +guarda +caso +crescere +paesi +tenuti +ben +stretta +moneta +riprendiamoci +sovranità +prima +troppo +tardi +ruspa +compagno +chicco +testa +detto +mister +spocchia +risposto +rime +sopporto +arroganza +fatto +bene +imam +spiega +donne +adatte +testimoni +tribunale +cervello +inferiore +scientifico +eh +buona +integrazione +consiglio +condivisione +video +bacheche +buoniste +magari +femministe +solo +giovani +costretti +andare +estero +cercare +lavoro +pensionati +scappano +albania +poter +sopravvivere +vedo +ora +mandare +casa +governo +odia +italiani +insieme +può +strasburgo +renzi +invece +fingere +litigare +europa +venga +riprendersi +almeno +miliardi +regalati +monti +letta +renzi +salvare +banche +altri +caro +renzi +vieni +riprenderti +soldi +italiani +diamo +mano +altrimenti +rimani +solo +chiacchierone +essere +accordo +grande +vittorio +sgarbi +fate +girare +intervento +completo +http +bit +1v6hmwy +europa +chiudono +frontiere +italia +entrano +cani +porci +vedo +ora +prendere +posto +incapaci +renzi +alfano +restituire +sovranità +tranquillità +gente +fornero +manderei +pane +acqua +isola +deserta +visto +rovinato +vita +milioni +italiani +farle +compagnia +parlamentare +pd +sostiene +praticamente +risolto +vergogna +pago +tasse +pagare +dipendenti +no +muore +azienda +imprenditore +ragione +autodifesa +stato +ladro +accordo +rom +vogliono +sgombero +piace +vivere +così +inutile +tentare +civilizzarci +furti +copertoni +bruciano +accoltellamenti +felicità +milanesi +abitano +zona +ruspa +risparmiatori +fregati +ferita +banca +etruria +ancora +aperta +vogliono +mettere +mani +piccole +banche +locali +ancora +funzionano +opporremo +mezzi +anziché +occuparsi +altro +adozioni +gay +cittadinanza +facile +figli +immigrati +renzi +pensi +risarcire +decine +migliaia +italiani +truffati +dipendenti +pubblici +timbrano +cartellino +poi +vanno +fare +spesa +casa +subito +azienda +privata +verrebbero +cacciati +pedate +ore +milioni +ragazzi +ventenni +assumere +posto +cosa +vuol +dire +gestire +attività +commerciale +resistere +tasse +ingiuste +burocrazia +spiega +minuti +carlo +proprietario +anni +bar +milano +girare +sinistri +parlano +vanvera +evasione +magari +campano +grazie +stato +ladro +timbri +vai +mare +licenziare +subito +milioni +italiani +pagherebbero +oro +poter +timbrare +cartellino +giorni +angolo +buonista” +ecco +video +tentativo +fallito +integrazione +baudo +donna +islamica +mah +commenti +ascoltate +lezioni +imam +tivù +picchiare +donna +senza +lasciare +segni +magari +bastone +piccolo +bisogno +essere +educata +contento +precisa +rispetto +altro +donna +islam +evidente +punizione +corporale +permessa +solo +rifiuta +andare +letto +marito +capito +bene +secondo +me +meriterebbe +bell +insegnamento +signore +pensano +base +tanti +calci +donna +devi +coprirti +no +provochi +capito +amiche +mettete +velo +poi +lamentatevi +qualcuno +molesta +violenze +sessuali +colonia +capodanno +intervistati +sentito +parlare +rispetti +donne +cambi +idea +adegui +cultura +te +torni +paese +giuseppe +terremotato +emiliano +combatte +anni +rientrare +casa +cavillo +burocratico +negano +fondi +ricostruzione +dispiacere +ammala +muore +moglie +anni +dovrà +continuare +vivere +container +stato +tortura +modo +cittadini +me +fa +schifo +difendersi +tasse +folli +ingiuste +imprenditore +prima +paga +dipendenti +fornitori +poi +fisco +evasione +sopravvivenza +stato +ladro +serve +subito +rivoluzione +fiscale +flat +tax +pagare +meno +pagare +negano +permesso +soggiorno +protesta +gira +nudo +palermo +polizia +fermato +rispedirei +volo +paese +chissà +là +gira +nudo +fine +fa +signore +ospita +proprio +agriturismo +quarantina +profughi +minorenni +prima +nega +spazientito +poi +ammette +ricevere +euro +giorno +ogni +ragazzo +quasi +mila +euro +mese +soldi +altro +pubblici +applausi +facile +essere +accoglienti +quando +pagare +conto +italiani +poi +tradire +paese +vergognati +pazzesco +presunti +profughi +maschi +adulti +solo +appartamento +vicine +casa +arrabbiate +proprio +davanti +scuola +elementare +solita +cooperativa +guadagna +basta +integrazione +può +essere +mandi +profughi +paese +abitanti +governo +geni +caserta +colonia +nigeriani +presunti +profughi +chiedono +aiuto +psicologico +ringraziamento +cosa +tentano +violentare +psicologa +rispedirli +subito +casa +calci +guardate +giornalista +sinistra +ride +troppo +colta +informarsi +internet +forse +abbassasse +livello +scoprirebbe +castrazione +chimica +stupratori +pedofili +applicata +altro +anni +tanti +civilissimi +paesi +mondo +me +mette +mani +addosso +bambino +donna +recuperabile +solo +curabile +lega +molla +clandestino +reato +renzi +avvisato +profughi +est +mantenuti +spese +italiani +centro +accoglienza +arrestati +aver +massacrato +botte +accoltellato +tabaccaio +torino +paese +normale +delinquenti +riceverebbero +pena +esemplare +italia +matteo +porte +aperte +renzi +invece +cosa +rischiano +cosa +posto +renzi +rimettere +soldi +tasche +cittadini +partiamo +proposte +concrete +risarcire +milioni +italiani +truffati +tartassati +equitalia +banche +studi +settore +legge +fornero +accordo +fate +girare +milano +sede +pane +quotidiano +associazione +distribuisce +gratuitamente +beni +alimentari +persone +difficoltà +sempre +italiani +anziani +famiglie +bimbi +fila +emergenza +resto +viene +dopo +clandestini +italiani +niente +slogan +cristina +fulvio +provando +pelle +girare +quest +italia +ribaltiamo +corteo +islamico +vie +bolzano +boldrini +piaciuto +sicuramente +messaggio +siria +prendendo +casa +europa +particolarmente +stupidi +sapete +distinguere +bene +male +spazzatura +terroristi +isis +altro +combattendo +invece +fate +entrare +pagherete +prezzo +errore +pagherete +pagheranno +figli +sentite +tranquilli +renzi +alfano +comando +fonte +giornale +https +www +youtube +com +watch +v +z9tx +t8uhaq +vedere +renzi +governanti +europei +fare +finta +niente +mentre +orde +fanatici +islamici +mettono +pericolo +libertà +aggrediscono +centinaia +donne +fa +paura +tempo +silenzio +tace +altro +complice +controllare +espellere +respingere +porto +rispetto +porta +rispetto +gente +merita +essere +ospitata +città +girare +parlano +donne +aggredite +sera +capodanno +germania +centinaia +immigrati +organizzati +altro +integrazione +bestie +castrazione +chimica +galera +casa +capodanno +bande +nordafricani +molestano +violentano +donne +mai +sentito +merkel +male +europa +renzi +servetto +entrambi +complici +accadendo +espulsioni +viene +delinquere +danneggia +tanti +immigrati +perbene +mai +troppo +poche +buon +amici +auguri +serenità +lavoro +sicurezza +futuro +figli +dipende +metto +solo +piccola +parte +tanti +limiti +difetti +tanti +renzi +mandiamo +casa +insieme +può +auguri +camerieri +cuochi +baristi +ristoratori +albergatori +tasse +basse +turismo +italia +volerebbe +oggi +ingrasso +chilo +mascarpone +buon +natale +amici +augurio +particolare +oggi +lavora +medici +infermieri +autisti +farmacisti +taxisti +forze +ordine +cuochi +volontari +soccorso +dimenticato +qualcuno +messaggio +amici +cuore +buon +natale +amico +tiziano +ultimi +artigiani +cesellatori +milano +davanti +bottega +alzaia +naviglio +grande +chiedo +sentite +ripresa +economica +parla +renzi +lascio +immaginare +risposta +economia +banche +lavoro +pensioni +immigrazione +lega +anno +riconquista +sovranità +nazionale +mentre +londra +voteranno +uscire +unione +europea +contemporanea +altro +piazze +tutta +italia +nord +sud +chiederemo +milioni +italiani +vogliono +rimanere +schiavi +europa +vogliono +rialzare +testa +state +meno +minuti +sbugiardare +inutili +ipocriti +governano +europa +pensano +meno +disoccupati +piace +diffondi +rottamatore +vecchi +politici +rottamatore +anziani +risparmiatori +fine +misera +renzi +comunque +oggi +pur +minoranza +lega +dato +battaglia +roma +strasburgo +prendetevi +minuti +ascoltare +storia +adriano +anno +fa +banditi +rumeni +entrati +officina +massacrato +sprangate +padre +settantenne +rimasto +purtroppo +completamente +invalido +altro +dopo +aggressione +bestie +pur +identificate +magistrati +mai +state +arrestate +giustizia +fa +schifo +cambieremo +adriano +famiglia +oggi +renzi +dice +strumentalizza +morte +persone +fa +schifo +guardate +cosa +solo +mesi +fa +cosí +definireste +risparmiatori +fregati +rovinati +governo +protestano +firenze +renzi +nemmeno +coraggio +incontrarli +oltre +responsabile +disastro +vigliacco +auguri +cucciola +dovuto +fare +ammucchiata +insieme +sinistra +finta +destra +socialisti +repubblicani +banchieri +giornali +pen +ormai +riscossa +persone +perbene +ferma +nessuno +potranno +rallentarla +bloccarla +grazie +marine +consigli +telefonici +terroristi +islamici +arrestati +conterranei” +vuoi +vivere +italia +meglio +vada +bolzano +pagano +casa +lavori +lavoro +sociale +altro +basta +fatto +mullah +kawa +pagato +affitto +casa +soltanto +mesi +dopodiché +pensato +servizi +sociali +lavora +lavora +uguale +può +starsene +tranquillamente +casa +tanto +paga +comune +passano +pure +mensile +moglie +figli +prendono +fessi +occorre +italiani +ricordino +qual +storia +cultura +tradizione +senza +orgoglio +radici +rimarremo +indifesi +fronte +tentativi +sostituzione +popolo +corso +posizione +prudente +renzi +isis +iniziamo +chiamare +cose +nome +fare +nulla +sperando +tagliagole +islamici +colpiscano +me +vigliaccheria +provvedimenti +renzi +aiutato +grandi +peccato +oltre +imprese +italiane +meno +dipendenti +milioni +autonomi +lavorino +soli +lira +aiuto +solo +tasse +calcio +sedere +italiana +convertita +islam +frequentatrice +moschea +centocelle +roma +succedendo +francia +cercata +islamofobo +dico +sento +tranquillo +certa +gente +circolazione +folli +sanzioni +economiche +russia +fatto +chiudere +imprese +solo +emilia +romagna +grazie +renzi +grazie +obama +grazie +europa +via +sanzioni +subito +là +barriere +ideologiche +destra +sinistra +roba +vecchia +impegniamoci +insieme +liberarci +ripartire +grazie +mauro +primo +barcone +signor +alì +babà +sedicente +principe +islamico +pensano +toglie +soldati +milano +aiuta +terroristi +giù +mani +reggimento +santa +barbara +ragazzi +garantiscono +sicurezza +dobbiamo +trattarle +così +donna +permesso +dire +no +” +magari +bene +picchiarla +accoltellarla +accaduto +bergamo +ascolta +minuti +schifosa +follia +bestialità +imam +berlino +finché +islam +moschee +nemmeno +metro +quadro +califfo +porte +libia +europa +dà +miliardi +aiuta +turchia +combatte +unione +sovietica +europea +abbattuta +italia +renzalfano +brennero +ciascuno +entra +esce +pare +credo +muri +fili +spinati +credo +controlli +necessario +può +sospendere +schengen +prevenire +meglio +curare +sicurezza +sicurezza +sicurezza +parlano +prova +fatti +cosa +votano +pd +stelle +ascolta +condividi +girare +verità +smaschera +chiacchieroni +prendetevi +minuti +ascoltare +diffondere +particolare +qualche +bacheca +buonista +procuratore +repubblica +lecce +barcone +via +tranquilla +entrare +unione +europea +altro +conto +arrivare +aeroporto +altro +arrivare +confusi +persone +fatelo +sapere +renzi +idea +terroristi +arrivino +mescolati +profughi +sghignazza +incapace +pericoloso +viva +presepe +viva +crozza +ragazzi +bisogno +mentre +renzi +dorme +istituti +scolastici +cadono +pezzi +segnalateci +disservizi +disagi +scuole +incubo +buona +scuola +vera +incomincia +professore +fa +politica +faziosa +classe +segnalacelo +renzi +banda +incapaci +contesto +economico +internazionale +favorevolissimo +petrolio +basso +euro +minimi +bce +riempie +mercati +miliardi +eppure +ostaggi +altro +zero +virgola +chiedo +chiedo +figli +futuro +situazione +no +cosa +liberare +economia +via +legge +fornero +via +studi +settore +soprattutto +rivoluzione +fiscale +aliquota +unica +giusta +viene +fatto +italia +forse +qualcuno +pagato +difendere +grandi +farci +ripartire +fare +adesso +carceri +italiane +nord +sud +diventate +luogo +coltiva +terrorismo +52mila +detenuti +gran +parte +stranieri +potrebbero +portare +conseguenze +imprevedibili +altro +possiamo +contare +solo +coraggio +professionalità +uomini +polizia +penitenziaria +occorrono +agenti +risorse +strutture +soprattutto +ripristiniamo +certezza +pena +mandiamo +scontare +galera +casa +migliaia +delinquenti +stranieri +manteniamo +carceri +facciamolo +subito +prima +troppo +tardi +fate +girare +minuti +ecco +diciamo +no +turchia +europa +compra +petrolio +isis +riconosce +genocidio +milione +armeni +distrutto +chiese +sterminato +cristiani +altro +occupa +quarant +anni +stato +membro +ue +cipro +riconosce +giuridicamente +culto +chiesa +cattolica +ricevuto +miliardi +euro +europa +soldi +italiani +fare +concorrenza +sleale +imprese +minaccia +inviarci +milioni +profughi +cediamo +ricatti +europa +renzi +sveglino +invece +sanzionare +russia +dovrebbero +sanzionare +turchia +cancellare +natale +storia +mai +vescovo +padova +paura +nessuno +deve +averne +cantiamo +celebriamo +festeggiamo +difendiamo +tradizioni +orgogliosi +storia +costruire +futuro +migliore +risorse +azione +roma +giornalista +indagare +finge +parcheggiatrice +abusiva +mandata +ospedale +ruspa +insomma +rimesso +posto +gesù +bambino +ribadito +canti +natale +danno +fastidio +nessuno +bambini +insegnanti +genitori +meritano +scuola +migliore +scuole +figli +messe +aule +blindate +sbarre +evitare +furti +vandalismi +pezzo +tetto +crollato +tempo +abbandonato +cortile +donna +islamicamente +deve +chiedere +permesso +poter +uscire +dice +signore +fine +servizio +alcuni +lecito +sottomettere +segregare +picchiare +idee +possibile +nessuna +integrazione +supermercato +milano +limoni +clementine +cachi +peperoni +pomodori +arriva +estero +pare +normale +bruxelles +batto +purtroppo +quasi +solo +difendere +made +italy +negozio +compro +solo +prodotti +italiani +fini +difende +immigrati +albergo +insulta +studente +contesta +traditore +lunedì +mezzogiorno +scuola +via +milano +rozzano +presepi +bimbi +portiamo +signor +preside +giù +ragione +può +essere +accoglienza +manca +orgoglio +radici +storia +difeso +famiglia +risposto +fuoco +minacce +ringrazio +dio +essere +stato +armato +no +ammazzato +minuti +tempo +ascoltate +parole +piene +buon +senso +rodolfo +corazzo +sera +incontrerò +rodano +vicino +milano +imam +pericolo +salvini +italia +arriva +isis +ricoverateloooo +immigrazione +clandestina +business +miliardi +euro +arriva +finanziare +terrorismo +ora +dice +sole +ore +diciamo +po +tempo +bene +quand +premiata +ditta +altro +renzi +alfano +prefetti +affittacamere +smetterà +riempire +presunti +profughi +comuni +volte +senza +nemmeno +avvertire +sindaci +insulto +confronti +italiani +immigrati +perbene +resort +piscina +sognano +guarda +servizio +condizioni +lavoro +polizia +guarda +reazioni +signor +prefetto +mario +morcone +già +candidato +sindaco +pd +vendola +napoli +problema +altro +uomini +rischino +vita +mezzo +strada +euro +mese +giubbotto +antiproiettile +scaduto +inadeguato +pistola +me +dovrebbe +dimettere +strasburgo +appena +intervenuto +presidente +mattarella +detto +chiudere +controllare +frontiere +europee +serve +no +certo +entrare +altri +milioni +immigrati +cedo +mattarella +cambio +mezzo +putin +aspetto +sera +rai +ballarò +duetto +grande +mauro +corona +follia +signora +convertita +islam +albergatrice +guadagna +soldi +palate +immigrati +ricordate +dice +donne +italiane +escono +minigonna +tacchi +vorranno +farsi +violentare +schifo +taci +meglio +vergognati +giusto +uccidere +francesi +allah +sì +altro +controlli +governo +posto +renzi +soggetti +manteniamo +soldi +espellerei +subito +scuola +provincia +bergamo +dirigenza +chiesto +banda +suonare +adeste +fideles +troppo +cristiana +mentre +bresciano +vorrebbero +festeggiasse +santa +lucia +altro +stesso +motivo +appello +mamme +papà +insegnanti +dirigenti +scolastici +accogliere +dobbiamo +essere +orgogliosi +radici +fa +presepe +canti +natale +nasce +gesù +bambino +dimentica +tradizioni +storia +complice +matti +ascoltate +signora +convertita +islam +albergo +guadagnato +quasi +milione +euro +ospitando +clandestini +migliaia +italiani +dormono +macchina +soldi +finti +profughi +me +vergogna +poverini +centri +sociali +volevano +soltanto +bloccare +strada +poverino +bravo +ragazzo +arrestato +polizia +salvini +diventa +presidente +isis +arriverà +italia +dice +rappresentante +islamico +vuole +spaventare +decidere +italiani +rispondete +video +sgozzamenti +spinto +arruolarmi +isis +preferito +morire +essere +catturato +allah +unico +onnipotente +quando +muori +paradiso +vergini +altro +vengono +sgozzati +bruciati +vivi +meritano +miscredenti +destino +bambine +schiave +sessuali +oggetti +bisogna +godere +prima +convertano +pacifinti +vigliacchi +ipocriti +preferiscono +mettere +testa +sotto +sabbia +dico +no +nuovo +medioevo +isis +estirpato +terra +evitare +piangere +domani +necessario +fare +controllo +quartieri +popolari +nord +sud +espellere +entrati +italia +diritto +bastano +minuti +video +aprire +occhi +ecco +succede +città +europee +islam +diventato +maggioranza +mohamed +nome +diffuso +bambini +nascono +sharia +altro +prende +posto +democrazia +girare +verità +momenti +vita +tacere +diventa +colpa +parlare +diventa +obbligo +fonte +http +video +ilmessaggero +it +primopiano +occidentali +preparino +onda +sharia +islam +documentario +choc +quartiere +islamico +bruxelles +shtml +sapete +meno +mese +fa +tal +mohamed +ahmed +tayyeb +invitato +signora +boldrini +doveva +tenere +lezione +magistrale +camera +deputati +personaggio +teorizza +israele +debba +essere +altro +annientata +kamikaze +palestinesi +martiri +donne +possano +essere +picchiate +riusciti +insieme +altri +bloccare +follia +inviti +soggetto +genere +devi +vergognare +uccidere +persone +allah +bene +basta +minuto +telecamere +nascoste +capire +islam +religione +altre +qualcuno +ancora +dubbi +occorre +controllare +confini +bloccare +sbarchi +problema +terroristi +possono +arrivare +barconi +posto +fidate +renzi +sentite +sicuro +altro +chiacchiere +renzi +inutile +alfano +tagliagole +isis +servono +maniere +forti +fortuna +putin +cosa +posto +renzi +appoggerei +forze +intervenendo +militarmente +insieme +toglierei +sanzioni +demenziali +russia +alleata +guerra +terrore +altro +mettendole +arabia +saudita +finanzia +isis +attraverso +petrolio +qualcuno +sano +mente +pensa +possa +dialogare +tagliagole +islamici +voglio +lasciare +figli +futuro +paura +schiavitù +utilissimo +incontro +immigrazione +tasse +sicurezza +lavoro +lega +ambasciatori +danimarca +svezia +norvegia +finlandia +altra +europa +possibile +migliaia +fischi +morti +parigi +grida +allah +grande +ecco +islam +moderato +turchia +stato +islamico +fa +viaggiare +verso +europa +avanti +indietro +anno +crisi +rifugiati +rende +facile +società +terroristi +impegnati +invaderci +altro +diciamo +quindi +arrivederci +epoca +confini +aperti +articoli +entusiasti +immigrazione +può +risolvere +deficit +demografico +europa +ricorda +qualcosa +no +parole +lega +prof +ferguson +docente +storia +harvard +tesi +paura +buon +senso +insieme +figli +cresceranno +po +meno +paura +iononhopaura +parigi +no +sentito +parlare +uccidere +nome +religione +può +fare +qualche +volta +sì +italiani +infedeli +spirito +integrazione +emerge +interviste +allora +molto +lavoro +fare +charlie +hebdo +me +giusto +bravi +fatto +bene +finito +parole +amici +basta +piangere +vittime +basta +dirsi +parigini +basta +minuto +silenzio +dobbiamo +fare +controllare +frontiere +espellere +clandestini +verificare +centri +islamici +presenti +italia +altro +annientare +maniere +forti +tagliagole +isis +subito +ora +momenti +stare +fermi +diventa +colpa +dichiarato +guerra +salvini +preoccupazione +sicurezza +italiani +può +rimanere +mano +inutile +incapace +alfano +vergognati +poi +dimettiti +alfanodimettiti +vergogna +alfanodimettiti +dovrebbe +difendere +italiani +prima +denuncio +poi +alfanodimettiti +ascoltando +salvini +sembra +percepire +dispiacere +attentati +altro +parigi +avvenuti +italia +così +consentirgli +fare +caciara +guadagnare +voti +incredibilmente +detto +rai +incapace +alfano +basta +dice +vogliamo +crocifisso +presepe +scuole” +spettano +medico +palestra +soli +islamici” +italia +riprendiamoci +orgoglio +storia +rispetta +generosità +italiani +pretende +cambiare +cultura +può +tornare +paese +fare +subito +sostegno +militare +russia +annientare +isis +controllo +frontiere +blocco +sbarchi +espulsione +clandestini +verifica +tappeto +tutte +occupazioni +abusive +altro +quartieri +popolari +milano +palermo +dichiarato +guerra +guerra +risponde +chiacchiere +renzi +inutile +alfano +iononhopaura +silenzio +complice +terrorismo +girare +verità +grazie +oriana +iononhopaura +preghiera +morti +innocenti +parigi +poi +chiusura +frontiere +controllo +tappeto +tutte +realtà +islamiche +presenti +italia +bloccare +partenze +sbarchi +attaccare +siria +libia +tagliagole +terroristi +islamici +vanno +eliminati +forza +bene +crisi +finita +renzi +vada +raccontare +salvo +bimbi +famiglia +quasi +colleghi +michelin +perderanno +posto +lavoro +speranze +futuro +opposizione +posso +aiutare +lavoratori +renzi +batti +colpo +oltre +danno +beffa +antagonisti +fermati +bologna +già +liberi +ascoltate +agente +polizia +gente +denunciata +già +volte +mai +portata +processo +passa +messaggio +altro +goda +impunità +servirebbe +arresto +obbligatorio +reati +commessi +durante +manifestazioni +incensurati +pensate +sindaci +vicentini +stati +segnalati +prefettura +essersi +tolti +fascia +tricolore +funerale +ermes +mattielli +rigattiere +morto +infarto +dopo +condanna +anni +mesi +aver +altro +ferito +ladri +tratta +primi +cittadini +velo +astico +cogollo +cengio +laghi +albettone +sindaci +meno +minuti +scopri +verità +truffa +latte +voce +spacca +schiena +giorni +produrlo +aiutiamo +allevatori +girare +rancore +odio +passato +bologna +solo +idee +futuro +insieme +riuniamo +tutte +persone +perbene +oggi +andrebbe +votare +renzi +finita +recco +liguria +cuore +aula +bruxelles +difendere +made +italy +massacrato +europa +rieti +vita +reale +passeggeri +autobus +protestano +alcuni +immigrati +vogliono +pagare +biglietto +reagiscono +insulti +vaffa +integrazione +piace +renzi +boldrini +altro +italia +vogliamo +rispetto +regole +convivenza +civile +bene +torna +casa +mattina +pieve +emanuele +vicino +milano +sostegno +allevatori +difesa +latte +italiano +eccellenza +produzioni +finti +prodotti +made +italy +mangino +signori +multinazionali +italia +renzi +poi +italia +pensiamo +italiani +vengono +prima +sbarca +domani +mattina +chiedere +tanto +dedicato +potuto +esserci +cuore +bologna +splendida +giornata +libertà +sempre +convinto +possiamo +fare +insieme +nord +sud +batteremo +renzi +torneremo +grandi +guardate +bravi +ragazzi +fermati +domenica +bologna +violenza +resistenza +poliziotti +bestemmie +sputi +prima +lancia +petardi +volto +coperto +poi +quando +tentano +ammanettarlo +minaccia +denunciare +agenti +violenza +naturalmente +già +libero +mandereste +lavorare +così +aspetto +sera +rai +interessante +allevatori +consumiamo +solo +made +italy +europa +vuole +distruggere +produzioni +piazza +bologna +parte +rivoluzione +persone +perbene +arrenderò +fino +paese +tornerà +essere +paese +bello +mondo +poliziotti +prende +bastonate +grazie +bologna +piazza +persone +perbene +porterò +sempre +cuore +governo +tasse +invasione +mandiamo +casa +insieme +può +liberiamoci +ripartiamo +bologna +silvio +berlusconi +giorgia +meloni +liberiamoci +oggi +mare +persone +perbene +invaderà +pacificamente +piazza +maggiore +bologna +riprendiamoci +futuro +renzuccio +arriviamo +liberiamoci +www +liberiamoci +com +meno +domani +pronti +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +stasera +pizza +girare +soli +minuti +guarda +cosa +succedendo +mosca +colpa +folli +sanzioni +russia +solo +imbecilli +qualcuno +pagato +danneggiare +italia +qua +domenica +bologna +potete +venire +tranquilli +amici +meno +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +abbatteremo +stato +schifoso +protegge +delinquenti +processa +difende +morte +vana +pensiero +preghiera +te +buon +viaggio +ermes +legge +fornero +danneggiando +solo +sfiga +essere +nati +tiene +fuori +mondo +lavoro +milione +giovani +rubando +futuro +intera +generazione +quando +governo +assicuro +schifezza +cancelleremo +signora +fornero +rideremo +altro +genio +governo +difende +studi +settore +dica +partita +iva +tasca +vengono +ogni +giorno +massacrati +stato +ladro +pubblico +apprezzato +domenica +bologna +liberiamoci +parassiti +meno +bologna +pronti +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +carne +fa +male +caffè +fa +male +latte +fa +male +basta +allarmismi +rotto +palle +costano +migliaia +posti +lavoro +cibo +prodotti +buoni +mondo +compriamo +consumiamo +italiano +basta +dica +vanno +altri +servi +domenica +giornata +futuro +costruzione +lavoro +sicurezza +libertà +invadiamo +pacificamente +bologna +www +liberiamoci +com +bresciano +bisogno +mano +datemi +qualcosa +senza +lavoro +senza +casa +chiede +elemosina +vigili +multano +mentre +fianco +parcheggiatori +abusivi +stranieri +agiscono +indisturbati +schifo +meno +bologna +vedere +tutta +italia +vogliamo +morire +renziani +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +ascoltate +sig +librandi +porcheria +legge +fornero +piace +tanto +mandiamo +lavorare +miniera +fino +anni +benvenuti +roccaforte +clan +calabrese +zingari +fuori +casa +popolare +dentro +violini +rolex +vasche +idromassaggio +armi +cocaina +oltre +sobria +ferrari +aston +martin +auto +james +bond +ruspaaa +meno +bologna +vedere +tutta +italia +vogliamo +morire +renziani +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +vercelli +oggi +presunti +profughi +protestavano +wi +fi +latina +famiglia +mamma +papà +ottantenni +invalidi +senza +pensione +sotto +sfratto +arrivata +vendersi +fedi +nuziali +fa +commuovere +incazzare +condividi +mollo +italia +riprendiamo +monti +letta +renzi +aperto +porte +20mila +delinquenti +indulti +svuotacarceri +spazio +galera +costruisci +nuove +carceri +detto +bene +rom +conoscete +qualche +cittadino +italiano +pensa +attenzione +condividete +video +pagina +boldrini +egiziano +poligamo +teneva +nascosta +moglie +figli +piccoli +garage +insaputa +altra +moglie +evviva +italia +multiculturale +piace +tanto +sinistra +tanti +taxisti +fermano +giro +milano +roma +tanti +piazza +bologna +domenica +prossima +chiedere +legalità +contrasto +abusivismo +controlli +strumenti +altro +proteggersi +città +sempre +insicure +innovazione +tecnologica +tutelando +lavoro +piccoli +aggressione +multinazionali +straniere +diffondi +amici +taxisti +liberiamoci +ripartiamo +www +liberiamoci +com +presento +assessore +urlante +occupi +problemi +napoli +meno +urla +risposte +umiltà +accordo +meno +bologna +vedere +tutta +italia +vogliamo +morire +renziani +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +bravo +giornalista +meno +bologna +occorre +esserci +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +gioielliere +roberto +zancan +stacchio +salvato +vita +breve +intervista +vale +pena +guardarla +condividerla +legittima +difesa +sempre +mai +eccessiva +serve +evitare +funerale +viene +aggredito +pensiero +preghiera +fatta +certi +proprio +giù +tanti +soggetti +apolitici +apartitici +deciso +essere +bologna +novembre +bloccare +governo +male +italia +respirare +ripartire +prima +altri +governo +vorrei +dovrebbe +pensare +italiani +invalidi +civili +famiglie +priorità +aggiornamento +nomenclatore +tariffario +miglioramento +sistema +altro +indennizzi +lavoro +illegittimità +nuovo +regolamento +isee +liberiamoci +ripartiamo +www +liberiamoci +com +definireste +governo +solo +muove +dito +cambiare +infame +legge +fornero +votata +pd +renzi +volte +fa +finta +dimenticarsene +umilia +continuamente +propri +altro +pensionati +lavorato +costruito +soldi +sbarca +domani +mattina +però +sempre +pronto +cassa +liberiamoci +politici +odiano +italiani +prima +tardi +meno +bologna +occorre +esserci +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +domenica +novembre +bologna +piazza +maggiore +occorre +esserci +cuore +sistema +cgil +coop +rosse +pci +pds +pd +bersani +renzi +via +via +liberiamoci +ripartiamo +vieni +vedere +tutta +italia +vogliamo +morire +renziani +www +liberiamoci +com +preferisco +pensionato +testimonia +innocenza +piuttosto +bel +funerale +stato +condividi +molliamo +francesco +lasceremo +solo +problemi +risolvono +palle +astronomiche +renzi +interventi +concreti +controllare +limitare +immigrazione +pretendendo +rispetto +regole +accordo +ladri +gambizzano +benzinaio +giudice +condanna +solo +lesioni +tornano +liberi +italia +contrario +raddrizziamo +credo +liberiamoci +meno +bologna +mareee +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +gente +brucia +viva +essere +umano +crede +altro +dio +nessun +dialogo +solo +maniere +forti +tagliagole +isis +troveremo +pianerottolo +casa +penso +così +iniziato +processo +omicidio +pietro +raccagni +aggredito +anno +scorso +casa +notte +banda +ladri +albanesi +morto +ospedale +dopo +giorni +agonia +ergastolo +bestie +altro +buttino +via +chiave +normale +fa +schifo +stato +invece +garantire +certezza +pena +concede +delinquenti +indulti +depenalizzazione +reati +svuotacarceri +abbraccio +signora +federica +ragazza +video +difende +clandestini +vendono +abusivamente +merce +magari +contraffatta +preferisco +difendere +milioni +italiani +disoccupati +commercianti +regolari +meno +bologna +liberiamoci +ripartiamo +info +www +liberiamoci +com +renzuccio +arriviamo +amici +vedo +ora +incontrarvi +tantissimi +bologna +purtroppo +ascolta +condividi +parole +carla +proprietaria +tabaccheria +vittima +varie +rapine +dedichiamo +parla +vanvera +eccesso +legittima +difesa +senza +capire +cosa +vuol +dire +avere +arma +puntata +presunti +profughi +vicenza +sempre +maschi +giovani +forma +lamentano +trattamento +renzi +alfano +dovevano +rispedirne +fuori +italia +almeno +giorno +grazie +magnifici +accordi +europa +tutte +palle +cambiato +nulla +piace +crocifisso +italia +sbagli +paese +torni +casa +cultura +modo +essere +serve +rispetto +giovane +fatima +dice +essere +accordo +fa +piacere +meno +bologna +aspetto +te +liberiamoci +ripartiamo +info +www +liberiamoci +com +liberiamoci +renzuccio +arriviamo +guarda +condividi +renzi +bugiardo +complice +dopo +mesi +chiacchiere +oggi +scopre +europa +sforzo +accogliere +settecento +immigrati +italia +sbarcati +trecentomila +anni +secondo +renzi +risolto +moglie +sindaco +pd +dice +facebook +bologna +dovrei +essere +accolto +tortellini +ripieno +ghisa +cosa +rispondereste +suggeritemi +qualche +altro +personaggio +novembre +bologna +pensionato +deve +decidere +fare +spesa +giorno +pagare +canone +rai +dubbi +spesa +vivere +pensione +purtroppo +ancora +arrivato +causa +governi +pd +italia +normale +pensi +prima +cittadini +vissuto +lavorato +costruito +altro +priorità +cancellazione +infame +legge +fornero +restituzione +rivalutazione +istat +adeguamento +assegni +familiari +accordo +diffondi +liberiamoci +ripartiamo +www +liberiamoci +com +signore +schifa +lega +dicendo +rappresenta +italiani +fenomenoooo +rappresenti +dite +risposto +bene +tante +adesioni +infermieri +tecnici +sanitari +novembre +punti +adeguamento +organici +rinnovo +contratto +lavoro +meno +abusivismo +sicurezza +amici +altro +svolgono +professioni +condividi +cartello +liberiamoci +ripartiamo +www +liberiamoci +com +accordo +paul +condividete +fatelo +vedere +boldrini +cancellare +reato +eccesso +legittima +difesa +aiutare +polizia +carabinieri +basta +svuotacarceri +tanti +applausi +pubblico +studio +canale +qualche +sinistro +buonista +arrabbierà +dite +pochi +parlano +vittime +legge +fornero +giovani +secondo +confesercenti +milione +mai +entrati +mondo +lavoro +molti +cercano +nemmeno +andati +altro +estero +trovarlo +liberiamoci +governo +spende +miliardi +sbarca +trova +euro +ragazzi +convinto +italia +certezza +pena +divisa +venisse +data +possibilità +fare +bene +proprio +lavoro +molti +problemi +meno +accordo +attenti +professioniste +borseggio +pisa +indovinate +zing +cioè +nomadi +minorenni +vengono +fermate +giorno +dopo +già +posto +lavoro +condividete +video +bacheca +amici +buonisti +sinistra +tanto +diranno +bufala +lega +domenica +novembre +bologna +bisogno +te +liberiamoci +ripartiamo +www +liberiamoci +com +anziani +selvaggiamente +picchiati +uccisi +alcuni +morti +conseguenze +aggressione +subita +quando +vedo +cose +vado +bestia +paese +normale +difendere +persone +fragili +dovrebbe +essere +priorità +numero +certamente +quando +libereremo +renzi +andremo +governo +mattina +roma +assemblea +carabinieri +unac +stato +diritto +vai +strada +rischiare +vita +solo +istituzioni +nessuno +difende +magari +indagano +aver +fatto +lavoro +riportiamo +rispetto +tutela +indossa +divisa +politici +bravi +alcuni +idioti +basterebbe +dare +anni +reato +genere +viene +rubare +casa +furto +stupro +psicologico +pieni +coglioni +francesco +te +pianto +troppi +tabaccai +gioiellieri +tassisti +anziani +palagonia +massacrati +botte +violentati +francesco +difeso +fatto +bene +punto +pubblico +matrix +sembra +pensarla +così +condividi +bacheca +qualche +benpensante +sinistra +oggi +tante +città +presidi +davanti +tribunali +lega +difende +milano +mobilitiamoci +liberiamoci +giustizia +ingiusta +aspetto +milano +tribunale +altro +corso +porta +vittoria +torino +tribunale +corso +vittorio +emanuele +vicenza +tribunale +via +ettore +gallo +padova +tribunale +via +tommaseo +treviso +tribunale +via +verdi +rovigo +tribunale +via +verdi +belluno +via +segato +verona +via +zappatore +genova +largo +xii +ottobre +trieste +tribunale +foro +ulpiano +udine +tribunale +largo +ospedale +vecchio +pordenone +tribunale +viale +franco +martelli +gorizia +tribunale +via +nazario +sauro +bolzano +tribunale +piazza +tribunale +altro +conchisidifende +sicuro +maggioranza +italiani +pensa +voglia +condividi +giovedì +ottobre +tante +città +presidi +davanti +tribunali +lega +difende +milano +mobilitiamoci +liberiamoci +giustizia +ingiusta +aspetto +milano +altro +tribunale +corso +porta +vittoria +torino +tribunale +corso +vittorio +emanuele +vicenza +tribunale +via +ettore +gallo +padova +tribunale +via +tommaseo +treviso +tribunale +via +verdi +rovigo +tribunale +via +verdi +belluno +via +segato +verona +via +zappatore +genova +largo +xii +ottobre +trieste +tribunale +foro +ulpiano +udine +tribunale +largo +ospedale +vecchio +pordenone +tribunale +viale +franco +martelli +gorizia +tribunale +via +nazario +sauro +bolzano +tribunale +piazza +altro +intervista +ieri +sera +giovanni +floris +dimartedì +guardatela +poi +leggo +commenti +vicini +casa +sostegno +francesco +pensionato +indagato +omicidio +volontario +essersi +difeso +ladro +entrato +casa +giù +mani +difende +guarda +condividi +iostoconfrancesco +loris +giorgio +udine +vivono +baracca +mobili +presi +immondizia +senza +acqua +senza +luce +elettrica +casa +popolare +danno +prima +immigrati +vita +reale +invenzioni +lega +però +attenti +condividerete +video +qualche +buonista +dirà +parlate +pancia +tivù +giornali +nascosto +ieri +renzi +udine +beccato +buffone +condivido +tratto +http +www +ilgiornale +it +video +politica +renzi +parla +spalti +urlano +buffone +html +dite +milanisti +soffriremo +stasera +guarda +condividi +razzismo +mentre +regalano +alberghi +immigrati +ecco +governo +buonisti +tratta +mamma +italiana +figli +mille +difficoltà +poche +tutele +paghe +fame +rispetto +riconoscenza +rischia +vita +giorni +proteggerci +invece +lavorare +risolvere +problemi +veri +italiani +occupano +adozioni +gay +regalano +cittadinanze +immigrati +attaccano +regioni +meglio +governate +soliti +sinistri +svendono +italia +cacceremo +poliziotto +carabiniere +interviene +proteggere +collega +cittadino +tutelato +indagato +qualche +delinquente +protesta +pazienza +difende +bettola +provincia +piacenza +paese +bersani +mese +alluvione +morti +feriti +milioni +euro +danni +ancora +stato +regione +arrivano +aiuti +promessi +furia +impedire +altro +residenti +dragare +fiumi +togliere +ghiaia +pulire +torrenti +curare +boschi +natura +fa +corso +solo +colpa +acqua +soprattutto +colpa +uomo +lasciamo +montagna +curata +gente +montagna +pensate +anna +milano +mamma +disoccupata +sotto +sfratto +clandestini +figli +poco +niente +ora +basta +schifo +pretendere +aiuti +gente +diritto +negarli +razzismo +molto +bene +aspetto +diretta +quinta +colonna +rete +lavorando +dare +italiani +paese +normale +viene +rispetta +gente +adegua +regole +leggi +altrimenti +torna +casa +spero +colossale +figura +fango +renzi +marino +pd +avvicini +tanta +gente +normale +voglia +costruire +futuro +propria +comunità +torni +voto +subito +democrazia +sospesa +già +troppo +tempo +roma +merita +italia +merita +archiviato +disastro +marino +renzi +coperto +spalle +anno +mezzo +ora +roma +milano +napoli +torino +bologna +occorre +parlare +poco +lavorare +tanto +momento +poco +pochi +me +indispensabile +prerequisito +prima +italiani +studi +settore +accertamenti +fiscali +massacrando +produce +paese +imprenditore +italiano +deve +poter +lavorare +senza +avere +stato +rompere +palle +azienda +adriano +anni +lavoro +muratore +stato +italiano +bastano +avere +pensione +intanto +mantiene +figlio +cooperative +rivolto +impiegano +solo +extracomunitari +ascoltando +storia +giochini +alfano +verdini +corte +renzi +sembrano +ancora +schifosi +europa +senzapalle +mattina +strasburgo +grazie +russia +sola +combattendo +tagliagole +islamici +isis +arrendi +condividi +imprese +italiane +meno +dipendenti +nemmeno +renzi +favorisce +solo +grandi +cresciamo +zero +virgola +occorre +coraggio +occorre +altro +rivoluzione +fiscale +flat +tax +uguale +basta +oppressione +equitalia +italia +bisogno +correre +passeggiare +ascoltate +cosa +dicono +cittadini +ventimiglia +circondati +presunti +profughi +senza +limiti +senza +regole +governo +renzi +umilia +ogni +giorno +italiani +pare +normale +scuola +materna +rovereto +rimosso +giostrina +maialino +islamici +offendevano +schio +imam +educava” +bambini +ascoltare +musica +peccato +altro +scuola +elementare +ladispoli +introdotto +ora +settimanale +lingua +rumena +obbligatoria +qualcuno +deciso +italiani +debbano +essere +minoranza +casa +me +pare +razzismo +sbaglio +centri +sociali +aggrediscono +leghisti +pisa +raccolgono +firme +sicurezza +nonostante +cittadini +fermano +firmano +zecche +rosse +fate +paura +nessuno +castagne +vino +rosso +quarto +grado +sacrifici +italiani +voli +stato +renzi +ministri +sbaglio +dico +fa +schifo +ruspa +vergogno +stato +mamma +papà +oltre +essere +ancora +risarciti +errore +ospedale +reso +disabile +bimbo +ricevono +cartella +equitalia +38mila +euro +minaccia +fermo +auto +cambieremo +stato +infame +cancelleremo +schifo +altro +riforma +senato +renzi +governo +normale +dovrebbe +occuparsi +momento +problemi +veri +italiani +lavoro +tasse +pensioni +immigrazione +solo +penso +così +angelo +anni +roma +posto +albergo +migliaia +clandestini +magari +ventenni +invece +sì +ascoltate +condividete +parole +pronte +accuse +razzismo +priorità +renzi +riforma +senato +ius +soli +cittadinanza +veloce +immigrati +emergenze +chiamano +lavoro +pensioni +flat +tax +aiutare +italiani +difficoltà +resto +viene +dopo +ascolta +condividi +situazione +pescara +filmata +cittadini +sicurezza +buon +senso +meno +renzi +boldrini +guardate +reazione +buonisti +lettura +diretta +messaggio +facebook +vuole +rispetto +milioni +italiani +difficoltà +altro +resort +stelle +clandestini +beccati +truccare +dati +emissioni +auto +cara +merkel +giù +piedistallo +mentre +sfigati +rossi +mai +salvini +ritrovano +gatti +davanti +casa +popolo +aspetto +tantissimi +sabato +sera +pordenone +pubblico +pomeriggio +applaude +composto +bestie +buonisti +sinistra +cinquestelle +pensano +sconfiggere +tagliagole +isis +fiorellini +sradicare +peste +terrorismo +islamico +servono +maniere +forti +accordo +condividi +ipocriti +fessi +casa +ecco +video +intervista +rtl +vista +dare +occhiata +poi +leggo +volentieri +commenti +mafia +immigrati +mesi +fa +denunciavo +razzista +oggi +accorge +corriere +ascoltate +condividete +altro +definireste +vergogna +abbraccio +paola +beatrice +vaffa +renzi +buona +scuola” +salvatore +padre +bimbo +anni +perso +lavoro +ora +dorme +tenda +parcheggio +pubblico +posto +albergo +migliaia +clandestini +invece +sì +razzismo +fa +incazzare +te +condividi +ciao +amici +andiamo +altalena +fate +fanculo +porcherie +europa +prende +giro +italiani +ruspa +grillocomerenzi +mentre +renzi +cena +ristorante +stelle +michelin +centinaia +euro +tuffo +cannelloni +leghisti +buon +appetito +tutte +persone +perbene +quindi +renzi +voto +mai +pd +ascolta +condividi +parole +paola +esodata +emiliana +minuto +smaschera +sbugiarda +renzi +signora +boldrini +parla +costituzione +diritti +profughi +renzi +blocca +parlamento +riforma +senato +matrimoni +gay +missioni +estero +intercettazioni +problemi +veri +italiani +interessano +proprio +sinistra +mentre +soldi +italiani +bisogno +trovano +mai +ecco +vengono +buttati +milioni +euro +mantenere +anni +profughi +scappano +nessuna +guerra +forse +qualcuno +mangia +palazzo +inizia +occuparsi +problemi +milioni +cittadini +italiani +derubati +dimenticati +prossima +volta +smontiamo +mattone +mattone +morti +miliardi +euro +spesi +migliaia +clandestini +albergo +germania +slovacchia +sospendono +schengen +austria +invia +esercito +presidiare +confini +ungheria +alza +muro +persino +altro +europa +chiediamo +anni +vorrebbe +iniziare +usare +maniere +forti” +bloccare +barconi +scafisti +cosa +deve +succedere +ancora +svegliare +governo +dormienti +renzi +alfano +parlato +docente +seguiva +bimba +down +ora +lasciata +casa +governo +migliaia +insegnanti +compresi +sostegno +bambini +disabili +dimenticati +lasciati +piedi +altro +buona +scuola” +renzi +vergogna +almeno +po +occupando +ministero +economia +vogliamo +fatti +concreti +risposte +tempi +certi +legge +fornero +fianco +ascoltiamo +girare +parole +tina +terremotata +mirandola +provincia +modena +sopravvive +giorni +container +liberiamoci +governo +mette +albergo +clandestini +toglie +dignità +cittadini +ruspa +elio +papà +giada +incatenato +esterno +scuola +elementare +calolziocorte +lecco +protesta +figlia +migliaia +altri +bimbi +disabili +classe +senza +insegnante +sostegno +abbraccio +elio +giada +vaffa +renzi +buona +scuola +forza +vecchio +cuore +rossonero +amici +abbraccio +piazza +cittadella +dedico +saluzzo +mille +persone +renzi +arrivando +togliere +embargo +siria +eliminare +folli +sanzioni +russia +intervenire +cancellare +terra +tagliagole +stato +islamico +aiutare +gente +scappare +altro +importare +nuovi +schiavi +europa +accordo +ascolta +condividi +altro +bestie +italia +monsignor +maggiolini +metteva +guardia +confondere +libertà +religione +libertà +invasione +arcivescovo +bologna +biffi +consigliava +altro +privilegiare +immigrazione +viene +territori +cristiani +facilmente +assimilabile +italia +buon +senso +vuole +accogliere +scappa +veramente +guerra +respingere +diritto +altro +bestie +renzi +vergognati +vogliamo +casa +vogliamo +essere +aiutati” +dicono +giovani +rom +ossignur +cosa +rispondiamo +ventenni +belle +speranze +tanta +voglia +lavorare +pensano +immigrati +fregano +disoccupati +condividi +ruspa +normale +italia +renzi +ruba +anni +vita +donne +legge +fornero +soldi +trova +solo +clandestini +sbarcano +domani +mattina +quando +governo +cancelleremo +subito +quell +infame +legge +italiani +vengono +prima +tiri +fuori +soldi +uccido +abbraccio +tassisti +italiani +grazie +governo +renzi +alfano +ogni +giorno +meno +sicuro +voglia +ecco +video +intervista +ieri +sera +paolo +debbio +quinta +colonna +parlato +messaggi +scrivete +splendida +comunità +sbugiardare +renzi +proporre +futuro +diverso +italia +davanti +platea +cernobbio +raccogliendo +applausi +inaspettati +fatto +dato +verme +renzi +esagerato +fine +settimana +aspetto +venerdì +sabato +monviso +domenica +cittadella +difendere +radici +vuol +dire +preparare +futuro +renzi +guarda +bestie +lega +lodi +megliobestiacherenzi +renzi +fa +fenomeno +economia +combina +nulla +liberare +imprese +ridare +lavoro +italiani +bisogno +rivoluzione +chiama +aliquota +fiscale +unica +andremo +governo +pronto +italia +trovi +merda +torna +paese +condividi +bacheca +qualche +buonista +magari +può +offrirsi +trattare +meglio +signore +guardate +condividete +storia +angelo +ormai +vive +prigioniero +casa +profughi +casino +girano +nudi +sputano +scale +angelo +lasciamo +solo +governo +altroinvasione +arricchisce +pelle +italiani +ruspa +arrivo +http +www +ilgiornale +it +news +cronache +chieve +business +immigrati +case +invendute +html +ascoltate +bene +fate +girare +amici +ormai +passaparola +profughi” +mezzo +mondo +andate +italia +lì +passare +facile +chiedere +asilo +disastro +renzi +prima +cacciamo +meglio +http +www +ilgiornale +it +news +cronache +londata +pakistani +est +prefetture +collasso +html +renzi +alfano +boldrini +zero +proposte +zero +risultati +solo +tanti +insulti +chiede +rispetto +regole +interventi +concreti +controllare +gestire +immigrazione +razzisti +altro +leghisti +populisti +xenofobi +nazisti +fascisti +ora +sciacalliiii” +pronti +cacciare +governo +incapaci +riprendervi +italia +oggi +premio +vai +lavorareee +vince +europarlamentare +pd +pina +picierno +amici +sotto +copio +incollo +programma +prossimi +giorni +fino +domenica +sempre +aspetto +ferma +perduto +mercoledi +settembre +radio +cusano +campus +collegamento +altro +telefonico +festa +ln +conselve +pd +prato +comunale +via +monsignor +beggiato +giovedi +settembre +viterbo +provincia +giornata +trasporto +macchina +santa +rosa +venerdi +settembre +cara +mineo +ct +festa +ln +cantu +via +giovanni +cermenate +struttura +campo +solare +festa +ln +calolziocorte +lc +dancing +sport +lavello +viale +gasperi +sabato +settembre +festa +ln +sempre +corsa +matteo +salvini” +buglio +altro +pazzesco +conetta +vicino +venezia +inviato +profughi +ogni +abitante +sveglione +renzi +gioca +risiko +immigrati +pelle +italiani +alfano +ruspa +buon +senso +arrivo +altre +parole +servono +preghiera +pseudo +albergatori +guadagnano +grazie +invasione +insulto +veri +imprenditori +ristoratori +mazzo +giorni +fare +lavoro +campa +clandestini +chiuda +domani +mattina +serve +italia +italiani +sgomberati +profughi +ospitati +stato +italiano +stato +clandestino +marino +alfano +casaaa +italia +vogliamo +cambieremo +sbaglia +paga +accordo +ascolta +girare +bello +sinistri +riempirsi +bocca +parola +accoglienza” +sbarca +domani +mattina +cittadini +italiani +magari +disoccupati +sotto +sfratto +cassintegrati +pensionati +minimo +altro +disabili +bisogno +lasciati +senza +alcun +aiuto +quando +governo +prima +penseremo +poi +altri +peggio +clandestini +protestano +rompono +casa +subito +condividi +video +bacheca +qualche +amico +buonista +guardate +spettacolo +pinzolo +trentino +grazieee +renzi +arriviamo +video +traballa +po +fatto +piedi +benna +ruspa +hotel +san +lorenzo +banale +cena +amici +trasforma +comizio +lega +persone +spettacolo +trentino +pazzesco +ecco +servono +presunti +profughi +reggio +emilia +pd +usa +volontari +festa +sembra +cosa +normale +girano +palle +girare +video +amici +oretta +tocca +me +traghetto +tirrenia +porto +torres +genova +partenza +ritardata +attesa +salire +bordo +pullman +clandestini +foto +sala +poltrone +riservata +mentre +tanti +italiani +dormiranno +terra +materassini +fanculo +altro +galantino +gente +seria +sabato +aspetto +festa +lega +pinzolo +splendido +trentino +passaparola +programmi +ferragosto +zona +stare +insieme +me +tanti +altri +amici +aspetto +anni +pontedilegno +ore +renzi +arriviamo +intervista +ieri +sera +tg1 +commenti +proposte +suggerimenti +richieste +cosiddetti +profughi +smartphone +ultima +generazione +wi +fi +skype +tv +tutte +camere +italiani +difficoltà +calcio +culo +nooooo +invenzioni +quei +razzisti +lega +condividete +video +bacheca +qualche +amico +buonista +sicilia +meriterebbe +qualcosa +meglio +rispetto +crocetta +sbaglio +attenti +vero +terremotati +emiliani +roulotte +anni +mentre +immigrati +comodi +hotel +salvini +populista +toscana +francesco +dorme +auto +cosiddetti +profughi +villa +lusso +basta +umiliare +cittadini +italiani +pazienza +finendo +egoisticamente +potrei +dire +preso +veneto +vinto +liguria +governo +lombardia +toscana +lega +sindaci +me +nord +chissenefrega +altri +altro +ragionamento +intelligente +italia +riparte +tutta +insieme +nessuna +parte +saviano +voglia +andare +oltre +certi +squallidi +slogan +approfondire +invito +prossimo +viaggio +sud +orgoglioso +stare +mezzo +gente +onorevole +renziana +sbugiardata +forse +preferisce +stare +mezzo +clandestini +clandestini +ventimiglia +residenti +invasi +sera +mattina +renzi +ministri +dormono +fregano +nord +sud +ogni +giorno +creano +situazioni +secondo +paese +normale +euro +casse +comune +amministrato +lega +quell +euro +cittadino +italiano +obiettivo +sbarchi +zero +visto +signora +pd +dice +migranti +soprattutto +transito +fa +transitare +casa +donazione +plasma +avis +fatta +andrà +sangue +so +basta +sapere +aiuterò +qualcuno +spero +almeno +fa +polemica +minuto +delirio +kompagno +tolleranza +zero +vedo +bene +verso +alfano +ridicolo +governo +incapace +storia +fronte +ordine +pubblico +prenda +tutte +discoteche +campo +rom +mercedes +lusso +comprate +risposta +andiamo +fare +mercato +vendere +vestiti +intanto +fessi +paghiamo +bollette +ufficialmente +poveri +esagero +dire +ruspa +vergogno +stato +papà +italiano +dà +fuoco +disperazione +muore +mentre +immigrati +mantenuti +rifiutano +spaghetti +pomodoro +piacciono +vedo +ora +essere +governo +cambiare +schifo +lomazzo +provincia +como +parte +lega +marea +gente +perbene +gran +finale +festa +lega +cervia +super +luca +zaia +pd +lasciamo +crocetta +alcuni +pescatori +vongole +cattolica +cambieranno +folli +regole +europee +prevedono +taglia +minima +millimetri +ogni +vongola +rischiano +rimanere +ferme +oltre +barche +saltare +posti +lavoro +lega +renzi +trentina +presunti +profughi +bloccano +strade +este +veneto +cibo +vestiti +piacciono +fa +troppo +caldo +devono +essere +famosi +rifugiati +climatici +inviamo +casa +renzi +alfano +boldrini +guarda +condividi +video +fa +troppo +incazzare +ecco +video +intervista +gianni +riotta +splendido +castello +sforzesco +milano +vista +dare +occhiata +poi +leggo +volentieri +commenti +piace +condividete +rivoluzione +renzi +promette +togliere +tassa +prima +casa +messo +eliminare +imu +terreni +agricoli +introdotto +abbassare +irpef +ires +iva +aumentato +rivoluzione +me +sembra +ennesima +renzata +chiacchierone +orgoglioso +sindaci +cittadini +tutta +italia +protestano +invasione +difendono +città +condividiamo +rassegna +vince +combattere +caldo +formaggio +piastra +pistola +acqua +insieme +grande +luca +zaia +presente +fin +subito +fianco +concittadini +rimane +settecentesca +villa +fini +secondo +tivù +radio +nazionali +parlato +tragedia +morto +feriti +persone +fuori +casa +veneto +dopo +tornado +cazzago +pianiga +sfondo +stadio +ormai +ex +davanti +quel +resta +decine +alberi +secolari +sradicati +lanciati +vento +proiettili +milioni +euro +danni +fino +ora +governo +dati +solo +signora +kyenge +vuole +accogliere +finti +profughi +mondo +casa +spese +italiani +italiani +fame +clandestini +iphone +trattati +graditi +ospiti +stato +qualcuno +vuole +scontro +sociale +amici +veneti +sabato +torno +visiterò +luoghi +devastati +tornado +tv +giornali +già +dimenticati +provincia +treviso +sostenere +residenti +invasione +clandestina +grazie +renzi +alfano +sera +festa +lega +oppeano +vr +aspetto +bellissima +sala +strapiena +gente +fuori +oggi +novara +lega +vuoi +vedere +stancati +pd +guarda +condividi +ecco +situazioni +create +governo +renzi +alfano +finti +buoni +sabato +tardo +pomeriggio +quinto +treviso +vado +persona +dare +solidarietà +famiglie +residenti +razzismo +verso +italiani +fa +girare +palle +messo +piace +pagina +cancro +primo +aiuto +onlus +solidarietà +concreta +migliaia +malati +niente +chiacchiere +clicca +seguente +link +metti +piace +https +www +facebook +com +pages +cancro +primo +aiuto +onlus +legge +fornero +rapporti +russia +aiuto +veneto +grazia +antonio +monella +federalismo +europa +cambiare +aziende +chiudono +immigrazione +portato +presidente +mattarella +voci +lavoro +riempire +alberghi +agriturismi +ostelli +mezza +italia +immigrati +clandestini +presa +giro +confronti +milioni +cittadini +sotto +soglia +povertà +dicono +populisti +razzisti” +frega +vengono +prima +italiani +difficoltà +buondì +amici +vola +roma +leggendo +nuovo +romanzo +ottimo +vitali +stasera +incontri +bergamaschi +festa +lega +bonate +sopra +treviglio +aspetto +odio +caldo +splendida +cena +persone +viareggio +sorpresa +grande +ciclista +alessandro +petacchi +regalato +maglia +verde +vinta +tour +france +corre +europa +fondata +interesse +banche +multinazionali +anni +detto +piccolo +brutto +essere +competitivi +bisogno +grande +centro +commerciale +altro +grandi +banche +grandi +catene +straniere +intanto +uccidendo +storia +impresa +posti +lavoro +difendere +saper +fare +italiano +serve +nuovo +sistema +fiscale +pagare +meno +tasse +altro +dormire +renzi +svegliaaaa +gruppi +clandestini +ospitati +residence +eraclea +mare +cittadina +turistica +litorale +veneto +presi +sassate +rabbia +residenti +turisti +impauriti +frattempo +commercianti +altro +operatori +turistici +esasperati +denunciano +gravi +perdite +attività +invasione +continua +altri +soldi +scafisti +altri +affari +mangia +altri +problemi +italiani +onesti +vogliono +solo +lavorare +pace +renzi +bene +così +paga +danni +incontrato +ferrara +signora +piangendo +marito +disoccupato +pensione +fame +giorni +rischia +perdere +casa +riesce +pagare +rate +mutuo +altro +clandestino +sbarca +mattina +scappa +nessuna +guerra +casa +albergo +agriturismo +cittadina +italiana +paga +tasse +decine +anni +dita +occhi +emergenza +italiani +difficoltà +resto +viene +dopo +pienone +pazzesco +lega +bulgarograsso +vicino +como +stasera +tantissimi +bambini +futuro +cresce +renzino +arrivandooooo +inps +certifica +poveri +italia +milioni +cittadini +possono +permettersi +alimentazione +adeguata +riescono +fronte +spese +impreviste +pochi +euro +frattempo +priorità +governo +italiano +trovare +albergo +migliaia +clandestini +dite +renzi +vergogna +almeno +po +aspetto +sera +quartesana +villa +pignara +provincia +ferrara +festa +lega +collegamento +ruspa +intervento +convegno +euro +libertà +” +qualche +anno +fa +davano +matti” +dicevamo +basta +euro” +ora +ricoverare +difendono +ancora +moneta +povertà +disoccupazione +libertà +viene +prima +rassegnarsi +mai +cambieremo +italia +cambieremo +europa +migliaia +firme +false +consentito +elezione +chiamparino +giudici +tar +riconoscano +piemontesi +diritto +tornare +votare +scegliere +liberamente +futuro +terra +forse +qualcuno +vuol +farci +credere +firma +falsa +sinistra +diventa +meno +falsa +amici +mattina +strasburgo +portato +saluto” +merkel +renzi +dite +messaggio +ricevuto +intervento +ieri +sera +ballarò +credo +aver +parlato +chiaro +dite +moriremo +renziani +né +schiavi +europa +piace +condividete +dialoghiamo +dialoghiamo +altro +dialogo +fanatismo +islamico +combatte +condividiamo +video +buonisti +ipocriti +fessi +casa +europa +così +bisogna +fermarsi +riscrivere +ripartire +programma +ridare +dignità +italiani +popoli +europa +difendere +lavoro +controllare +moneta +confini +renzi +fare +cagnolino +merkel +tirare +avanti +persone +cena +radio +padania +castelcovati +brescia +bellissima +serata +notte +amici +almeno +sogni +ora +renzi +tassa +ragazzi +trovate +ancora +qualcuno +difende +europa +euro +moneta +unica +economie +diverse +funziona +esperimento +genetico +fallito +cambiano +trattati +soli +italia +niente +imparare +nessuno +italia +può +tornare +lavoro +sì +senza +fisco +assassino +vincoli +europei +demenziali +moneta +sbagliata +tasca +parlato +intervista +voglia +ascolta +condividi +spettacolare +accoglienza +bagno +folla +lega +adro +franciacorta +renzi +arrivandooooo +pazzesco +italiana +jihadista +ascolta +condividi +islam +religione +altre +qualcuno +ancora +dubbi +amici +ultimi +giorni +firmare +comune +entro +luglio +tassare +regolamentare +prostituzione +liberando +strade +città +battaglia +civiltà +porta +solo +vantaggi +firma +potremo +combatterla +insieme +libertà +partecipazione +clandestini +sbarcano +albergo +pasti +gratis +terremotati +container +tanti +saluti +italia +renzi +boldrini +poi +razzisti +italiani +stanchi +invasione +lascio +bellissima +terra +calabria +grazie +amicizia +impegno +tornarci +presto +aiutare +risolvere +qualche +problema +stazione +crotone +clandestini +passeggeri +secondo +normale +capire +conoscere +studiare +approfondire +imparare +serve +me +serve +professori +economisti +studiosi +liberi +lega +salvini +puoi +iscriverti +www +scuoladiformazionepolitica +it +vittorio +feltri +sempre +grande +paga +stipendio +signor +renzi +signor +alfano +cittadini +italiani +giusto +allora +smettano +farci +invadere +fare +camerieri +europa +disoccupazione +infedeli +crocifissi +decapitati +arsi +vivi +giustiziati +spiaggia +colpi +mitra +religione +entra +terrorismo +islamico +dicono +buonisti +palle +quando +guerra +corso +bisogna +difendersi +tutte +armi +disposizione +dorme +complice +moschee +vanno +controllate +radiografate +gestisce +conduce +finanziate +regimi +islamici +fanatici +vanno +chiuse +domani +mattina +esportiamo +laureati +importiamo +disperati +invasione +pianificata +sostituzione +popoli +può +grazie +pubblico +studio +oggi +applausi +brutti +estremisti +populisti +certo +molliamo +ascoltate +bene +ragione +oriana +fallaci +signore +vorrei +vicino +casa +nemmeno +sotto +tortura +senza +montarci +testa +piedi +bene +piantati +terra +adesso +dobbiamo +fermarci +dobbiamo +lavorare +ancora +duro +vincere +può +pazzesco +maledizione +svenduto +unione +sovietica +europea +banche +euro +fuori +riparte +sbaglia +paga +cosiddetto +reato +tortura +idiozia +espone +porta +divisa +ricatto +delinquenti +ultima +cosa +bisogno +italia +ostacolare +attività +poliziotti +carabinieri +forze +ordine +qualche +delinquente +lamenta +problemi +grazie +jonata +pregio +martinalli +cantato +pontida +pezzo +ricordo +ragazza +perso +vita +anni +incidente +stradale +angelo +combattuto +insieme +dimenticheremo +mai +ciao +vittoria +capaccio +resort +provincia +salerno +presunti +profughi +protestano +qualità +cibo +servizi +mangiano +male +manca +internet +vadano +fare +turisti +casa +diamo +quei +fondi +italiani +difficoltà +ieri +stretti +mano +fatto +patto +figli +finché +libereremo +italia +molleremo +mai +ruspe +azione +anni +magliette +quasi +esaurite +immigrati +protestano +rifiutano +alberghi +pisa +wifi +livorno +ospitate +donne +sassari +troppo +isolato +altro +profughi +scappano +guerre” +clandestini +rispedire +casa +presunti +profughi +rifiutano +agriturismo +provincia +sassari +troppo +isolato +lontano +mare +barcone +via +vadano +casa +fare +schizzinosi +donazione +sangue +fatta +interessa +aiuterò +bianco +nero +milanese +giapponese +cittadino +interessa +aiutare +qualcuno +bisogno +politico +invece +dovere +aiutare +prima +italiani +incredibile +renzi +volta +detto +verità +doriano +cittadino +italiano +difficoltà +sacco +pelo +clandestino +sbarca +invece +pronto +albergo +girare +stop +razzismo +verso +italiani +tassare +regolamentare +prostituzione +riaprendo +case +chiuse +liberando +strade +città +battaglia +civiltà +porta +solo +vantaggi +usa +quarto +ora +tempo +vai +comune +altro +combattila +tempo +solo +fino +luglio +già +firmato +anno +scorso +vale +devi +firmare +nuovo +marea +gente +lega +stasera +melzo +dedico +entusiasmo +militanti +rendendo +possibili +vittorie +impensabili +ballottaggi +grazie +visto +stragrande +maggioranza +richiedenti +ottiene +asilo +fino +prova +contraria +chiamiamo +clandestini +altro +profughi +hotel +gratis +spese +italiani +condivide +amico +renzi +boldrini +rom +diritti +doveri +casa +comprano +affittano +altri +visto +spesso +volentieri +conto +corrente +triplo +soldi +cittadino +italiano +politici +pd +piace +scabbia +disabili +anziani +disoccupati +italiani +soldi +clandestini +invece +renzi +trova +subito +razzismo +fa +incazzare +te +condividi +bella +squadra +piazza +sordello +mantova +domenica +vota +sinistra +vota +lamenti +prossimi +anni +momento +crisi +economica +studi +settore +strumento +tortura +fiscale +stato +costringe +dichiarare +guadagnato +altrimenti +vengono +controllarti +calzini +armadio +governo +cancelliamo +domani +mattina +spettacolare +accoglienza +lega +cologno +monzese +vuoi +vedere +dopo +cinquant +anni +manda +casa +sinistra +paese +normale +alfano +ministro +interno +già +qualche +mese +manifesta +totale +incapacità +gestire +immigrazione +clandestina +renzi +copre +difende +complice +invasione +amici +bisogno +entro +fine +giugno +andate +ciascuno +proprio +comune +firmare +referendum +lega +tassare +regolamentare +prostituzione +già +fatto +anno +scorso +deve +altro +firmare +nuovo +poter +contribuire +battaglia +civiltà +servono +firme +insieme +iniziato +percorso +comune +imprenditori +italiani +nord +sud +rivedere +trattati +europei +difesa +made +italy +giustizia +efficace +soprattutto +nuovo +sistema +fiscale +pagare +meno +tasse +volere +potere +insieme +torneremo +grandi +tantissima +gente +piazza +corsico +mandare +casa +sinistra +dopo +troppi +anni +disastri +ventina +contestatori +urlavano +clandestini +allora +andate +vivere +altra +parte +mercato +segrate +accoglienza +stupenda +ascoltare +signore +incontro +vedere +fornero +dovrebbe +scappare +via +velocemente +schifani +dice +porterò +centrodestra +sconfitta +integralista +estremista +destra +porto +italia +sfascio +povero +zerovirgola +schifani +cosa +pretendere +ministro +interno +secondo +lavoro +fa +scafista +piazza +strapiena +lega +lonigo +provincia +vicenza +domenica +vota +manda +casa +sindaco +sinistra +renzi +barcone +abbraccio +splendida +piazza +castelfranco +veneto +cosa +state +amici +rinnovo +invito +combattete +battaglia +civiltà +nord +sud +roma +napoli +milano +palermo +torino +andate +firmare +comune +date +500mila +firme +dopo +anni +toglieremo +prostituzione +strade +www +vieniafirmare +org +ridare +lavoro +italiani +servono +idee +chiare +coraggiose +proposta +chiama +flat +tax +pagare +meno +pagare +funziona +già +paesi +mondo +costruendo +progetto +alternativo +renzi +bruxelles +banche +vincere +ridare +italia +italiani +credo +paesi +confronto +austria +difende +propri +confini +italia +fa +invadere +grazie +scelte +demenziali +renzi +alfano +incapaci +quando +governo +cambierà +video +intervista +lunedì +paolo +debbio +quinta +colonna +rete +dialogato +volentieri +giovani +pd +aspetto +giorno +militante +lega +potrà +fare +domanda +renzi +diretta +televisiva +chiederanno +cittadini +governo +spaventa +differenza +renzi +uomo +solo +comando +voglia +leggete +condividete +intervista +soprattutto +leggerò +attenzione +commenti +giornata +fare +storia +domenica +giugno +pontida +aspetto +te +persino +fatto +quotidiano +riconosce +successo +lega +http +tv +ilfattoquotidiano +it +saronno +nuova +base +salvini +terroni +migranti +ruspa +ruspa +ruspa +spettacolare +folla +serata +lega +martinengo +renzi +arrivandooooooo +notte +serena +amici +domani +mattina +saronno +ringraziamento +tapiro +grazie +nord +sud +incontrato +sacco +gente +dato +tanto +me +stata +esperienza +vita +incredibile +volete +aiutarci +realizzare +progetto +alternativo +renzi +andate +comune +firmare +referendum +abrogare +legge +merlin +info +www +vieniafirmare +org +piazza +strapiena +thiene +provincia +vicenza +lega +luca +zaia +altri +spariti +renzi +arrivandooooo +arquà +polesine +vicino +rovigo +ostello +canalbianco +ah +relax +immigrati +vitto +alloggio +garantito +mesi +mentre +migliaia +italiani +tirano +fine +mese +dormono +macchina +piace +italia +renzi +alfano +boldrini +domenica +puoi +contribuire +cambiarla +voto +ciclisti +leghisti +spettacolo +elezioni +regionali +domenica +girare +vota +puglia +salvini +presenti +tanti +comuni +centro +sud +isole +abruzzo +sicilia +domenica +vince +partecipa +meno +dueeeee +splendida +piazza +orvieto +piena +dicono +vedeva +anni +auguro +notte +serena +domani +veneto +domenica +voto +libertà +grazie +toscana +grazie +umbria +domani +venerdì +gran +finale +veneto +torre +mosto +ve +dolo +ve +piazza +mercato +collegamento +la7 +aria +tira +altro +padova +convegno +terrorismo +piazza +organizzato +ugl +polizia +stato +presso +sala +comunale +fornace +carotta +carrare +pd +arquà +polesine +ro +rovigo +piazza +vittorio +emanuele +ii +thiene +piazza +chilesotti +finire +luca +zaia +verona +piazza +dante +proprio +ancora +stanchi +salvini +collego +mentana +la7 +bersaglio +mobile +domenica +vicina +ogni +voto +ruspa +preferite +suite +matrimoniale +doppia +uso +singola +benvenuti +capannone +rom +orrori +firenze +schifo +diritti +doveri +domenica +scelta +pulizia +chiama +lega +piazza +piena +orgogliosa +pacifica +poco +fa +arezzo +contestatori +neanche +aria +guarda +diffondi +clandestini +hotel +piscina +wifi +discoteca +italiani +calcio +sedere +conto +pagare +domenica +vai +votare +schifo +fermiamo +notte +serena +amici +stasera +concesso +pausa +poesia +relax +musica +arte +film +fabrizio +andré +direzione +ostinata +contraria +sempre +ascoltate +diffondete +renzi +paragona +italiani +emigravano +cerca +fortuna +clandestini +sbarcano +oggi +nonni +miniere +duro +lavoro +alberghi +gratis +renzi +vergognati +piazza +piena +emozionante +san +giovanni +punta +provincia +catania +sicilia +voglia +cambiare +saluto +particolare +angelino +alfano +ministro +invasione +ascolta +girare +renzi +alfano +boldrini +difendiamo +confini +difendiamo +storia +giornalista +andrea +scanzi +dice +tivù +stravinco +ragione +renzi +monologante +grazie +chissà +magari +riesce +convincerlo +renzi +coniglio +confrontarsi +me +sempre +pronto +dite +oggi +premio +vergognati +taci +ché +bella +figura +diamo +genio +amico +monti +fornero +esodati +stati +messi +posto +genova +splendide +persone +piazza +lega +grazie +purtroppo +soliti +parassiti +centri +sociali +cercato +attaccare +piazza +lanciando +bombe +carta +petardi +bottiglie +altro +poliziotti +carabinieri +votare +domenica +liguria +punto +solo +diritto +dovere +centri +sociali +ruspa +ovviamente +savona +potevano +mancare +anti +leghisti +anti +fascisti +anti +razzisti +anti +bla +bla +bla +savona +piazza +lega +vuole +liberarsi +renzi +burlando +ringrazio +lavoratori +porto +presenza +orlando +sopravvive +mesi +macchina +famiglia +chiesto +te +cittadino +italiano +niente +albergo +mentre +presunti +profughi +sì +ascoltate +condividete +parole +dedichiamo +tanti +ipocriti +finti +buonisti +sinistra +centinaia +persone +piazza +lega +adesso +valenza +incredibile +dite +vuol +dire +domenica +lega +prenderà +marea +voti +ecco +sede +canile +devastato +può +dare +mano +dia +forse +adesso +proteggere +struttura +arriverà +esercito +meglio +sgomberare +campi +rom +fianco +spiegate +italiani +devono +pagare +ticket +ospedale +mentre +migliaia +clandestini +tutte +cure +gratis +magari +scavalcando +fila +senza +pagare +mai +lira +stufato +sentire +applausi +pubblico +quinta +colonna +torino +benvenuti +campo +rom +regolare +via +germagnano +villette +gentilmente +costruite +poi +distrutte +poi +ricostruite +comune +spese +cittadini +pochi +metri +canile +enpa +distrutto +pochi +giorni +fa +chissà +dovuto +allontanare +cani +gatti +genovesi +testa +aspetto +piazza +ascoltate +diffondete +renzi +smascherato +legge +fornero +capitooo +piazza +strapiena +gente +terni +fatela +girare +web +riempie +gioia +emozione +orgoglio +responsabilità +coraggio +onestà +cambiare +può +davvero +secondo +renzi +troverebbe +piazza +così +bella +mentre +presunti +profughi +albergo +pagato +italiani +terremotati +emiliani +ancora +fuori +casa +schifo +domenica +abbattiamo +voto +promesso +oggi +tornato +hotel +house +porto +recanati +appartamenti +molti +occupati +spacciatori +truffatori +abusivi +decina +inquilini +italiani +altri +stranieri +molti +altro +immigrati +perbene +troppi +stranieri +delinquenti +soluzione +riportare +ordine +uomini +esercito +forze +ordine +giorni +controllano +piano +piano +appartamento +appartamento +palazzo +regola +bene +altri +rispediti +primo +aereo +casa +stasera +mestre +polizia +centri +sociali +voglia +video +confronto +oggi +rai +lucia +annunziata +piace +condividete +bacheca +qualche +amico +tante +persone +incontrate +giro +giorni +altro +sinistra +dicono +basta +stavolta +voto +lega +grazie +domenica +prossima +dobbiamo +essere +tanti +uniti +insieme +cambiare +può +jesolo +voglia +mare +passa +domenica +storia +orlando +teresa +figli +commosso +fatto +parecchio +incazzare +guarda +diffondi +stato +ribaltiamo +venezia +salvata +stasera +aspetto +mestre +domenica +maggio +appuntamento +solo +conferma +luca +zaia +regione +elezioni +comunali +liberare +città +bella +mondo +occupanti +sinistra +aspetto +sera +mestre +piazza +ferretto +domenica +anni +grande +guerra +oggi +allora +passa +straniero +aspetto +fiume +piave +nervesa +battaglia +tv +renzi +alfano +sanno +difendere +confini +vadano +difenderemo +meno +domenica +maggio +ore +referendum +signora +candidata +pd +liguria +vuole +accoglierli +intanto +gran +bretagna +spagna +austria +francia +respingono +difendiamo +confini +condivide +renzalfano +bellissima +piazza +feltre +voglia +lega +governo +renzi +imu +terreni +agricoli +montagna +raddoppio +iva +pellet +riscaldamento +milioni +tolti +scuole +ospedali +montagna +moretti +me +ottima +birra +guarda +condividi +francia +difende +confini +espelle +clandestini +italia +invece +porte +aperte +alberghi +cambierà +anni +terremoto +emilia +mentre +ancora +cittadini +italiani +vivono +fuori +casa +stato +italiano +pagando +colazione +pranzo +cena +albergo +presunti +profughi +schifo +pazienza +finita +amici +chiedo +sforzo +sostenere +luca +zaia +sera +confronto +tv +sky +potete +televotare +scaricando +app +gratuita +skytg24 +telefonino +invece +abbonati +altro +telecomando +programma +visibile +canali +sky +canale +digitale +terrestre +oppure +via +internet +http +video +sky +it +news +diretta +grazieeeeee +scelgozaia +basta +violenza +rossa +pensate +vota +maggio +complice +invasione +corso +europa +frega +almeno +governo +italiano +svegli +inizi +difendere +confini +francia +regno +unito +tanti +altri +paesi +sospendere +schengen +bloccare +partenze +barconi +può +deve +prima +troppo +tardi +guarda +diffondi +lega +smaschera +ladro +tunisino +presunto +profugo +diretta +tv +fine +sputtanato +fenomeno +fa +balletto +fronte +telecamera +prenderci +ruspaaaaaaa +sindaco +firenze +pd +parla +banche +ridicolooooooooooo +miliardi +spariti +monte +paschi +siena +intascati +grazie +gente +perbene +uova +regala +mangia +miliardi +rubati +pensionati +fenomeno +vuole +restituire +solo +simpatico +bonus +esodati +rimasti +frega +insieme +ricorso +corte +europea +diritti +uomo +sciagurata +legge +fornero +renzi +fuorilegge +fuori +soldi +pago +casa +40mila +rom +uguali +diritti +uguali +doveri +accordo +condividi +mila +firme +gazebo +solo +weekend +grazie +amici +raccolta +prosegue +perdete +quarto +ora +tempo +andate +firmare +comune +battaglia +civiltà +buon +senso +darà +solo +vantaggi +stop +prostituzione +strada +liberiamo +città +info +www +vieniafirmare +org +lavoro +meno +clandestini +gente +coda +ventimiglia +firmare +referendum +lega +riaprire +case +chiuse +pisa +ragazzi +maggio +vota +renzi +casa +guarda +diffondi +insulti +bestemmie +sputi +poliziotti +fenomeni +tentano +impedirci +parlare +grazie +forze +ordine +balordi +solo +ruspa +aperitivo +marina +pietrasanta +trasforma +comizio +mezzo +sacco +gente +vai +nonostante +fumogeni +minacce +centri +sociali +tanta +gente +massa +scesa +piazza +lega +ritrovi +violenti +ruspa +poco +diretta +sky +tg +piazza +affollata +gente +fivizzano +lunigiana +piazza +spettacolare +lega +gualdo +tadino +renzi +arrivando +ascoltate +diffondete +minuti +commerciante +vicentino +zancan +smonta +palle +renzi +pd +sicurezza +amici +umbri +stasera +aspetto +perugia +piazza +bacio +sicurezza +meno +clandestini +viene +alfano +guarda +diffondi +ecco +succede +quando +giornalista +schiena +dritta +incontra +civiltà +rom +eccoli +eroi +anti +leghisti +lanciatori +fumogeni +mamme +bambini +ruspa +bombe +carta +fumogeni +pomodori +accendini +oggi +balordi +centri +sociali +braccio +armato +sinistra +provato +fermarci +riusciti +vinto +senigallia +perbene +altro +tanta +gente +piazza +nonostante +lancio +oggetti +abbraccio +ragazzo +colpito +taglio +collo +vede +immagini +tante +mamme +presenti +bimbi +purtroppo +spaventati +pensano +fermare +lega +capito +male +fantastica +piazza +porto +san +giorgio +urlatori +presenti +potrebbero +fare +po +volontariato +anziani +invece +rompere +palle +evvai +bella +gente +lega +ascoli +abbraccio +ragazzi +liceo +bigiato +venire +ascoltarmi +villabate +vicino +palermo +tanta +gente +voglia +sicilia +migliore +tanta +pena +lanciatori +frutta +verdura +urlavano +razzisti +cosa +possiamo +dirgli +governo +chieda +scusa +restituisca +soldi +rubati +italiani +legge +fornero +mentre +qualcuno +clandestini +forze +ordine +piazza +così +agrigento +città +alfano +spettacolo +emozionante +domenica +maggio +votando +salvini +mandano +casa +crocetta +alfano +solito +ritornello +sinistra +bisogno +immigrati +italiani +figli +” +vediamo +fare +asili +nido +gratuiti +francia +magari +italiani +torneranno +fare +figli +ecco +cosa +succede +mentre +invalidi +campano +euro +mese +ascolta +condividi +schifo +fermiamo +mamma +poco +diretta +sky +tg +poi +ministero +tesoro +vicenda +fornero +pensioni +pomeriggio +sicilia +ormai +ogni +volta +incontro +troviamo +teppisti +organizzati +centri +sociali +tentano +violenza +impedirci +parlare +alfano +muove +dito +renzi +dice +parola +dite +governo +complice +migliaia +persone +incontrate +poi +soliti +violenti +centri +sociali +attaccano +forze +ordine +fermo +alfano +capace +lavoro +permetta +gente +perbene +manifestare +guardate +accoglienza +stupenda +foggia +abbraccio +studenti +liceo +volta +perso +qualche +ora +lezione +venirmi +ascoltare +giustificati +bari +sala +strapiena +parla +sanità +pugliese +funziona +agricoltura +massacrata +tasse +sicurezza +lavoro +lascia +puglia +rappresentanti +operai +natuzzi +casa +tempo +casa +sinistra +razzista +italiani +eccezionale +accoglienza +bellissima +lecce +salento +puglia +razzismo +sinistra +stancato +sotto +programma +oggi +mercoledì +puglia +sicilia +passando +roma +ferma +perduto +programma +maggio +domenica +ore +conferenza +stampa +lecce +via +mare +altro +sede +salvini +ore +incontro +pubblico +lecce +grand +hotel +tiziano +congressi +viale +porta +europa +ore +incontro +pubblico +bari +hotel +villa +romanazzi +carducci +via +giuseppe +capruzzi +maggio +lunedì +ore +conferenza +stampa +presentazione +candidati +comune +andria +hotel +cristal +palace +via +firenze +ore +incontro +pubblico +foggia +hotel +cicolella +via +xxiv +maggio +ore +roma +teatro +brancaccio +via +merulana +maggio +martedì +ore +conferenza +stampa +presso +segreteria +regionale +catania +via +orto +limoni +n +ore +pedara +ct +ore +gela +cl +ore +agrigento +ore +comizio +ore +martedì +la7 +maggio +mercoledì +ore +marsala +ore +villabate +pa +ore +trasmissione +matrix +canale5 +presunti +profughi +lamentano +accoglienza +italiana +tornate +casaaaaa +ascoltate +diffondete +condivide +gad +lerner +parte +amici +oggi +attivo +tesseramento +ufficiale +salvini +sito +www +noiconsalvini +org +iscriviti +aperto +già +partecipato +fase +censimento +pre +adesione +altro +nuovi +aspetto +tanti +regioni +centro +sud +isole +tornare +insieme +essere +sicuri +liberi +forti +coccola” +violenti +balordi +lanciatori +molotov +forze +ordine +sempre +ritirare +carica +stipendio +senatore +vita +signor +mario +monti +altro +restituire +soldi +milioni +pensionati +disabile +italiano +genitori +italiani +nonni +italiani +deve +campare +euro +mese +sbarca +invece +vitto +alloggio +oltre +euro +mese +vergogna +fermiamo +stato +ribaltiamo +gran +finale +rovereto +sala +piena +persone +fuori +riescono +entrare +spettacolo +ovviamente +potevano +mancare +contestatori +urlanti +ruspa +parlamentare +pd +ringrazia +monti +letta +renzi +fornero +vada +dire +tanti +italiani +grazie +perso +lavoro +poco +collegamento +ala +trento +diretta +rete +piazza +stupenda +pacifica +piena +gente +perbene +trento +renzi +arrivandooooo +incredibile +piazza +matteotti +strapiena +gente +lega +bolzano +togliere +strade +regolamentare +ripulire +tassare +prostituzione +vai +comune +metti +firma +referendum +riaprire +case +chiuse +può +fare +info +vieniafirmare +org +poi +avanza +tempo +vado +rubare +dice +rom +doppio +lavoro +ruspa +milano +pulita +volto +scoperto +piace +guardate +amici +onorevole +picierno +pd +dà +lezioni +buona +educazione +aspetto +oggi +milano +piazza +scala +viene +pisapia +ecco +tv +giornali +fatto +vedere +accoglienza +milanesi +sindaco +incapace +protettore +centri +sociali +aspetto +oggi +milano +piazza +scala +viene +pisapia +insulti +sbirri +cazzo +fare +possiamo +fare +sesso +selvaggio +cella +orgoglioso +signora +voti +lega +stomaci +forti +guardare +condividere +rischio +pericolo +amici +guardate +condividete +imbecille +pena +dareste +spettacolo +centinaia +persone +piazza +lega +montecatini +terme +vuoi +vedere +gente +inizia +stancarsi +renzi +incontro +vivaisti +provincia +pistoia +aziende +esportano +alberi +mondo +ovviamente +senza +nessun +contributo +parte +stato +europa +signor +rom +perseguitati +vogliamo +piccoli +campi +case +periferia +paga +europa +cioè +bastaaa +notte +serena +amici +gente +stupenda +incontrata +stasera +dice +cose +cambieranno +parlamentare +migrante +sinistra +serve +operazione +mare +nostrum +grande +ricoveratelaaaa +juncker +dovremmo +aprire +porte +miliardo +africani +matti +milioni +disoccupati +posto +solo +immigrato +oggi +premio +buonista +spese +italiani” +vince +giornalista +repubblica +clandestini +dice +possiamo +ospitarne +ancora +tanti +” +accoglierà +casa +strasburgo +ennesimo +ipocrita +dibattito +immigrazione +presidente +commissione +europea +juncker +appena +detto +bisogna +aprire +porte +vogliamo +gente +entri +finestra +avanti +secondo +pd +applaudito +convinto +ricoveratelo +proprio +vuole +apra +porte +casa +leghista +però +ascoltate +parole +scrittrice +sveva +casati +modignani +invasione +corso +chiarezza +buonsenso +senza +ipocrisia +piace +fate +attenzione +diffondete +amici +rom +ecco +frego +auto +italiani +senza +fare +giorno +galera +” +ruspa +sms +arrivato +ieri +buonasera +salvini +proprietario +capannone +firenze +occupato +rom +ormai +anni +riesco +liberarlo +nonostante +varie +denunce +compenso +stato +chiede +altro +comunque +pagamento +imu +pazzesco +paga +renzi +ovviamente +quel +capannone +andrò +visitare +prestissimo +dite +ruspa +bella +democrazia +compagni +violenza +mai +ragione +mai +fate +paura +noooooooo +macerata +cittadini +perbene +molti +giovani +piazza +ascoltare +proposte +lega +grazie +poca +distanza +perditempo +centri +sociali +lanciare +solite +uova +genitori +tirino +schiaffi +educativi +hotel +house +porto +recanati +appartamenti +spaccio +armi +prostituzione +abusivismo +inferno +manifestanti +pd +cgil +insieme +abusivi +centri +sociali +bloccato +altroingresso +palazzo +vanno +bene +casino +spaccio +pensare +chiedere +aiuto +lega +stati +cittadini +africani +perbene +soluzione +certa +gente +ruspa +facebook +bannato +aver +scritto +parola +zing +ro +sinceri +democratici +centri +sociali +possono +vantarsi +pubblicamente +pagina +lancio +uova +fumogeni +altri +oggetti +gazebo +ancona +rischiando +colpire +mamme +bambini +presenti +vergogna +ovviamente +alfano +dorme +tace +figli +papà +centri +sociali +lanciato +uova +arance +cittadini +ancona +accolto +lega +bella +democrazia +compagni +fate +paura +nooooooooo +sicurezza +lavoro +meno +clandestini +meno +zecche +rosse +marche +può +soliti +violenti +sinistra +lega +torino +poi +magari +vanno +piazza +difendere +democrazia +pena +andiamo +qualche +volta +rubare +dice +rom +hobby +furto +ruspa +ancora +baby +ladre +rom +ancora +borseggi +ancora +risate +genitori +avanti +amici +mattino +verità +scomode +danno +fastidio +santoro +compagni +gente +perbene +ringrazia +tempo +servizio +completo +http +x2nnv4i +milioni +banca +magari +bollette +gratis +fa +incazzare +condividi +salvini +vescovone +ragione +persone +sala +tanta +gente +fuori +lega +cecina +provincia +livorno +eccezzzzzionale +vedere +credere +ciao +ciao +kompagni +europa +frega +onu +muove +dito +allora +italia +italia +difendere +confini +fermare +invasione +spettacolare +accoglienza +piazza +grosseto +lavoro +sicurezza +meno +sprechi +meno +ruberie +toscana +tantisssssima +gente +lega +stasera +travagliato +renzi +arrivando +ascoltate +divulgate +gestione +immigrazione +renzi” +stop +governo +incapaci +altro +indulti +sconti +depenalizzazioni +certe +bestie +solo +galera +buttare +chiave +blocco +navale +fermare +partenze +smetterla +arricchire +scafisti +terroristi +meno +persone +partono +meno +muoiono +piazza +strapiena +belluno +gente +stupenda +persone +generose +accoglienti +vogliono +arriva +rispetti +regole +bene +viva +ruspe +mietitrebbie +abbasso +boldrini +luca +zaia +tanti +giovani +inaugurazione +nuova +sede +lega +villorba +solo +oggi +ventina +18enni +detto +primo +voto +lega +altro +sbandati +centri +sociali +ecco +raccolta +differenziata +mega +campo +rom +barbuta +roma +preavviso +poi +ruspa +bisogna +allestire +nord +africa +centri +identificazione +blocco +migliaia +clandestini +profughi +finanziano +mafie +terroristi +renzi +dorme +pensa +legge +elettorale +blocchiamo +partenze +miliardi +spendere +soldi +vanno +destinati +vittime +legge +fornero +italiani +altri +violenti +vanno +piazza +volto +coperto +bastoni +spranghe +poliziotto +carabiniere +sempre +verità +coraggio +parole +papa +genocidio +parte +turchia +milioni +armeni +stato +turco +dopo +secolo +rifiuta +riconoscere +no +turchia +europa +ascoltate +diffondete +ecco +rom +vogliono +integrare +boldrini +giorni +vigore +infame +legge +fornero +solo +lega +batte +cambiarla +ragazzi +acqua +luce +gas +pagate +casa +gratis +ascoltate +divulgate +vergogna +fermiamo +mare +gente +stamattina +giambellino +periferie +milanesi +abbandonate +pisapia +lega +rovigo +sfigati +centri +sociali +parte +persone +perbene +altra +arriviamo +qualche +vescovone +abita +certo +periferia +scandalizza +parole +campi +rom +dite +solo +ipocrisia +qualcuno +guadagna +italia +benvenuto +lavora +integra +semafori +lancia +cofani +macchine +rompendo +palle +soprattutto +donne +benvenuto +mandato +foto +twitter +haragionesalvini +pare +vinto +stasera +grazie +amici +insieme +può +guardate +diffondete +governo +razzista +clandestini +hotel +piscina +italiani +macchina +cantina +sabato +domenica +piazza +vieni +firmare +www +chiedoasilo +org +europa +esistono +campi +rom +diritti +doveri +casa +compri +affitti +altri +cittadini +ragazzi +credere +ascoltate +divulgate +sabato +domenica +piazza +vieni +firmare +www +chiedoasilo +org +corrotti +meno +chiacchiere +renziane +sola +semplice +regola +zero +sconti +sbaglia +paga +montagna +rispetto +silenzio +amicizia +pace +qualche +valore +rischia +essere +perso +arrendiamoci +vincere +maggio +mandare +casa +renzi +alfano +mezzo +operai +fincantieri +sestri +levante +posti +lavoro +difendere +governo +purtroppo +frega +luna +ciascuno +arrende +ama +terra +gente +notte +serena +amici +altro +giorno +andato +ecco +altro +parlamentare +pd +racconta +supercazzata +euro +tasse +ridotte +sentite +clandestini +italia +aprile +aspetto +tantissimi +piazze +firmare +domanda +asilo +politico +renzi +alfano +boldrini +sinistri +vari +cominceranno +capire +qualcosa +secondo +chiedoasilo +elenco +gazebo +prossimi +giorni +www +chiedoasilo +org +renzi +esibisce +donne +oggetto +quote +rosa +coinvolgiamo +concretamente +occuparsi +legge +fornero +sicurezza +lavoro +governo +renzi +regala +sconti +corrotti +mesi +carcere +meno +ogni +anno +buona +condotta +supermercato +corruzione +altro +certezza +pena +intanto +europa +regala +altri +miliardi +ucraina +disoccupati +pensionati +italiani +arrivano +fine +mese +inaugurazione +nuova +sede +lega +spoleto +umbria +speranza +orgoglio +progetti +coraggio +accesso +piazza +manifesta +lega +torino +bloccato +grate +ferro +evitare +attacchi +maledetti +centri +sociali +roba +matti +democrazia +libertà +piazza +moncalieri +squadra +proverà +strappare +comune +sinistra +parolaia +dopo +vent +anni +candidato +sindaco +grande +beppe +furino +capitano +juve +anni +grintoso +allora +coraggioso +oggi +tantissimi +cittadini +arezzo +davanti +sede +banca +etruria +compagni +fuori +soldi +soliti +centri +sociali +difendono +amici +abusivi +clandestini +momento +crisi +economica +quando +parla +casa +lavoro +vengono +prima +italiani +on +ginefra +pd +vorrebbe +denunciarmi +mentre +rocco +buttiglione +uomo +merda +poveretti +chaouki +sua” +commissione +verificare +italia +tratta +bene +immigrati +lasagne +hotel +abbastanza +buone +bambini +vendemmiano +imbottigliano +vino +solidarietà +amici +cantina +soave +vinitaly +soci +resistono +verona +vinitaly +regalo +luca +zaia +piace +delegazione +taxisti +fiorentini +traffico +firenze +casino +ncd +renzi +elezioni +vogliono +solo +salvini +salviniani” +dice +formigoni +terrorizzato +voto +italiani +delinquenti +pietà +nemmeno +anziani +poi +governi +mettono +piede +libero +indulti +svuotacarceri +italia +grazie +alfano +grazie +renzi +alberi +fiore +madonnina +bella +padova +domani +giovedì +padova +presentare +proposte +economiche +piccole +medie +imprese +flat +tax +abolizione +studi +settore +basta +stato +ladro +cambiare +può +gruber +salvini +chiede +scusa +fornero +stappo +bottiglia +dica +tanti +italiani +fregati +preferisco +brindare +quando +cancellato +legge +vergogna +spostare +africa +italia +ingiusto +demenziale +spiega +alfano +renzi +mangia +immigrazione +clandestina +ve +spiega +ispettore +chaouki +pd +sala +tv +nuova +affrescata +disposizione +presunti +profughi +monselice +salotto +così +campo +san +martino +provincia +padova +tanta +bella +gioventù +intitolazione +via +ricorda +martiri +beslan +morti +bambini +mano +terroristi +giù +mani +bambini +futuro +aziende +ginocchio +europa +frega +preferisce +perdere +tempo +misurare +vongole +fuori +gabbia +matti +ecco +magico +mondo +lella +costa +immigrati +unici +mezzi +pubblici +alzarsi +lasciare +posto +anziani +autobus +così +bello +magico +europa +processa +putin +preferisco +tanti +euro +buffoni +tortelli +zucca +mantovani +meglio +secondo +signor +battista +corriere +sera +paranoico +voglio +regalare +cittadinanza +italiana +chiunque +nasca +italia +magari +clandestini +orgoglioso +essere +paranoico +fesso +ammazziamoli +facciamoli +crepare +carabinieri +merda +ideali +deve +essere +ammazzato +democrazia +gabbia +piombò +studiosa +populismi” +vicepresidente +emilia +romagna +indovinate +partito +delinquente +magari +armato +entra +casa +negozio +proprietà +cittadino +esiste +eccesso +legittima +difesa +mai +aspetto +sabato +mattina +genova +liberare +liguria +anni +oppressione +malagestione +sinistra +edoardo +rixi +lega +torna +dare +speranza +voce +cittadini +videomessaggio +piazza +roma +renziacasa +grazie +marine +altra +europa +possibile +volte +grazie +idee +coraggio +civiltà +futuro +grazie +roma +sabato +ore +piazza +popolo +renziacasa +marinoacasa +simpatici +via +negrotto +periferia +milano +tanti +campi +rom +presenti +italia +sgomberare +solo +chiudere +subito +meno +sabato +febbraio +ore +piazza +popolo +roma +dire +insieme +renziacasa +info +www +renziacasa +com +info +renziacasa +com +aderisci +evento +fb +ufficiale +https +www +facebook +com +events +peccato +sabato +roma +ore +piazza +popolo +renziacasa +sinceri +democratici +vorrebbero +impedire +manifestazione +inviamo +abbraccio +sabato +roma +renziacasa +dedicato +radical +chic +sinistra +attico +centro +magari +ricco +conto +banca +dicono +immigrazione +avanti +accogliamoli +italia +posto +stato +troppo +buono +euro +giorno +mantenere +ogni +immigrato +quindi +euro +mese +enorme +business +italiani +difficoltà +cooperative +arci +generosi +vari +ringraziano +sinceri +democratici +sabato +riempiamo +roma +renzi +marino +casa +argomenti +nemici +lega +salvini +posto +diciamo +chiaramente +immigrazione +incontrollata +grande +business +trafficanti +esseri +umani +tanti +mangiano +italia +dite +fatti +belve +assaltano +gioielleria +mazze +pistole +kalashnikov +dentro +ragazza +indifesa +graziano +stacchio +coraggio +interviene +ora +qualcuno +vorrebbe +risarcimento +famiglia +bandito +ucciso +vergogna +iostoconstacchio +roba +matti +ecco +amici +boldrini +auto +finta +scena +custodisce +sinistra +immigrazione +diritto +riteniamo +senza +tetto +senza +lavoro +italiani +diritti +rispetto +sbarca +domani +mattina +punto +sabato +roma +ore +renziacasa +http +www +renziacasa +com +mosca +nutella +spopola +morti +anno +mediterraneo +vittime +coscienza +incoraggia +persone +partire +basta +sprecare +soldi +contribuenti +evitare +nuove +stragi +mare +fermiamo +partenze +aiutiamoli +casa +truppe +nato +invece +giocare +guerra +russia +vadano +sterminare +bestie +isis +sgozzano +bruciano +vivi +esseri +umani +graziano +benzinaio +vicentino +sparato +bandito +messo +gioco +propria +vita +difendere +altri +occorre +cambiare +codice +penale +eccesso +legittima +difesa +paese +normale +meriterebbe +attestato +riconoscenza +accordo +iostoconstacchio +ieri +palermo +porto +cuore +parole +pescatori +agricoltori +siciliani +massacrando +mai +pensato +chiedere +aiuto +viene +milano +lasceremo +soli +promesso +bellissimo +sotto +acqua +almeno +cittadini +protestando +crema +dire +no +moschea +sindaca +pd +vera +democratica +fa +entrare +persone +consiglio +comunale +vergogna +udine +presunti +profughi +protestato +qualità +cibo +zuppa +legumi +frittata +pasta +carne +patate +mangiano +poco +male +tornino +casa +diamo +quel +cibo +italiani +bisognosi +persone +montesilvano +vicino +pescara +presentare +progetto +salvini +abruzzo +tanta +fiducia +ripaga +impegno +grazie +giorni +fa +bocciato +referendum +cancellare +legge +fornero +oggi +dice +occuperà +difficoltà +mattarella +presidente +incredibile +milan +fatto +gol +evidentemente +madonnina +guardato +giù +governo +amico +grandi +confindustria +banche +europa +anno +piccoli +sempre +reso +bella +forte +italia +sabato +febbraio +aspetto +roma +piazza +popolo +dire +insieme +italia +sinistra +renziacasa +state +cantando +capriola +angelino +salva +ora +poltrona +migliaia +imprenditori +artigiani +commercianti +chiuso +massacrati +tasse +sentite +cosa +coraggio +dire +serracchiani +vive +italia +marte +artigiano +darmi +mano +attrezzi +mestiere +corso +grande +rischio +lontani +bisticci +renzi +berlusconi +sala +strapiena +lega +aosta +domani +parteciperò +straordinaria +fiera +sant +orso +anni +storia +artigianato +stasera +felpa +porta +porta +francia +parla +lega +tanti +nomi +sinistra +peggio +altro +civile +italiani +votare +direttamente +presidente +repubblica +accordo +piace +vota +scheda +bianca +renzi +piace +passa +rivoluzione +bersani +prodi +stelle +berlusconi +chiedo +vittorio +feltri +domani +votiamo +ieri +sera +floris +credo +aver +detto +maggioranza +italiani +pensa +renzi +renzate” +dite +stato +chiaro +pacchi +miliardate +donati +grecia +grazie +quei +geni +monti +letta +renzi +invece +aiutare +italia +deciso +aiutare +mondo +italiani +cornuti +mazziati +senza +cittadini +deciso +nulla +consulta +bocciato +referendum +finisce +battaglia +lega +legge +fornero +continuerà +ogni +sede +ogni +mezzo +governo +ammette +clandestini +nascondono +potenziali +terroristi +ben +arrivati +lega +ripete +mesi +renzi +riferisca +subito +parlamento +smetta +usare +marina +militare +aiutare +scafisti +confini +vanno +difesi +quirinale +prodi +amato +veltroni +fassino +votino +renzi +berlusconi +parlamento +occupa +legge +elettorale +anziché +problemi +lavoro +gente +me +fa +schifo +lega +amato +quirinale +vota +nemmeno +minacciano +morte +mancano +giorni +milioni +italiani +devono +poter +decidere +milioni +italiani +devono +poter +cancellare +infame +legge +fornero +semestre +chiuso +immagine +bellissima +grande +manifestazione +parigi +fenomenooo +morte +persone +pd +dichiarato +guerra +così +difficile +capire +renzi +europa +mesi +palle +risultati +zero +strage +parigi +roberta +pinotti +pd +religione +entra +ministro +difesa +renzi +casa +secondo +lia +quartapelle +pd +nessun +terrorismo +matrice +religiosa +mondo +vivono +sinistri +buon +amici +riprendiamoci +futuro +prima +monti +poi +letta +ora +renzi +rubato +futuro +sabato +febbraio +riprendiamocelo +baita +artigiani +presepi +difendiamo +montagna +tradizioni +presepe +costruito +acqua +bravissimi +autori +strapieno +stasera +lega +albino +torna +casa +renzi +stasera +stinco +neve +milano +notte +serena +amici +sempre +bella +milano +auguri +giovani +lega +aiutare +babbo +natale +portare +regali +bimbi +ricoverati +ospedale +buzzi +milano +sorrisi +regalo +bello +donare +sangue +fa +bene +dona +riceve +carcere +bergamo +abbracciare +antonio +monella +imprenditore +bergamasco +condannato +anni +galera +aver +ucciso +rapinatore +purtroppo +grazie +stato +buono +delinquenti +severo +altro +persone +perbene +passerà +natale +lontano +casa +volesse +mandargli +messaggio +auguri +può +scrivere +antonio +monella +casa +circondariale +via +gleno +bergamo +grazie +auguri +amici +pensiero +tristi +persone +vergognano +storia +tradizioni +presepe +natale +dimentica +passato +futuro +cuore +montagne +luogo +cuore +centinaia +clandestini +profughi +clandestini +alloggiati +mantenuti +spese +italiani +palazzine +ex +villaggio +olimpico +torino +sinistra +ovviamente +fa +nulla +grazie +altro +commercianti +residenti +accolto +ringraziato +impegnato +tornare +tornare +torino +finché +legalità +verrà +rispettata +abbraccio +vigevano +voglia +lavorare +vivere +sicuri +credere +futuro +bravo +sindaco +sgombera +abusivi +turchia +occupa +militarmente +quarant +anni +mezza +cipro +ostina +negare +genocidio +armeni +bruxelles +qualche +genio +insiste +farla +entrare +europa +intanto +europa +regala +turchia +milioni +euro +anno +fuori +gabbia +matti +ciao +amici +strasburgo +oggi +votare +problemi +venezuela +mauritania +sudan +filippine +georgia +andate +quel +paese +disoccupazione +immigrazione +devastano +altroeuropa +battiamo +lega +invece +preoccupano +resto +mondo +fuori +unione +sovietica +europea +buon +natale +liceo +stellini +udine +quest +anno +può +festeggiare +buondì +amici +parte +strasburgo +spero +martedì +soddisfazioni +lavoro +poche +incazzature +fb +prodi +quirinale +maddai +tanti +imprenditori +italiani +incontro +organizzato +padova +ministri +russia +crimea +anno +pace +lavoro +dialogo +sanzioni +russia +danno +pazzesco +tanta +gente +regalata +tessera +lega +molti +prima +volta +grazie +nonostante +tagli +stato +rubati +altri +milioni +euro +lombardia +riusciamo +comprare +nuovo +acceleratore +lineare +radioterapia +malati +tumore +ospedale +sondrio +grazie +altro +generosità +valtellinesi +fondi +raccolti +cancro +primo +aiuto +onlus +contributo +provincia +sondrio +regione +lombardia +buona +politica +insieme +cittadini +può +fare +tanto +nonostante +brutto +tempo +tanta +gente +regalata +tessera +lega +molti +prima +volta +solo +gazebo +piazza +wagner +milano +nuovi +iscritti +grazie +grande +professor +alvin +rabushka +regalato +felpa +giù +mani +unione +italiana +ciechi +governo +renzi +tira +fuori +milioni +euro +tolto +ciechi +aliquota +fiscale +può +sala +strapiena +milano +seguici +diretta +sito +lega +nord +radio +padania +orgoglioso +costruire +italia +migliore +padellata +castagne +auguri +santa +lucia +amici +sempre +qualcuno +offenda +altra +felpa +bresciana +altro +dolce +gabbana +domenica +prossima +sedi +lega +nord +aperte +giornata +tesseramento +cambiare +puo +elenco +sedi +aggiornamento +http +www +leganord +org +index +php +aderisci +iscriviti +affollatissimo +incontro +giornalisti +stranieri +tanta +attenzione +idee +lega +mondo +molto +contento +pronto +floris +fa +juve +ieri +fiera +amici +consorzio +focaccia +recco +esempio +bontà +conoscere +tutelare +evitare +arrivino +tavola +schifezze +prodotte +materie +prime +scadenti +italiano +solo +nome +europa +difende +addio +europa +ciao +liguria +sinistra +dice +lega +fascista +quando +tratta +difendere +interessi +italiani +ora +parlamento +russo +incontrare +imprenditori +italiani +rischiando +perdere +colpa +sanzioni +economiche +idiote +imposte +bruxelles +italia +rimettendo +miliardi +euro +renzi +twitti +mangi +gelato +partenza +mosca +incontrare +autorità +russe +imprenditori +italiani +rischiano +perdere +dovrebbe +essere +renzi +difendere +made +italy +mondo +buona +serata +amici +fine +semestre +presidenza +italiana +europa +risultati +portato +casa +renzi +meno +zero +piazza +seriate +sindaco +consiglieri +davanti +presepe +realizzato +ex +alunni +scuola +edile +occupa +case +popolari +soprattutto +clandestini +eppure +governo +renzi +dopo +aver +abolito +reato +immigrazione +clandestina +ora +depenalizza +occupazione +abusiva +vergogna +intervistato +cristina +parodi +vita +diretta +andato +abbastanza +convincente +diciamo +chiedo +voti +prestanza +fisica +dovrei +andare +palestra +so +pur +esporre +idee +disposto +quasi +aspetto +domani +edicola +sorridere +allunga +vita +governatore +pd +toscana +enrico +rossi +presenta +vicini +casa +rom +dimmi +vai +dirò +avanza +tempo +incontrare +alluvionati +imprenditori +disoccupati +magari +piacere +bicchierino +notte +serena +amici +armando +siri +pin +sabato +dicembre +diretta +streaming +radio +tv +proposta +rivoluzione +fiscale +lega +aliquota +fiscale +unica +ecco +squadra +consiglieri +regionali +difenderanno +diritti +cittadini +emilia +romagna +gruppo +giovane +storia +lavorooo +strasburgo +voto +parlamento +europeo +compresi +pd +forza +italia +appena +salvato +poltrone +vergognosa +commissione +europea +così +potranno +continuare +massacrare +economia +italiana +piace +europa +viva +tombini +ghisa +abbasso +ride +mai +stesso +prime +riflessioni +emilia +romagna +pallone +renzi +sgonfiando +lega +vola +comunità +cresce +giorno +giorno +ovunque +pochi +amici +potenti +tanti +amici +gente +clima +derby +fatto +dovere +emilia +romagna +emiliani +romagnoli +oggi +iovoto +cambiare +puo +bologna +tante +idee +tanta +passione +tanta +voglia +cambiare +bravi +ragazzi +centri +sociali +danneggiato +sede +pd +identificato +tizio +salito +cofano +macchina +spero +condannato +galera +spalare +fango +zone +alluvionate +palazzo +governatore +cento +dopo +terremoto +niente +evviva +stato +regione +emilia +cittadini +ringraziano +pd +splendida +busseto +verdi +ricchezza +purtroppo +certa +politica +vuole +valorizzare +ragazzi +testa +cambiare +può +oggi +tour +fabbri +salvini +emilia +chiusura +bologna +ore +ore +incontro +cittadinanza +rivergaro +pc +presso +mercato +piazza +paolo +ore +presidio +stop +immigrazione +altro +rivergaro +pc +frazione +caratta +strada +provinciale +ore +incontro +cittadinanza +cortemaggiore +pc +presso +mercato +ore +incontro +cittadinanza +busseto +pr +piazza +verdi +ore +incontro +cittadinanza +reggio +emilia +spaghetteria +via +emilia +santo +stefano +ore +incontro +cittadinanza +cento +fe +piazza +guercino +ore +comizio +elettorale +bologna +teatro +fossolo +via +lincoln +ore +trasmissione +tv +onda +bersaglio +mobile +meno +emilia +romagna +iovoto +oggi +pomeriggio +venerdì +bologna +ore +aspetto +chiusura +campagna +elettorale +teatro +fossolo +via +lincoln +poveretti +sinistra +urlano +fuori +bar +forlì +meglio +rom +leghista +dicono +vita +vuota +devono +avere +domani +sera +bologna +cinema +teatro +fossolo +via +lincoln +persone +incontrate +riccione +incazzati +sinistra +spende +milioni +euro +filobus +attraversa +paesi +massacra +ambiente +serve +nulla +viva +riccione +no +trc +tanta +gente +lega +piazza +cattolica +mancavano +immigrati +mesi +mangiano +dormono +spese +italiani +hotel +royal +stelle +piscina +spiaggia +paese +civile +generoso +quei +letti +mette +disposizione +italiani +difficoltà +sbaglio +casa +grande +raoul +casadei +re +liscio +ringrazio +musica +amore +romagna +belle +parole +lega +aver +detto +domenica +vado +votare +voterò +bene +altre +amici +piace +liscio +me +meno +domenica +vicinaaaaa +emilia +romagna +iovoto +venerdì +pomeriggio +bologna +ore +aspetto +chiusura +campagna +elettorale +teatro +fossolo +via +lincoln +treno +cambiamento +passa +emilia +romagna +domenica +fino +sera +casa +sceglie +scegliere +alternativa +renzi +nasce +piazze +segreterie +partito +riguarda +alfano +mai +dite +meno +domenica +vicina +emilia +romagna +iovoto +mettete +qualche +bella +foto +cartello +iovoto +emilia +romagna +social +mattina +palazzo +lombardia +insieme +deborah +compagnoni +governatore +roberto +maroni +assessore +sport +antonio +rossi +flavio +ferrari +presidente +cancro +primo +aiuto +flavio +roda +presidente +nazionale +fisi +conferenza +stampa +cancro +primo +aiuto +presentazione +eventi +invernali +qualcosa +invidiare +sinistra +finale +emilia +piccola +azienda +ripartita +dopo +terremoto +dipendenti +mettono +anima +insieme +padroni +altro +sindacati +sapete +novità +poveretti +nulla +meglio +fare +creare +falsi +profili +copiando +foto +fingendosi +me +alcuni +commenti +fate +attenzione +vorrei +rimaneste +male +livello +frustrazione +sinistri +senza +confini +buon +segno +asilo +scuola +elementare +ricostruite +dopo +terremoto +sindaco +alan +fabbri +splendida +comunità +bondeno +piacerebbe +tutta +emilia +romagna +risorgesse +così +incontro +commercianti +cesena +stop +nuovi +centri +commerciali +via +limite +spesa +euro +contanti +no +obbligo +bancomat +controlli +orari +contratti +lavoro +negozi +altro +gestiti +immigrati +sospensione +durc +terremotati +alluvionati +negozio +chiude +sempre +sconfitta +cambiare +può +piadina +romagnola +azienda +orva +bagnacavallo +ravenna +eccellenza +italiana +piadine +sfornate +vendute +ogni +giorno +nonostante +tasse +burocrazia +imprese +crescono +bravi +aliquota +fiscale +unica +potrà +andare +meglio +toilette +bar +rione +rosso +faenza +riso +minuti +diretta +splendida +faenza +collegamento +centinaia +persone +incontrate +abbracciate +mercato +forlì +ovviamente +soliti +contestatori +stavolta +almeno +sfasciato +niente +insieme +alcuni +agenti +polizia +locale +piacenza +quartiere +roma +risse +spaccio +accoltellamenti +persone +perbene +paura +uscire +casa +telecamere +sorveglianza +altro +sequestro +appartamenti +affittati +nero +controlli +giardini +verifiche +orari +apertura +chiusura +negozi +etnici +servono +tanti +soldi +solo +buona +volontà +ah +già +piacenza +governa +sinistra +cambiare +può +partire +domenica +novembre +incontro +agricoltori +provincia +piacenza +dicono +no +sanzioni +economiche +russia +rischio +migliaia +posti +lavoro +miliardi +mancata +esportazione +prodotti +renzi +dici +secondo +sondaggi +lega +crescendo +secondo +comunque +montiamoci +testa +continuiamo +lavorare +amici +dopo +tanti +incontri +minuto +relax +video +quiz +sapete +risposta +comprate +vocale +incontro +confartigianato +parma +aziende +chiuse +emilia +romagna +anno +follia +via +studi +settore +stop +versamenti +inps +fa +aliquota +fiscale +unica +legge +elettorale +chissenefrega +emilia +piace +imola +spalle +struttura +ospita +immigrati +arrivano +zone +guerra +finché +emilia +terremotato +alluvionato +fuori +casa +alberghi +vanno +pagati +altri +razzismo +emilia +romagna +vota +governatore +pd +stato +condannato +così +giusto +ricordarlo +monumento +marco +pantani +qualunque +giudizio +grande +ciclista +regalato +grandi +emozioni +cesenatico +risultato +raggiunto +dopo +manifestazioni +raccolte +firme +oggi +finalmente +immigrati +soggiornavano +mesi +spese +italiani +albergo +stati +allontanati +fusignano +grande +arrigo +sacchi +milan +cuore +vittorie +splendidi +militanti +amministratori +modigliana +val +tramazzo +romagna +milioni +euro +danni +alluvione +nessuna +risposta +parte +stato +vergogna +colazione +torta +mele +mitici +formaggini +susanna +buona +domenica +amici +distruggete +macchine +altri +raccomando +immagini +parlano +chiaro +idea +democrazia +fonti +resto +carlino +repubblica +it +sala +strapiena +montesilvano +convegno +asimmetrie +org +dopo +euro +prima +liberiamo +europa +moneta +folle +prima +torniamo +lavorare +sorridere +così +balordi +centri +sociali +distrutto +macchina +prima +ancora +avvicinassimo +campo +rom +bene +bastardi +poveri +rom +paghiamo +bollette +famiglia +dice +assessora +bolognese +sinistra +taci +vergognati +disastroso +inciucio +renzi +cinquestelle +consulta +csm +grillo +capisco +dispiace +elettori +basta +sinistra +euro +tasse +immigrazione +incontrollata +renzi +fiato +corto +tante +parole +pochi +fatti +guardiamo +avanti +pronto +gruber +stamattina +bologna +gente +aggredisce +insulta +leghisti +sinistra +emiliana +spese +italiani +offre +gratis +acqua +luce +gas +altro +integrazione +voto +lega +voto +chiudere +sgomberare +campi +rom +libri +belli +letto +ombra +vento +carlos +ruiz +zafon +altri +titoli +suggerire +stanchi +modello +rosso +emilia +romagna +alternativa +renzi +rappresentiamo +milioni +italiani +palle +piene +sinistra +portando +rovina +amici +altro +emiliani +romagnoli +alan +fabbri +anni +apprezzatissimo +sindaco +terremoto +domenica +novembre +possiamo +dare +grosso +dispiacere +pd +state +intanto +mettete +piace +pagina +diffondiamo +https +www +facebook +com +fabbripresidente +merlo +preoccupato +esaurito +festa +zucca +lega +ziano +piacentino +passate +serata +halloween +assaggiare +yogurt +panna +cotta +latteria +pievetta +castel +san +giovanni +cercatela +internet +emozione +unica +altro +prodotti +arrivano +estero +ricchezza +casa +stati +visitati +ladri +litri +gasolio +fregati +altra +storia +poco +collegamento +sky +tg +azienda +agricola +piacentino +vittima +furti +aggressioni +parte +stranieri +vengono +presi +giorni +già +fuori +ecco +riforma +giustizia +fare +calendasco +provincia +piacenza +anni +ostello +ospita +spese +italiani +decine +immigrati +collegamento +internet +gratis +vergogna +razzismo +nessuno +grazie +comunità +cresce +progetta +futuro +intervista +iene +altro +giorno +piaciuta +mps +modello +rosso +palle +piene +novembre +voti +emilia +romagna +scegli +sindaco +scegli +alan +fabbri +lega +moriremo +renziani +affollatissimo +incontro +piazza +siena +pazzesco +esempio +fallimenti +sinistra +pd +banca +università +ospedale +squadre +calcio +basket +tocca +pd +muore +gente +svegliando +oggi +roma +renzi +chiuso +palazzo +mezzo +pompieri +precari +vogliono +continuare +fare +lavoro +lega +cresce +appassiona +propone +dovremmo +dialogare +secondo +castagne +braulio +amici +serata +tranquilla +amici +presento +juncker +presidente +commissione +europea +maggiori +responsabili +disastro +portato +saluto +dite +arrivato +forte +chiaro +parlamento +europeo +insiste +rompere +palle +russia +ungheria +invece +preoccuparsi +problemi +cittadini +renzi +putin +scelgo +putin +emergenza +italiana +lavoro +aziende +chiudono +milano +lecce +passato +lasciamo +amichetti +bruxelles +merkel +guardiamo +futuro +panino +crudo +mozzarella +succo +frutta +parte +strasburgo +buona +giornata +amici +bello +naviglio +milano +così +pulito +curato +tendone +strapieno +sotto +monte +bergamasca +buona +politica +ferma +mai +commosso +felice +straordinaria +giornata +donne +uomini +giovani +anziani +nord +sud +bimbi +sorridenti +poliziotti +tranquilli +nessuno +spacca +vetrine +domani +amici +clandestini +schiavisti +rossi +vita +ancora +dura +grazie +piazza +duomo +ora +spettacolo +coda +corteo +ancora +difficoltà +partire +grazie +salvini +lega +stopinvasione +stopinvasione +milano +tantissimi +lega +salvini +dicono +cantante +rap +fatto +inno +beppe +grillo +oggi +lega +milano +devo +dire +riempie +gioia +adesso +fino +domani +sera +mettere +immagine +copertina +facebook +stopinvasione +minuti +incontro +cordiale +costruttivo +vladimir +putin +parlato +immigrazione +pace +imprese +italiane +valori +comuni +altra +europa +possibile +dialoga +minacciano +guerre +sanzioni +amici +emiliani +romagnoli +serve +aiuto +pochissimi +giorni +rimasti +firme +necessarie +presentare +alan +fabbri +apprezzatissimo +sindaco +terremoto +lista +lega +nord +prossime +elezioni +altro +regionali +trovate +tutte +info +luoghi +orari +www +leganord +org +fabbripresidente +oppure +potete +chiamare +emilia +romagna +conto +momento +relax +foto +piccolo +salvini +facilmente +riconoscibile +pazienza +sinistri +buoni +soldi +altri +titoli +grande +spazio +lega +tg +seguito +canale +tv +russo +tv +italiana +sempre +solo +renzi +piccola +alessia +calavino +tn +dice +stopinvasione +iocisarò +quindici +anni +fa +quinta +potenza +economica +mondo +ora +ridotti +sappiamo +italia +francia +spagna +devono +uscire +euro +insieme +può +deve +amici +ecco +accolto +parlamento +russo +no +sanzioni +no +follie +bruxelles +no +terrorismo +islamico +gente +seria +vediamo +sabato +milano +nemici +euro +mostro +amici +dimentico +cinquestelle +votato +sinistra +abolire +reato +clandestinità +renzi +sostiene +politiche +idiote +bruxelles +russia +uccidono +lavoro +tante +imprese +parliamo +miliardi +export +italiano +rischio +altro +jobs +act +putin +alleato +nemico +sfondo +alcune +navi +marina +militare +russa +porto +sebastopoli +dite +chiediamo +qualcuna +prestito +mare +nostrum +visitato +flotta +russa +sebastopoli +repubblica +crimea +facciamoci +prestare +grande +nave +ospedale +aiutare +bisogno +mezzo +mare +usiamo +invece +navi +fermare +invasione +piazza +rossa +mosca +oggi +sposto +crimea +cittadini +scelto +referendum +aderire +federazione +russa +incontreremo +ministri +giornalisti +imprenditori +sperando +allacciare +rapporti +utili +lavoro +imprese +italiane +buona +domenica +amici +parti +necessaria +alleanza +russia +italia +lavorano +tante +imprese +italiane +colpa +sanzioni +orlo +disastro +pericolo +estremismo +islamico +putin +dialoga +gioca +guerra +corriere +accorto +missione +leghista +spiegato +priorità +aziende +posti +lavoro +vittime +sanzioni +società +italiane +operano +ricordo +renzi +gas +usiamo +viene +russia +saluto +piazza +rossa +mosca +città +pulita +tranquilla +mare +nostrum +stop +invasione +torniamo +vivere +sicuri +sereni +città +mosca +clandestino +lavavetri +campo +rom +ragazze +possono +prendere +metropolitana +notte +senza +paura +mare +nostrum +vorrebbe +putin +sabato +ottobre +piazza +duomo +milano +vietato +mancare +primi +importanti +incontri +mosca +oggi +alexei +pushkov +presidente +commissione +esteri +duma +fermare +sanzioni +costano +molto +italia +russia +altro +secondo +sede +ministero +crimea +enorme +opportunità +sviluppo +lavoro +tante +imprese +totale +sintonia +collaborazione +russia +unita +strasburgo +bruxelles +sorprese +agente +polizia +augusta +sicilia +buona +parte +clandestini +sparisce +letteralmente +nulla +altro +controlli +sanitari +prevenzione +quarantena +” +governo +renzi +alfano +invece +altro +posto +credete +poliziotto +http +www +ilgiornale +it +news +politica +altro +quarantena +esami +barconi +controllo +html +colpa +sanzioni +russia +aumento +tasse +temo +inverno +scaldarci +cucinare +tornerà +vecchie +maniere +lega +presente +festa +borgo +chiaravalle +centinaia +cittadini +dicono +ottobre +scoperto +vino +rosso +ligure +eccellente +granaccia +salute +vino +preferite +san +siro +forza +vecchio +cuore +rossonero +stamattina +corriere +piero +ostellino +dichiara +opinione +ragazzotto +fiorentino +sorta +mussolini +minore +tanto +parolaio +velleitario +impotente +rivolgendosi +renzi +altro +piacerebbe +ciò +suggerisce +salvini +spiegando +piace +austerità +imposta +merkel +europa +ritiene +sbagliata +deve +evitare +adottarla +semplice +no +grazie +editoriale +intitola +poche +chiacchiere +servono +fatti +temo +caso +trattandosi +renzi +rimarrà +fermi +chiacchiere +finta +cantargliele +poi +invece +obbedire +battendo +tacchi +berlino +bruxelles +fortuna +lega +europa +parodia +unione +sovietica +attuale +parole +ostellino +smetterà +mai +lottare +finta +mercato +via +val +maira +milano +donne +burqa +venditori +abusivi +chiedo +sindaco +stop +invasione +difendiamo +confini +milano +ottobre +ore +porta +venezia +inizio +corteo +ore +piazza +duomo +comizio +altro +ora +agire +stopinvasione +info +www +stopinvasione +org +https +www +facebook +com +events +elegante +pronto +diretta +piace +maglietta +pare +stasera +striscia +notizia +canale +esordiranno +nuova +imitazione +sottoscritto +bene +evidentemente +crescita +passa +inosservata +comunque +differenza +sinistra +sappiamo +ridere +commissione +bruxelles +parla +commercio +internazionale +matti +buonismo +tolto +dazi +riso +arriva +cambogia +risultato +mentre +europa +importava +altro +cambogia +solo +tonnellate +riso +migliaia +agricoltori +rovinati +rimasti +casa +lega +soli +combattiamo +schifo +difendiamo +prodotti +futuro +splendida +squadra +giovani +padani +stasera +valtellina +solo +movimento +politico +comunità +stop +invasione +minuto +intervento +oggi +canale +sembra +cliccate +vederlo +piace +condividete +https +www +dailymotion +com +video +x26syhn +razzismo +aiutiamo +prima +milioni +disoccupati +milioni +poveri +italiani +news +assaggiatori +grappa +davvero +associazione +interessante +san +daniele +grissini +bianco +friuli +difendere +agricoltura +bruxelles +massacrando +dovere +gusti +frontiere +cercatela +internet +splendida +manifestazione +culture +cibi +vini +tradizioni +gorizia +mare +foto +selfie +periferia +sud +milano +intero +palazzo +comunale +occupato +immigrati +soldi +pagare +affitto +luce +gas +spese +condominiali +devono +pagare +inquilini +regolari +soldi +bersi +centinaia +birre +ogni +sera +chiesto +sgombero +immediato +basta +barbone +milanese +notte +scorsa +dormiva +strada +panchina +molti +altri +casa +mentre +migliaia +immigrati +appena +sbarcati +dormono +comodamente +albergo +giusto +prima +milano +sabato +ottobre +stopinvasione +grazie +migliaia +persone +parecchie +ancora +leghisti +oggi +venute +veneto +pagando +tasca +darci +forza +battaglia +bruxelles +stato +ladro +altroinvasione +clandestina +legge +fornero +dare +speranza +lavoratori +disoccupati +famiglie +molti +siti +informazione +online +migliaia +persone +esistono +giornalisti +infami +amici +renzi +bravo +papà +meno +parlate +problemi +veri +gente +voglia +combattere +cittadella +spettacolo +emozione +uniti +vince +viva +persone +bene +buona +volontà +nord +sud +veneto +lombardia +sicilia +salento +dittatura +europea +altro +odia +autonomie +locali +governo +nazionale +esegue +ordini +vende +fumo +dimentica +italiani +mollate +allora +mollo +nemmeno +stanco +felice +grazie +fratelli +roma +dibattito +futuro +centrodestra +oggi +esiste +curioso +ascoltare +cosa +dirà +quagliariello +ncd +bellissima +festa +ospedale +bambini +buzzi +milano +harleysti +adoro +tradizioni +culture +identità +diversità +qual +cosa +bella +terra +strasburgo +discussione +allarme +ebola +aula +deserta +europa +frega +italia +dovrebbe +chiudere +subito +frontiere +immigrati +provenienti +zone +rischio +contagio +clandestini +liberi +scegliere +domenica +aspetto +cittadella +partiti +pochi +oggi +idee +passione +coraggio +cambieremo +futuro +grazie +tanta +gente +lega +brianza +via +legge +fornero +via +studi +settore +via +mare +nostrum +quel +fenomeno +renzi +abbaia +morde +guinzaglio +berlino +bruxelles +dice +rispetterà +vincoli +europa +gabbia +matti +politico +normale +vincoli +massacrano +altro +paese +fregherebbe +so +troverà +soldi +metterà +sola +mezza +tassa +andremo +roma +bastoni +intanto +cominciamo +milano +sabato +ottobre +stopimmigrazione +novembre +tutta +italia +nonpago +danneggiare +possibile +stato +ladro +montagne +acqua +beni +preziosi +proteggere +difendere +saluto +splendido +monviso +aiutare +immigrati +famiglie +«asili +nido +pubblici +gratuiti +francia +costerebbe +miliardi +euro +anno +costa +mare +nostrum +miliardi +euro +anno +questione +scelte +aiutare +immigrati +aiutare +famiglie +dite +renzi +dirà +» +piazza +strapiena +lega +torino +città +ancora +rossa +tanta +voglia +ripartire +lavorare +sognare +eccoli +tortelli +zucca +esiste +piatto +buono +tantissima +gente +festa +mantovana +ponti +mincio +tortelli +zucca +favola +grandi +militanti +lega +pontirolo +nuovo +bergamasca +passione +coraggio +partecipazione +strada +giusta +cambiare +cose +bella +serata +amici +lega +romanengo +moschea +crema +no +grazie +credo +sondaggi +però +meglio +così +http +www +liberoquotidiano +it +news +italia +sondaggio +ixe +pd +primo +html +benedizione +facchini +belle +tradizioni +popoli +portatori +quintali +storia +macchina +santa +rosa +spettacolo +viterbo +festa +santa +rosa +patrono +città +viva +tradizioni +culture +diversità +ogni +tentativo +omologare +cancellare +dimenticare +invadere +immigrati +dimentichiamo +india +soldati +buffoni +augurio +pronto +ristabilimento +massimiliano +latorre +abbraccio +famiglia +sabato +ottobre +piazza +milano +gridare +clandestini +casa +riprendiamoci +marò +barbara +gambaro +noale +ettari +serre +insalata +rucola +russia +mercato +«solo +prime +settimane +già +perso +euro +dovrò +lasciare +casa +persone» +politica +idiota +altro +bruxelles +uccide +agricoltura +italiana +intanto +paesi +fuori +blocco +egitto +tunisia +marocco +serbia +conquistano +mercati +via +sanzioni +russia +subito +http +corrieredelveneto +corriere +it +veneto +notizie +cronaca +agosto +devo +lasciare +persone +casa +blocco +russo +fa +prime +vittime +shtml +berghem +fest +foto +gruppo +giovani +lega +dopo +giorni +presidio +costretto +prefetto +bergamo +allontanare +decine +immigrati +parco +colli +bergamaschi +spuma +nera +indipendenza +accoppiata +militanti +ghisalba +prima +bergamaschi +solo +dopo +immigrati +prima +tappa +bergamasca +stasera +tanta +gente +tanta +voglia +cambiare +cose +verdello +ottimi +spiedini +costine +stretta +mano +antonio +monella +imprenditore +edile +bergamasco +condannato +anni +carcere +aver +ucciso +rapinatore +albanese +famiglia +versato +euro +risarcimento +antonio +merita +grazia +altri +dovrebbero +andare +galera +bottiglia +buon +bianco +siciliano +salute +bellissimo +piazza +strapiena +capriata +provincia +alessandria +serata +leghista +felice +persone +voglia +esserci +ribellarsi +fare +clandestini +parco +giochi +recco +miracolosamente +dopo +tweet +articoli +giornale +comune +ricordato +potano +piante +domani +bambini +potranno +tornare +giocare +missione +compiuta +amarcord +salvini +quarant +anni +fa +unico +parco +giochi +bambini +lungomare +recco +sporco +chiuso +settimane +piena +estate +comune +riesce +potare +alberi +no +comment +14novembre +quel +giorno +stato +vedi +niente +lavoro +me +famiglia +iva +te +do +muori +fame +idee +trovate +molte +articolo +qualcuna +aggiungere +ciascuno +parte +stato +affama +italiani +molto +male +tassazione +unica +abolizione +studi +settore +asili +nido +pubblici +gratuiti +stop +mare +monstrum +altro +riforma +legge +elettorale +costituzione +gente +ferma +parla +mutuo +altro +pagare +lavoro +manca +invasione +clandestini +renzi +solo +fumo +alfano +passera +centrodestra +lega +unica +alternativa +governo +immigrati +balle +nord +sud +prato +pontida +albero +vita +preghiera +sorriso +altro +centri +sociali +gente +vera +volontari +lega +oltre +persone +serata +leghista +pontida +gente +riesce +entrare +sotto +tendone +stop +immigrazione +palle +piene +presidio +corso +settimana +giorno +notte +parco +colli +bergamaschi +soggiorno +decine +immigrati +grazie +giovani +padani +grazie +lega +arrendiamo +trentino +vista +temperatura +estiva +vado +zabaione +echissenefrega +oggi +fatto +qualche +domanda +privata +condivido +articolo +completo +http +www +affaritaliani +it +politica +salvini +intervista +politica0708 +html +piace +cliccate +pollice +fondo +pagina +persone +lega +arcore +stop +immigrazione +lavoro +gente +molliamo +centinaia +persone +lega +arcene +bergamo +emergenza +disoccupazione +immigrazione +tasse +legge +elettorale +menate +simili +ecco +proposta +piace +ogni +sinistro +mantiene +clandestino +ora +palco +milano +marittima +esponenti +presunto +centrodestra +utile +discutere +tempo +sprecato +dite +spettacolare +colpo +occhio +rossa +milano +marittima +centinaia +persone +serata +leghista +piazza +grazie +romagna +centinaia +abusivi +vendono +centinaia +italiani +comprano +poi +magari +lamentano +immigrazione +clandestina +nessun +controllo +poi +stato +rompe +palle +artigiani +commercianti +scontrino +euro +arrendo +cambiare +può +renzismo +dà +euro +giorno +mese +ex +detenuti +insoddisfatti +stati +trattati +combatto +iostoconlevittime +guarda +video +https +www +youtube +com +watch +v +uwqdkgn9msk +novembre +sfida +statoladro +state +lezzeno +lago +como +serata +leghista +posti +belli +terra +domenica +luglio +caldo +afa +sala +padova +strapiena +lega +idee +gruppo +leghista +trasferta +padovana +sant +antonio +guarda +spalle +sondaggio +operazione +mare +nostrum +leader +lega +matteo +salvini +dichiarato +«mare +nostrum +sospesa +centri +pseudo +accoglienza +vanno +allestiti +nord +africa +là +mediterraneo» +accordo +italiano +dice +chissà +accorgerà +renzi +ora +collegamento +radio +base +centinaia +persone +piazza +lega +magenta +stop +immigrazione +diretta +immigrati +spediti +magenta +vitto +alloggio +pagato +cittadini +italiani +ospitalità +offerta +caritas +volete +pagate +centinaia +persone +lega +rossa +cavriago +reggio +emilia +ultima +città +italiana +statua +lenin +piazza +pranzo +cittadini +adro +franciacorta +state +passando +domenica +buon +appetito +adro +franciacorta +appena +finita +gara +salame +tipi +salami +diversi +scegliere +migliore +difficile +ancora +centro +immigrati +mineo +catania +guarda +bel +deposito +biciclette +davanti +villette +sicuramente +tutte +bici +regolarmente +acquistate +volontari +festa +lega +carpugnino +lago +maggiore +musica +tanta +gente +ottime +torte +politica +sana +volte +grazie +storia +storia +centro +accoglienza +mineo +campi +giochi +bambini +penso +ridotti +giochi +alcuni +giardini +pubblici +milano +incazzo +aria +condizionata +palme +giardino +sbarca +italiani +sempre +dentro +centro +mineo +negozi +fotografia +servizi +wi +fi +ristoranti +varranno +studi +settore +mercati +abusivi +interno +centro +vende +chissà +obbligo +bancomat +vale +immigrati +subito +ambientati +italia +sigarette +contrabbando +vendita +senza +problemi +pazzesco +villette +giardino +davanti +dietro +parabole +tetti +così +italiani +mantengono +immigrati +oggi +bivaccano +centro +accoglienza +mineo +catania +badia +calavena +terra +veneta +orgogliosa +tanti +giovani +alcuni +volontari +bellissima +festa +lega +vizzolo +predabissi +milanese +bravi +piace +matti +mangiare +crosta +grana +normale +notte +serena +me +militanti +leghisti +rovato +arrende +impegna +migliorare +domani +strapiena +festa +lega +quinzano +bresciano +bellissima +squadra +volontari +lavorando +parla +renzi +strasburgo +aula +desolatamente +mezza +vuota +vedete +tira +matteo +europa +diritti +donne +pakistan +cristiani +perseguitati +nigeria +tutte +cause +giuste +renzi +oggi +parlamento +europeo +parola +maro +anni +prigionieri +india +occupa +diseredati +mondo +meno +comincia +strasburgo +occasione +cravatta +leone +san +marco +marsupio +piemontese +stamattina +buonisti +scatenati +quasi +scafisti +salvini +brutto +sporco +cattivo +forse +dalai +lama +daranno +ascolto +stop +mare +nostrum +subito +giugno +novembre +rubando +estate +grazie +splendida +squadra +volontari +leghisti +festa +zogno +insieme +può +formaggio +piastra +polenta +birra +cucina +festa +zogno +val +brembana +tradisce +ingrasserò +signore +signori +maestà +adamello +adoro +montagna +basta +euro +stop +clandestini +lavoro +rivoluzione +fiscale +scommessa +aprire +lega +lega +mai +fare +voglia +date +occhiata +intervista +oggi +leggo +pareri +pane +burro +marmellata +yogurt +mela +ogni +tanto +bisogna +viziarsi +colazione +buona +giornata +amici +buon +cuore +accogliere +rifugiati +basta +bisogna +avere +coraggio +dire +quando +troppi +intervenire +paesi +onore +dalai +lama +porto +pozzallo +spalle +posto +sbarcano +migliaia +esseri +umani +qualcuno +specula +bloccare +subito +navi +mare +lorum +renzi +svegliaaaaa +diretta +maletto +provincia +catania +fragole +dolci +mondo +partita +bimbi +anni +maleducazione +alcuni +genitori +può +sentire +natale +boy +scout +cngei +milano +bellissima +esperienza +amicizia +natura +adoro +formaggio +unico +colesterolo +permette +bellissima +foto +sabato +domenica +giugno +vieniafirmare +capoluoghi +provincia +località +villeggiatura +gazebo +indicati +sito +www +vieniafirmare +org +ultima +occasione +firmare +referendum +altro +libertà +cancelliamo +fornero +clandestino +reato +prostituzione +legale +aboliamo +prefetture +libertà +espressione +no +privilegi +immigrati +sesto +referendum +ripristino +reato +immigrazione +clandestina +potrà +essere +firmato +municipi +gazebo +fino +luglio +info +info +vieniafirmare +org +tantissima +gente +festa +lega +bergamasca +molti +dopo +aver +preso +voti +spariscono +sempre +ore +mercato +via +fauchè +persone +fila +firmare +referendum +spettacolo +piazza +caneva +milano +vigili +multano +auto +parcheggiate +metri +trentina +abusivi +vende +schifooo +notte +serena +amici +bicchiere +grappa +ragazzi +comincia +rincorsa +renzi +piazza +piena +vittorio +veneto +bello +quando +buona +politica +buon +cibo +buon +vino +fantastica +giovane +motivata +squadra +leghista +preganziol +trevigiano +vince +scritta +muro +montecchio +maggiore +vicenza +poveretti +risata +seppellirà +spettacolo +chiesa +montichiari +madonnina +guarda +giù +amici +lumezzane +sana +montagna +bresciana +stasera +mezzanotte +diretta +rai +vado +felpa +serata +cascina +chiari +difendere +agricoltura +significa +difendere +futuro +figli +durante +ballarò +nuovo +traguardo +volte +grazie +comunità +sogna +lavora +cresce +ancora +sforzo +arrivare +firme +sabato +domenica +giugno +gazebata +conclusiva +firmare +referendum +vieniafirmare +cancelliamo +fornero +clandestino +reato +prostituzione +legale +altro +aboliamo +prefetture +libertà +espressione +no +privilegi +immigrati +chiusa +raccolta +municipi +può +ancora +firmare +gazebo +indicati +sito +http +www +vieniafirmare +org +verifica +vicino +oppure +disponibilità +sezioni +segreterie +provinciali +lega +nord +http +www +leganord +org +index +php +movimento +sedi +sezioni +aiutare +aprirne +info +info +vieniafirmare +org +ultimo +giorno +vai +municipio +firmare +referendum +libertà +cancelliamo +fornero +clandestino +reato +prostituzione +legale +aboliamo +prefetture +libertà +espressione +no +privilegi +altro +immigrati +info +info +vieniafirmare +org +raccolta +prosegue +fino +giugno +gazebo +indicati +sito +http +www +vieniafirmare +org +domani +giugno +ultimo +giorno +firmare +referendum +libertà +comuni +già +andato +firmare +gazebo +municipio +comune +cancelliamo +fornero +clandestino +reato +altro +prostituzione +legale +aboliamo +prefetture +libertà +espressione +no +privilegi +immigrati +info +info +vieniafirmare +org +raccolta +prosegue +fino +giugno +gazebo +indicati +sito +http +www +vieniafirmare +org +piccole +luci +mare +sorelle +cielo +guidino +lungo +cammino +notte +serena +amici +poco +essere +moderati +aziende +giorno +chiudono +proporrò +carta +valori +cominciare +temi +economici +vedremo +intanto +massimo +impegno +ballottaggi +altro +sprint +finale +raccolta +firme +referendum +andati +firmare +portato +qualche +amico +firma +può +fare +differenza +fino +martedì +compreso +comune +tutta +italia +prossimo +weekend +gazebo +deriva +lepenista +meglio +deriva +socialista +niente +lezioni +sostiene +governo +sinistra +abolisce +reato +clandestinità +libera +spacciatori +chiude +presidi +polizia +altro +lega +riparte +alternativa +renzi +riduzione +tasse +tutela +piccoli +difesa +tante +identità +nord +sud +mobilitazione +euro +dite +martedì +giugno +ultimo +giorno +firmare +referendum +libertà +comuni +già +andato +firmare +gazebo +municipio +comune +cancelliamo +fornero +clandestino +reato +altro +prostituzione +legale +aboliamo +prefetture +libertà +espressione +no +privilegi +immigrati +info +info +vieniafirmare +org +raccolta +prosegue +fino +giugno +gazebo +indicati +sito +http +www +vieniafirmare +org +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +info +info +vieniafirmare +org +ultimi +giorni +firma +referendum +mancano +moduli +comune +chiama +scrivi +info +vieniafirmare +org +dì +comune +controllare +email +pec +moduli +inviati +oppure +altro +scaricare +moduli +http +www +vieniafirmare +org +corri +firma +tutta +italia +municipio +solo +fino +martedì +giugno +compreso +ripartire +esempio +intervento +tempo +oggi +cosa +pensate +accordo +idea +europa +leggete +intervista +risposta +affermativa +condividete +cliccate +piace +fondo +pagina +http +www +affaritaliani +it +affari +europei +salvini +intervista +ue +forzaitalia3005 +html +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +infoline +incredibile +fino +mesi +fa +articolo +genere +stato +impensabile +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +infoline +esaurito +conferenza +stampa +lega +marine +pen +austriaci +olandesi +fiamminghi +moneta +unica +no +grazie +pensiero +unico +no +grazie +immigrazione +incontrollata +no +grazie +bruxelles +qualcuno +paura +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +infoline +ultimi +giorni +firmare +referendum +libertà +già +andato +farlo +municipio +comune +infoline +festival +trash +parole +brindisi +militanti +elettori +permesso +sognare +grazie +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +oggi +aiutato +nascere +alba +vitellina +kili +fatica +appena +votato +lega +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +questavoltavotolega +iovotolega +ioscrivosalvini +tempo +fino +oggi +libertà +partecipazione +attesa +dare +mano +partorire +mucca +finisce +mai +imparare +votare +irregolarità +segnalare +chiama +ora +voto +lega +voto +difendere +agricoltura +mangiare +vivere +sano +senza +schifezze +multinazionali +vorrebbero +portare +tavole +serafino +grazie +impegno +deluderti +deludervi +massimo +promemoria +so +sapete +già +unica +precisazione +salvini +potete +scrivere +voglia +tutta +italia +tutte +circoscrizioni +elettorali +iovotolega +ioscrivosalvini +solo +domenica +ore +ore +tessera +elettorale +smarrita +recati +comune +rifarla +dopo +anni +forza +italia +an +pdl +questavoltavotolega +migliaia +verificabile +messaggi +ricevuti +scelgo +arrivati +mattina +chat +grazie +beatrice +grazie +gianpaolo +chat +fantastici +migliaia +piace +domande +commenti +grazie +domani +buon +voto +libertà +partecipazione +voluto +chiudere +campagna +elettorale +lega +davanti +dormitorio +pubblico +viale +ortles +milano +anno +scorso +ospiti +cittadini +italiani +genitori +separati +disoccupati +altro +pensionati +esodati +ridare +lavoro +speranza +obiettivo +date +mano +votando +lega +domenica +maggio +rimarrà +solo +sogno +grazie +cuore +amici +ognuno +poco +dormitorio +pubblico +viale +ortles +unione +sovietica +europea +affama +gente +altra +parte +spalanca +porte +invasione +clandestini +cari +burocrati +altro +bruxelles +cara +angela +merkel +preparatevi +sloggiare +popoli +europei +darvi +domenica +foglio +via +diretta +streaming +www +matteosalvini +com +ore +sabato +aspetto +nuova +iniziativa +realizzata +supporto +tecnico +facebook +italia +oretta +cercherò +rispondere +tutte +domande +oggi +lunga +intervista +libero +parlo +proprio +dite +leggete +piace +diffondete +meno +pronti +pronto +diretta +agorà +rai +ultime +ore +poi +vota +lega +vinceeeee +mario +votato +destra +anni +poi +m5s +ora +lega +guido +votava +oltre +anni +buttato +scheda +elettorale +stamattina +andato +rifarla +indovinate +dite +fantastici +altro +messaggi +intristire +quel +fenomeno +alfano +evento +facebook +domenica +voto +lega +https +www +facebook +com +events +prato +abitanti +immigrati +accoglienza +suicidio +lega +unica +opposizione +amici +circa +firme +raccolte +cancellare +leggi +fornero +merlin +quasi +pochi +giorni +arrivare +potete +firmare +comuni +italiani +chiamate +informazioni +ogni +caso +grazie +fine +fatto +gianfranco +fini +sicuramente +domenica +voterà +lega +renzi +grillo +berlusconi +voti +altri +voti +domenica +solo +voto +referendum +passato +futuro +fuori +euro +subito +mercato +genova +coda +stamattina +firmare +referendum +lega +fornero +cancelliamo +legge +dicono +signore +fila +dobbiamo +arrivare +firme +aiutaci +chiama +ora +splendida +genova +cornigliano +decine +rom +abusivi +bimbi +mezzo +strada +ecco +sinistra +integra +anzi +disintegra +spettacolare +fast +food +piemontese +carne +cruda +patate +birra +artigianale +mezzanotte +diretta +rai +qualche +nottambulo +sveglio +davanti +video +napoli +ex +cinquestelle +altri +voti +lega +buone +idee +contagiose +sempre +nord +sud +scrivete +sondaggio +così +volo +comune +torino +coraggio +mettere +cartelli +no +camping +ingresso +campo +rom +abusivo +vota +pd +grandi +ragazzi +comunità +domina +rete +http +seigradi +corriere +it +europee +salvini +piu +forte +web +renzi +sempre +spasso +centri +storici +vita +vera +purtroppo +papà +dico +integrazione +schifo +sgomberare +subito +vivere +centinaia +bambini +mezzo +schifo +cultura +alternativa +follia +tribunale +minori +stato +rom +accampati +immondizia +fortuna +ipad +trasmette +odori +benvenuti +torino +fassino +chiamparino +benvenuti +mega +campo +rom +abusivo +lungo +stura +mancano +giorni +voto +domenica +vota +lunedì +internet +silenzio +elettorale +vale +dunque +possiamo +agire +fino +domenica +compresa +dialogando +facebook +altro +italia +riattivare +applicazione +portavoce +sospesa +ricordo +andiamo +forte +twitter +collegate +indirizzo +www +matteosalvini +com +seguimi +potete +aiutarmi +domenica +potenziare +messaggio +istruzioni +twitter +preferisco +facebook +momento +buono +iscriversi +lì +grazieeee +amici +qualche +problema +applicazione +facebook +condividere +momento +sospesa +chiarendo +accaduto +amici +facebook +italia +ringrazio +disponibilità +altro +ricordo +attiva +operativa +app +farmi +portavoce +twitter +voglia +domenica +prossima +possiamo +aumentare +forza +messaggio +rete +basta +avere +account +twitter +andare +link +www +matteosalvini +com +seguimi +seguire +istruzioni +infografica +dovrebbe +essere +abbastanza +semplice +grazie +fate +maglietta +basta +euro +pronto +diretta +canale +presidio +davanti +casa +fornero +san +carlo +canavese +altrimenti +fatta +piangere +già +firmato +comune +referendum +cancellare +maledetta +legge +sardegna +questavoltavotolega +messaggio +appena +ricevuto +ex +soldatessa +berlusconi +roma +delusa +silvio +detto +nulla +uscita +euro +mare +nostrum +ora +vota +lega +grazie +annamaria +davvero +così +tanti +delusi +silvio +attenzione +populista +lago +maggiore +amici +grazie +inviato +migliaia +commenti +sostegno +tema +nuovi +leghisti +così +fatto +fare +qualche +cartello +valorizzarli +dite +sicilia +conoscete +altri +stavolta +votano +lega +domenica +prossima +bella +sorpresa +tanti +battaglie +euro +immigrazione +clandestina +colore +oggi +pranzo +dietetico +mare +casoncelli +burro +pancettaaa +toh +guarda +incontrato +mercato +mariano +comense +ricorda +buongiorno +mondo +oggi +camper +parte +canzo +montagne +comasche +poi +passaggi +lombardi +cantù +mariano +comense +bergamo +ore +bonate +sopra +marcallo +casone +sesto +calende +varese +ore +caronno +varesino +lega +corre +bologna +davanti +chiese +monumento +stupendo +visitare +signor +ivo +giovane +leghista +anni +entusiasmo +età +vinciamo +spoglio +villa +aldini +napoleone +clandestini +sinistra +bologna +italia +villa +aldini +colli +bologna +splendida +vista +godono +immigrati +ospiti +villa +ovviamente +spese +italiani +mica +male +vero +camera +pd +sel +scelta +civica +nuovo +centro +destra +movimento +stelle +votano +sospensione +operazione +mare +nostrum +lega +unica +opposizione +invasione +altra +europa +possibile +europee +domenica +maggio +vota +lega +nord +scrivi +salvini +demenziale +operazione +mare +nostrum +riuscita +finalmente +espellere +qualcuno +deputati +lega +stamane +camera +protestato +esponendo +cartelli +clandestino +reato +ecco +numeri +altro +folli +incremento +clandestini +ultimo +anno +30mila +immigrati +mesi +milioni +euro +soldi +pubblici +spesi +ogni +mese +molliamo +confini +difenderemo +lega +unica +opposizione +invasione +pronto +ora +diretta +radio +rai +compagnia +pronto +poco +la7 +aiutate +commentare +facebook +twittare +presidio +davanti +hotel +garda +affi +ospita +spese +ventina +clandestini +euro +giorno +immigrati +euro +giorno +disabili +vergogna +mercato +meolo +sostegno +candidata +lega +prima +sindaca +storia +paese +forza +guarda +poveretti +monti +cosa +inventano +comunque +varrebbe +marengo +euro +drogato +poco +rai +splendida +terra +friuli +foto +gruppo +leghista +gonars +provincia +udine +piazza +lega +trieste +dire +no +proposta +pd +m5stelle +regalare +cittadinanza +chiunque +nasce +italia +tappa +camper +monfalcone +accoglienza +calorosa +tanta +voglia +tornare +sperare +lavorare +sala +strapiena +vittorio +veneto +ora +diretta +sky +tg +autoscatto +camper +direzione +vittorio +veneto +padova +può +cambiare +massimo +bitonci +sindaco +dopo +pioggia +torna +sempre +sereno +bellissimo +arcobaleno +fotografato +camper +vicenza +padova +dedicato +arzignano +vicenza +tanta +bella +gente +tanta +voglia +lavorare +campi +rom +sgomberati +salutiamo +splendido +trentino +ora +veneto +arzignano +valdagno +schio +tezze +brenta +san +martino +lupari +poi +altro +padova +piazza +mazzini +piazzale +stazione +vittorio +veneto +fotografa +camper +viaggio +lacrima +fornero +omaggio +mamme +papà +candidati +lega +telgate +figli +futuro +prima +foto +modelle +eccezione +piace +maglietta +prima +camper +tappa +bolgare +bella +gente +provincia +persone +genuine +camper +partito +ragazzi +porto +me +amici +oggi +parte +camper +milano +piazza +scala +zona +viene +farmi +salutino +tutte +info +www +matteosalvini +com +liberarsi +gabbia +euro +fermare +invasione +clandestina +roma +sala +strapiena +maggio +può +scegliere +domani +mattina +domenica +aspetto +roma +teatro +flavio +bastaeuro +tour +amici +romani +qualcuno +viene +trovarmi +spettacolo +fate +girare +foto +coda +ininterrotta +gazebo +milano +firmare +clandestino +reato +ecco +nuovo +referendum +segnalano +code +gazebo +firmare +vaiiiii +amici +sabato +domenica +venite +firmare +centinaia +piazze +nord +mappa +gazebo +www +vieniafirmare +org +oppure +lunedi +firma +municipi +italiani +clandestinoèreato +crederete +stasera +cena +salvini +solo +frutta +europa +identitaria +guarda +mosca +crimea +diritto +autodeterminazione +http +www +nododigordio +org +evidenza +salvini +lega +nord +europa +identitaria +guarda +mosca +poco +diretta +rai +radio +pronto +diretta +rai +buona +colazione +amici +saluto +mattina +diretta +rai +arrivato +ecco +sesto +referendum +reintrodurre +reato +clandestinità +abrogando +norma +voluta +renzi +votata +parlamento +forza +italia +sola +dura +opposizione +lega +altro +cinquestelle +defilati +puoi +firmare +prossimo +weekend +centinaia +gazebo +nord +oppure +municipio +settimana +prossima +raccolta +prosegue +altri +raccogliamo +500mila +firme +cancelliamo +fornero +legge +info +www +vieniafirmare +org +prossimi +giorni +mandiamo +tivù +spot +occhiata +piace +diffondi +lega +unica +opposizione +invasione +guardalo +https +www +youtube +com +watch +v +axlniuqy +ac +pronti +firmare +referendum +reintrodurre +reato +clandestinita +brevissimo +info +clandestinoèreato +presidio +lega +davanti +cie +ponte +galeria +roma +espellere +espellere +espellere +rilassarsi +caffè +latte +mandorle +piazza +bella +piena +locorotondo +confronto +lega +forza +italia +euro +europa +immigrazione +bellissima +taranto +politica +giusta +terre +possono +tornare +lavorare +abbraccio +ragazze +fermato +salvini +televisione +sembrava +grassottello +ah +comunque +votiamo +battaglia +clandestini +grazieee +altra +foto +splendida +serata +ieri +lamezia +terme +persone +vogliono +liberarsi +gabbia +euro +piazza +salerno +firma +referendum +lega +superate +firme +ora +maledetta +fornero +attraversato +stretto +ora +corre +mitica +salerno +reggio +calabria +aspetto +lamezia +terme +nuova +tappa +bastaeuro +tour +stasera +sempre +collegamento +lamezia +piazzapulita +la7 +dopo +aver +raccolto +firme +referendum +fornero +granita +siciliana +mandorla +ragazze +ragazzi +chiedono +solo +lavorare +avere +futuro +battaglia +basta +euro +cresce +sicilia +augusta +sicilia +lega +accolta +decine +lavoratori +porto +mamme +studenti +preoccupati +invasione +corso +aiutateci +dicono +forza +sicilia +perbene +stop +immigrazione +lega +libera +sud +salvini +tour +domani +lunedì +augusta +mineo +poi +catania +clandestini +stop +lamezia +terme +basta +euro +tour +diretta +piazza +pulita +la7 +persone +libere +aspetto +messaggio +chiaro +basta +euro +popolo +pontida14 +sfondo +genova +sempre +stupenda +peccato +politica +sinistra +riduca +sempre +peggio +bivacco +centro +milano +renzi +alfano +vergognatevi +benvenuti +stazione +centrale +milano +milano +roba +matti +stop +immigrazione +subito +grillo +diciamo +fuori +subito +euro +tira +lunghe +berlusconi +passato +pd +vota +vota +merkel +ecco +intervista +oggi +secolo +xix +genova +altro +splendida +città +aspetto +tanti +oggi +ore +palazzo +ducale +dire +insieme +senza +tentennamenti +basta +euro +piace +girare +oggi +sabato +genova +palazzo +ducale +nuova +tappa +bastaeuro +stasera +domani +pontida14 +viene +renzel +poi +arrivi +cagliari +trovi +persone +aspettarti +ascoltarti +sala +riesce +contenerle +tutte +devono +montare +altoparlanti +fuori +stanchezza +passa +attimo +grazie +stupenda +sardegna +stupendo +porto +alghero +stupenda +bandiera +catalana +sventola +persone +pontida +van +sfroos +musica +dialetto +poesia +rosso +solo +vino +vittoria +sempre +spettacolooo +altro +concerto +roma +musica +davide +stasera +pontida +volontari +cucina +centinaia +persone +ospiti +pranzo +stasera +musica +gratis +davide +van +sfroos +mai +venuti +aspetto +pontidaaaaa +gente +fila +ora +pranzo +disoccupati +esodati +pontida +scelgo +casoncelli +costine +polenta +zola +oggi +dieta +guarda +giovani +impegnati +lega +besana +brianza +pontida14 +domani +1° +maggio +inizia +giorni +pontida +pranzo +lavoratori +concerto +acustico +davide +van +sfroos +aspetto +evvai +piazza +piena +lega +albenga +rosy +guarnieri +sindaco +liberarci +gabbia +euro +ecco +bella +piazza +leghista +sanremo +poco +albenga +gente +coda +sanremo +firmare +referendum +pienone +pavia +pensiero +unico +idee +ora +porta +porta +rai +ancora +piedi +piove +nerviano +sotto +portici +raccolgono +firme +referendum +bravi +militanti +attesa +giorni +pontida +invitati +mercoledi +sera +monza +nuova +tappa +bastaeuro +tour +aspetto +numerosissimi +«nos +idées +convergent +à +avec +celles +marine +pen +idee +convergono +marine +pen» +figaro +fantastiche +donne +uomini +cucinando +festa +leghista +zanica +profumoooo +dopo +anni +buona +amministrazione +squadra +lega +torna +vincere +spirano +bergamo +bravi +ragazzi +fortuna +bimbi +ancora +milan +vince +sindaco +tribiano +fratelli +italia +firma +referendum +lega +bravo +grande +gruppo +pioltello +vincere +comune +liberarci +euro +follia +pronto +mentana +ex +manzoniano +me +purtroppo +interista +distrarmi +milan +bucatini +cacio +pepe +dietetici +ieri +quinto +treviso +viva +san +marco +caspita +rifanno +bene +asfalto +milano +bravo +pisapia +sala +strapiena +treviso +parlare +euro +lavoro +futuro +inizio +dubbi +ora +certo +gente +vuole +morire +banche +finanza +euro +riportiamo +centro +uomo +donna +denaro +profitto +riusciamo +arrivare +chiesa +vento +lago +portarti +saluto +buon +viaggio +ragazza +mercato +milano +superate +firme +ciascuno +referendum +parecchie +persone +votavano +anni +ringraziato +detto +volta +voto +lega +avanti +ore +gente +già +fila +fuori +stazione +nord +milano +firmare +legge +fornero +posto +coscienza +settimana +doppio +appuntamento +bastaeuro +giovedì +sera +treviso +venerdì +mattina +aprile +reggio +emilia +liberazione +euro +può +deve +aspettiamo +diffondete +amici +manuale +uscire +incubo +trovate +sito +www +bastaeuro +org +ciao +amici +auguri +buona +pasqua +pensiero +vittoria +amici +percorso +sentiero +adesso +accompagnano +lassù +buon +viaggio +piccola +grande +vittoria +cola +sorriso +lega +valtellina +quest +anno +pontida +stessa +strasburgo +rispetto +animali +vietnam +penso +europa +dovrebbe +preoccuparsi +prima +benessere +esseri +viventi +umani +animali +europa +no +kabobo +pena +morte +no +ergastolo +sì +cosa +pensate +mezz +ora +incontro +marine +pen +uniti +battaglia +euro +disastri +banche +immigrazione +massa +marine +crediamo +maggio +possiamo +liberarci +gabbia +ridare +forza +lavoro +futuro +sogno +vassoio +tortelli +zucca +canzoni +tenco +stereo +bimba +gioca +libro +peppa +pig +bimbo +preso +interrogazione +storia +splendida +comunità +amici +cambierei +nemmeno +soldi +mondo +ascoltiamoci +po +buona +musica +già +raccolte +firme +cancellare +legge +fornero +dobbiamo +arrivare +può +firmare +comuni +italiani +info +www +vieniafirmare +org +credo +perfino +corriere +sera +accorge +battaglia +lega +imporre +regole +tasse +sicurezza +mondo +prostituzione +succedendo +secondo +gente +piedi +gente +riesce +entrare +sala +bergamo +basta +euro +tour +arrivato +roma +bellissimo +convegno +fuori +gabbia +euro +riparte +speranza +potrà +ancora +sognare +vero +panorama +oggi +edicola +cancelliamola +firma +porti +amici +svelta +municipi +italiani +gazebo +lega +nord +weekend +info +www +vieniafirmare +org +comune +città +castello +bellissima +umbria +mattinata +firme +cancellare +fornero +merlin +vuoi +darci +mano +chiama +cancelliamo +vergogna +legge +fornero +firma +sabato +domenica +lega +torna +centinaia +piazze +nord +gazebo +firmare +referendum +libertà +trova +mappa +aggiornamento +www +vieniafirmare +org +oppure +puoi +firmare +municipi +tutta +italia +coda +roma +cancellare +legge +fornero +info +vieniafirmare +org +altri +clandestini +arrivo +bastaaaaa +renzi +alfano +complici +invasione +annunciata +lega +clandestino +reato +accordo +pisapia +abbandonato +milano +periferia +oggi +portato +davanti +palazzo +marino +decine +sacchi +rifiuti +raccolti +volontari +leghisti +parchi +piazze +pisapia +preparati +sfratto +mare +bandiere +idee +bambini +gente +vuole +lavorare +vivere +tranquilla +arresteranno +sapete +sacile +cittadina +veramente +bellissima +bellissimo +vedere +gente +stamattina +coda +gazebo +firmare +referendum +fornero +farti +vedere +giro +incontro +operai +electrolux +porcia +centinaia +posti +lavoro +rischio +europa +basa +solo +profitto +sfruttamento +europa +difendiamo +lavoro +italia +colazione +energetica +speck +formaggi +yogurt +zabaione +pronto +tappe +friulane +oggi +brugnera +pasiano +pordenone +porcia +pranzo +sacile +verona +nuova +felpa +friul +così +crozza +contento +buona +musica +ottimo +rosso +tantissimi +amici +sempre +innamorato +lega +domenica +aspetto +verona +ore +piazza +signori +pacificamenteliberi +nord +sud +incredibile +persone +paese +montagne +udine +preparare +futuro +fuori +gabbia +euro +indipendenti +bastaeuro +tour +ore +diretta +streaming +monte +buja +ud +www +bastaeuro +org +aspetto +piazza +longarone +viva +leone +oggi +monte +buja +vicino +udine +basta +euro +tour +tana +mitico +mauro +corona +erto +fortuna +dare +occhiata +quadernetto +nascendo +nuovo +libro +bellissimo +pomeriggio +amici +ente +nazionale +sordi +conoscono +difficoltà +possono +risolvere +problemi +impegno +concreto +approvare +regione +lingua +segni +offrire +assistenza +bisogno +diversi +uguali +metti +copertina +facebook +qualche +ora +vergogna +aprile +pesce +aprile +abolito +reato +immigrazione +clandestina +favorevoli +forza +italia +ncd +sel +pd +sc +udc +astenuti +m5s +lega +unica +difesa +invasione +vergogna +ecco +parlamento +vota +emendamenti +eliminazione +reato +immigrazione +clandestina +grillini +pd +fi +ncd +altri +difesa +clandestini +altro +alfano +renzi +accordo +solo +lega +resiste +luci +verdi +unica +difesa +invasione +girare +smascheriamo +amici +clandestini +ecco +voto +emendamento +tanti +eliminazione +reato +immigrazione +clandestina +unico +voto +mantenerlo +lega +lega +unica +difesa +invasione +girare +smascheriamo +amici +clandestini +liberi +mai +schiavi +nessuno +ecco +simbolo +lega +presente +schede +elettorali +nord +sud +maggio +riprendiamo +mano +futuro +letture +oggi +copie +padania +libero +oggi +dedica +bell +articolo +lega +scala +sondaggi +colazione +dietetica +svegliaaa +sistemate +orologio +date +mano +comunità +persone +coda +piazza +repubblica +novara +firmare +referendum +giornata +stupenda +grazie +giornata +stupenda +lago +arona +tante +firme +fornero +merlin +raccolte +gazebo +già +firmato +grande +gruppo +gazebo +vercelli +firma +piazza +cavour +aspettiamo +trova +firmare +www +vieniafirmare +org +usa +social +vieniafirmare +vittorio +sgarbi +appena +firmato +referendum +cancellare +infame +riforma +fornero +domani +tocca +vieniafirmare +trova +www +vieniafirmare +org +trova +topi +foto +calcutta +milano +pochi +metri +metropolitana +cascina +gobba +pisapia +svegliaaaaa +so +serata +peppa +pig +roma +arrivo +obama +nobel +pace +uomini +impegnati +sicurezza +italiani +pagano +già +gazebo +pronti +sabato +domenica +nord +aiutaci +dare +calcio +sedere +legge +fornero +legge +merlin +vieni +firmare +referendum +info +potrà +firmare +comuni +centro +sud +vuoi +aiutarci +sapere +metti +domenica +immagine +copertina +usa +hashtag +vieniafirmare +social +sabato +domenica +potranno +firmare +referendum +cancellare +altro +vergognosa +riforma +fornero +cancellare +legge +merlin +prostituzione +mandare +casa +prefetti +limitarti +discutere +rete +partecipa +oltre +gazebo +puoi +firmare +municipi +italiani +info +www +vieniafirmare +org +girare +messaggio +insieme +puo +esaurito +lega +stasera +mortara +riconquistare +speranza +lavoro +futuro +insieme +può +vieniafirmare +sabato +domenica +prossimi +centinaia +piazze +marzo +municipi +italiani +firma +cancellare +vergogna +legge +fornero +trova +gazebo +www +vieniafirmare +org +altro +usa +social +vieniafirmare +puoi +firmare +abrogazione +legge +merlin +tassiamo +regolamentiamo +prostituzione +abolizione +prefetture +stop +concorsi +pubblici +immigrati +abrogazione +legge +mancino +reati +opinione +bruxelles +paura +lega +grazie +comunità +cresce +altra +europa +possibile +fuori +euro +ripartono +lavoro +speranza +pubblico +caldo +via +milano +no +lavanderia +cielo +aperto +rom +integrano +così +amici +sabato +domenica +marzo +aspettiamo +centinaia +piazze +sostenere +referendum +abrogazione +riforma +fornero +pensioni +abrogazione +legge +merlin +altro +prostituzione +stop +concorsi +pubblici +immigrati +abolizione +prefetture +abolizione +legge +mancino +reati +opinione +marzo +potete +firmare +presso +comune +residenza +tutta +italia +trovate +tutte +informazioni +www +vieniafirmare +org +fermiamo +mai +centinaia +persone +tanti +riescono +entrare +sala +basta +euro +tour +padova +indipendenza +stato +bruxelles +brianza +basta +milioni +spesi +clandestini +prima +felpa +veneto +pronta +oggi +pomeriggio +padova +quarta +tappa +basta +euro +tour +aspetto +giornalisti +diffamano +veneti +lega +voglia +indipendenza +presidio +davanti +prefettura +milano +altri +clandestini +ospitare +case +alberghi +spese +rispediamoli +casa +sindaci +cittadini +san +genesio +vicino +pavia +oggi +diversi +clandestini +alloggiano +hotel +riz +piscina +centro +benessere +spese +lega +sposteremo +finchè +clandestini +andranno +banzai +tanta +gente +stasera +verbania +basta +euro +tour +tele +rimbambisce +invece +voglia +capire +dubitare +sognare +ancora +arrende +produce +italia +giocattoli +storici +nuova +faro +prima +legno +oggi +plastica +compriamo +prodotti +difendiamo +lavoratori +gente +dorme +strada +milano +troppe +case +vuote +vedete +impegno +andranno +assegnate +subito +centro +milano +invaso +vespa +giro +mondo +ruote +amici +ancora +esaurito +entusiasmo +tappa +torino +già +pronta +padova +sabato +marzo +aspettiamo +tanti +cittadini +veneti +vogliono +riprendersi +futuro +fermiamo +mai +bastaeuro +incredibile +sala +strapiena +gente +seduta +piedi +ovunque +tappa +basta +euro +tour +torino +gente +comincia +capire +servi +bruxelles +finita +pronti +torino +tappa +oggi +bastaeuro +tour +diretta +www +bastaeuro +org +potete +scaricare +manuale +uscire +incubo +richiedere +gratuitamente +adesivi +materiale +altra +europa +possibile +lega +inaugurazione +sede +lega +nord +ghedi +seguire +cena +persone +montichiari +lega +combatte +cresce +brescia +centinaia +firme +diritto +voto +anticipato +immigrati +prima +gente +europa +toglie +dazi +limoni +marocco +continuo +difendere +orgogliosamente +lavoratori +italiani +angelo +prodotti +eccellenza +http +www +dailymotion +com +video +x1g35r1 +europa +criminale +uscire +piu +presto +euro +sara +fine +news +quasi +diretta +occhio +bendato +congiuntivite +rete +fianco +me +gasparri +wow +limone +stasera +trasmissione +quinta +colonna +porto +limone +dimostrazione +europa +euro +massacrando +agricoltura +nome +profitto +insieme +esodati +sede +inps +grazie +regione +lombardia +possiamo +aiutare +arrivare +pensione +centinaia +persone +burocrazia +sveglia +aspetto +torino +sabato +marzo +ore +sala +convegni +atc +corso +dante +nuova +tappa +bastaeuro +tour +tutte +date +manuale +uscire +incubo +sito +www +bastaeuro +org +lega +presente +piazza +breno +fermiamo +mai +qualche +ora +relax +sorriso +dedicato +comunità +belle +persone +presenti +oggi +piazza +ponte +legno +insieme +tante +donne +ore +distribuito +copie +libro +basta +euro +pausa +spritz +patatine +salute +antonio +anni +muratore +quaranta +figli +secondo +giustizia +italiana +dovrebbe +farsi +anni +galera +perchè +ucciso +rapinatori +entrati +casa +notte +mai +fianco +ogni +mezzo +già +spedito +prime +buste +adesivi +volantini +basta +euro +tutta +italia +gratis +direttamente +casa +volesse +può +compilare +modulo +sito +www +bastaeuro +org +maggiore +rapidità +oppure +scrivermi +privato +vogliono +salva +roma +perchè +troppi +debiti +poi +vogliono +fare +olimpiadi +gran +premio +formula +robb +matt +inaugurata +nuova +sede +lega +nord +bolzano +persone +idee +coraggio +cresce +profumo +valpolicella +sindaco +cittadini +san +pietro +cariano +fila +gazebo +firmare +golia +zampe +pronto +mordere +piazza +vittoria +legnago +veneto +energia +incredibile +piazza +piena +splendida +belluno +altro +salva +roma +cittadini +palle +piene +oggi +parte +vittorio +veneto +gente +fila +stamattina +firmare +referendum +indipendenza +poi +tour +porterà +belluno +legnago +san +pietro +cariano +bolzano +arco +trento +buona +domenicaaa +torta +festa +capodanno +veneto +notte +serena +amici +adesso +grappino +acqua +ferma +leghisti +mogliano +veneto +tanta +gente +comune +sostegno +indipendenza +stupenda +cripta +medievale +duomo +treviso +nuovo +punto +lega +padova +piazza +erbe +mattinata +firme +comunità +cammino +splendido +ponte +bassano +grappa +stato +seconda +tappa +vicentina +malo +tanta +gente +cioccolata +calda +sorrisi +domani +90esima +edizione +storico +carnevale +gazebo +veneto +sabato +domenica +sostegno +referendum +indipendenza +grandi +ecco +tappe +veneto +tour +sabato +incontro +montecchio +maggiore +bassano +altro +grappa +padova +inaugurazione +comitato +elettorale +piazza +erbe +mogliano +veneto +arcade +infine +serata +caorle +cena +capodanno +veneto +domenica +vittorio +veneto +belluno +legnago +san +pietro +cariano +sempre +domenica +bolzano +inaugurazione +sede +lega +via +rovigo +arco +trento +ferma +perduto +aspetto +info +www +firmaindipendenza +org +arena +verona +spettacolo +vero +scarica +manuale +uscire +incubo +domande +risposte +verità +nessuno +dice +www +bastaeuro +org +altra +europa +possibile +vittoria +lega +governo +ritira +decreto +salva +roma +italiani +risparmiano +miliardo +euro +finito +tappare +buco +città +indebitata +mondo +sbaglia +paga +politici +romani +casa +lega +unica +opposizione +pedaggi +autostradali +ridotti +pendolari +vittoria +lega +difesa +cittadini +stato +ladro +sprecone +autorizzato +rincari +vergognosi +tempo +crisi +ciao +amici +buona +giornata +volo +strasburgo +comincio +nuovo +libro +sinistra +como +tante +promesse +pochi +fatti +nuove +tasse +über +euro +immigration +und +föderalismus +von +herrn +renzi +nur +viel +rauch +stunde +verschwendet +was +verstanden +haben +ist +dass +herr +renzi +die +staatsanleihen +versteuern +wird +um +deutschland +und +bruxelles +noch +einen +gefallen +zu +tun +palazzago +valle +imagna +almeno +persone +serata +lega +tanti +ragazzi +costine +salamelle +strepitose +tanta +voglia +sognare +lavorare +comunità +militanti +foto +stupenda +banzai +esenzione +fiscale +alluvionati +terremotati +diventiamo +cattivi +paradossalmente +lega +nord +indipendenza +padania +lotta +euro +salverà +tutte +diversità +italia +bruxelles +vogliono +marmellata +indistinta +consumatori +senza +anima +senza +identità +tireremo +indietro +vinceremo +giusto +bastaeuro +basta +euro +sala +strapiena +dovuto +portare +amplificatori +esterno +tutta +gente +riuscita +entrare +governo +renzi +merkel +moneta +unica +criminale +comunità +arrende +proprio +oggi +riuscito +venire +milano +niente +paura +potete +seguire +diretta +streaming +www +bastaeuro +org +altra +europa +possibile +aspetto +stasera +riconosco +cena +leggera +pinzimonio +carote +finocchi +bene +onore +leghisti +terra +romagna +comunità +sogna +resiste +lavora +mentre +senato +votano +salva +roma +venezia +lega +presenta +referendum +indipendenza +marzo +centinaia +piazze +venete +aspettiamo +te +www +firmaindipendenza +org +alba +nuovo +giorno +vista +cielo +dedicata +lassù +qualcuno +ama +vediamo +deluderlo +sprecare +tempo +cambiare +mondo +insieme +può +insieme +artigiani +invaso +pacificamente +roma +meno +stato +meno +tasse +soprattutto +via +euro +massacra +imprese +lavoro +speranza +festival +spreco +stato +no +canone +rai +protesta +senatori +leghisti +boicotta +festival +milionari +sinistra +incontro +operai +invernizzi +caravaggio +posti +lavoro +rischio +altro +legge +elettorale +veri +problemi +lega +mentre +roma +giocano +poltrone +marò +india +giocano +vita +sabato +febbraio +milano +ore +aspetto +bastaeuro +tour +prof +claudio +borghi +verrà +distribuito +manuale +uscire +incubo +domande +risposte +attendo +numerosissimi +evento +facebook +https +www +facebook +com +events +fref +ts +corteo +spontaneo +no +euro +centro +firenze +centinaia +foto +migliaia +turisti +tanta +legaaaaaa +firenze +mentre +renzi +cerca +ministri +lega +riempie +auditorium +parlare +euro +lavoro +adesso +cena +tipica +emiliana +sotto +acqua +pavia +rialza +testa +altra +europa +possibile +sperare +può +aspetto +domenica +febbraio +firenze +anteprima +bastaeuro +tour +insieme +amico +prof +claudio +borghi +numero +zero +manuale +basta +euro +uscire +incubo +domande +risposte +solo +lega +lavora +anni +coraggio +tornare +padroni +casa +fuori +euro +lavoro +riparte +vince +letta +vince +renzi +perdono +italiani +pubblico +leghista +tonico +gabbia +pronti +cancellare +infame +riforma +fornero +pensioni +regolamentare +tassare +prostituzione +riservare +concorsi +pubblici +cittadinanza +italiana +abolire +prefetti +prefetture +cancellare +altroreati +opinione +depositato +stamattina +referendum +marzo +preparatevi +firmare +nord +sud +lega +opposizione +proposte +concrete +bicchierino +braulio +salute +piace +altri +consigli +pronto +battaglia +missoltino +como +bianco +sardegna +gemellaggio +spettacolo +indovinate +lago +ingredienti +genuini +giornata +bambini +oggi +pranzo +dietetico +artigiani +legno +piazza +aosta +spettacolo +passione +fatica +quintale +trippa +cottura +vista +storica +veillà +valdostana +domani +fiera +cantine +aperte +viva +tradizioni +buon +appetito +aosta +parlare +autonomia +europa +lavoro +nevicaaaaa +bruxelles +parlare +enrico +letta +ve +racconterò +diretta +domande +fare +metri +acqua +negozi +chiusi +stato +chiederà +tasse +gente +giusto +fino +giorni +fa +solo +acqua +lago +km +quadrati +sommerso +bruxelles +disastro +abbastanza +grave +niente +contributi +roba +matti +bomporto +modena +agricoltori +cittadini +alluvionati +dimenticati +soldi +stato +zero +soldi +europa +zero +maniche +indipendenza +catania +istituto +oncologico +mediterraneo +appena +presentato +medici +infermieri +volontari +progetto +parrucche +dedicato +donne +malate +tumore +nome +solidarietà +volontariato +autonomia +gemellaggio +nord +sicilia +pienone +giornalisti +parte +contrattacco +lega +rapina +fiscale +stato +ladro +adoro +mirto +sardegna +liquori +altre +preferenze +forza +ragazzi +grande +gruppo +padova +sfigati +centri +sociali +urlare +guarda +nessuno +santoro +fiorito +bella +coppia +incontro +marine +pen +patto +molto +positivo +altra +europa +possibile +europa +pacifica +ordinata +fondata +lavoro +culture +serva +euro +banche +europa +orgogliosa +altro +disposta +farsi +invadere +uomini +merci +comunità +cammino +diamo +fastidio +sicuramente +attaccheranno +sicuramente +paura +no +avanti +insieme +può +poco +collego +diretta +agorà +rai +visto +strasburgo +compra +copia +padania +me +oggi +seguo +calcio +vero +bimbi +anni +elezioni +vincere +cittadini +tribunali +tante +fiaccole +torino +difendere +libertà +protesta +leghista +casello +gallarate +perchè +perchè +sud +kilometri +autostrade +gratis +invece +nord +paga +paga +caro +milano +como +ritorno +euro +giusto +nuovi +adesivi +basta +euro +lasciate +nome +indirizzo +messaggio +privato +ve +spediremo +direttamente +casa +milano +ufficio +poste +italiane +decine +persone +coda +tanti +anziani +piedi +ritirare +raccomandate +spedite +ritirate +dopo +natale +ovviamente +solo +sportelli +aperti +tanta +bella +gente +spasso +italia +stato +ladro +fallito +disorganizzato +notte +serena +amici +soprattutto +orgoglio +passione +speranza +incertezza +pisolino +abbraccio +particolare +solo +anno +sfigato +spera +tornare +sorridere +signor +napolitano +nomina +nuovi +senatori +vita +fregandosene +crisi +gente +presidente +auguri +amici +spero +porti +tanta +salute +nessun +rimpianto +tanto +coraggio +nessuna +rassegnazione +tanta +fortuna +solo +poche +sconfitte +tanta +comunità +nessuna +solitudine +persone +libere +cena +poco +vegetariana +capriolo +polentaaa +cena +poco +vegetariana +capriolo +polentaaa +cena +amici +bresaola +sciatt +risotto +torta +speciale +notte +serena +fiocchi +neve +vedo +oltre +vetri +accompagnino +sogni +discorso +fine +anno +giornalista +chiesto +ascolterò +giorgino +napolitano +beppe +grillo +risposto +seguirò +figlia +peppa +pig +bellissimo +castello +sforzesco +spalle +pronto +collegamento +sky +madonna +salute +venezia +stacci +vicina +riunione +lavoro +venezia +sempre +stupenda +notte +serena +amici +comincio +nuovo +libro +tanti +auguri +sereno +natale +amici +comunità +difenderemo +vicenda +fronte +attacchi +vili +infami +mezzi +comunicazione +nati +distruggere +lega +arriveremo +molto +lontano +sempre +innamorato +lega +nord +miliardaria +littizzetto +campionessa +nota +disciplina +fare +comunista +altri +molto +frequentata +sinistra +ieri +sera +presa +me +rai +considerassi +altro +clandestini +lampedusa +persone +costruito +tutta +filippica +radical +chic +tono +serio +indignato +tanto +applausi +fazio +rifiutando +inoltre +etichetta +buonista +cara +littizzetto +piú +facile +vinca +miss +italia +trovare +me +solo +briciolo +razzismo +anziché +investire +proprietà +immobiliari +vaste +fortune +usi +parte +ospitare +centinaio +immigrati +clandestini +fondo +soldi +pubblici +italiani +pagano +canone +rai +forza +vecchio +cuore +rossonero +poverini +clandestini +cittadini +poi +devono +mantenere +subiscono +crimini +bergamaschi +lega +chiuduno +festeggiare +natale +pronti +sacrifici +battaglie +napolitano +fa +auguri +marò +dice +governo +molto +attento +destino +marò +rifiuterei +auguri +attenzione +mamma +tira +tardi +allora +riesco +saluto +popolo +rete +poverini +migranti +rom +carcerati +poi +muovono +dito +aver +bisogno +vicino +casa +troppo +banale +troppo +normale +ipocriti +tristi +buoni +facebook +egoisti +vita +responsabilità +tenere +barca +italia +equilibrio +detto +oggi +letta +ricorda +tanto +schettino +poco +diretta +rai +immigrazione +carceri +agricoltura +imprese +pensioni +europa +massacra +ribellarsi +é +dovere +guarda +po +cosa +attaccano +aeroporto +fiumicino +problemi +italia +guarda +caso +ritirano +fuori +calcioscommesse +partite +truccate +indagano +qualche +calciatore +famoso +riempiono +pagine +giornali +tentativo +distrazione +massa +bruno +vespa +riflessivo +comincio +registrare +porta +porta +alemanno +italia +troppo +federalismo +rideeeeeeeeee +presepe +studio +porta +porta +bene +giornata +lavoro +milanese +ora +parte +roma +stasera +ospite +porta +porta +rai +allegra +compagnia +me +studio +gianni +alemanno +simpaticissima +debora +serracchiani +qualche +consiglio +darmi +scrivete +ora +buona +serata +amici +buona +lettura +poi +ditemi +cosa +pensate +http +www +ilgiornale +it +news +interni +salvini +briglia +sciolta +vaffaday +lega +html +indipendenza +disobbedienza +mare +calore +idee +passione +splendida +comunità +cammino +grazie +primo +acquisto +fatto +berretto +verde +rebel +comincia +decine +giornalisti +conferenza +stampa +altra +europa +possibile +amici +francesi +fiamminghi +olandesi +austriaci +russi +ciao +amici +chiamo +mirta +oggi +compio +anno +domani +raccomando +torino +catalogna +novembre +chiamerà +voto +cittadini +decidere +indipendenza +grandi +unione +sovietica +europea +minaccia +ritorsioni +motivo +mollare +europa +euro +forconi +bruxelles +ognuno +deve +essere +libero +padrone +casa +ricevere +applausi +pubblico +romano +vale +doppio +tramonto +treno +rientrando +casa +piace +sacco +formigoni +dark +parlamento +vota +fiducia +governo +disastri +game +letta +monti +parlamento +infame +servo +bruxelles +prendere +calci +steve +jobs +diceva +affamati +folli +libertà +richiede +fame +follia +oggi +giornata +cominciata +presto +male +spero +diverso +notte +serena +amici +innamorato +lega +mezzo +agricoltori +roma +bruxelles +massacrano +battaglia +oggi +manifestando +tricolore +mano +dovrebbe +capire +primo +nemico +lavora +proprio +stato +ladro +usa +quel +tricolore +enrico +letta +dice +antieuropeisti +producono +solo +macerie +amartya +sen +nobel +economia +dice +euro +stata +idea +orribile +credete +francois +heisbourg +docente +analista +anglo +francese +europeista +sempre +presidente +istituto +internazionale +studi +strategici +oggi +afferma +euro +incubo +lascia +subito +moneta +unica +presto +caos +certezze +euro +scemi +sempre +meno +certe +grazieeeeeee +prima +telefonata +sempre +grande +umberto +bossi +prima +uscita +pubblica +fabbrica +rischia +chiudere +prima +battaglia +indipendenza +stato +italiano +ladro +fallito +unione +sovietica +europea +massacra +grazie +strumento +morte +chiamato +euro +insieme +senza +altro +dividere +ascoltando +decidendo +meno +possibile +ufficio +tanto +gente +fianco +sindaci +amministratori +bellissima +giornata +partecipazione +grazie +amici +adesso +ognuno +deve +sentirsi +battaglia +belli +fiori +belli +alberi +natale +veri +attesa +privatizzarla +poco +diretta +rai +news +sindaco +torino +oggi +dato +cittadinanza +rachid +giovane +marocchino +prima +vendeva +accendini +strada +adesso +laureato +intanto +migliaia +laureati +italiani +perso +lavoro +cominciato +vendere +accendini +strada +stato +tempo +perdere +segnalo +bell +articolo +secolo +xix +cosa +pensate +notte +serena +amici +pensiero +nelson +mandela +lotta +libertà +legge +elettorale +frega +italiani +rischio +povertà +ecco +emergenza +pronto +intervenire +mezzo +gruber +la7 +dovrò +confrontarmi +cuperlo +ve +devo +salutare +kyenge +dice +intolleranza +ignoranza +quindi +proprio +tollera +leghisti +dà +ignorante +sola +stavolta +tocca +darle +ragione +firenze +nonostante +disastro +renzi +vero +spettacolo +morti +lavoro +nero +sfruttamento +stato +ladro +mafioso +manda +blitz +cortina +rompe +palle +commercianti +artigiani +indipendenza +roma +bruxelles +prato +fuori +centro +storico +solo +cittadino +toscano +solo +cinesi +muri +migliaia +scritte +cinese +compresi +centinaia +numeri +telefono +pare +signorine +eccoci +prato +minuti +diretta +sky +tg +nuova +sede +lega +nord +bellissima +parma +bravi +so +me +primarie +pd +rotto +tivù +siti +giornali +vedono +tutte +ore +facce +porcellini +democratici +militanti +primarie +lega +chissenefrega +giornalisti +tranne +rare +eccezioni +vergogna +italia +dicembre +partecipo +me +casa +sala +strapiena +gente +piedi +lega +alain +benoist +parlare +denaro +banche +popoli +libertà +finchè +conserveremo +voglia +coraggio +pensare +schiacceranno +basta +euro +riprendiamoci +sovranità +lavoro +libertà +speranza +notte +serena +amici +cominciate +fare +ciò +necessario +poi +ciò +possibile +improvviso +sorprenderete +fare +impossibile +san +francesco +assisi +sala +piena +lega +torino +parlare +piemonte +costruire +lavoro +futuro +speranza +casa +abbraccio +bella +bianca +cuneo +genova +sempre +stupenda +buona +domenica +amici +sole +scaldi +oggi +incontri +leghisti +genova +albenga +cuneo +torino +ascolto +progetto +sala +piena +almeno +persone +lega +verona +indipendenza +disobbedienza +fratelli +leghisti +rovigo +indipendenza +orgoglioso +essere +bondeno +comune +terremotato +ferrarese +consegnare +vigili +fuoco +protezione +civile +automezzi +donati +lega +nord +buona +politica +ieri +sciura +kyenge +simposio +africa +sviluppo +sostenibile +vaticano +premiato +sciur +prodi +italia +malora +premiano +pensando +africa +così +affezionati +continente +nero +terra +peraltro +stupenda +tornino +tramonto +milano +poesia +troppo +spesso +andiamo +cerca +bellezza +lontano +casa +accorgiamo +portata +mano +finito +forse +berlusconi +ruby +adesso +tribunale +milano +torna +occuparsi +bossi +lega +processi +mafiosi +assassini +possono +attendere +giudici +eletti +popolo +indipendenza +unica +via +grazie +militanti +firmato +me +grazie +coloro +scelto +altri +candidati +primo +umberto +bossi +grande +uomo +grazie +stucchi +bernardini +stefanazzi +confronto +idee +diverse +nascono +idee +migliori +grazie +lega +comunità +cammino +ora +difesa +attacco +roma +bruxelles +mai +state +così +deboli +uniti +indipendenti +servi +vince +notte +serena +amici +bisogna +sempre +giocare +lealmente +quando +mano +carte +vincenti +oscar +wilde +duman +matina +diretta +telelombardia +milioni +disoccupati +milioni +poveri +politici +sinistra +destra +litigano +altro +decadenze +magistratura +italia +stato +ladro +orlo +fallimento +indipendenza +roma +bruxelles +mai +stata +così +vicina +insieme +può +segnalo +bella +intervista +massimo +fini +padania +oggi +piace +cosa +pensate +proposte +oggi +cielo +lombardia +poesia +com +parti +lunga +discussione +decadenza +berlusconi +confesso +fatto +decadere +palle +grazie +partecipato +persona +seguito +casa +attraverso +radio +padania +attraverso +diretta +streaming +ancora +riuscito +vedere +altro +convegno +segnaliamo +link +youtube +rivedere +intero +convegno +http +www +youtube +com +watch +v +mjfmmvvkf1g +feature +c4 +overview +list +uuw2af +j2qizzmww99bs3e6q +regione +lombardia +conferenza +stampa +bei +progetti +lega +stop +consumo +territorio +stop +nuovo +cemento +appalti +kilometro +zero +favoriamo +lavoro +imprese +bruxelles +arrabbieranno +chissenefrega +indipendenza +roma +bruxelles +torna +gente +cresce +entusiasmo +idee +libertà +sveglieranno +europa +forza +lega +insieme +può +squadra +cucina +festa +spirano +innamorato +lega +tentando +fare +torta +mele +buona +domenica +amici +vediamo +stasera +festa +lega +spirano +berghem +no +euro +day +sala +strapiena +seguite +diretta +streaming +ore +www +lapadania +net +seguite +diretta +streaming +www +lapadania +net +pare +governo +roma +evitare +imu +voglia +aumentare +ancora +tasse +benzina +davvero +così +prepariamo +randelli +mirtilli +argentina +more +messico +arrivano +ancora +tantissime +richieste +convegno +domani +posti +purtroppo +esauriti +potete +però +seguire +streaming +sito +www +lapadania +net +oppure +frequenze +radio +padania +libera +casa +sogni +bosco +isolata +starci +giulia +bimbi +mare +amici +chissà +buona +giornata +fiumicino +rientra +padania +ricevuto +applauso +pubblico +romano +sinistra +santoro +quasi +commosso +secondo +intervento +fatto +liberiamo +nord +folle +patto +stabilità +abusi +edilizi +gran +parte +sud +nessuna +sanatoria +galera +colpevoli +miliardi +euro +multa +società +gestiscono +slot +machine +regalo +amici +stato +ladro +primo +intervento +fatto +svizzera +autonomia +europa +serva +banche +germania +euro +moneta +criminale +salvarsi +possibile +andava +bene +roma +santoro +la7 +dietro +quinte +tempo +cambiare +canale +vecchie +care +cartoline +forza +oscar +lancini +mollare +scriviamogli +ragazzi +convegno +sabato +no +euro +day +ancora +pochi +posti +disponibili +chiamate +parleremo +uscire +euro +prof +bagnai +borghi +rinaldi +aspetto +insiemesipuò +oscar +lancini +continua +sciopero +fame +famiglia +chiede +qualche +giorno +tranquillità +attesa +spera +buone +notizie +sempre +convinto +attacco +lega +fondato +nulla +rispetto +volontà +famiglia +sospendiamo +ora +altre +manifestazioni +qualche +giorno +però +padano +arrestato +ingiustamente +follia +oscar +riprendi +mangiare +bisogno +te +sano +forze +pronto +battaglia +tasca +carta +telefonica +internazionale +cartina +roma +kit +accoglienza +euro +giorno +scappati +tasche +piene +clandestini +sopravvissuti +lampedusa +ospiti +ora +roma +assessorato +sostegno +sociale +sussidiarietà +accogliamo +coccoliamo +manteniamo +poi +vogliono +vogliono +bastaaaaaaaaa +espulsioni +controllo +frontiere +serietà +indipendenza +roma +bruxelles +pensiero +abbraccio +grande +popolo +sardegna +morti +lavora +ore +fango +soli +buon +martedì +amici +stazione +nord +milano +comincia +viaggio +strasburgo +abbattere +ricostruire +europa +cittadini +banche +operazione +castagne +banzai +oriana +fallaci +grande +donna +libera +scomoda +coraggiosa +grazie +pisapia +prende +lega +nord +perchè +guarda +strano +fa +opposizione +sindaco +aumenta +miliardo +euro +tasse +tariffe +meno +anni +evtutti +dobbiamo +forse +dire +bravo +pisaoia +sciagura +massacro +bugia +disastro +beffa +calamità +naturale +milano +minuti +trasmissione +rai +solo +beghe +berlusconiani +alfaniani +machissenefregaaa +problemi +cittadini +altri +fiume +gente +perbene +strade +adro +grazieeeeeeeeeee +molla +giù +mani +sindaci +onesti +stato +ladro +mafioso +cittadini +piazza +gradisca +isonzo +invasione +clandestina +italia +spazio +solo +immigrato +buona +domenica +amici +bella +portogruaro +tanta +gente +tanto +veneto +tante +idee +tanta +voglia +indipendenza +stasera +lega +pramaggiore +attesa +mangiare +formaggio +fuso +tagliata +stasera +contento +perchè +veneto +festa +leghista +pramaggiore +provincia +venezia +aspetto +tanti +amici +insieme +può +lago +como +me +posti +belli +mondo +luogo +cuore +pdl +spacca +falchi +colombe +pitonesse +pantere +so +tifo +nessuno +tifo +nord +bitto +casera +sforzato +sapori +casa +meglio +eroici +consiglieri +comunali +lega +milano +consiglio +comunale +ore +svegliare +pisapia +sinistra +togliere +po +soldi +destinati +rom +restituirli +milanesi +insieme +può +clandestini +delinquenti +fuori +palle +aspetto +domenica +ore +manifestare +presso +centro +identificazione +espulsione +cie +gradisca +isonzo +buon +venerdì +bagnato +spero +fortunato +amici +bologna +bimba +anni +decisione +tribunale +minorile +parere +procura +minorile +stata +data +affido +temporaneo +coppia +omosessuale +intanto +coppie +banali +composte +uomo +donna +aspettano +anni +spendono +cifre +folli +adozione +affido +qualcuno +vuole +mondo +contrario +arrendo +tradizione +identità +comunità +futuro +notte +serena +amici +lega +passione +lavoro +impegno +fatica +battaglie +allegria +ripensavo +storia +baby +prostitute +mamma +fa +prostituire +figlia +razza +brutta +bestiaccia +addio +semplice +fedele +compagno +telefonate +mancherai +fate +fatica +buttare +cose +vecchie +così +vedo +futuro +lega +europa +cosa +pensate +http +www +lastampa +it +italia +politica +salvini +lega +novembre +no +euro +day +indf2wfkancpqxz4s6uvmn +pagina +html +manifesti +giro +milano +piace +stato +ladro +adro +domenica +ore +manifestazione +difesa +sindaci +girano +palle +girare +video +guadagnato +euro +disoccupazione +confronto +germania +italia +germania +italia +germania +italia +germania +euro +scesa +molto +italia +drammaticamente +cresciuta +certo +italia +stato +ladro +numeri +dicono +euro +morendo +dite +iene +sembrano +squallide +pecore +congresso +lega +parla +gad +lernerrrrrrr +matteo +salvini +prossimo +segretario +lega +nord +grande +notizia +neppure +militanti +salvini +uomo +collezionato +successi +lega +scomparendo +lernerrrrr +fallito +lega +morendo +allora +vuol +dire +lavorando +bene +indipendenza +milano +arrende +enrico +letta +vede +ripresa +sì +ri +presa +culo +parte +bruxelles +nostalgia +sorriso +ricordo +tempi +cabine +gettoni +stesso +notte +serena +amici +goccia +dopo +goccia +può +scolpire +storia +morti +tantissimi +bambini +terribile +tempesta +filippine +preghiera +ciascuno +leghisti +uscire +articoli +altri +leghisti +tirando +ballo +altri +leghisti +pazienza +certe +cose +lasciamole +pd +pdl +lega +buon +sabato +fratelli +notte +serena +amici +odia +teme +quinto +ennio +poeta +latino +diretta +aria +tira +la7 +mirta +curiosa +tira +tende +saluta +ragazzi +aiutiamo +pd +fare +ancora +tessere +fatte +regalate +moltiplicate +possiamo +aiutarli +fare +qualche +amico +conoscente +viandante +mendicante +super +eroe +regalare +tessera +kompagni +maxi +rissa +famiglie +rom +rivali +ospedale +san +raffaele +milano +sprangate +feriti +morto +notte +serena +amici +rom +partenza +bruxelles +libro +pronto +zaino +piace +gioia +tauro +ragazzini +segregati +campo +rom +forse +lì +kyenge +boldrini +passate +evviva +integrazione +fratelli +zingari +amici +posso +chiedervi +parere +personale +libro +deve +assolutamente +essere +letto +leghista +indipendentista +uomo +libero +bella +milano +sveglia +vuole +offro +tele +caffè +diretta +gold +simpatico +tizio +corriere +it +scrive +proposito +lega +speriamo +minipartito +stampo +medievale +sparisca +sempre +parassiti +vorrebbero +paese +senza +lega +aspetta +spera +battaglia +insieme +può +poco +intervengo +rai +radio +parlare +europa +prima +torniamo +padroni +lavoro +moneta +agricoltura +ambiente +futuro +prima +torneremo +crescere +produrre +sperare +vivere +bene +me +tavola +solo +salsa +pomodoro +pomì +possibile +azienda +pubblicizza +prodotto +dicendo +materia +prima +viene +solo +regioni +nord +lombardia +piemonte +veneto +emilia +romagna +debba +scattare +accusa +razzismo +roba +matti +brava +pomì +italia +alcuni +imbecilli +insultano +pagina +facebook +sostegno +cielo +grigio +fine +torna +sereno +buona +domenica +amici +mai +smettere +crederci +combattere +pisapia +é +vergogna +vivente +anni +mezzo +molte +tasse +molta +sicurezza +meno +quando +cosa +fare +cioé +sempre +attacca +lega +stasera +tagliatelle +formaggio +fuso +funghi +poi +tiramisu +genepì +augh +sala +piena +fratelli +ziano +piacentino +avanti +campagna +lombarda +emiliana +stupenda +viale +lunigiana +milano +lavavetri +rompiballe +solo +incrocio +sveglione +pisapia +può +mandare +vigili +aspetto +giorno +preziose +risorse +andranno +ripulire +vetri +magari +case +boldrini +kyenge +poco +diretta +tg +com +davanti +tele +milano +gentile +pisapia +topi +rom +abusivi +varia +natura +decadenza +berlusconi +siti +giornali +parlano +altro +purtroppo +cosa +pensate +rainews +enrico +letta +oggi +incontrando +tante +persone +vuole +sapere +cacchio +notizia +secondo +incontrando +misterioso +ministra +inutile +kyenge +dice +nemico +straniero +evasore +fiscale +norme +cittadinanza +vanno +cambiate +ministra +vanno +case +popolari +ministra +vanno +contributi +pubblici +quasi +pronto +referendum +prima +gente +cena +leggerina +chili +piccante +formaggio +birra +viva +pancetta +pulita +milano +via +moneta +troppo +periferia +interessare +pisapia +notizie +importanti +domenica +balotelli +tagliato +capelli +machissenefregaaaaaaa +povero +calcio +povera +italia +renzi +pd +reti +unificate +ogni +tivù +radio +daranno +stesso +spazio +congresso +lega +tanta +gente +ricordare +cesarino +monti +grande +sindaco +comunità +lazzate +intitolando +piazza +comune +prima +gente +coraggio +stand +lega +strapieno +cibo +esaurito +sorrisi +spazi +altri +partiti +vuoti +banzai +donne +venete +lavoro +cucinare +polenta +polipo +noventa +padovana +grandi +dedico +bellissimo +tramonto +milanese +amiche +amici +vivono +trentino +domani +voti +lega +sbagli +pensiero +grande +grazie +piero +mazzarella +zuzzurro +grandi +teatro +sorriso +grandi +abbastanza +apprezzati +valorizzati +tivù +pubblica +forse +perchè +abbastanza +romani +portate +sorriso +oltre +cielo +grigio +napolitano +presidente +forse +buono +congo +stasera +cozze +kili +euro +vermentino +sardegna +euro +poca +spesa +tanta +resa +anni +fa +strasburgo +bandiere +rappresentavano +stati +sovrani +oggi +rappresentano +nuovi +schiavi +banche +finanza +euroburocrati +combattere +mostro +può +oltre +comuni +lombardi +movimento +www +rompiamoilpatto +org +cresce +leggere +articoli +piero +ostellino +salvifico +fortuna +qualche +giornalista +esiste +ancora +stasera +ahimè +milan +barcellona +finisce +secondo +altri +clandestini +mantenere +sbarcati +sicilia +clandestini +migranti +ricominciamo +usare +giuste +parole +almeno +maxi +rissa +immigrati +carcere +bologna +tranquilli +poco +risorse +liberate +governo +indulto +picchieranno +fuori +rai +esiste +solo +roma +rischio +migliaia +posti +lavoro +nord +uniti +può +vincere +perso +consapevolezza +istante +vivendo +davide +van +sfroos +sciura +kyenge +dice +riceve +letterine +affettuose +migliaia +bambini +speriamo +giovane +età +già +imparato +troppe +parolacce +cediamo +rai +repubblica +congo +basta +mega +stipendi +programmi +inguardabili +giornalisti +faziosi +lunedì +aspettiamo +giù +mani +milano +incredibile +sacconi +pdl +sprechi +italiani +piccoli +ospedali +università +nord +vergognatiiiiiii +stato +politici +giornalisti +discutono +pascale +lesbica +no +stato +m +posso +suggerirvi +sito +palle +www +rompiamoilpatto +org +piaceeeeeeeee +fate +girare +sito +così +qualcuno +girano +balle +buon +venerdì +amici +piace +venerdì +poco +canale +prima +gente +piace +secondo +riusciamo +arrivare +almeno +condivisioni +vota +commissione +bruxelles +imporre +etichette +scritto +chiaramente +arriva +prodotto +orgogliosamente +lega +sempre +difesa +lavoro +gente +combattere +europa +buon +giovedì +amici +bella +squadra +lega +nord +trentino +attacco +vento +pulito +adamello +ripulisca +giornata +amici +cena +amici +grappa +passi +silenzio +acqua +fiume +luna +dietro +nuvole +domani +altro +giorno +niente +notte +serena +amici +divisi +confine +uniti +valore +buon +militante +adesivi +sempre +tasca +boschi +val +rendena +trentino +arrivo +sopralluogo +casa +signora +giulia +invalida +carrozzina +vive +milano +case +popolari +secondo +piano +senza +ascensore +montascale +istituzioni +sveglia +notte +serena +amici +mollano +troverai +boschi +libri +alberi +rocce +insegneranno +cose +nessun +maestro +dirà +san +bernardo +chiaravalle +veri +amici +grillini +italiani +clandesitini +squadra +padana +vincente +nuova +sezione +casalbuttano +super +brunch +kiki +piazza +minniti +bolliti +bue +grasso +tonno +riso +patate +cozze +poca +spesa +tanta +resa +lega +sardegna +razzisti +egoisti +brutti +cattivi +no +gente +perbene +vuole +vivere +tranquilla +città +comunità +idee +lotta +torino +parla +legalità +libertà +chissà +giornali +tivù +parleranno +fratelli +emiliani +presenti +torino +oggi +leghistaaaa +squadra +leghista +albenga +centro +storico +stupendo +sindaca +gamba +così +lega +vince +poche +parole +tanti +fatti +renzi +tgcoreadelnord +cioè +tg3 +dice +legge +bossi +fini +servita +alimentare +paure +lega +chiacchiera +meno +piace +ragazzi +arriviamo +almeno +condivisioni +aspetto +sabato +manifestazione +immigrazione +clandestina +torino +buon +viaggio +fratello +padano +beppe +vezzoli +colonna +sezione +adro +battaglia +battaglia +aiutaci +alto +rapine +stupri +violenze +aggressioni +machete +arrestati +immigrati +sud +americani +milano +dintorni +attende +pronto +intervento +duo +kyenge +boldrini +poverini +é +colpa +italiani +integrati +amici +mirta +tuta +verde +augura +notte +serena +grande +gruppo +leghista +ceriano +laghetto +avanti +fratelli +scoperte +italia +milione +case +fantasma +sicilia +immobili +beccati +campania +calabria +puglia +mai +detto +strano +viva +italia +insivisibile +fantasma +poco +intervengo +zanzara +radio +saluto +cruciani +parenzo +roma +magna +teatro +scala +prima +volta +infatti +decreto +cultura +approvato +parlamento +lega +contraria +sovrintendente +scala +verrà +nominato +ministero +comune +indipendenza +via +stato +ladro +signora +sindaco +lampedusa +oggi +trovato +colpevoli +poveri +morti +mare +lega +nord +seminato +virus +menzogna +odio +capisco +stanchezza +strazio +stress +signora +bel +tacer +mai +scritto +signor +napolitano +dice +indispensabili +presidi +adeguati +lungo +coste +partono +viaggi +disperazione +morte +anziano +presidente +svegliato +dà +ragione +maroni +pattugliamenti +controlli +avvisato +letta +alfano +kyenge +boldrini +notte +serena +amici +dubbio +visto +papa +francesco +ormai +telefona +qualcuno +giorni +numero +privato +risposto +oggi +arrivava +vaticano +stasera +casa +niente +politica +tivù +anzi +guardo +visto +solo +saluti +romani +ora +taxi +vola +bruxelles +basta +euro +insieme +può +porta +porta +ascoltato +lungo +politici +importanti +studio +parlato +parlato +urlato +litigato +parlato +fine +tardi +intervenuto +vespa +ringrazio +stasera +conferma +unica +via +nord +rimane +seguire +indipendenza +poi +ancora +napolitano +presidente +unica +scelta +può +salvare +uscire +euro +sconcerto +studio +spero +approvazione +casa +notte +amici +dietro +quinte +porta +porta +ospiti +brunetta +demicheli +mauro +stato +italiano +aumenta +ancora +tasse +benzina +regione +lombardia +diminuisce +prezzo +benzina +fino +centesimi +litro +milione +cittadini +abitano +province +confine +benzinai +consumatori +ringraziano +pubblicamente +promesso +campagna +elettorale +fatto +biscione +castello +ponte +levatoio +coraggio +vittorie +ieri +dicono +possiamo +vincere +liberarci +domani +stasera +pasta +tradizionale +amici +pomeriggio +teatro +senza +cultura +insieme +lavoro +futuro +persone +stasera +lega +vittorio +veneto +gran +gruppo +donne +lavorare +cucine +modello +tradizionale +barilla +notte +serena +amici +rai +giuliano +amato +parla +europa +rai +yoyo +peppa +pig +gioca +nessun +dubbio +educativa +seria +utile +peppa +pig +notte +serena +amici +pensando +colazione +domani +tradizionali +biscotti +mulino +bianco +barilla +signora +sinistra +dice +tivù +poveri +rom +vengono +trattati +così +male +parla +sgomberi +sicurezza +perchè +pancia +piena +anzi +salvini +ruba +stipendio +esce +merda +bocca +perbacco +principessa +idee +chiare +rispettose +utili +approfondite +domanda +perchè +ama +tanto +rom +prende +casa +mantiene +ogni +cittadino +europeo +diritto +sapere +vengono +confezionati +prodotti +viene +contatto +fa +resto +mondo +europa +deve +fare +letta +ultimi +sviluppi +politici +stati +umiliazione +italia +me +invece +governi +monti +letta +schiavi +bruxelles +stati +vera +umiliazione +italia +radio +popolare +tal +mirco +rota +fiom +cgil +lombardia +dichiarato +oggi +salvini +valcamonica +guidato +protesta +piccolo +gruppo +lavoratori +nascondere +fatto +regione +lombardoa +niente +vergognati +poveretto +cosa +entra +regione +acciaierie +riva +sveglia +amici +pd +rispetta +operai +compresi +iscritti +incazzati +sciur +rota +sindacalisti +poveri +lavoratori +seduti +statale +difesa +lavoro +lombardi +operai +andiamo +bloccare +statale +insieme +operai +riva +serve +strada +statale +poco +distante +abbiati +zapata +allegri +galliani +cazzo +buttiamo +giù +torre +lavoratori +atm +milano +attacco +roberto +maroni +brianza +serata +dedicata +onlus +cancro +primo +aiuto +ogni +anno +aiuta +gratuitamente +malati +lombardi +curarsi +avere +speranza +insieme +può +eh +no +vetro +me +lavo +solo +cazzo +bimbi +spasso +campo +rom +martedì +scuola +no +grazie +raccolta +differenziata +tanto +fuoco +campo +rom +fare +domeniche +piedi +ingresso +mega +campo +rom +abusivo +proprietà +privata +stasera +ospite +iceberg +telelombardia +vittorio +feltri +carmela +rozza +licia +ronzulli +preferite +leggervi +buon +libro +capisco +gruppo +chiuduno +ferma +nessunoooooo +tanta +gente +chiuduno +fortuna +guardando +milan +notte +serena +cappelletta +noale +chissà +quei +figli +eroicamente +caduti +oggi +orgogliosi +italietta +corriere +sera +edizione +milano +lettera +genitore +figlio +mesi +quest +anno +dovrebbe +andare +nido +rischia +essere +unico +bimbo +italiano +classe +arabi +romeni +sudamericani +indiani +pachistani +albanese +razzismo +entra +nulla +combattuti +signora +kyenge +integrazione +adoro +profumo +calore +legna +brucia +storie +anni +fuoco +sentito +raccontare +fratelli +leghisti +alto +lago +como +tramonto +ligure +dedicato +molla +mai +mercato +comunale +via +osoppo +milano +anziana +cerca +frutta +verdura +abbandonate +terra +cassette +vuote +letta +kyenge +bisogna +aiutare +altri +perla +signorino +letta +avere +nominato +ministro +cecile +kyenge +scelta +importante +bene +paese +penso +invece +nominare +ministro +colore +pelle +razzismo +svegliaaaaaaa +chiamarmi +telelombardia +adesso +chiamatlo +numero +salutiamoooo +notte +serena +amici +momenti +vita +tacere +diventa +colpa +parlare +diventa +obbligo +grazie +oriana +fallaci +indovinate +qual +ufficio +salvini +strasburgo +può +menata +tira +molla +tiggì +commenti +decadenza +berlusconi +poco +diretta +rai +news +polo +verde +adro +alberto +giussano +immigrati +ammazzano +colpi +machete +mezzo +strada +africa +no +bergamo +muore +dottoressa +italiana +fermata +soccorrere +feriti +investita +bestie +integrazione +preghiera +morti +intanto +aspettiamo +sdegno +accogliente +signora +kyenge +napolitano +messaggio +dice +unione +europea +resta +modello +successo +mette +guardia +pericolose +correnti +scetticismo +rifiuto +verso +indispensabile +ulteriore +integrazione +europa +successo +secondo +me +pericoloso +solo +europa +massacrando +lavoro +altro +identità +euro +uccidendo +imprese +futuro +moooolto +pericolosi +pure +tifosi +ogni +costo +napolitano +compreso +politicamente +corretto +dirlo +chissenefrega +grande +gruppo +leghista +castano +primo +grande +gruppo +lavoro +festa +palazzago +andate +trovarli +sorrisi +tombola +ottima +cucina +solo +persona +rischia +veramente +libera +notte +serena +amici +duman +telelombardia +corriere +pugni +insulti +vicina +albanese +processo +sorella +kyenge +madddaiiiiiiiiii +violenza +razzismo +sciura +kyenge +forse +prima +integrare +leghisti +occhio +accade +casa +assessore +milanese +pd +vigili +devono +picchiare +gente +ossignur +noto +milano +tutta +italia +vigili +vanno +giro +menare +mani +niente +fare +certa +sinistra +allergica +sicurezza +lega +combatte +vince +senato +governo +battuto +passa +proposta +leghista +anno +niente +apertura +nuove +sale +gioco +azzardo +letta +kyenge +boldrini +datevi +slot +machine +persone +amministratori +militanti +lega +buguggiate +provincia +varese +grande +poetica +immensa +sciura +kyenge +cinema +poiché +arriva +case +può +aiutare +discorso +integrazione +imparare +camminare +volare +ecco +brava +prova +volare +via +pronto +ascoltarvi +antenna +potete +telefonarmi +ragione +vecchi +sala +piena +stasera +lega +bormio +senatori +vita +avvistato +monti +prossimo +senatore +vita +scelto +napolitano +cervo +assassino +gioielliera +sarono +confessato +ucciso +donna +calci +pugni +dicono +sbandato +disoccupato +sicuro +qualcuno +cercherà +capirlo +spero +finisca +giorni +galera +senza +vedere +sole +formiche +lavorano +matte +poi +cicale +spendono +spandono +rotto +essere +formica +cicale +vadano +farsi +fottere +gol +milan +ora +camera +merito +bombardini +altri +clandestini +sbarcati +ultime +ore +intanto +milioni +italiani +soffrono +disoccupazione +precariato +cassa +integrazione +politico +pagato +aiutare +prima +gente +poi +resto +mondo +altro +kyenge +accordo +insieme +può +cambiare +livigno +litro +diesel +euro +dovessimo +mantenere +stato +ladro +così +venerdì +sera +incontro +pubblico +bormio +aspetto +voto +aaron +swartz +attivista +americano +finito +sotto +processo +aver +lottato +favore +libera +circolazione +idee +conoscenze +morto +suicida +soli +anni +ragazzo +accettato +rischiare +ideali +vero +leghista +approfittando +agosto +giunta +pisapia +raddoppiato +decine +migliaia +pensionati +studenti +costo +abbonamento +mezzi +pubblici +euro +colpo +solo +maledetti +pagare +caro +finiti +elettori +pisapia +bella +serata +gente +solbiate +abbraccio +lago +como +stasera +presente +feste +arcisate +solbiate +olona +giovani +padani +piemonte +me +mica +tanto +giovane +grande +gruppo +capriata +sindaco +pozzallo +sicilia +città +totalmente +mano +immigrati +quasi +sempre +ubriachi +sindaco +accogli +sorridi +pensa +kyenge +sennò +te +pronta +accusa +razzismo +oggi +telelombardia +trasmissione +studio +stadio +commentare +prima +campionato +verona +milan +ragazzi +compagnia +finisce +secondo +kilometri +coda +dopo +capriate +direzione +milano +lavori +corso +venerdì +rientro +fine +agosto +complimenti +pirla +programmano +cose +tanta +gente +sotto +acqua +lega +berghem +fest +grande +squadra +padana +festa +bolgare +banzai +rissa +sangue +stazione +centrale +milano +turisti +marocchino +accoltellato +torace +molto +grave +tunisino +sfregiato +volto +ospedale +storie +ordinaria +integrazione +domani +mattina +ricomincia +diretta +telelombardia +aspetto +siti +informazione +parlano +scontro +pd +pdl +futuro +berlusconi +governo +rischio +secondo +finire +berlusconi +stacca +spina +governo +cade +sciura +napolitano +tace +verità +politica +rotto +scatole +tramonto +valcamonica +dedicato +luna +stasera +montagne +chissà +esistono +altre +vite +altri +mondi +ora +notte +serena +impegna +migliorare +mondo +solo +lombardia +disoccupati +solo +aziende +crisi +profughi +italiani +governo +frega +forse +chic +politicamente +corretto +preoccuparsi +arriva +africa +sbarca +lampedusa +piuttosto +italiani +bisognosi +ogni +integrazione +impossibile +condizioni +prima +viene +gente +poi +avanzano +spazio +soldi +altri +qualcuno +chiama +razzismo +me +buon +senso +sbaglio +oggi +comincia +redditometro +roba +regime +comunista +fascista +scegliete +spese +inserite +controlli +quindi +potrebbero +costarvi +care +troviamo +libri +scolastici +visite +veterinario +cagnolini +gatti +piante +fiori +bolletta +acqua +succhi +frutta +medicine +soprattutto +roba +matti +verranno +controllate +donazioni +associazioni +volontariato +solo +stato +ladro +può +arrivare +tanto +caro +letta +autunno +caldo +arrivando +milano +giunta +pisapia +dà +via +libera +centri +islamici +milanesi +proprio +bisogno +egitto +giro +mondo +none +islam +mettono +ferro +fuoco +città +apriamo +porte +casa +lega +sola +barricate +melzo +almeno +persone +ballare +parlare +buona +politica +lega +evvai +finiti +tornanti +selvino +guida +direzione +festa +melzo +aspetto +adoro +milano +agosto +parcheggio +ovunque +pontida +strapiena +grazie +lega +combatte +lago +mortitolo +stasera +pontida +leghisti +parlano +leghisti +rotto +montagne +combatté +scacciare +occupante +straniero +montagne +riparte +riprenderci +città +lavoro +futuro +migliaio +persone +sera +ferragosto +lega +ponte +legno +insieme +può +esagerati +poco +semifinale +torneo +notturno +calcetto +oratorio +vezza +oglio +calcio +pronti +autunno +caldo +lanceremo +serrata +totale +puntiamo +chiudere +comuni +negozi +stalle +benzinai +scuole +piscine +palle +piene +cosa +pensate +priorità +aumentare +contributo +pensioni +invalidità +vere +euro +vergogna +fine +fatto +controlli +beccare +falsi +invalidi +forse +governi +monti +letta +dormono +euro +uccidendo +lavoro +economia +stipendi +futuro +cuore +europa +combatteremo +europa +schiava +banche +finanza +poteri +forti +finita +pronti +battaglia +pronti +servirà +liberarci +euro +ieri +giornata +silenzio +piuttosto +parlare +costi +dire +cazzate +dice +signorino +letta +meglio +tacere +buona +settimana +tucc +sperando +governaccio +romano +pensi +tassare +vista +montagne +scelte +edicola +oggi +buon +week +amici +notte +serena +amici +sfigati +insultano +pronto +collegamento +sky +tg +ore +melone +calvenzano +spettacolo +gnocchi +burro +insalata +ravanelli +bicchieri +rosso +salento +fetta +crostata +poi +grappino +telefilm +notte +serena +amici +soprattutto +perde +mai +voglia +lottare +sperare +ricevuto +migliaia +messaggi +sostegno +tutta +italia +tanti +leghisti +molti +leghisti +nord +sud +cittadini +italiani +tanti +stranieri +perbene +pronti +firmare +abolire +inutile +ipocrita +ministero +integrazione +grazie +andremo +avanti +nonostante +insulti +attacchi +prima +gente +clandestini +posto +oggi +governo +pd +pdl +annuncia +pene +severe +confronti +mariti +violenti +ieri +governo +pd +pdl +fa +approvare +legge +svuota +carceri +uscire +delinquenti +serve +legga +svuota +carceri +legge +svuota +ministeri +fessi +occupano +montagna +valcamonica +vista +adamello +bicierin +grapa +buona +coro +alpino +canta +signore +cime +stereo +mica +invecchiando +buona +serata +amici +squadra +amici +lega +arcene +gara +barbe +belle +arcene +vado +duman +piazza +nerviano +amici +lega +incontrare +ascoltare +tanta +gente +notte +serena +ancora +voglia +combattere +grande +torta +grandi +militanti +veniano +ancora +giulia +altra +trota +giulia +preso +trota +adoro +laghetti +alpini +appuntamento +stasera +comasco +veniano +valbrona +almeno +migliaio +persone +insieme +lega +arcore +banzai +volante +direzione +arcore +villa +festa +lega +mooolto +meglio +mercato +via +osoppo +milano +bancarelle +smontano +coppia +nonni +nipotini +cercano +avanzi +po +frutta +verdura +piacerebbe +boldrini +pisapia +kyenge +pensassero +italiani +difficoltà +oltre +immigrati +rom +vergogno +dolcetto +dietetico +profiterole +panna +montata +posso +bella +milano +tranquilla +idee +proposte +inviti +oggi +pranzo +tramonto +corgeno +grazie +lega +scoprono +angoli +lombardia +davvero +stupendi +oggi +soddisfatto +può +fare +buona +politica +pochi +giorni +già +arrivate +richieste +contributo +economico +genitori +separati +divorziati +voluto +regione +lombardia +fino +euro +mese +aiutare +bisogno +solo +residente +lombardia +almeno +anni +prima +volta +importante +tema +solo +parole +fatti +concreti +informazioni +può +ancora +contattare +asl +zona +fate +girare +aiutiamo +aiutare +gente +esulto +condanna +nessuno +semmai +aspetto +condanna +troppi +kabobo +libertà +nè +amico +nè +nemico +berlusconi +avversario +politico +combatte +idee +sentenze +batte +idee +migliori +temo +governo +cadrà +troppi +interessi +soprattutto +economici +ballo +altro +destra +sinistra +quando +napolitano +letta +giù +appello +unità +coesione +interesse +supremo +italia +significa +vogliono +mollare +poltrona +continuare +svendere +possibile +penso +lega +debba +guardare +sempre +meno +succede +roma +sempre +solo +nord +usando +adesso +mai +coraggio +disubbidienza +giro +nord +solo +rabbia +voglia +lottare +tocca +lega +guidare +rivolta +uomini +donne +progetto +dipende +dipende +forza +schiuma +party +padano +colico +berlusconi +condannato +anni +adesso +curioso +sentire +kompagni +pd +parlamento +facebook +giustificare +fatto +governo +condannato +geniale +fare +lavori +autostrada +venerdì +luglio +pirla +coda +dopo +dalmine +giovani +padani +piemonte +presenti +leghisti +solo +venaria +parlare +piemonte +lavoro +futuro +banzai +regione +lombardia +conferenza +stampa +presentazione +progetto +favo +genitori +separati +difficoltà +riusciremo +aiutare +concretamente +circa +persone +solo +inizio +so +arrabbiarmi +meno +sopporto +falsità +ipocrisia +fatto +così +buona +serata +amici +direttore +tal +quotidiano +europa +ovviamente +sinistra +rivolgendosi +leghisti +dice +quasi +schifo +venite +parti +parti +qua +pagare +tasse +mezza +italia +lavoreresti +altrove +debbio +sallusti +pronti +studio +alcuni +kompagni +sinceri +democratici +accoglienti +tolleranti +indignati +offese +kyenge +vengono +pagina +solo +insultare +minacciare +fate +tanta +tenerezza +vicino +abbraccio +gente +tosta +sorridente +grandi +cose +grazie +missaglia +gente +lega +stasera +missaglia +avanti +comunque +kyenge +kyenge +aspetto +belli +brutti +stasera +festa +missaglia +polenta +missoltini +congresso +lega +como +gente +pronta +battaglia +squadra +volontari +marcallo +banzai +grande +gruppo +muggiò +gazebo +via +papiniano +vanno +ruba +libricini +primi +giorni +maroni +sudato +fradicio +lavori +casa +sabato +mattina +letto +castello +bimbi +smontato +trasferito +spalla +piani +scaleeee +palazzo +fronte +fatto +sforzi +sovrumani +ogni +tanto +bisogna +finta +essere +uomo +casa +no +giovani +padani +crema +cremona +banzai +balla +solo +borsa +grazie +lega +evviva +liscio +cioccolatini +pernigotti +finiscono +mani +straniere +oggi +comprare +stata +azienda +turca +parte +smetterò +comprarli +ennesima +dimostrazione +molliamo +euro +europa +perderemo +lavoro +produzione +futuro +cartello +stradale +milano +ama +libertà +odia +nessuno +ora +telelombardia +telefonare +vale +sempre +trasmissione +precedente +telefonate +espresso +fiducia +lega +ragazziiiiiii +gruppo +treviglio +tanti +belli +difesa +europea +fregatura +fronte +sbarchi +lampedusa +europa +lasciati +soli +bruxelles +contano +multinazionali +volere +cittadini +http +www +youtube +com +watch +v +53egzsrsepo +tanta +gente +stasera +lega +goito +giornalisti +cosa +scriverete +domani +grandi +militanti +griglia +goito +papa +migranti +dice +sappiamo +piangere +falso +basta +chiedere +parenti +vittime +clandestini +festa +strapiena +cassano +magnago +giornalisti +gufi +tanta +gente +bellissima +alserio +passi +lago +forza +lega +banzai +militanti +lavoro +boffalora +ticino +bravi +grande +squadra +padana +castelcovati +telelombardia +svegliaa +porta +caffè +virtuale +telefonando +chiudo +ufficio +ritiro +bandiera +ciao +strasburgo +mirta +superato +quota +kili +ride +sempre +incomincia +emettere +suoni +gorgheggi +ora +difficile +comprensione +po +bersani +secondo +prima +parola +mirta +abbraccio +strasburgo +troppa +ipocrisia +troppo +politicamente +corretto +palazzo +moderato +nooo +europa +euro +rischiano +essere +tomba +testa +fuori +prima +troppo +tardi +grande +squadra +giovani +padani +congresso +giovani +padani +fino +solo +lombardia +parte +siria +ribelli +ultrà +islamici +sgozzato +persone +egitto +ultime +ore +morti +centinaia +feriti +guerra +civile +orizzonte +ecco +primavere +arabe +stati +uniti +sinistre +occidentali +osannato +alimentato +armato +ognuno +guardasse +casa +male +grandi +militanti +spirano +decreto +fare +chiamatelo +decreto +rimandare +governo +rinvia +aumento +iva +compenso +irpef +chiede +acconto +letta +vuol +vendere +fumo +europa +massacrando +cittadini +imprese +solo +colare +picco +fretta +svegliaaa +poco +diretta +telelombardia +chiamare +diretta +segnalare +problemi +proposte +potete +chiamare +daiiiii +borgomanero +tanta +gente +spegne +televisione +accende +cervello +parlare +nord +immigrazione +lega +lavoro +banzai +sala +stra +piena +milano +dibattito +futuro +europa +rai +tg3 +regionale +unica +assente +conferenza +stampa +legge +aiuto +genitori +separati +rai +interessano +famiglie +me +interessa +pagamento +canone +conferenza +stampa +regione +lombardia +presentare +progetto +legge +tutela +genitori +separati +divorziati +figli +promesse +fatti +regione +lombardia +ieri +votato +stop +nuovi +centri +commerciali +grande +distribuzione +promesso +campagna +elettorale +fatto +governo +letta +bilico +presunta +trombata +secondo +cade +governo +ovviamente +anni +berlusconi +sconti +pena +assassini +sempre +convinto +ripartire +dobbiamo +mollare +paese +melma +indipendenza +telelombardia +sinistra +dice +lega +morta +scomparsa +primi +cittadini +telefonato +diretta +rivolti +fiducia +lega +basta +litigi +pernacchie +lavoro +vince +grandi +militanti +osio +sotto +banzai +dietro +quinte +agora +onda +poco +rai +bruxelles +oggi +indosso +polo +verde +amici +padani +adro +domani +sera +saró +festa +lega +osio +sotto +viene +fare +salto +daiiiii +grandi +militanti +caronno +varesino +vive +lavora +paga +nord +governo +decreto +fare +prendere +prendere +sedere +grigliata +lago +como +bellooooooo +benvenuta +mirta +oggi +mesi +sorrisi +oggi +giornata +mondiale +donazione +sangue +grazie +dona +buoni +fatti +solo +parole +viaggio +strasburgo +sotto +splendido +cielo +lombardia +buona +giornata +amici +ri +parte +saró +diretta +antenna +parlarmi +magari +esporre +qualche +problema +potete +telefonare +ciao +berlusconi +dice +vorrei +europa +meno +europa +piace +invece +avere +meno +roma +meno +bruxelles +autonomie +lavoro +grande +insegna +milanese +nuovo +bar +piazza +duomo +visitare +assssolutamente +siti +corriere +repubblica +danno +grande +spazio +notizia +fondamentale +minetti +amava +berlusconi +frega +parlare +lavoro +no +ogni +paese +giornalisti +merita +piace +ogni +volta +sento +rabbioso +arrogante +dice +spero +lega +scompaia +sempre +convinto +ragione +bussolengo +verona +centinaia +persone +piazza +lega +banzai +governo +dice +riforme +mesi +avvisa +roma +autunno +economicamente +politicamente +decide +vive +muore +preparando +prima +cormano +solito +casino +pezzo +stupendo +ode +to +my +family +stanco +morto +battaglia +fiducioso +wow +arrivati +grazieeeeeeeeee +ebbè +dietro +quinte +quinta +colonna +allegri +riconfermato +allenatore +milan +piace +proprio +ogni +tanto +chiesto +valsa +davvero +pena +fare +tutte +battaglie +anni +lega +risposta +sì +ciao +amici +piccola +rivoluzionaria +cresce +confesso +ogni +tanto +ascolto +bel +liscio +radio +zeta +via +palmanova +coda +impressionante +verso +milano +forse +pisapia +semaforo +regalare +rose +cosa +state +ascoltando +radio +ve +dico +vediamo +indovina +vista +situazione +continuando +essere +fiducioso +penso +dovremo +essere +po +meno +prudenti +elettori +giorni +molti +voti +passati +forse +futuri +lega +cuori +bisogna +riconquistare +dobbiamo +discutere +ragionare +sconfitte +festeggiare +solo +stasera +vittorie +domani +lavoro +disfattisti +bisogno +pochi +minuti +fa +militare +francese +stato +accoltellato +gola +parigi +polizia +pare +dando +caccia +nordafricano +notizia +confermata +mammamia +oriana +fallaci +penso +libri +dovrebbero +essere +obbligatori +tutte +scuole +ascoltano +vasco +milano +meda +cantano +finestrino +abbassato +sole +entra +montagne +lombarde +innevate +sfondo +incredibileeeeeeeee +perfino +corriere +sera +adesso +boccia +giunta +pisapia +mai +secondo +grillino +vito +crimi +ora +radio +dice +può +pensare +euro +velocità +sempre +arrivano +dopo +lega +sfida +passare +parole +fatti +vent +anni +fa +morivano +mano +mafia +magistrato +giovanni +falcone +moglie +francesca +diversi +uomini +scorta +grande +uomo +coerente +coraggioso +fine +isolato +osteggiato +proprio +quei +progressisti +ogni +anno +ipocritamente +ricordano +ieri +oggi +domani +sempre +tutte +mafie +appena +finito +volantinaggio +mercato +brescia +ottima +accoglienza +tante +domande +tante +firme +raccolte +qualche +critica +tanti +tenete +duro +ragazzi +brescia +vince +ministra +vergogna +sala +strapiena +lodi +almeno +persone +piedi +trovano +posto +presentazione +candidati +lega +nord +risveglieranno +città +sempre +vuota +povera +insicura +sinistra +mentre +altri +insultano +lodi +lega +propone +può +vincere +domani +saró +gazebo +via +papiniano +angolo +piazza +sant +agostino +raccogliere +firme +difendere +reato +clandestinità +televisioni +fotografi +viene +ciaoooo +telelombardia +parlarmi +diretta +chiamate +www +vieniafirmare +com +trovate +indirizzi +gazebo +lombardia +fate +girare +bacheche +ragazzi +arriviamo +condivisioni +incazzato +altro +incazzato +può +morire +così +cosa +pensate +ieri +niguarda +quartiere +milanese +folle +picconatore +sparso +sangue +innocente +ore +gazebo +lega +fermati +firmato +sostegno +reato +clandestinità +cittadini +altri +cittadini +militanti +sinistra +contestato +pensate +dedicati +titoli +giornali +pennivendoli +anti +leghisti +schifo +banzai +notte +serena +amici +bella +gente +incontrato +oggi +tanti +problemi +qualche +critica +molte +proposte +speranze +entusiasmo +intatti +domani +canale +voglia +ciauuu +domani +prima +comunione +fede +buondì +diretta +gold +chiamatemi +ora +entro +san +vittore +spero +uscire +bene +bene +liberata +pagina +po +frustrati +sfigati +vari +visita +centro +anti +violenza +ospedale +finanziati +unione +europea +soldi +ben +spesi +vite +salvate +contesto +povertà +impensabile +poco +sfido +gradi +vado +ricerca +casa +madre +teresa +calcutta +gente +almeno +fine +riesce +sorridere +condividete +ciao +amici +oggi +po +accaldato +saluto +aeroporto +dubai +chissà +ministra +integrazione +ragazzi +condividiamo +liberata +pagina +po +pirla +tanti +centri +sociali +disposizione +sfogatevi +parti +salute +vale +profitti +qualche +multinazionale +lega +continua +battersi +bruxelles +diritti +celiaci +bello +riuscre +risolvere +problemi +concreti +cittadini +lavori +installare +ascensori +disabili +sistemazione +alcune +case +popolari +recupero +giardino +comunale +aiuto +alcune +mamme +graduatorie +scuole +materne +ora +vado +tele +antenna +telelombardia +telefonatemi +diretta +eccomi +sbarcato +rai +oggi +pomeriggio +sotto +madonnina +sentite +viene +comiziare +aprile +compagna +amica +rom +laura +boldrini +prevedo +fiumi +buonismo +retorica +faziosità +bla +bla +poveri +partigiani +sapessero +andata +finire +martedì +aprile +lega +nord +ogni +piazza +lombardia +dire +lavoro +no +equitalia +sinistra +milano +deciso +svendere +stato +scuola +eccellente +san +giusto +pisapia +voti +buttati +via +matrimoni +soprattutto +adozioni +bambini +coppie +omosessuali +dico +no +futuro +salto +buio +cancella +radici +certezze +speranze +invece +ieri +francia +altro +parlamento +proprio +approvato +esultanza +qualcuno +interessano +mode +penso +così +cosa +dite +ciao +padani +linate +direzione +bruxelles +combattere +ragazzi +commenti +discorso +napolitano +indipendenza +sempre +comunque +indipendenza +prodi +mai +presidente +oggi +ore +troviamo +protestare +davanti +prefettura +milano +quando +chiuderà +mai +troppo +tardi +corso +monforte +fischietti +bandiere +po +mortadella +aspetto +pisapia +rom +storia +amore +incompreso +milanesi +turchia +europa +né +storia +né +cultura +né +rispetto +diritti +umani +europa +solo +parola +vuota +turchia +potrà +entrarci +ora +neppure +futuro +spero +vermi +bombe +ucciso +bimbo +anni +boston +bimbo +appena +abbracciato +papà +ebbene +spero +riescano +dormire +resto +miseri +giorni +davvero +felice +appena +partecipato +inaugurazione +centro +aiuto +vita +ospedale +buzzi +milano +aiuta +psicologicamente +economicamente +donne +difficoltà +proseguire +gravidanza +piccolo +contribuito +nascita +centro +fin +inizi +mesi +nati +bimbi +altrimenti +altro +rimasti +cielo +oggi +conosciuto +bimbe +vestitino +rosa +ciuccio +bocca +papà +mamma +fine +detto +grazie +senza +aiuto +forse +piccola +mai +nata +sapere +avere +piccola +parte +merito +vita +sorride +dato +emozione +incredibile +avanti +lavoro +www +tuttiicriminidegliimmigrati +com +date +occhio +sito +impressionante +stasera +mirta +compie +mesi +abbraccia +ora +collego +macchina +tg +com +leggo +oggi +bari +persone +giunte +puglia +ascoltare +comizio +sivlio +berlusconi +cacchio +devo +dire +pensavo +cavaliere +finito +sbagliato +grosso +pensate +pronto +week +end +incontri +friuli +venezia +giulia +domani +udine +piazza +san +giacomo +fogliano +redipuglia +gorizia +monfalcone +domenica +invece +tour +prevede +incontro +grado +cordenons +poi +meduno +zoppola +pordenone +amici +furlans +aspetto +stamattina +torna +fango +vecchi +tempi +pronto +sopralluogo +palazzo +abbandonato +via +montefeltro +milano +fianco +autostrada +oggi +okkupato +clandestini +rom +abusivi +varia +natura +rendono +impossibile +vita +residenti +lega +suona +sveglia +sindaco +speremm +bello +vedere +persone +cena +goito +leghisti +vent +anni +oppure +leghisti +appena +arrivati +orgogliosi +sorridenti +ogni +tanto +litigiosi +incazzati +motivati +marciamo +compatti +ferma +nessuno +adoro +tortelli +zucca +pensionati +ultrasettantenni +residenti +milano +possono +sottoscrivere +polizza +assicurativa +gratuita +furti +scippi +rapine +info +polizia +locale +milano +azz +bilancia +medico +avis +assegna +kili +consigli +perdere +qualche +chilo +secondo +coscienza +ultimi +suicidi +civitanova +marche +suicidi +colpa +crisi +lega +mantiene +promesse +mentre +roma +caos +giunta +maroni +pensa +cittadini +comuni +difficoltà +diretta +qualcuno +scandalizza +scherzo +radiofonico +zanzara +imitazione +fatto +fare +figuraccia +professor +onida +imitazioni +bossi +maroni +mai +scandalizzato +nessuno +sempre +comunque +viva +satira +zanzara +adesso +passo +telelombardia +luogo +stesso +cambia +canale +sempre +ascoltare +confesso +preso +giorni +totale +riposo +domani +riparte +tutta +forza +ricordandosi +obiettivo +ultimo +lega +splendidi +militanti +rimane +sempre +comunque +indipendenza +padania +banzai +vogliamo +risolvere +davvero +problema +sovraffollamento +carceri +scontare +pena +detenuti +stranieri +paese +origine +carceri +sicure +vivibili +risparmieremo +miliardi +euro +soldi +pubblici +banzai +governo +tecnico +monti +bersani +no +grazie +gia +dato +serve +governo +affrontare +problemi +paese +reale +dobbiamo +continuare +perdere +tempo +proclami +grillo +bersani +allora +meglio +tornare +votare +milano +perde +memoria +perde +futuro +ricordereste +enzo +jannacci +intitolandogli +cosa +città +sorriso +pensiero +grande +enzo +jannacci +passeggia +scarp +tennis +lassù +notte +serena +amici +gente +nord +sveglia +nemmeno +adesso +addio +duman +matina +voglia +rai +ciauuu +registrando +porta +porta +stasera +oggetto +discussione +palude +romana +stop +venditori +abusivi +sequestro +merce +stop +nuovi +centri +commerciali +riduzione +imu +cosap +tassa +insegne +no +area +altre +demenziali +tasse +comunali +via +redditometro +stop +persecuzione +fiscale +magari +cominciare +pagare +tasse +paga +esempio +prostitute +dite +negozi +morendo +tasse +quali +interventi +suggerite +bloccare +disastro +città +no +imu +stop +aperture +centri +commerciali +riduzione +fiscale +altro +fatica +tirare +fine +mese +vuole +chiacchiere +lavoro +certezze +lega +capito +pezzo +ora +altri +sveglino +signora +boldrini +presidente +consiglio +paese +nordafricano +magari +visto +preoccupa +tanto +immigrati +po +meno +gente +beppe +grillo +dice +commenti +negativi +critiche +blog +gente +pagata +attaccarlo +accetta +critica +ritiene +unico +depositario +verità +preoccupa +piace +stasera +fuori +cena +ragazzo +padre +bella +età +anni +lago +garda +insieme +federico +mirta +amico +bimbo +chissà +cosa +pensano +tavoli +vicini +banzai +buon +venerdì +gente +stamattina +incontro +residenti +commercianti +mercati +milanesi +baggio +via +pistoia +via +fratelli +dio +oggi +ultima +giornate +tranquilli +futuro +bello +deve +ancora +venire +dopo +perdita +vicesindaco +assessore +bilancio +lavori +pubblici +ora +assessore +cultura +giunta +pisapia +continua +perdere +pezzi +ora +telefonate +diretta +radio +popolare +ascoltatori +elettori +sinistra +delusi +pisapia +milano +arancione +già +tramonto +piace +bella +serata +casalinga +parlare +futuro +amici +politica +senza +amici +nulla +nevica +milano +adoro +neve +notte +serena +aiuto +follia +www +corriere +it +sezione +roma +leggo +asilo +annullato +festa +papa +turbare +bimbo +mamme +omosessuali +attendo +qualche +democratico +sinistra +invece +spieghi +tratta +progresso +tolleranza +cosa +pensate +intera +giornata +passata +bimba +mesi +fa +dimenticare +tutte +schifezze +mondo +notte +serena +amici +amici +proposte +interessanti +stasera +www +affaritaliani +it +sezione +milanoitalia +sondaggio +chiede +lettori +giudizio +pisapia +dopo +quasi +anni +mandato +bene +dopo +oltre +voti +giudizi +insufficiente +pessimo +superano +milanesi +dite +buon +venerdì +amici +ieri +dimesso +parlamento +roma +rimanere +bruxelles +essere +sempre +vicino +milano +lombardia +gente +nord +lavoro +manca +entusiasmo +neanche +banzai +pare +bersani +grillo +scannando +presidenze +camera +senato +tristezza +secondo +finire +autostrada +svizzera +rispettano +limite +velocità +invece +no +visto +caos +roma +pare +bersani +messo +angolo +solo +secondo +recupereranno +matteo +renzi +preparo +caffe +zucchero +no +ordinarlo +chiamatemi +ora +diretta +telelombardia +numero +buona +settimana +case +popolari +sicurezza +aiuti +aziende +difesa +ambiente +parchi +lavoro +agricoltura +sostegno +disabili +treni +pendolari +riduzione +tasse +quali +secondo +priorità +deve +affrontare +prossimo +governatore +lombardia +prime +vaccinazioni +fatte +mirta +rideva +preoccupata +mamma +certo +rimanere +auto +ferma +terza +volta +pochi +mesi +finito +completamente +benzina +porta +sospettare +essere +cretino +so +mangiare +crispy +mac +bacon +mezzanotte +sano +frega +mamma +giornatina +perso +qualcosa +bello +brutto +ossignur +pagina +fb +povero +saviano +altro +sinistro +deluso +voto +credibilita +signor +maroni +conquistata +fatti +rinsultati +concreti +mord +sud +altri +credibilità +conquistata +teatro +libri +convegni +belle +parole +so +preferisco +risultati diff --git a/anno3/avrc/assignments/dataviz/dataset/avg_2013/salvini b/anno3/avrc/assignments/dataviz/dataset/avg_2013/salvini new file mode 100644 index 0000000..c2807f7 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/avg_2013/salvini @@ -0,0 +1 @@ +140 \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/avg_2014/salvini b/anno3/avrc/assignments/dataviz/dataset/avg_2014/salvini new file mode 100644 index 0000000..c663e4d --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/avg_2014/salvini @@ -0,0 +1 @@ +151 \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/avg_2015/salvini b/anno3/avrc/assignments/dataviz/dataset/avg_2015/salvini new file mode 100644 index 0000000..e3e1916 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/avg_2015/salvini @@ -0,0 +1 @@ +187 \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/avg_2016/salvini b/anno3/avrc/assignments/dataviz/dataset/avg_2016/salvini new file mode 100644 index 0000000..a14c1ee --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/avg_2016/salvini @@ -0,0 +1 @@ +180 \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/avg_2017/salvini b/anno3/avrc/assignments/dataviz/dataset/avg_2017/salvini new file mode 100644 index 0000000..fca7fbe --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/avg_2017/salvini @@ -0,0 +1 @@ +223 \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/avg_2018/renzi b/anno3/avrc/assignments/dataviz/dataset/avg_2018/renzi new file mode 100644 index 0000000..2b9f7e8 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/avg_2018/renzi @@ -0,0 +1 @@ +532 \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/avg_2018/salvini b/anno3/avrc/assignments/dataviz/dataset/avg_2018/salvini new file mode 100644 index 0000000..83981c0 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/avg_2018/salvini @@ -0,0 +1 @@ +175 \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/avg_2019/renzi b/anno3/avrc/assignments/dataviz/dataset/avg_2019/renzi new file mode 100644 index 0000000..c4c828b --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/avg_2019/renzi @@ -0,0 +1 @@ +386 \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/avg_2019/salvini b/anno3/avrc/assignments/dataviz/dataset/avg_2019/salvini new file mode 100644 index 0000000..9da06a1 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/avg_2019/salvini @@ -0,0 +1 @@ +160 \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/common_words b/anno3/avrc/assignments/dataviz/dataset/common_words new file mode 100644 index 0000000..32efd7d --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/common_words @@ -0,0 +1,10000 @@ +e +non +che +di +la +il +un +a +per +è +una +in +mi +sono +si +ho +ha +ma +lo +cosa +con +no +le +ti +se +da +i +come +io +ci +hai +questo +bene +qui +sei +del +tu +solo +mio +al +me +tutto +te +era +della +mia +fatto +fare +essere +so +quando +lei +gli +ora +ne +oh +questa +detto +perche +va +sì +ok +quello +mai +alla +o +anche +stato +tutti +chi +abbiamo +dei +grazie +molto +sta +voglio +piu +beh +tuo +sia +lui +allora +nel +cosi +posso +più +ehi +prima +niente +suo +tua +sai +qualcosa +siamo +perché +fa +ancora +davvero +stai +sua +hanno +casa +uno +dove +vero +su +vuoi +due +noi +così +dire +quindi +delle +quella +altro +sempre +andare +sto +po +ad +li +devo +quel +loro +forse +proprio +certo +tempo +nella +poi +vi +vita +sul +credo +cose +fuori +anni +andiamo +puoi +quanto +cui +visto +parte +qualcuno +voi +dio +ciao +lavoro +volta +adesso +gia +uomo +dopo +stata +padre +amico +bisogno +devi +ed +posto +via +nessuno +fai +signore +meglio +vuole +dai +dal +giorno +sembra +cazzo +vedere +signor +ogni +senza +modo +qualche +dispiace +dobbiamo +penso +ecco +parlare +tra +mamma +troppo +sarebbe +dalla +ce +male +vai +tanto +avete +madre +fosse +favore +nuovo +sulla +successo +sa +giusto +possiamo +miei +aspetta +altra +alle +avere +farlo +facendo +abbia +aveva +momento +ero +già +ragazzi +deve +prego +nostro +grande +tipo +senti +soldi +persone +dice +appena +potrebbe +sapere +tre +questi +piace +oggi +vieni +avevo +gente +siete +idea +figlio +guarda +ai +sicuro +puo +può +accordo +dentro +degli +forza +queste +trovato +caso +tutte +faccio +signora +nome +pensi +avuto +problema +donna +tutta +okay +altri +preso +aver +ragazza +mondo +basta +faccia +stare +ragazzo +subito +nostra +insieme +nulla +ah +volevo +famiglia +sentito +notte +sara +eh +stesso +ragione +testa +capito +volte +sotto +vado +tuoi +tesoro +suoi +bella +dato +serve +erano +buona +prendere +scusa +stiamo +avrei +pensavo +moglie +porta +sarà +morto +vorrei +succede +storia +bello +pronto +dici +cercando +avanti +meno +persona +dovuto +secondo +venire +polizia +letto +capisco +avrebbe +fino +paura +dico +stanno +amici +mentre +domani +uomini +macchina +fine +aiuto +stavo +capo +fratello +amore +facciamo +abbastanza +nei +ucciso +vediamo +state +cio +mano +lì +giorni +piano +presto +comunque +trovare +nemmeno +merda +qua +bambino +sera +diavolo +giro +andato +vedo +quelle +far +stati +neanche +primo +buon +vostro +morte +tornare +anno +pensato +piacere +bel +perchè +mie +papa +quasi +nessun +dovrei +felice +vedi +stessa +contro +colpa +quale +punto +dovrebbe +andata +finito +chiesto +sento +migliore +invece +figlia +quei +col +dovresti +ore +almeno +minuti +terra +credi +salve +strada +scusi +sue +passato +dollari +nostri +stasera +settimana +sola +scuola +occhi +magari +vostra +perso +uscire +mani +importante +parlato +bambini +ultima +stava +sapevo +potrei +significa +possibile +indietro +riesco +nelle +eri +chiama +piccolo +sangue +tardi +importa +cuore +messo +auto +marito +viene +papà +ieri +quelli +lasciato +venuto +spero +numero +ricordi +chiamato +ascolta +veramente +fatta +parlando +pensare +fantastico +difficile +fanno +altre +serio +dovremmo +fossi +acqua +entrare +stanza +pensa +possa +portato +qualsiasi +traduzione +lascia +dietro +nessuna +roba +dicendo +amo +forte +problemi +corpo +piccola +agente +sentire +vicino +prendi +telefono +foto +sacco +pare +poco +voleva +potuto +strano +donne +cinque +bravo +ragazze +stia +festa +tue +andando +capire +film +genere +dare +parla +attimo +quattro +probabilmente +morire +mesi +pure +senso +vecchio +verso +ufficio +sappiamo +ben +sorella +farti +signorina +ciò +dottore +domanda +unica +conosco +qual +vivere +vista +guerra +paio +faro +prova +ricordo +conto +avessi +divertente +nuova +perdere +dimmi +sicura +mezzo +farmi +fate +piedi +be +figli +sopra +unico +sapete +esattamente +lavorare +capitano +parola +squadra +dottor +possono +volete +motivo +avevi +finita +esatto +gioco +perfetto +fortuna +siano +credere +chiamo +potresti +resto +mente +mangiare +spiace +morta +cioe +passare +cena +cavolo +avresti +tratta +dammi +john +pistola +buongiorno +affari +sarei +dica +tizio +entrambi +là +davanti +puttana +citta +matrimonio +quanti +controllo +dalle +ultimo +culo +facile +fuoco +cercare +sesso +the +molti +fammi +vogliono +voglia +fu +potremmo +genitori +mandato +mettere +vivo +uccidere +saranno +negli +vada +sicurezza +causa +inizio +faremo +re +vogliamo +potete +agli +ospedale +bere +attenzione +ricevuto +jack +sulle +smettila +scritto +succedendo +avesse +farò +omicidio +musica +però +dicono +cura +prossima +tieni +andate +lasciare +arrivato +new +parole +libro +capisci +revisione +pace +situazione +paese +ottimo +sbagliato +durante +oddio +provato +nostre +chiunque +dirmi +wow +eravamo +immagino +entra +torna +sui +amica +diventare +verita +vede +città +voluto +farai +fatti +settimane +buono +portare +venuta +piuttosto +chiedo +stupido +assolutamente +presidente +aspettare +sam +scelta +scoperto +vuol +molte +dormire +lungo +dirlo +sarai +giornata +parli +giu +alcuni +bagno +arrivare +avvocato +dello +guardare +aria +cane +signori +realta +cielo +deciso +tornato +dieci +prigione +fra +prendo +messaggio +é +usare +benissimo +voce +conosci +luce +giovane +minuto +chiamare +campo +giù +gran +capelli +cerca +restare +lontano +qualunque +bambina +saperlo +arrivo +poter +continua +finche +idiota +provare +onore +passo +domande +cara +alto +trova +pensando +credevo +fretta +morti +preoccuparti +gruppo +prove +funziona +incidente +solito +camera +odio +aiutare +brava +aspetto +speciale +futuro +bocca +finalmente +allo +cibo +chiaro +circa +intenzione +vera +semplice +piacerebbe +dirti +viaggio +insomma +cambiare +oltre +giocare +ordine +riguardo +permesso +chiamata +pero +dovete +venite +mattina +crede +l +natale +finire +direi +fondo +york +occhio +resta +cercato +vostri +devono +verità +pronti +pronta +scusami +chiami +scusate +prossimo +arriva +saputo +milioni +torno +mese +sistema +michael +fermo +s +soltanto +detective +ovviamente +vecchia +metti +appuntamento +vanno +charlie +colpo +tom +cristo +chiedere +armi +grandi +stronzo +pazzo +piacciono +faceva +porto +segreto +ii +venga +controllare +grado +vittima +pezzo +lasci +specie +completamente +libero +generale +carino +fara +sogno +aspetti +veloce +interessa +assassino +lista +vederti +potere +sapeva +brutto +nave +zitto +giuro +centro +sole +zio +doveva +lasciami +oppure +semplicemente +ormai +saro +tenere +informazioni +guardate +mille +nello +incredibile +scena +ve +iniziato +glielo +legge +giusta +gentile +spesso +alcune +consiglio +caro +rapporto +cambiato +occhiata +mike +joe +addio +addosso +volevi +errore +servizio +rispetto +poteva +sanno +sparato +vestiti +sorpresa +avrai +pagare +presa +attento +medico +personale +risposta +quali +schifo +fame +pieno +dovevo +usato +vengo +dolore +do +servono +saresti +peter +incontro +ritardo +normale +george +diverso +riesci +prende +peggio +proposito +rimanere +sembrava +sappia +bisogna +ricorda +chiuso +nonna +compagnia +coraggio +david +avevamo +programma +dimenticato +hey +bar +migliori +terribile +fallo +impossibile +arrivando +avevano +disse +frank +farà +guai +vattene +farci +aereo +conosce +sembri +grosso +notizie +tante +arma +finché +guardi +uscita +ia +studio +intorno +posizione +peccato +chiave +bastardo +fin +quante +interessante +cervello +dolce +manca +stessi +sente +andra +tanti +vestito +parti +denaro +rubato +sette +esserci +cliente +appartamento +adoro +sarò +relazione +base +pranzo +sala +compleanno +seconda +questione +carta +henry +diritto +qualcun +vale +conosciuto +lavora +spalle +serata +saremo +tv +potevo +partita +otto +nero +zona +potrebbero +trovo +tempi +negozio +riuscito +stavi +aspettando +dottoressa +video +continuare +poliziotto +linea +fronte +soli +ex +silenzio +sicuramente +vinto +intendo +averlo +notizia +lettera +calma +senta +possibilita +scappare +aspettate +riguarda +paul +spazio +iniziare +altrimenti +andati +realtà +diceva +ricerca +simile +canzone +esiste +stesse +vive +fossero +luogo +scherzando +pezzi +scoprire +pena +parliamo +tranquillo +vengono +corso +rimasto +sentite +pubblico +regalo +buonanotte +freddo +stamattina +stupida +santo +club +farebbe +computer +entro +parlo +cioè +dura +birra +james +scelto +ehm +lavorando +test +promesso +caccia +ballo +trovi +stanotte +max +avremmo +missione +salute +triste +duro +casino +porti +percio +alex +salvare +sarah +secondi +ultimi +america +esercito +tenente +contatto +uh +lavori +cellulare +jane +regole +arrivata +infatti +ascoltami +gay +pericolo +aiutarti +vostre +droga +bellissima +oro +carina +guardia +esempio +certamente +cucina +palle +intendi +scommetto +arrivati +piena +dunque +colpito +forma +dagli +borsa +fbi +dovrai +nonno +scarpe +anima +siediti +occasione +né +comprare +incontrato +fermati +affatto +ferma +ovunque +governo +paziente +braccio +spettacolo +brutta +prometto +effetti +stavamo +fermi +aperto +crimine +tornata +avremo +decisione +cavallo +diciamo +necessario +mare +viva +sinistra +visita +inferno +usa +chiesa +parlarne +classe +mica +salvato +dannazione +scrivere +scorsa +mentito +attacco +lunga +reale +nick +intelligente +sapevi +comprato +sergente +danny +volo +contento +bianco +eccolo +rende +tavolo +diventato +rotto +apri +direttore +livello +dite +conoscere +passi +alcun +coi +farla +cambio +uscito +lato +riesce +regina +arrivederci +incinta +inglese +de +caldo +luna +maggiore +farsi +hotel +giudice +destra +affare +aiuti +carne +rispondere +differenza +mary +pelle +processo +attraverso +codice +umano +trovata +comandante +certa +pomeriggio +leggere +maledizione +lavorato +miglior +radio +pagato +precedenti +averti +vorrebbe +passa +pericoloso +vino +guardando +cerco +andrà +dia +treno +interno +barca +caffe +libera +figliolo +farei +lezione +presente +buone +uniti +sogni +temo +stagione +avrebbero +jimmy +ordini +partire +sposato +accidenti +vederlo +data +nord +nuovi +possibilità +ringrazio +star +cattivo +parlarti +chiudi +documenti +gamba +ama +episodio +smettere +intero +pensate +imparato +alta +rosso +venuti +pochi +lascio +calmati +congratulazioni +gesu +belle +comune +segno +mostro +bomba +gambe +avrà +responsabile +sembrare +ottima +aiutarmi +chiedendo +biglietto +san +clienti +tocca +steve +quegli +mangiato +sexy +bellissimo +jim +tony +farle +abbiano +intera +caffè +vivi +posti +zia +farcela +ray +maestro +banca +agenti +scherzo +operazione +dovrebbero +ufficiale +diro +ami +and +fantastica +vorresti +finta +energia +benvenuto +nascosto +scorso +pressione +periodo +indirizzo +speranza +meta +soprattutto +pazza +offerta +seguito +passaggio +sarebbero +piangere +fratelli +rischio +tale +naturalmente +torni +chiavi +finestra +harry +potesse +vincere +aprire +sud +entrato +avra +tommy +andremo +lasciate +pianeta +esci +danno +darmi +potessi +vecchi +stronzate +segreti +inoltre +guida +uccisa +darti +vite +testimone +strana +messa +correre +metto +portata +metri +ritorno +saltare +frega +ottenere +combattere +jake +vittime +capisce +molta +orribile +arrabbiato +imparare +ryan +prezzo +colazione +esperienza +animali +bill +diversi +ragazzino +destino +collo +cominciare +mossa +college +vicini +blu +nomi +maggior +enorme +preoccupare +fortunato +will +rumore +libri +suppongo +serie +arte +edificio +laboratorio +difesa +chiedi +sceriffo +odore +saprei +progetto +perciò +ristorante +perfetta +fiducia +nove +lingua +segnale +tranne +scegliere +bob +porca +ascolti +carriera +colpevole +seduto +palla +comando +don +prendendo +terzo +aiutato +avermi +naso +mette +torta +immediatamente +locale +aiutarla +sembrano +amy +discorso +emergenza +muro +spirito +chiamate +contrario +verra +ie +fiori +notato +massimo +turno +piccoli +umani +anello +controllato +dovremo +coppia +vedrai +faranno +persino +accanto +dubbio +vedete +dipartimento +prenda +aiutami +furgone +dati +costa +guardami +cominciato +evitare +ridere +verrà +proteggere +you +diverse +scatola +mangia +vederla +dovevi +colonnello +riunione +stazione +andava +felici +londra +memoria +grave +razza +punti +chiudere +praticamente +soldato +giustizia +bianca +potrai +torniamo +giovani +digli +eroe +mark +sparare +cerchi +tribunale +ferito +pesce +albero +nuove +battaglia +averla +pausa +professore +lee +entrambe +ferita +nemico +arresto +carte +daniel +ballare +natura +uso +casi +ovvio +piede +dirle +johnny +inutile +miss +inizia +cani +basso +colore +povero +isola +storie +billy +preoccupato +fidanzato +sentimenti +andro +maria +prendiamo +diventa +kate +alzati +idee +bacio +poliziotti +chiamano +parigi +kevin +dirò +utile +anzi +laggiu +corsa +buoni +cattiva +contenta +compito +richard +tranquilla +stavolta +preferito +nato +andartene +bordo +denti +coltello +tengo +visti +decidere +provi +verde +sensazione +laggiù +corte +resti +anna +piaciuto +meraviglioso +ascoltare +taxi +dà +giochi +aperta +retro +prendermi +legale +pensano +chris +conta +improvviso +guidare +stile +obiettivo +incontrare +pantaloni +ridicolo +sbaglio +adam +fila +saremmo +los +brian +accesso +breve +risolvere +continui +peso +continuo +sveglia +muoviti +francese +entrata +dipende +suona +chiusa +smesso +opera +vaffanculo +bobby +ricordare +buio +tiene +avro +fianco +estate +azione +arrabbiata +cadavere +affrontare +walter +centrale +angolo +funzionato +ognuno +contratto +faresti +accettare +grandioso +fede +stronza +procuratore +show +vendere +innocente +latte +schiena +soldati +finisce +ultimamente +fermare +malattia +bevuto +andy +fiume +buonasera +effetto +paga +ll +conti +principe +scopo +mandare +andarci +sii +stavano +fidati +dirtelo +assistente +nipote +fargli +robert +rispondi +risultati +matto +rose +rimasta +soluzione +dimenticare +vento +project +sbrigati +stanco +americano +of +fanculo +scott +claire +debole +troveremo +faccenda +piaceva +tradurre +capace +peggiore +siate +scomparsa +particolare +creato +cerchiamo +principale +dna +chiederti +campagna +coglione +riuscita +andrai +stampa +gatto +braccia +condizioni +parecchio +fottuto +tenuto +troviamo +magia +metà +ponte +emily +risposto +angeles +dettagli +attenta +reso +rilassati +impronte +sbagliata +importanza +drink +insegnato +washington +rovinato +malato +gesù +sindaco +seguire +decisamente +convinto +campione +zitta +srt +forze +salire +tanta +rachel +omicidi +prendete +dando +provo +charles +morendo +chiaramente +pete +immaginare +debba +valore +importanti +mantenere +spiegare +buco +eddie +momenti +bellezza +piani +distrutto +mercato +pensarci +richiesta +nonostante +ispettore +provando +pensiero +villaggio +creare +camminare +bottiglia +rimane +sedia +tiro +ghiaccio +stella +finale +riuscire +tracce +vedremo +conoscenza +pensava +usando +principessa +scusatemi +milione +crederci +passata +mr +corri +chiamami +cadere +palazzo +succedere +camion +martin +speravo +sguardo +dover +parco +eccola +cinema +teoria +emma +angelo +ln +americani +stelle +propria +benvenuti +attesa +preferisco +eccoci +preoccupi +potevi +ubriaco +lettere +conversazione +cento +dovere +dan +scuse +fidanzata +chiede +fantasma +suono +chuck +diversa +cancro +case +credimi +luci +privato +perdita +sistemare +terza +prenderti +dita +comincia +vince +pensiamo +caduto +trovarlo +scendere +grace +sig +andarmene +pista +compagno +primi +indagine +innamorato +telefonata +annie +aspettavo +desiderio +dovreste +numeri +seduta +mentendo +accettato +aiuta +autobus +troia +magnifico +sabato +esserlo +voci +occupato +controlla +pratica +sposata +tetto +genio +preoccupata +volessi +cappello +leggi +orologio +direttamente +t +to +bicchiere +eppure +mezza +purtroppo +conosciamo +liceo +voler +piaci +seriamente +pazienti +facevo +infermiera +maledetto +accusa +esame +popolo +ragazzina +esce +gara +politica +entri +metta +pollo +area +fece +diamo +spiaggia +andrò +passati +testimoni +ted +viso +cambia +altezza +eric +media +segni +dirgli +copertura +porte +perfettamente +doccia +vissuto +taglio +animale +eravate +giornale +distanza +vedermi +guardato +ascoltate +completo +ordinato +lasciamo +alcuna +minaccia +bevi +sentita +super +avrò +toccare +dargli +jason +eta +naturale +lascialo +strade +date +stanca +pagina +paradiso +quartiere +kim +certe +hank +andarsene +thomas +venduto +matt +rotta +sposa +nazionale +sottotitoli +giardino +biglietti +diventata +succedera +spaventato +arrestato +partito +internet +allarme +grossa +universo +girare +collega +insegnante +cavalli +c +vuoto +muore +merito +chiamarmi +talento +killer +rosa +spada +fan +dito +uccidermi +dovesse +tipi +umana +immagini +doppio +età +intendevo +fuga +amiche +domenica +immagine +vicina +dimmelo +mostra +prenderlo +militare +rabbia +rimani +mattino +corrente +rubare +nera +preparato +padrone +conoscerti +direzione +sveglio +tette +ultime +potremo +potente +arrivano +gratis +calmo +amor +cantare +unita +tira +velocemente +funerale +carl +intende +seria +lasciatemi +dallo +erba +dritto +street +domattina +alice +tantissimo +termine +venendo +regola +pazzi +sali +coinvolto +lasciata +attenti +abby +spia +azienda +vacanza +manda +sposare +lasciarmi +invitato +gira +jeff +medicina +abbiate +sean +zero +simon +lisa +est +dave +figo +sugli +mal +lupo +vittoria +dappertutto +servizi +assurdo +guardati +potra +vorra +ospiti +mentire +colpi +funzionare +vendetta +migliaia +presi +offerto +suonare +macchine +sospetto +lady +chilometri +albergo +venti +potrà +presenza +azioni +roma +ottenuto +scappato +parlarle +povera +discutere +starai +ruolo +volevano +chiamava +rossa +studenti +sarete +informazione +distruggere +fastidio +caduta +entrate +percento +dovro +premio +speriamo +partner +andarcene +atto +danni +opinione +famiglie +dormito +assieme +accaduto +dirai +giacca +cugino +sentivo +nemici +larry +luke +pensavi +uova +diventando +lotta +laura +ossa +libertà +trappola +josh +crescere +mettiamo +criminale +tenga +urla +pur +apprezzo +pulito +violenza +fossimo +sedere +ministro +profondo +diretto +società +piccole +lily +guardo +sposati +commesso +fumo +pugno +presento +modi +jenny +fermato +fucile +interesse +moto +santa +dicevo +gola +articolo +battuta +son +gestire +cresciuto +forti +puzza +pane +scomparso +arrivi +tirato +sissignore +disturbo +gas +nervoso +guardie +aeroporto +ricco +avranno +m +ione +finora +scusarmi +societa +carico +protezione +cella +amicizia +tornate +messaggi +gloria +veri +vorrà +jerry +orecchie +creduto +volare +sessuale +crisi +pesante +ali +weekend +dirmelo +risponde +sopravvivere +polvere +dirglielo +terapia +francia +risposte +minimo +credito +mostri +falso +muoversi +aspettiamo +traccia +parlano +ambulanza +incendio +scherzi +quarto +stomaco +dirci +svegliati +neppure +liberta +aspettato +ucciderlo +preparare +park +capita +disastro +membro +gary +city +persa +tè +cia +raggiungere +corpi +poche +sentirmi +motore +privata +dannato +phil +morgan +trucco +maniera +totale +tirare +trovate +perdono +dean +calda +bravi +sicuri +cinese +nascondere +dillo +mancato +banda +mila +gioia +proprietario +fatemi +costruire +diritti +recente +scale +credete +dovevamo +raccontato +licenziato +amato +pavimento +chicago +leo +chiedevo +superiore +piaccia +lucy +analisi +studiare +lord +rete +nate +tentativo +preferirei +ospite +imbarazzante +amante +resynch +dovessi +rendere +bei +volesse +attorno +baby +william +volevamo +tolto +alan +movimento +sterline +scrivania +avessero +versione +facilmente +sorriso +divano +inghilterra +mettiti +risultato +abbandonato +compagni +errori +roger +contare +smetterla +proiettile +perdendo +promessa +mancano +ferite +kyle +pizza +piatto +solamente +marina +conoscete +lavorava +posta +aiutarci +traffico +calcio +avrete +famoso +lasciati +lontana +bloccato +verranno +merita +sparo +daro +simili +ladro +darle +regno +prestito +specialmente +poteri +file +assicuro +teatro +tornati +dovra +mettendo +complicato +occhiali +ingresso +affascinante +bugie +trovarmi +eccoti +pilota +rapporti +comportamento +accuse +telecamere +desideri +farvi +sentiamo +sospettato +prenderla +camicia +tagliato +avessimo +louis +comodo +prese +potreste +facevi +carter +tentato +innamorata +maiale +fido +membri +ascolto +giornali +uccello +sorpreso +taglia +riuscivo +chissà +esplosione +tuttavia +fonte +lago +parcheggio +spaventata +cazzate +taylor +amanda +sito +dovrò +respirare +uccisi +ride +virus +tazza +portate +respira +uscite +spara +salta +divorzio +venne +ricerche +smith +darò +mucchio +facciamolo +creda +pietra +debito +panico +averne +soccorso +riusciamo +montagna +sapessi +agenzia +proposta +fatte +dubito +copia +modello +km +neve +rimasti +spazzatura +smetti +formaggio +impressione +ricordate +tavola +terreno +pioggia +bugiardo +pensieri +maschio +centinaia +perfino +frattempo +dovrà +rapina +seguendo +volto +affitto +piscina +diverte +pensione +folle +veniva +idioti +strega +coso +pazienza +intervento +stara +vorrai +coach +molly +mettermi +limite +dono +costruito +possano +ombra +portarlo +respiro +appartiene +kelly +bugia +salto +serviva +farne +assunto +speciali +trovarla +conoscerla +miracolo +odia +lentamente +darci +sorveglianza +ragioni +galera +evento +tyler +vergogna +costretto +nathan +pari +alberi +permettere +interessi +muovetevi +julia +complimenti +carica +malata +succederà +sporco +trovati +tradito +ovest +petto +maggie +toccato +diretta +stan +tornando +bastardi +california +muovere +indovinare +nota +togliere +dichiarazione +sonno +ginocchio +moda +meravigliosa +fortunata +gelato +b +magazzino +parlava +episode +governatore +telecamera +medici +ascoltando +castello +victor +organizzato +giocando +adorabile +season +punta +bosco +bianchi +metterti +pillole +suicidio +argomento +portando +portarti +auguri +portami +neri +stupidi +mostrato +interessato +andiamocene +uguale +tasca +lezioni +dimostrare +riusciti +indovina +puntate +impegnato +voti +passate +contanti +presenta +abito +cercavo +clark +sentirti +patto +custodia +alba +colleghi +togliti +volere +opportunita +chili +senatore +artista +divertimento +troppi +champagne +muoverti +mezzanotte +socio +sbagli +esperto +anticipo +scappa +troppe +facessi +firma +cima +risolto +tenerlo +sparire +usciamo +babbo +liberi +meriti +calmi +dormi +festeggiare +rock +bersaglio +spese +preoccupa +furto +lasciala +karen +firmato +passando +attaccato +preciso +sullo +stammi +caspita +epoca +sale +derek +morale +concerto +susan +tomba +feste +band +esterno +invito +personalmente +clinica +malapena +pensaci +nazione +attivita +onesto +giuria +provarci +indossare +fallito +corridoio +esistono +eccellente +familiare +conosciuti +rendi +football +avvocati +jones +fase +saltato +secolo +positivo +veloci +tim +parlarmi +olivia +cercate +riposo +buttato +vedono +andrebbe +occupo +fuggire +probabile +iniziamo +firmare +sopportare +jackson +scendi +sorelle +sparito +troverai +uccide +credono +vicenda +fondi +patrick +penny +europa +arthur +costume +barry +autista +vantaggio +sir +van +lasciarti +dorme +medicine +fattoria +venerdi +prete +single +originale +vendita +terry +totalmente +impazzire +americana +messi +beth +trovarti +facesse +beccato +sé +cieco +incubo +lascero +personali +esca +divertiti +lasciarlo +grida +assegno +jeremy +compiti +superare +presenti +materiale +foresta +ross +avendo +onda +my +d +criminali +assicurazione +follia +amen +riposare +chloe +elena +cominciamo +coloro +mancanza +team +miglia +commissione +robin +gusto +spari +tratti +scienza +sembro +gioca +università +scala +big +belli +sufficiente +joey +mostrare +elizabeth +amare +lieto +pene +rischi +passeggiata +ascensore +mappa +certi +maschera +sezione +prendero +discussione +bestia +calci +filo +rompere +causato +lancio +superato +scemo +conosceva +fabbrica +passione +portarla +istante +giornalista +pulire +dirvi +cercano +yo +essermi +confuso +ripeto +permette +canta +furono +spalla +universita +dissi +voto +greg +tedesco +coscienza +veda +howard +esco +regali +proprieta +federale +ucciderti +legame +nata +manchi +messico +carcere +oggetto +helen +n +red +reparto +pochino +andrew +eccomi +vorremmo +benzina +uscendo +synch +profilo +sinceramente +tunnel +ambiente +conoscevo +dormendo +corda +uccelli +tecnologia +tizi +reazione +casey +sfortunatamente +farete +charlotte +motivi +lasciar +aiutarvi +cattivi +esami +tempesta +chiamiamo +grazia +sapesse +prendono +sincero +portarmi +diamine +titolo +u +profumo +jordan +dicessi +spiegazione +jackie +impegno +fumare +visione +all +angela +retta +labbra +sport +disgustoso +televisione +trattato +rebecca +west +significato +vederci +palco +oggetti +dosso +trovano +conseguenze +crediamo +desidera +baseball +coincidenza +vivono +lacrime +personaggio +svegliato +oliver +rick +pulita +cooper +parker +professor +crimini +egli +segreta +unità +fiero +partenza +butta +shawn +maestà +creatura +capite +ammettere +difficili +oceano +sociale +garage +zucchero +robot +sigaretta +giudizio +dolcezza +julie +brutte +ethan +palestra +usata +superiori +vincent +alcol +aiutatemi +chiedermi +usi +raccontare +spiega +sorta +supporto +figurati +seduti +direbbe +bruce +vice +talmente +specchio +canzoni +inventato +aprite +ricevere +fidi +chiederle +cioccolato +venisse +punizione +leader +proviamo +contatti +jamie +nascita +rischiare +ammazzo +piacevole +house +diario +salvo +jo +marty +perdonami +tornera +tagliare +portiamo +staro +cole +urlare +perde +episodi +rifugio +fico +portano +influenza +pazzesco +disposto +on +distretto +fegato +attore +cambiamento +ricchi +impazzito +sieda +confine +controlli +vecchie +reputazione +scambio +ragazzini +becco +propri +gradi +accusato +amava +splendida +dodici +onestamente +man +incontrati +fantasmi +continuate +orgoglioso +maglietta +vegas +conviene +marcus +levati +offesa +servire +organizzare +illegale +golf +settore +pubblica +tornerà +uguali +jay +rovinare +mangi +doc +esserne +fiera +antonio +facevano +incontri +adulti +pago +ricominciare +legno +finiti +veleno +previsto +preferita +esplodere +nastro +darsi +studente +abiti +cammina +dille +responsabilità +divertendo +farli +dolci +legato +avreste +ricordati +frankie +metterci +grasso +consegna +studi +cercava +biblioteca +riso +agio +orso +troppa +civile +documento +pò +aspettano +inverno +fermata +aiutarlo +stronzi +soffrire +mac +parlargli +dottori +ferro +mutande +umore +frase +russo +intanto +torre +doug +porno +opportunità +ufficialmente +raggio +tornero +struttura +mondiale +jessica +las +potro +poveri +biscotti +grossi +guadagnare +decisioni +strane +delitto +richiamo +raggiunto +cerimonia +deserto +incarico +metro +brillante +fredda +maledetta +quadro +sally +disponibile +progetti +stop +gliene +emozioni +imbarazzo +letteralmente +relazioni +king +colpire +verrai +adatto +stretto +wilson +organizzazione +chiacchiere +preside +zoe +prenderemo +accada +sfida +splendido +cadaveri +potevamo +vetro +falla +buffo +rossi +stupendo +indagini +elicottero +scientifica +mando +piantala +teste +figura +stiano +estremamente +diventi +partecipare +prime +rapito +prendilo +condividere +risorse +responsabilita +fregato +ian +eventi +succeda +jesse +inviato +crudele +istinto +lassù +ricky +febbre +professionista +giovanotto +assassini +battere +cameriera +scoprirlo +aperti +agire +junior +dì +appassiona +notti +gus +datemi +valigia +professionale +giocato +recuperare +droghe +mmm +olio +tedeschi +pistole +pessima +aiutando +attività +caroline +cassetta +mistero +arriviamo +alti +dubbi +convincere +giri +chiara +armadio +mangio +negativo +ringraziamento +dovuta +prodotto +tornerò +linda +coda +resistere +improvvisamente +eva +dannata +dovrete +anne +racconti +penna +moltissimo +oscar +marshall +capirlo +inizi +justin +tratto +gibbs +sposarmi +harvey +miele +navi +fred +jess +smettetela +circostanze +esseri +rinforzi +piange +chieda +gigante +straordinario +pesci +montagne +starà +averci +it +parleremo +parlate +dl +pensavamo +fingere +considerato +presentato +alibi +benvenuta +aggressione +spinto +folla +potrò +fottuta +cretino +ron +katie +hannah +poterlo +carlos +offro +normali +owen +johnson +sciocchezze +orario +trasferito +fortunati +blocco +sistemi +sistemato +roy +parenti +romantico +cina +condizione +marcia +sciocco +miliardi +mettono +rivederti +accetto +catherine +nudo +consigli +sentirlo +resistenza +online +simpatico +ebrei +chissa +um +primavera +presentare +scritta +miller +litigare +prenditi +federali +orecchio +stress +apre +black +gang +confronti +prenderò +morso +fottiti +lontani +servira +ditemi +tecnicamente +disco +tragedia +mezzi +funzioni +zombie +puttane +evan +arrabbiare +viviamo +studiato +deluso +extra +proprietà +nervosa +soggetto +vere +scappata +mettilo +bruciato +bevo +avevate +texas +fiamme +destro +andar +geniale +prigionieri +oscuro +vasca +dira +percorso +battute +sophie +uniforme +larga +canale +cresciuta +betty +combattimento +figlie +chiamarti +occupata +prendersi +vampiro +cassa +torto +gordon +trovero +corretto +completa +commissario +campi +saggio +maesta +realmente +rifiutato +disposizione +prigioniero +noioso +urgente +sottofondo +furbo +africa +alza +museo +raccogliere +usano +cucinare +cari +conferma +bassa +fidarti +lasciarla +incastrato +todd +ascoltato +muove +servito +germania +boston +preoccuparsi +lucas +precedente +el +portati +contea +entriamo +tenuta +pericolosa +eccitante +jenna +identita +spencer +divisione +finto +sigarette +serva +sapevamo +fisica +costo +innocenti +potenza +coraggioso +largo +argento +salutare +delizioso +vuota +conferenza +assicurati +geloso +teddy +visite +preferisci +fermarlo +miami +credeva +ritornare +vampiri +registrato +comincio +piatti +barba +staremo +spagnolo +velocita +esistenza +russi +virginia +mira +quanta +cognome +tour +dacci +kenny +richiesto +eli +tenete +preparando +pancia +stanze +territorio +passiamo +piangendo +stronzata +accadere +lauren +chiamando +limiti +onesta +lasciando +essersi +restate +dicevi +colloquio +attraente +nancy +marie +iscrew +commerciale +diglielo +party +mettete +corto +eroina +madame +salsa +lascerò +brown +chiamarlo +sognato +giocatore +conosciuta +cittadini +udienza +vacanze +tappeto +uccido +jules +osso +marco +ricordato +accorto +nozze +odi +giapponese +equipaggio +manager +offre +serpente +vergine +ellen +girato +appunto +figa +colori +massa +sospetti +cattive +vedevo +randy +miseria +minima +apposta +andasse +amano +cavo +tramite +conoscono +superficie +sconosciuto +matematica +guardarmi +pessimo +immaginavo +lavorano +abbi +succo +liam +sabbia +coperta +fiato +scrive +ufficiali +rivista +scegli +panino +incantesimo +italiano +metterlo +immaginato +motel +gioielli +huh +na +demone +inglesi +annuncio +velocità +margaret +scelte +combinato +assicurarmi +fisico +brad +notare +arrivera +usciti +segretario +proiettili +novita +by +zuppa +lottare +chiusi +ubriaca +parto +sin +versi +set +canto +cambiata +lunedi +holly +pura +bambine +esser +adora +uccidendo +viveva +love +capi +cammino +veicolo +incredibilmente +gesto +meraviglia +leggenda +offrire +ripreso +muori +auguro +riserva +eccezionale +prossimi +burro +dopotutto +fresca +nina +travis +mister +danza +plastica +lavoriamo +mentale +bla +pianto +ann +walker +frutta +avventura +persi +litigato +andranno +nascosta +collegamento +cancello +grant +amavo +rinunciare +top +fatelo +barbara +intervista +strani +bombe +arrestare +farmaci +cintura +segui +han +traditore +cartello +pacco +facciano +possesso +battuto +vorranno +gatti +julian +procedura +picchiato +calore +sposo +nascondendo +raccolto +ipotesi +curioso +adulto +mosca +bibbia +volentieri +aggiungere +femminile +infanzia +cavaliere +dylan +finestre +quindici +scopare +tocco +busta +croce +arriverà +bagagli +email +imbecille +sano +volante +chance +potevano +occupa +pesca +riprendere +volontà +grato +carrie +foste +peggiori +piaccio +indossa +abbandonare +sinistro +aula +preparati +branco +mettersi +resa +gabbia +edward +ahi +florida +deposito +programmi +creature +tradimento +denuncia +anime +alzare +catturato +richiede +dirà +comporta +lou +istruzioni +orgoglio +perdonare +bimbo +j +femmina +tornerai +italia +viaggiare +giudicare +locali +felicità +disegno +ringraziare +riley +bici +sospeso +pasto +fidarmi +scimmia +confessione +riescono +regista +impresa +patatine +dritta +attrice +egoista +fresco +dennis +continuiamo +poesia +chiamarla +hollywood +sapevano +veniamo +ammazzare +tasse +campioni +spieghi +carro +dollaro +album +wayne +concentrati +cameriere +racconto +buttare +russell +booth +audrey +cabina +militari +connor +truppe +patate +scrivi +dimentica +conosca +ebbene +leslie +coglioni +attacchi +andatevene +spostati +intenzioni +stephen +temperatura +topo +earl +riesca +troverò +aaron +scorta +dispiacerebbe +addirittura +ruota +elegante +espressione +giappone +riconosciuto +spiegato +giurato +tiri +ebreo +carol +trovarci +spiacente +paghi +produzione +sete +successa +davis +x +buca +giochiamo +muoviamoci +gliela +funzionano +catena +funzionera +torneremo +rimanga +nobile +dell +coma +immagina +stavate +saluti +martha +scrittore +shock +accompagno +cacciato +atmosfera +sapore +singolo +april +whisky +dara +parlami +minacciato +fantasia +novità +reverendo +sms +tende +ladri +fermarmi +rivedere +capitolo +perdoni +nuotare +sessuali +pagano +rifiuto +vicolo +spetta +infarto +tenerla +francis +uccidi +fatica +secoli +affetto +portatelo +potrete +lewis +confermato +dipinto +disagio +sensi +colpita +patente +allenamento +gomma +fiore +ossigeno +finchè +fotografia +menti +autorita +confusione +nasconde +sorprende +spezzato +acque +potessimo +spostare +badare +autorità +miles +comitato +investito +civili +inquietante +registrazione +finisci +nuda +liz +armato +possiede +quinn +tienilo +dovevano +diamanti +trovava +morirai +condannato +chirurgo +fermarti +gentiluomo +prostituta +standard +semplici +soci +convinta +vedervi +cancellato +dimenticata +obiezione +white +esagerato +shane +linguaggio +trauma +noto +rubata +vacci +scoperta +casini +cortesia +segue +polmoni +cassaforte +cure +ministero +rapimento +mago +impegnata +premi +tema +anniversario +simbolo +mangiamo +jacob +licenza +uovo +significhi +sentirsi +polso +targa +sodo +tubo +beve +brucia +mortale +parlavo +serena +conte +verrò +riportato +ucciderla +francisco +pagine +cuori +chef +stupro +tono +settembre +sbirri +go +controllando +tradizione +lassu +mancata +coperto +spiego +seno +piaciuta +venerdì +halloween +reato +sembrato +indizio +coniglio +bastone +chiamero +coca +pugni +cappotto +pieni +telefonate +sintomi +riportare +trenta +darà +minore +scopri +dicevano +neal +verro +massima +tatuaggio +sparisci +tempio +riuscirai +spesa +portero +qualita +esperimento +bo +ripetere +ellie +salva +brindisi +testimoniare +toby +schermo +taci +cavoli +leonard +sapendo +pazzia +classico +boss +viaggi +occupi +insegnare +frigo +abita +castle +bloccata +togli +combattuto +mandi +fidare +saluto +prepara +crema +sbagliate +tumore +wade +lois +baci +michelle +entrati +steven +joseph +riavere +identificato +dick +angeli +capacita +tecnica +dammelo +batteria +puro +ken +attaccare +migliorare +banco +starò +profondamente +tocchi +scuole +testimonianza +ritmo +cravatta +iniziando +armata +elezioni +rovina +guadagnato +segreteria +barney +risate +restano +aumento +scherzare +evviva +clay +questioni +cowboy +finira +immaginazione +scrivendo +bionda +addestramento +popolare +informato +victoria +isolato +attentamente +francesi +battito +occupati +appuntamenti +sopporto +considerazione +jennifer +botte +diversamente +ritrovato +preparo +portalo +dispositivo +scatole +sparita +aerei +pipi +acceso +lieta +carattere +famosa +giallo +tenda +sostegno +staff +collezione +resisti +cimitero +ringraziarti +chiederlo +collegato +uccidera +ideale +evidente +coprire +debiti +mason +tengono +potenziale +andavo +insalata +atteggiamento +sopravvissuto +hill +piacera +uhm +cultura +suoni +tenendo +logan +antica +megan +fedele +continuamente +mestiere +speranze +diventano +accade +accetta +bonnie +magico +spento +coinvolta +ricompensa +hanna +comporti +portava +young +eccoli +impatto +misura +desidero +sperare +filmato +onde +pietà +stupenda +harris +facevamo +dichiarato +stipendio +uccideranno +unghie +matta +mangiando +stivali +rappresenta +dispiaciuto +finn +amber +boom +violento +accento +ammetterlo +vincitore +spinta +viste +trattare +patetico +cambi +eliminare +fatevi +stupide +vestita +sí +yeah +tina +esserti +metodo +tracy +occuparmi +daremo +russia +storto +medica +gruppi +monica +condanna +strategia +stretta +attraversare +hitler +speso +matthew +campeggio +cade +abitudine +mogli +assumere +chitarra +dettaglio +vomitare +qualità +istituto +amata +demoni +trasformato +fottuti +assomiglia +sederti +benedica +rifiuti +ragionevole +consegnare +nucleare +progressi +mettila +spaventoso +consulente +colui +notevole +brutti +trattamento +caos +pubblicita +teniamo +interessata +sforzo +ricca +eccellenza +monte +curare +sparatoria +neil +ehila +complice +qualcuna +alicia +roccia +distintivo +movente +cancellare +confronto +temere +feci +comunicazione +svegliata +ritorna +eccetto +riusciremo +erica +pam +raccolta +guido +elettrica +cantina +lana +finisca +cauzione +apra +capisca +nora +normalmente +bambola +cortile +walt +mollare +jill +catturare +abbassa +stando +ashley +ammetto +piazza +dimostrato +ammiraglio +chiudo +leone +sapremo +successe +operazioni +allison +ammazzato +villa +chiediamo +avvicina +tenerti +tensione +riusciva +anthony +asta +distrutta +metterla +wendy +pregare +termini +unici +getta +mickey +sparate +topi +porterò +compagna +educazione +considerando +secco +seguo +aggredito +colin +perdi +lasciano +flotta +teneva +difendere +grilletto +linee +eroi +elliot +continuano +abilita +cugina +accomodi +capacità +williams +liberato +dimentichi +eccome +proteggerti +raccomando +potermi +sesto +spegni +mel +diane +siccome +usiamo +vodka +cotta +hamburger +lincoln +sofferenza +dose +mandata +porco +appunti +morira +servirà +cerchio +marine +portafoglio +sammy +invitati +peggior +cocaina +gentili +livelli +scrivo +collana +operatoria +sebbene +rivoluzione +segretaria +one +janet +smetta +dormo +costi +politico +assistenza +telefoni +possibili +liberare +alzato +muoiono +ostaggio +balla +toccarmi +altrove +baciato +complesso +entrano +blair +volonta +cambiano +registri +jonathan +fallimento +interni +joan +passaporto +blake +finirà +racconta +fratellino +peccati +harold +cambiamenti +mezzogiorno +figata +attuale +regalato +fermatevi +little +aiutera +malattie +riconosco +contenti +parlero +svegli +jean +dovranno +straordinaria +considerare +comunicare +procedere +facce +usate +sacrificio +dar +emorragia +licenziata +armati +keith +valigie +riuscite +spaziale +tagli +preoccupati +infelice +zitti +tal +orgogliosa +altrettanto +india +disperato +prezioso +magnifica +religione +internazionale +bruciare +negro +macchia +natalie +difficoltà +giocatori +unione +beneficenza +prodotti +trasferimento +dea +streghe +accendere +grayson +salvi +mitchell +interrogatorio +riconoscere +arriveranno +sentirai +registro +confusa +pelo +cittadino +compra +cacca +sbaglia +girati +lanciato +volerlo +lunghi +uccise +rimediare +prendila +potranno +corona +diventati +comunita +sareste +gemelli +spina +tentare +genitore +condotto +protetto +separati +warren +ansia +ndt +girl +asilo +lanciare +cominci +sedetevi +lupi +porterà +damon +rintracciare +rispettare +rottura +merce +cameron +perduto +capitato +dale +anziani +avviso +continuato +generazione +sbirro +contattare +impronta +controllate +ronnie +sociali +squadre +debbie +mollato +fango +serial +cacciatore +spagna +infezione +servi +scommessa +matti +spiriti +feriti +terribili +tipa +restiamo +baciare +mobili +identità +undici +scopre +pietre +cinesi +maya +promozione +autopsia +produttore +sincera +isolati +bentornato +scommettere +abbraccio +bang +metallo +consigliere +whoa +trattava +principio +guanti +chiedono +reali +impero +boy +ordinare +rilasciato +leggo +usarlo +your +falsa +sporca +leggendo +infermiere +fascicolo +vanessa +centesimi +spaventa +accadra +ammesso +interrompere +euro +kit +meredith +crea +cleveland +economia +felix +pacchetto +abituato +armadietto +particolarmente +luglio +gelosa +partiamo +posteriore +temporale +sfortuna +preferisce +bandiera +indagare +risulta +terroristi +vidi +protocollo +codardo +romanzo +piacerà +tenermi +rientrare +parere +cucciolo +tipico +giunto +lusso +tranquilli +vedova +nervi +pensassi +gabriel +martedi +nelson +prenderci +schifoso +poterti +katherine +caramelle +ridendo +jersey +richieste +sentono +privacy +diego +collina +presumo +adrian +shh +sensibile +distruzione +visitare +riprese +is +apertura +vende +alieni +impegni +sacro +consegnato +green +autorizzazione +albert +aspettami +stabile +indica +schiavi +schema +mammina +quarta +saprai +sofferto +drago +troverete +rallenta +mo +trasmissione +mettero +tara +imperatore +tigre +troveranno +impiegato +moriremo +lama +guardalo +appetito +amministrazione +servo +record +forno +guidato +trasporto +violazione +lance +dozzina +ridotto +quinto +pastore +appello +avvertito +associazione +profonda +congresso +continuava +chiese +entrando +portera +tramonto +desiderato +attori +acciaio +cifra +lane +spegnere +saluta +dava +origine +passeggeri +puntata +certezza +motori +amiamo +miniera +corre +batte +sposi +lega +proprie +kurt +ruth +leggero +essendo +entusiasta +cartella +out +scene +parente +giovedi +fidanzamento +dana +datti +malati +duramente +cantante +allenatore +sapra +imputato +assoluto +daisy +stufo +promesse +capitale +familiari +pronte +attrezzi +materia +scappando +essi +ford +terribilmente +avverto +klaus +confessato +segnali +averle +bara +daranno +portatile +stadio +doppia +ridicola +suolo +vedro +francamente +partite +manette +cazzone +interessano +rendo +tecnico +diretti +bugiarda +esso +cercarlo +vedrà +passano +sedile +maledetti +impedire +medaglia +murphy +morirà +invisibile +cronaca +paesi +preghiera +vola +island +subsfactory +dipendenti +chiacchierata +passami +babysitter +corrisponde +manhattan +dir +valle +contiene +pasta +incazzare +identificare +stuart +mela +manuale +robbie +burke +darvi +discorsi +sollievo +averli +organi +enormi +lire +craig +candidato +campanello +drew +mitch +mcgee +raymond +estero +videocamera +fascino +abitanti +sembrerebbe +leggera +lancia +dannatamente +centimetri +sheldon +compreso +diresti +osservazione +insegna +for +avervi +giornalisti +bicicletta +scavare +lento +capirai +munizioni +risponda +allontanati +clara +solare +tessuto +arti +deboli +ricetta +q +giugno +indossi +sposarti +sentiva +difficolta +perdente +pallottola +sede +rita +essa +impara +recitare +maschi +sposarsi +esecuzione +dwight +riparare +lesbica +fantastici +suggerisco +felicita +chimica +drogato +tristezza +road +cavi +dí +heather +indiano +hot +circo +bus +lunedì +mori +maggio +indiani +galleria +chiude +assenza +nè +facebook +iraq +gravidanza +alison +pattuglia +uccidero +ando +dog +bay +prenotato +basket +cause +guardiamo +concesso +indossava +cam +solita +quartier +spedito +abbandonata +scienziati +osi +infine +melissa +innamorati +sbattuto +tuta +berlino +madri +hong +intelligenza +telefonato +antico +mafia +trono +giapponesi +cranio +sorridere +mazza +guardano +bravissimo +investigatore +sconvolto +chiappe +christine +trevor +database +connessione +modulo +realizzato +vengano +meg +onesti +mrs +cuscino +stefan +sviluppo +venissi +somma +luoghi +scordato +stufa +russa +correte +perdiamo +spingi +accademia +seguitemi +rapita +trasferita +contattato +passera +riservato +responsabili +orribili +lasciatelo +saprà +ostaggi +carini +padri +jen +hunter +perdo +bailey +esercizio +lasciarci +scarpa +east +malcolm +poker +obbligato +bishop +alternativa +sorridi +grata +telefilm +monsieur +isolamento +gettato +ala +gene +spasso +descrizione +confessare +hall +svelto +aspettava +paige +impressionante +gita +vedendo +salvatore +avvertimento +password +diana +norma +servirebbe +guadagno +facili +personaggi +presentazione +testamento +spacciatore +alzi +gps +opzione +laser +kitty +iniziata +seth +sepolto +lemon +leon +scaricato +cellule +costretta +zoo +spingere +ruote +v +laurea +pagamento +norman +franklin +cazzata +strumenti +muova +squalo +cardiaco +rissa +giuste +riconosce +shaw +sere +veronica +insegnanti +irruzione +minacce +mario +svelta +barista +pubblicità +valentino +turner +insetti +vedrete +ivan +dovunque +parecchi +christopher +comunità +elementi +movimenti +lavare +scuso +duri +muscoli +recupero +preda +coro +rosie +mancava +coppie +won +opzioni +accomodati +cellulari +strumento +ritiro +hector +stanley +lunghe +malissimo +petrolio +boyd +kong +brandon +muoio +naomi +mangiano +parlerò +stabilire +politici +abbassare +impianto +lydia +diede +logica +vedrò +conclusione +sconvolta +time +domestica +potenti +ottobre +divertirsi +negozi +pulizie +spostato +serviranno +ascoltatemi +beviamo +sbrigatevi +circolo +pervertito +compro +misterioso +sorellina +bloccati +soffre +cesso +stone +sfigato +prometti +permetti +terrore +cerebrale +campus +coordinate +gina +umanità +nascere +piante +guerriero +carla +complicata +legali +mucca +clyde +camere +doyle +brooklyn +rinunciato +sostanza +cassetto +ambasciatore +causare +generoso +tregua +ê +zone +that +straniero +muoia +graham +terre +equilibrio +preoccupatevi +gonna +guardarti +interessanti +moneta +mandati +magica +violet +arrivate +lindsay +adatta +umane +cambiando +preoccuparmi +repubblica +situazioni +volume +carmen +gravi +giuramento +vari +arriveremo +fottere +vederli +aiuterà +quinta +riflettere +soddisfatto +ambasciata +troverà +aprile +cocktail +blue +vedeva +scotch +fiona +carlo +becca +seguimi +sopravvissuti +incontrarci +zaino +salvarti +alcool +gridare +sana +autorizzato +acido +coinvolgere +spendere +tacchino +connie +leva +bellissimi +karl +nicole +cesare +risparmiare +sentiero +falsi +chiuse +scandalo +ooh +divertitevi +psicopatico +beach +popolazione +von +may +franca +cin +uscirne +phoebe +boschi +up +muovi +cenare +baffi +sindrome +rimango +principi +terrorista +colpisce +occuparsi +invitata +scontro +stabilito +bevendo +mele +microfono +varie +evvai +medio +chiedero +martello +chiamati +adolescente +prega +vic +interrotto +chiusura +guaio +manny +cos +provarlo +mura +incidenti +viola +avuta +miranda +pierce +dimensioni +fotografie +tokyo +umorismo +bucato +bimba +banche +day +copie +calibro +ribelli +tortura +garcia +chiamerò +hmm +canada +birre +venivano +cinquanta +sorte +sentiti +scopriremo +pillola +collins +afghanistan +prenderli +rimangono +sprecare +dvd +senzatetto +pozzo +sciocca +troy +sperando +scontato +metteremo +atti +funzione +fagli +eccezione +pianta +lavoravo +scopato +madison +patria +presso +anelli +ucciderà +provate +combinazione +ripresa +assegnato +corea +custode +decide +accadendo +nascosti +tac +portala +sandy +fermate +festival +tasche +dicci +tess +sega +bagagliaio +ucciderò +credevi +amanti +urlando +azzardo +verme +concetto +supermercato +informatore +doloroso +attrezzatura +beckett +sostiene +elenco +industria +maglia +andrei +mostrarti +andai +intelligenti +quaggiu +autostrada +ago +dichiaro +truffa +ra +prendera +sostenere +giovanni +soggiorno +pagata +biancheria +canna +giungla +trascorso +carburante +andre +duke +noia +juan +bicchieri +seminterrato +soldo +salotto +ricevuta +andassi +muri +times +chip +inutili +elementare +aumentare +artie +grosse +incluso +lutto +anziano +opposto +post +radiazioni +rivelato +sperma +decidi +preoccupazione +crescendo +dieta +compassione +ginocchia +joel +giocattoli +romantica +metterò +benedizione +cacchio +bada +andrea +esperimenti +terro +duncan +evidentemente +dimostra +riceve +finiscono +scopa +deliziosa +lascerai +positiva +effettivamente +riconosci +grey +finite +cieca +disegni +statua +zach +seattle +noah +eterno +fagioli +seri +kent +assistere +realizzare +fondamentale +cal +allen +garantisco +bottiglie +h +partiti +addormentato +vacca +coraggiosa +brick +confermare +peli +giunta +pub +farebbero +immobiliare +accadrà +rivolta +chirurgia +impazzita +vomito +parete +rotelle +massaggio +guarire +riempire +finirai +patty +piene +ciclo +copione +detesto +harper +guardarlo +sporchi +svelti +molla +tieniti +metodi +scopata +sharon +darei +noiosa +centesimo +vagina +trovera +importava +cioccolata +ira +recentemente +valigetta +indosso +corsi +assassinato +esprimere +flynn +perfezione +shopping +guidi +promettimi +segua +freddy +aiutata +apparire +andavano +rob +flash +diremo +sentenza +jeans +talpa +michele +divertenti +teresa +attirare +legata +dentista +artisti +debolezza +dipendente +permettermi +monaco +fissato +sebastian +costoso +ruby +prenderai +incontrata +rumori +bingo +clown +concluso +mensa +preghiere +licenziare +vaso +lettura +crederai +rifiuta +guardava +diventerai +aperte +rapidamente +collaborazione +wallace +autore +benjamin +articoli +yang +detta +grassa +scienziato +legati +forme +confini +cambiate +portafogli +psichiatra +accedere +antichi +agosto +condotta +conflitto +gusti +sbagliavo +padrona +sorprese +opere +fuggito +aveste +fortunatamente +lasceremo +recita +cazzi +autunno +reid +sopravvivenza +obiettivi +spie +decesso +offrirti +ingegnere +assurda +subspedia +coperte +usarla +malvagio +becky +trasformare +pericolosi +reed +funzionerà +matrimoni +jin +ella +nido +marchio +occupando +conoscevi +salvata +proibito +accordi +maniere +rosse +incazzato +accetti +corrotto +formazione +chiudete +avenue +pianificato +quantita +f +accesa +continuazione +pieta +jet +pigiama +sfuggire +esaminare +obitorio +costumi +sorprendente +finisco +benny +studentessa +basi +comunicazioni +vivendo +consapevole +interna +chase +philip +certificato +rischioso +funzionando +scimmie +liquido +vietato +tennis +frequenza +donald +fonti +chiarire +cacciare +riuscirci +menu +ned +nolan +fossa +bruno +sforzi +prestato +perse +mettetevi +vivente +divorziato +verdi +prossime +anderson +complimento +ebbe +prospettiva +andò +appoggio +valga +curtis +prendetelo +mick +vadano +divento +succedesse +raro +botta +darai +vinci +giocattolo +ciascuno +jung +odiano +caporale +r +arco +premere +dimenticavo +trascinato +prenderà +riparo +esperti +long +diploma +fida +impiegati +parliamone +nascondersi +vedra +agito +brennan +routine +indizi +carrozza +divisa +divertito +spera +vicepresidente +nominato +quadri +escono +brave +dente +beni +fidanzati +unito +ritirare +marte +liv +preferiti +gwen +salito +vorrebbero +maestra +facci +nascondi +aspettavi +comanda +specifico +duca +stark +parlarci +mandate +preoccupo +sentimento +compri +joy +concorso +rivoglio +lloyd +annullare +sid +brooke +credermi +harrison +depressione +valutazione +presentarti +girando +singola +diventera +raggi +indagando +probabilita +fermarci +torte +fermarsi +amministratore +attraversato +diagnosi +novembre +mandando +note +schiavo +conseguenza +rimanete +atterraggio +tornano +contenuto +solitario +misure +bagni +vietnam +sedermi +scaricare +denise +professionisti +cresce +suonato +madonna +jan +condoglianze +lavanderia +alieno +tucker +saperne +world +satellite +rifiutare +investimento +simpatica +iniziano +accorta +favola +night +indiana +coinvolti +fidarsi +incubi +pulsante +assassina +modella +riga +attivo +strappato +g +programmato +regolare +porre +scout +portarci +torneranno +letti +foglio +dexter +romeo +hal +papino +prendeva +toro +foglie +frutto +temevo +ana +marzo +diventerà +finiamo +vernice +bassi +arresti +perimetro +fissare +claudia +tali +priorita +affidamento +provaci +leggermente +rappresentante +rene +nikki +cercarla +morì +proteggendo +tempismo +perfetti +lester +bravissima +suite +nuvole +bell +diranno +ninja +avversario +ralph +collaborare +svolta +valori +tagliata +pablo +quota +ispirazione +nuovamente +sembrate +porteremo +poiché +avvicinando +sappi +alquanto +false +meccanico +angel +uffici +fuochi +lenzuola +rispondo +copertina +scopi +griffin +utili +codici +insolito +professione +eve +lampada +buchi +irlandese +renda +vie +comprata +watson +alec +puntato +hope +potessero +bastare +gemma +togliermi +lavoratori +competizione +bistecca +tentando +bones +messe +mancherai +roman +riscontro +proviene +prenderanno +denunciato +siedi +astronave +penale +curva +risparmi +adorano +staranno +uccida +apro +salvataggio +concludere +correndo +infranto +monroe +gil +osservare +uccidono +discusso +riunioni +dicembre +diamoci +freccia +comportato +musicale +omar +jeffrey +lena +pa +succedono +ioni +rancore +puntare +sedersi +assassinio +conoscerlo +ritengo +guerre +ginnastica +dallas +telefonica +beverly +pat +candele +preparatevi +disperata +river +cominciando +dissero +assegni +rimettere +bastano +comprendere +parecchie +adulta +dividere +nausea +judy +titoli +abituata +scienze +scortese +gentilezza +rinchiuso +capra +degno +salvarlo +mosse +kennedy +sconosciuta +cd +pensavano +multa +colonna +oscurita +disposta +fisicamente +passerà +vide +ritratto +cambiera +guy +selvaggio +willie +paraggi +quì +mediche +goccia +panini +cava +mail +compromesso +pesanti +cindy +ancor +ottimi +insistito +angie +chiedete +tacere +satana +vena +commettere +louise +attendere +consenso +vitale +manco +spreco +abilità +samantha +vendite +molo +permetta +mento +divenne +pareti +fissa +matty +cercherò +fama +guadagni +riabilitazione +sognare +ottime +tremendo +elemento +rispondete +emozione +attacca +lizzie +corruzione +occorre +riporta +prepari +anton +cat +salvezza +fili +perry +stranieri +round +farmaco +avery +prato +costato +mikey +mercoledi +favoloso +provero +affrontato +archivio +letale +nazioni +alcolici +radar +curriculum +andavamo +pisciare +thompson +nicky +fisher +stiate +campionato +commercio +alfa +clan +particolari +calmata +delicato +cuoco +necessaria +ovvero +torneo +somiglia +classica +unite +compiuto +caleb +scusarti +seguirmi +durata +maggiori +presentarvi +ridi +registrare +scaduto +maiali +mm +giovedì +moon +condurre +chad +scordatelo +trovarsi +cassie +perderai +rimuovere +metropolitana +cicatrice +calzini +sceso +ridono +saggezza +diamante +fenomeno +orari +sindacato +sappiate +solitudine +riviste +costante +appropriato +svenuto +ucciderci +scarica +riconoscimento +tolga +fiamma +mangiate +dedicato +applauso +compiere +tristi +sordo +volontario +harvard +spaventare +allah +costruita +miracoli +business +invitare +web +commedia +candela +valido +distrettuale +vergogno +nebbia +italian +improbabile +scomparsi +dawn +famosi +guidando +sgualdrina +volevate +esagerando +barnes +holmes +animo +flusso +dee +miguel +pregato +fornito +infinite +affamato +controlliamo +barone +spedizione +importi +salti +arrogante +fermiamo +esperienze +deb +bagnato +hei +bollente +ascoltarmi +formula +corse +eccitato +infinito +sun +fui +amelia +christian +successivo +salite +sconfitta +pescare +rimandare +brody +approvazione +intervenire +toc +umanita +scolastico +ossessionato +fata +circondato +tosta +legami +recuperato +haley +muoverci +cody +raccontami +curiosa +impulso +protagonista +supervisore +incontriamo +adams +ubriachi +stephanie +deposizione +preziosa +chiari +presentano +silver +monete +commenti +winston +accettarlo +capaci +rendono +ego +pirata +grand +ritorni +eterna +dammela +bianche +asso +sospettati +comuni +sconto +dimissioni +oscurità +latino +hobby +stevie +borse +bowling +iniezione +brenda +pensai +cereali +zampe +cercata +orbita +sconosciuti +pallone +gentilmente +professoressa +sensori +mostrano +emozionante +espresso +lotteria +riferimento +nudi +panni +gennaio +urlo +frequentare +restituire +conforto +andarvene +hammond +verdetto +finiscila +uniche +butto +economico +poca +private +lati +scarico +guardavo +colonia +pianoforte +austin +riuscissi +sbattere +alexander +sofia +fox +circuito +occupero +amichevole +avvicinare +aggiustare +principali +comportarti +verificare +riva +leale +sconfiggere +richiamato +ni +ordino +burt +crescita +accendi +overdose +serratura +edifici +scattare +server +maschile +scacchi +sedici +guadagna +melanie +votare +rispondimi +infermeria +detenuti +andrete +ruba +reagito +porter +rischiato +addormentata +fotografo +dicesse +tolgo +guardiano +tesi +perdite +lawrence +esplosivo +permettero +unirsi +sconfitto +costruzione +regione +sasha +occasioni +budget +risata +manicomio +cieli +carine +bottone +fetta +smette +chiederò +yoga +venditore +scende +south +ulteriori +brividi +serpenti +progettato +avvelenato +blog +sapranno +rubati +preferite +assicurato +cecchino +conoscenze +prostitute +trucchi +impegnati +etichetta +impazzendo +ava +salvarla +entusiasmo +martedì +cheerleader +reggiseno +squali +rusty +accompagni +assistito +adolescenti +sottile +randall +conrad +erede +giudici +sprecato +conoscervi +prenderne +demonio +istruzione +carson +pianeti +incapace +bestie +moore +disturbare +ignorare +sullivan +limousine +june +hawaii +colto +moderna +spirituale +saint +curato +greco +supplico +dannati +ricercato +grano +indicano +pop +fisso +cathy +woody +raggiungo +lupin +douglas +poiche +vuote +roulotte +mh +ranch +esatta +puliti +cristallo +usati +barbecue +ingannato +mondi +mulder +verbale +provino +isaac +statale +alleati +cresciuti +sequenza +alpha +orrore +nell +pompieri +with +schmidt +p +scomparse +archer +we +gomme +paparino +omaggio +hard +seguita +comoda +procede +sandwich +api +dimenticati +bart +mamme +contano +pipì +gabe +perdonatemi +hockey +oscura +look +buddy +rotte +apparentemente +missili +obbligo +postale +portiere +em +casco +indipendente +mona +eliminato +callie +poterla +sheila +queen +ballerina +galassia +ospedali +sire +force +maniaco +comportando +prudente +messicano +ritirata +biscotto +cercarti +nerd +ritiene +lottato +sentirla +allucinazioni +cannone +axl +ellis +operai +incontrarti +domando +calmatevi +pro +dritti +ragno +marinaio +cittadina +alte +bernard +morris +delicata +considera +negare +bancone +banana +starei +salvarmi +intesi +usava +torcia +verrebbe +starebbe +affidabile +elvis +chiedergli +piacesse +sirena +stranamente +preavviso +innanzitutto +ritrovare +ari +ossessione +assicurarsi +uccellino +moriranno +cacciatori +pubblicato +ingannare +comandi +preoccupazioni +dirige +catene +scorre +dipingere +venduta +samuel +reese +rivedremo +glenn +decente +bellissime +esaminato +eccetera +dischi +provocato +fotografica +daphne +richie +murray +lola +dipendenza +turni +disgrazia +testo +assalto +australia +canti +versato +concordo +xena +campbell +intimo +detenuto +fregare +freddie +soffitto +incolpare +tienila +ottiene +orleans +marilyn +appare +mattinata +quantità +wolf +secca +bussare +destinazione +jazz +terrò +perdonato +aiutero +comportati +interrogato +pesi +palo +nominare +trovarli +pugnale +piangi +inferiore +desiderare +cerchero +kang +capiscono +concentrato +girano +estranei +marijuana +dixon +vendo +proseguire +inevitabile +mandarmi +sapevate +disordine +estratto +soffiata +liscia +dovuti +bud +piper +prenderle +riusciro +segnato +dimostrazione +chiamavano +avvisato +ammiro +femminuccia +paolo +proprietari +picchiare +muovendo +y +agenda +iniziate +incasinato +meritava +centinaio +trasferire +scudo +scheda +trasportare +partecipato +houston +menzogna +peggy +ricevi +avvicinati +valere +quassu +impari +analizzare +sappiano +sceneggiatura +morisse +peste +costole +mandano +sposarci +riscaldamento +vulnerabile +rivelare +juliette +penserai +jedi +agitato +permetterò +funghi +grigio +capiamo +cifre +innocenza +sacchetto +lascera +bennett +unirti +ditta +ingiusto +campana +carità +comportarsi +dimenticarti +salita +preghiamo +lenny +prezzi +piove +asciugamano +aspettarmi +fulmine +vene +vogliate +reynolds +esista +etero +efficace +rocce +ripulire +prepararsi +semi +rituale +respiri +sosta +marrone +karma +calcoli +sandra +ranger +tata +senato +spariti +distante +sydney +attaccata +massacro +trasferiti +combatti +fecero +ncis +rintracciato +percy +avvenuto +jonah +colpisci +dolori +illusione +co +vermi +seguente +fucili +precisione +aspettarti +mise +soffrendo +sciopero +comprensione +vedranno +peggiorare +wyatt +pompa +treni +incontrarla +negato +broadway +riuscirò +penseranno +rilascio +rapido +dramma +tattica +audizione +ritirato +mutandine +cercarmi +proteggerla +saper +reagire +corde +gabinetto +ripeti +proverò +costretti +lacey +attentato +yen +finendo +partendo +offerte +palmer +paula +aggiunto +dispiaciuta +elefante +razzista +invasione +garantire +gavin +aiuterai +spiegazioni +sollevato +ombre +gangster +nati +vogliano +rivederla +atterrare +merlino +onorevole +grandiosa +firmi +spaghetti +apprezzato +donato +rex +ohio +cyrus +sapone +ricevo +giochetti +visuale +combattendo +cattura +concentrarmi +bernie +registrazioni +sfuggito +ridurre +sol +generazioni +sottomarino +spiegarmi +salone +stellare +valeva +aspetterò +rospo +compare +gin +darebbe +stretti +meritano +omicida +garanzia +donovan +prosciutto +goditi +sinceri +toglierti +convincente +aerea +potuta +dossier +inchiesta +esperta +musical +posa +raffreddore +iris +toast +sembravano +chen +ferire +prendimi +gestisce +volerci +interessati +alternative +ammazza +stanchi +delusa +sbagliando +nere +proteggermi +mobile +boris +dimenticate +possiate +gettare +sognando +resterà +legittima +mostrami +inserito +negri +ward +fantastiche +philadelphia +tirate +elettrico +piloti +pirati +tacchi +appeso +mantenuto +frattura +volpe +esagerare +legalmente +falli +scelgo +nicholas +valida +benone +milano +categoria +fermarli +onorato +tasso +giusti +vigilata +compagnie +scommesse +sviluppato +terminato +apparecchio +italiani +erin +clarke +ritardato +valgono +parlavi +trapianto +pierre +parlavamo +jared +disturbi +bisogni +balle +attualmente +marta +riscatto +orsi +mancia +are +north +chiedervi +zack +missile +carbone +marea +vedesse +terrorizzato +luca +muso +approccio +radici +paure +probabilità +commento +down +ribelle +casse +liscio +sanguinando +thor +dawson +sospetta +creazione +olive +keller +rossetto +eseguire +schianto +scappi +esistere +legate +frocio +colpevoli +volti +arrivarci +jae +scopriamo +voluti +vigliacco +guardala +guerrieri +portale +rocky +cemento +aquila +estraneo +mancare +hans +maresciallo +liberarsi +reggie +arrestata +volgare +tonnellate +quaggiù +teso +attenzioni +usciva +country +leggerlo +nazisti +bestiame +timido +altare +venir +consideri +conquistare +impedisce +nipoti +terremo +naturali +fragile +papi +abitudini +litri +fusione +filosofia +ciccione +accadesse +ciambelle +progresso +rifare +porterai +software +bert +falco +cenere +perderemo +rimosso +applausi +cambierà +silenzioso +suggerisce +sopportarlo +seta +mercedes +adozione +iniziativa +proposto +violenta +economica +fica +penserò +mito +pan +sposta +pollice +chang +accadde +finestrino +stessero +toglie +limone +he +calvin +accomodatevi +rimarra +febbraio +creando +annullato +edizione +inviare +santi +caviglia +fi +squillo +cagare +registrata +shakespeare +impedito +central +piccoletto +arabo +incantevole +sufficienza +digitali +costruendo +discuterne +georgia +sfruttare +gray +kay +tae +finiremo +insistere +sobrio +stupidaggini +fallire +tequila +venute +bloccare +finch +gallina +scossa +veste +sal +moriro +soprannome +coltelli +divertirci +epidemia +disperazione +sherlock +alzarsi +votato +gelosia +bevuta +pensero +visioni +polo +assoluta +gi +lenti +riferito +malinteso +senno +contadino +precisamente +tredici +smoking +barche +alleanza +irene +sbagliare +semestre +vendendo +ragionare +stacy +spettacolare +cavalieri +nascondiglio +costano +suggerito +porteranno +finanziario +riporto +renderlo +confraternita +pagati +delta +acquisto +tecnici +studiando +recenti +incontra +side +negoziare +know +val +permanente +globale +produrre +vendono +parlarvi +credetemi +rara +sudore +intrappolato +high +riservata +macellaio +infantile +fc +avvertire +vorreste +sedie +scritte +avvicinarsi +can +foster +protetta +gestione +bambole +íl +israele +scendo +presentimento +risorsa +caduti +taco +mini +ehilà +occidentale +cancelli +faccende +giocano +antenati +frode +rory +osare +bum +danneggiato +generatore +tirarti +scappati +ometto +sfigati +valley +riuniti +offrendo +dibattito +frena +fidarci +accompagnato +fuma +mettimi +pesa +spiegarti +offeso +attaccati +incontreremo +fondazione +misteriosa +punteggio +giubbotto +teorie +rivisto +end +dj +depresso +perderti +freno +opinioni +sbarre +definizione +milo +ricordarti +decise +stradale +useremo +superman +pecore +viaggiato +like +cervo +sutton +poeta +divertita +altamente +inganno +simpson +collegati +scambiato +incontrarlo +telefonare +instabile +sputa +protegge +urlato +alimentare +conduce +wes +toccata +portatemi +accompagnare +iscritto +delusione +tatuaggi +violato +gratitudine +ritrovo +intimi +organizzando +cagnolino +direttrice +batman +contadini +poesie +mettiamoci +renderti +suprema +operare +rimesso +clacson +farmacia +arrabbiati +granche +bruciata +edgar +piccolino +furba +penserà +settimo +cuccioli +dovessimo +what +cestino +miglio +necessariamente +valerie +vitali +chelsea +bacon +comunista +panchina +cuba +marvin +creatore +esplosivi +staccato +addestrato +butti +geni +grandezza +morfina +scotty +rilassarti +insegno +lascerà +morirò +piccolina +sorso +capiti +sasso +toccarlo +briggs +tradire +permetterci +quassù +fingendo +emotivo +baker +riempito +hugo +google +amarti +metterai +cognato +intendeva +fermarla +vivian +barriera +saltata +macchie +cha +inserire +portarli +immondizia +personalita +franchi +libretto +hudson +rompe +piega +incredibili +personalità +tenerli +basato +disponibili +simone +odiare +fottutamente +mindy +avvicini +orchestra +frontiera +destinato +imparando +shin +jun +nadia +maglione +presentata +saul +divertirti +frutti +poltrona +gossip +chiederglielo +minori +american +comunicato +pubblici +mandy +precisa +eun +tavoli +svizzera +oriente +freni +fumetti +evans +darren +dichiarazioni +dozzine +voluta +deriva +enterprise +scomparire +affinché +dimensione +residenza +pallida +laurel +scambiare +combinando +piacevano +toglimi +lingue +mortali +sentimentale +dimentico +bond +franco +scherza +dirigere +nude +democrazia +punito +batterie +tenero +sonny +ring +sostanze +yoon +aspettero +picnic +alzata +imboscata +intelligence +resterai +aspettative +vederle +mandero +jasper +iniziale +zucca +piccante +faremmo +florrick +negativa +rallentare +chandler +toglietevi +assunta +propongo +ceneri +pope +glen +lake +provano +calendario +procurato +composto +candidati +disegnato +approvato +capitan +alberto +disperatamente +roland +dawero +gemella +ammettilo +song +vomitato +scusare +glieli +notiziario +donatore +braccialetto +happy +this +min +cedere +more +divina +scrittura +scudi +lotto +differenti +hills +balli +estremo +uccidilo +woo +rapida +passava +ascia +rimaste +sacrifici +attraversando +aiuterò +spade +kenneth +disegnare +tecniche +kansas +baciami +defunto +permettersi +alloggio +cavata +paranoico +mosso +soddisfazione +get +ringrazia +steso +shirley +shepherd +affinche +men +legga +trasforma +insetto +riuscirà +intenso +gates +circolazione +ivy +procediamo +interrogare +esposizione +ricominciamo +vicine +attivato +wells +scherzavo +significare +liberarmi +maurice +lite +palude +sciocchezza +manica +strappo +crane +ucciderai +convincerlo +ricevimento +marciapiede +spiritoso +homer +dispiaccia +perdonarmi +sparano +tradizionale +stima +passeggero +nasconderti +chiudiamo +drake +tessa +trovavo +terrestre +ferie +gold +restera +frequentato +mercoledì +servivano +ferrovia +des +determinato +jon +avvicinarti +terapista +ognuna +shelby +sposarlo +inseguendo +nonni +donnie +servisse +vincente +disciplina +sponsor +crack +razzo +rodney +voli +premuto +dimenticarlo +ricchezza +alfred +particelle +rilasciare +schifosa +esclusiva +carrello +batti +straordinari +vedessi +color +lex +guardarla +immigrazione +ahia +contessa +spiacevole +manutenzione +fornire +allerta +scuro +marca +attiva +rimarrà +stufato +aggredita +tana +discrezione +distratto +gemelle +ristoranti +privati +inviti +abigail +oz +hayley +sushi +afferrato +elettorale +femmine +roberts +lava +risonanza +usciremo +guarigione +puttanella +vescovo +decido +ostacolo +scoppiare +arrendo +strip +spaventati +powell +fammelo +posizioni +buttata +cambiati +vigilia +turisti +sostituire +valsa +manzo +terrificante +riuscira +delinquente +immediato +scadenza +insopportabile +umile +tenersi +detroit +hamilton +caverna +riposati +hacker +odiava +ty +giganti +pacifico +onnipotente +politiche +vega +aumenta +verremo +spiegherebbe +camminando +uva +rudy +legna +impiccato +necessita +esther +rientra +pulizia +sacchi +rischia +competere +scesa +anatra +pugnalato +spinge +dirla +corrispondenza +chilo +chiamalo +letteratura +rovinando +venivo +pancake +lasceranno +terremoto +chiuda +air +spogliarellista +scopra +prepararmi +corriere +condizionata +futura +appartengono +ragazzine +conoscessi +kathy +stessimo +barattolo +eletto +gialla +pensera +kane +news +sbrigare +modelli +tedesca +stu +siedo +continueremo +glee +arnold +violenti +scommesso +cylon +stronzetto +mentirmi +divino +contratti +cristiano +monitor +incrocio +arancia +luis +disposti +cercavi +abuso +christina +secchio +conclusioni +privilegio +osservando +tartaruga +facciate +tradita +apparteneva +spike +maleducato +nuoto +cantiere +volontari +divertirmi +libreria +audio +provocare +pullman +aiutarli +segrete +ucciderli +pulite +generosa +durare +passero +domicilio +protesta +vennero +vabbe +fazzoletto +timmy +ironia +cocco +mills +baxter +condiviso +parata +tenetevi +giornate +seguono +derubato +attende +mariti +sfera +chiedertelo +tanner +rovinata +hunt +spot +preparate +rubando +raramente +seguiamo +sidney +kg +bridget +addetto +graffio +cominciano +crociera +frammenti +dolcetto +drogata +art +furia +forbici +tranquillamente +individuo +metteranno +calze +crescono +sopravvissuta +lampo +cambiarmi +occuparti +armate +reporter +colline +digitale +schemi +evitarlo +benessere +pericolose +signorine +voltare +filmati +menta +marc +romani +telegramma +pasticcio +riferisci +tirati +alt +picchiata +tessera +rimase +concentrazione +benedetto +completato +estrema +visitatori +arteria +tossico +cass +decisi +cera +theo +materiali +lavoretto +torace +guarito +critica +indossando +succederebbe +bastava +contemporaneamente +illegali +wall +pubbliche +sembravi +risparmiato +mandiamo +svenuta +naruto +nucleari +crollare +just +tosse +quarantena +medicinali +udito +chiacchierare +samurai +brandy +bonus +esibizione +cantano +seme +capanno +consegne +fort +scozia +eccitata +enrico +fumi +suicida +stevens +verdure +prestare +terrorismo +shelly +griglia +sostituto +now +profitti +ripulito +dani +noti +finirla +doverlo +quaranta +avergli +isabel +garrett +attrazione +scully +suv +facessimo +isole +osserva +colpiti +evoluzione +archivi +evitando +rendendo +pallottole +rilevante +operativo +psicologo +arachidi +muovermi +fini +notturno +bordello +favori +afferma +profitto +baracca +fedeli +nucleo +musicista +fran +vantaggi +essenziale +aggressivo +crollo +azzurro +martini +arrivasse +sballo +scommetterci +suggerimento +dessert +risalire +richiamare +facciamola +interruzione +terrorizzata +prendertela +inchiostro +surf +oca +chan +psichiatrico +ops +percentuale +carri +cospirazione +costantemente +water +intima +hugh +portarle +arizona +lori +aids +fareste +editore +basa +merci +mantiene +aidan +investire +descrivere +litigio +z +feccia +mentali +ubriacone +tenebre +gravemente +eleanor +jessie +biologico +moduli +chiedermelo +fritto +sottovoce +pressioni +tate +ringraziarla +critico +life +pagherai +soddisfare +ucciderebbe +regolamento +missioni +spararmi +joshua +parcheggiato +salvati +fienile +rovini +tubi +seguite +artu +meritato +chiameremo +precisi +brutale +ramo +patti +cristina +esposto +italiana +sceglie +cliff +celebrare +hart +ricordarmi +vendi +laurie +or +trofeo +significava +violino +proteggerlo +pietro +potter +tammy +lividi +whiskey +educato +alzarti +fantasie +riguardano +allegro +vaccino +jonas +camille +artificio +dovevate +infilato +rana +deficiente +provviste +selvaggi +cicatrici +seppellire +sufficienti +agnello +completare +lasciaci +alzate +lasciarli +cartelle +disturbato +passeremo +difetto +conversazioni +celeste +kirk +storico +maggioranza +viaggia +tantissime +scema +mais +scopro +cadendo +portarvi +bates +descritto +sylvia +pepe +nikita +tolta +scartoffie +arrosto +frasi +mama +gorilla +wu +ipocrita +tenevo +sospensione +sella +lesioni +mettera +daccordo +janice +soggetti +perquisizione +sacra +reati +legare +orgogliosi +spiegarlo +cho +psicologia +ringraziarmi +muovono +bimbi +rilevato +joyce +cross +pentirai +indovinate +furioso +collegio +orientale +difetti +deputato +clima +aziende +signoria +pasqua +escluso +autografo +panna +bush +ash +bennet +anonima +tirarlo +claude +narcotici +creata +appartamenti +dante +inventata +midollo +rispettato +leoni +khan +americane +avventure +napoli +dormono +lavorarci +balena +muffin +but +sophia +lavato +vuoti +svegliare +sedute +odiato +soo +convivere +siti +metterli +volato +bridge +riferisce +got +salendo +donazione +addison +cugini +doveri +automatico +plotone +definire +giuseppe +blocca +cosciente +immaginate +scattato +cambiamo +brindiamo +correttamente +privo +caserma +preservativo +kung +lavorate +cantando +coppa +marmellata +rimorso +perdenti +scappate +lenta +collaterali +hughes +strizzacervelli +pranzare +trent +deprimente +furti +obama +priorità +tirar +assaggiare +preparazione +nano +saggia +procura +convincermi +fattore +cupcake +rilassi +vip +vicinanze +orologi +piombo +campane +occuperò +divertire +nasce +kat +spaccio +dichiara +utilizzare +combatte +pisello +fidato +patetica +apocalisse +incastrare +ratti +lealta +marshal +seminario +divertiremo +neonato +righe +rimaniamo +ceduto +fascicoli +good +diecimila +contabile +stewart +oxford +capitare +nascoste +ispirato +autentico +farsa +cardinale +kara +phoenix +curiosità +definito +dovessero +izzie +restero +armatura +spacco +cappella +annuale +lorenzo +capira +vinco +sessualmente +solite +metteva +doni +dominic +twitter +navetta +energie +seppellito +sparando +ponti +grassi +occupiamo +barbie +considero +farmelo +ammissione +sistemo +falle +insignificante +cynthia +assicurarci +maschere +irrilevante +cristiani +aspettavamo +spray +canali +offri +mantieni +valutare +fatale +turbato +sapro +tosto +specialista +apriamo +ordina +vapore +permettimi +manderò +mucche +shannon +dorothy +sbagliati +zoey +scendete +asino +susie +assicurare +caveau +cagna +affidato +arrivò +yogurt +rispettabile +nazionali +bacino +pagate +cercheremo +peggiorando +mosche +scriva +cantato +einstein +rimedio +comprensibile +agnes +successiva +cruz +sparargli +aah +amavi +juliet +ragazzone +parlavano +sadie +chiamatemi +grotta +sporche +occupare +brendan +andavi +bunker +distributore +bè +lesbiche +insisto +meraviglie +sessione +esercizi +offrirle +sennò +aggressore +sfondo +bradley +profondità +fitz +marge +beccati +separazione +ca +ratto +risale +polli +miserabile +elaine +telegiornale +trasporti +darcy +gardner +antidoto +avvisare +aiutano +sino +evitato +parrucca +bauer +evacuare +abbattere +fastidioso +uscira +emozionata +architetto +jacques +disturbarti +comico +eternità +valeria +rum +barzelletta +scappiamo +assaggio +circolare +costosa +secret +officina +indicazioni +gamma +et +nascondermi +casuale +rovescia +sfugge +garantito +litigando +toni +tirarmi +scherzetto +avvicinato +difensore +nobili +anziana +liberamente +romano +archie +tirata +resi +que +ingaggiato +kira +egitto +considerata +scarlett +promettere +pompino +atrio +uscirai +alzo +willy +ricostruire +mantello +moderno +provincia +dinozzo +miliardo +borsetta +liberarti +jefferson +odiavo +materasso +tirando +vicinato +reggere +occuperemo +rubate +fumato +portland +allegra +balliamo +conigli +splendore +accosta +adrenalina +studia +bagnata +interruttore +ripartire +spaventosa +differente +padroni +ridotta +pagando +perla +turco +definitiva +facessero +patrimonio +straccio +ispezione +chilometro +eredita +pagherò +ezra +tienimi +mandarlo +brasile +link +joo +capello +aree +cercavano +esaurito +lynn +danielle +prue +ritrovata +sembrera +stringere +haven +civiltà +veterinario +gabrielle +ciccio +bentornata +dom +genetica +gail +colla +cupola +accennato +frigorifero +paghiamo +riflesso +montgomery +ridammi +baia +jj +perda +suora +price +spostatevi +rimarrai +corna +dichiarare +ugualmente +uccidimi +giurare +dipinti +postazione +cammini +mina +tragico +soda +piattaforma +roberto +arancione +capirà +damien +hulk +irritante +fissando +preoccupate +ritornato +pasti +nash +pasquale +callen +robinson +spavento +sigillo +menzionato +esplorare +critiche +torres +unire +poterci +scendendo +ginger +dance +contenitore +scoprirai +bree +industriale +obbligata +nam +riposa +dona +caricare +morsi +spacciatori +tanya +puzzi +laureato +richiamami +lamenti +talvolta +gocce +grido +toccarla +immortale +interrogatori +jude +sportivo +appassionato +perfavore +aiuterebbe +furgoncino +bam +beccare +apprezzare +rich +fogna +galla +francesca +delegato +piovere +stalker +gu +chiedeva +aggiornato +artificiale +isabelle +schiaffo +adorato +polly +folli +bruciando +zecca +buttati +dimenticherò +veicoli +lavandino +maddie +distruggendo +rapinato +balcone +fartelo +alzarmi +tenerci +task +liberati +asciugamani +prendine +staccare +respinta +permetto +grati +vetri +evacuazione +saprebbe +cinture +battaglie +riferisco +parlera +alloggi +preparata +marcel +pecora +balletto +nastri +svegliarmi +scientifico +reni +buffa +corretta +minacciando +bollette +helena +cucchiaio +rio +orgasmo +recinto +stuprata +atleta +seo +festeggiamo +resteremo +uragano +pittore +fortemente +eseguito +sloan +edith +immaginarlo +gestito +fontana +uccidiamo +trascorrere +javier +diciotto +banale +mazzo +doverti +misero +hee +pony +casinò +allontanare +capodanno +pettegolezzi +pazzesca +care +metterà +sparagli +duecento +rifarlo +vendicarsi +marcio +povere +sirene +jenkins +francine +nazista +presentarmi +rico +contributo +decine +starmi +kid +esserle +affittato +banconote +farina +guidava +magro +starete +fregati +regolarmente +popcorn +square +trattata +immobile +alito +messicani +principalmente +malgrado +riflettuto +granché +k +buzz +sofferenze +roll +invenzione +biliardo +temporanea +preservativi +baciata +abbattuto +orlo +promosso +poster +origini +municipio +accusata +fianchi +ostile +trattenuto +rispetti +yacht +periferia +tribù +inseguire +cm +evelyn +informata +cadono +dorsale +caverai +spugna +strette +beneficio +incontrarmi +cancelliere +squilla +produttori +espulso +tessuti +adottato +disturba +solitamente +mentore +darryl +torturato +mutuo +profondita +camminato +esse +creativo +profondi +superficiale +facciamoci +sciarpa +vigili +orfanotrofio +violentata +imminente +corno +documentario +solletico +piantato +concorrenza +presentati +impiego +dateci +logico +tiriamo +dignità +restituito +scritti +scorte +portiera +aziendale +duello +originali +dirvelo +sani +drive +matteo +molestie +wesley +georgie +resterò +portatela +facolta +piacerti +paramedici +verrete +dormitorio +incendi +noccioline +setta +salsiccia +calmarti +perderlo +incirca +iniziali +pagliaccio +procedure +celia +pisolino +ingenuo +first +suonava +nsa +ringraziamo +feloreena +bancarotta +sollevare +confidenza +bandito +sapersi +gilbert +when +amate +guancia +determinare +magliette +libere +vivevo +emozionato +doris +convinti +operato +scoprisse +ritrovi +temporaneo +soffitta +tabacco +ferrari +chimico +guasto +ingrid +pearl +sacrificare +patrigno +nah +perdona +wheeler +incaricato +colorado +banchetto +analizzato +maura +distrutti +agitata +phillip +scrisse +aspetteremo +infinita +siede +interferire +mandami +granchio +manuel +anomalia +trascinare +mari +aggiornamento +rasoio +riuscirei +tatto +capanna +cyril +soffro +camper +perle +frequenti +farfalla +steroidi +dong +adesivo +cannoni +check +sistemata +nanna +ji +infernale +deeks +riprendendo +pollici +eccone +levatevi +center +rientro +tenuti +controllano +altrui +gliele +cucinato +anonimo +indossato +ignorato +scoprira +migliaio +aiden +ormoni +baltimora +corti +perduta +trattenere +camino +offensivo +prigioniera +quattordici +turk +malvagia +pedro +adori +comprati +cavalcare +lucido +lisbon +bevete +osa +menzogne +gregory +renee +avermelo +fedina +back +credibile +complotto +avanzata +umiliante +bizzarro +tabulati +emotivamente +capii +suicidato +provengono +comunisti +spaccato +insinuando +favolosa +disprezzo +medie +grecia +primario +meccanismo +controllata +vediamoci +aborto +impaziente +idraulico +lasciali +distrugge +ricevute +precedenza +maturo +scattata +costituzione +binari +cavalleria +ostacoli +muovo +rispetta +buck +puzzle +identificazione +stamani +nigel +daniels +peyton +pomodori +irlanda +boxe +serbatoio +difese +erezione +ollie +rush +coinvolgimento +hayes +eugene +incastrata +în +serviti +pentagono +bourbon +brett +sigaro +abbigliamento +sonia +chiudendo +veglia +diversivo +voltato +verifica +dormiva +cominciata +soliti +capsula +mara +piazzato +intendete +etica +spettacoli +stupidaggine +capezzoli +celebrita +modesto +buonissimo +canyon +equipaggiamento +figuriamoci +stregone +rapire +curvatura +prevedere +abbracci +valvola +robaccia +ironico +way +spacca +elettronica +respinto +finisse +indipendenza +tremenda +monk +telecomando +chiare +intensiva +allontanatevi +attraversa +attratto +national +scoprono +svedese +cartone +cartolina +bagaglio +brady +formale +produce +sparite +terrà +servita +dama +sentira +noci +conferenze +cellula +baciarmi +interpretare +contesto +orrendo +vedano +diviso +vaga +chiodo +accettate +straniera +grembo +judith +notturna +frequenta +pittura +analista +denunciare +selvaggia +fuso +traditori +elicotteri +marines +sung +tromba +alzatevi +tantino +teme +spazi +lasciatela +degna +ave +riguardi +consigliato +crystal +caricato +cary +ringraziarvi +carolina +tornado +improvvisa +gravita +riposi +paulie +audace +durato +portaci +sembrerà +riporti +scoperte +essenza +assistenti +tiralo +allergico +visitato +ottimista +tifo +coraggiosi +ricordata +abbandono +perlomeno +frost +ricordavo +concedo +annunciare +elsa +pericoli +necessarie +orecchini +uscirà +ebrea +bryce +vendiamo +account +sacca +permettete +holt +ricatto +cappelli +lealtà +lilly +rendermi +jose +inaugurazione +pratico +crichton +vorrete +foro +trasformata +mentono +separate +ignoto +cancella +godere +vali +estrarre +sanchez +bancomat +migliorando +yi +timore +comprende +finocchio +choi +metafora +esemplare +sviluppare +scusarsi +marion +corrispondono +presentarsi +eternita +discarica +ambizione +formare +coinquilino +figuri +sfilata +pestato +ciechi +richiedere +venezia +cominciate +stoffa +bip +ansioso +capolavoro +darlo +falls +sè +organo +spedire +sentirà +hood +sospira +nascondono +beccata +usero +comprate +incazzata +richiami +casetta +prepararti +cattolica +culi +ziva +ta +evita +calmare +significano +tonno +biologia +strisce +testardo +fotta +osato +pupazzo +eccovi +allontanato +ernie +ottieni +abile +teschio +sacrificato +popolari +ergastolo +ricordano +escludere +grammi +pochissimo +curiosita +definitivamente +bottino +trasferirsi +yu +funzionava +diventerò +antincendio +liberazione +esercitazione +gare +fortezza +funebre +mostrarmi +estivo +comandare +ballando +reagan +piú +intensa +dividiamo +corro +home +ripulita +pareva +guardatemi +strike +comunale +formato +paghero +convincerla +profeta +pagherà +permetterti +silas +dominio +damigella +wo +aprirla +capitata +necessità +muoviamo +gialli +comprendo +marinai +guardata +inizieremo +confesso +pellicola +sherman +distinguere +sapresti +aprilo +arbitro +kappa +solitaria +ricognizione +trattasse +holden +tiratore +controllarlo +provoca +automobile +trattano +tentazione +culla +pelliccia +soffia +chiesi +sensazioni +chiedigli +vergogni +entrarci +guanto +bolle +opportuno +hale +denver +montare +inappropriato +pass +motto +divorziare +rito +milady +parlerà +celibato +dirsi +pamela +cuscini +sorride +pagarmi +affrontando +fieri +sentii +metterei +insiste +raccontando +katrina +bande +poverino +pulisci +prendili +tener +fischio +centimetro +luigi +emmett +louie +pancetta +labirinto +ascoltarlo +insensibile +chiedilo +ga +fax +copre +dimora +trovasse +intrappolati +compenso +lunghezza +nuvola +disgustosa +corta +copro +possiedo +sapessero +necessari +viventi +riconosciuta +spionaggio +dategli +passaporti +rivediamo +foglia +nottata +conquista +affar +cap +bloccate +dintorni +tentativi +dirigente +complicazioni +benefici +allergica +riportarlo +gallo +sposiamo +brusio +du +devon +affrontarlo +diventate +coprifuoco +tic +inventare +traguardo +accendino +pienamente +stupisce +perfette +abusi +sbronza +joanna +continente +trovassi +urgenza +barbiere +levi +at +tiffany +panorama +passerai +fanciulla +aliena +metal +gomito +bea +sabrina +scenario +sgradevole +skipper +giurisdizione +sostituito +anita +jamal +intestino +dillon +cassonetto +eredità +noleggio +alaska +lin +manchera +toccate +scoperti +anteriore +cervelli +corrono +autostima +mae +elijah +kai +desiderate +aprila +solido +deacon +baule +nuziale +organismo +inclusa +religioso +brooks +reggimento +distrazione +alfredo +recitazione +ereditato +velo +stalla +succedeva +buster +cogliere +nasa +resistito +pertanto +inseguito +patata +hetty +preston +maratona +vialetto +giocava +dinosauri +atlanta +misteri +federazione +salga +network +eccole +collegata +sepolta +nodo +rendera +assomigli +tondo +apparso +brent +microonde +magra +amarmi +negativi +an +kev +mah +eco +abituati +mandarti +regge +comportarmi +sprecando +accampamento +am +giura +marcire +spazzolino +vagabondo +andiate +temi +parlamento +mettici +peterson +arrivino +magnus +vizio +carlton +lavaggio +golden +timothy +meravigliosi +trovai +supponiamo +mine +eden +karate +hipopo +pubblicare +informare +rame +lontanamente +facciale +signorino +allontani +fletcher +inaccettabile +resoconto +tenta +compresa +lucia +trovarne +battesimo +schiava +presti +incrociato +svenire +turbata +crawford +salgo +guardaroba +lnvece +reception +gibson +centri +visivo +rinchiusa +nostalgia +sotterraneo +decenni +eddai +sanitaria +identico +cast +manovra +disturbarla +bacia +scendiamo +attivare +grana +assente +disgraziato +mars +formidabile +rimetti +concentrarti +consiste +contenere +finanziaria +carbonio +emotiva +maggiordomo +sembrata +bibita +depressa +sanguigno +sciroppo +puzzolente +cola +granata +estrazione +manchester +matita +nico +sterling +sbrigarci +complicate +chiesta +brien +suonano +bretagna +comodi +starmene +prescindere +combini +musicisti +sfortunato +boccone +giudicato +ictus +padrino +fae +accompagna +edwards +yankee +pennsylvania +entrava +right +grigia +razionale +antidolorifici +internazionali +quarterback +basata +osservato +giove +ginevra +ri +corsia +ombrello +portò +fritte +old +dinamite +agitare +credevano +giovinezza +mack +riccardo +citazione +abe +donny +avuti +venirmi +dubitare +cassidy +canadese +assai +scompare +vinceremo +giardiniere +cassette +raccontarmi +sbrighi +chiederei +volano +sacerdote +imbroglione +dette +dopodomani +donare +trish +investitori +rappresentare +discutendo +postino +difeso +sonda +frainteso +vincono +burton +royal +bersagli +marchese +esploso +teletrasporto +esservi +utero +preoccuparci +istruttore +prenotazione +dammene +flebo +banditi +hodgins +crowley +pratiche +tornasse +puntuale +celle +gelatina +hassan +venere +cotto +invidio +affamati +igienica +pentola +bon +concentrarci +wa +insulto +accusare +avanzato +ã +insegni +schifezza +pensasse +delinquenti +documentazione +maledettamente +game +assemblea +sbrighiamoci +avvicinatevi +scatenato +riprendiamo +discesa +migliorato +spettatori +investimenti +mannaro +ciambella +arrabbiarti +lasciava +volando +durerà +accolta +durera +corvo +starti +clarence +jeep +sookie +convento +battaglione +duemila +soddisfatta +urina +congelato +stazioni +quadra +salsicce +accompagnatore +pallido +poliziotta +prenderei +segna +guscio +renderebbe +significherebbe +argomenti +diciassette +cece +amichetto +spezzare +vivevano +speravamo +profezia +rifiutata +britannico +cuoca +misericordia +ignorante +subire +aiutiamo +gretchen +box +sottoterra +pannolini +lottando +marcello +conservato +pargolo +binario +domestico +portar +fato +rispondono +supera +sportello +gridando +accidentalmente +coinquilina +biondo +prendervi +invidia +religiosa +costerà +armonia +jeannie +preferiresti +rapine +troupe +prevede +parlerai +pila +rabbino +beva +raggiunge +rivolto +gentiluomini +nasconderlo +passavo +ordinanza +gravità +indicare +acconsentito +generali +roosevelt +accompagnarmi +rotoli +brillanti +onorare +avanguardia +truffatore +svegliarti +crederti +master +segnalazione +firenze +possedere +perdero +tuono +uniformi +indicato +canaglia +lucky +nodi +salutarti +horror +jax +tassista +muto +sicure +dadi +lila +anonimi +lamentele +lamentarti +giulia +performance +allenamenti +legittimo +indirizzi +trasferirmi +attirato +scolastica +isubs +biologica +stupratore +mascalzone +fascia +matricola +biasimo +erik +basse +bryan +carly +ditegli +comprarmi +interessava +residui +oppa +rafael +grandissimo +les +proprietaria +movies +montaggio +dicesti +discoteca +elementari +indovinato +tesori +buffone +university +drone +souvenir +denny +godetevi +marziale +ingenua +tutore +impulsi +antibiotici +us +pompiere +sawyer +togliersi +registratore +abed +astuto +minestra +pubblicamente +theresa +baciarti +catastrofe +vivete +abbandonati +annunciato +decollo +iniziò +pensarlo +girls +competenza +laboratori +aglio +scoiattolo +frecce +cimice +vulcano +scopriro +calo +saprò +was +operatore +wally +aiutaci +diventero +afferra +conoscermi +chiarezza +indagato +pompe +palm +taglie +giorgio +barbone +point +modus +marchi +domestici +bevono +erbe +scopriranno +who +scuri +eccessivo +adorabili +scenda +rivale +dimostri +stanne +madrid +tobias +caratteristiche +michigan +cotone +distribuzione +interiore +potenziali +elettricita +picchia +checca +fish +credevamo +nani +tossicologico +soglia +suonando diff --git a/anno3/avrc/assignments/dataviz/dataset/comuni.json b/anno3/avrc/assignments/dataviz/dataset/comuni.json new file mode 100644 index 0000000..574e473 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/comuni.json @@ -0,0 +1 @@ +[{"codice_prov_istat":"001","codice_comu_istat":"295","name":"VESTIGNÈ","lat":45.3867,"lng":7.9559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"265","name":"SETTIMO TORINESE","lat":45.1371,"lng":7.7709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"029","name":"BORGIALLO","lat":45.4181,"lng":7.6697,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"078","name":"CHIERI","lat":45.0116,"lng":7.8229,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"018","name":"BALDISSERO TORINESE","lat":45.0685,"lng":7.817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"211","name":"REANO","lat":45.0522,"lng":7.4302,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"179","name":"PARELLA","lat":45.4303,"lng":7.7942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"156","name":"MONCALIERI","lat":44.9994,"lng":7.6801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"315","name":"VOLVERA","lat":44.956,"lng":7.5125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"038","name":"BRUINO","lat":45.0212,"lng":7.4646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"053","name":"CANTALUPA","lat":44.947,"lng":7.3314,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"309","name":"VINOVO","lat":44.9482,"lng":7.6338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"232","name":"SALBERTRAND","lat":45.0732,"lng":6.8842,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"278","name":"TRAVERSELLA","lat":45.5096,"lng":7.7506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"226","name":"RORÀ","lat":44.7931,"lng":7.2002,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"090","name":"COLLEGNO","lat":45.0777,"lng":7.5704,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"034","name":"BRANDIZZO","lat":45.1783,"lng":7.8389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"173","name":"OSASCO","lat":44.8484,"lng":7.3438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"250","name":"SAN PIETRO VAL LEMINA","lat":44.9075,"lng":7.312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"166","name":"NOLE","lat":45.2424,"lng":7.5742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"260","name":"SCALENGHE","lat":44.8873,"lng":7.4968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"143","name":"MAGLIONE","lat":45.3477,"lng":8.0146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"245","name":"SAN GIORIO DI SUSA","lat":45.1292,"lng":7.1794,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"297","name":"VICO CANAVESE","lat":45.397,"lng":7.4668,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"002","name":"AIRASCA","lat":44.9181,"lng":7.4855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"237","name":"SAN CARLO CANAVESE","lat":45.2456,"lng":7.6069,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"035","name":"BRICHERASIO","lat":44.8245,"lng":7.3066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"196","name":"PIVERONE","lat":45.4474,"lng":8.0069,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"154","name":"MOMPANTERO","lat":45.1486,"lng":7.0419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"081","name":"CHIUSA DI SAN MICHELE","lat":45.1053,"lng":7.3283,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"279","name":"TRAVES","lat":45.2683,"lng":7.4308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"162","name":"MONTEU DA PO","lat":45.1516,"lng":8.0181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"096","name":"CUCEGLIO","lat":45.3604,"lng":7.8163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"052","name":"CANISCHIO","lat":45.3745,"lng":7.5958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"072","name":"CERES","lat":45.313,"lng":7.3889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"043","name":"BUSANO","lat":45.3331,"lng":7.6571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"074","name":"CESANA TORINESE","lat":44.9529,"lng":6.7937,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"234","name":"SALZA DI PINEROLO","lat":44.941,"lng":7.0536,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"028","name":"BORGARO TORINESE","lat":45.1517,"lng":7.6578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"134","name":"LOCANA","lat":45.4163,"lng":7.46,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"046","name":"CAFASSE","lat":45.2461,"lng":7.5184,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"124","name":"ISSIGLIO","lat":45.4463,"lng":7.7553,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"277","name":"TRAUSELLA","lat":45.4908,"lng":7.7632,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"005","name":"ALICE SUPERIORE","lat":45.4599,"lng":7.7774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"088","name":"COASSOLO TORINESE","lat":45.2988,"lng":7.4616,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"308","name":"VILLASTELLONE","lat":44.9218,"lng":7.7446,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"306","name":"VILLAR PELLICE","lat":44.8094,"lng":7.1533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"137","name":"LORANZÈ","lat":45.4427,"lng":7.8139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"117","name":"GRAVERE","lat":45.1267,"lng":7.019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"192","name":"PINO TORINESE","lat":45.0406,"lng":7.7783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"159","name":"MONTALENGHE","lat":45.3384,"lng":7.84,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"189","name":"PIANEZZA","lat":45.0986,"lng":7.5484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"050","name":"CANDIA CANAVESE","lat":45.3288,"lng":7.8863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"235","name":"SAMONE","lat":46.0813,"lng":11.5212,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"253","name":"SAN SEBASTIANO DA PO","lat":45.1683,"lng":7.9583,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"200","name":"PORTE","lat":44.8879,"lng":7.2703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"010","name":"ANDRATE","lat":45.5285,"lng":7.8814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"176","name":"OZEGNA","lat":45.35,"lng":7.7464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"019","name":"BALME","lat":45.3022,"lng":7.2181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"263","name":"SESTRIERE","lat":44.9569,"lng":6.8801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"148","name":"MAZZÈ","lat":45.3012,"lng":7.9339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"036","name":"BROSSO","lat":45.494,"lng":7.8039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"089","name":"COAZZE","lat":45.0556,"lng":7.3081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"181","name":"PAVONE CANAVESE","lat":45.4354,"lng":7.8529,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"244","name":"SAN GIORGIO CANAVESE","lat":45.3352,"lng":7.798,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"216","name":"RIVARA","lat":45.3334,"lng":7.6258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"047","name":"CALUSO","lat":45.3059,"lng":7.8969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"085","name":"CINZANO","lat":45.0953,"lng":7.9267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"258","name":"SAUZE DI CESANA","lat":44.9417,"lng":6.8602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"086","name":"CIRIÈ","lat":45.2336,"lng":7.6046,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"305","name":"VILLAR FOCCHIARDO","lat":45.1103,"lng":7.2328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"058","name":"CARIGNANO","lat":44.908,"lng":7.6744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"157","name":"MONCENISIO","lat":45.2033,"lng":6.9843,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"012","name":"ARIGNANO","lat":45.0438,"lng":7.9011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"281","name":"USSEAUX","lat":45.0486,"lng":7.0267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"094","name":"CORIO","lat":45.3149,"lng":7.5335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"016","name":"BALANGERO","lat":45.2714,"lng":7.5186,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"184","name":"PEROSA ARGENTINA","lat":44.9569,"lng":7.1919,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"177","name":"PALAZZO CANAVESE","lat":45.4586,"lng":7.9797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"155","name":"MONASTERO DI LANZO","lat":45.3016,"lng":7.4404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"131","name":"LEMIE","lat":45.2289,"lng":7.2942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"060","name":"CASALBORGONE","lat":45.1312,"lng":7.9414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"292","name":"VENARIA REALE","lat":45.1342,"lng":7.629,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"107","name":"FORNO CANAVESE","lat":45.3464,"lng":7.5922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"142","name":"MACELLO","lat":44.8522,"lng":7.3992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"102","name":"FELETTO","lat":45.3048,"lng":7.746,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"070","name":"CAVOUR","lat":44.7857,"lng":7.375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"206","name":"PRASCORSANO","lat":45.3688,"lng":7.6181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"063","name":"CASELLE TORINESE","lat":45.1774,"lng":7.6475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"091","name":"COLLERETTO CASTELNUOVO","lat":45.4235,"lng":7.6809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"242","name":"SAN GERMANO CHISONE","lat":44.9031,"lng":7.2378,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"008","name":"ALPIGNANO","lat":45.0943,"lng":7.5244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"108","name":"FRASSINETTO","lat":45.4378,"lng":7.6078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"293","name":"VEROLENGO","lat":45.1911,"lng":7.9694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"061","name":"CASCINETTE D'IVREA","lat":45.4813,"lng":7.9067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"269","name":"STRAMBINO","lat":45.3816,"lng":7.8848,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"044","name":"BUSSOLENO","lat":45.1414,"lng":7.1475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"218","name":"RIVAROSSA","lat":45.2527,"lng":7.7159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"045","name":"BUTTIGLIERA ALTA","lat":45.071,"lng":7.4295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"307","name":"VILLAR PEROSA","lat":44.9193,"lng":7.2481,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"188","name":"PESSINETTO","lat":45.2892,"lng":7.4039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"160","name":"MONTALTO DORA","lat":45.4917,"lng":7.8639,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"255","name":"SANT'AMBROGIO DI TORINO","lat":45.0978,"lng":7.3622,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"076","name":"CHIANOCCO","lat":45.1483,"lng":7.1687,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"264","name":"SETTIMO ROTTARO","lat":45.4092,"lng":7.9938,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"054","name":"CANTOIRA","lat":45.3395,"lng":7.387,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"275","name":"TORRE PELLICE","lat":44.8206,"lng":7.2237,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"238","name":"SAN COLOMBANO BELMONTE","lat":45.383,"lng":7.623,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"267","name":"SPARONE","lat":45.4148,"lng":7.5445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"049","name":"CAMPIGLIONE-FENILE","lat":44.8025,"lng":7.3235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"219","name":"RIVOLI","lat":45.0705,"lng":7.5192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"017","name":"BALDISSERO CANAVESE","lat":45.4112,"lng":7.7453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"270","name":"SUSA","lat":45.1385,"lng":7.0484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"125","name":"IVREA","lat":45.4666,"lng":7.8759,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"030","name":"BORGOFRANCO D'IVREA","lat":45.5139,"lng":7.8592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"101","name":"FAVRIA","lat":45.3322,"lng":7.6917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"141","name":"LUSIGLIÈ","lat":45.3196,"lng":7.7658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"133","name":"LEVONE","lat":45.3177,"lng":7.6075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"247","name":"SAN MARTINO CANAVESE","lat":45.3961,"lng":7.8178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"084","name":"CINTANO","lat":45.4285,"lng":7.6903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"132","name":"LESSOLO","lat":45.476,"lng":7.8137,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"296","name":"VIALFRÈ","lat":45.3812,"lng":7.8177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"119","name":"GROSSO","lat":45.2575,"lng":7.5584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"064","name":"CASTAGNETO PO","lat":45.1603,"lng":7.8906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"140","name":"LUSERNETTA","lat":44.8025,"lng":7.2487,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"212","name":"RIBORDONE","lat":45.4332,"lng":7.5026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"313","name":"VIÙ","lat":45.2389,"lng":7.3766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"097","name":"CUMIANA","lat":44.9808,"lng":7.3778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"221","name":"ROCCA CANAVESE","lat":45.3108,"lng":7.5774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"115","name":"GIAVENO","lat":45.0418,"lng":7.3525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"283","name":"VAIE","lat":45.1016,"lng":7.2898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"273","name":"TORRAZZA PIEMONTE","lat":45.2164,"lng":7.9778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"033","name":"BOSCONERO","lat":45.268,"lng":7.7641,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"147","name":"MATTIE","lat":45.1192,"lng":7.1163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"286","name":"VALLO TORINESE","lat":45.2245,"lng":7.4975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"304","name":"VILLAREGGIA","lat":45.3111,"lng":7.9778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"298","name":"VIDRACCO","lat":45.4317,"lng":7.7586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"294","name":"VERRUA SAVOIA","lat":45.1578,"lng":8.0935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"112","name":"GASSINO TORINESE","lat":45.1298,"lng":7.8243,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"025","name":"BIBIANA","lat":44.8,"lng":7.2894,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"055","name":"CAPRIE","lat":45.1198,"lng":7.3331,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"175","name":"OULX","lat":45.0333,"lng":6.8336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"098","name":"CUORGNÈ","lat":45.3907,"lng":7.6496,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"092","name":"COLLERETTO GIACOSA","lat":45.4339,"lng":7.7997,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"169","name":"NOVALESA","lat":45.1912,"lng":7.0148,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"083","name":"CICONIO","lat":45.3312,"lng":7.7597,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"168","name":"NONE","lat":44.9342,"lng":7.5413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"114","name":"GIAGLIONE","lat":45.1362,"lng":7.0087,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"268","name":"STRAMBINELLO","lat":45.424,"lng":7.7721,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"186","name":"PERRERO","lat":44.9383,"lng":7.1148,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"272","name":"TORINO","lat":45.05,"lng":7.6667,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"001","codice_comu_istat":"204","name":"PRAMOLLO","lat":44.904,"lng":7.2146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"287","name":"VALPERGA","lat":45.3701,"lng":7.6579,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"026","name":"BOBBIO PELLICE","lat":44.8078,"lng":7.1178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"103","name":"FENESTRELLE","lat":45.0345,"lng":7.0522,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"291","name":"VENAUS","lat":45.1596,"lng":7.0092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"220","name":"ROBASSOMERO","lat":45.2007,"lng":7.5686,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"031","name":"BORGOMASINO","lat":45.3642,"lng":7.9888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"172","name":"ORIO CANAVESE","lat":45.3303,"lng":7.8628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"312","name":"VISTRORIO","lat":45.443,"lng":7.7685,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"205","name":"PRAROSTINO","lat":44.8666,"lng":7.2684,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"163","name":"MORIONDO TORINESE","lat":45.0388,"lng":7.9413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"126","name":"LA CASSA","lat":45.1814,"lng":7.5175,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"120","name":"GRUGLIASCO","lat":45.0623,"lng":7.5783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"276","name":"TRANA","lat":45.04,"lng":7.423,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"224","name":"RONCO CANAVESE","lat":45.4997,"lng":7.5473,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"136","name":"LOMBRIASCO","lat":44.8422,"lng":7.6367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"077","name":"CHIAVERANO","lat":45.4986,"lng":7.9048,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"130","name":"LEINI","lat":45.1838,"lng":7.7153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"217","name":"RIVAROLO CANAVESE","lat":45.332,"lng":7.7232,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"022","name":"BARDONECCHIA","lat":45.0788,"lng":6.7043,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"259","name":"SAUZE D'OULX","lat":45.0275,"lng":6.8596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"152","name":"MEZZENILE","lat":45.296,"lng":7.3967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"240","name":"SAN FRANCESCO AL CAMPO","lat":45.2295,"lng":7.6533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"015","name":"BAIRO","lat":45.387,"lng":7.7564,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"208","name":"QUAGLIUZZO","lat":45.4278,"lng":7.7834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"180","name":"PAVAROLO","lat":45.0695,"lng":7.8362,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"067","name":"CASTELNUOVO NIGRA","lat":45.4392,"lng":7.6958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"011","name":"ANGROGNA","lat":44.8438,"lng":7.2246,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"040","name":"BRUZOLO","lat":45.1434,"lng":7.1938,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"165","name":"NOASCA","lat":45.4547,"lng":7.3134,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"246","name":"SAN GIUSTO CANAVESE","lat":45.3163,"lng":7.8103,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"285","name":"VALGIOIE","lat":45.0761,"lng":7.3407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"032","name":"BORGONE SUSA","lat":45.1212,"lng":7.2398,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"122","name":"INVERSO PINASCA","lat":44.945,"lng":7.2181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"195","name":"PISCINA","lat":44.913,"lng":7.3647,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"087","name":"CLAVIERE","lat":44.9388,"lng":6.7503,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"080","name":"CHIOMONTE","lat":45.1192,"lng":6.9815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"207","name":"PRATIGLIONE","lat":45.3536,"lng":7.5962,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"001","name":"AGLIÈ","lat":45.3681,"lng":7.7681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"194","name":"PIOSSASCO","lat":44.9911,"lng":7.4635,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"266","name":"SETTIMO VITTONE","lat":45.5508,"lng":7.8335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"138","name":"LUGNACCO","lat":45.4445,"lng":7.7818,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"303","name":"VILLAR DORA","lat":45.1156,"lng":7.3847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"123","name":"ISOLABELLA","lat":44.9075,"lng":7.9102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"068","name":"CASTIGLIONE TORINESE","lat":45.1202,"lng":7.8155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"039","name":"BRUSASCO","lat":45.1558,"lng":8.0595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"233","name":"SALERANO CANAVESE","lat":45.4588,"lng":7.8512,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"104","name":"FIANO","lat":45.2178,"lng":7.5239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"093","name":"CONDOVE","lat":45.1185,"lng":7.3088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"041","name":"BURIASCO","lat":44.8747,"lng":7.4114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"170","name":"OGLIANICO","lat":45.3434,"lng":7.6958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"127","name":"LA LOGGIA","lat":44.9588,"lng":7.6684,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"185","name":"PEROSA CANAVESE","lat":45.3981,"lng":7.8321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"071","name":"CERCENASCO","lat":44.8606,"lng":7.5049,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"301","name":"VILLANOVA CANAVESE","lat":45.2445,"lng":7.5533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"222","name":"ROLETTO","lat":44.9251,"lng":7.3309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"209","name":"QUASSOLO","lat":45.5239,"lng":7.8334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"284","name":"VAL DELLA TORRE","lat":45.1563,"lng":7.4463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"213","name":"RIVALBA","lat":45.1194,"lng":7.8892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"290","name":"VAUDA CANAVESE","lat":45.2792,"lng":7.6164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"116","name":"GIVOLETTO","lat":45.1608,"lng":7.495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"007","name":"ALPETTE","lat":45.4106,"lng":7.5808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"153","name":"MOMBELLO DI TORINO","lat":45.0464,"lng":7.9212,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"191","name":"PINEROLO","lat":44.8846,"lng":7.3309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"059","name":"CARMAGNOLA","lat":44.8455,"lng":7.7192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"062","name":"CASELETTE","lat":45.1058,"lng":7.4821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"314","name":"VOLPIANO","lat":45.2015,"lng":7.7773,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"243","name":"SAN GILLIO","lat":45.1438,"lng":7.5371,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"182","name":"PECCO","lat":45.4518,"lng":7.7772,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"100","name":"EXILLES","lat":45.0986,"lng":6.9303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"280","name":"TROFARELLO","lat":44.9847,"lng":7.7464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"210","name":"QUINCINETTO","lat":45.5622,"lng":7.8075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"254","name":"SAN SECONDO DI PINEROLO","lat":44.8675,"lng":7.2995,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"065","name":"CASTAGNOLE PIEMONTE","lat":44.8992,"lng":7.5674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"256","name":"SANT'ANTONINO DI SUSA","lat":45.1081,"lng":7.2749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"150","name":"MERCENASCO","lat":45.3575,"lng":7.8813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"289","name":"VARISELLA","lat":45.2096,"lng":7.4861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"302","name":"VILLARBASSE","lat":45.0463,"lng":7.4695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"004","name":"ALBIANO D'IVREA","lat":45.4339,"lng":7.9517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"109","name":"FRONT","lat":45.2819,"lng":7.6641,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"183","name":"PECETTO TORINESE","lat":45.0172,"lng":7.7504,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"128","name":"LANZO TORINESE","lat":45.2741,"lng":7.4812,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"164","name":"NICHELINO","lat":44.9951,"lng":7.6471,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"174","name":"OSASIO","lat":44.8725,"lng":7.6092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"135","name":"LOMBARDORE","lat":45.2364,"lng":7.7414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"106","name":"FOGLIZZO","lat":45.273,"lng":7.8209,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"121","name":"INGRIA","lat":45.4663,"lng":7.5712,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"262","name":"SCIOLZE","lat":45.0942,"lng":7.8816,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"021","name":"BARBANIA","lat":45.2924,"lng":7.6314,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"203","name":"PRALORMO","lat":44.8608,"lng":7.9025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"178","name":"PANCALIERI","lat":44.8346,"lng":7.587,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"300","name":"VILLAFRANCA PIEMONTE","lat":44.78,"lng":7.5016,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"261","name":"SCARMAGNO","lat":45.3855,"lng":7.8424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"171","name":"ORBASSANO","lat":45.0074,"lng":7.5374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"201","name":"PRAGELATO","lat":45.0155,"lng":6.942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"105","name":"FIORANO CANAVESE","lat":45.4688,"lng":7.8349,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"020","name":"BANCHETTE","lat":45.4545,"lng":7.8575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"027","name":"BOLLENGO","lat":45.4703,"lng":7.9466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"099","name":"DRUENTO","lat":45.1343,"lng":7.5765,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"310","name":"VIRLE PIEMONTE","lat":44.8656,"lng":7.5713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"230","name":"RUEGLIO","lat":45.468,"lng":7.7561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"190","name":"PINASCA","lat":44.9424,"lng":7.2275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"229","name":"RUBIANA","lat":45.1388,"lng":7.3827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"311","name":"VISCHE","lat":45.3352,"lng":7.9459,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"257","name":"SANTENA","lat":44.949,"lng":7.7728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"113","name":"GERMAGNANO","lat":45.2648,"lng":7.4706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"236","name":"SAN BENIGNO CANAVESE","lat":45.2281,"lng":7.7863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"249","name":"SAN MAURO TORINESE","lat":45.1019,"lng":7.7656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"095","name":"COSSANO CANAVESE","lat":45.3888,"lng":7.9927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"199","name":"PONT-CANAVESE","lat":45.4239,"lng":7.5974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"013","name":"AVIGLIANA","lat":45.0793,"lng":7.3967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"082","name":"CHIVASSO","lat":45.1899,"lng":7.8843,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"248","name":"SAN MAURIZIO CANAVESE","lat":45.2181,"lng":7.6317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"066","name":"CASTELLAMONTE","lat":45.383,"lng":7.7133,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"144","name":"MARENTINO","lat":45.0563,"lng":7.8781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"073","name":"CERESOLE REALE","lat":45.4325,"lng":7.2361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"214","name":"RIVALTA DI TORINO","lat":45.033,"lng":7.5232,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"139","name":"LUSERNA SAN GIOVANNI","lat":44.8085,"lng":7.2454,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"118","name":"GROSCAVALLO","lat":45.3684,"lng":7.2591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"023","name":"BARONE CANAVESE","lat":45.3267,"lng":7.8745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"129","name":"LAURIANO","lat":45.1592,"lng":7.9928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"241","name":"SANGANO","lat":45.027,"lng":7.4505,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"003","name":"ALA DI STURA","lat":45.3154,"lng":7.3026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"024","name":"BEINASCO","lat":45.0228,"lng":7.5878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"282","name":"USSEGLIO","lat":45.2328,"lng":7.2172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"202","name":"PRALI","lat":44.8891,"lng":7.0489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"231","name":"SALASSA","lat":45.3567,"lng":7.6903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"048","name":"CAMBIANO","lat":44.9694,"lng":7.7731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"197","name":"POIRINO","lat":44.9219,"lng":7.8481,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"079","name":"CHIESANUOVA","lat":38.018,"lng":12.6594,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"146","name":"MATHI","lat":45.2563,"lng":7.5431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"167","name":"NOMAGLIO","lat":45.536,"lng":7.8603,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"299","name":"VIGONE","lat":44.8455,"lng":7.4961,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"145","name":"MASSELLO","lat":44.9586,"lng":7.0566,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"006","name":"ALMESE","lat":45.1169,"lng":7.3954,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"193","name":"PIOBESI TORINESE","lat":44.9339,"lng":7.6113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"051","name":"CANDIOLO","lat":44.9603,"lng":7.6028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"158","name":"MONTALDO TORINESE","lat":45.0664,"lng":7.8514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"225","name":"RONDISSONE","lat":45.2478,"lng":7.9642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"288","name":"VALPRATO SOANA","lat":45.5222,"lng":7.5502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"187","name":"PERTUSIO","lat":45.3567,"lng":7.6427,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"274","name":"TORRE CANAVESE","lat":45.3931,"lng":7.7609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"252","name":"SAN RAFFAELE CIMENA","lat":45.1688,"lng":7.859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"239","name":"SAN DIDERO","lat":45.1354,"lng":7.2147,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"042","name":"BUROLO","lat":45.4822,"lng":7.935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"075","name":"CHIALAMBERTO","lat":45.3641,"lng":7.3406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"037","name":"BROZOLO","lat":45.1177,"lng":8.0725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"149","name":"MEANA DI SUSA","lat":45.1231,"lng":7.0629,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"228","name":"ROSTA","lat":45.0689,"lng":7.4663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"014","name":"AZEGLIO","lat":45.4246,"lng":7.995,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"271","name":"TAVAGNASCO","lat":45.546,"lng":7.8239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"223","name":"ROMANO CANAVESE","lat":45.3902,"lng":7.8655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"215","name":"RIVA PRESSO CHIERI","lat":44.9859,"lng":7.8734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"251","name":"SAN PONSO","lat":45.3508,"lng":7.6709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"110","name":"FROSSASCO","lat":44.9341,"lng":7.3513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"009","name":"ANDEZENO","lat":45.0373,"lng":7.8731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"151","name":"MEUGLIANO","lat":45.4904,"lng":7.7795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"161","name":"MONTANARO","lat":45.2345,"lng":7.8546,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"056","name":"CARAVINO","lat":45.3992,"lng":7.9614,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"111","name":"GARZIGLIANA","lat":44.8371,"lng":7.3741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"198","name":"POMARETTO","lat":44.956,"lng":7.1829,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"069","name":"CAVAGNOLO","lat":45.1529,"lng":8.0501,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"227","name":"ROURE","lat":45.0022,"lng":7.1284,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"001","codice_comu_istat":"057","name":"CAREMA","lat":45.5845,"lng":7.8119,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"072","name":"LOZZOLO","lat":45.6265,"lng":8.324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"152","name":"VALDUGGIA","lat":45.7294,"lng":8.3311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"067","name":"LAMPORO","lat":45.2306,"lng":8.0974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"030","name":"CARESANA","lat":45.2219,"lng":8.5064,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"116","name":"ROASIO","lat":45.6058,"lng":8.2871,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"014","name":"BOCCIOLETO","lat":45.8302,"lng":8.113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"042","name":"CIGLIANO","lat":45.3094,"lng":8.0222,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"126","name":"SALASCO","lat":45.3259,"lng":8.2652,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"002","name":"ALAGNA VALSESIA","lat":45.8542,"lng":7.9374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"062","name":"GHISLARENGO","lat":45.53,"lng":8.3863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"031","name":"CARESANABLOT","lat":45.3585,"lng":8.3931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"003","name":"ALBANO VERCELLESE","lat":45.4272,"lng":8.3807,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"059","name":"FORMIGLIANA","lat":45.4294,"lng":8.2928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"102","name":"POSTUA","lat":45.7139,"lng":8.2317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"066","name":"GUARDABOSONE","lat":45.702,"lng":8.2493,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"006","name":"ARBORIO","lat":45.4959,"lng":8.3864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"054","name":"DESANA","lat":45.2706,"lng":8.361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"142","name":"STROPPIANA","lat":45.2312,"lng":8.455,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"104","name":"PRAROLO","lat":45.281,"lng":8.4777,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"035","name":"SAN GIACOMO VERCELLESE","lat":45.4992,"lng":8.3278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"057","name":"FOBELLO","lat":45.8902,"lng":8.1578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"134","name":"SCOPA","lat":45.7939,"lng":8.1152,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"071","name":"LIVORNO FERRARIS","lat":45.285,"lng":8.0786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"048","name":"CRAVAGLIANA","lat":45.8485,"lng":8.203,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"133","name":"SANTHIÀ","lat":45.3674,"lng":8.1738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"111","name":"RIMA SAN GIUSEPPE","lat":45.8847,"lng":7.9989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"090","name":"PALAZZOLO VERCELLESE","lat":45.1856,"lng":8.2308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"045","name":"COLLOBIANO","lat":45.397,"lng":8.3493,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"043","name":"CIVIASCO","lat":45.8069,"lng":8.2932,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"148","name":"TRINO","lat":45.1931,"lng":8.2974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"021","name":"BURONZO","lat":45.4819,"lng":8.2683,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"061","name":"GATTINARA","lat":45.6189,"lng":8.3686,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"049","name":"CRESCENTINO","lat":45.1914,"lng":8.1011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"131","name":"SAN GERMANO VERCELLESE","lat":45.3514,"lng":8.2489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"147","name":"TRICERRO","lat":45.2367,"lng":8.3264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"127","name":"SALI VERCELLESE","lat":45.311,"lng":8.33,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"017","name":"BORGO VERCELLI","lat":45.3589,"lng":8.4642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"078","name":"MOLLIA","lat":45.8151,"lng":8.0308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"089","name":"OLDENICO","lat":45.4038,"lng":8.3822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"115","name":"RIVE","lat":45.2152,"lng":8.4188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"158","name":"VERCELLI","lat":45.321,"lng":8.4263,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"107","name":"QUARONA","lat":45.7589,"lng":8.2669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"047","name":"COSTANZANA","lat":45.2372,"lng":8.3711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"164","name":"VILLATA","lat":45.3888,"lng":8.4338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"015","name":"BORGO D'ALE","lat":45.3527,"lng":8.0519,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"058","name":"FONTANETTO PO","lat":45.1942,"lng":8.1927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"118","name":"RONSECCO","lat":45.2531,"lng":8.2781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"004","name":"ALICE CASTELLO","lat":45.3663,"lng":8.0741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"079","name":"MONCRIVELLO","lat":45.3335,"lng":7.9967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"032","name":"CARISIO","lat":45.4103,"lng":8.2002,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"033","name":"CASANOVA ELVO","lat":45.402,"lng":8.2947,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"121","name":"ROSSA","lat":45.833,"lng":8.1206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"112","name":"RIMASCO","lat":45.86,"lng":8.0639,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"113","name":"RIMELLA","lat":45.9091,"lng":8.1835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"096","name":"PILA","lat":45.7705,"lng":8.0833,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"038","name":"CELLIO","lat":45.7571,"lng":8.3117,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"110","name":"RASSA","lat":45.7684,"lng":8.012,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"135","name":"SCOPELLO","lat":45.7736,"lng":8.096,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"007","name":"ASIGLIANO VERCELLESE","lat":45.2625,"lng":8.4097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"108","name":"QUINTO VERCELLESE","lat":45.3806,"lng":8.3628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"128","name":"SALUGGIA","lat":45.2386,"lng":8.0122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"114","name":"RIVA VALDOBBIA","lat":45.832,"lng":7.9578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"166","name":"VOCCA","lat":45.8328,"lng":8.1958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"163","name":"VILLARBOIT","lat":45.4385,"lng":8.3384,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"156","name":"VARALLO","lat":45.8138,"lng":8.2535,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"065","name":"GREGGIO","lat":45.4517,"lng":8.3842,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"009","name":"BALOCCO","lat":45.4562,"lng":8.2813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"019","name":"BREIA","lat":45.7667,"lng":8.3108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"025","name":"CAMPERTOGNO","lat":45.7999,"lng":8.0333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"123","name":"SABBIA","lat":45.857,"lng":8.2361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"082","name":"MOTTA DE' CONTI","lat":45.1945,"lng":8.522,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"122","name":"ROVASENDA","lat":45.5399,"lng":8.3188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"052","name":"CROVA","lat":45.3317,"lng":8.2121,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"070","name":"LIGNANA","lat":45.287,"lng":8.345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"137","name":"SERRAVALLE SESIA","lat":45.6875,"lng":8.3094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"097","name":"PIODE","lat":45.772,"lng":8.0517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"150","name":"TRONZANO VERCELLESE","lat":45.3424,"lng":8.1742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"011","name":"BIANZÈ","lat":45.3096,"lng":8.1238,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"008","name":"BALMUCCIA","lat":45.8189,"lng":8.1427,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"091","name":"PERTENGO","lat":45.236,"lng":8.4176,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"016","name":"BORGOSESIA","lat":45.7153,"lng":8.2772,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"068","name":"LENTA","lat":45.556,"lng":8.3836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"041","name":"CERVATTO","lat":45.8829,"lng":8.1633,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"029","name":"CARCOFORO","lat":45.9096,"lng":8.0457,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"088","name":"OLCENENGO","lat":45.3646,"lng":8.3109,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"002","codice_comu_istat":"093","name":"PEZZANA","lat":45.2631,"lng":8.4863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"083","name":"LANDIONA","lat":45.4975,"lng":8.4234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"071","name":"GATTICO","lat":45.7081,"lng":8.5213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"079","name":"GRIGNASCO","lat":45.6808,"lng":8.3442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"146","name":"TORNACO","lat":45.3586,"lng":8.717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"130","name":"ROMAGNANO SESIA","lat":45.632,"lng":8.3899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"065","name":"FARA NOVARESE","lat":45.5528,"lng":8.4599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"039","name":"CASALEGGIO NOVARA","lat":45.4899,"lng":8.4931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"070","name":"GARGALLO","lat":45.7299,"lng":8.4264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"134","name":"SAN NAZZARO SESIA","lat":45.4389,"lng":8.4255,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"051","name":"COLAZZA","lat":45.7936,"lng":8.5014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"040","name":"CASALINO","lat":45.3594,"lng":8.525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"116","name":"PETTENASCO","lat":45.8175,"lng":8.4081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"122","name":"PRATO SESIA","lat":45.6474,"lng":8.3738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"082","name":"INVORIO","lat":45.7579,"lng":8.4895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"129","name":"RECETTO","lat":45.4614,"lng":8.4369,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"098","name":"MIASINO","lat":45.803,"lng":8.431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"154","name":"VARALLO POMBIA","lat":45.6678,"lng":8.63,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"049","name":"CERANO","lat":45.412,"lng":8.7813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"112","name":"ORTA SAN GIULIO","lat":45.7989,"lng":8.4199,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"121","name":"POMBIA","lat":45.652,"lng":8.6335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"084","name":"LESA","lat":45.8241,"lng":8.5609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"041","name":"CASALVOLONE","lat":45.4017,"lng":8.4645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"153","name":"VAPRIO D'AGOGNA","lat":45.6047,"lng":8.5547,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"036","name":"CARPIGNANO SESIA","lat":45.5353,"lng":8.4195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"045","name":"CAVAGLIO D'AGOGNA","lat":45.6142,"lng":8.4874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"149","name":"TRECATE","lat":45.4327,"lng":8.7382,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"032","name":"CAMERI","lat":45.5042,"lng":8.6639,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"157","name":"VERUNO","lat":45.6898,"lng":8.5299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"024","name":"BORGOMANERO","lat":45.6987,"lng":8.4626,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"097","name":"MEZZOMERICO","lat":45.6197,"lng":8.6067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"037","name":"CASALBELTRAME","lat":45.4388,"lng":8.4663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"042","name":"CASTELLAZZO NOVARESE","lat":45.5144,"lng":8.4881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"143","name":"SUNO","lat":45.6344,"lng":8.5439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"021","name":"BOGOGNO","lat":45.6644,"lng":8.5357,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"006","name":"ARMENO","lat":45.8225,"lng":8.44,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"091","name":"MARANO TICINO","lat":45.631,"lng":8.6328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"104","name":"NIBBIOLA","lat":45.3727,"lng":8.6575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"114","name":"PARUZZARO","lat":45.7497,"lng":8.5177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"093","name":"MASSINO VISCONTI","lat":45.8222,"lng":8.54,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"141","name":"SOZZAGO","lat":45.3995,"lng":8.7209,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"008","name":"ARONA","lat":45.757,"lng":8.56,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"043","name":"CASTELLETTO SOPRA TICINO","lat":45.7187,"lng":8.6368,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"139","name":"SIZZANO","lat":45.5779,"lng":8.4379,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"012","name":"BARENGO","lat":45.577,"lng":8.5152,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"044","name":"CAVAGLIETTO","lat":45.6031,"lng":8.5033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"076","name":"GOZZANO","lat":45.7475,"lng":8.4378,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"062","name":"DORMELLETTO","lat":45.7272,"lng":8.5803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"047","name":"CAVALLIRIO","lat":45.6644,"lng":8.3956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"119","name":"PISANO","lat":45.7936,"lng":8.5115,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"103","name":"NEBBIUNO","lat":45.8044,"lng":8.5234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"100","name":"MOMO","lat":45.5766,"lng":8.5545,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"120","name":"POGNO","lat":45.7566,"lng":8.3858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"068","name":"GALLIATE","lat":45.4781,"lng":8.696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"055","name":"CRESSA","lat":45.6492,"lng":8.5102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"016","name":"BELLINZAGO NOVARESE","lat":45.5699,"lng":8.6444,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"138","name":"SILLAVENGO","lat":45.5217,"lng":8.4422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"018","name":"BIANDRATE","lat":45.4538,"lng":8.4636,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"022","name":"BOLZANO NOVARESE","lat":45.765,"lng":8.4461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"002","name":"AMENO","lat":45.7897,"lng":8.442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"158","name":"VESPOLATE","lat":45.3514,"lng":8.6689,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"108","name":"OLEGGIO","lat":45.5967,"lng":8.6376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"095","name":"MEINA","lat":45.7899,"lng":8.54,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"019","name":"BOCA","lat":45.6796,"lng":8.4093,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"069","name":"GARBAGNA NOVARESE","lat":45.3851,"lng":8.6608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"115","name":"PELLA","lat":45.8001,"lng":8.3859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"144","name":"TERDOBBIATE","lat":45.3775,"lng":8.6964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"159","name":"VICOLUNGO","lat":45.4786,"lng":8.4639,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"058","name":"CUREGGIO","lat":45.676,"lng":8.461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"131","name":"ROMENTINO","lat":45.465,"lng":8.7202,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"023","name":"BORGOLAVEZZARO","lat":45.3206,"lng":8.7006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"026","name":"BRIGA NOVARESE","lat":45.7333,"lng":8.4509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"025","name":"BORGO TICINO","lat":45.6903,"lng":8.603,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"001","name":"AGRATE CONTURBIA","lat":45.6774,"lng":8.5584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"077","name":"GRANOZZO CON MONTICELLO","lat":45.3613,"lng":8.5746,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"066","name":"FONTANETO D'AGOGNA","lat":45.6583,"lng":8.4803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"060","name":"DIVIGNANO","lat":45.6635,"lng":8.6028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"135","name":"SAN PIETRO MOSEZZO","lat":45.4659,"lng":8.5242,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"090","name":"MANDELLO VITTA","lat":45.4967,"lng":8.4609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"052","name":"COMIGNAGO","lat":45.716,"lng":8.5652,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"109","name":"OLEGGIO CASTELLO","lat":45.7485,"lng":8.5269,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"164","name":"VINZAGLIO","lat":45.3239,"lng":8.5203,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"027","name":"BRIONA","lat":45.5434,"lng":8.481,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"106","name":"NOVARA","lat":45.4451,"lng":8.6187,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"073","name":"GHEMME","lat":45.6006,"lng":8.4227,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"088","name":"MAGGIORA","lat":45.6903,"lng":8.4234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"133","name":"SAN MAURIZIO D'OPAGLIO","lat":45.7722,"lng":8.3988,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"140","name":"SORISO","lat":45.7414,"lng":8.4106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"003","codice_comu_istat":"030","name":"CALTIGNAGA","lat":45.5199,"lng":8.5899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"016","name":"BEINETTE","lat":44.366,"lng":7.6478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"087","name":"FAULE","lat":44.807,"lng":7.5823,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"224","name":"STROPPO","lat":44.5058,"lng":7.1267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"018","name":"BELVEDERE LANGHE","lat":44.4946,"lng":7.9721,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"198","name":"RUFFIA","lat":44.7077,"lng":7.6052,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"165","name":"PIANFEI","lat":44.3731,"lng":7.7125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"188","name":"ROCCA CIGLIÈ","lat":44.4467,"lng":7.9508,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"250","name":"VOTTIGNASCO","lat":44.5652,"lng":7.5803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"092","name":"FRASSINO","lat":44.5727,"lng":7.2772,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"100","name":"GRINZANE CAVOUR","lat":44.6566,"lng":7.9817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"155","name":"ORMEA","lat":44.1485,"lng":7.9136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"088","name":"FEISOGLIO","lat":44.5449,"lng":8.1061,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"138","name":"MONTEMALE DI CUNEO","lat":44.4373,"lng":7.3749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"156","name":"OSTANA","lat":44.6931,"lng":7.1868,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"104","name":"LAGNASCO","lat":44.6261,"lng":7.5559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"141","name":"MONTEZEMOLO","lat":44.3781,"lng":8.1414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"212","name":"SANTA VITTORIA D'ALBA","lat":44.6997,"lng":7.9384,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"110","name":"LIMONE PIEMONTE","lat":44.2014,"lng":7.5762,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"192","name":"ROCCAVIONE","lat":44.3156,"lng":7.4836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"019","name":"BENE VAGIENNA","lat":44.5444,"lng":7.8296,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"225","name":"TARANTASCA","lat":44.4945,"lng":7.5447,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"235","name":"VALLORIATE","lat":44.338,"lng":7.3721,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"133","name":"MONTÀ","lat":44.8147,"lng":7.9585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"052","name":"CASTELLINO TANARO","lat":44.4281,"lng":7.9813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"196","name":"RODELLO","lat":44.6295,"lng":8.058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"015","name":"BATTIFOLLO","lat":44.3215,"lng":8.0071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"114","name":"MAGLIANO ALPI","lat":44.4606,"lng":7.8064,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"082","name":"DRONERO","lat":44.4667,"lng":7.3525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"243","name":"VIGNOLO","lat":44.3633,"lng":7.4739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"117","name":"MARENE","lat":44.6627,"lng":7.7335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"236","name":"VALMALA","lat":44.5441,"lng":7.3464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"242","name":"VICOFORTE","lat":44.3629,"lng":7.8636,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"246","name":"VILLANOVA SOLARO","lat":44.7309,"lng":7.5756,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"136","name":"MONTANERA","lat":44.4633,"lng":7.6667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"129","name":"MONCHIERO","lat":44.5729,"lng":7.9171,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"191","name":"ROCCASPARVERA","lat":44.3414,"lng":7.4414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"105","name":"LA MORRA","lat":44.6396,"lng":7.9338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"213","name":"SANTO STEFANO BELBO","lat":44.7085,"lng":8.2302,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"195","name":"RODDINO","lat":44.5739,"lng":8.0191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"182","name":"RITTANA","lat":44.3512,"lng":7.3985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"081","name":"DOGLIANI","lat":44.5306,"lng":7.9459,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"023","name":"BONVICINO","lat":44.5047,"lng":8.0171,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"102","name":"IGLIANO","lat":44.4438,"lng":8.0137,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"222","name":"SOMMARIVA DEL BOSCO","lat":44.7699,"lng":7.7864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"215","name":"SAVIGLIANO","lat":44.648,"lng":7.6584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"123","name":"MOIOLA","lat":44.3225,"lng":7.3902,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"050","name":"CASTELLETTO UZZONE","lat":44.499,"lng":8.1879,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"054","name":"CASTELNUOVO DI CEVA","lat":44.3541,"lng":8.1293,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"063","name":"CERRETTO LANGHE","lat":44.5755,"lng":8.0986,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"017","name":"BELLINO","lat":44.5805,"lng":7.0172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"059","name":"CAVALLERMAGGIORE","lat":44.711,"lng":7.6875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"020","name":"BENEVELLO","lat":44.631,"lng":8.1053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"073","name":"CORTEMILIA","lat":44.5798,"lng":8.1913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"170","name":"POCAPAGLIA","lat":44.7162,"lng":7.8841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"218","name":"SERRALUNGA D'ALBA","lat":44.6111,"lng":8.0006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"230","name":"TREISO","lat":44.6894,"lng":8.0869,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"068","name":"CHIUSA DI PESIO","lat":44.3235,"lng":7.677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"229","name":"TORRESINA","lat":44.4347,"lng":8.0378,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"158","name":"PAGNO","lat":44.6128,"lng":7.4269,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"010","name":"BALDISSERO D'ALBA","lat":44.7639,"lng":7.9086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"072","name":"CORNELIANO D'ALBA","lat":44.7372,"lng":7.9585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"247","name":"VILLAR SAN COSTANZO","lat":44.4841,"lng":7.3811,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"006","name":"ARGENTERA","lat":44.8898,"lng":6.9341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"089","name":"FOSSANO","lat":44.55,"lng":7.7238,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"181","name":"RIFREDDO","lat":40.5738,"lng":15.8267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"107","name":"LEQUIO TANARO","lat":44.5601,"lng":7.8847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"126","name":"MONASTERO DI VASCO","lat":44.3408,"lng":7.8228,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"157","name":"PAESANA","lat":44.6863,"lng":7.2759,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"249","name":"VIOLA","lat":44.2912,"lng":7.9652,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"109","name":"LEVICE","lat":44.5388,"lng":8.1562,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"008","name":"BAGNASCO","lat":44.3073,"lng":8.0463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"139","name":"MONTEROSSO GRANA","lat":44.4092,"lng":7.3241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"204","name":"SAMBUCO","lat":44.3371,"lng":7.079,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"233","name":"VALDIERI","lat":44.2788,"lng":7.3988,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"065","name":"CERVERE","lat":44.6364,"lng":7.7931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"173","name":"PRADLEVES","lat":44.4188,"lng":7.2814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"159","name":"PAMPARATO","lat":44.2777,"lng":7.9136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"178","name":"PRUNETTO","lat":44.4912,"lng":8.1449,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"216","name":"SCAGNELLO","lat":44.3342,"lng":7.9847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"118","name":"MARGARITA","lat":44.4046,"lng":7.6861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"044","name":"CARTIGNANO","lat":44.4789,"lng":7.2861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"069","name":"CIGLIÈ","lat":44.4375,"lng":7.9277,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"103","name":"ISASCA","lat":44.5874,"lng":7.3809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"091","name":"FRABOSA SOTTANA","lat":44.3019,"lng":7.7979,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"030","name":"BRIAGLIA","lat":44.3951,"lng":7.8769,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"034","name":"BUSCA","lat":45.1347,"lng":9.2169,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"239","name":"VERNANTE","lat":44.245,"lng":7.5345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"053","name":"CASTELMAGNO","lat":44.4088,"lng":7.2122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"033","name":"BROSSASCO","lat":44.5697,"lng":7.3628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"021","name":"BERGOLO","lat":44.5488,"lng":8.1843,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"231","name":"TREZZO TINELLA","lat":44.6779,"lng":8.1076,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"143","name":"MORETTA","lat":44.7648,"lng":7.5383,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"214","name":"SANTO STEFANO ROERO","lat":44.7891,"lng":7.9408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"106","name":"LEQUIO BERRIA","lat":44.6075,"lng":8.0981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"122","name":"MELLE","lat":44.5627,"lng":7.3214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"012","name":"BARGE","lat":44.7253,"lng":7.3242,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"049","name":"CASTELLETTO STURA","lat":44.4448,"lng":7.6403,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"197","name":"ROSSANA","lat":44.5441,"lng":7.4324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"245","name":"VILLANOVA MONDOVÌ","lat":44.348,"lng":7.7675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"203","name":"SALUZZO","lat":44.6446,"lng":7.4926,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"167","name":"PIETRAPORZIO","lat":44.3445,"lng":7.0318,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"151","name":"NIELLA TANARO","lat":44.4138,"lng":7.9235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"011","name":"BARBARESCO","lat":44.725,"lng":8.0809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"028","name":"BOVES","lat":44.3292,"lng":7.5518,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"244","name":"VILLAFALLETTO","lat":44.5449,"lng":7.5413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"048","name":"CASTELLAR","lat":44.6217,"lng":7.4373,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"039","name":"CAPRAUNA","lat":44.117,"lng":7.9559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"124","name":"MOMBARCARO","lat":44.4682,"lng":8.0867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"228","name":"TORRE SAN GIORGIO","lat":44.7367,"lng":7.5292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"026","name":"BOSIA","lat":44.6025,"lng":8.1479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"093","name":"GAIOLA","lat":44.3362,"lng":7.4081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"148","name":"NEIVE","lat":44.7264,"lng":8.1158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"112","name":"MACRA","lat":44.5013,"lng":7.1806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"169","name":"PIOZZO","lat":44.5148,"lng":7.8938,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"130","name":"MONDOVÌ","lat":44.3896,"lng":7.8206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"009","name":"BAGNOLO PIEMONTE","lat":44.7616,"lng":7.315,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"176","name":"PRIOCCA","lat":44.7874,"lng":8.0653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"058","name":"CAVALLERLEONE","lat":44.7413,"lng":7.665,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"077","name":"CRISSOLO","lat":44.6986,"lng":7.1587,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"085","name":"ENVIE","lat":44.6833,"lng":7.3724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"064","name":"CERVASCA","lat":44.382,"lng":7.4724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"132","name":"MONFORTE D'ALBA","lat":44.5831,"lng":7.9678,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"094","name":"GAMBASCA","lat":44.6299,"lng":7.3484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"041","name":"CARAMAGNA PIEMONTE","lat":44.7803,"lng":7.739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"142","name":"MONTICELLO D'ALBA","lat":44.719,"lng":7.9437,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"074","name":"COSSANO BELBO","lat":44.6698,"lng":8.1993,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"140","name":"MONTEU ROERO","lat":44.7803,"lng":7.9375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"211","name":"SANT'ALBANO STURA","lat":44.51,"lng":7.7234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"189","name":"ROCCA DE' BALDI","lat":44.4243,"lng":7.7619,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"040","name":"CARAGLIO","lat":44.4205,"lng":7.4341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"172","name":"PONTECHIANALE","lat":44.647,"lng":6.9989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"163","name":"PEVERAGNO","lat":44.3325,"lng":7.6209,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"001","name":"ACCEGLIO","lat":44.4752,"lng":6.9907,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"144","name":"MOROZZO","lat":44.4231,"lng":7.7101,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"187","name":"ROCCABRUNA","lat":44.4806,"lng":7.3363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"227","name":"TORRE MONDOVÌ","lat":44.3539,"lng":7.9008,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"013","name":"BAROLO","lat":44.6104,"lng":7.9426,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"177","name":"PRIOLA","lat":44.2447,"lng":8.0224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"223","name":"SOMMARIVA PERNO","lat":44.7467,"lng":7.9017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"221","name":"SOMANO","lat":44.5364,"lng":8.0089,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"080","name":"DIANO D'ALBA","lat":44.6511,"lng":8.0284,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"090","name":"FRABOSA SOPRANA","lat":44.2887,"lng":7.8062,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"046","name":"CASTAGNITO","lat":44.7564,"lng":8.0325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"061","name":"CENTALLO","lat":44.5036,"lng":7.5864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"199","name":"SALE DELLE LANGHE","lat":44.3962,"lng":8.0813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"057","name":"CASTINO","lat":44.6189,"lng":8.1836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"219","name":"SERRAVALLE LANGHE","lat":44.5601,"lng":8.0584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"217","name":"SCARNAFIGI","lat":44.6799,"lng":7.567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"154","name":"ONCINO","lat":44.6762,"lng":7.1905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"152","name":"NOVELLO","lat":44.5888,"lng":7.9275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"150","name":"NIELLA BELBO","lat":44.5138,"lng":8.0805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"047","name":"CASTELDELFINO","lat":44.5906,"lng":7.0709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"025","name":"BORGO SAN DALMAZZO","lat":44.3296,"lng":7.4885,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"134","name":"MONTALDO DI MONDOVÌ","lat":44.3195,"lng":7.8653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"193","name":"ROCCHETTA BELBO","lat":44.637,"lng":8.1764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"055","name":"CASTIGLIONE FALLETTO","lat":44.6236,"lng":7.9764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"035","name":"CAMERANA","lat":44.4228,"lng":8.1406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"120","name":"MARSAGLIA","lat":44.7128,"lng":9.3831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"168","name":"PIOBESI D'ALBA","lat":44.7363,"lng":7.9808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"067","name":"CHERASCO","lat":44.6516,"lng":7.8583,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"029","name":"BRA","lat":44.6978,"lng":7.8545,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"038","name":"CANOSIO","lat":44.4556,"lng":7.0824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"071","name":"CLAVESANA","lat":44.4834,"lng":7.9018,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"042","name":"CARDÈ","lat":44.7455,"lng":7.4788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"147","name":"NARZOLE","lat":44.5964,"lng":7.8709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"119","name":"MARMORA","lat":44.4581,"lng":7.0935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"208","name":"SANFRÈ","lat":44.7509,"lng":7.8038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"031","name":"BRIGA ALTA","lat":44.0834,"lng":7.7495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"004","name":"ALBARETTO DELLA TORRE","lat":44.5968,"lng":8.0645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"186","name":"ROBURENT","lat":44.3078,"lng":7.8923,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"108","name":"LESEGNO","lat":44.4017,"lng":7.9656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"145","name":"MURAZZANO","lat":44.474,"lng":8.0205,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"014","name":"BASTIA MONDOVÌ","lat":44.443,"lng":7.8956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"002","name":"AISONE","lat":44.3135,"lng":7.2191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"220","name":"SINIO","lat":44.6012,"lng":8.0218,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"238","name":"VERDUNO","lat":44.6672,"lng":7.9319,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"022","name":"BERNEZZO","lat":44.3863,"lng":7.4366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"024","name":"BORGOMALE","lat":44.6215,"lng":8.1324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"032","name":"BRONDELLO","lat":44.6017,"lng":7.407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"135","name":"MONTALDO ROERO","lat":44.7694,"lng":7.9259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"095","name":"GARESSIO","lat":44.2062,"lng":8.0153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"084","name":"ENTRACQUE","lat":44.2406,"lng":7.3976,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"007","name":"ARGUELLO","lat":44.5831,"lng":8.1086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"164","name":"PEZZOLO VALLE UZZONE","lat":44.5398,"lng":8.1948,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"175","name":"PRIERO","lat":44.3754,"lng":8.0958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"003","name":"ALBA","lat":44.7009,"lng":8.0353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"205","name":"SAMPEYRE","lat":44.5793,"lng":7.1878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"180","name":"REVELLO","lat":44.6556,"lng":7.3927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"125","name":"MOMBASIGLIO","lat":44.3677,"lng":7.9691,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"096","name":"GENOLA","lat":44.5896,"lng":7.6654,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"241","name":"VEZZA D'ALBA","lat":44.7638,"lng":8.0091,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"043","name":"CARRÙ","lat":44.4796,"lng":7.8771,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"083","name":"ELVA","lat":44.5399,"lng":7.0898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"184","name":"ROASCIO","lat":44.4153,"lng":8.0295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"174","name":"PRAZZO","lat":44.4832,"lng":7.056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"162","name":"PERLO","lat":44.3328,"lng":8.0836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"171","name":"POLONGHERA","lat":44.8035,"lng":7.5969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"036","name":"CAMO","lat":44.6954,"lng":8.1949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"099","name":"GOVONE","lat":44.8051,"lng":8.0951,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"076","name":"CRAVANZANA","lat":44.5736,"lng":8.1284,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"210","name":"SAN MICHELE MONDOVÌ","lat":44.3781,"lng":7.9122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"086","name":"FARIGLIANO","lat":44.5112,"lng":7.9162,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"111","name":"LISIO","lat":44.3078,"lng":7.9785,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"161","name":"PERLETTO","lat":44.6003,"lng":8.2142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"194","name":"RODDI","lat":44.6806,"lng":7.9766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"201","name":"SALICETO","lat":44.4144,"lng":8.1699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"131","name":"MONESIGLIO","lat":44.4657,"lng":8.1189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"190","name":"ROCCAFORTE MONDOVÌ","lat":44.3189,"lng":7.746,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"237","name":"VENASCA","lat":44.565,"lng":7.405,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"149","name":"NEVIGLIE","lat":44.6922,"lng":8.118,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"062","name":"CERESOLE ALBA","lat":44.8008,"lng":7.8236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"078","name":"CUNEO","lat":44.3888,"lng":7.5471,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"202","name":"SALMOUR","lat":44.5786,"lng":7.7932,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"185","name":"ROBILANTE","lat":44.2945,"lng":7.5113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"115","name":"MANGO","lat":44.6867,"lng":8.1518,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"101","name":"GUARENE","lat":44.7407,"lng":8.0341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"116","name":"MANTA","lat":44.6169,"lng":7.4881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"005","name":"ALTO","lat":44.1089,"lng":8.0028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"206","name":"SAN BENEDETTO BELBO","lat":44.4913,"lng":8.0589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"234","name":"VALGRANA","lat":44.4124,"lng":7.3813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"207","name":"SAN DAMIANO MACRA","lat":44.4889,"lng":7.2576,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"056","name":"CASTIGLIONE TINELLA","lat":44.7264,"lng":8.1913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"240","name":"VERZUOLO","lat":44.6012,"lng":7.4831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"226","name":"TORRE BORMIDA","lat":44.5631,"lng":8.1569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"128","name":"MONASTEROLO DI SAVIGLIANO","lat":44.6874,"lng":7.6206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"127","name":"MONASTEROLO CASOTTO","lat":44.3255,"lng":7.9455,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"153","name":"NUCETTO","lat":44.3419,"lng":8.061,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"248","name":"VINADIO","lat":44.3066,"lng":7.1737,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"179","name":"RACCONIGI","lat":44.7711,"lng":7.6841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"070","name":"CISSONE","lat":44.5625,"lng":8.0308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"051","name":"CASTELLINALDO","lat":44.776,"lng":8.031,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"183","name":"ROASCHIA","lat":44.2702,"lng":7.4543,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"146","name":"MURELLO","lat":44.7531,"lng":7.602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"045","name":"CASALGRASSO","lat":44.8183,"lng":7.626,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"075","name":"COSTIGLIOLE SALUZZO","lat":44.5656,"lng":7.4866,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"113","name":"MAGLIANO ALFIERI","lat":44.7703,"lng":8.0713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"200","name":"SALE SAN GIOVANNI","lat":44.4002,"lng":8.0791,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"232","name":"TRINITÀ","lat":40.3731,"lng":15.6102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"097","name":"GORZEGNO","lat":44.5124,"lng":8.1346,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"137","name":"MONTELUPO ALBESE","lat":44.622,"lng":8.0479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"060","name":"CELLE DI MACRA","lat":44.4828,"lng":7.1806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"098","name":"GOTTASECCA","lat":44.4614,"lng":8.1684,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"079","name":"DEMONTE","lat":44.3151,"lng":7.2954,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"121","name":"MARTINIANA PO","lat":44.6274,"lng":7.3673,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"166","name":"PIASCO","lat":44.5641,"lng":7.455,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"066","name":"CEVA","lat":44.3874,"lng":8.035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"037","name":"CANALE","lat":42.6888,"lng":12.1338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"160","name":"PAROLDO","lat":44.4331,"lng":8.0736,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"209","name":"SANFRONT","lat":44.6481,"lng":7.3222,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"004","codice_comu_istat":"027","name":"BOSSOLASCO","lat":44.5292,"lng":8.0521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"070","name":"MONCUCCO TORINESE","lat":45.0649,"lng":7.9331,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"053","name":"FERRERE","lat":44.8783,"lng":7.9942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"105","name":"SESSAME","lat":44.6712,"lng":8.3374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"111","name":"VAGLIO SERRA","lat":44.7974,"lng":8.34,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"045","name":"CORTANDONE","lat":44.96,"lng":8.0574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"086","name":"PIOVÀ MASSAIA","lat":45.0536,"lng":8.0492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"094","name":"ROCCAVERANO","lat":44.5925,"lng":8.272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"109","name":"TONCO","lat":45.0248,"lng":8.1909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"093","name":"ROCCA D'ARAZZO","lat":44.8721,"lng":8.2848,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"104","name":"SEROLE","lat":44.5546,"lng":8.2601,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"038","name":"CHIUSANO D'ASTI","lat":44.985,"lng":8.1181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"014","name":"CALLIANO","lat":45.0094,"lng":8.2558,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"116","name":"VIGLIANO D'ASTI","lat":44.835,"lng":8.2303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"017","name":"CANELLI","lat":44.7193,"lng":8.287,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"061","name":"MARANZANA","lat":44.7605,"lng":8.4787,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"042","name":"COCCONATO","lat":45.0886,"lng":8.0395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"011","name":"BUBBIO","lat":44.6642,"lng":8.295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"039","name":"CINAGLIO","lat":44.9762,"lng":8.1013,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"030","name":"CASTELNUOVO CALCEA","lat":44.7892,"lng":8.2851,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"054","name":"FONTANILE","lat":44.7539,"lng":8.4225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"005","name":"ASTI","lat":44.9009,"lng":8.2068,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"029","name":"CASTELNUOVO BELBO","lat":44.8006,"lng":8.4116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"008","name":"BELVEGLIO","lat":44.8309,"lng":8.3296,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"002","name":"ALBUGNANO","lat":45.078,"lng":7.9712,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"010","name":"BRUNO","lat":44.7939,"lng":8.441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"098","name":"SAN GIORGIO SCARAMPI","lat":44.6122,"lng":8.2419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"009","name":"BERZANO DI SAN PIETRO","lat":45.0952,"lng":7.9531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"004","name":"ARAMENGO","lat":45.1001,"lng":8.0011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"067","name":"MONALE","lat":44.9353,"lng":8.0727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"047","name":"CORTAZZONE","lat":44.9798,"lng":8.0618,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"036","name":"CERRO TANARO","lat":44.8739,"lng":8.3597,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"019","name":"CAPRIGLIO","lat":44.4778,"lng":10.2041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"076","name":"MONTEGROSSO D'ASTI","lat":44.8217,"lng":8.2388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"020","name":"CASORZO","lat":45.0234,"lng":8.3381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"097","name":"SAN DAMIANO D'ASTI","lat":44.8347,"lng":8.065,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"060","name":"LOAZZOLO","lat":44.6698,"lng":8.2582,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"028","name":"CASTELLO DI ANNONE","lat":44.8792,"lng":8.3138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"026","name":"CASTELLERO","lat":44.9257,"lng":8.0743,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"023","name":"CASTAGNOLE MONFERRATO","lat":44.96,"lng":8.3048,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"112","name":"VALFENERA","lat":44.903,"lng":7.9674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"044","name":"CORSIONE","lat":45.003,"lng":8.146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"072","name":"MONTABONE","lat":44.6988,"lng":8.3901,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"071","name":"MONGARDINO","lat":44.8487,"lng":8.2178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"021","name":"CASSINASCO","lat":44.6895,"lng":8.3018,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"022","name":"CASTAGNOLE DELLE LANZE","lat":44.7522,"lng":8.1514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"095","name":"ROCCHETTA PALAFEA","lat":44.7077,"lng":8.3437,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"075","name":"MONTECHIARO D'ASTI","lat":45.0083,"lng":8.1125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"089","name":"REFRANCORE","lat":44.9365,"lng":8.3438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"100","name":"SAN MARZANO OLIVETO","lat":44.7543,"lng":8.2959,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"106","name":"SETTIME","lat":44.9632,"lng":8.1138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"085","name":"PINO D'ASTI","lat":45.0575,"lng":7.9863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"082","name":"PASSERANO MARMORITO","lat":45.071,"lng":8.0213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"001","name":"AGLIANO TERME","lat":44.7915,"lng":8.2497,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"063","name":"MOASCA","lat":44.7631,"lng":8.2787,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"056","name":"GRANA","lat":44.9994,"lng":8.3006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"115","name":"VIARIGI","lat":44.9813,"lng":8.358,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"006","name":"AZZANO D'ASTI","lat":44.8754,"lng":8.2679,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"048","name":"CORTIGLIONE","lat":44.8235,"lng":8.3583,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"069","name":"MONCALVO","lat":45.0512,"lng":8.2664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"087","name":"PORTACOMARO","lat":44.9582,"lng":8.2576,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"059","name":"ISOLA D'ASTI","lat":44.8291,"lng":8.1778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"034","name":"CELLE ENOMONDO","lat":44.8578,"lng":8.1249,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"080","name":"NIZZA MONFERRATO","lat":44.7748,"lng":8.355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"007","name":"BALDICHIERI D'ASTI","lat":44.9054,"lng":8.0908,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"114","name":"VIALE","lat":45.0011,"lng":8.0502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"120","name":"VINCHIO","lat":44.812,"lng":8.322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"003","name":"ANTIGNANO","lat":44.8452,"lng":8.1355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"079","name":"MORANSENGO","lat":45.1158,"lng":8.0246,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"077","name":"MONTEMAGNO","lat":43.8475,"lng":10.94,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"096","name":"ROCCHETTA TANARO","lat":44.8596,"lng":8.3448,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"073","name":"MONTAFIA","lat":44.9897,"lng":8.0241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"064","name":"MOMBALDONE","lat":44.5721,"lng":8.3366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"037","name":"CESSOLE","lat":44.6501,"lng":8.2454,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"058","name":"INCISA SCAPACCINO","lat":44.8088,"lng":8.3751,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"091","name":"ROATTO","lat":44.9524,"lng":8.027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"012","name":"BUTTIGLIERA D'ASTI","lat":45.0223,"lng":7.9507,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"013","name":"CALAMANDRANA","lat":44.7381,"lng":8.3399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"015","name":"CALOSSO","lat":44.7393,"lng":8.2281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"110","name":"TONENGO","lat":45.1188,"lng":8.0019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"121","name":"MONTIGLIO MONFERRATO","lat":45.0662,"lng":8.0985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"046","name":"CORTANZE","lat":45.0153,"lng":8.0892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"113","name":"VESIME","lat":44.6361,"lng":8.2283,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"107","name":"SOGLIO","lat":44.9974,"lng":8.0795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"119","name":"VILLA SAN SECONDO","lat":45.0049,"lng":8.135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"051","name":"CUNICO","lat":45.0404,"lng":8.0969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"027","name":"CASTELLETTO MOLINA","lat":44.751,"lng":8.4325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"066","name":"MOMBERCELLI","lat":44.8174,"lng":8.2944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"035","name":"CERRETO D'ASTI","lat":45.0496,"lng":8.0367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"118","name":"VILLANOVA D'ASTI","lat":44.9422,"lng":7.9377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"088","name":"QUARANTI","lat":44.751,"lng":8.45,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"099","name":"SAN MARTINO ALFIERI","lat":44.8182,"lng":8.1092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"108","name":"TIGLIOLE","lat":44.8866,"lng":8.0767,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"050","name":"COSTIGLIOLE D'ASTI","lat":44.785,"lng":8.182,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"025","name":"CASTELL'ALFERO","lat":44.9824,"lng":8.2102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"032","name":"CASTEL ROCCHERO","lat":44.7196,"lng":8.4149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"084","name":"PIEA","lat":45.0232,"lng":8.0681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"031","name":"CASTELNUOVO DON BOSCO","lat":45.041,"lng":7.9643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"040","name":"CISTERNA D'ASTI","lat":44.8251,"lng":8.0038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"090","name":"REVIGLIASCO D'ASTI","lat":44.859,"lng":8.1586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"103","name":"SCURZOLENGO","lat":44.9657,"lng":8.2788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"092","name":"ROBELLA","lat":45.1014,"lng":8.1028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"041","name":"COAZZOLO","lat":44.7283,"lng":8.1455,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"033","name":"CELLARENGO","lat":44.8651,"lng":7.9451,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"052","name":"DUSINO SAN MICHELE","lat":44.9267,"lng":7.9727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"065","name":"MOMBARUZZO","lat":44.7721,"lng":8.4484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"083","name":"PENANGO","lat":45.0315,"lng":8.2506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"018","name":"CANTARANA","lat":45.1994,"lng":12.0987,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"062","name":"MARETTO","lat":44.9453,"lng":8.0348,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"055","name":"FRINCO","lat":45.0049,"lng":8.1719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"074","name":"MONTALDO SCARAMPI","lat":44.8314,"lng":8.2602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"024","name":"CASTEL BOGLIONE","lat":44.723,"lng":8.3811,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"081","name":"OLMO GENTILE","lat":44.5862,"lng":8.2484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"101","name":"SAN PAOLO SOLBRITO","lat":44.9517,"lng":7.9719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"049","name":"COSSOMBRATO","lat":44.9927,"lng":8.1366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"117","name":"VILLAFRANCA D'ASTI","lat":44.913,"lng":8.0328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"057","name":"GRAZZANO BADOGLIO","lat":45.0404,"lng":8.312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"068","name":"MONASTERO BORMIDA","lat":44.6487,"lng":8.3258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"005","codice_comu_istat":"016","name":"CAMERANO CASASCO","lat":44.9925,"lng":8.0909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"146","name":"ROCCAFORTE LIGURE","lat":44.6783,"lng":9.0285,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"178","name":"VALMACCA","lat":45.1012,"lng":8.5842,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"043","name":"CASSINE","lat":44.7509,"lng":8.5289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"168","name":"STREVI","lat":44.699,"lng":8.5233,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"038","name":"CASALEGGIO BOIRO","lat":44.6345,"lng":8.7316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"186","name":"VILLAROMAGNANO","lat":44.8496,"lng":8.8969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"166","name":"SPINETO SCRIVIA","lat":44.8381,"lng":8.8734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"107","name":"MONTEGIOCO","lat":44.8419,"lng":8.9629,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"113","name":"MURISENGO","lat":45.0828,"lng":8.1361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"013","name":"BASSIGNANA","lat":45.0022,"lng":8.732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"020","name":"BORGO SAN MARTINO","lat":45.0887,"lng":8.5238,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"148","name":"ROCCHETTA LIGURE","lat":44.7075,"lng":9.0516,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"040","name":"CASALNOCETO","lat":44.9141,"lng":8.9833,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"081","name":"GAVI","lat":44.6887,"lng":8.8029,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"060","name":"CONIOLO","lat":45.383,"lng":9.9749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"014","name":"BELFORTE MONFERRATO","lat":44.6261,"lng":8.6611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"031","name":"CARENTINO","lat":44.8281,"lng":8.4701,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"023","name":"BOZZOLE","lat":45.071,"lng":8.6071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"028","name":"CANTALUPO LIGURE","lat":44.7192,"lng":9.0461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"189","name":"VOLPEGLINO","lat":44.8934,"lng":8.9598,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"052","name":"CASTELNUOVO BORMIDA","lat":44.7437,"lng":8.5467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"025","name":"CABELLA LIGURE","lat":44.6749,"lng":9.0969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"063","name":"CREMOLINO","lat":44.637,"lng":8.5864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"066","name":"DERNICE","lat":44.7675,"lng":9.0514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"174","name":"TORTONA","lat":44.8972,"lng":8.8655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"163","name":"SOLERO","lat":44.9194,"lng":8.5088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"116","name":"ODALENGO GRANDE","lat":45.11,"lng":8.1681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"067","name":"FABBRICA CURONE","lat":44.7849,"lng":9.1476,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"179","name":"VIGNALE MONFERRATO","lat":45.0124,"lng":8.3974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"069","name":"FRACONALTO","lat":44.5919,"lng":8.8779,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"123","name":"OZZANO MONFERRATO","lat":45.1068,"lng":8.3716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"030","name":"CARBONARA SCRIVIA","lat":44.8502,"lng":8.871,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"045","name":"CASTELLANIA","lat":44.7984,"lng":8.9298,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"177","name":"VALENZA","lat":45.0123,"lng":8.6442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"019","name":"BORGORATTO ALESSANDRINO","lat":44.8374,"lng":8.5397,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"002","name":"ALBERA LIGURE","lat":44.7032,"lng":9.066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"136","name":"PONZONE","lat":45.6557,"lng":8.1896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"006","name":"ALLUVIONI CAMBIÒ","lat":45.0024,"lng":8.7963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"108","name":"MONTEMARZINO","lat":44.8489,"lng":8.9926,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"152","name":"SAN CRISTOFORO","lat":46.0388,"lng":11.2345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"090","name":"MALVICINO","lat":44.5592,"lng":8.4144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"016","name":"BERZANO DI TORTONA","lat":44.8785,"lng":8.9523,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"074","name":"FRESONARA","lat":44.7839,"lng":8.6874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"097","name":"MOMBELLO MONFERRATO","lat":45.1339,"lng":8.2514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"155","name":"SAN SEBASTIANO CURONE","lat":44.7877,"lng":9.0659,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"082","name":"GIAROLE","lat":45.0616,"lng":8.5677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"012","name":"BASALUZZO","lat":44.7686,"lng":8.7023,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"151","name":"SALE","lat":44.9817,"lng":8.8105,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"161","name":"SEZZADIO","lat":44.786,"lng":8.5738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"050","name":"CASTELLETTO MERLI","lat":45.0748,"lng":8.2413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"131","name":"POMARO MONFERRATO","lat":45.0635,"lng":8.5968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"141","name":"QUARGNENTO","lat":44.9459,"lng":8.4881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"137","name":"POZZOL GROPPO","lat":44.8776,"lng":9.0292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"032","name":"CAREZZANO","lat":44.8082,"lng":8.9013,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"098","name":"MOMPERONE","lat":44.8389,"lng":9.0353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"102","name":"MONTACUTO","lat":44.7667,"lng":9.1051,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"184","name":"VILLAMIROGLIO","lat":45.1356,"lng":8.1722,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"118","name":"OLIVOLA","lat":45.038,"lng":8.3681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"094","name":"MIRABELLO MONFERRATO","lat":45.0366,"lng":8.5244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"029","name":"CAPRIATA D'ORBA","lat":44.7288,"lng":8.6895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"181","name":"VIGUZZOLO","lat":44.9055,"lng":8.9238,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"001","name":"ACQUI TERME","lat":44.6755,"lng":8.4707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"190","name":"VOLTAGGIO","lat":44.6228,"lng":8.8427,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"129","name":"PIETRA MARAZZI","lat":44.9438,"lng":8.6697,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"126","name":"PARODI LIGURE","lat":44.6707,"lng":8.7581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"176","name":"TRISOBBIO","lat":44.6627,"lng":8.5874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"106","name":"MONTECHIARO D'ACQUI","lat":44.5955,"lng":8.3799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"185","name":"VILLANOVA MONFERRATO","lat":45.1829,"lng":8.4798,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"085","name":"GRONDONA","lat":44.6972,"lng":8.966,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"091","name":"MASIO","lat":44.8706,"lng":8.4089,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"145","name":"RIVARONE","lat":44.9778,"lng":8.7167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"075","name":"FRUGAROLO","lat":44.8381,"lng":8.6827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"132","name":"PONTECURONE","lat":44.9613,"lng":8.935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"070","name":"FRANCAVILLA BISIO","lat":44.7356,"lng":8.7324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"104","name":"MONTALDO BORMIDA","lat":44.6838,"lng":8.5889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"053","name":"CASTELNUOVO SCRIVIA","lat":44.9814,"lng":8.8824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"046","name":"CASTELLAR GUIDOBONO","lat":44.906,"lng":8.9471,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"139","name":"PRASCO","lat":44.6397,"lng":8.5524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"042","name":"CASSANO SPINOLA","lat":44.7634,"lng":8.8615,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"064","name":"CUCCARO MONFERRATO","lat":44.9932,"lng":8.4569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"095","name":"MOLARE","lat":44.6197,"lng":8.6017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"140","name":"PREDOSA","lat":44.7524,"lng":8.6566,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"071","name":"FRASCARO","lat":44.8275,"lng":8.5335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"103","name":"MONTALDEO","lat":44.6681,"lng":8.73,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"162","name":"SILVANO D'ORBA","lat":44.6859,"lng":8.6721,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"003","name":"ALESSANDRIA","lat":44.9132,"lng":8.617,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"096","name":"MOLINO DEI TORTI","lat":45.0253,"lng":8.8949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"018","name":"BORGHETTO DI BORBERA","lat":44.7307,"lng":8.9438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"092","name":"MELAZZO","lat":44.645,"lng":8.4261,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"061","name":"CONZANO","lat":45.0213,"lng":8.4543,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"026","name":"CAMAGNA MONFERRATO","lat":45.0188,"lng":8.431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"080","name":"GAVAZZANA","lat":44.7767,"lng":8.8857,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"059","name":"CERRINA MONFERRATO","lat":45.1204,"lng":8.2156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"068","name":"FELIZZANO","lat":44.9003,"lng":8.4371,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"188","name":"VOLPEDO","lat":44.8911,"lng":8.9819,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"073","name":"FRASSINETO PO","lat":45.1347,"lng":8.5355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"086","name":"GUAZZORA","lat":45.0147,"lng":8.8525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"049","name":"CASTELLETTO D'ORBA","lat":44.6856,"lng":8.7045,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"124","name":"PADERNA","lat":44.8216,"lng":8.8924,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"036","name":"CARTOSIO","lat":44.5912,"lng":8.4217,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"169","name":"TAGLIOLO MONFERRATO","lat":44.6391,"lng":8.6687,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"093","name":"MERANA","lat":44.5188,"lng":8.298,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"149","name":"ROSIGNANO MONFERRATO","lat":45.0811,"lng":8.3998,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"077","name":"GABIANO","lat":45.1578,"lng":8.1964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"159","name":"SERRALUNGA DI CREA","lat":45.1012,"lng":8.2831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"147","name":"ROCCA GRIMALDA","lat":44.6725,"lng":8.6495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"057","name":"CERESETO","lat":44.5758,"lng":9.678,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"180","name":"VIGNOLE BORBERA","lat":44.7078,"lng":8.8906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"175","name":"TREVILLE","lat":45.0978,"lng":8.3606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"021","name":"BOSCO MARENGO","lat":44.8245,"lng":8.6776,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"138","name":"POZZOLO FORMIGARO","lat":44.7963,"lng":8.7859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"119","name":"ORSARA BORMIDA","lat":44.6913,"lng":8.5639,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"125","name":"PARETO","lat":44.5175,"lng":8.383,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"047","name":"CASTELLAZZO BORMIDA","lat":44.8461,"lng":8.5785,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"154","name":"SAN SALVATORE MONFERRATO","lat":44.9952,"lng":8.567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"005","name":"ALICE BEL COLLE","lat":44.727,"lng":8.4519,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"027","name":"CAMINO","lat":41.3848,"lng":13.9337,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"084","name":"GROGNARDO","lat":44.6314,"lng":8.4935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"167","name":"STAZZANO","lat":44.7285,"lng":8.8711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"017","name":"BISTAGNO","lat":44.6613,"lng":8.3714,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"076","name":"FUBINE","lat":44.9658,"lng":8.4269,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"022","name":"BOSIO","lat":44.6508,"lng":8.7939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"112","name":"MORSASCO","lat":44.6664,"lng":8.5521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"134","name":"PONTI","lat":44.6294,"lng":8.3653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"114","name":"NOVI LIGURE","lat":44.7618,"lng":8.7861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"044","name":"CASSINELLE","lat":44.6025,"lng":8.5645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"170","name":"TASSAROLO","lat":44.7295,"lng":8.7727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"130","name":"PIOVERA","lat":44.9596,"lng":8.737,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"101","name":"MONLEALE","lat":44.8853,"lng":8.975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"173","name":"TICINETO","lat":45.0972,"lng":8.5528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"171","name":"TERRUGGIA","lat":45.0833,"lng":8.4444,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"142","name":"QUATTORDIO","lat":44.8974,"lng":8.4061,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"010","name":"AVOLASCA","lat":44.8037,"lng":8.9656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"056","name":"CELLA MONTE","lat":45.075,"lng":8.3927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"034","name":"CARREGA LIGURE","lat":44.6192,"lng":9.1758,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"033","name":"CARPENETO","lat":45.9964,"lng":13.1775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"157","name":"SARDIGLIANO","lat":44.7538,"lng":8.8944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"153","name":"SAN GIORGIO MONFERRATO","lat":45.1079,"lng":8.4142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"037","name":"CASAL CERMELLI","lat":44.8352,"lng":8.6256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"087","name":"ISOLA SANT'ANTONIO","lat":45.0307,"lng":8.8502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"144","name":"RIVALTA BORMIDA","lat":44.7108,"lng":8.5528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"158","name":"SAREZZANO","lat":44.8699,"lng":8.9082,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"088","name":"LERMA","lat":44.6365,"lng":8.7153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"111","name":"MORNESE","lat":44.6376,"lng":8.7565,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"128","name":"PECETTO DI VALENZA","lat":44.9908,"lng":8.672,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"160","name":"SERRAVALLE SCRIVIA","lat":44.7226,"lng":8.8572,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"079","name":"GARBAGNA","lat":44.7814,"lng":8.9989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"035","name":"CARROSIO","lat":44.6592,"lng":8.8327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"135","name":"PONZANO MONFERRATO","lat":45.0855,"lng":8.2632,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"058","name":"CERRETO GRUE","lat":44.8436,"lng":8.9314,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"048","name":"CASTELLETTO D'ERRO","lat":44.6274,"lng":8.3949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"110","name":"MORBELLO","lat":44.6066,"lng":8.511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"051","name":"CASTELLETTO MONFERRATO","lat":44.9822,"lng":8.5656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"004","name":"ALFIANO NATTA","lat":45.0476,"lng":8.2083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"143","name":"RICALDONE","lat":44.7335,"lng":8.4692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"109","name":"MORANO SUL PO","lat":45.1683,"lng":8.3674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"072","name":"FRASSINELLO MONFERRATO","lat":45.033,"lng":8.3869,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"122","name":"OVIGLIO","lat":44.8624,"lng":8.4889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"133","name":"PONTESTURA","lat":45.1434,"lng":8.3344,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"078","name":"GAMALERO","lat":44.8098,"lng":8.5418,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"007","name":"ALTAVILLA MONFERRATO","lat":44.9945,"lng":8.377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"024","name":"BRIGNANO-FRASCATA","lat":44.8139,"lng":9.041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"039","name":"CASALE MONFERRATO","lat":45.1372,"lng":8.4509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"054","name":"CASTELSPINA","lat":44.8072,"lng":8.5842,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"105","name":"MONTECASTELLO","lat":43.6352,"lng":10.6956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"164","name":"SOLONGHELLO","lat":45.131,"lng":8.282,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"083","name":"GREMIASCO","lat":44.7969,"lng":9.1059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"015","name":"BERGAMASCO","lat":44.8283,"lng":8.456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"099","name":"MONCESTINO","lat":45.1556,"lng":8.1625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"117","name":"ODALENGO PICCOLO","lat":45.072,"lng":8.2072,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"172","name":"TERZO","lat":44.6713,"lng":8.4211,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"150","name":"SALA MONFERRATO","lat":45.0744,"lng":8.3589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"187","name":"VISONE","lat":44.6628,"lng":8.5019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"115","name":"OCCIMIANO","lat":45.0612,"lng":8.5088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"121","name":"OVADA","lat":44.6375,"lng":8.6465,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"127","name":"PASTURANA","lat":44.7519,"lng":8.7503,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"065","name":"DENICE","lat":44.5996,"lng":8.3333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"100","name":"MONGIARDINO LIGURE","lat":44.6391,"lng":9.0602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"120","name":"OTTIGLIO","lat":45.0525,"lng":8.3384,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"009","name":"ARQUATA SCRIVIA","lat":44.688,"lng":8.8857,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"183","name":"VILLALVERNIA","lat":44.8145,"lng":8.8553,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"055","name":"CAVATORE","lat":44.6312,"lng":8.4523,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"062","name":"COSTA VESCOVATO","lat":44.8171,"lng":8.9273,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"165","name":"SPIGNO MONFERRATO","lat":44.5438,"lng":8.3333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"089","name":"LU","lat":45.0025,"lng":8.4858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"041","name":"CASASCO","lat":44.8289,"lng":9.006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"182","name":"VILLADEATI","lat":45.0727,"lng":8.1691,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"008","name":"ALZANO SCRIVIA","lat":45.0191,"lng":8.8817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"011","name":"BALZOLA","lat":45.1845,"lng":8.4045,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"006","codice_comu_istat":"156","name":"SANT'AGATA FOSSILI","lat":44.7858,"lng":8.9224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"034","name":"HONE","lat":45.6132,"lng":7.734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"008","name":"AYMAVILLES","lat":45.7028,"lng":7.2467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"032","name":"GRESSONEY-LA-TRINITÈ","lat":45.8268,"lng":7.8229,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"046","name":"OLLOMONT","lat":45.8503,"lng":7.3108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"009","name":"BARD","lat":45.6089,"lng":7.7455,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"014","name":"CHALLAND-SAINT-VICTOR","lat":45.6906,"lng":7.7041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"030","name":"GIGNOD","lat":45.7809,"lng":7.2975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"051","name":"PONTEY","lat":45.7388,"lng":7.5878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"053","name":"PRÈ-SAINT-DIDIER","lat":45.7644,"lng":6.9849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"012","name":"BRUSSON","lat":45.7588,"lng":7.7308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"039","name":"LA MAGDELEINE","lat":45.8111,"lng":7.6202,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"025","name":"EMARÈSE","lat":45.726,"lng":7.6877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"028","name":"FONTAINEMORE","lat":45.6484,"lng":7.8606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"052","name":"PONT-SAINT-MARTIN","lat":45.5984,"lng":7.7994,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"072","name":"VERRAYES","lat":45.7642,"lng":7.5358,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"035","name":"INTROD","lat":45.6929,"lng":7.1822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"050","name":"PONTBOSET","lat":45.6076,"lng":7.6856,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"004","name":"ARNAD","lat":45.6434,"lng":7.723,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"058","name":"SAINT-CHRISTOPHE","lat":45.7482,"lng":7.3561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"015","name":"CHAMBAVE","lat":45.7446,"lng":7.5502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"074","name":"VILLENEUVE","lat":45.7028,"lng":7.2091,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"067","name":"TORGNON","lat":45.8072,"lng":7.5712,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"063","name":"SAINT-PIERRE","lat":45.7091,"lng":7.2301,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"060","name":"SAINT-MARCEL","lat":45.7325,"lng":7.4494,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"018","name":"CHAMPORCHER","lat":45.6242,"lng":7.6207,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"022","name":"COURMAYEUR","lat":45.7927,"lng":6.9718,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"042","name":"LILLIANES","lat":45.6314,"lng":7.8422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"031","name":"GRESSAN","lat":45.7217,"lng":7.2881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"036","name":"ISSIME","lat":45.6866,"lng":7.8539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"016","name":"CHAMOIS","lat":45.8384,"lng":7.622,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"064","name":"SAINT-RHÉMY-EN-BOSSES","lat":45.836,"lng":7.1837,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"043","name":"MONTJOVET","lat":45.7064,"lng":7.6753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"059","name":"SAINT-DENIS","lat":45.7532,"lng":7.555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"056","name":"RHEMES-SAINT-GEORGES","lat":45.6542,"lng":7.1557,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"017","name":"CHAMPDEPRAZ","lat":45.6853,"lng":7.6565,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"044","name":"MORGEX","lat":45.758,"lng":7.0381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"010","name":"BIONAZ","lat":45.8737,"lng":7.4231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"033","name":"GRESSONEY-SAINT-JEAN","lat":45.776,"lng":7.8273,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"020","name":"CHATILLON","lat":45.7527,"lng":7.6188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"068","name":"VALGRISENCHE","lat":45.6308,"lng":7.0642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"045","name":"NUS","lat":45.7412,"lng":7.4678,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"001","name":"ALLEIN","lat":45.8086,"lng":7.2725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"029","name":"GABY","lat":45.7131,"lng":7.8839,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"057","name":"ROISAN","lat":45.7846,"lng":7.3105,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"040","name":"LA SALLE","lat":45.7474,"lng":7.0752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"071","name":"VALTOURNENCHE","lat":45.8768,"lng":7.6239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"019","name":"CHARVENSOD","lat":45.7211,"lng":7.3263,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"070","name":"VALSAVARENCHE","lat":45.5924,"lng":7.2098,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"049","name":"POLLEIN","lat":45.7281,"lng":7.3538,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"066","name":"SARRE","lat":45.7192,"lng":7.2592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"006","name":"AVISE","lat":45.7098,"lng":7.1411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"062","name":"SAINT-OYEN","lat":45.825,"lng":7.2161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"038","name":"JOVENCAN","lat":45.716,"lng":7.2738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"027","name":"FÉNIS","lat":45.7346,"lng":7.4989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"037","name":"ISSOGNE","lat":45.6547,"lng":7.6864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"061","name":"SAINT-NICOLAS","lat":45.7164,"lng":7.1665,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"013","name":"CHALLAND-SAINT-ANSELME","lat":45.7157,"lng":7.7358,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"024","name":"DOUES","lat":45.8197,"lng":7.3076,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"047","name":"OYACE","lat":45.8518,"lng":7.3833,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"048","name":"PERLOZ","lat":45.6148,"lng":7.8084,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"005","name":"ARVIER","lat":45.7031,"lng":7.1671,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"021","name":"COGNE","lat":45.6082,"lng":7.3561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"054","name":"QUART","lat":45.7404,"lng":7.4161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"041","name":"LA THUILE","lat":45.7167,"lng":6.9488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"069","name":"VALPELLINE","lat":45.826,"lng":7.3267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"055","name":"RHEMES-NOTRE-DAME","lat":45.5696,"lng":7.1179,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"002","name":"ANTEY-SAINT-ANDRÈ","lat":45.8077,"lng":7.59,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"026","name":"ETROUBLES","lat":45.8216,"lng":7.2305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"065","name":"SAINT-VINCENT","lat":45.7509,"lng":7.6465,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"011","name":"BRISSOGNE","lat":45.7258,"lng":7.3922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"007","name":"AYAS","lat":45.8161,"lng":7.6903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"003","name":"AOSTA","lat":45.735,"lng":7.3132,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"007","codice_comu_istat":"073","name":"VERRÈS","lat":45.6686,"lng":7.6906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"007","codice_comu_istat":"023","name":"DONNAS","lat":45.604,"lng":7.7703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"040","name":"PERINALDO","lat":43.8676,"lng":7.6699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"027","name":"DIANO MARINA","lat":43.9099,"lng":8.0818,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"057","name":"SEBORGA","lat":43.8274,"lng":7.6955,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"034","name":"MENDATICA","lat":44.0781,"lng":7.8067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"049","name":"REZZO","lat":44.0225,"lng":7.8725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"006","name":"BADALUCCO","lat":43.9168,"lng":7.8473,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"025","name":"DIANO ARENTINO","lat":43.9508,"lng":8.0419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"059","name":"TAGGIA","lat":43.8552,"lng":7.8529,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"058","name":"SOLDANO","lat":43.8302,"lng":7.6565,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"055","name":"SANREMO","lat":43.815491,"lng":7.77519,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"013","name":"CARPASIO","lat":43.9605,"lng":7.8671,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"037","name":"MONTEGROSSO PIAN LATTE","lat":44.0674,"lng":7.8193,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"046","name":"PORNASSIO","lat":44.0716,"lng":7.8706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"005","name":"AURIGO","lat":43.9836,"lng":7.9234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"048","name":"RANZO","lat":46.0656,"lng":10.9432,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"024","name":"COSTARAINERA","lat":43.8564,"lng":7.9399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"010","name":"BORGOMARO","lat":43.9755,"lng":7.946,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"044","name":"POMPEIANA","lat":43.8549,"lng":7.8909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"008","name":"BORDIGHERA","lat":43.7798,"lng":7.6608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"004","name":"ARMO","lat":38.0703,"lng":15.7144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"032","name":"ISOLABONA","lat":43.8806,"lng":7.6404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"066","name":"VESSALICO","lat":44.0462,"lng":7.9608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"021","name":"CIPRESSA","lat":43.8514,"lng":7.9307,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"063","name":"VALLECROSIA","lat":43.786,"lng":7.6401,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"060","name":"TERZORIO","lat":43.8529,"lng":7.8989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"002","name":"APRICALE","lat":43.8808,"lng":7.6608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"061","name":"TRIORA","lat":43.9931,"lng":7.7653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"045","name":"PONTEDASSIO","lat":43.9414,"lng":8.015,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"022","name":"CIVEZZA","lat":43.881,"lng":7.9528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"039","name":"OSPEDALETTI","lat":43.8022,"lng":7.7158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"054","name":"SAN LORENZO AL MARE","lat":43.8543,"lng":7.9656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"011","name":"CAMPOROSSO","lat":43.8102,"lng":7.6304,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"020","name":"CHIUSAVECCHIA","lat":43.9681,"lng":7.9848,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"038","name":"OLIVETTA SAN MICHELE","lat":43.8799,"lng":7.5163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"043","name":"PIGNA","lat":43.9333,"lng":7.6619,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"035","name":"MOLINI DI TRIORA","lat":43.9906,"lng":7.7755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"062","name":"VALLEBONA","lat":43.8137,"lng":7.6675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"033","name":"LUCINASCO","lat":43.967,"lng":7.9613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"026","name":"DIANO CASTELLO","lat":43.9251,"lng":8.066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"028","name":"DIANO SAN PIETRO","lat":43.9324,"lng":8.0731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"042","name":"PIEVE DI TECO","lat":44.0481,"lng":7.9161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"009","name":"BORGHETTO D'ARROSCIA","lat":44.0588,"lng":7.9828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"051","name":"ROCCHETTA NERVINA","lat":43.8904,"lng":7.5999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"019","name":"CHIUSANICO","lat":43.9726,"lng":7.9935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"015","name":"CASTEL VITTORIO","lat":43.9288,"lng":7.6752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"029","name":"DOLCEACQUA","lat":43.8528,"lng":7.6238,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"007","name":"BAJARDO","lat":43.9035,"lng":7.7188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"041","name":"PIETRABRUNA","lat":43.8881,"lng":7.9037,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"014","name":"CASTELLARO","lat":44.1596,"lng":10.9392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"053","name":"SAN BIAGIO DELLA CIMA","lat":43.8189,"lng":7.6493,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"001","name":"AIROLE","lat":43.872,"lng":7.5553,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"036","name":"MONTALTO LIGURE","lat":43.9291,"lng":7.8453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"012","name":"CARAVONICA","lat":43.9942,"lng":7.9586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"056","name":"SANTO STEFANO AL MARE","lat":43.8375,"lng":7.8969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"030","name":"DOLCEDO","lat":43.9063,"lng":7.9513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"050","name":"RIVA LIGURE","lat":43.8389,"lng":7.8808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"003","name":"AQUILA D'ARROSCIA","lat":44.0868,"lng":8.0064,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"017","name":"CERVO","lat":43.9272,"lng":8.1152,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"018","name":"CESIO","lat":44.0089,"lng":7.975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"064","name":"VASIA","lat":43.9331,"lng":7.9541,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"047","name":"PRELÀ","lat":43.9266,"lng":7.9367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"067","name":"VILLA FARALDI","lat":43.9696,"lng":8.0908,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"023","name":"COSIO DI ARROSCIA","lat":44.078899,"lng":7.83258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"031","name":"IMPERIA","lat":43.8879,"lng":8.0316,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"016","name":"CERIANA","lat":43.8814,"lng":7.7759,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"065","name":"VENTIMIGLIA","lat":43.7904,"lng":7.6071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"008","codice_comu_istat":"052","name":"SAN BARTOLOMEO AL MARE","lat":43.9239,"lng":8.1024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"062","name":"TOVO SAN GIACOMO","lat":44.177,"lng":8.2716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"038","name":"MILLESIMO","lat":44.3641,"lng":8.2059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"010","name":"BERGEGGI","lat":44.2486,"lng":8.4435,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"065","name":"VARAZZE","lat":44.3606,"lng":8.5752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"015","name":"CAIRO MONTENOTTE","lat":44.3976,"lng":8.2775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"050","name":"PLODIO","lat":44.3568,"lng":8.2433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"013","name":"BORGIO VEREZZI","lat":44.1582,"lng":8.3093,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"022","name":"CELLE LIGURE","lat":44.3455,"lng":8.5453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"026","name":"COSSERIA","lat":44.3679,"lng":8.2358,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"027","name":"DEGO","lat":44.4441,"lng":8.307,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"064","name":"VADO LIGURE","lat":44.2694,"lng":8.4358,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"004","name":"ALBISOLA SUPERIORE","lat":44.341,"lng":8.5105,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"024","name":"CERIALE","lat":44.0926,"lng":8.2295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"029","name":"FINALE LIGURE","lat":44.17,"lng":8.3452,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"061","name":"TOIRANO","lat":44.1278,"lng":8.2058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"036","name":"MALLARE","lat":44.2908,"lng":8.2983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"051","name":"PONTINVREA","lat":44.4444,"lng":8.4352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"058","name":"STELLA","lat":44.3456,"lng":8.5524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"017","name":"CALIZZANO","lat":44.2352,"lng":8.1149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"044","name":"ORCO FEGLINO","lat":44.2212,"lng":8.3256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"067","name":"VEZZI PORTIO","lat":44.2225,"lng":8.3599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"069","name":"ZUCCARELLO","lat":44.1122,"lng":8.1162,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"025","name":"CISANO SUL NEVA","lat":44.0861,"lng":8.1481,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"008","name":"BALESTRINO","lat":44.1247,"lng":8.1722,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"063","name":"URBE","lat":44.4881,"lng":8.5874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"055","name":"SASSELLO","lat":44.4793,"lng":8.4901,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"040","name":"MURIALDO","lat":44.318,"lng":8.1692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"037","name":"MASSIMINO","lat":44.2995,"lng":8.0712,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"045","name":"ORTOVERO","lat":44.0546,"lng":8.0978,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"032","name":"GIUSVALLA","lat":44.4489,"lng":8.3953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"011","name":"BOISSANO","lat":44.1369,"lng":8.2227,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"012","name":"BORGHETTO SANTO SPIRITO","lat":44.1107,"lng":8.2415,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"054","name":"ROCCAVIGNALE","lat":44.3617,"lng":8.1917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"059","name":"STELLANELLO","lat":44.0009,"lng":8.0614,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"005","name":"ALTARE","lat":44.3357,"lng":8.3437,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"002","name":"ALBENGA","lat":44.0484,"lng":8.215,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"043","name":"ONZO","lat":44.0706,"lng":8.0523,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"014","name":"BORMIDA","lat":44.2792,"lng":8.2334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"041","name":"NASINO","lat":44.1147,"lng":8.0324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"020","name":"CASTELBIANCO","lat":44.1137,"lng":8.0749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"031","name":"GIUSTENICE","lat":44.1726,"lng":8.2443,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"042","name":"NOLI","lat":44.2056,"lng":8.4163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"048","name":"PIANA CRIXIA","lat":44.4861,"lng":8.3092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"052","name":"QUILIANO","lat":44.2936,"lng":8.4138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"018","name":"CARCARE","lat":44.3564,"lng":8.2912,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"057","name":"SPOTORNO","lat":44.2265,"lng":8.4184,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"023","name":"CENGIO","lat":44.3882,"lng":8.2094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"068","name":"VILLANOVA D'ALBENGA","lat":44.0471,"lng":8.1415,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"047","name":"PALLARE","lat":44.3283,"lng":8.2764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"056","name":"SAVONA","lat":44.3111,"lng":8.4772,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"046","name":"OSIGLIA","lat":44.2806,"lng":8.2008,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"053","name":"RIALTO","lat":44.2259,"lng":8.2616,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"016","name":"CALICE LIGURE","lat":44.2055,"lng":8.2959,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"049","name":"PIETRA LIGURE","lat":44.1489,"lng":8.2827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"009","name":"BARDINETO","lat":44.1916,"lng":8.1355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"019","name":"CASANOVA LERRONE","lat":44.0316,"lng":8.0482,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"066","name":"VENDONE","lat":44.0771,"lng":8.0719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"060","name":"TESTICO","lat":44.0052,"lng":8.0295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"034","name":"LOANO","lat":44.1288,"lng":8.26,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"001","name":"ALASSIO","lat":44.0027,"lng":8.1669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"021","name":"CASTELVECCHIO DI ROCCA BARBENA","lat":44.131,"lng":8.1178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"033","name":"LAIGUEGLIA","lat":43.9798,"lng":8.1584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"003","name":"ALBISSOLA MARINA","lat":44.3278,"lng":8.5026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"007","name":"ARNASCO","lat":44.0781,"lng":8.1088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"035","name":"MAGLIOLO","lat":44.1924,"lng":8.2492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"039","name":"MIOGLIA","lat":44.4931,"lng":8.4155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"028","name":"ERLI","lat":44.1365,"lng":8.1036,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"030","name":"GARLENDA","lat":44.0336,"lng":8.0944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"009","codice_comu_istat":"006","name":"ANDORA","lat":43.953,"lng":8.1467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"020","name":"CROCEFIESCHI","lat":44.5846,"lng":9.0221,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"048","name":"REZZOAGLIO","lat":44.5263,"lng":9.3878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"066","name":"VOBBIA","lat":44.6004,"lng":9.0393,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"054","name":"SANTA MARGHERITA LIGURE","lat":44.335,"lng":9.212,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"056","name":"SANTO STEFANO D'AVETO","lat":44.5474,"lng":9.4504,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"044","name":"PORTOFINO","lat":44.3386,"lng":9.0606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"032","name":"MASONE","lat":44.6746,"lng":10.7144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"059","name":"SESTRI LEVANTE","lat":44.2731,"lng":9.3968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"010","name":"CARASCO","lat":44.3504,"lng":9.3466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"047","name":"RECCO","lat":44.3622,"lng":9.1438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"005","name":"BORZONASCA","lat":44.4231,"lng":9.3874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"014","name":"CERANESI","lat":44.5041,"lng":8.8924,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"041","name":"NEIRONE","lat":44.4545,"lng":9.191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"037","name":"MONEGLIA","lat":44.2383,"lng":9.4912,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"064","name":"USCIO","lat":44.4147,"lng":9.1599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"045","name":"PROPATA","lat":44.5667,"lng":9.1867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"008","name":"CAMPO LIGURE","lat":44.5388,"lng":8.6992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"017","name":"COGOLETO","lat":44.3903,"lng":8.6439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"025","name":"GENOVA","lat":44.4167,"lng":8.95,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"010","codice_comu_istat":"027","name":"ISOLA DEL CANTONE","lat":44.6466,"lng":8.9568,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"063","name":"TRIBOGNA","lat":44.4165,"lng":9.1961,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"062","name":"TORRIGLIA","lat":44.5187,"lng":9.1589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"052","name":"ROVEGNO","lat":44.5778,"lng":9.2803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"009","name":"CAMPOMORONE","lat":44.5112,"lng":8.8863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"024","name":"FONTANIGORDA","lat":44.547,"lng":9.3056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"007","name":"CAMOGLI","lat":44.3492,"lng":9.156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"031","name":"LUMARZO","lat":44.4347,"lng":9.1406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"028","name":"LAVAGNA","lat":44.3089,"lng":9.3433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"002","name":"AVEGNO","lat":44.3882,"lng":9.1637,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"038","name":"MONTEBRUNO","lat":44.5267,"lng":9.2488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"006","name":"BUSALLA","lat":44.5699,"lng":8.9459,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"011","name":"CASARZA LIGURE","lat":44.2721,"lng":9.4457,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"003","name":"BARGAGLI","lat":44.4503,"lng":9.0872,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"016","name":"CICAGNA","lat":44.405,"lng":9.2475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"049","name":"RONCO SCRIVIA","lat":44.6128,"lng":8.9484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"033","name":"MELE","lat":44.4465,"lng":8.749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"026","name":"GORRETO","lat":44.606,"lng":9.2924,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"035","name":"MIGNANEGO","lat":44.517,"lng":8.9125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"051","name":"ROSSIGLIONE","lat":44.5588,"lng":8.6743,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"001","name":"ARENZANO","lat":44.404,"lng":8.681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"018","name":"COGORNO","lat":44.3276,"lng":9.3516,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"012","name":"CASELLA","lat":44.5361,"lng":8.9991,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"030","name":"LORSICA","lat":44.4319,"lng":9.2743,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"004","name":"BOGLIASCO","lat":44.38,"lng":9.0691,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"061","name":"TIGLIETO","lat":44.5242,"lng":8.6203,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"029","name":"LEIVI","lat":44.3535,"lng":9.3094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"015","name":"CHIAVARI","lat":44.3171,"lng":9.3202,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"019","name":"COREGLIA LIGURE","lat":44.3884,"lng":9.2661,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"057","name":"SAVIGNONE","lat":44.5653,"lng":8.9885,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"065","name":"VALBREVENNA","lat":44.5564,"lng":9.0656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"067","name":"ZOAGLI","lat":44.3377,"lng":9.2678,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"042","name":"ORERO","lat":44.4094,"lng":9.2678,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"046","name":"RAPALLO","lat":44.3522,"lng":9.2308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"043","name":"PIEVE LIGURE","lat":44.3756,"lng":9.0938,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"058","name":"SERRA RICCÒ","lat":44.5114,"lng":8.9394,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"039","name":"MONTOGGIO","lat":44.5177,"lng":9.0473,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"040","name":"NE","lat":44.4065,"lng":9.3354,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"053","name":"SAN COLOMBANO CERTENOLI","lat":44.381,"lng":9.2983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"036","name":"MOCONESI","lat":44.4214,"lng":9.2111,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"021","name":"DAVAGNA","lat":44.4669,"lng":9.0878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"013","name":"CASTIGLIONE CHIAVARESE","lat":44.2758,"lng":9.5189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"055","name":"SANT'OLCESE","lat":44.4839,"lng":8.9658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"022","name":"FASCIA","lat":44.5829,"lng":9.2215,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"060","name":"SORI","lat":44.3731,"lng":9.1041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"050","name":"RONDANINA","lat":44.5632,"lng":9.2178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"034","name":"MEZZANEGO","lat":44.3838,"lng":9.3778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"010","codice_comu_istat":"023","name":"FAVALE DI MALVARO","lat":44.4533,"lng":9.26,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"018","name":"MAISSANA","lat":44.3367,"lng":9.535,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"019","name":"MONTEROSSO AL MARE","lat":44.1464,"lng":9.6557,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"020","name":"ORTONOVO","lat":44.0851,"lng":10.0429,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"026","name":"SANTO STEFANO DI MAGRA","lat":44.1642,"lng":9.9162,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"031","name":"VEZZANO LIGURE","lat":44.1413,"lng":9.8852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"015","name":"LA SPEZIA","lat":44.1097,"lng":9.8135,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"023","name":"RICCÒ DEL GOLFO DI SPEZIA","lat":44.155,"lng":9.7656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"024","name":"RIOMAGGIORE","lat":44.0989,"lng":9.7408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"032","name":"ZIGNAGO","lat":44.2777,"lng":9.7468,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"009","name":"CARRO","lat":44.2731,"lng":9.61,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"029","name":"VARESE LIGURE","lat":44.3774,"lng":9.5953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"017","name":"LEVANTO","lat":44.1713,"lng":9.6135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"010","name":"CARRODANO","lat":44.2425,"lng":9.6569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"013","name":"FOLLO","lat":44.1649,"lng":9.863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"002","name":"ARCOLA","lat":44.1143,"lng":9.9058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"025","name":"ROCCHETTA DI VARA","lat":44.2517,"lng":9.758,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"011","name":"CASTELNUOVO MAGRA","lat":44.0997,"lng":10.0173,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"021","name":"PIGNONE","lat":44.1792,"lng":9.7252,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"028","name":"SESTA GODANO","lat":44.2938,"lng":9.6922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"004","name":"BOLANO","lat":44.1876,"lng":9.895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"022","name":"PORTOVENERE","lat":44.0519,"lng":9.8352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"006","name":"BORGHETTO DI VARA","lat":44.2246,"lng":9.7213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"008","name":"CALICE AL CORNOVIGLIO","lat":44.2439,"lng":9.8372,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"012","name":"DEIVA MARINA","lat":44.22,"lng":9.52,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"005","name":"BONASSOLA","lat":44.1858,"lng":9.5836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"003","name":"BEVERINO","lat":44.1944,"lng":9.7692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"007","name":"BRUGNATO","lat":44.2368,"lng":9.7247,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"014","name":"FRAMURA","lat":44.2089,"lng":9.5543,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"030","name":"VERNAZZA","lat":44.1362,"lng":9.685,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"016","name":"LERICI","lat":44.0757,"lng":9.9116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"027","name":"SARZANA","lat":44.1125,"lng":9.9597,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"011","codice_comu_istat":"001","name":"AMEGLIA","lat":44.0688,"lng":9.9663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"027","name":"CADEGLIANO-VICONAGO","lat":45.9605,"lng":8.8445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"092","name":"LUINO","lat":46.002,"lng":8.7417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"093","name":"LUVINATE","lat":45.8392,"lng":8.7673,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"031","name":"CARAVATE","lat":45.8798,"lng":8.6591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"033","name":"CARNAGO","lat":45.7231,"lng":8.8353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"044","name":"CASTELSEPRIO","lat":45.717,"lng":8.8617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"002","name":"ALBIZZATE","lat":45.7268,"lng":8.8023,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"071","name":"GALLIATE LOMBARDO","lat":45.786,"lng":8.7716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"089","name":"LONATE CEPPINO","lat":45.7058,"lng":8.8799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"021","name":"BRINZIO","lat":45.8882,"lng":8.7905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"058","name":"CUASSO AL MONTE","lat":45.9158,"lng":8.8803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"091","name":"LOZZA","lat":45.7767,"lng":8.8589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"135","name":"VEDDASCA","lat":46.0716,"lng":8.7999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"042","name":"CASTELLANZA","lat":45.6119,"lng":8.8983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"096","name":"MALNATE","lat":45.8006,"lng":8.8798,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"098","name":"MARNATE","lat":45.6284,"lng":8.9019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"076","name":"GERMIGNAGA","lat":45.9931,"lng":8.7272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"081","name":"GRANTOLA","lat":45.9502,"lng":8.7755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"104","name":"MONVALLE","lat":45.858,"lng":8.6325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"115","name":"RANCIO VALCUVIA","lat":45.916,"lng":8.7719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"084","name":"ISPRA","lat":45.8151,"lng":8.61,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"064","name":"DAVERIO","lat":45.7785,"lng":8.7715,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"011","name":"BESANO","lat":45.8896,"lng":8.8902,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"057","name":"CROSIO DELLA VALLE","lat":45.7609,"lng":8.7716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"059","name":"CUGLIATE-FABIASCO","lat":45.9467,"lng":8.8199,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"003","name":"ANGERA","lat":45.7737,"lng":8.5778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"112","name":"PINO SULLA SPONDA DEL LAGO MAGGIORE","lat":46.1017,"lng":8.7399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"121","name":"SOLBIATE ARNO","lat":45.722,"lng":8.8168,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"045","name":"CASTELVECCANA","lat":45.9495,"lng":8.6695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"140","name":"VIZZOLA TICINO","lat":45.631,"lng":8.6859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"097","name":"MARCHIROLO","lat":45.9489,"lng":8.8345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"103","name":"MONTEGRINO VALTRAVAGLIA","lat":45.975,"lng":8.7686,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"086","name":"LAVENA PONTE TRESA","lat":45.9668,"lng":8.8568,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"107","name":"OGGIONA CON SANTO STEFANO","lat":45.7053,"lng":8.8177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"012","name":"BESNATE","lat":45.7012,"lng":8.7667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"034","name":"CARONNO PERTUSELLA","lat":45.5982,"lng":9.0491,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"118","name":"SAMARATE","lat":45.6282,"lng":8.7845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"010","name":"BEDERO VALCUVIA","lat":45.9139,"lng":8.7944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"102","name":"MESENZANA","lat":45.947,"lng":8.7575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"139","name":"VIGGIÙ","lat":45.8716,"lng":8.9063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"087","name":"LAVENO-MOMBELLO","lat":45.9104,"lng":8.6191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"047","name":"CASTRONNO","lat":45.7467,"lng":8.8139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"023","name":"BRUNELLO","lat":45.7659,"lng":8.7964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"049","name":"CAZZAGO BRABBIA","lat":45.7969,"lng":8.7359,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"070","name":"GALLARATE","lat":45.6602,"lng":8.7935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"014","name":"BIANDRONNO","lat":45.8222,"lng":8.7155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"032","name":"CARDANO AL CAMPO","lat":45.6448,"lng":8.7722,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"083","name":"INDUNO OLONA","lat":45.8523,"lng":8.8399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"016","name":"BODIO LOMNAGO","lat":45.7897,"lng":8.7521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"085","name":"JERAGO CON ORAGO","lat":45.7032,"lng":8.801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"008","name":"BARASSO","lat":45.8402,"lng":8.7572,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"063","name":"CUVIO","lat":45.8972,"lng":8.7353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"018","name":"BREGANO","lat":45.8267,"lng":8.6889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"015","name":"BISUSCHIO","lat":45.8748,"lng":8.8719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"110","name":"ORINO","lat":45.8825,"lng":8.7167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"005","name":"ARSAGO SEPRIO","lat":45.6894,"lng":8.7358,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"006","name":"AZZATE","lat":45.7796,"lng":8.7939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"013","name":"BESOZZO","lat":45.8462,"lng":8.6667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"124","name":"SUMIRAGO","lat":45.7388,"lng":8.7828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"073","name":"GAZZADA SCHIANNO","lat":45.7796,"lng":8.823,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"088","name":"LEGGIUNO","lat":45.8752,"lng":8.6206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"141","name":"SANGIANO","lat":45.8758,"lng":8.6326,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"116","name":"RANCO","lat":45.7974,"lng":8.5712,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"079","name":"GORLA MINORE","lat":45.6422,"lng":8.9038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"052","name":"CLIVIO","lat":45.8632,"lng":8.9305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"126","name":"TERNATE","lat":45.7827,"lng":8.6934,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"060","name":"CUNARDO","lat":45.9351,"lng":8.8041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"035","name":"CARONNO VARESINO","lat":45.7367,"lng":8.8328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"122","name":"SOLBIATE OLONA","lat":45.6525,"lng":8.8864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"105","name":"MORAZZONE","lat":45.7655,"lng":8.8292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"061","name":"CURIGLIA CON MONTEVIASCO","lat":46.0612,"lng":8.8046,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"017","name":"BREBBIA","lat":45.8284,"lng":8.6502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"077","name":"GOLASECCA","lat":45.6975,"lng":8.6586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"108","name":"OLGIATE OLONA","lat":45.63,"lng":8.8863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"050","name":"CISLAGO","lat":45.6599,"lng":8.9731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"029","name":"CAIRATE","lat":45.6903,"lng":8.8706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"109","name":"ORIGGIO","lat":45.5968,"lng":9.0179,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"030","name":"CANTELLO","lat":45.8234,"lng":8.897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"120","name":"SESTO CALENDE","lat":45.724,"lng":8.6345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"019","name":"BRENTA","lat":45.8952,"lng":8.6849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"036","name":"CASALE LITTA","lat":45.7689,"lng":8.7425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"037","name":"CASALZUIGNO","lat":45.9037,"lng":8.7017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"069","name":"FERRERA DI VARESE","lat":45.9338,"lng":8.7903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"128","name":"TRAVEDONA-MONATE","lat":45.8048,"lng":8.6728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"113","name":"PORTO CERESIO","lat":45.9022,"lng":8.9009,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"051","name":"CITTIGLIO","lat":45.8948,"lng":8.6605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"065","name":"DUMENZA","lat":46.0198,"lng":8.7888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"125","name":"TAINO","lat":45.7641,"lng":8.6152,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"106","name":"MORNAGO","lat":45.7467,"lng":8.7524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"048","name":"CAVARIA CON PREMEZZO","lat":45.6913,"lng":8.7929,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"123","name":"SOMMA LOMBARDO","lat":45.6845,"lng":8.7064,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"038","name":"CASCIAGO","lat":45.8346,"lng":8.7823,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"114","name":"PORTO VALTRAVAGLIA","lat":45.9603,"lng":8.6828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"095","name":"MALGESSO","lat":45.8289,"lng":8.6767,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"100","name":"MASCIAGO PRIMO","lat":45.9169,"lng":8.7808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"067","name":"FAGNANO OLONA","lat":45.6688,"lng":8.874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"072","name":"GAVIRATE","lat":45.8447,"lng":8.7151,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"133","name":"VARESE","lat":45.8176,"lng":8.8264,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"078","name":"GORLA MAGGIORE","lat":45.6669,"lng":8.8931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"137","name":"VENEGONO SUPERIORE","lat":45.7552,"lng":8.8978,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"119","name":"SARONNO","lat":45.6255,"lng":9.0373,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"127","name":"TRADATE","lat":45.7136,"lng":8.9046,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"134","name":"VEDANO OLONA","lat":45.7733,"lng":8.8812,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"001","name":"AGRA","lat":46.0338,"lng":8.7731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"132","name":"VARANO BORGHI","lat":45.775,"lng":8.7052,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"028","name":"CADREZZATE","lat":45.8003,"lng":8.6446,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"062","name":"CUVEGLIO","lat":45.9051,"lng":8.7355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"094","name":"MACCAGNO","lat":46.0439,"lng":8.7385,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"054","name":"COMABBIO","lat":45.7721,"lng":8.6753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"040","name":"CASSANO MAGNAGO","lat":45.6707,"lng":8.8207,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"020","name":"BREZZO DI BEDERO","lat":45.9794,"lng":8.7186,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"131","name":"VALGANNA","lat":45.9044,"lng":8.8252,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"068","name":"FERNO","lat":45.6172,"lng":8.7556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"129","name":"TRONZANO LAGO MAGGIORE","lat":46.09,"lng":8.7338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"022","name":"BRISSAGO-VALTRAVAGLIA","lat":45.9495,"lng":8.7474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"041","name":"CASSANO VALCUVIA","lat":45.9335,"lng":8.7695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"074","name":"GEMONIO","lat":45.878,"lng":8.6781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"043","name":"CASTELLO CABIAGLIO","lat":45.8942,"lng":8.757,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"046","name":"CASTIGLIONE OLONA","lat":45.7554,"lng":8.8658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"099","name":"MARZIO","lat":45.9387,"lng":8.8603,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"080","name":"GORNATE-OLONA","lat":45.7425,"lng":8.8611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"004","name":"ARCISATE","lat":45.8598,"lng":8.8609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"009","name":"BARDELLO","lat":45.8349,"lng":8.6973,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"053","name":"COCQUIO-TREVISAGO","lat":45.8558,"lng":8.6991,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"055","name":"COMERIO","lat":45.8404,"lng":8.7451,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"025","name":"BUGUGGIATE","lat":45.7833,"lng":8.8117,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"024","name":"BRUSIMPIANO","lat":45.9454,"lng":8.8907,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"082","name":"INARZO","lat":45.7867,"lng":8.7367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"138","name":"VERGIATE","lat":45.7214,"lng":8.6936,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"039","name":"CASORATE SEMPIONE","lat":45.672,"lng":8.7445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"090","name":"LONATE POZZOLO","lat":45.5996,"lng":8.7541,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"056","name":"CREMENAGA","lat":45.9884,"lng":8.804,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"117","name":"SALTRIO","lat":45.8714,"lng":8.9217,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"101","name":"MERCALLO","lat":45.7503,"lng":8.6709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"007","name":"AZZIO","lat":45.8856,"lng":8.7097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"026","name":"BUSTO ARSIZIO","lat":45.6114,"lng":8.8491,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"075","name":"GERENZANO","lat":45.6406,"lng":9.0022,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"136","name":"VENEGONO INFERIORE","lat":45.7379,"lng":8.9006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"066","name":"DUNO","lat":45.9143,"lng":8.7379,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"111","name":"OSMATE","lat":45.7893,"lng":8.6595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"012","codice_comu_istat":"130","name":"UBOLDO","lat":45.6162,"lng":9.005,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"207","name":"SAN NAZZARO VAL CAVARGNA","lat":46.0898,"lng":9.1279,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"212","name":"SENNA COMASCO","lat":45.7639,"lng":9.1122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"185","name":"PLESIO","lat":46.0518,"lng":9.2309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"131","name":"LOCATE VARESINO","lat":45.6915,"lng":8.931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"194","name":"RAMPONIO VERNA","lat":45.998,"lng":9.0675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"145","name":"MENAGGIO","lat":46.0208,"lng":9.2389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"206","name":"SAN FERMO DELLA BATTAGLIA","lat":45.811,"lng":9.0442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"246","name":"ZELBIO","lat":45.9054,"lng":9.1804,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"197","name":"RODERO","lat":45.825,"lng":8.9164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"015","name":"BARNI","lat":45.9124,"lng":9.2663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"238","name":"VENIANO","lat":45.721,"lng":8.9903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"137","name":"LURAGO MARINONE","lat":45.7067,"lng":8.9825,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"046","name":"CARIMATE","lat":45.7039,"lng":9.1117,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"154","name":"MONTANO LUCINO","lat":45.7849,"lng":9.0436,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"234","name":"VALSOLDA","lat":46.025,"lng":9.0543,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"122","name":"LANZO D'INTELVI","lat":45.9848,"lng":9.0272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"062","name":"CAVARGNA","lat":46.0906,"lng":9.1127,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"085","name":"CUSINO","lat":46.076,"lng":9.1538,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"030","name":"BRIENNO","lat":45.9102,"lng":9.1314,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"111","name":"GRANDOLA ED UNITI","lat":46.026,"lng":9.2139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"114","name":"GUANZATE","lat":45.7275,"lng":9.0219,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"087","name":"DIZZASCO","lat":45.9449,"lng":9.101,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"130","name":"LIVO","lat":46.1699,"lng":9.305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"118","name":"INVERIGO","lat":45.7381,"lng":9.2189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"006","name":"ALSERIO","lat":45.7798,"lng":9.2013,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"216","name":"SORICO","lat":46.1736,"lng":9.3852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"098","name":"FAGGETO LARIO","lat":45.8599,"lng":9.16,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"233","name":"VAL REZZO","lat":46.0722,"lng":9.1106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"195","name":"REZZAGO","lat":45.8678,"lng":9.2512,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"102","name":"FINO MORNASCO","lat":45.7439,"lng":9.0488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"239","name":"VERCANA","lat":46.1602,"lng":9.3353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"161","name":"NESSO","lat":45.9135,"lng":9.1578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"044","name":"CARATE URIO","lat":45.8728,"lng":9.1233,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"075","name":"COMO","lat":45.812,"lng":9.0855,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"119","name":"LAGLIO","lat":45.8888,"lng":9.1425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"042","name":"CANZO","lat":45.8507,"lng":9.2742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"110","name":"GRANDATE","lat":45.7737,"lng":9.0623,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"134","name":"LONGONE AL SEGRINO","lat":45.8153,"lng":9.2525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"040","name":"CAMPIONE D'ITALIA","lat":45.9694,"lng":8.9706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"037","name":"CAGLIO","lat":45.8735,"lng":9.24,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"070","name":"CIVENNA","lat":45.9408,"lng":9.2716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"229","name":"VALBRONA","lat":45.8785,"lng":9.3,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"058","name":"CASTELMARTE","lat":45.8335,"lng":9.2342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"034","name":"BULGAROGRASSO","lat":45.7481,"lng":9.0075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"045","name":"CARBONATE","lat":45.686,"lng":8.9366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"211","name":"SCHIGNANO","lat":43.9621,"lng":11.1018,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"101","name":"FIGINO SERENZA","lat":45.7114,"lng":9.1324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"083","name":"CREMIA","lat":46.0875,"lng":9.2724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"165","name":"OLGIATE COMASCO","lat":45.7854,"lng":8.9693,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"136","name":"LURAGO D'ERBA","lat":45.7528,"lng":9.221,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"222","name":"TAVERNERIO","lat":45.8017,"lng":9.1417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"029","name":"BRENNA","lat":45.7439,"lng":9.1883,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"095","name":"ERBA","lat":45.8122,"lng":9.224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"052","name":"CASLINO D'ERBA","lat":45.8397,"lng":9.2325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"183","name":"PIANELLO DEL LARIO","lat":46.1038,"lng":9.2781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"186","name":"POGNANA LARIO","lat":45.8794,"lng":9.1587,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"160","name":"MUSSO","lat":46.1122,"lng":9.2758,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"129","name":"LIPOMO","lat":45.7939,"lng":9.1214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"204","name":"SAN BARTOLOMEO VAL CAVARGNA","lat":46.0826,"lng":9.1481,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"189","name":"PORLEZZA","lat":46.0394,"lng":9.1309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"100","name":"FENEGRÒ","lat":45.7025,"lng":9.0008,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"043","name":"CAPIAGO INTIMIANO","lat":45.7731,"lng":9.1228,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"184","name":"PIGRA","lat":45.9571,"lng":9.127,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"013","name":"ASSO","lat":45.8623,"lng":9.2708,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"170","name":"ORSENIGO","lat":45.7785,"lng":9.1828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"106","name":"GARZENO","lat":46.1347,"lng":9.2442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"245","name":"VILLA GUARDIA","lat":45.7775,"lng":9.0278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"064","name":"CERMENATE","lat":45.7039,"lng":9.0871,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"003","name":"ALBAVILLA","lat":45.8014,"lng":9.1863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"012","name":"AROSIO","lat":45.718,"lng":9.2092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"032","name":"BRUNATE","lat":45.8202,"lng":9.096,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"048","name":"CARUGO","lat":45.7096,"lng":9.198,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"193","name":"PUSIANO","lat":45.8148,"lng":9.283,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"026","name":"BLEVIO","lat":45.8431,"lng":9.1063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"232","name":"VALMOREA","lat":45.8163,"lng":8.9317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"090","name":"DONGO","lat":46.123,"lng":9.2792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"007","name":"ALZATE BRIANZA","lat":45.7708,"lng":9.1831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"153","name":"MONGUZZO","lat":45.7813,"lng":9.2314,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"060","name":"CASTIGLIONE D'INTELVI","lat":45.9561,"lng":9.0917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"188","name":"PONTE LAMBRO","lat":45.8275,"lng":9.2266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"021","name":"BENE LARIO","lat":46.0294,"lng":9.1851,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"028","name":"BREGNANO","lat":45.6987,"lng":9.0605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"228","name":"UGGIATE-TREVANO","lat":45.8244,"lng":8.9608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"128","name":"LIMIDO COMASCO","lat":45.6902,"lng":8.9809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"023","name":"BINAGO","lat":45.7831,"lng":8.9234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"019","name":"BELLAGIO","lat":45.9627,"lng":9.2459,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"172","name":"OSSUCCIO","lat":45.9675,"lng":9.1809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"248","name":"SAN SIRO","lat":45.183,"lng":11.9224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"179","name":"PELLIO INTELVI","lat":45.9807,"lng":9.0598,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"010","name":"APPIANO GENTILE","lat":45.7386,"lng":8.9799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"143","name":"MARIANO COMENSE","lat":45.6973,"lng":9.1787,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"157","name":"MONTORFANO","lat":45.7863,"lng":9.146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"097","name":"EUPILIO","lat":45.819,"lng":9.2709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"133","name":"LOMAZZO","lat":45.7002,"lng":9.0355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"159","name":"MOZZATE","lat":45.6731,"lng":8.9564,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"009","name":"ANZANO DEL PARCO","lat":45.7696,"lng":9.1966,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"203","name":"SALA COMACINA","lat":45.9652,"lng":9.1672,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"077","name":"CORRIDO","lat":46.0486,"lng":9.1367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"226","name":"TREZZONE","lat":46.1725,"lng":9.353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"175","name":"PARÈ","lat":45.8119,"lng":9.0099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"038","name":"CAGNO","lat":46.394,"lng":11.0429,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"178","name":"PEGLIO","lat":46.1609,"lng":9.2957,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"107","name":"GERA LARIO","lat":46.172,"lng":9.3688,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"050","name":"CASASCO D'INTELVI","lat":45.9447,"lng":9.0769,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"125","name":"LENNO","lat":45.9739,"lng":9.1921,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"227","name":"TURATE","lat":45.6583,"lng":9.0053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"126","name":"LEZZENO","lat":45.9458,"lng":9.1902,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"071","name":"CLAINO CON OSTENO","lat":46.0039,"lng":9.0875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"138","name":"LURATE CACCIVIO","lat":45.7675,"lng":9.0022,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"025","name":"BLESSAGNO","lat":45.96,"lng":9.0982,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"053","name":"CASNATE CON BERNATE","lat":45.7622,"lng":9.0755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"225","name":"TREMEZZO","lat":45.9846,"lng":9.2197,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"215","name":"SOLBIATE","lat":45.7906,"lng":8.9342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"065","name":"CERNOBBIO","lat":45.8409,"lng":9.0763,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"192","name":"PROSERPIO","lat":45.8278,"lng":9.2489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"163","name":"NOVEDRATE","lat":45.6991,"lng":9.1219,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"242","name":"VERTEMATE CON MINOPRIO","lat":45.7257,"lng":9.0731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"123","name":"LASNIGO","lat":45.883,"lng":9.2675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"205","name":"SAN FEDELE INTELVI","lat":45.9688,"lng":9.0819,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"113","name":"GRIANTE","lat":45.9946,"lng":9.2351,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"084","name":"CUCCIAGO","lat":45.7403,"lng":9.0941,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"109","name":"GIRONICO","lat":45.8012,"lng":9.0033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"059","name":"CASTELNUOVO BOZZENTE","lat":45.7656,"lng":8.9447,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"169","name":"OLTRONA DI SAN MAMETTE","lat":45.757,"lng":8.9791,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"223","name":"TORNO","lat":45.8561,"lng":9.1166,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"199","name":"RONAGO","lat":45.8333,"lng":8.9849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"063","name":"CERANO D'INTELVI","lat":45.9435,"lng":9.0877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"139","name":"MAGREGLIO","lat":45.9202,"lng":9.2617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"236","name":"VELESO","lat":45.9084,"lng":9.1816,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"004","name":"ALBESE CON CASSANO","lat":45.796,"lng":9.1649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"135","name":"LUISAGO","lat":45.763,"lng":9.0363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"074","name":"COLONNO","lat":45.9584,"lng":9.1544,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"092","name":"DOSSO DEL LIRO","lat":46.1643,"lng":9.275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"022","name":"BEREGAZZO CON FIGLIARO","lat":45.7717,"lng":8.9592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"201","name":"ROVELLASCA","lat":45.6655,"lng":9.0524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"093","name":"DREZZO","lat":45.8162,"lng":8.9959,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"120","name":"LAINO","lat":45.9855,"lng":9.0759,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"024","name":"BIZZARONE","lat":45.8353,"lng":8.9439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"047","name":"CARLAZZO","lat":46.0492,"lng":9.1593,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"249","name":"GRAVEDONA ED UNITI","lat":46.145802,"lng":46.145802,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"036","name":"CADORAGO","lat":45.7263,"lng":9.038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"187","name":"PONNA","lat":45.9901,"lng":9.0939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"152","name":"MOLTRASIO","lat":45.8609,"lng":9.0995,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"005","name":"ALBIOLO","lat":45.8066,"lng":8.9403,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"147","name":"MERONE","lat":45.7881,"lng":9.2452,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"089","name":"DOMASO","lat":46.1534,"lng":9.3323,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"055","name":"CASSINA RIZZARDI","lat":45.7526,"lng":9.0256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"035","name":"CABIATE","lat":45.6752,"lng":9.1749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"218","name":"STAZZONA","lat":46.1864,"lng":10.135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"061","name":"CAVALLASCA","lat":45.8128,"lng":9.0323,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"202","name":"ROVELLO PORRO","lat":45.6561,"lng":9.0416,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"099","name":"FALOPPIO","lat":45.8106,"lng":8.9655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"148","name":"MEZZEGRA","lat":45.9827,"lng":9.2063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"011","name":"ARGEGNO","lat":45.9439,"lng":9.1267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"155","name":"MONTEMEZZO","lat":46.1799,"lng":9.372,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"121","name":"LAMBRUGO","lat":45.7599,"lng":9.2406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"068","name":"CIRIMIDO","lat":45.7008,"lng":9.0138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"144","name":"MASLIANICO","lat":45.8465,"lng":9.0476,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"041","name":"CANTÙ","lat":45.7395,"lng":9.1294,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"013","codice_comu_istat":"217","name":"SORMANO","lat":45.8788,"lng":9.2499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"065","name":"TEGLIO","lat":46.172,"lng":10.0671,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"055","name":"RASURA","lat":46.1016,"lng":9.5535,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"012","name":"CAMPODOLCINO","lat":46.403,"lng":9.3534,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"069","name":"TRAONA","lat":46.1491,"lng":9.5332,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"064","name":"TARTANO","lat":46.1068,"lng":9.68,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"025","name":"DAZIO","lat":46.1624,"lng":9.6017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"022","name":"CIVO","lat":46.1552,"lng":9.5617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"043","name":"MESE","lat":46.3042,"lng":9.3775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"074","name":"VAL MASINO","lat":46.2124,"lng":9.6368,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"023","name":"COLORINA","lat":46.1547,"lng":9.7305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"060","name":"SONDALO","lat":46.3306,"lng":10.3268,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"006","name":"BEMA","lat":46.1045,"lng":9.5641,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"057","name":"SAMOLACO","lat":46.2434,"lng":9.3952,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"041","name":"MELLO","lat":46.1561,"lng":9.5476,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"037","name":"LIVIGNO","lat":46.5451,"lng":10.1413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"019","name":"CHIESA IN VALMALENCO","lat":46.2649,"lng":9.8505,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"005","name":"ARDENNO","lat":46.1653,"lng":9.6461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"075","name":"VERCEIA","lat":46.1997,"lng":9.456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"047","name":"PEDESINA","lat":46.0828,"lng":9.5506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"029","name":"FORCOLA","lat":46.1596,"lng":9.662,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"035","name":"MADESIMO","lat":46.437,"lng":9.3595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"026","name":"DELEBIO","lat":46.137,"lng":9.4617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"008","name":"BIANZONE","lat":46.1892,"lng":10.1105,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"072","name":"VALDISOTTO","lat":46.4281,"lng":10.3561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"024","name":"COSIO VALTELLINO","lat":46.1361,"lng":9.5528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"033","name":"GROSIO","lat":46.2968,"lng":10.2729,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"007","name":"BERBENNO DI VALTELLINA","lat":46.1688,"lng":9.7463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"062","name":"SPRIANA","lat":46.2218,"lng":9.8643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"040","name":"MAZZO DI VALTELLINA","lat":46.2596,"lng":10.2567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"052","name":"PONTE IN VALTELLINA","lat":46.1759,"lng":9.9789,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"044","name":"MONTAGNA IN VALTELLINA","lat":46.1796,"lng":9.9041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"017","name":"CERCINO","lat":46.1593,"lng":9.5076,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"066","name":"TIRANO","lat":46.2164,"lng":10.1689,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"049","name":"PIATEDA","lat":46.1606,"lng":9.9361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"015","name":"CASTIONE ANDEVENNO","lat":46.1738,"lng":9.8014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"067","name":"TORRE DI SANTA MARIA","lat":46.2345,"lng":9.8527,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"036","name":"LANZADA","lat":46.2703,"lng":9.8703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"016","name":"CEDRASCO","lat":46.1503,"lng":9.7681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"028","name":"FAEDO VALTELLINO","lat":46.1532,"lng":9.9084,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"021","name":"CINO","lat":46.1589,"lng":9.486,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"038","name":"LOVERO","lat":46.2324,"lng":10.2297,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"071","name":"VALDIDENTRO","lat":46.49,"lng":10.2952,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"020","name":"CHIURO","lat":46.1659,"lng":9.982,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"013","name":"CASPOGGIO","lat":46.2646,"lng":9.8639,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"046","name":"NOVATE MEZZOLA","lat":46.2225,"lng":9.4509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"039","name":"MANTELLO","lat":46.1534,"lng":9.49,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"003","name":"ANDALO VALTELLINO","lat":46.132,"lng":9.476,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"076","name":"VERVIO","lat":46.2521,"lng":10.2394,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"027","name":"DUBINO","lat":46.1728,"lng":9.4313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"031","name":"GEROLA ALTA","lat":46.0614,"lng":9.5509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"054","name":"PRATA CAMPORTACCIO","lat":46.3042,"lng":9.3966,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"030","name":"FUSINE","lat":46.1505,"lng":9.751,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"070","name":"TRESIVIO","lat":46.1767,"lng":9.9438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"034","name":"GROSOTTO","lat":46.2827,"lng":10.2589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"004","name":"APRICA","lat":46.1538,"lng":10.1528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"077","name":"VILLA DI CHIAVENNA","lat":46.3308,"lng":9.4826,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"032","name":"GORDONA","lat":46.2933,"lng":9.3664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"048","name":"PIANTEDO","lat":46.1352,"lng":9.4305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"056","name":"ROGOLO","lat":46.137,"lng":9.4855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"063","name":"TALAMONA","lat":46.1392,"lng":9.6145,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"009","name":"BORMIO","lat":46.4676,"lng":10.3781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"050","name":"PIURO","lat":46.3308,"lng":9.4217,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"073","name":"VALFURVA","lat":46.463,"lng":10.4105,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"018","name":"CHIAVENNA","lat":46.3197,"lng":9.3979,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"014","name":"CASTELLO DELL'ACQUA","lat":46.1459,"lng":10.0144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"068","name":"TOVO DI SANT'AGATA","lat":46.2464,"lng":10.2501,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"058","name":"SAN GIACOMO FILIPPO","lat":46.3388,"lng":9.3709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"042","name":"MENAROLA","lat":46.2983,"lng":9.3608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"011","name":"CAIOLO","lat":46.1509,"lng":9.8156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"061","name":"SONDRIO","lat":46.1713,"lng":9.8693,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"078","name":"VILLA DI TIRANO","lat":46.2049,"lng":10.135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"010","name":"BUGLIO IN MONTE","lat":46.1853,"lng":9.6795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"045","name":"MORBEGNO","lat":46.1327,"lng":9.5734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"001","name":"ALBAREDO PER SAN MARCO","lat":46.1009,"lng":9.5926,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"053","name":"POSTALESIO","lat":46.1747,"lng":9.7763,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"051","name":"POGGIRIDENTI","lat":46.1758,"lng":9.9272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"059","name":"SERNIO","lat":46.2245,"lng":10.2051,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"014","codice_comu_istat":"002","name":"ALBOSAGGIA","lat":46.1484,"lng":9.8552,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"201","name":"SAN VITTORE OLONA","lat":45.5868,"lng":8.9418,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"249","name":"VANZAGHELLO","lat":45.58,"lng":8.7798,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"072","name":"CERRO MAGGIORE","lat":45.5931,"lng":8.9515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"185","name":"RODANO","lat":45.4772,"lng":9.352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"108","name":"GORGONZOLA","lat":45.5307,"lng":9.4057,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"024","name":"BINASCO","lat":45.3363,"lng":9.1017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"179","name":"PREGNANA MILANESE","lat":45.5152,"lng":9.0091,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"230","name":"VAPRIO D'ADDA","lat":45.576,"lng":9.5322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"078","name":"CISLIANO","lat":45.4441,"lng":8.9908,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"169","name":"PAULLO","lat":45.418,"lng":9.4002,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"219","name":"TREZZANO ROSA","lat":45.5838,"lng":9.4878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"103","name":"GAGGIANO","lat":45.4063,"lng":9.0335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"172","name":"PESSANO CON BORNAGO","lat":45.5515,"lng":9.387,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"106","name":"GESSATE","lat":45.5558,"lng":9.435,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"247","name":"ZIBIDO SAN GIACOMO","lat":45.3615,"lng":9.0869,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"058","name":"CASOREZZO","lat":45.5238,"lng":8.9014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"170","name":"PERO","lat":45.7074,"lng":12.3489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"206","name":"SENAGO","lat":45.5754,"lng":9.1176,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"002","name":"ABBIATEGRASSO","lat":45.393,"lng":8.9198,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"200","name":"SANTO STEFANO TICINO","lat":45.4887,"lng":8.9191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"154","name":"NERVIANO","lat":45.5556,"lng":8.9757,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"150","name":"MORIMONDO","lat":45.3543,"lng":8.958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"005","name":"ALBAIRATE","lat":45.4196,"lng":8.9356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"224","name":"TRUCCAZZANO","lat":45.4851,"lng":9.4658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"012","name":"BAREGGIO","lat":45.476,"lng":8.9949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"131","name":"MAGNAGO","lat":45.5792,"lng":8.8025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"151","name":"MOTTA VISCONTI","lat":45.2872,"lng":8.9927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"010","name":"ARLUNO","lat":45.5052,"lng":8.9389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"114","name":"INZAGO","lat":45.5376,"lng":9.479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"077","name":"CINISELLO BALSAMO","lat":45.554,"lng":9.2243,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"191","name":"SAN COLOMBANO AL LAMBRO","lat":45.1821,"lng":9.4936,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"110","name":"GREZZAGO","lat":45.5907,"lng":9.4942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"112","name":"GUDO VISCONTI","lat":45.3738,"lng":9.0016,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"113","name":"INVERUNO","lat":45.5157,"lng":8.8538,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"144","name":"MESERO","lat":45.5011,"lng":8.8578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"166","name":"PADERNO DUGNANO","lat":45.5674,"lng":9.1595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"101","name":"DRESANO","lat":45.375,"lng":9.3573,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"038","name":"BUSCATE","lat":45.5447,"lng":8.8134,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"009","name":"ARESE","lat":45.5502,"lng":9.0784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"158","name":"NOVIGLIO","lat":45.3583,"lng":9.0534,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"236","name":"VERNATE","lat":45.3163,"lng":9.0604,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"192","name":"SAN DONATO MILANESE","lat":45.4149,"lng":9.2645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"155","name":"NOSATE","lat":45.5524,"lng":8.7254,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"159","name":"OPERA","lat":45.3757,"lng":9.211,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"188","name":"ROSATE","lat":45.3534,"lng":9.0235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"098","name":"CUSANO MILANINO","lat":45.5507,"lng":9.1814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"235","name":"VERMEZZO","lat":45.3948,"lng":8.9808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"071","name":"CERRO AL LAMBRO","lat":45.331,"lng":9.3416,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"026","name":"BOFFALORA SOPRA TICINO","lat":45.4683,"lng":8.8312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"007","name":"ARCONATE","lat":45.5395,"lng":8.8479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"116","name":"LAINATE","lat":45.5705,"lng":9.0289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"175","name":"PIOLTELLO","lat":45.504,"lng":9.3311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"171","name":"PESCHIERA BORROMEO","lat":45.432,"lng":9.3123,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"130","name":"MAGENTA","lat":45.4682,"lng":8.881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"248","name":"VILLA CORTESE","lat":45.567,"lng":8.8865,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"181","name":"RESCALDINA","lat":45.6158,"lng":8.9501,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"182","name":"RHO","lat":45.5298,"lng":9.0381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"213","name":"SOLARO","lat":45.6174,"lng":9.0815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"087","name":"CORNAREDO","lat":45.5015,"lng":9.024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"125","name":"LOCATE DI TRIULZI","lat":45.3579,"lng":9.2252,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"059","name":"CASSANO D'ADDA","lat":45.5261,"lng":9.5168,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"211","name":"SETTIMO MILANESE","lat":45.4793,"lng":9.0549,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"044","name":"CAMBIAGO","lat":45.5717,"lng":9.4214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"134","name":"MARCALLO CON CASONE","lat":45.4852,"lng":8.8704,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"204","name":"SEDRIANO","lat":45.4874,"lng":8.9696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"011","name":"ASSAGO","lat":45.4049,"lng":9.1304,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"157","name":"NOVATE MILANESE","lat":45.5318,"lng":9.1408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"165","name":"OZZERO","lat":45.3656,"lng":8.9239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"210","name":"SETTALA","lat":45.4523,"lng":9.3957,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"237","name":"VIGNATE","lat":45.495,"lng":9.3747,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"046","name":"CANEGRATE","lat":45.5701,"lng":8.9289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"194","name":"SAN GIORGIO SU LEGNANO","lat":45.5748,"lng":8.9148,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"014","name":"BASIANO","lat":45.5716,"lng":9.4674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"055","name":"CASARILE","lat":45.3171,"lng":9.106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"178","name":"POZZUOLO MARTESANA","lat":45.5135,"lng":9.4527,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"246","name":"ZELO SURRIGONE","lat":45.3878,"lng":8.9853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"016","name":"BELLINZAGO LOMBARDO","lat":45.5437,"lng":9.444,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"122","name":"LISCATE","lat":45.4815,"lng":9.4092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"042","name":"CALVIGNASCO","lat":45.3256,"lng":9.0269,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"070","name":"CERNUSCO SUL NAVIGLIO","lat":45.5266,"lng":9.3324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"173","name":"PIEVE EMANUELE","lat":45.3559,"lng":9.2027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"140","name":"MELEGNANO","lat":45.3569,"lng":9.323,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"015","name":"BASIGLIO","lat":45.3492,"lng":9.1644,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"244","name":"VIZZOLO PREDABISSI","lat":45.3558,"lng":9.3475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"146","name":"MILANO","lat":45.4612,"lng":9.1878,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"015","codice_comu_istat":"242","name":"VIMODRONE","lat":45.5135,"lng":9.2852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"202","name":"SAN ZENONE AL LAMBRO","lat":45.3247,"lng":9.3595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"062","name":"CASTANO PRIMO","lat":45.5531,"lng":8.7827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"195","name":"SAN GIULIANO MILANESE","lat":45.3983,"lng":9.2852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"167","name":"PANTIGLIATE","lat":45.4334,"lng":9.352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"183","name":"ROBECCHETTO CON INDUNO","lat":45.5327,"lng":8.7649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"184","name":"ROBECCO SUL NAVIGLIO","lat":45.4359,"lng":8.8874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"205","name":"SEGRATE","lat":45.5011,"lng":9.2917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"229","name":"VANZAGO","lat":45.5265,"lng":8.9967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"036","name":"BUCCINASCO","lat":45.4221,"lng":9.1086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"139","name":"MEDIGLIA","lat":45.3955,"lng":9.3327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"209","name":"SESTO SAN GIOVANNI","lat":45.5358,"lng":9.2389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"027","name":"BOLLATE","lat":45.5433,"lng":9.1153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"019","name":"BERNATE TICINO","lat":45.4782,"lng":8.8183,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"189","name":"ROZZANO","lat":45.3875,"lng":9.1514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"041","name":"BUSTO GAROLFO","lat":45.5456,"lng":8.8834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"060","name":"CASSINA DE' PECCHI","lat":45.5198,"lng":9.3656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"085","name":"CORBETTA","lat":45.466,"lng":8.9202,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"022","name":"BESATE","lat":45.312,"lng":8.9688,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"226","name":"TURBIGO","lat":45.5302,"lng":8.7398,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"032","name":"BRESSO","lat":45.5371,"lng":9.1914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"142","name":"MELZO","lat":45.4978,"lng":9.4184,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"136","name":"MASATE","lat":45.5666,"lng":9.4674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"081","name":"COLOGNO MONZESE","lat":45.5297,"lng":9.2783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"061","name":"CASSINETTA DI LUGAGNANO","lat":45.4258,"lng":8.9098,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"099","name":"DAIRAGO","lat":45.5658,"lng":8.8625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"096","name":"CUGGIONO","lat":45.5062,"lng":8.8167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"118","name":"LEGNANO","lat":45.5931,"lng":8.9072,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"176","name":"POGLIANO MILANESE","lat":45.5365,"lng":8.9894,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"051","name":"CARUGATE","lat":45.5506,"lng":9.3397,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"076","name":"CESATE","lat":45.5953,"lng":9.0778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"164","name":"OSSONA","lat":45.5067,"lng":8.9014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"097","name":"CUSAGO","lat":45.4472,"lng":9.0341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"250","name":"BARANZATE","lat":45.5274,"lng":9.117,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"115","name":"LACCHIARELLA","lat":45.3179,"lng":9.1391,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"050","name":"CARPIANO","lat":45.3414,"lng":9.2713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"222","name":"TRIBIANO","lat":45.4125,"lng":9.3796,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"177","name":"POZZO D'ADDA","lat":45.5759,"lng":9.501,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"035","name":"BUBBIANO","lat":45.3269,"lng":9.0156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"243","name":"VITTUONE","lat":45.4851,"lng":8.9586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"082","name":"COLTURANO","lat":45.3802,"lng":9.3361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"168","name":"PARABIAGO","lat":45.5568,"lng":8.9462,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"221","name":"TREZZO SULL'ADDA","lat":45.607,"lng":9.5213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"074","name":"CESANO BOSCONE","lat":45.4424,"lng":9.0986,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"086","name":"CORMANO","lat":45.5419,"lng":9.1684,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"105","name":"GARBAGNATE MILANESE","lat":45.5758,"lng":9.0781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"220","name":"TREZZANO SUL NAVIGLIO","lat":45.4183,"lng":9.0707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"093","name":"CORSICO","lat":45.4293,"lng":9.1099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"015","codice_comu_istat":"040","name":"BUSSERO","lat":45.5383,"lng":9.3728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"223","name":"VALBONDIONE","lat":46.0352,"lng":10.0071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"158","name":"PARRE","lat":45.8724,"lng":9.8881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"153","name":"OSIO SOTTO","lat":45.616,"lng":9.5903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"084","name":"COSTA DI MEZZATE","lat":45.663,"lng":9.795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"017","name":"AZZONE","lat":45.9792,"lng":10.1119,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"143","name":"MOZZO","lat":45.6939,"lng":9.6059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"068","name":"CENATE SOPRA","lat":45.7133,"lng":9.824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"155","name":"PALADINA","lat":45.7317,"lng":9.6071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"011","name":"ARCENE","lat":45.5766,"lng":9.6152,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"212","name":"TELGATE","lat":45.6298,"lng":9.8528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"035","name":"BRACCA","lat":45.8245,"lng":9.7099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"185","name":"RONCOLA","lat":45.7697,"lng":9.5617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"109","name":"GANDOSSO","lat":45.663,"lng":9.887,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"052","name":"CAPRINO BERGAMASCO","lat":45.7462,"lng":9.4828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"091","name":"DALMINE","lat":45.6507,"lng":9.603,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"137","name":"MONASTEROLO DEL CASTELLO","lat":45.7642,"lng":9.9328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"229","name":"VALTORTA","lat":45.9776,"lng":9.5327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"065","name":"CASTRO","lat":45.8039,"lng":10.0681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"214","name":"TORRE BOLDONE","lat":45.7152,"lng":9.7113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"233","name":"VERDELLO","lat":45.6058,"lng":9.63,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"220","name":"TREVIOLO","lat":45.6747,"lng":9.6131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"170","name":"PONTE SAN PIETRO","lat":43.8447,"lng":10.4178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"005","name":"ALMÈ","lat":45.737,"lng":9.6153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"236","name":"VIGANO SAN MARTINO","lat":45.727,"lng":9.8974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"069","name":"CENATE SOTTO","lat":45.7,"lng":9.8275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"196","name":"SEDRINA","lat":45.7828,"lng":9.6252,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"144","name":"NEMBRO","lat":45.7434,"lng":9.7594,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"067","name":"CAZZANO SANT'ANDREA","lat":45.8136,"lng":9.886,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"183","name":"ROMANO DI LOMBARDIA","lat":45.5215,"lng":9.7536,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"093","name":"ENDINE GAIANO","lat":45.7934,"lng":9.9702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"050","name":"CAPIZZONE","lat":45.7855,"lng":9.5689,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"074","name":"CISANO BERGAMASCO","lat":45.7425,"lng":9.47,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"167","name":"POGNANO","lat":45.5874,"lng":9.6411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"082","name":"CORNA IMAGNA","lat":45.8315,"lng":9.5461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"044","name":"CALCIO","lat":45.5105,"lng":9.8524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"073","name":"CHIUDUNO","lat":45.6517,"lng":9.8506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"041","name":"BRUMANO","lat":45.8523,"lng":9.501,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"031","name":"BONATE SOTTO","lat":45.6692,"lng":9.5599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"166","name":"PIAZZOLO","lat":45.9792,"lng":9.6707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"207","name":"STEZZANO","lat":45.6517,"lng":9.6521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"243","name":"VILMINORE DI SCALVE","lat":45.9988,"lng":10.0951,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"049","name":"CANONICA D'ADDA","lat":45.5767,"lng":9.5428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"244","name":"ZANDOBBIO","lat":45.6884,"lng":9.8525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"042","name":"BRUSAPORTO","lat":45.6724,"lng":9.7625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"020","name":"BARIANO","lat":45.5136,"lng":9.7049,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"178","name":"RANICA","lat":45.7242,"lng":9.7146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"126","name":"LEVATE","lat":45.6263,"lng":9.6253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"227","name":"VALNEGRA","lat":45.95,"lng":9.6905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"002","name":"ADRARA SAN ROCCO","lat":45.7167,"lng":9.9602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"026","name":"BIANZANO","lat":45.7741,"lng":9.9192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"238","name":"VILLA D'ADDA","lat":45.715,"lng":9.4628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"108","name":"GANDINO","lat":45.817,"lng":9.896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"247","name":"COSTA SERINA","lat":45.8338,"lng":9.7428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"173","name":"PRADALUNGA","lat":45.7469,"lng":9.7835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"083","name":"CORTENUOVA","lat":45.5382,"lng":9.7902,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"096","name":"FARA GERA D'ADDA","lat":45.5567,"lng":9.5389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"163","name":"PIARIO","lat":45.896,"lng":9.9244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"008","name":"ALZANO LOMBARDO","lat":45.7371,"lng":9.7372,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"128","name":"LOVERE","lat":45.8103,"lng":10.069,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"210","name":"TALEGGIO","lat":45.8944,"lng":9.5659,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"198","name":"SERIATE","lat":45.6855,"lng":9.722,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"237","name":"VIGOLO","lat":45.7178,"lng":10.0356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"141","name":"MORNICO AL SERIO","lat":45.5924,"lng":9.8103,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"061","name":"CASSIGLIO","lat":45.9673,"lng":9.614,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"250","name":"MEDOLAGO","lat":45.6695,"lng":9.4967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"114","name":"GORLAGO","lat":45.675,"lng":9.8241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"192","name":"SANT'OMOBONO TERME","lat":45.8168,"lng":9.5187,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"032","name":"BORGO DI TERZO","lat":45.7208,"lng":9.8941,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"226","name":"VALLEVE","lat":46.0271,"lng":9.7433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"154","name":"PAGAZZANO","lat":45.5353,"lng":9.6724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"113","name":"GHISALBA","lat":45.5958,"lng":9.7603,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"135","name":"MISANO DI GERA D'ADDA","lat":45.472,"lng":9.6236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"168","name":"PONTE NOSSA","lat":45.8668,"lng":9.884,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"190","name":"SAN PELLEGRINO TERME","lat":45.8394,"lng":9.6653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"171","name":"PONTIDA","lat":45.7332,"lng":9.4983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"211","name":"TAVERNOLA BERGAMASCA","lat":45.7103,"lng":10.0474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"195","name":"SCHILPARIO","lat":46.0088,"lng":10.1588,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"188","name":"SAN GIOVANNI BIANCO","lat":45.8748,"lng":9.6545,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"232","name":"VERDELLINO","lat":45.602,"lng":9.6092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"115","name":"GORLE","lat":45.7013,"lng":9.7139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"139","name":"MONTELLO","lat":45.6731,"lng":9.8067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"055","name":"CAROBBIO DEGLI ANGELI","lat":45.6663,"lng":9.8303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"125","name":"LENNA","lat":45.9434,"lng":9.6778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"037","name":"BREMBATE","lat":45.7177,"lng":9.5806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"187","name":"ROVETTA","lat":45.8939,"lng":9.9845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"036","name":"BRANZI","lat":46.0034,"lng":9.7605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"208","name":"STROZZA","lat":45.7741,"lng":9.5786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"230","name":"VEDESETA","lat":45.8912,"lng":9.5399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"162","name":"PIANICO","lat":45.811,"lng":10.0442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"249","name":"CORNALBA","lat":45.8506,"lng":9.7466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"118","name":"GROMO","lat":45.965,"lng":9.9281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"089","name":"CURNO","lat":45.6908,"lng":9.6103,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"085","name":"COSTA VALLE IMAGNA","lat":45.805,"lng":9.503,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"129","name":"LURANO","lat":45.5624,"lng":9.6407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"033","name":"BOSSICO","lat":45.8275,"lng":10.0445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"022","name":"BEDULITA","lat":45.7912,"lng":9.5521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"004","name":"ALBINO","lat":45.7583,"lng":9.7969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"106","name":"FUIPIANO VALLE IMAGNA","lat":45.8506,"lng":9.526,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"075","name":"CISERANO","lat":45.585,"lng":9.6004,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"090","name":"CUSIO","lat":45.9909,"lng":9.6038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"222","name":"URGNANO","lat":45.6016,"lng":9.6949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"165","name":"PIAZZATORRE","lat":45.9934,"lng":9.694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"010","name":"ANTEGNATE","lat":45.4875,"lng":9.7925,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"204","name":"SOVERE","lat":45.8153,"lng":10.0295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"092","name":"DOSSENA","lat":45.8812,"lng":9.6978,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"003","name":"ALBANO SANT'ALESSANDRO","lat":45.6875,"lng":9.7717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"077","name":"CLUSONE","lat":45.8881,"lng":9.9508,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"131","name":"MADONE","lat":45.6507,"lng":9.5495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"191","name":"SANTA BRIGIDA","lat":46.0185,"lng":11.1048,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"186","name":"ROTA D'IMAGNA","lat":45.8317,"lng":9.5125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"122","name":"ISSO","lat":45.4768,"lng":9.7577,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"157","name":"PALOSCO","lat":45.5877,"lng":9.836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"206","name":"SPIRANO","lat":45.5831,"lng":9.67,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"072","name":"CHIGNOLO D'ISOLA","lat":45.6686,"lng":9.5288,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"189","name":"SAN PAOLO D'ARGON","lat":45.6894,"lng":9.8035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"029","name":"BOLTIERE","lat":45.6019,"lng":9.5795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"056","name":"CARONA","lat":46.0241,"lng":9.79,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"140","name":"MORENGO","lat":45.5325,"lng":9.7071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"146","name":"OLTRE IL COLLE","lat":45.8905,"lng":9.7703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"175","name":"PREMOLO","lat":45.8713,"lng":9.8758,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"201","name":"SONGAVAZZO","lat":45.8804,"lng":9.9885,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"047","name":"CALVENZANO","lat":45.4978,"lng":9.6025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"006","name":"ALMENNO SAN BARTOLOMEO","lat":45.7488,"lng":9.5797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"234","name":"VERTOVA","lat":45.8114,"lng":9.8544,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"110","name":"GAVERINA TERME","lat":45.7567,"lng":9.8878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"221","name":"UBIALE CLANEZZO","lat":45.7614,"lng":9.6027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"015","name":"AVIATICO","lat":45.7986,"lng":9.7725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"145","name":"OLMO AL BREMBO","lat":45.972,"lng":9.6492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"060","name":"CASNIGO","lat":45.815,"lng":9.8676,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"062","name":"CASTELLI CALEPIO","lat":45.639,"lng":9.9039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"016","name":"AZZANO SAN PAOLO","lat":45.6589,"lng":9.6742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"172","name":"PONTIROLO NUOVO","lat":45.5702,"lng":9.5705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"134","name":"MEZZOLDO","lat":46.0135,"lng":9.6649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"097","name":"FARA OLIVANA CON SOLA","lat":45.4961,"lng":9.7502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"193","name":"SARNICO","lat":45.6677,"lng":9.9582,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"057","name":"CARVICO","lat":45.7049,"lng":9.4835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"080","name":"COLZATE","lat":45.8181,"lng":9.8574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"133","name":"MARTINENGO","lat":45.5741,"lng":9.7681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"112","name":"GEROSA","lat":45.8508,"lng":9.5706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"184","name":"RONCOBELLO","lat":45.9564,"lng":9.7488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"051","name":"CAPRIATE SAN GERVASIO","lat":45.6084,"lng":9.5279,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"048","name":"CAMERATA CORNELLO","lat":45.8997,"lng":9.6575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"111","name":"GAZZANIGA","lat":45.7944,"lng":9.831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"021","name":"BARZANA","lat":45.7366,"lng":9.5684,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"177","name":"PUMENENGO","lat":45.4803,"lng":9.8706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"094","name":"ENTRATICO","lat":45.7088,"lng":9.8742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"224","name":"VALBREMBO","lat":45.7195,"lng":9.6102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"248","name":"ALGUA","lat":45.8017,"lng":9.744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"100","name":"FIORANO AL SERIO","lat":45.8013,"lng":9.8439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"104","name":"FORESTO SPARSO","lat":45.6919,"lng":9.9213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"046","name":"CALUSCO D'ADDA","lat":45.6924,"lng":9.4738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"117","name":"GRASSOBBIO","lat":45.6578,"lng":9.7267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"086","name":"COSTA VOLPINO","lat":45.831,"lng":10.0992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"228","name":"VALSECCA","lat":45.8283,"lng":9.4964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"179","name":"RANZANICO","lat":45.7894,"lng":9.9363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"239","name":"VILLA D'ALMÈ","lat":45.7506,"lng":9.6156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"028","name":"BOLGARE","lat":45.6361,"lng":9.8139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"123","name":"LALLIO","lat":45.6674,"lng":9.6313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"147","name":"OLTRESSENDA ALTA","lat":45.9163,"lng":9.9459,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"078","name":"COLERE","lat":45.9753,"lng":10.0839,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"012","name":"ARDESIO","lat":45.9384,"lng":9.9324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"202","name":"SORISOLE","lat":45.7452,"lng":9.6625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"164","name":"PIAZZA BREMBANA","lat":45.9477,"lng":9.6752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"043","name":"CALCINATE","lat":45.6212,"lng":9.8003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"235","name":"VIADANICA","lat":45.6856,"lng":9.9625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"136","name":"MOIO DE' CALVI","lat":45.9531,"lng":9.7003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"121","name":"ISOLA DI FONDRA","lat":45.9684,"lng":9.7344,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"009","name":"AMBIVERE","lat":45.7207,"lng":9.551,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"169","name":"PONTERANICA","lat":45.7334,"lng":9.6528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"130","name":"LUZZANA","lat":45.7845,"lng":9.2949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"039","name":"BREMBILLA","lat":45.8183,"lng":9.5993,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"245","name":"ZANICA","lat":45.6404,"lng":9.6846,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"152","name":"OSIO SOPRA","lat":45.63,"lng":9.5858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"251","name":"SOLZA","lat":45.6791,"lng":9.4905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"149","name":"ONORE","lat":45.8906,"lng":10.01,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"059","name":"CASIRATE D'ADDA","lat":45.4978,"lng":9.5674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"203","name":"SOTTO IL MONTE GIOVANNI XXIII","lat":45.7067,"lng":9.5045,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"127","name":"LOCATELLO","lat":45.8363,"lng":9.5352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"027","name":"BLELLO","lat":45.8353,"lng":9.5749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"103","name":"FOPPOLO","lat":46.0428,"lng":9.7586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"079","name":"COLOGNO AL SERIO","lat":45.5831,"lng":9.7099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"176","name":"PRESEZZO","lat":45.6931,"lng":9.5714,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"098","name":"FILAGO","lat":45.6386,"lng":9.5575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"217","name":"TORRE PALLAVICINA","lat":45.4474,"lng":9.8781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"119","name":"GRONE","lat":45.7278,"lng":9.9099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"058","name":"CASAZZA","lat":45.75,"lng":9.9099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"242","name":"VILLONGO","lat":45.6689,"lng":9.931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"025","name":"BERZO SAN FERMO","lat":45.7193,"lng":9.9029,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"076","name":"CIVIDATE AL PIANO","lat":45.556,"lng":9.832,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"159","name":"PARZANICA","lat":45.7382,"lng":10.0364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"213","name":"TERNO D'ISOLA","lat":45.6864,"lng":9.532,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"124","name":"LEFFE","lat":45.8017,"lng":9.8866,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"132","name":"MAPELLO","lat":45.7088,"lng":9.5479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"102","name":"FONTENO","lat":45.7573,"lng":10.019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"081","name":"COMUN NUOVO","lat":45.6238,"lng":9.661,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"150","name":"ORIO AL SERIO","lat":45.6744,"lng":9.6899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"040","name":"BRIGNANO GERA D'ADDA","lat":45.5475,"lng":9.6488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"219","name":"TREVIGLIO","lat":45.5214,"lng":9.5897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"013","name":"ARZAGO D'ADDA","lat":45.4824,"lng":9.5653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"107","name":"GANDELLINO","lat":45.9899,"lng":9.9464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"246","name":"ZOGNO","lat":45.7928,"lng":9.6574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"180","name":"RIVA DI SOLTO","lat":45.778,"lng":10.0447,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"064","name":"CASTIONE DELLA PRESOLANA","lat":45.9153,"lng":10.0647,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"174","name":"PREDORE","lat":45.6817,"lng":10.0155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"160","name":"PEDRENGO","lat":45.697,"lng":9.7361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"199","name":"SERINA","lat":45.8725,"lng":9.7324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"216","name":"TORRE DE' ROVERI","lat":45.7002,"lng":9.7726,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"148","name":"ONETA","lat":45.8725,"lng":9.8205,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"018","name":"BAGNATICA","lat":45.6619,"lng":9.7822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"101","name":"FONTANELLA","lat":43.7981,"lng":10.9033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"099","name":"FINO DEL MONTE","lat":45.8938,"lng":9.9952,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"024","name":"BERGAMO","lat":45.6833,"lng":9.7167,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"007","name":"ALMENNO SAN SALVATORE","lat":45.7513,"lng":9.5974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"241","name":"VILLA D'OGNA","lat":45.9056,"lng":9.9321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"070","name":"CENE","lat":45.7842,"lng":9.8266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"023","name":"BERBENNO","lat":45.8153,"lng":9.5729,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"161","name":"PEIA","lat":45.8019,"lng":9.8998,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"225","name":"VALGOGLIO","lat":45.9741,"lng":9.9121,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"218","name":"TRESCORE BALNEARIO","lat":45.6949,"lng":9.8465,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"142","name":"MOZZANICA","lat":45.4764,"lng":9.6925,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"087","name":"COVO","lat":45.5012,"lng":9.7724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"066","name":"CAVERNAGO","lat":45.6257,"lng":9.7668,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"240","name":"VILLA DI SERIO","lat":45.7252,"lng":9.7374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"197","name":"SELVINO","lat":45.7821,"lng":9.7534,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"182","name":"ROGNO","lat":45.8575,"lng":10.1333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"105","name":"FORNOVO SAN GIOVANNI","lat":45.4988,"lng":9.6797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"156","name":"PALAZZAGO","lat":45.753,"lng":9.5334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"034","name":"BOTTANUCO","lat":45.6406,"lng":9.5035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"200","name":"SOLTO COLLINA","lat":45.7846,"lng":10.0288,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"038","name":"BREMBATE DI SOPRA","lat":45.7177,"lng":9.5806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"019","name":"BARBATA","lat":45.4751,"lng":9.7769,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"053","name":"CARAVAGGIO","lat":45.4973,"lng":9.6439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"151","name":"ORNICA","lat":45.9883,"lng":9.5791,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"001","name":"ADRARA SAN MARTINO","lat":45.6995,"lng":9.9476,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"120","name":"GRUMELLO DEL MONTE","lat":45.6381,"lng":9.8778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"030","name":"BONATE SOPRA","lat":45.6829,"lng":9.5586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"014","name":"AVERARA","lat":45.9892,"lng":9.6317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"209","name":"SUISIO","lat":45.6585,"lng":9.5012,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"194","name":"SCANZOROSCIATE","lat":45.7117,"lng":9.7363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"071","name":"CERETE","lat":45.8683,"lng":9.9956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"088","name":"CREDARO","lat":45.6616,"lng":9.9322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"205","name":"SPINONE AL LAGO","lat":45.7683,"lng":9.9257,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"116","name":"GORNO","lat":45.8634,"lng":9.8427,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"016","codice_comu_istat":"063","name":"CASTEL ROZZONE","lat":45.5533,"lng":9.6209,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"153","name":"PRESEGLIE","lat":45.6695,"lng":10.3919,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"200","name":"VILLACHIARA","lat":45.3564,"lng":9.932,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"043","name":"CASTENEDOLO","lat":45.4705,"lng":10.2967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"035","name":"CAPO DI PONTE","lat":46.0303,"lng":10.3425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"061","name":"CONCESIO","lat":45.6065,"lng":10.2155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"038","name":"CAPRIOLO","lat":45.6389,"lng":9.9339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"196","name":"VEROLAVECCHIA","lat":45.3281,"lng":10.0583,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"067","name":"DESENZANO DEL GARDA","lat":45.4689,"lng":10.535,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"031","name":"CAINO","lat":45.6103,"lng":10.3142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"053","name":"CIGOLE","lat":45.3101,"lng":10.1904,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"105","name":"MARMENTINO","lat":45.7557,"lng":10.2859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"042","name":"CASTEL MELLA","lat":45.4962,"lng":10.1417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"157","name":"PROVAGLIO VAL SABBIA","lat":45.6897,"lng":10.4342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"125","name":"ORZINUOVI","lat":45.4019,"lng":9.9243,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"052","name":"CHIARI","lat":45.5382,"lng":9.9302,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"104","name":"MARCHENO","lat":45.7048,"lng":10.2111,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"068","name":"EDOLO","lat":46.1792,"lng":10.3303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"039","name":"CARPENEDOLO","lat":45.363,"lng":10.43,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"185","name":"TIGNALE","lat":45.7397,"lng":10.7217,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"044","name":"CASTO","lat":45.6956,"lng":10.3206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"155","name":"PREVALLE","lat":45.5524,"lng":10.4231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"015","name":"BERLINGO","lat":45.5026,"lng":10.0443,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"197","name":"VESTONE","lat":45.709,"lng":10.4006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"164","name":"ROÈ VOLCIANO","lat":45.613,"lng":10.4897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"014","name":"BEDIZZOLE","lat":45.5117,"lng":10.4246,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"198","name":"VEZZA D'OGLIO","lat":46.2402,"lng":10.3981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"195","name":"VEROLANUOVA","lat":45.3292,"lng":10.0771,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"161","name":"REZZATO","lat":45.5144,"lng":10.3169,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"117","name":"NAVE","lat":45.98,"lng":12.5025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"050","name":"CETO","lat":46.0031,"lng":10.3515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"040","name":"CASTEGNATO","lat":45.5613,"lng":10.115,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"135","name":"PASPARDO","lat":46.0311,"lng":10.3705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"112","name":"MONTICELLI BRUSATI","lat":45.6358,"lng":10.1014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"084","name":"IRMA","lat":45.7712,"lng":10.285,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"002","name":"ADRO","lat":45.6218,"lng":9.9574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"058","name":"COLLIO","lat":45.8101,"lng":10.3342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"065","name":"DARFO BOARIO TERME","lat":45.8801,"lng":10.1826,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"049","name":"CERVENO","lat":46.0037,"lng":10.3242,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"123","name":"OME","lat":45.6266,"lng":10.1229,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"127","name":"OSPITALETTO","lat":44.4356,"lng":10.895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"183","name":"TAVERNOLE SUL MELLA","lat":45.7472,"lng":10.2404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"091","name":"LOGRATO","lat":45.4853,"lng":10.0543,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"136","name":"PASSIRANO","lat":45.5997,"lng":10.0678,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"119","name":"NUVOLENTO","lat":45.5467,"lng":10.3878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"095","name":"LOZIO","lat":45.9857,"lng":10.2605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"122","name":"OFFLAGA","lat":45.3872,"lng":10.1166,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"180","name":"SOIANO DEL LAGO","lat":45.5288,"lng":10.5138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"143","name":"PISOGNE","lat":45.8046,"lng":10.1086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"133","name":"PALAZZOLO SULL'OGLIO","lat":45.5996,"lng":9.8849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"005","name":"ANFO","lat":45.7674,"lng":10.4949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"007","name":"ARTOGNE","lat":45.8496,"lng":10.1652,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"193","name":"VALLIO TERME","lat":45.6104,"lng":10.396,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"139","name":"PERTICA ALTA","lat":45.7435,"lng":10.3453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"009","name":"BAGNOLO MELLA","lat":45.4297,"lng":10.1862,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"097","name":"MACLODIO","lat":45.4788,"lng":10.0433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"088","name":"LENO","lat":45.3668,"lng":10.2185,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"017","name":"BERZO INFERIORE","lat":45.9321,"lng":10.2808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"156","name":"PROVAGLIO D'ISEO","lat":45.6364,"lng":10.0458,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"118","name":"NIARDO","lat":45.9771,"lng":10.3344,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"106","name":"MARONE","lat":45.7376,"lng":10.094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"079","name":"GIANICO","lat":45.8651,"lng":10.182,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"182","name":"SULZANO","lat":45.6899,"lng":10.1003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"124","name":"ONO SAN PIETRO","lat":46.0169,"lng":10.3259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"012","name":"BARGHE","lat":45.6794,"lng":10.4096,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"154","name":"PRESTINE","lat":45.9295,"lng":10.3106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"063","name":"CORTENO GOLGI","lat":46.1658,"lng":10.241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"189","name":"TREMOSINE","lat":45.7724,"lng":10.7591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"045","name":"CASTREZZATO","lat":45.5124,"lng":9.9821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"107","name":"MAZZANO","lat":45.5211,"lng":10.355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"093","name":"LONGHENA","lat":45.4388,"lng":10.0608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"173","name":"SAN ZENO NAVIGLIO","lat":45.4899,"lng":10.2168,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"046","name":"CAZZAGO SAN MARTINO","lat":45.5965,"lng":10.0421,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"115","name":"MURA","lat":45.7142,"lng":10.3438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"082","name":"IDRO","lat":45.7361,"lng":10.4651,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"089","name":"LIMONE SUL GARDA","lat":45.8147,"lng":10.7932,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"056","name":"COCCAGLIO","lat":45.5656,"lng":9.9753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"177","name":"SENIGA","lat":45.2438,"lng":10.1791,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"076","name":"GARGNANO","lat":45.6887,"lng":10.6624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"126","name":"ORZIVECCHI","lat":45.4216,"lng":9.9644,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"081","name":"GUSSAGO","lat":45.5928,"lng":10.1539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"011","name":"BARBARIGA","lat":45.4061,"lng":10.0555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"086","name":"ISORELLA","lat":45.3092,"lng":10.3235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"111","name":"MONTE ISOLA","lat":45.7172,"lng":10.081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"184","name":"TEMÙ","lat":46.249,"lng":10.469,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"047","name":"CEDEGOLO","lat":46.0774,"lng":10.3486,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"108","name":"MILZANO","lat":45.2745,"lng":10.2003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"064","name":"CORZANO","lat":45.4449,"lng":10.0084,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"034","name":"CALVISANO","lat":45.3492,"lng":10.3461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"021","name":"BORGOSATOLLO","lat":45.4817,"lng":10.2422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"165","name":"RONCADELLE","lat":45.7631,"lng":12.388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"078","name":"GHEDI","lat":45.4026,"lng":10.2748,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"169","name":"SALE MARASINO","lat":45.7042,"lng":10.1141,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"121","name":"ODOLO","lat":45.6463,"lng":10.3847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"008","name":"AZZANO MELLA","lat":45.4556,"lng":10.1183,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"022","name":"BORNO","lat":45.946,"lng":10.1998,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"110","name":"MONNO","lat":46.2121,"lng":10.3408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"048","name":"CELLATICA","lat":45.583,"lng":10.1813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"116","name":"MUSCOLINE","lat":45.5634,"lng":10.463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"129","name":"PADENGHE SUL GARDA","lat":45.5106,"lng":10.5075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"090","name":"LODRINO","lat":45.7197,"lng":10.2768,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"032","name":"CALCINATO","lat":45.4581,"lng":10.4147,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"194","name":"VALVESTINO","lat":45.7587,"lng":10.582,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"003","name":"AGNOSINE","lat":45.6508,"lng":10.3521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"131","name":"PAISCO LOVENO","lat":46.0647,"lng":10.249,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"023","name":"BOTTICINO","lat":43.9313,"lng":10.6494,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"163","name":"RODENGO SAIANO","lat":45.6012,"lng":10.1083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"020","name":"BORGO SAN GIACOMO","lat":45.348,"lng":9.9695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"145","name":"POLPENAZZE DEL GARDA","lat":45.5522,"lng":10.5059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"098","name":"MAGASA","lat":45.7824,"lng":10.617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"190","name":"TRENZANO","lat":45.4783,"lng":10.0117,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"170","name":"SALÒ","lat":45.607,"lng":10.5223,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"138","name":"SAN PAOLO","lat":40.6463,"lng":17.3265,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"152","name":"PRALBOINO","lat":45.2671,"lng":10.2183,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"062","name":"CORTE FRANCA","lat":45.631,"lng":9.9892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"186","name":"TORBOLE CASAGLIA","lat":45.5136,"lng":10.1166,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"077","name":"GAVARDO","lat":45.5856,"lng":10.4413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"087","name":"LAVENONE","lat":45.7399,"lng":10.4393,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"073","name":"GAMBARA","lat":45.2563,"lng":10.2945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"085","name":"ISEO","lat":45.6595,"lng":10.0475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"066","name":"DELLO","lat":45.4212,"lng":10.0783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"176","name":"SELLERO","lat":46.0566,"lng":10.3433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"160","name":"REMEDELLO","lat":45.2794,"lng":10.3731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"016","name":"BERZO DEMO","lat":46.0935,"lng":10.3336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"083","name":"INCUDINE","lat":46.2213,"lng":10.3599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"006","name":"ANGOLO TERME","lat":45.8922,"lng":10.1445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"059","name":"COLOGNE","lat":45.5824,"lng":9.9425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"158","name":"PUEGNAGO SUL GARDA","lat":45.5679,"lng":10.5098,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"099","name":"MAIRANO","lat":45.3117,"lng":9.3606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"149","name":"PONTEVICO","lat":45.2716,"lng":10.0859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"018","name":"BIENNO","lat":45.9367,"lng":10.2946,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"146","name":"POMPIANO","lat":45.433,"lng":9.9903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"137","name":"PAVONE DEL MELLA","lat":45.3025,"lng":10.2106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"120","name":"NUVOLERA","lat":45.5331,"lng":10.3703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"102","name":"MANERBA DEL GARDA","lat":45.5495,"lng":10.5529,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"206","name":"PIANCOGNO","lat":45.9206,"lng":10.2267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"100","name":"MALEGNO","lat":45.9515,"lng":10.2707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"142","name":"PIAN CAMUNO","lat":45.8443,"lng":10.1578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"037","name":"CAPRIANO DEL COLLE","lat":45.4543,"lng":10.1289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"092","name":"LONATO DEL GARDA","lat":45.4609,"lng":10.4845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"168","name":"SABBIO CHIESE","lat":45.6626,"lng":10.4193,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"072","name":"FLERO","lat":45.4836,"lng":10.1745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"187","name":"TOSCOLANO-MADERNO","lat":45.6355,"lng":10.6096,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"057","name":"COLLEBEATO","lat":45.5822,"lng":10.2113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"004","name":"ALFIANELLO","lat":45.268,"lng":10.1492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"055","name":"CIVIDATE CAMUNO","lat":45.9434,"lng":10.2786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"205","name":"ZONE","lat":43.8593,"lng":10.5944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"167","name":"RUDIANO","lat":45.4895,"lng":9.8881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"028","name":"BRENO","lat":45.9555,"lng":10.3019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"171","name":"SAN FELICE DEL BENACO","lat":45.5902,"lng":10.5511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"181","name":"SONICO","lat":46.1664,"lng":10.3539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"201","name":"VILLANUOVA SUL CLISI","lat":45.6013,"lng":10.4539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"069","name":"ERBUSCO","lat":45.5974,"lng":9.9718,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"188","name":"TRAVAGLIATO","lat":45.5234,"lng":10.079,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"027","name":"BRAONE","lat":45.9892,"lng":10.3426,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"054","name":"CIMBERGO","lat":46.025,"lng":10.3656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"113","name":"MONTICHIARI","lat":45.4118,"lng":10.3928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"141","name":"PEZZAZE","lat":45.7774,"lng":10.237,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"075","name":"GARDONE VAL TROMPIA","lat":45.6883,"lng":10.1858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"174","name":"SAREZZO","lat":45.6537,"lng":10.2037,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"144","name":"POLAVENO","lat":45.6625,"lng":10.125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"191","name":"TREVISO BRESCIANO","lat":45.7128,"lng":10.4617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"175","name":"SAVIORE DELL'ADAMELLO","lat":46.0797,"lng":10.4007,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"010","name":"BAGOLINO","lat":45.8263,"lng":10.4606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"162","name":"ROCCAFRANCA","lat":45.4653,"lng":9.9156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"060","name":"COMEZZANO-CIZZAGO","lat":45.4724,"lng":9.9513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"001","name":"ACQUAFREDDA","lat":40.0354,"lng":15.6744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"130","name":"PADERNO FRANCIACORTA","lat":45.5871,"lng":10.079,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"202","name":"VIONE","lat":46.2486,"lng":10.4479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"024","name":"BOVEGNO","lat":45.7938,"lng":10.2736,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"172","name":"SAN GERVASIO BRESCIANO","lat":45.3085,"lng":10.1499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"074","name":"GARDONE RIVIERA","lat":45.6223,"lng":10.5625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"178","name":"SERLE","lat":45.573,"lng":10.3661,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"019","name":"BIONE","lat":45.6734,"lng":10.3403,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"128","name":"OSSIMO","lat":45.9458,"lng":10.2294,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"025","name":"BOVEZZO","lat":45.5925,"lng":10.2424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"114","name":"MONTIRONE","lat":45.4474,"lng":10.2299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"199","name":"VILLA CARCINA","lat":45.6334,"lng":10.1917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"051","name":"CEVO","lat":46.2036,"lng":10.0045,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"080","name":"GOTTOLENGO","lat":45.293,"lng":10.271,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"101","name":"MALONNO","lat":46.1181,"lng":10.3122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"103","name":"MANERBIO","lat":45.3551,"lng":10.1419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"026","name":"BRANDICO","lat":45.4552,"lng":10.0538,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"029","name":"BRESCIA","lat":45.55,"lng":10.25,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"192","name":"URAGO D'OGLIO","lat":45.517,"lng":9.8708,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"150","name":"PONTOGLIO","lat":45.5708,"lng":9.8542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"151","name":"POZZOLENGO","lat":45.4032,"lng":10.6272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"147","name":"PONCARALE","lat":45.4621,"lng":10.1778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"134","name":"PARATICO","lat":45.655,"lng":9.957,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"204","name":"VOBARNO","lat":45.6424,"lng":10.5009,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"096","name":"LUMEZZANE","lat":45.6496,"lng":10.2618,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"159","name":"QUINZANO D'OGLIO","lat":45.3119,"lng":10.0097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"132","name":"PAITONE","lat":45.5519,"lng":10.4028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"041","name":"CASTELCOVATI","lat":45.5026,"lng":9.9469,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"179","name":"SIRMIONE","lat":45.4925,"lng":10.6081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"203","name":"VISANO","lat":45.3194,"lng":10.3734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"070","name":"ESINE","lat":45.9254,"lng":10.251,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"033","name":"CALVAGESE DELLA RIVIERA","lat":45.5416,"lng":10.4462,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"166","name":"ROVATO","lat":45.5682,"lng":10.0,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"036","name":"CAPOVALLE","lat":45.754,"lng":10.5443,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"030","name":"BRIONE","lat":45.639671,"lng":10.14179,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"094","name":"LOSINE","lat":45.9842,"lng":10.3175,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"140","name":"PERTICA BASSA","lat":45.7544,"lng":10.3736,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"071","name":"FIESSE","lat":45.2325,"lng":10.3254,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"109","name":"MONIGA DEL GARDA","lat":45.5276,"lng":10.5397,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"148","name":"PONTE DI LEGNO","lat":46.2595,"lng":10.5099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"017","codice_comu_istat":"013","name":"BASSANO BRESCIANO","lat":45.3273,"lng":10.1256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"023","name":"BRESSANA BOTTARONE","lat":45.0881,"lng":9.1159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"127","name":"ROGNANO","lat":45.2889,"lng":9.0904,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"130","name":"ROSASCO","lat":45.2519,"lng":8.5801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"101","name":"MORNICO LOSANA","lat":45.0082,"lng":9.1911,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"184","name":"ZAVATTARELLO","lat":44.8684,"lng":9.2663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"111","name":"PIETRA DE' GIORGI","lat":45.0226,"lng":9.2308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"095","name":"MONTEBELLO DELLA BATTAGLIA","lat":45.002,"lng":9.1045,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"124","name":"ROBECCO PAVESE","lat":45.0493,"lng":9.152,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"159","name":"TORRE D'ISOLA","lat":45.2184,"lng":9.0774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"066","name":"GALLIAVOLA","lat":45.098,"lng":8.8187,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"153","name":"STRADELLA","lat":45.0741,"lng":9.3019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"113","name":"PIEVE DEL CAIRO","lat":45.0509,"lng":8.8053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"183","name":"VOLPARA","lat":44.9541,"lng":9.298,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"112","name":"PIEVE ALBIGNOLA","lat":45.1139,"lng":8.9625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"018","name":"BORGO SAN SIRO","lat":45.2359,"lng":8.9147,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"020","name":"BOSNASCO","lat":45.0655,"lng":9.3599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"042","name":"CECIMA","lat":44.8517,"lng":9.0814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"027","name":"CANDIA LOMELLINA","lat":45.1799,"lng":8.5959,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"022","name":"BREME","lat":45.1271,"lng":8.6249,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"074","name":"GOLFERENZO","lat":44.962,"lng":9.307,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"056","name":"CORTEOLONA","lat":45.1589,"lng":9.3705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"053","name":"COPIANO","lat":45.1974,"lng":9.3236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"182","name":"VOGHERA","lat":44.9922,"lng":9.0097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"157","name":"TORRE D'ARESE","lat":45.2438,"lng":9.3184,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"061","name":"DORNO","lat":45.157,"lng":8.9539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"150","name":"SIZIANO","lat":45.3153,"lng":9.2042,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"119","name":"REA","lat":45.1144,"lng":9.1558,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"166","name":"VAL DI NIZZA","lat":44.8781,"lng":9.1656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"029","name":"CANNETO PAVESE","lat":45.0514,"lng":9.2799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"180","name":"VILLANTERIO","lat":45.2205,"lng":9.3655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"032","name":"CASATISMA","lat":45.05,"lng":9.1331,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"094","name":"MONTALTO PAVESE","lat":44.9787,"lng":9.2118,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"087","name":"MARZANO","lat":45.2488,"lng":9.2962,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"083","name":"LOMELLO","lat":45.122,"lng":8.7974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"079","name":"LANGOSCO","lat":45.2159,"lng":8.5619,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"137","name":"SAN MARTINO SICCOMARIO","lat":45.162,"lng":9.137,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"088","name":"MEDE","lat":45.0989,"lng":8.737,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"017","name":"BORGORATTO MORMOROLO","lat":44.9317,"lng":9.1944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"188","name":"ZERBO","lat":45.1114,"lng":9.3972,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"002","name":"ALBAREDO ARNABOLDI","lat":45.107,"lng":9.2428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"165","name":"TROVO","lat":45.2839,"lng":9.0366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"103","name":"NICORVO","lat":45.2854,"lng":8.6678,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"167","name":"VALEGGIO","lat":45.1517,"lng":8.8611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"054","name":"CORANA","lat":45.0627,"lng":8.9696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"132","name":"RUINO","lat":44.9273,"lng":9.2743,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"096","name":"MONTECALVO VERSIGGIA","lat":44.9725,"lng":9.2848,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"140","name":"SANTA GIULETTA","lat":45.035,"lng":9.1847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"060","name":"CURA CARPIGNANO","lat":45.2134,"lng":9.2567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"155","name":"TORRAZZA COSTE","lat":44.978,"lng":9.0847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"106","name":"OTTOBIANO","lat":45.1548,"lng":8.8309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"076","name":"GROPELLO CAIROLI","lat":45.1795,"lng":8.9939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"073","name":"GODIASCO","lat":44.8969,"lng":9.0569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"041","name":"CAVA MANARA","lat":45.1404,"lng":9.1086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"109","name":"PARONA","lat":45.2828,"lng":8.7517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"131","name":"ROVESCALA","lat":45.008,"lng":9.3471,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"145","name":"SAN ZENONE AL PO","lat":45.1094,"lng":9.3618,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"045","name":"CERGNAGO","lat":45.1995,"lng":8.7732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"141","name":"SANT'ALESSIO CON VIALONE","lat":45.2235,"lng":9.2272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"179","name":"VILLANOVA D'ARDENGHI","lat":45.1727,"lng":9.0434,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"072","name":"GIUSSAGO","lat":45.2858,"lng":9.1419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"077","name":"INVERNO E MONTELEONE","lat":45.1989,"lng":9.3864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"068","name":"GAMBOLÒ","lat":45.2649,"lng":8.8587,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"189","name":"ZERBOLÒ","lat":45.2072,"lng":9.0142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"133","name":"SAN CIPRIANO PO","lat":45.11,"lng":9.2841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"046","name":"CERTOSA DI PAVIA","lat":45.2525,"lng":9.1311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"081","name":"LINAROLO","lat":45.1635,"lng":9.2711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"012","name":"BATTUDA","lat":45.2749,"lng":9.0779,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"003","name":"ALBONESE","lat":45.2934,"lng":8.708,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"178","name":"VILLA BISCOSSI","lat":45.0906,"lng":8.7877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"116","name":"PIZZALE","lat":45.0365,"lng":9.0483,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"043","name":"CERANOVA","lat":45.2612,"lng":9.2442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"090","name":"MEZZANA BIGLI","lat":45.061,"lng":8.8495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"016","name":"BORGO PRIOLO","lat":44.9674,"lng":9.149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"186","name":"ZEME","lat":45.1983,"lng":8.6695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"033","name":"CASEI GEROLA","lat":45.0086,"lng":8.9278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"004","name":"ALBUZZANO","lat":45.1863,"lng":9.2741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"172","name":"VELEZZO LOMELLINA","lat":45.1641,"lng":8.7377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"006","name":"BADIA PAVESE","lat":45.1219,"lng":9.4699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"044","name":"CERETTO LOMELLINA","lat":45.2464,"lng":8.6727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"015","name":"BORGARELLO","lat":45.2405,"lng":9.1423,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"084","name":"LUNGAVILLA","lat":45.044,"lng":9.0815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"148","name":"SEMIANA","lat":45.1376,"lng":8.7323,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"190","name":"ZINASCO","lat":45.1292,"lng":9.0313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"100","name":"MONTÙ BECCARIA","lat":45.0377,"lng":9.3153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"156","name":"TORRE BERETTI E CASTELLARO","lat":45.0609,"lng":8.672,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"064","name":"FORTUNAGO","lat":44.9216,"lng":9.1855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"040","name":"CASTELNOVETTO","lat":45.2548,"lng":8.6131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"171","name":"VARZI","lat":44.8236,"lng":9.1959,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"177","name":"VIGEVANO","lat":45.3171,"lng":8.8586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"187","name":"ZENEVREDO","lat":45.055,"lng":9.3271,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"071","name":"GERENZAGO","lat":45.2067,"lng":9.3599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"069","name":"GARLASCO","lat":45.1985,"lng":8.9249,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"024","name":"BRONI","lat":45.0664,"lng":9.2635,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"036","name":"CASTANA","lat":45.817,"lng":11.3104,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"121","name":"RETORBIDO","lat":44.9505,"lng":9.0374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"170","name":"VALVERDE","lat":37.5781,"lng":15.125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"136","name":"SAN GIORGIO DI LOMELLINA","lat":45.176,"lng":8.7913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"021","name":"BRALLO DI PREGOLA","lat":44.7397,"lng":9.2834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"031","name":"CASANOVA LONATI","lat":45.0955,"lng":9.2145,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"037","name":"CASTEGGIO","lat":45.0111,"lng":9.1234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"175","name":"VERRUA PO","lat":45.1078,"lng":9.1764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"185","name":"ZECCONE","lat":45.2589,"lng":9.2024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"105","name":"OLIVA GESSI","lat":45.0036,"lng":9.1791,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"067","name":"GAMBARANA","lat":45.0294,"lng":8.7646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"049","name":"CIGOGNOLA","lat":45.0338,"lng":9.2459,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"093","name":"MIRADOLO TERME","lat":45.172,"lng":9.4467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"110","name":"PAVIA","lat":45.1859,"lng":9.1566,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"104","name":"OLEVANO DI LOMELLINA","lat":45.2148,"lng":8.7178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"149","name":"SILVANO PIETRA","lat":45.0414,"lng":8.9489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"008","name":"BARBIANELLO","lat":45.0772,"lng":9.2058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"050","name":"CILAVEGNA","lat":45.3108,"lng":8.7469,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"075","name":"GRAVELLONA LOMELLINA","lat":45.3288,"lng":8.7651,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"108","name":"PANCARANA","lat":45.0756,"lng":9.0517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"014","name":"BEREGUARDO","lat":45.2581,"lng":9.0284,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"010","name":"BASTIDA DE' DOSSI","lat":45.0404,"lng":8.9217,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"143","name":"SANTA MARIA DELLA VERSA","lat":44.9902,"lng":9.2974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"129","name":"RONCARO","lat":45.2292,"lng":9.2766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"070","name":"GENZONE","lat":45.1817,"lng":9.3486,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"174","name":"VERRETTO","lat":45.0408,"lng":9.107,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"163","name":"TRIVOLZIO","lat":45.2596,"lng":9.0439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"099","name":"MONTICELLI PAVESE","lat":45.1121,"lng":9.5149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"089","name":"MENCONICO","lat":44.7968,"lng":9.2786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"169","name":"VALLE SALIMBENE","lat":45.1726,"lng":9.2354,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"028","name":"CANEVINO","lat":44.9376,"lng":9.2777,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"142","name":"SANTA MARGHERITA DI STAFFORA","lat":44.7652,"lng":9.2556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"085","name":"MAGHERNO","lat":45.2245,"lng":9.3305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"051","name":"CODEVILLA","lat":44.9645,"lng":9.0574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"039","name":"CASTELLO D'AGOGNA","lat":45.2328,"lng":8.6897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"062","name":"FERRERA ERBOGNONE","lat":45.1139,"lng":8.8646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"065","name":"FRASCAROLO","lat":45.0477,"lng":8.6831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"107","name":"PALESTRO","lat":45.3021,"lng":8.5325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"123","name":"ROBBIO","lat":45.2916,"lng":8.5924,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"025","name":"CALVIGNANO","lat":44.9833,"lng":9.1663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"078","name":"LANDRIANO","lat":45.313,"lng":9.2613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"035","name":"CASSOLNOVO","lat":45.3624,"lng":8.8094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"168","name":"VALLE LOMELLINA","lat":45.1518,"lng":8.6668,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"120","name":"REDAVALLE","lat":45.0389,"lng":9.2035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"139","name":"SANTA CRISTINA E BISSONE","lat":45.1433,"lng":9.4237,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"082","name":"LIRIO","lat":44.9949,"lng":9.2562,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"063","name":"FILIGHERA","lat":45.1777,"lng":9.3168,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"034","name":"CASORATE PRIMO","lat":45.3135,"lng":9.018,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"059","name":"COZZO","lat":45.1932,"lng":8.6123,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"086","name":"MARCIGNAGO","lat":45.2538,"lng":9.0782,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"125","name":"ROCCA DE' GIORGI","lat":44.9706,"lng":9.2539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"091","name":"MEZZANA RABATTONE","lat":45.096,"lng":9.0324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"007","name":"BAGNARIA","lat":44.8276,"lng":9.1233,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"058","name":"COSTA DE' NOBILI","lat":45.1324,"lng":9.3797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"147","name":"SCALDASOLE","lat":45.1269,"lng":8.9108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"048","name":"CHIGNOLO PO","lat":45.1492,"lng":9.4827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"013","name":"BELGIOIOSO","lat":45.1595,"lng":9.3149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"152","name":"SPESSA","lat":45.1145,"lng":9.3497,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"176","name":"VIDIGULFO","lat":45.2904,"lng":9.235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"128","name":"ROMAGNESE","lat":44.8405,"lng":9.3312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"134","name":"SAN DAMIANO AL COLLE","lat":45.026,"lng":9.3477,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"092","name":"MEZZANINO","lat":45.1249,"lng":9.2083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"011","name":"BASTIDA PANCARANA","lat":45.0862,"lng":9.0824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"001","name":"ALAGNA","lat":45.1693,"lng":8.8902,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"162","name":"TRAVACÒ SICCOMARIO","lat":45.15,"lng":9.1608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"138","name":"SANNAZZARO DE' BURGONDI","lat":45.1033,"lng":8.9075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"158","name":"TORRE DE' NEGRI","lat":45.1506,"lng":9.3356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"047","name":"CERVESINA","lat":45.0624,"lng":9.0174,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"181","name":"VISTARINO","lat":45.2115,"lng":9.3089,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"126","name":"ROCCA SUSELLA","lat":44.9126,"lng":9.0962,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"009","name":"BASCAPÈ","lat":45.3079,"lng":9.3125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"161","name":"TORRICELLA VERZATE","lat":45.0198,"lng":9.1766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"005","name":"ARENA PO","lat":45.0977,"lng":9.3636,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"114","name":"PIEVE PORTO MORONE","lat":45.1103,"lng":9.4369,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"026","name":"CAMPOSPINOSO","lat":45.0964,"lng":9.2456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"118","name":"PORTALBERA","lat":45.0986,"lng":9.32,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"098","name":"MONTESEGALE","lat":44.9068,"lng":9.127,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"135","name":"SAN GENESIO ED UNITI","lat":45.2356,"lng":9.1792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"151","name":"SOMMO","lat":45.1279,"lng":9.0823,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"117","name":"PONTE NIZZA","lat":44.8532,"lng":9.0976,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"052","name":"CONFIENZA","lat":45.3332,"lng":8.5572,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"173","name":"VELLEZZO BELLINI","lat":45.2717,"lng":9.1003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"164","name":"TROMELLO","lat":45.2114,"lng":8.8702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"144","name":"SANT'ANGELO LOMELLINA","lat":45.2479,"lng":8.645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"057","name":"CORVINO SAN QUIRICO","lat":45.0128,"lng":9.161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"115","name":"PINAROLO PO","lat":45.071,"lng":9.1685,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"146","name":"SARTIRANA LOMELLINA","lat":45.1156,"lng":8.6656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"019","name":"BORNASCO","lat":45.2675,"lng":9.2191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"154","name":"SUARDI","lat":45.0356,"lng":8.7441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"055","name":"CORNALE","lat":45.882,"lng":11.0124,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"102","name":"MORTARA","lat":45.2516,"lng":8.7377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"122","name":"RIVANAZZANO TERME","lat":44.929852,"lng":9.01716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"160","name":"TORREVECCHIA PIA","lat":45.283,"lng":9.2975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"038","name":"CASTELLETTO DI BRANDUZZO","lat":45.0575,"lng":9.0825,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"080","name":"LARDIRAGO","lat":45.2361,"lng":9.2331,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"030","name":"CARBONARA AL TICINO","lat":45.1667,"lng":9.0627,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"018","codice_comu_istat":"097","name":"MONTESCANO","lat":45.0322,"lng":9.2847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"066","name":"PALAZZO PIGNANO","lat":45.3911,"lng":9.5706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"028","name":"CELLA DATI","lat":45.0963,"lng":10.2225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"097","name":"SONCINO","lat":45.4011,"lng":9.871,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"015","name":"CAPRALBA","lat":45.445,"lng":9.6444,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"079","name":"RICENGO","lat":45.4067,"lng":9.725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"013","name":"CAPPELLA CANTONE","lat":45.2475,"lng":9.8394,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"109","name":"TRESCORE CREMASCO","lat":45.4025,"lng":9.6261,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"098","name":"SORESINA","lat":45.2875,"lng":9.8581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"076","name":"PIZZIGHETTONE","lat":45.19,"lng":9.7909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"103","name":"STAGNO LOMBARDO","lat":45.0742,"lng":10.0891,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"104","name":"TICENGO","lat":45.3704,"lng":9.8283,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"003","name":"ANNICCO","lat":45.2456,"lng":9.8806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"007","name":"BORDOLANO","lat":45.2934,"lng":9.9877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"057","name":"MARTIGNANA DI PO","lat":45.012,"lng":10.381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"101","name":"SPINEDA","lat":45.7508,"lng":11.8801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"111","name":"VAIANO CREMASCO","lat":45.3739,"lng":9.5904,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"063","name":"OLMENETA","lat":45.2361,"lng":10.0212,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"082","name":"RIPALTA GUERINA","lat":45.3061,"lng":9.705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"083","name":"RIVAROLO DEL RE ED UNITI","lat":45.0289,"lng":10.471,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"096","name":"SOLAROLO RAINERIO","lat":45.0825,"lng":10.3574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"061","name":"MOTTA BALUFFI","lat":45.057,"lng":10.2578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"049","name":"GOMBITO","lat":45.2613,"lng":9.73,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"022","name":"CASALMORANO","lat":45.2874,"lng":9.9008,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"016","name":"CASALBUTTANO ED UNITI","lat":45.2528,"lng":9.9628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"010","name":"CAMISANO","lat":45.4439,"lng":9.744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"052","name":"GUSSOLA","lat":45.0141,"lng":10.3475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"008","name":"CA' D'ANDREA","lat":45.1197,"lng":10.2773,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"115","name":"VOLTIDO","lat":45.1111,"lng":10.334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"056","name":"MALAGNINO","lat":45.1348,"lng":10.1153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"105","name":"TORLINO VIMERCATI","lat":45.4184,"lng":9.596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"046","name":"GADESCO-PIEVE DELMONA","lat":45.153,"lng":10.1231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"058","name":"MONTE CREMASCO","lat":45.3756,"lng":9.5725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"021","name":"CASALMAGGIORE","lat":44.986,"lng":10.4151,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"033","name":"CORTE DE' FRATI","lat":45.2199,"lng":10.0963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"032","name":"CORTE DE' CORTESI CON CIGNONE","lat":45.2706,"lng":9.9883,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"053","name":"ISOLA DOVARESE","lat":45.1753,"lng":10.3122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"072","name":"PIANENGO","lat":45.4031,"lng":9.696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"041","name":"DOVERA","lat":45.3662,"lng":9.5425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"092","name":"SCANDOLARA RAVARA","lat":45.0513,"lng":10.3026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"080","name":"RIPALTA ARPINA","lat":45.3023,"lng":9.7291,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"002","name":"AGNADELLO","lat":45.4453,"lng":9.5581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"025","name":"CASTELLEONE","lat":45.2948,"lng":9.7628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"051","name":"GRUMELLO CREMONESE ED UNITI","lat":45.1941,"lng":9.8671,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"006","name":"BONEMERSE","lat":45.1147,"lng":10.0786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"068","name":"PERSICO DOSIMO","lat":45.187,"lng":10.1054,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"067","name":"PANDINO","lat":45.4054,"lng":9.553,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"011","name":"CAMPAGNOLA CREMASCA","lat":45.3997,"lng":9.6703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"084","name":"RIVOLTA D'ADDA","lat":45.4713,"lng":9.5125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"001","name":"ACQUANEGRA CREMONESE","lat":45.1683,"lng":9.89,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"073","name":"PIERANICA","lat":45.4256,"lng":9.6075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"035","name":"CREMA","lat":45.3618,"lng":9.6832,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"038","name":"CROTTA D'ADDA","lat":45.1592,"lng":9.8575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"042","name":"DRIZZONA","lat":45.1418,"lng":10.3498,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"071","name":"PIADENA","lat":45.1282,"lng":10.3702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"089","name":"SAN DANIELE PO","lat":45.0641,"lng":10.1807,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"043","name":"FIESCO","lat":45.3385,"lng":9.7789,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"087","name":"SALVIROLA","lat":45.3548,"lng":9.7807,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"034","name":"CREDERA RUBBIANO","lat":45.3042,"lng":9.6572,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"004","name":"AZZANELLO","lat":45.315,"lng":9.9208,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"045","name":"GABBIONETA-BINANUOVA","lat":45.2174,"lng":10.2214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"070","name":"PESSINA CREMONESE","lat":45.1864,"lng":10.2499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"014","name":"CAPPELLA DE' PICENARDI","lat":45.1595,"lng":10.2311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"090","name":"SAN GIOVANNI IN CROCE","lat":45.0787,"lng":10.3753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"037","name":"CREMOSANO","lat":45.3956,"lng":9.6394,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"091","name":"SAN MARTINO DEL LAGO","lat":45.0716,"lng":10.3145,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"078","name":"QUINTANO","lat":45.4198,"lng":9.6157,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"110","name":"TRIGOLO","lat":45.3309,"lng":9.8159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"031","name":"CINGIA DE' BOTTI","lat":45.0861,"lng":10.275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"081","name":"RIPALTA CREMASCA","lat":45.3334,"lng":9.6933,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"018","name":"CASALETTO CEREDANO","lat":45.3181,"lng":9.6192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"026","name":"CASTELVERDE","lat":45.1899,"lng":9.9967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"055","name":"MADIGNANO","lat":45.3467,"lng":9.7244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"039","name":"CUMIGNANO SUL NAVIGLIO","lat":45.3567,"lng":9.836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"017","name":"CASALE CREMASCO-VIDOLASCO","lat":45.4328,"lng":9.7153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"106","name":"TORNATA","lat":45.1039,"lng":10.4305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"100","name":"SPINADESCO","lat":45.1502,"lng":9.9275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"030","name":"CICOGNOLO","lat":45.1656,"lng":10.1956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"040","name":"DEROVERE","lat":45.1109,"lng":10.2491,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"036","name":"CREMONA","lat":45.1335,"lng":10.0261,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"075","name":"PIEVE SAN GIACOMO","lat":45.1313,"lng":10.1874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"023","name":"CASTELDIDONE","lat":45.0705,"lng":10.4074,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"102","name":"SPINO D'ADDA","lat":45.3998,"lng":9.4935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"094","name":"SERGNANO","lat":45.4298,"lng":9.7028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"088","name":"SAN BASSANO","lat":45.2435,"lng":9.8081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"059","name":"MONTODINE","lat":45.2863,"lng":9.7085,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"050","name":"GRONTARDO","lat":45.2028,"lng":10.1519,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"108","name":"TORRICELLA DEL PIZZO","lat":45.02,"lng":10.297,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"029","name":"CHIEVE","lat":45.3414,"lng":9.6175,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"086","name":"ROMANENGO","lat":45.3785,"lng":9.7828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"114","name":"VOLONGO","lat":45.2128,"lng":10.3025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"085","name":"ROBECCO D'OGLIO","lat":45.2603,"lng":10.0777,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"005","name":"BAGNOLO CREMASCO","lat":45.3622,"lng":9.6141,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"024","name":"CASTEL GABBIANO","lat":45.4693,"lng":9.7164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"065","name":"PADERNO PONCHIELLI","lat":45.2396,"lng":9.9303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"064","name":"OSTIANO","lat":45.2217,"lng":10.2531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"113","name":"VESCOVATO","lat":45.1761,"lng":10.1656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"062","name":"OFFANENGO","lat":45.3798,"lng":9.7434,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"054","name":"IZANO","lat":45.357,"lng":9.7513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"027","name":"CASTELVISCONTI","lat":45.3064,"lng":9.9422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"107","name":"TORRE DE' PICENARDI","lat":45.1433,"lng":10.2866,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"048","name":"GERRE DE' CAPRIOLI","lat":45.1047,"lng":10.0406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"093","name":"SCANDOLARA RIPA D'OGLIO","lat":45.2215,"lng":10.1605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"077","name":"POZZAGLIO ED UNITI","lat":45.2013,"lng":10.0517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"012","name":"CAPERGNANICA","lat":45.3386,"lng":9.6446,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"095","name":"SESTO ED UNITI","lat":45.1775,"lng":9.9152,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"099","name":"SOSPIRO","lat":45.1095,"lng":10.1588,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"074","name":"PIEVE D'OLMI","lat":45.0893,"lng":10.1242,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"047","name":"GENIVOLTA","lat":45.3336,"lng":9.8785,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"020","name":"CASALETTO VAPRIO","lat":45.4092,"lng":9.6299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"112","name":"VAILATE","lat":45.4642,"lng":9.6054,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"060","name":"MOSCAZZANO","lat":45.2933,"lng":9.6845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"044","name":"FORMIGARA","lat":45.2222,"lng":9.7687,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"009","name":"CALVATONE","lat":45.1295,"lng":10.4424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"019","name":"CASALETTO DI SOPRA","lat":45.4199,"lng":9.7823,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"019","codice_comu_istat":"069","name":"PESCAROLO ED UNITI","lat":45.1949,"lng":10.1875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"012","name":"CASALROMANO","lat":45.2001,"lng":10.3685,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"019","name":"CERESARA","lat":45.2633,"lng":10.5706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"022","name":"DOSOLO","lat":44.9538,"lng":10.6409,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"062","name":"SERRAVALLE A PO","lat":45.0718,"lng":11.0987,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"008","name":"CANNETO SULL'OGLIO","lat":45.1538,"lng":10.3821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"016","name":"CASTELLUCCHIO","lat":45.1529,"lng":10.6509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"034","name":"MEDOLE","lat":45.3253,"lng":10.5142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"061","name":"SERMIDE","lat":45.0055,"lng":11.295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"057","name":"SAN GIORGIO DI MANTOVA","lat":45.153,"lng":10.8738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"023","name":"FELONICA","lat":44.98,"lng":11.3549,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"026","name":"GOITO","lat":45.256,"lng":10.6731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"006","name":"BORGOFRANCO SUL PO","lat":45.049,"lng":11.2047,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"067","name":"VILLA POMA","lat":45.0024,"lng":11.1152,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"065","name":"SUZZARA","lat":44.9915,"lng":10.7457,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"045","name":"PORTO MANTOVANO","lat":45.1895,"lng":10.7899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"040","name":"PIEVE DI CORIANO","lat":45.0344,"lng":11.1069,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"030","name":"MANTOVA","lat":45.1604,"lng":10.7977,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"015","name":"CASTEL GOFFREDO","lat":45.2975,"lng":10.4786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"005","name":"BORGOFORTE","lat":45.147,"lng":11.9446,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"039","name":"PEGOGNAGA","lat":44.9938,"lng":10.8608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"060","name":"SCHIVENOGLIA","lat":44.9962,"lng":11.0733,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"013","name":"CASTELBELFORTE","lat":45.2131,"lng":10.8936,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"032","name":"MARIANA MANTOVANA","lat":45.1939,"lng":10.488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"048","name":"REDONDESCO","lat":45.1674,"lng":10.5135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"004","name":"BIGARELLO","lat":45.2036,"lng":10.9261,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"059","name":"SAN MARTINO DALL'ARGINE","lat":45.103,"lng":10.5224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"036","name":"MONZAMBANO","lat":45.3877,"lng":10.6931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"020","name":"COMMESSAGGIO","lat":45.0389,"lng":10.5445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"066","name":"VIADANA","lat":44.9269,"lng":10.5218,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"010","name":"CASALMORO","lat":45.2606,"lng":10.4056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"033","name":"MARMIROLO","lat":44.6557,"lng":10.7186,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"024","name":"GAZOLDO DEGLI IPPOLITI","lat":45.2013,"lng":10.5805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"025","name":"GAZZUOLO","lat":45.0652,"lng":10.5797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"069","name":"VIRGILIO","lat":45.1204,"lng":10.7916,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"042","name":"POGGIO RUSCO","lat":44.976,"lng":11.1199,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"009","name":"CARBONARA DI PO","lat":45.0364,"lng":11.2278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"003","name":"BAGNOLO SAN VITO","lat":45.0893,"lng":10.8764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"056","name":"SAN GIACOMO DELLE SEGNATE","lat":44.9736,"lng":11.0342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"063","name":"SOLFERINO","lat":45.3701,"lng":10.5661,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"055","name":"SAN BENEDETTO PO","lat":45.0392,"lng":10.9325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"052","name":"RONCOFERRARO","lat":45.1351,"lng":10.9545,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"038","name":"OSTIGLIA","lat":45.0702,"lng":11.1379,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"027","name":"GONZAGA","lat":44.9511,"lng":10.82,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"064","name":"SUSTINENTE","lat":45.071,"lng":11.0192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"029","name":"MAGNACAVALLO","lat":45.0066,"lng":11.1822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"058","name":"SAN GIOVANNI DEL DOSSO","lat":44.9686,"lng":11.0822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"028","name":"GUIDIZZOLO","lat":45.3217,"lng":10.5816,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"001","name":"ACQUANEGRA SUL CHIESE","lat":45.1634,"lng":10.4358,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"041","name":"PIUBEGA","lat":45.2288,"lng":10.5353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"047","name":"QUISTELLO","lat":45.0066,"lng":10.9835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"054","name":"SABBIONETA","lat":44.9989,"lng":10.4895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"051","name":"RODIGO","lat":45.2006,"lng":10.6235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"068","name":"VILLIMPENTA","lat":45.1447,"lng":11.0282,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"043","name":"POMPONESCO","lat":44.9283,"lng":10.5922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"014","name":"CASTEL D'ARIO","lat":45.1889,"lng":10.9756,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"037","name":"MOTTEGGIANA","lat":45.0342,"lng":10.7625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"049","name":"REVERE","lat":45.0546,"lng":11.1324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"070","name":"VOLTA MANTOVANA","lat":45.3222,"lng":10.6594,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"053","name":"ROVERBELLA","lat":45.2666,"lng":10.7691,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"046","name":"QUINGENTOLE","lat":45.04,"lng":11.0469,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"011","name":"CASALOLDO","lat":45.2558,"lng":10.4755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"044","name":"PONTI SUL MINCIO","lat":45.4131,"lng":10.6863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"018","name":"CAVRIANA","lat":45.349,"lng":10.5988,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"002","name":"ASOLA","lat":45.222,"lng":10.4147,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"031","name":"MARCARIA","lat":45.1191,"lng":10.5338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"017","name":"CASTIGLIONE DELLE STIVIERE","lat":45.3902,"lng":10.4883,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"035","name":"MOGLIA","lat":44.9381,"lng":10.9146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"007","name":"BOZZOLO","lat":45.1034,"lng":10.485,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"050","name":"RIVAROLO MANTOVANO","lat":45.0709,"lng":10.4349,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"020","codice_comu_istat":"021","name":"CURTATONE","lat":45.1334,"lng":10.7208,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"079","name":"SAN GENESIO ATESINO","lat":46.5367,"lng":11.3306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"037","name":"LACES","lat":46.6178,"lng":10.8575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"063","name":"PERCA","lat":46.7945,"lng":11.9827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"016","name":"CAMPO DI TRENS","lat":46.8766,"lng":11.485,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"042","name":"LASA","lat":46.6175,"lng":10.7013,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"008","name":"BOLZANO","lat":46.4952,"lng":11.3541,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"011","name":"BRESSANONE","lat":46.7159,"lng":11.6572,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"115","name":"VIPITENO","lat":46.8992,"lng":11.4312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"024","name":"CORTACCIA SULLA STRADA DEL VINO","lat":46.315,"lng":11.225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"013","name":"BRUNICO","lat":46.7976,"lng":11.9368,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"039","name":"LAION","lat":46.6097,"lng":11.5669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"009","name":"BRAIES","lat":46.7213,"lng":12.1346,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"035","name":"GARGAZZONE","lat":46.5858,"lng":11.2047,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"056","name":"NATURNO","lat":46.6425,"lng":10.9894,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"098","name":"TERMENO SULLA STRADA DEL VINO","lat":46.3426,"lng":11.2436,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"096","name":"TERENTO","lat":46.8314,"lng":11.7811,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"021","name":"CHIENES","lat":46.8075,"lng":11.8376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"032","name":"FORTEZZA","lat":46.7884,"lng":11.6107,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"003","name":"ANTERIVO","lat":46.2797,"lng":11.3666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"033","name":"FUNES","lat":46.6431,"lng":11.6802,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"070","name":"RACINES","lat":46.8828,"lng":11.3794,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"007","name":"BARBIANO","lat":44.3877,"lng":11.8832,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"054","name":"MOSO IN PASSIRIA","lat":46.8326,"lng":11.1664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"107","name":"VAL DI VIZZE","lat":46.9011,"lng":11.4652,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"113","name":"VILLABASSA","lat":46.7381,"lng":12.1727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"097","name":"TERLANO","lat":46.5335,"lng":11.2464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"026","name":"CORVARA IN BADIA","lat":46.5518,"lng":11.8711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"050","name":"MELTINA","lat":46.588,"lng":11.2556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"105","name":"VADENA","lat":46.4145,"lng":11.3061,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"111","name":"VARNA","lat":43.5677,"lng":10.9777,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"084","name":"SAN PANCRAZIO","lat":44.3586,"lng":12.0799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"015","name":"CALDARO SULLA STRADA DEL VINO","lat":46.4142,"lng":11.2424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"092","name":"SESTO","lat":46.6714,"lng":12.3935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"083","name":"SAN MARTINO IN PASSIRIA","lat":46.7849,"lng":11.2285,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"052","name":"MONGUELFO-TESIDO","lat":46.7567,"lng":12.1064,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"064","name":"PLAUS","lat":46.6562,"lng":11.0415,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"012","name":"BRONZOLO","lat":46.4033,"lng":11.3206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"001","name":"ALDINO","lat":46.3671,"lng":11.3539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"031","name":"FIÈ ALLO SCILIAR","lat":46.512,"lng":11.5342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"110","name":"VANDOIES","lat":46.816,"lng":11.7214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"017","name":"CAMPO TURES","lat":46.9116,"lng":11.9492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"095","name":"STELVIO","lat":46.5984,"lng":10.5472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"076","name":"SALORNO","lat":46.2402,"lng":11.2131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"051","name":"MERANO","lat":46.6691,"lng":11.164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"043","name":"LAUREGNO","lat":46.4553,"lng":11.0628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"022","name":"CHIUSA","lat":46.672,"lng":11.5512,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"038","name":"LAGUNDO","lat":46.6838,"lng":11.1241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"067","name":"PRATO ALLO STELVIO","lat":46.6223,"lng":10.582,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"068","name":"PREDOI","lat":47.0417,"lng":12.1071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"081","name":"SAN LORENZO DI SEBATO","lat":46.7868,"lng":11.9106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"094","name":"SLUDERNO","lat":46.6655,"lng":10.5861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"108","name":"VALLE AURINA","lat":46.9971,"lng":11.9805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"116","name":"VELTURNO","lat":46.6687,"lng":11.5964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"060","name":"ORA","lat":46.3458,"lng":11.2963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"053","name":"MONTAGNA","lat":46.3138,"lng":11.3356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"117","name":"LA VALLE","lat":46.6575,"lng":11.924,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"114","name":"VILLANDRO","lat":46.6314,"lng":11.5393,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"045","name":"MAGRÈ SULLA STRADA DEL VINO","lat":46.2885,"lng":11.2103,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"091","name":"SENALES","lat":46.7052,"lng":10.9094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"046","name":"MALLES VENOSTA","lat":46.6853,"lng":10.5499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"036","name":"GLORENZA","lat":46.6713,"lng":10.5559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"072","name":"RENON","lat":46.5425,"lng":11.4585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"065","name":"PONTE GARDENA","lat":46.5981,"lng":11.5321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"062","name":"PARCINES","lat":46.6852,"lng":11.0746,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"048","name":"MARLENGO","lat":46.6564,"lng":11.1439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"080","name":"SAN LEONARDO IN PASSIRIA","lat":46.8138,"lng":11.2469,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"006","name":"BADIA","lat":38.5647,"lng":15.9556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"019","name":"CASTELROTTO","lat":44.7277,"lng":8.0159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"023","name":"CORNEDO ALL'ISARCO","lat":46.491,"lng":11.4102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"002","name":"ANDRIANO","lat":46.5186,"lng":11.2325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"059","name":"NOVA PONENTE","lat":46.4139,"lng":11.4316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"106","name":"VALDAORA","lat":46.7608,"lng":12.032,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"099","name":"TESIMO","lat":46.5664,"lng":11.1705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"101","name":"TIROLO","lat":46.6902,"lng":11.1544,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"086","name":"SARENTINO","lat":46.6446,"lng":11.3569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"069","name":"PROVES","lat":46.4757,"lng":11.0194,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"085","name":"SANTA CRISTINA VALGARDENA","lat":46.558048,"lng":11.72108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"040","name":"LAIVES","lat":46.4268,"lng":11.3377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"112","name":"VERANO","lat":46.6057,"lng":11.2268,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"047","name":"MAREBBE","lat":46.699,"lng":11.9343,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"075","name":"RODENGO","lat":46.788,"lng":11.7376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"057","name":"NAZ-SCIAVES","lat":46.77,"lng":11.6662,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"010","name":"BRENNERO","lat":46.9393,"lng":11.4436,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"071","name":"RASUN-ANTERSELVA","lat":46.7796,"lng":12.0485,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"077","name":"SAN CANDIDO","lat":46.7339,"lng":12.28,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"093","name":"SILANDRO","lat":46.6294,"lng":10.7724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"044","name":"LUSON","lat":46.7446,"lng":11.7614,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"027","name":"CURON VENOSTA","lat":46.8084,"lng":10.5422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"058","name":"NOVA LEVANTE","lat":46.4312,"lng":11.5386,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"066","name":"POSTAL","lat":46.6099,"lng":11.1929,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"088","name":"SELVA DEI MOLINI","lat":46.8919,"lng":11.8613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"030","name":"FALZES","lat":46.8153,"lng":11.8849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"073","name":"RIFIANO","lat":46.7047,"lng":11.1828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"034","name":"GAIS","lat":46.8315,"lng":11.9457,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"089","name":"SELVA DI VAL GARDENA","lat":46.5556,"lng":11.7588,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"018","name":"CASTELBELLO-CIARDES","lat":46.6281,"lng":10.9007,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"118","name":"SENALE-SAN FELICE","lat":46.4938,"lng":11.1329,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"103","name":"TUBRE","lat":46.6466,"lng":10.4653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"049","name":"MARTELLO","lat":46.5663,"lng":10.7824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"074","name":"RIO DI PUSTERIA","lat":46.8526,"lng":11.6339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"028","name":"DOBBIACO","lat":46.7355,"lng":12.2225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"104","name":"ULTIMO","lat":46.5482,"lng":11.0037,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"109","name":"VALLE DI CASIES","lat":46.7685,"lng":12.1806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"041","name":"LANA","lat":46.6135,"lng":11.1571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"087","name":"SCENA","lat":46.6911,"lng":11.1874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"055","name":"NALLES","lat":46.5438,"lng":11.2077,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"005","name":"AVELENGO","lat":46.6462,"lng":11.2247,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"014","name":"CAINES","lat":46.6995,"lng":11.1725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"082","name":"SAN MARTINO IN BADIA","lat":46.6825,"lng":11.8992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"004","name":"APPIANO SULLA STRADA DEL VINO","lat":46.4558,"lng":11.2588,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"102","name":"TRODENA NEL PARCO NATURALE","lat":46.323662,"lng":11.35158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"061","name":"ORTISEI","lat":46.575,"lng":11.6712,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"025","name":"CORTINA SULLA STRADA DEL VINO","lat":46.2685,"lng":11.2227,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"100","name":"TIRES","lat":46.516,"lng":11.5056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"029","name":"EGNA","lat":46.3178,"lng":11.2738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"021","codice_comu_istat":"020","name":"CERMES","lat":46.6356,"lng":11.1477,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"109","name":"LUSERNA","lat":44.8085,"lng":7.2454,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"165","name":"SAMONE","lat":46.080132,"lng":11.52245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"025","name":"BRENTONICO","lat":45.82,"lng":10.9563,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"072","name":"DAONE","lat":45.9472,"lng":10.6187,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"098","name":"ISERA","lat":45.8886,"lng":11.0103,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"080","name":"FAEDO","lat":46.1923,"lng":11.1619,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"182","name":"STENICO","lat":46.0512,"lng":10.8545,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"108","name":"LONA-LASES","lat":46.1452,"lng":11.2206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"056","name":"CENTA SAN NICOLÒ","lat":45.9703,"lng":11.2334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"122","name":"MONTAGNE","lat":46.0596,"lng":10.7524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"100","name":"LARDARO","lat":45.9713,"lng":10.6624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"128","name":"NOMI","lat":45.9295,"lng":11.073,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"191","name":"TENNO","lat":45.9203,"lng":10.8325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"208","name":"VALDA","lat":46.2074,"lng":11.2667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"226","name":"ZIANO DI FIEMME","lat":46.2875,"lng":11.567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"199","name":"TIONE DI TRENTO","lat":46.0371,"lng":10.7275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"078","name":"DRENA","lat":45.97,"lng":10.9438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"103","name":"LAVIS","lat":46.1405,"lng":11.1139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"172","name":"SEGONZANO","lat":46.1876,"lng":11.2574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"211","name":"VARENA","lat":46.3077,"lng":11.4594,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"064","name":"COMMEZZADURA","lat":46.3226,"lng":10.8407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"175","name":"SMARANO","lat":46.3441,"lng":11.111,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"133","name":"PALÙ DEL FERSINA","lat":46.1297,"lng":11.3524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"012","name":"BERSONE","lat":45.9446,"lng":10.6327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"051","name":"CAVARENO","lat":46.4094,"lng":11.1392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"212","name":"VATTARO","lat":45.9956,"lng":11.218,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"215","name":"VEZZANO","lat":46.08,"lng":11.0006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"205","name":"TRENTO","lat":46.0703,"lng":11.1216,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"022","codice_comu_istat":"203","name":"TRAMBILENO","lat":45.8699,"lng":11.0746,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"155","name":"ROMENO","lat":46.3958,"lng":11.1195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"174","name":"SIROR","lat":46.1879,"lng":11.832,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"075","name":"DIMARO","lat":46.3272,"lng":10.8719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"131","name":"OSSANA","lat":46.3075,"lng":10.7388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"164","name":"SAGRON MIS","lat":46.1944,"lng":11.9422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"110","name":"MALÈ","lat":46.3525,"lng":10.9139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"163","name":"RUMO","lat":46.4419,"lng":11.0186,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"038","name":"CANAL SAN BOVO","lat":46.156,"lng":11.7335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"147","name":"PREDAZZO","lat":46.3099,"lng":11.6008,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"063","name":"CLOZ","lat":46.4199,"lng":11.088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"032","name":"CALCERANICA AL LAGO","lat":46.0056,"lng":11.2449,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"171","name":"SCURELLE","lat":46.0655,"lng":11.5067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"176","name":"SORAGA","lat":46.3956,"lng":11.6674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"116","name":"MEZZOCORONA","lat":46.2144,"lng":11.1199,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"009","name":"BASELGA DI PINÈ","lat":46.1325,"lng":11.247,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"091","name":"GARNIGA TERME","lat":46.0041,"lng":11.0884,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"030","name":"CAGNÒ","lat":46.393261,"lng":11.0436,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"040","name":"CAPRIANA","lat":46.2625,"lng":11.3387,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"003","name":"ALDENO","lat":45.9791,"lng":11.0946,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"153","name":"RIVA DEL GARDA","lat":45.8881,"lng":10.8445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"138","name":"PELUGO","lat":46.0889,"lng":10.7238,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"214","name":"VERVÒ","lat":46.311,"lng":11.119,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"219","name":"VIGOLO VATTARO","lat":46.0066,"lng":11.1999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"060","name":"CIS","lat":46.3998,"lng":11.0045,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"104","name":"LEVICO TERME","lat":46.0111,"lng":11.3026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"061","name":"CIVEZZANO","lat":46.0914,"lng":11.1846,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"195","name":"TERZOLAS","lat":46.362,"lng":10.9271,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"054","name":"CAVIZZANA","lat":46.3682,"lng":10.9586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"209","name":"VALFLORIANA","lat":46.2506,"lng":11.3442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"090","name":"FRASSILONGO","lat":46.091,"lng":11.2983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"027","name":"BREZ","lat":46.4319,"lng":11.1077,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"059","name":"CINTE TESINO","lat":46.0586,"lng":11.6144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"154","name":"ROMALLO","lat":46.3981,"lng":11.0674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"069","name":"CUNEVO","lat":46.2874,"lng":11.0356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"229","name":"LEDRO","lat":45.8885,"lng":10.7312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"018","name":"BOCENAGO","lat":46.12,"lng":10.76,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"227","name":"ZUCLO","lat":46.0353,"lng":10.7522,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"151","name":"RAGOLI","lat":46.0545,"lng":10.7785,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"049","name":"CASTELNUOVO","lat":44.9558,"lng":7.2088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"037","name":"CAMPODENNO","lat":46.2589,"lng":11.0342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"117","name":"MEZZOLOMBARDO","lat":46.21,"lng":11.0978,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"210","name":"VALLARSA","lat":45.7826,"lng":11.1173,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"186","name":"TAIO","lat":46.3217,"lng":11.0711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"144","name":"POMAROLO","lat":45.9291,"lng":11.0442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"062","name":"CLES","lat":46.3661,"lng":11.0341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"013","name":"BESENELLO","lat":45.944,"lng":11.1082,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"142","name":"PIEVE TESINO","lat":46.0692,"lng":11.6114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"058","name":"CIMONE","lat":45.9803,"lng":11.0706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"017","name":"BLEGGIO SUPERIORE","lat":46.0251,"lng":10.8378,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"074","name":"DENNO","lat":46.2736,"lng":11.0488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"156","name":"RONCEGNO TERME","lat":46.050011,"lng":11.40895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"207","name":"TUENNO","lat":46.3299,"lng":11.0241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"071","name":"DAMBEL","lat":46.4052,"lng":11.0939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"216","name":"VIGNOLA-FALESINA","lat":46.0462,"lng":11.2766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"129","name":"NOVALEDO","lat":46.023,"lng":11.3669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"125","name":"NANNO","lat":46.3152,"lng":11.048,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"187","name":"TASSULLO","lat":46.3364,"lng":11.0513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"034","name":"CALDONAZZO","lat":45.9959,"lng":11.2658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"092","name":"GIOVO","lat":46.1568,"lng":11.1531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"118","name":"MOENA","lat":46.3783,"lng":11.6634,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"035","name":"CALLIANO","lat":45.93433,"lng":11.09591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"045","name":"CASTEL CONDINO","lat":45.9161,"lng":10.6026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"046","name":"CASTELFONDO","lat":46.4566,"lng":11.1184,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"188","name":"TELVE","lat":46.0724,"lng":11.4728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"149","name":"PREZZO","lat":45.9333,"lng":10.6317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"019","name":"BOLBENO","lat":46.0336,"lng":10.7389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"217","name":"VIGO DI FASSA","lat":46.4195,"lng":11.6746,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"148","name":"PREORE","lat":46.0469,"lng":10.7585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"134","name":"PANCHIÀ","lat":46.2867,"lng":11.5436,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"055","name":"CEMBRA","lat":46.1747,"lng":11.2219,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"201","name":"TONADICO","lat":46.182,"lng":11.8405,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"068","name":"CROVIANA","lat":46.3463,"lng":10.9045,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"067","name":"COREDO","lat":46.3517,"lng":11.0899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"113","name":"MAZZIN","lat":46.4585,"lng":11.7011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"189","name":"TELVE DI SOPRA","lat":46.0724,"lng":11.4728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"102","name":"LAVARONE","lat":45.9379,"lng":11.2757,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"185","name":"STRIGNO","lat":46.0676,"lng":11.5222,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"220","name":"VIGO RENDENA","lat":46.081,"lng":10.7231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"039","name":"CANAZEI","lat":46.4767,"lng":11.7725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"130","name":"OSPEDALETTO","lat":45.5054,"lng":10.8451,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"079","name":"DRO","lat":45.9624,"lng":10.9124,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"082","name":"FAVER","lat":46.1824,"lng":11.2385,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"076","name":"DON","lat":46.3899,"lng":11.137,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"152","name":"REVÒ","lat":46.3928,"lng":11.0608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"097","name":"IMER","lat":46.1504,"lng":11.7943,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"196","name":"TESERO","lat":46.2914,"lng":11.5131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"170","name":"SARNONICO","lat":46.4216,"lng":11.1428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"223","name":"VILLA RENDENA","lat":46.0627,"lng":10.7122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"093","name":"GIUSTINO","lat":46.149,"lng":10.7687,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"070","name":"DAIANO","lat":46.3025,"lng":11.4502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"089","name":"FORNACE","lat":46.118,"lng":11.2075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"137","name":"PELLIZZANO","lat":46.311,"lng":10.7609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"041","name":"CARANO","lat":46.2925,"lng":11.441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"114","name":"MEZZANA","lat":46.3177,"lng":10.8013,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"146","name":"PRASO","lat":45.9501,"lng":10.6373,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"073","name":"DARÈ","lat":46.0753,"lng":10.7185,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"124","name":"NAGO-TORBOLE","lat":45.8693,"lng":10.8775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"168","name":"SANT'ORSOLA TERME","lat":46.1099,"lng":11.3034,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"183","name":"STORO","lat":45.8509,"lng":10.5774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"200","name":"TON","lat":46.265,"lng":11.0867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"053","name":"CAVEDINE","lat":45.9963,"lng":10.9747,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"161","name":"ROVERETO","lat":45.8906,"lng":11.0399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"057","name":"CIMEGO","lat":45.9128,"lng":10.6146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"031","name":"CALAVINO","lat":46.0455,"lng":10.9833,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"190","name":"TENNA","lat":46.0167,"lng":11.2653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"011","name":"BEDOLLO","lat":46.1701,"lng":11.3017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"204","name":"TRANSACQUA","lat":46.1742,"lng":11.8334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"077","name":"DORSINO","lat":46.0737,"lng":10.8976,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"112","name":"MASSIMENO","lat":46.1422,"lng":10.7734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"181","name":"SPORMINORE","lat":46.2378,"lng":11.0312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"126","name":"NAVE SAN ROCCO","lat":46.1669,"lng":11.1059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"043","name":"CARZANO","lat":46.0707,"lng":11.4927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"159","name":"RONZONE","lat":46.4236,"lng":11.1514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"085","name":"FIEROZZO","lat":46.1124,"lng":11.3195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"177","name":"SOVER","lat":46.2228,"lng":11.3156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"202","name":"TORCEGNO","lat":46.0753,"lng":11.451,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"135","name":"RONZO-CHIENIS","lat":45.8906,"lng":10.9513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"158","name":"RONCONE","lat":45.9838,"lng":10.6692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"022","name":"BORGO VALSUGANA","lat":46.0524,"lng":11.4555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"052","name":"CAVEDAGO","lat":46.1863,"lng":11.0325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"224","name":"VOLANO","lat":45.9185,"lng":11.0633,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"088","name":"FONDO","lat":46.4392,"lng":11.1386,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"050","name":"CAVALESE","lat":46.2902,"lng":11.4605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"033","name":"CALDES","lat":46.3651,"lng":10.9424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"081","name":"FAI DELLA PAGANELLA","lat":46.1753,"lng":11.0685,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"228","name":"COMANO TERME","lat":46.0342,"lng":10.8707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"173","name":"SFRUZ","lat":46.3406,"lng":11.1249,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"001","name":"ALA","lat":45.7578,"lng":11.0003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"095","name":"GRIGNO","lat":46.0164,"lng":11.6381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"111","name":"MALOSCO","lat":46.437,"lng":11.1474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"048","name":"CASTELLO TESINO","lat":46.0646,"lng":11.6334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"132","name":"PADERGNONE","lat":46.0631,"lng":10.99,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"101","name":"LASINO","lat":46.0261,"lng":10.9842,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"096","name":"GRUMES","lat":46.2217,"lng":11.2953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"192","name":"TERLAGO","lat":46.0984,"lng":11.0469,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"136","name":"PEIO","lat":46.3628,"lng":10.6734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"042","name":"CARISOLO","lat":46.1699,"lng":10.76,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"115","name":"MEZZANO","lat":46.1556,"lng":11.8091,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"087","name":"FOLGARIA","lat":45.9163,"lng":11.1717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"083","name":"FIAVÈ","lat":46.0045,"lng":10.8441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"213","name":"VERMIGLIO","lat":46.2985,"lng":10.6928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"160","name":"ROVERÈ DELLA LUNA","lat":46.2495,"lng":11.1716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"167","name":"SAN MICHELE ALL'ADIGE","lat":46.1939,"lng":11.1347,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"145","name":"POZZA DI FASSA","lat":46.4299,"lng":11.6919,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"139","name":"PERGINE VALSUGANA","lat":46.0617,"lng":11.2371,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"066","name":"CONDINO","lat":45.8906,"lng":10.6014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"015","name":"BIENO","lat":45.9514,"lng":8.5133,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"120","name":"MOLVENO","lat":46.1431,"lng":10.9649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"162","name":"RUFFRÈ-MENDOLA","lat":46.050011,"lng":11.40895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"193","name":"TERRAGNOLO","lat":45.8788,"lng":11.1546,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"180","name":"SPORMAGGIORE","lat":46.2195,"lng":11.0498,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"179","name":"SPIAZZO","lat":46.1031,"lng":10.7365,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"086","name":"FLAVON","lat":46.3003,"lng":11.0299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"184","name":"STREMBO","lat":46.1213,"lng":10.7521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"029","name":"CADERZONE TERME","lat":46.129959,"lng":10.75858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"021","name":"BONDONE","lat":45.8058,"lng":10.5513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"166","name":"SAN LORENZO IN BANALE","lat":46.0771,"lng":10.9078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"123","name":"MORI","lat":45.8528,"lng":10.9762,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"169","name":"SANZENO","lat":46.3678,"lng":11.0777,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"005","name":"ANDALO","lat":46.1661,"lng":11.0052,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"026","name":"BRESIMO","lat":46.4108,"lng":10.9684,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"020","name":"BONDO","lat":46.0013,"lng":10.6931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"140","name":"PIEVE DI BONO","lat":45.9429,"lng":10.6409,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"024","name":"BREGUZZO","lat":46.0088,"lng":10.7003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"094","name":"GRAUNO","lat":46.2293,"lng":11.2981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"023","name":"BOSENTINO","lat":46.0021,"lng":11.2256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"225","name":"ZAMBANA","lat":46.1527,"lng":11.0974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"157","name":"RONCHI VALSUGANA","lat":46.0694,"lng":11.4363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"002","name":"ALBIANO","lat":46.146,"lng":11.1945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"004","name":"AMBLAR","lat":46.3953,"lng":11.1443,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"206","name":"TRES","lat":46.3241,"lng":11.098,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"084","name":"FIERA DI PRIMIERO","lat":46.1772,"lng":11.8299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"106","name":"LIVO","lat":46.1699,"lng":9.305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"150","name":"RABBI","lat":46.4013,"lng":10.8467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"105","name":"LISIGNAGO","lat":46.1616,"lng":11.1888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"221","name":"VILLA AGNEDO","lat":46.0573,"lng":11.52,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"036","name":"CAMPITELLO DI FASSA","lat":46.4774,"lng":11.7431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"099","name":"IVANO-FRACENA","lat":46.0578,"lng":11.5317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"047","name":"CASTELLO-MOLINA DI FIEMME","lat":46.2819,"lng":11.4351,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"178","name":"SPERA","lat":46.0693,"lng":11.5091,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"006","name":"ARCO","lat":45.9219,"lng":10.8846,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"222","name":"VILLA LAGARINA","lat":45.9172,"lng":11.0317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"194","name":"TERRES","lat":46.311,"lng":11.0242,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"028","name":"BRIONE","lat":45.639671,"lng":10.14179,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"007","name":"AVIO","lat":45.7349,"lng":10.9383,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"127","name":"NOGAREDO","lat":45.9137,"lng":11.0244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"143","name":"PINZOLO","lat":46.16,"lng":10.7654,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"022","codice_comu_istat":"121","name":"MONCLASSICO","lat":46.3362,"lng":10.8899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"031","name":"DOLCÈ","lat":45.6017,"lng":10.8536,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"075","name":"SAN PIETRO DI MORUBIO","lat":45.2434,"lng":11.2281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"072","name":"SANGUINETTO","lat":45.1849,"lng":11.1505,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"029","name":"CONCAMARISE","lat":45.2076,"lng":11.1383,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"025","name":"CEREA","lat":45.1927,"lng":11.2127,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"064","name":"RONCO ALL'ADIGE","lat":45.3377,"lng":11.2441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"090","name":"VELO VERONESE","lat":45.6077,"lng":11.0963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"056","name":"PALÙ","lat":45.3264,"lng":11.1564,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"052","name":"NEGRAR","lat":45.5306,"lng":10.9383,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"074","name":"SAN MAURO DI SALINE","lat":45.5655,"lng":11.1129,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"066","name":"ROVEREDO DI GUÀ","lat":45.2741,"lng":11.4453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"005","name":"BADIA CALAVENA","lat":45.5674,"lng":11.1538,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"035","name":"FUMANE","lat":45.5406,"lng":10.8858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"071","name":"SAN GIOVANNI LUPATOTO","lat":45.3839,"lng":11.0423,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"067","name":"ROVERÈ VERONESE","lat":45.592,"lng":11.0695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"095","name":"VILLA BARTOLOMEA","lat":45.1584,"lng":11.3527,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"088","name":"TREVENZUOLO","lat":45.2703,"lng":10.9355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"003","name":"ANGIARI","lat":45.2238,"lng":11.279,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"023","name":"CAVAION VERONESE","lat":45.5399,"lng":10.7693,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"006","name":"BARDOLINO","lat":45.5476,"lng":10.721,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"069","name":"SAN BONIFACIO","lat":45.3962,"lng":11.2702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"079","name":"SAN ZENO DI MONTAGNA","lat":45.6384,"lng":10.7333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"085","name":"TERRAZZO","lat":45.1742,"lng":11.3946,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"034","name":"FERRARA DI MONTE BALDO","lat":45.6739,"lng":10.861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"087","name":"TREGNAGO","lat":45.5145,"lng":11.1646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"044","name":"LEGNAGO","lat":45.1907,"lng":11.3076,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"092","name":"VERONELLA","lat":45.3231,"lng":11.3245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"057","name":"PASTRENGO","lat":45.4941,"lng":10.801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"078","name":"SANT'ANNA D'ALFAEDO","lat":45.6275,"lng":10.9515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"054","name":"NOGAROLE ROCCA","lat":45.2928,"lng":10.8849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"086","name":"TORRI DEL BENACO","lat":45.6098,"lng":10.6869,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"033","name":"ERBEZZO","lat":45.6414,"lng":11.0017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"021","name":"CASTEL D'AZZANO","lat":45.3561,"lng":10.9359,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"036","name":"GARDA","lat":45.5746,"lng":10.7077,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"040","name":"ISOLA DELLA SCALA","lat":45.2736,"lng":11.0088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"022","name":"CASTELNUOVO DEL GARDA","lat":45.4396,"lng":10.7641,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"043","name":"LAZISE","lat":45.5053,"lng":10.7326,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"091","name":"VERONA","lat":45.442,"lng":10.9955,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"050","name":"MONTEFORTE D'ALPONE","lat":45.4183,"lng":11.2849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"027","name":"COLOGNA VENETA","lat":45.3113,"lng":11.3855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"060","name":"POVEGLIANO VERONESE","lat":45.3505,"lng":10.8822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"026","name":"CERRO VERONESE","lat":45.5754,"lng":11.0427,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"080","name":"SELVA DI PROGNO","lat":45.6124,"lng":11.1391,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"065","name":"ROVERCHIARA","lat":45.2685,"lng":11.245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"081","name":"SOAVE","lat":45.422,"lng":11.2477,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"063","name":"RONCÀ","lat":45.4791,"lng":11.2891,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"073","name":"SAN MARTINO BUON ALBERGO","lat":45.422,"lng":11.0932,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"048","name":"MINERBE","lat":45.242,"lng":11.336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"089","name":"VALEGGIO SUL MINCIO","lat":45.3533,"lng":10.7348,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"032","name":"ERBÈ","lat":45.2425,"lng":10.9703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"058","name":"PESCANTINA","lat":45.4827,"lng":10.8675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"024","name":"CAZZANO DI TRAMIGNA","lat":45.474,"lng":11.2032,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"041","name":"ISOLA RIZZA","lat":45.2933,"lng":11.2,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"015","name":"BUSSOLENGO","lat":45.4746,"lng":10.8464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"061","name":"PRESSANA","lat":45.2854,"lng":11.4051,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"004","name":"ARCOLE","lat":45.3578,"lng":11.2856,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"062","name":"RIVOLI VERONESE","lat":45.5716,"lng":10.8119,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"076","name":"SAN PIETRO IN CARIANO","lat":45.5213,"lng":10.8841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"001","name":"AFFI","lat":45.5529,"lng":10.7787,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"093","name":"VESTENANOVA","lat":45.5745,"lng":11.2295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"059","name":"PESCHIERA DEL GARDA","lat":45.4394,"lng":10.6921,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"098","name":"ZIMELLA","lat":45.3657,"lng":11.3393,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"012","name":"BOVOLONE","lat":45.2581,"lng":11.12,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"008","name":"BEVILACQUA","lat":45.2328,"lng":11.3936,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"002","name":"ALBAREDO D'ADIGE","lat":45.3179,"lng":11.2753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"070","name":"SAN GIOVANNI ILARIONE","lat":45.5216,"lng":11.2374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"084","name":"SORGÀ","lat":45.2142,"lng":10.9809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"013","name":"BRENTINO BELLUNO","lat":45.6432,"lng":10.8727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"017","name":"CALDIERO","lat":45.4153,"lng":11.1784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"007","name":"BELFIORE","lat":45.3833,"lng":11.2106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"077","name":"SANT'AMBROGIO DI VALPOLICELLA","lat":45.5219,"lng":10.8374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"016","name":"BUTTAPIETRA","lat":45.3438,"lng":11.0022,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"039","name":"ILLASI","lat":45.4681,"lng":11.1834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"045","name":"MALCESINE","lat":45.7647,"lng":10.8121,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"020","name":"CASTAGNARO","lat":45.1204,"lng":11.4109,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"014","name":"BRENZONE","lat":45.701,"lng":10.7617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"096","name":"VILLAFRANCA DI VERONA","lat":45.3512,"lng":10.8458,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"028","name":"COLOGNOLA AI COLLI","lat":45.4347,"lng":11.1853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"046","name":"MARANO DI VALPOLICELLA","lat":45.5561,"lng":10.9154,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"019","name":"CASALEONE","lat":45.173,"lng":11.1953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"068","name":"SALIZZOLE","lat":45.2428,"lng":11.0882,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"030","name":"COSTERMANO","lat":45.5871,"lng":10.7394,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"018","name":"CAPRINO VERONESE","lat":45.606,"lng":10.7963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"049","name":"MONTECCHIA DI CROSARA","lat":45.4855,"lng":11.2555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"082","name":"SOMMACAMPAGNA","lat":45.4075,"lng":10.841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"051","name":"MOZZECANE","lat":45.3084,"lng":10.8199,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"042","name":"LAVAGNO","lat":45.4397,"lng":11.1352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"055","name":"OPPEANO","lat":45.3056,"lng":11.1806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"038","name":"GREZZANA","lat":45.5198,"lng":11.0172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"047","name":"MEZZANE DI SOTTO","lat":45.4823,"lng":11.129,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"083","name":"SONA","lat":45.4345,"lng":10.8324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"094","name":"VIGASIO","lat":45.3167,"lng":10.9413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"097","name":"ZEVIO","lat":45.3756,"lng":11.1372,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"010","name":"BOSCHI SANT'ANNA","lat":45.2188,"lng":11.3574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"053","name":"NOGARA","lat":45.1741,"lng":11.0669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"009","name":"BONAVIGO","lat":45.2606,"lng":11.2806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"011","name":"BOSCO CHIESANUOVA","lat":45.6198,"lng":11.0351,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"023","codice_comu_istat":"037","name":"GAZZO VERONESE","lat":45.1413,"lng":11.0775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"091","name":"SANDRIGO","lat":45.6607,"lng":11.6031,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"100","name":"SCHIO","lat":45.7135,"lng":11.3584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"083","name":"QUINTO VICENTINO","lat":45.5733,"lng":11.6269,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"063","name":"MONTE DI MALO","lat":45.6621,"lng":11.3624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"004","name":"ALTAVILLA VICENTINA","lat":45.5119,"lng":11.4604,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"022","name":"CAMPIGLIA DEI BERICI","lat":45.3358,"lng":11.5434,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"111","name":"VALDAGNO","lat":45.6502,"lng":11.3009,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"049","name":"LAGHI","lat":45.8246,"lng":11.272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"103","name":"SOVIZZO","lat":45.5277,"lng":11.4472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"118","name":"VILLAVERLA","lat":45.6527,"lng":11.4885,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"084","name":"RECOARO TERME","lat":45.7052,"lng":11.2256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"106","name":"TONEZZA DEL CIMONE","lat":45.8556,"lng":11.3472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"036","name":"CREAZZO","lat":45.5315,"lng":11.4814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"121","name":"ZOVENCEDO","lat":45.4296,"lng":11.5042,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"085","name":"ROANA","lat":45.876,"lng":11.4631,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"009","name":"ASIAGO","lat":45.8761,"lng":11.5088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"095","name":"SANTORSO","lat":45.7361,"lng":11.3928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"086","name":"ROMANO D'EZZELINO","lat":45.7963,"lng":11.7583,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"006","name":"ARCUGNANO","lat":45.4952,"lng":11.5515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"081","name":"POVE DEL GRAPPA","lat":45.7992,"lng":11.7309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"062","name":"MONTECCHIO PRECALCINO","lat":45.6667,"lng":11.5647,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"114","name":"VALSTAGNA","lat":45.8553,"lng":11.6624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"025","name":"CARTIGLIANO","lat":45.7139,"lng":11.6967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"014","name":"BREGANZE","lat":45.7081,"lng":11.5648,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"048","name":"ISOLA VICENTINA","lat":45.6292,"lng":11.4437,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"003","name":"ALONTE","lat":45.3669,"lng":11.4281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"043","name":"GAMBELLARA","lat":45.4608,"lng":11.3413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"047","name":"GRUMOLO DELLE ABBADESSE","lat":45.5205,"lng":11.6594,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"021","name":"CAMISANO VICENTINO","lat":45.518,"lng":11.7085,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"026","name":"CASSOLA","lat":45.7327,"lng":11.7963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"096","name":"SAN VITO DI LEGUZZANO","lat":45.6893,"lng":11.3738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"065","name":"MONTEGALDELLA","lat":45.437,"lng":11.6717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"050","name":"LASTEBASSE","lat":45.9155,"lng":11.2747,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"076","name":"PEDEMONTE","lat":45.5032,"lng":10.9189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"097","name":"SARCEDO","lat":45.7028,"lng":11.5304,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"092","name":"SAN GERMANO DEI BERICI","lat":45.402,"lng":11.4707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"005","name":"ALTISSIMO","lat":45.6154,"lng":11.2527,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"068","name":"MONTORSO VICENTINO","lat":45.4919,"lng":11.3613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"011","name":"BARBARANO VICENTINO","lat":45.4093,"lng":11.5422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"041","name":"FOZA","lat":45.897,"lng":11.6309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"093","name":"SAN NAZARIO","lat":45.8405,"lng":11.6906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"056","name":"MARANO VICENTINO","lat":45.6941,"lng":11.4285,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"033","name":"CONCO","lat":45.8009,"lng":11.6081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"015","name":"BRENDOLA","lat":45.4724,"lng":11.4461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"058","name":"MASON VICENTINO","lat":45.7195,"lng":11.6078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"008","name":"ARZIGNANO","lat":45.5194,"lng":11.3396,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"079","name":"POJANA MAGGIORE","lat":45.292561,"lng":11.51409,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"082","name":"POZZOLEONE","lat":45.6489,"lng":11.6792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"055","name":"MALO","lat":45.6613,"lng":11.4086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"037","name":"CRESPADORO","lat":45.6218,"lng":11.2262,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"117","name":"VILLAGA","lat":45.4034,"lng":11.5333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"061","name":"MONTECCHIO MAGGIORE","lat":45.5047,"lng":11.4058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"107","name":"TORREBELVICINO","lat":45.7178,"lng":11.3206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"012","name":"BASSANO DEL GRAPPA","lat":45.7666,"lng":11.734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"045","name":"GRANCONA","lat":45.4232,"lng":11.4529,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"080","name":"POSINA","lat":45.7917,"lng":11.2632,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"038","name":"DUEVILLE","lat":45.6365,"lng":11.5493,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"044","name":"GAMBUGLIANO","lat":45.5889,"lng":11.4397,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"064","name":"MONTEGALDA","lat":45.447,"lng":11.6761,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"115","name":"VELO D'ASTICO","lat":45.79,"lng":11.3663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"104","name":"TEZZE SUL BRENTA","lat":45.6845,"lng":11.7036,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"099","name":"SCHIAVON","lat":45.6974,"lng":11.6461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"053","name":"LUGO DI VICENZA","lat":45.7464,"lng":11.5299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"073","name":"NOVE","lat":45.7231,"lng":11.6788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"010","name":"ASIGLIANO VENETO","lat":45.3056,"lng":11.4475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"032","name":"COGOLLO DEL CENGIO","lat":45.7838,"lng":11.4273,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"039","name":"ENEGO","lat":45.9425,"lng":11.7066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"017","name":"BROGLIANO","lat":45.589,"lng":11.3671,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"071","name":"NANTO","lat":45.4346,"lng":11.578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"023","name":"CAMPOLONGO SUL BRENTA","lat":45.8281,"lng":11.7019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"112","name":"VALDASTICO","lat":45.8877,"lng":11.3627,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"087","name":"ROSÀ","lat":45.7277,"lng":11.7632,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"078","name":"PIOVENE ROCCHETTE","lat":45.7586,"lng":11.4359,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"018","name":"CALDOGNO","lat":45.6088,"lng":11.5039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"016","name":"BRESSANVIDO","lat":45.6443,"lng":11.6315,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"075","name":"ORGIANO","lat":45.3489,"lng":11.4642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"002","name":"ALBETTONE","lat":45.3578,"lng":11.5828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"070","name":"MUSSOLENTE","lat":45.7802,"lng":11.8074,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"119","name":"ZANÈ","lat":45.722,"lng":11.4564,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"098","name":"SAREGO","lat":45.4075,"lng":11.4051,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"089","name":"ROTZO","lat":45.8628,"lng":11.3974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"090","name":"SALCEDO","lat":45.7579,"lng":11.5682,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"013","name":"BOLZANO VICENTINO","lat":45.6028,"lng":11.6231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"105","name":"THIENE","lat":45.7099,"lng":11.4806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"122","name":"ZUGLIANO","lat":45.7308,"lng":11.525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"074","name":"NOVENTA VICENTINA","lat":45.2906,"lng":11.5401,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"120","name":"ZERMEGHEDO","lat":45.4759,"lng":11.3706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"035","name":"COSTABISSARA","lat":45.5845,"lng":11.4883,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"029","name":"CHIAMPO","lat":45.5469,"lng":11.2806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"094","name":"SAN PIETRO MUSSOLINO","lat":45.5807,"lng":11.2643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"088","name":"ROSSANO VENETO","lat":45.7067,"lng":11.807,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"072","name":"NOGAROLE VICENTINO","lat":45.5611,"lng":11.2898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"059","name":"MOLVENA","lat":45.7449,"lng":11.6147,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"051","name":"LONGARE","lat":45.4791,"lng":11.6085,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"028","name":"CASTELGOMBERTO","lat":45.586,"lng":11.3967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"019","name":"CALTRANO","lat":45.7744,"lng":11.453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"108","name":"TORRI DI QUARTESOLO","lat":45.5231,"lng":11.6097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"067","name":"MONTICELLO CONTE OTTO","lat":45.5943,"lng":11.5849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"113","name":"VALLI DEL PASUBIO","lat":45.7417,"lng":11.2628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"116","name":"VICENZA","lat":45.5459,"lng":11.5403,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"007","name":"ARSIERO","lat":45.8039,"lng":11.3553,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"030","name":"CHIUPPANO","lat":45.7649,"lng":11.4628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"042","name":"GALLIO","lat":45.8914,"lng":11.543,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"020","name":"CALVENE","lat":45.7687,"lng":11.5147,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"031","name":"CISMON DEL GRAPPA","lat":45.9205,"lng":11.7295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"077","name":"PIANEZZE","lat":45.7408,"lng":11.628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"040","name":"FARA VICENTINO","lat":45.7403,"lng":11.5477,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"054","name":"LUSIANA","lat":45.7853,"lng":11.5754,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"024","name":"CARRÈ","lat":45.7499,"lng":11.4589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"102","name":"SOSSANO","lat":45.3613,"lng":11.5131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"110","name":"TRISSINO","lat":45.5622,"lng":11.3728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"046","name":"GRISIGNANO DI ZOCCO","lat":45.4759,"lng":11.6994,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"001","name":"AGUGLIARO","lat":45.3264,"lng":11.5853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"101","name":"SOLAGNA","lat":45.8202,"lng":11.7164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"034","name":"CORNEDO VICENTINO","lat":45.6141,"lng":11.3417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"027","name":"CASTEGNERO","lat":45.4377,"lng":11.6011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"057","name":"MAROSTICA","lat":45.7446,"lng":11.6555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"066","name":"MONTEVIALE","lat":45.5614,"lng":11.4591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"069","name":"MOSSANO","lat":45.4195,"lng":11.5557,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"052","name":"LONIGO","lat":45.388,"lng":11.3881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"024","codice_comu_istat":"060","name":"MONTEBELLO VICENTINO","lat":45.4575,"lng":11.3845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"037","name":"PERAROLO DI CADORE","lat":46.3971,"lng":12.3555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"042","name":"QUERO","lat":45.922,"lng":11.9317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"040","name":"PONTE NELLE ALPI","lat":46.1831,"lng":12.2792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"002","name":"ALANO DI PIAVE","lat":45.9078,"lng":11.9095,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"069","name":"ZOPPÈ DI CADORE","lat":46.388,"lng":12.1719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"015","name":"COMELICO SUPERIORE","lat":46.5906,"lng":12.5155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"048","name":"SANTA GIUSTINA","lat":44.4177,"lng":8.4825,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"043","name":"RIVAMONTE AGORDINO","lat":46.2539,"lng":12.0239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"044","name":"ROCCA PIETORE","lat":46.4349,"lng":11.9778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"050","name":"SANTO STEFANO DI CADORE","lat":46.5585,"lng":12.5521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"041","name":"PUOS D'ALPAGO","lat":46.136,"lng":12.3485,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"033","name":"LOZZO DI CADORE","lat":46.486,"lng":12.4446,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"059","name":"TAIBON AGORDINO","lat":46.302,"lng":12.0108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"004","name":"ARSIÈ","lat":45.9839,"lng":11.7594,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"014","name":"COLLE SANTA LUCIA","lat":46.4496,"lng":12.015,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"061","name":"TRICHIANA","lat":46.0741,"lng":12.1332,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"007","name":"BORCA DI CADORE","lat":46.4374,"lng":12.2206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"021","name":"FELTRE","lat":46.0165,"lng":11.9057,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"035","name":"OSPITALE DI CADORE","lat":46.3283,"lng":12.3232,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"060","name":"TAMBRE","lat":46.1274,"lng":12.4205,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"017","name":"DANTA DI CADORE","lat":46.5671,"lng":12.5208,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"058","name":"SOVRAMONTE","lat":46.0595,"lng":11.7877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"009","name":"CASTELLAVAZZO","lat":45.93433,"lng":11.09591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"054","name":"SELVA DI CADORE","lat":46.451,"lng":12.0386,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"066","name":"VODO CADORE","lat":46.4185,"lng":12.2478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"039","name":"PIEVE DI CADORE","lat":46.4285,"lng":12.3741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"052","name":"SAPPADA","lat":46.5675,"lng":12.6853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"022","name":"FONZASO","lat":46.0181,"lng":11.801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"028","name":"LENTIAI","lat":46.045,"lng":12.0205,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"034","name":"MEL","lat":46.0645,"lng":12.0881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"013","name":"CIBIANA DI CADORE","lat":46.3888,"lng":12.2866,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"055","name":"SEREN DEL GRAPPA","lat":45.9888,"lng":11.8427,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"038","name":"PIEVE D'ALPAGO","lat":46.1678,"lng":12.3532,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"020","name":"FARRA D'ALPAGO","lat":46.121,"lng":12.3587,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"011","name":"CESIOMAGGIORE","lat":46.0891,"lng":11.9877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"062","name":"VALLADA AGORDINA","lat":46.3632,"lng":11.9347,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"051","name":"SAN VITO DI CADORE","lat":46.4613,"lng":12.2083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"025","name":"GOSALDO","lat":46.2222,"lng":11.955,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"046","name":"SAN NICOLÒ DI COMELICO","lat":46.5819,"lng":12.5286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"067","name":"VOLTAGO AGORDINO","lat":46.273,"lng":12.0063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"006","name":"BELLUNO","lat":46.14,"lng":12.2176,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"068","name":"ZOLDO ALTO","lat":46.3757,"lng":12.1258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"023","name":"CANALE D'AGORDO","lat":46.3571,"lng":11.9146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"001","name":"AGORDO","lat":46.2823,"lng":12.0344,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"026","name":"LAMON","lat":46.0476,"lng":11.7491,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"053","name":"SEDICO","lat":46.1113,"lng":12.097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"019","name":"FALCADE","lat":46.354,"lng":11.8642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"018","name":"DOMEGGE DI CADORE","lat":46.4603,"lng":12.4149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"064","name":"VAS","lat":45.9392,"lng":11.9357,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"003","name":"ALLEGHE","lat":46.4073,"lng":12.0253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"012","name":"CHIES D'ALPAGO","lat":46.1655,"lng":12.3944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"005","name":"AURONZO DI CADORE","lat":46.5627,"lng":12.417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"008","name":"CALALZO DI CADORE","lat":46.4472,"lng":12.3836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"036","name":"PEDAVENA","lat":46.0396,"lng":11.8804,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"024","name":"FORNO DI ZOLDO","lat":46.3488,"lng":12.1831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"049","name":"SAN TOMASO AGORDINO","lat":46.3817,"lng":11.9755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"030","name":"LIVINALLONGO DEL COL DI LANA","lat":46.4816,"lng":11.9554,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"065","name":"VIGO DI CADORE","lat":46.4998,"lng":12.4721,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"057","name":"SOVERZENE","lat":46.2045,"lng":12.3042,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"031","name":"LONGARONE","lat":46.2666,"lng":12.3,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"047","name":"SAN PIETRO DI CADORE","lat":46.5769,"lng":12.5926,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"027","name":"LA VALLE AGORDINA","lat":46.2814,"lng":12.0661,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"010","name":"CENCENIGHE AGORDINO","lat":46.3441,"lng":11.9746,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"063","name":"VALLE DI CADORE","lat":46.4189,"lng":12.3356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"056","name":"SOSPIROLO","lat":46.1417,"lng":12.072,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"029","name":"LIMANA","lat":46.1038,"lng":12.1874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"016","name":"CORTINA D'AMPEZZO","lat":46.5374,"lng":12.1389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"032","name":"LORENZAGO DI CADORE","lat":46.4806,"lng":12.4605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"025","codice_comu_istat":"045","name":"SAN GREGORIO NELLE ALPI","lat":46.1049,"lng":12.0294,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"061","name":"POSSAGNO","lat":45.8534,"lng":11.8742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"009","name":"CASALE SUL SILE","lat":45.5989,"lng":12.3244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"037","name":"MANSUÈ","lat":45.8232,"lng":12.5355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"016","name":"CHIARANO","lat":45.73,"lng":12.5838,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"014","name":"CAVASO DEL TOMBA","lat":45.8617,"lng":11.8996,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"058","name":"PONTE DI PIAVE","lat":45.7147,"lng":12.4645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"047","name":"MORGANO","lat":45.6482,"lng":12.1033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"063","name":"PREGANZIOL","lat":45.6022,"lng":12.2352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"062","name":"POVEGLIANO","lat":45.7611,"lng":12.2038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"042","name":"MIANE","lat":45.9455,"lng":12.0965,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"094","name":"ZENSON DI PIAVE","lat":45.6782,"lng":12.4895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"019","name":"CODOGNÈ","lat":45.8702,"lng":12.4308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"008","name":"CARBONERA","lat":45.6845,"lng":12.2855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"003","name":"ASOLO","lat":45.7933,"lng":11.9128,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"021","name":"CONEGLIANO","lat":45.8881,"lng":12.305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"088","name":"VAZZOLA","lat":45.8428,"lng":12.3843,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"040","name":"MASERADA SUL PIAVE","lat":45.7499,"lng":12.32,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"025","name":"CROCETTA DEL MONTELLO","lat":45.8256,"lng":12.0356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"080","name":"SERNAGLIA DELLA BATTAGLIA","lat":45.8755,"lng":12.1316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"033","name":"GODEGA DI SANT'URBANO","lat":45.9308,"lng":12.3992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"091","name":"VILLORBA","lat":45.7137,"lng":12.2601,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"068","name":"RIESE PIO X","lat":45.73,"lng":11.92,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"044","name":"MONASTIER DI TREVISO","lat":45.6509,"lng":12.4354,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"056","name":"PEDEROBBA","lat":45.878,"lng":11.955,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"006","name":"CAERANO DI SAN MARCO","lat":45.7863,"lng":12.0039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"067","name":"REVINE LAGO","lat":46.0017,"lng":12.2571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"017","name":"CIMADOLMO","lat":45.7846,"lng":12.364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"005","name":"BREDA DI PIAVE","lat":45.7249,"lng":12.3338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"030","name":"FREGONA","lat":46.0044,"lng":12.3413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"028","name":"FONTANELLE","lat":45.4488,"lng":11.6574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"078","name":"SARMEDE","lat":45.9777,"lng":12.3853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"027","name":"FOLLINA","lat":45.9525,"lng":12.1206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"076","name":"SAN VENDEMIANO","lat":45.8867,"lng":12.3517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"004","name":"BORSO DEL GRAPPA","lat":45.8208,"lng":11.7961,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"046","name":"MONTEBELLUNA","lat":45.7775,"lng":12.0464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"022","name":"CORDIGNANO","lat":45.9528,"lng":12.4149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"093","name":"VOLPAGO DEL MONTELLO","lat":45.7783,"lng":12.1155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"060","name":"PORTOBUFFOLÈ","lat":45.8562,"lng":12.5377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"073","name":"SAN PIETRO DI FELETTO","lat":45.9306,"lng":12.2384,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"087","name":"VALDOBBIADENE","lat":45.9013,"lng":11.9954,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"015","name":"CESSALTO","lat":45.7141,"lng":12.6155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"072","name":"SAN FIOR","lat":45.921,"lng":12.3574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"045","name":"MONFUMO","lat":45.8311,"lng":11.9203,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"069","name":"RONCADE","lat":45.6281,"lng":12.3748,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"053","name":"ORSAGO","lat":45.9307,"lng":12.4236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"002","name":"ARCADE","lat":45.6542,"lng":12.2899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"043","name":"MOGLIANO VENETO","lat":45.5613,"lng":12.2363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"035","name":"ISTRANA","lat":45.6778,"lng":12.1042,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"024","name":"CRESPANO DEL GRAPPA","lat":45.8264,"lng":11.8349,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"051","name":"ODERZO","lat":45.7813,"lng":12.4936,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"023","name":"CORNUDA","lat":45.8318,"lng":12.0081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"054","name":"PADERNO DEL GRAPPA","lat":45.8294,"lng":11.8596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"066","name":"RESANA","lat":45.6336,"lng":11.9555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"039","name":"MASER","lat":45.8085,"lng":11.9761,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"095","name":"ZERO BRANCO","lat":45.6027,"lng":12.1663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"077","name":"SAN ZENONE DEGLI EZZELINI","lat":45.7814,"lng":11.8383,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"020","name":"COLLE UMBERTO","lat":45.94,"lng":12.34,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"090","name":"VIDOR","lat":45.8615,"lng":12.0387,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"064","name":"QUINTO DI TREVISO","lat":45.646,"lng":12.1672,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"070","name":"SALGAREDA","lat":45.7045,"lng":12.4922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"086","name":"TREVISO","lat":45.6663,"lng":12.2421,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"018","name":"CISON DI VALMARINO","lat":45.9674,"lng":12.1442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"001","name":"ALTIVOLE","lat":45.7547,"lng":11.9574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"092","name":"VITTORIO VENETO","lat":45.9798,"lng":12.3033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"081","name":"SILEA","lat":45.6547,"lng":12.2968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"011","name":"CASTELCUCCO","lat":45.8317,"lng":11.8853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"052","name":"ORMELLE","lat":45.7803,"lng":12.4231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"057","name":"PIEVE DI SOLIGO","lat":45.9,"lng":12.1715,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"041","name":"MEDUNA DI LIVENZA","lat":45.8069,"lng":12.6149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"050","name":"NERVESA DELLA BATTAGLIA","lat":45.8231,"lng":12.2059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"013","name":"CASTELLO DI GODEGO","lat":45.6944,"lng":11.878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"036","name":"LORIA","lat":45.7309,"lng":11.8664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"048","name":"MORIAGO DELLA BATTAGLIA","lat":45.871,"lng":12.0787,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"065","name":"REFRONTOLO","lat":45.925,"lng":12.21,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"084","name":"TARZO","lat":45.9728,"lng":12.2341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"071","name":"SAN BIAGIO DI CALLALTA","lat":45.6855,"lng":12.3772,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"055","name":"PAESE","lat":45.6776,"lng":12.1564,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"075","name":"SANTA LUCIA DI PIAVE","lat":45.8451,"lng":12.2808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"049","name":"MOTTA DI LIVENZA","lat":45.7775,"lng":12.6088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"082","name":"SPRESIANO","lat":45.7795,"lng":12.2561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"010","name":"CASIER","lat":45.6439,"lng":12.2958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"034","name":"GORGO AL MONTICANO","lat":45.7885,"lng":12.5524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"026","name":"FARRA DI SOLIGO","lat":45.9113,"lng":12.1586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"079","name":"SEGUSINO","lat":45.918,"lng":11.9567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"059","name":"PONZANO VENETO","lat":45.7078,"lng":12.2228,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"012","name":"CASTELFRANCO VENETO","lat":45.6713,"lng":11.9262,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"032","name":"GIAVERA DEL MONTELLO","lat":45.7949,"lng":12.1695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"089","name":"VEDELAGO","lat":45.6866,"lng":12.0179,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"029","name":"FONTE","lat":45.7849,"lng":11.8724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"083","name":"SUSEGANA","lat":45.852,"lng":12.2508,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"031","name":"GAIARINE","lat":45.8795,"lng":12.481,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"038","name":"MARENO DI PIAVE","lat":45.8409,"lng":12.3507,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"074","name":"SAN POLO DI PIAVE","lat":45.7925,"lng":12.3944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"007","name":"CAPPELLA MAGGIORE","lat":45.9781,"lng":12.3424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"026","codice_comu_istat":"085","name":"TREVIGNANO","lat":45.7434,"lng":12.0927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"025","name":"MUSILE DI PIAVE","lat":45.6178,"lng":12.565,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"013","name":"ERACLEA","lat":45.5786,"lng":12.6781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"038","name":"SPINEA","lat":45.4904,"lng":12.1681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"021","name":"MARTELLAGO","lat":45.5461,"lng":12.1602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"028","name":"PIANIGA","lat":45.4561,"lng":12.0309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"043","name":"VIGONOVO","lat":45.3894,"lng":12.0063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"004","name":"CAMPONOGARA","lat":45.3834,"lng":12.0724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"012","name":"DOLO","lat":45.4262,"lng":12.0745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"040","name":"TEGLIO VENETO","lat":45.8154,"lng":12.8846,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"033","name":"SAN DONÀ DI PIAVE","lat":45.632,"lng":12.5663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"003","name":"CAMPOLONGO MAGGIORE","lat":45.3228,"lng":12.0451,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"026","name":"NOALE","lat":45.5505,"lng":12.0722,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"009","name":"CINTO CAOMAGGIORE","lat":45.83,"lng":12.7836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"032","name":"SALZANO","lat":45.5209,"lng":12.1056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"016","name":"FOSSALTA DI PORTOGRUARO","lat":45.7924,"lng":12.9086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"024","name":"MIRANO","lat":45.4922,"lng":12.1083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"044","name":"CAVALLINO-TREPORTI","lat":45.4818,"lng":12.5505,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"036","name":"SAN STINO DI LIVENZA","lat":45.609638,"lng":13.85666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"027","name":"NOVENTA DI PIAVE","lat":45.6608,"lng":12.5347,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"019","name":"JESOLO","lat":45.5354,"lng":12.645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"010","name":"CONA","lat":45.1859,"lng":12.0195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"002","name":"CAMPAGNA LUPIA","lat":45.3558,"lng":12.0963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"031","name":"QUARTO D'ALTINO","lat":45.5492,"lng":12.401,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"023","name":"MIRA","lat":45.4368,"lng":12.1313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"020","name":"MARCON","lat":45.5616,"lng":12.2981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"017","name":"FOSSÒ","lat":45.3863,"lng":12.0505,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"030","name":"PRAMAGGIORE","lat":45.8153,"lng":12.7372,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"029","name":"PORTOGRUARO","lat":45.775,"lng":12.8378,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"006","name":"CAVARZERE","lat":45.1345,"lng":12.0809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"014","name":"FIESSO D'ARTICO","lat":45.4175,"lng":12.0347,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"035","name":"SANTA MARIA DI SALA","lat":45.5044,"lng":12.035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"039","name":"STRA","lat":45.3238,"lng":11.3316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"007","name":"CEGGIA","lat":45.6864,"lng":12.6392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"041","name":"TORRE DI MOSTO","lat":45.6861,"lng":12.7039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"022","name":"MEOLO","lat":45.6202,"lng":12.4526,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"005","name":"CAORLE","lat":45.5949,"lng":12.8708,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"008","name":"CHIOGGIA","lat":45.2171,"lng":12.2788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"037","name":"SCORZÈ","lat":45.5714,"lng":12.108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"001","name":"ANNONE VENETO","lat":45.7941,"lng":12.6835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"018","name":"GRUARO","lat":45.8327,"lng":12.8461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"042","name":"VENEZIA","lat":45.4345,"lng":12.3384,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"027","codice_comu_istat":"034","name":"SAN MICHELE AL TAGLIAMENTO","lat":45.7642,"lng":12.995,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"011","name":"CONCORDIA SAGITTARIA","lat":45.7569,"lng":12.8443,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"027","codice_comu_istat":"015","name":"FOSSALTA DI PIAVE","lat":45.644,"lng":12.5118,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"004","name":"ANGUILLARA VENETA","lat":45.1394,"lng":11.889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"062","name":"PIACENZA D'ADIGE","lat":45.1297,"lng":11.5504,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"095","name":"URBANA","lat":45.1938,"lng":11.4459,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"093","name":"TREBASELEGHE","lat":45.591,"lng":12.0506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"059","name":"OSPEDALETTO EUGANEO","lat":45.2232,"lng":11.6111,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"005","name":"ARQUÀ PETRARCA","lat":45.2701,"lng":11.7168,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"026","name":"CARTURA","lat":45.2694,"lng":11.8578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"042","name":"GRANTORTO","lat":45.6019,"lng":11.7327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"105","name":"VO'","lat":45.4559,"lng":11.4444,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"049","name":"MASI","lat":45.1099,"lng":11.4903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"071","name":"ROVOLON","lat":45.3654,"lng":11.6623,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"019","name":"CAMPOSAMPIERO","lat":45.5694,"lng":11.9364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"085","name":"SAONARA","lat":45.3663,"lng":11.986,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"098","name":"VIGHIZZOLO D'ESTE","lat":45.1774,"lng":11.6258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"028","name":"CASALSERUGO","lat":45.317,"lng":11.9133,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"029","name":"CASTELBALDO","lat":45.1234,"lng":11.4592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"035","name":"CORREZZOLA","lat":45.2363,"lng":12.0688,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"015","name":"BRUGINE","lat":45.2975,"lng":11.9963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"084","name":"SANT'URBANO","lat":45.5405,"lng":11.4005,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"104","name":"VILLANOVA DI CAMPOSAMPIERO","lat":45.4906,"lng":11.9705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"074","name":"SALETTO","lat":45.7239,"lng":12.3991,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"045","name":"LIMENA","lat":45.4733,"lng":11.8449,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"040","name":"GALZIGNANO TERME","lat":45.3075,"lng":11.7314,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"056","name":"MONTAGNANA","lat":43.9549,"lng":10.8242,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"092","name":"TORREGLIA","lat":45.3354,"lng":11.7319,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"067","name":"PONSO","lat":45.1926,"lng":11.5871,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"050","name":"MASSANZAGO","lat":45.5574,"lng":12.0085,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"065","name":"PIOVE DI SACCO","lat":45.2962,"lng":12.0347,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"100","name":"VIGONZA","lat":45.4315,"lng":11.967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"016","name":"CADONEGHE","lat":45.4482,"lng":11.9092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"089","name":"TEOLO","lat":45.3485,"lng":11.6723,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"032","name":"CITTADELLA","lat":45.6488,"lng":11.7836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"006","name":"ARRE","lat":45.2191,"lng":11.9253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"077","name":"SAN MARTINO DI LUPARI","lat":45.6507,"lng":11.8537,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"086","name":"SELVAZZANO DENTRO","lat":45.3894,"lng":11.7895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"027","name":"CASALE DI SCODOSIA","lat":45.1871,"lng":11.4694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"017","name":"CAMPODARSEGO","lat":45.5027,"lng":11.9076,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"106","name":"DUE CARRARE","lat":45.2936,"lng":11.8191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"082","name":"SANT'ANGELO DI PIOVE DI SACCO","lat":45.3475,"lng":12.0022,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"088","name":"STANGHELLA","lat":45.1353,"lng":11.7574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"081","name":"SANTA MARGHERITA D'ADIGE","lat":45.2134,"lng":11.5554,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"012","name":"BOARA PISANI","lat":45.1067,"lng":11.7839,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"090","name":"TERRASSA PADOVANA","lat":45.245,"lng":11.9038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"096","name":"VEGGIANO","lat":45.4481,"lng":11.7139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"079","name":"SAN PIETRO VIMINARIO","lat":45.2444,"lng":11.8174,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"072","name":"RUBANO","lat":45.4219,"lng":11.8083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"103","name":"VILLAFRANCA PADOVANA","lat":45.4928,"lng":11.7945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"066","name":"POLVERARA","lat":45.3103,"lng":11.957,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"022","name":"CARCERI","lat":45.197,"lng":11.6203,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"051","name":"MEGLIADINO SAN FIDENZIO","lat":45.2185,"lng":11.517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"036","name":"CURTAROLO","lat":45.5228,"lng":11.8324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"078","name":"SAN PIETRO IN GU","lat":45.6116,"lng":11.6726,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"041","name":"GAZZO","lat":45.5816,"lng":11.7053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"091","name":"TOMBOLO","lat":45.6455,"lng":11.8273,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"002","name":"AGNA","lat":45.1697,"lng":11.9604,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"018","name":"CAMPODORO","lat":45.4913,"lng":11.7531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"001","name":"ABANO TERME","lat":45.3605,"lng":11.7894,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"060","name":"PADOVA","lat":45.4167,"lng":11.8833,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"097","name":"VESCOVANA","lat":45.1363,"lng":11.7108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"073","name":"SACCOLONGO","lat":45.4038,"lng":11.7471,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"021","name":"CANDIANA","lat":45.222,"lng":11.9902,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"075","name":"SAN GIORGIO DELLE PERTICHE","lat":45.5409,"lng":11.9094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"083","name":"SANT'ELENA","lat":45.6824,"lng":12.7339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"043","name":"GRANZE","lat":45.1575,"lng":11.7158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"052","name":"MEGLIADINO SAN VITALE","lat":45.1975,"lng":11.527,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"023","name":"CARMIGNANO DI BRENTA","lat":45.6302,"lng":11.707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"101","name":"VILLA DEL CONTE","lat":45.5835,"lng":11.8604,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"058","name":"NOVENTA PADOVANA","lat":45.4153,"lng":11.952,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"048","name":"MASERÀ DI PADOVA","lat":45.3202,"lng":11.8642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"033","name":"CODEVIGO","lat":45.2677,"lng":12.0997,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"094","name":"TRIBANO","lat":45.2088,"lng":11.8311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"020","name":"CAMPO SAN MARTINO","lat":45.5456,"lng":11.8116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"009","name":"BAONE","lat":45.2445,"lng":11.6892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"034","name":"CONSELVE","lat":45.2319,"lng":11.8749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"063","name":"PIAZZOLA SUL BRENTA","lat":45.542,"lng":11.7863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"010","name":"BARBONA","lat":45.1034,"lng":11.7031,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"008","name":"BAGNOLI DI SOPRA","lat":45.1886,"lng":11.8859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"044","name":"LEGNARO","lat":45.3423,"lng":11.9662,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"031","name":"CINTO EUGANEO","lat":45.2758,"lng":11.6628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"099","name":"VIGODARZERE","lat":45.4605,"lng":11.8793,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"080","name":"SANTA GIUSTINA IN COLLE","lat":45.5633,"lng":11.9067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"069","name":"PONTE SAN NICOLÒ","lat":45.364,"lng":11.9364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"057","name":"MONTEGROTTO TERME","lat":45.3319,"lng":11.7838,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"046","name":"LOREGGIA","lat":45.7647,"lng":11.9236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"007","name":"ARZERGRANDE","lat":45.2738,"lng":12.0528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"076","name":"SAN GIORGIO IN BOSCO","lat":45.5906,"lng":11.8066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"037","name":"ESTE","lat":45.2276,"lng":11.6566,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"055","name":"MONSELICE","lat":45.2395,"lng":11.7504,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"014","name":"BOVOLENTA","lat":45.2496,"lng":11.9992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"039","name":"GALLIERA VENETA","lat":45.664,"lng":11.8305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"013","name":"BORGORICCO","lat":45.5363,"lng":11.9422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"054","name":"MESTRINO","lat":45.4419,"lng":11.7616,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"102","name":"VILLA ESTENSE","lat":45.1726,"lng":11.6675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"087","name":"SOLESINO","lat":45.1787,"lng":11.7438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"038","name":"FONTANIVA","lat":45.635,"lng":11.7497,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"011","name":"BATTAGLIA TERME","lat":45.29,"lng":11.7823,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"030","name":"CERVARESE SANTA CROCE","lat":45.4245,"lng":11.6868,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"003","name":"ALBIGNASEGO","lat":45.3484,"lng":11.8683,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"061","name":"PERNUMIA","lat":45.2584,"lng":11.789,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"068","name":"PONTELONGO","lat":45.2481,"lng":12.0258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"047","name":"LOZZO ATESTINO","lat":45.287,"lng":11.6277,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"070","name":"POZZONOVO","lat":45.1974,"lng":11.7928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"053","name":"MERLARA","lat":45.1674,"lng":11.4424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"028","codice_comu_istat":"064","name":"PIOMBINO DESE","lat":45.6067,"lng":11.998,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"045","name":"STIENTA","lat":44.942,"lng":11.5431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"051","name":"VILLANOVA MARCHESANA","lat":44.9933,"lng":11.9658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"039","name":"PORTO TOLLE","lat":44.9502,"lng":12.3218,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"030","name":"LOREO","lat":45.0625,"lng":12.1896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"047","name":"TRECENTA","lat":45.032,"lng":11.461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"035","name":"PETTORAZZA GRIMANI","lat":45.137,"lng":11.9878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"026","name":"GAVELLO","lat":45.0227,"lng":11.9163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"025","name":"GAIBA","lat":44.9472,"lng":11.4813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"005","name":"BAGNOLO DI PO","lat":45.0164,"lng":11.5021,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"041","name":"ROVIGO","lat":45.0707,"lng":11.7898,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"024","name":"FRATTA POLESINE","lat":45.0303,"lng":11.6461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"042","name":"SALARA","lat":44.9842,"lng":11.4274,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"012","name":"CASTELMASSA","lat":45.0196,"lng":11.3144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"033","name":"OCCHIOBELLO","lat":44.9217,"lng":11.5813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"049","name":"VILLAMARZANA","lat":45.0145,"lng":11.6984,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"006","name":"BERGANTINO","lat":45.062,"lng":11.2528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"002","name":"ARIANO NEL POLESINE","lat":44.947,"lng":12.1259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"017","name":"CORBOLA","lat":45.0051,"lng":12.0837,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"021","name":"FICAROLO","lat":44.9553,"lng":11.436,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"031","name":"LUSIA","lat":45.0996,"lng":11.6663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"015","name":"CEREGNANO","lat":45.0489,"lng":11.8703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"052","name":"PORTO VIRO","lat":45.0249,"lng":12.22,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"040","name":"ROSOLINA","lat":45.076,"lng":12.2433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"046","name":"TAGLIO DI PO","lat":45.0074,"lng":12.2121,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"037","name":"POLESELLA","lat":44.9635,"lng":11.7539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"007","name":"BOSARO","lat":44.9999,"lng":11.7658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"023","name":"FRASSINELLE POLESINE","lat":44.9962,"lng":11.698,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"010","name":"CANDA","lat":45.0341,"lng":11.5067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"028","name":"GUARDA VENETA","lat":44.9816,"lng":11.8014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"013","name":"CASTELNOVO BARIANO","lat":45.0367,"lng":11.27,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"048","name":"VILLADOSE","lat":45.0699,"lng":11.8944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"044","name":"SAN MARTINO DI VENEZZE","lat":45.1299,"lng":11.8689,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"003","name":"ARQUÀ POLESINE","lat":45.0111,"lng":11.741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"009","name":"CANARO","lat":44.9359,"lng":11.677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"027","name":"GIACCIANO CON BARUCHELLA","lat":45.0655,"lng":11.4515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"032","name":"MELARA","lat":45.0644,"lng":11.1981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"038","name":"PONTECCHIO POLESINE","lat":45.0208,"lng":11.8149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"043","name":"SAN BELLINO","lat":45.031,"lng":11.59,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"050","name":"VILLANOVA DEL GHEBBO","lat":45.0602,"lng":11.64,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"018","name":"COSTA DI ROVIGO","lat":45.05,"lng":11.6956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"022","name":"FIESSO UMBERTIANO","lat":44.9636,"lng":11.6064,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"019","name":"CRESPINO","lat":44.9824,"lng":11.8859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"036","name":"PINCARA","lat":44.9924,"lng":11.6099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"014","name":"CENESELLI","lat":45.0147,"lng":11.3711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"034","name":"PAPOZZE","lat":44.9867,"lng":12.0321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"011","name":"CASTELGUGLIELMO","lat":45.0258,"lng":11.5377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"029","name":"LENDINARA","lat":45.0837,"lng":11.5991,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"004","name":"BADIA POLESINE","lat":45.0972,"lng":11.4891,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"008","name":"CALTO","lat":44.9922,"lng":11.3578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"029","codice_comu_istat":"001","name":"ADRIA","lat":45.0575,"lng":12.0559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"048","name":"LESTIZZA","lat":45.9574,"lng":13.1458,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"060","name":"MOIMACCO","lat":46.0924,"lng":13.3781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"135","name":"VISCO","lat":45.8924,"lng":13.3495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"128","name":"TRIVIGNANO UDINESE","lat":45.9444,"lng":13.3417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"097","name":"RONCHIS","lat":45.8077,"lng":13.0,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"108","name":"SAVOGNA","lat":46.1594,"lng":13.5293,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"084","name":"PREONE","lat":46.3944,"lng":12.8657,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"020","name":"CASTIONS DI STRADA","lat":45.9074,"lng":13.1864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"054","name":"MALBORGHETTO VALBRUNA","lat":46.4925,"lng":13.4925,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"010","name":"BERTIOLO","lat":45.945,"lng":13.0553,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"011","name":"BICINICCO","lat":45.9367,"lng":13.2522,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"121","name":"TOLMEZZO","lat":46.4063,"lng":13.0126,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"102","name":"SAN LEONARDO","lat":46.1191,"lng":13.532,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"080","name":"PRADAMANO","lat":46.0349,"lng":13.3038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"103","name":"SAN PIETRO AL NATISONE","lat":46.1277,"lng":13.4863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"111","name":"STREGNA","lat":46.127,"lng":13.5788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"035","name":"ENEMONZO","lat":46.41,"lng":12.8774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"072","name":"PASIAN DI PRATO","lat":46.0471,"lng":13.1898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"123","name":"TORVISCOSA","lat":45.8231,"lng":13.278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"044","name":"GONARS","lat":45.8969,"lng":13.2381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"021","name":"CAVAZZO CARNICO","lat":46.3688,"lng":13.0413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"059","name":"MOGGIO UDINESE","lat":46.4086,"lng":13.1983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"018","name":"CARLINO","lat":45.8034,"lng":13.1896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"016","name":"CAMPOFORMIDO","lat":46.0197,"lng":13.1607,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"056","name":"MARANO LAGUNARE","lat":45.7651,"lng":13.1675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"023","name":"CERVIGNANO DEL FRIULI","lat":45.8234,"lng":13.3354,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"104","name":"SANTA MARIA LA LONGA","lat":45.9355,"lng":13.2894,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"012","name":"BORDANO","lat":46.3157,"lng":13.1051,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"129","name":"UDINE","lat":46.0649,"lng":13.2307,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"075","name":"POCENIA","lat":45.8364,"lng":13.1019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"098","name":"RUDA","lat":45.8414,"lng":13.4056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"073","name":"PAULARO","lat":46.5287,"lng":13.1204,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"068","name":"PAGNACCO","lat":46.1256,"lng":13.1894,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"031","name":"COSEANO","lat":46.098,"lng":13.0206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"099","name":"SAN DANIELE DEL FRIULI","lat":46.1613,"lng":13.0111,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"064","name":"MUZZANA DEL TURGNANO","lat":45.82,"lng":13.1306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"065","name":"NIMIS","lat":46.2003,"lng":13.2717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"077","name":"PORPETTO","lat":45.8592,"lng":13.2189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"027","name":"CODROIPO","lat":45.9621,"lng":12.9771,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"092","name":"RESIA","lat":46.375,"lng":13.3059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"047","name":"LAUCO","lat":46.4255,"lng":12.9338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"079","name":"POZZUOLO DEL FRIULI","lat":45.9871,"lng":13.1961,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"093","name":"RESIUTTA","lat":46.3943,"lng":13.2203,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"125","name":"TREPPO CARNICO","lat":46.534,"lng":13.0367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"083","name":"PREMARIACCO","lat":46.063,"lng":13.3978,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"110","name":"SOCCHIEVE","lat":46.3967,"lng":12.8483,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"070","name":"PALMANOVA","lat":45.9072,"lng":13.3111,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"130","name":"VARMO","lat":45.8875,"lng":12.9889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"015","name":"CAMINO AL TAGLIAMENTO","lat":45.928,"lng":12.9463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"046","name":"LATISANA","lat":45.7766,"lng":12.9951,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"014","name":"BUTTRIO","lat":46.0114,"lng":13.3349,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"061","name":"MONTENARS","lat":46.256,"lng":13.1796,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"118","name":"TAVAGNACCO","lat":46.1281,"lng":13.2149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"096","name":"RIVIGNANO","lat":45.8799,"lng":13.0425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"051","name":"LUSEVERA","lat":46.276,"lng":13.2692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"002","name":"AMARO","lat":46.3752,"lng":13.0966,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"026","name":"CIVIDALE DEL FRIULI","lat":46.0906,"lng":13.435,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"109","name":"SEDEGLIANO","lat":46.0167,"lng":12.9792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"095","name":"RIVE D'ARCANO","lat":46.1266,"lng":13.0329,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"074","name":"PAVIA DI UDINE","lat":45.9974,"lng":13.3052,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"132","name":"VERZEGNIS","lat":46.3899,"lng":12.9919,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"106","name":"SAN VITO DI FAGAGNA","lat":46.0916,"lng":13.0681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"085","name":"PREPOTTO","lat":46.0467,"lng":13.4805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"036","name":"FAEDIS","lat":46.1513,"lng":13.3475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"131","name":"VENZONE","lat":46.3322,"lng":13.1405,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"037","name":"FAGAGNA","lat":46.1138,"lng":13.0921,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"090","name":"REANA DEL ROJALE","lat":46.144421,"lng":13.22928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"009","name":"BASILIANO","lat":46.0174,"lng":13.1081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"057","name":"MARTIGNACCO","lat":46.0923,"lng":13.1305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"066","name":"OSOPPO","lat":46.2561,"lng":13.0828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"105","name":"SAN VITO AL TORRE","lat":45.8984,"lng":13.3809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"039","name":"FLAIBANO","lat":46.0597,"lng":12.9853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"034","name":"DRENCHIA","lat":46.1844,"lng":13.6362,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"122","name":"TORREANO","lat":46.1296,"lng":13.4322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"120","name":"TERZO D'AQUILEIA","lat":45.7992,"lng":13.3346,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"091","name":"REMANZACCO","lat":46.0875,"lng":13.3278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"028","name":"COLLOREDO DI MONTE ALBANO","lat":46.1625,"lng":13.136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"134","name":"VILLA VICENTINA","lat":45.8182,"lng":13.3965,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"043","name":"GEMONA DEL FRIULI","lat":46.279,"lng":13.1368,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"107","name":"SAURIS","lat":46.468,"lng":12.6855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"119","name":"TEOR","lat":45.8561,"lng":13.0563,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"117","name":"TARVISIO","lat":46.5054,"lng":13.5785,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"138","name":"CAMPOLONGO TAPOGLIANO","lat":45.93433,"lng":11.09591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"114","name":"TALMASSONS","lat":45.9299,"lng":13.1178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"052","name":"MAGNANO IN RIVIERA","lat":46.2294,"lng":13.192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"053","name":"MAJANO","lat":46.1857,"lng":13.0683,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"124","name":"TRASAGHIS","lat":46.283,"lng":13.0775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"045","name":"GRIMACCO","lat":46.1565,"lng":13.594,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"116","name":"TARCENTO","lat":46.2153,"lng":13.215,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"038","name":"FIUMICELLO","lat":45.793,"lng":13.4106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"137","name":"FORGARIA NEL FRIULI","lat":46.224,"lng":12.9737,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"100","name":"SAN GIORGIO DI NOGARO","lat":45.8297,"lng":13.21,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"019","name":"CASSACCO","lat":46.1788,"lng":13.2006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"001","name":"AIELLO DEL FRIULI","lat":45.8722,"lng":13.3643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"030","name":"CORNO DI ROSAZZO","lat":45.9945,"lng":13.4414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"086","name":"PULFERO","lat":46.1739,"lng":13.4852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"076","name":"PONTEBBA","lat":46.5044,"lng":13.3057,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"069","name":"PALAZZOLO DELLO STELLA","lat":45.8057,"lng":13.0869,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"113","name":"TAIPANA","lat":46.2496,"lng":13.3421,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"126","name":"TREPPO GRANDE","lat":46.1902,"lng":13.1583,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"094","name":"RIGOLATO","lat":46.5527,"lng":12.8511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"088","name":"RAVASCLETTO","lat":46.5239,"lng":12.9231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"055","name":"MANZANO","lat":45.9914,"lng":13.376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"040","name":"FORNI AVOLTRI","lat":46.5855,"lng":12.7774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"022","name":"CERCIVENTO","lat":46.5274,"lng":12.9925,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"049","name":"LIGNANO SABBIADORO","lat":45.6717,"lng":13.1098,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"136","name":"ZUGLIO","lat":46.4608,"lng":13.0258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"101","name":"SAN GIOVANNI AL NATISONE","lat":45.9749,"lng":13.4009,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"008","name":"BAGNARIA ARSA","lat":45.8837,"lng":13.2845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"041","name":"FORNI DI SOPRA","lat":46.4231,"lng":12.5835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"062","name":"MORTEGLIANO","lat":45.9467,"lng":13.1733,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"081","name":"PRATO CARNICO","lat":46.5214,"lng":12.808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"127","name":"TRICESIMO","lat":46.1577,"lng":13.2161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"082","name":"PRECENICCO","lat":45.7899,"lng":13.0784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"007","name":"ATTIMIS","lat":46.1881,"lng":13.3062,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"025","name":"CHIUSAFORTE","lat":46.4079,"lng":13.3088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"133","name":"VILLA SANTINA","lat":46.416,"lng":12.923,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"006","name":"ARTEGNA","lat":46.2374,"lng":13.1539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"058","name":"MERETO DI TOMBA","lat":46.0475,"lng":13.0669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"032","name":"DIGNANO","lat":46.085,"lng":12.9419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"033","name":"DOGNA","lat":46.4489,"lng":13.3161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"089","name":"RAVEO","lat":46.4349,"lng":12.873,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"042","name":"FORNI DI SOTTO","lat":46.3955,"lng":12.6752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"067","name":"OVARO","lat":46.4817,"lng":12.8675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"005","name":"ARTA TERME","lat":46.4834,"lng":13.0191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"063","name":"MORUZZO","lat":46.1225,"lng":13.124,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"050","name":"LIGOSULLO","lat":46.54,"lng":13.0747,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"003","name":"AMPEZZO","lat":46.4163,"lng":12.7946,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"024","name":"CHIOPRIS-VISCONE","lat":45.9275,"lng":13.3845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"013","name":"BUJA","lat":46.2075,"lng":13.1169,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"071","name":"PALUZZA","lat":46.5347,"lng":13.0208,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"078","name":"POVOLETTO","lat":46.1131,"lng":13.2807,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"112","name":"SUTRIO","lat":46.514,"lng":12.9904,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"029","name":"COMEGLIANS","lat":46.5165,"lng":12.8668,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"087","name":"RAGOGNA","lat":46.1746,"lng":12.9834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"030","codice_comu_istat":"004","name":"AQUILEIA","lat":45.7683,"lng":13.3646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"022","name":"SAVOGNA D'ISONZO","lat":45.9085,"lng":13.5784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"023","name":"STARANZANO","lat":45.8022,"lng":13.5053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"009","name":"GRADO","lat":45.6785,"lng":13.396,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"002","name":"CORMONS","lat":45.9578,"lng":13.4664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"015","name":"ROMANS D'ISONZO","lat":45.8895,"lng":13.443,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"018","name":"SAN CANZIAN D'ISONZO","lat":45.797,"lng":13.4649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"013","name":"MORARO","lat":45.9308,"lng":13.4961,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"019","name":"SAN FLORIANO DEL COLLIO","lat":45.9814,"lng":13.5854,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"025","name":"VILLESSE","lat":45.8602,"lng":13.4388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"005","name":"FARRA D'ISONZO","lat":45.9089,"lng":13.5175,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"014","name":"MOSSA","lat":45.9387,"lng":13.55,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"021","name":"SAN PIER D'ISONZO","lat":45.8483,"lng":13.4584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"017","name":"SAGRADO","lat":45.8735,"lng":13.484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"004","name":"DOLEGNA DEL COLLIO","lat":46.0314,"lng":13.4794,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"012","name":"MONFALCONE","lat":45.8096,"lng":13.5329,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"024","name":"TURRIACO","lat":45.8234,"lng":13.4433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"007","name":"GORIZIA","lat":45.9413,"lng":13.6215,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"006","name":"FOGLIANO REDIPUGLIA","lat":45.8461,"lng":13.4889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"008","name":"GRADISCA D'ISONZO","lat":45.8914,"lng":13.4913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"011","name":"MEDEA","lat":45.9182,"lng":13.4208,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"001","name":"CAPRIVA DEL FRIULI","lat":45.9424,"lng":13.5145,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"020","name":"SAN LORENZO ISONTINO","lat":45.9304,"lng":13.527,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"016","name":"RONCHI DEI LEGIONARI","lat":45.8237,"lng":13.501,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"003","name":"DOBERDÒ DEL LAGO","lat":45.8441,"lng":13.5394,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"031","codice_comu_istat":"010","name":"MARIANO DEL FRIULI","lat":45.9171,"lng":13.46,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"032","codice_comu_istat":"005","name":"SGONICO","lat":45.7371,"lng":13.7492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"032","codice_comu_istat":"001","name":"DUINO-AURISINA","lat":45.7504,"lng":13.6748,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"032","codice_comu_istat":"006","name":"TRIESTE","lat":45.6536,"lng":13.7784,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"032","codice_comu_istat":"002","name":"MONRUPINO","lat":45.7177,"lng":13.8113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"032","codice_comu_istat":"003","name":"MUGGIA","lat":45.6042,"lng":13.7674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"032","codice_comu_istat":"004","name":"SAN DORLIGO DELLA VALLE - DOLINA","lat":45.609638,"lng":13.85666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"009","name":"CAMINATA","lat":44.91,"lng":9.3088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"008","name":"CALENDASCO","lat":45.0883,"lng":9.5972,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"031","name":"PECORARA","lat":44.8774,"lng":9.3853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"020","name":"FERRIERE","lat":44.6448,"lng":9.4977,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"013","name":"CASTEL SAN GIOVANNI","lat":45.0631,"lng":9.4468,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"015","name":"CERIGNALE","lat":44.678,"lng":9.3514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"036","name":"PONTE DELL'OLIO","lat":44.8678,"lng":9.6424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"042","name":"SARMATO","lat":45.058,"lng":9.4934,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"025","name":"GROPPARELLO","lat":44.835,"lng":9.7288,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"038","name":"RIVERGARO","lat":44.9106,"lng":9.5985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"017","name":"CORTE BRUGNATELLA","lat":44.7125,"lng":9.3822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"027","name":"MONTICELLI D'ONGINA","lat":45.0892,"lng":9.9304,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"018","name":"CORTEMAGGIORE","lat":44.996,"lng":9.9313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"010","name":"CAORSO","lat":45.0496,"lng":9.8722,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"043","name":"TRAVO","lat":44.8637,"lng":9.5458,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"039","name":"ROTTOFRENO","lat":45.0584,"lng":9.5489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"004","name":"BETTOLA","lat":44.7787,"lng":9.6084,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"032","name":"PIACENZA","lat":45.0524,"lng":9.6987,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"026","name":"LUGAGNANO VAL D'ARDA","lat":44.8242,"lng":9.8283,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"002","name":"ALSENO","lat":44.897,"lng":9.9666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"001","name":"AGAZZANO","lat":44.9467,"lng":9.5197,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"023","name":"GOSSOLENGO","lat":45.0015,"lng":9.6172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"033","name":"PIANELLO VAL TIDONE","lat":44.9477,"lng":9.4063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"035","name":"PODENZANO","lat":44.9574,"lng":9.6861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"012","name":"CASTELL'ARQUATO","lat":44.8537,"lng":9.8708,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"046","name":"VILLANOVA SULL'ARDA","lat":45.0275,"lng":9.9995,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"016","name":"COLI","lat":44.7448,"lng":9.4146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"045","name":"VIGOLZONE","lat":44.9137,"lng":9.6688,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"048","name":"ZIANO PIACENTINO","lat":45.0025,"lng":9.4027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"030","name":"OTTONE","lat":44.6242,"lng":9.3338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"022","name":"GAZZOLA","lat":44.9605,"lng":9.5488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"007","name":"CADEO","lat":44.9746,"lng":9.8311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"003","name":"BESENZONE","lat":44.987,"lng":9.9549,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"005","name":"BOBBIO","lat":44.7716,"lng":9.3864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"011","name":"CARPANETO PIACENTINO","lat":44.9137,"lng":9.7888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"021","name":"FIORENZUOLA D'ARDA","lat":44.9272,"lng":9.9108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"037","name":"PONTENURE","lat":45.0004,"lng":9.7873,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"044","name":"VERNASCA","lat":44.8003,"lng":9.8317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"041","name":"SAN PIETRO IN CERRO","lat":45.0214,"lng":9.9487,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"034","name":"PIOZZANO","lat":44.9273,"lng":9.4985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"047","name":"ZERBA","lat":44.6668,"lng":9.287,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"024","name":"GRAGNANO TREBBIENSE","lat":45.0142,"lng":9.57,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"019","name":"FARINI","lat":44.7138,"lng":9.57,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"006","name":"BORGONOVO VAL TIDONE","lat":45.0153,"lng":9.4445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"014","name":"CASTELVETRO PIACENTINO","lat":45.1028,"lng":9.9879,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"040","name":"SAN GIORGIO PIACENTINO","lat":44.9552,"lng":9.738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"028","name":"MORFASSO","lat":44.7227,"lng":9.7024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"033","codice_comu_istat":"029","name":"NIBBIANO","lat":44.9061,"lng":9.3294,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"013","name":"FELINO","lat":44.6959,"lng":10.2412,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"008","name":"CALESTANO","lat":44.6042,"lng":10.1241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"016","name":"FONTEVIVO","lat":44.8599,"lng":10.1763,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"007","name":"BUSSETO","lat":44.9816,"lng":10.0431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"037","name":"SORBOLO","lat":44.8436,"lng":10.4476,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"031","name":"SALA BAGANZA","lat":44.7174,"lng":10.2321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"044","name":"VALMOZZOLA","lat":44.5689,"lng":9.8837,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"027","name":"PARMA","lat":44.815,"lng":10.308,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"046","name":"VARSI","lat":44.662,"lng":9.8449,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"006","name":"BORGO VAL DI TARO","lat":44.4882,"lng":9.7669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"018","name":"LANGHIRANO","lat":44.6138,"lng":10.2667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"040","name":"TORNOLO","lat":44.4854,"lng":9.6256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"003","name":"BEDONIA","lat":44.5019,"lng":9.6339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"001","name":"ALBARETO","lat":44.4475,"lng":9.7011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"026","name":"PALANZANO","lat":44.4354,"lng":10.1932,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"048","name":"ZIBELLO","lat":45.0196,"lng":10.1308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"038","name":"TERENZO","lat":44.6109,"lng":10.0908,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"036","name":"SORAGNA","lat":44.93,"lng":10.1257,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"004","name":"BERCETO","lat":44.5106,"lng":9.9901,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"017","name":"FORNOVO DI TARO","lat":44.693,"lng":10.102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"042","name":"TRAVERSETOLO","lat":44.6402,"lng":10.3814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"030","name":"ROCCABIANCA","lat":45.0103,"lng":10.2205,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"011","name":"COMPIANO","lat":44.497,"lng":9.6631,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"025","name":"NOCETO","lat":44.8124,"lng":10.1724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"024","name":"NEVIANO DEGLI ARDUINI","lat":44.5835,"lng":10.3167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"034","name":"SISSA","lat":44.9603,"lng":10.2617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"015","name":"FONTANELLATO","lat":44.8827,"lng":10.1733,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"019","name":"LESIGNANO DE' BAGNI","lat":44.644,"lng":10.3,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"039","name":"TIZZANO VAL PARMA","lat":44.5216,"lng":10.201,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"005","name":"BORE","lat":44.7197,"lng":9.7931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"020","name":"MEDESANO","lat":44.7575,"lng":10.1406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"033","name":"SAN SECONDO PARMENSE","lat":44.9227,"lng":10.2303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"021","name":"MEZZANI","lat":44.9168,"lng":10.43,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"012","name":"CORNIGLIO","lat":44.4759,"lng":10.0884,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"041","name":"TORRILE","lat":44.9249,"lng":10.3258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"029","name":"POLESINE PARMENSE","lat":45.0174,"lng":10.0885,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"035","name":"SOLIGNANO","lat":44.6141,"lng":9.9766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"045","name":"VARANO DE' MELEGARI","lat":44.6891,"lng":10.0125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"028","name":"PELLEGRINO PARMENSE","lat":44.7308,"lng":9.9322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"014","name":"FIDENZA","lat":44.8651,"lng":10.0617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"032","name":"SALSOMAGGIORE TERME","lat":44.8179,"lng":9.9764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"010","name":"COLORNO","lat":44.9269,"lng":10.3755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"023","name":"MONTECHIARUGOLO","lat":44.7049,"lng":10.376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"002","name":"BARDI","lat":44.6339,"lng":9.7313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"022","name":"MONCHIO DELLE CORTI","lat":44.4139,"lng":10.1253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"043","name":"TRECASALI","lat":44.9367,"lng":10.2733,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"034","codice_comu_istat":"009","name":"COLLECCHIO","lat":44.7518,"lng":10.2167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"041","name":"TOANO","lat":44.378,"lng":10.5613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"037","name":"SAN MARTINO IN RIO","lat":44.733,"lng":10.7831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"012","name":"CASALGRANDE","lat":44.5856,"lng":10.7366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"023","name":"GUALTIERI","lat":44.9006,"lng":10.6306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"042","name":"VETTO","lat":44.4852,"lng":10.3386,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"031","name":"RAMISETO","lat":44.4134,"lng":10.281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"002","name":"BAGNOLO IN PIANO","lat":44.7639,"lng":10.6744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"025","name":"LIGONCHIO","lat":44.316,"lng":10.3428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"018","name":"CANOSSA","lat":44.5764,"lng":10.4564,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"043","name":"VEZZANO SUL CROSTOLO","lat":44.6024,"lng":10.5474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"016","name":"CASTELNOVO NE' MONTI","lat":44.4358,"lng":10.4039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"027","name":"MONTECCHIO EMILIA","lat":44.7024,"lng":10.4481,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"005","name":"BORETTO","lat":44.9043,"lng":10.5563,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"034","name":"RIO SALICETO","lat":44.8125,"lng":10.8038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"013","name":"CASINA","lat":44.5113,"lng":10.5027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"015","name":"CASTELNOVO DI SOTTO","lat":44.8112,"lng":10.5606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"028","name":"NOVELLARA","lat":44.8439,"lng":10.7286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"032","name":"REGGIOLO","lat":44.918,"lng":10.8058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"026","name":"LUZZARA","lat":44.9586,"lng":10.6914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"044","name":"VIANO","lat":44.5469,"lng":10.6224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"008","name":"CADELBOSCO DI SOPRA","lat":44.7631,"lng":10.5971,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"014","name":"CASTELLARANO","lat":44.5115,"lng":10.7307,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"040","name":"SCANDIANO","lat":44.5975,"lng":10.6917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"022","name":"GATTATICO","lat":44.7942,"lng":10.4603,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"038","name":"SAN POLO D'ENZA","lat":44.6281,"lng":10.425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"001","name":"ALBINEA","lat":44.6216,"lng":10.6048,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"021","name":"FABBRICO","lat":44.8705,"lng":10.8127,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"004","name":"BIBBIANO","lat":44.6651,"lng":10.4753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"019","name":"COLLAGNA","lat":44.3468,"lng":10.2754,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"024","name":"GUASTALLA","lat":44.9162,"lng":10.6531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"030","name":"QUATTRO CASTELLA","lat":44.6359,"lng":10.4753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"039","name":"SANT'ILARIO D'ENZA","lat":44.7634,"lng":10.4492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"035","name":"ROLO","lat":44.8867,"lng":10.8613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"007","name":"BUSANA","lat":44.369,"lng":10.3253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"020","name":"CORREGGIO","lat":44.7708,"lng":10.7835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"036","name":"RUBIERA","lat":44.6537,"lng":10.7813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"029","name":"POVIGLIO","lat":44.8416,"lng":10.5416,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"017","name":"CAVRIAGO","lat":44.6947,"lng":10.5286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"011","name":"CARPINETI","lat":44.4571,"lng":10.5208,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"003","name":"BAISO","lat":44.502,"lng":10.6049,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"010","name":"CAMPEGINE","lat":44.7847,"lng":10.533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"006","name":"BRESCELLO","lat":44.901,"lng":10.5158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"009","name":"CAMPAGNOLA EMILIA","lat":44.8403,"lng":10.7581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"045","name":"VILLA MINOZZO","lat":44.3661,"lng":10.467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"035","codice_comu_istat":"033","name":"REGGIO NELL'EMILIA","lat":44.695591,"lng":10.64125,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"013","name":"FIORANO MODENESE","lat":44.5371,"lng":10.8228,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"024","name":"MONTECRETO","lat":44.2476,"lng":10.7169,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"015","name":"FORMIGINE","lat":44.5772,"lng":10.8487,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"039","name":"SAN PROSPERO","lat":44.7906,"lng":11.0231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"046","name":"VIGNOLA","lat":46.0462,"lng":11.2766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"025","name":"MONTEFIORINO","lat":44.3514,"lng":10.6231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"033","name":"PRIGNANO SULLA SECCHIA","lat":44.4394,"lng":10.693,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"003","name":"CAMPOGALLIANO","lat":44.6902,"lng":10.8438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"036","name":"SAN CESARIO SUL PANARO","lat":44.562,"lng":11.0342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"005","name":"CARPI","lat":44.7835,"lng":10.8788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"043","name":"SESTOLA","lat":44.2306,"lng":10.7706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"014","name":"FIUMALBO","lat":44.1803,"lng":10.6483,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"012","name":"FINALE EMILIA","lat":44.8356,"lng":11.295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"018","name":"LAMA MOCOGNO","lat":44.3084,"lng":10.7317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"023","name":"MODENA","lat":44.6471,"lng":10.9252,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"035","name":"RIOLUNATO","lat":44.231,"lng":10.6527,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"034","name":"RAVARINO","lat":44.7237,"lng":11.1,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"022","name":"MIRANDOLA","lat":44.8878,"lng":11.0674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"030","name":"PAVULLO NEL FRIGNANO","lat":44.3325,"lng":10.8361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"020","name":"MARANO SUL PANARO","lat":44.4569,"lng":10.9696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"031","name":"PIEVEPELAGO","lat":44.2058,"lng":10.6177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"026","name":"MONTESE","lat":44.2687,"lng":10.9411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"016","name":"FRASSINORO","lat":44.2961,"lng":10.5725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"032","name":"POLINAGO","lat":44.3458,"lng":10.7245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"006","name":"CASTELFRANCO EMILIA","lat":44.5967,"lng":11.0531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"021","name":"MEDOLLA","lat":44.8483,"lng":11.0704,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"037","name":"SAN FELICE SUL PANARO","lat":44.8342,"lng":11.1438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"007","name":"CASTELNUOVO RANGONE","lat":44.5524,"lng":10.9361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"011","name":"FANANO","lat":43.9461,"lng":12.7519,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"042","name":"SERRAMAZZONI","lat":44.4261,"lng":10.7875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"017","name":"GUIGLIA","lat":44.425,"lng":10.9631,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"041","name":"SAVIGNANO SUL PANARO","lat":44.4814,"lng":11.0363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"019","name":"MARANELLO","lat":44.5256,"lng":10.8663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"045","name":"SPILAMBERTO","lat":44.5353,"lng":11.0206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"008","name":"CASTELVETRO DI MODENA","lat":44.5067,"lng":10.9475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"040","name":"SASSUOLO","lat":44.5441,"lng":10.7849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"028","name":"NOVI DI MODENA","lat":44.8914,"lng":10.9025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"002","name":"BOMPORTO","lat":44.7308,"lng":11.0396,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"027","name":"NONANTOLA","lat":44.6766,"lng":11.0356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"010","name":"CONCORDIA SULLA SECCHIA","lat":44.9142,"lng":10.9844,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"038","name":"SAN POSSIDONIO","lat":44.8917,"lng":10.998,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"044","name":"SOLIERA","lat":44.2095,"lng":10.0706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"001","name":"BASTIGLIA","lat":44.728,"lng":10.9997,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"009","name":"CAVEZZO","lat":44.8373,"lng":11.0297,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"029","name":"PALAGANO","lat":44.3221,"lng":10.6472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"047","name":"ZOCCA","lat":44.3467,"lng":10.9939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"036","codice_comu_istat":"004","name":"CAMPOSANTO","lat":44.7882,"lng":11.1376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"037","name":"MEDICINA","lat":44.4797,"lng":11.6392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"004","name":"BAZZANO","lat":44.5031,"lng":11.0864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"033","name":"LIZZANO IN BELVEDERE","lat":44.1633,"lng":10.894,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"054","name":"SAN LAZZARO DI SAVENA","lat":44.4688,"lng":11.415,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"034","name":"LOIANO","lat":44.2686,"lng":11.3229,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"044","name":"MONZUNO","lat":44.2784,"lng":11.2679,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"010","name":"CAMUGNANO","lat":44.172,"lng":11.0843,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"011","name":"CASALECCHIO DI RENO","lat":44.4766,"lng":11.2771,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"009","name":"CALDERARA DI RENO","lat":44.5641,"lng":11.2722,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"003","name":"BARICELLA","lat":44.6477,"lng":11.5356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"051","name":"SAN BENEDETTO VAL DI SAMBRO","lat":44.2157,"lng":11.2343,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"025","name":"DOZZA","lat":44.3596,"lng":11.6289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"055","name":"SAN PIETRO IN CASALE","lat":44.7006,"lng":11.4033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"059","name":"VERGATO","lat":44.2828,"lng":11.1116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"013","name":"CASTEL D'AIANO","lat":44.2769,"lng":11.0005,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"023","name":"CRESPELLANO","lat":44.5114,"lng":11.1316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"036","name":"MARZABOTTO","lat":44.3419,"lng":11.2058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"006","name":"BOLOGNA","lat":44.4938,"lng":11.3387,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"037","codice_comu_istat":"008","name":"BUDRIO","lat":44.7519,"lng":10.7423,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"053","name":"SAN GIOVANNI IN PERSICETO","lat":44.6409,"lng":11.1852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"024","name":"CREVALCORE","lat":44.7216,"lng":11.151,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"014","name":"CASTEL DEL RIO","lat":44.216,"lng":11.5038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"035","name":"MALALBERGO","lat":44.7197,"lng":11.5333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"040","name":"MONGHIDORO","lat":44.2275,"lng":11.3286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"056","name":"SANT'AGATA BOLOGNESE","lat":44.6652,"lng":11.135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"017","name":"CASTELLO D'ARGILE","lat":44.68,"lng":11.2971,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"005","name":"BENTIVOGLIO","lat":44.6356,"lng":11.4191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"022","name":"CASTIGLIONE DEI PEPOLI","lat":44.1431,"lng":11.1643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"057","name":"SASSO MARCONI","lat":44.4005,"lng":11.2506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"032","name":"IMOLA","lat":44.3559,"lng":11.7161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"052","name":"SAN GIORGIO DI PIANO","lat":44.6481,"lng":11.3769,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"058","name":"SAVIGNO","lat":44.3928,"lng":11.076,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"015","name":"CASTEL DI CASIO","lat":44.1639,"lng":11.0369,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"060","name":"ZOLA PREDOSA","lat":44.4906,"lng":11.2194,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"050","name":"SALA BOLOGNESE","lat":44.6171,"lng":11.257,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"045","name":"MORDANO","lat":44.3989,"lng":11.8128,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"019","name":"CASTEL MAGGIORE","lat":44.5781,"lng":11.3617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"038","name":"MINERBIO","lat":44.6243,"lng":11.4899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"012","name":"CASALFIUMANESE","lat":44.2978,"lng":11.625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"020","name":"CASTEL SAN PIETRO TERME","lat":44.3995,"lng":11.586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"018","name":"CASTELLO DI SERRAVALLE","lat":44.4379,"lng":11.0314,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"031","name":"GRIZZANA MORANDI","lat":44.2579,"lng":11.1528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"027","name":"GAGGIO MONTANO","lat":44.198,"lng":10.9339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"021","name":"CASTENASO","lat":44.5091,"lng":11.4692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"016","name":"CASTEL GUELFO DI BOLOGNA","lat":44.4317,"lng":11.6789,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"028","name":"GALLIERA","lat":44.7506,"lng":11.3914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"042","name":"MONTE SAN PIETRO","lat":46.4032,"lng":11.3624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"002","name":"ARGELATO","lat":44.6425,"lng":11.3489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"039","name":"MOLINELLA","lat":44.6224,"lng":11.6697,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"048","name":"PIEVE DI CENTO","lat":44.7133,"lng":11.3088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"001","name":"ANZOLA DELL'EMILIA","lat":44.5474,"lng":11.1956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"029","name":"GRANAGLIONE","lat":44.1165,"lng":10.9629,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"026","name":"FONTANELICE","lat":44.26,"lng":11.5598,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"041","name":"MONTERENZIO","lat":44.3278,"lng":11.4059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"007","name":"BORGO TOSSIGNANO","lat":44.2726,"lng":11.6042,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"049","name":"PORRETTA TERME","lat":44.1602,"lng":10.9735,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"047","name":"PIANORO","lat":44.3873,"lng":11.3433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"046","name":"OZZANO DELL'EMILIA","lat":44.4436,"lng":11.4705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"030","name":"GRANAROLO DELL'EMILIA","lat":44.5511,"lng":11.4454,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"037","codice_comu_istat":"043","name":"MONTEVEGLIO","lat":44.4717,"lng":11.1019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"013","name":"MASSA FISCAGLIA","lat":44.8113,"lng":12.0091,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"012","name":"MASI TORELLO","lat":44.7945,"lng":11.799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"022","name":"VIGARANO MAINARDA","lat":44.8411,"lng":11.4958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"016","name":"MIRABELLO","lat":45.1508,"lng":9.6138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"015","name":"MIGLIARINO","lat":43.7666,"lng":10.3332,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"018","name":"POGGIO RENATICO","lat":44.7652,"lng":11.4873,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"020","name":"RO","lat":44.9461,"lng":11.7571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"011","name":"LAGOSANTO","lat":44.7632,"lng":12.144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"005","name":"CODIGORO","lat":44.8328,"lng":12.1115,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"001","name":"ARGENTA","lat":44.6139,"lng":11.8368,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"010","name":"JOLANDA DI SAVOIA","lat":44.885,"lng":11.9778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"002","name":"BERRA","lat":44.9781,"lng":11.9795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"025","name":"GORO","lat":44.8519,"lng":12.2959,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"003","name":"BONDENO","lat":44.8883,"lng":11.4106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"006","name":"COMACCHIO","lat":44.6945,"lng":12.1792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"026","name":"MIGLIARO","lat":44.8012,"lng":11.9745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"008","name":"FERRARA","lat":44.8379,"lng":11.6204,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"009","name":"FORMIGNANA","lat":44.8446,"lng":11.8611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"019","name":"PORTOMAGGIORE","lat":44.6996,"lng":11.8078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"014","name":"MESOLA","lat":44.9217,"lng":12.2303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"023","name":"VOGHIERA","lat":44.7566,"lng":11.7528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"024","name":"TRESIGALLO","lat":44.8171,"lng":11.8958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"017","name":"OSTELLATO","lat":44.7467,"lng":11.9445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"021","name":"SANT'AGOSTINO","lat":45.212,"lng":12.0906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"004","name":"CENTO","lat":44.7271,"lng":11.2892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"038","codice_comu_istat":"007","name":"COPPARO","lat":44.8939,"lng":11.8259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"001","name":"ALFONSINE","lat":44.5063,"lng":12.0414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"013","name":"MASSA LOMBARDA","lat":44.4462,"lng":11.8282,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"017","name":"SANT'AGATA SUL SANTERNO","lat":44.4431,"lng":11.8613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"009","name":"COTIGNOLA","lat":44.3851,"lng":11.9381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"012","name":"LUGO","lat":44.4291,"lng":11.907,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"008","name":"CONSELICE","lat":44.5128,"lng":11.8324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"011","name":"FUSIGNANO","lat":44.4661,"lng":11.9581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"016","name":"RUSSI","lat":44.3722,"lng":12.0315,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"004","name":"BRISIGHELLA","lat":44.2229,"lng":11.7717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"005","name":"CASOLA VALSENIO","lat":44.2419,"lng":11.6453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"006","name":"CASTEL BOLOGNESE","lat":44.3189,"lng":11.8014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"018","name":"SOLAROLO","lat":44.3614,"lng":11.8456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"014","name":"RAVENNA","lat":44.4157,"lng":12.1966,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"010","name":"FAENZA","lat":44.2862,"lng":11.8835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"007","name":"CERVIA","lat":44.2601,"lng":12.3514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"003","name":"BAGNARA DI ROMAGNA","lat":44.3893,"lng":11.8266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"002","name":"BAGNACAVALLO","lat":44.4134,"lng":11.9781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"039","codice_comu_istat":"015","name":"RIOLO TERME","lat":44.2764,"lng":11.7289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"011","name":"DOVADOLA","lat":44.1238,"lng":11.8899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"032","name":"PREDAPPIO","lat":44.1063,"lng":11.9817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"044","name":"SARSINA","lat":43.9194,"lng":12.1422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"005","name":"CASTROCARO TERME E TERRA DEL SOLE","lat":44.1876,"lng":11.9606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"016","name":"GATTEO","lat":44.1318,"lng":12.3875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"050","name":"VERGHERETO","lat":43.7939,"lng":12.005,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"007","name":"CESENA","lat":44.1391,"lng":12.2429,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"008","name":"CESENATICO","lat":44.2,"lng":12.4017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"004","name":"BORGHI","lat":44.0322,"lng":12.3565,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"009","name":"CIVITELLA DI ROMAGNA","lat":44.0072,"lng":11.9413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"049","name":"TREDOZIO","lat":44.0792,"lng":11.7426,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"019","name":"MELDOLA","lat":44.1301,"lng":12.061,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"043","name":"SANTA SOFIA","lat":39.8622,"lng":9.1266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"037","name":"RONCOFREDDO","lat":44.0425,"lng":12.3192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"014","name":"GALEATA","lat":43.9989,"lng":11.9142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"018","name":"LONGIANO","lat":44.0755,"lng":12.3286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"015","name":"GAMBETTOLA","lat":44.1178,"lng":12.3396,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"041","name":"SAN MAURO PASCOLI","lat":44.1049,"lng":12.4164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"036","name":"ROCCA SAN CASCIANO","lat":44.0602,"lng":11.8442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"020","name":"MERCATO SARACENO","lat":43.9563,"lng":12.1961,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"003","name":"BERTINORO","lat":44.1497,"lng":12.1353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"022","name":"MODIGLIANA","lat":44.1622,"lng":11.7945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"001","name":"BAGNO DI ROMAGNA","lat":43.8336,"lng":11.9599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"012","name":"FORLÌ","lat":44.2216,"lng":12.0417,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"013","name":"FORLIMPOPOLI","lat":44.1888,"lng":12.1267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"031","name":"PORTICO E SAN BENEDETTO","lat":44.0265,"lng":11.7815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"033","name":"PREMILCUORE","lat":43.9793,"lng":11.7815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"028","name":"MONTIANO","lat":42.6467,"lng":11.2239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"046","name":"SOGLIANO AL RUBICONE","lat":44.0056,"lng":12.3016,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"040","codice_comu_istat":"045","name":"SAVIGNANO SUL RUBICONE","lat":44.0894,"lng":12.3952,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"012","name":"COLBORDOLO","lat":43.8201,"lng":12.7211,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"059","name":"SASSOCORVARO","lat":43.7825,"lng":12.4999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"041","name":"PEGLIO","lat":43.867538,"lng":12.47085,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"009","name":"CARPEGNA","lat":43.7831,"lng":12.3377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"045","name":"PETRIANO","lat":43.7794,"lng":12.7326,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"037","name":"MONTEMAGGIORE AL METAURO","lat":43.7377,"lng":12.9464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"032","name":"MONTECICCARDO","lat":43.8189,"lng":12.8055,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"008","name":"CANTIANO","lat":43.4761,"lng":12.6273,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"048","name":"PIETRARUBBIA","lat":43.8058,"lng":12.3778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"049","name":"PIOBBICO","lat":43.5888,"lng":12.5113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"033","name":"MONTECOPIOLO","lat":43.8424,"lng":12.3609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"035","name":"MONTE GRIMANO TERME","lat":43.867538,"lng":12.47085,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"002","name":"APECCHIO","lat":43.5593,"lng":12.422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"010","name":"CARTOCETO","lat":43.7678,"lng":12.8818,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"028","name":"MONDAVIO","lat":43.6739,"lng":12.9697,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"050","name":"SALTARA","lat":43.7538,"lng":12.8967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"060","name":"SASSOFELTRIO","lat":43.8914,"lng":12.509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"052","name":"SAN GIORGIO DI PESARO","lat":43.7188,"lng":12.981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"027","name":"MOMBAROCCIO","lat":43.794,"lng":12.8547,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"036","name":"MONTELABBATE","lat":43.8499,"lng":12.7889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"001","name":"ACQUALAGNA","lat":43.6185,"lng":12.6729,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"005","name":"BELFORTE ALL'ISAURO","lat":43.7178,"lng":12.3767,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"023","name":"MACERATA FELTRIA","lat":43.8039,"lng":12.4413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"020","name":"GRADARA","lat":43.9391,"lng":12.771,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"058","name":"SANT'IPPOLITO","lat":42.2451,"lng":13.1124,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"031","name":"MONTE CERIGNONE","lat":43.8414,"lng":12.4158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"018","name":"FRONTONE","lat":43.5128,"lng":12.7317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"015","name":"FOSSOMBRONE","lat":43.6917,"lng":12.8138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"017","name":"FRONTINO","lat":43.7648,"lng":12.3788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"034","name":"MONTEFELCINO","lat":43.7355,"lng":12.8346,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"016","name":"FRATTE ROSA","lat":43.6314,"lng":12.9007,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"025","name":"MERCATELLO SUL METAURO","lat":43.6479,"lng":12.3377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"026","name":"MERCATINO CONCA","lat":43.8713,"lng":12.4922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"030","name":"MONTECALVO IN FOGLIA","lat":43.8033,"lng":12.6173,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"019","name":"GABICCE MARE","lat":43.9649,"lng":12.7564,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"057","name":"SANT'ANGELO IN VADO","lat":43.6664,"lng":12.4162,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"007","name":"CAGLI","lat":43.5468,"lng":12.6485,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"038","name":"MONTE PORZIO","lat":43.6911,"lng":13.0458,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"061","name":"SERRA SANT'ABBONDIO","lat":43.4922,"lng":12.7741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"064","name":"TAVOLETO","lat":43.8455,"lng":12.592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"003","name":"AUDITORE","lat":43.8214,"lng":12.571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"029","name":"MONDOLFO","lat":43.7503,"lng":13.0989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"044","name":"PESARO","lat":43.8987,"lng":12.8437,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"040","name":"ORCIANO DI PESARO","lat":43.6877,"lng":12.9642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"047","name":"PIANDIMELETO","lat":43.7252,"lng":12.412,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"066","name":"URBANIA","lat":43.6706,"lng":12.5211,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"046","name":"PIAGGE","lat":43.7354,"lng":12.9698,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"013","name":"FANO","lat":43.8449,"lng":13.0169,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"022","name":"LUNANO","lat":43.7307,"lng":12.4419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"054","name":"SAN LORENZO IN CAMPO","lat":43.6049,"lng":12.9467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"043","name":"PERGOLA","lat":40.4315,"lng":15.6815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"004","name":"BARCHI","lat":43.6713,"lng":12.9325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"062","name":"SERRUNGARINA","lat":43.7471,"lng":12.8751,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"056","name":"SANT'ANGELO IN LIZZOLA","lat":43.8258,"lng":12.803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"065","name":"TAVULLIA","lat":43.8982,"lng":12.7541,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"067","name":"URBINO","lat":43.7247,"lng":12.6367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"051","name":"SAN COSTANZO","lat":43.7665,"lng":13.073,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"006","name":"BORGO PACE","lat":43.6581,"lng":12.2931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"014","name":"FERMIGNANO","lat":43.685,"lng":12.645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"041","codice_comu_istat":"021","name":"ISOLA DEL PIANO","lat":43.7379,"lng":12.7843,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"015","name":"CORINALDO","lat":43.6494,"lng":13.0484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"028","name":"MONTERADO","lat":43.6978,"lng":13.0916,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"021","name":"JESI","lat":43.5224,"lng":13.2434,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"025","name":"MONSANO","lat":43.5636,"lng":13.2511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"009","name":"CASTEL COLONNA","lat":43.6796,"lng":13.1057,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"037","name":"POGGIO SAN MARCELLO","lat":43.511,"lng":13.0752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"033","name":"OFFAGNA","lat":43.5278,"lng":13.4417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"041","name":"SAN MARCELLO","lat":43.5756,"lng":13.2035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"044","name":"SASSOFERRATO","lat":43.4322,"lng":12.859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"012","name":"CASTELPLANIO","lat":43.4941,"lng":13.0828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"029","name":"MONTE ROBERTO","lat":43.4816,"lng":13.1389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"035","name":"OSTRA","lat":43.6149,"lng":13.1592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"022","name":"LORETO","lat":43.4403,"lng":13.6074,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"016","name":"CUPRAMONTANA","lat":43.4469,"lng":13.1164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"004","name":"BARBARA","lat":43.5811,"lng":13.0261,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"014","name":"CHIARAVALLE","lat":44.9266,"lng":9.973,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"013","name":"CERRETO D'ESI","lat":43.3166,"lng":12.9862,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"034","name":"OSIMO","lat":43.4861,"lng":13.4824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"003","name":"ARCEVIA","lat":43.5019,"lng":12.9418,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"048","name":"SIROLO","lat":43.5231,"lng":13.6189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"017","name":"FABRIANO","lat":43.3361,"lng":12.9047,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"042","name":"SAN PAOLO DI JESI","lat":43.4556,"lng":13.1738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"005","name":"BELVEDERE OSTRENSE","lat":43.5831,"lng":13.1697,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"023","name":"MAIOLATI SPONTINI","lat":43.4772,"lng":13.119,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"024","name":"MERGO","lat":43.4719,"lng":13.0378,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"001","name":"AGUGLIANO","lat":43.5445,"lng":13.3905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"020","name":"GENGA","lat":43.4306,"lng":12.9359,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"040","name":"ROSORA","lat":43.4825,"lng":13.0681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"008","name":"CASTELBELLINO","lat":43.4878,"lng":13.1456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"038","name":"POLVERIGI","lat":43.5262,"lng":13.3929,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"007","name":"CAMERATA PICENA","lat":43.5792,"lng":13.3521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"032","name":"NUMANA","lat":43.5113,"lng":13.6214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"027","name":"MONTEMARCIANO","lat":43.6399,"lng":13.3084,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"047","name":"SERRA SAN QUIRICO","lat":43.4453,"lng":13.0228,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"010","name":"CASTELFIDARDO","lat":43.4645,"lng":13.5466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"019","name":"FILOTTRANO","lat":43.4377,"lng":13.3555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"026","name":"MONTECAROTTO","lat":43.5274,"lng":13.0613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"031","name":"MORRO D'ALBA","lat":43.6021,"lng":13.2137,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"006","name":"CAMERANO","lat":43.5299,"lng":13.5479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"018","name":"FALCONARA MARITTIMA","lat":43.6296,"lng":13.3969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"049","name":"STAFFOLO","lat":43.4354,"lng":13.1814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"002","name":"ANCONA","lat":43.6333,"lng":13.5,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"042","codice_comu_istat":"043","name":"SANTA MARIA NUOVA","lat":44.2021,"lng":12.1904,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"030","name":"MONTE SAN VITO","lat":43.6016,"lng":13.2692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"036","name":"OSTRA VETERE","lat":43.6053,"lng":13.061,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"045","name":"SENIGALLIA","lat":43.715,"lng":13.218,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"011","name":"CASTELLEONE DI SUASA","lat":43.6234,"lng":12.984,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"039","name":"RIPE","lat":43.67,"lng":13.1069,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"042","codice_comu_istat":"046","name":"SERRA DE' CONTI","lat":43.543,"lng":13.0367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"007","name":"CAMERINO","lat":43.1404,"lng":13.0688,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"004","name":"BELFORTE DEL CHIENTI","lat":43.1645,"lng":13.2391,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"006","name":"CALDAROLA","lat":43.1389,"lng":13.226,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"010","name":"CASTELSANTANGELO SUL NERA","lat":42.8872,"lng":13.1528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"003","name":"APPIGNANO","lat":42.5453,"lng":13.8496,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"020","name":"GAGLIOLE","lat":43.2385,"lng":13.0677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"051","name":"SERRAPETRONA","lat":43.177,"lng":13.1905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"043","name":"POTENZA PICENA","lat":43.3677,"lng":13.6229,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"030","name":"MONTELUPONE","lat":43.3431,"lng":13.5699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"036","name":"PETRIOLO","lat":43.2224,"lng":13.4655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"024","name":"MATELICA","lat":43.255,"lng":13.0116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"056","name":"USSITA","lat":42.9448,"lng":13.1367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"034","name":"MUCCIA","lat":43.0824,"lng":13.0447,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"055","name":"URBISAGLIA","lat":43.1924,"lng":13.3739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"018","name":"FIORDIMONTE","lat":43.0374,"lng":13.088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"016","name":"ESANATOGLIA","lat":43.2529,"lng":12.9503,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"022","name":"LORO PICENO","lat":43.1646,"lng":13.4123,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"052","name":"SERRAVALLE DI CHIENTI","lat":43.0758,"lng":12.9573,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"042","name":"PORTO RECANATI","lat":43.4375,"lng":13.6624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"037","name":"PIEVEBOVIGLIANA","lat":43.0641,"lng":13.0839,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"049","name":"SARNANO","lat":43.0358,"lng":13.2992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"044","name":"RECANATI","lat":43.4034,"lng":13.5623,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"025","name":"MOGLIANO","lat":43.1839,"lng":13.4742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"047","name":"SAN SEVERINO MARCHE","lat":43.2292,"lng":13.1813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"038","name":"PIEVE TORINA","lat":43.0431,"lng":13.0469,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"041","name":"POLLENZA","lat":43.2671,"lng":13.3489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"011","name":"CESSAPALOMBO","lat":43.1092,"lng":13.2586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"053","name":"TOLENTINO","lat":43.2136,"lng":13.2911,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"015","name":"CORRIDONIA","lat":43.2505,"lng":13.5138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"050","name":"SEFRO","lat":43.1475,"lng":12.9496,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"039","name":"PIORACO","lat":43.18,"lng":12.9867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"019","name":"FIUMINATA","lat":43.1882,"lng":12.9319,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"013","name":"CIVITANOVA MARCHE","lat":43.3046,"lng":13.7195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"045","name":"RIPE SAN GINESIO","lat":43.1438,"lng":13.3686,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"017","name":"FIASTRA","lat":43.0357,"lng":13.1559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"032","name":"MONTE SAN MARTINO","lat":43.033,"lng":13.4397,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"029","name":"MONTEFANO","lat":43.4122,"lng":13.4394,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"008","name":"CAMPOROTONDO DI FIASTRONE","lat":43.1325,"lng":13.2677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"031","name":"MONTE SAN GIUSTO","lat":43.2346,"lng":13.5963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"005","name":"BOLOGNOLA","lat":42.9948,"lng":13.2267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"057","name":"VISSO","lat":42.9303,"lng":13.0885,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"001","name":"ACQUACANINA","lat":43.0305,"lng":13.1756,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"012","name":"CINGOLI","lat":43.3742,"lng":13.2034,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"048","name":"SANT'ANGELO IN PONTANO","lat":43.0995,"lng":13.3977,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"028","name":"MONTECOSARO","lat":43.3157,"lng":13.6407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"014","name":"COLMURANO","lat":43.166,"lng":13.36,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"035","name":"PENNA SAN GIOVANNI","lat":43.0574,"lng":13.4271,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"040","name":"POGGIO SAN VICINO","lat":43.3763,"lng":13.0788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"026","name":"MONTECASSIANO","lat":43.3646,"lng":13.4385,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"009","name":"CASTELRAIMONDO","lat":43.2092,"lng":13.0547,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"002","name":"APIRO","lat":43.391,"lng":13.1318,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"023","name":"MACERATA","lat":43.3007,"lng":13.4563,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"021","name":"GUALDO","lat":42.4545,"lng":12.4765,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"027","name":"MONTE CAVALLO","lat":42.9946,"lng":13.0008,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"046","name":"SAN GINESIO","lat":43.1077,"lng":13.3264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"033","name":"MORROVALLE","lat":43.3175,"lng":13.5896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"043","codice_comu_istat":"054","name":"TREIA","lat":43.3116,"lng":13.3125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"071","name":"SPINETOLI","lat":42.8892,"lng":13.7731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"038","name":"MONTEGALLO","lat":42.8422,"lng":13.3328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"031","name":"MONSAMPOLO DEL TRONTO","lat":42.8957,"lng":13.7965,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"020","name":"FOLIGNANO","lat":42.8213,"lng":13.6353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"027","name":"MALTIGNANO","lat":42.8328,"lng":13.6886,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"054","name":"OFFIDA","lat":42.9367,"lng":13.7014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"021","name":"FORCE","lat":42.9621,"lng":13.4888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"056","name":"PALMIANO","lat":42.9006,"lng":13.459,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"034","name":"MONTEDINOVE","lat":42.9718,"lng":13.589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"029","name":"MASSIGNANO","lat":43.0515,"lng":13.7957,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"001","name":"ACQUASANTA TERME","lat":42.7708,"lng":13.411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"007","name":"ASCOLI PICENO","lat":42.8554,"lng":13.575,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"066","name":"SAN BENEDETTO DEL TRONTO","lat":42.9495,"lng":13.8781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"012","name":"CASTIGNANO","lat":42.9384,"lng":13.6225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"017","name":"CUPRA MARITTIMA","lat":43.0309,"lng":13.8589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"014","name":"COLLI DEL TRONTO","lat":42.8653,"lng":13.7522,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"063","name":"RIPATRANSONE","lat":42.9966,"lng":13.7611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"011","name":"CASTEL DI LAMA","lat":42.8867,"lng":13.7099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"002","name":"ACQUAVIVA PICENA","lat":42.9448,"lng":13.8125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"044","name":"MONTEMONACO","lat":42.8994,"lng":13.3339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"032","name":"MONTALTO DELLE MARCHE","lat":42.991,"lng":13.6102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"013","name":"CASTORANO","lat":42.8977,"lng":13.7282,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"006","name":"ARQUATA DEL TRONTO","lat":42.7731,"lng":13.2967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"064","name":"ROCCAFLUVIONE","lat":42.8594,"lng":13.4764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"005","name":"APPIGNANO DEL TRONTO","lat":42.8996,"lng":13.6623,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"023","name":"GROTTAMMARE","lat":42.9913,"lng":13.868,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"010","name":"CARASSAI","lat":43.0317,"lng":13.6857,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"073","name":"VENAROTTA","lat":42.8818,"lng":13.4926,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"015","name":"COMUNANZA","lat":42.9585,"lng":13.4133,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"016","name":"COSSIGNANO","lat":42.984,"lng":13.6887,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"065","name":"ROTELLA","lat":42.9543,"lng":13.5601,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"036","name":"MONTEFIORE DELL'ASO","lat":43.0499,"lng":13.7502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"044","codice_comu_istat":"045","name":"MONTEPRANDONE","lat":42.9204,"lng":13.8381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"017","name":"ZERI","lat":44.3417,"lng":9.7591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"012","name":"MULAZZO","lat":44.3172,"lng":9.8906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"003","name":"CARRARA","lat":44.0793,"lng":10.1012,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"013","name":"PODENZANA","lat":44.2074,"lng":9.9431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"005","name":"COMANO","lat":44.2944,"lng":10.1322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"002","name":"BAGNONE","lat":44.3153,"lng":9.9957,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"001","name":"AULLA","lat":44.2055,"lng":9.9698,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"006","name":"FILATTIERA","lat":44.3311,"lng":9.9342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"009","name":"LICCIANA NARDI","lat":44.2646,"lng":10.0358,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"015","name":"TRESANA","lat":44.2553,"lng":9.9139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"004","name":"CASOLA IN LUNIGIANA","lat":44.2014,"lng":10.1778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"010","name":"MASSA","lat":39.9838,"lng":15.7477,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"016","name":"VILLAFRANCA IN LUNIGIANA","lat":44.296,"lng":9.95,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"008","name":"FOSDINOVO","lat":44.1333,"lng":10.0176,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"011","name":"MONTIGNOSO","lat":44.0161,"lng":10.1702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"014","name":"PONTREMOLI","lat":44.3756,"lng":9.8783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"045","codice_comu_istat":"007","name":"FIVIZZANO","lat":44.2394,"lng":10.127,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"021","name":"MONTECARLO","lat":43.8524,"lng":10.6694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"004","name":"BORGO A MOZZANO","lat":43.98,"lng":10.5467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"009","name":"CASTELNUOVO DI GARFAGNANA","lat":44.1093,"lng":10.4112,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"027","name":"SAN ROMANO IN GARFAGNANA","lat":44.1698,"lng":10.3466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"014","name":"FOSCIANDORA","lat":44.1159,"lng":10.4595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"013","name":"FORTE DEI MARMI","lat":43.966,"lng":10.1734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"033","name":"VIAREGGIO","lat":43.8745,"lng":10.2569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"029","name":"SILLANO","lat":44.2243,"lng":10.3016,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"017","name":"LUCCA","lat":43.843,"lng":10.508,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"024","name":"PIETRASANTA","lat":43.9567,"lng":10.2266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"008","name":"CAREGGINE","lat":44.1209,"lng":10.3264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"019","name":"MINUCCIANO","lat":44.1714,"lng":10.2088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"022","name":"PESCAGLIA","lat":43.9674,"lng":10.4122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"003","name":"BARGA","lat":44.0753,"lng":10.4819,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"012","name":"FABBRICHE DI VALLICO","lat":43.9972,"lng":10.4285,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"001","name":"ALTOPASCIO","lat":43.8145,"lng":10.6745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"030","name":"STAZZEMA","lat":43.9929,"lng":10.3112,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"031","name":"VAGLI SOTTO","lat":44.1096,"lng":10.2892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"018","name":"MASSAROSA","lat":43.8688,"lng":10.3408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"035","name":"VILLA COLLEMANDINA","lat":44.1595,"lng":10.3988,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"005","name":"CAMAIORE","lat":43.9382,"lng":10.3041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"007","name":"CAPANNORI","lat":43.8427,"lng":10.5694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"023","name":"PIAZZA AL SERCHIO","lat":44.1844,"lng":10.2978,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"026","name":"PORCARI","lat":43.8452,"lng":10.6175,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"020","name":"MOLAZZANA","lat":44.0728,"lng":10.4189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"032","name":"VERGEMOLI","lat":44.0532,"lng":10.3808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"006","name":"CAMPORGIANO","lat":44.1593,"lng":10.3334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"011","name":"COREGLIA ANTELMINELLI","lat":44.0647,"lng":10.5266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"016","name":"GIUNCUGNANO","lat":44.2102,"lng":10.2472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"010","name":"CASTIGLIONE DI GARFAGNANA","lat":44.1493,"lng":10.4111,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"034","name":"VILLA BASILICA","lat":43.9258,"lng":10.6445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"002","name":"BAGNI DI LUCCA","lat":44.0119,"lng":10.5908,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"015","name":"GALLICANO","lat":44.0608,"lng":10.44,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"025","name":"PIEVE FOSCIANA","lat":44.132,"lng":10.4105,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"046","codice_comu_istat":"028","name":"SERAVEZZA","lat":43.9945,"lng":10.2275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"001","name":"ABETONE","lat":44.1456,"lng":10.665,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"008","name":"MASSA E COZZILE","lat":43.917,"lng":10.7425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"012","name":"PESCIA","lat":43.8981,"lng":10.6914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"003","name":"BUGGIANO","lat":43.8764,"lng":10.7345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"010","name":"MONTALE","lat":44.1212,"lng":9.9038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"019","name":"SAN MARCELLO PISTOIESE","lat":44.0556,"lng":10.7929,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"015","name":"PITEGLIO","lat":44.0279,"lng":10.7649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"004","name":"CUTIGLIANO","lat":44.1005,"lng":10.7564,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"017","name":"QUARRATA","lat":43.851,"lng":10.9817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"016","name":"PONTE BUGGIANESE","lat":43.8439,"lng":10.7488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"018","name":"SAMBUCA PISTOIESE","lat":44.1053,"lng":11.0006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"005","name":"LAMPORECCHIO","lat":43.8099,"lng":10.8897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"009","name":"MONSUMMANO TERME","lat":43.8714,"lng":10.8135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"021","name":"UZZANO","lat":43.8823,"lng":10.7104,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"007","name":"MARLIANA","lat":43.9337,"lng":10.7694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"013","name":"PIEVE A NIEVOLE","lat":43.8728,"lng":10.8025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"011","name":"MONTECATINI-TERME","lat":43.8845,"lng":10.7747,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"002","name":"AGLIANA","lat":43.9075,"lng":11.0074,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"020","name":"SERRAVALLE PISTOIESE","lat":43.9061,"lng":10.8343,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"022","name":"CHIESINA UZZANESE","lat":43.839,"lng":10.7195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"006","name":"LARCIANO","lat":43.8339,"lng":10.8897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"047","codice_comu_istat":"014","name":"PISTOIA","lat":43.9322,"lng":10.9185,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"044","name":"SIGNA","lat":43.7814,"lng":11.097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"028","name":"MONTELUPO FIORENTINO","lat":43.7339,"lng":11.0214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"024","name":"LASTRA A SIGNA","lat":43.7698,"lng":11.1052,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"042","name":"SCARPERIA","lat":43.993,"lng":11.3549,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"002","name":"BARBERINO DI MUGELLO","lat":44.001,"lng":11.2385,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"020","name":"GAMBASSI TERME","lat":43.5401,"lng":10.9549,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"012","name":"CERTALDO","lat":43.5474,"lng":11.0386,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"015","name":"FIESOLE","lat":43.8069,"lng":11.2928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"031","name":"PALAZZUOLO SUL SENIO","lat":44.1135,"lng":11.548,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"027","name":"MONTAIONE","lat":43.5536,"lng":10.9117,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"016","name":"FIGLINE VALDARNO","lat":43.6206,"lng":11.4703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"023","name":"INCISA IN VAL D'ARNO","lat":43.6561,"lng":11.4491,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"022","name":"IMPRUNETA","lat":43.686,"lng":11.2542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"021","name":"GREVE IN CHIANTI","lat":43.5851,"lng":11.3154,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"032","name":"PELAGO","lat":43.7722,"lng":11.5041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"030","name":"MONTESPERTOLI","lat":43.6429,"lng":11.0766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"037","name":"RUFINA","lat":43.8253,"lng":11.4861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"026","name":"MARRADI","lat":44.0756,"lng":11.6131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"025","name":"LONDA","lat":43.8619,"lng":11.5701,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"038","name":"SAN CASCIANO IN VAL DI PESA","lat":43.66,"lng":11.1906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"019","name":"FUCECCHIO","lat":43.7289,"lng":10.8113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"036","name":"RIGNANO SULL'ARNO","lat":43.722,"lng":11.4525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"046","name":"VAGLIA","lat":43.9114,"lng":11.2802,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"013","name":"DICOMANO","lat":43.8921,"lng":11.5222,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"018","name":"FIRENZUOLA","lat":44.1207,"lng":11.3803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"014","name":"EMPOLI","lat":43.7186,"lng":10.9425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"041","name":"SCANDICCI","lat":43.7535,"lng":11.1892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"006","name":"CAMPI BISENZIO","lat":43.8256,"lng":11.1334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"008","name":"CAPRAIA E LIMITE","lat":43.737,"lng":11.0129,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"001","name":"BAGNO A RIPOLI","lat":43.7537,"lng":11.3226,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"049","name":"VICCHIO","lat":43.9326,"lng":11.4672,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"035","name":"REGGELLO","lat":43.6822,"lng":11.5309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"045","name":"TAVARNELLE VAL DI PESA","lat":43.5628,"lng":11.1725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"010","name":"CASTELFIORENTINO","lat":43.611,"lng":10.969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"040","name":"SAN PIERO A SIEVE","lat":43.9624,"lng":11.3255,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"011","name":"CERRETO GUIDI","lat":43.7598,"lng":10.8802,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"005","name":"CALENZANO","lat":43.8571,"lng":11.1638,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"043","name":"SESTO FIORENTINO","lat":43.8356,"lng":11.1963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"003","name":"BARBERINO VAL D'ELSA","lat":43.5421,"lng":11.1708,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"039","name":"SAN GODENZO","lat":43.9261,"lng":11.618,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"004","name":"BORGO SAN LORENZO","lat":43.9564,"lng":11.3845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"050","name":"VINCI","lat":43.7799,"lng":10.9234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"033","name":"PONTASSIEVE","lat":43.7746,"lng":11.4404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"048","codice_comu_istat":"017","name":"FIRENZE","lat":43.7667,"lng":11.25,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"049","codice_comu_istat":"004","name":"CAPOLIVERI","lat":42.7429,"lng":10.379,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"008","name":"COLLESALVETTI","lat":43.5899,"lng":10.476,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"003","name":"CAMPO NELL'ELBA","lat":42.7489,"lng":10.2344,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"020","name":"SUVERETO","lat":43.0783,"lng":10.6792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"012","name":"PIOMBINO","lat":42.9259,"lng":10.5254,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"007","name":"CECINA","lat":43.3104,"lng":10.5178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"019","name":"SASSETTA","lat":43.1291,"lng":10.6432,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"017","name":"ROSIGNANO MARITTIMO","lat":43.4056,"lng":10.474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"014","name":"PORTOFERRAIO","lat":42.8125,"lng":10.3156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"011","name":"MARCIANA MARINA","lat":42.8038,"lng":10.1974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"015","name":"RIO MARINA","lat":42.8146,"lng":10.4274,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"018","name":"SAN VINCENZO","lat":43.0939,"lng":10.5419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"013","name":"PORTO AZZURRO","lat":42.768,"lng":10.3967,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"002","name":"CAMPIGLIA MARITTIMA","lat":43.0603,"lng":10.6145,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"010","name":"MARCIANA","lat":43.6754,"lng":10.5312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"016","name":"RIO NELL'ELBA","lat":42.8142,"lng":10.4024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"006","name":"CASTAGNETO CARDUCCI","lat":43.1597,"lng":10.611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"001","name":"BIBBONA","lat":43.2694,"lng":10.5952,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"005","name":"CAPRAIA ISOLA","lat":43.0506,"lng":9.843,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"049","codice_comu_istat":"009","name":"LIVORNO","lat":43.5519,"lng":10.308,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"034","name":"SANTA LUCE","lat":43.4722,"lng":10.5647,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"039","name":"VOLTERRA","lat":43.4014,"lng":10.8611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"017","name":"LARI","lat":43.5689,"lng":10.5938,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"009","name":"CASTELFRANCO DI SOTTO","lat":43.699,"lng":10.7424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"037","name":"VECCHIANO","lat":43.781,"lng":10.3834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"022","name":"MONTOPOLI IN VAL D'ARNO","lat":43.6748,"lng":10.7453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"010","name":"CASTELLINA MARITTIMA","lat":43.4127,"lng":10.5765,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"021","name":"MONTEVERDI MARITTIMO","lat":43.1783,"lng":10.7156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"003","name":"CALCI","lat":43.7265,"lng":10.516,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"018","name":"LORENZANA","lat":43.5438,"lng":10.5267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"020","name":"MONTESCUDAIO","lat":43.327,"lng":10.627,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"013","name":"CRESPINA","lat":43.5741,"lng":10.5653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"029","name":"PONTEDERA","lat":43.6627,"lng":10.6328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"019","name":"MONTECATINI VAL DI CECINA","lat":43.3925,"lng":10.7497,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"012","name":"CHIANNI","lat":43.486,"lng":10.6423,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"031","name":"SAN GIULIANO TERME","lat":43.7625,"lng":10.4404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"038","name":"VICOPISANO","lat":43.6871,"lng":10.5826,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"023","name":"ORCIANO PISANO","lat":43.4955,"lng":10.513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"028","name":"PONSACCO","lat":43.6249,"lng":10.6302,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"032","name":"SAN MINIATO","lat":43.6794,"lng":10.8513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"016","name":"LAJATICO","lat":43.4762,"lng":10.729,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"026","name":"PISA","lat":43.7161,"lng":10.3966,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"001","name":"BIENTINA","lat":43.71,"lng":10.6195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"008","name":"CASCINA","lat":43.6766,"lng":10.5468,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"035","name":"SANTA MARIA A MONTE","lat":43.7009,"lng":10.69,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"036","name":"TERRICCIOLA","lat":43.5239,"lng":10.6764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"014","name":"FAUGLIA","lat":43.5705,"lng":10.514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"011","name":"CASTELNUOVO DI VAL DI CECINA","lat":43.2121,"lng":10.9028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"007","name":"CASCIANA TERME","lat":43.5285,"lng":10.6192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"006","name":"CASALE MARITTIMO","lat":43.2977,"lng":10.6158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"027","name":"POMARANCE","lat":43.3,"lng":10.8739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"005","name":"CAPANNOLI","lat":43.5906,"lng":10.6707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"002","name":"BUTI","lat":43.727,"lng":10.5889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"024","name":"PALAIA","lat":43.6052,"lng":10.7743,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"004","name":"CALCINAIA","lat":43.6831,"lng":10.6173,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"025","name":"PECCIOLI","lat":43.5466,"lng":10.7192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"015","name":"GUARDISTALLO","lat":43.3138,"lng":10.6338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"033","name":"SANTA CROCE SULL'ARNO","lat":43.7203,"lng":10.7728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"050","codice_comu_istat":"030","name":"RIPARBELLA","lat":43.3658,"lng":10.6003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"005","name":"BUCINE","lat":43.4775,"lng":11.616,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"039","name":"TERRANUOVA BRACCIOLINI","lat":43.5534,"lng":11.5898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"018","name":"FOIANO DELLA CHIANA","lat":43.2505,"lng":11.8182,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"004","name":"BIBBIENA","lat":43.6975,"lng":11.8145,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"027","name":"ORTIGNANO RAGGIOLO","lat":43.6795,"lng":11.7468,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"006","name":"CAPOLONA","lat":43.5699,"lng":11.8669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"008","name":"CASTEL FOCOGNANO","lat":43.6537,"lng":11.7889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"009","name":"CASTELFRANCO DI SOPRA","lat":43.6211,"lng":11.5571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"011","name":"CASTIGLION FIBOCCHI","lat":43.5274,"lng":11.7595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"028","name":"PERGINE VALDARNO","lat":43.4714,"lng":11.6867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"031","name":"POPPI","lat":43.7328,"lng":11.764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"022","name":"MARCIANO DELLA CHIANA","lat":43.3059,"lng":11.7875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"034","name":"SANSEPOLCRO","lat":43.5756,"lng":12.1441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"029","name":"PIAN DI SCO","lat":43.643,"lng":11.5463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"026","name":"MONTEVARCHI","lat":43.5288,"lng":11.57,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"014","name":"CHITIGNANO","lat":43.6635,"lng":11.8824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"017","name":"CORTONA","lat":43.2741,"lng":11.9878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"020","name":"LORO CIUFFENNA","lat":43.5926,"lng":11.6329,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"033","name":"SAN GIOVANNI VALDARNO","lat":43.5646,"lng":11.5328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"025","name":"MONTE SAN SAVINO","lat":43.3297,"lng":11.7313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"012","name":"CASTIGLION FIORENTINO","lat":43.3423,"lng":11.9161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"036","name":"STIA","lat":43.7985,"lng":11.7093,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"032","name":"PRATOVECCHIO","lat":43.7878,"lng":11.7245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"035","name":"SESTINO","lat":43.7106,"lng":12.2989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"024","name":"MONTERCHI","lat":43.4894,"lng":12.1122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"021","name":"LUCIGNANO","lat":43.2747,"lng":11.746,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"002","name":"AREZZO","lat":43.4712,"lng":11.8631,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"023","name":"MONTEMIGNAIO","lat":43.741,"lng":11.6199,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"015","name":"CHIUSI DELLA VERNA","lat":43.6984,"lng":11.9361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"037","name":"SUBBIANO","lat":43.5756,"lng":11.8713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"019","name":"LATERINA","lat":43.508,"lng":11.7198,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"010","name":"CASTEL SAN NICCOLÒ","lat":43.7425,"lng":11.706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"001","name":"ANGHIARI","lat":43.5419,"lng":12.0606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"016","name":"CIVITELLA IN VAL DI CHIANA","lat":43.4181,"lng":11.7243,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"030","name":"PIEVE SANTO STEFANO","lat":43.6711,"lng":12.0408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"003","name":"BADIA TEDALDA","lat":43.709,"lng":12.1865,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"007","name":"CAPRESE MICHELANGELO","lat":43.641,"lng":11.986,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"038","name":"TALLA","lat":43.6028,"lng":11.7881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"051","codice_comu_istat":"013","name":"CAVRIGLIA","lat":43.5213,"lng":11.488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"008","name":"CETONA","lat":42.9653,"lng":11.9004,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"012","name":"COLLE DI VAL D'ELSA","lat":43.4163,"lng":11.1325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"020","name":"PIANCASTAGNAIO","lat":42.8517,"lng":11.6859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"034","name":"SOVICILLE","lat":43.2792,"lng":11.2277,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"013","name":"GAIOLE IN CHIANTI","lat":43.4693,"lng":11.4333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"007","name":"CASTIGLIONE D'ORCIA","lat":43.0081,"lng":11.6156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"011","name":"CHIUSI","lat":43.017,"lng":11.9484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"028","name":"SAN GIMIGNANO","lat":43.4703,"lng":11.0438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"014","name":"MONTALCINO","lat":43.0606,"lng":11.489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"002","name":"ASCIANO","lat":43.2334,"lng":11.5615,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"015","name":"MONTEPULCIANO","lat":43.0929,"lng":11.7824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"035","name":"TORRITA DI SIENA","lat":43.1713,"lng":11.7805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"026","name":"RAPOLANO TERME","lat":43.2856,"lng":11.6048,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"016","name":"MONTERIGGIONI","lat":43.3897,"lng":11.2245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"033","name":"SINALUNGA","lat":43.2149,"lng":11.7435,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"010","name":"CHIUSDINO","lat":43.1543,"lng":11.0801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"030","name":"SAN QUIRICO D'ORCIA","lat":43.0577,"lng":11.606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"027","name":"SAN CASCIANO DEI BAGNI","lat":42.8716,"lng":11.8752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"017","name":"MONTERONI D'ARBIA","lat":43.2303,"lng":11.4221,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"006","name":"CASTELNUOVO BERARDENGA","lat":43.3474,"lng":11.5044,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"001","name":"ABBADIA SAN SALVATORE","lat":42.8831,"lng":11.6706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"005","name":"CASTELLINA IN CHIANTI","lat":43.4714,"lng":11.2854,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"029","name":"SAN GIOVANNI D'ASSO","lat":43.1537,"lng":11.5892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"004","name":"CASOLE D'ELSA","lat":43.3408,"lng":11.0438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"003","name":"BUONCONVENTO","lat":43.1347,"lng":11.4846,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"025","name":"RADICONDOLI","lat":43.2615,"lng":11.0448,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"032","name":"SIENA","lat":43.3187,"lng":11.3305,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"018","name":"MONTICIANO","lat":43.1406,"lng":11.18,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"021","name":"PIENZA","lat":43.0789,"lng":11.6789,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"024","name":"RADICOFANI","lat":42.8966,"lng":11.7711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"023","name":"RADDA IN CHIANTI","lat":43.4865,"lng":11.3732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"019","name":"MURLO","lat":43.1687,"lng":11.391,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"022","name":"POGGIBONSI","lat":43.4734,"lng":11.1467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"036","name":"TREQUANDA","lat":43.1888,"lng":11.6686,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"031","name":"SARTEANO","lat":42.9892,"lng":11.8669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"052","codice_comu_istat":"009","name":"CHIANCIANO TERME","lat":43.0594,"lng":11.8337,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"008","name":"CIVITELLA PAGANICO","lat":42.9949,"lng":11.2815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"014","name":"MANCIANO","lat":42.5888,"lng":11.5173,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"020","name":"ROCCALBEGNA","lat":42.7858,"lng":11.5079,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"026","name":"SORANO","lat":42.6826,"lng":11.7137,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"025","name":"SEGGIANO","lat":45.4876,"lng":9.3224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"015","name":"MASSA MARITTIMA","lat":43.05,"lng":10.8939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"016","name":"MONTE ARGENTARIO","lat":42.4357,"lng":11.1206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"013","name":"MAGLIANO IN TOSCANA","lat":42.5991,"lng":11.2935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"007","name":"CINIGIANO","lat":42.8907,"lng":11.393,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"006","name":"CASTIGLIONE DELLA PESCAIA","lat":42.7659,"lng":10.8824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"019","name":"PITIGLIANO","lat":42.636,"lng":11.6745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"012","name":"ISOLA DEL GIGLIO","lat":42.3656,"lng":10.9015,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"002","name":"CAMPAGNATICO","lat":42.8838,"lng":11.2735,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"003","name":"CAPALBIO","lat":42.4542,"lng":11.4215,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"009","name":"FOLLONICA","lat":42.9189,"lng":10.7614,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"005","name":"CASTELL'AZZARA","lat":42.7728,"lng":11.6983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"004","name":"CASTEL DEL PIANO","lat":42.8911,"lng":11.5395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"021","name":"ROCCASTRADA","lat":43.0105,"lng":11.1683,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"018","name":"ORBETELLO","lat":42.4423,"lng":11.2207,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"028","name":"SEMPRONIANO","lat":42.7299,"lng":11.5407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"024","name":"SCARLINO","lat":42.909,"lng":10.8506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"022","name":"SANTA FIORA","lat":42.8319,"lng":11.5852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"027","name":"MONTEROTONDO MARITTIMO","lat":43.1466,"lng":10.856,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"001","name":"ARCIDOSSO","lat":42.8727,"lng":11.5378,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"010","name":"GAVORRANO","lat":42.9253,"lng":10.9103,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"023","name":"SCANSANO","lat":42.6887,"lng":11.3348,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"011","name":"GROSSETO","lat":42.7629,"lng":11.1128,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"053","codice_comu_istat":"017","name":"MONTIERI","lat":43.1312,"lng":11.0166,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"030","name":"MONTEFALCO","lat":42.8937,"lng":12.6501,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"028","name":"MASSA MARTANA","lat":42.7756,"lng":12.5241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"036","name":"PACIANO","lat":43.0232,"lng":12.0694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"043","name":"PRECI","lat":42.8812,"lng":13.0384,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"038","name":"PASSIGNANO SUL TRASIMENO","lat":43.1952,"lng":12.1303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"014","name":"COLLAZZONE","lat":42.9012,"lng":12.435,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"046","name":"SCHEGGIA E PASCELUPO","lat":43.4013,"lng":12.7524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"020","name":"FRATTA TODINA","lat":42.8578,"lng":12.3647,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"044","name":"SAN GIUSTINO","lat":43.5505,"lng":12.1745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"057","name":"VALFABBRICA","lat":43.1596,"lng":12.6014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"049","name":"SIGILLO","lat":43.3313,"lng":12.7422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"048","name":"SELLANO","lat":42.8894,"lng":12.9276,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"006","name":"CANNARA","lat":42.9944,"lng":12.5829,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"021","name":"GIANO DELL'UMBRIA","lat":42.8335,"lng":12.5778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"032","name":"MONTE SANTA MARIA TIBERINA","lat":43.4371,"lng":12.1633,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"005","name":"CAMPELLO SUL CLITUNNO","lat":42.8204,"lng":12.7768,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"034","name":"NOCERA UMBRA","lat":43.1139,"lng":12.7884,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"051","name":"SPOLETO","lat":42.7453,"lng":12.7384,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"058","name":"VALLO DI NERA","lat":42.7556,"lng":12.865,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"016","name":"COSTACCIARO","lat":43.3617,"lng":12.7131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"052","name":"TODI","lat":42.7802,"lng":12.4085,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"015","name":"CORCIANO","lat":43.1284,"lng":12.2863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"008","name":"CASTEL RITALDI","lat":42.8228,"lng":12.6726,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"053","name":"TORGIANO","lat":43.0262,"lng":12.4365,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"023","name":"GUALDO TADINO","lat":43.2303,"lng":12.7861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"022","name":"GUALDO CATTANEO","lat":42.91,"lng":12.5557,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"031","name":"MONTELEONE DI SPOLETO","lat":42.6519,"lng":12.9533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"011","name":"CITERNA","lat":43.4984,"lng":12.116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"027","name":"MARSCIANO","lat":42.9104,"lng":12.337,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"042","name":"POGGIODOMO","lat":42.7117,"lng":12.9329,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"024","name":"GUBBIO","lat":43.3555,"lng":12.5734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"041","name":"PIETRALUNGA","lat":43.4378,"lng":12.4322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"029","name":"MONTE CASTELLO DI VIBIO","lat":42.8413,"lng":12.3525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"047","name":"SCHEGGINO","lat":42.713,"lng":12.8316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"039","name":"PERUGIA","lat":43.1107,"lng":12.3892,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"054","codice_comu_istat":"056","name":"UMBERTIDE","lat":43.3066,"lng":12.3375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"012","name":"CITTÀ DELLA PIEVE","lat":42.9531,"lng":12.0036,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"010","name":"CERRETO DI SPOLETO","lat":42.8208,"lng":12.9174,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"018","name":"FOLIGNO","lat":42.945,"lng":12.702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"059","name":"VALTOPINA","lat":43.0578,"lng":12.7541,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"013","name":"CITTÀ DI CASTELLO","lat":43.4608,"lng":12.2438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"033","name":"MONTONE","lat":42.7679,"lng":13.9188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"054","name":"TREVI","lat":42.8767,"lng":12.7452,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"009","name":"CASTIGLIONE DEL LAGO","lat":43.1281,"lng":12.0463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"019","name":"FOSSATO DI VICO","lat":43.2969,"lng":12.7597,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"055","name":"TUORO SUL TRASIMENO","lat":43.2086,"lng":12.0718,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"050","name":"SPELLO","lat":42.9898,"lng":12.6719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"017","name":"DERUTA","lat":42.9814,"lng":12.4161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"026","name":"MAGIONE","lat":43.145,"lng":12.2078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"004","name":"BEVAGNA","lat":42.9349,"lng":12.6094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"045","name":"SANT'ANATOLIA DI NARCO","lat":42.7334,"lng":12.8356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"001","name":"ASSISI","lat":43.0702,"lng":12.6175,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"002","name":"BASTIA UMBRA","lat":43.067551,"lng":12.55161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"003","name":"BETTONA","lat":43.0137,"lng":12.4854,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"007","name":"CASCIA","lat":42.7176,"lng":13.0156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"040","name":"PIEGARO","lat":42.9702,"lng":12.086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"025","name":"LISCIANO NICCONE","lat":43.2477,"lng":12.145,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"037","name":"PANICALE","lat":43.0294,"lng":12.1001,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"054","codice_comu_istat":"035","name":"NORCIA","lat":42.7942,"lng":13.0964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"019","name":"MONTEFRANCO","lat":42.5976,"lng":12.7659,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"013","name":"FICULLE","lat":42.8336,"lng":12.0672,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"015","name":"GUARDEA","lat":42.6229,"lng":12.2982,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"031","name":"STRONCONE","lat":42.5032,"lng":12.6603,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"006","name":"ATTIGLIANO","lat":42.5168,"lng":12.2928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"023","name":"ORVIETO","lat":42.7165,"lng":12.1116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"002","name":"ALLERONA","lat":42.8131,"lng":11.9741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"024","name":"OTRICOLI","lat":42.4225,"lng":12.4783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"016","name":"LUGNANO IN TEVERINA","lat":42.5719,"lng":12.3305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"017","name":"MONTECASTRILLI","lat":42.6534,"lng":12.4895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"003","name":"ALVIANO","lat":42.5885,"lng":12.2957,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"001","name":"ACQUASPARTA","lat":42.6913,"lng":12.5411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"007","name":"BASCHI","lat":42.6739,"lng":12.2189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"028","name":"PORANO","lat":42.6841,"lng":12.0991,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"027","name":"POLINO","lat":42.5852,"lng":12.8428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"033","name":"AVIGLIANO UMBRO","lat":42.6515,"lng":12.4275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"029","name":"SAN GEMINI","lat":42.61,"lng":12.5441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"025","name":"PARRANO","lat":42.8674,"lng":12.1113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"010","name":"CASTEL VISCARDO","lat":42.7546,"lng":11.9996,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"012","name":"FERENTILLO","lat":42.6206,"lng":12.7871,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"005","name":"ARRONE","lat":42.5837,"lng":12.7678,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"009","name":"CASTEL GIORGIO","lat":42.7066,"lng":11.9774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"004","name":"AMELIA","lat":42.5573,"lng":12.4135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"032","name":"TERNI","lat":42.5602,"lng":12.6468,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"014","name":"GIOVE","lat":42.5103,"lng":12.3317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"011","name":"FABRO","lat":42.8723,"lng":12.0151,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"008","name":"CALVI DELL'UMBRIA","lat":42.4042,"lng":12.5688,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"018","name":"MONTECCHIO","lat":42.664,"lng":12.2881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"022","name":"NARNI","lat":42.5165,"lng":12.5266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"020","name":"MONTEGABBIONE","lat":42.9225,"lng":12.0931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"021","name":"MONTELEONE D'ORVIETO","lat":42.9245,"lng":12.0579,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"030","name":"SAN VENANZO","lat":42.8704,"lng":12.2701,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"055","codice_comu_istat":"026","name":"PENNA IN TEVERINA","lat":42.4931,"lng":12.3586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"011","name":"CANEPINA","lat":42.3833,"lng":12.233,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"008","name":"BOLSENA","lat":42.6449,"lng":11.9861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"053","name":"VALENTANO","lat":42.5664,"lng":11.8183,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"019","name":"CELLENO","lat":42.5595,"lng":12.1259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"057","name":"VETRALLA","lat":42.3209,"lng":12.0532,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"032","name":"LATERA","lat":42.63,"lng":11.8284,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"031","name":"ISCHIA DI CASTRO","lat":42.545,"lng":11.7574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"059","name":"VITERBO","lat":42.4174,"lng":12.1049,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"018","name":"CASTIGLIONE IN TEVERINA","lat":42.6489,"lng":12.2044,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"051","name":"TESSENNANO","lat":42.4794,"lng":11.7914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"029","name":"GRAFFIGNANO","lat":42.5736,"lng":12.2027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"017","name":"CASTEL SANT'ELIA","lat":42.2505,"lng":12.3701,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"020","name":"CELLERE","lat":42.5114,"lng":11.7727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"047","name":"SAN LORENZO NUOVO","lat":42.6863,"lng":11.906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"048","name":"SORIANO NEL CIMINO","lat":42.4199,"lng":12.2344,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"026","name":"FARNESE","lat":42.5505,"lng":11.7267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"025","name":"FALERIA","lat":42.2275,"lng":12.4464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"006","name":"BASSANO IN TEVERINA","lat":42.4655,"lng":12.3106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"014","name":"CAPRANICA","lat":42.2599,"lng":12.1731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"052","name":"TUSCANIA","lat":42.4192,"lng":11.8703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"007","name":"BLERA","lat":42.2727,"lng":12.0275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"001","name":"ACQUAPENDENTE","lat":42.7449,"lng":11.8652,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"041","name":"ORIOLO ROMANO","lat":42.1592,"lng":12.1389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"035","name":"MONTALTO DI CASTRO","lat":42.3514,"lng":11.608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"005","name":"BASSANO ROMANO","lat":42.2181,"lng":12.1923,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"034","name":"MARTA","lat":42.4408,"lng":11.8638,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"055","name":"VASANELLO","lat":42.4149,"lng":12.3475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"009","name":"BOMARZO","lat":42.4871,"lng":12.2504,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"012","name":"CANINO","lat":42.465,"lng":11.7522,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"058","name":"VIGNANELLO","lat":42.3836,"lng":12.2771,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"042","name":"ORTE","lat":42.4603,"lng":12.3864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"060","name":"VITORCHIANO","lat":42.4664,"lng":12.1734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"054","name":"VALLERANO","lat":42.385,"lng":12.2646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"050","name":"TARQUINIA","lat":42.2547,"lng":11.7585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"021","name":"CIVITA CASTELLANA","lat":42.2888,"lng":12.4115,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"027","name":"GALLESE","lat":42.3726,"lng":12.4032,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"030","name":"GROTTE DI CASTRO","lat":42.6749,"lng":11.8696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"033","name":"LUBRIANO","lat":42.6364,"lng":12.1116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"045","name":"RONCIGLIONE","lat":42.2914,"lng":12.2142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"016","name":"CARBOGNANO","lat":42.3327,"lng":12.2653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"040","name":"ONANO","lat":42.6923,"lng":11.8166,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"002","name":"ARLENA DI CASTRO","lat":42.4639,"lng":11.8218,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"044","name":"PROCENO","lat":42.7583,"lng":11.8306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"003","name":"BAGNOREGIO","lat":42.6272,"lng":12.0903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"038","name":"MONTEROSI","lat":42.1949,"lng":12.3104,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"023","name":"CORCHIANO","lat":42.3459,"lng":12.3567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"056","name":"VEJANO","lat":42.2183,"lng":12.0966,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"022","name":"CIVITELLA D'AGLIANO","lat":42.6042,"lng":12.188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"028","name":"GRADOLI","lat":42.6445,"lng":11.856,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"036","name":"MONTEFIASCONE","lat":42.538,"lng":12.0364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"049","name":"SUTRI","lat":42.2427,"lng":12.2204,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"024","name":"FABRICA DI ROMA","lat":42.3338,"lng":12.2999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"039","name":"NEPI","lat":42.2439,"lng":12.3466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"037","name":"MONTE ROMANO","lat":42.2683,"lng":11.8952,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"046","name":"VILLA SAN GIOVANNI IN TUSCIA","lat":42.283,"lng":12.0553,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"015","name":"CAPRAROLA","lat":42.3241,"lng":12.2426,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"013","name":"CAPODIMONTE","lat":42.5475,"lng":11.9058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"043","name":"PIANSANO","lat":42.5233,"lng":11.8302,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"004","name":"BARBARANO ROMANO","lat":42.2501,"lng":12.0666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"056","codice_comu_istat":"010","name":"CALCATA","lat":42.2193,"lng":12.4265,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"039","name":"MONTASOLA","lat":42.3853,"lng":12.6804,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"071","name":"TURANIA","lat":42.1388,"lng":13.009,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"046","name":"NESPOLO","lat":42.1569,"lng":13.0688,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"036","name":"MARCETELLI","lat":42.2264,"lng":13.0461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"028","name":"FIAMIGNANO","lat":42.2648,"lng":13.1255,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"037","name":"MICIGLIANO","lat":42.4515,"lng":13.0531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"022","name":"COLLI SUL VELINO","lat":42.4983,"lng":12.7844,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"020","name":"COLLEGIOVE","lat":42.1759,"lng":13.0369,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"070","name":"TORRI IN SABINA","lat":42.3541,"lng":12.6395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"009","name":"CANTALICE","lat":42.4687,"lng":12.9034,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"017","name":"CITTAREALE","lat":42.6174,"lng":13.1589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"018","name":"COLLALTO SABINO","lat":42.1366,"lng":13.0477,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"032","name":"LABRO","lat":42.5256,"lng":12.8007,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"021","name":"COLLEVECCHIO","lat":42.336,"lng":12.5528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"047","name":"ORVINIO","lat":42.1317,"lng":12.9377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"067","name":"TARANO","lat":42.3565,"lng":12.596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"044","name":"MONTOPOLI DI SABINA","lat":42.2463,"lng":12.6921,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"062","name":"ROCCA SINIBALDA","lat":42.2749,"lng":12.9256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"069","name":"TORRICELLA IN SABINA","lat":42.2625,"lng":12.8709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"008","name":"BORGO VELINO","lat":42.407,"lng":13.0603,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"013","name":"CASTEL DI TORA","lat":42.2158,"lng":12.9638,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"052","name":"POGGIO CATINO","lat":42.2924,"lng":12.6946,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"041","name":"MONTELEONE SABINO","lat":42.2331,"lng":12.8581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"048","name":"PAGANICO SABINO","lat":42.19,"lng":12.9978,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"063","name":"SALISANO","lat":42.2583,"lng":12.7462,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"035","name":"MAGLIANO SABINA","lat":42.3624,"lng":12.4814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"042","name":"MONTENERO SABINO","lat":42.2819,"lng":12.8135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"014","name":"CASTELNUOVO DI FARFA","lat":42.2322,"lng":12.742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"056","name":"POGGIO SAN LORENZO","lat":42.253,"lng":12.8452,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"049","name":"PESCOROCCHIANO","lat":42.2075,"lng":13.1472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"060","name":"RIVODUTRI","lat":42.5175,"lng":12.8559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"019","name":"COLLE DI TORA","lat":42.2136,"lng":12.9485,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"015","name":"CASTEL SANT'ANGELO","lat":42.3949,"lng":13.0285,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"011","name":"CASAPROTA","lat":42.2511,"lng":12.8035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"012","name":"CASPERIA","lat":42.3408,"lng":12.6717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"031","name":"GRECCIO","lat":42.4433,"lng":12.7519,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"058","name":"POZZAGLIA SABINA","lat":42.1597,"lng":12.9653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"065","name":"SELCI","lat":42.3129,"lng":12.6259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"057","name":"POSTA","lat":42.5265,"lng":13.0983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"066","name":"STIMIGLIANO","lat":42.2995,"lng":12.5659,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"029","name":"FORANO","lat":42.2971,"lng":12.5957,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"030","name":"FRASSO SABINO","lat":42.2297,"lng":12.805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"064","name":"SCANDRIGLIA","lat":42.165,"lng":12.8429,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"006","name":"BORBONA","lat":42.5138,"lng":13.1333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"040","name":"MONTEBUONO","lat":42.3683,"lng":12.5975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"068","name":"TOFFIA","lat":42.2125,"lng":12.7535,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"025","name":"CONTIGLIANO","lat":42.4125,"lng":12.7689,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"023","name":"CONCERVIANO","lat":42.3231,"lng":12.9855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"002","name":"AMATRICE","lat":42.6286,"lng":13.291,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"010","name":"CANTALUPO IN SABINA","lat":42.3072,"lng":12.6483,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"026","name":"COTTANELLO","lat":42.4104,"lng":12.6842,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"054","name":"POGGIO MOIANO","lat":42.2038,"lng":12.8803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"043","name":"MONTE SAN GIOVANNI IN SABINA","lat":42.3285,"lng":12.7761,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"059","name":"RIETI","lat":42.4031,"lng":12.8612,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"027","name":"FARA IN SABINA","lat":42.2075,"lng":12.7298,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"007","name":"BORGOROSE","lat":42.19,"lng":13.235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"045","name":"MORRO REATINO","lat":42.5277,"lng":12.8312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"050","name":"PETRELLA SALTO","lat":42.2957,"lng":13.069,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"053","name":"POGGIO MIRTETO","lat":42.2672,"lng":12.6888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"016","name":"CITTADUCALE","lat":42.3869,"lng":12.9492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"024","name":"CONFIGNI","lat":42.4235,"lng":12.6417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"001","name":"ACCUMOLI","lat":42.6952,"lng":13.2488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"055","name":"POGGIO NATIVO","lat":42.2143,"lng":12.7936,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"073","name":"VARCO SABINO","lat":42.241,"lng":13.021,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"051","name":"POGGIO BUSTONE","lat":42.5021,"lng":12.887,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"005","name":"BELMONTE IN SABINA","lat":42.3185,"lng":12.8932,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"033","name":"LEONESSA","lat":42.5666,"lng":12.9625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"004","name":"ASCREA","lat":42.1956,"lng":12.9969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"034","name":"LONGONE SABINO","lat":42.2732,"lng":12.9664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"003","name":"ANTRODOCO","lat":42.4161,"lng":13.081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"038","name":"MOMPEO","lat":42.2485,"lng":12.7511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"072","name":"VACONE","lat":42.3855,"lng":12.6435,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"057","codice_comu_istat":"061","name":"ROCCANTICA","lat":42.3197,"lng":12.6951,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"112","name":"VICOVARO","lat":42.0182,"lng":12.8962,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"029","name":"CERVETERI","lat":41.9938,"lng":12.0935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"060","name":"MONTE COMPATRI","lat":41.80743,"lng":12.73634,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"082","name":"RIGNANO FLAMINIO","lat":42.2074,"lng":12.4803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"101","name":"SARACINESCO","lat":42.0031,"lng":12.953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"069","name":"NAZZANO","lat":42.2322,"lng":12.5974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"047","name":"GUIDONIA MONTECELIO","lat":41.9998,"lng":12.7263,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"044","name":"GERANO","lat":41.9341,"lng":12.9953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"030","name":"CICILIANO","lat":41.9607,"lng":12.9398,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"072","name":"NETTUNO","lat":41.4576,"lng":12.6611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"097","name":"SANTA MARINELLA","lat":42.0343,"lng":11.8545,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"043","name":"GENZANO DI ROMA","lat":41.7075,"lng":12.6901,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"032","name":"CIVITAVECCHIA","lat":42.0912,"lng":11.7968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"067","name":"MORICONE","lat":42.1122,"lng":12.775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"083","name":"RIOFREDDO","lat":42.061,"lng":12.9981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"066","name":"MONTORIO ROMANO","lat":42.1392,"lng":12.8067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"031","name":"CINETO ROMANO","lat":42.0496,"lng":12.9617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"079","name":"POMEZIA","lat":41.6693,"lng":12.5018,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"094","name":"SAMBUCI","lat":41.9872,"lng":12.9389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"017","name":"CANTERANO","lat":41.9436,"lng":13.0388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"009","name":"ARICCIA","lat":41.7217,"lng":12.6741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"114","name":"ZAGAROLO","lat":41.8399,"lng":12.8292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"081","name":"RIANO","lat":42.1013,"lng":12.5067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"025","name":"CASTEL SAN PIETRO ROMANO","lat":41.8467,"lng":12.8951,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"014","name":"CAMERATA NUOVA","lat":42.0195,"lng":13.1088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"026","name":"CAVE","lat":41.8178,"lng":12.9349,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"053","name":"MANDELA","lat":42.0292,"lng":12.9229,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"074","name":"PALESTRINA","lat":41.8354,"lng":12.8845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"054","name":"MANZIANA","lat":42.1331,"lng":12.1274,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"035","name":"COLONNA","lat":41.8341,"lng":12.7529,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"090","name":"ROIATE","lat":41.8735,"lng":13.0683,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"028","name":"CERVARA DI ROMA","lat":41.9878,"lng":13.0677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"099","name":"SANT'ORESTE","lat":42.2345,"lng":12.5192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"022","name":"CASTEL GANDOLFO","lat":41.7499,"lng":12.6485,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"045","name":"GORGA","lat":40.317,"lng":15.2405,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"036","name":"FIANO ROMANO","lat":42.1704,"lng":12.5904,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"006","name":"ANTICOLI CORRADO","lat":42.0097,"lng":12.989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"092","name":"ROVIANO","lat":42.026,"lng":12.9944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"087","name":"ROCCAGIOVINE","lat":42.0511,"lng":12.9003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"011","name":"ARTENA","lat":41.7397,"lng":12.9164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"089","name":"ROCCA SANTO STEFANO","lat":41.9116,"lng":13.0249,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"057","name":"MARINO","lat":41.7698,"lng":12.6585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"019","name":"CAPRANICA PRENESTINA","lat":41.8638,"lng":12.9507,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"070","name":"NEMI","lat":41.7197,"lng":12.7149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"055","name":"MARANO EQUO","lat":41.9942,"lng":13.0136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"107","name":"TREVIGNANO ROMANO","lat":42.1584,"lng":12.2417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"033","name":"CIVITELLA SAN PAOLO","lat":42.1995,"lng":12.5775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"049","name":"LABICO","lat":41.7906,"lng":12.8819,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"086","name":"ROCCA DI PAPA","lat":41.762,"lng":12.7081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"113","name":"VIVARO ROMANO","lat":42.101,"lng":13.0078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"064","name":"MONTE PORZIO CATONE","lat":41.8139,"lng":12.717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"018","name":"CAPENA","lat":42.1427,"lng":12.5417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"004","name":"ALLUMIERE","lat":42.1574,"lng":11.905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"068","name":"MORLUPO","lat":42.1472,"lng":12.4985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"050","name":"LANUVIO","lat":41.6747,"lng":12.6976,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"106","name":"TORRITA TIBERINA","lat":42.2395,"lng":12.6156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"042","name":"GENAZZANO","lat":41.8263,"lng":12.9717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"061","name":"MONTEFLAVIO","lat":42.1092,"lng":12.8297,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"077","name":"PISONIANO","lat":41.9065,"lng":12.9599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"119","name":"SAN CESAREO","lat":41.8146,"lng":12.8026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"116","name":"LADISPOLI","lat":41.955,"lng":12.0698,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"111","name":"VELLETRI","lat":41.6913,"lng":12.778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"046","name":"GROTTAFERRATA","lat":41.7886,"lng":12.6677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"093","name":"SACROFANO","lat":42.1056,"lng":12.4474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"085","name":"ROCCA DI CAVE","lat":41.8475,"lng":12.9464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"056","name":"MARCELLINA","lat":42.0263,"lng":12.8067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"100","name":"SAN VITO ROMANO","lat":41.881,"lng":12.9803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"023","name":"CASTEL MADAMA","lat":41.9745,"lng":12.8696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"003","name":"ALBANO LAZIALE","lat":41.7285,"lng":12.6608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"002","name":"AGOSTA","lat":41.9826,"lng":13.0338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"024","name":"CASTELNUOVO DI PORTO","lat":42.1269,"lng":12.5022,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"091","name":"ROMA","lat":41.9,"lng":12.4833,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"058","codice_comu_istat":"013","name":"BRACCIANO","lat":42.1036,"lng":12.1756,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"062","name":"MONTELANICO","lat":41.6522,"lng":13.041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"120","name":"FIUMICINO","lat":41.7715,"lng":12.23,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"007","name":"ANZIO","lat":41.4479,"lng":12.6291,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"084","name":"ROCCA CANTERANO","lat":41.9576,"lng":13.0214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"118","name":"CIAMPINO","lat":41.8025,"lng":12.6021,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"109","name":"VALLINFREDA","lat":42.0846,"lng":12.9976,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"012","name":"BELLEGRA","lat":41.884,"lng":13.0272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"122","name":"FONTE NUOVA","lat":41.9946,"lng":12.6189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"115","name":"LARIANO","lat":41.7261,"lng":12.8321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"001","name":"AFFILE","lat":41.8851,"lng":13.0977,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"048","name":"JENNE","lat":41.8899,"lng":13.1706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"037","name":"FILACCIANO","lat":42.2553,"lng":12.5989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"103","name":"SUBIACO","lat":41.9264,"lng":13.095,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"108","name":"VALLEPIETRA","lat":41.9253,"lng":13.2308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"075","name":"PALOMBARA SABINA","lat":42.0712,"lng":12.7666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"104","name":"TIVOLI","lat":41.9636,"lng":12.7983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"016","name":"CANALE MONTERANO","lat":42.1376,"lng":12.1032,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"095","name":"SAN GREGORIO DA SASSOLA","lat":41.9181,"lng":12.8717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"020","name":"CARPINETO ROMANO","lat":41.6055,"lng":13.0861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"059","name":"MENTANA","lat":42.0343,"lng":12.6374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"052","name":"MAGLIANO ROMANO","lat":42.159,"lng":12.4366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"102","name":"SEGNI","lat":41.6883,"lng":13.0163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"096","name":"SAN POLO DEI CAVALIERI","lat":42.0108,"lng":12.8411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"040","name":"GALLICANO NEL LAZIO","lat":41.8724,"lng":12.8181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"010","name":"ARSOLI","lat":42.0373,"lng":13.0139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"063","name":"MONTELIBRETTI","lat":42.1354,"lng":12.7381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"041","name":"GAVIGNANO","lat":41.6998,"lng":13.0511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"076","name":"PERCILE","lat":42.0951,"lng":12.9108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"039","name":"FRASCATI","lat":41.8062,"lng":12.6804,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"021","name":"CASAPE","lat":41.9083,"lng":12.8859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"027","name":"CERRETO LAZIALE","lat":41.9444,"lng":12.9827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"065","name":"MONTEROTONDO","lat":42.0517,"lng":12.6167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"058","name":"MAZZANO ROMANO","lat":42.2066,"lng":12.4003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"117","name":"ARDEA","lat":41.6118,"lng":12.5155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"005","name":"ANGUILLARA SABAZIA","lat":42.0926,"lng":12.2699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"034","name":"COLLEFERRO","lat":41.7302,"lng":13.0058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"071","name":"NEROLA","lat":42.162,"lng":12.7864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"038","name":"FORMELLO","lat":42.0788,"lng":12.4002,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"015","name":"CAMPAGNANO DI ROMA","lat":42.1405,"lng":12.38,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"073","name":"OLEVANO ROMANO","lat":41.8617,"lng":13.0341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"080","name":"PONZANO ROMANO","lat":42.258,"lng":12.5714,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"110","name":"VALMONTONE","lat":41.7771,"lng":12.9178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"051","name":"LICENZA","lat":42.0752,"lng":12.9011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"088","name":"ROCCA PRIORA","lat":41.7918,"lng":12.7607,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"078","name":"POLI","lat":41.8899,"lng":12.893,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"105","name":"TOLFA","lat":42.1525,"lng":11.9375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"098","name":"SANT'ANGELO ROMANO","lat":42.0337,"lng":12.7134,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"058","codice_comu_istat":"008","name":"ARCINAZZO ROMANO","lat":41.8808,"lng":13.1153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"006","name":"CORI","lat":41.6426,"lng":12.9157,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"005","name":"CISTERNA DI LATINA","lat":41.5944,"lng":12.8263,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"014","name":"MINTURNO","lat":41.2624,"lng":13.7465,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"019","name":"PRIVERNO","lat":41.4734,"lng":13.1817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"033","name":"VENTOTENE","lat":40.797,"lng":13.4322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"027","name":"SERMONETA","lat":41.5503,"lng":12.986,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"017","name":"PONTINIA","lat":41.408,"lng":13.0445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"020","name":"PROSSEDI","lat":41.5174,"lng":13.2617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"026","name":"SANTI COSMA E DAMIANO","lat":41.301,"lng":13.8139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"021","name":"ROCCAGORGA","lat":41.5263,"lng":13.1561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"003","name":"CAMPODIMELE","lat":41.3872,"lng":13.5322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"013","name":"MAENZA","lat":41.5229,"lng":13.1821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"007","name":"FONDI","lat":41.3552,"lng":13.4324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"023","name":"ROCCASECCA DEI VOLSCI","lat":41.4799,"lng":13.2146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"025","name":"SAN FELICE CIRCEO","lat":41.2356,"lng":13.0963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"002","name":"BASSIANO","lat":41.5505,"lng":13.0322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"032","name":"TERRACINA","lat":41.2912,"lng":13.2489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"029","name":"SONNINO","lat":41.4145,"lng":13.2458,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"028","name":"SEZZE","lat":41.4986,"lng":13.0589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"018","name":"PONZA","lat":40.8945,"lng":12.9664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"012","name":"LENOLA","lat":41.4087,"lng":13.4613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"004","name":"CASTELFORTE","lat":41.3016,"lng":13.8196,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"001","name":"APRILIA","lat":41.5906,"lng":12.6511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"022","name":"ROCCA MASSIMA","lat":41.6803,"lng":12.9203,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"008","name":"FORMIA","lat":41.2564,"lng":13.6059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"016","name":"NORMA","lat":41.5891,"lng":12.9703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"010","name":"ITRI","lat":41.2903,"lng":13.5274,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"031","name":"SPIGNO SATURNIA","lat":41.3053,"lng":13.7341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"024","name":"SABAUDIA","lat":41.2999,"lng":13.0247,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"009","name":"GAETA","lat":41.2141,"lng":13.571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"030","name":"SPERLONGA","lat":41.259,"lng":13.4341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"011","name":"LATINA","lat":41.4676,"lng":12.9037,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"059","codice_comu_istat":"015","name":"MONTE SAN BIAGIO","lat":41.3533,"lng":13.3528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"049","name":"PESCOSOLIDO","lat":41.7492,"lng":13.6575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"018","name":"CASALVIERI","lat":41.6326,"lng":13.7149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"090","name":"VILLA SANTO STEFANO","lat":41.5184,"lng":13.3114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"064","name":"SAN GIOVANNI INCARICO","lat":41.5028,"lng":13.5589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"046","name":"PALIANO","lat":41.806,"lng":13.0579,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"004","name":"ALVITO","lat":41.6919,"lng":13.7415,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"005","name":"AMASENO","lat":41.4689,"lng":13.3371,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"062","name":"SAN DONATO VAL DI COMINO","lat":41.7092,"lng":13.8136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"035","name":"FIUGGI","lat":41.7967,"lng":13.2232,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"045","name":"MOROLO","lat":41.6392,"lng":13.198,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"040","name":"GALLINARO","lat":41.6545,"lng":13.7979,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"027","name":"COLFELICE","lat":41.5559,"lng":13.6044,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"002","name":"ACUTO","lat":41.7925,"lng":13.1753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"047","name":"PASTENA","lat":40.6679,"lng":14.8052,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"068","name":"SANT'ELIA FIUMERAPIDO","lat":41.54,"lng":13.8657,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"033","name":"FERENTINO","lat":41.6927,"lng":13.2534,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"067","name":"SANT'APOLLINARE","lat":44.925,"lng":11.9596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"013","name":"BELMONTE CASTELLO","lat":41.5776,"lng":13.8144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"025","name":"CEPRANO","lat":41.5461,"lng":13.5132,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"022","name":"CASTROCIELO","lat":41.5294,"lng":13.6946,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"037","name":"FONTECHIARI","lat":41.6692,"lng":13.6755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"086","name":"VICALVI","lat":41.678,"lng":13.7075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"088","name":"VILLA LATINA","lat":41.6152,"lng":13.8366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"015","name":"BROCCOSTELLA","lat":41.7092,"lng":13.6455,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"001","name":"ACQUAFONDATA","lat":41.5439,"lng":13.9538,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"055","name":"POFI","lat":41.5664,"lng":13.4156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"006","name":"ANAGNI","lat":41.7422,"lng":13.159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"008","name":"ARCE","lat":41.5877,"lng":13.5745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"078","name":"TORRE CAJETANI","lat":41.7859,"lng":13.2643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"063","name":"SAN GIORGIO A LIRI","lat":41.4052,"lng":13.7624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"085","name":"VEROLI","lat":41.6905,"lng":13.4173,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"087","name":"VICO NEL LAZIO","lat":41.7781,"lng":13.3417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"074","name":"SORA","lat":41.7166,"lng":13.6177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"039","name":"FUMONE","lat":41.7286,"lng":13.2734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"069","name":"SANTOPADRE","lat":41.6038,"lng":13.6348,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"091","name":"VITICUSO","lat":41.5253,"lng":13.9718,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"061","name":"SAN BIAGIO SARACINISCO","lat":41.6133,"lng":13.9292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"032","name":"FALVATERRA","lat":41.5049,"lng":13.5239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"081","name":"TRIVIGLIANO","lat":41.7758,"lng":13.2721,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"084","name":"VALLEROTONDA","lat":41.5519,"lng":13.9112,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"060","name":"ROCCASECCA","lat":41.5524,"lng":13.6681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"030","name":"CORENO AUSONIO","lat":41.3461,"lng":13.7825,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"050","name":"PICINISCO","lat":41.6464,"lng":13.8677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"010","name":"ARPINO","lat":40.8927,"lng":14.3234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"016","name":"CAMPOLI APPENNINO","lat":41.7367,"lng":13.6847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"017","name":"CASALATTICO","lat":41.6228,"lng":13.7259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"038","name":"FROSINONE","lat":41.6401,"lng":13.3519,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"026","name":"CERVARO","lat":42.5822,"lng":13.4757,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"077","name":"TERELLE","lat":41.5529,"lng":13.7769,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"044","name":"MONTE SAN GIOVANNI CAMPANO","lat":41.6401,"lng":13.5154,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"079","name":"TORRICE","lat":41.6302,"lng":13.3974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"073","name":"SGURGOLA","lat":41.6709,"lng":13.149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"089","name":"VILLA SANTA LUCIA","lat":41.5131,"lng":13.7737,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"003","name":"ALATRI","lat":41.7265,"lng":13.3421,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"048","name":"PATRICA","lat":41.5928,"lng":13.2452,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"070","name":"SAN VITTORE DEL LAZIO","lat":41.4625,"lng":13.9338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"071","name":"SERRONE","lat":41.8414,"lng":13.0947,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"054","name":"PIGNATARO INTERAMNA","lat":41.4403,"lng":13.7872,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"066","name":"SANT'ANDREA DEL GARIGLIANO","lat":41.3683,"lng":13.8419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"056","name":"PONTECORVO","lat":41.4569,"lng":13.6664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"009","name":"ARNARA","lat":41.5856,"lng":13.3894,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"014","name":"BOVILLE ERNICA","lat":41.6428,"lng":13.4732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"080","name":"TREVI NEL LAZIO","lat":41.8629,"lng":13.2516,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"036","name":"FONTANA LIRI","lat":41.6112,"lng":13.5515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"031","name":"ESPERIA","lat":41.385,"lng":13.6847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"023","name":"CASTRO DEI VOLSCI","lat":41.5092,"lng":13.4074,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"024","name":"CECCANO","lat":41.5684,"lng":13.3336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"082","name":"VALLECORSA","lat":41.4451,"lng":13.4055,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"083","name":"VALLEMAIO","lat":41.3683,"lng":13.8114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"007","name":"AQUINO","lat":41.4922,"lng":13.7056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"051","name":"PICO","lat":41.4519,"lng":13.5606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"059","name":"ROCCA D'ARCE","lat":41.5872,"lng":13.5854,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"065","name":"SANT'AMBROGIO SUL GARIGLIANO","lat":41.3912,"lng":13.8695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"034","name":"FILETTINO","lat":41.8905,"lng":13.3245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"029","name":"COLLE SAN MAGNO","lat":41.5509,"lng":13.6941,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"058","name":"RIPI","lat":41.6133,"lng":13.4267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"012","name":"AUSONIA","lat":41.3616,"lng":13.7492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"041","name":"GIULIANO DI ROMA","lat":41.5408,"lng":13.2805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"052","name":"PIEDIMONTE SAN GERMANO","lat":41.4973,"lng":13.7499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"021","name":"CASTELNUOVO PARANO","lat":41.3776,"lng":13.7556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"075","name":"STRANGOLAGALLI","lat":41.6007,"lng":13.4951,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"020","name":"CASTELLIRI","lat":41.6793,"lng":13.5515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"028","name":"COLLEPARDO","lat":41.7643,"lng":13.3692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"072","name":"SETTEFRATI","lat":41.6701,"lng":13.8506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"043","name":"ISOLA DEL LIRI","lat":41.6786,"lng":13.5741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"011","name":"ATINA","lat":41.6209,"lng":13.8012,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"053","name":"PIGLIO","lat":41.8302,"lng":13.1461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"057","name":"POSTA FIBRENO","lat":41.6944,"lng":13.6969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"042","name":"GUARCINO","lat":41.8,"lng":13.3144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"019","name":"CASSINO","lat":41.4929,"lng":13.8306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"060","codice_comu_istat":"076","name":"SUPINO","lat":41.609,"lng":13.2262,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"032","name":"CURTI","lat":40.75,"lng":14.92,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"084","name":"SANTA MARIA LA FOSSA","lat":41.0928,"lng":14.1292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"104","name":"SAN MARCO EVANGELISTA","lat":41.0375,"lng":14.3404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"064","name":"PRATELLA","lat":41.4056,"lng":14.1788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"069","name":"ROCCA D'EVANDRO","lat":41.39,"lng":13.9091,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"028","name":"CERVINO","lat":41.0423,"lng":14.4225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"042","name":"GRAZZANISE","lat":41.0908,"lng":14.1028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"039","name":"GALLUCCIO","lat":41.3528,"lng":13.9548,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"031","name":"CONCA DELLA CAMPANIA","lat":41.3318,"lng":13.9908,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"019","name":"CASAL DI PRINCIPE","lat":41.0125,"lng":14.1258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"013","name":"CAPODRISE","lat":41.0453,"lng":14.3046,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"044","name":"LETINO","lat":41.4538,"lng":14.2552,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"029","name":"CESA","lat":40.9655,"lng":14.2311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"061","name":"PONTELATONE","lat":41.1941,"lng":14.2515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"003","name":"ALVIGNANO","lat":41.252,"lng":14.3271,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"089","name":"SPARANISE","lat":41.1878,"lng":14.0947,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"046","name":"LUSCIANO","lat":40.9673,"lng":14.186,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"043","name":"GRICIGNANO DI AVERSA","lat":40.9813,"lng":14.2321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"100","name":"VITULAZIO","lat":41.1639,"lng":14.2166,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"063","name":"PRATA SANNITA","lat":41.4273,"lng":14.1999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"008","name":"CAIANELLO","lat":41.3052,"lng":14.0852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"090","name":"SUCCIVO","lat":40.9691,"lng":14.2566,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"004","name":"ARIENZO","lat":41.022,"lng":14.4937,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"009","name":"CAIAZZO","lat":41.1782,"lng":14.3643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"075","name":"SAN FELICE A CANCELLO","lat":40.9953,"lng":14.421,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"077","name":"SAN MARCELLINO","lat":40.9911,"lng":14.1767,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"055","name":"PASTORANO","lat":41.1819,"lng":14.1992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"081","name":"SAN PRISCO","lat":41.0878,"lng":14.2806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"066","name":"RAVISCANINA","lat":41.3713,"lng":14.2438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"072","name":"ROCCHETTA E CROCE","lat":41.2354,"lng":14.158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"086","name":"SANT'ANGELO D'ALIFE","lat":41.3602,"lng":14.2642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"094","name":"TRENTOLA-DUCENTA","lat":40.9764,"lng":14.1772,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"059","name":"PIETRAVAIRANO","lat":41.3272,"lng":14.1698,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"051","name":"MIGNANO MONTE LUNGO","lat":41.4071,"lng":13.9864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"022","name":"CASERTA","lat":45.8418,"lng":9.3517,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"083","name":"SANTA MARIA CAPUA VETERE","lat":41.08,"lng":14.2566,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"067","name":"RECALE","lat":41.0563,"lng":14.305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"011","name":"CAMIGLIANO","lat":39.548,"lng":16.8524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"096","name":"VALLE AGRICOLA","lat":41.424,"lng":14.2575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"018","name":"CASAGIOVE","lat":41.0758,"lng":14.3088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"091","name":"TEANO","lat":41.2524,"lng":14.0675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"060","name":"PIGNATARO MAGGIORE","lat":41.1919,"lng":14.1733,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"102","name":"CELLOLE","lat":41.206,"lng":13.8553,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"070","name":"ROCCAMONFINA","lat":41.2892,"lng":13.9841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"053","name":"ORTA DI ATELLA","lat":40.9675,"lng":14.2689,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"002","name":"ALIFE","lat":41.3285,"lng":14.3306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"054","name":"PARETE","lat":40.96,"lng":14.1628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"012","name":"CANCELLO ED ARNONE","lat":41.0753,"lng":14.0312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"048","name":"MADDALONI","lat":41.0411,"lng":14.3778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"036","name":"FRANCOLISE","lat":41.186,"lng":14.0574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"038","name":"GALLO MATESE","lat":41.4656,"lng":14.2259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"005","name":"AVERSA","lat":40.9733,"lng":14.2077,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"034","name":"FONTEGRECA","lat":41.4566,"lng":14.1845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"035","name":"FORMICOLA","lat":41.2111,"lng":14.2385,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"062","name":"PORTICO DI CASERTA","lat":41.0575,"lng":14.2803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"056","name":"PIANA DI MONTE VERNA","lat":41.1681,"lng":14.3347,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"007","name":"BELLONA","lat":41.1611,"lng":14.2333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"020","name":"CASALUCE","lat":41.003,"lng":14.1989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"001","name":"AILANO","lat":41.3914,"lng":14.2059,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"021","name":"CASAPULLA","lat":41.075,"lng":14.2887,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"087","name":"SANT'ARPINO","lat":40.9576,"lng":14.253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"040","name":"GIANO VETUSTO","lat":41.1995,"lng":14.1964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"058","name":"PIETRAMELARA","lat":41.2701,"lng":14.1875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"079","name":"SAN PIETRO INFINE","lat":41.4471,"lng":13.9625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"049","name":"MARCIANISE","lat":41.0333,"lng":14.3019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"097","name":"VALLE DI MADDALONI","lat":41.0806,"lng":14.4166,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"027","name":"CASTEL VOLTURNO","lat":41.0337,"lng":13.9417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"082","name":"SANTA MARIA A VICO","lat":41.0322,"lng":14.4674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"065","name":"PRESENZANO","lat":41.3762,"lng":14.0781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"052","name":"MONDRAGONE","lat":41.1152,"lng":13.8946,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"014","name":"CAPRIATI A VOLTURNO","lat":41.4666,"lng":14.1468,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"078","name":"SAN NICOLA LA STRADA","lat":41.0528,"lng":14.3324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"074","name":"SAN CIPRIANO D'AVERSA","lat":40.9999,"lng":14.1327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"098","name":"VILLA DI BRIANO","lat":41.0011,"lng":14.1617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"045","name":"LIBERI","lat":41.2289,"lng":14.2909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"101","name":"FALCIANO DEL MASSICO","lat":41.1638,"lng":13.9491,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"103","name":"CASAPESENNA","lat":40.9918,"lng":14.1362,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"099","name":"VILLA LITERNO","lat":41.0131,"lng":14.0766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"088","name":"SESSA AURUNCA","lat":41.2419,"lng":13.9338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"057","name":"PIEDIMONTE MATESE","lat":41.3549,"lng":14.3705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"015","name":"CAPUA","lat":41.1008,"lng":14.2211,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"037","name":"FRIGNANO","lat":40.9992,"lng":14.18,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"025","name":"CASTELLO DEL MATESE","lat":41.3679,"lng":14.3777,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"023","name":"CASTEL CAMPAGNANO","lat":41.1838,"lng":14.4531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"050","name":"MARZANO APPIO","lat":41.3191,"lng":14.0478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"026","name":"CASTEL MORRONE","lat":41.1218,"lng":14.3554,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"095","name":"VAIRANO PATENORA","lat":41.3378,"lng":14.1322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"047","name":"MACERATA CAMPANIA","lat":41.0644,"lng":14.2747,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"071","name":"ROCCAROMANA","lat":41.2752,"lng":14.2224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"033","name":"DRAGONI","lat":40.2973,"lng":18.139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"030","name":"CIORLANO","lat":41.4507,"lng":14.1589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"073","name":"RUVIANO","lat":41.2109,"lng":14.4097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"024","name":"CASTEL DI SASSO","lat":41.1926,"lng":14.278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"017","name":"CARINOLA","lat":41.1865,"lng":13.9826,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"080","name":"SAN POTITO SANNITICO","lat":41.3408,"lng":14.392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"093","name":"TORA E PICCILLI","lat":41.3403,"lng":14.035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"041","name":"GIOIA SANNITICA","lat":41.3013,"lng":14.445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"076","name":"SAN GREGORIO MATESE","lat":41.3863,"lng":14.3725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"016","name":"CARINARO","lat":40.9839,"lng":14.2206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"085","name":"SAN TAMMARO","lat":41.0747,"lng":14.2286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"010","name":"CALVI RISORTA","lat":41.2193,"lng":14.1293,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"006","name":"BAIA E LATINA","lat":41.2896,"lng":14.2726,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"068","name":"RIARDO","lat":41.2621,"lng":14.1522,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"061","codice_comu_istat":"092","name":"TEVEROLA","lat":40.9967,"lng":14.2086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"020","name":"CASTELVETERE IN VAL FORTORE","lat":41.4424,"lng":14.9401,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"037","name":"GUARDIA SANFRAMONDI","lat":41.2555,"lng":14.5977,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"019","name":"CASTELVENERE","lat":41.2349,"lng":14.5476,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"001","name":"AIROLA","lat":41.0596,"lng":14.5556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"010","name":"BUCCIANO","lat":41.0778,"lng":14.5724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"007","name":"BASELICE","lat":41.3949,"lng":14.9738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"026","name":"CUSANO MUTRI","lat":41.339,"lng":14.5088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"009","name":"BONEA","lat":41.0763,"lng":14.6199,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"013","name":"CAMPOLATTARO","lat":41.2876,"lng":14.7333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"050","name":"PESCO SANNITA","lat":41.2338,"lng":14.8131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"073","name":"SOLOPACA","lat":41.1937,"lng":14.555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"043","name":"MONTESARCHIO","lat":41.0641,"lng":14.6413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"021","name":"CAUTANO","lat":41.1525,"lng":14.645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"070","name":"SANT'AGATA DE' GOTI","lat":41.0903,"lng":14.4985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"040","name":"MOIANO","lat":43.0138,"lng":12.0166,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"067","name":"SAN NICOLA MANFREDI","lat":41.0752,"lng":14.826,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"045","name":"PADULI","lat":41.1652,"lng":14.8811,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"003","name":"APICE","lat":41.1213,"lng":14.9321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"027","name":"DUGENTA","lat":41.1333,"lng":14.4535,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"016","name":"CASTELFRANCO IN MISCANO","lat":41.2997,"lng":15.0846,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"004","name":"APOLLOSA","lat":41.0952,"lng":14.7063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"017","name":"CASTELPAGANO","lat":40.6772,"lng":14.9253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"058","name":"SAN GIORGIO DEL SANNIO","lat":41.0706,"lng":14.8531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"075","name":"TOCCO CAUDIO","lat":41.126,"lng":14.6355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"005","name":"ARPAIA","lat":41.0385,"lng":14.5509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"059","name":"SAN GIORGIO LA MOLARA","lat":41.2741,"lng":14.9313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"035","name":"FRASSO TELESINO","lat":41.1578,"lng":14.5288,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"014","name":"CAMPOLI DEL MONTE TABURNO","lat":41.1321,"lng":14.6466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"048","name":"PAOLISI","lat":41.0381,"lng":14.5774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"002","name":"AMOROSI","lat":41.2042,"lng":14.4649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"071","name":"SANT'ANGELO A CUPOLO","lat":41.0811,"lng":14.8128,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"055","name":"PUGLIANELLO","lat":41.2244,"lng":14.4506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"030","name":"FOGLIANISE","lat":41.1656,"lng":14.6692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"033","name":"FRAGNETO L'ABATE","lat":41.2597,"lng":14.7853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"042","name":"MONTEFALCONE DI VAL FORTORE","lat":41.3258,"lng":15.011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"076","name":"TORRECUSO","lat":41.1905,"lng":14.6803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"077","name":"VITULANO","lat":41.1763,"lng":14.6424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"063","name":"SAN LUPO","lat":41.2597,"lng":14.6351,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"034","name":"FRAGNETO MONFORTE","lat":41.248,"lng":14.7641,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"052","name":"PIETRELCINA","lat":41.1978,"lng":14.8485,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"062","name":"SAN LORENZO MAGGIORE","lat":41.2509,"lng":14.6255,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"054","name":"PONTELANDOLFO","lat":41.288,"lng":14.6907,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"065","name":"SAN MARTINO SANNITA","lat":41.0674,"lng":14.8367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"011","name":"BUONALBERGO","lat":41.2235,"lng":14.9796,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"068","name":"SAN SALVATORE TELESINO","lat":41.235,"lng":14.4975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"036","name":"GINESTRA DEGLI SCHIAVONI","lat":41.2809,"lng":15.0447,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"041","name":"MOLINARA","lat":41.2945,"lng":14.9088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"023","name":"CERRETO SANNITA","lat":41.2833,"lng":14.5559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"069","name":"SANTA CROCE DEL SANNIO","lat":41.3866,"lng":14.7313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"006","name":"ARPAISE","lat":41.0324,"lng":14.7453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"012","name":"CALVI","lat":41.0732,"lng":14.8669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"056","name":"REINO","lat":41.2927,"lng":14.8239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"060","name":"SAN LEUCIO DEL SANNIO","lat":41.0755,"lng":14.7585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"038","name":"LIMATOLA","lat":41.1419,"lng":14.3939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"029","name":"FAICCHIO","lat":41.2787,"lng":14.4794,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"028","name":"DURAZZANO","lat":44.4205,"lng":12.188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"025","name":"COLLE SANNITA","lat":41.3653,"lng":14.8341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"015","name":"CASALDUNI","lat":41.2595,"lng":14.6949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"066","name":"SAN NAZZARO","lat":41.0528,"lng":14.8581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"044","name":"MORCONE","lat":41.3441,"lng":14.6667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"049","name":"PAUPISI","lat":41.1951,"lng":14.6663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"022","name":"CEPPALONI","lat":41.0471,"lng":14.7614,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"061","name":"SAN LORENZELLO","lat":41.277,"lng":14.5427,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"064","name":"SAN MARCO DEI CAVOTI","lat":41.3111,"lng":14.8806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"057","name":"SAN BARTOLOMEO IN GALDO","lat":41.4116,"lng":15.0162,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"053","name":"PONTE","lat":40.4227,"lng":15.5588,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"018","name":"CASTELPOTO","lat":41.1409,"lng":14.7013,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"047","name":"PANNARANO","lat":41.011,"lng":14.7028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"031","name":"FOIANO DI VAL FORTORE","lat":41.3532,"lng":14.9808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"008","name":"BENEVENTO","lat":41.1304,"lng":14.7812,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"074","name":"TELESE TERME","lat":41.2185,"lng":14.5288,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"024","name":"CIRCELLO","lat":41.3561,"lng":14.8099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"051","name":"PIETRAROJA","lat":41.3489,"lng":14.5504,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"046","name":"PAGO VEIANO","lat":41.2489,"lng":14.8724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"039","name":"MELIZZANO","lat":41.1636,"lng":14.5053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"032","name":"FORCHIA","lat":41.0308,"lng":14.5344,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"072","name":"SASSINORO","lat":41.3758,"lng":14.6655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"062","codice_comu_istat":"078","name":"SANT'ARCANGELO TRIMONTE","lat":41.1674,"lng":14.9397,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"005","name":"ARZANO","lat":40.9155,"lng":14.2681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"047","name":"MONTE DI PROCIDA","lat":40.8021,"lng":14.0528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"043","name":"MARIGLIANO","lat":40.9242,"lng":14.4542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"074","name":"SANT'ANTONIO ABATE","lat":40.7228,"lng":14.5429,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"003","name":"AGEROLA","lat":40.6388,"lng":14.5399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"053","name":"PIANO DI SORRENTO","lat":40.6366,"lng":14.407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"030","name":"CRISPANO","lat":40.9547,"lng":14.2862,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"081","name":"STRIANO","lat":40.8171,"lng":14.5775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"051","name":"OTTAVIANO","lat":40.85,"lng":14.483,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"090","name":"SANTA MARIA LA CARITÀ","lat":40.7206,"lng":14.5121,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"052","name":"PALMA CAMPANIA","lat":40.8659,"lng":14.5497,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"071","name":"SANT'AGNELLO","lat":40.6311,"lng":14.3981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"019","name":"CASAMICCIOLA TERME","lat":40.7477,"lng":13.913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"014","name":"CAPRI","lat":40.5509,"lng":14.2429,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"049","name":"NAPOLI","lat":40.8333,"lng":14.25,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"063","codice_comu_istat":"067","name":"SAN GIORGIO A CREMANO","lat":40.8292,"lng":14.3342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"058","name":"POMPEI","lat":40.7492,"lng":14.5007,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"034","name":"GIUGLIANO IN CAMPANIA","lat":40.9286,"lng":14.1972,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"042","name":"MARIGLIANELLA","lat":40.9306,"lng":14.4367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"059","name":"PORTICI","lat":40.8141,"lng":14.339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"010","name":"BRUSCIANO","lat":40.9242,"lng":14.4249,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"024","name":"CASTELLAMMARE DI STABIA","lat":40.696,"lng":14.4817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"085","name":"TUFINO","lat":40.9552,"lng":14.5669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"072","name":"SANT'ANASTASIA","lat":40.868,"lng":14.4058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"066","name":"SAN GENNARO VESUVIANO","lat":40.86,"lng":14.5259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"035","name":"GRAGNANO","lat":40.6925,"lng":14.5138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"027","name":"CICCIANO","lat":40.9623,"lng":14.5373,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"070","name":"SAN SEBASTIANO AL VESUVIO","lat":40.8456,"lng":14.3686,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"088","name":"VISCIANO","lat":40.9255,"lng":14.5813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"055","name":"POGGIOMARINO","lat":40.8042,"lng":14.54,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"018","name":"CASAMARCIANO","lat":40.933,"lng":14.5542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"038","name":"LACCO AMENO","lat":40.7517,"lng":13.8913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"079","name":"SOMMA VESUVIANA","lat":40.8718,"lng":14.4382,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"077","name":"SCISCIANO","lat":40.917,"lng":14.4867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"068","name":"SAN GIUSEPPE VESUVIANO","lat":40.8367,"lng":14.5033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"026","name":"CERCOLA","lat":40.8577,"lng":14.3588,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"061","name":"PROCIDA","lat":40.7618,"lng":14.0234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"001","name":"ACERRA","lat":40.9517,"lng":14.3772,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"041","name":"MARANO DI NAPOLI","lat":40.8981,"lng":14.1948,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"091","name":"TRECASE","lat":40.7705,"lng":14.4388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"084","name":"TORRE DEL GRECO","lat":40.7872,"lng":14.368,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"017","name":"CASALNUOVO DI NAPOLI","lat":40.9103,"lng":14.3467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"057","name":"POMIGLIANO D'ARCO","lat":40.9089,"lng":14.3872,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"008","name":"BOSCOREALE","lat":40.7754,"lng":14.4752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"004","name":"ANACAPRI","lat":40.556,"lng":14.2212,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"080","name":"SORRENTO","lat":40.6263,"lng":14.3757,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"064","name":"ERCOLANO","lat":40.806,"lng":14.3529,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"009","name":"BOSCOTRECASE","lat":40.7753,"lng":14.463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"092","name":"MASSA DI SOMMA","lat":40.8466,"lng":14.3761,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"069","name":"SAN PAOLO BEL SITO","lat":40.916,"lng":14.5477,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"056","name":"POLLENA TROCCHIA","lat":40.8592,"lng":14.3896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"082","name":"TERZIGNO","lat":40.8082,"lng":14.5027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"002","name":"AFRAGOLA","lat":40.921,"lng":14.3072,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"037","name":"ISCHIA","lat":40.7353,"lng":13.9481,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"022","name":"CASOLA DI NAPOLI","lat":40.698,"lng":14.5286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"015","name":"CARBONARA DI NOLA","lat":40.8755,"lng":14.5788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"016","name":"CARDITO","lat":40.9456,"lng":14.2987,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"063","name":"QUARTO","lat":44.9966,"lng":9.6634,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"086","name":"VICO EQUENSE","lat":40.6623,"lng":14.4264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"013","name":"CAMPOSANO","lat":40.9533,"lng":14.5295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"060","name":"POZZUOLI","lat":40.8237,"lng":14.1216,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"039","name":"LETTERE","lat":40.7048,"lng":14.5515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"062","name":"QUALIANO","lat":40.9185,"lng":14.1531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"029","name":"COMIZIANO","lat":40.9536,"lng":14.5479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"011","name":"CAIVANO","lat":40.9581,"lng":14.3081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"021","name":"CASAVATORE","lat":40.9003,"lng":14.2775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"028","name":"CIMITILE","lat":40.9416,"lng":14.5264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"032","name":"FRATTAMAGGIORE","lat":40.9403,"lng":14.275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"054","name":"PIMONTE","lat":40.6747,"lng":14.5108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"089","name":"VOLLA","lat":40.8796,"lng":14.3439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"065","name":"ROCCARAINOLA","lat":40.9705,"lng":14.5608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"045","name":"MELITO DI NAPOLI","lat":40.9216,"lng":14.2309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"050","name":"NOLA","lat":40.9259,"lng":14.5286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"087","name":"VILLARICCA","lat":40.9227,"lng":14.1908,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"083","name":"TORRE ANNUNZIATA","lat":40.7508,"lng":14.4656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"025","name":"CASTELLO DI CISTERNA","lat":40.9152,"lng":14.4084,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"073","name":"SANT'ANTIMO","lat":40.9429,"lng":14.2362,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"036","name":"GRUMO NEVANO","lat":40.9371,"lng":14.2608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"040","name":"LIVERI","lat":40.9039,"lng":14.5634,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"076","name":"SAVIANO","lat":40.9092,"lng":14.5092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"033","name":"FRATTAMINORE","lat":40.9566,"lng":14.2738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"020","name":"CASANDRINO","lat":40.9308,"lng":14.2479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"023","name":"CASORIA","lat":40.9054,"lng":14.2901,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"075","name":"SAN VITALIANO","lat":40.9259,"lng":14.4798,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"031","name":"FORIO","lat":40.7374,"lng":13.8592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"044","name":"MASSA LUBRENSE","lat":40.6108,"lng":14.345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"078","name":"SERRARA FONTANA","lat":40.7184,"lng":13.8968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"046","name":"META","lat":40.6403,"lng":14.4192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"012","name":"CALVIZZANO","lat":40.9066,"lng":14.1864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"048","name":"MUGNANO DI NAPOLI","lat":40.9124,"lng":14.2061,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"007","name":"BARANO D'ISCHIA","lat":40.7153,"lng":13.9105,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"063","codice_comu_istat":"006","name":"BACOLI","lat":40.8013,"lng":14.0798,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"056","name":"MONTEFUSCO","lat":41.0388,"lng":14.856,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"103","name":"SPERONE","lat":40.9536,"lng":14.6063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"066","name":"NUSCO","lat":40.8873,"lng":15.0849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"035","name":"FRIGENTO","lat":41.0124,"lng":15.1006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"041","name":"LACEDONIA","lat":41.0524,"lng":15.4249,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"096","name":"SAVIGNANO IRPINO","lat":41.2279,"lng":15.1809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"019","name":"CARIFE","lat":41.0274,"lng":15.2099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"025","name":"CERVINARA","lat":41.0222,"lng":14.6169,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"042","name":"LAPIO","lat":40.9822,"lng":14.9474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"070","name":"PATERNOPOLI","lat":40.9744,"lng":15.033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"031","name":"DOMICELLA","lat":40.8811,"lng":14.5888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"106","name":"TAURANO","lat":40.8835,"lng":14.6358,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"044","name":"LIONI","lat":40.8775,"lng":15.1888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"076","name":"QUADRELLE","lat":40.9498,"lng":14.6407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"099","name":"SERINO","lat":40.856,"lng":14.8731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"064","name":"MOSCHIANO","lat":40.8742,"lng":14.6569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"043","name":"LAURO","lat":40.8792,"lng":14.6331,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"034","name":"FORINO","lat":40.8638,"lng":14.7371,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"102","name":"SORBO SERPICO","lat":40.9173,"lng":14.8864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"092","name":"SANT'ANGELO DEI LOMBARDI","lat":40.9288,"lng":15.1784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"008","name":"AVELLINO","lat":40.9152,"lng":14.7955,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"060","name":"MONTEVERDE","lat":41.502,"lng":14.488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"023","name":"CASTELFRANCI","lat":40.9324,"lng":15.0442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"101","name":"SOLOFRA","lat":40.8307,"lng":14.8485,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"111","name":"TORRIONI","lat":41.0343,"lng":14.8128,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"010","name":"BAIANO","lat":40.9536,"lng":14.6177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"040","name":"GUARDIA LOMBARDI","lat":40.9549,"lng":15.2099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"065","name":"MUGNANO DEL CARDINALE","lat":40.9441,"lng":14.6366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"006","name":"ATRIPALDA","lat":40.9169,"lng":14.8256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"055","name":"MONTEFREDANE","lat":40.9639,"lng":14.8116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"088","name":"SANTA LUCIA DI SERINO","lat":40.8714,"lng":14.8769,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"058","name":"MONTEMARANO","lat":40.9163,"lng":14.9986,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"080","name":"ROTONDI","lat":41.0325,"lng":14.5959,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"050","name":"MIRABELLA ECLANO","lat":41.0425,"lng":14.9942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"084","name":"SAN MICHELE DI SERINO","lat":40.8767,"lng":14.8556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"059","name":"MONTEMILETTO","lat":41.0128,"lng":14.9083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"002","name":"ALTAVILLA IRPINA","lat":41.0055,"lng":14.7784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"081","name":"SALZA IRPINA","lat":40.9214,"lng":14.8877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"057","name":"MONTELLA","lat":40.8449,"lng":15.0188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"093","name":"SANTA PAOLINA","lat":41.0247,"lng":14.8464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"117","name":"VILLAMAINA","lat":40.9705,"lng":15.0909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"009","name":"BAGNOLI IRPINO","lat":40.8317,"lng":15.0702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"036","name":"GESUALDO","lat":41.0078,"lng":15.0735,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"108","name":"TEORA","lat":40.8539,"lng":15.2542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"038","name":"GROTTAMINARDA","lat":41.0708,"lng":15.0599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"049","name":"MERCOGLIANO","lat":40.9206,"lng":14.7363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"116","name":"VENTICANO","lat":41.0483,"lng":14.9128,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"054","name":"MONTEFORTE IRPINO","lat":40.8911,"lng":14.7135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"071","name":"PETRURO IRPINO","lat":41.0322,"lng":14.7983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"039","name":"GROTTOLELLA","lat":40.9738,"lng":14.788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"113","name":"TUFO","lat":41.0131,"lng":14.8194,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"004","name":"AQUILONIA","lat":40.9878,"lng":15.4753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"029","name":"CONTRADA","lat":40.8671,"lng":14.7799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"048","name":"MELITO IRPINO","lat":41.1042,"lng":15.0533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"045","name":"LUOGOSANO","lat":40.9883,"lng":14.9917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"112","name":"TREVICO","lat":41.0496,"lng":15.2344,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"078","name":"ROCCABASCERANA","lat":41.0179,"lng":14.7159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"032","name":"FLUMERI","lat":41.0789,"lng":15.1488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"072","name":"PIETRADEFUSI","lat":41.0425,"lng":14.8864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"100","name":"SIRIGNANO","lat":40.9511,"lng":14.6311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"028","name":"CHIUSANO DI SAN DOMENICO","lat":40.9342,"lng":14.9174,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"074","name":"PRATA DI PRINCIPATO ULTRA","lat":40.9887,"lng":14.8389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"046","name":"MANOCALZATI","lat":40.9427,"lng":14.8506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"026","name":"CESINALI","lat":40.8981,"lng":14.8288,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"013","name":"CAIRANO","lat":40.8948,"lng":15.3676,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"024","name":"CASTELVETERE SUL CALORE","lat":40.9299,"lng":14.987,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"037","name":"GRECI","lat":39.1628,"lng":16.1336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"012","name":"BONITO","lat":41.0988,"lng":15.0024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"017","name":"CAPOSELE","lat":40.8155,"lng":15.224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"086","name":"SAN POTITO ULTRA","lat":40.9285,"lng":14.8715,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"110","name":"TORRE LE NOCELLE","lat":41.0236,"lng":14.9097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"021","name":"CASSANO IRPINO","lat":40.8714,"lng":15.0269,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"077","name":"QUINDICI","lat":40.8644,"lng":14.6484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"053","name":"MONTEFALCIONE","lat":40.9625,"lng":14.8849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"063","name":"MORRA DE SANCTIS","lat":40.93,"lng":15.2438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"062","name":"MONTORO SUPERIORE","lat":40.818,"lng":14.7999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"083","name":"SAN MARTINO VALLE CAUDINA","lat":41.0267,"lng":14.6655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"014","name":"CALABRITTO","lat":40.7863,"lng":15.2182,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"030","name":"CONZA DELLA CAMPANIA","lat":40.8563,"lng":15.3352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"027","name":"CHIANCHE","lat":41.0469,"lng":14.7895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"075","name":"PRATOLA SERRA","lat":40.9881,"lng":14.8536,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"082","name":"SAN MANGO SUL CALORE","lat":40.9592,"lng":14.9738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"068","name":"PAGO DEL VALLO DI LAURO","lat":40.8963,"lng":14.6057,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"052","name":"MONTECALVO IRPINO","lat":41.1958,"lng":15.0348,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"079","name":"ROCCA SAN FELICE","lat":40.9514,"lng":15.1661,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"087","name":"SAN SOSSIO BARONIA","lat":41.0724,"lng":15.2014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"001","name":"AIELLO DEL SABATO","lat":40.8902,"lng":14.8217,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"003","name":"ANDRETTA","lat":40.9384,"lng":15.3258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"051","name":"MONTAGUTO","lat":41.2495,"lng":15.2492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"120","name":"ZUNGOLI","lat":41.1242,"lng":15.2032,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"098","name":"SENERCHIA","lat":40.7409,"lng":15.2019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"090","name":"SANT'ANGELO ALL'ESCA","lat":41.0077,"lng":14.9939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"020","name":"CASALBORE","lat":41.235,"lng":15.0077,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"022","name":"CASTEL BARONIA","lat":41.0484,"lng":15.1897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"091","name":"SANT'ANGELO A SCALA","lat":40.9764,"lng":14.7403,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"047","name":"MARZANO DI NOLA","lat":40.9038,"lng":14.5849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"005","name":"ARIANO IRPINO","lat":41.1525,"lng":15.0876,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"016","name":"CANDIDA","lat":40.9434,"lng":14.875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"114","name":"VALLATA","lat":41.0334,"lng":15.2531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"105","name":"SUMMONTE","lat":40.9503,"lng":14.7463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"018","name":"CAPRIGLIA IRPINA","lat":40.9614,"lng":14.7781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"107","name":"TAURASI","lat":41.0099,"lng":14.9595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"011","name":"BISACCIA","lat":41.0139,"lng":15.3753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"073","name":"PIETRASTORNINA","lat":40.9935,"lng":14.7299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"095","name":"SANTO STEFANO DEL SOLE","lat":40.8943,"lng":14.8679,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"115","name":"VALLESACCARDA","lat":41.0642,"lng":15.253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"109","name":"TORELLA DEI LOMBARDI","lat":40.9408,"lng":15.1159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"007","name":"AVELLA","lat":40.96,"lng":14.6014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"085","name":"SAN NICOLA BARONIA","lat":41.0595,"lng":15.2,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"119","name":"VOLTURARA IRPINA","lat":40.8795,"lng":14.9172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"089","name":"SANT'ANDREA DI CONZA","lat":40.846,"lng":15.3706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"069","name":"PAROLISE","lat":40.9315,"lng":14.8838,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"061","name":"MONTORO INFERIORE","lat":40.8242,"lng":14.7615,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"015","name":"CALITRI","lat":40.9,"lng":15.4381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"118","name":"VILLANOVA DEL BATTISTA","lat":41.1144,"lng":15.1584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"104","name":"STURNO","lat":41.0213,"lng":15.1113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"097","name":"SCAMPITELLA","lat":41.0935,"lng":15.2997,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"033","name":"FONTANAROSA","lat":41.0186,"lng":15.0211,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"064","codice_comu_istat":"067","name":"OSPEDALETTO D'ALPINOLO","lat":40.9405,"lng":14.7446,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"038","name":"CELLE DI BULGHERIA","lat":40.0958,"lng":15.4042,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"064","name":"LUSTRA","lat":40.2887,"lng":15.0682,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"071","name":"MONTECORICE","lat":40.2336,"lng":14.9844,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"015","name":"BELLOSGUARDO","lat":40.4226,"lng":15.3124,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"035","name":"CASTEL SAN LORENZO","lat":40.4167,"lng":15.2305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"126","name":"SAN RUFO","lat":40.4345,"lng":15.4642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"036","name":"CASTIGLIONE DEL GENOVESI","lat":40.725,"lng":14.8486,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"109","name":"ROFRANO","lat":40.2125,"lng":15.4288,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"047","name":"CORBARA","lat":42.7061,"lng":12.2278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"032","name":"CASTELNUOVO CILENTO","lat":40.2192,"lng":15.178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"123","name":"SAN MAURO CILENTO","lat":40.2289,"lng":15.0445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"139","name":"SERRAMEZZANA","lat":40.2456,"lng":15.0335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"133","name":"SANZA","lat":40.2456,"lng":15.5536,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"101","name":"POSTIGLIONE","lat":40.56,"lng":15.2333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"115","name":"SALENTO","lat":40.2495,"lng":15.1905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"044","name":"CONCA DEI MARINI","lat":40.6179,"lng":14.5702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"057","name":"GIOI","lat":40.2887,"lng":15.2169,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"091","name":"PERDIFUMO","lat":40.2664,"lng":15.018,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"107","name":"ROCCAGLORIOSA","lat":40.1093,"lng":15.4309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"079","name":"NOCERA SUPERIORE","lat":40.7431,"lng":14.6739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"087","name":"PADULA","lat":42.6335,"lng":13.4696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"012","name":"AULETTA","lat":40.5623,"lng":15.4256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"014","name":"BATTIPAGLIA","lat":40.6088,"lng":14.983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"125","name":"SAN PIETRO AL TANAGRO","lat":40.4578,"lng":15.4816,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"017","name":"BUCCINO","lat":40.6339,"lng":15.379,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"013","name":"BARONISSI","lat":40.7488,"lng":14.7717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"005","name":"ALTAVILLA SILENTINA","lat":40.5298,"lng":15.1312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"134","name":"SAPRI","lat":40.0763,"lng":15.6305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"028","name":"CASAL VELINO","lat":40.189,"lng":15.1102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"018","name":"BUONABITACOLO","lat":40.2724,"lng":15.621,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"021","name":"CAMEROTA","lat":40.0298,"lng":15.3728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"081","name":"OGLIASTRO CILENTO","lat":40.3536,"lng":15.0412,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"148","name":"TORRACA","lat":40.1118,"lng":15.6347,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"086","name":"OTTATI","lat":40.4626,"lng":15.317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"043","name":"COLLIANO","lat":40.7261,"lng":15.2906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"149","name":"TORRE ORSAIA","lat":40.1331,"lng":15.4798,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"131","name":"SANTOMENNA","lat":40.8084,"lng":15.3204,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"009","name":"ASCEA","lat":40.1427,"lng":15.1867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"098","name":"POLLICA","lat":40.1913,"lng":15.0575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"156","name":"VIBONATI","lat":40.1002,"lng":15.5824,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"152","name":"TRENTINARA","lat":40.4017,"lng":15.1141,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"075","name":"MONTE SAN GIACOMO","lat":40.3455,"lng":15.5414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"063","name":"LAVIANO","lat":40.787,"lng":15.3106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"136","name":"SASSANO","lat":40.3388,"lng":15.5639,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"051","name":"FELITTO","lat":40.3746,"lng":15.2408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"052","name":"FISCIANO","lat":40.773,"lng":14.7979,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"077","name":"MORIGERATI","lat":40.1406,"lng":15.5558,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"025","name":"CAPACCIO","lat":40.4255,"lng":15.0817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"146","name":"TEGGIANO","lat":40.3803,"lng":15.5414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"088","name":"PAGANI","lat":40.7473,"lng":14.6146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"006","name":"AMALFI","lat":40.6344,"lng":14.6026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"053","name":"FURORE","lat":40.6188,"lng":14.5532,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"093","name":"PERTOSA","lat":40.5447,"lng":15.4499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"056","name":"GIFFONI VALLE PIANA","lat":40.719,"lng":14.9437,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"113","name":"SACCO","lat":46.1167,"lng":9.5567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"145","name":"STIO","lat":40.3109,"lng":15.2534,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"007","name":"ANGRI","lat":40.7345,"lng":14.5717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"083","name":"OLIVETO CITRA","lat":40.6914,"lng":15.231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"070","name":"MONTANO ANTILIA","lat":40.1615,"lng":15.3664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"094","name":"PETINA","lat":40.5331,"lng":15.3744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"147","name":"TORCHIARA","lat":40.3231,"lng":15.0517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"142","name":"SIANO","lat":40.8027,"lng":14.6945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"111","name":"ROSCIGNO","lat":40.4003,"lng":15.3472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"114","name":"SALA CONSILINA","lat":40.3948,"lng":15.5923,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"078","name":"NOCERA INFERIORE","lat":40.7461,"lng":14.6428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"073","name":"MONTECORVINO ROVELLA","lat":40.6928,"lng":14.9789,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"072","name":"MONTECORVINO PUGLIANO","lat":40.6803,"lng":14.9456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"060","name":"LAUREANA CILENTO","lat":40.2994,"lng":15.0474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"089","name":"PALOMONTE","lat":40.6636,"lng":15.2928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"039","name":"CENTOLA","lat":40.0675,"lng":15.3128,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"040","name":"CERASO","lat":40.1953,"lng":15.2571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"154","name":"VALLO DELLA LUCANIA","lat":40.2308,"lng":15.2667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"034","name":"CASTEL SAN GIORGIO","lat":40.7849,"lng":14.6999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"106","name":"ROCCADASPIDE","lat":40.4264,"lng":15.193,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"129","name":"SANT'ARSENIO","lat":40.4748,"lng":15.4865,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"151","name":"TRAMONTI","lat":40.6951,"lng":14.6409,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"124","name":"SAN MAURO LA BRUCA","lat":40.1224,"lng":15.2881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"096","name":"PISCIOTTA","lat":40.109,"lng":15.2336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"020","name":"CALVANICO","lat":40.7763,"lng":14.8289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"130","name":"SANT'EGIDIO DEL MONTE ALBINO","lat":40.7326,"lng":14.602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"110","name":"ROMAGNANO AL MONTE","lat":40.6284,"lng":15.4572,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"138","name":"SCALA","lat":40.6567,"lng":14.6084,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"103","name":"PRIGNANO CILENTO","lat":40.3309,"lng":15.0683,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"097","name":"POLLA","lat":40.5181,"lng":15.4989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"102","name":"PRAIANO","lat":40.6118,"lng":14.524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"150","name":"TORTORELLA","lat":40.1426,"lng":15.6065,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"062","name":"LAURITO","lat":40.1684,"lng":15.405,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"068","name":"MINORI","lat":40.6507,"lng":14.6261,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"023","name":"CAMPORA","lat":40.3064,"lng":15.2933,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"049","name":"CUCCARO VETERE","lat":40.161,"lng":15.3081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"128","name":"SANT'ANGELO A FASANELLA","lat":40.4578,"lng":15.3424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"076","name":"MONTESANO SULLA MARCELLANA","lat":40.2763,"lng":15.7023,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"105","name":"RICIGLIANO","lat":40.6683,"lng":15.4794,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"135","name":"SARNO","lat":40.8118,"lng":14.6196,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"061","name":"LAURINO","lat":40.3375,"lng":15.3376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"046","name":"CONTURSI TERME","lat":40.6501,"lng":15.2374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"030","name":"CASTELCIVITA","lat":40.4945,"lng":15.233,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"140","name":"SERRE","lat":40.5836,"lng":15.1864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"116","name":"SALERNO","lat":40.6833,"lng":14.7833,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"048","name":"CORLETO MONFORTE","lat":40.4383,"lng":15.3805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"067","name":"MERCATO SAN SEVERINO","lat":40.7824,"lng":14.7578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"016","name":"BRACIGLIANO","lat":40.8245,"lng":14.7064,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"037","name":"CAVA DE' TIRRENI","lat":40.7021,"lng":14.7066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"085","name":"ORRIA","lat":40.3008,"lng":15.172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"121","name":"SAN MANGO PIEMONTE","lat":40.703,"lng":14.8347,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"100","name":"POSITANO","lat":40.6299,"lng":14.4863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"095","name":"PIAGGINE","lat":40.346,"lng":15.3795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"050","name":"EBOLI","lat":40.6153,"lng":15.0588,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"084","name":"OMIGNANO","lat":40.249,"lng":15.0856,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"042","name":"CICERALE","lat":40.3435,"lng":15.1305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"112","name":"RUTINO","lat":40.3,"lng":15.0733,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"033","name":"CASTELNUOVO DI CONZA","lat":40.8217,"lng":15.3197,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"027","name":"CASALETTO SPARTANO","lat":40.1517,"lng":15.6195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"119","name":"SAN GIOVANNI A PIRO","lat":40.0514,"lng":15.4519,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"120","name":"SAN GREGORIO MAGNO","lat":40.6591,"lng":15.4028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"132","name":"SAN VALENTINO TORIO","lat":40.7937,"lng":14.6018,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"019","name":"CAGGIANO","lat":40.5689,"lng":15.4942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"069","name":"MOIO DELLA CIVITELLA","lat":40.2464,"lng":15.2688,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"155","name":"VALVA","lat":40.7392,"lng":15.2703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"024","name":"CANNALONGA","lat":40.2444,"lng":15.2933,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"026","name":"CASALBUONO","lat":40.2153,"lng":15.6889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"010","name":"ATENA LUCANA","lat":40.4543,"lng":15.5561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"092","name":"PERITO","lat":40.2962,"lng":15.1441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"127","name":"SANTA MARINA","lat":40.1057,"lng":15.5401,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"099","name":"PONTECAGNANO FAIANO","lat":40.6465,"lng":14.8716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"122","name":"SAN MARZANO SUL SARNO","lat":40.7766,"lng":14.5862,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"090","name":"PELLEZZANO","lat":40.7262,"lng":14.7584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"104","name":"RAVELLO","lat":40.6493,"lng":14.6115,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"059","name":"ISPANI","lat":40.088,"lng":15.5581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"054","name":"FUTANI","lat":40.1513,"lng":15.3227,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"008","name":"AQUARA","lat":40.445,"lng":15.2549,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"031","name":"CASTELLABATE","lat":40.2826,"lng":14.9574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"011","name":"ATRANI","lat":40.6361,"lng":14.6089,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"029","name":"CASELLE IN PITTARI","lat":40.1733,"lng":15.5468,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"137","name":"SCAFATI","lat":40.7506,"lng":14.5276,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"045","name":"CONTRONE","lat":40.5093,"lng":15.2046,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"065","name":"MAGLIANO VETERE","lat":40.3479,"lng":15.2371,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"108","name":"ROCCAPIEMONTE","lat":40.7617,"lng":14.6936,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"117","name":"SALVITELLE","lat":40.5921,"lng":15.4598,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"066","name":"MAIORI","lat":40.6484,"lng":14.6404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"001","name":"ACERNO","lat":40.7388,"lng":15.0578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"058","name":"GIUNGANO","lat":40.3958,"lng":15.1081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"143","name":"SICIGNANO DEGLI ALBURNI","lat":40.5605,"lng":15.3044,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"082","name":"OLEVANO SUL TUSCIANO","lat":40.6505,"lng":15.0206,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"080","name":"NOVI VELIA","lat":40.225,"lng":15.2875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"153","name":"VALLE DELL'ANGELO","lat":40.3443,"lng":15.3699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"074","name":"MONTEFORTE CILENTO","lat":40.366,"lng":15.1958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"157","name":"VIETRI SUL MARE","lat":40.6729,"lng":14.7281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"158","name":"BELLIZZI","lat":40.621,"lng":14.9478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"055","name":"GIFFONI SEI CASALI","lat":40.7279,"lng":14.8917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"022","name":"CAMPAGNA","lat":40.6633,"lng":15.1064,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"003","name":"ALBANELLA","lat":40.48,"lng":15.1172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"002","name":"AGROPOLI","lat":40.3506,"lng":14.9895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"118","name":"SAN CIPRIANO PICENTINO","lat":40.7192,"lng":14.8709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"041","name":"CETARA","lat":40.6477,"lng":14.7006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"144","name":"STELLA CILENTO","lat":40.2328,"lng":15.0938,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"004","name":"ALFANO","lat":40.1757,"lng":15.4244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"065","codice_comu_istat":"141","name":"SESSA CILENTO","lat":40.2602,"lng":15.0756,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"001","name":"ACCIANO","lat":42.1764,"lng":13.7169,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"088","name":"SAN PIO DELLE CAMERE","lat":42.2849,"lng":13.6585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"038","name":"COLLARMELE","lat":42.0604,"lng":13.6265,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"083","name":"ROCCA PIA","lat":41.9345,"lng":13.9775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"087","name":"SAN DEMETRIO NE' VESTINI","lat":42.288,"lng":13.5582,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"025","name":"CARSOLI","lat":42.0995,"lng":13.0869,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"047","name":"GORIANO SICOLI","lat":42.0819,"lng":13.7758,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"070","name":"PESCOCOSTANZO","lat":41.8886,"lng":14.0643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"003","name":"ALFEDENA","lat":41.7342,"lng":14.0325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"005","name":"ATELETA","lat":41.8548,"lng":14.2014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"033","name":"CERCHIO","lat":42.0647,"lng":13.6019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"085","name":"SAN BENEDETTO DEI MARSI","lat":42.004,"lng":13.6194,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"074","name":"PRATA D'ANSIDONIA","lat":42.2786,"lng":13.6065,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"041","name":"CORFINIO","lat":42.1238,"lng":13.8422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"081","name":"ROCCA DI CAMBIO","lat":42.2372,"lng":13.49,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"061","name":"OPI","lat":41.781,"lng":13.8297,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"042","name":"FAGNANO ALTO","lat":42.2541,"lng":13.575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"009","name":"BARISCIANO","lat":42.3255,"lng":13.5935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"010","name":"BARREA","lat":41.7552,"lng":13.992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"100","name":"TIONE DEGLI ABRUZZI","lat":42.203,"lng":13.6353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"036","name":"CIVITELLA ROVETO","lat":41.9137,"lng":13.4275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"072","name":"PIZZOLI","lat":42.4323,"lng":13.3128,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"015","name":"CAMPO DI GIOVE","lat":42.0112,"lng":14.0349,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"063","name":"ORTONA DEI MARSI","lat":41.9978,"lng":13.7292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"055","name":"MOLINA ATERNO","lat":42.15,"lng":13.7364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"094","name":"SCONTRONE","lat":41.7472,"lng":14.0396,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"023","name":"CAPPADOCIA","lat":42.0058,"lng":13.2801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"082","name":"ROCCA DI MEZZO","lat":42.2058,"lng":13.5203,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"103","name":"VILLALAGO","lat":41.9353,"lng":13.8381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"053","name":"MAGLIANO DE' MARSI","lat":42.0925,"lng":13.3649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"086","name":"SAN BENEDETTO IN PERILLIS","lat":42.1845,"lng":13.7713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"075","name":"PRATOLA PELIGNA","lat":42.0994,"lng":13.8749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"077","name":"RAIANO","lat":42.1026,"lng":13.8148,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"018","name":"CANSANO","lat":42.0055,"lng":14.0128,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"105","name":"VILLA SANT'ANGELO","lat":42.2714,"lng":13.5381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"028","name":"CASTEL DI SANGRO","lat":41.7843,"lng":14.1083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"097","name":"SECINARO","lat":42.1538,"lng":13.6803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"014","name":"CALASCIO","lat":42.3266,"lng":13.6981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"034","name":"CIVITA D'ANTINO","lat":41.8862,"lng":13.4699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"065","name":"OVINDOLI","lat":42.1381,"lng":13.517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"051","name":"LUCO DEI MARSI","lat":41.9581,"lng":13.4745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"004","name":"ANVERSA DEGLI ABRUZZI","lat":41.9949,"lng":13.8049,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"016","name":"CAMPOTOSTO","lat":42.5599,"lng":13.3679,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"045","name":"GAGLIANO ATERNO","lat":42.1275,"lng":13.7009,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"089","name":"SANTE MARIE","lat":42.1011,"lng":13.2054,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"049","name":"L'AQUILA","lat":42.3507,"lng":13.3999,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"066","codice_comu_istat":"101","name":"TORNIMPARTE","lat":42.2985,"lng":13.2968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"019","name":"CAPESTRANO","lat":42.2686,"lng":13.7661,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"066","name":"PACENTRO","lat":42.0518,"lng":13.9924,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"107","name":"VILLETTA BARREA","lat":41.7757,"lng":13.9343,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"022","name":"CAPORCIANO","lat":42.2511,"lng":13.6747,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"104","name":"VILLA SANTA LUCIA DEGLI ABRUZZI","lat":42.3342,"lng":13.778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"067","name":"PERETO","lat":42.0591,"lng":13.1006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"050","name":"LECCE NEI MARSI","lat":41.93,"lng":13.6821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"069","name":"PESCINA","lat":42.0263,"lng":13.6596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"092","name":"SAN VINCENZO VALLE ROVETO","lat":41.8336,"lng":13.5234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"027","name":"CASTEL DI IERI","lat":42.1156,"lng":13.7427,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"039","name":"COLLELONGO","lat":41.8865,"lng":13.5844,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"071","name":"PETTORANO SUL GIZIO","lat":41.9756,"lng":13.9597,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"043","name":"FONTECCHIO","lat":42.2318,"lng":13.605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"102","name":"TRASACCO","lat":41.958,"lng":13.5355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"002","name":"AIELLI","lat":42.0819,"lng":13.5916,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"021","name":"CAPITIGNANO","lat":40.7195,"lng":14.9056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"013","name":"CAGNANO AMITERNO","lat":42.4523,"lng":13.2248,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"031","name":"CASTELVECCHIO SUBEQUO","lat":42.1306,"lng":13.7306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"048","name":"INTRODACQUA","lat":42.0084,"lng":13.8992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"057","name":"MORINO","lat":41.8649,"lng":13.457,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"032","name":"CELANO","lat":42.0866,"lng":13.5408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"059","name":"OCRE","lat":42.2871,"lng":13.4763,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"090","name":"SANT'EUSANIO FORCONESE","lat":42.2889,"lng":13.5253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"099","name":"TAGLIACOZZO","lat":42.0689,"lng":13.257,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"026","name":"CASTEL DEL MONTE","lat":42.3645,"lng":13.7258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"030","name":"CASTELVECCHIO CALVISIO","lat":42.3106,"lng":13.6885,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"078","name":"RIVISONDOLI","lat":41.8707,"lng":14.0664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"007","name":"BALSORANO","lat":41.811,"lng":13.5608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"035","name":"CIVITELLA ALFEDENA","lat":41.7664,"lng":13.9438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"017","name":"CANISTRO","lat":41.9416,"lng":13.4134,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"108","name":"VITTORITO","lat":42.1282,"lng":13.8177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"064","name":"ORTUCCHIO","lat":41.9561,"lng":13.6467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"073","name":"POGGIO PICENZE","lat":42.3217,"lng":13.542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"060","name":"OFENA","lat":42.3269,"lng":13.7597,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"052","name":"LUCOLI","lat":42.2921,"lng":13.3389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"076","name":"PREZZA","lat":42.0582,"lng":13.8334,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"098","name":"SULMONA","lat":42.0468,"lng":13.9256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"084","name":"ROCCARASO","lat":41.8477,"lng":14.0799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"058","name":"NAVELLI","lat":42.2377,"lng":13.7278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"037","name":"COCULLO","lat":42.0338,"lng":13.7748,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"011","name":"BISEGNA","lat":41.9222,"lng":13.7586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"012","name":"BUGNARA","lat":42.0222,"lng":13.8587,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"054","name":"MASSA D'ALBE","lat":42.0799,"lng":13.409,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"079","name":"ROCCACASALE","lat":42.124,"lng":13.8866,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"040","name":"COLLEPIETRO","lat":42.2211,"lng":13.7787,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"095","name":"SCOPPITO","lat":42.3722,"lng":13.2559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"029","name":"CASTELLAFIUME","lat":41.9894,"lng":13.3343,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"046","name":"GIOIA DEI MARSI","lat":41.9561,"lng":13.6841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"096","name":"SCURCOLA MARSICANA","lat":42.0632,"lng":13.3395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"006","name":"AVEZZANO","lat":42.0284,"lng":13.4256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"056","name":"MONTEREALE","lat":42.5241,"lng":13.245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"093","name":"SCANNO","lat":41.9017,"lng":13.8827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"080","name":"ROCCA DI BOTTE","lat":42.0252,"lng":13.0691,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"062","name":"ORICOLA","lat":42.05,"lng":13.0406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"106","name":"VILLAVALLELONGA","lat":41.8666,"lng":13.6266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"020","name":"CAPISTRELLO","lat":41.9657,"lng":13.3898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"044","name":"FOSSA","lat":44.9233,"lng":11.0289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"008","name":"BARETE","lat":42.4491,"lng":13.2832,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"068","name":"PESCASSEROLI","lat":41.8082,"lng":13.7896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"024","name":"CARAPELLE CALVISIO","lat":42.2996,"lng":13.6825,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"066","codice_comu_istat":"091","name":"SANTO STEFANO DI SESSANIO","lat":42.3442,"lng":13.6431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"005","name":"BASCIANO","lat":42.5949,"lng":13.7411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"013","name":"CASTIGLIONE MESSER RAIMONDO","lat":42.5326,"lng":13.8795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"029","name":"MORRO D'ORO","lat":42.6636,"lng":13.921,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"003","name":"ARSITA","lat":42.5024,"lng":13.7846,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"019","name":"COLONNELLA","lat":42.8722,"lng":13.8672,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"009","name":"CANZANO","lat":42.6467,"lng":13.805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"006","name":"BELLANTE","lat":42.7449,"lng":13.804,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"014","name":"CASTILENTI","lat":42.5336,"lng":13.9177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"031","name":"NERETO","lat":42.82,"lng":13.8171,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"039","name":"SANT'OMERO","lat":42.7919,"lng":13.7876,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"028","name":"MONTORIO AL VOMANO","lat":42.5832,"lng":13.6328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"036","name":"ROCCA SANTA MARIA","lat":42.6871,"lng":13.5275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"012","name":"CASTELLI","lat":42.4891,"lng":13.7118,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"038","name":"SANT'EGIDIO ALLA VIBRATA","lat":42.8239,"lng":13.714,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"023","name":"CROGNALETO","lat":42.5876,"lng":13.4892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"022","name":"CORTINO","lat":42.6322,"lng":13.5418,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"042","name":"TORANO NUOVO","lat":42.8241,"lng":13.7783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"047","name":"MARTINSICURO","lat":42.8847,"lng":13.9155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"033","name":"PENNA SANT'ANDREA","lat":42.5943,"lng":13.7721,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"040","name":"SILVI","lat":42.5467,"lng":14.123,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"021","name":"CORROPOLI","lat":42.8305,"lng":13.833,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"045","name":"TOSSICIA","lat":42.5455,"lng":13.648,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"001","name":"ALBA ADRIATICA","lat":42.8318,"lng":13.926,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"037","name":"ROSETO DEGLI ABRUZZI","lat":42.6752,"lng":14.0161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"024","name":"FANO ADRIANO","lat":42.5532,"lng":13.5363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"004","name":"ATRI","lat":42.5802,"lng":13.981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"002","name":"ANCARANO","lat":42.837,"lng":13.7407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"008","name":"CAMPLI","lat":42.7295,"lng":13.6933,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"027","name":"MONTEFINO","lat":42.5456,"lng":13.8847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"011","name":"CASTELLALTO","lat":42.6787,"lng":13.8232,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"035","name":"PINETO","lat":42.612,"lng":14.063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"041","name":"TERAMO","lat":42.6613,"lng":13.6985,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"018","name":"COLLEDARA","lat":42.5407,"lng":13.6794,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"017","name":"CIVITELLA DEL TRONTO","lat":42.7724,"lng":13.667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"034","name":"PIETRACAMELA","lat":42.523,"lng":13.5534,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"032","name":"NOTARESCO","lat":42.6593,"lng":13.8926,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"046","name":"VALLE CASTELLANA","lat":42.7367,"lng":13.4969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"026","name":"ISOLA DEL GRAN SASSO D'ITALIA","lat":42.5025,"lng":13.6609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"007","name":"BISENTI","lat":42.5284,"lng":13.8011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"043","name":"TORRICELLA SICURA","lat":42.6583,"lng":13.656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"010","name":"CASTEL CASTAGNA","lat":42.5439,"lng":13.7174,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"020","name":"CONTROGUERRA","lat":42.8556,"lng":13.8186,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"015","name":"CELLINO ATTANASIO","lat":42.5863,"lng":13.8578,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"025","name":"GIULIANOVA","lat":42.7526,"lng":13.9624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"030","name":"MOSCIANO SANT'ANGELO","lat":42.7492,"lng":13.8885,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"044","name":"TORTORETO","lat":42.8044,"lng":13.913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"067","codice_comu_istat":"016","name":"CERMIGNANO","lat":42.5927,"lng":13.7969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"002","name":"ALANNO","lat":42.2949,"lng":13.9717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"012","name":"CITTÀ SANT'ANGELO","lat":42.5192,"lng":14.0602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"030","name":"PIANELLA","lat":43.3538,"lng":11.4155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"036","name":"SALLE","lat":42.178,"lng":13.9622,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"005","name":"BUSSI SUL TIRINO","lat":42.2126,"lng":13.8248,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"039","name":"SCAFA","lat":42.2669,"lng":13.9966,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"001","name":"ABBATEGGIO","lat":42.2245,"lng":14.0136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"032","name":"PIETRANICO","lat":42.2774,"lng":13.9114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"041","name":"SPOLTORE","lat":42.4546,"lng":14.1421,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"023","name":"MONTEBELLO DI BERTONA","lat":42.4185,"lng":13.8731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"013","name":"CIVITAQUANA","lat":42.3256,"lng":13.9024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"026","name":"NOCCIANO","lat":42.3341,"lng":13.985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"006","name":"CAPPELLE SUL TAVO","lat":42.465,"lng":14.1032,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"031","name":"PICCIANO","lat":42.4762,"lng":13.9901,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"021","name":"LORETO APRUTINO","lat":42.4367,"lng":13.9837,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"020","name":"LETTOMANOPPELLO","lat":42.2436,"lng":14.0359,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"033","name":"POPOLI","lat":42.1709,"lng":13.8317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"044","name":"TURRIVALIGNANI","lat":42.2617,"lng":14.0261,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"046","name":"VILLA CELIERA","lat":42.3828,"lng":13.8595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"003","name":"BOLOGNANO","lat":45.9136,"lng":10.9041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"029","name":"PESCOSANSONESCO","lat":42.2551,"lng":13.8844,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"010","name":"CATIGNANO","lat":42.347,"lng":13.9524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"040","name":"SERRAMONACESCA","lat":42.2456,"lng":14.0928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"016","name":"CORVARA","lat":42.2756,"lng":13.8739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"027","name":"PENNE","lat":42.4576,"lng":13.9275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"043","name":"TORRE DE' PASSERI","lat":42.2442,"lng":13.9342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"025","name":"MOSCUFO","lat":42.4274,"lng":14.0544,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"004","name":"BRITTOLI","lat":42.3185,"lng":13.8625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"018","name":"ELICE","lat":42.5214,"lng":13.9703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"022","name":"MANOPPELLO","lat":42.2588,"lng":14.0609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"038","name":"SAN VALENTINO IN ABRUZZO CITERIORE","lat":42.2341,"lng":13.9866,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"019","name":"FARINDOLA","lat":42.4423,"lng":13.8231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"037","name":"SANT'EUFEMIA A MAIELLA","lat":42.1272,"lng":14.0265,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"034","name":"ROCCAMORICE","lat":42.2155,"lng":14.0244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"024","name":"MONTESILVANO","lat":42.5051,"lng":14.1389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"009","name":"CASTIGLIONE A CASAURIA","lat":42.2361,"lng":13.8974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"045","name":"VICOLI","lat":42.3416,"lng":13.8973,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"011","name":"CEPAGATTI","lat":42.3659,"lng":14.0767,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"015","name":"COLLECORVINO","lat":42.46,"lng":14.0163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"007","name":"CARAMANICO TERME","lat":42.1573,"lng":14.0029,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"028","name":"PESCARA","lat":42.4667,"lng":14.2167,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"035","name":"ROSCIANO","lat":42.325,"lng":14.0472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"014","name":"CIVITELLA CASANOVA","lat":42.3645,"lng":13.8857,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"042","name":"TOCCO DA CASAURIA","lat":42.2149,"lng":13.9146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"017","name":"CUGNOLI","lat":42.3081,"lng":13.9338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"068","codice_comu_istat":"008","name":"CARPINETO DELLA NORA","lat":42.3341,"lng":13.8617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"102","name":"VILLA SANTA MARIA","lat":41.9487,"lng":14.3493,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"055","name":"MONTEODORISIO","lat":42.087,"lng":14.6533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"001","name":"ALTINO","lat":42.1024,"lng":14.3307,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"066","name":"PIZZOFERRATO","lat":41.9225,"lng":14.2367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"074","name":"ROCCA SAN GIOVANNI","lat":42.247,"lng":14.4625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"045","name":"LAMA DEI PELIGNI","lat":42.0425,"lng":14.1872,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"048","name":"LETTOPALENA","lat":42.0016,"lng":14.1597,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"020","name":"CASTIGLIONE MESSER MARINO","lat":41.8667,"lng":14.4509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"015","name":"CASALBORDINO","lat":42.1501,"lng":14.5845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"073","name":"ROCCAMONTEPIANO","lat":42.2431,"lng":14.1287,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"094","name":"TORREVECCHIA TEATINA","lat":42.3837,"lng":14.2144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"088","name":"SCHIAVI DI ABRUZZO","lat":41.816,"lng":14.4847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"091","name":"TORINO DI SANGRO","lat":42.1892,"lng":14.5417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"059","name":"PAGLIETA","lat":42.1641,"lng":14.4983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"033","name":"FOSSACESIA","lat":42.2433,"lng":14.4804,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"051","name":"MONTAZZOLI","lat":41.9478,"lng":14.4292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"035","name":"FRANCAVILLA AL MARE","lat":42.4215,"lng":14.2873,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"098","name":"VACRI","lat":42.2978,"lng":14.2327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"103","name":"PIETRAFERRAZZANA","lat":41.9699,"lng":14.375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"053","name":"MONTELAPIANO","lat":41.9632,"lng":14.3426,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"078","name":"ROSELLO","lat":41.9019,"lng":14.3508,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"057","name":"ORSOGNA","lat":42.22,"lng":14.28,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"089","name":"TARANTA PELIGNA","lat":42.0186,"lng":14.1694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"086","name":"SAN VITO CHIETINO","lat":42.297,"lng":14.4455,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"049","name":"LISCIA","lat":41.9543,"lng":14.5582,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"011","name":"CARPINETO SINELLO","lat":42.0107,"lng":14.5043,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"027","name":"CRECCHIO","lat":42.29,"lng":14.3232,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"047","name":"LENTELLA","lat":41.9972,"lng":14.6763,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"068","name":"POLLUTRI","lat":42.1392,"lng":14.5929,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"063","name":"PENNADOMO","lat":42.006,"lng":14.3253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"028","name":"CUPELLO","lat":42.0718,"lng":14.6742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"062","name":"PALOMBARO","lat":42.1272,"lng":14.2304,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"005","name":"ATESSA","lat":42.0667,"lng":14.4461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"076","name":"ROCCASPINALVETI","lat":41.937,"lng":14.4703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"101","name":"VILLAMAGNA","lat":43.481,"lng":10.8363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"026","name":"COLLEDIMEZZO","lat":41.9873,"lng":14.3873,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"024","name":"CIVITELLA MESSER RAIMONDO","lat":42.0883,"lng":14.2162,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"009","name":"MONTEBELLO SUL SANGRO","lat":41.9877,"lng":14.325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"070","name":"QUADRI","lat":41.9259,"lng":14.2892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"003","name":"ARI","lat":42.2934,"lng":14.264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"017","name":"CASOLI","lat":42.6171,"lng":13.9797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"072","name":"RIPA TEATINA","lat":42.3597,"lng":14.235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"081","name":"SAN GIOVANNI TEATINO","lat":42.4102,"lng":14.2022,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"021","name":"CELENZA SUL TRIGNO","lat":41.8723,"lng":14.5804,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"064","name":"PENNAPIEDIMONTE","lat":42.1547,"lng":14.1948,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"082","name":"SAN MARTINO SULLA MARRUCINA","lat":42.226,"lng":14.2141,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"058","name":"ORTONA","lat":42.3569,"lng":14.4052,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"030","name":"FARA FILIORUM PETRI","lat":42.2499,"lng":14.186,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"022","name":"CHIETI","lat":42.3518,"lng":14.1672,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"002","name":"ARCHI","lat":38.1497,"lng":15.66,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"087","name":"SCERNI","lat":42.1031,"lng":14.5702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"052","name":"MONTEFERRANTE","lat":41.9559,"lng":14.3877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"012","name":"CARUNCHIO","lat":41.919,"lng":14.525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"038","name":"FURCI","lat":42.01,"lng":14.5892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"100","name":"VILLALFONSINA","lat":42.161,"lng":14.5711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"093","name":"TORREBRUNA","lat":41.8693,"lng":14.5406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"056","name":"MOZZAGROGNA","lat":42.2116,"lng":14.4458,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"084","name":"SANTA MARIA IMBARO","lat":42.218,"lng":14.4493,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"025","name":"COLLEDIMACINE","lat":42.0058,"lng":14.2024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"006","name":"BOMBA","lat":42.0353,"lng":14.3681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"034","name":"FRAINE","lat":41.9064,"lng":14.4874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"075","name":"ROCCASCALEGNA","lat":42.0636,"lng":14.3078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"042","name":"GIULIANO TEATINO","lat":42.3043,"lng":14.2858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"023","name":"CIVITALUPARELLA","lat":41.9451,"lng":14.3029,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"077","name":"ROIO DEL SANGRO","lat":41.9117,"lng":14.3727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"039","name":"GAMBERALE","lat":41.9048,"lng":14.2093,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"069","name":"PRETORO","lat":42.2188,"lng":14.1428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"060","name":"PALENA","lat":41.9841,"lng":14.1388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"010","name":"CANOSA SANNITA","lat":42.2998,"lng":14.3063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"029","name":"DOGLIOLA","lat":41.9421,"lng":14.636,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"071","name":"RAPINO","lat":42.2103,"lng":14.1863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"037","name":"FRISA","lat":42.2639,"lng":14.3708,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"032","name":"FILETTO","lat":44.3353,"lng":12.0724,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"031","name":"FARA SAN MARTINO","lat":42.091,"lng":14.204,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"104","name":"FALLO","lat":41.9388,"lng":14.3247,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"061","name":"PALMOLI","lat":41.9394,"lng":14.5816,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"018","name":"CASTEL FRENTANO","lat":42.1981,"lng":14.3563,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"004","name":"ARIELLI","lat":42.2632,"lng":14.3073,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"090","name":"TOLLO","lat":42.3489,"lng":14.3191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"097","name":"TUFILLO","lat":41.9183,"lng":14.6248,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"092","name":"TORNARECCIO","lat":42.0392,"lng":14.417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"079","name":"SAN BUONO","lat":41.9818,"lng":14.5707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"067","name":"POGGIOFIORITO","lat":42.2559,"lng":14.3233,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"085","name":"SANT'EUSANIO DEL SANGRO","lat":42.17,"lng":14.3281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"046","name":"LANCIANO","lat":42.2332,"lng":14.3914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"040","name":"GESSOPALENA","lat":42.0577,"lng":14.2741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"099","name":"VASTO","lat":42.1127,"lng":14.7096,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"043","name":"GUARDIAGRELE","lat":42.1905,"lng":14.2224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"065","name":"PERANO","lat":42.1042,"lng":14.395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"013","name":"CASACANDITELLA","lat":42.2484,"lng":14.2003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"014","name":"CASALANGUIDA","lat":42.0369,"lng":14.5,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"080","name":"SAN GIOVANNI LIPIONI","lat":41.8462,"lng":14.5611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"083","name":"SAN SALVO","lat":42.0447,"lng":14.731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"041","name":"GISSI","lat":42.022,"lng":14.5462,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"044","name":"GUILMI","lat":41.997,"lng":14.4764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"019","name":"CASTELGUIDONE","lat":41.8238,"lng":14.5228,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"036","name":"FRESAGRANDINARIA","lat":41.9754,"lng":14.6628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"095","name":"TORRICELLA PELIGNA","lat":42.0248,"lng":14.2596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"054","name":"MONTENERODOMO","lat":41.9771,"lng":14.2521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"050","name":"MIGLIANICO","lat":42.3594,"lng":14.2925,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"016","name":"CASALINCONTRADA","lat":42.2978,"lng":14.136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"008","name":"BUCCHIANICO","lat":42.3059,"lng":14.1827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"096","name":"TREGLIO","lat":42.2691,"lng":14.4261,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"069","codice_comu_istat":"007","name":"BORRELLO","lat":41.92,"lng":14.3053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"076","name":"SPINETE","lat":41.5459,"lng":14.4872,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"004","name":"BONEFRO","lat":41.7056,"lng":14.9342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"027","name":"GUARDIALFIERA","lat":41.804,"lng":14.7937,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"065","name":"SAN GIACOMO DEGLI SCHIAVONI","lat":41.9643,"lng":14.9472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"019","name":"CIVITACAMPOMARANO","lat":41.7805,"lng":14.6894,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"049","name":"ORATINO","lat":41.5849,"lng":14.5868,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"016","name":"CASTROPIGNANO","lat":41.6194,"lng":14.5608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"021","name":"COLLETORTO","lat":41.6647,"lng":14.9699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"079","name":"TORELLA DEL SANNIO","lat":41.641,"lng":14.5205,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"017","name":"CERCEMAGGIORE","lat":41.4624,"lng":14.7241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"058","name":"RIPABOTTONI","lat":41.6891,"lng":14.8071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"009","name":"CAMPOLIETO","lat":41.633,"lng":14.7678,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"084","name":"VINCHIATURO","lat":41.4939,"lng":14.5896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"015","name":"CASTELMAURO","lat":41.8292,"lng":14.71,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"035","name":"MACCHIA VALFORTORE","lat":41.5961,"lng":14.9127,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"026","name":"GILDONE","lat":41.5096,"lng":14.74,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"031","name":"LARINO","lat":41.8071,"lng":14.9192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"024","name":"FOSSALTO","lat":41.6739,"lng":14.5467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"083","name":"URURI","lat":41.8175,"lng":15.017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"080","name":"TORO","lat":41.5734,"lng":14.766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"007","name":"CAMPOCHIARO","lat":41.4483,"lng":14.5074,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"025","name":"GAMBATESA","lat":41.51,"lng":14.9146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"073","name":"SANT'ANGELO LIMOSANO","lat":41.6944,"lng":14.6044,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"032","name":"LIMOSANO","lat":41.6768,"lng":14.6223,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"062","name":"SALCITO","lat":41.7475,"lng":14.5104,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"077","name":"TAVENNA","lat":41.9075,"lng":14.765,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"002","name":"BARANELLO","lat":41.5272,"lng":14.5561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"067","name":"SAN GIULIANO DEL SANNIO","lat":41.4574,"lng":14.6417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"006","name":"CAMPOBASSO","lat":41.5601,"lng":14.6648,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"070","codice_comu_istat":"050","name":"PALATA","lat":41.8906,"lng":14.7852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"044","name":"MONTELONGO","lat":41.7375,"lng":14.9539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"023","name":"FERRAZZANO","lat":41.5302,"lng":14.6716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"059","name":"RIPALIMOSANI","lat":41.612,"lng":14.6638,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"063","name":"SAN BIASE","lat":40.1511,"lng":15.296,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"071","name":"SAN POLO MATESE","lat":41.4598,"lng":14.496,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"043","name":"MONTEFALCONE NEL SANNIO","lat":41.8677,"lng":14.6392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"068","name":"SAN GIULIANO DI PUGLIA","lat":41.6881,"lng":14.9633,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"060","name":"ROCCAVIVARA","lat":41.8356,"lng":14.5985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"053","name":"PIETRACATELLA","lat":41.5806,"lng":14.8732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"010","name":"CAMPOMARINO","lat":41.9571,"lng":15.0347,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"034","name":"LUPARA","lat":41.7612,"lng":14.7341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"066","name":"SAN GIOVANNI IN GALDO","lat":41.5911,"lng":14.7513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"075","name":"SEPINO","lat":41.4088,"lng":14.6197,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"028","name":"GUARDIAREGIA","lat":41.4355,"lng":14.542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"037","name":"MATRICE","lat":41.6137,"lng":14.7105,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"054","name":"PIETRACUPA","lat":41.6831,"lng":14.52,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"048","name":"MORRONE DEL SANNIO","lat":41.7115,"lng":14.7796,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"055","name":"PORTOCANNONE","lat":41.9171,"lng":15.0085,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"082","name":"TUFARA","lat":41.4831,"lng":14.9475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"011","name":"CASACALENDA","lat":41.7381,"lng":14.8477,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"040","name":"MONACILIONI","lat":41.6109,"lng":14.8096,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"072","name":"SANTA CROCE DI MAGLIANO","lat":41.7125,"lng":14.9933,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"014","name":"CASTELLINO DEL BIFERNO","lat":41.7027,"lng":14.732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"061","name":"ROTELLO","lat":41.7486,"lng":15.0056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"041","name":"MONTAGANO","lat":41.6462,"lng":14.6739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"036","name":"MAFALDA","lat":41.9428,"lng":14.7142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"074","name":"SANT'ELIA A PIANISI","lat":41.6215,"lng":14.8752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"033","name":"LUCITO","lat":41.733,"lng":14.6881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"020","name":"COLLE D'ANCHISE","lat":41.5074,"lng":14.5178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"029","name":"GUGLIONESI","lat":41.9118,"lng":14.9167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"078","name":"TERMOLI","lat":41.9957,"lng":14.9905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"046","name":"MONTENERO DI BISACCIA","lat":41.9573,"lng":14.781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"064","name":"SAN FELICE DEL MOLISE","lat":41.8907,"lng":14.702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"057","name":"RICCIA","lat":41.483,"lng":14.8342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"008","name":"CAMPODIPIETRA","lat":41.5581,"lng":14.7471,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"003","name":"BOJANO","lat":41.4867,"lng":14.4739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"038","name":"MIRABELLO SANNITICO","lat":41.516,"lng":14.6737,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"012","name":"CASALCIPRANO","lat":41.5799,"lng":14.5285,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"039","name":"MOLISE","lat":41.6311,"lng":14.4935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"069","name":"SAN MARTINO IN PENSILIS","lat":41.8706,"lng":15.0124,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"081","name":"TRIVENTO","lat":41.7822,"lng":14.5519,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"001","name":"ACQUAVIVA COLLECROCE","lat":41.8678,"lng":14.7467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"042","name":"MONTECILFONE","lat":41.9036,"lng":14.8374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"045","name":"MONTEMITRO","lat":41.8874,"lng":14.6472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"047","name":"MONTORIO NEI FRENTANI","lat":41.76,"lng":14.9339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"013","name":"CASTELBOTTACCIO","lat":41.7545,"lng":14.7088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"018","name":"CERCEPICCOLA","lat":41.4595,"lng":14.6669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"070","name":"SAN MASSIMO","lat":44.3454,"lng":9.1869,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"030","name":"JELSI","lat":41.5189,"lng":14.7997,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"005","name":"BUSSO","lat":41.5552,"lng":14.5621,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"051","name":"PETACCIATO","lat":42.0125,"lng":14.8619,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"022","name":"DURONIA","lat":41.66,"lng":14.4594,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"052","name":"PETRELLA TIFERNINA","lat":41.6925,"lng":14.6972,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"070","codice_comu_istat":"056","name":"PROVVIDENTI","lat":41.7182,"lng":14.8236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"006","name":"BICCARI","lat":41.3972,"lng":15.1953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"038","name":"PESCHICI","lat":41.947,"lng":16.0135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"048","name":"SAN MARCO LA CATOLA","lat":41.526,"lng":15.0069,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"003","name":"ANZANO DI PUGLIA","lat":41.1237,"lng":15.2847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"054","name":"STORNARA","lat":41.2885,"lng":15.7706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"017","name":"CASTELNUOVO DELLA DAUNIA","lat":41.5833,"lng":15.1197,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"059","name":"VICO DEL GARGANO","lat":41.8951,"lng":15.9582,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"016","name":"CASTELLUCCIO VALMAGGIORE","lat":41.3429,"lng":15.2009,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"015","name":"CASTELLUCCIO DEI SAURI","lat":41.3047,"lng":15.4778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"011","name":"CARLANTINO","lat":41.5911,"lng":14.9808,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"014","name":"CASALVECCHIO DI PUGLIA","lat":41.5949,"lng":15.1114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"053","name":"SERRACAPRIOLA","lat":41.8087,"lng":15.1601,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"029","name":"MANFREDONIA","lat":41.6271,"lng":15.9103,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"064","name":"ZAPPONETA","lat":41.4581,"lng":15.958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"021","name":"CHIEUTI","lat":41.8456,"lng":15.1669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"008","name":"CAGNANO VARANO","lat":41.8302,"lng":15.7719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"007","name":"BOVINO","lat":41.2509,"lng":15.3422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"005","name":"ASCOLI SATRIANO","lat":41.2072,"lng":15.5625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"027","name":"LESINA","lat":41.8605,"lng":15.3538,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"002","name":"ALBERONA","lat":41.4338,"lng":15.1239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"013","name":"CASALNUOVO MONTEROTARO","lat":41.6212,"lng":15.1049,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"028","name":"LUCERA","lat":41.5092,"lng":15.3359,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"058","name":"TROIA","lat":41.3612,"lng":15.3089,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"018","name":"CELENZA VALFORTORE","lat":41.5611,"lng":14.9831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"012","name":"CARPINO","lat":41.8431,"lng":15.8579,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"042","name":"ROCCHETTA SANT'ANTONIO","lat":41.1031,"lng":15.4602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"047","name":"SAN MARCO IN LAMIS","lat":41.7121,"lng":15.6366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"037","name":"PANNI","lat":41.2231,"lng":15.2756,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"023","name":"FAETO","lat":44.4252,"lng":10.7666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"049","name":"SAN NICANDRO GARGANICO","lat":41.8349,"lng":15.5687,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"060","name":"VIESTE","lat":41.8817,"lng":16.173,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"033","name":"MONTE SANT'ANGELO","lat":41.7104,"lng":15.7274,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"046","name":"SAN GIOVANNI ROTONDO","lat":41.7071,"lng":15.7248,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"052","name":"SANT'AGATA DI PUGLIA","lat":41.1509,"lng":15.3801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"009","name":"CANDELA","lat":41.1358,"lng":15.5147,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"026","name":"ISOLE TREMITI","lat":42.1148,"lng":15.4911,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"010","name":"CARAPELLE","lat":41.3663,"lng":15.6947,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"004","name":"APRICENA","lat":41.785,"lng":15.4447,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"061","name":"VOLTURARA APPULA","lat":41.497,"lng":15.0531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"034","name":"MOTTA MONTECORVINO","lat":41.5084,"lng":15.115,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"031","name":"MATTINATA","lat":41.7086,"lng":16.0434,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"019","name":"CELLE DI SAN VITO","lat":41.3266,"lng":15.1819,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"062","name":"VOLTURINO","lat":41.4783,"lng":15.1252,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"036","name":"ORTA NOVA","lat":41.3263,"lng":15.7071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"001","name":"ACCADIA","lat":41.1595,"lng":15.3296,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"043","name":"RODI GARGANICO","lat":41.9286,"lng":15.8842,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"032","name":"MONTELEONE DI PUGLIA","lat":41.1664,"lng":15.2589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"022","name":"DELICETO","lat":41.2225,"lng":15.3853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"063","name":"ORDONA","lat":41.3166,"lng":15.6283,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"024","name":"FOGGIA","lat":41.4623,"lng":15.5447,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"020","name":"CERIGNOLA","lat":41.265,"lng":15.9014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"041","name":"RIGNANO GARGANICO","lat":41.6767,"lng":15.5874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"044","name":"ROSETO VALFORTORE","lat":41.3734,"lng":15.097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"050","name":"SAN PAOLO DI CIVITATE","lat":41.7394,"lng":15.2613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"025","name":"ISCHITELLA","lat":41.9049,"lng":15.9002,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"055","name":"STORNARELLA","lat":41.2583,"lng":15.7324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"056","name":"TORREMAGGIORE","lat":41.6873,"lng":15.2927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"040","name":"POGGIO IMPERIALE","lat":41.8261,"lng":15.3663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"039","name":"PIETRAMONTECORVINO","lat":41.5427,"lng":15.1284,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"035","name":"ORSARA DI PUGLIA","lat":41.2827,"lng":15.2653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"071","codice_comu_istat":"051","name":"SAN SEVERO","lat":44.3684,"lng":11.9005,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"010","name":"BITETTO","lat":41.0397,"lng":16.7478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"036","name":"PUTIGNANO","lat":40.8528,"lng":17.1222,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"025","name":"LOCOROTONDO","lat":40.7557,"lng":17.3263,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"039","name":"SAMMICHELE DI BARI","lat":40.8875,"lng":16.9483,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"033","name":"PALO DEL COLLE","lat":41.0586,"lng":16.7017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"031","name":"NOCI","lat":40.7953,"lng":17.1244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"034","name":"POGGIORSINI","lat":40.9181,"lng":16.2556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"021","name":"GIOIA DEL COLLE","lat":40.7979,"lng":16.9246,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"047","name":"TURI","lat":40.9185,"lng":17.022,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"043","name":"TERLIZZI","lat":41.13,"lng":16.5428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"044","name":"TORITTO","lat":40.9992,"lng":16.6806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"023","name":"GRAVINA IN PUGLIA","lat":40.8212,"lng":16.4193,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"012","name":"BITRITTO","lat":41.0456,"lng":16.8261,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"022","name":"GIOVINAZZO","lat":41.1875,"lng":16.6726,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"001","name":"ACQUAVIVA DELLE FONTI","lat":40.8989,"lng":16.8435,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"017","name":"CASTELLANA GROTTE","lat":40.8875,"lng":17.1664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"002","name":"ADELFIA","lat":41.0037,"lng":16.8707,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"028","name":"MOLA DI BARI","lat":41.062,"lng":17.0881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"003","name":"ALBEROBELLO","lat":40.7862,"lng":17.2376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"038","name":"RUVO DI PUGLIA","lat":41.1184,"lng":16.4852,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"019","name":"CONVERSANO","lat":40.9673,"lng":17.1157,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"048","name":"VALENZANO","lat":41.0446,"lng":16.8844,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"035","name":"POLIGNANO A MARE","lat":40.9971,"lng":17.2167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"024","name":"GRUMO APPULA","lat":41.0145,"lng":16.7094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"037","name":"RUTIGLIANO","lat":41.0111,"lng":17.0039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"040","name":"SANNICANDRO DI BARI","lat":41.0025,"lng":16.797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"020","name":"CORATO","lat":41.1531,"lng":16.4107,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"014","name":"CAPURSO","lat":41.048,"lng":16.9225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"018","name":"CELLAMARE","lat":41.0203,"lng":16.9292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"046","name":"TRIGGIANO","lat":41.0642,"lng":16.9237,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"006","name":"BARI","lat":41.1261,"lng":16.8693,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"072","codice_comu_istat":"011","name":"BITONTO","lat":41.1084,"lng":16.6914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"004","name":"ALTAMURA","lat":40.8303,"lng":16.5545,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"041","name":"SANTERAMO IN COLLE","lat":40.7941,"lng":16.7562,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"032","name":"NOICATTARO","lat":41.0349,"lng":16.9905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"030","name":"MONOPOLI","lat":40.9571,"lng":17.2905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"016","name":"CASSANO DELLE MURGE","lat":40.891,"lng":16.7703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"008","name":"BINETTO","lat":41.0246,"lng":16.7108,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"029","name":"MOLFETTA","lat":41.2013,"lng":16.5985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"015","name":"CASAMASSIMA","lat":40.9553,"lng":16.9181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"072","codice_comu_istat":"027","name":"MODUGNO","lat":41.083,"lng":16.7797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"021","name":"PALAGIANO","lat":40.5792,"lng":17.0383,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"010","name":"LEPORANO","lat":40.383,"lng":17.3342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"001","name":"AVETRANA","lat":40.3494,"lng":17.7277,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"004","name":"CRISPIANO","lat":40.6047,"lng":17.2298,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"008","name":"GROTTAGLIE","lat":40.5403,"lng":17.4345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"029","name":"STATTE","lat":40.5638,"lng":17.2053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"017","name":"MONTEMESOLA","lat":40.5656,"lng":17.3384,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"012","name":"MANDURIA","lat":40.4028,"lng":17.6344,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"003","name":"CASTELLANETA","lat":40.6283,"lng":16.9378,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"014","name":"MARUGGIO","lat":40.323,"lng":17.5738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"002","name":"CAROSINO","lat":40.4669,"lng":17.3984,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"019","name":"MOTTOLA","lat":40.6342,"lng":17.0381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"028","name":"TORRICELLA","lat":40.3561,"lng":17.4999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"018","name":"MONTEPARANO","lat":40.445,"lng":17.4159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"025","name":"SAN MARZANO DI SAN GIUSEPPE","lat":40.4502,"lng":17.5065,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"006","name":"FRAGAGNANO","lat":40.433,"lng":17.4731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"011","name":"LIZZANO","lat":40.392,"lng":17.4484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"009","name":"LATERZA","lat":40.6259,"lng":16.7978,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"024","name":"SAN GIORGIO IONICO","lat":40.4577,"lng":17.3795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"022","name":"PULSANO","lat":40.3831,"lng":17.3574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"026","name":"SAVA","lat":40.4046,"lng":17.5592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"013","name":"MARTINA FRANCA","lat":40.7042,"lng":17.3349,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"005","name":"FAGGIANO","lat":40.421,"lng":17.3875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"027","name":"TARANTO","lat":40.4692,"lng":17.24,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"007","name":"GINOSA","lat":40.5813,"lng":16.7571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"015","name":"MASSAFRA","lat":40.5899,"lng":17.1178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"023","name":"ROCCAFORZATA","lat":40.4384,"lng":17.3905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"020","name":"PALAGIANELLO","lat":40.6106,"lng":16.9743,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"073","codice_comu_istat":"016","name":"MONTEIASI","lat":40.5009,"lng":17.3834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"006","name":"ERCHIE","lat":40.6391,"lng":14.6955,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"011","name":"ORIA","lat":46.0217,"lng":9.0332,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"017","name":"SAN VITO DEI NORMANNI","lat":40.6585,"lng":17.7081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"016","name":"SAN PIETRO VERNOTICO","lat":40.4925,"lng":17.9999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"012","name":"OSTUNI","lat":40.7288,"lng":17.5774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"004","name":"CELLINO SAN MARCO","lat":40.4733,"lng":17.9672,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"020","name":"VILLA CASTELLI","lat":40.5856,"lng":17.4755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"009","name":"LATIANO","lat":40.5539,"lng":17.7214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"019","name":"TORRE SANTA SUSANNA","lat":40.4669,"lng":17.7388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"007","name":"FASANO","lat":37.7824,"lng":14.097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"002","name":"CAROVIGNO","lat":40.7091,"lng":17.656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"010","name":"MESAGNE","lat":40.5599,"lng":17.8092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"013","name":"SAN DONACI","lat":40.4517,"lng":17.9259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"018","name":"TORCHIAROLO","lat":40.485,"lng":18.0525,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"001","name":"BRINDISI","lat":40.6362,"lng":17.939,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"008","name":"FRANCAVILLA FONTANA","lat":40.5317,"lng":17.5861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"005","name":"CISTERNINO","lat":40.7431,"lng":17.4252,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"014","name":"SAN MICHELE SALENTINO","lat":40.6327,"lng":17.6324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"003","name":"CEGLIE MESSAPICA","lat":40.645,"lng":17.5164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"074","codice_comu_istat":"015","name":"SAN PANCRAZIO SALENTINO","lat":40.4202,"lng":17.8314,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"037","name":"LEVERANO","lat":40.2897,"lng":18.0012,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"023","name":"CORIGLIANO D'OTRANTO","lat":40.1605,"lng":18.2566,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"077","name":"SPECCHIA","lat":39.9381,"lng":18.2984,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"043","name":"MELENDUGNO","lat":40.2758,"lng":18.3377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"019","name":"CASTRIGNANO DEL CAPO","lat":39.8335,"lng":18.352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"072","name":"SANTA CESAREA TERME","lat":40.0374,"lng":18.4577,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"055","name":"NOVOLI","lat":40.3795,"lng":18.05,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"053","name":"NEVIANO","lat":40.1088,"lng":18.1149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"081","name":"SUPERSANO","lat":40.0181,"lng":18.2409,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"028","name":"GAGLIANO DEL CAPO","lat":39.8453,"lng":18.3703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"085","name":"TAVIANO","lat":39.9845,"lng":18.0877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"089","name":"TUGLIE","lat":40.0749,"lng":18.0989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"092","name":"VEGLIE","lat":40.3363,"lng":17.9661,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"095","name":"SAN CASSIANO","lat":46.2778,"lng":9.3985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"034","name":"GUAGNANO","lat":40.4024,"lng":17.9499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"058","name":"PALMARIGGI","lat":40.1317,"lng":18.3803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"079","name":"SQUINZANO","lat":40.4388,"lng":18.039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"026","name":"CUTROFIANO","lat":40.1274,"lng":18.2025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"009","name":"BOTRUGNO","lat":40.0658,"lng":18.3253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"041","name":"MARTIGNANO","lat":46.088,"lng":11.132,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"013","name":"CAPRARICA DI LECCE","lat":40.261,"lng":18.2455,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"074","name":"SECLÌ","lat":40.1213,"lng":18.1075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"042","name":"MATINO","lat":40.0333,"lng":18.1327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"093","name":"VERNOLE","lat":40.2906,"lng":18.3044,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"075","name":"SOGLIANO CAVOUR","lat":40.1499,"lng":18.1961,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"033","name":"GIURDIGNANO","lat":40.1225,"lng":18.4336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"082","name":"SURANO","lat":40.0294,"lng":18.3459,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"070","name":"SANNICOLA","lat":40.093,"lng":18.0671,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"024","name":"CORSANO","lat":43.2225,"lng":11.3324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"016","name":"CASARANO","lat":40.0126,"lng":18.1606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"063","name":"RACALE","lat":39.9642,"lng":18.0947,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"007","name":"ARNESANO","lat":40.3381,"lng":18.0917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"096","name":"CASTRO","lat":40.007778,"lng":18.42518,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"044","name":"MELISSANO","lat":39.975,"lng":18.1224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"027","name":"DISO","lat":40.0106,"lng":18.3935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"045","name":"MELPIGNANO","lat":40.1589,"lng":18.2931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"039","name":"MAGLIE","lat":40.1196,"lng":18.2999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"015","name":"CARPIGNANO SALENTINO","lat":40.198,"lng":18.3392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"005","name":"ANDRANO","lat":39.9842,"lng":18.3835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"030","name":"GALATONE","lat":40.1439,"lng":18.0713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"086","name":"TIGGIANO","lat":39.9069,"lng":18.3653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"029","name":"GALATINA","lat":40.175,"lng":18.1691,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"006","name":"ARADEO","lat":40.1309,"lng":18.1318,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"073","name":"SCORRANO","lat":42.5922,"lng":13.8198,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"061","name":"POGGIARDO","lat":40.055,"lng":18.3771,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"076","name":"SOLETO","lat":40.1896,"lng":18.2072,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"054","name":"NOCIGLIA","lat":40.0403,"lng":18.3269,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"059","name":"PARABITA","lat":40.0488,"lng":18.1277,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"046","name":"MIGGIANO","lat":39.9608,"lng":18.3125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"025","name":"CURSI","lat":40.1506,"lng":18.3156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"035","name":"LECCE","lat":40.3533,"lng":18.174,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"083","name":"SURBO","lat":40.397,"lng":18.1342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"065","name":"SALICE SALENTINO","lat":40.3881,"lng":17.9616,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"020","name":"CAVALLINO","lat":45.4818,"lng":12.5505,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"067","name":"SANARICA","lat":40.0902,"lng":18.3495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"008","name":"BAGNOLO DEL SALENTO","lat":40.1517,"lng":18.3534,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"088","name":"TRICASE","lat":39.9314,"lng":18.3563,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"050","name":"MORCIANO DI LEUCA","lat":39.8489,"lng":18.3133,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"047","name":"MINERVINO DI LECCE","lat":40.0896,"lng":18.4213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"068","name":"SAN CESARIO DI LECCE","lat":40.3039,"lng":18.1608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"071","name":"SAN PIETRO IN LAMA","lat":40.3096,"lng":18.1296,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"018","name":"CASTRIGNANO DE' GRECI","lat":40.1746,"lng":18.2974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"048","name":"MONTERONI DI LECCE","lat":40.3256,"lng":18.098,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"040","name":"MARTANO","lat":40.2027,"lng":18.3035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"069","name":"SAN DONATO DI LECCE","lat":40.2692,"lng":18.185,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"062","name":"PRESICCE","lat":39.9002,"lng":18.2625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"014","name":"CARMIANO","lat":44.8515,"lng":9.6171,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"022","name":"COPERTINO","lat":40.2725,"lng":18.0574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"064","name":"RUFFANO","lat":39.9839,"lng":18.2474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"017","name":"CASTRI DI LECCE","lat":40.2741,"lng":18.2639,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"090","name":"UGENTO","lat":39.9274,"lng":18.1583,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"001","name":"ACQUARICA DEL CAPO","lat":39.9122,"lng":18.2463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"057","name":"OTRANTO","lat":40.148,"lng":18.4858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"060","name":"PATÙ","lat":39.8424,"lng":18.3399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"031","name":"GALLIPOLI","lat":40.0562,"lng":17.9788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"038","name":"LIZZANELLO","lat":40.3052,"lng":18.2235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"049","name":"MONTESANO SALENTINO","lat":39.9767,"lng":18.3224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"012","name":"CANNOLE","lat":40.1674,"lng":18.3669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"066","name":"SALVE","lat":39.8624,"lng":18.2942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"097","name":"PORTO CESAREO","lat":40.2624,"lng":17.8975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"080","name":"STERNATIA","lat":40.2205,"lng":18.2259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"051","name":"MURO LECCESE","lat":40.1035,"lng":18.3389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"052","name":"NARDÒ","lat":40.1759,"lng":18.0304,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"084","name":"TAURISANO","lat":39.9577,"lng":18.215,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"032","name":"GIUGGIANELLO","lat":40.0955,"lng":18.3699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"010","name":"CALIMERA","lat":40.2514,"lng":18.2788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"094","name":"ZOLLINO","lat":40.2075,"lng":18.2495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"087","name":"TREPUZZI","lat":40.4047,"lng":18.0716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"091","name":"UGGIANO LA CHIESA","lat":40.1028,"lng":18.4502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"056","name":"ORTELLE","lat":40.0353,"lng":18.3922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"002","name":"ALESSANO","lat":39.8897,"lng":18.3319,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"011","name":"CAMPI SALENTINA","lat":40.4002,"lng":18.0191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"003","name":"ALEZIO","lat":40.0624,"lng":18.0591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"004","name":"ALLISTE","lat":39.9497,"lng":18.0897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"078","name":"SPONGANO","lat":40.0179,"lng":18.3651,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"021","name":"COLLEPASSO","lat":40.0725,"lng":18.1649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"075","codice_comu_istat":"036","name":"LEQUILE","lat":40.3069,"lng":18.1411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"072","name":"RUVO DEL MONTE","lat":40.8499,"lng":15.5424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"049","name":"MISSANELLO","lat":40.2831,"lng":16.1669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"014","name":"BRINDISI MONTAGNA","lat":40.6106,"lng":15.9406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"005","name":"ARMENTO","lat":40.3078,"lng":16.0655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"042","name":"LAURIA","lat":40.0479,"lng":15.8375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"082","name":"SASSO DI CASTALDA","lat":40.4878,"lng":15.6783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"085","name":"SENISE","lat":40.1481,"lng":16.2899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"093","name":"TRIVIGNO","lat":40.5799,"lng":15.9867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"051","name":"MONTEMILONE","lat":41.0311,"lng":15.9702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"090","name":"TOLVE","lat":40.6953,"lng":16.0172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"088","name":"TERRANOVA DI POLLINO","lat":39.9784,"lng":16.2948,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"003","name":"ALBANO DI LUCANIA","lat":40.5856,"lng":16.037,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"027","name":"CERSOSIMO","lat":40.0481,"lng":16.3509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"087","name":"TEANA","lat":40.1278,"lng":16.154,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"029","name":"CORLETO PERTICARA","lat":40.3843,"lng":16.0411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"055","name":"NOEPOLI","lat":40.0878,"lng":16.3306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"062","name":"PIGNOLA","lat":40.5742,"lng":15.7841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"054","name":"NEMOLI","lat":40.0686,"lng":15.8013,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"025","name":"CASTELSARACENO","lat":40.1649,"lng":15.9928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"032","name":"FILIANO","lat":40.8115,"lng":15.7067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"099","name":"GINESTRA","lat":40.9303,"lng":15.7339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"061","name":"PIETRAPERTOSA","lat":40.5194,"lng":16.0629,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"041","name":"LAURENZANA","lat":40.4586,"lng":15.9716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"066","name":"RIONERO IN VULTURE","lat":40.9267,"lng":15.671,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"002","name":"ACERENZA","lat":40.7931,"lng":15.9375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"013","name":"BRIENZA","lat":40.4789,"lng":15.6308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"024","name":"CASTELMEZZANO","lat":40.5292,"lng":16.0451,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"077","name":"SAN MARTINO D'AGRI","lat":40.2408,"lng":16.0539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"091","name":"TRAMUTOLA","lat":40.3154,"lng":15.7897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"070","name":"ROTONDA","lat":39.9538,"lng":16.04,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"038","name":"GUARDIA PERTICARA","lat":40.3583,"lng":16.1004,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"057","name":"PALAZZO SAN GERVASIO","lat":40.9314,"lng":15.9855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"075","name":"SAN COSTANTINO ALBANESE","lat":40.0369,"lng":16.3056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"064","name":"RAPOLLA","lat":40.9767,"lng":15.6722,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"050","name":"MOLITERNO","lat":40.2428,"lng":15.8644,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"023","name":"CASTELLUCCIO SUPERIORE","lat":40.0114,"lng":15.9759,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"073","name":"SAN CHIRICO NUOVO","lat":40.6775,"lng":16.08,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"053","name":"MURO LUCANO","lat":40.7536,"lng":15.4867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"015","name":"CALVELLO","lat":40.477,"lng":15.8496,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"018","name":"CANCELLARA","lat":40.7313,"lng":15.9267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"097","name":"VIGGIANELLO","lat":39.9735,"lng":16.0867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"047","name":"MASCHITO","lat":40.9075,"lng":15.8291,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"043","name":"LAVELLO","lat":41.0467,"lng":15.7917,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"052","name":"MONTEMURRO","lat":40.298,"lng":15.9922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"065","name":"RAPONE","lat":40.8478,"lng":15.502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"067","name":"RIPACANDIDA","lat":40.913,"lng":15.7256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"008","name":"BALVANO","lat":40.6514,"lng":15.515,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"095","name":"VENOSA","lat":40.9624,"lng":15.8158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"016","name":"CALVERA","lat":40.1489,"lng":16.1437,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"092","name":"TRECCHINA","lat":40.0277,"lng":15.7756,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"011","name":"BARILE","lat":40.9471,"lng":15.6732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"068","name":"RIVELLO","lat":40.0791,"lng":15.7571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"012","name":"BELLA","lat":40.7594,"lng":15.5394,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"028","name":"CHIAROMONTE","lat":40.125,"lng":16.2156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"026","name":"CASTRONUOVO DI SANT'ANDREA","lat":40.1894,"lng":16.1853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"076","name":"SAN FELE","lat":40.8184,"lng":15.5402,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"007","name":"AVIGLIANO","lat":40.7308,"lng":15.7213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"030","name":"EPISCOPIA","lat":40.076,"lng":16.0991,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"033","name":"FORENZA","lat":40.8599,"lng":15.8574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"006","name":"ATELLA","lat":40.8768,"lng":15.6513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"081","name":"SARCONI","lat":40.2484,"lng":15.8896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"089","name":"TITO","lat":40.5838,"lng":15.677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"083","name":"SATRIANO DI LUCANIA","lat":40.544,"lng":15.6392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"078","name":"SAN SEVERINO LUCANO","lat":40.0217,"lng":16.1388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"071","name":"RUOTI","lat":40.7181,"lng":15.6792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"010","name":"BARAGIANO","lat":40.6803,"lng":15.5953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"094","name":"VAGLIO BASILICATA","lat":40.6686,"lng":15.9189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"039","name":"LAGONEGRO","lat":40.1294,"lng":15.7624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"100","name":"PATERNO","lat":42.7532,"lng":13.7189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"035","name":"GALLICCHIO","lat":40.2893,"lng":16.139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"021","name":"CASTELGRANDE","lat":40.7857,"lng":15.4297,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"037","name":"GRUMENTO NOVA","lat":40.2839,"lng":15.8897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"009","name":"BANZI","lat":40.8617,"lng":16.0139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"020","name":"SAN PAOLO ALBANESE","lat":40.0342,"lng":16.3346,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"056","name":"OPPIDO LUCANO","lat":40.7628,"lng":15.9875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"031","name":"FARDELLA","lat":40.1148,"lng":16.1702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"074","name":"SAN CHIRICO RAPARO","lat":40.1904,"lng":16.0771,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"001","name":"ABRIOLA","lat":40.5081,"lng":15.8137,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"036","name":"GENZANO DI LUCANIA","lat":40.8489,"lng":16.0317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"086","name":"SPINOSO","lat":40.2703,"lng":15.9675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"098","name":"VIGGIANO","lat":40.3403,"lng":15.8978,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"034","name":"FRANCAVILLA IN SINNI","lat":40.0802,"lng":16.2042,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"059","name":"PICERNO","lat":40.6413,"lng":15.6424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"022","name":"CASTELLUCCIO INFERIORE","lat":40.0048,"lng":15.9807,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"040","name":"LATRONICO","lat":40.0909,"lng":16.0109,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"084","name":"SAVOIA DI LUCANIA","lat":40.5698,"lng":15.5523,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"096","name":"VIETRI DI POTENZA","lat":40.6007,"lng":15.509,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"044","name":"MARATEA","lat":39.9979,"lng":15.7183,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"046","name":"MARSICOVETERE","lat":40.3769,"lng":15.8241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"004","name":"ANZI","lat":40.5177,"lng":15.9255,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"048","name":"MELFI","lat":40.9975,"lng":15.6524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"060","name":"PIETRAGALLA","lat":40.7477,"lng":15.8805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"079","name":"SANT'ANGELO LE FRATTE","lat":40.5471,"lng":15.5598,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"069","name":"ROCCANOVA","lat":40.2131,"lng":16.2041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"019","name":"CARBONE","lat":40.1434,"lng":16.0903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"063","name":"POTENZA","lat":40.6372,"lng":15.8022,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"076","codice_comu_istat":"045","name":"MARSICO NUOVO","lat":40.424,"lng":15.7355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"080","name":"SANT'ARCANGELO","lat":40.2485,"lng":16.272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"058","name":"PESCOPAGANO","lat":40.836,"lng":15.3988,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"076","codice_comu_istat":"017","name":"CAMPOMAGGIORE","lat":40.5683,"lng":16.0743,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"006","name":"COLOBRARO","lat":40.1885,"lng":16.426,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"029","name":"TURSI","lat":40.2463,"lng":16.4706,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"024","name":"SALANDRA","lat":40.5281,"lng":16.3195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"002","name":"ALIANO","lat":40.3138,"lng":16.2299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"004","name":"CALCIANO","lat":40.5878,"lng":16.1921,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"013","name":"IRSINA","lat":40.7486,"lng":16.2395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"001","name":"ACCETTURA","lat":40.492,"lng":16.1589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"017","name":"MONTESCAGLIOSO","lat":40.5533,"lng":16.6679,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"022","name":"POMARICO","lat":40.5156,"lng":16.5488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"027","name":"STIGLIANO","lat":45.5242,"lng":12.0461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"023","name":"ROTONDELLA","lat":40.1724,"lng":16.5264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"028","name":"TRICARICO","lat":40.6188,"lng":16.1474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"015","name":"MIGLIONICO","lat":40.5694,"lng":16.4996,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"025","name":"SAN GIORGIO LUCANO","lat":40.1108,"lng":16.3876,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"030","name":"VALSINNI","lat":40.1709,"lng":16.4444,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"019","name":"OLIVETO LUCANO","lat":40.5364,"lng":16.1855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"031","name":"SCANZANO JONICO","lat":40.251,"lng":16.6992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"012","name":"GROTTOLE","lat":40.6021,"lng":16.3807,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"021","name":"POLICORO","lat":40.213,"lng":16.6783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"016","name":"MONTALBANO JONICO","lat":40.2909,"lng":16.5658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"018","name":"NOVA SIRI","lat":40.149,"lng":16.5414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"005","name":"CIRIGLIANO","lat":40.395,"lng":16.1728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"014","name":"MATERA","lat":40.6687,"lng":16.6061,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"010","name":"GORGOGLIONE","lat":40.3937,"lng":16.1441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"026","name":"SAN MAURO FORTE","lat":40.4867,"lng":16.2506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"007","name":"CRACO","lat":40.3802,"lng":16.4363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"009","name":"GARAGUSO","lat":40.5496,"lng":16.2281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"020","name":"PISTICCI","lat":40.3917,"lng":16.5546,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"008","name":"FERRANDINA","lat":40.5024,"lng":16.4556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"011","name":"GRASSANO","lat":40.6327,"lng":16.2835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"077","codice_comu_istat":"003","name":"BERNALDA","lat":40.4139,"lng":16.6928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"123","name":"SAN MARCO ARGENTANO","lat":39.5597,"lng":16.1207,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"016","name":"BIANCHI","lat":39.102,"lng":16.411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"003","name":"ACRI","lat":39.491,"lng":16.3861,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"101","name":"PRAIA A MARE","lat":39.9001,"lng":15.7789,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"009","name":"ALTOMONTE","lat":39.6993,"lng":16.1313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"026","name":"CAROLEI","lat":39.2544,"lng":16.2195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"099","name":"PIETRAPAOLA","lat":39.4872,"lng":16.8154,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"019","name":"BONIFATI","lat":39.5858,"lng":15.899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"070","name":"LUZZI","lat":39.4472,"lng":16.2892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"120","name":"SAN LORENZO BELLIZZI","lat":39.8891,"lng":16.3311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"132","name":"SANTA MARIA DEL CEDRO","lat":39.7474,"lng":15.8374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"025","name":"CARIATI","lat":39.4933,"lng":16.9603,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"116","name":"SAN FILI","lat":39.339,"lng":16.144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"146","name":"TERRANOVA DA SIBARI","lat":39.658,"lng":16.3403,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"103","name":"ROCCA IMPERIALE","lat":40.1108,"lng":16.5811,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"034","name":"CELICO","lat":39.3113,"lng":16.3408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"042","name":"CLETO","lat":39.0913,"lng":16.1592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"122","name":"SAN LUCIDO","lat":39.31,"lng":16.0517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"138","name":"SCALEA","lat":39.8145,"lng":15.7909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"067","name":"LONGOBARDI","lat":38.7115,"lng":16.1263,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"140","name":"SERRA D'AIELLO","lat":39.0905,"lng":16.129,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"094","name":"PATERNO CALABRO","lat":39.2274,"lng":16.2686,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"092","name":"PAPASIDERO","lat":39.8726,"lng":15.9075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"114","name":"SAN DEMETRIO CORONE","lat":39.5704,"lng":16.3629,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"155","name":"ZUMPANO","lat":39.3121,"lng":16.293,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"043","name":"COLOSIMI","lat":39.1202,"lng":16.3971,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"124","name":"SAN MARTINO DI FINITA","lat":39.49,"lng":16.1084,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"048","name":"DIAMANTE","lat":39.6772,"lng":15.8251,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"088","name":"ORSOMARSO","lat":39.8003,"lng":15.9081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"049","name":"DIPIGNANO","lat":39.2386,"lng":16.2539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"090","name":"PANETTIERI","lat":39.06,"lng":16.4546,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"032","name":"CASTROREGIO","lat":39.9934,"lng":16.4784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"030","name":"CASTIGLIONE COSENTINO","lat":39.3511,"lng":16.2863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"071","name":"MAIERÀ","lat":39.7171,"lng":15.85,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"073","name":"MALVITO","lat":39.6008,"lng":16.0542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"004","name":"AIELLO CALABRO","lat":39.1172,"lng":16.1669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"006","name":"ALBIDONA","lat":39.9238,"lng":16.4711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"018","name":"BOCCHIGLIERO","lat":39.421,"lng":16.7499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"008","name":"ALTILIA","lat":39.1824,"lng":16.8819,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"022","name":"CALOVETO","lat":39.5063,"lng":16.7608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"076","name":"MARANO MARCHESATO","lat":39.317,"lng":16.1747,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"011","name":"AMENDOLARA","lat":39.953,"lng":16.5823,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"065","name":"LAPPANO","lat":39.321,"lng":16.3136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"017","name":"BISIGNANO","lat":39.5126,"lng":16.2872,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"024","name":"CANNA","lat":40.095,"lng":16.5052,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"005","name":"AIETA","lat":39.9289,"lng":15.8244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"126","name":"SAN PIETRO IN AMANTEA","lat":39.1375,"lng":16.1125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"054","name":"FIRMO","lat":39.7225,"lng":16.1711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"050","name":"DOMANICO","lat":39.2202,"lng":16.2066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"013","name":"BELMONTE CALABRO","lat":39.1625,"lng":16.0855,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"149","name":"TORTORA","lat":39.9419,"lng":15.806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"062","name":"LAGO","lat":46.0017,"lng":12.2571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"139","name":"SCIGLIANO","lat":39.1284,"lng":16.3067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"056","name":"FRANCAVILLA MARITTIMA","lat":39.82,"lng":16.3886,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"145","name":"TARSIA","lat":39.6218,"lng":16.2713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"084","name":"MORMANNO","lat":39.8894,"lng":15.9877,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"151","name":"TRENTA","lat":39.2863,"lng":16.3224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"055","name":"FIUMEFREDDO BRUZIO","lat":39.2355,"lng":16.0705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"038","name":"CERVICATI","lat":39.5436,"lng":16.1292,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"035","name":"CELLARA","lat":39.2195,"lng":16.3354,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"046","name":"CROPALATI","lat":39.5176,"lng":16.7267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"128","name":"SAN SOSTI","lat":39.66,"lng":16.0284,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"111","name":"SAN BASILE","lat":39.8106,"lng":16.1642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"136","name":"SARACENA","lat":39.7799,"lng":16.1575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"047","name":"CROSIA","lat":39.568,"lng":16.7728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"118","name":"SAN GIORGIO ALBANESE","lat":39.5835,"lng":16.4544,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"119","name":"SAN GIOVANNI IN FIORE","lat":39.2602,"lng":16.6989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"063","name":"LAINO BORGO","lat":39.9553,"lng":15.9744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"148","name":"TORANO CASTELLO","lat":39.5059,"lng":16.1457,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"014","name":"BELSITO","lat":39.1783,"lng":16.2892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"081","name":"MONTALTO UFFUGO","lat":39.406,"lng":16.1589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"093","name":"PARENTI","lat":39.1633,"lng":16.4114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"134","name":"SANTO STEFANO DI ROGLIANO","lat":39.1936,"lng":16.3191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"142","name":"SPEZZANO ALBANESE","lat":39.6699,"lng":16.3114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"104","name":"ROGGIANO GRAVINA","lat":39.6189,"lng":16.1609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"068","name":"LONGOBUCCO","lat":39.4494,"lng":16.6114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"150","name":"TREBISACCE","lat":39.8721,"lng":16.5312,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"107","name":"ROSETO CAPO SPULICO","lat":39.9881,"lng":16.5994,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"083","name":"MORANO CALABRO","lat":39.8429,"lng":16.1374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"097","name":"PIANE CRATI","lat":39.234,"lng":16.3252,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"027","name":"CARPANZANO","lat":39.1482,"lng":16.304,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"052","name":"FALCONARA ALBANESE","lat":39.2769,"lng":16.0927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"020","name":"BUONVICINO","lat":39.6902,"lng":15.8835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"015","name":"BELVEDERE MARITTIMO","lat":39.6189,"lng":15.8625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"089","name":"PALUDI","lat":39.5313,"lng":16.6838,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"051","name":"FAGNANO CASTELLO","lat":39.566,"lng":16.0543,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"066","name":"LATTARICO","lat":39.4644,"lng":16.1382,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"137","name":"SCALA COELI","lat":39.4496,"lng":16.8857,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"102","name":"RENDE","lat":39.3315,"lng":16.1815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"041","name":"CIVITA","lat":42.6259,"lng":12.1055,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"085","name":"MOTTAFOLLONE","lat":39.6499,"lng":16.0643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"113","name":"SAN COSMO ALBANESE","lat":39.5842,"lng":16.4211,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"152","name":"VACCARIZZO ALBANESE","lat":39.5864,"lng":16.4338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"110","name":"ROVITO","lat":39.3091,"lng":16.3221,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"045","name":"COSENZA","lat":39.2954,"lng":16.2536,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"130","name":"SANTA DOMENICA TALAO","lat":39.8206,"lng":15.8555,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"109","name":"ROTA GRECA","lat":39.4695,"lng":16.1134,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"127","name":"SAN PIETRO IN GUARANO","lat":39.3433,"lng":16.3124,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"106","name":"ROSE","lat":39.3995,"lng":16.2881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"012","name":"APRIGLIANO","lat":39.2397,"lng":16.3406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"121","name":"SAN LORENZO DEL VALLO","lat":39.6692,"lng":16.2983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"036","name":"CERCHIARA DI CALABRIA","lat":39.8606,"lng":16.3832,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"064","name":"LAINO CASTELLO","lat":39.9392,"lng":15.9778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"082","name":"MONTEGIORDANO","lat":40.0441,"lng":16.5353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"033","name":"CASTROVILLARI","lat":39.8124,"lng":16.2026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"007","name":"ALESSANDRIA DEL CARRETTO","lat":39.9594,"lng":16.3809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"069","name":"LUNGRO","lat":39.7394,"lng":16.1255,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"087","name":"ORIOLO","lat":45.0323,"lng":9.0241,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"028","name":"CASOLE BRUZIO","lat":39.2855,"lng":16.3374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"112","name":"SAN BENEDETTO ULLANO","lat":39.4281,"lng":16.1247,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"057","name":"FRASCINETO","lat":39.8375,"lng":16.2628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"129","name":"SANTA CATERINA ALBANESE","lat":39.5871,"lng":16.0713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"023","name":"CAMPANA","lat":39.4147,"lng":16.8231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"153","name":"VERBICARO","lat":39.7571,"lng":15.9159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"010","name":"AMANTEA","lat":39.1342,"lng":16.0755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"074","name":"MANDATORICCIO","lat":39.4674,"lng":16.8357,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"086","name":"NOCARA","lat":40.0996,"lng":16.4835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"091","name":"PAOLA","lat":39.3609,"lng":16.0405,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"100","name":"PLATACI","lat":39.8993,"lng":16.4337,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"040","name":"CETRARO","lat":39.5176,"lng":15.942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"095","name":"PEDACE","lat":39.2755,"lng":16.3375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"096","name":"PEDIVIGLIANO","lat":39.1096,"lng":16.3012,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"077","name":"MARANO PRINCIPATO","lat":39.3006,"lng":16.1759,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"147","name":"TERRAVECCHIA","lat":39.4659,"lng":16.9469,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"072","name":"MALITO","lat":39.1558,"lng":16.2493,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"143","name":"SPEZZANO DELLA SILA","lat":39.3024,"lng":16.3395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"154","name":"VILLAPIANA","lat":39.8475,"lng":16.4561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"125","name":"SAN NICOLA ARCELLA","lat":39.8471,"lng":15.7942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"117","name":"SANGINETO","lat":39.6055,"lng":15.9146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"135","name":"SAN VINCENZO LA COSTA","lat":39.3669,"lng":16.1518,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"105","name":"ROGLIANO","lat":39.1824,"lng":16.3219,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"108","name":"ROSSANO","lat":39.5764,"lng":16.6342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"061","name":"GUARDIA PIEMONTESE","lat":39.467,"lng":15.9996,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"075","name":"MANGONE","lat":39.2057,"lng":16.3325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"078","name":"MARZI","lat":39.1719,"lng":16.3074,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"144","name":"SPEZZANO PICCOLO","lat":39.2896,"lng":16.3431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"131","name":"SANT'AGATA DI ESARO","lat":39.6239,"lng":15.9847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"079","name":"MENDICINO","lat":39.2606,"lng":16.1927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"031","name":"CASTROLIBERO","lat":39.3087,"lng":16.1945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"039","name":"CERZETO","lat":39.5089,"lng":16.116,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"141","name":"SERRA PEDACE","lat":39.2778,"lng":16.3478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"059","name":"GRIMALDI","lat":43.7873,"lng":7.5387,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"115","name":"SAN DONATO DI NINEA","lat":39.7095,"lng":16.0486,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"001","name":"ACQUAFORMOSA","lat":39.7242,"lng":16.0908,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"080","name":"MONGRASSANO","lat":39.5254,"lng":16.1119,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"098","name":"PIETRAFITTA","lat":42.9925,"lng":12.2117,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"053","name":"FIGLINE VEGLIATURO","lat":39.2263,"lng":16.3303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"133","name":"SANTA SOFIA D'EPIRO","lat":39.5475,"lng":16.3299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"037","name":"CERISANO","lat":39.2772,"lng":16.1763,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"060","name":"GRISOLIA","lat":39.7247,"lng":15.8544,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"044","name":"CORIGLIANO CALABRO","lat":39.5961,"lng":16.5186,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"029","name":"CASSANO ALLO IONIO","lat":39.780418,"lng":16.321131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"002","name":"ACQUAPPESA","lat":39.4951,"lng":15.9535,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"021","name":"CALOPEZZATI","lat":39.5624,"lng":16.8029,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"078","codice_comu_istat":"058","name":"FUSCALDO","lat":39.4153,"lng":16.0306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"115","name":"SAN PIETRO APOSTOLO","lat":39.0046,"lng":16.4696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"058","name":"GIMIGLIANO","lat":38.9753,"lng":16.5295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"138","name":"SOVERIA MANNELLI","lat":39.0839,"lng":16.3728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"029","name":"CHIARAVALLE CENTRALE","lat":38.6811,"lng":16.4119,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"061","name":"GUARDAVALLE","lat":38.5061,"lng":16.5044,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"126","name":"SELLIA","lat":38.9818,"lng":16.6283,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"055","name":"GAGLIATO","lat":38.6769,"lng":16.4611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"148","name":"TORRE DI RUGGIERO","lat":38.6562,"lng":16.3673,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"052","name":"FOSSATO SERRALTA","lat":38.9969,"lng":16.5786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"157","name":"ZAGARISE","lat":39.0007,"lng":16.6646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"096","name":"PIANOPOLI","lat":38.9553,"lng":16.3892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"009","name":"BELCASTRO","lat":39.0191,"lng":16.7874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"065","name":"JACURSO","lat":38.847,"lng":16.3809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"083","name":"MOTTA SANTA LUCIA","lat":39.0891,"lng":16.2884,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"025","name":"CENTRACHE","lat":38.7296,"lng":16.4305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"099","name":"PLATANIA","lat":39.0065,"lng":16.321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"080","name":"MONTAURO","lat":38.7499,"lng":16.5141,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"127","name":"SELLIA MARINA","lat":38.9064,"lng":16.7436,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"146","name":"TAVERNA","lat":39.021,"lng":16.5827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"134","name":"SORBO SAN BASILE","lat":39.0201,"lng":16.569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"039","name":"CURINGA","lat":38.8274,"lng":16.3142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"074","name":"MARTIRANO LOMBARDO","lat":39.0758,"lng":16.2328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"094","name":"PETRIZZI","lat":38.702,"lng":16.4727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"131","name":"SETTINGIANO","lat":38.9126,"lng":16.5146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"027","name":"CERVA","lat":39.025,"lng":16.7446,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"059","name":"GIRIFALCO","lat":38.8253,"lng":16.425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"048","name":"FEROLETO ANTICO","lat":38.9625,"lng":16.3884,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"068","name":"MAGISANO","lat":39.0127,"lng":16.6282,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"020","name":"CARLOPOLI","lat":39.0578,"lng":16.4558,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"002","name":"ALBI","lat":39.025,"lng":16.5956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"072","name":"MARCELLINARA","lat":38.9278,"lng":16.4903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"077","name":"MIGLIERINA","lat":38.9492,"lng":16.4727,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"042","name":"DAVOLI","lat":38.6484,"lng":16.487,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"063","name":"ISCA SULLO IONIO","lat":38.6009,"lng":16.5161,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"034","name":"CORTALE","lat":38.8393,"lng":16.4123,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"008","name":"BADOLATO","lat":38.5692,"lng":16.5253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"005","name":"ANDALI","lat":39.0146,"lng":16.7692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"017","name":"CARAFFA DI CATANZARO","lat":38.8824,"lng":16.4864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"118","name":"SANT'ANDREA APOSTOLO DELLO IONIO","lat":38.6235,"lng":16.5297,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"024","name":"CENADI","lat":38.7206,"lng":16.4181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"036","name":"CROPANI","lat":38.9689,"lng":16.7822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"137","name":"SOVERATO","lat":38.6878,"lng":16.55,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"007","name":"ARGUSTO","lat":38.6819,"lng":16.4363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"143","name":"STALETTÌ","lat":38.764,"lng":16.5409,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"012","name":"BOTRICELLO","lat":38.9364,"lng":16.8569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"033","name":"CONFLENTI","lat":39.0709,"lng":16.2875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"129","name":"SERRASTRETTA","lat":38.996,"lng":16.4044,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"123","name":"SATRIANO","lat":38.668,"lng":16.4821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"004","name":"AMATO","lat":38.9428,"lng":16.4631,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"139","name":"SOVERIA SIMERI","lat":38.9478,"lng":16.6788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"133","name":"SIMERI CRICHI","lat":38.9561,"lng":16.6421,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"056","name":"GASPERINA","lat":38.7405,"lng":16.507,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"117","name":"SANTA CATERINA DELLO IONIO","lat":38.5334,"lng":16.5213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"081","name":"MONTEPAONE","lat":38.7215,"lng":16.4999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"089","name":"PALERMITI","lat":38.7499,"lng":16.4531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"011","name":"BORGIA","lat":38.8274,"lng":16.5097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"071","name":"MARCEDUSA","lat":39.0289,"lng":16.8372,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"073","name":"MARTIRANO","lat":39.0821,"lng":16.2484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"018","name":"CARDINALE","lat":38.651,"lng":16.3857,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"151","name":"VALLEFIORITA","lat":38.775,"lng":16.4598,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"110","name":"SAN MANGO D'AQUINO","lat":39.0629,"lng":16.1942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"116","name":"SAN SOSTENE","lat":38.6384,"lng":16.4875,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"003","name":"AMARONI","lat":38.7942,"lng":16.4489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"043","name":"DECOLLATURA","lat":39.0489,"lng":16.3559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"047","name":"FALERNA","lat":39.0034,"lng":16.172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"087","name":"NOCERA TERINESE","lat":39.0365,"lng":16.1596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"147","name":"TIRIOLO","lat":38.9493,"lng":16.5102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"122","name":"SAN VITO SULLO IONIO","lat":38.7128,"lng":16.4106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"030","name":"CICALA","lat":39.0233,"lng":16.4871,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"160","name":"LAMEZIA TERME","lat":38.9745,"lng":16.3181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"114","name":"SAN PIETRO A MAIDA","lat":38.847,"lng":16.3444,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"108","name":"SAN FLORO","lat":38.8388,"lng":16.5195,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"092","name":"PENTONE","lat":38.9869,"lng":16.5835,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"142","name":"SQUILLACE","lat":38.7806,"lng":16.5131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"095","name":"PETRONÀ","lat":39.0432,"lng":16.7582,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"088","name":"OLIVADI","lat":38.7266,"lng":16.4236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"060","name":"GIZZERIA","lat":38.9811,"lng":16.2042,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"130","name":"SERSALE","lat":39.0121,"lng":16.7279,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"079","codice_comu_istat":"023","name":"CATANZARO","lat":38.91,"lng":16.5877,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"079","codice_comu_istat":"069","name":"MAIDA","lat":38.8594,"lng":16.365,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"083","name":"SANTO STEFANO IN ASPROMONTE","lat":38.1703,"lng":15.79,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"069","name":"ROSARNO","lat":38.4873,"lng":15.9764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"010","name":"BIVONGI","lat":38.4844,"lng":16.4535,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"043","name":"LOCRI","lat":38.2364,"lng":16.2599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"045","name":"MARINA DI GIOIOSA IONICA","lat":38.2996,"lng":16.3293,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"047","name":"MARTONE","lat":38.355,"lng":16.2892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"055","name":"OPPIDO MAMERTINA","lat":38.2946,"lng":15.9849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"063","name":"REGGIO DI CALABRIA","lat":38.112701,"lng":15.65172,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"070","name":"SAMO","lat":38.0754,"lng":16.0552,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"049","name":"MELICUCCO","lat":38.4332,"lng":16.0597,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"090","name":"STAITI","lat":37.9999,"lng":16.0333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"048","name":"MELICUCCÀ","lat":38.3049,"lng":15.8822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"027","name":"CINQUEFRONDI","lat":38.4182,"lng":16.0949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"064","name":"RIACE","lat":38.4192,"lng":16.4812,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"059","name":"PLACANICA","lat":38.4165,"lng":16.4472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"016","name":"CALANNA","lat":38.1849,"lng":15.7239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"086","name":"SEMINARA","lat":38.3349,"lng":15.8705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"050","name":"MELITO DI PORTO SALVO","lat":37.9207,"lng":15.7857,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"009","name":"BIANCO","lat":38.0917,"lng":16.1502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"032","name":"FEROLETO DELLA CHIESA","lat":38.4657,"lng":16.0647,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"084","name":"SCIDO","lat":38.2447,"lng":15.9336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"044","name":"MAMMOLA","lat":38.3647,"lng":16.2407,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"058","name":"PAZZANO","lat":38.4757,"lng":16.4519,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"041","name":"LAGANADI","lat":38.1746,"lng":15.7423,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"061","name":"POLISTENA","lat":38.4057,"lng":16.0729,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"036","name":"GERACE","lat":38.2712,"lng":16.2198,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"046","name":"MAROPATI","lat":38.4406,"lng":16.0993,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"033","name":"FERRUZZANO","lat":38.0387,"lng":16.0874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"012","name":"BOVALINO","lat":38.15,"lng":16.1749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"081","name":"SANT'EUFEMIA D'ASPROMONTE","lat":38.2642,"lng":15.8543,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"011","name":"BOVA","lat":37.9963,"lng":15.9328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"072","name":"SAN GIOVANNI DI GERACE","lat":38.3663,"lng":16.2786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"087","name":"SERRATA","lat":38.5126,"lng":16.1001,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"051","name":"MOLOCHIO","lat":38.3083,"lng":16.0302,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"037","name":"GIFFONE","lat":38.439,"lng":16.149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"019","name":"CANDIDONI","lat":38.5066,"lng":16.0872,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"024","name":"CASIGNANA","lat":38.1025,"lng":16.0911,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"030","name":"COSOLETO","lat":38.2758,"lng":15.9299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"022","name":"CARDETO","lat":38.0856,"lng":15.7675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"023","name":"CARERI","lat":38.1777,"lng":16.1188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"071","name":"SAN GIORGIO MORGETO","lat":38.387,"lng":16.106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"078","name":"SANTA CRISTINA D'ASPROMONTE","lat":38.2564,"lng":15.9714,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"042","name":"LAUREANA DI BORRELLO","lat":38.4938,"lng":16.083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"004","name":"ANTONIMINA","lat":38.2718,"lng":16.1482,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"082","name":"SANT'ILARIO DELLO IONIO","lat":38.2193,"lng":16.1956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"034","name":"FIUMARA","lat":38.2138,"lng":15.6945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"053","name":"MONTEBELLO IONICO","lat":37.9842,"lng":15.7587,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"067","name":"ROCCELLA IONICA","lat":38.3231,"lng":16.4017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"057","name":"PALMI","lat":38.3524,"lng":15.8363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"074","name":"SAN LUCA","lat":38.1471,"lng":16.0648,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"001","name":"AFRICO","lat":38.0517,"lng":16.1341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"002","name":"AGNANA CALABRA","lat":38.3038,"lng":16.2238,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"020","name":"CANOLO","lat":38.3161,"lng":16.2008,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"052","name":"MONASTERACE","lat":38.454,"lng":16.5513,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"021","name":"CARAFFA DEL BIANCO","lat":38.0925,"lng":16.0865,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"066","name":"ROCCAFORTE DEL GRECO","lat":38.0481,"lng":15.8964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"075","name":"SAN PIETRO DI CARIDÀ","lat":38.5249,"lng":16.1363,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"005","name":"ARDORE","lat":38.1927,"lng":16.1674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"008","name":"BENESTARE","lat":38.1863,"lng":16.1414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"035","name":"GALATRO","lat":38.4614,"lng":16.1114,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"079","name":"SANT'AGATA DEL BIANCO","lat":38.0942,"lng":16.0825,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"094","name":"TERRANOVA SAPPO MINULIO","lat":38.3225,"lng":16.0069,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"013","name":"BOVA MARINA","lat":37.9314,"lng":15.9185,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"006","name":"BAGALADI","lat":38.0278,"lng":15.8224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"089","name":"SINOPOLI","lat":38.2637,"lng":15.8784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"080","name":"SANT'ALESSIO IN ASPROMONTE","lat":38.1738,"lng":15.7588,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"076","name":"SAN PROCOPIO","lat":38.2824,"lng":15.8913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"065","name":"RIZZICONI","lat":38.4119,"lng":15.9591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"031","name":"DELIANUOVA","lat":38.2354,"lng":15.9174,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"092","name":"STILO","lat":38.4781,"lng":16.4692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"060","name":"PLATÌ","lat":38.2211,"lng":16.0474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"096","name":"VILLA SAN GIOVANNI","lat":38.2171,"lng":15.6369,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"015","name":"BRUZZANO ZEFFIRIO","lat":38.0144,"lng":16.0834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"007","name":"BAGNARA CALABRA","lat":38.2885,"lng":15.8082,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"073","name":"SAN LORENZO","lat":45.7749,"lng":13.4144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"095","name":"VARAPODIO","lat":38.3149,"lng":15.9841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"017","name":"CAMINI","lat":38.4329,"lng":16.484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"091","name":"STIGNANO","lat":38.4172,"lng":16.4713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"039","name":"GIOIOSA IONICA","lat":38.3355,"lng":16.3021,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"077","name":"SAN ROBERTO","lat":38.2116,"lng":15.7385,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"088","name":"SIDERNO","lat":38.2704,"lng":16.2971,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"014","name":"BRANCALEONE","lat":37.9641,"lng":16.1013,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"054","name":"MOTTA SAN GIOVANNI","lat":38.0027,"lng":15.7031,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"028","name":"CITTANOVA","lat":38.3563,"lng":16.0806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"018","name":"CAMPO CALABRO","lat":38.1992,"lng":15.6421,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"056","name":"PALIZZI","lat":37.9671,"lng":15.9872,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"068","name":"ROGHUDI","lat":38.0497,"lng":15.9167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"085","name":"SCILLA","lat":38.2537,"lng":15.7152,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"029","name":"CONDOFURI","lat":38.0053,"lng":15.8584,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"062","name":"PORTIGLIOLA","lat":38.2302,"lng":16.201,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"026","name":"CIMINÀ","lat":38.2461,"lng":16.138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"097","name":"SAN FERDINANDO","lat":38.4826,"lng":15.9186,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"038","name":"GIOIA TAURO","lat":38.425,"lng":15.8999,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"025","name":"CAULONIA","lat":38.3825,"lng":16.4099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"040","name":"GROTTERIA","lat":38.3666,"lng":16.2658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"003","name":"ANOIA","lat":38.436,"lng":16.083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"080","codice_comu_istat":"093","name":"TAURIANOVA","lat":38.3574,"lng":16.0117,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"006","name":"CASTELVETRANO","lat":37.6838,"lng":12.7925,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"018","name":"SALEMI","lat":37.817,"lng":12.8088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"002","name":"BUSETO PALIZZOLO","lat":38.027,"lng":12.7185,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"021","name":"TRAPANI","lat":38.0171,"lng":12.5178,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"024","name":"PETROSINO","lat":37.7089,"lng":12.501,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"023","name":"VITA","lat":37.8725,"lng":12.822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"012","name":"MAZARA DEL VALLO","lat":37.6509,"lng":12.5908,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"020","name":"SAN VITO LO CAPO","lat":38.175,"lng":12.7335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"010","name":"GIBELLINA","lat":37.8136,"lng":12.8702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"015","name":"PARTANNA","lat":37.7289,"lng":12.8896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"007","name":"CUSTONACI","lat":38.0742,"lng":12.6884,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"022","name":"VALDERICE","lat":38.0369,"lng":12.6122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"011","name":"MARSALA","lat":37.7984,"lng":12.4375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"017","name":"SALAPARUTA","lat":37.7591,"lng":13.0106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"014","name":"PANTELLERIA","lat":36.8291,"lng":11.9435,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"004","name":"CAMPOBELLO DI MAZARA","lat":37.6356,"lng":12.7476,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"005","name":"CASTELLAMMARE DEL GOLFO","lat":38.02,"lng":12.8867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"016","name":"POGGIOREALE","lat":37.7652,"lng":13.0369,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"003","name":"CALATAFIMI-SEGESTA","lat":37.9159,"lng":12.8634,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"001","name":"ALCAMO","lat":37.9808,"lng":12.9602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"008","name":"ERICE","lat":38.0365,"lng":12.5836,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"013","name":"PACECO","lat":37.9799,"lng":12.5575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"009","name":"FAVIGNANA","lat":37.9313,"lng":12.3296,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"081","codice_comu_istat":"019","name":"SANTA NINFA","lat":37.7725,"lng":12.8786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"040","name":"GODRANO","lat":37.9043,"lng":13.4294,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"009","name":"BELMONTE MEZZAGNO","lat":38.0478,"lng":13.3885,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"019","name":"CAMPOREALE","lat":37.8983,"lng":13.0948,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"033","name":"CONTESSA ENTELLINA","lat":37.7289,"lng":13.1841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"048","name":"MISILMERI","lat":38.0345,"lng":13.4533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"036","name":"GANGI","lat":37.7972,"lng":14.2057,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"038","name":"GIARDINELLO","lat":38.0892,"lng":13.158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"004","name":"ALTAVILLA MILICIA","lat":38.0421,"lng":13.5489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"065","name":"SAN MAURO CASTELVERDE","lat":37.9169,"lng":14.1914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"079","name":"VILLABATE","lat":38.082,"lng":13.4341,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"071","name":"TERRASINI","lat":38.147,"lng":13.0853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"014","name":"CACCAMO","lat":37.9338,"lng":13.666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"045","name":"LERCARA FRIDDI","lat":37.7482,"lng":13.6028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"029","name":"CHIUSA SCLAFANI","lat":37.6781,"lng":13.2711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"050","name":"MONTELEPRE","lat":38.0899,"lng":13.1723,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"037","name":"GERACI SICULO","lat":37.8574,"lng":14.1542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"046","name":"MARINEO","lat":37.9516,"lng":13.4151,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"012","name":"BOMPIETRO","lat":37.7438,"lng":14.0955,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"054","name":"PARTINICO","lat":38.045,"lng":13.1209,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"075","name":"USTICA","lat":38.7092,"lng":13.193,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"035","name":"FICARAZZI","lat":38.0893,"lng":13.4688,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"063","name":"SAN CIPIRELLO","lat":37.9633,"lng":13.177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"025","name":"CASTRONOVO DI SICILIA","lat":39.780418,"lng":16.321131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"070","name":"TERMINI IMERESE","lat":37.984,"lng":13.6961,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"057","name":"PIANA DEGLI ALBANESI","lat":37.9965,"lng":13.2837,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"018","name":"CAMPOFIORITO","lat":37.7549,"lng":13.2697,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"026","name":"CEFALÀ DIANA","lat":37.9167,"lng":13.4642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"021","name":"CARINI","lat":38.1316,"lng":13.1809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"015","name":"CALTAVUTURO","lat":37.822,"lng":13.8911,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"007","name":"BALESTRATE","lat":38.0524,"lng":13.0082,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"006","name":"BAGHERIA","lat":38.0784,"lng":13.5068,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"043","name":"ISOLA DELLE FEMMINE","lat":38.1945,"lng":13.2499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"076","name":"VALLEDOLMO","lat":37.7486,"lng":13.8288,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"082","name":"BLUFI","lat":37.7531,"lng":14.0739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"022","name":"CASTELBUONO","lat":37.9325,"lng":14.0873,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"060","name":"PRIZZI","lat":37.7221,"lng":13.4328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"077","name":"VENTIMIGLIA DI SICILIA","lat":37.9231,"lng":13.5693,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"081","name":"SCILLATO","lat":37.8575,"lng":13.9055,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"010","name":"BISACQUINO","lat":37.7036,"lng":13.2606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"003","name":"ALIMINUSA","lat":37.865,"lng":13.7822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"080","name":"VILLAFRATI","lat":37.9081,"lng":13.4856,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"039","name":"GIULIANA","lat":37.6741,"lng":13.2376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"034","name":"CORLEONE","lat":37.8125,"lng":13.3015,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"052","name":"PALAZZO ADRIANO","lat":37.6822,"lng":13.38,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"041","name":"GRATTERI","lat":37.9661,"lng":13.9738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"020","name":"CAPACI","lat":38.1716,"lng":13.2393,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"053","name":"PALERMO","lat":38.1167,"lng":13.3667,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"082","codice_comu_istat":"067","name":"SANTA FLAVIA","lat":38.0825,"lng":13.5274,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"058","name":"POLIZZI GENEROSA","lat":37.8124,"lng":14.0002,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"005","name":"ALTOFONTE","lat":38.043,"lng":13.2976,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"069","name":"SCLAFANI BAGNI","lat":37.8211,"lng":13.8559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"078","name":"VICARI","lat":37.8229,"lng":13.5664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"051","name":"MONTEMAGGIORE BELSITO","lat":37.8475,"lng":13.7622,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"059","name":"POLLINA","lat":37.9934,"lng":14.1433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"049","name":"MONREALE","lat":38.0813,"lng":13.2896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"066","name":"SANTA CRISTINA GELA","lat":37.9852,"lng":13.3287,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"073","name":"TRABIA","lat":37.9953,"lng":13.6543,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"042","name":"ISNELLO","lat":37.9447,"lng":14.0066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"074","name":"TRAPPETO","lat":38.0699,"lng":13.0389,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"032","name":"COLLESANO","lat":37.9196,"lng":13.9366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"061","name":"ROCCAMENA","lat":37.8355,"lng":13.1538,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"011","name":"BOLOGNETTA","lat":37.9663,"lng":13.4567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"056","name":"PETRALIA SOTTANA","lat":37.8082,"lng":14.0912,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"008","name":"BAUCINA","lat":37.9261,"lng":13.5381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"017","name":"CAMPOFELICE DI ROCCELLA","lat":37.9911,"lng":13.8863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"072","name":"TORRETTA","lat":38.1314,"lng":13.2327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"064","name":"SAN GIUSEPPE JATO","lat":37.9715,"lng":13.1842,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"055","name":"PETRALIA SOPRANA","lat":37.798,"lng":14.1076,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"027","name":"CEFALÙ","lat":38.0395,"lng":14.0219,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"044","name":"LASCARI","lat":38.0003,"lng":13.9403,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"047","name":"MEZZOJUSO","lat":37.8656,"lng":13.4656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"031","name":"CINISI","lat":38.1574,"lng":13.1083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"030","name":"CIMINNA","lat":37.8975,"lng":13.5605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"068","name":"SCIARA","lat":37.916,"lng":13.7626,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"001","name":"ALIA","lat":37.7811,"lng":13.7149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"013","name":"BORGETTO","lat":38.0481,"lng":13.1446,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"002","name":"ALIMENA","lat":37.6949,"lng":14.1145,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"062","name":"ROCCAPALUMBA","lat":37.807,"lng":13.6394,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"023","name":"CASTELDACCIA","lat":38.0538,"lng":13.5295,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"024","name":"CASTELLANA SICULA","lat":37.7819,"lng":14.043,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"016","name":"CAMPOFELICE DI FITALIA","lat":37.8267,"lng":13.4862,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"082","codice_comu_istat":"028","name":"CERDA","lat":37.9036,"lng":13.815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"018","name":"CONDRÒ","lat":38.1743,"lng":15.3278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"033","name":"GIOIOSA MAREA","lat":38.1739,"lng":14.8964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"043","name":"MALFA","lat":38.579,"lng":14.8336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"031","name":"GALLODORO","lat":37.9018,"lng":15.2931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"008","name":"CAPIZZI","lat":37.8489,"lng":14.4791,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"087","name":"SANTA MARINA SALINA","lat":38.5628,"lng":14.8702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"012","name":"CASALVECCHIO SICULO","lat":37.9592,"lng":15.3231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"065","name":"PAGLIARA","lat":37.9866,"lng":15.3606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"020","name":"FICARRA","lat":38.1091,"lng":14.8289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"015","name":"CASTELMOLA","lat":37.8591,"lng":15.2779,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"039","name":"LIBRIZZI","lat":38.0969,"lng":14.9591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"026","name":"FRAZZANÒ","lat":38.0732,"lng":14.7438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"102","name":"UCRIA","lat":38.0469,"lng":14.8813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"101","name":"TUSA","lat":37.9833,"lng":14.2364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"052","name":"MISTRETTA","lat":37.9295,"lng":14.3625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"075","name":"RODÌ MILICI","lat":38.0825,"lng":15.168,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"079","name":"SAN MARCO D'ALUNZIO","lat":38.0719,"lng":14.7003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"108","name":"TORRENOVA","lat":38.0907,"lng":14.6776,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"037","name":"LENI","lat":38.556,"lng":14.8259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"022","name":"FLORESTA","lat":37.9871,"lng":14.9082,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"083","name":"SANTA DOMENICA VITTORIA","lat":37.917,"lng":14.9625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"089","name":"SANTA TERESA DI RIVA","lat":37.9419,"lng":15.3624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"098","name":"TORREGROTTA","lat":38.2117,"lng":15.348,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"073","name":"ROCCAVALDINA","lat":38.1817,"lng":15.3723,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"032","name":"GIARDINI-NAXOS","lat":37.8253,"lng":15.2667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"076","name":"ROMETTA","lat":44.2014,"lng":10.0528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"010","name":"CAPRI LEONE","lat":38.0874,"lng":14.7297,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"014","name":"CASTELL'UMBERTO","lat":38.0849,"lng":14.8067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"051","name":"MIRTO","lat":38.0855,"lng":14.7523,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"003","name":"ALÌ TERME","lat":38.0063,"lng":15.4236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"092","name":"SAPONARA","lat":38.1955,"lng":15.4338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"029","name":"GAGGI","lat":37.8599,"lng":15.2216,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"103","name":"VALDINA","lat":38.1919,"lng":15.3712,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"054","name":"MONFORTE SAN GIORGIO","lat":38.1575,"lng":15.3822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"057","name":"MONTALBANO ELICONA","lat":38.0252,"lng":15.0173,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"030","name":"GALATI MAMERTINO","lat":38.0331,"lng":14.7717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"005","name":"BARCELLONA POZZO DI GOTTO","lat":38.1488,"lng":15.2113,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"104","name":"VENETICO","lat":38.1932,"lng":15.381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"049","name":"MILAZZO","lat":38.2194,"lng":15.2404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"095","name":"SINAGRA","lat":38.0841,"lng":14.8492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"055","name":"MONGIUFFI MELIA","lat":37.9045,"lng":15.2754,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"085","name":"SANT'ALESSIO SICULO","lat":37.9251,"lng":15.3495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"106","name":"TERME VIGLIATORE","lat":38.1371,"lng":15.1575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"021","name":"FIUMEDINISI","lat":38.0258,"lng":15.38,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"077","name":"SAN FILIPPO DEL MELA","lat":38.1692,"lng":15.2752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"040","name":"LIMINA","lat":37.9419,"lng":15.272,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"070","name":"REITANO","lat":37.9731,"lng":14.3442,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"036","name":"ITALA","lat":38.0511,"lng":15.4369,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"001","name":"ALCARA LI FUSI","lat":38.021,"lng":14.7026,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"059","name":"MOTTA D'AFFERMO","lat":37.9815,"lng":14.3028,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"078","name":"SAN FRATELLO","lat":38.0181,"lng":14.5991,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"099","name":"TORTORICI","lat":38.0354,"lng":14.8222,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"062","name":"NOVARA DI SICILIA","lat":38.0149,"lng":15.1291,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"017","name":"CESARÒ","lat":37.8445,"lng":14.715,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"044","name":"MALVAGNA","lat":37.9177,"lng":15.055,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"056","name":"MONTAGNAREALE","lat":38.1333,"lng":14.9475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"042","name":"LONGI","lat":38.0284,"lng":14.7531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"011","name":"CARONIA","lat":38.0243,"lng":14.441,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"090","name":"SAN TEODORO","lat":37.8475,"lng":14.7001,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"093","name":"SAVOCA","lat":37.954,"lng":15.3404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"045","name":"MANDANICI","lat":38.0014,"lng":15.3183,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"025","name":"FRANCAVILLA DI SICILIA","lat":37.9016,"lng":15.1359,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"053","name":"MOIO ALCANTARA","lat":37.9013,"lng":15.0524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"038","name":"LETOJANNI","lat":37.8795,"lng":15.3056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"105","name":"VILLAFRANCA TIRRENA","lat":38.2361,"lng":15.4325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"006","name":"BASICÒ","lat":38.0615,"lng":15.0634,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"050","name":"MILITELLO ROSMARINO","lat":38.0472,"lng":14.6778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"063","name":"OLIVERI","lat":38.1247,"lng":15.0615,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"100","name":"TRIPI","lat":38.0485,"lng":15.0983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"084","name":"SANT'AGATA DI MILITELLO","lat":38.0688,"lng":14.6345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"072","name":"ROCCALUMERA","lat":37.9693,"lng":15.3883,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"071","name":"ROCCAFIORITA","lat":37.9321,"lng":15.2683,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"004","name":"ANTILLO","lat":37.9769,"lng":15.2443,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"024","name":"FORZA D'AGRÒ","lat":37.915,"lng":15.3339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"048","name":"MESSINA","lat":38.1922,"lng":15.5566,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"013","name":"CASTEL DI LUCIO","lat":37.8875,"lng":14.3131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"047","name":"MERÌ","lat":38.1671,"lng":15.2508,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"067","name":"PETTINEO","lat":37.9672,"lng":14.2905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"081","name":"SAN PIERO PATTI","lat":38.0516,"lng":14.9679,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"060","name":"NASO","lat":38.1218,"lng":14.7901,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"019","name":"FALCONE","lat":38.1181,"lng":15.08,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"064","name":"PACE DEL MELA","lat":38.1811,"lng":15.307,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"027","name":"FURCI SICULO","lat":37.9614,"lng":15.3803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"096","name":"SPADAFORA","lat":38.222,"lng":15.3771,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"107","name":"ACQUEDOLCI","lat":38.0572,"lng":14.5896,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"082","name":"SAN SALVATORE DI FITALIA","lat":38.0657,"lng":14.7785,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"028","name":"FURNARI","lat":38.1055,"lng":15.1246,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"074","name":"ROCCELLA VALDEMONE","lat":37.9345,"lng":15.0106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"097","name":"TAORMINA","lat":37.8531,"lng":15.2878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"091","name":"SANTO STEFANO DI CAMASTRA","lat":38.0141,"lng":14.3479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"080","name":"SAN PIER NICETO","lat":38.1587,"lng":15.3514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"009","name":"CAPO D'ORLANDO","lat":38.1635,"lng":14.746,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"046","name":"MAZZARRÀ SANT'ANDREA","lat":38.0895,"lng":15.1346,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"002","name":"ALÌ","lat":38.027,"lng":15.417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"088","name":"SANT'ANGELO DI BROLO","lat":38.1145,"lng":14.8844,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"007","name":"BROLO","lat":38.1566,"lng":14.8266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"023","name":"FONDACHELLI-FANTINA","lat":38.0269,"lng":15.177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"061","name":"NIZZA DI SICILIA","lat":37.9961,"lng":15.4128,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"058","name":"MOTTA CAMASTRA","lat":37.8932,"lng":15.1725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"066","name":"PATTI","lat":38.1413,"lng":14.9658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"034","name":"GRANITI","lat":37.8903,"lng":15.2258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"068","name":"PIRAINO","lat":38.1614,"lng":14.8625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"069","name":"RACCUJA","lat":38.0555,"lng":14.9109,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"094","name":"SCALETTA ZANCLEA","lat":38.0467,"lng":15.4649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"041","name":"LIPARI","lat":38.4674,"lng":14.9539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"035","name":"GUALTIERI SICAMINÒ","lat":38.1638,"lng":15.3178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"086","name":"SANTA LUCIA DEL MELA","lat":38.1408,"lng":15.2825,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"083","codice_comu_istat":"016","name":"CASTROREALE","lat":38.0992,"lng":15.2106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"016","name":"COMITINI","lat":37.4091,"lng":13.6439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"025","name":"MONTEVAGO","lat":37.7022,"lng":12.9895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"009","name":"CAMMARATA","lat":37.6311,"lng":13.6324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"007","name":"CALTABELLOTTA","lat":37.5786,"lng":13.2176,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"011","name":"CANICATTÌ","lat":37.3609,"lng":13.8502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"030","name":"RAFFADALI","lat":37.4043,"lng":13.5317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"020","name":"LAMPEDUSA E LINOSA","lat":35.5027,"lng":12.609,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"003","name":"ARAGONA","lat":37.4032,"lng":13.6178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"029","name":"RACALMUTO","lat":37.4088,"lng":13.7331,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"015","name":"CIANCIANA","lat":37.5214,"lng":13.4346,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"026","name":"NARO","lat":37.2948,"lng":13.7952,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"004","name":"BIVONA","lat":37.6184,"lng":13.4406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"043","name":"VILLAFRANCA SICULA","lat":37.5871,"lng":13.2903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"038","name":"SANTA MARGHERITA DI BELICE","lat":37.6925,"lng":13.0237,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"022","name":"LUCCA SICULA","lat":37.5797,"lng":13.3063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"032","name":"REALMONTE","lat":37.3103,"lng":13.4628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"027","name":"PALMA DI MONTECHIARO","lat":37.1938,"lng":13.766,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"031","name":"RAVANUSA","lat":37.2678,"lng":13.9699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"039","name":"SANT'ANGELO MUXARO","lat":37.4795,"lng":13.5462,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"037","name":"SANTA ELISABETTA","lat":37.4331,"lng":13.5561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"035","name":"SAN BIAGIO PLATANI","lat":37.5102,"lng":13.5264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"040","name":"SANTO STEFANO QUISQUINA","lat":37.6244,"lng":13.4913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"018","name":"GROTTE","lat":37.4031,"lng":13.7015,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"041","name":"SCIACCA","lat":37.5057,"lng":13.0803,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"034","name":"SAMBUCA DI SICILIA","lat":37.6506,"lng":13.112,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"033","name":"RIBERA","lat":37.5027,"lng":13.266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"002","name":"ALESSANDRIA DELLA ROCCA","lat":37.5675,"lng":13.4542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"012","name":"CASTELTERMINI","lat":37.5409,"lng":13.6433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"042","name":"SICULIANA","lat":37.3356,"lng":13.4225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"028","name":"PORTO EMPEDOCLE","lat":37.2866,"lng":13.5267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"001","name":"AGRIGENTO","lat":37.3111,"lng":13.5767,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"021","name":"LICATA","lat":37.1023,"lng":13.9375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"013","name":"CASTROFILIPPO","lat":37.3492,"lng":13.7492,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"008","name":"CAMASTRA","lat":37.2533,"lng":13.7927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"036","name":"SAN GIOVANNI GEMINI","lat":37.6289,"lng":13.6401,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"005","name":"BURGIO","lat":37.6006,"lng":13.2911,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"024","name":"MONTALLEGRO","lat":37.3936,"lng":13.3504,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"010","name":"CAMPOBELLO DI LICATA","lat":37.2595,"lng":13.9192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"006","name":"CALAMONACI","lat":37.5255,"lng":13.2903,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"014","name":"CATTOLICA ERACLEA","lat":37.4384,"lng":13.3957,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"023","name":"MENFI","lat":37.5989,"lng":12.9685,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"017","name":"FAVARA","lat":37.3189,"lng":13.6631,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"084","codice_comu_istat":"019","name":"JOPPOLO GIANCAXIO","lat":37.3876,"lng":13.5557,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"001","name":"ACQUAVIVA PLATANI","lat":37.5728,"lng":13.7025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"003","name":"BUTERA","lat":37.1898,"lng":14.1829,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"020","name":"SUTERA","lat":37.5246,"lng":13.7353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"005","name":"CAMPOFRANCO","lat":37.5124,"lng":13.7134,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"011","name":"MONTEDORO","lat":37.4544,"lng":13.8177,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"006","name":"DELIA","lat":37.3573,"lng":13.9236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"018","name":"SERRADIFALCO","lat":37.455,"lng":13.8814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"017","name":"SANTA CATERINA VILLARMOSA","lat":37.5909,"lng":14.0327,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"010","name":"MILENA","lat":37.4708,"lng":13.7361,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"012","name":"MUSSOMELI","lat":37.5789,"lng":13.7522,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"015","name":"RIESI","lat":37.2831,"lng":14.0831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"022","name":"VILLALBA","lat":41.9588,"lng":12.7338,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"007","name":"GELA","lat":37.0662,"lng":14.2502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"021","name":"VALLELUNGA PRATAMENO","lat":37.6831,"lng":13.8325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"014","name":"RESUTTANO","lat":37.6799,"lng":14.0303,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"004","name":"CALTANISSETTA","lat":37.49,"lng":14.0632,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"008","name":"MARIANOPOLI","lat":37.5986,"lng":13.9167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"019","name":"SOMMATINO","lat":37.3343,"lng":13.9945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"002","name":"BOMPENSIERE","lat":37.4727,"lng":13.7813,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"016","name":"SAN CATALDO","lat":40.7464,"lng":15.6677,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"013","name":"NISCEMI","lat":37.149,"lng":14.3865,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"085","codice_comu_istat":"009","name":"MAZZARINO","lat":37.3055,"lng":14.215,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"013","name":"NISSORIA","lat":37.6563,"lng":14.4483,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"003","name":"ASSORO","lat":37.6284,"lng":14.4239,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"001","name":"AGIRA","lat":37.6574,"lng":14.5225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"010","name":"GAGLIANO CASTELFERRATO","lat":37.7131,"lng":14.5377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"002","name":"AIDONE","lat":37.4178,"lng":14.4443,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"011","name":"LEONFORTE","lat":37.64,"lng":14.3931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"015","name":"PIETRAPERZIA","lat":37.4211,"lng":14.138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"008","name":"CERAMI","lat":37.8095,"lng":14.5082,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"020","name":"VILLAROSA","lat":37.5868,"lng":14.1732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"017","name":"SPERLINGA","lat":37.7694,"lng":14.3484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"012","name":"NICOSIA","lat":37.7486,"lng":14.3981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"014","name":"PIAZZA ARMERINA","lat":37.3835,"lng":14.3697,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"009","name":"ENNA","lat":37.5676,"lng":14.2796,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"007","name":"CENTURIPE","lat":37.6241,"lng":14.74,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"016","name":"REGALBUTO","lat":37.6509,"lng":14.6409,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"006","name":"CATENANUOVA","lat":37.5709,"lng":14.693,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"019","name":"VALGUARNERA CAROPEPE","lat":37.4967,"lng":14.3897,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"005","name":"CALASCIBETTA","lat":37.5921,"lng":14.2716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"018","name":"TROINA","lat":37.7867,"lng":14.5915,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"086","codice_comu_istat":"004","name":"BARRAFRANCA","lat":37.3757,"lng":14.201,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"047","name":"SANTA MARIA DI LICODIA","lat":37.616,"lng":14.8914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"045","name":"SANT'AGATA LI BATTIATI","lat":37.5589,"lng":15.0815,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"010","name":"CALATABIANO","lat":37.8221,"lng":15.2289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"014","name":"CASTIGLIONE DI SICILIA","lat":37.8831,"lng":15.1224,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"022","name":"MALETTO","lat":37.8299,"lng":14.8659,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"035","name":"PIEDIMONTE ETNEO","lat":37.808,"lng":15.1775,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"020","name":"LICODIA EUBEA","lat":37.1583,"lng":14.7071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"018","name":"GRAMMICHELE","lat":37.2147,"lng":14.6364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"009","name":"BRONTE","lat":37.7872,"lng":14.834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"013","name":"CASTEL DI IUDICA","lat":37.4947,"lng":14.6469,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"003","name":"ACI CATENA","lat":37.6067,"lng":15.1421,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"043","name":"SAN MICHELE DI GANZARIA","lat":37.2825,"lng":14.4264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"017","name":"GIARRE","lat":37.7265,"lng":15.1838,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"027","name":"MINEO","lat":37.2664,"lng":14.6909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"025","name":"MILITELLO IN VAL DI CATANIA","lat":37.2759,"lng":14.7942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"046","name":"SANT'ALFIO","lat":37.7434,"lng":15.1427,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"006","name":"ADRANO","lat":37.6628,"lng":14.8356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"016","name":"FIUMEFREDDO DI SICILIA","lat":37.7951,"lng":15.2103,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"036","name":"RADDUSA","lat":37.4741,"lng":14.5333,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"012","name":"CAMPOROTONDO ETNEO","lat":37.5667,"lng":15.0041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"026","name":"MILO","lat":37.7244,"lng":15.1167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"050","name":"TRECASTAGNI","lat":37.6197,"lng":15.0789,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"023","name":"MASCALI","lat":37.7575,"lng":15.196,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"044","name":"SAN PIETRO CLARENZA","lat":37.57,"lng":15.0238,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"024","name":"MASCALUCIA","lat":37.5792,"lng":15.0486,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"053","name":"VIAGRANDE","lat":37.6089,"lng":15.0975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"052","name":"VALVERDE","lat":46.323662,"lng":11.35158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"034","name":"PEDARA","lat":37.619,"lng":15.0608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"001","name":"ACI BONACCORSI","lat":37.5985,"lng":15.1081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"037","name":"RAMACCA","lat":37.3852,"lng":14.6935,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"004","name":"ACIREALE","lat":37.6129,"lng":15.1658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"028","name":"MIRABELLA IMBACCARI","lat":37.3287,"lng":14.4473,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"051","name":"TREMESTIERI ETNEO","lat":37.5761,"lng":15.0731,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"038","name":"RANDAZZO","lat":37.8777,"lng":14.9503,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"032","name":"PALAGONIA","lat":37.3294,"lng":14.7457,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"002","name":"ACI CASTELLO","lat":37.5556,"lng":15.1465,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"054","name":"VIZZINI","lat":37.162,"lng":14.7506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"005","name":"ACI SANT'ANTONIO","lat":37.6065,"lng":15.1261,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"030","name":"MOTTA SANT'ANASTASIA","lat":37.5142,"lng":14.9667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"015","name":"CATANIA","lat":37.5021,"lng":15.0872,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"049","name":"SCORDIA","lat":37.2992,"lng":14.8417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"029","name":"MISTERBIANCO","lat":37.519,"lng":15.0079,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"033","name":"PATERNÒ","lat":37.567799,"lng":14.90554,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"011","name":"CALTAGIRONE","lat":37.2372,"lng":14.5131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"058","name":"RAGALNA","lat":37.6356,"lng":14.9478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"042","name":"SAN GREGORIO DI CATANIA","lat":37.5663,"lng":15.1096,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"057","name":"MANIACE","lat":37.8845,"lng":14.7987,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"039","name":"RIPOSTO","lat":37.7318,"lng":15.2034,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"048","name":"SANTA VENERINA","lat":37.6873,"lng":15.1408,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"007","name":"BELPASSO","lat":37.5958,"lng":14.9842,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"040","name":"SAN CONO","lat":38.6828,"lng":16.0135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"019","name":"GRAVINA DI CATANIA","lat":37.5583,"lng":15.0518,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"056","name":"MAZZARRONE","lat":37.0947,"lng":14.5659,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"055","name":"ZAFFERANA ETNEA","lat":37.6905,"lng":15.1051,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"008","name":"BIANCAVILLA","lat":37.6463,"lng":14.868,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"021","name":"LINGUAGLOSSA","lat":37.8427,"lng":15.1417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"041","name":"SAN GIOVANNI LA PUNTA","lat":37.5779,"lng":15.0944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"087","codice_comu_istat":"031","name":"NICOLOSI","lat":37.6143,"lng":15.0264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"002","name":"CHIARAMONTE GULFI","lat":37.0325,"lng":14.7022,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"012","name":"VITTORIA","lat":36.9498,"lng":14.5354,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"001","name":"ACATE","lat":37.0263,"lng":14.4939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"007","name":"MONTEROSSO ALMO","lat":37.0908,"lng":14.7655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"006","name":"MODICA","lat":36.859,"lng":14.7608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"008","name":"POZZALLO","lat":36.7261,"lng":14.8456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"010","name":"SANTA CROCE CAMERINA","lat":36.8284,"lng":14.5251,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"005","name":"ISPICA","lat":36.7856,"lng":14.9072,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"004","name":"GIARRATANA","lat":37.0481,"lng":14.7937,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"003","name":"COMISO","lat":36.9472,"lng":14.6058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"009","name":"RAGUSA","lat":36.9262,"lng":14.7283,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"088","codice_comu_istat":"011","name":"SCICLI","lat":36.7914,"lng":14.7024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"001","name":"AUGUSTA","lat":37.2338,"lng":15.2189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"010","name":"FRANCOFONTE","lat":37.2275,"lng":14.8814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"013","name":"NOTO","lat":36.8918,"lng":15.0709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"015","name":"PALAZZOLO ACREIDE","lat":37.0634,"lng":14.9044,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"005","name":"CANICATTINI BAGNI","lat":37.0341,"lng":15.0642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"003","name":"BUCCHERI","lat":37.1263,"lng":14.8508,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"009","name":"FLORIDIA","lat":37.0895,"lng":15.1592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"021","name":"PRIOLO GARGALLO","lat":37.1567,"lng":15.188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"019","name":"SORTINO","lat":37.1577,"lng":15.0269,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"014","name":"PACHINO","lat":36.7158,"lng":15.0898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"002","name":"AVOLA","lat":36.9099,"lng":15.1343,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"004","name":"BUSCEMI","lat":37.0857,"lng":14.8841,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"008","name":"FERLA","lat":37.1198,"lng":14.9398,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"012","name":"MELILLI","lat":37.1808,"lng":15.1264,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"018","name":"SOLARINO","lat":37.1031,"lng":15.1199,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"020","name":"PORTOPALO DI CAPO PASSERO","lat":36.6834,"lng":15.1355,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"007","name":"CASSARO","lat":37.1062,"lng":14.9482,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"011","name":"LENTINI","lat":37.2866,"lng":15.0005,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"006","name":"CARLENTINI","lat":37.2737,"lng":15.0159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"017","name":"SIRACUSA","lat":37.0665,"lng":15.2843,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"089","codice_comu_istat":"016","name":"ROSOLINI","lat":36.8213,"lng":14.9511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"076","name":"URI","lat":40.6429,"lng":8.4822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"055","name":"PATTADA","lat":40.5828,"lng":9.1139,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"034","name":"LAERRU","lat":40.8181,"lng":8.8364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"058","name":"PORTO TORRES","lat":40.8345,"lng":8.41,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"011","name":"BONNANARO","lat":40.5329,"lng":8.7668,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"073","name":"TORRALBA","lat":40.5141,"lng":8.7664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"051","name":"OSSI","lat":40.6759,"lng":8.5975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"069","name":"SORSO","lat":40.7967,"lng":8.575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"023","name":"CASTELSARDO","lat":40.9128,"lng":8.7133,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"082","name":"VIDDALBA","lat":40.9183,"lng":8.8951,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"067","name":"SENNORI","lat":40.7898,"lng":8.5916,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"020","name":"BURGOS","lat":40.3917,"lng":8.9953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"068","name":"SILIGO","lat":40.5774,"lng":8.728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"013","name":"BONORVA","lat":40.4174,"lng":8.7692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"007","name":"BANARI","lat":40.5716,"lng":8.7015,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"022","name":"CARGEGHE","lat":40.6711,"lng":8.6149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"030","name":"GIAVE","lat":40.4522,"lng":8.7499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"039","name":"MARTIS","lat":40.7799,"lng":8.8092,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"046","name":"NULVI","lat":40.7848,"lng":8.7449,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"052","name":"OZIERI","lat":40.587,"lng":9.0024,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"079","name":"VALLEDORIA","lat":40.9299,"lng":8.8242,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"048","name":"OLMEDO","lat":40.6529,"lng":8.3817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"059","name":"POZZOMAGGIORE","lat":40.3957,"lng":8.6618,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"033","name":"ITTIRI","lat":40.5939,"lng":8.5696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"019","name":"BULZI","lat":40.8481,"lng":8.8311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"086","name":"TERGU","lat":40.8686,"lng":8.7178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"032","name":"ITTIREDDU","lat":40.545,"lng":8.9035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"040","name":"MONTELEONE ROCCA DORIA","lat":40.4727,"lng":8.5616,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"043","name":"MUROS","lat":40.6792,"lng":8.6185,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"044","name":"NUGHEDU SAN NICOLÒ","lat":40.5545,"lng":8.906,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"026","name":"CODRONGIANOS","lat":40.6585,"lng":8.681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"089","name":"STINTINO","lat":40.9403,"lng":8.2266,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"025","name":"CHIARAMONTI","lat":40.7502,"lng":8.8197,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"010","name":"BESSUDE","lat":40.5564,"lng":8.7278,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"005","name":"ARDARA","lat":40.6229,"lng":8.8102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"056","name":"PERFUGAS","lat":40.8346,"lng":8.8839,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"016","name":"BOTTIDDA","lat":40.3925,"lng":9.0095,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"027","name":"COSSOINE","lat":40.4298,"lng":8.7157,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"015","name":"BORUTTA","lat":40.5234,"lng":8.7445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"066","name":"SEMESTENE","lat":40.3994,"lng":8.7262,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"064","name":"SASSARI","lat":40.7272,"lng":8.5585,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"088","name":"ERULA","lat":40.7924,"lng":8.9433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"003","name":"ALGHERO","lat":40.558,"lng":8.3222,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"053","name":"PADRIA","lat":40.3975,"lng":8.6309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"008","name":"BENETUTTI","lat":40.4575,"lng":9.1699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"075","name":"TULA","lat":40.7336,"lng":8.985,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"072","name":"TISSI","lat":40.6778,"lng":8.5642,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"045","name":"NULE","lat":40.4627,"lng":9.191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"060","name":"PUTIFIGARI","lat":40.5635,"lng":8.4622,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"004","name":"ANELA","lat":40.4428,"lng":9.0569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"012","name":"BONO","lat":40.4166,"lng":9.0297,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"050","name":"OSILO","lat":40.7421,"lng":8.6722,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"018","name":"BULTEI","lat":40.4574,"lng":9.0658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"057","name":"PLOAGHE","lat":40.6653,"lng":8.7428,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"042","name":"MORES","lat":40.5484,"lng":8.8331,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"065","name":"SEDINI","lat":40.8513,"lng":8.8159,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"077","name":"USINI","lat":40.6652,"lng":8.5416,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"028","name":"ESPORLATU","lat":40.3856,"lng":8.991,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"061","name":"ROMANA","lat":40.4848,"lng":8.5879,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"029","name":"FLORINAS","lat":40.6506,"lng":8.6663,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"024","name":"CHEREMULE","lat":40.505,"lng":8.7252,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"031","name":"ILLORAI","lat":40.355,"lng":9.002,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"087","name":"SANTA MARIA COGHINAS","lat":40.9044,"lng":8.8686,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"078","name":"VILLANOVA MONTELEONE","lat":40.5049,"lng":8.4719,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"071","name":"THIESI","lat":40.5259,"lng":8.7175,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"090","codice_comu_istat":"038","name":"MARA","lat":40.4106,"lng":8.6399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"009","name":"BITTI","lat":40.4778,"lng":9.3831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"059","name":"ONIFAI","lat":40.4081,"lng":9.6524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"104","name":"LODINE","lat":40.1504,"lng":9.2196,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"010","name":"BOLOTANA","lat":40.3271,"lng":8.9602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"067","name":"ORUNE","lat":40.4057,"lng":9.3709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"084","name":"SINDIA","lat":40.2978,"lng":8.6577,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"073","name":"POSADA","lat":40.6331,"lng":9.7175,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"071","name":"OVODDA","lat":40.0967,"lng":9.1635,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"038","name":"LEI","lat":40.3077,"lng":8.9201,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"068","name":"OSIDDA","lat":40.5246,"lng":9.2194,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"028","name":"GAVOI","lat":40.1628,"lng":9.1963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"001","name":"ARITZO","lat":39.9578,"lng":9.1975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"027","name":"GALTELLÌ","lat":40.3864,"lng":9.6156,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"012","name":"BORTIGALI","lat":40.2839,"lng":8.8374,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"070","name":"OTTANA","lat":40.2349,"lng":9.0439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"008","name":"BIRORI","lat":40.2649,"lng":8.818,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"083","name":"SILANUS","lat":40.2888,"lng":8.8928,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"047","name":"MEANA SARDO","lat":39.9453,"lng":9.0735,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"062","name":"ORGOSOLO","lat":40.2043,"lng":9.3524,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"090","name":"TETI","lat":40.0969,"lng":9.1192,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"041","name":"LODÈ","lat":40.5925,"lng":9.5399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"066","name":"ORTUERI","lat":40.0366,"lng":8.9881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"063","name":"OROSEI","lat":40.381,"lng":9.6939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"003","name":"ATZARA","lat":39.9929,"lng":9.0765,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"011","name":"BORORE","lat":40.2158,"lng":8.8053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"044","name":"MACOMER","lat":40.2631,"lng":8.7709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"093","name":"TONARA","lat":40.0263,"lng":9.1739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"004","name":"AUSTIS","lat":40.0717,"lng":9.0889,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"056","name":"OLLOLAI","lat":40.1695,"lng":9.1795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"025","name":"GADONI","lat":39.9131,"lng":9.1844,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"055","name":"OLIENA","lat":40.2735,"lng":9.4041,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"033","name":"IRGOLI","lat":40.4116,"lng":9.6316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"061","name":"ORANI","lat":40.2485,"lng":9.1764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"046","name":"MAMOIADA","lat":40.2167,"lng":9.2814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"051","name":"NUORO","lat":40.321,"lng":9.3304,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"086","name":"SORGONO","lat":40.027,"lng":9.1031,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"018","name":"DUALCHI","lat":40.23,"lng":8.8975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"064","name":"OROTELLI","lat":40.3062,"lng":9.1135,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"091","name":"TIANA","lat":40.0694,"lng":9.1483,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"043","name":"LULA","lat":40.47,"lng":9.4859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"040","name":"LOCULI","lat":40.4078,"lng":9.6122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"007","name":"BELVÌ","lat":39.9636,"lng":9.1863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"094","name":"TORPÈ","lat":40.6291,"lng":9.6785,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"016","name":"DESULO","lat":40.0114,"lng":9.2281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"077","name":"SARULE","lat":40.2269,"lng":9.1659,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"024","name":"FONNI","lat":40.1218,"lng":9.2537,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"058","name":"ONANÌ","lat":40.4864,"lng":9.4431,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"017","name":"DORGALI","lat":40.2938,"lng":9.5892,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"057","name":"OLZAI","lat":40.184,"lng":9.1474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"060","name":"ONIFERI","lat":40.2731,"lng":9.1714,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"085","name":"SINISCOLA","lat":40.573,"lng":9.6933,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"091","codice_comu_istat":"050","name":"NORAGUGUME","lat":40.225,"lng":8.9194,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"027","name":"GONI","lat":39.578,"lng":9.2867,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"030","name":"GUAMAGGIORE","lat":39.5699,"lng":9.075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"113","name":"GERGEI","lat":39.7008,"lng":9.1014,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"005","name":"BARRALI","lat":39.4763,"lng":9.1007,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"097","name":"VILLAPUTZU","lat":39.4422,"lng":9.575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"122","name":"VILLANOVA TULO","lat":39.7811,"lng":9.2153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"119","name":"SADALI","lat":39.8144,"lng":9.273,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"090","name":"UTA","lat":39.2884,"lng":8.9586,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"099","name":"VILLA SAN PIETRO","lat":44.4025,"lng":7.3109,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"016","name":"DECIMOPUTZU","lat":39.3364,"lng":8.9163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"084","name":"TEULADA","lat":38.9667,"lng":8.7744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"020","name":"DONORI","lat":39.4322,"lng":9.1285,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"112","name":"ESTERZILI","lat":39.7803,"lng":9.2858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"070","name":"SENORBÌ","lat":39.5363,"lng":9.1313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"011","name":"CAPOTERRA","lat":39.1791,"lng":8.9669,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"098","name":"VILLASALTO","lat":39.4933,"lng":9.3941,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"100","name":"VILLASIMIUS","lat":39.1429,"lng":9.5198,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"071","name":"SERDIANA","lat":39.3753,"lng":9.16,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"108","name":"ELMAS","lat":39.2675,"lng":9.0495,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"074","name":"SESTU","lat":39.2955,"lng":9.0941,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"114","name":"ISILI","lat":39.7401,"lng":9.1078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"106","name":"CASTIADAS","lat":39.2375,"lng":9.5005,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"004","name":"BALLAO","lat":39.5491,"lng":9.3618,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"061","name":"SANT'ANDREA FRIUS","lat":39.48,"lng":9.1697,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"091","name":"VALLERMOSA","lat":39.3656,"lng":8.7974,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"018","name":"DOMUS DE MARIA","lat":38.9452,"lng":8.8645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"036","name":"MANDAS","lat":39.6569,"lng":9.1299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"039","name":"MURAVERA","lat":39.4202,"lng":9.5744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"083","name":"SUELLI","lat":39.5622,"lng":9.1321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"053","name":"SAMATZAI","lat":39.4844,"lng":9.0356,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"050","name":"PULA","lat":39.0086,"lng":9.0027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"102","name":"VILLASPECIOSA","lat":39.3135,"lng":8.9263,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"117","name":"NURRI","lat":39.7131,"lng":9.231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"054","name":"SAN BASILIO","lat":44.9474,"lng":12.178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"075","name":"SETTIMO SAN PIETRO","lat":39.2884,"lng":9.1874,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"118","name":"ORROLI","lat":39.6947,"lng":9.2514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"110","name":"ESCALAPLANO","lat":39.6278,"lng":9.3581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"048","name":"PIMENTEL","lat":39.4867,"lng":9.0666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"051","name":"QUARTU SANT'ELENA","lat":39.2415,"lng":9.1834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"088","name":"USSANA","lat":39.3958,"lng":9.0742,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"044","name":"ORTACESUS","lat":39.5388,"lng":9.0846,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"066","name":"SARROCH","lat":39.0685,"lng":9.0105,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"109","name":"MONSERRATO","lat":39.2558,"lng":9.1406,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"105","name":"QUARTUCCIU","lat":39.2553,"lng":9.1799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"064","name":"SAN VITO","lat":42.6777,"lng":12.8468,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"069","name":"SELEGAS","lat":39.5682,"lng":9.1056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"116","name":"NURALLAO","lat":39.7949,"lng":9.0821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"038","name":"MONASTIR","lat":39.386,"lng":9.046,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"031","name":"GUASILA","lat":39.563,"lng":9.0464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"058","name":"SAN NICOLÒ GERREI","lat":39.4986,"lng":9.3081,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"059","name":"SAN SPERATE","lat":39.3598,"lng":9.0078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"009","name":"CAGLIARI","lat":39.2149,"lng":9.1095,"capoluogo_prov":true,"capoluogo_reg":true},{"codice_prov_istat":"092","codice_comu_istat":"115","name":"NURAGUS","lat":39.7774,"lng":9.0392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"017","name":"DOLIANOVA","lat":39.3794,"lng":9.1797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"078","name":"SILIQUA","lat":39.3014,"lng":8.8099,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"024","name":"GESICO","lat":39.6161,"lng":9.1088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"079","name":"SILIUS","lat":39.5178,"lng":9.2945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"068","name":"SELARGIUS","lat":39.2578,"lng":9.1686,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"080","name":"SINNAI","lat":39.3053,"lng":9.2045,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"082","name":"SOLEMINIS","lat":39.3467,"lng":9.1811,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"101","name":"VILLASOR","lat":39.3815,"lng":8.9439,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"002","name":"ARMUNGIA","lat":39.5225,"lng":9.3823,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"003","name":"ASSEMINI","lat":39.2927,"lng":9.0025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"042","name":"NURAMINIS","lat":39.4441,"lng":9.0158,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"008","name":"BURCEI","lat":39.3454,"lng":9.3607,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"111","name":"ESCOLCA","lat":39.6995,"lng":9.1225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"037","name":"MARACALAGONIS","lat":39.2864,"lng":9.2305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"015","name":"DECIMOMANNU","lat":39.3128,"lng":8.9699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"120","name":"SERRI","lat":39.7028,"lng":9.1452,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"081","name":"SIURGUS DONIGALA","lat":39.6042,"lng":9.19,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"092","codice_comu_istat":"121","name":"SEULO","lat":39.8709,"lng":9.2367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"018","name":"CORDOVADO","lat":45.8433,"lng":12.8834,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"009","name":"CANEVA","lat":46.4092,"lng":12.9995,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"038","name":"SAN GIORGIO DELLA RICHINVELDA","lat":46.0467,"lng":12.8735,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"020","name":"FANNA","lat":46.1855,"lng":12.751,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"041","name":"SAN VITO AL TAGLIAMENTO","lat":45.9151,"lng":12.8564,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"006","name":"BARCIS","lat":46.1914,"lng":12.5602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"017","name":"CORDENONS","lat":45.989,"lng":12.7074,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"033","name":"PORDENONE","lat":45.9627,"lng":12.655,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"048","name":"VALVASONE","lat":45.9956,"lng":12.869,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"005","name":"AZZANO DECIMO","lat":45.8818,"lng":12.7147,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"032","name":"PORCIA","lat":45.9574,"lng":12.6106,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"012","name":"CAVASSO NUOVO","lat":46.1988,"lng":12.7741,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"022","name":"FONTANAFREDDA","lat":45.9737,"lng":12.5697,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"047","name":"TRAVESIO","lat":46.198,"lng":12.87,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"014","name":"CIMOLAIS","lat":46.2891,"lng":12.4388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"045","name":"TRAMONTI DI SOPRA","lat":46.3113,"lng":12.7905,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"030","name":"PINZANO AL TAGLIAMENTO","lat":46.1833,"lng":12.9472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"024","name":"FRISANCO","lat":46.2132,"lng":12.7271,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"027","name":"MONTEREALE VALCELLINA","lat":46.1577,"lng":12.6608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"026","name":"MEDUNO","lat":46.217,"lng":12.7959,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"021","name":"FIUME VENETO","lat":45.925,"lng":12.7324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"031","name":"POLCENIGO","lat":46.0366,"lng":12.4922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"042","name":"SEQUALS","lat":46.1667,"lng":12.8309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"035","name":"PRAVISDOMINI","lat":45.82,"lng":12.6931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"046","name":"TRAMONTI DI SOTTO","lat":46.2858,"lng":12.797,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"040","name":"SAN QUIRINO","lat":46.0361,"lng":12.6795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"004","name":"AVIANO","lat":46.0705,"lng":12.5868,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"011","name":"CASTELNOVO DEL FRIULI","lat":46.2003,"lng":12.9036,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"002","name":"ARBA","lat":46.1478,"lng":12.7914,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"050","name":"VIVARO","lat":46.0774,"lng":12.7778,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"043","name":"SESTO AL REGHENA","lat":45.8466,"lng":12.8154,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"037","name":"SACILE","lat":45.9541,"lng":12.5023,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"025","name":"MANIAGO","lat":46.171,"lng":12.7073,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"016","name":"CLAUZETTO","lat":46.2306,"lng":12.9172,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"036","name":"ROVEREDO IN PIANO","lat":46.0099,"lng":12.6235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"039","name":"SAN MARTINO AL TAGLIAMENTO","lat":46.0142,"lng":12.871,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"034","name":"PRATA DI PORDENONE","lat":45.8918,"lng":12.5964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"010","name":"CASARSA DELLA DELIZIA","lat":45.9572,"lng":12.8425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"003","name":"ARZENE","lat":46.0024,"lng":12.8478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"001","name":"ANDREIS","lat":46.2019,"lng":12.615,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"052","name":"VAJONT","lat":46.1446,"lng":12.6972,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"049","name":"VITO D'ASIO","lat":46.2292,"lng":12.9414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"028","name":"MORSANO AL TAGLIAMENTO","lat":45.8627,"lng":12.9308,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"007","name":"BRUGNERA","lat":45.9025,"lng":12.5352,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"029","name":"PASIANO DI PORDENONE","lat":45.849,"lng":12.6252,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"051","name":"ZOPPOLA","lat":45.9675,"lng":12.7735,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"015","name":"CLAUT","lat":46.2687,"lng":12.5146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"044","name":"SPILIMBERGO","lat":46.1113,"lng":12.8991,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"008","name":"BUDOIA","lat":46.0472,"lng":12.5316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"019","name":"ERTO E CASSO","lat":46.2725,"lng":12.3324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"093","codice_comu_istat":"013","name":"CHIONS","lat":45.8453,"lng":12.7133,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"020","name":"FORLÌ DEL SANNIO","lat":41.6953,"lng":14.1806,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"045","name":"SANTA MARIA DEL MOLISE","lat":41.5538,"lng":14.3692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"040","name":"ROCCAMANDOLFI","lat":41.4929,"lng":14.3506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"044","name":"SANT'AGAPITO","lat":42.2612,"lng":13.1419,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"034","name":"PETTORANELLO DEL MOLISE","lat":41.5742,"lng":14.2784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"011","name":"CASTELPIZZUTO","lat":41.5206,"lng":14.2916,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"038","name":"POZZILLI","lat":41.5125,"lng":14.0634,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"030","name":"MONTERODUNI","lat":41.5222,"lng":14.178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"014","name":"CERRO AL VOLTURNO","lat":41.6571,"lng":14.1017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"004","name":"BELMONTE DEL SANNIO","lat":41.8259,"lng":14.4245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"032","name":"PESCOLANCIANO","lat":41.6796,"lng":14.3381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"029","name":"MONTENERO VAL COCCHIARA","lat":41.7178,"lng":14.0703,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"046","name":"SANT'ANGELO DEL PESCO","lat":41.8838,"lng":14.256,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"010","name":"CASTELPETROSO","lat":41.5595,"lng":14.3453,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"043","name":"SAN PIETRO AVELLANA","lat":41.7917,"lng":14.1831,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"021","name":"FORNELLI","lat":40.2447,"lng":14.9992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"052","name":"VENAFRO","lat":41.4846,"lng":14.0461,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"025","name":"MACCHIA D'ISERNIA","lat":41.5622,"lng":14.1671,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"051","name":"VASTOGIRARDI","lat":41.7752,"lng":14.2614,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"036","name":"PIZZONE","lat":41.6673,"lng":14.0343,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"035","name":"PIETRABBONDANTE","lat":41.7481,"lng":14.3853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"047","name":"SANT'ELENA SANNITA","lat":41.5754,"lng":14.4694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"041","name":"ROCCASICURA","lat":41.6977,"lng":14.2353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"024","name":"LONGANO","lat":41.5227,"lng":14.2466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"048","name":"SCAPOLI","lat":41.6144,"lng":14.0585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"033","name":"PESCOPENNATARO","lat":41.8802,"lng":14.2932,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"050","name":"SESTO CAMPANO","lat":41.42,"lng":14.0777,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"009","name":"CASTEL DEL GIUDICE","lat":41.8556,"lng":14.232,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"039","name":"RIONERO SANNITICO","lat":41.713,"lng":14.1395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"013","name":"CASTELVERRINO","lat":41.7667,"lng":14.3977,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"037","name":"POGGIO SANNITA","lat":41.7779,"lng":14.4129,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"018","name":"CONCA CASALE","lat":41.4962,"lng":14.0055,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"001","name":"ACQUAVIVA D'ISERNIA","lat":41.6731,"lng":14.1499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"015","name":"CHIAUCI","lat":41.6774,"lng":14.3847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"007","name":"CAROVILLI","lat":41.7144,"lng":14.2956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"027","name":"MIRANDA","lat":41.6423,"lng":14.2479,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"042","name":"ROCCHETTA A VOLTURNO","lat":41.6287,"lng":14.0912,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"028","name":"MONTAQUILA","lat":41.5678,"lng":14.1136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"012","name":"CASTEL SAN VINCENZO","lat":41.6559,"lng":14.0611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"026","name":"MACCHIAGODENA","lat":41.5602,"lng":14.4079,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"023","name":"ISERNIA","lat":41.5943,"lng":14.2308,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"022","name":"FROSOLONE","lat":41.6011,"lng":14.4487,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"031","name":"PESCHE","lat":41.6101,"lng":14.2821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"006","name":"CAPRACOTTA","lat":41.8344,"lng":14.2653,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"049","name":"SESSANO DEL MOLISE","lat":41.6434,"lng":14.3234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"017","name":"COLLI A VOLTURNO","lat":41.6007,"lng":14.1035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"002","name":"AGNONE","lat":41.8105,"lng":14.3786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"008","name":"CARPINONE","lat":41.5914,"lng":14.3242,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"019","name":"FILIGNANO","lat":41.5459,"lng":14.0574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"005","name":"CANTALUPO NEL SANNIO","lat":41.5228,"lng":14.3939,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"003","name":"BAGNOLI DEL TRIGNO","lat":41.7041,"lng":14.4575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"094","codice_comu_istat":"016","name":"CIVITANOVA DEL SANNIO","lat":41.6687,"lng":14.4049,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"031","name":"NARBOLIA","lat":40.0514,"lng":8.5786,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"030","name":"MORGONGIORI","lat":39.7478,"lng":8.7713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"053","name":"SENEGHE","lat":40.0835,"lng":8.6167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"013","name":"BAULADU","lat":40.0205,"lng":8.6718,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"061","name":"SIRIS","lat":39.7139,"lng":8.7747,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"011","name":"BARATILI SAN PIETRO","lat":39.9924,"lng":8.5567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"076","name":"SIAPICCIA","lat":39.9291,"lng":8.7631,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"038","name":"ORISTANO","lat":39.9052,"lng":8.5963,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"077","name":"CURCURIS","lat":39.7474,"lng":8.8317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"083","name":"MAGOMADAS","lat":40.2653,"lng":8.5225,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"060","name":"SINI","lat":39.7553,"lng":8.9053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"072","name":"VILLAURBANA","lat":39.8867,"lng":8.7784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"018","name":"CABRAS","lat":39.9322,"lng":8.5339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"042","name":"POMPU","lat":39.7256,"lng":8.7964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"064","name":"TADASUNI","lat":40.1111,"lng":8.8845,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"079","name":"BOSA","lat":40.2992,"lng":8.4981,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"037","name":"OLLASTRA","lat":39.952,"lng":8.7353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"019","name":"CUGLIERI","lat":40.1891,"lng":8.5675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"068","name":"ULÀ TIRSO","lat":40.0463,"lng":8.9055,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"054","name":"SENIS","lat":39.8253,"lng":8.9411,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"035","name":"NURACHI","lat":39.9732,"lng":8.5399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"059","name":"SIMAXIS","lat":39.9314,"lng":8.6931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"080","name":"FLUSSIO","lat":40.2686,"lng":8.5413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"075","name":"ZERFALIU","lat":39.9587,"lng":8.7085,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"085","name":"MONTRESTA","lat":40.3749,"lng":8.5006,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"052","name":"SEDILO","lat":40.1735,"lng":8.9228,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"082","name":"LACONI","lat":39.8538,"lng":9.0514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"010","name":"BARADILI","lat":39.7225,"lng":8.8984,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"007","name":"ARDAULI","lat":40.0858,"lng":8.9125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"088","name":"TINNURA","lat":40.2686,"lng":8.5484,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"029","name":"MOGORO","lat":39.686,"lng":8.7785,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"046","name":"SAN NICOLÒ D'ARCIDANO","lat":39.684,"lng":8.646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"044","name":"RUINAS","lat":39.9069,"lng":8.8971,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"078","name":"SODDÌ","lat":40.1304,"lng":8.8788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"028","name":"MOGORELLA","lat":39.8656,"lng":8.8599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"050","name":"SAN VERO MILIS","lat":40.0156,"lng":8.5992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"040","name":"PAU","lat":39.7916,"lng":8.8016,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"073","name":"VILLA VERDE","lat":39.7972,"lng":8.8204,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"006","name":"ARBOREA","lat":39.7741,"lng":8.5814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"034","name":"NUGHEDU SANTA VITTORIA","lat":40.1024,"lng":8.9542,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"020","name":"FORDONGIANUS","lat":39.9956,"lng":8.811,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"004","name":"ALES","lat":39.7694,"lng":8.8167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"023","name":"GONNOSNÒ","lat":39.7611,"lng":8.873,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"086","name":"SAGAMA","lat":40.2619,"lng":8.5781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"067","name":"TRESNURAGHES","lat":40.2528,"lng":8.521,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"033","name":"NORBELLO","lat":40.136,"lng":8.8331,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"008","name":"ASSOLO","lat":39.8109,"lng":8.9191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"056","name":"SIAMAGGIORE","lat":39.9506,"lng":8.6373,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"058","name":"SIMALA","lat":39.7206,"lng":8.8291,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"065","name":"TERRALBA","lat":39.7186,"lng":8.6388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"045","name":"SAMUGHEO","lat":39.9474,"lng":8.9416,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"026","name":"MASULLAS","lat":39.7006,"lng":8.7838,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"069","name":"URAS","lat":39.7017,"lng":8.7011,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"025","name":"MARRUBIU","lat":39.7533,"lng":8.6383,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"062","name":"SOLARUSSA","lat":39.9552,"lng":8.6751,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"027","name":"MILIS","lat":40.0516,"lng":8.6381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"074","name":"ZEDDIANI","lat":39.9911,"lng":8.5964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"048","name":"VILLA SANT'ANTONIO","lat":39.8603,"lng":8.9025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"005","name":"ALLAI","lat":39.9578,"lng":8.8638,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"081","name":"GENONI","lat":39.7958,"lng":9.0091,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"051","name":"SCANO DI MONTIFERRO","lat":40.2164,"lng":8.5878,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"066","name":"TRAMATZA","lat":40.0048,"lng":8.6506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"057","name":"SIAMANNA","lat":39.9205,"lng":8.761,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"032","name":"NEONELI","lat":40.066,"lng":8.9478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"003","name":"ALBAGIARA","lat":39.7888,"lng":8.8631,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"087","name":"SUNI","lat":40.282,"lng":8.5505,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"017","name":"BUSACHI","lat":40.0339,"lng":8.898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"055","name":"SENNARIOLO","lat":40.2123,"lng":8.5561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"016","name":"BORONEDDU","lat":40.1133,"lng":8.8694,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"015","name":"BONARCADO","lat":40.097,"lng":8.6581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"014","name":"BIDONÌ","lat":40.1126,"lng":8.9353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"047","name":"SANTA GIUSTA","lat":42.6434,"lng":13.2526,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"024","name":"GONNOSTRAMATZA","lat":39.6824,"lng":8.8353,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"071","name":"VILLANOVA TRUSCHEDU","lat":39.9899,"lng":8.7531,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"039","name":"PALMAS ARBOREA","lat":39.8755,"lng":8.6466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"084","name":"MODOLO","lat":40.2754,"lng":8.5304,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"002","name":"AIDOMAGGIORE","lat":40.1719,"lng":8.8575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"070","name":"USELLUS","lat":39.8107,"lng":8.851,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"001","name":"ABBASANTA","lat":40.1278,"lng":8.8191,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"041","name":"PAULILATINO","lat":40.0852,"lng":8.7645,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"049","name":"SANTU LUSSURGIU","lat":40.1424,"lng":8.6556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"036","name":"NURECI","lat":39.8246,"lng":8.9749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"063","name":"SORRADILE","lat":40.107,"lng":8.933,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"012","name":"BARESSA","lat":39.7139,"lng":8.8764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"022","name":"GONNOSCODINA","lat":39.7012,"lng":8.8364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"021","name":"GHILARZA","lat":40.1208,"lng":8.8359,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"009","name":"ASUNI","lat":39.8736,"lng":8.9475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"095","codice_comu_istat":"043","name":"RIOLA SARDO","lat":39.995,"lng":8.5395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"028","name":"GRAGLIA","lat":45.5595,"lng":7.9792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"015","name":"CASTELLETTO CERVO","lat":45.5206,"lng":8.2248,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"013","name":"CAPRILE","lat":40.6888,"lng":14.527,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"011","name":"CAMPIGLIA CERVO","lat":45.6634,"lng":7.9998,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"060","name":"SAN PAOLO CERVO","lat":45.6519,"lng":8.0102,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"041","name":"OCCHIEPPO SUPERIORE","lat":45.5642,"lng":8.005,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"057","name":"SALA BIELLESE","lat":45.5079,"lng":7.9602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"012","name":"CANDELO","lat":45.545,"lng":8.1093,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"070","name":"TRIVERO","lat":45.6674,"lng":8.1791,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"059","name":"SANDIGLIANO","lat":45.5195,"lng":8.0788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"073","name":"VALLE MOSSO","lat":45.6347,"lng":8.1433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"083","name":"ZUMAGLIA","lat":45.5947,"lng":8.0898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"009","name":"CAMANDONA","lat":45.6448,"lng":8.0996,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"049","name":"PRALUNGO","lat":45.5913,"lng":8.0397,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"076","name":"VERRONE","lat":45.5047,"lng":8.1202,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"002","name":"ANDORNO MICCA","lat":45.6122,"lng":8.0563,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"064","name":"SOSTEGNO","lat":45.6539,"lng":8.2709,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"035","name":"MONGRANDO","lat":45.5292,"lng":8.0083,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"066","name":"TAVIGLIANO","lat":45.6307,"lng":8.0561,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"084","name":"MOSSO","lat":45.6464,"lng":8.136,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"065","name":"STRONA","lat":45.6196,"lng":8.1695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"033","name":"MEZZANA MORTIGLIENGO","lat":45.6267,"lng":8.1898,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"077","name":"VIGLIANO BIELLESE","lat":45.5655,"lng":8.1056,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"004","name":"BIELLA","lat":45.5628,"lng":8.0583,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"020","name":"COSSATO","lat":45.5693,"lng":8.1802,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"063","name":"SORDEVOLO","lat":45.5746,"lng":7.9745,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"052","name":"QUITTENGO","lat":45.6575,"lng":8.0118,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"010","name":"CAMBURZANO","lat":45.5438,"lng":8.0039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"055","name":"ROSAZZA","lat":45.6768,"lng":7.9774,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"008","name":"CALLABIANA","lat":45.6316,"lng":8.0994,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"050","name":"PRAY","lat":45.6754,"lng":8.2054,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"034","name":"MIAGLIANO","lat":45.6143,"lng":8.0458,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"051","name":"QUAREGNA","lat":45.5822,"lng":8.1649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"039","name":"NETRO","lat":45.5383,"lng":7.9466,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"023","name":"CURINO","lat":45.6282,"lng":8.2371,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"069","name":"TORRAZZO","lat":45.4996,"lng":7.9551,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"058","name":"SALUSSOLA","lat":45.4478,"lng":8.1134,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"032","name":"MASSERANO","lat":45.598,"lng":8.2178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"071","name":"VALDENGO","lat":45.5681,"lng":8.1396,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"018","name":"CERRIONE","lat":45.4694,"lng":8.0692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"003","name":"BENNA","lat":45.514,"lng":8.1263,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"075","name":"VEGLIO","lat":45.6406,"lng":8.1142,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"030","name":"MAGNANO","lat":40.0556,"lng":16.0563,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"025","name":"DORZANO","lat":45.4265,"lng":8.0986,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"027","name":"GIFFLENGA","lat":45.4934,"lng":8.2319,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"053","name":"RONCO BIELLESE","lat":45.5796,"lng":8.0919,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"068","name":"TOLLEGNO","lat":45.5935,"lng":8.0514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"029","name":"LESSONA","lat":45.5864,"lng":8.1964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"014","name":"CASAPINTA","lat":45.6167,"lng":8.197,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"078","name":"VILLA DEL BOSCO","lat":45.622,"lng":8.2807,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"006","name":"BORRIANA","lat":45.503,"lng":8.0393,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"042","name":"PETTINENGO","lat":45.6141,"lng":8.1053,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"079","name":"VILLANOVA BIELLESE","lat":45.4822,"lng":8.193,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"081","name":"ZIMONE","lat":45.4503,"lng":8.0372,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"019","name":"COGGIOLA","lat":45.6852,"lng":8.1847,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"056","name":"SAGLIANO MICCA","lat":45.623,"lng":8.0443,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"046","name":"POLLONE","lat":45.5808,"lng":8.007,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"005","name":"BIOGLIO","lat":45.6163,"lng":8.1372,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"017","name":"CERRETO CASTELLO","lat":45.567,"lng":8.1536,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"048","name":"PORTULA","lat":45.6748,"lng":8.1795,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"022","name":"CROSA","lat":45.6102,"lng":8.1863,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"024","name":"DONATO","lat":45.5279,"lng":7.9094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"007","name":"BRUSNENGO","lat":45.6039,"lng":8.2489,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"001","name":"AILOCHE","lat":45.6998,"lng":8.2222,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"026","name":"GAGLIANICO","lat":45.5387,"lng":8.0732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"044","name":"PIEDICAVALLO","lat":45.6893,"lng":7.9547,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"061","name":"SELVE MARCONE","lat":45.6202,"lng":8.0891,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"031","name":"MASSAZZA","lat":45.4924,"lng":8.1656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"082","name":"ZUBIENA","lat":45.4929,"lng":7.9958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"072","name":"VALLANZENGO","lat":45.604,"lng":8.1508,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"062","name":"SOPRANA","lat":45.6405,"lng":8.2,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"043","name":"PIATTO","lat":45.591,"lng":8.1364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"074","name":"VALLE SAN NICOLAO","lat":45.6081,"lng":8.1422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"080","name":"VIVERONE","lat":45.4248,"lng":8.0544,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"038","name":"MUZZANO","lat":45.5617,"lng":7.99,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"037","name":"MOTTALCIATA","lat":45.5061,"lng":8.2078,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"054","name":"ROPPOLO","lat":45.4216,"lng":8.071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"021","name":"CREVACUORE","lat":45.6854,"lng":8.2467,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"067","name":"TERNENGO","lat":45.59,"lng":8.1149,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"016","name":"CAVAGLIÀ","lat":45.4084,"lng":8.0946,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"040","name":"OCCHIEPPO INFERIORE","lat":45.5511,"lng":8.0222,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"096","codice_comu_istat":"047","name":"PONDERANO","lat":45.5375,"lng":8.0548,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"063","name":"PAGNONA","lat":46.0606,"lng":9.4039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"017","name":"CASSAGO BRIANZA","lat":45.7391,"lng":9.2945,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"054","name":"MONTICELLO BRIANZA","lat":45.7105,"lng":9.3167,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"069","name":"PREMANA","lat":46.053,"lng":9.4209,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"090","name":"VIGANÒ","lat":45.3791,"lng":9.0255,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"043","name":"LIERNA","lat":45.9605,"lng":9.3067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"079","name":"TACENO","lat":46.0253,"lng":9.3641,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"059","name":"OLGINATE","lat":45.794,"lng":9.4138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"018","name":"CASSINA VALSASSINA","lat":45.9331,"lng":9.48,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"066","name":"PEREGO","lat":45.7386,"lng":9.3641,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"016","name":"CASATENOVO","lat":45.6971,"lng":9.3123,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"070","name":"PRIMALUNA","lat":45.9849,"lng":9.4388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"060","name":"OLIVETO LARIO","lat":45.9307,"lng":9.2849,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"048","name":"MERATE","lat":45.6989,"lng":9.4141,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"073","name":"ROVAGNATE","lat":45.7374,"lng":9.3716,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"067","name":"PERLEDO","lat":46.0174,"lng":9.2942,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"062","name":"PADERNO D'ADDA","lat":45.681,"lng":9.4463,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"046","name":"MANDELLO DEL LARIO","lat":45.9176,"lng":9.32,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"025","name":"CORTENOVA","lat":46.0014,"lng":9.385,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"072","name":"ROGENO","lat":45.7835,"lng":9.2752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"075","name":"SIRONE","lat":45.7724,"lng":9.3214,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"058","name":"OLGIATE MOLGORA","lat":45.7284,"lng":9.4009,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"035","name":"ESINO LARIO","lat":45.9953,"lng":9.336,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"039","name":"IMBERSAGO","lat":45.7069,"lng":9.4456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"040","name":"INTROBIO","lat":45.9738,"lng":9.4503,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"002","name":"AIRUNO","lat":45.7548,"lng":9.4253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"014","name":"CARENNO","lat":45.802,"lng":9.4605,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"031","name":"DOLZAGO","lat":45.768,"lng":9.3405,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"055","name":"MORTERONE","lat":45.8739,"lng":9.4827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"021","name":"CESANA BRIANZA","lat":45.8192,"lng":9.3015,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"001","name":"ABBADIA LARIANA","lat":45.9005,"lng":9.3345,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"029","name":"CREMENO","lat":45.9388,"lng":9.4732,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"041","name":"INTROZZO","lat":46.0821,"lng":9.3413,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"083","name":"VALMADRERA","lat":45.848,"lng":9.3585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"068","name":"PESCATE","lat":45.8342,"lng":9.3938,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"008","name":"BELLANO","lat":46.0415,"lng":9.3035,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"020","name":"CERNUSCO LOMBARDONE","lat":45.6919,"lng":9.4003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"007","name":"BARZIO","lat":45.9446,"lng":9.4681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"061","name":"OSNAGO","lat":45.6767,"lng":9.3924,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"089","name":"VESTRENO","lat":46.0842,"lng":9.3259,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"087","name":"VERDERIO INFERIORE","lat":45.6629,"lng":9.4357,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"005","name":"BARZAGO","lat":45.7564,"lng":9.3153,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"052","name":"MONTE MARENZO","lat":45.7717,"lng":9.4558,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"023","name":"COLICO","lat":46.1356,"lng":9.3713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"003","name":"ANNONE DI BRIANZA","lat":45.8039,"lng":9.3316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"028","name":"CREMELLA","lat":45.7395,"lng":9.3017,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"088","name":"VERDERIO SUPERIORE","lat":45.6688,"lng":9.4414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"050","name":"MOGGIO","lat":45.9326,"lng":9.4854,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"027","name":"CRANDOLA VALSASSINA","lat":46.0226,"lng":9.3788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"042","name":"LECCO","lat":45.853,"lng":9.3901,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"071","name":"ROBBIATE","lat":45.6925,"lng":9.438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"036","name":"GALBIATE","lat":45.8174,"lng":9.3754,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"045","name":"MALGRATE","lat":45.8488,"lng":9.3781,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"009","name":"BOSISIO PARINI","lat":45.802,"lng":9.2888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"010","name":"BRIVIO","lat":45.7429,"lng":9.4437,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"065","name":"PASTURO","lat":45.9522,"lng":9.445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"044","name":"LOMAGNA","lat":45.6705,"lng":9.3752,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"051","name":"MOLTENO","lat":45.7783,"lng":9.3067,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"004","name":"BALLABIO","lat":45.8992,"lng":9.4245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"034","name":"ERVE","lat":45.8223,"lng":9.4533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"019","name":"CASTELLO DI BRIANZA","lat":45.7595,"lng":9.3447,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"056","name":"NIBIONNO","lat":45.7469,"lng":9.2698,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"081","name":"TREMENICO","lat":46.0775,"lng":9.3674,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"076","name":"SIRTORI","lat":45.7375,"lng":9.3321,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"053","name":"MONTEVECCHIA","lat":45.7053,"lng":9.3804,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"012","name":"CALCO","lat":45.7252,"lng":9.4138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"078","name":"SUELLO","lat":45.8188,"lng":9.3096,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"013","name":"CALOLZIOCORTE","lat":45.801,"lng":9.4325,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"015","name":"CASARGO","lat":46.0375,"lng":9.3864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"026","name":"COSTA MASNAGA","lat":45.7676,"lng":9.2785,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"038","name":"GARLATE","lat":45.8131,"lng":9.4008,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"074","name":"SANTA MARIA HOÈ","lat":45.7453,"lng":9.3756,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"032","name":"DORIO","lat":46.1027,"lng":9.3193,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"037","name":"GARBAGNATE MONASTERO","lat":45.7744,"lng":9.3025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"084","name":"VARENNA","lat":46.01,"lng":9.2837,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"024","name":"COLLE BRIANZA","lat":45.7635,"lng":9.3655,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"080","name":"TORRE DE' BUSI","lat":45.775,"lng":9.4814,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"049","name":"MISSAGLIA","lat":45.7072,"lng":9.3376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"011","name":"BULCIAGO","lat":45.7516,"lng":9.2864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"085","name":"VENDROGNO","lat":46.0347,"lng":9.3288,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"086","name":"VERCURAGO","lat":45.8114,"lng":9.4253,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"082","name":"VALGREGHENTINO","lat":45.7804,"lng":9.4144,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"064","name":"PARLASCO","lat":46.0187,"lng":9.3456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"033","name":"ELLO","lat":45.7867,"lng":9.3664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"006","name":"BARZANÒ","lat":45.7349,"lng":9.3163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"022","name":"CIVATE","lat":45.8274,"lng":9.3422,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"077","name":"SUEGLIO","lat":46.0867,"lng":9.3349,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"057","name":"OGGIONO","lat":45.79,"lng":9.3454,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"030","name":"DERVIO","lat":46.077,"lng":9.3058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"097","codice_comu_istat":"047","name":"MARGNO","lat":46.032,"lng":9.3828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"026","name":"FOMBIO","lat":45.1375,"lng":9.6848,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"018","name":"CERVIGNANO D'ADDA","lat":45.3731,"lng":9.425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"029","name":"GUARDAMIGLIO","lat":45.1086,"lng":9.6825,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"034","name":"MAIRAGO","lat":45.2528,"lng":9.5796,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"017","name":"CAVENAGO D'ADDA","lat":45.2855,"lng":9.6022,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"012","name":"CASELLE LURANI","lat":45.2816,"lng":9.3606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"028","name":"GRAFFIGNANA","lat":45.2093,"lng":9.4539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"001","name":"ABBADIA CERRETO","lat":45.3128,"lng":9.5955,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"058","name":"TURANO LODIGIANO","lat":45.2498,"lng":9.623,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"045","name":"PIEVE FISSIRAGA","lat":45.2642,"lng":9.4596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"041","name":"MULAZZANO","lat":44.6095,"lng":10.3127,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"037","name":"MASSALENGO","lat":45.2659,"lng":9.4913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"059","name":"VALERA FRATTA","lat":45.2523,"lng":9.3335,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"011","name":"CASELLE LANDI","lat":45.1022,"lng":9.793,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"010","name":"CASALPUSTERLENGO","lat":45.1778,"lng":9.6502,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"024","name":"CORTE PALASIO","lat":45.3099,"lng":9.5644,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"035","name":"MALEO","lat":45.1684,"lng":9.7625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"005","name":"BORGO SAN GIOVANNI","lat":45.2789,"lng":9.436,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"025","name":"CRESPIATICA","lat":45.3575,"lng":9.5759,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"013","name":"CASTELNUOVO BOCCA D'ADDA","lat":45.1119,"lng":9.8649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"060","name":"VILLANOVA DEL SILLARO","lat":45.2377,"lng":9.481,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"061","name":"ZELO BUON PERSICO","lat":45.4121,"lng":9.4324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"046","name":"SALERANO SUL LAMBRO","lat":45.2943,"lng":9.3838,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"023","name":"CORNOVECCHIO","lat":45.1377,"lng":9.8005,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"032","name":"LODI VECCHIO","lat":45.3035,"lng":9.4188,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"054","name":"SOMAGLIA","lat":45.1467,"lng":9.6373,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"040","name":"MONTANASO LOMBARDO","lat":45.3367,"lng":9.4699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"049","name":"SAN ROCCO AL PORTO","lat":45.083,"lng":9.6983,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"044","name":"OSSAGO LODIGIANO","lat":45.2467,"lng":9.5381,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"022","name":"CORNO GIOVINE","lat":45.1346,"lng":9.7608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"003","name":"BOFFALORA D'ADDA","lat":45.3608,"lng":9.4953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"039","name":"MERLINO","lat":45.4344,"lng":9.4309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"033","name":"MACCASTORNA","lat":45.1464,"lng":9.8544,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"019","name":"CODOGNO","lat":45.1628,"lng":9.7033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"043","name":"OSPEDALETTO LODIGIANO","lat":45.1699,"lng":9.5799,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"021","name":"CORNEGLIANO LAUDENSE","lat":45.2839,"lng":9.4701,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"051","name":"SANTO STEFANO LODIGIANO","lat":45.1195,"lng":9.7364,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"020","name":"COMAZZO","lat":45.442,"lng":9.4658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"015","name":"CASTIRAGA VIDARDO","lat":45.2712,"lng":9.3968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"008","name":"CASALETTO LODIGIANO","lat":45.3076,"lng":9.3617,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"016","name":"CAVACURTA","lat":45.1908,"lng":9.743,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"036","name":"MARUDO","lat":45.2525,"lng":9.377,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"009","name":"CASALMAIOCCO","lat":45.3548,"lng":9.3755,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"057","name":"TERRANOVA DEI PASSERINI","lat":45.2155,"lng":9.6611,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"050","name":"SANT'ANGELO LODIGIANO","lat":45.2392,"lng":9.4096,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"006","name":"BREMBIO","lat":45.2146,"lng":9.5728,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"027","name":"GALGAGNANO","lat":45.3589,"lng":9.4464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"042","name":"ORIO LITTA","lat":45.161,"lng":9.5556,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"056","name":"TAVAZZANO CON VILLAVESCO","lat":45.3283,"lng":9.4077,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"014","name":"CASTIGLIONE D'ADDA","lat":45.2198,"lng":9.6953,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"007","name":"CAMAIRAGO","lat":45.2062,"lng":9.7286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"038","name":"MELETI","lat":45.119,"lng":9.8366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"052","name":"SECUGNAGO","lat":45.2316,"lng":9.5936,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"055","name":"SORDIO","lat":45.3431,"lng":9.365,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"031","name":"LODI","lat":45.3129,"lng":9.4978,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"002","name":"BERTONICO","lat":45.2341,"lng":9.6692,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"048","name":"SAN MARTINO IN STRADA","lat":45.2759,"lng":9.5275,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"004","name":"BORGHETTO LODIGIANO","lat":45.2158,"lng":9.5003,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"047","name":"SAN FIORANO","lat":45.1374,"lng":9.7233,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"053","name":"SENNA LODIGIANA","lat":45.1527,"lng":9.595,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"098","codice_comu_istat":"030","name":"LIVRAGA","lat":45.1933,"lng":9.5475,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"006","name":"MONDAINO","lat":43.8582,"lng":12.6699,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"007","name":"MONTE COLOMBO","lat":43.92,"lng":12.5537,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"005","name":"MISANO ADRIATICO","lat":43.9797,"lng":12.6958,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"016","name":"SAN CLEMENTE","lat":43.9321,"lng":12.6269,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"008","name":"MONTEFIORE CONCA","lat":43.89,"lng":12.6121,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"014","name":"RIMINI","lat":44.059,"lng":12.5632,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"022","name":"MAIOLO","lat":43.8741,"lng":12.311,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"015","name":"SALUDECIO","lat":43.8745,"lng":12.6695,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"017","name":"SAN GIOVANNI IN MARIGNANO","lat":43.94,"lng":12.7101,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"019","name":"TORRIANA","lat":43.9861,"lng":12.3851,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"021","name":"CASTELDELCI","lat":43.7916,"lng":12.155,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"002","name":"CATTOLICA","lat":43.9584,"lng":12.7386,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"013","name":"RICCIONE","lat":43.9995,"lng":12.6569,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"009","name":"MONTEGRIDOLFO","lat":43.8592,"lng":12.6909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"012","name":"POGGIO BERNI","lat":44.0351,"lng":12.4212,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"011","name":"MORCIANO DI ROMAGNA","lat":43.915,"lng":12.6516,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"003","name":"CORIANO","lat":43.97,"lng":12.6016,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"026","name":"SANT'AGATA FELTRIA","lat":43.8628,"lng":12.2075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"001","name":"BELLARIA-IGEA MARINA","lat":44.138,"lng":12.478,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"023","name":"NOVAFELTRIA","lat":43.8962,"lng":12.2902,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"024","name":"PENNABILLI","lat":43.8191,"lng":12.2667,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"025","name":"SAN LEO","lat":43.8965,"lng":12.3433,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"020","name":"VERUCCHIO","lat":43.9833,"lng":12.423,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"004","name":"GEMMANO","lat":43.9043,"lng":12.5807,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"010","name":"MONTESCUDO","lat":43.9191,"lng":12.5437,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"027","name":"TALAMELLO","lat":43.9042,"lng":12.2913,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"099","codice_comu_istat":"018","name":"SANTARCANGELO DI ROMAGNA","lat":44.0645,"lng":12.4499,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"100","codice_comu_istat":"002","name":"CARMIGNANO","lat":43.8124,"lng":11.0166,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"100","codice_comu_istat":"007","name":"VERNIO","lat":44.045,"lng":11.151,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"100","codice_comu_istat":"006","name":"VAIANO","lat":43.9363,"lng":11.1265,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"100","codice_comu_istat":"005","name":"PRATO","lat":44.7154,"lng":10.7442,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"100","codice_comu_istat":"001","name":"CANTAGALLO","lat":44.022,"lng":11.0801,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"100","codice_comu_istat":"003","name":"MONTEMURLO","lat":43.9257,"lng":11.0404,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"100","codice_comu_istat":"004","name":"POGGIO A CAIANO","lat":43.8147,"lng":11.0517,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"024","name":"SCANDALE","lat":39.1236,"lng":16.9596,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"027","name":"VERZINO","lat":39.3122,"lng":16.8613,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"011","name":"CRUCOLI","lat":39.4249,"lng":17.0031,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"006","name":"CERENZIA","lat":39.2455,"lng":16.7819,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"007","name":"CIRÒ","lat":39.3835,"lng":17.0625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"009","name":"COTRONEI","lat":39.1592,"lng":16.7817,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"005","name":"CASTELSILANO","lat":39.2714,"lng":16.7689,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"013","name":"ISOLA DI CAPO RIZZUTO","lat":38.9057,"lng":17.1,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"019","name":"ROCCA DI NETO","lat":39.1913,"lng":17.0027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"025","name":"STRONGOLI","lat":39.2661,"lng":17.0511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"008","name":"CIRÒ MARINA","lat":39.3708,"lng":17.1315,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"002","name":"CACCURI","lat":39.2273,"lng":16.7779,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"026","name":"UMBRIATICO","lat":39.3538,"lng":16.919,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"018","name":"ROCCABERNARDA","lat":39.1341,"lng":16.8713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"003","name":"CARFIZZI","lat":39.3074,"lng":16.9748,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"017","name":"PETILIA POLICASTRO","lat":39.115,"lng":16.7864,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"014","name":"MELISSA","lat":39.3097,"lng":17.0306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"001","name":"BELVEDERE DI SPINELLO","lat":39.2135,"lng":16.888,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"004","name":"CASABONA","lat":39.2514,"lng":16.9574,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"015","name":"MESORACA","lat":39.0782,"lng":16.7902,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"021","name":"SAN NICOLA DELL'ALTO","lat":39.2903,"lng":16.9738,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"010","name":"CROTONE","lat":39.0807,"lng":17.1271,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"023","name":"SAVELLI","lat":39.3126,"lng":16.7784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"020","name":"SAN MAURO MARCHESATO","lat":39.107,"lng":16.9274,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"016","name":"PALLAGORIO","lat":39.3085,"lng":16.9075,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"022","name":"SANTA SEVERINA","lat":39.1476,"lng":16.9157,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"101","codice_comu_istat":"012","name":"CUTRO","lat":39.0364,"lng":16.9828,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"035","name":"SAN NICOLA DA CRISSA","lat":38.6647,"lng":16.2856,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"001","name":"ACQUARO","lat":38.556,"lng":16.1881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"050","name":"ZUNGRI","lat":38.6558,"lng":15.9827,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"031","name":"ROMBIOLO","lat":38.5928,"lng":16.0025,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"047","name":"VIBO VALENTIA","lat":38.6756,"lng":16.0977,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"013","name":"FILOGASO","lat":38.6812,"lng":16.2286,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"006","name":"CESSANITI","lat":38.6631,"lng":16.0257,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"049","name":"ZAMBRONE","lat":38.7003,"lng":15.9909,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"024","name":"NARDODIPACE","lat":38.4735,"lng":16.3435,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"017","name":"JONADI","lat":44.078899,"lng":7.83258,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"037","name":"SERRA SAN BRUNO","lat":38.578,"lng":16.3309,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"028","name":"PIZZONI","lat":38.6228,"lng":16.2505,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"025","name":"NICOTERA","lat":38.5556,"lng":15.9375,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"044","name":"TROPEA","lat":38.6791,"lng":15.8963,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"018","name":"JOPPOLO","lat":38.5861,"lng":15.8956,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"046","name":"VAZZANO","lat":38.6338,"lng":16.2488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"004","name":"BROGNATURO","lat":38.6024,"lng":16.3424,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"039","name":"SORIANELLO","lat":38.5922,"lng":16.2316,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"034","name":"SAN GREGORIO D'IPPONA","lat":38.6435,"lng":16.1055,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"023","name":"MONTEROSSO CALABRO","lat":38.718,"lng":16.2919,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"042","name":"SPILINGA","lat":38.6285,"lng":15.9058,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"033","name":"SAN COSTANTINO CALABRO","lat":38.6335,"lng":16.0749,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"003","name":"BRIATICO","lat":38.7255,"lng":16.0298,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"036","name":"SANT'ONOFRIO","lat":38.6955,"lng":16.1392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"048","name":"ZACCANOPOLI","lat":38.666,"lng":15.9306,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"041","name":"SPADOLA","lat":38.6049,"lng":16.3378,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"002","name":"ARENA","lat":38.536,"lng":16.2281,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"016","name":"GEROCARNE","lat":38.5884,"lng":16.219,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"026","name":"PARGHELIA","lat":38.6821,"lng":15.9235,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"010","name":"FABRIZIA","lat":38.4851,"lng":16.3,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"011","name":"FILADELFIA","lat":38.7836,"lng":16.291,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"029","name":"POLIA","lat":38.7647,"lng":16.3279,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"022","name":"MONGIANA","lat":38.5139,"lng":16.3203,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"015","name":"FRANCICA","lat":38.6167,"lng":16.1002,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"030","name":"RICADI","lat":38.6264,"lng":15.8681,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"005","name":"CAPISTRANO","lat":38.6913,"lng":16.2899,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"043","name":"STEFANACONI","lat":38.6789,"lng":16.125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"008","name":"DINAMI","lat":38.5278,"lng":16.1472,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"007","name":"DASÀ","lat":38.5656,"lng":16.1962,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"038","name":"SIMBARIO","lat":38.6121,"lng":16.3351,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"027","name":"PIZZO","lat":38.7358,"lng":16.1643,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"045","name":"VALLELONGA","lat":38.6471,"lng":16.2927,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"021","name":"MILETO","lat":38.6106,"lng":16.0705,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"020","name":"MAIERATO","lat":38.7074,"lng":16.19,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"032","name":"SAN CALOGERO","lat":38.5767,"lng":16.0213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"009","name":"DRAPIA","lat":38.6644,"lng":15.9097,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"040","name":"SORIANO CALABRO","lat":38.5976,"lng":16.2296,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"019","name":"LIMBADI","lat":38.5574,"lng":15.9654,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"014","name":"FRANCAVILLA ANGITOLA","lat":38.7778,"lng":16.2702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"102","codice_comu_istat":"012","name":"FILANDARI","lat":38.6158,"lng":16.0324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"006","name":"BACENO","lat":46.2613,"lng":8.3189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"052","name":"PALLANZENO","lat":46.043,"lng":8.2592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"013","name":"BROVELLO-CARPUGNINO","lat":45.8434,"lng":8.5328,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"065","name":"TOCENO","lat":46.1456,"lng":8.4702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"070","name":"VANZONE CON SAN CARLO","lat":45.9891,"lng":8.133,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"050","name":"OMEGNA","lat":45.8761,"lng":8.4088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"076","name":"VILLETTE","lat":46.132,"lng":8.535,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"067","name":"TRASQUERA","lat":46.2137,"lng":8.2131,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"021","name":"CEPPO MORELLI","lat":45.9715,"lng":8.0685,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"022","name":"CESARA","lat":45.8355,"lng":8.3675,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"015","name":"CAMBIASCA","lat":45.9634,"lng":8.5449,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"012","name":"BOGNANCO","lat":46.1274,"lng":8.2021,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"017","name":"CANNOBIO","lat":46.0606,"lng":8.6975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"068","name":"TRONTANO","lat":46.1227,"lng":8.3373,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"073","name":"VIGANELLA","lat":46.0523,"lng":8.1949,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"001","name":"ANTRONA SCHIERANCO","lat":46.0612,"lng":8.1151,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"069","name":"VALSTRONA","lat":45.9088,"lng":8.3458,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"043","name":"MASSIOLA","lat":45.9123,"lng":8.32,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"066","name":"TRAREGO VIGGIONA","lat":46.0333,"lng":8.664,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"027","name":"CURSOLO-ORASSO","lat":46.0978,"lng":8.5668,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"077","name":"VOGOGNA","lat":46.0104,"lng":8.291,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"004","name":"AROLA","lat":45.8096,"lng":8.3581,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"060","name":"RE","lat":46.1332,"lng":8.55,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"059","name":"QUARNA SOTTO","lat":45.8702,"lng":8.3646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"035","name":"GRAVELLONA TOCE","lat":45.9313,"lng":8.4324,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"002","name":"ANZOLA D'OSSOLA","lat":45.99,"lng":8.3456,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"071","name":"VARZO","lat":46.2077,"lng":8.2536,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"020","name":"CAVAGLIO-SPOCCIA","lat":46.0715,"lng":8.607,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"056","name":"PREMIA","lat":46.2671,"lng":8.3339,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"033","name":"GHIFFA","lat":45.9592,"lng":8.6181,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"055","name":"PREMENO","lat":45.98,"lng":8.5989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"003","name":"ARIZZANO","lat":45.956,"lng":8.5821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"023","name":"COSSOGNO","lat":45.9633,"lng":8.5091,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"007","name":"BANNIO ANZINO","lat":45.9841,"lng":8.1552,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"034","name":"GIGNESE","lat":45.8617,"lng":8.5111,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"031","name":"FORMAZZA","lat":46.3783,"lng":8.4254,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"064","name":"STRESA","lat":45.8846,"lng":8.533,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"039","name":"MACUGNAGA","lat":45.9683,"lng":7.9683,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"062","name":"SANTA MARIA MAGGIORE","lat":46.1361,"lng":8.4634,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"042","name":"MASERA","lat":46.1409,"lng":8.3245,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"009","name":"BEE","lat":45.9619,"lng":8.5805,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"011","name":"BEURA-CARDEZZA","lat":46.0806,"lng":8.301,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"044","name":"MERGOZZO","lat":45.9624,"lng":8.4506,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"028","name":"DOMODOSSOLA","lat":46.1148,"lng":8.2915,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"037","name":"INTRAGNA","lat":45.9929,"lng":8.5736,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"032","name":"GERMAGNO","lat":45.8918,"lng":8.388,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"036","name":"GURRO","lat":46.0861,"lng":8.5666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"057","name":"PREMOSELLO-CHIOVENDA","lat":46.0052,"lng":8.33,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"024","name":"CRAVEGGIA","lat":46.1408,"lng":8.4895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"075","name":"VILLADOSSOLA","lat":46.068,"lng":8.2571,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"029","name":"DRUOGNO","lat":46.136,"lng":8.4372,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"041","name":"MALESCO","lat":46.127,"lng":8.5001,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"045","name":"MIAZZINA","lat":45.9779,"lng":8.5163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"008","name":"BAVENO","lat":45.9094,"lng":8.5008,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"026","name":"CRODO","lat":46.2227,"lng":8.3234,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"074","name":"VIGNONE","lat":45.9622,"lng":8.5649,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"048","name":"NONIO","lat":45.8467,"lng":8.3788,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"005","name":"AURANO","lat":45.9999,"lng":8.589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"040","name":"MADONNA DEL SASSO","lat":45.7921,"lng":8.3715,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"047","name":"MONTESCHENO","lat":46.0671,"lng":8.2317,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"061","name":"SAN BERNARDINO VERBANO","lat":45.9563,"lng":8.5183,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"030","name":"FALMENTA","lat":46.0722,"lng":8.591,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"016","name":"CANNERO RIVIERA","lat":46.0223,"lng":8.6794,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"054","name":"PIEVE VERGONTE","lat":46.0139,"lng":8.2621,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"019","name":"CASALE CORTE CERRO","lat":45.9163,"lng":8.4141,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"025","name":"CREVOLADOSSOLA","lat":46.147,"lng":8.2964,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"053","name":"PIEDIMULERA","lat":46.0256,"lng":8.2602,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"018","name":"CAPREZZO","lat":45.982,"lng":8.5624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"038","name":"LOREGLIA","lat":45.9076,"lng":8.3723,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"051","name":"ORNAVASSO","lat":45.9689,"lng":8.4163,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"046","name":"MONTECRESTESE","lat":46.1655,"lng":8.3274,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"049","name":"OGGEBBIO","lat":45.9988,"lng":8.6516,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"014","name":"CALASCA-CASTIGLIONE","lat":46.0206,"lng":8.2146,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"063","name":"SEPPIANA","lat":46.0592,"lng":8.2178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"010","name":"BELGIRATE","lat":45.8398,"lng":8.5725,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"072","name":"VERBANIA","lat":45.9215,"lng":8.5516,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"103","codice_comu_istat":"058","name":"QUARNA SOPRA","lat":45.8721,"lng":8.3717,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"006","name":"BERCHIDDA","lat":40.785,"lng":9.1657,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"012","name":"LA MADDALENA","lat":41.2144,"lng":9.4076,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"010","name":"CALANGIANUS","lat":40.921,"lng":9.196,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"003","name":"ALÀ DEI SARDI","lat":40.6513,"lng":9.3289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"022","name":"SANTA TERESA GALLURA","lat":41.2425,"lng":9.1895,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"026","name":"TRINITÀ D'AGULTU E VIGNOLA","lat":40.9849,"lng":8.9189,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"005","name":"BADESI","lat":40.9663,"lng":8.8853,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"025","name":"TEMPIO PAUSANIA","lat":40.8984,"lng":9.1045,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"007","name":"BORTIGIADAS","lat":40.8928,"lng":9.0445,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"002","name":"AGLIENTU","lat":41.0806,"lng":9.1138,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"023","name":"SAN TEODORO","lat":45.609638,"lng":13.85666,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"001","name":"AGGIUS","lat":40.9314,"lng":9.0671,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"024","name":"TELTI","lat":40.8775,"lng":9.3539,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"018","name":"OSCHIRI","lat":40.7191,"lng":9.1021,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"020","name":"PALAU","lat":41.1794,"lng":9.3821,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"019","name":"PADRU","lat":40.7669,"lng":9.5213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"004","name":"ARZACHENA","lat":41.0788,"lng":9.3881,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"016","name":"MONTI","lat":43.4052,"lng":11.4274,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"015","name":"LURAS","lat":40.9364,"lng":9.1764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"008","name":"BUDDUSÒ","lat":40.5792,"lng":9.2592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"021","name":"SANT'ANTONIO DI GALLURA","lat":40.9905,"lng":9.3019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"011","name":"GOLFO ARANCI","lat":41.0038,"lng":9.6168,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"014","name":"LUOGOSANTO","lat":41.0496,"lng":9.2057,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"017","name":"OLBIA","lat":40.9225,"lng":9.4869,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"013","name":"LOIRI PORTO SAN PAOLO","lat":40.845,"lng":9.4988,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"104","codice_comu_istat":"009","name":"BUDONI","lat":40.7095,"lng":9.6992,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"018","name":"TORTOLÌ","lat":39.9266,"lng":9.6578,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"005","name":"ELINI","lat":39.9008,"lng":9.5313,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"009","name":"JERZU","lat":39.7924,"lng":9.5182,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"014","name":"PERDASDEFOGU","lat":39.6778,"lng":9.4414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"017","name":"TERTENIA","lat":39.698,"lng":9.5783,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"021","name":"URZULEI","lat":40.0945,"lng":9.5086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"008","name":"ILBONO","lat":39.8938,"lng":9.5507,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"023","name":"VILLAGRANDE STRISAILI","lat":39.9624,"lng":9.5086,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"016","name":"TALANA","lat":40.0431,"lng":9.4975,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"012","name":"LOTZORAI","lat":39.9708,"lng":9.6656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"004","name":"CARDEDU","lat":39.797,"lng":9.6267,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"011","name":"LOCERI","lat":39.8602,"lng":9.585,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"006","name":"GAIRO","lat":39.848,"lng":9.5072,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"019","name":"TRIEI","lat":40.0378,"lng":9.6414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"013","name":"OSINI","lat":39.8235,"lng":9.4968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"022","name":"USSASSAI","lat":39.8114,"lng":9.3961,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"020","name":"ULASSAI","lat":39.8117,"lng":9.5,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"002","name":"BARI SARDO","lat":39.8431,"lng":9.6452,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"010","name":"LANUSEI","lat":39.8792,"lng":9.5414,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"001","name":"ARZANA","lat":39.92,"lng":9.5289,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"007","name":"GIRASOLE","lat":39.9531,"lng":9.6628,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"015","name":"SEUI","lat":39.8411,"lng":9.3223,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"105","codice_comu_istat":"003","name":"BAUNEI","lat":40.0306,"lng":9.6646,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"028","name":"VILLANOVAFRANCA","lat":39.6464,"lng":9.0039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"020","name":"SETZU","lat":39.7241,"lng":8.9403,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"004","name":"FURTEI","lat":39.5645,"lng":8.9486,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"019","name":"SERRENTI","lat":39.4942,"lng":8.9789,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"022","name":"TUILI","lat":39.7146,"lng":8.9619,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"003","name":"COLLINAS","lat":39.6412,"lng":8.8399,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"013","name":"SAMASSI","lat":39.4827,"lng":8.9073,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"006","name":"GESTURI","lat":39.7332,"lng":9.0213,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"007","name":"GONNOSFANADIGA","lat":39.4948,"lng":8.6621,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"002","name":"BARUMINI","lat":39.7027,"lng":9.0038,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"023","name":"TURRI","lat":39.7059,"lng":8.9175,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"014","name":"SAN GAVINO MONREALE","lat":39.552,"lng":8.793,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"025","name":"VILLACIDRO","lat":39.4588,"lng":8.7386,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"001","name":"ARBUS","lat":39.527,"lng":8.5989,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"008","name":"GUSPINI","lat":39.5425,"lng":8.6342,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"024","name":"USSARAMANNA","lat":39.6939,"lng":8.9088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"012","name":"PAULI ARBAREI","lat":39.6619,"lng":8.9231,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"010","name":"LUNAMATRONA","lat":39.6465,"lng":8.9001,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"005","name":"GENURI","lat":39.7453,"lng":8.9244,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"016","name":"SARDARA","lat":39.6138,"lng":8.8208,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"009","name":"LAS PLASSAS","lat":39.6812,"lng":8.9859,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"018","name":"SERRAMANNA","lat":39.4252,"lng":8.9242,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"026","name":"VILLAMAR","lat":39.6192,"lng":8.9599,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"021","name":"SIDDI","lat":39.6742,"lng":8.8882,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"015","name":"SANLURI","lat":39.5638,"lng":8.8997,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"011","name":"PABILLONIS","lat":39.5924,"lng":8.7217,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"027","name":"VILLANOVAFORRU","lat":39.633,"lng":8.87,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"106","codice_comu_istat":"017","name":"SEGARIU","lat":39.5636,"lng":8.982,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"007","name":"GIBA","lat":39.073,"lng":8.6367,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"004","name":"CARLOFORTE","lat":39.1457,"lng":8.3063,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"002","name":"CALASETTA","lat":39.1104,"lng":8.3684,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"012","name":"NARCAO","lat":39.1688,"lng":8.6759,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"016","name":"PORTOSCUSO","lat":39.205,"lng":8.38,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"019","name":"SANT'ANNA ARRESI","lat":39.003,"lng":8.6474,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"011","name":"MUSEI","lat":39.3018,"lng":8.6696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"005","name":"DOMUSNOVAS","lat":39.3213,"lng":8.6514,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"023","name":"VILLAPERUCCIO","lat":39.113,"lng":8.6711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"017","name":"SAN GIOVANNI SUERGIU","lat":39.1112,"lng":8.5236,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"001","name":"BUGGERRU","lat":39.3975,"lng":8.4027,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"009","name":"IGLESIAS","lat":39.3128,"lng":8.5343,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"018","name":"SANTADI","lat":39.0934,"lng":8.7164,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"020","name":"SANT'ANTIOCO","lat":39.0617,"lng":8.4547,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"013","name":"NUXIS","lat":39.1541,"lng":8.7392,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"014","name":"PERDAXIUS","lat":39.1622,"lng":8.6125,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"006","name":"FLUMINIMAGGIORE","lat":39.4379,"lng":8.4969,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"022","name":"VILLAMASSARGIA","lat":39.277,"lng":8.6425,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"021","name":"TRATALIAS","lat":39.098,"lng":8.5721,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"008","name":"GONNESA","lat":39.2641,"lng":8.4711,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"010","name":"MASAINAS","lat":39.0525,"lng":8.629,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"003","name":"CARBONIA","lat":39.1664,"lng":8.5289,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"107","codice_comu_istat":"015","name":"PISCINAS","lat":39.0772,"lng":8.6658,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"036","name":"ORNAGO","lat":45.5966,"lng":9.4196,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"017","name":"CAVENAGO DI BRIANZA","lat":45.581,"lng":9.4137,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"031","name":"MEZZAGO","lat":45.6305,"lng":9.4438,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"014","name":"CAMPARADA","lat":45.6542,"lng":9.3228,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"041","name":"SOVICO","lat":45.6449,"lng":9.2608,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"024","name":"GIUSSANO","lat":45.6998,"lng":9.2094,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"038","name":"RONCO BRIANTINO","lat":45.6666,"lng":9.4039,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"016","name":"CARNATE","lat":45.6508,"lng":9.3791,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"052","name":"CAPONAGO","lat":45.5658,"lng":9.3757,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"054","name":"LENTATE SUL SEVESO","lat":45.6784,"lng":9.1218,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"003","name":"ALBIATE","lat":45.6574,"lng":9.2528,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"026","name":"LESMO","lat":45.65,"lng":9.3066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"037","name":"RENATE","lat":45.7264,"lng":9.2822,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"001","name":"AGRATE BRIANZA","lat":45.5755,"lng":9.3511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"007","name":"BERNAREGGIO","lat":45.6445,"lng":9.4034,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"019","name":"CESANO MADERNO","lat":45.6282,"lng":9.1464,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"009","name":"BIASSONO","lat":45.631,"lng":9.2753,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"033","name":"MONZA","lat":45.584,"lng":9.273,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"053","name":"CORNATE D'ADDA","lat":45.6499,"lng":9.4624,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"021","name":"CONCOREZZO","lat":45.5905,"lng":9.3366,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"004","name":"ARCORE","lat":45.6269,"lng":9.3265,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"049","name":"VILLASANTA","lat":45.6056,"lng":9.3034,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"011","name":"BRIOSCO","lat":45.7092,"lng":9.2397,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"046","name":"VEDANO AL LAMBRO","lat":45.607,"lng":9.2684,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"035","name":"NOVA MILANESE","lat":45.5892,"lng":9.2004,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"023","name":"DESIO","lat":45.6216,"lng":9.2088,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"012","name":"BRUGHERIO","lat":45.5527,"lng":9.3018,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"044","name":"USMATE VELATE","lat":45.6508,"lng":9.3625,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"027","name":"LIMBIATE","lat":45.6,"lng":9.122,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"005","name":"BARLASSINA","lat":45.6566,"lng":9.1299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"039","name":"SEREGNO","lat":45.6511,"lng":9.2048,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"045","name":"VAREDO","lat":45.5978,"lng":9.1604,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"018","name":"CERIANO LAGHETTO","lat":45.6272,"lng":9.0809,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"051","name":"BUSNAGO","lat":45.6164,"lng":9.4644,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"048","name":"VERANO BRIANZA","lat":45.6854,"lng":9.2299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"055","name":"RONCELLO","lat":45.6024,"lng":9.4575,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"047","name":"VEDUGGIO CON COLZANO","lat":45.7349,"lng":9.2733,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"034","name":"MUGGIÒ","lat":45.593,"lng":9.2265,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"032","name":"MISINTO","lat":45.6628,"lng":9.0823,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"006","name":"BELLUSCO","lat":45.6162,"lng":9.4233,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"028","name":"LISSONE","lat":45.6109,"lng":9.2386,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"040","name":"SEVESO","lat":45.6436,"lng":9.1376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"043","name":"TRIUGGIO","lat":45.6618,"lng":9.2685,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"030","name":"MEDA","lat":45.66,"lng":9.1545,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"029","name":"MACHERIO","lat":45.6385,"lng":9.2656,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"022","name":"CORREZZANA","lat":45.6659,"lng":9.3033,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"015","name":"CARATE BRIANZA","lat":45.676,"lng":9.243,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"010","name":"BOVISIO-MASCIAGO","lat":45.6106,"lng":9.1477,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"020","name":"COGLIATE","lat":45.6445,"lng":9.082,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"013","name":"BURAGO DI MOLGORA","lat":45.5964,"lng":9.3784,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"008","name":"BESANA IN BRIANZA","lat":45.7003,"lng":9.2922,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"025","name":"LAZZATE","lat":45.672,"lng":9.0858,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"002","name":"AICURZIO","lat":45.6413,"lng":9.4162,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"050","name":"VIMERCATE","lat":45.614,"lng":9.3713,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"108","codice_comu_istat":"042","name":"SULBIATE","lat":45.6332,"lng":9.4184,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"030","name":"PEDASO","lat":43.1002,"lng":13.8417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"003","name":"BELMONTE PICENO","lat":43.0913,"lng":13.5395,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"004","name":"CAMPOFILONE","lat":43.0803,"lng":13.8178,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"024","name":"MONTE URANO","lat":43.2038,"lng":13.6739,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"021","name":"MONTE RINALDO","lat":43.0286,"lng":13.5829,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"032","name":"PONZANO DI FERMO","lat":43.103,"lng":13.6589,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"001","name":"ALTIDONA","lat":43.1068,"lng":13.7943,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"025","name":"MONTE VIDON COMBATTE","lat":43.05,"lng":13.6322,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"008","name":"GROTTAZZOLINA","lat":43.1151,"lng":13.606,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"027","name":"MONTOTTONE","lat":43.0623,"lng":13.5883,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"039","name":"SMERILLO","lat":43.0046,"lng":13.4454,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"036","name":"SANTA VITTORIA IN MATENANO","lat":43.0188,"lng":13.4968,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"031","name":"PETRITOLI","lat":43.0675,"lng":13.6567,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"011","name":"MASSA FERMANA","lat":43.1491,"lng":13.4744,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"023","name":"MONTE SAN PIETRANGELI","lat":43.1903,"lng":13.5764,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"010","name":"MAGLIANO DI TENNA","lat":43.1391,"lng":13.5865,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"028","name":"MORESCO","lat":43.0855,"lng":13.7305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"019","name":"MONTELEONE DI FERMO","lat":43.0489,"lng":13.5305,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"016","name":"MONTE GIBERTO","lat":43.0918,"lng":13.6318,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"018","name":"MONTEGRANARO","lat":43.2312,"lng":13.6299,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"037","name":"SANT'ELPIDIO A MARE","lat":43.231,"lng":13.687,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"026","name":"MONTE VIDON CORRADO","lat":43.1207,"lng":13.488,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"034","name":"PORTO SANT'ELPIDIO","lat":43.2592,"lng":13.7592,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"014","name":"MONTEFALCONE APPENNINO","lat":42.9915,"lng":13.4582,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"009","name":"LAPEDONA","lat":43.1101,"lng":13.7734,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"005","name":"FALERONE","lat":43.1055,"lng":13.4702,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"035","name":"RAPAGNANO","lat":43.1603,"lng":13.5893,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"002","name":"AMANDOLA","lat":42.9809,"lng":13.3619,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"015","name":"MONTEFORTINO","lat":42.943,"lng":13.3414,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"006","name":"FERMO","lat":43.1656,"lng":13.7242,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"038","name":"SERVIGLIANO","lat":43.0816,"lng":13.4931,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"033","name":"PORTO SAN GIORGIO","lat":43.1838,"lng":13.7944,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"007","name":"FRANCAVILLA D'ETE","lat":43.1885,"lng":13.5417,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"017","name":"MONTEGIORGIO","lat":43.1332,"lng":13.5376,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"040","name":"TORRE SAN PATRIZIO","lat":43.1861,"lng":13.6084,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"013","name":"MONTAPPONE","lat":43.1375,"lng":13.4696,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"022","name":"MONTERUBBIANO","lat":43.0846,"lng":13.7198,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"029","name":"ORTEZZANO","lat":43.0311,"lng":13.6071,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"012","name":"MONSAMPIETRO MORICO","lat":43.0678,"lng":13.5559,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"109","codice_comu_istat":"020","name":"MONTELPARO","lat":43.0186,"lng":13.538,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"003","name":"BISCEGLIE","lat":41.2413,"lng":16.5019,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"008","name":"SPINAZZOLA","lat":40.967,"lng":16.0918,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"002","name":"BARLETTA","lat":41.3193,"lng":16.284,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"009","name":"TRANI","lat":41.2755,"lng":16.4176,"capoluogo_prov":true,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"004","name":"CANOSA DI PUGLIA","lat":41.2225,"lng":16.066,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"010","name":"TRINITAPOLI","lat":41.3583,"lng":16.0883,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"007","name":"SAN FERDINANDO DI PUGLIA","lat":41.3038,"lng":16.0714,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"006","name":"MINERVINO MURGE","lat":41.0853,"lng":16.0792,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"005","name":"MARGHERITA DI SAVOIA","lat":41.3753,"lng":16.1511,"capoluogo_prov":false,"capoluogo_reg":false},{"codice_prov_istat":"110","codice_comu_istat":"001","name":"ANDRIA","lat":41.2317,"lng":16.2917,"capoluogo_prov":true,"capoluogo_reg":false}] \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dataset/italian_stopwords b/anno3/avrc/assignments/dataviz/dataset/italian_stopwords new file mode 100644 index 0000000..6ee02b5 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/italian_stopwords @@ -0,0 +1,279 @@ +ad +al +allo +ai +agli +all +agl +alla +alle +con +col +coi +da +dal +dallo +dai +dagli +dall +dagl +dalla +dalle +di +del +dello +dei +degli +dell +degl +della +delle +in +nel +nello +nei +negli +nell +negl +nella +nelle +su +sul +sullo +sui +sugli +sull +sugl +sulla +sulle +per +tra +contro +io +tu +lui +lei +noi +voi +loro +mio +mia +miei +mie +tuo +tua +tuoi +tue +suo +sua +suoi +sue +nostro +nostra +nostri +nostre +vostro +vostra +vostri +vostre +mi +ti +ci +vi +lo +la +li +le +gli +ne +il +un +uno +una +ma +ed +se +perché +anche +come +dov +dove +che +chi +cui +non +più +quale +quanto +quanti +quanta +quante +quello +quelli +quella +quelle +questo +questi +questa +queste +si +tutto +tutti +a +c +e +i +l +o +ho +hai +ha +abbiamo +avete +hanno +abbia +abbiate +abbiano +avrò +avrai +avrà +avremo +avrete +avranno +avrei +avresti +avrebbe +avremmo +avreste +avrebbero +avevo +avevi +aveva +avevamo +avevate +avevano +ebbi +avesti +ebbe +avemmo +aveste +ebbero +avessi +avesse +avessimo +avessero +avendo +avuto +avuta +avuti +avute +sono +sei +è +siamo +siete +sia +siate +siano +sarò +sarai +sarà +saremo +sarete +saranno +sarei +saresti +sarebbe +saremmo +sareste +sarebbero +ero +eri +era +eravamo +eravate +erano +fui +fosti +fu +fummo +foste +furono +fossi +fosse +fossimo +fossero +essendo +faccio +fai +facciamo +fanno +faccia +facciate +facciano +farò +farai +farà +faremo +farete +faranno +farei +faresti +farebbe +faremmo +fareste +farebbero +facevo +facevi +faceva +facevamo +facevate +facevano +feci +facesti +fece +facemmo +faceste +fecero +facessi +facesse +facessimo +facessero +facendo +sto +stai +sta +stiamo +stanno +stia +stiate +stiano +starò +starai +starà +staremo +starete +staranno +starei +staresti +starebbe +staremmo +stareste +starebbero +stavo +stavi +stava +stavamo +stavate +stavano +stetti +stesti +stette +stemmo +steste +stettero +stessi +stesse +stessimo +stessero +stando diff --git a/anno3/avrc/assignments/dataviz/dataset/locations_example.json b/anno3/avrc/assignments/dataviz/dataset/locations_example.json new file mode 100644 index 0000000..cf03bec --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/locations_example.json @@ -0,0 +1,490 @@ +{ + "locations": [ + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "001", + "codice_comu_istat": "272", + "name": "TORINO", + "lat": 45.05, + "lng": 7.6667, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "043", + "codice_comu_istat": "023", + "name": "MACERATA", + "lat": 43.3007, + "lng": 13.4563, + "capoluogo_prov": true, + "capoluogo_reg": false + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + }, + { + "codice_prov_istat": "015", + "codice_comu_istat": "146", + "name": "MILANO", + "lat": 45.4612, + "lng": 9.1878, + "capoluogo_prov": true, + "capoluogo_reg": true + } + ] +} diff --git a/anno3/avrc/assignments/dataviz/dataset/make.py b/anno3/avrc/assignments/dataviz/dataset/make.py new file mode 100644 index 0000000..5f49235 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/make.py @@ -0,0 +1,265 @@ +import json +import os +import calendar +from collections import Counter + +from IPython import embed as fuck + +for yr in range(2013, 2020): + try: + os.mkdir('avg_'+str(yr)) + except: + pass +for yr in range(2013, 2020): + try: + os.mkdir(str(yr)) + except: + pass +try: + os.mkdir('all') +except: + pass +try: + os.mkdir('trends') +except: + pass + +def to_strtime(time, includeYear): + if includeYear: + return f'{time.day}-{calendar.month_name[time.month][:3]}-{time.year}' + else: + return f'{time.day}-{calendar.month_name[time.month][:3]}' + + +def compute_trend(p1, y1, p2, y2): + from datetime import date, timedelta + + max_date = date(2019, 11, 24) + if y1 == 'all': + assert y2 == 'all' + start = date(2018, 1, 1) if 'renzi' in (p1, p2) else date(2013, 1, 1) + end = max_date + else: + mmin = min((y1, y2)) + mmax = max((y1, y2)) + start = date(mmin, 1, 1) + end = date(mmax, 12, 31) + if end > max_date: + end = max_date + delta = end - start + assert delta.days > 0, fuck() + + filename = f'trends/{y1}_{p1}_{y2}_{p2}_trends.tsv' + with open(str(y1)+'/'+p1+'_trend.json', 'r') as f: + trend1 = json.loads(f.read()) + with open(str(y2)+'/'+p2+'_trend.json', 'r') as f: + trend2 = json.loads(f.read()) + + with open(filename, 'w') as f: + f.write(f'date\t{p1.capitalize()}-{str(y1)[2:]}\t{p2.capitalize()}-{str(y2)[2:]}\n') + cnt = 0 + for i in range(365): + cnt+=1 + day = start + timedelta(days=i) + k = to_strtime(day, False) + v1 = 0 if k not in trend1 else trend1[k] + v2 = 0 if k not in trend2 else trend2[k] + mth = calendar.month_name[day.month][:3] + jday = f'70-{mth}-{day.day}' if y1 == 'all' else k #with year: to_strtime(day, y1 != 'all') + f.write(f'{jday}\t{v1}\t{v2}\n') + print('wrote:', cnt,'trends') + +def compute_possible_trends(): + from itertools import repeat, combinations + r = zip(repeat(('renzi')), (2018, 2019)) + s = zip(repeat(('salvini')), range(2013, 2020)) + t = tuple(r) + tuple(s) + poss = list(combinations(t, 2)) + poss.append([('renzi', 'all'), ('salvini', 'all')]) + try: + for p1, p2 in poss: + compute_trend(*p1, *p2) + except Exception as e: + fuck() + import sys + sys.exit() + + +def parse_politico(filename): + from dateutil.parser import parse as dateparse + + politico = dict() + with open(filename, 'r') as f: + content = [json.loads(l) for l in f.readlines()] + + all = [] + for j in content : # parse dates and removed unused keys + j['time'] = dateparse(j['time']) + for k in ['text', 'shared_text', 'link', 'post_url', 'shares', 'comments', 'likes', 'image', 'post_id']: + j.pop(k) + all.append(j) + + politico['all'] = all + + # per-year posts and avg post length / year + years = set([y['time'].year for y in all]) + for yr in years: + yposts = [j for j in all if j['time'].year == yr] + politico[yr] = yposts + avg = 0 + for p in yposts: + avg += len(p['post_text']) + avg = int(avg/len(yposts)) + politico["avg_"+str(yr)] = avg + + print('Parsed', filename) + return politico + + +def calcolo_comuni(words): + with open('comuni.json', 'r') as f: + comuni_content = f.read() + + with open('world_cities.json', 'r') as f: + world_content = f.read() + + + comuniCoord = dict() + for j in json.loads(comuni_content): + comuniCoord[j['name'].upper()] = j + # loaded comuni italiani + + mondo = dict() + for j in json.loads(world_content): + name = j['name'].upper() + cc = j['country_code'] + if cc not in ['CA', 'US']: + j['lat'], j['lng'] = j['latitude'], j['longitude'] + mondo[name] = j + + interesse = {'PARIGI': 'PARIS', 'MOSCA': 'MOSCOW', 'BERLINO': 'BERLIN', 'LONDRA': 'LONDON', 'BRUXELLES': 'BRUSSELS'} + europa = {key: mondo[value] for key, value in interesse.items()} + comuniCoord.update(europa) + + comuni = set(comuniCoord.keys()) + comuni.remove("ALFANO") + comuni.remove("PAESE") + comuni.remove("FONDO") + comuni.remove("VITA") + comuni.remove("CARDINALE") + comuni.remove("PARENTI") + comuni.remove("AMATO") + comuni.remove("BELLA") + comuni.remove("LIBERI") + comuni.remove("BOMBA") + comuni.remove("POPOLI") + comuni.remove("MENTANA") + comuni.remove("MONTI") + comuni.remove("CALCI") + comuni.remove("ORA") + comuni.remove("DON") + comuni.remove("PREZZO") + comuni.remove("CALCIO") + comuni.remove("MACELLO") + comuni.remove("RUSSI") + comuni.remove("PORTE") + + visitati = filter(lambda w: w.upper() in comuni, words) + return {'locations':[comuniCoord[v.upper()] for v in visitati]} + +def write_words(politico, prefix): + # a file for each year and one for total + # prefix is prefix of filename + import string + import emoji + + punctuations = string.punctuation + ''.join(["“", "’", "…"]) + with open('italian_stopwords', 'r') as f: + personal = [str(i) for i in range(50)] + ['tre', 'ps', '15', '23', 'fra', 'va', 'ce', 'due', 'co', 'qui', 'di', 'far', 'di', 'sa', 'c’è', 'quattro', 'cinque', 'sei', 'sette', 'otto', 'nove', 'dieci', 'post', 'd', 'p', 's', 'de', 'ly'] + personal.remove('18') + stopwords = set([w.strip() for w in f.readlines()] + personal) + + for k, v in politico.items(): + # v keys: + # 'all' one year of posts or all posts + # '' posts for year '' + # 'avg_' avg post length for year '' + words = [] + emojis = [] + sonno = dict() + # generate layout + for month in calendar.month_name: + sonno[month[:3]] = dict() + for i in range(24): + sonno[month[:3]][i] = 0 + + filename_words = str(k)+'/'+prefix+'_'+'words' + filename_counter = str(k)+'/'+prefix+'_'+'counter' + filename_sleep = str(k)+'/'+prefix+'_'+'sleep' + filename_emoji = str(k)+'/'+prefix+'_'+'emoji' + filename_comuni = str(k)+'/'+prefix+'_'+'comuni.html' + filename_trend = str(k)+'/'+prefix+'_trend.json' + filename_avg = str(k) +'/'+ prefix + + # write avg post length + if str(k).startswith('avg'): + with open(filename_avg, 'w') as f: + f.write(str(v)) + print('Wrote', filename_avg) + continue + + def filter_word(w): + return w not in stopwords and not w.isdigit() and w != '' and w[0] != ' ' + + trends = list() # keep track of days for posts + for j in v: + text = j['post_text'].replace('\n', ' ') + for punct in punctuations: + text = text.replace(punct, ' ').lower() + words.extend(filter(filter_word , text.split(' '))) + emojis.extend(filter(lambda w: w in emoji.UNICODE_EMOJI, text.split(' '))) + + assert k in list(range(2013, 2020))+['all'], k + time = j['time'] + sonno[calendar.month_name[time.month][:3]][time.hour] += 1 + trends.append(to_strtime(time, k == 'all')) + print('Computed stemmed words, sleep and emoji counting') + + with open(filename_words, 'w') as f: + f.writelines([w+'\n' for w in words]) + print('Wrote', filename_words) + + wcounter = Counter(words) + with open(filename_counter, 'w') as f: + f.write(json.dumps(wcounter)) + print('Wrote', filename_counter) + + ecounter = Counter(emojis) + with open(filename_emoji, 'w') as f: + f.write(json.dumps(ecounter)) + print('Wrote', filename_emoji) + + with open(filename_trend, 'w') as f: + f.write(json.dumps(Counter(trends))) + print('Wrote', filename_trend) + + with open(filename_sleep, 'w') as f: + f.write(json.dumps(sonno)) + print('Wrote', filename_sleep) + + print('Calcolo comuni') + comuni_visitati = calcolo_comuni(words) + from make_heatmap import Generator as HeatMapGen + generator = HeatMapGen() + assert type(comuni_visitati is dict) + generator.run(comuni_visitati, filename_comuni) + print() + + +if __name__ == '__main__': + renzi = parse_politico('matteorenziufficiale.json') + write_words(renzi, 'renzi') + salvini = parse_politico('salviniofficial.json') + write_words(salvini, 'salvini') + + compute_possible_trends() diff --git a/anno3/avrc/assignments/dataviz/dataset/make_heatmap.py b/anno3/avrc/assignments/dataviz/dataset/make_heatmap.py new file mode 100644 index 0000000..721d355 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/make_heatmap.py @@ -0,0 +1,119 @@ +#!/usr/bin/env python3 + +import collections +import json +import os +import sys +import webbrowser +import folium +from folium.plugins import HeatMap + + +TEXT_BASED_BROWSERS = [webbrowser.GenericBrowser, webbrowser.Elinks] + + +class Generator: + def __init__(self): + self.coordinates = collections.defaultdict(int) + self.max_coordinates = (0, 0) + self.max_magnitude = 0 + + def loadData(self, file_name): + """Loads the google location data from the given json file. + + Arguments: + file_name {string} -- The name of the json file with the google + location data. + """ + if type(file_name) is str: + with open(file_name) as json_file: + data = json.load(json_file) + else: + assert type(file_name) is dict # call from library + data = file_name + + for (i, loc) in enumerate(data["locations"]): + if "lat" not in loc or "lng" not in loc: + continue + #lat = round(loc["lat"] / 1e7, 6) + #lon = round(loc["lng"] / 1e7, 6) + lat = loc["lat"] + lon = loc["lng"] + self.coordinates[(lat, lon)] += 1 + if self.coordinates[(lat, lon)] > self.max_magnitude: + self.max_coordinates = (lat, lon) + self.max_magnitude = self.coordinates[(lat, lon)] + + def generateMap(self, map_zoom_start=6, heatmap_radius=7, + heatmap_blur=4, heatmap_min_opacity=0.2, + heatmap_max_zoom=4): + """Generates a heatmap and saves it in the output_file. + + Arguments: + output_file {string} -- The name of the output file. + """ + map_data = [(coords[0], coords[1], magnitude) + for coords, magnitude in self.coordinates.items()] + + # Generate map + m = folium.Map(location=self.max_coordinates, + zoom_start=map_zoom_start, + tiles="OpenStreetMap") + + # Generate heat map + heatmap = folium.plugins.HeatMap( + map_data, + max_val=self.max_magnitude, + min_opacity=heatmap_min_opacity, + radius=heatmap_radius, + blur=heatmap_blur, + max_zoom=heatmap_max_zoom) + + m.add_child(heatmap) + return m + + def run(self, data_file, output_file): + """Load the data, generate the heatmap and save it. + + Arguments: + data_file {string} -- The name of the json file with the google + location data. + output_file {[type]} -- The name of the output file. + """ + # print("Loading data from {}...".format(data_file)) + self.loadData(data_file) + print("Generating heatmap...") + m = self.generateMap() + print("Saving map to {}...".format(output_file)) + m.save(output_file) + + +def isTextBasedBrowser(browser): + """Returns if browser is a text-based browser. + + Arguments: + browser {webbrowser.BaseBrowser} -- A browser. + + Returns: + bool -- True if browser is text-based, False if browser is not + text-based. + """ + for tb_browser in TEXT_BASED_BROWSERS: + if type(browser) is tb_browser: + return True + return False + + +if __name__ == "__main__": + if len(sys.argv) > 1: + data_file = sys.argv[1] + output_file = "heatmap.html" + generator = Generator() + generator.run(data_file, output_file) + # Check if browser is text-based + # if not isTextBasedBrowser(webbrowser.get()): + # print("Opening {} in browser...".format(output_file)) + # webbrowser.open('file://' + os.path.realpath(output_file)) + else: + print("Usage: python geo_heatmap.py ") + sys.exit() diff --git a/anno3/avrc/assignments/dataviz/dataset/matteorenziufficiale.json b/anno3/avrc/assignments/dataviz/dataset/matteorenziufficiale.json new file mode 100644 index 0000000..590006d --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/matteorenziufficiale.json @@ -0,0 +1,959 @@ +{"post_id": "10157205576014915", "text": "Ancora maltempo, ancora crolli. Ora la priorit\u00e0 \u00e8 aiutare chi vive nelle aree a rischio. Ma poi il Governo deve ripristinare SUBITO l\u2019Unita di missione sul dissesto. E per sbloccare i cantieri servono i commissari, non le chiacchiere. I soldi ci sono, spendiamoli #ItaliaShock", "post_text": "Ancora maltempo, ancora crolli. Ora la priorit\u00e0 \u00e8 aiutare chi vive nelle aree a rischio. Ma poi il Governo deve ripristinare SUBITO l\u2019Unita di missione sul dissesto. E per sbloccare i cantieri servono i commissari, non le chiacchiere. I soldi ci sono, spendiamoli #ItaliaShock", "shared_text": "", "time": "2019-11-24 17:14:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/76697234_10157205575559915_6691466409018392576_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=R1U6mQoiFtwAQniknvW1kaEsVVoZVNRC1chA69Kd-8P0J52BR0kZHk9SQ&_nc_ht=scontent-cdt1-1.xx&oh=e24a049fe5cd828f18278954f27ce24e&oe=5E8641DD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157205576014915&id=113335124914", "link": null} +{"post_id": "10157204842634915", "text": "Il Sole 24 Ore di oggi certifica una verit\u00e0 semplice: se l\u2019Italia davvero sblocca i cantieri, se parte #ItaliaShock, c\u2019\u00e8 un mondo intero pronto a investire su di noi. Ecco perch\u00e9 Italia Viva propone questa sfida: sono posti di lavoro, soldi, fiducia, infrastrutture. Che cosa stiamo aspettando?", "post_text": "Il Sole 24 Ore di oggi certifica una verit\u00e0 semplice: se l\u2019Italia davvero sblocca i cantieri, se parte #ItaliaShock, c\u2019\u00e8 un mondo intero pronto a investire su di noi. Ecco perch\u00e9 Italia Viva propone questa sfida: sono posti di lavoro, soldi, fiducia, infrastrutture. Che cosa stiamo aspettando?", "shared_text": "", "time": "2019-11-24 10:26:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/78636708_10157204841259915_1652419535342403584_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=v-MYiRZFbfQAQn3uAq5V-UpYBwCqEfgGlM5XirjpFZZB0tuwOpu0xkhWw&_nc_ht=scontent-cdt1-1.xx&oh=f6790555aca31a69e9f2e66e5257b5ef&oe=5E48EEDC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157204842634915&id=113335124914", "link": null} +{"post_id": "10157202994484915", "text": "Un professore di italiano e latino, sostenitore di Salvini, scrive su Facebook che chi va in piazza con le sardine non prender\u00e0 pi\u00f9 6 con lui, neppure col binocolo. Chi scrive certe cose ai suoi studenti pu\u00f2 definirsi un educatore? Per me naturalmente no.", "post_text": "Un professore di italiano e latino, sostenitore di Salvini, scrive su Facebook che chi va in piazza con le sardine non prender\u00e0 pi\u00f9 6 con lui, neppure col binocolo. Chi scrive certe cose ai suoi studenti pu\u00f2 definirsi un educatore? Per me naturalmente no.", "shared_text": "", "time": "2019-11-23 19:37:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p235x350/74479443_10157202992209915_8192322140532375552_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=xmNRAgEao4MAQmSM34gICt28HbIA54CtK4gSMAOVTQK8bPTCLW-ZRAhGg&_nc_ht=scontent-cdt1-1.xx&oh=07822cde350f24d906f39bf0c17320e2&oe=5E871000", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157202994484915&id=113335124914", "link": null} +{"post_id": "10157202868429915", "text": "Ascolto Francesco De Gregori che dice alla Festa del Foglio: \u201cNo, non mi manca il passato. Si cambia ed \u00e8 bello cambiare\u201d. \u00c8 il messaggio politicamente pi\u00f9 bello e pi\u00f9 forte della Festa dell\u2019Ottimismo", "post_text": "Ascolto Francesco De Gregori che dice alla Festa del Foglio: \u201cNo, non mi manca il passato. Si cambia ed \u00e8 bello cambiare\u201d. \u00c8 il messaggio politicamente pi\u00f9 bello e pi\u00f9 forte della Festa dell\u2019Ottimismo", "shared_text": "", "time": "2019-11-23 18:48:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/77020447_10157202868274915_1923828504575606784_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=o_q-STfAC-sAQnNdI2yeINpRB8haj06DuD2_SFfNturZ_1wL78T4NrJ7Q&_nc_ht=scontent-cdt1-1.xx&oh=e98df2b98d5aaeb12f6055efa1d5fb98&oe=5E454E96", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157202868429915&id=113335124914", "link": null} +{"post_id": "10157196989729915", "text": "Dobbiamo dare una scossa all'Italia, ad iniziare da quei 120 miliardi sui cantieri gi\u00e0 stanziati ma bloccati dalla burocrazia. Italia Viva nasce anche per questo: per dare un bello SHOCK all'Italia, spenderli e far ripartire l'economia\n#ItaliaShock", "post_text": "Dobbiamo dare una scossa all'Italia, ad iniziare da quei 120 miliardi sui cantieri gi\u00e0 stanziati ma bloccati dalla burocrazia. Italia Viva nasce anche per questo: per dare un bello SHOCK all'Italia, spenderli e far ripartire l'economia\n#ItaliaShock", "shared_text": "", "time": "2019-11-21 16:38:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=500057284185889&id=113335124914", "link": null} +{"post_id": "10157196393549915", "text": "Stamani sono stato ospite di Uno Mattina. Se ve la siete persa la trovate qui. Mi fate sapere come \u00e8 andata? Buona giornata \ud83d\ude0a", "post_text": "Stamani sono stato ospite di Uno Mattina. Se ve la siete persa la trovate qui. Mi fate sapere come \u00e8 andata? Buona giornata \ud83d\ude0a", "shared_text": "", "time": "2019-11-21 12:00:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=465111580788722&id=113335124914", "link": null} +{"post_id": "10157196124539915", "text": "Incontri ravvicinati del terzo tipo negli studi Rai questa mattina. Con il prototipo originale di ET che il maestro Rambaldi invi\u00f2 a Spielberg l\u2019anno prima del film. Sono passati quasi 40 anni! Che emozione vedere da bimbetto il film al cinema. E quante lacrime...", "post_text": "Incontri ravvicinati del terzo tipo negli studi Rai questa mattina. Con il prototipo originale di ET che il maestro Rambaldi invi\u00f2 a Spielberg l\u2019anno prima del film. Sono passati quasi 40 anni! Che emozione vedere da bimbetto il film al cinema. E quante lacrime...", "shared_text": "", "time": "2019-11-21 09:37:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76706847_10157196124084915_6243068468946534400_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=N6snsChpcBAAQmRzxn0UpQAslrGLJn9dCbkn3jLvP0yr58RspQif3HnyQ&_nc_ht=scontent-cdt1-1.xx&oh=770335f0ae3597bc940f34b52956e944&oe=5E3E73F0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157196124539915&id=113335124914", "link": null} +{"post_id": "10157193337359915", "text": "Per chi se la fosse persa, ripropongo la mia intervista a Porta a Porta di ieri sera. Leggo volentieri i vostri commenti \ud83d\ude0a Buona giornata", "post_text": "Per chi se la fosse persa, ripropongo la mia intervista a Porta a Porta di ieri sera. Leggo volentieri i vostri commenti \ud83d\ude0a Buona giornata", "shared_text": "", "time": "2019-11-20 11:02:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1632150466925989&id=113335124914", "link": null} +{"post_id": "10157191934434915", "text": "Vi aspetto stasera alle 23.55 su Rai 1 dove sar\u00f2 ospite di Bruno Vespa a Porta a Porta", "post_text": "Vi aspetto stasera alle 23.55 su Rai 1 dove sar\u00f2 ospite di Bruno Vespa a Porta a Porta", "shared_text": "", "time": "2019-11-19 20:53:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75424638_10157191930384915_4755795017455370240_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=kG08EvA1o-4AQlNTNAniYI3A0u4Es5ODaHtU1wLoQ1flKjXNw29Xwk6Ew&_nc_ht=scontent-cdt1-1.xx&oh=03323ba748c05beeed8356521375cc32&oe=5E5050AF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157191934434915&id=113335124914", "link": null} +{"post_id": "10157190536019915", "text": "Il capogruppo della Lega alla Camera, Molinari, condannato per peculato, \u00e8 stato assolto ieri in Cassazione. Penso che si debba essere garantisti anche con gli avversari, soprattutto con gli avversari. Molinari ha dovuto subire molti attacchi e la notizia della sua assoluzione non ha avuto la stessa eco dell\u2019indagine e della condanna. Trovo dunque\u2026 Altro un dovere per me, avversario politico, riconoscere pubblicamente che Molinari \u00e8 un cittadino innocente. E che i media dovrebbero valorizzare questa notizia almeno quanto hanno fatto con la condanna. Ci scontreremo in Parlamento ma riconoscere la correttezza altrui \u00e8 un dovere. E la prima forma di onest\u00e0 \u00e8 l\u2019onest\u00e0 intellettuale", "post_text": "Il capogruppo della Lega alla Camera, Molinari, condannato per peculato, \u00e8 stato assolto ieri in Cassazione. Penso che si debba essere garantisti anche con gli avversari, soprattutto con gli avversari. Molinari ha dovuto subire molti attacchi e la notizia della sua assoluzione non ha avuto la stessa eco dell\u2019indagine e della condanna. Trovo dunque\u2026 Altro un dovere per me, avversario politico, riconoscere pubblicamente che Molinari \u00e8 un cittadino innocente. E che i media dovrebbero valorizzare questa notizia almeno quanto hanno fatto con la condanna. Ci scontreremo in Parlamento ma riconoscere la correttezza altrui \u00e8 un dovere. E la prima forma di onest\u00e0 \u00e8 l\u2019onest\u00e0 intellettuale", "shared_text": "", "time": "2019-11-19 10:48:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157190536019915&id=113335124914", "link": null} +{"post_id": "10157190382244915", "text": "Ho raccontato al Corriere della Sera perch\u00e9 l\u2019Italia deve sbloccare 120 miliardi di euro sui cantieri. Si pu\u00f2 fare, si deve fare. Questa \u00e8 la vera priorit\u00e0 del Paese. Italia Viva \u00e8 pronta a fare la propria parte\nMATTEORENZI.IT\nPer maltempo e recessione vanno sbloccati i cantieri! Renzi spiega al Corriere il Piano Shock di Italia Viva", "post_text": "Ho raccontato al Corriere della Sera perch\u00e9 l\u2019Italia deve sbloccare 120 miliardi di euro sui cantieri. Si pu\u00f2 fare, si deve fare. Questa \u00e8 la vera priorit\u00e0 del Paese. Italia Viva \u00e8 pronta a fare la propria parte", "shared_text": "MATTEORENZI.IT\nPer maltempo e recessione vanno sbloccati i cantieri! Renzi spiega al Corriere il Piano Shock di Italia Viva", "time": "2019-11-19 09:04:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/s480x480/78335444_23843979140790306_5084325660155969536_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=0kxU0IHWZQMAQlcpyOJZE5mJ1IL1iwtsYgNX7j-MXTmcD5rXFkvWdZ6LQ&_nc_ht=scontent-cdt1-1.xx&oh=fe3995cb58dc4bdf8f261dc8092f1444&oe=5E8A2694", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157190382244915&id=113335124914", "link": "https://www.matteorenzi.it/renzi_spiega_al_corriere_il_piano_shock_di_italia_viva?fbclid=IwAR37hcemXYNxHxmTUsHkw6rnG7Y7nM7iGKa9K9F1cLtZtXJ0wqvdhqi1I_I"} +{"post_id": "10157185926039915", "text": "Un anno fa dicevo queste cose in Parlamento. Oggi dobbiamo recuperare quell\u2019errore. Il Governo ripristini subito l\u2019Unit\u00e0 di missione sul dissesto idrogeologico. E sblocchi tutti i cantieri con il piano #ItaliaShock", "post_text": "Un anno fa dicevo queste cose in Parlamento. Oggi dobbiamo recuperare quell\u2019errore. Il Governo ripristini subito l\u2019Unit\u00e0 di missione sul dissesto idrogeologico. E sblocchi tutti i cantieri con il piano #ItaliaShock", "shared_text": "", "time": "2019-11-17 17:49:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157185926039915&id=113335124914", "link": null} +{"post_id": "10157185287289915", "text": "L\u2019iniziativa di Italia Viva prevista per oggi alle 16 a Pistoia \u00e8 annullata per l\u2019ondata di maltempo che sta colpendo in queste ore tutta la Toscana.\nCi stringiamo alle popolazioni al momento colpite e agli amministratori che in queste ore stanno impegnandosi per fronteggiare le conseguenze del maltempo.\nMi scuso con chi era gi\u00e0 in viaggio e con chi ha organizzato, ma ci rivedremo fin dai prossimi giorni, tutti insieme.", "post_text": "L\u2019iniziativa di Italia Viva prevista per oggi alle 16 a Pistoia \u00e8 annullata per l\u2019ondata di maltempo che sta colpendo in queste ore tutta la Toscana.\nCi stringiamo alle popolazioni al momento colpite e agli amministratori che in queste ore stanno impegnandosi per fronteggiare le conseguenze del maltempo.\nMi scuso con chi era gi\u00e0 in viaggio e con chi ha organizzato, ma ci rivedremo fin dai prossimi giorni, tutti insieme.", "shared_text": "", "time": "2019-11-17 13:04:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157185287289915&id=113335124914", "link": null} +{"post_id": "10157183578164915", "text": "L\u2019abbraccio a Teresa Bellanova non \u00e8 solo l\u2019abbraccio sul palco di Catania, ma \u00e8 soprattutto il segno di un partito dove non c\u2019\u00e8 fuoco amico. E dove i rapporti umani sono un valore insostituibile. Anche questa \u00e8 Italia Viva: i sorrisi, gli abbracci, la buona politica", "post_text": "L\u2019abbraccio a Teresa Bellanova non \u00e8 solo l\u2019abbraccio sul palco di Catania, ma \u00e8 soprattutto il segno di un partito dove non c\u2019\u00e8 fuoco amico. E dove i rapporti umani sono un valore insostituibile. Anche questa \u00e8 Italia Viva: i sorrisi, gli abbracci, la buona politica", "shared_text": "", "time": "2019-11-16 21:43:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75339525_10157183576669915_4984041012767752192_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=Q4r5m2TI8KAAQmJA36MJEhGvGU4bjC-e8D--3NNGJGyJo819YFtBsTh2g&_nc_ht=scontent-cdt1-1.xx&oh=526162ef44bed5c4301aa71eb5596748&oe=5E85483F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157183578164915&id=113335124914", "link": null} +{"post_id": "10157183211614915", "text": "Bellissima atmosfera a Catania. Sblocchiamo i cantieri, sblocchiamo l\u2019Italia. E diamo alla Sicilia le infrastrutture che merita. Italia Viva cresce giorno dopo giorno", "post_text": "Bellissima atmosfera a Catania. Sblocchiamo i cantieri, sblocchiamo l\u2019Italia. E diamo alla Sicilia le infrastrutture che merita. Italia Viva cresce giorno dopo giorno", "shared_text": "", "time": "2019-11-16 19:28:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/75418223_10157183208559915_1797291797303525376_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=FDKVnCOTxpoAQklqEIbWRoFzxo17xPPaBBT4JoDv4YsNFVioOKcty0hig&_nc_ht=scontent-cdt1-1.xx&oh=567a319b5ae0477dc87c3673466e79ea&oe=5E447613", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157183211614915&id=113335124914", "link": null} +{"post_id": "776114036148860", "text": "In diretta da Catania il lancio di Italia Viva in Sicilia\n#ItaliaViva", "post_text": "In diretta da Catania il lancio di Italia Viva in Sicilia\n#ItaliaViva", "shared_text": "", "time": "2019-11-16 18:03:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=776114036148860&id=113335124914", "link": null} +{"post_id": "10157182838404915", "text": "Pazzesco oggi a Catania. Cinquemila persone per la prima in Sicilia di Italia Viva. Saremo all\u2019altezza di questo entusiasmo, che bello! Tra poco la diretta", "post_text": "Pazzesco oggi a Catania. Cinquemila persone per la prima in Sicilia di Italia Viva. Saremo all\u2019altezza di questo entusiasmo, che bello! Tra poco la diretta", "shared_text": "", "time": "2019-11-16 16:47:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75580357_10157182836969915_4811113586342494208_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=NKXgo91xQvEAQlNUs_I_J1Xa5xOxr5-ree2zsprHs0h6jh60z31sjSJVA&_nc_ht=scontent-cdt1-1.xx&oh=726cf0e2eacfc23e069e4714cf34d221&oe=5E7EDF9B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157182838404915&id=113335124914", "link": null} +{"post_id": "10157182764184915", "text": "Tra poco in diretta da Catania per Italia Viva con Teresa Bellanova ed Ettore Rosato", "post_text": "Tra poco in diretta da Catania per Italia Viva con Teresa Bellanova ed Ettore Rosato", "shared_text": "", "time": "2019-11-16 16:14:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75603927_10157182775689915_150285273668780032_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=oVxpHCGLEWYAQkl0exuyoFSl4L9895Qqb_1yarQhmqc6UMPRSeOcojH-w&_nc_ht=scontent-cdt1-1.xx&oh=550394d289279c714c4eeb1cb0a9bad4&oe=5E86478E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157182764184915&id=113335124914", "link": null} +{"post_id": "10157182111569915", "text": "Ieri in collegamento a l'aria che tira con Myrta Merlino, per spiegare #shock, le nostre proposte per sbloccare gli investimenti e rilanciare l'economia.", "post_text": "Ieri in collegamento a l'aria che tira con Myrta Merlino, per spiegare #shock, le nostre proposte per sbloccare gli investimenti e rilanciare l'economia.", "shared_text": "", "time": "2019-11-16 10:53:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1319934328178921&id=113335124914", "link": null} +{"post_id": "10157180035419915", "text": "L\u2019Italia \u00e8 ferma. C\u2019\u00e8 un solo modo per farla ripartire: sbloccare i cantieri. Ci sono 120 miliardi di opere pubbliche che possono essere finalmente liberate. Il progetto #ItaliaShock per noi \u00e8 una priorit\u00e0. Ci dai una mano a farlo conoscere?", "post_text": "L\u2019Italia \u00e8 ferma. C\u2019\u00e8 un solo modo per farla ripartire: sbloccare i cantieri. Ci sono 120 miliardi di opere pubbliche che possono essere finalmente liberate. Il progetto #ItaliaShock per noi \u00e8 una priorit\u00e0. Ci dai una mano a farlo conoscere?", "shared_text": "", "time": "2019-11-15 18:36:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157180035419915&id=113335124914", "link": null} +{"post_id": "469685777067791", "text": "Da Torino le proposte SHOCK di Italia Viva per gli investimenti e rilanciare l\u2019economia\n#ItaliaShock", "post_text": "Da Torino le proposte SHOCK di Italia Viva per gli investimenti e rilanciare l\u2019economia\n#ItaliaShock", "shared_text": "", "time": "2019-11-15 16:00:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=469685777067791&id=113335124914", "link": null} +{"post_id": "10157178719174915", "text": "Buongiorno dalle Langhe. Ci vediamo oggi a Torino, in diretta dalle 15.30 per presentare ShockItalia, la nostra proposta per rilanciare gli investimenti", "post_text": "Buongiorno dalle Langhe. Ci vediamo oggi a Torino, in diretta dalle 15.30 per presentare ShockItalia, la nostra proposta per rilanciare gli investimenti", "shared_text": "", "time": "2019-11-15 07:19:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/74674442_10157178718454915_6665661180352135168_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=xok-N_hlkd8AQljFzD2R8d-gXKQsB1I-AWxuzwybdgUjK4Lee2GntqWig&_nc_ht=scontent-cdt1-1.xx&oh=91b76e0e5e46c3d8502ed8e74e87c44a&oe=5E4EFC89", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157178719174915&id=113335124914", "link": null} +{"post_id": "10157174043559915", "text": "Ci sono dei momenti in cui NON si aprono polemiche. Ora siamo tutti dalla parte di Venezia, con il Sindaco Brugnaro, con il Governatore Zaia. E soprattutto con i veneziani. Non \u00e8 il tempo di fare polemiche, tutti uniti per rimediare ai danni. Un Paese serio si unisce, non si divide.", "post_text": "Ci sono dei momenti in cui NON si aprono polemiche. Ora siamo tutti dalla parte di Venezia, con il Sindaco Brugnaro, con il Governatore Zaia. E soprattutto con i veneziani. Non \u00e8 il tempo di fare polemiche, tutti uniti per rimediare ai danni. Un Paese serio si unisce, non si divide.", "shared_text": "", "time": "2019-11-13 16:29:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/74861868_10157174043424915_2943038481732993024_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Gpo2eop8G0kAQniFmetbFkBxUEq1BI9bsS2gttins47sitVeSKEbaRLfQ&_nc_ht=scontent-cdt1-1.xx&oh=2df6a044847ee137ccc7ca740f9168a1&oe=5E40DAA0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157174043559915&id=113335124914", "link": null} +{"post_id": "10157173653544915", "text": "Felice che il progetto #Matera vada avanti. Ci abbiamo creduto quando non ci credeva nessuno. Bravissimo il commissario Salvo Nastasi. E ancora pi\u00f9 bravo, ovviamente, Stefano Boeri", "post_text": "Felice che il progetto #Matera vada avanti. Ci abbiamo creduto quando non ci credeva nessuno. Bravissimo il commissario Salvo Nastasi. E ancora pi\u00f9 bravo, ovviamente, Stefano Boeri", "shared_text": "", "time": "2019-11-13 13:08:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157173653544915&id=113335124914", "link": null} +{"post_id": "10157173476789915", "text": "Quando con il Governo dei 1000 Giorni facemmo i bandi internazionali per la direzione dei musei nazionali italiani i sovranisti ci accusarono di voler consegnare il nostro patrimonio culturale agli stranieri.\u2026 Altro Ma la cultura non conosce confini n\u00e9 frontiere. E continuiamo a pensare che per ruoli di questo tipo vada premiata pi\u00f9 la competenza che la nazionalit\u00e0. Ecco perch\u00e9 siamo orgogliosi della nostra Chiara Parisi, scelta all'unanimit\u00e0 fra candidati arrivati dal mondo intero per dirigere il Centre Pompidou-Metz in Francia", "post_text": "Quando con il Governo dei 1000 Giorni facemmo i bandi internazionali per la direzione dei musei nazionali italiani i sovranisti ci accusarono di voler consegnare il nostro patrimonio culturale agli stranieri.\u2026 Altro Ma la cultura non conosce confini n\u00e9 frontiere. E continuiamo a pensare che per ruoli di questo tipo vada premiata pi\u00f9 la competenza che la nazionalit\u00e0. Ecco perch\u00e9 siamo orgogliosi della nostra Chiara Parisi, scelta all'unanimit\u00e0 fra candidati arrivati dal mondo intero per dirigere il Centre Pompidou-Metz in Francia", "shared_text": "", "time": "2019-11-13 11:37:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75247431_10157173475759915_7367951035475689472_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Eo4G2lGR03cAQmQglUpAPnaXMNrg18wm2N5A7C-15mCIwFd4mrMO75qsw&_nc_ht=scontent-cdt1-1.xx&oh=2c6c98861e275e6c36d81f9c86c459da&oe=5E4D9249", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157173476789915&id=113335124914", "link": null} +{"post_id": "10157173175164915", "text": "La Legge di Bilancio ha evitato l'aumento dell'Iva ma questo non \u00e8 sufficiente: serve un piano #shock per l\u2019economia ed \u00e8 quanto presenteremo venerd\u00ec in diretta Facebook da Torino.\nLa mia intervista per La Stampa.\nMATTEORENZI.IT\nRenzi: \"A Torino per lanciare un piano shock per l\u2019economia\"", "post_text": "La Legge di Bilancio ha evitato l'aumento dell'Iva ma questo non \u00e8 sufficiente: serve un piano #shock per l\u2019economia ed \u00e8 quanto presenteremo venerd\u00ec in diretta Facebook da Torino.\nLa mia intervista per La Stampa.", "shared_text": "MATTEORENZI.IT\nRenzi: \"A Torino per lanciare un piano shock per l\u2019economia\"", "time": "2019-11-13 09:02:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/s480x480/77955685_23843958363810306_4527458621671342080_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=__lg9_seeKsAQnCG5L7KKdgwbGiX6JVnuoXlRNMTj7bV33iwtQBAinDrg&_nc_ht=scontent-cdt1-1.xx&oh=3a30261d9f7141768e1fa1b29c3704e8&oe=5E85FB05", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157173175164915&id=113335124914", "link": "https://www.matteorenzi.it/renzi_a_torino_per_lanciare_piano_shock_per_economia?fbclid=IwAR2iQEdRQ6hcPmz30k5fwJlOhCePuoKY9RjGm74cYyW69wRWkTtxdm7o-30"} +{"post_id": "10157171116834915", "text": "Ogni settimana scambio qualche opinione con migliaia di amici via email. Oggi le ENEWS arrivano a quota 600. Grazie per la pazienza e la condivisione. Per me \u00e8 un onore far parte di questo popolo curioso e attento\nMATTEORENZI.IT\nEnews 600, marted\u00ec 12 novembre 2019", "post_text": "Ogni settimana scambio qualche opinione con migliaia di amici via email. Oggi le ENEWS arrivano a quota 600. Grazie per la pazienza e la condivisione. Per me \u00e8 un onore far parte di questo popolo curioso e attento", "shared_text": "MATTEORENZI.IT\nEnews 600, marted\u00ec 12 novembre 2019", "time": "2019-11-12 15:39:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/s480x480/77856516_23843970872320181_9012012427021123584_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=JQNHzpxRrpcAQkDLpqUl3FpRMt5rrNWFfp6FBSSDpYvDCht025R7uchvg&_nc_ht=scontent-cdt1-1.xx&oh=520b0893dc9153d22e7b1860b0437648&oe=5E8609EE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157171116834915&id=113335124914", "link": "https://www.matteorenzi.it/enews_600_martedi_12_nov_2019?fbclid=IwAR2RF16qzQ11-ULuUYq48AmRDejBVyLeC6TsAfTxZofQCZjP8mauSrnGjwQ"} +{"post_id": "10157168848684915", "text": "Oggi Giorgetti della Lega lancia l\u2019idea di scrivere tutti insieme le regole del gioco. Mi sembra una proposta saggia e intelligente. Italia Viva c\u2019\u00e8.", "post_text": "Oggi Giorgetti della Lega lancia l\u2019idea di scrivere tutti insieme le regole del gioco. Mi sembra una proposta saggia e intelligente. Italia Viva c\u2019\u00e8.", "shared_text": "", "time": "2019-11-11 19:38:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157168848684915&id=113335124914", "link": null} +{"post_id": "10157162916499915", "text": "Bella mattinata oggi con Linkiesta.it a Milano. Il video completo \u00e8 qui su Facebook, qui (http://bit.ly/RenziLinkiesta) invece il resoconto dell'intervista. Buona serata", "post_text": "Bella mattinata oggi con Linkiesta.it a Milano. Il video completo \u00e8 qui su Facebook, qui (http://bit.ly/RenziLinkiesta) invece il resoconto dell'intervista. Buona serata", "shared_text": "", "time": "2019-11-09 19:55:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75614042_10157162915149915_7384567855922020352_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=3SmN7UdsmoUAQlJECC4gBD7yX4Va6DUvzVOTY8PzzwJtmcOPawknSHiEw&_nc_ht=scontent-cdt1-1.xx&oh=300ab9897c23596499ac38ef3308dc30&oe=5E3E466E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157162916499915&id=113335124914", "link": "https://bit.ly/RenziLinkiesta?fbclid=IwAR2ZkzA9StsTlSM16pUiamIpLmhc1yuC06waaqwO10epkM-u2D9PTpX7dOM"} +{"post_id": "10157162101979915", "text": "Oggi sono stato ospite al festival de Linkiesta.it Vi ripropongo la mia intervista qui. Buon sabato", "post_text": "Oggi sono stato ospite al festival de Linkiesta.it Vi ripropongo la mia intervista qui. Buon sabato", "shared_text": "", "time": "2019-11-09 14:24:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=414731962556784&id=113335124914", "link": null} +{"post_id": "10157161461554915", "text": "Trent\u2019anni fa cadeva il Muro di Berlino. Avevo 14 anni e mi ricordo le emozioni di quelle immagini. Non era la fine della storia, no. Ma l\u2019inizio di un mondo diverso. \u201cabbattere i muri, costruire i ponti\u201d (Giorgio La Pira)", "post_text": "Trent\u2019anni fa cadeva il Muro di Berlino. Avevo 14 anni e mi ricordo le emozioni di quelle immagini. Non era la fine della storia, no. Ma l\u2019inizio di un mondo diverso. \u201cabbattere i muri, costruire i ponti\u201d (Giorgio La Pira)", "shared_text": "", "time": "2019-11-09 08:12:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74888286_10157161468839915_81274044099330048_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=h_kVRKNuANAAQlDXSLH-WpPTJ9xSpbWgTU4XDvqqVH_ezc1tXfBaPOd8g&_nc_ht=scontent-cdt1-1.xx&oh=cc5f42069cd7be5101067a7c85842784&oe=5E3EDA86", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157161461554915&id=113335124914", "link": null} +{"post_id": "10157158698514915", "text": "Una chiacchierata con Cappellini di Repubblica, parlando di tutto. A me non interessa un patto politichese per aiutare la maggioranza, a me interessa un patto concreto per aiutare l\u2019economia italiana.\nLeggo volentieri i commenti.\nMATTEORENZI.IT\nRenzi: \"Basta polemiche, ora un patto per la crescita. Se il Pd vuole suicidarsi, lo dica\"", "post_text": "Una chiacchierata con Cappellini di Repubblica, parlando di tutto. A me non interessa un patto politichese per aiutare la maggioranza, a me interessa un patto concreto per aiutare l\u2019economia italiana.\nLeggo volentieri i commenti.", "shared_text": "MATTEORENZI.IT\nRenzi: \"Basta polemiche, ora un patto per la crescita. Se il Pd vuole suicidarsi, lo dica\"", "time": "2019-11-08 08:42:44", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCIAg4IvI4F415o&w=476&h=249&url=https%3A%2F%2Fd3n8a8pro7vhmx.cloudfront.net%2Fcomitaticivici%2Fpages%2F1755%2Fmeta_images%2Foriginal%2Fsocial_1200x628_-_renzi08.png%3F1573166926&cfs=1&jq=75&sx=0&sy=0&sw=1200&sh=628&ext=jpg&_nc_hash=AQAL5z7HSKKpuVh4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157158698514915&id=113335124914", "link": "https://www.matteorenzi.it/renzi_basta_polemiche_ora_patto_per_crescita?fbclid=IwAR2i8bWPl3fZo1FwP0vQGZLaC0YMZrmw0LBbzN1jY4YWRjhaMTfb_1qdmGQ"} +{"post_id": "10157156097934915", "text": "Questo ragazzino, nato e cresciuto in Italia, \u00e8 stato rapito dalla mamma che voleva combattere con gli estremisti islamici. La sua \u00e8 una storia terribile. Grazie al lavoro della Croce Rossa \u00e8 tornato a casa, in Italia. E spero che qui Alvin possa crescere diventando presto cittadino italiano.", "post_text": "Questo ragazzino, nato e cresciuto in Italia, \u00e8 stato rapito dalla mamma che voleva combattere con gli estremisti islamici. La sua \u00e8 una storia terribile. Grazie al lavoro della Croce Rossa \u00e8 tornato a casa, in Italia. E spero che qui Alvin possa crescere diventando presto cittadino italiano.", "shared_text": "", "time": "2019-11-07 12:50:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/72636146_10157156094944915_5103075352771559424_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=WuDzgDl2NlQAQlgpAk14s4OercWFoD0OqtXkHk13zp2bHbRLyAjTP91rw&_nc_ht=scontent-cdt1-1.xx&oh=ff0c0e7fef3a72ffa07ccb337f6829c6&oe=5E4C172E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157156097934915&id=113335124914", "link": null} +{"post_id": "10157153587284915", "text": "Maurizio Lupi era il Ministro delle Infrastrutture nel mio Governo. I giornali pubblicarono sue intercettazioni e in molti gridarono allo scandalo. Lupi era totalmente estraneo alla vicenda ma decise di\u2026 Altro dimettersi lo stesso anche per assicurare tranquillit\u00e0 alla sua famiglia che venne gettata nel tritacarne mediatico. Dissi pubblicamente che ero fiero di aver lavorato con Lupi, che gli esprimevo la mia vicinanza e che il tempo gli avrebbe reso giustizia. Oggi scopriamo che l\u2019indagine nella quale Lupi venne intercettato, indagine aperta allora dalla procura di Firenze, finisce con l\u2019archiviazione. Non troverete questa notizia in evidenza nei gazzettini del giustizialismo italiano, nei talk\u2026 Altro", "post_text": "Maurizio Lupi era il Ministro delle Infrastrutture nel mio Governo. I giornali pubblicarono sue intercettazioni e in molti gridarono allo scandalo. Lupi era totalmente estraneo alla vicenda ma decise di\u2026 Altro dimettersi lo stesso anche per assicurare tranquillit\u00e0 alla sua famiglia che venne gettata nel tritacarne mediatico. Dissi pubblicamente che ero fiero di aver lavorato con Lupi, che gli esprimevo la mia vicinanza e che il tempo gli avrebbe reso giustizia. Oggi scopriamo che l\u2019indagine nella quale Lupi venne intercettato, indagine aperta allora dalla procura di Firenze, finisce con l\u2019archiviazione. Non troverete questa notizia in evidenza nei gazzettini del giustizialismo italiano, nei talk\u2026 Altro", "shared_text": "", "time": "2019-11-06 14:55:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75594317_10157153577479915_5715263571483426816_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=lv1tHRCrZqAAQkfAnd7TFMjeD6l8feA58PScEHZ7GNKxZqOMEg-92czyw&_nc_ht=scontent-cdt1-1.xx&oh=2a3728003e859a3e15430cd18b6caf34&oe=5E7DD621", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157153587284915&id=113335124914", "link": null} +{"post_id": "10157153012889915", "text": "Fabiola Gianotti \u00e8 stata rieletta alla guida del CERN di Ginevra fino al 2025. \u00c8 una notizia bellissima, una donna che ci rende orgogliosi di essere italiani, una scienziata che \u00e8 un modello per tutti i giovani. Orgogliosi di te, cara Fabiola! Viva l\u2019Italia della ricerca e della qualit\u00e0.", "post_text": "Fabiola Gianotti \u00e8 stata rieletta alla guida del CERN di Ginevra fino al 2025. \u00c8 una notizia bellissima, una donna che ci rende orgogliosi di essere italiani, una scienziata che \u00e8 un modello per tutti i giovani. Orgogliosi di te, cara Fabiola! Viva l\u2019Italia della ricerca e della qualit\u00e0.", "shared_text": "", "time": "2019-11-06 10:21:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75186310_10157153012844915_9024692901350735872_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=Bprh-IKEkS8AQnrbGWLCGAIRD1lgwZQPuLpNvr9VSarzmVnj_Ann5eMqw&_nc_ht=scontent-cdt1-1.xx&oh=605d85ec75ae2b13cb4373434b644371&oe=5E49D3B2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157153012889915&id=113335124914", "link": null} +{"post_id": "10157152896514915", "text": "Nei giorni scorsi ci hanno accusato di essere sfasciacarrozze perch\u00e9 chiedevamo di cancellare provvedimenti sbagliati come l\u2019aumento delle tasse sulle auto aziendali. Adesso che questa misura sbagliata \u00e8 stata cancellata potremmo toglierci tanti sassolini dalle scarpe e chiedere che fine hanno fatto quelli che una settimana fa ci insultavano. Ma Italia Viva \u00e8 nata per risolvere problemi, non per fare polemiche. E adesso possiamo dire che la tassa sulle auto aziendali non ci sar\u00e0. Avanti cos\u00ec! Buona giornata", "post_text": "Nei giorni scorsi ci hanno accusato di essere sfasciacarrozze perch\u00e9 chiedevamo di cancellare provvedimenti sbagliati come l\u2019aumento delle tasse sulle auto aziendali. Adesso che questa misura sbagliata \u00e8 stata cancellata potremmo toglierci tanti sassolini dalle scarpe e chiedere che fine hanno fatto quelli che una settimana fa ci insultavano. Ma Italia Viva \u00e8 nata per risolvere problemi, non per fare polemiche. E adesso possiamo dire che la tassa sulle auto aziendali non ci sar\u00e0. Avanti cos\u00ec! Buona giornata", "shared_text": "", "time": "2019-11-06 09:10:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157152896514915&id=113335124914", "link": null} +{"post_id": "10157150398969915", "text": "Per tenere aperta Ilva ho firmato dodici decreti, raccolto insulti dei miei ex compagni di partito che mi hanno accusato di essere l\u2019omicida dei bambini di Taranto, perso voti e ricevuto minacce di ogni genere. L\u2019ho fatto e lo rifarei perch\u00e9 se Ilva chiude, chiude l\u2019intera industria del Mezzogiorno. Dunque: \u00e8 incredibile sentirmi dire che io voglio\u2026 Altro chiudere Ilva dagli stessi che tacevano quando venivo insultato per il contrario. Sono vaccinato rispetto agli insulti ma rimane il disgusto per la vilt\u00e0 di certe polemiche. Che cosa sta accadendo? Ieri la propriet\u00e0 di Ilva, gli indiani Mittal, ha annunciato il recesso. Se ne vogliono andare. Io sostengo che lo abbiano previsto da tempo e usino la\u2026 Altro", "post_text": "Per tenere aperta Ilva ho firmato dodici decreti, raccolto insulti dei miei ex compagni di partito che mi hanno accusato di essere l\u2019omicida dei bambini di Taranto, perso voti e ricevuto minacce di ogni genere. L\u2019ho fatto e lo rifarei perch\u00e9 se Ilva chiude, chiude l\u2019intera industria del Mezzogiorno. Dunque: \u00e8 incredibile sentirmi dire che io voglio\u2026 Altro chiudere Ilva dagli stessi che tacevano quando venivo insultato per il contrario. Sono vaccinato rispetto agli insulti ma rimane il disgusto per la vilt\u00e0 di certe polemiche. Che cosa sta accadendo? Ieri la propriet\u00e0 di Ilva, gli indiani Mittal, ha annunciato il recesso. Se ne vogliono andare. Io sostengo che lo abbiano previsto da tempo e usino la\u2026 Altro", "shared_text": "", "time": "2019-11-05 11:32:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157150398969915&id=113335124914", "link": null} +{"post_id": "10157150302109915", "text": "Terribili le notizie di Alessandria. Condivido il dolore delle famiglie delle vittime e della grande famiglia dei Vigili del Fuoco", "post_text": "Terribili le notizie di Alessandria. Condivido il dolore delle famiglie delle vittime e della grande famiglia dei Vigili del Fuoco", "shared_text": "", "time": "2019-11-05 10:19:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/74675014_10157150302074915_7520346692864966656_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=d-48185UI5kAQmj61WWCMaB1JZU-AaQRcMZxd-LhdHiXzIV0Xm0j7xhrw&_nc_ht=scontent-cdt1-1.xx&oh=ed1584efd24edcaf13244d8a3d933db4&oe=5E87BFCE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157150302109915&id=113335124914", "link": null} +{"post_id": "10157150153014915", "text": "In questa intervista al Giornale illustro la posizione di Italia Viva sulle tasse e Ilva. Buona giornata\nITALIAVIVA.IT\nRenzi: \"I cittadini non sono un bancomat, Italia Viva \u00e8 NoTax\"", "post_text": "In questa intervista al Giornale illustro la posizione di Italia Viva sulle tasse e Ilva. Buona giornata", "shared_text": "ITALIAVIVA.IT\nRenzi: \"I cittadini non sono un bancomat, Italia Viva \u00e8 NoTax\"", "time": "2019-11-05 09:01:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/s480x480/75030567_23843929007350306_1482349580723945472_n.png.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=rdjCWV7uVCoAQljjlX-2iZVcmXXB2n584qhnCIR5Prf_4PM8YlWSc0CfA&_nc_ht=scontent-cdt1-1.xx&oh=88a473d6ce34e6617309ba9c73a7e83b&oe=5E7C12F3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157150153014915&id=113335124914", "link": "https://www.italiaviva.it/renzi_i_cittadini_non_sono_un_bancomat_italia_viva_notax?fbclid=IwAR24EywJQPzOEWu_ZRIT466edEFU0m95x-TEhKRMYcog-o8RZkoyG0CtJ20"} +{"post_id": "10157148960799915", "text": "Salvini ci attacca su #Ilva? Ridicolo. La norma usata come pretesto da Mittal \u00e8 stata votata dal SUO Governo grilloleghista. Non ho tempo per polemiche: Salvini vuole cercare un colpevole? Si faccia un selfie. Noi intanto lavoriamo per una soluzione.\nIlva non deve chiudere.", "post_text": "Salvini ci attacca su #Ilva? Ridicolo. La norma usata come pretesto da Mittal \u00e8 stata votata dal SUO Governo grilloleghista. Non ho tempo per polemiche: Salvini vuole cercare un colpevole? Si faccia un selfie. Noi intanto lavoriamo per una soluzione.\nIlva non deve chiudere.", "shared_text": "", "time": "2019-11-04 21:28:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74591903_10157148960169915_8659958673642094592_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=99O8tTUOWnUAQk3Ww0EfVXkJUerGCGwcDkuD0lJC0GCJchgqSipRi4lJQ&_nc_ht=scontent-cdt1-1.xx&oh=d69b3587b1eb1626c6bb6baa5d42bf15&oe=5E4DFC73", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157148960799915&id=113335124914", "link": null} +{"post_id": "10157148378969915", "text": "La decisione di Mittal di disimpegnarsi da Taranto \u00e8 inaccettabile. Il Governo deve da subito togliere alla propriet\u00e0 ogni alibi eliminando gli autogol come quello sulla immunit\u00e0 voluto dal vecchio governo e sul quale avevamo messo in guardia il Ministro Patuanelli.\nPer chi in queste ore fa una polemica meschina e mediocre: lo scudo penale \u00e8 stato\u2026 Altro cancellato dall\u2019esecutivo Lega-Cinque Stelle. Ma noi vogliamo soluzioni, non capri espiatori.\nIndipendentemente dagli alibi, Taranto ha bisogno di un futuro e il futuro passa anche dall\u2019acciaio. Ho firmato numerosi decreti per tenere aperta Ilva, mi sono preso di assassino da alcuni ex compagni di partito, ho subito contestazioni pesantissime. Rifarei tutto. Perch\u00e9 oggi il piano di risanamento c\u2019\u00e8. E Taranto non pu\u00f2 fare a meno dell\u2019Ilva. Quello dell\u2019immunit\u00e0 \u00e8 un alibi che va tolto dal tavolo subito. Tutti, Governo e propriet\u00e0, devono mantenere gli impegni. I cittadini di Taranto lo hanno fatto. I lavoratori dell\u2019Ilva lo hanno fatto. Adesso tocca a Governo e Mittal: non si scherza con il lavoro delle persone", "post_text": "La decisione di Mittal di disimpegnarsi da Taranto \u00e8 inaccettabile. Il Governo deve da subito togliere alla propriet\u00e0 ogni alibi eliminando gli autogol come quello sulla immunit\u00e0 voluto dal vecchio governo e sul quale avevamo messo in guardia il Ministro Patuanelli.\nPer chi in queste ore fa una polemica meschina e mediocre: lo scudo penale \u00e8 stato\u2026 Altro cancellato dall\u2019esecutivo Lega-Cinque Stelle. Ma noi vogliamo soluzioni, non capri espiatori.\nIndipendentemente dagli alibi, Taranto ha bisogno di un futuro e il futuro passa anche dall\u2019acciaio. Ho firmato numerosi decreti per tenere aperta Ilva, mi sono preso di assassino da alcuni ex compagni di partito, ho subito contestazioni pesantissime. Rifarei tutto. Perch\u00e9 oggi il piano di risanamento c\u2019\u00e8. E Taranto non pu\u00f2 fare a meno dell\u2019Ilva. Quello dell\u2019immunit\u00e0 \u00e8 un alibi che va tolto dal tavolo subito. Tutti, Governo e propriet\u00e0, devono mantenere gli impegni. I cittadini di Taranto lo hanno fatto. I lavoratori dell\u2019Ilva lo hanno fatto. Adesso tocca a Governo e Mittal: non si scherza con il lavoro delle persone", "shared_text": "", "time": "2019-11-04 17:24:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157148378969915&id=113335124914", "link": null} +{"post_id": "10157145916114915", "text": "Ricapitolando: per 24 ore un fiume di polemiche contro di me. Poi improvvisamente retromarcia in corso sulle nuove tasse (plastica e auto aziendali) Bene! Apprezzo il buon senso del ministro Gualtieri. Per Italia Viva conta solo il risultato #NoTax", "post_text": "Ricapitolando: per 24 ore un fiume di polemiche contro di me. Poi improvvisamente retromarcia in corso sulle nuove tasse (plastica e auto aziendali) Bene! Apprezzo il buon senso del ministro Gualtieri. Per Italia Viva conta solo il risultato #NoTax", "shared_text": "", "time": "2019-11-03 19:43:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157145916114915&id=113335124914", "link": null} +{"post_id": "10157145407804915", "text": "L\u2019unico modo per gestire l\u2019immigrazione \u00e8 investire in Africa. Farlo come europei, non lasciarlo fare ai cinesi. Aiutarli a casa loro, si direbbe con uno slogan. Eni, Coldiretti e Bonifiche Ferraresi ci stanno provando sul serio. Bravi!", "post_text": "L\u2019unico modo per gestire l\u2019immigrazione \u00e8 investire in Africa. Farlo come europei, non lasciarlo fare ai cinesi. Aiutarli a casa loro, si direbbe con uno slogan. Eni, Coldiretti e Bonifiche Ferraresi ci stanno provando sul serio. Bravi!", "shared_text": "", "time": "2019-11-03 15:51:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/73375491_10157145407614915_9177850876780347392_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=7z44dcGXMjIAQn7gSb9dKtqxnmTndwKT5srLETxjjM0vp8RJWEOsMdNqg&_nc_ht=scontent-cdt1-1.xx&oh=ba6fc78dda000897cdd42142e7c1ad5a&oe=5E85824E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157145407804915&id=113335124914", "link": null} +{"post_id": "10157145227294915", "text": "Quel numero tatuato sul braccio io lo porto con grande onore, perch\u00e9 \u00e8 la vergogna di chi lo ha fatto: ascoltiamo insieme la Senatrice Liliana Segre, cui va tutto il nostro rispetto.", "post_text": "Quel numero tatuato sul braccio io lo porto con grande onore, perch\u00e9 \u00e8 la vergogna di chi lo ha fatto: ascoltiamo insieme la Senatrice Liliana Segre, cui va tutto il nostro rispetto.", "shared_text": "", "time": "2019-11-03 14:25:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157145227294915&id=113335124914", "link": null} +{"post_id": "10157144642564915", "text": "I media sono pieni di retroscena ma la verit\u00e0 \u00e8 molto pi\u00f9 semplice: noi di Italia Viva non siamo contro nessuno. Siamo solo contro l\u2019aumento delle tasse. Ieri contro l\u2019aumento di IVA, cellulari e gasolio. Oggi contro l\u2019aumento sulle auto aziendali e sulle nostre imprese. E noi non facciamo polemiche, ma proposte concrete su come evitare i microbalzelli. Sui giornali ci criticano ma in Parlamento ci daranno ragione e voteremo insieme contro le tasse, vedrete. Per adesso buona domenica a tutti!", "post_text": "I media sono pieni di retroscena ma la verit\u00e0 \u00e8 molto pi\u00f9 semplice: noi di Italia Viva non siamo contro nessuno. Siamo solo contro l\u2019aumento delle tasse. Ieri contro l\u2019aumento di IVA, cellulari e gasolio. Oggi contro l\u2019aumento sulle auto aziendali e sulle nostre imprese. E noi non facciamo polemiche, ma proposte concrete su come evitare i microbalzelli. Sui giornali ci criticano ma in Parlamento ci daranno ragione e voteremo insieme contro le tasse, vedrete. Per adesso buona domenica a tutti!", "shared_text": "", "time": "2019-11-03 09:21:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157144642564915&id=113335124914", "link": null} +{"post_id": "10157144571849915", "text": "Mattinata di novembre a Firenze.\nChe splendore. Buona domenica a tutte e tutti!", "post_text": "Mattinata di novembre a Firenze.\nChe splendore. Buona domenica a tutte e tutti!", "shared_text": "", "time": "2019-11-03 08:39:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74166449_10157144571779915_722987491501539328_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=7peHtZo2BRkAQk2gF2ug3e0_Q08qpJYDOojcTdrhWej1z8rsfUXEqraSw&_nc_ht=scontent-cdt1-1.xx&oh=85a6a953c00181a6bdfa061ea77ae48b&oe=5E88F662", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157144571849915&id=113335124914", "link": null} +{"post_id": "10157142968034915", "text": "Conosco Gianluca Rocchi da quando giovanissimi iniziammo la carriera arbitrale nella gloriosa sede di Via Faenza a Firenze.\nFin dai primi fischi nel settore giovanile ha sempre dimostrato di essere un\u2026 Altro grandissimo arbitro. Oggi bloccando la partita all\u2019Olimpico per i cori contro la citt\u00e0 di Napoli ha dimostrato a tutti di essere anche una grandissima persona.", "post_text": "Conosco Gianluca Rocchi da quando giovanissimi iniziammo la carriera arbitrale nella gloriosa sede di Via Faenza a Firenze.\nFin dai primi fischi nel settore giovanile ha sempre dimostrato di essere un\u2026 Altro grandissimo arbitro. Oggi bloccando la partita all\u2019Olimpico per i cori contro la citt\u00e0 di Napoli ha dimostrato a tutti di essere anche una grandissima persona.", "shared_text": "", "time": "2019-11-02 18:56:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74216787_10157142967964915_1471371343667658752_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=wdGjGfyL2X4AQkkmrfMLN2BacPJyWY3GRV1ZPiR4SmY6c_7q38uP0X2Og&_nc_ht=scontent-cdt1-1.xx&oh=7f835cf43dc7ca8e186da99c2bf7861e&oe=5E41CB99", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157142968034915&id=113335124914", "link": null} +{"post_id": "10157142707534915", "text": "Tantissime le dichiarazioni di chi commenta la mia intervista al Messaggero: mi fa piacere. Chi critica le idee altrui svolge un servizio prezioso. Grazie!\nRibadisco in modo semplice. Abbiamo fatto un Governo di emergenza che pu\u00f2 aiutare il Paese su molte cose a cominciare dalla riduzione degli interessi sul debito. E parliamo di decine di\u2026 Altro miliardi, non di spiccioli. Nel merito della legge di bilancio siamo felici dei risultati ottenuti fino ad oggi. Ma non basta. Noi continueremo a batterci in Parlamento per migliorare ancora i provvedimenti su auto aziendali e microbalzelli che feriscono la competitivit\u00e0 delle imprese. Le nostre proposte non sono slogan, ma hanno coperture: e se in\u2026 Altro", "post_text": "Tantissime le dichiarazioni di chi commenta la mia intervista al Messaggero: mi fa piacere. Chi critica le idee altrui svolge un servizio prezioso. Grazie!\nRibadisco in modo semplice. Abbiamo fatto un Governo di emergenza che pu\u00f2 aiutare il Paese su molte cose a cominciare dalla riduzione degli interessi sul debito. E parliamo di decine di\u2026 Altro miliardi, non di spiccioli. Nel merito della legge di bilancio siamo felici dei risultati ottenuti fino ad oggi. Ma non basta. Noi continueremo a batterci in Parlamento per migliorare ancora i provvedimenti su auto aziendali e microbalzelli che feriscono la competitivit\u00e0 delle imprese. Le nostre proposte non sono slogan, ma hanno coperture: e se in\u2026 Altro", "shared_text": "", "time": "2019-11-02 16:54:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157142707534915&id=113335124914", "link": null} +{"post_id": "10157142105844915", "text": "Giusto combattere l\u2019evasione fiscale ma va combattuta anche l\u2019invasione fiscale: le tasse in italia sono troppe, facciamole scendere.\nLa mia intervista a Il Messaggero bit.ly/RenziMessaggero", "post_text": "Giusto combattere l\u2019evasione fiscale ma va combattuta anche l\u2019invasione fiscale: le tasse in italia sono troppe, facciamole scendere.\nLa mia intervista a Il Messaggero bit.ly/RenziMessaggero", "shared_text": "", "time": "2019-11-02 11:48:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75220847_10157142104849915_7527823818610442240_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=NoB9xm9A0AYAQlLe0kDPZTBXk_-baek4HHwppCvhXFgVlr5XxwgvJKcNg&_nc_ht=scontent-cdt1-1.xx&oh=b62485c5136083971110281877e702b1&oe=5E7E3221", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157142105844915&id=113335124914", "link": "https://bit.ly/RenziMessaggero?fbclid=IwAR39xcKvKtWut38k0Wd7_6aJyi09A1rXaNGgkHjif639ReTxrtu0v-2d5TI"} +{"post_id": "10157141734509915", "text": "Ho fatto una intervista al Messaggero per spiegare perch\u00e9 cancelleremo la tassa sulle auto aziendali, una stangata inaccettabile contro il ceto medio\nITALIAVIVA.IT\nRenzi: \"No a nuove tasse, a partire da quelle sulle vetture aziendali\"", "post_text": "Ho fatto una intervista al Messaggero per spiegare perch\u00e9 cancelleremo la tassa sulle auto aziendali, una stangata inaccettabile contro il ceto medio", "shared_text": "ITALIAVIVA.IT\nRenzi: \"No a nuove tasse, a partire da quelle sulle vetture aziendali\"", "time": "2019-11-02 08:10:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/s480x480/74927972_23843931765850181_6846631379715751936_n.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=ciAiKL5QtgkAQlcgAvRaZNOnzYZVUmxo3Jg1yIbNP9MnJGTGWVd517JlQ&_nc_ht=scontent-cdt1-1.xx&oh=a1cb6b68cdc7f6968fba6a5837c16ea0&oe=5E7E7D63", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157141734509915&id=113335124914", "link": "https://www.italiaviva.it/renzi_no_a_nuove_tasse_a_partire_da_quelle_sulle_vetture_aziendali?fbclid=IwAR3OhBYFT2tcL7VfKWzJYWtCTKGjWmtpdr1BdNrMCLGX8GblVLFl4NmRXBA"} +{"post_id": "10157139612554915", "text": "Oggi il Giornale mi attacca cos\u00ec. Nella mia vita politica ho sempre abbassato le tasse, sia in Provincia che in Comune. Da premier sono stato quello degli 80\u20ac, dell\u2019Imu prima casa, dell\u2019IRAP costo del lavoro,\u2026 Altro di Industria 4.0, del canone Rai. Dunque il Club dei Tassatori non \u00e8 casa mia. In questa legge di bilancio Italia Viva ha impedito l\u2019aumento dell\u2019IVA e le tasse su cellulari, gasolio e casa. Adesso lavoreremo in Parlamento per eliminare le tasse su auto aziendali (assurdit\u00e0 che mi hanno sempre proposto quando ero premier e ho sempre respinto), plastica e zucchero. Chiedo a tutti di darci una mano e seguire la nostra battaglia in Parlamento. E chiedo al Giornale di avere l\u2019onest\u00e0 intellettuale di riconoscere che se c\u2019\u00e8 uno che ha sempre abbassato le tasse questi \u00e8 il sottoscritto. Prima mi dicono che sono il leader di un partitino poi mi attaccano tutti, chiss\u00e0 perch\u00e9? Io ho l\u2019impressione che abbiano paura di quanto stia crescendo Italia Viva. Ne riparleremo, intanto abbassiamo le tasse. Tutti insieme", "post_text": "Oggi il Giornale mi attacca cos\u00ec. Nella mia vita politica ho sempre abbassato le tasse, sia in Provincia che in Comune. Da premier sono stato quello degli 80\u20ac, dell\u2019Imu prima casa, dell\u2019IRAP costo del lavoro,\u2026 Altro di Industria 4.0, del canone Rai. Dunque il Club dei Tassatori non \u00e8 casa mia. In questa legge di bilancio Italia Viva ha impedito l\u2019aumento dell\u2019IVA e le tasse su cellulari, gasolio e casa. Adesso lavoreremo in Parlamento per eliminare le tasse su auto aziendali (assurdit\u00e0 che mi hanno sempre proposto quando ero premier e ho sempre respinto), plastica e zucchero. Chiedo a tutti di darci una mano e seguire la nostra battaglia in Parlamento. E chiedo al Giornale di avere l\u2019onest\u00e0 intellettuale di riconoscere che se c\u2019\u00e8 uno che ha sempre abbassato le tasse questi \u00e8 il sottoscritto. Prima mi dicono che sono il leader di un partitino poi mi attaccano tutti, chiss\u00e0 perch\u00e9? Io ho l\u2019impressione che abbiano paura di quanto stia crescendo Italia Viva. Ne riparleremo, intanto abbassiamo le tasse. Tutti insieme", "shared_text": "", "time": "2019-11-01 15:40:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/75388229_10157139612179915_5324482463068585984_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=Bm5FDWia3bkAQkr-a0pWtsJrPSKOszXMuWvYKm3zF4tM8MK1LYHoDiORQ&_nc_ht=scontent-cdt1-1.xx&oh=91df2601e64df6c917b29452beeb34c0&oe=5E406358", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157139612554915&id=113335124914", "link": null} +{"post_id": "10157138861204915", "text": "Il Presidente Trump dice alla radio che l\u2019Italia starebbe meglio fuori dall\u2019Unione Europea. Sono orgoglioso della mia identit\u00e0 italiana, del mio cuore fiorentino, delle mie radici. Ma sono altrettanto fiero di essere cittadino europeo. Chi vuole l\u2019Italia fuori dall\u2019Europa non vuole il bene del nostro Paese.", "post_text": "Il Presidente Trump dice alla radio che l\u2019Italia starebbe meglio fuori dall\u2019Unione Europea. Sono orgoglioso della mia identit\u00e0 italiana, del mio cuore fiorentino, delle mie radici. Ma sono altrettanto fiero di essere cittadino europeo. Chi vuole l\u2019Italia fuori dall\u2019Europa non vuole il bene del nostro Paese.", "shared_text": "", "time": "2019-11-01 09:36:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75299780_10157138860449915_5290993739773247488_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=5LV7AYN4WisAQmty7jN-UtY2s6ZW-tBxFGWwoMXJby1N5RJXQeR-jMjXw&_nc_ht=scontent-cdt1-1.xx&oh=e52df18b9a592b03ce7039c7fd4cdd29&oe=5E4F4C49", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157138861204915&id=113335124914", "link": null} +{"post_id": "10157138743359915", "text": "Dieci anni fa - nel giorno dei Santi - ci lasciava Alda Merini. I suoi versi di dolore e di bellezza continuano a emozionarci ancora oggi. L\u2019amore, la mistica, la vita: le sue poesie illuminano il quotidiano", "post_text": "Dieci anni fa - nel giorno dei Santi - ci lasciava Alda Merini. I suoi versi di dolore e di bellezza continuano a emozionarci ancora oggi. L\u2019amore, la mistica, la vita: le sue poesie illuminano il quotidiano", "shared_text": "", "time": "2019-11-01 08:27:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/74495172_10157138742519915_934149004558598144_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=B0K1FU1ydgoAQlv58_iXcoWN9w0Y-xwvROQJP3z14pp69x_iDBR79faRw&_nc_ht=scontent-cdt1-1.xx&oh=ece4570ead30fa2322581a55683e13d5&oe=5E438712", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157138743359915&id=113335124914", "link": null} +{"post_id": "10157135745589915", "text": "La Legge di Bilancio sta per approdare finalmente in Parlamento. In queste settimane sono stati fatti passi in avanti per evitare aumento IVA e tasse su cellulari, gasolio, case. Molto bene. Italia Viva \u00e8 stata decisiva per evitare questi aumenti. Ma per noi non finisce qui: su zucchero, plastica e auto aziendali lavoreremo duro nei prossimi\u2026 Altro giorni. Ci sono i numeri, nel Bilancio e in Parlamento, per evitare che queste tasse salgano. Stiamo parlando di qualche centinaio di milioni: nulla rispetto ai 23 miliardi dell\u2019IVA o ai 20 miliardi bruciati in un triennio dalla demagogia di Quota100. Abbiamo bloccato aumento IVA e tasse sui cellulari: adesso lavoreremo su zucchero e auto aziendali", "post_text": "La Legge di Bilancio sta per approdare finalmente in Parlamento. In queste settimane sono stati fatti passi in avanti per evitare aumento IVA e tasse su cellulari, gasolio, case. Molto bene. Italia Viva \u00e8 stata decisiva per evitare questi aumenti. Ma per noi non finisce qui: su zucchero, plastica e auto aziendali lavoreremo duro nei prossimi\u2026 Altro giorni. Ci sono i numeri, nel Bilancio e in Parlamento, per evitare che queste tasse salgano. Stiamo parlando di qualche centinaio di milioni: nulla rispetto ai 23 miliardi dell\u2019IVA o ai 20 miliardi bruciati in un triennio dalla demagogia di Quota100. Abbiamo bloccato aumento IVA e tasse sui cellulari: adesso lavoreremo su zucchero e auto aziendali", "shared_text": "", "time": "2019-10-31 10:04:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157135745589915&id=113335124914", "link": null} +{"post_id": "10157134058964915", "text": "Sempre bello incontrare donne e uomini che anche all\u2019estero dimostrano ogni giorno la grande bellezza di essere italiani", "post_text": "Sempre bello incontrare donne e uomini che anche all\u2019estero dimostrano ogni giorno la grande bellezza di essere italiani", "shared_text": "", "time": "2019-10-30 18:39:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2519679128115778&id=113335124914", "link": null} +{"post_id": "10157133751679915", "text": "Tra i tanti italiani che stanno scrivendo il futuro uno dei pi\u00f9 interessanti \u00e8 Mauro Porcini. Classe 1975, Lombardo, da qualche anno \u00e8 il capo del Design di Pepsi e sta rivoluzionando il concetto stesso di\u2026 Altro design: sono stato a trovarlo nel suo lab d\u00ec Soho a NYC. Orgoglioso di Mauro, un\u2019eccellenza cresciuta in quello straordinario vivaio che \u00e8 il Politecnico di Milano.", "post_text": "Tra i tanti italiani che stanno scrivendo il futuro uno dei pi\u00f9 interessanti \u00e8 Mauro Porcini. Classe 1975, Lombardo, da qualche anno \u00e8 il capo del Design di Pepsi e sta rivoluzionando il concetto stesso di\u2026 Altro design: sono stato a trovarlo nel suo lab d\u00ec Soho a NYC. Orgoglioso di Mauro, un\u2019eccellenza cresciuta in quello straordinario vivaio che \u00e8 il Politecnico di Milano.", "shared_text": "", "time": "2019-10-30 16:05:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74407604_10157133759229915_654668344372232192_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=vhcODGIUlz4AQkJmUVeJCBtNqEr5CR928auKHftRLSeVf8H4PW05FIEyQ&_nc_ht=scontent-cdt1-1.xx&oh=32ae9ca9b3b07cc14d44cb20da5269ca&oe=5E8114C8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157133751679915&id=113335124914", "link": null} +{"post_id": "10157130709519915", "text": "Prosegue la farsa #Brexit. Oggi si ipotizza di nuovo il voto politico a dicembre. E nessuno sembra pi\u00f9 meravigliarsi di nulla. Un caos mai visto. Immagino le copertine dei tabloid inglesi se questo pasticcio lo avessimo fatto noi italiani", "post_text": "Prosegue la farsa #Brexit. Oggi si ipotizza di nuovo il voto politico a dicembre. E nessuno sembra pi\u00f9 meravigliarsi di nulla. Un caos mai visto. Immagino le copertine dei tabloid inglesi se questo pasticcio lo avessimo fatto noi italiani", "shared_text": "", "time": "2019-10-29 13:02:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130709519915&id=113335124914", "link": null} +{"post_id": "10157130616164915", "text": "Da dieci giorni la #OceanViking \u00e8 ferma in mezzo al mare. Ci sono 100 persone a bordo che soffrono. Vanno fatte sbarcare subito. Subito! Gestire l\u2019immigrazione \u00e8 un tema spigoloso, bisogna lavorare a un grande progetto Africa e bisogna concretizzare il principio \u201cAiutiamoli a casa loro\u201d a cominciare da cooperazione, vaccini e lotta alla corruzione.\u2026 Altro Ma quando ci sono cento persone in mare, la legge naturale impone di farle sbarcare immediatamente. Non si risolve l\u2019immigrazione con gli spot, sulla pelle degli ultimi. Se nessuno mette la faccia, la metto io: fate scendere quelle persone. La lotta al Salvinismo si fa con una battaglia culturale, non copiando gli spot leghisti.", "post_text": "Da dieci giorni la #OceanViking \u00e8 ferma in mezzo al mare. Ci sono 100 persone a bordo che soffrono. Vanno fatte sbarcare subito. Subito! Gestire l\u2019immigrazione \u00e8 un tema spigoloso, bisogna lavorare a un grande progetto Africa e bisogna concretizzare il principio \u201cAiutiamoli a casa loro\u201d a cominciare da cooperazione, vaccini e lotta alla corruzione.\u2026 Altro Ma quando ci sono cento persone in mare, la legge naturale impone di farle sbarcare immediatamente. Non si risolve l\u2019immigrazione con gli spot, sulla pelle degli ultimi. Se nessuno mette la faccia, la metto io: fate scendere quelle persone. La lotta al Salvinismo si fa con una battaglia culturale, non copiando gli spot leghisti.", "shared_text": "", "time": "2019-10-29 12:13:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130616164915&id=113335124914", "link": null} +{"post_id": "10157129223244915", "text": "Central Park, tappa obbligata per smaltire il jet lag con una sgambata. E un grande abbraccio ai tanti italiani che stanno raggiungendo NYC per la maratona di domenica prossima", "post_text": "Central Park, tappa obbligata per smaltire il jet lag con una sgambata. E un grande abbraccio ai tanti italiani che stanno raggiungendo NYC per la maratona di domenica prossima", "shared_text": "", "time": "2019-10-28 22:24:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/73460722_10157129223114915_417000548022091776_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=7CmTJfDonBYAQmiEQGigs0upDm13-OcJj5CXQ74Su1vK7L12r0ic1BDqA&_nc_ht=scontent-cdt1-1.xx&oh=133dc07334e19fd76068b303939e2d37&oe=5E88AB4C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157129223244915&id=113335124914", "link": null} +{"post_id": "10157128830234915", "text": "Mafia Capitale non \u00e8 mai esistita. Lo ha detto la Corte di Cassazione. Una delle pi\u00f9 importanti indagini degli ultimi anni finisce con la condanna dei colpevoli ma per reati meno gravi di quelli che hanno fatto parlare tutto il mondo. Essere garantisti significa innanzitutto scegliere di non fermarsi in superficie: di approfondire, studiare,\u2026 Altro riflettere. Le sentenze sono quelle della Cassazione, non quelle dei social o dei talk show. Essere garantisti oggi \u00e8 pi\u00f9 difficile di ieri ma \u00e8 una grande battaglia culturale che vale la pena combattere, fino in fondo.", "post_text": "Mafia Capitale non \u00e8 mai esistita. Lo ha detto la Corte di Cassazione. Una delle pi\u00f9 importanti indagini degli ultimi anni finisce con la condanna dei colpevoli ma per reati meno gravi di quelli che hanno fatto parlare tutto il mondo. Essere garantisti significa innanzitutto scegliere di non fermarsi in superficie: di approfondire, studiare,\u2026 Altro riflettere. Le sentenze sono quelle della Cassazione, non quelle dei social o dei talk show. Essere garantisti oggi \u00e8 pi\u00f9 difficile di ieri ma \u00e8 una grande battaglia culturale che vale la pena combattere, fino in fondo.", "shared_text": "", "time": "2019-10-28 19:35:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128830234915&id=113335124914", "link": null} +{"post_id": "10157128610564915", "text": "Non riesco a provare piet\u00e0 per la morte del Califfo dell'ISIS, Al Baghdadi. Un feroce assassino che si \u00e8 ucciso facendo saltare in aria con s\u00e9 tre suoi figli. No, non posso perdonarglielo. Piet\u00e0 per tutti, specie davanti alla morte, ma far pagare ai propri figli le conseguenze della propria follia continua a rimbombarmi in testa come una scelta imperdonabile.", "post_text": "Non riesco a provare piet\u00e0 per la morte del Califfo dell'ISIS, Al Baghdadi. Un feroce assassino che si \u00e8 ucciso facendo saltare in aria con s\u00e9 tre suoi figli. No, non posso perdonarglielo. Piet\u00e0 per tutti, specie davanti alla morte, ma far pagare ai propri figli le conseguenze della propria follia continua a rimbombarmi in testa come una scelta imperdonabile.", "shared_text": "", "time": "2019-10-28 17:59:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128610564915&id=113335124914", "link": null} +{"post_id": "10157125180299915", "text": "Volete sapere come sar\u00e0 il futuro? Ascoltate Roberto Cingolani una delle menti pi\u00f9 brillanti di questo Paese. Quest\u2019anno era all\u2019estero e non ha potuto partecipare alla Leopolda. Ma qui c\u2019\u00e8 il suo contributo. Se avete qualche minuto per ascoltare, vi far\u00e0 pensare", "post_text": "Volete sapere come sar\u00e0 il futuro? Ascoltate Roberto Cingolani una delle menti pi\u00f9 brillanti di questo Paese. Quest\u2019anno era all\u2019estero e non ha potuto partecipare alla Leopolda. Ma qui c\u2019\u00e8 il suo contributo. Se avete qualche minuto per ascoltare, vi far\u00e0 pensare", "shared_text": "", "time": "2019-10-27 13:43:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=408621213389829&id=113335124914", "link": null} +{"post_id": "10157124884659915", "text": "Questo simbolo non \u00e8 un gabbiano. \u00c8 il simbolo della spunta delle tante cose fatte. Ma \u00e8 anche il simbolo di chi vuole alzarsi in volo, sopra le polemiche di tutti i giorni #ItaliaViva", "post_text": "Questo simbolo non \u00e8 un gabbiano. \u00c8 il simbolo della spunta delle tante cose fatte. Ma \u00e8 anche il simbolo di chi vuole alzarsi in volo, sopra le polemiche di tutti i giorni #ItaliaViva", "shared_text": "", "time": "2019-10-27 02:36:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=549567559151404&id=113335124914", "link": null} +{"post_id": "10157123216409915", "text": "Vite parallele. Fra la sopravvivenza e il rispetto dei propri valori. Cos\u00ec \u00e8 per che vive il mare, cos\u00ec \u00e8 per i pescatori di Mazara del Vallo. Una vita fra le difficolt\u00e0 di un lavoro difficile, di sacrificio e\u2026 Altro coraggio e umanit\u00e0. Persone pronte a rinunciare a tre giorni di duro lavoro, la loro fonte di sopravvivenza, per garantire la sopravvivenza di altri essere umani.\nUna storia bellissima raccontata da Vogue Italia. Una lezione anche per chi in giro per le piazze sventola il rosario scordandosi che i primi Apostoli erano \"pescatori di uomini\" .\nAll'umanit\u00e0 e al coraggio di questi uomini va il nostro onore. A queste vedette che difendono e custodiscono dentro di loro i valori di cui tutti noi dovremmo andare fieri il nostro grazie. E grazie a quelle testate che non hanno paura di sfidare il pensiero dominante e dedicano copertine coraggiose come questa", "post_text": "Vite parallele. Fra la sopravvivenza e il rispetto dei propri valori. Cos\u00ec \u00e8 per che vive il mare, cos\u00ec \u00e8 per i pescatori di Mazara del Vallo. Una vita fra le difficolt\u00e0 di un lavoro difficile, di sacrificio e\u2026 Altro coraggio e umanit\u00e0. Persone pronte a rinunciare a tre giorni di duro lavoro, la loro fonte di sopravvivenza, per garantire la sopravvivenza di altri essere umani.\nUna storia bellissima raccontata da Vogue Italia. Una lezione anche per chi in giro per le piazze sventola il rosario scordandosi che i primi Apostoli erano \"pescatori di uomini\" .\nAll'umanit\u00e0 e al coraggio di questi uomini va il nostro onore. A queste vedette che difendono e custodiscono dentro di loro i valori di cui tutti noi dovremmo andare fieri il nostro grazie. E grazie a quelle testate che non hanno paura di sfidare il pensiero dominante e dedicano copertine coraggiose come questa", "shared_text": "", "time": "2019-10-26 21:06:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74627020_10157123214969915_8034485558442983424_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=cnf80Uyq3ZIAQlo_3k0QlRZw3Akfvd9r-1GbZIRl9suNr7txBf5NXJxlg&_nc_ht=scontent-cdt1-1.xx&oh=3fba5972f1d1d08efd27622d650f425d&oe=5E4F09BD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157123216409915&id=113335124914", "link": null} +{"post_id": "10157122966014915", "text": "Roma, 2019. Un ragazzo di nemmeno 25 anni viene ucciso in modo atroce per strada. Una tragedia, qualunque sia la causa del barbaro omicidio. Ai commentatori superficiali, ai politici dell\u2019odio, agli influencer della paura dico: che vergogna fare sciacallaggio sulla tragedia del povero Luca! Persino il cadavere di un ragazzo \u00e8 stato utilizzato per\u2026 Altro la vostra propaganda di parte. Per avere un voto in pi\u00f9. Grazie alle forze dell\u2019ordine, straordinarie come sempre. Grazie al Capo della Polizia per le sue parole equilibrate, da fratello maggiore. E grazie a quella madre che ha avuto la forza di denunciare il figlio perch\u00e9 preferisce vederlo in carcere piuttosto che fra i pusher.\nLa droga continua a essere causa di morte, ancora. Il coraggio di quella mamma ci d\u00e0 una ragione per sperare", "post_text": "Roma, 2019. Un ragazzo di nemmeno 25 anni viene ucciso in modo atroce per strada. Una tragedia, qualunque sia la causa del barbaro omicidio. Ai commentatori superficiali, ai politici dell\u2019odio, agli influencer della paura dico: che vergogna fare sciacallaggio sulla tragedia del povero Luca! Persino il cadavere di un ragazzo \u00e8 stato utilizzato per\u2026 Altro la vostra propaganda di parte. Per avere un voto in pi\u00f9. Grazie alle forze dell\u2019ordine, straordinarie come sempre. Grazie al Capo della Polizia per le sue parole equilibrate, da fratello maggiore. E grazie a quella madre che ha avuto la forza di denunciare il figlio perch\u00e9 preferisce vederlo in carcere piuttosto che fra i pusher.\nLa droga continua a essere causa di morte, ancora. Il coraggio di quella mamma ci d\u00e0 una ragione per sperare", "shared_text": "", "time": "2019-10-26 19:34:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122966014915&id=113335124914", "link": null} +{"post_id": "10157122820399915", "text": "Una risposta in novanta secondi per tutti quelli che dicono: Matteo hai cambiato idea, non sei coerente. Per chi non si ferma agli slogan e vuole usare la testa #ItaliaViva", "post_text": "Una risposta in novanta secondi per tutti quelli che dicono: Matteo hai cambiato idea, non sei coerente. Per chi non si ferma agli slogan e vuole usare la testa #ItaliaViva", "shared_text": "", "time": "2019-10-26 18:26:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122820399915&id=113335124914", "link": null} +{"post_id": "10157122560639915", "text": "Chi attacca Liliana Segre non sta attaccando una donna, una sopravvissuta all\u2019Olocausto, un simbolo, una senatrice a vita. No!\nChi attacca Liliana Segre sta attaccando se stesso: perch\u00e9 noi siamo tutti Liliana Segre. E da questa donna minuta abbiamo tutti solo da imparare.", "post_text": "Chi attacca Liliana Segre non sta attaccando una donna, una sopravvissuta all\u2019Olocausto, un simbolo, una senatrice a vita. No!\nChi attacca Liliana Segre sta attaccando se stesso: perch\u00e9 noi siamo tutti Liliana Segre. E da questa donna minuta abbiamo tutti solo da imparare.", "shared_text": "", "time": "2019-10-26 16:26:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74917384_10157122559609915_595364887648010240_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=RNHC5TittBoAQlnPUsKZldvUIo3N0Gwr2huYqUECeq5kZWWWlgmhOczKg&_nc_ht=scontent-cdt1-1.xx&oh=e13ff35d2229f717319b5355b5316e58&oe=5E85B1E0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122560639915&id=113335124914", "link": null} +{"post_id": "10157122159684915", "text": "Italia Viva \u00e8 un Ministro, Teresa Bellanova, che va a Sant\u2019Egidio nel giorno del #WorldPastaDay assicurando 200mila piatti di pasta ai poveri.\nItalia Viva \u00e8 una deputata, Maria Chiara Gadda, che ha scritto la\u2026 Altro legge contro lo spreco alimentare e che gira l\u2019Italia per spiegarla e raccontarla.\nMa Italia Viva \u00e8 soprattutto una Casa dove volontari e mondo dell\u2019associazionismo possano tornare a credere nella politica. Perch\u00e9 il terzo settore \u00e8 davvero la colonna dell\u2019Italia. Un\u2019Italia solida e solidale, l\u2019Italia Viva", "post_text": "Italia Viva \u00e8 un Ministro, Teresa Bellanova, che va a Sant\u2019Egidio nel giorno del #WorldPastaDay assicurando 200mila piatti di pasta ai poveri.\nItalia Viva \u00e8 una deputata, Maria Chiara Gadda, che ha scritto la\u2026 Altro legge contro lo spreco alimentare e che gira l\u2019Italia per spiegarla e raccontarla.\nMa Italia Viva \u00e8 soprattutto una Casa dove volontari e mondo dell\u2019associazionismo possano tornare a credere nella politica. Perch\u00e9 il terzo settore \u00e8 davvero la colonna dell\u2019Italia. Un\u2019Italia solida e solidale, l\u2019Italia Viva", "shared_text": "", "time": "2019-10-26 13:01:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74451183_10157122157519915_4212317634005303296_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=U-mDocL4O0cAQkMH1PYsS5ZGM9Aq7PhkMhhtkJgwSyrqGnOKpkOkXpzSA&_nc_ht=scontent-cdt1-1.xx&oh=586a89f2e15be4499d43ea3e54936756&oe=5E4F8FCD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122159684915&id=113335124914", "link": null} +{"post_id": "10157118999204915", "text": "Esattamente 10 anni fa Firenze chiuse al traffico Piazza Duomo. Fu una scelta molto contestata e ricordo le polemiche, gli insulti, le minacce. Ma quel 25 ottobre 2009 magicamente la citt\u00e0 si ritrov\u00f2\u2026 Altro meravigliata: perch\u00e9 un gesto banale, la pedonalizzazione, restituiva a Firenze la capacit\u00e0 di guardare in alto. Di ammirare la bellezza. Di godere la quotidianit\u00e0.\nIn questi dieci anni il turismo \u00e8 esploso, le domeniche dei musei (poi giustamente copiate anche a livello nazionale) sono diventate un must, il sistema tranviario ha ridotto il traffico. La pedonalizzazione di piazza del Duomo \u00e8 stata simbolo e inizio di tutto questo. A distanza di 10 anni vorrei ringraziare tutti coloro che allora ebbero la forza di crederci. E auguri a tutti gli amministratori di non smettere mai di provare a fare progetti di lungo termine, visionari, difficili. A tutti dico: fatevi una camminata in piazza del Duomo a Firenze. Il ritmo dei passi vi accompagner\u00e0. E vi scoprirete immersi nella bellezza. Viva Fiorenza, viva l\u2019Italia", "post_text": "Esattamente 10 anni fa Firenze chiuse al traffico Piazza Duomo. Fu una scelta molto contestata e ricordo le polemiche, gli insulti, le minacce. Ma quel 25 ottobre 2009 magicamente la citt\u00e0 si ritrov\u00f2\u2026 Altro meravigliata: perch\u00e9 un gesto banale, la pedonalizzazione, restituiva a Firenze la capacit\u00e0 di guardare in alto. Di ammirare la bellezza. Di godere la quotidianit\u00e0.\nIn questi dieci anni il turismo \u00e8 esploso, le domeniche dei musei (poi giustamente copiate anche a livello nazionale) sono diventate un must, il sistema tranviario ha ridotto il traffico. La pedonalizzazione di piazza del Duomo \u00e8 stata simbolo e inizio di tutto questo. A distanza di 10 anni vorrei ringraziare tutti coloro che allora ebbero la forza di crederci. E auguri a tutti gli amministratori di non smettere mai di provare a fare progetti di lungo termine, visionari, difficili. A tutti dico: fatevi una camminata in piazza del Duomo a Firenze. Il ritmo dei passi vi accompagner\u00e0. E vi scoprirete immersi nella bellezza. Viva Fiorenza, viva l\u2019Italia", "shared_text": "", "time": "2019-10-25 08:18:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75079867_10157118998599915_9125199392389726208_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=P5onuyzaDDMAQlQnQdWRIV8W-WfowPZiMQpmHwxFQ9dWjVNWtajBZhLbQ&_nc_ht=scontent-cdt1-1.xx&oh=92701caeeb8bdd3b8448ac013f5df8a1&oe=5E460E7E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118999204915&id=113335124914", "link": null} +{"post_id": "10157117252999915", "text": "Paolo Mieli \u00e8 uno storico e un giornalista di grande prestigio. In questi 40 secondi dice una semplice verit\u00e0 che altri hanno sempre negato. Grazie per l\u2019onest\u00e0 intellettuale, Direttore. Ora occupiamoci di futuro #ItaliaViva", "post_text": "Paolo Mieli \u00e8 uno storico e un giornalista di grande prestigio. In questi 40 secondi dice una semplice verit\u00e0 che altri hanno sempre negato. Grazie per l\u2019onest\u00e0 intellettuale, Direttore. Ora occupiamoci di futuro #ItaliaViva", "shared_text": "", "time": "2019-10-24 18:33:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157117252999915&id=113335124914", "link": null} +{"post_id": "10157116228049915", "text": "Sul Corriere della Sera di oggi parlo di Italia Viva che cresce, del Governo e della lotta all\u2019evasione. Pi\u00f9 che le manette serve la patente a punti fiscale: pagare tutti, pagare meno. Date un occhio?\nITALIAVIVA.IT\nRenzi: \"Il rischio elezioni non c'\u00e8. E altri verranno con noi\"", "post_text": "Sul Corriere della Sera di oggi parlo di Italia Viva che cresce, del Governo e della lotta all\u2019evasione. Pi\u00f9 che le manette serve la patente a punti fiscale: pagare tutti, pagare meno. Date un occhio?", "shared_text": "ITALIAVIVA.IT\nRenzi: \"Il rischio elezioni non c'\u00e8. E altri verranno con noi\"", "time": "2019-10-24 08:33:07", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQATRP1cDFDqs7mY&w=476&h=249&url=https%3A%2F%2Fd3n8a8pro7vhmx.cloudfront.net%2Fcomitaticivici%2Fpages%2F1283%2Fmeta_images%2Foriginal%2Fsocial_1200x628_-_renzi_leopolda02.png%3F1571884850&cfs=1&jq=75&sx=0&sy=0&sw=1200&sh=628&ext=jpg&_nc_hash=AQBj0Bw98z7ZcOs6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157116228049915&id=113335124914", "link": "https://www.italiaviva.it/renzi_il_rischio_elezioni_non_c_e_altri_verranno_con_noi?fbclid=IwAR10WSMhC82HXQUsZh97jiBbGutRs1ezn0VbHMOxnWq3QuLP9T8bXq00ZBc"} +{"post_id": "10157114697819915", "text": "Durante il confronto televisivo con Salvini ho detto che Salvini \u00e8 un assenteista. E ho detto che se uno passa tutte le giornate per sagre e feste popolari e non partecipa mai alle riunioni istituzionali a Bruxelles come a Roma non pu\u00f2 guidare un Paese ma al massimo una Pro Loco. Oggi alla Camera la Lega ha ufficialmente detto che qualche Pro Loco ci \u00e8 rimasta male. Capisco e mi scuso. Accostare la gloriosa attivit\u00e0 delle Pro Loco a Salvini \u00e8 offensivo. Per le Pro Loco.", "post_text": "Durante il confronto televisivo con Salvini ho detto che Salvini \u00e8 un assenteista. E ho detto che se uno passa tutte le giornate per sagre e feste popolari e non partecipa mai alle riunioni istituzionali a Bruxelles come a Roma non pu\u00f2 guidare un Paese ma al massimo una Pro Loco. Oggi alla Camera la Lega ha ufficialmente detto che qualche Pro Loco ci \u00e8 rimasta male. Capisco e mi scuso. Accostare la gloriosa attivit\u00e0 delle Pro Loco a Salvini \u00e8 offensivo. Per le Pro Loco.", "shared_text": "", "time": "2019-10-23 19:41:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157114697819915&id=113335124914", "link": null} +{"post_id": "10157113613194915", "text": "Oggi un autorevole esponente dell\u2019opposizione, gi\u00e0 Ministro della Repubblica e da 26 anni impegnato nelle istituzioni, ha lanciato ad Agor\u00e0 una proposta molto interessante. Ha detto: \u201cFacciamo come in Belgio. Lo Stato ti manda a casa la dichiarazione dei redditi e tu semmai la correggi. Perch\u00e9 non possiamo farlo anche noi?\u201d. Bellissima idea,\u2026 Altro complimenti. Peccato che in Italia questa possibilit\u00e0 c\u2019\u00e8 gi\u00e0, dal 2015, grazie a una scelta del nostro Governo. E riguarda 20 milioni di italiani, 20!\nNoi saremo anche antipatici e lui simpaticissimo, tra un mojito e una sagra: ma per far politica serve la competenza. Bisogna studiare. E qualcuno in TV dovrebbe ricordarglielo ogni tanto", "post_text": "Oggi un autorevole esponente dell\u2019opposizione, gi\u00e0 Ministro della Repubblica e da 26 anni impegnato nelle istituzioni, ha lanciato ad Agor\u00e0 una proposta molto interessante. Ha detto: \u201cFacciamo come in Belgio. Lo Stato ti manda a casa la dichiarazione dei redditi e tu semmai la correggi. Perch\u00e9 non possiamo farlo anche noi?\u201d. Bellissima idea,\u2026 Altro complimenti. Peccato che in Italia questa possibilit\u00e0 c\u2019\u00e8 gi\u00e0, dal 2015, grazie a una scelta del nostro Governo. E riguarda 20 milioni di italiani, 20!\nNoi saremo anche antipatici e lui simpaticissimo, tra un mojito e una sagra: ma per far politica serve la competenza. Bisogna studiare. E qualcuno in TV dovrebbe ricordarglielo ogni tanto", "shared_text": "", "time": "2019-10-23 10:09:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157113613194915&id=113335124914", "link": null} +{"post_id": "10157111989179915", "text": "Il nuovo campus scolastico di Amatrice sar\u00e0 intitolato a Sergio Marchionne. Fu lui a rilanciare l'impegno di raccogliere i fondi per ricostruirlo nel 2016 quando ci incontrammo a Maranello con Angela Merkel. A\u2026 Altro pi\u00f9 di anno dalla sua scomparsa continuo a dirlo: \u00e8 stato un gigante dell'industria italiana. E ancora oggi l'odio che ingiustamente ha colpito la sua immagine non rende onore a quanto ha fatto per creare posti di lavoro. Per fortuna ci pensano i fatti concreti come questo a fare giustizia contro le fake news. Un pensiero affettuoso e grato alla sua memoria", "post_text": "Il nuovo campus scolastico di Amatrice sar\u00e0 intitolato a Sergio Marchionne. Fu lui a rilanciare l'impegno di raccogliere i fondi per ricostruirlo nel 2016 quando ci incontrammo a Maranello con Angela Merkel. A\u2026 Altro pi\u00f9 di anno dalla sua scomparsa continuo a dirlo: \u00e8 stato un gigante dell'industria italiana. E ancora oggi l'odio che ingiustamente ha colpito la sua immagine non rende onore a quanto ha fatto per creare posti di lavoro. Per fortuna ci pensano i fatti concreti come questo a fare giustizia contro le fake news. Un pensiero affettuoso e grato alla sua memoria", "shared_text": "", "time": "2019-10-22 19:51:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/73381355_10157111989004915_109795551817498624_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=GY4zkmYBmYgAQm76VRUDcjwM5KoM9xNJqNODHyL8CFirEQdcMXTh1j04Q&_nc_ht=scontent-cdt1-1.xx&oh=fb34b322d841ccbe81083b210ab8b2a2&oe=5E4A0444", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157111989179915&id=113335124914", "link": null} +{"post_id": "10157111728059915", "text": "Bravo Justin!\nComplimenti. E buon lavoro, amico mio\nCongratulations. Good job, my friend\nF\u00e9licitations. Et bon travail, mon ami", "post_text": "Bravo Justin!\nComplimenti. E buon lavoro, amico mio\nCongratulations. Good job, my friend\nF\u00e9licitations. Et bon travail, mon ami", "shared_text": "", "time": "2019-10-22 18:03:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/73097180_10157111727844915_3129606990578319360_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=COW2_kizxyYAQlyt7IUC6N8ZVnfvlWE4v6brlS-CcRSLY4c25VDshPEzw&_nc_ht=scontent-cdt1-1.xx&oh=b1634087c6b42baf419987a91a67e0e9&oe=5E4056FD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157111728059915&id=113335124914", "link": null} +{"post_id": "10157111685339915", "text": "", "post_text": "", "shared_text": "", "time": "2019-10-22 17:42:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74649795_10157111685034915_876910473621012480_o.jpg?_nc_cat=1&efg=eyJpIjoidCJ9&_nc_ohc=VEKoSHx0qYkAQnMuhabRCmS0uGYhEV8i4iWPF968LqvjqeFIifsFMcNEQ&_nc_ht=scontent-cdt1-1.xx&oh=8e60012ba455479336d9cd8d3fb4e7f2&oe=5E88CA8D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10157111201194915", "text": "", "post_text": "", "shared_text": "", "time": "2019-10-22 13:36:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/72762714_10157111200619915_6434136432775790592_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=v87R7A733GoAQktT8KqmxjdDOA3EO96OfrqrRsUTjcT4DKS8HeQgFOO0Q&_nc_ht=scontent-cdt1-1.xx&oh=b2d43ad7bf301a4151c4a4e0adfe67c6&oe=5E8982CB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10157110832839915", "text": "Il maltempo sta facendo danni in tutto il Paese. Una piccola proposta, semplice e bipartisan: il Governo rimetta in piedi l\u2019Unita di Missione contro il dissesto idrogeologico. A Genova, per il Bisagno, i lavori\u2026 Altro si sono sbloccati cos\u00ec. E vanno avanti senza alcuna divisione con amministrazioni di colore politico diverso. Dobbiamo usare lo stesso metodo in tutto il Paese. Su questi temi la vera sfida \u00e8 lavorare insieme. Subito", "post_text": "Il maltempo sta facendo danni in tutto il Paese. Una piccola proposta, semplice e bipartisan: il Governo rimetta in piedi l\u2019Unita di Missione contro il dissesto idrogeologico. A Genova, per il Bisagno, i lavori\u2026 Altro si sono sbloccati cos\u00ec. E vanno avanti senza alcuna divisione con amministrazioni di colore politico diverso. Dobbiamo usare lo stesso metodo in tutto il Paese. Su questi temi la vera sfida \u00e8 lavorare insieme. Subito", "shared_text": "", "time": "2019-10-22 09:45:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75424735_10157110832094915_5495757585510301696_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=M7utUSxz26sAQnjdP3bpdSQHJvrVlL_YRhGwApoMP44UDLThtXw7QgPQQ&_nc_ht=scontent-cdt1-1.xx&oh=e45fe58c1a2fa1a71074fbbdb42c9e9d&oe=5E8A2652", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157110832839915&id=113335124914", "link": null} +{"post_id": "10157110640999915", "text": "Il Consiglio dei Ministri ha approvato la Legge di Bilancio che adesso va in Parlamento. Bene! Vedo il bicchiere mezzo pieno: grazie a Italia Viva si \u00e8 bloccato l\u2019aumento dell\u2019IVA per 23 miliardi deciso dal Governo precedente. Un grandissimo risultato. Adesso la discussione si sposta in Parlamento e qui si potr\u00e0 migliorare ancora, specie per i\u2026 Altro microbalzelli rimasti, dallo zucchero alla casa. Ci proveremo!\nLo scorso anno al Parlamento fu clamorosamente impedito di migliorare la legge di Bilancio, quest\u2019anno per fortuna torneremo a rispettare i regolamenti e la Costituzione. Ma adesso guardiamo il bicchiere mezzo pieno: pi\u00f9 soldi per le famiglie e pi\u00f9 soldi per la sanit\u00e0. Se vogliamo rimettere in moto l\u2019Italia adesso c\u2019\u00e8 una sola strada: abbiamo bloccato l\u2019IVA, adesso sblocchiamo i cantieri fermi. Questa \u00e8 la priorit\u00e0, buona giornata a tutti", "post_text": "Il Consiglio dei Ministri ha approvato la Legge di Bilancio che adesso va in Parlamento. Bene! Vedo il bicchiere mezzo pieno: grazie a Italia Viva si \u00e8 bloccato l\u2019aumento dell\u2019IVA per 23 miliardi deciso dal Governo precedente. Un grandissimo risultato. Adesso la discussione si sposta in Parlamento e qui si potr\u00e0 migliorare ancora, specie per i\u2026 Altro microbalzelli rimasti, dallo zucchero alla casa. Ci proveremo!\nLo scorso anno al Parlamento fu clamorosamente impedito di migliorare la legge di Bilancio, quest\u2019anno per fortuna torneremo a rispettare i regolamenti e la Costituzione. Ma adesso guardiamo il bicchiere mezzo pieno: pi\u00f9 soldi per le famiglie e pi\u00f9 soldi per la sanit\u00e0. Se vogliamo rimettere in moto l\u2019Italia adesso c\u2019\u00e8 una sola strada: abbiamo bloccato l\u2019IVA, adesso sblocchiamo i cantieri fermi. Questa \u00e8 la priorit\u00e0, buona giornata a tutti", "shared_text": "", "time": "2019-10-22 07:45:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157110640999915&id=113335124914", "link": null} +{"post_id": "10157109774409915", "text": "Ho una sola richiesta per Salvini: Senatore, perch\u00e9 non denuncia Savoini? Gliel\u2019ho chiesto in Parlamento, gliel\u2019ho chiesto in tv, glielo chiedo oggi. Perch\u00e9 non lo denuncia? #Report", "post_text": "Ho una sola richiesta per Salvini: Senatore, perch\u00e9 non denuncia Savoini? Gliel\u2019ho chiesto in Parlamento, gliel\u2019ho chiesto in tv, glielo chiedo oggi. Perch\u00e9 non lo denuncia? #Report", "shared_text": "", "time": "2019-10-21 22:54:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/72884181_10157109774034915_8791450149676122112_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=wrHvtVHqL5cAQlfN0yCP0TTqD9FS6goobKtIeQKKRSI2c2MqsBdN2aGVQ&_nc_ht=scontent-cdt1-1.xx&oh=a4abcc13bcd265972ff40a1533b59f6b&oe=5E436003", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157109774409915&id=113335124914", "link": null} +{"post_id": "10157109192284915", "text": "Per chi vuole iscriversi a Italia Viva, qui c\u2019\u00e8 il sito con la Carta dei Valori e le modalit\u00e0 per partecipare / sostenere!\nGrazie a tutti, sar\u00e0 un\u2019avventura difficile ma fantastica\nITALIAVIVA.IT\nIscriviti ora a Italia Viva", "post_text": "Per chi vuole iscriversi a Italia Viva, qui c\u2019\u00e8 il sito con la Carta dei Valori e le modalit\u00e0 per partecipare / sostenere!\nGrazie a tutti, sar\u00e0 un\u2019avventura difficile ma fantastica", "shared_text": "ITALIAVIVA.IT\nIscriviti ora a Italia Viva", "time": "2019-10-21 18:55:59", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQB9CBXGqbFu3Dbi&w=476&h=249&url=https%3A%2F%2Fd3n8a8pro7vhmx.cloudfront.net%2Fcomitaticivici%2Fpages%2F1139%2Fmeta_images%2Foriginal%2Fanteprimasito.jpg%3F1571676419&cfs=1&jq=75&ext=jpg&_nc_hash=AQBSOiSiRQ1t7wEx", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157109192284915&id=113335124914", "link": "https://www.italiaviva.it/iscriviti_mail?fbclid=IwAR1goSPSQqET8zXJjb1xWwyjbtyBBgkxDhnIMcsxDGWlthGO2i1UacrCd4w"} +{"post_id": "10157107070929915", "text": "Finisce da Fazio una giornata impegnativa e bellissima, con il popolo della Leopolda che ci ha regalato emozioni intense. E nel pomeriggio una scarica di adrenalina: la prima guida con mio figlio, neo foglio\u2026 Altro rosa diciottenne, per le strade di Firenze. Si invecchia, eccome se si invecchia. Buona notte e grazie per l\u2019affetto di questi giorni", "post_text": "Finisce da Fazio una giornata impegnativa e bellissima, con il popolo della Leopolda che ci ha regalato emozioni intense. E nel pomeriggio una scarica di adrenalina: la prima guida con mio figlio, neo foglio\u2026 Altro rosa diciottenne, per le strade di Firenze. Si invecchia, eccome se si invecchia. Buona notte e grazie per l\u2019affetto di questi giorni", "shared_text": "", "time": "2019-10-20 22:25:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/74568190_10157107070014915_5167011017623863296_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=nIKymYPRMYYAQmmZBVg1wWOroZSb07zXplQmDu8D7I__MNswVKSN2ChTw&_nc_ht=scontent-cdt1-1.xx&oh=55ef7f69706efe43ec1e7486af0a5e4a&oe=5E4855FA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107070929915&id=113335124914", "link": null} +{"post_id": "10157106629364915", "text": "Salvini mi accusa di essere un ladro di democrazia e un pallone gonfiato. Ma perch\u00e9 queste cose non me le ha dette in faccia in TV? Solo i codardi fanno cos\u00ec. Pensavo fosse don Rodrigo e invece \u00e8 don Abbondio\n#ItaliaViva", "post_text": "Salvini mi accusa di essere un ladro di democrazia e un pallone gonfiato. Ma perch\u00e9 queste cose non me le ha dette in faccia in TV? Solo i codardi fanno cos\u00ec. Pensavo fosse don Rodrigo e invece \u00e8 don Abbondio\n#ItaliaViva", "shared_text": "", "time": "2019-10-20 19:55:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/74685179_10157106628899915_6950631255419387904_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=bjdDUMO46TUAQklEEyVULVG9Hq6YsaUV27xdLmjmbMqRvpT-WyGG5bf7Q&_nc_ht=scontent-cdt1-1.xx&oh=875baaafc7cc6749d4c8daa035eea253&oe=5E802098", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106629364915&id=113335124914", "link": null} +{"post_id": "10157106600179915", "text": "Vi aspetto stasera intorno alle ore 21.20 su Rai 2 a Che tempo che fa, ospite di Fabio Fazio", "post_text": "Vi aspetto stasera intorno alle ore 21.20 su Rai 2 a Che tempo che fa, ospite di Fabio Fazio", "shared_text": "", "time": "2019-10-20 19:45:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72629990_10157106600104915_5739115496268103680_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=VBHbmYyRedUAQlyPo3xfDboXLiNh0hBMCBkGu6XatXqz68OIrtHKLTHGQ&_nc_ht=scontent-cdt1-1.xx&oh=9c01e52261ba15c10fc8b2a334ac8fc5&oe=5E86DF03", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106600179915&id=113335124914", "link": null} +{"post_id": "10157106371899915", "text": "In treno per andare da Fabio Fazio incontro tanta gente che \u00e8 stata in stazione Leopolda. Bellissimo riconoscersi come popolo! Mi spiace ancora per chi ha dovuto accontentarsi del maxi schermo #ItaliaViva", "post_text": "In treno per andare da Fabio Fazio incontro tanta gente che \u00e8 stata in stazione Leopolda. Bellissimo riconoscersi come popolo! Mi spiace ancora per chi ha dovuto accontentarsi del maxi schermo #ItaliaViva", "shared_text": "", "time": "2019-10-20 18:25:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/74522013_10157106368489915_1364255898687504384_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=47WQgigl5K4AQnePCsbO9xJ0ei4nxWyBsENX8e5O8Nr7AlULNOr49vC9A&_nc_ht=scontent-cdt1-1.xx&oh=6106bd1a7e02095e4261fea3645888c8&oe=5E485948", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106371899915&id=113335124914", "link": null} +{"post_id": "10157105827724915", "text": "Una #Leopolda10 impressionante. Grazie a tutte e tutti. La strada si apre adesso: sar\u00e0 bellissimo percorrerla insieme #ItaliaViva", "post_text": "Una #Leopolda10 impressionante. Grazie a tutte e tutti. La strada si apre adesso: sar\u00e0 bellissimo percorrerla insieme #ItaliaViva", "shared_text": "", "time": "2019-10-20 14:28:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/72786343_10157105826749915_4692537987500605440_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=_g2D8EDv0ycAQkkillK0mA8uuIptUcrGgdksans1gc5wljG0ZTCA2w0ow&_nc_ht=scontent-cdt1-1.xx&oh=6ab1aaa01435e355daa36f02f50aa893&oe=5E46CEEC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105827724915&id=113335124914", "link": null} +{"post_id": "407862016550935", "text": "Il mio intervento conclusivo alla #Leopolda10", "post_text": "Il mio intervento conclusivo alla #Leopolda10", "shared_text": "", "time": "2019-10-20 12:29:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=407862016550935&id=113335124914", "link": null} +{"post_id": "802472583504443", "text": "L\u2019intervento di Teresa Bellanova alla #Leopolda10", "post_text": "L\u2019intervento di Teresa Bellanova alla #Leopolda10", "shared_text": "", "time": "2019-10-20 12:07:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=802472583504443&id=113335124914", "link": null} +{"post_id": "10157105493354915", "text": "Vi aspetto dalle 12 per la diretta dell\u2019intervento mio e di Teresa Bellanova: su questa pagina Facebook, su YouTube di Italia Viva e su La 7", "post_text": "Vi aspetto dalle 12 per la diretta dell\u2019intervento mio e di Teresa Bellanova: su questa pagina Facebook, su YouTube di Italia Viva e su La 7", "shared_text": "", "time": "2019-10-20 11:19:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72987483_10157105490689915_493779642558185472_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=XuWSGRYCPtMAQmw9_oUP5hKw2kkJNgJ6kBI2Du-vrtLOFc9NuaQUZ-FSg&_nc_ht=scontent-cdt1-1.xx&oh=af1f4d4c0a6b750e9dd6b8d4a74550fd&oe=5E4D5B89", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105493354915&id=113335124914", "link": null} +{"post_id": "10157105377619915", "text": "La diretta di questa mattina dalla #Leopolda10\nItalia Viva era in diretta.\n20 ottobre alle ore 08:47 \u00b7\nIn diretta dalla #Leopolda10 la prima parte della mattinata", "post_text": "La diretta di questa mattina dalla #Leopolda10", "shared_text": "Italia Viva era in diretta.\n20 ottobre alle ore 08:47 \u00b7\nIn diretta dalla #Leopolda10 la prima parte della mattinata", "time": "2019-10-20 10:21:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105377619915&id=113335124914", "link": null} +{"post_id": "10157105221149915", "text": "Dalle 6.30 di stamani c\u2019\u00e8 un popolo bellissimo in coda alla Leopolda. Avverto la responsabilit\u00e0 di questo momento. E mando un abbraccio a tutti: ospiti, volontari, curiosi. Faremo di Italia Viva una Casa bellissima.\nGrazie, a pi\u00f9 tardi\nPs: oggi abbiamo installato due maxi schermi", "post_text": "Dalle 6.30 di stamani c\u2019\u00e8 un popolo bellissimo in coda alla Leopolda. Avverto la responsabilit\u00e0 di questo momento. E mando un abbraccio a tutti: ospiti, volontari, curiosi. Faremo di Italia Viva una Casa bellissima.\nGrazie, a pi\u00f9 tardi\nPs: oggi abbiamo installato due maxi schermi", "shared_text": "", "time": "2019-10-20 08:55:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s370x247/72536176_10157105217879915_9102593841344544768_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=QHRGmLn4QboAQm7AD5-6efzGvN9-99gKnEECmSn3DueWVABBdMyYjC2iw&_nc_ht=scontent-cdt1-1.xx&oh=9ff19e78a13137ced535783b67806588&oe=5E87D0AF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105221149915&id=113335124914", "link": null} +{"post_id": "10157103517299915", "text": "Ecco il simbolo di Italia Viva: lo avete scelto voi col 63%. Sar\u00e0 un\u2019avventura meravigliosa. Ci divertiremo e valorizzeremo l\u2019#ItaliaViva", "post_text": "Ecco il simbolo di Italia Viva: lo avete scelto voi col 63%. Sar\u00e0 un\u2019avventura meravigliosa. Ci divertiremo e valorizzeremo l\u2019#ItaliaViva", "shared_text": "", "time": "2019-10-19 18:43:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/72234119_10157103516689915_8552900596540112896_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=hQbLJOAPtlwAQlCyY3k4oAxOyXEI3N9C-4ArYC9HmQvUfG8gXMhwPb62w&_nc_ht=scontent-cdt1-1.xx&oh=37a129c9ee54c0058756b18b44b33157&oe=5E50B6DA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103517299915&id=113335124914", "link": null} +{"post_id": "2453205411464830", "text": "Ecco il nuovo simbolo di Italia Viva: emozione purissima.", "post_text": "Ecco il nuovo simbolo di Italia Viva: emozione purissima.", "shared_text": "", "time": "2019-10-19 18:16:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2453205411464830&id=113335124914", "link": null} +{"post_id": "10157103305214915", "text": "\u202aLe parole di Claudia, una giovane donna che sta combattendo contro la SLA, arrivano in fondo al cuore. Quanta emozione, quanta bellezza. Grazie Claudia, il popolo della Leopolda \u00e8 con te \u202c\n\u202a#Leopolda10\u202c", "post_text": "\u202aLe parole di Claudia, una giovane donna che sta combattendo contro la SLA, arrivano in fondo al cuore. Quanta emozione, quanta bellezza. Grazie Claudia, il popolo della Leopolda \u00e8 con te \u202c\n\u202a#Leopolda10\u202c", "shared_text": "", "time": "2019-10-19 17:14:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103305214915&id=113335124914", "link": null} +{"post_id": "10157103047164915", "text": "In diretta dalla #Leopolda10 gli interventi. Dalle 18 circa ci vediamo sulla mia pagina per il lancio di #ItaliaViva\nItalia Viva era in diretta.\n19 ottobre alle ore 13:59 \u00b7", "post_text": "In diretta dalla #Leopolda10 gli interventi. Dalle 18 circa ci vediamo sulla mia pagina per il lancio di #ItaliaViva", "shared_text": "Italia Viva era in diretta.\n19 ottobre alle ore 13:59 \u00b7", "time": "2019-10-19 15:28:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103047164915&id=113335124914", "link": null} +{"post_id": "10157102923619915", "text": "Non ho niente contro chi vuole andare prima in pensione ma spendere 20 miliardi per anticipare di un anno la pensione a centomila persone \u00e8 semplicemente ingiusto. Gli 80\u20ac vanno a dieci milioni di persone e costano 10 miliardi. Mettiamo soldi per le famiglie e per gli stipendi, non su #Quota100", "post_text": "Non ho niente contro chi vuole andare prima in pensione ma spendere 20 miliardi per anticipare di un anno la pensione a centomila persone \u00e8 semplicemente ingiusto. Gli 80\u20ac vanno a dieci milioni di persone e costano 10 miliardi. Mettiamo soldi per le famiglie e per gli stipendi, non su #Quota100", "shared_text": "", "time": "2019-10-19 14:37:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/72636141_10157102923409915_1391396922312359936_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=7mkvlXtHgo4AQmQIWGhipMy-9-Jb4iO4JfkAk4ip1sGnf6huTuS8W5oFA&_nc_ht=scontent-cdt1-1.xx&oh=acc32c5d4ea488f7ffd5bba773e1d614&oe=5E8CC5A3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102923619915&id=113335124914", "link": null} +{"post_id": "10157102727819915", "text": "I tavoli della #Leopolda10 sono uno spettacolo. Da noi la gente \u00e8 protagonista, attiva e partecipe. Siamo cittadini, non numerini #ItaliaViva", "post_text": "I tavoli della #Leopolda10 sono uno spettacolo. Da noi la gente \u00e8 protagonista, attiva e partecipe. Siamo cittadini, non numerini #ItaliaViva", "shared_text": "", "time": "2019-10-19 13:08:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/72665863_10157102727439915_6688475458217967616_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=5h48JDWfw7oAQlg99yb-g6uah1GW44H0gZ32mWCWTJG-cIbHCnYqhlhog&_nc_ht=scontent-cdt1-1.xx&oh=b18155fa3bf938a9fee98debaec776f2&oe=5E49E4F8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102727819915&id=113335124914", "link": null} +{"post_id": "10157102619129915", "text": "\u202aDa stasera alle 18 ci si potr\u00e0 iscrivere a #ItaliaViva. Ma solo online. Nessun signore delle tessere nel nuovo partito: un partito di idee, non di correnti\u202c\n\u202a#Leopolda10 \u202c", "post_text": "\u202aDa stasera alle 18 ci si potr\u00e0 iscrivere a #ItaliaViva. Ma solo online. Nessun signore delle tessere nel nuovo partito: un partito di idee, non di correnti\u202c\n\u202a#Leopolda10 \u202c", "shared_text": "", "time": "2019-10-19 12:20:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102619129915&id=113335124914", "link": null} +{"post_id": "10157102568389915", "text": "C\u2019\u00e8 chi vive di pregiudizi e ultimatum, c\u2019\u00e8 chi propone idee e progetti. Sul palco della #Leopolda10 con il Ministro Elena Bonetti a parlare di come sostenere DAVVERO le Famiglie #FamilyAct", "post_text": "C\u2019\u00e8 chi vive di pregiudizi e ultimatum, c\u2019\u00e8 chi propone idee e progetti. Sul palco della #Leopolda10 con il Ministro Elena Bonetti a parlare di come sostenere DAVVERO le Famiglie #FamilyAct", "shared_text": "", "time": "2019-10-19 11:55:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/72689353_10157102568344915_7710018676358905856_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=8_ysrR9WWSoAQlMKFZKezQvtNAZj9XvUx4rvjnsNbCdctfE16n7tYUKZw&_nc_ht=scontent-cdt1-1.xx&oh=00fb3de583bfb90b27d9047ff57cc5b2&oe=5E4C0A58", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102568389915&id=113335124914", "link": null} +{"post_id": "10157102515539915", "text": "Beppe Grillo dice che bisogna togliere il voto agli anziani. Io dico che bisogna togliere il fiasco a Beppe Grillo\n#Leopolda10", "post_text": "Beppe Grillo dice che bisogna togliere il voto agli anziani. Io dico che bisogna togliere il fiasco a Beppe Grillo\n#Leopolda10", "shared_text": "", "time": "2019-10-19 11:31:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/72613215_10157102514444915_2835784386618589184_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=pQyrm-uGHxUAQld9f97pKU7fvgTIllsZpP9-ZrEljx5__GDnQsF0qCFtQ&_nc_ht=scontent-cdt1-1.xx&oh=a74ed5b4d78120f82ee84ba9ed18a42b&oe=5E40EA7E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102515539915&id=113335124914", "link": null} +{"post_id": "10157102398534915", "text": "In diretta dalla #Leopolda10\nItalia Viva era in diretta.\n19 ottobre alle ore 09:08 \u00b7\nIn diretta dalla #Leopolda10", "post_text": "In diretta dalla #Leopolda10", "shared_text": "Italia Viva era in diretta.\n19 ottobre alle ore 09:08 \u00b7\nIn diretta dalla #Leopolda10", "time": "2019-10-19 10:23:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102398534915&id=113335124914", "link": null} +{"post_id": "10157102194044915", "text": "Le prime persone ai cancelli sono arrivate alle 6 di stamani. E gi\u00e0 adesso c\u2019\u00e8 un fiume di gente che sta arrivando alla #Leopolda10. Non sottovalutate questo popolo: l\u2019#ItaliaViva c\u2019\u00e8 ed e \u00e8 bellissima", "post_text": "Le prime persone ai cancelli sono arrivate alle 6 di stamani. E gi\u00e0 adesso c\u2019\u00e8 un fiume di gente che sta arrivando alla #Leopolda10. Non sottovalutate questo popolo: l\u2019#ItaliaViva c\u2019\u00e8 ed e \u00e8 bellissima", "shared_text": "", "time": "2019-10-19 08:08:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/73012487_10157102192999915_4797197484281561088_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=k4qJIjeW0bkAQlVvGMZq8LBXxD82Z3r6roegJDH5kArsXI2bDUCj3lpaQ&_nc_ht=scontent-cdt1-1.xx&oh=2f46972ae6bdf138e6a3e40970fe7592&oe=5E41E8BA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102194044915&id=113335124914", "link": null} +{"post_id": "10157101390544915", "text": "\u00c8 stata una serata incredibile e le lacrime di Nasrim resteranno per sempre tatuate nel nostro cuore. La Leopolda, la casa delle emozioni. La casa del futuro. Buona notte, a domani", "post_text": "\u00c8 stata una serata incredibile e le lacrime di Nasrim resteranno per sempre tatuate nel nostro cuore. La Leopolda, la casa delle emozioni. La casa del futuro. Buona notte, a domani", "shared_text": "", "time": "2019-10-19 01:03:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157101390544915&id=113335124914", "link": null} +{"post_id": "10157101023999915", "text": "Il fatto che non siamo nello stesso partito non significa che non abbiamo gli stessi valori. Grazie Dario Nardella per essere venuto alla #Leopolda10", "post_text": "Il fatto che non siamo nello stesso partito non significa che non abbiamo gli stessi valori. Grazie Dario Nardella per essere venuto alla #Leopolda10", "shared_text": "", "time": "2019-10-18 22:16:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/72954954_10157101023729915_5778935078667157504_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=w-XSQiCyI2gAQkIDqGB3bMrl7z_enzHGWt_4PVqupOqQ2Ehvc7Xkv0y_g&_nc_ht=scontent-cdt1-1.xx&oh=c31defeb5a3488a0b4fc71cec8c001a3&oe=5E403843", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157101023999915&id=113335124914", "link": null} +{"post_id": "10157100954844915", "text": "Siamo cittadini del mondo e non possiamo chiudere gli occhi davanti a quello che sta accadendo ai nostri fratelli e alle nostre sorelle del Kurdistan. Queste ragazze hanno combattuto per sconfiggere l'\u2026 Altroestremismo islamico dell'Isis. Queste ragazze hanno salvato l'Occidente, quello stesso Occidente che di fronte a ci\u00f2 che accade in Kurdistan oggi sta perdendo l'onore e la dignit\u00e0, perch\u00e9 non basta una piccola tregua. Noi stiamo con le ragazze curde contro l'aggressione turca, di un Paese della Nato che sta dimenticando i suoi valori. Noi stiamo con le donne e gli uomini del Kurdistan.", "post_text": "Siamo cittadini del mondo e non possiamo chiudere gli occhi davanti a quello che sta accadendo ai nostri fratelli e alle nostre sorelle del Kurdistan. Queste ragazze hanno combattuto per sconfiggere l'\u2026 Altroestremismo islamico dell'Isis. Queste ragazze hanno salvato l'Occidente, quello stesso Occidente che di fronte a ci\u00f2 che accade in Kurdistan oggi sta perdendo l'onore e la dignit\u00e0, perch\u00e9 non basta una piccola tregua. Noi stiamo con le ragazze curde contro l'aggressione turca, di un Paese della Nato che sta dimenticando i suoi valori. Noi stiamo con le donne e gli uomini del Kurdistan.", "shared_text": "", "time": "2019-10-18 21:52:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74320205_10157100954504915_2825638273706098688_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=IIoDFmbNYM4AQmjVN86iJuYI9OGVxRHq1Oqs00VMeP9IANfNMqCSdx7Pw&_nc_ht=scontent-cdt1-1.xx&oh=463db284a01e7bba26380d607484e558&oe=5E3E26B5", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157100954844915&id=113335124914", "link": null} +{"post_id": "700096000490531", "text": "In diretta dalla #Leopolda10", "post_text": "In diretta dalla #Leopolda10", "shared_text": "", "time": "2019-10-18 20:43:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=700096000490531&id=113335124914", "link": null} +{"post_id": "10157100564839915", "text": "Davanti a questa esplosione di entusiasmo sono commosso e senza parole. Due ore prima dell\u2019inizio la #Leopolda10 scoppia di gente. \u00c8 bellissimo! Cerchiamo di far entrare tutti #ItaliaViva", "post_text": "Davanti a questa esplosione di entusiasmo sono commosso e senza parole. Due ore prima dell\u2019inizio la #Leopolda10 scoppia di gente. \u00c8 bellissimo! Cerchiamo di far entrare tutti #ItaliaViva", "shared_text": "", "time": "2019-10-18 19:17:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/72295897_10157100564774915_2854501141129986048_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=v_vezv5bxZoAQmTkj2tgUpbl-MqbXwc-IkQjoh1eWowbo-v81JRTwwDCA&_nc_ht=scontent-cdt1-1.xx&oh=cf5b8331ff757e220a43c45b7e8c21c8&oe=5E845488", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157100564839915&id=113335124914", "link": null} +{"post_id": "401646860754436", "text": "L\u2019inaugurazione della mostra in ricordo di Tiberio Barchielli", "post_text": "L\u2019inaugurazione della mostra in ricordo di Tiberio Barchielli", "shared_text": "", "time": "2019-10-18 15:17:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=401646860754436&id=113335124914", "link": null} +{"post_id": "10157099823694915", "text": "Alle 15 alla #Leopolda10 ricordiamo Tiberio Barchielli, con una mostra. Le sue foto ci ricordano quanto sia stato importante per noi. Ma soprattutto ci dicono che lui \u00e8 sempre in viaggio con noi. Sempre", "post_text": "Alle 15 alla #Leopolda10 ricordiamo Tiberio Barchielli, con una mostra. Le sue foto ci ricordano quanto sia stato importante per noi. Ma soprattutto ci dicono che lui \u00e8 sempre in viaggio con noi. Sempre", "shared_text": "", "time": "2019-10-18 13:29:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/72474900_10157099823619915_2671646718138777600_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=PF5qsQno0iUAQkZZunhrHwjDFp2_iuVt5IfGx--uLe4ZJNX-y1susAAjw&_nc_ht=scontent-cdt1-1.xx&oh=fac220b474551ed375112d45b0cfff48&oe=5E41985C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157099823694915&id=113335124914", "link": null} +{"post_id": "10157099630834915", "text": "L\u2019Enews straordinaria di oggi, in attesa della #Leopolda10\nCOMITATIAZIONECIVILE.IT\nEnews 596, venerd\u00ec 18 ottobre 2019", "post_text": "L\u2019Enews straordinaria di oggi, in attesa della #Leopolda10", "shared_text": "COMITATIAZIONECIVILE.IT\nEnews 596, venerd\u00ec 18 ottobre 2019", "time": "2019-10-18 11:44:28", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBospFGGa4BAYPg&w=476&h=249&url=https%3A%2F%2Fd3n8a8pro7vhmx.cloudfront.net%2Fcomitaticivici%2Fpages%2F1213%2Fmeta_images%2Foriginal%2Fsocial_1200x628_-_leopolda02.png%3F1571389934&cfs=1&jq=75&ext=jpg&_nc_hash=AQAj3WlwZK6AuBtU", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157099630834915&id=113335124914", "link": "https://www.comitatiazionecivile.it/enews_596_venerd_18_ottobre_2019?fbclid=IwAR1LigKJIzNaoJs-bd8MalkeiJ1aaXfCeLHqJ5vpNQi-lUwkYPOrNPPg6HY"} +{"post_id": "10157099716609915", "text": "Pronti per #Leopolda10? Costruiamo la casa del futuro #Italia2029. Ci vediamo da stasera", "post_text": "Pronti per #Leopolda10? Costruiamo la casa del futuro #Italia2029. Ci vediamo da stasera", "shared_text": "", "time": "2019-10-18 03:28:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=548920222509033&id=113335124914", "link": null} +{"post_id": "10157098091254915", "text": "La Leopolda \u00e8 la Casa da cui in 10 anni abbiamo lanciato idee rivoluzionarie come la fatturazione elettronica e il fisco telematico, da cui \u00e8 nata una nuova classe dirigente femminile. \u00c8 come un vivaio di talenti e un laboratorio di idee. Da domani vi aspettiamo a Casa, per la decima volta\nwww.leopoldastazione.it\n#Leopolda10", "post_text": "La Leopolda \u00e8 la Casa da cui in 10 anni abbiamo lanciato idee rivoluzionarie come la fatturazione elettronica e il fisco telematico, da cui \u00e8 nata una nuova classe dirigente femminile. \u00c8 come un vivaio di talenti e un laboratorio di idee. Da domani vi aspettiamo a Casa, per la decima volta\nwww.leopoldastazione.it\n#Leopolda10", "shared_text": "", "time": "2019-10-17 22:07:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/72819471_10157098089699915_1942557602823012352_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=hU1UEWa-RRsAQkKojpMwZLmc2LQYpXFc-ziNbXpjB-e_4RLWBjbcEIbaA&_nc_ht=scontent-cdt1-1.xx&oh=f57431a1e79b06980cfee239b8bd7ed9&oe=5E7E6740", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157098091254915&id=113335124914", "link": "http://www.leopoldastazione.it/?fbclid=IwAR163R8fNNuyekaRZwBkV_tZQj5TjZt9xP439iLuiqRRYpqeEVvaHwCoVCA"} +{"post_id": "10157097644744915", "text": "L\u2019accordo sulla Brexit segna un momento storico della vita europea. Per i cittadini europei sar\u00e0 molto triste, per quelli britannici un vero disastro. Quando i referendum si vincono con le bugie, chi ci rimette \u00e8 sempre la povera gente", "post_text": "L\u2019accordo sulla Brexit segna un momento storico della vita europea. Per i cittadini europei sar\u00e0 molto triste, per quelli britannici un vero disastro. Quando i referendum si vincono con le bugie, chi ci rimette \u00e8 sempre la povera gente", "shared_text": "", "time": "2019-10-17 18:37:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157097644744915&id=113335124914", "link": null} +{"post_id": "10157096936594915", "text": "Ultime ore prima della #Leopolda10. Chi vuole iscriversi, dare idee, fare una donazione vada su www.leopoldastazione.it. Sveleremo il simbolo e tante idee per l\u2019Italia di domani\n#ItaliaViva", "post_text": "Ultime ore prima della #Leopolda10. Chi vuole iscriversi, dare idee, fare una donazione vada su www.leopoldastazione.it. Sveleremo il simbolo e tante idee per l\u2019Italia di domani\n#ItaliaViva", "shared_text": "", "time": "2019-10-17 12:50:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/72349960_10157096934269915_506147752506294272_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=b39BuI1SmvMAQleceuMn0LgJCuohVig_jYoXfVj5wxhTBzqGzOzNA72sQ&_nc_ht=scontent-cdt1-1.xx&oh=9fa6ae288237139800685eab1a3fd617&oe=5E403C5D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096936594915&id=113335124914", "link": "http://www.leopoldastazione.it/?fbclid=IwAR0B9yIB9wvOIx7GgNOythqLdD3f03YRirJUZ4JEkbx0rMdyrynTyxKbzlg"} +{"post_id": "10157096233509915", "text": "Pronti per la decima edizione della Leopolda? Parleremo di famiglia, di clima, di futuro. E racconteremo come immaginiamo i prossimi dieci anni: Italia ventinove, Italia ventinuovi. L\u2019ItaliaViva!\nwww.leopoldastazione.it", "post_text": "Pronti per la decima edizione della Leopolda? Parleremo di famiglia, di clima, di futuro. E racconteremo come immaginiamo i prossimi dieci anni: Italia ventinove, Italia ventinuovi. L\u2019ItaliaViva!\nwww.leopoldastazione.it", "shared_text": "", "time": "2019-10-17 08:13:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72524123_10157096233319915_7729980623493791744_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=_H60GCcxeM0AQnnewH9Fcr8xTv7o-5yvWRb_Fq26bI19xz6Mtjv4ViSZA&_nc_ht=scontent-cdt1-1.xx&oh=528827dd28916a71db8c9562b9dcd2b5&oe=5E417991", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096233509915&id=113335124914", "link": "http://www.leopoldastazione.it/?fbclid=IwAR3dlEmQcM__xaQzdClaebX-6TGJMkP_TY2gQINY8oXA7sacZdoYdRhU3RU"} +{"post_id": "10157094748824915", "text": "Da giovane cantava in radio. E qui \u00e8 quando l\u2019hanno intervistata qualche anno fa. \u00c8 la mia nonna Maria che oggi compie 99 (novantanove!) anni. E ieri si \u00e8 sorbita tutto il confronto in TV, lucidissima. Che spettacolo. Auguri, nonna! #BuonCompleanno", "post_text": "Da giovane cantava in radio. E qui \u00e8 quando l\u2019hanno intervistata qualche anno fa. \u00c8 la mia nonna Maria che oggi compie 99 (novantanove!) anni. E ieri si \u00e8 sorbita tutto il confronto in TV, lucidissima. Che spettacolo. Auguri, nonna! #BuonCompleanno", "shared_text": "", "time": "2019-10-16 20:21:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157094748824915&id=113335124914", "link": null} +{"post_id": "10157094396099915", "text": "I preparativi per la #Leopolda10. Sar\u00e0 una edizione memorabile. Cresce la Casa di #ItaliaViva", "post_text": "I preparativi per la #Leopolda10. Sar\u00e0 una edizione memorabile. Cresce la Casa di #ItaliaViva", "shared_text": "", "time": "2019-10-16 18:01:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/72785228_10157094395714915_6579105580609175552_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=CW-5kZIWKjwAQnimehewy3SA3tpUyHmqgU6-hT236NV6q-SKtMhgL0l0g&_nc_ht=scontent-cdt1-1.xx&oh=129249fb7bb8963af31d637f477eb32e&oe=5E43CBFA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157094396099915&id=113335124914", "link": null} +{"post_id": "10157094086864915", "text": "Un abbraccio a Matteo Salvini e l\u2019augurio di rimettersi in forma presto. Per tornare a litigare subito, naturalmente", "post_text": "Un abbraccio a Matteo Salvini e l\u2019augurio di rimettersi in forma presto. Per tornare a litigare subito, naturalmente", "shared_text": "", "time": "2019-10-16 15:44:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/73342360_10157094080359915_8147342756222599168_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=9sDtWfttewoAQkJ3lICE3KdX1ilcFNowecu3PzGP02RXPdakbNoEFykDg&_nc_ht=scontent-cdt1-1.xx&oh=c382f680f4a8fcb6e54b3541937deb95&oe=5E8B0CBF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157094086864915&id=113335124914", "link": null} +{"post_id": "10157093670849915", "text": "Il confronto di ieri con Salvini per chi se le fosse perso", "post_text": "Il confronto di ieri con Salvini per chi se le fosse perso", "shared_text": "", "time": "2019-10-16 12:41:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2884376261591287&id=113335124914", "link": null} +{"post_id": "10157093467034915", "text": "Quattro milioni di persone hanno assistito al confronto tra me e Salvini ieri sera su Rai1. Sono felice dei commenti, soprattutto di chi ha notato che noi siamo rimasti sui numeri, sui dati, sui fatti. Salvini invece era un disco rotto sulle sue solite cose ma non ha mai risposto alle domande, da quota100 ai 49 milioni di euro fatti sparire dalla\u2026 Altro Lega: non rispondere \u00e8 la sua forza, lo sappiamo. Tuttavia sono felice non solo per i vostri commenti o per il risultato. Il fatto stesso che finalmente ci sia stato un confronto tra due esponenti politici, un confronto serio, ben moderato \u00e8 un segno molto importante. Spero che sia finito il tempo dei monologhi nei talk show, spero che sia finito il tempo in cui i leader scappano dai dibattiti come accaduto alle ultime Politiche. C\u2019\u00e8 fame di politica, di confronto, di seriet\u00e0. E il dibattito di ieri lo dimostra. Italia Viva far\u00e0 la sua parte con entusiasmo e competenza a cominciare dalla prossima Leopolda.", "post_text": "Quattro milioni di persone hanno assistito al confronto tra me e Salvini ieri sera su Rai1. Sono felice dei commenti, soprattutto di chi ha notato che noi siamo rimasti sui numeri, sui dati, sui fatti. Salvini invece era un disco rotto sulle sue solite cose ma non ha mai risposto alle domande, da quota100 ai 49 milioni di euro fatti sparire dalla\u2026 Altro Lega: non rispondere \u00e8 la sua forza, lo sappiamo. Tuttavia sono felice non solo per i vostri commenti o per il risultato. Il fatto stesso che finalmente ci sia stato un confronto tra due esponenti politici, un confronto serio, ben moderato \u00e8 un segno molto importante. Spero che sia finito il tempo dei monologhi nei talk show, spero che sia finito il tempo in cui i leader scappano dai dibattiti come accaduto alle ultime Politiche. C\u2019\u00e8 fame di politica, di confronto, di seriet\u00e0. E il dibattito di ieri lo dimostra. Italia Viva far\u00e0 la sua parte con entusiasmo e competenza a cominciare dalla prossima Leopolda.", "shared_text": "", "time": "2019-10-16 11:10:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157093467034915&id=113335124914", "link": null} +{"post_id": "10157092574369915", "text": "C'\u00e8 una domanda precisa a cui Salvini nemmeno ieri mi ha risposto. I famosi 49 milioni li ha spesi s\u00ec o no? Non \u00e8 difficile, basterebbe una semplice risposta. Salvini ha usato quei soldi per alimentare la sua propaganda falsa sui social? Deve rispondere, non fuggire", "post_text": "C'\u00e8 una domanda precisa a cui Salvini nemmeno ieri mi ha risposto. I famosi 49 milioni li ha spesi s\u00ec o no? Non \u00e8 difficile, basterebbe una semplice risposta. Salvini ha usato quei soldi per alimentare la sua propaganda falsa sui social? Deve rispondere, non fuggire", "shared_text": "", "time": "2019-10-16 09:56:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1151845688355891&id=113335124914", "link": null} +{"post_id": "10157090182789915", "text": "Grazie a tutti! Chi ha visto il confronto si sar\u00e0 fatto un\u2019idea precisa. Io sono felice che ci sia tutto questo affetto per #ItaliaViva e per il nostro progetto di Paese. Adesso tutti pronti per la #Leopolda10\nBuona Notte\n#RenziSalvini", "post_text": "Grazie a tutti! Chi ha visto il confronto si sar\u00e0 fatto un\u2019idea precisa. Io sono felice che ci sia tutto questo affetto per #ItaliaViva e per il nostro progetto di Paese. Adesso tutti pronti per la #Leopolda10\nBuona Notte\n#RenziSalvini", "shared_text": "", "time": "2019-10-16 00:50:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/72597914_10157090181009915_5644593689968771072_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=Ui0WIkvrHhwAQnoDobyljzlbdS9A_n_1-lSXMwk90jk2C97a5UFOwq8oA&_nc_ht=scontent-cdt1-1.xx&oh=89e21c9968908a4a05228f21cbea2f87&oe=5E8AB65E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157090182789915&id=113335124914", "link": null} +{"post_id": "10157090096029915", "text": "Lo riconoscete il signore nella foto con il cartello \"no euro\"? \u00c8 lo stesso che era in trasmissione a Porta a Porta a dire di essere un uomo di parola. No, non scherziamo: Salvini ha cambiato idea su tutto", "post_text": "Lo riconoscete il signore nella foto con il cartello \"no euro\"? \u00c8 lo stesso che era in trasmissione a Porta a Porta a dire di essere un uomo di parola. No, non scherziamo: Salvini ha cambiato idea su tutto", "shared_text": "", "time": "2019-10-16 00:06:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=517704075694466&id=113335124914", "link": null} +{"post_id": "10157089600029915", "text": "Terribile la notizia di Lampedusa. Quella madre morta abbracciata col suo bambino lascia senza parole. Basta demagogia, restiamo umani.", "post_text": "Terribile la notizia di Lampedusa. Quella madre morta abbracciata col suo bambino lascia senza parole. Basta demagogia, restiamo umani.", "shared_text": "", "time": "2019-10-15 21:28:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/73165984_10157089620844915_3864085778749456384_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=Yb8GT3DhS1gAQl6xNtsEILw4PkjhghtG2SyZmOmnbbDNybBIl1ClhfJRg&_nc_ht=scontent-cdt1-1.xx&oh=54cc5d14e72ca4e28d8e60af1b4d39f7&oe=5E8AC665", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157089600029915&id=113335124914", "link": null} +{"post_id": "10157089494969915", "text": "Molto soddisfatto del match con Salvini: novanta minuti di discussione su numeri, fatti, proposte. La guardate e mi dite che ne pensate? #RenziSalvini", "post_text": "Molto soddisfatto del match con Salvini: novanta minuti di discussione su numeri, fatti, proposte. La guardate e mi dite che ne pensate? #RenziSalvini", "shared_text": "", "time": "2019-10-15 20:50:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72340453_10157089493939915_5620878628611948544_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=rMjmbslPpAYAQnAC4VUbSgmVAVqCmKhSfrut-Ssz9C3V_NBFuYLPAo3lA&_nc_ht=scontent-cdt1-1.xx&oh=3e68e0a4ab657241925fdabcbe593270&oe=5E86C374", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157089494969915&id=113335124914", "link": null} +{"post_id": "10157088406364915", "text": "Siamo a quota 35mila voti per il simbolo di #ItaliaViva. E grazie a chi sta dando una mano anche economica alla #Leopolda10 con un piccolo contributo di qualche euro\nCOMITATIAZIONECIVILE.IT\nVota il simbolo di Italia Viva", "post_text": "Siamo a quota 35mila voti per il simbolo di #ItaliaViva. E grazie a chi sta dando una mano anche economica alla #Leopolda10 con un piccolo contributo di qualche euro", "shared_text": "COMITATIAZIONECIVILE.IT\nVota il simbolo di Italia Viva", "time": "2019-10-15 14:36:52", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBdyAsvOavaDcZM&w=476&h=249&url=https%3A%2F%2Fd3n8a8pro7vhmx.cloudfront.net%2Fcomitaticivici%2Fpages%2F488%2Fmeta_images%2Foriginal%2Floghi-social.jpeg%3F1570892208&cfs=1&jq=75&ext=jpg&_nc_hash=AQAomZkPCOZAWQ9g", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157088406364915&id=113335124914", "link": "https://www.comitatiazionecivile.it/vota_simbolo_italia_viva?fbclid=IwAR2u0Xb6GBUQ6wS9q-xCggdDqkeBJWUxABC8TwDEDqrelYJNGNGh6h3G_IY"} +{"post_id": "10157088265899915", "text": "Stasera avremo il confronto Tv con Matteo Salvini. In questi giorni l\u2019ex Capitano ci attacca su #Quota100. Qui un perfetto Luigi Marattin spiega perch\u00e9 questa misura \u00e8 semplicemente iniqua. Per chi non si accontenta degli urli e degli slogan, qui il video\nWWW.ITALIAVIVA.IT\nQuota 100: ecco perch\u00e9 \u00e8 iniqua", "post_text": "Stasera avremo il confronto Tv con Matteo Salvini. In questi giorni l\u2019ex Capitano ci attacca su #Quota100. Qui un perfetto Luigi Marattin spiega perch\u00e9 questa misura \u00e8 semplicemente iniqua. Per chi non si accontenta degli urli e degli slogan, qui il video", "shared_text": "WWW.ITALIAVIVA.IT\nQuota 100: ecco perch\u00e9 \u00e8 iniqua", "time": "2019-10-15 13:23:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=426224961416542&id=113335124914", "link": "http://www.italiaviva.it/?fbclid=IwAR1D3fnEhuY_YwkeryLtOIdjTOMSca0Pi4pGC48wgtD5my_GZPgvb9pqqHE"} +{"post_id": "10157087981739915", "text": "Lorenzo Guarnieri non aveva neanche 18 anni quando \u00e8 stato ucciso in un incidente stradale. Dalla sua tragedia e dalla tenacia della sua famiglia \u00e8 nata una battaglia che ha condotto all\u2019approvazione della\u2026 Altro legge sull\u2019omicidio stradale. Una legge sacrosanta che ho avuto il grande onore di firmare a Palazzo Chigi. Leggete l\u2019intervista del padre di Lorenzo, Stefano, oggi al QN (http://bit.ly/2nLMK85). Ne vale la pena.", "post_text": "Lorenzo Guarnieri non aveva neanche 18 anni quando \u00e8 stato ucciso in un incidente stradale. Dalla sua tragedia e dalla tenacia della sua famiglia \u00e8 nata una battaglia che ha condotto all\u2019approvazione della\u2026 Altro legge sull\u2019omicidio stradale. Una legge sacrosanta che ho avuto il grande onore di firmare a Palazzo Chigi. Leggete l\u2019intervista del padre di Lorenzo, Stefano, oggi al QN (http://bit.ly/2nLMK85). Ne vale la pena.", "shared_text": "", "time": "2019-10-15 09:58:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/72899672_10157087968069915_9013318363367079936_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Bk8I-vo6Si4AQlWDHHVokVE-6xPkNQFZIJMFmeI-lLBbdTEIKiZ3OXUnw&_nc_ht=scontent-cdt1-1.xx&oh=6851b42e6856f9cc8024a7c15079840f&oe=5E4593E9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157087981739915&id=113335124914", "link": "https://bit.ly/2nLMK85?fbclid=IwAR2x5kS7gTqYaIpNV4ude-RZA9jd7mX_VTp1z7r155Jsdhy3PbD_F-KJQIw"} +{"post_id": "10157086161404915", "text": "Sul fatto che l\u2019IVA non si tocca mi sembra che ci sia finalmente un consenso unanime. Gran passo in avanti, davvero: tutt\u2019altro che scontato fino a qualche giorno fa.\nIn alcuni articoli di qualche giorno fa (Sole 24 Ore e Corriere) abbiamo indicato le priorit\u00e0 di Italia Viva. In aggiunta a ci\u00f2 che abbiamo gi\u00e0 spiegato, molto semplicemente:\n1.\u2026 Altro Evitiamo di fare mini-aumenti di tasse come una certa cultura troppo spendacciona vorrebbe fare. Prima che aumentare le tasse sul gasolio o sullo zucchero, tagliamo i costi. Pensate che oggi le spese per beni e servizi sono tra i 10 e i 15 miliardi in pi\u00f9 rispetto a quando al Governo eravamo noi. Assurdo un aumento cos\u00ec rilevante, no? Si dovrebbe\u2026 Altro", "post_text": "Sul fatto che l\u2019IVA non si tocca mi sembra che ci sia finalmente un consenso unanime. Gran passo in avanti, davvero: tutt\u2019altro che scontato fino a qualche giorno fa.\nIn alcuni articoli di qualche giorno fa (Sole 24 Ore e Corriere) abbiamo indicato le priorit\u00e0 di Italia Viva. In aggiunta a ci\u00f2 che abbiamo gi\u00e0 spiegato, molto semplicemente:\n1.\u2026 Altro Evitiamo di fare mini-aumenti di tasse come una certa cultura troppo spendacciona vorrebbe fare. Prima che aumentare le tasse sul gasolio o sullo zucchero, tagliamo i costi. Pensate che oggi le spese per beni e servizi sono tra i 10 e i 15 miliardi in pi\u00f9 rispetto a quando al Governo eravamo noi. Assurdo un aumento cos\u00ec rilevante, no? Si dovrebbe\u2026 Altro", "shared_text": "", "time": "2019-10-14 17:54:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157086161404915&id=113335124914", "link": null} +{"post_id": "10157086036944915", "text": "Ci\u00f2 che sta accadendo in Siria contro i Curdi \u00e8 orrore puro. Quel popolo \u00e8 stato in prima linea per fermare l\u2019estremismo dell\u2019ISIS fino a qualche mese fa. E adesso l\u2019Occidente chiude gli occhi davanti alla scelta sciagurata della Turchia? Assurdo!\nIl regime di Erdogan va fermato. Il blocco delle armi \u00e8 il minimo sindacale: l\u2019Europa deve subito\u2026 Altro imporre sanzioni economiche. Chi ha visto le foto che stiamo ricevendo da Kobane \u00e8 rimasto come noi senza parole. Ma il popolo curdo, forte e orgoglioso, non ha bisogno di parole: ha bisogno della reazione immediata della comunit\u00e0 internazionale.\n#Enews/1", "post_text": "Ci\u00f2 che sta accadendo in Siria contro i Curdi \u00e8 orrore puro. Quel popolo \u00e8 stato in prima linea per fermare l\u2019estremismo dell\u2019ISIS fino a qualche mese fa. E adesso l\u2019Occidente chiude gli occhi davanti alla scelta sciagurata della Turchia? Assurdo!\nIl regime di Erdogan va fermato. Il blocco delle armi \u00e8 il minimo sindacale: l\u2019Europa deve subito\u2026 Altro imporre sanzioni economiche. Chi ha visto le foto che stiamo ricevendo da Kobane \u00e8 rimasto come noi senza parole. Ma il popolo curdo, forte e orgoglioso, non ha bisogno di parole: ha bisogno della reazione immediata della comunit\u00e0 internazionale.\n#Enews/1", "shared_text": "", "time": "2019-10-14 16:47:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157086036944915&id=113335124914", "link": null} +{"post_id": "10157082001114915", "text": "Ho ricevuto da Kobane foto di corpi martoriati che lasciano senza parole\nTutta la vicenda curda \u00e8 un incredibile scandalo.\nL\u2019Italia deve bloccare ogni vendita di armi alla Turchia. E l\u2019Europa deve imporre sanzioni alla Turchia gi\u00e0 dal prossimo consiglio europeo.\nVisto quello che stiamo vedendo, chi tace \u00e8 complice", "post_text": "Ho ricevuto da Kobane foto di corpi martoriati che lasciano senza parole\nTutta la vicenda curda \u00e8 un incredibile scandalo.\nL\u2019Italia deve bloccare ogni vendita di armi alla Turchia. E l\u2019Europa deve imporre sanzioni alla Turchia gi\u00e0 dal prossimo consiglio europeo.\nVisto quello che stiamo vedendo, chi tace \u00e8 complice", "shared_text": "", "time": "2019-10-13 08:16:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/73291306_10157082021009915_3891925967215525888_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=eGXzakY4WTsAQnheMfX8GDmNRSJJrNVNYdVnTbRUmDDcGcFS5qAqNZsJg&_nc_ht=scontent-cdt1-1.xx&oh=930c5659b07f64a574dc82950735b362&oe=5E7EA2FA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157082001114915&id=113335124914", "link": null} +{"post_id": "10157080057934915", "text": "Sabato prossimo alle 18 in punto il simbolo di Italia Viva sar\u00e0 ufficialmente presentato alla Leopolda10. Sar\u00e0 un grande momento di festa. Gi\u00e0, ma quale sar\u00e0 il simbolo? Facciamo una cosa diversa dagli altri\u2026 Altro partiti: decidiamo il logo tutti insieme! Qui ci sono le tre proposte che abbiamo selezionato tra le tante arrivate in questi giorni. Per votare basta andare sul sito www.italiaviva.it e scegliere quella che preferite. Mi piace l\u2019idea che questa nostra nuova Casa sia un luogo ricco di partecipazione. A cominciare dal simbolo che ci rappresenter\u00e0 sulla scheda elettorale. In attesa di votare per Italia Viva, avete una settimana per votare il simbolo!", "post_text": "Sabato prossimo alle 18 in punto il simbolo di Italia Viva sar\u00e0 ufficialmente presentato alla Leopolda10. Sar\u00e0 un grande momento di festa. Gi\u00e0, ma quale sar\u00e0 il simbolo? Facciamo una cosa diversa dagli altri\u2026 Altro partiti: decidiamo il logo tutti insieme! Qui ci sono le tre proposte che abbiamo selezionato tra le tante arrivate in questi giorni. Per votare basta andare sul sito www.italiaviva.it e scegliere quella che preferite. Mi piace l\u2019idea che questa nostra nuova Casa sia un luogo ricco di partecipazione. A cominciare dal simbolo che ci rappresenter\u00e0 sulla scheda elettorale. In attesa di votare per Italia Viva, avete una settimana per votare il simbolo!", "shared_text": "", "time": "2019-10-12 18:02:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/73166634_10157080055764915_7395297955537747968_o.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=PlNLKbT0gmMAQlZi5hgzVcq4R9_916tfZpwUEfod03LUF0gSChPb3KpFg&_nc_ht=scontent-cdt1-1.xx&oh=cf6fd0654baa2bd6a50a6d84f2191d6e&oe=5E8BFEAA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157080057934915&id=113335124914", "link": "http://www.italiaviva.it/?fbclid=IwAR3aO7sGPf96GtoM0S6xYV7xDcU3xR_DolyENpbvzpfplFSXzze8BX0qNRk"} +{"post_id": "10157079132184915", "text": "Temo di non poterlo utilizzare per una questione di diritti, ma mi inchino al genio di Makkox. Un logo fenomenale, il suo. Ma per scoprire il vero SIMBOLO di #ItaliaViva vi aspetto qui, oggi, alle 18. Ci sar\u00e0 una sorpresa", "post_text": "Temo di non poterlo utilizzare per una questione di diritti, ma mi inchino al genio di Makkox. Un logo fenomenale, il suo. Ma per scoprire il vero SIMBOLO di #ItaliaViva vi aspetto qui, oggi, alle 18. Ci sar\u00e0 una sorpresa", "shared_text": "", "time": "2019-10-12 10:08:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2746896415329582&id=113335124914", "link": null} +{"post_id": "10157076459279915", "text": "Chiamiamo le cose con il loro nome: quello di Erdogan \u00e8 un ricatto. E l\u2019Europa ha il dovere morale di dire NO ai ricatti. Noi stiamo dalla parte della libert\u00e0, noi stiamo dalla parte dei curdi", "post_text": "Chiamiamo le cose con il loro nome: quello di Erdogan \u00e8 un ricatto. E l\u2019Europa ha il dovere morale di dire NO ai ricatti. Noi stiamo dalla parte della libert\u00e0, noi stiamo dalla parte dei curdi", "shared_text": "", "time": "2019-10-11 09:13:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72151366_10157076459049915_1025487668860944384_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=RG8zjxIsmlEAQnGeQ7Y0lhxrnvyvQXTyX4gQT2ySfBcfEg_ROMRo_L98A&_nc_ht=scontent-cdt1-1.xx&oh=2841194e77645f3618f05a84dbe3bcd2&oe=5E838F1C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157076459279915&id=113335124914", "link": null} +{"post_id": "10157072299059915", "text": "L\u2019attentato contro una sinagoga tedesca nel giorno di Yom Kippur \u00e8 un attentato a tutti noi. Oggi io sono ebreo, noi siamo ebrei. E nessuno abbassi la guardia contro l\u2019estremismo ed i rigurgiti neonazisti.", "post_text": "L\u2019attentato contro una sinagoga tedesca nel giorno di Yom Kippur \u00e8 un attentato a tutti noi. Oggi io sono ebreo, noi siamo ebrei. E nessuno abbassi la guardia contro l\u2019estremismo ed i rigurgiti neonazisti.", "shared_text": "", "time": "2019-10-09 20:05:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/72215079_10157072386869915_1635740661208580096_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=v87Ir7QPWN0AQk-tCegDbbIMNt7K0E2rSVgZzC_ZDBL7lCqQYMnzq-D5Q&_nc_ht=scontent-cdt1-1.xx&oh=87bc13fa9ea67f4a4f1b6142fc1997cc&oe=5E4549E2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157072299059915&id=113335124914", "link": null} +{"post_id": "10157072075259915", "text": "Una storia di dolore atroce. Ma anche la storia di un campione che \u00e8 innanzitutto un grandissimo uomo. Da leggere assolutamente\nOPEN.ONLINE\nManuel Bortuzzo sulla sentenza: \u00abNon cambia le cose: non mi restituir\u00e0 certamente le gambe\u00bb - Open", "post_text": "Una storia di dolore atroce. Ma anche la storia di un campione che \u00e8 innanzitutto un grandissimo uomo. Da leggere assolutamente", "shared_text": "OPEN.ONLINE\nManuel Bortuzzo sulla sentenza: \u00abNon cambia le cose: non mi restituir\u00e0 certamente le gambe\u00bb - Open", "time": "2019-10-09 18:28:33", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAp4hymDgheQF44&w=476&h=249&url=https%3A%2F%2Fopenonline.imgix.net%2Fwp-content%2Fuploads%2F2019%2F10%2F09173048%2Fbortuzzo1.jpg%3Fw%3D1200%26min-h%3D630%26fit%3Dcrop%26crop%3Dcenter%26auto%3Dcompress%26auto%3Denhance&cfs=1&jq=75&sx=0&sy=16&sw=1200&sh=628&ext=jpg&_nc_hash=AQD1jMobMsDHZBGE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157072075259915&id=113335124914", "link": "https://www.open.online/2019/10/09/manuel-bortuzzo-sulla-sentenza-non-cambia-le-cose-non-mi-restituira-certamente-le-gambe/?fbclid=IwAR26daQO8TqbVbYNGSS_Pop21vhF9sX3kOfAgnWiMi2EbFI-YHovEpZDAHU"} +{"post_id": "10157071896284915", "text": "I nostri fratelli curdi hanno combattuto gli estremisti dell\u2019ISIS distruggendo lo Stato Islamico. Lasciarli soli adesso \u00e8 assurdo e profondamente ingiusto. La comunit\u00e0 internazionale non pu\u00f2 fare finta di niente", "post_text": "I nostri fratelli curdi hanno combattuto gli estremisti dell\u2019ISIS distruggendo lo Stato Islamico. Lasciarli soli adesso \u00e8 assurdo e profondamente ingiusto. La comunit\u00e0 internazionale non pu\u00f2 fare finta di niente", "shared_text": "", "time": "2019-10-09 17:15:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/71781813_10157071895874915_4154459085883834368_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=HAtVO4aP8T0AQmXLewN7V0uvIjGB2vxyOzADvt5k8j-0kw0Mu_iLiHqOg&_nc_ht=scontent-cdt1-1.xx&oh=a317a01778ccbca97a3712ba098a17ef&oe=5E8B56E8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157071896284915&id=113335124914", "link": "http://www.matteorenzi.it/?fbclid=IwAR1DyXU8hE7mKl07RL9qQME73Y47BCDospCoC-AdBcjy5HSqUGpjEUuMGKA"} +{"post_id": "10157068850954915", "text": "I giornali di oggi riportano alcune frasi attribuite al Presidente del Consiglio. E non smentite. Soprattutto Corriere e Stampa dicono che Conte mi consideri un \u201cprepotente\u201d. Al pari o peggio di Salvini. Capisco che l\u2019esperienza dello scorso Governo sia stata logorante e abbia causato molti danni a tutti, a cominciare dagli italiani. Ma credo che\u2026 Altro si debba dire una parola di chiarezza. E di tranquillit\u00e0.\nNon intendo fare polemica col Premier. Per me questo continuo scontro deve finire. E faccio il primo passo evitando di rispondere alle accuse di \u201cprepotenza\u201d. Basta retroscena e polemiche.\nNel merito:\n1. Tocca al Premier firmare la legge di bilancio, non a me. L\u2019unica cosa che conta, per noi,\u2026 Altro", "post_text": "I giornali di oggi riportano alcune frasi attribuite al Presidente del Consiglio. E non smentite. Soprattutto Corriere e Stampa dicono che Conte mi consideri un \u201cprepotente\u201d. Al pari o peggio di Salvini. Capisco che l\u2019esperienza dello scorso Governo sia stata logorante e abbia causato molti danni a tutti, a cominciare dagli italiani. Ma credo che\u2026 Altro si debba dire una parola di chiarezza. E di tranquillit\u00e0.\nNon intendo fare polemica col Premier. Per me questo continuo scontro deve finire. E faccio il primo passo evitando di rispondere alle accuse di \u201cprepotenza\u201d. Basta retroscena e polemiche.\nNel merito:\n1. Tocca al Premier firmare la legge di bilancio, non a me. L\u2019unica cosa che conta, per noi,\u2026 Altro", "shared_text": "", "time": "2019-10-08 15:31:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157068850954915&id=113335124914", "link": null} +{"post_id": "10157065682749915", "text": "Dicono tutti che Italia Viva \u00e8 un piccolo partito e non conta niente. Per\u00f2 parlano tutti di noi, costantemente. Strano, vero? Noi facciamo solo proposte concrete perch\u00e9 questo per noi significa fare politica. E chi paragona il Papeete alla Leopolda non si rende conto di quanto sia bello avere un luogo come la Leopolda nel quale si prova tutti insieme a dare idee per cambiare il Paese.\nContinuano ad attaccare me, ma non si rendono conto che fanno come sempre la guerra al Matteo sbagliato", "post_text": "Dicono tutti che Italia Viva \u00e8 un piccolo partito e non conta niente. Per\u00f2 parlano tutti di noi, costantemente. Strano, vero? Noi facciamo solo proposte concrete perch\u00e9 questo per noi significa fare politica. E chi paragona il Papeete alla Leopolda non si rende conto di quanto sia bello avere un luogo come la Leopolda nel quale si prova tutti insieme a dare idee per cambiare il Paese.\nContinuano ad attaccare me, ma non si rendono conto che fanno come sempre la guerra al Matteo sbagliato", "shared_text": "", "time": "2019-10-07 08:32:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157065682749915&id=113335124914", "link": null} +{"post_id": "10157064032464915", "text": "Obama, Trump, i servizi segreti, la Leopolda e il Papeete, le tasse e la legge di Bilancio, Italia Viva, le idee: qui la mia chiacchierata con Lucia Annunziata su Rai Tre questo pomeriggio", "post_text": "Obama, Trump, i servizi segreti, la Leopolda e il Papeete, le tasse e la legge di Bilancio, Italia Viva, le idee: qui la mia chiacchierata con Lucia Annunziata su Rai Tre questo pomeriggio", "shared_text": "", "time": "2019-10-06 18:21:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=451890468760619&id=113335124914", "link": null} +{"post_id": "10157063434689915", "text": "Alle 14.30 vi aspetto in diretta su Rai Tre a In Mezz'ora, ospite di Lucia Annunziata", "post_text": "Alle 14.30 vi aspetto in diretta su Rai Tre a In Mezz'ora, ospite di Lucia Annunziata", "shared_text": "", "time": "2019-10-06 13:10:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/71893997_10157063434649915_3416366202992197632_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=L4BrSobuYaYAQmrPDHta-YdetAfWZP-9-tvC6uPuvYU6ZnWP2SiPPxdzQ&_nc_ht=scontent-cdt1-1.xx&oh=35b4dfcb193449782c61f806e3b0fb7e&oe=5E4C4976", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157063434689915&id=113335124914", "link": null} +{"post_id": "10157063007444915", "text": "Noi non parliamo di mojiti e cubiste. Noi parliamo di tasse, di asili nido, di edilizia scolastica, di posti di lavoro. Discutere di queste cose non significa litigare: significa fare politica. Il populismo ti\u2026 Altro costringe a parlare di caratteri, di simpatie e antipatie, di rapporti personali. La politica ti costringe a parlare di idee e di programmi.\nLa mia intervista di oggi a La Stampa\nCOMITATIAZIONECIVILE.IT\nRenzi: \"Alla Leopolda un piano industriale per l'Italia. S\u00ec alla politica no al populismo\"", "post_text": "Noi non parliamo di mojiti e cubiste. Noi parliamo di tasse, di asili nido, di edilizia scolastica, di posti di lavoro. Discutere di queste cose non significa litigare: significa fare politica. Il populismo ti\u2026 Altro costringe a parlare di caratteri, di simpatie e antipatie, di rapporti personali. La politica ti costringe a parlare di idee e di programmi.\nLa mia intervista di oggi a La Stampa", "shared_text": "COMITATIAZIONECIVILE.IT\nRenzi: \"Alla Leopolda un piano industriale per l'Italia. S\u00ec alla politica no al populismo\"", "time": "2019-10-06 08:32:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/s480x480/72355464_23843824208830181_4050221268992000000_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=bvcO7BYedsIAQluhXUX_To8LF53ZoxHVeEYiBSHK7eOr20rojc-kKSLSA&_nc_ht=scontent-cdt1-1.xx&oh=59c238d6e18fc2fbe4f4892603c24fe1&oe=5E437DB4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157063007444915&id=113335124914", "link": "https://www.comitatiazionecivile.it/renzi_lastampa_06102019?fbclid=IwAR1ldNsa1OCWrWBYc1rm2HekOjXntlSphQQIgfVca6n9pcJO6Bt_XbxRWmo"} +{"post_id": "10157060348904915", "text": "Italia Viva studia le carte, lancia proposte, trova coperture. Propone idee insomma. Questa \u00e8 la prima novit\u00e0 da quando c\u2019\u00e8 Italia Viva: si discute di tasse e asili nido, non di mojito e alleanze. Noi non siamo contro il Governo, anzi: ma noi siamo contro l\u2019aumento delle tasse. E lo abbiamo spiegato bene.\nMolti cittadini, in tutta Italia, si stanno\u2026 Altro avvicinando a noi. C\u2019\u00e8 un entusiasmo persino sorprendente. E la Leopolda lo dimostrer\u00e0 una volta di pi\u00f9.\nCresciamo anche in Parlamento: da oggi si \u00e8 unita a noi una delle senatrici pi\u00f9 brave e competenti. Annamaria Parente ci ha aiutato molto sul Dopo di Noi, sul sociale, sul JobsAct, sul ruolo delle donne nella societ\u00e0. Da oggi ha aderito al gruppo Italia Viva e arricchisce la Casa comune con la sua intelligenza e la sua preparazione. Benvenuta a lei e ai tanti che ci stanno dando una mano su tutti i territori.", "post_text": "Italia Viva studia le carte, lancia proposte, trova coperture. Propone idee insomma. Questa \u00e8 la prima novit\u00e0 da quando c\u2019\u00e8 Italia Viva: si discute di tasse e asili nido, non di mojito e alleanze. Noi non siamo contro il Governo, anzi: ma noi siamo contro l\u2019aumento delle tasse. E lo abbiamo spiegato bene.\nMolti cittadini, in tutta Italia, si stanno\u2026 Altro avvicinando a noi. C\u2019\u00e8 un entusiasmo persino sorprendente. E la Leopolda lo dimostrer\u00e0 una volta di pi\u00f9.\nCresciamo anche in Parlamento: da oggi si \u00e8 unita a noi una delle senatrici pi\u00f9 brave e competenti. Annamaria Parente ci ha aiutato molto sul Dopo di Noi, sul sociale, sul JobsAct, sul ruolo delle donne nella societ\u00e0. Da oggi ha aderito al gruppo Italia Viva e arricchisce la Casa comune con la sua intelligenza e la sua preparazione. Benvenuta a lei e ai tanti che ci stanno dando una mano su tutti i territori.", "shared_text": "", "time": "2019-10-05 10:29:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157060348904915&id=113335124914", "link": null} +{"post_id": "10157059019764915", "text": "Leggo dichiarazioni polemiche e vedo commenti a senso unico nei talk show. Rispetto tutte e tutti. Mi limito a una considerazione: io stamani non ho fatto il fenomeno. Il mio obiettivo non \u00e8 giocare a fare il simpatico ma dare una mano al mio Paese: ci pagano per questo. Ho scritto in un articolo sul Corriere dei numeri. Dei dati. Delle proposte.\u2026 Altro Chi vuole rispondermi pu\u00f2 farlo sulla base dei numeri, se crede. O delle idee. Il populista gioca ad apparire simpatico, il politico prova a risolvere i problemi. Io ho scelto la politica e non il populismo. Qui (bit.ly/troppaspesa) il mio articolo per chi avr\u00e0 la pazienza di leggerlo. Buona serata", "post_text": "Leggo dichiarazioni polemiche e vedo commenti a senso unico nei talk show. Rispetto tutte e tutti. Mi limito a una considerazione: io stamani non ho fatto il fenomeno. Il mio obiettivo non \u00e8 giocare a fare il simpatico ma dare una mano al mio Paese: ci pagano per questo. Ho scritto in un articolo sul Corriere dei numeri. Dei dati. Delle proposte.\u2026 Altro Chi vuole rispondermi pu\u00f2 farlo sulla base dei numeri, se crede. O delle idee. Il populista gioca ad apparire simpatico, il politico prova a risolvere i problemi. Io ho scelto la politica e non il populismo. Qui (bit.ly/troppaspesa) il mio articolo per chi avr\u00e0 la pazienza di leggerlo. Buona serata", "shared_text": "", "time": "2019-10-04 21:28:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157059019764915&id=113335124914", "link": "https://bit.ly/troppaspesa?fbclid=IwAR3pbaQOf9em9cr8Q0V7bTikJ9VEHqDuOylwUU8LhfQ2Ww8XIe7IzCSy6Sw"} +{"post_id": "10157058749669915", "text": "Terribili le notizie di Trieste. Le mie condoglianze alle famiglie degli agenti. E alla grande famiglia della Polizia.", "post_text": "Terribili le notizie di Trieste. Le mie condoglianze alle famiglie degli agenti. E alla grande famiglia della Polizia.", "shared_text": "", "time": "2019-10-04 19:26:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157058749669915&id=113335124914", "link": null} +{"post_id": "10157058350659915", "text": "Da qualche settimana viene rilanciata sui social una nuova FakeNews contro di me. Ma stavolta si varcano i confini nazionali: vengo accusato di aver partecipato a un complotto internazionale ordito da Obama contro Trump. Ho scoperto a mie spese che non si deve mai sottovalutare la portata delle bufale. E avendo diverse testate rilanciato questa\u2026 Altro FakeNews ho deciso di procedere per vie legali: il tempo del buonismo \u00e8 finito. La prima persona contro la quale agisco in giudizio \u00e8 il signor George Papadopoulos che si definisce \u201cex collaboratore del Presidente Trump\u201d che stamattina ha rilasciato dichiarazioni false e gravemente lesive della mia reputazione sul giornale La Verit\u00e0. Chi sbaglia, paga. Chi diffama, pure. Ci vediamo in tribunale.", "post_text": "Da qualche settimana viene rilanciata sui social una nuova FakeNews contro di me. Ma stavolta si varcano i confini nazionali: vengo accusato di aver partecipato a un complotto internazionale ordito da Obama contro Trump. Ho scoperto a mie spese che non si deve mai sottovalutare la portata delle bufale. E avendo diverse testate rilanciato questa\u2026 Altro FakeNews ho deciso di procedere per vie legali: il tempo del buonismo \u00e8 finito. La prima persona contro la quale agisco in giudizio \u00e8 il signor George Papadopoulos che si definisce \u201cex collaboratore del Presidente Trump\u201d che stamattina ha rilasciato dichiarazioni false e gravemente lesive della mia reputazione sul giornale La Verit\u00e0. Chi sbaglia, paga. Chi diffama, pure. Ci vediamo in tribunale.", "shared_text": "", "time": "2019-10-04 16:13:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157058350659915&id=113335124914", "link": null} +{"post_id": "10157057779849915", "text": "La mia intervista a TG2 Post di ieri sera. Vi \u00e8 piaciuta? Leggo volentieri i vostri commenti \ud83d\ude0a\nWWW.COMITATIAZIONECIVILE.IT\nLa mia intervista a TG2 Post", "post_text": "La mia intervista a TG2 Post di ieri sera. Vi \u00e8 piaciuta? Leggo volentieri i vostri commenti \ud83d\ude0a", "shared_text": "WWW.COMITATIAZIONECIVILE.IT\nLa mia intervista a TG2 Post", "time": "2019-10-04 10:45:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=557549021654813&id=113335124914", "link": "http://www.comitatiazionecivile.it/?fbclid=IwAR2ZEpFLUW4wkHKt3bEgpftZYPG5FIGYL2rnM_gCZpdKRTwp9qsnOetcmKg"} +{"post_id": "10157057541909915", "text": "Basta demagogia. Spread e spesa intermedia servono per rilanciare investimenti e abbassare le tasse. Noi vogliamo fare sul serio. In questa lettera al Corriere dati e numeri, non il solito gioco delle tre carte\nCOMITATIAZIONECIVILE.IT\n\"Troppa spesa, si riparta da l\u00ec\": lettera di Matteo Renzi al Corriere della Sera", "post_text": "Basta demagogia. Spread e spesa intermedia servono per rilanciare investimenti e abbassare le tasse. Noi vogliamo fare sul serio. In questa lettera al Corriere dati e numeri, non il solito gioco delle tre carte", "shared_text": "COMITATIAZIONECIVILE.IT\n\"Troppa spesa, si riparta da l\u00ec\": lettera di Matteo Renzi al Corriere della Sera", "time": "2019-10-04 08:05:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c1.0.474.248a/72461272_23843818996780181_3989482030470529024_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=0m64D40Fr-4AQn5ViTo217jFKhaasUycy4L30fK_R3blWOB_5FxwlcpOg&_nc_ht=scontent-cdt1-1.xx&oh=5d0ca94cc4686beb7961e5fb6dcf75f2&oe=5E47041B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157057541909915&id=113335124914", "link": "https://www.comitatiazionecivile.it/renzi_lettera_corrieredellasera04102019?fbclid=IwAR0CNFxhgqG0w3UMyMaVSCXQsG42gHbKsxH4z-9tNuS0npltTkAzbUKTFbw"} +{"post_id": "10157055726879915", "text": "Vi aspetto stasera alle 21 su Rai 2 per Tg2 Post", "post_text": "Vi aspetto stasera alle 21 su Rai 2 per Tg2 Post", "shared_text": "", "time": "2019-10-03 16:33:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/71401202_10157055725824915_7106345878851420160_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=1n23CX3RvuUAQkA_SrqssgotRq0_H4-hBnY_86BiNqRSqE17SCg671p0g&_nc_ht=scontent-cdt1-1.xx&oh=7aa45d85ebd3ea828270f4c74db8e12d&oe=5E466825", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157055726879915&id=113335124914", "link": null} +{"post_id": "10157054799084915", "text": "I dazi americani sui nostri prodotti alimentari faranno male alla nostra gente, ai nostri agricoltori. Il sovranismo e il protezionismo sono una sciagura per l\u2019Italia. Perch\u00e9 il modo migliore per difendere i\u2026 Altro nostri prodotti e i nostri posti di lavoro \u00e8 vivere in una societ\u00e0 aperta, fatta di opportunit\u00e0 non di muri e di dazi. Le scelte di Trump fanno male all\u2019Italia. Ma anche le scelte dei sovranisti di casa nostra rendono pi\u00f9 debole l\u2019economia del nostro Paese. L\u2019Italia ha tutto da guadagnare dalla globalizzazione, alla faccia dei profeti di sventura che sostengono il contrario. Esportiamo bellezza e qualit\u00e0: chi professa il contrario e chiede protezionismo danneggia il nostro futuro.", "post_text": "I dazi americani sui nostri prodotti alimentari faranno male alla nostra gente, ai nostri agricoltori. Il sovranismo e il protezionismo sono una sciagura per l\u2019Italia. Perch\u00e9 il modo migliore per difendere i\u2026 Altro nostri prodotti e i nostri posti di lavoro \u00e8 vivere in una societ\u00e0 aperta, fatta di opportunit\u00e0 non di muri e di dazi. Le scelte di Trump fanno male all\u2019Italia. Ma anche le scelte dei sovranisti di casa nostra rendono pi\u00f9 debole l\u2019economia del nostro Paese. L\u2019Italia ha tutto da guadagnare dalla globalizzazione, alla faccia dei profeti di sventura che sostengono il contrario. Esportiamo bellezza e qualit\u00e0: chi professa il contrario e chiede protezionismo danneggia il nostro futuro.", "shared_text": "", "time": "2019-10-03 07:24:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/71296400_10157054799039915_4157555349282357248_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=7oAOIRbZG4IAQmSF1pOgLSrTKtdcDDE7iuZ8FarAHkBvI3dp7qK3Pp1LA&_nc_ht=scontent-cdt1-1.xx&oh=be81952e7731a839b4d21a3cf8285a11&oe=5E4E8130", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157054799084915&id=113335124914", "link": null} +{"post_id": "10157052561034915", "text": "Ci vediamo stasera, alle 2030, su La 7 a #Ottoemezzo", "post_text": "Ci vediamo stasera, alle 2030, su La 7 a #Ottoemezzo", "shared_text": "", "time": "2019-10-02 11:31:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/71862901_10157052560914915_1067552045982023680_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=EoX3V3rt5dUAQlL64LF00O-AM6Ppy0j1kQy6obLkD7tIe4zJxBCU9UuNg&_nc_ht=scontent-cdt1-1.xx&oh=417dab5470bd349e76013436bb50fc74&oe=5E48C76D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157052561034915&id=113335124914", "link": null} +{"post_id": "10157052238174915", "text": "Il 2 ottobre \u00e8 la festa dei nonni. Le mie nonne Maria e Anna Maria hanno rispettivamente 99 e 89 anni e sono bellissime. I miei nonni Achille e Adone ci hanno invece lasciato troppo presto. Penso a loro. Che dono meraviglioso sono i nonni. E quanto sono importanti nella vita delle famiglie di oggi! Buona festa", "post_text": "Il 2 ottobre \u00e8 la festa dei nonni. Le mie nonne Maria e Anna Maria hanno rispettivamente 99 e 89 anni e sono bellissime. I miei nonni Achille e Adone ci hanno invece lasciato troppo presto. Penso a loro. Che dono meraviglioso sono i nonni. E quanto sono importanti nella vita delle famiglie di oggi! Buona festa", "shared_text": "", "time": "2019-10-02 08:00:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72174598_10157052238144915_6963658166106062848_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=CnV9W8iwkNYAQkT-x6iiJUq0cfjKe5upXJP9_poiV_fYakXx1BnGXzGMg&_nc_ht=scontent-cdt1-1.xx&oh=07f5772977b0a72bc7e5a678fd54ac1c&oe=5E4E4CBE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157052238174915&id=113335124914", "link": null} +{"post_id": "10157049888744915", "text": "Oggi a Genova si \u00e8 compiuto un altro passo in avanti nella costruzione del bellissimo ponte di Renzo Piano. La rapidit\u00e0 con cui si sta lavorando \u00e8 giustamente considerata come un\u2019occasione di riscatto per la\u2026 Altro citt\u00e0. Ma \u00e8 anche un modello di \u201cpax burocratica\u201d da valorizzare ovunque. Ne ho parlato qualche giorno fa sul Sole 24 Ore avanzando alcune proposte, eccole\nILSOLE24ORE.COM\nRenzi: \u00abBrindano i mercati, cala lo spread, la Ue si fida dell\u2019Italia. Ora la crescita\u00bb", "post_text": "Oggi a Genova si \u00e8 compiuto un altro passo in avanti nella costruzione del bellissimo ponte di Renzo Piano. La rapidit\u00e0 con cui si sta lavorando \u00e8 giustamente considerata come un\u2019occasione di riscatto per la\u2026 Altro citt\u00e0. Ma \u00e8 anche un modello di \u201cpax burocratica\u201d da valorizzare ovunque. Ne ho parlato qualche giorno fa sul Sole 24 Ore avanzando alcune proposte, eccole", "shared_text": "ILSOLE24ORE.COM\nRenzi: \u00abBrindano i mercati, cala lo spread, la Ue si fida dell\u2019Italia. Ora la crescita\u00bb", "time": "2019-10-01 11:23:36", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDuLytZXx6hVsXL&w=476&h=249&url=https%3A%2F%2Fi2.res.24o.it%2Fimages2010%2F2019%2F09%2FACEmKhn%2Fimages%2F8939e73e-e1bd-11e9-a5da-7b8173d31352-fotohome0.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQDP0FE5ckuCKFdv", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157049888744915&id=113335124914", "link": "https://www.ilsole24ore.com/art/renzi-brindano-mercati-cala-srpead-ue-si-fida-dell-italia-ora-crescita-ACEmKhn?fbclid=IwAR2fEMvJA7DDB11THbaioZJaFYEUAY9js5v0QoKq_H4FEbZiMYzoIUX6_H4"} +{"post_id": "10157047654119915", "text": "L\u2019Italia aperta vince, l\u2019Italia chiusa muore. Non lo dicono i futurologi, lo dice la storia. L\u2019Italia \u00e8 diventata grande quando ha colto le occasioni di una societ\u00e0 capace di aprirsi e contaminarsi, dall\u2019Impero\u2026 Altro Romano al Rinascimento. L\u2019Italia \u00e8 terra di emigrazione e immigrazione da sempre e un piccolo Paese di 60 milioni di persone oggi pu\u00f2 essere luce in tutto il mondo, con la propria cultura, il proprio export, la propria bellezza. Noi siamo per l\u2019apertura e lasciamo i muri a chi scimmiotta Orban non rendendosi conto di fare un danno esistenziale al nostro Paese.\nFino a poco fa quattro paesi erano alla guida dell\u2019Europa: Regno Unito, Francia, Germania e Italia. Il Regno Unito \u00e8 fuori,\u2026 Altro\nILFOGLIO.IT\nManifesto per un governo vivo", "post_text": "L\u2019Italia aperta vince, l\u2019Italia chiusa muore. Non lo dicono i futurologi, lo dice la storia. L\u2019Italia \u00e8 diventata grande quando ha colto le occasioni di una societ\u00e0 capace di aprirsi e contaminarsi, dall\u2019Impero\u2026 Altro Romano al Rinascimento. L\u2019Italia \u00e8 terra di emigrazione e immigrazione da sempre e un piccolo Paese di 60 milioni di persone oggi pu\u00f2 essere luce in tutto il mondo, con la propria cultura, il proprio export, la propria bellezza. Noi siamo per l\u2019apertura e lasciamo i muri a chi scimmiotta Orban non rendendosi conto di fare un danno esistenziale al nostro Paese.\nFino a poco fa quattro paesi erano alla guida dell\u2019Europa: Regno Unito, Francia, Germania e Italia. Il Regno Unito \u00e8 fuori,\u2026 Altro", "shared_text": "ILFOGLIO.IT\nManifesto per un governo vivo", "time": "2019-09-30 15:04:31", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAzOLm09T611E_2&w=476&h=249&url=https%3A%2F%2Fwww.ilfoglio.it%2Fresizer%2F600%2F315%2Ftrue%2F1569823684368_1569823750.jpg--manifesto_per_un_governo_vivo.jpg%3F1569823750000&cfs=1&jq=75&sx=0&sy=0&sw=600&sh=314&ext=jpg&_nc_hash=AQDzxEZUy7BSxfLl", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157047654119915&id=113335124914", "link": "https://www.ilfoglio.it/politica/2019/09/30/news/manifesto-per-un-governo-vivo-277280/?fbclid=IwAR0ejgOunwTuIagpJvLHDSA5s2lRJhmhOh_Eu8vSSyiFt6F1cSRCMy7Q1is"} +{"post_id": "10157047354934915", "text": "In Italia Viva c\u2019\u00e8 una differenza di linguaggio, di stile, di liturgie interne. E di entusiasmo. Noi siamo felici di essere una squadra, non passiamo il tempo a cercare di attaccare il compagno di partito. Non\u2026 Altro viviamo di correnti e di fuoco amico. Abbiamo creato un partito in cui la diarchia uomo donna \u00e8 regola costitutiva, in cui i coordinatori provinciali saranno spesso Millennials, e in cui quando arriva un ventenne la domanda che gli verr\u00e0 fatta non sar\u00e0 \"Con chi stai?\u201d, ma \u201cChe cosa pensi? Che idee hai? Che cosa proponi\u201d. Siamo un\u2019altra cosa rispetto al PD ma il nostro avversario \u00e8 Capitan Fracassa, \u00e8 Salvini, non il PD. Anche per questo abbiamo fatto questo Governo, per un principio di\u2026 Altro\nILFOGLIO.IT\nManifesto per un governo vivo", "post_text": "In Italia Viva c\u2019\u00e8 una differenza di linguaggio, di stile, di liturgie interne. E di entusiasmo. Noi siamo felici di essere una squadra, non passiamo il tempo a cercare di attaccare il compagno di partito. Non\u2026 Altro viviamo di correnti e di fuoco amico. Abbiamo creato un partito in cui la diarchia uomo donna \u00e8 regola costitutiva, in cui i coordinatori provinciali saranno spesso Millennials, e in cui quando arriva un ventenne la domanda che gli verr\u00e0 fatta non sar\u00e0 \"Con chi stai?\u201d, ma \u201cChe cosa pensi? Che idee hai? Che cosa proponi\u201d. Siamo un\u2019altra cosa rispetto al PD ma il nostro avversario \u00e8 Capitan Fracassa, \u00e8 Salvini, non il PD. Anche per questo abbiamo fatto questo Governo, per un principio di\u2026 Altro", "shared_text": "ILFOGLIO.IT\nManifesto per un governo vivo", "time": "2019-09-30 11:58:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.1.600.314a/s480x480/71906809_23843805581170181_642570194593513472_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=Rs0c8dWt9OwAQnSnldb_y36q6jg59AOGSB8kB2VSwq9zzZSZKQoSVwUqQ&_nc_ht=scontent-cdt1-1.xx&oh=f3e2b479701ade9211ddffe448ee5658&oe=5E8BCCCC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157047354934915&id=113335124914", "link": "https://www.ilfoglio.it/politica/2019/09/30/news/manifesto-per-un-governo-vivo-277280/?fbclid=IwAR1pcIJIJoc1S2ad7gqLLf_DqI-Q76ef87wg794Pi2-Y_Mx4kyO_mrwFYNk"} +{"post_id": "10157048464269915", "text": "La mia intervista al Tg3: no all\u2019aumento dell'IVA, si a Italia Viva", "post_text": "La mia intervista al Tg3: no all\u2019aumento dell'IVA, si a Italia Viva", "shared_text": "", "time": "2019-09-30 11:57:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1346263588865242&id=113335124914", "link": null} +{"post_id": "10157047017169915", "text": "Abbiamo fatto un Governo per mandare a casa Salvini e per non aumentare l\u2019IVA. Adesso non possiamo aumentare l\u2019IVA, punto. Noi non abbiamo fatto polemica sui ministeri, sui sottosegretari, sulle scelte del passato. Ma aumentare l\u2019IVA sarebbe uno schiaffo ai consumatori, specie ai pi\u00f9 poveri. E porterebbe alla recessione. Ecco perch\u00e9 Italia Viva dice NO all\u2019aumento dell\u2019IVA", "post_text": "Abbiamo fatto un Governo per mandare a casa Salvini e per non aumentare l\u2019IVA. Adesso non possiamo aumentare l\u2019IVA, punto. Noi non abbiamo fatto polemica sui ministeri, sui sottosegretari, sulle scelte del passato. Ma aumentare l\u2019IVA sarebbe uno schiaffo ai consumatori, specie ai pi\u00f9 poveri. E porterebbe alla recessione. Ecco perch\u00e9 Italia Viva dice NO all\u2019aumento dell\u2019IVA", "shared_text": "", "time": "2019-09-30 07:56:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157047017169915&id=113335124914", "link": null} +{"post_id": "10157046071274915", "text": "Che squadra questa Fiorentina. E soprattutto che giocatore Franck Rib\u00e9ry. Occhio anche a Castrovilli, \u00e8 gi\u00e0 - giovanissimo - uno dei migliori centrocampisti italiani \ud83d\ude00#MilanFiorentina", "post_text": "Che squadra questa Fiorentina. E soprattutto che giocatore Franck Rib\u00e9ry. Occhio anche a Castrovilli, \u00e8 gi\u00e0 - giovanissimo - uno dei migliori centrocampisti italiani \ud83d\ude00#MilanFiorentina", "shared_text": "", "time": "2019-09-29 22:43:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157046071274915&id=113335124914", "link": null} +{"post_id": "10157042927079915", "text": "Dalla Leopolda 10 mi aspetto un record di numeri, certo. Ma soprattutto mi aspetto un record di idee\n#ItaliaViva #Italia2029", "post_text": "Dalla Leopolda 10 mi aspetto un record di numeri, certo. Ma soprattutto mi aspetto un record di idee\n#ItaliaViva #Italia2029", "shared_text": "", "time": "2019-09-28 19:04:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=677253609451348&id=113335124914", "link": null} +{"post_id": "10157042363439915", "text": "Se davvero il Governo decider\u00e0 di incoraggiare la moneta digitale attraverso sconti fiscali, dovremo fare una cosa in pi\u00f9. Cambiare la norma e abbassare le commissioni sulle carte di credito e di debito, che vanno dimezzate rispetto alle attuali, stabilendo per legge un tetto massimo, senza alcun costo minimo per transazione.", "post_text": "Se davvero il Governo decider\u00e0 di incoraggiare la moneta digitale attraverso sconti fiscali, dovremo fare una cosa in pi\u00f9. Cambiare la norma e abbassare le commissioni sulle carte di credito e di debito, che vanno dimezzate rispetto alle attuali, stabilendo per legge un tetto massimo, senza alcun costo minimo per transazione.", "shared_text": "", "time": "2019-09-28 14:50:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157042363439915&id=113335124914", "link": null} +{"post_id": "10157043070829915", "text": "Ai mondiali di atletica in Qatar, un malore colpisce Jonathan Busby di Aruba a pochi metri dal traguardo. Un atleta della Guinea Biassau, se ne accorge e accompagna l\u2019avversario fino al traguardo, aiutandolo.\n\u00c8\u2026 Altro questo lo Sport. Lo sport quello bello, quello con la s maiuscola. Quello competitivo, certo, come \u00e8 normale che sia, ma nel rispetto degli avversari. Quello in cui l\u2019umanit\u00e0 non \u00e8 un optional.\nUn video bellissimo, uno spot per l\u2019atletica. Buon sabato sera", "post_text": "Ai mondiali di atletica in Qatar, un malore colpisce Jonathan Busby di Aruba a pochi metri dal traguardo. Un atleta della Guinea Biassau, se ne accorge e accompagna l\u2019avversario fino al traguardo, aiutandolo.\n\u00c8\u2026 Altro questo lo Sport. Lo sport quello bello, quello con la s maiuscola. Quello competitivo, certo, come \u00e8 normale che sia, ma nel rispetto degli avversari. Quello in cui l\u2019umanit\u00e0 non \u00e8 un optional.\nUn video bellissimo, uno spot per l\u2019atletica. Buon sabato sera", "shared_text": "", "time": "2019-09-28 11:07:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=461935377997648&id=113335124914", "link": null} +{"post_id": "10157041858174915", "text": "A tutti quelli che dicono: ma cosa propone Italia Viva? Quali sono i contenuti? Qui un primo assaggio sulla nostra posizione sulla legge di Bilancio, tratto dal Sole 24 ore di stamani. Luned\u00ec esce una cosina sul Foglio. E soprattutto tra poco arriva la Leopolda. Buon sabato\nCOMITATIAZIONECIVILE.IT\nMatteo Renzi: \u00abEmergenza crescita, ora o mai pi\u00f9!\u00bb", "post_text": "A tutti quelli che dicono: ma cosa propone Italia Viva? Quali sono i contenuti? Qui un primo assaggio sulla nostra posizione sulla legge di Bilancio, tratto dal Sole 24 ore di stamani. Luned\u00ec esce una cosina sul Foglio. E soprattutto tra poco arriva la Leopolda. Buon sabato", "shared_text": "COMITATIAZIONECIVILE.IT\nMatteo Renzi: \u00abEmergenza crescita, ora o mai pi\u00f9!\u00bb", "time": "2019-09-28 09:25:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c1.0.474.248a/71928472_23843799634100181_6361874999589994496_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=ulKhMTSq0fwAQnacKbUSRTxak8nzajZI_SE85rSGeVgNrPqtMWsQ6UAAQ&_nc_ht=scontent-cdt1-1.xx&oh=02bd9541d2e5cf2911d965fd0d04bae2&oe=5E4B84C5", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157041858174915&id=113335124914", "link": "https://www.comitatiazionecivile.it/emergenza_crescita_ora_o_mai_matteo_renzi?fbclid=IwAR0vSvSrZlbo9i-edEod2Cg5-dTnCqU_hYR4il2sUnPTjDX2VbaBLG2Ihkk"} +{"post_id": "10157039324494915", "text": "Le immagini dei ragazzi che in tutto il mondo colorano di verde il pianeta allargano il cuore. Ora tocca alla politica fare sul serio. Noi alla Leopolda presenteremo il nostro progetto, concreto e fattibile. Perch\u00e9 non si pu\u00f2 solo applaudire i ragazzi e dal giorno dopo tornare a far finta di nulla.", "post_text": "Le immagini dei ragazzi che in tutto il mondo colorano di verde il pianeta allargano il cuore. Ora tocca alla politica fare sul serio. Noi alla Leopolda presenteremo il nostro progetto, concreto e fattibile. Perch\u00e9 non si pu\u00f2 solo applaudire i ragazzi e dal giorno dopo tornare a far finta di nulla.", "shared_text": "", "time": "2019-09-27 10:11:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/70986803_10157039324459915_4142357938217943040_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=JCscafU32u4AQnmG-6oaSXCCYhM16jyBAIbV_IZo47xg-JdnKoDGzs5Tg&_nc_ht=scontent-cdt1-1.xx&oh=8a200e46604e463e502890e8537197e7&oe=5E7C6578", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157039324494915&id=113335124914", "link": null} +{"post_id": "10157039261434915", "text": "Ho sempre detto che rispetto i magistrati e aspetto le sentenze definitive, quella della Cassazione. Confermo questo giudizio. Ma vedere che qualche magistrato della procura della mia citt\u00e0 da anni indaghi sull\u2019ipotesi che Berlusconi sia responsabile persino delle stragi mafiose o dell\u2019attentato a Maurizio Costanzo mi lascia attonito. A differenza\u2026 Altro di quanto scrivono taluni giornali non ho mai governato con Berlusconi e mai Forza Italia ha votato la fiducia al mio governo (a tutti gli altri si, a me no): dunque posso parlare libero, da avversario politico. Berlusconi va criticato e contrastato sul piano della politica. Ma sostenere 25 anni dopo, senza uno straccio di prova, che egli sia il mandante dell\u2019attentato mafioso contro Maurizio Costanzo significa fare un pessimo servizio alla credibilit\u00e0 delle Istituzioni italiane. Di tutte le Istituzioni.", "post_text": "Ho sempre detto che rispetto i magistrati e aspetto le sentenze definitive, quella della Cassazione. Confermo questo giudizio. Ma vedere che qualche magistrato della procura della mia citt\u00e0 da anni indaghi sull\u2019ipotesi che Berlusconi sia responsabile persino delle stragi mafiose o dell\u2019attentato a Maurizio Costanzo mi lascia attonito. A differenza\u2026 Altro di quanto scrivono taluni giornali non ho mai governato con Berlusconi e mai Forza Italia ha votato la fiducia al mio governo (a tutti gli altri si, a me no): dunque posso parlare libero, da avversario politico. Berlusconi va criticato e contrastato sul piano della politica. Ma sostenere 25 anni dopo, senza uno straccio di prova, che egli sia il mandante dell\u2019attentato mafioso contro Maurizio Costanzo significa fare un pessimo servizio alla credibilit\u00e0 delle Istituzioni italiane. Di tutte le Istituzioni.", "shared_text": "", "time": "2019-09-27 09:26:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157039261434915&id=113335124914", "link": null} +{"post_id": "10157038260739915", "text": "La prima canzone di Tommaso Paradiso dopo la \u201cscissione\u201d dei TheGiornalisti \u00e8 veramente bella: non avere paura. No, non avere paura. Bellissima", "post_text": "La prima canzone di Tommaso Paradiso dopo la \u201cscissione\u201d dei TheGiornalisti \u00e8 veramente bella: non avere paura. No, non avere paura. Bellissima", "shared_text": "", "time": "2019-09-26 23:24:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157038260739915&id=113335124914", "link": null} +{"post_id": "10157038024389915", "text": "Il governo, Italia Viva, il Family Act e le misure per la natalit\u00e0: la mia intervista di poco fa al Tg1", "post_text": "Il governo, Italia Viva, il Family Act e le misure per la natalit\u00e0: la mia intervista di poco fa al Tg1", "shared_text": "", "time": "2019-09-26 21:48:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=499557037494000&id=113335124914", "link": null} +{"post_id": "10157037961214915", "text": "Mi dicono che a Milano ci sia il pienone per la prima di #ItaliaViva. Alla faccia di chi dice che siamo solo un\u2019operazione di palazzo. Un abbraccio a tutti: ci sar\u00e0 da divertirsi", "post_text": "Mi dicono che a Milano ci sia il pienone per la prima di #ItaliaViva. Alla faccia di chi dice che siamo solo un\u2019operazione di palazzo. Un abbraccio a tutti: ci sar\u00e0 da divertirsi", "shared_text": "", "time": "2019-09-26 21:12:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/71206368_10157037961154915_8948366912979468288_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=7Qpyv75x1gIAQmpD_c3H5sIjHBtbze9BUFfU859SecG0_abezd69wBPFw&_nc_ht=scontent-cdt1-1.xx&oh=f55632aaa52261be4de319c8d3073af1&oe=5E408CC8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157037961214915&id=113335124914", "link": null} +{"post_id": "2462280397426879", "text": "Vi ripropongo l'intervista che Myrta Merlino mi ha fatto a L'Aria che tira su La 7 qualche ora fa. Leggo come sempre volentieri i vostri commenti.", "post_text": "Vi ripropongo l'intervista che Myrta Merlino mi ha fatto a L'Aria che tira su La 7 qualche ora fa. Leggo come sempre volentieri i vostri commenti.", "shared_text": "", "time": "2019-09-26 15:19:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2462280397426879&id=113335124914", "link": null} +{"post_id": "10157035435629915", "text": "Ho ricevuto molte critiche perch\u00e9 ieri ho scherzato sull\u2019imitazione che mi ha fatto Striscia La Notizia. Effettivamente ho sottovalutato la portata potenzialmente devastante del deepfake, la nuova raffinata tecnica di fake news. Sono da anni al centro di valanghe di diffamazioni, insulti e notizie false: molte di queste, peraltro, sono oggi al\u2026 Altro vaglio dei tribunali. Ho scherzato e sorriso sul finto fuorionda e sono certo che la redazione di Striscia sapr\u00e0 utilizzare bene questo strumento. Prendo l\u2019impegno a vivere con leggerezza le critiche ma non sottovalutare mai le conseguenze pericolose del deepfake. Buona serata e grazie per le critiche costruttive: mi aiutano a fare meglio", "post_text": "Ho ricevuto molte critiche perch\u00e9 ieri ho scherzato sull\u2019imitazione che mi ha fatto Striscia La Notizia. Effettivamente ho sottovalutato la portata potenzialmente devastante del deepfake, la nuova raffinata tecnica di fake news. Sono da anni al centro di valanghe di diffamazioni, insulti e notizie false: molte di queste, peraltro, sono oggi al\u2026 Altro vaglio dei tribunali. Ho scherzato e sorriso sul finto fuorionda e sono certo che la redazione di Striscia sapr\u00e0 utilizzare bene questo strumento. Prendo l\u2019impegno a vivere con leggerezza le critiche ma non sottovalutare mai le conseguenze pericolose del deepfake. Buona serata e grazie per le critiche costruttive: mi aiutano a fare meglio", "shared_text": "", "time": "2019-09-25 20:30:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157035435629915&id=113335124914", "link": null} +{"post_id": "10157034180394915", "text": "Una delle caratteristiche pi\u00f9 forti di Italia Viva \u00e8 di essere il primo partito femminista italiano. La politica deve essere pi\u00f9 un sostantivo femminile. Non \u00e8 solo un problema di quote rosa, che pure vanno\u2026 Altro difese: \u00e8 un problema di contenuto, di stile, di priorit\u00e0. E coinvolge la maternit\u00e0 e la parit\u00e0 di salario, la lotta alla violenza e uno sguardo diverso sull\u2019economia. Italia Viva segna con la diarchia uomo donna una rivoluzione nella politica italiana, spesso maschilista e retrograda. Ne ho parlato con Marina Terragni oggi sul QN. Mi piacerebbe leggere i commenti, non solo i commenti delle donne. Buona giornata\nQUOTIDIANO.NET\nRenzi il femminista: la politica \u00e8 donna - QuotidianoNet", "post_text": "Una delle caratteristiche pi\u00f9 forti di Italia Viva \u00e8 di essere il primo partito femminista italiano. La politica deve essere pi\u00f9 un sostantivo femminile. Non \u00e8 solo un problema di quote rosa, che pure vanno\u2026 Altro difese: \u00e8 un problema di contenuto, di stile, di priorit\u00e0. E coinvolge la maternit\u00e0 e la parit\u00e0 di salario, la lotta alla violenza e uno sguardo diverso sull\u2019economia. Italia Viva segna con la diarchia uomo donna una rivoluzione nella politica italiana, spesso maschilista e retrograda. Ne ho parlato con Marina Terragni oggi sul QN. Mi piacerebbe leggere i commenti, non solo i commenti delle donne. Buona giornata", "shared_text": "QUOTIDIANO.NET\nRenzi il femminista: la politica \u00e8 donna - QuotidianoNet", "time": "2019-09-25 08:19:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.12.700.366a/s480x480/71358806_23843789240570181_3736113890975547392_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=mvDhIIfFr0MAQmRiayme6EDGKVhu9H_v3FgJ_FR6A0siwVDXwmt0D-MEA&_nc_ht=scontent-cdt1-1.xx&oh=b36ebb0a422d914b63fedcaeea9182a2&oe=5E88D453", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157034180394915&id=113335124914", "link": "https://www.quotidiano.net/politica/renzi-nuovo-partito-1.4800415?fbclid=IwAR1CFIsROxGHrxU6Kt9F5zhdFO1sUL7HKi6bar3padgbdTJRNH6oFJTBtA8"} +{"post_id": "10157031793524915", "text": "Ieri si \u00e8 svolto un vertice europeo sull\u2019immigrazione tra i ministri dell\u2019Interno. Dopo 15 mesi di assenza di Salvini l\u2019Italia \u00e8 tornata al tavolo. E i primi risultati sono arrivati. Per cambiare le cose serve seriet\u00e0, non i proclami di Capitan Fracassa", "post_text": "Ieri si \u00e8 svolto un vertice europeo sull\u2019immigrazione tra i ministri dell\u2019Interno. Dopo 15 mesi di assenza di Salvini l\u2019Italia \u00e8 tornata al tavolo. E i primi risultati sono arrivati. Per cambiare le cose serve seriet\u00e0, non i proclami di Capitan Fracassa", "shared_text": "", "time": "2019-09-24 09:14:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/71243600_10157031793504915_5055127299951689728_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=V8Wv5BNJU9EAQm9pb4nGatkTkEyLYTVOZ_MB-owhM8GmC8mD7DAQiTdlg&_nc_ht=scontent-cdt1-1.xx&oh=5d16d17a965d07a435ebbd846b459302&oe=5E4D23D9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157031793524915&id=113335124914", "link": null} +{"post_id": "10157030748484915", "text": "Il Boss compie 70 anni. Lo ricordo qualche anno fa a Firenze dopo tre ore di concerto sotto la pioggia salutarmi in albergo fresco come un ragazzino. La sua migliore? Per me Born to Run. Ma \u00e8 una bella gara", "post_text": "Il Boss compie 70 anni. Lo ricordo qualche anno fa a Firenze dopo tre ore di concerto sotto la pioggia salutarmi in albergo fresco come un ragazzino. La sua migliore? Per me Born to Run. Ma \u00e8 una bella gara", "shared_text": "", "time": "2019-09-23 22:21:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/71065896_10157030748454915_2187519756880314368_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=P8GxhjB5LbQAQlX8THxO0-auGEGZDDGJhTqx_r4JDuA6ERreGvE1eWm5w&_nc_ht=scontent-cdt1-1.xx&oh=1c1e61e7e9e6a4dafed1e956e7724eac&oe=5E80845A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157030748484915&id=113335124914", "link": null} +{"post_id": "10157030544489915", "text": "Gli haters che stanno attaccando Emma Marrone si devono soltanto vergognare. Emma \u00e8 una grande artista. E per la sua battaglia personale merita solo affetto e sostegno, non la cattiveria di chi odia", "post_text": "Gli haters che stanno attaccando Emma Marrone si devono soltanto vergognare. Emma \u00e8 una grande artista. E per la sua battaglia personale merita solo affetto e sostegno, non la cattiveria di chi odia", "shared_text": "", "time": "2019-09-23 21:02:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/71169041_10157030544439915_5708481380036378624_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=rjRfjRVf9WMAQk6tsIq101EXFO-gKrjyEkR3ZgKNu8p5275Q6wXTZvksg&_nc_ht=scontent-cdt1-1.xx&oh=e0a1a25841c2f7583ecca2bcd0d3551e&oe=5E7A0CE6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157030544489915&id=113335124914", "link": null} +{"post_id": "10157030347939915", "text": "L\u2019accordo di Malta sull\u2019immigrazione \u00e8 un passo in avanti per l\u2019Europa. Ma non basta. La solidariet\u00e0 serve sempre. E chi non accoglie i migranti deve perdere i contributi europei. Assurdo continuare a pagare Orban coi soldi italiani", "post_text": "L\u2019accordo di Malta sull\u2019immigrazione \u00e8 un passo in avanti per l\u2019Europa. Ma non basta. La solidariet\u00e0 serve sempre. E chi non accoglie i migranti deve perdere i contributi europei. Assurdo continuare a pagare Orban coi soldi italiani", "shared_text": "", "time": "2019-09-23 19:46:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157030347939915&id=113335124914", "link": null} +{"post_id": "10157030191594915", "text": "66 Paesi scelgono di aderire al Patto per il Clima delle Nazioni Unite. Zero emissioni entro il 2050. Orgoglioso di aver firmato a nome dell\u2019Italia gli accordi di Parigi: l\u2019ambiente come priorit\u00e0 per i nostri figli", "post_text": "66 Paesi scelgono di aderire al Patto per il Clima delle Nazioni Unite. Zero emissioni entro il 2050. Orgoglioso di aver firmato a nome dell\u2019Italia gli accordi di Parigi: l\u2019ambiente come priorit\u00e0 per i nostri figli", "shared_text": "", "time": "2019-09-23 18:41:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/71029535_10157030190514915_4238033527351803904_n.png.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=IWsc_2n3tToAQlaYU5AwmWvKtn5O1IFj1YYDBxzBCDIb_MyghWbSPZwRg&_nc_ht=scontent-cdt1-1.xx&oh=c3375e6e11fd67bd9abbd88f06e83cf3&oe=5E89A648", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157030191594915&id=113335124914", "link": null} +{"post_id": "10157029480939915", "text": "Un grande piano di investimenti sostenibili \u00e8 necessario per l\u2019Italia e per l\u2019Europa. Farlo senza alzare le tasse \u00e8 un dovere politico per tutti. Italia Viva presenter\u00e0 le proprie proposte per un grande Piano Verde alla Leopolda. Chi vuole darci una mano per cambiare la politica italiana \u00e8 il benvenuto.\nCOMITATIAZIONECIVILE.IT\nUna nuova casa. Innovativa, giovane e femminista.", "post_text": "Un grande piano di investimenti sostenibili \u00e8 necessario per l\u2019Italia e per l\u2019Europa. Farlo senza alzare le tasse \u00e8 un dovere politico per tutti. Italia Viva presenter\u00e0 le proprie proposte per un grande Piano Verde alla Leopolda. Chi vuole darci una mano per cambiare la politica italiana \u00e8 il benvenuto.", "shared_text": "COMITATIAZIONECIVILE.IT\nUna nuova casa. Innovativa, giovane e femminista.", "time": "2019-09-23 12:37:15", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCBXdbAxCx9guYt&w=474&h=248&url=https%3A%2F%2Fd3n8a8pro7vhmx.cloudfront.net%2Fcomitaticivici%2Fpages%2F236%2Fmeta_images%2Foriginal%2FIcona_FB_giusta.png%3F1568703509&cfs=1&jq=75&sx=1&sy=0&sw=474&sh=248&ext=jpg&_nc_hash=AQC6ajjj0_ySoqXj", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157029480939915&id=113335124914", "link": "https://bit.ly/italiavivaappello?fbclid=IwAR1JBcSyRzA2eRsbTT75rl4l6yt4htwd8w2W3Am7eOgnCx8Pp1WRltIFzhU"} +{"post_id": "10157029339644915", "text": "Vi ripropongo la parte della puntata di ieri di Non \u00e8 l'arena con l'intervista di Massimo Giletti. Leggo sempre volentieri i vostri commenti", "post_text": "Vi ripropongo la parte della puntata di ieri di Non \u00e8 l'arena con l'intervista di Massimo Giletti. Leggo sempre volentieri i vostri commenti", "shared_text": "", "time": "2019-09-23 11:00:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=241833660058373&id=113335124914", "link": null} +{"post_id": "10157028290679915", "text": "Grazie a tutti per i commenti sulla partecipazione a Non \u00e8 l\u2019Arena, su La7. Sono stati giorni intensi tra Roma, Pechino, Shangai e oggi Firenze. Ma Italia Viva \u00e8 partita forte, pi\u00f9 forte del previsto. Chi vuole\u2026 Altro aderire pu\u00f2 farlo qui (http://bit.ly/italiavivaappello), chi vuole aiutarci pu\u00f2 cliccare qui (http://bit.ly/italiavivasostieni), chi vuole proporci idee o temi qui (http://bit.ly/italiavivaproponi).\nSar\u00e0 un\u2019avventura affascinante", "post_text": "Grazie a tutti per i commenti sulla partecipazione a Non \u00e8 l\u2019Arena, su La7. Sono stati giorni intensi tra Roma, Pechino, Shangai e oggi Firenze. Ma Italia Viva \u00e8 partita forte, pi\u00f9 forte del previsto. Chi vuole\u2026 Altro aderire pu\u00f2 farlo qui (http://bit.ly/italiavivaappello), chi vuole aiutarci pu\u00f2 cliccare qui (http://bit.ly/italiavivasostieni), chi vuole proporci idee o temi qui (http://bit.ly/italiavivaproponi).\nSar\u00e0 un\u2019avventura affascinante", "shared_text": "", "time": "2019-09-22 22:37:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/69382655_10157028290624915_2120982084875976704_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=ZrD0rru9wqwAQmz4e_Kehxj2wjvVdPEHpm9FUtW-vXc3v8FNvrteyHlpw&_nc_ht=scontent-cdt1-1.xx&oh=e45661ef1677b853a6f615b33ff7d1e9&oe=5E48AA96", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157028290679915&id=113335124914", "link": "https://bit.ly/italiavivaappello?fbclid=IwAR1bCwBgDeWxeuoCOIXNZtWAw1uoysZXFXsDfKr2x16tBJ7UCf0IJAPQD_Q"} +{"post_id": "10157027962664915", "text": "Una bella discussione sull'intelligenza artificiale e il rapporto tra innovazione tecnologica e nuovi lavori con Reid Hoffman, fondatore di LinkedIn ed uno dei pi\u00f9 grandi esperti mondiali di tecnologia: un convegno della Stanford University a Palazzo Vecchio, nel cuore della mia meravigliosa Firenze", "post_text": "Una bella discussione sull'intelligenza artificiale e il rapporto tra innovazione tecnologica e nuovi lavori con Reid Hoffman, fondatore di LinkedIn ed uno dei pi\u00f9 grandi esperti mondiali di tecnologia: un convegno della Stanford University a Palazzo Vecchio, nel cuore della mia meravigliosa Firenze", "shared_text": "", "time": "2019-09-22 20:06:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/70651958_10157027962234915_5491586721294319616_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=R266pbWb7EcAQkUMTfEBZ5PXapzwNYRgOEhkaBdWbZchF2ptZ2ejH06Sw&_nc_ht=scontent-cdt1-1.xx&oh=83b0a47bdefc7dece97da3bc5a301f91&oe=5E7DA161", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157027962664915&id=113335124914", "link": null} +{"post_id": "10157027437334915", "text": "Doppietta Ferrari. Strepitosa la Rossa! Peccato che ci siamo svegliati tardi per il titolo piloti. Ma che meraviglia anche oggi a Singapore.", "post_text": "Doppietta Ferrari. Strepitosa la Rossa! Peccato che ci siamo svegliati tardi per il titolo piloti. Ma che meraviglia anche oggi a Singapore.", "shared_text": "", "time": "2019-09-22 16:31:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157027437334915&id=113335124914", "link": null} +{"post_id": "10157026828309915", "text": "La mia intervista al Messaggero, Mattino e al Gazzettino. Parliamo di FamilyAct, di proposte verdi senza aumentare le tasse, di innovazione. E di un partito \u201cdecorrentizzato\u201d: per ogni tesserato, piantiamo un albero. Viva l\u2019Italia Viva\nCOMITATIAZIONECIVILE.IT\nRenzi: Un partito giovane, fresco, senza correnti. E per ogni tesserato piantiamo un albero", "post_text": "La mia intervista al Messaggero, Mattino e al Gazzettino. Parliamo di FamilyAct, di proposte verdi senza aumentare le tasse, di innovazione. E di un partito \u201cdecorrentizzato\u201d: per ogni tesserato, piantiamo un albero. Viva l\u2019Italia Viva", "shared_text": "COMITATIAZIONECIVILE.IT\nRenzi: Un partito giovane, fresco, senza correnti. E per ogni tesserato piantiamo un albero", "time": "2019-09-22 09:33:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c1.0.474.248a/71346395_23843779772880181_1464544639179554816_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=U-JEaZW6CXQAQkMQ7qIf2X-B3SKNmp-IhKxBNVY5lwPI1F0U5mBDtUvDQ&_nc_ht=scontent-cdt1-1.xx&oh=15dc6d5ef52d8a83b2067fdc9665be02&oe=5E89CB80", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157026828309915&id=113335124914", "link": "https://www.comitatiazionecivile.it/renzi_partito_giovane_fresco_senza_correnti_ogni_tesserato_piantiamo_albero?fbclid=IwAR344XTXzZ_yrgeQcl1io7tf7SPqpyOSlt_P2c2Ywij1xFno_ViMALwKRQY"} +{"post_id": "10157025614644915", "text": "Oggi i sovranisti e nazionalisti della destra italiana hanno acclamato un leader straniero, l\u2019ungherese Orban, che non accetta di darci una mano sui migranti. Rifiuta la solidariet\u00e0, il signor Orban. Ma ogni anno riceve miliardi dai contributenti italiani perch\u00e9 quando c\u2019\u00e8 da prendere l\u2019Ungheria prende. Quando c\u2019\u00e8 da dare invece loro alzano i muri.\u2026 Altro E la destra sovranista e nazionalista italiana li acclama e fa il tifo per l\u2019Ungheria, contro di noi.\nNoi abbiamo un\u2019altra idea non solo di cosa sia l\u2019Europa, ma soprattutto di che cosa significhi difendere la Patria. Si chiamano Fratelli d\u2019Italia ma sono solo patrioti. Patrioti ungheresi.", "post_text": "Oggi i sovranisti e nazionalisti della destra italiana hanno acclamato un leader straniero, l\u2019ungherese Orban, che non accetta di darci una mano sui migranti. Rifiuta la solidariet\u00e0, il signor Orban. Ma ogni anno riceve miliardi dai contributenti italiani perch\u00e9 quando c\u2019\u00e8 da prendere l\u2019Ungheria prende. Quando c\u2019\u00e8 da dare invece loro alzano i muri.\u2026 Altro E la destra sovranista e nazionalista italiana li acclama e fa il tifo per l\u2019Ungheria, contro di noi.\nNoi abbiamo un\u2019altra idea non solo di cosa sia l\u2019Europa, ma soprattutto di che cosa significhi difendere la Patria. Si chiamano Fratelli d\u2019Italia ma sono solo patrioti. Patrioti ungheresi.", "shared_text": "", "time": "2019-09-21 20:45:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157025614644915&id=113335124914", "link": null} +{"post_id": "10157025367009915", "text": "Roma. L'autista di un bus rimprovera dei ragazzi. Loro, minorenni, lo pestano in 8. Folle! Quei ragazzi vanno puniti. E dobbiamo \"riscoprire una nuova stagione dei doveri\", come diceva Moro. Basta con la logica del tutto dovuto: doveri, non solo diritti. E chi sbaglia deve pagare", "post_text": "Roma. L'autista di un bus rimprovera dei ragazzi. Loro, minorenni, lo pestano in 8. Folle! Quei ragazzi vanno puniti. E dobbiamo \"riscoprire una nuova stagione dei doveri\", come diceva Moro. Basta con la logica del tutto dovuto: doveri, non solo diritti. E chi sbaglia deve pagare", "shared_text": "", "time": "2019-09-21 19:11:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157025367009915&id=113335124914", "link": null} +{"post_id": "10157025204799915", "text": "Mamma mia, la #Ferrari sembra rinata. E questo Leclerc fa impressione. Ancora in pole, stavolta a Singapore", "post_text": "Mamma mia, la #Ferrari sembra rinata. E questo Leclerc fa impressione. Ancora in pole, stavolta a Singapore", "shared_text": "", "time": "2019-09-21 17:53:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157025204799915&id=113335124914", "link": null} +{"post_id": "10157024343359915", "text": "21 settembre, San Matteo. Auguri a tutti gli omonimi e alla citt\u00e0 di Salerno! Per me questa \u00e8 una data particolare.\nEsattamente il 21 settembre di dieci anni fa, nel 2009, facevo la scelta pi\u00f9 difficile della\u2026 Altro mia intera esperienza politica. Parlando in consiglio comunale, infatti, annunciai a sorpresa la decisione di pedonalizzare Piazza del Duomo a Firenze. Pochi ritenevano possibile questa soluzione, giudicata ardita e temeraria dai pi\u00f9. E molti temevano le reazioni conservatrice dei signori dello status quo, di chi viveva di rendita.\nQualche settimana dopo la pedonalizzazione era realt\u00e0. Dieci anni dopo nessun fiorentino tornerebbe indietro per far passare di nuovo diecimila motorini e auto accanto al Battistero. In piazza adesso si sente il ritmo dei passi e non i clacson. Firenze e pi\u00f9 libera e verde: missione compiuta.\nLa vita \u00e8 fatta di scelte coraggiose.\nBuon San Matteo a tutti, un abbraccio da Shangai", "post_text": "21 settembre, San Matteo. Auguri a tutti gli omonimi e alla citt\u00e0 di Salerno! Per me questa \u00e8 una data particolare.\nEsattamente il 21 settembre di dieci anni fa, nel 2009, facevo la scelta pi\u00f9 difficile della\u2026 Altro mia intera esperienza politica. Parlando in consiglio comunale, infatti, annunciai a sorpresa la decisione di pedonalizzare Piazza del Duomo a Firenze. Pochi ritenevano possibile questa soluzione, giudicata ardita e temeraria dai pi\u00f9. E molti temevano le reazioni conservatrice dei signori dello status quo, di chi viveva di rendita.\nQualche settimana dopo la pedonalizzazione era realt\u00e0. Dieci anni dopo nessun fiorentino tornerebbe indietro per far passare di nuovo diecimila motorini e auto accanto al Battistero. In piazza adesso si sente il ritmo dei passi e non i clacson. Firenze e pi\u00f9 libera e verde: missione compiuta.\nLa vita \u00e8 fatta di scelte coraggiose.\nBuon San Matteo a tutti, un abbraccio da Shangai", "shared_text": "", "time": "2019-09-21 08:52:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/70466820_10157024343334915_3175197093467783168_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=CHbGmezPm44AQkHYRmHX0qvrh9kCUL7QSgWbuVG9IaQhkYNZiasjgZ0pg&_nc_ht=scontent-cdt1-1.xx&oh=c0bbb52b15086c5e848697ccfb416267&oe=5E495B39", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157024343359915&id=113335124914", "link": null} +{"post_id": "10157022182004915", "text": "Molti commentatori che parlano di Italia Viva insistono su un concetto stravagante: staccare la spina al Governo. Dimenticano che la spina noi l\u2019abbiamo attaccata, un mese fa, contro Salvini e contro chi voleva andare a elezioni spingendo l\u2019Italia in recessione e ai margini dell\u2019Europa. Eppure il pregiudizio \u00e8 il solito: vogliono condizionare il\u2026 Altro Governo. Noi abbiamo un\u2019ambizione molto pi\u00f9 grande: Vogliamo condizionare il futuro. E per questo alla Leopolda proveremo a immaginare l\u2019Italia dei prossimi 10 anni, non dei prossimi 10 giorni. Vogliamo cambiare le forme della politica cominciando dalla presenza delle donne. E vogliamo farlo assieme a tante persone che non devono iscriversi alle\u2026 Altro", "post_text": "Molti commentatori che parlano di Italia Viva insistono su un concetto stravagante: staccare la spina al Governo. Dimenticano che la spina noi l\u2019abbiamo attaccata, un mese fa, contro Salvini e contro chi voleva andare a elezioni spingendo l\u2019Italia in recessione e ai margini dell\u2019Europa. Eppure il pregiudizio \u00e8 il solito: vogliono condizionare il\u2026 Altro Governo. Noi abbiamo un\u2019ambizione molto pi\u00f9 grande: Vogliamo condizionare il futuro. E per questo alla Leopolda proveremo a immaginare l\u2019Italia dei prossimi 10 anni, non dei prossimi 10 giorni. Vogliamo cambiare le forme della politica cominciando dalla presenza delle donne. E vogliamo farlo assieme a tante persone che non devono iscriversi alle\u2026 Altro", "shared_text": "", "time": "2019-09-20 10:52:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157022182004915&id=113335124914", "link": null} +{"post_id": "10157020958339915", "text": "Riaccendo il cellulare dopo un volo e trovo le news: D\u2019Alema dice che io sono finito, Salvini dice che io sono ipocrita. Con persone del genere bisogna avere molta pazienza e tanta umanit\u00e0: sono ossessionati, entrambi.", "post_text": "Riaccendo il cellulare dopo un volo e trovo le news: D\u2019Alema dice che io sono finito, Salvini dice che io sono ipocrita. Con persone del genere bisogna avere molta pazienza e tanta umanit\u00e0: sono ossessionati, entrambi.", "shared_text": "", "time": "2019-09-19 20:33:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157020958339915&id=113335124914", "link": null} +{"post_id": "10157020439229915", "text": "Per la terza volta consecutiva Bebe Vio \u00e8 campionessa mondiale paralimpica. Che donna ragazzi! E che onore averla avuta come volto della bella Italia da Obama tre anni fa!\nBrava Bebe, orgogliosi di te, felici del tuo sorriso", "post_text": "Per la terza volta consecutiva Bebe Vio \u00e8 campionessa mondiale paralimpica. Che donna ragazzi! E che onore averla avuta come volto della bella Italia da Obama tre anni fa!\nBrava Bebe, orgogliosi di te, felici del tuo sorriso", "shared_text": "", "time": "2019-09-19 15:48:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/70391024_10157020439194915_3800648390233030656_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=n3s6y9x0VHsAQkgjBq_sCfOFgh0yZnr4xlT6ltb2HZD018HWblqOrDckw&_nc_ht=scontent-cdt1-1.xx&oh=dfba482897ef54af28ee0a9e9743713b&oe=5E48BA71", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157020439229915&id=113335124914", "link": null} +{"post_id": "10157020328484915", "text": "L\u2019Enews di oggi. Ci vediamo alla Leopolda.\nE chi vuole aderire a ITALIA VIVA qui trova il link bit.ly/italiavivaappello\nMATTEORENZI.IT\nEnews 591, gioved\u00ec 19 settembre 2019 - Matteo Renzi", "post_text": "L\u2019Enews di oggi. Ci vediamo alla Leopolda.\nE chi vuole aderire a ITALIA VIVA qui trova il link bit.ly/italiavivaappello", "shared_text": "MATTEORENZI.IT\nEnews 591, gioved\u00ec 19 settembre 2019 - Matteo Renzi", "time": "2019-09-19 14:43:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.17.500.262a/s480x480/71280549_23843771766390181_2261469670559186944_n.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=c6XPonVOAtkAQn-s1ft0Px2mObm_tadDxa_cwUNHAl_vohRlktzughD4A&_nc_ht=scontent-cdt1-1.xx&oh=8bc02855ebb946c91ae93fb8ce8c6067&oe=5E7EBA5E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157020328484915&id=113335124914", "link": "https://bit.ly/italiavivaappello?fbclid=IwAR2nEbsVHmJNQzDxxThQYjviZ08OlRfGQKgnaYAzzy8on1_wKx9XKlwPRFU"} +{"post_id": "10157019924324915", "text": "Giancarlo Siani oggi avrebbe compiuto 60 anni. La camorra lo ha ucciso a Napoli perch\u00e9 un giornalista scomodo andava eliminato. Oggi il fratello Paolo scrive questo articolo (\u2026 Altrohttps://napoli.repubblica.it/cronaca/2019/09/19/news/siani_oggi_avrebbe_60_anni_la_lettera_del_fratello_caro_giancarlo_mi_manchi_-236361471/) che mi commuove e mi fa venire i brividi. Un abbraccio alla famiglia Siani, un abbraccio a tutte le vittime delle mafie, del terrorismo, della criminalit\u00e0. E che l\u2019esempio di Giancarlo Siani aiuti tutti noi, specie i pi\u00f9 giovani, a vivere nella libert\u00e0 delle persone vere.", "post_text": "Giancarlo Siani oggi avrebbe compiuto 60 anni. La camorra lo ha ucciso a Napoli perch\u00e9 un giornalista scomodo andava eliminato. Oggi il fratello Paolo scrive questo articolo (\u2026 Altrohttps://napoli.repubblica.it/cronaca/2019/09/19/news/siani_oggi_avrebbe_60_anni_la_lettera_del_fratello_caro_giancarlo_mi_manchi_-236361471/) che mi commuove e mi fa venire i brividi. Un abbraccio alla famiglia Siani, un abbraccio a tutte le vittime delle mafie, del terrorismo, della criminalit\u00e0. E che l\u2019esempio di Giancarlo Siani aiuti tutti noi, specie i pi\u00f9 giovani, a vivere nella libert\u00e0 delle persone vere.", "shared_text": "", "time": "2019-09-19 10:25:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/71140185_10157019924304915_734663381570551808_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=alPjqTg97HkAQn7gQ1Z44E7_kJHuZcA9vh_zrxb2y3NhHptS7TEkfW58Q&_nc_ht=scontent-cdt1-1.xx&oh=228c8c1dd372b2bcc96c30dca27701f2&oe=5E849005", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157019924324915&id=113335124914", "link": "https://napoli.repubblica.it/cronaca/2019/09/19/news/siani_oggi_avrebbe_60_anni_la_lettera_del_fratello_caro_giancarlo_mi_manchi_-236361471/?fbclid=IwAR3USoa25TbPjuwMXrvWVuAsDc5DH4FhIdU7Opp1bRZr0DIiI_mPNpPMQys"} +{"post_id": "10157018155584915", "text": "Le tre parole chiave di Italia Viva? Crescita, educazione e futuro. Ma ce n'\u00e8 una ancora pi\u00f9 importante ed \u00e8 la parola doveri. La mia intervista di oggi al Tg2.\nWWW.COMITATIAZIONECIVILE.IT\nIntervista al Tg2 del 18 settembre 2019", "post_text": "Le tre parole chiave di Italia Viva? Crescita, educazione e futuro. Ma ce n'\u00e8 una ancora pi\u00f9 importante ed \u00e8 la parola doveri. La mia intervista di oggi al Tg2.", "shared_text": "WWW.COMITATIAZIONECIVILE.IT\nIntervista al Tg2 del 18 settembre 2019", "time": "2019-09-18 15:59:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2465183337046678&id=113335124914", "link": "http://www.comitatiazionecivile.it/?fbclid=IwAR1cHMj6tDVEJWmAqejZbPkuD3sPPL1ImW_3rX4JqaN3hGLpcrvBP-AxFTw"} +{"post_id": "430098794279740", "text": "Buongiorno. Ecco la puntata di Porta a Porta di ieri. Contento dell\u2019ottima audience e dei vostri commenti. Viva l\u2019Italia viva!", "post_text": "Buongiorno. Ecco la puntata di Porta a Porta di ieri. Contento dell\u2019ottima audience e dei vostri commenti. Viva l\u2019Italia viva!", "shared_text": "", "time": "2019-09-18 10:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=430098794279740&id=113335124914", "link": null} +{"post_id": "10157016755309915", "text": "Grazie a chi ha seguito e commentato Porta a Porta. \u00c8 stata una giornata bellissima, piena di emozioni e di proposte. Ci siamo visti con i parlamentari di #ItaliaViva (festeggiando il compleanno di Lucia Annibali\ud83c\udf39) e domani ufficializzeremo i gruppi. Poi si parte tra la gente.\nGrazie del vostro affetto, buonanotte", "post_text": "Grazie a chi ha seguito e commentato Porta a Porta. \u00c8 stata una giornata bellissima, piena di emozioni e di proposte. Ci siamo visti con i parlamentari di #ItaliaViva (festeggiando il compleanno di Lucia Annibali\ud83c\udf39) e domani ufficializzeremo i gruppi. Poi si parte tra la gente.\nGrazie del vostro affetto, buonanotte", "shared_text": "", "time": "2019-09-18 00:42:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157016755309915&id=113335124914", "link": null} +{"post_id": "10157016300194915", "text": "Vi aspetto stasera su Rai 1, alle 23.25, dove sar\u00f2 ospite di Bruno Vespa a Porta a Porta", "post_text": "Vi aspetto stasera su Rai 1, alle 23.25, dove sar\u00f2 ospite di Bruno Vespa a Porta a Porta", "shared_text": "", "time": "2019-09-17 20:47:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/71238729_10157016292124915_4088736920794824704_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=vlvuGkmqN9gAQlVznWI1lHzJM3y7XDYpSdb8rQaFQqxkMXG4jsB0TCv3g&_nc_ht=scontent-cdt1-1.xx&oh=37201fe112d3303cccda0ea523d7b979&oe=5E8360BC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157016300194915&id=113335124914", "link": null} +{"post_id": "10157015958864915", "text": "Siamo circondati da email, sms, disponibilit\u00e0 per dare una mano. Grazie. Chi vuole intanto aderisca sul sito www.comitatiazionecivile.it Poi stasera ci vediamo a Porta a Porta alle 23 su Rai1. Che bello l\u2019entusiasmo che respiriamo. Grazie\nCOMITATIAZIONECIVILE.IT\nComitati Azione Civile", "post_text": "Siamo circondati da email, sms, disponibilit\u00e0 per dare una mano. Grazie. Chi vuole intanto aderisca sul sito www.comitatiazionecivile.it Poi stasera ci vediamo a Porta a Porta alle 23 su Rai1. Che bello l\u2019entusiasmo che respiriamo. Grazie", "shared_text": "COMITATIAZIONECIVILE.IT\nComitati Azione Civile", "time": "2019-09-17 18:14:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.1.1200.628a/s480x480/67174392_23843633335600181_6034013422599798784_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=RQTNaouzxFAAQkk3Ni5gyMWAV97bPi2IGBncjyJqPX6Wy6Q-dESIf7L3g&_nc_ht=scontent-cdt1-1.xx&oh=8cb999763fa9ade16fc952ce02670d97&oe=5E4A2945", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157015958864915&id=113335124914", "link": "http://www.comitatiazionecivile.it/?fbclid=IwAR1DgFensXG8mShuoyQJbV8jC3iATXrquc0YYMrOtXI5z0zCvg31PQ9ivzg"} +{"post_id": "10157014862349915", "text": "Ho deciso di lasciare il Pd e di costruire insieme ad altri una Casa nuova per fare politica in modo diverso. Dopo sette anni di fuoco amico penso si debba prendere atto che i nostri valori, le nostre idee, i nostri sogni non possono essere tutti i giorni oggetto di litigi interni. La vittoria che abbiamo ottenuto in Parlamento contro il populismo\u2026 Altro e Salvini \u00e8 stata importante per salvare l\u2019Italia, ma non basta. Adesso si tratta di costruire una Casa giovane, innovativa, femminista, dove si lancino idee e proposte per l\u2019Italia e per la nostra Europa. C\u2019\u00e8 uno spazio enorme per una politica diversa. Per una politica viva, fatta di passioni e di partecipazione. Questo spazio attende solo il\u2026 Altro", "post_text": "Ho deciso di lasciare il Pd e di costruire insieme ad altri una Casa nuova per fare politica in modo diverso. Dopo sette anni di fuoco amico penso si debba prendere atto che i nostri valori, le nostre idee, i nostri sogni non possono essere tutti i giorni oggetto di litigi interni. La vittoria che abbiamo ottenuto in Parlamento contro il populismo\u2026 Altro e Salvini \u00e8 stata importante per salvare l\u2019Italia, ma non basta. Adesso si tratta di costruire una Casa giovane, innovativa, femminista, dove si lancino idee e proposte per l\u2019Italia e per la nostra Europa. C\u2019\u00e8 uno spazio enorme per una politica diversa. Per una politica viva, fatta di passioni e di partecipazione. Questo spazio attende solo il\u2026 Altro", "shared_text": "", "time": "2019-09-17 07:16:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157014862349915&id=113335124914", "link": null} +{"post_id": "10157014267664915", "text": "Una frase di Robert Frost citata nell\u2019Attimo Fuggente mi ha sempre fatto compagnia nei miei anni da Boy Scout: \u201cDue strade trovai nel bosco e io scelsi quella meno battuta. Ed \u00e8 per questo che sono diverso\u201d.\nScegliamo la strada pi\u00f9 difficile, senza paracadute. Ma \u00e8 anche la strada pi\u00f9 bella.\nLa colonna sonora di questa notte \u00e8 \"Sul lungomare del mondo\", di Lorenzo Jovanotti. Buonanotte.", "post_text": "Una frase di Robert Frost citata nell\u2019Attimo Fuggente mi ha sempre fatto compagnia nei miei anni da Boy Scout: \u201cDue strade trovai nel bosco e io scelsi quella meno battuta. Ed \u00e8 per questo che sono diverso\u201d.\nScegliamo la strada pi\u00f9 difficile, senza paracadute. Ma \u00e8 anche la strada pi\u00f9 bella.\nLa colonna sonora di questa notte \u00e8 \"Sul lungomare del mondo\", di Lorenzo Jovanotti. Buonanotte.", "shared_text": "", "time": "2019-09-17 00:36:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157014267664915&id=113335124914", "link": null} +{"post_id": "10157010253199915", "text": "Italia 2019, profondo nord. Una signora (signora si fa per dire...) lombarda, che si definisce \u201crazzista e leghista sfegatata\u201d, nega l\u2019affitto ad una ragazza meridionale.\nNelle stesse ore, nello stesso nord, un bambino di cinque anni cade dal terrazzo di casa. Un ragazzo che fa il benzinaio se ne accorge e si tuffa per attutirne la caduta,\u2026 Altro salvandogli la vita.\nScena da film o da fumetto, ma \u00e8 la realt\u00e0. Quel ragazzo \u00e8 un extracomunitario da molto tempo in Italia e si chiama Angel: Angel di nome e di fatto.\nBasterebbe mettere questi due episodi di cronaca a fianco tutti i giorni per capire quanto sia stata devastante e diseducativa la campagna d\u2019odio di questi mesi sui social e per capire quanto sia importante ricordare a noi stessi che non conta la razza, la provenienza, il passaporto. Conta solo il fatto di essere umani.\nBuona domenica", "post_text": "Italia 2019, profondo nord. Una signora (signora si fa per dire...) lombarda, che si definisce \u201crazzista e leghista sfegatata\u201d, nega l\u2019affitto ad una ragazza meridionale.\nNelle stesse ore, nello stesso nord, un bambino di cinque anni cade dal terrazzo di casa. Un ragazzo che fa il benzinaio se ne accorge e si tuffa per attutirne la caduta,\u2026 Altro salvandogli la vita.\nScena da film o da fumetto, ma \u00e8 la realt\u00e0. Quel ragazzo \u00e8 un extracomunitario da molto tempo in Italia e si chiama Angel: Angel di nome e di fatto.\nBasterebbe mettere questi due episodi di cronaca a fianco tutti i giorni per capire quanto sia stata devastante e diseducativa la campagna d\u2019odio di questi mesi sui social e per capire quanto sia importante ricordare a noi stessi che non conta la razza, la provenienza, il passaporto. Conta solo il fatto di essere umani.\nBuona domenica", "shared_text": "", "time": "2019-09-15 07:57:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157010253199915&id=113335124914", "link": null} +{"post_id": "10157008789769915", "text": "Nel prepartita per un pareggio con la Juve avrei messo la firma. Oggi esco dal Franchi con un po\u2019 di amaro in bocca: lo 0-0 ci sta stretto. Ma va bene cos\u00ec. Bella partita, bellissima coreografia, viva Fiorenza", "post_text": "Nel prepartita per un pareggio con la Juve avrei messo la firma. Oggi esco dal Franchi con un po\u2019 di amaro in bocca: lo 0-0 ci sta stretto. Ma va bene cos\u00ec. Bella partita, bellissima coreografia, viva Fiorenza", "shared_text": "", "time": "2019-09-14 17:19:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/70447687_10157008788489915_3617629658972946432_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=oOe_-fWoYYAAQmsipAX7bNW6D7Hd5OgjHh8x-mwjkcZuvaQEO1q-cODOQ&_nc_ht=scontent-cdt1-1.xx&oh=6c7379ec1f350040c08650b566ad8d44&oe=5E8C2FC6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157008789769915&id=113335124914", "link": null} +{"post_id": "10157006537214915", "text": "Bravo Ministro. Finalmente l\u2019Italia torna tra i Paesi che lottano contro il climate change. Ben fatto!", "post_text": "Bravo Ministro. Finalmente l\u2019Italia torna tra i Paesi che lottano contro il climate change. Ben fatto!", "shared_text": "", "time": "2019-09-13 17:27:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/70652402_10157006537169915_7099394255239512064_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=ipd1Anyb3hUAQlJf8stpYG9DgJ8QkwEW4kN9Puo87decg0h3A6BkidwWw&_nc_ht=scontent-cdt1-1.xx&oh=f2f22a32cb318a6d7d6f8ec008bedc38&oe=5E79EB31", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157006537214915&id=113335124914", "link": null} +{"post_id": "10157005836514915", "text": "La scorsa legislatura \u00e8 stata quella del\nJobsAct che ha creato pi\u00f9 di un milione di posti di lavoro. La prossima sar\u00e0 quella del FamilyAct, come spiega la ministra Bonetti in questa intervista: asili nido, assegno ai figli e non solo.\nCOMITATIAZIONECIVILE.IT\n\u00abSar\u00e0 la legislatura del Family act. Ma stop a battaglie ideologiche\u00bb Intervista a Elena Bonetti", "post_text": "La scorsa legislatura \u00e8 stata quella del\nJobsAct che ha creato pi\u00f9 di un milione di posti di lavoro. La prossima sar\u00e0 quella del FamilyAct, come spiega la ministra Bonetti in questa intervista: asili nido, assegno ai figli e non solo.", "shared_text": "COMITATIAZIONECIVILE.IT\n\u00abSar\u00e0 la legislatura del Family act. Ma stop a battaglie ideologiche\u00bb Intervista a Elena Bonetti", "time": "2019-09-13 10:37:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c1.0.474.248a/70886532_23843754600730181_2334674699469979648_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=8SFYWKYQINkAQlfbf-nRyL_kFFZ-MWmfpSUW2o5-7IKJHRmqEZY2eaDrg&_nc_ht=scontent-cdt1-1.xx&oh=a72c47e694a766dc6f12c9378ece70b1&oe=5E5078BB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157005836514915&id=113335124914", "link": "https://www.comitatiazionecivile.it/family_act_stop_battaglie_ideologiche_intervista_bonetti?fbclid=IwAR2bwscm6K8Jvw02c6MzLyBXFbXKQv1Rez_CX918bOR_aprQvBpoKn4TfsA"} +{"post_id": "10157004064709915", "text": "Condivido con voi questo post. E dico grazie al CEO Francesco Borgomeo e al suo team. Utilizzando gli strumenti del JobsAct, la Saxa Gres ha riassunto tutti i lavoratori. E il padre di questa ragazza pu\u00f2 tornare a sorridere.", "post_text": "Condivido con voi questo post. E dico grazie al CEO Francesco Borgomeo e al suo team. Utilizzando gli strumenti del JobsAct, la Saxa Gres ha riassunto tutti i lavoratori. E il padre di questa ragazza pu\u00f2 tornare a sorridere.", "shared_text": "", "time": "2019-09-12 16:40:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/70603234_10157004064539915_4549008864892157952_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=lnZtICt6hOYAQlRadNvIEp1CAkwKO2T8pKMznQRvtexvAU87a6C8_LvJg&_nc_ht=scontent-cdt1-1.xx&oh=356775ad6fd383bb0a8c7e22a7ee1c20&oe=5E474901", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157004064709915&id=113335124914", "link": null} +{"post_id": "10157003693859915", "text": "Sono stato criticato moltissime volte da Roberto Saviano. Ma la censura assurda che contro di lui e contro ZeroCalcare \u00e8 arrivata dal Sindaco dell\u2019Aquila mi spinge a reagire. Non \u00e8 giusto che un sindaco possa decidere le idee dei partecipanti a un festival. E non \u00e8 giusto che un Sindaco critichi la direttrice del Teatro Stabile d\u2019Abruzzo, Annalisa\u2026 Altro De Simone, solo perch\u00e9 ha partecipato alla Leopolda. Il Sindaco dell\u2019Aquila appartiene a Fratelli d\u2019Italia: prima o poi dovr\u00e0 capire anche lui che la cultura non ammette censure. E che la Leopolda \u00e8 un luogo di libert\u00e0.", "post_text": "Sono stato criticato moltissime volte da Roberto Saviano. Ma la censura assurda che contro di lui e contro ZeroCalcare \u00e8 arrivata dal Sindaco dell\u2019Aquila mi spinge a reagire. Non \u00e8 giusto che un sindaco possa decidere le idee dei partecipanti a un festival. E non \u00e8 giusto che un Sindaco critichi la direttrice del Teatro Stabile d\u2019Abruzzo, Annalisa\u2026 Altro De Simone, solo perch\u00e9 ha partecipato alla Leopolda. Il Sindaco dell\u2019Aquila appartiene a Fratelli d\u2019Italia: prima o poi dovr\u00e0 capire anche lui che la cultura non ammette censure. E che la Leopolda \u00e8 un luogo di libert\u00e0.", "shared_text": "", "time": "2019-09-12 13:27:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157003693859915&id=113335124914", "link": null} +{"post_id": "10157003567494915", "text": "L\u2019obiettivo degli asili nido gratuiti per tutti \u00e8 una grande sfida lanciata dal nuovo Governo che la ministra Elena Bonetti sapr\u00e0 raccogliere. Intanto diciamo brava alla pioniera, Isabella Conti, sindaco di San Lazzaro, la prima a farlo in Italia. Orgogliosi di te, Isabella", "post_text": "L\u2019obiettivo degli asili nido gratuiti per tutti \u00e8 una grande sfida lanciata dal nuovo Governo che la ministra Elena Bonetti sapr\u00e0 raccogliere. Intanto diciamo brava alla pioniera, Isabella Conti, sindaco di San Lazzaro, la prima a farlo in Italia. Orgogliosi di te, Isabella", "shared_text": "", "time": "2019-09-12 12:04:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/70263667_10157003567469915_8875147745036337152_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=46FtEOOf5f4AQnnl3iS4Cm38JZ-dErx5cGs1lwGiwTn-kYVFzouPGSRxw&_nc_ht=scontent-cdt1-1.xx&oh=cd84ca558f1599368362e13a2c9e6853&oe=5E3F3F71", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157003567494915&id=113335124914", "link": null} +{"post_id": "10157001692239915", "text": "Tel Aviv, quanta vita in questa citt\u00e0. Maglietta della nazionale, cuffie e \u201cPronto a correre\u201d\n#BuonaSerata", "post_text": "Tel Aviv, quanta vita in questa citt\u00e0. Maglietta della nazionale, cuffie e \u201cPronto a correre\u201d\n#BuonaSerata", "shared_text": "", "time": "2019-09-11 18:02:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/70084044_10157001692149915_4988218091801411584_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=71VWKDv491QAQnCXaZOxRmHESTjHBHsUnHJ9XVA7CnO1as38-Txcw9DhA&_nc_ht=scontent-cdt1-1.xx&oh=667edc70b8ec7a4d4e8df9b30012a267&oe=5E8BCF73", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157001692239915&id=113335124914", "link": null} +{"post_id": "10157000774914915", "text": "Ieri in Senato Salvini ha detto di volere il maggioritario, un sistema pi\u00f9 semplice, in cui si sappia la sera stessa delle elezioni chi ha vinto, con meno parlamentari e pi\u00f9 stabilit\u00e0. Desideri bellissimi. Ma per trasformarli in realt\u00e0, Salvini doveva votare s\u00ec al referendum costituzionale del 2016. Bastava un s\u00ec. Ha vinto il NO e adesso ci teniamo i governi di coalizione e il bicameralismo paritario. Si chiama legge del contrappasso.", "post_text": "Ieri in Senato Salvini ha detto di volere il maggioritario, un sistema pi\u00f9 semplice, in cui si sappia la sera stessa delle elezioni chi ha vinto, con meno parlamentari e pi\u00f9 stabilit\u00e0. Desideri bellissimi. Ma per trasformarli in realt\u00e0, Salvini doveva votare s\u00ec al referendum costituzionale del 2016. Bastava un s\u00ec. Ha vinto il NO e adesso ci teniamo i governi di coalizione e il bicameralismo paritario. Si chiama legge del contrappasso.", "shared_text": "", "time": "2019-09-11 09:54:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157000774914915&id=113335124914", "link": null} +{"post_id": "10156999233744915", "text": "Ho votato \u201cS\u00ec\u201d alla fiducia al nuovo Governo. In questo mese la politica italiana ha vissuto una tempesta incredibile. La scelta di Salvini di chiedere \u201cpieni poteri\u201d ed andare a elezioni ha segnato una svolta\u2026 Altro inspiegabile. Accettare il diktat della Lega e andare a votare a novembre avrebbe aumentato l\u2019IVA, portato l\u2019Italia in recessione, escluso il nostro Paese dalla guida delle istituzioni europee, alimentato un clima di tensione e di violenza verbale. Fare politica significa avere il coraggio di fare scelte anche contro corrente, inattese, sorprendenti. Ho scelto di lavorare assieme ad altri per garantire un futuro a questa legislatura. E l\u2019ho fatto difendendo l\u2019interesse degli italiani e mordendomi la lingua per tutti gli insulti e le diffamazioni di questi anni. Mi \u00e8 costato molto sul piano personale e umano ma penso che sia stata la scelta giusta per l\u2019Italia e per gli italiani. Non si fa politica con i risentimenti personali ma mettendo al centro il bene comune. Buon lavoro al nuovo Governo, viva l\u2019Italia", "post_text": "Ho votato \u201cS\u00ec\u201d alla fiducia al nuovo Governo. In questo mese la politica italiana ha vissuto una tempesta incredibile. La scelta di Salvini di chiedere \u201cpieni poteri\u201d ed andare a elezioni ha segnato una svolta\u2026 Altro inspiegabile. Accettare il diktat della Lega e andare a votare a novembre avrebbe aumentato l\u2019IVA, portato l\u2019Italia in recessione, escluso il nostro Paese dalla guida delle istituzioni europee, alimentato un clima di tensione e di violenza verbale. Fare politica significa avere il coraggio di fare scelte anche contro corrente, inattese, sorprendenti. Ho scelto di lavorare assieme ad altri per garantire un futuro a questa legislatura. E l\u2019ho fatto difendendo l\u2019interesse degli italiani e mordendomi la lingua per tutti gli insulti e le diffamazioni di questi anni. Mi \u00e8 costato molto sul piano personale e umano ma penso che sia stata la scelta giusta per l\u2019Italia e per gli italiani. Non si fa politica con i risentimenti personali ma mettendo al centro il bene comune. Buon lavoro al nuovo Governo, viva l\u2019Italia", "shared_text": "", "time": "2019-09-10 18:39:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/69885769_10156999233644915_3531240450558001152_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=FPx6mSkIrYQAQmd3sb9PRafEHJVXfKMDwPqaqajkh3L2-HZhgqKAGxu-g&_nc_ht=scontent-cdt1-1.xx&oh=f8e276e21e454554e2875ac728fef852&oe=5E495AA2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156999233744915&id=113335124914", "link": null} +{"post_id": "10156997462714915", "text": "Approfitto della serata milanese per fare una mezza maratona in albergo. 21 km in 1.51.\nNon male, vero? Ora mega doccia e a nanna. Domani si vota in Senato. Notte!", "post_text": "Approfitto della serata milanese per fare una mezza maratona in albergo. 21 km in 1.51.\nNon male, vero? Ora mega doccia e a nanna. Domani si vota in Senato. Notte!", "shared_text": "", "time": "2019-09-10 00:04:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/69787796_10156997462579915_6893198299902246912_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=hHZI5U5kxNEAQl3FykBEe7G5HOYzz6EpY_Fx_tJDxLpK1pAG7Xn0WLjBg&_nc_ht=scontent-cdt1-1.xx&oh=eb7cb19a55e92b267aa5436acf8b083a&oe=5E859916", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156997462714915&id=113335124914", "link": null} +{"post_id": "10156996123294915", "text": "Si vota la fiducia al nuovo Governo. A chi ha dubbi ricordo l\u2019alternativa: aumento IVA, Italia isolata in UE, odio verbale via social e nelle piazze/spiagge, spread, opacit\u00e0 russe, saluti romani.\nBloccare i \u201cpieni poteri\u201d a Salvini era un dovere civile.\nMissione compiuta", "post_text": "Si vota la fiducia al nuovo Governo. A chi ha dubbi ricordo l\u2019alternativa: aumento IVA, Italia isolata in UE, odio verbale via social e nelle piazze/spiagge, spread, opacit\u00e0 russe, saluti romani.\nBloccare i \u201cpieni poteri\u201d a Salvini era un dovere civile.\nMissione compiuta", "shared_text": "", "time": "2019-09-09 12:39:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156996123294915&id=113335124914", "link": null} +{"post_id": "10156995997464915", "text": "Un uomo che uccide una donna non pu\u00f2 essere definito un gigante buono che perde la testa. \u00c8 un assassino. Chiamare le cose con il loro nome \u00e8 il primo passo per combattere i femminicidi e la violenza.\nAssassino, non gigante buono", "post_text": "Un uomo che uccide una donna non pu\u00f2 essere definito un gigante buono che perde la testa. \u00c8 un assassino. Chiamare le cose con il loro nome \u00e8 il primo passo per combattere i femminicidi e la violenza.\nAssassino, non gigante buono", "shared_text": "", "time": "2019-09-09 11:20:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156995997464915&id=113335124914", "link": null} +{"post_id": "10156994066524915", "text": "Una gara pazzesca, meravigliosa, strabiliante. Dal primo giro in testa, a Monza, soffrendo ma vincendo Leclerc entra giovanissimo nella storia della Ferrari. Stupendo!", "post_text": "Una gara pazzesca, meravigliosa, strabiliante. Dal primo giro in testa, a Monza, soffrendo ma vincendo Leclerc entra giovanissimo nella storia della Ferrari. Stupendo!", "shared_text": "", "time": "2019-09-08 16:33:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/69690225_10156994179454915_4792701254818070528_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=XUavAihSp1oAQmB5Vv03IpMqScMHbu8qnSSBWGCIcydByfg9s4vW0RXBQ&_nc_ht=scontent-cdt1-1.xx&oh=d676b6abba8ec260d06bdc807f780c80&oe=5E831450", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156994066524915&id=113335124914", "link": null} +{"post_id": "10156993330924915", "text": "Leggete l\u2019intervista di Teresa Bellanova e capite perch\u00e9 sono orgoglioso di lei, della strada che abbiamo fatto insieme e di quella che ancora faremo\nCOMITATIAZIONECIVILE.IT\nTeresa Bellanova: \u201cSono qui per le amiche braccianti che non hanno una vita\u201d", "post_text": "Leggete l\u2019intervista di Teresa Bellanova e capite perch\u00e9 sono orgoglioso di lei, della strada che abbiamo fatto insieme e di quella che ancora faremo", "shared_text": "COMITATIAZIONECIVILE.IT\nTeresa Bellanova: \u201cSono qui per le amiche braccianti che non hanno una vita\u201d", "time": "2019-09-08 09:02:14", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBFUodcNV-D10sT&w=476&h=249&url=https%3A%2F%2Fd3n8a8pro7vhmx.cloudfront.net%2Fcomitaticivici%2Fpages%2F205%2Fmeta_images%2Foriginal%2Ffile-bellanova.jpg%3F1567925339&cfs=1&jq=75&sx=0&sy=10&sw=737&sh=386&ext=jpg&_nc_hash=AQCFNa6Q8NJfeuyL", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156993330924915&id=113335124914", "link": "https://www.comitatiazionecivile.it/teresa_bellanova_sono_qui_per_le_amiche_braccianti_che_non_hanno_una_vita?fbclid=IwAR1LigyzZIgxd94PO333C7n_UDaYVofPeKIp3NyQLgnaH6ivqfq9BlV7ypE"} +{"post_id": "10156994037524915", "text": "Dieci anni fa ci lasciava Mike Bongiorno, una colonna della cultura popolare italiana. Ho avuto la fortuna di incontrarlo 25 anni fa, nel lontano 1994. Ieri ne ho parlato a Porta a Porta. Ecco il video, buona domenica", "post_text": "Dieci anni fa ci lasciava Mike Bongiorno, una colonna della cultura popolare italiana. Ho avuto la fortuna di incontrarlo 25 anni fa, nel lontano 1994. Ieri ne ho parlato a Porta a Porta. Ecco il video, buona domenica", "shared_text": "", "time": "2019-09-08 07:13:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=633236520416346&id=113335124914", "link": null} +{"post_id": "10156991883169915", "text": "Se il figlio di Beppe Grillo \u00e8 colpevole o no lo decideranno i giudici, non i social. Questo sar\u00e0 un Paese civile quando nessuno user\u00e0 le famiglie per aggredire gli avversari politici. E in attesa che imparino a farlo gli altri, diamo noi una dimostrazione di civilt\u00e0: garantisti sempre.", "post_text": "Se il figlio di Beppe Grillo \u00e8 colpevole o no lo decideranno i giudici, non i social. Questo sar\u00e0 un Paese civile quando nessuno user\u00e0 le famiglie per aggredire gli avversari politici. E in attesa che imparino a farlo gli altri, diamo noi una dimostrazione di civilt\u00e0: garantisti sempre.", "shared_text": "", "time": "2019-09-07 19:25:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156991883169915&id=113335124914", "link": null} +{"post_id": "10156991781879915", "text": "Il Governo uscente ci \u00e8 costato 20 miliardi di euro solo di interessi, secondo le stime dell\u2019Osservatorio CPI. Aver mandato a casa chi voleva uscire dall\u2019Euro non \u00e8 solo giusto: \u00e8 anche utile per le tasche degli italiani", "post_text": "Il Governo uscente ci \u00e8 costato 20 miliardi di euro solo di interessi, secondo le stime dell\u2019Osservatorio CPI. Aver mandato a casa chi voleva uscire dall\u2019Euro non \u00e8 solo giusto: \u00e8 anche utile per le tasche degli italiani", "shared_text": "", "time": "2019-09-07 18:35:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156991781879915&id=113335124914", "link": null} +{"post_id": "10156991222344915", "text": "Matteo Berrettini \u00e8 la rivelazione del 2019 tennistico. La sconfitta con Nadal agli US Open impedisce al tennista romano (e tifoso viola) di arrivare alla finale ma ormai \u00e8 evidente a tutti che Berrettini non\u2026 Altro \u00e8 pi\u00f9 solo una promessa. E per chi ama il tennis vedere un giovanissimo italiano tra i Big \u00e8 una grandissima soddisfazione. Forza Matteo!", "post_text": "Matteo Berrettini \u00e8 la rivelazione del 2019 tennistico. La sconfitta con Nadal agli US Open impedisce al tennista romano (e tifoso viola) di arrivare alla finale ma ormai \u00e8 evidente a tutti che Berrettini non\u2026 Altro \u00e8 pi\u00f9 solo una promessa. E per chi ama il tennis vedere un giovanissimo italiano tra i Big \u00e8 una grandissima soddisfazione. Forza Matteo!", "shared_text": "", "time": "2019-09-07 13:49:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p206x206/70261690_10156991222319915_7749719971063660544_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=wtKLCHZirScAQl6sMmp_lhIdzfz76KrS-JYowgQF6vO9STxQ2YM7J7Gjw&_nc_ht=scontent-cdt1-1.xx&oh=6d07421b7a86ce7c2d4f864f270fe8d4&oe=5E8B3DE4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156991222344915&id=113335124914", "link": null} +{"post_id": "10156989660419915", "text": "Nell\u2019ultimo mese ho combattuto una durissima battaglia per mandare Matteo Salvini a casa. Credo di aver fatto il mio dovere da cittadino e da senatore. E credo di aver vinto questa battaglia insieme a tante e tanti.\nMa proprio per questo rabbrividisco quando leggo il post di un giornalista Rai che parla del suicidio di Salvini entro sei mesi e\u2026 Altro tira in ballo la figlia del leader leghista. C\u2019\u00e8 un limite di decenza e di rispetto umano che questo giornalista della Rai avrebbe dovuto rispettare. Ho lottato e lotter\u00f2 sempre contro Matteo Salvini. Ma chi, pagato coi soldi degli italiani, parla di suicidio di un avversario e addirittura tira in ballo una piccola bambina si deve VERGOGNARE.\nLa mia solidariet\u00e0 a Matteo Salvini, alla sua famiglia, alla piccola bimba ed alla sua mamma. La politica non pu\u00f2 divenire barbarie. E chi \u00e8 pagato coi soldi dei cittadini non pu\u00f2 esprimersi con questi toni. Per me prima viene la civilt\u00e0, poi la battaglia di parte", "post_text": "Nell\u2019ultimo mese ho combattuto una durissima battaglia per mandare Matteo Salvini a casa. Credo di aver fatto il mio dovere da cittadino e da senatore. E credo di aver vinto questa battaglia insieme a tante e tanti.\nMa proprio per questo rabbrividisco quando leggo il post di un giornalista Rai che parla del suicidio di Salvini entro sei mesi e\u2026 Altro tira in ballo la figlia del leader leghista. C\u2019\u00e8 un limite di decenza e di rispetto umano che questo giornalista della Rai avrebbe dovuto rispettare. Ho lottato e lotter\u00f2 sempre contro Matteo Salvini. Ma chi, pagato coi soldi degli italiani, parla di suicidio di un avversario e addirittura tira in ballo una piccola bambina si deve VERGOGNARE.\nLa mia solidariet\u00e0 a Matteo Salvini, alla sua famiglia, alla piccola bimba ed alla sua mamma. La politica non pu\u00f2 divenire barbarie. E chi \u00e8 pagato coi soldi dei cittadini non pu\u00f2 esprimersi con questi toni. Per me prima viene la civilt\u00e0, poi la battaglia di parte", "shared_text": "", "time": "2019-09-06 21:27:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156989660419915&id=113335124914", "link": null} +{"post_id": "10156988262929915", "text": "Chi insulta Teresa Bellanova per il suo abito, per il suo fisico, per la sua storia di bracciante agricola divenuta sindacalista e poi ministro non \u00e8 degno di una polemica pubblica: \u00e8 semplicemente un\u2026 Altro poveretto. Gente che polemizza cos\u00ec va solo compatita, nemmeno criticata.\nVoglio per\u00f2 fare un augurio a chi ironizza sulle caratteristiche fisiche (quasi sempre sulle donne, chiss\u00e0 perch\u00e9): vi auguro di poter provare almeno una volta le emozioni di bellezza e stupore che le persone vivono quando ascoltano Teresa, la sua passione, la sua storia. Basti pensare ai suoi discorsi alla Leopolda: nessuno infiamma la platea come lei.\nPerch\u00e9 \u00e8 triste la vita di chi passa il tempo a odiare gli altri sui social. Per voi sarebbe pi\u00f9 utile imparare ad amare nella vita reale. E ad amarvi.\nSe poi qualcuno pensa che Teresa possa farsi fermare da qualche insulto, beh, \u00e8 un problema vostro. Non la conoscete. Non ci conoscete.", "post_text": "Chi insulta Teresa Bellanova per il suo abito, per il suo fisico, per la sua storia di bracciante agricola divenuta sindacalista e poi ministro non \u00e8 degno di una polemica pubblica: \u00e8 semplicemente un\u2026 Altro poveretto. Gente che polemizza cos\u00ec va solo compatita, nemmeno criticata.\nVoglio per\u00f2 fare un augurio a chi ironizza sulle caratteristiche fisiche (quasi sempre sulle donne, chiss\u00e0 perch\u00e9): vi auguro di poter provare almeno una volta le emozioni di bellezza e stupore che le persone vivono quando ascoltano Teresa, la sua passione, la sua storia. Basti pensare ai suoi discorsi alla Leopolda: nessuno infiamma la platea come lei.\nPerch\u00e9 \u00e8 triste la vita di chi passa il tempo a odiare gli altri sui social. Per voi sarebbe pi\u00f9 utile imparare ad amare nella vita reale. E ad amarvi.\nSe poi qualcuno pensa che Teresa possa farsi fermare da qualche insulto, beh, \u00e8 un problema vostro. Non la conoscete. Non ci conoscete.", "shared_text": "", "time": "2019-09-06 07:38:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/69874110_10156988262894915_3930253868817973248_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=B1ZcfW5gABsAQmu1-VsFIdqyWhOU8lMg5QCsZES1Jdh0Jf0Ojp4PFdrTw&_nc_ht=scontent-cdt1-1.xx&oh=68b0a9581326d1dd67778ea9a1f726a7&oe=5E82F0C6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156988262929915&id=113335124914", "link": null} +{"post_id": "10156986515214915", "text": "Il fatto che l\u2019Italia sia rappresentata in Commissione Europea non da un sovranista come sembrava fino a un mese fa ma da Paolo Gentiloni \u00e8 un\u2019ottima notizia per l\u2019Italia. E per l\u2019Europa. Buon lavoro", "post_text": "Il fatto che l\u2019Italia sia rappresentata in Commissione Europea non da un sovranista come sembrava fino a un mese fa ma da Paolo Gentiloni \u00e8 un\u2019ottima notizia per l\u2019Italia. E per l\u2019Europa. Buon lavoro", "shared_text": "", "time": "2019-09-05 14:10:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156986515214915&id=113335124914", "link": null} +{"post_id": "10156984855999915", "text": "Un mese fa il Ministro dell\u2019Interno Salvini chiedeva \u201cpieni poteri\u201d per andare a elezioni, da solo, contro tutti. La sua richiesta veniva formalizzata in comizi in mezzo alla spiaggia tra qualche cubista e molti mojiti, senza alcun riguardo alle prerogative costituzionali del Presidente della Repubblica e delle altre Istituzioni.\nMentre Salvini\u2026 Altro esprimeva questi raffinati concetti, il suo consigliere economico Borghi ipotizzava l\u2019uscita dall\u2019Euro, il suo collaboratore Savoini chiedeva tangenti sul petrolio russo, i suoi post sui social educavano all\u2019odio e alla violenza verbale soprattutto contro persone dal colore della pelle diverso.\nDonne e uomini fuggiti dalla fame e dalla guerra venivano\u2026 Altro", "post_text": "Un mese fa il Ministro dell\u2019Interno Salvini chiedeva \u201cpieni poteri\u201d per andare a elezioni, da solo, contro tutti. La sua richiesta veniva formalizzata in comizi in mezzo alla spiaggia tra qualche cubista e molti mojiti, senza alcun riguardo alle prerogative costituzionali del Presidente della Repubblica e delle altre Istituzioni.\nMentre Salvini\u2026 Altro esprimeva questi raffinati concetti, il suo consigliere economico Borghi ipotizzava l\u2019uscita dall\u2019Euro, il suo collaboratore Savoini chiedeva tangenti sul petrolio russo, i suoi post sui social educavano all\u2019odio e alla violenza verbale soprattutto contro persone dal colore della pelle diverso.\nDonne e uomini fuggiti dalla fame e dalla guerra venivano\u2026 Altro", "shared_text": "", "time": "2019-09-04 19:48:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156984855999915&id=113335124914", "link": null} +{"post_id": "10156984332824915", "text": "Buon lavoro al nuovo Governo.\nFacciamo tutti il tifo per l\u2019Italia", "post_text": "Buon lavoro al nuovo Governo.\nFacciamo tutti il tifo per l\u2019Italia", "shared_text": "", "time": "2019-09-04 16:07:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/69758805_10156984332769915_1722823897683853312_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=0nv5mGwheLgAQkoIQXxZo0I7EYU0Z9DxS9lbZW5T_Xy39DrQ6eDyot_CQ&_nc_ht=scontent-cdt1-1.xx&oh=4946c101870b8b02402460671b132776&oe=5E7A72A3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156984332824915&id=113335124914", "link": null} +{"post_id": "10156983328659915", "text": "Quando cambia un Governo \u00e8 sempre un giorno importante per le istituzioni. L\u2019Italia cambia spesso governo, anche troppo spesso. Ma l\u2019Italia non potr\u00e0 mai cambiare il proprio DNA: siamo un popolo con tanti\u2026 Altro difetti, certo. Ma siamo anche un popolo ricco di valori, di sentimenti, di ideali. Sappiamo accogliere, sorridere, amare. Noi non siamo carichi d\u2019odio come qualcuno ci ha voluto dipingere in questi 14 mesi. E l\u2019Italia non deve scimmiottare altri paesi e ricette di popoli diversi: l\u2019Italia deve fare l\u2019Italia.\nL\u2019Italia \u00e8 bellezza, non odio. Sempre.\nBuona giornata a tutti", "post_text": "Quando cambia un Governo \u00e8 sempre un giorno importante per le istituzioni. L\u2019Italia cambia spesso governo, anche troppo spesso. Ma l\u2019Italia non potr\u00e0 mai cambiare il proprio DNA: siamo un popolo con tanti\u2026 Altro difetti, certo. Ma siamo anche un popolo ricco di valori, di sentimenti, di ideali. Sappiamo accogliere, sorridere, amare. Noi non siamo carichi d\u2019odio come qualcuno ci ha voluto dipingere in questi 14 mesi. E l\u2019Italia non deve scimmiottare altri paesi e ricette di popoli diversi: l\u2019Italia deve fare l\u2019Italia.\nL\u2019Italia \u00e8 bellezza, non odio. Sempre.\nBuona giornata a tutti", "shared_text": "", "time": "2019-09-04 08:11:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/69483825_10156983328644915_244779051011538944_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=3lyQOzVzAB4AQlECh6-Mf7W_QF9Y0I1QPtSf0zL7TD6dd0j2kJTOg4ddg&_nc_ht=scontent-cdt1-1.xx&oh=09ec0e64979257bfe2fd08274db864d3&oe=5E873B90", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156983328659915&id=113335124914", "link": null} +{"post_id": "10156978866479915", "text": "Per l\u2019undicesimo mese consecutivo l\u2019attivita manifatturiera italiana \u00e8 in contrazione. Le cose vanno male, insomma. E gli effetti si vedranno nei prossimi mesi.\nQuesta \u00e8 l'emergenza VERA e questo giustifica ed impone un governo SUBITO. Non sono una verginella: conosco bene le regole ed i tempi della politica quando si parla di assetti, posti, poltrone. Ma c'\u00e8 un limite che non va superato e ora \u00e8 il momento di correre e di chiudere.\nC\u2019\u00e8 una emergenza economica alle porte. Va affrontata adesso, non rinviata ancora, magari a dopo le elezioni.", "post_text": "Per l\u2019undicesimo mese consecutivo l\u2019attivita manifatturiera italiana \u00e8 in contrazione. Le cose vanno male, insomma. E gli effetti si vedranno nei prossimi mesi.\nQuesta \u00e8 l'emergenza VERA e questo giustifica ed impone un governo SUBITO. Non sono una verginella: conosco bene le regole ed i tempi della politica quando si parla di assetti, posti, poltrone. Ma c'\u00e8 un limite che non va superato e ora \u00e8 il momento di correre e di chiudere.\nC\u2019\u00e8 una emergenza economica alle porte. Va affrontata adesso, non rinviata ancora, magari a dopo le elezioni.", "shared_text": "", "time": "2019-09-02 13:06:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156978866479915&id=113335124914", "link": null} +{"post_id": "10156976852579915", "text": "Grandissima Ferrari, mitico Leclerc! #Finalmente", "post_text": "Grandissima Ferrari, mitico Leclerc! #Finalmente", "shared_text": "", "time": "2019-09-01 16:42:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/69613332_10156976852524915_7755553039162802176_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=7MTO9sOLMLMAQkp-hLlFWSfgeeAYtVelAlzmOIEtaaEhgJ09WCwV44h2g&_nc_ht=scontent-cdt1-1.xx&oh=7f0ec305e54029336e8e4a0aa3d775da&oe=5E4EB89A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156976852579915&id=113335124914", "link": null} +{"post_id": "10156976196219915", "text": "Oggi ho fatto una intervista ad Emilia Patta del Sole 24 Ore: il mondo di chi lavora, di chi produce, di chi crea benessere non ha niente da temere da un Governo che nasce evitando aumento IVA e abbassando lo spread. Se avete tempo per leggere l\u2019intervista e darmi qualche impressione mi fate un regalo\nMATTEORENZI.IT\nUn governo per contrastare recessione e isolamento. E bloccare le follie di Salvini - Matteo Renzi", "post_text": "Oggi ho fatto una intervista ad Emilia Patta del Sole 24 Ore: il mondo di chi lavora, di chi produce, di chi crea benessere non ha niente da temere da un Governo che nasce evitando aumento IVA e abbassando lo spread. Se avete tempo per leggere l\u2019intervista e darmi qualche impressione mi fate un regalo", "shared_text": "MATTEORENZI.IT\nUn governo per contrastare recessione e isolamento. E bloccare le follie di Salvini - Matteo Renzi", "time": "2019-09-01 09:36:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.58.1024.536a/s480x480/70167110_23843723892890181_1452295018789208064_n.png.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=709Qnsx4CnEAQkJw5pJCd_9M8pMObZP0KBy5xB961jP_oEbCHs_z5Ml4g&_nc_ht=scontent-cdt1-1.xx&oh=cc70a133b8017fbc9479ed66b414b524&oe=5E8946CE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156976196219915&id=113335124914", "link": "https://www.matteorenzi.it/governo-per-contrastare-recessione-isolamento-bloccare-follie-salvini/?fbclid=IwAR2jZkVG-jNNHdvvTX8Obj3riuPiqXbipDnQ-Fbmz7Ab87PYcMkZbti8rV8"} +{"post_id": "10156971667989915", "text": "I dati di ISTAT di oggi dicono che l\u2019Italia populista lascia con il PIL negativo. Bisogna sbloccare i cantieri, rilanciare i consumi delle famiglie, scommettere su innovazione. In questo quadro far aumentare IVA per andare a votare sarebbe stata una catastrofe: come possono fingere di non capirlo?\nL\u2019Italia deve ripartire, non inchiodare", "post_text": "I dati di ISTAT di oggi dicono che l\u2019Italia populista lascia con il PIL negativo. Bisogna sbloccare i cantieri, rilanciare i consumi delle famiglie, scommettere su innovazione. In questo quadro far aumentare IVA per andare a votare sarebbe stata una catastrofe: come possono fingere di non capirlo?\nL\u2019Italia deve ripartire, non inchiodare", "shared_text": "", "time": "2019-08-30 13:05:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156971667989915&id=113335124914", "link": null} +{"post_id": "10156971424424915", "text": "La mia intervista di oggi a Il Messaggero\nILMESSAGGERO.IT\nMatteo Renzi: \u00abLa durata del nuovo esecutivo? Sar\u00e0 legata a alla qualit\u00e0 della squadra\u00bb", "post_text": "La mia intervista di oggi a Il Messaggero", "shared_text": "ILMESSAGGERO.IT\nMatteo Renzi: \u00abLa durata del nuovo esecutivo? Sar\u00e0 legata a alla qualit\u00e0 della squadra\u00bb", "time": "2019-08-30 10:18:34", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCI_R9dKHf_A1au&w=476&h=249&url=https%3A%2F%2Fwww.ilmessaggero.it%2Fphotos%2FMED%2F30%2F14%2F4703014_0821_renzinuovo.jpg&cfs=1&jq=75&sx=0&sy=5&sw=620&sh=324&ext=jpg&_nc_hash=AQDbkSqJauEx8IkR", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156971424424915&id=113335124914", "link": "https://www.ilmessaggero.it/politica/governo_ultime_notizie_renzi_conte_pd_m5s_news_ultimissime-4703014.html?fbclid=IwAR0Mv-60A3jFXLGVMa1dWe_Re0TE50jc1OPmi8Gb30jcPsfMF1-CvRJJdNw"} +{"post_id": "10156969646834915", "text": "La scuola estiva \u201cMeritare l\u2019Italia\u201d ha visto decine di ragazze e ragazzi parlare, discutere, approfondire. La lettera che Chiara ha scritto a Repubblica \u00e8 bellissima. Mi colpisce. E mi fa pensare. Grazie Chiara\nCOMITATIAZIONECIVILE.IT\nCosa facciamo noi giovani per meritarci l'Italia", "post_text": "La scuola estiva \u201cMeritare l\u2019Italia\u201d ha visto decine di ragazze e ragazzi parlare, discutere, approfondire. La lettera che Chiara ha scritto a Repubblica \u00e8 bellissima. Mi colpisce. E mi fa pensare. Grazie Chiara", "shared_text": "COMITATIAZIONECIVILE.IT\nCosa facciamo noi giovani per meritarci l'Italia", "time": "2019-08-29 17:56:27", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCZR8owy4SW5MyR&w=476&h=249&url=https%3A%2F%2Fd3n8a8pro7vhmx.cloudfront.net%2Fcomitaticivici%2Fpages%2F167%2Fmeta_images%2Foriginal%2Flist-renzi.jpg%3F1567092804&cfs=1&jq=75&sx=0&sy=51&sw=1600&sh=837&ext=jpg&_nc_hash=AQA61vK5HtTJUtUi", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156969646834915&id=113335124914", "link": "https://www.comitatiazionecivile.it/cosa_facciamo_noi_giovani_per_meritarci_litalia?fbclid=IwAR2mZGW1sHs45wGm94vce9A9leP2Ox2AjjEjqNIeAThgifg1oEdg7-QH3hc"} +{"post_id": "10156968864389915", "text": "Guardiamo i fatti. All\u2019inizio di agosto il Paese era in mano a un presunto Ministro dell\u2019Interno, che usava linguaggio di odio contro il diverso, che chiedeva pieni poteri, che isolava l\u2019Italia nei tavoli internazionali, che non chiariva il rapporto con la Russia, che teneva in ostaggio donne e bambini su malmessi carrozzoni del mare ignorando la\u2026 Altro tradizione di accoglienza e valori che l\u2019Italia ha sempre avuto.\nE questo signore, Matteo Salvini, aveva preparato una campagna elettorale a torso nudo nei principali beach club italiani senza alcun riguardo alle regole costituzionali.\nMa il Parlamento non \u00e8 il Papeete.\nOggi, con l\u2019incarico per formare il nuovo governo, Salvini esce politicamente di scena. Qui non si tratta di rivendicare meriti, ma di constatare un fatto: oggi \u00e8 realt\u00e0 ci\u00f2 che un mese fa sembrava impossibile. E questo \u00e8 un bene per chi crede che la politica sia civilt\u00e0 e non truce scontro di violenza verbale. Molto \u00e8 ancora da fare, molte le contraddizioni, molti i problemi aperti. Ma intanto: Istituzioni 1 - Populismo 0", "post_text": "Guardiamo i fatti. All\u2019inizio di agosto il Paese era in mano a un presunto Ministro dell\u2019Interno, che usava linguaggio di odio contro il diverso, che chiedeva pieni poteri, che isolava l\u2019Italia nei tavoli internazionali, che non chiariva il rapporto con la Russia, che teneva in ostaggio donne e bambini su malmessi carrozzoni del mare ignorando la\u2026 Altro tradizione di accoglienza e valori che l\u2019Italia ha sempre avuto.\nE questo signore, Matteo Salvini, aveva preparato una campagna elettorale a torso nudo nei principali beach club italiani senza alcun riguardo alle regole costituzionali.\nMa il Parlamento non \u00e8 il Papeete.\nOggi, con l\u2019incarico per formare il nuovo governo, Salvini esce politicamente di scena. Qui non si tratta di rivendicare meriti, ma di constatare un fatto: oggi \u00e8 realt\u00e0 ci\u00f2 che un mese fa sembrava impossibile. E questo \u00e8 un bene per chi crede che la politica sia civilt\u00e0 e non truce scontro di violenza verbale. Molto \u00e8 ancora da fare, molte le contraddizioni, molti i problemi aperti. Ma intanto: Istituzioni 1 - Populismo 0", "shared_text": "", "time": "2019-08-29 09:04:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156968864389915&id=113335124914", "link": null} +{"post_id": "10156966715514915", "text": "Quando si forma un Governo \u00e8 normale che si affaccino ambizioni, richieste, desideri. Ma questo Governo nasce sulla base di una emergenza: evitare che le tasse salgano e che l\u2019Italia vada in recessione. \u00c8 un atto di servizio al Paese, innanzitutto. Per questo invito tutti a mettere da parte le ambizioni personali e dare una mano per il bene comune.\u2026 Altro Non chiedo che tutti facciano un passo indietro come ho fatto io: basta che si tenga al centro l\u2019obiettivo che \u00e8 quello di mettere in sicurezza le istituzioni democratiche e i risparmi degli italiani. Vi garantisco che costa fatica ignorare insulti e offese, ma si fa politica con i sentimenti e non con i risentimenti.\nTutto \u00e8 cominciato perch\u00e9 qualcuno ha chiesto \u201ci pieni poteri\u201d. Il potere non \u00e8 sostantivo: il potere \u00e8 un verbo, poter cambiare le cose. Mettiamoci a servizio provando a dare senza chiedere. E tutto sar\u00e0 pi\u00f9 semplice", "post_text": "Quando si forma un Governo \u00e8 normale che si affaccino ambizioni, richieste, desideri. Ma questo Governo nasce sulla base di una emergenza: evitare che le tasse salgano e che l\u2019Italia vada in recessione. \u00c8 un atto di servizio al Paese, innanzitutto. Per questo invito tutti a mettere da parte le ambizioni personali e dare una mano per il bene comune.\u2026 Altro Non chiedo che tutti facciano un passo indietro come ho fatto io: basta che si tenga al centro l\u2019obiettivo che \u00e8 quello di mettere in sicurezza le istituzioni democratiche e i risparmi degli italiani. Vi garantisco che costa fatica ignorare insulti e offese, ma si fa politica con i sentimenti e non con i risentimenti.\nTutto \u00e8 cominciato perch\u00e9 qualcuno ha chiesto \u201ci pieni poteri\u201d. Il potere non \u00e8 sostantivo: il potere \u00e8 un verbo, poter cambiare le cose. Mettiamoci a servizio provando a dare senza chiedere. E tutto sar\u00e0 pi\u00f9 semplice", "shared_text": "", "time": "2019-08-28 13:23:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156966715514915&id=113335124914", "link": null} +{"post_id": "10156962950414915", "text": "Ascoltando la conferenza stampa del prossimo ex ministro dell\u2019Interno ho come l\u2019impressione che Salvini sia leggermente ossessionato da me. E dire che questo caos l\u2019ha fatto tutto da solo. Relax, omonimo #NoTax #NoIva", "post_text": "Ascoltando la conferenza stampa del prossimo ex ministro dell\u2019Interno ho come l\u2019impressione che Salvini sia leggermente ossessionato da me. E dire che questo caos l\u2019ha fatto tutto da solo. Relax, omonimo #NoTax #NoIva", "shared_text": "", "time": "2019-08-26 20:57:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156962950414915&id=113335124914", "link": null} +{"post_id": "10156961921694915", "text": "L\u2019Europa deve cambiare linea economica adesso. In Germania arriva la recessione: L\u2019export non basta pi\u00f9. La Brexit sar\u00e0 un disastro per tutti. Lo scontro \ud83c\uddfa\ud83c\uddf8 \ud83c\udde8\ud83c\uddf3 ci vede alla finestra. Ora \u00e8 tempo di investimenti e non austerity. Se \ud83c\uddee\ud83c\uddf9 manda a casa Salvini, possiamo tornare protagonisti. Adesso", "post_text": "L\u2019Europa deve cambiare linea economica adesso. In Germania arriva la recessione: L\u2019export non basta pi\u00f9. La Brexit sar\u00e0 un disastro per tutti. Lo scontro \ud83c\uddfa\ud83c\uddf8 \ud83c\udde8\ud83c\uddf3 ci vede alla finestra. Ora \u00e8 tempo di investimenti e non austerity. Se \ud83c\uddee\ud83c\uddf9 manda a casa Salvini, possiamo tornare protagonisti. Adesso", "shared_text": "", "time": "2019-08-26 12:19:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156961921694915&id=113335124914", "link": null} +{"post_id": "10156960613069915", "text": "Il vincitore della prima giornata di campionato ha un nome e un cognome, comunque vadano i risultati finali. Si chiama Sinisa Mihajlovic. Un grande lottatore, un gigante (anche) contro la leucemia. Emozione, rispetto, onore", "post_text": "Il vincitore della prima giornata di campionato ha un nome e un cognome, comunque vadano i risultati finali. Si chiama Sinisa Mihajlovic. Un grande lottatore, un gigante (anche) contro la leucemia. Emozione, rispetto, onore", "shared_text": "", "time": "2019-08-25 22:09:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/69599331_10156960613049915_2997551924640743424_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=vuWrkqdcJigAQlJAyZMNW9rmQQKD03T5gqpR2B7bw9ralagp7qNoJLIfw&_nc_ht=scontent-cdt1-1.xx&oh=9d9663e0394623215ea6c82b56cfb746&oe=5E4A131E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156960613069915&id=113335124914", "link": null} +{"post_id": "10156960333264915", "text": "Ci\u00f2 che sta avvenendo in Amazzonia esige una risposta forte di tutta la comunit\u00e0 internazionale. Dire che \u00e8 la colpa di ci\u00f2 che accade \u00e8 delle ONG \u00e8 ridicolo. Dal G7 alle Nazioni Unite, serve l\u2019impegno di tutti per fermare la tragedia", "post_text": "Ci\u00f2 che sta avvenendo in Amazzonia esige una risposta forte di tutta la comunit\u00e0 internazionale. Dire che \u00e8 la colpa di ci\u00f2 che accade \u00e8 delle ONG \u00e8 ridicolo. Dal G7 alle Nazioni Unite, serve l\u2019impegno di tutti per fermare la tragedia", "shared_text": "", "time": "2019-08-25 19:53:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/69375285_10156960333194915_8524627999356616704_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=UpDz52iqnVcAQnQoOFucH-rVz55DUzl49UHBYB9s0CflK0fhkaivRIHpg&_nc_ht=scontent-cdt1-1.xx&oh=b12b2fa7a9566035add8f59d92aa0c4f&oe=5E8B1CEA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156960333264915&id=113335124914", "link": null} +{"post_id": "10156957711679915", "text": "Salvini ha chiesto PIENI POTERI e oggi si \u00e8 detto \u201cPronto a tutto purch\u00e9 non torni Renzi\u201d\u2019. \u00c8 ossessionato. Ma rispetto a quindici giorni fa adesso \u00e8 anche in un angolo, quasi ko. Abbiamo infatti proposto un Governo per evitare che aumentino le tasse, che arrivi la recessione, che saltino i consumi. L\u2019abbiamo fatto senza chiedere nulla per noi ma facendo una proposta per il bene comune. Mi auguro che prevalga la responsabilit\u00e0. E che si pensi all\u2019Italia, non all\u2019interesse dei singoli.", "post_text": "Salvini ha chiesto PIENI POTERI e oggi si \u00e8 detto \u201cPronto a tutto purch\u00e9 non torni Renzi\u201d\u2019. \u00c8 ossessionato. Ma rispetto a quindici giorni fa adesso \u00e8 anche in un angolo, quasi ko. Abbiamo infatti proposto un Governo per evitare che aumentino le tasse, che arrivi la recessione, che saltino i consumi. L\u2019abbiamo fatto senza chiedere nulla per noi ma facendo una proposta per il bene comune. Mi auguro che prevalga la responsabilit\u00e0. E che si pensi all\u2019Italia, non all\u2019interesse dei singoli.", "shared_text": "", "time": "2019-08-24 18:56:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156957711679915&id=113335124914", "link": null} +{"post_id": "10156957419064915", "text": "La scuola #Meritare l\u2019Italia ha visto 250 ragazze e ragazzi studiare, sognare, conoscere, approfondire. Che meraviglia: questa \u00e8 la politica. Altro che le chiacchiere, il populismo, la demagogia. Il tempo che\u2026 Altro abbiamo investito insieme a questi ragazzi \u00e8 tempo di qualit\u00e0 che semina speranza. Sono orgoglioso di aver investito il mio\nstipendio di senatore di agosto per consentire a questi ragazzi di incontrare persone di livello. Lascio le polemiche a chi le fa di professione: io sono stato felice di aver passato quattro giorni con questi ragazzi", "post_text": "La scuola #Meritare l\u2019Italia ha visto 250 ragazze e ragazzi studiare, sognare, conoscere, approfondire. Che meraviglia: questa \u00e8 la politica. Altro che le chiacchiere, il populismo, la demagogia. Il tempo che\u2026 Altro abbiamo investito insieme a questi ragazzi \u00e8 tempo di qualit\u00e0 che semina speranza. Sono orgoglioso di aver investito il mio\nstipendio di senatore di agosto per consentire a questi ragazzi di incontrare persone di livello. Lascio le polemiche a chi le fa di professione: io sono stato felice di aver passato quattro giorni con questi ragazzi", "shared_text": "", "time": "2019-08-24 16:32:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/69162738_10156957418989915_4161456944818683904_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=q-Vjnc7S-18AQnXNQ0Bi_B_eI3IX3m8cuRBtYtHYj-db2XX-DJoEBtMbA&_nc_ht=scontent-cdt1-1.xx&oh=3133b6886454e24c074acdc66ec9552e&oe=5E79F54C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156957419064915&id=113335124914", "link": null} +{"post_id": "10156957008999915", "text": "La notte di Amatrice e degli altri territori colpiti dal sisma rester\u00e0 per sempre nel mio cuore, ferita mai cicatrizzata, dolore ancora presente. Sono passati tre anni e sembra ieri.\nA chi insiste con le\u2026 Altro FakeNews e le polemiche assurde dico che ho fatto il premier per tre mesi dopo il terremoto. Prendermi gli insulti per ci\u00f2 che non ha funzionato nei tre anni successivi, non nei tre mesi, mi sembra ingiusto.\nMa lasciamo stare gli insulti e le FakeNews: l\u2019unico modo per ripartire ed evitare le polemiche \u00e8 dare TUTTI una mano nell\u2019ambito delle proprie responsabilit\u00e0. Il dolore delle famiglie delle 299 vittime non avr\u00e0 mai fine: almeno onoriamo la memoria di chi ha perso la vita ricostruendo senza polemiche.\nTutti insieme.", "post_text": "La notte di Amatrice e degli altri territori colpiti dal sisma rester\u00e0 per sempre nel mio cuore, ferita mai cicatrizzata, dolore ancora presente. Sono passati tre anni e sembra ieri.\nA chi insiste con le\u2026 Altro FakeNews e le polemiche assurde dico che ho fatto il premier per tre mesi dopo il terremoto. Prendermi gli insulti per ci\u00f2 che non ha funzionato nei tre anni successivi, non nei tre mesi, mi sembra ingiusto.\nMa lasciamo stare gli insulti e le FakeNews: l\u2019unico modo per ripartire ed evitare le polemiche \u00e8 dare TUTTI una mano nell\u2019ambito delle proprie responsabilit\u00e0. Il dolore delle famiglie delle 299 vittime non avr\u00e0 mai fine: almeno onoriamo la memoria di chi ha perso la vita ricostruendo senza polemiche.\nTutti insieme.", "shared_text": "", "time": "2019-08-24 12:57:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/68893286_10156957008904915_4921090136671780864_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=iJfkOzrJS_MAQm3wIOOgrtLLtYLc1qxiRrtqc5yldBCAiIEDVIzPNNvbw&_nc_ht=scontent-cdt1-1.xx&oh=9f422d66e8b99b2abbf50b7d47cc99b9&oe=5E491420", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156957008999915&id=113335124914", "link": null} +{"post_id": "10156954879114915", "text": "Roberto Cingolani \u00e8 stato per 12 anni l\u2019anima del\u2019IIT di Genova, centro di eccellenza mondiale. La sua lezione oggi ai ragazzi di #Meritare \u00e8 stata straordinaria: intelligenza artificiale, innovazione, ricerca,\u2026 Altro robot, prevenzione e sostenibilit\u00e0. Vedere 250 ragazzi discutere senza tregua di argomenti tosti con competenza e qualit\u00e0 ripaga da tante polemiche ridicole. Le mie idee sulla situazione politica le ho dette chiare in varie interviste, mettendoci la faccia. Ora mi impegno sulla formazione politica investendo lo stipendio di un mese per permettere a giovani Under30 di studiare, approfondire, conoscere.\nSono molto felice di essere con questi ragazzi al Ciocco, ragazzi che dimostrano di Meritare l\u2019Italia. Per me zero polemiche e tanta politica", "post_text": "Roberto Cingolani \u00e8 stato per 12 anni l\u2019anima del\u2019IIT di Genova, centro di eccellenza mondiale. La sua lezione oggi ai ragazzi di #Meritare \u00e8 stata straordinaria: intelligenza artificiale, innovazione, ricerca,\u2026 Altro robot, prevenzione e sostenibilit\u00e0. Vedere 250 ragazzi discutere senza tregua di argomenti tosti con competenza e qualit\u00e0 ripaga da tante polemiche ridicole. Le mie idee sulla situazione politica le ho dette chiare in varie interviste, mettendoci la faccia. Ora mi impegno sulla formazione politica investendo lo stipendio di un mese per permettere a giovani Under30 di studiare, approfondire, conoscere.\nSono molto felice di essere con questi ragazzi al Ciocco, ragazzi che dimostrano di Meritare l\u2019Italia. Per me zero polemiche e tanta politica", "shared_text": "", "time": "2019-08-23 16:56:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/69339346_10156954878584915_4053489447046479872_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=T5XGIdiKBlkAQk6LWUkVunbqXpH_iK86vsIOtYbFcsM6doN06Fch2e1nw&_nc_ht=scontent-cdt1-1.xx&oh=9160878007bb83d98772e2c54214a3cf&oe=5E83FD41", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156954879114915&id=113335124914", "link": null} +{"post_id": "10156954249609915", "text": "Terzo giorno di scuola Meritare l\u2019Italia. Padre Francesco Occhetta, colonna della Civilt\u00e0 Cattolica, ha aperto la giornata parlando di come ricostruire la politica ai tempi del populismo. Adesso tocca a Roberto\u2026 Altro Cingolani, uno dei pi\u00f9 importanti innovatori italiani, esperto di robot, intelligenza artificiale, futuro. Bello, bellissimo vedere ragazze e ragazzi discutere in modo libero di tutto.", "post_text": "Terzo giorno di scuola Meritare l\u2019Italia. Padre Francesco Occhetta, colonna della Civilt\u00e0 Cattolica, ha aperto la giornata parlando di come ricostruire la politica ai tempi del populismo. Adesso tocca a Roberto\u2026 Altro Cingolani, uno dei pi\u00f9 importanti innovatori italiani, esperto di robot, intelligenza artificiale, futuro. Bello, bellissimo vedere ragazze e ragazzi discutere in modo libero di tutto.", "shared_text": "", "time": "2019-08-23 11:45:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/68883526_10156954249569915_4427443715409182720_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=azK-0VQ-ez8AQnm0WWnAmBBv08RkSGPaw7Cp65qaE_cBKGCwP9yEo_mQQ&_nc_ht=scontent-cdt1-1.xx&oh=f56b50e252bca7cceadffed61cae4cab&oe=5E8B5FFE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156954249609915&id=113335124914", "link": null} +{"post_id": "10156953128914915", "text": "Con la bravissima Milena Bertolini, ct della nazionale femminile di calcio e il presidente FIGC Gravina. Le ragazze ci hanno fatto innamorare di nuovo del calcio. E del nostro Paese #Meritare", "post_text": "Con la bravissima Milena Bertolini, ct della nazionale femminile di calcio e il presidente FIGC Gravina. Le ragazze ci hanno fatto innamorare di nuovo del calcio. E del nostro Paese #Meritare", "shared_text": "", "time": "2019-08-22 23:12:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/69442768_10156953128814915_3020362526014570496_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=iUvaoUN51msAQkEP-g34c78Wz3kgBOwWsonHxjsGVEPjBO32nXzQGtrmA&_nc_ht=scontent-cdt1-1.xx&oh=5e3cd004273d084381feb69693e0deb9&oe=5E83A408", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156953128914915&id=113335124914", "link": null} +{"post_id": "10156952807374915", "text": "Prima di ascoltare le sagge parole del Presidente Mattarella pausa sportiva con i ragazzi della scuola #Meritare l\u2019Italia. Stasera incontro con la ct della Nazionale di calcio femminile Milena Bertolini e il Presidente Gravina", "post_text": "Prima di ascoltare le sagge parole del Presidente Mattarella pausa sportiva con i ragazzi della scuola #Meritare l\u2019Italia. Stasera incontro con la ct della Nazionale di calcio femminile Milena Bertolini e il Presidente Gravina", "shared_text": "", "time": "2019-08-22 20:50:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/68825281_10156952805924915_4103509516643991552_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=GfZLFDaDWOQAQmFStRK0lmqVm0XkR_hnwnDLR6J6adxX-jwr2Y0775g6A&_nc_ht=scontent-cdt1-1.xx&oh=51e0ef4e027526ba26cd6c85443d5211&oe=5E8233F3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156952807374915&id=113335124914", "link": null} +{"post_id": "10156952263299915", "text": "Seconda giornata di #Meritare, la scuola estiva di politica al Ciocco. Prima l\u2019economia con Fortis, poi la filosofia con Briguglia, quindi il sociale con don Andrea del Cottolengo. Oltre 200 ragazzi Under30 che studiano e si impegnano, bellissimo!", "post_text": "Seconda giornata di #Meritare, la scuola estiva di politica al Ciocco. Prima l\u2019economia con Fortis, poi la filosofia con Briguglia, quindi il sociale con don Andrea del Cottolengo. Oltre 200 ragazzi Under30 che studiano e si impegnano, bellissimo!", "shared_text": "", "time": "2019-08-22 17:09:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/68654872_10156952261824915_2426411515830599680_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=ZXErxh1vUIgAQn1cpAzB942MwLgrrtRzhiZ4eFbKuTo8bPquJeaiOejAw&_nc_ht=scontent-cdt1-1.xx&oh=a265da16b333f9972e88ec834efba08f&oe=5E493D44", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156952263299915&id=113335124914", "link": null} +{"post_id": "10156951658659915", "text": "Seconda giornata di Meritare l'Italia. Dopo la riflessione sulle citt\u00e0 con Isabella, la corsa mattutina, adesso Ernesto Maria, padre del fisco 2.0 e della fatturazione elettronica.\nPer fare politica bisogna studiare, conoscere, capire.", "post_text": "Seconda giornata di Meritare l'Italia. Dopo la riflessione sulle citt\u00e0 con Isabella, la corsa mattutina, adesso Ernesto Maria, padre del fisco 2.0 e della fatturazione elettronica.\nPer fare politica bisogna studiare, conoscere, capire.", "shared_text": "", "time": "2019-08-22 11:06:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/69761288_10156951658629915_2973453722136346624_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=B9NXypUbuK0AQnu_Ws9pSqXppoX1m-aH1u90TtovIofpL1tHi0SNHinxg&_nc_ht=scontent-cdt1-1.xx&oh=19f7be84819442ed7911c67c09dd007b&oe=5E7F7053", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156951658659915&id=113335124914", "link": null} +{"post_id": "10156950867684915", "text": "Bellissimo il clima della prima giornata di #Meritare l\u2019Italia, scuola estiva di politica per Under30. E che brava la sindaca di San Lazzaro, Isabella Conti: una lezione fantastica su citt\u00e0, bellezza e bisogni", "post_text": "Bellissimo il clima della prima giornata di #Meritare l\u2019Italia, scuola estiva di politica per Under30. E che brava la sindaca di San Lazzaro, Isabella Conti: una lezione fantastica su citt\u00e0, bellezza e bisogni", "shared_text": "", "time": "2019-08-22 00:54:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/69497804_10156950867644915_493683250607161344_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=G6frYPVguRcAQl83eAIsGBWD6HWsPNXA-ORGaPW_LkvZAES6Jj1YO3Kng&_nc_ht=scontent-cdt1-1.xx&oh=db2807fe1a9ec4deba99cc4c6e44c3a3&oe=5E81FEC8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156950867684915&id=113335124914", "link": null} +{"post_id": "10156949801709915", "text": "Salvini continua a citarmi, ossessivo e ossessionato. Mi ritiene responsabile del fatto che tra qualche ora lascer\u00e0 il\nViminale? Lo capisco. Ma quando leggo che il suo braccio destro Borghi dice a un giornale\u2026 Altro tedesco che \u201cuscire dall\u2019Euro farebbe bene all\u2019Italia\u201d sono sempre pi\u00f9 convinto di quello che ho e che abbiamo fatto. Averti mandato a casa, caro Omonimo, \u00e8 per me un grande onore: fattene una ragione.", "post_text": "Salvini continua a citarmi, ossessivo e ossessionato. Mi ritiene responsabile del fatto che tra qualche ora lascer\u00e0 il\nViminale? Lo capisco. Ma quando leggo che il suo braccio destro Borghi dice a un giornale\u2026 Altro tedesco che \u201cuscire dall\u2019Euro farebbe bene all\u2019Italia\u201d sono sempre pi\u00f9 convinto di quello che ho e che abbiamo fatto. Averti mandato a casa, caro Omonimo, \u00e8 per me un grande onore: fattene una ragione.", "shared_text": "", "time": "2019-08-21 15:36:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/69040230_10156949801679915_5133305329760600064_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=ExQP1IeQn70AQlBDfdZR8llzdW0TFA2mHhAROfFClKP02JwYFSHVaOxrQ&_nc_ht=scontent-cdt1-1.xx&oh=4ce0e41a841dec3d8ee12c64e15b16da&oe=5E483D79", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156949801709915&id=113335124914", "link": null} +{"post_id": "10156949698194915", "text": "Sono in partenza verso il Ciocco (Lucca) dove abbiamo organizzato quattro giorni di formazione politica con oltre 200 ragazzi, Under 30. Perch\u00e9 la politica \u00e8 innanzitutto studiare, conoscere, approfondire.\u2026 Altro Avevamo pensato a questo appuntamento in un altro momento, senza crisi di governo all\u2019orizzonte. Ma a maggior ragione lo facciamo ancora pi\u00f9 convinti: se vogliamo combattere il salvinismo e la superficialit\u00e0 dobbiamo educare i ragazzi all\u2019impegno. Primo intervento stasera di una giovane e bravissima sindaca, Isabella Conti. Meritare l\u2019Italia, questo il titolo della scuola estiva che inizia stasera. Meritare il Paese pi\u00f9 bello del mondo. A dopo \ud83d\ude42", "post_text": "Sono in partenza verso il Ciocco (Lucca) dove abbiamo organizzato quattro giorni di formazione politica con oltre 200 ragazzi, Under 30. Perch\u00e9 la politica \u00e8 innanzitutto studiare, conoscere, approfondire.\u2026 Altro Avevamo pensato a questo appuntamento in un altro momento, senza crisi di governo all\u2019orizzonte. Ma a maggior ragione lo facciamo ancora pi\u00f9 convinti: se vogliamo combattere il salvinismo e la superficialit\u00e0 dobbiamo educare i ragazzi all\u2019impegno. Primo intervento stasera di una giovane e bravissima sindaca, Isabella Conti. Meritare l\u2019Italia, questo il titolo della scuola estiva che inizia stasera. Meritare il Paese pi\u00f9 bello del mondo. A dopo \ud83d\ude42", "shared_text": "", "time": "2019-08-21 14:35:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/68651628_10156949698129915_4870209729290305536_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=PId3C6U1IOMAQk_tgyBSA9qskxwP8cQla3YyRerlGR8LT59tIe_W6U9fA&_nc_ht=scontent-cdt1-1.xx&oh=3b963d9a672835f6c2617d1b3406b1a2&oe=5E85183D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156949698194915&id=113335124914", "link": null} +{"post_id": "10156949105679915", "text": "Quella di ieri \u00e8 stata una giornata molto dura anche dal punto di vista personale. Ma il risultato \u00e8 ottimo: uno dei peggiori governi della storia repubblicana \u00e8 andato a casa e il ministro Salvini in appena dieci giorni \u00e8 diventato il passato. C\u2019\u00e8 molto da fare, adesso, ma intanto buongiorno a tutti!\n\u00c8 davvero un buon giorno.", "post_text": "Quella di ieri \u00e8 stata una giornata molto dura anche dal punto di vista personale. Ma il risultato \u00e8 ottimo: uno dei peggiori governi della storia repubblicana \u00e8 andato a casa e il ministro Salvini in appena dieci giorni \u00e8 diventato il passato. C\u2019\u00e8 molto da fare, adesso, ma intanto buongiorno a tutti!\n\u00c8 davvero un buon giorno.", "shared_text": "", "time": "2019-08-21 07:36:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/68997713_10156949105649915_3405218280367980544_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=QNpKA_SvQtMAQl2KGUlI9PpPmOzx9DahTgk02p8jEH0QiqkYOsCXtZ2eg&_nc_ht=scontent-cdt1-1.xx&oh=a8a8582324bb6960f5c0ecedabdeabe8&oe=5E51362D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156949105679915&id=113335124914", "link": null} +{"post_id": "468179250683954", "text": "In diretta dal Senato", "post_text": "In diretta dal Senato", "shared_text": "", "time": "2019-08-20 16:30:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=468179250683954&id=113335124914", "link": null} +{"post_id": "10156947473449915", "text": "Giuseppe Conte si dimette. Il suo governo ha fallito ma il presidente del consiglio lascia con stile. Tra poco intervengo in Senato\n#maratonamentana", "post_text": "Giuseppe Conte si dimette. Il suo governo ha fallito ma il presidente del consiglio lascia con stile. Tra poco intervengo in Senato\n#maratonamentana", "shared_text": "", "time": "2019-08-20 16:01:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156947473449915&id=113335124914", "link": null} +{"post_id": "10156946834504915", "text": "Buongiorno a tutti. Perch\u00e9 oggi \u00e8 davvero una buona giornata: si prende atto del fallimento del Governo del Cambiamento. Noi lo abbiamo detto ogni giorno in questi mesi, loro lo hanno capito solo nelle ultime\u2026 Altro settimane.\nE oggi il Governo Populista annuncia le dimissioni. Si chiude dopo 14 mesi una delle peggiori esperienze della storia repubblicana. Hanno preso il PIL a + 1.7% e lo hanno azzerato. Hanno detto \u201cLa pacchia \u00e8 finita\u201d a migliaia di ragazze e ragazzi in fuga dalla guerra e dalla fame. Hanno isolato l\u2019Italia a livello internazionale e nei tavoli europei. Hanno vinto con la propaganda e le FakeNews, ma dopo 14 mesi sono stati sconfitti dalla realt\u00e0.\nVi ricordate quando dicevano: con questa opposizione governeremo 30 anni? Bene, con questa opposizione hanno governato (si fa per dire) 14 mesi. E tutta Europa adesso sa che i populisti funzionano in campagna elettorale, falliscono al Governo. Adesso un Governo Istituzionale per evitare l\u2019aumento dell\u2019IVA e per riportare l\u2019Italia in Europa: come al solito tocca rimediare ai loro danni.", "post_text": "Buongiorno a tutti. Perch\u00e9 oggi \u00e8 davvero una buona giornata: si prende atto del fallimento del Governo del Cambiamento. Noi lo abbiamo detto ogni giorno in questi mesi, loro lo hanno capito solo nelle ultime\u2026 Altro settimane.\nE oggi il Governo Populista annuncia le dimissioni. Si chiude dopo 14 mesi una delle peggiori esperienze della storia repubblicana. Hanno preso il PIL a + 1.7% e lo hanno azzerato. Hanno detto \u201cLa pacchia \u00e8 finita\u201d a migliaia di ragazze e ragazzi in fuga dalla guerra e dalla fame. Hanno isolato l\u2019Italia a livello internazionale e nei tavoli europei. Hanno vinto con la propaganda e le FakeNews, ma dopo 14 mesi sono stati sconfitti dalla realt\u00e0.\nVi ricordate quando dicevano: con questa opposizione governeremo 30 anni? Bene, con questa opposizione hanno governato (si fa per dire) 14 mesi. E tutta Europa adesso sa che i populisti funzionano in campagna elettorale, falliscono al Governo. Adesso un Governo Istituzionale per evitare l\u2019aumento dell\u2019IVA e per riportare l\u2019Italia in Europa: come al solito tocca rimediare ai loro danni.", "shared_text": "", "time": "2019-08-20 08:36:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/69019139_10156946834484915_213329749987033088_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=ueuoikns_YoAQkEPyQjgX_2HzLpppIpPsYRdpVvCe58Vg0SNd_Ilqlzlw&_nc_ht=scontent-cdt1-1.xx&oh=ba736c08c64a609a8793deae29ef6dfe&oe=5E45EBF1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156946834504915&id=113335124914", "link": null} +{"post_id": "10156945609499915", "text": "Sono pronto a sfidare Salvini alle elezioni nel collegio di Firenze o in quello di Milano, scelga lui. Ma prima viene il Paese. Va evitato l\u2019aumento dell\u2019IVA. Prima i risparmi degli italiani, poi le ambizioni di parte. Poi pronto al confronto nel collegio e in TV", "post_text": "Sono pronto a sfidare Salvini alle elezioni nel collegio di Firenze o in quello di Milano, scelga lui. Ma prima viene il Paese. Va evitato l\u2019aumento dell\u2019IVA. Prima i risparmi degli italiani, poi le ambizioni di parte. Poi pronto al confronto nel collegio e in TV", "shared_text": "", "time": "2019-08-19 20:09:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156945609499915&id=113335124914", "link": null} +{"post_id": "10156945020029915", "text": "L\u2019allarme della Bundesbank sull\u2019economia tedesca e sul crollo della produzione industriale costituisce un problema enorme per l\u2019Italia. Enorme. Anche per questo non voglio rischiare per colpa delle elezioni anticipate l\u2019aumento dell\u2019IVA al 25%. Non sarebbe soltanto recessione: sarebbe un disastro peggiore del 2011. Prima i risparmi degli italiani, poi le ambizioni di Capitan Fracassa", "post_text": "L\u2019allarme della Bundesbank sull\u2019economia tedesca e sul crollo della produzione industriale costituisce un problema enorme per l\u2019Italia. Enorme. Anche per questo non voglio rischiare per colpa delle elezioni anticipate l\u2019aumento dell\u2019IVA al 25%. Non sarebbe soltanto recessione: sarebbe un disastro peggiore del 2011. Prima i risparmi degli italiani, poi le ambizioni di Capitan Fracassa", "shared_text": "", "time": "2019-08-19 14:38:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156945020029915&id=113335124914", "link": null} +{"post_id": "10156944786279915", "text": "La petizione per la sfiducia a Salvini sta raggiungendo quota 70 mila. Chi vuole firmarla dovrebbe sbrigarsi.\nPerch\u00e9 credo proprio che da domani non servir\u00e0 pi\u00f9 \ud83d\ude07.\nUltimo sforzo: firma e fai firmare, raggiungiamo quota 75 mila (bit.ly/SfiduciaperSalvini)?", "post_text": "La petizione per la sfiducia a Salvini sta raggiungendo quota 70 mila. Chi vuole firmarla dovrebbe sbrigarsi.\nPerch\u00e9 credo proprio che da domani non servir\u00e0 pi\u00f9 \ud83d\ude07.\nUltimo sforzo: firma e fai firmare, raggiungiamo quota 75 mila (bit.ly/SfiduciaperSalvini)?", "shared_text": "", "time": "2019-08-19 11:51:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156944786279915&id=113335124914", "link": "https://bit.ly/SfiduciaperSalvini?fbclid=IwAR2Mu_2xtyxyYm1LVq0-IutLnR8KhI3IcVZmw9-PKjXYiq6IXHrh3w_OQYE"} +{"post_id": "10156943746694915", "text": "\u201cSalvini e Renzi sono la stessa cosa.\u201d\nLo dicono da anni alcuni miei compagni di partito che, pur di fare la guerra a me, col fuoco amico hanno spalancato le porte a #CapitanFracassa.\nLo dice Di Battista.\nE oggi lo dice anche la copertina dell\u2019Espresso.\nNon vale la pena arrabbiarsi, amici miei: per una certa sinistra io rester\u00f2 sempre il Nemico da\u2026 Altro abbattere.\nE i giornali si rispettano sempre: anche quando parlano male di te, soprattutto quando parlano male di te.\nBasterebbe tuttavia un po\u2019 di onest\u00e0 intellettuale per capire che il paragone non sta in piedi.\nSalvini lo sa e infatti mi soffre: ha sparato oggi a palle incatenate contro di me per tutto il giorno, ma per i puristi della sinistra\u2026 Altro", "post_text": "\u201cSalvini e Renzi sono la stessa cosa.\u201d\nLo dicono da anni alcuni miei compagni di partito che, pur di fare la guerra a me, col fuoco amico hanno spalancato le porte a #CapitanFracassa.\nLo dice Di Battista.\nE oggi lo dice anche la copertina dell\u2019Espresso.\nNon vale la pena arrabbiarsi, amici miei: per una certa sinistra io rester\u00f2 sempre il Nemico da\u2026 Altro abbattere.\nE i giornali si rispettano sempre: anche quando parlano male di te, soprattutto quando parlano male di te.\nBasterebbe tuttavia un po\u2019 di onest\u00e0 intellettuale per capire che il paragone non sta in piedi.\nSalvini lo sa e infatti mi soffre: ha sparato oggi a palle incatenate contro di me per tutto il giorno, ma per i puristi della sinistra\u2026 Altro", "shared_text": "", "time": "2019-08-18 23:42:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156943746694915&id=113335124914", "link": null} +{"post_id": "10156943376349915", "text": "La Fiorentina soffre ma va avanti in Coppa Italia. E io allo Stadio faccio festa con l\u2019unico Capitano, il mitico Giancarlo Antognoni. #AleViola", "post_text": "La Fiorentina soffre ma va avanti in Coppa Italia. E io allo Stadio faccio festa con l\u2019unico Capitano, il mitico Giancarlo Antognoni. #AleViola", "shared_text": "", "time": "2019-08-18 20:48:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/68538822_10156943376144915_4837917815811866624_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=prPH-PmdLS8AQneSc5G5pK6KwRzXzO1rxFU7uqSzFzLxzUi4ADkT1MTPA&_nc_ht=scontent-cdt1-1.xx&oh=4cf2ca43d73b9b3559c6be0d7e84c20e&oe=5E3ED0B4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156943376349915&id=113335124914", "link": null} +{"post_id": "10156943211299915", "text": "Salvini dice che \u00e8 tutta colpa mia. Io non so alla fine se si dimetter\u00e0 \u201cper colpa dei renziani\u201d, come dice lui. Ma se accadesse lo riterrei un grande onore. Un Ministro dell\u2019Interno deve garantire la sicurezza, non seminare l\u2019odio, come lui sta facendo anche in queste ore. E pi\u00f9 mi attacca, pi\u00f9 mi rende orgoglioso di aver messo la faccia su una battaglia difficile e coraggiosa contro l\u2019uomo che fino a una settimana fa tutti definivano invincibile. Ma che tutti abbiamo scoperto essere solo un uomo pavido e impaurito.", "post_text": "Salvini dice che \u00e8 tutta colpa mia. Io non so alla fine se si dimetter\u00e0 \u201cper colpa dei renziani\u201d, come dice lui. Ma se accadesse lo riterrei un grande onore. Un Ministro dell\u2019Interno deve garantire la sicurezza, non seminare l\u2019odio, come lui sta facendo anche in queste ore. E pi\u00f9 mi attacca, pi\u00f9 mi rende orgoglioso di aver messo la faccia su una battaglia difficile e coraggiosa contro l\u2019uomo che fino a una settimana fa tutti definivano invincibile. Ma che tutti abbiamo scoperto essere solo un uomo pavido e impaurito.", "shared_text": "", "time": "2019-08-18 19:47:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156943211299915&id=113335124914", "link": null} +{"post_id": "10156942432894915", "text": "Ultimi giorni di relax prima del rientro a Roma per la crisi di Governo. Incontri ravvicinati.\nChe bellezza.", "post_text": "Ultimi giorni di relax prima del rientro a Roma per la crisi di Governo. Incontri ravvicinati.\nChe bellezza.", "shared_text": "", "time": "2019-08-18 13:31:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/68706797_10156942432809915_2250384841004548096_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Ix09uyPNFzAAQlzMz6neufssPVGvE68mkypbyV40WVpcni6K5Q_J2zPBA&_nc_ht=scontent-cdt1-1.xx&oh=9407de02ff79605184d0fa1d68a7c0cd&oe=5E4B3C98", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156942432894915&id=113335124914", "link": null} +{"post_id": "10156942260484915", "text": "Oggi Salvini dice: far\u00f2 di tutto pur di non far tornare Renzi al Governo.\nTranquillo, omonimo, io non entro nel Governo Istituzionale. Per decenza delle istituzioni e per la salvezza del Paese mi basta che tu esca il prima possibile. Cos\u00ec l\u2019Italia eviter\u00e0 l\u2019aumento dell\u2019IVA, riprender\u00e0 il ruolo in Europa e ci sar\u00e0 un ministro dell\u2019Interno che finalmente difenda la nostra sicurezza anzich\u00e9 seminare odio.\nIo non torno al Governo, tranquillo. Ma tu quando ti dimetti?", "post_text": "Oggi Salvini dice: far\u00f2 di tutto pur di non far tornare Renzi al Governo.\nTranquillo, omonimo, io non entro nel Governo Istituzionale. Per decenza delle istituzioni e per la salvezza del Paese mi basta che tu esca il prima possibile. Cos\u00ec l\u2019Italia eviter\u00e0 l\u2019aumento dell\u2019IVA, riprender\u00e0 il ruolo in Europa e ci sar\u00e0 un ministro dell\u2019Interno che finalmente difenda la nostra sicurezza anzich\u00e9 seminare odio.\nIo non torno al Governo, tranquillo. Ma tu quando ti dimetti?", "shared_text": "", "time": "2019-08-18 11:27:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156942260484915&id=113335124914", "link": null} +{"post_id": "10156942102664915", "text": "La mia intervista di oggi al Giornale.\nBuona domenica e buon rientro a chi torna dalle vacanze!\nMATTEORENZI.IT\nUn governo istituzionale per rientrare nella UE. Ed ad ottobre la Leopolda. - Matteo Renzi", "post_text": "La mia intervista di oggi al Giornale.\nBuona domenica e buon rientro a chi torna dalle vacanze!", "shared_text": "MATTEORENZI.IT\nUn governo istituzionale per rientrare nella UE. Ed ad ottobre la Leopolda. - Matteo Renzi", "time": "2019-08-18 09:19:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.34.480.251a/p320x320/69236277_23843688201780181_2235858887947321344_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=hAAR7UoIs-oAQlQUMAoIF3n7tACSqMkOQcpxLo8PyyEko5HRrNErcO8pw&_nc_ht=scontent-cdt1-1.xx&oh=135d769c57c0beff0a61f08fc80085fa&oe=5E44AF3D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156942102664915&id=113335124914", "link": "https://www.matteorenzi.it/un-governo-istituzionale-per-rientrare-nella-ue-ed-ad-ottobre-la-leopolda/?fbclid=IwAR1E1zeOgPDkYdVT_cN8cML3kWqCh7cViHT286N2rX9rRLPHLAUEv2jHoH8"} +{"post_id": "10156939894129915", "text": "Oggi i quotidiani sono pieni di innumerevoli retroscena e scenari. In momenti del genere la politica rischia di dare il peggio di s\u00e9. E allora parliamo chiaro: la stella polare delle persone serie \u00e8 il rispetto delle istituzioni e il bene degli italiani. Non gli interessi dei partiti o dei presunti leader. Andare a votare a ottobre con l\u2019effetto di\u2026 Altro aumentare l\u2019IVA al 25% \u00e8 folle. Non possono essere le famiglie a pagare le ambizioni di qualche aspirante leader. E non possiamo condannare l\u2019Italia alla recessione. Per questo serve un Governo Istituzionale che pensi al Paese e non ai destini dei singoli partiti. Un Governo Istituzionale che come prima cosa abbia un Ministro dell\u2019Interno degno di\u2026 Altro", "post_text": "Oggi i quotidiani sono pieni di innumerevoli retroscena e scenari. In momenti del genere la politica rischia di dare il peggio di s\u00e9. E allora parliamo chiaro: la stella polare delle persone serie \u00e8 il rispetto delle istituzioni e il bene degli italiani. Non gli interessi dei partiti o dei presunti leader. Andare a votare a ottobre con l\u2019effetto di\u2026 Altro aumentare l\u2019IVA al 25% \u00e8 folle. Non possono essere le famiglie a pagare le ambizioni di qualche aspirante leader. E non possiamo condannare l\u2019Italia alla recessione. Per questo serve un Governo Istituzionale che pensi al Paese e non ai destini dei singoli partiti. Un Governo Istituzionale che come prima cosa abbia un Ministro dell\u2019Interno degno di\u2026 Altro", "shared_text": "", "time": "2019-08-17 12:32:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156939894129915&id=113335124914", "link": null} +{"post_id": "10156938241899915", "text": "Questa \u00e8 la Chiesa di San Piero in Perticaia, un luogo del cuore per me. Non solo perch\u00e9 \u00e8 un bellissimo esempio di arte ma perch\u00e9 \u00e8 la Chiesa dove da giovane venivo ad ascoltare le omelie di un grande\u2026 Altro sacerdote, monsignor Lorenzo Righi. Oggi correndo mi sono fermato quass\u00f9 a pensare a lui, \u201cal Priore\u201d come lo chiamavamo. E ad ammirare la bellezza delle colline fiorentine. E adesso per par condicio Toscana buttiamoci sul Palio di Siena \ud83c\udfc7", "post_text": "Questa \u00e8 la Chiesa di San Piero in Perticaia, un luogo del cuore per me. Non solo perch\u00e9 \u00e8 un bellissimo esempio di arte ma perch\u00e9 \u00e8 la Chiesa dove da giovane venivo ad ascoltare le omelie di un grande\u2026 Altro sacerdote, monsignor Lorenzo Righi. Oggi correndo mi sono fermato quass\u00f9 a pensare a lui, \u201cal Priore\u201d come lo chiamavamo. E ad ammirare la bellezza delle colline fiorentine. E adesso per par condicio Toscana buttiamoci sul Palio di Siena \ud83c\udfc7", "shared_text": "", "time": "2019-08-16 19:40:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/68246288_10156938241784915_867092122547781632_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=r8ECGAejQ34AQloYbQmIiCFfqtYqjCwHW5xCNhR-U6VTPlUjqEARynvTw&_nc_ht=scontent-cdt1-1.xx&oh=8d5174e55a4ea975b40e1d7da9e6ba40&oe=5E4DFD0B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156938241899915&id=113335124914", "link": null} +{"post_id": "10156937583029915", "text": "In queste ore \u201cgrande \u00e8 la confusione sotto il cielo\u201d e soprattutto nella politica italiana. Riceviamo migliaia di email, persino a Ferragosto si sono formati nuovi comitati, la petizione contro Salvini sta arrivando a quota 60mila (bit.ly/SfiduciaperSalvini). Tutto bellissimo. E tutto anche assurdo: mai vista una crisi gestita cos\u00ec. Se non fosse\u2026 Altro una cosa seria ci sarebbe da ridere! Salvini sente scivolarsi via la poltrona e sa che solo con il potere potr\u00e0 avere ancora un (breve) futuro. Il capitano si \u00e8 impaurito di brutto. E dunque offre tutto a Di Maio. Scene da far impallidire il calciomercato \ud83d\ude31\nAdesso vedremo che cosa far\u00e0 il Movimento Cinque Stelle: pu\u00f2 davvero accadere di tutto. Noi\u2026 Altro", "post_text": "In queste ore \u201cgrande \u00e8 la confusione sotto il cielo\u201d e soprattutto nella politica italiana. Riceviamo migliaia di email, persino a Ferragosto si sono formati nuovi comitati, la petizione contro Salvini sta arrivando a quota 60mila (bit.ly/SfiduciaperSalvini). Tutto bellissimo. E tutto anche assurdo: mai vista una crisi gestita cos\u00ec. Se non fosse\u2026 Altro una cosa seria ci sarebbe da ridere! Salvini sente scivolarsi via la poltrona e sa che solo con il potere potr\u00e0 avere ancora un (breve) futuro. Il capitano si \u00e8 impaurito di brutto. E dunque offre tutto a Di Maio. Scene da far impallidire il calciomercato \ud83d\ude31\nAdesso vedremo che cosa far\u00e0 il Movimento Cinque Stelle: pu\u00f2 davvero accadere di tutto. Noi\u2026 Altro", "shared_text": "", "time": "2019-08-16 13:21:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156937583029915&id=113335124914", "link": "https://bit.ly/SfiduciaperSalvini?fbclid=IwAR0fPxu5Hpb15jMR_VVe6Rv0VUPFa3wtXHNeWocSCt1tXae849g2GClhSvw"} +{"post_id": "10156936054379915", "text": "E alla fine Salvini cambi\u00f2 idea per l\u2019ennesima volta. Fino a domenica scorsa sembrava inarrestabile, chiedeva pieni poteri e dettava la linea, adesso auspica rimpasti e spera di far la pace con i grillini.\nFaceva il gradasso che impone una linea, adesso elemosina un accordo.\nUna farsa senza dignit\u00e0. Un abbraccio a tutti quelli che dicevano che in\u2026 Altro Parlamento non c\u2019\u00e8 opposizione: con la nostra iniziativa parlamentare abbiamo costretto Capitan Fracassa alla sua prima sconfitta della legislatura. Io credo che adesso vada lanciato forte un messaggio da parte di tutti i cittadini, non solo dei parlamentari: Salvini si dimetta, subito.\nFirmiamo e facciamo firmare questa petizione. Siamo intorno a quota 50mila firme. Da qui a marted\u00ec prossimo possiamo ancora crescere. Pi\u00f9 Salvini diventa ridicolo nell\u2019aggrapparsi alla poltrona, pi\u00f9 dobbiamo ricordargli la banale verit\u00e0: ha perso, deve lasciare il Governo.\nFirma e fai firmare!\n(bit.ly/SfiduciaperSalvini)", "post_text": "E alla fine Salvini cambi\u00f2 idea per l\u2019ennesima volta. Fino a domenica scorsa sembrava inarrestabile, chiedeva pieni poteri e dettava la linea, adesso auspica rimpasti e spera di far la pace con i grillini.\nFaceva il gradasso che impone una linea, adesso elemosina un accordo.\nUna farsa senza dignit\u00e0. Un abbraccio a tutti quelli che dicevano che in\u2026 Altro Parlamento non c\u2019\u00e8 opposizione: con la nostra iniziativa parlamentare abbiamo costretto Capitan Fracassa alla sua prima sconfitta della legislatura. Io credo che adesso vada lanciato forte un messaggio da parte di tutti i cittadini, non solo dei parlamentari: Salvini si dimetta, subito.\nFirmiamo e facciamo firmare questa petizione. Siamo intorno a quota 50mila firme. Da qui a marted\u00ec prossimo possiamo ancora crescere. Pi\u00f9 Salvini diventa ridicolo nell\u2019aggrapparsi alla poltrona, pi\u00f9 dobbiamo ricordargli la banale verit\u00e0: ha perso, deve lasciare il Governo.\nFirma e fai firmare!\n(bit.ly/SfiduciaperSalvini)", "shared_text": "", "time": "2019-08-15 20:35:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156936054379915&id=113335124914", "link": "https://bit.ly/SfiduciaperSalvini?fbclid=IwAR3cTcL3NaHjyAcf_WF3mbebD7sxtDmOmUAm5kyl7Sf-5VnnWSOuO9_J_OI"} +{"post_id": "10156935786539915", "text": "Scartabellando tra le foto, un Ferragosto di una quarantina d\u2019anni fa. Ero grasso anche da piccolo.\nDi nuovo auguri a tutti.", "post_text": "Scartabellando tra le foto, un Ferragosto di una quarantina d\u2019anni fa. Ero grasso anche da piccolo.\nDi nuovo auguri a tutti.", "shared_text": "", "time": "2019-08-15 18:43:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/69267337_10156935786444915_7411177450358439936_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=reECKSbiJBAAQnCigSHgSfMmnblKNWYZf9GEcW8kb4W_W5iaCvmzmM17g&_nc_ht=scontent-cdt1-1.xx&oh=4b5998180e66363d04e2c1cfc52faa08&oe=5E3EA9D1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156935786539915&id=113335124914", "link": null} +{"post_id": "10156935372759915", "text": "Anche il premier pro tempore Conte si \u00e8 finalmente reso conto della \u201cslealt\u00e0 istituzionale\u201d di Salvini. Noi lo avevamo detto fin da subito: spiace che Conte se ne sia accorto solo adesso. Ma meglio tardi che mai. Salvini deve dimettersi, subito. Prima lo dicevano solo le opposizioni, adesso lo dicono anche i suoi colleghi di Governo. Chi pensa che Salvini debba andarsene subito, firmi e faccia firmare adesso la petizione che chiede le dimissioni (bit.ly/SfiduciaperSalvini)", "post_text": "Anche il premier pro tempore Conte si \u00e8 finalmente reso conto della \u201cslealt\u00e0 istituzionale\u201d di Salvini. Noi lo avevamo detto fin da subito: spiace che Conte se ne sia accorto solo adesso. Ma meglio tardi che mai. Salvini deve dimettersi, subito. Prima lo dicevano solo le opposizioni, adesso lo dicono anche i suoi colleghi di Governo. Chi pensa che Salvini debba andarsene subito, firmi e faccia firmare adesso la petizione che chiede le dimissioni (bit.ly/SfiduciaperSalvini)", "shared_text": "", "time": "2019-08-15 15:12:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156935372759915&id=113335124914", "link": "https://bit.ly/SfiduciaperSalvini?fbclid=IwAR1e_KWD3M9piQ6vPwjRplY6niGBnLTPyqdWcuQfSc_HrirASo5__INDyyQ"} +{"post_id": "10156934920949915", "text": "Di nuovo auguri di buon Ferragosto a tutti.\nPer chi non riesce a staccarsi dalla politica, qui c'\u00e8 la mia intervista di oggi a Repubblica.\nPer tutti gli altri, solo Auguri!\nMATTEORENZI.IT\n\"Istituzioni a rischio, giusto fare un governo\" - Matteo Renzi", "post_text": "Di nuovo auguri di buon Ferragosto a tutti.\nPer chi non riesce a staccarsi dalla politica, qui c'\u00e8 la mia intervista di oggi a Repubblica.\nPer tutti gli altri, solo Auguri!", "shared_text": "MATTEORENZI.IT\n\"Istituzioni a rischio, giusto fare un governo\" - Matteo Renzi", "time": "2019-08-15 09:49:27", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCqt9tN1bryhfwx&w=476&h=249&url=https%3A%2F%2Fwww.matteorenzi.it%2Fwp-content%2Fuploads%2F2019%2F08%2FScreenshot_2019-08-14-21-35-56-796_com.whatsapp.jpg&cfs=1&jq=75&sx=0&sy=0&sw=1051&sh=550&ext=jpg&_nc_hash=AQAHLxfnJ3nml4UM", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156934920949915&id=113335124914", "link": "https://www.matteorenzi.it/istituzioni-a-rischio-giusto-fare-un-governo/?fbclid=IwAR3o5ayVV1ihPDUd9zs-CYhTP5cGNiepF4pAZM6bEZfC_nyDiUiuYXV38JQ"} +{"post_id": "10156934707109915", "text": "Sar\u00f2 controcorrente anche in questo ma adoro passare il Ferragosto a Firenze. Buona giornata e auguri a tutti, ovunque voi siate. Godetevi questa giornata speciale", "post_text": "Sar\u00f2 controcorrente anche in questo ma adoro passare il Ferragosto a Firenze. Buona giornata e auguri a tutti, ovunque voi siate. Godetevi questa giornata speciale", "shared_text": "", "time": "2019-08-15 07:03:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/69098028_10156934707084915_1925005630557388800_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=9uHSLbDYp9MAQmN607rgI41FGgQuKZkXlzrwjqcRSpatUXjL0wQCf8PkQ&_nc_ht=scontent-cdt1-1.xx&oh=c9ba6dabe6d46a2ab8c917fba372f3da&oe=5E884C2C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156934707109915&id=113335124914", "link": null} +{"post_id": "10156933479064915", "text": "In un Paese civile quando si viene sconfitti in Parlamento ci si dimette. Le dimissioni sono un gesto difficile. Io ci sono passato, vi garantisco che fa male. Ma quello che \u00e8 giusto, \u00e8 giusto. Matteo Salvini\u2026 Altro ha sfidato i parlamentari e il tabellone del Senato ha segnato la sua sconfitta. Ma Capitan Fracassa vuole tenersi stretta la poltrona. Per questo penso giusto che anche nelle ore di vacanza chi vuole mobilitarsi si mobiliti. Avevamo iniziato con i Comitati d\u2019Azione Civile a raccogliere firme per le dimissioni di Salvini. Siamo quasi a quota 40.000. Riprendiamo e arriviamo entro il 20 agosto almeno a 50.000 firme. Il Viminale ha bisogno di un professionista della sicurezza, non di un seminatore d\u2019odio. Lasciamo Salvini in Spiaggia e diamo un vero Ministro dell\u2019Interno all\u2019Italia. Firma e fai firmare\nCOMITATIAZIONECIVILE.IT\nMozione di sfiducia per Salvini: sparge odio e crea insicurezza", "post_text": "In un Paese civile quando si viene sconfitti in Parlamento ci si dimette. Le dimissioni sono un gesto difficile. Io ci sono passato, vi garantisco che fa male. Ma quello che \u00e8 giusto, \u00e8 giusto. Matteo Salvini\u2026 Altro ha sfidato i parlamentari e il tabellone del Senato ha segnato la sua sconfitta. Ma Capitan Fracassa vuole tenersi stretta la poltrona. Per questo penso giusto che anche nelle ore di vacanza chi vuole mobilitarsi si mobiliti. Avevamo iniziato con i Comitati d\u2019Azione Civile a raccogliere firme per le dimissioni di Salvini. Siamo quasi a quota 40.000. Riprendiamo e arriviamo entro il 20 agosto almeno a 50.000 firme. Il Viminale ha bisogno di un professionista della sicurezza, non di un seminatore d\u2019odio. Lasciamo Salvini in Spiaggia e diamo un vero Ministro dell\u2019Interno all\u2019Italia. Firma e fai firmare", "shared_text": "COMITATIAZIONECIVILE.IT\nMozione di sfiducia per Salvini: sparge odio e crea insicurezza", "time": "2019-08-14 19:14:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c7.0.625.327a/s480x480/68165799_23843679405070181_7532525042568003584_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=1qTYtGx9OgQAQlKkjoYoNqF3EAYI8FCORTTFyRKe_5cAtE8PZlyZc0vvw&_nc_ht=scontent-cdt1-1.xx&oh=974153a19600a95ea8e5cd518be1ba8f&oe=5E463E34", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156933479064915&id=113335124914", "link": "https://www.comitatiazionecivile.it/petizione_dimissioni_salvini?fbclid=IwAR1BCw2oDD2a86c6hjAbo8cGs7uQy2LtZ4k5ULH_gsglQe87LrsDnglZHr4"} +{"post_id": "10156932592934915", "text": "Genova. La memoria e il dolore per le vittime, per le loro famiglie.\nLa speranza di un progetto vero per la ricostruzione. Il desiderio di tenere lontana la demagogia e lo sciacallaggio.\nGenova oggi: silenzio, rispetto, memoria, voglia di futuro.", "post_text": "Genova. La memoria e il dolore per le vittime, per le loro famiglie.\nLa speranza di un progetto vero per la ricostruzione. Il desiderio di tenere lontana la demagogia e lo sciacallaggio.\nGenova oggi: silenzio, rispetto, memoria, voglia di futuro.", "shared_text": "", "time": "2019-08-14 11:12:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67937173_10156932592859915_3303944764004499456_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=Z2hzKjsGC0MAQnhiBgo5Ibpkg3bizceVoOEozT_KkxFQgrOGOY3lcGVEA&_nc_ht=scontent-cdt1-1.xx&oh=7f2ae079db03dcb0bda7de182694310a&oe=5E7E1073", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156932592934915&id=113335124914", "link": null} +{"post_id": "10156930971224915", "text": "Salvini ha provocato una crisi assurda. Ha chiesto un voto in Parlamento e ha perso. Il tabellone del Senato parla chiaro. In un Paese civile quando si perde una sfida politica, ci si dimette: fa male, lo garantisco, ma \u00e8 giusto cos\u00ec. Salvini tiene troppo alla poltrona e al suo staff pagato dal contribuente: dunque non si dimette e torna sul taglio\u2026 Altro dei parlamentari che ancora ieri definiva \u201cSalvaRenzi\u201d: secondo me l\u2019eccesso di mojito inizia a fare effetto. Chi gli vuole bene, lo faccia riposare. E poi lo faccia dimettere. Perch\u00e9 quando si perde, ci si dimette: io ci sono passato, so che fa male, ma \u00e8 giusto cos\u00ec.\nVai a casa, omonimo. O in spiaggia. Ma lascia il Viminale, hai perso", "post_text": "Salvini ha provocato una crisi assurda. Ha chiesto un voto in Parlamento e ha perso. Il tabellone del Senato parla chiaro. In un Paese civile quando si perde una sfida politica, ci si dimette: fa male, lo garantisco, ma \u00e8 giusto cos\u00ec. Salvini tiene troppo alla poltrona e al suo staff pagato dal contribuente: dunque non si dimette e torna sul taglio\u2026 Altro dei parlamentari che ancora ieri definiva \u201cSalvaRenzi\u201d: secondo me l\u2019eccesso di mojito inizia a fare effetto. Chi gli vuole bene, lo faccia riposare. E poi lo faccia dimettere. Perch\u00e9 quando si perde, ci si dimette: io ci sono passato, so che fa male, ma \u00e8 giusto cos\u00ec.\nVai a casa, omonimo. O in spiaggia. Ma lascia il Viminale, hai perso", "shared_text": "", "time": "2019-08-13 20:00:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156930971224915&id=113335124914", "link": null} +{"post_id": "10156930821224915", "text": "Salvini ha fatto un intervento di 10 minuti e mi ha citato 13 volte. Renzi, Renzi, Renzi... O \u00e8 innamorato o \u00e8 ossessionato. O tutti e due #CapitanFracassa", "post_text": "Salvini ha fatto un intervento di 10 minuti e mi ha citato 13 volte. Renzi, Renzi, Renzi... O \u00e8 innamorato o \u00e8 ossessionato. O tutti e due #CapitanFracassa", "shared_text": "", "time": "2019-08-13 18:54:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156930821224915&id=113335124914", "link": null} +{"post_id": "10156930330234915", "text": "Vi aspetto, oggi alle 17.30, per la diretta qui su Facebook della conferenza stampa da Palazzo Madama di un'ora prima", "post_text": "Vi aspetto, oggi alle 17.30, per la diretta qui su Facebook della conferenza stampa da Palazzo Madama di un'ora prima", "shared_text": "", "time": "2019-08-13 15:18:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/69376545_10156930330209915_6495638723777003520_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=kY-bhJrUGMgAQkS1GzzpUiSFS-Ky3enqbTqGLD3W70k2nNoD7yzNOwuww&_nc_ht=scontent-cdt1-1.xx&oh=e4ddbe32ca4555aae127842fcb747800&oe=5E507A92", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156930330234915&id=113335124914", "link": null} +{"post_id": "10156930125859915", "text": "Salvini ha chiesto il voto in Aula. Ma \u00e8 stato un errore clamoroso perch\u00e9 se si vota Salvini perde. Lo conosco e credo che #CapitanFracassa stia cercando una scusa per non votare. Far\u00e0 di TUTTO per non votare. Perch\u00e9 il tabellone dei risultati di oggi gli far\u00e0 molto male. Molto.", "post_text": "Salvini ha chiesto il voto in Aula. Ma \u00e8 stato un errore clamoroso perch\u00e9 se si vota Salvini perde. Lo conosco e credo che #CapitanFracassa stia cercando una scusa per non votare. Far\u00e0 di TUTTO per non votare. Perch\u00e9 il tabellone dei risultati di oggi gli far\u00e0 molto male. Molto.", "shared_text": "", "time": "2019-08-13 13:27:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/68753674_10156930125814915_9059911379774865408_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=rqTAltvaVdQAQnRSNQJEnxlyWTTSwXqWgBKA5MDmeM-N1QZkKCtsUn-eQ&_nc_ht=scontent-cdt1-1.xx&oh=aac6e8eb13def51944d1648e3e2d73d4&oe=5E3E9B4A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156930125859915&id=113335124914", "link": null} +{"post_id": "10156940137529915", "text": "Ecco la mia conferenza stampa in Senato di poco fa.\n#governoNoTax", "post_text": "Ecco la mia conferenza stampa in Senato di poco fa.\n#governoNoTax", "shared_text": "", "time": "2019-08-13 12:19:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2477174435675035&id=113335124914", "link": null} +{"post_id": "10156929666864915", "text": "Nadia Toffa ci ha lasciati. Ricorderemo una signora professionista e una splendida ragazza.\nIl cancro ha ucciso una giovane donna di 40 anni ma il modo con il quale lei lo ha combattuto fa riflettere, pensare\u2026 Altro e costringe ciascuno di noi a vivere pi\u00f9 intensamente. Terremo il suo sorriso nel cuore, un abbraccio alla sua famiglia e alla redazione de Le Iene.", "post_text": "Nadia Toffa ci ha lasciati. Ricorderemo una signora professionista e una splendida ragazza.\nIl cancro ha ucciso una giovane donna di 40 anni ma il modo con il quale lei lo ha combattuto fa riflettere, pensare\u2026 Altro e costringe ciascuno di noi a vivere pi\u00f9 intensamente. Terremo il suo sorriso nel cuore, un abbraccio alla sua famiglia e alla redazione de Le Iene.", "shared_text": "", "time": "2019-08-13 08:15:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/67842957_10156929666804915_8833995919616638976_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=6xOYXnys23EAQkIYuoPrlojtY2UHdlZubQnH7JjjCt4r4225hM9ysiBqg&_nc_ht=scontent-cdt1-1.xx&oh=ff62babf2e0a22b521d7fcbfde1accab&oe=5E4EDCC9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156929666864915&id=113335124914", "link": null} +{"post_id": "10156930352744915", "text": "Oggi ho fatto un'intervista al Tg2, la trovate qui", "post_text": "Oggi ho fatto un'intervista al Tg2, la trovate qui", "shared_text": "", "time": "2019-08-13 05:33:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2482403712027904&id=113335124914", "link": null} +{"post_id": "10156928387159915", "text": "La scelta della Presidente Casellati di convocare il 13 agosto un\u2019assemblea per il calendario non \u00e8 solo una provocazione: \u00e8 l\u2019ennesima scelta partigiana di una Presidenza d\u2019Aula che vuole compiacere Salvini, ancora una volta. Ma che in realt\u00e0 finir\u00e0 con il fare un danno alla Lega.\nPenso che domani sul calendario Salvini perder\u00e0 il primo voto di\u2026 Altro una lunga serie. E sar\u00e0 plastico che #CapitanFracassa \u00e8 in minoranza. Io come tutti i colleghi senatori domani mi presenter\u00f2 alle 18 al Senato. E ho come la sensazione che da domani sar\u00e0 chiaro che la democrazia parlamentare non \u00e8 la spiaggia di Milano Marittima.\nIl quasi ex ministro dell\u2019interno si rassegni. E si prepari a dare le dimissioni cos\u00ec smetter\u00e0 di usare i soldi del Viminale per la sua campagna elettorale permanente.", "post_text": "La scelta della Presidente Casellati di convocare il 13 agosto un\u2019assemblea per il calendario non \u00e8 solo una provocazione: \u00e8 l\u2019ennesima scelta partigiana di una Presidenza d\u2019Aula che vuole compiacere Salvini, ancora una volta. Ma che in realt\u00e0 finir\u00e0 con il fare un danno alla Lega.\nPenso che domani sul calendario Salvini perder\u00e0 il primo voto di\u2026 Altro una lunga serie. E sar\u00e0 plastico che #CapitanFracassa \u00e8 in minoranza. Io come tutti i colleghi senatori domani mi presenter\u00f2 alle 18 al Senato. E ho come la sensazione che da domani sar\u00e0 chiaro che la democrazia parlamentare non \u00e8 la spiaggia di Milano Marittima.\nIl quasi ex ministro dell\u2019interno si rassegni. E si prepari a dare le dimissioni cos\u00ec smetter\u00e0 di usare i soldi del Viminale per la sua campagna elettorale permanente.", "shared_text": "", "time": "2019-08-12 19:37:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156928387159915&id=113335124914", "link": null} +{"post_id": "10156928149319915", "text": "La memoria. Un Paese che non fa i conti con il proprio passato, non ha futuro. Oggi, con la mia famiglia, a Trieste, a Basovizza. La tragedia delle foibe \u00e8 stata per troppo tempo ignorata. Giusto che le nuove generazioni sappiano, conoscano, ricordino", "post_text": "La memoria. Un Paese che non fa i conti con il proprio passato, non ha futuro. Oggi, con la mia famiglia, a Trieste, a Basovizza. La tragedia delle foibe \u00e8 stata per troppo tempo ignorata. Giusto che le nuove generazioni sappiano, conoscano, ricordino", "shared_text": "", "time": "2019-08-12 17:35:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/68356057_10156928149174915_6136765120677675008_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=5v9Z3407TB4AQlxHQ89ld1-Nqi7ncoBSWG2hPbL_qy1CLaKmeBH_hnC6Q&_nc_ht=scontent-cdt1-1.xx&oh=f8e0e8aed4ca11e3f772f30fdc02ddb9&oe=5E443A3D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156928149319915&id=113335124914", "link": null} +{"post_id": "10156927637339915", "text": "Agli attacchi quotidiani che ricevo dai miei compagni di partito oggi si sommano gli insulti di Beppe Grillo. L\u2019uomo che un tempo mi chiamava \u201cebetino\u201d, adesso mi definisce \u201cavvoltoio\u201d. Non male, dai, si migliora\ud83e\udd23. Ma non c\u2019\u00e8 insulto che possa fermarmi: davanti a Capitan Fracassa che chiede pieni poteri e culla l\u2019antico sogno di uscire dall\u2019Euro,\u2026 Altro io sopporto ogni insulto e insisto sul Governo Istituzionale. Per la mia immagine e per il mio tornaconto personale sarebbe meglio stare in un angolo ad aspettare lo sfascio. Ma il bene comune viene prima dell\u2019interesse dei singoli. Prima si pensa all\u2019Italia, poi agli interessi di parte. Buona settimana di Ferragosto", "post_text": "Agli attacchi quotidiani che ricevo dai miei compagni di partito oggi si sommano gli insulti di Beppe Grillo. L\u2019uomo che un tempo mi chiamava \u201cebetino\u201d, adesso mi definisce \u201cavvoltoio\u201d. Non male, dai, si migliora\ud83e\udd23. Ma non c\u2019\u00e8 insulto che possa fermarmi: davanti a Capitan Fracassa che chiede pieni poteri e culla l\u2019antico sogno di uscire dall\u2019Euro,\u2026 Altro io sopporto ogni insulto e insisto sul Governo Istituzionale. Per la mia immagine e per il mio tornaconto personale sarebbe meglio stare in un angolo ad aspettare lo sfascio. Ma il bene comune viene prima dell\u2019interesse dei singoli. Prima si pensa all\u2019Italia, poi agli interessi di parte. Buona settimana di Ferragosto", "shared_text": "", "time": "2019-08-12 13:26:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156927637339915&id=113335124914", "link": null} +{"post_id": "10156927494359915", "text": "Sant\u2019Anna di Stazzema \u00e8 un luogo di dolore, massacro, tragedia. Ma come sa chi lo ha visitato \u00e8 anche un luogo di tenace resistenza, di dignit\u00e0 esemplare, di passione civile. Almeno oggi, nel ricordo dei 75 anni dalla strage, Sant\u2019Anna di Stazzema sia la capitale morale del Paese che non dimentica l'eccidio nazifascista.", "post_text": "Sant\u2019Anna di Stazzema \u00e8 un luogo di dolore, massacro, tragedia. Ma come sa chi lo ha visitato \u00e8 anche un luogo di tenace resistenza, di dignit\u00e0 esemplare, di passione civile. Almeno oggi, nel ricordo dei 75 anni dalla strage, Sant\u2019Anna di Stazzema sia la capitale morale del Paese che non dimentica l'eccidio nazifascista.", "shared_text": "", "time": "2019-08-12 11:51:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/67911062_10156927494334915_3073754136349507584_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=0GggASGhjwwAQnZPkGkaCbS6yPFXyrDslHSZuweiqO3pBJAARxxHwEpyw&_nc_ht=scontent-cdt1-1.xx&oh=f5b3e5709993fc385c8660e4830ca8bc&oe=5E45A3F7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156927494359915&id=113335124914", "link": null} +{"post_id": "10156925508664915", "text": "Questa mattina ho fatto una proposta. Un Governo NoTax che eviti l\u2019aumento dell\u2019IVA e che metta in sicurezza i conti pubblici italiani. Mi sono rivolto a tutti, anche a chi in questi anni mi ha insultato, offeso, diffamato.\nEd \u00e8 comprensibile che alcuni amici siano spiazzati, scettici, dubbiosi\nIeri sera, dopo aver fatto l\u2019intervista al Corriere,\u2026 Altro sono andato a mangiare una pizza con la mia famiglia dai miei genitori. E ho pensato ai giorni in cui delle persone inqualificabili dei Cinque Stelle facevano i segni delle manette nei confronti di due cittadini incensurati settantenni finiti per colpa mia in vicende pi\u00f9 grandi di loro.\nSe vado di pancia dico che non far\u00f2 mai accordi con chi mi ha\u2026 Altro", "post_text": "Questa mattina ho fatto una proposta. Un Governo NoTax che eviti l\u2019aumento dell\u2019IVA e che metta in sicurezza i conti pubblici italiani. Mi sono rivolto a tutti, anche a chi in questi anni mi ha insultato, offeso, diffamato.\nEd \u00e8 comprensibile che alcuni amici siano spiazzati, scettici, dubbiosi\nIeri sera, dopo aver fatto l\u2019intervista al Corriere,\u2026 Altro sono andato a mangiare una pizza con la mia famiglia dai miei genitori. E ho pensato ai giorni in cui delle persone inqualificabili dei Cinque Stelle facevano i segni delle manette nei confronti di due cittadini incensurati settantenni finiti per colpa mia in vicende pi\u00f9 grandi di loro.\nSe vado di pancia dico che non far\u00f2 mai accordi con chi mi ha\u2026 Altro", "shared_text": "", "time": "2019-08-11 17:49:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156925508664915&id=113335124914", "link": null} +{"post_id": "10156925376154915", "text": "Salvini mi attacca anche oggi perch\u00e9 ha paura di noi. E propone soluzioni che gi\u00e0 doveva aver approvato quattordici mesi fa \u201cal primo consiglio dei ministri\u201d. Flat Tax al 15%, pace fiscale, riduzione delle\u2026 Altro tasse sulla casa. Nel frattempo a Roma si spara e si muore nei parchi pubblici e il Ministro tace. Anzi, Capitan Fracassa non reagisce: si fa solo un altro mojito. Goditelo, omonimo. Goditelo che tra poco avrai un sacco di tempo libero in pi\u00f9. E al Viminale arriver\u00e0 un Ministro, non pi\u00f9 un fannullone.", "post_text": "Salvini mi attacca anche oggi perch\u00e9 ha paura di noi. E propone soluzioni che gi\u00e0 doveva aver approvato quattordici mesi fa \u201cal primo consiglio dei ministri\u201d. Flat Tax al 15%, pace fiscale, riduzione delle\u2026 Altro tasse sulla casa. Nel frattempo a Roma si spara e si muore nei parchi pubblici e il Ministro tace. Anzi, Capitan Fracassa non reagisce: si fa solo un altro mojito. Goditelo, omonimo. Goditelo che tra poco avrai un sacco di tempo libero in pi\u00f9. E al Viminale arriver\u00e0 un Ministro, non pi\u00f9 un fannullone.", "shared_text": "", "time": "2019-08-11 16:47:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67809827_10156925376129915_3988526391657234432_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=3Esbuw-cpacAQkxao3hkUuE6co5JYZsuy3QhlWQafeT-DJb72qqZ-NK7A&_nc_ht=scontent-cdt1-1.xx&oh=77745698a84b34bb1a4991377d9d64e9&oe=5E7F4292", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156925376154915&id=113335124914", "link": null} +{"post_id": "10156925111614915", "text": "Davanti alla forzatura istituzionale di Matteo Salvini, il Parlamento ha due strade: assecondare Capitan Fracassa e andare al voto, come vuole lui e quando vuole lui, oppure creare un Governo NoTax che eviti\u2026 Altro l\u2019aumento dell\u2019IVA e scongiuri il rischio dell\u2019uscita dall\u2019Euro. Io non ho dubbi. Ho molti motivi di risentimento personale contro chi in questi mesi mi ha attaccato e insultato, a cominciare dai Cinque Stelle. Ma la politica si fa cercando il bene comune, non inseguendo le ripicche personali. E l\u2019Italia viene prima delle correnti di partito. In Parlamento ciascuno di noi dovr\u00e0 votare: io sono convinto che ci sia una maggioranza per un Governo Istituzionale che salvi l\u2019Italia. Chi dir\u00e0\u2026 Altro", "post_text": "Davanti alla forzatura istituzionale di Matteo Salvini, il Parlamento ha due strade: assecondare Capitan Fracassa e andare al voto, come vuole lui e quando vuole lui, oppure creare un Governo NoTax che eviti\u2026 Altro l\u2019aumento dell\u2019IVA e scongiuri il rischio dell\u2019uscita dall\u2019Euro. Io non ho dubbi. Ho molti motivi di risentimento personale contro chi in questi mesi mi ha attaccato e insultato, a cominciare dai Cinque Stelle. Ma la politica si fa cercando il bene comune, non inseguendo le ripicche personali. E l\u2019Italia viene prima delle correnti di partito. In Parlamento ciascuno di noi dovr\u00e0 votare: io sono convinto che ci sia una maggioranza per un Governo Istituzionale che salvi l\u2019Italia. Chi dir\u00e0\u2026 Altro", "shared_text": "", "time": "2019-08-11 14:37:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156925111614915&id=113335124914", "link": null} +{"post_id": "10156924574439915", "text": "Stamattina alle 7, in cima alla Torre di Arnolfo con il sindaco della citt\u00e0 pi\u00f9 bella del mondo. Perch\u00e9 oggi \u00e8 il giorno della liberazione di Firenze dai nazisti e dai fascisti. E da senatore del mio collegio\u2026 Altro ho accompagnato Dario Nardella lass\u00f9, in cima a Palazzo Vecchio, a sentire i rintocchi della campana della Martinella che 75 anni fa url\u00f2 al mondo che Firenze era libera.\nViva Fiorenza, viva la libert\u00e0.", "post_text": "Stamattina alle 7, in cima alla Torre di Arnolfo con il sindaco della citt\u00e0 pi\u00f9 bella del mondo. Perch\u00e9 oggi \u00e8 il giorno della liberazione di Firenze dai nazisti e dai fascisti. E da senatore del mio collegio\u2026 Altro ho accompagnato Dario Nardella lass\u00f9, in cima a Palazzo Vecchio, a sentire i rintocchi della campana della Martinella che 75 anni fa url\u00f2 al mondo che Firenze era libera.\nViva Fiorenza, viva la libert\u00e0.", "shared_text": "", "time": "2019-08-11 09:02:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/67958804_10156924574339915_3879129666207875072_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=E9BPmK8DDk0AQmZfOxbI9NZoKFVeXgpTY0d2FHt8pF6TlFXftmP4x-fEw&_nc_ht=scontent-cdt1-1.xx&oh=6309d942ba132a0cb2b0d0086ef3d063&oe=5E3EF782", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156924574439915&id=113335124914", "link": null} +{"post_id": "10156924557554915", "text": "Ho fatto un\u2019intervista al Corriere della Sera.\nIl Governo gialloverde ha fallito, miseramente. Oggi potremmo cullarci nel ritornello: \u201cNoi lo avevamo detto\u201d.\nIl tempo \u00e8 stato galantuomo davvero.\nMa un leader\u2026 Altro non pu\u00f2 solo commentare ci\u00f2 che accade: deve dare una visione.\nAnche quando pu\u00f2 creare polemica o divisione: \u201dif you decide, you divide\u201d, mi ha insegnato Barack Obama.\nIo ritengo che andare a votare con questo sistema istituzionale, con questo ministro dell\u2019interno, con il rischio dell\u2019aumento dell\u2019IVA sia assurdo.\nFaccio un appello a tutte le forze politiche - quelle pi\u00f9 vicine e quelle pi\u00f9 lontane, ma TUTTE - perch\u00e9 prevalga il senso delle istituzioni.\nPer chi come noi pensa prima\u2026 Altro\nMATTEORENZI.IT\nVotare subito \u00e8 folle. Prima IVA e referendum. Sfiduciamo subito Salvini e Conte - Matteo Renzi", "post_text": "Ho fatto un\u2019intervista al Corriere della Sera.\nIl Governo gialloverde ha fallito, miseramente. Oggi potremmo cullarci nel ritornello: \u201cNoi lo avevamo detto\u201d.\nIl tempo \u00e8 stato galantuomo davvero.\nMa un leader\u2026 Altro non pu\u00f2 solo commentare ci\u00f2 che accade: deve dare una visione.\nAnche quando pu\u00f2 creare polemica o divisione: \u201dif you decide, you divide\u201d, mi ha insegnato Barack Obama.\nIo ritengo che andare a votare con questo sistema istituzionale, con questo ministro dell\u2019interno, con il rischio dell\u2019aumento dell\u2019IVA sia assurdo.\nFaccio un appello a tutte le forze politiche - quelle pi\u00f9 vicine e quelle pi\u00f9 lontane, ma TUTTE - perch\u00e9 prevalga il senso delle istituzioni.\nPer chi come noi pensa prima\u2026 Altro", "shared_text": "MATTEORENZI.IT\nVotare subito \u00e8 folle. Prima IVA e referendum. Sfiduciamo subito Salvini e Conte - Matteo Renzi", "time": "2019-08-11 08:48:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.34.480.251a/p320x320/68506511_23843670561380181_6010676056372019200_n.png.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=nCsL1Hn7RpsAQmhj6Bf1_2XCyJcqZozc0mj3P3uDrcArIrMd5t-kOG22Q&_nc_ht=scontent-cdt1-1.xx&oh=560fcf9e97f5bb7c98a2c4b03f765022&oe=5E4216A2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156924557554915&id=113335124914", "link": "https://www.matteorenzi.it/votare-subito-e-folle-prima-iva-e-referendum-sfiduciamo-subito-salvini-e-conte/?fbclid=IwAR3V9zacPRvtWffwT5oeePnFqL8rvbUmYZWjnfhB1oo-qxSX2A98FQqiels"} +{"post_id": "10156922248624915", "text": "Oggi i giornali sono pieni di retroscena su accordi segreti tra noi e i Cinque Stelle. Qualcuno gi\u00e0 ipotizza che io possa votare la fiducia a Fico premier. E perch\u00e9 non Toninelli premier allora? O Di Battista? Sono ragazzi cos\u00ec preparati e competenti \ud83d\ude02\ud83d\ude02\ud83d\ude02\nDai, ragazzi, non scherziamo.\nLa verit\u00e0 \u00e8 un\u2019altra: Salvini - Capitan Fracassa non digerisce\u2026 Altro il fatto che in questo Paese ci sia anche chi ragiona. Lui vuole i pieni poteri. Vuole decidere lui quando si vota, non Mattarella. Vuole decidere lui quando riunire il Parlamento, non la conferenza dei capigruppo. Vuole decidere lui tutto, dopo che da 26 anni lo stiamo pagando per non fare nulla se non diffondere odio e insicurezza.\nLa crisi del\u2026 Altro", "post_text": "Oggi i giornali sono pieni di retroscena su accordi segreti tra noi e i Cinque Stelle. Qualcuno gi\u00e0 ipotizza che io possa votare la fiducia a Fico premier. E perch\u00e9 non Toninelli premier allora? O Di Battista? Sono ragazzi cos\u00ec preparati e competenti \ud83d\ude02\ud83d\ude02\ud83d\ude02\nDai, ragazzi, non scherziamo.\nLa verit\u00e0 \u00e8 un\u2019altra: Salvini - Capitan Fracassa non digerisce\u2026 Altro il fatto che in questo Paese ci sia anche chi ragiona. Lui vuole i pieni poteri. Vuole decidere lui quando si vota, non Mattarella. Vuole decidere lui quando riunire il Parlamento, non la conferenza dei capigruppo. Vuole decidere lui tutto, dopo che da 26 anni lo stiamo pagando per non fare nulla se non diffondere odio e insicurezza.\nLa crisi del\u2026 Altro", "shared_text": "", "time": "2019-08-10 11:38:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156922248624915&id=113335124914", "link": null} +{"post_id": "10156920278209915", "text": "Capitan Fracassa farnetica. E dalla spiaggia chiede: Italiani, datemi pieni poteri. L\u2019ultimo a chiederli fu Badoglio! Salvini, per favore: meno mojiti, pi\u00f9 camomille", "post_text": "Capitan Fracassa farnetica. E dalla spiaggia chiede: Italiani, datemi pieni poteri. L\u2019ultimo a chiederli fu Badoglio! Salvini, per favore: meno mojiti, pi\u00f9 camomille", "shared_text": "", "time": "2019-08-09 17:08:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156920278209915&id=113335124914", "link": null} +{"post_id": "10156919748134915", "text": "Dicevano: governeremo 30 anni e non hanno retto nemmeno 14 mesi.\nDicevano: faremo ripartire l\u2019Italia e hanno riportato a zero il PIL e bloccato la crescita.\nDicevano: saremo la Terza Repubblica e hanno governato litigando come in terza media.\nNelle prossime ore disegneremo il nostro futuro. Chi vuole darci una mano, chi non si rassegna, chi non si\u2026 Altro arrende fondi un comitato di azione civile (www.comitatiazionecivile.it) oggi stesso, si faccia sentire, non resti alla finestra. C\u2019\u00e8 molto da fare per restituire speranza e bellezza al Paese dei nostri figli.\nMa intanto parliamoci chiaro: avevamo ragione quando dicevamo che la realt\u00e0 avrebbe sconfitto la propaganda.\nE Salvini non gioca la carta\u2026 Altro", "post_text": "Dicevano: governeremo 30 anni e non hanno retto nemmeno 14 mesi.\nDicevano: faremo ripartire l\u2019Italia e hanno riportato a zero il PIL e bloccato la crescita.\nDicevano: saremo la Terza Repubblica e hanno governato litigando come in terza media.\nNelle prossime ore disegneremo il nostro futuro. Chi vuole darci una mano, chi non si rassegna, chi non si\u2026 Altro arrende fondi un comitato di azione civile (www.comitatiazionecivile.it) oggi stesso, si faccia sentire, non resti alla finestra. C\u2019\u00e8 molto da fare per restituire speranza e bellezza al Paese dei nostri figli.\nMa intanto parliamoci chiaro: avevamo ragione quando dicevamo che la realt\u00e0 avrebbe sconfitto la propaganda.\nE Salvini non gioca la carta\u2026 Altro", "shared_text": "", "time": "2019-08-09 12:27:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156919748134915&id=113335124914", "link": "http://www.comitatiazionecivile.it/?fbclid=IwAR1VHC_gPPBZZ9b8nsmyConKYwvA__QAmVW9WdIYSBLfnz-lS-limUm-weI"} +{"post_id": "694280877650576", "text": "In diretta da Santomato (PT)", "post_text": "In diretta da Santomato (PT)", "shared_text": "", "time": "2019-08-08 21:47:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=694280877650576&id=113335124914", "link": null} +{"post_id": "10156918113739915", "text": "Questo Governo ha fallito e ha fallito prima del previsto. Il tempo \u00e8 galantuomo, la verit\u00e0 arriva. E bene abbiamo fatto a essere coerenti con le nostre idee, non solo sulla Tav. Capitan Fracassa non ha avuto coraggio di fare la legge di bilancio e ha troppa paura delle inchieste. Adesso tutti a spiegare casa per casa perch\u00e9 grazie a Salvini l\u2019IVA aumenta al 25% e i mercati ballano. La Lega Ladrona fa male all\u2019Italia.", "post_text": "Questo Governo ha fallito e ha fallito prima del previsto. Il tempo \u00e8 galantuomo, la verit\u00e0 arriva. E bene abbiamo fatto a essere coerenti con le nostre idee, non solo sulla Tav. Capitan Fracassa non ha avuto coraggio di fare la legge di bilancio e ha troppa paura delle inchieste. Adesso tutti a spiegare casa per casa perch\u00e9 grazie a Salvini l\u2019IVA aumenta al 25% e i mercati ballano. La Lega Ladrona fa male all\u2019Italia.", "shared_text": "", "time": "2019-08-08 20:59:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156918113739915&id=113335124914", "link": null} +{"post_id": "10156917813204915", "text": "Uno dei problemi pi\u00f9 gravi degli ultimi vent\u2019anni, in Italia, \u00e8 il livello delle retribuzioni. Gli stipendi insomma. Troppo bassi quelli della classe media. E per questo gli 80\u20ac mensili che da cinque anni\u2026 Altro vengono riconosciuti agli italiani che guadagnano meno di 1.500\u20ac mensili sono il primo concreto gesto di attenzione verso il ceto medio. Si pu\u00f2 fare di pi\u00f9? Certo. Ma l\u2019importante \u00e8 non fare di meno. In questi giorni la Lega ha chiesto di trasformare questa misura: almeno tre milioni di italiani rischiano di pagare pi\u00f9 tasse. Tre coordinatori di comitati civici di zone diverse d\u2019Italia hanno lanciato una petizione per chiedere di mantenere gli 80\u20ac. Se questo Governo rimane (vediamo il teatrino come finisce), saltano gli 80\u20ac a meno di una bella mobilitazione popolare. Do volentieri una mano a questa Azione Civile dei comitati e invito tutti a firmare. Vanno alzati gli stipendi, non le tasse.\nCOMITATIAZIONECIVILE.IT\nSalviamo gli 80\u20ac", "post_text": "Uno dei problemi pi\u00f9 gravi degli ultimi vent\u2019anni, in Italia, \u00e8 il livello delle retribuzioni. Gli stipendi insomma. Troppo bassi quelli della classe media. E per questo gli 80\u20ac mensili che da cinque anni\u2026 Altro vengono riconosciuti agli italiani che guadagnano meno di 1.500\u20ac mensili sono il primo concreto gesto di attenzione verso il ceto medio. Si pu\u00f2 fare di pi\u00f9? Certo. Ma l\u2019importante \u00e8 non fare di meno. In questi giorni la Lega ha chiesto di trasformare questa misura: almeno tre milioni di italiani rischiano di pagare pi\u00f9 tasse. Tre coordinatori di comitati civici di zone diverse d\u2019Italia hanno lanciato una petizione per chiedere di mantenere gli 80\u20ac. Se questo Governo rimane (vediamo il teatrino come finisce), saltano gli 80\u20ac a meno di una bella mobilitazione popolare. Do volentieri una mano a questa Azione Civile dei comitati e invito tutti a firmare. Vanno alzati gli stipendi, non le tasse.", "shared_text": "COMITATIAZIONECIVILE.IT\nSalviamo gli 80\u20ac", "time": "2019-08-08 19:14:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/spS444/c0.182.1600.837a/s480x480/68012900_23843664264770181_6988792125743693824_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=exDTmdEnezYAQnHMRlW8Y8vfNZFSbietKtHXY1U75zHmbWMS1uNfB5hEA&_nc_ht=scontent-cdt1-1.xx&oh=3a4258ba81aa728aa0ea0b144914638b&oe=5E4A8970", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156917813204915&id=113335124914", "link": "https://www.comitatiazionecivile.it/petizione_80euro?fbclid=IwAR2SaqRi00XZB9g2BfsYJwuLnuyoOM8geEWrvaXcPkfDcqTVzVTWUcNvqj4"} +{"post_id": "10156917579359915", "text": "Io dico che questa pagliacciata sulla pelle del Paese ha stancato. Dovrebbero dimettersi tutti e tre: Salvini, Di Maio e il Premier se qualcuno si ricorda di avvisarlo. Ne parliamo stasera a Santomato e in diretta qui dalle 21.30", "post_text": "Io dico che questa pagliacciata sulla pelle del Paese ha stancato. Dovrebbero dimettersi tutti e tre: Salvini, Di Maio e il Premier se qualcuno si ricorda di avvisarlo. Ne parliamo stasera a Santomato e in diretta qui dalle 21.30", "shared_text": "", "time": "2019-08-08 18:02:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67800233_10156917579319915_1422553907862700032_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=wszhDCHiccIAQmQ2V0VILGzczxP_PAmK7UlLgizM9HEwQwK5-ix0LSU7w&_nc_ht=scontent-cdt1-1.xx&oh=087638c2bb4536400d34ccdc6f6a69e5&oe=5E4A5921", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156917579359915&id=113335124914", "link": null} +{"post_id": "10156917416269915", "text": "Daniela Misul \u00e8 stata la Presidente della comunit\u00e0 ebraica di Firenze per diversi anni. Abbiamo lavorato tanto insieme su progetti educativi, iniziative di volontariato, per l\u2019illuminazione della bellissima\u2026 Altro sinagoga della nostra citt\u00e0. E naturalmente per i viaggi della memoria: un centinaio di studenti delle scuole superiori che ogni anno tornavano nell\u2019inferno di Auschwitz per conoscere la storia dell\u2019Olocausto e gridare Mai Pi\u00f9! Daniela ci ha lasciato oggi dopo una terribile malattia. Le rendo omaggio qui: io, cattolico, ho imparato molto da questa sorella maggiore, ebrea. Dalla sua sensibilit\u00e0 e intelligenza. Dalla sua comunit\u00e0. Terremo viva la memoria, ora e sempre, anche nel suo nome. Grazie Daniela, Shal\u00f2m", "post_text": "Daniela Misul \u00e8 stata la Presidente della comunit\u00e0 ebraica di Firenze per diversi anni. Abbiamo lavorato tanto insieme su progetti educativi, iniziative di volontariato, per l\u2019illuminazione della bellissima\u2026 Altro sinagoga della nostra citt\u00e0. E naturalmente per i viaggi della memoria: un centinaio di studenti delle scuole superiori che ogni anno tornavano nell\u2019inferno di Auschwitz per conoscere la storia dell\u2019Olocausto e gridare Mai Pi\u00f9! Daniela ci ha lasciato oggi dopo una terribile malattia. Le rendo omaggio qui: io, cattolico, ho imparato molto da questa sorella maggiore, ebrea. Dalla sua sensibilit\u00e0 e intelligenza. Dalla sua comunit\u00e0. Terremo viva la memoria, ora e sempre, anche nel suo nome. Grazie Daniela, Shal\u00f2m", "shared_text": "", "time": "2019-08-08 17:03:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/68360894_10156917416144915_2546050763323342848_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=BE3AKLvarJAAQmI6nd4Iq2jViNTKY6eVck9F6zd1mW97a7U_IMVgxn5oA&_nc_ht=scontent-cdt1-1.xx&oh=d2ff98cd19060274f64b345169d0cda2&oe=5E799907", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156917416269915&id=113335124914", "link": null} +{"post_id": "10156917121489915", "text": "Vedo questo video e mi commuovo dell\u2019umanit\u00e0 del giudice, dell\u2019umanit\u00e0 dell\u2019imputato. Di solito fanno notizia solo le cose negative. Io voglio condividere anche pagine di umanit\u00e0. Buon pomeriggio", "post_text": "Vedo questo video e mi commuovo dell\u2019umanit\u00e0 del giudice, dell\u2019umanit\u00e0 dell\u2019imputato. Di solito fanno notizia solo le cose negative. Io voglio condividere anche pagine di umanit\u00e0. Buon pomeriggio", "shared_text": "", "time": "2019-08-08 14:53:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156917121489915&id=113335124914", "link": null} +{"post_id": "10156916846189915", "text": "L\u20198 agosto 1956 centinaia di italiani perdevano la vita in una miniera belga, a Marcinelle. Una strage! Ho incontrato qualche anno fa uno dei sopravvissuti a quella tragedia. Mario riusc\u00ec a salvarsi solo per\u2026 Altro una circostanza fortunata. E poco prima di morire decise di consegnarmi a Bruxelles la lampada che lo accompagnava quando scendeva in miniera. La tengo nel mio ufficio perch\u00e9 voglio ricordarmi sempre di quando erano gli italiani a fare i lavori che gli altri non volevano fare. La tengo nel mio ufficio perch\u00e9 voglio ricordarmi sempre di quando gli immigrati eravamo noi. La tengo nel mio ufficio perch\u00e9 ricordare Marcinelle significa ricordare il dolore, ma anche l\u2019orgoglio di appartenere a una comunit\u00e0 che veniva derisa manche era una comunit\u00e0 di donne uomini generosi e pieni di coraggio.\nUn pensiero alle vittime di Marcinelle, un pensiero a Mario, un pensiero agli immigrati di oggi", "post_text": "L\u20198 agosto 1956 centinaia di italiani perdevano la vita in una miniera belga, a Marcinelle. Una strage! Ho incontrato qualche anno fa uno dei sopravvissuti a quella tragedia. Mario riusc\u00ec a salvarsi solo per\u2026 Altro una circostanza fortunata. E poco prima di morire decise di consegnarmi a Bruxelles la lampada che lo accompagnava quando scendeva in miniera. La tengo nel mio ufficio perch\u00e9 voglio ricordarmi sempre di quando erano gli italiani a fare i lavori che gli altri non volevano fare. La tengo nel mio ufficio perch\u00e9 voglio ricordarmi sempre di quando gli immigrati eravamo noi. La tengo nel mio ufficio perch\u00e9 ricordare Marcinelle significa ricordare il dolore, ma anche l\u2019orgoglio di appartenere a una comunit\u00e0 che veniva derisa manche era una comunit\u00e0 di donne uomini generosi e pieni di coraggio.\nUn pensiero alle vittime di Marcinelle, un pensiero a Mario, un pensiero agli immigrati di oggi", "shared_text": "", "time": "2019-08-08 12:22:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/68270478_10156916846159915_5220240514418212864_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=1-hBZKkslu4AQmyGBBMYMzLhZuGHF6M9NmilbQKk1dIEpNSMJHWVNaTVA&_nc_ht=scontent-cdt1-1.xx&oh=24d00ab29fb5be4681a3556f2f86891f&oe=5E82B38E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156916846189915&id=113335124914", "link": null} +{"post_id": "10156916549129915", "text": "Cancellare gli 80\u20ac sar\u00e0 un grande danno per chi guadagna poco. Dopo cinque anni di polemiche, iniziano a riconoscerlo tutti.\nQUIFINANZA.IT\nAddio al Bonus Renzi 80 euro: diverr\u00e0 una detrazione, penalizzati i redditi pi\u00f9 bassi", "post_text": "Cancellare gli 80\u20ac sar\u00e0 un grande danno per chi guadagna poco. Dopo cinque anni di polemiche, iniziano a riconoscerlo tutti.", "shared_text": "QUIFINANZA.IT\nAddio al Bonus Renzi 80 euro: diverr\u00e0 una detrazione, penalizzati i redditi pi\u00f9 bassi", "time": "2019-08-08 09:05:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.28.1200.628a/s480x480/68603288_23843663007680181_2524438311796211712_n.png.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=QKR1-eqt4AkAQn81Otq1zd0r8oMuL2o5i-yNmC87x0bI-iwt1cxkCpByQ&_nc_ht=scontent-cdt1-1.xx&oh=821a7319997a0c1f5aade4f1d98221f9&oe=5E820083", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156916549129915&id=113335124914", "link": "https://quifinanza.it/soldi/addio-al-bonus-renzi-penalizzati-i-redditi-piu-bassi/298049/?fbclid=IwAR37TUTnIPDWI4J2ssOvjSuflhgc7YYHxx2H8gVxk6XXkhWXXFklxfAcXYI"} +{"post_id": "10156915358354915", "text": "Nel comizio di Sabaudia, Salvini attacca me (strano!). Dice che sono stato al Governo per decenni. Io sono a Roma dal 2014 e ho lasciato il Governo nel 2016. Salvini invece \u00e8 pagato dagli italiani da 26 anni, ininterrottamente: il primo stipendio pubblico lo ha preso nel 1993. C\u2019era ancora la lira, il gettone telefonico, non c\u2019era Internet,\u2026 Altro Berlusconi non aveva ancora iniziato a far politica e Salvini gi\u00e0 era sul groppone degli italiani.\nAppena Capitan Fracassa ha finito di blaterare, ci dice cosa ha fatto di concreto per gli italiani in questi 26 anni? Chiacchierone!", "post_text": "Nel comizio di Sabaudia, Salvini attacca me (strano!). Dice che sono stato al Governo per decenni. Io sono a Roma dal 2014 e ho lasciato il Governo nel 2016. Salvini invece \u00e8 pagato dagli italiani da 26 anni, ininterrottamente: il primo stipendio pubblico lo ha preso nel 1993. C\u2019era ancora la lira, il gettone telefonico, non c\u2019era Internet,\u2026 Altro Berlusconi non aveva ancora iniziato a far politica e Salvini gi\u00e0 era sul groppone degli italiani.\nAppena Capitan Fracassa ha finito di blaterare, ci dice cosa ha fatto di concreto per gli italiani in questi 26 anni? Chiacchierone!", "shared_text": "", "time": "2019-08-07 22:11:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156915358354915&id=113335124914", "link": null} +{"post_id": "10156915016259915", "text": "La cosa sconvolgente di oggi non \u00e8 solo che due Vice Premier litighino come dei bambini viziati. La cosa pi\u00f9 sconvolgente di oggi \u00e8 che l\u2019Italia sia senza un Premier. Giuseppe Conte \u00e8 semplicemente imbarazzante", "post_text": "La cosa sconvolgente di oggi non \u00e8 solo che due Vice Premier litighino come dei bambini viziati. La cosa pi\u00f9 sconvolgente di oggi \u00e8 che l\u2019Italia sia senza un Premier. Giuseppe Conte \u00e8 semplicemente imbarazzante", "shared_text": "", "time": "2019-08-07 19:46:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156915016259915&id=113335124914", "link": null} +{"post_id": "10156914999799915", "text": "C\u2019\u00e8 un dato sorprendente. Dal 2015 al 2018 sulla produttivit\u00e0 noi siamo cresciuti pi\u00f9 di tutti gli altri. Non lo dice nessuno ma lo spiega benissimo il professor Fortis oggi sul Sole 24 Ore. Chi vuole\u2026 Altro conoscere, studiare, approfondire pu\u00f2 leggere qui i dati. Chi si accontenta di Salvini e Di Maio sappia che da quando ci sono quei due, casualmente, si \u00e8 bloccato tutto", "post_text": "C\u2019\u00e8 un dato sorprendente. Dal 2015 al 2018 sulla produttivit\u00e0 noi siamo cresciuti pi\u00f9 di tutti gli altri. Non lo dice nessuno ma lo spiega benissimo il professor Fortis oggi sul Sole 24 Ore. Chi vuole\u2026 Altro conoscere, studiare, approfondire pu\u00f2 leggere qui i dati. Chi si accontenta di Salvini e Di Maio sappia che da quando ci sono quei due, casualmente, si \u00e8 bloccato tutto", "shared_text": "", "time": "2019-08-07 19:39:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67801106_10156914999644915_3864968673701658624_o.png.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=b3qjhs4aJOwAQnuZmqv52Y4c2hlKluCbG4fT5xg3KN0BzODs5dLRqTqSw&_nc_ht=scontent-cdt1-1.xx&oh=b3783fb48565e7ab6130ca7f9a0863fc&oe=5E4BA901", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156914999799915&id=113335124914", "link": null} +{"post_id": "10156914645694915", "text": "Oggi abbiamo votato in Senato a favore della Tav. Noi pensiamo al Paese e dunque siamo per il S\u00ec. Divertente la strategia di alcuni statisti nostrani, a cominciare da Di Battista e persino qualche dem: \u201cPd doveva votare contro la Tav, cos\u00ec Salvini si sarebbe arrabbiato\u201d. Facciamo una cosa? I grillini vogliono davvero fare la crisi? Bene, allora che\u2026 Altro votino la mozione di sfiducia a Salvini del 12 settembre: dai rubli ai 49 milioni, le ragioni non mancano. Vogliono mandare a casa il Governo? Facciamolo sui soldi alla Lega, non sulla Tav. I grillini avranno coraggio o resteranno abbarbicati alla poltrona?", "post_text": "Oggi abbiamo votato in Senato a favore della Tav. Noi pensiamo al Paese e dunque siamo per il S\u00ec. Divertente la strategia di alcuni statisti nostrani, a cominciare da Di Battista e persino qualche dem: \u201cPd doveva votare contro la Tav, cos\u00ec Salvini si sarebbe arrabbiato\u201d. Facciamo una cosa? I grillini vogliono davvero fare la crisi? Bene, allora che\u2026 Altro votino la mozione di sfiducia a Salvini del 12 settembre: dai rubli ai 49 milioni, le ragioni non mancano. Vogliono mandare a casa il Governo? Facciamolo sui soldi alla Lega, non sulla Tav. I grillini avranno coraggio o resteranno abbarbicati alla poltrona?", "shared_text": "", "time": "2019-08-07 16:39:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156914645694915&id=113335124914", "link": null} +{"post_id": "10156914529929915", "text": "Che bella l\u2019intervista di Pete Souza sul Corriere della Sera che parla di Obama. \u00c8 stato il suo fotografo per 8 anni, la sua ombra. E parla con il cuore della sofferenza del Presidente davanti alle stragi americane figlie della diffusione delle armi. Poi tutte le volte che leggo Pete ripenso alla sua amicizia con Tiberio.", "post_text": "Che bella l\u2019intervista di Pete Souza sul Corriere della Sera che parla di Obama. \u00c8 stato il suo fotografo per 8 anni, la sua ombra. E parla con il cuore della sofferenza del Presidente davanti alle stragi americane figlie della diffusione delle armi. Poi tutte le volte che leggo Pete ripenso alla sua amicizia con Tiberio.", "shared_text": "", "time": "2019-08-07 15:36:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67955932_10156914529844915_5746446532995973120_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=Zxf7cPbGvBIAQkGHWF70AjD_DyNPvX0-DSv6czClL5_PIRRDmACCnFiXw&_nc_ht=scontent-cdt1-1.xx&oh=4836423b690c5e90847ef4e17492e0e4&oe=5E894021", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156914529929915&id=113335124914", "link": null} +{"post_id": "10156913972579915", "text": "Da ieri la Cassazione ha scritto la sentenza definitiva. Salvini deve restituire 49 milioni di \u20ac agli italiani. Io dico che molti di quei denari sono finiti a finanziare la Bestia, la propaganda leghista, creando odio e rancore. In attesa di farci sapere dei rubli, possono dirci dove hanno messo gli euro? Hanno rubato i soldi degli italiani, da ieri si pu\u00f2 dire senza timore di smentita. Quando li restituiranno?", "post_text": "Da ieri la Cassazione ha scritto la sentenza definitiva. Salvini deve restituire 49 milioni di \u20ac agli italiani. Io dico che molti di quei denari sono finiti a finanziare la Bestia, la propaganda leghista, creando odio e rancore. In attesa di farci sapere dei rubli, possono dirci dove hanno messo gli euro? Hanno rubato i soldi degli italiani, da ieri si pu\u00f2 dire senza timore di smentita. Quando li restituiranno?", "shared_text": "", "time": "2019-08-07 09:09:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156913972579915&id=113335124914", "link": null} +{"post_id": "10156913916554915", "text": "Chi parla di povert\u00e0, lamenta la lontananza della politica dai ceti pi\u00f9 deboli. Ma che cosa \u00e8 stato fatto davvero? Lo scrivo oggi in una lettera a Repubblica. Perch\u00e9 c\u2019\u00e8 il populismo di Salvini e Di Maio. Ma anche il populismo di chi commenta senza conoscere\nMATTEORENZI.IT\nLa povert\u00e0, le periferie, il JobsAct. E il populismo pericoloso dei professori che non studiano - Matteo Renzi", "post_text": "Chi parla di povert\u00e0, lamenta la lontananza della politica dai ceti pi\u00f9 deboli. Ma che cosa \u00e8 stato fatto davvero? Lo scrivo oggi in una lettera a Repubblica. Perch\u00e9 c\u2019\u00e8 il populismo di Salvini e Di Maio. Ma anche il populismo di chi commenta senza conoscere", "shared_text": "MATTEORENZI.IT\nLa povert\u00e0, le periferie, il JobsAct. E il populismo pericoloso dei professori che non studiano - Matteo Renzi", "time": "2019-08-07 08:31:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.13.654.342a/s480x480/67704655_23843660194250181_9019755351112679424_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=_oDa5uITAo4AQnB4B6gPCrJi_t-qANpjlvX8OVQlRp_er17LaJUQgWkMw&_nc_ht=scontent-cdt1-1.xx&oh=f145716254217bdd6c87774a72478717&oe=5E7D5343", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156913916554915&id=113335124914", "link": "https://www.matteorenzi.it/la-poverta-le-periferie-il-jobsact-e-il-populismo-pericoloso-dei-professori-che-non-studiano/?fbclid=IwAR390HFPAkB7bAGUp5BGaoIOKZ6LQRIdawTFOqLr_csrc9k5aFeGpQxuq8E"} +{"post_id": "10156912560394915", "text": "Oggi il Governo dice basta agli 80\u20ac. Alla fine a pagare sono sempre i pi\u00f9 deboli, quelle famiglie per cui mille euro l\u2019anno in pi\u00f9 erano un aiuto vero. Ma Salvini, finito il tour in spiaggia, deve fare cassa. Mi dispiace perch\u00e9 era una misura giusta, che ha aiutato tante famiglie, ma mi dispiace soprattutto perch\u00e9 a rimetterci sono sempre i soliti.", "post_text": "Oggi il Governo dice basta agli 80\u20ac. Alla fine a pagare sono sempre i pi\u00f9 deboli, quelle famiglie per cui mille euro l\u2019anno in pi\u00f9 erano un aiuto vero. Ma Salvini, finito il tour in spiaggia, deve fare cassa. Mi dispiace perch\u00e9 era una misura giusta, che ha aiutato tante famiglie, ma mi dispiace soprattutto perch\u00e9 a rimetterci sono sempre i soliti.", "shared_text": "", "time": "2019-08-06 19:27:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156912560394915&id=113335124914", "link": null} +{"post_id": "10156912286219915", "text": "Gioved\u00ec intorno alle 21.30 vi aspetto alla Festa de l'Unit\u00e0 di Santomato, in provincia di Pistoia, ed in diretta Facebook su questa pagina", "post_text": "Gioved\u00ec intorno alle 21.30 vi aspetto alla Festa de l'Unit\u00e0 di Santomato, in provincia di Pistoia, ed in diretta Facebook su questa pagina", "shared_text": "", "time": "2019-08-06 17:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67628231_10156912283159915_8841451256993021952_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=EReThz5p4e8AQl86hMlwykpuEpZQX5fIxBbQW-XOvz8hp-0dARGdDxBZA&_nc_ht=scontent-cdt1-1.xx&oh=f5deb28b90f708f7409e043ada795134&oe=5E474079", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156912286219915&id=113335124914", "link": null} +{"post_id": "10156911989119915", "text": "Non sono un fan dell\u2019Espresso, testata contro la quale ho anche agito in tribunale. Ma trovo assurdo che per la vicenda dei Rubli alla Lega si voglia fare il processo ai giornalisti. Parliamoci chiaro: il problema non \u00e8 sapere come Tizian e Vergine abbiano avuto l\u2019audio del dialogo tra leghisti e russi. Ma verificare se l\u2019audio \u00e8 vero, se il\u2026 Altro dialogo c\u2019\u00e8 stato e se i leghisti hanno chiesto una maxi tangente da 65 milioni di \u20ac per la campagna elettorale di Salvini.\nLa domanda per i leghisti come Savoini: ma davvero avete chiesto 65 milioni di \u20ac per la campagna elettorale di Salvini?\nSe la risposta \u00e8: \u201cE voi come avete fatto a scoprirlo?\u201d ho l\u2019impressione che i leghisti che stavano a Mosca non siano messi benissimo.\nLa domanda per Salvini invece \u00e8 pi\u00f9 semplice: i tuoi hanno chiesto tangenti per la tua campagna elettorale o no? Perch\u00e9 se lo hanno fatto, devi denunciarli. Altrimenti sei complice anche tu. Il problema sono le tangenti russe, non i giornalisti italiani. Sbaglio?", "post_text": "Non sono un fan dell\u2019Espresso, testata contro la quale ho anche agito in tribunale. Ma trovo assurdo che per la vicenda dei Rubli alla Lega si voglia fare il processo ai giornalisti. Parliamoci chiaro: il problema non \u00e8 sapere come Tizian e Vergine abbiano avuto l\u2019audio del dialogo tra leghisti e russi. Ma verificare se l\u2019audio \u00e8 vero, se il\u2026 Altro dialogo c\u2019\u00e8 stato e se i leghisti hanno chiesto una maxi tangente da 65 milioni di \u20ac per la campagna elettorale di Salvini.\nLa domanda per i leghisti come Savoini: ma davvero avete chiesto 65 milioni di \u20ac per la campagna elettorale di Salvini?\nSe la risposta \u00e8: \u201cE voi come avete fatto a scoprirlo?\u201d ho l\u2019impressione che i leghisti che stavano a Mosca non siano messi benissimo.\nLa domanda per Salvini invece \u00e8 pi\u00f9 semplice: i tuoi hanno chiesto tangenti per la tua campagna elettorale o no? Perch\u00e9 se lo hanno fatto, devi denunciarli. Altrimenti sei complice anche tu. Il problema sono le tangenti russe, non i giornalisti italiani. Sbaglio?", "shared_text": "", "time": "2019-08-06 14:22:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156911989119915&id=113335124914", "link": null} +{"post_id": "10156910663859915", "text": "Strumentalizzare la Madonna per sponsorizzare il decreto sicurezza \u00e8 l\u2019ennesimo insulto, soprattutto per i credenti. Si dice cinico chi conosce il prezzo di tutto ma non conosce il valore di niente: Salvini oggi dimostra di essere terribilmente cinico. E non serve nemmeno ricordargli quando scendeva dai palchi della Lega bestemmiando. Chi arriva al punto da strumentalizzare ci\u00f2 che c\u2019\u00e8 di pi\u00f9 prezioso \u00e8 semplicemente oltre. Persino oltre il disgusto.", "post_text": "Strumentalizzare la Madonna per sponsorizzare il decreto sicurezza \u00e8 l\u2019ennesimo insulto, soprattutto per i credenti. Si dice cinico chi conosce il prezzo di tutto ma non conosce il valore di niente: Salvini oggi dimostra di essere terribilmente cinico. E non serve nemmeno ricordargli quando scendeva dai palchi della Lega bestemmiando. Chi arriva al punto da strumentalizzare ci\u00f2 che c\u2019\u00e8 di pi\u00f9 prezioso \u00e8 semplicemente oltre. Persino oltre il disgusto.", "shared_text": "", "time": "2019-08-05 23:14:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156910663859915&id=113335124914", "link": null} +{"post_id": "10156909777819915", "text": "In America due atti di terrorismo nel giro di poche ore. Colpa della diffusione delle armi, certo. E la responsabilit\u00e0 delle stragi \u00e8 dei killer, ovvio. Ma qualche politico deve riflettere sul proprio vocabolario. A forza di parlare di invasioni, inesistenti, arrivano gli invasati, veri. E gli invasati sparano e uccidono.", "post_text": "In America due atti di terrorismo nel giro di poche ore. Colpa della diffusione delle armi, certo. E la responsabilit\u00e0 delle stragi \u00e8 dei killer, ovvio. Ma qualche politico deve riflettere sul proprio vocabolario. A forza di parlare di invasioni, inesistenti, arrivano gli invasati, veri. E gli invasati sparano e uccidono.", "shared_text": "", "time": "2019-08-05 16:21:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156909777819915&id=113335124914", "link": null} +{"post_id": "10156909522729915", "text": "Leggendo i quotidiani di oggi vediamo che Salvini ha capito di avere i numeri sul decreto sicurezza e dunque rilancia sulla Tav. Il giorno della verit\u00e0 viene spostato a mercoled\u00ec: vedremo dopo il voto delle mozioni Tav se il Governo star\u00e0 in piedi o no.\nVolete la mia opinione? Io dico che \u00e8 tutta una buffonata e che questi non lasciano le poltrone\u2026 Altro nemmeno per scherzo.\nNe riparleremo mercoled\u00ec in Senato. Intanto una considerazione, a proposito di buffonate. Per me Salvini pu\u00f2 girare nudo o vestito, bere mojito o acqua, fare il deejay e l\u2019influencer: non lo attacco su questo, ma sulla sua capacit\u00e0 di essere il garante della sicurezza degli italiani. Mi interessa discutere dei risultati di ci\u00f2\u2026 Altro", "post_text": "Leggendo i quotidiani di oggi vediamo che Salvini ha capito di avere i numeri sul decreto sicurezza e dunque rilancia sulla Tav. Il giorno della verit\u00e0 viene spostato a mercoled\u00ec: vedremo dopo il voto delle mozioni Tav se il Governo star\u00e0 in piedi o no.\nVolete la mia opinione? Io dico che \u00e8 tutta una buffonata e che questi non lasciano le poltrone\u2026 Altro nemmeno per scherzo.\nNe riparleremo mercoled\u00ec in Senato. Intanto una considerazione, a proposito di buffonate. Per me Salvini pu\u00f2 girare nudo o vestito, bere mojito o acqua, fare il deejay e l\u2019influencer: non lo attacco su questo, ma sulla sua capacit\u00e0 di essere il garante della sicurezza degli italiani. Mi interessa discutere dei risultati di ci\u00f2\u2026 Altro", "shared_text": "", "time": "2019-08-05 14:11:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156909522729915&id=113335124914", "link": null} +{"post_id": "10156907476784915", "text": "Per giustificare gli attacchi di Salvini ai giornalisti oggi il direttore de La Verit\u00e0, Maurizio Belpietro, scrive un editoriale sugli \u201cabusi di Renzi\u201d. Ricapitolo i fatti: Salvini fa salire il figlio su una moto d\u2019acqua della polizia, la polizia cerca di impedire le riprese, Salvini attacca il videomaker dicendogli di occuparsi di altro \u201cse gli\u2026 Altro piacciono i bambini\u201d, quasi nessuno della stampa fiata in conferenza stampa. E Belpietro che fa? Parla di miei presunti abusi.\nLa mia opinione la sapete. Ho chiesto di lasciare stare il figlio di Salvini perch\u00e9 noi siamo persone civili, non attacchiamo i minorenni (mi rimane il dubbio di sapere che cosa avrebbero fatto loro se sulla moto d\u2019acqua ci\u2026 Altro", "post_text": "Per giustificare gli attacchi di Salvini ai giornalisti oggi il direttore de La Verit\u00e0, Maurizio Belpietro, scrive un editoriale sugli \u201cabusi di Renzi\u201d. Ricapitolo i fatti: Salvini fa salire il figlio su una moto d\u2019acqua della polizia, la polizia cerca di impedire le riprese, Salvini attacca il videomaker dicendogli di occuparsi di altro \u201cse gli\u2026 Altro piacciono i bambini\u201d, quasi nessuno della stampa fiata in conferenza stampa. E Belpietro che fa? Parla di miei presunti abusi.\nLa mia opinione la sapete. Ho chiesto di lasciare stare il figlio di Salvini perch\u00e9 noi siamo persone civili, non attacchiamo i minorenni (mi rimane il dubbio di sapere che cosa avrebbero fatto loro se sulla moto d\u2019acqua ci\u2026 Altro", "shared_text": "", "time": "2019-08-04 19:52:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156907476784915&id=113335124914", "link": null} +{"post_id": "10156906923194915", "text": "Sono negli Stati Uniti. E qui per la seconda volta nel giro di poche ore la nazione assiste a una strage. Dopo El Paso, in Texas, oggi Dayton, in Ohio. L\u2019odio che diventa violenza, la diffusione delle armi da fuoco, il rifiuto di ogni convivenza. Le storie di chi ha perso la vita fanno male al cuore, a cominciare dalla mamma che fa da scudo umano\u2026 Altro per il suo bambino di due mesi: lei muore, lui vivr\u00e0 grazie a lei.\nVanno bloccati e puniti i killer. Ma bisogna anche ridurre la diffusione delle armi e della violenza verbale. In America, naturalmente, ma ovunque.", "post_text": "Sono negli Stati Uniti. E qui per la seconda volta nel giro di poche ore la nazione assiste a una strage. Dopo El Paso, in Texas, oggi Dayton, in Ohio. L\u2019odio che diventa violenza, la diffusione delle armi da fuoco, il rifiuto di ogni convivenza. Le storie di chi ha perso la vita fanno male al cuore, a cominciare dalla mamma che fa da scudo umano\u2026 Altro per il suo bambino di due mesi: lei muore, lui vivr\u00e0 grazie a lei.\nVanno bloccati e puniti i killer. Ma bisogna anche ridurre la diffusione delle armi e della violenza verbale. In America, naturalmente, ma ovunque.", "shared_text": "", "time": "2019-08-04 16:02:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156906923194915&id=113335124914", "link": null} +{"post_id": "10156906526284915", "text": "Anche stamattina Salvini mi attacca dicendo che noi abbiamo fatto disastri.\nEhi, omonimo, qui l\u2019unico che ha combinato disastri sei tu.\nHai preso un Paese che cresceva e hai azzerato il PIL. Usi un linguaggio d\u2019odio che amplifica l\u2019insicurezza. Stai a fare bisboccia in spiaggia e non tocchi palla in Europa. Con o senza raccolta di firme dicci quando restituisci i 49 milioni e quando quereli Savoini. Poi, se ti avanza tempo, mettiti a lavorare che sono 26 anni che ti paghiamo lo stipendio, fannullone.\nCome diresti tu, bacioni\ud83d\ude18", "post_text": "Anche stamattina Salvini mi attacca dicendo che noi abbiamo fatto disastri.\nEhi, omonimo, qui l\u2019unico che ha combinato disastri sei tu.\nHai preso un Paese che cresceva e hai azzerato il PIL. Usi un linguaggio d\u2019odio che amplifica l\u2019insicurezza. Stai a fare bisboccia in spiaggia e non tocchi palla in Europa. Con o senza raccolta di firme dicci quando restituisci i 49 milioni e quando quereli Savoini. Poi, se ti avanza tempo, mettiti a lavorare che sono 26 anni che ti paghiamo lo stipendio, fannullone.\nCome diresti tu, bacioni\ud83d\ude18", "shared_text": "", "time": "2019-08-04 12:50:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156906526284915&id=113335124914", "link": null} +{"post_id": "10156904438269915", "text": "Ho promesso di non parlare delle discussioni interne al Pd perch\u00e9 litigare tra noi in presenza di un Governo come questo \u00e8 allucinante.\nPurtroppo anche oggi ci sono polemiche inspiegabili sul fatto che i bravissimi comitati di #AzioneCivile hanno presentato una raccolta firme per la mozione di sfiducia a Salvini. Ricordate la storia: alcuni di noi\u2026 Altro hanno proposto di portare il Ministro dell\u2019Interno in Parlamento attraverso una mozione di sfiducia. Il gruppo dirigente del Pd ha bloccato questa iniziativa, definendola sbagliata. E noi abbiamo di conseguenza fermato le macchine. Poi quando finalmente il PD ha fatto la mozione di sfiducia era troppo tardi per votarla in Aula prima di settembre.\u2026 Altro", "post_text": "Ho promesso di non parlare delle discussioni interne al Pd perch\u00e9 litigare tra noi in presenza di un Governo come questo \u00e8 allucinante.\nPurtroppo anche oggi ci sono polemiche inspiegabili sul fatto che i bravissimi comitati di #AzioneCivile hanno presentato una raccolta firme per la mozione di sfiducia a Salvini. Ricordate la storia: alcuni di noi\u2026 Altro hanno proposto di portare il Ministro dell\u2019Interno in Parlamento attraverso una mozione di sfiducia. Il gruppo dirigente del Pd ha bloccato questa iniziativa, definendola sbagliata. E noi abbiamo di conseguenza fermato le macchine. Poi quando finalmente il PD ha fatto la mozione di sfiducia era troppo tardi per votarla in Aula prima di settembre.\u2026 Altro", "shared_text": "", "time": "2019-08-03 17:46:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156904438269915&id=113335124914", "link": null} +{"post_id": "10156904184139915", "text": "Chi tutti i giorni soffre per l\u2019Alzheimer di un amico o di un membro della propria famiglia, sa che questa notizia vuol dire tanto. L\u2019Alzheimer \u00e8 una tragedia ancora lontana da essere sconfitta. Ma ogni ricerca\u2026 Altro che porta la lotta pi\u00f9 avanti \u00e8 una notizia fantastica, da incoraggiare. Il futuro non \u00e8 il luogo brutto, pieno di ombre che molti vogliono rappresentare: l\u2019innovazione, la ricerca, la tecnologia possono farci vincere sfide che oggi sembrano impossibili. E per farlo bisogna credere nella scienza, credere nel domani senza cedere agli stregoni della paura. Un passo alla volta, giorno dopo giorno.\nIntanto un abbraccio agli amici che hanno membri della propria famiglia malati di Alzheimer e di demenza senile. Facendo il sindaco, mi sono reso conto che sono molti di pi\u00f9 di quelli che pensiamo.\nAGI.IT\nUn test del sangue scova l\u2019Alzheimer 20 anni prima della comparsa dei sintomi", "post_text": "Chi tutti i giorni soffre per l\u2019Alzheimer di un amico o di un membro della propria famiglia, sa che questa notizia vuol dire tanto. L\u2019Alzheimer \u00e8 una tragedia ancora lontana da essere sconfitta. Ma ogni ricerca\u2026 Altro che porta la lotta pi\u00f9 avanti \u00e8 una notizia fantastica, da incoraggiare. Il futuro non \u00e8 il luogo brutto, pieno di ombre che molti vogliono rappresentare: l\u2019innovazione, la ricerca, la tecnologia possono farci vincere sfide che oggi sembrano impossibili. E per farlo bisogna credere nella scienza, credere nel domani senza cedere agli stregoni della paura. Un passo alla volta, giorno dopo giorno.\nIntanto un abbraccio agli amici che hanno membri della propria famiglia malati di Alzheimer e di demenza senile. Facendo il sindaco, mi sono reso conto che sono molti di pi\u00f9 di quelli che pensiamo.", "shared_text": "AGI.IT\nUn test del sangue scova l\u2019Alzheimer 20 anni prima della comparsa dei sintomi", "time": "2019-08-03 15:39:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c68.0.765.400a/s480x480/67821370_23843650989200181_4664996093103177728_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=8TLSWH1fa8cAQkueRWaJ8IBqjPyGIAOt6oNyGHtFHS8JO8gFj3L1ajtvg&_nc_ht=scontent-cdt1-1.xx&oh=54e2b4ed45692c4531be00ef4771725e&oe=5E8188CF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156904184139915&id=113335124914", "link": "https://www.agi.it/salute/alzheimer_scoperta_test_sangue-5955311/news/2019-08-02/?fbclid=IwAR0mZ_kFrDlic3Xx7miNYqOsUzKJOr5oo-42ruVs3yo0sBGakxJ28Lm33RI"} +{"post_id": "10156903877989915", "text": "Lei si chiama Alia Guagni. \u00c8 una calciatrice che ha partecipato con le Azzurre ai Mondiali il mese scorso. \u00c8 il capitano che a Firenze ha alzato in cielo uno scudetto e una coppa. In questi giorni ha detto No\u2026 Altro al Real Madrid per restare nella Fiorentina femminile. \u00c8 un gesto bellissimo, per la squadra e per la citt\u00e0. Ma deve essere uno stimolo in pi\u00f9 a dare pi\u00f9 diritti alle calciatrici e pi\u00f9 in generale alle donne che fanno sport. Noi abbiamo iniziato qualche anno fa, ma c\u2019\u00e8 ancora molto da fare. Inutile entusiasmarsi per le grandi vittorie se poi le donne vengono trattate come atlete di serie C. E proviamoci insieme senza divisioni di colore politico: lo sport \u00e8 di tutti.\nBrava Alia, viva Fiorenza!", "post_text": "Lei si chiama Alia Guagni. \u00c8 una calciatrice che ha partecipato con le Azzurre ai Mondiali il mese scorso. \u00c8 il capitano che a Firenze ha alzato in cielo uno scudetto e una coppa. In questi giorni ha detto No\u2026 Altro al Real Madrid per restare nella Fiorentina femminile. \u00c8 un gesto bellissimo, per la squadra e per la citt\u00e0. Ma deve essere uno stimolo in pi\u00f9 a dare pi\u00f9 diritti alle calciatrici e pi\u00f9 in generale alle donne che fanno sport. Noi abbiamo iniziato qualche anno fa, ma c\u2019\u00e8 ancora molto da fare. Inutile entusiasmarsi per le grandi vittorie se poi le donne vengono trattate come atlete di serie C. E proviamoci insieme senza divisioni di colore politico: lo sport \u00e8 di tutti.\nBrava Alia, viva Fiorenza!", "shared_text": "", "time": "2019-08-03 13:05:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67556025_10156903877949915_7921074820983291904_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=3gEzkQgN9HQAQnxm9WVieTNFn0RRC-to015Sd067phLQVsRv4FpfdlbZw&_nc_ht=scontent-cdt1-1.xx&oh=39e4d7842c1940bb7698c127711b7219&oe=5E7B1A9A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156903877989915&id=113335124914", "link": null} +{"post_id": "10156902468849915", "text": "E alla fine della giornata il premio Faccia di Bronzo lo vince ancora lui, Gigggino Di Maio. Oggi ha tirato fuori dal repertorio un evergreen dell\u2019ultimo anno: la revoca della concessione a Benetton. Ci piace\u2026 Altro ricordare Di Maio cos\u00ec, mentre spiega agli italiani perch\u00e9 non dar\u00e0 mai Alitalia a Benetton. Non ci sar\u00e0 nessuna revoca e Di Maio usa questo tema come diversivo di giornata. Quello che fa male \u00e8 la triste operazione di sciacallaggio che Di Maio fa su una tragedia nazionale come il Morandi. Ha cambiato idea su tutto, da Alitalia agli 80\u20ac, dalle Olimpiadi al Tap. Lo far\u00e0 anche sulla revoca", "post_text": "E alla fine della giornata il premio Faccia di Bronzo lo vince ancora lui, Gigggino Di Maio. Oggi ha tirato fuori dal repertorio un evergreen dell\u2019ultimo anno: la revoca della concessione a Benetton. Ci piace\u2026 Altro ricordare Di Maio cos\u00ec, mentre spiega agli italiani perch\u00e9 non dar\u00e0 mai Alitalia a Benetton. Non ci sar\u00e0 nessuna revoca e Di Maio usa questo tema come diversivo di giornata. Quello che fa male \u00e8 la triste operazione di sciacallaggio che Di Maio fa su una tragedia nazionale come il Morandi. Ha cambiato idea su tutto, da Alitalia agli 80\u20ac, dalle Olimpiadi al Tap. Lo far\u00e0 anche sulla revoca", "shared_text": "", "time": "2019-08-02 22:23:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156902468849915&id=113335124914", "link": null} +{"post_id": "10156902273029915", "text": "Ieri durante una trasmissione televisiva su La7 il giornalista Padellaro del Fatto quotidiano, qui ritratto mentre presenta un suo libro, in pi\u00f9 di una circostanza mi ha pi\u00f9 volte chiamato in causa in modo\u2026 Altro assurdo e diffamatorio. Credo di essere ormai un\u2019ossessione per alcune firme del Fatto Quotidiano. Vengo coinvolto anche quando proprio non c\u2019entro niente, visto che si parlava di insulti di Salvini ai giornalisti e della moto d\u2019acqua. Ho dato mandato ai legali di agire in giudizio civile contro Padellaro per diffamazione. Non intendo pi\u00f9 permettere a nessuno di gettarmi fango.\nCome da linee guida che ci siamo dati un mese fa a Milano, tratterr\u00f2 solo il 50% dell\u2019eventuale risarcimento danni. Il resto sar\u00e0 devoluto a un\u2019associazione di volontariato scelta insieme ai Comitati d\u2019azione civile.\nBuon weekend a tutti", "post_text": "Ieri durante una trasmissione televisiva su La7 il giornalista Padellaro del Fatto quotidiano, qui ritratto mentre presenta un suo libro, in pi\u00f9 di una circostanza mi ha pi\u00f9 volte chiamato in causa in modo\u2026 Altro assurdo e diffamatorio. Credo di essere ormai un\u2019ossessione per alcune firme del Fatto Quotidiano. Vengo coinvolto anche quando proprio non c\u2019entro niente, visto che si parlava di insulti di Salvini ai giornalisti e della moto d\u2019acqua. Ho dato mandato ai legali di agire in giudizio civile contro Padellaro per diffamazione. Non intendo pi\u00f9 permettere a nessuno di gettarmi fango.\nCome da linee guida che ci siamo dati un mese fa a Milano, tratterr\u00f2 solo il 50% dell\u2019eventuale risarcimento danni. Il resto sar\u00e0 devoluto a un\u2019associazione di volontariato scelta insieme ai Comitati d\u2019azione civile.\nBuon weekend a tutti", "shared_text": "", "time": "2019-08-02 21:03:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67575971_10156902272984915_608207406798733312_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=w5QWB_-RKewAQkrESm76dopzz7P_58PhX5v2TahxavkbGYHzaLtk1_kzA&_nc_ht=scontent-cdt1-1.xx&oh=25a65afc826fc3020953103544aeae60&oe=5E4CFA59", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156902273029915&id=113335124914", "link": null} +{"post_id": "10156901857639915", "text": "Oggi La Nazione e il Carlino aprono con questa brutta notizia. Io penso che un Governo serio dovrebbe occuparsi di temi come l\u2019emergenza droga, non come la finta emergenza immigrazione. Un Governo serio\u2026 Altro dovrebbe occuparsi della produzione industriale che fa meno 1.2% rispetto allo scorso anno, non delle polemiche tra i due vicepremier fannulloni. Un Governo serio, se solo ci fosse, dovrebbe fare qualcosa. E non passare il tempo a litigare", "post_text": "Oggi La Nazione e il Carlino aprono con questa brutta notizia. Io penso che un Governo serio dovrebbe occuparsi di temi come l\u2019emergenza droga, non come la finta emergenza immigrazione. Un Governo serio\u2026 Altro dovrebbe occuparsi della produzione industriale che fa meno 1.2% rispetto allo scorso anno, non delle polemiche tra i due vicepremier fannulloni. Un Governo serio, se solo ci fosse, dovrebbe fare qualcosa. E non passare il tempo a litigare", "shared_text": "", "time": "2019-08-02 18:14:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/67819427_10156901857609915_1750943435117821952_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=2X_5ufwQ-UEAQmx85VDG5IvI-UIKzrA2yiIKCw3pa-Rlo--duNf6uojGQ&_nc_ht=scontent-cdt1-1.xx&oh=545cafc24c44a786f1618d40429e0a8f&oe=5E4BAAF2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156901857639915&id=113335124914", "link": null} +{"post_id": "10156901455074915", "text": "Poche esperienze mi hanno cambiato la vita come quella di fare l\u2019arbitro di calcio. Sei solo davanti a tante persone pronte ad attaccarti al primo errore. Devi decidere in una frazione di secondo, prenderti le\u2026 Altro responsabilit\u00e0, resistere agli insulti. Per questo trovo bellissimo che il prossimo 14 agosto la Supercoppa Europea tra Liverpool e Chelsea sia arbitrata da una donna.\n\u00c8 la prima volta, non sar\u00e0 l\u2019ultima. La strada verso la parit\u00e0 e la battaglia per l\u2019equal pay passa anche da gesti come questo. In bocca al lupo \u201calla collega\u201d Stephanie", "post_text": "Poche esperienze mi hanno cambiato la vita come quella di fare l\u2019arbitro di calcio. Sei solo davanti a tante persone pronte ad attaccarti al primo errore. Devi decidere in una frazione di secondo, prenderti le\u2026 Altro responsabilit\u00e0, resistere agli insulti. Per questo trovo bellissimo che il prossimo 14 agosto la Supercoppa Europea tra Liverpool e Chelsea sia arbitrata da una donna.\n\u00c8 la prima volta, non sar\u00e0 l\u2019ultima. La strada verso la parit\u00e0 e la battaglia per l\u2019equal pay passa anche da gesti come questo. In bocca al lupo \u201calla collega\u201d Stephanie", "shared_text": "", "time": "2019-08-02 14:54:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/68324814_10156901453829915_4372955617103446016_o.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=ARgNjH9Ddo0AQmKtqhfcuk2HwGQgsYk1WlzJl1UjzqKViV2hhXwGEvBJw&_nc_ht=scontent-cdt1-1.xx&oh=c0a7bfa79d63be71b751f5ede66fc9bc&oe=5E87A068", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156901455074915&id=113335124914", "link": null} +{"post_id": "10156901214104915", "text": "Repubblica richiama la nostra raccolta di firme contro Salvini. \u00c8 stato un errore non presentare subito la mozione di sfiducia. Ma adesso utilizziamo questo tempo per firmare e far firmare. Se ama cos\u00ec tanto\u2026 Altro stare in spiaggia, lasciamo che possa godersi il mare. E mettiamo al Viminale un vero Ministro, non un aspirante influencer\nQui per firmarla: https://www.comitatiazionecivile.it/petizione_dimissioni_salvini", "post_text": "Repubblica richiama la nostra raccolta di firme contro Salvini. \u00c8 stato un errore non presentare subito la mozione di sfiducia. Ma adesso utilizziamo questo tempo per firmare e far firmare. Se ama cos\u00ec tanto\u2026 Altro stare in spiaggia, lasciamo che possa godersi il mare. E mettiamo al Viminale un vero Ministro, non un aspirante influencer\nQui per firmarla: https://www.comitatiazionecivile.it/petizione_dimissioni_salvini", "shared_text": "", "time": "2019-08-02 13:09:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/68443439_10156901213554915_2534768373863022592_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=M06Ex8yPLIcAQmhEBce8IN8LAvzTULB2ueG50jPG7vKJ7ZApMWFTJaatw&_nc_ht=scontent-cdt1-1.xx&oh=a3dc1294e84cf407fc043f84a492e324&oe=5E4F1EA2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156901214104915&id=113335124914", "link": "https://www.comitatiazionecivile.it/petizione_dimissioni_salvini?fbclid=IwAR1Ju2vxAUjcR6tmrDJp5c8kHKJgrnadu77uz1nyS1yqTM3CYLGxD9gyvYM"} +{"post_id": "10156900923179915", "text": "Mentre chi guida il Governo semina odio e mette in discussione i valori fondamentali del Paese, gli esponenti Democratici anzich\u00e9 attaccare il Governo litigano tra loro, massacrano il candidato pi\u00f9 forte, fanno polemiche sul buon governo del passato.\nMa che strano il Partito Democratico. Americano \ud83d\ude09", "post_text": "Mentre chi guida il Governo semina odio e mette in discussione i valori fondamentali del Paese, gli esponenti Democratici anzich\u00e9 attaccare il Governo litigano tra loro, massacrano il candidato pi\u00f9 forte, fanno polemiche sul buon governo del passato.\nMa che strano il Partito Democratico. Americano \ud83d\ude09", "shared_text": "", "time": "2019-08-02 10:08:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156900923179915&id=113335124914", "link": null} +{"post_id": "10156899756129915", "text": "", "post_text": "", "shared_text": "", "time": "2019-08-01 22:12:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67402040_10156899755969915_6100530543185625088_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Wxt0XymDfooAQm5zPp0ETJ1vPNpGr2o-0tVA-YiAy9WYT_Mbnf7rmcNEA&_nc_ht=scontent-cdt1-1.xx&oh=25068e050d673a6ca138f181689abd72&oe=5E508064", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10156899481804915", "text": "La mozione di sfiducia a Matteo Salvini \u00e8 stata messa in calendario per il 12 settembre. Si tratta di una decisione assurda: avremmo dovuto votare prima in presenza di un ministro dell\u2019Interno che alimenta\u2026 Altro l\u2019odio, il rancore, la tensione, la caccia al diverso, gli insulti ai giornalisti. Lo scandalo dei 49 milioni di euro sottratti agli italiani e impiegati in modo opaco, le strane connessioni di dirigenti leghisti con funzionari russi e il sequestro in alto mare di profughi e richiedenti asilo dimostrano una volta di pi\u00f9 che Matteo Salvini non \u00e8 adeguato al ruolo di garante della sicurezza dei cittadini italiani.\nPer questo, da qui al 12 settembre, vogliamo mobilitare le donne e gli uomini di buona volont\u00e0 che hanno a cuore le sorti della comunit\u00e0 italiana e che non si rassegnano e non demordono. Chiediamo tutti insieme le dimissioni di Matteo Salvini. Facciamolo ad alta voce e senza paura: mai come in questo momento \u00e8 necessario far sentire la voce di chi si oppone a un modello culturale di odio e violenza verbale.\nCOMITATIAZIONECIVILE.IT\nMozione di sfiducia per Salvini: sparge odio e crea insicurezza", "post_text": "La mozione di sfiducia a Matteo Salvini \u00e8 stata messa in calendario per il 12 settembre. Si tratta di una decisione assurda: avremmo dovuto votare prima in presenza di un ministro dell\u2019Interno che alimenta\u2026 Altro l\u2019odio, il rancore, la tensione, la caccia al diverso, gli insulti ai giornalisti. Lo scandalo dei 49 milioni di euro sottratti agli italiani e impiegati in modo opaco, le strane connessioni di dirigenti leghisti con funzionari russi e il sequestro in alto mare di profughi e richiedenti asilo dimostrano una volta di pi\u00f9 che Matteo Salvini non \u00e8 adeguato al ruolo di garante della sicurezza dei cittadini italiani.\nPer questo, da qui al 12 settembre, vogliamo mobilitare le donne e gli uomini di buona volont\u00e0 che hanno a cuore le sorti della comunit\u00e0 italiana e che non si rassegnano e non demordono. Chiediamo tutti insieme le dimissioni di Matteo Salvini. Facciamolo ad alta voce e senza paura: mai come in questo momento \u00e8 necessario far sentire la voce di chi si oppone a un modello culturale di odio e violenza verbale.", "shared_text": "COMITATIAZIONECIVILE.IT\nMozione di sfiducia per Salvini: sparge odio e crea insicurezza", "time": "2019-08-01 20:21:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.5.640.335a/s480x480/68283806_23843647017840181_1314421522001035264_n.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=NQ7apU1l6pMAQl6WtywTWyPxPoNzdsypwrAEylY8uA75FINZ8tWSZ92Pw&_nc_ht=scontent-cdt1-1.xx&oh=0c3d34ff4da94152379c3c8d2ea8a399&oe=5E8C39C2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156899481804915&id=113335124914", "link": "https://www.comitatiazionecivile.it/petizione_dimissioni_salvini?fbclid=IwAR1aFcHgOuHqL-NeqnQ1YdMIg5Uj1YOjOGX9I9NO0Y4sw-klDjF3lGmecOk"} +{"post_id": "10156899030839915", "text": "Oggi lo Svimez dice che mentre l'Italia di Salvini e Di Maio \u00e8 tornata a zero, il Sud va ancora peggio: \u00e8 SOTTO zero. Dobbiamo tornare a crescere, dobbiamo sbloccare le infrastrutture, dobbiamo creare posti di lavoro, non navigator.\nMa per farlo va rotto l'incantesimo per cui sembra che l'unico problema in Italia sia l'immigrazione.\nIl problema non\u2026 Altro \u00e8 l'immigrazione, ma \u00e8 l'emigrazione: i ragazzi che dal Sud se ne vanno all'estero .\nIl problema non \u00e8 l'immigrazione, ma l'illegalit\u00e0: i reati vanno puniti, senza badare al colore della pelle del reo.\nIl problema non \u00e8 l'immigrazione, ma l\u2019economia ferma: vanno rilanciate le opere pubbliche che lo statista Toninelli ha bloccato in modo assurdo.\nOggi \u00e8 il primo giorno di agosto, mese di relax e di chiacchiere. Riusciremo a parlare dei veri problemi dell'Italia o continueremo ad essere bloccati dall'incantesimo di Salvini per cui il problema \u00e8 solo, soltanto, sempre l\u2019immigrazione?\nMettiamocela tutta: l\u2019Italia merita un dibattito pi\u00f9 serio e pi\u00f9 civile.", "post_text": "Oggi lo Svimez dice che mentre l'Italia di Salvini e Di Maio \u00e8 tornata a zero, il Sud va ancora peggio: \u00e8 SOTTO zero. Dobbiamo tornare a crescere, dobbiamo sbloccare le infrastrutture, dobbiamo creare posti di lavoro, non navigator.\nMa per farlo va rotto l'incantesimo per cui sembra che l'unico problema in Italia sia l'immigrazione.\nIl problema non\u2026 Altro \u00e8 l'immigrazione, ma \u00e8 l'emigrazione: i ragazzi che dal Sud se ne vanno all'estero .\nIl problema non \u00e8 l'immigrazione, ma l'illegalit\u00e0: i reati vanno puniti, senza badare al colore della pelle del reo.\nIl problema non \u00e8 l'immigrazione, ma l\u2019economia ferma: vanno rilanciate le opere pubbliche che lo statista Toninelli ha bloccato in modo assurdo.\nOggi \u00e8 il primo giorno di agosto, mese di relax e di chiacchiere. Riusciremo a parlare dei veri problemi dell'Italia o continueremo ad essere bloccati dall'incantesimo di Salvini per cui il problema \u00e8 solo, soltanto, sempre l\u2019immigrazione?\nMettiamocela tutta: l\u2019Italia merita un dibattito pi\u00f9 serio e pi\u00f9 civile.", "shared_text": "", "time": "2019-08-01 16:45:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156899030839915&id=113335124914", "link": null} +{"post_id": "10156896258199915", "text": "Con noi l\u2019Italia era tornata a crescere, con loro l\u2019Italia ha inchiodato. E adesso Istat ci dice che siamo a zero. Zero come la crescita del PIL, zero come le idee economiche di Di Maio e Salvini, zero come la\u2026 Altro credibilit\u00e0 internazionale di Conte, zero come le opere sbloccate da Toninelli. E per giustificarsi adesso citano i dati del lavoro. Senza rendersi conto che i posti di lavoro sono cresciuti pi\u00f9 di tutti con il #JobsAct. Non ci credete? Ho fatto questo disegnino, cos\u00ec lo capisce anche Di Maio", "post_text": "Con noi l\u2019Italia era tornata a crescere, con loro l\u2019Italia ha inchiodato. E adesso Istat ci dice che siamo a zero. Zero come la crescita del PIL, zero come le idee economiche di Di Maio e Salvini, zero come la\u2026 Altro credibilit\u00e0 internazionale di Conte, zero come le opere sbloccate da Toninelli. E per giustificarsi adesso citano i dati del lavoro. Senza rendersi conto che i posti di lavoro sono cresciuti pi\u00f9 di tutti con il #JobsAct. Non ci credete? Ho fatto questo disegnino, cos\u00ec lo capisce anche Di Maio", "shared_text": "", "time": "2019-07-31 12:18:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67153574_10156896258059915_7840965962856660992_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=agWeGQ3mscQAQmA79t2gJqSJ0dq8MyL8iQFvcEMdGWgdPRdj_pjVgDZeg&_nc_ht=scontent-cdt1-1.xx&oh=dc1e04c6cd4a83da8dbe18ae0e39990b&oe=5E4C9A33", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156896258199915&id=113335124914", "link": null} +{"post_id": "10156895908084915", "text": "Premessa numero 1. Se avessi utilizzato i mezzi e gli uomini delle forze dell\u2019ordine per far divertire i miei figli, Lega e Cinque Stelle mi avrebbero massacrato. Massacrato. Avrebbero chiesto le mie dimissioni tutti, dai social a Travaglio. Avrebbero occupato i banchi del Governo e Di Battista avrebbe marciato su Palazzo Chigi. La Meloni e Salvini\u2026 Altro avrebbero organizzato sit-in sotto le caserme e i commissariati di Firenze e i profili social dei miei figli sarebbero stati presi d\u2019assalto da insulti e minacce.\nPremessa numero 2. Matteo Salvini sta distruggendo la reputazione del Viminale con interventi sguaiati, modalit\u00e0 rozze, scelte controproducenti. Continuo a pensare che sia stato un\u2026 Altro", "post_text": "Premessa numero 1. Se avessi utilizzato i mezzi e gli uomini delle forze dell\u2019ordine per far divertire i miei figli, Lega e Cinque Stelle mi avrebbero massacrato. Massacrato. Avrebbero chiesto le mie dimissioni tutti, dai social a Travaglio. Avrebbero occupato i banchi del Governo e Di Battista avrebbe marciato su Palazzo Chigi. La Meloni e Salvini\u2026 Altro avrebbero organizzato sit-in sotto le caserme e i commissariati di Firenze e i profili social dei miei figli sarebbero stati presi d\u2019assalto da insulti e minacce.\nPremessa numero 2. Matteo Salvini sta distruggendo la reputazione del Viminale con interventi sguaiati, modalit\u00e0 rozze, scelte controproducenti. Continuo a pensare che sia stato un\u2026 Altro", "shared_text": "", "time": "2019-07-31 08:06:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156895908084915&id=113335124914", "link": null} +{"post_id": "10156895192374915", "text": "L\u2019ennesima vergognosa bufala: questa foto \u00e8 la foto del funerale di Ascoli per alcune delle vittime del terremoto. Eppure ancora oggi migliaia di persone credono alle fake news messe in giro ad arte per\u2026 Altro attaccarmi. Occorre una grande sfida educativa per sconfiggere le fake news e restituire dignit\u00e0 al confronto/scontro politico. Su questa battaglia io non mollo e mon moller\u00f2 di un solo centimetro.\nTPI.IT\n\"Renzi e Boldrini ai funerali di un nigeriano mafioso ma non a quelli del carabiniere\": la nuova bufala su Fb", "post_text": "L\u2019ennesima vergognosa bufala: questa foto \u00e8 la foto del funerale di Ascoli per alcune delle vittime del terremoto. Eppure ancora oggi migliaia di persone credono alle fake news messe in giro ad arte per\u2026 Altro attaccarmi. Occorre una grande sfida educativa per sconfiggere le fake news e restituire dignit\u00e0 al confronto/scontro politico. Su questa battaglia io non mollo e mon moller\u00f2 di un solo centimetro.", "shared_text": "TPI.IT\n\"Renzi e Boldrini ai funerali di un nigeriano mafioso ma non a quelli del carabiniere\": la nuova bufala su Fb", "time": "2019-07-30 23:50:31", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?w=476&h=249&url=https%3A%2F%2Fwww.tpi.it%2Fapp%2Fuploads%2F2019%2F07%2Fbufala-renzi-boldrini-funerali-carabiniere.png&cfs=1&jq=75&sx=0&sy=0&sw=737&sh=386&ext=jpg&_nc_hash=AQCNOxJ_duoOFAyi", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156895192374915&id=113335124914", "link": "https://www.tpi.it/2019/07/30/carabiniere-ucciso-bufala-renzi-boldrini/?fbclid=IwAR3wUdqmolh_juu4s-mtDcIq7rSm9oSDrjTBvM3qFfU8sE31xoEQ7u2sTe4"} +{"post_id": "10156893737424915", "text": "Continua la soap opera chiamata Governo. Oggi Salvini fa l\u2019offeso perch\u00e9 Di Maio lo ha definito \u201cquell\u2019altro\u201d. Vette altissime, insomma. Ma mentre quello e quell\u2019altro litigano, la produzione industriale di luglio fa MENO 0.6 (fonte CSC). A noi facevamo le pulci perch\u00e9 il PIL faceva +1.5, con questi siamo tornati a zero.\nCi diamo una mossa? Vanno sbloccate le infrastrutture e i posti di lavoro, altro che NoTav e reddito di cittadinanza.", "post_text": "Continua la soap opera chiamata Governo. Oggi Salvini fa l\u2019offeso perch\u00e9 Di Maio lo ha definito \u201cquell\u2019altro\u201d. Vette altissime, insomma. Ma mentre quello e quell\u2019altro litigano, la produzione industriale di luglio fa MENO 0.6 (fonte CSC). A noi facevamo le pulci perch\u00e9 il PIL faceva +1.5, con questi siamo tornati a zero.\nCi diamo una mossa? Vanno sbloccate le infrastrutture e i posti di lavoro, altro che NoTav e reddito di cittadinanza.", "shared_text": "", "time": "2019-07-30 10:39:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156893737424915&id=113335124914", "link": null} +{"post_id": "10156892022804915", "text": "Grande emozione vedere il nostro Luca Parmitano parlare al mondo intero contro il riscaldamento globale. Dopo gli accordi di Parigi, che l\u2019Italia ha orgogliosamente firmato ai tempi del nostro Governo, tutto sembra essersi fermato. Grazie Luca per la forza del tuo messaggio", "post_text": "Grande emozione vedere il nostro Luca Parmitano parlare al mondo intero contro il riscaldamento globale. Dopo gli accordi di Parigi, che l\u2019Italia ha orgogliosamente firmato ai tempi del nostro Governo, tutto sembra essersi fermato. Grazie Luca per la forza del tuo messaggio", "shared_text": "", "time": "2019-07-29 17:11:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67421340_10156892022759915_803597159994753024_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=e0K0SezOcwYAQlsDEldnpyrjCFzMBSdHI6Hjni7t0JB5rktS3b1SaCyVQ&_nc_ht=scontent-cdt1-1.xx&oh=c0de010f7b295e10c2fdd0a0784a0815&oe=5E88F3FD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156892022804915&id=113335124914", "link": null} +{"post_id": "10156891488074915", "text": "Siamo circondati da populismo e fake news. Dobbiamo ripartire dall\u2019educazione, dallo studio, dalla formazione. Per questo dal 21 al 24 agosto al Ciocco (Lucca), ospiteremo una scuola estiva per under30. Sono le\u2026 Altro ultime 24 ore per iscriversi: sar\u00e0 un\u2019esperienza diversa, tanto studio. Ma solo studiando combatteremo la cialtroneria di chi ci governa.\nCOMITATIAZIONECIVILE.IT\nMeritare l'Italia - scuola estiva per Under 30", "post_text": "Siamo circondati da populismo e fake news. Dobbiamo ripartire dall\u2019educazione, dallo studio, dalla formazione. Per questo dal 21 al 24 agosto al Ciocco (Lucca), ospiteremo una scuola estiva per under30. Sono le\u2026 Altro ultime 24 ore per iscriversi: sar\u00e0 un\u2019esperienza diversa, tanto studio. Ma solo studiando combatteremo la cialtroneria di chi ci governa.", "shared_text": "COMITATIAZIONECIVILE.IT\nMeritare l'Italia - scuola estiva per Under 30", "time": "2019-07-29 12:07:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.59.1080.565a/s480x480/67336558_23843637997950181_8659960640737116160_n.png.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=mC94wTwZdpAAQlidT6YpGjbU4j8MCzMEj_82FEKLTAxGkMAThzRrqJHow&_nc_ht=scontent-cdt1-1.xx&oh=9f5a932a9a13ea678d7edbe2ca188fe8&oe=5E814E58", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156891488074915&id=113335124914", "link": "https://www.comitatiazionecivile.it/meritare_italia_scuola_estiva_per_under_30?fbclid=IwAR1FwNDoS3PqUo-NiLjpP8biPb0dv0RSvkH5aXVNByY9VRWLJ9_VDuAGsH8"} +{"post_id": "10156891262529915", "text": "Gli sciacalli non possono stare in Parlamento.\nDopo l\u2019omicidio del brigadiere Mario Cerciello Rega, una deputata della destra mi ha aggredito strumentalmente sostenendo che i due fossero africani e che io\u2026 Altro fossi il \u201cresponsabile morale e politico\u201d di quanto accaduto.\nPer questo i comitati d\u2019azione civile si sono dati l\u2019obiettivo di raggiungere 25MILA firme da consegnare in questa settimana alla Camera chiedendo le dimissioni di questa indegna deputata.\nIn un giorno e mezzo sono state raccolte la met\u00e0 delle firme necessarie. Ci aiuti firmando e facendo girare l\u2019appello?\nIl posto degli sciacalli non \u00e8 il Parlamento.\nCOMITATIAZIONECIVILE.IT\nBasta Odio: dimissioni per gli sciacalli", "post_text": "Gli sciacalli non possono stare in Parlamento.\nDopo l\u2019omicidio del brigadiere Mario Cerciello Rega, una deputata della destra mi ha aggredito strumentalmente sostenendo che i due fossero africani e che io\u2026 Altro fossi il \u201cresponsabile morale e politico\u201d di quanto accaduto.\nPer questo i comitati d\u2019azione civile si sono dati l\u2019obiettivo di raggiungere 25MILA firme da consegnare in questa settimana alla Camera chiedendo le dimissioni di questa indegna deputata.\nIn un giorno e mezzo sono state raccolte la met\u00e0 delle firme necessarie. Ci aiuti firmando e facendo girare l\u2019appello?\nIl posto degli sciacalli non \u00e8 il Parlamento.", "shared_text": "COMITATIAZIONECIVILE.IT\nBasta Odio: dimissioni per gli sciacalli", "time": "2019-07-29 08:57:56", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAQ8lRjRAKQt722&w=382&h=200&url=https%3A%2F%2Fd3n8a8pro7vhmx.cloudfront.net%2Fcomitaticivici%2Fpages%2F123%2Fmeta_images%2Foriginal%2Fbastaodio200ter.jpg%3F1564383368&cfs=1&jq=75&ext=jpg&_nc_hash=AQDXE0Sv4ttvL_we", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156891262529915&id=113335124914", "link": "https://www.comitatiazionecivile.it/petizione_baldini?fbclid=IwAR0CHJk22bOe0B-S7r-LV24MzBXhXoniHujhTowwBeLOoy-qGZBYdSXdVcM"} +{"post_id": "10156890085584915", "text": "Il Governo litiga su tutto. Eppure non cade. Perch\u00e9? C\u2019\u00e8 un motivo per cui non si va a votare? Lo spiega oggi il Corriere della Sera, edizione Torino, per giustificare il fatto che il consiglio comunale non\u2026 Altro sfiduci il sindaco Appendino. Se si va a votare, vanno tutti a casa. E molti di loro non hanno nemmeno un lavoro da cui ripartire. Spiace dirlo ma \u00e8 la stessa ragione per la quale i grillini non fanno la crisi in Parlamento. Il gettone di cittadinanza \u00e8 pi\u00f9 importante di tutto. E si bevono la Tav, l\u2019Ilva, il decreto sicurezza, l\u2019immunit\u00e0 per Salvini, eccetera.\nNessuno ama le poltrone della casta pi\u00f9 di chi un tempo era contro la casta: pi\u00f9 che l\u2019onor, pot\u00e8 il digiuno.", "post_text": "Il Governo litiga su tutto. Eppure non cade. Perch\u00e9? C\u2019\u00e8 un motivo per cui non si va a votare? Lo spiega oggi il Corriere della Sera, edizione Torino, per giustificare il fatto che il consiglio comunale non\u2026 Altro sfiduci il sindaco Appendino. Se si va a votare, vanno tutti a casa. E molti di loro non hanno nemmeno un lavoro da cui ripartire. Spiace dirlo ma \u00e8 la stessa ragione per la quale i grillini non fanno la crisi in Parlamento. Il gettone di cittadinanza \u00e8 pi\u00f9 importante di tutto. E si bevono la Tav, l\u2019Ilva, il decreto sicurezza, l\u2019immunit\u00e0 per Salvini, eccetera.\nNessuno ama le poltrone della casta pi\u00f9 di chi un tempo era contro la casta: pi\u00f9 che l\u2019onor, pot\u00e8 il digiuno.", "shared_text": "", "time": "2019-07-28 21:36:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67481430_10156890085529915_5281294217560195072_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=bcKk_v83fYwAQm1jDKVDwuSsZJjYfU18enismAObre4W7FP9oEjFKcn8Q&_nc_ht=scontent-cdt1-1.xx&oh=b3faae271841bf4224b8ff7deeddf82a&oe=5E8BE908", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156890085584915&id=113335124914", "link": null} +{"post_id": "10156888736809915", "text": "Una chiacchierata con Avvenire sulla situazione politica, sul mondo cattolico, sull\u2019odio che regna sui social (avete firmato la petizione contro la deputata che mi ha accusato dell\u2019omicidio di Roma?). E naturalmente sulla scuola estiva per i ragazzi. Mi dite che ne pensate?\nAVVENIRE.IT\nIntervista. Renzi: \u00abPagheremo per anni la cura Salvini\u00bb. Con il M5s intesa impossibile", "post_text": "Una chiacchierata con Avvenire sulla situazione politica, sul mondo cattolico, sull\u2019odio che regna sui social (avete firmato la petizione contro la deputata che mi ha accusato dell\u2019omicidio di Roma?). E naturalmente sulla scuola estiva per i ragazzi. Mi dite che ne pensate?", "shared_text": "AVVENIRE.IT\nIntervista. Renzi: \u00abPagheremo per anni la cura Salvini\u00bb. Con il M5s intesa impossibile", "time": "2019-07-28 09:08:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.45.620.324a/s480x480/67259707_23843634888240181_5695734338008645632_n.png.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=jshnwgNf4-gAQmwQSZ3D9VK9cBQqnTj9EiKRuMKWR9LrlK4I-4Y5r7O7Q&_nc_ht=scontent-cdt1-1.xx&oh=b5db7c6b80841b5211eeecd2060a0b8f&oe=5E4AC872", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156888736809915&id=113335124914", "link": "https://www.avvenire.it/attualita/pagine/intervista-matteo-renzi?fbclid=IwAR03k1-LUBiArnixL3pQQqwnhqGKvCd0P4O1cpYVX3EHH9B7-3AJuVaZbiQ"} +{"post_id": "10156887689764915", "text": "Qualche mese fa un\u2019insegnante si rivolse a uomini in divisa urlando \u201cDovete morire\u201d. Ero in tv e risposi come vedete nel video. Oggi una prof ha commentato la morte del carabiniere dicendo \u201cUno in meno\u201d. Io non\u2026 Altro ho cambiato idea: i prof che insultano le forze dell\u2019ordine per me non sono degni di educare nelle scuole italiane. #ElianaFrontini", "post_text": "Qualche mese fa un\u2019insegnante si rivolse a uomini in divisa urlando \u201cDovete morire\u201d. Ero in tv e risposi come vedete nel video. Oggi una prof ha commentato la morte del carabiniere dicendo \u201cUno in meno\u201d. Io non\u2026 Altro ho cambiato idea: i prof che insultano le forze dell\u2019ordine per me non sono degni di educare nelle scuole italiane. #ElianaFrontini", "shared_text": "", "time": "2019-07-27 21:50:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156887689764915&id=113335124914", "link": null} +{"post_id": "10156887351224915", "text": "Oggi il Ministero delle Infrastrutture, in teoria guidato da Toninelli, ha ufficializzato all\u2019Unione Europea che l\u2019Italia \u00e8 favorevole alla TAV. Toninelli si \u00e8 rifiutato di firmare la lettera e ha lasciato farlo ai suoi dirigenti. Bene. Ma allora che cosa aspetta Toninelli a firmare la lettera di dimissioni? O firmi la Tav o firmi le dimissioni, non ci sono altre strade. Toninelli lo capir\u00e0?", "post_text": "Oggi il Ministero delle Infrastrutture, in teoria guidato da Toninelli, ha ufficializzato all\u2019Unione Europea che l\u2019Italia \u00e8 favorevole alla TAV. Toninelli si \u00e8 rifiutato di firmare la lettera e ha lasciato farlo ai suoi dirigenti. Bene. Ma allora che cosa aspetta Toninelli a firmare la lettera di dimissioni? O firmi la Tav o firmi le dimissioni, non ci sono altre strade. Toninelli lo capir\u00e0?", "shared_text": "", "time": "2019-07-27 19:14:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156887351224915&id=113335124914", "link": null} +{"post_id": "10156886889204915", "text": "Ieri una parlamentare della destra mi ha accusato di essere responsabile politico e morale dell\u2019omicidio del Carabiniere Mario Cerciello Rega. Il clima di Odio che stanno creando \u00e8 infame. L\u2019Italia si deve\u2026 Altro stringere intorno all\u2019Arma e a quella famiglia. Le persone perbene devono chiedere le dimissioni degli sciacalli. Per firmare fate girare questo link\nCOMITATIAZIONECIVILE.IT\nBasta Odio: dimissioni per l'On. Baldini", "post_text": "Ieri una parlamentare della destra mi ha accusato di essere responsabile politico e morale dell\u2019omicidio del Carabiniere Mario Cerciello Rega. Il clima di Odio che stanno creando \u00e8 infame. L\u2019Italia si deve\u2026 Altro stringere intorno all\u2019Arma e a quella famiglia. Le persone perbene devono chiedere le dimissioni degli sciacalli. Per firmare fate girare questo link", "shared_text": "COMITATIAZIONECIVILE.IT\nBasta Odio: dimissioni per l'On. Baldini", "time": "2019-07-27 15:20:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.1.1200.628a/s480x480/67174392_23843633335600181_6034013422599798784_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=RQTNaouzxFAAQkk3Ni5gyMWAV97bPi2IGBncjyJqPX6Wy6Q-dESIf7L3g&_nc_ht=scontent-cdt1-1.xx&oh=8cb999763fa9ade16fc952ce02670d97&oe=5E4A2945", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156886889204915&id=113335124914", "link": "https://www.comitatiazionecivile.it/petizione_baldini?fbclid=IwAR1tINWiq3j-glrLKfAgH-E6brR6T_QKqfxbQabxYh1u0YiwOMpu-HVc1-8"} +{"post_id": "10156886629809915", "text": "Onore a tutti i giocatori italiani del Settebello, di nuovo campioni del mondo di Pallanuoto. Ma una vera e propria standing ovation la merita il coach Sandro Campagna: in questo trionfo c\u2019\u00e8 molto della sua mano. Tutti in piedi, viva l\u2019Italia", "post_text": "Onore a tutti i giocatori italiani del Settebello, di nuovo campioni del mondo di Pallanuoto. Ma una vera e propria standing ovation la merita il coach Sandro Campagna: in questo trionfo c\u2019\u00e8 molto della sua mano. Tutti in piedi, viva l\u2019Italia", "shared_text": "", "time": "2019-07-27 12:50:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156886629809915&id=113335124914", "link": null} +{"post_id": "10156885600584915", "text": "Stanotte \u00e8 molto difficile prendere sonno. Al largo della Sicilia sono morte pi\u00f9 di cento persone, morte annegate, morte nel modo pi\u00f9 atroce. E un giovane carabiniere, Mario Cerciello Rega, 35 anni, appena sposato, \u00e8 stato ucciso a coltellate da un turista americano durante un controllo.\nProprio ieri il Parlamento ha licenziato il secondo decreto\u2026 Altro sicurezza di Salvini, pieno di demagogia ma inefficace, lo abbiamo visto. La sicurezza non si ottiene con le dirette Facebook, purtroppo. E il clima d\u2019odio non serve a nessuno. Pensate che una parlamentare della destra da stamani mi insulta dicendo che io sono il responsabile politico e morale dell\u2019omicidio. Era convinta che fossero stati due\u2026 Altro", "post_text": "Stanotte \u00e8 molto difficile prendere sonno. Al largo della Sicilia sono morte pi\u00f9 di cento persone, morte annegate, morte nel modo pi\u00f9 atroce. E un giovane carabiniere, Mario Cerciello Rega, 35 anni, appena sposato, \u00e8 stato ucciso a coltellate da un turista americano durante un controllo.\nProprio ieri il Parlamento ha licenziato il secondo decreto\u2026 Altro sicurezza di Salvini, pieno di demagogia ma inefficace, lo abbiamo visto. La sicurezza non si ottiene con le dirette Facebook, purtroppo. E il clima d\u2019odio non serve a nessuno. Pensate che una parlamentare della destra da stamani mi insulta dicendo che io sono il responsabile politico e morale dell\u2019omicidio. Era convinta che fossero stati due\u2026 Altro", "shared_text": "", "time": "2019-07-26 23:35:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156885600584915&id=113335124914", "link": null} +{"post_id": "10156884279994915", "text": "Il noto statista Luigi Di Maio mi attacca anche stamattina. \u00c8 davvero strano che i grillini si affannino a dire: \u201cRenzi \u00e8 finito\u201d e poi per\u00f2 tutti i giorni si (pre)occupino di me. Stavolta l\u2019argomento \u00e8 la TAV.\nDi Maio dice: Renzi era un NoTav.\nIo dico: sar\u00e0 il caldo, poverino.\nPer\u00f2 proviamo a spiegare le cose per benino, con ordine, al buon Di\u2026 Altro Maio: magari stavolta capisce, chiss\u00e0.\nHo sempre sostenuto la Tav, da Torino a Palermo, passando persino per il ponte sullo stretto. Ho sempre difeso le forze dell\u2019ordine dai violenti del NoTav, a cominciare da chi veniva condannato per aver invaso il cantiere o preso a sassate I poliziotti.\nHo criticato, in alcuni casi, i percorsi.\nQuesto \u00e8\u2026 Altro", "post_text": "Il noto statista Luigi Di Maio mi attacca anche stamattina. \u00c8 davvero strano che i grillini si affannino a dire: \u201cRenzi \u00e8 finito\u201d e poi per\u00f2 tutti i giorni si (pre)occupino di me. Stavolta l\u2019argomento \u00e8 la TAV.\nDi Maio dice: Renzi era un NoTav.\nIo dico: sar\u00e0 il caldo, poverino.\nPer\u00f2 proviamo a spiegare le cose per benino, con ordine, al buon Di\u2026 Altro Maio: magari stavolta capisce, chiss\u00e0.\nHo sempre sostenuto la Tav, da Torino a Palermo, passando persino per il ponte sullo stretto. Ho sempre difeso le forze dell\u2019ordine dai violenti del NoTav, a cominciare da chi veniva condannato per aver invaso il cantiere o preso a sassate I poliziotti.\nHo criticato, in alcuni casi, i percorsi.\nQuesto \u00e8\u2026 Altro", "shared_text": "", "time": "2019-07-26 11:35:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156884279994915&id=113335124914", "link": null} +{"post_id": "10156884153289915", "text": "Terribile la notizia di Roma con l\u2019omicidio del carabiniere ad opera di un killer sorpreso a rubare. Chi ha responsabilit\u00e0 istituzionali, adesso, assicuri alle patrie galere il killer. Condoglianze alla famiglia e all\u2019Arma: \u00e8 assurdo e devastante morire cos\u00ec.", "post_text": "Terribile la notizia di Roma con l\u2019omicidio del carabiniere ad opera di un killer sorpreso a rubare. Chi ha responsabilit\u00e0 istituzionali, adesso, assicuri alle patrie galere il killer. Condoglianze alla famiglia e all\u2019Arma: \u00e8 assurdo e devastante morire cos\u00ec.", "shared_text": "", "time": "2019-07-26 09:49:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156884153289915&id=113335124914", "link": null} +{"post_id": "10156884136854915", "text": "Bello il clima ieri a Castrocaro dove la brava sindaca Marianna Tonellato sta rilanciando la sua comunit\u00e0 e il Festival. Tanta gente, molte idee, voglia di partecipare. Ci siamo, ci siamo", "post_text": "Bello il clima ieri a Castrocaro dove la brava sindaca Marianna Tonellato sta rilanciando la sua comunit\u00e0 e il Festival. Tanta gente, molte idee, voglia di partecipare. Ci siamo, ci siamo", "shared_text": "", "time": "2019-07-26 09:35:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/67404360_10156884136454915_7568851493705482240_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=L_I0Zpje7z4AQntSYENd6YFvJgy37uFn78t8cselHNjEfE5XBCM7OQcfQ&_nc_ht=scontent-cdt1-1.xx&oh=8893622863707c9dbe04e686d98b6e9a&oe=5E4CCA13", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156884136854915&id=113335124914", "link": null} +{"post_id": "10156882738969915", "text": "Un anno dopo ricordo Sergio Marchionne come un grande italiano. E lo ricordo con le sue parole su una nuova stagione di doveri, non solo di diritti. Questo concetto oggi \u00e8 pi\u00f9 vero che mai.", "post_text": "Un anno dopo ricordo Sergio Marchionne come un grande italiano. E lo ricordo con le sue parole su una nuova stagione di doveri, non solo di diritti. Questo concetto oggi \u00e8 pi\u00f9 vero che mai.", "shared_text": "", "time": "2019-07-25 18:45:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=460924411154045&id=113335124914", "link": null} +{"post_id": "10156882562574915", "text": "Il piccolo #JosephTidd, di un anno, e la giocatrice dell\u2019Orlando Pride, #CarsonPickett, 25 anni, hanno molto in comune: entrambi amano il #calcio, sono sportivi, ed entrambi hanno parzialmente perso il braccio\u2026 Altro sinistro.\nLa mamma di Joseph ha raccontato di come il piccolo, dopo quella partita durante il viaggio in auto di ritorno a casa, non ha fatto altro che ridere e agitare il suo braccio sinistro, felice di aver trovato una nuova amica, simile a lui.\nQuesta per me \u00e8 l\u2019immagine pi\u00f9 bella dei giornali di oggi. Quando lo sport \u00e8 pura, autentica, smisurata bellezza. C\u2019\u00e8 qualcosa di pi\u00f9 grande di questi sorrisi?", "post_text": "Il piccolo #JosephTidd, di un anno, e la giocatrice dell\u2019Orlando Pride, #CarsonPickett, 25 anni, hanno molto in comune: entrambi amano il #calcio, sono sportivi, ed entrambi hanno parzialmente perso il braccio\u2026 Altro sinistro.\nLa mamma di Joseph ha raccontato di come il piccolo, dopo quella partita durante il viaggio in auto di ritorno a casa, non ha fatto altro che ridere e agitare il suo braccio sinistro, felice di aver trovato una nuova amica, simile a lui.\nQuesta per me \u00e8 l\u2019immagine pi\u00f9 bella dei giornali di oggi. Quando lo sport \u00e8 pura, autentica, smisurata bellezza. C\u2019\u00e8 qualcosa di pi\u00f9 grande di questi sorrisi?", "shared_text": "", "time": "2019-07-25 17:04:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67089076_10156882562539915_8829661704909488128_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=PEtNHBfQ6KMAQlc93rBfcijBDaED1P61vHmzU1KpFyo-af7qNDs9Dr4DQ&_nc_ht=scontent-cdt1-1.xx&oh=be08a02b94e1ea15cd01427102600e40&oe=5E8B78F6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156882562574915&id=113335124914", "link": null} +{"post_id": "10156880951564915", "text": "Oggi \u00e8 morto Rutger Hauer, l\u2019attore di molti film di successo, tra cui Blade Runner. La scena che vedete qui \u00e8 una delle scene pi\u00f9 belle del cinema mondiale, per me. Perch\u00e9 \u00e8 la scena in cui il senso della vita\u2026 Altro (e della morte) esplode in modo straordinario. Il primo a farmi apprezzare Blade Runner \u00e8 stato al liceo il mio prof di religione, don Paolo Bargigia, a cui ho voluto molto bene e che \u00e8 stato per me un maestro vero. Don Paolo ci faceva vedere film con Blade Runner e ci spingeva a farci domande sui grandi temi del cuore dell\u2019uomo. Oggi che Rutger Hauer ci ha lasciato - proprio nel 2019, anno in cui Blade Runner era ambientato -, mi viene un brivido rivedendo questa scena. La ripropongo augurandovi una buona notte. Ma augurandovi e augurandomi anche di vivere sempre come persone capaci di farsi domande profonde, autentiche, piene di senso. A domani", "post_text": "Oggi \u00e8 morto Rutger Hauer, l\u2019attore di molti film di successo, tra cui Blade Runner. La scena che vedete qui \u00e8 una delle scene pi\u00f9 belle del cinema mondiale, per me. Perch\u00e9 \u00e8 la scena in cui il senso della vita\u2026 Altro (e della morte) esplode in modo straordinario. Il primo a farmi apprezzare Blade Runner \u00e8 stato al liceo il mio prof di religione, don Paolo Bargigia, a cui ho voluto molto bene e che \u00e8 stato per me un maestro vero. Don Paolo ci faceva vedere film con Blade Runner e ci spingeva a farci domande sui grandi temi del cuore dell\u2019uomo. Oggi che Rutger Hauer ci ha lasciato - proprio nel 2019, anno in cui Blade Runner era ambientato -, mi viene un brivido rivedendo questa scena. La ripropongo augurandovi una buona notte. Ma augurandovi e augurandomi anche di vivere sempre come persone capaci di farsi domande profonde, autentiche, piene di senso. A domani", "shared_text": "", "time": "2019-07-24 23:08:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156880951564915&id=113335124914", "link": null} +{"post_id": "10156880687464915", "text": "Per chi non ha tempo di guardare i venti minuti del video faccio un riassunto. Io credo al Ministro dell\u2019Interno. Forse vi stupirete di questa frase, ma in realt\u00e0 tutti noi abbiamo il dovere di credere al\u2026 Altro Ministro dell\u2019Interno, tutti! Almeno fino a prova contraria. E Salvini ha detto che \u00e8 pronto a denunciare tutti coloro che legano il nome della Lega ai soldi russi. Bene, Ministro, allora hai una unica chance. Se davvero sei pulito, come dici; se davvero sei onesto, come dici; se davvero non hai paura devi denunciare chi ha legato il nome della Lega ai soldi russi. E l\u2019unico signore che devi denunciare \u00e8 Gianluca Savoini. S\u00ec, proprio lui, il tuo amico, il tuo braccio destro, quello che ti sei portato in Russia, l\u2019uomo della Lega. Perch\u00e9 l\u2019unico a legare il nome della Lega ai rubli, chiedendo ai russi una tangente, \u00e8 stato proprio Savoini. Allora, caro Ministro: denunci Savoini o hai paura che venga fuori altro?", "post_text": "Per chi non ha tempo di guardare i venti minuti del video faccio un riassunto. Io credo al Ministro dell\u2019Interno. Forse vi stupirete di questa frase, ma in realt\u00e0 tutti noi abbiamo il dovere di credere al\u2026 Altro Ministro dell\u2019Interno, tutti! Almeno fino a prova contraria. E Salvini ha detto che \u00e8 pronto a denunciare tutti coloro che legano il nome della Lega ai soldi russi. Bene, Ministro, allora hai una unica chance. Se davvero sei pulito, come dici; se davvero sei onesto, come dici; se davvero non hai paura devi denunciare chi ha legato il nome della Lega ai soldi russi. E l\u2019unico signore che devi denunciare \u00e8 Gianluca Savoini. S\u00ec, proprio lui, il tuo amico, il tuo braccio destro, quello che ti sei portato in Russia, l\u2019uomo della Lega. Perch\u00e9 l\u2019unico a legare il nome della Lega ai rubli, chiedendo ai russi una tangente, \u00e8 stato proprio Savoini. Allora, caro Ministro: denunci Savoini o hai paura che venga fuori altro?", "shared_text": "", "time": "2019-07-24 21:08:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/66486096_10156880680739915_1331209432469602304_n.png.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=8CPBoHT70HMAQlzDNVhHk_Ar2q6WFWSkTmdadolxWyAnbbR-EGnYYEluQ&_nc_ht=scontent-cdt1-1.xx&oh=9fc1a8c5294992c5cb625c67aad02f45&oe=5E44F2FC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156880687464915&id=113335124914", "link": null} +{"post_id": "10156880613724915", "text": "Ho come l\u2019impressione che i due di Beautiful stiano venendo a noia. Quando lasciate Facebook e accettate un confronto televisivo all\u2019americana? Non potete continuare a fuggire, coraggio", "post_text": "Ho come l\u2019impressione che i due di Beautiful stiano venendo a noia. Quando lasciate Facebook e accettate un confronto televisivo all\u2019americana? Non potete continuare a fuggire, coraggio", "shared_text": "", "time": "2019-07-24 20:27:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67386932_10156880613684915_7691503750950682624_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=fDlzdER87mQAQme7Us7Mf3eqZ-XPO3PsXwyGAUnXnoBmDlH8-rZezbt_w&_nc_ht=scontent-cdt1-1.xx&oh=8ec2bceb529d593e1dfd3eab6210f74a&oe=5E4CCF06", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156880613724915&id=113335124914", "link": null} +{"post_id": "448897449296246", "text": "In diretta dal Senato", "post_text": "In diretta dal Senato", "shared_text": "", "time": "2019-07-24 19:02:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=448897449296246&id=113335124914", "link": null} +{"post_id": "10156880410119915", "text": "Come annunciato stamattina, alle 19 andiamo in diretta Facebook dal Senato. Casualmente alla stessa ora parleranno anche i due piccioncini Salvini e Di Maio. Se siete interessati alla trama di Beautiful, seguite loro. Se vi va di parlare di politica, vi aspetto qui alle 19 \ud83d\ude01", "post_text": "Come annunciato stamattina, alle 19 andiamo in diretta Facebook dal Senato. Casualmente alla stessa ora parleranno anche i due piccioncini Salvini e Di Maio. Se siete interessati alla trama di Beautiful, seguite loro. Se vi va di parlare di politica, vi aspetto qui alle 19 \ud83d\ude01", "shared_text": "", "time": "2019-07-24 18:50:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156880410119915&id=113335124914", "link": null} +{"post_id": "10156878247824915", "text": "Ci hanno messo un mese per capire che non bisognava uscire dall\u2019Euro. Tre mesi per capire che gli 80\u20ac andavano tenuti. Sei mesi per capire che la fatturazione elettronica serviva. Ora dopo appena un anno dicono di s\u00ec alla Tav. Non sono cattivi: \u00e8 che ci arrivano dopo. Basta avere pazienza, il tempo \u00e8 galantuomo", "post_text": "Ci hanno messo un mese per capire che non bisognava uscire dall\u2019Euro. Tre mesi per capire che gli 80\u20ac andavano tenuti. Sei mesi per capire che la fatturazione elettronica serviva. Ora dopo appena un anno dicono di s\u00ec alla Tav. Non sono cattivi: \u00e8 che ci arrivano dopo. Basta avere pazienza, il tempo \u00e8 galantuomo", "shared_text": "", "time": "2019-07-23 20:14:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156878247824915&id=113335124914", "link": null} +{"post_id": "10156877881049915", "text": "Chi ha fatto parte degli scout cattolici conosce la storia delle Aquile Randagie, un gruppo di ragazzi milanesi che sfidarono il fascismo facendo attivit\u00e0 scout nella bellissima e impervia Val Codera. Quella\u2026 Altro stessa Valle divenne poi il transito per aiutare gli ebrei a raggiungere la Svizzera durante la Guerra. E la storia di Andrea Ghetti, detto Baden, e dei suoi amici fa venire ancora i brividi a molti di noi. Ho avuto la fortuna di conoscere e ascoltare Vittorio Ghetti, il fratello di Baden. E di salire con i miei compagni di clan in Val Codera due volte. Aver incontrato la storia delle Aquile Randagie \u00e8 stato un dono, per me. Oggi i giornali annunciano l\u2019uscita del film dedicato a quei ragazzi antifascisti, liberi e forti. Spero che sia all\u2019altezza delle aspettative e spero che aiuti tanti ragazzi di oggi a conoscere la storia della Val Codera. E di alcuni giovani coraggiosi di cui tutti gli scout italiani vanno fieri.", "post_text": "Chi ha fatto parte degli scout cattolici conosce la storia delle Aquile Randagie, un gruppo di ragazzi milanesi che sfidarono il fascismo facendo attivit\u00e0 scout nella bellissima e impervia Val Codera. Quella\u2026 Altro stessa Valle divenne poi il transito per aiutare gli ebrei a raggiungere la Svizzera durante la Guerra. E la storia di Andrea Ghetti, detto Baden, e dei suoi amici fa venire ancora i brividi a molti di noi. Ho avuto la fortuna di conoscere e ascoltare Vittorio Ghetti, il fratello di Baden. E di salire con i miei compagni di clan in Val Codera due volte. Aver incontrato la storia delle Aquile Randagie \u00e8 stato un dono, per me. Oggi i giornali annunciano l\u2019uscita del film dedicato a quei ragazzi antifascisti, liberi e forti. Spero che sia all\u2019altezza delle aspettative e spero che aiuti tanti ragazzi di oggi a conoscere la storia della Val Codera. E di alcuni giovani coraggiosi di cui tutti gli scout italiani vanno fieri.", "shared_text": "", "time": "2019-07-23 16:59:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67080416_10156877879964915_5740770660699865088_o.png.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=DYp01d1YVkMAQmeaxbYe8Cn8TTEzIYVbWsV5ATEpjpwtP4ELiCKK9-Gow&_nc_ht=scontent-cdt1-1.xx&oh=2fc3a52de1ed5217ea7131ac7c2528ac&oe=5E844F16", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156877881049915&id=113335124914", "link": null} +{"post_id": "10156877613579915", "text": "C\u2019erano sei membri della commissione sulla Tav. Cinque contrari, uno favorevole. Toninelli che fa? Caccia senza ragione l\u2019unico favorevole, Pierluigi Coppola. Incredibile. Ho firmato l\u2019interrogazione parlamentare del collega Margiotta per chiedere spiegazioni. Intanto una domanda: quando il Governo dir\u00e0 s\u00ec alla Tav, Toninelli si caccer\u00e0 da solo o servir\u00e0 un rimpasto per togliergli la poltrona?", "post_text": "C\u2019erano sei membri della commissione sulla Tav. Cinque contrari, uno favorevole. Toninelli che fa? Caccia senza ragione l\u2019unico favorevole, Pierluigi Coppola. Incredibile. Ho firmato l\u2019interrogazione parlamentare del collega Margiotta per chiedere spiegazioni. Intanto una domanda: quando il Governo dir\u00e0 s\u00ec alla Tav, Toninelli si caccer\u00e0 da solo o servir\u00e0 un rimpasto per togliergli la poltrona?", "shared_text": "", "time": "2019-07-23 15:01:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156877613579915&id=113335124914", "link": null} +{"post_id": "10156877254654915", "text": "Vi ripropongo la chiacchierata di stamani con Gaia Tortora a Omnibus su La7. Buona giornata", "post_text": "Vi ripropongo la chiacchierata di stamani con Gaia Tortora a Omnibus su La7. Buona giornata", "shared_text": "", "time": "2019-07-23 11:15:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2156127687825429&id=113335124914", "link": null} +{"post_id": "10156875245419915", "text": "Tutte le volte che faccio una intervista contro Salvini e Di Maio parte qualcuno dal PD che mi attacca.\nCi sono abituato, non \u00e8 pi\u00f9 un problema.\nE mentre io ieri sera difendevo la comunit\u00e0 di donne e uomini del PD dalle schifose strumentalizzazioni di Di Maio sulla vicenda dei poveri bambini di Bibbiano, altri aprivano ai grillini.\nPenso che il PD\u2026 Altro dovrebbe occuparsi di fare opposizione al Governo, non a me. Ma questa \u00e8 un\u2019altra storia.\nCi vuole chiarezza, una volta per tutte. E allora prendo sul serio le parole di oggi di Dario Franceschini, in una intervista in cui per met\u00e0 attribuisce a me la colpa di tutto ci\u00f2 che \u00e8 successo in questi mesi e per met\u00e0 fa l\u2019elogio del Movimento Cinque\u2026 Altro", "post_text": "Tutte le volte che faccio una intervista contro Salvini e Di Maio parte qualcuno dal PD che mi attacca.\nCi sono abituato, non \u00e8 pi\u00f9 un problema.\nE mentre io ieri sera difendevo la comunit\u00e0 di donne e uomini del PD dalle schifose strumentalizzazioni di Di Maio sulla vicenda dei poveri bambini di Bibbiano, altri aprivano ai grillini.\nPenso che il PD\u2026 Altro dovrebbe occuparsi di fare opposizione al Governo, non a me. Ma questa \u00e8 un\u2019altra storia.\nCi vuole chiarezza, una volta per tutte. E allora prendo sul serio le parole di oggi di Dario Franceschini, in una intervista in cui per met\u00e0 attribuisce a me la colpa di tutto ci\u00f2 che \u00e8 successo in questi mesi e per met\u00e0 fa l\u2019elogio del Movimento Cinque\u2026 Altro", "shared_text": "", "time": "2019-07-22 15:10:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156875245419915&id=113335124914", "link": null} +{"post_id": "10156873534324915", "text": "Sono in volo verso l\u2019Italia e leggo le polemiche su Bibbiano. Per me chi compie violenza sui bambini va punito senza piet\u00e0: la violenza contro i piccoli \u00e8 l\u2019atto pi\u00f9 odioso che possa esistere.\nNon \u00e8 un errore, \u00e8 un orrore. Dunque: i responsabili paghino. E la magistratura individui i colpevoli, senza che sia il nuovo tribunale del popolo, i social\u2026 Altro media, a decidere chi \u00e8 responsabile e chi no: vogliamo giustizia, giustizia, giustizia. E chi ha sbagliato, chiunque sia, deve pagare senza sconti.\nIn queste ore Cinque Stelle e Lega attaccano a testa bassa contro di noi attribuendoci le colpe di ci\u00f2 che \u00e8 avvenuto a Bibbiano. Incredibile!\nNon potendo parlare del governo cercano un diversivo per\u2026 Altro", "post_text": "Sono in volo verso l\u2019Italia e leggo le polemiche su Bibbiano. Per me chi compie violenza sui bambini va punito senza piet\u00e0: la violenza contro i piccoli \u00e8 l\u2019atto pi\u00f9 odioso che possa esistere.\nNon \u00e8 un errore, \u00e8 un orrore. Dunque: i responsabili paghino. E la magistratura individui i colpevoli, senza che sia il nuovo tribunale del popolo, i social\u2026 Altro media, a decidere chi \u00e8 responsabile e chi no: vogliamo giustizia, giustizia, giustizia. E chi ha sbagliato, chiunque sia, deve pagare senza sconti.\nIn queste ore Cinque Stelle e Lega attaccano a testa bassa contro di noi attribuendoci le colpe di ci\u00f2 che \u00e8 avvenuto a Bibbiano. Incredibile!\nNon potendo parlare del governo cercano un diversivo per\u2026 Altro", "shared_text": "", "time": "2019-07-21 21:00:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156873534324915&id=113335124914", "link": null} +{"post_id": "10156873359669915", "text": "Contro la violenza dei NoTav e dalla parte delle forze dell\u2019ordine, sempre. Senza se e senza ma.", "post_text": "Contro la violenza dei NoTav e dalla parte delle forze dell\u2019ordine, sempre. Senza se e senza ma.", "shared_text": "", "time": "2019-07-21 19:35:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156873359669915&id=113335124914", "link": null} +{"post_id": "10156873105329915", "text": "Tre giorni belli pieni in Montana, al Parco di Yellowstone, a discutere di futuro. Non ho trovato Yoghi e Bubu, eroi della mia infanzia, ma tante idee per il futuro. Buona Domenica #Ritorno", "post_text": "Tre giorni belli pieni in Montana, al Parco di Yellowstone, a discutere di futuro. Non ho trovato Yoghi e Bubu, eroi della mia infanzia, ma tante idee per il futuro. Buona Domenica #Ritorno", "shared_text": "", "time": "2019-07-21 17:36:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67393188_10156873105289915_5473476244366426112_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=eTAadLCDdNMAQk9AMDp55sX0rW-Y1J4KBCJ19lERoGJctjoj35KUP9SPQ&_nc_ht=scontent-cdt1-1.xx&oh=6e6cba89ceac1333aca32d5d9636eda5&oe=5E41B303", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156873105329915&id=113335124914", "link": null} +{"post_id": "10156872517559915", "text": "Qui trovate l\u2019intervista al Corriere di oggi con Maria Teresa Meli. La crisi di governo, i rubli, i Benetton, la sfiducia, la scuola estiva, il modo di fare opposizione. E quel magone che ti prende quando sei\u2026 Altro all\u2019estero e vedi che l\u2019Italia \u00e8 considerata un Paese magnifico ma viene scartata dagli investitori per l\u2019instabilit\u00e0 politica.\nBuona domenica dal parco di Yellowstone\nROMA.CORRIERE.IT\nRenzi: \u00abNon mi occupo del Pd, un errore non sfiduciare Salvini\u00bb", "post_text": "Qui trovate l\u2019intervista al Corriere di oggi con Maria Teresa Meli. La crisi di governo, i rubli, i Benetton, la sfiducia, la scuola estiva, il modo di fare opposizione. E quel magone che ti prende quando sei\u2026 Altro all\u2019estero e vedi che l\u2019Italia \u00e8 considerata un Paese magnifico ma viene scartata dagli investitori per l\u2019instabilit\u00e0 politica.\nBuona domenica dal parco di Yellowstone", "shared_text": "ROMA.CORRIERE.IT\nRenzi: \u00abNon mi occupo del Pd, un errore non sfiduciare Salvini\u00bb", "time": "2019-07-21 11:54:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.74.657.344a/s480x480/67401702_23843616610660181_7879550617604063232_n.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=CW53Y8DoxhAAQmFL1Fd--34X3mKZtXv0G5pIdwwB823PlJVIWJYeTWIew&_nc_ht=scontent-cdt1-1.xx&oh=c57078f6117f2c90cf7ca29f6af7950c&oe=5E46EFC1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156872517559915&id=113335124914", "link": "https://roma.corriere.it/notizie/cronaca/19_luglio_20/renzi-non-mi-occupo-pd-errore-non-cercare-sfiduciare-salvini-4ae5cb04-ab28-11e9-bf93-c0bc2a3f4cac.shtml?refresh_ce-cp&fbclid=IwAR1bNqXyvGEFO40tbTScE3nwAQa6K6xyFZmGSFXkZZVdYpiiNm_ZRQTXQOI"} +{"post_id": "10156870672254915", "text": "Vi ricordate la fake news sulla mia vacanza in Lamborghini a Ibiza? Questa foto fu fatta quando eravamo a festeggiare 600 nuove assunzioni. Oggi i giornali riportano che Lamborghini ha firmato il nuovo\u2026 Altro contratto con pi\u00f9 diritti per i lavoratori. Bravi tutti, questa \u00e8 l\u2019Italia che funziona.\nPi\u00f9 lavoro, pi\u00f9 qualit\u00e0: si pu\u00f2 fare.\nAltro che reddito di cittadinanza", "post_text": "Vi ricordate la fake news sulla mia vacanza in Lamborghini a Ibiza? Questa foto fu fatta quando eravamo a festeggiare 600 nuove assunzioni. Oggi i giornali riportano che Lamborghini ha firmato il nuovo\u2026 Altro contratto con pi\u00f9 diritti per i lavoratori. Bravi tutti, questa \u00e8 l\u2019Italia che funziona.\nPi\u00f9 lavoro, pi\u00f9 qualit\u00e0: si pu\u00f2 fare.\nAltro che reddito di cittadinanza", "shared_text": "", "time": "2019-07-20 18:30:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/67582171_10156870672189915_3032900471854465024_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=pqrbDP22hbgAQmdloQ0-NfFW1qCPStC02K1yZYuvoW4hmHqkgHgOaxEpA&_nc_ht=scontent-cdt1-1.xx&oh=3ab37f27eafa41783809ab45e0ef2d0f&oe=5E4FC66A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156870672254915&id=113335124914", "link": null} +{"post_id": "10156870428194915", "text": "La Gronda \u00e8 un\u2019opera fondamentale per Genova. I Cinque Stelle dicono di no da sempre. Beppe Grillo voleva \u201cmandare l\u2019esercito\u201d per impedirne la realizzazione. Oggi Toninelli blocca la Gronda. Ma finch\u00e9 qualcuno non blocca Toninelli, l\u2019Italia rester\u00e0 ferma. Servono le infrastrutture, non i NO", "post_text": "La Gronda \u00e8 un\u2019opera fondamentale per Genova. I Cinque Stelle dicono di no da sempre. Beppe Grillo voleva \u201cmandare l\u2019esercito\u201d per impedirne la realizzazione. Oggi Toninelli blocca la Gronda. Ma finch\u00e9 qualcuno non blocca Toninelli, l\u2019Italia rester\u00e0 ferma. Servono le infrastrutture, non i NO", "shared_text": "", "time": "2019-07-20 16:29:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/67209844_10156870428154915_7664986176188579840_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=WDrZxRk1TgkAQmO_VIr4yJxb9ELQTjRXq53mmr_GstrWDGgT-iG_-i5OQ&_nc_ht=scontent-cdt1-1.xx&oh=ddc99c7906087a128a3a20cde845d243&oe=5E7D8FAC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156870428194915&id=113335124914", "link": null} +{"post_id": "10156870020034915", "text": "Per dirvi come sono i fiorentini. Non faccio in tempo a scrivere una cosa col cuore sulla Luna, che mi arriva questa risposta esilarante. I fiorentini sono meravigliosi\n\"50 anni fa, il mondo osservava sorpreso l'impresa di alcuni uomini che hanno superato ogni limite e ci hanno regalato un momento indimenticabile nella storia. Un'impresa senza\u2026 Altro tempo che ci affascina tutt'oggi e che non scolorisce minimamente di fronte ad altre imprese pi\u00f9 moderne ma che conserva intatta la forza e l'eroismo di coloro che hanno lavorato affinch\u00e9 l'impossibile diventasse una realt\u00e0.\n50 anni fa.\nL'ultimo scudetto della Fiorentina\n#SaUnaSegaArmstrong\"", "post_text": "Per dirvi come sono i fiorentini. Non faccio in tempo a scrivere una cosa col cuore sulla Luna, che mi arriva questa risposta esilarante. I fiorentini sono meravigliosi\n\"50 anni fa, il mondo osservava sorpreso l'impresa di alcuni uomini che hanno superato ogni limite e ci hanno regalato un momento indimenticabile nella storia. Un'impresa senza\u2026 Altro tempo che ci affascina tutt'oggi e che non scolorisce minimamente di fronte ad altre imprese pi\u00f9 moderne ma che conserva intatta la forza e l'eroismo di coloro che hanno lavorato affinch\u00e9 l'impossibile diventasse una realt\u00e0.\n50 anni fa.\nL'ultimo scudetto della Fiorentina\n#SaUnaSegaArmstrong\"", "shared_text": "", "time": "2019-07-20 12:37:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156870020034915&id=113335124914", "link": null} +{"post_id": "10156869937599915", "text": "La conquista della Luna \u00e8 una pagina di storia, timore e bellezza. E la vittoria dell\u2019uomo contro i suoi limiti. \u00c8 il successo americano sognato da Kennedy all\u2019inizio degli anni 60, dopo aver subito una cocente sconfitta dai russi: ogni trionfo comincia con una caduta. \u00c8 l\u2019ansia del mondo intero incollato alla tv per seguire istante dopo istante lo\u2026 Altro sbarco, mentre alla Casa Bianca Nixon ha sul tavolo gi\u00e0 pronti il discorso per parlare alla nazione in caso di disastro e \u201ccelebrare gli eroi\u201d scomparsi.\nLa conquista della Luna, il \u201cpiccolo passo per l\u2019uomo, grande passo per l\u2019umanit\u00e0\u201d segna una svolta nella storia dell\u2019uomo. E forse \u00e8 persino normale che ci sia anche nel nostro Paese chi ancora\u2026 Altro", "post_text": "La conquista della Luna \u00e8 una pagina di storia, timore e bellezza. E la vittoria dell\u2019uomo contro i suoi limiti. \u00c8 il successo americano sognato da Kennedy all\u2019inizio degli anni 60, dopo aver subito una cocente sconfitta dai russi: ogni trionfo comincia con una caduta. \u00c8 l\u2019ansia del mondo intero incollato alla tv per seguire istante dopo istante lo\u2026 Altro sbarco, mentre alla Casa Bianca Nixon ha sul tavolo gi\u00e0 pronti il discorso per parlare alla nazione in caso di disastro e \u201ccelebrare gli eroi\u201d scomparsi.\nLa conquista della Luna, il \u201cpiccolo passo per l\u2019uomo, grande passo per l\u2019umanit\u00e0\u201d segna una svolta nella storia dell\u2019uomo. E forse \u00e8 persino normale che ci sia anche nel nostro Paese chi ancora\u2026 Altro", "shared_text": "", "time": "2019-07-20 11:41:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156869937599915&id=113335124914", "link": null} +{"post_id": "10156868392014915", "text": "Lo conferma Il Sole 24 Ore di oggi: i posti di lavoro ci sono. Ma bisogna avere le giuste competenze. Ai ragazzi va detto con forza: il vostro futuro non \u00e8 il reddito di cittadinanza, ma un lavoro da reinventare. Per cui studiare, studiare, studiare. Altroch\u00e9 sussidi e navigator!\nILSOLE24ORE.COM\nFarmaceutica, 3mila assunzioni con profili 4.0 - Il Sole 24 ORE", "post_text": "Lo conferma Il Sole 24 Ore di oggi: i posti di lavoro ci sono. Ma bisogna avere le giuste competenze. Ai ragazzi va detto con forza: il vostro futuro non \u00e8 il reddito di cittadinanza, ma un lavoro da reinventare. Per cui studiare, studiare, studiare. Altroch\u00e9 sussidi e navigator!", "shared_text": "ILSOLE24ORE.COM\nFarmaceutica, 3mila assunzioni con profili 4.0 - Il Sole 24 ORE", "time": "2019-07-19 19:08:55", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAPJwigLPqnK3gF&w=476&h=249&url=https%3A%2F%2Fi2.res.24o.it%2Fimages2010%2F2019%2F07%2FACaqKeZ%2Fimages%2Ffotohome22.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQA4oFd_dH7lli4F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156868392014915&id=113335124914", "link": "https://www.ilsole24ore.com/art/farmaceutica-3mila-assunzioni-profili-40-ACaqKeZ?fbclid=IwAR2SQbR_zhKvPz0IXGKA2JvZ2WwjIyduKj3lUSOaHNM2w7FPO07fkZ4to2Y"} +{"post_id": "10156868099249915", "text": "Questa immagine segna il trionfo delle fake news a proposito di Brexit. Il candidato Primo Ministro Boris Johnson attacca l\u2019Europa per una legge assurda. Ma sta sbagliando: quella legge l\u2019ha fatta il Regno\u2026 Altro Unito, non Bruxelles. La campagna di Brexit \u00e8 stata tutta una bugia fin dal primo giorno. Hanno vinto un referendum dicendo che Brexit sarebbe stata semplice e positiva per UK. Oggi Brexit \u00e8 un incredibile caos istituzionale. Con le fake news puoi vincere i referendum, ma poi vieni sconfitto dalla realt\u00e0. Gli inglesi lo stanno verificando a loro spese", "post_text": "Questa immagine segna il trionfo delle fake news a proposito di Brexit. Il candidato Primo Ministro Boris Johnson attacca l\u2019Europa per una legge assurda. Ma sta sbagliando: quella legge l\u2019ha fatta il Regno\u2026 Altro Unito, non Bruxelles. La campagna di Brexit \u00e8 stata tutta una bugia fin dal primo giorno. Hanno vinto un referendum dicendo che Brexit sarebbe stata semplice e positiva per UK. Oggi Brexit \u00e8 un incredibile caos istituzionale. Con le fake news puoi vincere i referendum, ma poi vieni sconfitto dalla realt\u00e0. Gli inglesi lo stanno verificando a loro spese", "shared_text": "", "time": "2019-07-19 16:27:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67593836_10156868091919915_244581319307165696_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=93i5dVETVscAQn-pg2Gadk2neb3lhfS37vHABaSDftb4wh1eeW5KHUuPA&_nc_ht=scontent-cdt1-1.xx&oh=4c0995a43ffbaac191ea547df048c96b&oe=5E4147F4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156868099249915&id=113335124914", "link": null} +{"post_id": "10156867992429915", "text": "Tutta da leggere l\u2019intervista di Sette al Ceo di Microsoft Nadella. E bellissimo il passaggio in cui spiega l\u2019importanza di imparare da chi vive una condizione di disabilit\u00e0, come suo figlio. La tecnologia non basta: occorre umanit\u00e0, occorre umanesimo.\nCORRIERE.IT\nNadella (Microsoft): \u00abMio figlio disabile mi ha insegnato l\u2019empatia\u00bb Il nuovo 7 \u00e8 in edicola", "post_text": "Tutta da leggere l\u2019intervista di Sette al Ceo di Microsoft Nadella. E bellissimo il passaggio in cui spiega l\u2019importanza di imparare da chi vive una condizione di disabilit\u00e0, come suo figlio. La tecnologia non basta: occorre umanit\u00e0, occorre umanesimo.", "shared_text": "CORRIERE.IT\nNadella (Microsoft): \u00abMio figlio disabile mi ha insegnato l\u2019empatia\u00bb Il nuovo 7 \u00e8 in edicola", "time": "2019-07-19 15:19:27", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAJzrzNIl4rMkHU&w=476&h=249&url=https%3A%2F%2Fimages2.corriereobjects.it%2Fmethode_image%2Fsocialshare%2F2019%2F07%2F19%2F949f3f9e-a8b9-11e9-ad04-d2eaa84e69e7.jpg&cfs=1&jq=75&sx=0&sy=0&sw=654&sh=342&ext=jpg&_nc_hash=AQCsdgG4rJ2Z1nl_", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156867992429915&id=113335124914", "link": "https://www.corriere.it/tecnologia/19_luglio_18/satya-nadella-ceo-microsoft-l-intelligenza-artificiale-non-deve-farci-paura-c44cb654-a8be-11e9-ad04-d2eaa84e69e7.shtml?fbclid=IwAR2AhfacXe_IArhadrVw0HJ6yBM0ESdLWrc-weyTX7BMcD51cXzqIxDotNE"} +{"post_id": "10156867531034915", "text": "\u201cE\u2019 normale che esista la paura, in ogni uomo, l\u2019importante \u00e8 che sia accompagnata dal coraggio\u201d\nIn Memoria di Paolo Borsellino. Di Agostino, Emanuela, Vincenzo, Walter Eddie, Claudio. Martiri di questo Paese", "post_text": "\u201cE\u2019 normale che esista la paura, in ogni uomo, l\u2019importante \u00e8 che sia accompagnata dal coraggio\u201d\nIn Memoria di Paolo Borsellino. Di Agostino, Emanuela, Vincenzo, Walter Eddie, Claudio. Martiri di questo Paese", "shared_text": "", "time": "2019-07-19 09:25:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67117807_10156867531009915_4138380038292635648_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=vkHoMjXmtK4AQmMLtEOPozRUlmedz5VRH31netuajuU4CsW0rGT49Ri3g&_nc_ht=scontent-cdt1-1.xx&oh=dbd067c08bc26eba79af32662cc969a9&oe=5E7F7DB3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156867531034915&id=113335124914", "link": null} +{"post_id": "10156865843789915", "text": "C\u2019\u00e8 una cosa da fare, subito: presentare una mozione di sfiducia a Salvini. Se i Cinque Stelle la votano, finisce l\u2019esperienza del peggior governo della storia repubblicana. Se i Cinque Stelle lo salvano di nuovo, la vicenda dei rubli sar\u00e0 per loro come la vicenda Ruby. E avranno perso ogni residua credibilit\u00e0. L\u2019opposizione deve fare l\u2019opposizione: che altro deve fare Salvini per meritarsi una mozione di sfiducia?", "post_text": "C\u2019\u00e8 una cosa da fare, subito: presentare una mozione di sfiducia a Salvini. Se i Cinque Stelle la votano, finisce l\u2019esperienza del peggior governo della storia repubblicana. Se i Cinque Stelle lo salvano di nuovo, la vicenda dei rubli sar\u00e0 per loro come la vicenda Ruby. E avranno perso ogni residua credibilit\u00e0. L\u2019opposizione deve fare l\u2019opposizione: che altro deve fare Salvini per meritarsi una mozione di sfiducia?", "shared_text": "", "time": "2019-07-18 17:12:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156865843789915&id=113335124914", "link": null} +{"post_id": "10156865359289915", "text": "La foto dal G7 finanziario \u00e8 imbarazzante. Tutti uomini. Non ci sono giustificazioni: servono le quote rosa. Le quote rosa non sono la soluzione migliore ma intanto sono una soluzione. Il mio Governo \u00e8 stato il\u2026 Altro primo - e per il momento purtroppo l\u2019ultimo - ad avere parit\u00e0 di genere nella composizione della squadra. Dobbiamo lavorare tutti insieme per promuovere la partecipazione femminile alla vita politica ed economica. Perch\u00e9 altrimenti non perdono solo le donne: perdiamo tutti", "post_text": "La foto dal G7 finanziario \u00e8 imbarazzante. Tutti uomini. Non ci sono giustificazioni: servono le quote rosa. Le quote rosa non sono la soluzione migliore ma intanto sono una soluzione. Il mio Governo \u00e8 stato il\u2026 Altro primo - e per il momento purtroppo l\u2019ultimo - ad avere parit\u00e0 di genere nella composizione della squadra. Dobbiamo lavorare tutti insieme per promuovere la partecipazione femminile alla vita politica ed economica. Perch\u00e9 altrimenti non perdono solo le donne: perdiamo tutti", "shared_text": "", "time": "2019-07-18 12:58:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67082125_10156865359234915_1483967752602386432_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=x17-ZhVGt9cAQnyI4f6ywcr5z6tdde9jGXeX34uU_VPjjMe7QSfBN-y1A&_nc_ht=scontent-cdt1-1.xx&oh=0fffac7f5e87b0e115d00ab9836d8e28&oe=5E50514D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156865359289915&id=113335124914", "link": null} +{"post_id": "10156865206424915", "text": "E anche stamattina tutti i giornali a parlare di crisi di governo.\nI due vice che si insultano tramite interviste parallele. Il premier inesistente che scrive lettere.\nMa mentre loro fanno questo, c\u2019\u00e8 qualcuno che segue i dossier? C\u2019\u00e8 qualcuno che lavora? Macch\u00e9, litigano dalla mattina alla sera!\nChe barba, che noia.\nSono in grado di governare? Governino. Hanno rotto? Si vada in Parlamento, si certifichi la crisi e si torni a votare. Ma basta con questa telenovela di terza categoria.\nL\u2019Italia non merita questa pagliacciata permanente.", "post_text": "E anche stamattina tutti i giornali a parlare di crisi di governo.\nI due vice che si insultano tramite interviste parallele. Il premier inesistente che scrive lettere.\nMa mentre loro fanno questo, c\u2019\u00e8 qualcuno che segue i dossier? C\u2019\u00e8 qualcuno che lavora? Macch\u00e9, litigano dalla mattina alla sera!\nChe barba, che noia.\nSono in grado di governare? Governino. Hanno rotto? Si vada in Parlamento, si certifichi la crisi e si torni a votare. Ma basta con questa telenovela di terza categoria.\nL\u2019Italia non merita questa pagliacciata permanente.", "shared_text": "", "time": "2019-07-18 11:07:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156865206424915&id=113335124914", "link": null} +{"post_id": "10156863545034915", "text": "I giornali oggi rilanciano l\u2019idea geniale di un accordo con i Cinque Stelle. Qualcuno dei nostri forse vorrebbe provarci davvero, chiss\u00e0.\nPoi pensi a Di Maio con i Gilet Gialli, a Di Battista contro Obama, a Sibilia e allo sbarco sulla Luna, alla Lezzi che fa crescere il PIL con il caldo, alla Taverna sui vaccini.\nPensi a quello che sta al Governo\u2026 Altro e crede alle scie chimiche e quella che sta in Parlamento e crede alle sirene. Pensi ai Benetton, alla Tav, al Tap. Pensi alle Olimpiadi buttate via e alla guerra che hanno fatto ad Expo.\nE se ancora non ti basta e provi a far finta di nulla, arriva Toninelli al Question Time e ti ricorda che lui fa il Ministro della Repubblica. E niente: a quel punto anche i pi\u00f9 favorevoli sono costretti a mollare. L\u2019idea di un\u2019alleanza con i 5 Stelle per me non \u00e8 un colpo di genio, ma un colpo di sole.", "post_text": "I giornali oggi rilanciano l\u2019idea geniale di un accordo con i Cinque Stelle. Qualcuno dei nostri forse vorrebbe provarci davvero, chiss\u00e0.\nPoi pensi a Di Maio con i Gilet Gialli, a Di Battista contro Obama, a Sibilia e allo sbarco sulla Luna, alla Lezzi che fa crescere il PIL con il caldo, alla Taverna sui vaccini.\nPensi a quello che sta al Governo\u2026 Altro e crede alle scie chimiche e quella che sta in Parlamento e crede alle sirene. Pensi ai Benetton, alla Tav, al Tap. Pensi alle Olimpiadi buttate via e alla guerra che hanno fatto ad Expo.\nE se ancora non ti basta e provi a far finta di nulla, arriva Toninelli al Question Time e ti ricorda che lui fa il Ministro della Repubblica. E niente: a quel punto anche i pi\u00f9 favorevoli sono costretti a mollare. L\u2019idea di un\u2019alleanza con i 5 Stelle per me non \u00e8 un colpo di genio, ma un colpo di sole.", "shared_text": "", "time": "2019-07-17 17:08:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156863545034915&id=113335124914", "link": null} +{"post_id": "10156862693709915", "text": "Un grande uomo di cultura che ha educato alla lettura donne e uomini di tutto il mondo. Un grande italiano. Rip #Camilleri", "post_text": "Un grande uomo di cultura che ha educato alla lettura donne e uomini di tutto il mondo. Un grande italiano. Rip #Camilleri", "shared_text": "", "time": "2019-07-17 09:28:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156862693709915&id=113335124914", "link": null} +{"post_id": "10156861568834915", "text": "Vi segnalo la scuola estiva MERITARE L\u2019ITALIA che si terr\u00e0 al Ciocco (provincia di Lucca) dalle 19 di mercoled\u00ec 21 agosto fino alle 13 di sabato 24 agosto. La scuola \u00e8 riservata a ragazze e ragazzi (in egual\u2026 Altro numero!) nati dopo il 1\u00b0 gennaio 1990 e fino al 31 dicembre 2003. Io star\u00f2 con i ragazzi per tutti e quattro i giorni e avremo ogni giorno ospiti diversi. La responsabile del progetto \u00e8 la professoressa Elena Bonetti. Il costo \u00e8 di 100\u20ac tutto compreso. Ovviamente per arrivare a coprire la cifra ci sar\u00e0 bisogno del contributo di generosi finanziatori. Personalmente ho deciso di mettere per primo l\u2019equivalente dello stipendio mensile di agosto che ricevo come senatore: se vogliamo dire che\u2026 Altro\nCOMITATIRITORNOALFUTURO.IT\nMeritare l'Italia - scuola estiva per Under 30 - Comitati Ritorno al Futuro", "post_text": "Vi segnalo la scuola estiva MERITARE L\u2019ITALIA che si terr\u00e0 al Ciocco (provincia di Lucca) dalle 19 di mercoled\u00ec 21 agosto fino alle 13 di sabato 24 agosto. La scuola \u00e8 riservata a ragazze e ragazzi (in egual\u2026 Altro numero!) nati dopo il 1\u00b0 gennaio 1990 e fino al 31 dicembre 2003. Io star\u00f2 con i ragazzi per tutti e quattro i giorni e avremo ogni giorno ospiti diversi. La responsabile del progetto \u00e8 la professoressa Elena Bonetti. Il costo \u00e8 di 100\u20ac tutto compreso. Ovviamente per arrivare a coprire la cifra ci sar\u00e0 bisogno del contributo di generosi finanziatori. Personalmente ho deciso di mettere per primo l\u2019equivalente dello stipendio mensile di agosto che ricevo come senatore: se vogliamo dire che\u2026 Altro", "shared_text": "COMITATIRITORNOALFUTURO.IT\nMeritare l'Italia - scuola estiva per Under 30 - Comitati Ritorno al Futuro", "time": "2019-07-16 21:11:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.4.480.251a/66651069_23843607622500181_8157666453147877376_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=VYCCHTNw_7cAQk_6r-0BJtMlTo2tagkmUIEaQzXYCISpMOzrNxRjaZ2kg&_nc_ht=scontent-cdt1-1.xx&oh=c88719fba2fd379a025c42b2c44d4940&oe=5E8501B8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156861568834915&id=113335124914", "link": "https://www.comitatiritornoalfuturo.it/meritare-italia-scuola-estiva/?fbclid=IwAR0Fn86Da5DS9tGexJ_-r8_pASXMsea8U7EJxyUngL9XucoYtp36rRV6HtE"} +{"post_id": "10156861411749915", "text": "Buon lavoro alla nuova Presidente della Commissione Europea, Ursula von der Leyen. \u00c8 la prima donna, non sar\u00e0 l\u2019ultima. Tutti insieme dovremo aiutarla per restituire un\u2019anima all\u2019Europa, un ideale, una speranza, una passione.\nViva l\u2019Europa, buon lavoro signora Presidente", "post_text": "Buon lavoro alla nuova Presidente della Commissione Europea, Ursula von der Leyen. \u00c8 la prima donna, non sar\u00e0 l\u2019ultima. Tutti insieme dovremo aiutarla per restituire un\u2019anima all\u2019Europa, un ideale, una speranza, una passione.\nViva l\u2019Europa, buon lavoro signora Presidente", "shared_text": "", "time": "2019-07-16 19:44:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/66848670_10156861410909915_3429833927647297536_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=TZlw5dR5kUIAQnOoOsZaMR-8VMaSyXHGkZu9Zyu6P043t6CH_9O3uXNmg&_nc_ht=scontent-cdt1-1.xx&oh=d02a97ce688bf93df86b9d2df649c6a6&oe=5E8B8EE7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156861411749915&id=113335124914", "link": null} +{"post_id": "10156861088829915", "text": "Oggi conferenza ad Atene: quale futuro per l\u2019Europa? Bel dibattito: \u00e8 vero che la Grecia ha un elevato debito pubblico e tale debito va onorato. Ma \u00e8 anche vero che l\u2019Europa ha un grande debito pubblico verso\u2026 Altro la Grecia: un debito di riconoscenza. Filosofia, democrazia, cultura: il mito stesso di Europa \u00e8 un mito greco. Chi disprezza il proprio passato disprezza se stesso. Viva la Grecia in Europa\n(foto \u00a9Stavros Giannoulis)", "post_text": "Oggi conferenza ad Atene: quale futuro per l\u2019Europa? Bel dibattito: \u00e8 vero che la Grecia ha un elevato debito pubblico e tale debito va onorato. Ma \u00e8 anche vero che l\u2019Europa ha un grande debito pubblico verso\u2026 Altro la Grecia: un debito di riconoscenza. Filosofia, democrazia, cultura: il mito stesso di Europa \u00e8 un mito greco. Chi disprezza il proprio passato disprezza se stesso. Viva la Grecia in Europa\n(foto \u00a9Stavros Giannoulis)", "shared_text": "", "time": "2019-07-16 17:09:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/67245777_10156861088054915_3184924880860610560_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=1N3rsjCuMawAQmzAppntbSndSzqf7K-yov4NMkdL9eN_orq34AeTsdDYw&_nc_ht=scontent-cdt1-1.xx&oh=c74b9f6656061f683e30b8fce2519b24&oe=5E4A647A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156861088829915&id=113335124914", "link": null} +{"post_id": "2344141522508395", "text": "I Benetton salveranno Alitalia e Di Maio. Alla faccia dei proclami populisti. Guardate questo video allucinante di Di Maio sui Benetton che \u201cfanno precipitare sostanzialmente gli aerei\u201d. Mi domando solo se questo Ministro \u00e8 davvero pazzo o finge soltanto. Tristezza", "post_text": "I Benetton salveranno Alitalia e Di Maio. Alla faccia dei proclami populisti. Guardate questo video allucinante di Di Maio sui Benetton che \u201cfanno precipitare sostanzialmente gli aerei\u201d. Mi domando solo se questo Ministro \u00e8 davvero pazzo o finge soltanto. Tristezza", "shared_text": "", "time": "2019-07-16 11:07:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2344141522508395&id=113335124914", "link": null} +{"post_id": "10156858948474915", "text": "Quindi il gruppo Benetton gestir\u00e0 Alitalia. Ottima scelta in termini di qualit\u00e0 del management e di solidit\u00e0 dell\u2019investitore. Ma dopo tutto quello che hanno detto dei Benetton, come fanno Di Maio e Toninelli a non vergognarsi? Sono semplicemente ridicoli", "post_text": "Quindi il gruppo Benetton gestir\u00e0 Alitalia. Ottima scelta in termini di qualit\u00e0 del management e di solidit\u00e0 dell\u2019investitore. Ma dopo tutto quello che hanno detto dei Benetton, come fanno Di Maio e Toninelli a non vergognarsi? Sono semplicemente ridicoli", "shared_text": "", "time": "2019-07-15 19:41:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156858948474915&id=113335124914", "link": null} +{"post_id": "10156857983749915", "text": "Vabb\u00e8, ormai vale tutto. Questo signore che parla di UFO lavora a Palazzo Chigi. E non ridete perch\u00e9 lo pagate voi, con le vostre tasse. \u00c8 il consigliere di Salvini per le relazioni internazionali. Quello con\u2026 Altro cui andava in Russia prima del referendum. E che ha invitato Savoini alla famosa cena con Putin. Tutto qui: Salvini affida le sue relazioni internazionali a chi crede negli UFO. Non bastavano Vaccini, scie chimiche e sirene nel Mediterraneo. Ci mancavano gli UFO. E dire che noi un tempo eravamo l\u2019Italia, il Paese della scienza e della cultura", "post_text": "Vabb\u00e8, ormai vale tutto. Questo signore che parla di UFO lavora a Palazzo Chigi. E non ridete perch\u00e9 lo pagate voi, con le vostre tasse. \u00c8 il consigliere di Salvini per le relazioni internazionali. Quello con\u2026 Altro cui andava in Russia prima del referendum. E che ha invitato Savoini alla famosa cena con Putin. Tutto qui: Salvini affida le sue relazioni internazionali a chi crede negli UFO. Non bastavano Vaccini, scie chimiche e sirene nel Mediterraneo. Ci mancavano gli UFO. E dire che noi un tempo eravamo l\u2019Italia, il Paese della scienza e della cultura", "shared_text": "", "time": "2019-07-15 09:34:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=355487221738190&id=113335124914", "link": null} +{"post_id": "10156856891039915", "text": "Dovevano cambiare tutto, l\u2019Italia, l\u2019Europa, il mondo. Alla fine cosa rester\u00e0 di loro? Uno falsificava i curriculum, uno aboliva la povert\u00e0, uno invitava la gente da Putin a sua insaputa. Hanno vinto in campagna elettorale racontando #FakeNews: oggi la realt\u00e0 li inchioda", "post_text": "Dovevano cambiare tutto, l\u2019Italia, l\u2019Europa, il mondo. Alla fine cosa rester\u00e0 di loro? Uno falsificava i curriculum, uno aboliva la povert\u00e0, uno invitava la gente da Putin a sua insaputa. Hanno vinto in campagna elettorale racontando #FakeNews: oggi la realt\u00e0 li inchioda", "shared_text": "", "time": "2019-07-14 22:55:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/66647526_10156856891009915_4136160334769553408_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=mdZ7wp6aXS8AQkH4-BucYpL8NxysHaFsK_7HP6DIyaDYlhEcrir2u3yZQ&_nc_ht=scontent-cdt1-1.xx&oh=96ccec9f1416d0c4261decce5d4cab9c&oe=5E3F2F48", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156856891039915&id=113335124914", "link": null} +{"post_id": "10156856538914915", "text": "Io non ho parole. Due campioni immensi, una partita pazzesca. Grazie a Wimbledon per le emozioni che ci ha regalato. Complimenti a Djokovic. Ma tutti in piedi per un gigante chiamato Federer", "post_text": "Io non ho parole. Due campioni immensi, una partita pazzesca. Grazie a Wimbledon per le emozioni che ci ha regalato. Complimenti a Djokovic. Ma tutti in piedi per un gigante chiamato Federer", "shared_text": "", "time": "2019-07-14 20:13:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156856538914915&id=113335124914", "link": null} +{"post_id": "10156856253259915", "text": "Mamma mia, che finale #Wimbledon", "post_text": "Mamma mia, che finale #Wimbledon", "shared_text": "", "time": "2019-07-14 17:59:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/66480202_10156856253199915_4284013746415730688_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=CWzHhDLqZucAQkcoeXIITE5DbgqDrc2QazRp3ExfFTAd3jsaGT4TNYjvQ&_nc_ht=scontent-cdt1-1.xx&oh=6d4ed6c5906e5d40cf3e9d194ac8d031&oe=5E7A9BA0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156856253259915&id=113335124914", "link": null} +{"post_id": "10156855993329915", "text": "Oggi festa nazionale in Francia. Auguri ai nostri cugini d\u2019Oltralpe: un tempo erano nostri alleati, ma da quando c\u2019\u00e8 Di Maio il governo italiano preferisce parlare con i Gilet Gialli che con Macron. E oggi da Parigi il Presidente scommette sul futuro e rilancia sull\u2019investimento francese per lo spazio: noi in Italia ci occupiamo di sapere chi ha invitato Savoini alla cena con Putin. #Differenze", "post_text": "Oggi festa nazionale in Francia. Auguri ai nostri cugini d\u2019Oltralpe: un tempo erano nostri alleati, ma da quando c\u2019\u00e8 Di Maio il governo italiano preferisce parlare con i Gilet Gialli che con Macron. E oggi da Parigi il Presidente scommette sul futuro e rilancia sull\u2019investimento francese per lo spazio: noi in Italia ci occupiamo di sapere chi ha invitato Savoini alla cena con Putin. #Differenze", "shared_text": "", "time": "2019-07-14 16:02:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156855993329915&id=113335124914", "link": null} +{"post_id": "10156853827424915", "text": "Quando un uomo si trova a combattere contro la leucemia e lo fa con il coraggio e la forza di Sinisa Mihajlovic c\u2019\u00e8 solo una parola da usare: RISPETTO! E un gigantesco in bocca al lupo, Mister", "post_text": "Quando un uomo si trova a combattere contro la leucemia e lo fa con il coraggio e la forza di Sinisa Mihajlovic c\u2019\u00e8 solo una parola da usare: RISPETTO! E un gigantesco in bocca al lupo, Mister", "shared_text": "", "time": "2019-07-13 17:54:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156853827424915&id=113335124914", "link": null} +{"post_id": "2280550242198759", "text": "Lei \u00e8 Megan Rapinoe, capitano e goleador della squadra americana, campione del mondo di calcio 2019. Le sue posizioni sono spesso \u201cstrong\u201d, ma quello che dice in questo \u201cdiscorso della vittoria\u201d \u00e8 bellissimo. E non parla solo al mondo del calcio. Prendetevi due minuti per ascoltarla, vale la pena \ud83d\ude0a", "post_text": "Lei \u00e8 Megan Rapinoe, capitano e goleador della squadra americana, campione del mondo di calcio 2019. Le sue posizioni sono spesso \u201cstrong\u201d, ma quello che dice in questo \u201cdiscorso della vittoria\u201d \u00e8 bellissimo. E non parla solo al mondo del calcio. Prendetevi due minuti per ascoltarla, vale la pena \ud83d\ude0a", "shared_text": "", "time": "2019-07-13 14:37:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2280550242198759&id=113335124914", "link": null} +{"post_id": "10156853124984915", "text": "Ho rivisto stamani la semifinale Federer-Nadal di Wimbledon. Chi ama il tennis sa che cosa voglio dire: questo non \u00e8 solo un match, non \u00e8 solo un torneo, non \u00e8 solo Wimbledon (e hai detto poco). Questa \u00e8 bellezza. Punto", "post_text": "Ho rivisto stamani la semifinale Federer-Nadal di Wimbledon. Chi ama il tennis sa che cosa voglio dire: questo non \u00e8 solo un match, non \u00e8 solo un torneo, non \u00e8 solo Wimbledon (e hai detto poco). Questa \u00e8 bellezza. Punto", "shared_text": "", "time": "2019-07-13 11:05:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/66799672_10156853124944915_3661992552266989568_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=06qMT2YQenEAQnkr0SJwg0TfYlptbQzVHHGNGwxrycpVTbQDyotdqYyLA&_nc_ht=scontent-cdt1-1.xx&oh=6f8357d1dceee1ab6a75c8a84140a167&oe=5E47479C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156853124984915&id=113335124914", "link": null} +{"post_id": "10156851941299915", "text": "Un clima fantastico, grazie. Tanta gente, tante idee. E finalmente una strategia per dire #BastaFake: educazione, scuola estiva, proposta di legge, idee per il futuro. Usciamo da Milano pieni di entusiasmo. Grazie a tutti", "post_text": "Un clima fantastico, grazie. Tanta gente, tante idee. E finalmente una strategia per dire #BastaFake: educazione, scuola estiva, proposta di legge, idee per il futuro. Usciamo da Milano pieni di entusiasmo. Grazie a tutti", "shared_text": "", "time": "2019-07-12 21:40:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/66669313_10156851941059915_7634798418728058880_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=I3sJdK5k1dgAQmj4m0oXSd9fyxI4RcWoS2TKQByUAluxXkhfHkTbECdOw&_nc_ht=scontent-cdt1-1.xx&oh=0394f2fb793b0514515d5102dbe1e292&oe=5E823F8D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156851941299915&id=113335124914", "link": null} +{"post_id": "628943407626315", "text": "In diretta da Milano #BastaFake", "post_text": "In diretta da Milano #BastaFake", "shared_text": "", "time": "2019-07-12 17:04:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=628943407626315&id=113335124914", "link": null} +{"post_id": "10156851094359915", "text": "Tra poco, alle 17, in diretta Facebook da Milano contro le FakeNews\n#BastaFake", "post_text": "Tra poco, alle 17, in diretta Facebook da Milano contro le FakeNews\n#BastaFake", "shared_text": "", "time": "2019-07-12 14:42:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/66360309_10156851093714915_2307674774110732288_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=KZeG8z9_9xYAQmz3dDZrcsgFocZzuupMt7DAXjl4HA588oj5BBimrq5Ww&_nc_ht=scontent-cdt1-1.xx&oh=156c231ca77224dfc142640178657ee1&oe=5E4D3645", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156851094359915&id=113335124914", "link": null} +{"post_id": "10156849382179915", "text": "Ma dove siete finiti tutti?\nVoi che urlavate alla deriva autoritaria perch\u00e8 la Costituzione non si tocca e adesso tacete su questa riforma costituzionale.\nVoi che gridavate ogni giorno allo scandalo per qualsiasi cosa e che adesso tacete davanti a una vera ipotesi di corruzione internazionale e di finanziamento illecito da parte di una potenza\u2026 Altro straniera.\nVoi che dicevate che la crescita all\u20191.5% era troppo bassa e adesso tacete davanti alla stagnazione e al PIL tornato a quota zero.\nVoi che vi lamentavate dell\u2019uomo solo al comando e adesso tacete davanti alle due s\u00f2le che litigano tutti i giorni su tutto.\nDove siete finiti tutti?\nNoi siamo sempre qui. E domani da Milano racconteremo come continuare la nostra battaglia educativa e culturale contro questo Governo che sta bloccando l\u2019Italia.\nOggi Salvini ha detto: Cos\u00ec non si va avanti. Per una volta sono d\u2019accordo con lui. Cos\u00ec non si va avanti, cos\u00ec si va indietro. Per colpa della Lega e dei Cinque Stelle.", "post_text": "Ma dove siete finiti tutti?\nVoi che urlavate alla deriva autoritaria perch\u00e8 la Costituzione non si tocca e adesso tacete su questa riforma costituzionale.\nVoi che gridavate ogni giorno allo scandalo per qualsiasi cosa e che adesso tacete davanti a una vera ipotesi di corruzione internazionale e di finanziamento illecito da parte di una potenza\u2026 Altro straniera.\nVoi che dicevate che la crescita all\u20191.5% era troppo bassa e adesso tacete davanti alla stagnazione e al PIL tornato a quota zero.\nVoi che vi lamentavate dell\u2019uomo solo al comando e adesso tacete davanti alle due s\u00f2le che litigano tutti i giorni su tutto.\nDove siete finiti tutti?\nNoi siamo sempre qui. E domani da Milano racconteremo come continuare la nostra battaglia educativa e culturale contro questo Governo che sta bloccando l\u2019Italia.\nOggi Salvini ha detto: Cos\u00ec non si va avanti. Per una volta sono d\u2019accordo con lui. Cos\u00ec non si va avanti, cos\u00ec si va indietro. Per colpa della Lega e dei Cinque Stelle.", "shared_text": "", "time": "2019-07-11 20:13:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156849382179915&id=113335124914", "link": null} +{"post_id": "10156849209144915", "text": "La Planche des Belles Filles al Tour de France \u00e8 un arrivo mitico per gli italiani. Dopo i primi posti di Nibali (2014) e Aru (2017), oggi il giovane Giulio Ciccone arriva secondo e conquista una maglia gialla storica. Che spettacolo il ciclismo, amici", "post_text": "La Planche des Belles Filles al Tour de France \u00e8 un arrivo mitico per gli italiani. Dopo i primi posti di Nibali (2014) e Aru (2017), oggi il giovane Giulio Ciccone arriva secondo e conquista una maglia gialla storica. Che spettacolo il ciclismo, amici", "shared_text": "", "time": "2019-07-11 18:42:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p200x200/67143411_10156849209119915_9100407793185193984_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=whYzjgHD1uoAQmDyXXdiZvMOr0gI1DQAKrxgS2xcwjhCuxhp15JE8jhUA&_nc_ht=scontent-cdt1-1.xx&oh=681009a8dc68200cc0b6d67247f1c96c&oe=5E46D303", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156849209144915&id=113335124914", "link": null} +{"post_id": "10156848849679915", "text": "Il popolo della Riviera Romagnola d\u00e0 un bellissimo esempio: voglia di lavorare, di reagire, di superare qualsiasi ostacolo. Poche ore dopo la tempesta, tutto \u00e8 di nuovo aperto. Questi nostri concittadini ci mostrano la strada che tutta Italia dovrebbe seguire: tenere botta, sempre. Bravissimi!", "post_text": "Il popolo della Riviera Romagnola d\u00e0 un bellissimo esempio: voglia di lavorare, di reagire, di superare qualsiasi ostacolo. Poche ore dopo la tempesta, tutto \u00e8 di nuovo aperto. Questi nostri concittadini ci mostrano la strada che tutta Italia dovrebbe seguire: tenere botta, sempre. Bravissimi!", "shared_text": "", "time": "2019-07-11 15:44:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p200x200/66407521_10156848974179915_5072325130688921600_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=s8AbOcmMV9IAQks5HDJNsmRoYdFIpxgC_TkTRL1K4pur3iCMqONOBlu_g&_nc_ht=scontent-cdt1-1.xx&oh=a98da96f7ab4d2594aac1eb2e265536d&oe=5E43FD28", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156848849679915&id=113335124914", "link": null} +{"post_id": "10156848354704915", "text": "Oggi Salvini dice: Querelo tutti. Anche meno, ministro. Basta che quereli una sola persona: il tuo uomo che chiede soldi ai russi. I sovranisti si fanno pagare da potenze straniere? Salvini: spiega al mondo intero quali sono i vostri veri rapporti coi russi", "post_text": "Oggi Salvini dice: Querelo tutti. Anche meno, ministro. Basta che quereli una sola persona: il tuo uomo che chiede soldi ai russi. I sovranisti si fanno pagare da potenze straniere? Salvini: spiega al mondo intero quali sono i vostri veri rapporti coi russi", "shared_text": "", "time": "2019-07-11 10:42:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/66425785_10156848354654915_7433646331249295360_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=g9vsJqz9XYEAQkVGVkHgkp-VCL0GU0c0wtJbgbBoyqmbX2JUgtjtU0BPA&_nc_ht=scontent-cdt1-1.xx&oh=caf08b2b76c3a565143a8c5f1ea9e568&oe=5E4A9D08", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156848354704915&id=113335124914", "link": null} +{"post_id": "10156844271279915", "text": "Dice Di Maio: \u201cin passato la Lega mi ha paragonato a Renzi ma io non mi sono mica lamentato\u201d. Lui no, certo. L\u2019unico a potersi lamentare del paragone sono io \ud83d\ude00", "post_text": "Dice Di Maio: \u201cin passato la Lega mi ha paragonato a Renzi ma io non mi sono mica lamentato\u201d. Lui no, certo. L\u2019unico a potersi lamentare del paragone sono io \ud83d\ude00", "shared_text": "", "time": "2019-07-09 16:11:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156844271279915&id=113335124914", "link": null} +{"post_id": "10156843916109915", "text": "Esattamente 13 anni fa l\u2019Italia vinceva la Coppa del mondo di calcio. Era l\u2019Italia di Lippi e Cannavaro, di Totti e Del Piero, di Buffon e Pirlo: l\u2019ultima Italia vincente. E mentre speriamo che i ragazzi del CT\u2026 Altro Mancini possano prima o poi replicare l\u2019impresa, viene da sorridere a ricordare ci\u00f2 che diceva allora Matteo Salvini. Tifava per la Francia, come noto, perch\u00e9 per lui il Tricolore era \u201csimbolo di oppressione\u201d. Oggi si \u00e8 convertito al \u201cPrima gli Italiani\u201d. Non male come percorso. Non ci resta che aspettare altri tredici anni e lo troveremo volontario di una ONG a salvare vite nel Mediterraneo.", "post_text": "Esattamente 13 anni fa l\u2019Italia vinceva la Coppa del mondo di calcio. Era l\u2019Italia di Lippi e Cannavaro, di Totti e Del Piero, di Buffon e Pirlo: l\u2019ultima Italia vincente. E mentre speriamo che i ragazzi del CT\u2026 Altro Mancini possano prima o poi replicare l\u2019impresa, viene da sorridere a ricordare ci\u00f2 che diceva allora Matteo Salvini. Tifava per la Francia, come noto, perch\u00e9 per lui il Tricolore era \u201csimbolo di oppressione\u201d. Oggi si \u00e8 convertito al \u201cPrima gli Italiani\u201d. Non male come percorso. Non ci resta che aspettare altri tredici anni e lo troveremo volontario di una ONG a salvare vite nel Mediterraneo.", "shared_text": "", "time": "2019-07-09 12:52:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/66470001_10156843913619915_8974137494144548864_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=17BEaUqAGr4AQnjoMvZxVqEhN29pZMwLAnlLDY4zCI9fJEKxiSbYskodw&_nc_ht=scontent-cdt1-1.xx&oh=2513958bfb64830cb0f5d5fa9218b67e&oe=5E4416DF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156843916109915&id=113335124914", "link": null} +{"post_id": "10156841521869915", "text": "Chi ama il tennis oggi ha il cuore diviso tra l\u2019irraggiungibile Federer e la giovane promessa Berrettini. Matteo oggi \u00e8 il numero 20 del mondo ma tutti sappiamo che crescer\u00e0 ancora. Vederlo a Wimbledon contro Federer oggi sar\u00e0 un\u2019emozione fantastica. Che spettacolo il tennis!", "post_text": "Chi ama il tennis oggi ha il cuore diviso tra l\u2019irraggiungibile Federer e la giovane promessa Berrettini. Matteo oggi \u00e8 il numero 20 del mondo ma tutti sappiamo che crescer\u00e0 ancora. Vederlo a Wimbledon contro Federer oggi sar\u00e0 un\u2019emozione fantastica. Che spettacolo il tennis!", "shared_text": "", "time": "2019-07-08 12:32:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/66363164_10156841521674915_1808145974229467136_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=Fkn2gtZ1kA4AQlm9wwnXngvT5NE2amT1aLbNMpljkqmqCy_d4DHC6x2hg&_nc_ht=scontent-cdt1-1.xx&oh=fed87a8fad18af0b25d9fb0a05018521&oe=5E41C2E9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156841521869915&id=113335124914", "link": null} +{"post_id": "10156840023174915", "text": "Finita la vacanza a Ortisei: breve ma intensa tra bici, camminate e arcobaleno. Che meraviglia le Dolomiti, patrimonio dell\u2019umanit\u00e0", "post_text": "Finita la vacanza a Ortisei: breve ma intensa tra bici, camminate e arcobaleno. Che meraviglia le Dolomiti, patrimonio dell\u2019umanit\u00e0", "shared_text": "", "time": "2019-07-07 21:25:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/66037207_10156840022719915_8746856389005017088_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=xnPJd19FDiAAQmnue54dBsct9ATmIuF8HQ8kHUIQH_EQ8ROgaGrnljG3A&_nc_ht=scontent-cdt1-1.xx&oh=1ebc510d167cfb38195a391328e68811&oe=5E7912C3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156840023174915&id=113335124914", "link": null} +{"post_id": "10156839670829915", "text": "La Grecia, culla della democrazia, ha scelto. Alexis Tsipras ha perso ma vorrei che oggi gli venisse riconosciuto da tutti l\u2019onore delle armi. Io c\u2019ero la notte in cui litigammo furiosamente in Consiglio\u2026 Altro Europeo, da un lato Francia, Italia e Grecia, dall\u2019altra molti paesi del Nord. Sedevo accanto a Alexis, quella notte: so quanto ha sofferto, quanto ha combattuto, quanto ha dovuto trovare un compromesso. Resto convinto che in quella terribile discussione, tenendo con forza Atene dentro la famiglia europea, non abbiamo salvato l\u2019onore della Grecia: abbiamo salvato l\u2019onore dell\u2019Europa. Adesso buon lavoro al nuovo Governo.", "post_text": "La Grecia, culla della democrazia, ha scelto. Alexis Tsipras ha perso ma vorrei che oggi gli venisse riconosciuto da tutti l\u2019onore delle armi. Io c\u2019ero la notte in cui litigammo furiosamente in Consiglio\u2026 Altro Europeo, da un lato Francia, Italia e Grecia, dall\u2019altra molti paesi del Nord. Sedevo accanto a Alexis, quella notte: so quanto ha sofferto, quanto ha combattuto, quanto ha dovuto trovare un compromesso. Resto convinto che in quella terribile discussione, tenendo con forza Atene dentro la famiglia europea, non abbiamo salvato l\u2019onore della Grecia: abbiamo salvato l\u2019onore dell\u2019Europa. Adesso buon lavoro al nuovo Governo.", "shared_text": "", "time": "2019-07-07 18:57:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/66037203_10156839670774915_603620317302095872_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=dSqxf7FUwsgAQmS6HImrT0CaKLYZkhCux-Aijm41JS5uAQxGDiI_ev_7g&_nc_ht=scontent-cdt1-1.xx&oh=caadd5ae57c918e1af2387c3be2fc2ea&oe=5E7AFDDB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156839670829915&id=113335124914", "link": null} +{"post_id": "10156838998799915", "text": "Non verranno mai in Italia, i porti sono chiusi, non sbarcheranno. I proclami di Salvini durano in media poco pi\u00f9 di una mezzoretta. Alla fine sbarcano in Italia. Sbarcano tutti. Sbarcano nel silenzio del capitano che per la rabbia cambia discorso e si butta su una crepe alla nutella o su un piatto di tortelli. E quando sbarcano altrove, come a\u2026 Altro Malta, noi accogliamo un equivalente numero di migranti in un\u2019imbarazzante pantomima che sarebbe una barzelletta se non fosse condotta sulla pelle di esseri umani.\nLa verit\u00e0 \u00e8 che l\u2019immigrazione serve a Salvini solo per dettare l\u2019agenda, non per risolvere la questione. Il problema \u00e8 che i suoi proclami durano il tempo di un aggiornamento della pagina\u2026 Altro", "post_text": "Non verranno mai in Italia, i porti sono chiusi, non sbarcheranno. I proclami di Salvini durano in media poco pi\u00f9 di una mezzoretta. Alla fine sbarcano in Italia. Sbarcano tutti. Sbarcano nel silenzio del capitano che per la rabbia cambia discorso e si butta su una crepe alla nutella o su un piatto di tortelli. E quando sbarcano altrove, come a\u2026 Altro Malta, noi accogliamo un equivalente numero di migranti in un\u2019imbarazzante pantomima che sarebbe una barzelletta se non fosse condotta sulla pelle di esseri umani.\nLa verit\u00e0 \u00e8 che l\u2019immigrazione serve a Salvini solo per dettare l\u2019agenda, non per risolvere la questione. Il problema \u00e8 che i suoi proclami durano il tempo di un aggiornamento della pagina\u2026 Altro", "shared_text": "", "time": "2019-07-07 13:16:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156838998799915&id=113335124914", "link": null} +{"post_id": "10156838853739915", "text": "La condanna a Beppe Sala per un vizio di forma va rispettata come vanno rispettate tutte le sentenze. Ma non toglie nulla al successo strepitoso che \u00e8 stato Expo, vera svolta per Milano e per l\u2019Italia. Se tornassimo indietro rifarei tutto quello che abbiamo fatto, tutto. E dico al sindaco Sala: vai avanti, non mollare.", "post_text": "La condanna a Beppe Sala per un vizio di forma va rispettata come vanno rispettate tutte le sentenze. Ma non toglie nulla al successo strepitoso che \u00e8 stato Expo, vera svolta per Milano e per l\u2019Italia. Se tornassimo indietro rifarei tutto quello che abbiamo fatto, tutto. E dico al sindaco Sala: vai avanti, non mollare.", "shared_text": "", "time": "2019-07-07 11:39:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/66243994_10156838853694915_5259554823979663360_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=r3tofe0H1N8AQlxCWZBTj8v-w-m5onnygOxlQ7qH52EmPsABHIRyXFvqQ&_nc_ht=scontent-cdt1-1.xx&oh=9fa740b204a4cdfa29ad87b88116d357&oe=5E7D10B6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156838853739915&id=113335124914", "link": null} +{"post_id": "10156834732494915", "text": "Parlare di immigrazione dicendo le cose come stanno significa fare politica, non fare polemica #60secondi #RenziRepubblica", "post_text": "Parlare di immigrazione dicendo le cose come stanno significa fare politica, non fare polemica #60secondi #RenziRepubblica", "shared_text": "", "time": "2019-07-05 18:56:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=344830012877697&id=113335124914", "link": null} +{"post_id": "10156833695379915", "text": "Ho scritto una lettera a Repubblica per parlare di immigrazione in modo serio, civile, umano. Spero che chi avr\u00e0 voglia di leggerla non si fermi al titolo, ma vada fino in fondo. L\u2019emergenza in questo Paese non\u2026 Altro \u00e8 l\u2019immigrazione, ma la mancanza di legalit\u00e0. L\u2019emergenza sono le culle vuote. L\u2019emergenza \u00e8 la questione educativa. Leggo volentieri i vostri commenti\nMATTEORENZI.IT\nSi pu\u00f2 essere seri e umani parlando di immigrazione? Dieci spunti per riflettere insieme - Lettera a Repubblica - Matteo Renzi", "post_text": "Ho scritto una lettera a Repubblica per parlare di immigrazione in modo serio, civile, umano. Spero che chi avr\u00e0 voglia di leggerla non si fermi al titolo, ma vada fino in fondo. L\u2019emergenza in questo Paese non\u2026 Altro \u00e8 l\u2019immigrazione, ma la mancanza di legalit\u00e0. L\u2019emergenza sono le culle vuote. L\u2019emergenza \u00e8 la questione educativa. Leggo volentieri i vostri commenti", "shared_text": "MATTEORENZI.IT\nSi pu\u00f2 essere seri e umani parlando di immigrazione? Dieci spunti per riflettere insieme - Lettera a Repubblica - Matteo Renzi", "time": "2019-07-05 08:50:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.11.660.345a/s480x480/65766660_23843580039140181_5188817657507348480_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=8bs-SNcNU0kAQniRZYfmAOKBi9kNBK45suPJOd-jpDbDJ8oLWuir5x1Rg&_nc_ht=scontent-cdt1-1.xx&oh=296b42e52eba06e1150f745bb00e74b5&oe=5E897FF1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156833695379915&id=113335124914", "link": "https://www.matteorenzi.it/si-puo-essere-seri-e-umani-parlando-di-immigrazione-dieci-spunti-per-riflettere-insieme-lettera-a-repubblica/?fbclid=IwAR23bNBtFhRsZjRYROW-nCMY3Iit23LMOamPA3KS3DgdfAlFcA-I__RHxVY"} +{"post_id": "10156832188829915", "text": "\u00c8 imbarazzante ricevere telefonate da amici che non abitano in Italia e vedono le immagini della spazzatura di Roma. E chiedono: tutto bene in Italia? L\u2019incapacit\u00e0 assoluta dell\u2019amministrazione di Roma e del\u2026 Altro sindaco Raggi fa male a tutto il Paese. I grillini hanno vinto tre anni fa gridando \u201cOnest\u00e0\u201d. Ma come diceva Benedetto Croce: l\u2019onest\u00e0 politica non \u00e8 altro che la capacit\u00e0 politica. Inutile gridare onest\u00e0 se non si riesce a sistemare la nettezza", "post_text": "\u00c8 imbarazzante ricevere telefonate da amici che non abitano in Italia e vedono le immagini della spazzatura di Roma. E chiedono: tutto bene in Italia? L\u2019incapacit\u00e0 assoluta dell\u2019amministrazione di Roma e del\u2026 Altro sindaco Raggi fa male a tutto il Paese. I grillini hanno vinto tre anni fa gridando \u201cOnest\u00e0\u201d. Ma come diceva Benedetto Croce: l\u2019onest\u00e0 politica non \u00e8 altro che la capacit\u00e0 politica. Inutile gridare onest\u00e0 se non si riesce a sistemare la nettezza", "shared_text": "", "time": "2019-07-04 19:25:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/65832027_10156832188664915_2203193522767527936_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=VjEq6i8PZ2kAQmLAyS2D_3TMNFJTS4m2H9iljlxvRT0VyhKCvT4YXLMDA&_nc_ht=scontent-cdt1-1.xx&oh=b73d92b41c8ed0e22f99e6b8391adbb8&oe=5E4A5EF3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156832188829915&id=113335124914", "link": null} +{"post_id": "10156830569624915", "text": "I sovranisti avevano promesso: dopo le elezioni europee l\u2019Italia conter\u00e0 di pi\u00f9. Ennesima #FakeNews: oggi scopriamo che contiamo meno. E l\u2019unico incarico europeo a un italiano va al PD\n#60secondi", "post_text": "I sovranisti avevano promesso: dopo le elezioni europee l\u2019Italia conter\u00e0 di pi\u00f9. Ennesima #FakeNews: oggi scopriamo che contiamo meno. E l\u2019unico incarico europeo a un italiano va al PD\n#60secondi", "shared_text": "", "time": "2019-07-04 04:03:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=484774802258185&id=113335124914", "link": null} +{"post_id": "10156829231744915", "text": "Lo spread scende e questa \u00e8 una splendida notizia. Noi siamo felici perch\u00e9 noi facciamo il tifo per l\u2019Italia.\nOgni risultato positivo va sottolineato!\nFateci caso: quando un Di Maio o un Salvini dicono assurdit\u00e0, lo spread cresce. Quando tacciono o fanno i seri, lo spread cala.\nLo spread \u00e8 dunque direttamente proporzionale alle follie di chi ci\u2026 Altro governa. Se vai sul balcone e abolisci la povert\u00e0 o se proponi i minibot lo spread schizza in alto. Se torni normale e segui le regole europee, lo spread cala.\nNon \u00e8 difficile, basta essere normali.\n\u00c8 imbarazzante vedere grillini e leghisti festeggiare la discesa di uno spread schizzato ai massimi per colpa loro. Per tutelare i risparmiatori italiani, basterebbe togliere la password dei social a Salvini e Di Maio: lo spread tornerebbe sotto i 100, come era con noi. Non \u00e8 difficile, basta essere normali.", "post_text": "Lo spread scende e questa \u00e8 una splendida notizia. Noi siamo felici perch\u00e9 noi facciamo il tifo per l\u2019Italia.\nOgni risultato positivo va sottolineato!\nFateci caso: quando un Di Maio o un Salvini dicono assurdit\u00e0, lo spread cresce. Quando tacciono o fanno i seri, lo spread cala.\nLo spread \u00e8 dunque direttamente proporzionale alle follie di chi ci\u2026 Altro governa. Se vai sul balcone e abolisci la povert\u00e0 o se proponi i minibot lo spread schizza in alto. Se torni normale e segui le regole europee, lo spread cala.\nNon \u00e8 difficile, basta essere normali.\n\u00c8 imbarazzante vedere grillini e leghisti festeggiare la discesa di uno spread schizzato ai massimi per colpa loro. Per tutelare i risparmiatori italiani, basterebbe togliere la password dei social a Salvini e Di Maio: lo spread tornerebbe sotto i 100, come era con noi. Non \u00e8 difficile, basta essere normali.", "shared_text": "", "time": "2019-07-03 14:42:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156829231744915&id=113335124914", "link": null} +{"post_id": "10156829074539915", "text": "Buon lavoro a David Sassoli eletto presidente del Parlamento Europeo. E in bocca al lupo a Ursula Von Der Leyen, Charles Michel, Josep Borrell, Christine Lagarde. L\u2019Europa intera si aspetta molto dai nuovi leader", "post_text": "Buon lavoro a David Sassoli eletto presidente del Parlamento Europeo. E in bocca al lupo a Ursula Von Der Leyen, Charles Michel, Josep Borrell, Christine Lagarde. L\u2019Europa intera si aspetta molto dai nuovi leader", "shared_text": "", "time": "2019-07-03 13:19:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156829074539915&id=113335124914", "link": null} +{"post_id": "10156828894664915", "text": "Mi sono stancato di sentirmi dire: ah, ma voi avete creato solo lavoro a tempo determinato, solo lavoro precario. \u00c8 una fake news galattica. Queste sono le statistiche degli ultimi anni basate sui dati ISTAT.\u2026 Altro Il JobsAct \u00e8 stata la misura pi\u00f9 importante per creare posti di lavoro a tempo indeterminato: chi dice il contrario semplicemente mente.", "post_text": "Mi sono stancato di sentirmi dire: ah, ma voi avete creato solo lavoro a tempo determinato, solo lavoro precario. \u00c8 una fake news galattica. Queste sono le statistiche degli ultimi anni basate sui dati ISTAT.\u2026 Altro Il JobsAct \u00e8 stata la misura pi\u00f9 importante per creare posti di lavoro a tempo indeterminato: chi dice il contrario semplicemente mente.", "shared_text": "", "time": "2019-07-03 11:24:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/65792140_10156828894629915_6197101070359986176_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=G5Qdv5acafwAQlhwJityISIITCxKaxeZSD069bkdRrtTWpcQGngVkHcPg&_nc_ht=scontent-cdt1-1.xx&oh=f13399acad691d7c53ef15d283e9df75&oe=5E7D23DD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156828894664915&id=113335124914", "link": null} +{"post_id": "10156827801529915", "text": "Ogni tanto capita di leggere una buona notizia ed \u00e8 giusto sottolinearla. Vi ricordate la App18 per i 18enni sulla cultura, app che qualcuno chiamava #BonusRenzi? \u00c8 una iniziativa che abbiamo voluto dopo la strage del Bataclan e che abbiamo finanziato nel 2015.\nPi\u00f9 volte i populisti l\u2019hanno cambiata, cancellata e poi reintrodotta dopo le nostre\u2026 Altro polemiche. E dire che altri Paesi la stanno copiando.\nAdesso la buona notizia \u00e8 che il\nGoverno ha recuperato il taglio che aveva fatto qualche mese fa. Quindi anche i ragazzi del 2001 avranno il #BonusRenzi da spendere per musica, libri, teatro. Nel mondo di oggi non c\u2019\u00e8 niente di pi\u00f9 rivoluzionario di un ragazzo che entra in biblioteca o al museo. E io sono felice che le buone idee siano pi\u00f9 forti di qualsiasi ideologia: se davvero finalmente il Governo attuale ha cambiato idea, dobbiamo solo essere felici.\nViva i nati nel 2001, viva il Bonus Cultura.", "post_text": "Ogni tanto capita di leggere una buona notizia ed \u00e8 giusto sottolinearla. Vi ricordate la App18 per i 18enni sulla cultura, app che qualcuno chiamava #BonusRenzi? \u00c8 una iniziativa che abbiamo voluto dopo la strage del Bataclan e che abbiamo finanziato nel 2015.\nPi\u00f9 volte i populisti l\u2019hanno cambiata, cancellata e poi reintrodotta dopo le nostre\u2026 Altro polemiche. E dire che altri Paesi la stanno copiando.\nAdesso la buona notizia \u00e8 che il\nGoverno ha recuperato il taglio che aveva fatto qualche mese fa. Quindi anche i ragazzi del 2001 avranno il #BonusRenzi da spendere per musica, libri, teatro. Nel mondo di oggi non c\u2019\u00e8 niente di pi\u00f9 rivoluzionario di un ragazzo che entra in biblioteca o al museo. E io sono felice che le buone idee siano pi\u00f9 forti di qualsiasi ideologia: se davvero finalmente il Governo attuale ha cambiato idea, dobbiamo solo essere felici.\nViva i nati nel 2001, viva il Bonus Cultura.", "shared_text": "", "time": "2019-07-02 22:08:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156827801529915&id=113335124914", "link": null} +{"post_id": "10156827309649915", "text": "Sono nato a Firenze, ho studiato a Firenze, sono stato eletto a Firenze, vivo a Firenze. Difficile dunque che mi si accusi di essere un filo senese: \u00e8 dal 4 settembre 1260 a Montaperti che abbiamo qualche\u2026 Altro problemino da risolvere, con i senesi. Ma quando arriva il giorno del Palio mi trovo tutte le volte costretto ad ammettere che nessuna manifestazione popolare \u00e8 forte e autentica come questa. Dall\u2019organizzazione delle contrade alla gara in Piazza del Campo, dalle cene del giorno prima al Te Deum con la benedizione del cavallo, io non ho mai visto niente di simile al mondo. Viva il Palio!", "post_text": "Sono nato a Firenze, ho studiato a Firenze, sono stato eletto a Firenze, vivo a Firenze. Difficile dunque che mi si accusi di essere un filo senese: \u00e8 dal 4 settembre 1260 a Montaperti che abbiamo qualche\u2026 Altro problemino da risolvere, con i senesi. Ma quando arriva il giorno del Palio mi trovo tutte le volte costretto ad ammettere che nessuna manifestazione popolare \u00e8 forte e autentica come questa. Dall\u2019organizzazione delle contrade alla gara in Piazza del Campo, dalle cene del giorno prima al Te Deum con la benedizione del cavallo, io non ho mai visto niente di simile al mondo. Viva il Palio!", "shared_text": "", "time": "2019-07-02 18:12:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/65729850_10156827309604915_1762761922396028928_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=itMqecXXR-wAQkTGqKPdRoETp39THagWQUp96ycgHPR-OcuW8VzOYgKlA&_nc_ht=scontent-cdt1-1.xx&oh=581065faf74cfbad726bedf4f45c0a33&oe=5E7E06A0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156827309649915&id=113335124914", "link": null} +{"post_id": "10156827157289915", "text": "A Milano il 12 luglio presenteremo un dettagliato piano contro le #FakeNews. Iniziative in Parlamento, in Tribunale, nelle piazze. Forse \u00e8 impossibile ripulire il web dall\u2019inquinamento della propaganda. Ma combattere le fake news \u00e8 ormai una priorit\u00e0 assoluta. Ci vediamo a Milano", "post_text": "A Milano il 12 luglio presenteremo un dettagliato piano contro le #FakeNews. Iniziative in Parlamento, in Tribunale, nelle piazze. Forse \u00e8 impossibile ripulire il web dall\u2019inquinamento della propaganda. Ma combattere le fake news \u00e8 ormai una priorit\u00e0 assoluta. Ci vediamo a Milano", "shared_text": "", "time": "2019-07-02 16:47:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=482703875633032&id=113335124914", "link": null} +{"post_id": "10156826700984915", "text": "Cronaca di Roma, oggi, 2 luglio 2019. Che tristezza vedere la nostra capitale ridotta cos\u00ec. \u201cNon \u00e8 colpa solo della Raggi\u201d dicono i grillini. Ok. Ma dopo mille giorni che sei al governo di Roma che senso ha\u2026 Altro continuare a dare la colpa agli altri? Questi sono bravi su Facebook, ma poi scendi in strada e vedi altro. Hanno vinto con le fake news, saranno sconfitti dalla realt\u00e0", "post_text": "Cronaca di Roma, oggi, 2 luglio 2019. Che tristezza vedere la nostra capitale ridotta cos\u00ec. \u201cNon \u00e8 colpa solo della Raggi\u201d dicono i grillini. Ok. Ma dopo mille giorni che sei al governo di Roma che senso ha\u2026 Altro continuare a dare la colpa agli altri? Questi sono bravi su Facebook, ma poi scendi in strada e vedi altro. Hanno vinto con le fake news, saranno sconfitti dalla realt\u00e0", "shared_text": "", "time": "2019-07-02 12:54:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/65875434_10156826700944915_499853555243417600_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=ZhMRHXZK-mkAQmMIqsybKXRW_HZy9cSMUeNO0Gro2koym1ecPxUf7zIDQ&_nc_ht=scontent-cdt1-1.xx&oh=f2bb87763c5654d75d131bb08c831437&oe=5E83C774", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156826700984915&id=113335124914", "link": null} +{"post_id": "10156824984389915", "text": "Loro combattono con le fake news... e noi? Cosa facciamo?\nNe parliamo il 12 luglio, dalle ore 16, al Teatro Elfo Puccini di Milano.\nQui per iscriversi: http://bit.ly/bastafakenews", "post_text": "Loro combattono con le fake news... e noi? Cosa facciamo?\nNe parliamo il 12 luglio, dalle ore 16, al Teatro Elfo Puccini di Milano.\nQui per iscriversi: http://bit.ly/bastafakenews", "shared_text": "", "time": "2019-07-01 18:40:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/65910674_10156824978869915_2332798739359465472_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=8xk3kikBr3oAQmfMXyiRW8jwdb8BJl4Q47WRa1ZkgPsYCDSqPcnVnP7KA&_nc_ht=scontent-cdt1-1.xx&oh=95c030309bed3f732aea3e0d1a341be7&oe=5E815685", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156824984389915&id=113335124914", "link": "https://bit.ly/bastafakenews?fbclid=IwAR0aghb2-Bs9KZTcLNM9_6H6aAD8cn0l0BS9T2dfkhgC0QlvO_tKcBvJot8"} +{"post_id": "10156819439779915", "text": "Le #RagazzeMondiali ci hanno fatto sognare. Grazie per quello che avete fatto, grazie per ci\u00f2 che siete e che rappresentate. Ora pi\u00f9 diritti per le atlete, per tutte le atlete", "post_text": "Le #RagazzeMondiali ci hanno fatto sognare. Grazie per quello che avete fatto, grazie per ci\u00f2 che siete e che rappresentate. Ora pi\u00f9 diritti per le atlete, per tutte le atlete", "shared_text": "", "time": "2019-06-29 17:34:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/65271307_10156819439594915_7275341503235358720_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=d37ppADzqG4AQnivki0tjY1AwnQoffnnEmHvw3ODqENGMBSSNCr4OZ8Bw&_nc_ht=scontent-cdt1-1.xx&oh=8a4439cd56d7fa83cc74ecf02ef51ede&oe=5E8340C8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156819439779915&id=113335124914", "link": null} +{"post_id": "10156816715494915", "text": "Teresa Bellanova \u00e8 una splendida donna, una grande lavoratrice cresciuta in Puglia.\nLei sa cosa significhi faticare, lavorare, vivere. Quando l\u2019ho chiamata al Governo \u00e8 stata in prima fila in tutte le crisi\u2026 Altro occupazionali, con una passione pari solo alla competenza. Ieri ha parlato in aula, di Taranto. In quella citt\u00e0 lei si \u00e8 presa insulti, minacce, critiche. Ma ha sempre lavorato per l\u2019interesse pubblico: riaprire Ilva mettendo in sicurezza l\u2019ambiente e garantendo un futuro ai lavoratori. Invece i cialtroni che oggi ci governano hanno scritto un decreto, sbagliato, che porter\u00e0 alla chiusura di Ilva il 6 settembre. Teresa ha fatto un bellissimo discorso per spiegare perch\u00e9 questa scelta sarebbe una follia. Alla fine mi \u00e8 sembrato normale abbracciarla e dirle che le voglio bene: perch\u00e9 non \u00e8 facile per nessuno essere insultato da chi neanche si rende conto del danno che sta facendo al proprio Paese. Orgoglioso di essere amico di Teresa, orgoglioso di stare dalla parte di chi sa che cosa vuol dire lavorare per vivere.", "post_text": "Teresa Bellanova \u00e8 una splendida donna, una grande lavoratrice cresciuta in Puglia.\nLei sa cosa significhi faticare, lavorare, vivere. Quando l\u2019ho chiamata al Governo \u00e8 stata in prima fila in tutte le crisi\u2026 Altro occupazionali, con una passione pari solo alla competenza. Ieri ha parlato in aula, di Taranto. In quella citt\u00e0 lei si \u00e8 presa insulti, minacce, critiche. Ma ha sempre lavorato per l\u2019interesse pubblico: riaprire Ilva mettendo in sicurezza l\u2019ambiente e garantendo un futuro ai lavoratori. Invece i cialtroni che oggi ci governano hanno scritto un decreto, sbagliato, che porter\u00e0 alla chiusura di Ilva il 6 settembre. Teresa ha fatto un bellissimo discorso per spiegare perch\u00e9 questa scelta sarebbe una follia. Alla fine mi \u00e8 sembrato normale abbracciarla e dirle che le voglio bene: perch\u00e9 non \u00e8 facile per nessuno essere insultato da chi neanche si rende conto del danno che sta facendo al proprio Paese. Orgoglioso di essere amico di Teresa, orgoglioso di stare dalla parte di chi sa che cosa vuol dire lavorare per vivere.", "shared_text": "", "time": "2019-06-28 16:49:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/65436217_10156816715459915_8416245229786497024_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=tl34lhCfTQEAQlyoa_jmYUckWINhy1M6oAs7zpf7HlgCko8JHFVRI7iQA&_nc_ht=scontent-cdt1-1.xx&oh=6f82e8424852e5b2ba3b3837838571c0&oe=5E4A9519", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156816715494915&id=113335124914", "link": null} +{"post_id": "10156816161444915", "text": "In un solo giorno Di Maio ha attaccato la sicurezza del posto di lavoro degli operai di Ilva e dei lavoratori di Atlantia. Un genio! Non ha ancora capito che il suo compito \u00e8 chiudere le crisi occupazionali, non aprirne di nuove.", "post_text": "In un solo giorno Di Maio ha attaccato la sicurezza del posto di lavoro degli operai di Ilva e dei lavoratori di Atlantia. Un genio! Non ha ancora capito che il suo compito \u00e8 chiudere le crisi occupazionali, non aprirne di nuove.", "shared_text": "", "time": "2019-06-28 11:23:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156816161444915&id=113335124914", "link": null} +{"post_id": "10156816068684915", "text": "Cinquanta anni fa la rivolta di Stonewall segn\u00f2 una svolta nella storia dei diritti civili, non solo in America.\nIo non vengo da quella storia. Ho superato diffidenze, coltivato amicizie, imparato a conoscere. Compagni e compagne di strada mi hanno aiutato ad approfondire, a riflettere: ancora adesso se penso ad Alessia mi commuovo. E grazie anche\u2026 Altro a questi incontri oggi l\u2019Italia ha una legislazione sui diritti civili, frutto dell\u2019impegno di tanti. Ma frutto anche di un atto di coraggio del nostro Governo.\nSe non avessimo avuto la forza di mettere la fiducia sarebbe andata a finire male, come l\u2019anno dopo sullo Ius Soli.\nDicono che avere un caratteraccio non vada di moda in politica. Forse\u2026 Altro", "post_text": "Cinquanta anni fa la rivolta di Stonewall segn\u00f2 una svolta nella storia dei diritti civili, non solo in America.\nIo non vengo da quella storia. Ho superato diffidenze, coltivato amicizie, imparato a conoscere. Compagni e compagne di strada mi hanno aiutato ad approfondire, a riflettere: ancora adesso se penso ad Alessia mi commuovo. E grazie anche\u2026 Altro a questi incontri oggi l\u2019Italia ha una legislazione sui diritti civili, frutto dell\u2019impegno di tanti. Ma frutto anche di un atto di coraggio del nostro Governo.\nSe non avessimo avuto la forza di mettere la fiducia sarebbe andata a finire male, come l\u2019anno dopo sullo Ius Soli.\nDicono che avere un caratteraccio non vada di moda in politica. Forse\u2026 Altro", "shared_text": "", "time": "2019-06-28 10:06:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156816068684915&id=113335124914", "link": null} +{"post_id": "354823458508773", "text": "Il mio intervento in Aula al Senato sul Decreto Crescita #Decrescita #Ricoveratelo", "post_text": "Il mio intervento in Aula al Senato sul Decreto Crescita #Decrescita #Ricoveratelo", "shared_text": "", "time": "2019-06-27 10:44:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=354823458508773&id=113335124914", "link": null} +{"post_id": "10156812497974915", "text": "\u00c8 ora di andare a letto. Ho finito di pensare al discorso di domani in Senato, sono provato dal fuso orario e non dormo nello stesso letto da dieci giorni. Ho sonno. Eppure non riesco a dormire. Perch\u00e9\u2026 Altro l\u2019immagine di quel babbo, di quel bimbo fa accapponare la pelle. \u00c8 una immagine che viene dall\u2019America, non da Lampedusa o da qualche isola greca, ma alla fine poco importa. Mi domando e vi domando.\nQuando \u00e8 che abbiamo perso la nostra capacit\u00e0 di sconvolgerci? Come non renderci conto che noi italiani siamo un popolo di migranti dall\u2019antica Roma alla storia del Novecento? E come non capire che se un padre rischia (e perde) la vita con suo figlio \u00e8 perch\u00e9 non ha alternative. Non tutti siamo\u2026 Altro", "post_text": "\u00c8 ora di andare a letto. Ho finito di pensare al discorso di domani in Senato, sono provato dal fuso orario e non dormo nello stesso letto da dieci giorni. Ho sonno. Eppure non riesco a dormire. Perch\u00e9\u2026 Altro l\u2019immagine di quel babbo, di quel bimbo fa accapponare la pelle. \u00c8 una immagine che viene dall\u2019America, non da Lampedusa o da qualche isola greca, ma alla fine poco importa. Mi domando e vi domando.\nQuando \u00e8 che abbiamo perso la nostra capacit\u00e0 di sconvolgerci? Come non renderci conto che noi italiani siamo un popolo di migranti dall\u2019antica Roma alla storia del Novecento? E come non capire che se un padre rischia (e perde) la vita con suo figlio \u00e8 perch\u00e9 non ha alternative. Non tutti siamo\u2026 Altro", "shared_text": "", "time": "2019-06-26 22:54:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156812497974915&id=113335124914", "link": null} +{"post_id": "10156810912394915", "text": "Ammiro a bocca aperta l\u2019arrivo dell\u2019alba sopra le Dolomiti. Poi a Malpensa, mentre aspetto la coincidenza per Fiumicino, compro i giornali da Michela, che mi dice: \u201cGrazie al JobsAct qui mi hanno assunto a\u2026 Altro tempo indeterminato, grazie.\u201d Quanta distanza tra la vita reale e i commenti inquinati dei troll sui social. Buongiorno a tutti", "post_text": "Ammiro a bocca aperta l\u2019arrivo dell\u2019alba sopra le Dolomiti. Poi a Malpensa, mentre aspetto la coincidenza per Fiumicino, compro i giornali da Michela, che mi dice: \u201cGrazie al JobsAct qui mi hanno assunto a\u2026 Altro tempo indeterminato, grazie.\u201d Quanta distanza tra la vita reale e i commenti inquinati dei troll sui social. Buongiorno a tutti", "shared_text": "", "time": "2019-06-26 09:10:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/65052379_10156810912364915_3596547571482361856_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=k7doB3TLGiUAQlxSkcuhA4iFuNE8ONJedCB8EExp1Wezyjz4S5kXf8h9w&_nc_ht=scontent-cdt1-1.xx&oh=1323e624cb2f1b52330bce8783fad9b0&oe=5E81270A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156810912394915&id=113335124914", "link": null} +{"post_id": "10156809369684915", "text": "Molti commenti al post di stamani sulle Olimpiadi vengono da cittadini del sud. Commenti interessanti.\nC\u2019\u00e8 chi dice che si sono vinte le Olimpiadi solo perch\u00e9 c\u2019erano citt\u00e0 del nord: qualcuno lo dice con vittimismo, qualcuno con rassegnazione, qualcuno criticando il Governo che non ha mai scommesso sul Mezzogiorno.\nDa Presidente del Consiglio ho\u2026 Altro lottato per le Universiadi a Napoli, la capitale della cultura a Matera, il G7 a Taormina, ma anche la Apple a Napoli, il rilancio di Pompei e della Reggia di Caserta, i musei archeologici a Reggio Calabria e Taranto, l\u2019accelerazione della Napoli Bari con lo SbloccaItalia e tanto altro.\nNon basta, il nodo rimane: il Mezzogiorno non si salva\u2026 Altro", "post_text": "Molti commenti al post di stamani sulle Olimpiadi vengono da cittadini del sud. Commenti interessanti.\nC\u2019\u00e8 chi dice che si sono vinte le Olimpiadi solo perch\u00e9 c\u2019erano citt\u00e0 del nord: qualcuno lo dice con vittimismo, qualcuno con rassegnazione, qualcuno criticando il Governo che non ha mai scommesso sul Mezzogiorno.\nDa Presidente del Consiglio ho\u2026 Altro lottato per le Universiadi a Napoli, la capitale della cultura a Matera, il G7 a Taormina, ma anche la Apple a Napoli, il rilancio di Pompei e della Reggia di Caserta, i musei archeologici a Reggio Calabria e Taranto, l\u2019accelerazione della Napoli Bari con lo SbloccaItalia e tanto altro.\nNon basta, il nodo rimane: il Mezzogiorno non si salva\u2026 Altro", "shared_text": "", "time": "2019-06-25 17:33:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156809369684915&id=113335124914", "link": null} +{"post_id": "10156808521479915", "text": "L\u2019Italia ha vinto. Tutto il resto non conta.\nQuesto Paese \u00e8 forte, pi\u00f9 forte di chi lo attacca con polemiche meschine.\nOggi leggo che sulle Olimpiadi tutti hanno cambiato idea. Bene.\nSalvini attaccava il \u201cfenomeno fiorentino\u201d che voleva le Olimpiadi (scriveva di me: RICOVERATEVELO!): ora \u00e8 il primo a esultare, ma ormai conosciamo il suo modo di\u2026 Altro fare. Lui non ha idee: le cambia sulla base della convenienza del momento.\nI Cinque Stelle rivendicano il merito di questo \u201csogno italiano\u201d dopo che sono stati loro, con Virginia Raggi prima e Chiara Appendino poi a negare alle \u201cloro\u201d citt\u00e0 questa occasione. Ormai \u00e8 chiaro: uno vota in Cinque Stelle per protesta e si trova una classe dirigente che fa\u2026 Altro", "post_text": "L\u2019Italia ha vinto. Tutto il resto non conta.\nQuesto Paese \u00e8 forte, pi\u00f9 forte di chi lo attacca con polemiche meschine.\nOggi leggo che sulle Olimpiadi tutti hanno cambiato idea. Bene.\nSalvini attaccava il \u201cfenomeno fiorentino\u201d che voleva le Olimpiadi (scriveva di me: RICOVERATEVELO!): ora \u00e8 il primo a esultare, ma ormai conosciamo il suo modo di\u2026 Altro fare. Lui non ha idee: le cambia sulla base della convenienza del momento.\nI Cinque Stelle rivendicano il merito di questo \u201csogno italiano\u201d dopo che sono stati loro, con Virginia Raggi prima e Chiara Appendino poi a negare alle \u201cloro\u201d citt\u00e0 questa occasione. Ormai \u00e8 chiaro: uno vota in Cinque Stelle per protesta e si trova una classe dirigente che fa\u2026 Altro", "shared_text": "", "time": "2019-06-25 09:01:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156808521479915&id=113335124914", "link": null} +{"post_id": "10156808638429915", "text": "I miei #60secondi di oggi sull\u2019Italia che vince. I grandi eventi come Expo o Olimpiadi cambiano le citt\u00e0. Noi ci abbiamo sempre creduto #VivaLItalia", "post_text": "I miei #60secondi di oggi sull\u2019Italia che vince. I grandi eventi come Expo o Olimpiadi cambiano le citt\u00e0. Noi ci abbiamo sempre creduto #VivaLItalia", "shared_text": "", "time": "2019-06-25 01:41:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=696151374177357&id=113335124914", "link": null} +{"post_id": "10156806874984915", "text": "Tre anni fa, proprio oggi, si consumava il pi\u00f9 grande autogol della storia europea. Calcio? No, Brexit. Gli inglesi hanno scelto di uscire dall\u2019Europa sulla base di promesse e dati FALSI. Oggi la realt\u00e0 dimostra che tutta la campagna elettorale dei filo-Brexit si basava su fake news dalla sanit\u00e0 all\u2019immigrazione.\nLe bugie ti fanno vincere i referendum ma poi sono i cittadini a pagare i danni della realt\u00e0. Era il referendum di un Paese che nel 2016 cresceva e adesso vede l\u2019economia bloccata. Il Regno Unito, of course.", "post_text": "Tre anni fa, proprio oggi, si consumava il pi\u00f9 grande autogol della storia europea. Calcio? No, Brexit. Gli inglesi hanno scelto di uscire dall\u2019Europa sulla base di promesse e dati FALSI. Oggi la realt\u00e0 dimostra che tutta la campagna elettorale dei filo-Brexit si basava su fake news dalla sanit\u00e0 all\u2019immigrazione.\nLe bugie ti fanno vincere i referendum ma poi sono i cittadini a pagare i danni della realt\u00e0. Era il referendum di un Paese che nel 2016 cresceva e adesso vede l\u2019economia bloccata. Il Regno Unito, of course.", "shared_text": "", "time": "2019-06-24 16:34:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156806874984915&id=113335124914", "link": null} +{"post_id": "10156806282949915", "text": "Oggi la Lega torna indietro sui MiniBot, meno male: bravo Giorgetti. E a chi dice: servono i MiniBot per pagare i debiti della PA chiedo di essere serio! Basta bugie!\nIn questi anni il problema dei pagamenti della PA \u00e8 stato notevolmente ridotto dai nostri governi.\nEcco i dati, impressionanti, di Farmindustria. Nel 2008 si pagava a 280 giorni, a\u2026 Altro fine 2011 si pagava a 260 giorni. Vi ricordate quanto ho rotto le scatole su questo tema? Bene, oggi la media \u00e8 pi\u00f9 bassa del privata: si paga a 58 giorni.\nNon si pu\u00f2 continuare a inquinare il dibattito con le fake news. Chiamiamo le cose con il loro nome: i MiniBot sono semplicemente una MegaBalla.", "post_text": "Oggi la Lega torna indietro sui MiniBot, meno male: bravo Giorgetti. E a chi dice: servono i MiniBot per pagare i debiti della PA chiedo di essere serio! Basta bugie!\nIn questi anni il problema dei pagamenti della PA \u00e8 stato notevolmente ridotto dai nostri governi.\nEcco i dati, impressionanti, di Farmindustria. Nel 2008 si pagava a 280 giorni, a\u2026 Altro fine 2011 si pagava a 260 giorni. Vi ricordate quanto ho rotto le scatole su questo tema? Bene, oggi la media \u00e8 pi\u00f9 bassa del privata: si paga a 58 giorni.\nNon si pu\u00f2 continuare a inquinare il dibattito con le fake news. Chiamiamo le cose con il loro nome: i MiniBot sono semplicemente una MegaBalla.", "shared_text": "", "time": "2019-06-24 10:15:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156806282949915&id=113335124914", "link": null} +{"post_id": "10156806110834915", "text": "Oggi \u00e8 San Giovanni. Tanti auguri Firenze, citt\u00e0 \u201cperla del mondo\u201d", "post_text": "Oggi \u00e8 San Giovanni. Tanti auguri Firenze, citt\u00e0 \u201cperla del mondo\u201d", "shared_text": "", "time": "2019-06-24 08:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/64838618_10156806110699915_671946834595282944_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=4rs0k_FQdaoAQkTQO1lsab8BKtZ_p6zH_4bHzyJAkuWl9DDRzAYsCUrtw&_nc_ht=scontent-cdt1-1.xx&oh=f0e7e72c95da89d8557644febaeb6b01&oe=5E4B19E2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156806110834915&id=113335124914", "link": null} +{"post_id": "10156804982354915", "text": "Meryl Streep compie 70 anni. Qual \u00e8 secondo voi il suo capolavoro? Potrei dire \u201cLa mia Africa\u201d oppure \u201cIl Diavolo veste Prada\u201d o anche il recente \u201cIl Post\u201d. Vi stupir\u00f2 ma per me lei \u00e8 stata semplicemente\u2026 Altro perfetta in \u201cThe Iron Lady\u201d. In ogni caso, qualunque sia la vostra opinione, non credo che nessuno possa avere dubbi: stiamo parlando di una donna strepitosa e di una gigante del cinema di tutti i tempi.", "post_text": "Meryl Streep compie 70 anni. Qual \u00e8 secondo voi il suo capolavoro? Potrei dire \u201cLa mia Africa\u201d oppure \u201cIl Diavolo veste Prada\u201d o anche il recente \u201cIl Post\u201d. Vi stupir\u00f2 ma per me lei \u00e8 stata semplicemente\u2026 Altro perfetta in \u201cThe Iron Lady\u201d. In ogni caso, qualunque sia la vostra opinione, non credo che nessuno possa avere dubbi: stiamo parlando di una donna strepitosa e di una gigante del cinema di tutti i tempi.", "shared_text": "", "time": "2019-06-23 20:43:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/65179133_10156804982319915_3130218623986040832_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=MLXYXCJsTqwAQlpRQZIzAplDa_M339R2yThp8Ex2i2MMtbJVJGxih_XjA&_nc_ht=scontent-cdt1-1.xx&oh=37a304877a6479ec4ea61aa0165d1d07&oe=5E794BE5", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156804982354915&id=113335124914", "link": null} +{"post_id": "10156804186474915", "text": "La prima scelta che ho fatto quando sono diventato sindaco di Firenze \u00e8 stata il sistema dei cassonetti interrati. Anche adesso, girando in tutto il mondo, mi rendo conto che la gestione\u2026 Altro dell\u2019immondizia/nettezza \u00e8 il primo problema pratico per un amministratore. E tutte le capitali stanno facendo sforzi per migliorare la raccolta ed essere pi\u00f9 pulite. Tutte? Quasi tutte. Questa \u00e8 Roma oggi: sono tre foto che mi ha inviato un amico. Il fallimento di Virginia Raggi si tocca con mano qui, ogni mattina. Anzi: meglio non toccarlo. Basta vedere e annusare. \u00c8 vero che i problemi di Roma non sono nati con la giunta Raggi. Ma riuscire a peggiorare il sistema dei rifiuti non era per niente facile.\nQuando fu eletta la Raggi, mi permisi di suggerire di copiare il nostro sistema dei cassonetti interrati. Fui attaccato dai grillini dicendo che a a Firenze non funzionava niente.\nIl tempo \u00e8 galantuomo. Hanno vinto con le fake news, saranno sconfitti dalla realt\u00e0. Ancora buona domenica a tutti", "post_text": "La prima scelta che ho fatto quando sono diventato sindaco di Firenze \u00e8 stata il sistema dei cassonetti interrati. Anche adesso, girando in tutto il mondo, mi rendo conto che la gestione\u2026 Altro dell\u2019immondizia/nettezza \u00e8 il primo problema pratico per un amministratore. E tutte le capitali stanno facendo sforzi per migliorare la raccolta ed essere pi\u00f9 pulite. Tutte? Quasi tutte. Questa \u00e8 Roma oggi: sono tre foto che mi ha inviato un amico. Il fallimento di Virginia Raggi si tocca con mano qui, ogni mattina. Anzi: meglio non toccarlo. Basta vedere e annusare. \u00c8 vero che i problemi di Roma non sono nati con la giunta Raggi. Ma riuscire a peggiorare il sistema dei rifiuti non era per niente facile.\nQuando fu eletta la Raggi, mi permisi di suggerire di copiare il nostro sistema dei cassonetti interrati. Fui attaccato dai grillini dicendo che a a Firenze non funzionava niente.\nIl tempo \u00e8 galantuomo. Hanno vinto con le fake news, saranno sconfitti dalla realt\u00e0. Ancora buona domenica a tutti", "shared_text": "", "time": "2019-06-23 14:27:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/65457822_10156804186444915_9205992357202231296_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=vsmE2FHbUyIAQnIou7TSu9ZEXCbEvTPBSDXQf9NTVUISqQUBi-ZK-JFCQ&_nc_ht=scontent-cdt1-1.xx&oh=5d2ba1f3802ac8127ec5824bd8d27cf9&oe=5E84B1D2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156804186474915&id=113335124914", "link": null} +{"post_id": "10156803981614915", "text": "Pausa domenicale tra un meeting e l\u2019altro. E a tutti quelli che arriveranno a domandare polemici: ma perch\u00e9 non resti all\u2019estero? Invio un abbraccio affettuoso anticipato. \u201cState sereni\u201d, torno prestissimo.\u2026 Altro Anche perch\u00e9 in Senato si discute del decreto crescita. E ho chiesto al mio capogruppo di intervenire in aula. Con che faccia Salvini e Di Maio parlano di crescita, loro che hanno DISTRUTTO la crescita italiana? Loro due che fanno un decreto sulla crescita hanno la stessa credibilit\u00e0 di zio Paperone che fa un decreto sulla generosit\u00e0, di Berlusconi che fa un decreto sulla castit\u00e0, di Dracula che fa un decreto sulla donazione di sangue.\nLi aspettiamo in Senato.\nNoi diremo no a questo decreto.\nLoro hanno detto no alla crescita", "post_text": "Pausa domenicale tra un meeting e l\u2019altro. E a tutti quelli che arriveranno a domandare polemici: ma perch\u00e9 non resti all\u2019estero? Invio un abbraccio affettuoso anticipato. \u201cState sereni\u201d, torno prestissimo.\u2026 Altro Anche perch\u00e9 in Senato si discute del decreto crescita. E ho chiesto al mio capogruppo di intervenire in aula. Con che faccia Salvini e Di Maio parlano di crescita, loro che hanno DISTRUTTO la crescita italiana? Loro due che fanno un decreto sulla crescita hanno la stessa credibilit\u00e0 di zio Paperone che fa un decreto sulla generosit\u00e0, di Berlusconi che fa un decreto sulla castit\u00e0, di Dracula che fa un decreto sulla donazione di sangue.\nLi aspettiamo in Senato.\nNoi diremo no a questo decreto.\nLoro hanno detto no alla crescita", "shared_text": "", "time": "2019-06-23 12:36:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/64881850_10156803981519915_9013104641499463680_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=3v71fFfPZ5EAQnV7JquXo3-Dm0dF_bMSW5Kni9yNkZfF_vkIh4P_XPAhA&_nc_ht=scontent-cdt1-1.xx&oh=1be2913357bbe038f9abc24c85874b70&oe=5E506833", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156803981614915&id=113335124914", "link": null} +{"post_id": "10156802013209915", "text": "Esattamente 10 anni fa Firenze affidava Palazzo Vecchio a un gruppo di giovani appassionati. Pedonalizzazioni, auto elettriche, volumi zero, raddoppio biblioteche, scuole, sociale, tram & notti bianche, cultura\u2026 Altro e concerti: tante le iniziative di allora che oggi vanno avanti alla grande con Dario, allora vicesindaco. E la citt\u00e0 cresce pi\u00f9 della media europea. Sindaco della pi\u00f9 bella citt\u00e0 del mondo: pu\u00f2 esistere un onore pi\u00f9 grande? Grazie Firenze!\n#TenYearsAgo", "post_text": "Esattamente 10 anni fa Firenze affidava Palazzo Vecchio a un gruppo di giovani appassionati. Pedonalizzazioni, auto elettriche, volumi zero, raddoppio biblioteche, scuole, sociale, tram & notti bianche, cultura\u2026 Altro e concerti: tante le iniziative di allora che oggi vanno avanti alla grande con Dario, allora vicesindaco. E la citt\u00e0 cresce pi\u00f9 della media europea. Sindaco della pi\u00f9 bella citt\u00e0 del mondo: pu\u00f2 esistere un onore pi\u00f9 grande? Grazie Firenze!\n#TenYearsAgo", "shared_text": "", "time": "2019-06-22 16:11:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=902446260099058&id=113335124914", "link": null} +{"post_id": "10156800191629915", "text": "Salvini ha vinto le elezioni promettendo la luna: flat tax per tutti al 15%, seicentomila rimpatri, via le accise sulla benzina, asili nido, via la Fornero. Adesso, disperato, si limita a piagnucolare chiedendo 10 miliardi. Voi direte: ohi, ma 10 miliardi sono tanti. Per un privato certo. Ma siamo seri: noi abbiamo ridotto le tasse per molto di\u2026 Altro pi\u00f9, senza tutto questo casino.\n10 miliardi, pi\u00f9 o meno, \u00e8 il costo degli 80\u20ac. O della riduzione Irap costo del lavoro. O dell\u2019abolizione dell\u2019Imu e della riduzione dell\u2019Ires. O di parte del progetto superammortamento e industria 4.0. Insomma: ben che vada tutto il caos di questi giorni (o mi date 10 miliardi o salta il Governo) nasconde una\u2026 Altro", "post_text": "Salvini ha vinto le elezioni promettendo la luna: flat tax per tutti al 15%, seicentomila rimpatri, via le accise sulla benzina, asili nido, via la Fornero. Adesso, disperato, si limita a piagnucolare chiedendo 10 miliardi. Voi direte: ohi, ma 10 miliardi sono tanti. Per un privato certo. Ma siamo seri: noi abbiamo ridotto le tasse per molto di\u2026 Altro pi\u00f9, senza tutto questo casino.\n10 miliardi, pi\u00f9 o meno, \u00e8 il costo degli 80\u20ac. O della riduzione Irap costo del lavoro. O dell\u2019abolizione dell\u2019Imu e della riduzione dell\u2019Ires. O di parte del progetto superammortamento e industria 4.0. Insomma: ben che vada tutto il caos di questi giorni (o mi date 10 miliardi o salta il Governo) nasconde una\u2026 Altro", "shared_text": "", "time": "2019-06-21 21:23:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156800191629915&id=113335124914", "link": null} +{"post_id": "10156799203719915", "text": "Emanuele Crestini era il Sindaco di Rocca di Papa. Oggi \u00e8 morto per le conseguenze di un\u2019esplosione avvenuta nel suo comune, presumibilmente dovuta a una fuga di gas. Anzich\u00e9 mettersi in salvo, come avrebbe potuto, da Sindaco \u00e8 rimasto a dare una mano. Purtroppo le ustioni e le ferite, alla fine, hanno avuto la meglio e oggi Emanuele ci ha\u2026 Altro lasciato. Il sindaco Crestini si \u00e8 comportato da eroe, scrivono i giornali. Io dico che si \u00e8 comportato da sindaco. E vorrei che tutti quelli che parlano male della politica ricordino ogni giorno l\u2019esempio di persone come lui. Ci sono migliaia di cittadine e cittadini - di qualunque colore politico, Crestini ad esempio era un sindaco \u201ccivico\u201d - che fanno bene il proprio lavoro servendo la propria comunit\u00e0. Emanuele lo ha fatto fino all\u2019estremo sacrificio. Buon viaggio Sindaco. E grazie per averci insegnato che cosa significhi fino in fondo l\u2019espressione \u201cprimo cittadino\u201d", "post_text": "Emanuele Crestini era il Sindaco di Rocca di Papa. Oggi \u00e8 morto per le conseguenze di un\u2019esplosione avvenuta nel suo comune, presumibilmente dovuta a una fuga di gas. Anzich\u00e9 mettersi in salvo, come avrebbe potuto, da Sindaco \u00e8 rimasto a dare una mano. Purtroppo le ustioni e le ferite, alla fine, hanno avuto la meglio e oggi Emanuele ci ha\u2026 Altro lasciato. Il sindaco Crestini si \u00e8 comportato da eroe, scrivono i giornali. Io dico che si \u00e8 comportato da sindaco. E vorrei che tutti quelli che parlano male della politica ricordino ogni giorno l\u2019esempio di persone come lui. Ci sono migliaia di cittadine e cittadini - di qualunque colore politico, Crestini ad esempio era un sindaco \u201ccivico\u201d - che fanno bene il proprio lavoro servendo la propria comunit\u00e0. Emanuele lo ha fatto fino all\u2019estremo sacrificio. Buon viaggio Sindaco. E grazie per averci insegnato che cosa significhi fino in fondo l\u2019espressione \u201cprimo cittadino\u201d", "shared_text": "", "time": "2019-06-21 12:37:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156799203719915&id=113335124914", "link": null} +{"post_id": "10156797624499915", "text": "Dunque doveva essere un anno bellissimo. E invece, ci dice l\u2019Istat, anche il PIL del secondo trimestre torner\u00e0 negativo. Se avete tempo date un occhio a questi numeri del professor Fortis (http://bit.ly/12mesiconilsegnomeno). I populisti hanno vinto con le fake news, ma saranno sconfitti dalla realt\u00e0.", "post_text": "Dunque doveva essere un anno bellissimo. E invece, ci dice l\u2019Istat, anche il PIL del secondo trimestre torner\u00e0 negativo. Se avete tempo date un occhio a questi numeri del professor Fortis (http://bit.ly/12mesiconilsegnomeno). I populisti hanno vinto con le fake news, ma saranno sconfitti dalla realt\u00e0.", "shared_text": "", "time": "2019-06-20 19:16:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156797624499915&id=113335124914", "link": "https://bit.ly/12mesiconilsegnomeno?fbclid=IwAR0Ygp3eTdujon11jmVD7CJlrSgKoOwmL0mgxqJHdBhEMIoFRCS3ALjhfZw"} +{"post_id": "10156795402344915", "text": "Oggi a Parigi per parlare di difesa europea e di nuovo ordine mondiale. Ho abbracciato un collega avversario politico, che per\u00f2 stimo molto. Guido Crosetto dimostra ogni giorno che si possono avere idee politiche diverse ma mantenere rispetto e amicizia", "post_text": "Oggi a Parigi per parlare di difesa europea e di nuovo ordine mondiale. Ho abbracciato un collega avversario politico, che per\u00f2 stimo molto. Guido Crosetto dimostra ogni giorno che si possono avere idee politiche diverse ma mantenere rispetto e amicizia", "shared_text": "", "time": "2019-06-19 20:49:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/65018977_10156795402289915_439950078703042560_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=TSVeeb8yNSQAQmQ-yertTfn2D9cgOrKPYbtUEMDVuNWefjS4BxHqX7xtg&_nc_ht=scontent-cdt1-1.xx&oh=19c15da470773ded07f8147af0fa293d&oe=5E791547", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156795402344915&id=113335124914", "link": null} +{"post_id": "10156794364114915", "text": "La cosa allucinante di queste ore \u00e8 che nelle stesse ore in cui Draghi aiuta l\u2019Europa (e dunque le aziende italiane) a competere con gli americani e i cinesi nel mondo, Salvini si schiera con Trump. Che attacca Draghi.\nOrmai \u00e8 il mondo alla rovescia: cari imprenditori veneti e lombardi non vi sentite presi in giro da questa Lega che votate? Draghi vi sta aiutando, Salvini vi sta boicottando.", "post_text": "La cosa allucinante di queste ore \u00e8 che nelle stesse ore in cui Draghi aiuta l\u2019Europa (e dunque le aziende italiane) a competere con gli americani e i cinesi nel mondo, Salvini si schiera con Trump. Che attacca Draghi.\nOrmai \u00e8 il mondo alla rovescia: cari imprenditori veneti e lombardi non vi sentite presi in giro da questa Lega che votate? Draghi vi sta aiutando, Salvini vi sta boicottando.", "shared_text": "", "time": "2019-06-19 10:32:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156794364114915&id=113335124914", "link": null} +{"post_id": "10156792865954915", "text": "Oggi a Pechino per parlare di educazione e cultura davanti a tremila ragazzi cinesi. Un euro in cultura, un euro in sicurezza: questo principio del nostro Governo richiama sempre grande attenzione ovunque. A testa alta nel mondo", "post_text": "Oggi a Pechino per parlare di educazione e cultura davanti a tremila ragazzi cinesi. Un euro in cultura, un euro in sicurezza: questo principio del nostro Governo richiama sempre grande attenzione ovunque. A testa alta nel mondo", "shared_text": "", "time": "2019-06-18 18:14:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/64391240_10156792865644915_1168882698295443456_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=-5BncF87uNYAQkPBwA5e3stOLRcDbPiH3HBntb7V37A2z_IgVbY84rlgg&_nc_ht=scontent-cdt1-1.xx&oh=b053c7f72933b2b02a1bc58347156053&oe=5E8329DD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156792865954915&id=113335124914", "link": null} +{"post_id": "10156789887259915", "text": "La mia risposta a Mario Monti e le differenze tra noi e il Governo Salvini-Di Maio. Numeri, fatti, dati: le chiacchiere stanno a zero.\nMATTEORENZI.IT\nLa differenza tra noi, Monti e Salvini - Matteo Renzi", "post_text": "La mia risposta a Mario Monti e le differenze tra noi e il Governo Salvini-Di Maio. Numeri, fatti, dati: le chiacchiere stanno a zero.", "shared_text": "MATTEORENZI.IT\nLa differenza tra noi, Monti e Salvini - Matteo Renzi", "time": "2019-06-17 08:44:42", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCJH5GmEsRjX0wP&w=476&h=249&url=https%3A%2F%2Fwww.matteorenzi.it%2Fwp-content%2Fuploads%2F2019%2F06%2F155502583-79d14679-07cf-4a11-89ee-57e86726aa1a.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQALRPyvbKmXeNdo", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156789887259915&id=113335124914", "link": "https://www.matteorenzi.it/differenza-tra-renzi-monti-salvini/?fbclid=IwAR1O5H8kKdsAlAm5GAISfn21QZbzReX2-Dr4xnGcnCv0vQMZbDZFxwxd3EY"} +{"post_id": "10156788423144915", "text": "Oggi seconda semifinale del calcio storico nel meraviglia di Santa Croce. Ricordate quando ne abbiamo parlato in #FirenzeSecondoMe?", "post_text": "Oggi seconda semifinale del calcio storico nel meraviglia di Santa Croce. Ricordate quando ne abbiamo parlato in #FirenzeSecondoMe?", "shared_text": "", "time": "2019-06-16 18:40:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156788423144915&id=113335124914", "link": null} +{"post_id": "10156787525104915", "text": "Oggi l\u2019ex premier Mario Monti ha scritto un lungo articolo sul Corriere della Sera per dire che la flessibilit\u00e0 ottenuta dal mio Governo \u00e8 stata un errore. I numeri, per carit\u00e0, facciamo parlare i numeri! Con l\u2019austerity di Monti l\u2019Italia \u00e8 andata al -2.3% di PIL, c\u2019erano 22 milioni di occupati, la pressione fiscale \u00e8 aumentata a cominciare\u2026 Altro dall\u2019IMU, il rapporto debito/PIL \u00e8 peggiorato di circa 15 punti percentuali. Con la nostra flessibilit\u00e0, siamo arrivati a +1.8%, gli occupati sono diventati 23 milioni, la pressione fiscale \u00e8 diminuita a cominciare da IMU e Irap, il rapporto debito/PIL \u00e8 rimasto stabile.\nMonti pontifica tutti i giorni sul Corriere e in TV ma non dimentichiamoci mai\u2026 Altro", "post_text": "Oggi l\u2019ex premier Mario Monti ha scritto un lungo articolo sul Corriere della Sera per dire che la flessibilit\u00e0 ottenuta dal mio Governo \u00e8 stata un errore. I numeri, per carit\u00e0, facciamo parlare i numeri! Con l\u2019austerity di Monti l\u2019Italia \u00e8 andata al -2.3% di PIL, c\u2019erano 22 milioni di occupati, la pressione fiscale \u00e8 aumentata a cominciare\u2026 Altro dall\u2019IMU, il rapporto debito/PIL \u00e8 peggiorato di circa 15 punti percentuali. Con la nostra flessibilit\u00e0, siamo arrivati a +1.8%, gli occupati sono diventati 23 milioni, la pressione fiscale \u00e8 diminuita a cominciare da IMU e Irap, il rapporto debito/PIL \u00e8 rimasto stabile.\nMonti pontifica tutti i giorni sul Corriere e in TV ma non dimentichiamoci mai\u2026 Altro", "shared_text": "", "time": "2019-06-16 11:25:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156787525104915&id=113335124914", "link": null} +{"post_id": "10156784909019915", "text": "Tutta la famiglia Renzi al completo per la staffetta a sostegno di Maria, dei bambini con sindrome di Down e dell\u2019Associazione Trisomia 21 #BuonSabato", "post_text": "Tutta la famiglia Renzi al completo per la staffetta a sostegno di Maria, dei bambini con sindrome di Down e dell\u2019Associazione Trisomia 21 #BuonSabato", "shared_text": "", "time": "2019-06-15 11:38:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/64240932_10156784908974915_6955905827446194176_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=kyYXpBrJC8gAQmg41bwcBK5L4O7RcdXOXrsCetJ9DqhCqMhbAM6zR6VRQ&_nc_ht=scontent-cdt1-1.xx&oh=d357f80d33c861204b19f75277d2071d&oe=5E490DC3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156784909019915&id=113335124914", "link": null} +{"post_id": "10156776405459915", "text": "Prendono i soldi che NOI avevamo messo per superammortamento e industria 4.0 e li danno ai comuni in predissesto. Tolgono i soldi agli imprenditori che vogliono rendere pi\u00f9 competitive le aziende e creare posti di lavoro per coprire i buchi degli amministratori incapaci. E hanno pure il coraggio di chiamarlo decreto crescita: io sono senza parole, loro sono senza vergogna", "post_text": "Prendono i soldi che NOI avevamo messo per superammortamento e industria 4.0 e li danno ai comuni in predissesto. Tolgono i soldi agli imprenditori che vogliono rendere pi\u00f9 competitive le aziende e creare posti di lavoro per coprire i buchi degli amministratori incapaci. E hanno pure il coraggio di chiamarlo decreto crescita: io sono senza parole, loro sono senza vergogna", "shared_text": "", "time": "2019-06-11 16:56:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156776405459915&id=113335124914", "link": null} +{"post_id": "10156774902894915", "text": "Arrivato in albergo rinuncio alla cena e mi alleno in vista della maratona di novembre. 14 km in 73 minuti. Si pu\u00f2 fare di pi\u00f9 ma stiamo riprendendo il ritmo giusto. Ora stretching e a nanna! Buona notte a tutti", "post_text": "Arrivato in albergo rinuncio alla cena e mi alleno in vista della maratona di novembre. 14 km in 73 minuti. Si pu\u00f2 fare di pi\u00f9 ma stiamo riprendendo il ritmo giusto. Ora stretching e a nanna! Buona notte a tutti", "shared_text": "", "time": "2019-06-10 23:41:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/62169474_10156774902834915_3271791831372791808_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=e6MGvWF1QJkAQmy2Lys7h0XsavrEULFt5Za7JR-ApEbrv_hsUaA_XbdsQ&_nc_ht=scontent-cdt1-1.xx&oh=8000056b19b17c9acc22c95b5433302f&oe=5E421508", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156774902894915&id=113335124914", "link": null} +{"post_id": "10156774419424915", "text": "Ha detto Di Battista che i minibot sono una cosa intelligente. Secondo lui dunque Draghi sbaglia. E noi dovremmo fidarci di Di Battista, genio incompreso dell\u2019economia mondiale\nSar\u00f2 antipopolare, ma \u00e8 l\u2019ora di finirla con la retorica dell\u2019uno vale uno, almeno in economia.\nDraghi ha ragione, Di Battista ha torto, i minibot sono una mega idiozia. Punto. Possiamo parlare di cose serie adesso?", "post_text": "Ha detto Di Battista che i minibot sono una cosa intelligente. Secondo lui dunque Draghi sbaglia. E noi dovremmo fidarci di Di Battista, genio incompreso dell\u2019economia mondiale\nSar\u00f2 antipopolare, ma \u00e8 l\u2019ora di finirla con la retorica dell\u2019uno vale uno, almeno in economia.\nDraghi ha ragione, Di Battista ha torto, i minibot sono una mega idiozia. Punto. Possiamo parlare di cose serie adesso?", "shared_text": "", "time": "2019-06-10 19:29:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156774419424915&id=113335124914", "link": null} +{"post_id": "10156771469574915", "text": "Le #RagazzeMondiali iniziano alla grande. Bellissima la gioia last-minute! #ForzaAzzurre", "post_text": "Le #RagazzeMondiali iniziano alla grande. Bellissima la gioia last-minute! #ForzaAzzurre", "shared_text": "", "time": "2019-06-09 15:03:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/62070569_10156771469469915_936344527415803904_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=2lQXnAb0NKIAQkwaXOIcmErck_cD6rnVCfn86cEN6ocNNTWQLWockotZg&_nc_ht=scontent-cdt1-1.xx&oh=d29a79601724fd32679bbad8f709a7e7&oe=5E79C646", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156771469574915&id=113335124914", "link": null} +{"post_id": "2350423385282383", "text": "In diretta da Bologna per la \"Repubblica delle Idee\", intervistato da Stefano Cappellini", "post_text": "In diretta da Bologna per la \"Repubblica delle Idee\", intervistato da Stefano Cappellini", "shared_text": "", "time": "2019-06-09 10:48:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2350423385282383&id=113335124914", "link": null} +{"post_id": "10156769405259915", "text": "Quando andavo a vedere mia zia giocare in serie B (bomber strepitosa, la Rudy!) il calcio femminile sembrava figlio di un Dio minore. Una generazione dopo, finalmente tutto \u00e8 cambiato. Queste atlete ci rendono\u2026 Altro orgogliosi di essere ITALIANI \ud83c\uddee\ud83c\uddf9. Dimostrano che il calcio femminile non \u00e8 pi\u00f9 figlio di un Dio minore. Basta con le battutine stupide, basta con gli stereotipi: queste ragazze sono atlete meravigliose. E noi siamo felici di fare il tifo per loro.\nForza Azzurre, forza #RagazzeMondiali!", "post_text": "Quando andavo a vedere mia zia giocare in serie B (bomber strepitosa, la Rudy!) il calcio femminile sembrava figlio di un Dio minore. Una generazione dopo, finalmente tutto \u00e8 cambiato. Queste atlete ci rendono\u2026 Altro orgogliosi di essere ITALIANI \ud83c\uddee\ud83c\uddf9. Dimostrano che il calcio femminile non \u00e8 pi\u00f9 figlio di un Dio minore. Basta con le battutine stupide, basta con gli stereotipi: queste ragazze sono atlete meravigliose. E noi siamo felici di fare il tifo per loro.\nForza Azzurre, forza #RagazzeMondiali!", "shared_text": "", "time": "2019-06-08 18:26:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/62075085_10156769405209915_3515735373806305280_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=K5nueFLWZkUAQmB76pdeaCru9wi-eZy2BWcoTfvd2ScCYpdfY-3npU7Kg&_nc_ht=scontent-cdt1-1.xx&oh=ffdf2bfc607194c4cf6bfb0ed3115b3a&oe=5E7F67B6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156769405259915&id=113335124914", "link": null} +{"post_id": "10156758857674915", "text": "Il mondo discute di Brexit, di rapporti Cina/USA, di innovazione tecnologica, di cambiamento climatico. L\u2019Italia invece \u00e8 ferma da giorni per la guerra tra Salvini e Di Maio sugli emendamenti dello sblocca cantieri.\nIl mondo discute di come controllare l\u2019intelligenza artificiale, l\u2019Italia invece discute di come controllare Toninelli.\nLa tragedia, o se volete la farsa, \u00e8 tutta qui.", "post_text": "Il mondo discute di Brexit, di rapporti Cina/USA, di innovazione tecnologica, di cambiamento climatico. L\u2019Italia invece \u00e8 ferma da giorni per la guerra tra Salvini e Di Maio sugli emendamenti dello sblocca cantieri.\nIl mondo discute di come controllare l\u2019intelligenza artificiale, l\u2019Italia invece discute di come controllare Toninelli.\nLa tragedia, o se volete la farsa, \u00e8 tutta qui.", "shared_text": "", "time": "2019-06-04 13:47:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156758857674915&id=113335124914", "link": null} +{"post_id": "10156756895479915", "text": "Quando un Premier parla alla Nazione deve dire qualcosa di importante. O pi\u00f9 semplicemente dire qualcosa. Un leader ha il dovere di indicare una strada, di avere coraggio, di non essere un fantoccio. La conferenza stampa di Conte segna oggi una figuraccia per le Istituzioni e per Palazzo Chigi. Mai nella storia repubblicana si era palesata cos\u00ec evidente la figura di un premier che non decide, non conta, non governa. Oggi \u00e8 un giorno triste per le Istituzioni italiane prima che per questa maggioranza.", "post_text": "Quando un Premier parla alla Nazione deve dire qualcosa di importante. O pi\u00f9 semplicemente dire qualcosa. Un leader ha il dovere di indicare una strada, di avere coraggio, di non essere un fantoccio. La conferenza stampa di Conte segna oggi una figuraccia per le Istituzioni e per Palazzo Chigi. Mai nella storia repubblicana si era palesata cos\u00ec evidente la figura di un premier che non decide, non conta, non governa. Oggi \u00e8 un giorno triste per le Istituzioni italiane prima che per questa maggioranza.", "shared_text": "", "time": "2019-06-03 18:49:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156756895479915&id=113335124914", "link": null} +{"post_id": "10156756664419915", "text": "Si \u00e8 fatta attendere ma finalmente \u00e8 arrivata la Primavera. Continuo l\u2019allenamento per la Maratona, ma finalmente col sole in faccia. Buona settimana, amici", "post_text": "Si \u00e8 fatta attendere ma finalmente \u00e8 arrivata la Primavera. Continuo l\u2019allenamento per la Maratona, ma finalmente col sole in faccia. Buona settimana, amici", "shared_text": "", "time": "2019-06-03 16:46:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/61933559_10156756664389915_5071195597239746560_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=xy_dPZa7a2QAQkXpXrFhv2SlJN57P4ZC2MEZk1qyKY4UR_8WxoLqnPuaw&_nc_ht=scontent-cdt1-1.xx&oh=eb6e0414c7cd622c7c3e3d64cd2f1baf&oe=5E7FFE63", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156756664419915&id=113335124914", "link": null} +{"post_id": "10156754301459915", "text": "Bellissima iniziativa di Cagliari e Fiorentina, in Terra Santa, nel nome di Davide Astori. Con la famiglia del capitano viola decisiva per scrivere una pagina di solidariet\u00e0. \u00c8 bello ricordare concretamente un grande atleta, un grande uomo #DA13", "post_text": "Bellissima iniziativa di Cagliari e Fiorentina, in Terra Santa, nel nome di Davide Astori. Con la famiglia del capitano viola decisiva per scrivere una pagina di solidariet\u00e0. \u00c8 bello ricordare concretamente un grande atleta, un grande uomo #DA13", "shared_text": "", "time": "2019-06-02 17:08:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/61789448_10156754300949915_591017594765443072_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=BOlCPi4xHMMAQnWZK038iCtbrve-R0vmdHtuTYgZGwg31c4_3pbwQPeFA&_nc_ht=scontent-cdt1-1.xx&oh=cef530695943cf5b60302f1ccf55e0e0&oe=5E4307E1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156754301459915&id=113335124914", "link": null} +{"post_id": "10156753713059915", "text": "Viva l\u2019Italia, viva la Repubblica. E almeno per oggi nessuna polemica: orgogliosi di essere italiani", "post_text": "Viva l\u2019Italia, viva la Repubblica. E almeno per oggi nessuna polemica: orgogliosi di essere italiani", "shared_text": "", "time": "2019-06-02 11:15:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/61651040_10156753713024915_8864128718675640320_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=2DcF8Wiqg5YAQnAdJBhEMfaXygadmGC0_KyRpLQn89EU8HZcspAH_jGZg&_nc_ht=scontent-cdt1-1.xx&oh=5922bf4a47c3f2f85bcb87abcad87110&oe=5E8826C0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156753713059915&id=113335124914", "link": null} +{"post_id": "10156752084449915", "text": "", "post_text": "", "shared_text": "", "time": "2019-06-01 18:54:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/62070090_10156752083034915_2177271569775067136_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=PeAs1JKcT4MAQnVnpUEg5H9tsEQvZ-Fpbi9UEdyVIw4jwVueJOmBi1oaQ&_nc_ht=scontent-cdt1-1.xx&oh=a04ca7157e091f01c823539f3886fc9b&oe=5E7BC1DB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10156749078974915", "text": "I dati di ISTAT dicono che oggi abbiamo il dato peggiore dal 2013. Mentre quei due continuano a litigare, il Paese smette di crescere. Vola lo spread, pagano gli italiani #cambiamento", "post_text": "I dati di ISTAT dicono che oggi abbiamo il dato peggiore dal 2013. Mentre quei due continuano a litigare, il Paese smette di crescere. Vola lo spread, pagano gli italiani #cambiamento", "shared_text": "", "time": "2019-05-31 12:35:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/61254012_10156749078894915_5539735675504427008_n.png.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=blZvzPKSeZIAQmvDblils_-Jb-zdiwMriOoL99Z1aZcHQOQFH4CHny8Iw&_nc_ht=scontent-cdt1-1.xx&oh=e0a6ab89329aa230821bb7c59134c28f&oe=5E4DEB65", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156749078974915&id=113335124914", "link": null} +{"post_id": "413936542763778", "text": "In diretta da Palazzo Giustiniani", "post_text": "In diretta da Palazzo Giustiniani", "shared_text": "", "time": "2019-05-28 17:02:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=413936542763778&id=113335124914", "link": null} +{"post_id": "10156741956059915", "text": "Alle 17 in diretta Facebook discutiamo insieme di come sono andate le elezioni europee ed amministrative. E di cosa facciamo da domani. Vi aspetto", "post_text": "Alle 17 in diretta Facebook discutiamo insieme di come sono andate le elezioni europee ed amministrative. E di cosa facciamo da domani. Vi aspetto", "shared_text": "", "time": "2019-05-28 11:52:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/61493956_10156741956029915_4846953224411807744_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=dJ1VTJ4wWuQAQlG6K2hogNQ2H2bQpNX3jFgN7EJVszeU8mPuUThXtyBsw&_nc_ht=scontent-cdt1-1.xx&oh=e842ec26235c22f137aa11a945801ff9&oe=5E86843A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156741956059915&id=113335124914", "link": null} +{"post_id": "10156738851504915", "text": "Domani commenteremo i risultati elettorali. Intanto stanotte a Firenze ricordiamo la strage mafiosa dei Georgofili. Ne abbiamo parlato anche nel documentario, ricordate? #PerNonDimenticare", "post_text": "Domani commenteremo i risultati elettorali. Intanto stanotte a Firenze ricordiamo la strage mafiosa dei Georgofili. Ne abbiamo parlato anche nel documentario, ricordate? #PerNonDimenticare", "shared_text": "", "time": "2019-05-27 00:15:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156738851504915&id=113335124914", "link": null} +{"post_id": "10156737930959915", "text": "Vittorio Zucconi \u00e8 stato un maestro di giornalismo e soprattutto una persona seria. Per questo mancher\u00e0 a noi, ma anche a chi lo ha criticato\n#RiP", "post_text": "Vittorio Zucconi \u00e8 stato un maestro di giornalismo e soprattutto una persona seria. Per questo mancher\u00e0 a noi, ma anche a chi lo ha criticato\n#RiP", "shared_text": "", "time": "2019-05-26 16:48:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156737930959915&id=113335124914", "link": null} +{"post_id": "10156737333049915", "text": "Buon voto a tutti, soprattutto a quei nati nel 2000 e nel 2001 che votano per la prima volta. \u00c8 un\u2019emozione profonda vedervi andare ai seggi, emozione che quest\u2019anno vive anche la mia famiglia. Con il Vostro gesto riaffermate e tramandate il valore bellissimo della democrazia, grazie!", "post_text": "Buon voto a tutti, soprattutto a quei nati nel 2000 e nel 2001 che votano per la prima volta. \u00c8 un\u2019emozione profonda vedervi andare ai seggi, emozione che quest\u2019anno vive anche la mia famiglia. Con il Vostro gesto riaffermate e tramandate il valore bellissimo della democrazia, grazie!", "shared_text": "", "time": "2019-05-26 10:35:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156737333049915&id=113335124914", "link": null} +{"post_id": "10156735385059915", "text": "Matteo Salvini, ministro dell\u2019Interno, dovrebbe dare il buon esempio rispettando il silenzio elettorale. Invece sta violando vergognosamente le regole che dovrebbe per primo rispettare. Non utilizzo il suo\u2026 Altro stesso metodo e non faccio campagna elettorale. Mi limito a ricordare le figuracce che a Strasburgo l\u2019Italia ha fatto per colpa di parlamentari europei assenteisti come lui. Guardare per credere", "post_text": "Matteo Salvini, ministro dell\u2019Interno, dovrebbe dare il buon esempio rispettando il silenzio elettorale. Invece sta violando vergognosamente le regole che dovrebbe per primo rispettare. Non utilizzo il suo\u2026 Altro stesso metodo e non faccio campagna elettorale. Mi limito a ricordare le figuracce che a Strasburgo l\u2019Italia ha fatto per colpa di parlamentari europei assenteisti come lui. Guardare per credere", "shared_text": "", "time": "2019-05-25 15:24:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=333983017264986&id=113335124914", "link": null} +{"post_id": "10156732407509915", "text": "Hanno vinto un referendum nel 2016 dicendo bugie e inquinando la campagna con le fake news. Dovevano rivoluzionare tutto e tre anni dopo il Paese \u00e8 fermo, in crisi, senza futuro. Puoi vincere un referendum con le menzogne ma poi il conto lo paga soprattutto la povera gente. Naturalmente sto parlando del Regno Unito #May", "post_text": "Hanno vinto un referendum nel 2016 dicendo bugie e inquinando la campagna con le fake news. Dovevano rivoluzionare tutto e tre anni dopo il Paese \u00e8 fermo, in crisi, senza futuro. Puoi vincere un referendum con le menzogne ma poi il conto lo paga soprattutto la povera gente. Naturalmente sto parlando del Regno Unito #May", "shared_text": "", "time": "2019-05-24 13:11:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156732407509915&id=113335124914", "link": null} +{"post_id": "10156730463014915", "text": "Come ultima frase della campagna elettorale Di Maio ha scelto di dire: \u201cper chi sta al governo pi\u00f9 lavoro e meno stronzate\u201d. In pratica ha annunciato che si dimette?", "post_text": "Come ultima frase della campagna elettorale Di Maio ha scelto di dire: \u201cper chi sta al governo pi\u00f9 lavoro e meno stronzate\u201d. In pratica ha annunciato che si dimette?", "shared_text": "", "time": "2019-05-23 17:07:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156730463014915&id=113335124914", "link": null} +{"post_id": "10156727849039915", "text": "La mia intervista di oggi al Direttore del Quotidiano Nazionale Michele Brambilla. Graditi i commenti\nMATTEORENZI.IT\nNo ad accordi coi grillini. Si vince al centro, non con gli estremisti. Intervista a QN - Matteo Renzi", "post_text": "La mia intervista di oggi al Direttore del Quotidiano Nazionale Michele Brambilla. Graditi i commenti", "shared_text": "MATTEORENZI.IT\nNo ad accordi coi grillini. Si vince al centro, non con gli estremisti. Intervista a QN - Matteo Renzi", "time": "2019-05-22 13:18:04", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAbn9yI2wEAtlkq&w=476&h=249&url=https%3A%2F%2Fwww.matteorenzi.it%2Fwp-content%2Fuploads%2F2019%2F05%2Frenzi-milano.jpg&cfs=1&jq=75&sx=3&sy=0&sw=1495&sh=782&ext=jpg&_nc_hash=AQAWJ7Td12bYeuwY", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156727849039915&id=113335124914", "link": "https://www.matteorenzi.it/no-ad-accordi-coi-grillini-si-vince-al-centro-non-con-gli-estremisti/?fbclid=IwAR0eEXWmd9jxaGUw9bSFLjBaNY5Hs7o6TzflCaxv0b_4B2rFWQ-wMB0qjZs"} +{"post_id": "10156725212104915", "text": "Quanto sono fiero della scelta di Apple di investire a Napoli! E quanto mi sembrano lontane le polemiche di allora. Il sud \u00e8 terra privilegiata per far crescere innovatori digitali e nuovi professionisti. Altro che reddito di cittadinanza, mettiamoci al lavoro. E a studiare!", "post_text": "Quanto sono fiero della scelta di Apple di investire a Napoli! E quanto mi sembrano lontane le polemiche di allora. Il sud \u00e8 terra privilegiata per far crescere innovatori digitali e nuovi professionisti. Altro che reddito di cittadinanza, mettiamoci al lavoro. E a studiare!", "shared_text": "", "time": "2019-05-21 11:58:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/60557181_10156725212069915_4260571887928606720_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=54_JbUBoJJsAQmOzTW8Y3JALNWztQvbbrqhZ4hH9gwrjBJ2KqTZhfPPEQ&_nc_ht=scontent-cdt1-1.xx&oh=fd62a65266e4ef92f3bde8118f584a68&oe=5E469C72", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156725212104915&id=113335124914", "link": null} +{"post_id": "10156724921294915", "text": "\"Quando ce la fai sono tutti con te, quando perdi li hai tutti contro. In mezzo non c'\u00e8 niente\".\n#NikiLauda, rip", "post_text": "\"Quando ce la fai sono tutti con te, quando perdi li hai tutti contro. In mezzo non c'\u00e8 niente\".\n#NikiLauda, rip", "shared_text": "", "time": "2019-05-21 08:28:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156724921294915&id=113335124914", "link": null} +{"post_id": "287335095551950", "text": "In diretta da Milano con Carlo Calenda e Anna Scavuzzo, Irene Tinagli, Caterina Avanza", "post_text": "In diretta da Milano con Carlo Calenda e Anna Scavuzzo, Irene Tinagli, Caterina Avanza", "shared_text": "", "time": "2019-05-20 20:49:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=287335095551950&id=113335124914", "link": null} +{"post_id": "10156723539664915", "text": "Grazie a chi \u00e8 gi\u00e0 in coda a Milano per l\u2019incontro di stasera con Carlo Calenda e Anna Scavuzzo, Irene Tinagli, Caterina Avanza. Io in treno, sto arrivando, impaziente di rivedere tanti amici. Tra poco, a partire dalle 2030, la diretta Facebook. A dopo", "post_text": "Grazie a chi \u00e8 gi\u00e0 in coda a Milano per l\u2019incontro di stasera con Carlo Calenda e Anna Scavuzzo, Irene Tinagli, Caterina Avanza. Io in treno, sto arrivando, impaziente di rivedere tanti amici. Tra poco, a partire dalle 2030, la diretta Facebook. A dopo", "shared_text": "", "time": "2019-05-20 19:26:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/60793320_10156723539644915_4039633324203835392_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Y6kUrXYPq8YAQkZbOWGMa3FQpzGBxEfrXdDrO6yF6EyxwSm9I0OrP8arA&_nc_ht=scontent-cdt1-1.xx&oh=8a12e6b4d1406d3012e30c93a1410d26&oe=5E4F3F5E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156723539664915&id=113335124914", "link": null} +{"post_id": "10156716215239915", "text": "\u201cSei come Renzi\u201d \u00e8 la frase pi\u00f9 gentile che Di Maio e Salvini usano reciprocamente per insultarsi. Sono lieto di essere sempre nei loro pensieri, anche se da italiano preferirei che pensassero alle cose da fare. Tuttavia ad onor del vero vorrei verbalizzare che per essere \u201ccome Renzi\u201d bisogna aver creato pi\u00f9 di un milione di posti di lavoro (dati\u2026 Altro ISTAT); abbassato IMU, Irap costo del lavoro e Ires; aumentato salari a dieci milioni di persone con gli 80\u20ac; preso un Paese con il PIL a -1.7 e riportato a pi\u00f9 1.7; dato pi\u00f9 diritti con le leggi su unioni civili, dopo di noi, terzo settore, autismo, caporalato, cooperazione internazionale; fatto un Governo con met\u00e0 donne; aumentato i fondi per la\u2026 Altro", "post_text": "\u201cSei come Renzi\u201d \u00e8 la frase pi\u00f9 gentile che Di Maio e Salvini usano reciprocamente per insultarsi. Sono lieto di essere sempre nei loro pensieri, anche se da italiano preferirei che pensassero alle cose da fare. Tuttavia ad onor del vero vorrei verbalizzare che per essere \u201ccome Renzi\u201d bisogna aver creato pi\u00f9 di un milione di posti di lavoro (dati\u2026 Altro ISTAT); abbassato IMU, Irap costo del lavoro e Ires; aumentato salari a dieci milioni di persone con gli 80\u20ac; preso un Paese con il PIL a -1.7 e riportato a pi\u00f9 1.7; dato pi\u00f9 diritti con le leggi su unioni civili, dopo di noi, terzo settore, autismo, caporalato, cooperazione internazionale; fatto un Governo con met\u00e0 donne; aumentato i fondi per la\u2026 Altro", "shared_text": "", "time": "2019-05-17 18:59:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156716215239915&id=113335124914", "link": null} +{"post_id": "10156715657214915", "text": "Oggi i quotidiani parlano del contributo di 100 mila euro da parte di una azienda leader nella produzione di sigarette elettroniche, per la campagna di quei duri e puri della Lega nord.\nVi ricorda qualcosa?\u2026 Altro Provate a rivedere il video del 28 novembre qua sotto: stavamo votando il decreto fiscale, quando, a sorpresa, compare un bel condono alle aziende che producono sigarette elettroniche pari a 177 milioni di euro. Gi\u00e0 questo governo di condoni ne ha fatti anche troppi direi, ma qui eravamo di fronte a una vera e propria marchetta. Di 177 milioni di euro. Beffa nella beffa: avete per caso visto un voto contrario a quell'emendamento da parte dei 5 Stelle paladini dell'onest\u00e0? No, tutti zitti, tutti favorevoli. Qualcuno ci butter\u00e0 prima o poi un occhio? La chiamavano #Onest\u00e0", "post_text": "Oggi i quotidiani parlano del contributo di 100 mila euro da parte di una azienda leader nella produzione di sigarette elettroniche, per la campagna di quei duri e puri della Lega nord.\nVi ricorda qualcosa?\u2026 Altro Provate a rivedere il video del 28 novembre qua sotto: stavamo votando il decreto fiscale, quando, a sorpresa, compare un bel condono alle aziende che producono sigarette elettroniche pari a 177 milioni di euro. Gi\u00e0 questo governo di condoni ne ha fatti anche troppi direi, ma qui eravamo di fronte a una vera e propria marchetta. Di 177 milioni di euro. Beffa nella beffa: avete per caso visto un voto contrario a quell'emendamento da parte dei 5 Stelle paladini dell'onest\u00e0? No, tutti zitti, tutti favorevoli. Qualcuno ci butter\u00e0 prima o poi un occhio? La chiamavano #Onest\u00e0", "shared_text": "", "time": "2019-05-17 14:13:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156715657214915&id=113335124914", "link": null} +{"post_id": "10156711441734915", "text": "Oggi il presunto premier Conte mette le mani avanti: \u201cnon sar\u00e0 facile evitare l\u2019aumento IVA\u201d. Scusa: ma per cosa ti paghiamo allora? In Italia l\u2019IVA non aumenta dall\u2019ottobre 2013 grazie al lavoro dei nostri governi. E adesso che \u00e8 cambiato? L\u2019aumento dell\u2019IVA sarebbe uno schiaffo ai cittadini, specie a quelli pi\u00f9 poveri.", "post_text": "Oggi il presunto premier Conte mette le mani avanti: \u201cnon sar\u00e0 facile evitare l\u2019aumento IVA\u201d. Scusa: ma per cosa ti paghiamo allora? In Italia l\u2019IVA non aumenta dall\u2019ottobre 2013 grazie al lavoro dei nostri governi. E adesso che \u00e8 cambiato? L\u2019aumento dell\u2019IVA sarebbe uno schiaffo ai cittadini, specie a quelli pi\u00f9 poveri.", "shared_text": "", "time": "2019-05-15 17:37:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156711441734915&id=113335124914", "link": null} +{"post_id": "10156711121034915", "text": "Salvini vuole rimuovere gli striscioni? E questa \u00e8 la risposta di Firenze! A chi sparge odio, rispondiamo con l\u2019ironia. Questa \u00e8 Firenze\n#PortatelaLunga", "post_text": "Salvini vuole rimuovere gli striscioni? E questa \u00e8 la risposta di Firenze! A chi sparge odio, rispondiamo con l\u2019ironia. Questa \u00e8 Firenze\n#PortatelaLunga", "shared_text": "", "time": "2019-05-15 14:22:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/60261673_10156711120839915_3092060931937533952_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=0UekYwOWNU0AQkA-fvhglJRuO2nj3wzvujN_ndIKg8fKA_ztvvt7b-IHA&_nc_ht=scontent-cdt1-1.xx&oh=e1dda6168efaff8d53d385bf6a949585&oe=5E82FADF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156711121034915&id=113335124914", "link": null} +{"post_id": "10156710695259915", "text": "Mentre l\u2019Italia arranca, costretta alla polemica quotidiana da un Governo che litiga, molti Paesi corrono. Tra questi la Corea del Sud, una terra piena di occasioni e opportunit\u00e0, orgogliosa della tradizione ma\u2026 Altro pronta a scommettere sul futuro e sull\u2019innovazione con aziende leader a livello mondiale. Intelligenza artificiale, robot, uso dei Big Data, 5G: abbiamo tante sfide davanti a noi. L\u2019Italia non pu\u00f2 restare indietro. Un abbraccio da Seul, amici", "post_text": "Mentre l\u2019Italia arranca, costretta alla polemica quotidiana da un Governo che litiga, molti Paesi corrono. Tra questi la Corea del Sud, una terra piena di occasioni e opportunit\u00e0, orgogliosa della tradizione ma\u2026 Altro pronta a scommettere sul futuro e sull\u2019innovazione con aziende leader a livello mondiale. Intelligenza artificiale, robot, uso dei Big Data, 5G: abbiamo tante sfide davanti a noi. L\u2019Italia non pu\u00f2 restare indietro. Un abbraccio da Seul, amici", "shared_text": "", "time": "2019-05-15 08:35:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/60251237_10156710695009915_3616948786397446144_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=2DksQCHLeHkAQlfJLS1tEEHvt2GEbeBG9Vf_t2BZkUAjmc1r-526n-Q0A&_nc_ht=scontent-cdt1-1.xx&oh=1fc2a7a78f537bd27a93936450196e03&oe=5E828227", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156710695259915&id=113335124914", "link": null} +{"post_id": "10156709338264915", "text": "I due tardoadolescenti che guidano questo Paese continuano a litigare tutti i giorni. Oggi lo Spread risale oltre quota 280. E loro insistono! Tanto il conto lo pagano gli italiani.", "post_text": "I due tardoadolescenti che guidano questo Paese continuano a litigare tutti i giorni. Oggi lo Spread risale oltre quota 280. E loro insistono! Tanto il conto lo pagano gli italiani.", "shared_text": "", "time": "2019-05-14 17:42:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156709338264915&id=113335124914", "link": null} +{"post_id": "10156707282174915", "text": "La cultura dell\u2019odio \u00e8 un boomerang. Salvini che strappa i telefonini e gli striscioni, Di Maio che definisce assassino chi non la pensa come lui: entrambi squallidi. Vanno a Taranto e fanno le zone rosse, vanno in piazza e insultano chi manifesta. Alla fine la realt\u00e0 si prende la rivincita e il tempo presenta il conto a questi ultras della\u2026 Altro politica. Si governa con le leggi e con gli esempi, non con gli insulti. E il loro nervosismo deriva dalla mancanza dei risultati economici. Con noi eravamo a pi\u00f9 1.7%, con loro siamo tornati a quota 0.1%. Prepariamoci: il palloncino populista sta per scoppiare", "post_text": "La cultura dell\u2019odio \u00e8 un boomerang. Salvini che strappa i telefonini e gli striscioni, Di Maio che definisce assassino chi non la pensa come lui: entrambi squallidi. Vanno a Taranto e fanno le zone rosse, vanno in piazza e insultano chi manifesta. Alla fine la realt\u00e0 si prende la rivincita e il tempo presenta il conto a questi ultras della\u2026 Altro politica. Si governa con le leggi e con gli esempi, non con gli insulti. E il loro nervosismo deriva dalla mancanza dei risultati economici. Con noi eravamo a pi\u00f9 1.7%, con loro siamo tornati a quota 0.1%. Prepariamoci: il palloncino populista sta per scoppiare", "shared_text": "", "time": "2019-05-13 18:39:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156707282174915&id=113335124914", "link": null} +{"post_id": "10156704742744915", "text": "Qualcosa si muove, finalmente. Qualche anno fa denunciai pubblicamente le pagine Facebook che rilanciavano fake news. Oggi, dopo mesi, dopo il referendum e le elezioni, finalmente pagine con milioni di visualizzazioni per notizie false e diffamanti sono state CHIUSE. Un primo passo. Ma non basta e noi continueremo a combattere, con i comitati\u2026 Altro civici e con l\u2019impegno di tanti cittadini di buona volont\u00e0.\nLa strategia \u00e8 chiara: portare in giudizio chi diffama, segnalare a Facebook chi diffonde FakeNews, fermare il fango. Nei prossimi mesi ci saranno novit\u00e0, vedrete: il tempo \u00e8 galantuomo davvero.\nUna domanda intanto. Stamattina in una intervista ho detto che per me Salvini ha utilizzato i 49\u2026 Altro", "post_text": "Qualcosa si muove, finalmente. Qualche anno fa denunciai pubblicamente le pagine Facebook che rilanciavano fake news. Oggi, dopo mesi, dopo il referendum e le elezioni, finalmente pagine con milioni di visualizzazioni per notizie false e diffamanti sono state CHIUSE. Un primo passo. Ma non basta e noi continueremo a combattere, con i comitati\u2026 Altro civici e con l\u2019impegno di tanti cittadini di buona volont\u00e0.\nLa strategia \u00e8 chiara: portare in giudizio chi diffama, segnalare a Facebook chi diffonde FakeNews, fermare il fango. Nei prossimi mesi ci saranno novit\u00e0, vedrete: il tempo \u00e8 galantuomo davvero.\nUna domanda intanto. Stamattina in una intervista ho detto che per me Salvini ha utilizzato i 49\u2026 Altro", "shared_text": "", "time": "2019-05-12 17:00:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156704742744915&id=113335124914", "link": null} +{"post_id": "10156701748734915", "text": "Da oggi sei maggiorenne, un uomo con tutti i diritti e soprattutto tutti i doveri, cittadino a pieno titolo. Ma per noi rimarrai sempre anche il bambino che ci ha rivoluzionato la vita, un mix esplosivo di\u2026 Altro energia e sensibilit\u00e0, il fratello maggiore che ha imparato a sognare. E a crederci.\nBuon 18\u00b0 compleanno, Francesco. Buona strada", "post_text": "Da oggi sei maggiorenne, un uomo con tutti i diritti e soprattutto tutti i doveri, cittadino a pieno titolo. Ma per noi rimarrai sempre anche il bambino che ci ha rivoluzionato la vita, un mix esplosivo di\u2026 Altro energia e sensibilit\u00e0, il fratello maggiore che ha imparato a sognare. E a crederci.\nBuon 18\u00b0 compleanno, Francesco. Buona strada", "shared_text": "", "time": "2019-05-11 09:55:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/60333195_10156701748699915_5789528555373199360_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=PX-NPlF2Pb8AQmeO6VnHqTgHZos-jluJ4MHtPXsIU8b6nC8YU1ETc7-rw&_nc_ht=scontent-cdt1-1.xx&oh=8bc3c2de32f3d9410439dc4f6f631856&oe=5E7E23E6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156701748734915&id=113335124914", "link": null} +{"post_id": "10156697820949915", "text": "Un Sindaco che rinuncia all\u2019indennit\u00e0 per pagare borse di studio sulla legalit\u00e0 ai giovani: accade a Ercolano dove Ciro Buonajuto non solo \u00e8 un bravissimo primo cittadino ma anche un esempio per gli studenti.\u2026 Altro In una terra ferita dalla camorra, Ciro sta facendo un lavoro bellissimo. Per me \u00e8 stata una grande gioia condividere l\u2019entusiasmo delle scuole e l\u2019orgoglio delle istituzioni di questo territorio. Ci sono anche delle storie bellissime al sud: vanno valorizzate di pi\u00f9. Grazie Ciro, grazie Ercolano", "post_text": "Un Sindaco che rinuncia all\u2019indennit\u00e0 per pagare borse di studio sulla legalit\u00e0 ai giovani: accade a Ercolano dove Ciro Buonajuto non solo \u00e8 un bravissimo primo cittadino ma anche un esempio per gli studenti.\u2026 Altro In una terra ferita dalla camorra, Ciro sta facendo un lavoro bellissimo. Per me \u00e8 stata una grande gioia condividere l\u2019entusiasmo delle scuole e l\u2019orgoglio delle istituzioni di questo territorio. Ci sono anche delle storie bellissime al sud: vanno valorizzate di pi\u00f9. Grazie Ciro, grazie Ercolano", "shared_text": "", "time": "2019-05-09 16:21:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2344356659112323&id=113335124914", "link": null} +{"post_id": "2345099422434973", "text": "In diretta da Ercolano con il Sindaco Ciro Buonajuto", "post_text": "In diretta da Ercolano con il Sindaco Ciro Buonajuto", "shared_text": "", "time": "2019-05-09 10:34:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2345099422434973&id=113335124914", "link": null} +{"post_id": "10156696073264915", "text": "Oggi in Senato \u00e8 arrivata la richiesta di discutere la legge costituzionale proposta dai Cinque Stelle per l\u2019abolizione del CNEL. S\u00ec, proprio del CNEL. I Cinque Stelle sono cos\u00ec: prima ti insultano, poi ti copiano (male!).\nImmagino che adesso i grandi custodi della democrazia che si sono schierati contro il nostro referendum del 2016, tutti coloro\u2026 Altro che sono stati in servizio permanente \u201ccontro la deriva autoritaria e i danni alle istituzioni procurati dal renzismo\u201d, possano svegliarsi dal letargo di questi mesi e rassicurarci sul fatto che sono vivi e stanno bene. In questi mesi infatti sono stati silenziosi su tutto, dalle sparate dei vicepremier fino all\u2019umiliazione del Parlamento sulla legge di Bilancio: evidentemente il loro problema era solo l\u2019abolizione del CNEL. Che dite: i paladini della Costituzione torneranno finalmente a farsi sentire?", "post_text": "Oggi in Senato \u00e8 arrivata la richiesta di discutere la legge costituzionale proposta dai Cinque Stelle per l\u2019abolizione del CNEL. S\u00ec, proprio del CNEL. I Cinque Stelle sono cos\u00ec: prima ti insultano, poi ti copiano (male!).\nImmagino che adesso i grandi custodi della democrazia che si sono schierati contro il nostro referendum del 2016, tutti coloro\u2026 Altro che sono stati in servizio permanente \u201ccontro la deriva autoritaria e i danni alle istituzioni procurati dal renzismo\u201d, possano svegliarsi dal letargo di questi mesi e rassicurarci sul fatto che sono vivi e stanno bene. In questi mesi infatti sono stati silenziosi su tutto, dalle sparate dei vicepremier fino all\u2019umiliazione del Parlamento sulla legge di Bilancio: evidentemente il loro problema era solo l\u2019abolizione del CNEL. Che dite: i paladini della Costituzione torneranno finalmente a farsi sentire?", "shared_text": "", "time": "2019-05-08 19:27:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156696073264915&id=113335124914", "link": null} +{"post_id": "10156695325049915", "text": "Per capire come sono apocalittici e avventati certi giudizi: una settimana fa Messi era osannato da tutta la stampa mondiale come il Giocatore pi\u00f9 grande della storia del calcio, insieme a Pel\u00e8. Gli stessi commentatori, proprio gli stessi, oggi lo massacrano senza piet\u00e0 dopo l\u2019incredibile sconfittta del Barcellona contro il Liverpool. La verit\u00e0 \u00e8\u2026 Altro che nel calcio, come in politica, i giudizi affrettati lasciano il tempo che trovano. Anche quando mettono d\u2019accordo tutti i commentatori \ud83d\ude09. Nel frattempo diciamo la verit\u00e0: che emozioni ci ha regalato questa doppia semifinale! Sia il Camp Nou che Anfield Road hanno dimostrato perch\u00e9 il calcio \u00e8 uno sport magico, impressionante, unico. E complimenti al Liverpool che ha dimostrato - una volta di pi\u00f9 - che si pu\u00f2 credere in imprese che tutti gli altri giudicano impossibili", "post_text": "Per capire come sono apocalittici e avventati certi giudizi: una settimana fa Messi era osannato da tutta la stampa mondiale come il Giocatore pi\u00f9 grande della storia del calcio, insieme a Pel\u00e8. Gli stessi commentatori, proprio gli stessi, oggi lo massacrano senza piet\u00e0 dopo l\u2019incredibile sconfittta del Barcellona contro il Liverpool. La verit\u00e0 \u00e8\u2026 Altro che nel calcio, come in politica, i giudizi affrettati lasciano il tempo che trovano. Anche quando mettono d\u2019accordo tutti i commentatori \ud83d\ude09. Nel frattempo diciamo la verit\u00e0: che emozioni ci ha regalato questa doppia semifinale! Sia il Camp Nou che Anfield Road hanno dimostrato perch\u00e9 il calcio \u00e8 uno sport magico, impressionante, unico. E complimenti al Liverpool che ha dimostrato - una volta di pi\u00f9 - che si pu\u00f2 credere in imprese che tutti gli altri giudicano impossibili", "shared_text": "", "time": "2019-05-08 11:57:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156695325049915&id=113335124914", "link": null} +{"post_id": "10156694000329915", "text": "Aver recuperato quel barcone in fondo al mare, aver dato sepoltura ai cadaveri e un nome ai migranti morti in quella strage \u00e8 stata una scelta dolorosa ma doverosa. Una scelta che \u00e8 stata molto criticata ma che\u2026 Altro rifarei perch\u00e9 ci sono delle cose da fare che sono giuste anche se non sono popolari. In quel naufragio ha perso la vita anche il quattordicenne che veniva dal Mali con la pagella di cui parlo nel libro \u201cUn\u2019Altra Strada\u201d, oltre a centinaia di bambini, donne, persone.\nDavanti a queste scene \u00e8 disumano dire: \u201cLa pacchia \u00e8 finita\u201d. Per questa povera gente la pacchia non \u00e8 mai iniziata. Grazie alla Biennale di Venezia per aver deciso di accogliere il relitto. Restiamo umani.", "post_text": "Aver recuperato quel barcone in fondo al mare, aver dato sepoltura ai cadaveri e un nome ai migranti morti in quella strage \u00e8 stata una scelta dolorosa ma doverosa. Una scelta che \u00e8 stata molto criticata ma che\u2026 Altro rifarei perch\u00e9 ci sono delle cose da fare che sono giuste anche se non sono popolari. In quel naufragio ha perso la vita anche il quattordicenne che veniva dal Mali con la pagella di cui parlo nel libro \u201cUn\u2019Altra Strada\u201d, oltre a centinaia di bambini, donne, persone.\nDavanti a queste scene \u00e8 disumano dire: \u201cLa pacchia \u00e8 finita\u201d. Per questa povera gente la pacchia non \u00e8 mai iniziata. Grazie alla Biennale di Venezia per aver deciso di accogliere il relitto. Restiamo umani.", "shared_text": "", "time": "2019-05-07 19:19:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/59560857_10156694000204915_6908599112027865088_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=JnlUfmDF1CwAQmITlz3ByNZDrbW61qvjQYUrlrgW1dH2i09_IJKWeYSfg&_nc_ht=scontent-cdt1-1.xx&oh=3286f0de7ef581ec885d981434abfd16&oe=5E8A0991", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156694000329915&id=113335124914", "link": null} +{"post_id": "10156693280219915", "text": "Come si vede dal video questa storia dei selfie sta sfuggendo di mano a Salvini. Ma questo \u00e8 un problema suo. Noi abbiamo un problema pi\u00f9 grande, di natura istituzionale: a che titolo un leader politico pu\u00f2\u2026 Altro chiedere di sequestrare un telefonino? Che ha fatto di male quella ragazza perch\u00e9 le venisse strappato il cellulare di mano? Non \u00e8 una questione banale, come sembra. \u00c8 un principio di libert\u00e0. Ho fatto migliaia di selfie, ho preso applausi e fischi, ho ricevuto contestazioni ma non ho mai strappato di mano un telefonino a chi mi criticava. Possiamo sapere a che titolo Salvini ha detto \u201ccancella sto video\u201d? Presenter\u00f2 una interrogazione parlamentare urgente al signor Ministro dell\u2019Interno: sono certo che sapr\u00e0 darci risposte esaustive.", "post_text": "Come si vede dal video questa storia dei selfie sta sfuggendo di mano a Salvini. Ma questo \u00e8 un problema suo. Noi abbiamo un problema pi\u00f9 grande, di natura istituzionale: a che titolo un leader politico pu\u00f2\u2026 Altro chiedere di sequestrare un telefonino? Che ha fatto di male quella ragazza perch\u00e9 le venisse strappato il cellulare di mano? Non \u00e8 una questione banale, come sembra. \u00c8 un principio di libert\u00e0. Ho fatto migliaia di selfie, ho preso applausi e fischi, ho ricevuto contestazioni ma non ho mai strappato di mano un telefonino a chi mi criticava. Possiamo sapere a che titolo Salvini ha detto \u201ccancella sto video\u201d? Presenter\u00f2 una interrogazione parlamentare urgente al signor Ministro dell\u2019Interno: sono certo che sapr\u00e0 darci risposte esaustive.", "shared_text": "", "time": "2019-05-07 10:55:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=282886302593147&id=113335124914", "link": null} +{"post_id": "10156691015234915", "text": "Se Salvini vuole passare le giornate ad insultare gli avversari faccia pure. Ma allora lasci che qualcuno nel frattempo faccia il Ministro e si occupi di sicurezza. I miei #60secondi oggi, dal Senato.", "post_text": "Se Salvini vuole passare le giornate ad insultare gli avversari faccia pure. Ma allora lasci che qualcuno nel frattempo faccia il Ministro e si occupi di sicurezza. I miei #60secondi oggi, dal Senato.", "shared_text": "", "time": "2019-05-06 01:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=564292344060152&id=113335124914", "link": null} +{"post_id": "10156686799389915", "text": "In una giornata come oggi il Ministro dell\u2019Interno di un Paese civile non passa le giornate a insultare gli avversari nelle piazze, ma va a Napoli a combattere la Camorra. Se Salvini vuole fare solo comizi, faccia pure i comizi ma lasci ad altri il Viminale: abbiamo diritto ad avere un Ministro che si occupi della sicurezza degli italiani.", "post_text": "In una giornata come oggi il Ministro dell\u2019Interno di un Paese civile non passa le giornate a insultare gli avversari nelle piazze, ma va a Napoli a combattere la Camorra. Se Salvini vuole fare solo comizi, faccia pure i comizi ma lasci ad altri il Viminale: abbiamo diritto ad avere un Ministro che si occupi della sicurezza degli italiani.", "shared_text": "", "time": "2019-05-04 15:04:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156686799389915&id=113335124914", "link": null} +{"post_id": "10156683981159915", "text": "Orban e Salvini insieme vogliono cambiare l\u2019Europa. Chiedono il voto perche i sovranisti possano governare a Bruxelles. Non accadr\u00e0, fortunatamente. Ma guardiamo i fatti.\nQuando l\u2019Italia ha chiesto solidariet\u00e0 sull\u2019immigrazione, sono stati i sovranisti a lasciarci soli, a cominciare dagli ungheresi e dai paesi di Visegrad. Quando l\u2019Italia ha\u2026 Altro chiesto flessibilit\u00e0 sull\u2019economia, sono stati i sovranisti a lasciarci soli, a cominciare dalle destre austriache, tedesche, nordiche.\nLa verit\u00e0 \u00e8 che chi vuole difendere gli interessi degli italiani non si allea con i sovranisti, ma li combatte. A cominciare dal voto del 26 maggio: un voto ai sovranisti \u00e8 un voto contro l\u2019interesse degli italiani.", "post_text": "Orban e Salvini insieme vogliono cambiare l\u2019Europa. Chiedono il voto perche i sovranisti possano governare a Bruxelles. Non accadr\u00e0, fortunatamente. Ma guardiamo i fatti.\nQuando l\u2019Italia ha chiesto solidariet\u00e0 sull\u2019immigrazione, sono stati i sovranisti a lasciarci soli, a cominciare dagli ungheresi e dai paesi di Visegrad. Quando l\u2019Italia ha\u2026 Altro chiesto flessibilit\u00e0 sull\u2019economia, sono stati i sovranisti a lasciarci soli, a cominciare dalle destre austriache, tedesche, nordiche.\nLa verit\u00e0 \u00e8 che chi vuole difendere gli interessi degli italiani non si allea con i sovranisti, ma li combatte. A cominciare dal voto del 26 maggio: un voto ai sovranisti \u00e8 un voto contro l\u2019interesse degli italiani.", "shared_text": "", "time": "2019-05-03 10:28:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156683981159915&id=113335124914", "link": null} +{"post_id": "10156680178664915", "text": "Ayrton Senna era un mito per tutti noi appassionati di Formula1. Quel pomeriggio di venticinque anni fa \u00e8 rimasto impresso nella nostra memoria al punto che \u00e8 difficile dimenticare la desolante tristezza di quel giorno. Io ad esempio ricordo perfettamente cosa stavo facendo: ero ad arbitrare in Mugello un torneo di giovanissimi ed ebbi la notizia\u2026 Altro dell\u2019incidente rientrando negli spogliatoi. Non ci volevo credere, mi sembrava impossibile, ancora una tragedia, ancora su quel circuito. Ayrton Senna, il pilota triste, \u00e8 stato uno di quei campioni che si \u00e8 trasformato in leggenda (anche) per la tragedia che lo ha colpito. Ma era gi\u00e0 una leggenda per come guidava. Potevi amarlo o no, ma il dato di fatto \u00e8 che Senna era unico. Speciale. Inimitabile. Lo ricordo con la bellissima canzone di Lucio Dalla: il mio nome \u00e8 Ayrton e faccio il pilota. Anche se non \u00e8 pi\u00f9 la stessa strada...", "post_text": "Ayrton Senna era un mito per tutti noi appassionati di Formula1. Quel pomeriggio di venticinque anni fa \u00e8 rimasto impresso nella nostra memoria al punto che \u00e8 difficile dimenticare la desolante tristezza di quel giorno. Io ad esempio ricordo perfettamente cosa stavo facendo: ero ad arbitrare in Mugello un torneo di giovanissimi ed ebbi la notizia\u2026 Altro dell\u2019incidente rientrando negli spogliatoi. Non ci volevo credere, mi sembrava impossibile, ancora una tragedia, ancora su quel circuito. Ayrton Senna, il pilota triste, \u00e8 stato uno di quei campioni che si \u00e8 trasformato in leggenda (anche) per la tragedia che lo ha colpito. Ma era gi\u00e0 una leggenda per come guidava. Potevi amarlo o no, ma il dato di fatto \u00e8 che Senna era unico. Speciale. Inimitabile. Lo ricordo con la bellissima canzone di Lucio Dalla: il mio nome \u00e8 Ayrton e faccio il pilota. Anche se non \u00e8 pi\u00f9 la stessa strada...", "shared_text": "", "time": "2019-05-01 21:19:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156680178664915&id=113335124914", "link": null} +{"post_id": "10156679500294915", "text": "Noi abbiamo fatto una legge per avvicinare i giovani alla cultura. Il 75% dei fondo del #Bonus18anni \u00e8 stato speso per acquistare libri. Appena hanno sentito \u201cacquisto libri\u201d, Salvini e Di Maio hanno tolto i soldi e cancellato il finanziamento: viva l\u2019ignoranza! Spero che chi \u00e8 nato nel 2001-2002-2003 trovi la forza di farsi sentire.", "post_text": "Noi abbiamo fatto una legge per avvicinare i giovani alla cultura. Il 75% dei fondo del #Bonus18anni \u00e8 stato speso per acquistare libri. Appena hanno sentito \u201cacquisto libri\u201d, Salvini e Di Maio hanno tolto i soldi e cancellato il finanziamento: viva l\u2019ignoranza! Spero che chi \u00e8 nato nel 2001-2002-2003 trovi la forza di farsi sentire.", "shared_text": "", "time": "2019-05-01 14:26:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156679500294915&id=113335124914", "link": null} +{"post_id": "10156677864994915", "text": "Oggi il Governo esulta per i dati del PIL e sugli occupati. Il PIL con noi era a +1.7: adesso \u00e8 a +0.2. E loro esultano! Gli occupati sono 35mila in meno del primo giorno del Governo Conte. E loro esultano! I numeri sono argomenti testardi e il tempo \u00e8 galantuomo. A Salvini e Di Maio, che ci insultavano per i nostri dati (migliori di questi), diamo appuntamento alla Legge di Bilancio.", "post_text": "Oggi il Governo esulta per i dati del PIL e sugli occupati. Il PIL con noi era a +1.7: adesso \u00e8 a +0.2. E loro esultano! Gli occupati sono 35mila in meno del primo giorno del Governo Conte. E loro esultano! I numeri sono argomenti testardi e il tempo \u00e8 galantuomo. A Salvini e Di Maio, che ci insultavano per i nostri dati (migliori di questi), diamo appuntamento alla Legge di Bilancio.", "shared_text": "", "time": "2019-04-30 18:19:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156677864994915&id=113335124914", "link": null} +{"post_id": "10156668062589915", "text": "Tre fatti e una domanda\n1- gli immigrati irregolari non sono 600.000 come Salvini ha urlato in campagna elettorale, ma meno di centomila. Chi lo ha confessato? Lo stesso Salvini qualche giorno fa.\n2- il reddito di cittadinanza non dar\u00e0 780\u20ac a cinque milioni di poveri come diceva Di Maio ma in media meno di 500\u20ac a qualche centinaio di migliaia di\u2026 Altro persone. Chi lo ha confessato? Il capo dell\u2019Inps scelto da Di Maio.\n3 - non c\u2019\u00e8 il taglio delle accise promesso \u201cal primo consiglio dei ministri\u201d ma la benzina ha superato i due euro. La flat tax pi\u00f9 volte promessa \u00e8 sparita, come \u00e8 sparita la crescita del PIL.\nDopo un anno si pu\u00f2 dire: hanno vinto le elezioni raccontando una montagna di bugie.\nLa domanda. C\u2019\u00e8 qualche fan leghista o grillino in grado di replicare civilmente nel merito a queste banali osservazioni?\nBuon fine settimana, amici.", "post_text": "Tre fatti e una domanda\n1- gli immigrati irregolari non sono 600.000 come Salvini ha urlato in campagna elettorale, ma meno di centomila. Chi lo ha confessato? Lo stesso Salvini qualche giorno fa.\n2- il reddito di cittadinanza non dar\u00e0 780\u20ac a cinque milioni di poveri come diceva Di Maio ma in media meno di 500\u20ac a qualche centinaio di migliaia di\u2026 Altro persone. Chi lo ha confessato? Il capo dell\u2019Inps scelto da Di Maio.\n3 - non c\u2019\u00e8 il taglio delle accise promesso \u201cal primo consiglio dei ministri\u201d ma la benzina ha superato i due euro. La flat tax pi\u00f9 volte promessa \u00e8 sparita, come \u00e8 sparita la crescita del PIL.\nDopo un anno si pu\u00f2 dire: hanno vinto le elezioni raccontando una montagna di bugie.\nLa domanda. C\u2019\u00e8 qualche fan leghista o grillino in grado di replicare civilmente nel merito a queste banali osservazioni?\nBuon fine settimana, amici.", "shared_text": "", "time": "2019-04-26 08:06:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156668062589915&id=113335124914", "link": null} +{"post_id": "10156666034134915", "text": "Oggi \u00e8 il compleanno della libert\u00e0 per l\u2019Italia e per gli italiani. Un compleanno di valori che vale per tutti, nessuno escluso. Buon 25 aprile a tutte e a tutti. E un pensiero speciale a Silvano che per la prima volta non \u00e8 con noi.", "post_text": "Oggi \u00e8 il compleanno della libert\u00e0 per l\u2019Italia e per gli italiani. Un compleanno di valori che vale per tutti, nessuno escluso. Buon 25 aprile a tutte e a tutti. E un pensiero speciale a Silvano che per la prima volta non \u00e8 con noi.", "shared_text": "", "time": "2019-04-25 08:28:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156666034134915&id=113335124914", "link": null} +{"post_id": "10156664460594915", "text": "Tutti i giorni litigano, sbuffano, polemizzano. Si fanno dispetti e ripicche al punto da far sembrare \u2013 rispetto a loro \u2013 statisti persino i bambini dell\u2019asilo. Dovunque mettono le mani loro qualcosa si ferma, a cominciare dall\u2019economia italiana. A chi mi riferisco? Ai membri del Governo italiano, naturalmente, a cominciare dai due vicepremier\u2026 Altro Salvini e Di Maio.\nMa non vorrei dedicare l\u2019enews pasquale a questo mediocre gioco al ribasso che sta paralizzando le Istituzioni italiane mentre gli altri Paesi corrono. Il loro atteggiamento \u00e8 talmente evidente che prima o poi il palloncino populista si sgonfier\u00e0: la legge di Bilancio 2020, se ci arrivano, \u00e8 tecnicamente il loro banco di prova. Il\u2026 Altro", "post_text": "Tutti i giorni litigano, sbuffano, polemizzano. Si fanno dispetti e ripicche al punto da far sembrare \u2013 rispetto a loro \u2013 statisti persino i bambini dell\u2019asilo. Dovunque mettono le mani loro qualcosa si ferma, a cominciare dall\u2019economia italiana. A chi mi riferisco? Ai membri del Governo italiano, naturalmente, a cominciare dai due vicepremier\u2026 Altro Salvini e Di Maio.\nMa non vorrei dedicare l\u2019enews pasquale a questo mediocre gioco al ribasso che sta paralizzando le Istituzioni italiane mentre gli altri Paesi corrono. Il loro atteggiamento \u00e8 talmente evidente che prima o poi il palloncino populista si sgonfier\u00e0: la legge di Bilancio 2020, se ci arrivano, \u00e8 tecnicamente il loro banco di prova. Il\u2026 Altro", "shared_text": "", "time": "2019-04-24 15:38:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156664460594915&id=113335124914", "link": null} +{"post_id": "10156663044534915", "text": "Chi ha avuto la sfortuna di seguire la giornata politica stasera va a letto con il mal di testa.\nOrmai \u00e8 rissa continua: grillini e leghisti litigano su tutto, sul Salva Roma, sui rimpatri, sui processi, sull'eolico.\nVivono di dispetti e ripicche. Quello va in consiglio dei ministri, no non ci va, fa l'offeso, cambia idea, alla fine partecipa:\u2026 Altro spiace dirlo ma ormai \u00e8 evidente che in un qualsiasi asilo del Paese i comportamenti sono pi\u00f9 logici che a Palazzo Chigi.\nMentre il resto d'Europa discute di futuro, noi italiani assistiamo allo scontro totale interno alla coalizione di governo su qualsiasi argomento.\nAvevamo proposto di affidare a un solo partito la guida del Paese e lo avevamo\u2026 Altro", "post_text": "Chi ha avuto la sfortuna di seguire la giornata politica stasera va a letto con il mal di testa.\nOrmai \u00e8 rissa continua: grillini e leghisti litigano su tutto, sul Salva Roma, sui rimpatri, sui processi, sull'eolico.\nVivono di dispetti e ripicche. Quello va in consiglio dei ministri, no non ci va, fa l'offeso, cambia idea, alla fine partecipa:\u2026 Altro spiace dirlo ma ormai \u00e8 evidente che in un qualsiasi asilo del Paese i comportamenti sono pi\u00f9 logici che a Palazzo Chigi.\nMentre il resto d'Europa discute di futuro, noi italiani assistiamo allo scontro totale interno alla coalizione di governo su qualsiasi argomento.\nAvevamo proposto di affidare a un solo partito la guida del Paese e lo avevamo\u2026 Altro", "shared_text": "", "time": "2019-04-23 21:51:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156663044534915&id=113335124914", "link": null} +{"post_id": "10156657774824915", "text": "Mitico Fabio Fognini. Un tennista italiano finalmente torna a vincere uno dei tornei pi\u00f9 prestigiosi del circuito. Chapeau! #Montecarlo", "post_text": "Mitico Fabio Fognini. Un tennista italiano finalmente torna a vincere uno dei tornei pi\u00f9 prestigiosi del circuito. Chapeau! #Montecarlo", "shared_text": "", "time": "2019-04-21 16:36:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156657774824915&id=113335124914", "link": null} +{"post_id": "10156657289809915", "text": "L\u2019augurio pi\u00f9 bello di Buona Pasqua a tutti. Che sia una bella occasione per godersi gli affetti pi\u00f9 cari e per vivere una giornata di felicit\u00e0. Ma anche per mantenere il cuore civile vigile davanti a ci\u00f2 che accade nel mondo in ogni istante, a cominciare quest\u2019oggi dalle tragiche notizie che arrivano dalle chiese dello Sri Lanka.\nBuona Pasqua amici", "post_text": "L\u2019augurio pi\u00f9 bello di Buona Pasqua a tutti. Che sia una bella occasione per godersi gli affetti pi\u00f9 cari e per vivere una giornata di felicit\u00e0. Ma anche per mantenere il cuore civile vigile davanti a ci\u00f2 che accade nel mondo in ogni istante, a cominciare quest\u2019oggi dalle tragiche notizie che arrivano dalle chiese dello Sri Lanka.\nBuona Pasqua amici", "shared_text": "", "time": "2019-04-21 11:39:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156657289809915&id=113335124914", "link": null} +{"post_id": "10156649153354915", "text": "In questi anni ho accettato che mi dicessero contro di tutto. Sono stato oggetto di una campagna violenta di odio e di falsit\u00e0. Oggi che non ho pi\u00f9 ruoli di Governo penso che sia giusto dimostrare che credo davvero nella giustizia. E dunque ho predisposto le prime dieci azioni civili di risarcimento danni: in democrazia chiunque ha diritto di\u2026 Altro criticare. Ma se mi dici che sono ladro, che sono peggio di Hitler, che faccio le leggi per i miei parenti, che ho fatto scelte da premier perch\u00e9 avevo degli affari personali e compagnia bella, che i bambini muoiono per colpa dei porti aperti da me, beh, andiamo da un giudice e vediamo se queste frasi sono vere o se chi le ha dette debba risarcirmi.\u2026 Altro", "post_text": "In questi anni ho accettato che mi dicessero contro di tutto. Sono stato oggetto di una campagna violenta di odio e di falsit\u00e0. Oggi che non ho pi\u00f9 ruoli di Governo penso che sia giusto dimostrare che credo davvero nella giustizia. E dunque ho predisposto le prime dieci azioni civili di risarcimento danni: in democrazia chiunque ha diritto di\u2026 Altro criticare. Ma se mi dici che sono ladro, che sono peggio di Hitler, che faccio le leggi per i miei parenti, che ho fatto scelte da premier perch\u00e9 avevo degli affari personali e compagnia bella, che i bambini muoiono per colpa dei porti aperti da me, beh, andiamo da un giudice e vediamo se queste frasi sono vere o se chi le ha dette debba risarcirmi.\u2026 Altro", "shared_text": "", "time": "2019-04-17 18:49:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156649153354915&id=113335124914", "link": null} +{"post_id": "10156644998114915", "text": "Terrificante. Un giorno di dolore per Parigi, per l'Europa, per il mondo. Come tutti sono senza parole.", "post_text": "Terrificante. Un giorno di dolore per Parigi, per l'Europa, per il mondo. Come tutti sono senza parole.", "shared_text": "", "time": "2019-04-15 20:06:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156644998114915&id=113335124914", "link": null} +{"post_id": "10156642074109915", "text": "Che spettacolo i social, amici!\nParli di una scoperta straordinaria nell'astrofisica, racconti di come l'Italia non tocchi palla sulla crisi in Libia o dimostri con i numeri i danni che stanno facendo i vicepremier. E ti filano il giusto! Poi posti un selfie inguardabile con la tua foto sorridente e distrutto dopo 13 km sotto l\u2019acqua di corsa tra il Ponte Vecchio, le Cascine e l\u2019Isolotto. E vedi il boom di \u201cMi piace\u201d. I social sono meravigliosi! Buona domenica di nuovo, un sorriso", "post_text": "Che spettacolo i social, amici!\nParli di una scoperta straordinaria nell'astrofisica, racconti di come l'Italia non tocchi palla sulla crisi in Libia o dimostri con i numeri i danni che stanno facendo i vicepremier. E ti filano il giusto! Poi posti un selfie inguardabile con la tua foto sorridente e distrutto dopo 13 km sotto l\u2019acqua di corsa tra il Ponte Vecchio, le Cascine e l\u2019Isolotto. E vedi il boom di \u201cMi piace\u201d. I social sono meravigliosi! Buona domenica di nuovo, un sorriso", "shared_text": "", "time": "2019-04-14 12:20:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156642074109915&id=113335124914", "link": null} +{"post_id": "10156641844979915", "text": "C'\u00e8 una sola cosa pi\u00f9 bella di correre a Firenze sotto il sole. \u00c8 correre a Firenze sotto l'acqua.\nBuona domenica delle Palme, amici\n#FirenzeSecondoMe", "post_text": "C'\u00e8 una sola cosa pi\u00f9 bella di correre a Firenze sotto il sole. \u00c8 correre a Firenze sotto l'acqua.\nBuona domenica delle Palme, amici\n#FirenzeSecondoMe", "shared_text": "", "time": "2019-04-14 09:19:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/56786108_10156641844939915_8565616448515342336_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=pG_k_pu35iMAQlXHQD0TyVSV3yqA9_M4XOrXGHPxuQD2nlMIbf3uV8MIA&_nc_ht=scontent-cdt1-1.xx&oh=fb4c39570cb0880c39e466deb319c0a0&oe=5E84B1E8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156641844979915&id=113335124914", "link": null} +{"post_id": "10156631876784915", "text": "C'\u00e8 un'immagine che adesso andrebbe recuperata: Di Maio che si affaccia dal balcone di Palazzo Chigi.\nE urla: \"Ce l'abbiamo fatta, abbiamo abolito la povert\u00e0\". La tragedia di un uomo ridicolo.\nNel giro di sei mesi hanno sfasciato i conti, abolito la crescita, bloccato la ripresa. Oggi, mogio mogio, lo stesso Di Maio non si affaccia nemmeno in\u2026 Altro sala stampa e cancella persino la TV.\nSua Maest\u00e0 la Realt\u00e0 fa irruzione nella storia del Governo del Cambiamento e mette a nudo la totale, impressionante, incompetenza dei populisti.\nCi\u00f2 che stanotte \u00e8 chiaro agli addetti ai lavori sar\u00e0 nei prossimi mesi chiaro anche a tutti i cittadini. Il tempo \u00e8 galantuomo e si accinge a smascherare le loro bugie, una per una. Ci aspettano mesi difficili. Siamo fuori da tutti i tavoli internazionali, dalla Libia alla Brexit. Ci aumenteranno le tasse. Allacciamoci le cinture. Poi, come al solito, toccher\u00e0 a noi rimediare ai loro danni. E ricostruire tra le loro macerie.\nPerch\u00e9 noi eravamo la crescita, loro sono la recessione.", "post_text": "C'\u00e8 un'immagine che adesso andrebbe recuperata: Di Maio che si affaccia dal balcone di Palazzo Chigi.\nE urla: \"Ce l'abbiamo fatta, abbiamo abolito la povert\u00e0\". La tragedia di un uomo ridicolo.\nNel giro di sei mesi hanno sfasciato i conti, abolito la crescita, bloccato la ripresa. Oggi, mogio mogio, lo stesso Di Maio non si affaccia nemmeno in\u2026 Altro sala stampa e cancella persino la TV.\nSua Maest\u00e0 la Realt\u00e0 fa irruzione nella storia del Governo del Cambiamento e mette a nudo la totale, impressionante, incompetenza dei populisti.\nCi\u00f2 che stanotte \u00e8 chiaro agli addetti ai lavori sar\u00e0 nei prossimi mesi chiaro anche a tutti i cittadini. Il tempo \u00e8 galantuomo e si accinge a smascherare le loro bugie, una per una. Ci aspettano mesi difficili. Siamo fuori da tutti i tavoli internazionali, dalla Libia alla Brexit. Ci aumenteranno le tasse. Allacciamoci le cinture. Poi, come al solito, toccher\u00e0 a noi rimediare ai loro danni. E ricostruire tra le loro macerie.\nPerch\u00e9 noi eravamo la crescita, loro sono la recessione.", "shared_text": "", "time": "2019-04-09 20:59:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156631876784915&id=113335124914", "link": null} +{"post_id": "2354036344820427", "text": "Da Treviso per #UnAltraStrada", "post_text": "Da Treviso per #UnAltraStrada", "shared_text": "", "time": "2019-04-06 18:55:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2354036344820427&id=113335124914", "link": null} +{"post_id": "10156622982359915", "text": "Oggi siamo di nuovo al nord dove, tra Lombardia e Veneto, #UnAltraStrada fa tappa: poco fa a Lecco, ora a Tavernerio in provincia di Como, stasera Pavia e domani a Bassano del Grappa, Sedico (BL), Treviso e\u2026 Altro Padova.\nProprio queste terre che hanno visto il successo della Lega grazie alle promesse gonfiate dalla propaganda di Salvini, saranno decisive per far sgonfiare il palloncino dei populisti. Le bugie di Salvini hanno le gambe corte, e il tempo a breve gli presenter\u00e0 il conto. Non potr\u00e0 rimandare in eterno, a breve dovr\u00e0 tornare qui a raccontare di aver introdotto la patrimoniale o aumentato l'iva. Quel giorno non gli baster\u00e0 mettersi una felpa, o gridare alla colpa di quelli che c'erano prima. Quel giorno non gli baster\u00e0 nemmeno incolpare i 5 stelle con i quali finge quotidianamente di litigare mentre accompagnano a braccetto l'Italia contro un muro. Quel giorno ci sar\u00e0 solo Salvini e il fallimento di tutta la sua politica.", "post_text": "Oggi siamo di nuovo al nord dove, tra Lombardia e Veneto, #UnAltraStrada fa tappa: poco fa a Lecco, ora a Tavernerio in provincia di Como, stasera Pavia e domani a Bassano del Grappa, Sedico (BL), Treviso e\u2026 Altro Padova.\nProprio queste terre che hanno visto il successo della Lega grazie alle promesse gonfiate dalla propaganda di Salvini, saranno decisive per far sgonfiare il palloncino dei populisti. Le bugie di Salvini hanno le gambe corte, e il tempo a breve gli presenter\u00e0 il conto. Non potr\u00e0 rimandare in eterno, a breve dovr\u00e0 tornare qui a raccontare di aver introdotto la patrimoniale o aumentato l'iva. Quel giorno non gli baster\u00e0 mettersi una felpa, o gridare alla colpa di quelli che c'erano prima. Quel giorno non gli baster\u00e0 nemmeno incolpare i 5 stelle con i quali finge quotidianamente di litigare mentre accompagnano a braccetto l'Italia contro un muro. Quel giorno ci sar\u00e0 solo Salvini e il fallimento di tutta la sua politica.", "shared_text": "", "time": "2019-04-05 18:46:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/56811258_10156622982289915_7579006162192826368_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=8e4pFLvCyIkAQkNYpxuGWDkwPfDcQxRCRsFRFmFaYw5ZWjASaWtUNrQog&_nc_ht=scontent-cdt1-1.xx&oh=f566a390801c1005a2107087b0a9525a&oe=5E862A24", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156622982359915&id=113335124914", "link": null} +{"post_id": "10156620735684915", "text": "In questa settimana c'\u00e8 stata una sparatoria in strada a Roma, ancora una volta. L'ordine pubblico nella Capitale sembra un problema, non solo in periferia, ma il Ministro dell'Interno non sembra preoccuparsene. In questa settimana abbiamo anche scoperto che \u00e8 stato cancellato il bonus babysitter e asili nido e che il numero degli incidenti sul\u2026 Altro lavoro cresce ma il Ministro del Lavoro non sembra preoccuparsene.\n\u00c8 impressionante come i due ministri, Salvini e Di Maio, che sono anche i leader del Governo, ci raccontino tutto della loro vita personale, di cosa mangiano, di chi amano, di come vivono. Sappiamo tutto delle loro polemiche politiche contro gli avversari e contro gli alleati. Ma non\u2026 Altro", "post_text": "In questa settimana c'\u00e8 stata una sparatoria in strada a Roma, ancora una volta. L'ordine pubblico nella Capitale sembra un problema, non solo in periferia, ma il Ministro dell'Interno non sembra preoccuparsene. In questa settimana abbiamo anche scoperto che \u00e8 stato cancellato il bonus babysitter e asili nido e che il numero degli incidenti sul\u2026 Altro lavoro cresce ma il Ministro del Lavoro non sembra preoccuparsene.\n\u00c8 impressionante come i due ministri, Salvini e Di Maio, che sono anche i leader del Governo, ci raccontino tutto della loro vita personale, di cosa mangiano, di chi amano, di come vivono. Sappiamo tutto delle loro polemiche politiche contro gli avversari e contro gli alleati. Ma non\u2026 Altro", "shared_text": "", "time": "2019-04-04 17:56:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156620735684915&id=113335124914", "link": null} +{"post_id": "10156620100329915", "text": "Anche ieri tre incidenti mortali sul lavoro: i numeri di quest\u2019anno sono terrificanti. Con questo ritmo il 2019 sar\u00e0 l\u2019anno peggiore da decenni per numero di vittime. Teresa Bellanova ha preparato su questo una interrogazione al ministro Di Maio, l\u2019uomo che quest\u2019anno ha tagliato i fondi per la sicurezza sul lavoro. Perch\u00e9 Teresa sa che cosa\u2026 Altro significhi lavorare mentre Gigino non ne ha la pi\u00f9 pallida idea.\nIl Ministro ha capito di aver fatto un errore sui fondi INAIL?\nL\u2019Italia deve tornare il Paese in cui si va a lavorare per vivere, non per morire sui cantieri.", "post_text": "Anche ieri tre incidenti mortali sul lavoro: i numeri di quest\u2019anno sono terrificanti. Con questo ritmo il 2019 sar\u00e0 l\u2019anno peggiore da decenni per numero di vittime. Teresa Bellanova ha preparato su questo una interrogazione al ministro Di Maio, l\u2019uomo che quest\u2019anno ha tagliato i fondi per la sicurezza sul lavoro. Perch\u00e9 Teresa sa che cosa\u2026 Altro significhi lavorare mentre Gigino non ne ha la pi\u00f9 pallida idea.\nIl Ministro ha capito di aver fatto un errore sui fondi INAIL?\nL\u2019Italia deve tornare il Paese in cui si va a lavorare per vivere, non per morire sui cantieri.", "shared_text": "", "time": "2019-04-04 12:21:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156620100329915&id=113335124914", "link": null} +{"post_id": "10156616457914915", "text": "Lella Paita \u00e8 una giovane donna che si impegna per la sua gente in Liguria. Nel 2015 si candida alla guida della Regione. Viene massacrata dal fuoco amico (la sinistra interna prima perde le primarie e poi\u2026 Altro rompe l\u2019alleanza) e poi dalla strumentalizzazione per un avviso di garanzia legato all\u2019alluvione del Bisagno. Il centrosinistra perde le Regionali, Lella viene considerata la responsabile di tutto. Poi il tempo, galantuomo, si incarica di riportare la verit\u00e0 a casa. E Lella Paita viene assolta in primo grado. La procura fa ricorso e oggi Lella viene assolta anche in secondo grado.\nCi sono i giustizialisti cinici e privi di ogni morale. E poi ci sono le persone che credono nella giustizia. Orgoglioso di far parte di quest\u2019ultima categoria, orgoglioso di essere amico di Lella Paita. Abbiamo perso la Regione Liguria ma non abbiamo perso la dignit\u00e0, l\u2019onore, il senso della giustizia. Ti vogliamo bene, Lella", "post_text": "Lella Paita \u00e8 una giovane donna che si impegna per la sua gente in Liguria. Nel 2015 si candida alla guida della Regione. Viene massacrata dal fuoco amico (la sinistra interna prima perde le primarie e poi\u2026 Altro rompe l\u2019alleanza) e poi dalla strumentalizzazione per un avviso di garanzia legato all\u2019alluvione del Bisagno. Il centrosinistra perde le Regionali, Lella viene considerata la responsabile di tutto. Poi il tempo, galantuomo, si incarica di riportare la verit\u00e0 a casa. E Lella Paita viene assolta in primo grado. La procura fa ricorso e oggi Lella viene assolta anche in secondo grado.\nCi sono i giustizialisti cinici e privi di ogni morale. E poi ci sono le persone che credono nella giustizia. Orgoglioso di far parte di quest\u2019ultima categoria, orgoglioso di essere amico di Lella Paita. Abbiamo perso la Regione Liguria ma non abbiamo perso la dignit\u00e0, l\u2019onore, il senso della giustizia. Ti vogliamo bene, Lella", "shared_text": "", "time": "2019-04-02 20:04:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/56119821_10156616457884915_4097515911257260032_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=0RzhRoj99sgAQmuouHcYfXSf5PY-jEEorwwvvvyfnMYsX1UOBNI2ELVxQ&_nc_ht=scontent-cdt1-1.xx&oh=359548f93255c469c17d1a20dcfea0ce&oe=5E4C451D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156616457914915&id=113335124914", "link": null} +{"post_id": "10156613180229915", "text": "Una delle leggi di cui andavo fiero era quella che impediva ai comuni di alzare le imposte locali: le addizionali IRPEF, l\u2019Imu, la tassa di soggiorno. Il governo dei populisti invece ha restituito libert\u00e0 di\u2026 Altro tassazione selvaggia ai comuni. Questo \u00e8 il Sole 24 Ore di oggi. Con Salvini e Di Maio le tasse vanno su, i posti di lavoro vanno gi\u00f9. Noi eravamo quelli \u201ccol caratteraccio\u201d, ma l\u2019Italia cresceva. Loro dicono di essere pi\u00f9 simpatici ma adesso crescono solo le tasse e lo spread.", "post_text": "Una delle leggi di cui andavo fiero era quella che impediva ai comuni di alzare le imposte locali: le addizionali IRPEF, l\u2019Imu, la tassa di soggiorno. Il governo dei populisti invece ha restituito libert\u00e0 di\u2026 Altro tassazione selvaggia ai comuni. Questo \u00e8 il Sole 24 Ore di oggi. Con Salvini e Di Maio le tasse vanno su, i posti di lavoro vanno gi\u00f9. Noi eravamo quelli \u201ccol caratteraccio\u201d, ma l\u2019Italia cresceva. Loro dicono di essere pi\u00f9 simpatici ma adesso crescono solo le tasse e lo spread.", "shared_text": "", "time": "2019-04-01 09:06:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/55726330_10156613210534915_6646766936317231104_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=6iVRGO9FovEAQmRvTA7IP_vasIlKzMIM75wIlHQ2yTknFmFqtHA_Q0Taw&_nc_ht=scontent-cdt1-1.xx&oh=b77c5a76569b5de9e11d518ad6d6bb06&oe=5E881B50", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156613180229915&id=113335124914", "link": null} +{"post_id": "10156610468019915", "text": "Mentre in autostrada torno verso casa ripenso a quanta gente anche oggi abbiamo incontrato tra Follonica, La Spezia, Parma.\nE poi Bozzolo (Mantova) nei luoghi di don Primo Mazzolari, un sacerdote che ha segnato\u2026 Altro la formazione di molti di noi.\nQuattro regioni diverse, migliaia di persone: #UnAltraStrada non \u00e8 solo un libro, ma anche il modo per abbracciare una comunit\u00e0 appassionata di buona politica.\nIl vero lusso della politica, per me, sono i rapporti umani: vorrei restituirvi l\u2019affetto e il calore umano che ricevo in queste presentazioni e che pu\u00f2 capire solo chi partecipa.\nGrazie", "post_text": "Mentre in autostrada torno verso casa ripenso a quanta gente anche oggi abbiamo incontrato tra Follonica, La Spezia, Parma.\nE poi Bozzolo (Mantova) nei luoghi di don Primo Mazzolari, un sacerdote che ha segnato\u2026 Altro la formazione di molti di noi.\nQuattro regioni diverse, migliaia di persone: #UnAltraStrada non \u00e8 solo un libro, ma anche il modo per abbracciare una comunit\u00e0 appassionata di buona politica.\nIl vero lusso della politica, per me, sono i rapporti umani: vorrei restituirvi l\u2019affetto e il calore umano che ricevo in queste presentazioni e che pu\u00f2 capire solo chi partecipa.\nGrazie", "shared_text": "", "time": "2019-03-31 00:22:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/56431078_10156610463374915_678855164936847360_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=vga5qADJ4iIAQkeCjQL_OAUqfGmsqYuqc50_Inl8SQAZ4ptRYD-4xSYkQ&_nc_ht=scontent-cdt1-1.xx&oh=039aa4eeb5e3ceeeff5e662de464759e&oe=5E82767C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156610468019915&id=113335124914", "link": null} +{"post_id": "356718528385754", "text": "In diretta da Castenedolo (BS), insieme a Paolo Mieli", "post_text": "In diretta da Castenedolo (BS), insieme a Paolo Mieli", "shared_text": "", "time": "2019-03-29 20:57:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=356718528385754&id=113335124914", "link": null} +{"post_id": "10156605006959915", "text": "Salvini d\u00e0 dei \u201cgufi\u201d a Confindustria, che prevede per l\u2019Italia crescita zero. Di Maio lo attacca: \u00abNoi non siamo Renzi!\u00bb.\nStavolta ha ragione Di Maio, voi non siete Renzi. Gufi o non gufi, con noi infatti l\u2019Italia faceva +1,5, con voi ZERO. Non siete Renzi, lo dicono i dati ISTAT.", "post_text": "Salvini d\u00e0 dei \u201cgufi\u201d a Confindustria, che prevede per l\u2019Italia crescita zero. Di Maio lo attacca: \u00abNoi non siamo Renzi!\u00bb.\nStavolta ha ragione Di Maio, voi non siete Renzi. Gufi o non gufi, con noi infatti l\u2019Italia faceva +1,5, con voi ZERO. Non siete Renzi, lo dicono i dati ISTAT.", "shared_text": "", "time": "2019-03-28 13:38:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156605006959915&id=113335124914", "link": null} +{"post_id": "10156597867294915", "text": "Questa foto parla. Ci mostra la sensibilit\u00e0 dell\u2019Arma dei Carabinieri, la passione di due ragazzi nostri CONCITTADINI, il lieto fine di una vicenda che poteva essere una strage.\nC\u2019\u00e8 chi utilizza le divise in\u2026 Altro campagna elettorale per racimolare un voto in pi\u00f9 e c\u2019\u00e8 chi le sogna fin da piccolo aspettando di diventare cittadino italiano per servire la comunit\u00e0. Fuori dal chiacchiericcio e dall\u2019odio dei troll c\u2019\u00e8 un Paese bellissimo animato da piccoli gesti di eroismo quotidiano. Si chiama Italia. Orgoglioso dei Carabinieri, orgoglioso di questi ragazzi", "post_text": "Questa foto parla. Ci mostra la sensibilit\u00e0 dell\u2019Arma dei Carabinieri, la passione di due ragazzi nostri CONCITTADINI, il lieto fine di una vicenda che poteva essere una strage.\nC\u2019\u00e8 chi utilizza le divise in\u2026 Altro campagna elettorale per racimolare un voto in pi\u00f9 e c\u2019\u00e8 chi le sogna fin da piccolo aspettando di diventare cittadino italiano per servire la comunit\u00e0. Fuori dal chiacchiericcio e dall\u2019odio dei troll c\u2019\u00e8 un Paese bellissimo animato da piccoli gesti di eroismo quotidiano. Si chiama Italia. Orgoglioso dei Carabinieri, orgoglioso di questi ragazzi", "shared_text": "", "time": "2019-03-25 07:39:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/54729438_10156597867264915_2677530054535151616_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=TrNTMkips0YAQmtoRmNMwPtM7-DRmGvHwUjkv91V-ex8wfP4mKwXAjQOw&_nc_ht=scontent-cdt1-1.xx&oh=0f9864b99ec3fc50ba27be69a2d4ef39&oe=5E7F0F97", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156597867294915&id=113335124914", "link": null} +{"post_id": "10156593753559915", "text": "Oggi un milione di persone in piazza per dire NO alla Brexit. La Brexit dimostra che se dici le bugie al tuo popolo puoi vincere un referendum ma poi vieni sconfitto dalla realt\u00e0.", "post_text": "Oggi un milione di persone in piazza per dire NO alla Brexit. La Brexit dimostra che se dici le bugie al tuo popolo puoi vincere un referendum ma poi vieni sconfitto dalla realt\u00e0.", "shared_text": "", "time": "2019-03-23 16:45:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/54523086_10156593753524915_5159157266196201472_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=hbUsqh-djRMAQlYuhEVP-TRtmYvbOKGI1YEAH2Gy_7KXkGIDuELN9QjlQ&_nc_ht=scontent-cdt1-1.xx&oh=7b5c4cc5ef2009fc324e43b7836988a3&oe=5E8BFED5", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156593753559915&id=113335124914", "link": null} +{"post_id": "10156593545504915", "text": "La vicenda dei ragazzini eroi dello scuolabus ha riportato al centro del dibattito il tema dello Ius Soli. Qualcuno dice che il Pd non ha avuto coraggio nel 2017. Per una volta non \u00e8 stata colpa del Pd. In\u2026 Altro \u201cUn\u2019Altra Strada\u201d racconto come andarono le cose, da pagina 75 a pagina 81.\nLa fiducia sulle Unioni Civili io l\u2019avevo messa. Sullo Ius Soli invece...\nMATTEORENZI.IT\nPerch\u00e9 nel 2017 il Governo fece un clamoroso errore sullo Ius Soli - Matteo Renzi", "post_text": "La vicenda dei ragazzini eroi dello scuolabus ha riportato al centro del dibattito il tema dello Ius Soli. Qualcuno dice che il Pd non ha avuto coraggio nel 2017. Per una volta non \u00e8 stata colpa del Pd. In\u2026 Altro \u201cUn\u2019Altra Strada\u201d racconto come andarono le cose, da pagina 75 a pagina 81.\nLa fiducia sulle Unioni Civili io l\u2019avevo messa. Sullo Ius Soli invece...", "shared_text": "MATTEORENZI.IT\nPerch\u00e9 nel 2017 il Governo fece un clamoroso errore sullo Ius Soli - Matteo Renzi", "time": "2019-03-23 14:42:58", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBfkKEM30XB2xZq&w=476&h=249&url=https%3A%2F%2Fwww.matteorenzi.it%2Fwp-content%2Fuploads%2F2019%2F03%2Ftestata-572.jpg&cfs=1&jq=75&sx=0&sy=61&sw=500&sh=262&ext=jpg&_nc_hash=AQAfXzlucx59v5-J", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156593545504915&id=113335124914", "link": "https://www.matteorenzi.it/perche-nel-2017-il-governo-fece-un-clamoroso-errore-sullo-ius-soli/?fbclid=IwAR3pcml0DDo9oHzyMdSez7w_5AIHY3QbraXzo9foUg80WfoipJO3aCVZZ5k"} +{"post_id": "10156593284909915", "text": "Qui l'intervista che ho rilasciato agli amici di Fanpage e che ha come filo conduttore le parole chiave di Un'Altra Strada. Leggo come sempre volentieri i vostri commenti", "post_text": "Qui l'intervista che ho rilasciato agli amici di Fanpage e che ha come filo conduttore le parole chiave di Un'Altra Strada. Leggo come sempre volentieri i vostri commenti", "shared_text": "", "time": "2019-03-23 12:30:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=367708053831827&id=113335124914", "link": null} +{"post_id": "10156592952354915", "text": "Il mio articolo su Brexit oggi su Financial Times", "post_text": "Il mio articolo su Brexit oggi su Financial Times", "shared_text": "", "time": "2019-03-23 09:44:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/54520752_10156592944234915_3651792004938989568_o.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=gVuER_mUoFAAQk5XlwpkCjZPWrKmmoCcbmsdmWWX9U5XgXg1ilFkdf5Og&_nc_ht=scontent-cdt1-1.xx&oh=ebcf63fca98bb8406e19f7e5ab1d17a5&oe=5E4208BB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156592952354915&id=113335124914", "link": null} +{"post_id": "10156591266159915", "text": "Noi non siamo come loro. Noi non mostriamo le manette. Noi rifiutiamo la barbarie del giustizialismo anche quando colpisce gli avversari, soprattutto quando colpisce gli avversari.\nGli scandali grillini a Roma non sono gli indagati, non sono gli arrestati. Sono le Olimpiadi buttate via per paura, sono le buche che bloccano anche il Giro d\u2019Italia,\u2026 Altro sono gli autobus che prendono fuoco, sono le scale mobili che si accartocciano, sono i cinghiali che rovistano nella nettezza. Non sappiamo se sono disonesti: lo dir\u00e0 un giudice con una sentenza, non il web. Ma sappiamo che sicuramente sono incapaci. Non sappiamo se hanno rubato: siamo certi che abbiano fallito.", "post_text": "Noi non siamo come loro. Noi non mostriamo le manette. Noi rifiutiamo la barbarie del giustizialismo anche quando colpisce gli avversari, soprattutto quando colpisce gli avversari.\nGli scandali grillini a Roma non sono gli indagati, non sono gli arrestati. Sono le Olimpiadi buttate via per paura, sono le buche che bloccano anche il Giro d\u2019Italia,\u2026 Altro sono gli autobus che prendono fuoco, sono le scale mobili che si accartocciano, sono i cinghiali che rovistano nella nettezza. Non sappiamo se sono disonesti: lo dir\u00e0 un giudice con una sentenza, non il web. Ma sappiamo che sicuramente sono incapaci. Non sappiamo se hanno rubato: siamo certi che abbiano fallito.", "shared_text": "", "time": "2019-03-22 15:04:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156591266159915&id=113335124914", "link": null} +{"post_id": "10156587560929915", "text": "Ancora una volta diciamo grazie ai Carabinieri che hanno sventato un grave pericolo con coraggio, dedizione e onore. Viva l\u2019Arma dei Carabinieri, viva i professionisti della sicurezza", "post_text": "Ancora una volta diciamo grazie ai Carabinieri che hanno sventato un grave pericolo con coraggio, dedizione e onore. Viva l\u2019Arma dei Carabinieri, viva i professionisti della sicurezza", "shared_text": "", "time": "2019-03-20 17:41:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/54430465_10156587560904915_7058000726240264192_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=NEY3BIgJ0QAAQkxmxAlj-mNw7rNWGnJ6iiTHspaTn-EQQVn6FuDq7xNfg&_nc_ht=scontent-cdt1-1.xx&oh=6002d4e9cebb859f04b6b3166ae91578&oe=5E884685", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156587560929915&id=113335124914", "link": null} +{"post_id": "10156586892794915", "text": "Le persone serie sono garantiste, sempre. Non diventano giustizialiste con gli avversari, non regalano immunit\u00e0 agli alleati, non scoprono il garantismo solo per gli amici.\nLe persone serie scelgono in libert\u00e0 senza nascondersi dietro al sacro blog o alla piattaforma.\nLe persone serie sanno che la giustizia \u00e8 una cosa seria. E che fanno testo solo le sentenze dei tribunali, non il fango sul web.\nQuesto \u00e8 lo stile delle persone serie. Gli altri invece hanno un altro nome: si chiamano ipocriti.\nBuona giornata, amici.", "post_text": "Le persone serie sono garantiste, sempre. Non diventano giustizialiste con gli avversari, non regalano immunit\u00e0 agli alleati, non scoprono il garantismo solo per gli amici.\nLe persone serie scelgono in libert\u00e0 senza nascondersi dietro al sacro blog o alla piattaforma.\nLe persone serie sanno che la giustizia \u00e8 una cosa seria. E che fanno testo solo le sentenze dei tribunali, non il fango sul web.\nQuesto \u00e8 lo stile delle persone serie. Gli altri invece hanno un altro nome: si chiamano ipocriti.\nBuona giornata, amici.", "shared_text": "", "time": "2019-03-20 10:32:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156586892794915&id=113335124914", "link": null} +{"post_id": "10156576286519915", "text": "Bellissimo vedere tanti ragazzi scendere in piazza per il futuro del Pianeta. Emozionante! I leader di tutto il mondo, adesso, diano seguito agli accordi sul clima di Parigi\n#FridaysForFuture", "post_text": "Bellissimo vedere tanti ragazzi scendere in piazza per il futuro del Pianeta. Emozionante! I leader di tutto il mondo, adesso, diano seguito agli accordi sul clima di Parigi\n#FridaysForFuture", "shared_text": "", "time": "2019-03-15 12:33:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/54522336_10156576286284915_2093674085807554560_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=84-n4u5a0VYAQmeojIdNXeAW1yC2x_1faYPDx7HbrayiHwR3VOIaldsPA&_nc_ht=scontent-cdt1-1.xx&oh=94231370c4a3601c70bde8707d862ae6&oe=5E7DC2B7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156576286519915&id=113335124914", "link": null} +{"post_id": "10156575249434915", "text": "Mi sono confrontato con Marine Le Pen sulla tv francese. I populisti sono tutti uguali. La Le Pen parlava senza conoscere la Costituzione italiana, senza sapere che da quando c\u2019\u00e8 Salvini l\u2019Italia \u00e8 tornata in\u2026 Altro recessione, senza ricordare che era una delle grandi sostenitrici di Brexit.\nMi sento sempre pi\u00f9 impegnato in una battaglia culturale e civile per un\u2019Europa giusta, contro la cultura di odio e paura che Salvini e Le Pen rappresentano", "post_text": "Mi sono confrontato con Marine Le Pen sulla tv francese. I populisti sono tutti uguali. La Le Pen parlava senza conoscere la Costituzione italiana, senza sapere che da quando c\u2019\u00e8 Salvini l\u2019Italia \u00e8 tornata in\u2026 Altro recessione, senza ricordare che era una delle grandi sostenitrici di Brexit.\nMi sento sempre pi\u00f9 impegnato in una battaglia culturale e civile per un\u2019Europa giusta, contro la cultura di odio e paura che Salvini e Le Pen rappresentano", "shared_text": "", "time": "2019-03-15 00:17:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156575249434915&id=113335124914", "link": null} +{"post_id": "10156574099549915", "text": "Sono per due giorni a Londra dove ho presentato \u201cUn\u2019altra strada\u201d a un bel gruppo di studenti italiani. Mi colpisce il gigantesco caos sulla Brexit. Nessuno, dico nessuno, sa come andr\u00e0 a finire. Dicevano che\u2026 Altro uscendo dall\u2019Europa sarebbe stato tutto pi\u00f9 semplice e quel referendum ha creato un casino immane e bloccato la crescita economica britannica. La politica qui sta mostrando il suo volto pi\u00f9 inconcludente, con responsabilit\u00e0 sia per il Governo che per l\u2019opposizione. Lo dico forte: la politica britannica sta facendo peggio di quello che avrebbe potuto fare la politica italiana e questo la dice lunga su come sono messi. Hanno vinto un referendum mentendo: il conto, oggi, lo paga la povera gente. Peccato", "post_text": "Sono per due giorni a Londra dove ho presentato \u201cUn\u2019altra strada\u201d a un bel gruppo di studenti italiani. Mi colpisce il gigantesco caos sulla Brexit. Nessuno, dico nessuno, sa come andr\u00e0 a finire. Dicevano che\u2026 Altro uscendo dall\u2019Europa sarebbe stato tutto pi\u00f9 semplice e quel referendum ha creato un casino immane e bloccato la crescita economica britannica. La politica qui sta mostrando il suo volto pi\u00f9 inconcludente, con responsabilit\u00e0 sia per il Governo che per l\u2019opposizione. Lo dico forte: la politica britannica sta facendo peggio di quello che avrebbe potuto fare la politica italiana e questo la dice lunga su come sono messi. Hanno vinto un referendum mentendo: il conto, oggi, lo paga la povera gente. Peccato", "shared_text": "", "time": "2019-03-14 10:53:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/54433323_10156574099359915_4582850479880404992_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=SSVE0GV9QDAAQmB9aoERgsNpHI9JuqTmGMzYGeeX7bKilWmuRV1wC8wnA&_nc_ht=scontent-cdt1-1.xx&oh=b6c387b62f5fdd3036159f550aceb751&oe=5E42B974", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156574099549915&id=113335124914", "link": null} +{"post_id": "10156576517539915", "text": "Ieri sera ho partecipato in diretta da Londra a una trasmissione televisiva francese contro Marine Le Pen. Abbiamo discusso di Brexit, di Europa, di politica italiana, d'immigrazione, di cultura e amicizia italo francese. Qui il video integrale, graditi i commenti. Buon pomeriggio", "post_text": "Ieri sera ho partecipato in diretta da Londra a una trasmissione televisiva francese contro Marine Le Pen. Abbiamo discusso di Brexit, di Europa, di politica italiana, d'immigrazione, di cultura e amicizia italo francese. Qui il video integrale, graditi i commenti. Buon pomeriggio", "shared_text": "", "time": "2019-03-14 06:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=829892334028499&id=113335124914", "link": null} +{"post_id": "10156573044149915", "text": "Come \u00e8 noto possono accusarmi di tutto tranne che di essere juventino. Ieri del resto ero a Manchester a vedere un\u2019altra partita di Champions, non la Juve. Ma dopo quello che \u00e8 successo ieri non solo bisognerebbe fare i complimenti a Ronaldo e a tutta la squadra; qualcuno dovrebbe anche chiedere scusa ad Allegri, sempre criticato e messo in discussione e che \u00e8 invece uno dei migliori allenatori del mondo. Basterebbe un po\u2019 di onest\u00e0 intellettuale per riconoscerlo e scusarsi col mister livornese. O sbaglio?", "post_text": "Come \u00e8 noto possono accusarmi di tutto tranne che di essere juventino. Ieri del resto ero a Manchester a vedere un\u2019altra partita di Champions, non la Juve. Ma dopo quello che \u00e8 successo ieri non solo bisognerebbe fare i complimenti a Ronaldo e a tutta la squadra; qualcuno dovrebbe anche chiedere scusa ad Allegri, sempre criticato e messo in discussione e che \u00e8 invece uno dei migliori allenatori del mondo. Basterebbe un po\u2019 di onest\u00e0 intellettuale per riconoscerlo e scusarsi col mister livornese. O sbaglio?", "shared_text": "", "time": "2019-03-13 13:15:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156573044149915&id=113335124914", "link": null} +{"post_id": "10156572723294915", "text": "Riccardo Muti \u00e8 uno dei simboli universali della cultura italiana. Il fatto che il Ministro della cultura grillino si permetta di insultarlo dimostra quanto sia volgare e incompetente questa banda di scappati\u2026 Altro di casa che costituisce il Governo di questo Paese. Non bastavano le posizioni sui Gilet Gialli e sul Venezuela, le previsioni economiche sbagliate, le figuracce internazionali. No! Ora abbiamo pure il ministro della cultura che attacca il Maestro Muti. Ma con quale criterio Casaleggio ha scelto i ministri? \u00c8 andato a caso o ha preso volutamente i peggiori? Solidariet\u00e0 a Riccardo Muti. Viva la cultura italiana", "post_text": "Riccardo Muti \u00e8 uno dei simboli universali della cultura italiana. Il fatto che il Ministro della cultura grillino si permetta di insultarlo dimostra quanto sia volgare e incompetente questa banda di scappati\u2026 Altro di casa che costituisce il Governo di questo Paese. Non bastavano le posizioni sui Gilet Gialli e sul Venezuela, le previsioni economiche sbagliate, le figuracce internazionali. No! Ora abbiamo pure il ministro della cultura che attacca il Maestro Muti. Ma con quale criterio Casaleggio ha scelto i ministri? \u00c8 andato a caso o ha preso volutamente i peggiori? Solidariet\u00e0 a Riccardo Muti. Viva la cultura italiana", "shared_text": "", "time": "2019-03-13 08:04:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/53165129_10156572723279915_8796519967727026176_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=3l1klzCQ1W4AQnAaJzRDywG2XTfiIz15VQ1gpSe-l5PQ7OHMNGG9kON6w&_nc_ht=scontent-cdt1-1.xx&oh=8b084156d205c90a231290d6fb89b72c&oe=5E446724", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156572723294915&id=113335124914", "link": null} +{"post_id": "10156569419139915", "text": "Trovate qui l\u2019intervista di Myrta Merlino su La 7, a L'Aria Che Tira. Abbiamo parlato di #UnAltraStrada e delle vicende di queste settimane che hanno riguardato la mia famiglia. Ma abbiamo soprattutto approfondito i danni che questi al governo stanno facendo al nostro Paese. Aspetto come sempre i vostri commenti.", "post_text": "Trovate qui l\u2019intervista di Myrta Merlino su La 7, a L'Aria Che Tira. Abbiamo parlato di #UnAltraStrada e delle vicende di queste settimane che hanno riguardato la mia famiglia. Ma abbiamo soprattutto approfondito i danni che questi al governo stanno facendo al nostro Paese. Aspetto come sempre i vostri commenti.", "shared_text": "", "time": "2019-03-11 15:05:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2329510063747544&id=113335124914", "link": null} +{"post_id": "387877792032930", "text": "Trovate qui la mia \"In Mezz'ora\" su Rai Tre con Lucia Annunziata oggi. Abbiamo parlato di Tav e di infrastrutture, dei pericoli che l'economia del nostro Paese corre per colpa di questo governo di incompetenti,\u2026 Altro della battaglia culturale che stiamo facendo con le presentazioni di #UnAltraStrada in giro per l'Italia e che vogliamo proseguire. Come sempre leggo molto volentieri i vostri commenti.", "post_text": "Trovate qui la mia \"In Mezz'ora\" su Rai Tre con Lucia Annunziata oggi. Abbiamo parlato di Tav e di infrastrutture, dei pericoli che l'economia del nostro Paese corre per colpa di questo governo di incompetenti,\u2026 Altro della battaglia culturale che stiamo facendo con le presentazioni di #UnAltraStrada in giro per l'Italia e che vogliamo proseguire. Come sempre leggo molto volentieri i vostri commenti.", "shared_text": "", "time": "2019-03-10 17:03:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=387877792032930&id=113335124914", "link": null} +{"post_id": "10156566951859915", "text": "Mamma mia, che accoglienza anche a Pescara per #UnAltraStrada. C\u2019\u00e8 tanta gente che non si arrende e che combatte contro la farsa di questo Governo, cialtrone e incompetente. Vedervi cos\u00ec numerosi per la presentazione di un libro mi emoziona e mi commuove. Ci vediamo alle 14.30 da Lucia Annunziata su Rai3. Buona domenica", "post_text": "Mamma mia, che accoglienza anche a Pescara per #UnAltraStrada. C\u2019\u00e8 tanta gente che non si arrende e che combatte contro la farsa di questo Governo, cialtrone e incompetente. Vedervi cos\u00ec numerosi per la presentazione di un libro mi emoziona e mi commuove. Ci vediamo alle 14.30 da Lucia Annunziata su Rai3. Buona domenica", "shared_text": "", "time": "2019-03-10 12:45:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/53892543_10156566951439915_2449376495508914176_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=fUlwMbK70MIAQm8xr3iKBQdHx_QgYHknl07CKlr0Oy6lNeCghSxa_xYEQ&_nc_ht=scontent-cdt1-1.xx&oh=fe4409d3aae4c2be217223ca956b9e46&oe=5E495B75", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156566951859915&id=113335124914", "link": null} +{"post_id": "10156562883059915", "text": "I miei genitori sono tornati in libert\u00e0. Il Tribunale del Riesame infatti ha annullato la decisione del GIP, decisione che era parsa a molti, dal primo momento, abnorme e assurda. Ovviamente la notizia non avr\u00e0\u2026 Altro la stessa eco che ha avuto l\u2019arresto: il circo mediatico sar\u00e0 meno interessato. Come del resto le archiviazioni o assoluzioni non hanno mai lo stesso spazio dell\u2019apertura delle indagini. Ma i processi si fanno nelle aule, non sui giornali, e vedremo chi avr\u00e0 ragione e chi torto.\nDa rappresentante delle istituzioni confermo, a maggior ragione oggi, la mia fiducia nella giustizia italiana.\nDa figlio dico che sono stati i giorni pi\u00f9 brutti della vita della nostra famiglia. Vorrei\u2026 Altro", "post_text": "I miei genitori sono tornati in libert\u00e0. Il Tribunale del Riesame infatti ha annullato la decisione del GIP, decisione che era parsa a molti, dal primo momento, abnorme e assurda. Ovviamente la notizia non avr\u00e0\u2026 Altro la stessa eco che ha avuto l\u2019arresto: il circo mediatico sar\u00e0 meno interessato. Come del resto le archiviazioni o assoluzioni non hanno mai lo stesso spazio dell\u2019apertura delle indagini. Ma i processi si fanno nelle aule, non sui giornali, e vedremo chi avr\u00e0 ragione e chi torto.\nDa rappresentante delle istituzioni confermo, a maggior ragione oggi, la mia fiducia nella giustizia italiana.\nDa figlio dico che sono stati i giorni pi\u00f9 brutti della vita della nostra famiglia. Vorrei\u2026 Altro", "shared_text": "", "time": "2019-03-08 15:38:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/53541676_10156562914584915_7583546793028222976_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=0oDbnPx6hKQAQny5XoaTbZ1KqDt5qJRcTb808rCTLTQnRUphb6wAb0pOw&_nc_ht=scontent-cdt1-1.xx&oh=f1d057473f1351ff2d4301a6e9e487fd&oe=5E43C2CB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156562883059915&id=113335124914", "link": null} +{"post_id": "10156560233024915", "text": "Con la #18App oltre quattrocentomila ragazzi hanno fatto un piccolo investimento in cultura. E il 70% ha comprato libri. Ho ricevuto molte critiche per aver introdotto questa misura. Ma ora lo dimostrano i numeri: il #BonusRenzi avvicina i ragazzi alla cultura. Il tempo \u00e8 galantuomo anche qui", "post_text": "Con la #18App oltre quattrocentomila ragazzi hanno fatto un piccolo investimento in cultura. E il 70% ha comprato libri. Ho ricevuto molte critiche per aver introdotto questa misura. Ma ora lo dimostrano i numeri: il #BonusRenzi avvicina i ragazzi alla cultura. Il tempo \u00e8 galantuomo anche qui", "shared_text": "", "time": "2019-03-07 11:21:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p200x200/53465150_10156560232614915_5604009032160378880_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=MBxvQa9UNZAAQnJp4ZDZzpiLGYXdiZMydlJNtMz6pGnUPozG_oJ32YqBg&_nc_ht=scontent-cdt1-1.xx&oh=ef63a0efbc9c151bf271a09b1b2d1705&oe=5E462BE6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156560233024915&id=113335124914", "link": null} +{"post_id": "10156560073614915", "text": "Ho aderito al Manifesto di Macron perch\u00e9 \u00e8 il momento di scrivere una nuova pagina per l\u2019Europa dei popoli. Contro i populisti e contro i sovranisti. Dalla parte dei nostri figli e delle nuove generazioni.\nEU-RENAISSANCE.ORG\nRinascimento", "post_text": "Ho aderito al Manifesto di Macron perch\u00e9 \u00e8 il momento di scrivere una nuova pagina per l\u2019Europa dei popoli. Contro i populisti e contro i sovranisti. Dalla parte dei nostri figli e delle nuove generazioni.", "shared_text": "EU-RENAISSANCE.ORG\nRinascimento", "time": "2019-03-07 09:19:25", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCYgBirb0WbYewD&w=476&h=249&url=https%3A%2F%2Feu-renaissance.org%2Fres%2Fsharer%2Fit.jpg&cfs=1&jq=75&sx=0&sy=1&sw=2400&sh=1255&ext=jpg&_nc_hash=AQCNl0hhikdEEGHt", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156560073614915&id=113335124914", "link": "https://ue-rinascimento.it/?fbclid=IwAR1D-jbuLIC0tewyQ2kWMAL9zf9WugcWQVSsa8ycZJXGQXLES0SD3GZg6eU"} +{"post_id": "10156560002914915", "text": "Tra poco in diretta a Non Stop News su RTL 102.5\n#NonStopNews", "post_text": "Tra poco in diretta a Non Stop News su RTL 102.5\n#NonStopNews", "shared_text": "", "time": "2019-03-07 08:31:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156560002914915&id=113335124914", "link": null} +{"post_id": "2226110334316023", "text": "In diretta da Varese\n#UnAltraStrada", "post_text": "In diretta da Varese\n#UnAltraStrada", "shared_text": "", "time": "2019-03-06 21:32:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2226110334316023&id=113335124914", "link": null} +{"post_id": "10156558729274915", "text": "Un abbraccio al mio amico Davide e soprattutto a Sara\nDavide Faraone\n6 marzo alle ore 12:08 \u00b7\nScusate, trovo soltanto ora un momento di serenit\u00e0 per scrivere due parole su fb. Mi spiace non esserci riuscito prima.\nLa mattina delle primarie avevo gi\u00e0 concordato le interviste al gazebo durante le\u2026 Altro operazioni di voto, sapevo che sarebbe stata una giornata impegnativa e avevo chiesto ai miei genitori di passare a prendere mia figlia Sara al posto mio. Sapevo che non avremmo trascorso la classica domenica insieme, ma che probabilmente l\u2019avrei raggiunta soltanto per pranzo. Sara \u00e8 una ragazza autistica e fino a tre giorni fa aveva tirato fuori solo alcune espressioni della disabilit\u00e0. Dopo alcune interviste a piazza Politeama son dovuto correre a prenderla perch\u00e9 non era pi\u00f9 lei. Ho temuto\u2026 Altro", "post_text": "Un abbraccio al mio amico Davide e soprattutto a Sara", "shared_text": "Davide Faraone\n6 marzo alle ore 12:08 \u00b7\nScusate, trovo soltanto ora un momento di serenit\u00e0 per scrivere due parole su fb. Mi spiace non esserci riuscito prima.\nLa mattina delle primarie avevo gi\u00e0 concordato le interviste al gazebo durante le\u2026 Altro operazioni di voto, sapevo che sarebbe stata una giornata impegnativa e avevo chiesto ai miei genitori di passare a prendere mia figlia Sara al posto mio. Sapevo che non avremmo trascorso la classica domenica insieme, ma che probabilmente l\u2019avrei raggiunta soltanto per pranzo. Sara \u00e8 una ragazza autistica e fino a tre giorni fa aveva tirato fuori solo alcune espressioni della disabilit\u00e0. Dopo alcune interviste a piazza Politeama son dovuto correre a prenderla perch\u00e9 non era pi\u00f9 lei. Ho temuto\u2026 Altro", "time": "2019-03-06 18:10:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/53703451_2117910074930945_1824267262824022016_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=o3lDcU6V_58AQldl7vYWXyXs-l2zHIpezPksQcDbubb0yFcxE1C9bkwKA&_nc_ht=scontent-cdt1-1.xx&oh=3a427af63b92aa95b55f5c9897fc3835&oe=5E82F647", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156558729274915&id=113335124914", "link": null} +{"post_id": "10156558016624915", "text": "Ieri un imprenditore in difficolt\u00e0 si \u00e8 ucciso nel nord-est. \u00c8 difficilissimo capire perch\u00e9 una persona arriva al punto di togliersi la vita: per dolore, per amore, per una crisi, per il mal di vivere direbbe il Poeta. Chi ha perso degli amici cos\u00ec sa che \u00e8 un dolore devastante per sempre: impossibile stabilire una causa, impossibile non sentirsi\u2026 Altro in colpa.\nQuando eravamo al Governo le opposizioni grillini e leghiste ci rinfacciavano sempre i suicidi degli imprenditori in crisi. I resoconti parlamentari sono pieni di loro interventi: \u00e8 colpa vostra, li avete sulla coscienza. Mi faceva schifo il loro modo bieco e meschino di strumentalizzare quel dolore. Schifo. Non ho altre parole.\nOggi che al Governo ci sono loro vorrei che arrivasse un abbraccio solidale alla famiglia di quest\u2019uomo. Vorrei che nessuno desse al premier la colpa anche dei suicidi come facevano quando a Palazzo Chigi eravamo noi. E vorrei che tutti insieme recuperassimo un po\u2019 di umanit\u00e0, anche in politica.", "post_text": "Ieri un imprenditore in difficolt\u00e0 si \u00e8 ucciso nel nord-est. \u00c8 difficilissimo capire perch\u00e9 una persona arriva al punto di togliersi la vita: per dolore, per amore, per una crisi, per il mal di vivere direbbe il Poeta. Chi ha perso degli amici cos\u00ec sa che \u00e8 un dolore devastante per sempre: impossibile stabilire una causa, impossibile non sentirsi\u2026 Altro in colpa.\nQuando eravamo al Governo le opposizioni grillini e leghiste ci rinfacciavano sempre i suicidi degli imprenditori in crisi. I resoconti parlamentari sono pieni di loro interventi: \u00e8 colpa vostra, li avete sulla coscienza. Mi faceva schifo il loro modo bieco e meschino di strumentalizzare quel dolore. Schifo. Non ho altre parole.\nOggi che al Governo ci sono loro vorrei che arrivasse un abbraccio solidale alla famiglia di quest\u2019uomo. Vorrei che nessuno desse al premier la colpa anche dei suicidi come facevano quando a Palazzo Chigi eravamo noi. E vorrei che tutti insieme recuperassimo un po\u2019 di umanit\u00e0, anche in politica.", "shared_text": "", "time": "2019-03-06 09:46:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156558016624915&id=113335124914", "link": null} +{"post_id": "10156552764144915", "text": "Quella di Nicola Zingaretti \u00e8 una vittoria bella e netta. Adesso basta col fuoco amico: gli avversari politici non sono in casa ma al Governo. Al segretario Zingaretti un grande in bocca al lupo. A Maurizio, Bobo e a tutti i volontari grazie. Viva la democrazia", "post_text": "Quella di Nicola Zingaretti \u00e8 una vittoria bella e netta. Adesso basta col fuoco amico: gli avversari politici non sono in casa ma al Governo. Al segretario Zingaretti un grande in bocca al lupo. A Maurizio, Bobo e a tutti i volontari grazie. Viva la democrazia", "shared_text": "", "time": "2019-03-03 21:15:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156552764144915&id=113335124914", "link": null} +{"post_id": "10156550722734915", "text": "Torno verso casa dopo aver toccato Brindisi, Milano, Scandiano, Ferrara, Faenza e Forl\u00ec. Ho trovato tanta bella gente che non si rassegna alla cultura di odio e che ha voglia di camminare su #UnAltraStrada", "post_text": "Torno verso casa dopo aver toccato Brindisi, Milano, Scandiano, Ferrara, Faenza e Forl\u00ec. Ho trovato tanta bella gente che non si rassegna alla cultura di odio e che ha voglia di camminare su #UnAltraStrada", "shared_text": "", "time": "2019-03-02 23:35:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s370x247/53365753_10156550722254915_5521214672717479936_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=QQ-9s87WAn8AQno-pCQ55katKgzgY6qe3TEF1oRBKiRv7zwozeYOF6wog&_nc_ht=scontent-cdt1-1.xx&oh=b47dfba1c1bb81b5fd7ae2bd2ed61bda&oe=5E41FE28", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156550722734915&id=113335124914", "link": null} +{"post_id": "631374310617398", "text": "In diretta da Faenza\n#UnAltraStrada", "post_text": "In diretta da Faenza\n#UnAltraStrada", "shared_text": "", "time": "2019-03-02 19:02:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=631374310617398&id=113335124914", "link": null} +{"post_id": "10156548379824915", "text": "In mezzo alla gente di Lecce. C\u2019\u00e8 #UnAltraStrada e c\u2019\u00e8 un popolo che vuole percorrerla. Io vado a letto e domani si riparte dall\u2019Emilia Romagna. Grazie a tutti, \u00e8 un tour stupefacente", "post_text": "In mezzo alla gente di Lecce. C\u2019\u00e8 #UnAltraStrada e c\u2019\u00e8 un popolo che vuole percorrerla. Io vado a letto e domani si riparte dall\u2019Emilia Romagna. Grazie a tutti, \u00e8 un tour stupefacente", "shared_text": "", "time": "2019-03-01 23:29:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/52920349_10156548379384915_643248193835892736_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=kn_7qEMQ4cwAQmBlpW5aLWcRR2FkphGnAZE4zDFGRLBECrQBBXRVDMC0A&_nc_ht=scontent-cdt1-1.xx&oh=2dc84a1cbbf04d530e24fd7019fb4834&oe=5E8B769C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156548379824915&id=113335124914", "link": null} +{"post_id": "386208345511493", "text": "", "post_text": "", "shared_text": "", "time": "2019-03-01 21:29:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=386208345511493&id=113335124914", "link": null} +{"post_id": "314443902754218", "text": "In diretta da Lecce", "post_text": "In diretta da Lecce", "shared_text": "", "time": "2019-03-01 20:58:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=314443902754218&id=113335124914", "link": null} +{"post_id": "10156548110974915", "text": "Sono circondato da un affetto e da un calore che non vedevo da anni. Grazie a tutti. Emozionante tornare a Taranto dopo anni di insulti e vedere l\u2019aula magna dell\u2019Universit\u00e0 strapiena. Grazie a tutti. Alle 21 in diretta da Lecce", "post_text": "Sono circondato da un affetto e da un calore che non vedevo da anni. Grazie a tutti. Emozionante tornare a Taranto dopo anni di insulti e vedere l\u2019aula magna dell\u2019Universit\u00e0 strapiena. Grazie a tutti. Alle 21 in diretta da Lecce", "shared_text": "", "time": "2019-03-01 20:43:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/52837045_10156548109509915_918695510364127232_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=5m14bSUu-0MAQlrxJv_3VL7S2i6Wr49s2Y_-Z78cxiJwkWtXvDbp-G25g&_nc_ht=scontent-cdt1-1.xx&oh=6ea8bbf5f05f5f2ce510c6afd5ae2244&oe=5E7997CE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156548110974915&id=113335124914", "link": null} +{"post_id": "10156547358559915", "text": "I dati ISTAT preoccupano. Ormai \u00e8 ufficiale: il Governo deve trovare 40 miliardi di euro da qui al 31 dicembre: 15 per il 2019, 25 per il 2020. Nel frattempo la tassa sulle auto rischia di dare il colpo di grazia a un settore che grazie a Marchionne era ripartito. Il debito e la disoccupazione giovanile tornano a salire. Il Governo si rende conto della gravit\u00e0 della situazione?", "post_text": "I dati ISTAT preoccupano. Ormai \u00e8 ufficiale: il Governo deve trovare 40 miliardi di euro da qui al 31 dicembre: 15 per il 2019, 25 per il 2020. Nel frattempo la tassa sulle auto rischia di dare il colpo di grazia a un settore che grazie a Marchionne era ripartito. Il debito e la disoccupazione giovanile tornano a salire. Il Governo si rende conto della gravit\u00e0 della situazione?", "shared_text": "", "time": "2019-03-01 12:09:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156547358559915&id=113335124914", "link": null} +{"post_id": "10156547129079915", "text": "Mi scuso con le centinaia di persone che ieri a Napoli sono rimaste fuori dalla sala. \u00c8 bellissimo vedere tanta gente partecipare alle presentazioni del libro, grazie. Oggi un\u2019altra strada ci porta a Martina Franca, Taranto, Lecce. Domani in Emilia Romagna. Buona giornata amici", "post_text": "Mi scuso con le centinaia di persone che ieri a Napoli sono rimaste fuori dalla sala. \u00c8 bellissimo vedere tanta gente partecipare alle presentazioni del libro, grazie. Oggi un\u2019altra strada ci porta a Martina Franca, Taranto, Lecce. Domani in Emilia Romagna. Buona giornata amici", "shared_text": "", "time": "2019-03-01 08:31:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s403x403/53496320_10156547128779915_6896578099861782528_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=4tIhpd9pt38AQm6CnjAgDJufFws4JiuEoJz6I6vj66YniUWZZdStgtLUQ&_nc_ht=scontent-cdt1-1.xx&oh=e7a38f6378773a1946f0e138fcac7fa6&oe=5E47DA0E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156547129079915&id=113335124914", "link": null} +{"post_id": "352360352031166", "text": "In diretta da Napoli", "post_text": "In diretta da Napoli", "shared_text": "", "time": "2019-02-28 18:24:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=352360352031166&id=113335124914", "link": null} +{"post_id": "10156545309799915", "text": "Ecco l\u2019intervista di marted\u00ec con Bruno Vespa a Porta a Porta. Come al solito graditi i commenti di chi avr\u00e0 tempo per vederla. Astenersi odiatori e troll. Buona giornata, oggi Un\u2019Altra Strada ci porta a Napoli", "post_text": "Ecco l\u2019intervista di marted\u00ec con Bruno Vespa a Porta a Porta. Come al solito graditi i commenti di chi avr\u00e0 tempo per vederla. Astenersi odiatori e troll. Buona giornata, oggi Un\u2019Altra Strada ci porta a Napoli", "shared_text": "", "time": "2019-02-28 10:31:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=667657183653286&id=113335124914", "link": null} +{"post_id": "10156544573899915", "text": "Non ho parole per descrivere l\u2019affetto e l\u2019entusiasmo della scuola di Catania e della libreria di Palermo. Grazie per questa giornata siciliana #UnAltraStrada", "post_text": "Non ho parole per descrivere l\u2019affetto e l\u2019entusiasmo della scuola di Catania e della libreria di Palermo. Grazie per questa giornata siciliana #UnAltraStrada", "shared_text": "", "time": "2019-02-27 23:50:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/53382608_10156544573854915_9010282169381158912_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=bxTMeLab8tkAQkdxyRsVpfMrtXHO0ktUUIPZgWHhmdJUUTmFDlqqmyS7g&_nc_ht=scontent-cdt1-1.xx&oh=b081e2a6a3cfcca7ed5bb511e59ccacf&oe=5E88AB0C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156544573899915&id=113335124914", "link": null} +{"post_id": "804655439911376", "text": "In diretta dal Senato il mio intervento a nome del Gruppo PD", "post_text": "In diretta dal Senato il mio intervento a nome del Gruppo PD", "shared_text": "", "time": "2019-02-27 10:13:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=804655439911376&id=113335124914", "link": null} +{"post_id": "10156543320234915", "text": "Qualche senatore grillino vuole impiccarmi? E noi rispondiamo intervenendo in Aula, a nome del Gruppo PD. Per dire NO alle scelte economiche dissennate di un Governo che ci ha riportato in recessione", "post_text": "Qualche senatore grillino vuole impiccarmi? E noi rispondiamo intervenendo in Aula, a nome del Gruppo PD. Per dire NO alle scelte economiche dissennate di un Governo che ci ha riportato in recessione", "shared_text": "", "time": "2019-02-27 08:24:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/52920247_10156543319799915_6683189173815345152_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=OeTPLQwFGd8AQklep1-7L9_oLYbM1noohYYD0E8IOM77phaDi8EqJqexQ&_nc_ht=scontent-cdt1-1.xx&oh=e0e64d59cc557e342b1d1451844609ac&oe=5E5065D6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156543320234915&id=113335124914", "link": null} +{"post_id": "10156541301749915", "text": "Grazie a tutti quelli che stanno leggendo e commentando #UnAltraStrada. Il fatto che tanta gente stia parlando delle idee e delle proposte del libro mi emoziona. Abbiamo un lungo cammino da fare, sar\u00e0 bello farlo insieme. GRAZIE", "post_text": "Grazie a tutti quelli che stanno leggendo e commentando #UnAltraStrada. Il fatto che tanta gente stia parlando delle idee e delle proposte del libro mi emoziona. Abbiamo un lungo cammino da fare, sar\u00e0 bello farlo insieme. GRAZIE", "shared_text": "", "time": "2019-02-26 09:24:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/52602299_10156541301714915_5405847543294722048_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=EpEfUMRo6wUAQmiRkMSpkhvFFCEIzniNrR8qKSz_v8fkdlYt_LjLDJR0w&_nc_ht=scontent-cdt1-1.xx&oh=cf00291660524f31e10ef5febeb07876&oe=5E4FED0F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156541301749915&id=113335124914", "link": null} +{"post_id": "1198592286983586", "text": "Qui l\u2019intervista di ieri con Giletti. Nel primo pomeriggio intervengo in Aula al Senato contro le sciagurate scelte economiche che ci hanno riportato in recessione. Buona settimana, amici", "post_text": "Qui l\u2019intervista di ieri con Giletti. Nel primo pomeriggio intervengo in Aula al Senato contro le sciagurate scelte economiche che ci hanno riportato in recessione. Buona settimana, amici", "shared_text": "", "time": "2019-02-25 09:22:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1198592286983586&id=113335124914", "link": null} +{"post_id": "10156538320924915", "text": "\u00c8 stata una intervista per me difficile per tanti motivi, ma grazie a tutti per i commenti sulla trasmissione di Giletti. E ho fatto in tempo anche a vedermi il pareggio Viola contro l\u2019Inter.\nBuona notte, ci vediamo domani in Senato.", "post_text": "\u00c8 stata una intervista per me difficile per tanti motivi, ma grazie a tutti per i commenti sulla trasmissione di Giletti. E ho fatto in tempo anche a vedermi il pareggio Viola contro l\u2019Inter.\nBuona notte, ci vediamo domani in Senato.", "shared_text": "", "time": "2019-02-24 22:45:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156538320924915&id=113335124914", "link": null} +{"post_id": "10156537972554915", "text": "Grazie per l'accoglienza a Loro Ciuffenna ed a Cortona, eravate davvero tanti a darmi il vostro affetto e la vostra voglia di percorrere insieme #UnAltraStrada. Ora si torna a Roma per preparare il discorso che\u2026 Altro domani far\u00f2 in Senato. Prima per\u00f2 sar\u00f2 ospite di Massimo Giletti a Non \u00e8 l'Arena su La 7, a partire dalle 2030. Vi aspetto!", "post_text": "Grazie per l'accoglienza a Loro Ciuffenna ed a Cortona, eravate davvero tanti a darmi il vostro affetto e la vostra voglia di percorrere insieme #UnAltraStrada. Ora si torna a Roma per preparare il discorso che\u2026 Altro domani far\u00f2 in Senato. Prima per\u00f2 sar\u00f2 ospite di Massimo Giletti a Non \u00e8 l'Arena su La 7, a partire dalle 2030. Vi aspetto!", "shared_text": "", "time": "2019-02-24 19:18:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/52861896_10156537972174915_2773202748861054976_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=C4_VnJ5ngOUAQnr2knYQvVxnIelMHTfQ_HT9qNml96ZHgQffxzdPnRNWg&_nc_ht=scontent-cdt1-1.xx&oh=087acc203e87d09898e58f27876346f3&oe=5E4368CF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156537972554915&id=113335124914", "link": null} +{"post_id": "10156537018289915", "text": "Nella settimana in cui a Foligno un maestro della scuola pubblica insulta i bambini di colore, la pagina pi\u00f9 bella l\u2019ha scritta Emma. La cantante aveva chiesto di aprire i porti e la macchina d'odio e\u2026 Altro propaganda guidata da un amministratore della Lega l\u2019aveva insultata pesantemente. Qui la risposta di Emma, bellissima.\nC\u2019\u00e8 troppo odio, in questo Paese. C\u2019\u00e8 un linguaggio violento che va respinto. C\u2019\u00e8 bisogno di restare umani. Grazie a Emma, artista coraggiosa e donna forte. E grazie a chi prende un impegno: no, noi saremo mai come loro. Buona domenica", "post_text": "Nella settimana in cui a Foligno un maestro della scuola pubblica insulta i bambini di colore, la pagina pi\u00f9 bella l\u2019ha scritta Emma. La cantante aveva chiesto di aprire i porti e la macchina d'odio e\u2026 Altro propaganda guidata da un amministratore della Lega l\u2019aveva insultata pesantemente. Qui la risposta di Emma, bellissima.\nC\u2019\u00e8 troppo odio, in questo Paese. C\u2019\u00e8 un linguaggio violento che va respinto. C\u2019\u00e8 bisogno di restare umani. Grazie a Emma, artista coraggiosa e donna forte. E grazie a chi prende un impegno: no, noi saremo mai come loro. Buona domenica", "shared_text": "", "time": "2019-02-24 09:10:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=309850139719927&id=113335124914", "link": null} +{"post_id": "10156536226039915", "text": "Ci sono migliaia di persone che in questi giorni partecipano alle presentazioni di \u201cUn\u2019Altra Strada\u201d. \u00c8 impressionante l\u2019affetto ma anche la voglia di futuro di tanta gente che non si arrende. Vorrei dirvi grazie e abbracciarvi uno per uno. Buona notte", "post_text": "Ci sono migliaia di persone che in questi giorni partecipano alle presentazioni di \u201cUn\u2019Altra Strada\u201d. \u00c8 impressionante l\u2019affetto ma anche la voglia di futuro di tanta gente che non si arrende. Vorrei dirvi grazie e abbracciarvi uno per uno. Buona notte", "shared_text": "", "time": "2019-02-23 23:37:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/52803643_10156536223364915_6226304928122404864_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=N-RwK4gPcTgAQnJwELKfImlqhoN4fH8gn6LoibKF34QIsRxsBK0LPzMFQ&_nc_ht=scontent-cdt1-1.xx&oh=25db94e0f391c2db6383c00a24055200&oe=5E4BB5FF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156536226039915&id=113335124914", "link": null} +{"post_id": "10156534857474915", "text": "Ieri sera due tappe con tantissima gente e tanto affetto tra Torino e Genova. L\u2019Italia ha bisogno di proposte diverse da quelle di chi ci governa. C\u2019\u00e8 Un\u2019Altra Strada da percorrere insieme. Noi siamo in cammino", "post_text": "Ieri sera due tappe con tantissima gente e tanto affetto tra Torino e Genova. L\u2019Italia ha bisogno di proposte diverse da quelle di chi ci governa. C\u2019\u00e8 Un\u2019Altra Strada da percorrere insieme. Noi siamo in cammino", "shared_text": "", "time": "2019-02-23 09:29:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/52825821_10156534857309915_4252413722103906304_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=KbSj2OWbNyAAQl8M9PdUybn6V29TfnMyGWi3LCWlxUSyMSHL0oMLrujrg&_nc_ht=scontent-cdt1-1.xx&oh=d23cb648df807e20600987cd5afb3a2d&oe=5E85ACFE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156534857474915&id=113335124914", "link": null} +{"post_id": "422895151815817", "text": "In diretta da Torino\n#UnAltraStrada", "post_text": "In diretta da Torino\n#UnAltraStrada", "shared_text": "", "time": "2019-02-22 18:05:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=422895151815817&id=113335124914", "link": null} +{"post_id": "10156530643984915", "text": "Oggi Di Maio ha sparato una BUFALA clamorosa. Ha detto che nel 2018 sono aumentati i posti di lavoro, prendendosene il merito. Allora, se guardiamo i dati \u00e8 vero che nel 2018 ci sono pi\u00f9 posti di lavoro che nel 2017 ma il merito \u00e8 degli effetti del JobsAct e di Industria 4.0. Non delle misure di Di Maio. Come faccio a dirlo? Semplice, leggo i dati.\u2026 Altro\nDa quando Di Maio \u00e8 ministro ci sono 75mila posti di lavoro in meno, secondo i dati ISTAT. E addirittura 122mila posti a tempo indeterminato in meno. Alla faccia del Decreto Dignit\u00e0.\nDi Maio sta distruggendo il mondo del lavoro italiano: hanno messo un medico alla sanit\u00e0, una soldatessa alla Difesa e un Di Maio alla disoccupazione. Tutto torna.\nSono curioso di capire come faranno oggi i TG populisti a dare la notizia. Da quando Di Maio \u00e8 ministro i posti di lavoro diminuiscono. I TG diranno la verit\u00e0 o racconteranno le bugie dei grillini?", "post_text": "Oggi Di Maio ha sparato una BUFALA clamorosa. Ha detto che nel 2018 sono aumentati i posti di lavoro, prendendosene il merito. Allora, se guardiamo i dati \u00e8 vero che nel 2018 ci sono pi\u00f9 posti di lavoro che nel 2017 ma il merito \u00e8 degli effetti del JobsAct e di Industria 4.0. Non delle misure di Di Maio. Come faccio a dirlo? Semplice, leggo i dati.\u2026 Altro\nDa quando Di Maio \u00e8 ministro ci sono 75mila posti di lavoro in meno, secondo i dati ISTAT. E addirittura 122mila posti a tempo indeterminato in meno. Alla faccia del Decreto Dignit\u00e0.\nDi Maio sta distruggendo il mondo del lavoro italiano: hanno messo un medico alla sanit\u00e0, una soldatessa alla Difesa e un Di Maio alla disoccupazione. Tutto torna.\nSono curioso di capire come faranno oggi i TG populisti a dare la notizia. Da quando Di Maio \u00e8 ministro i posti di lavoro diminuiscono. I TG diranno la verit\u00e0 o racconteranno le bugie dei grillini?", "shared_text": "", "time": "2019-02-21 18:46:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156530643984915&id=113335124914", "link": null} +{"post_id": "10156529566929915", "text": "Leggo un\u2019intervista al Corriere in cui il Senatore Giarrusso, portavoce ufficiale del Movimento Cinque Stelle, dice che io dovrei \u201cessere impiccato\u201d. Penso che siamo oltre la barbarie. E stupisce che nessuno intervenga su questa frase allucinante. Se pensano di farmi paura, hanno sbagliato bersaglio. Buona giornata.", "post_text": "Leggo un\u2019intervista al Corriere in cui il Senatore Giarrusso, portavoce ufficiale del Movimento Cinque Stelle, dice che io dovrei \u201cessere impiccato\u201d. Penso che siamo oltre la barbarie. E stupisce che nessuno intervenga su questa frase allucinante. Se pensano di farmi paura, hanno sbagliato bersaglio. Buona giornata.", "shared_text": "", "time": "2019-02-21 10:15:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156529566929915&id=113335124914", "link": null} +{"post_id": "10156527343909915", "text": "Ieri Francia e Germania hanno fatto una proposta importante e giusta per superare le regole dell\u2019Antitrust europeo. Sembra un tema banale ma per me \u00e8 decisivo. E ne parlo anche in \u201cUn\u2019Altra strada\u201d. Peccato non vedere a questo tavolo l\u2019Italia. Questi sono i ministri di Francia e Germania: Di Maio dov\u2019era?", "post_text": "Ieri Francia e Germania hanno fatto una proposta importante e giusta per superare le regole dell\u2019Antitrust europeo. Sembra un tema banale ma per me \u00e8 decisivo. E ne parlo anche in \u201cUn\u2019Altra strada\u201d. Peccato non vedere a questo tavolo l\u2019Italia. Questi sono i ministri di Francia e Germania: Di Maio dov\u2019era?", "shared_text": "", "time": "2019-02-20 14:03:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p235x350/52855231_10156527343844915_4975921776526622720_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=13bzyZk51uEAQnONw30NF1m3ugk1GFR9jUuOAheaCJl_GPBd5B_OapHOA&_nc_ht=scontent-cdt1-1.xx&oh=ed2fd14d32864a5030f0e98cbca36980&oe=5E40ACFA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156527343909915&id=113335124914", "link": null} +{"post_id": "10156527237354915", "text": "Come promesso riprendiamo le presentazioni di #UnAltraStrada.\nCi vediamo venerd\u00ec 22 febbraio alle 18 al Lingotto a Torino. E alle 21.30 a Genova al Teatro della Giovent\u00f9.\nSenza rancore, ma con le nostre idee sul futuro dell\u2019Italia. Aspetto i commenti di chi ha letto il libro.", "post_text": "Come promesso riprendiamo le presentazioni di #UnAltraStrada.\nCi vediamo venerd\u00ec 22 febbraio alle 18 al Lingotto a Torino. E alle 21.30 a Genova al Teatro della Giovent\u00f9.\nSenza rancore, ma con le nostre idee sul futuro dell\u2019Italia. Aspetto i commenti di chi ha letto il libro.", "shared_text": "", "time": "2019-02-20 12:53:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156527237354915&id=113335124914", "link": null} +{"post_id": "10156525788639915", "text": "Sui miei ho gi\u00e0 detto tutto: adesso aspettiamo i processi e le sentenze. Il dolore da figlio lo immaginate. Ma sono davvero convinto che il tempo sia galantuomo. Aspettiamo le sentenze e vedremo chi ha ragione.\nTorno dunque al lavoro. E all\u2019attualit\u00e0. I dati ISTAT di oggi sono allucinanti. Crolla a dicembre 2018 il fatturato industriale del 7.3%. Ma crollano soprattutto gli ordinativi: meno 5% su gennaio. Nel primo trimestre del 2019 il PIL sar\u00e0 un bagno di sangue. Ma il Governo sembra vivere su un altro pianeta.", "post_text": "Sui miei ho gi\u00e0 detto tutto: adesso aspettiamo i processi e le sentenze. Il dolore da figlio lo immaginate. Ma sono davvero convinto che il tempo sia galantuomo. Aspettiamo le sentenze e vedremo chi ha ragione.\nTorno dunque al lavoro. E all\u2019attualit\u00e0. I dati ISTAT di oggi sono allucinanti. Crolla a dicembre 2018 il fatturato industriale del 7.3%. Ma crollano soprattutto gli ordinativi: meno 5% su gennaio. Nel primo trimestre del 2019 il PIL sar\u00e0 un bagno di sangue. Ma il Governo sembra vivere su un altro pianeta.", "shared_text": "", "time": "2019-02-19 19:30:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156525788639915&id=113335124914", "link": null} +{"post_id": "10156524935639915", "text": "ENEWS 19 FEBBRAIO (se vi va, condividetela)\nAvevo immaginato di scrivervi tutta un\u2019altra E-News.\nPensavo di raccontarvi l'entusiasmo di questo fine settimana. Ho girato molto in Emilia Romagna, Veneto, Lombardia, Piemonte per presentare il libro \u201cUn\u2019altra strada\u201d. E ho trovato un\u2019accoglienza superiore alle pi\u00f9 rosee aspettative. Ovunque centinaia\u2026 Altro di persone, voglia di non mollare, desiderio di discutere. Le foto di questi giorni parlano chiaro: un calore persino inatteso, a cominciare dalla Sala Rossa di Firenze dove eravamo in 1.500. Ma anche da Roma, Sasso Marconi, San Lazzaro di Savena, Este, Mestre, Erbusco, Treviglio, Cernusco sul Naviglio, Milano. E poi la trasmissione da Fazio, i\u2026 Altro", "post_text": "ENEWS 19 FEBBRAIO (se vi va, condividetela)\nAvevo immaginato di scrivervi tutta un\u2019altra E-News.\nPensavo di raccontarvi l'entusiasmo di questo fine settimana. Ho girato molto in Emilia Romagna, Veneto, Lombardia, Piemonte per presentare il libro \u201cUn\u2019altra strada\u201d. E ho trovato un\u2019accoglienza superiore alle pi\u00f9 rosee aspettative. Ovunque centinaia\u2026 Altro di persone, voglia di non mollare, desiderio di discutere. Le foto di questi giorni parlano chiaro: un calore persino inatteso, a cominciare dalla Sala Rossa di Firenze dove eravamo in 1.500. Ma anche da Roma, Sasso Marconi, San Lazzaro di Savena, Este, Mestre, Erbusco, Treviglio, Cernusco sul Naviglio, Milano. E poi la trasmissione da Fazio, i\u2026 Altro", "shared_text": "", "time": "2019-02-19 09:25:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156524935639915&id=113335124914", "link": null} +{"post_id": "10156523956904915", "text": "Sono costretto ad annullare la presentazione del libro a Torino per una grave vicenda personale. Da circa un\u2019ora mio padre e mia madre sono ai domiciliari. Ho molta fiducia nella giustizia italiana e penso che tutti i cittadini siano uguali davanti alla Legge. Dunque sono impaziente di assistere al processo. Perch\u00e9 chi ha letto le carte mi\u2026 Altro garantisce di non aver mai visto un provvedimento cos\u00ec assurdo e sproporzionato. Mai.\nAdesso chi crede nella giustizia aspetta le sentenze. Io credo nella giustizia italiana e lo dico oggi, con rispetto profondo, da servitore dello stato.\nArriveranno le sentenze e vedremo se questi due cittadini settantenni, incensurati, sono davvero i pericolosi criminali\u2026 Altro", "post_text": "Sono costretto ad annullare la presentazione del libro a Torino per una grave vicenda personale. Da circa un\u2019ora mio padre e mia madre sono ai domiciliari. Ho molta fiducia nella giustizia italiana e penso che tutti i cittadini siano uguali davanti alla Legge. Dunque sono impaziente di assistere al processo. Perch\u00e9 chi ha letto le carte mi\u2026 Altro garantisce di non aver mai visto un provvedimento cos\u00ec assurdo e sproporzionato. Mai.\nAdesso chi crede nella giustizia aspetta le sentenze. Io credo nella giustizia italiana e lo dico oggi, con rispetto profondo, da servitore dello stato.\nArriveranno le sentenze e vedremo se questi due cittadini settantenni, incensurati, sono davvero i pericolosi criminali\u2026 Altro", "shared_text": "", "time": "2019-02-18 21:04:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156523956904915&id=113335124914", "link": null} +{"post_id": "10156523078289915", "text": "Ieri sono tornato sul luogo del delitto: ho infatti partecipato a Che Tempo Che fa. L\u2019ultima volta che Fazio mi aveva intervistato era stata l\u2019occasione per dire NO all\u2019accordo coi Cinque Stelle. Ieri abbiamo parlato del perch\u00e9 a noi serve tracciare \u201cUn\u2019altra strada\u201d. Se vi va qui c\u2019\u00e8 l\u2019intervista di ieri", "post_text": "Ieri sono tornato sul luogo del delitto: ho infatti partecipato a Che Tempo Che fa. L\u2019ultima volta che Fazio mi aveva intervistato era stata l\u2019occasione per dire NO all\u2019accordo coi Cinque Stelle. Ieri abbiamo parlato del perch\u00e9 a noi serve tracciare \u201cUn\u2019altra strada\u201d. Se vi va qui c\u2019\u00e8 l\u2019intervista di ieri", "shared_text": "", "time": "2019-02-18 12:15:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=376567263177667&id=113335124914", "link": null} +{"post_id": "10156521893204915", "text": "Grazie a tutti per questo weekend ricco di emozioni. E grazie per il sostegno anche durante la trasmissione di Fazio. Penso proprio che abbiamo fatto bene a dire No all\u2019accordo coi grillini. La nostra \u00e8 #UnAltraStrada", "post_text": "Grazie a tutti per questo weekend ricco di emozioni. E grazie per il sostegno anche durante la trasmissione di Fazio. Penso proprio che abbiamo fatto bene a dire No all\u2019accordo coi grillini. La nostra \u00e8 #UnAltraStrada", "shared_text": "", "time": "2019-02-17 21:50:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156521893204915&id=113335124914", "link": null} +{"post_id": "10156521706669915", "text": "Cernusco e poi Milano. Bello toccare tanto entusiasmo! Quanta voglia di ribadire il nostro s\u00ec a politica, futuro, cultura, lavoro, verit\u00e0 ed Europa, contro populismi e spacciatori di paura, ignoranza, sussidi,\u2026 Altro fake news e nazionalismi. Un'altra strada c'\u00e8 e siamo in tanti a non rassegnarci. Tra poco, alle 20.40, vi aspetto su Rai 1 da Fabio Fazio.", "post_text": "Cernusco e poi Milano. Bello toccare tanto entusiasmo! Quanta voglia di ribadire il nostro s\u00ec a politica, futuro, cultura, lavoro, verit\u00e0 ed Europa, contro populismi e spacciatori di paura, ignoranza, sussidi,\u2026 Altro fake news e nazionalismi. Un'altra strada c'\u00e8 e siamo in tanti a non rassegnarci. Tra poco, alle 20.40, vi aspetto su Rai 1 da Fabio Fazio.", "shared_text": "", "time": "2019-02-17 19:53:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/52532751_10156521706089915_8260259941810438144_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=KkQsfQFlqnMAQkIwwlAXZknuvTUjB5HVBTxxRlXxlRbpSEI9hwbxwl_Cg&_nc_ht=scontent-cdt1-1.xx&oh=f16e885e8a20bdadacfb862564c87754&oe=5E7BB4EC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156521706669915&id=113335124914", "link": null} +{"post_id": "10156520982429915", "text": "Iniziare la mattinata con 500 persone in una meravigliosa cantina del Franciacorta. E senza bere! Adesso #UnAltraStrada verso Treviglio, Cernusco, Milano #BuonaDomenica", "post_text": "Iniziare la mattinata con 500 persone in una meravigliosa cantina del Franciacorta. E senza bere! Adesso #UnAltraStrada verso Treviglio, Cernusco, Milano #BuonaDomenica", "shared_text": "", "time": "2019-02-17 12:07:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/52647477_10156520981584915_8274116704603209728_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=cX-WNLmQ8K0AQlcS81WlKcB0BmmGxvnJy2FKZe1w2Ez4DzhxefKy-E3Iw&_nc_ht=scontent-cdt1-1.xx&oh=79f4959ebc4ac89ec509403a2773bf7a&oe=5E44E4B3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156520982429915&id=113335124914", "link": null} +{"post_id": "10156519669014915", "text": "Sasso Marconi, San Lazzaro di Savena, Este, Mestre. Adesso Verona. Sale strapiene di persone che chiedono di camminare su #UnAltraStrada", "post_text": "Sasso Marconi, San Lazzaro di Savena, Este, Mestre. Adesso Verona. Sale strapiene di persone che chiedono di camminare su #UnAltraStrada", "shared_text": "", "time": "2019-02-16 20:48:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/51987051_10156519666889915_2353164752722591744_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=Cd2V8Ts8cwkAQlJ8H6ksSOJem6x4KXquwq4UZ53iB5eU22hwS0Y77IROg&_nc_ht=scontent-cdt1-1.xx&oh=5e7bcc59e7797c017785e0f4e033281a&oe=5E8208F3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156519669014915&id=113335124914", "link": null} +{"post_id": "304467533596886", "text": "In diretta da San Lazzaro di Savena", "post_text": "In diretta da San Lazzaro di Savena", "shared_text": "", "time": "2019-02-16 11:55:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=304467533596886&id=113335124914", "link": null} +{"post_id": "294376771221871", "text": "In diretta da Firenze", "post_text": "In diretta da Firenze", "shared_text": "", "time": "2019-02-15 21:19:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=294376771221871&id=113335124914", "link": null} +{"post_id": "10156516914699915", "text": "Grazie a tutti per l\u2019accoglienza di \u201cUn\u2019altra strada\u201d, sia in libreria che su Amazon. Stasera ci vediamo a Firenze, nella nostra \u201cSala Rossa\u201d al Palazzo dei Congressi. Esattamente 10 anni dopo il... fattaccio. Aspetto i fiorentini per una serata speciale.", "post_text": "Grazie a tutti per l\u2019accoglienza di \u201cUn\u2019altra strada\u201d, sia in libreria che su Amazon. Stasera ci vediamo a Firenze, nella nostra \u201cSala Rossa\u201d al Palazzo dei Congressi. Esattamente 10 anni dopo il... fattaccio. Aspetto i fiorentini per una serata speciale.", "shared_text": "", "time": "2019-02-15 16:13:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156516914699915&id=113335124914", "link": null} +{"post_id": "393289231454634", "text": "In diretta da Roma", "post_text": "In diretta da Roma", "shared_text": "", "time": "2019-02-14 17:57:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=393289231454634&id=113335124914", "link": null} +{"post_id": "528881050934763", "text": "In diretta dal Tempio di Adriano a Roma\n#UnAltraStrada", "post_text": "In diretta dal Tempio di Adriano a Roma\n#UnAltraStrada", "shared_text": "", "time": "2019-02-14 17:20:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=528881050934763&id=113335124914", "link": null} +{"post_id": "10156513821569915", "text": "Sono stato torchiato da Gian Antonio Stella. \u00c8 una penna che ammiro da anni. Prima de La Casta aveva scritto un libro meraviglioso (L\u2019Orda, Quando gli albanesi eravamo noi). \u00c8 una intervista tosta, se vi va la trovate qui.\nMATTEORENZI.IT\n\"Io ero il barbaro, Conte \u00e8 l'uomo dei salotti\" - Intervista a Sette - Matteo Renzi", "post_text": "Sono stato torchiato da Gian Antonio Stella. \u00c8 una penna che ammiro da anni. Prima de La Casta aveva scritto un libro meraviglioso (L\u2019Orda, Quando gli albanesi eravamo noi). \u00c8 una intervista tosta, se vi va la trovate qui.", "shared_text": "MATTEORENZI.IT\n\"Io ero il barbaro, Conte \u00e8 l'uomo dei salotti\" - Intervista a Sette - Matteo Renzi", "time": "2019-02-14 11:31:00", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDjV7M4PchgBgJM&w=476&h=249&url=https%3A%2F%2Fwww.matteorenzi.it%2Fwp-content%2Fuploads%2F2019%2F02%2Fcover-sette-corsera.png&cfs=1&jq=75&ext=jpg&_nc_hash=AQDaVMr_jjT8Wnld", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156513821569915&id=113335124914", "link": "https://www.matteorenzi.it/un-altra-strada-intervista-sette-gian-antonio-stella/?fbclid=IwAR23wv88EShGYpzuICtw6CTBWr-BaK8aC_LO8P5TqiVCFlL9ofxeiT45XGk"} +{"post_id": "10156513620509915", "text": "Stamattina alcuni quotidiani, a cominciare dal Financial Times, dedicano spazio al libro Un\u2019altra strada. Mi piacerebbe tanto che il libro aiutasse a riflettere. Ci sono delle proposte. Chi le vorr\u00e0 discutere \u00e8\u2026 Altro il benvenuto. Domani sera alle 21 sar\u00f2 nella mia Firenze per il lancio ufficiale (anticipazioni oggi a Roma, poi giriamo in tutta Italia). Davanti all\u2019incompetenza di questo Governo che ha portato l\u2019Italia in recessione, c\u2019\u00e8 un\u2019altra strada. E vorrei percorrerla insieme a chi crede nella verit\u00e0 e non nelle fake news. A chi crede nella cultura e non nell\u2019ignoranza. A chi crede nell\u2019Europa e non nel nazionalismo. A chi crede nel futuro e non nella paura. Buona strada a tutti noi.", "post_text": "Stamattina alcuni quotidiani, a cominciare dal Financial Times, dedicano spazio al libro Un\u2019altra strada. Mi piacerebbe tanto che il libro aiutasse a riflettere. Ci sono delle proposte. Chi le vorr\u00e0 discutere \u00e8\u2026 Altro il benvenuto. Domani sera alle 21 sar\u00f2 nella mia Firenze per il lancio ufficiale (anticipazioni oggi a Roma, poi giriamo in tutta Italia). Davanti all\u2019incompetenza di questo Governo che ha portato l\u2019Italia in recessione, c\u2019\u00e8 un\u2019altra strada. E vorrei percorrerla insieme a chi crede nella verit\u00e0 e non nelle fake news. A chi crede nella cultura e non nell\u2019ignoranza. A chi crede nell\u2019Europa e non nel nazionalismo. A chi crede nel futuro e non nella paura. Buona strada a tutti noi.", "shared_text": "", "time": "2019-02-14 08:59:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/52323635_10156513620229915_7421544543633276928_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=WZ5TQshEv6cAQmF3RPGpW0Z1jw--woceY24zzeB2TWxvIHKCfGpFRCofg&_nc_ht=scontent-cdt1-1.xx&oh=5b0fae64c89a87cbbf6ad1f47abfb0bf&oe=5E45CD01", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156513620509915&id=113335124914", "link": null} +{"post_id": "10156511461194915", "text": "I Cinque Stelle perdono le regionali in Abruzzo. E Beppe Grillo dice: restituiteci i 700.000\u20ac che vi abbiamo dato con i rimborsi. Voi pensate che questa sia una battuta. In realt\u00e0 \u00e8 il modello di democrazia che hanno in testa i populisti. Non \u00e8 un caso isolato: nel libro \"Un'altra strada\" faccio molti esempi di questo genere. E sottolineo perch\u00e9\u2026 Altro noi siamo un'altra cosa.\nIn queste ore Toninelli sulla Tav, Di Maio sul reddito di cittadinanza, Grillo sull'Abruzzo, Di Battista su tutto stanno mostrando le ragioni per le quali non abbiamo voluto fare accordi con i Cinque Stelle. E finalmente, anche in casa nostra, se ne sono accorti tutti. O quasi.", "post_text": "I Cinque Stelle perdono le regionali in Abruzzo. E Beppe Grillo dice: restituiteci i 700.000\u20ac che vi abbiamo dato con i rimborsi. Voi pensate che questa sia una battuta. In realt\u00e0 \u00e8 il modello di democrazia che hanno in testa i populisti. Non \u00e8 un caso isolato: nel libro \"Un'altra strada\" faccio molti esempi di questo genere. E sottolineo perch\u00e9\u2026 Altro noi siamo un'altra cosa.\nIn queste ore Toninelli sulla Tav, Di Maio sul reddito di cittadinanza, Grillo sull'Abruzzo, Di Battista su tutto stanno mostrando le ragioni per le quali non abbiamo voluto fare accordi con i Cinque Stelle. E finalmente, anche in casa nostra, se ne sono accorti tutti. O quasi.", "shared_text": "", "time": "2019-02-13 11:10:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156511461194915&id=113335124914", "link": null} +{"post_id": "10156509266974915", "text": "Il report costi benefici di Toninelli \u00e8 una barzelletta che non fa ridere. C\u2019\u00e8 un dato per\u00f2 che andrebbe studiato. Persino gli esperti di Toninelli spiegano che con la Tav Torino Lione si abbattono 500.000 tonnellate di CO2, mezzo punto percentuale delle emissioni italiane di CO2 con un solo tunnel. Lo ammettono anche loro. Chi ama l\u2019ambiente sceglie la TAV e non inquina su gomma.", "post_text": "Il report costi benefici di Toninelli \u00e8 una barzelletta che non fa ridere. C\u2019\u00e8 un dato per\u00f2 che andrebbe studiato. Persino gli esperti di Toninelli spiegano che con la Tav Torino Lione si abbattono 500.000 tonnellate di CO2, mezzo punto percentuale delle emissioni italiane di CO2 con un solo tunnel. Lo ammettono anche loro. Chi ama l\u2019ambiente sceglie la TAV e non inquina su gomma.", "shared_text": "", "time": "2019-02-12 20:14:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156509266974915&id=113335124914", "link": null} +{"post_id": "10156498048389915", "text": "Con la Francia dobbiamo condividere valori e iniziative, come quella di Leonardo 2019, non fare polemiche assurde, di cui c\u2019\u00e8 solo da vergognarsi. La disfatta della politica estera italiana in #60secondi", "post_text": "Con la Francia dobbiamo condividere valori e iniziative, come quella di Leonardo 2019, non fare polemiche assurde, di cui c\u2019\u00e8 solo da vergognarsi. La disfatta della politica estera italiana in #60secondi", "shared_text": "", "time": "2019-02-07 19:50:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2698427576864636&id=113335124914", "link": null} +{"post_id": "10156495311739915", "text": "Ieri il Vicepremier della Repubblica Italiana, Di Maio, non ha partecipato al Consiglio Dei Ministri perch\u00e9 ha preso un aereo ed \u00e8 andato a incontrare la frangia pi\u00f9 agguerrita dei Gilet Gialli francesi.\nVogliono fare un accordo per le europee, contro Macron. Tra i teppisti e le Istituzioni, io sto sempre dalla parte delle Istituzioni. E mi stupisce che nessuno faccia notare a Di Maio che un Paese democratico come la Francia merita il rispetto del Governo Italiano, non le alleanze con i teppisti.", "post_text": "Ieri il Vicepremier della Repubblica Italiana, Di Maio, non ha partecipato al Consiglio Dei Ministri perch\u00e9 ha preso un aereo ed \u00e8 andato a incontrare la frangia pi\u00f9 agguerrita dei Gilet Gialli francesi.\nVogliono fare un accordo per le europee, contro Macron. Tra i teppisti e le Istituzioni, io sto sempre dalla parte delle Istituzioni. E mi stupisce che nessuno faccia notare a Di Maio che un Paese democratico come la Francia merita il rispetto del Governo Italiano, non le alleanze con i teppisti.", "shared_text": "", "time": "2019-02-06 14:33:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156495311739915&id=113335124914", "link": null} +{"post_id": "10156495003539915", "text": "Ringrazio Raffaelle Cantone per il lavoro svolto insieme contro la corruzione. Quando cinque anni fa siamo partiti non ci credeva nessuno. Oggi l\u2019ANAC \u00e8 una realt\u00e0 che fa da modello anche a livello internazionale.", "post_text": "Ringrazio Raffaelle Cantone per il lavoro svolto insieme contro la corruzione. Quando cinque anni fa siamo partiti non ci credeva nessuno. Oggi l\u2019ANAC \u00e8 una realt\u00e0 che fa da modello anche a livello internazionale.", "shared_text": "", "time": "2019-02-06 10:43:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/51590766_10156495003329915_26688402791333888_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=DAeq2kGAQNcAQli0qHoKUonSwPOPb_A7EVeYud_tVdM1h1fJW27EDV0HA&_nc_ht=scontent-cdt1-1.xx&oh=c360d93e0730f8bf3ae7a768287f90be&oe=5E4C24A7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156495003539915&id=113335124914", "link": null} +{"post_id": "10156493522019915", "text": "Ok adesso c\u2019\u00e8 Sanremo. Ma prima che inizi ultimo post sul Venezuela. Oggi ho ricevuto una telefonata del Presidente Guaid\u00f2 che ringrazia per il sostegno di questi giorni. La posizione del Governo ci sta screditando in tutto il mondo.\nL\u2019Italia deve stare con la libert\u00e0, non con la dittatura.", "post_text": "Ok adesso c\u2019\u00e8 Sanremo. Ma prima che inizi ultimo post sul Venezuela. Oggi ho ricevuto una telefonata del Presidente Guaid\u00f2 che ringrazia per il sostegno di questi giorni. La posizione del Governo ci sta screditando in tutto il mondo.\nL\u2019Italia deve stare con la libert\u00e0, non con la dittatura.", "shared_text": "", "time": "2019-02-05 20:55:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156493522019915&id=113335124914", "link": null} +{"post_id": "10156492878839915", "text": "Questa \u00e8 la copertina del libro che uscir\u00e0 il prossimo 14 febbraio. Vi piace? Sono felice di tornare a abbracciare tanti di voi nelle presentazioni. Qui (http://bit.ly/UnAltraStrada) il link alla casa editrice Marsilio che racconta qualcosa in pi\u00f9.\n#UnAltraStrada", "post_text": "Questa \u00e8 la copertina del libro che uscir\u00e0 il prossimo 14 febbraio. Vi piace? Sono felice di tornare a abbracciare tanti di voi nelle presentazioni. Qui (http://bit.ly/UnAltraStrada) il link alla casa editrice Marsilio che racconta qualcosa in pi\u00f9.\n#UnAltraStrada", "shared_text": "", "time": "2019-02-05 14:51:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/51245428_10156492878789915_2858331985670045696_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=qqK58xas3ZQAQkWAVxeiowRGlSqK4eCyfJIlK0GRhJOtCsZVQ_IPdEHAQ&_nc_ht=scontent-cdt1-1.xx&oh=a401e88ea8983888f6da39d6741a50ee&oe=5E87D760", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156492878839915&id=113335124914", "link": "https://bit.ly/UnAltraStrada?fbclid=IwAR3J98FwSBTYxRn8flhX65CyOZ3ZhaAQ8DC5aKORfEdBXo5PDKLx81pzx_E"} +{"post_id": "10156490148339915", "text": "Bravo il Premier spagnolo Sanchez che riconosce ufficialmente Guaid\u00f2 nuovo Presidente del Venezuela. Provo imbarazzo e vergogna per la posizione italiana. Stop alla dittatura di Maduro!", "post_text": "Bravo il Premier spagnolo Sanchez che riconosce ufficialmente Guaid\u00f2 nuovo Presidente del Venezuela. Provo imbarazzo e vergogna per la posizione italiana. Stop alla dittatura di Maduro!", "shared_text": "", "time": "2019-02-04 10:24:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156490148339915&id=113335124914", "link": null} +{"post_id": "10156488650409915", "text": "Penso che verr\u00e0 presto il giorno in cui Conte, Moavero, Salvini e Di Maio si vergogneranno per essere stati dalla parte sbagliata della storia. Io sto con i nostri connazionali, contro la dittatura e per la libert\u00e0.", "post_text": "Penso che verr\u00e0 presto il giorno in cui Conte, Moavero, Salvini e Di Maio si vergogneranno per essere stati dalla parte sbagliata della storia. Io sto con i nostri connazionali, contro la dittatura e per la libert\u00e0.", "shared_text": "", "time": "2019-02-03 18:06:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=775145792860894&id=113335124914", "link": null} +{"post_id": "10156485543034915", "text": "Il posizionamento del Governo italiano sul Venezuela \u00e8 SCANDALOSO. Tradisce la nostra storia, si allontana dagli altri paesi europei, abbandona i nostri connazionali in Venezuela, va contro gli ideali di libert\u00e0 e democrazia e in fin dei conti sostiene una dittatura sanguinosa che ha disintegrato quel bellissimo Paese.\nCapisco che la politica estera non attiri nessuno o quasi. Ma sinceramente temo che pagheremo per anni le conseguenze della pavida scelta di questi giorni.\nUn abbraccio ai fratelli venezuelani.", "post_text": "Il posizionamento del Governo italiano sul Venezuela \u00e8 SCANDALOSO. Tradisce la nostra storia, si allontana dagli altri paesi europei, abbandona i nostri connazionali in Venezuela, va contro gli ideali di libert\u00e0 e democrazia e in fin dei conti sostiene una dittatura sanguinosa che ha disintegrato quel bellissimo Paese.\nCapisco che la politica estera non attiri nessuno o quasi. Ma sinceramente temo che pagheremo per anni le conseguenze della pavida scelta di questi giorni.\nUn abbraccio ai fratelli venezuelani.", "shared_text": "", "time": "2019-02-02 11:09:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156485543034915&id=113335124914", "link": null} +{"post_id": "10156483651454915", "text": "Non possiamo far finta di niente, rimanere indifferenti. Le immagini che ci giungono negli ultimi giorni da Caracas mostrano centinaia di migliaia di cittadini venezuelani manifestare pacificamente contro il\u2026 Altro governo populista di Maduro e per il ripristino della democrazia. Uomini, donne, bambini che semplicemente non ce la fanno pi\u00f9. E che chiedono di essere ascoltati. Il Venezuela \u00e8 uno dei paesi pi\u00f9 ricchi di risorse minerarie e petrolifere al mondo e paradossalmente \u00e8 il Paese dove oggi la povert\u00e0 estrema ha raggiunto il 40% della popolazione, dove scarseggiano anche le medicine pi\u00f9 elementari e dal quale sono gi\u00e0 fuggiti 3 milioni di persone. Un Paese dove l\u2019inflazione \u00e8 oltre un\u2026 Altro", "post_text": "Non possiamo far finta di niente, rimanere indifferenti. Le immagini che ci giungono negli ultimi giorni da Caracas mostrano centinaia di migliaia di cittadini venezuelani manifestare pacificamente contro il\u2026 Altro governo populista di Maduro e per il ripristino della democrazia. Uomini, donne, bambini che semplicemente non ce la fanno pi\u00f9. E che chiedono di essere ascoltati. Il Venezuela \u00e8 uno dei paesi pi\u00f9 ricchi di risorse minerarie e petrolifere al mondo e paradossalmente \u00e8 il Paese dove oggi la povert\u00e0 estrema ha raggiunto il 40% della popolazione, dove scarseggiano anche le medicine pi\u00f9 elementari e dal quale sono gi\u00e0 fuggiti 3 milioni di persone. Un Paese dove l\u2019inflazione \u00e8 oltre un\u2026 Altro", "shared_text": "", "time": "2019-02-01 15:28:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/51319374_10156483651009915_6126273782588899328_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=H9N4yW6Sf8kAQkq6qqJJ-dpDR9e7kj7G4yc72e8Ul_l4555OlKY3bKWow&_nc_ht=scontent-cdt1-1.xx&oh=5fe757f0787004981d541ebd118ca341&oe=5E4060C3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156483651454915&id=113335124914", "link": null} +{"post_id": "10156482959144915", "text": "Questo signore ha segnato la nostra giovent\u00f9: ci ha fatto esultare, piangere, emozionare. \u00c8 stato con noi a lottare in serie B e ha zittito gli avversari negli stadi pi\u00f9 belli del mondo. Ha amato Firenze ed \u00e8\u2026 Altro stato amato con una passione travolgente. Oggi che compie 50 anni il primo pensiero \u00e8 per lui, per il Re Leone. Buon compleanno a Gabriel Omar Batistuta.", "post_text": "Questo signore ha segnato la nostra giovent\u00f9: ci ha fatto esultare, piangere, emozionare. \u00c8 stato con noi a lottare in serie B e ha zittito gli avversari negli stadi pi\u00f9 belli del mondo. Ha amato Firenze ed \u00e8\u2026 Altro stato amato con una passione travolgente. Oggi che compie 50 anni il primo pensiero \u00e8 per lui, per il Re Leone. Buon compleanno a Gabriel Omar Batistuta.", "shared_text": "", "time": "2019-02-01 08:47:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/50641998_10156482959109915_50683349986967552_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=fZcB7HBWet8AQl7dauxLNgi3wMJ5Ru9RJfxEDespbBpHBhYMmZxhh2MAA&_nc_ht=scontent-cdt1-1.xx&oh=38837b8602503b122743de80db92e7eb&oe=5E4B8FAC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156482959144915&id=113335124914", "link": null} +{"post_id": "553485955133735", "text": "Un appello al Governo: fermatevi e cambiate strada #60secondi", "post_text": "Un appello al Governo: fermatevi e cambiate strada #60secondi", "shared_text": "", "time": "2019-01-31 14:16:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=553485955133735&id=113335124914", "link": null} +{"post_id": "10156480727054915", "text": "Da quando c\u2019\u00e8 il nuovo Governo l\u2019Italia ha perso 76 Mila posti di lavoro (dati ufficiali ISTAT) e il PIL \u00e8 per la seconda volta in negativo. Siamo in recessione. Chi vuol bene all\u2019Italia sa che le scelte economiche di Salvini e Di Maio sono sbagliate. Con le nostre scelte quattordici trimestri di crescita, con le loro scelte subito recessione. Stanno portando il Paese a sbattere: cambiamo strada prima che sia troppo tardi.", "post_text": "Da quando c\u2019\u00e8 il nuovo Governo l\u2019Italia ha perso 76 Mila posti di lavoro (dati ufficiali ISTAT) e il PIL \u00e8 per la seconda volta in negativo. Siamo in recessione. Chi vuol bene all\u2019Italia sa che le scelte economiche di Salvini e Di Maio sono sbagliate. Con le nostre scelte quattordici trimestri di crescita, con le loro scelte subito recessione. Stanno portando il Paese a sbattere: cambiamo strada prima che sia troppo tardi.", "shared_text": "", "time": "2019-01-31 11:11:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156480727054915&id=113335124914", "link": null} +{"post_id": "10156479368934915", "text": "I dati del PIL sono stati positivi per quattordici trimestri consecutivi, dal 2014 al primo semestre 2018. Poi \u00e8 arrivato il Governo del Cambiamento e il PIL \u00e8 diventato negativo: l'Italia va tecnicamente in recessione.\nNon \u00e8 che portano sfiga, sono solo incapaci.\nE il conto lo pagher\u00e0 la classe media", "post_text": "I dati del PIL sono stati positivi per quattordici trimestri consecutivi, dal 2014 al primo semestre 2018. Poi \u00e8 arrivato il Governo del Cambiamento e il PIL \u00e8 diventato negativo: l'Italia va tecnicamente in recessione.\nNon \u00e8 che portano sfiga, sono solo incapaci.\nE il conto lo pagher\u00e0 la classe media", "shared_text": "", "time": "2019-01-30 19:21:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156479368934915&id=113335124914", "link": null} +{"post_id": "10156476362409915", "text": "Ritirare o meno le truppe dall'Afghanistan non \u00e8 la decisione privata di un ministro. Siamo andati l\u00ec, insieme ad altri, perch\u00e9 c'era una minaccia dei talebani e degli estremisti islamici. Abbiamo prolungato pi\u00f9 volte la missione. Decidere se ritirarsi da una missione che va avanti da anni richiede una discussione approfondita, vera, seria. Non \u00e8\u2026 Altro uno slogan. Ne va della nostra sicurezza. Tutti preferiamo che i nostri ragazzi tornino a casa. Ma non sono l\u00ec in villeggiatura. Sono l\u00ec per difendere la sicurezza di tutti. Chi decide quando non servono pi\u00f9? Un ministro non pu\u00f2 fare tutto da solo. L'Italia \u00e8 un grande Paese: non si pu\u00f2 gestire a caso la politica estera.", "post_text": "Ritirare o meno le truppe dall'Afghanistan non \u00e8 la decisione privata di un ministro. Siamo andati l\u00ec, insieme ad altri, perch\u00e9 c'era una minaccia dei talebani e degli estremisti islamici. Abbiamo prolungato pi\u00f9 volte la missione. Decidere se ritirarsi da una missione che va avanti da anni richiede una discussione approfondita, vera, seria. Non \u00e8\u2026 Altro uno slogan. Ne va della nostra sicurezza. Tutti preferiamo che i nostri ragazzi tornino a casa. Ma non sono l\u00ec in villeggiatura. Sono l\u00ec per difendere la sicurezza di tutti. Chi decide quando non servono pi\u00f9? Un ministro non pu\u00f2 fare tutto da solo. L'Italia \u00e8 un grande Paese: non si pu\u00f2 gestire a caso la politica estera.", "shared_text": "", "time": "2019-01-29 12:50:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156476362409915&id=113335124914", "link": null} +{"post_id": "10156474898714915", "text": "Sono arrivate in Senato le carte del Tribunale dei Ministri nei confronti di Matteo Salvini. Dopo averle lette con attenzione e senza alcun pregiudizio ideologico, voter\u00f2 a favore della richiesta di autorizzazione a procedere.", "post_text": "Sono arrivate in Senato le carte del Tribunale dei Ministri nei confronti di Matteo Salvini. Dopo averle lette con attenzione e senza alcun pregiudizio ideologico, voter\u00f2 a favore della richiesta di autorizzazione a procedere.", "shared_text": "", "time": "2019-01-28 17:25:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156474898714915&id=113335124914", "link": null} +{"post_id": "10156471841699915", "text": "La Giornata della Memoria non \u00e8 una cerimonia, ma un impegno da assumere tutti i giorni: noi non dimenticheremo gli orrori dell\u2019Olocausto. Mai.", "post_text": "La Giornata della Memoria non \u00e8 una cerimonia, ma un impegno da assumere tutti i giorni: noi non dimenticheremo gli orrori dell\u2019Olocausto. Mai.", "shared_text": "", "time": "2019-01-27 12:12:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156471841699915&id=113335124914", "link": null} +{"post_id": "10156466364559915", "text": "Stanotte ci ha lasciati Silvano Sarti. Era un partigiano che amava stare con i giovani. Raccontava con il suo vocione le storie della Resistenza e della Liberazione di Firenze. I suoi discorsi dell\u201911 agosto in\u2026 Altro Palazzo Vecchio erano interminabili e bellissimi canti d\u2019amore per la libert\u00e0: finiva, tutto il salone in piedi per applaudirlo e lui si voltava piano verso di me: \u201cCome sono andato?\u201d\nEducava i giovani all\u2019impegno: \u201cRagazzi, voi vu siete pi\u00f9 importanti del telefonino che vu tenete fisso in mano. Quando s\u2019aveva la vostra et\u00e0 a qualcuno di noi \u00e8 toccato morire per la vostra libert\u00e0\u201d. Amava la politica e incoraggiava tutti a mettersi in gioco, sempre: \u201cMi raccomando, non mollare\u201d. Per me \u00e8 stato un punto di riferimento e un amico vero.\nBuon viaggio, Silvano. Grazie per quello che sei stato e che continuerai a essere nel cuore di chi ha camminato con te.", "post_text": "Stanotte ci ha lasciati Silvano Sarti. Era un partigiano che amava stare con i giovani. Raccontava con il suo vocione le storie della Resistenza e della Liberazione di Firenze. I suoi discorsi dell\u201911 agosto in\u2026 Altro Palazzo Vecchio erano interminabili e bellissimi canti d\u2019amore per la libert\u00e0: finiva, tutto il salone in piedi per applaudirlo e lui si voltava piano verso di me: \u201cCome sono andato?\u201d\nEducava i giovani all\u2019impegno: \u201cRagazzi, voi vu siete pi\u00f9 importanti del telefonino che vu tenete fisso in mano. Quando s\u2019aveva la vostra et\u00e0 a qualcuno di noi \u00e8 toccato morire per la vostra libert\u00e0\u201d. Amava la politica e incoraggiava tutti a mettersi in gioco, sempre: \u201cMi raccomando, non mollare\u201d. Per me \u00e8 stato un punto di riferimento e un amico vero.\nBuon viaggio, Silvano. Grazie per quello che sei stato e che continuerai a essere nel cuore di chi ha camminato con te.", "shared_text": "", "time": "2019-01-25 11:31:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/51095857_10156466364539915_4055861080742690816_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=bwHITy9hiFYAQmCBshlLi4ZKl1wAbPiM_6mhUk77NjWxaYKalNU4Hay6g&_nc_ht=scontent-cdt1-1.xx&oh=25d4d87b40c9f3bf1a5adf1c57e9cabc&oe=5E411853", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156466364559915&id=113335124914", "link": null} +{"post_id": "10156464858279915", "text": "Lega e Cinque Stelle stanno copiando la Prima Repubblica. Dire quota 100 significa richiamare i \"prepensionamenti\": tanto pagano i giovani.\nDire Reddito di Cittadinanza significa affermare l'assistenzialismo e favorire il lavoro nero.\nMa l'elemento sul quale meno si sta riflettendo \u00e8 quello dell'assunzione di DIECIMILA persone, senza concorso\u2026 Altro pubblico, per fare i Navigator.\nDIECIMILA PERSONE assunte cos\u00ec. E naturalmente Di Maio gi\u00e0 promette che saranno stabilizzate. DIECIMILA PERSONE che con un colloquio entreranno nella Pubblica Amministrazione. A naso per restarci per sempre. Sinceramente: vi sembra giusto?", "post_text": "Lega e Cinque Stelle stanno copiando la Prima Repubblica. Dire quota 100 significa richiamare i \"prepensionamenti\": tanto pagano i giovani.\nDire Reddito di Cittadinanza significa affermare l'assistenzialismo e favorire il lavoro nero.\nMa l'elemento sul quale meno si sta riflettendo \u00e8 quello dell'assunzione di DIECIMILA persone, senza concorso\u2026 Altro pubblico, per fare i Navigator.\nDIECIMILA PERSONE assunte cos\u00ec. E naturalmente Di Maio gi\u00e0 promette che saranno stabilizzate. DIECIMILA PERSONE che con un colloquio entreranno nella Pubblica Amministrazione. A naso per restarci per sempre. Sinceramente: vi sembra giusto?", "shared_text": "", "time": "2019-01-24 17:54:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156464858279915&id=113335124914", "link": null} +{"post_id": "10156464638454915", "text": "Vi ricordate l\u2019assurda norma voluta dal Governo in legge di bilancio che aumentava le tasse al volontariato e al no profit? Oggi grazie a un emendamento del Pd, primo firmatario Andrea Marcucci, \u00e8 stata cancellata. \u00c8 un piccolo segno positivo ma \u00e8 giusto sottolinearlo. Grazie Andrea e grazie soprattutto a tutti i volontari italiani che si impegnano nel terzo settore e nell\u2019associazionismo.", "post_text": "Vi ricordate l\u2019assurda norma voluta dal Governo in legge di bilancio che aumentava le tasse al volontariato e al no profit? Oggi grazie a un emendamento del Pd, primo firmatario Andrea Marcucci, \u00e8 stata cancellata. \u00c8 un piccolo segno positivo ma \u00e8 giusto sottolinearlo. Grazie Andrea e grazie soprattutto a tutti i volontari italiani che si impegnano nel terzo settore e nell\u2019associazionismo.", "shared_text": "", "time": "2019-01-24 16:22:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156464638454915&id=113335124914", "link": null} +{"post_id": "10156464253959915", "text": "#60secondi dal Senato. Anche oggi l\u2019Aula non vota il Decreto Semplificazione. Ennesimo rinvio. E allora guardiamo i dati ufficiali delle conseguenze degli altri provvedimenti: grazie a Di Maio cresce la disoccupazione: +5.2%", "post_text": "#60secondi dal Senato. Anche oggi l\u2019Aula non vota il Decreto Semplificazione. Ennesimo rinvio. E allora guardiamo i dati ufficiali delle conseguenze degli altri provvedimenti: grazie a Di Maio cresce la disoccupazione: +5.2%", "shared_text": "", "time": "2019-01-24 13:15:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=315673802480499&id=113335124914", "link": null} +{"post_id": "10156464062004915", "text": "Il Venezuela \u00e8 stato distrutto da una dittatura feroce. Anche chi in questi anni ha visto nel regime di Caracas un modello deve prendere atto che Chavez prima e Maduro poi hanno devastato questo bellissimo Paese.\nAdesso l'Europa deve trovare il coraggio di sostenere subito l'unica Istituzione democratica rimasta, l'Assemblea Nazionale, e appoggiare il suo Presidente Guaid\u00f2 per andare rapidamente a elezioni veramente democratiche.\nI bambini muoiono di fame in Venezuela: non si pu\u00f2 aspettare ancora. Viva la libert\u00e0, viva la democrazia.", "post_text": "Il Venezuela \u00e8 stato distrutto da una dittatura feroce. Anche chi in questi anni ha visto nel regime di Caracas un modello deve prendere atto che Chavez prima e Maduro poi hanno devastato questo bellissimo Paese.\nAdesso l'Europa deve trovare il coraggio di sostenere subito l'unica Istituzione democratica rimasta, l'Assemblea Nazionale, e appoggiare il suo Presidente Guaid\u00f2 per andare rapidamente a elezioni veramente democratiche.\nI bambini muoiono di fame in Venezuela: non si pu\u00f2 aspettare ancora. Viva la libert\u00e0, viva la democrazia.", "shared_text": "", "time": "2019-01-24 10:20:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156464062004915&id=113335124914", "link": null} +{"post_id": "10156463012419915", "text": "Lo hanno mediaticamente massacrato.\nHanno costruito intere trasmissioni contro di lui.\nLo hanno dipinto come un molestatore.\nPoi si \u00e8 scoperto che era innocente.\nChe le ragazze non avevano detto tutta la verit\u00e0.\nChe il famoso giornalista della famosa trasmissione aveva elementi di ostilit\u00e0 preconcetta contro di lui.\nE oggi - dopo mesi di\u2026 Altro gogna mediatica - i giudici, persone serie, lo hanno definitivamente archiviato.\nLui si chiama Fausto Brizzi ed \u00e8 un cittadino innocente. E' anche un mio amico e spero che anche questo non abbia contribuito a danneggiarlo.\nSpero soprattutto che chi ha provato a distruggergli la vita stasera si faccia un esame di coscienza.\nLa giustizia \u00e8 una cosa molto pi\u00f9 seria dei servizi scandalistici di qualche Ex Iena ora impegnata al Governo.\nLa giustizia non \u00e8 il giustizialismo.\nE noi stiamo dalla parte della giustizia, sempre.\nPerch\u00e9 la verit\u00e0 arriva, sempre.", "post_text": "Lo hanno mediaticamente massacrato.\nHanno costruito intere trasmissioni contro di lui.\nLo hanno dipinto come un molestatore.\nPoi si \u00e8 scoperto che era innocente.\nChe le ragazze non avevano detto tutta la verit\u00e0.\nChe il famoso giornalista della famosa trasmissione aveva elementi di ostilit\u00e0 preconcetta contro di lui.\nE oggi - dopo mesi di\u2026 Altro gogna mediatica - i giudici, persone serie, lo hanno definitivamente archiviato.\nLui si chiama Fausto Brizzi ed \u00e8 un cittadino innocente. E' anche un mio amico e spero che anche questo non abbia contribuito a danneggiarlo.\nSpero soprattutto che chi ha provato a distruggergli la vita stasera si faccia un esame di coscienza.\nLa giustizia \u00e8 una cosa molto pi\u00f9 seria dei servizi scandalistici di qualche Ex Iena ora impegnata al Governo.\nLa giustizia non \u00e8 il giustizialismo.\nE noi stiamo dalla parte della giustizia, sempre.\nPerch\u00e9 la verit\u00e0 arriva, sempre.", "shared_text": "", "time": "2019-01-23 20:18:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156463012419915&id=113335124914", "link": null} +{"post_id": "10156462589719915", "text": "C\u2019\u00e8 un deputato grillino che si chiama Carlo Sibilia. Si crede molto intelligente. E forse ha davvero doti nascoste perch\u00e9 pur avendo fatto una figuraccia galattica quando sostenne che gli americani non erano sbarcati sulla Luna (complotto!), ci\u00f2 nonostante lo hanno fatto sottosegretario al Ministero dell\u2019Interno. Povero Viminale: non solo il\u2026 Altro ministro influencer, ma anche il sottosegretario complottista. Dura la vita in quel glorioso palazzo, eh!\nIeri Sibilia anzich\u00e9 occuparsi di sicurezza, polizia e ordine pubblico ha difeso a spada tratta la nomina di Lino Banfi. E poi ha pensato bene di fare il simpatico. Ha pubblicato un post per chiedere ai suoi followers se preferissero Banfi\u2026 Altro", "post_text": "C\u2019\u00e8 un deputato grillino che si chiama Carlo Sibilia. Si crede molto intelligente. E forse ha davvero doti nascoste perch\u00e9 pur avendo fatto una figuraccia galattica quando sostenne che gli americani non erano sbarcati sulla Luna (complotto!), ci\u00f2 nonostante lo hanno fatto sottosegretario al Ministero dell\u2019Interno. Povero Viminale: non solo il\u2026 Altro ministro influencer, ma anche il sottosegretario complottista. Dura la vita in quel glorioso palazzo, eh!\nIeri Sibilia anzich\u00e9 occuparsi di sicurezza, polizia e ordine pubblico ha difeso a spada tratta la nomina di Lino Banfi. E poi ha pensato bene di fare il simpatico. Ha pubblicato un post per chiedere ai suoi followers se preferissero Banfi\u2026 Altro", "shared_text": "", "time": "2019-01-23 16:46:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156462589719915&id=113335124914", "link": null} +{"post_id": "10156462321819915", "text": "Ieri sono stato ospite di Barbara Palombelli. Ecco come \u00e8 andata: ovviamente mi fa piacere sapere che ne pensate voi. Buona giornata a tutti", "post_text": "Ieri sono stato ospite di Barbara Palombelli. Ecco come \u00e8 andata: ovviamente mi fa piacere sapere che ne pensate voi. Buona giornata a tutti", "shared_text": "", "time": "2019-01-23 14:00:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=377332686177734&id=113335124914", "link": null} +{"post_id": "10156460592689915", "text": "Tante ironie sulla nomina di Lino Banfi all'UNESCO. Abbiamo gente come Toninelli alle infrastrutture o la Castelli all'economia e vi preoccupate di Lino Banfi? Colpisce la polemica contro i laureati, certo.\nMa del resto questa \u00e8 una nomina che fa Di Maio: di cosa ci stupiamo?", "post_text": "Tante ironie sulla nomina di Lino Banfi all'UNESCO. Abbiamo gente come Toninelli alle infrastrutture o la Castelli all'economia e vi preoccupate di Lino Banfi? Colpisce la polemica contro i laureati, certo.\nMa del resto questa \u00e8 una nomina che fa Di Maio: di cosa ci stupiamo?", "shared_text": "", "time": "2019-01-22 17:20:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156460592689915&id=113335124914", "link": null} +{"post_id": "10156459891169915", "text": "I #60secondi di oggi dal Senato dove tanto per cambiare non si vota perch\u00e9 la maggioranza non \u00e8 ancora pronta. E parliamo della frase incredibile di Matteo Salvini stamani a Canale 5", "post_text": "I #60secondi di oggi dal Senato dove tanto per cambiare non si vota perch\u00e9 la maggioranza non \u00e8 ancora pronta. E parliamo della frase incredibile di Matteo Salvini stamani a Canale 5", "shared_text": "", "time": "2019-01-22 12:16:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=401613613717053&id=113335124914", "link": null} +{"post_id": "10156462225294915", "text": "Le dichiarazioni da bar di Di Maio e Salvini hanno isolato l\u2019Italia proprio mentre Francia e Germania rilanciano insieme sull\u2019Europa. Mentre Macron e Merkel firmano un patto ad Aquisgrana, noi mandiamo Banfi all\u2019Unesco. Ecco il loro cambiamento anche nella politica estera. #60secondi", "post_text": "Le dichiarazioni da bar di Di Maio e Salvini hanno isolato l\u2019Italia proprio mentre Francia e Germania rilanciano insieme sull\u2019Europa. Mentre Macron e Merkel firmano un patto ad Aquisgrana, noi mandiamo Banfi all\u2019Unesco. Ecco il loro cambiamento anche nella politica estera. #60secondi", "shared_text": "", "time": "2019-01-21 23:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=243762099876435&id=113335124914", "link": null} +{"post_id": "10156458130794915", "text": "La situazione sta sfuggendo di mano anche a loro.\nDi Battista dice Obama \u00e8 golpista, Di Maio si schiera coi Gilet Gialli che assaltano le Istituzioni francesi.\nDi Battista strappa la \"moneta colonialista dei francesi\" in Africa, Di Maio dice che Macron \u00e8 il responsabile delle stragi di migranti africani.\nA noi sembra tutto talmente assurdo che ci\u2026 Altro scappa da ridere. Ma il danno che questi stanno facendo alla credibilit\u00e0 dell'Italia e alle relazioni con Paesi storicamente amici purtroppo \u00e8 enorme. Perch\u00e9 la politica estera \u00e8 una cosa seria, non un karaoke di dilettanti allo sbaraglio.", "post_text": "La situazione sta sfuggendo di mano anche a loro.\nDi Battista dice Obama \u00e8 golpista, Di Maio si schiera coi Gilet Gialli che assaltano le Istituzioni francesi.\nDi Battista strappa la \"moneta colonialista dei francesi\" in Africa, Di Maio dice che Macron \u00e8 il responsabile delle stragi di migranti africani.\nA noi sembra tutto talmente assurdo che ci\u2026 Altro scappa da ridere. Ma il danno che questi stanno facendo alla credibilit\u00e0 dell'Italia e alle relazioni con Paesi storicamente amici purtroppo \u00e8 enorme. Perch\u00e9 la politica estera \u00e8 una cosa seria, non un karaoke di dilettanti allo sbaraglio.", "shared_text": "", "time": "2019-01-21 16:27:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156458130794915&id=113335124914", "link": null} +{"post_id": "408023496603526", "text": "Un pensiero dedicato a Matera, all\u2019Expo, alle Olimpiadi. L\u2019Italia che scommette sugli eventi contro l\u2019Italia che dice no a tutto. E per evitare polemiche anzich\u00e9 dal motoscafo stavolta i #60secondi ve li invio dal barbiere \ud83d\ude00", "post_text": "Un pensiero dedicato a Matera, all\u2019Expo, alle Olimpiadi. L\u2019Italia che scommette sugli eventi contro l\u2019Italia che dice no a tutto. E per evitare polemiche anzich\u00e9 dal motoscafo stavolta i #60secondi ve li invio dal barbiere \ud83d\ude00", "shared_text": "", "time": "2019-01-21 10:53:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=408023496603526&id=113335124914", "link": null} +{"post_id": "10156457528379915", "text": "Complimenti ad Andrea Frailis, nuovo deputato del collegio di Cagliari. Preoccupa l\u2019affluenza bassa, ovviamente. Ma nonostante sondaggi, tg schierati, pagine e pagine di propaganda per Salvini & Di Maio, al primo voto per un nuovo seggio in Parlamento vince l\u2019opposizione, persino in Sardegna. Le promesse di sciacalli e prestanome sono assegni a vuoto. E il palloncino populista prima o poi si sgonfier\u00e0, il tempo \u00e8 galantuomo. Buon lavoro, Andrea: davvero una buona notizia", "post_text": "Complimenti ad Andrea Frailis, nuovo deputato del collegio di Cagliari. Preoccupa l\u2019affluenza bassa, ovviamente. Ma nonostante sondaggi, tg schierati, pagine e pagine di propaganda per Salvini & Di Maio, al primo voto per un nuovo seggio in Parlamento vince l\u2019opposizione, persino in Sardegna. Le promesse di sciacalli e prestanome sono assegni a vuoto. E il palloncino populista prima o poi si sgonfier\u00e0, il tempo \u00e8 galantuomo. Buon lavoro, Andrea: davvero una buona notizia", "shared_text": "", "time": "2019-01-21 09:29:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156457528379915&id=113335124914", "link": null} +{"post_id": "10156456248349915", "text": "Ci sono delle persone che rischiano di morire in mare. Salvini dice che la colpa \u00e8 delle ONG.\nDi Maio dice che la colpa \u00e8 di Macron che ha interessi in Africa. Sempre a cercare un capro espiatorio, pazzesco. Io dico: date pure la colpa a chi volete, ma prima andiamoli a prendere. Salviamoli! Sono nostri fratelli e sorelle: la loro vita vale pi\u00f9 di un sondaggio.\nPenso che sia meglio perdere dei voti che perdere la dignit\u00e0 di un popolo, delle sue antiche tradizioni, dei suoi valori. Siamo l'Italia: andiamo a salvarli. Subito.", "post_text": "Ci sono delle persone che rischiano di morire in mare. Salvini dice che la colpa \u00e8 delle ONG.\nDi Maio dice che la colpa \u00e8 di Macron che ha interessi in Africa. Sempre a cercare un capro espiatorio, pazzesco. Io dico: date pure la colpa a chi volete, ma prima andiamoli a prendere. Salviamoli! Sono nostri fratelli e sorelle: la loro vita vale pi\u00f9 di un sondaggio.\nPenso che sia meglio perdere dei voti che perdere la dignit\u00e0 di un popolo, delle sue antiche tradizioni, dei suoi valori. Siamo l'Italia: andiamo a salvarli. Subito.", "shared_text": "", "time": "2019-01-20 19:37:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156456248349915&id=113335124914", "link": null} +{"post_id": "10156455514164915", "text": "Di Maio e Di Battista dicono: \"Chi \u00e8 contro il Reddito di Cittadinanza \u00e8 contro i poveri, \u00e8 un radical chic\".\nMagari fosse cos\u00ec, PURTROPPO \u00e8 vero l'opposto: il Reddito di Cittadinanza NON \u00e8 una misura che aiuta a uscire dalla povert\u00e0.\nIl vero modo di combattere la povert\u00e0 \u00e8 creare posti di lavoro, non sussidi. Le persone vanno rese libere e\u2026 Altro autonome con il lavoro, non dipendenti da procedure complicate o - peggio ancora - dal voto di scambio per politici assistenzialisti. Questo \u00e8 il nodo concettuale.\nSe vuoi combattere la povert\u00e0 devi creare lavoro.\nCon l'odiato JobsAct si sono creati pi\u00f9 di un milione di posti di lavoro. Con il Decreto Dignit\u00e0 di Di Maio decine di migliaia di persone sono rimaste a casa.\nQuesti sono fatti, ahinoi.\nIl reddito di cittadinanza \u00e8 un'elemosina.\nCreare posti di lavoro \u00e8 la politica.", "post_text": "Di Maio e Di Battista dicono: \"Chi \u00e8 contro il Reddito di Cittadinanza \u00e8 contro i poveri, \u00e8 un radical chic\".\nMagari fosse cos\u00ec, PURTROPPO \u00e8 vero l'opposto: il Reddito di Cittadinanza NON \u00e8 una misura che aiuta a uscire dalla povert\u00e0.\nIl vero modo di combattere la povert\u00e0 \u00e8 creare posti di lavoro, non sussidi. Le persone vanno rese libere e\u2026 Altro autonome con il lavoro, non dipendenti da procedure complicate o - peggio ancora - dal voto di scambio per politici assistenzialisti. Questo \u00e8 il nodo concettuale.\nSe vuoi combattere la povert\u00e0 devi creare lavoro.\nCon l'odiato JobsAct si sono creati pi\u00f9 di un milione di posti di lavoro. Con il Decreto Dignit\u00e0 di Di Maio decine di migliaia di persone sono rimaste a casa.\nQuesti sono fatti, ahinoi.\nIl reddito di cittadinanza \u00e8 un'elemosina.\nCreare posti di lavoro \u00e8 la politica.", "shared_text": "", "time": "2019-01-20 12:50:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156455514164915&id=113335124914", "link": null} +{"post_id": "10156455295494915", "text": "Belle le immagini di Matera che da ieri \u00e8 capitale della cultura europea. Molto orgoglioso del lavoro silenzioso che come Governo - con la societ\u00e0 civile, gli enti locali, il coordinatore di Governo - abbiamo\u2026 Altro fatto in citt\u00e0 e per la citt\u00e0 negli anni scorsi. E la cosa positiva \u00e8 che abbiamo stanziato molte risorse che potranno essere spese anche dopo l\u2019evento, a cominciare dalla stazione e dalla ferrovia. Allora dicemmo che per Matera questo evento sarebbe stato una svolta come - fatte le dovute proporzioni - l\u2019Expo \u00e8 stato per Milano. Ci abbiamo creduto quando ci credevano in pochi, oggi siamo in tanti ed \u00e8 bellissimo.\nUn suggerimento: se non avete mai visto Matera, \u00e8 il momento giusto per andarci. Se ci siete gi\u00e0 stati, utilizzate il 2019 per tornarci. Quei sassi - che erano considerati la vergogna d\u2019Italia nel dopoguerra - sono oggi un simbolo dell\u2019identit\u00e0 comunitaria nazionale ed europea. E Matera \u00e8 viva, bellissima.", "post_text": "Belle le immagini di Matera che da ieri \u00e8 capitale della cultura europea. Molto orgoglioso del lavoro silenzioso che come Governo - con la societ\u00e0 civile, gli enti locali, il coordinatore di Governo - abbiamo\u2026 Altro fatto in citt\u00e0 e per la citt\u00e0 negli anni scorsi. E la cosa positiva \u00e8 che abbiamo stanziato molte risorse che potranno essere spese anche dopo l\u2019evento, a cominciare dalla stazione e dalla ferrovia. Allora dicemmo che per Matera questo evento sarebbe stato una svolta come - fatte le dovute proporzioni - l\u2019Expo \u00e8 stato per Milano. Ci abbiamo creduto quando ci credevano in pochi, oggi siamo in tanti ed \u00e8 bellissimo.\nUn suggerimento: se non avete mai visto Matera, \u00e8 il momento giusto per andarci. Se ci siete gi\u00e0 stati, utilizzate il 2019 per tornarci. Quei sassi - che erano considerati la vergogna d\u2019Italia nel dopoguerra - sono oggi un simbolo dell\u2019identit\u00e0 comunitaria nazionale ed europea. E Matera \u00e8 viva, bellissima.", "shared_text": "", "time": "2019-01-20 09:40:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p206x206/50560791_10156455295459915_2240070644546928640_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=fKx4lH4fJDQAQkEVrauvmbxCoXu64RPXC3VLm3Se-tGlX5oaOaD9lle6g&_nc_ht=scontent-cdt1-1.xx&oh=a7eb3007b1c003b1b444e0d7fb075a4e&oe=5E7C7C27", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156455295494915&id=113335124914", "link": null} +{"post_id": "10156453554484915", "text": "I #60secondi di oggi sono dedicati a una storia dell\u2019Italia buona. Quella che non interessa a Salvini, che infatti ritwitta solo storie di violenza da parte di extracomunitari. Eppure nel civile Veneto \u00e8 successo qualcosa di bello. E questo \u00e8 il mio modo di augurarvi buon weekend\n", "post_text": "I #60secondi di oggi sono dedicati a una storia dell\u2019Italia buona. Quella che non interessa a Salvini, che infatti ritwitta solo storie di violenza da parte di extracomunitari. Eppure nel civile Veneto \u00e8 successo qualcosa di bello. E questo \u00e8 il mio modo di augurarvi buon weekend", "shared_text": "", "time": "2019-01-19 15:40:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=466599230943868&id=113335124914", "link": null} +{"post_id": "10156452180549915", "text": "Questa notizia mi colpisce. E ancora di pi\u00f9 mi colpisce il silenzio. Abbiamo dei ministri che fanno polemica sempre contro gli stranieri. Oggi tutti zitti proprio quando scopriamo una buona notizia. Un\u2026 Altro imprenditore veneto perde il borsello con dentro 900\u20ac in contanti, un disoccupato marocchino lo ritrova e lo restituisce intonso al legittimo proprietario. Il sindaco ringrazia il cittadino marocchino. E l\u2019imprenditore decide di assumerlo, togliendolo dalla strada.\nSarebbe bello poter festeggiare tutti questa notizia. Ma non c\u2019\u00e8 un ministro che possa ritwittare questa bella storia. Perch\u00e9 sui social loro devono diffondere l\u2019odio, solo l\u2019odio, mai la speranza.\nI protagonisti di questa storia hanno dei nomi: Omar, Bernardo, Guido. A tutti loro vada il grazie delle tantissime persone che sognano l\u2019Italia come una comunit\u00e0 che lavora insieme e non come trib\u00f9 che si insultano e si odiano.\nBuona notte a tutti quelli che non si rassegnano a questa cultura di divisione e di rabbia.", "post_text": "Questa notizia mi colpisce. E ancora di pi\u00f9 mi colpisce il silenzio. Abbiamo dei ministri che fanno polemica sempre contro gli stranieri. Oggi tutti zitti proprio quando scopriamo una buona notizia. Un\u2026 Altro imprenditore veneto perde il borsello con dentro 900\u20ac in contanti, un disoccupato marocchino lo ritrova e lo restituisce intonso al legittimo proprietario. Il sindaco ringrazia il cittadino marocchino. E l\u2019imprenditore decide di assumerlo, togliendolo dalla strada.\nSarebbe bello poter festeggiare tutti questa notizia. Ma non c\u2019\u00e8 un ministro che possa ritwittare questa bella storia. Perch\u00e9 sui social loro devono diffondere l\u2019odio, solo l\u2019odio, mai la speranza.\nI protagonisti di questa storia hanno dei nomi: Omar, Bernardo, Guido. A tutti loro vada il grazie delle tantissime persone che sognano l\u2019Italia come una comunit\u00e0 che lavora insieme e non come trib\u00f9 che si insultano e si odiano.\nBuona notte a tutti quelli che non si rassegnano a questa cultura di divisione e di rabbia.", "shared_text": "", "time": "2019-01-18 23:22:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p261x260/50116087_10156452179624915_5302477696343736320_n.png.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=JnNh_z-q2u4AQkBHmk8nElu-gD3Bo09jqQ545izySERnAL3JyVeuOi8Ow&_nc_ht=scontent-cdt1-1.xx&oh=a54c49b64515227e996fb4065ed98969&oe=5E7C5199", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156452180549915&id=113335124914", "link": null} +{"post_id": "10156451587774915", "text": "Mettiamo qualche puntino sulle I su questa storia del reddito di cittadinanza come strumento giusto, a sostegno dei pi\u00f9 poveri. \u00c8 falso.\nEcco perch\u00e9.\nUna misura contro la povert\u00e0 in Italia c\u2019\u00e8 gi\u00e0. L\u2019abbiamo prevista noi nel 2016, \u00e8 operativa dal 2018, si chiama Rei. Si vuole migliorarla? Prego, avanti. Ma il reddito di cittadinanza non \u00e8 una\u2026 Altro misura contro la povert\u00e0: questo per me \u00e8 un drammatico errore concettuale. E non perch\u00e9 mancano i soldi rispetto alle promesse della campagna elettorale. Ma perch\u00e9 noi siamo una repubblica democratica fondata sul lavoro, non sul sussidio. Perch\u00e9 noi vogliamo combattere la povert\u00e0 creando posti di lavoro e non garantendo assistenzialismo o, peggio\u2026 Altro", "post_text": "Mettiamo qualche puntino sulle I su questa storia del reddito di cittadinanza come strumento giusto, a sostegno dei pi\u00f9 poveri. \u00c8 falso.\nEcco perch\u00e9.\nUna misura contro la povert\u00e0 in Italia c\u2019\u00e8 gi\u00e0. L\u2019abbiamo prevista noi nel 2016, \u00e8 operativa dal 2018, si chiama Rei. Si vuole migliorarla? Prego, avanti. Ma il reddito di cittadinanza non \u00e8 una\u2026 Altro misura contro la povert\u00e0: questo per me \u00e8 un drammatico errore concettuale. E non perch\u00e9 mancano i soldi rispetto alle promesse della campagna elettorale. Ma perch\u00e9 noi siamo una repubblica democratica fondata sul lavoro, non sul sussidio. Perch\u00e9 noi vogliamo combattere la povert\u00e0 creando posti di lavoro e non garantendo assistenzialismo o, peggio\u2026 Altro", "shared_text": "", "time": "2019-01-18 17:28:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156451587774915&id=113335124914", "link": null} +{"post_id": "615415288893464", "text": "Oggi i #60secondi arrivano da Venezia. Non condivido l\u2019ideologia del #decretone: favorisce il lavoro nero e fa pagare ai giovani le pensioni. Per\u00f2 vi dico: prendiamo sul serio Salvini e Di Maio. Prendiamoli sul serio, anche se \u00e8 difficile #60secondi #18gennaio", "post_text": "Oggi i #60secondi arrivano da Venezia. Non condivido l\u2019ideologia del #decretone: favorisce il lavoro nero e fa pagare ai giovani le pensioni. Per\u00f2 vi dico: prendiamo sul serio Salvini e Di Maio. Prendiamoli sul serio, anche se \u00e8 difficile #60secondi #18gennaio", "shared_text": "", "time": "2019-01-18 10:36:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=615415288893464&id=113335124914", "link": null} +{"post_id": "10156449958894915", "text": "Aveva solo 14 anni. E per fare quel viaggio cos\u00ec lungo e pericoloso aveva scelto di portarsi la pagella, ripiegata con cura e cucita dentro una tasca. Dall\u2019Africa verso una speranza chiamata Europa. E in tasca\u2026 Altro il documento pi\u00f9 importante: quello che certificava i suoi studi. Una banale, eppure preziosissima, pagella.\n\u00c8 morto annegato insieme ad altre centinaia di persone in un drammatico giorno d\u2019aprile di quattro anni fa. Una dottoressa, Cristina Cattaneo, ne ha descritto la storia. Makkox l\u2019ha immaginato cos\u00ec, con molta poesia.\nE niente, questa notizia mi ha molto colpito. L\u2019Italia \u00e8 il Paese dei valori, non dimentichiamolo. Il Paese dell\u2019altruismo. Il Paese che prova a dare una sepoltura a tutti i corpi perch\u00e9 ci sono regole di civilt\u00e0 che valgono pi\u00f9 dei sondaggi. Puoi perdere punti di consenso ma non puoi perdere la faccia davanti ai tuoi figli.\nGrazie all\u2019Italia che non si arrende all\u2019odio e alla rassegnazione. Grazie all\u2019Italia che mantiene vivo il senso della parola pietas.", "post_text": "Aveva solo 14 anni. E per fare quel viaggio cos\u00ec lungo e pericoloso aveva scelto di portarsi la pagella, ripiegata con cura e cucita dentro una tasca. Dall\u2019Africa verso una speranza chiamata Europa. E in tasca\u2026 Altro il documento pi\u00f9 importante: quello che certificava i suoi studi. Una banale, eppure preziosissima, pagella.\n\u00c8 morto annegato insieme ad altre centinaia di persone in un drammatico giorno d\u2019aprile di quattro anni fa. Una dottoressa, Cristina Cattaneo, ne ha descritto la storia. Makkox l\u2019ha immaginato cos\u00ec, con molta poesia.\nE niente, questa notizia mi ha molto colpito. L\u2019Italia \u00e8 il Paese dei valori, non dimentichiamolo. Il Paese dell\u2019altruismo. Il Paese che prova a dare una sepoltura a tutti i corpi perch\u00e9 ci sono regole di civilt\u00e0 che valgono pi\u00f9 dei sondaggi. Puoi perdere punti di consenso ma non puoi perdere la faccia davanti ai tuoi figli.\nGrazie all\u2019Italia che non si arrende all\u2019odio e alla rassegnazione. Grazie all\u2019Italia che mantiene vivo il senso della parola pietas.", "shared_text": "", "time": "2019-01-17 23:31:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/50003294_10156449958844915_3633484560810901504_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=NHrJ74Dc-44AQlSq7Oyw3Pm7WGtoVO25fAl36NKHb6dYPW4rJpn23Mb_w&_nc_ht=scontent-cdt1-1.xx&oh=eed8ed1baf68a0d985f9a38ccd850c4a&oe=5E3F3CDA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156449958894915&id=113335124914", "link": null} +{"post_id": "370359803547959", "text": "Lo show di Salvini e Bonafede \u00e8 una pagina nera delle Istituzioni italiane. Compito dei politici \u00e8 far crescere i posti di lavoro, non i fan su Instagram. Nel frattempo grazie alla Legge Bonafede, Salvini salva i leghisti dal peculato #60secondi #17gennaio", "post_text": "Lo show di Salvini e Bonafede \u00e8 una pagina nera delle Istituzioni italiane. Compito dei politici \u00e8 far crescere i posti di lavoro, non i fan su Instagram. Nel frattempo grazie alla Legge Bonafede, Salvini salva i leghisti dal peculato #60secondi #17gennaio", "shared_text": "", "time": "2019-01-17 11:23:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=370359803547959&id=113335124914", "link": null} +{"post_id": "10156446656834915", "text": "Questo \u00e8 il nostro ministro della Giustizia, Alfonso Bonafede. Vuole emulare Salvini e posa con la divisa della penitenziaria: ha la faccia soddisfatta come un fratellino piccolo cui hanno regalato lo stesso\u2026 Altro giocattolo del pi\u00f9 grande. Nel frattempo lo show mediatico su Battisti avrebbe messo a rischio l\u2019identit\u00e0 di agenti delle nostre forze di polizia. E Bonafede non si \u00e8 accorto che nella sua legge (presunta) AntiCorruzione c\u2019\u00e8 una norma ad personam che salva i leghisti dal peculato. Per\u00f2 Bonafede ha lo stesso giocattolo di Salvini ed \u00e8 tanto felice. La giustizia italiana un po\u2019 meno.", "post_text": "Questo \u00e8 il nostro ministro della Giustizia, Alfonso Bonafede. Vuole emulare Salvini e posa con la divisa della penitenziaria: ha la faccia soddisfatta come un fratellino piccolo cui hanno regalato lo stesso\u2026 Altro giocattolo del pi\u00f9 grande. Nel frattempo lo show mediatico su Battisti avrebbe messo a rischio l\u2019identit\u00e0 di agenti delle nostre forze di polizia. E Bonafede non si \u00e8 accorto che nella sua legge (presunta) AntiCorruzione c\u2019\u00e8 una norma ad personam che salva i leghisti dal peculato. Per\u00f2 Bonafede ha lo stesso giocattolo di Salvini ed \u00e8 tanto felice. La giustizia italiana un po\u2019 meno.", "shared_text": "", "time": "2019-01-16 13:14:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/50124897_10156446655799915_3170326261251702784_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=HFDSm7rreFoAQkE1VpR8qPK5mEQBW-IKImrotiTi_1Yyygh6sbZ8k0dbw&_nc_ht=scontent-cdt1-1.xx&oh=71d25d2fc69fad982e7dbc3412315a59&oe=5E46BC97", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156446656834915&id=113335124914", "link": null} +{"post_id": "10156446558329915", "text": "Di Maio dice che ci sar\u00e0 un nuovo boom economico. Tutto il mondo imprenditoriale, ovviamente, gli ride dietro. E infatti oggi escono i dati ISTAT sugli ordinativi dell\u2019industria: -2% a novembre 2018\u2026 Altro tendenziale anno su anno. A picco gli ordini interni -4% (altro che crisi importata dall'estero!): gli ordini interni erano a +10,4% ad inizio 2018.\nCome vedete da questo articolo, intanto, si continua a licenziare per colpa del decreto disoccupazione firmato proprio dal Gigggino il Vicepremier, che \u00e8 uno dei massimi esperti mondiali di disoccupazione.\nE questo sarebbe il nuovo boom economico?", "post_text": "Di Maio dice che ci sar\u00e0 un nuovo boom economico. Tutto il mondo imprenditoriale, ovviamente, gli ride dietro. E infatti oggi escono i dati ISTAT sugli ordinativi dell\u2019industria: -2% a novembre 2018\u2026 Altro tendenziale anno su anno. A picco gli ordini interni -4% (altro che crisi importata dall'estero!): gli ordini interni erano a +10,4% ad inizio 2018.\nCome vedete da questo articolo, intanto, si continua a licenziare per colpa del decreto disoccupazione firmato proprio dal Gigggino il Vicepremier, che \u00e8 uno dei massimi esperti mondiali di disoccupazione.\nE questo sarebbe il nuovo boom economico?", "shared_text": "", "time": "2019-01-16 11:57:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/49343432_10156446558289915_4381839074055421952_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=yhcSI_aCU-gAQkWcRXILuQMAfxFPmeRS1Mry2hAhFcA5mwXNHYQerTLhg&_nc_ht=scontent-cdt1-1.xx&oh=7f37fc77edad109a0a5130a38f0bf53d&oe=5E4CC85E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156446558329915&id=113335124914", "link": null} +{"post_id": "1715307395237648", "text": "Prima o poi la realt\u00e0 ti presenta il conto. Sta accadendo in UK per la Brexit! Ma quante bugie hanno raccontato i populisti per vincere il referendum? E adesso si capisce quanto l\u2019Europa sia fondamentale. Una lezione per Londra e per Roma", "post_text": "Prima o poi la realt\u00e0 ti presenta il conto. Sta accadendo in UK per la Brexit! Ma quante bugie hanno raccontato i populisti per vincere il referendum? E adesso si capisce quanto l\u2019Europa sia fondamentale. Una lezione per Londra e per Roma", "shared_text": "", "time": "2019-01-16 10:22:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1715307395237648&id=113335124914", "link": null} +{"post_id": "10156445296664915", "text": "Giornata incredibile per il Regno Unito. Il Governo May va sotto di oltre 200 voti: l'accordo per la Brexit \u00e8 sempre pi\u00f9 lontano. Ci sar\u00e0 un rinvio della data del 29 marzo o forse un nuovo referendum. Quello che \u00e8 certo \u00e8 che il voto per uscire dall'Europa \u00e8 stato un errore storico per i britannici. Chi tre anni fa raccontava: \"sar\u00e0 una\u2026 Altro passeggiata, andr\u00e0 tutto bene\" stava prendendo in giro gli inglesi e gli europei.\nDal giugno 2016 UK ha smesso di correre: uno dei Paesi pi\u00f9 forti del mondo si \u00e8 come accasciato su se stesso.\nE non dimenticate che in quei giorni - in Italia - gli unici due partiti che brindavano elogiando gli inglesi erano il Movimento 5 Stelle, alleato di Farage, e la Lega.\nDicevano: dovremmo fare anche noi come i britannici.\nIl tempo \u00e8 davvero galantuomo, anche su questo.\nLa Brexit \u00e8 un disastro e ora nessuno sa come uscirne.", "post_text": "Giornata incredibile per il Regno Unito. Il Governo May va sotto di oltre 200 voti: l'accordo per la Brexit \u00e8 sempre pi\u00f9 lontano. Ci sar\u00e0 un rinvio della data del 29 marzo o forse un nuovo referendum. Quello che \u00e8 certo \u00e8 che il voto per uscire dall'Europa \u00e8 stato un errore storico per i britannici. Chi tre anni fa raccontava: \"sar\u00e0 una\u2026 Altro passeggiata, andr\u00e0 tutto bene\" stava prendendo in giro gli inglesi e gli europei.\nDal giugno 2016 UK ha smesso di correre: uno dei Paesi pi\u00f9 forti del mondo si \u00e8 come accasciato su se stesso.\nE non dimenticate che in quei giorni - in Italia - gli unici due partiti che brindavano elogiando gli inglesi erano il Movimento 5 Stelle, alleato di Farage, e la Lega.\nDicevano: dovremmo fare anche noi come i britannici.\nIl tempo \u00e8 davvero galantuomo, anche su questo.\nLa Brexit \u00e8 un disastro e ora nessuno sa come uscirne.", "shared_text": "", "time": "2019-01-15 21:04:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156445296664915&id=113335124914", "link": null} +{"post_id": "10156443193079915", "text": "Apro il quotidiano Le Monde e trovo un bellissimo e tragico pezzo sulla politica estera. Un anno dopo la fine dei combattimenti contro i terroristi dello Stato Islamico Daesh \u00e8 ancora impossibile contare i\u2026 Altro morti di Mosul. Le fosse comuni con migliaia di persone, le scene di violenza inaudita raccontate dai testimoni oculari, le prospettive per la ricostruzione. In un mondo in cui si riduce la politica a un tweet, \u00e8 bello vedere come alcuni giornali (non tutti, purtroppo) scelgano la qualit\u00e0, l\u2019approfondimento, la vera informazione. Perch\u00e9 la politica senza un'informazione degna di questo nome non \u00e8 libera. E non mi stancher\u00f2 mai di ripetere che la politica estera non \u00e8 materiale per addetti ai lavori, ma elemento strategico del futuro di un popolo.", "post_text": "Apro il quotidiano Le Monde e trovo un bellissimo e tragico pezzo sulla politica estera. Un anno dopo la fine dei combattimenti contro i terroristi dello Stato Islamico Daesh \u00e8 ancora impossibile contare i\u2026 Altro morti di Mosul. Le fosse comuni con migliaia di persone, le scene di violenza inaudita raccontate dai testimoni oculari, le prospettive per la ricostruzione. In un mondo in cui si riduce la politica a un tweet, \u00e8 bello vedere come alcuni giornali (non tutti, purtroppo) scelgano la qualit\u00e0, l\u2019approfondimento, la vera informazione. Perch\u00e9 la politica senza un'informazione degna di questo nome non \u00e8 libera. E non mi stancher\u00f2 mai di ripetere che la politica estera non \u00e8 materiale per addetti ai lavori, ma elemento strategico del futuro di un popolo.", "shared_text": "", "time": "2019-01-14 20:04:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/49344366_10156443191779915_1090639685631344640_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=vfz47egAKfUAQlP-zI0v0Ms31T3gjqeg4E7bX6Ih3f0x6AUmoZReV0boA&_nc_ht=scontent-cdt1-1.xx&oh=a424ec878b0541df3178a35d4f6195d1&oe=5E85D9AA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156443193079915&id=113335124914", "link": null} +{"post_id": "10156442729749915", "text": "L\u2019omicidio del Sindaco di Danzica Pawel Adamowicz \u00e8 un colpo al cuore dell\u2019Europa, dei suoi valori, dei suoi ideali. Oggi \u00e8 un giorno di lutto per chi crede nella politica e nell\u2019Europa.", "post_text": "L\u2019omicidio del Sindaco di Danzica Pawel Adamowicz \u00e8 un colpo al cuore dell\u2019Europa, dei suoi valori, dei suoi ideali. Oggi \u00e8 un giorno di lutto per chi crede nella politica e nell\u2019Europa.", "shared_text": "", "time": "2019-01-14 16:03:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/50324183_10156442729729915_5293588325221793792_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=_I3kRyVjf10AQkpp_5OPFuDBE5WmtMAJIdbn8-orsu80wIOVl0OWVymkg&_nc_ht=scontent-cdt1-1.xx&oh=8235265a6792794de18679842f11a047&oe=5E4AB822", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156442729749915&id=113335124914", "link": null} +{"post_id": "10156442136624915", "text": "Il sindaco di Danzica Pawel Adamowicz \u00e8 stato accoltellato ieri nella sua citt\u00e0. Pawel \u00e8 uno dei personaggi pi\u00f9 popolari dell\u2019opposizione polacca. In attesa di conoscere dagli investigatori che cosa sia davvero successo e quali siano le ragioni di questo folle gesto, tutti noi dobbiamo riflettere su cosa accade alla politica quando prevale un clima\u2026 Altro di odio, quando la violenza verbale si trasforma in violenza fisica.\nStanotte quel coltello non ha ferito solo un uomo ma la nostra stessa idea di Europa. Guai a chi sottovaluta.\nIntanto preghiamo e facciamo il tifo per Pawel.", "post_text": "Il sindaco di Danzica Pawel Adamowicz \u00e8 stato accoltellato ieri nella sua citt\u00e0. Pawel \u00e8 uno dei personaggi pi\u00f9 popolari dell\u2019opposizione polacca. In attesa di conoscere dagli investigatori che cosa sia davvero successo e quali siano le ragioni di questo folle gesto, tutti noi dobbiamo riflettere su cosa accade alla politica quando prevale un clima\u2026 Altro di odio, quando la violenza verbale si trasforma in violenza fisica.\nStanotte quel coltello non ha ferito solo un uomo ma la nostra stessa idea di Europa. Guai a chi sottovaluta.\nIntanto preghiamo e facciamo il tifo per Pawel.", "shared_text": "", "time": "2019-01-14 08:54:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156442136624915&id=113335124914", "link": null} +{"post_id": "10156440888429915", "text": "Non capisco le polemiche di oggi sull\u2019arresto di Cesare Battisti. Oggi \u00e8 un giorno di festa per l\u2019Italia perch\u00e9 la democrazia dimostra di essere pi\u00f9 forte del terrorismo. Vince la giustizia, non un partito politico. Vincono le istituzioni, non gli ultras. Io sono fiero degli uomini e delle donne della nostra polizia e della nostra intelligence. E\u2026 Altro dico loro: GRAZIE.\nDiventeremo un Paese pi\u00f9 civile quando smetteremo di strumentalizzare episodi come questo: perch\u00e9 questi episodi devono farci esultare tutti insieme. Sempre e per sempre dalla parte della legalit\u00e0 e della giustizia.", "post_text": "Non capisco le polemiche di oggi sull\u2019arresto di Cesare Battisti. Oggi \u00e8 un giorno di festa per l\u2019Italia perch\u00e9 la democrazia dimostra di essere pi\u00f9 forte del terrorismo. Vince la giustizia, non un partito politico. Vincono le istituzioni, non gli ultras. Io sono fiero degli uomini e delle donne della nostra polizia e della nostra intelligence. E\u2026 Altro dico loro: GRAZIE.\nDiventeremo un Paese pi\u00f9 civile quando smetteremo di strumentalizzare episodi come questo: perch\u00e9 questi episodi devono farci esultare tutti insieme. Sempre e per sempre dalla parte della legalit\u00e0 e della giustizia.", "shared_text": "", "time": "2019-01-13 19:31:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156440888429915&id=113335124914", "link": null} +{"post_id": "10156440451734915", "text": "C\u2019\u00e8 una notizia incredibile che \u00e8 finita in qualche retroscena oggi ma racconta meglio di mille discorsi come funziona la maggioranza che ci governa. Ricordate tutto il cinema fatto da Bonafede e i grillini sulla legge anti-corruzione? Bene, ora si scopre che attraverso un comma ad personam i leghisti hanno inserito una norma che salva dai processi\u2026 Altro i propri deputati condannati per peculato. Avete capito bene! Con la scusa del combattere la corruzione hanno fatto passare un codicillo che permetter\u00e0 agli ex consiglieri regionali gi\u00e0 condannati non in via definitiva per i rimborsi di salvarsi. Quindi il decreto Bonafede tanto sbandierato da Di Maio, Di Battista e tutta la redazione de Il Fatto Quotidiano ottiene l\u2019obiettivo opposto di salvare la pelle ai politici condannati per peculato. Nel giro di un anno i grillini sono passati da \u201conest\u00e0!\u201d alle leggi ad personam, ad un vero e proprio #SalvaLega.\nCome si cambia per non andare a casa...", "post_text": "C\u2019\u00e8 una notizia incredibile che \u00e8 finita in qualche retroscena oggi ma racconta meglio di mille discorsi come funziona la maggioranza che ci governa. Ricordate tutto il cinema fatto da Bonafede e i grillini sulla legge anti-corruzione? Bene, ora si scopre che attraverso un comma ad personam i leghisti hanno inserito una norma che salva dai processi\u2026 Altro i propri deputati condannati per peculato. Avete capito bene! Con la scusa del combattere la corruzione hanno fatto passare un codicillo che permetter\u00e0 agli ex consiglieri regionali gi\u00e0 condannati non in via definitiva per i rimborsi di salvarsi. Quindi il decreto Bonafede tanto sbandierato da Di Maio, Di Battista e tutta la redazione de Il Fatto Quotidiano ottiene l\u2019obiettivo opposto di salvare la pelle ai politici condannati per peculato. Nel giro di un anno i grillini sono passati da \u201conest\u00e0!\u201d alle leggi ad personam, ad un vero e proprio #SalvaLega.\nCome si cambia per non andare a casa...", "shared_text": "", "time": "2019-01-13 16:19:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156440451734915&id=113335124914", "link": null} +{"post_id": "10156439801624915", "text": "L'arresto di Cesare Battisti in Bolivia \u00e8 una bellissima notizia. Tutti gli italiani, senza alcuna distinzione di colore politico, desiderano che un assassino del genere sia riportato al pi\u00f9 presto nel nostro Paese per scontare la sua pena in un carcere italiano.\nOggi \u00e8 una buona giornata per la giustizia.", "post_text": "L'arresto di Cesare Battisti in Bolivia \u00e8 una bellissima notizia. Tutti gli italiani, senza alcuna distinzione di colore politico, desiderano che un assassino del genere sia riportato al pi\u00f9 presto nel nostro Paese per scontare la sua pena in un carcere italiano.\nOggi \u00e8 una buona giornata per la giustizia.", "shared_text": "", "time": "2019-01-13 08:22:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156439801624915&id=113335124914", "link": null} +{"post_id": "10156438542149915", "text": "Anche oggi violenze in Francia nel corso delle manifestazioni dei Gilet Gialli. A Bordeaux ci sono stati 54 feriti di cui due molto gravi. La violenza continua. Con buona pace di Salvini e Di Maio che odiano\u2026 Altro Macron: tra le istituzioni democratiche e i Gilet Gialli, io sto dalla parte delle forze dell\u2019ordine, della nonviolenza, della legalit\u00e0.", "post_text": "Anche oggi violenze in Francia nel corso delle manifestazioni dei Gilet Gialli. A Bordeaux ci sono stati 54 feriti di cui due molto gravi. La violenza continua. Con buona pace di Salvini e Di Maio che odiano\u2026 Altro Macron: tra le istituzioni democratiche e i Gilet Gialli, io sto dalla parte delle forze dell\u2019ordine, della nonviolenza, della legalit\u00e0.", "shared_text": "", "time": "2019-01-12 20:06:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/49864484_10156438541949915_6105782631058636800_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=81_n4pyKwUUAQkKRQ3aEQTonJroT_kIxtlSOj1wVc8VOq9z5KdoN9O59A&_nc_ht=scontent-cdt1-1.xx&oh=7d3c68569381da463217cdb6aa8723a1&oe=5E802376", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156438542149915&id=113335124914", "link": null} +{"post_id": "10156438068314915", "text": "Ieri Di Maio ha visto i dati della produzione industriale e ha detto che siamo pronti a un nuovo boom economico. Non gli hanno spiegato che quando c\u2019\u00e8 il segno meno davanti significa che \u00e8 un dato negativo. E\u2026 Altro del resto basta leggere questo articolo: l\u2019ennesimo imprenditore che licenzia persone per colpa del Decreto Dignit\u00e0, la legge voluta da Di Maio che sta facendo pi\u00f9 danni della grandine. Il tempo \u00e8 galantuomo, la verit\u00e0 prima o poi arriva.", "post_text": "Ieri Di Maio ha visto i dati della produzione industriale e ha detto che siamo pronti a un nuovo boom economico. Non gli hanno spiegato che quando c\u2019\u00e8 il segno meno davanti significa che \u00e8 un dato negativo. E\u2026 Altro del resto basta leggere questo articolo: l\u2019ennesimo imprenditore che licenzia persone per colpa del Decreto Dignit\u00e0, la legge voluta da Di Maio che sta facendo pi\u00f9 danni della grandine. Il tempo \u00e8 galantuomo, la verit\u00e0 prima o poi arriva.", "shared_text": "", "time": "2019-01-12 15:57:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x296/49756203_10156438068239915_5864134173119217664_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=Ha9xt1h0TYAAQnzbmQThE1btmVo7tHA3QgF94rdKILiHZTQQHoAx_AGOA&_nc_ht=scontent-cdt1-1.xx&oh=3ef346f887c4944eaf19ce90564cf850&oe=5E86F861", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156438068314915&id=113335124914", "link": null} +{"post_id": "10156437790764915", "text": "Oggi Torino dice s\u00ec al futuro. Basta con quelli che vogliono bloccare l\u2019Italia: chi ferma la Tav, ferma la crescita. Grazie Torino. Noi non ci fermiamo.", "post_text": "Oggi Torino dice s\u00ec al futuro. Basta con quelli che vogliono bloccare l\u2019Italia: chi ferma la Tav, ferma la crescita. Grazie Torino. Noi non ci fermiamo.", "shared_text": "", "time": "2019-01-12 13:17:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/49864282_10156437790774915_7898966794654711808_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=LJWqksrqM1YAQlzrE8vsqP126UY2fLKAJ50cTpH6hvKmbME3GjXlSZK-w&_nc_ht=scontent-cdt1-1.xx&oh=b3e523bd982abd86a2d9bbf0a95b6cd9&oe=5E799C3F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10156437631829915", "text": "La politica estera non interessa a molti. Ma non \u00e8 un buon motivo per non parlarne. C\u2019\u00e8 un bellissimo articolo di Bernard-Henri L\u00e9vy su questo, oggi, su La Stampa di Torino. Ieri ho firmato insieme a tanti\u2026 Altro colleghi un'interrogazione parlamentare per chiedere al Governo che cosa abbia intenzione di fare dopo che gli americani hanno annunciato il ritiro dalla Siria. La situazione \u00e8 potenzialmente esplosiva. Sottovalutare questo passaggio potrebbe paradossalmente portare alla rinascita dell\u2019ISIS. E abbandonare i curdi dopo quello che i curdi hanno fatto sarebbe disumano, oltre che politicamente sbagliato. Sono stato a Erbil nell\u2019agosto 2014, da premier e mentre l\u2019Italia presiedeva l\u2019Unione Europa. Ho visitato le istituzioni e i campi profughi. Non li abbiamo abbandonati allora mentre c\u2019erano i bombardamenti. Non possiamo farlo adesso. Il Governo italiano ha un\u2019idea su questo dossier?", "post_text": "La politica estera non interessa a molti. Ma non \u00e8 un buon motivo per non parlarne. C\u2019\u00e8 un bellissimo articolo di Bernard-Henri L\u00e9vy su questo, oggi, su La Stampa di Torino. Ieri ho firmato insieme a tanti\u2026 Altro colleghi un'interrogazione parlamentare per chiedere al Governo che cosa abbia intenzione di fare dopo che gli americani hanno annunciato il ritiro dalla Siria. La situazione \u00e8 potenzialmente esplosiva. Sottovalutare questo passaggio potrebbe paradossalmente portare alla rinascita dell\u2019ISIS. E abbandonare i curdi dopo quello che i curdi hanno fatto sarebbe disumano, oltre che politicamente sbagliato. Sono stato a Erbil nell\u2019agosto 2014, da premier e mentre l\u2019Italia presiedeva l\u2019Unione Europa. Ho visitato le istituzioni e i campi profughi. Non li abbiamo abbandonati allora mentre c\u2019erano i bombardamenti. Non possiamo farlo adesso. Il Governo italiano ha un\u2019idea su questo dossier?", "shared_text": "", "time": "2019-01-12 11:09:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/49729274_10156437631129915_595999554965340160_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=oY4ShZS3MvIAQmF8O_DzLWLvPp6DXhcC69AAkHYuzvtawRe9gD2eznhVQ&_nc_ht=scontent-cdt1-1.xx&oh=43e128a8831d2cd9b2619a987defbe21&oe=5E4C89CD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156437631829915&id=113335124914", "link": null} +{"post_id": "10156436677249915", "text": "Grazie ai tantissimi che si sono fatti vivi per gli auguri di compleanno. Una cenetta fiorentina in famiglia ha suggellato la mia bella giornata. Sono gi\u00e0 44 (in fila per 6 col resto di 2) e se sono felice per il tanto che abbiamo fatto insieme, so che abbiamo anche molta fame di futuro. Molta. Anche se \"invecchiamo\" siamo curiosi, allegri,\u2026 Altro pazienti. E non molliamo mai.\nQuesta \u00e8 la nostra forza contro i profeti dell'odio e della rabbia, contro chi sa solo insultare e accusare. Noi siamo diversi e andiamo avanti a testa alta. Chiudo questa giornata di festa, allora, con una meravigliosa frase del mitico Michael Jordan, forse il pi\u00f9 grande giocatore di basket della storia: \"Nella mia vita ho sbagliato pi\u00f9 di novemila tiri, ho perso quasi trecento partite, ventisei volte i miei compagni mi hanno affidato il tiro decisivo e l'ho sbagliato. Ho fallito molte volte. Ed \u00e8 per questo che alla fine ho vinto tutto\"\nGrazie per gli auguri e per la vostra amicizia, \u00e8 un onore camminare con persone come voi.", "post_text": "Grazie ai tantissimi che si sono fatti vivi per gli auguri di compleanno. Una cenetta fiorentina in famiglia ha suggellato la mia bella giornata. Sono gi\u00e0 44 (in fila per 6 col resto di 2) e se sono felice per il tanto che abbiamo fatto insieme, so che abbiamo anche molta fame di futuro. Molta. Anche se \"invecchiamo\" siamo curiosi, allegri,\u2026 Altro pazienti. E non molliamo mai.\nQuesta \u00e8 la nostra forza contro i profeti dell'odio e della rabbia, contro chi sa solo insultare e accusare. Noi siamo diversi e andiamo avanti a testa alta. Chiudo questa giornata di festa, allora, con una meravigliosa frase del mitico Michael Jordan, forse il pi\u00f9 grande giocatore di basket della storia: \"Nella mia vita ho sbagliato pi\u00f9 di novemila tiri, ho perso quasi trecento partite, ventisei volte i miei compagni mi hanno affidato il tiro decisivo e l'ho sbagliato. Ho fallito molte volte. Ed \u00e8 per questo che alla fine ho vinto tutto\"\nGrazie per gli auguri e per la vostra amicizia, \u00e8 un onore camminare con persone come voi.", "shared_text": "", "time": "2019-01-11 23:56:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156436677249915&id=113335124914", "link": null} +{"post_id": "10156435799164915", "text": "Domani Torino scende in piazza per la TAV.\nChi come me vive in una citt\u00e0 ben servita dall'alta velocit\u00e0 sa quanto sia importante questa infrastruttura: Firenze ormai \u00e8 perfettamente connessa con Milano o Roma. L'Italia ormai ha una metropolitana di superficie.\nBloccare tutto a Torino, tornare indietro, sprecare soldi \u00e8 folle. Farlo per una\u2026 Altro impuntatura ideologica dei cinque stelle lo \u00e8 ancora di pi\u00f9.\nNon si pu\u00f2 dire NO a tutto.\nA forza di dire NO stanno bloccando l'Italia.\nEvviva la Torino che domani dice S\u00ec alla Tav, S\u00ec alla crescita, S\u00ec al futuro", "post_text": "Domani Torino scende in piazza per la TAV.\nChi come me vive in una citt\u00e0 ben servita dall'alta velocit\u00e0 sa quanto sia importante questa infrastruttura: Firenze ormai \u00e8 perfettamente connessa con Milano o Roma. L'Italia ormai ha una metropolitana di superficie.\nBloccare tutto a Torino, tornare indietro, sprecare soldi \u00e8 folle. Farlo per una\u2026 Altro impuntatura ideologica dei cinque stelle lo \u00e8 ancora di pi\u00f9.\nNon si pu\u00f2 dire NO a tutto.\nA forza di dire NO stanno bloccando l'Italia.\nEvviva la Torino che domani dice S\u00ec alla Tav, S\u00ec alla crescita, S\u00ec al futuro", "shared_text": "", "time": "2019-01-11 16:16:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156435799164915&id=113335124914", "link": null} +{"post_id": "382127962543586", "text": "In diretta da Palazzo Giustiniani la top ten della settimana", "post_text": "In diretta da Palazzo Giustiniani la top ten della settimana", "shared_text": "", "time": "2019-01-11 13:01:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=382127962543586&id=113335124914", "link": null} +{"post_id": "10156435280509915", "text": "Brutte notizie, purtroppo, dal fronte economico.\nLa produzione industriale CROLLA: -2.6% annuo.\nEra dal 2014 che non si vedevano questi dati.\nIl problema \u00e8 che mentre il mondo rallenta l'Italia inchioda.\nE questo Governo, purtroppo, sembra non accorgersene.\nSta arrivando la recessione e questi litigano tutti i giorni.\nNe parliamo tra poco, alle\u2026 Altro 13, nella prima #TopTen del 2019 in diretta su Facebook e IG da Palazzo Giustiniani. Abbiamo un sacco di questioni da affrontare: da Salvini che vuole decidere persino sul Festival di Sanremo alle polemiche sul documento firmato insieme a Beppe Grillo sui vaccini. E poi i vent'anni dalla morte di De Andr\u00e8, il viaggio in USA tra l'incontro con Joe Biden e la visita a Stanford, la figuraccia grillina sulle banche. Ci vediamo dopo, amici. E grazie a tutti per gli auguri", "post_text": "Brutte notizie, purtroppo, dal fronte economico.\nLa produzione industriale CROLLA: -2.6% annuo.\nEra dal 2014 che non si vedevano questi dati.\nIl problema \u00e8 che mentre il mondo rallenta l'Italia inchioda.\nE questo Governo, purtroppo, sembra non accorgersene.\nSta arrivando la recessione e questi litigano tutti i giorni.\nNe parliamo tra poco, alle\u2026 Altro 13, nella prima #TopTen del 2019 in diretta su Facebook e IG da Palazzo Giustiniani. Abbiamo un sacco di questioni da affrontare: da Salvini che vuole decidere persino sul Festival di Sanremo alle polemiche sul documento firmato insieme a Beppe Grillo sui vaccini. E poi i vent'anni dalla morte di De Andr\u00e8, il viaggio in USA tra l'incontro con Joe Biden e la visita a Stanford, la figuraccia grillina sulle banche. Ci vediamo dopo, amici. E grazie a tutti per gli auguri", "shared_text": "", "time": "2019-01-11 11:08:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156435280509915&id=113335124914", "link": null} +{"post_id": "10156434109284915", "text": "Esagerano, eccome se esagerano: adesso attaccano persino Claudio Baglioni. Cio\u00e8 dico: CLAUDIO BAGLIONI. Un'icona per tutti gli italiani. Uno dei grandi della musica italiana. E perch\u00e9? Perch\u00e9 Baglioni ha detto che la soluzione all'immigrazione \u00e8 pi\u00f9 complessa di lasciare in mezzo al mare 49 persone. Ha detto la verit\u00e0, semplice, persino banale. E l\u2026 Altro'ha detta un uomo che da sempre \u00e8 sensibile a questo tema, come sa chi ricorda il suo impegno per Lampedusa.\nMa Salvini ha scatenato l'inferno, tutti i suoi troll stanno attaccando sui social Baglioni, qualcuno vorrebbe addirittura impedirgli di presentare il prossimo Sanremo (tra l'altro quello dello scorso anno ha visto un boom di ascolti). Secondo me stanno esagerando, davvero.\nSalvini si sta montando la testa: vuole persino impedire ai cantanti di esprimere le proprie opinioni? E poi: perch\u00e9 Albano s\u00ec e Baglioni no? Solo i cantanti che piacciono a Salvini? Pretende di spiegare a Gattuso come schierare il Milan, a Baglioni cosa dire al festival, ai vescovi come si guida la chiesa. Anche basta, Salvini. Anche basta.", "post_text": "Esagerano, eccome se esagerano: adesso attaccano persino Claudio Baglioni. Cio\u00e8 dico: CLAUDIO BAGLIONI. Un'icona per tutti gli italiani. Uno dei grandi della musica italiana. E perch\u00e9? Perch\u00e9 Baglioni ha detto che la soluzione all'immigrazione \u00e8 pi\u00f9 complessa di lasciare in mezzo al mare 49 persone. Ha detto la verit\u00e0, semplice, persino banale. E l\u2026 Altro'ha detta un uomo che da sempre \u00e8 sensibile a questo tema, come sa chi ricorda il suo impegno per Lampedusa.\nMa Salvini ha scatenato l'inferno, tutti i suoi troll stanno attaccando sui social Baglioni, qualcuno vorrebbe addirittura impedirgli di presentare il prossimo Sanremo (tra l'altro quello dello scorso anno ha visto un boom di ascolti). Secondo me stanno esagerando, davvero.\nSalvini si sta montando la testa: vuole persino impedire ai cantanti di esprimere le proprie opinioni? E poi: perch\u00e9 Albano s\u00ec e Baglioni no? Solo i cantanti che piacciono a Salvini? Pretende di spiegare a Gattuso come schierare il Milan, a Baglioni cosa dire al festival, ai vescovi come si guida la chiesa. Anche basta, Salvini. Anche basta.", "shared_text": "", "time": "2019-01-10 20:16:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156434109284915&id=113335124914", "link": null} +{"post_id": "10156433688899915", "text": "La drammatica vicenda dei 49 migranti \u00e8 stata risolta tardi, ma \u00e8 stata risolta, grazie alla leadership di un uomo capace. Chi \u00e8?\n- \u00e8 un premier, ma non \u00e8 Conte.\n- \u00e8 un milanista sfegatato, ma non \u00e8 Salvini.\n- parla perfettamente l'italiano, infatti non \u00e8 Di Maio.\nSi chiama Joseph Muscat ed \u00e8 il premier di Malta.\nNon a caso Salvini, smentito\u2026 Altro platealmente anche dal suo governo, attacca Malta e Muscat da ieri in modo costante.\nEhi, Salvini, adesso che \u00e8 finita la vicenda dei 49 migranti e sono stati accolti perch\u00e9 non ti concentri sui 49 milioni e inizi a restituirceli?", "post_text": "La drammatica vicenda dei 49 migranti \u00e8 stata risolta tardi, ma \u00e8 stata risolta, grazie alla leadership di un uomo capace. Chi \u00e8?\n- \u00e8 un premier, ma non \u00e8 Conte.\n- \u00e8 un milanista sfegatato, ma non \u00e8 Salvini.\n- parla perfettamente l'italiano, infatti non \u00e8 Di Maio.\nSi chiama Joseph Muscat ed \u00e8 il premier di Malta.\nNon a caso Salvini, smentito\u2026 Altro platealmente anche dal suo governo, attacca Malta e Muscat da ieri in modo costante.\nEhi, Salvini, adesso che \u00e8 finita la vicenda dei 49 migranti e sono stati accolti perch\u00e9 non ti concentri sui 49 milioni e inizi a restituirceli?", "shared_text": "", "time": "2019-01-10 16:26:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156433688899915&id=113335124914", "link": null} +{"post_id": "10156433383649915", "text": "Il professor Roberto Burioni, persona che stimo enormemente, mi ha proposto di firmare un documento sui vaccini e per la scienza. Mi ha detto: \u201cGuarda, su questo documento forse portiamo anche Beppe Grillo.\u2026 Altro Sarebbe un grande passo in avanti, secondo me. Hai problemi nel caso a firmarlo insieme a lui?\u201d. Certo che no. Se Grillo, i Cinque Stelle, la maggioranza abbandonano le posizioni antiscientifiche e NoVax io, da italiano, sono felice. Grazie dunque al professor Burioni per il suo servizio continuo alla causa della scienza e della dignit\u00e0 del nostro Paese. E grazie a tutti i ricercatori, i medici, gli scienziati. Il futuro appartiene a voi, non ai venditori di fumo.", "post_text": "Il professor Roberto Burioni, persona che stimo enormemente, mi ha proposto di firmare un documento sui vaccini e per la scienza. Mi ha detto: \u201cGuarda, su questo documento forse portiamo anche Beppe Grillo.\u2026 Altro Sarebbe un grande passo in avanti, secondo me. Hai problemi nel caso a firmarlo insieme a lui?\u201d. Certo che no. Se Grillo, i Cinque Stelle, la maggioranza abbandonano le posizioni antiscientifiche e NoVax io, da italiano, sono felice. Grazie dunque al professor Burioni per il suo servizio continuo alla causa della scienza e della dignit\u00e0 del nostro Paese. E grazie a tutti i ricercatori, i medici, gli scienziati. Il futuro appartiene a voi, non ai venditori di fumo.", "shared_text": "", "time": "2019-01-10 13:09:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/49623463_10156433393484915_4869315590113722368_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=ydE43loqErQAQmaZ2VuXrmH8CYerOpP_B8wNmeUi9YUrNfrEHlV44ETrw&_nc_ht=scontent-cdt1-1.xx&oh=acab059ae2763ffe92e6285f14be1cd4&oe=5E428D9A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156433383649915&id=113335124914", "link": null} +{"post_id": "10156432409279915", "text": "Almeno quattro amici americani mi hanno chiesto: ma davvero Roma \u00e8 cos\u00ec piena di rifiuti? E io ho minimizzato. Come si dice da queste parti: giusto o sbagliato, \u00e8 comunque il mio Paese. E lo difendo sempre. Poi apri la cronaca romana del Messaggero e vedi queste scene. Che rabbia! Ma perch\u00e9 Roma deve essere trattata cos\u00ec?", "post_text": "Almeno quattro amici americani mi hanno chiesto: ma davvero Roma \u00e8 cos\u00ec piena di rifiuti? E io ho minimizzato. Come si dice da queste parti: giusto o sbagliato, \u00e8 comunque il mio Paese. E lo difendo sempre. Poi apri la cronaca romana del Messaggero e vedi queste scene. Che rabbia! Ma perch\u00e9 Roma deve essere trattata cos\u00ec?", "shared_text": "", "time": "2019-01-10 00:50:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/49949262_10156432409239915_1171336546255634432_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=9HqFJVgHy8sAQmC4IbPr1jGF99OFpWIvPixduStAdltSyfHjXHp2ruBvw&_nc_ht=scontent-cdt1-1.xx&oh=56e634a9a6a0e0a04a64bdfdf12b1fcc&oe=5E420FCE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156432409279915&id=113335124914", "link": null} +{"post_id": "10156432084584915", "text": "Avete fatto caso che stanno mettendo in piedi i pi\u00f9 incredibili diversivi pur di non parlare delle banche?\nLitigano su altro, fingono dissidi, hanno buttato l\u00ec persino la cannabis pur di cambiare discorso.\nPerch\u00e9 il loro obiettivo \u00e8 mettere a tacere questa vicenda: cercano diversivi per abbassare l\u2019attenzione.\nE invece eccovi 10 mini riflessioni,\u2026 Altro semplici semplici.\n1- Il Governo ha fatto bene a fare il decreto per Carige.\n2- Penso che il PD farebbe benissimo a votare a favore del decreto. Prima delle polemiche di parte per noi viene sempre l\u2019interesse del Paese.\n3- Loro usano soldi pubblici per garantire e poi salvare una banca. Esattamente come ha fatto il Governo Gentiloni. Tanto che il\u2026 Altro", "post_text": "Avete fatto caso che stanno mettendo in piedi i pi\u00f9 incredibili diversivi pur di non parlare delle banche?\nLitigano su altro, fingono dissidi, hanno buttato l\u00ec persino la cannabis pur di cambiare discorso.\nPerch\u00e9 il loro obiettivo \u00e8 mettere a tacere questa vicenda: cercano diversivi per abbassare l\u2019attenzione.\nE invece eccovi 10 mini riflessioni,\u2026 Altro semplici semplici.\n1- Il Governo ha fatto bene a fare il decreto per Carige.\n2- Penso che il PD farebbe benissimo a votare a favore del decreto. Prima delle polemiche di parte per noi viene sempre l\u2019interesse del Paese.\n3- Loro usano soldi pubblici per garantire e poi salvare una banca. Esattamente come ha fatto il Governo Gentiloni. Tanto che il\u2026 Altro", "shared_text": "", "time": "2019-01-09 21:06:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156432084584915&id=113335124914", "link": null} +{"post_id": "10156431582469915", "text": "Le celebrazioni per i 200 anni dell\u2019Infinito di Leopardi ci ricordano che l\u2019Italia \u00e8 innanzitutto terra di cultura, letteratura, emozioni. Ma questo capolavoro - scritto quando il poeta aveva appena 20 anni -\u2026 Altro ci riporta alla mente anche le serate passate sui libri al liceo a studiare e a farsi grandi domande. Chi di noi non si \u00e8 mai emozionato davanti a Leopardi?\nUn capolavoro serve a ricordarsi chi siamo e chi vogliamo essere, come Paese ma anche come persone. Serve a farsi domande, vere, autentiche sul senso della vita. Noi siamo l\u2019Italia, una comunit\u00e0 che ha dato i natali ad alcune tra le pi\u00f9 straordinarie espressioni artistiche e culturali del mondo: non possiamo dimenticarcene nel chiacchiericcio di ogni giorno.\nE se avete tempo, un suggerimento: fate un salto a Recanati, per visitare i luoghi del Poeta come ho fatto io qualche mese fa. Siamo pieni di meraviglie troppe volte sconosciute. L\u2019Italia profonda \u00e8 bellissima. E pi\u00f9 forte di tutte le nostre paure", "post_text": "Le celebrazioni per i 200 anni dell\u2019Infinito di Leopardi ci ricordano che l\u2019Italia \u00e8 innanzitutto terra di cultura, letteratura, emozioni. Ma questo capolavoro - scritto quando il poeta aveva appena 20 anni -\u2026 Altro ci riporta alla mente anche le serate passate sui libri al liceo a studiare e a farsi grandi domande. Chi di noi non si \u00e8 mai emozionato davanti a Leopardi?\nUn capolavoro serve a ricordarsi chi siamo e chi vogliamo essere, come Paese ma anche come persone. Serve a farsi domande, vere, autentiche sul senso della vita. Noi siamo l\u2019Italia, una comunit\u00e0 che ha dato i natali ad alcune tra le pi\u00f9 straordinarie espressioni artistiche e culturali del mondo: non possiamo dimenticarcene nel chiacchiericcio di ogni giorno.\nE se avete tempo, un suggerimento: fate un salto a Recanati, per visitare i luoghi del Poeta come ho fatto io qualche mese fa. Siamo pieni di meraviglie troppe volte sconosciute. L\u2019Italia profonda \u00e8 bellissima. E pi\u00f9 forte di tutte le nostre paure", "shared_text": "", "time": "2019-01-09 16:09:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/49585714_10156431582404915_4663617159493058560_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=WVyGma1GuxcAQkZGSZzlZ6yl3xjVc19TaKuAPseRECxMYOGSglQm_WZlA&_nc_ht=scontent-cdt1-1.xx&oh=8831a4f84302f1b0872aa12a2830e02d&oe=5E3EBD5D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156431582469915&id=113335124914", "link": null} +{"post_id": "10156430027859915", "text": "Quando vedo certe immagini mi domando come le istituzioni italiane possano stare dalla parte dei Gilet Gialli. Mi dicono: ah, ma tu stai dalla parte di Macron. Io sto dalla parte della legalit\u00e0, delle forze dell\u2019ordine, della democrazia. Chi giustifica la violenza, per me, ha sempre torto. Sempre.", "post_text": "Quando vedo certe immagini mi domando come le istituzioni italiane possano stare dalla parte dei Gilet Gialli. Mi dicono: ah, ma tu stai dalla parte di Macron. Io sto dalla parte della legalit\u00e0, delle forze dell\u2019ordine, della democrazia. Chi giustifica la violenza, per me, ha sempre torto. Sempre.", "shared_text": "", "time": "2019-01-08 21:59:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/49769289_10156430027799915_3400570309709922304_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=bTQO-u7hFfYAQm0VdVeYoS-msaD_h3v2uCmQIJgBUG6yPz9tO2k_pJnZw&_nc_ht=scontent-cdt1-1.xx&oh=59dbd2f39e8f0b78c6a8d7d31b7c4bad&oe=5E46D91E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156430027859915&id=113335124914", "link": null} +{"post_id": "10156429627364915", "text": "Nella vita capita a tutti di cambiare idea.\nSalvini & Di Maio adesso hanno cambiato idea, decidendo di salvare la banca di Genova. Legittimo.\nQuello che invece \u00e8 inaccettabile \u00e8 il tentativo di prendere in giro gli italiani. Vedi le giustificazioni che girano sui social, senti lo stridore delle unghie sugli specchi mentre si giustificano e ti\u2026 Altro dici: ma perch\u00e9 non ammettono la verit\u00e0 e cambiano discorso?\nIl problema non \u00e8 la questione BANCHE.\nIl problema \u00e8 chi nega la realt\u00e0.\nIeri era per Ilva, oggi per Banche, domani sar\u00e0 per TAV o per l'aumento della pressione fiscale.\nNon mi colpisce la cosa in s\u00e9, ma la tracotante arroganza con cui giustificano il fango che ci hanno buttato addosso per\u2026 Altro", "post_text": "Nella vita capita a tutti di cambiare idea.\nSalvini & Di Maio adesso hanno cambiato idea, decidendo di salvare la banca di Genova. Legittimo.\nQuello che invece \u00e8 inaccettabile \u00e8 il tentativo di prendere in giro gli italiani. Vedi le giustificazioni che girano sui social, senti lo stridore delle unghie sugli specchi mentre si giustificano e ti\u2026 Altro dici: ma perch\u00e9 non ammettono la verit\u00e0 e cambiano discorso?\nIl problema non \u00e8 la questione BANCHE.\nIl problema \u00e8 chi nega la realt\u00e0.\nIeri era per Ilva, oggi per Banche, domani sar\u00e0 per TAV o per l'aumento della pressione fiscale.\nNon mi colpisce la cosa in s\u00e9, ma la tracotante arroganza con cui giustificano il fango che ci hanno buttato addosso per\u2026 Altro", "shared_text": "", "time": "2019-01-08 18:03:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156429627364915&id=113335124914", "link": null} +{"post_id": "10156428997169915", "text": "Sono bastati dieci minuti di una riunione notturna del Consiglio dei Ministri per smentire cinque anni di insulti e menzogne contro di noi. Matteo Salvini e Luigi Di Maio devono solo vergognarsi.", "post_text": "Sono bastati dieci minuti di una riunione notturna del Consiglio dei Ministri per smentire cinque anni di insulti e menzogne contro di noi. Matteo Salvini e Luigi Di Maio devono solo vergognarsi.", "shared_text": "", "time": "2019-01-08 09:54:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1989700491148303&id=113335124914", "link": null} +{"post_id": "10156428193849915", "text": "Il Governo populista approva il decreto salva banche per aiutare correntisti e risparmiatori di Genova. Esattamente ci\u00f2 che era gi\u00e0 accaduto a Arezzo, Ferrara, nelle Marche, a Chieti, in Veneto, a Siena. Quando lo facevamo noi eravamo attaccati come amici dei potenti, quando lo fanno loro cercano di far credere che sia solo un aiuto ai\u2026 Altro risparmiatori. La verit\u00e0 \u00e8 che - anche sulle banche - ci hanno massacrato con bugie, FakeNews e insulti. Come Ilva, Tap, TerzoValico, trivelle, 80euro, JobsAct, Alternanza Scuola Lavoro. Quante fandonie hanno raccontato agli italiani!\nOggi hanno fatto una cosa giusta per i risparmiatori. E facendo la cosa giusta hanno dimostrato di aver spudoratamente MENTITO per quattro anni. Il tempo \u00e8 galantuomo e fa giustizia di tutte le bugie, anche delle bugie di questi piccoli imbroglioni.", "post_text": "Il Governo populista approva il decreto salva banche per aiutare correntisti e risparmiatori di Genova. Esattamente ci\u00f2 che era gi\u00e0 accaduto a Arezzo, Ferrara, nelle Marche, a Chieti, in Veneto, a Siena. Quando lo facevamo noi eravamo attaccati come amici dei potenti, quando lo fanno loro cercano di far credere che sia solo un aiuto ai\u2026 Altro risparmiatori. La verit\u00e0 \u00e8 che - anche sulle banche - ci hanno massacrato con bugie, FakeNews e insulti. Come Ilva, Tap, TerzoValico, trivelle, 80euro, JobsAct, Alternanza Scuola Lavoro. Quante fandonie hanno raccontato agli italiani!\nOggi hanno fatto una cosa giusta per i risparmiatori. E facendo la cosa giusta hanno dimostrato di aver spudoratamente MENTITO per quattro anni. Il tempo \u00e8 galantuomo e fa giustizia di tutte le bugie, anche delle bugie di questi piccoli imbroglioni.", "shared_text": "", "time": "2019-01-07 23:17:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156428193849915&id=113335124914", "link": null} +{"post_id": "10156427345054915", "text": "Uno ci prova, si sforza: non parliamo male di questa maggioranza. Poi arriva il ministro che scheda gli scienziati sulla base delle idee politiche o il vicepremier che d\u00e0 solidariet\u00e0 ai picchiatori francesi entrati con le ruspe nei palazzi delle istituzioni e ti domandi: ma lo fanno apposta?\nIl problema \u00e8 che le loro sparate non sono gratis.\nIl\u2026 Altro populismo costa. E costa tanto.\nOggi \u00e8 uscito un dato che nessuno considera. Nel 2018 abbiamo speso un miliardo e settecento milioni di \u20ac per maggiori interessi, il costo dello spread. Ogni volta che Salvini fa una diretta Facebook, ogni volta che Di Maio lo rincorre, ogni volta che Toninelli ha un'idea geniale, gli italiani pagano.\nSalvini e Di Maio non tagliano i costi della politica: loro sono il VERO costo della politica. Un miliardo e settecento milioni di euro: quanti biglietti in economy o quanti vitalizi ci vogliono per raggiungere questa cifra?\nTutte le volte che leggete una sparata di Di Maio o Salvini non pensate che sia folclore. Vi stanno facendo danno.\nIl populismo costa. E a pagare sono... prima gli italiani.", "post_text": "Uno ci prova, si sforza: non parliamo male di questa maggioranza. Poi arriva il ministro che scheda gli scienziati sulla base delle idee politiche o il vicepremier che d\u00e0 solidariet\u00e0 ai picchiatori francesi entrati con le ruspe nei palazzi delle istituzioni e ti domandi: ma lo fanno apposta?\nIl problema \u00e8 che le loro sparate non sono gratis.\nIl\u2026 Altro populismo costa. E costa tanto.\nOggi \u00e8 uscito un dato che nessuno considera. Nel 2018 abbiamo speso un miliardo e settecento milioni di \u20ac per maggiori interessi, il costo dello spread. Ogni volta che Salvini fa una diretta Facebook, ogni volta che Di Maio lo rincorre, ogni volta che Toninelli ha un'idea geniale, gli italiani pagano.\nSalvini e Di Maio non tagliano i costi della politica: loro sono il VERO costo della politica. Un miliardo e settecento milioni di euro: quanti biglietti in economy o quanti vitalizi ci vogliono per raggiungere questa cifra?\nTutte le volte che leggete una sparata di Di Maio o Salvini non pensate che sia folclore. Vi stanno facendo danno.\nIl populismo costa. E a pagare sono... prima gli italiani.", "shared_text": "", "time": "2019-01-07 14:23:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156427345054915&id=113335124914", "link": null} +{"post_id": "10156425670159915", "text": "Tra le \"invenzioni\" di Firenze c'\u00e8 il calcio, il giocare la palla con i piedi. Ed il calcio storico nella storia di Firenze non \u00e8 soltanto un modo per svagarsi o divertirsi, ma anche una strada per affermare l'identit\u00e0 della citt\u00e0. In attesa di vincere il prossimo scudetto, consoliamoci con il passato \ud83d\ude09", "post_text": "Tra le \"invenzioni\" di Firenze c'\u00e8 il calcio, il giocare la palla con i piedi. Ed il calcio storico nella storia di Firenze non \u00e8 soltanto un modo per svagarsi o divertirsi, ma anche una strada per affermare l'identit\u00e0 della citt\u00e0. In attesa di vincere il prossimo scudetto, consoliamoci con il passato \ud83d\ude09", "shared_text": "", "time": "2019-01-06 18:30:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=385667408868965&id=113335124914", "link": null} +{"post_id": "10156424110514915", "text": "Leggo i vostri Tweet, i vostri post. E voglio dirvi grazie per #FirenzeSecondoMe. Ci siamo messi in testa di camminare nel cuore della cultura. E passo dopo passo, puntata dopo puntata, ci siamo sorpresi a riconoscere il valore della bellezza. Mi sono tuffato in questa avventura perch\u00e9 mi sembrava doveroso e affascinante dire grazie a Firenze.\u2026 Altro Adesso che \u00e8 finita voglio dire grazie anche a voi. Grazie a chi ci ha creduto, a chi si \u00e8 lasciato accompagnare, a chi ha sognato insieme a me questo cammino, a chi ci ha messo la faccia. Vado a letto felice per aver realizzato un sogno che avevo da anni. Firenze, che oggi abbiamo conosciuto come citt\u00e0 delle stelle - e quindi dei desideri - ci aiuter\u00e0 a tornare a sognare. Buona notte, amici. Sono davvero orgoglioso di ci\u00f2 che - tutti insieme - abbiamo fatto.", "post_text": "Leggo i vostri Tweet, i vostri post. E voglio dirvi grazie per #FirenzeSecondoMe. Ci siamo messi in testa di camminare nel cuore della cultura. E passo dopo passo, puntata dopo puntata, ci siamo sorpresi a riconoscere il valore della bellezza. Mi sono tuffato in questa avventura perch\u00e9 mi sembrava doveroso e affascinante dire grazie a Firenze.\u2026 Altro Adesso che \u00e8 finita voglio dire grazie anche a voi. Grazie a chi ci ha creduto, a chi si \u00e8 lasciato accompagnare, a chi ha sognato insieme a me questo cammino, a chi ci ha messo la faccia. Vado a letto felice per aver realizzato un sogno che avevo da anni. Firenze, che oggi abbiamo conosciuto come citt\u00e0 delle stelle - e quindi dei desideri - ci aiuter\u00e0 a tornare a sognare. Buona notte, amici. Sono davvero orgoglioso di ci\u00f2 che - tutti insieme - abbiamo fatto.", "shared_text": "", "time": "2019-01-05 23:57:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156424110514915&id=113335124914", "link": null} +{"post_id": "10156423709034915", "text": "Alle 21,25 ultima puntata di FirenzeSecondoMe sul Nove (chi lo vede con il decoder sky lo trova sul 149). Nel video un\u2019anticipazione, Leonardo Bruni, sconosciuto ai pi\u00f9, una delle massime figure dell\u2019Umanesimo\u2026 Altro fiorentino, nella met\u00e0 del 400 utilizza parole che nel corso dei secoli saranno usate molto: libert\u00e0, uguaglianza e giustizia.", "post_text": "Alle 21,25 ultima puntata di FirenzeSecondoMe sul Nove (chi lo vede con il decoder sky lo trova sul 149). Nel video un\u2019anticipazione, Leonardo Bruni, sconosciuto ai pi\u00f9, una delle massime figure dell\u2019Umanesimo\u2026 Altro fiorentino, nella met\u00e0 del 400 utilizza parole che nel corso dei secoli saranno usate molto: libert\u00e0, uguaglianza e giustizia.", "shared_text": "", "time": "2019-01-05 19:56:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156423709034915&id=113335124914", "link": null} +{"post_id": "10156423501089915", "text": "Il vicesindaco di Trieste si vanta sui social per aver buttato via la coperta a un senza tetto. Un gesto indegno del vicesindaco di una citt\u00e0 ricca di valori e cultura quale Trieste: il gesto vigliacco di chi cerca visibilit\u00e0 e dimentica l\u2019umanit\u00e0. Una vergogna assoluta", "post_text": "Il vicesindaco di Trieste si vanta sui social per aver buttato via la coperta a un senza tetto. Un gesto indegno del vicesindaco di una citt\u00e0 ricca di valori e cultura quale Trieste: il gesto vigliacco di chi cerca visibilit\u00e0 e dimentica l\u2019umanit\u00e0. Una vergogna assoluta", "shared_text": "", "time": "2019-01-05 17:31:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156423501089915&id=113335124914", "link": null} +{"post_id": "2576300792397010", "text": "Oggi ultima puntata di #FirenzeSecondoMe. Racconteremo tante curiosit\u00e0 a cominciare dal rapporto con le stelle di Firenze da Dante a Galileo, dalle periferie al ruolo degli ordini mendicanti, da Santa Croce a\u2026 Altro Orsanmichele. Sapevate ad esempio che il calcio, giocare la palla coi piedi, \u00e8 nato proprio a Firenze? Qui una piccola anticipazione del racconto dell\u2019assedio del 1530. Le altre puntate sono visibili ancora per qualche giorno su DPlay. Per il resto, ci vediamo stasera alle 21.25 sul Nove con un enorme grazie alle centinaia di migliaia di persone che hanno seguito questa camminata nel cuore di Firenze.", "post_text": "Oggi ultima puntata di #FirenzeSecondoMe. Racconteremo tante curiosit\u00e0 a cominciare dal rapporto con le stelle di Firenze da Dante a Galileo, dalle periferie al ruolo degli ordini mendicanti, da Santa Croce a\u2026 Altro Orsanmichele. Sapevate ad esempio che il calcio, giocare la palla coi piedi, \u00e8 nato proprio a Firenze? Qui una piccola anticipazione del racconto dell\u2019assedio del 1530. Le altre puntate sono visibili ancora per qualche giorno su DPlay. Per il resto, ci vediamo stasera alle 21.25 sul Nove con un enorme grazie alle centinaia di migliaia di persone che hanno seguito questa camminata nel cuore di Firenze.", "shared_text": "", "time": "2019-01-05 13:39:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2576300792397010&id=113335124914", "link": null} +{"post_id": "10156422991554915", "text": "Non voglio fare nessuna polemica, nessuna. Ma quando vedi queste foto ti dispiace per Roma, per l\u2019Italia, per tutti. Puoi cercare di cambiare discorso e parlare di tutto il resto, di pensioni, migrazione, quota 100. Ma la capitale d\u2019Italia in questo stato \u00e8 una ferita inaccettabile. Roma non si merita questo scandalo.", "post_text": "Non voglio fare nessuna polemica, nessuna. Ma quando vedi queste foto ti dispiace per Roma, per l\u2019Italia, per tutti. Puoi cercare di cambiare discorso e parlare di tutto il resto, di pensioni, migrazione, quota 100. Ma la capitale d\u2019Italia in questo stato \u00e8 una ferita inaccettabile. Roma non si merita questo scandalo.", "shared_text": "", "time": "2019-01-05 12:36:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/49713933_10156422991519915_8800506693810126848_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=YfLZkuGcITIAQk6PVYH1R97Mg5Ng1MDFX6kKNUxWMCsdey9yT1XuImBiQ&_nc_ht=scontent-cdt1-1.xx&oh=c8a8a2ae9f23d83ba027e1d35acd57e2&oe=5E49AFCA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156422991554915&id=113335124914", "link": null} +{"post_id": "10156421909869915", "text": "Arriva la sera e provi a fare un punto su quello che \u00e8 successo nella politica italiana. E niente. Come ormai avviene da mesi non c'\u00e8 un elenco di provvedimenti approvati, di riforme progettate. No.\nC'\u00e8 solo la lista degli attacchi di Salvini: perch\u00e9 ormai \u00e8 questa la cifra della nuova politica italiana. Un elenco di nemici perch\u00e9 il Ministro dell\u2026 Altro'Interno non risolve problemi, ma provoca e fa polemica, tutti i giorni.\nE allora oggi troviamo la minaccia alle ONG, l'insulto a Malta, l'attacco al PD sull'immigrazione (un classico), la strumentalizzazione di Mattarella, l'ironia sulle persone che stanno in mezzo al mare perch\u00e9 scappano dalla fame. Abbiamo anche la quotidiana presa in giro di \u2026 Altro", "post_text": "Arriva la sera e provi a fare un punto su quello che \u00e8 successo nella politica italiana. E niente. Come ormai avviene da mesi non c'\u00e8 un elenco di provvedimenti approvati, di riforme progettate. No.\nC'\u00e8 solo la lista degli attacchi di Salvini: perch\u00e9 ormai \u00e8 questa la cifra della nuova politica italiana. Un elenco di nemici perch\u00e9 il Ministro dell\u2026 Altro'Interno non risolve problemi, ma provoca e fa polemica, tutti i giorni.\nE allora oggi troviamo la minaccia alle ONG, l'insulto a Malta, l'attacco al PD sull'immigrazione (un classico), la strumentalizzazione di Mattarella, l'ironia sulle persone che stanno in mezzo al mare perch\u00e9 scappano dalla fame. Abbiamo anche la quotidiana presa in giro di \u2026 Altro", "shared_text": "", "time": "2019-01-04 23:25:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156421909869915&id=113335124914", "link": null} +{"post_id": "10156421263099915", "text": "Oggi Repubblica torna sui Comitati civici Ritorno al futuro - Comitati di azione civile. Per chi ha voglia di combattere questo governo di cialtroni senza entrare nelle dinamiche interne ai partiti e alle\u2026 Altro correnti. Per chi ha voglia di dare una mano per la verit\u00e0 contro le fake news, la scienza contro gli apprendisti stregoni, il lavoro contro l\u2019assistenzialismo, l\u2019ambiente contro chi attacca gli accordi di Parigi i Comitati Civici sono uno strumento. Semplicit\u00e0, allegria, proposte concrete. Astenersi rancorosi, noi vogliamo solo fare politica con coraggio e determinazione. Perch\u00e9 questa maggioranza non \u00e8 eterna e questo Governo pu\u00f2 bucarsi all\u2019improvviso come un palloncino troppo pieno d\u2019aria.\nLeggete l\u2019articolo, se avete tempo.", "post_text": "Oggi Repubblica torna sui Comitati civici Ritorno al futuro - Comitati di azione civile. Per chi ha voglia di combattere questo governo di cialtroni senza entrare nelle dinamiche interne ai partiti e alle\u2026 Altro correnti. Per chi ha voglia di dare una mano per la verit\u00e0 contro le fake news, la scienza contro gli apprendisti stregoni, il lavoro contro l\u2019assistenzialismo, l\u2019ambiente contro chi attacca gli accordi di Parigi i Comitati Civici sono uno strumento. Semplicit\u00e0, allegria, proposte concrete. Astenersi rancorosi, noi vogliamo solo fare politica con coraggio e determinazione. Perch\u00e9 questa maggioranza non \u00e8 eterna e questo Governo pu\u00f2 bucarsi all\u2019improvviso come un palloncino troppo pieno d\u2019aria.\nLeggete l\u2019articolo, se avete tempo.", "shared_text": "", "time": "2019-01-04 16:40:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p350x350/49660088_10156421263044915_2591329863335936000_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=sboHZzrGjioAQmWaX32kiaPZM3BBoJ23O7S98WepkMLklJbi_pxmiNcEQ&_nc_ht=scontent-cdt1-1.xx&oh=a9b5417c9062b2709c7c4e8242acfbea&oe=5E4DFD27", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156421263099915&id=113335124914", "link": null} +{"post_id": "10156420939349915", "text": "Firenze Secondo Me domani sera (ore 21.25, Canale Nove) nell\u2019ultima puntata entra in Santa Croce. Fuori il calcio storico, dentro la meraviglia dell\u2019arte. Ma anche il ricordo dell\u2019Alluvione del 1966 e la storia incredibile degli Angeli del Fango.", "post_text": "Firenze Secondo Me domani sera (ore 21.25, Canale Nove) nell\u2019ultima puntata entra in Santa Croce. Fuori il calcio storico, dentro la meraviglia dell\u2019arte. Ma anche il ricordo dell\u2019Alluvione del 1966 e la storia incredibile degli Angeli del Fango.", "shared_text": "", "time": "2019-01-04 13:42:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156420939349915&id=113335124914", "link": null} +{"post_id": "10156420772854915", "text": "Dopo il post sui costi della politica proseguiamo con le posizioni impopolari: la fatturazione elettronica. Sono felice del fatto che la fatturazione elettronica stia diventando sempre pi\u00f9 una realt\u00e0 in Italia. Nata da una proposta Leopolda del 2010 con Ernesto Maria Ruffini, attuata sotto il mio Governo, oggi viene estesa anche ai privati. Molte\u2026 Altro polemiche, moltissime. E sicuramente si potr\u00e0 e si dovr\u00e0 migliorarne l'attuazione. Ma l'idea di utilizzare la digitalizzazione per contrastare l'evasione \u00e8 vincente come gi\u00e0 lo era stata la dichiarazione precompilata e il canone in bolletta: proprio il canone \u00e8 il simbolo perch\u00e9 se si paga tutti, si paga meno. Naturalmente questo \u00e8 il contrario dell\u2026 Altro", "post_text": "Dopo il post sui costi della politica proseguiamo con le posizioni impopolari: la fatturazione elettronica. Sono felice del fatto che la fatturazione elettronica stia diventando sempre pi\u00f9 una realt\u00e0 in Italia. Nata da una proposta Leopolda del 2010 con Ernesto Maria Ruffini, attuata sotto il mio Governo, oggi viene estesa anche ai privati. Molte\u2026 Altro polemiche, moltissime. E sicuramente si potr\u00e0 e si dovr\u00e0 migliorarne l'attuazione. Ma l'idea di utilizzare la digitalizzazione per contrastare l'evasione \u00e8 vincente come gi\u00e0 lo era stata la dichiarazione precompilata e il canone in bolletta: proprio il canone \u00e8 il simbolo perch\u00e9 se si paga tutti, si paga meno. Naturalmente questo \u00e8 il contrario dell\u2026 Altro", "shared_text": "", "time": "2019-01-04 11:56:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156420772854915&id=113335124914", "link": null} +{"post_id": "10156419281194915", "text": "Oggi il sovrintendente di Pompei, Massimo Osanna, lascia il suo servizio alla guida di questo polo culturale tra i pi\u00f9 importanti al mondo e lo fa inaugurando il restauro della Schola Armaturarum. Per anni\u2026 Altro facevano notizia i crolli, oggi fa notizia il record di visitatori: quasi 4 milioni nel 2018, praticamente raddoppiati. Pompei era la classica storia negativa: ogni volta che finiva sui giornali di tutto il mondo era per un crollo. In meno di un lustro una rivoluzione. Io ci ho creduto tanto perch\u00e9 - lo sapete - penso che la bellezza salvi il mondo e credo che la cultura sia la pi\u00f9 grande sfida della politica di oggi. Ma senza Massimo Osanna non avremmo ottenuto i risultati di questi anni.\u2026 Altro", "post_text": "Oggi il sovrintendente di Pompei, Massimo Osanna, lascia il suo servizio alla guida di questo polo culturale tra i pi\u00f9 importanti al mondo e lo fa inaugurando il restauro della Schola Armaturarum. Per anni\u2026 Altro facevano notizia i crolli, oggi fa notizia il record di visitatori: quasi 4 milioni nel 2018, praticamente raddoppiati. Pompei era la classica storia negativa: ogni volta che finiva sui giornali di tutto il mondo era per un crollo. In meno di un lustro una rivoluzione. Io ci ho creduto tanto perch\u00e9 - lo sapete - penso che la bellezza salvi il mondo e credo che la cultura sia la pi\u00f9 grande sfida della politica di oggi. Ma senza Massimo Osanna non avremmo ottenuto i risultati di questi anni.\u2026 Altro", "shared_text": "", "time": "2019-01-03 18:37:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/49407175_10156419280919915_5894258764495716352_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=kOBNWVES-bgAQm1E0CIsNQZ68CeBLRDHMFAyfKcIJ6gYiIyDJHjS3MUGA&_nc_ht=scontent-cdt1-1.xx&oh=acb1c7460c815a8c895c927eaec6352d&oe=5E4B953B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156419281194915&id=113335124914", "link": null} +{"post_id": "10156419150974915", "text": "Umberto Contarello \u00e8 uno sceneggiatore che ha scritto alcuni tra i film pi\u00f9 belli degli ultimi anni, tra gli altri La Grande Bellezza con il premio Oscar Paolo Sorrentino. Ieri mi ha rivolto una lettera aperta molto bella su Il Foglio. Stamani gli ho risposto con queste parole che voglio condividere con voi.\nGrazie, caro Umberto Contarello. Grazie\u2026 Altro del pensiero, grazie degli auguri, grazie anche del \u201ccaro\u201d con cui inizi la tua lettera di ieri sul Foglio. Saper giocare con le parole non \u00e8 da tutti. Utilizzarle per raccontare, emozionare, ispirare \u00e8 un privilegio di pochi. E tu che hai questo talento ci fai un regalo condividendo i tuoi pensieri. Anche quando riesci a coniare espressioni come\u2026 Altro", "post_text": "Umberto Contarello \u00e8 uno sceneggiatore che ha scritto alcuni tra i film pi\u00f9 belli degli ultimi anni, tra gli altri La Grande Bellezza con il premio Oscar Paolo Sorrentino. Ieri mi ha rivolto una lettera aperta molto bella su Il Foglio. Stamani gli ho risposto con queste parole che voglio condividere con voi.\nGrazie, caro Umberto Contarello. Grazie\u2026 Altro del pensiero, grazie degli auguri, grazie anche del \u201ccaro\u201d con cui inizi la tua lettera di ieri sul Foglio. Saper giocare con le parole non \u00e8 da tutti. Utilizzarle per raccontare, emozionare, ispirare \u00e8 un privilegio di pochi. E tu che hai questo talento ci fai un regalo condividendo i tuoi pensieri. Anche quando riesci a coniare espressioni come\u2026 Altro", "shared_text": "", "time": "2019-01-03 17:07:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156419150974915&id=113335124914", "link": null} +{"post_id": "10156418984334915", "text": "Sabato prossimo alle 21.25 sul Canale Nove andr\u00e0 in onda la quarta e ultima puntata di #FirenzeSecondoMe. Entriamo nel Bargello, il luogo delle torture e dei supplizi. Ma anche il luogo in cui Firenze abolisce la pena di morte, prima al mondo", "post_text": "Sabato prossimo alle 21.25 sul Canale Nove andr\u00e0 in onda la quarta e ultima puntata di #FirenzeSecondoMe. Entriamo nel Bargello, il luogo delle torture e dei supplizi. Ma anche il luogo in cui Firenze abolisce la pena di morte, prima al mondo", "shared_text": "", "time": "2019-01-03 15:30:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=287792961928145&id=113335124914", "link": null} +{"post_id": "10156418565474915", "text": "La mia intervista a Oggi partendo da #FirenzeSecondoMe e parlando anche di politica e di molto altro. Buongiorno.\nMATTEORENZI.IT\nFiero del mio documentario su Firenze. Dopo la tv non mollo di un centimetro. Intervista ad Oggi - Matteo Renzi", "post_text": "La mia intervista a Oggi partendo da #FirenzeSecondoMe e parlando anche di politica e di molto altro. Buongiorno.", "shared_text": "MATTEORENZI.IT\nFiero del mio documentario su Firenze. Dopo la tv non mollo di un centimetro. Intervista ad Oggi - Matteo Renzi", "time": "2019-01-03 10:12:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.9.500.262a/s480x480/49722117_23843234847390298_3263971808323305472_n.png.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=meVBEgLSFDkAQn6MOZAFMW8oADRmLxBpZkuJAYhZ4olJdKfE24HdIuK0Q&_nc_ht=scontent-cdt1-1.xx&oh=53e66935d0d8886159df3fea7de532f5&oe=5E7BB2DD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156418565474915&id=113335124914", "link": "https://www.matteorenzi.it/fiero-documentario-firenze-non-mollo-di-un-centimetro-intervista-oggi/?fbclid=IwAR0po4GVI9rgxwUuFGgwnQHHohP6igToge8HgN1il8Vm0EkWTTnvnMbIkF4"} +{"post_id": "623530998084197", "text": "Belli i vostri commenti al post sulla decisione del direttore degli Uffizi Schmidt di chiedere indietro i quadri rubati dai nazisti, grazie. E a proposito di Uffizi. Sapete qual \u00e8 il capolavoro della Galleria,\u2026 Altro secondo me? Non \u00e8 un quadro, non \u00e8 un\u2019opera d\u2019arte. Ma la scelta di una donna, la donna pi\u00f9 importante della storia di Firenze.", "post_text": "Belli i vostri commenti al post sulla decisione del direttore degli Uffizi Schmidt di chiedere indietro i quadri rubati dai nazisti, grazie. E a proposito di Uffizi. Sapete qual \u00e8 il capolavoro della Galleria,\u2026 Altro secondo me? Non \u00e8 un quadro, non \u00e8 un\u2019opera d\u2019arte. Ma la scelta di una donna, la donna pi\u00f9 importante della storia di Firenze.", "shared_text": "", "time": "2019-01-02 19:45:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=623530998084197&id=113335124914", "link": null} +{"post_id": "10156417147459915", "text": "Oggi Federico Fubini sul Corriere intervista Walter Ricciardi, Presidente dell\u2019Istituto Superiore di Sanit\u00e0 che si \u00e8 dimesso, lasciando la poltrona, perch\u00e9 non condivide l\u2019approccio antiscientifico del Governo.\u2026 Altro La massima reazione avuta dal ministro della sanit\u00e0 \u00e8 stata un imbarazzato silenzio. Nel dubbio ha attaccato il PD e il Pandoro che sarebbero entrambi \u201csenz\u2019anima\u201d. Giuro.\nIn attesa del giudizio sul panettone possiamo ricordare la Grillo come il ministro che ha rinviato l\u2019obbligo vaccinale.\nA questo governo improvvisato e cialtrone i tecnici competenti fanno paura e danno fastidio: poi ti domandi perch\u00e9 se ne vanno.", "post_text": "Oggi Federico Fubini sul Corriere intervista Walter Ricciardi, Presidente dell\u2019Istituto Superiore di Sanit\u00e0 che si \u00e8 dimesso, lasciando la poltrona, perch\u00e9 non condivide l\u2019approccio antiscientifico del Governo.\u2026 Altro La massima reazione avuta dal ministro della sanit\u00e0 \u00e8 stata un imbarazzato silenzio. Nel dubbio ha attaccato il PD e il Pandoro che sarebbero entrambi \u201csenz\u2019anima\u201d. Giuro.\nIn attesa del giudizio sul panettone possiamo ricordare la Grillo come il ministro che ha rinviato l\u2019obbligo vaccinale.\nA questo governo improvvisato e cialtrone i tecnici competenti fanno paura e danno fastidio: poi ti domandi perch\u00e9 se ne vanno.", "shared_text": "", "time": "2019-01-02 17:36:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/49540983_10156417147404915_77947205381521408_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=3wS6riZ_imAAQmtFpwZmFYOw-xsYtTsjpxYXlu50PsSS-L3aFKOlSJcKA&_nc_ht=scontent-cdt1-1.xx&oh=d6ff06b4d6c1056bcaf6debe6b16fb2c&oe=5E87F511", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156417147459915&id=113335124914", "link": null} +{"post_id": "10156416880304915", "text": "Oggi sono usciti i dati Istat sulla fiducia delle aziende: siamo al minimo da sei anni. Intervenendo in aula ho detto: avrete la fiducia del Senato ma state perdendo la fiducia di chi crea posti di lavoro. Temo proprio che il 2019 sar\u00e0 un anno difficile per l\u2019economia italiana. Quel che \u00e8 certo \u00e8 che adesso \u00e8 chiaro a tutti gli italiani chi ha\u2026 Altro voluto questa legge di bilancio e chi no. Adesso vedremo i risultati: il tempo \u00e8 davvero galantuomo. Spero di sbagliarmi ma credo che con questa strategia l\u2019Italia torner\u00e0 in recessione. E purtroppo i dati di oggi sono solo l\u2019antipasto. Il 2019 ci dir\u00e0 chi ha ragione", "post_text": "Oggi sono usciti i dati Istat sulla fiducia delle aziende: siamo al minimo da sei anni. Intervenendo in aula ho detto: avrete la fiducia del Senato ma state perdendo la fiducia di chi crea posti di lavoro. Temo proprio che il 2019 sar\u00e0 un anno difficile per l\u2019economia italiana. Quel che \u00e8 certo \u00e8 che adesso \u00e8 chiaro a tutti gli italiani chi ha\u2026 Altro voluto questa legge di bilancio e chi no. Adesso vedremo i risultati: il tempo \u00e8 davvero galantuomo. Spero di sbagliarmi ma credo che con questa strategia l\u2019Italia torner\u00e0 in recessione. E purtroppo i dati di oggi sono solo l\u2019antipasto. Il 2019 ci dir\u00e0 chi ha ragione", "shared_text": "", "time": "2019-01-02 14:39:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156416880304915&id=113335124914", "link": null} +{"post_id": "10156416667019915", "text": "Il 2019 inizia con questa giusta richiesta del direttore degli Uffizi che ha chiesto di restituirci alcune opere rubate dai nazisti e in modo particolare \u201cIl vaso di fiori\u201d. A me sembra un\u2019iniziativa\u2026 Altro sacrosanta. Bravo Direttore. E qualcuno oggi ironizza sui quotidiani perch\u00e9 il direttore degli Uffizi, Eike Schmidt, \u00e8 tedesco. Prima o poi tutti capiranno che il linguaggio della cultura \u00e8 universale e parla al mondo, indipendentemente dal passaporto che si ha in tasca.", "post_text": "Il 2019 inizia con questa giusta richiesta del direttore degli Uffizi che ha chiesto di restituirci alcune opere rubate dai nazisti e in modo particolare \u201cIl vaso di fiori\u201d. A me sembra un\u2019iniziativa\u2026 Altro sacrosanta. Bravo Direttore. E qualcuno oggi ironizza sui quotidiani perch\u00e9 il direttore degli Uffizi, Eike Schmidt, \u00e8 tedesco. Prima o poi tutti capiranno che il linguaggio della cultura \u00e8 universale e parla al mondo, indipendentemente dal passaporto che si ha in tasca.", "shared_text": "", "time": "2019-01-02 11:59:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/49155138_10156416666614915_1046169242061242368_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=fErJyLVh3HMAQmzRTrFmRQlm9DL9e35EgBSE-6Vp5HGJbSeqy0cGIKnXA&_nc_ht=scontent-cdt1-1.xx&oh=6fd6cfe8679a5e88d8fd8b2480a90b06&oe=5E88C3F0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156416667019915&id=113335124914", "link": null} +{"post_id": "10156416569554915", "text": "Auguri di buon anno a tutti, dal profondo del cuore. Che sia un 2019 all\u2019altezza dei vostri sogni! Mi ha colpito una frase del filosofo francese Bernard-Henri Levy su La Stampa nel fare gli auguri: Innanzitutto esprimo l\u2019augurio che sia possibile formularne; perch\u00e9 sembra che molti miei contemporanei abbiano deciso di unire le forze contro i\u2026 Altro fomentatori di desideri, i cospiratori della speranza, gli sperimentatori del futuro: sembra che abbia preso in odio l\u2019oggi, ogni futuro, ogni progetto, ogni temporalit\u00e0, ogni intensit\u00e0. A me sembra un ragionamento bellissimo. L\u2019odio e la rabbia temono il futuro, lo dipingono come un luogo macabro. Noi no. Non ci abbandoniamo all\u2019odio e alla rabbia. Noi vogliamo fomentare i desideri, cospirare la speranza, sperimentare il futuro. \u00c8 esattamente questo che mi auguro e vi auguro per il 2019.", "post_text": "Auguri di buon anno a tutti, dal profondo del cuore. Che sia un 2019 all\u2019altezza dei vostri sogni! Mi ha colpito una frase del filosofo francese Bernard-Henri Levy su La Stampa nel fare gli auguri: Innanzitutto esprimo l\u2019augurio che sia possibile formularne; perch\u00e9 sembra che molti miei contemporanei abbiano deciso di unire le forze contro i\u2026 Altro fomentatori di desideri, i cospiratori della speranza, gli sperimentatori del futuro: sembra che abbia preso in odio l\u2019oggi, ogni futuro, ogni progetto, ogni temporalit\u00e0, ogni intensit\u00e0. A me sembra un ragionamento bellissimo. L\u2019odio e la rabbia temono il futuro, lo dipingono come un luogo macabro. Noi no. Non ci abbandoniamo all\u2019odio e alla rabbia. Noi vogliamo fomentare i desideri, cospirare la speranza, sperimentare il futuro. \u00c8 esattamente questo che mi auguro e vi auguro per il 2019.", "shared_text": "", "time": "2019-01-02 10:26:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156416569554915&id=113335124914", "link": null} +{"post_id": "10156412698974915", "text": "Ci sar\u00e0 una grande battaglia educativa e culturale da fare nel 2019. La faremo insieme. #Auguri #BuonAnno", "post_text": "Ci sar\u00e0 una grande battaglia educativa e culturale da fare nel 2019. La faremo insieme. #Auguri #BuonAnno", "shared_text": "", "time": "2018-12-31 18:44:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/49122165_10156412698919915_1238540715579932672_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=veFkS3JrC4AAQk8E3gfzSUKVsI-94OsqN9di4SntLcR4lKOS93LfYcggA&_nc_ht=scontent-cdt1-1.xx&oh=a8f3440b99e1cf692e2493ee85ce054e&oe=5E4C70DE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156412698974915&id=113335124914", "link": null} +{"post_id": "1164676450373975", "text": "L\u2019ultimo video di #FirenzeSecondoMe del 2018 non pu\u00f2 che riguardare lui, Michelangelo. Un gigante assoluto. Guardate dove si va a nascondere, nel cuore di San Lorenzo", "post_text": "L\u2019ultimo video di #FirenzeSecondoMe del 2018 non pu\u00f2 che riguardare lui, Michelangelo. Un gigante assoluto. Guardate dove si va a nascondere, nel cuore di San Lorenzo", "shared_text": "", "time": "2018-12-31 17:54:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1164676450373975&id=113335124914", "link": null} +{"post_id": "10156411763474915", "text": "Vi ricordate quanto mi hanno attaccato per la \u201cBuona Scuola\u201d? Tutte le critiche sono legittime, sia chiaro. E qualcosa non funzionava, a cominciare dall\u2019algoritmo per i prof. Ma era la prima volta dopo decenni\u2026 Altro in cui si investiva sull\u2019educazione. Adesso si torna al passato: per la scuola ci sono tagli, tagli, tagli. Chiusa unit\u00e0 di missione sull\u2019edilizia scolastica, ridotti i fondi per l\u2019alternanza scuola lavoro, penalizzato il sostegno agli alunni con maggiori difficolt\u00e0. Forse qualcuno potrebbe riconoscere che con noi c\u2019erano pi\u00f9 fondi per le scuole. E che questi, invece, tagliano sull\u2019educazione e tagliano sulla cultura. Auguri di buon anno anche a studenti e professori, comunque.", "post_text": "Vi ricordate quanto mi hanno attaccato per la \u201cBuona Scuola\u201d? Tutte le critiche sono legittime, sia chiaro. E qualcosa non funzionava, a cominciare dall\u2019algoritmo per i prof. Ma era la prima volta dopo decenni\u2026 Altro in cui si investiva sull\u2019educazione. Adesso si torna al passato: per la scuola ci sono tagli, tagli, tagli. Chiusa unit\u00e0 di missione sull\u2019edilizia scolastica, ridotti i fondi per l\u2019alternanza scuola lavoro, penalizzato il sostegno agli alunni con maggiori difficolt\u00e0. Forse qualcuno potrebbe riconoscere che con noi c\u2019erano pi\u00f9 fondi per le scuole. E che questi, invece, tagliano sull\u2019educazione e tagliano sulla cultura. Auguri di buon anno anche a studenti e professori, comunque.", "shared_text": "", "time": "2018-12-31 09:56:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/49203732_10156411763439915_8945223967581405184_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=pSQ9C6osRfUAQkohHwOG1cRi7V0Qsk3uOcvKcHIsERv76YtHvFC97mtoQ&_nc_ht=scontent-cdt1-1.xx&oh=76ef18b08b32dc8c4151cea8d8e3bb3e&oe=5E7EBAF8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156411763474915&id=113335124914", "link": null} +{"post_id": "10156411653749915", "text": "Ho fatto una chiacchierata sulla #LeggeDiBilancio con Fabio Martini de \u201cLa Stampa\u201d, la trovate qui. Graditi i commenti di chi avr\u00e0 tempo per leggerla.\n#31dicembre\nMATTEORENZI.IT\nQuesta legge di Bilancio porter\u00e0 alla crisi - Intervista a La Stampa - Matteo Renzi", "post_text": "Ho fatto una chiacchierata sulla #LeggeDiBilancio con Fabio Martini de \u201cLa Stampa\u201d, la trovate qui. Graditi i commenti di chi avr\u00e0 tempo per leggerla.\n#31dicembre", "shared_text": "MATTEORENZI.IT\nQuesta legge di Bilancio porter\u00e0 alla crisi - Intervista a La Stampa - Matteo Renzi", "time": "2018-12-31 08:16:49", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQD1Flj_Jg_gVMUq&w=476&h=249&url=https%3A%2F%2Fwww.matteorenzi.it%2Fwp-content%2Fuploads%2F2018%2F10%2Frenzi-senato-1024x683.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQDtP0qgr-EsNlOu", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156411653749915&id=113335124914", "link": "https://www.matteorenzi.it/legge-bilancio-crisi-intervista-la-stampa/?fbclid=IwAR1i1h2cTwLd4KwSI0jpGBx5stuP3SQwX7Ix5APPXwzt7O3OYCXInqV1uzM"} +{"post_id": "10156410940869915", "text": "\u00c8 quasi mezzanotte e possiamo lasciarci andare con qualcosa di pi\u00f9 leggero, sperando che i troll siano stati messi a letto. \u00c8 morto Norman Gimbel. Si tratta dell\u2019autore di alcune bellissime canzoni e sigle. Per\u2026 Altro esempio chi di noi non si \u00e8 mai emozionato davanti a \u201cKilling me softly with his song\u201d? Ma Gimbel \u00e8 anche l\u2019autore di una delle pi\u00f9 famose sigle televisive della storia, la colonna sonora di Happy Days. Per noi quarantenni che siamo cresciuti con Fonzie e compagni questa colonna sonora \u00e8 molto pi\u00f9 di un semplice stacco musicale: \u00e8 il ricordo della nostra adolescenza.", "post_text": "\u00c8 quasi mezzanotte e possiamo lasciarci andare con qualcosa di pi\u00f9 leggero, sperando che i troll siano stati messi a letto. \u00c8 morto Norman Gimbel. Si tratta dell\u2019autore di alcune bellissime canzoni e sigle. Per\u2026 Altro esempio chi di noi non si \u00e8 mai emozionato davanti a \u201cKilling me softly with his song\u201d? Ma Gimbel \u00e8 anche l\u2019autore di una delle pi\u00f9 famose sigle televisive della storia, la colonna sonora di Happy Days. Per noi quarantenni che siamo cresciuti con Fonzie e compagni questa colonna sonora \u00e8 molto pi\u00f9 di un semplice stacco musicale: \u00e8 il ricordo della nostra adolescenza.", "shared_text": "", "time": "2018-12-30 23:37:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156410940869915&id=113335124914", "link": null} +{"post_id": "10156410594019915", "text": "La manovra del popolo \u00e8 diventata legge.\nE subito i membri del Governo fanno la ruota: non mi stupirei se occupassero stasera ogni secondo di TG RAI.\nIl loro messaggio \u00e8 un barzelletta che non fa ridere: \u00e8 una rivoluzione, adesso cambia tutto. Non hanno aperto il balcone di Palazzo Chigi perch\u00e9 non ha portato bene, ma le loro dichiarazioni sono\u2026 Altro comunque imbarazzanti.\n1 - Di Maio dice che questa \u00e8 la prima legge scritta pensando agli italiani: effettivamente il taglio dell'IMU o gli 80\u20ac o Industria 4.0 erano misure pensate per i messicani, notoriamente.\n2 - Conte dice che questa \u00e8 la manovra del riscatto. Che gli italiani paghino, non c'\u00e8 dubbio. Non pensavo che pagassero addirittura un\u2026 Altro", "post_text": "La manovra del popolo \u00e8 diventata legge.\nE subito i membri del Governo fanno la ruota: non mi stupirei se occupassero stasera ogni secondo di TG RAI.\nIl loro messaggio \u00e8 un barzelletta che non fa ridere: \u00e8 una rivoluzione, adesso cambia tutto. Non hanno aperto il balcone di Palazzo Chigi perch\u00e9 non ha portato bene, ma le loro dichiarazioni sono\u2026 Altro comunque imbarazzanti.\n1 - Di Maio dice che questa \u00e8 la prima legge scritta pensando agli italiani: effettivamente il taglio dell'IMU o gli 80\u20ac o Industria 4.0 erano misure pensate per i messicani, notoriamente.\n2 - Conte dice che questa \u00e8 la manovra del riscatto. Che gli italiani paghino, non c'\u00e8 dubbio. Non pensavo che pagassero addirittura un\u2026 Altro", "shared_text": "", "time": "2018-12-30 20:02:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156410594019915&id=113335124914", "link": null} +{"post_id": "375098329918242", "text": "Vorrebbero costringerci all\u2019ignoranza e alla paura. I libri allora sono un potente strumento di resistenza civile e culturale. E costruire una biblioteca \u00e8 un atto profondamente politico. Per i Medici, del\u2026 Altro resto, la qualit\u00e0 dei governanti si misurava dalla cultura dei governati. Ne abbiamo parlato ieri durante la visita alla Biblioteca Laurenziana nella nostra passeggiata dentro Firenze Secondo Me. E abbiamo parlato anche delle biblioteche di oggi, di una frase della Yourcenar, della risposta da dare a chi come Trump vorrebbe dare le pistole ai prof delle scuole americane. I libri sono l\u2019unica arma da portare nelle scuole, l\u2019educazione \u00e8 l\u2019unica salvezza.", "post_text": "Vorrebbero costringerci all\u2019ignoranza e alla paura. I libri allora sono un potente strumento di resistenza civile e culturale. E costruire una biblioteca \u00e8 un atto profondamente politico. Per i Medici, del\u2026 Altro resto, la qualit\u00e0 dei governanti si misurava dalla cultura dei governati. Ne abbiamo parlato ieri durante la visita alla Biblioteca Laurenziana nella nostra passeggiata dentro Firenze Secondo Me. E abbiamo parlato anche delle biblioteche di oggi, di una frase della Yourcenar, della risposta da dare a chi come Trump vorrebbe dare le pistole ai prof delle scuole americane. I libri sono l\u2019unica arma da portare nelle scuole, l\u2019educazione \u00e8 l\u2019unica salvezza.", "shared_text": "", "time": "2018-12-30 17:31:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=375098329918242&id=113335124914", "link": null} +{"post_id": "10156409677204915", "text": "Oggi i Cinque Stelle dicono che noi siamo terroristi e che la democrazia \u00e8 sotto attacco. Dopo aver dichiarato ufficialmente esaurita la povert\u00e0, dopo aver obbligato il Parlamento a votare una legge senza aver visto il testo, dopo aver fatto una inutile guerra all\u2019Europa e gestito male la ridicola retromarcia da Bruxelles, dopo aver promesso a\u2026 Altro tutti un reddito di 780\u20ac che i cittadini non avranno, dopo aver raddoppiato le tasse ai volontari e fatto il condono fiscale per gli amici degli amici, oggi i Cinque Stelle dicono che noi siamo terroristi. Speriamo che le feste restituiscano loro tranquillit\u00e0, perch\u00e9 se questo \u00e8 il livello delle accuse nel 2019 dovremo trovare degli ottimi specialisti. Perch\u00e9 se questo \u00e8 il livello delle accuse, questi signori vanno aiutati. Non stanno bene, ormai \u00e8 evidente. E il dramma \u00e8 che con questa legge di bilancio staranno peggio anche gli italiani.", "post_text": "Oggi i Cinque Stelle dicono che noi siamo terroristi e che la democrazia \u00e8 sotto attacco. Dopo aver dichiarato ufficialmente esaurita la povert\u00e0, dopo aver obbligato il Parlamento a votare una legge senza aver visto il testo, dopo aver fatto una inutile guerra all\u2019Europa e gestito male la ridicola retromarcia da Bruxelles, dopo aver promesso a\u2026 Altro tutti un reddito di 780\u20ac che i cittadini non avranno, dopo aver raddoppiato le tasse ai volontari e fatto il condono fiscale per gli amici degli amici, oggi i Cinque Stelle dicono che noi siamo terroristi. Speriamo che le feste restituiscano loro tranquillit\u00e0, perch\u00e9 se questo \u00e8 il livello delle accuse nel 2019 dovremo trovare degli ottimi specialisti. Perch\u00e9 se questo \u00e8 il livello delle accuse, questi signori vanno aiutati. Non stanno bene, ormai \u00e8 evidente. E il dramma \u00e8 che con questa legge di bilancio staranno peggio anche gli italiani.", "shared_text": "", "time": "2018-12-30 12:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156409677204915&id=113335124914", "link": null} +{"post_id": "10156409657134915", "text": "Buttiamola sul ridere, amici. Oggi il quotidiano Libero pubblica questo articolo. Chiss\u00e0 perch\u00e9 non mi sento parte della categoria \ud83d\ude02", "post_text": "Buttiamola sul ridere, amici. Oggi il quotidiano Libero pubblica questo articolo. Chiss\u00e0 perch\u00e9 non mi sento parte della categoria \ud83d\ude02", "shared_text": "", "time": "2018-12-30 11:43:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/48416604_10156409657084915_3055989473008418816_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=CV44ta28i18AQlVgwfNdEPMOkSYsHv2K7rIFNG16NNrwE0CeYNLSDWbYQ&_nc_ht=scontent-cdt1-1.xx&oh=3e0e5519f2240f4bf8295fc40a57d539&oe=5E7BF738", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156409657134915&id=113335124914", "link": null} +{"post_id": "10156409413874915", "text": "Grazie a chi ha camminato con me durante la terza puntata di FirenzeSecondoMe: abbiamo scoperto le meraviglie di San Lorenzo, la prigionia di Michelangelo, l\u2019attenzione fiorentina per le biblioteche, la vera foto della fatina (invecchiata) di Pinocchio e il certificato di morte della Gioconda, gli insegnamenti sulle ipocrisie di allora e di oggi,\u2026 Altro la lotta contro gli evasori (altro che condoni!). Ringrazio tutti per i suggerimenti e le critiche. Mi fa piacere che passo dopo passo sia sempre pi\u00f9 chiara l\u2019operazione culturale che abbiamo voluto fare. Questo lavoro pu\u00f2 essere apprezzato o meno ma \u00e8 comunque un tentativo per scommettere sulla bellezza in una societ\u00e0 dominata dalla paura. Chi vuole pu\u00f2 rivedere la puntata di ieri e le precedenti su DPlay (http://bit.ly/FirenzeSecondoMe).\nGrazie a tutti, buona domenica.", "post_text": "Grazie a chi ha camminato con me durante la terza puntata di FirenzeSecondoMe: abbiamo scoperto le meraviglie di San Lorenzo, la prigionia di Michelangelo, l\u2019attenzione fiorentina per le biblioteche, la vera foto della fatina (invecchiata) di Pinocchio e il certificato di morte della Gioconda, gli insegnamenti sulle ipocrisie di allora e di oggi,\u2026 Altro la lotta contro gli evasori (altro che condoni!). Ringrazio tutti per i suggerimenti e le critiche. Mi fa piacere che passo dopo passo sia sempre pi\u00f9 chiara l\u2019operazione culturale che abbiamo voluto fare. Questo lavoro pu\u00f2 essere apprezzato o meno ma \u00e8 comunque un tentativo per scommettere sulla bellezza in una societ\u00e0 dominata dalla paura. Chi vuole pu\u00f2 rivedere la puntata di ieri e le precedenti su DPlay (http://bit.ly/FirenzeSecondoMe).\nGrazie a tutti, buona domenica.", "shared_text": "", "time": "2018-12-30 08:31:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156409413874915&id=113335124914", "link": "https://bit.ly/FirenzeSecondoMe?fbclid=IwAR1GTNS_tlt-bmcXBAvFH372WUbCR69P53xm_jmZuLWWx0yMrdHU-dR1-fg"} +{"post_id": "10156408367624915", "text": "Tra poco nella terza puntata di #FirenzeSecondoMe parleremo di come il fiorino divent\u00f2 il dollaro dell'epoca e del perch\u00e9 i bimbi ancora oggi a Firenze dicono che di San Giovanni ci si pu\u00f2 fidare. Ma parleremo\u2026 Altro anche di Michelangelo, Savonarola, Donatello, Monna Lisa, Pinocchio e naturalmente di Lorenzo il Magnifico.\nVi aspetto alle ore 21.25 sul canale Nove.", "post_text": "Tra poco nella terza puntata di #FirenzeSecondoMe parleremo di come il fiorino divent\u00f2 il dollaro dell'epoca e del perch\u00e9 i bimbi ancora oggi a Firenze dicono che di San Giovanni ci si pu\u00f2 fidare. Ma parleremo\u2026 Altro anche di Michelangelo, Savonarola, Donatello, Monna Lisa, Pinocchio e naturalmente di Lorenzo il Magnifico.\nVi aspetto alle ore 21.25 sul canale Nove.", "shared_text": "", "time": "2018-12-29 19:20:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156408367624915&id=113335124914", "link": null} +{"post_id": "10156407848779915", "text": "Una norma voluta dal mio Governo esplicitamente impediva ai Comuni di alzare le tasse locali. Fui accusato di essere centralista ma rivendico con forza questo blocco. Grazie a Salvini e Di Maio dal 1\u00b0 gennaio\u2026 Altro invece sar\u00e0 possibile per tutti i comuni l\u2019aumento delle tasse locali. Avevamo firmato un emendamento per bloccare questa possibilit\u00e0 ma non ce l\u2019hanno fatto nemmeno discutere.\nE poi si lamentano perch\u00e9 sale la pressione fiscale", "post_text": "Una norma voluta dal mio Governo esplicitamente impediva ai Comuni di alzare le tasse locali. Fui accusato di essere centralista ma rivendico con forza questo blocco. Grazie a Salvini e Di Maio dal 1\u00b0 gennaio\u2026 Altro invece sar\u00e0 possibile per tutti i comuni l\u2019aumento delle tasse locali. Avevamo firmato un emendamento per bloccare questa possibilit\u00e0 ma non ce l\u2019hanno fatto nemmeno discutere.\nE poi si lamentano perch\u00e9 sale la pressione fiscale", "shared_text": "", "time": "2018-12-29 15:01:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p235x350/49055711_10156407848704915_8983652805210275840_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=1BbhsJ7JyQcAQl4_2632i_I1-kBn6xrUclmB6hUi3BVcHW9EF30-gF-iQ&_nc_ht=scontent-cdt1-1.xx&oh=76916aaf7d03c747465fd5427b597e88&oe=5E858401", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156407848779915&id=113335124914", "link": null} +{"post_id": "321805072007354", "text": "Oggi inizieremo la terza puntata di #FirenzeSecondoMe partendo dalla casa dei Medici, il Palazzo di Via Larga voluto da Cosimo. E toccheremo luoghi molto cari alla pi\u00f9 importante famiglia Fiorentina,\u2026 Altro soprattutto il complesso di San Lorenzo. Vale la pena allora entrare nel clima della puntata ripartendo da dove eravamo rimasti sabato scorso, dal racconto della congiura dei Pazzi contro Lorenzo il Magnifico e suo fratello Giuliano.", "post_text": "Oggi inizieremo la terza puntata di #FirenzeSecondoMe partendo dalla casa dei Medici, il Palazzo di Via Larga voluto da Cosimo. E toccheremo luoghi molto cari alla pi\u00f9 importante famiglia Fiorentina,\u2026 Altro soprattutto il complesso di San Lorenzo. Vale la pena allora entrare nel clima della puntata ripartendo da dove eravamo rimasti sabato scorso, dal racconto della congiura dei Pazzi contro Lorenzo il Magnifico e suo fratello Giuliano.", "shared_text": "", "time": "2018-12-29 08:50:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=321805072007354&id=113335124914", "link": null} +{"post_id": "10156406574999915", "text": "Ho finalmente visto #BohemianRhapsody il film sulla carriera di Freddie Mercury e dei Queen. Sar\u00e0 che dire Queen per la mia generazione significa ritornare al Liceo (e alle Medie), sar\u00e0 che \u00e8 girato benissimo, sar\u00e0 quel che volete, ma per me \u00e8 bellissimo. Lo suggerisco a chi non l'ha ancora visto, davvero vale la pena. Buona notte", "post_text": "Ho finalmente visto #BohemianRhapsody il film sulla carriera di Freddie Mercury e dei Queen. Sar\u00e0 che dire Queen per la mia generazione significa ritornare al Liceo (e alle Medie), sar\u00e0 che \u00e8 girato benissimo, sar\u00e0 quel che volete, ma per me \u00e8 bellissimo. Lo suggerisco a chi non l'ha ancora visto, davvero vale la pena. Buona notte", "shared_text": "", "time": "2018-12-29 00:03:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156406574999915&id=113335124914", "link": null} +{"post_id": "1010582349130870", "text": "Domani alle 21.25 la terza puntata di #FirenzeSecondoMe. Entreremo in luoghi celebri come il Palazzo Medici, San Marco, la Certosa del Galluzzo. Ma anche in posti sconosciuti come l\u2019Archivio di San Lorenzo per parlare di MonnaLisa e di Pinocchio.", "post_text": "Domani alle 21.25 la terza puntata di #FirenzeSecondoMe. Entreremo in luoghi celebri come il Palazzo Medici, San Marco, la Certosa del Galluzzo. Ma anche in posti sconosciuti come l\u2019Archivio di San Lorenzo per parlare di MonnaLisa e di Pinocchio.", "shared_text": "", "time": "2018-12-28 19:12:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1010582349130870&id=113335124914", "link": null} +{"post_id": "10156405968104915", "text": "Mi sono chiesto: come faccio a far vedere i numeri VERI della Legge di Bilancio? Come faccio a dimostrare che questa Legge \u00e8 una FREGATURA per gli italiani?\nFacile. Quando si devono pagare le tasse da chi si va? Dal commercialista. Bene. Andiamo anche noi dal commercialista dell'Italia.\nPost noioso, dunque, ma almeno i numeri sono chiari.\nIl\u2026 Altro Consiglio Nazionale dei Commercialisti ha il proprio ufficio studi. E oggi ha rilasciato una nota per dire che nel triennio 2019-2021 ci saranno ben 12.9 miliardi di maggiori entrate tributarie (senza contare ovviamente le clausole IVA di cui ci auguriamo la disattivazione).\nIl conto \u00e8 presto fatto: 7.3 miliardi di maggiori entrate dai contribuenti non\u2026 Altro", "post_text": "Mi sono chiesto: come faccio a far vedere i numeri VERI della Legge di Bilancio? Come faccio a dimostrare che questa Legge \u00e8 una FREGATURA per gli italiani?\nFacile. Quando si devono pagare le tasse da chi si va? Dal commercialista. Bene. Andiamo anche noi dal commercialista dell'Italia.\nPost noioso, dunque, ma almeno i numeri sono chiari.\nIl\u2026 Altro Consiglio Nazionale dei Commercialisti ha il proprio ufficio studi. E oggi ha rilasciato una nota per dire che nel triennio 2019-2021 ci saranno ben 12.9 miliardi di maggiori entrate tributarie (senza contare ovviamente le clausole IVA di cui ci auguriamo la disattivazione).\nIl conto \u00e8 presto fatto: 7.3 miliardi di maggiori entrate dai contribuenti non\u2026 Altro", "shared_text": "", "time": "2018-12-28 17:52:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156405968104915&id=113335124914", "link": null} +{"post_id": "10156405833089915", "text": "Durante il funerale di Shimon Peres, nel 2016, considerai un privilegio poter stringere la mano a Amos Oz, Il grande scrittore israeliano che aveva appena tenuto l'orazione funebre per l'uomo che era stato Presidente, Premio Nobel, statista. E anche suo amico.\nSempre meglio, disse Oz, scegliere \"la speranza ingenua\" che il freddo cinismo. E Peres \u2026 Altro\"inconfondibile sognatore\" talvolta \"inciampava perch\u00e9 i suoi occhi fissavano le stelle.\"\nHo ripensato a quell'episodio oggi appena appresa la notizia della morte di Amos Oz. Come mi sono tornati in mente alcuni suoi romanzi. Ma anche i suoi scritti contro il fanatismo e per il compromesso. Oz definiva il fanatico \"un punto esclamativo ambulante\". Oggi il nostro mondo, e la TerraSanta in particolare modo, ha molto bisogno di compromessi alti e nobili, di pi\u00f9 senso dell'umorismo e meno fanatismo.\nAbbiamo molto bisogno di insegnamenti e valori come quelli di Amos Oz. Che ti sia lieve la terra, Maestro.", "post_text": "Durante il funerale di Shimon Peres, nel 2016, considerai un privilegio poter stringere la mano a Amos Oz, Il grande scrittore israeliano che aveva appena tenuto l'orazione funebre per l'uomo che era stato Presidente, Premio Nobel, statista. E anche suo amico.\nSempre meglio, disse Oz, scegliere \"la speranza ingenua\" che il freddo cinismo. E Peres \u2026 Altro\"inconfondibile sognatore\" talvolta \"inciampava perch\u00e9 i suoi occhi fissavano le stelle.\"\nHo ripensato a quell'episodio oggi appena appresa la notizia della morte di Amos Oz. Come mi sono tornati in mente alcuni suoi romanzi. Ma anche i suoi scritti contro il fanatismo e per il compromesso. Oz definiva il fanatico \"un punto esclamativo ambulante\". Oggi il nostro mondo, e la TerraSanta in particolare modo, ha molto bisogno di compromessi alti e nobili, di pi\u00f9 senso dell'umorismo e meno fanatismo.\nAbbiamo molto bisogno di insegnamenti e valori come quelli di Amos Oz. Che ti sia lieve la terra, Maestro.", "shared_text": "", "time": "2018-12-28 16:38:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156405833089915&id=113335124914", "link": null} +{"post_id": "10156405370869915", "text": "Sono passati 75 anni dalla fucilazione dei fratelli Cervi. Ricordare la vita di quei ragazzi significa ricordarsi i valori pi\u00f9 belli dell\u2019Italia. E mi vengono in mente le parole di pap\u00e0 Alcide: \u201cMi hanno detto sempre cos\u00ec, nelle commemorazioni: tu sei una quercia che ha cresciuto sette rami, e quelli sono stati falciati, e la quercia non \u00e8 morta.\u2026 Altro Va bene, la figura \u00e8 bella e qualche volta piango nelle commemorazioni. Ma guardate il seme. Perch\u00e9 la quercia morir\u00e0 e non sar\u00e0 buona nemmeno per il fuoco. Se volete capire la mia famiglia, guardate il seme. Il nostro seme \u00e8 l\u2019ideale nella testa dell\u2019uomo\u201d. Guardate il seme. E mi permetto un suggerimento ai millennials: ragazzi, studiate la storia dei fratelli Cervi. \u00c8 una storia pazzesca di ragazzi che hanno dato tutto per la libert\u00e0 e per la democrazia.", "post_text": "Sono passati 75 anni dalla fucilazione dei fratelli Cervi. Ricordare la vita di quei ragazzi significa ricordarsi i valori pi\u00f9 belli dell\u2019Italia. E mi vengono in mente le parole di pap\u00e0 Alcide: \u201cMi hanno detto sempre cos\u00ec, nelle commemorazioni: tu sei una quercia che ha cresciuto sette rami, e quelli sono stati falciati, e la quercia non \u00e8 morta.\u2026 Altro Va bene, la figura \u00e8 bella e qualche volta piango nelle commemorazioni. Ma guardate il seme. Perch\u00e9 la quercia morir\u00e0 e non sar\u00e0 buona nemmeno per il fuoco. Se volete capire la mia famiglia, guardate il seme. Il nostro seme \u00e8 l\u2019ideale nella testa dell\u2019uomo\u201d. Guardate il seme. E mi permetto un suggerimento ai millennials: ragazzi, studiate la storia dei fratelli Cervi. \u00c8 una storia pazzesca di ragazzi che hanno dato tutto per la libert\u00e0 e per la democrazia.", "shared_text": "", "time": "2018-12-28 12:22:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156405370869915&id=113335124914", "link": null} +{"post_id": "10156405125109915", "text": "La giornata di Santo Stefano doveva essere una novit\u00e0 per il calcio italiano. Sul modello inglese giocare il giorno dopo Natale avrebbe dovuto portare le famiglie allo stadio e creare un clima di gioia e serenit\u00e0. \u00c8 accaduto esattamente l'opposto. Un ultr\u00e0 morto a Milano negli scontri di San Siro. Cori razzisti verso un giocatore del Napoli,\u2026 Altro Koulibaly.\nPer risolvere il problema della violenza fisica e di quella verbale \u00e8 sceso in campo il ministro dell'Interno, Salvini che ha promesso di convocare i tifosi a un tavolo al Viminale.\nSono un uomo delle istituzioni e dunque penso che il ministro dell'interno abbia il dovere di prendere un'iniziativa su questi temi ma se vuole essere utile il\u2026 Altro", "post_text": "La giornata di Santo Stefano doveva essere una novit\u00e0 per il calcio italiano. Sul modello inglese giocare il giorno dopo Natale avrebbe dovuto portare le famiglie allo stadio e creare un clima di gioia e serenit\u00e0. \u00c8 accaduto esattamente l'opposto. Un ultr\u00e0 morto a Milano negli scontri di San Siro. Cori razzisti verso un giocatore del Napoli,\u2026 Altro Koulibaly.\nPer risolvere il problema della violenza fisica e di quella verbale \u00e8 sceso in campo il ministro dell'Interno, Salvini che ha promesso di convocare i tifosi a un tavolo al Viminale.\nSono un uomo delle istituzioni e dunque penso che il ministro dell'interno abbia il dovere di prendere un'iniziativa su questi temi ma se vuole essere utile il\u2026 Altro", "shared_text": "", "time": "2018-12-28 09:40:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156405125109915&id=113335124914", "link": null} +{"post_id": "10156404150279915", "text": "La prima e la seconda puntata di Firenze secondo me sono visibili gratuitamente in rete sul canale DPLay. Grazie a tutti per i commenti, per i suggerimenti, per i consigli. Sabato prossimo ci muoveremo ancora\u2026 Altro nel cuore di Firenze toccando i luoghi della famiglia Medici a cominciare dal complesso di San Lorenzo, la Certosa del Galluzzo, San Marco. Nel frattempo per gli interessati un passaggio sul Teatro della Pergola, sul valore politico della cultura teatrale, della musica. Ma anche qualche aneddoto su Verdi e sulla pi\u00f9 clamorosa sconfitta di Firenze: l\u2019invenzione del telefono di Antonio Meucci", "post_text": "La prima e la seconda puntata di Firenze secondo me sono visibili gratuitamente in rete sul canale DPLay. Grazie a tutti per i commenti, per i suggerimenti, per i consigli. Sabato prossimo ci muoveremo ancora\u2026 Altro nel cuore di Firenze toccando i luoghi della famiglia Medici a cominciare dal complesso di San Lorenzo, la Certosa del Galluzzo, San Marco. Nel frattempo per gli interessati un passaggio sul Teatro della Pergola, sul valore politico della cultura teatrale, della musica. Ma anche qualche aneddoto su Verdi e sulla pi\u00f9 clamorosa sconfitta di Firenze: l\u2019invenzione del telefono di Antonio Meucci", "shared_text": "", "time": "2018-12-27 21:01:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=220735415516338&id=113335124914", "link": null} +{"post_id": "10156403557694915", "text": "Continua l'indecoroso spettacolo della Legge di Bilancio. Come sapete noi siamo stati costretti a leggere in ritardo le norme.\nChi come Di Maio le ha addirittura scritte, inizia invece a capirle solo adesso. E adesso che inizia a capirle, Di Maio promette modifiche, per esempio sulla norma contro il terzo settore, di cui vi parlavo stamattina.\nNon\u2026 Altro \u00e8 cattivo Di Maio: \u00e8 che gli ci vuole un po' di tempo.\nLa norma sul condono invece non la cambia: quella l'ha capita benissimo. L'ha capito benissimo e l'hanno capita benissimo le persone che gli stanno accanto.\nIntanto proviamo a dirne un'altra: per finanziare il reddito di cittadinanza ai disoccupati hanno tagliato rinviando le assunzioni nella\u2026 Altro", "post_text": "Continua l'indecoroso spettacolo della Legge di Bilancio. Come sapete noi siamo stati costretti a leggere in ritardo le norme.\nChi come Di Maio le ha addirittura scritte, inizia invece a capirle solo adesso. E adesso che inizia a capirle, Di Maio promette modifiche, per esempio sulla norma contro il terzo settore, di cui vi parlavo stamattina.\nNon\u2026 Altro \u00e8 cattivo Di Maio: \u00e8 che gli ci vuole un po' di tempo.\nLa norma sul condono invece non la cambia: quella l'ha capita benissimo. L'ha capito benissimo e l'hanno capita benissimo le persone che gli stanno accanto.\nIntanto proviamo a dirne un'altra: per finanziare il reddito di cittadinanza ai disoccupati hanno tagliato rinviando le assunzioni nella\u2026 Altro", "shared_text": "", "time": "2018-12-27 15:36:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156403557694915&id=113335124914", "link": null} +{"post_id": "10156403201094915", "text": "Il pranzo di Natale ha fatto bene a Di Maio che adesso vuole abbassare il canone Rai.\nRicordo le puntate precedenti: il canone Rai costava 113\u20ac. Noi lo abbiamo messo in bolletta e cos\u00ec adesso lo pagano tutti. Pagare meno per pagare tutti: \u00e8 questa la strada per stanare gli evasori, non gli squallidi condoni di Di Maio.\nE naturalmente allora i\u2026 Altro grillini mi insultavano definendo uno scandalo il canone in bolletta.\nGrazie al canone in bolletta gli italiani non pagano pi\u00f9 113\u20ac, ma 90\u20ac.\nAbbassamento del canone, fatto.\nIn questa legge di bilancio per\u00f2 agli evasori vengono fatti tanti regali. Chiss\u00e0 perch\u00e9...", "post_text": "Il pranzo di Natale ha fatto bene a Di Maio che adesso vuole abbassare il canone Rai.\nRicordo le puntate precedenti: il canone Rai costava 113\u20ac. Noi lo abbiamo messo in bolletta e cos\u00ec adesso lo pagano tutti. Pagare meno per pagare tutti: \u00e8 questa la strada per stanare gli evasori, non gli squallidi condoni di Di Maio.\nE naturalmente allora i\u2026 Altro grillini mi insultavano definendo uno scandalo il canone in bolletta.\nGrazie al canone in bolletta gli italiani non pagano pi\u00f9 113\u20ac, ma 90\u20ac.\nAbbassamento del canone, fatto.\nIn questa legge di bilancio per\u00f2 agli evasori vengono fatti tanti regali. Chiss\u00e0 perch\u00e9...", "shared_text": "", "time": "2018-12-27 11:30:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156403201094915&id=113335124914", "link": null} +{"post_id": "10156403013204915", "text": "Buongiorno a tutti, ben ritrovati. Spero che abbiate passato un buon Natale con le vostre famiglie. Un pensiero al catanese scosso dal terremoto.\nOggi inizia la discussione sulla Legge di Bilancio alla Camera. Ora che abbiamo potuto leggere il testo - che ci \u00e8 stato nascosto fino all'ultimo, in Senato, dai signori dello streaming e dalla\u2026 Altro trasparenza - vediamo ancora pi\u00f9 evidenti le contraddizioni e le follie di questa manovra.\nPensate solo a questo: raddoppiano l'Ires per il mondo del no-profit e premiano gli evasori.\nSe sei un volontario e fai solidariet\u00e0 paghi di pi\u00f9.\nSe sei un evasore e fai il furbetto paghi di meno.\nSolo a me sembra che questo sia il mondo alla rovescia?", "post_text": "Buongiorno a tutti, ben ritrovati. Spero che abbiate passato un buon Natale con le vostre famiglie. Un pensiero al catanese scosso dal terremoto.\nOggi inizia la discussione sulla Legge di Bilancio alla Camera. Ora che abbiamo potuto leggere il testo - che ci \u00e8 stato nascosto fino all'ultimo, in Senato, dai signori dello streaming e dalla\u2026 Altro trasparenza - vediamo ancora pi\u00f9 evidenti le contraddizioni e le follie di questa manovra.\nPensate solo a questo: raddoppiano l'Ires per il mondo del no-profit e premiano gli evasori.\nSe sei un volontario e fai solidariet\u00e0 paghi di pi\u00f9.\nSe sei un evasore e fai il furbetto paghi di meno.\nSolo a me sembra che questo sia il mondo alla rovescia?", "shared_text": "", "time": "2018-12-27 08:18:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156403013204915&id=113335124914", "link": null} +{"post_id": "509235379571150", "text": "\u00c8 la sera giusta per entrare nella Cattedrale di Firenze, dedicata a Santa Maria del Fiore. Che per Dante \u00e8 \u201cVergine Madre, figlia del tuo figlio, umile e alta pi\u00f9 che creatura\u201d. Da questo luogo simbolo della cristianit\u00e0 di Firenze un augurio affettuoso a tutti, credenti e non, per un Natale di felicit\u00e0 e riposo.", "post_text": "\u00c8 la sera giusta per entrare nella Cattedrale di Firenze, dedicata a Santa Maria del Fiore. Che per Dante \u00e8 \u201cVergine Madre, figlia del tuo figlio, umile e alta pi\u00f9 che creatura\u201d. Da questo luogo simbolo della cristianit\u00e0 di Firenze un augurio affettuoso a tutti, credenti e non, per un Natale di felicit\u00e0 e riposo.", "shared_text": "", "time": "2018-12-24 21:02:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=509235379571150&id=113335124914", "link": null} +{"post_id": "10156395786509915", "text": "Tante polemiche sulla Legge di Bilancio. Nei prossimi mesi purtroppo pagheremo il conto di queste scelte sbagliate. Ma adesso fermiamoci, amici.\nOra si stacca qualche ora.\nCaccia forsennata all'ultimo regalo e poi stop.\nChi ha un figlio che torna a casa, chi rivede i genitori dopo settimane, chi finalmente si ritrova ha diritto a passare qualche\u2026 Altro giorno di felicit\u00e0.\nE naturalmente il pensiero va a chi passa il Natale senza un genitore, senza un figlio, senza un compagno, specie se \u00e8 il primo Natale dopo un lutto.\nVi abbraccio con molto affetto.\nNel pomeriggio pubblicheremo una clip di #FirenzeSecondoMe sul rapporto tra la Cattedrale, la Madonna, Firenze come pensiero per i credenti per i quali il Natale non \u00e8 una festa come le altre.\nAdesso per tutti, cristiani e non, l'augurio pi\u00f9 bello per un Buon Natale.", "post_text": "Tante polemiche sulla Legge di Bilancio. Nei prossimi mesi purtroppo pagheremo il conto di queste scelte sbagliate. Ma adesso fermiamoci, amici.\nOra si stacca qualche ora.\nCaccia forsennata all'ultimo regalo e poi stop.\nChi ha un figlio che torna a casa, chi rivede i genitori dopo settimane, chi finalmente si ritrova ha diritto a passare qualche\u2026 Altro giorno di felicit\u00e0.\nE naturalmente il pensiero va a chi passa il Natale senza un genitore, senza un figlio, senza un compagno, specie se \u00e8 il primo Natale dopo un lutto.\nVi abbraccio con molto affetto.\nNel pomeriggio pubblicheremo una clip di #FirenzeSecondoMe sul rapporto tra la Cattedrale, la Madonna, Firenze come pensiero per i credenti per i quali il Natale non \u00e8 una festa come le altre.\nAdesso per tutti, cristiani e non, l'augurio pi\u00f9 bello per un Buon Natale.", "shared_text": "", "time": "2018-12-24 10:29:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156395786509915&id=113335124914", "link": null} +{"post_id": "364821977398122", "text": "Il David di Michelangelo non \u00e8 solo il simbolo di Firenze ma il simbolo stesso della bellezza. Qui racconto la storia di quello strano blocco di marmo e di un politico che pretese di metterci il... naso.", "post_text": "Il David di Michelangelo non \u00e8 solo il simbolo di Firenze ma il simbolo stesso della bellezza. Qui racconto la storia di quello strano blocco di marmo e di un politico che pretese di metterci il... naso.", "shared_text": "", "time": "2018-12-23 21:47:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=364821977398122&id=113335124914", "link": null} +{"post_id": "10156393022799915", "text": "Stiamo ricevendo migliaia di messaggi per #FirenzeSecondoMe. \u00c8 bellissimo raccogliere tante considerazioni su educazione e cultura, anche da chi non mi ha mai votato, ma che si sente orgoglioso di appartenere\u2026 Altro alla patria della Bellezza. Sono felice, grazie a tutti: finalmente si riconosce il senso dell\u2019operazione. Sabato scorso abbiamo fatto 1.8% di audience, un risultato pi\u00f9 alto della media del Canale NOVE. Ieri abbiamo aumentato di oltre il 25% il nostro pubblico: 2.3%. Per la rete \u00e8 un ottimo risultato, per me un onore. Grazie a Discovery, grazie ai fantastici ragazzi di ArcobalenoTre. Grazie soprattutto a Firenze. E fatemi dire grazie ai fiorentini: ieri pi\u00f9 di un fiorentino su quattro ha guardato il canale NOVE. La gente che mi conosce sa che io a Firenze devo tutto e che per Firenze farei di tutto.\nCondivido con voi la clip su uno dei momenti per me pi\u00f9 intensi della puntata di ieri. Buona domenica", "post_text": "Stiamo ricevendo migliaia di messaggi per #FirenzeSecondoMe. \u00c8 bellissimo raccogliere tante considerazioni su educazione e cultura, anche da chi non mi ha mai votato, ma che si sente orgoglioso di appartenere\u2026 Altro alla patria della Bellezza. Sono felice, grazie a tutti: finalmente si riconosce il senso dell\u2019operazione. Sabato scorso abbiamo fatto 1.8% di audience, un risultato pi\u00f9 alto della media del Canale NOVE. Ieri abbiamo aumentato di oltre il 25% il nostro pubblico: 2.3%. Per la rete \u00e8 un ottimo risultato, per me un onore. Grazie a Discovery, grazie ai fantastici ragazzi di ArcobalenoTre. Grazie soprattutto a Firenze. E fatemi dire grazie ai fiorentini: ieri pi\u00f9 di un fiorentino su quattro ha guardato il canale NOVE. La gente che mi conosce sa che io a Firenze devo tutto e che per Firenze farei di tutto.\nCondivido con voi la clip su uno dei momenti per me pi\u00f9 intensi della puntata di ieri. Buona domenica", "shared_text": "", "time": "2018-12-23 11:00:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=278865642775336&id=113335124914", "link": null} +{"post_id": "10156392459549915", "text": "Sono le 4 del mattino, lo scempio istituzionale si \u00e8 compiuto, la maggioranza si \u00e8 votata la fiducia. E Salvini fa un post per attaccare il PD perch\u00e9 ci siamo rifiutati di partecipare a un voto che riteniamo viziato.\nStiamo parlando del Senatore Salvini, il senatore che ha il 3% di presenze in aula dall'inizio della legislatura, il senatore che ha\u2026 Altro assistito solo all'ultima mezzora di dibattito. Mi sembra ufficiale: quest'uomo non conosce vergogna.\nComunque adesso che la legge di bilancio \u00e8 andata si tratta solo di aspettare. Purtroppo secondo me con questa legge il PIL andr\u00e0 peggio del previsto, l'occupazione peggiorer\u00e0 e ci saranno meno investimenti. Per il bene dell'Italia spero tanto di sbagliarmi. Ma temo che i conti li abbiano sbagliati quei due fenomeni: lo Sciacallo e il Prestanome. Vado a letto, buona notte.", "post_text": "Sono le 4 del mattino, lo scempio istituzionale si \u00e8 compiuto, la maggioranza si \u00e8 votata la fiducia. E Salvini fa un post per attaccare il PD perch\u00e9 ci siamo rifiutati di partecipare a un voto che riteniamo viziato.\nStiamo parlando del Senatore Salvini, il senatore che ha il 3% di presenze in aula dall'inizio della legislatura, il senatore che ha\u2026 Altro assistito solo all'ultima mezzora di dibattito. Mi sembra ufficiale: quest'uomo non conosce vergogna.\nComunque adesso che la legge di bilancio \u00e8 andata si tratta solo di aspettare. Purtroppo secondo me con questa legge il PIL andr\u00e0 peggio del previsto, l'occupazione peggiorer\u00e0 e ci saranno meno investimenti. Per il bene dell'Italia spero tanto di sbagliarmi. Ma temo che i conti li abbiano sbagliati quei due fenomeni: lo Sciacallo e il Prestanome. Vado a letto, buona notte.", "shared_text": "", "time": "2018-12-23 04:13:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156392459549915&id=113335124914", "link": null} +{"post_id": "10156392079989915", "text": "Grazie a chi ha visto #FirenzeSecondoMe e ha trascorso oltre un'ora e mezzo camminando insieme a me nella meraviglia di Firenze. Adesso posso confessare che il pezzo in cui entriamo all'Istituto degli Innocenti nel \"sacrario dell'amore spezzato\" mi ha commosso da padre prima ancora che da fiorentino, forse si \u00e8 visto. La settimana prossima\u2026 Altro entreremo in Palazzo Medici, in San Marco, alla Certosa, nel complesso di San Lorenzo e non solo.\nIntanto qui siamo in un altro luogo medico: il Palazzo Madama di Roma, che cinque secoli fa era la sede dei Medici. E oggi \u00e8 il luogo in cui si consuma lo scandalo della Legge di Bilancio 2019.\nUn abbraccio e buona notte a voi", "post_text": "Grazie a chi ha visto #FirenzeSecondoMe e ha trascorso oltre un'ora e mezzo camminando insieme a me nella meraviglia di Firenze. Adesso posso confessare che il pezzo in cui entriamo all'Istituto degli Innocenti nel \"sacrario dell'amore spezzato\" mi ha commosso da padre prima ancora che da fiorentino, forse si \u00e8 visto. La settimana prossima\u2026 Altro entreremo in Palazzo Medici, in San Marco, alla Certosa, nel complesso di San Lorenzo e non solo.\nIntanto qui siamo in un altro luogo medico: il Palazzo Madama di Roma, che cinque secoli fa era la sede dei Medici. E oggi \u00e8 il luogo in cui si consuma lo scandalo della Legge di Bilancio 2019.\nUn abbraccio e buona notte a voi", "shared_text": "", "time": "2018-12-22 23:40:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156392079989915&id=113335124914", "link": null} +{"post_id": "10156391893639915", "text": "Firenze secondo me adesso in diretta sul canale NOVE o in streaming su Dplay https://it.dplay.com/live/27016/firenze-secondo-me-matteo-renzi-live-streaming/\nIT.DPLAY.COM\nFirenze secondo me: Nuova puntata live | Live | Dplay", "post_text": "Firenze secondo me adesso in diretta sul canale NOVE o in streaming su Dplay https://it.dplay.com/live/27016/firenze-secondo-me-matteo-renzi-live-streaming/", "shared_text": "IT.DPLAY.COM\nFirenze secondo me: Nuova puntata live | Live | Dplay", "time": "2018-12-22 21:39:07", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQANj_5ryHMcmkvr&w=476&h=249&url=https%3A%2F%2Feu2-prod-images.disco-api.com%2F2018%2F12%2F11%2Flivestream-3-6131691312220285.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQAFPrJ8NSXak6Bb", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156391893639915&id=113335124914", "link": "https://it.dplay.com/live/27016/firenze-secondo-me-matteo-renzi-live-streaming/?fbclid=IwAR0_CKt41jdtHKd7bSHPGfi1y_07oZwY7dvnohNtNdyEh9W_PG63C6mRybA"} +{"post_id": "543013476174413", "text": "In diretta dall'aula del Senato", "post_text": "In diretta dall'aula del Senato", "shared_text": "", "time": "2018-12-22 20:42:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=543013476174413&id=113335124914", "link": null} +{"post_id": "10156391721614915", "text": "Alle 21.25 va in onda la seconda puntata di #FirenzeSecondoMe sul Canale Nove. Io invece sar\u00f2 in aula per la discussione sulla Legge di Bilancio pi\u00f9 incredibile della storia repubblicana. Scene incredibili qui in Senato.", "post_text": "Alle 21.25 va in onda la seconda puntata di #FirenzeSecondoMe sul Canale Nove. Io invece sar\u00f2 in aula per la discussione sulla Legge di Bilancio pi\u00f9 incredibile della storia repubblicana. Scene incredibili qui in Senato.", "shared_text": "", "time": "2018-12-22 19:50:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156391721614915&id=113335124914", "link": null} +{"post_id": "10156391472539915", "text": "Voi non ci crederete ma stanno cambiando di nuovo il maxi emendamento. Questo Governo va oltre i confini del ridicolo. Meno male che Federico Chiesa ci ha salvato la giornata, dai.", "post_text": "Voi non ci crederete ma stanno cambiando di nuovo il maxi emendamento. Questo Governo va oltre i confini del ridicolo. Meno male che Federico Chiesa ci ha salvato la giornata, dai.", "shared_text": "", "time": "2018-12-22 17:22:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156391472539915&id=113335124914", "link": null} +{"post_id": "10156390879154915", "text": "Luigi Di Maio ha voluto farmi un regalo di Natale e non me lo aspettavo. Devo ringraziare pubblicamente. Guardate questo grafico che ha pubblicato ieri sulla sua pagina. E che i grillini hanno diffuso a manetta\u2026 Altro sulla rete. C\u2019\u00e8 scritto \u201cPi\u00f9 lavoro a tempo indeterminato\u201d. E la curva rossa \u00e8 quella del lavoro a tempo indeterminato. Nell\u2019ultimo trimestre c\u2019\u00e8 stato un lieve aumento del tempo indeterminato e Di Maio ha festeggiato inviando a tutti questo grafico.\nAttenzione. E qui casca l\u2019asino!\nGuardate bene questo grafico.\nChe cosa dice, per chi sa leggere?\nChe la curva rossa del lavoro a tempo indeterminato cresce in modo impressionante tra il 2015 e il 2016. Quando? Quando entrano vigore le\u2026 Altro", "post_text": "Luigi Di Maio ha voluto farmi un regalo di Natale e non me lo aspettavo. Devo ringraziare pubblicamente. Guardate questo grafico che ha pubblicato ieri sulla sua pagina. E che i grillini hanno diffuso a manetta\u2026 Altro sulla rete. C\u2019\u00e8 scritto \u201cPi\u00f9 lavoro a tempo indeterminato\u201d. E la curva rossa \u00e8 quella del lavoro a tempo indeterminato. Nell\u2019ultimo trimestre c\u2019\u00e8 stato un lieve aumento del tempo indeterminato e Di Maio ha festeggiato inviando a tutti questo grafico.\nAttenzione. E qui casca l\u2019asino!\nGuardate bene questo grafico.\nChe cosa dice, per chi sa leggere?\nChe la curva rossa del lavoro a tempo indeterminato cresce in modo impressionante tra il 2015 e il 2016. Quando? Quando entrano vigore le\u2026 Altro", "shared_text": "", "time": "2018-12-22 10:49:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/48418431_10156390878899915_3025186753540521984_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=nl7dobV7JqoAQm56eDFnF-8b_azpTVv6ro8wYJjBZzzbWrTNRAnSk_ORQ&_nc_ht=scontent-cdt1-1.xx&oh=1c89178e95cfe19f2aaba6a4d006205e&oe=5E4D9F18", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156390879154915&id=113335124914", "link": null} +{"post_id": "2544970945518140", "text": "Domani torna #FirenzeSecondoMe con una camminata tra piazza Duomo, Teatro Pergola, Galleria dell\u2019Accademia. Si parte con il David e si arriva con Farinata. Qui la clip sullo stenditoio degli Innocenti", "post_text": "Domani torna #FirenzeSecondoMe con una camminata tra piazza Duomo, Teatro Pergola, Galleria dell\u2019Accademia. Si parte con il David e si arriva con Farinata. Qui la clip sullo stenditoio degli Innocenti", "shared_text": "", "time": "2018-12-21 21:57:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2544970945518140&id=113335124914", "link": null} +{"post_id": "10156389673679915", "text": "Anche oggi un rinvio: il Governo non riesce a chiudere la legge di bilancio. Non credo che lo facciano volutamente: penso siano semplicemente incapaci. Capisco che dirlo non sia elegante ma ci sono dei momenti in cui i giri di parole non servono: questi si stanno dimostrando clamorosamente incompetenti e purtroppo si vede.\nPrima o poi in Italia la seriet\u00e0 torner\u00e0 di moda.", "post_text": "Anche oggi un rinvio: il Governo non riesce a chiudere la legge di bilancio. Non credo che lo facciano volutamente: penso siano semplicemente incapaci. Capisco che dirlo non sia elegante ma ci sono dei momenti in cui i giri di parole non servono: questi si stanno dimostrando clamorosamente incompetenti e purtroppo si vede.\nPrima o poi in Italia la seriet\u00e0 torner\u00e0 di moda.", "shared_text": "", "time": "2018-12-21 21:02:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156389673679915&id=113335124914", "link": null} +{"post_id": "10156389260594915", "text": "Scene surreali in Parlamento: si sono persi il maxi emendamento. Tutto rinviato, non si sa bene a quando. Gli esperti, i funzionari, i vecchi cronisti, i commessi, gli ex senatori dicono che una situazione del genere non si era mai vista.\nNe approfitto per tornare su #FirenzeSecondoMe. Domani va in onda la seconda puntata (21.25, canale NOVE). \u2026 Altro\nProporre un'ora e mezzo sulla cultura, sulla meraviglia, sulla bellezza pu\u00f2 apparire controcorrente. E in effetti lo \u00e8. Ma penso che abbiamo molto bisogno di cultura e di bellezza. Domani sera il nostro cammino prender\u00e0 inizio dai piedi del David di Michelangelo. Saremo poi nel cuore dell'Istituto degli Innocenti, in mezzo al dolore delle mamme\u2026 Altro", "post_text": "Scene surreali in Parlamento: si sono persi il maxi emendamento. Tutto rinviato, non si sa bene a quando. Gli esperti, i funzionari, i vecchi cronisti, i commessi, gli ex senatori dicono che una situazione del genere non si era mai vista.\nNe approfitto per tornare su #FirenzeSecondoMe. Domani va in onda la seconda puntata (21.25, canale NOVE). \u2026 Altro\nProporre un'ora e mezzo sulla cultura, sulla meraviglia, sulla bellezza pu\u00f2 apparire controcorrente. E in effetti lo \u00e8. Ma penso che abbiamo molto bisogno di cultura e di bellezza. Domani sera il nostro cammino prender\u00e0 inizio dai piedi del David di Michelangelo. Saremo poi nel cuore dell'Istituto degli Innocenti, in mezzo al dolore delle mamme\u2026 Altro", "shared_text": "", "time": "2018-12-21 17:10:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156389260594915&id=113335124914", "link": null} +{"post_id": "10156388957024915", "text": "Oggi il leader spirituale dei Cinque Stelle, Di Battista, ha definito il Presidente Obama \u201cun golpista\u201d Obama GOLPISTA, mi spiego?\nQuesti sono matti. Appena torna in Italia Di Battista deve farsi vedere da qualcuno. Possibilmente bravo", "post_text": "Oggi il leader spirituale dei Cinque Stelle, Di Battista, ha definito il Presidente Obama \u201cun golpista\u201d Obama GOLPISTA, mi spiego?\nQuesti sono matti. Appena torna in Italia Di Battista deve farsi vedere da qualcuno. Possibilmente bravo", "shared_text": "", "time": "2018-12-21 14:19:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156388957024915&id=113335124914", "link": null} +{"post_id": "10156388720569915", "text": "Ogni volta che scopro una nuova chicca di questa allucinante Legge di Bilancio, ripenso a tutti quelli che ci hanno insultato perch\u00e9 una domenica di aprile, in diretta da Fazio, ho detto il mio NO all'accordo con i grillini.\nOggi tutti fingono di non ricordarselo ma allora erano in tanti i dirigenti, i commentatori, gli esperti che spingevano per\u2026 Altro fare un Governo insieme.\nRiuscite ad immaginare?\nAvremmo dovuto fare un Governo con quelli che si affacciano dal balcone per dichiarare sparita la povert\u00e0.\nAvremmo dovuto fare un Governo con quelli che mettono i condoni e tolgono i vaccini.\nAvremmo dovuto fare un Un Governo con chi blocca le infrastrutture e gioca sulla paura.\nMentre ci accingiamo votare contro questa legge di bilancio fatta di FakeNews e di Veri Danni, ripenso a quei momenti. Non dico chiedere scusa, per carit\u00e0. Ma probabilmente chi allora ci insultava, oggi potrebbe ringraziarci #senzadime", "post_text": "Ogni volta che scopro una nuova chicca di questa allucinante Legge di Bilancio, ripenso a tutti quelli che ci hanno insultato perch\u00e9 una domenica di aprile, in diretta da Fazio, ho detto il mio NO all'accordo con i grillini.\nOggi tutti fingono di non ricordarselo ma allora erano in tanti i dirigenti, i commentatori, gli esperti che spingevano per\u2026 Altro fare un Governo insieme.\nRiuscite ad immaginare?\nAvremmo dovuto fare un Governo con quelli che si affacciano dal balcone per dichiarare sparita la povert\u00e0.\nAvremmo dovuto fare un Governo con quelli che mettono i condoni e tolgono i vaccini.\nAvremmo dovuto fare un Un Governo con chi blocca le infrastrutture e gioca sulla paura.\nMentre ci accingiamo votare contro questa legge di bilancio fatta di FakeNews e di Veri Danni, ripenso a quei momenti. Non dico chiedere scusa, per carit\u00e0. Ma probabilmente chi allora ci insultava, oggi potrebbe ringraziarci #senzadime", "shared_text": "", "time": "2018-12-21 11:32:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156388720569915&id=113335124914", "link": null} +{"post_id": "10156388471709915", "text": "Oggi \u00e8 il giorno del voto sulla Legge di Bilancio. O meglio la notte: probabilmente voteremo dopo mezzanotte. Mai vista una gestione parlamentare cos\u00ec scandalosa, ma ne parleremo in Aula, oggi: vi terr\u00f2 informati.\nAlziamo la sguardo con una notizia di politica estera.\nIl Presidente Trump ha deciso di ritirare i soldati americani dalla Siria:\u2026 Altro grande entusiasmo dei suoi followers su Twitter ma stupore e sgomento degli addetti ai lavori.\nSi rischia di abbandonare l'obiettivo della distruzione dell'ISIS prima di averlo raggiunto. Si abbandonano i curdi, un popolo coraggioso che si \u00e8 battuto in modo eroico contro gli estremisti islamici. E infatti il Ministro della Difesa americano, il\u2026 Altro", "post_text": "Oggi \u00e8 il giorno del voto sulla Legge di Bilancio. O meglio la notte: probabilmente voteremo dopo mezzanotte. Mai vista una gestione parlamentare cos\u00ec scandalosa, ma ne parleremo in Aula, oggi: vi terr\u00f2 informati.\nAlziamo la sguardo con una notizia di politica estera.\nIl Presidente Trump ha deciso di ritirare i soldati americani dalla Siria:\u2026 Altro grande entusiasmo dei suoi followers su Twitter ma stupore e sgomento degli addetti ai lavori.\nSi rischia di abbandonare l'obiettivo della distruzione dell'ISIS prima di averlo raggiunto. Si abbandonano i curdi, un popolo coraggioso che si \u00e8 battuto in modo eroico contro gli estremisti islamici. E infatti il Ministro della Difesa americano, il\u2026 Altro", "shared_text": "", "time": "2018-12-21 08:09:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156388471709915&id=113335124914", "link": null} +{"post_id": "10156387003469915", "text": "La polemica sull\u2019avviso di garanzia al padre di Di Maio \u00e8 ridicola. Solo delle menti contorte possono considerare l\u2019avviso di garanzia una sentenza. E solo delle menti ancora pi\u00f9 contorte possono utilizzare (presunti) reati dei padri come arma di battaglia contro i figli.\nNoi non utilizziamo oggi l\u2019avviso di garanzia al padre di Di Maio perche noi\u2026 Altro non siamo cinici giustizialisti come Di Maio o Di Battista. Non siamo come loro, noi.\nA tempo debito il Ministro del Lavoro dovr\u00e0 spiegare se lui, non il padre: lui, abbia qualche responsabilit\u00e0 penale, se ha fatto davvero il prestanome per eludere Equitalia.\nDi suo padre invece a noi non interessa.\nNon siamo abituati a strumentalizzare, noi.\nNon siamo meschini, noi.\nNon siamo i Cinque Stelle, noi", "post_text": "La polemica sull\u2019avviso di garanzia al padre di Di Maio \u00e8 ridicola. Solo delle menti contorte possono considerare l\u2019avviso di garanzia una sentenza. E solo delle menti ancora pi\u00f9 contorte possono utilizzare (presunti) reati dei padri come arma di battaglia contro i figli.\nNoi non utilizziamo oggi l\u2019avviso di garanzia al padre di Di Maio perche noi\u2026 Altro non siamo cinici giustizialisti come Di Maio o Di Battista. Non siamo come loro, noi.\nA tempo debito il Ministro del Lavoro dovr\u00e0 spiegare se lui, non il padre: lui, abbia qualche responsabilit\u00e0 penale, se ha fatto davvero il prestanome per eludere Equitalia.\nDi suo padre invece a noi non interessa.\nNon siamo abituati a strumentalizzare, noi.\nNon siamo meschini, noi.\nNon siamo i Cinque Stelle, noi", "shared_text": "", "time": "2018-12-20 16:06:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156387003469915&id=113335124914", "link": null} +{"post_id": "10156386563389915", "text": "Se il Governo non avesse cambiato la manovra ci saremmo schiantati contro il muro, come Paese. Dunque la retromarcia \u00e8 giusta e comprensibile.\nMa fa impressione il modo tracotante con cui Di Maio e Salvini stanno spiegando agli italiani che in realt\u00e0 non cambia niente.\nMa perch\u00e9 non devono mai dire la verit\u00e0?\nBasterebbe ammettere: \"Abbiamo\u2026 Altro cambiato idea perch\u00e9 stavamo sbagliando. Rischiavamo troppo\"\nNo, questi insistono a diffondere FakeNews. E dicono: tutto ok, non cambia niente, risalirei sul balcone.\nPensano che tutti gli italiani si bevano le loro bugie.\nDavvero credono di poter trattare i loro connazionali come delle persone incapaci di intendere e di volere?\nI nodi stanno arrivando al pettine, il tempo dei cialtroni sta scadendo.", "post_text": "Se il Governo non avesse cambiato la manovra ci saremmo schiantati contro il muro, come Paese. Dunque la retromarcia \u00e8 giusta e comprensibile.\nMa fa impressione il modo tracotante con cui Di Maio e Salvini stanno spiegando agli italiani che in realt\u00e0 non cambia niente.\nMa perch\u00e9 non devono mai dire la verit\u00e0?\nBasterebbe ammettere: \"Abbiamo\u2026 Altro cambiato idea perch\u00e9 stavamo sbagliando. Rischiavamo troppo\"\nNo, questi insistono a diffondere FakeNews. E dicono: tutto ok, non cambia niente, risalirei sul balcone.\nPensano che tutti gli italiani si bevano le loro bugie.\nDavvero credono di poter trattare i loro connazionali come delle persone incapaci di intendere e di volere?\nI nodi stanno arrivando al pettine, il tempo dei cialtroni sta scadendo.", "shared_text": "", "time": "2018-12-20 09:45:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156386563389915&id=113335124914", "link": null} +{"post_id": "10156385667739915", "text": "Sono le 22 e in Senato \u00e8 finalmente arrivato il maxi emendamento. Ci hanno messo molto tempo forse perch\u00e9 non riuscivano a scaricare il file da Bruxelles. Certo che fa impressione: il Governo sovranista doveva fare la rivoluzione e invece fa il copia e incolla dei tecnici europei.\nA prima vista Di Maio e Salvini tagliano su tutto, anche sugli investimenti pubblici. Ma adesso mi metto a studiare per bene e vi tengo informati. Ci vediamo venerd\u00ec in aula per l\u2019intervento. Buona notte", "post_text": "Sono le 22 e in Senato \u00e8 finalmente arrivato il maxi emendamento. Ci hanno messo molto tempo forse perch\u00e9 non riuscivano a scaricare il file da Bruxelles. Certo che fa impressione: il Governo sovranista doveva fare la rivoluzione e invece fa il copia e incolla dei tecnici europei.\nA prima vista Di Maio e Salvini tagliano su tutto, anche sugli investimenti pubblici. Ma adesso mi metto a studiare per bene e vi tengo informati. Ci vediamo venerd\u00ec in aula per l\u2019intervento. Buona notte", "shared_text": "", "time": "2018-12-19 22:28:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156385667739915&id=113335124914", "link": null} +{"post_id": "313807349470226", "text": "Il Salone dei 500 in Palazzo Vecchio \u00e8 la casa della politica. Voluto da Savonarola, sede della Camera, luogo di La Pira. Ma anche spazio di misteri. Come racconto qui parlando di Leonardo Da Vinci e della battaglia d\u2019Anghiari #FirenzeSecondoMe", "post_text": "Il Salone dei 500 in Palazzo Vecchio \u00e8 la casa della politica. Voluto da Savonarola, sede della Camera, luogo di La Pira. Ma anche spazio di misteri. Come racconto qui parlando di Leonardo Da Vinci e della battaglia d\u2019Anghiari #FirenzeSecondoMe", "shared_text": "", "time": "2018-12-19 17:01:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=313807349470226&id=113335124914", "link": null} +{"post_id": "10156384770159915", "text": "Aula in Senato. Interviene il presunto premier, Conte. Imbarazzato e imbarazzante cerca di giustificare una #RetromarciaDelPopolo che non ha precedenti nella storia repubblicana. Almeno Salvini e Di Maio capiscono l'antifona e non si fanno vedere, nascondendosi. I sovranisti hanno mollato tutto. Rimane da capire chi si affaccia oggi dal balcone di Palazzo Chigi? Juncker?\nPer l'Italia bene evitare la procedura di infrazione.\nPeccato aver buttato via settimane preziose e un miliardo di euro. Cialtroni.", "post_text": "Aula in Senato. Interviene il presunto premier, Conte. Imbarazzato e imbarazzante cerca di giustificare una #RetromarciaDelPopolo che non ha precedenti nella storia repubblicana. Almeno Salvini e Di Maio capiscono l'antifona e non si fanno vedere, nascondendosi. I sovranisti hanno mollato tutto. Rimane da capire chi si affaccia oggi dal balcone di Palazzo Chigi? Juncker?\nPer l'Italia bene evitare la procedura di infrazione.\nPeccato aver buttato via settimane preziose e un miliardo di euro. Cialtroni.", "shared_text": "", "time": "2018-12-19 13:53:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156384770159915&id=113335124914", "link": null} +{"post_id": "10156384645649915", "text": "Salvini si deve vergognare. E deve chiedere scusa.\nQuando gli hanno fatto notare che sbagliava abbracciando un ultr\u00e0 pregiudicato (trattava 600 kg di droga) e violenza (allo stadio, davanti a bambini peraltro), la sua reazione \u00e8 stata ridicola.\nHa detto: \"Sono un indagato in mezzo ad altri indagati\".\nNo, tu sei il Ministro dell'Interno che\u2026 Altro squalifica le istituzioni abbracciando pregiudicati. E sei un padre che rafforza un'immagine negativa del gioco pi\u00f9 bello del mondo.\nIl Ministero dell'Interno ha validi professionisti che dovrebbero aiutare a evitare incontri sconvenienti: lo staff del Viminale serve a questo, non a stare su Facebook a promuovere prodotti alimentari.\nInutile indossare le magliette della Polizia e dei Carabinieri se poi abbracci gente che scrive \"Digos Boia\".\nE Salvini non solo non ha chiesto scusa, ma ha detto: \"Lo rifarei\".\nVergognati Ministro.\nVergognati e chiedi scusa.", "post_text": "Salvini si deve vergognare. E deve chiedere scusa.\nQuando gli hanno fatto notare che sbagliava abbracciando un ultr\u00e0 pregiudicato (trattava 600 kg di droga) e violenza (allo stadio, davanti a bambini peraltro), la sua reazione \u00e8 stata ridicola.\nHa detto: \"Sono un indagato in mezzo ad altri indagati\".\nNo, tu sei il Ministro dell'Interno che\u2026 Altro squalifica le istituzioni abbracciando pregiudicati. E sei un padre che rafforza un'immagine negativa del gioco pi\u00f9 bello del mondo.\nIl Ministero dell'Interno ha validi professionisti che dovrebbero aiutare a evitare incontri sconvenienti: lo staff del Viminale serve a questo, non a stare su Facebook a promuovere prodotti alimentari.\nInutile indossare le magliette della Polizia e dei Carabinieri se poi abbracci gente che scrive \"Digos Boia\".\nE Salvini non solo non ha chiesto scusa, ma ha detto: \"Lo rifarei\".\nVergognati Ministro.\nVergognati e chiedi scusa.", "shared_text": "", "time": "2018-12-19 12:29:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156384645649915&id=113335124914", "link": null} +{"post_id": "1536453873124388", "text": "In diretta dal Senato la top ten della settimana", "post_text": "In diretta dal Senato la top ten della settimana", "shared_text": "", "time": "2018-12-19 11:38:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1536453873124388&id=113335124914", "link": null} +{"post_id": "10156384549529915", "text": "Ho visitato quattro volte la Cina negli ultimi sei mesi. Quando tocchi le tante, diverse, citt\u00e0 non puoi ignorare lo straordinario dinamismo economico accanto alle contraddizioni sociali. Tocchi con mano la potenza culturale e gli squilibri ambientali.\nIeri il Presidente Xi Jinping - in un discorso storico - ricordando i 40 anni della riforma di\u2026 Altro Deng Xiaoping ha evidenziato i risultati raggiunti.\nIl PIL cinese in questi decenni \u00e8 cresciuto in media del 9.5% ogni anno. Ci sono 740 milioni di persone che sono uscite dalla povert\u00e0: la pi\u00f9 straordinaria campagna contro la povert\u00e0 nella storia dell'uomo. In larga parte del Paese patire la fame era la normalit\u00e0, ora \u00e8 un ricordo. La Cina \u00e8 stata\u2026 Altro", "post_text": "Ho visitato quattro volte la Cina negli ultimi sei mesi. Quando tocchi le tante, diverse, citt\u00e0 non puoi ignorare lo straordinario dinamismo economico accanto alle contraddizioni sociali. Tocchi con mano la potenza culturale e gli squilibri ambientali.\nIeri il Presidente Xi Jinping - in un discorso storico - ricordando i 40 anni della riforma di\u2026 Altro Deng Xiaoping ha evidenziato i risultati raggiunti.\nIl PIL cinese in questi decenni \u00e8 cresciuto in media del 9.5% ogni anno. Ci sono 740 milioni di persone che sono uscite dalla povert\u00e0: la pi\u00f9 straordinaria campagna contro la povert\u00e0 nella storia dell'uomo. In larga parte del Paese patire la fame era la normalit\u00e0, ora \u00e8 un ricordo. La Cina \u00e8 stata\u2026 Altro", "shared_text": "", "time": "2018-12-19 11:16:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156384549529915&id=113335124914", "link": null} +{"post_id": "10156384347019915", "text": "Ottima notizia da Genova. Il Sindaco Commissario ha scelto il progetto per il Ponte e finalmente si parte. Ciascuno ha le proprie idee su quale fosse il percorso migliore ma non importa: oggi la ricostruzione del Morandi diventa realt\u00e0. Bene, tutti per Genova!\nOvviamente sono state smentite le FakeNews di Di Maio delle prime ore:\n1 - ERA FALSO che\u2026 Altro Autostrade avesse dato i soldi al PD (ne ha dati alla Lega, non al PD).\n2 - ERA FALSO che la concessione fosse stata votata dal mio Governo (ma dall'esecutivo Berlusconi con Salvini che vot\u00f2 a favore e il PD contro).\n3 - ERA FALSA la revoca della concessione senza aspettare i tempi della magistratura perch\u00e9 la giustizia in Italia ha le sue regole\u2026 Altro", "post_text": "Ottima notizia da Genova. Il Sindaco Commissario ha scelto il progetto per il Ponte e finalmente si parte. Ciascuno ha le proprie idee su quale fosse il percorso migliore ma non importa: oggi la ricostruzione del Morandi diventa realt\u00e0. Bene, tutti per Genova!\nOvviamente sono state smentite le FakeNews di Di Maio delle prime ore:\n1 - ERA FALSO che\u2026 Altro Autostrade avesse dato i soldi al PD (ne ha dati alla Lega, non al PD).\n2 - ERA FALSO che la concessione fosse stata votata dal mio Governo (ma dall'esecutivo Berlusconi con Salvini che vot\u00f2 a favore e il PD contro).\n3 - ERA FALSA la revoca della concessione senza aspettare i tempi della magistratura perch\u00e9 la giustizia in Italia ha le sue regole\u2026 Altro", "shared_text": "", "time": "2018-12-19 08:30:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156384347019915&id=113335124914", "link": null} +{"post_id": "10156383158694915", "text": "Oggi Di Maio e i grillini festeggiano in piazza l'abolizione della corruzione esattamente come due mesi fa hanno festeggiato l'abolizione della povert\u00e0. Uguale uguale. Beato chi gli crede...", "post_text": "Oggi Di Maio e i grillini festeggiano in piazza l'abolizione della corruzione esattamente come due mesi fa hanno festeggiato l'abolizione della povert\u00e0. Uguale uguale. Beato chi gli crede...", "shared_text": "", "time": "2018-12-18 19:52:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156383158694915&id=113335124914", "link": null} +{"post_id": "10156382739799915", "text": "Alessandro Di Battista risponde alle accuse del Giornale insultando. E naturalmente offende anche me: anzich\u00e9 parlare dei debiti della sua azienda replica citando il referendum. Proprio una difesa nel merito, davvero.\nMa sono due le questioni aperte dalla vicenda Di Battista.\nLa prima. Citare in ballo i genitori e le famiglie era assurdo quando lo\u2026 Altro facevano con noi, \u00e8 assurdo quando viene fatto con loro. Io non sono minimamente interessato alle gesta di Di Battista senior. Non uso le famiglie altrui per fare polemica o non ho mai nutrito interesse alcuno per chi si dichiara fascista. Ma Di Battista deve chiedere scusa per la tracotante arroganza con cui LUI - non solo suo padre - ci ha\u2026 Altro", "post_text": "Alessandro Di Battista risponde alle accuse del Giornale insultando. E naturalmente offende anche me: anzich\u00e9 parlare dei debiti della sua azienda replica citando il referendum. Proprio una difesa nel merito, davvero.\nMa sono due le questioni aperte dalla vicenda Di Battista.\nLa prima. Citare in ballo i genitori e le famiglie era assurdo quando lo\u2026 Altro facevano con noi, \u00e8 assurdo quando viene fatto con loro. Io non sono minimamente interessato alle gesta di Di Battista senior. Non uso le famiglie altrui per fare polemica o non ho mai nutrito interesse alcuno per chi si dichiara fascista. Ma Di Battista deve chiedere scusa per la tracotante arroganza con cui LUI - non solo suo padre - ci ha\u2026 Altro", "shared_text": "", "time": "2018-12-18 15:20:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156382739799915&id=113335124914", "link": null} +{"post_id": "10156382393539915", "text": "Il Governo non riesce a chiudere la Legge di Bilancio.\nIl Senato non lavora da giorni, in attesa degli emendamenti. Non si tratta solo di una scorrettezza parlamentare, vergognosa.\nPurtroppo \u00e8 molto di pi\u00f9.\nOggi vengono al pettine i nodi della campagna elettorale, non solo del rapporto con l'Europa.\nNoi abbiamo detto la verit\u00e0 agli italiani sui\u2026 Altro conti pubblici. E abbiamo perso. Loro hanno raccontato un sacco di frottole. E hanno vinto. Ma adesso i soldi non ci sono. E la realt\u00e0 presenta il conto. E se ci fosse onest\u00e0 intellettuale bisognerebbe riconoscerlo.\nQuello che sta accadendo oggi non riguarda allora solo il rapporto tra Bruxelles e Roma, o tra il Senato e il Governo, ma il modo con il\u2026 Altro", "post_text": "Il Governo non riesce a chiudere la Legge di Bilancio.\nIl Senato non lavora da giorni, in attesa degli emendamenti. Non si tratta solo di una scorrettezza parlamentare, vergognosa.\nPurtroppo \u00e8 molto di pi\u00f9.\nOggi vengono al pettine i nodi della campagna elettorale, non solo del rapporto con l'Europa.\nNoi abbiamo detto la verit\u00e0 agli italiani sui\u2026 Altro conti pubblici. E abbiamo perso. Loro hanno raccontato un sacco di frottole. E hanno vinto. Ma adesso i soldi non ci sono. E la realt\u00e0 presenta il conto. E se ci fosse onest\u00e0 intellettuale bisognerebbe riconoscerlo.\nQuello che sta accadendo oggi non riguarda allora solo il rapporto tra Bruxelles e Roma, o tra il Senato e il Governo, ma il modo con il\u2026 Altro", "shared_text": "", "time": "2018-12-18 10:43:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156382393539915&id=113335124914", "link": null} +{"post_id": "10156382307494915", "text": "C\u2019\u00e8 una bella immagine di Elsa Morante: \u201cNon sempre le nuvole offuscano il cielo. A volte lo illuminano.\u201d Ho pensato proprio a questo stamani, volando verso casa. E adesso buttiamoci su questa benedetta legge di bilancio, se finalmente ci fanno il favore di presentare i numeri veri. Buona giornata a tutti, amici.", "post_text": "C\u2019\u00e8 una bella immagine di Elsa Morante: \u201cNon sempre le nuvole offuscano il cielo. A volte lo illuminano.\u201d Ho pensato proprio a questo stamani, volando verso casa. E adesso buttiamoci su questa benedetta legge di bilancio, se finalmente ci fanno il favore di presentare i numeri veri. Buona giornata a tutti, amici.", "shared_text": "", "time": "2018-12-18 09:50:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/48428385_10156382307459915_2983797648357588992_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=SeDm5zDSG3QAQl7OolEpT-IhkPY796hfe-sXvtgWnNRpD9mkGPcOUgnog&_nc_ht=scontent-cdt1-1.xx&oh=14847df205b5a10aee13a0e325b2cdde&oe=5E46B847", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156382307494915&id=113335124914", "link": null} +{"post_id": "10156381298854915", "text": "Voglio dire grazie a questo carabiniere che mantiene il sangue freddo nella difficolt\u00e0. Questo ragazzo, questo professionista, tiene alto l\u2019onore dell\u2019Arma e dell\u2019Italia. Gli infami sono quelli che lo\u2026 Altro attaccano: spero che siano presto assicurati alle patrie galere. E spero che il ministro dell\u2019Interno si preoccupi di questo anzich\u00e9 passare la domenica abbracciato ad ultr\u00e0 con precedenti per droga.", "post_text": "Voglio dire grazie a questo carabiniere che mantiene il sangue freddo nella difficolt\u00e0. Questo ragazzo, questo professionista, tiene alto l\u2019onore dell\u2019Arma e dell\u2019Italia. Gli infami sono quelli che lo\u2026 Altro attaccano: spero che siano presto assicurati alle patrie galere. E spero che il ministro dell\u2019Interno si preoccupi di questo anzich\u00e9 passare la domenica abbracciato ad ultr\u00e0 con precedenti per droga.", "shared_text": "", "time": "2018-12-17 21:07:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156381298854915&id=113335124914", "link": null} +{"post_id": "10156380872959915", "text": "I commenti su \u201cFirenze Secondo Me\u201d sono davvero tanti e continuano ad arrivare, copiosi. Chi lo ha visto fa i complimenti per le immagini, la regia, le luci: complimenti meritatissimi che giro alla magnifica\u2026 Altro Troupe. Chi non lo ha visto attacca sull\u2019audience. Se fosse andato sulla Rai, avrebbero detto \u201cOccupa la TV pubblica\u201d. Se fosse andato su Mediaset, avrebbero detto \u201cSi \u00e8 venduto a Berlusconi.\u201d \u00c8 andato e andr\u00e0 sul NOVE: \u201cAh, ma lo vedono in pochi\u201d. Mi dispiace che ci sia sempre da far polemica. Ma sono contento che chi ha visto il documentario mi scriva che gli \u00e8 servito per riflettere. Vi ripropongo allora la clip del momento pi\u00f9 intenso della prima puntata. Siamo nel cuore degli Uffizi e parliamo di mafia.", "post_text": "I commenti su \u201cFirenze Secondo Me\u201d sono davvero tanti e continuano ad arrivare, copiosi. Chi lo ha visto fa i complimenti per le immagini, la regia, le luci: complimenti meritatissimi che giro alla magnifica\u2026 Altro Troupe. Chi non lo ha visto attacca sull\u2019audience. Se fosse andato sulla Rai, avrebbero detto \u201cOccupa la TV pubblica\u201d. Se fosse andato su Mediaset, avrebbero detto \u201cSi \u00e8 venduto a Berlusconi.\u201d \u00c8 andato e andr\u00e0 sul NOVE: \u201cAh, ma lo vedono in pochi\u201d. Mi dispiace che ci sia sempre da far polemica. Ma sono contento che chi ha visto il documentario mi scriva che gli \u00e8 servito per riflettere. Vi ripropongo allora la clip del momento pi\u00f9 intenso della prima puntata. Siamo nel cuore degli Uffizi e parliamo di mafia.", "shared_text": "", "time": "2018-12-17 17:32:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=204824527135490&id=113335124914", "link": null} +{"post_id": "10156380640214915", "text": "Ho aspettato qualche ora per vedere se qualcuno avesse interesse a approfondire la notizia. Ma nulla, silenzio di tomba. Non ne parla nessuno.\nLa storia \u00e8 questa.\nStamani il Giornale ha pubblicato una notizia\u2026 Altro curiosa. L\u2019azienda della famiglia Di Battista, di cui sarebbe socio Alessandro, avrebbe problemi con fisco, banche, fornitori e dipendenti.\n\u00c8 una notizia vera o una FakeNews?\nPer una cosa del genere - che riguarda uno dei principali leader del partito di maggioranza - si dovrebbero aprire i siti, dedicare servizi ai Tg, chiedere commenti e fare giornalismo di inchiesta. Vorrei ricordare che mio padre \u00e8 stato l\u2019apertura dei TG per giorni, l\u2019argomento principale dei talk per intere\u2026 Altro", "post_text": "Ho aspettato qualche ora per vedere se qualcuno avesse interesse a approfondire la notizia. Ma nulla, silenzio di tomba. Non ne parla nessuno.\nLa storia \u00e8 questa.\nStamani il Giornale ha pubblicato una notizia\u2026 Altro curiosa. L\u2019azienda della famiglia Di Battista, di cui sarebbe socio Alessandro, avrebbe problemi con fisco, banche, fornitori e dipendenti.\n\u00c8 una notizia vera o una FakeNews?\nPer una cosa del genere - che riguarda uno dei principali leader del partito di maggioranza - si dovrebbero aprire i siti, dedicare servizi ai Tg, chiedere commenti e fare giornalismo di inchiesta. Vorrei ricordare che mio padre \u00e8 stato l\u2019apertura dei TG per giorni, l\u2019argomento principale dei talk per intere\u2026 Altro", "shared_text": "", "time": "2018-12-17 15:35:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/48371437_10156380639419915_6388583618792390656_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=GlchKuF99KQAQm_EJjDtVD9u_c2oWONbPOutZPmbzYGZZzq8QZ_yI-S4Q&_nc_ht=scontent-cdt1-1.xx&oh=d33b9ea0f725dbcd77e96d84b5a8909f&oe=5E82E217", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156380640214915&id=113335124914", "link": null} +{"post_id": "10156380472699915", "text": "Mancano 14 giorni al Capodanno e nessuno conosce quale sia davvero la legge di bilancio.\n\u00c8 una cosa MAI vista.\nHanno presentato una legge festeggiando da Palazzo Chigi e dichiarando abolita la povert\u00e0.\nHanno giurato guerra eterna all'Europa dicendo che loro se ne fregavano.\nHanno rifiutato la nostra proposta lanciata con Padoan alla Leopolda.\nHanno\u2026 Altro fatto retromarcia utilizzando la solita arrogante cialtroneria.\nE ancora oggi non si degnano di dirci quali sono le misure su cui dobbiamo votare.\nPer dirvi: da giorni la Commissione Bilancio del Senato sta attendendo che Salvini compri il sushi, che Conte torni da Bruxelles, che Di Maio capisca le carte. E nel frattempo il Senato \u00e8 fermo.\nFaccio\u2026 Altro", "post_text": "Mancano 14 giorni al Capodanno e nessuno conosce quale sia davvero la legge di bilancio.\n\u00c8 una cosa MAI vista.\nHanno presentato una legge festeggiando da Palazzo Chigi e dichiarando abolita la povert\u00e0.\nHanno giurato guerra eterna all'Europa dicendo che loro se ne fregavano.\nHanno rifiutato la nostra proposta lanciata con Padoan alla Leopolda.\nHanno\u2026 Altro fatto retromarcia utilizzando la solita arrogante cialtroneria.\nE ancora oggi non si degnano di dirci quali sono le misure su cui dobbiamo votare.\nPer dirvi: da giorni la Commissione Bilancio del Senato sta attendendo che Salvini compri il sushi, che Conte torni da Bruxelles, che Di Maio capisca le carte. E nel frattempo il Senato \u00e8 fermo.\nFaccio\u2026 Altro", "shared_text": "", "time": "2018-12-17 13:59:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156380472699915&id=113335124914", "link": null} +{"post_id": "10156380028134915", "text": "Negli ultimi tre giorni Salvini \u00e8 intervenuto tre volte sul documentario \u201cFirenze secondo me\u201d. Sono onorato dell\u2019attenzione anche se penso che il ministro dell\u2019interno dovrebbe occuparsi di cose pi\u00f9 rilevanti. Se proprio non ama seguire le questioni di sicurezza nazionale, il ministro potrebbe almeno trovare 100 miliardi di euro le coperture per le\u2026 Altro promesse a vuoto della campagna elettorale o pi\u00f9 banalmente recuperare i 49 milioni che la Lega ha nascosto.\nE invece niente, Salvini parla di \u201cFirenze Secondo Me\u201d. E prima dice che lui non lo guarder\u00e0 mai per nessuna ragione al mondo, poi dice che lui non vuole fare documentari sui beni culturali della sua citt\u00e0, infine dice che la Signora in\u2026 Altro", "post_text": "Negli ultimi tre giorni Salvini \u00e8 intervenuto tre volte sul documentario \u201cFirenze secondo me\u201d. Sono onorato dell\u2019attenzione anche se penso che il ministro dell\u2019interno dovrebbe occuparsi di cose pi\u00f9 rilevanti. Se proprio non ama seguire le questioni di sicurezza nazionale, il ministro potrebbe almeno trovare 100 miliardi di euro le coperture per le\u2026 Altro promesse a vuoto della campagna elettorale o pi\u00f9 banalmente recuperare i 49 milioni che la Lega ha nascosto.\nE invece niente, Salvini parla di \u201cFirenze Secondo Me\u201d. E prima dice che lui non lo guarder\u00e0 mai per nessuna ragione al mondo, poi dice che lui non vuole fare documentari sui beni culturali della sua citt\u00e0, infine dice che la Signora in\u2026 Altro", "shared_text": "", "time": "2018-12-17 08:20:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156380028134915&id=113335124914", "link": null} +{"post_id": "1965956883710026", "text": "Per me la Madonna del Cardellino non \u00e8 solo un quadro. \u00c8 molto di pi\u00f9. E forse il significato profondo di un museo \u00e8 mettere a nudo la tua anima davanti alla bellezza. In questa breve clip ho raccontato cosa accade a me davanti a Raffaello.", "post_text": "Per me la Madonna del Cardellino non \u00e8 solo un quadro. \u00c8 molto di pi\u00f9. E forse il significato profondo di un museo \u00e8 mettere a nudo la tua anima davanti alla bellezza. In questa breve clip ho raccontato cosa accade a me davanti a Raffaello.", "shared_text": "", "time": "2018-12-16 15:08:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1965956883710026&id=113335124914", "link": null} +{"post_id": "10156378021999915", "text": "Buongiorno a tutti, grazie per i vostri messaggi! Sono in Cina per qualche ora, rientro domani per la legge di bilancio: non sono riuscito a rispondervi in tempo reale.\nSu #FirenzeSecondoMe grazie a tutti per i commenti, grazie davvero. Per chi se la fosse persa, la puntata \u00e8 disponibile su http://bit.ly/FirenzeSecondoMe1.\nLa proposta pi\u00f9 bella e\u2026 Altro quella di chi suggerisce di fare anche una MilanoSecondoMe, una RomaSecondoMe, una NapoliSecondoMe. Sarebbe bellissimo, ovviamente condotti da personaggi che hanno una relazione speciale con queste citt\u00e0.\nNel frattempo buona visione a chi avr\u00e0 tempo di andare su http://bit.ly/FirenzeSecondoMe1 e un abbraccio a chi ieri ha avuto pazienza.\nFirenze\u2026 Altro", "post_text": "Buongiorno a tutti, grazie per i vostri messaggi! Sono in Cina per qualche ora, rientro domani per la legge di bilancio: non sono riuscito a rispondervi in tempo reale.\nSu #FirenzeSecondoMe grazie a tutti per i commenti, grazie davvero. Per chi se la fosse persa, la puntata \u00e8 disponibile su http://bit.ly/FirenzeSecondoMe1.\nLa proposta pi\u00f9 bella e\u2026 Altro quella di chi suggerisce di fare anche una MilanoSecondoMe, una RomaSecondoMe, una NapoliSecondoMe. Sarebbe bellissimo, ovviamente condotti da personaggi che hanno una relazione speciale con queste citt\u00e0.\nNel frattempo buona visione a chi avr\u00e0 tempo di andare su http://bit.ly/FirenzeSecondoMe1 e un abbraccio a chi ieri ha avuto pazienza.\nFirenze\u2026 Altro", "shared_text": "", "time": "2018-12-16 11:08:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156378021999915&id=113335124914", "link": "https://bit.ly/FirenzeSecondoMe1?fbclid=IwAR2qBRL60QzNR_oHqBpcfLkDbxoy3flbKj0d6nfT5ujqFyy-6dPm08OilI8"} +{"post_id": "10156377032594915", "text": "Grazie a chi \u00e8 stato con noi nel cuore di Firenze. Leggo volentieri i commenti di chi ha visto la puntata. Quale immagine vi \u00e8 piaciuta di pi\u00f9? Cosa non vi ha convinto?\n#FirenzeSecondoMe", "post_text": "Grazie a chi \u00e8 stato con noi nel cuore di Firenze. Leggo volentieri i commenti di chi ha visto la puntata. Quale immagine vi \u00e8 piaciuta di pi\u00f9? Cosa non vi ha convinto?\n#FirenzeSecondoMe", "shared_text": "", "time": "2018-12-15 23:09:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156377032594915&id=113335124914", "link": null} +{"post_id": "215800842546062", "text": "Fare le cose all\u2019italiana non \u00e8 sinonimo di furbizia, ma di fascino, originalit\u00e0 e bellezza. Il giardino di Boboli \u00e8 il campione del giardino all\u2019italiana, del giardino fatto bene. \u00c8 un luogo magico anche se da giovani era un luogo speciale per... saltare la scuola\n#FirenzeSecondoMe stasera, ore 21.25, sul NOVE", "post_text": "Fare le cose all\u2019italiana non \u00e8 sinonimo di furbizia, ma di fascino, originalit\u00e0 e bellezza. Il giardino di Boboli \u00e8 il campione del giardino all\u2019italiana, del giardino fatto bene. \u00c8 un luogo magico anche se da giovani era un luogo speciale per... saltare la scuola\n#FirenzeSecondoMe stasera, ore 21.25, sul NOVE", "shared_text": "", "time": "2018-12-15 18:29:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=215800842546062&id=113335124914", "link": null} +{"post_id": "10156376130239915", "text": "Pronti? Si parte. Sono emozionato per questo viaggio nel cuore di Firenze. Iniziamo stasera alle 21.25 sul NOVE.\nOggi tocchiamo Piazza Pitti, il giardino di Boboli, il Vasariano, gli Uffizi, Palazzo Vecchio, piazza della Signoria. Se anche un solo mio concittadino potr\u00e0 sentirsi stasera emozionato e fiero di essere fiorentino, io sar\u00f2 felice. Se\u2026 Altro anche un solo italiano potr\u00e0 provare orgoglio e vertigine nel riconoscersi parte di un grande Paese, io sar\u00f2 felice. E se chi avr\u00e0 tempo di vedere la trasmissione trover\u00e0 il modo di riflettere sull'identit\u00e0, sulla cultura, sull'educazione, beh allora ci potremo dichiarare soddisfatti. Stasera sar\u00e0 bello camminare insieme nel mistero di Firenze. Da parte mia ci ho messo gli occhi, le gambe ma soprattutto il cuore.", "post_text": "Pronti? Si parte. Sono emozionato per questo viaggio nel cuore di Firenze. Iniziamo stasera alle 21.25 sul NOVE.\nOggi tocchiamo Piazza Pitti, il giardino di Boboli, il Vasariano, gli Uffizi, Palazzo Vecchio, piazza della Signoria. Se anche un solo mio concittadino potr\u00e0 sentirsi stasera emozionato e fiero di essere fiorentino, io sar\u00f2 felice. Se\u2026 Altro anche un solo italiano potr\u00e0 provare orgoglio e vertigine nel riconoscersi parte di un grande Paese, io sar\u00f2 felice. E se chi avr\u00e0 tempo di vedere la trasmissione trover\u00e0 il modo di riflettere sull'identit\u00e0, sulla cultura, sull'educazione, beh allora ci potremo dichiarare soddisfatti. Stasera sar\u00e0 bello camminare insieme nel mistero di Firenze. Da parte mia ci ho messo gli occhi, le gambe ma soprattutto il cuore.", "shared_text": "", "time": "2018-12-15 15:10:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156376130239915&id=113335124914", "link": null} +{"post_id": "10156375968179915", "text": "Chi ha seguito X-Factor sa che la vittoria di Anastasio ha messo tutti d'accordo. Quel ragazzo pu\u00f2 piacere o meno ma \u00e8 un talento straordinario. Fare polemica politica sui like che Anastasio mette \u00e8 ridicolo. Ok, ha messo un like a Trump o a Salvini. Io non l'ho mai fatto e mai lo far\u00f2. Ma posso dire che un artista si giudica per quello che \u00e8? E\u2026 Altro che Anastasio ha stravinto meritando tutto? E che se la smettessimo di fare polemica politica su tutto sarebbe meglio? Non mi interessa sapere per chi vota Anastasio, mi basta riconoscere che a X-Factor ha spaccato. Gi\u00f9 il cappello e basta polemiche, dai.", "post_text": "Chi ha seguito X-Factor sa che la vittoria di Anastasio ha messo tutti d'accordo. Quel ragazzo pu\u00f2 piacere o meno ma \u00e8 un talento straordinario. Fare polemica politica sui like che Anastasio mette \u00e8 ridicolo. Ok, ha messo un like a Trump o a Salvini. Io non l'ho mai fatto e mai lo far\u00f2. Ma posso dire che un artista si giudica per quello che \u00e8? E\u2026 Altro che Anastasio ha stravinto meritando tutto? E che se la smettessimo di fare polemica politica su tutto sarebbe meglio? Non mi interessa sapere per chi vota Anastasio, mi basta riconoscere che a X-Factor ha spaccato. Gi\u00f9 il cappello e basta polemiche, dai.", "shared_text": "", "time": "2018-12-15 13:30:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156375968179915&id=113335124914", "link": null} +{"post_id": "10156375769584915", "text": "Quando tutti i capi di stato e di governo dell'Unione Europea sono riuniti insieme per commemorare le vittime dell'attentato di Strasburgo c'\u00e8 un solo assente, uno solo. Una sola sedia vergognosamente vuota. L'assente \u00e8 il premier italiano Conte. Che arriva a Bruxelles, vede Juncker e gli altri, fa la conferenza stampa. Ma poi all'improvviso decide\u2026 Altro di prendere l'aereo di stato, tornare indietro a Roma, andare in trattoria con Salvini e Di Maio, e ripartire il giorno dopo per Bruxelles. Una cena in trattoria con quei due per il nostro premier vale pi\u00f9 dell'omaggio alle vittime di Strasburgo. Non mi interessa sapere come fanno i populisti quanto hanno speso usando l'aereo di stato come un taxi, proprio loro che massacravano noi per molto meno. Ma voglio dire ad alta voce che lasciare il Consiglio Europeo nel momento solenne della commemorazione \u00e8 una vergogna senza fine. Non \u00e8 questione di galateo ma di seriet\u00e0 e di rispetto istituzionale. Tecnicamente parlando: uno schifo.", "post_text": "Quando tutti i capi di stato e di governo dell'Unione Europea sono riuniti insieme per commemorare le vittime dell'attentato di Strasburgo c'\u00e8 un solo assente, uno solo. Una sola sedia vergognosamente vuota. L'assente \u00e8 il premier italiano Conte. Che arriva a Bruxelles, vede Juncker e gli altri, fa la conferenza stampa. Ma poi all'improvviso decide\u2026 Altro di prendere l'aereo di stato, tornare indietro a Roma, andare in trattoria con Salvini e Di Maio, e ripartire il giorno dopo per Bruxelles. Una cena in trattoria con quei due per il nostro premier vale pi\u00f9 dell'omaggio alle vittime di Strasburgo. Non mi interessa sapere come fanno i populisti quanto hanno speso usando l'aereo di stato come un taxi, proprio loro che massacravano noi per molto meno. Ma voglio dire ad alta voce che lasciare il Consiglio Europeo nel momento solenne della commemorazione \u00e8 una vergogna senza fine. Non \u00e8 questione di galateo ma di seriet\u00e0 e di rispetto istituzionale. Tecnicamente parlando: uno schifo.", "shared_text": "", "time": "2018-12-15 10:59:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156375769584915&id=113335124914", "link": null} +{"post_id": "10156374361899915", "text": "Addio Antonio, cittadino italiano, cittadino europeo, cittadino del mondo. L'Italia dovr\u00e0 portare avanti - tutta insieme, senza divisioni - i tuoi ideali e il tuo sogno verso gli Stati Uniti d'Europa.", "post_text": "Addio Antonio, cittadino italiano, cittadino europeo, cittadino del mondo. L'Italia dovr\u00e0 portare avanti - tutta insieme, senza divisioni - i tuoi ideali e il tuo sogno verso gli Stati Uniti d'Europa.", "shared_text": "", "time": "2018-12-14 18:13:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156374361899915&id=113335124914", "link": null} +{"post_id": "10156372299834915", "text": "Allora.\nNon sono certo uno che sostiene il Governo. Anzi!\nSono tra i pochi che ha sempre alzato la voce.\nHo fatto opposizione in modo netto e forte.\nPenso anche che questa manovra sia sbagliata, che la sceneggiata di Di Maio sul balcone sia stata un'assurdit\u00e0 totale, che questa ManfrinaDelPopolo abbia fatto perdere tanti soldi agli italiani.\u2026 Altro\nDetto questo: non prendiamoci in giro. Alcune dichiarazioni che arrivano oggi da Bruxelles sono inaccettabili.\nSe l'Italia passa da 2,4 a 2,04 il nostro Governo fa una figuraccia ma se l'Italia sta al 2,04 l'Europa non pu\u00f2 e non deve aprire una procedura di infrazione. Sono un senatore dell'opposizione ma prima di tutto sono un italiano che crede nell'onest\u00e0 intellettuale.\nLa manovra fa schifo, il Governo ha sbagliato tutto, ma con il 2.04 l'Europa non ha alcun diritto di aprire una procedura.", "post_text": "Allora.\nNon sono certo uno che sostiene il Governo. Anzi!\nSono tra i pochi che ha sempre alzato la voce.\nHo fatto opposizione in modo netto e forte.\nPenso anche che questa manovra sia sbagliata, che la sceneggiata di Di Maio sul balcone sia stata un'assurdit\u00e0 totale, che questa ManfrinaDelPopolo abbia fatto perdere tanti soldi agli italiani.\u2026 Altro\nDetto questo: non prendiamoci in giro. Alcune dichiarazioni che arrivano oggi da Bruxelles sono inaccettabili.\nSe l'Italia passa da 2,4 a 2,04 il nostro Governo fa una figuraccia ma se l'Italia sta al 2,04 l'Europa non pu\u00f2 e non deve aprire una procedura di infrazione. Sono un senatore dell'opposizione ma prima di tutto sono un italiano che crede nell'onest\u00e0 intellettuale.\nLa manovra fa schifo, il Governo ha sbagliato tutto, ma con il 2.04 l'Europa non ha alcun diritto di aprire una procedura.", "shared_text": "", "time": "2018-12-13 20:17:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156372299834915&id=113335124914", "link": null} +{"post_id": "2075323405822430", "text": "Da Firenze la presentazione di Firenze Secondo Me", "post_text": "Da Firenze la presentazione di Firenze Secondo Me", "shared_text": "", "time": "2018-12-13 16:00:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2075323405822430&id=113335124914", "link": null} +{"post_id": "2161544770766565", "text": "Sabato va in onda la prima puntata di Firenze Secondo Me. Per me \u00e8 un sogno che si realizza dopo settimane di scrittura e lavoro. Grazie a chi ha reso possibile questo progetto. Questi sono i primi due minuti,\u2026 Altro un semplice \u201cassaggino\u201d. Per vedere il resto vi do appuntamento a sabato sera alle 21.25 sul NOVE. Oggi alle 16 facciamo la diretta Facebook della presentazione alla stampa. Sar\u00f2 contro corrente ma continuo a credere nella bellezza e nella cultura. Buona giornata", "post_text": "Sabato va in onda la prima puntata di Firenze Secondo Me. Per me \u00e8 un sogno che si realizza dopo settimane di scrittura e lavoro. Grazie a chi ha reso possibile questo progetto. Questi sono i primi due minuti,\u2026 Altro un semplice \u201cassaggino\u201d. Per vedere il resto vi do appuntamento a sabato sera alle 21.25 sul NOVE. Oggi alle 16 facciamo la diretta Facebook della presentazione alla stampa. Sar\u00f2 contro corrente ma continuo a credere nella bellezza e nella cultura. Buona giornata", "shared_text": "", "time": "2018-12-13 10:43:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2161544770766565&id=113335124914", "link": null} +{"post_id": "10156369616079915", "text": "Il disastro quotidiano di questo Governo oggi presenta:\n1- Nel terzo trimestre l\u2019occupazione scende a Nord (- 21mila occupati rispetto al 2 trimestre) e al Sud (-35mila) e lo dicono i dati ISTAT.\n2- La FCA annuncia che con le misure della ManovraDelPopolo non potr\u00e0 mantenere gli investimenti in Italia.\n3- Intanto spunta un emendamento che per la\u2026 Altro prima volta mette nero su bianco che il reddito di cittadinanza sar\u00e0 poco pi\u00f9 dell\u2019estensione del nostro REI, finanziato nel 2016, altro che novit\u00e0.\nGli italiani sono stati ingannati in campagna elettorale dallo Sciacallo Salvini e dal Prestanome Di Maio.\nMa la realt\u00e0 \u00e8 pi\u00f9 forte delle fake news. E la verit\u00e0 prima o poi viene fuori.\nBuona giornata a tutti", "post_text": "Il disastro quotidiano di questo Governo oggi presenta:\n1- Nel terzo trimestre l\u2019occupazione scende a Nord (- 21mila occupati rispetto al 2 trimestre) e al Sud (-35mila) e lo dicono i dati ISTAT.\n2- La FCA annuncia che con le misure della ManovraDelPopolo non potr\u00e0 mantenere gli investimenti in Italia.\n3- Intanto spunta un emendamento che per la\u2026 Altro prima volta mette nero su bianco che il reddito di cittadinanza sar\u00e0 poco pi\u00f9 dell\u2019estensione del nostro REI, finanziato nel 2016, altro che novit\u00e0.\nGli italiani sono stati ingannati in campagna elettorale dallo Sciacallo Salvini e dal Prestanome Di Maio.\nMa la realt\u00e0 \u00e8 pi\u00f9 forte delle fake news. E la verit\u00e0 prima o poi viene fuori.\nBuona giornata a tutti", "shared_text": "", "time": "2018-12-12 13:28:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156369616079915&id=113335124914", "link": null} +{"post_id": "214998892724343", "text": "Vi ripropongo la puntata di Porta a Porta di ieri sera. Ci hanno provato a farmi parlare solo di PD, ma ho resistito \ud83d\ude09.\nMi dite cosa ne pensate, amici?", "post_text": "Vi ripropongo la puntata di Porta a Porta di ieri sera. Ci hanno provato a farmi parlare solo di PD, ma ho resistito \ud83d\ude09.\nMi dite cosa ne pensate, amici?", "shared_text": "", "time": "2018-12-12 11:10:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=214998892724343&id=113335124914", "link": null} +{"post_id": "10156369349429915", "text": "Le immagini di Strasburgo colpiscono i cuori di tutti noi, colpiscono la citt\u00e0 che custodisce la democrazia europea, colpiscono i mercatini di Natale. Tre obiettivi per un attentato vigliacco.\nLa lotta contro il terroristi, contro l\u2019estremismo islamico deve continuare. E va combattuta sia sul piano della sicurezza, senza incertezze, sia sul piano\u2026 Altro dell\u2019educazione delle nuove generazioni. Molti dei radicalizzati sono nati e cresciuti in Europa: ecco perch\u00e9 oggi va rilanciata con forza - a livello continentale - l\u2019intuizione di \u201cun euro in cultura, un euro in sicurezza\u201d. Intanto le preghiere e i pensieri per le famiglie delle vittime e per i feriti.", "post_text": "Le immagini di Strasburgo colpiscono i cuori di tutti noi, colpiscono la citt\u00e0 che custodisce la democrazia europea, colpiscono i mercatini di Natale. Tre obiettivi per un attentato vigliacco.\nLa lotta contro il terroristi, contro l\u2019estremismo islamico deve continuare. E va combattuta sia sul piano della sicurezza, senza incertezze, sia sul piano\u2026 Altro dell\u2019educazione delle nuove generazioni. Molti dei radicalizzati sono nati e cresciuti in Europa: ecco perch\u00e9 oggi va rilanciata con forza - a livello continentale - l\u2019intuizione di \u201cun euro in cultura, un euro in sicurezza\u201d. Intanto le preghiere e i pensieri per le famiglie delle vittime e per i feriti.", "shared_text": "", "time": "2018-12-12 09:48:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156369349429915&id=113335124914", "link": null} +{"post_id": "10156367726299915", "text": "Di Maio chiede a Salvini di chiarire la storia dei 49 milioni di \u20ac, del Lussemburgo, dei soldi pubblici spariti. Gi\u00e0 che c'\u00e8 potrebbe informarsi anche sul peculato dei leghisti salvato da una norma ad personam votata da questa maggioranza.\nSalvini non replica ma potrebbe chiedere a Di Maio di chiarire la storia dei prestanome, delle cartelle di\u2026 Altro Equitalia, del lavoro in nero, dei condoni edilizi. Materiale pesante che torner\u00e0 fuori nei prossimi mesi, ovviamente.\nE pensare che loro hanno fatto la guerra a noi su questi temi. Hanno usato i loro social per dipingerci come disonesti. E anche adesso ci attaccano nonostante che arrivino le prime sentenze di risarcimento danno.\nLa verit\u00e0 \u00e8 che loro\u2026 Altro", "post_text": "Di Maio chiede a Salvini di chiarire la storia dei 49 milioni di \u20ac, del Lussemburgo, dei soldi pubblici spariti. Gi\u00e0 che c'\u00e8 potrebbe informarsi anche sul peculato dei leghisti salvato da una norma ad personam votata da questa maggioranza.\nSalvini non replica ma potrebbe chiedere a Di Maio di chiarire la storia dei prestanome, delle cartelle di\u2026 Altro Equitalia, del lavoro in nero, dei condoni edilizi. Materiale pesante che torner\u00e0 fuori nei prossimi mesi, ovviamente.\nE pensare che loro hanno fatto la guerra a noi su questi temi. Hanno usato i loro social per dipingerci come disonesti. E anche adesso ci attaccano nonostante che arrivino le prime sentenze di risarcimento danno.\nLa verit\u00e0 \u00e8 che loro\u2026 Altro", "shared_text": "", "time": "2018-12-11 17:29:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156367726299915&id=113335124914", "link": null} +{"post_id": "10156367615889915", "text": "Sto preparando alcuni emendamenti alla Legge di Bilancio. Ci sono ovviamente le questioni strategiche che ancora non sono chiarite: faranno accordo con Unione Europea? Abbasseranno il deficit? Eviteranno la procedura di infrazione?\nPer saperlo dobbiamo aspettare gli emendamenti del Governo. Per\u00f2 alcune cose possiamo proporle noi, dall\u2019opposizione:\u2026 Altro gli emendamenti che sto scrivendo con il territorio del mio collegio, gli emendamenti coerenti con la manovra presentata da Padoan alla Leopolda, gli emendamenti per salvare alcune leggi del nostro Governo come il dopo di noi e lo spreco alimentare.\nE poi c\u2019\u00e8 un piccolo emendamento che sar\u00e0 banale e far\u00e0 arrabbiare qualche sindaco. Con la mia prima\u2026 Altro", "post_text": "Sto preparando alcuni emendamenti alla Legge di Bilancio. Ci sono ovviamente le questioni strategiche che ancora non sono chiarite: faranno accordo con Unione Europea? Abbasseranno il deficit? Eviteranno la procedura di infrazione?\nPer saperlo dobbiamo aspettare gli emendamenti del Governo. Per\u00f2 alcune cose possiamo proporle noi, dall\u2019opposizione:\u2026 Altro gli emendamenti che sto scrivendo con il territorio del mio collegio, gli emendamenti coerenti con la manovra presentata da Padoan alla Leopolda, gli emendamenti per salvare alcune leggi del nostro Governo come il dopo di noi e lo spreco alimentare.\nE poi c\u2019\u00e8 un piccolo emendamento che sar\u00e0 banale e far\u00e0 arrabbiare qualche sindaco. Con la mia prima\u2026 Altro", "shared_text": "", "time": "2018-12-11 16:14:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156367615889915&id=113335124914", "link": null} +{"post_id": "10156367295999915", "text": "Il ministro della pubblica istruzione ha annunciato che scriver\u00e0 una circolare alle scuole per chiedere che si diano meno compiti a casa durante le vacanze di Natale. Motivazione: almeno i ragazzi stanno di pi\u00f9 coi genitori.\nSolo a me sembra una frase superficiale? I compiti servono per crescere, per studiare, per migliorarsi. E magari, perch\u00e9 no,\u2026 Altro i compiti si possono fare anche insieme ai genitori. Ma dire che un ragazzo deve fare meno compiti per avere pi\u00f9 tempo libero mi sembra stravagante. Il solito tentativo di lisciare il pelo alla gente, dicendo cose che fanno felici (forse) i destinatari ma che non fanno bene alla nostra comunit\u00e0.\nE soprattutto: ma il ministro della pubblica\u2026 Altro", "post_text": "Il ministro della pubblica istruzione ha annunciato che scriver\u00e0 una circolare alle scuole per chiedere che si diano meno compiti a casa durante le vacanze di Natale. Motivazione: almeno i ragazzi stanno di pi\u00f9 coi genitori.\nSolo a me sembra una frase superficiale? I compiti servono per crescere, per studiare, per migliorarsi. E magari, perch\u00e9 no,\u2026 Altro i compiti si possono fare anche insieme ai genitori. Ma dire che un ragazzo deve fare meno compiti per avere pi\u00f9 tempo libero mi sembra stravagante. Il solito tentativo di lisciare il pelo alla gente, dicendo cose che fanno felici (forse) i destinatari ma che non fanno bene alla nostra comunit\u00e0.\nE soprattutto: ma il ministro della pubblica\u2026 Altro", "shared_text": "", "time": "2018-12-11 12:42:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156367295999915&id=113335124914", "link": null} +{"post_id": "10156367217484915", "text": "Questa \u00e8 l\u2019evoluzione dell\u2019economia italiana degli ultimi 15 anni. Le scelte di Salvini e Di Maio distruggono la crescita e ci riportano in recessione. Ciascuno si tenga le sue opinioni ma questi sono i fatti", "post_text": "Questa \u00e8 l\u2019evoluzione dell\u2019economia italiana degli ultimi 15 anni. Le scelte di Salvini e Di Maio distruggono la crescita e ci riportano in recessione. Ciascuno si tenga le sue opinioni ma questi sono i fatti", "shared_text": "", "time": "2018-12-11 11:35:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/47685052_10156367216834915_7016951395920117760_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=8HTdl9TPJJsAQnML-A31ZWGltah7cVhbtYe4eWtjQr7kg3pYDQy4A-qeg&_nc_ht=scontent-cdt1-1.xx&oh=557554aafbf7a878cd4be2d0ca915919&oe=5E423D6E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156367217484915&id=113335124914", "link": null} +{"post_id": "10156365763624915", "text": "Post personale.\n\u00c8 buffo che chi mi contesta da anni \u201cl'eccesso di personalizzazione\u201d, se ne esca oggi dicendo: Dica Renzi quello che vuol fare, \u00e8 colpa di Renzi, Renzi faccia chiarezza. Sta accadendo anche in queste ore.\nMi accusano di personalizzare e poi si preoccupano in modo ossessivo di me.\nChe poi spesso sono gli stessi che qualche mese fa\u2026 Altro sognavano un accordo Pd-Cinque Stelle, che presentavano Di Maio come il nuovo Berlinguer e che quando ho alzato la mia voce, quasi solitario nel gruppo dirigente, andando in TV e dicendo \u201cNo all'accordo coi grillini, fatelo #senzadime\u201d hanno detto: \u201cRenzi stia zitto, invade il campo altrui, dovrebbe tacere\u201d. Vedendo come governano i grillini mi sarei\u2026 Altro", "post_text": "Post personale.\n\u00c8 buffo che chi mi contesta da anni \u201cl'eccesso di personalizzazione\u201d, se ne esca oggi dicendo: Dica Renzi quello che vuol fare, \u00e8 colpa di Renzi, Renzi faccia chiarezza. Sta accadendo anche in queste ore.\nMi accusano di personalizzare e poi si preoccupano in modo ossessivo di me.\nChe poi spesso sono gli stessi che qualche mese fa\u2026 Altro sognavano un accordo Pd-Cinque Stelle, che presentavano Di Maio come il nuovo Berlinguer e che quando ho alzato la mia voce, quasi solitario nel gruppo dirigente, andando in TV e dicendo \u201cNo all'accordo coi grillini, fatelo #senzadime\u201d hanno detto: \u201cRenzi stia zitto, invade il campo altrui, dovrebbe tacere\u201d. Vedendo come governano i grillini mi sarei\u2026 Altro", "shared_text": "", "time": "2018-12-10 20:07:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156365763624915&id=113335124914", "link": null} +{"post_id": "10156365454689915", "text": "In un mondo dominato da barbarie e rancore, pu\u00f2 avere un senso scommettere sulla bellezza? Camminando per le strade della mia Firenze ho provato a rifletterci, raccontando i vicoli, le storie, i monumenti della\u2026 Altro mia meravigliosa citt\u00e0. E mi sono domandato a cosa serva la bellezza.\nDa sabato sera siamo in onda con #FirenzeSecondoMe, alle 21.25 sulla Nove. Aspetto i vostri commenti (per i trollls: prima aspettate di vedere la trasmissione, ancora non \u00e8 andata in onda \ud83d\ude09)", "post_text": "In un mondo dominato da barbarie e rancore, pu\u00f2 avere un senso scommettere sulla bellezza? Camminando per le strade della mia Firenze ho provato a rifletterci, raccontando i vicoli, le storie, i monumenti della\u2026 Altro mia meravigliosa citt\u00e0. E mi sono domandato a cosa serva la bellezza.\nDa sabato sera siamo in onda con #FirenzeSecondoMe, alle 21.25 sulla Nove. Aspetto i vostri commenti (per i trollls: prima aspettate di vedere la trasmissione, ancora non \u00e8 andata in onda \ud83d\ude09)", "shared_text": "", "time": "2018-12-10 17:38:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156365454689915&id=113335124914", "link": null} +{"post_id": "10156364754859915", "text": "In Italia gli esponenti dei partiti di maggioranza sembrano tutti innamorati dei \"Gilet Gialli\". Beppe Grillo, Salvini, Di Battista elogiano la rivolta popolare in Francia. Migliaia di fermati, decine di feriti, a fuoco le strade di Parigi. E questo sarebbe il modo per combattere le ingiustizie sociali?\nPer me no. Sar\u00f2 fuori moda, sar\u00f2 minoranza,\u2026 Altro sar\u00f2 controcorrente, ma per me no.\nPuoi dare ai Governi tutte le colpe che vuoi; puoi attaccare i premier, i presidenti, i ministri, chiunque; puoi fare analisi sociologiche raffinate sulla globalizzazione e sulle diseguaglianze.\nPoi per\u00f2 c'\u00e8 la realt\u00e0.\nE la realt\u00e0 \u00e8 molto semplice: per cambiare le cose occorre la politica, non il populismo. Servono le riforme, non le barricate nelle strade. Serve il buon senso, non la demagogia.\nIn Italia i \"Gilet Gialli\" sono gi\u00e0 al Governo. E gi\u00e0 dai primi mesi vediamo che l'economia rallenta e che i disoccupati aumentano. O pensiamo davvero che il modo per far ripartire la crescita e rinnovare l'Europa sia prendere a sassate le camionette della Gendarmeria francese?", "post_text": "In Italia gli esponenti dei partiti di maggioranza sembrano tutti innamorati dei \"Gilet Gialli\". Beppe Grillo, Salvini, Di Battista elogiano la rivolta popolare in Francia. Migliaia di fermati, decine di feriti, a fuoco le strade di Parigi. E questo sarebbe il modo per combattere le ingiustizie sociali?\nPer me no. Sar\u00f2 fuori moda, sar\u00f2 minoranza,\u2026 Altro sar\u00f2 controcorrente, ma per me no.\nPuoi dare ai Governi tutte le colpe che vuoi; puoi attaccare i premier, i presidenti, i ministri, chiunque; puoi fare analisi sociologiche raffinate sulla globalizzazione e sulle diseguaglianze.\nPoi per\u00f2 c'\u00e8 la realt\u00e0.\nE la realt\u00e0 \u00e8 molto semplice: per cambiare le cose occorre la politica, non il populismo. Servono le riforme, non le barricate nelle strade. Serve il buon senso, non la demagogia.\nIn Italia i \"Gilet Gialli\" sono gi\u00e0 al Governo. E gi\u00e0 dai primi mesi vediamo che l'economia rallenta e che i disoccupati aumentano. O pensiamo davvero che il modo per far ripartire la crescita e rinnovare l'Europa sia prendere a sassate le camionette della Gendarmeria francese?", "shared_text": "", "time": "2018-12-10 11:08:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156364754859915&id=113335124914", "link": null} +{"post_id": "10156364590769915", "text": "Oggi \u00e8 il giorno della verit\u00e0 per la Legge di Bilancio.\nIl Governo metter\u00e0 nero su bianco i veri numeri e finir\u00e0 l'indecorosa manfrina iniziata a settembre con l'abolizione della povert\u00e0 (!) dal balcone di Palazzo Chigi.\nMa non si pu\u00f2 solo criticare. E allora voglio spendere una parola in positivo, non solo contro il Governo.\nNoi abbiamo gi\u00e0\u2026 Altro fatto le nostre controproposte: se fossero accolte lo spread scenderebbe, le tasse anche. Ma non le accoglieranno, temo.\nIeri, per\u00f2, Salvini ha incontrato le categorie. E Confapi ha fatto una proposta molto intelligente sul reddito di cittadinanza.\nDare 780\u20ac a tutti per stare sul divano \u00e8 assurdo e non ci sono i fondi a sufficienza.\nIl Governo\u2026 Altro", "post_text": "Oggi \u00e8 il giorno della verit\u00e0 per la Legge di Bilancio.\nIl Governo metter\u00e0 nero su bianco i veri numeri e finir\u00e0 l'indecorosa manfrina iniziata a settembre con l'abolizione della povert\u00e0 (!) dal balcone di Palazzo Chigi.\nMa non si pu\u00f2 solo criticare. E allora voglio spendere una parola in positivo, non solo contro il Governo.\nNoi abbiamo gi\u00e0\u2026 Altro fatto le nostre controproposte: se fossero accolte lo spread scenderebbe, le tasse anche. Ma non le accoglieranno, temo.\nIeri, per\u00f2, Salvini ha incontrato le categorie. E Confapi ha fatto una proposta molto intelligente sul reddito di cittadinanza.\nDare 780\u20ac a tutti per stare sul divano \u00e8 assurdo e non ci sono i fondi a sufficienza.\nIl Governo\u2026 Altro", "shared_text": "", "time": "2018-12-10 08:57:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156364590769915&id=113335124914", "link": null} +{"post_id": "10156363053809915", "text": "Giornata di festa, Firenze bellissima sia con il sole di ieri che con il tempo uggioso di oggi, tanta gente per le strade, chiacchierate sulla situazione economica e politica, selfie, discussioni sul pareggio rocambolesco della Fiorentina. Tutto regolare, tutto normale. Ma c'\u00e8 quel senso di magone nel cuore che da ieri non riusciamo a toglierci.\u2026 Altro Vedi gli anni di nascita dei ragazzi che sono morti in quella maledetta serata: 2002, 2003, 2004.\nPensi che i tuoi figli hanno quell'et\u00e0 l\u00ec, pensi ai loro sabato sera e ti senti gelare il sangue. Pensi che quella mamma di quattro ragazzi era pi\u00f9 giovane di te e di tua moglie. Continui a non trovare il senso di una tragedia assurda, perch\u00e9 il senso non c'\u00e8. E tutto passa in secondo piano. Una domenica di tristezza infinita.", "post_text": "Giornata di festa, Firenze bellissima sia con il sole di ieri che con il tempo uggioso di oggi, tanta gente per le strade, chiacchierate sulla situazione economica e politica, selfie, discussioni sul pareggio rocambolesco della Fiorentina. Tutto regolare, tutto normale. Ma c'\u00e8 quel senso di magone nel cuore che da ieri non riusciamo a toglierci.\u2026 Altro Vedi gli anni di nascita dei ragazzi che sono morti in quella maledetta serata: 2002, 2003, 2004.\nPensi che i tuoi figli hanno quell'et\u00e0 l\u00ec, pensi ai loro sabato sera e ti senti gelare il sangue. Pensi che quella mamma di quattro ragazzi era pi\u00f9 giovane di te e di tua moglie. Continui a non trovare il senso di una tragedia assurda, perch\u00e9 il senso non c'\u00e8. E tutto passa in secondo piano. Una domenica di tristezza infinita.", "shared_text": "", "time": "2018-12-09 17:32:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156363053809915&id=113335124914", "link": null} +{"post_id": "10156359893509915", "text": "Le notizie che arrivano da Ancona creano un dolore enorme. Sono sconvolto come tutti gli italiani e da padre di ragazzi di quell\u2019et\u00e0 non riesco a immaginare come possa accadere una strage di questo genere.\nPer adesso solo preghiere e un abbraccio alle famiglie e agli amici delle vittime.", "post_text": "Le notizie che arrivano da Ancona creano un dolore enorme. Sono sconvolto come tutti gli italiani e da padre di ragazzi di quell\u2019et\u00e0 non riesco a immaginare come possa accadere una strage di questo genere.\nPer adesso solo preghiere e un abbraccio alle famiglie e agli amici delle vittime.", "shared_text": "", "time": "2018-12-08 08:56:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156359893509915&id=113335124914", "link": null} +{"post_id": "10156358297714915", "text": "Alla fine di questa settimana chi ama la politica non pu\u00f2 che pensare alla triste bellezza del funerale di George Bush. Al suo cagnolino fermo davanti alla bara. All\u2019America capace di stringersi intorno ai suoi\u2026 Altro simboli e alle sue bandiere. E a una politica fatta di rispetto, di riconoscenza verso le Istituzioni, di stile. Questa lettera lasciata da Bush a Clinton al momento del passaggio di consegne dice molto di cosa sia la democrazia americana, nonostante tutto.\nOnore al Presidente Bush e onore a chi vive la politica non come una rancorosa caccia all\u2019uomo ma come scambio di idee, di sogni, di speranze.\nTenetevi pure la demagogia e il populismo. Io mi tengo l\u2019idea che la politica sia davvero altra cosa.", "post_text": "Alla fine di questa settimana chi ama la politica non pu\u00f2 che pensare alla triste bellezza del funerale di George Bush. Al suo cagnolino fermo davanti alla bara. All\u2019America capace di stringersi intorno ai suoi\u2026 Altro simboli e alle sue bandiere. E a una politica fatta di rispetto, di riconoscenza verso le Istituzioni, di stile. Questa lettera lasciata da Bush a Clinton al momento del passaggio di consegne dice molto di cosa sia la democrazia americana, nonostante tutto.\nOnore al Presidente Bush e onore a chi vive la politica non come una rancorosa caccia all\u2019uomo ma come scambio di idee, di sogni, di speranze.\nTenetevi pure la demagogia e il populismo. Io mi tengo l\u2019idea che la politica sia davvero altra cosa.", "shared_text": "", "time": "2018-12-07 18:28:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p110x80/47686119_10156358297514915_9177852083666157568_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=Hv-LyZSWX2gAQmsd5Mq3iVNzq_N2VIxWJHolS1V380e4le4u-_veYcfOA&_nc_ht=scontent-cdt1-1.xx&oh=204cd9991aff5cf7c3a672fee8a07cbe&oe=5E8189EE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156358297714915&id=113335124914", "link": null} +{"post_id": "10156358053334915", "text": "Un'Italia incattivita, rancorosa, impaurita. L'immagine che ci consegna la relazione 2018 del Censis \u00e8 molto triste. Ma non mi va di cedere alla cultura del pessimismo.\nDico che un'Italia diversa c'\u00e8, \u00e8 gi\u00e0 tra noi, va solo valorizzata. Nelle stesse ore in cui il Censis descrive lo stato dell'animo con queste parole mi piace segnalare Bebe Vio e\u2026 Altro la sua meravigliosa energia.\nOggi Bebe ha detto: voglio diventare presidente del Coni, le donne devono lottare per arrivare i vertici.\nLa vita \u00e8 una figata, ci ripete spesso la campionessa paralimpica cui chiedemmo di rappresentare l'Italia nella cena di stato con Obama due anni fa. Perch\u00e9 anche se ci sono tanti problemi, sono persone come Bebe che ci insegnano a guardare avanti, senza paura. Senza cedere al rancore.\nGrazie per quello che sei Bebe. E per i sogni che continui a fare, per gli obiettivi che continui a darti, per la lezione che continui a darci.\nNoi non lasceremo mai che l'Italia ceda alla paura e al rancore.", "post_text": "Un'Italia incattivita, rancorosa, impaurita. L'immagine che ci consegna la relazione 2018 del Censis \u00e8 molto triste. Ma non mi va di cedere alla cultura del pessimismo.\nDico che un'Italia diversa c'\u00e8, \u00e8 gi\u00e0 tra noi, va solo valorizzata. Nelle stesse ore in cui il Censis descrive lo stato dell'animo con queste parole mi piace segnalare Bebe Vio e\u2026 Altro la sua meravigliosa energia.\nOggi Bebe ha detto: voglio diventare presidente del Coni, le donne devono lottare per arrivare i vertici.\nLa vita \u00e8 una figata, ci ripete spesso la campionessa paralimpica cui chiedemmo di rappresentare l'Italia nella cena di stato con Obama due anni fa. Perch\u00e9 anche se ci sono tanti problemi, sono persone come Bebe che ci insegnano a guardare avanti, senza paura. Senza cedere al rancore.\nGrazie per quello che sei Bebe. E per i sogni che continui a fare, per gli obiettivi che continui a darti, per la lezione che continui a darci.\nNoi non lasceremo mai che l'Italia ceda alla paura e al rancore.", "shared_text": "", "time": "2018-12-07 16:16:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156358053334915&id=113335124914", "link": null} +{"post_id": "10156356489189915", "text": "E mentre stai per andare a letto ti fanno notare via sms che il tuo assist \"alla Quaresma\" nel match tra nazionali parlamentari Italia-Russia \u00e8 finito sulla pagina \"Chiamarsi Bomber\".\nChe per molti di voi pu\u00f2\u2026 Altro dire poco, ma per chi ama il calcio \u00e8 tanta roba. Insomma vado a letto orgoglioso della mia \"trivela\". Anche se diciamo la verit\u00e0: se ci riprovo venti volte non \u00e8 detto che mi venga bene cos\u00ec.\nBuona notte amici, buona \"trivela\" a tutti\nChiamarsi Bomber\n6 dicembre 2018 alle ore 15:00 \u00b7\nL'assist di trivela di Matteo Renzi vale gli 80 euro del biglietto.\n(Durante la sfida tra la Nazionale Italiana Diplomatici e quella russa)", "post_text": "E mentre stai per andare a letto ti fanno notare via sms che il tuo assist \"alla Quaresma\" nel match tra nazionali parlamentari Italia-Russia \u00e8 finito sulla pagina \"Chiamarsi Bomber\".\nChe per molti di voi pu\u00f2\u2026 Altro dire poco, ma per chi ama il calcio \u00e8 tanta roba. Insomma vado a letto orgoglioso della mia \"trivela\". Anche se diciamo la verit\u00e0: se ci riprovo venti volte non \u00e8 detto che mi venga bene cos\u00ec.\nBuona notte amici, buona \"trivela\" a tutti", "shared_text": "Chiamarsi Bomber\n6 dicembre 2018 alle ore 15:00 \u00b7\nL'assist di trivela di Matteo Renzi vale gli 80 euro del biglietto.\n(Durante la sfida tra la Nazionale Italiana Diplomatici e quella russa)", "time": "2018-12-06 23:55:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156356489189915&id=113335124914", "link": null} +{"post_id": "1183975765086235", "text": "In diretta dal Senato la top ten della settimana", "post_text": "In diretta dal Senato la top ten della settimana", "shared_text": "", "time": "2018-12-06 18:25:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1183975765086235&id=113335124914", "link": null} +{"post_id": "10156355473149915", "text": "Il Global Compact sulla Migrazione sta dividendo molti governi, l'ultimo il Belgio. Anche in Italia ci sono state tensioni: il premier teorico Conte ha annunciato la firma dell'Italia, il premier ombra Salvini lo ha smentito.\nIl gioco della Lega \u00e8 sempre il solito: picchiare duro sulla paura dei migranti. Ma vi chiedo di perdere due minuti del\u2026 Altro vostro tempo: voglio dimostrarvi perch\u00e9 la scelta di Salvini serve alla Lega ma non serve all'Italia.\nPerch\u00e9 oggi l'Italia si \u00e8 trovata sola nella gestione dei migranti? Perch\u00e9 l'Europa ha approvato quindici anni fa il trattato di Dublino. E purtroppo fu proprio l'Italia a proporlo: Lega e Forza Italia stavano al Governo e in nome della BossiFini\u2026 Altro", "post_text": "Il Global Compact sulla Migrazione sta dividendo molti governi, l'ultimo il Belgio. Anche in Italia ci sono state tensioni: il premier teorico Conte ha annunciato la firma dell'Italia, il premier ombra Salvini lo ha smentito.\nIl gioco della Lega \u00e8 sempre il solito: picchiare duro sulla paura dei migranti. Ma vi chiedo di perdere due minuti del\u2026 Altro vostro tempo: voglio dimostrarvi perch\u00e9 la scelta di Salvini serve alla Lega ma non serve all'Italia.\nPerch\u00e9 oggi l'Italia si \u00e8 trovata sola nella gestione dei migranti? Perch\u00e9 l'Europa ha approvato quindici anni fa il trattato di Dublino. E purtroppo fu proprio l'Italia a proporlo: Lega e Forza Italia stavano al Governo e in nome della BossiFini\u2026 Altro", "shared_text": "", "time": "2018-12-06 13:54:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156355473149915&id=113335124914", "link": null} +{"post_id": "10156355186389915", "text": "Oggi i media parlano di nuovo delle divisioni del PD. E naturalmente c'\u00e8 sempre qualche fonte anonima che d\u00e0 la colpa a Renzi. Strano.\nMettiamo le cose in fila.\nDopo le elezioni io mi sono dimesso. Ho spiegato in un lungo discorso all'Assemblea Nazionale ci\u00f2 che secondo me ho sbagliato e ci\u00f2 che abbiamo fatto bene. Ma mi sono assunto io la\u2026 Altro responsabilit\u00e0 per tutti.\nDa quel momento ho fatto la mia battaglia da senatore dell'opposizione. Perch\u00e9 tale sono stato eletto non da qualche corrente ma dai cittadini del mio collegio.\nHo fatto una battaglia contro l'accordo con i Cinque Stelle, per i vaccini obbligatori, contro il taglio alle periferie, contro il condono fiscale e quello edilizio. \u2026 Altro", "post_text": "Oggi i media parlano di nuovo delle divisioni del PD. E naturalmente c'\u00e8 sempre qualche fonte anonima che d\u00e0 la colpa a Renzi. Strano.\nMettiamo le cose in fila.\nDopo le elezioni io mi sono dimesso. Ho spiegato in un lungo discorso all'Assemblea Nazionale ci\u00f2 che secondo me ho sbagliato e ci\u00f2 che abbiamo fatto bene. Ma mi sono assunto io la\u2026 Altro responsabilit\u00e0 per tutti.\nDa quel momento ho fatto la mia battaglia da senatore dell'opposizione. Perch\u00e9 tale sono stato eletto non da qualche corrente ma dai cittadini del mio collegio.\nHo fatto una battaglia contro l'accordo con i Cinque Stelle, per i vaccini obbligatori, contro il taglio alle periferie, contro il condono fiscale e quello edilizio. \u2026 Altro", "shared_text": "", "time": "2018-12-06 09:29:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156355186389915&id=113335124914", "link": null} +{"post_id": "10156353741149915", "text": "Oggi Assolavoro ha presentato le prime conseguenze del Decreto Dignit\u00e0. Con questa legge voluta da Di Maio da gennaio ci saranno 53mila posti di lavoro in meno. Con il JobsAct oltre un milione di posti di lavoro in pi\u00f9 in 4 anni, con il Decreto Dignit\u00e0 53mila posti di lavoro in meno solo nei primi mesi. Queste sono le vere scelte importanti della politica: forse qualcuno adesso smetter\u00e0 di attaccare il JobsAct. Con questo Governo il Paese va verso la recessione.", "post_text": "Oggi Assolavoro ha presentato le prime conseguenze del Decreto Dignit\u00e0. Con questa legge voluta da Di Maio da gennaio ci saranno 53mila posti di lavoro in meno. Con il JobsAct oltre un milione di posti di lavoro in pi\u00f9 in 4 anni, con il Decreto Dignit\u00e0 53mila posti di lavoro in meno solo nei primi mesi. Queste sono le vere scelte importanti della politica: forse qualcuno adesso smetter\u00e0 di attaccare il JobsAct. Con questo Governo il Paese va verso la recessione.", "shared_text": "", "time": "2018-12-05 17:39:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156353741149915&id=113335124914", "link": null} +{"post_id": "10156351996304915", "text": "Sono a Bruxelles per due giorni di lavoro e arrivato in albergo, butto un occhio sui social. E vedo che tanti ci prendono in giro perch\u00e9 proprio oggi sono trascorsi esattamente due anni dalla sconfitta referendaria: era il 4 dicembre 2016.\nIn tanti mi chiedono ancora oggi: Matteo, ma chi te l'ha fatto fare? Potevi essere ancora in sella, che\u2026 Altro bisogno c'era di fare quella riforma della Costituzione?\nAmici, ve lo dico con grande libert\u00e0.\nSi fa politica in nome delle idee, non per difendere una poltrona.\nPer la mia carriera sarebbe stato meglio non fare quel referendum, ma per il nostro Paese era utile e necessario.\nEra giusto provarci, era giusto dare pi\u00f9 stabilit\u00e0 ed efficienza alle\u2026 Altro", "post_text": "Sono a Bruxelles per due giorni di lavoro e arrivato in albergo, butto un occhio sui social. E vedo che tanti ci prendono in giro perch\u00e9 proprio oggi sono trascorsi esattamente due anni dalla sconfitta referendaria: era il 4 dicembre 2016.\nIn tanti mi chiedono ancora oggi: Matteo, ma chi te l'ha fatto fare? Potevi essere ancora in sella, che\u2026 Altro bisogno c'era di fare quella riforma della Costituzione?\nAmici, ve lo dico con grande libert\u00e0.\nSi fa politica in nome delle idee, non per difendere una poltrona.\nPer la mia carriera sarebbe stato meglio non fare quel referendum, ma per il nostro Paese era utile e necessario.\nEra giusto provarci, era giusto dare pi\u00f9 stabilit\u00e0 ed efficienza alle\u2026 Altro", "shared_text": "", "time": "2018-12-04 22:47:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156351996304915&id=113335124914", "link": null} +{"post_id": "10156351231304915", "text": "Per fare propaganda alla sua manifestazione in piazza, Salvini ha messo la mia faccia, insieme a quelle di altri, su dei manifesti con la scritta: Lui non ci sar\u00e0.\nNO, IO NON CI SARO'\n- Non sar\u00f2 nella piazza di chi fa lo sciacallo su ogni atto criminale dimenticando di essere il ministro che dovrebbe garantire la sicurezza. Non lucrare sull'\u2026 Altroinsicurezza.\n- Non sar\u00f2 nella piazza di chi ha portato il Paese in recessione, lo spread a 300 e il Pil in negativo.\n- Non sar\u00f2 nella piazza di chi ha votato la concessione a Autostrade, ha annunciato la revoca e poi ha dimenticato entrambe le cose.\n- Non sar\u00f2 nella piazza di chi ha votato il rinvio della obbligatoriet\u00e0 dei vaccini.\n- Non sar\u00f2 nella\u2026 Altro", "post_text": "Per fare propaganda alla sua manifestazione in piazza, Salvini ha messo la mia faccia, insieme a quelle di altri, su dei manifesti con la scritta: Lui non ci sar\u00e0.\nNO, IO NON CI SARO'\n- Non sar\u00f2 nella piazza di chi fa lo sciacallo su ogni atto criminale dimenticando di essere il ministro che dovrebbe garantire la sicurezza. Non lucrare sull'\u2026 Altroinsicurezza.\n- Non sar\u00f2 nella piazza di chi ha portato il Paese in recessione, lo spread a 300 e il Pil in negativo.\n- Non sar\u00f2 nella piazza di chi ha votato la concessione a Autostrade, ha annunciato la revoca e poi ha dimenticato entrambe le cose.\n- Non sar\u00f2 nella piazza di chi ha votato il rinvio della obbligatoriet\u00e0 dei vaccini.\n- Non sar\u00f2 nella\u2026 Altro", "shared_text": "", "time": "2018-12-04 16:04:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156351231304915&id=113335124914", "link": null} +{"post_id": "10156350666004915", "text": "Complimenti ai Carabinieri e alle forze dell\u2019ordine per l\u2019operazione di stamani a Palermo contro la nuova cupola mafiosa. Siamo tutti orgogliosi del lavoro quotidiano di donne e uomini che lottano per la legalit\u00e0 e contro la mafia. Viva l\u2019Italia", "post_text": "Complimenti ai Carabinieri e alle forze dell\u2019ordine per l\u2019operazione di stamani a Palermo contro la nuova cupola mafiosa. Siamo tutti orgogliosi del lavoro quotidiano di donne e uomini che lottano per la legalit\u00e0 e contro la mafia. Viva l\u2019Italia", "shared_text": "", "time": "2018-12-04 09:44:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156350666004915&id=113335124914", "link": null} +{"post_id": "10156348974224915", "text": "Il Movimento 5 Stelle tanto per cambiare attacca me, anche dopo la vicenda del signor Di Maio. Attaccano sempre me, solo me, comunque me. Qualsiasi cosa accada la risposta \u00e8: \"S\u00ec, per\u00f2 Renzi...\"\nStavolta sono andati oltre il ridicolo. Tocca rispondere.\nScopri le differenze - 1\nSe vogliamo parlare dei padri, quando sono arrivate le accuse di lavoro\u2026 Altro nero Di Maio senior ha confessato, mio padre ha querelato per diffamazione. Che poi questo non mi sembra un gran periodo per chi scrive falsit\u00e0 su mio padre, come ben sa Marco Travaglio.\nScopri le differenze - 2\nSe vogliamo parlare dei figli, Gigino di Maio ha fatto tutta la sua carriera spargendo false verit\u00e0 e vero fango sui padri degli altri,\u2026 Altro", "post_text": "Il Movimento 5 Stelle tanto per cambiare attacca me, anche dopo la vicenda del signor Di Maio. Attaccano sempre me, solo me, comunque me. Qualsiasi cosa accada la risposta \u00e8: \"S\u00ec, per\u00f2 Renzi...\"\nStavolta sono andati oltre il ridicolo. Tocca rispondere.\nScopri le differenze - 1\nSe vogliamo parlare dei padri, quando sono arrivate le accuse di lavoro\u2026 Altro nero Di Maio senior ha confessato, mio padre ha querelato per diffamazione. Che poi questo non mi sembra un gran periodo per chi scrive falsit\u00e0 su mio padre, come ben sa Marco Travaglio.\nScopri le differenze - 2\nSe vogliamo parlare dei figli, Gigino di Maio ha fatto tutta la sua carriera spargendo false verit\u00e0 e vero fango sui padri degli altri,\u2026 Altro", "shared_text": "", "time": "2018-12-03 16:30:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156348974224915&id=113335124914", "link": null} +{"post_id": "10156348595669915", "text": "il missionario salesiano lombardo Padre Ugo De Censi, fondatore dell\u2019Operazione Mato Grosso, ci ha lasciato questa notte in Per\u00f9, dopo una vita spesa per i pi\u00f9 poveri. Ho conosciuto da ragazzo i volontari\u2026 Altro dell\u2019Operazione e poi ho avuto la fortuna di incontrare pi\u00f9 volte il Padre Ugo a Firenze come a Lima. Chi lo ha conosciuto ricorda oggi con gratitudine la sua fede, la sua forza e la sua impressionante energia. Grazie padre Ugo, \u00e8 stato bello condividere un pezzo di strada con te", "post_text": "il missionario salesiano lombardo Padre Ugo De Censi, fondatore dell\u2019Operazione Mato Grosso, ci ha lasciato questa notte in Per\u00f9, dopo una vita spesa per i pi\u00f9 poveri. Ho conosciuto da ragazzo i volontari\u2026 Altro dell\u2019Operazione e poi ho avuto la fortuna di incontrare pi\u00f9 volte il Padre Ugo a Firenze come a Lima. Chi lo ha conosciuto ricorda oggi con gratitudine la sua fede, la sua forza e la sua impressionante energia. Grazie padre Ugo, \u00e8 stato bello condividere un pezzo di strada con te", "shared_text": "", "time": "2018-12-03 13:39:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/47249157_10156348593369915_4915166857079554048_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=_IkWZKRJsx0AQlaOuRBzRFYdCBGN6Y-PDTEmFV_44SuAT3bz79jq9QSkg&_nc_ht=scontent-cdt1-1.xx&oh=d18ae5c728f6223fd7aa10506bb832b2&oe=5E4230A1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156348595669915&id=113335124914", "link": null} +{"post_id": "10156346821909915", "text": "Quando la settimana scorsa Le Iene hanno iniziato a parlare della famiglia Di Maio ho detto: \"chi di odio ferisce, di odio perisce\".\nE ho chiesto le scuse per come la mia famiglia \u00e8 stata trattata dai Cinque Stelle in questi anni. In un sussulto di onest\u00e0 intellettuale Salvini ha ammesso che la sua parte politica aveva sbagliato in passato a\u2026 Altro utilizzare le famiglie per aggredire gli avversari. Meglio che niente...\nI Cinque Stelle invece hanno continuato ad attaccare la stampa, a insultarci, a sottolineare che Di Maio non c'entra nulla e che \u00e8 comunque colpa di chi c'era prima.\nCredo che la settimana appena trascorsa ci lasci tre insegnamenti:\n1 - Equitalia, abusi edilizi, lavoro in nero,\u2026 Altro", "post_text": "Quando la settimana scorsa Le Iene hanno iniziato a parlare della famiglia Di Maio ho detto: \"chi di odio ferisce, di odio perisce\".\nE ho chiesto le scuse per come la mia famiglia \u00e8 stata trattata dai Cinque Stelle in questi anni. In un sussulto di onest\u00e0 intellettuale Salvini ha ammesso che la sua parte politica aveva sbagliato in passato a\u2026 Altro utilizzare le famiglie per aggredire gli avversari. Meglio che niente...\nI Cinque Stelle invece hanno continuato ad attaccare la stampa, a insultarci, a sottolineare che Di Maio non c'entra nulla e che \u00e8 comunque colpa di chi c'era prima.\nCredo che la settimana appena trascorsa ci lasci tre insegnamenti:\n1 - Equitalia, abusi edilizi, lavoro in nero,\u2026 Altro", "shared_text": "", "time": "2018-12-02 17:41:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156346821909915&id=113335124914", "link": null} +{"post_id": "10156343565869915", "text": "Per la Firenze del calcio oggi \u00e8 \"IL\" giorno. Al Franchi arriva la Juve. Ho fatto un\u2019intervista a La Gazzetta dello Sport. Tranquilli: non sono come Salvini, non insegno agli allenatori come fare la formazione.\u2026 Altro Mi limito a dire che se vince la Fiorentina, si riapre il campionato e tutto diventa pi\u00f9 interessante.\nFacciamo questo servizio al Paese, dai :-)\nBuona giornata, amici!\nMATTEORENZI.IT\nViola, se vinci salvi il campionato. Ci pensano Pjaca e l'artista Chiesa - Matteo Renzi", "post_text": "Per la Firenze del calcio oggi \u00e8 \"IL\" giorno. Al Franchi arriva la Juve. Ho fatto un\u2019intervista a La Gazzetta dello Sport. Tranquilli: non sono come Salvini, non insegno agli allenatori come fare la formazione.\u2026 Altro Mi limito a dire che se vince la Fiorentina, si riapre il campionato e tutto diventa pi\u00f9 interessante.\nFacciamo questo servizio al Paese, dai :-)\nBuona giornata, amici!", "shared_text": "MATTEORENZI.IT\nViola, se vinci salvi il campionato. Ci pensano Pjaca e l'artista Chiesa - Matteo Renzi", "time": "2018-12-01 15:30:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/c0.97.990.518a/s480x480/47312553_23843148470560181_4431001730741698560_n.png.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=YEnze2J-GWoAQmmwlYRUvtqlZhGncRPt8kq2pJR5VmPW6xF8RbDOCBeQA&_nc_ht=scontent-cdt1-1.xx&oh=6ba26b880d34480080154944e873dace&oe=5E416873", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156343565869915&id=113335124914", "link": "https://www.matteorenzi.it/gazzetta-sport-intervista-fiorentina-viola-campionato-pjaca-chiesa/?fbclid=IwAR0YLOePsL0gIRAIQFcJAX2fzGx7BJgI2JgAq1Q8bdj2Y229uBdVyaq9UQU"} +{"post_id": "10156343807264915", "text": "Ieri Canale 5 ha mandato in onda lo scherzo che mi hanno fatto mentre registravo \"Firenze Secondo Me\". E naturalmente Paolo Bonolis non ha perso l\u2019occasione per prendermi in giro. Meno male che mi ero portato\u2026 Altro la poltrona da casa, altrimenti perdevo anche quella. Buona visione amici. E ai troll che insulteranno anche per Scherzi a parte: che vita difficile che fate amici, vi meritate un abbraccio affettuoso.\nBuon divertimento!", "post_text": "Ieri Canale 5 ha mandato in onda lo scherzo che mi hanno fatto mentre registravo \"Firenze Secondo Me\". E naturalmente Paolo Bonolis non ha perso l\u2019occasione per prendermi in giro. Meno male che mi ero portato\u2026 Altro la poltrona da casa, altrimenti perdevo anche quella. Buona visione amici. E ai troll che insulteranno anche per Scherzi a parte: che vita difficile che fate amici, vi meritate un abbraccio affettuoso.\nBuon divertimento!", "shared_text": "", "time": "2018-12-01 12:30:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=203922583817351&id=113335124914", "link": null} +{"post_id": "10156343586329915", "text": "Oggi il Governo del cambiamento festeggia i primi sei mesi. Non \u00e8 vero che non \u00e8 cambiato nulla: il mondo di riferimento culturale di Di Maio \u00e8 pienamente felice.\nGuardate cinque fatti, oggettivi, e tirate le conseguenze voi stessi.\n1- Hai fatto abusi edilizi? Ti fanno il condono.\n2- Non hai pagato le tasse? Ti stracciano le cartelle Equitalia.\u2026 Altro\n3- Dai lavoro in nero alla colf o al muratore? Ti giustificano, lo fanno tutti.\n4- Prendi lavoro in nero? Ti chiedono di non denunciare, nemmeno se ti fai male. Tanto prima o poi avrai il reddito di cittadinanza e potrai continuare col lavoro in nero.\n5- Hai rubato soldi coi rimborsi regionali? Ti cambio la legge sul peculato.\nIo non ho fatto abusi,\u2026 Altro", "post_text": "Oggi il Governo del cambiamento festeggia i primi sei mesi. Non \u00e8 vero che non \u00e8 cambiato nulla: il mondo di riferimento culturale di Di Maio \u00e8 pienamente felice.\nGuardate cinque fatti, oggettivi, e tirate le conseguenze voi stessi.\n1- Hai fatto abusi edilizi? Ti fanno il condono.\n2- Non hai pagato le tasse? Ti stracciano le cartelle Equitalia.\u2026 Altro\n3- Dai lavoro in nero alla colf o al muratore? Ti giustificano, lo fanno tutti.\n4- Prendi lavoro in nero? Ti chiedono di non denunciare, nemmeno se ti fai male. Tanto prima o poi avrai il reddito di cittadinanza e potrai continuare col lavoro in nero.\n5- Hai rubato soldi coi rimborsi regionali? Ti cambio la legge sul peculato.\nIo non ho fatto abusi,\u2026 Altro", "shared_text": "", "time": "2018-12-01 10:21:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156343586329915&id=113335124914", "link": null} +{"post_id": "10156343484549915", "text": "Mi sono commosso stamani leggendo questa storia. Un bimbo inglese di sette anni scrive una lettera di auguri al padre morto tre anni prima. Chiede alle Poste di portarla in Paradiso. E le Poste scrivono al\u2026 Altro bambino: \u00e8 stata difficile ma ce l\u2019abbiamo fatta, missione compiuta. Quando la burocrazia mostra il cuore anche un piccolo gesto diventa un\u2019emozione bellissima.", "post_text": "Mi sono commosso stamani leggendo questa storia. Un bimbo inglese di sette anni scrive una lettera di auguri al padre morto tre anni prima. Chiede alle Poste di portarla in Paradiso. E le Poste scrivono al\u2026 Altro bambino: \u00e8 stata difficile ma ce l\u2019abbiamo fatta, missione compiuta. Quando la burocrazia mostra il cuore anche un piccolo gesto diventa un\u2019emozione bellissima.", "shared_text": "", "time": "2018-12-01 08:58:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/47153710_10156343484529915_8100381609577938944_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=8-JZLYdOFRIAQkyfDM91dhsaEmUMbWKi9Uuo8pU7IN0FAdh6-1EKViybA&_nc_ht=scontent-cdt1-1.xx&oh=e5f0ac74dd5d1769784149608c6552b2&oe=5E47ABEE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156343484549915&id=113335124914", "link": null} +{"post_id": "10156341445409915", "text": "\"Trova le differenze\"\nDal 2014-17 (Renzi-Gentiloni-Padoan):\n- Pil +3,8%\n- Consumi famiglie +5,1%\n- Investimenti in macchinari e veicoli +23,5%\n- Occupati (da febbraio 2014 a maggio 2018) 1 milione e 180mila in pi\u00f9\nDeficit pubblico/Pil gi\u00f9 da -2,9% a -2,4%\n- Pressione fiscale abbassata dell'1,4% del Pil (la pi\u00f9 forte riduzione tra i Paesi dell'\u2026 AltroEuroarea), -2% considerando l'effetto 80 euro\nIn sei mesi, 1 giugno 2018 - 30novembre 2018 (Salvini, Di Maio, Tria):\n- Pil -0,1% nel terzo trimestre 2018\n- Infrastrutture ferme\n- Crollo fiducia famiglie e imprese\n- Calo 96mila occupati rispetto a maggio 2018\n- Spread a 300\nQuesti numeri parlano.\nLe chiacchiere stanno a zero.\nCon noi era tornata la crescita.\nCon loro torna la recessione.", "post_text": "\"Trova le differenze\"\nDal 2014-17 (Renzi-Gentiloni-Padoan):\n- Pil +3,8%\n- Consumi famiglie +5,1%\n- Investimenti in macchinari e veicoli +23,5%\n- Occupati (da febbraio 2014 a maggio 2018) 1 milione e 180mila in pi\u00f9\nDeficit pubblico/Pil gi\u00f9 da -2,9% a -2,4%\n- Pressione fiscale abbassata dell'1,4% del Pil (la pi\u00f9 forte riduzione tra i Paesi dell'\u2026 AltroEuroarea), -2% considerando l'effetto 80 euro\nIn sei mesi, 1 giugno 2018 - 30novembre 2018 (Salvini, Di Maio, Tria):\n- Pil -0,1% nel terzo trimestre 2018\n- Infrastrutture ferme\n- Crollo fiducia famiglie e imprese\n- Calo 96mila occupati rispetto a maggio 2018\n- Spread a 300\nQuesti numeri parlano.\nLe chiacchiere stanno a zero.\nCon noi era tornata la crescita.\nCon loro torna la recessione.", "shared_text": "", "time": "2018-11-30 12:43:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156341445409915&id=113335124914", "link": null} +{"post_id": "10156341328929915", "text": "Un piccolo risultato del nostro lavoro al governo. Grazie al Decreto Madia abbiamo ridotto del 30% le partecipate dei Comuni. Quasi un terzo di poltrone in meno. Presentare questi risultati non \u00e8 nostalgia, ma seriet\u00e0. Ma eravate antipatici, dicono. Meglio antipatici che cialtroni.", "post_text": "Un piccolo risultato del nostro lavoro al governo. Grazie al Decreto Madia abbiamo ridotto del 30% le partecipate dei Comuni. Quasi un terzo di poltrone in meno. Presentare questi risultati non \u00e8 nostalgia, ma seriet\u00e0. Ma eravate antipatici, dicono. Meglio antipatici che cialtroni.", "shared_text": "", "time": "2018-11-30 11:16:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/46734867_10156341328884915_1389836839866597376_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=K_CspsqzRl4AQmvSdIqPcJH0GnZamYlzqLu6vDo6UWMbjgP-byn5ipn7w&_nc_ht=scontent-cdt1-1.xx&oh=119b6a6a1f1f7cdd5ee59487d0fb9c6f&oe=5E47E023", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156341328929915&id=113335124914", "link": null} +{"post_id": "10156339110254915", "text": "Un piccolo imprenditore ha ucciso un ladro che si era introdotto di notte nella sua azienda. Da quello che si legge, l\u2019uomo era esasperato per aver subito 38 rapine negli ultimi anni. E pare che sia molto provato per ci\u00f2 che \u00e8 accaduto: \u201cNon volevo ucciderlo, ho mirato alle gambe\u201d avrebbe detto.\nCiascuno di noi pu\u00f2 commentare come se fosse al Bar\u2026 Altro questa vicenda, triste e dolorosa.\nEd \u00e8 ovvio che riparta la discussione sulla legittima difesa. Oltre che le discussioni tra amici: giusto prendere il porto d\u2019armi, no meglio non farlo, tu che avresti fatto al posto suo?, ha fatto bene, ha sbagliato, non aveva altre possibilit\u00e0, una gomma non vale una vita umana, eccetera eccetera.\nUn dibattito\u2026 Altro", "post_text": "Un piccolo imprenditore ha ucciso un ladro che si era introdotto di notte nella sua azienda. Da quello che si legge, l\u2019uomo era esasperato per aver subito 38 rapine negli ultimi anni. E pare che sia molto provato per ci\u00f2 che \u00e8 accaduto: \u201cNon volevo ucciderlo, ho mirato alle gambe\u201d avrebbe detto.\nCiascuno di noi pu\u00f2 commentare come se fosse al Bar\u2026 Altro questa vicenda, triste e dolorosa.\nEd \u00e8 ovvio che riparta la discussione sulla legittima difesa. Oltre che le discussioni tra amici: giusto prendere il porto d\u2019armi, no meglio non farlo, tu che avresti fatto al posto suo?, ha fatto bene, ha sbagliato, non aveva altre possibilit\u00e0, una gomma non vale una vita umana, eccetera eccetera.\nUn dibattito\u2026 Altro", "shared_text": "", "time": "2018-11-29 10:11:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156339110254915&id=113335124914", "link": null} +{"post_id": "10156337905524915", "text": "Ecco, quando ci sono aziende italiane che hanno una visione strategica i risultati arrivano. Bisogna investire in Africa e bisogna scommettere sulla sostenibilit\u00e0 ambientale. Enel Green Power lo sta facendo e\u2026 Altro anche se queste notizie non riescono a bucare nel dibattito politico nazionale \u00e8 giusto sottolinearle e rilanciarle.\nDobbiamo investire in Africa, come Europa e con le nostre aziende, senza lasciarla solo agli investimenti cinesi.\nDobbiamo scommettere sulla sostenibilit\u00e0 come fattore trainante della crescita: l\u2019economia verde pu\u00f2 creare molti posti di lavoro, altro che reddito di cittadinanza.\nBuona serata, amici", "post_text": "Ecco, quando ci sono aziende italiane che hanno una visione strategica i risultati arrivano. Bisogna investire in Africa e bisogna scommettere sulla sostenibilit\u00e0 ambientale. Enel Green Power lo sta facendo e\u2026 Altro anche se queste notizie non riescono a bucare nel dibattito politico nazionale \u00e8 giusto sottolinearle e rilanciarle.\nDobbiamo investire in Africa, come Europa e con le nostre aziende, senza lasciarla solo agli investimenti cinesi.\nDobbiamo scommettere sulla sostenibilit\u00e0 come fattore trainante della crescita: l\u2019economia verde pu\u00f2 creare molti posti di lavoro, altro che reddito di cittadinanza.\nBuona serata, amici", "shared_text": "", "time": "2018-11-28 21:02:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/46837430_10156337903554915_3574525800981987328_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=rnTkIG52nIgAQmaD8JeTkZKb-lpV_PlevUqbfN0gMgJ5VZtte7EN6BPNg&_nc_ht=scontent-cdt1-1.xx&oh=91229ad09ec05aedff700d9ce917ac07&oe=5E805DAF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156337905524915&id=113335124914", "link": null} +{"post_id": "10156337391934915", "text": "In una settimana Salvini ha fatto passare a voto segreto un emendamento per salvare dal carcere suoi parlamentari condannati in secondo grado; ha salvato Bossi non denunciandolo per appropriazione indebita; ha condonato 177 milioni di \u20ac ai produttori di sigarette elettroniche, uno dei quali ha finanziato la Lega; ha continuato a mentire dicendo di\u2026 Altro essere estraneo alla clamorosa vicenda dei 49 milioni di \u20ac che la Lega deve restituire allo Stato. Naturalmente il movimento cinque stelle, che un tempo parlava di onest\u00e0, oggi si accoda oppure tace. Il tutto in una settimana: neanche Berlusconi \u00e8 mai riuscito a fare tanto.", "post_text": "In una settimana Salvini ha fatto passare a voto segreto un emendamento per salvare dal carcere suoi parlamentari condannati in secondo grado; ha salvato Bossi non denunciandolo per appropriazione indebita; ha condonato 177 milioni di \u20ac ai produttori di sigarette elettroniche, uno dei quali ha finanziato la Lega; ha continuato a mentire dicendo di\u2026 Altro essere estraneo alla clamorosa vicenda dei 49 milioni di \u20ac che la Lega deve restituire allo Stato. Naturalmente il movimento cinque stelle, che un tempo parlava di onest\u00e0, oggi si accoda oppure tace. Il tutto in una settimana: neanche Berlusconi \u00e8 mai riuscito a fare tanto.", "shared_text": "", "time": "2018-11-28 16:39:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156337391934915&id=113335124914", "link": null} +{"post_id": "522031868301822", "text": "In diretta dal Senato la top ten della settimana", "post_text": "In diretta dal Senato la top ten della settimana", "shared_text": "", "time": "2018-11-28 12:38:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=522031868301822&id=113335124914", "link": null} +{"post_id": "10156336877384915", "text": "Alle 12.30 vi aspetto qui su Facebook per la top ten della settimana: a tra poco!", "post_text": "Alle 12.30 vi aspetto qui su Facebook per la top ten della settimana: a tra poco!", "shared_text": "", "time": "2018-11-28 11:55:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/46781398_10156336876224915_1326656290394472448_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=xhN6HBXrqqoAQlh0uvZPt15JZikt3kCrkuXWn2mVqWO4pQktvWDSeU6qw&_nc_ht=scontent-cdt1-1.xx&oh=928ea41a526c4620ac0ec9b050968c46&oe=5E47F314", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156336877384915&id=113335124914", "link": null} +{"post_id": "10156336827504915", "text": "Oggi alcuni giornali attaccano il professor Roberto Burioni. E siccome Burioni ha ragione quando difende la scienza dall\u2019ignoranza e dalle #FakeNews, su cosa l\u2019attaccano? Ma \u00e8 ovvio: sul carattere e\u2026 Altro sull\u2019arroganza. Quando qualcuno dice cose scomode ma vere, l\u2019unico modo per contestare quelle cose e attaccare sul carattere e sull\u2019arroganza. Sempre il solito film. Solidariet\u00e0 a Roberto Burioni. E grazie per la sua battaglia a favore dei vaccini.", "post_text": "Oggi alcuni giornali attaccano il professor Roberto Burioni. E siccome Burioni ha ragione quando difende la scienza dall\u2019ignoranza e dalle #FakeNews, su cosa l\u2019attaccano? Ma \u00e8 ovvio: sul carattere e\u2026 Altro sull\u2019arroganza. Quando qualcuno dice cose scomode ma vere, l\u2019unico modo per contestare quelle cose e attaccare sul carattere e sull\u2019arroganza. Sempre il solito film. Solidariet\u00e0 a Roberto Burioni. E grazie per la sua battaglia a favore dei vaccini.", "shared_text": "", "time": "2018-11-28 11:04:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/46942725_10156336827469915_842676749593477120_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=cHvOKy9tfrYAQnnAcarzq1lHXpB9Ymc70qq4dGdkx__UUhnalrQaCN-WQ&_nc_ht=scontent-cdt1-1.xx&oh=9c56c1f678d25df20d8cd870376d5e68&oe=5E8975FE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156336827504915&id=113335124914", "link": null} +{"post_id": "10156335703904915", "text": "Tra le mille FakeNews che mi vengono lanciate addosso quotidianamente c\u2019\u00e8 quella di: \u201cRenzi ha fatto lo scambio con l\u2019Europa prendendo i migranti in cambio della flessibilit\u00e0 e degli 80\u20ac.\u201d Si tratta di una\u2026 Altro bugia galattica che continua a essere rilanciata divenendo virale, ma che continua a essere una bugia. Stamattina Carlo Calenda - che \u00e8 stato protagonista di varie trattative europee, anche come ambasciatore a Bruxelles - ha spiegato la verit\u00e0 a due spacciatori di FakeNews, uno dei quali peraltro sta pure al Governo. Se avete cinque minuti cinque, ascoltate questo dibattito surreale. Vale la pena.", "post_text": "Tra le mille FakeNews che mi vengono lanciate addosso quotidianamente c\u2019\u00e8 quella di: \u201cRenzi ha fatto lo scambio con l\u2019Europa prendendo i migranti in cambio della flessibilit\u00e0 e degli 80\u20ac.\u201d Si tratta di una\u2026 Altro bugia galattica che continua a essere rilanciata divenendo virale, ma che continua a essere una bugia. Stamattina Carlo Calenda - che \u00e8 stato protagonista di varie trattative europee, anche come ambasciatore a Bruxelles - ha spiegato la verit\u00e0 a due spacciatori di FakeNews, uno dei quali peraltro sta pure al Governo. Se avete cinque minuti cinque, ascoltate questo dibattito surreale. Vale la pena.", "shared_text": "", "time": "2018-11-27 20:21:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=321967898637237&id=113335124914", "link": null} +{"post_id": "10156335303024915", "text": "Oggi in Aula al Senato per votare contro il Decreto Fiscale. Tra le cose pi\u00f9 sconvolgenti il regalo di 177 milioni di \u20ac a chi ha finanziato la campagna elettorale della Lega e di Salvini.\nPer gli interessati \u00e8 l\u2019articolo 8. Finito con i condoni, adesso iniziano con le marchette", "post_text": "Oggi in Aula al Senato per votare contro il Decreto Fiscale. Tra le cose pi\u00f9 sconvolgenti il regalo di 177 milioni di \u20ac a chi ha finanziato la campagna elettorale della Lega e di Salvini.\nPer gli interessati \u00e8 l\u2019articolo 8. Finito con i condoni, adesso iniziano con le marchette", "shared_text": "", "time": "2018-11-27 17:15:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/46979490_10156335302984915_4160248770518319104_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=2pktGVWirrAAQnGT_S1XjEa-NMwiuF_wkg1QLw84vVCmmMFOa8sLb5zkw&_nc_ht=scontent-cdt1-1.xx&oh=7735f5437564593355827285085bf5e5&oe=5E4DF393", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156335303024915&id=113335124914", "link": null} +{"post_id": "10156334534004915", "text": "Sull'azienda edile di Luigi Di Maio e sulle scelte di suo padre, ho gi\u00e0 detto tutto nel post scritto l'altra notte. Per me basta e avanza: adesso toccher\u00e0 al VicePremier venire in Parlamento e spiegare all'Aula ci\u00f2 che va chiarito.\nMa il ragionamento \u00e8 un altro. Non mi interessa sbirciare dal buco della serratura che cosa ha fatto Di Maio padre.\u2026 Altro Mi sconvolge pensare che Di Maio figlio ha voluto un Decreto Dignit\u00e0 prima e il Reddito di Cittadinanza poi che per definizione sono due misure che fanno aumentare la piaga del lavoro nero.\nBisogna rendere pi\u00f9 facili le assunzioni, non i licenziamenti come invece ha fatto il Decreto Dignit\u00e0.\nBisogna dare incentivi per assumere, come il JobsAct, non il reddito di cittadinanza.\nBisogna combattere chi evade, non rinviare le fatturazioni elettroniche.\nBisogna sanzionare chi fa gli abusi edilizi, non votare i condoni.\nNoi siamo contro il lavoro nero, contro l'evasione, contro gli abusi edilizi. L'imprenditore Di Maio non pu\u00f2 dire altrettanto. Ma il politico Di Maio da che parte sta?", "post_text": "Sull'azienda edile di Luigi Di Maio e sulle scelte di suo padre, ho gi\u00e0 detto tutto nel post scritto l'altra notte. Per me basta e avanza: adesso toccher\u00e0 al VicePremier venire in Parlamento e spiegare all'Aula ci\u00f2 che va chiarito.\nMa il ragionamento \u00e8 un altro. Non mi interessa sbirciare dal buco della serratura che cosa ha fatto Di Maio padre.\u2026 Altro Mi sconvolge pensare che Di Maio figlio ha voluto un Decreto Dignit\u00e0 prima e il Reddito di Cittadinanza poi che per definizione sono due misure che fanno aumentare la piaga del lavoro nero.\nBisogna rendere pi\u00f9 facili le assunzioni, non i licenziamenti come invece ha fatto il Decreto Dignit\u00e0.\nBisogna dare incentivi per assumere, come il JobsAct, non il reddito di cittadinanza.\nBisogna combattere chi evade, non rinviare le fatturazioni elettroniche.\nBisogna sanzionare chi fa gli abusi edilizi, non votare i condoni.\nNoi siamo contro il lavoro nero, contro l'evasione, contro gli abusi edilizi. L'imprenditore Di Maio non pu\u00f2 dire altrettanto. Ma il politico Di Maio da che parte sta?", "shared_text": "", "time": "2018-11-27 08:24:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156334534004915&id=113335124914", "link": null} +{"post_id": "10156333078274915", "text": "Io me li ricordo i leghisti degli anni Novanta.\nErano partiti inneggiando al dio Po, agitavano il cappio in Parlamento e gridavano \"Roma Ladrona\". Sembravano onesti, anche loro.\nOggi la sentenza di secondo grado conferma che l'unica Ladrona \u00e8 la Lega: hanno rubato 49 milioni di \u20ac e devono restituirli. Hanno comprato lauree in Albania, hanno\u2026 Altro portato diamanti in Tanzania, hanno nascosto i soldi chiss\u00e0 dove. Ma quei soldi erano pubblici, erano soldi dei contribuenti: ci rendiamo conto?\nE il signor Ministro Salvini che fa? Continua a parlare di gattini e Gattuso o finalmente ci spiega dove la LEGA LADRONA ha nascosto i soldi degli italiani?", "post_text": "Io me li ricordo i leghisti degli anni Novanta.\nErano partiti inneggiando al dio Po, agitavano il cappio in Parlamento e gridavano \"Roma Ladrona\". Sembravano onesti, anche loro.\nOggi la sentenza di secondo grado conferma che l'unica Ladrona \u00e8 la Lega: hanno rubato 49 milioni di \u20ac e devono restituirli. Hanno comprato lauree in Albania, hanno\u2026 Altro portato diamanti in Tanzania, hanno nascosto i soldi chiss\u00e0 dove. Ma quei soldi erano pubblici, erano soldi dei contribuenti: ci rendiamo conto?\nE il signor Ministro Salvini che fa? Continua a parlare di gattini e Gattuso o finalmente ci spiega dove la LEGA LADRONA ha nascosto i soldi degli italiani?", "shared_text": "", "time": "2018-11-26 19:01:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156333078274915&id=113335124914", "link": null} +{"post_id": "10156331611929915", "text": "Quando ho visto il servizio delle IENE sulla famiglia Di Maio mi sono imposto di non dire nulla. Di fare il signore, come sempre. Del resto non m'interessa sapere se il padre di Di Maio abbia dato lavoro in nero, evaso le tasse, condonato gli abusi edilizi.\nSono convinto che la presunta \"onest\u00e0\" dei Cinque Stelle sia una grande FakeNews, una\u2026 Altro bufala come dimostrano tante vicende personali, dall'evasore Beppe Grillo in gi\u00f9. Ma sono anche convinto che le colpe dei padri non debbano ricadere sui figli e questo lo dico da sempre, a differenza di Di Maio che se ne \u00e8 accorto adesso.\nMa qui, all'una di notte, non riesco a far finta di nulla.\nNon ce la faccio.\nRivedo il fango gettato addosso a\u2026 Altro", "post_text": "Quando ho visto il servizio delle IENE sulla famiglia Di Maio mi sono imposto di non dire nulla. Di fare il signore, come sempre. Del resto non m'interessa sapere se il padre di Di Maio abbia dato lavoro in nero, evaso le tasse, condonato gli abusi edilizi.\nSono convinto che la presunta \"onest\u00e0\" dei Cinque Stelle sia una grande FakeNews, una\u2026 Altro bufala come dimostrano tante vicende personali, dall'evasore Beppe Grillo in gi\u00f9. Ma sono anche convinto che le colpe dei padri non debbano ricadere sui figli e questo lo dico da sempre, a differenza di Di Maio che se ne \u00e8 accorto adesso.\nMa qui, all'una di notte, non riesco a far finta di nulla.\nNon ce la faccio.\nRivedo il fango gettato addosso a\u2026 Altro", "shared_text": "", "time": "2018-11-26 01:17:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156331611929915&id=113335124914", "link": null} +{"post_id": "10156330006859915", "text": "Ho fatto una chiacchierata con Barbara Jerkov del Messaggero. I loro danni e le nostre proposte sull\u2019economia. Ma anche Zagrebelsky, i bonus, la Raggi.\nMATTEORENZI.IT\nConte e Tria fanno danni. Fermatevi o gli italiani pagheranno un conto salato - Matteo Renzi", "post_text": "Ho fatto una chiacchierata con Barbara Jerkov del Messaggero. I loro danni e le nostre proposte sull\u2019economia. Ma anche Zagrebelsky, i bonus, la Raggi.", "shared_text": "MATTEORENZI.IT\nConte e Tria fanno danni. Fermatevi o gli italiani pagheranno un conto salato - Matteo Renzi", "time": "2018-11-25 11:04:37", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAa1LwpuwFMC2cT&w=476&h=249&url=https%3A%2F%2Fwww.matteorenzi.it%2Fwp-content%2Fuploads%2F2018%2F11%2Frenzi-firenze-assemblea.png&cfs=1&jq=75&ext=jpg&_nc_hash=AQCNQ5lnXQUYCFQq", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156330006859915&id=113335124914", "link": "https://www.matteorenzi.it/intervista-messaggero-conte-tria-fanno-danni-fermatevi-conto-salato/?fbclid=IwAR1sUI2IbeSh8UT5C0odKQPIgpQwJQCHsaIqv-uCDY_Me4wcuagCch7nGbs"} +{"post_id": "10156329858174915", "text": "Ho sempre immaginato il Cottolengo come il cuore sociale di Torino. Ma anche come simbolo di accoglienza e calore per l\u2019intera Italia. Quando sono diventato Presidente del Consiglio \u00e8 stato per me un onore\u2026 Altro varcare le porte di questa istituzione. Con don Andrea e tutti i suoi collaboratori sono nati molti progetti che, ne sono certo, proseguiranno anche con il nuovo Governo. Perch\u00e9 il Cottolengo \u00e8 per tutti, perch\u00e9 il Cottolengo \u00e8 di tutti. Non ha un colore politico ma \u00e8 un arcobaleno di speranza.\nConservo tra i ricordi pi\u00f9 belli i tanti abbracci con donne e uomini, con ragazze e ragazzi, con bambine e bambini, che mi hanno dedicato qualche preghiera e regalato il dono della loro amicizia.\u2026 Altro", "post_text": "Ho sempre immaginato il Cottolengo come il cuore sociale di Torino. Ma anche come simbolo di accoglienza e calore per l\u2019intera Italia. Quando sono diventato Presidente del Consiglio \u00e8 stato per me un onore\u2026 Altro varcare le porte di questa istituzione. Con don Andrea e tutti i suoi collaboratori sono nati molti progetti che, ne sono certo, proseguiranno anche con il nuovo Governo. Perch\u00e9 il Cottolengo \u00e8 per tutti, perch\u00e9 il Cottolengo \u00e8 di tutti. Non ha un colore politico ma \u00e8 un arcobaleno di speranza.\nConservo tra i ricordi pi\u00f9 belli i tanti abbracci con donne e uomini, con ragazze e ragazzi, con bambine e bambini, che mi hanno dedicato qualche preghiera e regalato il dono della loro amicizia.\u2026 Altro", "shared_text": "", "time": "2018-11-25 09:01:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/46524042_10156329858024915_6316197601490239488_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=QTiyKMRd0soAQm7ASQofM7LqMfJyTLPGCTETFiR26rn75JFJASJQlFOSw&_nc_ht=scontent-cdt1-1.xx&oh=c9fc8f15cd0e5d0997640f895af3ca54&oe=5E848976", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156329858174915&id=113335124914", "link": null} +{"post_id": "10156328377939915", "text": "L\u2019ultima #FakeNews: la colpa dello spread \u00e8 di Renzi e Gentiloni e non di Salvini-DiMaio. Bastano questi 120 secondi con il professor Fortis alla #Leopolda per smentire (fate girare questo video contro le FakeNews). Con noi sono aumentati i posti di lavoro, con loro solo lo #spread.", "post_text": "L\u2019ultima #FakeNews: la colpa dello spread \u00e8 di Renzi e Gentiloni e non di Salvini-DiMaio. Bastano questi 120 secondi con il professor Fortis alla #Leopolda per smentire (fate girare questo video contro le FakeNews). Con noi sono aumentati i posti di lavoro, con loro solo lo #spread.", "shared_text": "", "time": "2018-11-24 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=586200958501523&id=113335124914", "link": null} +{"post_id": "10156327445394915", "text": "Vi ricordate quante polemiche contro di me per i Bonus?\nQuando ero premier, Lega e Cinque Stelle mi attaccavano dicendo che le mie misure non servivano all'Italia, ma erano solo Bonus Elettorali.\nBene, il tempo \u00e8 galantuomo. Sono arrivati loro e:\n- Bonus 80\u20ac: confermato.\n- Bonus Beb\u00e8: cancellato e poi (parzialmente) reintrodotto\n- Bonus 18enni:\u2026 Altro contestato e poi confermato.\n- Bonus 500\u20ac professori: confermato\nLa verit\u00e0 \u00e8 che anche i pentaleghisti sono costretti ad ammettere che quelle misure erano utili. Al punto che le confermano anche loro. Ma come? Tutto questo odio contro il mio Governo e poi confermate le nostre misure?\nCi hanno rovesciato quintali di fango addosso e poi provano a copiarci. Gi\u00e0 che ci siete, allora, copiate bene. Alla Leopolda vi abbiamo lanciato una proposta di legge di Bilancio che dimezza lo spread e abbassa le tasse. Lavoratori e famiglie rischiano di pagare gli errori di Salvini e Di Maio. Ci avete copiato i Bonus, copiateci anche la legge di Bilancio e rimettiamo a posto lo spread. Via i condoni, via i redditi di cittadinanza: salviamo l'Italia.", "post_text": "Vi ricordate quante polemiche contro di me per i Bonus?\nQuando ero premier, Lega e Cinque Stelle mi attaccavano dicendo che le mie misure non servivano all'Italia, ma erano solo Bonus Elettorali.\nBene, il tempo \u00e8 galantuomo. Sono arrivati loro e:\n- Bonus 80\u20ac: confermato.\n- Bonus Beb\u00e8: cancellato e poi (parzialmente) reintrodotto\n- Bonus 18enni:\u2026 Altro contestato e poi confermato.\n- Bonus 500\u20ac professori: confermato\nLa verit\u00e0 \u00e8 che anche i pentaleghisti sono costretti ad ammettere che quelle misure erano utili. Al punto che le confermano anche loro. Ma come? Tutto questo odio contro il mio Governo e poi confermate le nostre misure?\nCi hanno rovesciato quintali di fango addosso e poi provano a copiarci. Gi\u00e0 che ci siete, allora, copiate bene. Alla Leopolda vi abbiamo lanciato una proposta di legge di Bilancio che dimezza lo spread e abbassa le tasse. Lavoratori e famiglie rischiano di pagare gli errori di Salvini e Di Maio. Ci avete copiato i Bonus, copiateci anche la legge di Bilancio e rimettiamo a posto lo spread. Via i condoni, via i redditi di cittadinanza: salviamo l'Italia.", "shared_text": "", "time": "2018-11-24 09:21:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156327445394915&id=113335124914", "link": null} +{"post_id": "10156325901614915", "text": "Mobilitarsi serve. In 24 ore qualcosa come DIECIMILA ragazzi nati nel 2000 hanno risposto al nostro appello firmando la petizione per sbloccare la 18App (il c.d. bonus Renzi per i diciottenni). Il Ministro ha finalmente firmato. Siamo al 23 novembre, ma MEGLIO TARDI CHE MAI!\nOggi voglio dire grazie a chi ha tenuto l'attenzione su questi temi ma\u2026 Altro chiedo di continuare perch\u00e9 NON ci siano tagli sulla 18App per il prossimo anno, per i ragazzi del 2001. Abbiamo vinto una battaglia importante, adesso siamo al lavoro per evitare che nel silenzio dei ragazzi il Governo cancelli questa misura.\nA tutti i ragazzi del 2000 un invito: spendete bene questi 500\u20ac. Abbiamo voluto la 18App per dare un segnale: sulla cultura non si taglia, con la cultura si costruisce cittadinanza. Un ragazzo che entra in libreria, a teatro, in un museo compie un gesto rivoluzionario: si entra nell'et\u00e0 della cittadinanza piena, attiva, adulta partendo dai valori della nostra cultura. Altro che: \"Con la cultura non si mangia\".", "post_text": "Mobilitarsi serve. In 24 ore qualcosa come DIECIMILA ragazzi nati nel 2000 hanno risposto al nostro appello firmando la petizione per sbloccare la 18App (il c.d. bonus Renzi per i diciottenni). Il Ministro ha finalmente firmato. Siamo al 23 novembre, ma MEGLIO TARDI CHE MAI!\nOggi voglio dire grazie a chi ha tenuto l'attenzione su questi temi ma\u2026 Altro chiedo di continuare perch\u00e9 NON ci siano tagli sulla 18App per il prossimo anno, per i ragazzi del 2001. Abbiamo vinto una battaglia importante, adesso siamo al lavoro per evitare che nel silenzio dei ragazzi il Governo cancelli questa misura.\nA tutti i ragazzi del 2000 un invito: spendete bene questi 500\u20ac. Abbiamo voluto la 18App per dare un segnale: sulla cultura non si taglia, con la cultura si costruisce cittadinanza. Un ragazzo che entra in libreria, a teatro, in un museo compie un gesto rivoluzionario: si entra nell'et\u00e0 della cittadinanza piena, attiva, adulta partendo dai valori della nostra cultura. Altro che: \"Con la cultura non si mangia\".", "shared_text": "", "time": "2018-11-23 18:15:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156325901614915&id=113335124914", "link": null} +{"post_id": "10156325352369915", "text": "Adesso che \u00e8 ufficiale possiamo dirlo: dal 15 dicembre il documentario \"Firenze secondo me\" andr\u00e0 in onda per quattro settimane, sempre il sabato sera, dalle 21, sulla Nove. Sono molto felice. Grazie a Lucio Presta e a tutta la sua straordinaria squadra che ha lavorato per mesi sotto il sole di Firenze. E grazie a Discovery che metter\u00e0 in onda in\u2026 Altro Italia sulla Nove quello che per me era un sogno e adesso \u00e8 diventato realt\u00e0.\nS\u00ec, un sogno. Ho sempre pensato che Firenze fosse speciale, capace di tenere insieme la politica e la bellezza, gli scontri e i capolavori, l'innovazione e la poesia, il passato e il futuro. Studiare, vivere, raccontare Firenze ti aiuta a vivere meglio.\nE in tempi come questi, quando la barbarie attacca la cultura, investire su un progetto educativo per Firenze \u00e8 una sfida affascinante e difficile.\nLa bellezza salver\u00e0 il mondo, io ci credo davvero.", "post_text": "Adesso che \u00e8 ufficiale possiamo dirlo: dal 15 dicembre il documentario \"Firenze secondo me\" andr\u00e0 in onda per quattro settimane, sempre il sabato sera, dalle 21, sulla Nove. Sono molto felice. Grazie a Lucio Presta e a tutta la sua straordinaria squadra che ha lavorato per mesi sotto il sole di Firenze. E grazie a Discovery che metter\u00e0 in onda in\u2026 Altro Italia sulla Nove quello che per me era un sogno e adesso \u00e8 diventato realt\u00e0.\nS\u00ec, un sogno. Ho sempre pensato che Firenze fosse speciale, capace di tenere insieme la politica e la bellezza, gli scontri e i capolavori, l'innovazione e la poesia, il passato e il futuro. Studiare, vivere, raccontare Firenze ti aiuta a vivere meglio.\nE in tempi come questi, quando la barbarie attacca la cultura, investire su un progetto educativo per Firenze \u00e8 una sfida affascinante e difficile.\nLa bellezza salver\u00e0 il mondo, io ci credo davvero.", "shared_text": "", "time": "2018-11-23 14:23:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156325352369915&id=113335124914", "link": null} +{"post_id": "10156324801379915", "text": "Non si pu\u00f2 solo criticare, bisogna anche fare controproposte. Ho detto che per me la legge di bilancio \u00e8 stupida perch\u00e9 fa male all\u2019Italia e agli italiani. Ma dal palco della Leopolda insieme a Pier Carlo\u2026 Altro Padoan abbiamo anche provato a rilanciare, offrendo un\u2019alternativa. I media non ne hanno praticamente parlato: per chi vuole riflettere, ragionare, discutere qui ci sono due minuti di video in cui illustriamo a grandi linee la manovra alternativa. Perch\u00e9 noi siamo stati al Governo, abbiamo ridotto lo spread e fatto crescere l\u2019occupazione, riducendo per la prima volta da anni il rapporto deficit PIL. E quindi non possiamo solo criticare. Ma chi oggi ci governa sapr\u00e0 ascoltare?", "post_text": "Non si pu\u00f2 solo criticare, bisogna anche fare controproposte. Ho detto che per me la legge di bilancio \u00e8 stupida perch\u00e9 fa male all\u2019Italia e agli italiani. Ma dal palco della Leopolda insieme a Pier Carlo\u2026 Altro Padoan abbiamo anche provato a rilanciare, offrendo un\u2019alternativa. I media non ne hanno praticamente parlato: per chi vuole riflettere, ragionare, discutere qui ci sono due minuti di video in cui illustriamo a grandi linee la manovra alternativa. Perch\u00e9 noi siamo stati al Governo, abbiamo ridotto lo spread e fatto crescere l\u2019occupazione, riducendo per la prima volta da anni il rapporto deficit PIL. E quindi non possiamo solo criticare. Ma chi oggi ci governa sapr\u00e0 ascoltare?", "shared_text": "", "time": "2018-11-22 23:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=567813490313741&id=113335124914", "link": null} +{"post_id": "10156323506744915", "text": "Da due giorni sulla pagina Facebook di Salvini si possono condividere tenere immagini di gattini. Si tratta di una strategia studiata dal team del Ministro dell'Interno: proprio quando l'Italia sta andando a sbattere contro il muro, l'obiettivo \u00e8 mostrare il capo della Lega molto umano. Tutto scientificamente costruito a tavolino, spero non con\u2026 Altro soldi pubblici.\nMa qui il problema non \u00e8 pi\u00f9 se a Salvini piacciono i gattini. Il problema \u00e8 che la legge di Bilancio pi\u00f9 stupida mai fatta da un Governo italiano sta facendo danni reali all'economia italiana, alle aziende, alle famiglie. E col Decreto Dignit\u00e0 ci sono i primi licenziamenti altro che assunzioni.\nTra un gattino e una lettera a Babbo\u2026 Altro", "post_text": "Da due giorni sulla pagina Facebook di Salvini si possono condividere tenere immagini di gattini. Si tratta di una strategia studiata dal team del Ministro dell'Interno: proprio quando l'Italia sta andando a sbattere contro il muro, l'obiettivo \u00e8 mostrare il capo della Lega molto umano. Tutto scientificamente costruito a tavolino, spero non con\u2026 Altro soldi pubblici.\nMa qui il problema non \u00e8 pi\u00f9 se a Salvini piacciono i gattini. Il problema \u00e8 che la legge di Bilancio pi\u00f9 stupida mai fatta da un Governo italiano sta facendo danni reali all'economia italiana, alle aziende, alle famiglie. E col Decreto Dignit\u00e0 ci sono i primi licenziamenti altro che assunzioni.\nTra un gattino e una lettera a Babbo\u2026 Altro", "shared_text": "", "time": "2018-11-22 19:33:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156323506744915&id=113335124914", "link": null} +{"post_id": "10156323115399915", "text": "Quando ero Premier, ho voluto una piccola norma per i diciottenni: 500\u20ac da spendere (meglio: investire) in cultura. Quando un diciottenne compra un libro o va a teatro o entra in un museo io mi sento orgoglioso\u2026 Altro di essere italiano. Salvini e Di Maio hanno bloccato il #bonusRenzi per i diciottenni nati nel 2000 e lo vogliono cancellare per quelli nati nel 2001.\nFacciamoci sentire per sbloccare i fondi prima di dicembre e per evitare che li taglino per il prossimo anno.\nNon \u00e8 giusto tagliare sempre sulla cultura, non \u00e8 giusto tagliare sempre sui pi\u00f9 giovani.", "post_text": "Quando ero Premier, ho voluto una piccola norma per i diciottenni: 500\u20ac da spendere (meglio: investire) in cultura. Quando un diciottenne compra un libro o va a teatro o entra in un museo io mi sento orgoglioso\u2026 Altro di essere italiano. Salvini e Di Maio hanno bloccato il #bonusRenzi per i diciottenni nati nel 2000 e lo vogliono cancellare per quelli nati nel 2001.\nFacciamoci sentire per sbloccare i fondi prima di dicembre e per evitare che li taglino per il prossimo anno.\nNon \u00e8 giusto tagliare sempre sulla cultura, non \u00e8 giusto tagliare sempre sui pi\u00f9 giovani.", "shared_text": "", "time": "2018-11-22 16:33:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/46507194_10156323115079915_2644151595935203328_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=fHX75OMK950AQn53ZTd8nzH-fEc-g8vju4x8fM6_mPRe4vSfAvTVVzJdw&_nc_ht=scontent-cdt1-1.xx&oh=ede77084aa02713e9b35e8ad1fbbb128&oe=5E7ECA3C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156323115399915&id=113335124914", "link": null} +{"post_id": "10156322977494915", "text": "Salvini e Di Maio hanno fatto una legge di bilancio sbagliata. Dovevano abolire la povert\u00e0 per decreto e hanno solo tagliato i fondi per la scuola, per il bonus beb\u00e8, per le infrastrutture. Dovevano aumentare i posti di lavoro e grazie al Decreto Dignit\u00e0 ci sono pi\u00f9 licenziamenti e si \u00e8 alzato solo lo spread. Dovevano promuovere l\u2019onest\u00e0 e hanno\u2026 Altro approvato i condoni. E a questo punto che fanno? Danno la colpa a Renzi e Gentiloni. Con noi lo spread era a 100, con loro a 300. Con noi il PIL era positivo, con loro si \u00e8 fermato. Ormai siamo oltre il ridicolo: non riescono mai ad assumersi una responsabilit\u00e0 che sia una. Hanno fatto una legge di bilancio stupida, che va contro l\u2019interesse degli italiani, e danno a noi la colpa del loro fallimento? Ma pensano davvero che tutti gli italiani possano credere alla loro squallida propaganda? Bisogna reagire, amici. Colpo su colpo. Senza paura.", "post_text": "Salvini e Di Maio hanno fatto una legge di bilancio sbagliata. Dovevano abolire la povert\u00e0 per decreto e hanno solo tagliato i fondi per la scuola, per il bonus beb\u00e8, per le infrastrutture. Dovevano aumentare i posti di lavoro e grazie al Decreto Dignit\u00e0 ci sono pi\u00f9 licenziamenti e si \u00e8 alzato solo lo spread. Dovevano promuovere l\u2019onest\u00e0 e hanno\u2026 Altro approvato i condoni. E a questo punto che fanno? Danno la colpa a Renzi e Gentiloni. Con noi lo spread era a 100, con loro a 300. Con noi il PIL era positivo, con loro si \u00e8 fermato. Ormai siamo oltre il ridicolo: non riescono mai ad assumersi una responsabilit\u00e0 che sia una. Hanno fatto una legge di bilancio stupida, che va contro l\u2019interesse degli italiani, e danno a noi la colpa del loro fallimento? Ma pensano davvero che tutti gli italiani possano credere alla loro squallida propaganda? Bisogna reagire, amici. Colpo su colpo. Senza paura.", "shared_text": "", "time": "2018-11-22 15:17:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156322977494915&id=113335124914", "link": null} +{"post_id": "10156322738284915", "text": "Stamattina sono stato a Scandicci, nel cuore del collegio che mi ha eletto. Insieme al bravo sindaco Sandro Fallani abbiamo preparato alcuni emendamenti alla legge di bilancio su infrastrutture, scuole,\u2026 Altro periferie. Tutte cose che la stupida manovra Salvini-Di Maio sta purtroppo tagliando. Ma ne ho approfittato per un caff\u00e8 in piazza e una chiacchiera con un po\u2019 di cittadini incontrati in piazza: tanta preoccupazione per i risparmi ma anche molta voglia di reagire. Noi non molliamo amici, l\u2019Italia \u00e8 pi\u00f9 forte dei cialtroni che la governano.", "post_text": "Stamattina sono stato a Scandicci, nel cuore del collegio che mi ha eletto. Insieme al bravo sindaco Sandro Fallani abbiamo preparato alcuni emendamenti alla legge di bilancio su infrastrutture, scuole,\u2026 Altro periferie. Tutte cose che la stupida manovra Salvini-Di Maio sta purtroppo tagliando. Ma ne ho approfittato per un caff\u00e8 in piazza e una chiacchiera con un po\u2019 di cittadini incontrati in piazza: tanta preoccupazione per i risparmi ma anche molta voglia di reagire. Noi non molliamo amici, l\u2019Italia \u00e8 pi\u00f9 forte dei cialtroni che la governano.", "shared_text": "", "time": "2018-11-22 12:42:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/46520023_10156322738134915_5892187585236697088_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=-tAHGuCjgtYAQkXsVeDPQ3RPstJCcQ_9QHcnlFXK3xPIw6eM1aOc0t4Tw&_nc_ht=scontent-cdt1-1.xx&oh=3f35d7d8dcbf7028cd8b6b3856c1e6d2&oe=5E4FF49B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156322738284915&id=113335124914", "link": null} +{"post_id": "10156320033609915", "text": "Salvini e Di Maio stanno mettendo a rischio i soldi degli italiani. Sono due irresponsabili che pensano di ottenere pi\u00f9 consenso sfasciando i conti. La bocciatura europea e dei mercati \u00e8 un fatto molto grave. E questo Governo si conferma il miglior amico degli speculatori che stanno facendo soldi contro l'Italia.\nMi appello al Presidente del\u2026 Altro Consiglio e al Ministro dell'Economia: FERMATEVI! Abbassate il deficit, aprite un dialogo con la Commissione, cambiate le misure.\nNoi abbiamo formulato con Padoan una controproposta che dimezzerebbe lo spread (che oggi \u00e8 oltre 300 e che il nostro Governo aveva portato sotto quota 100) e abbasserebbe le tasse.\nSiamo pronti a collaborare per aiutare l'Italia e gli italiani. Ma voi fermatevi perch\u00e9 altrimenti il prezzo della vostra follia sar\u00e0 pagato caro dai cittadini.", "post_text": "Salvini e Di Maio stanno mettendo a rischio i soldi degli italiani. Sono due irresponsabili che pensano di ottenere pi\u00f9 consenso sfasciando i conti. La bocciatura europea e dei mercati \u00e8 un fatto molto grave. E questo Governo si conferma il miglior amico degli speculatori che stanno facendo soldi contro l'Italia.\nMi appello al Presidente del\u2026 Altro Consiglio e al Ministro dell'Economia: FERMATEVI! Abbassate il deficit, aprite un dialogo con la Commissione, cambiate le misure.\nNoi abbiamo formulato con Padoan una controproposta che dimezzerebbe lo spread (che oggi \u00e8 oltre 300 e che il nostro Governo aveva portato sotto quota 100) e abbasserebbe le tasse.\nSiamo pronti a collaborare per aiutare l'Italia e gli italiani. Ma voi fermatevi perch\u00e9 altrimenti il prezzo della vostra follia sar\u00e0 pagato caro dai cittadini.", "shared_text": "", "time": "2018-11-21 12:25:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156320033609915&id=113335124914", "link": null} +{"post_id": "323258285166528", "text": "In diretta dal Senato la top ten della settimana", "post_text": "In diretta dal Senato la top ten della settimana", "shared_text": "", "time": "2018-11-21 11:37:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=323258285166528&id=113335124914", "link": null} +{"post_id": "10156319876634915", "text": "Ho fatto una lunga chiacchierata con Claudio Cerasa, direttore del Foglio. Abbiamo parlato di spread, crisi economica, futuro. Delle balle spaziali raccontate da Salvini in campagna elettorale e del flop a\u2026 Altro cinque stelle. Ma anche delle proposte da fare perch\u00e9 non basta criticare. E concludo con uno sguardo pieno di ottimismo perch\u00e9 io continuo a credere nel futuro dell\u2019Italia. Il nostro Paese \u00e8 pi\u00f9 grande delle piccole guerriglie quotidiane di questo Governo. Chi ha voglia (e tempo) per leggerla, mi lascia un commento? Astenersi troll, ormai vi riconosciamo al volo.\nNoi ci vediamo alle 11.30 per la #TopTen della settimana.\nILFOGLIO.IT\nRenzi: \u201cI populisti mandano l\u2019Italia a gambe all\u2019aria. E\u2019 ora di un\u2019alternativa\u201d", "post_text": "Ho fatto una lunga chiacchierata con Claudio Cerasa, direttore del Foglio. Abbiamo parlato di spread, crisi economica, futuro. Delle balle spaziali raccontate da Salvini in campagna elettorale e del flop a\u2026 Altro cinque stelle. Ma anche delle proposte da fare perch\u00e9 non basta criticare. E concludo con uno sguardo pieno di ottimismo perch\u00e9 io continuo a credere nel futuro dell\u2019Italia. Il nostro Paese \u00e8 pi\u00f9 grande delle piccole guerriglie quotidiane di questo Governo. Chi ha voglia (e tempo) per leggerla, mi lascia un commento? Astenersi troll, ormai vi riconosciamo al volo.\nNoi ci vediamo alle 11.30 per la #TopTen della settimana.", "shared_text": "ILFOGLIO.IT\nRenzi: \u201cI populisti mandano l\u2019Italia a gambe all\u2019aria. E\u2019 ora di un\u2019alternativa\u201d", "time": "2018-11-21 10:16:07", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?w=476&h=249&url=https%3A%2F%2Fwww.ilfoglio.it%2Fresizer%2F600%2F315%2Ftrue%2F1542744224566_1542744242.jpg--renzi___i_populisti_mandano_l_italia_agambe_all_aria__e__ora_di_un_alternativa_.jpg%3F1542744242000&cfs=1&jq=75&sx=0&sy=0&sw=600&sh=314&ext=jpg&_nc_hash=AQDHVs2pdKA6aSzk", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156319876634915&id=113335124914", "link": "https://www.ilfoglio.it/politica/2018/11/21/news/pd-opposizione-intervista-matteo-renzi-225489/?fbclid=IwAR0Gn4Q_AV9-3Fn2uTq-_XaP-RFP-EYH13f2VU6EH4PD8BWR2-CJZgmbUeI"} +{"post_id": "10156319763379915", "text": "Guardate questa storia oggi sul Corriere: un capodoglio spiaggiato in Indonesia e letteralmente pieno di plastica. Pensate: 1.100 pezzi di plastica, oltre sei chili di bottiglie, sacchetti, infradito.\nI nostri\u2026 Altro mari sono talmente pieni di plastica che se non ci muoviamo nel 2050 in mare ci sar\u00e0 pi\u00f9 plastica che pesci. E l\u2019allarme lo ha lanciato il World Economic Forum di Davos, non propriamente un\u2019associazione ambientalista.\nDobbiamo tutti insieme lottare contro la plastica, investire sull\u2019innovazione e la ricerca - che producono posti di lavoro e salvano il pianeta - e sconfiggere l\u2019inquinamento delle fake news. Ricordate quanto ci hanno attaccato, tanto per cambiare, sulla storia dei\u2026 Altro", "post_text": "Guardate questa storia oggi sul Corriere: un capodoglio spiaggiato in Indonesia e letteralmente pieno di plastica. Pensate: 1.100 pezzi di plastica, oltre sei chili di bottiglie, sacchetti, infradito.\nI nostri\u2026 Altro mari sono talmente pieni di plastica che se non ci muoviamo nel 2050 in mare ci sar\u00e0 pi\u00f9 plastica che pesci. E l\u2019allarme lo ha lanciato il World Economic Forum di Davos, non propriamente un\u2019associazione ambientalista.\nDobbiamo tutti insieme lottare contro la plastica, investire sull\u2019innovazione e la ricerca - che producono posti di lavoro e salvano il pianeta - e sconfiggere l\u2019inquinamento delle fake news. Ricordate quanto ci hanno attaccato, tanto per cambiare, sulla storia dei\u2026 Altro", "shared_text": "", "time": "2018-11-21 08:59:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/46495333_10156319763354915_8329334457722994688_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=0lBaOhN0v88AQlBZ9gkwc3z1NMXSR5PlWqpJAsGMNuqVK7ktojM-F6Gtg&_nc_ht=scontent-cdt1-1.xx&oh=da25d4478680287207b5d2e21138efc6&oe=5E8CF8BA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156319763379915&id=113335124914", "link": null} +{"post_id": "10156318823089915", "text": "Ho criticato spesso il sindaco di Roma Virginia Raggi per la mancanza di pulizia, per la qualit\u00e0 del manto stradale o per il servizio scadente degli autobus. Oggi sono felice di dare atto al sindaco e a tutta l\u2019Amministrazione che l\u2019operazione contro i Casamonica \u00e8 davvero un\u2019ottima cosa per Roma, per la legalit\u00e0, per l\u2019Italia. La seriet\u00e0 del\u2026 Altro confronto politico passa anche dal riconoscere i risultati degli avversari: con noi non lo hanno mai fatto ma anche su questo siamo diversi. Complimenti Sindaco. Sulla strada della legalit\u00e0 saremo sempre compagni di viaggio.", "post_text": "Ho criticato spesso il sindaco di Roma Virginia Raggi per la mancanza di pulizia, per la qualit\u00e0 del manto stradale o per il servizio scadente degli autobus. Oggi sono felice di dare atto al sindaco e a tutta l\u2019Amministrazione che l\u2019operazione contro i Casamonica \u00e8 davvero un\u2019ottima cosa per Roma, per la legalit\u00e0, per l\u2019Italia. La seriet\u00e0 del\u2026 Altro confronto politico passa anche dal riconoscere i risultati degli avversari: con noi non lo hanno mai fatto ma anche su questo siamo diversi. Complimenti Sindaco. Sulla strada della legalit\u00e0 saremo sempre compagni di viaggio.", "shared_text": "", "time": "2018-11-20 19:44:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156318823089915&id=113335124914", "link": null} +{"post_id": "10156318269654915", "text": "Sapete da cosa capisco che il clima sta cambiando?\nDalle risposte che danno i profili finti, i troll di Lega e Cinque Stelle. Prima per ogni argomento contestavano il nostro operato, ora si limitano a insultare e chiedere di sparire.\nFateci caso, amici.\nDa quando Travaglio \u00e8 stato condannato due volte, nessuno ci attacca sui finti scandali.\nDa\u2026 Altro quando lo spread vola oltre 300, nessuno mette pi\u00f9 in discussione i risultati economici del nostro governo.\nDa quando i grillini hanno votato il condono edilizio, nessuno parla pi\u00f9 di onest\u00e0 e di ambiente.\nAl massimo ti dicono: Sparisci, Ritirati, Hai perso il referendum, Non parlare, Vattene.\nSu questo ancora non vediamo passi in avanti. Perch\u00e9 il\u2026 Altro", "post_text": "Sapete da cosa capisco che il clima sta cambiando?\nDalle risposte che danno i profili finti, i troll di Lega e Cinque Stelle. Prima per ogni argomento contestavano il nostro operato, ora si limitano a insultare e chiedere di sparire.\nFateci caso, amici.\nDa quando Travaglio \u00e8 stato condannato due volte, nessuno ci attacca sui finti scandali.\nDa\u2026 Altro quando lo spread vola oltre 300, nessuno mette pi\u00f9 in discussione i risultati economici del nostro governo.\nDa quando i grillini hanno votato il condono edilizio, nessuno parla pi\u00f9 di onest\u00e0 e di ambiente.\nAl massimo ti dicono: Sparisci, Ritirati, Hai perso il referendum, Non parlare, Vattene.\nSu questo ancora non vediamo passi in avanti. Perch\u00e9 il\u2026 Altro", "shared_text": "", "time": "2018-11-20 11:24:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156318269654915&id=113335124914", "link": null} +{"post_id": "10156318114514915", "text": "Salvini e Di Maio hanno scelto una linea di politica economica suicida per l'Italia. E i mercati stanno presentando il conto, ma lo paghiamo noi cittadini.\nLo Spread a 320 significa che il prossimo anno avremo 6 miliardi di euro in pi\u00f9 di interessi sul debito: tre volte il Canone Rai, due volte l'Imu sulla prima casa, quanto la cifra aggiuntiva\u2026 Altro stanziata per il finto reddito di cittadinanza. Lo spread cos\u00ec alto far\u00e0 danno alle famiglie, alle imprese, ai risparmiatori delle banche, agli artigiani.\nRicordate le polemiche sulle quattro banche fallite? Allora i soldi persi coi subordinati dai risparmiatori furono 300 milioni di euro. Da quando \u00e8 in carica questo governo i risparmiatori hanno\u2026 Altro", "post_text": "Salvini e Di Maio hanno scelto una linea di politica economica suicida per l'Italia. E i mercati stanno presentando il conto, ma lo paghiamo noi cittadini.\nLo Spread a 320 significa che il prossimo anno avremo 6 miliardi di euro in pi\u00f9 di interessi sul debito: tre volte il Canone Rai, due volte l'Imu sulla prima casa, quanto la cifra aggiuntiva\u2026 Altro stanziata per il finto reddito di cittadinanza. Lo spread cos\u00ec alto far\u00e0 danno alle famiglie, alle imprese, ai risparmiatori delle banche, agli artigiani.\nRicordate le polemiche sulle quattro banche fallite? Allora i soldi persi coi subordinati dai risparmiatori furono 300 milioni di euro. Da quando \u00e8 in carica questo governo i risparmiatori hanno\u2026 Altro", "shared_text": "", "time": "2018-11-20 09:24:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156318114514915&id=113335124914", "link": null} +{"post_id": "10156315772549915", "text": "Dice Di Maio che gli impianti per i rifiuti sono \"vintage\". Certo: non facciamo niente, neanche un impianto di compostaggio! Diciamo NO a tutto, \u00e8 cos\u00ec bello e facile dire NO.\nPer Di Maio la modernit\u00e0, l'innovazione, il futuro sono i rifiuti che vengono portati in Germania, ovviamente su gomma, perch\u00e9 le infrastrutture ferroviarie vanno bloccate.\u2026 Altro\nPer Di Maio la modernit\u00e0, l'innovazione, il futuro sono i condoni edilizi come quello approvato per Ischia, sono le norme per aumentare i fanghi nei terreni agricoli, sono le chiusure domenicali, sono i sussidi per chi sta a casa mentre si tagliano gli incentivi a chi crea lavoro.\nI cinque stelle giocano a fare gli ambientalisti ma non si rendono conto che saranno per sempre quelli dei condoni e del fango, in agricoltura e sulla rete.", "post_text": "Dice Di Maio che gli impianti per i rifiuti sono \"vintage\". Certo: non facciamo niente, neanche un impianto di compostaggio! Diciamo NO a tutto, \u00e8 cos\u00ec bello e facile dire NO.\nPer Di Maio la modernit\u00e0, l'innovazione, il futuro sono i rifiuti che vengono portati in Germania, ovviamente su gomma, perch\u00e9 le infrastrutture ferroviarie vanno bloccate.\u2026 Altro\nPer Di Maio la modernit\u00e0, l'innovazione, il futuro sono i condoni edilizi come quello approvato per Ischia, sono le norme per aumentare i fanghi nei terreni agricoli, sono le chiusure domenicali, sono i sussidi per chi sta a casa mentre si tagliano gli incentivi a chi crea lavoro.\nI cinque stelle giocano a fare gli ambientalisti ma non si rendono conto che saranno per sempre quelli dei condoni e del fango, in agricoltura e sulla rete.", "shared_text": "", "time": "2018-11-19 10:10:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156315772549915&id=113335124914", "link": null} +{"post_id": "10156313753329915", "text": "Ultimo post prima di lasciarvi al pranzo domenicale. Tanti di voi mi scrivono: Matteo, dobbiamo anche dire che cosa pensiamo noi. Non basta dire male del Governo, diciamo le nostre proposte. Giusto. Vi prendo\u2026 Altro in parola. Oggi sui giornali c\u2019\u00e8 la notizia della presentazione da parte di Autostrade di un progetto per Genova, che sarebbe pronto in nove mesi. Il Governo non vuole dare il via libera a Autostrade: Toninelli, Di Maio e Conte hanno le idee bislacche che sentite in questi 120 secondi di video qui sotto. Bene, io la dico chiara. Per me il ponte deve rifarlo di corsa Autostrade, pagando il ponte e i danni fino all\u2019ultimo centesimo. Deve farlo subito Autostrade: ogni giorno di ritardo \u00e8 uno schiaffo ulteriore e ingiusto per Genova e per i genovesi", "post_text": "Ultimo post prima di lasciarvi al pranzo domenicale. Tanti di voi mi scrivono: Matteo, dobbiamo anche dire che cosa pensiamo noi. Non basta dire male del Governo, diciamo le nostre proposte. Giusto. Vi prendo\u2026 Altro in parola. Oggi sui giornali c\u2019\u00e8 la notizia della presentazione da parte di Autostrade di un progetto per Genova, che sarebbe pronto in nove mesi. Il Governo non vuole dare il via libera a Autostrade: Toninelli, Di Maio e Conte hanno le idee bislacche che sentite in questi 120 secondi di video qui sotto. Bene, io la dico chiara. Per me il ponte deve rifarlo di corsa Autostrade, pagando il ponte e i danni fino all\u2019ultimo centesimo. Deve farlo subito Autostrade: ogni giorno di ritardo \u00e8 uno schiaffo ulteriore e ingiusto per Genova e per i genovesi", "shared_text": "", "time": "2018-11-18 12:24:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1202763006556937&id=113335124914", "link": null} +{"post_id": "10156313676124915", "text": "E adesso che i trolls si sono sbizzarriti sulle chiusure domenicali, possiamo passare a parlare di cose pi\u00f9 leggere: oggi Topolino compie 90 anni! Ho sempre preferito Pippo e Paperino. Ma per la mia generazione comunque Topolino \u00e8 una pietra miliare. Buon compleanno!", "post_text": "E adesso che i trolls si sono sbizzarriti sulle chiusure domenicali, possiamo passare a parlare di cose pi\u00f9 leggere: oggi Topolino compie 90 anni! Ho sempre preferito Pippo e Paperino. Ma per la mia generazione comunque Topolino \u00e8 una pietra miliare. Buon compleanno!", "shared_text": "", "time": "2018-11-18 11:27:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/46447684_10156313675529915_7983657429403435008_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=fSi4mZN0R6IAQksnIhIK0sGP_pcGd5B_7T8tDy6u-CTHFWrrxxBp2okRw&_nc_ht=scontent-cdt1-1.xx&oh=6d61e293341bc1e85411eac865d68119&oe=5E8A7B35", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156313676124915&id=113335124914", "link": null} +{"post_id": "10156313592449915", "text": "Mi allarga il cuore passeggiare la domenica mattina nella bellezza senza fine di Firenze. E come sempre, fin dagli anni in cui ero Sindaco, mi sono fermato a chiacchierare con chi lavora: commessi, camerieri, baristi. Molti di loro sono terrorizzati dall'ipotesi delle chiusure domenicali.\nVoi direte: \u201cbasta, Matteo, \u00e8 solo un'ipotesi. Di Maio ha\u2026 Altro detto che vuole chiudere i negozi, ma ancora non ha fatto nulla, \u00e8 troppo presto per fasciarsi la testa.\u201d\nForse \u00e8 presto per fasciarsi la testa, ma per loro ogni momento \u00e8 giusto per sfasciare l'Italia. Perch\u00e9 con questo Governo... basta la parola.\nNon ci credete? Sentite questa. Gioved\u00ec scorso si \u00e8 bloccata la vendita di una importante catena di\u2026 Altro", "post_text": "Mi allarga il cuore passeggiare la domenica mattina nella bellezza senza fine di Firenze. E come sempre, fin dagli anni in cui ero Sindaco, mi sono fermato a chiacchierare con chi lavora: commessi, camerieri, baristi. Molti di loro sono terrorizzati dall'ipotesi delle chiusure domenicali.\nVoi direte: \u201cbasta, Matteo, \u00e8 solo un'ipotesi. Di Maio ha\u2026 Altro detto che vuole chiudere i negozi, ma ancora non ha fatto nulla, \u00e8 troppo presto per fasciarsi la testa.\u201d\nForse \u00e8 presto per fasciarsi la testa, ma per loro ogni momento \u00e8 giusto per sfasciare l'Italia. Perch\u00e9 con questo Governo... basta la parola.\nNon ci credete? Sentite questa. Gioved\u00ec scorso si \u00e8 bloccata la vendita di una importante catena di\u2026 Altro", "shared_text": "", "time": "2018-11-18 10:26:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156313592449915&id=113335124914", "link": null} +{"post_id": "10156312043859915", "text": "Fateci caso. In questa settimana Salvini e Di Maio hanno litigato su tutto: termovalorizzatori, peculato, TAV, condono fiscale, Terzo Valico, Gronda, ruolo di Draghi, reddito di cittadinanza, prescrizione. Mentre quei due fanno wrestling verbale e bisticciano dalla mattina alla sera, nel frattempo l'Italia si inchioda.\nVa gi\u00f9 il PIL, si bloccano le\u2026 Altro assunzioni, fuggono i capitali.\nE nelle stesse ore in cui il governo italiano litiga su tutto, Macron e Merkel trovano l'accordo sull'Europa del futuro e sulle regole del bilancio che verr\u00e0. Con l'Italia tagliata fuori, perch\u00e9 i populisti di casa nostra rincorrono i nazionalisti. E dunque non mettono bocca su nessuna delle vere decisioni\u2026 Altro", "post_text": "Fateci caso. In questa settimana Salvini e Di Maio hanno litigato su tutto: termovalorizzatori, peculato, TAV, condono fiscale, Terzo Valico, Gronda, ruolo di Draghi, reddito di cittadinanza, prescrizione. Mentre quei due fanno wrestling verbale e bisticciano dalla mattina alla sera, nel frattempo l'Italia si inchioda.\nVa gi\u00f9 il PIL, si bloccano le\u2026 Altro assunzioni, fuggono i capitali.\nE nelle stesse ore in cui il governo italiano litiga su tutto, Macron e Merkel trovano l'accordo sull'Europa del futuro e sulle regole del bilancio che verr\u00e0. Con l'Italia tagliata fuori, perch\u00e9 i populisti di casa nostra rincorrono i nazionalisti. E dunque non mettono bocca su nessuna delle vere decisioni\u2026 Altro", "shared_text": "", "time": "2018-11-17 18:03:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156312043859915&id=113335124914", "link": null} +{"post_id": "10156311452219915", "text": "Ancora un massacro compiuto dagli estremisti islamici nella Repubblica Centrafricana. Quarantadue persone sono state uccise in una parrocchia: tra di loro anche il vicario generale della Diocesi. Non erano tutti cristiani ma anche musulmani sfollati che la Chiesa cattolica locale aveva accolto con cuore generoso.\nRicordo la scelta coraggiosa\u2026 Altro profetica di Papa Francesco che nel 2015 aveva profeticamente deciso di aprire il Giubileo delle periferie proprio a Bangui, nel cuore di questo martoriato Paese.\nAncora oggi un massacro di cristiani e sono pochissimi i quotidiani e i media che ne parlano. Eppure i cristiani uccisi in ogni angolo del mondo sono migliaia ogni anno, ma inspiegabilmente i martiri di oggi non fanno notizia.\nForse questi temi non portano voti, ma almeno la politica internazionale DEVE smettere di voltare la testa dall'altra parte.", "post_text": "Ancora un massacro compiuto dagli estremisti islamici nella Repubblica Centrafricana. Quarantadue persone sono state uccise in una parrocchia: tra di loro anche il vicario generale della Diocesi. Non erano tutti cristiani ma anche musulmani sfollati che la Chiesa cattolica locale aveva accolto con cuore generoso.\nRicordo la scelta coraggiosa\u2026 Altro profetica di Papa Francesco che nel 2015 aveva profeticamente deciso di aprire il Giubileo delle periferie proprio a Bangui, nel cuore di questo martoriato Paese.\nAncora oggi un massacro di cristiani e sono pochissimi i quotidiani e i media che ne parlano. Eppure i cristiani uccisi in ogni angolo del mondo sono migliaia ogni anno, ma inspiegabilmente i martiri di oggi non fanno notizia.\nForse questi temi non portano voti, ma almeno la politica internazionale DEVE smettere di voltare la testa dall'altra parte.", "shared_text": "", "time": "2018-11-17 11:25:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156311452219915&id=113335124914", "link": null} +{"post_id": "10156309392969915", "text": "Nella seconda causa Tiziano Renzi contro Marco Travaglio, il direttore del Fatto Quotidiano \u00e8 stato nuovamente condannato, stavolta per un intervento televisivo. Travaglio condannato due volte nel giro di un mese, insomma: dovr\u00e0 pagare altri 50.000\u20ac. Sono ovviamente contento per mio padre, ben difeso dall\u2019avvocato Luca Mirco. Ma soprattutto vorrei\u2026 Altro condividere con voi un pensiero: bisogna sopportare le ingiustizie, le falsit\u00e0, le diffamazioni. Perch\u00e9 la verit\u00e0 prima o poi arriva. Il tempo \u00e8 galantuomo. Ci sono dei giudici in Italia, bisogna solo saper aspettare. E verr\u00e0 presto il tempo in cui la seriet\u00e0 torner\u00e0 di moda. Ci hanno rovesciato un mare di fango addosso. Nessun risarcimento ci ridar\u00e0 ci\u00f2 che abbiamo sofferto ma la verit\u00e0 \u00e8 pi\u00f9 forte delle menzogne. Adesso sono solo curioso di vedere come i TG daranno la notizia.\nBuona giornata a tutti.", "post_text": "Nella seconda causa Tiziano Renzi contro Marco Travaglio, il direttore del Fatto Quotidiano \u00e8 stato nuovamente condannato, stavolta per un intervento televisivo. Travaglio condannato due volte nel giro di un mese, insomma: dovr\u00e0 pagare altri 50.000\u20ac. Sono ovviamente contento per mio padre, ben difeso dall\u2019avvocato Luca Mirco. Ma soprattutto vorrei\u2026 Altro condividere con voi un pensiero: bisogna sopportare le ingiustizie, le falsit\u00e0, le diffamazioni. Perch\u00e9 la verit\u00e0 prima o poi arriva. Il tempo \u00e8 galantuomo. Ci sono dei giudici in Italia, bisogna solo saper aspettare. E verr\u00e0 presto il tempo in cui la seriet\u00e0 torner\u00e0 di moda. Ci hanno rovesciato un mare di fango addosso. Nessun risarcimento ci ridar\u00e0 ci\u00f2 che abbiamo sofferto ma la verit\u00e0 \u00e8 pi\u00f9 forte delle menzogne. Adesso sono solo curioso di vedere come i TG daranno la notizia.\nBuona giornata a tutti.", "shared_text": "", "time": "2018-11-16 13:40:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156309392969915&id=113335124914", "link": null} +{"post_id": "10156309249164915", "text": "In Italia ne parlano in pochi ma la vicenda BREXIT \u00e8 enorme.\nRicapitoliamo i fatti: un referendum ha deciso che il Regno Unito deve uscire dall'Unione Europea. I promotori dell'uscita raccontavano che sarebbe stato tutto semplice e positivo. Ma la realt\u00e0 ha dimostrato il contrario: uscire dall'Europa produce danni sul breve periodo e una\u2026 Altro catastrofe sul medio periodo. Vedremo se il primo ministro May avr\u00e0 la forza e la voglia di indire un nuovo referendum.\nIl tempo intanto \u00e8 galantuomo anche a Londra, non solo a Roma. Ormai \u00e8 chiaro, infatti, come i promotori dell'uscita dall'Europa abbiano mentito agli inglesi durante il referendum e appare evidente il fatto che la classe media sia quella che pagher\u00e0 di pi\u00f9 le conseguenze di questa decisione. Per l'Europa sar\u00e0 un problema ma per il Regno Unito un vero e proprio disastro.\nCambiare questa Europa \u00e8 un dovere. Lasciare l'Europa significa tradire i propri valori e disintegrare la propria economia.", "post_text": "In Italia ne parlano in pochi ma la vicenda BREXIT \u00e8 enorme.\nRicapitoliamo i fatti: un referendum ha deciso che il Regno Unito deve uscire dall'Unione Europea. I promotori dell'uscita raccontavano che sarebbe stato tutto semplice e positivo. Ma la realt\u00e0 ha dimostrato il contrario: uscire dall'Europa produce danni sul breve periodo e una\u2026 Altro catastrofe sul medio periodo. Vedremo se il primo ministro May avr\u00e0 la forza e la voglia di indire un nuovo referendum.\nIl tempo intanto \u00e8 galantuomo anche a Londra, non solo a Roma. Ormai \u00e8 chiaro, infatti, come i promotori dell'uscita dall'Europa abbiano mentito agli inglesi durante il referendum e appare evidente il fatto che la classe media sia quella che pagher\u00e0 di pi\u00f9 le conseguenze di questa decisione. Per l'Europa sar\u00e0 un problema ma per il Regno Unito un vero e proprio disastro.\nCambiare questa Europa \u00e8 un dovere. Lasciare l'Europa significa tradire i propri valori e disintegrare la propria economia.", "shared_text": "", "time": "2018-11-16 11:48:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156309249164915&id=113335124914", "link": null} +{"post_id": "10156307656804915", "text": "Oggi in Aula il collega Santillo, Senatore del Movimento 5 Stelle, ha fatto la dichiarazione di voto per il suo gruppo come io l'ho fatta a nome del PD.\nSantillo ha attaccato me (strano) dicendo che io dovrei tacere perch\u00e9 ho nominato Mario Monti Senatore a Vita nella scorsa legislatura e Monti non viene mai in aula.\nDunque ormai mi danno la colpa\u2026 Altro anche delle assenze di Mario Monti e passi. Ma c'\u00e8 qualcuno dei Cinque Stelle che faccia notare a Santillo che non \u00e8 il Presidente del Consiglio a nominare i senatori a vita, ma il Presidente della Repubblica? Ma possibile che un Senatore non sappia che il Premier non nomina i senatori a vita? Aggiungo che quando Monti fu fatto senatore io ero\u2026 Altro", "post_text": "Oggi in Aula il collega Santillo, Senatore del Movimento 5 Stelle, ha fatto la dichiarazione di voto per il suo gruppo come io l'ho fatta a nome del PD.\nSantillo ha attaccato me (strano) dicendo che io dovrei tacere perch\u00e9 ho nominato Mario Monti Senatore a Vita nella scorsa legislatura e Monti non viene mai in aula.\nDunque ormai mi danno la colpa\u2026 Altro anche delle assenze di Mario Monti e passi. Ma c'\u00e8 qualcuno dei Cinque Stelle che faccia notare a Santillo che non \u00e8 il Presidente del Consiglio a nominare i senatori a vita, ma il Presidente della Repubblica? Ma possibile che un Senatore non sappia che il Premier non nomina i senatori a vita? Aggiungo che quando Monti fu fatto senatore io ero\u2026 Altro", "shared_text": "", "time": "2018-11-15 18:00:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156307656804915&id=113335124914", "link": null} +{"post_id": "10156306992394915", "text": "Oggi, 15 Novembre 2018, il Movimento Cinque Stelle ha ufficialmente perso ogni diritto di usare la parola Onest\u00e0.\nNel Decreto per Genova hanno infilato le norme per il CONDONO EDILIZIO, votato insieme alla vecchia politica che dicevano di voler combattere.\nDal primo giorno hanno giocato sulla pelle di Genova e dei genovesi.\n1- Di Maio ha chiesto a\u2026 Altro Fincantieri di fare il ponte al posto di Autostrade: poi gli hanno spiegato che Fincantieri fa le navi, non i ponti.\n2- Toninelli ha rifiutato il progetto di Renzo Piano. Che detta cos\u00ec fa quasi ridere: Toninelli che rifiuta un progetto di Renzo Piano. Toninelli, mi spiego?\n3- Conte che dice: non possiamo aspettare i tempi della giustizia e\u2026 Altro", "post_text": "Oggi, 15 Novembre 2018, il Movimento Cinque Stelle ha ufficialmente perso ogni diritto di usare la parola Onest\u00e0.\nNel Decreto per Genova hanno infilato le norme per il CONDONO EDILIZIO, votato insieme alla vecchia politica che dicevano di voler combattere.\nDal primo giorno hanno giocato sulla pelle di Genova e dei genovesi.\n1- Di Maio ha chiesto a\u2026 Altro Fincantieri di fare il ponte al posto di Autostrade: poi gli hanno spiegato che Fincantieri fa le navi, non i ponti.\n2- Toninelli ha rifiutato il progetto di Renzo Piano. Che detta cos\u00ec fa quasi ridere: Toninelli che rifiuta un progetto di Renzo Piano. Toninelli, mi spiego?\n3- Conte che dice: non possiamo aspettare i tempi della giustizia e\u2026 Altro", "shared_text": "", "time": "2018-11-15 11:38:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156306992394915&id=113335124914", "link": null} +{"post_id": "706952789684087", "text": "In diretta dal Senato sul Decreto Genova\n#nocondonoDiMaio", "post_text": "In diretta dal Senato sul Decreto Genova\n#nocondonoDiMaio", "shared_text": "", "time": "2018-11-15 09:58:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=706952789684087&id=113335124914", "link": null} +{"post_id": "10156305529279915", "text": "Per tutta la campagna elettorale Salvini, sulle pensioni, ha preso in giro gli italiani. Prima ha detto che avrebbe abolito la Fornero. Poi ha abbassato le aspettative e ha detto: faremo quota 100, per tutti, senza penalizzazioni. Adesso scopriamo che chi andr\u00e0 in pensione anticipata dovr\u00e0 accettare una decurtazione. Quota 100? Solo se accetti di\u2026 Altro rinunciare a una parte della tua pensione.\nInsomma l\u2019uomo che voleva abolire la Fornero alla fine far\u00e0 soltanto una brutta copia della nostra APE, l\u2019anticipo pensionistico previsto dal nostro Governo nel 2016. \u00c8 facile fare il populista quando sei all\u2019opposizione. Poi vai al Governo e la realt\u00e0 ti presenta il conto. Hanno promesso la luna, ma il tempo \u00e8 galantuomo. E da oggi \u00e8 chiaro che Salvini sulle pensioni ha mentito agli elettori.", "post_text": "Per tutta la campagna elettorale Salvini, sulle pensioni, ha preso in giro gli italiani. Prima ha detto che avrebbe abolito la Fornero. Poi ha abbassato le aspettative e ha detto: faremo quota 100, per tutti, senza penalizzazioni. Adesso scopriamo che chi andr\u00e0 in pensione anticipata dovr\u00e0 accettare una decurtazione. Quota 100? Solo se accetti di\u2026 Altro rinunciare a una parte della tua pensione.\nInsomma l\u2019uomo che voleva abolire la Fornero alla fine far\u00e0 soltanto una brutta copia della nostra APE, l\u2019anticipo pensionistico previsto dal nostro Governo nel 2016. \u00c8 facile fare il populista quando sei all\u2019opposizione. Poi vai al Governo e la realt\u00e0 ti presenta il conto. Hanno promesso la luna, ma il tempo \u00e8 galantuomo. E da oggi \u00e8 chiaro che Salvini sulle pensioni ha mentito agli elettori.", "shared_text": "", "time": "2018-11-14 19:24:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156305529279915&id=113335124914", "link": null} +{"post_id": "10156305042389915", "text": "Vi ricordate la storia dei sacchetti di plastica? Quella per cui io avrei favorito un'azienda amica? Quella squallida fake news per cui io avrei privilegiato una \"mia amica solo perch\u00e9 aveva parlato alla Leopolda\"?\nAll'inizio del 2018 la vicenda dei sacchetti di plastica fu utilizzata in campagna elettorale in modo vergognoso, soprattutto dai\u2026 Altro Cinque Stelle.\nOggi il giornalista Franco Bechis ci informa che nell'azienda \"incriminata\", la Mater Biotech (prima azienda al mondo per la produzione industriale di bio-butandiolo da materie prime rinnovabili), ieri si \u00e8 recato in visita Beppe Grillo. Proprio lui, Beppe Grillo. Si vede che non si ricordava cosa scrivevano i suoi sui sacchetti di\u2026 Altro", "post_text": "Vi ricordate la storia dei sacchetti di plastica? Quella per cui io avrei favorito un'azienda amica? Quella squallida fake news per cui io avrei privilegiato una \"mia amica solo perch\u00e9 aveva parlato alla Leopolda\"?\nAll'inizio del 2018 la vicenda dei sacchetti di plastica fu utilizzata in campagna elettorale in modo vergognoso, soprattutto dai\u2026 Altro Cinque Stelle.\nOggi il giornalista Franco Bechis ci informa che nell'azienda \"incriminata\", la Mater Biotech (prima azienda al mondo per la produzione industriale di bio-butandiolo da materie prime rinnovabili), ieri si \u00e8 recato in visita Beppe Grillo. Proprio lui, Beppe Grillo. Si vede che non si ricordava cosa scrivevano i suoi sui sacchetti di\u2026 Altro", "shared_text": "", "time": "2018-11-14 15:15:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156305042389915&id=113335124914", "link": null} +{"post_id": "693752537666052", "text": "In diretta dal Senato la top ten della settimana", "post_text": "In diretta dal Senato la top ten della settimana", "shared_text": "", "time": "2018-11-14 12:48:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=693752537666052&id=113335124914", "link": null} +{"post_id": "10156304700949915", "text": "Vi aspetto alle 12.30 per la top ten della settimana. A tra poco!", "post_text": "Vi aspetto alle 12.30 per la top ten della settimana. A tra poco!", "shared_text": "", "time": "2018-11-14 12:02:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/46153857_10156304700899915_5261853456116744192_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=HrS7LHKZwdEAQl2ft3RCVV2UpeJ9dyQSGpO2kOewn8D8TvjIK6Mf-CtPw&_nc_ht=scontent-cdt1-1.xx&oh=064e89a3fe489ff8821cc5876a0325c8&oe=5E8474D8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156304700949915&id=113335124914", "link": null} +{"post_id": "10156304570059915", "text": "Dopo la \"geniale\" manovra del Governo Salvini Di Maio, lo spread continua a correre. Significa che pagheremo mutui pi\u00f9 alti, rate per la macchina pi\u00f9 care, interessi sui fidi pi\u00f9 alti. Significa che l'Italia pagher\u00e0 il prossimo anno 5/6 miliardi di \u20ac in pi\u00f9 solo per il proprio debito: una follia!\nMa il paradosso \u00e8 che in legge di bilancio non c'\u00e8\u2026 Altro niente di ci\u00f2 che avevano promesso in campagna elettorale. Niente! Non c'\u00e8 il reddito di cittadinanza, non c'\u00e8 la FlatTax, non c'\u00e8 il superamento della Fornero. Ci sono solo scampoli di slogan senza coperture e condoni di ogni genere.\nUno dice: hanno forzato la mano in Europa per rispettare il patto con gli elettori. No. Hanno rotto in Europa ma hanno preso in giro gli elettori. Ve le ricordate le promesse in campagna elettorale? Non sono entrate in legge di bilancio.\nE a chi \u00e8 pronto a dire: \"E allora il PD?\" oppure \"E tu che hai fatto Renzi?\" rispondo. Con noi lo spread era sceso a 100, con loro \u00e8 sopra 300.\nPer aumentare i loro followers hanno triplicato lo spread.\nTanto pagano gli italiani.", "post_text": "Dopo la \"geniale\" manovra del Governo Salvini Di Maio, lo spread continua a correre. Significa che pagheremo mutui pi\u00f9 alti, rate per la macchina pi\u00f9 care, interessi sui fidi pi\u00f9 alti. Significa che l'Italia pagher\u00e0 il prossimo anno 5/6 miliardi di \u20ac in pi\u00f9 solo per il proprio debito: una follia!\nMa il paradosso \u00e8 che in legge di bilancio non c'\u00e8\u2026 Altro niente di ci\u00f2 che avevano promesso in campagna elettorale. Niente! Non c'\u00e8 il reddito di cittadinanza, non c'\u00e8 la FlatTax, non c'\u00e8 il superamento della Fornero. Ci sono solo scampoli di slogan senza coperture e condoni di ogni genere.\nUno dice: hanno forzato la mano in Europa per rispettare il patto con gli elettori. No. Hanno rotto in Europa ma hanno preso in giro gli elettori. Ve le ricordate le promesse in campagna elettorale? Non sono entrate in legge di bilancio.\nE a chi \u00e8 pronto a dire: \"E allora il PD?\" oppure \"E tu che hai fatto Renzi?\" rispondo. Con noi lo spread era sceso a 100, con loro \u00e8 sopra 300.\nPer aumentare i loro followers hanno triplicato lo spread.\nTanto pagano gli italiani.", "shared_text": "", "time": "2018-11-14 09:59:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156304570059915&id=113335124914", "link": null} +{"post_id": "10156303518774915", "text": "Il nostro lavoro di lotta senza quartiere al condono edilizio che Di Maio vuole per Ischia sta producendo i primi risultati. Qualche minuto fa in Commissione al Senato la maggioranza \u00e8 stata battuta su un emendamento contro il condono. Per la prima volta in questa legislatura il Governo \u00e8 andato sotto su un atto parlamentare grazie al voto\u2026 Altro contrario di alcuni senatori Cinque Stelle, che ringrazio. Continueremo la battaglia contro i condoni e per la legalit\u00e0 in Aula. E io rinnovo l\u2019appello a Conte e Salvini: togliete la parte sul condono edilizio di Ischia dal decreto Genova e noi voteremo con voi. Ma stralciate la schifezza del condono. Di abusivismo si muore, basta!", "post_text": "Il nostro lavoro di lotta senza quartiere al condono edilizio che Di Maio vuole per Ischia sta producendo i primi risultati. Qualche minuto fa in Commissione al Senato la maggioranza \u00e8 stata battuta su un emendamento contro il condono. Per la prima volta in questa legislatura il Governo \u00e8 andato sotto su un atto parlamentare grazie al voto\u2026 Altro contrario di alcuni senatori Cinque Stelle, che ringrazio. Continueremo la battaglia contro i condoni e per la legalit\u00e0 in Aula. E io rinnovo l\u2019appello a Conte e Salvini: togliete la parte sul condono edilizio di Ischia dal decreto Genova e noi voteremo con voi. Ma stralciate la schifezza del condono. Di abusivismo si muore, basta!", "shared_text": "", "time": "2018-11-13 20:41:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156303518774915&id=113335124914", "link": null} +{"post_id": "10156302432194915", "text": "Ieri il Corriere della Sera ha polemizzato con me sulla vicenda delle persone con sindrome di Down. Ho risposto cos\u00ec, oggi, in una Lettera al Direttore.\nCaro Direttore,\nnon ho mai richiesto la sua gentile ospitalit\u00e0 pur avendone avuto pi\u00f9 volte occasione. Il Corriere mi ha sempre seguito con attenzione \u2013 e di questo La ringrazio perch\u00e9 credo nella\u2026 Altro stampa libera, a maggior ragione in questo periodo di minacce all\u2019informazione \u2013 ma non ho mai chiesto di fare precisazioni. Non l\u2019ho fatto nemmeno quando mi avete dato del \u201ccaudillo\u201d.\nSe lo faccio adesso \u00e8 per replicare ad Antonio Polito che ieri mi ha criticato per aver pubblicato la foto di mia nipote Maria, una bimba che ha la sindrome di\u2026 Altro", "post_text": "Ieri il Corriere della Sera ha polemizzato con me sulla vicenda delle persone con sindrome di Down. Ho risposto cos\u00ec, oggi, in una Lettera al Direttore.\nCaro Direttore,\nnon ho mai richiesto la sua gentile ospitalit\u00e0 pur avendone avuto pi\u00f9 volte occasione. Il Corriere mi ha sempre seguito con attenzione \u2013 e di questo La ringrazio perch\u00e9 credo nella\u2026 Altro stampa libera, a maggior ragione in questo periodo di minacce all\u2019informazione \u2013 ma non ho mai chiesto di fare precisazioni. Non l\u2019ho fatto nemmeno quando mi avete dato del \u201ccaudillo\u201d.\nSe lo faccio adesso \u00e8 per replicare ad Antonio Polito che ieri mi ha criticato per aver pubblicato la foto di mia nipote Maria, una bimba che ha la sindrome di\u2026 Altro", "shared_text": "", "time": "2018-11-13 08:42:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156302432194915&id=113335124914", "link": null} +{"post_id": "10156301208424915", "text": "Ci sono otto casi di morbillo a Bari. Pare che siano causati da una bambina, figlia di NoVax. Se cos\u00ec fosse, significa che siamo al delirio.\nIl Governo NoTav, NoOlimpiadi, NoGronda deve almeno smettere di essere un Governo NoVax e ripristinare l\u2019obbligo della legge Lorenzin, subito. Stanno giocando sulla pelle dei bambini e per un pugno di like sui social mettono a rischio la vita dei pi\u00f9 deboli. Mi sembrano matti, sono veramente pericolosi. La scienza ha ragione, i grilloleghisti hanno torto. Facciamoci sentire.", "post_text": "Ci sono otto casi di morbillo a Bari. Pare che siano causati da una bambina, figlia di NoVax. Se cos\u00ec fosse, significa che siamo al delirio.\nIl Governo NoTav, NoOlimpiadi, NoGronda deve almeno smettere di essere un Governo NoVax e ripristinare l\u2019obbligo della legge Lorenzin, subito. Stanno giocando sulla pelle dei bambini e per un pugno di like sui social mettono a rischio la vita dei pi\u00f9 deboli. Mi sembrano matti, sono veramente pericolosi. La scienza ha ragione, i grilloleghisti hanno torto. Facciamoci sentire.", "shared_text": "", "time": "2018-11-12 16:50:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156301208424915&id=113335124914", "link": null} +{"post_id": "10156300551774915", "text": "La gioia di avere un bimbo \u00e8 la cosa pi\u00f9 bella del mondo e supera ogni problema. Ma \u00e8 certo che i pannolini costano, che le spese aumentano, che un figlio impatta sul bilancio e spesso si ricorre all'aiuto dei nonni.\nQuando eravamo a Palazzo Chigi ci siamo detti: diamo un piccolo aiuto in denaro a chi fa figli, per le spese quotidiane. Non\u2026 Altro cambier\u00e0 la vita, ma almeno diamo una mano. Cos\u00ec abbiamo istituito il BonusBeb\u00e8. Ovviamente sono stato criticato, come sempre del resto, ma alla fine il BonusBeb\u00e8 ha aiutato centinaia di migliaia di famiglie.\nOra \u00e8 arrivato il Governo del Cambiamento.\nE nella Legge di Bilancio, nella Manovra del Popolo, hanno tolto il BonusBeb\u00e8. Basta coi bonus di Renzi, via, zac.\nPer\u00f2 promettono che per chi far\u00e0 pi\u00f9 di tre figli regaleranno un pezzo di terra incolta al sud: podere al popolo, insomma.\nTolgono i soldi alle famiglie che abbiamo messo noi, e dicono di combattere la crisi demografica regalando, forse, pezzi di terreno incolti nel Mezzogiorno.\nSe non fosse una cosa seria, ci sarebbe da ridere.", "post_text": "La gioia di avere un bimbo \u00e8 la cosa pi\u00f9 bella del mondo e supera ogni problema. Ma \u00e8 certo che i pannolini costano, che le spese aumentano, che un figlio impatta sul bilancio e spesso si ricorre all'aiuto dei nonni.\nQuando eravamo a Palazzo Chigi ci siamo detti: diamo un piccolo aiuto in denaro a chi fa figli, per le spese quotidiane. Non\u2026 Altro cambier\u00e0 la vita, ma almeno diamo una mano. Cos\u00ec abbiamo istituito il BonusBeb\u00e8. Ovviamente sono stato criticato, come sempre del resto, ma alla fine il BonusBeb\u00e8 ha aiutato centinaia di migliaia di famiglie.\nOra \u00e8 arrivato il Governo del Cambiamento.\nE nella Legge di Bilancio, nella Manovra del Popolo, hanno tolto il BonusBeb\u00e8. Basta coi bonus di Renzi, via, zac.\nPer\u00f2 promettono che per chi far\u00e0 pi\u00f9 di tre figli regaleranno un pezzo di terra incolta al sud: podere al popolo, insomma.\nTolgono i soldi alle famiglie che abbiamo messo noi, e dicono di combattere la crisi demografica regalando, forse, pezzi di terreno incolti nel Mezzogiorno.\nSe non fosse una cosa seria, ci sarebbe da ridere.", "shared_text": "", "time": "2018-11-12 09:53:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156300551774915&id=113335124914", "link": null} +{"post_id": "10156299231459915", "text": "Ho ricevuto molte critiche in queste ore per aver telefonato a Virginia Raggi dopo la sua assoluzione.\nCapisco che il fair play tra avversari non vada di moda, spesso per responsabilit\u00e0 proprio dei Cinque Stelle. Quanti insulti abbiamo ricevuto!\nQuante persone sono state massacrate, insieme alle loro famiglie, anche semplicemente per un avviso di\u2026 Altro garanzia.\nNon dimentico il fango che ci \u00e8 stato buttato addosso.\nMa noi siamo diversi e non vogliamo cedere alla cultura dell'odio. Noi vogliamo sconfiggere gli avversari per via politica e non con il fango. E quando un cittadino viene assolto, chi \u00e8 davvero garantista festeggia.\nDi Battista e Di Maio hanno insultato i giornalisti colpevoli - a\u2026 Altro", "post_text": "Ho ricevuto molte critiche in queste ore per aver telefonato a Virginia Raggi dopo la sua assoluzione.\nCapisco che il fair play tra avversari non vada di moda, spesso per responsabilit\u00e0 proprio dei Cinque Stelle. Quanti insulti abbiamo ricevuto!\nQuante persone sono state massacrate, insieme alle loro famiglie, anche semplicemente per un avviso di\u2026 Altro garanzia.\nNon dimentico il fango che ci \u00e8 stato buttato addosso.\nMa noi siamo diversi e non vogliamo cedere alla cultura dell'odio. Noi vogliamo sconfiggere gli avversari per via politica e non con il fango. E quando un cittadino viene assolto, chi \u00e8 davvero garantista festeggia.\nDi Battista e Di Maio hanno insultato i giornalisti colpevoli - a\u2026 Altro", "shared_text": "", "time": "2018-11-11 18:02:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156299231459915&id=113335124914", "link": null} +{"post_id": "10156298559219915", "text": "Come ogni domenica anche oggi centinaia di migliaia di persone stanno lavorando. Lavorano nel trasporto pubblico, negli ospedali, nei musei, negli stadi, nei ristoranti, nei negozi, nelle professioni, ovunque.\nIl ministro Di Maio vuole chiudere l'Italia la domenica e attacca i Sindaci contrari alle sue bislacche idee.\nLa filosofia che sta alla\u2026 Altro base della chiusura dei negozi la domenica, del NO alla TAV, del reddito di cittadinanza, del condono edilizio \u00e8 sempre la stessa: un'Italia ferma, avvitata sull'assistenzialismo e sulla decrescita.\nIo invece credo nel lavoro e non nei sussidi, credo nelle aperture e non nelle chiusure, nelle infrastrutture e non nei condoni.\nC'\u00e8 una diversit\u00e0\u2026 Altro", "post_text": "Come ogni domenica anche oggi centinaia di migliaia di persone stanno lavorando. Lavorano nel trasporto pubblico, negli ospedali, nei musei, negli stadi, nei ristoranti, nei negozi, nelle professioni, ovunque.\nIl ministro Di Maio vuole chiudere l'Italia la domenica e attacca i Sindaci contrari alle sue bislacche idee.\nLa filosofia che sta alla\u2026 Altro base della chiusura dei negozi la domenica, del NO alla TAV, del reddito di cittadinanza, del condono edilizio \u00e8 sempre la stessa: un'Italia ferma, avvitata sull'assistenzialismo e sulla decrescita.\nIo invece credo nel lavoro e non nei sussidi, credo nelle aperture e non nelle chiusure, nelle infrastrutture e non nei condoni.\nC'\u00e8 una diversit\u00e0\u2026 Altro", "shared_text": "", "time": "2018-11-11 10:45:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156298559219915&id=113335124914", "link": null} +{"post_id": "10156296831024915", "text": "Per chi \u00e8 garantista l\u2019assoluzione di Virginia Raggi \u00e8 una buona notizia. Gli avversari si sconfiggono nelle urne, non nei tribunali. E il giudizio sul sindaco Raggi lo devono dare i cittadini, non i magistrati. L\u2019ho sempre detto, continuer\u00f2 a dirlo. Oggi per Roma \u00e8 una bella giornata", "post_text": "Per chi \u00e8 garantista l\u2019assoluzione di Virginia Raggi \u00e8 una buona notizia. Gli avversari si sconfiggono nelle urne, non nei tribunali. E il giudizio sul sindaco Raggi lo devono dare i cittadini, non i magistrati. L\u2019ho sempre detto, continuer\u00f2 a dirlo. Oggi per Roma \u00e8 una bella giornata", "shared_text": "", "time": "2018-11-10 16:46:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156296831024915&id=113335124914", "link": null} +{"post_id": "10156296542289915", "text": "A Torino stamattina inizia la fine di chi dice solo no. No alla Tav, no alle Olimpiadi, no alla crescita. L\u2019Italia sta sperimentando che con i NO si ferma tutto. Torner\u00e0 presto il tempo di chi dice SI. Grazie Torino.\n#SiTav", "post_text": "A Torino stamattina inizia la fine di chi dice solo no. No alla Tav, no alle Olimpiadi, no alla crescita. L\u2019Italia sta sperimentando che con i NO si ferma tutto. Torner\u00e0 presto il tempo di chi dice SI. Grazie Torino.\n#SiTav", "shared_text": "", "time": "2018-11-10 14:10:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/45769703_10156296542244915_469014478877360128_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=9LauZm7kGsUAQlKezWnysZy-WvBG6sdIRJOA5VNtGFbPV0GN_1pBK3TNg&_nc_ht=scontent-cdt1-1.xx&oh=ef05eb5d675031b30d5b6f7efb20d7f9&oe=5E4C5F7A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156296542289915&id=113335124914", "link": null} +{"post_id": "1106826062828810", "text": "In diretta da Salsomaggiore #Italia2030", "post_text": "In diretta da Salsomaggiore #Italia2030", "shared_text": "", "time": "2018-11-10 13:28:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1106826062828810&id=113335124914", "link": null} +{"post_id": "2281438922084943", "text": "In diretta da Salsomaggiore Terme #Italia2030", "post_text": "In diretta da Salsomaggiore Terme #Italia2030", "shared_text": "", "time": "2018-11-10 12:45:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2281438922084943&id=113335124914", "link": null} +{"post_id": "10156296137674915", "text": "Rocco Casalino insiste. E sulla vicenda delle persone con sindrome di Down anzich\u00e9 fermarsi e chiedere scusa ai diretti interessati, alle famiglie, agli italiani, rilancia. Dice che io gli faccio orrore perch\u00e9 ho mostrato la foto della mia nipotina, Maria. Non si devono mostrare le foto delle persone con sindrome di Down, secondo lui, perch\u00e9\u2026 Altro mostrare le foto di uno zio con una nipotina significa strumentalizzare.\nNon so se Casalino si rende conto di quello che dice.\nIo non mi vergogno di avere una nipotina con sindrome di down. Io sono fiero e orgoglioso di Maria, della sua vita, del suo sorriso. E quando vado a correre con lei per raccogliere fondi per l'Associazione Trisomia 21 sono\u2026 Altro", "post_text": "Rocco Casalino insiste. E sulla vicenda delle persone con sindrome di Down anzich\u00e9 fermarsi e chiedere scusa ai diretti interessati, alle famiglie, agli italiani, rilancia. Dice che io gli faccio orrore perch\u00e9 ho mostrato la foto della mia nipotina, Maria. Non si devono mostrare le foto delle persone con sindrome di Down, secondo lui, perch\u00e9\u2026 Altro mostrare le foto di uno zio con una nipotina significa strumentalizzare.\nNon so se Casalino si rende conto di quello che dice.\nIo non mi vergogno di avere una nipotina con sindrome di down. Io sono fiero e orgoglioso di Maria, della sua vita, del suo sorriso. E quando vado a correre con lei per raccogliere fondi per l'Associazione Trisomia 21 sono\u2026 Altro", "shared_text": "", "time": "2018-11-10 09:13:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156296137674915&id=113335124914", "link": null} +{"post_id": "10156294878259915", "text": "Barbara Lezzi ha detto che vuole fare informazione scientifica a 370 gradi. E tutta la comunit\u00e0 social ride a crepapelle. Capisco. Viene da ridere anche a me ma non c'\u00e8 niente da ridere, amici. Questa fa il Ministro e rappresenta tutti noi. Anche voi che ridete. Non \u00e8 la prima volta. La Lezzi ha gi\u00e0 detto che il PIL cresce con i condizionatori,\u2026 Altro come Toninelli ha detto che sul viadotto autostradale di Genova vuol far giocare i bambini. Sul viadotto!\nDire 370 gradi non \u00e8 allora una gaffe di cui ridere, ma l'ennesima dimostrazione di una incompetenza imbarazzante.\nDicono che noi siamo antipatici. Forse. Ma per me \u00e8 meglio essere antipatici che incompetenti.", "post_text": "Barbara Lezzi ha detto che vuole fare informazione scientifica a 370 gradi. E tutta la comunit\u00e0 social ride a crepapelle. Capisco. Viene da ridere anche a me ma non c'\u00e8 niente da ridere, amici. Questa fa il Ministro e rappresenta tutti noi. Anche voi che ridete. Non \u00e8 la prima volta. La Lezzi ha gi\u00e0 detto che il PIL cresce con i condizionatori,\u2026 Altro come Toninelli ha detto che sul viadotto autostradale di Genova vuol far giocare i bambini. Sul viadotto!\nDire 370 gradi non \u00e8 allora una gaffe di cui ridere, ma l'ennesima dimostrazione di una incompetenza imbarazzante.\nDicono che noi siamo antipatici. Forse. Ma per me \u00e8 meglio essere antipatici che incompetenti.", "shared_text": "", "time": "2018-11-09 19:23:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156294878259915&id=113335124914", "link": null} +{"post_id": "10156294645179915", "text": "Domani Torino scende in piazza sulla TAV contro il suo Sindaco, Chiara Appendino. E che fa l'Appendino? Attacca me.\nDice la grillina: anche Renzi riteneva inutile la TAV.\nQuando ho fatto il Premier, ho cambiato il progetto TAV insieme al ministro Delrio e ai francesi. Abbiamo scelto di fare un progetto meno impattante. Abbiamo scelto di utilizzare\u2026 Altro di pi\u00f9 la linea storica, riducendo la nuova linea da 83 chilometri a soli 32 ed abbiamo risparmiato 2 miliardi. Il progetto originario era eccessivo: noi abbiamo risparmiato 2 miliardi senza bloccare l'opera. La nostra, cara Appendino, si chiama capacit\u00e0 di governo. La tua, invece, si chiama demagogia e sta bloccando Torino e l'Italia. A forza di dire NO alla TAV, NO alle Olimpiadi, NO alla crescita, state dicendo NO al futuro.\nSmetti di attaccare me, cara Sindaco. E prenditi le tue responsabilit\u00e0, se ne sei capace. La TAV noi l'abbiamo finanziata, i grillini vogliono bloccarla.", "post_text": "Domani Torino scende in piazza sulla TAV contro il suo Sindaco, Chiara Appendino. E che fa l'Appendino? Attacca me.\nDice la grillina: anche Renzi riteneva inutile la TAV.\nQuando ho fatto il Premier, ho cambiato il progetto TAV insieme al ministro Delrio e ai francesi. Abbiamo scelto di fare un progetto meno impattante. Abbiamo scelto di utilizzare\u2026 Altro di pi\u00f9 la linea storica, riducendo la nuova linea da 83 chilometri a soli 32 ed abbiamo risparmiato 2 miliardi. Il progetto originario era eccessivo: noi abbiamo risparmiato 2 miliardi senza bloccare l'opera. La nostra, cara Appendino, si chiama capacit\u00e0 di governo. La tua, invece, si chiama demagogia e sta bloccando Torino e l'Italia. A forza di dire NO alla TAV, NO alle Olimpiadi, NO alla crescita, state dicendo NO al futuro.\nSmetti di attaccare me, cara Sindaco. E prenditi le tue responsabilit\u00e0, se ne sei capace. La TAV noi l'abbiamo finanziata, i grillini vogliono bloccarla.", "shared_text": "", "time": "2018-11-09 17:35:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156294645179915&id=113335124914", "link": null} +{"post_id": "10156293866274915", "text": "Facile fare il populista quando sei all'opposizione. Poi, per\u00f2, vai al Governo e scopri che la realt\u00e0 \u00e8 pi\u00f9 forte della propaganda. Puoi disegnare un mondo bellissimo dall'opposizione, ma se poi metti Toninelli alle infrastrutture tutti i sogni si frantumano (non solo i sogni).\nMa se a livello nazionale i grillini vanno avanti a forza di condoni,\u2026 Altro compromessi, voti di fiducia \u00e8 a livello locale che si vede con pi\u00f9 forza lo sgretolamento in corso.\nA Torino sabato migliaia di persone scenderanno in piazza contro l'amministrazione Cinque Stelle di Chiara Appendino. Dire no alla TAV significa tagliarsi le gambe, significa isolarsi dal mondo, significa scegliere la decrescita infelice.\nA Roma\u2026 Altro", "post_text": "Facile fare il populista quando sei all'opposizione. Poi, per\u00f2, vai al Governo e scopri che la realt\u00e0 \u00e8 pi\u00f9 forte della propaganda. Puoi disegnare un mondo bellissimo dall'opposizione, ma se poi metti Toninelli alle infrastrutture tutti i sogni si frantumano (non solo i sogni).\nMa se a livello nazionale i grillini vanno avanti a forza di condoni,\u2026 Altro compromessi, voti di fiducia \u00e8 a livello locale che si vede con pi\u00f9 forza lo sgretolamento in corso.\nA Torino sabato migliaia di persone scenderanno in piazza contro l'amministrazione Cinque Stelle di Chiara Appendino. Dire no alla TAV significa tagliarsi le gambe, significa isolarsi dal mondo, significa scegliere la decrescita infelice.\nA Roma\u2026 Altro", "shared_text": "", "time": "2018-11-09 08:24:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156293866274915&id=113335124914", "link": null} +{"post_id": "2258512591047168", "text": "Ieri ho fatto una chiacchiera con Gerardo Greco a W l\u2019Italia. Maltempo, condoni, Salvini e Di Maio, vaccini e molto altro. Se vi va, mi dite che ne pensate? Buona giornata", "post_text": "Ieri ho fatto una chiacchiera con Gerardo Greco a W l\u2019Italia. Maltempo, condoni, Salvini e Di Maio, vaccini e molto altro. Se vi va, mi dite che ne pensate? Buona giornata", "shared_text": "", "time": "2018-11-09 08:13:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2258512591047168&id=113335124914", "link": null} +{"post_id": "10156292789789915", "text": "Stasera, alle 21.25, su Rete 4 vi aspetto.\nA dopo!", "post_text": "Stasera, alle 21.25, su Rete 4 vi aspetto.\nA dopo!", "shared_text": "", "time": "2018-11-08 19:58:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/45624460_10156292789744915_3158667933303963648_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=yk3Kajxnu_kAQmAmtt_kZPoUQghWyPs4m86NrlWaon26tFBtGw1btKOaQ&_nc_ht=scontent-cdt1-1.xx&oh=bbc960af897260b80c002cc993e8696c&oe=5E8B4871", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156292789789915&id=113335124914", "link": null} +{"post_id": "10156292131249915", "text": "Mia nipote, Maria, ha la sindrome di Down. Lei \u00e8 una cittadina come tutti gli altri e ha diritto come tutti gli altri di essere rispettata dalle Istituzioni di questo Paese. Vorrei dire: ha diritto pi\u00f9 di tutti gli altri di essere rispettata. Le parole schifose, squallide, indegne di Rocco Casalino, portavoce del Presidente del Consiglio dei\u2026 Altro Ministri, sono parole che in un Paese civile hanno una sola conseguenza: le dimissioni.\nCasalino ci ha abituato a insultare tutti: giornalisti, avversari politici, persone povere, stranieri. Ma adesso ha superato il limite. Non \u00e8 giusto che le nostre tasse vadano a pagare il super-stipendio di un signore che insulta le persone con sindrome di Down. E\u2026 Altro", "post_text": "Mia nipote, Maria, ha la sindrome di Down. Lei \u00e8 una cittadina come tutti gli altri e ha diritto come tutti gli altri di essere rispettata dalle Istituzioni di questo Paese. Vorrei dire: ha diritto pi\u00f9 di tutti gli altri di essere rispettata. Le parole schifose, squallide, indegne di Rocco Casalino, portavoce del Presidente del Consiglio dei\u2026 Altro Ministri, sono parole che in un Paese civile hanno una sola conseguenza: le dimissioni.\nCasalino ci ha abituato a insultare tutti: giornalisti, avversari politici, persone povere, stranieri. Ma adesso ha superato il limite. Non \u00e8 giusto che le nostre tasse vadano a pagare il super-stipendio di un signore che insulta le persone con sindrome di Down. E\u2026 Altro", "shared_text": "", "time": "2018-11-08 14:45:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156292131249915&id=113335124914", "link": null} +{"post_id": "10156287689174915", "text": "Ciao Tiberio. Grande fotografo, grande amico, grande uomo. Sono stato fortunato a lavorare con te. Ti voglio bene.", "post_text": "Ciao Tiberio. Grande fotografo, grande amico, grande uomo. Sono stato fortunato a lavorare con te. Ti voglio bene.", "shared_text": "", "time": "2018-11-06 12:57:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/45348737_10156287689129915_3363452347639398400_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=EIxrKRaoxVkAQlGRFlwCGZ5_HQQkXvSUMFDjK0uSgee-eL-crJO-i1kpw&_nc_ht=scontent-cdt1-1.xx&oh=0c5b8159185c12365c8f52d83de99e00&oe=5E8AFFDB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156287689174915&id=113335124914", "link": null} +{"post_id": "2321633507908782", "text": "In diretta dal Senato la top ten della settimana", "post_text": "In diretta dal Senato la top ten della settimana", "shared_text": "", "time": "2018-11-06 10:35:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2321633507908782&id=113335124914", "link": null} +{"post_id": "10156287426814915", "text": "Vi aspetto alle 10.30 qui, in diretta Facebook, per la top ten della settimana. A tra poco!", "post_text": "Vi aspetto alle 10.30 qui, in diretta Facebook, per la top ten della settimana. A tra poco!", "shared_text": "", "time": "2018-11-06 09:30:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/45491546_10156287426744915_2270354179778150400_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=qr7Sd52KIBAAQlbWU_OzLdsbN7N28hO21D-ctVvELvekfKa4MOyb4pZ4A&_nc_ht=scontent-cdt1-1.xx&oh=9df7c5a1566c8ad72a09e7117edd23ba&oe=5E408365", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156287426814915&id=113335124914", "link": null} +{"post_id": "10156285256454915", "text": "Dal treno Firenze Roma per chiedervi una mano: quello che sta succedendo \u00e8 una vergogna nazionale, dobbiamo muoverci tutti, tutti insieme", "post_text": "Dal treno Firenze Roma per chiedervi una mano: quello che sta succedendo \u00e8 una vergogna nazionale, dobbiamo muoverci tutti, tutti insieme", "shared_text": "", "time": "2018-11-05 01:07:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=339654089926904&id=113335124914", "link": null} +{"post_id": "10156284060339915", "text": "L\u2019Italia piange decine di morti. Salvini d\u00e0 la colpa \u201call\u2019ambientalismo da salotto\u201d, io credo invece che sia responsabilit\u00e0 dell\u2019abusivismo edilizio.\nChiedo al Governo di smettere con le polemiche e recuperare\u2026 Altro subito il progetto Casa Italia di Renzo Piano. \u00c8 stata la prima cosa cancellata da Lega e Cinque Stelle: ripensateci. No ai condoni, s\u00ec a Casa Italia.", "post_text": "L\u2019Italia piange decine di morti. Salvini d\u00e0 la colpa \u201call\u2019ambientalismo da salotto\u201d, io credo invece che sia responsabilit\u00e0 dell\u2019abusivismo edilizio.\nChiedo al Governo di smettere con le polemiche e recuperare\u2026 Altro subito il progetto Casa Italia di Renzo Piano. \u00c8 stata la prima cosa cancellata da Lega e Cinque Stelle: ripensateci. No ai condoni, s\u00ec a Casa Italia.", "shared_text": "", "time": "2018-11-04 20:30:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=931059683749675&id=113335124914", "link": null} +{"post_id": "10156280906019915", "text": "Il maltempo ha fatto danni e morti in tutta Italia. Eppure il Governo litiga sulle nomine e sul reddito di cittadinanza, tanto per cambiare. Poltrone e sussidi, come nella peggiore tradizione politica italiana.\nLo stato di emergenza riguarda tante regioni. Dalle Dolomiti alla Sicilia rischiamo di pagare per anni gli effetti del maltempo. Faccio un\u2026 Altro appello al Governo: smettete di litigare per una settimana. E riaprite subito il progetto Casa Italia, ideato da Renzo Piano e chiuso da Di Maio e Salvini. Siamo pronti a venire in parlamento e a votare a favore della proposta. Ma fatelo subito. Basta parlare di condoni, riaprite subito Casa Italia. I soldi ci sono: spendeteli per questo, anzich\u00e9 per i sussidi elettorali.", "post_text": "Il maltempo ha fatto danni e morti in tutta Italia. Eppure il Governo litiga sulle nomine e sul reddito di cittadinanza, tanto per cambiare. Poltrone e sussidi, come nella peggiore tradizione politica italiana.\nLo stato di emergenza riguarda tante regioni. Dalle Dolomiti alla Sicilia rischiamo di pagare per anni gli effetti del maltempo. Faccio un\u2026 Altro appello al Governo: smettete di litigare per una settimana. E riaprite subito il progetto Casa Italia, ideato da Renzo Piano e chiuso da Di Maio e Salvini. Siamo pronti a venire in parlamento e a votare a favore della proposta. Ma fatelo subito. Basta parlare di condoni, riaprite subito Casa Italia. I soldi ci sono: spendeteli per questo, anzich\u00e9 per i sussidi elettorali.", "shared_text": "", "time": "2018-11-03 11:49:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156280906019915&id=113335124914", "link": null} +{"post_id": "10156274682244915", "text": "In queste ore il Governo utilizza la tragedia del Ponte Morandi per approvare nel Decreto Genova un condono edilizio per trentamila case a Ischia! Un condono che ha un nome e cognome: Luigi Di Maio. Nelle ore in cui l'Italia \u00e8 flagellata dal maltempo il Parlamento vota l'ennesimo condono, nascondendosi dietro il dramma di Genova: si tratta della pagina pi\u00f9 squallida dall'inizio di questa legislatura.", "post_text": "In queste ore il Governo utilizza la tragedia del Ponte Morandi per approvare nel Decreto Genova un condono edilizio per trentamila case a Ischia! Un condono che ha un nome e cognome: Luigi Di Maio. Nelle ore in cui l'Italia \u00e8 flagellata dal maltempo il Parlamento vota l'ennesimo condono, nascondendosi dietro il dramma di Genova: si tratta della pagina pi\u00f9 squallida dall'inizio di questa legislatura.", "shared_text": "", "time": "2018-10-31 18:59:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156274682244915&id=113335124914", "link": null} +{"post_id": "10156274027499915", "text": "La notizia dell\u2019assoluzione di Asia Bibi, dopo anni trascorsi in attesa della condanna a morte per blasfemia, rende questa giornata una splendida, meravigliosa, bellissima giornata.", "post_text": "La notizia dell\u2019assoluzione di Asia Bibi, dopo anni trascorsi in attesa della condanna a morte per blasfemia, rende questa giornata una splendida, meravigliosa, bellissima giornata.", "shared_text": "", "time": "2018-10-31 13:21:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156274027499915&id=113335124914", "link": null} +{"post_id": "10156273669274915", "text": "Guardate i giornali di oggi.\nSe non fosse un dramma per l\u2019Italia, ci sarebbe da ridere: \u00e8 sempre colpa di quelli di prima.\nDiciamola semplice\nNoi prendiamo il Governo quando il Paese \u00e8 in recessione. Facciamo JobsAct, SbloccaItalia, riduzione Irap, superammortamento, industria 4.0 e l\u2019Italia torna col segno pi\u00f9. Quattro anni consecutivi di PIL col\u2026 Altro segno pi\u00f9.\nArrivano loro, cambio di governo.\nBloccano le opere pubbliche, cambiano il mercato del lavoro, aprono ai condoni.\nIl PIL si ferma. Dopo quattro anni di segno pi\u00f9, si torna a zero!\nAnzich\u00e9 dire: scusate, abbiamo sbagliato, rimediamo subito, Salvini e Di Maio danno la colpa a quelli di prima.\nCon quelli di prima, siamo tornati al segno pi\u00f9.\nCon voi, l\u2019Italia torna in recessione.\nTutto qui.", "post_text": "Guardate i giornali di oggi.\nSe non fosse un dramma per l\u2019Italia, ci sarebbe da ridere: \u00e8 sempre colpa di quelli di prima.\nDiciamola semplice\nNoi prendiamo il Governo quando il Paese \u00e8 in recessione. Facciamo JobsAct, SbloccaItalia, riduzione Irap, superammortamento, industria 4.0 e l\u2019Italia torna col segno pi\u00f9. Quattro anni consecutivi di PIL col\u2026 Altro segno pi\u00f9.\nArrivano loro, cambio di governo.\nBloccano le opere pubbliche, cambiano il mercato del lavoro, aprono ai condoni.\nIl PIL si ferma. Dopo quattro anni di segno pi\u00f9, si torna a zero!\nAnzich\u00e9 dire: scusate, abbiamo sbagliato, rimediamo subito, Salvini e Di Maio danno la colpa a quelli di prima.\nCon quelli di prima, siamo tornati al segno pi\u00f9.\nCon voi, l\u2019Italia torna in recessione.\nTutto qui.", "shared_text": "", "time": "2018-10-31 08:54:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156273669274915&id=113335124914", "link": null} +{"post_id": "10156272031599915", "text": "Mio padre, Tiziano Renzi, ha scritto oggi una lettera pubblicata a pagamento dal Quotidiano Nazionale. Lo ha fatto il giorno dopo la richiesta di archiviazione per Consip e dopo che il Tribunale ha condannato\u2026 Altro Marco Travaglio e il Fatto Quotidiano. Invito soprattutto chi ha insultato mio padre e la mia famiglia a leggere questa lettera. Da parte mia posso solo dire: Ti voglio bene, babbo.\nMATTEORENZI.IT\nTIZIANO RENZI: OGGI DICO BASTA, VENDO TUTTO - Matteo Renzi", "post_text": "Mio padre, Tiziano Renzi, ha scritto oggi una lettera pubblicata a pagamento dal Quotidiano Nazionale. Lo ha fatto il giorno dopo la richiesta di archiviazione per Consip e dopo che il Tribunale ha condannato\u2026 Altro Marco Travaglio e il Fatto Quotidiano. Invito soprattutto chi ha insultato mio padre e la mia famiglia a leggere questa lettera. Da parte mia posso solo dire: Ti voglio bene, babbo.", "shared_text": "MATTEORENZI.IT\nTIZIANO RENZI: OGGI DICO BASTA, VENDO TUTTO - Matteo Renzi", "time": "2018-10-30 16:22:01", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAowWEq3HTyyKUQ&w=476&h=249&url=https%3A%2F%2Fwww.matteorenzi.it%2Fwp-content%2Fuploads%2F2018%2F10%2Ftiziano-renzi.jpg&cfs=1&jq=75&sx=0&sy=0&sw=821&sh=429&ext=jpg&_nc_hash=AQDuQeF1EQh_-F_B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156272031599915&id=113335124914", "link": "https://www.matteorenzi.it/oggi-dico-basta-vendo-tutto/?fbclid=IwAR102zcGUSUWjI_9GnGLLDf4vSBUBckqs-2TCg7H_3pka2pNKD2KfFBWf5Q"} +{"post_id": "938772029647462", "text": "In diretta da Palazzo Giustiniani la top ten della settimana", "post_text": "In diretta da Palazzo Giustiniani la top ten della settimana", "shared_text": "", "time": "2018-10-30 11:34:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=938772029647462&id=113335124914", "link": null} +{"post_id": "10156271245584915", "text": "Dati ISTAT. Dopo quattro anni di crescita, l\u2019Italia si \u00e8 bloccata. Per la prima volta dopo quattro anni il PIL torna a zero. Salvini e Di Maio stanno sfasciando l\u2019Italia. Fermatevi! #PagaIlPopolo", "post_text": "Dati ISTAT. Dopo quattro anni di crescita, l\u2019Italia si \u00e8 bloccata. Per la prima volta dopo quattro anni il PIL torna a zero. Salvini e Di Maio stanno sfasciando l\u2019Italia. Fermatevi! #PagaIlPopolo", "shared_text": "", "time": "2018-10-30 10:15:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156271245584915&id=113335124914", "link": null} +{"post_id": "10156271105694915", "text": "Chi vive in una citt\u00e0 come Firenze, servita perfettamente dalla TAV, si rende conto dell\u2019importanza culturale, economica, sociale dell\u2019Alta Velocit\u00e0. Firenze ormai \u00e8 una tappa della metropolitana d\u2019Italia. Proprio per questo dobbiamo reagire tutti all\u2019assurda volont\u00e0 di distruzione del Movimento Cinque stelle. Dire NO alla Tav non significa dire NO solo alla Torino-Lione, ma dire no alla Venezia-Milano-Parigi.\nI grilloleghisti vogliono isolare l\u2019Italia: questa non \u00e8 politica, questo \u00e8 sadomasochismo.", "post_text": "Chi vive in una citt\u00e0 come Firenze, servita perfettamente dalla TAV, si rende conto dell\u2019importanza culturale, economica, sociale dell\u2019Alta Velocit\u00e0. Firenze ormai \u00e8 una tappa della metropolitana d\u2019Italia. Proprio per questo dobbiamo reagire tutti all\u2019assurda volont\u00e0 di distruzione del Movimento Cinque stelle. Dire NO alla Tav non significa dire NO solo alla Torino-Lione, ma dire no alla Venezia-Milano-Parigi.\nI grilloleghisti vogliono isolare l\u2019Italia: questa non \u00e8 politica, questo \u00e8 sadomasochismo.", "shared_text": "", "time": "2018-10-30 08:11:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156271105694915&id=113335124914", "link": null} +{"post_id": "10156270173979915", "text": "Sono stato in Sinagoga, a Firenze, per testimoniare la vicinanza alla comunit\u00e0 ebraica dopo i terribili fatti di Pittsburgh. Lo considero un dovere di senatore, rappresentante del proprio territorio. Ma lo considero anche un dovere di padre: ricordare alle nuove generazioni che l\u2019odio antisemita va combattuto anche oggi, ancora oggi. E quando penso che ieri a Predappio migliaia di persone inneggiavano al fascismo e ironizzavano su Auschwitz ho voglia di urlare con forza Mai Pi\u00f9 Fascismo. Oggi, in Sinagoga, per non dimenticare, mai.", "post_text": "Sono stato in Sinagoga, a Firenze, per testimoniare la vicinanza alla comunit\u00e0 ebraica dopo i terribili fatti di Pittsburgh. Lo considero un dovere di senatore, rappresentante del proprio territorio. Ma lo considero anche un dovere di padre: ricordare alle nuove generazioni che l\u2019odio antisemita va combattuto anche oggi, ancora oggi. E quando penso che ieri a Predappio migliaia di persone inneggiavano al fascismo e ironizzavano su Auschwitz ho voglia di urlare con forza Mai Pi\u00f9 Fascismo. Oggi, in Sinagoga, per non dimenticare, mai.", "shared_text": "", "time": "2018-10-29 20:56:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156270173979915&id=113335124914", "link": null} +{"post_id": "10156269144139915", "text": "Sono mesi che ripeto: il tempo \u00e8 galantuomo. Sui finti scandali, sulle vere diffamazioni, sui numeri dell\u2019economia: il tempo \u00e8 galantuomo. Oggi lo dico e lo ribadisco con ancora pi\u00f9 forza: nessun risarcimento potr\u00e0 compensare ci\u00f2 che persone innocenti hanno dovuto subire. Ma il tempo \u00e8 galantuomo, oggi pi\u00f9 che mai.", "post_text": "Sono mesi che ripeto: il tempo \u00e8 galantuomo. Sui finti scandali, sulle vere diffamazioni, sui numeri dell\u2019economia: il tempo \u00e8 galantuomo. Oggi lo dico e lo ribadisco con ancora pi\u00f9 forza: nessun risarcimento potr\u00e0 compensare ci\u00f2 che persone innocenti hanno dovuto subire. Ma il tempo \u00e8 galantuomo, oggi pi\u00f9 che mai.", "shared_text": "", "time": "2018-10-29 12:07:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156269144139915&id=113335124914", "link": null} +{"post_id": "10156268933869915", "text": "Ho scritto un articolo in memoria di Gilberto Benetton. Perch\u00e9 trovo incredibile che in un mondo di sciacalli e di codardi vi siano tanti lecchini e ruffiani con i potenti di turno che improvvisamente spariscono nel momento della difficolt\u00e0 e del dolore. E io ho voluto dirlo pubblicamente, sul Gazzettino.\nPARTITODEMOCRATICO.IT\nRenzi: \"Gilberto, esempio in un'epoca di sciacalli\" - Partito Democratico", "post_text": "Ho scritto un articolo in memoria di Gilberto Benetton. Perch\u00e9 trovo incredibile che in un mondo di sciacalli e di codardi vi siano tanti lecchini e ruffiani con i potenti di turno che improvvisamente spariscono nel momento della difficolt\u00e0 e del dolore. E io ho voluto dirlo pubblicamente, sul Gazzettino.", "shared_text": "PARTITODEMOCRATICO.IT\nRenzi: \"Gilberto, esempio in un'epoca di sciacalli\" - Partito Democratico", "time": "2018-10-29 09:38:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t45.1600-4/cp0/e15/q65/spS444/c0.35.479.251a/p320x320/44960606_23843074541860181_4779667832960974848_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=MrUF8o0pz1cAQkGZMqCGLuB5Ea1nQWt7FLu3FMwMieWxL58kCCgNe8edQ&_nc_ht=scontent-cdt1-1.xx&oh=1ba5263921167baf29aa522cc0218b66&oe=5E417966", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156268933869915&id=113335124914", "link": "https://www.partitodemocratico.it/primo-piano/renzi-gilberto-benetton-esempio-in-un-epoca-di-sciacalli/?fbclid=IwAR2hiPzVmGq-H9aDlGArHlYt-UyhDrdFsS1qifJucVHbKBItJg2KR5_1aFA"} +{"post_id": "10156267301184915", "text": "Per me la notizia della settimana viene dagli Stati Uniti.\nL'odio verbale \u00e8 una brutta bestia. Ti insultano e ci stai male. Ti offendono e non ti sembra giusto.\nPoi qualcuno dall'odio verbale passa all'azione.\nL'invasato filo-Trump che ha spedito bombe a Obama, Clinton, Soros, CNN prendendo di mira i bersagli preferiti della destra populista\u2026 Altro americana va processato e punito personalmente. Se uno prende la pistola e spara, ne risponde lui, non altri. Come accaduto a Macerata qualche mese fa con un candidato della Lega, Traini, che ha sparato alla sede del PD e a sei ragazzi di colore. Quello per\u00f2 che la politica dovrebbe fare \u00e8 prendere le distanze nel modo giusto. Mi sarebbe piaciuto vedere Trump invitare Obama alla Casa Bianca per dare insieme un segnale contro la violenza. Mi sarebbe piaciuto vedere un post di Salvini che dopo la condanna di Traini valorizza la lotta contro il razzismo anzich\u00e9 farsi sentire solo quando c'\u00e8 una vittima italiana e un colpevole immigrato.\nMi sarebbe piaciuto, in sostanza, vedere un po' di civilt\u00e0. Quella che purtroppo, anche stavolta, \u00e8 mancata.", "post_text": "Per me la notizia della settimana viene dagli Stati Uniti.\nL'odio verbale \u00e8 una brutta bestia. Ti insultano e ci stai male. Ti offendono e non ti sembra giusto.\nPoi qualcuno dall'odio verbale passa all'azione.\nL'invasato filo-Trump che ha spedito bombe a Obama, Clinton, Soros, CNN prendendo di mira i bersagli preferiti della destra populista\u2026 Altro americana va processato e punito personalmente. Se uno prende la pistola e spara, ne risponde lui, non altri. Come accaduto a Macerata qualche mese fa con un candidato della Lega, Traini, che ha sparato alla sede del PD e a sei ragazzi di colore. Quello per\u00f2 che la politica dovrebbe fare \u00e8 prendere le distanze nel modo giusto. Mi sarebbe piaciuto vedere Trump invitare Obama alla Casa Bianca per dare insieme un segnale contro la violenza. Mi sarebbe piaciuto vedere un post di Salvini che dopo la condanna di Traini valorizza la lotta contro il razzismo anzich\u00e9 farsi sentire solo quando c'\u00e8 una vittima italiana e un colpevole immigrato.\nMi sarebbe piaciuto, in sostanza, vedere un po' di civilt\u00e0. Quella che purtroppo, anche stavolta, \u00e8 mancata.", "shared_text": "", "time": "2018-10-28 17:34:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156267301184915&id=113335124914", "link": null} +{"post_id": "10156262425889915", "text": "Hanno fatto la campagna elettorale dicendo No Tap e oggi ammettono che ovviamente faranno la Tap.\nHanno fatto tutta la campagna elettorale dicendo No Ilva e hanno seguito nostro percorso tenendo ovviamente aperta Ilva.\nCi hanno riempito di fango per tutte le nostre scelte che adesso loro ovviamente confermano a cominciare dagli 80\u20ac. Loro dicono\u2026 Altro di essere il governo del cambiamento. Ed e vero: cambiano sempre idea. Adesso cambieranno idea anche sulla manovra e ovviamente abbasseranno il deficit. Non hanno alternative se non vogliono distruggere le finanze del Paese.\nPer arrivare al potere hanno garantito tutto a tutti. Hanno vinto le elezioni promettendo cose che non potevano realizzare. Si sono presi gioco delle aspettative della gente. Il tempo \u00e8 galantuomo: prima o poi lo scopriranno tutti gli italiani come oggi lo hanno scoperto i No Tap.", "post_text": "Hanno fatto la campagna elettorale dicendo No Tap e oggi ammettono che ovviamente faranno la Tap.\nHanno fatto tutta la campagna elettorale dicendo No Ilva e hanno seguito nostro percorso tenendo ovviamente aperta Ilva.\nCi hanno riempito di fango per tutte le nostre scelte che adesso loro ovviamente confermano a cominciare dagli 80\u20ac. Loro dicono\u2026 Altro di essere il governo del cambiamento. Ed e vero: cambiano sempre idea. Adesso cambieranno idea anche sulla manovra e ovviamente abbasseranno il deficit. Non hanno alternative se non vogliono distruggere le finanze del Paese.\nPer arrivare al potere hanno garantito tutto a tutti. Hanno vinto le elezioni promettendo cose che non potevano realizzare. Si sono presi gioco delle aspettative della gente. Il tempo \u00e8 galantuomo: prima o poi lo scopriranno tutti gli italiani come oggi lo hanno scoperto i No Tap.", "shared_text": "", "time": "2018-10-26 19:19:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156262425889915&id=113335124914", "link": null} +{"post_id": "10156261790979915", "text": "Di Maio dice che \u201cDraghi avvelena il clima\u201d. A questo punto la domanda drammatica \u00e8 se il Vice Presidente del Consiglio della Repubblica Italiana Di Maio c\u2019\u00e8 o ci fa.\nC\u2019\u00e8 una crisi finanziaria alle porte. La gente che pu\u00f2 sta portando i soldi all\u2019estero. Lo spread fa male alle famiglie alle imprese italiane.\nDraghi invita tutti al dialogo e ad\u2026 Altro abbassare i toni per calmare i mercati. E che fa l\u2019ineffabile Gigino? Attacca Draghi!\nPurtroppo Di Maio \u00e8 credibile solo quando si occupa di condoni ma non di economia. L\u2019Italia sta andando a sbattere per colpa della irresponsabilit\u00e0 di gente come Di Maio. E chi gira il mondo se ne rende conto ogni giorno, ogni incontro, ogni istante.", "post_text": "Di Maio dice che \u201cDraghi avvelena il clima\u201d. A questo punto la domanda drammatica \u00e8 se il Vice Presidente del Consiglio della Repubblica Italiana Di Maio c\u2019\u00e8 o ci fa.\nC\u2019\u00e8 una crisi finanziaria alle porte. La gente che pu\u00f2 sta portando i soldi all\u2019estero. Lo spread fa male alle famiglie alle imprese italiane.\nDraghi invita tutti al dialogo e ad\u2026 Altro abbassare i toni per calmare i mercati. E che fa l\u2019ineffabile Gigino? Attacca Draghi!\nPurtroppo Di Maio \u00e8 credibile solo quando si occupa di condoni ma non di economia. L\u2019Italia sta andando a sbattere per colpa della irresponsabilit\u00e0 di gente come Di Maio. E chi gira il mondo se ne rende conto ogni giorno, ogni incontro, ogni istante.", "shared_text": "", "time": "2018-10-26 13:25:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156261790979915&id=113335124914", "link": null} +{"post_id": "10156261628134915", "text": "Chongqing \u00e8 la citt\u00e0 pi\u00f9 popolosa del mondo: pi\u00f9 di 30 milioni di persone abitano questa metropoli cinese. Una citt\u00e0 che ha da sola il 50% dell\u2019intera popolazione italiana.\nSono qui per due giorni di conferenze ma ho scelto di passare a salutare i ragazzi del Sant\u2019Anna di Pisa, la prima istituzione di ricerca che ha capito l\u2019importanza di questo\u2026 Altro territorio. Sono bravissimi ragazzi e prof del Sant\u2019Anna, bravissimi.\nIl neonato consolato generale di Chongqing serve un territorio di circa 200 milioni di persone, tre volte l\u2019Italia. Abbiamo una marea di possibilit\u00e0, opportunit\u00e0.\nPensate ai turisti, agli studenti, allo scambio commerciale. Non dobbiamo aver paura del mondo globale ma valorizzare\u2026 Altro", "post_text": "Chongqing \u00e8 la citt\u00e0 pi\u00f9 popolosa del mondo: pi\u00f9 di 30 milioni di persone abitano questa metropoli cinese. Una citt\u00e0 che ha da sola il 50% dell\u2019intera popolazione italiana.\nSono qui per due giorni di conferenze ma ho scelto di passare a salutare i ragazzi del Sant\u2019Anna di Pisa, la prima istituzione di ricerca che ha capito l\u2019importanza di questo\u2026 Altro territorio. Sono bravissimi ragazzi e prof del Sant\u2019Anna, bravissimi.\nIl neonato consolato generale di Chongqing serve un territorio di circa 200 milioni di persone, tre volte l\u2019Italia. Abbiamo una marea di possibilit\u00e0, opportunit\u00e0.\nPensate ai turisti, agli studenti, allo scambio commerciale. Non dobbiamo aver paura del mondo globale ma valorizzare\u2026 Altro", "shared_text": "", "time": "2018-10-26 11:24:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156261628134915&id=113335124914", "link": null} +{"post_id": "10156259866044915", "text": "Fare ragionamenti semplici non va di moda, si preferisce urlare. Ma proviamoci insieme, almeno noi, amici. L\u2019Europa boccia la manovra italiana. Salvini risponde col suo stile: \u201cMe ne frego!\u201d. E prosegue il Ministro: faremo una grande alleanza tra populisti e vinceremo noi le prossime elezioni, cambiando l\u2019Europa. Solo che in questi giorni TUTTI gli\u2026 Altro alleati europei di Salvini, nazionalisti e populisti, stanno dicendo che la manovra Italiana \u00e8 folle e va bocciata. Stamattina lo ha detto anche la destra tedesca di AFD. E questo lo dicono gli alleati, ti immagini gli avversari. La domanda sorge spontanea: ma se tutti vogliono bocciare l\u2019Italia di Salvini con chi la fa l\u2019alleanza la Lega? Nel frattempo gli italiani hanno perso in sei mesi 300 miliardi di \u20ac. Stanno sfasciando l\u2019economia senza mantenere le promesse elettorali: un autogol semplicemente impressionante. Gli speculatori internazionali godono, le famiglie italiane pagano, il Nord leghista prima o poi si render\u00e0 conto che questa non \u00e8 una manovra: \u00e8 un suicidio finanziario senza precedenti. E il conto lo pagano gli italiani.", "post_text": "Fare ragionamenti semplici non va di moda, si preferisce urlare. Ma proviamoci insieme, almeno noi, amici. L\u2019Europa boccia la manovra italiana. Salvini risponde col suo stile: \u201cMe ne frego!\u201d. E prosegue il Ministro: faremo una grande alleanza tra populisti e vinceremo noi le prossime elezioni, cambiando l\u2019Europa. Solo che in questi giorni TUTTI gli\u2026 Altro alleati europei di Salvini, nazionalisti e populisti, stanno dicendo che la manovra Italiana \u00e8 folle e va bocciata. Stamattina lo ha detto anche la destra tedesca di AFD. E questo lo dicono gli alleati, ti immagini gli avversari. La domanda sorge spontanea: ma se tutti vogliono bocciare l\u2019Italia di Salvini con chi la fa l\u2019alleanza la Lega? Nel frattempo gli italiani hanno perso in sei mesi 300 miliardi di \u20ac. Stanno sfasciando l\u2019economia senza mantenere le promesse elettorali: un autogol semplicemente impressionante. Gli speculatori internazionali godono, le famiglie italiane pagano, il Nord leghista prima o poi si render\u00e0 conto che questa non \u00e8 una manovra: \u00e8 un suicidio finanziario senza precedenti. E il conto lo pagano gli italiani.", "shared_text": "", "time": "2018-10-25 14:35:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156259866044915&id=113335124914", "link": null} +{"post_id": "187041425545057", "text": "Questi, in un servizio di Agor\u00e0 - RAI 3, sono gli operai del Terzo Valico, un\u2019opera pubblica che il nostro Governo ha finanziato e che serve moltissimo a Genova e a tutta la Liguria.\nIl ministro Toninelli la\u2026 Altro vuole inspiegabilmente bloccare: le \u201cbrillanti intuizioni\u201d di quest\u2019uomo sono ormai un problema anche per chi ha votato Cinque Stelle e Lega, figuratevi per gli altri.\nGli operai urlano: vogliamo lavorare.\nSiamo alla follia. C\u2019\u00e8 un\u2019opera pubblica che serve, ci sono i fondi gi\u00e0 stanziati, c\u2019\u00e8 la gente che lavora. E un ministro che vuole bloccare tutto per dare (forse) agli operai il reddito di cittadinanza. E la gente urla: vogliamo lavoro, non reddito di cittadinanza.\nBloccare le opere pubbliche significa bloccare il futuro dell\u2019Italia", "post_text": "Questi, in un servizio di Agor\u00e0 - RAI 3, sono gli operai del Terzo Valico, un\u2019opera pubblica che il nostro Governo ha finanziato e che serve moltissimo a Genova e a tutta la Liguria.\nIl ministro Toninelli la\u2026 Altro vuole inspiegabilmente bloccare: le \u201cbrillanti intuizioni\u201d di quest\u2019uomo sono ormai un problema anche per chi ha votato Cinque Stelle e Lega, figuratevi per gli altri.\nGli operai urlano: vogliamo lavorare.\nSiamo alla follia. C\u2019\u00e8 un\u2019opera pubblica che serve, ci sono i fondi gi\u00e0 stanziati, c\u2019\u00e8 la gente che lavora. E un ministro che vuole bloccare tutto per dare (forse) agli operai il reddito di cittadinanza. E la gente urla: vogliamo lavoro, non reddito di cittadinanza.\nBloccare le opere pubbliche significa bloccare il futuro dell\u2019Italia", "shared_text": "", "time": "2018-10-25 12:33:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=187041425545057&id=113335124914", "link": null} +{"post_id": "10156257117299915", "text": "L'Europa dice che l'Italia grillo-leghista non rispetta le regole. E allora un eurodeputato leghista, tal Ciocca, fa una sceneggiata ridicola: con la sua scarpa \"Made in Italy\" pesta volontariamente gli appunti del Commissario Europeo Moscovici.\n\"Giustizia \u00e8 fatta, l'Italia recupera la sua dignit\u00e0\", commentano i leghisti. Pestando documenti?\nUna scena imbarazzante per il nostro Paese.\nMa perch\u00e9 farsi coprire di ridicolo cos\u00ec?\nAgli occhi dei giornalisti di tutto il mondo \u00e8 una farsa, per i portafogli delle famiglie italiane \u00e8 una tragedia.", "post_text": "L'Europa dice che l'Italia grillo-leghista non rispetta le regole. E allora un eurodeputato leghista, tal Ciocca, fa una sceneggiata ridicola: con la sua scarpa \"Made in Italy\" pesta volontariamente gli appunti del Commissario Europeo Moscovici.\n\"Giustizia \u00e8 fatta, l'Italia recupera la sua dignit\u00e0\", commentano i leghisti. Pestando documenti?\nUna scena imbarazzante per il nostro Paese.\nMa perch\u00e9 farsi coprire di ridicolo cos\u00ec?\nAgli occhi dei giornalisti di tutto il mondo \u00e8 una farsa, per i portafogli delle famiglie italiane \u00e8 una tragedia.", "shared_text": "", "time": "2018-10-24 09:12:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156257117299915&id=113335124914", "link": null} +{"post_id": "258677514845716", "text": "Io sono fiero e orgoglioso del mio amico e collega Davide Faraone, padre di una meravigliosa bambina autistica. La sua piccola Sara non meritava e non merita gli insulti di Beppe Grillo e le risatine stupide di chi lo applaudiva al Circo Massimo. Lo ripeto qui: Beppe Grillo, fai schifo.", "post_text": "Io sono fiero e orgoglioso del mio amico e collega Davide Faraone, padre di una meravigliosa bambina autistica. La sua piccola Sara non meritava e non merita gli insulti di Beppe Grillo e le risatine stupide di chi lo applaudiva al Circo Massimo. Lo ripeto qui: Beppe Grillo, fai schifo.", "shared_text": "", "time": "2018-10-23 20:39:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=258677514845716&id=113335124914", "link": null} +{"post_id": "10156255631229915", "text": "Per anni abbiamo lottato per recuperare credibilit\u00e0 in Europa e sui mercati. Adesso Salvini e Di Maio, con il loro portavoce Conte, sfasciano la tenuta economica del Paese. E il dramma \u00e8 che non riusciranno comunque a mantenere le folli promesse elettorali neanche con il deficit al 2.4%.\n\"Ma a quale titolo tu ancora parli?\", si chiederanno i\u2026 Altro troll.\n\"Come uno che ha portato lo spread sotto quota 100. Adesso \u00e8 sopra 300. E con lo spread sopra 300 le famiglie italiane piangono, gli speculatori internazionali godono\"\nAl motto di \"me ne frego dell'Europa\" stanno portando il Paese in recessione.\nFermatevi, l'Italia non merita una nuova crisi finanziaria.", "post_text": "Per anni abbiamo lottato per recuperare credibilit\u00e0 in Europa e sui mercati. Adesso Salvini e Di Maio, con il loro portavoce Conte, sfasciano la tenuta economica del Paese. E il dramma \u00e8 che non riusciranno comunque a mantenere le folli promesse elettorali neanche con il deficit al 2.4%.\n\"Ma a quale titolo tu ancora parli?\", si chiederanno i\u2026 Altro troll.\n\"Come uno che ha portato lo spread sotto quota 100. Adesso \u00e8 sopra 300. E con lo spread sopra 300 le famiglie italiane piangono, gli speculatori internazionali godono\"\nAl motto di \"me ne frego dell'Europa\" stanno portando il Paese in recessione.\nFermatevi, l'Italia non merita una nuova crisi finanziaria.", "shared_text": "", "time": "2018-10-23 16:51:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156255631229915&id=113335124914", "link": null} +{"post_id": "108737243409460", "text": "In diretta dal Senato la top ten della settimana", "post_text": "In diretta dal Senato la top ten della settimana", "shared_text": "", "time": "2018-10-23 10:36:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=108737243409460&id=113335124914", "link": null} +{"post_id": "10156254970324915", "text": "Alle 10.30 vi aspetto qui su Facebook per la top ten della settimana. A dopo!", "post_text": "Alle 10.30 vi aspetto qui su Facebook per la top ten della settimana. A dopo!", "shared_text": "", "time": "2018-10-23 09:14:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/44541333_10156254970279915_2051468455802044416_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=3RoA5GBnU4oAQkDIFAf-ANEobdzl8XItzYL41yf2jAoE5J_Hwzd9WM0KQ&_nc_ht=scontent-cdt1-1.xx&oh=037d9f786c694d07c04d2d18e3c40536&oe=5E4607FD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156254970324915&id=113335124914", "link": null} +{"post_id": "10156253070189915", "text": "Una notizia personale.\nOggi \u00e8 arrivata la prima decisione su una (lunga) serie di azioni civili intentate da mio padre, Tiziano Renzi, nei confronti di Marco Travaglio e del Fatto Quotidiano. La prima di oggi vede la condanna del direttore Travaglio, di una sua giornalista e della societ\u00e0 editoriale per una cifra di 95.000\u20ac (Novantacinquemila). \u2026 Altro\nNiente potr\u00e0 ripagare l'enorme mole di fango buttata addosso alla mia famiglia, a mio padre, alla sua salute.\nUna campagna di odio senza precedenti.\nMa qualcuno inizia a pagare almeno i danni.\nVolevo condividerlo con voi.\nBuona giornata, amici", "post_text": "Una notizia personale.\nOggi \u00e8 arrivata la prima decisione su una (lunga) serie di azioni civili intentate da mio padre, Tiziano Renzi, nei confronti di Marco Travaglio e del Fatto Quotidiano. La prima di oggi vede la condanna del direttore Travaglio, di una sua giornalista e della societ\u00e0 editoriale per una cifra di 95.000\u20ac (Novantacinquemila). \u2026 Altro\nNiente potr\u00e0 ripagare l'enorme mole di fango buttata addosso alla mia famiglia, a mio padre, alla sua salute.\nUna campagna di odio senza precedenti.\nMa qualcuno inizia a pagare almeno i danni.\nVolevo condividerlo con voi.\nBuona giornata, amici", "shared_text": "", "time": "2018-10-22 13:27:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156253070189915&id=113335124914", "link": null} +{"post_id": "10156252890454915", "text": "Ieri i 5Stelle hanno chiuso il proprio evento al Circo Massimo con gli insulti di Beppe Grillo al Capo dello Stato italiano, al Capo dello Stato francese, all'Opposizione. E il noto pregiudicato genovese, non pago, ha pensato bene di insultare anche le persone che soffrono per l'autismo.\nChi ha un figlio con disturbi allo spettro autistico\u2026 Altro combatte ogni giorno perch\u00e9 il suo bambino non venga discriminato. Che vergogna vedere il primo partito italiano che chiude la propria festa annuale con parole di scherno verso queste famiglie.\nSiamo diversi dai 5Stelle non solo per il garantismo contro il giustizialismo, il lavoro contro il reddito di cittadinanza, la legalit\u00e0 contro i condoni. Ma siamo diversi anche sui diritti: noi siamo quelli della legge sull'autismo, sul terzo settore, sul dopo di noi.\nInsultare Mattarella o Macron \u00e8 inaccettabile per una forza politica. Ma nella mia scala di valori prendersi gioco di un bambino autistico \u00e8 peggio che offendere il Presidente della Repubblica.\nSenza giri di parole: Beppe Grillo, per me fai schifo.", "post_text": "Ieri i 5Stelle hanno chiuso il proprio evento al Circo Massimo con gli insulti di Beppe Grillo al Capo dello Stato italiano, al Capo dello Stato francese, all'Opposizione. E il noto pregiudicato genovese, non pago, ha pensato bene di insultare anche le persone che soffrono per l'autismo.\nChi ha un figlio con disturbi allo spettro autistico\u2026 Altro combatte ogni giorno perch\u00e9 il suo bambino non venga discriminato. Che vergogna vedere il primo partito italiano che chiude la propria festa annuale con parole di scherno verso queste famiglie.\nSiamo diversi dai 5Stelle non solo per il garantismo contro il giustizialismo, il lavoro contro il reddito di cittadinanza, la legalit\u00e0 contro i condoni. Ma siamo diversi anche sui diritti: noi siamo quelli della legge sull'autismo, sul terzo settore, sul dopo di noi.\nInsultare Mattarella o Macron \u00e8 inaccettabile per una forza politica. Ma nella mia scala di valori prendersi gioco di un bambino autistico \u00e8 peggio che offendere il Presidente della Repubblica.\nSenza giri di parole: Beppe Grillo, per me fai schifo.", "shared_text": "", "time": "2018-10-22 10:56:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156252890454915&id=113335124914", "link": null} +{"post_id": "10156251382329915", "text": "Salvini su Facebook dice che io ho massacrato gli italiani, che sono stato licenziato dagli elettori e che l\u2019ho insultato. In ordine:\n1. Qui c\u2019\u00e8 il cartellone sui risultati 2014-2018, altro che massacro. Noi\u2026 Altro abbiamo fatto ripartire l\u2019Italia.\n2. Noi abbiamo preso il 18% alle elezioni, lui il 17%. Se loro governano e noi no \u00e8 solo perch\u00e9 noi non ci siamo svenduti ai cinque stelle per una poltrona come invece ha fatto la Lega\n3. Non ho insultato Salvini. Ho solo detto che la cialtronaggine del Governo ha fatto crescere lo spread da 100 a 300: sono 5 miliardi di euro che paghiamo tutti.\nQuesti sono i fatti, Salvini. Il resto \u00e8 propaganda. Buona domenica a tutti", "post_text": "Salvini su Facebook dice che io ho massacrato gli italiani, che sono stato licenziato dagli elettori e che l\u2019ho insultato. In ordine:\n1. Qui c\u2019\u00e8 il cartellone sui risultati 2014-2018, altro che massacro. Noi\u2026 Altro abbiamo fatto ripartire l\u2019Italia.\n2. Noi abbiamo preso il 18% alle elezioni, lui il 17%. Se loro governano e noi no \u00e8 solo perch\u00e9 noi non ci siamo svenduti ai cinque stelle per una poltrona come invece ha fatto la Lega\n3. Non ho insultato Salvini. Ho solo detto che la cialtronaggine del Governo ha fatto crescere lo spread da 100 a 300: sono 5 miliardi di euro che paghiamo tutti.\nQuesti sono i fatti, Salvini. Il resto \u00e8 propaganda. Buona domenica a tutti", "shared_text": "", "time": "2018-10-21 18:04:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/44574592_10156251382289915_437758043359281152_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=qgij1jqBznEAQkdiODAUezcgOrb-7UfSXWqQfaeDR4gIGucWuYYAPuerA&_nc_ht=scontent-cdt1-1.xx&oh=5cd5a059adf48eb8afc27df230fdf177&oe=5E4B2253", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156251382329915&id=113335124914", "link": null} +{"post_id": "10156251207369915", "text": "Non ho pi\u00f9 parole per dire quanto la #Leopolda9 mi abbia commosso, colpito, convinto. Grazie a chi c\u2019era, di persona e in streaming. Grazie a chi ci crede, oggi pi\u00f9 di ieri. Abbiamo un Governo che vuole\u2026 Altro distruggere l\u2019economia italiana e i valori europei. Dobbiamo fermarli a partire dai comitati civici \u201cRitorno al futuro\u201d.\nInizia una strada nuova, facciamola insieme. Grazie alle migliaia di persone che condividono questo progetto.\nBuona domenica, amici", "post_text": "Non ho pi\u00f9 parole per dire quanto la #Leopolda9 mi abbia commosso, colpito, convinto. Grazie a chi c\u2019era, di persona e in streaming. Grazie a chi ci crede, oggi pi\u00f9 di ieri. Abbiamo un Governo che vuole\u2026 Altro distruggere l\u2019economia italiana e i valori europei. Dobbiamo fermarli a partire dai comitati civici \u201cRitorno al futuro\u201d.\nInizia una strada nuova, facciamola insieme. Grazie alle migliaia di persone che condividono questo progetto.\nBuona domenica, amici", "shared_text": "", "time": "2018-10-21 16:27:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/44480988_10156251207064915_8299298200938872832_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=tjT-ofdEZugAQkvEb8kRhwXoZg-y9iJtEz7HVypcF4BU4fDa8AvOw4pSA&_nc_ht=scontent-cdt1-1.xx&oh=6eca2bb90eccef7c9316cb4e6ebf2f28&oe=5E87682A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156251207369915&id=113335124914", "link": null} +{"post_id": "344037412809213", "text": "In diretta dalla #Leopolda9", "post_text": "In diretta dalla #Leopolda9", "shared_text": "", "time": "2018-10-21 13:03:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=344037412809213&id=113335124914", "link": null} +{"post_id": "10156250663674915", "text": "Dalle 7 di stamani ci sono code fuori dalla Leopolda.\nNon era mai successo prima.\nNon trovo le parole giuste per dire quanto mi colpisca nel profondo del cuore questa vostra voglia di non mollare, di continuare a combattere, di costruire il futuro.\nC'\u00e8 voglia di resistenza culturale, c'\u00e8 voglia di tornare al futuro. Ci siamo, eccoci: si parte per l'ultima giornata. Prima, per\u00f2, un grande abbraccio a tutti e il mio grazie.", "post_text": "Dalle 7 di stamani ci sono code fuori dalla Leopolda.\nNon era mai successo prima.\nNon trovo le parole giuste per dire quanto mi colpisca nel profondo del cuore questa vostra voglia di non mollare, di continuare a combattere, di costruire il futuro.\nC'\u00e8 voglia di resistenza culturale, c'\u00e8 voglia di tornare al futuro. Ci siamo, eccoci: si parte per l'ultima giornata. Prima, per\u00f2, un grande abbraccio a tutti e il mio grazie.", "shared_text": "", "time": "2018-10-21 09:36:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156250663674915&id=113335124914", "link": null} +{"post_id": "10156249325479915", "text": "La Leopolda non si spiega, si vive.\nE vivendola si incontrano persone diverse.\nSindaci che curano la propria comunit\u00e0, un professore che combatte l'ignoranza e difende i vaccini, uno scienziato che costruisce il futuro, giornaliste che difendono la libert\u00e0 e lottano. Un uomo di spettacolo che sceglie di stare al gioco e alterna battute a\u2026 Altro riflessioni profonde, serie, sulla vita. Cinquanta tavoli che discutono per ore sul futuro di questo meraviglioso Paese. E centinaia di persone pronte a lanciare i comitati civici in ogni angolo dell'Italia.\nMi scuso con le oltre mille persone rimaste fuori dai cancelli. Migliaia di persone dentro, migliaia di persone fuori: e meno male che ci considerano\u2026 Altro", "post_text": "La Leopolda non si spiega, si vive.\nE vivendola si incontrano persone diverse.\nSindaci che curano la propria comunit\u00e0, un professore che combatte l'ignoranza e difende i vaccini, uno scienziato che costruisce il futuro, giornaliste che difendono la libert\u00e0 e lottano. Un uomo di spettacolo che sceglie di stare al gioco e alterna battute a\u2026 Altro riflessioni profonde, serie, sulla vita. Cinquanta tavoli che discutono per ore sul futuro di questo meraviglioso Paese. E centinaia di persone pronte a lanciare i comitati civici in ogni angolo dell'Italia.\nMi scuso con le oltre mille persone rimaste fuori dai cancelli. Migliaia di persone dentro, migliaia di persone fuori: e meno male che ci considerano\u2026 Altro", "shared_text": "", "time": "2018-10-20 19:25:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156249325479915&id=113335124914", "link": null} +{"post_id": "2145264055800727", "text": "In diretta dalla #Leopolda9 #RitornoAlFuturo", "post_text": "In diretta dalla #Leopolda9 #RitornoAlFuturo", "shared_text": "", "time": "2018-10-20 14:50:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2145264055800727&id=113335124914", "link": null} +{"post_id": "10156248314099915", "text": "Ieri sera la Leopolda9 ha tributato un applauso lunghissimo a Pier Carlo Padoan. Migliaia di persone si sono alzate in piedi per dire grazie a chi in questi anni ha aiutato il Paese a passare dalla recessione alla crescita. E questo \u00e8 avvenuto proprio nelle ore in cui, per colpa dell'arroganza di questo Governo, l'Italia riceveva la bocciatura\u2026 Altro delle agenzie di Rating. Proprio quando al Governo ci sono quelli che ci hanno fatto declassare, proprio quando Salvini e Di Maio regalano pezzi di Italia alla speculazione internazionale \u00e8 pi\u00f9 facile riconoscere il valore di persone come Padoan. La competenza contro la cialtronaggine, la seriet\u00e0 contro le bugie, la politica contro il populismo. Anche questa \u00e8 la #Leopolda9", "post_text": "Ieri sera la Leopolda9 ha tributato un applauso lunghissimo a Pier Carlo Padoan. Migliaia di persone si sono alzate in piedi per dire grazie a chi in questi anni ha aiutato il Paese a passare dalla recessione alla crescita. E questo \u00e8 avvenuto proprio nelle ore in cui, per colpa dell'arroganza di questo Governo, l'Italia riceveva la bocciatura\u2026 Altro delle agenzie di Rating. Proprio quando al Governo ci sono quelli che ci hanno fatto declassare, proprio quando Salvini e Di Maio regalano pezzi di Italia alla speculazione internazionale \u00e8 pi\u00f9 facile riconoscere il valore di persone come Padoan. La competenza contro la cialtronaggine, la seriet\u00e0 contro le bugie, la politica contro il populismo. Anche questa \u00e8 la #Leopolda9", "shared_text": "", "time": "2018-10-20 09:21:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156248314099915&id=113335124914", "link": null} +{"post_id": "10156247575554915", "text": "Sono appena tornato a casa mentre i ragazzi under30 in Leopolda continuano a discutere attorno ai tavoli.\nDifficile spiegare le emozioni di una serata come questa. Quando si perdono le elezioni molti dirigenti politici scendono dal carro. Tanti che hanno avuto moltissimo si dimenticano del passato e sanno solo contestare: qualcuno chiamava questo\u2026 Altro atteggiamento \"sindrome del beneficiato rancoroso\". Ma chi non ha avuto niente, perch\u00e9 ha sempre dato; chi non scende dal carro, perch\u00e9 il carro l'ha sempre spinto; chi fa politica per passione e non per interesse oggi - dalla Leopolda - ci ha dato una lezione meravigliosa. Quest'anno, dopo la sconfitta, c'era il doppio della gente dello scorso\u2026 Altro", "post_text": "Sono appena tornato a casa mentre i ragazzi under30 in Leopolda continuano a discutere attorno ai tavoli.\nDifficile spiegare le emozioni di una serata come questa. Quando si perdono le elezioni molti dirigenti politici scendono dal carro. Tanti che hanno avuto moltissimo si dimenticano del passato e sanno solo contestare: qualcuno chiamava questo\u2026 Altro atteggiamento \"sindrome del beneficiato rancoroso\". Ma chi non ha avuto niente, perch\u00e9 ha sempre dato; chi non scende dal carro, perch\u00e9 il carro l'ha sempre spinto; chi fa politica per passione e non per interesse oggi - dalla Leopolda - ci ha dato una lezione meravigliosa. Quest'anno, dopo la sconfitta, c'era il doppio della gente dello scorso\u2026 Altro", "shared_text": "", "time": "2018-10-20 00:13:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156247575554915&id=113335124914", "link": null} +{"post_id": "2063115187073266", "text": "In diretta dalla Stazione Leopolda\n#Leopolda9 #RitornoAlFuturo", "post_text": "In diretta dalla Stazione Leopolda\n#Leopolda9 #RitornoAlFuturo", "shared_text": "", "time": "2018-10-19 21:15:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2063115187073266&id=113335124914", "link": null} +{"post_id": "10156246225084915", "text": "Pazzesche le ragazze del volley, pazzesche. Viva l\u2019Italia, viva queste campionesse strepitose!", "post_text": "Pazzesche le ragazze del volley, pazzesche. Viva l\u2019Italia, viva queste campionesse strepitose!", "shared_text": "", "time": "2018-10-19 12:02:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156246225084915&id=113335124914", "link": null} +{"post_id": "10156246073489915", "text": "In attesa di vederci stasera alla Leopolda, saremo in diretta streaming dalle 21, ho fatto una chiacchierata con gli amici di FanPage.\nLa trovate qui. Buona giornata amici.", "post_text": "In attesa di vederci stasera alla Leopolda, saremo in diretta streaming dalle 21, ho fatto una chiacchierata con gli amici di FanPage.\nLa trovate qui. Buona giornata amici.", "shared_text": "", "time": "2018-10-19 10:00:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=182066972678932&id=113335124914", "link": null} +{"post_id": "10156244573764915", "text": "Lo spread galoppa oltre 300. Questo governo fa male all\u2019Italia.\nDomani alla Leopolda insieme a Padoan offriamo al Governo una proposta per dimezzare lo spread e abbassare le tasse. Non basta criticare, bisogna anche proporre. Ma bisogna sbrigarsi perch\u00e9 questi stanno mandando l\u2019economia italiana a sbattere.\n#RitornoAlFuturo", "post_text": "Lo spread galoppa oltre 300. Questo governo fa male all\u2019Italia.\nDomani alla Leopolda insieme a Padoan offriamo al Governo una proposta per dimezzare lo spread e abbassare le tasse. Non basta criticare, bisogna anche proporre. Ma bisogna sbrigarsi perch\u00e9 questi stanno mandando l\u2019economia italiana a sbattere.\n#RitornoAlFuturo", "shared_text": "", "time": "2018-10-18 17:47:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156244573764915&id=113335124914", "link": null} +{"post_id": "1864384767012932", "text": "In diretta dal Senato parliamo di Leopolda e molto altro", "post_text": "In diretta dal Senato parliamo di Leopolda e molto altro", "shared_text": "", "time": "2018-10-18 16:03:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1864384767012932&id=113335124914", "link": null} +{"post_id": "10156244147544915", "text": "Oggi alle 16 dal Senato parleremo di Leopolda e di molto altro. Vi aspetto in diretta Facebook", "post_text": "Oggi alle 16 dal Senato parleremo di Leopolda e di molto altro. Vi aspetto in diretta Facebook", "shared_text": "", "time": "2018-10-18 13:55:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/44332007_10156244146899915_1693900728919130112_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=JP36CZNZtlUAQlhO7RoK5kDHH0MjT5dINW0i-2PJ-a5ac_y-V4p9fJ2rg&_nc_ht=scontent-cdt1-1.xx&oh=21478a9d74581c6a9b606f6b4e07ec07&oe=5E4346AA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156244147544915&id=113335124914", "link": null} +{"post_id": "10156242873599915", "text": "Luigi Di Maio \u00e8 un uomo disperato.\nSi \u00e8 accorto in ritardo di aver dato il via libera ad un condono. Prima ha votato il testo del decreto legge, poi ha detto che glielo hanno cambiato e si \u00e8 rimangiato tutto.\nE adesso va in TV a dire \"Renzi faceva condono e scudo fiscale\". Falso! Noi non abbiamo mai fatto n\u00e9 condono, n\u00e9 scudo fiscale. Ma il\u2026 Altro problema non \u00e8 questo.\nUn qualsiasi studente di giurisprudenza al primo anno sarebbe in grado di spiegare al Vice Presidente del Consiglio quanto sia imbarazzante la sua mediocrit\u00e0.\nLa domanda sorge spontanea: \"Luigi Di Maio sa almeno leggere? Riesce a capire il senso delle cose che firma o che vota?\"\nTemo di no.", "post_text": "Luigi Di Maio \u00e8 un uomo disperato.\nSi \u00e8 accorto in ritardo di aver dato il via libera ad un condono. Prima ha votato il testo del decreto legge, poi ha detto che glielo hanno cambiato e si \u00e8 rimangiato tutto.\nE adesso va in TV a dire \"Renzi faceva condono e scudo fiscale\". Falso! Noi non abbiamo mai fatto n\u00e9 condono, n\u00e9 scudo fiscale. Ma il\u2026 Altro problema non \u00e8 questo.\nUn qualsiasi studente di giurisprudenza al primo anno sarebbe in grado di spiegare al Vice Presidente del Consiglio quanto sia imbarazzante la sua mediocrit\u00e0.\nLa domanda sorge spontanea: \"Luigi Di Maio sa almeno leggere? Riesce a capire il senso delle cose che firma o che vota?\"\nTemo di no.", "shared_text": "", "time": "2018-10-17 21:03:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156242873599915&id=113335124914", "link": null} +{"post_id": "10156242388444915", "text": "Il condono fiscale \u00e8 un atto assurdo. Dice ai cittadini che pagare le tasse non conviene, che chi paga le tasse sbaglia. Alla fine il paradosso \u00e8 che la Flat Tax l'hanno fatta soltanto per gli evasori che con il 20% secco sistemeranno il pregresso.\nMa peggio del condono fiscale c'\u00e8 solo il condono edilizio. Oggi al Senato avreste dovuto vedere le\u2026 Altro facce del Movimento Cinque Stelle quando abbiamo attaccato sul condono tombale per le case abusive di Ischia.\nGrillini e leghisti lo hanno infilato di nascosto nel Decreto sull'Emergenza Genova (che poi qualcuno si chieder\u00e0 che cosa c'entri Ischia con il ponte di Genova). Potrebbero essere salvate trentamila case costruite in modo abusivo: a me\u2026 Altro", "post_text": "Il condono fiscale \u00e8 un atto assurdo. Dice ai cittadini che pagare le tasse non conviene, che chi paga le tasse sbaglia. Alla fine il paradosso \u00e8 che la Flat Tax l'hanno fatta soltanto per gli evasori che con il 20% secco sistemeranno il pregresso.\nMa peggio del condono fiscale c'\u00e8 solo il condono edilizio. Oggi al Senato avreste dovuto vedere le\u2026 Altro facce del Movimento Cinque Stelle quando abbiamo attaccato sul condono tombale per le case abusive di Ischia.\nGrillini e leghisti lo hanno infilato di nascosto nel Decreto sull'Emergenza Genova (che poi qualcuno si chieder\u00e0 che cosa c'entri Ischia con il ponte di Genova). Potrebbero essere salvate trentamila case costruite in modo abusivo: a me\u2026 Altro", "shared_text": "", "time": "2018-10-17 16:25:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156242388444915&id=113335124914", "link": null} +{"post_id": "10156240819754915", "text": "Abbiamo un Governo che sta mettendo seriamente a rischio i conti pubblici. Ho provato stasera da Floris a spiegare il perch\u00e9 prima che qualche giornalista ci rinfacciasse con astio tutto il passato.\nIo non mi vergogno del nostro passato: abbiamo fatto tante cose, molte utili per il nostro Paese. E abbiamo restituito il segno pi\u00f9 alla crescita,\u2026 Altro dopo anni di crisi.\nMa adesso \u00e8 tempo di parlare di futuro.\nL'Italia non torner\u00e0 grande con i condoni e l'assistenzialismo: la strada di Salvini e Di Maio non porta in Europa, porta in Venezuela. E allora abbiamo bisogno di tracciare una strada per il futuro. Insieme da venerd\u00ec sera ci proveremo alla stazione Leopolda. Tutti insieme, con il sorriso sulle labbra e lasciando l'odio a chi vive di quello.\nBuona serata, amici. Vi aspetto in Leopolda", "post_text": "Abbiamo un Governo che sta mettendo seriamente a rischio i conti pubblici. Ho provato stasera da Floris a spiegare il perch\u00e9 prima che qualche giornalista ci rinfacciasse con astio tutto il passato.\nIo non mi vergogno del nostro passato: abbiamo fatto tante cose, molte utili per il nostro Paese. E abbiamo restituito il segno pi\u00f9 alla crescita,\u2026 Altro dopo anni di crisi.\nMa adesso \u00e8 tempo di parlare di futuro.\nL'Italia non torner\u00e0 grande con i condoni e l'assistenzialismo: la strada di Salvini e Di Maio non porta in Europa, porta in Venezuela. E allora abbiamo bisogno di tracciare una strada per il futuro. Insieme da venerd\u00ec sera ci proveremo alla stazione Leopolda. Tutti insieme, con il sorriso sulle labbra e lasciando l'odio a chi vive di quello.\nBuona serata, amici. Vi aspetto in Leopolda", "shared_text": "", "time": "2018-10-16 22:34:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156240819754915&id=113335124914", "link": null} +{"post_id": "10156239655729915", "text": "Dovevano abolire la povert\u00e0 e invece l\u2019Italia torner\u00e0 in recessione. Doveva essere il Governo del Cambiamento e invece \u00e8 il Governo del Condono. Hanno vinto le elezioni promettendo mari e monti ma adesso \u00e8 chiaro che pagano con assegni a vuoto.", "post_text": "Dovevano abolire la povert\u00e0 e invece l\u2019Italia torner\u00e0 in recessione. Doveva essere il Governo del Cambiamento e invece \u00e8 il Governo del Condono. Hanno vinto le elezioni promettendo mari e monti ma adesso \u00e8 chiaro che pagano con assegni a vuoto.", "shared_text": "", "time": "2018-10-16 09:37:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156239655729915&id=113335124914", "link": null} +{"post_id": "10156238364139915", "text": "Anche oggi Salvini attacca Juncker.\nChe noia, sempre i soliti slogan.\nLe idee del Presidente della Commissione, per lui, sono \"solo chiacchiere\". Ma come fa il Ministro dell'Interno italiano a voler cambiare le cose in Europa se non ci mette mai piede? Ancora venerd\u00ec scorso si \u00e8 svolto un vertice di ministri e lui non ci \u00e8 andato, preferendo - dice lui - restare in Italia e andare a correre sotto l'acqua.\nSe vuoi cambiare le cose in Europa, almeno partecipa alle riunioni. Oppure smetti di prendere in giro i tuoi concittadini.", "post_text": "Anche oggi Salvini attacca Juncker.\nChe noia, sempre i soliti slogan.\nLe idee del Presidente della Commissione, per lui, sono \"solo chiacchiere\". Ma come fa il Ministro dell'Interno italiano a voler cambiare le cose in Europa se non ci mette mai piede? Ancora venerd\u00ec scorso si \u00e8 svolto un vertice di ministri e lui non ci \u00e8 andato, preferendo - dice lui - restare in Italia e andare a correre sotto l'acqua.\nSe vuoi cambiare le cose in Europa, almeno partecipa alle riunioni. Oppure smetti di prendere in giro i tuoi concittadini.", "shared_text": "", "time": "2018-10-15 19:19:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156238364139915&id=113335124914", "link": null} +{"post_id": "10156238324424915", "text": "Se pensate che la politica sia una cosa seria, se avete voglia di condividere idee e non sopportate gli insulti, se volete bene all'Italia, questo fine settimana la stazione Leopolda di Firenze \u00e8 il posto che\u2026 Altro fa per voi. Si parte venerd\u00ec sera, si finisce domenica a pranzo. Anzi quest\u2019anno non si finisce proprio, perch\u00e9 lanceremo comitati di impegno civile in ogni comune. Il titolo: Ritorno al futuro. Ne abbiamo bisogno noi, ne ha bisogno l\u2019italia. Non si parla di congresso o di candidature ma solo di come dare una mano a questo Paese meraviglioso. Astenersi troll, odiatori di professione, venditori di fumo specie se ministri coi riccioli (anche senza riccioli).\nVi aspetto in stazione Leopolda carichi e pieni di entusiasmo.", "post_text": "Se pensate che la politica sia una cosa seria, se avete voglia di condividere idee e non sopportate gli insulti, se volete bene all'Italia, questo fine settimana la stazione Leopolda di Firenze \u00e8 il posto che\u2026 Altro fa per voi. Si parte venerd\u00ec sera, si finisce domenica a pranzo. Anzi quest\u2019anno non si finisce proprio, perch\u00e9 lanceremo comitati di impegno civile in ogni comune. Il titolo: Ritorno al futuro. Ne abbiamo bisogno noi, ne ha bisogno l\u2019italia. Non si parla di congresso o di candidature ma solo di come dare una mano a questo Paese meraviglioso. Astenersi troll, odiatori di professione, venditori di fumo specie se ministri coi riccioli (anche senza riccioli).\nVi aspetto in stazione Leopolda carichi e pieni di entusiasmo.", "shared_text": "", "time": "2018-10-15 18:53:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/44057208_10156238323639915_8487986052806475776_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Lomk6vf_TQcAQlWVgp1cWraHkda2oMDCNiB77eUfJp1fzrIf_VJY5gzLQ&_nc_ht=scontent-cdt1-1.xx&oh=81cb93eb49f78ea86ad04b84c6ea8766&oe=5E4FD2EA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156238324424915&id=113335124914", "link": null} +{"post_id": "10156235143909915", "text": "Quando chi governa manda a sbattere il Paese non basta fare opposizione: devi avere la forza di una proposta alternativa. Per questo apriremo la Leopolda presentando con Pier Carlo Padoan una controproposta di\u2026 Altro legge di bilancio. Un\u2019idea semplice, spiegata bene, una cosa che pu\u00f2 capire anche uno come Toninelli. Con questa proposta lo spread si dimezza e scendono le tasse. Ne ho parlato in questa intervista al Corriere della Sera. Loro dicono: me ne frego. Noi diciamo: ci sta a cuore l\u2019Italia. Non vogliamo che il Bilancio penalizzi lavoratori e famiglie italiane regalando soldi a speculatori internazionali.\nPARTITODEMOCRATICO.IT\nRenzi: \"Cos\u00ec l'Italia va a sbattere, fermatevi! E alla Leopolda la controproposta per dimezzare lo spread\"", "post_text": "Quando chi governa manda a sbattere il Paese non basta fare opposizione: devi avere la forza di una proposta alternativa. Per questo apriremo la Leopolda presentando con Pier Carlo Padoan una controproposta di\u2026 Altro legge di bilancio. Un\u2019idea semplice, spiegata bene, una cosa che pu\u00f2 capire anche uno come Toninelli. Con questa proposta lo spread si dimezza e scendono le tasse. Ne ho parlato in questa intervista al Corriere della Sera. Loro dicono: me ne frego. Noi diciamo: ci sta a cuore l\u2019Italia. Non vogliamo che il Bilancio penalizzi lavoratori e famiglie italiane regalando soldi a speculatori internazionali.", "shared_text": "PARTITODEMOCRATICO.IT\nRenzi: \"Cos\u00ec l'Italia va a sbattere, fermatevi! E alla Leopolda la controproposta per dimezzare lo spread\"", "time": "2018-10-14 09:00:14", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCUjCHr3j3pOgZw&w=476&h=249&url=https%3A%2F%2Fwww.partitodemocratico.it%2FgCloud-dispatcher%2F003dab4d-695f-11e8-9ee6-0010186dda0c&cfs=1&jq=75&sx=0&sy=0&sw=1440&sh=753&ext=jpg&_nc_hash=AQCPxhxDrqXOyAYb", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156235143909915&id=113335124914", "link": "https://www.partitodemocratico.it/partito/renzi-cosi-litalia-va-sbattere-fermatevi-e-alla-leopolda-la-controproposta-per-dimezzare-lo-spread/?fbclid=IwAR0Pw3EOXR5F0IgT5Vs6ebvZQcfQdBSxWXBhOSABtM67ID5DVXGtf3rm7-0"} +{"post_id": "10156234029824915", "text": "Il programma Ulisse mai come oggi emoziona e sconvolge. Grazie a Alberto Angela e a RaiUno. E un pensiero tra gli altri a Nedo Fiano che ogni anno accompagnava gli studenti fiorentini nei campi di sterminio a rivivere quel dolore. Per far vincere la memoria.", "post_text": "Il programma Ulisse mai come oggi emoziona e sconvolge. Grazie a Alberto Angela e a RaiUno. E un pensiero tra gli altri a Nedo Fiano che ogni anno accompagnava gli studenti fiorentini nei campi di sterminio a rivivere quel dolore. Per far vincere la memoria.", "shared_text": "", "time": "2018-10-13 22:47:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156234029824915&id=113335124914", "link": null} +{"post_id": "10156232670619915", "text": "Vedere dei bambini discriminati alla mensa scolastica per ragioni economiche fa male al cuore. La politica basata sull\u2019odio e sulla paura genera mostri. Quello che sta accadendo a Lodi per me \u00e8 disumano.\nDicono: zitti voi, siete minoranza. S\u00ec, siamo minoranza. Ma non staremo zitti, non rinunceremo mai a essere civili. A essere umani.\nChiamiamo le cose con il loro nome: quella di Lodi \u00e8 una vergogna nazionale", "post_text": "Vedere dei bambini discriminati alla mensa scolastica per ragioni economiche fa male al cuore. La politica basata sull\u2019odio e sulla paura genera mostri. Quello che sta accadendo a Lodi per me \u00e8 disumano.\nDicono: zitti voi, siete minoranza. S\u00ec, siamo minoranza. Ma non staremo zitti, non rinunceremo mai a essere civili. A essere umani.\nChiamiamo le cose con il loro nome: quella di Lodi \u00e8 una vergogna nazionale", "shared_text": "", "time": "2018-10-13 10:02:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156232670619915&id=113335124914", "link": null} +{"post_id": "10156230309219915", "text": "Aeroporto di Firenze. C'\u00e8 un investitore internazionale, con due grandi soci: uno americano e uno asiatico.\nHanno 370 milioni\u20ac pronti, da investire tra Firenze e Pisa (che per la prima volta hanno fatto squadra e lavorano insieme). Solo a Firenze ci saranno DUEMILA nuovi posti di lavoro. Il tutto rispettando la legge e ottemperando alla valutazione\u2026 Altro d'impatto ambientale.\nIeri il ministro dell'agricoltura, Centinaio, ha detto che l'aeroporto di Firenze non si deve fare. Come aveva gi\u00e0 fatto capire il ministro delle infrastrutture, l'immenso Toninelli. L'accusa? E' l'aeroporto voluto da Renzi.\nSono anni che tutta Firenze parla di una nuova pista dell'aeroporto. Tutte le categorie sono d'\u2026 Altro", "post_text": "Aeroporto di Firenze. C'\u00e8 un investitore internazionale, con due grandi soci: uno americano e uno asiatico.\nHanno 370 milioni\u20ac pronti, da investire tra Firenze e Pisa (che per la prima volta hanno fatto squadra e lavorano insieme). Solo a Firenze ci saranno DUEMILA nuovi posti di lavoro. Il tutto rispettando la legge e ottemperando alla valutazione\u2026 Altro d'impatto ambientale.\nIeri il ministro dell'agricoltura, Centinaio, ha detto che l'aeroporto di Firenze non si deve fare. Come aveva gi\u00e0 fatto capire il ministro delle infrastrutture, l'immenso Toninelli. L'accusa? E' l'aeroporto voluto da Renzi.\nSono anni che tutta Firenze parla di una nuova pista dell'aeroporto. Tutte le categorie sono d'\u2026 Altro", "shared_text": "", "time": "2018-10-12 11:04:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156230309219915&id=113335124914", "link": null} +{"post_id": "10156228103789915", "text": "Oggi Salvini \u00e8 costretto a smentire la possibilit\u00e0 di fare una Patrimoniale. In questa sua dichiarazione sta tutto il senso del fallimento leghista. Erano partiti come quelli della FlatTax. Adesso hanno scritto un documento di bilancio in cui ammettono che aumenteranno le tasse. E addirittura devono smentire l\u2019ipotesi della patrimoniale.\nI primi a\u2026 Altro rendersi conto di ci\u00f2 che sta accadendo saranno gli elettori di Salvini nel Nord: volevano meno tasse e pagheranno di pi\u00f9, per di pi\u00f9 per finanziare il reddito di cittadinanza e il superamento della Fornero. Soldi per non far lavorare la gente insomma. E per colpa di queste misure, tutti gli italiani pagheranno interessi pi\u00f9 cari.\nIl tempo sar\u00e0 galantuomo con noi e mostrer\u00e0 a tutti la differenza tra la nostra seriet\u00e0 e le loro promesse a vuoto.", "post_text": "Oggi Salvini \u00e8 costretto a smentire la possibilit\u00e0 di fare una Patrimoniale. In questa sua dichiarazione sta tutto il senso del fallimento leghista. Erano partiti come quelli della FlatTax. Adesso hanno scritto un documento di bilancio in cui ammettono che aumenteranno le tasse. E addirittura devono smentire l\u2019ipotesi della patrimoniale.\nI primi a\u2026 Altro rendersi conto di ci\u00f2 che sta accadendo saranno gli elettori di Salvini nel Nord: volevano meno tasse e pagheranno di pi\u00f9, per di pi\u00f9 per finanziare il reddito di cittadinanza e il superamento della Fornero. Soldi per non far lavorare la gente insomma. E per colpa di queste misure, tutti gli italiani pagheranno interessi pi\u00f9 cari.\nIl tempo sar\u00e0 galantuomo con noi e mostrer\u00e0 a tutti la differenza tra la nostra seriet\u00e0 e le loro promesse a vuoto.", "shared_text": "", "time": "2018-10-11 11:40:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156228103789915&id=113335124914", "link": null} +{"post_id": "10156226568999915", "text": "La situazione economica del Paese \u00e8 molto seria. Hanno fatto un pasticcio e l\u2019hanno chiamato Manovra del Popolo. Noi siamo quelli che hanno abbassato lo spread e riportato alla crescita l\u2019Italia: abbiamo il dovere di fare proposte.\nPerch\u00e9 criticare gente come Toninelli sta diventando persino noioso. \u00c8 imbarazzante che Toninelli sia ministro, sono\u2026 Altro imbarazzanti le bugie di Di Maio contro i giornali, \u00e8 imbarazzante l\u2019arroganza di Salvini sull\u2019economia.\nDobbiamo per\u00f2 ripartire. E farlo subito. Per questo alla Stazione Leopolda non seguiremo le polemiche quotidiane delle correnti del Pd: c\u2019\u00e8 una piazza che ha chiesto unit\u00e0, non divisioni. Non parleremo del congresso, ma dell\u2019Italia.\nE per questo\u2026 Altro", "post_text": "La situazione economica del Paese \u00e8 molto seria. Hanno fatto un pasticcio e l\u2019hanno chiamato Manovra del Popolo. Noi siamo quelli che hanno abbassato lo spread e riportato alla crescita l\u2019Italia: abbiamo il dovere di fare proposte.\nPerch\u00e9 criticare gente come Toninelli sta diventando persino noioso. \u00c8 imbarazzante che Toninelli sia ministro, sono\u2026 Altro imbarazzanti le bugie di Di Maio contro i giornali, \u00e8 imbarazzante l\u2019arroganza di Salvini sull\u2019economia.\nDobbiamo per\u00f2 ripartire. E farlo subito. Per questo alla Stazione Leopolda non seguiremo le polemiche quotidiane delle correnti del Pd: c\u2019\u00e8 una piazza che ha chiesto unit\u00e0, non divisioni. Non parleremo del congresso, ma dell\u2019Italia.\nE per questo\u2026 Altro", "shared_text": "", "time": "2018-10-10 18:50:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156226568999915&id=113335124914", "link": null} +{"post_id": "10156224093959915", "text": "Lui \u00e8 quello che crolla il Ponte Morandi e d\u00e0 la colpa al PD.\nLui \u00e8 quello che il decreto di Genova lo scrive col cuore.\nLui \u00e8 quello che sul viadotto autostradale vorrebbe farci giocare i bambini. Sul viadotto. Dell'autostrada.\nLui \u00e8 quello che chiede di bloccare la Gronda perch\u00e9 tanto a Genova non serve. Eh gi\u00e0, non serve\nLui \u00e8 quello\u2026 Altro concentratissimo sulle opere pubbliche: le sta fermando tutte.\nLui \u00e8 quello che vuole bloccare l'Aeroporto di Firenze perch\u00e9 lo ha proposto Renzi.\nLui \u00e8 Danilo Toninelli.\nLui \u00e8 il Ministro delle Infrastrutture.\nOggi Toninelli ha detto \"Ho studiato il dossier e ho visto quante merci italiane utilizzano il Tunnel del Brennero\".\nTONINELLI!!!\nIl Tunnel del Brennero \u00e8 stato finanziato con il mio Governo e sar\u00e0 attivo non prima del 2025.\nCosa ha studiato Toninelli?\nDelle due l'una: o non sa leggere o non capisce.\nIn entrambi casi \u00e8 grave. Per il Governo, per l'Italia.", "post_text": "Lui \u00e8 quello che crolla il Ponte Morandi e d\u00e0 la colpa al PD.\nLui \u00e8 quello che il decreto di Genova lo scrive col cuore.\nLui \u00e8 quello che sul viadotto autostradale vorrebbe farci giocare i bambini. Sul viadotto. Dell'autostrada.\nLui \u00e8 quello che chiede di bloccare la Gronda perch\u00e9 tanto a Genova non serve. Eh gi\u00e0, non serve\nLui \u00e8 quello\u2026 Altro concentratissimo sulle opere pubbliche: le sta fermando tutte.\nLui \u00e8 quello che vuole bloccare l'Aeroporto di Firenze perch\u00e9 lo ha proposto Renzi.\nLui \u00e8 Danilo Toninelli.\nLui \u00e8 il Ministro delle Infrastrutture.\nOggi Toninelli ha detto \"Ho studiato il dossier e ho visto quante merci italiane utilizzano il Tunnel del Brennero\".\nTONINELLI!!!\nIl Tunnel del Brennero \u00e8 stato finanziato con il mio Governo e sar\u00e0 attivo non prima del 2025.\nCosa ha studiato Toninelli?\nDelle due l'una: o non sa leggere o non capisce.\nIn entrambi casi \u00e8 grave. Per il Governo, per l'Italia.", "shared_text": "", "time": "2018-10-09 15:47:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156224093959915&id=113335124914", "link": null} +{"post_id": "10156223870999915", "text": "Lo spread continua a salire. Gli investitori considerano l'Italia un Paese dal quale andarsene. La situazione \u00e8 molto seria.\nDa una settimana secondo Di Maio \u00e8 stata abolita la povert\u00e0, con tanto di euforia sotto il balcone di Palazzo Chigi. Da una settimana Salvini risponde \"Me ne frego\".\nQuando governavamo noi ogni giorno l'obiettivo era cercare\u2026 Altro di raggiungere la Germania. Oggi l'obiettivo \u00e8 diventato non farsi sorpassare dalla Grecia.\nIl tempo sar\u00e0 galantuomo e ci riconoscer\u00e0 ci\u00f2 che le Fake News, i troll e la propaganda vorrebbero rimuovere. Ma ci\u00f2 che mi rende triste \u00e8 che alla fine l'irresponsabilit\u00e0 di Salvini e Di Maio sar\u00e0 pagata a caro prezzo dagli italiani. E soprattutto dagli italiani pi\u00f9 poveri", "post_text": "Lo spread continua a salire. Gli investitori considerano l'Italia un Paese dal quale andarsene. La situazione \u00e8 molto seria.\nDa una settimana secondo Di Maio \u00e8 stata abolita la povert\u00e0, con tanto di euforia sotto il balcone di Palazzo Chigi. Da una settimana Salvini risponde \"Me ne frego\".\nQuando governavamo noi ogni giorno l'obiettivo era cercare\u2026 Altro di raggiungere la Germania. Oggi l'obiettivo \u00e8 diventato non farsi sorpassare dalla Grecia.\nIl tempo sar\u00e0 galantuomo e ci riconoscer\u00e0 ci\u00f2 che le Fake News, i troll e la propaganda vorrebbero rimuovere. Ma ci\u00f2 che mi rende triste \u00e8 che alla fine l'irresponsabilit\u00e0 di Salvini e Di Maio sar\u00e0 pagata a caro prezzo dagli italiani. E soprattutto dagli italiani pi\u00f9 poveri", "shared_text": "", "time": "2018-10-09 13:03:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156223870999915&id=113335124914", "link": null} +{"post_id": "10156223658769915", "text": "C\u2019\u00e8 una donna che da nove anni vive in un carcere pachistano \u201ccolpevole\u201d solo di essere cattolica e di credere in Ges\u00f9 Cristo. Si chiama Asia Bibi. \u00c8 stata condannata a morte e in queste ore dovrebbe arrivare la sentenza definitiva. Sarebbe bello che su questa vicenda, tutti insieme, le donne e gli uomini di buona volont\u00e0 fossero capaci di unirsi e\u2026 Altro non di dividersi. Unirsi per chiedere alle autorit\u00e0 pachistane di salvare e liberare Asia. Una delle gioie pi\u00f9 grandi della mia esperienza di premier \u00e8 stata abbracciare Meriam, imprigionata per lo stesso motivo in Sudan e poi liberata e recuperata con un volo di stato italiano. Mi piacerebbe tanto che tutti, credenti e non, lavorassimo uniti per consentire anche ad Asia di riassaporare la libert\u00e0.", "post_text": "C\u2019\u00e8 una donna che da nove anni vive in un carcere pachistano \u201ccolpevole\u201d solo di essere cattolica e di credere in Ges\u00f9 Cristo. Si chiama Asia Bibi. \u00c8 stata condannata a morte e in queste ore dovrebbe arrivare la sentenza definitiva. Sarebbe bello che su questa vicenda, tutti insieme, le donne e gli uomini di buona volont\u00e0 fossero capaci di unirsi e\u2026 Altro non di dividersi. Unirsi per chiedere alle autorit\u00e0 pachistane di salvare e liberare Asia. Una delle gioie pi\u00f9 grandi della mia esperienza di premier \u00e8 stata abbracciare Meriam, imprigionata per lo stesso motivo in Sudan e poi liberata e recuperata con un volo di stato italiano. Mi piacerebbe tanto che tutti, credenti e non, lavorassimo uniti per consentire anche ad Asia di riassaporare la libert\u00e0.", "shared_text": "", "time": "2018-10-09 10:48:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156223658769915&id=113335124914", "link": null} +{"post_id": "10156222508649915", "text": "Era l\u2019otto ottobre, l\u2019otto ottobre del 2008. Stefano Borgonovo incoraggiato dai suoi amici, accompagnato dall\u2019amore di Chantal e dei suoi figli, spinto con la carrozzina da Roberto Baggio entrava sotto la Curva\u2026 Altro Fiesole. Molti di noi piansero rivedendo sotto la curva due ragazzi, la B2, che ci avevano fatto sognare: Stefano infatti non vestiva pi\u00f9 in calzoncini ma con una coperta, malato. Ma fu un momento doloroso e bellissimo perch\u00e9 Borgonovo fece un regalo a Firenze e all\u2019intero mondo del calcio e della ricerca: decise infatti di mostrarsi per combattere la SLA, la stronza come la chiamava lui. Qualche anno dopo, ancora allo Stadio Franchi, ebbi il grande onore di consegnargli da sindaco il\u2026 Altro", "post_text": "Era l\u2019otto ottobre, l\u2019otto ottobre del 2008. Stefano Borgonovo incoraggiato dai suoi amici, accompagnato dall\u2019amore di Chantal e dei suoi figli, spinto con la carrozzina da Roberto Baggio entrava sotto la Curva\u2026 Altro Fiesole. Molti di noi piansero rivedendo sotto la curva due ragazzi, la B2, che ci avevano fatto sognare: Stefano infatti non vestiva pi\u00f9 in calzoncini ma con una coperta, malato. Ma fu un momento doloroso e bellissimo perch\u00e9 Borgonovo fece un regalo a Firenze e all\u2019intero mondo del calcio e della ricerca: decise infatti di mostrarsi per combattere la SLA, la stronza come la chiamava lui. Qualche anno dopo, ancora allo Stadio Franchi, ebbi il grande onore di consegnargli da sindaco il\u2026 Altro", "shared_text": "", "time": "2018-10-08 21:40:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/43510967_10156222508539915_4185067758729297920_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=R4IqQUGLM5sAQkRD941a2_OuYh1w-ILh8RrmTNFGCFAXwOKBjj6d3YU4g&_nc_ht=scontent-cdt1-1.xx&oh=514b458f176918aeffe0fdcee1b68325&oe=5E4D08AC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156222508649915&id=113335124914", "link": null} +{"post_id": "10156221539069915", "text": "Lo spread supera quota 300 (noi lo avevamo portato sotto quota 100). Salvini dice: \u00e8 colpa dei mercati, \u00e8 colpa di Soros. Ma pensa davvero di poter prendere in giro gli italiani? La colpa \u00e8 del Governo che sta scherzando col fuoco, tanto alla fine pagano sempre i cittadini. Quando lo spread \u00e8 alto chi paga sono le famiglie, i risparmiatori, la\u2026 Altro povera gente: i miliardari invece ci guadagnano. Ma se davanti alle diffidenze dei mercati e dell'Europa, il VicePremier risponde: \"Me ne frego\" non possiamo stupirci delle reazioni. La Manovra del Popolo \u00e8 fatta sulla pelle degli italiani: l'Italia sta ingranando la retromarcia. Che peccato.", "post_text": "Lo spread supera quota 300 (noi lo avevamo portato sotto quota 100). Salvini dice: \u00e8 colpa dei mercati, \u00e8 colpa di Soros. Ma pensa davvero di poter prendere in giro gli italiani? La colpa \u00e8 del Governo che sta scherzando col fuoco, tanto alla fine pagano sempre i cittadini. Quando lo spread \u00e8 alto chi paga sono le famiglie, i risparmiatori, la\u2026 Altro povera gente: i miliardari invece ci guadagnano. Ma se davanti alle diffidenze dei mercati e dell'Europa, il VicePremier risponde: \"Me ne frego\" non possiamo stupirci delle reazioni. La Manovra del Popolo \u00e8 fatta sulla pelle degli italiani: l'Italia sta ingranando la retromarcia. Che peccato.", "shared_text": "", "time": "2018-10-08 11:50:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156221539069915&id=113335124914", "link": null} +{"post_id": "10156221378034915", "text": "Fenomenologia dei cialtroni.\nDa mesi promettono tutti i giorni il condono.\nLa chiamano pace fiscale, prendono valanghe di applausi nei talk attaccando Equitalia, godono per i dati dei sondaggi. Poi per\u00f2 non fanno nulla. E tutti rimangono nell'incertezza.\nCos\u00ec i cittadini onesti sono frustrati, chi deve pagare magari non paga aspettando il\u2026 Altro condono, lo Stato \u00e8 costretto a mettere nel conto di avere meno incassi.\nCon i nostri governi gli incassi dalla lotta all'evasione erano quasi raddoppiati (da 11 miliardi di euro a oltre 20 miliardi di euro, fonte RGS). Adesso si blocca tutto.\nForse la seriet\u00e0 non va di moda. Ma bisogna avere la forza di dire che questo modo di procedere fa male ai contribuenti onesti, fa male ai conti pubblici, fa male all'Italia.", "post_text": "Fenomenologia dei cialtroni.\nDa mesi promettono tutti i giorni il condono.\nLa chiamano pace fiscale, prendono valanghe di applausi nei talk attaccando Equitalia, godono per i dati dei sondaggi. Poi per\u00f2 non fanno nulla. E tutti rimangono nell'incertezza.\nCos\u00ec i cittadini onesti sono frustrati, chi deve pagare magari non paga aspettando il\u2026 Altro condono, lo Stato \u00e8 costretto a mettere nel conto di avere meno incassi.\nCon i nostri governi gli incassi dalla lotta all'evasione erano quasi raddoppiati (da 11 miliardi di euro a oltre 20 miliardi di euro, fonte RGS). Adesso si blocca tutto.\nForse la seriet\u00e0 non va di moda. Ma bisogna avere la forza di dire che questo modo di procedere fa male ai contribuenti onesti, fa male ai conti pubblici, fa male all'Italia.", "shared_text": "", "time": "2018-10-08 09:28:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156221378034915&id=113335124914", "link": null} +{"post_id": "10156219657169915", "text": "Oggi La Repubblica scrive che il concorso da professore ordinario di Giuseppe Conte ha profili evidenti di illegittimit\u00e0. \u00c8 uno scoop enorme o una FakeNews? Il Premier DEVE chiarire in aula, pubblicamente, se \u00e8 tutto regolare: l\u2019avvocato del popolo (e delle concessionarie autostradali) non pu\u00f2 permettere che ci siano dubbi sul suo concorso. O\u2026 Altro aspettiamo che la Iena Giarrusso intervisti in streaming il professor Alpa? Perch\u00e9 su questa cosa, potenzialmente enorme, stanno tutti zitti? Fosse stato iscritto al PD, avremmo gi\u00e0 avuto sei richieste di dimissioni e tre commissioni di inchiesta. Oggi silenzio a cinque stelle. E si chiamavano onest\u00e0...", "post_text": "Oggi La Repubblica scrive che il concorso da professore ordinario di Giuseppe Conte ha profili evidenti di illegittimit\u00e0. \u00c8 uno scoop enorme o una FakeNews? Il Premier DEVE chiarire in aula, pubblicamente, se \u00e8 tutto regolare: l\u2019avvocato del popolo (e delle concessionarie autostradali) non pu\u00f2 permettere che ci siano dubbi sul suo concorso. O\u2026 Altro aspettiamo che la Iena Giarrusso intervisti in streaming il professor Alpa? Perch\u00e9 su questa cosa, potenzialmente enorme, stanno tutti zitti? Fosse stato iscritto al PD, avremmo gi\u00e0 avuto sei richieste di dimissioni e tre commissioni di inchiesta. Oggi silenzio a cinque stelle. E si chiamavano onest\u00e0...", "shared_text": "", "time": "2018-10-07 16:57:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156219657169915&id=113335124914", "link": null} +{"post_id": "10156219012539915", "text": "Per mesi hanno insultato, deriso, calunniato molti di noi. Ci hanno rovesciato addosso quintali di fango. E tutti in silenzio a guardare l\u2019aggressione. Qualcuno addirittura ci diceva: \u201cma dai, fateci un accordo\u201d. Non vedete che alla fine sono dei bravi ragazzi?\nPoi Di Maio e i Cinque Stelle hanno tirato gi\u00f9 la maschera e adesso fanno il tifo per la\u2026 Altro chiusura dei giornali: un ministro del lavoro che si compiace dei licenziamenti, un vicepremier che attacca la libert\u00e0 di stampa. Mai visto in Italia. Altrove s\u00ec, ma non in Italia.\nE allora, finalmente, la reazione unanime. Meglio tardi che mai.\nQuelli che davano a me del caudillo e mi accusavano di deriva autoritaria perche volevo abolire il CNEL, che dicono adesso di chi vuole distruggere l\u2019Europa e comprimere la libert\u00e0 di stampa?\nVolevano abolire la povert\u00e0 e hanno abolito solo il senso del ridicolo. Ogni giorno \u00e8 pi\u00f9 chiaro perch\u00e9 serva davvero una Resistenza Civile.", "post_text": "Per mesi hanno insultato, deriso, calunniato molti di noi. Ci hanno rovesciato addosso quintali di fango. E tutti in silenzio a guardare l\u2019aggressione. Qualcuno addirittura ci diceva: \u201cma dai, fateci un accordo\u201d. Non vedete che alla fine sono dei bravi ragazzi?\nPoi Di Maio e i Cinque Stelle hanno tirato gi\u00f9 la maschera e adesso fanno il tifo per la\u2026 Altro chiusura dei giornali: un ministro del lavoro che si compiace dei licenziamenti, un vicepremier che attacca la libert\u00e0 di stampa. Mai visto in Italia. Altrove s\u00ec, ma non in Italia.\nE allora, finalmente, la reazione unanime. Meglio tardi che mai.\nQuelli che davano a me del caudillo e mi accusavano di deriva autoritaria perche volevo abolire il CNEL, che dicono adesso di chi vuole distruggere l\u2019Europa e comprimere la libert\u00e0 di stampa?\nVolevano abolire la povert\u00e0 e hanno abolito solo il senso del ridicolo. Ogni giorno \u00e8 pi\u00f9 chiaro perch\u00e9 serva davvero una Resistenza Civile.", "shared_text": "", "time": "2018-10-07 10:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156219012539915&id=113335124914", "link": null} +{"post_id": "10156216165314915", "text": "C'\u00e8 una piccola valle, in provincia di Sondrio, che \u00e8 per gli scout italiani un luogo unico: la Val Codera. Ci si arriva a fatica, solo attraverso centinaia di scalini, solo a piedi, passo dopo passo. Tornare in Val Codera, per chi \u00e8 stato scout, \u00e8 come tornare a casa.\nDurante il fascismo questa valle era il luogo della libert\u00e0 per il movimento\u2026 Altro dichiarato fuori legge da Mussolini.\nQui si radunavano le Aquile Randagie, ragazzi milanesi che la raggiungevano per vivere qualche ora di libert\u00e0 e indossare l'uniforme scout, altrimenti proibita dalle Leggi Fascistissime.\nVe ne parlo oggi per raccontare la storia di un italiano sconosciuto ai pi\u00f9. Ma un grande italiano.\nDon Giovanni Barbareschi,\u2026 Altro", "post_text": "C'\u00e8 una piccola valle, in provincia di Sondrio, che \u00e8 per gli scout italiani un luogo unico: la Val Codera. Ci si arriva a fatica, solo attraverso centinaia di scalini, solo a piedi, passo dopo passo. Tornare in Val Codera, per chi \u00e8 stato scout, \u00e8 come tornare a casa.\nDurante il fascismo questa valle era il luogo della libert\u00e0 per il movimento\u2026 Altro dichiarato fuori legge da Mussolini.\nQui si radunavano le Aquile Randagie, ragazzi milanesi che la raggiungevano per vivere qualche ora di libert\u00e0 e indossare l'uniforme scout, altrimenti proibita dalle Leggi Fascistissime.\nVe ne parlo oggi per raccontare la storia di un italiano sconosciuto ai pi\u00f9. Ma un grande italiano.\nDon Giovanni Barbareschi,\u2026 Altro", "shared_text": "", "time": "2018-10-06 09:38:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156216165314915&id=113335124914", "link": null} +{"post_id": "10156214215709915", "text": "Oggi alcuni giornali riportano le frasi del ministro della sanit\u00e0 Grillo, felice perch\u00e9 ci saranno pi\u00f9 soldi per la sanit\u00e0 \u201cdopo anni di tagli\u201d. E naturalmente non c\u2019\u00e8 un giornalista che si prenda la briga di verificare: ma di che parla? Ma quali tagli?\nI numeri: nel 2013 il Fondo per la Sanit\u00e0 Pubblica valeva 107 miliardi di euro. Nel 2018 vale\u2026 Altro 113 miliardi di euro. \u00c8 chiaro o serve un disegnino?\nInsomma: ogni anno abbiamo aumentato di circa un miliardo, altro che tagli. Il fatto di chiamarsi Grillo non autorizza la signora ministro a dire bugie come il suo capo/omonimo.\nBisogna rispondere colpo su colpo, non si pu\u00f2 vivere di #FakeNews, caspita! Ci deve essere un limite, amici.\nLa realt\u00e0 \u00e8 pi\u00f9 forte delle bugie.", "post_text": "Oggi alcuni giornali riportano le frasi del ministro della sanit\u00e0 Grillo, felice perch\u00e9 ci saranno pi\u00f9 soldi per la sanit\u00e0 \u201cdopo anni di tagli\u201d. E naturalmente non c\u2019\u00e8 un giornalista che si prenda la briga di verificare: ma di che parla? Ma quali tagli?\nI numeri: nel 2013 il Fondo per la Sanit\u00e0 Pubblica valeva 107 miliardi di euro. Nel 2018 vale\u2026 Altro 113 miliardi di euro. \u00c8 chiaro o serve un disegnino?\nInsomma: ogni anno abbiamo aumentato di circa un miliardo, altro che tagli. Il fatto di chiamarsi Grillo non autorizza la signora ministro a dire bugie come il suo capo/omonimo.\nBisogna rispondere colpo su colpo, non si pu\u00f2 vivere di #FakeNews, caspita! Ci deve essere un limite, amici.\nLa realt\u00e0 \u00e8 pi\u00f9 forte delle bugie.", "shared_text": "", "time": "2018-10-05 15:52:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156214215709915&id=113335124914", "link": null} +{"post_id": "10156213889074915", "text": "Bellissima la decisione di conferire il Nobel per la Pace a chi, come Denis e Nadia, combatte la violenza sessuale come arma di guerra.\nHo conosciuto Nadia qualche anno fa a NYC grazie ad Amal Clooney. Il\u2026 Altro racconto di ci\u00f2 che lei e le sue compagne yazidi hanno dovuto subire mi ha toccato e commosso, in modo indescrivibile.\nChe il Nobel aiuti tutti ad aprire gli occhi sul dramma di queste nostre sorelle. E lavoriamo insieme perch\u00e9 l'Italia rimanga in prima fila contro tutte le forme di violenza sulle donne.", "post_text": "Bellissima la decisione di conferire il Nobel per la Pace a chi, come Denis e Nadia, combatte la violenza sessuale come arma di guerra.\nHo conosciuto Nadia qualche anno fa a NYC grazie ad Amal Clooney. Il\u2026 Altro racconto di ci\u00f2 che lei e le sue compagne yazidi hanno dovuto subire mi ha toccato e commosso, in modo indescrivibile.\nChe il Nobel aiuti tutti ad aprire gli occhi sul dramma di queste nostre sorelle. E lavoriamo insieme perch\u00e9 l'Italia rimanga in prima fila contro tutte le forme di violenza sulle donne.", "shared_text": "", "time": "2018-10-05 12:02:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/43204139_10156213889059915_1113447216103555072_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=ufQCwSdO3EYAQkIkLx-7ieOHfK4puyxbXeA1wQ478NAOwckZk8blrQhqQ&_nc_ht=scontent-cdt1-1.xx&oh=89e59d2d5848528261e8bb5cb4a8c0a1&oe=5E4BC2AB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156213889074915&id=113335124914", "link": null} +{"post_id": "10156213795159915", "text": "Ieri sera abbiamo fatto tardi con Maurizio Costanzo su Canale 5. Alla fine \u00e8 stata una chiacchierata molto umana, diversa dalle solite interviste TV. La ripropongo qui per chi se la fosse persa. Buona giornata e buon weekend a tutti.", "post_text": "Ieri sera abbiamo fatto tardi con Maurizio Costanzo su Canale 5. Alla fine \u00e8 stata una chiacchierata molto umana, diversa dalle solite interviste TV. La ripropongo qui per chi se la fosse persa. Buona giornata e buon weekend a tutti.", "shared_text": "", "time": "2018-10-05 11:00:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=239004850125246&id=113335124914", "link": null} +{"post_id": "10156213622144915", "text": "Hanno vinto promettendo al Sud il Reddito di Cittadinanza. Oggi scoprono di non avere soldi, nonostante il deficit al 2.4%. Faranno un debito di cittadinanza: piccole elemosine controllate dal Governo, puro voto di scambio come ai tempi della Prima Repubblica, tutto sulle spalle della prossima generazione.\nIo sarei CONTRARIO al reddito di\u2026 Altro cittadinanza anche se vi fossero i soldi. Per me bisogna investire sul lavoro, non sull'assistenzialismo: dare i soldi per stare a casa \u00e8 un'assurdit\u00e0 totale. Un pensiero affettuoso agli imprenditori del NordEst che hanno votato Lega Nord e che oggi si trovano in una Repubblica Democratica fondata sul sussidio.\nMa la cosa incredibile di queste ore \u00e8 il\u2026 Altro", "post_text": "Hanno vinto promettendo al Sud il Reddito di Cittadinanza. Oggi scoprono di non avere soldi, nonostante il deficit al 2.4%. Faranno un debito di cittadinanza: piccole elemosine controllate dal Governo, puro voto di scambio come ai tempi della Prima Repubblica, tutto sulle spalle della prossima generazione.\nIo sarei CONTRARIO al reddito di\u2026 Altro cittadinanza anche se vi fossero i soldi. Per me bisogna investire sul lavoro, non sull'assistenzialismo: dare i soldi per stare a casa \u00e8 un'assurdit\u00e0 totale. Un pensiero affettuoso agli imprenditori del NordEst che hanno votato Lega Nord e che oggi si trovano in una Repubblica Democratica fondata sul sussidio.\nMa la cosa incredibile di queste ore \u00e8 il\u2026 Altro", "shared_text": "", "time": "2018-10-05 09:34:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156213622144915&id=113335124914", "link": null} +{"post_id": "10156212296939915", "text": "Stasera alle 23.30 su Canale 5 sar\u00f2 a L'intervista con Maurizio Costanzo.\nVi aspetto.", "post_text": "Stasera alle 23.30 su Canale 5 sar\u00f2 a L'intervista con Maurizio Costanzo.\nVi aspetto.", "shared_text": "", "time": "2018-10-04 21:30:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/43157922_10156212296909915_2290389227256414208_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=pkq_vm1OmLoAQnvqCAVsC67zlPH1mAJfyyPm3oUQ-DYt1brTToyRW0uBg&_nc_ht=scontent-cdt1-1.xx&oh=d1e3ab29943ef8912ecca722e14290b1&oe=5E47C3D1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156212296939915&id=113335124914", "link": null} +{"post_id": "10156212233114915", "text": "La mia solidariet\u00e0 agli studenti che hanno speso decine di ore sull\u2019Alternanza Scuola Lavoro e scoprono solo adesso che tutto ci\u00f2 non servir\u00e0 per la maturit\u00e0. Questo modo di cambiare le regole in corsa \u00e8 poco\u2026 Altro serio. Ma ormai \u00e8 lo stile di un Governo che punta solo a distruggere per motivi ideologici tutto quello che c\u2019era prima.", "post_text": "La mia solidariet\u00e0 agli studenti che hanno speso decine di ore sull\u2019Alternanza Scuola Lavoro e scoprono solo adesso che tutto ci\u00f2 non servir\u00e0 per la maturit\u00e0. Questo modo di cambiare le regole in corsa \u00e8 poco\u2026 Altro serio. Ma ormai \u00e8 lo stile di un Governo che punta solo a distruggere per motivi ideologici tutto quello che c\u2019era prima.", "shared_text": "", "time": "2018-10-04 20:13:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p280x280/43092086_10156212232869915_3562745165250560000_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=0vcH5lufGm4AQlhFfmCALweCeEk_cRKZRBpQZ4QzJrOdIiV-Jt8mlcXbg&_nc_ht=scontent-cdt1-1.xx&oh=78513d70482252ef4bc616c9873b79df&oe=5E4D3E73", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156212233114915&id=113335124914", "link": null} +{"post_id": "10156212012334915", "text": "C'\u00e8 una donna, una giornalista che anche oggi \u00e8 stata minacciata a Ostia. Ed \u00e8 stata insultata per il lavoro che fa, che poi \u00e8 un lavoro semplice e bello: fare domande per scrivere la verit\u00e0.\nLei si chiama Federica Angeli, scrive da anni contro il clan Spada. E io vorrei che lei e la sua famiglia sentissero l'affetto di tutti gli italiani per\u2026 Altro bene. Chi minaccia la stampa, chi pratica la violenza, chi istiga all'odio deve sapere che attaccando quella giornalista, attaccano i valori fondamentali di libert\u00e0 e democrazia.\nIl coraggio di Federica \u00e8 pi\u00f9 forte di qualsiasi minaccia.", "post_text": "C'\u00e8 una donna, una giornalista che anche oggi \u00e8 stata minacciata a Ostia. Ed \u00e8 stata insultata per il lavoro che fa, che poi \u00e8 un lavoro semplice e bello: fare domande per scrivere la verit\u00e0.\nLei si chiama Federica Angeli, scrive da anni contro il clan Spada. E io vorrei che lei e la sua famiglia sentissero l'affetto di tutti gli italiani per\u2026 Altro bene. Chi minaccia la stampa, chi pratica la violenza, chi istiga all'odio deve sapere che attaccando quella giornalista, attaccano i valori fondamentali di libert\u00e0 e democrazia.\nIl coraggio di Federica \u00e8 pi\u00f9 forte di qualsiasi minaccia.", "shared_text": "", "time": "2018-10-04 18:15:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156212012334915&id=113335124914", "link": null} +{"post_id": "10156209140299915", "text": "Ho discusso spesso con il Presidente Juncker. Talvolta ci ho anche litigato. Ma l\u2019attacco personale che Di Maio e Salvini gli stanno rivolgendo merita una risposta.\nCinque Stelle e Lega stanno distruggendo la ripresa economica italiana. Le famiglie pagheranno le scelte disgraziate di questi cialtroni. Davanti alle critiche di merito la reazione\u2026 Altro dei grilloleghisti \u00e8 sempre e soltanto l\u2019attacco personale.\nSanno di essere dalla parte del torto e allora attaccano la persona, in questo caso Juncker. \u00c8 un modo infame di concepire la politica come violenza contro gli avversari anzich\u00e9 come soluzione dei problemi.\nHanno fatto un pasticcio che chiamano manovra del popolo. Anzich\u00e9 cercare una\u2026 Altro", "post_text": "Ho discusso spesso con il Presidente Juncker. Talvolta ci ho anche litigato. Ma l\u2019attacco personale che Di Maio e Salvini gli stanno rivolgendo merita una risposta.\nCinque Stelle e Lega stanno distruggendo la ripresa economica italiana. Le famiglie pagheranno le scelte disgraziate di questi cialtroni. Davanti alle critiche di merito la reazione\u2026 Altro dei grilloleghisti \u00e8 sempre e soltanto l\u2019attacco personale.\nSanno di essere dalla parte del torto e allora attaccano la persona, in questo caso Juncker. \u00c8 un modo infame di concepire la politica come violenza contro gli avversari anzich\u00e9 come soluzione dei problemi.\nHanno fatto un pasticcio che chiamano manovra del popolo. Anzich\u00e9 cercare una\u2026 Altro", "shared_text": "", "time": "2018-10-03 09:58:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156209140299915&id=113335124914", "link": null} +{"post_id": "10156207862024915", "text": "La conquista del Premio Nobel \u00e8 spesso argomento solo per addetti ai lavori. La scelta di ieri, il Nobel della Medicina a Allison e Honjo, tocca per\u00f2 il cuore di molte famiglie, in tutto il mondo.\nCiascuno di noi ha perso qualcuno di caro, in famiglia o tra gli amici, per colpa del cancro. E ciascuno di noi anche adesso, mentre scrivo, conosce\u2026 Altro donne e uomini che stanno combattendo contro i tumori. Con coraggio, in silenzio, in ospedale come al lavoro: il cancro \u00e8 un nemico contro il quale tantissimi nostri amici stanno combattendo, ora.\nAllison e Honjo hanno inventato l'immunoterapia, un innovativo meccanismo di terapia che sta dando i primi risultati.\nLa loro scoperta \u00e8 solo una tappa di\u2026 Altro", "post_text": "La conquista del Premio Nobel \u00e8 spesso argomento solo per addetti ai lavori. La scelta di ieri, il Nobel della Medicina a Allison e Honjo, tocca per\u00f2 il cuore di molte famiglie, in tutto il mondo.\nCiascuno di noi ha perso qualcuno di caro, in famiglia o tra gli amici, per colpa del cancro. E ciascuno di noi anche adesso, mentre scrivo, conosce\u2026 Altro donne e uomini che stanno combattendo contro i tumori. Con coraggio, in silenzio, in ospedale come al lavoro: il cancro \u00e8 un nemico contro il quale tantissimi nostri amici stanno combattendo, ora.\nAllison e Honjo hanno inventato l'immunoterapia, un innovativo meccanismo di terapia che sta dando i primi risultati.\nLa loro scoperta \u00e8 solo una tappa di\u2026 Altro", "shared_text": "", "time": "2018-10-02 19:22:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156207862024915&id=113335124914", "link": null} +{"post_id": "10156207730669915", "text": "Oggi \u00e8 la giornata dei nonni. Un pensiero ai nonni che ci hanno lasciato: i miei si chiamavano Adone e Achille, tutti e due nati nel 1918. Un bacio alle mie nonne che invece ancora combattono: 98 anni Maria, 88\u2026 Altro anni Anna Maria. Le vedete qui: 186 anni in due, ancora belle lucide! E un pensiero grato a tutti i nonni che contribuiscono a livello organizzativo, affettivo ed economico ad aiutare mamme e pap\u00e0 della nostra generazione.", "post_text": "Oggi \u00e8 la giornata dei nonni. Un pensiero ai nonni che ci hanno lasciato: i miei si chiamavano Adone e Achille, tutti e due nati nel 1918. Un bacio alle mie nonne che invece ancora combattono: 98 anni Maria, 88\u2026 Altro anni Anna Maria. Le vedete qui: 186 anni in due, ancora belle lucide! E un pensiero grato a tutti i nonni che contribuiscono a livello organizzativo, affettivo ed economico ad aiutare mamme e pap\u00e0 della nostra generazione.", "shared_text": "", "time": "2018-10-02 18:05:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/42996322_10156207730579915_6487972636650373120_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=iV7CiNiq8joAQmXCy-dvbogDzQf72svH9kSGwWoYdM6ecj7BbHcpjzcwA&_nc_ht=scontent-cdt1-1.xx&oh=f728b414965df9bd00ed58c4b133aeee&oe=5E40C53E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156207730669915&id=113335124914", "link": null} +{"post_id": "10156207003024915", "text": "Chi fa il tifo per lo spread a 300 \u00e8 un masochista anti-italiano. Ma anche chi causa l\u2019aumento dello spread a 300 \u00e8 un masochista anti-italiano. La #ManovraDelPopolo ci far\u00e0 fare testacoda.\nFermatevi, prima che sia troppo tardi.\n#ResistenzaCivile", "post_text": "Chi fa il tifo per lo spread a 300 \u00e8 un masochista anti-italiano. Ma anche chi causa l\u2019aumento dello spread a 300 \u00e8 un masochista anti-italiano. La #ManovraDelPopolo ci far\u00e0 fare testacoda.\nFermatevi, prima che sia troppo tardi.\n#ResistenzaCivile", "shared_text": "", "time": "2018-10-02 09:28:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156207003024915&id=113335124914", "link": null} +{"post_id": "10156205046279915", "text": "I dati Istat di oggi dicono che il tanto detestato JobsAct ha portato la disoccupazione a scendere sotto il 10%, per la prima volta dopo molti anni. Siamo partiti nel 2014 con la disoccupazione al 13.2%, adesso siamo al 9.7%\nAdesso comunque Di Maio ci ha detto di aver abolito la povert\u00e0 e introdotto il reddito di cittadinanza, quindi non ci sar\u00e0\u2026 Altro pi\u00f9 bisogno di seguire i dati Istat.\nMa per chi continua a credere alla realt\u00e0 e non alle #FakeNews di RoccoCasalino, la disoccupazione sotto il 10% \u00e8 una buona notizia.\nViva l'Italia che lavora e non vive di assistenzialismo.", "post_text": "I dati Istat di oggi dicono che il tanto detestato JobsAct ha portato la disoccupazione a scendere sotto il 10%, per la prima volta dopo molti anni. Siamo partiti nel 2014 con la disoccupazione al 13.2%, adesso siamo al 9.7%\nAdesso comunque Di Maio ci ha detto di aver abolito la povert\u00e0 e introdotto il reddito di cittadinanza, quindi non ci sar\u00e0\u2026 Altro pi\u00f9 bisogno di seguire i dati Istat.\nMa per chi continua a credere alla realt\u00e0 e non alle #FakeNews di RoccoCasalino, la disoccupazione sotto il 10% \u00e8 una buona notizia.\nViva l'Italia che lavora e non vive di assistenzialismo.", "shared_text": "", "time": "2018-10-01 10:54:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156205046279915&id=113335124914", "link": null} +{"post_id": "10156203356489915", "text": "Salvini ha detto che in piazza c\u2019erano solo #4Gatti\nChe lui abbia problemi con la matematica, si \u00e8 visto coi soldi rubati dalla Lega.\nChe lui tratti gli esseri umani come animali, si \u00e8 visto sulla Nave Diciotti.\nMa quello che Salvini non capisce \u00e8 che i gatti hanno sette vite. L\u2019opposizione c\u2019\u00e8. #ResistenzaCivile", "post_text": "Salvini ha detto che in piazza c\u2019erano solo #4Gatti\nChe lui abbia problemi con la matematica, si \u00e8 visto coi soldi rubati dalla Lega.\nChe lui tratti gli esseri umani come animali, si \u00e8 visto sulla Nave Diciotti.\nMa quello che Salvini non capisce \u00e8 che i gatti hanno sette vite. L\u2019opposizione c\u2019\u00e8. #ResistenzaCivile", "shared_text": "", "time": "2018-09-30 19:16:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/42985480_10156203356314915_8605400232361984000_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=_ddLXXP1wucAQn3pf7VhUiCV5Nr_O1QQoPrjZtWYpMBAeBJo1OR28wzsA&_nc_ht=scontent-cdt1-1.xx&oh=58b958795a47f8db8ebdc96325cc402b&oe=5E7EBCB0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156203356489915&id=113335124914", "link": null} +{"post_id": "10156203084124915", "text": "Una bellissima giornata a #PiazzaDelPopolo. Contro il Governo degli sfascisti, contro chi dice no ai vaccini, contro chi mette in ginocchio l\u2019Italia che produce, contro il Governo dei condoni e dell\u2019assistenzialismo, c\u2019\u00e8 un\u2019Italia che non si arrende. Che non si rassegna. Saranno mesi di #ResistenzaCivile", "post_text": "Una bellissima giornata a #PiazzaDelPopolo. Contro il Governo degli sfascisti, contro chi dice no ai vaccini, contro chi mette in ginocchio l\u2019Italia che produce, contro il Governo dei condoni e dell\u2019assistenzialismo, c\u2019\u00e8 un\u2019Italia che non si arrende. Che non si rassegna. Saranno mesi di #ResistenzaCivile", "shared_text": "", "time": "2018-09-30 17:13:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/42861238_10156203083999915_4155106414764752896_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=FVsVGnxNLrwAQmu8sdGZozuP1cQOeoMzx-GKHVhu1gKZSLs-2AcekoR2A&_nc_ht=scontent-cdt1-1.xx&oh=15cc00c9ec19a4cd0559c883d563e12a&oe=5E40746C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156203084124915&id=113335124914", "link": null} +{"post_id": "10156202708629915", "text": "In viaggio verso Roma, verso Piazza del Popolo.\n\u00c8 giusto stare in piazza contro questo Governo.\nQuesti incompetenti mettono a rischio l\u2019economia. Prendono in giro i loro elettori, perch\u00e9 non manterranno comunque le promesse. Offendono gli altri cittadini, insultando chi la pensa diversamente.\nNoi dobbiamo reagire, senza paura.\nE farlo senza\u2026 Altro divisioni interne, basta con le polemiche. Lottare colpo su colpo. E organizzare forme di resistenza civile contro la deriva venezuelana di Di Maio e Salvini.\nL\u2019Italia \u00e8 stata resa grande dal lavoro, dal sudore, dalla fatica e non dall\u2019assistenzialismo. Non lasciamo il futuro a chi vuole vivere di condoni e sussidi.\nSenza paura, amici.", "post_text": "In viaggio verso Roma, verso Piazza del Popolo.\n\u00c8 giusto stare in piazza contro questo Governo.\nQuesti incompetenti mettono a rischio l\u2019economia. Prendono in giro i loro elettori, perch\u00e9 non manterranno comunque le promesse. Offendono gli altri cittadini, insultando chi la pensa diversamente.\nNoi dobbiamo reagire, senza paura.\nE farlo senza\u2026 Altro divisioni interne, basta con le polemiche. Lottare colpo su colpo. E organizzare forme di resistenza civile contro la deriva venezuelana di Di Maio e Salvini.\nL\u2019Italia \u00e8 stata resa grande dal lavoro, dal sudore, dalla fatica e non dall\u2019assistenzialismo. Non lasciamo il futuro a chi vuole vivere di condoni e sussidi.\nSenza paura, amici.", "shared_text": "", "time": "2018-09-30 13:36:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156202708629915&id=113335124914", "link": null} +{"post_id": "10156202527609915", "text": "Felice di aver corso 11 km nel ricordo di Alessia e insieme a migliaia di persone per Corri La Vita. Grazie ai medici, agli infermieri, ai ricercatori, ai volontari che tutti i giorni lottano contro i tumori.", "post_text": "Felice di aver corso 11 km nel ricordo di Alessia e insieme a migliaia di persone per Corri La Vita. Grazie ai medici, agli infermieri, ai ricercatori, ai volontari che tutti i giorni lottano contro i tumori.", "shared_text": "", "time": "2018-09-30 12:15:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/42860129_10156202527259915_3410225430551068672_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=AJ30Y5yfTJoAQmKcjeM9SILIzaoYRIhL4VhDUO8xDKBgVnrU0ISHanDOg&_nc_ht=scontent-cdt1-1.xx&oh=93be96ee5c9366fdf7cb8efe199d02a0&oe=5E453B51", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156202527609915&id=113335124914", "link": null} +{"post_id": "10156200538744915", "text": "Ho un messaggio molto personale, per tutti ma soprattutto per i fiorentini.\nEsattamente dieci anni fa, il 29 settembre 2008, al Palazzo dei Congressi lasciai ogni sicurezza e rifiutai il rinnovo del mandato come Presidente della Provincia candidandomi - senza paracadute - alle primarie da Sindaco.\nSono stati dieci anni bellissimi. Fatti di\u2026 Altro vittorie e sconfitte.\nQuattro primarie, tre vinte e una persa.\nIl trionfo delle Europee 2014 e il tonfo delle Politiche 2018.\nLa pedonalizzazione di piazza del Duomo e gli 80\u20ac.\nLe Leopolde e il referendum.\nGli incontri con Obama e i grandi della terra e le inaugurazioni dei Fontanelli con i pensionati del quartiere.\nLa rottamazione e il documentario su\u2026 Altro", "post_text": "Ho un messaggio molto personale, per tutti ma soprattutto per i fiorentini.\nEsattamente dieci anni fa, il 29 settembre 2008, al Palazzo dei Congressi lasciai ogni sicurezza e rifiutai il rinnovo del mandato come Presidente della Provincia candidandomi - senza paracadute - alle primarie da Sindaco.\nSono stati dieci anni bellissimi. Fatti di\u2026 Altro vittorie e sconfitte.\nQuattro primarie, tre vinte e una persa.\nIl trionfo delle Europee 2014 e il tonfo delle Politiche 2018.\nLa pedonalizzazione di piazza del Duomo e gli 80\u20ac.\nLe Leopolde e il referendum.\nGli incontri con Obama e i grandi della terra e le inaugurazioni dei Fontanelli con i pensionati del quartiere.\nLa rottamazione e il documentario su\u2026 Altro", "shared_text": "", "time": "2018-09-29 12:18:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156200538744915&id=113335124914", "link": null} +{"post_id": "10156200343854915", "text": "Oggi ho parlato con il Corriere della Sera a proposito della manovra di bilancio, del CSM, della Rai e del PD.\nBuon weekend amici\nPARTITODEMOCRATICO.IT\nRenzi: \"Manovra devastante, ora resistenza civile\" - Partito Democratico", "post_text": "Oggi ho parlato con il Corriere della Sera a proposito della manovra di bilancio, del CSM, della Rai e del PD.\nBuon weekend amici", "shared_text": "PARTITODEMOCRATICO.IT\nRenzi: \"Manovra devastante, ora resistenza civile\" - Partito Democratico", "time": "2018-09-29 09:35:01", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCUjCHr3j3pOgZw&w=476&h=249&url=https%3A%2F%2Fwww.partitodemocratico.it%2FgCloud-dispatcher%2F003dab4d-695f-11e8-9ee6-0010186dda0c&cfs=1&jq=75&sx=0&sy=0&sw=1440&sh=753&ext=jpg&_nc_hash=AQCPxhxDrqXOyAYb", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156200343854915&id=113335124914", "link": "https://www.partitodemocratico.it/primo-piano/intervista-renzi-manovra-devastante-ora-resistenza-civile/?fbclid=IwAR1WwAvTpbmiTTYrJMlYqKCofaQSjH6E5k0VLj1c9Z8CX7d-SkvxwHXwlbM"} +{"post_id": "10156198779879915", "text": "Il Movimento Cinque Stelle, Di Battista, Di Maio e un numero imprecisato di altri statisti hanno diramato l'ordine: \"fate tutti notare che anche Renzi aveva proposto di sforare il deficit portandolo per cinque anni al 2.9%\".\nLa proposta era contenuta in un libro del 2017, chiamato AVANTI, facilmente reperibile ancora oggi.\nIn quel libro io\u2026 Altro proponevo di RIDURRE IL DEBITO PER DECINE DI MILIARDI, attraverso un'operazione chiamata Capricorn. Se riduci il debito, allora puoi anche avere pi\u00f9 margine sul deficit: questa la tesi del libro.\nPurtroppo \u00e8 un libro che non ha le figure: Di Maio dunque non riesce a capirlo. Per\u00f2 qualcuno del suo staff potrebbe leggerlo e spiegarglielo.\nCari statisti da strapazzo: se riducete il debito di cinquanta miliardi potete anche tenere il deficit al 2.4%.\nSe non riducete il debito e sforate il deficit, schizza lo spread, crolla la borsa e ci saranno pi\u00f9 poveri. Altro che decreto abolisci povert\u00e0!\nState scherzando sulla pelle degli italiani.", "post_text": "Il Movimento Cinque Stelle, Di Battista, Di Maio e un numero imprecisato di altri statisti hanno diramato l'ordine: \"fate tutti notare che anche Renzi aveva proposto di sforare il deficit portandolo per cinque anni al 2.9%\".\nLa proposta era contenuta in un libro del 2017, chiamato AVANTI, facilmente reperibile ancora oggi.\nIn quel libro io\u2026 Altro proponevo di RIDURRE IL DEBITO PER DECINE DI MILIARDI, attraverso un'operazione chiamata Capricorn. Se riduci il debito, allora puoi anche avere pi\u00f9 margine sul deficit: questa la tesi del libro.\nPurtroppo \u00e8 un libro che non ha le figure: Di Maio dunque non riesce a capirlo. Per\u00f2 qualcuno del suo staff potrebbe leggerlo e spiegarglielo.\nCari statisti da strapazzo: se riducete il debito di cinquanta miliardi potete anche tenere il deficit al 2.4%.\nSe non riducete il debito e sforate il deficit, schizza lo spread, crolla la borsa e ci saranno pi\u00f9 poveri. Altro che decreto abolisci povert\u00e0!\nState scherzando sulla pelle degli italiani.", "shared_text": "", "time": "2018-09-28 19:01:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156198779879915&id=113335124914", "link": null} +{"post_id": "10156198017594915", "text": "Parliamoci chiaro, amici.\nIl problema non \u00e8 l\u2019Europa, non \u00e8 lo spread, non \u00e8 il deficit.\nO meglio: non \u00e8 solo questo.\nIl problema \u00e8 la deriva venezuelana che stiamo rischiando. Il problema \u00e8 che stanno prendendo in giro gli italiani.\nDicono che hanno abolito la povert\u00e0 per decreto. E fingono di crederci.\nDicono che stanno mantenendo le promesse\u2026 Altro elettorali quando nonostante la guerra ai mercati faranno al massimo il 10% di ci\u00f2 che hanno promesso. Stanno mentendo, ancora.\nDicono che loro sono il popolo ma in Piazza con le bandiere ci sono solo i parlamentari: la presunta classe dirigente del paese che fa la claque al Governo sul balcone.\nIl problema \u00e8 che premiano i furbi con i condoni e\u2026 Altro", "post_text": "Parliamoci chiaro, amici.\nIl problema non \u00e8 l\u2019Europa, non \u00e8 lo spread, non \u00e8 il deficit.\nO meglio: non \u00e8 solo questo.\nIl problema \u00e8 la deriva venezuelana che stiamo rischiando. Il problema \u00e8 che stanno prendendo in giro gli italiani.\nDicono che hanno abolito la povert\u00e0 per decreto. E fingono di crederci.\nDicono che stanno mantenendo le promesse\u2026 Altro elettorali quando nonostante la guerra ai mercati faranno al massimo il 10% di ci\u00f2 che hanno promesso. Stanno mentendo, ancora.\nDicono che loro sono il popolo ma in Piazza con le bandiere ci sono solo i parlamentari: la presunta classe dirigente del paese che fa la claque al Governo sul balcone.\nIl problema \u00e8 che premiano i furbi con i condoni e\u2026 Altro", "shared_text": "", "time": "2018-09-28 11:37:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156198017594915&id=113335124914", "link": null} +{"post_id": "10156196207234915", "text": "Di Maio urla che l'elezione del VicePresidente del CSM \u00e8 un complotto di Renzi e del PD. Allucinante.\nI fatti:\n1. David Ermini \u00e8 stato eletto al CSM anche coi voti del Movimento Cinque Stelle (723 parlamentari!). Oggi Di Maio grida al complotto, ma in Aula lo ha votato anche lui. Un complotto a sua insaputa?\n2. Ermini \u00e8 diventato VicePresidente\u2026 Altro del CSM grazie al voto dei togati. Che a loro volta sono stati eletti dai giudici di tutta Italia. I togati dovevano scegliere tra due professionisti del diritto: uno eletto dal PD, uno scelto dalla Piattaforma Rousseau. Non \u00e8 pensabile dire che se vince Rousseau \u00e8 democrazia, se vince uno del PD \u00e8 complotto.\n3. Tutte queste decisioni sono state\u2026 Altro", "post_text": "Di Maio urla che l'elezione del VicePresidente del CSM \u00e8 un complotto di Renzi e del PD. Allucinante.\nI fatti:\n1. David Ermini \u00e8 stato eletto al CSM anche coi voti del Movimento Cinque Stelle (723 parlamentari!). Oggi Di Maio grida al complotto, ma in Aula lo ha votato anche lui. Un complotto a sua insaputa?\n2. Ermini \u00e8 diventato VicePresidente\u2026 Altro del CSM grazie al voto dei togati. Che a loro volta sono stati eletti dai giudici di tutta Italia. I togati dovevano scegliere tra due professionisti del diritto: uno eletto dal PD, uno scelto dalla Piattaforma Rousseau. Non \u00e8 pensabile dire che se vince Rousseau \u00e8 democrazia, se vince uno del PD \u00e8 complotto.\n3. Tutte queste decisioni sono state\u2026 Altro", "shared_text": "", "time": "2018-09-27 13:43:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156196207234915&id=113335124914", "link": null} +{"post_id": "177758693117961", "text": "Ieri ho partecipato alla trasmissione di Lilli Gruber, Otto e Mezzo. Abbiamo parlato di tutto, dal ponte di Genova ai vaccini, dall\u2019Europa al congresso Pd. Mi dite che ne pensate? Buona giornata a tutti!", "post_text": "Ieri ho partecipato alla trasmissione di Lilli Gruber, Otto e Mezzo. Abbiamo parlato di tutto, dal ponte di Genova ai vaccini, dall\u2019Europa al congresso Pd. Mi dite che ne pensate? Buona giornata a tutti!", "shared_text": "", "time": "2018-09-26 09:46:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=177758693117961&id=113335124914", "link": null} +{"post_id": "10156192818174915", "text": "Ecco come ho promesso da Lilli Gruber l\u2019elenco delle FakeNews e delle bufale che stanno rilanciando da mesi contro di me. Tutte bugie che si ritorceranno contro di loro\nhttps://www.matteorenzi.it/bufale/\nMATTEORENZI.IT\nBufale - Matteo Renzi", "post_text": "Ecco come ho promesso da Lilli Gruber l\u2019elenco delle FakeNews e delle bufale che stanno rilanciando da mesi contro di me. Tutte bugie che si ritorceranno contro di loro\nhttps://www.matteorenzi.it/bufale/", "shared_text": "MATTEORENZI.IT\nBufale - Matteo Renzi", "time": "2018-09-25 21:01:14", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQA6Ij3yTWXOv8zS&w=476&h=249&url=https%3A%2F%2Fwww.matteorenzi.it%2Fwp-content%2Fthemes%2Fdotmedia%2Fimg%2Ftestata-bufale.png&cfs=1&jq=75&ext=jpg&_nc_hash=AQCuoqbX4tec0c00", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156192818174915&id=113335124914", "link": "https://www.matteorenzi.it/bufale/?fbclid=IwAR35Ig_SBK35on5o3Swt9SgYb8pBtQFLxOct8JNhaKFRzuod7-niAvV7JWU"} +{"post_id": "10156192685044915", "text": "Vi aspetto tra poco, alle 20.35, su La 7, a Otto e Mezzo, con Lilli Gruber.", "post_text": "Vi aspetto tra poco, alle 20.35, su La 7, a Otto e Mezzo, con Lilli Gruber.", "shared_text": "", "time": "2018-09-25 19:52:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/42653130_10156192678204915_7887501671515815936_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=cJEJKqVHNbsAQksMI8TqsbCiy2L_NsZV4gAi3d-yF6Jt00-1jy3Z0qr0A&_nc_ht=scontent-cdt1-1.xx&oh=dbd8ddf3bcd2c9349498fdebcb361021&oe=5E852B81", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156192685044915&id=113335124914", "link": null} +{"post_id": "10156190505269915", "text": "Di Maio ha detto che io sono un assassino politico: quest'uomo non si rende conto del significato delle parole. E quando Di Maio parla di cose che non conosce, come ad esempio il lavoro, spesso diventa ridicolo.\nIl JobsAct ha creato un milione di posti di lavoro, di cui il 55% a tempo indeterminato. Per il momento Di Maio ha trovato lavoro solo a se stesso e a un paio di suoi amici d'infanzia di Pomigliano, assunti nelle sue varie segreterie particolari.\nMagari, per\u00f2, nei prossimi mesi migliora.\nAnche perch\u00e9 peggiorare mi sembra difficile.", "post_text": "Di Maio ha detto che io sono un assassino politico: quest'uomo non si rende conto del significato delle parole. E quando Di Maio parla di cose che non conosce, come ad esempio il lavoro, spesso diventa ridicolo.\nIl JobsAct ha creato un milione di posti di lavoro, di cui il 55% a tempo indeterminato. Per il momento Di Maio ha trovato lavoro solo a se stesso e a un paio di suoi amici d'infanzia di Pomigliano, assunti nelle sue varie segreterie particolari.\nMagari, per\u00f2, nei prossimi mesi migliora.\nAnche perch\u00e9 peggiorare mi sembra difficile.", "shared_text": "", "time": "2018-09-24 19:47:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156190505269915&id=113335124914", "link": null} +{"post_id": "10156185256674915", "text": "Rocco Casalino minaccia e insulta dirigenti del Governo.\nUn giornalista pubblica l'audio.\nE cosa fa il Presidente della Camera, Roberto Fico?\nDice che il problema non \u00e8 il portavoce del Governo che minaccia e insulta dirigenti pubblici. No, il problema sono i giornalisti che svelano le fonti.\nEcco, questo \u00e8 Roberto Fico. Quello \"dialogante\" dentro i Cinque Stelle. Figuratevi gli altri.\nSempre pi\u00f9 orgoglioso di aver votato contro all'accordo con grillini e leghisti. Noi siamo Altro.", "post_text": "Rocco Casalino minaccia e insulta dirigenti del Governo.\nUn giornalista pubblica l'audio.\nE cosa fa il Presidente della Camera, Roberto Fico?\nDice che il problema non \u00e8 il portavoce del Governo che minaccia e insulta dirigenti pubblici. No, il problema sono i giornalisti che svelano le fonti.\nEcco, questo \u00e8 Roberto Fico. Quello \"dialogante\" dentro i Cinque Stelle. Figuratevi gli altri.\nSempre pi\u00f9 orgoglioso di aver votato contro all'accordo con grillini e leghisti. Noi siamo Altro.", "shared_text": "", "time": "2018-09-22 16:06:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156185256674915&id=113335124914", "link": null} +{"post_id": "10156185035954915", "text": "La bufala del giorno riguarda Matteo Salvini e la FlatTax. Attenzione, perch\u00e9 questa \u00e8 ENORME ma scommetto che domani la scriveranno in pochi.\nDice oggi Salvini: sarei felice se nel 2019 potessimo portare l'aliquota al 15% per un milione di italiani.\nDunque: la Flat Tax al 15% con cui hanno vinto le elezioni era uno scherzo, non era per tutti. Ma \u00e8\u2026 Altro solo per un milione di persone.\nE fin qui, dir\u00e0 qualcuno, pazienza. Sempre meglio che intanto si inizi, no? Accontentiamoci, pensa l'ottimista. Gi\u00e0.\nMa voi sapete che la FLAT TAX al 15% per alcune categorie in realt\u00e0 c'\u00e8 gi\u00e0? E sapete che l'abbiamo introdotta noi, con la Legge di Bilancio 2015? (per gli uomini di poca fede: Legge 190/2014,\u2026 Altro", "post_text": "La bufala del giorno riguarda Matteo Salvini e la FlatTax. Attenzione, perch\u00e9 questa \u00e8 ENORME ma scommetto che domani la scriveranno in pochi.\nDice oggi Salvini: sarei felice se nel 2019 potessimo portare l'aliquota al 15% per un milione di italiani.\nDunque: la Flat Tax al 15% con cui hanno vinto le elezioni era uno scherzo, non era per tutti. Ma \u00e8\u2026 Altro solo per un milione di persone.\nE fin qui, dir\u00e0 qualcuno, pazienza. Sempre meglio che intanto si inizi, no? Accontentiamoci, pensa l'ottimista. Gi\u00e0.\nMa voi sapete che la FLAT TAX al 15% per alcune categorie in realt\u00e0 c'\u00e8 gi\u00e0? E sapete che l'abbiamo introdotta noi, con la Legge di Bilancio 2015? (per gli uomini di poca fede: Legge 190/2014,\u2026 Altro", "shared_text": "", "time": "2018-09-22 14:22:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156185035954915&id=113335124914", "link": null} +{"post_id": "1949574098466950", "text": "Ieri ho partecipato a Porta a Porta con Bruno Vespa (ma senza plastici). Abbiamo parlato di vaccini, Europa, tasse. Delle promesse irrealizzabili di una maggioranza che ha vinto le elezioni raccontando il falso ai cittadini. E della trasmissione su Firenze. Mi dite che ne pensate? Buona giornata, amici", "post_text": "Ieri ho partecipato a Porta a Porta con Bruno Vespa (ma senza plastici). Abbiamo parlato di vaccini, Europa, tasse. Delle promesse irrealizzabili di una maggioranza che ha vinto le elezioni raccontando il falso ai cittadini. E della trasmissione su Firenze. Mi dite che ne pensate? Buona giornata, amici", "shared_text": "", "time": "2018-09-21 09:53:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1949574098466950&id=113335124914", "link": null} +{"post_id": "538256846603814", "text": "In diretta dal Senato", "post_text": "In diretta dal Senato", "shared_text": "", "time": "2018-09-20 16:21:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=538256846603814&id=113335124914", "link": null} +{"post_id": "10156180357309915", "text": "Sono appena rientrato da incontri e conferenze in Cina, tra Shanghai, Macao, Hong Kong. \u00c8 impressionante la distanza tra la velocit\u00e0 del cambiamento in alcune parti del mondo e le assurde polemiche della politica italiana, sia del Governo che interne al PD.\nIl mondo fuori corre, l\u2019Italia si sta fermando.\nIl mondo parla di intelligenza artificiale,\u2026 Altro l\u2019Italia di chiusure domenicali.\nIl mondo fa i conti con la rivoluzione dei BigData, l\u2019Italia mette in discussione l\u2019obbligo di fare i vaccini.\nA proposito: nel pomeriggio intervengo in Aula al Senato sul Decreto Anti-Vaccini (diretta qui su Facebook). E poi vado a Porta a Porta - in onda stasera su Rai1 alle 23.30 - e cerco di chiarire perch\u00e9 e come dobbiamo rispondere all\u2019immobilismo cui l\u2019Italia \u00e8 costretta da Salvini e Di Maio.\nBisogna reagire e bisogna farlo a viso aperto: all\u2019Italia serve #Altro.", "post_text": "Sono appena rientrato da incontri e conferenze in Cina, tra Shanghai, Macao, Hong Kong. \u00c8 impressionante la distanza tra la velocit\u00e0 del cambiamento in alcune parti del mondo e le assurde polemiche della politica italiana, sia del Governo che interne al PD.\nIl mondo fuori corre, l\u2019Italia si sta fermando.\nIl mondo parla di intelligenza artificiale,\u2026 Altro l\u2019Italia di chiusure domenicali.\nIl mondo fa i conti con la rivoluzione dei BigData, l\u2019Italia mette in discussione l\u2019obbligo di fare i vaccini.\nA proposito: nel pomeriggio intervengo in Aula al Senato sul Decreto Anti-Vaccini (diretta qui su Facebook). E poi vado a Porta a Porta - in onda stasera su Rai1 alle 23.30 - e cerco di chiarire perch\u00e9 e come dobbiamo rispondere all\u2019immobilismo cui l\u2019Italia \u00e8 costretta da Salvini e Di Maio.\nBisogna reagire e bisogna farlo a viso aperto: all\u2019Italia serve #Altro.", "shared_text": "", "time": "2018-09-20 12:56:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156180357309915&id=113335124914", "link": null} +{"post_id": "10156171987994915", "text": "Una volta alla settimana parte il dibattito sul futuro del PD. C'\u00e8 chi lo vuole sciogliere e chi lo vuole rilanciare.\nChi propone cene di chiarimento e chi vuole congressi di discussione politica.\nChi vuole la societ\u00e0 civile e chi dice: pi\u00f9 potere agli iscritti. Tutte scelte legittime e rispettabili.\nIo penso che oggi il problema non sia il PD.\u2026 Altro\nSe guardo a cosa \u00e8 accaduto questa settimana vedo un Governo che ha messo la FIDUCIA per rinviare l'obbligo dei vaccini.\nUn Governo che dopo un mese di propaganda su Genova litiga anche per il nome del commissario.\nUn Governo che sui mercati internazionali ha gi\u00e0 fatto danni solo con le parole (parola di Mario Draghi), figuriamoci quando\u2026 Altro", "post_text": "Una volta alla settimana parte il dibattito sul futuro del PD. C'\u00e8 chi lo vuole sciogliere e chi lo vuole rilanciare.\nChi propone cene di chiarimento e chi vuole congressi di discussione politica.\nChi vuole la societ\u00e0 civile e chi dice: pi\u00f9 potere agli iscritti. Tutte scelte legittime e rispettabili.\nIo penso che oggi il problema non sia il PD.\u2026 Altro\nSe guardo a cosa \u00e8 accaduto questa settimana vedo un Governo che ha messo la FIDUCIA per rinviare l'obbligo dei vaccini.\nUn Governo che dopo un mese di propaganda su Genova litiga anche per il nome del commissario.\nUn Governo che sui mercati internazionali ha gi\u00e0 fatto danni solo con le parole (parola di Mario Draghi), figuriamoci quando\u2026 Altro", "shared_text": "", "time": "2018-09-16 16:15:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156171987994915&id=113335124914", "link": null} +{"post_id": "10156167875399915", "text": "Anche a Torino tanta gente contro questo Governo e per un Pd che giochi all\u2019attacco. E un grande grazie ai nostri deputati che stanotte hanno combattuto persino con l\u2019ostruzionismo contro la norma folle sui\u2026 Altro vaccini. C\u2019\u00e8 un popolo che non si arrende e che vuole un\u2019Italia diversa da quella di chi gioca sulla paura e sull\u2019odio. Noi ci siamo #RitornoAlFuturo", "post_text": "Anche a Torino tanta gente contro questo Governo e per un Pd che giochi all\u2019attacco. E un grande grazie ai nostri deputati che stanotte hanno combattuto persino con l\u2019ostruzionismo contro la norma folle sui\u2026 Altro vaccini. C\u2019\u00e8 un popolo che non si arrende e che vuole un\u2019Italia diversa da quella di chi gioca sulla paura e sull\u2019odio. Noi ci siamo #RitornoAlFuturo", "shared_text": "", "time": "2018-09-14 20:00:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/41656736_10156167875349915_5300965206430580736_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=RPs2sO4VGaUAQnhBuMLt2L6qJA6L5n9wgnQNRvy7T4LZyN4vSfnBHU79w&_nc_ht=scontent-cdt1-1.xx&oh=7a38c32641cbeab72fdf2bbaf0d38e7d&oe=5E7A7956", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156167875399915&id=113335124914", "link": null} +{"post_id": "10156166994389915", "text": "Eppure sarebbe bello fermarsi un attimo.\nSmetterla almeno oggi con la propaganda.\nLasciare che i giudici individuino i veri colpevoli.\nE provare, tutti insieme, a fare ci\u00f2 che serve: dare casa agli sfollati; ricostruire SUBITO il ponte; realizzare la Gronda; garantire l'impegno per il Terzo Valico, il Bisagno, il Porto e dare agevolazioni\u2026 Altro fiscali per i settori in crisi.\nNon \u00e8 una favoletta, ma una tragedia immane quella del Ponte Morandi: Genova si merita lo sforzo unitario, di tutti.\nDopo un mese di polemiche, fakenews, scaricabarile, sarebbe bello che l'Italia mostrasse finalmente il proprio volto migliore. E che il Governo anzich\u00e9 attaccare l'opposizione cercasse di ricostruire subito il ponte, fare le opere necessarie, collaborare con il Comune e con la Regione e chiedere l'aiuto di tutti.\nCi sono tanti altri argomenti su cui possiamo discutere, litigare, dividerci. Perch\u00e9 su Genova non si pu\u00f2 provare a lavorare insieme?", "post_text": "Eppure sarebbe bello fermarsi un attimo.\nSmetterla almeno oggi con la propaganda.\nLasciare che i giudici individuino i veri colpevoli.\nE provare, tutti insieme, a fare ci\u00f2 che serve: dare casa agli sfollati; ricostruire SUBITO il ponte; realizzare la Gronda; garantire l'impegno per il Terzo Valico, il Bisagno, il Porto e dare agevolazioni\u2026 Altro fiscali per i settori in crisi.\nNon \u00e8 una favoletta, ma una tragedia immane quella del Ponte Morandi: Genova si merita lo sforzo unitario, di tutti.\nDopo un mese di polemiche, fakenews, scaricabarile, sarebbe bello che l'Italia mostrasse finalmente il proprio volto migliore. E che il Governo anzich\u00e9 attaccare l'opposizione cercasse di ricostruire subito il ponte, fare le opere necessarie, collaborare con il Comune e con la Regione e chiedere l'aiuto di tutti.\nCi sono tanti altri argomenti su cui possiamo discutere, litigare, dividerci. Perch\u00e9 su Genova non si pu\u00f2 provare a lavorare insieme?", "shared_text": "", "time": "2018-09-14 09:34:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156166994389915&id=113335124914", "link": null} +{"post_id": "10156165755534915", "text": "Hanno costretto alle dimissioni Mario Nava, presidente della Consob noto a tutti per la sua autorevolezza e indipendenza. Si tratta di una decisione che far\u00e0 un danno enorme alla credibilit\u00e0 italiana, non solo sui mercati internazionali: i risparmiatori ne pagheranno le conseguenze. E per chi conosce come funzionano le istituzioni questa scelta \u00e8\u2026 Altro incredibile e inaccettabile.\nI costituzionalisti che facevano i comitati per il CNEL, preoccupati per la mia deriva autoritaria, sono evidentemente tutti ancora in ferie.\nIl tempo sar\u00e0 galantuomo ma questo \u00e8 un Governo di cialtroni. E chi tace \u00e8 complice.", "post_text": "Hanno costretto alle dimissioni Mario Nava, presidente della Consob noto a tutti per la sua autorevolezza e indipendenza. Si tratta di una decisione che far\u00e0 un danno enorme alla credibilit\u00e0 italiana, non solo sui mercati internazionali: i risparmiatori ne pagheranno le conseguenze. E per chi conosce come funzionano le istituzioni questa scelta \u00e8\u2026 Altro incredibile e inaccettabile.\nI costituzionalisti che facevano i comitati per il CNEL, preoccupati per la mia deriva autoritaria, sono evidentemente tutti ancora in ferie.\nIl tempo sar\u00e0 galantuomo ma questo \u00e8 un Governo di cialtroni. E chi tace \u00e8 complice.", "shared_text": "", "time": "2018-09-13 20:21:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156165755534915&id=113335124914", "link": null} +{"post_id": "10156165198269915", "text": "Salvini sulle periferie attacca me, tanto per cambiare. E dice che finanzier\u00e0 solo progetti seri, non quelli fatti da Renzi. Basta coi \u201cprogetti alla renziana\u201d, dice il ministro che non rispetta le sentenze. Quello che Salvini proprio non capisce \u00e8 che quei progetti non li ho fatti io, non sono \u201calla renziana\u201d. Sono i progetti che i Sindaci nella\u2026 Altro loro autonomia e nella loro libert\u00e0 hanno costruito e che il mio Governo ha semplicemente finanziato. Un tempo, quando era ancora federalista, Salvini avrebbe apprezzato un finanziamento del Governo ai comuni di qualsiasi colore politico. Oggi no, oggi conta solo attaccare me. Fa affidamento sulla sua capacit\u00e0 di manipolare le informazioni e prova ancora a fare polemica. Ma io rispondo, colpo su colpo.\nUn governo di cialtroni, con due Vice Premier pi\u00f9 cialtroni di tutti. Noi sulle periferie abbiamo messo i soldi, Salvini e Di Maio li tolgono.", "post_text": "Salvini sulle periferie attacca me, tanto per cambiare. E dice che finanzier\u00e0 solo progetti seri, non quelli fatti da Renzi. Basta coi \u201cprogetti alla renziana\u201d, dice il ministro che non rispetta le sentenze. Quello che Salvini proprio non capisce \u00e8 che quei progetti non li ho fatti io, non sono \u201calla renziana\u201d. Sono i progetti che i Sindaci nella\u2026 Altro loro autonomia e nella loro libert\u00e0 hanno costruito e che il mio Governo ha semplicemente finanziato. Un tempo, quando era ancora federalista, Salvini avrebbe apprezzato un finanziamento del Governo ai comuni di qualsiasi colore politico. Oggi no, oggi conta solo attaccare me. Fa affidamento sulla sua capacit\u00e0 di manipolare le informazioni e prova ancora a fare polemica. Ma io rispondo, colpo su colpo.\nUn governo di cialtroni, con due Vice Premier pi\u00f9 cialtroni di tutti. Noi sulle periferie abbiamo messo i soldi, Salvini e Di Maio li tolgono.", "shared_text": "", "time": "2018-09-13 15:56:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156165198269915&id=113335124914", "link": null} +{"post_id": "725470021141413", "text": "In diretta da Palazzo Giustiniani", "post_text": "In diretta da Palazzo Giustiniani", "shared_text": "", "time": "2018-09-12 17:05:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=725470021141413&id=113335124914", "link": null} +{"post_id": "10156162577354915", "text": "Oggi sono usciti i dati ISTAT della produzione industriale e per la prima volta dopo mesi il segno \u00e8 negativo: -1,8%, il peggior dato degli ultimi tre anni.\nPerch\u00e9 \u00e8 un dato preoccupante? Perch\u00e9 solitamente la produzione industriale anticipa il senso di marcia dell'economia italiana.\nDel resto parlavo con il dirigente di un'azienda che mi diceva\u2026 Altro che per il decreto dignit\u00e0 voluto da Di Maio a ottobre licenzier\u00e0 30 persone. E il Ministro non calcola gli effetti potenzialmente devastanti del provvedimento ideologico sulle domeniche.\nI Cinque Stelle assicurano che arriver\u00e0 il reddito di cittadinanza. Ma al netto del fatto che non hanno le coperture, il problema rimane uno: perch\u00e9 dobbiamo\u2026 Altro", "post_text": "Oggi sono usciti i dati ISTAT della produzione industriale e per la prima volta dopo mesi il segno \u00e8 negativo: -1,8%, il peggior dato degli ultimi tre anni.\nPerch\u00e9 \u00e8 un dato preoccupante? Perch\u00e9 solitamente la produzione industriale anticipa il senso di marcia dell'economia italiana.\nDel resto parlavo con il dirigente di un'azienda che mi diceva\u2026 Altro che per il decreto dignit\u00e0 voluto da Di Maio a ottobre licenzier\u00e0 30 persone. E il Ministro non calcola gli effetti potenzialmente devastanti del provvedimento ideologico sulle domeniche.\nI Cinque Stelle assicurano che arriver\u00e0 il reddito di cittadinanza. Ma al netto del fatto che non hanno le coperture, il problema rimane uno: perch\u00e9 dobbiamo\u2026 Altro", "shared_text": "", "time": "2018-09-12 10:54:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156162577354915&id=113335124914", "link": null} +{"post_id": "1564356293666454", "text": "In diretta da Milano", "post_text": "In diretta da Milano", "shared_text": "", "time": "2018-09-10 20:56:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1564356293666454&id=113335124914", "link": null} +{"post_id": "10156158648764915", "text": "Alle ore 21 sar\u00f2 in diretta Facebook da Milano: vi aspetto!", "post_text": "Alle ore 21 sar\u00f2 in diretta Facebook da Milano: vi aspetto!", "shared_text": "", "time": "2018-09-10 19:30:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/41169122_10156158647624915_6455316595844579328_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=6Gwu-easjkYAQmlk12kMJwPWmt5_36XCkV4NBWcteg-mgIDoRCw9vp3Bg&_nc_ht=scontent-cdt1-1.xx&oh=247f02ae0851160274149cd0c97d5ac6&oe=5E4DE7E8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156158648764915&id=113335124914", "link": null} +{"post_id": "10156158267864915", "text": "Sulla chiusura domenicale dei negozi, che porter\u00e0 al licenziamento di migliaia di ragazzi, Luigi Di Maio attacca me. Come sempre attacca solo me, chiss\u00e0 perch\u00e9.\nDice che io non faccio bene il mio lavoro da Parlamentare di opposizione perch\u00e9 mi occupo di altro.\nChe non sono mai in Parlamento, insomma.\nBasta bugie, bisogna rispondere colpo su\u2026 Altro colpo.\nPrendete le classifiche di presenza in Aula, senza tener conto delle missioni e delle assenze.\nQuando Di Maio \u00e8 stato all'opposizione ha partecipato a circa il 30% dei voti. Io invece ho partecipato a circa l'80% dei voti.\nDunque possiamo ufficialmente sostenere che Di Maio non \u00e8 solo un bugiardo: \u00e8 un cialtrone. E che le sue scelte produrranno licenziamenti e disoccupazione.", "post_text": "Sulla chiusura domenicale dei negozi, che porter\u00e0 al licenziamento di migliaia di ragazzi, Luigi Di Maio attacca me. Come sempre attacca solo me, chiss\u00e0 perch\u00e9.\nDice che io non faccio bene il mio lavoro da Parlamentare di opposizione perch\u00e9 mi occupo di altro.\nChe non sono mai in Parlamento, insomma.\nBasta bugie, bisogna rispondere colpo su\u2026 Altro colpo.\nPrendete le classifiche di presenza in Aula, senza tener conto delle missioni e delle assenze.\nQuando Di Maio \u00e8 stato all'opposizione ha partecipato a circa il 30% dei voti. Io invece ho partecipato a circa l'80% dei voti.\nDunque possiamo ufficialmente sostenere che Di Maio non \u00e8 solo un bugiardo: \u00e8 un cialtrone. E che le sue scelte produrranno licenziamenti e disoccupazione.", "shared_text": "", "time": "2018-09-10 14:03:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156158267864915&id=113335124914", "link": null} +{"post_id": "10156157809309915", "text": "Obbligare tutti alla chiusura domenicale, come vuole Di Maio, significa semplicemente far licenziare tanti ragazzi. Fateci caso: come per il decreto dignit\u00e0, Di Maio tira fuori queste idee quando \u00e8 in crisi di visibilit\u00e0. Gli serve tenere l'attenzione su di lui, altrimenti fagocitato da Salvini. Ma per inseguire i post di Salvini, Di Maio DISTRUGGE\u2026 Altro posti di lavoro. Sostenere che le famiglie si separino perch\u00e9 si lavora anche di domenica significa vivere su Marte. Di Maio si conferma il ministro della disoccupazione: se questo provvedimento sar\u00e0 approvato, tanti ragazzi perderanno il posto di lavoro. Tanto fanno il reddito di cittadinanza, no?", "post_text": "Obbligare tutti alla chiusura domenicale, come vuole Di Maio, significa semplicemente far licenziare tanti ragazzi. Fateci caso: come per il decreto dignit\u00e0, Di Maio tira fuori queste idee quando \u00e8 in crisi di visibilit\u00e0. Gli serve tenere l'attenzione su di lui, altrimenti fagocitato da Salvini. Ma per inseguire i post di Salvini, Di Maio DISTRUGGE\u2026 Altro posti di lavoro. Sostenere che le famiglie si separino perch\u00e9 si lavora anche di domenica significa vivere su Marte. Di Maio si conferma il ministro della disoccupazione: se questo provvedimento sar\u00e0 approvato, tanti ragazzi perderanno il posto di lavoro. Tanto fanno il reddito di cittadinanza, no?", "shared_text": "", "time": "2018-09-10 08:49:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156157809309915&id=113335124914", "link": null} +{"post_id": "2145291789127042", "text": "In diretta da Firenze", "post_text": "In diretta da Firenze", "shared_text": "", "time": "2018-09-09 18:39:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2145291789127042&id=113335124914", "link": null} +{"post_id": "10156156165864915", "text": "Alle 1830 sar\u00f2 in diretta Facebook da Firenze: vi aspetto!", "post_text": "Alle 1830 sar\u00f2 in diretta Facebook da Firenze: vi aspetto!", "shared_text": "", "time": "2018-09-09 17:38:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/41399459_10156156165839915_7441966490355499008_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=UvKqfUKaqW8AQkTQszloPdpjLBuzi8o2e5N4sbW36xGAG6IjOFzNyJqBw&_nc_ht=scontent-cdt1-1.xx&oh=47812500d37fa1e73ce65ed19470325e&oe=5E7ECF8D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156156165864915&id=113335124914", "link": null} +{"post_id": "10156151850384915", "text": "Le dichiarazioni del ministro dell\u2019interno Salvini sono farneticanti. Come al solito mi tira in ballo e cerca di fare la vittima ma l\u2019idea che chi \u00e8 stato eletto parlamentare o siede al Governo possa violare tranquillamente la legge \u00e8 aberrante. E attenzione: Salvini butta tutto sulla questione immigrazione per un preciso calcolo politico. Lui sa\u2026 Altro che la Lega deve restituire 49 milioni di euro. Sa che c\u2019\u00e8 una sentenza. E sa che gli italiani non perdonano chi ruba i propri soldi. Quindi prova a diventare un martire e cerca lo scontro coi magistrati siciliani. Che vergogna!\nIl punto \u00e8 che Salvini \u00e8 dentro fino al collo alla vicenda dei 49 milioni rubati dalla Lega. Fino al collo. E pur di non parlarne porta lo scontro istituzionale al massimo livello.\nQuanto dovremo aspettare per avere dichiarazioni di sdegno del Premier e del Guardasigilli?\nC\u2019\u00e8 solo un messaggio da ripetere fino alla noia: Salvini restituisci i soldi che la Lega ha rubato agli italiani. Tutto il resto \u00e8 solo un vile tentativo di screditare le istituzioni e di prendere in giro gli italiani.", "post_text": "Le dichiarazioni del ministro dell\u2019interno Salvini sono farneticanti. Come al solito mi tira in ballo e cerca di fare la vittima ma l\u2019idea che chi \u00e8 stato eletto parlamentare o siede al Governo possa violare tranquillamente la legge \u00e8 aberrante. E attenzione: Salvini butta tutto sulla questione immigrazione per un preciso calcolo politico. Lui sa\u2026 Altro che la Lega deve restituire 49 milioni di euro. Sa che c\u2019\u00e8 una sentenza. E sa che gli italiani non perdonano chi ruba i propri soldi. Quindi prova a diventare un martire e cerca lo scontro coi magistrati siciliani. Che vergogna!\nIl punto \u00e8 che Salvini \u00e8 dentro fino al collo alla vicenda dei 49 milioni rubati dalla Lega. Fino al collo. E pur di non parlarne porta lo scontro istituzionale al massimo livello.\nQuanto dovremo aspettare per avere dichiarazioni di sdegno del Premier e del Guardasigilli?\nC\u2019\u00e8 solo un messaggio da ripetere fino alla noia: Salvini restituisci i soldi che la Lega ha rubato agli italiani. Tutto il resto \u00e8 solo un vile tentativo di screditare le istituzioni e di prendere in giro gli italiani.", "shared_text": "", "time": "2018-09-07 19:22:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156151850384915&id=113335124914", "link": null} +{"post_id": "10156150999274915", "text": "Mi aspettavo di leggere oggi commenti su tre incredibili fatti:\n1- Un premier del G7 che tenta un concorso pubblico e poi rinuncia quando viene scoperto da un giornale (non italiano, peraltro: grazie Politico Europe!).\n2- Un ministro della legalit\u00e0 che annuncia di non rispettare le sentenze perch\u00e9 i sondaggi gli sono favorevoli. Hanno rubato 49\u2026 Altro milioni agli italiani ma fanno finta di nulla.\n3- Un ministro delle infrastrutture che mente sulle pressioni, sulla propriet\u00e0 dei giornali, sui finanziamenti ai partiti: un bugiardo coi riccioli.\nOggi invece non trovo niente di tutto questo. Le notizie vengono date in cronaca, ma nessun commento. E nessun editoriale scandalizzato.\nQuando ero premier\u2026 Altro", "post_text": "Mi aspettavo di leggere oggi commenti su tre incredibili fatti:\n1- Un premier del G7 che tenta un concorso pubblico e poi rinuncia quando viene scoperto da un giornale (non italiano, peraltro: grazie Politico Europe!).\n2- Un ministro della legalit\u00e0 che annuncia di non rispettare le sentenze perch\u00e9 i sondaggi gli sono favorevoli. Hanno rubato 49\u2026 Altro milioni agli italiani ma fanno finta di nulla.\n3- Un ministro delle infrastrutture che mente sulle pressioni, sulla propriet\u00e0 dei giornali, sui finanziamenti ai partiti: un bugiardo coi riccioli.\nOggi invece non trovo niente di tutto questo. Le notizie vengono date in cronaca, ma nessun commento. E nessun editoriale scandalizzato.\nQuando ero premier\u2026 Altro", "shared_text": "", "time": "2018-09-07 10:35:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156150999274915&id=113335124914", "link": null} +{"post_id": "297804087684100", "text": "In diretta da Ravenna", "post_text": "In diretta da Ravenna", "shared_text": "", "time": "2018-09-06 18:49:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=297804087684100&id=113335124914", "link": null} +{"post_id": "10156149384599915", "text": "Una sentenza dice che la Lega ha rubato soldi. E che deve restituire 49 milioni. Salvini replica che non lo far\u00e0 perch\u00e9 i sondaggi premiano la Lega e dunque gli italiani sono con lui.\n\u00c8 impressionante: per il ministro dell\u2019Interno contano i sondaggi e non le sentenze.\nNon solo: Salvini si permette di minacciare velatamente i giudici di Genova. Si\u2026 Altro occupino del ponte, dice, non della Lega.\nTacciono i costituzionalisti che parlavano di deriva autoritaria, tacciono i cantori dell\u2019onest\u00e0 grillina, tacciono gli editorialisti che si scandalizzavano quando al Governo c\u2019eravamo noi.\nTutti zitti, chiss\u00e0 perch\u00e9.\nSono 49 milioni di euro rubati agli italiani dalla Lega Ladrona. E vanno recuperati. Chi tace \u00e8 complice.", "post_text": "Una sentenza dice che la Lega ha rubato soldi. E che deve restituire 49 milioni. Salvini replica che non lo far\u00e0 perch\u00e9 i sondaggi premiano la Lega e dunque gli italiani sono con lui.\n\u00c8 impressionante: per il ministro dell\u2019Interno contano i sondaggi e non le sentenze.\nNon solo: Salvini si permette di minacciare velatamente i giudici di Genova. Si\u2026 Altro occupino del ponte, dice, non della Lega.\nTacciono i costituzionalisti che parlavano di deriva autoritaria, tacciono i cantori dell\u2019onest\u00e0 grillina, tacciono gli editorialisti che si scandalizzavano quando al Governo c\u2019eravamo noi.\nTutti zitti, chiss\u00e0 perch\u00e9.\nSono 49 milioni di euro rubati agli italiani dalla Lega Ladrona. E vanno recuperati. Chi tace \u00e8 complice.", "shared_text": "", "time": "2018-09-06 16:09:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156149384599915&id=113335124914", "link": null} +{"post_id": "10156149078839915", "text": "Ieri hanno cambiato idea sui vaccini.\nOggi cambiano idea sull'annullamento della gara ILVA. Sono due passi in avanti importanti per l'Italia. E poco importa che siano smentite le promesse elettorali: i Cinque Stelle e Di Maio hanno fatto bene a rimangiarsi la parola sui vaccini e su Ilva.\nNessuna ironia sgraziata da parte nostra, oggi. Solo un\u2026 Altro mio personale ringraziamento a chi si \u00e8 speso personalmente e ci ha lavorato.\nA Roberto Burioni, ai medici e a tutti i parlamentari sul tema vaccini. Ad Andrea Guerra, Federica Guidi, Carlo Calenda, Teresa Bellanova sul tema ILVA.\nQuando si chiudono vicende cos\u00ec complicate spesso chi ha lavorato davvero resta nell'ombra. A loro il mio semplicissimo GRAZIE.", "post_text": "Ieri hanno cambiato idea sui vaccini.\nOggi cambiano idea sull'annullamento della gara ILVA. Sono due passi in avanti importanti per l'Italia. E poco importa che siano smentite le promesse elettorali: i Cinque Stelle e Di Maio hanno fatto bene a rimangiarsi la parola sui vaccini e su Ilva.\nNessuna ironia sgraziata da parte nostra, oggi. Solo un\u2026 Altro mio personale ringraziamento a chi si \u00e8 speso personalmente e ci ha lavorato.\nA Roberto Burioni, ai medici e a tutti i parlamentari sul tema vaccini. Ad Andrea Guerra, Federica Guidi, Carlo Calenda, Teresa Bellanova sul tema ILVA.\nQuando si chiudono vicende cos\u00ec complicate spesso chi ha lavorato davvero resta nell'ombra. A loro il mio semplicissimo GRAZIE.", "shared_text": "", "time": "2018-09-06 12:32:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156149078839915&id=113335124914", "link": null} +{"post_id": "269676973668218", "text": "In diretta da Palazzo Giustiniani", "post_text": "In diretta da Palazzo Giustiniani", "shared_text": "", "time": "2018-09-05 18:12:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=269676973668218&id=113335124914", "link": null} +{"post_id": "10156146996719915", "text": "Una vergogna dopo l\u2019altra: questi sono i Cinque Stelle al Governo.\nLa vicenda della ex Iena Dino Giarrusso \u00e8 scandalosa. Questo signore lavorava alle Iene, programma con il quale ha collezionato figuracce storiche come quella con il regista Brizzi, ingiustamente accusato di violenza, o con il professor Burioni sui vaccini.\nNon contento, ha scelto\u2026 Altro la strada della politica: si \u00e8 candidato, naturalmente coi Cinque Stelle e non \u00e8 stato eletto. Ma quelli che urlano contro la Casta sono i primi a farsi sistemare dal potere. E allora Giarrusso prima \u00e8 stato piazzato in un ufficio stampa alla Regione Lazio, poi al Governo. E che gli fanno fare? Gli fanno controllare i concorsi universitari, perch\u00e9\u2026 Altro", "post_text": "Una vergogna dopo l\u2019altra: questi sono i Cinque Stelle al Governo.\nLa vicenda della ex Iena Dino Giarrusso \u00e8 scandalosa. Questo signore lavorava alle Iene, programma con il quale ha collezionato figuracce storiche come quella con il regista Brizzi, ingiustamente accusato di violenza, o con il professor Burioni sui vaccini.\nNon contento, ha scelto\u2026 Altro la strada della politica: si \u00e8 candidato, naturalmente coi Cinque Stelle e non \u00e8 stato eletto. Ma quelli che urlano contro la Casta sono i primi a farsi sistemare dal potere. E allora Giarrusso prima \u00e8 stato piazzato in un ufficio stampa alla Regione Lazio, poi al Governo. E che gli fanno fare? Gli fanno controllare i concorsi universitari, perch\u00e9\u2026 Altro", "shared_text": "", "time": "2018-09-05 11:53:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156146996719915&id=113335124914", "link": null} +{"post_id": "10156145368814915", "text": "Il crollo del ponte di Genova ha causato dolore e vergogna in tutto il Paese. Il modo con il quale il Governo sta continuando con lo sciacallaggio rende questa vicenda ancora pi\u00f9 incredibile. Continuano a pensare che sia una FAVOLETTA, ma \u00e8 una tragedia.\nAncora oggi il ministro delle infrastrutture, Toninelli, parlando alla Camera ha continuato a\u2026 Altro sparare nel mucchio: pensava di essere al BarSport ed era in Parlamento (purtroppo per il Parlamento)\nNelle ore successive al crollo il suo collega Di Maio aveva dato la colpa a quelli che prendevano soldi da Autostrade. Noi abbiamo chiesto: \"faccia i nomi, Ministro\" e abbiamo scoperto che i soldi di Autostrade li ha presi la Lega Nord.\nAllora\u2026 Altro", "post_text": "Il crollo del ponte di Genova ha causato dolore e vergogna in tutto il Paese. Il modo con il quale il Governo sta continuando con lo sciacallaggio rende questa vicenda ancora pi\u00f9 incredibile. Continuano a pensare che sia una FAVOLETTA, ma \u00e8 una tragedia.\nAncora oggi il ministro delle infrastrutture, Toninelli, parlando alla Camera ha continuato a\u2026 Altro sparare nel mucchio: pensava di essere al BarSport ed era in Parlamento (purtroppo per il Parlamento)\nNelle ore successive al crollo il suo collega Di Maio aveva dato la colpa a quelli che prendevano soldi da Autostrade. Noi abbiamo chiesto: \"faccia i nomi, Ministro\" e abbiamo scoperto che i soldi di Autostrade li ha presi la Lega Nord.\nAllora\u2026 Altro", "shared_text": "", "time": "2018-09-04 18:03:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156145368814915&id=113335124914", "link": null} +{"post_id": "512564605835510", "text": "Ieri una bella chiacchierata con Barbara Palombelli, l\u2019anticipazione del video su Firenze, qualche scontro rude con i giornalisti collegati. E naturalmente vaccini, mutui, Libia. Date un\u2019occhiata e mi dite che ne pensate? Buongiorno amici!", "post_text": "Ieri una bella chiacchierata con Barbara Palombelli, l\u2019anticipazione del video su Firenze, qualche scontro rude con i giornalisti collegati. E naturalmente vaccini, mutui, Libia. Date un\u2019occhiata e mi dite che ne pensate? Buongiorno amici!", "shared_text": "", "time": "2018-09-04 10:31:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=512564605835510&id=113335124914", "link": null} +{"post_id": "10156144445679915", "text": "Quello che sta accadendo in Libia \u00e8 purtroppo molto pericoloso, anche per l'Italia. Ma \u00e8 anche l'esempio pi\u00f9 chiaro di cosa significhi governare pensando ai \"Mi piace\" su Facebook e non alla Politica, con la p maiuscola.\nI nostri ministri fanno dirette sui social dalla spiaggia e poi sequestrano navi italiane con qualche povero migrante a bordo.\u2026 Altro Pensano solo al consenso immediato e l'opinione pubblica sembra - al momento - seguirli.\nNel frattempo, per\u00f2, sono privi di una visione, non toccano palla su nessun dossier geopolitico importante e quando ci sono problemi in Libia attaccano Macron, tanto per cambiare. Ma se tu sei l'Italia e non hai una strategia in Libia non puoi arrabbiarti con\u2026 Altro", "post_text": "Quello che sta accadendo in Libia \u00e8 purtroppo molto pericoloso, anche per l'Italia. Ma \u00e8 anche l'esempio pi\u00f9 chiaro di cosa significhi governare pensando ai \"Mi piace\" su Facebook e non alla Politica, con la p maiuscola.\nI nostri ministri fanno dirette sui social dalla spiaggia e poi sequestrano navi italiane con qualche povero migrante a bordo.\u2026 Altro Pensano solo al consenso immediato e l'opinione pubblica sembra - al momento - seguirli.\nNel frattempo, per\u00f2, sono privi di una visione, non toccano palla su nessun dossier geopolitico importante e quando ci sono problemi in Libia attaccano Macron, tanto per cambiare. Ma se tu sei l'Italia e non hai una strategia in Libia non puoi arrabbiarti con\u2026 Altro", "shared_text": "", "time": "2018-09-04 07:36:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156144445679915&id=113335124914", "link": null} +{"post_id": "10156143064304915", "text": "Stasera alle 20.30 vi aspetto su Rete 4 per la nuova edizione del programma \"Stasera Italia\" con Barbara Palombelli.", "post_text": "Stasera alle 20.30 vi aspetto su Rete 4 per la nuova edizione del programma \"Stasera Italia\" con Barbara Palombelli.", "shared_text": "", "time": "2018-09-03 16:33:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/40684282_10156143055269915_613536645169283072_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=mf_CzROfnN0AQn1nayWePF97ZU4WMTDudBaCp3KMYN8Vq1R_7YDFBp0Bw&_nc_ht=scontent-cdt1-1.xx&oh=4d568e70bbab2f6bae4702957658aa5c&oe=5E894F63", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156143064304915&id=113335124914", "link": null} +{"post_id": "10156135887354915", "text": "Oggi ultima giornata di riprese per il documentario su Firenze. Ho rinunciato alle ferie ma \u00e8 stato bellissimo immergermi per tutto agosto nella storia della mia citt\u00e0. La bellezza salver\u00e0 il mondo, la cultura\u2026 Altro salver\u00e0 la politica. E abbiamo tutti molto da imparare dal passato e soprattutto per il futuro. Oggi per esempio abbiamo girato al Museo Galileo. La scienza contro l\u2019ideologia: non vi sembra ancora attuale a proposito del dibattito sui vaccini? Buona giornata, amici.", "post_text": "Oggi ultima giornata di riprese per il documentario su Firenze. Ho rinunciato alle ferie ma \u00e8 stato bellissimo immergermi per tutto agosto nella storia della mia citt\u00e0. La bellezza salver\u00e0 il mondo, la cultura\u2026 Altro salver\u00e0 la politica. E abbiamo tutti molto da imparare dal passato e soprattutto per il futuro. Oggi per esempio abbiamo girato al Museo Galileo. La scienza contro l\u2019ideologia: non vi sembra ancora attuale a proposito del dibattito sui vaccini? Buona giornata, amici.", "shared_text": "", "time": "2018-08-31 10:50:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/40470617_10156135887319915_5346428259892461568_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=bEjpEpsm524AQn141CRT5VVbocjPToqahBs9QCO6ABPUWMfaBoLz54DwQ&_nc_ht=scontent-cdt1-1.xx&oh=7983df8e995d2a882d2a0c2fc97b2f59&oe=5E7A01F1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156135887354915&id=113335124914", "link": null} +{"post_id": "10156132073879915", "text": "Ieri a Milano Orban ha detto che la relazione con il nostro Governo era pessima. Su questo ha ragione. E io ne vado orgoglioso! Niente di personale, Viktor. Ma tu rappresenti l'opposto di ci\u00f2 che per noi significa #Europa.\nVoi siete l'Europa dei muri, degli egoismi, della paura.\nNoi pensiamo che l'Europa nasca davvero quando i muri cadono, quando la solidariet\u00e0 si afferma, quando il coraggio sconfigge la demagogia.\nTu tieniti Salvini e Di Maio, noi ci teniamo gli ideali di Ventotene.", "post_text": "Ieri a Milano Orban ha detto che la relazione con il nostro Governo era pessima. Su questo ha ragione. E io ne vado orgoglioso! Niente di personale, Viktor. Ma tu rappresenti l'opposto di ci\u00f2 che per noi significa #Europa.\nVoi siete l'Europa dei muri, degli egoismi, della paura.\nNoi pensiamo che l'Europa nasca davvero quando i muri cadono, quando la solidariet\u00e0 si afferma, quando il coraggio sconfigge la demagogia.\nTu tieniti Salvini e Di Maio, noi ci teniamo gli ideali di Ventotene.", "shared_text": "", "time": "2018-08-29 13:58:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156132073879915&id=113335124914", "link": null} +{"post_id": "10156125302549915", "text": "POST CON PS AGGIORNATO ALLE 13 (Buona domenica, Amici!)\nQuando i magistrati indagavano su Alfano, l'attuale vicePremier e ministro della Disoccupazione, Luigi Di Maio, chiedeva le dimissioni del Ministro dell'Interno \"in 5 minuti\" perch\u00e9 il titolare del Viminale non poteva restare sotto indagini. Adesso la ruota gira e si \u00e8 aperta un'indagine su\u2026 Altro Salvini.\nNoi siamo garantisti e non chiediamo le dimissioni del Ministro dell'interno \"in 5 minuti\". Ma diciamo a voce alta che la #DoppiaMorale di Di Maio \u00e8 una vergogna civile. Manganellare gli avversari via web quando fa comodo \u00e8 barbarie. E siccome la ruota gira alla fine \u00e8 anche un autogol.\nUn tempo il Movimento Cinque Stelle difendeva i\u2026 Altro", "post_text": "POST CON PS AGGIORNATO ALLE 13 (Buona domenica, Amici!)\nQuando i magistrati indagavano su Alfano, l'attuale vicePremier e ministro della Disoccupazione, Luigi Di Maio, chiedeva le dimissioni del Ministro dell'Interno \"in 5 minuti\" perch\u00e9 il titolare del Viminale non poteva restare sotto indagini. Adesso la ruota gira e si \u00e8 aperta un'indagine su\u2026 Altro Salvini.\nNoi siamo garantisti e non chiediamo le dimissioni del Ministro dell'interno \"in 5 minuti\". Ma diciamo a voce alta che la #DoppiaMorale di Di Maio \u00e8 una vergogna civile. Manganellare gli avversari via web quando fa comodo \u00e8 barbarie. E siccome la ruota gira alla fine \u00e8 anche un autogol.\nUn tempo il Movimento Cinque Stelle difendeva i\u2026 Altro", "shared_text": "", "time": "2018-08-26 11:14:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156125302549915&id=113335124914", "link": null} +{"post_id": "10156122935744915", "text": "Ci sono 150 eritrei che fuggono dalla guerra. E ci sono 42 italiani che servono con onore il nostro Paese nella Guardia Costiera. In totale sono 192 persone. Sono tutti sequestrati dai post Facebook di qualche ministro. Ma i diritti umani valgono pi\u00f9 dei \"mi piace\" sui social. E allora ricordiamoci che noi siamo l'Italia, non uno stato canaglia. Restiamo umani e #FateliScendere", "post_text": "Ci sono 150 eritrei che fuggono dalla guerra. E ci sono 42 italiani che servono con onore il nostro Paese nella Guardia Costiera. In totale sono 192 persone. Sono tutti sequestrati dai post Facebook di qualche ministro. Ma i diritti umani valgono pi\u00f9 dei \"mi piace\" sui social. E allora ricordiamoci che noi siamo l'Italia, non uno stato canaglia. Restiamo umani e #FateliScendere", "shared_text": "", "time": "2018-08-25 10:05:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156122935744915&id=113335124914", "link": null} +{"post_id": "294092018067092", "text": "Gira questo video in rete. Campania, Italia, agosto 2018. Un gruppo di cittadini e turisti deve superare i tornelli per accedere al\ntreno. Basta comprare il biglietto, obliterarlo e le porte si aprono. E invece\u2026 Altro no: tutti fermi, in attesa, senza acquistare il ticket. Finch\u00e9 uno - ignaro di tutto il resto - paga e oblitera il suo biglietto. E apre i tornelli. Scatta la ressa: tutti si precipitano per evitare di pagare. E la scena diventa virale.\nAbbiamo detto tante volte che l\u2019Italia meritava una nuova stagione dei diritti. Ma dobbiamo dire che abbiamo bisogno anche di una nuova stagione dei doveri. Entrare senza pagare non \u00e8 un atto da furbi, non \u00e8 una cosa sulla quale sorridere: \u00e8 un furto alla comunit\u00e0. Educare ai doveri, non solo ai diritti, deve tornare una priorit\u00e0. Su questo video non c\u2019\u00e8 niente da ridere: al massimo c\u2019\u00e8 solo da vergognarsi. Ed \u00e8 giusto dirlo forte e chiaro, senza minimizzare.", "post_text": "Gira questo video in rete. Campania, Italia, agosto 2018. Un gruppo di cittadini e turisti deve superare i tornelli per accedere al\ntreno. Basta comprare il biglietto, obliterarlo e le porte si aprono. E invece\u2026 Altro no: tutti fermi, in attesa, senza acquistare il ticket. Finch\u00e9 uno - ignaro di tutto il resto - paga e oblitera il suo biglietto. E apre i tornelli. Scatta la ressa: tutti si precipitano per evitare di pagare. E la scena diventa virale.\nAbbiamo detto tante volte che l\u2019Italia meritava una nuova stagione dei diritti. Ma dobbiamo dire che abbiamo bisogno anche di una nuova stagione dei doveri. Entrare senza pagare non \u00e8 un atto da furbi, non \u00e8 una cosa sulla quale sorridere: \u00e8 un furto alla comunit\u00e0. Educare ai doveri, non solo ai diritti, deve tornare una priorit\u00e0. Su questo video non c\u2019\u00e8 niente da ridere: al massimo c\u2019\u00e8 solo da vergognarsi. Ed \u00e8 giusto dirlo forte e chiaro, senza minimizzare.", "shared_text": "", "time": "2018-08-23 11:48:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=294092018067092&id=113335124914", "link": null} +{"post_id": "10156116736599915", "text": "Enews 538, 22 agosto 2018\nQuello che \u00e8 accaduto a Genova \u00e8 atroce. Assurdo morire cos\u00ec nel 2018.\nLa priorit\u00e0 oggi \u00e8 aiutare le famiglie delle vittime, gli sfollati.\nIl dibattito pubblico, tuttavia, non ha\u2026 Altro parlato di questo. Il governo Salvini-DiMaio infatti ha deciso di attaccare l\u2019opposizione. E di spargere veleni e falsit\u00e0. Ho scelto di replicare perch\u00e9 non volevo che quelle accuse infami non ricevessero una condanna ferma.\nQui (https://www.facebook.com/matteorenziufficiale/posts/10156099736784915) il primo post.\nQui (https://www.facebook.com/matteorenziufficiale/posts/10156103309869915) il secondo post.\nQui (\u2026 Altro", "post_text": "Enews 538, 22 agosto 2018\nQuello che \u00e8 accaduto a Genova \u00e8 atroce. Assurdo morire cos\u00ec nel 2018.\nLa priorit\u00e0 oggi \u00e8 aiutare le famiglie delle vittime, gli sfollati.\nIl dibattito pubblico, tuttavia, non ha\u2026 Altro parlato di questo. Il governo Salvini-DiMaio infatti ha deciso di attaccare l\u2019opposizione. E di spargere veleni e falsit\u00e0. Ho scelto di replicare perch\u00e9 non volevo che quelle accuse infami non ricevessero una condanna ferma.\nQui (https://www.facebook.com/matteorenziufficiale/posts/10156099736784915) il primo post.\nQui (https://www.facebook.com/matteorenziufficiale/posts/10156103309869915) il secondo post.\nQui (\u2026 Altro", "shared_text": "", "time": "2018-08-22 14:34:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s552x414/39880752_10156116736499915_759859193032212480_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=hJdbvp82RlkAQnG6Goy4UTombg4KAgGPopWkuwOD6zFuwYkBB_27ch3GQ&_nc_ht=scontent-cdt1-1.xx&oh=b2f9adfb183d7d352a26e23f9f93533c&oe=5E4EE6C1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "https://www.partitodemocratico.it/partito/intervista-renzi-salvini-e-di-maio-infamanti-quante-bugie-ora-reagire-comitati-civici-tutta-italia/?fbclid=IwAR2Gkv-GWbmdffBtPpIRv7-zgz9a9DxIzJDeCE7Drf8bXjmqUfEVth9G8Io"} +{"post_id": "10156113116724915", "text": "Raccontare la storia di Firenze, la sua bellezza, i suoi valori. Un\u2019emozione infinita, un sogno che coltivo da anni. Perch\u00e9 dentro Firenze non c\u2019\u00e8 il passato: c\u2019\u00e8 il futuro.\n#magia", "post_text": "Raccontare la storia di Firenze, la sua bellezza, i suoi valori. Un\u2019emozione infinita, un sogno che coltivo da anni. Perch\u00e9 dentro Firenze non c\u2019\u00e8 il passato: c\u2019\u00e8 il futuro.\n#magia", "shared_text": "", "time": "2018-08-20 21:08:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/39762405_10156113116624915_440503214656192512_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=L5uyIFSATawAQlpv_JsFPdW4DG0cHOy_F2uNQodnPcyB6umxpLVt5vmzQ&_nc_ht=scontent-cdt1-1.xx&oh=45c4feb44549f09f0ba73d07926c1601&oe=5E7B80E3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10156112013029915", "text": "Oggi intervista a Repubblica. Utilizzare una tragedia per dividere gli italiani, come fanno Di Maio e Salvini, \u00e8 un atteggiamento infame. E torner\u00e0 contro di loro, come un boomerang. La verit\u00e0 \u00e8 che la la super\u2026 Altro concessione a Autostrade l\u2019ha votata Matteo Salvini, noi no. \u201cNo alla Gronda\u201d lo ha detto Grillo, noi no. I soldi dal sistema autostradale li hanno presi la Lega e Conte, noi no. Ecco perch\u00e9 bisogna alzare la testa e reagire alla montagna di falsit\u00e0 che i social rilanciano. Ribattere colpo su colpo. Chi oggi pensa di cavarsela stando zitto in disparte, domani sar\u00e0 considerato complice. Perch\u00e9 davanti a tutti i problemi loro cercano capri espiatori, noi cerchiamo la verit\u00e0. Loro scelgono presunti responsabili e li manganellano sul web, noi vogliamo i veri colpevoli in tribunale. Bisogna reagire insieme, amici. La verit\u00e0 ha bisogno di tempo ma la verit\u00e0 \u00e8 pi\u00f9 forte di chi fa il ministro della paura o il ministro dell\u2019ignoranza. Tocca a ciascuno di noi, forza. \u00c8 tempo di lottare.\nPARTITODEMOCRATICO.IT\nRenzi: \"Salvini e Di Maio infamanti, quante bugie. Ora reagire: comitati civici in tutta Italia\" - Partito Democratico", "post_text": "Oggi intervista a Repubblica. Utilizzare una tragedia per dividere gli italiani, come fanno Di Maio e Salvini, \u00e8 un atteggiamento infame. E torner\u00e0 contro di loro, come un boomerang. La verit\u00e0 \u00e8 che la la super\u2026 Altro concessione a Autostrade l\u2019ha votata Matteo Salvini, noi no. \u201cNo alla Gronda\u201d lo ha detto Grillo, noi no. I soldi dal sistema autostradale li hanno presi la Lega e Conte, noi no. Ecco perch\u00e9 bisogna alzare la testa e reagire alla montagna di falsit\u00e0 che i social rilanciano. Ribattere colpo su colpo. Chi oggi pensa di cavarsela stando zitto in disparte, domani sar\u00e0 considerato complice. Perch\u00e9 davanti a tutti i problemi loro cercano capri espiatori, noi cerchiamo la verit\u00e0. Loro scelgono presunti responsabili e li manganellano sul web, noi vogliamo i veri colpevoli in tribunale. Bisogna reagire insieme, amici. La verit\u00e0 ha bisogno di tempo ma la verit\u00e0 \u00e8 pi\u00f9 forte di chi fa il ministro della paura o il ministro dell\u2019ignoranza. Tocca a ciascuno di noi, forza. \u00c8 tempo di lottare.", "shared_text": "PARTITODEMOCRATICO.IT\nRenzi: \"Salvini e Di Maio infamanti, quante bugie. Ora reagire: comitati civici in tutta Italia\" - Partito Democratico", "time": "2018-08-20 08:51:15", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDC4GhBy3DvGoyX&w=476&h=249&url=https%3A%2F%2Fwww.partitodemocratico.it%2FgCloud-dispatcher%2Faadd3f9b-54fb-11e8-90a4-00a0983d30e5&cfs=1&jq=75&sx=0&sy=0&sw=1440&sh=753&ext=jpg&_nc_hash=AQDy4jJRmKPxCL0f", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156112013029915&id=113335124914", "link": "https://www.partitodemocratico.it/partito/intervista-renzi-salvini-e-di-maio-infamanti-quante-bugie-ora-reagire-comitati-civici-tutta-italia/?fbclid=IwAR3I1RTo9I0vzdE39wAIyNpoqx1f1Ap27kIl6l8FsxR8o778Job-jN21q18"} +{"post_id": "10156105875834915", "text": "ORA BASTA!\nBisogna rispondere, punto su punto, colpo su colpo.\nPerch\u00e9 chi tace oggi sar\u00e0 giudicato complice domani.\n1. Di Maio dice che il suo governo \u00e8 il primo a non aver preso soldi da Benetton o Societ\u00e0 Autostrade e che Benetton non gli ha pagato la campagna elettorale. FALSO!\nVedendo le carte scopriamo che io non ho preso un centesimo n\u00e9\u2026 Altro per la Leopolda, n\u00e9 per le nostre campagne elettorali. E ci\u00f2 significa che Di Maio \u00e8 un bugiardo. E uno sciacallo. Ma come se non bastasse si scopre che Societ\u00e0 Autostrade ha finanziato la Lega e che il Premier Conte \u00e8 stato legale di Aiscat, la societ\u00e0 dei concessionari di autostrada: l'avvocato del popolo diventa all'improvviso l'avvocato delle\u2026 Altro", "post_text": "ORA BASTA!\nBisogna rispondere, punto su punto, colpo su colpo.\nPerch\u00e9 chi tace oggi sar\u00e0 giudicato complice domani.\n1. Di Maio dice che il suo governo \u00e8 il primo a non aver preso soldi da Benetton o Societ\u00e0 Autostrade e che Benetton non gli ha pagato la campagna elettorale. FALSO!\nVedendo le carte scopriamo che io non ho preso un centesimo n\u00e9\u2026 Altro per la Leopolda, n\u00e9 per le nostre campagne elettorali. E ci\u00f2 significa che Di Maio \u00e8 un bugiardo. E uno sciacallo. Ma come se non bastasse si scopre che Societ\u00e0 Autostrade ha finanziato la Lega e che il Premier Conte \u00e8 stato legale di Aiscat, la societ\u00e0 dei concessionari di autostrada: l'avvocato del popolo diventa all'improvviso l'avvocato delle\u2026 Altro", "shared_text": "", "time": "2018-08-17 16:38:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156105875834915&id=113335124914", "link": null} +{"post_id": "10156103309869915", "text": "GENOVA. Grazie a chi sta lavorando senza sosta da due giorni. Le qualit\u00e0 dei soccorritori italiani sono straordinarie. E ovviamente un pensiero alle vittime e alle famiglie straziate dal dolore. Morire cos\u00ec \u00e8 assurdo. Fare giustizia \u00e8 un dovere per queste famiglie, ma anche per ciascuno di noi.\nNelle prime ore abbiamo chiesto a tutti di NON fare\u2026 Altro polemiche. Un Paese civile davanti a una tragedia del genere si unisce, non si divide. Confermo l'impegno. Tuttavia le parole di queste ore di alcuni membri del Governo impongono una puntuale replica su cinque punti. Su questi cinque punti va fatta chiarezza, altrimenti sembriamo complici.\n1. Chi come Luigi Di Maio dice che il mio Governo ha preso\u2026 Altro", "post_text": "GENOVA. Grazie a chi sta lavorando senza sosta da due giorni. Le qualit\u00e0 dei soccorritori italiani sono straordinarie. E ovviamente un pensiero alle vittime e alle famiglie straziate dal dolore. Morire cos\u00ec \u00e8 assurdo. Fare giustizia \u00e8 un dovere per queste famiglie, ma anche per ciascuno di noi.\nNelle prime ore abbiamo chiesto a tutti di NON fare\u2026 Altro polemiche. Un Paese civile davanti a una tragedia del genere si unisce, non si divide. Confermo l'impegno. Tuttavia le parole di queste ore di alcuni membri del Governo impongono una puntuale replica su cinque punti. Su questi cinque punti va fatta chiarezza, altrimenti sembriamo complici.\n1. Chi come Luigi Di Maio dice che il mio Governo ha preso\u2026 Altro", "shared_text": "", "time": "2018-08-16 09:19:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156103309869915&id=113335124914", "link": null} +{"post_id": "10156099736784915", "text": "Chi ha sbagliato deve pagare. E forse, prima o poi, potremo discutere di infrastrutture senza pregiudizi ideologici.\nMa oggi no. Oggi Genova merita solo il silenzio. Il cordoglio. Il dolore. La vicinanza alle famiglie delle vittime. E naturalmente la gratitudine immensa per la straordinaria professionalit\u00e0 dei soccorritori.", "post_text": "Chi ha sbagliato deve pagare. E forse, prima o poi, potremo discutere di infrastrutture senza pregiudizi ideologici.\nMa oggi no. Oggi Genova merita solo il silenzio. Il cordoglio. Il dolore. La vicinanza alle famiglie delle vittime. E naturalmente la gratitudine immensa per la straordinaria professionalit\u00e0 dei soccorritori.", "shared_text": "", "time": "2018-08-14 17:54:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156099736784915&id=113335124914", "link": null} +{"post_id": "10156097989469915", "text": "Non c\u2019\u00e8 nessun complotto dei mercati contro il Governo italiano. Salvini e Di Maio stanno facendo tutto da soli: #Autocomplotto.\nChe aspettarsi del resto da un governo NoVax, NoTav, NoJobs?", "post_text": "Non c\u2019\u00e8 nessun complotto dei mercati contro il Governo italiano. Salvini e Di Maio stanno facendo tutto da soli: #Autocomplotto.\nChe aspettarsi del resto da un governo NoVax, NoTav, NoJobs?", "shared_text": "", "time": "2018-08-13 20:50:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156097989469915&id=113335124914", "link": null} +{"post_id": "10156093114579915", "text": "Sta girando molto sui nostri telefonini la lettera di un medico, la dottoressa Silvia Braccini. Non la conosco ma quello che scrive mi sembra sacrosanto e dunque lo condivido, qui.\nQuello che colpisce e\u2026 Altro sconvolge nella posizione dei Cinque Stelle sui vaccini \u00e8 l\u2019idea che non sia necessario essere preparati per decidere sui dossier.\nNon importa essere laureati in medicina per parlare dei vaccini, basta conoscere il cugino della Taverna. Non importa essere competenti in materia di lavoro, basta essere cresciuti a Pomigliano insieme a Di Maio. Non importa studiare, fare fatica, conoscere: basta andare in rete e il Blog del Guru ci spiegher\u00e0 ci\u00f2 che dobbiamo pensare.\nSiamo nel 2018 e l\u2019Italia discute di Vaccini: \u00e8 pazzesco! Mentre tutto il mondo riflette sulle ripercussioni dell\u2019intelligenza artificiale noi siamo costretti a pagare le conseguenze della stupidit\u00e0 naturale.\nRingrazio la dottoressa Braccini per le sue parole. E condivido: sui vaccini devono esprimersi i medici, la scienza, la ricerca. Non si scherza sulla salute dei nostri figli.", "post_text": "Sta girando molto sui nostri telefonini la lettera di un medico, la dottoressa Silvia Braccini. Non la conosco ma quello che scrive mi sembra sacrosanto e dunque lo condivido, qui.\nQuello che colpisce e\u2026 Altro sconvolge nella posizione dei Cinque Stelle sui vaccini \u00e8 l\u2019idea che non sia necessario essere preparati per decidere sui dossier.\nNon importa essere laureati in medicina per parlare dei vaccini, basta conoscere il cugino della Taverna. Non importa essere competenti in materia di lavoro, basta essere cresciuti a Pomigliano insieme a Di Maio. Non importa studiare, fare fatica, conoscere: basta andare in rete e il Blog del Guru ci spiegher\u00e0 ci\u00f2 che dobbiamo pensare.\nSiamo nel 2018 e l\u2019Italia discute di Vaccini: \u00e8 pazzesco! Mentre tutto il mondo riflette sulle ripercussioni dell\u2019intelligenza artificiale noi siamo costretti a pagare le conseguenze della stupidit\u00e0 naturale.\nRingrazio la dottoressa Braccini per le sue parole. E condivido: sui vaccini devono esprimersi i medici, la scienza, la ricerca. Non si scherza sulla salute dei nostri figli.", "shared_text": "", "time": "2018-08-11 15:36:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/38923453_10156093114539915_7706326847025315840_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=gaYwESTuJtkAQmgkVpDK7stRsn4bq0hsXhrfoISF2NsQCR6V9jEoFxBeA&_nc_ht=scontent-cdt1-1.xx&oh=c21d2c8478c399543b97a8db2c9c89d2&oe=5E476F89", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156093114579915&id=113335124914", "link": null} +{"post_id": "10156090697444915", "text": "Prima ti criticano, poi ti insultano, poi ti odiano. Quindi quando tocca a loro ti copiano.\nVedere Salvini e Di Maio difendere gli #80euro non ha prezzo. Date un occhio a questo video e sentite come definivano\u2026 Altro gli #80euro: una mazzetta, una ****ata, un atto di cinismo.\nLoro sono il Governo del cambiamento. Cambiano idea, infatti, ogni giorno.", "post_text": "Prima ti criticano, poi ti insultano, poi ti odiano. Quindi quando tocca a loro ti copiano.\nVedere Salvini e Di Maio difendere gli #80euro non ha prezzo. Date un occhio a questo video e sentite come definivano\u2026 Altro gli #80euro: una mazzetta, una ****ata, un atto di cinismo.\nLoro sono il Governo del cambiamento. Cambiano idea, infatti, ogni giorno.", "shared_text": "", "time": "2018-08-10 14:20:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156090697444915&id=113335124914", "link": null} +{"post_id": "10156090539834915", "text": "Prendiamola sul ridere, dai, che forse \u00e8 meglio cos\u00ec.\nDopo i sacchetti di plastica, le Lamborghini di Ibiza, i servizi segreti in Consip, i finti fratelli portaborse, le cugine imprenditrici, la pagliacciata \"dell'aereo di Renzi\" arriva adesso - tenetevi forte - la vicenda dei bambini africani.\nUn'indagine aperta da ben DUE anni su un fratello\u2026 Altro del marito di una mia sorella per presunte irregolarit\u00e0 (presunte), nel suo lavoro di dirigente della cooperazione. Prove? Dopo due anni di indagini non risultano, le vedremo al processo. Ma tanto basta solo evocare la vicenda per andare sui giornali oggi - esattamente come due anni fa - con un'altra condanna: quella dei titoli a effetto. E con i\u2026 Altro", "post_text": "Prendiamola sul ridere, dai, che forse \u00e8 meglio cos\u00ec.\nDopo i sacchetti di plastica, le Lamborghini di Ibiza, i servizi segreti in Consip, i finti fratelli portaborse, le cugine imprenditrici, la pagliacciata \"dell'aereo di Renzi\" arriva adesso - tenetevi forte - la vicenda dei bambini africani.\nUn'indagine aperta da ben DUE anni su un fratello\u2026 Altro del marito di una mia sorella per presunte irregolarit\u00e0 (presunte), nel suo lavoro di dirigente della cooperazione. Prove? Dopo due anni di indagini non risultano, le vedremo al processo. Ma tanto basta solo evocare la vicenda per andare sui giornali oggi - esattamente come due anni fa - con un'altra condanna: quella dei titoli a effetto. E con i\u2026 Altro", "shared_text": "", "time": "2018-08-10 12:41:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156090539834915&id=113335124914", "link": null} +{"post_id": "10156088065929915", "text": "UDITE, UDITE: Oggi Salvini difende gli #80euro.\nIeri il Governo ha detto che difender\u00e0 il mio Piano Periferie.\nIeri l'altro hanno difeso la legge sul caporalato e il bonus cultura per i diciottenni, cambiando idea dai piani iniziali.\nHo sempre detto che il tempo sarebbe stato galantuomo, ma questi esagerano: stanno anticipando le tappe\ud83d\ude00.\nDicono:\u2026 Altro \"per\u00f2 Renzi aveva un cattivo carattere.\"\nOk, cercher\u00f2 di imparare a raccontare le barzellette. Ma meglio restare antipatici e fare le cose utili al Paese che cercare di fare i simpatici e far schizzare lo Spread.\nBuona giornata, amici.", "post_text": "UDITE, UDITE: Oggi Salvini difende gli #80euro.\nIeri il Governo ha detto che difender\u00e0 il mio Piano Periferie.\nIeri l'altro hanno difeso la legge sul caporalato e il bonus cultura per i diciottenni, cambiando idea dai piani iniziali.\nHo sempre detto che il tempo sarebbe stato galantuomo, ma questi esagerano: stanno anticipando le tappe\ud83d\ude00.\nDicono:\u2026 Altro \"per\u00f2 Renzi aveva un cattivo carattere.\"\nOk, cercher\u00f2 di imparare a raccontare le barzellette. Ma meglio restare antipatici e fare le cose utili al Paese che cercare di fare i simpatici e far schizzare lo Spread.\nBuona giornata, amici.", "shared_text": "", "time": "2018-08-09 10:49:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156088065929915&id=113335124914", "link": null} +{"post_id": "10156086119604915", "text": "", "post_text": "", "shared_text": "", "time": "2018-08-08 15:02:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156086119604915&id=113335124914", "link": null} +{"post_id": "10156084309194915", "text": "Oggi la maggioranza grillo-leghista ha approvato il Decreto Di Maio. Lo chiamano \"Decreto dignit\u00e0\" ma il vero nome \u00e8 \"Decreto DISOCCUPAZIONE\". Nella relazione tecnica loro, proprio loro, ammettono che con queste norme avremo 80.000 disoccupati in pi\u00f9. A me sembra incredibile: come primo atto ogni Governo sceglie un provvedimento simbolico. Noi\u2026 Altro abbiamo cercato di mettere pi\u00f9 soldi nelle tasche del ceto medio con gli 80\u20ac a dieci milioni di italiani. Loro invece partono con i licenziamenti. E tutto per permettere a Di Maio di mettere una bandierina, per una battaglia di visibilit\u00e0.\nQuesto \u00e8 davvero il Governo del cambiamento: il ministro del lavoro da oggi \u00e8 il ministro della disoccupazione.", "post_text": "Oggi la maggioranza grillo-leghista ha approvato il Decreto Di Maio. Lo chiamano \"Decreto dignit\u00e0\" ma il vero nome \u00e8 \"Decreto DISOCCUPAZIONE\". Nella relazione tecnica loro, proprio loro, ammettono che con queste norme avremo 80.000 disoccupati in pi\u00f9. A me sembra incredibile: come primo atto ogni Governo sceglie un provvedimento simbolico. Noi\u2026 Altro abbiamo cercato di mettere pi\u00f9 soldi nelle tasche del ceto medio con gli 80\u20ac a dieci milioni di italiani. Loro invece partono con i licenziamenti. E tutto per permettere a Di Maio di mettere una bandierina, per una battaglia di visibilit\u00e0.\nQuesto \u00e8 davvero il Governo del cambiamento: il ministro del lavoro da oggi \u00e8 il ministro della disoccupazione.", "shared_text": "", "time": "2018-08-07 17:51:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156084309194915&id=113335124914", "link": null} +{"post_id": "10156083823574915", "text": "Ieri sera al Tg1 sui vaccini, sul decreto disoccupazione e sulla Tav. Se avete due minuti di tempo, mi dite che ne pensate? Astenersi troll, grazie \ud83d\ude0a", "post_text": "Ieri sera al Tg1 sui vaccini, sul decreto disoccupazione e sulla Tav. Se avete due minuti di tempo, mi dite che ne pensate? Astenersi troll, grazie \ud83d\ude0a", "shared_text": "", "time": "2018-08-07 13:12:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156083823574915&id=113335124914", "link": null} +{"post_id": "10156081614399915", "text": "Sui vaccini il Governo sta facendo male ai nostri bambini, specie a quelli pi\u00f9 piccoli. \u00c8 un atto che non ha colore politico, \u00e8 semplicemente un atto assurdo. E come se non bastasse oggi arrivano le minacce al professor Burioni, medico che combatte le bufale dei NoVax. La mia solidariet\u00e0 a Burioni. Speriamo che torni presto il buon senso in questo meraviglioso Paese. E che la maggioranza si fermi prima di votare un decreto legge che rappresenta una ferita per i bambini e una vergogna per l\u2019Italia.", "post_text": "Sui vaccini il Governo sta facendo male ai nostri bambini, specie a quelli pi\u00f9 piccoli. \u00c8 un atto che non ha colore politico, \u00e8 semplicemente un atto assurdo. E come se non bastasse oggi arrivano le minacce al professor Burioni, medico che combatte le bufale dei NoVax. La mia solidariet\u00e0 a Burioni. Speriamo che torni presto il buon senso in questo meraviglioso Paese. E che la maggioranza si fermi prima di votare un decreto legge che rappresenta una ferita per i bambini e una vergogna per l\u2019Italia.", "shared_text": "", "time": "2018-08-06 13:16:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156081614399915&id=113335124914", "link": null} +{"post_id": "10156079106274915", "text": "Un Governo che scherza col fuoco, una scelta assurda sui vaccini, la Lega Ladrona, le bugie e le Fake news per coprire la mancanza di credibilit\u00e0 di Di Maio ministro della disoccupazione. Ho parlato di questo e\u2026 Altro di altro in una intervista al Messaggero, al Mattino, al Gazzettino. Ma per essere credibili dobbiamo mettere in campo un progetto politico e culturalmente solido. Chi ha tempo di leggere mi dice che ne pensa?\nMatteo Renzi ha pubblicato una nota.\n5 agosto 2018 alle ore 10:13 \u00b7", "post_text": "Un Governo che scherza col fuoco, una scelta assurda sui vaccini, la Lega Ladrona, le bugie e le Fake news per coprire la mancanza di credibilit\u00e0 di Di Maio ministro della disoccupazione. Ho parlato di questo e\u2026 Altro di altro in una intervista al Messaggero, al Mattino, al Gazzettino. Ma per essere credibili dobbiamo mettere in campo un progetto politico e culturalmente solido. Chi ha tempo di leggere mi dice che ne pensa?", "shared_text": "Matteo Renzi ha pubblicato una nota.\n5 agosto 2018 alle ore 10:13 \u00b7", "time": "2018-08-05 11:14:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156079106274915&id=113335124914", "link": null} diff --git a/anno3/avrc/assignments/dataviz/dataset/salviniofficial.json b/anno3/avrc/assignments/dataviz/dataset/salviniofficial.json new file mode 100644 index 0000000..9dcd4cf --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/salviniofficial.json @@ -0,0 +1,4411 @@ +{"post_id": "10157133628558155", "text": "Accolta in tiv\u00f9 con tutti gli onori, a spese degli italiani, una che dovrebbe stare in galera...\nRoba da matti.\nLasciamo la tedesca speronatrice di navi militari alla sinistra e al governo clandestino.\nNoi stiamo con l'Italia e con Oriana, e non molliamo!\n#iostoconOriana", "post_text": "Accolta in tiv\u00f9 con tutti gli onori, a spese degli italiani, una che dovrebbe stare in galera...\nRoba da matti.\nLasciamo la tedesca speronatrice di navi militari alla sinistra e al governo clandestino.\nNoi stiamo con l'Italia e con Oriana, e non molliamo!\n#iostoconOriana", "shared_text": "", "time": "2019-11-23 10:35:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76710823_10157133619338155_8882582775807344640_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=P6J2rusAz24AQk2tTCTHAdUS1OjYDUtOaXrbrMMYCLPYv5qj1fyLDtY4w&_nc_ht=scontent-cdt1-1.xx&oh=ffaa4b4a8642307b82c836b4dc390d6a&oe=5E3F6DB6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157133628558155&id=252306033154", "link": null} +{"post_id": "10157138379853155", "text": "Una serata magica a Fiorenzuola, in provincia di Piacenza, con tantissimi emiliani che hanno voglia di cambiare. Non si molla di un centimetro!\nBuonanotte Amici!", "post_text": "Una serata magica a Fiorenzuola, in provincia di Piacenza, con tantissimi emiliani che hanno voglia di cambiare. Non si molla di un centimetro!\nBuonanotte Amici!", "shared_text": "", "time": "2019-11-25 00:24:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/77143815_10157138378458155_1317502963467419648_o.jpg?_nc_cat=1&efg=eyJpIjoidCJ9&_nc_ohc=9P3GMqmQE30AQkki2F0tfM422_D0iHqmwg9Yl-eRYdsPhquVG418bq8Yg&_nc_ht=scontent-cdt1-1.xx&oh=53021f52f4ddc6cb1460b718a86ef690&oe=5E7D8AA1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157138379853155&id=252306033154", "link": null} +{"post_id": "1436732153151784", "text": "Giusto tenere agli atti, per la serie \"il mondo al contrario\": sulla tiv\u00f9 pubblica, pagata da tutti gli italiani, \u00e8 andata in onda, accolta con tutti gli onori, una che se ne \u00e8 infischiata delle nostre leggi e\u2026 Altro ha speronato una motovedetta della Guardia di Finanza rischiando di ammazzare gli occupanti. Messaggio di questa bella serata? L'Italia deve accogliere tutti, profughi, \"migranti economici\" ma anche i \"migranti climatici\" perch\u00e9 se in Africa ci sono sconvolgimenti ambientali \u00e8 colpa nostra. Amen! \ud83d\ude44", "post_text": "Giusto tenere agli atti, per la serie \"il mondo al contrario\": sulla tiv\u00f9 pubblica, pagata da tutti gli italiani, \u00e8 andata in onda, accolta con tutti gli onori, una che se ne \u00e8 infischiata delle nostre leggi e\u2026 Altro ha speronato una motovedetta della Guardia di Finanza rischiando di ammazzare gli occupanti. Messaggio di questa bella serata? L'Italia deve accogliere tutti, profughi, \"migranti economici\" ma anche i \"migranti climatici\" perch\u00e9 se in Africa ci sono sconvolgimenti ambientali \u00e8 colpa nostra. Amen! \ud83d\ude44", "shared_text": "", "time": "2019-11-24 23:24:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1436732153151784&id=252306033154", "link": null} +{"post_id": "10157138280153155", "text": "\ud83d\udd34Al Senato \u00e8 bloccata la legge sulle telecamere in asili e case di riposo, fortemente voluta dalla Lega.\nOra si parla di problemi di \"privacy\"...\nVi date una mossa?\nBambini, anziani e persone fragili\u2026 Altro richiedono tutta la tutela possibile, per evitare alcuni orrori che purtroppo troppo spesso turbano le cronache.\nHo aderito alla petizione del quotidiano il Tempo per dare una sveglia a tutti. Non \u00e8 questione di schieramento politico, ma solo di BUONSENSO.\nPotete scrivere anche voi un'email per aderire a: telecamere@iltempo.it\nILTEMPO.IT\nSalvini sostiene la campagna del Tempo: \"Firmo anch'io per gli asili sicuri\"", "post_text": "\ud83d\udd34Al Senato \u00e8 bloccata la legge sulle telecamere in asili e case di riposo, fortemente voluta dalla Lega.\nOra si parla di problemi di \"privacy\"...\nVi date una mossa?\nBambini, anziani e persone fragili\u2026 Altro richiedono tutta la tutela possibile, per evitare alcuni orrori che purtroppo troppo spesso turbano le cronache.\nHo aderito alla petizione del quotidiano il Tempo per dare una sveglia a tutti. Non \u00e8 questione di schieramento politico, ma solo di BUONSENSO.\nPotete scrivere anche voi un'email per aderire a: telecamere@iltempo.it", "shared_text": "ILTEMPO.IT\nSalvini sostiene la campagna del Tempo: \"Firmo anch'io per gli asili sicuri\"", "time": "2019-11-24 22:38:15", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDoFCkrztNIR1lg&w=476&h=249&url=https%3A%2F%2Fwww.iltempo.it%2Fresizer%2F600%2F315%2Ftrue%2F1574587342476.jpg--salvini_sostiene_la_campagna_del_tempo___firmo_anch_io_per_gli_asili_sicuri_.jpg%3F1574587343000&cfs=1&jq=75&sx=0&sy=0&sw=600&sh=314&ext=jpg&_nc_hash=AQCtdzh4c2CSB-2W", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157138280153155&id=252306033154", "link": "https://www.iltempo.it/politica/2019/11/24/news/salvini-firma-petizione-online-quotidiano-iltempo-telecamere-asili-sicuri-case-riposo-1245161/?fbclid=IwAR0V-gZ1lL6F9qHoqXhZJppETIAS8dH1SAKaufy5sLnNHJ-7wvUqiHHVoCI"} +{"post_id": "10157138431633155", "text": "Altro che carolanti! Tra poco Lucia Borgonzoni in diretta da Giletti su La7!\n#26gennaiovotoLega\n#BorgonzoniPresidente", "post_text": "Altro che carolanti! Tra poco Lucia Borgonzoni in diretta da Giletti su La7!\n#26gennaiovotoLega\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-24 22:00:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76713973_10157138427658155_7959575586429468672_o.jpg?_nc_cat=1&efg=eyJpIjoidCJ9&_nc_ohc=0cljibXAKa8AQl7RrRHx7G0pk6wz1YOXMmNy69-23WRglQ0cWrEkNAxYw&_nc_ht=scontent-cdt1-1.xx&oh=a4e90fbb21760f43b7bcebc2b242cecb&oe=5E84D89C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157138431633155&id=252306033154", "link": null} +{"post_id": "10157138012238155", "text": "Tanto affetto, tante idee e tanta voglia di cambiamento oggi a Rimini.\nDai che il 26 gennaio scriveremo, tutti insieme, una pagina di Storia stupenda\ud83d\ude0a\n#26gennaiovotoLega", "post_text": "Tanto affetto, tante idee e tanta voglia di cambiamento oggi a Rimini.\nDai che il 26 gennaio scriveremo, tutti insieme, una pagina di Storia stupenda\ud83d\ude0a\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-24 21:21:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157138012238155&id=252306033154", "link": null} +{"post_id": "10157138178043155", "text": "Ora in diretta da Fiorenzuola su Rete 4, chi c\u2019\u00e8?", "post_text": "Ora in diretta da Fiorenzuola su Rete 4, chi c\u2019\u00e8?", "shared_text": "", "time": "2019-11-24 20:39:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76685559_10157138177933155_3160699474309808128_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=zgH1AruUiTwAQnNyQiwpcnOzqfZyuHbg_MEWUHCCPrRoGncPP6_RulN5g&_nc_ht=scontent-cdt1-1.xx&oh=fce5705901f583b92c0664eb8dc91272&oe=5E7E9CF0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157138178043155&id=252306033154", "link": null} +{"post_id": "10157138103678155", "text": "GRAZIE Fiorenzuola, GRAZIE Piacenza! \u2764\ufe0f\nOggi sul Carlino \u00e8 uscito un sondaggio che ci d\u00e0 in vantaggio di oltre 8 punti ma mi fido poco: i sondaggi che contano per me sono questi!\nCercheremo di meritarci tutto\u2026 Altro questo affetto, il 26 gennaio INSIEME possiamo cambiare l'Emilia-Romagna dopo 50 anni di sinistra.\nE poi cambiamo l'Italia!\nAbbiamo meno di 70 giorni e OGNI VOTO CONTA!\nCi state? #26gennaiovotoLega\n#BorgonzoniPresidente", "post_text": "GRAZIE Fiorenzuola, GRAZIE Piacenza! \u2764\ufe0f\nOggi sul Carlino \u00e8 uscito un sondaggio che ci d\u00e0 in vantaggio di oltre 8 punti ma mi fido poco: i sondaggi che contano per me sono questi!\nCercheremo di meritarci tutto\u2026 Altro questo affetto, il 26 gennaio INSIEME possiamo cambiare l'Emilia-Romagna dopo 50 anni di sinistra.\nE poi cambiamo l'Italia!\nAbbiamo meno di 70 giorni e OGNI VOTO CONTA!\nCi state? #26gennaiovotoLega\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-24 20:15:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157138103678155&id=252306033154", "link": null} +{"post_id": "2416725745248768", "text": "Un saluto da Fiorenzuola D'Arda (Piacenza). Anche qui in Emilia oggi tanti disagi a causa del maltempo. State con noi in diretta.", "post_text": "Un saluto da Fiorenzuola D'Arda (Piacenza). Anche qui in Emilia oggi tanti disagi a causa del maltempo. State con noi in diretta.", "shared_text": "", "time": "2019-11-24 19:27:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2416725745248768&id=252306033154", "link": null} +{"post_id": "10157137958423155", "text": "Tutto esaurito a Fiorenzuola (Piacenza), con tantissimi che non riescono ad entrare: sto arrivando!\nTra poco qui in diretta.\n#26gennaiovotoLega #BorgonzoniPresidente", "post_text": "Tutto esaurito a Fiorenzuola (Piacenza), con tantissimi che non riescono ad entrare: sto arrivando!\nTra poco qui in diretta.\n#26gennaiovotoLega #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-24 19:18:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157137958423155&id=252306033154", "link": null} +{"post_id": "10157137859038155", "text": "\ud83d\udd34Altri 213 presunti profughi sbarcati oggi a Messina dalla solita nave Ong.\nPorti aperti significano pi\u00f9 partenze, pi\u00f9 sbarchi, pi\u00f9 morti. E pi\u00f9 droga e armi nelle mani di scafisti e trafficanti.\nOttimo risultato per Conte e Lamorgese... Vergogna!", "post_text": "\ud83d\udd34Altri 213 presunti profughi sbarcati oggi a Messina dalla solita nave Ong.\nPorti aperti significano pi\u00f9 partenze, pi\u00f9 sbarchi, pi\u00f9 morti. E pi\u00f9 droga e armi nelle mani di scafisti e trafficanti.\nOttimo risultato per Conte e Lamorgese... Vergogna!", "shared_text": "", "time": "2019-11-24 18:48:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157137859038155&id=252306033154", "link": null} +{"post_id": "10157137724573155", "text": "Sorrisi, abbracci e tanta voglia di buonsenso questa mattina al congresso nazionale di Federanziani a Rimini, alla faccia di chi ci vuole male. Avanti tutta!\n#26gennaiovotoLega", "post_text": "Sorrisi, abbracci e tanta voglia di buonsenso questa mattina al congresso nazionale di Federanziani a Rimini, alla faccia di chi ci vuole male. Avanti tutta!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-24 18:20:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76995369_10157137723913155_3710513188651925504_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=pcKSSIUr7-AAQm7qGEWbT6rBV9gT_p2J3b1CztAeCqebTFHf-PRIbV8FQ&_nc_ht=scontent-cdt1-1.xx&oh=9531a25e2c78292fcf1a7d1881508f32&oe=5E87E217", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157137724573155&id=252306033154", "link": null} +{"post_id": "10157137659868155", "text": "\u201cSpara a Salvini\u201d.\nEcco i frutti dell\u2019odio di certa sinistra... Avanti, a testa alta e senza paura.", "post_text": "\u201cSpara a Salvini\u201d.\nEcco i frutti dell\u2019odio di certa sinistra... Avanti, a testa alta e senza paura.", "shared_text": "", "time": "2019-11-24 17:34:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/76751792_10157137659768155_3250338014462738432_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=YkWeH9i9e8wAQkixoYJyFh7dLOqe2XKL8qq5miv_ved9YS9DmCw9SuS6Q&_nc_ht=scontent-cdt1-1.xx&oh=6667603c52a680fa902db6f7b09f8970&oe=5E83D13E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157137659868155&id=252306033154", "link": null} +{"post_id": "10157137527623155", "text": "Crollato un viadotto autostradale vicino Savona, immagini terrificanti. Sembra non si sia fatto male nessuno e gi\u00e0 questo sarebbe un miracolo.\nUn abbraccio a tutti gli italiani colpiti oggi dalle disastrose\u2026 Altro conseguenze del maltempo.\nGrazie a Vigili del Fuoco, Forze dell'Ordine, Protezione civile, volontari e a tutti coloro che anche queste ore, in tutta Italia, rischiano la vita per salvare quella degli altri.", "post_text": "Crollato un viadotto autostradale vicino Savona, immagini terrificanti. Sembra non si sia fatto male nessuno e gi\u00e0 questo sarebbe un miracolo.\nUn abbraccio a tutti gli italiani colpiti oggi dalle disastrose\u2026 Altro conseguenze del maltempo.\nGrazie a Vigili del Fuoco, Forze dell'Ordine, Protezione civile, volontari e a tutti coloro che anche queste ore, in tutta Italia, rischiano la vita per salvare quella degli altri.", "shared_text": "", "time": "2019-11-24 16:41:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157137527623155&id=252306033154", "link": null} +{"post_id": "573975170003056", "text": "Ancora in diretta da Rimini, con un pensiero a tutti gli italiani colpiti dalle conseguenze del maltempo.", "post_text": "Ancora in diretta da Rimini, con un pensiero a tutti gli italiani colpiti dalle conseguenze del maltempo.", "shared_text": "", "time": "2019-11-24 15:36:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=573975170003056&id=252306033154", "link": null} +{"post_id": "10157137165183155", "text": "Ricordate il prete toscano che vorrebbe portare tutta l'Africa in Italia? Oggi concertino \"sardinante\" di \"Bella Ciao\"... a Messa!\nTra un po' lo vedremo a Sanremo! \ud83d\ude00 (Roba da matti!)", "post_text": "Ricordate il prete toscano che vorrebbe portare tutta l'Africa in Italia? Oggi concertino \"sardinante\" di \"Bella Ciao\"... a Messa!\nTra un po' lo vedremo a Sanremo! \ud83d\ude00 (Roba da matti!)", "shared_text": "", "time": "2019-11-24 14:44:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157137165183155&id=252306033154", "link": null} +{"post_id": "10157137119898155", "text": "\ud83d\ude0b\ud83d\udc1f", "post_text": "\ud83d\ude0b\ud83d\udc1f", "shared_text": "", "time": "2019-11-24 13:49:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75610881_10157137119803155_4210141180802891776_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=XKJWK_hpxuUAQnf_xmS4vbHlGSWsDMX_UqY4bbmPSIW9YhBs7aRTxkTYw&_nc_ht=scontent-cdt1-1.xx&oh=524d8f65be2db0e8db523f89693fbda2&oe=5E7B050F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157137119898155&id=252306033154", "link": null} +{"post_id": "10157136986053155", "text": "\ud83d\udd1d Accoglienza stupenda al congresso nazionale di Federanziani a Rimini: tanta energia, altro che \u201cvecchi\u201d a cui quei poveretti dei 5Stelle e di Grillo vorrebbero togliere il diritto di voto! #26gennaiovotoLega #BorgonzoniPresidente", "post_text": "\ud83d\udd1d Accoglienza stupenda al congresso nazionale di Federanziani a Rimini: tanta energia, altro che \u201cvecchi\u201d a cui quei poveretti dei 5Stelle e di Grillo vorrebbero togliere il diritto di voto! #26gennaiovotoLega #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-24 12:46:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157136986053155&id=252306033154", "link": null} +{"post_id": "450756755848348", "text": "Sempre in diretta da Rimini al Senior Italia Federanziani, grazie dell\u2019invito: qui c\u2019\u00e8 una splendida energia! State con noi.\n#26gennaiovotoLega #BorgonzoniPresidente #cosmosenior", "post_text": "Sempre in diretta da Rimini al Senior Italia Federanziani, grazie dell\u2019invito: qui c\u2019\u00e8 una splendida energia! State con noi.\n#26gennaiovotoLega #BorgonzoniPresidente #cosmosenior", "shared_text": "", "time": "2019-11-24 11:55:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=450756755848348&id=252306033154", "link": null} +{"post_id": "564170374347458", "text": "Un saluto da Rimini con Lucia Borgonzoni e con tante nonne e tanti nonni \ud83d\ude0a\n#26gennaiovotoLega #BorgonzoniPresidente", "post_text": "Un saluto da Rimini con Lucia Borgonzoni e con tante nonne e tanti nonni \ud83d\ude0a\n#26gennaiovotoLega #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-24 11:13:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=564170374347458&id=252306033154", "link": null} +{"post_id": "10157136806303155", "text": "Ancora una splendida domenica a voi da Rimini, Amici! Che tempo fa da voi?\nUn pensiero a chi sta avendo enormi disagi a causa delle forti piogge, speriamo ci diano un po\u2019 di tregua.", "post_text": "Ancora una splendida domenica a voi da Rimini, Amici! Che tempo fa da voi?\nUn pensiero a chi sta avendo enormi disagi a causa delle forti piogge, speriamo ci diano un po\u2019 di tregua.", "shared_text": "", "time": "2019-11-24 10:58:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76243361_10157136805233155_8006395819492114432_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=8i_60Bup7uwAQkA6o3IeoNybMy-cKZdn6K6TUO1fCFtJP1UQkmgUihHMw&_nc_ht=scontent-cdt1-1.xx&oh=cf791918cba0ba28e79a652cce7380a1&oe=5E4386AA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157136806303155&id=252306033154", "link": null} +{"post_id": "10157134954368155", "text": "Altra ONG straniera, altro sbarco, altro regalo.\nAppena torniamo al governo, tornano a valere regole, controlli e seriet\u00e0. #portichiusi", "post_text": "Altra ONG straniera, altro sbarco, altro regalo.\nAppena torniamo al governo, tornano a valere regole, controlli e seriet\u00e0. #portichiusi", "shared_text": "", "time": "2019-11-24 09:33:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/78467755_10157134948793155_1901615775534284800_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=pSHXxJCRHE8AQmQgJjzWekj4Z-fcfGwUdfc0_r0U28lWmL2wfK_UK9itg&_nc_ht=scontent-cdt1-1.xx&oh=f63e6e48c355d9cb6cb3214436dbad71&oe=5E3FC6CC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157134954368155&id=252306033154", "link": null} +{"post_id": "10157134865598155", "text": "Buona domenica Amici.\nCi vediamo questa mattina a Rimini?\nAlle 11 sar\u00f2 al convegno di Federanziani, con tanti nonni e nonne ai quali quel genio di Grillo vorrebbe togliere il diritto di voto. Alle 15.30\u2026 Altro inaugurazione della sede riminese della Lega e poi direzione Fiorenzuola D'Arda (Piacenza) dove sar\u00f2 alle 19. Avanti a testa alta, anche in Emilia-Romagna dopo 50 anni sono convinto che, se ci impegniamo tutti insieme, la sinistra va a casa!\n#26gennaiovotoLega", "post_text": "Buona domenica Amici.\nCi vediamo questa mattina a Rimini?\nAlle 11 sar\u00f2 al convegno di Federanziani, con tanti nonni e nonne ai quali quel genio di Grillo vorrebbe togliere il diritto di voto. Alle 15.30\u2026 Altro inaugurazione della sede riminese della Lega e poi direzione Fiorenzuola D'Arda (Piacenza) dove sar\u00f2 alle 19. Avanti a testa alta, anche in Emilia-Romagna dopo 50 anni sono convinto che, se ci impegniamo tutti insieme, la sinistra va a casa!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-24 09:03:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75521623_10157134859678155_5567264822438920192_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=a6v6SsdpR6EAQnWrdUCggkfgyognKC03Xev1XW96iGBwyWSg1xFH4bDcQ&_nc_ht=scontent-cdt1-1.xx&oh=ca6e63bcf2da10f4c7c9cdda90bdacff&oe=5E7B4727", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157134865598155&id=252306033154", "link": null} +{"post_id": "10157134902988155", "text": "Guardate chi vi saluta! \ud83d\ude00\ud83d\ude00\ud83d\ude00\nBen alzati e buona domenica, Amici!\n#gattiniconSalvini", "post_text": "Guardate chi vi saluta! \ud83d\ude00\ud83d\ude00\ud83d\ude00\nBen alzati e buona domenica, Amici!\n#gattiniconSalvini", "shared_text": "", "time": "2019-11-24 08:03:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157134902988155&id=252306033154", "link": null} +{"post_id": "10157134975353155", "text": "Buonanotte Amici, con un pensiero anche a chi ci vuole male, sempre col sorriso: \u00e8 l'arma migliore! \u263a\ufe0f\u263a\ufe0f\u263a\ufe0f", "post_text": "Buonanotte Amici, con un pensiero anche a chi ci vuole male, sempre col sorriso: \u00e8 l'arma migliore! \u263a\ufe0f\u263a\ufe0f\u263a\ufe0f", "shared_text": "", "time": "2019-11-23 23:55:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/69104641_10157134973158155_3245175206074908672_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=hj1fhYMWqqsAQnv5_-O_JzJOVYFViEuABGprtHTyxoJtg6WBYAsf0tLhg&_nc_ht=scontent-cdt1-1.xx&oh=1676bb63c1ce24fb3048b91a984c78ad&oe=5E50C62D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157134975353155&id=252306033154", "link": null} +{"post_id": "10157103156403155", "text": "Onore ai Carabinieri, orgoglio nazionale! E un grandissimo abbraccio alla signora Luciana \u2764\ufe0f", "post_text": "Onore ai Carabinieri, orgoglio nazionale! E un grandissimo abbraccio alla signora Luciana \u2764\ufe0f", "shared_text": "", "time": "2019-11-23 22:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103156403155&id=252306033154", "link": null} +{"post_id": "10157127997958155", "text": "Un bel biglietto da visita offerto al mondo dalla Milano del PD, niente da dire... Tutto O.K.!", "post_text": "Un bel biglietto da visita offerto al mondo dalla Milano del PD, niente da dire... Tutto O.K.!", "shared_text": "", "time": "2019-11-23 21:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127997958155&id=252306033154", "link": null} +{"post_id": "10157134801778155", "text": "\ud83d\udd34Se questa \u00e8 un'\"opera d'arte\"... A me non fa ridere, nemmeno per un cazzo. Si pu\u00f2 dire? Me lo consentite? Con certe cose non si scherza.", "post_text": "\ud83d\udd34Se questa \u00e8 un'\"opera d'arte\"... A me non fa ridere, nemmeno per un cazzo. Si pu\u00f2 dire? Me lo consentite? Con certe cose non si scherza.", "shared_text": "", "time": "2019-11-23 20:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157134801778155&id=252306033154", "link": null} +{"post_id": "10157134725178155", "text": "Ammazza la compagna a coltellate perch\u00e9 aspettava un bambino. Solo una parola: BASTARDO.\nSolo una pena: galera a vita.\nCORRIERE.IT\n\u00abLascia il coltello, aspetto un figlio da te\u00bb: lui la sgozza e poi va dal barbiere", "post_text": "Ammazza la compagna a coltellate perch\u00e9 aspettava un bambino. Solo una parola: BASTARDO.\nSolo una pena: galera a vita.", "shared_text": "CORRIERE.IT\n\u00abLascia il coltello, aspetto un figlio da te\u00bb: lui la sgozza e poi va dal barbiere", "time": "2019-11-23 18:57:31", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBKiecnpI_3vBWR&w=476&h=249&url=https%3A%2F%2Fimages2.corriereobjects.it%2Fmethode_image%2Fsocialshare%2F2019%2F11%2F23%2F10b0d40e-0df9-11ea-8033-a2d631aa9706.jpg&cfs=1&jq=75&sx=0&sy=68&sw=656&sh=343&ext=jpg&_nc_hash=AQCc0_FrPofRj1u9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157134725178155&id=252306033154", "link": "https://www.corriere.it/cronache/19_novembre_23/palermo-donna-uccisa-coltellate-fermato-l-uomo-cui-aveva-relazione-bceb94ea-0dca-11ea-8033-a2d631aa9706.shtml?fbclid=IwAR09pJ07izEqaTLj73PNZ4IZ4DdmPEwJAKdAhqjconsC9g3Nm46NZeF-w2M"} +{"post_id": "10157134341483155", "text": "L\u2019eccitato Fazio avr\u00e0 il \u201cpiacere e l\u2019onore\u201d di ospitare a vostre spese la signorina Carola.\nNota bene: se non speronate navi militari italiane non fatevi nemmeno avanti, nessun invito...!", "post_text": "L\u2019eccitato Fazio avr\u00e0 il \u201cpiacere e l\u2019onore\u201d di ospitare a vostre spese la signorina Carola.\nNota bene: se non speronate navi militari italiane non fatevi nemmeno avanti, nessun invito...!", "shared_text": "", "time": "2019-11-23 18:17:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/77105725_10157134338313155_735822919661256704_o.jpg?_nc_cat=1&efg=eyJpIjoidCJ9&_nc_ohc=wneF83biGygAQm4DJX4o2lstvWx5ddZvnHo84a35D-LA8IUqbumiqYAQQ&_nc_ht=scontent-cdt1-1.xx&oh=f5dd2e14a20ed3a2c8ba7c6f957843bc&oe=5E478CF2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157134341483155&id=252306033154", "link": null} +{"post_id": "2697938816967459", "text": "In diretta dalla splendida Perugia, con la presidente dell\u2019Umbria Donatellla Tesei, la nuova giunta e i consiglieri regionali della Lega, state con noi!", "post_text": "In diretta dalla splendida Perugia, con la presidente dell\u2019Umbria Donatellla Tesei, la nuova giunta e i consiglieri regionali della Lega, state con noi!", "shared_text": "", "time": "2019-11-23 17:15:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2697938816967459&id=252306033154", "link": null} +{"post_id": "10157134438383155", "text": "Incantevole Perugia vista dall\u2019alto, grazie Umbria: noi ci siamo prima ma soprattutto dopo il voto. Tra poco in diretta con la presidente Donatella Tesei e la squadra che amministrer\u00e0 questa splendida regione che ha scelto il modello di Buongoverno della Lega!", "post_text": "Incantevole Perugia vista dall\u2019alto, grazie Umbria: noi ci siamo prima ma soprattutto dopo il voto. Tra poco in diretta con la presidente Donatella Tesei e la squadra che amministrer\u00e0 questa splendida regione che ha scelto il modello di Buongoverno della Lega!", "shared_text": "", "time": "2019-11-23 17:06:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157134438383155&id=252306033154", "link": null} +{"post_id": "10157130990278155", "text": "Quasi 40 MILA euro spesi per un murales pro-immigrazione dal PD a Milano? Alla faccia delle priorit\u00e0...... Questi non si smentiscono mai.\nILGIORNALE.IT\nSala ha speso ben 38mila euro per un murales immigrazionista", "post_text": "Quasi 40 MILA euro spesi per un murales pro-immigrazione dal PD a Milano? Alla faccia delle priorit\u00e0...... Questi non si smentiscono mai.", "shared_text": "ILGIORNALE.IT\nSala ha speso ben 38mila euro per un murales immigrazionista", "time": "2019-11-23 16:24:57", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBkAOqayfELSie0&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F11%2F22%2F1574420880-murales.jfif.jpeg&cfs=1&jq=75&sx=0&sy=0&sw=1024&sh=536&ext=jpg&_nc_hash=AQCMIAcjtF80dtZt", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130990278155&id=252306033154", "link": "http://www.ilgiornale.it/news/milano/sala-ha-speso-ben-38mila-euro-murales-immigrazionista-1788514.html?fbclid=IwAR1STw8P62Bhe5DGQUYkxSWwYWRcIeI4BNqJY0YkthqDfvFHNUhFYBjg1BI"} +{"post_id": "2867025049996523", "text": "Salvini spara agli immigrati...\nOpera d\u2019arte?\nNo, la solita schifezza di un sinistrato.\nIntanto Raggi e Zingaretti litigano e Roma \u00e8 sommersa dai rifiuti, Grillo e Di Maio non fanno pi\u00f9 neanche ridere, Conte fa\u2026 Altro scappare aziende e approva trattati in silenzio, Renzi e Calenda fanno cose e fondano partiti.\nNoi lavoriamo e non molliamo!\nBuon sabato Amici\ud83d\ude0a", "post_text": "Salvini spara agli immigrati...\nOpera d\u2019arte?\nNo, la solita schifezza di un sinistrato.\nIntanto Raggi e Zingaretti litigano e Roma \u00e8 sommersa dai rifiuti, Grillo e Di Maio non fanno pi\u00f9 neanche ridere, Conte fa\u2026 Altro scappare aziende e approva trattati in silenzio, Renzi e Calenda fanno cose e fondano partiti.\nNoi lavoriamo e non molliamo!\nBuon sabato Amici\ud83d\ude0a", "shared_text": "", "time": "2019-11-23 15:12:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2867025049996523&id=252306033154", "link": null} +{"post_id": "10157134155933155", "text": "Merenda dietetica! Buon pomeriggio Amici.", "post_text": "Merenda dietetica! Buon pomeriggio Amici.", "shared_text": "", "time": "2019-11-23 15:05:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/77006281_10157134155403155_9088925099335090176_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=FziCbzRoXq8AQmVTJq_xfcMsJO-9bEHY0_9gGKLuPtTIPo7Gxlo6z5new&_nc_ht=scontent-cdt1-1.xx&oh=814a52108640e621a825637f9c32899b&oe=5E87E8D0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157134155933155&id=252306033154", "link": null} +{"post_id": "2456962067911916", "text": "\ud83d\udd34 ROMA, ECCO LA VERGOGNOSA FINTA RACCOLTA DIFFERENZIATA!\nMentre il duo sciagura Raggi-Zingaretti continuano a litigare, Roma continua ad essere seppellita dall\u2019immondizia, con la scandalosa complicit\u00e0 di chi\u2026 Altro gestisce i rifiuti.\nLa Lega \u00e8 pronta a mandare a casa questi incapaci: gioved\u00ec 28 novembre, ore 18 al Teatro Italia, inizia il conto alla rovescia per restituire pulizia, sicurezza e dignit\u00e0 alla nostra Capitale. #raggidimettiti", "post_text": "\ud83d\udd34 ROMA, ECCO LA VERGOGNOSA FINTA RACCOLTA DIFFERENZIATA!\nMentre il duo sciagura Raggi-Zingaretti continuano a litigare, Roma continua ad essere seppellita dall\u2019immondizia, con la scandalosa complicit\u00e0 di chi\u2026 Altro gestisce i rifiuti.\nLa Lega \u00e8 pronta a mandare a casa questi incapaci: gioved\u00ec 28 novembre, ore 18 al Teatro Italia, inizia il conto alla rovescia per restituire pulizia, sicurezza e dignit\u00e0 alla nostra Capitale. #raggidimettiti", "shared_text": "", "time": "2019-11-23 14:19:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2456962067911916&id=252306033154", "link": null} +{"post_id": "10157133657473155", "text": "\ud83d\udd34FACCIAMO GIRARE!\nEcco che cos\u2019\u00e8 il trattato europeo che rischia di far saltare i risparmi degli italiani in banca per colpa di questo governo folle.\nNon vorrei che Conte avesse svenduto la nostra Sovranit\u00e0 per\u2026 Altro tenersi la poltrona... Se cos\u00ec fosse, sarebbe alto tradimento e, in pace o in guerra, \u00e8 un reato punibile con la galera.", "post_text": "\ud83d\udd34FACCIAMO GIRARE!\nEcco che cos\u2019\u00e8 il trattato europeo che rischia di far saltare i risparmi degli italiani in banca per colpa di questo governo folle.\nNon vorrei che Conte avesse svenduto la nostra Sovranit\u00e0 per\u2026 Altro tenersi la poltrona... Se cos\u00ec fosse, sarebbe alto tradimento e, in pace o in guerra, \u00e8 un reato punibile con la galera.", "shared_text": "", "time": "2019-11-23 13:43:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157133657473155&id=252306033154", "link": null} +{"post_id": "10157133951443155", "text": "Amici, vi aspetto oggi a Perugia verso le 17 alla Citt\u00e0 della Domenica insieme alla neo-governatrice dell'Umbria Donatella Tesei. Se siete in zona, venite a trovarci.", "post_text": "Amici, vi aspetto oggi a Perugia verso le 17 alla Citt\u00e0 della Domenica insieme alla neo-governatrice dell'Umbria Donatella Tesei. Se siete in zona, venite a trovarci.", "shared_text": "", "time": "2019-11-23 13:26:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74420162_10157133949078155_1358842268504555520_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=6NjBhRkV-VAAQltfhyz6cFwZ1ol2le5REpRQ7ilxC3S7L4t3vabHyVK1g&_nc_ht=scontent-cdt1-1.xx&oh=084884d9a822fd1d11850cba79da57c4&oe=5E8CE598", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157133951443155&id=252306033154", "link": null} +{"post_id": "10157133824753155", "text": "Cosa non si fa per farsi un po\u2019 di pubblicit\u00e0, che squallore. La \u201cscultura\u201d che mi raffigura mentre sparo agli immigrati \u00e8 una vera schifezza, \u00e8 istigazione all\u2019odio e alla violenza, altro che arte. Non vedo l\u2019ora di tornare a Napoli per ammirare i fantastici Presepi tradizionali, non queste porcherie.", "post_text": "Cosa non si fa per farsi un po\u2019 di pubblicit\u00e0, che squallore. La \u201cscultura\u201d che mi raffigura mentre sparo agli immigrati \u00e8 una vera schifezza, \u00e8 istigazione all\u2019odio e alla violenza, altro che arte. Non vedo l\u2019ora di tornare a Napoli per ammirare i fantastici Presepi tradizionali, non queste porcherie.", "shared_text": "", "time": "2019-11-23 12:49:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/78231326_10157133824373155_1477034283817238528_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=ntXSTHDrshQAQkiE36XL7M1bnF5jMhIWzt8MiuLDisqKo8g1DHACjKGXQ&_nc_ht=scontent-cdt1-1.xx&oh=8140a1d8e451a76c7c3649155321b817&oe=5E8335B5", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157133824753155&id=252306033154", "link": null} +{"post_id": "10157133756198155", "text": "\u201cVotateci per beneficenza, contro una destra pericolosetta...\u201d\nE prima ancora voleva togliere il voto agli anziani e cancellare le elezioni!?!\nGrillo ormai non fa pi\u00f9 ridere, poveretto, fa pena.\nAndate a leggervi i commenti degli (ex) elettori 5Stelle sulla loro Pagina e fatevi una risata\ud83d\ude02", "post_text": "\u201cVotateci per beneficenza, contro una destra pericolosetta...\u201d\nE prima ancora voleva togliere il voto agli anziani e cancellare le elezioni!?!\nGrillo ormai non fa pi\u00f9 ridere, poveretto, fa pena.\nAndate a leggervi i commenti degli (ex) elettori 5Stelle sulla loro Pagina e fatevi una risata\ud83d\ude02", "shared_text": "", "time": "2019-11-23 11:55:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/77009292_10157133754783155_7915169730577563648_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=aLRIPbmG0AsAQn81PE0r32e93KLawGkwxCYeneeMLf2tmVhfI6a5Y7vKQ&_nc_ht=scontent-cdt1-1.xx&oh=1f423c6348a2567b379bc10c4bd40d3c&oe=5E4E3CAC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157133756198155&id=252306033154", "link": null} +{"post_id": "10157127723838155", "text": "Effettivamente...! \ud83d\ude38\n#gattiniconSalvini", "post_text": "Effettivamente...! \ud83d\ude38\n#gattiniconSalvini", "shared_text": "", "time": "2019-11-23 09:13:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75435773_10157127721023155_4572692164965826560_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=YHojOsmuiAEAQm1gvXyjOT9AjZbPKpIJWEg1Bc5syDaysNgG8cdu0uVWQ&_nc_ht=scontent-cdt1-1.xx&oh=42aaa8357efd3ad9f1a5800274d3f879&oe=5E87DB0D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127723838155&id=252306033154", "link": null} +{"post_id": "10157128275413155", "text": "Buongiorno gattini! \ud83d\ude38\n#gattiniconSalvini", "post_text": "Buongiorno gattini! \ud83d\ude38\n#gattiniconSalvini", "shared_text": "", "time": "2019-11-23 07:44:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/75311690_10157128274158155_6284281858427453440_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=B3OTu2kA4XIAQlFJCRTXo4rlNZAaqy_5pZr8c45dMG3QRG2AclBhI-Zeg&_nc_ht=scontent-cdt1-1.xx&oh=9dcf27d02fff1b1e519fcc29a9e2f700&oe=5E3FD24F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128275413155&id=252306033154", "link": null} +{"post_id": "10157131846688155", "text": "Buonanotte da me e da GattoBoy!\n#gattiniconSalvini", "post_text": "Buonanotte da me e da GattoBoy!\n#gattiniconSalvini", "shared_text": "", "time": "2019-11-23 00:46:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/76686489_10157131845833155_5462332844342771712_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=ccJHM23NP94AQkU6gO2Tjt9ftNNKn1SdCkp28eI_uqqTEV2Yne5rmUlFg&_nc_ht=scontent-cdt1-1.xx&oh=71cbbd050cd9ce8bb4d465ef8b016ffc&oe=5E7E954B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157131846688155&id=252306033154", "link": null} +{"post_id": "10157132387753155", "text": "Solo 5 anni di galera per chi ha ammazzato un ragazzo, anche meno per i suoi complici, che schifo! Giustizia per Marco Vannini. Quarto Grado", "post_text": "Solo 5 anni di galera per chi ha ammazzato un ragazzo, anche meno per i suoi complici, che schifo! Giustizia per Marco Vannini. Quarto Grado", "shared_text": "", "time": "2019-11-23 00:17:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/77394930_10157132387653155_1900222535388102656_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=HdMVoWaz4HAAQkLIIFriqxGnhcdMX2iHuJ0fTl5xTSYWBrHUF0ohGjoPQ&_nc_ht=scontent-cdt1-1.xx&oh=b2fc5c7f2ac57aace3aceb685c5c0d36&oe=5E7CA0C3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157132387753155&id=252306033154", "link": null} +{"post_id": "10157132193793155", "text": "Che meraviglia! \ud83d\ude3b\ud83d\ude3b\ud83d\ude3b\nUna piccola parte delle migliaia di vostri bimbi felini inviati, grazie! I #gattiniconSalvini terapeutici, portano gioia alla pagina e predispongono bene al sonno \ud83d\ude0a\nP.s. Potete creare un cartello personalizzato con i vostri mici andando su legaonline.it/gattiniconSalvini", "post_text": "Che meraviglia! \ud83d\ude3b\ud83d\ude3b\ud83d\ude3b\nUna piccola parte delle migliaia di vostri bimbi felini inviati, grazie! I #gattiniconSalvini terapeutici, portano gioia alla pagina e predispongono bene al sonno \ud83d\ude0a\nP.s. Potete creare un cartello personalizzato con i vostri mici andando su legaonline.it/gattiniconSalvini", "shared_text": "", "time": "2019-11-22 23:05:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/76771522_10157132187428155_8458745425829036032_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=a8ARwG-QNnsAQkPMB3cKMFGjbL8aFWIDpg_mqzFQdyO1K-mQsPBBcQLNA&_nc_ht=scontent-cdt1-1.xx&oh=8b7450af1648c920db579f65a20c2d2a&oe=5E7D064E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157132193793155&id=252306033154", "link": "http://legaonline.it/gattiniconSalvini?fbclid=IwAR0cUwZ3bryFJor2uY9Ol14TsYR_3aodyS8_lhLlrDfIAhJQe9VEgGaLYX8"} +{"post_id": "10157130697568155", "text": "Non permetteremo a nessuno di svendere la sovranit\u00e0 dell\u2019Italia per qualche poltrona. Se avete qualche minuto, ecco la mia intervista di oggi su \u201cLa Verit\u00e0\u201d.\nBuona serata Amici.", "post_text": "Non permetteremo a nessuno di svendere la sovranit\u00e0 dell\u2019Italia per qualche poltrona. Se avete qualche minuto, ecco la mia intervista di oggi su \u201cLa Verit\u00e0\u201d.\nBuona serata Amici.", "shared_text": "", "time": "2019-11-22 22:16:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/70557853_10157130691253155_3048610435726049280_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=4UpJAWuuTaEAQl7UANI8QYejeBpc0keTpVV9zm-lcmzubOsnxmwd74zTg&_nc_ht=scontent-cdt1-1.xx&oh=5db7422fcc79088b6a78224747f7d693&oe=5E8571D1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130697568155&id=252306033154", "link": null} +{"post_id": "10157121863498155", "text": "Bottiglie, sassi ed insulti verso la Polizia e minacce verso la Lega: ecco i \"democratici\" della sinistra. A me sembrano pi\u00f9 dei nazisti rossi... Noi non molliamo di un centimetro!", "post_text": "Bottiglie, sassi ed insulti verso la Polizia e minacce verso la Lega: ecco i \"democratici\" della sinistra. A me sembrano pi\u00f9 dei nazisti rossi... Noi non molliamo di un centimetro!", "shared_text": "", "time": "2019-11-22 21:27:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157121863498155&id=252306033154", "link": null} +{"post_id": "10157131911223155", "text": "\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\ude02 #stopMES", "post_text": "\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\ude02 #stopMES", "shared_text": "", "time": "2019-11-22 20:46:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/77095817_10157131911068155_7234205461820473344_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=tNCLIVrpzWMAQn9Dv3ghgRGy0jWBV4xb8tc0eAwaTzKr5DrzvcQZ3K5hg&_nc_ht=scontent-cdt1-1.xx&oh=a659953c0f2cc8a6dc2011eec92cf59b&oe=5E7B6D60", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157131911223155&id=252306033154", "link": null} +{"post_id": "10157128721668155", "text": "Ieri a Sorrento, grazie ragazzi!\nUna delle cose che pi\u00f9 mi riempie di orgoglio sono i tantissimi giovani che si avvicinano alla Lega e che hanno deciso di impegnarsi per un\u2019Italia pi\u00f9 forte, pi\u00f9 giusta, pi\u00f9 libera \ud83c\uddee\ud83c\uddf9", "post_text": "Ieri a Sorrento, grazie ragazzi!\nUna delle cose che pi\u00f9 mi riempie di orgoglio sono i tantissimi giovani che si avvicinano alla Lega e che hanno deciso di impegnarsi per un\u2019Italia pi\u00f9 forte, pi\u00f9 giusta, pi\u00f9 libera \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-22 19:37:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/78378285_10157128721563155_1708627935553912832_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=c2Ze8-5Q6R8AQkFQizMoDLgxaye8IeY3DDxU90gP1nGudMbz6VrazUFcQ&_nc_ht=scontent-cdt1-1.xx&oh=41469b2b8d0b70e5b1f743098e7fbb92&oe=5E3FC5BB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128721668155&id=252306033154", "link": null} +{"post_id": "10157131574063155", "text": "Alla Fiera G come Giocare mi hanno regalato una bacchetta magica: ho una mezza idea di quale desiderio realizzare..! \ud83d\ude09", "post_text": "Alla Fiera G come Giocare mi hanno regalato una bacchetta magica: ho una mezza idea di quale desiderio realizzare..! \ud83d\ude09", "shared_text": "", "time": "2019-11-22 18:38:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76602132_10157131572228155_467158275616407552_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=dbNNBb4OA_kAQn6CWOZNdJ3-0t7nUWAT3k7igK3TqZCiqhw2r_sxmm-1A&_nc_ht=scontent-cdt1-1.xx&oh=74740ffe31eba6b7d117b9e4f795f31e&oe=5E40440D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157131574063155&id=252306033154", "link": null} +{"post_id": "10157131533778155", "text": "Forza Sinisa, forza guerriero!!!\nREPUBBLICA.IT\nBologna, Mihajlovic dimesso dall'ospedale: ''Sottoposto a trapianto di midollo osseo, condizioni soddisfacenti''", "post_text": "Forza Sinisa, forza guerriero!!!", "shared_text": "REPUBBLICA.IT\nBologna, Mihajlovic dimesso dall'ospedale: ''Sottoposto a trapianto di midollo osseo, condizioni soddisfacenti''", "time": "2019-11-22 18:04:23", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBYF5Kw83DbrPIp&w=476&h=249&url=https%3A%2F%2Fwww.repstatic.it%2Fcontent%2Fnazionale%2Fimg%2F2019%2F11%2F22%2F124430301-e96e9d39-ec56-4929-913b-2f57e4ad576f.jpg&cfs=1&jq=75&sx=0&sy=16&sw=1200&sh=628&ext=jpg&_nc_hash=AQDW8ws3UkgnPHCz", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157131533778155&id=252306033154", "link": "https://www.repubblica.it/sport/calcio/serie-a/bologna/2019/11/22/news/mihajlovic_trapianto_midollo-241638148/?fbclid=IwAR3wMZOGqFVaLKc6AHUv482vJbEgYnWyTqzvwF07IlSQgJhke0Dxxw9Jn5M"} +{"post_id": "10157128247608155", "text": "Sono alla frutta... Chi glielo dice che dolcevita e velluto mi piacciono fin da bambino?!?\ud83e\udd23\nLINKIESTA.IT\nDolcevita e velluto a coste, per convincere gli emiliani Salvini si traveste da uomo di sinistra", "post_text": "Sono alla frutta... Chi glielo dice che dolcevita e velluto mi piacciono fin da bambino?!?\ud83e\udd23", "shared_text": "LINKIESTA.IT\nDolcevita e velluto a coste, per convincere gli emiliani Salvini si traveste da uomo di sinistra", "time": "2019-11-22 17:17:52", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQC_C4C37UIIVIe8&w=476&h=249&url=https%3A%2F%2Flk.shbcdn.com%2Fblobs%2Fvariants%2F4%2Fc%2F8%2F7%2F4c87c957-d45f-459f-874c-9795a0a23c3b_large.jpg%3F_637098847377212007&cfs=1&jq=75&sx=0&sy=0&sw=1280&sh=670&ext=jpg&_nc_hash=AQD_grWd5__ybcHg", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128247608155&id=252306033154", "link": "https://www.linkiesta.it/it/article/2019/11/21/salvini-sinistra-gattini-bologna-velluto-dolcevita/44454/?fbclid=IwAR0bRStgaInVxE3G2qWTyp0zKN1zGa63gVOUeDFlOpG-1LyKOrnBBgaqxAw"} +{"post_id": "10157131265133155", "text": "E poi arriva il momento di prendere tua figlia a scuola, ed \u00e8 gioia\ud83d\ude0a", "post_text": "E poi arriva il momento di prendere tua figlia a scuola, ed \u00e8 gioia\ud83d\ude0a", "shared_text": "", "time": "2019-11-22 16:21:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75398096_10157131264853155_4755888841015951360_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=FNgthl6shXMAQkB_0qJ8XHhYrKeiY3gQwg5othQ-q7K0mhEjXSycqonPw&_nc_ht=scontent-cdt1-1.xx&oh=42352847459254c93966b1a5cb6baa10&oe=5E83F623", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157131265133155&id=252306033154", "link": null} +{"post_id": "10157130625473155", "text": "\ud83d\udd34 GI\u00d9 LE MANI DAI CONTI CORRENTI DEGLI ITALIANI!!!", "post_text": "\ud83d\udd34 GI\u00d9 LE MANI DAI CONTI CORRENTI DEGLI ITALIANI!!!", "shared_text": "", "time": "2019-11-22 15:29:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130625473155&id=252306033154", "link": null} +{"post_id": "10157131068053155", "text": "Da me e dalla Lega - Salvini Premier, congratulazioni e affettuosi auguri di tanti nuovi successi al presidente del Brasile Jair Messias Bolsonaro per la sua nuova avventura con Alian\u00e7a pelo Brasil \ud83c\uddee\ud83c\uddf9\ud83c\udde7\ud83c\uddf7", "post_text": "Da me e dalla Lega - Salvini Premier, congratulazioni e affettuosi auguri di tanti nuovi successi al presidente del Brasile Jair Messias Bolsonaro per la sua nuova avventura con Alian\u00e7a pelo Brasil \ud83c\uddee\ud83c\uddf9\ud83c\udde7\ud83c\uddf7", "shared_text": "", "time": "2019-11-22 14:54:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75388295_10157131051983155_7141613745104486400_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=L2iPdrgKngkAQmOLUhEXjgceVYNPKOX_3QexlJbeTN_Mpv3k8QOFw-Cew&_nc_ht=scontent-cdt1-1.xx&oh=69b906ca50b6e7f84a83a01913a40b52&oe=5E4142F9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157131068053155&id=252306033154", "link": null} +{"post_id": "10157130502493155", "text": "Indovinello: con la complicit\u00e0 del governo, dove sbarcheranno queste centinaia di immigrati??? \ud83e\udd14", "post_text": "Indovinello: con la complicit\u00e0 del governo, dove sbarcheranno queste centinaia di immigrati??? \ud83e\udd14", "shared_text": "", "time": "2019-11-22 14:53:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75603921_10157130501823155_5081194070651437056_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=YYEBK72_n74AQmXFQ5eXqEB8NzQJsI2qfqJQvMO6OTeQgac49Ap8TBTDg&_nc_ht=scontent-cdt1-1.xx&oh=50f4dae7b69a923290f251dcfa0707d0&oe=5E79D9C8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130502493155&id=252306033154", "link": null} +{"post_id": "2223840771049886", "text": "La mia intervista a UnoMattina, sono sicuro che vi piacer\u00e0! Mi aiutate a condividerla? Grazie Amici \u2764\ufe0f", "post_text": "La mia intervista a UnoMattina, sono sicuro che vi piacer\u00e0! Mi aiutate a condividerla? Grazie Amici \u2764\ufe0f", "shared_text": "", "time": "2019-11-22 13:30:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2223840771049886&id=252306033154", "link": null} +{"post_id": "10157130729833155", "text": "Bene, un Tribunale finalmente riconosce che bloccare gli sbarchi non autorizzati di immigrati non \u00e8 reato!\nSono curioso di vedere a questo punto cosa decideranno le altre Procure, e una volta tornato al governo rifar\u00f2 esattamente le stesse cose.", "post_text": "Bene, un Tribunale finalmente riconosce che bloccare gli sbarchi non autorizzati di immigrati non \u00e8 reato!\nSono curioso di vedere a questo punto cosa decideranno le altre Procure, e una volta tornato al governo rifar\u00f2 esattamente le stesse cose.", "shared_text": "", "time": "2019-11-22 12:28:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75594303_10157130729338155_3796010392489033728_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=aoyx9Vcj5eAAQl_OVNZDYBhBYKWrwmlEBDaLi0PbBGVt8UBNkVGvPgc8w&_nc_ht=scontent-cdt1-1.xx&oh=8cd68f90190bc140b00b5e98bd2bc332&oe=5E508068", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130729833155&id=252306033154", "link": null} +{"post_id": "10157130676218155", "text": "Avete mai visto in altri Paesi qualcuno che manifesta contro l\u2019opposizione temendo che vada al governo? \ud83d\ude0a\nComunque, se il nuovo sport \u00e8 inseguire Salvini, io sono pronto!\nProssimi appuntamenti: domani\u2026 Altro pomeriggio alle 17 a Perugia, domenica a Rimini dal mattino e poi alle 19 a Fiorenzuola D\u2019Arda in provincia di Piacenza!\nOggi in edicola su \u201cLa Verit\u00e0\u201d una pagina con mia lunga, e spero interessante, intervista, dove parlo di questo e di molto altro! \ud83c\uddee\ud83c\uddf9", "post_text": "Avete mai visto in altri Paesi qualcuno che manifesta contro l\u2019opposizione temendo che vada al governo? \ud83d\ude0a\nComunque, se il nuovo sport \u00e8 inseguire Salvini, io sono pronto!\nProssimi appuntamenti: domani\u2026 Altro pomeriggio alle 17 a Perugia, domenica a Rimini dal mattino e poi alle 19 a Fiorenzuola D\u2019Arda in provincia di Piacenza!\nOggi in edicola su \u201cLa Verit\u00e0\u201d una pagina con mia lunga, e spero interessante, intervista, dove parlo di questo e di molto altro! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-22 11:58:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p261x260/76962653_10157130676148155_7328299330463334400_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=yCLfh2OiwS0AQlSfZ6es8NkPyfmcAEsdq88iMjSWShCNsrpu_nozQ7XPg&_nc_ht=scontent-cdt1-1.xx&oh=9e25b770d3fc31bc9097c294fb9cd325&oe=5E437B7B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130676218155&id=252306033154", "link": null} +{"post_id": "2421016778164841", "text": "Qui Roma, in diretta dal Festival del Lavoro. Seguitemi!", "post_text": "Qui Roma, in diretta dal Festival del Lavoro. Seguitemi!", "shared_text": "", "time": "2019-11-22 10:50:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2421016778164841&id=252306033154", "link": null} +{"post_id": "10157130422573155", "text": "Avete seguito su Rai Uno? Mi pare di essere stato chiaro. MES, tasse, mani nei conti correnti, sbarchi senza controllo...: questo governo di minoranza sta facendo danni enormi al Paese, prima se ne va meglio \u00e8.\u2026 Altro\nMa anche: gi\u00fa le mani dal Natale.\nFaccio un appello a genitori e insegnanti: lasciate libert\u00e0 alle iniziative che celebrano la nostra Festa pi\u00f9 bella, nessun bimbo italiano o straniero si offende davanti un Presepe.\nL\u2019Italia ha bisogno di lavoro, sicurezza, e di valori.", "post_text": "Avete seguito su Rai Uno? Mi pare di essere stato chiaro. MES, tasse, mani nei conti correnti, sbarchi senza controllo...: questo governo di minoranza sta facendo danni enormi al Paese, prima se ne va meglio \u00e8.\u2026 Altro\nMa anche: gi\u00fa le mani dal Natale.\nFaccio un appello a genitori e insegnanti: lasciate libert\u00e0 alle iniziative che celebrano la nostra Festa pi\u00f9 bella, nessun bimbo italiano o straniero si offende davanti un Presepe.\nL\u2019Italia ha bisogno di lavoro, sicurezza, e di valori.", "shared_text": "", "time": "2019-11-22 10:10:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76717524_10157130410648155_7973500961324793856_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=ug3qg2HG_FQAQl8vIzRleh9rFJ6W0xi0D-eLMIeSg3d70t_lFAVeWod6w&_nc_ht=scontent-cdt1-1.xx&oh=71de1216c603042008a2231c59edcb56&oe=5E43A6E7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130422573155&id=252306033154", "link": null} +{"post_id": "10157130294793155", "text": "Il governo vuole svendere i risparmi in banca degli Italiani per salvare la poltrona?\nNon glielo permetteremo.\nILSUSSIDIARIO.NET\nCASO MES/ Cos\u00ec l\u2019Europa (grazie a Conte) far\u00e0 fuori le nostre banche", "post_text": "Il governo vuole svendere i risparmi in banca degli Italiani per salvare la poltrona?\nNon glielo permetteremo.", "shared_text": "ILSUSSIDIARIO.NET\nCASO MES/ Cos\u00ec l\u2019Europa (grazie a Conte) far\u00e0 fuori le nostre banche", "time": "2019-11-22 09:31:12", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBQ2fFK5Aq5rG66&w=476&h=249&url=https%3A%2F%2Fcdnx.ilsussidiario.net%2Fwp-content%2Fuploads%2F2019%2F11%2F19%2Fconte_merkel_3_lapresse1280.jpg&cfs=1&jq=75&sx=135&sy=0&sw=1147&sh=600&ext=jpg&_nc_hash=AQCchx4gXJiqBeh1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130294793155&id=252306033154", "link": "https://www.ilsussidiario.net/news/caso-mes-cosi-leuropa-grazie-a-conte-fara-fuori-le-nostre-banche/1950836/?fbclid=IwAR2U3ydFuLvvb3Yqx0GR7A6Hn37ByBzo2UJ1qNdd01DIbm31sbzFQE2NpV8"} +{"post_id": "10157130314038155", "text": "Ora vi saluto in diretta a #UnoMattina su Rai Uno, sperando di riuscire a portare la vostra voce, Amici \ud83d\ude0a", "post_text": "Ora vi saluto in diretta a #UnoMattina su Rai Uno, sperando di riuscire a portare la vostra voce, Amici \ud83d\ude0a", "shared_text": "", "time": "2019-11-22 09:07:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74491002_10157130312828155_6876481814739812352_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=g1N4SF38fe0AQkO3gkgFm4HCCg_3cjfsR-jzbt-eA8K3MnpxsAAMefNKA&_nc_ht=scontent-cdt1-1.xx&oh=128355bcd00f5c99852917a06c584e9b&oe=5E8055E6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157130314038155&id=252306033154", "link": null} +{"post_id": "10157128349693155", "text": "Che gioia negli occhi di questi quattro gemelli incontrati a Sorrento\ud83d\ude0a\nBuona vita ragazzi e buona giornata Amici!", "post_text": "Che gioia negli occhi di questi quattro gemelli incontrati a Sorrento\ud83d\ude0a\nBuona vita ragazzi e buona giornata Amici!", "shared_text": "", "time": "2019-11-22 08:10:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75103845_10157128349303155_6305078459441872896_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=O9p4kwOVVuQAQkMgCHPXzXi8dA-pmaDqOetIpciY8GZEf_JNrEHh16CQA&_nc_ht=scontent-cdt1-1.xx&oh=d90f8e25b9332cc038bdfff17afa8e9f&oe=5E441240", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128349693155&id=252306033154", "link": null} +{"post_id": "10157128354018155", "text": "Dolce al limone di Positano, riduce i danni del governo ciarlatano!\nBuonanotte Amici \ud83d\ude0a", "post_text": "Dolce al limone di Positano, riduce i danni del governo ciarlatano!\nBuonanotte Amici \ud83d\ude0a", "shared_text": "", "time": "2019-11-21 23:41:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75424743_10157128352838155_3025448119480352768_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=fxkxPZzB0AIAQmxAV9dw4ugD96nxGYEV8a0jrbc6zbjk-v-GhR3IlTJ-A&_nc_ht=scontent-cdt1-1.xx&oh=de50758aab5725cd11d43e7a401692e7&oe=5E497670", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128354018155&id=252306033154", "link": null} +{"post_id": "10157128571498155", "text": "Se domani mattina alle 9.05 avete tempo di accendere, vi saluto in diretta su Rai Uno a #UnoMattina, Amici.", "post_text": "Se domani mattina alle 9.05 avete tempo di accendere, vi saluto in diretta su Rai Uno a #UnoMattina, Amici.", "shared_text": "", "time": "2019-11-21 23:15:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/73524707_10157128567543155_5282009329614979072_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=qOm_FW1EtTcAQmnrTsGYlfsA5ODWsqggjUCx0gIUv6oQbgg1pVvyjQIyA&_nc_ht=scontent-cdt1-1.xx&oh=bae1aba8a5b84d0bb71eb6c4e6413058&oe=5E4F17F7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128571498155&id=252306033154", "link": null} +{"post_id": "10157128942158155", "text": "Micio birbantello! \ud83d\ude39\nP.s. Siamo arrivati a circa 10mila foto di vostri bimbi felini ricevute! E una marea di cani e cagnolini! Grazie!\nLe stiamo organizzando, vedrete \ud83d\ude09\nI #gattiniconSalvini portano bene!", "post_text": "Micio birbantello! \ud83d\ude39\nP.s. Siamo arrivati a circa 10mila foto di vostri bimbi felini ricevute! E una marea di cani e cagnolini! Grazie!\nLe stiamo organizzando, vedrete \ud83d\ude09\nI #gattiniconSalvini portano bene!", "shared_text": "", "time": "2019-11-21 21:51:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74912273_10157128923438155_6070472442197835776_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=YpH1U-lsi4oAQk-nb-gLseFz6h9dQRCSvXkPqHekBtxtoUfksstLCaWiQ&_nc_ht=scontent-cdt1-1.xx&oh=f9523111675342bf9bf6e42230ba2900&oe=5E8B8D6E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128942158155&id=252306033154", "link": null} +{"post_id": "10157128669713155", "text": "Grande vittoria della Lega che ha insistito e alla fine ha raggiunto il risultato anche per l\u2019Emilia-Romagna: niente Imu per gli immobili terremotati inagibili. Avanti cos\u00ec!", "post_text": "Grande vittoria della Lega che ha insistito e alla fine ha raggiunto il risultato anche per l\u2019Emilia-Romagna: niente Imu per gli immobili terremotati inagibili. Avanti cos\u00ec!", "shared_text": "", "time": "2019-11-21 20:14:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74359845_10157128844583155_567887864436621312_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=xxyd4JhtyngAQkI8liIS9f7THLPH8GZ4LScqJjTs8nMxxahtfqGY7gFSA&_nc_ht=scontent-cdt1-1.xx&oh=80986bee25882f63c2e96497692e507c&oe=5E8C15CB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128669713155&id=252306033154", "link": null} +{"post_id": "10157128565063155", "text": "Accordi innominabili all\u2019insaputa del Popolo?\n#STOPMES, nessuno tocchi i risparmi degli italiani.", "post_text": "Accordi innominabili all\u2019insaputa del Popolo?\n#STOPMES, nessuno tocchi i risparmi degli italiani.", "shared_text": "", "time": "2019-11-21 19:39:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/77297737_10157128564288155_1973051230674485248_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=621i-Q19axAAQl_qVv3MuWQXe-Pm6zgAQRmZxV_M7dAUFKSLh-AFONJLg&_nc_ht=scontent-cdt1-1.xx&oh=00bd3f3cd19da07615a97c59101caa48&oe=5E4254CA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128565063155&id=252306033154", "link": null} +{"post_id": "10157128334288155", "text": "Secondo il genio, quello che vuole togliere il diritto di voto agli anziani, adesso il pericolo per l\u2019Italia sarebbero le sigarette elettroniche.\nMa ci faccia il piacere Grillo, svapa che ti passa!!!", "post_text": "Secondo il genio, quello che vuole togliere il diritto di voto agli anziani, adesso il pericolo per l\u2019Italia sarebbero le sigarette elettroniche.\nMa ci faccia il piacere Grillo, svapa che ti passa!!!", "shared_text": "", "time": "2019-11-21 18:55:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/78474107_10157128329168155_3008305002331504640_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=aks_vAttK5UAQne_CdKwwPPCJt7wCceCxUFbu-8h5Kjjg5gbe95QEbCZQ&_nc_ht=scontent-cdt1-1.xx&oh=01fc83ca74d7566eb82afce3b9490170&oe=5E82BE6E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128334288155&id=252306033154", "link": null} +{"post_id": "10157127941908155", "text": "MA COME SI FA???\nLeggete questa storia.\nTroppo spesso lo Stato, la sua burocrazia, i suoi Uffici esercitano una violenza fuori controllo, umiliante, brutale.\nSiamo in mano alla \u201cprocedura\u201d in cui non c\u2019\u00e8 spazio per un briciolo di umanit\u00e0 e compassione.\nNon \u00e8 questa l'Italia che ho in mente.\nLEGGO.IT\nVisita fiscale alla malata terminale ricoverata all'hospice, morta due giorni dopo. La famiglia: \u00abUn'umiliazione\u00bb", "post_text": "MA COME SI FA???\nLeggete questa storia.\nTroppo spesso lo Stato, la sua burocrazia, i suoi Uffici esercitano una violenza fuori controllo, umiliante, brutale.\nSiamo in mano alla \u201cprocedura\u201d in cui non c\u2019\u00e8 spazio per un briciolo di umanit\u00e0 e compassione.\nNon \u00e8 questa l'Italia che ho in mente.", "shared_text": "LEGGO.IT\nVisita fiscale alla malata terminale ricoverata all'hospice, morta due giorni dopo. La famiglia: \u00abUn'umiliazione\u00bb", "time": "2019-11-21 18:14:21", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDfweaIqBtwrULH&w=476&h=249&url=https%3A%2F%2Fwww.leggo.it%2Fphotos%2FMED%2F72%2F70%2F4877270_1121_malata_terminale_visita_fiscale_inps.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQAeMPsVgsfm4V5m", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127941908155&id=252306033154", "link": "https://www.leggo.it/italia/cronache/visita_fiscale_inps_malata_terminale_hospice_bergamo_ultime_notizie-4877270.html?fbclid=IwAR3rS-KPBQpdC3UNenIUuqA7XSmIIIGrROAj_MO0riQlrM_tbOBnjoHKiQs"} +{"post_id": "446184696090049", "text": "La mia intervista su La7 in collegamento dalla magnifica Sorrento, buona serata Amici!", "post_text": "La mia intervista su La7 in collegamento dalla magnifica Sorrento, buona serata Amici!", "shared_text": "", "time": "2019-11-21 17:20:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=446184696090049&id=252306033154", "link": null} +{"post_id": "10157128033578155", "text": "Un saluto da Positano, incantevole anche con la pioggia, dopo aver accolto proprio oggi il suo sindaco nella grande famiglia della Lega \ud83d\ude0a\nMa quanta bellezza ha la nostra Italia? \ud83c\uddee\ud83c\uddf9\nAvanti tutta Amici!", "post_text": "Un saluto da Positano, incantevole anche con la pioggia, dopo aver accolto proprio oggi il suo sindaco nella grande famiglia della Lega \ud83d\ude0a\nMa quanta bellezza ha la nostra Italia? \ud83c\uddee\ud83c\uddf9\nAvanti tutta Amici!", "shared_text": "", "time": "2019-11-21 16:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/77189599_10157128033158155_5810545827512320000_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=JgOsdBOv5tgAQlbd3vviYqZWwahlNHaNvTT6F-Sap2t4746ZehroTrrEA&_nc_ht=scontent-cdt1-1.xx&oh=cc8dde8ffa85101109eb75dd69fed56b&oe=5E89714E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157128033578155&id=252306033154", "link": null} +{"post_id": "10157127922473155", "text": "Il 2 dicembre sar\u00f2 nelle Fiandre, ad Anversa, e questa signora prepara \"mezzi non propriamente pacifici\" (!) contro di me vantando \"una vasta esperienza in questo campo\" (!!).\nChe cosa avr\u00e0 voluto dire?!?\nAlla faccia del dibattito democratico...\nLe servirebbe un po' di terapia calmante di #gattiniconSalvini.", "post_text": "Il 2 dicembre sar\u00f2 nelle Fiandre, ad Anversa, e questa signora prepara \"mezzi non propriamente pacifici\" (!) contro di me vantando \"una vasta esperienza in questo campo\" (!!).\nChe cosa avr\u00e0 voluto dire?!?\nAlla faccia del dibattito democratico...\nLe servirebbe un po' di terapia calmante di #gattiniconSalvini.", "shared_text": "", "time": "2019-11-21 15:30:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74571739_10157127929488155_5746784091655634944_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=iGbAlNrJPHIAQkyn2obeWOcpLMq_6HXkO_221pnmBz8Ly3C1f0XXFC8tQ&_nc_ht=scontent-cdt1-1.xx&oh=9e071364ab97b2cf754ffa9b205bc8a8&oe=5E822140", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127922473155&id=252306033154", "link": null} +{"post_id": "10157127875198155", "text": "Anche a tavola, prima l\u2019Italia! \ud83c\uddee\ud83c\uddf9\nBuon pranzo Amici \ud83d\ude0a", "post_text": "Anche a tavola, prima l\u2019Italia! \ud83c\uddee\ud83c\uddf9\nBuon pranzo Amici \ud83d\ude0a", "shared_text": "", "time": "2019-11-21 14:44:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/78641290_10157127874258155_5162040928713572352_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=yPKQZz14pFgAQmqqDTQjQZlFQ7qbtf5oBAEg80EVZzDoLdCUQyk2QN1wQ&_nc_ht=scontent-cdt1-1.xx&oh=45805dbfdbafbe4a8f74491f9d9d81f9&oe=5E46FB51", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127875198155&id=252306033154", "link": null} +{"post_id": "10157127691603155", "text": "\u26a0 Siamo allo Stato di polizia fiscale.\nDopo aver riaperto i porti e inventato tasse su plastica e zucchero ora il governo Pd-5Stelle-Renzi vuole pure entrare sul conto corrente degli Italiani.\nFOLLIA! La Lega \u00e8 pronta a fermare questi matti.", "post_text": "\u26a0 Siamo allo Stato di polizia fiscale.\nDopo aver riaperto i porti e inventato tasse su plastica e zucchero ora il governo Pd-5Stelle-Renzi vuole pure entrare sul conto corrente degli Italiani.\nFOLLIA! La Lega \u00e8 pronta a fermare questi matti.", "shared_text": "", "time": "2019-11-21 13:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127691603155&id=252306033154", "link": null} +{"post_id": "10157127595058155", "text": "Nooooo! Miagolii di delusione a Sorrento, poca pappa per i #gattiniconSalvini \ud83d\ude3f\ud83d\ude18", "post_text": "Nooooo! Miagolii di delusione a Sorrento, poca pappa per i #gattiniconSalvini \ud83d\ude3f\ud83d\ude18", "shared_text": "", "time": "2019-11-21 12:31:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76651672_10157127592258155_5876333585341874176_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=ef-CoNeNqnUAQkUYEetxpW6KBvu74rOX82hSoxx11EsMQxH0k3639WijA&_nc_ht=scontent-cdt1-1.xx&oh=e4fdb1f4fe5244e3a0d9a854cef6a952&oe=5E798E91", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127595058155&id=252306033154", "link": null} +{"post_id": "10157127587073155", "text": "\ud83d\udd34 Moscovici dice che il MES salverebbe le banche? S\u00ec, quelle francesi e tedesche...\nIl MES metterebbe infatti in crisi le nostre banche e farebbe pagare a noi la crisi delle banche tedesche e francesi.\nNon per\u2026 Altro niente il presidente dell'ABI e il governatore di Bankitalia sono preoccupati, hanno capito che col MES rischiamo un bis del disastro del Bail-in, anzi cento volte peggio.\nQuesto attacco alla democrazia e al risparmio italiani non deve passare e, come sempre ha fatto, la Lega si opporr\u00e0, in ogni sede ed in ogni maniera.\nConte e il governo di sinistra da che parte stanno?\nFANPAGE.IT\nMes, per Moscovici \u00e8 \u201cdecisivo\u201d. Salvini: \u201cRiforma mette le banche italiane in pericolo\u201d", "post_text": "\ud83d\udd34 Moscovici dice che il MES salverebbe le banche? S\u00ec, quelle francesi e tedesche...\nIl MES metterebbe infatti in crisi le nostre banche e farebbe pagare a noi la crisi delle banche tedesche e francesi.\nNon per\u2026 Altro niente il presidente dell'ABI e il governatore di Bankitalia sono preoccupati, hanno capito che col MES rischiamo un bis del disastro del Bail-in, anzi cento volte peggio.\nQuesto attacco alla democrazia e al risparmio italiani non deve passare e, come sempre ha fatto, la Lega si opporr\u00e0, in ogni sede ed in ogni maniera.\nConte e il governo di sinistra da che parte stanno?", "shared_text": "FANPAGE.IT\nMes, per Moscovici \u00e8 \u201cdecisivo\u201d. Salvini: \u201cRiforma mette le banche italiane in pericolo\u201d", "time": "2019-11-21 12:14:11", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDx2WJ7RcZEoFoG&w=476&h=249&url=https%3A%2F%2Fstatic.fanpage.it%2Fwp-content%2Fuploads%2F2019%2F11%2Fmoscovici-salvini-1.jpg&cfs=1&jq=75&sx=0&sy=32&sw=650&sh=340&ext=jpg&_nc_hash=AQCXJGP-8hsN-WEY", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127587073155&id=252306033154", "link": "https://www.fanpage.it/politica/mes-per-moscovici-e-decisivo-salvini-la-riforma-mette-le-banche-italiane-in-pericolo/?fbclid=IwAR1-zk7PxRIfJngWsAfXyIA_OZodMnMTDTPKLM87fr3_EU5Qz-3w5Jy9rqk"} +{"post_id": "739185533221552", "text": "In diretta da Sorrento con il sindaco Giuseppe Cuomo e il sindaco di Positano Michele De Lucia, che entrano nella grande famiglia della Lega, benvenuti!", "post_text": "In diretta da Sorrento con il sindaco Giuseppe Cuomo e il sindaco di Positano Michele De Lucia, che entrano nella grande famiglia della Lega, benvenuti!", "shared_text": "", "time": "2019-11-21 11:29:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=739185533221552&id=252306033154", "link": null} +{"post_id": "10157127409763155", "text": "Se non riesci a pagare una multa e ti entrano nel conto corrente per pignorarti i risparmi, siamo all'Unione sovietica fiscale, lo Stato di polizia fiscale. Questi sono pericolosi.", "post_text": "Se non riesci a pagare una multa e ti entrano nel conto corrente per pignorarti i risparmi, siamo all'Unione sovietica fiscale, lo Stato di polizia fiscale. Questi sono pericolosi.", "shared_text": "", "time": "2019-11-21 10:50:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74890891_10157127409403155_1850222381553942528_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=th8GeJn-fyEAQmZM7Gi6wB4HjY1Z_Hjovszy5R6K3lVC6Q8IN9nBMketw&_nc_ht=scontent-cdt1-1.xx&oh=b7d86c0609586bea6369838085799547&oe=5E4306B3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127409763155&id=252306033154", "link": null} +{"post_id": "10157127306613155", "text": "A me piace un sacco come cantante. Ti voglio bene Fiorella!\nILGIORNALE.IT\nMannoia all'attacco di Salvini: \"Ormai sta delirando\"", "post_text": "A me piace un sacco come cantante. Ti voglio bene Fiorella!", "shared_text": "ILGIORNALE.IT\nMannoia all'attacco di Salvini: \"Ormai sta delirando\"", "time": "2019-11-21 09:55:52", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDZYGMy3FS8JdXt&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2017%2F02%2F13%2F1487009866-170206-224559to060217spe0244.jpg&cfs=1&jq=75&sx=0&sy=10&sw=737&sh=386&ext=jpg&_nc_hash=AQCeQBHeKQU3iCqm", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127306613155&id=252306033154", "link": "http://www.ilgiornale.it/news/politica/mannoia-allattacco-salvini-ormai-sta-delirando-1787671.html?fbclid=IwAR1K-kEYzokMx8ogoMKLgpBk8U19oy3Y6vi9yhLuUyNaERD2e5hc076fg8Y"} +{"post_id": "10157122332853155", "text": "Onore a Venezia e al Veneto, meritano solo rispetto e vicinanza.", "post_text": "Onore a Venezia e al Veneto, meritano solo rispetto e vicinanza.", "shared_text": "", "time": "2019-11-21 09:14:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122332853155&id=252306033154", "link": null} +{"post_id": "10157127183138155", "text": "Trotta trotta cavallino. E io trotto! \ud83d\ude0a\nBuongiorno Amici \u2600\ufe0f, direzione Campania: ci vediamo alle 11 a Sorrento e alle 13 a Positano \ud83c\uddee\ud83c\uddf9", "post_text": "Trotta trotta cavallino. E io trotto! \ud83d\ude0a\nBuongiorno Amici \u2600\ufe0f, direzione Campania: ci vediamo alle 11 a Sorrento e alle 13 a Positano \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-21 08:14:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/70865584_10157127177363155_5137222567567818752_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=xC0wxYIXg-kAQmeA-9_AQLust2qjn6Niac_CTrcKIYsUBsvtpFLNaDR9A&_nc_ht=scontent-cdt1-1.xx&oh=c6ba26faf0a32662d8f8d79740b218b9&oe=5E7E73BD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157127183138155&id=252306033154", "link": null} +{"post_id": "10157125677013155", "text": "Buonanotte a voi e a tutti i vostri pelosetti, micetti e anche cagnolini! Ieri, oggi e domani: #gattiniconSalvini \ud83d\udc31\u2764\ufe0f\ud83c\uddee\ud83c\uddf9", "post_text": "Buonanotte a voi e a tutti i vostri pelosetti, micetti e anche cagnolini! Ieri, oggi e domani: #gattiniconSalvini \ud83d\udc31\u2764\ufe0f\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-20 23:46:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/78185955_10157125672673155_3924231006114021376_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=GcvyDrSdRFEAQl-bIZelfXofTf1U1mSa27FxzkaQQHFfZsAZ7-26uIirw&_nc_ht=scontent-cdt1-1.xx&oh=d7e1a881c9f29324ad03982e7f8f6940&oe=5E3EBD47", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157125677013155&id=252306033154", "link": null} +{"post_id": "10157125207468155", "text": "Accidenti!\ud83d\ude38\n#gattiniconSalvini", "post_text": "Accidenti!\ud83d\ude38\n#gattiniconSalvini", "shared_text": "", "time": "2019-11-20 22:45:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74473750_10157125205003155_6732877306865385472_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=XnhadF0svIUAQnFXmA1Fc1aGNvsnwf1S0liOUqv8zu4bqaluCKscos_aQ&_nc_ht=scontent-cdt1-1.xx&oh=12ff4224b58a8372bb77185ce82a9db3&oe=5E868056", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157125207468155&id=252306033154", "link": null} +{"post_id": "10157126014383155", "text": "Domani mattina sar\u00f2 in questi luoghi stupendi, orgoglio della Campania e dell'Italia intera, per dare il benvenuto nella grande famiglia della Lega ai sindaci di Sorrento e di Positano!\nAvanti tutta, #primagliitaliani \ud83c\uddee\ud83c\uddf9", "post_text": "Domani mattina sar\u00f2 in questi luoghi stupendi, orgoglio della Campania e dell'Italia intera, per dare il benvenuto nella grande famiglia della Lega ai sindaci di Sorrento e di Positano!\nAvanti tutta, #primagliitaliani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-20 22:22:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75481874_10157126046133155_6309721422168064000_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=rzgcobRvS5IAQlZyZquJiWYZlCJ1dLrpXc-y2ggzG0WRjih0L9HoAuOyg&_nc_ht=scontent-cdt1-1.xx&oh=e354283493a4b72c63143b4b4eca2086&oe=5E86DA88", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157126014383155&id=252306033154", "link": null} +{"post_id": "1022626181407900", "text": "Bravissima Lucia! ORGOGLIOSO delle donne della Lega \ud83d\ude0a\n#26gennaiovotoLega", "post_text": "Bravissima Lucia! ORGOGLIOSO delle donne della Lega \ud83d\ude0a\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-20 21:10:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1022626181407900&id=252306033154", "link": null} +{"post_id": "10157125269253155", "text": "Noi come Lega abbiamo sempre detto a Conte e a Tria che NON avevano il mandato per toccare il MES.\nSe qualcuno ha agito, lo ha fatto tradendo il mandato del popolo italiano, e l'alto tradimento costa caro.\nNon \u00e8 la prima volta che l'ex avvocato del popolo mente, ma la verit\u00e0 verr\u00e0 fuori.", "post_text": "Noi come Lega abbiamo sempre detto a Conte e a Tria che NON avevano il mandato per toccare il MES.\nSe qualcuno ha agito, lo ha fatto tradendo il mandato del popolo italiano, e l'alto tradimento costa caro.\nNon \u00e8 la prima volta che l'ex avvocato del popolo mente, ma la verit\u00e0 verr\u00e0 fuori.", "shared_text": "", "time": "2019-11-20 20:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157125269253155&id=252306033154", "link": null} +{"post_id": "10157125600228155", "text": "Ma come si fa a non amare i micetti? \ud83d\ude3b\nGrazie alle decine di migliaia di amici felini pubblicati ovunque, viva chi sa sorridere!\n#gattiniconSalvini", "post_text": "Ma come si fa a non amare i micetti? \ud83d\ude3b\nGrazie alle decine di migliaia di amici felini pubblicati ovunque, viva chi sa sorridere!\n#gattiniconSalvini", "shared_text": "", "time": "2019-11-20 19:32:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/78041061_10157125597703155_5701189891367370752_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=pnyHL9BeJg8AQmpG9UjGIspAVgiR-66qP4ZVYJXK12hgEW7vHpsNILJgQ&_nc_ht=scontent-cdt1-1.xx&oh=1510345beab4d0fa72bea20af521ee72&oe=5E83718A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157125600228155&id=252306033154", "link": null} +{"post_id": "601545953922184", "text": "In diretta da Roma con Bruno Vespa, state con noi!", "post_text": "In diretta da Roma con Bruno Vespa, state con noi!", "shared_text": "", "time": "2019-11-20 17:59:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=601545953922184&id=252306033154", "link": null} +{"post_id": "10157125220848155", "text": "++ \ud83d\udd34 \u201cVI PRENDIAMO A SPRANGATE NELLE ARCATE GENGIVALI\u201d ++\nViva la libera e democratica partecipazione di chi non la pensa come noi. Ma non trovo niente di democratico nel dire che dovremmo essere presi \"a\u2026 Altro sprangate nelle arcate gengivali\".\nAlla faccia di \"Salvini semina odio\"....\nUn po' di #gattiniconSalvini potrebbero essere terapeutici per certi violenti.", "post_text": "++ \ud83d\udd34 \u201cVI PRENDIAMO A SPRANGATE NELLE ARCATE GENGIVALI\u201d ++\nViva la libera e democratica partecipazione di chi non la pensa come noi. Ma non trovo niente di democratico nel dire che dovremmo essere presi \"a\u2026 Altro sprangate nelle arcate gengivali\".\nAlla faccia di \"Salvini semina odio\"....\nUn po' di #gattiniconSalvini potrebbero essere terapeutici per certi violenti.", "shared_text": "", "time": "2019-11-20 17:25:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76720744_10157125215418155_9057543285131706368_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=jptQINQPlLYAQkVuXF0lWKTy_H47chOOHL-3nLTClEcQhn4LLMe4oEsWA&_nc_ht=scontent-cdt1-1.xx&oh=5c65a9534aa1926c17767459c7d37d77&oe=5E88140F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157125220848155&id=252306033154", "link": null} +{"post_id": "10157125164548155", "text": "\ud83d\udd34 Il signor Conte \u00e8 bugiardo o smemorato.\nSe fosse onesto direbbe che ai tavoli, cos\u00ec come a ogni dibattito pubblico, abbiamo sempre detto di NO al MES.\nNon \u00e8 difficile da ammettere.\nDel resto, se\u2026 Altro necessario, ci sono numerose dichiarazioni che testimoniano la contrariet\u00e0 espressa da tutti i componenti della Lega, ministri compresi, su questo argomento.\nCosa teme il presidente del Consiglio? Ha forse svenduto i risparmi degli italiani?", "post_text": "\ud83d\udd34 Il signor Conte \u00e8 bugiardo o smemorato.\nSe fosse onesto direbbe che ai tavoli, cos\u00ec come a ogni dibattito pubblico, abbiamo sempre detto di NO al MES.\nNon \u00e8 difficile da ammettere.\nDel resto, se\u2026 Altro necessario, ci sono numerose dichiarazioni che testimoniano la contrariet\u00e0 espressa da tutti i componenti della Lega, ministri compresi, su questo argomento.\nCosa teme il presidente del Consiglio? Ha forse svenduto i risparmi degli italiani?", "shared_text": "", "time": "2019-11-20 16:29:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/78530947_10157125155093155_5619498204648177664_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=G9Sm99ktfroAQnjUyMVHpwrqRI4neuTy5qrYf9cwRhqs06vF279BE9FuA&_nc_ht=scontent-cdt1-1.xx&oh=ebc2b5d523ef29b1a1503c45303ff1a8&oe=5E40F9DA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157125164548155&id=252306033154", "link": null} +{"post_id": "10157124843058155", "text": "Forza Sinisa, grande sportivo, vero Uomo.\nILRESTODELCARLINO.IT\nMihajlovic dimesso dall'ospedale - il Resto del Carlino", "post_text": "Forza Sinisa, grande sportivo, vero Uomo.", "shared_text": "ILRESTODELCARLINO.IT\nMihajlovic dimesso dall'ospedale - il Resto del Carlino", "time": "2019-11-20 14:42:08", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQA1D7ZXs0r4aa_i&w=476&h=249&url=https%3A%2F%2Fimmagini.quotidiano.net%2F%3Furl%3Dhttp%253A%252F%252Fp1014p.quotidiano.net%253A80%252Fpolopoly_fs%252F1.4896860.1574253945%2521%252FhttpImage%252Fimage.jpg_gen%252Fderivatives%252Fwidescreen%252Fimage.jpg%26w%3D700%26h%3D391&cfs=1&jq=75&sx=0&sy=8&sw=700&sh=366&ext=jpg&_nc_hash=AQAZ1NufdbL3dQK7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157124843058155&id=252306033154", "link": "https://www.ilrestodelcarlino.it/sport/calcio/mihajlovic-news-1.4896840?fbclid=IwAR2mlOREd60bROc1B3r8FMCtXv8LHHvJWGRN33q3Ek2zmBmi0mL3aWNgRfA"} +{"post_id": "466177934031468", "text": "Una bella chiacchierata con Mario Giordano, buon pranzo Amici \ud83d\ude0a", "post_text": "Una bella chiacchierata con Mario Giordano, buon pranzo Amici \ud83d\ude0a", "shared_text": "", "time": "2019-11-20 13:30:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=466177934031468&id=252306033154", "link": null} +{"post_id": "2386504351611232", "text": "\ud83d\udd34Vogliamo limitare i danni di un governo imbarazzante, non basta piangere i poliziotti morti di Trieste, bisogna mettere dei quattrini. Speriamo che ci sia l'intelligenza di evitare i \"no\" pregiudiziali alle\u2026 Altro proposte della Lega, stanno tagliando su tutto, ma i tagli alla SICUREZZA sono i pi\u00f9 pericolosi. \u00c8 triste che tutto ci\u00f2 avvenga nel silenzio dell'attuale Ministro dell'Interno.", "post_text": "\ud83d\udd34Vogliamo limitare i danni di un governo imbarazzante, non basta piangere i poliziotti morti di Trieste, bisogna mettere dei quattrini. Speriamo che ci sia l'intelligenza di evitare i \"no\" pregiudiziali alle\u2026 Altro proposte della Lega, stanno tagliando su tutto, ma i tagli alla SICUREZZA sono i pi\u00f9 pericolosi. \u00c8 triste che tutto ci\u00f2 avvenga nel silenzio dell'attuale Ministro dell'Interno.", "shared_text": "", "time": "2019-11-20 12:56:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2386504351611232&id=252306033154", "link": null} +{"post_id": "10157124640433155", "text": "Frizzantella la puntata di ieri sera da Mario Giordano, tra cinema, pop-corn e panini alle sardine... Miao! \ud83d\ude38\nVe la ripropongo su questa Pagina verso le 13.30, se vi va!\nE sempre e comunque: #gattiniconSalvini", "post_text": "Frizzantella la puntata di ieri sera da Mario Giordano, tra cinema, pop-corn e panini alle sardine... Miao! \ud83d\ude38\nVe la ripropongo su questa Pagina verso le 13.30, se vi va!\nE sempre e comunque: #gattiniconSalvini", "shared_text": "", "time": "2019-11-20 12:43:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157124640433155&id=252306033154", "link": null} +{"post_id": "862953947433964", "text": "++ PRIMA PARTE ++\nQui Roma, in diretta dalla Camera per presentare le proposte parlamentari della Lega su sicurezza, difesa e soccorso pubblico.\nState con noi", "post_text": "++ PRIMA PARTE ++\nQui Roma, in diretta dalla Camera per presentare le proposte parlamentari della Lega su sicurezza, difesa e soccorso pubblico.\nState con noi", "shared_text": "", "time": "2019-11-20 11:45:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=862953947433964&id=252306033154", "link": null} +{"post_id": "10157122451398155", "text": "\"Sovranisti? Dei virus da tenere a bada.\"\nMa pensa!\nPurtroppo per il presidente del Parlamento europeo (del Pd), la sovranit\u00e0 appartiene al Popolo e al libero, democratico esercizio delle elezioni.\nCos\u00ec come l'hanno sperimentato in Umbria, lo vedranno il 26 gennaio in Emilia-Romagna e in Calabria \ud83d\ude09", "post_text": "\"Sovranisti? Dei virus da tenere a bada.\"\nMa pensa!\nPurtroppo per il presidente del Parlamento europeo (del Pd), la sovranit\u00e0 appartiene al Popolo e al libero, democratico esercizio delle elezioni.\nCos\u00ec come l'hanno sperimentato in Umbria, lo vedranno il 26 gennaio in Emilia-Romagna e in Calabria \ud83d\ude09", "shared_text": "", "time": "2019-11-20 10:36:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122451398155&id=252306033154", "link": null} +{"post_id": "10157124161468155", "text": "Vedo che i gattini sono piaciuti, come non amarli? \ud83d\ude38\n#gattiniconSalvini", "post_text": "Vedo che i gattini sono piaciuti, come non amarli? \ud83d\ude38\n#gattiniconSalvini", "shared_text": "", "time": "2019-11-20 09:06:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76751436_10157124144988155_6644455217414799360_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=Cxfs4B6zpUcAQk0jnT33VDeCZCXOqk0xB2j3nz8EXhFYso7Ga_7C-7UCg&_nc_ht=scontent-cdt1-1.xx&oh=5d403463bf83fa60bbf8352c6b2ef7ad&oe=5E49120E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157124161468155&id=252306033154", "link": null} +{"post_id": "10157121467768155", "text": "Buongiorno Amici, oggi non caff\u00e8 ma una spremuta per cominciare bene la giornata!", "post_text": "Buongiorno Amici, oggi non caff\u00e8 ma una spremuta per cominciare bene la giornata!", "shared_text": "", "time": "2019-11-20 07:43:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75603884_10157121462983155_6922154428245999616_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=gvpQKCxZ-rcAQmzuxouClxFtCOF5Tk033Ylc1yEjT-PjcceS4PYygQo_Q&_nc_ht=scontent-cdt1-1.xx&oh=adcfa8cce7eb65eefd7176ca89eff83c&oe=5E8C3153", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157121467768155&id=252306033154", "link": null} +{"post_id": "10157123152298155", "text": "Buona guarigione a Mir\u00f2 e GRAZIE per le migliaia di foto dei vostri mici che avete inviato, spettacolari! Le pubblicheremo!\nI gattini sono intelligenti, puliti, liberi e portano bene\u263a\ufe0f\nBuonanotte Amici!\n#gattiniconSalvini", "post_text": "Buona guarigione a Mir\u00f2 e GRAZIE per le migliaia di foto dei vostri mici che avete inviato, spettacolari! Le pubblicheremo!\nI gattini sono intelligenti, puliti, liberi e portano bene\u263a\ufe0f\nBuonanotte Amici!\n#gattiniconSalvini", "shared_text": "", "time": "2019-11-20 00:45:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/75226299_10157123145228155_1359923105614528512_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=cxp36d7AiJ8AQlZcV8D3cyQd3RhbFhzJFjOyzkB2okTFgIabNSsBwsF5Q&_nc_ht=scontent-cdt1-1.xx&oh=cde82f7088e78f8d54771534504a0511&oe=5E7F8865", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157123152298155&id=252306033154", "link": null} +{"post_id": "10157123098593155", "text": "Pop-corn a mezzanotte? Si pu\u00f2 fare! \u263a\ufe0f\nSe state seguendo su Rete 4, vi ringrazio e vi mando un abbraccio!", "post_text": "Pop-corn a mezzanotte? Si pu\u00f2 fare! \u263a\ufe0f\nSe state seguendo su Rete 4, vi ringrazio e vi mando un abbraccio!", "shared_text": "", "time": "2019-11-19 23:53:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/71958573_10157123110688155_8680815859465191424_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=M39H9qNhvjwAQlFAdqZfj2ZXzy5gNq6092nvyg4WFVAZMCYihOBwty2Fg&_nc_ht=scontent-cdt1-1.xx&oh=3f8ba41f42672e236d751135419c3565&oe=5E7C5F55", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157123098593155&id=252306033154", "link": null} +{"post_id": "10157123029983155", "text": "La serata non \u00e8 ancora finita, Amici nottambuli! Tra poco in onda su Rete 4 con Mario Giordano!", "post_text": "La serata non \u00e8 ancora finita, Amici nottambuli! Tra poco in onda su Rete 4 con Mario Giordano!", "shared_text": "", "time": "2019-11-19 23:26:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75289374_10157123028388155_4242054982540460032_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=hrZAAO0i7ZcAQkLc6MPeFdwefW3NgJ6yG9JijDozx3JlvbrfgD-jJ_zCQ&_nc_ht=scontent-cdt1-1.xx&oh=ebaa81b81baac35c90f7a627abea14c5&oe=5E4E4A63", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157123029983155&id=252306033154", "link": null} +{"post_id": "10157122979153155", "text": "Avete seguito a #CartaBianca? Grande Lucia!\nE se i sondaggi \"ufficiali\" mostrati su Rai Tre, che danno il PD vincente in Emilia-Romagna, hanno lo stesso valore di quelli che davano il candidato di PD-5 Stelle\u2026 Altro vincente in Umbria (dove poi la candidata della Lega ha prevalso di \"soli\" VENTI PUNTI)... siamo a cavallo! \u263a\ufe0f\u263a\ufe0f\u263a\ufe0f\n#26gennaiovotoLega", "post_text": "Avete seguito a #CartaBianca? Grande Lucia!\nE se i sondaggi \"ufficiali\" mostrati su Rai Tre, che danno il PD vincente in Emilia-Romagna, hanno lo stesso valore di quelli che davano il candidato di PD-5 Stelle\u2026 Altro vincente in Umbria (dove poi la candidata della Lega ha prevalso di \"soli\" VENTI PUNTI)... siamo a cavallo! \u263a\ufe0f\u263a\ufe0f\u263a\ufe0f\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-19 23:06:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75610898_10157122972478155_1094198826245292032_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=jXHI8zDvxowAQk0xbf8GCY3dYN1i5isNIOUpMely0HqQ1wrnzQa4RiAfQ&_nc_ht=scontent-cdt1-1.xx&oh=1a76474cdb7a9f9216df6e59299a40d9&oe=5E500CF3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122979153155&id=252306033154", "link": null} +{"post_id": "10157122847528155", "text": "Ora su Rai Tre pare che il candidato del PD si sia dimenticato che al governo ci sono i suoi compagni di partito \u263a\ufe0f\n#26gennaiovotoLega", "post_text": "Ora su Rai Tre pare che il candidato del PD si sia dimenticato che al governo ci sono i suoi compagni di partito \u263a\ufe0f\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-19 22:17:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/76205498_10157122844553155_222956979310559232_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=MXVrXwIgUqYAQn-kkjpaTg7az0f_OCr8IMkYq4mtafc79XMrt8qYs6sVg&_nc_ht=scontent-cdt1-1.xx&oh=27592c07569beb9997f7b1dd53a534c7&oe=5E4534E6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122847528155&id=252306033154", "link": null} +{"post_id": "10157122797173155", "text": "Chi di voi sta seguendo Lucia Borgonzoni su Rai Tre? Facciamo sentire la nostra voce anche su Twitter, con gli hashtag #BorgonzoniPresidente e #Cartabianca\nForza Lucia!", "post_text": "Chi di voi sta seguendo Lucia Borgonzoni su Rai Tre? Facciamo sentire la nostra voce anche su Twitter, con gli hashtag #BorgonzoniPresidente e #Cartabianca\nForza Lucia!", "shared_text": "", "time": "2019-11-19 21:57:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76720798_10157122797058155_7866146724752916480_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=v7aYhD_05D0AQlu5FBBmL6sU09Jxx3-N7cVLp4CMcGaTMcEEiJmauuU2w&_nc_ht=scontent-cdt1-1.xx&oh=8a24af410b9d4d2de74cb0aab6852918&oe=5E4DDD11", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122797173155&id=252306033154", "link": null} +{"post_id": "10157122250358155", "text": "Se avete voglia e riuscite a stare svegli, dopo aver seguito Lucia Borgonzoni in diretta su Rai Tre alle 22 (mi raccomando!), mi trovate su Rete 4 con Mario Giordano, verso le 23.30! Buona serata Amici.", "post_text": "Se avete voglia e riuscite a stare svegli, dopo aver seguito Lucia Borgonzoni in diretta su Rai Tre alle 22 (mi raccomando!), mi trovate su Rete 4 con Mario Giordano, verso le 23.30! Buona serata Amici.", "shared_text": "", "time": "2019-11-19 21:30:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75604030_10157122250273155_1661406878963335168_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=5HuX-t-d0dQAQnhKfd8osp54ZYWteEYz_4D7O9vy-Uo-6JjaPjfa2NF2w&_nc_ht=scontent-cdt1-1.xx&oh=dfe2671506b9be3c16c9a1f83e3bedd9&oe=5E4F3A1C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122250358155&id=252306033154", "link": null} +{"post_id": "10157122684108155", "text": "Oggi niente pranzo, ora mi mettono davanti questa carbonara... Vado?!?", "post_text": "Oggi niente pranzo, ora mi mettono davanti questa carbonara... Vado?!?", "shared_text": "", "time": "2019-11-19 21:20:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75496023_10157122682693155_4656223300278550528_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=pblFScUTulQAQkF46hmW1Ct8h_EEk2v1-kHXBKN5vW13S_HShPPXgoaLw&_nc_ht=scontent-cdt1-1.xx&oh=42435eaf91ffb9545b35c883b74e25c5&oe=5E79E364", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122684108155&id=252306033154", "link": null} +{"post_id": "10157122574033155", "text": "Cosa c'\u00e8 di pi\u00f9 dolce e bello dei gattini? \ud83d\ude09\nP.s. Ai vostri bambini felini piacciono sardine e pesciolini? Mettete la foto nei commenti! Miao! \ud83d\ude38\n#gattiniconSalvini", "post_text": "Cosa c'\u00e8 di pi\u00f9 dolce e bello dei gattini? \ud83d\ude09\nP.s. Ai vostri bambini felini piacciono sardine e pesciolini? Mettete la foto nei commenti! Miao! \ud83d\ude38\n#gattiniconSalvini", "shared_text": "", "time": "2019-11-19 20:42:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76944859_10157122562808155_5208234246874857472_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=7hztPF_nSNkAQnvYAXylaV2G1G72uWjFbzwYstel2_A42okBZtam0Pmqw&_nc_ht=scontent-cdt1-1.xx&oh=bcf375200284be0e6f052adbca92c37e&oe=5E8BE154", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122574033155&id=252306033154", "link": null} +{"post_id": "10157122170418155", "text": "C\u2019\u00e8 chi invecchiando diventa pi\u00f9 saggio, c\u2019\u00e8 chi invecchiando diventa Vauro. Amen.\nILGIORNALE.IT\nQuel livore di Vauro su Salvini: \"Leone di peluche, fugge via...\"", "post_text": "C\u2019\u00e8 chi invecchiando diventa pi\u00f9 saggio, c\u2019\u00e8 chi invecchiando diventa Vauro. Amen.", "shared_text": "ILGIORNALE.IT\nQuel livore di Vauro su Salvini: \"Leone di peluche, fugge via...\"", "time": "2019-11-19 19:02:56", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCfOZYMRc1FIhEU&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F11%2F16%2F1573906806-vauro-senesi.jpg&cfs=1&jq=75&sx=0&sy=79&sw=1118&sh=585&ext=jpg&_nc_hash=AQB06_WYlkjrVhC_", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122170418155&id=252306033154", "link": "http://www.ilgiornale.it/news/cronache/livore-vauro-su-salvini-leone-peluche-fugge-1786868.html?fbclid=IwAR25o_XR0aMqnwAqPMQZ_lm2b6ju5WT-6B1U62a1kUq1HTFqhQLM9SIS9c0"} +{"post_id": "10157122165118155", "text": "Ma Chef Rubio si \u00e8 travestito da prete???\ud83d\ude02\nILGIORNALE.IT\nPadre Zanotelli contro Salvini: \"Processatelo per disumanit\u00e0\"", "post_text": "Ma Chef Rubio si \u00e8 travestito da prete???\ud83d\ude02", "shared_text": "ILGIORNALE.IT\nPadre Zanotelli contro Salvini: \"Processatelo per disumanit\u00e0\"", "time": "2019-11-19 17:57:48", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDRwJouj89OCl0r&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F02%2F04%2F1549291768-zanotelli-lapresse.jpg&cfs=1&jq=75&sx=0&sy=108&sw=918&sh=480&ext=jpg&_nc_hash=AQD25Ri5f6NXcxFp", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157122165118155&id=252306033154", "link": "http://www.ilgiornale.it/news/politica/padre-zanotelli-contro-salvini-processatelo-disumanit-1786982.html?mobile_detect=false&fbclid=IwAR0_lJUlhJ9lYJauPJw5CnTVoYfx1RkctDKcRtlZxR2Re6MC1gY-AZNRiWs"} +{"post_id": "10157121994673155", "text": "Amici, questa sera alle 22 tutti in diretta su Rai Tre con Lucia Borgonzoni a #Cartabianca!\nPrima liberiamo l'Emilia-Romagna e poi liberiamo l'Italia! \ud83c\uddee\ud83c\uddf9\n#26gennaiovotoLega #BorgonzoniPresidente\nCommenti liberi: https://www.facebook.com/Cartabiancarai3/photos/a.1805255899719136/2477353035842749/", "post_text": "Amici, questa sera alle 22 tutti in diretta su Rai Tre con Lucia Borgonzoni a #Cartabianca!\nPrima liberiamo l'Emilia-Romagna e poi liberiamo l'Italia! \ud83c\uddee\ud83c\uddf9\n#26gennaiovotoLega #BorgonzoniPresidente\nCommenti liberi: https://www.facebook.com/Cartabiancarai3/photos/a.1805255899719136/2477353035842749/", "shared_text": "", "time": "2019-11-19 16:48:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74837825_10157121982988155_5723450844301492224_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=oFZZCLMqiMEAQkZoM40Exp7-ehtLx5-XBWJCcsX9PRztIkL4eSLp90SdQ&_nc_ht=scontent-cdt1-1.xx&oh=36e7233f73dada8ba332eddb608d83c9&oe=5E4F2CB8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157121994673155&id=252306033154", "link": null} +{"post_id": "2152571631714989", "text": "Buon pomeriggio Amici!\nUn saluto da Terni per festeggiare la storica liberazione dell\u2019Umbria e per accogliere un nuovo consigliere comunale che lascia i 5Stelle ed entra nella grande famiglia della Lega, benvenuto!", "post_text": "Buon pomeriggio Amici!\nUn saluto da Terni per festeggiare la storica liberazione dell\u2019Umbria e per accogliere un nuovo consigliere comunale che lascia i 5Stelle ed entra nella grande famiglia della Lega, benvenuto!", "shared_text": "", "time": "2019-11-19 15:21:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2152571631714989&id=252306033154", "link": null} +{"post_id": "10157121728178155", "text": "Conte subito in Parlamento a dire la verit\u00e0, il S\u00ec alla modifica del MES sarebbe la rovina per milioni di italiani e la fine della sovranit\u00e0 nazionale.", "post_text": "Conte subito in Parlamento a dire la verit\u00e0, il S\u00ec alla modifica del MES sarebbe la rovina per milioni di italiani e la fine della sovranit\u00e0 nazionale.", "shared_text": "", "time": "2019-11-19 14:55:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75292963_10157121780353155_5701561272894488576_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=kPnjzlFi7iQAQmLMxyyfVV84si7NOccrAIUY4ZOVv-d5jdZWIMLX_r5EQ&_nc_ht=scontent-cdt1-1.xx&oh=334f120f39c6f26870b273d4954a4b07&oe=5E862B6E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157121728178155&id=252306033154", "link": null} +{"post_id": "869764413419510", "text": "Ieri sera in collegamento volante con Porro, quanta pazienza serve con i grillini? Pensassero alle figuracce che stanno facendo su Ius Soli e Ilva \ud83d\ude07", "post_text": "Ieri sera in collegamento volante con Porro, quanta pazienza serve con i grillini? Pensassero alle figuracce che stanno facendo su Ius Soli e Ilva \ud83d\ude07", "shared_text": "", "time": "2019-11-19 13:53:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=869764413419510&id=252306033154", "link": null} +{"post_id": "10157121400583155", "text": "++ PER NON DIMENTICARE ++\nScommetto che oggi quasi nessun giornale e quasi nessun telegiornale ricorder\u00e0 che proprio il 19 novembre di 50 anni fa i manifestanti comunisti ammazzarono a Milano, Antonio\u2026 Altro Annarumma, un poliziotto, un ragazzo di 22 anni, che ebbe la testa penetrata da un tubolare d'acciaio.\nDa l\u00ec cominciarono gli anni di piombo e una stagione di odio e violenza verso le Forze dell'Ordine, verso gli \"sbirri\", ancora oggi insultati e attaccati dai cortei di certi \"democratici\" figli di pap\u00e0.\nUna stagione che in Italia non deve tornare.", "post_text": "++ PER NON DIMENTICARE ++\nScommetto che oggi quasi nessun giornale e quasi nessun telegiornale ricorder\u00e0 che proprio il 19 novembre di 50 anni fa i manifestanti comunisti ammazzarono a Milano, Antonio\u2026 Altro Annarumma, un poliziotto, un ragazzo di 22 anni, che ebbe la testa penetrata da un tubolare d'acciaio.\nDa l\u00ec cominciarono gli anni di piombo e una stagione di odio e violenza verso le Forze dell'Ordine, verso gli \"sbirri\", ancora oggi insultati e attaccati dai cortei di certi \"democratici\" figli di pap\u00e0.\nUna stagione che in Italia non deve tornare.", "shared_text": "", "time": "2019-11-19 13:11:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75610644_10157121367408155_3779201050133659648_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=wHFsBQMgS_gAQm7iCpivGtcHHvrCVZhCS5higBKYMeDnSRqcZYNpAu_Vg&_nc_ht=scontent-cdt1-1.xx&oh=d0247c94e6e2cc4af75d01a3dcb1259a&oe=5E4E9CAB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157121400583155&id=252306033154", "link": null} +{"post_id": "10157121174473155", "text": "Pi\u00f9 ci attaccano, pi\u00f9 ci rafforzano! IO NON MOLLO, Amici!", "post_text": "Pi\u00f9 ci attaccano, pi\u00f9 ci rafforzano! IO NON MOLLO, Amici!", "shared_text": "", "time": "2019-11-19 11:55:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74285458_10157121174153155_4877017999778775040_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=FJZwa5GA2YIAQm3ccoqTrzSvXS-IQ_q-ejXn10bZDHUAY45HbSP6CfUtg&_nc_ht=scontent-cdt1-1.xx&oh=e4d76767850f6c107b2526f7e3400892&oe=5E4C7141", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157121174473155&id=252306033154", "link": null} +{"post_id": "426339328047495", "text": "In diretta da Rimini insieme alle nostre Forze dell\u2019Ordine per il Congresso nazionale del Sindacato Autonomo di Polizia.\nState con noi! \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Rimini insieme alle nostre Forze dell\u2019Ordine per il Congresso nazionale del Sindacato Autonomo di Polizia.\nState con noi! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-19 11:05:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=426339328047495&id=252306033154", "link": null} +{"post_id": "10157121243083155", "text": "Orgoglioso di essere a Rimini al Congresso del Sindacato Autonomo di Polizia (SAP) che ringrazio per l'invito e l'accoglienza.\nIeri, oggi e domani, da Ministro o da semplice cittadino: sempre dalla parte delle nostre Forze dell'Ordine \ud83c\uddee\ud83c\uddf9", "post_text": "Orgoglioso di essere a Rimini al Congresso del Sindacato Autonomo di Polizia (SAP) che ringrazio per l'invito e l'accoglienza.\nIeri, oggi e domani, da Ministro o da semplice cittadino: sempre dalla parte delle nostre Forze dell'Ordine \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-19 10:42:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157121243083155&id=252306033154", "link": null} +{"post_id": "10157121121113155", "text": "Il mare d\u2019inverno, saluti da Rimini!", "post_text": "Il mare d\u2019inverno, saluti da Rimini!", "shared_text": "", "time": "2019-11-19 09:40:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/78681099_10157121120718155_3313424916467941376_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=1IWweWmTfhsAQnQpLGPqWG_KwcB5AUES_V9jmWimyY4JzXmFIA5CzgR5g&_nc_ht=scontent-cdt1-1.xx&oh=a9f99367652dd5ff312699f05a27649c&oe=5E7E53CF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157121121113155&id=252306033154", "link": null} +{"post_id": "10157120107148155", "text": "Buon marted\u00ec Amici, felice di partecipare oggi dalle 9.30 a Rimini al Congresso del Sindacato Autonomo di Polizia (SAP). Sar\u00f2 poi alle 14.30 a Terni per alcune belle novit\u00e0 che riguardano la Lega e alle 17 a Roma in Senato. Vi tengo aggiornato in diretta. Avanti tutta!", "post_text": "Buon marted\u00ec Amici, felice di partecipare oggi dalle 9.30 a Rimini al Congresso del Sindacato Autonomo di Polizia (SAP). Sar\u00f2 poi alle 14.30 a Terni per alcune belle novit\u00e0 che riguardano la Lega e alle 17 a Roma in Senato. Vi tengo aggiornato in diretta. Avanti tutta!", "shared_text": "", "time": "2019-11-19 09:15:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76762653_10157120101078155_1905504228470685696_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=3_GUDjr5YsAAQkVxoFHM2bcTEzG5uCXbGHUd21c96sd1WTBaOaOPdrZdg&_nc_ht=scontent-cdt1-1.xx&oh=95fc9b3d57b917bdd66749aa64fd2551&oe=5E4AFAFC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157120107148155&id=252306033154", "link": null} +{"post_id": "10157121041103155", "text": "Altra indagine, altro processo per aver difeso i confini, la sicurezza, l\u2019onore dell\u2019Italia? Per me \u00e8 una medaglia!\nRifarei e rifar\u00f2 tutto. #portichiusi \ud83c\uddee\ud83c\uddf9\nP.s. Ma in Procura ad Agrigento non hanno problemi pi\u00f9 gravi di cui occuparsi?", "post_text": "Altra indagine, altro processo per aver difeso i confini, la sicurezza, l\u2019onore dell\u2019Italia? Per me \u00e8 una medaglia!\nRifarei e rifar\u00f2 tutto. #portichiusi \ud83c\uddee\ud83c\uddf9\nP.s. Ma in Procura ad Agrigento non hanno problemi pi\u00f9 gravi di cui occuparsi?", "shared_text": "", "time": "2019-11-19 08:41:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75380064_10157121041008155_3082472258535424000_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=TbYbCacFfuYAQmlrKHdocW119tZ-6nqcY96E4gfL7WBP1faRow9O9bfeQ&_nc_ht=scontent-cdt1-1.xx&oh=b96f1f084219f7a9678135db15bb11cb&oe=5E79F996", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157121041103155&id=252306033154", "link": null} +{"post_id": "10157120147698155", "text": "Buongiorno a chi ama l'Italia (e in tempi di governanti anti-italiani non \u00e8 cosa scontata)! \ud83c\uddee\ud83c\uddf9", "post_text": "Buongiorno a chi ama l'Italia (e in tempi di governanti anti-italiani non \u00e8 cosa scontata)! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-19 07:37:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74887163_10157120142508155_6504139816970485760_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=b9QPNNO4PJMAQnnxnKwgpS35z4T7Gm9NzEn_-VCz59vXZmEzkxl1SISOg&_nc_ht=scontent-cdt1-1.xx&oh=02c02f5018e364232799cd3a23430cd0&oe=5E85524F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157120147698155&id=252306033154", "link": null} +{"post_id": "10157120078528155", "text": "Grazie Luca Toni, bomber vero! \ud83c\uddee\ud83c\uddf9\nCon lui vi auguro una notte serena, Amici.", "post_text": "Grazie Luca Toni, bomber vero! \ud83c\uddee\ud83c\uddf9\nCon lui vi auguro una notte serena, Amici.", "shared_text": "", "time": "2019-11-19 00:02:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/76265388_10157120052873155_7749902730512039936_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=eg4j6vt83DQAQmX_DaFR6Mp6rWov_0-6YIKkYwTDgk-c72msRGbZP2A8g&_nc_ht=scontent-cdt1-1.xx&oh=43237f0d794d019fddd2e7bec367501e&oe=5E7F2BEF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157120078528155&id=252306033154", "link": null} +{"post_id": "10157119781968155", "text": "Ora in diretta volante su Rete 4, in collegamento con Nicola Porro! Chi c\u2019\u00e8?", "post_text": "Ora in diretta volante su Rete 4, in collegamento con Nicola Porro! Chi c\u2019\u00e8?", "shared_text": "", "time": "2019-11-18 22:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76180165_10157119781043155_5623070625301004288_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=xIGCgb27UsAAQlrcD77UklYu0-u9H-v0JG7Re3HfZn5O5EyBf3811s29A&_nc_ht=scontent-cdt1-1.xx&oh=d041cfef90d5fc88d153f2e7c75b20c8&oe=5E8234C4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157119781968155&id=252306033154", "link": null} +{"post_id": "981660572201746", "text": "\u00c8 una follia, una manovra economica contro l'Emilia-Romagna, se ne sono accorti anche in casa del Pd. Che per\u00f2 ieri si ritrova a Bologna per parlare di Ius soli. Qualcuno vive su Marte.", "post_text": "\u00c8 una follia, una manovra economica contro l'Emilia-Romagna, se ne sono accorti anche in casa del Pd. Che per\u00f2 ieri si ritrova a Bologna per parlare di Ius soli. Qualcuno vive su Marte.", "shared_text": "", "time": "2019-11-18 21:29:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=981660572201746&id=252306033154", "link": null} +{"post_id": "10157119276438155", "text": "Ormai il giochetto si \u00e8 capito: gratta la sardina trovi la piddina. E questa \u201cdemocratica\u201d, assessore in un comune della provincia di Bologna, dice anche che siamo dei \u201cdelinquenti prestati alla politica\u201d...\nAmici, pi\u00f9 ci insultano, pi\u00f9 vinciamo!\n#26gennaiovotoLega", "post_text": "Ormai il giochetto si \u00e8 capito: gratta la sardina trovi la piddina. E questa \u201cdemocratica\u201d, assessore in un comune della provincia di Bologna, dice anche che siamo dei \u201cdelinquenti prestati alla politica\u201d...\nAmici, pi\u00f9 ci insultano, pi\u00f9 vinciamo!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-18 20:06:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76612204_10157119275328155_4276350992183721984_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=9UEIX_g5h2UAQm2A2FeYrlSG_lL67q2RNj2OQn0U2rJkBgZj75VAHjF8Q&_nc_ht=scontent-cdt1-1.xx&oh=532194bca8eab9204563bf1d572f34a2&oe=5E4270D7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157119276438155&id=252306033154", "link": null} +{"post_id": "10157119226593155", "text": "Novi, Modena.\nQuesta splendida famiglia mi ha aperto le porte della sua casetta di legno, dove vivono da ormai sette anni dopo il terremoto. Di tornare nella loro vecchia casa se ne parler\u00e0, forse, fra altri due o tre anni.\nAlla faccia dell\u2019efficienza e della velocit\u00e0.....", "post_text": "Novi, Modena.\nQuesta splendida famiglia mi ha aperto le porte della sua casetta di legno, dove vivono da ormai sette anni dopo il terremoto. Di tornare nella loro vecchia casa se ne parler\u00e0, forse, fra altri due o tre anni.\nAlla faccia dell\u2019efficienza e della velocit\u00e0.....", "shared_text": "", "time": "2019-11-18 19:02:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75282207_10157119225608155_9214488850485739520_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=zfoWgsiOKSwAQn_odXi4T8GL7xxLv9cyf5jIFjzlVzfd8MRmQd5xu3Y5Q&_nc_ht=scontent-cdt1-1.xx&oh=49fcc0db80d628e3ea0d26cbe990d1e9&oe=5E3E9299", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157119226593155&id=252306033154", "link": null} +{"post_id": "10157118990933155", "text": "Solo la Lega vot\u00f2 contro, in tempi non sospetti.\nIl Mes \u00e8 un crimine nei confronti dei lavoratori e dei risparmiatori italiani. Se qualcuno si \u00e8 accordato all'oscuro del Popolo per un fondo \"ammazza-Stati\" si ponga rimedio adesso prima che sia tardi. Altrimenti sarebbe ALTO TRADIMENTO.\n#StopMes", "post_text": "Solo la Lega vot\u00f2 contro, in tempi non sospetti.\nIl Mes \u00e8 un crimine nei confronti dei lavoratori e dei risparmiatori italiani. Se qualcuno si \u00e8 accordato all'oscuro del Popolo per un fondo \"ammazza-Stati\" si ponga rimedio adesso prima che sia tardi. Altrimenti sarebbe ALTO TRADIMENTO.\n#StopMes", "shared_text": "", "time": "2019-11-18 18:13:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118990933155&id=252306033154", "link": null} +{"post_id": "10157118907663155", "text": "Italia Zuccheri di Minerbio (Bologna), l'unico zuccherificio 100% italiano!\nCompra sano, compra con amore, compra tricolore! \ud83c\uddee\ud83c\uddf9", "post_text": "Italia Zuccheri di Minerbio (Bologna), l'unico zuccherificio 100% italiano!\nCompra sano, compra con amore, compra tricolore! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-18 17:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118907663155&id=252306033154", "link": null} +{"post_id": "556405701814763", "text": "Azienda agricola Valentina di Minerbio (Bologna). Adoro i funghi! \ud83d\ude0b", "post_text": "Azienda agricola Valentina di Minerbio (Bologna). Adoro i funghi! \ud83d\ude0b", "shared_text": "", "time": "2019-11-18 16:22:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=556405701814763&id=252306033154", "link": null} +{"post_id": "10157118811483155", "text": "AVVISO AL GOVERNO ANTI-ITALIANO: #NOIUSSOLI\nLa cittadinanza non si regala e la Lega si opporr\u00e0 in tutti i modi, ve lo garantisco.", "post_text": "AVVISO AL GOVERNO ANTI-ITALIANO: #NOIUSSOLI\nLa cittadinanza non si regala e la Lega si opporr\u00e0 in tutti i modi, ve lo garantisco.", "shared_text": "", "time": "2019-11-18 16:03:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76202440_10157118802463155_4890884099830448128_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=mhYIHVbXRagAQkjRwaJs5cU6HR1iJ0dzAGSQpIC374vHNYU7rEUTFnmqw&_nc_ht=scontent-cdt1-1.xx&oh=ba38f0ff0bcaeced341f64f05ea3f7db&oe=5E7CDD86", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118811483155&id=252306033154", "link": null} +{"post_id": "876451016089822", "text": "In diretta dallo zuccherificio di Minerbio (Bologna), una delle tante realt\u00e0 che il governo Pd-M5S-Renzi vorrebbe soffocare di tasse...\nState con noi.", "post_text": "In diretta dallo zuccherificio di Minerbio (Bologna), una delle tante realt\u00e0 che il governo Pd-M5S-Renzi vorrebbe soffocare di tasse...\nState con noi.", "shared_text": "", "time": "2019-11-18 15:17:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=876451016089822&id=252306033154", "link": null} +{"post_id": "10157078407223155", "text": "Sgarbi sul diritto di usare il contante. Severo ma giusto, no? I sinistri al governo vorrebbero invece uno Stato di polizia fiscale... Il solito vizietto.", "post_text": "Sgarbi sul diritto di usare il contante. Severo ma giusto, no? I sinistri al governo vorrebbero invece uno Stato di polizia fiscale... Il solito vizietto.", "shared_text": "", "time": "2019-11-18 15:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078407223155&id=252306033154", "link": null} +{"post_id": "10157118574768155", "text": "++ CHIESTI 17 ANNI DI GALERA! ++\nUccise due rapinatori e ne fer\u00ec un terzo, dopo che avevano aggredito e minacciato lui e la moglie con una pistola, poi risultata finta.\nLa \u201cgiustizia\u201d italiana chiede una condanna a 17 anni di galera per questo commerciante siciliano di 58 anni.\nIo invece sto con lui.\n#iostoconGuido\nLASICILIA.IT\nLa Procura chiede 17 anni per il gioielliere di Nicolosi che uccise i banditi", "post_text": "++ CHIESTI 17 ANNI DI GALERA! ++\nUccise due rapinatori e ne fer\u00ec un terzo, dopo che avevano aggredito e minacciato lui e la moglie con una pistola, poi risultata finta.\nLa \u201cgiustizia\u201d italiana chiede una condanna a 17 anni di galera per questo commerciante siciliano di 58 anni.\nIo invece sto con lui.\n#iostoconGuido", "shared_text": "LASICILIA.IT\nLa Procura chiede 17 anni per il gioielliere di Nicolosi che uccise i banditi", "time": "2019-11-18 14:21:18", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQChoHF0C-eNFDvv&w=476&h=249&url=https%3A%2F%2Fwww.lasicilia.it%2Fresizer%2F600%2F315%2Ftrue%2F1574078276498.jpg--la_procura_chiede_17_anni_per_il_gioielliere_di_nicolosi_che_uccise_i_banditi.jpg%3F1574078277000&cfs=1&jq=75&ext=jpg&_nc_hash=AQBf2mKJtQRSc4Ce", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118574768155&id=252306033154", "link": "https://www.lasicilia.it/news/cronaca/304706/la-procura-chiede-17-anni-per-il-gioielliere-di-nicolosi-che-uccise-i-banditi.html?fbclid=IwAR1NvhN-K0O9aLEuKxTUlNsXYwjSS3VvewJuQvO9Tj1geU6Z4NuYhu6dNsM"} +{"post_id": "10157118523868155", "text": "Almeno qualcuno ne parla!\nAspetto reazioni e condanne da parte degli indignati di professione, oppure le minacce che vengono da sinistra sono meno gravi e minacciose...???\nP.s. Il profilo della \"democratica sardina\" che invoca il mio omicidio \u00e8 inspiegabilmente scomparso da Facebook...\nILGIORNALE.IT\nLa leader delle 6mila sardine invocava la morte di Salvini", "post_text": "Almeno qualcuno ne parla!\nAspetto reazioni e condanne da parte degli indignati di professione, oppure le minacce che vengono da sinistra sono meno gravi e minacciose...???\nP.s. Il profilo della \"democratica sardina\" che invoca il mio omicidio \u00e8 inspiegabilmente scomparso da Facebook...", "shared_text": "ILGIORNALE.IT\nLa leader delle 6mila sardine invocava la morte di Salvini", "time": "2019-11-18 13:58:00", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDoHUMBOtkllZUF&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F11%2F18%2F1574075757-salvinisamar.jpg&cfs=1&jq=75&sx=0&sy=0&sw=616&sh=322&ext=jpg&_nc_hash=AQCdeyBB4c0Lz61f", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118523868155&id=252306033154", "link": "http://www.ilgiornale.it/news/politica/leader-delle-6mila-sardine-invocava-morte-salvini-1786118.html?fbclid=IwAR2GGpEfnxRS3CeihxDl6SRMy2O8yotmMqIsgpjE4PHQ-x1o5PaTotene5c"} +{"post_id": "10157118291723155", "text": "Se gratti il \"sardino\" trovi il piddino!\nC'\u00e8 chi protesta contro, noi facciamo proposte \"per\". Questa \u00e8 la grande differenza tra la sinistra e la Lega.\nC'\u00e8 chi distrugge, c'\u00e8 chi costruisce.\nILGIORNALE.IT\nEcco chi c'\u00e8 (davvero) dietro al movimento delle \"sardine\"", "post_text": "Se gratti il \"sardino\" trovi il piddino!\nC'\u00e8 chi protesta contro, noi facciamo proposte \"per\". Questa \u00e8 la grande differenza tra la sinistra e la Lega.\nC'\u00e8 chi distrugge, c'\u00e8 chi costruisce.", "shared_text": "ILGIORNALE.IT\nEcco chi c'\u00e8 (davvero) dietro al movimento delle \"sardine\"", "time": "2019-11-18 13:03:27", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCw1FV1Sk_yDg5A&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F11%2F16%2F1573923881-fotogramma-20191115111109-31111000.jpg&cfs=1&jq=75&sx=0&sy=0&sw=1500&sh=785&ext=jpg&_nc_hash=AQCuyt5ljZ17tmuX", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118291723155&id=252306033154", "link": "http://www.ilgiornale.it/news/politica/movimento-delle-sardine-ecco-chi-c-dietro-1785894.html?fbclid=IwAR0rv06BzEm1NVKUoskDYasKmY8K0CPTzpGXHCRUFEBJu_O1GjqYFtB1jH4"} +{"post_id": "10157118337068155", "text": "Oggi sar\u00f2 in Emilia per incontrare le aziende che resistono alle calamit\u00e0 naturali e alle calamit\u00e0 fiscali del governo delle tasse.\nDalle 15 a Minerbio (BO), poi a Novi di Modena (MO) alle 17.30, a Carpi (MO)\u2026 Altro alle 18.20 e alle 20.30 a Modena.\nP.s. Quanto alle \"democratiche sardine\" che spargono odio arrivando ad appendermi a testa in gi\u00f9 (bont\u00e0 loro...), dico solo: c'\u00e8 chi protesta \"contro\", noi facciamo proposte \"per\".\nQuesta \u00e8 la grande differenza tra la sinistra e la Lega.\nC'\u00e8 chi distrugge, c'\u00e8 chi costruisce.", "post_text": "Oggi sar\u00f2 in Emilia per incontrare le aziende che resistono alle calamit\u00e0 naturali e alle calamit\u00e0 fiscali del governo delle tasse.\nDalle 15 a Minerbio (BO), poi a Novi di Modena (MO) alle 17.30, a Carpi (MO)\u2026 Altro alle 18.20 e alle 20.30 a Modena.\nP.s. Quanto alle \"democratiche sardine\" che spargono odio arrivando ad appendermi a testa in gi\u00f9 (bont\u00e0 loro...), dico solo: c'\u00e8 chi protesta \"contro\", noi facciamo proposte \"per\".\nQuesta \u00e8 la grande differenza tra la sinistra e la Lega.\nC'\u00e8 chi distrugge, c'\u00e8 chi costruisce.", "shared_text": "", "time": "2019-11-18 12:22:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75496112_10157118326798155_7155090854263128064_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=NIWNZWNu9HMAQl0qWvbHA3O6zqF8SHr6UlI1T7wmwBRTfps6CujV4gKdA&_nc_ht=scontent-cdt1-1.xx&oh=963543eebe11b13bdff7bf9a3bd24e9d&oe=5E7F6DBB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118337068155&id=252306033154", "link": null} +{"post_id": "1159121797627139", "text": "Piovono tasse.......\nNonostante tutto, buona settimana Amici.", "post_text": "Piovono tasse.......\nNonostante tutto, buona settimana Amici.", "shared_text": "", "time": "2019-11-18 11:43:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1159121797627139&id=252306033154", "link": null} +{"post_id": "10157118181298155", "text": "Buon luned\u00ec Amici. Tra 5 minuti sono LIVE per parlare un po' con voi. Il governo-farsa dell'invasione sta superando ogni limite...", "post_text": "Buon luned\u00ec Amici. Tra 5 minuti sono LIVE per parlare un po' con voi. Il governo-farsa dell'invasione sta superando ogni limite...", "shared_text": "", "time": "2019-11-18 11:25:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118181298155&id=252306033154", "link": null} +{"post_id": "10157118057243155", "text": "Questa sinistra \u00e8 una vergogna anti-italiana: la cittadinanza non \u00e8 un biglietto-premio al luna park, va meritata, desiderata, conquistata. #noiussoli", "post_text": "Questa sinistra \u00e8 una vergogna anti-italiana: la cittadinanza non \u00e8 un biglietto-premio al luna park, va meritata, desiderata, conquistata. #noiussoli", "shared_text": "", "time": "2019-11-18 10:49:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118057243155&id=252306033154", "link": null} +{"post_id": "10157118050903155", "text": "Una delle \u201csardine democratiche\u201d che sar\u00e0 in piazza oggi a Modena contro di me, poco tempo fa invocava il mio omicidio da parte di un giustiziere e mi raffigurava a testa in gi\u00f9.\nBella roba.\nAspetto reazioni\u2026 Altro indignate di giornalisti, politici e merluzzi... Viva Modena, viva l\u2019Emilia-Romagna, viva la Libert\u00e0 e la Democrazia, ma quelle vere\ud83d\ude09", "post_text": "Una delle \u201csardine democratiche\u201d che sar\u00e0 in piazza oggi a Modena contro di me, poco tempo fa invocava il mio omicidio da parte di un giustiziere e mi raffigurava a testa in gi\u00f9.\nBella roba.\nAspetto reazioni\u2026 Altro indignate di giornalisti, politici e merluzzi... Viva Modena, viva l\u2019Emilia-Romagna, viva la Libert\u00e0 e la Democrazia, ma quelle vere\ud83d\ude09", "shared_text": "", "time": "2019-11-18 09:51:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/78039810_10157118050013155_9108112105520758784_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=hY8W66DoHEUAQlNHu91rpZQ6cWpoQtCIeNvViBS9NTR8Lpz5kA76csk7A&_nc_ht=scontent-cdt1-1.xx&oh=939d87eade669635f424749a125f1468&oe=5E417BBF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157118050903155&id=252306033154", "link": null} +{"post_id": "10157117027018155", "text": "Al governo abbiamo dei pericolosi incapaci detestati dalla maggioranza degli italiani.\nA casa!\n#noiussoli", "post_text": "Al governo abbiamo dei pericolosi incapaci detestati dalla maggioranza degli italiani.\nA casa!\n#noiussoli", "shared_text": "", "time": "2019-11-18 08:12:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74784748_10157117023753155_8529165202808111104_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=eGRIEDI3gLgAQlH4Ic8gte_eFwoZoU4dTwE_FYS9AmCjJdrAzPrK0FSgw&_nc_ht=scontent-cdt1-1.xx&oh=22893f9c5fffbd534fa250ac88cca230&oe=5E7A192A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157117027018155&id=252306033154", "link": null} +{"post_id": "10157081309078155", "text": "Buonanotte Amici, non si molla di un millimetro, MAI!", "post_text": "Buonanotte Amici, non si molla di un millimetro, MAI!", "shared_text": "", "time": "2019-11-17 23:57:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75402035_10157081308483155_6659356572088532992_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=zhZmDgblRgsAQnzrmwQ_qDkvLwAgcj3wp3m7id9sZndJC8jYhqdrIStOw&_nc_ht=scontent-cdt1-1.xx&oh=dbf112424fd37055a69c33ee7e5f116a&oe=5E85BF90", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081309078155&id=252306033154", "link": null} +{"post_id": "10157116902888155", "text": "++ FACCIAMO GIRARE ++\nCon tutto quello che sta succedendo in Italia, oggi PD e 5Stelle litigano sullo Ius Soli.\nPericolosi incapaci, basta, a casa!", "post_text": "++ FACCIAMO GIRARE ++\nCon tutto quello che sta succedendo in Italia, oggi PD e 5Stelle litigano sullo Ius Soli.\nPericolosi incapaci, basta, a casa!", "shared_text": "", "time": "2019-11-17 23:31:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/77379010_10157116901373155_1983992178824708096_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=at8OydmDTvoAQl84ft06f2IUhpYMFNk0GrvuGvXCJ7RTmunfDIUpWHVJA&_nc_ht=scontent-cdt1-1.xx&oh=3b2a1e0b24bff60644eac2da322b5fbd&oe=5E3E1A6B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157116902888155&id=252306033154", "link": null} +{"post_id": "10157116600738155", "text": "Un pensiero a tutti i nostri connazionali in difficolt\u00e0, da Nord a Sud, per i gravissimi disagi del maltempo e un grazie a Vigili del Fuoco, Forze dell\u2019ordine, Protezione civile, sindaci, prefetture e a tutti i\u2026 Altro volontari impegnati per impedire danni peggiori.\nDomani sar\u00f2 in Emilia, per visite gi\u00e0 programmate, a Minerbio (Bologna), Carpi e Modena: quando i fiumi esondano non c\u2019\u00e8 distinzione di colore politico, tutti uniti per sostenere, aiutare e mettere in sicurezza persone, abitazioni e attivit\u00e0.", "post_text": "Un pensiero a tutti i nostri connazionali in difficolt\u00e0, da Nord a Sud, per i gravissimi disagi del maltempo e un grazie a Vigili del Fuoco, Forze dell\u2019ordine, Protezione civile, sindaci, prefetture e a tutti i\u2026 Altro volontari impegnati per impedire danni peggiori.\nDomani sar\u00f2 in Emilia, per visite gi\u00e0 programmate, a Minerbio (Bologna), Carpi e Modena: quando i fiumi esondano non c\u2019\u00e8 distinzione di colore politico, tutti uniti per sostenere, aiutare e mettere in sicurezza persone, abitazioni e attivit\u00e0.", "shared_text": "", "time": "2019-11-17 21:38:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76756941_10157116599813155_4684353373267296256_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=5UBBpCfVXO4AQmmU6Kss77KjV90i8nG9qSb5yjPG0vNf5U07oKV8NsAnA&_nc_ht=scontent-cdt1-1.xx&oh=c9c7adacaf90fb14300b298b1fa1d920&oe=5E4F76BD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157116600738155&id=252306033154", "link": null} +{"post_id": "10157116329453155", "text": "Un ricordo delle splendide emozioni del PalaDozza di Bologna.\nOrgoglioso che la Lega sia protagonista di questa nuova speranza, per l\u2019Emilia, la Romagna e l\u2019Italia.\nIl 26 gennaio si fa la Storia Amici.\n#26gennaiovotoLega", "post_text": "Un ricordo delle splendide emozioni del PalaDozza di Bologna.\nOrgoglioso che la Lega sia protagonista di questa nuova speranza, per l\u2019Emilia, la Romagna e l\u2019Italia.\nIl 26 gennaio si fa la Storia Amici.\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-17 20:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157116329453155&id=252306033154", "link": null} +{"post_id": "10157116281333155", "text": "\ud83d\udd34CHE SCHIFO DI SINISTRA!\nDisgustoso post di un presunto \u201cintellettuale\u201d, assessore \u201calla cultura\u201d in un municipio di Roma.\nSi vergogni e chieda scusa.\nOrgoglioso di Donatella Tesei, neo-governatrice\u2026 Altro dell\u2019Umbria, orgoglioso di Lucia Borgonzoni, che sar\u00e0 governatrice dell\u2019Emilia-Romagna, orgoglioso di tutte le donne che la Lega sostiene e candida, non perch\u00e9 donne ma perch\u00e9 brave.", "post_text": "\ud83d\udd34CHE SCHIFO DI SINISTRA!\nDisgustoso post di un presunto \u201cintellettuale\u201d, assessore \u201calla cultura\u201d in un municipio di Roma.\nSi vergogni e chieda scusa.\nOrgoglioso di Donatella Tesei, neo-governatrice\u2026 Altro dell\u2019Umbria, orgoglioso di Lucia Borgonzoni, che sar\u00e0 governatrice dell\u2019Emilia-Romagna, orgoglioso di tutte le donne che la Lega sostiene e candida, non perch\u00e9 donne ma perch\u00e9 brave.", "shared_text": "", "time": "2019-11-17 19:28:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/76248918_10157116268473155_1284328322540503040_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=-q5JN_MWgvgAQl_gDT_wreCrEGEA8OJHgEl72qVfJvHEIlyjGbK3YLk-A&_nc_ht=scontent-cdt1-1.xx&oh=e09dd2f3cadbf11b7e0bc4b99d256fc7&oe=5E7F1CC2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157116281333155&id=252306033154", "link": null} +{"post_id": "10157115626223155", "text": "Preghiamo perch\u00e9 questo signore ritrovi equilibrio e serenit\u00e0...\nILGIORNO.IT\nLecco, sacerdote condannato per diffamazione contro Salvini: \"Sono onorato, non mi piego\" - Il Giorno", "post_text": "Preghiamo perch\u00e9 questo signore ritrovi equilibrio e serenit\u00e0...", "shared_text": "ILGIORNO.IT\nLecco, sacerdote condannato per diffamazione contro Salvini: \"Sono onorato, non mi piego\" - Il Giorno", "time": "2019-11-17 18:02:37", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCJkJyhzGs5-ST8&w=476&h=249&url=https%3A%2F%2Fimmagini.quotidiano.net%2F%3Furl%3Dhttp%253A%252F%252Fp1014p.quotidiano.net%253A80%252Fpolopoly_fs%252F1.3380566.1573483494%2521%252FhttpImage%252Fimage.jpg_gen%252Fderivatives%252Fwidescreen%252Fimage.jpg%26w%3D700%26h%3D391&cfs=1&jq=75&sx=0&sy=8&sw=700&sh=366&ext=jpg&_nc_hash=AQD85Jd5ylaRLTIp", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157115626223155&id=252306033154", "link": "https://www.ilgiorno.it/lecco/cronaca/sacerdote-salvini-condannato-1.4891201/amp?fbclid=IwAR39s7g67wv75WXa4y8m_zGoI1INb3huFd6dkHBIK3ziu2Nyw8VNmhaw8mI"} +{"post_id": "10157080681873155", "text": "E pensare che PD, Renzi e sinistri vari per anni mi hanno insultato e deriso quando dicevo che non scappano da nessuna guerra... Alla fine la verit\u00e0 viene sempre a galla.", "post_text": "E pensare che PD, Renzi e sinistri vari per anni mi hanno insultato e deriso quando dicevo che non scappano da nessuna guerra... Alla fine la verit\u00e0 viene sempre a galla.", "shared_text": "", "time": "2019-11-17 17:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157080681873155&id=252306033154", "link": null} +{"post_id": "10157115755148155", "text": "\ud83d\udd34 Siamo pronti a dare battaglia, dentro e fuori il Parlamento, per fermare lo Ius Soli ed evitare che si cambino i Decreti Sicurezza.\n#governoclandestino", "post_text": "\ud83d\udd34 Siamo pronti a dare battaglia, dentro e fuori il Parlamento, per fermare lo Ius Soli ed evitare che si cambino i Decreti Sicurezza.\n#governoclandestino", "shared_text": "", "time": "2019-11-17 16:05:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72713397_10157115752013155_7466652227206119424_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=6jJCOKUT0DYAQnhYOGUERXJvkmi0OiIxkeGx8-q6g2Dojm7kb5GtRgb0g&_nc_ht=scontent-cdt1-1.xx&oh=44310fb27120c44f15c9e14912bbde90&oe=5E490949", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157115755148155&id=252306033154", "link": null} +{"post_id": "10157103089308155", "text": "Se qualcuno pensa di risolvere i problemi delle imprese con gli avvocati andando in giro per i tribunali, vuol dire che abbiamo al governo persone pericolose e incapaci.\nNon solo rischiano di lasciare a casa decine di migliaia di lavoratori ma fanno fare una pessima pubblicit\u00e0 all\u2019Italia. Altro che avvocato del popolo...", "post_text": "Se qualcuno pensa di risolvere i problemi delle imprese con gli avvocati andando in giro per i tribunali, vuol dire che abbiamo al governo persone pericolose e incapaci.\nNon solo rischiano di lasciare a casa decine di migliaia di lavoratori ma fanno fare una pessima pubblicit\u00e0 all\u2019Italia. Altro che avvocato del popolo...", "shared_text": "", "time": "2019-11-17 15:00:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103089308155&id=252306033154", "link": null} +{"post_id": "10157115399413155", "text": "Io come il Duce. Ma questi sono proprio ossessionati.......", "post_text": "Io come il Duce. Ma questi sono proprio ossessionati.......", "shared_text": "", "time": "2019-11-17 12:59:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74614078_10157115398888155_2536803058784927744_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=o8MbaPjrb8cAQmKzdghGsvGXRsDS-C_pPMK9Lyzd01n6DQdgN8JrtYReg&_nc_ht=scontent-cdt1-1.xx&oh=167922f6295afcba4122473a8d30ec8c&oe=5E488792", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157115399413155&id=252306033154", "link": null} +{"post_id": "10157115167923155", "text": "Questa non sta bene...\nILGIORNALE.IT\nBarbara Lezzi, la 5S che vuole sostituire l'acciaio con cozze e alpinismo", "post_text": "Questa non sta bene...", "shared_text": "ILGIORNALE.IT\nBarbara Lezzi, la 5S che vuole sostituire l'acciaio con cozze e alpinismo", "time": "2019-11-17 10:38:52", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQB1KKZfNLqOL34U&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F04%2F27%2F1556375591-fotogramma-20190415122625-29057441.jpg&cfs=1&jq=75&sx=0&sy=183&sw=1022&sh=535&ext=jpg&_nc_hash=AQB-JgSZD4xEg9nI", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157115167923155&id=252306033154", "link": "http://www.ilgiornale.it/news/politica/barbara-lezzi-5s-che-vuole-sostituire-lacciaio-cozze-e-1784103.html?mobile_detect=false&fbclid=IwAR10kf6tYDOPOp2aN4IZ-Kkk900yMCQEltKdZsJnLiZnt-3Zm8FL_thTQ84"} +{"post_id": "10157115010718155", "text": "Buona domenica, Amici. Con la testarda voglia di combattere per l\u2019\ud83c\uddee\ud83c\uddf9", "post_text": "Buona domenica, Amici. Con la testarda voglia di combattere per l\u2019\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-17 09:01:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76193393_10157115009378155_690927179839569920_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=vC1oYlUZ5qkAQnKoKU1lLFnxC3Ha8SI7mQF6xbE0tuvhjsz_MBSyQSwKA&_nc_ht=scontent-cdt1-1.xx&oh=5c9d638b203cb11372a0daa07db2eedb&oe=5E4FEA28", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157115010718155&id=252306033154", "link": null} +{"post_id": "10157113681513155", "text": "Quando tua figlia ti colora i capelli di blu e ti dice \u201cPap\u00e0, perfetto, adesso sei bellissimo!\u201d\ud83d\ude01", "post_text": "Quando tua figlia ti colora i capelli di blu e ti dice \u201cPap\u00e0, perfetto, adesso sei bellissimo!\u201d\ud83d\ude01", "shared_text": "", "time": "2019-11-16 22:01:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75204393_10157113681488155_6335377353476145152_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=WE_NL7ed8fwAQmHxY1dDx58_zm1hg1W_lnQJFBLX29HvYxKnwwq0ekJTw&_nc_ht=scontent-cdt1-1.xx&oh=33e908ddaed2609e2793e60b28cc145a&oe=5E3FB4F7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157113681513155&id=252306033154", "link": null} +{"post_id": "10157113352313155", "text": "\u201cQuesta sinistra ha abbracciato la cultura del permissivismo per cui gli spacciatori di droga sono meritevoli di compassione, a maggior ragione se nordafricani, dimenticando quel vecchio popolo di sinistra che vive in quelle situazioni di degrado\u201d.\nSilenzio in studio!", "post_text": "\u201cQuesta sinistra ha abbracciato la cultura del permissivismo per cui gli spacciatori di droga sono meritevoli di compassione, a maggior ragione se nordafricani, dimenticando quel vecchio popolo di sinistra che vive in quelle situazioni di degrado\u201d.\nSilenzio in studio!", "shared_text": "", "time": "2019-11-16 21:06:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157113352313155&id=252306033154", "link": null} +{"post_id": "10157113406658155", "text": "\ud83d\udd34Guerriglia urbana ieri vicino al Duomo tra bande di nordafricani, a colpi di bottigliate e di sediate, sotto lo sguardo terrorizzato dei passanti.\nUna vergogna per Milano, spero in punizioni esemplari.\nQuesto\u2026 Altro caso \u00e8 figlio del buonismo della sinistra, che con la politica dei \u201cporti aperti\u201d ai clandestini fa un torto anche ai milioni di immigrati perbene, che lavorano, mandano i figli a scuola e rispettano la nostra cultura.\nILGIORNALE.IT\nMaxi rissa tra 30 africani: in Duomo volano pugni, bottiglie e sedie", "post_text": "\ud83d\udd34Guerriglia urbana ieri vicino al Duomo tra bande di nordafricani, a colpi di bottigliate e di sediate, sotto lo sguardo terrorizzato dei passanti.\nUna vergogna per Milano, spero in punizioni esemplari.\nQuesto\u2026 Altro caso \u00e8 figlio del buonismo della sinistra, che con la politica dei \u201cporti aperti\u201d ai clandestini fa un torto anche ai milioni di immigrati perbene, che lavorano, mandano i figli a scuola e rispettano la nostra cultura.", "shared_text": "ILGIORNALE.IT\nMaxi rissa tra 30 africani: in Duomo volano pugni, bottiglie e sedie", "time": "2019-11-16 19:28:56", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQB0WAdssNStK7pP&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F11%2F16%2F1573926159-fotogramma-20191115192350-31118352.jpg&cfs=1&jq=75&sx=0&sy=0&sw=1500&sh=785&ext=jpg&_nc_hash=AQDuSJXYw5qpjxED", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157113406658155&id=252306033154", "link": "http://www.ilgiornale.it/news/milano/nordafricani-si-pestano-pieno-centro-milano-1785497.html?fbclid=IwAR3hUk7o5Ml_3JdZCL8zB3I2z7-oeUku7JSCe3ewnu3M7VXnBkr5i0ULvhY"} +{"post_id": "2782002018517894", "text": "Che tassa si inventeranno Conte, Renzi, Zingaretti e Di Maio stanotte..??", "post_text": "Che tassa si inventeranno Conte, Renzi, Zingaretti e Di Maio stanotte..??", "shared_text": "", "time": "2019-11-16 18:13:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2782002018517894&id=252306033154", "link": null} +{"post_id": "10157113072628155", "text": "Buonasera Amici, se mi collego qui in diretta con voi tra 15 minuti trovo qualcuno?", "post_text": "Buonasera Amici, se mi collego qui in diretta con voi tra 15 minuti trovo qualcuno?", "shared_text": "", "time": "2019-11-16 17:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157113072628155&id=252306033154", "link": null} +{"post_id": "10157113019938155", "text": "A sinistra vorrebbero tappare la bocca a quelli che non la pensano come loro? Viva i giornalisti con la schiena dritta!", "post_text": "A sinistra vorrebbero tappare la bocca a quelli che non la pensano come loro? Viva i giornalisti con la schiena dritta!", "shared_text": "", "time": "2019-11-16 16:33:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157113019938155&id=252306033154", "link": null} +{"post_id": "10157112714218155", "text": "Come vive male questo signore, le sue giornate sono piene di rabbia e di odio per la gente...\nBaci affettuosi e umana piet\u00e0.\nILGIORNALE.IT\nVauro affonda ancora: \"Salvini? Omuncolo offensivo e fascista ignorante\"", "post_text": "Come vive male questo signore, le sue giornate sono piene di rabbia e di odio per la gente...\nBaci affettuosi e umana piet\u00e0.", "shared_text": "ILGIORNALE.IT\nVauro affonda ancora: \"Salvini? Omuncolo offensivo e fascista ignorante\"", "time": "2019-11-16 14:41:28", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCfOZYMRc1FIhEU&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F11%2F16%2F1573906806-vauro-senesi.jpg&cfs=1&jq=75&sx=0&sy=79&sw=1118&sh=585&ext=jpg&_nc_hash=AQB06_WYlkjrVhC_", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157112714218155&id=252306033154", "link": "http://www.ilgiornale.it/news/cronache/vauro-affonda-ancora-salvini-omuncolo-offensivo-fascista-1785370.html?mobile_detect=false&fbclid=IwAR0dx6BZ4eP7DZ7sFgeiz1isyARrARQWsg1_Qo9tanyXBp-sFrAuqhb0mn8"} +{"post_id": "10157112382678155", "text": "La risposta migliore a chi sa solo odiare? Un sorriso!", "post_text": "La risposta migliore a chi sa solo odiare? Un sorriso!", "shared_text": "", "time": "2019-11-16 12:17:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76995367_10157112369843155_83537517634125824_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=KXvDdU4MWa8AQmcdXZIE1oYiQqqrvfcKaYyWbgABKvCj3-z76KgP-wu4w&_nc_ht=scontent-cdt1-1.xx&oh=6e4403a070c5d9e57581cd489d4e87bf&oe=5E418C51", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157112382678155&id=252306033154", "link": null} +{"post_id": "10157112009793155", "text": "Buongiorno Amici. Posso augurarvi un buon sabato? \u2764\ufe0f", "post_text": "Buongiorno Amici. Posso augurarvi un buon sabato? \u2764\ufe0f", "shared_text": "", "time": "2019-11-16 08:45:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75485919_10157112005848155_6482197675163779072_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=i4k-90HM5CMAQmRUqXT0J56edQ4NgRF1_P7zzpXKqwvvswcuJSn6REt5g&_nc_ht=scontent-cdt1-1.xx&oh=ee34354e64226437ccc8795ffc6ab8eb&oe=5E3EC5F0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157112009793155&id=252306033154", "link": null} +{"post_id": "10157110793243155", "text": "Il 26 gennaio, se ci impegniamo tutti, faremo la Storia!", "post_text": "Il 26 gennaio, se ci impegniamo tutti, faremo la Storia!", "shared_text": "", "time": "2019-11-15 23:28:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p168x128/75456680_10157110793058155_6036148343468457984_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=DHvjA7vGc4IAQnMTteEvqH2QKyIvH7OgoacyQL7-OJNIe8cVed1o-xm6g&_nc_ht=scontent-cdt1-1.xx&oh=90d6c069dbf72cef7ba7cfa8ba4cdc66&oe=5E83DF05", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "548590529253858", "text": "Ancora emozionato a rivedermi! Siete la mia migliore ricompensa.\nSar\u00e0 banale, amici emiliani e romagnoli, ma mi sento di dirvelo, ancora: GRAZIE!\nSappiate solo una cosa: non mi risparmier\u00f2!\nIl 26 gennaio liberiamo l\u2019Emilia-Romagna, poi liberiamo l\u2019Italia! \ud83c\uddee\ud83c\uddf9\n#26gennaiovotoLega\n#BorgonzoniPresidente", "post_text": "Ancora emozionato a rivedermi! Siete la mia migliore ricompensa.\nSar\u00e0 banale, amici emiliani e romagnoli, ma mi sento di dirvelo, ancora: GRAZIE!\nSappiate solo una cosa: non mi risparmier\u00f2!\nIl 26 gennaio liberiamo l\u2019Emilia-Romagna, poi liberiamo l\u2019Italia! \ud83c\uddee\ud83c\uddf9\n#26gennaiovotoLega\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-15 21:30:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=548590529253858&id=252306033154", "link": null} +{"post_id": "10157110156728155", "text": "Il Popolo del #PalaDozza, contro il rancore di chi odia qui c\u2019\u00e8 l\u2019Emilia-Romagna che sorride, ama, sogna!\n#26gennaiovotoLega #BorgonzoniPresidente", "post_text": "Il Popolo del #PalaDozza, contro il rancore di chi odia qui c\u2019\u00e8 l\u2019Emilia-Romagna che sorride, ama, sogna!\n#26gennaiovotoLega #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-15 20:35:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/74604421_10157110150153155_5696936507944730624_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=Yr6LPCxCKqMAQn_dn0orb_yH61bAU_Z3AWoR1zdolOZ3Ywx5bZnehn3oA&_nc_ht=scontent-cdt1-1.xx&oh=3f468713d52326f5c3a300cae76ae014&oe=5E7C476C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157110156728155&id=252306033154", "link": null} +{"post_id": "10157110134793155", "text": "\ud83d\udd34 Ieri a Bologna volantini dal titolo \u201cL\u2019impiccato\u201d con la mia faccia capovolta, distribuiti dai \u201cbravi ragazzi\u201d della sinistra violenta, che sa solo odiare.\nL\u2019unica risposta possibile \u00e8 il nostro sorriso, Amici.", "post_text": "\ud83d\udd34 Ieri a Bologna volantini dal titolo \u201cL\u2019impiccato\u201d con la mia faccia capovolta, distribuiti dai \u201cbravi ragazzi\u201d della sinistra violenta, che sa solo odiare.\nL\u2019unica risposta possibile \u00e8 il nostro sorriso, Amici.", "shared_text": "", "time": "2019-11-15 19:31:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75456792_10157110124338155_4271301618177146880_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=IaLDyKsU0u4AQkEWA2voOcDzUax9531F-DWkkWgqIEV117JHe2pjXPV7Q&_nc_ht=scontent-cdt1-1.xx&oh=911a4f8bff8796ed8fefac4a15ad780b&oe=5E46386A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157110134793155&id=252306033154", "link": null} +{"post_id": "10157109991298155", "text": "Ilva, al governo abbiamo pericolosi incapaci, nemici delle imprese e dei lavoratori. Altro che fare causa, dimettetevi e chiedete scusa.", "post_text": "Ilva, al governo abbiamo pericolosi incapaci, nemici delle imprese e dei lavoratori. Altro che fare causa, dimettetevi e chiedete scusa.", "shared_text": "", "time": "2019-11-15 18:31:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/74299065_10157110115513155_8504278628991762432_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=WohCE0NblU4AQnBLxOZTmU4IGC1wnM3CoKh9IklE02u5QvTRaLUxH26Hg&_nc_ht=scontent-cdt1-1.xx&oh=76ad1f0c430c21fd82b52cc06c172fb2&oe=5E8A6501", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157109991298155&id=252306033154", "link": null} +{"post_id": "10157109716153155", "text": "Pensate se qualcuno della Lega andasse a disturbare le manifestazioni altrui. Questi \"democratici\" signori che odiano le Forze dell'ordine e vorrebbero vedermi appeso a testa in gi\u00f9 sono il peggio che l'Italia abbia da offrire.\nAl loro odio risponderemo con l'energia positiva dei nostri sorrisi e la forza delle nostre idee.", "post_text": "Pensate se qualcuno della Lega andasse a disturbare le manifestazioni altrui. Questi \"democratici\" signori che odiano le Forze dell'ordine e vorrebbero vedermi appeso a testa in gi\u00f9 sono il peggio che l'Italia abbia da offrire.\nAl loro odio risponderemo con l'energia positiva dei nostri sorrisi e la forza delle nostre idee.", "shared_text": "", "time": "2019-11-15 16:42:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=541847110002019&id=252306033154", "link": null} +{"post_id": "10157109377928155", "text": "GRAZIE! \u2764\ufe0f", "post_text": "GRAZIE! \u2764\ufe0f", "shared_text": "", "time": "2019-11-15 14:31:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s403x403/77156925_10157109377588155_8326867690501177344_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=6Jg-yznH2KYAQlpS_bUDRvEkEqkwCUzZjNcvOeFaqxsZ2wymltqYDp-mg&_nc_ht=scontent-cdt1-1.xx&oh=57f8a8afc0d1d740d09f25e1c38d35a7&oe=5E3FE21B", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157109377928155&id=252306033154", "link": null} +{"post_id": "10157109140273155", "text": "\ud83d\udd34 Gratitudine immensa alle migliaia di persone che hanno abbracciato me e Lucia.\nProfondo rispetto per chi manifesta, pacificamente, contro le nostre idee.\nNessun rispetto per chi invece, per protestare contro di noi, lancia sassi e bottiglie verso Polizia e Carabinieri.\nViva Bologna, viva la Libert\u00e0 e la Democrazia!\nCORRIERE.IT\nLe due Bologna: palazzetto pieno per Salvini. In piazza 15 mila \u00absardine\u00bb contro il leader leghista", "post_text": "\ud83d\udd34 Gratitudine immensa alle migliaia di persone che hanno abbracciato me e Lucia.\nProfondo rispetto per chi manifesta, pacificamente, contro le nostre idee.\nNessun rispetto per chi invece, per protestare contro di noi, lancia sassi e bottiglie verso Polizia e Carabinieri.\nViva Bologna, viva la Libert\u00e0 e la Democrazia!", "shared_text": "CORRIERE.IT\nLe due Bologna: palazzetto pieno per Salvini. In piazza 15 mila \u00absardine\u00bb contro il leader leghista", "time": "2019-11-15 13:01:03", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQD-fKVHsABCPjP-&w=476&h=249&url=https%3A%2F%2Fimages2.corriereobjects.it%2Fmethode_image%2Fsocialshare%2F2019%2F11%2F14%2F12373878-0731-11ea-8c46-e24c6a436654.jpg&cfs=1&jq=75&sx=0&sy=26&sw=656&sh=343&ext=jpg&_nc_hash=AQAZr1HPg5zsBUL4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157109140273155&id=252306033154", "link": "https://www.corriere.it/politica/19_novembre_14/salvini-disfida-bologna-segnale-piazza-anti-lega-0e0cd952-0730-11ea-8c46-e24c6a436654.shtml?fbclid=IwAR3UTmvzy8NB5_rSLIoOHKy3fEVBEEU2pFgTJir-1jSp0PP7XgYcDNkYfuo"} +{"post_id": "10157108947568155", "text": "Serve un miliardo per questa gente, subito, che si pu\u00f2 prendere dai tre miliardi che il governo vorrebbe regalare a chi paga la spesa con la carta di credito.\nCe la metteremo tutta.", "post_text": "Serve un miliardo per questa gente, subito, che si pu\u00f2 prendere dai tre miliardi che il governo vorrebbe regalare a chi paga la spesa con la carta di credito.\nCe la metteremo tutta.", "shared_text": "", "time": "2019-11-15 12:08:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157108947568155&id=252306033154", "link": null} +{"post_id": "10157108821468155", "text": "Qui Venezia.\nInvece di dare 3 miliardi a chi usa la carta di credito anzich\u00e9 i contanti, mi auguro che l\u2019intero Parlamento si unisca a sostegno dei popoli di Venezia, Pellestrina, Matera, Altamura e di tutte le\u2026 Altro persone che in una notte hanno perso i risparmi di una vita.\nLa Lega \u00e8 pronta con due proposte concrete per il funzionamento del Mose e per un contributo straordinario, veloce, immediato, per il territorio.", "post_text": "Qui Venezia.\nInvece di dare 3 miliardi a chi usa la carta di credito anzich\u00e9 i contanti, mi auguro che l\u2019intero Parlamento si unisca a sostegno dei popoli di Venezia, Pellestrina, Matera, Altamura e di tutte le\u2026 Altro persone che in una notte hanno perso i risparmi di una vita.\nLa Lega \u00e8 pronta con due proposte concrete per il funzionamento del Mose e per un contributo straordinario, veloce, immediato, per il territorio.", "shared_text": "", "time": "2019-11-15 10:40:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75472867_10157108820828155_2450694852900290560_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=LwU-aPBTGnwAQluOnmouWYJhC4745R52f8kGJiWA8K1fHRWnk1VcakouA&_nc_ht=scontent-cdt1-1.xx&oh=a4a57906ddddff584f555127b37e2a89&oe=5E43F5AE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157108821468155&id=252306033154", "link": null} +{"post_id": "10157108579768155", "text": "Ora a Venezia con Luca Zaia per incontrare cittadini e commercianti, in contatto e al lavoro anche per tutte le altre citt\u00e0 italiane colpite dal maltempo.", "post_text": "Ora a Venezia con Luca Zaia per incontrare cittadini e commercianti, in contatto e al lavoro anche per tutte le altre citt\u00e0 italiane colpite dal maltempo.", "shared_text": "", "time": "2019-11-15 08:52:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75196384_10157108579628155_663696425757966336_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=Za0OOpY2dK8AQnTVzffHU1paM2xUj-BxDdwOeZLN3Y9XyhbYVpC0ePR5Q&_nc_ht=scontent-cdt1-1.xx&oh=1dd398fbb14a31b5e157169242f53f46&oe=5E83556E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157108579768155&id=252306033154", "link": null} +{"post_id": "10157107585488155", "text": "Il 26 gennaio spero vada a finire come \u00e8 finita in Umbria.\n\u00c8 risaputo: prima ti ignorano, poi ti deridono, poi VINCI.\nGRAZIE per questa serata emozionante. E ora avanti tutta Lucia!\nBuonanotte Amici \ud83c\uddee\ud83c\uddf9", "post_text": "Il 26 gennaio spero vada a finire come \u00e8 finita in Umbria.\n\u00c8 risaputo: prima ti ignorano, poi ti deridono, poi VINCI.\nGRAZIE per questa serata emozionante. E ora avanti tutta Lucia!\nBuonanotte Amici \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-15 00:18:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/75588287_10157107584798155_4347164119447633920_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=D1aKcFB6TPsAQneCp6ZPfp8WVeiL-7AuBlTk0OCctXldf0tJsxxTQ4wFw&_nc_ht=scontent-cdt1-1.xx&oh=8137944af219a41ecc040215c00ebf92&oe=5E7B75B2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107585488155&id=252306033154", "link": null} +{"post_id": "10157107338483155", "text": "Un messaggio a chi nasconde la verit\u00e0 di questo palazzetto: andate avanti cos\u00ec, vuol dire che siamo sulla strada giusta.\nPi\u00f9 negate la realt\u00e0, pi\u00f9 la realt\u00e0 viene a galla. VIVA le Donne e gli Uomini che resistono \ud83c\uddee\ud83c\uddf9\n#PalaDozza #BorgonzoniPresidente", "post_text": "Un messaggio a chi nasconde la verit\u00e0 di questo palazzetto: andate avanti cos\u00ec, vuol dire che siamo sulla strada giusta.\nPi\u00f9 negate la realt\u00e0, pi\u00f9 la realt\u00e0 viene a galla. VIVA le Donne e gli Uomini che resistono \ud83c\uddee\ud83c\uddf9\n#PalaDozza #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 22:57:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/77148647_10157107337268155_335723768028594176_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=xyPkPaWr6UUAQnooblPQD3udAYC6pExqiyJlaU28MpJrT9IiQ7raveY4g&_nc_ht=scontent-cdt1-1.xx&oh=aebfff8ddcd201980c30a7770462a054&oe=5E7AB22E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107338483155&id=252306033154", "link": null} +{"post_id": "10157107295728155", "text": "Ora tocca a me, seguiteci!\nMatteo Salvini era in diretta.\n14 novembre alle ore 20:54 \u00b7\nIn diretta da Bologna, #PalaDozza: che spettacolo! Con Lucia Borgonzoni, con i governatori della Lega, con migliaia di emiliani e di romagnoli.\nPresenta l\u2019amico Mario Giordano.\nState con noi!\n#borgonzonipresidente\n#26gennaiovotoLega", "post_text": "Ora tocca a me, seguiteci!", "shared_text": "Matteo Salvini era in diretta.\n14 novembre alle ore 20:54 \u00b7\nIn diretta da Bologna, #PalaDozza: che spettacolo! Con Lucia Borgonzoni, con i governatori della Lega, con migliaia di emiliani e di romagnoli.\nPresenta l\u2019amico Mario Giordano.\nState con noi!\n#borgonzonipresidente\n#26gennaiovotoLega", "time": "2019-11-14 22:45:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107295728155&id=252306033154", "link": null} +{"post_id": "10157107245093155", "text": "Ora tocca a Lucia Borgonzoni!\nOVAZIONI qui al #PalaDozza, tutti insieme per #BorgonzoniPresidente!", "post_text": "Ora tocca a Lucia Borgonzoni!\nOVAZIONI qui al #PalaDozza, tutti insieme per #BorgonzoniPresidente!", "shared_text": "", "time": "2019-11-14 22:31:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107245093155&id=252306033154", "link": null} +{"post_id": "10157107221608155", "text": "APPLAUSI per i nostri governatori:\n- Donatella Tesei (Umbria);\n- Massimiliano Fedriga (Friuli Venezia Giulia);\n- Christian Solinas (Sardegna);\n- Attilio Fontana (Lombardia);\n- Luca Zaia (Veneto).\n#PalaDozza #BorgonzoniPresidente", "post_text": "APPLAUSI per i nostri governatori:\n- Donatella Tesei (Umbria);\n- Massimiliano Fedriga (Friuli Venezia Giulia);\n- Christian Solinas (Sardegna);\n- Attilio Fontana (Lombardia);\n- Luca Zaia (Veneto).\n#PalaDozza #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 22:24:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/74496449_10157107227933155_4983591600274800640_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=3OANDOwnnOAAQlYQnaryTbmE2FgI2TCZZdsEaxT0P_6fE1FO0vi6MxGmA&_nc_ht=scontent-cdt1-1.xx&oh=259c183af05731e96184c1efafeb3f46&oe=5E8528CD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107221608155&id=252306033154", "link": null} +{"post_id": "10157107127378155", "text": "Grazie anche a Marco Omboni, imprenditore nel settore degli imballaggi in plastica, secondo cui la #plastictax andr\u00e0 a punire l'industria del riciclo, aprir\u00e0 la strada a materiali provenienti da estremo oriente e penalizzer\u00e0 l\u2019eccellenza dell'industria italiana.\n#Paladozza #BorgonzoniPresidente", "post_text": "Grazie anche a Marco Omboni, imprenditore nel settore degli imballaggi in plastica, secondo cui la #plastictax andr\u00e0 a punire l'industria del riciclo, aprir\u00e0 la strada a materiali provenienti da estremo oriente e penalizzer\u00e0 l\u2019eccellenza dell'industria italiana.\n#Paladozza #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 21:54:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76650735_10157107118683155_653624770398519296_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=n1PnJBvOtOcAQlBKVal7ySz04losz5d3vRuKM8LZwGIJbTp0jPm1lwUpg&_nc_ht=scontent-cdt1-1.xx&oh=5c5765d8153bae000af8cfacd2ed7547&oe=5E42825E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107127378155&id=252306033154", "link": null} +{"post_id": "10157107087838155", "text": "Grazie al professor Alessandro Amadori!\n#Paladozza #BorgonzoniPresidente", "post_text": "Grazie al professor Alessandro Amadori!\n#Paladozza #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 21:50:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/77108011_10157107087568155_1392381225737388032_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=GGNwHt_RldQAQk51FEAi8GUBa6HVB7GAHrd6sRRfHf_dSi3Znukt-N1CA&_nc_ht=scontent-cdt1-1.xx&oh=b327f3ebc8337e487d3f6d933d6d3492&oe=5E8A44A5", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107087838155&id=252306033154", "link": null} +{"post_id": "10157107092058155", "text": "Anche i nostri governatori qui al #PalaDozza, pronti ad intervenire sul palco!\n#BorgonzoniPresidente", "post_text": "Anche i nostri governatori qui al #PalaDozza, pronti ad intervenire sul palco!\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 21:44:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76751368_10157107091653155_8461390575927558144_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=RrP8KucjYrkAQn5m0NpcVgcPjdWJVOm-RUo6NzYedBMHvbwiQyTRiQbAg&_nc_ht=scontent-cdt1-1.xx&oh=b7f57f11ef2aaa80f54a511e956c95cb&oe=5E4AE532", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107092058155&id=252306033154", "link": null} +{"post_id": "10157107074278155", "text": "Siete emozionanti!\n#PalaDozza #BorgonzoniPresidente", "post_text": "Siete emozionanti!\n#PalaDozza #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 21:39:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/74632433_10157107074063155_6234057485825605632_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=knRCMLez1I0AQnO3heKThEuAg2OnWwU5G3jLT5eZKaHf2TMNJqaq9uLag&_nc_ht=scontent-cdt1-1.xx&oh=5f34b96f0a7629b6bfe4b1bd2c61a376&oe=5E80DA32", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107074278155&id=252306033154", "link": null} +{"post_id": "10157107033413155", "text": "Sul palco del #Paladozza di Bologna con il poeta Davide #Rondoni!\n#BorgonzoniPresidente", "post_text": "Sul palco del #Paladozza di Bologna con il poeta Davide #Rondoni!\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 21:31:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75462431_10157107030498155_1010330484460224512_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=9-PdowjGKDsAQmmF1lAdXyoJpYE1VEHL0w2YyQZWUhBLF9na03wyXHhyQ&_nc_ht=scontent-cdt1-1.xx&oh=84def57bc987e4267568e2e27ae9c863&oe=5E473BA9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107033413155&id=252306033154", "link": null} +{"post_id": "10157107010663155", "text": "\ud83d\udd34 #PALADOZZA CHE SPETTACOLO, FATE GIRARE!\nQuesta \u00e8 l\u2019Emilia-Romagna che vuole fare la storia, alla faccia di chi ci vuole male \ud83d\ude09\n#BorgonzoniPresidente", "post_text": "\ud83d\udd34 #PALADOZZA CHE SPETTACOLO, FATE GIRARE!\nQuesta \u00e8 l\u2019Emilia-Romagna che vuole fare la storia, alla faccia di chi ci vuole male \ud83d\ude09\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 21:27:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157107010663155&id=252306033154", "link": null} +{"post_id": "752445288590801", "text": "In diretta da Bologna, #PalaDozza: che spettacolo! Con Lucia Borgonzoni, con i governatori della Lega, con migliaia di emiliani e di romagnoli.\nPresenta l\u2019amico Mario Giordano.\nState con noi!\n#borgonzonipresidente\n#26gennaiovotoLega", "post_text": "In diretta da Bologna, #PalaDozza: che spettacolo! Con Lucia Borgonzoni, con i governatori della Lega, con migliaia di emiliani e di romagnoli.\nPresenta l\u2019amico Mario Giordano.\nState con noi!\n#borgonzonipresidente\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-14 21:16:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=752445288590801&id=252306033154", "link": null} +{"post_id": "560812454683934", "text": "Tra poco partiamo!", "post_text": "Tra poco partiamo!", "shared_text": "", "time": "2019-11-14 21:11:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=560812454683934&id=252306033154", "link": null} +{"post_id": "721217251722804", "text": "Pochi minuti e iniziamo! State con noi! #Paladozza #BorgonzoniPresidente", "post_text": "Pochi minuti e iniziamo! State con noi! #Paladozza #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 20:54:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=721217251722804&id=252306033154", "link": null} +{"post_id": "10157106836853155", "text": "#PalaDozza pieno, a breve si comincia\ud83d\udd1d\nRimanete connessi! #BorgonzoniPresidente", "post_text": "#PalaDozza pieno, a breve si comincia\ud83d\udd1d\nRimanete connessi! #BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 20:46:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74667336_10157106836743155_1197227317785526272_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=2eB1H0vlwVkAQmvCyncK8-XK_E_HQ0yN6tmEyj2eaVU2zSkPAKTgMH_5A&_nc_ht=scontent-cdt1-1.xx&oh=998d07801fecfd08e5bddfd4f3d5fa7c&oe=5E45D7F8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106836853155&id=252306033154", "link": null} +{"post_id": "10157106775958155", "text": "Ci siamo quasi, il #PalaDozza \u00e8 pronto! E voi? \ud83d\ude0a\n#BorgonzoniPresidente", "post_text": "Ci siamo quasi, il #PalaDozza \u00e8 pronto! E voi? \ud83d\ude0a\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 20:32:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106775958155&id=252306033154", "link": null} +{"post_id": "10157106625973155", "text": "Per chi vuole seguire l\u2019evento del #PalaDozza anche da casa, appuntamento in diretta dalle 20.30 sulle mie pagine Facebook, Instagram e Youtube!\nSiete pronti?\n#BorgonzoniPresidente", "post_text": "Per chi vuole seguire l\u2019evento del #PalaDozza anche da casa, appuntamento in diretta dalle 20.30 sulle mie pagine Facebook, Instagram e Youtube!\nSiete pronti?\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 20:01:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75398173_10157106625938155_6036457357775470592_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=CF1BNpZmAWcAQlxUyc-jDRcCd4kS2V2r7q-lc5EmHsHVvp-CJLXOXJbaw&_nc_ht=scontent-cdt1-1.xx&oh=465a2b94939887d8c5b2a5ab8bf2fcbb&oe=5E425BD8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106625973155&id=252306033154", "link": null} +{"post_id": "10157106630768155", "text": "\ud83d\udd34Come si fa ad essere cos\u00ed scemi?!?\nGi\u00f9 le mani dai bambini e dal Natale!\nILMESSAGGERO.IT\nRecita di Natale vietata ai bambini dell'asilo ad Ancona: \u00abNon cattolici offesi\u00bb. L'ira dei genitori", "post_text": "\ud83d\udd34Come si fa ad essere cos\u00ed scemi?!?\nGi\u00f9 le mani dai bambini e dal Natale!", "shared_text": "ILMESSAGGERO.IT\nRecita di Natale vietata ai bambini dell'asilo ad Ancona: \u00abNon cattolici offesi\u00bb. L'ira dei genitori", "time": "2019-11-14 19:48:03", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAXRKhdLKzJk0LB&w=476&h=249&url=https%3A%2F%2Fwww.ilmessaggero.it%2Fphotos%2FMED%2F22%2F84%2F4862284_1446_recita_natale_vietatasilo.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQCOGY3EvmEHUsTl", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106630768155&id=252306033154", "link": "https://www.ilmessaggero.it/italia/recita_natale_bimbi_cattolici_scuola_maiolati_spontini_ancona_ultime_notizie_cronaca_oggi-4862284.html?fbclid=IwAR25iBbm8-_1z0qohY3-zY1LBdHL4CsCbS9JG0WJdUFtlR7tnYcGoGBT_Ck"} +{"post_id": "10157106578628155", "text": "Facciamo sentire la nostra voce anche in rete!\nUsiamo gli hashtag #BorgonzoniPresidente e #Paladozza su tutti i social!\nDai, dai, dai!", "post_text": "Facciamo sentire la nostra voce anche in rete!\nUsiamo gli hashtag #BorgonzoniPresidente e #Paladozza su tutti i social!\nDai, dai, dai!", "shared_text": "", "time": "2019-11-14 19:29:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/77299347_10157106577858155_7552339380266860544_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=m1K_JfVR4dkAQmUfSvgfDe5-2WUQKy_HfY30nm7H1DaQM9Bw5NUegSvew&_nc_ht=scontent-cdt1-1.xx&oh=64c25d9270a93ac5bde8e3a9d145c8c9&oe=5E80DDEB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106578628155&id=252306033154", "link": null} +{"post_id": "10157106524088155", "text": "Tanti pullman in arrivo da tutta l\u2019Emilia-Romagna, destinazione: #PalaDozza di Bologna! \ud83d\udcaa\ud83c\udffb\nBuon viaggio, ci vediamo tra poco!\n#BorgonzoniPresidente", "post_text": "Tanti pullman in arrivo da tutta l\u2019Emilia-Romagna, destinazione: #PalaDozza di Bologna! \ud83d\udcaa\ud83c\udffb\nBuon viaggio, ci vediamo tra poco!\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 19:06:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/73357313_10157106523498155_6632588360214904832_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=r1MI7CdjNI0AQleiS5QczH0Txbdo7BgADpOggOFXuVgoZCy7WMUlzy55g&_nc_ht=scontent-cdt1-1.xx&oh=6e58c45eb5bc3850169be22a0509ae72&oe=5E80344A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106524088155&id=252306033154", "link": null} +{"post_id": "10157106476653155", "text": "Aperte le porte del #PalaDozza! Vi aspettiamo \ud83d\ude0a\n#BorgonzoniPresidente", "post_text": "Aperte le porte del #PalaDozza! Vi aspettiamo \ud83d\ude0a\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 18:49:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106476653155&id=252306033154", "link": null} +{"post_id": "567373744032299", "text": "In diretta da Bologna insieme a Lucia Borgonzoni. Stiamo per aprire le porte del #PalaDozza, state con noi!\n#BorgonzoniPresidente", "post_text": "In diretta da Bologna insieme a Lucia Borgonzoni. Stiamo per aprire le porte del #PalaDozza, state con noi!\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 18:33:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=567373744032299&id=252306033154", "link": null} +{"post_id": "10157106250513155", "text": "Guardate che spettacolo il #PalaDozza!\nAmici ci vediamo alle 20 qui a Bologna, tutti insieme per #BorgonzoniPresidente!\nNon vedo l\u2019ora \ud83d\ude0a", "post_text": "Guardate che spettacolo il #PalaDozza!\nAmici ci vediamo alle 20 qui a Bologna, tutti insieme per #BorgonzoniPresidente!\nNon vedo l\u2019ora \ud83d\ude0a", "shared_text": "", "time": "2019-11-14 17:22:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75472919_10157106244923155_2802084569975619584_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=TS1Oy01a_LkAQnVIcsZK5-km_MXwf9S57hyrEWjrcf4DTk8ZpIQ9CHFJg&_nc_ht=scontent-cdt1-1.xx&oh=c3c91aa765c67f7dc88f1e2bb7aadf3b&oe=5E41A445", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157106250513155&id=252306033154", "link": null} +{"post_id": "10157105652383155", "text": "Ci siamo quasi!\nLoro questa sera a Bologna ci saranno, e voi?\ud83d\ude0a\n\u2139 Dai una mano: legaonline.it/emiliaromagna\n\u2709 emiliaromagna@legaonline.it", "post_text": "Ci siamo quasi!\nLoro questa sera a Bologna ci saranno, e voi?\ud83d\ude0a\n\u2139 Dai una mano: legaonline.it/emiliaromagna\n\u2709 emiliaromagna@legaonline.it", "shared_text": "", "time": "2019-11-14 16:44:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75349174_10157105651733155_7273959318334996480_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=gXFsARQCLc4AQn3U93N88qQFG_Avl6PWmAYLaI6KuyN8P1W96AJDb4UvQ&_nc_ht=scontent-cdt1-1.xx&oh=c9c9bf2eeed67aee4c51b7b6710358ee&oe=5E82FBA7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105652383155&id=252306033154", "link": "http://legaonline.it/emiliaromagna?fbclid=IwAR0E3_cfQQXyXSQjq3H0uCw3t7T2DTEfHC2tY1TERIMbUeEn5f5Ey0y3Ne8"} +{"post_id": "545289472990024", "text": "Qui Bologna, #Paladozza, vi portiamo dietro le quinte del grande evento di questa sera con Lucia Borgonzoni!\n#BorgonzoniPresidente", "post_text": "Qui Bologna, #Paladozza, vi portiamo dietro le quinte del grande evento di questa sera con Lucia Borgonzoni!\n#BorgonzoniPresidente", "shared_text": "", "time": "2019-11-14 16:20:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=545289472990024&id=252306033154", "link": null} +{"post_id": "10157105991218155", "text": "Un saluto dal PalaDozza di Bologna!\nAmici emiliani e romagnoli, questa sera vi assicuro che sar\u00e0 uno spettacolo! \ud83d\udd1d", "post_text": "Un saluto dal PalaDozza di Bologna!\nAmici emiliani e romagnoli, questa sera vi assicuro che sar\u00e0 uno spettacolo! \ud83d\udd1d", "shared_text": "", "time": "2019-11-14 15:39:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75388131_10157105990318155_7044668967364853760_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=RCoQz9C1F2UAQnTeFMD3UVn4OJj1p-V8DCIZgix_6qZpBLaGL-YO9yIoA&_nc_ht=scontent-cdt1-1.xx&oh=f93dce0a02457511ace5ce7787ffe304&oe=5E87BFF5", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105991218155&id=252306033154", "link": null} +{"post_id": "10157105533418155", "text": "Che grave perdita, come faranno gli Italiani a resistere senza vedere sto tizio in tiv\u00f9?!?\ud83e\udd23\nLEGGO.IT\nChef Rubio, la Rai \"taglia\" la sua presenza a #RagazziContro. La portavoce accusa", "post_text": "Che grave perdita, come faranno gli Italiani a resistere senza vedere sto tizio in tiv\u00f9?!?\ud83e\udd23", "shared_text": "LEGGO.IT\nChef Rubio, la Rai \"taglia\" la sua presenza a #RagazziContro. La portavoce accusa", "time": "2019-11-14 14:56:14", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCRPMX4Pes3qOha&w=476&h=249&url=https%3A%2F%2Fwww.leggo.it%2Fphotos%2FMED%2F99%2F72%2F4859972_1042_chef_rubio_ragazzicontro_cyberbullismo.jpg&cfs=1&jq=75&sx=0&sy=5&sw=620&sh=324&ext=jpg&_nc_hash=AQByyh-HK9_z23Hq", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105533418155&id=252306033154", "link": "https://www.leggo.it/spettacoli/sanremo/chef_rubio_rai_ragazzicontro_portavoce_ultime_notizie_oggi_13_vovembre-4859972.html?fbclid=IwAR3r-KNkGX5ws_gThEMnRjMqL0ASZOf5ZbWIpvq2ye2FJPc4cvZ6ZHUHjgs"} +{"post_id": "10157105636758155", "text": "Manca sempre meno alla festa di questa sera, ore 20.30, al PalaDozza di Bologna!\nLucia Borgonzoni \u00e8 pronta, e voi? \ud83d\ude0a\nDai che il 26 gennaio andiamo a fare la storia anche in Emilia-Romagna!\n\ud83d\ude8c Trova il tuo\u2026 Altro pullman: https://legaonline.it/download/PULLMAN_PALADOZZA_14NOV.pdf\n\u2139 Dai una mano: legaonline.it/emiliaromagna\n\u2709 emiliaromagna@legaonline.it", "post_text": "Manca sempre meno alla festa di questa sera, ore 20.30, al PalaDozza di Bologna!\nLucia Borgonzoni \u00e8 pronta, e voi? \ud83d\ude0a\nDai che il 26 gennaio andiamo a fare la storia anche in Emilia-Romagna!\n\ud83d\ude8c Trova il tuo\u2026 Altro pullman: https://legaonline.it/download/PULLMAN_PALADOZZA_14NOV.pdf\n\u2139 Dai una mano: legaonline.it/emiliaromagna\n\u2709 emiliaromagna@legaonline.it", "shared_text": "", "time": "2019-11-14 14:02:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74784426_10157105634413155_1038845936274505728_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=I0I83jCZfFYAQmujPDgKADp4TgDBKeXfoRal9u89Vv3e_Ohgz73StlGCw&_nc_ht=scontent-cdt1-1.xx&oh=bd24ac5feb57a50bb0e8c3bef1d5f881&oe=5E8A3D37", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105636758155&id=252306033154", "link": "https://legaonline.it/download/PULLMAN_PALADOZZA_14NOV.pdf?fbclid=IwAR3dG-sIMuGeUbgpIiFvkvo6Af5D-emMoQVBWTVFV-DH5jzFc4sRNg0n11o"} +{"post_id": "10157103069743155", "text": "Litigano sulle tasse, su Quota 100, sulla giustizia...\nPer quanto tempo pensano di prendere ancora in giro gli Italiani?\nPer questi la poltrona \u00e8 un collante forte, ma sono sicuro che le prossime elezioni, a partire dall'Emilia-Romagna, lanceranno un messaggio chiaro contro questo governo di abusivi.", "post_text": "Litigano sulle tasse, su Quota 100, sulla giustizia...\nPer quanto tempo pensano di prendere ancora in giro gli Italiani?\nPer questi la poltrona \u00e8 un collante forte, ma sono sicuro che le prossime elezioni, a partire dall'Emilia-Romagna, lanceranno un messaggio chiaro contro questo governo di abusivi.", "shared_text": "", "time": "2019-11-14 13:10:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103069743155&id=252306033154", "link": null} +{"post_id": "10157105409013155", "text": "Dopo aver dato la cittadinanza a Carola Rackete, ora il governo Macron fa sgomberare immigrati clandestini da Parigi. Altro che porti aperti e nuovi accordi europei!\nGli altri Paesi difendono i propri\u2026 Altro interessi, mentre in Italia aumentano gli sbarchi e il Pd vuole cancellare i Decreti sicurezza.\nConte-Di Maio-Renzi ci sono o ci fanno?", "post_text": "Dopo aver dato la cittadinanza a Carola Rackete, ora il governo Macron fa sgomberare immigrati clandestini da Parigi. Altro che porti aperti e nuovi accordi europei!\nGli altri Paesi difendono i propri\u2026 Altro interessi, mentre in Italia aumentano gli sbarchi e il Pd vuole cancellare i Decreti sicurezza.\nConte-Di Maio-Renzi ci sono o ci fanno?", "shared_text": "", "time": "2019-11-14 11:59:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105409013155&id=252306033154", "link": null} +{"post_id": "10157102873188155", "text": "\ud83d\udd34 Dei 160.000 immigrati che l\u2019Europa si era impegnata a prendere da Italia e Grecia, ne sono stati ricollocati solo 34.000, di cui appena 12.000 dall\u2019Italia.\nEnnesima presa in giro, e intanto il governo degli incapaci ha riaperto i porti e raddoppiati gli sbarchi...\nANSA.IT\nCorte Conti Ue, effetto ricollocamenti \u00e8 stato parziale - Europa", "post_text": "\ud83d\udd34 Dei 160.000 immigrati che l\u2019Europa si era impegnata a prendere da Italia e Grecia, ne sono stati ricollocati solo 34.000, di cui appena 12.000 dall\u2019Italia.\nEnnesima presa in giro, e intanto il governo degli incapaci ha riaperto i porti e raddoppiati gli sbarchi...", "shared_text": "ANSA.IT\nCorte Conti Ue, effetto ricollocamenti \u00e8 stato parziale - Europa", "time": "2019-11-14 11:27:15", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQByfiTT-DpQ1__I&w=476&h=249&url=http%3A%2F%2Fwww.ansa.it%2Fwebimages%2Fch_700%2F2019%2F11%2F1%2Fa33adbe26e4000c2d2fe8804c45ba487.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQAUCRjvAXx3rGYd", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102873188155&id=252306033154", "link": "http://www.ansa.it/europa/notizie/rubriche/altrenews/2019/11/13/corte-conti-ue-effetto-ricollocamenti-e-stato-parziale_45acefa8-e56c-4f3b-bc78-fd4434c31729.html?fbclid=IwAR3-VFaCYxXw40ZQXzAwmjHWZlA4imDx39FXWXJtDKhFFYvpAr1G-SBP7a4"} +{"post_id": "2549141968467863", "text": "Date un\u2019occhiata qui: basta qualche numero per smontare le bugie dei tassatori del governo abusivo.", "post_text": "Date un\u2019occhiata qui: basta qualche numero per smontare le bugie dei tassatori del governo abusivo.", "shared_text": "", "time": "2019-11-14 10:18:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2549141968467863&id=252306033154", "link": null} +{"post_id": "10157105120968155", "text": "Vietato l\u2019ingresso se sei della\nLega. Loro sarebbero i \u201cdemocratici\u201d e noi i \u201cfascisti\u201d...\nILMESSAGGERO.IT\nLa Sapienza, studente entra nell'Aula professori occupata e viene allontanato: \u00abSei leghista, via di qui\u00bb", "post_text": "Vietato l\u2019ingresso se sei della\nLega. Loro sarebbero i \u201cdemocratici\u201d e noi i \u201cfascisti\u201d...", "shared_text": "ILMESSAGGERO.IT\nLa Sapienza, studente entra nell'Aula professori occupata e viene allontanato: \u00abSei leghista, via di qui\u00bb", "time": "2019-11-14 09:46:36", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAdl63gTz9srgIX&w=476&h=249&url=https%3A%2F%2Fwww.ilmessaggero.it%2Fphotos%2FMED%2F01%2F27%2F4860127_1341_scienze_politiche_leghista_aula_occupata.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQD3ImXS-4EwVavU", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157105120968155&id=252306033154", "link": "https://www.ilmessaggero.it/roma/news/la_sapienza_leghista_aula_occupata-4860127.html?fbclid=IwAR0QwKhdapsRpPEWewBzYfnVmiH2h5F5UjVVHA_fBQPQy6saAC0eWXr1V9s"} +{"post_id": "10157102892603155", "text": "Qui Bologna, Paladozza in allestimento!\nCi siamo quasi, questa sera saremo in tantissimi per dare voce alla voglia di cambiamento degli emiliani e dei romagnoli.\n#26gennaiovotoLega\n\ud83d\ude8c Trova il tuo pullman: \u2026 Altrohttps://legaonline.it/download/PULLMAN_PALADOZZA_14NOV.pdf\n\u2139 Dai una mano: legaonline.it/emiliaromagna\n\u2709 emiliaromagna@legaonline.it", "post_text": "Qui Bologna, Paladozza in allestimento!\nCi siamo quasi, questa sera saremo in tantissimi per dare voce alla voglia di cambiamento degli emiliani e dei romagnoli.\n#26gennaiovotoLega\n\ud83d\ude8c Trova il tuo pullman: \u2026 Altrohttps://legaonline.it/download/PULLMAN_PALADOZZA_14NOV.pdf\n\u2139 Dai una mano: legaonline.it/emiliaromagna\n\u2709 emiliaromagna@legaonline.it", "shared_text": "", "time": "2019-11-14 09:01:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75369144_10157103254828155_7624507943374815232_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=2U43ZDrkUycAQkyNaM0W0Sn9Wp-C0NEBBnYSw7X2sGAmC4CA3NL0TKyPQ&_nc_ht=scontent-cdt1-1.xx&oh=9e071bf216bebaf7269f156508f0af37&oe=5E7F7A66", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102892603155&id=252306033154", "link": "https://legaonline.it/download/PULLMAN_PALADOZZA_14NOV.pdf?fbclid=IwAR0QPTMJyao-CHTi4tGYMmQWCYbrNW2_7jHzHiOOUaPZK9e3JYZg_RVvqFg"} +{"post_id": "10157100338413155", "text": "Posso offrirvi un cappuccino con sorpresa? \u263a\ufe0f\nBuona giornata!", "post_text": "Posso offrirvi un cappuccino con sorpresa? \u263a\ufe0f\nBuona giornata!", "shared_text": "", "time": "2019-11-14 07:39:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p280x280/74588706_10157100336843155_6148825221341118464_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=HO25t3wE_VIAQmDfdMvNfVgzydT6H4Rpmpxzn_Wx5gga_2xJG7ojuRE6A&_nc_ht=scontent-cdt1-1.xx&oh=60c5b82b74494919af19fa1d15daebf3&oe=5E457F30", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157100338413155&id=252306033154", "link": null} +{"post_id": "10157104042723155", "text": "P.s. \u201cUn sorriso non dura che un istante, ma nei tuoi ricordi pu\u00f2 essere eterno\u201d.\n(Friedrich Schiller)", "post_text": "P.s. \u201cUn sorriso non dura che un istante, ma nei tuoi ricordi pu\u00f2 essere eterno\u201d.\n(Friedrich Schiller)", "shared_text": "", "time": "2019-11-14 00:27:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75464177_10157104042663155_6101984737507672064_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=1ayhR_L0hzIAQnEkFK2-8ciW4JWLqzKmU3gy3VqX6BN-8yzrCIjie6jiw&_nc_ht=scontent-cdt1-1.xx&oh=4a4527156b13cf0ada29892bc091865b&oe=5E7AFB4F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157104042723155&id=252306033154", "link": null} +{"post_id": "10157103931838155", "text": "Domani sera vi aspetto a Bologna, ci sono gi\u00e0 migliaia di adesioni!\nA sinistra stanno mettendo in giro la voce che per entrare bisogna pagare un biglietto. No, sar\u00e0 un'incontro dove parleremo di futuro, di libert\u00e0, di arte, di proposte. GRATIS.\ud83d\ude09\nBuonanotte Amici!\n#26gennaiovotoLega", "post_text": "Domani sera vi aspetto a Bologna, ci sono gi\u00e0 migliaia di adesioni!\nA sinistra stanno mettendo in giro la voce che per entrare bisogna pagare un biglietto. No, sar\u00e0 un'incontro dove parleremo di futuro, di libert\u00e0, di arte, di proposte. GRATIS.\ud83d\ude09\nBuonanotte Amici!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-13 23:56:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103931838155&id=252306033154", "link": null} +{"post_id": "489363621662870", "text": "La mia intervista a Parma TV.\nViva le emittenti locali, le voci pi\u00f9 autentiche e libere dei nostri territori!\n#26gennaiovotoLega", "post_text": "La mia intervista a Parma TV.\nViva le emittenti locali, le voci pi\u00f9 autentiche e libere dei nostri territori!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-13 22:56:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=489363621662870&id=252306033154", "link": null} +{"post_id": "582074005895408", "text": "Ieri sera da Floris non mi sono annoiato, ma la pazienza non mi manca \ud83d\ude0a\nBuona serata Amici!", "post_text": "Ieri sera da Floris non mi sono annoiato, ma la pazienza non mi manca \ud83d\ude0a\nBuona serata Amici!", "shared_text": "", "time": "2019-11-13 21:19:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=582074005895408&id=252306033154", "link": null} +{"post_id": "10157103455743155", "text": "Tra poco su Rete 4 scriviamo una letterina all\u2019ex avvocato degli italiani... Voi che cosa gli scrivereste?", "post_text": "Tra poco su Rete 4 scriviamo una letterina all\u2019ex avvocato degli italiani... Voi che cosa gli scrivereste?", "shared_text": "", "time": "2019-11-13 20:30:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/72914124_10157103455663155_5173537400818761728_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=M4Z3g4-0JkEAQlzhgKJA8mFb5lyZSf87FKbU5nHBYLRccKgg2bC5VHjIw&_nc_ht=scontent-cdt1-1.xx&oh=82073049c4ed916627b3432cfac23de0&oe=5E4AFA0F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103455743155&id=252306033154", "link": null} +{"post_id": "10157103349453155", "text": "Felice di aver partecipato oggi all'inaugurazione del Consolato israeliano a Firenze, insieme all'ambasciatore Dror Eydar e ad altri amici della Comunit\u00e0 ebraica.\nSempre e per sempre vicino al Popolo d'Israele,\u2026 Altro baluardo di democrazia in una terra martoriata anche in queste ore dai missili e dai lutti.\nRingrazio la Comunit\u00e0 fiorentina che ha dato vita a un nuovo presidio di libert\u00e0, di progresso e di relazione economica e commerciale, fondamentale nel momento in cui in Europa Israele subisce l'isolamento, nel silenzio generale.", "post_text": "Felice di aver partecipato oggi all'inaugurazione del Consolato israeliano a Firenze, insieme all'ambasciatore Dror Eydar e ad altri amici della Comunit\u00e0 ebraica.\nSempre e per sempre vicino al Popolo d'Israele,\u2026 Altro baluardo di democrazia in una terra martoriata anche in queste ore dai missili e dai lutti.\nRingrazio la Comunit\u00e0 fiorentina che ha dato vita a un nuovo presidio di libert\u00e0, di progresso e di relazione economica e commerciale, fondamentale nel momento in cui in Europa Israele subisce l'isolamento, nel silenzio generale.", "shared_text": "", "time": "2019-11-13 19:55:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p228x119/74211279_10157103327348155_7870760477406527488_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=mmAmzjLz8YsAQlKxNCC_kxU6GYAAwIyLm7hqx9dIiepf_RzKalzC6ONXQ&_nc_ht=scontent-cdt1-1.xx&oh=be557462ca12489410ac825ddd9a97cb&oe=5E7A0E6E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103349453155&id=252306033154", "link": null} +{"post_id": "764182240712281", "text": "Forza Venezia!", "post_text": "Forza Venezia!", "shared_text": "", "time": "2019-11-13 19:14:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=764182240712281&id=252306033154", "link": null} +{"post_id": "10157103130423155", "text": "C'\u00e8 qualcuno? Mi collego qui verso le 19! \ud83d\ude0a", "post_text": "C'\u00e8 qualcuno? Mi collego qui verso le 19! \ud83d\ude0a", "shared_text": "", "time": "2019-11-13 18:49:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157103130423155&id=252306033154", "link": null} +{"post_id": "10157102907423155", "text": "\"Per avere il permesso di soggiorno per motivi umanitari non basta dimostrare di essersi 'integrati'.\"\n\u2705 La Corte di Cassazione d\u00e0 ragione alla Lega, alla faccia di quelli che riaprono i porti e che vogliono cancellare i Decreti Sicurezza.", "post_text": "\"Per avere il permesso di soggiorno per motivi umanitari non basta dimostrare di essersi 'integrati'.\"\n\u2705 La Corte di Cassazione d\u00e0 ragione alla Lega, alla faccia di quelli che riaprono i porti e che vogliono cancellare i Decreti Sicurezza.", "shared_text": "", "time": "2019-11-13 17:34:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76776514_10157102895153155_3967564060739764224_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=PdFsMxfsDYYAQlR_3lTrD_LbBuRm7h5X77EKF9tJ12-bTDgdkx2Ta_8Lw&_nc_ht=scontent-cdt1-1.xx&oh=cc775215d0038c4e30c565be6ef745ce&oe=5E7E8647", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102907423155&id=252306033154", "link": null} +{"post_id": "10157102765408155", "text": "Ecco il nuovo assessore alla Cultura scelto da De Magistris, povera Napoli...", "post_text": "Ecco il nuovo assessore alla Cultura scelto da De Magistris, povera Napoli...", "shared_text": "", "time": "2019-11-13 16:43:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102765408155&id=252306033154", "link": null} +{"post_id": "10157102589683155", "text": "Auguro a questo signore, autore di fumetti e, a quanto pare, anche di notevoli idiozie, di non ricevere mai proiettili, dediche murarie del tipo \"Salvini muori\" o \"Spara a Salvini\" o altre minacce alla propria incolumit\u00e0. In ogni caso, come sapete, non mi faccio intimidire, sorrido e vado avanti! \ud83d\ude0a", "post_text": "Auguro a questo signore, autore di fumetti e, a quanto pare, anche di notevoli idiozie, di non ricevere mai proiettili, dediche murarie del tipo \"Salvini muori\" o \"Spara a Salvini\" o altre minacce alla propria incolumit\u00e0. In ogni caso, come sapete, non mi faccio intimidire, sorrido e vado avanti! \ud83d\ude0a", "shared_text": "", "time": "2019-11-13 15:33:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74211293_10157102575908155_7235297100773195776_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=YBIc8rn8JCAAQm3ifq9gOy16vqACeiz9W9zzwX5QxdwRAa9YEuR-4B0sw&_nc_ht=scontent-cdt1-1.xx&oh=97ccb26b0fec7acbe721e4fbce6bd8e4&oe=5E7D526A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102589683155&id=252306033154", "link": null} +{"post_id": "10157102428038155", "text": "\ud83d\udd34ROBA DA MATTI!\nVoleva essere portato sotto casa, scambiando l\u2019autobus per un taxi. Non accontentato, ha dato in escandescenze distruggendo il parabrezza a colpi di badile.\nCos\u00ed un \u201crichiedente asilo\u201d del Mali,\u2026 Altro davvero rispettoso del Paese che lo ospita...\nViva i \u201cporti aperti\u201d, viva la cancellazione dei Decreti sicurezza di quel cattivone di Salvini, grazie Conte!\nBRESCIA.CORRIERE.IT\nDistrugge il pullman a badilate: arrestato 23enne", "post_text": "\ud83d\udd34ROBA DA MATTI!\nVoleva essere portato sotto casa, scambiando l\u2019autobus per un taxi. Non accontentato, ha dato in escandescenze distruggendo il parabrezza a colpi di badile.\nCos\u00ed un \u201crichiedente asilo\u201d del Mali,\u2026 Altro davvero rispettoso del Paese che lo ospita...\nViva i \u201cporti aperti\u201d, viva la cancellazione dei Decreti sicurezza di quel cattivone di Salvini, grazie Conte!", "shared_text": "BRESCIA.CORRIERE.IT\nDistrugge il pullman a badilate: arrestato 23enne", "time": "2019-11-13 13:57:19", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAxO5MvpT5wl7eW&w=476&h=249&url=https%3A%2F%2Fimages2-brescia.corriereobjects.it%2Fmethode_image%2Fsocialshare%2F2019%2F11%2F13%2F416ad5ec-05ff-11ea-a1df-d75c93ec44da.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQBX49A-gm07tEEG", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102428038155&id=252306033154", "link": "https://brescia.corriere.it/notizie/cronaca/19_novembre_13/distrugge-pullmana-badilate-arrestato-d6f21d7e-05fe-11ea-a1df-d75c93ec44da.shtml?fbclid=IwAR2BPjV6T5GmwxxWYl_0Pucor5V4L2nDRKotBCXteXsIlY38g_xJmIKpCy0"} +{"post_id": "541259583102121", "text": "Con il cuore e la testa a Venezia e al Veneto, a Matera e alle zone colpite dal maltempo, la Lega e il governatore del Veneto Luca Zaia sono al lavoro per interventi immediati, i patrimoni del nostro Paese sono\u2026 Altro un'eredit\u00e0 da lasciare ai nostri nipoti e per questo vanno difesi e tutelati, ad ogni costo.\nEcco che cosa ho detto questa mattina su Canale 5.", "post_text": "Con il cuore e la testa a Venezia e al Veneto, a Matera e alle zone colpite dal maltempo, la Lega e il governatore del Veneto Luca Zaia sono al lavoro per interventi immediati, i patrimoni del nostro Paese sono\u2026 Altro un'eredit\u00e0 da lasciare ai nostri nipoti e per questo vanno difesi e tutelati, ad ogni costo.\nEcco che cosa ho detto questa mattina su Canale 5.", "shared_text": "", "time": "2019-11-13 13:12:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=541259583102121&id=252306033154", "link": null} +{"post_id": "408746796696134", "text": "In diretta dalla Camera.\nL\u2019Italia riparte solo se sostiene le imprese, taglia tasse e burocrazia, prosegue nella direzione della pace fiscale, aiuta davvero le famiglie.", "post_text": "In diretta dalla Camera.\nL\u2019Italia riparte solo se sostiene le imprese, taglia tasse e burocrazia, prosegue nella direzione della pace fiscale, aiuta davvero le famiglie.", "shared_text": "", "time": "2019-11-13 12:06:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=408746796696134&id=252306033154", "link": null} +{"post_id": "10157102037728155", "text": "\ud83d\udd34 Un patrimonio dell\u2019Umanit\u00e0 che il governo non pu\u00f2 ignorare: per i danni provocati dal maltempo a Venezia si utilizzi subito uno dei tre miliardi che il governo vorrebbe regalare a chi paga con bancomat o carta di credito.", "post_text": "\ud83d\udd34 Un patrimonio dell\u2019Umanit\u00e0 che il governo non pu\u00f2 ignorare: per i danni provocati dal maltempo a Venezia si utilizzi subito uno dei tre miliardi che il governo vorrebbe regalare a chi paga con bancomat o carta di credito.", "shared_text": "", "time": "2019-11-13 10:51:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75412330_10157102037153155_5433134114771304448_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=U0oFi9Yr6-EAQltGLt8fzhlpfAvLQg3gtvSs3prSElcP0eBat8LwfvzYg&_nc_ht=scontent-cdt1-1.xx&oh=321fbf597ff1ce36b3c6b309a632d779&oe=5E875250", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157102037728155&id=252306033154", "link": null} +{"post_id": "10157101916073155", "text": "Gli aggiornamenti del governatore Luca Zaia sulla drammatica situazione a Venezia e in Veneto, al lavoro con Vigili del Fuoco e Protezione civile. Forza! \u2764\ufe0f", "post_text": "Gli aggiornamenti del governatore Luca Zaia sulla drammatica situazione a Venezia e in Veneto, al lavoro con Vigili del Fuoco e Protezione civile. Forza! \u2764\ufe0f", "shared_text": "", "time": "2019-11-13 10:00:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157101916073155&id=252306033154", "link": null} +{"post_id": "10157101796823155", "text": "Ora in diretta su Canale 5, mi seguite?", "post_text": "Ora in diretta su Canale 5, mi seguite?", "shared_text": "", "time": "2019-11-13 09:03:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p200x200/75472753_10157101796678155_465433476879876096_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=_7IKcJ8XIXkAQnrYAI-t7qguttsv1vHLM0Iliago70FfuCbfxonI6Rycw&_nc_ht=scontent-cdt1-1.xx&oh=a25a1772329e8071b1d7b9ae99bb75ae&oe=5E7ABE31", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157101796823155&id=252306033154", "link": null} +{"post_id": "10157100090488155", "text": "Amici, ci vediamo tra poco, alle 9, su Canale 5.\nChi di voi mi fa compagnia?", "post_text": "Amici, ci vediamo tra poco, alle 9, su Canale 5.\nChi di voi mi fa compagnia?", "shared_text": "", "time": "2019-11-13 08:47:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75231806_10157100090418155_7203571796560314368_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=0GEQyM6xyqgAQnQwXhp-BQj89KhVZDcPRJOG8prYdaxgXW4QJd1QECvdA&_nc_ht=scontent-cdt1-1.xx&oh=c571086b946083621cff7f91182eb328&oe=5E84C799", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157100090488155&id=252306033154", "link": null} +{"post_id": "10157101669433155", "text": "Disastro a Venezia, quasi due metri di acqua alta, due morti. Tutta la mia vicinanza. L\u2019Italia fa il tifo per voi.", "post_text": "Disastro a Venezia, quasi due metri di acqua alta, due morti. Tutta la mia vicinanza. L\u2019Italia fa il tifo per voi.", "shared_text": "", "time": "2019-11-13 08:01:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75298451_10157101669368155_5951686231044653056_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=oK7f_LCV7xIAQlXH1nL3godXeT1F-cGyeBdSkUZsf1TIW8v0rLA44XWaQ&_nc_ht=scontent-cdt1-1.xx&oh=b02214a3c60d6fe332997b49132e8d00&oe=5E7CAF69", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157101669433155&id=252306033154", "link": null} +{"post_id": "10157100683608155", "text": "Avete visto su La7? Ma se il 34% degli Italiani sceglie la Lega \u00e8 perch\u00e9 sono tutti cretini o \u201cfascisti\u201d? NO!\nSono solo cittadini che vogliono vivere tranquilli, in un Paese pi\u00f9 sicuro, pi\u00f9 giusto, pi\u00f9 libero.\nBuonanotte Amici, sempre avanti a testa alta, vinceremo anche nell\u2019interesse di chi ci vuole male \ud83d\ude0a", "post_text": "Avete visto su La7? Ma se il 34% degli Italiani sceglie la Lega \u00e8 perch\u00e9 sono tutti cretini o \u201cfascisti\u201d? NO!\nSono solo cittadini che vogliono vivere tranquilli, in un Paese pi\u00f9 sicuro, pi\u00f9 giusto, pi\u00f9 libero.\nBuonanotte Amici, sempre avanti a testa alta, vinceremo anche nell\u2019interesse di chi ci vuole male \ud83d\ude0a", "shared_text": "", "time": "2019-11-12 23:09:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75298467_10157100680933155_5814899412521975808_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=n9rtpH6PqYMAQngYlhI7PDiO69ayAOjW-O96_Rv65mwOVmo_1mONcVHWg&_nc_ht=scontent-cdt1-1.xx&oh=8f4d0303055c05be631566843ab92fe5&oe=5E7B549A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157100683608155&id=252306033154", "link": null} +{"post_id": "10157100477173155", "text": "Tra poco in onda su La7 da Floris, c\u2019\u00e8 qualcuno???", "post_text": "Tra poco in onda su La7 da Floris, c\u2019\u00e8 qualcuno???", "shared_text": "", "time": "2019-11-12 21:41:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75588198_10157100475568155_3029060358774980608_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=a2Imi1NFqWoAQmK1dRjanKWoDrXwylj4sj3QHRpo97QHkw6rQljWQakLA&_nc_ht=scontent-cdt1-1.xx&oh=c6274854dba78d1e6394f952975afd92&oe=5E435028", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157100477173155&id=252306033154", "link": null} +{"post_id": "2788021714566095", "text": "\u201cTra chi sbarca abbiamo trovato delle tubercolosi diffuse ad altri organi, cose che qui in Italia non si vedono pi\u00f9 da DECENNI\u201d. Pazzesco. L'Italia vive pericoli drammatici e il governo abusivo, anzich\u00e9\u2026 Altro aumentare i controlli, riapre i porti e minaccia di cancellare i Decreti sicurezza... Questi sono pericolosi. Sono sicuro che milioni di italiani non vedono l'ora che se ne vadano A CASA!", "post_text": "\u201cTra chi sbarca abbiamo trovato delle tubercolosi diffuse ad altri organi, cose che qui in Italia non si vedono pi\u00f9 da DECENNI\u201d. Pazzesco. L'Italia vive pericoli drammatici e il governo abusivo, anzich\u00e9\u2026 Altro aumentare i controlli, riapre i porti e minaccia di cancellare i Decreti sicurezza... Questi sono pericolosi. Sono sicuro che milioni di italiani non vedono l'ora che se ne vadano A CASA!", "shared_text": "", "time": "2019-11-12 20:49:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2788021714566095&id=252306033154", "link": null} +{"post_id": "10157100215183155", "text": "Se questa sera non avete niente di meglio da fare, verso le 21.55 accendete su La7 e fatemi compagnia \ud83d\ude0a\nBuona serata Amici, e grazie di esserci sempre.", "post_text": "Se questa sera non avete niente di meglio da fare, verso le 21.55 accendete su La7 e fatemi compagnia \ud83d\ude0a\nBuona serata Amici, e grazie di esserci sempre.", "shared_text": "", "time": "2019-11-12 20:00:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/73282010_10157100211083155_9131696080180740096_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=u_jJqyYJiZ4AQnOl2abc9Uyoj19IvjH_BWU3x0mwSm_xzM9eWabcZtZcQ&_nc_ht=scontent-cdt1-1.xx&oh=e8c059669c6c02257dc44062c5e5142d&oe=5E8BA38C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157100215183155&id=252306033154", "link": null} +{"post_id": "10157100066643155", "text": "Amici emiliani e romagnoli, tutto pronto per il grande evento del PalaDozza di gioved\u00ec sera a Bologna con Lucia Borgonzoni. Lo riempiamo???\nInfo pullman su: legaonline.it/emiliaromagna", "post_text": "Amici emiliani e romagnoli, tutto pronto per il grande evento del PalaDozza di gioved\u00ec sera a Bologna con Lucia Borgonzoni. Lo riempiamo???\nInfo pullman su: legaonline.it/emiliaromagna", "shared_text": "", "time": "2019-11-12 19:01:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/74680617_10157100051783155_2885808630924312576_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=IhDWOLw6SXcAQkObFtg9BvqT_NGkuOT6NcuoZzD5IolocEE3hTHUfUJQw&_nc_ht=scontent-cdt1-1.xx&oh=6a5151d5ed4030e24d34f2f8f2356625&oe=5E41C56F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157100066643155&id=252306033154", "link": "http://legaonline.it/emiliaromagna?fbclid=IwAR2P_MrVqHJqkHi_RypCExRyKtQUSGadhZmHSZrOBrUr_gwFxfoBgiBSoSU"} +{"post_id": "10157080771613155", "text": "La soluzione della Bonino? Legalizzare tutti i clandestini... Il messaggio ideale da dare ai trafficanti di esseri umani oer ridurre gli sbarchi...", "post_text": "La soluzione della Bonino? Legalizzare tutti i clandestini... Il messaggio ideale da dare ai trafficanti di esseri umani oer ridurre gli sbarchi...", "shared_text": "", "time": "2019-11-12 17:43:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157080771613155&id=252306033154", "link": null} +{"post_id": "10157098990358155", "text": "Onore a questo imprenditore che ha rischiato tutto pur di salvare i suoi dipendenti.\nQuando si \u00e8 costretti a scegliere se pagare le tasse o pagare i propri lavoratori, un governo serio dovrebbe TAGLIARE le\u2026 Altro imposte.\nE invece cosa fa il governo Pd-5Stelle-Renzi? Si inventa tasse su plastica e zucchero...\nCon il voto del 26 gennaio in Emilia-Romagna mandiamo a casa anche questi traditori.", "post_text": "Onore a questo imprenditore che ha rischiato tutto pur di salvare i suoi dipendenti.\nQuando si \u00e8 costretti a scegliere se pagare le tasse o pagare i propri lavoratori, un governo serio dovrebbe TAGLIARE le\u2026 Altro imposte.\nE invece cosa fa il governo Pd-5Stelle-Renzi? Si inventa tasse su plastica e zucchero...\nCon il voto del 26 gennaio in Emilia-Romagna mandiamo a casa anche questi traditori.", "shared_text": "", "time": "2019-11-12 17:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157098990358155&id=252306033154", "link": null} +{"post_id": "10157099634953155", "text": "Questo signore non sa quello che dice, dovrebbe vergognarsi e chiedere scusa ai parenti dei nostri morti: \u00e8 indegno di dirsi prete!\nADNKRONOS.COM\nNassiriya, padre Zanotelli: \"Vittime non sono martiri\"", "post_text": "Questo signore non sa quello che dice, dovrebbe vergognarsi e chiedere scusa ai parenti dei nostri morti: \u00e8 indegno di dirsi prete!", "shared_text": "ADNKRONOS.COM\nNassiriya, padre Zanotelli: \"Vittime non sono martiri\"", "time": "2019-11-12 16:03:44", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBHeJ2TRhGaGz3O&w=476&h=249&url=https%3A%2F%2Fwww.adnkronos.com%2Frf%2Fimage_size_1280x960%2FPub%2FAdnKronos%2FAssets%2FImmagini%2F2019%2F05%2F21%2Fzanotelli_padre_alex_fg.jpg&cfs=1&jq=75&sx=0&sy=105&sw=1017&sh=532&ext=jpg&_nc_hash=AQDYdOjrpdlPcoA7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157099634953155&id=252306033154", "link": "https://www.adnkronos.com/fatti/cronaca/2019/11/12/nassiriya-padre-zanotelli-vittime-non-sono-martiri_u2gyKCl4k0sIOIRAugZm5N.html?fbclid=IwAR3ppumpBZrB_jdz_Vr6NKgm4gFiLYDyYwuL2rzaVAVx1-uiJioVTyvze24"} +{"post_id": "10157099417393155", "text": "Amici emiliani e romagnoli: loro ci saranno, voi ci sarete?\nVi aspettiamo in tantissimi questo gioved\u00ec alle 20 al PalaDozza di Bologna insieme alla futura Presidente Lucia Borgonzoni!\nPD e sinistra dicono con\u2026 Altro spocchia \u201cSiamo l\u2019Emilia-Romagna\u201d noi diciamo \u201cL\u2019Emilia-Romagna \u00e8 di tutti\u201d: per una regione sempre pi\u00f9 efficiente, giusta e libera, dove conti il merito e non la tessera di partito, dove si pensi prima agli italiani e solo dopo al resto del mondo.\nDopo 50 anni \u00e8 ora di cambiare aria: il 26 gennaio si fa la storia!\n\ud83d\ude8c Trova il tuo pullman: https://legaonline.it/download/PULLMAN_PALADOZZA_14NOV.pdf\n\u2139 Dai una mano: legaonline.it/emiliaromagna\n\u2709 emiliaromagna@legaonline.it", "post_text": "Amici emiliani e romagnoli: loro ci saranno, voi ci sarete?\nVi aspettiamo in tantissimi questo gioved\u00ec alle 20 al PalaDozza di Bologna insieme alla futura Presidente Lucia Borgonzoni!\nPD e sinistra dicono con\u2026 Altro spocchia \u201cSiamo l\u2019Emilia-Romagna\u201d noi diciamo \u201cL\u2019Emilia-Romagna \u00e8 di tutti\u201d: per una regione sempre pi\u00f9 efficiente, giusta e libera, dove conti il merito e non la tessera di partito, dove si pensi prima agli italiani e solo dopo al resto del mondo.\nDopo 50 anni \u00e8 ora di cambiare aria: il 26 gennaio si fa la storia!\n\ud83d\ude8c Trova il tuo pullman: https://legaonline.it/download/PULLMAN_PALADOZZA_14NOV.pdf\n\u2139 Dai una mano: legaonline.it/emiliaromagna\n\u2709 emiliaromagna@legaonline.it", "shared_text": "", "time": "2019-11-12 14:45:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75375534_10157099415743155_4904971953338580992_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=WvSkqLE03ZkAQlghfMrzsZ1QlCIAUxHdGkCklgV4dJHR6QhFXXQ5qzReQ&_nc_ht=scontent-cdt1-1.xx&oh=49061df529b69d3a2f825fad4c7216c5&oe=5E8C45CE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157099417393155&id=252306033154", "link": "https://legaonline.it/download/PULLMAN_PALADOZZA_14NOV.pdf?fbclid=IwAR1XsypV2iuIJFlg4HDQFW02uEkgEG8B0uOku8i1iCsRO4Lz4pHuwzpu8r8"} +{"post_id": "10157098990753155", "text": "Ma il ministro della Giustizia esiste???", "post_text": "Ma il ministro della Giustizia esiste???", "shared_text": "", "time": "2019-11-12 14:03:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75246676_10157098990263155_6479953606291226624_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=mebFl4X73FYAQl5XXXuwsVifSTKSht_Z-PTkI8_9vgdXGOXYU1O6gMw0g&_nc_ht=scontent-cdt1-1.xx&oh=773189bb5d6a15572f76b65deee13492&oe=5E3E0C0D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157098990753155&id=252306033154", "link": null} +{"post_id": "10157099143383155", "text": "\"Salvini sopravvive a fatica alle sciocchezze che dice.\"\nSimpatico, sincero, intelligente, obiettivo, per niente ossessionato da me e dalla Lega.\nMah, no, non ci riesco...\nNon sono bravo a dire bugie!", "post_text": "\"Salvini sopravvive a fatica alle sciocchezze che dice.\"\nSimpatico, sincero, intelligente, obiettivo, per niente ossessionato da me e dalla Lega.\nMah, no, non ci riesco...\nNon sono bravo a dire bugie!", "shared_text": "", "time": "2019-11-12 13:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157099143383155&id=252306033154", "link": null} +{"post_id": "10157098985293155", "text": "Gli amici di Renzi vogliono premiare uno che defin\u00ec gli israeliani \"essere abominevoli\"? Alla faccia dell'antisemitismo.\nChe schifo!", "post_text": "Gli amici di Renzi vogliono premiare uno che defin\u00ec gli israeliani \"essere abominevoli\"? Alla faccia dell'antisemitismo.\nChe schifo!", "shared_text": "", "time": "2019-11-12 12:03:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74479731_10157098984718155_7964490253081772032_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=f8leLWEoiE0AQmcPOXyPJ91EDhcmWl1UEOaWGGAOrjP309it_Qvh0q9rQ&_nc_ht=scontent-cdt1-1.xx&oh=9c7b0e14790c046beeef3c4e4253a866&oe=5E8ACD11", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157098985293155&id=252306033154", "link": null} +{"post_id": "10157098997168155", "text": "Chi si ferma \u00e8 perduto! \ud83c\uddee\ud83c\uddf9", "post_text": "Chi si ferma \u00e8 perduto! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-12 11:00:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74895977_10157098996098155_1345269948510896128_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=L9uaMG9T7okAQkXwfF6Q2OytIi43VFBRv3woPYAG_50GaZjISnvXANn-Q&_nc_ht=scontent-cdt1-1.xx&oh=6ce00035e9d2352ead92897a4bef40f3&oe=5E4F7424", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157098997168155&id=252306033154", "link": null} +{"post_id": "10157098902678155", "text": "16 anni dalla strage di Nassiriya, per non dimenticare.\nAncora con un pensiero ai nostri militari feriti nell'attentato di domenica.\nOnore a tutti gli eroi che hanno dato la vita e la rischiano ogni giorno per proteggere l'Italia \ud83c\uddee\ud83c\uddf9 dalle minacce interne ed esterne.", "post_text": "16 anni dalla strage di Nassiriya, per non dimenticare.\nAncora con un pensiero ai nostri militari feriti nell'attentato di domenica.\nOnore a tutti gli eroi che hanno dato la vita e la rischiano ogni giorno per proteggere l'Italia \ud83c\uddee\ud83c\uddf9 dalle minacce interne ed esterne.", "shared_text": "", "time": "2019-11-12 09:58:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75567390_10157098895828155_7616324866739798016_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=_imAfhk9UHIAQnRiH6vqHpEnj47S_oTCnikRvIfNw870aecpGJJ2q93mA&_nc_ht=scontent-cdt1-1.xx&oh=f9514dbb6fc454095727a4406aec285b&oe=5E79A610", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157098902678155&id=252306033154", "link": null} +{"post_id": "10157098735798155", "text": "Ieri da Orogel, eccellenza italiana con fabbriche in Romagna, Veneto e Basilicata, che valorizza il lavoro di 2.000 agricoltori (tutti italiani).\nViva la zucca!\ud83d\ude09", "post_text": "Ieri da Orogel, eccellenza italiana con fabbriche in Romagna, Veneto e Basilicata, che valorizza il lavoro di 2.000 agricoltori (tutti italiani).\nViva la zucca!\ud83d\ude09", "shared_text": "", "time": "2019-11-12 08:59:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157098735798155&id=252306033154", "link": null} +{"post_id": "10157097433478155", "text": "Buongiorno Amici, INSIEME si pu\u00f2!\u263a\ufe0f", "post_text": "Buongiorno Amici, INSIEME si pu\u00f2!\u263a\ufe0f", "shared_text": "", "time": "2019-11-12 07:39:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75252931_10157097432153155_4756263920509911040_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=7msMpsPqTmAAQnVpBCsp7wCahFXCHHZDR4XzaZu-ZEMuPu1LViEcX03hA&_nc_ht=scontent-cdt1-1.xx&oh=e99f5ef4201c42216b60cd6b93f0caa4&oe=5E7CAC6D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157097433478155&id=252306033154", "link": null} +{"post_id": "881088938951608", "text": "Grazie per tutto il calore e l'affetto che mi avete dato in questi giorni in Emilia-Romagna. Io ce la metto tutta e sono sicuro che il 26 gennaio, insieme, libereremo questa splendida regione.\nBuonanotte Amici!", "post_text": "Grazie per tutto il calore e l'affetto che mi avete dato in questi giorni in Emilia-Romagna. Io ce la metto tutta e sono sicuro che il 26 gennaio, insieme, libereremo questa splendida regione.\nBuonanotte Amici!", "shared_text": "", "time": "2019-11-11 23:31:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=881088938951608&id=252306033154", "link": null} +{"post_id": "10157097023723155", "text": "\"Un saluto a Mirta anche dallo zio Giletti\", e qualcuno ha avuto da ridire...\nA sinistra non sanno pi\u00f9 a cosa attaccarsi, neanche gli \u201czii\u201d vanno pi\u00f9 bene?!?\ud83d\ude02", "post_text": "\"Un saluto a Mirta anche dallo zio Giletti\", e qualcuno ha avuto da ridire...\nA sinistra non sanno pi\u00f9 a cosa attaccarsi, neanche gli \u201czii\u201d vanno pi\u00f9 bene?!?\ud83d\ude02", "shared_text": "", "time": "2019-11-11 22:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157097023723155&id=252306033154", "link": null} +{"post_id": "718047328701093", "text": "Lo capiranno a sinistra che l\u2019Italia riparte solo tagliando le tasse e semplificando la vita delle imprese???", "post_text": "Lo capiranno a sinistra che l\u2019Italia riparte solo tagliando le tasse e semplificando la vita delle imprese???", "shared_text": "", "time": "2019-11-11 21:00:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=718047328701093&id=252306033154", "link": null} +{"post_id": "10157097260458155", "text": "++ \ud83e\udd2cBIBBIANO, PER LA SINISTRA \"UN RAFFREDDORE\"? MA VERGOGNATEVI! ANDREMO FINO IN FONDO! ++\n\u201cBibbiano e i bambini rubati alle famiglie, una vergogna che non si deve ripetere e che la sinistra non pu\u00f2 insabbiare parlando di un semplice \u201craffreddore\u201d. La Lega andr\u00e0 fino in fondo, tante famiglie emiliane chiedono giustizia.", "post_text": "++ \ud83e\udd2cBIBBIANO, PER LA SINISTRA \"UN RAFFREDDORE\"? MA VERGOGNATEVI! ANDREMO FINO IN FONDO! ++\n\u201cBibbiano e i bambini rubati alle famiglie, una vergogna che non si deve ripetere e che la sinistra non pu\u00f2 insabbiare parlando di un semplice \u201craffreddore\u201d. La Lega andr\u00e0 fino in fondo, tante famiglie emiliane chiedono giustizia.", "shared_text": "", "time": "2019-11-11 19:44:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72209297_10157097259813155_1717072841985228800_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=BnZadKuKDm0AQkf4VkhZ2toIK-P_HEXGCWJJZ1WJPRoTxXVBJWttdNlGg&_nc_ht=scontent-cdt1-1.xx&oh=82a24fcbaf607ed508c116a18eff0f73&oe=5E84F4AF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157097260458155&id=252306033154", "link": null} +{"post_id": "10157096881098155", "text": "Quando una forza politica, pur di conservare le poltrone, rinnega idee, battaglie e la propria stessa natura, poi accade questo. Chiarezza e coerenza alla fine pagano, sempre.", "post_text": "Quando una forza politica, pur di conservare le poltrone, rinnega idee, battaglie e la propria stessa natura, poi accade questo. Chiarezza e coerenza alla fine pagano, sempre.", "shared_text": "", "time": "2019-11-11 19:20:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76958198_10157096880178155_2094155465742090240_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=mIsBZxq6alwAQkSnY3wSjcKASqlIlCQN4q2xjLSznpvjXuw_roQ_O_02w&_nc_ht=scontent-cdt1-1.xx&oh=7eebdc97926c4ebdfa32db21b3bbcfa9&oe=5E88058D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096881098155&id=252306033154", "link": null} +{"post_id": "10157096975353155", "text": "Faremo un po\u2019 di beneficenza coi soldi di chi insulta \ud83d\ude0a\nLECCONOTIZIE.COM\nInsulti contro Salvini, Don Giorgio condannato a multa e risarcimento - Lecco Notizie", "post_text": "Faremo un po\u2019 di beneficenza coi soldi di chi insulta \ud83d\ude0a", "shared_text": "LECCONOTIZIE.COM\nInsulti contro Salvini, Don Giorgio condannato a multa e risarcimento - Lecco Notizie", "time": "2019-11-11 18:30:30", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQA1Ez-VRgib5Ew1&w=476&h=249&url=https%3A%2F%2Flecconotizie.com%2Fwp-content%2Fuploads%2F2019%2F09%2Fmatteo-salvini-don-giorgio-de-capitani.jpg&cfs=1&jq=75&sx=0&sy=29&sw=800&sh=418&ext=jpg&_nc_hash=AQCGXp6wETDiJRGE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096975353155&id=252306033154", "link": "https://lecconotizie.com/cronaca/oggiono-cronaca/insulti-contro-salvini-don-giorgio-condannato-a-multa-e-risarcimento/?fbclid=IwAR2YDWvNlzdxo80hKZM_7Stt0nGSe6bEj7Srpw7FOIxmRezmvXY-iOQWLx8"} +{"post_id": "10157096908243155", "text": "Il terrorismo islamico \u00e8 ancora un pericolo, anzi il pericolo pi\u00f9 grave, in tutto il mondo.\nMai abbassare la guardia.", "post_text": "Il terrorismo islamico \u00e8 ancora un pericolo, anzi il pericolo pi\u00f9 grave, in tutto il mondo.\nMai abbassare la guardia.", "shared_text": "", "time": "2019-11-11 17:35:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75478445_10157096908203155_1211620869885919232_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=BptSuPY47bMAQl9cYwUYIjahv-uDv9meJVq-TLJwwASJmwV-PSgq2iYjA&_nc_ht=scontent-cdt1-1.xx&oh=6f8e4cda911430d0f29194b1fdb52077&oe=5E815285", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096908243155&id=252306033154", "link": null} +{"post_id": "10157096834453155", "text": "Salvini e sedano, rapporto antico\ud83d\ude09", "post_text": "Salvini e sedano, rapporto antico\ud83d\ude09", "shared_text": "", "time": "2019-11-11 17:04:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75481632_10157096833973155_3118987473485561856_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=g0Dvb0wGlBoAQma658nJgyPsSYj08-3G4DD7x3FhcF6NJ4624MeKmeZRQ&_nc_ht=scontent-cdt1-1.xx&oh=b7fe33546677a731f19a8222b31ffda3&oe=5E8B7F18", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096834453155&id=252306033154", "link": null} +{"post_id": "10157096628478155", "text": "Con la folle tassa sulla plastica del governo Pd-5Stelle-Renzi, pure il dentifricio coster\u00e0 di pi\u00f9...\nMandiamoli a casa una volta per tutte, il #26gennaiovotoLega", "post_text": "Con la folle tassa sulla plastica del governo Pd-5Stelle-Renzi, pure il dentifricio coster\u00e0 di pi\u00f9...\nMandiamoli a casa una volta per tutte, il #26gennaiovotoLega", "shared_text": "", "time": "2019-11-11 15:52:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76937837_10157096621663155_44988940612009984_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=MFT4So7dfcsAQm1ASfUGS0WvW7qYtADGHZtqkBuxgfC-BE2T3lzMLsxoQ&_nc_ht=scontent-cdt1-1.xx&oh=4e0aa12cf3195fcc871ab143cb63cbfd&oe=5E465D75", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096628478155&id=252306033154", "link": null} +{"post_id": "10157096507958155", "text": "Qui Cesena visitando l\u2019azienda di prodotti surgelati Orogel, uno splendido esempio di cooperativa bella, sana, che reinveste gli utili, fa lavorare duemila agricoltori italiani e produce prodotti italiani.\nLunga vita alle nostre eccellenze, che vanno tutelate e valorizzate in Europa e nel mondo.", "post_text": "Qui Cesena visitando l\u2019azienda di prodotti surgelati Orogel, uno splendido esempio di cooperativa bella, sana, che reinveste gli utili, fa lavorare duemila agricoltori italiani e produce prodotti italiani.\nLunga vita alle nostre eccellenze, che vanno tutelate e valorizzate in Europa e nel mondo.", "shared_text": "", "time": "2019-11-11 14:51:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096507958155&id=252306033154", "link": null} +{"post_id": "446730669314973", "text": "L\u2019Italia deve essere amica degli imprenditori, non farli scappare.\nPer questo la Lega vuole aiutarli ad investire qua abbassando le tasse e riducendo burocrazia.\nAltro che tassa sullo zucchero...\nEcco che cosa ho detto ieri sera da Giletti, buon pranzo Amici!", "post_text": "L\u2019Italia deve essere amica degli imprenditori, non farli scappare.\nPer questo la Lega vuole aiutarli ad investire qua abbassando le tasse e riducendo burocrazia.\nAltro che tassa sullo zucchero...\nEcco che cosa ho detto ieri sera da Giletti, buon pranzo Amici!", "shared_text": "", "time": "2019-11-11 13:40:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=446730669314973&id=252306033154", "link": null} +{"post_id": "10157096279578155", "text": "La pioggia di questa mattina non ha tolto il sorriso ai tanti romagnoli presenti a Forl\u00ec \ud83d\ude0a\nOgni giorno che passa sono sempre pi\u00f9 fiducioso: il 26 gennaio non saranno elezioni ma una giornata di festa, di libert\u00e0, di partecipazione e di futuro, prima in Emilia-Romagna e poi in Italia.\n#26gennaiovotoLega", "post_text": "La pioggia di questa mattina non ha tolto il sorriso ai tanti romagnoli presenti a Forl\u00ec \ud83d\ude0a\nOgni giorno che passa sono sempre pi\u00f9 fiducioso: il 26 gennaio non saranno elezioni ma una giornata di festa, di libert\u00e0, di partecipazione e di futuro, prima in Emilia-Romagna e poi in Italia.\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-11 13:11:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/75233587_10157096278258155_8654153488470638592_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=yNQeWMltIXwAQmXbO1mvOCrl3xbOfR_6WiYzVM8yHAOyy_zloGDXtAX_Q&_nc_ht=scontent-cdt1-1.xx&oh=97f3aa5f852e7d366c79c1817ed104fb&oe=5E4D4420", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096279578155&id=252306033154", "link": null} +{"post_id": "10157096124298155", "text": "I renziani vogliono Chef Rubio in Rai, pagato da tutti gli Italiani.\nMa ci sono o ci fanno???", "post_text": "I renziani vogliono Chef Rubio in Rai, pagato da tutti gli Italiani.\nMa ci sono o ci fanno???", "shared_text": "", "time": "2019-11-11 12:12:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75310408_10157096145833155_3563141758235705344_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=tu2PAu67kboAQm4RYCx1CbTlf2fYeeSrcVD1EK03t7CLMCa6nCDUMayjA&_nc_ht=scontent-cdt1-1.xx&oh=de371ba7acf8fdc577dfb2040733c44d&oe=5E3E6DE2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157096124298155&id=252306033154", "link": null} +{"post_id": "723120118201278", "text": "Ancora in diretta da Forl\u00ec, alla Fiera degli operatori avicoli. State con me! #26gennaiovotoLega", "post_text": "Ancora in diretta da Forl\u00ec, alla Fiera degli operatori avicoli. State con me! #26gennaiovotoLega", "shared_text": "", "time": "2019-11-11 11:30:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=723120118201278&id=252306033154", "link": null} +{"post_id": "10157095895968155", "text": "Buon luned\u00ec da Forl\u00ec! \ud83d\ude0a\n#26gennaiovotoLega", "post_text": "Buon luned\u00ec da Forl\u00ec! \ud83d\ude0a\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-11 10:59:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75492437_10157095895538155_3493213789371760640_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=neNOO9E0fgMAQkCYquiSpLvvoSB2y_4rlb_Lbc4N3yz3i6VmxtzEmMenQ&_nc_ht=scontent-cdt1-1.xx&oh=82d14bf8b529efd14d74bd46c0195dad&oe=5E4555C4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157095895968155&id=252306033154", "link": null} +{"post_id": "408362716717186", "text": "Buongiorno Amici, in diretta da Forl\u00ed, la pioggia non ci ferma! \ud83d\ude0a #26gennaiovotoLega", "post_text": "Buongiorno Amici, in diretta da Forl\u00ed, la pioggia non ci ferma! \ud83d\ude0a #26gennaiovotoLega", "shared_text": "", "time": "2019-11-11 10:15:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=408362716717186&id=252306033154", "link": null} +{"post_id": "10157095734353155", "text": "Amici forlivesi, ci vediamo tra poco in piazza e poi alle 10.30 in Fiera!\nAppuntamento successivo a Pievesestina di Cesena, a partire dalle 12. Vi aspetto!\n#26gennaiovotoLega", "post_text": "Amici forlivesi, ci vediamo tra poco in piazza e poi alle 10.30 in Fiera!\nAppuntamento successivo a Pievesestina di Cesena, a partire dalle 12. Vi aspetto!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-11 09:09:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75450004_10157095734278155_6528796116115259392_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=CDfl1aeGPEYAQn1zODrIOcmT4dDY-cvO_hI38AMtP61xXhk_-wLXoZcVQ&_nc_ht=scontent-cdt1-1.xx&oh=cebbfd0ac477aff0f800a88a19a9b5b0&oe=5E7BF45D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157095734353155&id=252306033154", "link": null} +{"post_id": "10157094317198155", "text": "Proiettili, minacce, scritte sui muri. Non mi fate paura, mi fate pena e mi date ancora pi\u00f9 forza e coraggio: non mollo e non moller\u00f2, mai!", "post_text": "Proiettili, minacce, scritte sui muri. Non mi fate paura, mi fate pena e mi date ancora pi\u00f9 forza e coraggio: non mollo e non moller\u00f2, mai!", "shared_text": "", "time": "2019-11-11 09:01:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/73413218_10157094316863155_7004381564243017728_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=15Iz0rBUrREAQmHBplFYXRRW7RAceawC3WZU-HTwOq7rKTpAoSS2FBJ3w&_nc_ht=scontent-cdt1-1.xx&oh=cabf02c82d103f87a696d37aa1b39053&oe=5E4A610D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157094317198155&id=252306033154", "link": null} +{"post_id": "10157094230373155", "text": "Buongiorno e buon luned\u00ec! #primagliitaliani \ud83c\uddee\ud83c\uddf9", "post_text": "Buongiorno e buon luned\u00ec! #primagliitaliani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-11 07:33:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/73095672_10157094220333155_8710051401201352704_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=xnY7l7Pq4hcAQlBqyHCLzymxcM5w20IeSAtZ_U1nGAkfFwp3IZ34o09SA&_nc_ht=scontent-cdt1-1.xx&oh=6df083ec8b1df69f2e8a1d21313f7c95&oe=5E4312E6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157094230373155&id=252306033154", "link": null} +{"post_id": "10157094631113155", "text": "Serata emozionante qui a Bellaria (Rimini), grazie \u2764\ufe0f\nBuonanotte Amici, vi voglio bene.", "post_text": "Serata emozionante qui a Bellaria (Rimini), grazie \u2764\ufe0f\nBuonanotte Amici, vi voglio bene.", "shared_text": "", "time": "2019-11-10 23:50:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75325926_10157094627218155_6368061466188185600_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=wK25DZS2lFMAQkPHFDQzRHLYGsqWSxhgVdyPQpvSxEhGbTr63UnyNoVTQ&_nc_ht=scontent-cdt1-1.xx&oh=2ccf9d8ef7b77d9e362b5cbff24d1954&oe=5E4C98FF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157094631113155&id=252306033154", "link": null} +{"post_id": "546650179459174", "text": "Buonasera Amici, un saluto da Bellaria (Rimini)!\nSiete pronti a fare la storia dell\u2019Emilia-Romagna?\n#26gennaiovotoLega", "post_text": "Buonasera Amici, un saluto da Bellaria (Rimini)!\nSiete pronti a fare la storia dell\u2019Emilia-Romagna?\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-10 22:31:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=546650179459174&id=252306033154", "link": null} +{"post_id": "10157094257918155", "text": "\ud83d\udd34Grande avanzata di Santiago Abascal e degli amici di VOX Espa\u00f1a alle elezioni spagnole, scommetto che sono gi\u00e0 pronti i titoli di tigg\u00ec e giornali italiani sulla \"vittoria dell\u2019estrema destra... razzisti...\u2026 Altro sovranisti... fascisti...\"\nMacch\u00e9 razzismo e fascismo, in Italia come in Spagna vogliamo solo vivere tranquilli in casa nostra.\n#portichiusi \ud83c\uddee\ud83c\uddf9\ud83c\uddea\ud83c\uddf8", "post_text": "\ud83d\udd34Grande avanzata di Santiago Abascal e degli amici di VOX Espa\u00f1a alle elezioni spagnole, scommetto che sono gi\u00e0 pronti i titoli di tigg\u00ec e giornali italiani sulla \"vittoria dell\u2019estrema destra... razzisti...\u2026 Altro sovranisti... fascisti...\"\nMacch\u00e9 razzismo e fascismo, in Italia come in Spagna vogliamo solo vivere tranquilli in casa nostra.\n#portichiusi \ud83c\uddee\ud83c\uddf9\ud83c\uddea\ud83c\uddf8", "shared_text": "", "time": "2019-11-10 21:30:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74954860_10157094253013155_3197598169709936640_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=zpjYCYuBlAoAQnMhiLFlO4wGB-Uwypm41UwdF7Kv84EZMQ6i7kqCOFqNQ&_nc_ht=scontent-cdt1-1.xx&oh=9728d2af113b66505e5a916ebc603471&oe=5E85BD2F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157094257918155&id=252306033154", "link": null} +{"post_id": "10157094192183155", "text": "Ora su La7, ci siete? \ud83d\ude0a", "post_text": "Ora su La7, ci siete? \ud83d\ude0a", "shared_text": "", "time": "2019-11-10 21:09:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75625452_10157094191038155_6831329785629638656_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=mK-WOJEeRvIAQntmWsFh52ugAoyEfhIyEb5IgjD2wuiWhCxahxs7aOojw&_nc_ht=scontent-cdt1-1.xx&oh=24fa6efbcdae0be79708c86fdb8a7427&oe=5E7EDCDC", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157094192183155&id=252306033154", "link": null} +{"post_id": "10157094148778155", "text": "Amici tra poco, verso le 21.05, sar\u00f2 in collegamento con Massimo Giletti su La7.\nChi di voi mi fa compagnia?", "post_text": "Amici tra poco, verso le 21.05, sar\u00f2 in collegamento con Massimo Giletti su La7.\nChi di voi mi fa compagnia?", "shared_text": "", "time": "2019-11-10 20:57:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/71498408_10157094148598155_7267614109745545216_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=vT43MxoKoGgAQn1JgDQH2DWFlYAtKiqIRav0BkC6jaLM870MqNOaDaHPg&_nc_ht=scontent-cdt1-1.xx&oh=8d7483c5ffc4bfe2ee98d77d832c623d&oe=5E4CDC5C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157094148778155&id=252306033154", "link": null} +{"post_id": "10157092669868155", "text": "Economia a rischio se facciamo tornare Salvini. Questi sono davvero dei pericolosi e anti-democratici incapaci!!!\ud83d\ude31", "post_text": "Economia a rischio se facciamo tornare Salvini. Questi sono davvero dei pericolosi e anti-democratici incapaci!!!\ud83d\ude31", "shared_text": "", "time": "2019-11-10 20:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75107607_10157092669588155_2652881701079875584_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Py3t8m9iHoUAQlklWXdgO5r4Er5L0SGjlGAfUv9J2pDGxY-chP7J5urAQ&_nc_ht=scontent-cdt1-1.xx&oh=f725f543dbe6213d14bd15121a26fce3&oe=5E47306E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157092669868155&id=252306033154", "link": null} +{"post_id": "10157093836813155", "text": "Baci e sorrisi a chi ci insulta e ci vuole male \ud83d\ude18", "post_text": "Baci e sorrisi a chi ci insulta e ci vuole male \ud83d\ude18", "shared_text": "", "time": "2019-11-10 19:35:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157093836813155&id=252306033154", "link": null} +{"post_id": "10157093047723155", "text": "Adesso tassano pure i condomini...\nQuesti sono pericolosi! \ud83d\ude33\nILGIORNALE.IT\nManovra, scatta il salasso sul condominio", "post_text": "Adesso tassano pure i condomini...\nQuesti sono pericolosi! \ud83d\ude33", "shared_text": "ILGIORNALE.IT\nManovra, scatta il salasso sul condominio", "time": "2019-11-10 18:59:01", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCBR0tMd-ONmB7b&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F10%2F15%2F1571138785-pixabay.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQACno1X-f_FApOb", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157093047723155&id=252306033154", "link": "http://www.ilgiornale.it/news/economia/norma-che-rischia-salassare-i-condomini-1781443.html?fbclid=IwAR0Gi5NQSS9nbcl__mVPcLV-hSdgldtj3r2SPIED7B0G8wXaLjaVeidJCQg"} +{"post_id": "444209579568010", "text": "In diretta dalla Fiera dei Becchi di Santarcangelo di Romagna (Rimini), alla faccia di chi non ci voleva \ud83d\ude09 State con noi!", "post_text": "In diretta dalla Fiera dei Becchi di Santarcangelo di Romagna (Rimini), alla faccia di chi non ci voleva \ud83d\ude09 State con noi!", "shared_text": "", "time": "2019-11-10 18:06:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=444209579568010&id=252306033154", "link": null} +{"post_id": "10157093461858155", "text": "Vicino ai nostri militari colpiti vigliaccamente in Iraq, alle loro famiglie e a tutti i nostri soldati nel mondo.\nCombattere il terrorismo islamico ovunque, in Italia e nel mondo, era e rimane una nostra priorit\u00e0.", "post_text": "Vicino ai nostri militari colpiti vigliaccamente in Iraq, alle loro famiglie e a tutti i nostri soldati nel mondo.\nCombattere il terrorismo islamico ovunque, in Italia e nel mondo, era e rimane una nostra priorit\u00e0.", "shared_text": "", "time": "2019-11-10 17:26:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74915572_10157093528653155_230728039732871168_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=_CW880ETVdEAQm73_iaKKm8KjGClqjt3Q6AXklUZvNH740x0uSxFERSOg&_nc_ht=scontent-cdt1-1.xx&oh=0e8d408f0746da4dd128da6c026ac0ea&oe=5E87B955", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157093461858155&id=252306033154", "link": null} +{"post_id": "10157091238133155", "text": "Amici emiliani e romagnoli, gioved\u00ec sera dovete essere con noi al PalaDozza di Bologna (ingresso libero, ma arrivate presto perch\u00e9 saremo in migliaia!).\nMentre gli altri litigano dalla mattina alla sera chiusi\u2026 Altro nei palazzi, noi il 26 gennaio INSIEME possiamo cambiare la Storia, ci state?\nInfo pullman e modulo di adesione per partecipare alla campagna elettorale su\n\ud83d\udce3legaonline.it/emiliaromagna", "post_text": "Amici emiliani e romagnoli, gioved\u00ec sera dovete essere con noi al PalaDozza di Bologna (ingresso libero, ma arrivate presto perch\u00e9 saremo in migliaia!).\nMentre gli altri litigano dalla mattina alla sera chiusi\u2026 Altro nei palazzi, noi il 26 gennaio INSIEME possiamo cambiare la Storia, ci state?\nInfo pullman e modulo di adesione per partecipare alla campagna elettorale su\n\ud83d\udce3legaonline.it/emiliaromagna", "shared_text": "", "time": "2019-11-10 16:59:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/74494670_10157091227918155_2957223100854304768_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=RjgtSmxpgboAQnXFuJAiKh1pi-hrWKTauMpG176J-5Ftqa3sLvgeclyZw&_nc_ht=scontent-cdt1-1.xx&oh=875425d387287023ffa602b0ab0277f8&oe=5E8B18C1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157091238133155&id=252306033154", "link": "http://legaonline.it/emiliaromagna?fbclid=IwAR0yHgW8dFSsnqXPDmEJP4t_VRxsT8XaoykBGb1ZFZkCtHoLIfSV2GIUuGU"} +{"post_id": "10157093256573155", "text": "Un saluto dalla Fiera \u201cUsi e Costumi\u201d di Ferrara.\nLunga vita al patrimonio culturale e alle identit\u00e0 locali di tutta Italia! \ud83c\uddee\ud83c\uddf9", "post_text": "Un saluto dalla Fiera \u201cUsi e Costumi\u201d di Ferrara.\nLunga vita al patrimonio culturale e alle identit\u00e0 locali di tutta Italia! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-10 16:01:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157093256573155&id=252306033154", "link": null} +{"post_id": "10157093151978155", "text": "\ufffcRoma nel caos, ormai ne succedono di tutti i colori. Onore alle Forze dell\u2019Ordine, mentre purtroppo gli altri dormono.\n#RaggiDimettiti\nILMESSAGGERO.IT\nRoma, spari a Corso Francia: ladri inseguiti dalla polizia si schiantano contro volante", "post_text": "\ufffcRoma nel caos, ormai ne succedono di tutti i colori. Onore alle Forze dell\u2019Ordine, mentre purtroppo gli altri dormono.\n#RaggiDimettiti", "shared_text": "ILMESSAGGERO.IT\nRoma, spari a Corso Francia: ladri inseguiti dalla polizia si schiantano contro volante", "time": "2019-11-10 15:30:01", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAqlNvpCBZKKYoY&w=476&h=249&url=https%3A%2F%2Fwww.ilmessaggero.it%2Fphotos%2FMED%2F36%2F12%2F4853612_1350_corsofrancia3.jpg&cfs=1&jq=75&sx=0&sy=5&sw=620&sh=324&ext=jpg&_nc_hash=AQBhYAianfmmkHj_", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157093151978155&id=252306033154", "link": "https://www.ilmessaggero.it/roma/news/roma_spari_corso_francia_ladri_polizia_oggi_news-4853612.html?fbclid=IwAR2oAY5y-BZ22IeTPCYatfsUeD4JRwGL2TQsyt_EiDK8SXWZL5a6A74qesk"} +{"post_id": "10157093065578155", "text": "Una stupenda mattinata tra Carpi (Modena) e Ferrara!\nDai che domenica 26 gennaio libereremo finalmente anche questa splendida regione dalla sinistra.\nBasta PD! L'Emilia-Romagna \u00e8 di tutti!\n#26gennaiovotoLega", "post_text": "Una stupenda mattinata tra Carpi (Modena) e Ferrara!\nDai che domenica 26 gennaio libereremo finalmente anche questa splendida regione dalla sinistra.\nBasta PD! L'Emilia-Romagna \u00e8 di tutti!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-10 14:56:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/74649801_10157093065248155_2611981595103461376_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=2_uVVtlokJ4AQmE2sIvaW2a895L_HxBggOi_q-n7Akw4OGp9d9FWSgwTQ&_nc_ht=scontent-cdt1-1.xx&oh=20e74db6636a60c5bc58eb1d7178d1c4&oe=5E81EFFF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157093065578155&id=252306033154", "link": null} +{"post_id": "10157092923378155", "text": "\ud83d\udd34 CHE SCHIFO.\nAltro che schedare le Forze dell\u2019Ordine come vuole il Pd! In Italia servono regole, rispetto e certezza delle pena. E nessun premio ai killer spietati, soprattutto se hanno ucciso donne o uomini\u2026 Altro in divisa!\nhttps://www.ilmessaggero.it/italia/accoltella_uomo_ergastolano_permesso_premio_antonio_cianci_oggi_milano_ultime_notizie-4852172.html", "post_text": "\ud83d\udd34 CHE SCHIFO.\nAltro che schedare le Forze dell\u2019Ordine come vuole il Pd! In Italia servono regole, rispetto e certezza delle pena. E nessun premio ai killer spietati, soprattutto se hanno ucciso donne o uomini\u2026 Altro in divisa!\nhttps://www.ilmessaggero.it/italia/accoltella_uomo_ergastolano_permesso_premio_antonio_cianci_oggi_milano_ultime_notizie-4852172.html", "shared_text": "", "time": "2019-11-10 13:49:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74674441_10157092921103155_829239094004416512_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=6weZaOmE_FMAQlojis5T-afK6lTkchdrKQazf3plO4g8K-l6DQfEg_qGw&_nc_ht=scontent-cdt1-1.xx&oh=e7b1e347ede75922d7b6b9a74dfc9a8b&oe=5E47D06F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157092923378155&id=252306033154", "link": "https://www.ilmessaggero.it/italia/accoltella_uomo_ergastolano_permesso_premio_antonio_cianci_oggi_milano_ultime_notizie-4852172.html?fbclid=IwAR0WSxBf6z51Lwgmen5R87mo653JmelLRGZ_uBUtrOIvZSWH0zhfV8ZQy_8"} +{"post_id": "967417513637129", "text": "Qui Ferrara, con 460 persone a pranzo per sostenere Lucia Borgonzoni.\nBuon appetito Amici!\n#26gennaiovotoLega", "post_text": "Qui Ferrara, con 460 persone a pranzo per sostenere Lucia Borgonzoni.\nBuon appetito Amici!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-10 13:06:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=967417513637129&id=252306033154", "link": null} +{"post_id": "10157092698713155", "text": "Vi presento l\u2019avvocato delle cause perse e dei clandestini. Che vergogna per il nostro Paese. Ma presto l\u2019Italia rialzer\u00e0 la testa!\nDopo l\u2019Umbria anche in Emilia-Romagna e Calabria #26gennaiovotoLega", "post_text": "Vi presento l\u2019avvocato delle cause perse e dei clandestini. Che vergogna per il nostro Paese. Ma presto l\u2019Italia rialzer\u00e0 la testa!\nDopo l\u2019Umbria anche in Emilia-Romagna e Calabria #26gennaiovotoLega", "shared_text": "", "time": "2019-11-10 12:15:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74880644_10157092695383155_4410109927482195968_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=-Vog00AYwYYAQmmzsp-ZQJR3KuJtoeouz3pKXG9YavI_atraHOA_NHYBA&_nc_ht=scontent-cdt1-1.xx&oh=ce0fb8d88575c6858faf057bac5e8cd4&oe=5E4EC660", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157092698713155&id=252306033154", "link": null} +{"post_id": "10157092676583155", "text": "Gli argomenti dei compagni, con bandiera rossa e consueto concertino \"Bella Ciao\"? \"Salvini MERDA\". Che tristiiii!\nTrent'anni fa \u00e8 caduto il muro di Berlino, cadr\u00e0 anche quello dell'Emilia-Romagna!\n#26gennaiovotoLega", "post_text": "Gli argomenti dei compagni, con bandiera rossa e consueto concertino \"Bella Ciao\"? \"Salvini MERDA\". Che tristiiii!\nTrent'anni fa \u00e8 caduto il muro di Berlino, cadr\u00e0 anche quello dell'Emilia-Romagna!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-10 11:29:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2957972117546115&id=252306033154", "link": null} +{"post_id": "270704777166396", "text": "Buona domenica da Carpi (Modena) alla Fiera del cioccolato \ud83d\ude0b. Mi seguite?", "post_text": "Buona domenica da Carpi (Modena) alla Fiera del cioccolato \ud83d\ude0b. Mi seguite?", "shared_text": "", "time": "2019-11-10 10:36:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=270704777166396&id=252306033154", "link": null} +{"post_id": "10157092576323155", "text": "Arrivato a Carpi (Modena), viva le campane! Tra poco in diretta.\n#26gennaiovotoLega", "post_text": "Arrivato a Carpi (Modena), viva le campane! Tra poco in diretta.\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-10 10:35:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157092576323155&id=252306033154", "link": null} +{"post_id": "10157092524413155", "text": "\ud83d\udd34Secondo questo scrittore, io sarei il pericoloso \"maestro\u201d del leader spagnolo di Vox, l\u2019amico Abascal.\nNiente da fare, a sinistra quando non hanno argomenti continuano a cercare razzisti, fascisti e nazisti che non ci sono...\nAncora buona domenica Amici, e forza VOX Espa\u00f1a\ud83d\ude0a", "post_text": "\ud83d\udd34Secondo questo scrittore, io sarei il pericoloso \"maestro\u201d del leader spagnolo di Vox, l\u2019amico Abascal.\nNiente da fare, a sinistra quando non hanno argomenti continuano a cercare razzisti, fascisti e nazisti che non ci sono...\nAncora buona domenica Amici, e forza VOX Espa\u00f1a\ud83d\ude0a", "shared_text": "", "time": "2019-11-10 10:05:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75540011_10157092528668155_1280886799605956608_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=VUZ48Fp5Mb4AQn6hH63N428CoRKW3JX8qOC4Fs6z0xweCkWbHVywOaZag&_nc_ht=scontent-cdt1-1.xx&oh=a2844b53bc9e799930dab1fd71c28f80&oe=5E8AFC6F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157092524413155&id=252306033154", "link": null} +{"post_id": "10157092379343155", "text": "Splendida serata ieri a Reggio Emilia! E oggi si riparte: alle 10.30 a Carpi, dalle 13 a Ferrara, alle 18 a Santarcangelo di Romagna e alle 20 a Bellaria.\nTutti i dettagli nella sezione Eventi.\nMentre il Pd litiga, noi costruiamo il Futuro di questa splendida regione da liberare!\n#26gennaiovotoLega", "post_text": "Splendida serata ieri a Reggio Emilia! E oggi si riparte: alle 10.30 a Carpi, dalle 13 a Ferrara, alle 18 a Santarcangelo di Romagna e alle 20 a Bellaria.\nTutti i dettagli nella sezione Eventi.\nMentre il Pd litiga, noi costruiamo il Futuro di questa splendida regione da liberare!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-10 09:30:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72139359_10157092372203155_3406148467205079040_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=gExFNAUowXkAQnO0F5SRoC_ETnaIJiVyE8joyS_Yo5pgU4Ys6v3t35EfA&_nc_ht=scontent-cdt1-1.xx&oh=52757604277559260f3afda2fd707fef&oe=5E87A42D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157092379343155&id=252306033154", "link": null} +{"post_id": "10157091107118155", "text": "Chi si ferma \u00e8 perduto! \u263a\ufe0f\n#Eicma2019", "post_text": "Chi si ferma \u00e8 perduto! \u263a\ufe0f\n#Eicma2019", "shared_text": "", "time": "2019-11-10 08:39:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74185055_10157091065993155_5549824235855151104_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=K0g-xlfvNy0AQnJc3MjTNR8Os3GNJo3VpVFLv8RS8FiH7IzKIE7yoHC0A&_nc_ht=scontent-cdt1-1.xx&oh=4d70e2b0b81aef813cfcc642fd94c66b&oe=5E7F33D6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157091107118155&id=252306033154", "link": null} +{"post_id": "10157091028408155", "text": "Buongiorno e buona domenica Amici!", "post_text": "Buongiorno e buona domenica Amici!", "shared_text": "", "time": "2019-11-10 07:30:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74701545_10157091027288155_5529372190002118656_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=5yyu5Ylv6aIAQl5YL7l-9yZVv9yWDi2VErkFBOFHhR4SfT8j0toTuWbXQ&_nc_ht=scontent-cdt1-1.xx&oh=dfdbf84b374a44956e010834a26e4df4&oe=5E457A63", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157091028408155&id=252306033154", "link": null} +{"post_id": "10157091119418155", "text": "L'ipocrisia della sinistra non ha confini, ma gli Italiani non la sopportano. Buonanotte Amici, sapete qual \u00e8 il segreto?\nAl loro odio, al loro disprezzo, alla loro spocchia rispondere col sorriso, la determinazione, la forza delle nostre buone idee.", "post_text": "L'ipocrisia della sinistra non ha confini, ma gli Italiani non la sopportano. Buonanotte Amici, sapete qual \u00e8 il segreto?\nAl loro odio, al loro disprezzo, alla loro spocchia rispondere col sorriso, la determinazione, la forza delle nostre buone idee.", "shared_text": "", "time": "2019-11-09 23:33:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p261x260/75339649_10157091111168155_6391105245631479808_o.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=AU-Kim4EYo0AQkL2nwwRA8NOEv6_38jYMhwu12JzAVYIK6kyAIMj6nToA&_nc_ht=scontent-cdt1-1.xx&oh=dbd266d581eaf75aa56de52a193fcde2&oe=5E42E41D", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157091119418155&id=252306033154", "link": null} +{"post_id": "10157091123958155", "text": "Gnocco fritto, tigelle, erbazzone e lambrusco, saluti da Reggio Emilia\ud83d\ude0a", "post_text": "Gnocco fritto, tigelle, erbazzone e lambrusco, saluti da Reggio Emilia\ud83d\ude0a", "shared_text": "", "time": "2019-11-09 22:24:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75418231_10157091123883155_6428253006185103360_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=cUZZDJ6Ti40AQlF-hETdRZwNM59xYDsgbbq1OTG9l0zrmeeLiM0xN37WQ&_nc_ht=scontent-cdt1-1.xx&oh=08e02be933d5a954e8da9fbb8c9d90ef&oe=5E7BB44F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157091123958155&id=252306033154", "link": null} +{"post_id": "10157090967593155", "text": "Oggi a Polesine Parmense alla \"November Porc\", non il luogo ideale per seguire la dieta! \ud83d\ude07 Viva la Bassa e viva il culatello di Zibello! \ud83c\uddee\ud83c\uddf9", "post_text": "Oggi a Polesine Parmense alla \"November Porc\", non il luogo ideale per seguire la dieta! \ud83d\ude07 Viva la Bassa e viva il culatello di Zibello! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-09 21:18:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=464751160685103&id=252306033154", "link": null} +{"post_id": "10157090727253155", "text": "Spettacolo a Reggio Emilia, questi sono i sondaggi che contano!\nL'aria \u00e8 ottima, Amici. Meno di 80 giorni al voto, se ci impegniamo tutti il 26 gennaio anche in Emilia-Romagna faremo un bel \"ciao-ciao\" al PD!\n#26gennaiovotoLega", "post_text": "Spettacolo a Reggio Emilia, questi sono i sondaggi che contano!\nL'aria \u00e8 ottima, Amici. Meno di 80 giorni al voto, se ci impegniamo tutti il 26 gennaio anche in Emilia-Romagna faremo un bel \"ciao-ciao\" al PD!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-09 20:13:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157090727253155&id=252306033154", "link": null} +{"post_id": "419164882341408", "text": "In diretta da Reggio Emilia con Lucia Borgonzoni, seguite anche voi! #26gennaiovotoLega", "post_text": "In diretta da Reggio Emilia con Lucia Borgonzoni, seguite anche voi! #26gennaiovotoLega", "shared_text": "", "time": "2019-11-09 19:27:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=419164882341408&id=252306033154", "link": null} +{"post_id": "10157090641088155", "text": "Video da Reggio Emilia, guardate quanta bella gente! Sto arrivando!\n#26gennaiovotoLega", "post_text": "Video da Reggio Emilia, guardate quanta bella gente! Sto arrivando!\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-09 19:19:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157090641088155&id=252306033154", "link": null} +{"post_id": "10157090235163155", "text": "Assai prezioso il contributo di questo \u201cmigrante\u201d alla crescita della nostra societ\u00e0...\nILGIORNALE.IT\nEcuadoregno si masturba su bus e aggredisce poliziotti con coltello", "post_text": "Assai prezioso il contributo di questo \u201cmigrante\u201d alla crescita della nostra societ\u00e0...", "shared_text": "ILGIORNALE.IT\nEcuadoregno si masturba su bus e aggredisce poliziotti con coltello", "time": "2019-11-09 19:00:52", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBgNbsXA3dxiJJo&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F10%2F23%2F1571824961-bus-923199-960-720.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQDEVqO0yQzG3TSE", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157090235163155&id=252306033154", "link": "http://www.ilgiornale.it/news/cronache/ecuadoregno-si-masturba-su-bus-e-aggredisce-poliziotti-1781756.html?mobile_detect=false&fbclid=IwAR117uFqDsz_bG-RWq5o9cb9MqjlXLi2XyRsno95QTPDxZqTle0bekU_QJY"} +{"post_id": "10157090508093155", "text": "Un saluto anche dal Gruppo Alpini \"Terre del Po\"! \u263a\ufe0f\nQui alla fiera di Polesine Parmense, dedicata ai prodotti del maiale e ai sapori straordinari di questa parte di terra emiliana, tanto entusiasmo e vita vera! Viva le nostre tradizioni: comprare e mangiare italiano \u00e8 un atto politico e un atto d'amore per il nostro Paese!", "post_text": "Un saluto anche dal Gruppo Alpini \"Terre del Po\"! \u263a\ufe0f\nQui alla fiera di Polesine Parmense, dedicata ai prodotti del maiale e ai sapori straordinari di questa parte di terra emiliana, tanto entusiasmo e vita vera! Viva le nostre tradizioni: comprare e mangiare italiano \u00e8 un atto politico e un atto d'amore per il nostro Paese!", "shared_text": "", "time": "2019-11-09 18:25:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/74666295_10157090473858155_4520629039555149824_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=bIvE81esG3IAQlgA1XHUmlwfLqC2U24EVT43vMwbZdWW0WYNbcJG8Az9A&_nc_ht=scontent-cdt1-1.xx&oh=ccc6e61e06904fbeda43562345a9ca56&oe=5E801B11", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157090508093155&id=252306033154", "link": null} +{"post_id": "512490392934630", "text": "Qui Polesine Parmense (Parma) alla fiera dei salumi, state con noi\ud83d\ude0a\n#26gennaiovotoLega", "post_text": "Qui Polesine Parmense (Parma) alla fiera dei salumi, state con noi\ud83d\ude0a\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-09 17:29:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=512490392934630&id=252306033154", "link": null} +{"post_id": "10157089904488155", "text": "Bella iniziativa!\nVedrete che anche questo Natale ci sar\u00e0 invece chi si vergogner\u00e0 delle nostre tradizioni.\nILPICCOLO.GELOCAL.IT\nIl sindaco Cisint dona un presepe a tutte le scuole di Monfalcone", "post_text": "Bella iniziativa!\nVedrete che anche questo Natale ci sar\u00e0 invece chi si vergogner\u00e0 delle nostre tradizioni.", "shared_text": "ILPICCOLO.GELOCAL.IT\nIl sindaco Cisint dona un presepe a tutte le scuole di Monfalcone", "time": "2019-11-09 16:30:13", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCmqGaWSc_I_Tiq&w=476&h=249&url=https%3A%2F%2Filpiccolo.gelocal.it%2Fimage%2Fcontentid%2Fpolicy%3A1.37869461%3A1573122958%2Fimage.jpg%3Ff%3Ddetail_558%26h%3D720%26w%3D1280%26%24p%24f%24h%24w%3Da952e14&cfs=1&jq=75&sx=0&sy=11&sw=847&sh=443&ext=jpg&_nc_hash=AQBgu8d9t6Hh5mUq", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157089904488155&id=252306033154", "link": "https://ilpiccolo.gelocal.it/trieste/cronaca/2019/11/07/news/il-sindaco-cisint-dona-un-presepe-a-tutte-le-scuole-di-monfalcone-1.37869464?ref=fbfpi&fbclid=IwAR1G5c3vFJ6tNUmnQ1zS4U5Qi3D3vDG2IPntF2L-4PO8HQEnvEHgRXVAxPI"} +{"post_id": "10157089965248155", "text": "Bel pomeriggio all\u2019Eicma di Milano, un\u2019eccellenza italiana invidiata in tutto il mondo, in mezzo a tanti appassionati di due ruote \ud83d\ude0a", "post_text": "Bel pomeriggio all\u2019Eicma di Milano, un\u2019eccellenza italiana invidiata in tutto il mondo, in mezzo a tanti appassionati di due ruote \ud83d\ude0a", "shared_text": "", "time": "2019-11-09 15:30:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75339693_10157089963828155_9050424870759825408_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=rbRLQtmBRu8AQlZ2PSC5YE93U41J_CB5IC9DXfvFuaSJSywkdj6dkq6qQ&_nc_ht=scontent-cdt1-1.xx&oh=af129cddcce6a21bb6e510e749eb325d&oe=5E7B8A71", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157089965248155&id=252306033154", "link": null} +{"post_id": "10157089888908155", "text": "Suggerimenti per l\u2019ex avvocato del popolo?", "post_text": "Suggerimenti per l\u2019ex avvocato del popolo?", "shared_text": "", "time": "2019-11-09 14:29:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75627560_10157089887483155_2050097622500245504_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=5FElyjZPqNIAQku1ZWYkP1pynl_gdD0A4LxR38ycVvFHmHEh0OKS8YxJA&_nc_ht=scontent-cdt1-1.xx&oh=108bcae033af9952da0e714833bc97cd&oe=5E417CDF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157089888908155&id=252306033154", "link": null} +{"post_id": "2156798304626588", "text": "Ora a Milano alla Fiera del ciclo e motociclo, uno spettacolo! Seguitemi!", "post_text": "Ora a Milano alla Fiera del ciclo e motociclo, uno spettacolo! Seguitemi!", "shared_text": "", "time": "2019-11-09 13:10:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2156798304626588&id=252306033154", "link": null} +{"post_id": "10157089689293155", "text": "Alle elezioni spagnole di questa domenica mi auguro di cuore un grande risultato per l\u2019amico Santiago Abascal e per VOX Espa\u00f1a! Forza!\nUn abbraccio dall\u2019Italia \ud83c\uddee\ud83c\uddf9\ud83c\uddea\ud83c\uddf8", "post_text": "Alle elezioni spagnole di questa domenica mi auguro di cuore un grande risultato per l\u2019amico Santiago Abascal e per VOX Espa\u00f1a! Forza!\nUn abbraccio dall\u2019Italia \ud83c\uddee\ud83c\uddf9\ud83c\uddea\ud83c\uddf8", "shared_text": "", "time": "2019-11-09 13:05:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75580497_10157089688173155_6186306537644883968_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=H7Yy2pfsVq8AQmQRmzvaayOGCB3n0IwVtt4X4qtd-ffuADjAJEH_ERa5g&_nc_ht=scontent-cdt1-1.xx&oh=7edf4226754bf867ac1203c7c1c75f97&oe=5E41F80F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157089689293155&id=252306033154", "link": null} +{"post_id": "10157089578238155", "text": "Dai, \u00e8 quasi simpatico...\nGli regaler\u00f2 dei cioccolatini per addolcire le sue giornate\ud83d\ude09\nAmici carpigiani noi ci vediamo domani alle 10, con il sorriso e senza rancore \ud83d\ude0a", "post_text": "Dai, \u00e8 quasi simpatico...\nGli regaler\u00f2 dei cioccolatini per addolcire le sue giornate\ud83d\ude09\nAmici carpigiani noi ci vediamo domani alle 10, con il sorriso e senza rancore \ud83d\ude0a", "shared_text": "", "time": "2019-11-09 12:00:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75392652_10157089574968155_7814136981490761728_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=bJwgzfAx-8gAQkx0Rku524vDKNC24uroT4s6k6R4J1LISP398k6w9iaIw&_nc_ht=scontent-cdt1-1.xx&oh=46638789e4cc26b2db1b2fb4c9f6c660&oe=5E807DE9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157089578238155&id=252306033154", "link": null} +{"post_id": "10157087304773155", "text": "\"In Italia c'\u00e8 un'emergenza razzismo per colpa di Salvini\" \ud83e\udd26\u200d\u2642\nMa questo c'\u00e8 o ci fa?", "post_text": "\"In Italia c'\u00e8 un'emergenza razzismo per colpa di Salvini\" \ud83e\udd26\u200d\u2642\nMa questo c'\u00e8 o ci fa?", "shared_text": "", "time": "2019-11-09 10:38:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157087304773155&id=252306033154", "link": null} +{"post_id": "10157089369378155", "text": "Buongiorno Amici!\nAlle 12 sar\u00f2 all\u2019Eicma in Fiera a Milano e poi sabato tutto emiliano: alle 16 a Polesine Parmense (PR) e alle 19 in centro a Reggio. Se siete in zona vi aspetto, prontissimi alla battaglia per liberare l\u2019Emilia-Romagna dopo 50 anni di sinistra.\n#26gennaiovotoLega\nREGGIOSERA.IT\nSalvini a Reggio per lanciare la Borgonzoni - Reggiosera", "post_text": "Buongiorno Amici!\nAlle 12 sar\u00f2 all\u2019Eicma in Fiera a Milano e poi sabato tutto emiliano: alle 16 a Polesine Parmense (PR) e alle 19 in centro a Reggio. Se siete in zona vi aspetto, prontissimi alla battaglia per liberare l\u2019Emilia-Romagna dopo 50 anni di sinistra.\n#26gennaiovotoLega", "shared_text": "REGGIOSERA.IT\nSalvini a Reggio per lanciare la Borgonzoni - Reggiosera", "time": "2019-11-09 09:57:28", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDpBvFsckAeBCwR&w=476&h=249&url=https%3A%2F%2Fwww.reggiosera.it%2Fphotogallery_new%2Fimages%2F2019%2F11%2Fsalvini-19198.660x368.jpg&cfs=1&jq=75&sx=0&sy=8&sw=660&sh=345&ext=jpg&_nc_hash=AQDkwOLE2o5h3e2n", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157089369378155&id=252306033154", "link": "https://www.reggiosera.it/2019/11/salvini-a-reggio-per-lanciare-la-borgonzoni/259066/?fbclid=IwAR0RlFCUsgqgejjYtl4U03RxuSG9NZLbj3oKpS-t_pjGGpfZa7zGcvkIu2w"} +{"post_id": "10157089217838155", "text": "Trent\u2019anni fa cadeva il Muro di Berlino.\nMai pi\u00f9 comunismo, mai pi\u00f9 dittatura e violenza: viva la Libert\u00e0!", "post_text": "Trent\u2019anni fa cadeva il Muro di Berlino.\nMai pi\u00f9 comunismo, mai pi\u00f9 dittatura e violenza: viva la Libert\u00e0!", "shared_text": "", "time": "2019-11-09 08:42:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74634665_10157089217028155_7132455612109029376_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=fMQ7hylRZrMAQltWS9BMJwZNXQslH7ymVjFwNkcJVo_QVO2SrxEpgTyqw&_nc_ht=scontent-cdt1-1.xx&oh=5718fdf3c470ee9819bd12d5f776da64&oe=5E79514F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157089217838155&id=252306033154", "link": null} +{"post_id": "10157088016828155", "text": "Fred Bongusto, simbolo di un\u2019Italia che sognava e cresceva.\nCi mancherai.", "post_text": "Fred Bongusto, simbolo di un\u2019Italia che sognava e cresceva.\nCi mancherai.", "shared_text": "", "time": "2019-11-08 23:41:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157088016828155&id=252306033154", "link": null} +{"post_id": "10157087121243155", "text": "\u26a0\ufe0f Il governo sbarchi, tasse e manette prende in giro le nostre Forze dell\u2019Ordine.\nConte-Di Maio-Renzi mettono circa 60 milioni di euro sul riordino delle carriere, contro i 100 previsti con la Lega al\u2026 Altro governo, ma finanzia quella cifra tagliando i fondi ai ministeri, a partire da Interno, Giustizia e Difesa\u2026\nCon una mano tolgono, con l\u2019altra ridanno!\nEnnesima TRUFFA e clamorosa umiliazione per le donne e gli uomini in divisa. Non vediamo l\u2019ora di tornare al voto, vincere e restituire dignit\u00e0 alle Forze dell\u2019Ordine.\nAltro che schedare i poliziotti\u2026", "post_text": "\u26a0\ufe0f Il governo sbarchi, tasse e manette prende in giro le nostre Forze dell\u2019Ordine.\nConte-Di Maio-Renzi mettono circa 60 milioni di euro sul riordino delle carriere, contro i 100 previsti con la Lega al\u2026 Altro governo, ma finanzia quella cifra tagliando i fondi ai ministeri, a partire da Interno, Giustizia e Difesa\u2026\nCon una mano tolgono, con l\u2019altra ridanno!\nEnnesima TRUFFA e clamorosa umiliazione per le donne e gli uomini in divisa. Non vediamo l\u2019ora di tornare al voto, vincere e restituire dignit\u00e0 alle Forze dell\u2019Ordine.\nAltro che schedare i poliziotti\u2026", "shared_text": "", "time": "2019-11-08 21:39:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74673170_10157087120698155_660824836393664512_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=Q_DpA-yTjnIAQne4ymmNFuPCworQizy3YpFkePTsGdsfnJIqlVbA_HHgw&_nc_ht=scontent-cdt1-1.xx&oh=68e36cb1dd3d5dd4ed99ddcc75c06e2a&oe=5E467891", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157087121243155&id=252306033154", "link": null} +{"post_id": "2690412454344049", "text": "\ud83d\udd34 Caro poltronaro, chi semina bugie raccoglie fischi, oggi a Taranto, domani in tutta Italia.", "post_text": "\ud83d\udd34 Caro poltronaro, chi semina bugie raccoglie fischi, oggi a Taranto, domani in tutta Italia.", "shared_text": "", "time": "2019-11-08 20:03:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2690412454344049&id=252306033154", "link": null} +{"post_id": "10157087266153155", "text": "Amici emiliani e romagnoli, questo fine settimana torno da voi!\nCi vediamo domani alle 16 a Polesine Parmense (Parma) e alle 19 a Reggio Emilia. Poi vi aspetto domenica a Carpi (Modena) alle 10, a Ferrara dalle\u2026 Altro 13, a Santarcangelo di Romagna (Rimini) alle 18 e infine a Bellaria Igea Marina (Rimini) alle 20.\nAvanti tutta! #26gennaiovotoLega", "post_text": "Amici emiliani e romagnoli, questo fine settimana torno da voi!\nCi vediamo domani alle 16 a Polesine Parmense (Parma) e alle 19 a Reggio Emilia. Poi vi aspetto domenica a Carpi (Modena) alle 10, a Ferrara dalle\u2026 Altro 13, a Santarcangelo di Romagna (Rimini) alle 18 e infine a Bellaria Igea Marina (Rimini) alle 20.\nAvanti tutta! #26gennaiovotoLega", "shared_text": "", "time": "2019-11-08 19:30:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75567328_10157087252878155_1183504536497553408_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=uCvVvD8dg8sAQmdeUfFyjFqScXs28jATCOandJntivToIGqeN8K__vk_Q&_nc_ht=scontent-cdt1-1.xx&oh=325e789eda5e58255bdaa8554d5193d1&oe=5E40F2BD", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157087266153155&id=252306033154", "link": null} +{"post_id": "10157087215378155", "text": "\"Ma come fa a dirmi che non c'entra questo governo?\"\nPorro rifila una sonora lezione al viceministro del Pd sulla vergognosa faccenda dell'ex Ilva. Da ascoltare.", "post_text": "\"Ma come fa a dirmi che non c'entra questo governo?\"\nPorro rifila una sonora lezione al viceministro del Pd sulla vergognosa faccenda dell'ex Ilva. Da ascoltare.", "shared_text": "", "time": "2019-11-08 18:15:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157087215378155&id=252306033154", "link": null} +{"post_id": "10157087081103155", "text": "Per colpa del governo delle tasse anche il latte coster\u00e0 di pi\u00f9... Roba da matti.\nPrima se ne vanno meglio \u00e8.", "post_text": "Per colpa del governo delle tasse anche il latte coster\u00e0 di pi\u00f9... Roba da matti.\nPrima se ne vanno meglio \u00e8.", "shared_text": "", "time": "2019-11-08 16:59:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74643690_10157087074253155_926323831843323904_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=d9MFFqmRVEMAQnAyoRVcbQAunicYUPt-wu1EGfDPrHRvQYMkxKotvMJfQ&_nc_ht=scontent-cdt1-1.xx&oh=e2ae75a34fddfdb4a7b276e3efd50e30&oe=5E4B71C7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157087081103155&id=252306033154", "link": null} +{"post_id": "10157086535813155", "text": "Altro che cancellare i Decreti sicurezza come vorrebbe il governo abusivo: A CASA a calci questi delinquenti!\nCASTEDDUONLINE.IT\nQuartese accoltellato per 25 euro in via Porcile a Cagliari: arrestati due marocchini - Casteddu On line", "post_text": "Altro che cancellare i Decreti sicurezza come vorrebbe il governo abusivo: A CASA a calci questi delinquenti!", "shared_text": "CASTEDDUONLINE.IT\nQuartese accoltellato per 25 euro in via Porcile a Cagliari: arrestati due marocchini - Casteddu On line", "time": "2019-11-08 15:46:02", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQA3pHPlXoTfKpzC&w=476&h=249&url=https%3A%2F%2Fstatic-www.castedduonline.it%2Fwp-content%2F2019%2F11%2F19.jpg&cfs=1&jq=75&sx=0&sy=114&sw=1528&sh=799&ext=jpg&_nc_hash=AQBeYIjOjlxTbUOt", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157086535813155&id=252306033154", "link": "https://www.castedduonline.it/quartese-accoltellato-per-25-euro-in-via-porcile-a-cagliari-arrestati-due-marocchini/?fbclid=IwAR0ngOBdMpbTWhLW8OB6MX9jB7pDIvGnd4uixyqb-uJF2QXNqR2ARinbZ2Y"} +{"post_id": "10157086701093155", "text": "Un ultimo saluto ai tre angeli Marco, Matteo e Antonino e un abbraccio commosso all\u2019intero Corpo dei Vigili del Fuoco.\nL'Italia piange con Voi.", "post_text": "Un ultimo saluto ai tre angeli Marco, Matteo e Antonino e un abbraccio commosso all\u2019intero Corpo dei Vigili del Fuoco.\nL'Italia piange con Voi.", "shared_text": "", "time": "2019-11-08 14:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157086701093155&id=252306033154", "link": null} +{"post_id": "10157086611573155", "text": "Ciao Firenze, a presto! Un saluto dal treno, Amici e buon pranzo!", "post_text": "Ciao Firenze, a presto! Un saluto dal treno, Amici e buon pranzo!", "shared_text": "", "time": "2019-11-08 13:33:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76616463_10157086610613155_8043461434501234688_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=pTsFVc07H4wAQmiDN7EtgI9qTfSbj2CUn8mVYbHjYNCBvWdbwYJB4pQlA&_nc_ht=scontent-cdt1-1.xx&oh=8f9aae5ca432f9f1e3af03fc8c74900c&oe=5E7C2BFF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157086611573155&id=252306033154", "link": null} +{"post_id": "10157086524968155", "text": "Ecco come attaccano il senatore della Lega Tony Iwobi. Ma... Il RAZZISMO di sinistra non \u00e8 razzismo... Ridicoli!", "post_text": "Ecco come attaccano il senatore della Lega Tony Iwobi. Ma... Il RAZZISMO di sinistra non \u00e8 razzismo... Ridicoli!", "shared_text": "", "time": "2019-11-08 12:40:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74788560_10157086523793155_2764323174559514624_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=mJOfaa4Ri5UAQk1dk0ugzhIV8tGuuvkEKslEFu25oYIDUyO9pr2VxRrAQ&_nc_ht=scontent-cdt1-1.xx&oh=9a805afcf4ea20c9d86683a663727b1c&oe=5E4B0497", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157086524968155&id=252306033154", "link": null} +{"post_id": "10157084647998155", "text": "Fiera di San Martino vietata alla Lega? Bella idea di democrazia...\nLa Romagna e l\u2019Emilia sono di tutti, viva la Libert\u00e0 \ud83d\ude0a", "post_text": "Fiera di San Martino vietata alla Lega? Bella idea di democrazia...\nLa Romagna e l\u2019Emilia sono di tutti, viva la Libert\u00e0 \ud83d\ude0a", "shared_text": "", "time": "2019-11-08 11:59:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157084647998155&id=252306033154", "link": null} +{"post_id": "846903169062689", "text": "Buona giornata da Firenze, state con me! \ud83c\uddee\ud83c\uddf9", "post_text": "Buona giornata da Firenze, state con me! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-08 11:06:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=846903169062689&id=252306033154", "link": null} +{"post_id": "10157086322508155", "text": "Buongiorno da Firenze, Amici.\nTra poco vi aggiorno in diretta sul progetto della Lega per la elezioni in Toscana della prossima primavera. Anche qui possiamo fare la Storia!", "post_text": "Buongiorno da Firenze, Amici.\nTra poco vi aggiorno in diretta sul progetto della Lega per la elezioni in Toscana della prossima primavera. Anche qui possiamo fare la Storia!", "shared_text": "", "time": "2019-11-08 10:55:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76638540_10157086322043155_5444595020252315648_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=pchPuJq5UrgAQkSKF2RiNqGGP3jIuLnjMMF2p4WUFFVU4XP4KmdWGY3sw&_nc_ht=scontent-cdt1-1.xx&oh=54f23ee9dcd7595f9dbcfe1fc4a0c230&oe=5E83C3A0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157086322508155&id=252306033154", "link": null} +{"post_id": "10157084593238155", "text": "Se la signora Fornero mi attacca sempre, vuol dire che stiamo lavorando bene\ud83d\ude0a", "post_text": "Se la signora Fornero mi attacca sempre, vuol dire che stiamo lavorando bene\ud83d\ude0a", "shared_text": "", "time": "2019-11-08 10:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157084593238155&id=252306033154", "link": null} +{"post_id": "10157086147883155", "text": "Questo \u201cartista\u201d spera io venga accolto domenica a Santarcangelo con \u201cgrosse secchiate di merda\u201d (!).\nA differenza di una sinistra che odia, noi parliamo di futuro, di valori, di rispetto, di lavoro, bellezza e sicurezza.\nViva la Romagna! \u2764\ufe0f", "post_text": "Questo \u201cartista\u201d spera io venga accolto domenica a Santarcangelo con \u201cgrosse secchiate di merda\u201d (!).\nA differenza di una sinistra che odia, noi parliamo di futuro, di valori, di rispetto, di lavoro, bellezza e sicurezza.\nViva la Romagna! \u2764\ufe0f", "shared_text": "", "time": "2019-11-08 09:32:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75429372_10157086142313155_1740483407340634112_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=iABwjC2ei9IAQkonayOa3_8oeUukphLFU5m7W9Fs6h8jePMKhczdm-oOw&_nc_ht=scontent-cdt1-1.xx&oh=579543fa22d21bac2134743b0c309d3b&oe=5E3E422E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157086147883155&id=252306033154", "link": null} +{"post_id": "10157084281928155", "text": "ONORE alle donne e uomini delle Forze dell\u2019Ordine e dell\u2019Esercito.\nBuona giornata Amici \ud83c\uddee\ud83c\uddf9", "post_text": "ONORE alle donne e uomini delle Forze dell\u2019Ordine e dell\u2019Esercito.\nBuona giornata Amici \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-08 08:30:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75204642_10157084281853155_5628796619865456640_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=lejY3InzVjMAQkLgaAkA7NgmCy9A-K3Bm8FufXPEqftyftnrqLts7yXNQ&_nc_ht=scontent-cdt1-1.xx&oh=e54cb82138fa06cf7586f7b2d933f249&oe=5E4648F3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157084281928155&id=252306033154", "link": null} +{"post_id": "10157084244033155", "text": "Io e Macchia vi auguriamo una notte serena \ud83d\ude0a\ud83d\udc34", "post_text": "Io e Macchia vi auguriamo una notte serena \ud83d\ude0a\ud83d\udc34", "shared_text": "", "time": "2019-11-07 23:46:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/73372371_10157084244008155_6671539422917296128_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=Shq3MSr0vkQAQlQ6uqdiZ9YOBeJFKjYP188jMtqH3brrXL8PR6YGZpagQ&_nc_ht=scontent-cdt1-1.xx&oh=fef529186fa77a64117af3ee9d390aae&oe=5E8CE848", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157084244033155&id=252306033154", "link": null} +{"post_id": "10157083368443155", "text": "\"Io non mi sento un eroe, mi sento una persona che spera di avere l'opportunit\u00e0 di salvare la gente\".\nCommovente testimonianza di Marco, uno dei tre Vigili del Fuoco scomparsi ingiustamente marted\u00ec ad\u2026 Altro Alessandria.\nEterna riconoscenza a chi mette in gioco la propria vita per salvare quelle altrui e una preghiera per questi tre angeli, con l'augurio che sia presto fatta giustizia.", "post_text": "\"Io non mi sento un eroe, mi sento una persona che spera di avere l'opportunit\u00e0 di salvare la gente\".\nCommovente testimonianza di Marco, uno dei tre Vigili del Fuoco scomparsi ingiustamente marted\u00ec ad\u2026 Altro Alessandria.\nEterna riconoscenza a chi mette in gioco la propria vita per salvare quelle altrui e una preghiera per questi tre angeli, con l'augurio che sia presto fatta giustizia.", "shared_text": "", "time": "2019-11-07 22:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157083368443155&id=252306033154", "link": null} +{"post_id": "446592735996606", "text": "Un po\u2019 di verit\u00e0 sul caso Ilva, drammatico non solo per Taranto ma per l\u2019intera economia italiana. Se avete 5 minuti da dedicare, ecco l\u2019intervento della Lega oggi alla Camera.", "post_text": "Un po\u2019 di verit\u00e0 sul caso Ilva, drammatico non solo per Taranto ma per l\u2019intera economia italiana. Se avete 5 minuti da dedicare, ecco l\u2019intervento della Lega oggi alla Camera.", "shared_text": "", "time": "2019-11-07 21:00:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=446592735996606&id=252306033154", "link": null} +{"post_id": "10157084000378155", "text": "Vengo criticato per aver attaccato la Rackete? In un Paese normale una che mette a rischio la vita di militari italiani sarebbe stata punita con la GALERA. Punto.", "post_text": "Vengo criticato per aver attaccato la Rackete? In un Paese normale una che mette a rischio la vita di militari italiani sarebbe stata punita con la GALERA. Punto.", "shared_text": "", "time": "2019-11-07 20:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157084000378155&id=252306033154", "link": null} +{"post_id": "10157084492983155", "text": "Ne sono consapevole: la mia tecnica \u00e8 molto migliorabile, ma dovevo provarci \u263a\nViva Fieracavalli Verona (pensate, si svolge dal 1898!).", "post_text": "Ne sono consapevole: la mia tecnica \u00e8 molto migliorabile, ma dovevo provarci \u263a\nViva Fieracavalli Verona (pensate, si svolge dal 1898!).", "shared_text": "", "time": "2019-11-07 19:01:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75247438_10157084492418155_2546503199473270784_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=yf492h5FXZAAQmRX75t57ENJXE-TCLdv_vlVd-QXaNhD6gD6ADv2V350A&_nc_ht=scontent-cdt1-1.xx&oh=855606e45f706e447586478b8894b877&oe=5E422EE2", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157084492983155&id=252306033154", "link": null} +{"post_id": "2243043742661677", "text": "In diretta da Bologna con Lucia Borgonzoni, in vista dell\u2019appuntamento di gioved\u00ec prossimo, 14 novembre, alle 20.30 al Paladozza!\nAmici emiliani e romagnoli, ci sarete?\nInfo: legaonline.it/emiliaromagna - emiliaromagna@legaonline.it\n#26gennaiovotoLega", "post_text": "In diretta da Bologna con Lucia Borgonzoni, in vista dell\u2019appuntamento di gioved\u00ec prossimo, 14 novembre, alle 20.30 al Paladozza!\nAmici emiliani e romagnoli, ci sarete?\nInfo: legaonline.it/emiliaromagna - emiliaromagna@legaonline.it\n#26gennaiovotoLega", "shared_text": "", "time": "2019-11-07 18:12:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2243043742661677&id=252306033154", "link": "http://legaonline.it/emiliaromagna?fbclid=IwAR2F623ltSAOvfwIVVEg37M4p6zrTEmns1GZYkbGNfnL_bq25pk9IMLvc9Q"} +{"post_id": "10157084270933155", "text": "Togliere l'acciaio dall'Italia sarebbe una FOLLIA.\nAl governo abbiamo degli incapaci, ma come Lega daremo il sangue per Taranto e perch\u00e9 non salti neanche un posto di lavoro per gli operai dell'ex Ilva.", "post_text": "Togliere l'acciaio dall'Italia sarebbe una FOLLIA.\nAl governo abbiamo degli incapaci, ma come Lega daremo il sangue per Taranto e perch\u00e9 non salti neanche un posto di lavoro per gli operai dell'ex Ilva.", "shared_text": "", "time": "2019-11-07 17:42:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75097185_10157084269828155_7285968180038598656_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=HFaOSmwRQYsAQlXVnGLinagyjrjD-O5DmGkXPlxwUmUBGhtULcK_QipTA&_nc_ht=scontent-cdt1-1.xx&oh=de3142cb06cd1a4be339a77a45eddc8e&oe=5E8BA1C6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157084270933155&id=252306033154", "link": null} +{"post_id": "10157084150313155", "text": "Questo governo di incapaci vuole tagliare perfino 2 MILIONI di euro in tre anni al Fondo Adozioni, roba da matti.\nFare cassa sulla pelle di bambini che hanno perso mamma e pap\u00e0 \u00e8 una scelta incivile e vigliacca, la Lega si batter\u00e0 per evitarlo e dare un futuro a questi bambini.", "post_text": "Questo governo di incapaci vuole tagliare perfino 2 MILIONI di euro in tre anni al Fondo Adozioni, roba da matti.\nFare cassa sulla pelle di bambini che hanno perso mamma e pap\u00e0 \u00e8 una scelta incivile e vigliacca, la Lega si batter\u00e0 per evitarlo e dare un futuro a questi bambini.", "shared_text": "", "time": "2019-11-07 16:50:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/73498023_10157084148188155_6249507638535520256_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=lzZ-frc_EZAAQm1F5Zj0htxn5Jf0iimFGULLVxloBhFmdSPngljCjHU5g&_nc_ht=scontent-cdt1-1.xx&oh=1fe6bdc379343697c34f68ba27a9312b&oe=5E44FDE9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157084150313155&id=252306033154", "link": null} +{"post_id": "2723346927726748", "text": "In diretta dalla FieraCavalli di Verona, seguitemi! \ud83d\udc0e", "post_text": "In diretta dalla FieraCavalli di Verona, seguitemi! \ud83d\udc0e", "shared_text": "", "time": "2019-11-07 15:52:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2723346927726748&id=252306033154", "link": null} +{"post_id": "10157083937293155", "text": "Buon pomeriggio Amici! \ud83d\ude0a\nUn saluto dalla FieraCavalli di Verona, un evento imperdibile che da pi\u00f9 di 120 anni ospita le eccellenze dell'equitazione da tutto il mondo.", "post_text": "Buon pomeriggio Amici! \ud83d\ude0a\nUn saluto dalla FieraCavalli di Verona, un evento imperdibile che da pi\u00f9 di 120 anni ospita le eccellenze dell'equitazione da tutto il mondo.", "shared_text": "", "time": "2019-11-07 15:21:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/74346189_10157083921493155_8132130759449247744_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=qOZJhYvLrssAQlclsadsWS1GUalza5EU6o--zE1ypewdf7rPB5ybF6phA&_nc_ht=scontent-cdt1-1.xx&oh=82ebb8bd7364d05b870aab3fe334f8c1&oe=5E4C06A4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157083937293155&id=252306033154", "link": null} +{"post_id": "10157081532958155", "text": "\"Con la tassa sulla plastica MILIONI di euro di tasse in pi\u00f9, non so cosa faremo, ma sar\u00e0 inevitabile licenziare qualcuno\".\nRoba da matti, pure il latte verr\u00e0 tassato!\nQuesto governo FOLLE massacra gli\u2026 Altro Italiani, toglie lavoro a migliaia di persone e distrugge quelle eccellenze italiane che, fino ad oggi, sono rimaste in piedi nonostante tutto.\nRenzi-Pd-5Stelle sono l\u00ec da due mesi ma ne hanno fatte come fossero anni, ora vediamo di mandarli a casa.", "post_text": "\"Con la tassa sulla plastica MILIONI di euro di tasse in pi\u00f9, non so cosa faremo, ma sar\u00e0 inevitabile licenziare qualcuno\".\nRoba da matti, pure il latte verr\u00e0 tassato!\nQuesto governo FOLLE massacra gli\u2026 Altro Italiani, toglie lavoro a migliaia di persone e distrugge quelle eccellenze italiane che, fino ad oggi, sono rimaste in piedi nonostante tutto.\nRenzi-Pd-5Stelle sono l\u00ec da due mesi ma ne hanno fatte come fossero anni, ora vediamo di mandarli a casa.", "shared_text": "", "time": "2019-11-07 14:56:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081532958155&id=252306033154", "link": null} +{"post_id": "436526453670395", "text": "L\u2019altro giorno uno di sinistra mi ha detto che non bisogna parlare di \u201cPrima gli Italiani\u201d...\nIo sono convinto che sia GIUSTO dare la casa popolare a chi ha diritto, e non a chi arriva domani a Lampedusa. Posso dirlo???\nEcco che cosa ho detto ieri sera su Rete 4 da Mario Giordano, buon pranzo Amici!", "post_text": "L\u2019altro giorno uno di sinistra mi ha detto che non bisogna parlare di \u201cPrima gli Italiani\u201d...\nIo sono convinto che sia GIUSTO dare la casa popolare a chi ha diritto, e non a chi arriva domani a Lampedusa. Posso dirlo???\nEcco che cosa ho detto ieri sera su Rete 4 da Mario Giordano, buon pranzo Amici!", "shared_text": "", "time": "2019-11-07 13:35:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=436526453670395&id=252306033154", "link": null} +{"post_id": "10157083597178155", "text": "Dai balconi dei palazzi di Ostia (Roma) cadono pezzi di CORNICIONE, e l\u00ec sotto ci passa chiunque: mamme, bimbi, nonni...\nA Virg\u00ec... ma ti sembra normale??? #raggidimettiti\nP.s. Se avete voglia rivedete insieme a me su questa pagina, verso le 13.30, l'intervista con Mario Giordano!", "post_text": "Dai balconi dei palazzi di Ostia (Roma) cadono pezzi di CORNICIONE, e l\u00ec sotto ci passa chiunque: mamme, bimbi, nonni...\nA Virg\u00ec... ma ti sembra normale??? #raggidimettiti\nP.s. Se avete voglia rivedete insieme a me su questa pagina, verso le 13.30, l'intervista con Mario Giordano!", "shared_text": "", "time": "2019-11-07 12:53:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157083597178155&id=252306033154", "link": null} +{"post_id": "10157083306923155", "text": "Prima se ne va questo governo di minoranza, senz\u2019anima e abusivo, meglio sar\u00e0 per l\u2019Italia.", "post_text": "Prima se ne va questo governo di minoranza, senz\u2019anima e abusivo, meglio sar\u00e0 per l\u2019Italia.", "shared_text": "", "time": "2019-11-07 12:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157083306923155&id=252306033154", "link": null} +{"post_id": "10157083411958155", "text": "\ud83d\udd34 Torna il Pd al governo, riaprono i centri di accoglienza che avevamo chiuso. Siamo alla follia.\nAltro che business dell'immigrazione, sono sicuro che il 26 gennaio emiliani e romagnoli manderanno a casa questa sinistra dei porti aperti scegliendo un concetto chiaro: PRIMA GLI ITALIANI.\nILGIORNALE.IT\nEmilia, torna il business dei migranti. E riapre centro chiuso da Salvini", "post_text": "\ud83d\udd34 Torna il Pd al governo, riaprono i centri di accoglienza che avevamo chiuso. Siamo alla follia.\nAltro che business dell'immigrazione, sono sicuro che il 26 gennaio emiliani e romagnoli manderanno a casa questa sinistra dei porti aperti scegliendo un concetto chiaro: PRIMA GLI ITALIANI.", "shared_text": "ILGIORNALE.IT\nEmilia, torna il business dei migranti. E riapre centro chiuso da Salvini", "time": "2019-11-07 11:23:43", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBOI9Y4z3AVgzO0&w=422&h=221&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F11%2F07%2F1573117692-centri-accoglienza.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQDQoIhnYqaqWxPz", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157083411958155&id=252306033154", "link": "http://www.ilgiornale.it/news/politica/torna-business-dellaccoglienza-emilia-romagna-1780527.html?fbclid=IwAR0GiuDmjZnEZfyukKOjJKaTDvT_uDYn7dE1hFPBuVPVJdIZX6NUrVkvRmA"} +{"post_id": "1176667649196578", "text": "Qui Roma a piazza Montecitorio insieme a Coldiretti per difendere territorio, raccolti, case e lavoro.", "post_text": "Qui Roma a piazza Montecitorio insieme a Coldiretti per difendere territorio, raccolti, case e lavoro.", "shared_text": "", "time": "2019-11-07 10:35:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1176667649196578&id=252306033154", "link": null} +{"post_id": "10157083198713155", "text": "Vi aspetto questa sera a Bologna alle 18 (Savoia Hotel, via del Pilastro), in vista del grande evento al PalaDozza gioved\u00ec della prossima settimana, 14 novembre alle 20 (ingresso libero fino a esaurimento\u2026 Altro posti, le richieste sono tantissime).\n#26gennaiovotoLega\nP.s. Vuoi dare una mano in Emilia-Romagna? Vai su: legaonline.it/emiliaromagna\nInfo: emiliaromagna@legaonline.it\nBOLOGNATODAY.IT\nRegionali, Salvini in citt\u00e0: il 7 novembre con Borgonzoni al Pilastro", "post_text": "Vi aspetto questa sera a Bologna alle 18 (Savoia Hotel, via del Pilastro), in vista del grande evento al PalaDozza gioved\u00ec della prossima settimana, 14 novembre alle 20 (ingresso libero fino a esaurimento\u2026 Altro posti, le richieste sono tantissime).\n#26gennaiovotoLega\nP.s. Vuoi dare una mano in Emilia-Romagna? Vai su: legaonline.it/emiliaromagna\nInfo: emiliaromagna@legaonline.it", "shared_text": "BOLOGNATODAY.IT\nRegionali, Salvini in citt\u00e0: il 7 novembre con Borgonzoni al Pilastro", "time": "2019-11-07 09:55:44", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDLfz_caPufhWQc&w=476&h=249&url=https%3A%2F%2Fwww.bolognatoday.it%2F%7Emedia%2Fhorizontal-hi%2F13972145214936%2Fsalvini-borgonzoni-4.jpg&cfs=1&jq=75&sx=0&sy=13&sw=1000&sh=523&ext=jpg&_nc_hash=AQB63-QjlMppFxCH", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157083198713155&id=252306033154", "link": "http://legaonline.it/emiliaromagna?fbclid=IwAR2Jqn44X-MGl4VpXHIp-m1awj2A2yg9KW4QodbQAIl0bhp0Ue1pzqlRe1M"} +{"post_id": "10157078382038155", "text": "\u201cHanno aspettato le elezioni in Umbria per far sbarcare la nave Ong\u201d. Due pesi, due misure. Lo riconosce anche un giornalista non certo vicino alla Lega. L\u2019ipocrisia di questo governo abusivo ormai \u00e8 evidente a tutti.", "post_text": "\u201cHanno aspettato le elezioni in Umbria per far sbarcare la nave Ong\u201d. Due pesi, due misure. Lo riconosce anche un giornalista non certo vicino alla Lega. L\u2019ipocrisia di questo governo abusivo ormai \u00e8 evidente a tutti.", "shared_text": "", "time": "2019-11-07 08:50:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078382038155&id=252306033154", "link": null} +{"post_id": "10157081323548155", "text": "Il vostro entusiasmo e la vostra carica sono la mia forza quotidiana. Se voi ci siete state certi che io ci sar\u00f2 SEMPRE!\nBuona giornata Amici \ud83d\ude0a\ud83c\uddee\ud83c\uddf9", "post_text": "Il vostro entusiasmo e la vostra carica sono la mia forza quotidiana. Se voi ci siete state certi che io ci sar\u00f2 SEMPRE!\nBuona giornata Amici \ud83d\ude0a\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-07 07:31:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/75394247_10157081321368155_5775812727637278720_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=rAziVroaOCMAQk2iRp1kyipoKIYSB6xV_tlZPEHC5C8QSWnZEzldTK2QA&_nc_ht=scontent-cdt1-1.xx&oh=694c1adedb86852aa389acba4f3b5067&oe=5E3E5FF9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081323548155&id=252306033154", "link": null} +{"post_id": "10157081208058155", "text": "Giovannino, cucciolo guerriero, preghiamo per te e ti vogliamo un mondo di bene! \u2764\ufe0f\nTGCOM24.MEDIASET.IT\nTorino, bimbo nasce con malattia incurabile: genitori lo abbandonano in ospedale | Il Cottolengo si offre: \"Lo accudiamo noi\" - Tgcom24", "post_text": "Giovannino, cucciolo guerriero, preghiamo per te e ti vogliamo un mondo di bene! \u2764\ufe0f", "shared_text": "TGCOM24.MEDIASET.IT\nTorino, bimbo nasce con malattia incurabile: genitori lo abbandonano in ospedale | Il Cottolengo si offre: \"Lo accudiamo noi\" - Tgcom24", "time": "2019-11-06 23:45:55", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCgAugFdj6vc7s0&w=476&h=249&url=https%3A%2F%2Fimg-prod.tgcom24.mediaset.it%2Fimages%2F2019%2F11%2F06%2F065105708-b786c6c7-81cd-4e97-9b7c-a6ad3ebed45c.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQAxtw3JMK1Fc9gV", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081208058155&id=252306033154", "link": "https://www.tgcom24.mediaset.it/cronaca/piemonte/torino-bimbo-nasce-con-malattia-incurabile-genitori-lo-abbandonano-in-ospedale-troppe-cure-necessarie-nessuno-lo-vuole_10776141-201902a.shtml?fbclid=IwAR2uvrGqgOREHlcRx5crua0QzulbzVDbCbvhUTeTZfkfBCQ6DBA0P7cn85c"} +{"post_id": "10157081986183155", "text": "Amici, avete seguito da Giordano?\nPi\u00f9 a sinistra dicono che Salvini \u00e8 brutto, cattivo, fascista e troglodita, pi\u00f9 noi continuiamo per la nostra strada, con il sorriso e la coscienza a posto, sicuri di andare nella giusta direzione \ud83d\ude09", "post_text": "Amici, avete seguito da Giordano?\nPi\u00f9 a sinistra dicono che Salvini \u00e8 brutto, cattivo, fascista e troglodita, pi\u00f9 noi continuiamo per la nostra strada, con il sorriso e la coscienza a posto, sicuri di andare nella giusta direzione \ud83d\ude09", "shared_text": "", "time": "2019-11-06 22:42:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74806852_10157081980108155_3992927504774987776_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Wr0Ks41izj0AQkGqbojRBp7XeMP7VxEa0zRVcFYzWvEMcyHtdI1UuEUSQ&_nc_ht=scontent-cdt1-1.xx&oh=04baa1a22e5631e0877d1063342cc232&oe=5E8802F3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081986183155&id=252306033154", "link": null} +{"post_id": "10157081838148155", "text": "Ora su Rete 4 con Mario Giordano! Chi c\u2019\u00e8?\ud83d\ude0a", "post_text": "Ora su Rete 4 con Mario Giordano! Chi c\u2019\u00e8?\ud83d\ude0a", "shared_text": "", "time": "2019-11-06 21:49:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/73212860_10157081837813155_5464900225468465152_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=SS4ejrJF458AQknCBCr9uNlCsSw6H3VWWk5Ok6JWaMqbe6pZhL3tlxjaA&_nc_ht=scontent-cdt1-1.xx&oh=96914f9a5efdc296401784d8944e38a7&oe=5E7962BF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081838148155&id=252306033154", "link": null} +{"post_id": "10157081541518155", "text": "Vi voglio bene anche io, mettete dei fiori nei vostri cannoni\ud83d\ude09", "post_text": "Vi voglio bene anche io, mettete dei fiori nei vostri cannoni\ud83d\ude09", "shared_text": "", "time": "2019-11-06 21:04:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75474081_10157081539868155_2538727212723470336_o.png.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=NPU8SOdbf1EAQlk0fvysjvEuO_x6y_aocU88HvxgCSG67jcSQOzEmhqoQ&_nc_ht=scontent-cdt1-1.xx&oh=ad86d2371365cd002e3f45d8410a2397&oe=5E855DE6", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081541518155&id=252306033154", "link": null} +{"post_id": "10157081328663155", "text": "Amici, questa sera torno dall'amico Mario Giordano!\nCi vediamo alle 21.45 su Rete 4, chi di voi ci fa compagnia? \ud83d\ude0a", "post_text": "Amici, questa sera torno dall'amico Mario Giordano!\nCi vediamo alle 21.45 su Rete 4, chi di voi ci fa compagnia? \ud83d\ude0a", "shared_text": "", "time": "2019-11-06 20:47:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74594577_10157081326028155_6202815275239211008_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=yGCJxdd6028AQkjtA7lO56yAicJ3BOwmS7MPVVA2IUO82U6gxL0Ve46_g&_nc_ht=scontent-cdt1-1.xx&oh=deb0eeb54a2c71c9970c6db192b2b164&oe=5E802173", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081328663155&id=252306033154", "link": null} +{"post_id": "10157081307858155", "text": "Domani si riparte!\nCi vediamo alle 9 in piazza Montecitorio all'iniziativa di Coldiretti per difendere territorio, raccolti, case e lavoro. Verso le 15 sar\u00f2 poi alla FieraCavalli di Verona e infine ci vediamo a Bologna alle ore 18!", "post_text": "Domani si riparte!\nCi vediamo alle 9 in piazza Montecitorio all'iniziativa di Coldiretti per difendere territorio, raccolti, case e lavoro. Verso le 15 sar\u00f2 poi alla FieraCavalli di Verona e infine ci vediamo a Bologna alle ore 18!", "shared_text": "", "time": "2019-11-06 20:20:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75341233_10157081307463155_5114274110628691968_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=zETWupKfBo4AQk60d0vKK_2jADWP4Bu2vgMQtearzojqtJ8Og8-Xt6rzw&_nc_ht=scontent-cdt1-1.xx&oh=5661ea86eedb1efd960101fed98628e3&oe=5E48D2A5", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081307858155&id=252306033154", "link": null} +{"post_id": "10157081487463155", "text": "La Germania rafforza i controlli alle frontiere e la Francia annuncia una stretta sull\u2019immigrazione.\nComplimenti al governo sbarchi, tasse e manette...\nIn meno di tre mesi di porti aperti ha moltiplicato gli arrivi e ora si fa UMILIARE da Parigi e Berlino.\nConte-Di Maio-Renzi sono complici o incapaci???", "post_text": "La Germania rafforza i controlli alle frontiere e la Francia annuncia una stretta sull\u2019immigrazione.\nComplimenti al governo sbarchi, tasse e manette...\nIn meno di tre mesi di porti aperti ha moltiplicato gli arrivi e ora si fa UMILIARE da Parigi e Berlino.\nConte-Di Maio-Renzi sono complici o incapaci???", "shared_text": "", "time": "2019-11-06 19:34:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75362458_10157081487188155_4410418276069277696_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=vN6Xhc_zvLkAQlLecb8AzlRZXKWdreyHXsaLGSHfAZ_M4T-vdgk4iqDNw&_nc_ht=scontent-cdt1-1.xx&oh=9521b29c562a8a45c33a7adee5e54b6b&oe=5E8706E3", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081487463155&id=252306033154", "link": null} +{"post_id": "10157081148873155", "text": "Caro \u201cministro\u201d, invece di insultare, occupati delle donne e degli uomini della Polizia Penitenziaria, che ormai lavorano in condizioni drammatiche. Altrimenti dimettiti!", "post_text": "Caro \u201cministro\u201d, invece di insultare, occupati delle donne e degli uomini della Polizia Penitenziaria, che ormai lavorano in condizioni drammatiche. Altrimenti dimettiti!", "shared_text": "", "time": "2019-11-06 18:59:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081148873155&id=252306033154", "link": null} +{"post_id": "10157081220518155", "text": "Se un investitore mette 4 miliardi di euro per sistemare il territorio e viene minacciato di galera, evidentemente l'imprenditore scappa, non ci voleva uno scienziato...\nSe i geni al governo avessero ascoltato\u2026 Altro la Lega, il problema non si sarebbe neanche posto.\nFaremo il possibile per far proseguire l'attivit\u00e0 degli stabilimenti siderurgici dell\u2019ex Ilva, perch\u00e9 \u00e8 assolutamente impensabile perdere migliaia di posti di lavoro e un'industria cruciale per il nostro Paese.", "post_text": "Se un investitore mette 4 miliardi di euro per sistemare il territorio e viene minacciato di galera, evidentemente l'imprenditore scappa, non ci voleva uno scienziato...\nSe i geni al governo avessero ascoltato\u2026 Altro la Lega, il problema non si sarebbe neanche posto.\nFaremo il possibile per far proseguire l'attivit\u00e0 degli stabilimenti siderurgici dell\u2019ex Ilva, perch\u00e9 \u00e8 assolutamente impensabile perdere migliaia di posti di lavoro e un'industria cruciale per il nostro Paese.", "shared_text": "", "time": "2019-11-06 17:55:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/76756911_10157081217963155_5118237536514211840_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=0By9tSp6B9QAQlThcIoQcd6JLj27mn7UybZAvXF0yiDeEYfvIIP3vletw&_nc_ht=scontent-cdt1-1.xx&oh=93ece3d5ce2323d6135bd9c97752f125&oe=5E7CC657", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081220518155&id=252306033154", "link": null} +{"post_id": "10157080488858155", "text": "Niente da fare, alla sinistra \u201cPrima gli Italiani\u201d proprio non piace... Amen\ud83d\ude0a", "post_text": "Niente da fare, alla sinistra \u201cPrima gli Italiani\u201d proprio non piace... Amen\ud83d\ude0a", "shared_text": "", "time": "2019-11-06 17:15:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157080488858155&id=252306033154", "link": null} +{"post_id": "10157081067988155", "text": "Turisti fai da te... Roba da matti!\nILMESSAGGERO.IT\nReggio Calabria, migranti si fingono turisti dopo sbarco: due arresti per possesso di documenti falsi", "post_text": "Turisti fai da te... Roba da matti!", "shared_text": "ILMESSAGGERO.IT\nReggio Calabria, migranti si fingono turisti dopo sbarco: due arresti per possesso di documenti falsi", "time": "2019-11-06 16:42:05", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQB5r78dozrjqiSx&w=476&h=249&url=https%3A%2F%2Fwww.ilmessaggero.it%2Fphotos%2FMED%2F49%2F68%2F4844968_0926_migranti_turisti_sbarchi_reggio_calabria_ultime_notizie_oggi_mercoledi_6_ottobre_2019.jpg&cfs=1&jq=75&sx=0&sy=5&sw=620&sh=324&ext=jpg&_nc_hash=AQDURhM_uAujbf6G", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157081067988155&id=252306033154", "link": "https://www.ilmessaggero.it/italia/migranti_turisti_sbarchi_reggio_calabria_ultime_notizie_oggi_mercoledi_6_ottobre_2019-4844968.html?fbclid=IwAR3A8tohfquGQOu5uzNq-k1a3jlvBXoM0B7UdfPpo6qjhi5kXr68lImBgsc"} +{"post_id": "10157078417323155", "text": "Magistrale Vittorio Feltri, poi a sinistra si stupiscono se non li vota pi\u00f9 nessuno. \ud83d\udc4f", "post_text": "Magistrale Vittorio Feltri, poi a sinistra si stupiscono se non li vota pi\u00f9 nessuno. \ud83d\udc4f", "shared_text": "", "time": "2019-11-06 15:35:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078417323155&id=252306033154", "link": null} +{"post_id": "10157080756898155", "text": "Alla faccia dell'odio in rete...!\nComplimenti per il post a questa \"gentile\" signora, gi\u00e0 candidata per la sinistra a Desio, in Brianza.\nUn messaggio di grande rispetto anche verso le persone disabili... Che\u2026 Altro vergogna.\nAvanti, col sorriso, Amici, alla faccia di chi ci vuole male e di chi, anzich\u00e9 avversari da battere con la forza delle idee, vede solo nemici da odiare (e questi sarebbero i \"buoni\"...).", "post_text": "Alla faccia dell'odio in rete...!\nComplimenti per il post a questa \"gentile\" signora, gi\u00e0 candidata per la sinistra a Desio, in Brianza.\nUn messaggio di grande rispetto anche verso le persone disabili... Che\u2026 Altro vergogna.\nAvanti, col sorriso, Amici, alla faccia di chi ci vuole male e di chi, anzich\u00e9 avversari da battere con la forza delle idee, vede solo nemici da odiare (e questi sarebbero i \"buoni\"...).", "shared_text": "", "time": "2019-11-06 14:24:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75266267_10157080773528155_6702434205009182720_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=isFJpwL-pjYAQnpOsdQmQWljv4GAT8N-JCKHgai5gVgG6T1Y5UMThBYUA&_nc_ht=scontent-cdt1-1.xx&oh=7f7854d78924010c134a928e3e636c1d&oe=5E851912", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157080756898155&id=252306033154", "link": null} +{"post_id": "719729131857368", "text": "\ud83d\udd34INCREDIBILE! Se non avete ancora visto questo servizio, fatelo. I sacrifici dei romani che fanno la raccolta differenziata? Buttati al vento perch\u00e9 l'azienda comunale dei rifiuti mette tutto in un unico\u2026 Altro mischione...\nMeglio che la Raggi torni alla sua professione, ha dimostrato in quasi 4 anni di non essere in grado di fare il sindaco e la Capitale d'Italia merita dignit\u00e0. #raggidimettiti", "post_text": "\ud83d\udd34INCREDIBILE! Se non avete ancora visto questo servizio, fatelo. I sacrifici dei romani che fanno la raccolta differenziata? Buttati al vento perch\u00e9 l'azienda comunale dei rifiuti mette tutto in un unico\u2026 Altro mischione...\nMeglio che la Raggi torni alla sua professione, ha dimostrato in quasi 4 anni di non essere in grado di fare il sindaco e la Capitale d'Italia merita dignit\u00e0. #raggidimettiti", "shared_text": "", "time": "2019-11-06 13:15:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=719729131857368&id=252306033154", "link": null} +{"post_id": "10157080537123155", "text": "Vedete questo? \u00c8 uno dei calcinacci che cadono dalle case popolari di Ostia. Me lo porto via e lo mostrer\u00f2 questa sera in diretta su Rete 4 da Mario Giordano. Spero solo che la mia visita di stamattina sia di\u2026 Altro stimolo a ricordarsi che esiste anche Ostia e che questo territorio fa parte della Capitale.\nSe vado ad ascoltare i cittadini, la Raggi si arrabbia e mi insulta. \u00c8 ora che faccia altro nella vita, perch\u00e9 ormai \u00e8 chiaro a tutti che di fare il sindaco non \u00e8 capace. #raggidimettiti", "post_text": "Vedete questo? \u00c8 uno dei calcinacci che cadono dalle case popolari di Ostia. Me lo porto via e lo mostrer\u00f2 questa sera in diretta su Rete 4 da Mario Giordano. Spero solo che la mia visita di stamattina sia di\u2026 Altro stimolo a ricordarsi che esiste anche Ostia e che questo territorio fa parte della Capitale.\nSe vado ad ascoltare i cittadini, la Raggi si arrabbia e mi insulta. \u00c8 ora che faccia altro nella vita, perch\u00e9 ormai \u00e8 chiaro a tutti che di fare il sindaco non \u00e8 capace. #raggidimettiti", "shared_text": "", "time": "2019-11-06 12:46:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/72855119_10157080511758155_1570446949172117504_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=NEMWBp5bBTUAQmjlwoOQ_d5yUJYqgIvBzpDRvQZWtfOzODtfBRo1QHj2A&_nc_ht=scontent-cdt1-1.xx&oh=ac1f52b9ec7d6dfc79fd629324b39324&oe=5E433961", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157080537123155&id=252306033154", "link": null} +{"post_id": "772949633216480", "text": "Ancora in diretta da Ostia (Roma) afflitta da problemi di occupazioni abusive, mancanza di servizi, abbandono. #raggidimettiti", "post_text": "Ancora in diretta da Ostia (Roma) afflitta da problemi di occupazioni abusive, mancanza di servizi, abbandono. #raggidimettiti", "shared_text": "", "time": "2019-11-06 11:43:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=772949633216480&id=252306033154", "link": null} +{"post_id": "2897539716925563", "text": "Qui Ostia (Roma), seguitemi.\n#raggidimettiti", "post_text": "Qui Ostia (Roma), seguitemi.\n#raggidimettiti", "shared_text": "", "time": "2019-11-06 11:17:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2897539716925563&id=252306033154", "link": null} +{"post_id": "10157080378738155", "text": "\u2b55\ufe0f Per colpa del governo delle tasse targato Pd-5Stelle-Renzi pure le bottiglie d\u2019acqua costeranno di pi\u00f9.\nSiamo alla follia!", "post_text": "\u2b55\ufe0f Per colpa del governo delle tasse targato Pd-5Stelle-Renzi pure le bottiglie d\u2019acqua costeranno di pi\u00f9.\nSiamo alla follia!", "shared_text": "", "time": "2019-11-06 11:02:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76652269_10157080377883155_2737036371154698240_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=i6pSXx-zWp8AQn-aU5Ub9GErOszR7YO_jX9eZPSyfym8ntjKLAWxNtRcQ&_nc_ht=scontent-cdt1-1.xx&oh=e579d489fd0910c5ca66f84a29ed744e&oe=5E498485", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157080378738155&id=252306033154", "link": null} +{"post_id": "10157080276483155", "text": "Mentre il governo tasse, sbarchi e manette continua a litigare nei palazzi, noi andiamo nell\u2019Italia vera.\nCi vediamo dalle 11 a Ostia (Roma), dove troppe case continuano ad essere occupate abusivamente.", "post_text": "Mentre il governo tasse, sbarchi e manette continua a litigare nei palazzi, noi andiamo nell\u2019Italia vera.\nCi vediamo dalle 11 a Ostia (Roma), dove troppe case continuano ad essere occupate abusivamente.", "shared_text": "", "time": "2019-11-06 10:03:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74166347_10157080276453155_356433284286119936_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=NX2am-gkjuMAQm5IJJLu1IGdcEj2Vz5zCd2ad3yrvXetWIoyGfIA6x9_Q&_nc_ht=scontent-cdt1-1.xx&oh=0501c3f7fbbc6379772f4d6195b617a0&oe=5E8C518F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157080276483155&id=252306033154", "link": null} +{"post_id": "10157078534388155", "text": "\u26a0 \"Nel settore degli imballaggi, in Emilia-Romagna, abbiamo pi\u00f9 di 230 aziende, 17mila dipendenti e affari per oltre 4 miliardi di euro. Con la tassa sulla plastica saremmo in grande difficolt\u00e0\".\nPazzesco, con\u2026 Altro delle proposte folli questo governo sta giocando sulla pelle di decine di migliaia di lavoratori.\nLa Lega \u00e8 pronta a dare battaglia, dentro e fuori il Parlamento.", "post_text": "\u26a0 \"Nel settore degli imballaggi, in Emilia-Romagna, abbiamo pi\u00f9 di 230 aziende, 17mila dipendenti e affari per oltre 4 miliardi di euro. Con la tassa sulla plastica saremmo in grande difficolt\u00e0\".\nPazzesco, con\u2026 Altro delle proposte folli questo governo sta giocando sulla pelle di decine di migliaia di lavoratori.\nLa Lega \u00e8 pronta a dare battaglia, dentro e fuori il Parlamento.", "shared_text": "", "time": "2019-11-06 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078534388155&id=252306033154", "link": null} +{"post_id": "10157078082303155", "text": "Buongiorno con orgoglio italiano! \ud83c\uddee\ud83c\uddf9", "post_text": "Buongiorno con orgoglio italiano! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-06 08:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078082303155&id=252306033154", "link": null} +{"post_id": "10157078836958155", "text": "ONORE ai nostri Vigili del Fuoco, orgoglio nazionale \ud83c\uddee\ud83c\uddf9\nSempre con il pensiero rivolto ad Antonino, Marco e Matteo. che adesso meritano giustizia.", "post_text": "ONORE ai nostri Vigili del Fuoco, orgoglio nazionale \ud83c\uddee\ud83c\uddf9\nSempre con il pensiero rivolto ad Antonino, Marco e Matteo. che adesso meritano giustizia.", "shared_text": "", "time": "2019-11-05 23:36:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74605537_10157078836878155_8495622689342357504_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=m0JGSRlOfRsAQnj4xc5iQ5ggOYg-mXZ0gyaI0eoFRhUamDyFGTQf_Dang&_nc_ht=scontent-cdt1-1.xx&oh=f1424add0534c2d1ae26c4cb2d667079&oe=5E47548E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078836958155&id=252306033154", "link": null} +{"post_id": "10157078570703155", "text": "A 61 anni questa signora calabrese dorme su una panchina per conservare il proprio lavoro. Pazzesco.\nSo che l\u2019UGL si sta interessando al suo caso, spero che le possano dare una mano e le invio un abbraccio commosso.", "post_text": "A 61 anni questa signora calabrese dorme su una panchina per conservare il proprio lavoro. Pazzesco.\nSo che l\u2019UGL si sta interessando al suo caso, spero che le possano dare una mano e le invio un abbraccio commosso.", "shared_text": "", "time": "2019-11-05 22:35:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078570703155&id=252306033154", "link": null} +{"post_id": "10157078974978155", "text": "Tabaccaio reagisce a una rapina e uccide uno dei ladri. La difesa \u00e8 legittima, sempre.\nLEGGO.IT\nRoma, rapina in un bar di Cinecitt\u00e0: morto il bandito, ferito il titolare", "post_text": "Tabaccaio reagisce a una rapina e uccide uno dei ladri. La difesa \u00e8 legittima, sempre.", "shared_text": "LEGGO.IT\nRoma, rapina in un bar di Cinecitt\u00e0: morto il bandito, ferito il titolare", "time": "2019-11-05 21:37:43", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQD4LmphJiM_JQJC&w=476&h=249&url=https%3A%2F%2Fwww.leggo.it%2Fphotos%2FMED%2F33%2F27%2F4843327_2105_foto_rapinatore_morto_cinecitta_2.jpg&cfs=1&jq=75&sx=0&sy=5&sw=620&sh=324&ext=jpg&_nc_hash=AQAggFrH2k15pUhQ", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078974978155&id=252306033154", "link": "https://www.leggo.it/italia/roma/roma_rapina_cinecitta_bar_ultime_notizie_oggi_5_novembre-4843327.html?fbclid=IwAR3DXqrOeroJQ2XN6ERojommtxvK5neCU7DDhpEB-OxB-0gIGhNW7HOlQe8"} +{"post_id": "591277614744181", "text": "Penso che in Campania ci sia enorme voglia di buongoverno, di tranquillit\u00e0, di efficienza e di lavoro. Noi ci siamo, pronti a liberare questa terra dai disastri dei De Luca, de Magistris e Di Maio.\nEcco che cosa ho detto questa mattina a Napoli.", "post_text": "Penso che in Campania ci sia enorme voglia di buongoverno, di tranquillit\u00e0, di efficienza e di lavoro. Noi ci siamo, pronti a liberare questa terra dai disastri dei De Luca, de Magistris e Di Maio.\nEcco che cosa ho detto questa mattina a Napoli.", "shared_text": "", "time": "2019-11-05 20:34:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=591277614744181&id=252306033154", "link": null} +{"post_id": "10157078597318155", "text": "Per una certa sinistra io e voi siamo un branco di trogloditi, pericolosi razzisti ed evasori fiscali.\nLunga vita a questi \u201cintellettuali\u201d che pi\u00f9 disprezzano il Popolo pi\u00f9 perdono le elezioni\ud83d\ude09.", "post_text": "Per una certa sinistra io e voi siamo un branco di trogloditi, pericolosi razzisti ed evasori fiscali.\nLunga vita a questi \u201cintellettuali\u201d che pi\u00f9 disprezzano il Popolo pi\u00f9 perdono le elezioni\ud83d\ude09.", "shared_text": "", "time": "2019-11-05 19:24:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74303476_10157078596828155_8053925684231274496_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=MG3fw_UdhmYAQm7cY7s4YKs35yIiTpT0CR6z3ruaTQuUe4ikkrURTN6MA&_nc_ht=scontent-cdt1-1.xx&oh=9cdf8abdb2b51aeb43c2d3d90cdcc9dc&oe=5E5124AF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078597318155&id=252306033154", "link": null} +{"post_id": "417706812255799", "text": "La mia intervista di stamane a Radio CRC di Napoli, la Campania ha voglia di Lega!\nP.s. Sempre viva le emittenti locali!", "post_text": "La mia intervista di stamane a Radio CRC di Napoli, la Campania ha voglia di Lega!\nP.s. Sempre viva le emittenti locali!", "shared_text": "", "time": "2019-11-05 18:16:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=417706812255799&id=252306033154", "link": null} +{"post_id": "10157078451498155", "text": "\u274c Per colpa del governo delle tasse anche la carta igienica coster\u00e0 di pi\u00f9!\nMandiamoli a casa una volta per tutte, in Emilia-Romagna il #26gennaiovotoLega", "post_text": "\u274c Per colpa del governo delle tasse anche la carta igienica coster\u00e0 di pi\u00f9!\nMandiamoli a casa una volta per tutte, in Emilia-Romagna il #26gennaiovotoLega", "shared_text": "", "time": "2019-11-05 17:48:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75481656_10157078450418155_5951322108012265472_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=PTfQrXWKSYQAQnx0nnOzelb42wu1CAF0kCM9J8Tr9CQKk8VZuLgGHxeyg&_nc_ht=scontent-cdt1-1.xx&oh=6d05d46ec2da45dc50b0b854da099930&oe=5E4355A0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078451498155&id=252306033154", "link": null} +{"post_id": "10157078191803155", "text": "\u2757\ufe0fSciopero dei benzinai.\nIn meno di due mesi, il governo tasse, sbarchi e manette \u00e8 riuscito a far arrabbiare tutti, complimenti...\nREPUBBLICA.IT\nSciopero benzinai contro il governo: pompe chiuse il 6 e 7 novembre", "post_text": "\u2757\ufe0fSciopero dei benzinai.\nIn meno di due mesi, il governo tasse, sbarchi e manette \u00e8 riuscito a far arrabbiare tutti, complimenti...", "shared_text": "REPUBBLICA.IT\nSciopero benzinai contro il governo: pompe chiuse il 6 e 7 novembre", "time": "2019-11-05 16:47:26", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAlyf9IfUdoP3OT&w=476&h=249&url=https%3A%2F%2Fwww.repstatic.it%2Fcontent%2Fnazionale%2Fimg%2F2019%2F11%2F04%2F165705247-73e78084-8c03-4011-adf1-d736e9b14652.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQCfajT6lPpJWT_T", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078191803155&id=252306033154", "link": "https://www.repubblica.it/economia/2019/11/04/news/benzinai_contro_il_governo_pompe_chiuse_il_6_e_7_novembre-240230973/?fbclid=IwAR0zfHrEkQGTAbb95t2HPumPeImkh8j-h90FmNqgyIGhoYsWTrXWczVMjHw"} +{"post_id": "10157078256538155", "text": "Liberiamo anche l'Emilia-Romagna dopo 50 anni di sinistra, con Lucia Borgonzoni!\nTi aspetto gioved\u00ec 14 novembre, alle 20, al Paladozza di Bologna. Saremo in tantissimi e sento aria di cambiamento.\n#26gennaiovotoLega\n\u26a0\ufe0fVuoi darci una mano? Scrivi a emiliaromagna@legaonline.it o chiama lo 0522.518834", "post_text": "Liberiamo anche l'Emilia-Romagna dopo 50 anni di sinistra, con Lucia Borgonzoni!\nTi aspetto gioved\u00ec 14 novembre, alle 20, al Paladozza di Bologna. Saremo in tantissimi e sento aria di cambiamento.\n#26gennaiovotoLega\n\u26a0\ufe0fVuoi darci una mano? Scrivi a emiliaromagna@legaonline.it o chiama lo 0522.518834", "shared_text": "", "time": "2019-11-05 16:26:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078256538155&id=252306033154", "link": null} +{"post_id": "10157078047898155", "text": "Una preghiera per Matteo, Marco e Antonio, nella speranza che venga garantita PENA CERTA per gli assassini che hanno provocato l\u2019incendio e la morte di questi angeli.", "post_text": "Una preghiera per Matteo, Marco e Antonio, nella speranza che venga garantita PENA CERTA per gli assassini che hanno provocato l\u2019incendio e la morte di questi angeli.", "shared_text": "", "time": "2019-11-05 15:04:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72190591_10157078046833155_2755376783451750400_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=yPu2YtC1st8AQlKHL4a_Wem1iMziUMPKH4AfzHEUUcKhzTq8m4LWtANLA&_nc_ht=scontent-cdt1-1.xx&oh=398e164b65124536796df083f4484a51&oe=5E7ECC78", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157078047898155&id=252306033154", "link": null} +{"post_id": "10157077910693155", "text": "\ud83d\udd34Splendida mattinata di idee e di futuro a Napoli con i leghisti di tutta la Campania: questa regione deve tornare a pensare in grande, liberandosi degli inutili litigi di Di Maio, De Luca e De Magistris.\u2026 Altro\nPronti anche qui alla battaglia per le elezioni regionali di primavera, gi\u00e0 con noi 200 amministratori locali, Lega primo partito e puntiamo ai 10mila iscritti.\nPi\u00fa tardi potrete rivedere il mio intervento su questa Pagina.", "post_text": "\ud83d\udd34Splendida mattinata di idee e di futuro a Napoli con i leghisti di tutta la Campania: questa regione deve tornare a pensare in grande, liberandosi degli inutili litigi di Di Maio, De Luca e De Magistris.\u2026 Altro\nPronti anche qui alla battaglia per le elezioni regionali di primavera, gi\u00e0 con noi 200 amministratori locali, Lega primo partito e puntiamo ai 10mila iscritti.\nPi\u00fa tardi potrete rivedere il mio intervento su questa Pagina.", "shared_text": "", "time": "2019-11-05 14:26:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/72635265_10157077896528155_3886645412299276288_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=ruV0j9bD3gYAQmME6hzTijS4VYt3OgyuP4EtZRlT1VE75GY737DqL3s3Q&_nc_ht=scontent-cdt1-1.xx&oh=1961eecc0ff857408c976bd8b0f479b6&oe=5E419C8F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157077910693155&id=252306033154", "link": null} +{"post_id": "724922424649680", "text": "\ud83d\udd34Ma roba da matti!\nNella Bolzano amministrata dal Pd, bande di spacciatori vendono cocaina in pieno giorno a cielo aperto, dicendo: \u201cPossiamo fare quel c***o che vogliamo perch\u00e9 siamo in un Paese libero\u201d.\nNel\u2026 Altro frattempo il governo che fa? Riapre i porti e vuole cancellare i Decreti sicurezza, perch\u00e9 \u201cSalvini era cattivo, disumano, fascista\u201d...", "post_text": "\ud83d\udd34Ma roba da matti!\nNella Bolzano amministrata dal Pd, bande di spacciatori vendono cocaina in pieno giorno a cielo aperto, dicendo: \u201cPossiamo fare quel c***o che vogliamo perch\u00e9 siamo in un Paese libero\u201d.\nNel\u2026 Altro frattempo il governo che fa? Riapre i porti e vuole cancellare i Decreti sicurezza, perch\u00e9 \u201cSalvini era cattivo, disumano, fascista\u201d...", "shared_text": "", "time": "2019-11-05 13:13:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=724922424649680&id=252306033154", "link": null} +{"post_id": "10157075910423155", "text": "\"La tassa sulla plastica mi coster\u00e0 100 milioni l'anno, ho gi\u00e0 bloccato tutti gli investimenti.\"\nE come lui tanti altri imprenditori sono pronti a tagli e licenziamenti per colpa di una manovra economica folle.\nQuesti al governo stanno distruggendo l'Italia. Prima se ne andranno, meglio sar\u00e0 per il Paese.", "post_text": "\"La tassa sulla plastica mi coster\u00e0 100 milioni l'anno, ho gi\u00e0 bloccato tutti gli investimenti.\"\nE come lui tanti altri imprenditori sono pronti a tagli e licenziamenti per colpa di una manovra economica folle.\nQuesti al governo stanno distruggendo l'Italia. Prima se ne andranno, meglio sar\u00e0 per il Paese.", "shared_text": "", "time": "2019-11-05 12:24:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/76204362_10157075902408155_2625085123711729664_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=VEQBhxztH1YAQnIfXfJeubY-hVDLoyF314NEgZ50IwgR7iJCOe-9_N31w&_nc_ht=scontent-cdt1-1.xx&oh=77e6a208d6b65f0b0273a7327bff4262&oe=5E3F34E7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157075910423155&id=252306033154", "link": null} +{"post_id": "10157077590998155", "text": "Geni al lavoro...!\nLe pi\u00f9 belle frasi di Osho", "post_text": "Geni al lavoro...!\nLe pi\u00f9 belle frasi di Osho", "shared_text": "", "time": "2019-11-05 11:21:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/74582979_10157077584963155_7931904069919047680_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=xrCe1nR7yIQAQlEmgSaqWWJ9RM9VLjD-kTYq8FjaAe8aHAJ7-i3OcZgog&_nc_ht=scontent-cdt1-1.xx&oh=d670b7c6289567c94cd261ea1aaad9b8&oe=5E4B0311", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157077590998155&id=252306033154", "link": null} +{"post_id": "10157075506108155", "text": "Per il compagno presidente della Toscana (PD) sono come... SATANA! \ud83d\ude31 Questi ormai sono alla disperazione.", "post_text": "Per il compagno presidente della Toscana (PD) sono come... SATANA! \ud83d\ude31 Questi ormai sono alla disperazione.", "shared_text": "", "time": "2019-11-05 10:20:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/75250876_10157075505728155_8858793785178456064_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=opZrbVUwrtwAQn1gKTHcUZcLPbraP0_d5DxXB2EsjrMy1uCHUH_2Yf6Hw&_nc_ht=scontent-cdt1-1.xx&oh=b54d67e2443c4e985e30aee46aef370e&oe=5E40683F", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157075506108155&id=252306033154", "link": null} +{"post_id": "10157075944713155", "text": "Se questi pensano davvero di mettere tasse sulle auto aziendali, sullo zucchero e sulla plastica faranno una strage di negozi, aziende e decine di migliaia posti di lavoro.\nIl governo Pd-5Stelle-Renzi sta mettendo a rischio l'intero Paese, siamo alla FOLLIA.", "post_text": "Se questi pensano davvero di mettere tasse sulle auto aziendali, sullo zucchero e sulla plastica faranno una strage di negozi, aziende e decine di migliaia posti di lavoro.\nIl governo Pd-5Stelle-Renzi sta mettendo a rischio l'intero Paese, siamo alla FOLLIA.", "shared_text": "", "time": "2019-11-05 09:16:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157075944713155&id=252306033154", "link": null} +{"post_id": "10157077249043155", "text": "Una preghiera e un pensiero per i Vigili del Fuoco morti questa notte e un abbraccio alle famiglie e ai colleghi feriti.\nOnore a chi mette in gioco la propria vita per salvare quella degli altri, l\u2019Italia piange per Voi.\nRAINEWS.IT\nEsplosione in una cascina nell'Alessandrino: morti tre vigili del fuoco", "post_text": "Una preghiera e un pensiero per i Vigili del Fuoco morti questa notte e un abbraccio alle famiglie e ai colleghi feriti.\nOnore a chi mette in gioco la propria vita per salvare quella degli altri, l\u2019Italia piange per Voi.", "shared_text": "RAINEWS.IT\nEsplosione in una cascina nell'Alessandrino: morti tre vigili del fuoco", "time": "2019-11-05 08:27:06", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQA7YqVrd5yh4q9L&w=476&h=249&url=http%3A%2F%2Fwww.rai.it%2Fcropgd%2F476x249%2Fdl%2Fimg%2F2019%2F11%2F1572929101734.palazzina_alessandria.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQB_yAwlmONOtPGM", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157077249043155&id=252306033154", "link": "http://www.rainews.it/dl/rainews/articoli/cascina-esplosione-fuga-di-gas-morti-due-vigili-fuoco-45d741df-e8bf-44c0-83cc-3c2e03addd74.html?fbclid=IwAR0YUYt6Nj6OrJUUx7iceSBCM-NDmjLUL8jJbVlnVsJTPAimuVYaKd4gNUw"} +{"post_id": "10157075914818155", "text": "In cima ai miei pensieri sempre un obiettivo: DIFENDERE L'ITALIA.\nIeri, oggi e domani: #primagliitaliani \ud83c\uddee\ud83c\uddf9\nBuonanotte Amici, vi voglio bene.", "post_text": "In cima ai miei pensieri sempre un obiettivo: DIFENDERE L'ITALIA.\nIeri, oggi e domani: #primagliitaliani \ud83c\uddee\ud83c\uddf9\nBuonanotte Amici, vi voglio bene.", "shared_text": "", "time": "2019-11-04 23:28:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/74217322_10157075914083155_8203985918793613312_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=9KKnCLcMYJYAQkvTX1wL5c5rKXTFhTtdNM0vV4iD0H5HnHj-MzVqVIMHg&_nc_ht=scontent-cdt1-1.xx&oh=469ba1d6921809081100d1aabb490bb7&oe=5E7F85EA", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157075914818155&id=252306033154", "link": null} +{"post_id": "1478161509028366", "text": "Felice e orgoglioso di aver contribuito a fare la storia dell\u2019Umbria, una terra meravigliosa che non meritava 50 anni di sinistra. E adesso al lavoro!\nP.s. Amici emiliani e romagnoli, il 26 gennaio liberiamo anche la vostra splendida regione, alla faccia di Renzi, Pd e 5Stelle.", "post_text": "Felice e orgoglioso di aver contribuito a fare la storia dell\u2019Umbria, una terra meravigliosa che non meritava 50 anni di sinistra. E adesso al lavoro!\nP.s. Amici emiliani e romagnoli, il 26 gennaio liberiamo anche la vostra splendida regione, alla faccia di Renzi, Pd e 5Stelle.", "shared_text": "", "time": "2019-11-04 22:34:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1478161509028366&id=252306033154", "link": null} +{"post_id": "10157075672343155", "text": "\ud83d\ude31 Per colpa del governo delle tasse anche questo coster\u00e0 di pi\u00f9.\nMandiamoli a casa una volta per tutte, in Emilia-Romagna il #26gennaiovotoLega", "post_text": "\ud83d\ude31 Per colpa del governo delle tasse anche questo coster\u00e0 di pi\u00f9.\nMandiamoli a casa una volta per tutte, in Emilia-Romagna il #26gennaiovotoLega", "shared_text": "", "time": "2019-11-04 21:50:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/73215229_10157075669653155_7754560253177364480_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=d3kircLvzSYAQnL4Xp0TQO2noSoVzPmMS0Wjzwl8GTQFQDt7SJIcSg-uw&_nc_ht=scontent-cdt1-1.xx&oh=05069ca2688b54421ddf69542173e1ec&oe=5E8A7D6E", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157075672343155&id=252306033154", "link": null} +{"post_id": "10157075958523155", "text": "Stasera mi tratto bene: pomodorini siciliani, rapanelli del Lazio e olio d\u2019oliva umbro.\nViva l\u2019Italia anche a tavola! \ud83c\uddee\ud83c\uddf9", "post_text": "Stasera mi tratto bene: pomodorini siciliani, rapanelli del Lazio e olio d\u2019oliva umbro.\nViva l\u2019Italia anche a tavola! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-11-04 21:00:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/76938354_10157075958003155_2706030714482065408_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=O2fU4USqpFoAQkWwyF766fUsPw33BLEMBOMomXFnDAbaszuTmolwJHI4w&_nc_ht=scontent-cdt1-1.xx&oh=2932701ae094be6b9293cf2874b23bc2&oe=5E48D305", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157075958523155&id=252306033154", "link": null} +{"post_id": "10157075819453155", "text": "INCAPACI che mettono a rischio migliaia di posti di lavoro, gettando nell\u2019angoscia migliaia di famiglie e distruggendo l\u2019industria italiana dell\u2019acciaio.\nLa vicenda dell\u2019ex Ilva \u00e8 drammatica, in un Paese\u2026 Altro normale un presidente del Consiglio riferirebbe subito in Parlamento.\nSpero che qualcuno non abbia promesso, oltre alla riapertura dei porti, anche la chiusura delle acciaierie per fare regali a qualcun altro...", "post_text": "INCAPACI che mettono a rischio migliaia di posti di lavoro, gettando nell\u2019angoscia migliaia di famiglie e distruggendo l\u2019industria italiana dell\u2019acciaio.\nLa vicenda dell\u2019ex Ilva \u00e8 drammatica, in un Paese\u2026 Altro normale un presidente del Consiglio riferirebbe subito in Parlamento.\nSpero che qualcuno non abbia promesso, oltre alla riapertura dei porti, anche la chiusura delle acciaierie per fare regali a qualcun altro...", "shared_text": "", "time": "2019-11-04 20:05:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/72138505_10157075818688155_5769039705945407488_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=aEW-LVLur1sAQl_v3kSJ0WVu5sAUoJLJdCdR1knA2frGlE8-tLn1Fo1qA&_nc_ht=scontent-cdt1-1.xx&oh=f052a9d4ade31115493de2a693e732c8&oe=5E4BD3B9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157075819453155&id=252306033154", "link": null} +{"post_id": "512310302656350", "text": "\u203c \u201cGrazie\u201d al governo Pd-5Stelle-Renzi diverse aziende hanno gi\u00e0 pronti migliaia di licenziamenti al solo annuncio di questa manovra economica FOLLE fatta di tasse, tagli e altre tasse che impoveriscono il nostro Paese.\nSpero che questi vadano a casa il prima possibile perch\u00e9 gli Italiani non ne possono pi\u00f9.", "post_text": "\u203c \u201cGrazie\u201d al governo Pd-5Stelle-Renzi diverse aziende hanno gi\u00e0 pronti migliaia di licenziamenti al solo annuncio di questa manovra economica FOLLE fatta di tasse, tagli e altre tasse che impoveriscono il nostro Paese.\nSpero che questi vadano a casa il prima possibile perch\u00e9 gli Italiani non ne possono pi\u00f9.", "shared_text": "", "time": "2019-11-04 18:44:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=512310302656350&id=252306033154", "link": null} +{"post_id": "2519135121532281", "text": "In diretta dal Senato per commentare l'ennesimo disastro del governo tasse, sbarchi e manette che, facendo scappare i proprietari dell'Ilva, rischiano di lasciare a casa decine di migliaia di operai.", "post_text": "In diretta dal Senato per commentare l'ennesimo disastro del governo tasse, sbarchi e manette che, facendo scappare i proprietari dell'Ilva, rischiano di lasciare a casa decine di migliaia di operai.", "shared_text": "", "time": "2019-11-04 17:11:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2519135121532281&id=252306033154", "link": null} +{"post_id": "10157075270928155", "text": "\ud83d\udd34 Se il governo tasse, sbarchi e manette far\u00e0 scappare anche i proprietari di Ilva, mettendo a rischio il lavoro di decine di migliaia di operai e il futuro industriale del Paese, sar\u00e0 un disastro, e le\u2026 Altro dimissioni sarebbero l\u2019unica risposta possibile.\nLa Lega chiede che Conte venga urgentemente a riferire in Parlamento.\nNe parler\u00f2 dalla sala stampa del Senato verso le 17, in diretta anche sulla mia pagina. Rimanete collegati.\nASKANEWS.IT\nSalvini: ex Ilva, Conte riferisca urgentemente in Parlamento", "post_text": "\ud83d\udd34 Se il governo tasse, sbarchi e manette far\u00e0 scappare anche i proprietari di Ilva, mettendo a rischio il lavoro di decine di migliaia di operai e il futuro industriale del Paese, sar\u00e0 un disastro, e le\u2026 Altro dimissioni sarebbero l\u2019unica risposta possibile.\nLa Lega chiede che Conte venga urgentemente a riferire in Parlamento.\nNe parler\u00f2 dalla sala stampa del Senato verso le 17, in diretta anche sulla mia pagina. Rimanete collegati.", "shared_text": "ASKANEWS.IT\nSalvini: ex Ilva, Conte riferisca urgentemente in Parlamento", "time": "2019-11-04 16:18:54", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCNTAA8GeLZjcg5&w=476&h=249&url=http%3A%2F%2Fwww.askanews.it%2Fwp-content%2Fuploads%2F2019%2F11%2F20191104_144753_6BC15F17.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQDxKM0f3oRM99Qc", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157075270928155&id=252306033154", "link": "http://www.askanews.it/politica/2019/11/04/salvini-ex-ilva-conte-riferisca-urgentemente-in-parlamento-pn_20191104_00137/?fbclid=IwAR2QZujXx3GLvHcgBSmm2hW4HhRPD860M_U4A4qE8-R9MiW-sltxMRQxxrU"} +{"post_id": "10156791864238155", "text": "L'amore dei romani per il PD! Non spingete!!! \ud83d\ude03\ud83d\ude03\ud83d\ude03", "post_text": "L'amore dei romani per il PD! Non spingete!!! \ud83d\ude03\ud83d\ude03\ud83d\ude03", "shared_text": "", "time": "2019-11-04 15:14:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156791864238155&id=252306033154", "link": null} +{"post_id": "10157075009783155", "text": "Il ministro grillino Bonafede? Lo cerchiamo a Chi l\u2019ha visto...\nILGIORNALE.IT\nParma, detenuto magrebino aggredisce agente e lo manda in ospedale", "post_text": "Il ministro grillino Bonafede? Lo cerchiamo a Chi l\u2019ha visto...", "shared_text": "ILGIORNALE.IT\nParma, detenuto magrebino aggredisce agente e lo manda in ospedale", "time": "2019-11-04 14:34:30", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDEGxZNYjicB4ck&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2019%2F11%2F04%2F1572868949-carcere-parma-1-gmaps.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQDdC--fyp4zGwGl", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157075009783155&id=252306033154", "link": "http://www.ilgiornale.it/news/cronache/parma-detenuto-magrebino-aggredisce-agente-e-manda-ospedale-1778964.html?mobile_detect=false&fbclid=IwAR3lgqUJcURCOy7otLOx2mms76anQCvhE6U7l54GeYC2Q-xFf6jp7i_Lm_I"} +{"post_id": "10157074802968155", "text": "\u201cIl popolo di Salvini si professa cattolico ma non lo \u00e8...\u201d\nParola di monsignor Mogavero.\nCaspita amici, vi conosce uno per uno per giudicarvi con tale sicurezza!\nIo mi tengo stretta la mia Fede e l\u2019amore per i miei figli e per l\u2019Italia. Amen.", "post_text": "\u201cIl popolo di Salvini si professa cattolico ma non lo \u00e8...\u201d\nParola di monsignor Mogavero.\nCaspita amici, vi conosce uno per uno per giudicarvi con tale sicurezza!\nIo mi tengo stretta la mia Fede e l\u2019amore per i miei figli e per l\u2019Italia. Amen.", "shared_text": "", "time": "2019-11-04 13:32:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75264939_10157074802698155_1971611287053926400_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=i9m7rCkVFIgAQm2VbCXi1VKBbPmi19QQ4hzW9_UA1IbImQbLf9mrN5qmg&_nc_ht=scontent-cdt1-1.xx&oh=b8f2114b79cbc4fe80f5625e9b3a13fd&oe=5E3E865C", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157074802968155&id=252306033154", "link": null} +{"post_id": "10157074834573155", "text": "Amici Emiliani e amici Romagnoli, segnatevi questa data!\n\ud835\uddda\ud835\uddf6\ud835\uddfc\ud835\ude03\ud835\uddf2\ud835\uddf1\ud835\uddf6\u0300 \ud835\udfed\ud835\udff0 \ud835\udde1\ud835\udde2\ud835\udde9\ud835\uddd8\ud835\udde0\ud835\uddd5\ud835\udde5\ud835\uddd8 io e Lucia Borgonzoni vi aspettiamo al \ud835\udde3\ud835\uddee\ud835\uddf9\ud835\uddee\ud835\uddf1\ud835\uddfc\ud835\ude07\ud835\ude07\ud835\uddee \ud835\uddf1\ud835\uddf6 \ud835\uddd5\ud835\uddfc\ud835\uddf9\ud835\uddfc\ud835\uddf4\ud835\uddfb\ud835\uddee, alle 20.30. Impossibile mancare: dovremo essere in migliaia!\nDai che\u2026 Altro Domenica 26 Gennaio libereremo finalmente anche questa splendida regione dalla sinistra.\nBasta PD! L'Emilia-Romagna \u00e8 di tutti!\n\ud83d\udce9\ud835\ude1d\ud835\ude36\ud835\ude30\ud835\ude2a \ud835\ude25\ud835\ude22\ud835\ude33\ud835\ude24\ud835\ude2a \ud835\ude36\ud835\ude2f\ud835\ude22 \ud835\ude2e\ud835\ude22\ud835\ude2f\ud835\ude30 \ud835\ude2a\ud835\ude2f \ud835\ude0c\ud835\ude2e\ud835\ude2a\ud835\ude2d\ud835\ude2a\ud835\ude22-\ud835\ude19\ud835\ude30\ud835\ude2e\ud835\ude22\ud835\ude28\ud835\ude2f\ud835\ude22?\n\ud835\ude1a\ud835\ude24\ud835\ude33\ud835\ude2a\ud835\ude37\ud835\ude2a \ud835\ude22: \ud835\ude26\ud835\ude2e\ud835\ude2a\ud835\ude2d\ud835\ude2a\ud835\ude22\ud835\ude33\ud835\ude30\ud835\ude2e\ud835\ude22\ud835\ude28\ud835\ude2f\ud835\ude22@\ud835\ude2d\ud835\ude26\ud835\ude28\ud835\ude22\ud835\ude30\ud835\ude2f\ud835\ude2d\ud835\ude2a\ud835\ude2f\ud835\ude26.\ud835\ude2a\ud835\ude35", "post_text": "Amici Emiliani e amici Romagnoli, segnatevi questa data!\n\ud835\uddda\ud835\uddf6\ud835\uddfc\ud835\ude03\ud835\uddf2\ud835\uddf1\ud835\uddf6\u0300 \ud835\udfed\ud835\udff0 \ud835\udde1\ud835\udde2\ud835\udde9\ud835\uddd8\ud835\udde0\ud835\uddd5\ud835\udde5\ud835\uddd8 io e Lucia Borgonzoni vi aspettiamo al \ud835\udde3\ud835\uddee\ud835\uddf9\ud835\uddee\ud835\uddf1\ud835\uddfc\ud835\ude07\ud835\ude07\ud835\uddee \ud835\uddf1\ud835\uddf6 \ud835\uddd5\ud835\uddfc\ud835\uddf9\ud835\uddfc\ud835\uddf4\ud835\uddfb\ud835\uddee, alle 20.30. Impossibile mancare: dovremo essere in migliaia!\nDai che\u2026 Altro Domenica 26 Gennaio libereremo finalmente anche questa splendida regione dalla sinistra.\nBasta PD! L'Emilia-Romagna \u00e8 di tutti!\n\ud83d\udce9\ud835\ude1d\ud835\ude36\ud835\ude30\ud835\ude2a \ud835\ude25\ud835\ude22\ud835\ude33\ud835\ude24\ud835\ude2a \ud835\ude36\ud835\ude2f\ud835\ude22 \ud835\ude2e\ud835\ude22\ud835\ude2f\ud835\ude30 \ud835\ude2a\ud835\ude2f \ud835\ude0c\ud835\ude2e\ud835\ude2a\ud835\ude2d\ud835\ude2a\ud835\ude22-\ud835\ude19\ud835\ude30\ud835\ude2e\ud835\ude22\ud835\ude28\ud835\ude2f\ud835\ude22?\n\ud835\ude1a\ud835\ude24\ud835\ude33\ud835\ude2a\ud835\ude37\ud835\ude2a \ud835\ude22: \ud835\ude26\ud835\ude2e\ud835\ude2a\ud835\ude2d\ud835\ude2a\ud835\ude22\ud835\ude33\ud835\ude30\ud835\ude2e\ud835\ude22\ud835\ude28\ud835\ude2f\ud835\ude22@\ud835\ude2d\ud835\ude26\ud835\ude28\ud835\ude22\ud835\ude30\ud835\ude2f\ud835\ude2d\ud835\ude2a\ud835\ude2f\ud835\ude26.\ud835\ude2a\ud835\ude35", "shared_text": "", "time": "2019-11-04 12:45:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p168x128/74224994_10157074834063155_4262113751123099648_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=wPzb4QGDstcAQlM5t34oENz28qrdyhx8HaHmC-zSj6krzmvLK49rHvepA&_nc_ht=scontent-cdt1-1.xx&oh=74b2b3980b02b28fca32e48c72ae70e3&oe=5E4EC136", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10157066094768155", "text": "Vi presento il viceministro grillino dei Trasporti, ma dove l'hanno trovato???\nAnche se al governo ci sono loro e il PD, la risposta \u00e8 sempre: #colpadiSalvini.\nSono fantastici \ud83d\ude00\ud83d\ude00\ud83d\ude00", "post_text": "Vi presento il viceministro grillino dei Trasporti, ma dove l'hanno trovato???\nAnche se al governo ci sono loro e il PD, la risposta \u00e8 sempre: #colpadiSalvini.\nSono fantastici \ud83d\ude00\ud83d\ude00\ud83d\ude00", "shared_text": "", "time": "2019-11-04 11:48:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157066094768155&id=252306033154", "link": null} +{"post_id": "10157074531443155", "text": "Onore a chi difende i nostri confini, il nostro onore, la nostra sicurezza e la nostra libert\u00e0. \ud83c\uddee\ud83c\uddf9\nDisprezzo per i complici, i vigliacchi e i traditori.", "post_text": "Onore a chi difende i nostri confini, il nostro onore, la nostra sicurezza e la nostra libert\u00e0. \ud83c\uddee\ud83c\uddf9\nDisprezzo per i complici, i vigliacchi e i traditori.", "shared_text": "", "time": "2019-11-04 10:13:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75362504_10157074530778155_2865217891987357696_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=9mcISb-ov6wAQmoAe4U1TZNi7Tyw58hDKw5LnWvS4t752Qdt89koxSbCg&_nc_ht=scontent-cdt1-1.xx&oh=cb6fa8e85a5d3a0fe8fedc93105d401c&oe=5E8D0569", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157074531443155&id=252306033154", "link": null} +{"post_id": "10157073187443155", "text": "Vi piace? Vi assicuro che da qui al 26 gennaio il mio impegno per mandare a casa la sinistra anche in Emilia-Romagna sar\u00e0 massimo! Conto, come sempre, su di voi! #26gennaiovotoLega", "post_text": "Vi piace? Vi assicuro che da qui al 26 gennaio il mio impegno per mandare a casa la sinistra anche in Emilia-Romagna sar\u00e0 massimo! Conto, come sempre, su di voi! #26gennaiovotoLega", "shared_text": "", "time": "2019-11-04 09:17:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/75282326_10157073181313155_7540809506201010176_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=pNeJ-cooLJsAQkc8JTGnDMoCrgYq8PjUed51ZaU7dUEg82yK28xUJX6Rg&_nc_ht=scontent-cdt1-1.xx&oh=8d9742bc27f7b36b79159f79bce60cbe&oe=5E87C4AF", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157073187443155&id=252306033154", "link": null} +{"post_id": "10157073160378155", "text": "Buongiorno e buon inizio di settimana a tutti voi!\nUn ricordo della mia domenica: a chi la regaliamo? \u263a\ufe0f", "post_text": "Buongiorno e buon inizio di settimana a tutti voi!\nUn ricordo della mia domenica: a chi la regaliamo? \u263a\ufe0f", "shared_text": "", "time": "2019-11-04 08:05:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10157073160378155&id=252306033154", "link": null} +{"post_id": "2430707263917188", "text": "Speriamo che il governo stanotte non si inventi anche una tassa sulla NEVE\ud83d\ude02\nE intanto in poche ore stanno sbarcando quasi 300 immigrati, roba da matti...\nBuona domenica Amici, io non mollo!", "post_text": "Speriamo che il governo stanotte non si inventi anche una tassa sulla NEVE\ud83d\ude02\nE intanto in poche ore stanno sbarcando quasi 300 immigrati, roba da matti...\nBuona domenica Amici, io non mollo!", "shared_text": "", "time": "2019-11-03 12:35:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2430707263917188&id=252306033154", "link": null} +{"post_id": "10157069314343155", "text": "Quella istituita \u00e8 una \"bella\" commissione sovietica, andate a rileggere \"1984\" di Orwell. Porro smaschera in 2 minuti l'ipocrisia di quelli che, se dici \"prima gli italiani\", ti accusano di \"razzismo,\u2026 Altro fascismo, nazismo\"...\nVe lo garantisco: il bavaglio non ce lo faremo mettere.\nP.s. Sarebbe interessante sapere dai tanti che a sinistra condannano, giustamente, l'idiozia dell'antisemitismo, l'opinione riguardo il diritto all'esistenza dello Stato di Israele (per il quale, guarda caso, molti non spendono mai una parola).", "post_text": "Quella istituita \u00e8 una \"bella\" commissione sovietica, andate a rileggere \"1984\" di Orwell. Porro smaschera in 2 minuti l'ipocrisia di quelli che, se dici \"prima gli italiani\", ti accusano di \"razzismo,\u2026 Altro fascismo, nazismo\"...\nVe lo garantisco: il bavaglio non ce lo faremo mettere.\nP.s. Sarebbe interessante sapere dai tanti che a sinistra condannano, giustamente, l'idiozia dell'antisemitismo, l'opinione riguardo il diritto all'esistenza dello Stato di Israele (per il quale, guarda caso, molti non spendono mai una parola).", "shared_text": "", "time": "2019-11-02 19:36:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=575772529853899&id=252306033154", "link": null} +{"post_id": "969153930111591", "text": "Questi fra un po\u2019 tassano anche l\u2019aria che respiriamo, roba da matti.\nConte, Renzi, Di Maio e Zingaretti: solo chiacchiere, tasse e sbarchi.", "post_text": "Questi fra un po\u2019 tassano anche l\u2019aria che respiriamo, roba da matti.\nConte, Renzi, Di Maio e Zingaretti: solo chiacchiere, tasse e sbarchi.", "shared_text": "", "time": "2019-11-02 12:06:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=969153930111591&id=252306033154", "link": null} +{"post_id": "407185369959998", "text": "Al kompagno Vauro d\u00e0 fastidio che si mangi pane e salame? Ascoltare per credere, roba da matti \ud83d\ude00 Poi si stupiscono se la sinistra non la vota pi\u00f9 nessuno... Buon pomeriggio Amici.", "post_text": "Al kompagno Vauro d\u00e0 fastidio che si mangi pane e salame? Ascoltare per credere, roba da matti \ud83d\ude00 Poi si stupiscono se la sinistra non la vota pi\u00f9 nessuno... Buon pomeriggio Amici.", "shared_text": "", "time": "2019-11-01 16:25:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=407185369959998&id=252306033154", "link": null} +{"post_id": "460215041367600", "text": "In diretta dalla Festa della Zucca di Ziano Piacentino (Piacenza) \ud83c\udf83\nLunga vita alle nostre tradizioni! \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta dalla Festa della Zucca di Ziano Piacentino (Piacenza) \ud83c\udf83\nLunga vita alle nostre tradizioni! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-10-31 22:12:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=460215041367600&id=252306033154", "link": null} +{"post_id": "712095999275332", "text": "Il 26 gennaio scriveremo una pagina della storia italiana: dopo 50 anni libereremo anche l\u2019Emilia-Romagna dalla sinistra, riportando al centro il merito e non la tessera di partito.", "post_text": "Il 26 gennaio scriveremo una pagina della storia italiana: dopo 50 anni libereremo anche l\u2019Emilia-Romagna dalla sinistra, riportando al centro il merito e non la tessera di partito.", "shared_text": "", "time": "2019-10-31 21:03:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=712095999275332&id=252306033154", "link": null} +{"post_id": "759380184503970", "text": "Buonasera Amici, un saluto da Parma!\nSiete pronti a fare la storia anche in Emilia-Romagna?", "post_text": "Buonasera Amici, un saluto da Parma!\nSiete pronti a fare la storia anche in Emilia-Romagna?", "shared_text": "", "time": "2019-10-31 18:39:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=759380184503970&id=252306033154", "link": null} +{"post_id": "1410105025812910", "text": "E intanto oggi a Pozzallo \u00e8 arrivata la Ocean Viking con 104 passeggeri, mentre le altre navi sono in giro per il Mediterraneo, pronte a fare rotta verso l'Italia...\nDopo l\u2019invito al Viminale, le Ong si scatenano. Ricomincia la pacchia, grazie al governo sbarchi, tasse e manette.", "post_text": "E intanto oggi a Pozzallo \u00e8 arrivata la Ocean Viking con 104 passeggeri, mentre le altre navi sono in giro per il Mediterraneo, pronte a fare rotta verso l'Italia...\nDopo l\u2019invito al Viminale, le Ong si scatenano. Ricomincia la pacchia, grazie al governo sbarchi, tasse e manette.", "shared_text": "", "time": "2019-10-30 23:00:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1410105025812910&id=252306033154", "link": null} +{"post_id": "2478279262449109", "text": "Dopo la protesta della Polizia di settimana scorsa, ora anche i Vigili del Fuoco scendono in piazza contro il governo tasse, sbarchi e manette.\nIncredibile, Conte, Renzi e Di Maio riescono a far arrabbiare proprio tutti...", "post_text": "Dopo la protesta della Polizia di settimana scorsa, ora anche i Vigili del Fuoco scendono in piazza contro il governo tasse, sbarchi e manette.\nIncredibile, Conte, Renzi e Di Maio riescono a far arrabbiare proprio tutti...", "shared_text": "", "time": "2019-10-30 19:42:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2478279262449109&id=252306033154", "link": null} +{"post_id": "2383019385294615", "text": "Secondo voi perch\u00e9 con la Lega al governo gli sbarchi erano crollati? Per fortuna o perch\u00e9 c\u2019era una linea politica SERIA E RIGOROSA? L\u2019Italia era tornata ad essere rispettata, ora invece le Ong vengono invitate al Viminale...\nVi ripropongo la mia intervista dalla Berlinguer su Rai Tre, commentate e condividete!", "post_text": "Secondo voi perch\u00e9 con la Lega al governo gli sbarchi erano crollati? Per fortuna o perch\u00e9 c\u2019era una linea politica SERIA E RIGOROSA? L\u2019Italia era tornata ad essere rispettata, ora invece le Ong vengono invitate al Viminale...\nVi ripropongo la mia intervista dalla Berlinguer su Rai Tre, commentate e condividete!", "shared_text": "", "time": "2019-10-30 13:31:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2383019385294615&id=252306033154", "link": null} +{"post_id": "10157058434803155", "text": "In diretta dal mercato di Torpignattara a Roma. Ridotta a citt\u00e0 sporca, caotica, insicura: la Capitale ha bisogno di rinascere!\nGi\u00e0 decine di migliaia di firme raccolte!\nVirginia, non \u00e8 il tuo mestiere: #raggidimettiti", "post_text": "In diretta dal mercato di Torpignattara a Roma. Ridotta a citt\u00e0 sporca, caotica, insicura: la Capitale ha bisogno di rinascere!\nGi\u00e0 decine di migliaia di firme raccolte!\nVirginia, non \u00e8 il tuo mestiere: #raggidimettiti", "shared_text": "", "time": "2019-10-30 11:35:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=452054315421668&id=252306033154", "link": null} +{"post_id": "1389079461263411", "text": "Buoni rapporti con tutti, ma servi di nessuno. Se Pd, 5Stelle e Renzi barattano con l'Europa uno \"zero virgola\" di elasticit\u00e0 sui conti in cambio dei porti aperti a tutti... non mi sembra una mossa intelligente.\nEcco che cosa ho detto poco fa su Rai Radio 1.", "post_text": "Buoni rapporti con tutti, ma servi di nessuno. Se Pd, 5Stelle e Renzi barattano con l'Europa uno \"zero virgola\" di elasticit\u00e0 sui conti in cambio dei porti aperti a tutti... non mi sembra una mossa intelligente.\nEcco che cosa ho detto poco fa su Rai Radio 1.", "shared_text": "", "time": "2019-10-30 11:01:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1389079461263411&id=252306033154", "link": null} +{"post_id": "552261855522713", "text": "Sono esterrefatto dall\u2019arroganza con cui Renzi, Zingaretti, Conte e Di Maio trattano gli italiani.\nDicono che non vanno d'accordo su nulla, ma non vanno ad elezioni e stanno al governo per paura di andare a\u2026 Altro casa e far vincere la Lega... Ma questi non potranno scappare per sempre e i risultati in Umbria lo dimostrano, in attesa di fare la storia anche in Emilia-Romagna.\nLa mia intervista di ieri sera con Bruno Vespa su Rai Uno, buona serata Amici.", "post_text": "Sono esterrefatto dall\u2019arroganza con cui Renzi, Zingaretti, Conte e Di Maio trattano gli italiani.\nDicono che non vanno d'accordo su nulla, ma non vanno ad elezioni e stanno al governo per paura di andare a\u2026 Altro casa e far vincere la Lega... Ma questi non potranno scappare per sempre e i risultati in Umbria lo dimostrano, in attesa di fare la storia anche in Emilia-Romagna.\nLa mia intervista di ieri sera con Bruno Vespa su Rai Uno, buona serata Amici.", "shared_text": "", "time": "2019-10-29 20:01:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=552261855522713&id=252306033154", "link": null} +{"post_id": "2487078631570381", "text": "Per le navi delle ONG straniere cariche di immigrati ricomincia la pacchia, sindaci e governatori della Lega diranno di NO ad ogni nuovo arrivo di clandestini.\nE mentre i 5Stelle perdono pezzi e il PD perde\u2026 Altro voti, dico ancora GRAZIE alla gente dell\u2019Umbria per l\u2019affetto, la fiducia e il coraggio.\nGioved\u00ec 14 novembre vi aspetto a Bologna\ud83d\ude09", "post_text": "Per le navi delle ONG straniere cariche di immigrati ricomincia la pacchia, sindaci e governatori della Lega diranno di NO ad ogni nuovo arrivo di clandestini.\nE mentre i 5Stelle perdono pezzi e il PD perde\u2026 Altro voti, dico ancora GRAZIE alla gente dell\u2019Umbria per l\u2019affetto, la fiducia e il coraggio.\nGioved\u00ec 14 novembre vi aspetto a Bologna\ud83d\ude09", "shared_text": "", "time": "2019-10-29 18:43:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2487078631570381&id=252306033154", "link": null} +{"post_id": "1233483663528363", "text": "Buon pomeriggio da Roma, Amici. Anche oggi al lavoro per mandare a casa il governo tasse, sbarchi e manette!", "post_text": "Buon pomeriggio da Roma, Amici. Anche oggi al lavoro per mandare a casa il governo tasse, sbarchi e manette!", "shared_text": "", "time": "2019-10-29 17:09:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1233483663528363&id=252306033154", "link": null} +{"post_id": "474433253161644", "text": "Abbiamo vinto di 20 punti, quindi l\u2019unico dato \u00e8 che l\u2019Umbria finalmente CAMBIA, in attesa di mandare a casa la sinistra anche in Emilia-Romagna il prossimo 26 gennaio.\nEcco la mia intervista a Radio24, buona serata Amici!", "post_text": "Abbiamo vinto di 20 punti, quindi l\u2019unico dato \u00e8 che l\u2019Umbria finalmente CAMBIA, in attesa di mandare a casa la sinistra anche in Emilia-Romagna il prossimo 26 gennaio.\nEcco la mia intervista a Radio24, buona serata Amici!", "shared_text": "", "time": "2019-10-28 18:15:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=474433253161644&id=252306033154", "link": null} +{"post_id": "429219824405711", "text": "Ora in diretta su La7, mi seguite?", "post_text": "Ora in diretta su La7, mi seguite?", "shared_text": "", "time": "2019-10-28 12:41:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=429219824405711&id=252306033154", "link": null} +{"post_id": "946179462407416", "text": "In diretta da Perugia, che splendida mattinata! Seguite in diretta e GRAZIE, GRAZIE, GRAZIE anche a VOI che ci siete sempre! Prossimo obiettivo: Emilia-Romagna 26 gennaio!", "post_text": "In diretta da Perugia, che splendida mattinata! Seguite in diretta e GRAZIE, GRAZIE, GRAZIE anche a VOI che ci siete sempre! Prossimo obiettivo: Emilia-Romagna 26 gennaio!", "shared_text": "", "time": "2019-10-28 11:24:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=946179462407416&id=252306033154", "link": null} +{"post_id": "412198926136757", "text": "", "post_text": "", "shared_text": "", "time": "2019-10-28 01:57:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=412198926136757&id=252306033154", "link": null} +{"post_id": "536937443730758", "text": "Ancora in diretta da Perugia! Che soddisfazione, Amici. La Lega stravince in Umbria, Popolo batte Palazzo!", "post_text": "Ancora in diretta da Perugia! Che soddisfazione, Amici. La Lega stravince in Umbria, Popolo batte Palazzo!", "shared_text": "", "time": "2019-10-28 00:40:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=536937443730758&id=252306033154", "link": null} +{"post_id": "537321983751662", "text": "In diretta da Perugia, che storica serata, Amici!", "post_text": "In diretta da Perugia, che storica serata, Amici!", "shared_text": "", "time": "2019-10-28 00:06:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=537321983751662&id=252306033154", "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 54 nuove foto \u2014 presso San Giovanni in Laterano.\n26 ottobre alle ore 20:39 \u00b7 Roma, Lazio \u00b7\nAltre opzioni\nAlcuni splendidi scatti dalla grande manifestazione di piazza San Giovanni a Roma (19 ottobre 2019): 200 MILA italiani uniti dall'orgoglio per la propria Patria e contro il governo abusivo delle poltrone, delle tasse e dell'invasione.\n#orgogliioitaliano", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 54 nuove foto \u2014 presso San Giovanni in Laterano.\n26 ottobre alle ore 20:39 \u00b7 Roma, Lazio \u00b7\nAltre opzioni\nAlcuni splendidi scatti dalla grande manifestazione di piazza San Giovanni a Roma (19 ottobre 2019): 200 MILA italiani uniti dall'orgoglio per la propria Patria e contro il governo abusivo delle poltrone, delle tasse e dell'invasione.\n#orgogliioitaliano", "time": "2019-10-26 21:39:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/73258821_10157047824503155_295843021000278016_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=bhs8wmHvup0AQmHO-v77e0A5VYpkDO5XjKdC0ey_dAa9G9dtm9X5KFpBQ&_nc_ht=scontent-cdt1-1.xx&oh=aab652e34da02a2d9e8f85e3f864a7b1&oe=5E406BBB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "505311713651928", "text": "Governo tasse, sbarchi, insulti e manette, questa domenica dall\u2019Umbria arriver\u00e0 una bella lezione di coraggio, libert\u00e0, onest\u00e0 e democrazia.\nInfo: legaonline.it/umbria", "post_text": "Governo tasse, sbarchi, insulti e manette, questa domenica dall\u2019Umbria arriver\u00e0 una bella lezione di coraggio, libert\u00e0, onest\u00e0 e democrazia.\nInfo: legaonline.it/umbria", "shared_text": "", "time": "2019-10-26 17:30:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=505311713651928&id=252306033154", "link": "http://legaonline.it/umbria?fbclid=IwAR1lRHoMZhYNUxhq8y7j5NG0mYaIFa6mXeGAAhaIUOTmM1Fm0NbXczCKv94"} +{"post_id": "10157045111118155", "text": "Vi ripropongo la mia intervista di ieri a Un Giorno da Pecora su Rai Radio 1, per un po' di leggerezza, ogni tanto non guasta.\nP.s. Pensate che su Facebook alcuni hanno protestato con i conduttori perch\u00e9 era indegno e immorale invitarmi... I soliti tolleranti \"democratici\", bacioni anche a loro! \ud83d\ude18", "post_text": "Vi ripropongo la mia intervista di ieri a Un Giorno da Pecora su Rai Radio 1, per un po' di leggerezza, ogni tanto non guasta.\nP.s. Pensate che su Facebook alcuni hanno protestato con i conduttori perch\u00e9 era indegno e immorale invitarmi... I soliti tolleranti \"democratici\", bacioni anche a loro! \ud83d\ude18", "shared_text": "", "time": "2019-10-25 23:26:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=688273868322020&id=252306033154", "link": null} +{"post_id": "999377453765731", "text": "In diretta da Terni, ultimo incontro di questo lungo e stupendo giro per l'Umbria! Io ce l'ho messa tutta, Amici. Domenica tocca a voi: 5 minuti del vostro tempo, una croce sul simbolo Lega e, dopo 50 anni, liberiamo questa magnifica regione! Seguiteci in diretta. #domenicavotoLega", "post_text": "In diretta da Terni, ultimo incontro di questo lungo e stupendo giro per l'Umbria! Io ce l'ho messa tutta, Amici. Domenica tocca a voi: 5 minuti del vostro tempo, una croce sul simbolo Lega e, dopo 50 anni, liberiamo questa magnifica regione! Seguiteci in diretta. #domenicavotoLega", "shared_text": "", "time": "2019-10-25 21:56:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=999377453765731&id=252306033154", "link": null} +{"post_id": "2260494657574775", "text": "In diretta da Citt\u00e0 di Castello (Perugia).\nState con noi Amici! \ud83d\ude0a\n#domenicavotoLega\nP.s. Aprite la rubrica, chiamate e inviate messaggi: ogni voto conta!", "post_text": "In diretta da Citt\u00e0 di Castello (Perugia).\nState con noi Amici! \ud83d\ude0a\n#domenicavotoLega\nP.s. Aprite la rubrica, chiamate e inviate messaggi: ogni voto conta!", "shared_text": "", "time": "2019-10-25 17:40:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2260494657574775&id=252306033154", "link": null} +{"post_id": "554571065355401", "text": "Buon pomeriggio da San Giustino (Perugia), state con noi! \ud83d\ude0a\n#domenicavotoLega", "post_text": "Buon pomeriggio da San Giustino (Perugia), state con noi! \ud83d\ude0a\n#domenicavotoLega", "shared_text": "", "time": "2019-10-25 16:00:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=554571065355401&id=252306033154", "link": null} +{"post_id": "2555775541155332", "text": "\u26a0 VERGOGNOSO, DIFFONDIAMO, DEVONO VEDERE TUTTI!\nFinti profughi da Paesi \u201cormai sicuri\u201d (!) che pur di rimanere in Italia si fingono gay (alcuni hanno moglie e figli...), con la complicit\u00e0 di alcuni avvocati. \u2026 Altro\nI mangioni dell'accoglienza si fregano le mani e a farne le spese sono i pochi che scappano davvero da guerre e persecuzioni.\nE intanto il governo del tradimento cosa fa? Riapre i porti, triplica gli sbarchi, estende i centri di accoglienza... Non vedo l'ora di riprendere per mano questo Paese! Domenica cominciamo dall'Umbria. #domenicavotoLega", "post_text": "\u26a0 VERGOGNOSO, DIFFONDIAMO, DEVONO VEDERE TUTTI!\nFinti profughi da Paesi \u201cormai sicuri\u201d (!) che pur di rimanere in Italia si fingono gay (alcuni hanno moglie e figli...), con la complicit\u00e0 di alcuni avvocati. \u2026 Altro\nI mangioni dell'accoglienza si fregano le mani e a farne le spese sono i pochi che scappano davvero da guerre e persecuzioni.\nE intanto il governo del tradimento cosa fa? Riapre i porti, triplica gli sbarchi, estende i centri di accoglienza... Non vedo l'ora di riprendere per mano questo Paese! Domenica cominciamo dall'Umbria. #domenicavotoLega", "shared_text": "", "time": "2019-10-24 20:19:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2555775541155332&id=252306033154", "link": null} +{"post_id": "930709483974976", "text": "Insieme ai cittadini di Fontivegge, quartiere di Perugia purtroppo ostaggio di spacciatori e delinquenti. Nessuna tolleranza verso chi vende morte, alla faccia di chi vorrebbe la droga di Stato.", "post_text": "Insieme ai cittadini di Fontivegge, quartiere di Perugia purtroppo ostaggio di spacciatori e delinquenti. Nessuna tolleranza verso chi vende morte, alla faccia di chi vorrebbe la droga di Stato.", "shared_text": "", "time": "2019-10-24 18:46:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=930709483974976&id=252306033154", "link": null} +{"post_id": "743599656084498", "text": "Molti non pagano le tasse perch\u00e9 non possono farlo: qua in Umbria, come purtroppo anche nel resto d'Italia, tanti imprenditori stanno chiudendo perch\u00e9 non arrivano a fine mese. E infatti il governo Pd-5Stelle-Renzi \u00e8 pronto a regalare agli Italiani altre tasse. Siamo alla follia.\nEcco il mio intervento su Rai Radio1.", "post_text": "Molti non pagano le tasse perch\u00e9 non possono farlo: qua in Umbria, come purtroppo anche nel resto d'Italia, tanti imprenditori stanno chiudendo perch\u00e9 non arrivano a fine mese. E infatti il governo Pd-5Stelle-Renzi \u00e8 pronto a regalare agli Italiani altre tasse. Siamo alla follia.\nEcco il mio intervento su Rai Radio1.", "shared_text": "", "time": "2019-10-24 12:20:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=743599656084498&id=252306033154", "link": null} +{"post_id": "420769251944827", "text": "In diretta da Valfabbrica (Perugia). Mancano solo tre giorni e libereremo l'Umbria. State con noi Amici! \ud83d\ude09\n#domenicavotoLega", "post_text": "In diretta da Valfabbrica (Perugia). Mancano solo tre giorni e libereremo l'Umbria. State con noi Amici! \ud83d\ude09\n#domenicavotoLega", "shared_text": "", "time": "2019-10-24 10:56:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=420769251944827&id=252306033154", "link": null} +{"post_id": "535947296978039", "text": "La mia intervista di questa mattina su Rai Tre. Quanta pazienza che ci vuole Amici... \ud83d\ude0a", "post_text": "La mia intervista di questa mattina su Rai Tre. Quanta pazienza che ci vuole Amici... \ud83d\ude0a", "shared_text": "", "time": "2019-10-23 22:09:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=535947296978039&id=252306033154", "link": null} +{"post_id": "558554051630627", "text": "Un saluto dalla bellissima Trevi (Perugia)!\n#domenicavotoLega", "post_text": "Un saluto dalla bellissima Trevi (Perugia)!\n#domenicavotoLega", "shared_text": "", "time": "2019-10-23 18:09:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=558554051630627&id=252306033154", "link": null} +{"post_id": "512387719317132", "text": "Dall\u2019Umbria all\u2019Italia soffia aria di cambiamento!\n#domenicavotolega", "post_text": "Dall\u2019Umbria all\u2019Italia soffia aria di cambiamento!\n#domenicavotolega", "shared_text": "", "time": "2019-10-23 17:28:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=512387719317132&id=252306033154", "link": null} +{"post_id": "507429040107090", "text": "Ancora in diretta da Rocca Cencia (Roma), provando ad entrare nello stabilimento Ama.\n#raggidimettiti", "post_text": "Ancora in diretta da Rocca Cencia (Roma), provando ad entrare nello stabilimento Ama.\n#raggidimettiti", "shared_text": "", "time": "2019-10-23 11:07:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=507429040107090&id=252306033154", "link": null} +{"post_id": "2373534936076995", "text": "Qui Rocca Cencia (Roma) in diretta dallo stabilimento dell\u2019Ama, societ\u00e0 che gestisce la raccolta, il trasporto e lo smaltimento dei rifiuti romani. #raggidimettiti", "post_text": "Qui Rocca Cencia (Roma) in diretta dallo stabilimento dell\u2019Ama, societ\u00e0 che gestisce la raccolta, il trasporto e lo smaltimento dei rifiuti romani. #raggidimettiti", "shared_text": "", "time": "2019-10-23 10:49:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2373534936076995&id=252306033154", "link": null} +{"post_id": "1502299743241816", "text": "In un anno al governo ho potuto dimostrare che \u201cVolere \u00e8 potere\u201d, e se tutti gli ultimi sondaggi dicono che la Lega riceve il consenso di un terzo degli italiani non penso che siano tutti pericolosi estremisti, sbaglio?\nRivedete insieme a me l'intervista su Rai Due! Buona serata Amici \ud83d\ude42", "post_text": "In un anno al governo ho potuto dimostrare che \u201cVolere \u00e8 potere\u201d, e se tutti gli ultimi sondaggi dicono che la Lega riceve il consenso di un terzo degli italiani non penso che siano tutti pericolosi estremisti, sbaglio?\nRivedete insieme a me l'intervista su Rai Due! Buona serata Amici \ud83d\ude42", "shared_text": "", "time": "2019-10-22 19:45:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1502299743241816&id=252306033154", "link": null} +{"post_id": "679919555747149", "text": "Buongiorno Amici! Seguitemi in diretta dal mercato di Piazza Epiro a Roma!\n#raggidimettiti", "post_text": "Buongiorno Amici! Seguitemi in diretta dal mercato di Piazza Epiro a Roma!\n#raggidimettiti", "shared_text": "", "time": "2019-10-22 10:05:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=679919555747149&id=252306033154", "link": null} +{"post_id": "421131521937874", "text": "\ud83d\udd34Scene di ordinaria follia quotidiana, purtroppo, al quartiere del Vasto a Napoli. Intanto il governo apre i porti a tutti... #Contevergogna, gli Italiani sapranno \u201cpremiarvi\u201d gi\u00e0 questa domenica in Umbria.", "post_text": "\ud83d\udd34Scene di ordinaria follia quotidiana, purtroppo, al quartiere del Vasto a Napoli. Intanto il governo apre i porti a tutti... #Contevergogna, gli Italiani sapranno \u201cpremiarvi\u201d gi\u00e0 questa domenica in Umbria.", "shared_text": "", "time": "2019-10-21 22:16:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=421131521937874&id=252306033154", "link": null} +{"post_id": "751152515308934", "text": "Vi ripropongo la mia intervista di questa mattina su La7 con Myrta Merlino.\nBuona serata Amici!", "post_text": "Vi ripropongo la mia intervista di questa mattina su La7 con Myrta Merlino.\nBuona serata Amici!", "shared_text": "", "time": "2019-10-21 19:40:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=751152515308934&id=252306033154", "link": null} +{"post_id": "2525874457497261", "text": "Il voto di domenica sar\u00e0 decisivo sia per l'Umbria, spedendo la sinistra a casa dopo 50 anni, che per l'Italia, mandando un segnale politico nazionale forte al governo del tradimento, alla faccia di chi considera piccola e poco determinante questa splendida terra.\nVi ripropongo la mia intervista di questa mattina su RTL 102.5.", "post_text": "Il voto di domenica sar\u00e0 decisivo sia per l'Umbria, spedendo la sinistra a casa dopo 50 anni, che per l'Italia, mandando un segnale politico nazionale forte al governo del tradimento, alla faccia di chi considera piccola e poco determinante questa splendida terra.\nVi ripropongo la mia intervista di questa mattina su RTL 102.5.", "shared_text": "", "time": "2019-10-21 19:00:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2525874457497261&id=252306033154", "link": null} +{"post_id": "630823314120089", "text": "Ancora GRAZIE per la splendida piazza di Roma, e domenica toccher\u00e0 all\u2019Umbria.\nIl tempo \u00e8 galantuomo, si vince Amici\ud83d\ude0a", "post_text": "Ancora GRAZIE per la splendida piazza di Roma, e domenica toccher\u00e0 all\u2019Umbria.\nIl tempo \u00e8 galantuomo, si vince Amici\ud83d\ude0a", "shared_text": "", "time": "2019-10-21 18:34:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=630823314120089&id=252306033154", "link": null} +{"post_id": "1749268915217327", "text": "In meno di due mesi questo governo abusivo \u00e8 riuscito a:\n- Litigare un giorno s\u00ec e l'altro pure;\n- Triplicare gli sbarchi;\n- Proporre tasse su affitti, bibite zuccherate, diesel, plastica, contante;\n- Bloccare\u2026 Altro leggi come l'educazione civica nelle scuole e telecamere negli asili e case riposo.\nNon vedo l'ora che arrivi domenica, quando gli umbri potranno finalmente dare una sonora lezione a questi geni.\nEcco che la mia intervista di ieri sera da Giletti.", "post_text": "In meno di due mesi questo governo abusivo \u00e8 riuscito a:\n- Litigare un giorno s\u00ec e l'altro pure;\n- Triplicare gli sbarchi;\n- Proporre tasse su affitti, bibite zuccherate, diesel, plastica, contante;\n- Bloccare\u2026 Altro leggi come l'educazione civica nelle scuole e telecamere negli asili e case riposo.\nNon vedo l'ora che arrivi domenica, quando gli umbri potranno finalmente dare una sonora lezione a questi geni.\nEcco che la mia intervista di ieri sera da Giletti.", "shared_text": "", "time": "2019-10-21 13:44:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1749268915217327&id=252306033154", "link": null} +{"post_id": "570844243454431", "text": "In diretta dal Festival Internazionale del cioccolato di Perugia \ud83d\ude0b\nSeguiteci!", "post_text": "In diretta dal Festival Internazionale del cioccolato di Perugia \ud83d\ude0b\nSeguiteci!", "shared_text": "", "time": "2019-10-20 11:47:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=570844243454431&id=252306033154", "link": null} +{"post_id": "10157026462648155", "text": "Oggi a Roma in piazza San Giovanni mi avete fatto provare emozioni che nessuna poltrona e nessun ministero potranno mai regalarmi.\nINSIEME, si pu\u00f2.\nGRAZIE, vi voglio bene!\n#OrgoglioItaliano :it:", "post_text": "Oggi a Roma in piazza San Giovanni mi avete fatto provare emozioni che nessuna poltrona e nessun ministero potranno mai regalarmi.\nINSIEME, si pu\u00f2.\nGRAZIE, vi voglio bene!\n#OrgoglioItaliano :it:", "shared_text": "", "time": "2019-10-19 23:00:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=405945966762426&id=252306033154", "link": null} +{"post_id": "2468068859929689", "text": "Conte e Di Maio che tassano bibite, biscotti, benzina e partite IVA, Renzi che vuole tornare alla legge Fornero, Grillo che vuole togliere il diritto di voto agli anziani.\nScemo e pi\u00f9 scemo al governo!\nIo sono in piazza San Giovanni, c\u2019\u00e8 uno splendido sole, vi aspetto domani, saremo una marea umana, pacifica e determinata\ud83d\ude0a", "post_text": "Conte e Di Maio che tassano bibite, biscotti, benzina e partite IVA, Renzi che vuole tornare alla legge Fornero, Grillo che vuole togliere il diritto di voto agli anziani.\nScemo e pi\u00f9 scemo al governo!\nIo sono in piazza San Giovanni, c\u2019\u00e8 uno splendido sole, vi aspetto domani, saremo una marea umana, pacifica e determinata\ud83d\ude0a", "shared_text": "", "time": "2019-10-18 12:26:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2468068859929689&id=252306033154", "link": null} +{"post_id": "1115433745309185", "text": "In diretta da Orvieto (Terni) per l'incontro sulla tutela delle nostre Forze dell'Ordine. State con noi!", "post_text": "In diretta da Orvieto (Terni) per l'incontro sulla tutela delle nostre Forze dell'Ordine. State con noi!", "shared_text": "", "time": "2019-10-17 15:23:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1115433745309185&id=252306033154", "link": null} +{"post_id": "462989434357261", "text": "Nuove tasse su benzina, sigarette elettroniche, bibite zuccherate e seconde case, tentativo di blocco di Quota 100.\nIn pi\u00f9, nascosti da quasi tutti i giornali e le tiv\u00f9, quasi 400 sbarchi nelle ultime ore.\n#contevergogna ci vediamo a Roma in piazza San Giovanni alle 15 sabato.", "post_text": "Nuove tasse su benzina, sigarette elettroniche, bibite zuccherate e seconde case, tentativo di blocco di Quota 100.\nIn pi\u00f9, nascosti da quasi tutti i giornali e le tiv\u00f9, quasi 400 sbarchi nelle ultime ore.\n#contevergogna ci vediamo a Roma in piazza San Giovanni alle 15 sabato.", "shared_text": "", "time": "2019-10-14 19:15:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=462989434357261&id=252306033154", "link": null} +{"post_id": "760368281075225", "text": "Oggi su Rai Tre ho ribadito che non bastano gli appelli alla pace, se uno \u00e8 al governo interviene senza cedere ai ricatti.\nE visto che Erdogan ha minacciato di aprire le porte a 3 milioni e mezzo di immigrati, possiamo dire una volta per tutte che va eliminata qualsiasi ipotesi di adesione della Turchia all'Unione Europea?", "post_text": "Oggi su Rai Tre ho ribadito che non bastano gli appelli alla pace, se uno \u00e8 al governo interviene senza cedere ai ricatti.\nE visto che Erdogan ha minacciato di aprire le porte a 3 milioni e mezzo di immigrati, possiamo dire una volta per tutte che va eliminata qualsiasi ipotesi di adesione della Turchia all'Unione Europea?", "shared_text": "", "time": "2019-10-13 21:40:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=760368281075225&id=252306033154", "link": null} +{"post_id": "405893563433589", "text": "In diretta da Montecastrilli! Che bello questo fine settimana tra i borghi e i paesaggi Umbri. \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Montecastrilli! Che bello questo fine settimana tra i borghi e i paesaggi Umbri. \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-10-13 17:53:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=405893563433589&id=252306033154", "link": null} +{"post_id": "395105074729658", "text": "Un saluto da una bellissima Foligno!\nGuardate che piazza, alla faccia di chi ci vuole male \ud83d\ude09\nAvanti tutta!\n#27ottobrevotoLega", "post_text": "Un saluto da una bellissima Foligno!\nGuardate che piazza, alla faccia di chi ci vuole male \ud83d\ude09\nAvanti tutta!\n#27ottobrevotoLega", "shared_text": "", "time": "2019-10-12 19:02:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=395105074729658&id=252306033154", "link": null} +{"post_id": "2433141633574341", "text": "Qui Giano dell'Umbria (Perugia).\nProseguono le tappe di questo fine settimana umbro!\nState con noi \ud83c\uddee\ud83c\uddf9\n#27ottobrevotoLega", "post_text": "Qui Giano dell'Umbria (Perugia).\nProseguono le tappe di questo fine settimana umbro!\nState con noi \ud83c\uddee\ud83c\uddf9\n#27ottobrevotoLega", "shared_text": "", "time": "2019-10-12 17:06:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2433141633574341&id=252306033154", "link": null} +{"post_id": "508936909838874", "text": "\"Smettetela con la storia del povero pazzo: \u00e8 un violento!\"\nGiordano esemplare. Da ascoltare!", "post_text": "\"Smettetela con la storia del povero pazzo: \u00e8 un violento!\"\nGiordano esemplare. Da ascoltare!", "shared_text": "", "time": "2019-10-11 13:30:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=508936909838874&id=252306033154", "link": null} +{"post_id": "2502369163383581", "text": "I geni al governo hanno ri-spalancato i porti e cos\u2019hanno ottenuto in cambio dall\u2019Europa? Zero.\nQuelli che si definiscono \u201cbuoni\u201d, al contrario di Salvini brutto, cattivo e razzista, hanno sulla coscienza la\u2026 Altro responsabilit\u00e0 dell\u2019aumento delle partenze e dei maggiori morti degli ultimi giorni.\nMi auguro che non si torni indietro di 2 anni, altrimenti sar\u00e0 un dramma.\nEcco che cosa ho detto questa mattina su Canale 5.", "post_text": "I geni al governo hanno ri-spalancato i porti e cos\u2019hanno ottenuto in cambio dall\u2019Europa? Zero.\nQuelli che si definiscono \u201cbuoni\u201d, al contrario di Salvini brutto, cattivo e razzista, hanno sulla coscienza la\u2026 Altro responsabilit\u00e0 dell\u2019aumento delle partenze e dei maggiori morti degli ultimi giorni.\nMi auguro che non si torni indietro di 2 anni, altrimenti sar\u00e0 un dramma.\nEcco che cosa ho detto questa mattina su Canale 5.", "shared_text": "", "time": "2019-10-10 14:03:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2502369163383581&id=252306033154", "link": null} +{"post_id": "1373682852786626", "text": "Ieri sera da Floris non mi sono certo annoiato: riguardate e commentate \ud83d\ude0a\nBuon pranzo Amici e sempre avanti a testa alta!", "post_text": "Ieri sera da Floris non mi sono certo annoiato: riguardate e commentate \ud83d\ude0a\nBuon pranzo Amici e sempre avanti a testa alta!", "shared_text": "", "time": "2019-10-09 13:44:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1373682852786626&id=252306033154", "link": null} +{"post_id": "801697063578902", "text": "Un saluto da Ferentillo (Terni), Amici \ud83d\ude0a\nSeguiteci in diretta! #27ottobrevotoLega", "post_text": "Un saluto da Ferentillo (Terni), Amici \ud83d\ude0a\nSeguiteci in diretta! #27ottobrevotoLega", "shared_text": "", "time": "2019-10-08 12:43:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=801697063578902&id=252306033154", "link": null} +{"post_id": "482968055590068", "text": "Qui Terni, pronti a fare la storia il 27 ottobre!\n#27ottobrevotoLega", "post_text": "Qui Terni, pronti a fare la storia il 27 ottobre!\n#27ottobrevotoLega", "shared_text": "", "time": "2019-10-08 10:57:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=482968055590068&id=252306033154", "link": null} +{"post_id": "755933778191438", "text": "Qui Terni, al carcere di Sabbione, insieme a donne e uomini della Polizia penitenziaria.\nState con noi.", "post_text": "Qui Terni, al carcere di Sabbione, insieme a donne e uomini della Polizia penitenziaria.\nState con noi.", "shared_text": "", "time": "2019-10-08 10:37:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=755933778191438&id=252306033154", "link": null} +{"post_id": "510841136366380", "text": "In diretta da Narni (Terni) nella magnifica Umbria.\nSiete pronti a mandare la sinistra a casa???\n#27ottobrevotoLega", "post_text": "In diretta da Narni (Terni) nella magnifica Umbria.\nSiete pronti a mandare la sinistra a casa???\n#27ottobrevotoLega", "shared_text": "", "time": "2019-10-07 17:47:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=510841136366380&id=252306033154", "link": null} +{"post_id": "377012863206703", "text": "Intervista aperta e sincera ieri sera da Giletti. Eccola!", "post_text": "Intervista aperta e sincera ieri sera da Giletti. Eccola!", "shared_text": "", "time": "2019-10-07 13:15:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=377012863206703&id=252306033154", "link": null} +{"post_id": "688906684950593", "text": "Riapertura dei porti che provoca nuovi morti nel Mediterraneo e sbarchi triplicati, mafiosi fuori di galera, governo che litiga su tutto, tasse in aumento e Conte in fuga.\nBuon luned\u00ec Amici, si lavora per salvare questa Italia, vi abbraccio da Trieste.", "post_text": "Riapertura dei porti che provoca nuovi morti nel Mediterraneo e sbarchi triplicati, mafiosi fuori di galera, governo che litiga su tutto, tasse in aumento e Conte in fuga.\nBuon luned\u00ec Amici, si lavora per salvare questa Italia, vi abbraccio da Trieste.", "shared_text": "", "time": "2019-10-07 10:50:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=688906684950593&id=252306033154", "link": null} +{"post_id": "532398490869380", "text": "Mentre Conte, Di Maio e Renzi passano il tempo a litigare, l\u2019Italia soffre.\nVergognatevi.", "post_text": "Mentre Conte, Di Maio e Renzi passano il tempo a litigare, l\u2019Italia soffre.\nVergognatevi.", "shared_text": "", "time": "2019-10-05 12:06:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=532398490869380&id=252306033154", "link": null} +{"post_id": "1009582882735178", "text": "Altro che Ius Soli e formule simili, la cittadinanza non \u00e8 un biglietto del luna-park, va meditata e desiderata, \u00e8 il risultato di un percorso di integrazione nel nostro Paese. Io la penso cos\u00ec. Suggerisco al\u2026 Altro governo delle tasse e dei porti aperti di occuparsi delle vere priorit\u00e0 dell'Italia. Ecco che cosa ho detto a Rai Radio 1.", "post_text": "Altro che Ius Soli e formule simili, la cittadinanza non \u00e8 un biglietto del luna-park, va meditata e desiderata, \u00e8 il risultato di un percorso di integrazione nel nostro Paese. Io la penso cos\u00ec. Suggerisco al\u2026 Altro governo delle tasse e dei porti aperti di occuparsi delle vere priorit\u00e0 dell'Italia. Ecco che cosa ho detto a Rai Radio 1.", "shared_text": "", "time": "2019-10-04 15:18:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1009582882735178&id=252306033154", "link": null} +{"post_id": "963230684022084", "text": "Ancora in diretta dal Campidoglio, Roma!\n#raggidimettiti", "post_text": "Ancora in diretta dal Campidoglio, Roma!\n#raggidimettiti", "shared_text": "", "time": "2019-10-04 11:14:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=963230684022084&id=252306033154", "link": null} +{"post_id": "10156978472603155", "text": "C'\u00e8 un'Italia da amare e da proteggere! \ud83c\uddee\ud83c\uddf9\nDa una parte i traditori chiusi nel palazzo, dall'altra donne e uomini di un Paese libero. Ci abbracceremo tutti a ROMA il 19 ottobre alle 15 in piazza San Giovanni, tu ci sarai?\n[Tutte le info su: www.legaonline.it]\nLEGAONLINE.IT\n++ FAI GIRARE! SABATO 19 OTTOBRE TUTTI A ROMA ++", "post_text": "C'\u00e8 un'Italia da amare e da proteggere! \ud83c\uddee\ud83c\uddf9\nDa una parte i traditori chiusi nel palazzo, dall'altra donne e uomini di un Paese libero. Ci abbracceremo tutti a ROMA il 19 ottobre alle 15 in piazza San Giovanni, tu ci sarai?\n[Tutte le info su: www.legaonline.it]", "shared_text": "LEGAONLINE.IT\n++ FAI GIRARE! SABATO 19 OTTOBRE TUTTI A ROMA ++", "time": "2019-10-03 19:43:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=684678288695699&id=252306033154", "link": "http://www.legaonline.it/?fbclid=IwAR25I7hPRIzFejkDYdhtMGo1GeVslexn25HeULRU1c40LiDrCrsnFQwU0V0"} +{"post_id": "539802370158690", "text": "Il mio intervento di stamattina su Rai Tre. La situazione dei rifiuti a Roma sicuramente non \u00e8 colpa dei marziani o della sfortuna. La Raggi \u00e8 sindaco da pi\u00f9 di tre anni, non so quanti amministratori delle\u2026 Altro agenzie comunali, quanti assessori, quanti dirigenti, quanti funzionari, quanti consiglieri abbia cambiato. Mi sembra che i romani e i milioni di italiani e stranieri che arrivano si rendano conto del fatto che messa cos\u00ec male (ahim\u00e8 perch\u00e9 ci vivo anch'io) la Capitale non lo \u00e8 mai stata. Bravissima persona ma ha sbagliato mestiere: \u00e8 ora che i romani possano scegliere un nuovo sindaco, raccoglieremo 100mila firme per le sue dimissioni, a partire da sabato 19 ottobre in piazza San Giovanni.", "post_text": "Il mio intervento di stamattina su Rai Tre. La situazione dei rifiuti a Roma sicuramente non \u00e8 colpa dei marziani o della sfortuna. La Raggi \u00e8 sindaco da pi\u00f9 di tre anni, non so quanti amministratori delle\u2026 Altro agenzie comunali, quanti assessori, quanti dirigenti, quanti funzionari, quanti consiglieri abbia cambiato. Mi sembra che i romani e i milioni di italiani e stranieri che arrivano si rendano conto del fatto che messa cos\u00ec male (ahim\u00e8 perch\u00e9 ci vivo anch'io) la Capitale non lo \u00e8 mai stata. Bravissima persona ma ha sbagliato mestiere: \u00e8 ora che i romani possano scegliere un nuovo sindaco, raccoglieremo 100mila firme per le sue dimissioni, a partire da sabato 19 ottobre in piazza San Giovanni.", "shared_text": "", "time": "2019-10-03 13:45:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=539802370158690&id=252306033154", "link": null} +{"post_id": "543604819515841", "text": "In diretta da Bastia Umbra (Perugia). Se voi ci siete noi ci siamo, e il 27 ottobre andiamo a STRA-vincere!\n#27ottobrevotoLega", "post_text": "In diretta da Bastia Umbra (Perugia). Se voi ci siete noi ci siamo, e il 27 ottobre andiamo a STRA-vincere!\n#27ottobrevotoLega", "shared_text": "", "time": "2019-10-03 10:54:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=543604819515841&id=252306033154", "link": null} +{"post_id": "10156977345578155", "text": "Dopo merendine e chinotto, adesso sono formaggi e prosciutti italiani (sul serio, purtroppo) a finire tassate, pagando per errori altrui, grazie a Conte e ai suoi amici di Bruxelles.", "post_text": "Dopo merendine e chinotto, adesso sono formaggi e prosciutti italiani (sul serio, purtroppo) a finire tassate, pagando per errori altrui, grazie a Conte e ai suoi amici di Bruxelles.", "shared_text": "", "time": "2019-10-03 10:15:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=3061215447253717&id=252306033154", "link": null} +{"post_id": "681143155710193", "text": "In diretta da Perugia (CVA di Ponte San Giovanni), seguitemi!\n#27ottobrevotoLega", "post_text": "In diretta da Perugia (CVA di Ponte San Giovanni), seguitemi!\n#27ottobrevotoLega", "shared_text": "", "time": "2019-10-03 09:22:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=681143155710193&id=252306033154", "link": null} +{"post_id": "1152800858249403", "text": "Qui Perugia, sempre dal carcere di Capanne. Seguitemi.", "post_text": "Qui Perugia, sempre dal carcere di Capanne. Seguitemi.", "shared_text": "", "time": "2019-10-02 19:05:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1152800858249403&id=252306033154", "link": null} +{"post_id": "2586981238213813", "text": "Vi ricordate la tassa di Monti sulle barche per \"punire i ricchi e aiutare i poveri\"? I ricchi sono andati a comprare all'estero, mentre operai e artigiani hanno perso il lavoro.\nPensare oggi di massacrare la nostra economia con nuove tasse \u00e8 semplicemente FOLLE.", "post_text": "Vi ricordate la tassa di Monti sulle barche per \"punire i ricchi e aiutare i poveri\"? I ricchi sono andati a comprare all'estero, mentre operai e artigiani hanno perso il lavoro.\nPensare oggi di massacrare la nostra economia con nuove tasse \u00e8 semplicemente FOLLE.", "shared_text": "", "time": "2019-10-02 15:55:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2586981238213813&id=252306033154", "link": null} +{"post_id": "700207683821291", "text": "Mi avete inviato un mare di messaggi, grazie \ud83d\ude42 No, comunque non mi offendo se mi dicono che vado in spiaggia \"in mutande\", alla fine da Lilli Gruber mi trovo sempre bene e mi diverto! \ud83d\ude0a Buona visione!", "post_text": "Mi avete inviato un mare di messaggi, grazie \ud83d\ude42 No, comunque non mi offendo se mi dicono che vado in spiaggia \"in mutande\", alla fine da Lilli Gruber mi trovo sempre bene e mi diverto! \ud83d\ude0a Buona visione!", "shared_text": "", "time": "2019-10-02 13:02:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=700207683821291&id=252306033154", "link": null} +{"post_id": "2509827525898048", "text": "Avete seguito dalla Gruber? Mi pare di essermela cavata, voi che dite? \ud83d\ude0a Riguardate, commentate e condividete! Buona serata Amici!", "post_text": "Avete seguito dalla Gruber? Mi pare di essermela cavata, voi che dite? \ud83d\ude0a Riguardate, commentate e condividete! Buona serata Amici!", "shared_text": "", "time": "2019-10-01 21:38:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2509827525898048&id=252306033154", "link": null} +{"post_id": "10156972499728155", "text": "Mettere nuove tasse in questo momento \u00e8 un crimine. Tasse e sbarchi. Per chi non si sente rappresentato da questo governo abusivo del tradimento l\u2019appuntamento \u00e8 a Roma il 19 ottobre.", "post_text": "Mettere nuove tasse in questo momento \u00e8 un crimine. Tasse e sbarchi. Per chi non si sente rappresentato da questo governo abusivo del tradimento l\u2019appuntamento \u00e8 a Roma il 19 ottobre.", "shared_text": "", "time": "2019-10-01 16:42:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=394607338127178&id=252306033154", "link": null} +{"post_id": "708801502952290", "text": "Il ministro all\u2019Ambiente dice che colpiranno agricoltori e pescatori che hanno \"mezzi vecchi\".\nMa secondo voi un contadino non cambia il trattore perch\u00e9 ci gode o magari perch\u00e9 non riesce a comprarsene uno nuovo? Roba da matti...\nDi questo e molto altro ho parlato ieri notte su Rai Due, ecco l'intervista.", "post_text": "Il ministro all\u2019Ambiente dice che colpiranno agricoltori e pescatori che hanno \"mezzi vecchi\".\nMa secondo voi un contadino non cambia il trattore perch\u00e9 ci gode o magari perch\u00e9 non riesce a comprarsene uno nuovo? Roba da matti...\nDi questo e molto altro ho parlato ieri notte su Rai Due, ecco l'intervista.", "shared_text": "", "time": "2019-10-01 13:52:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=708801502952290&id=252306033154", "link": null} +{"post_id": "2480562382031399", "text": "Governo o manicomio?\nOggi stanno litigando sul Crocifisso nelle scuole, sullo Ius Soli, sull\u2019aumento dell\u2019Iva, su Quota 100, sulle nuove tasse.\nIncapaci, venduti o traditori? O tutto insieme?\nSabato 19 ottobre, ore 15, piazza San Giovanni a Roma: vi aspetto tutti!!!", "post_text": "Governo o manicomio?\nOggi stanno litigando sul Crocifisso nelle scuole, sullo Ius Soli, sull\u2019aumento dell\u2019Iva, su Quota 100, sulle nuove tasse.\nIncapaci, venduti o traditori? O tutto insieme?\nSabato 19 ottobre, ore 15, piazza San Giovanni a Roma: vi aspetto tutti!!!", "shared_text": "", "time": "2019-10-01 11:37:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2480562382031399&id=252306033154", "link": null} +{"post_id": "533746374045754", "text": "Un saluto da Attigliano (Terni), state con noi!\n#27ottobrevotoLega", "post_text": "Un saluto da Attigliano (Terni), state con noi!\n#27ottobrevotoLega", "shared_text": "", "time": "2019-10-01 10:29:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=533746374045754&id=252306033154", "link": null} +{"post_id": "518027875683512", "text": "Qui Stroncone (Terni), ultima tappa umbra della giornata! Ci siete? :)", "post_text": "Qui Stroncone (Terni), ultima tappa umbra della giornata! Ci siete? :)", "shared_text": "", "time": "2019-09-30 18:58:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=518027875683512&id=252306033154", "link": null} +{"post_id": "376206363334999", "text": "Felice di tornare a Norcia, in una terra che ha tanto sofferto ma non si arrende. Segui con noi in diretta, forza Umbria!\n#27ottobrevotoLega", "post_text": "Felice di tornare a Norcia, in una terra che ha tanto sofferto ma non si arrende. Segui con noi in diretta, forza Umbria!\n#27ottobrevotoLega", "shared_text": "", "time": "2019-09-30 15:25:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=376206363334999&id=252306033154", "link": null} +{"post_id": "2499711366915867", "text": "In diretta della splendida Cascia (Perugia, Umbria), dove c'\u00e8 un santuario di una bellezza straordinaria. State con noi!\n#27ottrobrevotoLega", "post_text": "In diretta della splendida Cascia (Perugia, Umbria), dove c'\u00e8 un santuario di una bellezza straordinaria. State con noi!\n#27ottrobrevotoLega", "shared_text": "", "time": "2019-09-30 11:24:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2499711366915867&id=252306033154", "link": null} +{"post_id": "10156967055928155", "text": "Grazie Riccione! Doveva essere una tappa improvvisata con \u201calcuni amici\u201d, \u00e8 diventato un comizio in piedi su una sedia \ud83d\ude0a Ci piace cos\u00ed, questi sono sondaggi!", "post_text": "Grazie Riccione! Doveva essere una tappa improvvisata con \u201calcuni amici\u201d, \u00e8 diventato un comizio in piedi su una sedia \ud83d\ude0a Ci piace cos\u00ed, questi sono sondaggi!", "shared_text": "", "time": "2019-09-29 17:40:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=768716073563643&id=252306033154", "link": null} +{"post_id": "1189650354540413", "text": "Un saluto da Riccione, Romagna, con Lucia Borgonzoni.\nGrazie, anche qui siete tantissimi!\nSeguiteci in diretta!", "post_text": "Un saluto da Riccione, Romagna, con Lucia Borgonzoni.\nGrazie, anche qui siete tantissimi!\nSeguiteci in diretta!", "shared_text": "", "time": "2019-09-29 16:47:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1189650354540413&id=252306033154", "link": null} +{"post_id": "1241669466031422", "text": "In diretta da Bologna al Villaggio Coldiretti, sempre a fianco dei nostri agricoltori e produttori: mangiare e consumare italiano, difendere a tutti i costi le nostre eccellenze \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Bologna al Villaggio Coldiretti, sempre a fianco dei nostri agricoltori e produttori: mangiare e consumare italiano, difendere a tutti i costi le nostre eccellenze \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-29 10:56:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1241669466031422&id=252306033154", "link": null} +{"post_id": "507051846798064", "text": "In diretta da Viadana, Oglio Po, Mantova! Rimanete con noi Amici!", "post_text": "In diretta da Viadana, Oglio Po, Mantova! Rimanete con noi Amici!", "shared_text": "", "time": "2019-09-28 20:29:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=507051846798064&id=252306033154", "link": null} +{"post_id": "400371077293235", "text": "Felice di aver partecipato poco fa a Milano all\u2019iniziativa degli amici dell\u2019Ente Nazionale Sordi.\nNon vi lasceremo mai soli!", "post_text": "Felice di aver partecipato poco fa a Milano all\u2019iniziativa degli amici dell\u2019Ente Nazionale Sordi.\nNon vi lasceremo mai soli!", "shared_text": "", "time": "2019-09-28 18:37:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=400371077293235&id=252306033154", "link": null} +{"post_id": "492873128226832", "text": "Il mio intervento di stamattina dagli amici di Radio CRC Napoli \ud83d\ude0a", "post_text": "Il mio intervento di stamattina dagli amici di Radio CRC Napoli \ud83d\ude0a", "shared_text": "", "time": "2019-09-27 17:22:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=492873128226832&id=252306033154", "link": null} +{"post_id": "10156960105573155", "text": "Un grande Mario Giordano svela, dati alla mano, numeri e incoerenze su sbarchi e immigrazione che i giornaloni non vi dicono.\nQuesto \u00e8 il vero volto del governo dei porti aperti. Gli Italiani non vi perdoneranno.", "post_text": "Un grande Mario Giordano svela, dati alla mano, numeri e incoerenze su sbarchi e immigrazione che i giornaloni non vi dicono.\nQuesto \u00e8 il vero volto del governo dei porti aperti. Gli Italiani non vi perdoneranno.", "shared_text": "", "time": "2019-09-27 14:15:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2201351706830349&id=252306033154", "link": null} +{"post_id": "523569558216782", "text": "Sbarchi aumentati del 110% in meno di un mese, tassa su merendine e gazzosa, revisione di Quota 100 e Flat Tax.\nTranquilli, insieme li fermeremo, anche se non ho capito se questi ci sono o ci fanno\ud83d\ude09", "post_text": "Sbarchi aumentati del 110% in meno di un mese, tassa su merendine e gazzosa, revisione di Quota 100 e Flat Tax.\nTranquilli, insieme li fermeremo, anche se non ho capito se questi ci sono o ci fanno\ud83d\ude09", "shared_text": "", "time": "2019-09-27 12:26:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=523569558216782&id=252306033154", "link": null} +{"post_id": "2444856472417020", "text": "In Umbria i 5 stelle prima denunciano il PD, fanno arrestare gli assessori del PD, poi si alleano col PD\ud83e\udd26\u200d\u2642\nBasta leggere i commenti sulle pagine grilline: il 27 ottobre credo che prenderanno una storica mazzata, gli umbri e tutti gli italiani non sono scemi.", "post_text": "In Umbria i 5 stelle prima denunciano il PD, fanno arrestare gli assessori del PD, poi si alleano col PD\ud83e\udd26\u200d\u2642\nBasta leggere i commenti sulle pagine grilline: il 27 ottobre credo che prenderanno una storica mazzata, gli umbri e tutti gli italiani non sono scemi.", "shared_text": "", "time": "2019-09-26 17:51:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2444856472417020&id=252306033154", "link": null} +{"post_id": "378957406364853", "text": "Se avete qualche minuto vi consiglio questo mio intervento di ieri sera da Mario Giordano! Se state pranzando, buon appetito Amici!", "post_text": "Se avete qualche minuto vi consiglio questo mio intervento di ieri sera da Mario Giordano! Se state pranzando, buon appetito Amici!", "shared_text": "", "time": "2019-09-26 13:47:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=378957406364853&id=252306033154", "link": null} +{"post_id": "2623667597860746", "text": "Un saluto dalla splendida Castiglione del Lago (Perugia), avanti tutta!\n#27ottobrevotoLega", "post_text": "Un saluto dalla splendida Castiglione del Lago (Perugia), avanti tutta!\n#27ottobrevotoLega", "shared_text": "", "time": "2019-09-26 13:17:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2623667597860746&id=252306033154", "link": null} +{"post_id": "498596540717777", "text": "Qui San Feliciano, sullo splendido lago Trasimeno. Seguiteci!\n#27ottobrevotoLega", "post_text": "Qui San Feliciano, sullo splendido lago Trasimeno. Seguiteci!\n#27ottobrevotoLega", "shared_text": "", "time": "2019-09-26 11:13:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=498596540717777&id=252306033154", "link": null} +{"post_id": "2575355769197814", "text": "Scambiando due parole con gli amici di Passignano sul Trasimeno (Perugia) \ud83d\ude0a\nDai che il 27 ottobre andiamo a vincere!\n#27ottobrevotoLega", "post_text": "Scambiando due parole con gli amici di Passignano sul Trasimeno (Perugia) \ud83d\ude0a\nDai che il 27 ottobre andiamo a vincere!\n#27ottobrevotoLega", "shared_text": "", "time": "2019-09-26 10:46:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2575355769197814&id=252306033154", "link": null} +{"post_id": "10156954350808155", "text": "Vogliono tassare i prelievi in banca, i voli, le merendine, le bibite, il gasolio per agricoltori e pescatori...\nQuesti sono al governo da 15 giorni e pensano solo a come penalizzare gli Italiani, roba da\u2026 Altro matti.\nMa il giudizio del Popolo sta arrivando: ancora un mese e i cittadini faranno sentire la loro voce, a partire dall'Umbria. Ed \u00e8 solo l'inizio.", "post_text": "Vogliono tassare i prelievi in banca, i voli, le merendine, le bibite, il gasolio per agricoltori e pescatori...\nQuesti sono al governo da 15 giorni e pensano solo a come penalizzare gli Italiani, roba da\u2026 Altro matti.\nMa il giudizio del Popolo sta arrivando: ancora un mese e i cittadini faranno sentire la loro voce, a partire dall'Umbria. Ed \u00e8 solo l'inizio.", "shared_text": "", "time": "2019-09-25 15:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=393686218222522&id=252306033154", "link": null} +{"post_id": "10156952446228155", "text": "Vi ripropongo la mia intervista nottambula su Rai Radio 2, buona serata Amici! \ud83d\ude0a", "post_text": "Vi ripropongo la mia intervista nottambula su Rai Radio 2, buona serata Amici! \ud83d\ude0a", "shared_text": "", "time": "2019-09-24 22:30:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=431229147500837&id=252306033154", "link": null} +{"post_id": "5508851142552493", "text": "1.716 sbarcati a ieri contro i 947 di tutto settembre 2018, +81%. E a Messina oggi ne stanno sbarcando altri 182. Grazie al governo del tradimento e dei porti aperti ne partiranno di pi\u00f9, ne sbarcheranno di pi\u00f9\u2026 Altro e pi\u00f9 persone rischieranno di morire. Altro che \u201crotazione volontaria\u201d dei porti, purtroppo stanno facendo ritornare l\u2019Italia il campo profughi d\u2019Europa. Ascoltate e per favore condividete!\nNon molliamo!", "post_text": "1.716 sbarcati a ieri contro i 947 di tutto settembre 2018, +81%. E a Messina oggi ne stanno sbarcando altri 182. Grazie al governo del tradimento e dei porti aperti ne partiranno di pi\u00f9, ne sbarcheranno di pi\u00f9\u2026 Altro e pi\u00f9 persone rischieranno di morire. Altro che \u201crotazione volontaria\u201d dei porti, purtroppo stanno facendo ritornare l\u2019Italia il campo profughi d\u2019Europa. Ascoltate e per favore condividete!\nNon molliamo!", "shared_text": "", "time": "2019-09-24 12:54:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=5508851142552493&id=252306033154", "link": null} +{"post_id": "378179313124151", "text": "Porti riaperti e sbarchi in aumento del 50%, tassa sulle merendine e sul gasolio per agricoltori e pescatori, bigiate di massa autorizzate dal ministro, Ius Soli, tassa sui soldi prelevati in banca...\nMa gli abusivi al governo ci sono o ci fanno???", "post_text": "Porti riaperti e sbarchi in aumento del 50%, tassa sulle merendine e sul gasolio per agricoltori e pescatori, bigiate di massa autorizzate dal ministro, Ius Soli, tassa sui soldi prelevati in banca...\nMa gli abusivi al governo ci sono o ci fanno???", "shared_text": "", "time": "2019-09-23 18:48:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=378179313124151&id=252306033154", "link": null} +{"post_id": "378877573060582", "text": "In diretta dallo splendido Salone nautico di Genova \ud83c\uddee\ud83c\uddf9\nSeguitemi!", "post_text": "In diretta dallo splendido Salone nautico di Genova \ud83c\uddee\ud83c\uddf9\nSeguitemi!", "shared_text": "", "time": "2019-09-23 15:17:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=378877573060582&id=252306033154", "link": null} +{"post_id": "528132284423007", "text": "Contentissimo di essere andato ieri sera da Barbara D\u2019Urso su Canale 5: boom di ascolti, tanti nuovi amici sui social e tanto interesse anche da parte di chi segue meno la politica. E poi mi sono divertito e, credo, difeso abbastanza bene \ud83d\ude0a Buon pranzo Amici.", "post_text": "Contentissimo di essere andato ieri sera da Barbara D\u2019Urso su Canale 5: boom di ascolti, tanti nuovi amici sui social e tanto interesse anche da parte di chi segue meno la politica. E poi mi sono divertito e, credo, difeso abbastanza bene \ud83d\ude0a Buon pranzo Amici.", "shared_text": "", "time": "2019-09-23 13:23:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=528132284423007&id=252306033154", "link": null} +{"post_id": "394362911238753", "text": "Vi ripropongo la frizzante oretta fatta questa sera su Canale 5, con inaspettate sorprese! \ud83d\ude09\nGrazie per tutto quello che fate per me, Amici: sono un ragazzo fortunato. Se voi ci siete, io ci sono, sempre! Serena notte \u2764\ufe0f", "post_text": "Vi ripropongo la frizzante oretta fatta questa sera su Canale 5, con inaspettate sorprese! \ud83d\ude09\nGrazie per tutto quello che fate per me, Amici: sono un ragazzo fortunato. Se voi ci siete, io ci sono, sempre! Serena notte \u2764\ufe0f", "shared_text": "", "time": "2019-09-22 23:35:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=394362911238753&id=252306033154", "link": null} +{"post_id": "2845112012184147", "text": "Buonasera Amici! In diretta dalla festa della Lega di Chiuduno (Bergamo). State con noi!", "post_text": "Buonasera Amici! In diretta dalla festa della Lega di Chiuduno (Bergamo). State con noi!", "shared_text": "", "time": "2019-09-22 19:02:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2845112012184147&id=252306033154", "link": null} +{"post_id": "10156944420218155", "text": "Ricordando gli straordinari abbracci di Pontida! Siamo una splendida Comunit\u00e0! \u2764", "post_text": "Ricordando gli straordinari abbracci di Pontida! Siamo una splendida Comunit\u00e0! \u2764", "shared_text": "", "time": "2019-09-21 21:00:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=691876904666094&id=252306033154", "link": null} +{"post_id": "2323983877727217", "text": "Vi ripropongo il mio intervento integrale ieri dagli amici di Atreju, che ringrazio ancora per l'ospitalit\u00e0. Buona serata Amici.", "post_text": "Vi ripropongo il mio intervento integrale ieri dagli amici di Atreju, che ringrazio ancora per l'ospitalit\u00e0. Buona serata Amici.", "shared_text": "", "time": "2019-09-21 19:52:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2323983877727217&id=252306033154", "link": null} +{"post_id": "2094538507519725", "text": "Oggi gazebo e incontri della Lega in 1.500 piazze italiane. PD e 5Stelle chiusi nei palazzi, noi in mezzo alla gente: che bello essere LIBERI!\n\ud83d\udd34Trova gazebo su: legaonline.it/gazebo o firma su salvininonmollare.it", "post_text": "Oggi gazebo e incontri della Lega in 1.500 piazze italiane. PD e 5Stelle chiusi nei palazzi, noi in mezzo alla gente: che bello essere LIBERI!\n\ud83d\udd34Trova gazebo su: legaonline.it/gazebo o firma su salvininonmollare.it", "shared_text": "", "time": "2019-09-21 11:18:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2094538507519725&id=252306033154", "link": "http://legaonline.it/gazebo?fbclid=IwAR0zmrH4QsII4Y-EI6-OZ92KjUoXSyNUK2qh-XBK5ZowrbJlfmMsap1QG6c"} +{"post_id": "956863728010945", "text": "Sbarchi fuori controllo e centri di accoglienza al collasso, a Lampedusa siamo tornati indietro di due anni...\nRicordo che ci sono due decreti sicurezza in vigore che prevedono che i ministri dell\u2019Interno,\u2026 Altro delle Infrastrutture e della Difesa firmino il divieto d\u2019accesso alle ONG in acque nazionali, ma questo governo folle ha deciso di optare per i porti aperti.\nPessimo segnale, gli Italiani se lo ricorderanno quando si presenter\u00e0 il conto delle urne.", "post_text": "Sbarchi fuori controllo e centri di accoglienza al collasso, a Lampedusa siamo tornati indietro di due anni...\nRicordo che ci sono due decreti sicurezza in vigore che prevedono che i ministri dell\u2019Interno,\u2026 Altro delle Infrastrutture e della Difesa firmino il divieto d\u2019accesso alle ONG in acque nazionali, ma questo governo folle ha deciso di optare per i porti aperti.\nPessimo segnale, gli Italiani se lo ricorderanno quando si presenter\u00e0 il conto delle urne.", "shared_text": "", "time": "2019-09-19 13:32:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=956863728010945&id=252306033154", "link": null} +{"post_id": "669958770164698", "text": "Due passi al mercato di Gualdo Tadino (Perugia)! Seguitemi Live.\n#27ottobrevotoLega", "post_text": "Due passi al mercato di Gualdo Tadino (Perugia)! Seguitemi Live.\n#27ottobrevotoLega", "shared_text": "", "time": "2019-09-19 10:54:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=669958770164698&id=252306033154", "link": null} +{"post_id": "1324966184331966", "text": "Dopo anni di balle, tradimenti e pugnalate per cercare di rimanere aggrappato al potere, Renzi ha ancora il coraggio di parlare.\nAltro che \"Italia Viva\", io l'avrei chiamato \"Poltrona Viva\", sarebbe stato pi\u00f9 in linea con il personaggio...", "post_text": "Dopo anni di balle, tradimenti e pugnalate per cercare di rimanere aggrappato al potere, Renzi ha ancora il coraggio di parlare.\nAltro che \"Italia Viva\", io l'avrei chiamato \"Poltrona Viva\", sarebbe stato pi\u00f9 in linea con il personaggio...", "shared_text": "", "time": "2019-09-18 21:30:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1324966184331966&id=252306033154", "link": null} +{"post_id": "521907451952659", "text": "Quanta pazienza che ci vuole Amici!\nChe sia al governo o all'opposizione, per qualche giornalista la musica non cambia mai: la colpa sar\u00e0 sempre e solo di Salvini.\nRispondo con un sorriso e vado avanti \ud83d\ude0a", "post_text": "Quanta pazienza che ci vuole Amici!\nChe sia al governo o all'opposizione, per qualche giornalista la musica non cambia mai: la colpa sar\u00e0 sempre e solo di Salvini.\nRispondo con un sorriso e vado avanti \ud83d\ude0a", "shared_text": "", "time": "2019-09-18 13:30:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=521907451952659&id=252306033154", "link": null} +{"post_id": "2279718495692162", "text": "Per la prima volta da un anno e mezzo, tornano ad aumentare gli sbarchi.\nPazzi, questi sono pazzi e pericolosi.\nMa tutti insieme li fermeremo.", "post_text": "Per la prima volta da un anno e mezzo, tornano ad aumentare gli sbarchi.\nPazzi, questi sono pazzi e pericolosi.\nMa tutti insieme li fermeremo.", "shared_text": "", "time": "2019-09-17 19:03:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2279718495692162&id=252306033154", "link": null} +{"post_id": "383056355647993", "text": "Renzi, Conte, Zingaretti, Di Maio.\n60 milioni di Italiani ostaggi di un gruppo di \u201csignori\u201d incollati alle poltrone.\nNella storia per fortuna, l\u2019energia pulita del Popolo ha sempre sconfitto i giochi di potere\u2026 Altro del Palazzo.\nCittadini, sindaci, governatori, Italiane e Italiani liberi: sabato 19 ottobre alle 15 ci vediamo a Roma, nella bellissima piazza San Giovanni, per costruire un Futuro fondato sul lavoro, sulla sicurezza, sull\u2019onesta e sulla libert\u00e0.\nIo ci sono\ud83d\ude0a.\nOnore e dignit\u00e0 valgono pi\u00f9 di 1.000 poltrone.\nGRAZIE per l\u2019affetto e la fiducia.", "post_text": "Renzi, Conte, Zingaretti, Di Maio.\n60 milioni di Italiani ostaggi di un gruppo di \u201csignori\u201d incollati alle poltrone.\nNella storia per fortuna, l\u2019energia pulita del Popolo ha sempre sconfitto i giochi di potere\u2026 Altro del Palazzo.\nCittadini, sindaci, governatori, Italiane e Italiani liberi: sabato 19 ottobre alle 15 ci vediamo a Roma, nella bellissima piazza San Giovanni, per costruire un Futuro fondato sul lavoro, sulla sicurezza, sull\u2019onesta e sulla libert\u00e0.\nIo ci sono\ud83d\ude0a.\nOnore e dignit\u00e0 valgono pi\u00f9 di 1.000 poltrone.\nGRAZIE per l\u2019affetto e la fiducia.", "shared_text": "", "time": "2019-09-17 12:23:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=383056355647993&id=252306033154", "link": null} +{"post_id": "10156931144228155", "text": "Porro scatenato sull'alleanza PD-5 Stelle nelle regioni! \ud83d\ude42 Ma dopo 50 anni di sinistra, in Umbria c'\u00e8 voglia di cambiare: non c'\u00e8 trucco di palazzo che possa evitarlo, ne sono convinto. #27ottobrevotoLega", "post_text": "Porro scatenato sull'alleanza PD-5 Stelle nelle regioni! \ud83d\ude42 Ma dopo 50 anni di sinistra, in Umbria c'\u00e8 voglia di cambiare: non c'\u00e8 trucco di palazzo che possa evitarlo, ne sono convinto. #27ottobrevotoLega", "shared_text": "", "time": "2019-09-16 21:30:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2466277846744079&id=252306033154", "link": null} +{"post_id": "2173629502747048", "text": "Vi ripropongo il mio intervento di oggi a #Pontida, con ancora un GRAZIE enorme, di cuore, per esserci sempre! Vi voglio bene, andiamo a vincere! \u2764\ufe0f", "post_text": "Vi ripropongo il mio intervento di oggi a #Pontida, con ancora un GRAZIE enorme, di cuore, per esserci sempre! Vi voglio bene, andiamo a vincere! \u2764\ufe0f", "shared_text": "", "time": "2019-09-15 21:14:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2173629502747048&id=252306033154", "link": null} +{"post_id": "944079482612008", "text": "Tra le braccia di questo straordinario Popolo! #Pontida", "post_text": "Tra le braccia di questo straordinario Popolo! #Pontida", "shared_text": "", "time": "2019-09-15 14:40:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=944079482612008&id=252306033154", "link": null} +{"post_id": "2394029607339419", "text": "Ecco il mio intervento, che emozione! Grazie #Pontida! \ud83d\udd1d\ud83c\uddee\ud83c\uddf9", "post_text": "Ecco il mio intervento, che emozione! Grazie #Pontida! \ud83d\udd1d\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-15 13:44:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2394029607339419&id=252306033154", "link": null} +{"post_id": "524978088290563", "text": "Tutto pronto qui a #Pontida, tra poco in diretta dal palco!", "post_text": "Tutto pronto qui a #Pontida, tra poco in diretta dal palco!", "shared_text": "", "time": "2019-09-15 10:42:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=524978088290563&id=252306033154", "link": null} +{"post_id": "1134833070043663", "text": "In diretta da #Pontida. Tra poco cominciamo. State con noi", "post_text": "In diretta da #Pontida. Tra poco cominciamo. State con noi", "shared_text": "", "time": "2019-09-15 10:30:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1134833070043663&id=252306033154", "link": null} +{"post_id": "10156925849903155", "text": "Vi ripropongo il mio intervento di oggi all\u2019assemblea degli amministratori della Lega, l\u2019#ItaliaVera vincer\u00e0 sempre sull\u2019Italia dei palazzi, dei giochini e degli inciuci.", "post_text": "Vi ripropongo il mio intervento di oggi all\u2019assemblea degli amministratori della Lega, l\u2019#ItaliaVera vincer\u00e0 sempre sull\u2019Italia dei palazzi, dei giochini e degli inciuci.", "shared_text": "", "time": "2019-09-14 21:45:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=702719366819463&id=252306033154", "link": null} +{"post_id": "556508578220816", "text": "Ieri sera da Paolo Del Debbio su Rete 4 record di ascolti, ho ricevuto tantissimi messaggi di sostegno e invito a non mollare! Ve lo garantisco: la squadra della Lega \u00e8 pi\u00fa determinata che mai, un governo che\u2026 Altro aspetta telefonatine da Berlino, Parigi o Bruxelles non ha dignit\u00e0, l\u2019Italia torner\u00e0 presto ad essere guidata dagli italiani.", "post_text": "Ieri sera da Paolo Del Debbio su Rete 4 record di ascolti, ho ricevuto tantissimi messaggi di sostegno e invito a non mollare! Ve lo garantisco: la squadra della Lega \u00e8 pi\u00fa determinata che mai, un governo che\u2026 Altro aspetta telefonatine da Berlino, Parigi o Bruxelles non ha dignit\u00e0, l\u2019Italia torner\u00e0 presto ad essere guidata dagli italiani.", "shared_text": "", "time": "2019-09-13 13:02:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=556508578220816&id=252306033154", "link": null} +{"post_id": "483061092250328", "text": "L\u2019occhio \u00e8 quasi guarito, per quanto riguarda l\u2019Italia stiamo lavorando\ud83d\ude09", "post_text": "L\u2019occhio \u00e8 quasi guarito, per quanto riguarda l\u2019Italia stiamo lavorando\ud83d\ude09", "shared_text": "", "time": "2019-09-13 12:16:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=483061092250328&id=252306033154", "link": null} +{"post_id": "498116734068530", "text": "Qui Orvieto, che bello!\nFate con me due passi tra le bancarelle del mercato? \u2600\ufe0f\n#27ottobrevotolega", "post_text": "Qui Orvieto, che bello!\nFate con me due passi tra le bancarelle del mercato? \u2600\ufe0f\n#27ottobrevotolega", "shared_text": "", "time": "2019-09-12 11:22:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=498116734068530&id=252306033154", "link": null} +{"post_id": "2751578438402383", "text": "Buonasera Amici, qui Spello (Perugia).\nInsieme, il 27 ottobre si cambia anche in Umbria. State con noi!", "post_text": "Buonasera Amici, qui Spello (Perugia).\nInsieme, il 27 ottobre si cambia anche in Umbria. State con noi!", "shared_text": "", "time": "2019-09-11 17:37:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2751578438402383&id=252306033154", "link": null} +{"post_id": "458893428031832", "text": "Non sono pi\u00f9 ministro, ma l\u2019onore e la lealt\u00e0 valgono pi\u00f9 di mille poltrone.\nAnche i pali della luce hanno capito che l\u2019unica motivazione di questo governo \u00e8 la paura di perdere la poltrona e andare a casa.\nVi\u2026 Altro ripropongo la mia intervista di ieri sera da Bruno Vespa, eravate tantissimi davanti allo schermo fino a tarda ora, grazie!", "post_text": "Non sono pi\u00f9 ministro, ma l\u2019onore e la lealt\u00e0 valgono pi\u00f9 di mille poltrone.\nAnche i pali della luce hanno capito che l\u2019unica motivazione di questo governo \u00e8 la paura di perdere la poltrona e andare a casa.\nVi\u2026 Altro ripropongo la mia intervista di ieri sera da Bruno Vespa, eravate tantissimi davanti allo schermo fino a tarda ora, grazie!", "shared_text": "", "time": "2019-09-11 13:30:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=458893428031832&id=252306033154", "link": null} +{"post_id": "405900270066589", "text": "Vi ripropongo il mio intervento di oggi al Senato.\nSe pensano di fermarci si sbagliano di grosso: noi andiamo avanti pi\u00f9 spediti che mai e piazza dopo piazza, citt\u00e0 dopo citt\u00e0, regione dopo regione, vinceremo noi \ud83c\uddee\ud83c\uddf9", "post_text": "Vi ripropongo il mio intervento di oggi al Senato.\nSe pensano di fermarci si sbagliano di grosso: noi andiamo avanti pi\u00f9 spediti che mai e piazza dopo piazza, citt\u00e0 dopo citt\u00e0, regione dopo regione, vinceremo noi \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-10 21:50:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=405900270066589&id=252306033154", "link": null} +{"post_id": "788581941559485", "text": "Il mio intervento ora in diretta dal Senato, Amici. Se avete tempo, seguite e commentate.", "post_text": "Il mio intervento ora in diretta dal Senato, Amici. Se avete tempo, seguite e commentate.", "shared_text": "", "time": "2019-09-10 15:26:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=788581941559485&id=252306033154", "link": null} +{"post_id": "10156913320968155", "text": "Vi ripropongo il mio intervento di questa mattina davanti a uno splendido popolo, che non si rassegna al governo straniero benedetto da Berlino, Bruxelles e Parigi: in Italia comandano gli italiani, e l'Italia rialzer\u00e0 presto la testa, ve lo garantisco! \ud83c\uddee\ud83c\uddf9", "post_text": "Vi ripropongo il mio intervento di questa mattina davanti a uno splendido popolo, che non si rassegna al governo straniero benedetto da Berlino, Bruxelles e Parigi: in Italia comandano gli italiani, e l'Italia rialzer\u00e0 presto la testa, ve lo garantisco! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-09 21:16:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=522610555170257&id=252306033154", "link": null} +{"post_id": "10156913193863155", "text": "Possono sprangare il portone di Montecitorio e bloccare la gente nelle vie laterali, ma non invidio chi sta chiuso nel palazzo pensando solo a spartirsi poltrone contro la maggioranza degli italiani!\nP.s.\u2026 Altro Pensate che tanti giornali e telegiornali hanno detto che stamattina in piazza c'erano quattro gatti (con rispetto per i mici), facciamo girare in rete finch\u00e9 ce la lasciano libera!", "post_text": "Possono sprangare il portone di Montecitorio e bloccare la gente nelle vie laterali, ma non invidio chi sta chiuso nel palazzo pensando solo a spartirsi poltrone contro la maggioranza degli italiani!\nP.s.\u2026 Altro Pensate che tanti giornali e telegiornali hanno detto che stamattina in piazza c'erano quattro gatti (con rispetto per i mici), facciamo girare in rete finch\u00e9 ce la lasciano libera!", "shared_text": "", "time": "2019-09-09 20:10:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2339063993078830&id=252306033154", "link": null} +{"post_id": "423822298258433", "text": "\ud83d\udd34Segui LIVE dalla Camera l\u2019intervento del presidente dei deputati della Lega, Riccardo Molinari.\n#primagliitaliani\ud83c\uddee\ud83c\uddf9", "post_text": "\ud83d\udd34Segui LIVE dalla Camera l\u2019intervento del presidente dei deputati della Lega, Riccardo Molinari.\n#primagliitaliani\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-09 19:31:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=423822298258433&id=252306033154", "link": null} +{"post_id": "959781161026661", "text": "\ud83d\udd34 INTERVENTO INTEGRALE, CONDIVIDI!\nIn diretta da Roma, le persone vere e libere di questa piazza batteranno SEMPRE i poltronari dell\u2019inciucio rinchiusi nel palazzo. Il conto da pagare arriver\u00e0, e per loro sar\u00e0 salato: verranno cacciati, per sempre.\n#primagliitaliani \ud83c\uddee\ud83c\uddf9", "post_text": "\ud83d\udd34 INTERVENTO INTEGRALE, CONDIVIDI!\nIn diretta da Roma, le persone vere e libere di questa piazza batteranno SEMPRE i poltronari dell\u2019inciucio rinchiusi nel palazzo. Il conto da pagare arriver\u00e0, e per loro sar\u00e0 salato: verranno cacciati, per sempre.\n#primagliitaliani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-09 12:31:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=959781161026661&id=252306033154", "link": null} +{"post_id": "2937589029799018", "text": "PRIMA PARTE! Interverr\u00f2 tra poco in successivo LIVE! \ud83d\ude0a\nIn diretta da Roma, le persone vere e libere di questa piazza batteranno SEMPRE i poltronari dell\u2019inciucio rinchiusi nel palazzo. Il conto da pagare arriver\u00e0, e per loro sar\u00e0 salato: verranno cacciati, per sempre.\n#primagliitaliani \ud83c\uddee\ud83c\uddf9", "post_text": "PRIMA PARTE! Interverr\u00f2 tra poco in successivo LIVE! \ud83d\ude0a\nIn diretta da Roma, le persone vere e libere di questa piazza batteranno SEMPRE i poltronari dell\u2019inciucio rinchiusi nel palazzo. Il conto da pagare arriver\u00e0, e per loro sar\u00e0 salato: verranno cacciati, per sempre.\n#primagliitaliani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-09 11:20:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2937589029799018&id=252306033154", "link": null} +{"post_id": "2480123252271738", "text": "Un saluto da Cento (Ferrara) insieme a Lucia Borgonzoni, siete spettacolari! State con noi in diretta!", "post_text": "Un saluto da Cento (Ferrara) insieme a Lucia Borgonzoni, siete spettacolari! State con noi in diretta!", "shared_text": "", "time": "2019-09-08 18:45:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2480123252271738&id=252306033154", "link": null} +{"post_id": "708256616307787", "text": "In diretta da Vignola (Modena), ma quanti siete nonostante il comizio improvvisato???", "post_text": "In diretta da Vignola (Modena), ma quanti siete nonostante il comizio improvvisato???", "shared_text": "", "time": "2019-09-08 16:38:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=708256616307787&id=252306033154", "link": null} +{"post_id": "546785976125802", "text": "Qui Domodossola (VCO), che spettacolo! Non si molla, fidatevi Amici, si combatte, tutti insieme, e poi SI VINCE! #primagliitaliani \ud83c\uddee\ud83c\uddf9", "post_text": "Qui Domodossola (VCO), che spettacolo! Non si molla, fidatevi Amici, si combatte, tutti insieme, e poi SI VINCE! #primagliitaliani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-07 22:01:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=546785976125802&id=252306033154", "link": null} +{"post_id": "2354005664813337", "text": "Ma quanti siete qui a San Gemini (Terni)???\nDai che il 27 ottobre facciamo la storia anche qui in Umbria! Avanti tutta Amici \ud83c\uddee\ud83c\uddf9", "post_text": "Ma quanti siete qui a San Gemini (Terni)???\nDai che il 27 ottobre facciamo la storia anche qui in Umbria! Avanti tutta Amici \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-06 21:35:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2354005664813337&id=252306033154", "link": null} +{"post_id": "930812237304590", "text": "In diretta da San Gemini, Terni, Umbria, dove con Donatella Tesei il 27 ottobre andiamo a vincere! State con noi!", "post_text": "In diretta da San Gemini, Terni, Umbria, dove con Donatella Tesei il 27 ottobre andiamo a vincere! State con noi!", "shared_text": "", "time": "2019-09-06 21:20:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=930812237304590&id=252306033154", "link": null} +{"post_id": "10156903248778155", "text": "++ \ud83d\udd34 DIFFONDIAMO IL PI\u00d9 POSSIBILE, \u00c8 UNA VERGOGNA! ++\nAscoltate la denuncia del governatore del Friuli Venezia Giulia, il nostro Massimiliano Fedriga: il nuovo governo di sinistra targato Conte, Pd, 5Stelle e\u2026 Altro LeU ha gi\u00e0 impugnato le prime leggi, favorendo gli immigrati clandestini e andando contro gli Italiani.\nPESSIMO inizio.\nNoi per\u00f2 non ci fermiamo e, a livello locale, regionale e nazionale andiamo avanti come treni, nel nome di PRIMA GLI ITALIANI \ud83c\uddee\ud83c\uddf9 Punto.", "post_text": "++ \ud83d\udd34 DIFFONDIAMO IL PI\u00d9 POSSIBILE, \u00c8 UNA VERGOGNA! ++\nAscoltate la denuncia del governatore del Friuli Venezia Giulia, il nostro Massimiliano Fedriga: il nuovo governo di sinistra targato Conte, Pd, 5Stelle e\u2026 Altro LeU ha gi\u00e0 impugnato le prime leggi, favorendo gli immigrati clandestini e andando contro gli Italiani.\nPESSIMO inizio.\nNoi per\u00f2 non ci fermiamo e, a livello locale, regionale e nazionale andiamo avanti come treni, nel nome di PRIMA GLI ITALIANI \ud83c\uddee\ud83c\uddf9 Punto.", "shared_text": "", "time": "2019-09-05 22:45:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2532536733477817&id=252306033154", "link": null} +{"post_id": "658124371365350", "text": "Record di ministri e poltrone!\nCompetenze poche, paura del voto tanta.\nSiamo gi\u00e0 al lavoro Amici miei, non potranno scappare dagli Italiani a lungo.\nNel frattempo limitiamo i loro danni e ci prepariamo a tornare a vincere.\nIo non mollo!", "post_text": "Record di ministri e poltrone!\nCompetenze poche, paura del voto tanta.\nSiamo gi\u00e0 al lavoro Amici miei, non potranno scappare dagli Italiani a lungo.\nNel frattempo limitiamo i loro danni e ci prepariamo a tornare a vincere.\nIo non mollo!", "shared_text": "", "time": "2019-09-04 18:41:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=658124371365350&id=252306033154", "link": null} +{"post_id": "550499718821592", "text": "5 Stelle, dalla rivoluzione alla casta in ammucchiata col Pd. Giustizia, lavoro, tasse, immigrazione, non sono d\u2019accordo su nulla, eccetto che su una cosa: sfuggire a tutti i costi dal giudizio degli elettori. Che arriver\u00e0.\nEcco la mia intervista di questa mattina su Rai Tre, buon pranzo Amici!", "post_text": "5 Stelle, dalla rivoluzione alla casta in ammucchiata col Pd. Giustizia, lavoro, tasse, immigrazione, non sono d\u2019accordo su nulla, eccetto che su una cosa: sfuggire a tutti i costi dal giudizio degli elettori. Che arriver\u00e0.\nEcco la mia intervista di questa mattina su Rai Tre, buon pranzo Amici!", "shared_text": "", "time": "2019-09-04 13:17:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=550499718821592&id=252306033154", "link": null} +{"post_id": "472451053602826", "text": "Il governo dei No e delle poltrone non va lontano, non potranno scappare dalle elezioni (quelle vere) all\u2019infinito: l\u2019Italia merita di meglio, noi ci prepariamo!", "post_text": "Il governo dei No e delle poltrone non va lontano, non potranno scappare dalle elezioni (quelle vere) all\u2019infinito: l\u2019Italia merita di meglio, noi ci prepariamo!", "shared_text": "", "time": "2019-09-03 19:45:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=472451053602826&id=252306033154", "link": null} +{"post_id": "647131355695191", "text": "Vi ripropongo la mia intervista di ieri sera con Paolo Del Debbio alla festa della Lega di Alzano Lombardo (Bergamo).\nP.s. Ancora GRAZIE alle migliaia e migliaia di persone intervenute, siete stati fantastici e mi date una forza incredibile \u2764\ufe0f", "post_text": "Vi ripropongo la mia intervista di ieri sera con Paolo Del Debbio alla festa della Lega di Alzano Lombardo (Bergamo).\nP.s. Ancora GRAZIE alle migliaia e migliaia di persone intervenute, siete stati fantastici e mi date una forza incredibile \u2764\ufe0f", "shared_text": "", "time": "2019-09-02 13:48:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=647131355695191&id=252306033154", "link": null} +{"post_id": "514759875993549", "text": "Vi ripropongo la mia intervista di questa mattina a Radio24: quanti italiani rappresenta questo nuovo governo? \ud83e\udd14 Se in nome della conservazione del potere si scende a patti con il Pd e con la Boschi, facciano, io non mi permetto di entrare nel dibattito altrui. Ma per me era e sar\u00e0 sempre: mai col Pd!", "post_text": "Vi ripropongo la mia intervista di questa mattina a Radio24: quanti italiani rappresenta questo nuovo governo? \ud83e\udd14 Se in nome della conservazione del potere si scende a patti con il Pd e con la Boschi, facciano, io non mi permetto di entrare nel dibattito altrui. Ma per me era e sar\u00e0 sempre: mai col Pd!", "shared_text": "", "time": "2019-09-02 13:00:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=514759875993549&id=252306033154", "link": null} +{"post_id": "1049008708823472", "text": "In diretta dalla festa di Alzano Lombardo (Bergamo) con Paolo Del Debbio.\nState con noi! \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta dalla festa di Alzano Lombardo (Bergamo) con Paolo Del Debbio.\nState con noi! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-09-01 21:27:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1049008708823472&id=252306033154", "link": null} +{"post_id": "709036532875533", "text": "La Merkel prende una sonora batosta alle elezioni regionali di casa sua ma prova a imporre il suo governo in Italia! Non \u00e8 il Conte-bis ma il Merkel-Macron 1. E l\u2019ex avvocato del popolo? Oggi candidamente i 5\u2026 Altro Stelle quasi fa finta di non conoscerli, rivendicando di aver sempre votato a sinistra eccetto che nel 2018 ma solo perch\u00e9 \u201cmi avevano candidato ministro\u201d..! Roba da matti! Smascherati, pi\u00f9 presto che tardi gli elettori li cacceranno. In Italia decidono gli italiani!", "post_text": "La Merkel prende una sonora batosta alle elezioni regionali di casa sua ma prova a imporre il suo governo in Italia! Non \u00e8 il Conte-bis ma il Merkel-Macron 1. E l\u2019ex avvocato del popolo? Oggi candidamente i 5\u2026 Altro Stelle quasi fa finta di non conoscerli, rivendicando di aver sempre votato a sinistra eccetto che nel 2018 ma solo perch\u00e9 \u201cmi avevano candidato ministro\u201d..! Roba da matti! Smascherati, pi\u00f9 presto che tardi gli elettori li cacceranno. In Italia decidono gli italiani!", "shared_text": "", "time": "2019-09-01 20:41:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=709036532875533&id=252306033154", "link": null} +{"post_id": "2402448730044175", "text": "Spettacolare! Grazie amici bergamaschi!", "post_text": "Spettacolare! Grazie amici bergamaschi!", "shared_text": "", "time": "2019-09-01 20:17:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2402448730044175&id=252306033154", "link": null} +{"post_id": "1175659035954384", "text": "In diretta da Pinzolo (Trento), seguitemi.", "post_text": "In diretta da Pinzolo (Trento), seguitemi.", "shared_text": "", "time": "2019-08-31 19:00:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1175659035954384&id=252306033154", "link": null} +{"post_id": "927255537639713", "text": "Ma quanti siete qui a Conselve??? Questi sono i sondaggi che contano \ud83d\ude09\nSeguiteci in diretta!", "post_text": "Ma quanti siete qui a Conselve??? Questi sono i sondaggi che contano \ud83d\ude09\nSeguiteci in diretta!", "shared_text": "", "time": "2019-08-30 20:49:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=927255537639713&id=252306033154", "link": null} +{"post_id": "378061419757467", "text": "Per il PD \u201cprima le poltrone\u201d, sempre.\nPer noi \u201cPrima gli Italiani\u201d, sempre.\nForza Amici, non potranno scappare dal voto all\u2019infinito: io sono pronto e determinato come non mai, conto su di Voi!", "post_text": "Per il PD \u201cprima le poltrone\u201d, sempre.\nPer noi \u201cPrima gli Italiani\u201d, sempre.\nForza Amici, non potranno scappare dal voto all\u2019infinito: io sono pronto e determinato come non mai, conto su di Voi!", "shared_text": "", "time": "2019-08-29 12:48:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=378061419757467&id=252306033154", "link": null} +{"post_id": "755246428242424", "text": "Un governicchio fondato unicamente sulle poltrone e sull\u2019odio non ha vita lunga.\nPer loro prima le poltrone, per noi ora e sempre #primagliItaliani! \ud83c\uddee\ud83c\uddf9", "post_text": "Un governicchio fondato unicamente sulle poltrone e sull\u2019odio non ha vita lunga.\nPer loro prima le poltrone, per noi ora e sempre #primagliItaliani! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-08-29 10:24:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=755246428242424&id=252306033154", "link": null} +{"post_id": "2384006658508780", "text": "Buon pomeriggio Amici. Rimanete collegati, tra poco vi aggiorno in diretta dal Quirinale.", "post_text": "Buon pomeriggio Amici. Rimanete collegati, tra poco vi aggiorno in diretta dal Quirinale.", "shared_text": "", "time": "2019-08-28 17:41:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2384006658508780&id=252306033154", "link": null} +{"post_id": "774796529603286", "text": "Altro che \u201cresponsabili\u201d, qui ci sono parlamentari che pensano solo a difendere la poltrona e da giorni litigano per spartirsi ministeri!\nChi ha paura del voto degli Italiani?\nNoi no.\nLibere elezioni, subito, e l\u2019Italia riparte.", "post_text": "Altro che \u201cresponsabili\u201d, qui ci sono parlamentari che pensano solo a difendere la poltrona e da giorni litigano per spartirsi ministeri!\nChi ha paura del voto degli Italiani?\nNoi no.\nLibere elezioni, subito, e l\u2019Italia riparte.", "shared_text": "", "time": "2019-08-28 12:34:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=774796529603286&id=252306033154", "link": null} +{"post_id": "10156885440528155", "text": "Possono scappare dal voto per un po\u2019 di tempo, ma prima o poi la parola torner\u00e1 agli Italiani! \ud83c\uddee\ud83c\uddf9", "post_text": "Possono scappare dal voto per un po\u2019 di tempo, ma prima o poi la parola torner\u00e1 agli Italiani! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-08-28 12:16:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2592883497423249&id=252306033154", "link": null} +{"post_id": "496516600911973", "text": "In diretta dal Senato, state con noi.", "post_text": "In diretta dal Senato, state con noi.", "shared_text": "", "time": "2019-08-26 20:09:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=496516600911973&id=252306033154", "link": null} +{"post_id": "354884938788309", "text": "Come promesso, non abbiamo dato nessun permesso allo sbarco in Italia per i 356 immigrati a bordo della Ocean Viking.\nPrima la sicurezza degli Italiani!\nE ovviamente... mai col PD.", "post_text": "Come promesso, non abbiamo dato nessun permesso allo sbarco in Italia per i 356 immigrati a bordo della Ocean Viking.\nPrima la sicurezza degli Italiani!\nE ovviamente... mai col PD.", "shared_text": "", "time": "2019-08-23 12:12:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=354884938788309&id=252306033154", "link": null} +{"post_id": "584299995437020", "text": "Buon pomeriggio Amici. Rimanete qui in diretta, tra poco vi aggiorno dal Quirinale.", "post_text": "Buon pomeriggio Amici. Rimanete qui in diretta, tra poco vi aggiorno dal Quirinale.", "shared_text": "", "time": "2019-08-22 15:42:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=584299995437020&id=252306033154", "link": null} +{"post_id": "493261864819826", "text": "Ora in diretta da piazza Montecitorio!", "post_text": "Ora in diretta da piazza Montecitorio!", "shared_text": "", "time": "2019-08-21 14:13:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=493261864819826&id=252306033154", "link": null} +{"post_id": "1114567982073612", "text": "Ong Open Arms: altro sbarco, altro processo?\nIo non ho paura, orgoglioso di difendere i confini e la sicurezza del mio Paese.", "post_text": "Ong Open Arms: altro sbarco, altro processo?\nIo non ho paura, orgoglioso di difendere i confini e la sicurezza del mio Paese.", "shared_text": "", "time": "2019-08-20 18:30:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1114567982073612&id=252306033154", "link": null} +{"post_id": "412035519422371", "text": "Amici, se avete qualche minuto, ecco la mia intervista a Radio 24.", "post_text": "Amici, se avete qualche minuto, ecco la mia intervista a Radio 24.", "shared_text": "", "time": "2019-08-20 12:45:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=412035519422371&id=252306033154", "link": null} +{"post_id": "479224695958047", "text": "Tutti al governo per salvare la poltrona?\nLa Lega dice NO!", "post_text": "Tutti al governo per salvare la poltrona?\nLa Lega dice NO!", "shared_text": "", "time": "2019-08-19 13:31:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=479224695958047&id=252306033154", "link": null} +{"post_id": "2370553519825162", "text": "SECONDA PARTE\nFa troppo caldo anche per il telefono\ud83d\ude0a.\nUn saluto al volo e poi al lavoro!", "post_text": "SECONDA PARTE\nFa troppo caldo anche per il telefono\ud83d\ude0a.\nUn saluto al volo e poi al lavoro!", "shared_text": "", "time": "2019-08-18 13:32:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2370553519825162&id=252306033154", "link": null} +{"post_id": "394400987760221", "text": "PRIMA PARTE\nLa Spagna apre i porti agli immigrati della ONG Open Arms.\nBene!\nChi la dura la vince.", "post_text": "PRIMA PARTE\nLa Spagna apre i porti agli immigrati della ONG Open Arms.\nBene!\nChi la dura la vince.", "shared_text": "", "time": "2019-08-18 13:18:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=394400987760221&id=252306033154", "link": null} +{"post_id": "10156850560538155", "text": "Ministri che in passato avevano firmato per bloccare gli sbarchi, oggi hanno detto no. Coincidenze, per amor di Dio... Certo \u00e8 strano che a cavallo di Ferragosto ci sia chi lavora per riaprire i rubinetti dell'\u2026 Altroimmigrazione clandestina. Se qualcuno pensa di farmi un dispiacere si sbaglia di grosso, il danno lo fa agli italiani e all'Italia.", "post_text": "Ministri che in passato avevano firmato per bloccare gli sbarchi, oggi hanno detto no. Coincidenze, per amor di Dio... Certo \u00e8 strano che a cavallo di Ferragosto ci sia chi lavora per riaprire i rubinetti dell'\u2026 Altroimmigrazione clandestina. Se qualcuno pensa di farmi un dispiacere si sbaglia di grosso, il danno lo fa agli italiani e all'Italia.", "shared_text": "", "time": "2019-08-15 18:52:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2519820078038026&id=252306033154", "link": null} +{"post_id": "1285361824952053", "text": "Il mio Ferragosto dedicato qui a Castel Volturno (Caserta) al Comitato Nazionale per l\u2019Ordine e la Sicurezza pubblica.\nEcco tutti i risultati di oltre un anno di lavoro al Viminale.", "post_text": "Il mio Ferragosto dedicato qui a Castel Volturno (Caserta) al Comitato Nazionale per l\u2019Ordine e la Sicurezza pubblica.\nEcco tutti i risultati di oltre un anno di lavoro al Viminale.", "shared_text": "", "time": "2019-08-15 14:29:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1285361824952053&id=252306033154", "link": null} +{"post_id": "2400057000232775", "text": "Buonasera da La Spezia, Amici.\nNon si molla! State con noi in diretta.", "post_text": "Buonasera da La Spezia, Amici.\nNon si molla! State con noi in diretta.", "shared_text": "", "time": "2019-08-14 21:27:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2400057000232775&id=252306033154", "link": null} +{"post_id": "3085897501450645", "text": "Buon pomeriggio da Recco, Amici. Un po\u2019 di aggiornamenti live su quello che sta accadendo con le navi Ong. No, non mi arrendo: l\u2019Italia non torner\u00e0 ad essere il campo profughi d\u2019Europa!", "post_text": "Buon pomeriggio da Recco, Amici. Un po\u2019 di aggiornamenti live su quello che sta accadendo con le navi Ong. No, non mi arrendo: l\u2019Italia non torner\u00e0 ad essere il campo profughi d\u2019Europa!", "shared_text": "", "time": "2019-08-14 17:14:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=3085897501450645&id=252306033154", "link": null} +{"post_id": "404116623546646", "text": "La mia intervista di oggi a RTL 102.5, se avete qualche minuto. Buon pomeriggio Amici.", "post_text": "La mia intervista di oggi a RTL 102.5, se avete qualche minuto. Buon pomeriggio Amici.", "shared_text": "", "time": "2019-08-14 15:35:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=404116623546646&id=252306033154", "link": null} +{"post_id": "10156845317698155", "text": "Vi ripropongo il mio intervento al Senato.\nAvanti con il taglio di 345 parlamentari senza esitazioni, gi\u00e0 la prossima settimana, e poi: #votosubito, la parola agli Italiani! \ud83c\uddee\ud83c\uddf9\nP.s. Simpaticissimi i rumori di fondo e le interruzioni urlanti degli amici del Pd \ud83d\ude0a", "post_text": "Vi ripropongo il mio intervento al Senato.\nAvanti con il taglio di 345 parlamentari senza esitazioni, gi\u00e0 la prossima settimana, e poi: #votosubito, la parola agli Italiani! \ud83c\uddee\ud83c\uddf9\nP.s. Simpaticissimi i rumori di fondo e le interruzioni urlanti degli amici del Pd \ud83d\ude0a", "shared_text": "", "time": "2019-08-13 21:00:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=221799428724591&id=252306033154", "link": null} +{"post_id": "1274462489395323", "text": "Tra poco parlo in Senato, vi aspetto in tanti! Sentirete cose interessanti, altro che Renzi\ud83d\ude0a", "post_text": "Tra poco parlo in Senato, vi aspetto in tanti! Sentirete cose interessanti, altro che Renzi\ud83d\ude0a", "shared_text": "", "time": "2019-08-13 18:08:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1274462489395323&id=252306033154", "link": null} +{"post_id": "488190365086203", "text": "Chi ha paura delle elezioni teme di non tornare in Parlamento.\nLa Lega \u00e8 pronta, ora tocca agli Italiani decidere.", "post_text": "Chi ha paura delle elezioni teme di non tornare in Parlamento.\nLa Lega \u00e8 pronta, ora tocca agli Italiani decidere.", "shared_text": "", "time": "2019-08-12 21:49:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=488190365086203&id=252306033154", "link": null} +{"post_id": "424951678123554", "text": "Vi ripropongo il mio intervento di questa sera a Siracusa, durante la diretta saltava il segnale video, saranno stati sabotatori comunisti \ud83d\ude0a", "post_text": "Vi ripropongo il mio intervento di questa sera a Siracusa, durante la diretta saltava il segnale video, saranno stati sabotatori comunisti \ud83d\ude0a", "shared_text": "", "time": "2019-08-11 22:55:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=424951678123554&id=252306033154", "link": null} +{"post_id": "2334003773301334", "text": "Qui Catania, seguitemi!", "post_text": "Qui Catania, seguitemi!", "shared_text": "", "time": "2019-08-11 16:40:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2334003773301334&id=252306033154", "link": null} +{"post_id": "2346737548919388", "text": "Sempre live da Soverato, state con noi!", "post_text": "Sempre live da Soverato, state con noi!", "shared_text": "", "time": "2019-08-10 22:21:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2346737548919388&id=252306033154", "link": null} +{"post_id": "2085482851754142", "text": "Voglio dare agli italiani un governo stabile e serio per i prossimi 5 anni.\nNon ci saranno giochi di palazzo, ma solamente elezioni.\nLa parola va agli Italiani \ud83c\uddee\ud83c\uddf9", "post_text": "Voglio dare agli italiani un governo stabile e serio per i prossimi 5 anni.\nNon ci saranno giochi di palazzo, ma solamente elezioni.\nLa parola va agli Italiani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-08-10 13:37:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2085482851754142&id=252306033154", "link": null} +{"post_id": "2315706215425049", "text": "Un saluto dalla incantevole Policoro, perla lucana sul Mar Jonio. Anche qui siamo in tantissimi, seguite in diretta!\n[Seconda parte]", "post_text": "Un saluto dalla incantevole Policoro, perla lucana sul Mar Jonio. Anche qui siamo in tantissimi, seguite in diretta!\n[Seconda parte]", "shared_text": "", "time": "2019-08-10 12:04:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2315706215425049&id=252306033154", "link": null} +{"post_id": "2300736220237695", "text": "In diretta dalla splendida Polignano a Mare, seguiteci! Buona serata Amici, avanti tutta \ud83d\udcaa\ud83c\uddee\ud83c\uddf9", "post_text": "In diretta dalla splendida Polignano a Mare, seguiteci! Buona serata Amici, avanti tutta \ud83d\udcaa\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-08-09 22:05:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2300736220237695&id=252306033154", "link": null} +{"post_id": "2864797010229368", "text": "Qui Peschici (Foggia), state con noi!", "post_text": "Qui Peschici (Foggia), state con noi!", "shared_text": "", "time": "2019-08-09 17:54:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2864797010229368&id=252306033154", "link": null} +{"post_id": "482715122579589", "text": "Qui Termoli (Campobasso), state con noi!\n[Seconda parte]", "post_text": "Qui Termoli (Campobasso), state con noi!\n[Seconda parte]", "shared_text": "", "time": "2019-08-09 12:37:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=482715122579589&id=252306033154", "link": null} +{"post_id": "409794712978884", "text": "Qui Termoli (Campobasso), state con noi!\n[Prima parte]", "post_text": "Qui Termoli (Campobasso), state con noi!\n[Prima parte]", "shared_text": "", "time": "2019-08-09 12:32:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=409794712978884&id=252306033154", "link": null} +{"post_id": "650391248789377", "text": "Buona serata da Pescara, Amici.\nState in diretta con noi!", "post_text": "Buona serata da Pescara, Amici.\nState in diretta con noi!", "shared_text": "", "time": "2019-08-08 21:57:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=650391248789377&id=252306033154", "link": null} +{"post_id": "731941173929356", "text": "In diretta da Sabaudia (Latina)!\nSeguitemi Amici!", "post_text": "In diretta da Sabaudia (Latina)!\nSeguitemi Amici!", "shared_text": "", "time": "2019-08-07 21:38:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=731941173929356&id=252306033154", "link": null} +{"post_id": "305813280212951", "text": "In diretta dalla festa della Lega di Arcore (Monza e Brianza). Spettacolo!\nSe voi ci siete, io ci sono. State con me!", "post_text": "In diretta dalla festa della Lega di Arcore (Monza e Brianza). Spettacolo!\nSe voi ci siete, io ci sono. State con me!", "shared_text": "", "time": "2019-08-06 21:06:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=305813280212951&id=252306033154", "link": null} +{"post_id": "478274039629828", "text": "Di nuovo in diretta dalla sala stampa del Viminale, al termine dell'incontro con le Parti Sociali. Seguitemi!", "post_text": "Di nuovo in diretta dalla sala stampa del Viminale, al termine dell'incontro con le Parti Sociali. Seguitemi!", "shared_text": "", "time": "2019-08-06 16:07:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=478274039629828&id=252306033154", "link": null} +{"post_id": "485003775378585", "text": "In diretta dal Viminale, una piccola pausa dall\u2019incontro con le Parti Sociali. Vi aggiorno!", "post_text": "In diretta dal Viminale, una piccola pausa dall\u2019incontro con le Parti Sociali. Vi aggiorno!", "shared_text": "", "time": "2019-08-06 12:39:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=485003775378585&id=252306033154", "link": null} +{"post_id": "504511666959826", "text": "In diretta dal Senato!\nSeguitemi!", "post_text": "In diretta dal Senato!\nSeguitemi!", "shared_text": "", "time": "2019-08-05 19:12:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=504511666959826&id=252306033154", "link": null} +{"post_id": "2095662934070446", "text": "In diretta dalla fiera di San Fermo di Nerviano (Milano)! State con noi!", "post_text": "In diretta dalla fiera di San Fermo di Nerviano (Milano)! State con noi!", "shared_text": "", "time": "2019-08-05 10:02:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2095662934070446&id=252306033154", "link": null} +{"post_id": "331454914402257", "text": "Seguitemi in diretta dalla festa della Lega di Colico (Lecco). Chi c\u2019\u00e8???", "post_text": "Seguitemi in diretta dalla festa della Lega di Colico (Lecco). Chi c\u2019\u00e8???", "shared_text": "", "time": "2019-08-04 21:17:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=331454914402257&id=252306033154", "link": null} +{"post_id": "336314013915624", "text": "Seguitemi in diretta dalla festa della Lega di Cervia, e se siete nei paraggi vi aspetto!", "post_text": "Seguitemi in diretta dalla festa della Lega di Cervia, e se siete nei paraggi vi aspetto!", "shared_text": "", "time": "2019-08-03 21:41:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=336314013915624&id=252306033154", "link": null} +{"post_id": "2460836930633106", "text": "Amici, vi ripropongo la mia intervista di oggi a SkyTg24! Mi dite come sono andato?", "post_text": "Amici, vi ripropongo la mia intervista di oggi a SkyTg24! Mi dite come sono andato?", "shared_text": "", "time": "2019-08-01 21:05:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2460836930633106&id=252306033154", "link": null} +{"post_id": "2300924696889378", "text": "Qui Milano Marittima, alla presentazione della Festa della Lega della Romagna. Seguiteci in diretta!", "post_text": "Qui Milano Marittima, alla presentazione della Festa della Lega della Romagna. Seguiteci in diretta!", "shared_text": "", "time": "2019-08-01 14:19:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2300924696889378&id=252306033154", "link": null} +{"post_id": "361734911177140", "text": "Come si pu\u00f2 colpire OTTO volte con il coltello un ragazzo di 35 anni per un cellulare e 100 euro?\nSpero che gli assassini di Mario vengano beccati e mandati in carcere a vita ai lavori forzati, perch\u00e9 \u00e8 troppo comodo uccidere e poi stare comodi sul lettino.\nEcco il mio intervento di questa mattina su Rai Uno.", "post_text": "Come si pu\u00f2 colpire OTTO volte con il coltello un ragazzo di 35 anni per un cellulare e 100 euro?\nSpero che gli assassini di Mario vengano beccati e mandati in carcere a vita ai lavori forzati, perch\u00e9 \u00e8 troppo comodo uccidere e poi stare comodi sul lettino.\nEcco il mio intervento di questa mattina su Rai Uno.", "shared_text": "", "time": "2019-07-26 18:02:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=361734911177140&id=252306033154", "link": null} +{"post_id": "451707472046620", "text": "Ma che caldo fa qui a Golasecca (Varese)???\nSeguitemi in diretta!", "post_text": "Ma che caldo fa qui a Golasecca (Varese)???\nSeguitemi in diretta!", "shared_text": "", "time": "2019-07-25 21:42:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=451707472046620&id=252306033154", "link": null} +{"post_id": "460368248088320", "text": "Nel 2015 i minori stranieri scomparsi erano 35 mila, mentre nel 2019 siamo fermi a 2 mila persone, dimostrando che un approccio pi\u00f9 rigoroso evita tante fughe.\nContiamo di continuare su questa strada per\u2026 Altro azzerare le sparizioni di stranieri e italiani.\nEcco il mio intervento di questa mattina a Montecitorio sulla relazione del Commissario straordinario per le persone scomparse.", "post_text": "Nel 2015 i minori stranieri scomparsi erano 35 mila, mentre nel 2019 siamo fermi a 2 mila persone, dimostrando che un approccio pi\u00f9 rigoroso evita tante fughe.\nContiamo di continuare su questa strada per\u2026 Altro azzerare le sparizioni di stranieri e italiani.\nEcco il mio intervento di questa mattina a Montecitorio sulla relazione del Commissario straordinario per le persone scomparse.", "shared_text": "", "time": "2019-07-25 16:10:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=460368248088320&id=252306033154", "link": null} +{"post_id": "2410767382294737", "text": "In diretta dalla Camera insieme al Ministro della famiglia Alessandra Locatelli: non solo Bibbiano, ecco tutte le proposte della Lega a difesa dei bambini e delle famiglie. Seguiteci.", "post_text": "In diretta dalla Camera insieme al Ministro della famiglia Alessandra Locatelli: non solo Bibbiano, ecco tutte le proposte della Lega a difesa dei bambini e delle famiglie. Seguiteci.", "shared_text": "", "time": "2019-07-25 11:05:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2410767382294737&id=252306033154", "link": null} +{"post_id": "865331537173508", "text": "Alle chiacchiere del PD rispondiamo con l\u2019Italia dei S\u00cc.", "post_text": "Alle chiacchiere del PD rispondiamo con l\u2019Italia dei S\u00cc.", "shared_text": "", "time": "2019-07-24 19:40:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=865331537173508&id=252306033154", "link": null} +{"post_id": "437276996858738", "text": "Sbloccati oggi 50 MILIARDI di EURO di opere pubbliche (strade, scuole, ospedali, ferrovie e altri cantieri).\nMentre parlano, noi lavoriamo!\nE tutto GRAZIE a voi Amici.", "post_text": "Sbloccati oggi 50 MILIARDI di EURO di opere pubbliche (strade, scuole, ospedali, ferrovie e altri cantieri).\nMentre parlano, noi lavoriamo!\nE tutto GRAZIE a voi Amici.", "shared_text": "", "time": "2019-07-24 13:05:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=437276996858738&id=252306033154", "link": null} +{"post_id": "334098534165515", "text": "In diretta dalla Prefettura di Firenze per la firma del Protocollo per l\u2019attuazione in Regione Toscana del Numero Unico di Emergenza Europeo 112.\nState con me.", "post_text": "In diretta dalla Prefettura di Firenze per la firma del Protocollo per l\u2019attuazione in Regione Toscana del Numero Unico di Emergenza Europeo 112.\nState con me.", "shared_text": "", "time": "2019-07-22 15:18:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=334098534165515&id=252306033154", "link": null} +{"post_id": "335247200696186", "text": "Questa sera ad Adro eravate davvero tantissimi!\nSe avete tempo e voglia ecco il mio intervento, penso di essere stato chiaro.\nBuonanotte Amici, se voi ci siete io ci sono.", "post_text": "Questa sera ad Adro eravate davvero tantissimi!\nSe avete tempo e voglia ecco il mio intervento, penso di essere stato chiaro.\nBuonanotte Amici, se voi ci siete io ci sono.", "shared_text": "", "time": "2019-07-21 23:41:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=335247200696186&id=252306033154", "link": null} +{"post_id": "10156780387653155", "text": "Giornate intense ma non si molla: sempre e solo #primagliItaliani\ud83c\uddee\ud83c\uddf9", "post_text": "Giornate intense ma non si molla: sempre e solo #primagliItaliani\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-07-19 23:59:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=238684947014635&id=252306033154", "link": null} +{"post_id": "509291389879319", "text": "Grazie a questo governo e all\u2019insultatissimo ministro dell\u2019Interno abbiamo ridotto sbarchi, chiuso centri di accoglienza, salvato vite, risparmiato soldi, assunto poliziotti e l\u2019Italia \u00e8 tornata ad essere un\u2026 Altro Paese rispettato in Europa e nel mondo, e ne vado ORGOGLIOSO. \ud83c\uddee\ud83c\uddf9\nEcco la mia intervista di ieri sera su Rete 4 con Mario Giordano.", "post_text": "Grazie a questo governo e all\u2019insultatissimo ministro dell\u2019Interno abbiamo ridotto sbarchi, chiuso centri di accoglienza, salvato vite, risparmiato soldi, assunto poliziotti e l\u2019Italia \u00e8 tornata ad essere un\u2026 Altro Paese rispettato in Europa e nel mondo, e ne vado ORGOGLIOSO. \ud83c\uddee\ud83c\uddf9\nEcco la mia intervista di ieri sera su Rete 4 con Mario Giordano.", "shared_text": "", "time": "2019-07-19 13:01:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=509291389879319&id=252306033154", "link": null} +{"post_id": "2746374972056445", "text": "Le mie dichiarazioni di poco fa a Helsinki, penso di essere stato chiaro.", "post_text": "Le mie dichiarazioni di poco fa a Helsinki, penso di essere stato chiaro.", "shared_text": "", "time": "2019-07-18 16:35:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2746374972056445&id=252306033154", "link": null} +{"post_id": "655803194897246", "text": "Sempre in diretta dal gattile del cimitero monumentale del Verano! \ud83d\ude0a", "post_text": "Sempre in diretta dal gattile del cimitero monumentale del Verano! \ud83d\ude0a", "shared_text": "", "time": "2019-07-17 11:34:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=655803194897246&id=252306033154", "link": null} +{"post_id": "2612714602113435", "text": "Ora in diretta dal gattile del cimitero monumentale del Verano! \ud83d\udc08\nState con me!\n\u2139\ufe0f SOSanimali.viminale@interno.it", "post_text": "Ora in diretta dal gattile del cimitero monumentale del Verano! \ud83d\udc08\nState con me!\n\u2139\ufe0f SOSanimali.viminale@interno.it", "shared_text": "", "time": "2019-07-17 11:31:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2612714602113435&id=252306033154", "link": null} +{"post_id": "351946025704999", "text": "\u203c PAZZESCO, FAI GIRARE! \"SEAWATCH, OPEN ARMS E MOLTI ALTRI SONO IN CONTATTO CON GLI SCAFISTI\"\nChiamate, messaggi, segnalazioni: uno scafista svela apertamente il suo rapporto con le navi Ong, tra cui quella di\u2026 Altro Carola.\nLo ripetiamo da anni: chi difende le Ong alimenta il business dell'immigrazione clandestina e questo filmato lo dimostra ancora una volta, alla faccia di quei parlamentari che vanno a dormire sulle imbarcazioni fuorilegge.\nIo non mollo Amici. #PORTICHIUSI", "post_text": "\u203c PAZZESCO, FAI GIRARE! \"SEAWATCH, OPEN ARMS E MOLTI ALTRI SONO IN CONTATTO CON GLI SCAFISTI\"\nChiamate, messaggi, segnalazioni: uno scafista svela apertamente il suo rapporto con le navi Ong, tra cui quella di\u2026 Altro Carola.\nLo ripetiamo da anni: chi difende le Ong alimenta il business dell'immigrazione clandestina e questo filmato lo dimostra ancora una volta, alla faccia di quei parlamentari che vanno a dormire sulle imbarcazioni fuorilegge.\nIo non mollo Amici. #PORTICHIUSI", "shared_text": "", "time": "2019-07-16 21:20:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=351946025704999&id=252306033154", "link": null} +{"post_id": "446773012573442", "text": "In diretta dal Viminale dopo l\u2019incontro con le parti sociali per una giornata di ascolto, confronto e proposte sulla crescita del Paese, assieme a pi\u00f9 di 40 sigle sindacali e associazioni di categoria.\nState con me.", "post_text": "In diretta dal Viminale dopo l\u2019incontro con le parti sociali per una giornata di ascolto, confronto e proposte sulla crescita del Paese, assieme a pi\u00f9 di 40 sigle sindacali e associazioni di categoria.\nState con me.", "shared_text": "", "time": "2019-07-15 12:18:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=446773012573442&id=252306033154", "link": null} +{"post_id": "509195213165202", "text": "Nessuna tolleranza e nessuno sconto ai violenti che occupano, incendiano e attaccano le Forze dell\u2019Ordine. Lo stabile \u00e8 pericolante, immigrati e centri sociali che fanno le barricate mettono a rischio l\u2019incolumit\u00e0 di donne e bambini. I cittadini romani e gli italiani meritano legalit\u00e0. Stiamo recuperando anni di assenza", "post_text": "Nessuna tolleranza e nessuno sconto ai violenti che occupano, incendiano e attaccano le Forze dell\u2019Ordine. Lo stabile \u00e8 pericolante, immigrati e centri sociali che fanno le barricate mettono a rischio l\u2019incolumit\u00e0 di donne e bambini. I cittadini romani e gli italiani meritano legalit\u00e0. Stiamo recuperando anni di assenza", "shared_text": "", "time": "2019-07-15 10:15:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=509195213165202&id=252306033154", "link": null} +{"post_id": "359712121608390", "text": "Un saluto in diretta dalla piazza di Sassuolo, buona serata Amici \ud83d\ude0a", "post_text": "Un saluto in diretta dalla piazza di Sassuolo, buona serata Amici \ud83d\ude0a", "shared_text": "", "time": "2019-07-13 21:16:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=359712121608390&id=252306033154", "link": null} +{"post_id": "321356842107169", "text": "Qui Ferrara, ringraziando i cittadini che dopo settant\u2019anni di sinistra hanno deciso di dare fiducia ad un sindaco della Lega.\nSeguiteci in diretta \ud83d\ude0a", "post_text": "Qui Ferrara, ringraziando i cittadini che dopo settant\u2019anni di sinistra hanno deciso di dare fiducia ad un sindaco della Lega.\nSeguiteci in diretta \ud83d\ude0a", "shared_text": "", "time": "2019-07-13 19:07:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=321356842107169&id=252306033154", "link": null} +{"post_id": "10156763143428155", "text": "Ecco una sintesi di questa lunga ed intensa settimana.\nBuonanotte Amici! \ud83d\ude0a", "post_text": "Ecco una sintesi di questa lunga ed intensa settimana.\nBuonanotte Amici! \ud83d\ude0a", "shared_text": "", "time": "2019-07-13 00:01:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=461289611364646&id=252306033154", "link": null} +{"post_id": "623779181442079", "text": "Recuperati soldi per la Polizia, adesso bisogna intervenire anche a favore dei Vigili del Fuoco.\nCome promesso, la Lega non molla\ud83d\ude0a.", "post_text": "Recuperati soldi per la Polizia, adesso bisogna intervenire anche a favore dei Vigili del Fuoco.\nCome promesso, la Lega non molla\ud83d\ude0a.", "shared_text": "", "time": "2019-07-12 13:01:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=623779181442079&id=252306033154", "link": null} +{"post_id": "468814223916061", "text": "In diretta dal Senato, seguitemi!", "post_text": "In diretta dal Senato, seguitemi!", "shared_text": "", "time": "2019-07-11 15:14:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=468814223916061&id=252306033154", "link": null} +{"post_id": "2590111767686777", "text": "Agli insulti rispondiamo coi fatti: il Codice Rosso sar\u00e0 legge entro luglio, salvando tante donne vittime di violenza che dovranno essere ascoltate dal giudice entro tre giorni dalla denuncia. E la castrazione chimica per pedofili e stupratori sarebbe un altro passo avanti verso la civilt\u00e0.", "post_text": "Agli insulti rispondiamo coi fatti: il Codice Rosso sar\u00e0 legge entro luglio, salvando tante donne vittime di violenza che dovranno essere ascoltate dal giudice entro tre giorni dalla denuncia. E la castrazione chimica per pedofili e stupratori sarebbe un altro passo avanti verso la civilt\u00e0.", "shared_text": "", "time": "2019-07-10 12:33:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2590111767686777&id=252306033154", "link": null} +{"post_id": "2410193535892751", "text": "In diretta da Mineo (Catania), seguitemi!", "post_text": "In diretta da Mineo (Catania), seguitemi!", "shared_text": "", "time": "2019-07-09 12:56:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2410193535892751&id=252306033154", "link": null} +{"post_id": "428912811035920", "text": "Qui Caltagirone, dove abbiamo appena inaugurato il nuovo Commissariato della Polizia di Stato!\nDoveva essere un centro per ospitare minori stranieri non accompagnati, ma fortunatamente, grazie alla netta riduzione degli sbarchi, adesso qui ci saranno 61 uomini e donne delle Forze dell'Ordine pronte ad occuparsi di sicurezza!", "post_text": "Qui Caltagirone, dove abbiamo appena inaugurato il nuovo Commissariato della Polizia di Stato!\nDoveva essere un centro per ospitare minori stranieri non accompagnati, ma fortunatamente, grazie alla netta riduzione degli sbarchi, adesso qui ci saranno 61 uomini e donne delle Forze dell'Ordine pronte ad occuparsi di sicurezza!", "shared_text": "", "time": "2019-07-09 12:39:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=428912811035920&id=252306033154", "link": null} +{"post_id": "2179669498826335", "text": "\u201cChi tace e chi piega la testa muore ogni volta che lo fa, chi parla e chi cammina a testa alta muore una volta sola.\u201d Giovanni Falcone\nIo non mi arrendo, a difesa degli Italiani!", "post_text": "\u201cChi tace e chi piega la testa muore ogni volta che lo fa, chi parla e chi cammina a testa alta muore una volta sola.\u201d Giovanni Falcone\nIo non mi arrendo, a difesa degli Italiani!", "shared_text": "", "time": "2019-07-06 20:01:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2179669498826335&id=252306033154", "link": null} +{"post_id": "520961765489251", "text": "Ieri, oltre a cibo e coperte, sono stati consegnati pi\u00f9 di 400 litri di acqua potabile alla barca dei centri sociali, e altrettanti sono stati successivamente rifiutati.\nPur di infrangere la legge, questi\u2026 Altro sciacalli mettono a rischio la vita degli immigrati a bordo.\nRimarranno impuniti anche loro?\nIn un Paese serio, arresti e sequestro del mezzo sarebbero immediati: che faranno i giudici stavolta???\nP.S. Alla nave della ONG tedesca che ci chiede lo sbarco in Italia, ovviamente abbiamo detto NO.\nSempre che non ci sia un giudice che decida il contrario.....", "post_text": "Ieri, oltre a cibo e coperte, sono stati consegnati pi\u00f9 di 400 litri di acqua potabile alla barca dei centri sociali, e altrettanti sono stati successivamente rifiutati.\nPur di infrangere la legge, questi\u2026 Altro sciacalli mettono a rischio la vita degli immigrati a bordo.\nRimarranno impuniti anche loro?\nIn un Paese serio, arresti e sequestro del mezzo sarebbero immediati: che faranno i giudici stavolta???\nP.S. Alla nave della ONG tedesca che ci chiede lo sbarco in Italia, ovviamente abbiamo detto NO.\nSempre che non ci sia un giudice che decida il contrario.....", "shared_text": "", "time": "2019-07-06 17:22:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=520961765489251&id=252306033154", "link": null} +{"post_id": "2417644021628638", "text": "In diretta da Milano al Villaggio Coldiretti. Seguitemi!", "post_text": "In diretta da Milano al Villaggio Coldiretti. Seguitemi!", "shared_text": "", "time": "2019-07-06 11:25:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2417644021628638&id=252306033154", "link": null} +{"post_id": "10156745329963155", "text": "Settimana impegnativa ma sempre in battaglia, ecco una sintesi!\nBuona notte Amici.", "post_text": "Settimana impegnativa ma sempre in battaglia, ecco una sintesi!\nBuona notte Amici.", "shared_text": "", "time": "2019-07-06 00:00:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=419741731945836&id=252306033154", "link": null} +{"post_id": "345050366190153", "text": "Ancora in diretta da Trieste!", "post_text": "Ancora in diretta da Trieste!", "shared_text": "", "time": "2019-07-05 13:12:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=345050366190153&id=252306033154", "link": null} +{"post_id": "348241469201928", "text": "Qui Nettuno dopo aver sperimentato il taser, seguitemi.", "post_text": "Qui Nettuno dopo aver sperimentato il taser, seguitemi.", "shared_text": "", "time": "2019-07-03 11:32:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=348241469201928&id=252306033154", "link": null} +{"post_id": "2330927467123679", "text": "L\u2019altra sera a ora tarda sono intervenuto ai microfoni di Rai Radio 2.\nSe avete voglia, ecco l\u2019intervista! \ud83d\ude0a", "post_text": "L\u2019altra sera a ora tarda sono intervenuto ai microfoni di Rai Radio 2.\nSe avete voglia, ecco l\u2019intervista! \ud83d\ude0a", "shared_text": "", "time": "2019-07-01 13:06:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2330927467123679&id=252306033154", "link": null} +{"post_id": "2388135078072905", "text": "In diretta dalla festa Lega di Cant\u00f9! Buona serata Amici \ud83d\ude0a", "post_text": "In diretta dalla festa Lega di Cant\u00f9! Buona serata Amici \ud83d\ude0a", "shared_text": "", "time": "2019-06-30 21:22:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2388135078072905&id=252306033154", "link": null} +{"post_id": "10156728692303155", "text": "\u201cMentre quelli del Pd fanno i fenomeni andando sulla SeaWatch, tutti zitti sullo scandalo degli affidi illeciti di Reggio Emilia\u201d.\nEsemplare. Da ascoltare!", "post_text": "\u201cMentre quelli del Pd fanno i fenomeni andando sulla SeaWatch, tutti zitti sullo scandalo degli affidi illeciti di Reggio Emilia\u201d.\nEsemplare. Da ascoltare!", "shared_text": "", "time": "2019-06-29 22:31:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=385406682084550&id=252306033154", "link": null} +{"post_id": "446002049310349", "text": "Galera per chi ha rischiato di uccidere militari italiani in servizio, sequestro e blocco della nave pirata, maximulta alla ONG, allontanamento di tutti gli immigrati a bordo, tanta pena per i \u201ccomplici\u201d di sinistra.\nGiustizia \u00e8 fatta, indietro non si torna!", "post_text": "Galera per chi ha rischiato di uccidere militari italiani in servizio, sequestro e blocco della nave pirata, maximulta alla ONG, allontanamento di tutti gli immigrati a bordo, tanta pena per i \u201ccomplici\u201d di sinistra.\nGiustizia \u00e8 fatta, indietro non si torna!", "shared_text": "", "time": "2019-06-29 11:54:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=446002049310349&id=252306033154", "link": null} +{"post_id": "10156725911498155", "text": "Settimana intensa ma continuo e continuer\u00f2 a dare il massimo per garantire la dignit\u00e0, i confini e il Futuro dell\u2019Italia. Io non mollo.\nBuonanotte Amici.", "post_text": "Settimana intensa ma continuo e continuer\u00f2 a dare il massimo per garantire la dignit\u00e0, i confini e il Futuro dell\u2019Italia. Io non mollo.\nBuonanotte Amici.", "shared_text": "", "time": "2019-06-29 00:30:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=324180361839041&id=252306033154", "link": null} +{"post_id": "381749902694924", "text": "Fosse per me la vicenda si concluderebbe con il sequestro della nave, arresto ed espulsione dell\u2019equipaggio, trasferimento degli immigrati in altri Stati europei.\nVorrei dedicare tutte le mie energie alla lotta\u2026 Altro alla mafia senza perdere tempo con associazioni private straniere che decidono come e dove infrangere la legge italiana.\nEcco che cosa ho detto questa mattina su Rai Tre.", "post_text": "Fosse per me la vicenda si concluderebbe con il sequestro della nave, arresto ed espulsione dell\u2019equipaggio, trasferimento degli immigrati in altri Stati europei.\nVorrei dedicare tutte le mie energie alla lotta\u2026 Altro alla mafia senza perdere tempo con associazioni private straniere che decidono come e dove infrangere la legge italiana.\nEcco che cosa ho detto questa mattina su Rai Tre.", "shared_text": "", "time": "2019-06-28 19:00:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=381749902694924&id=252306033154", "link": null} +{"post_id": "1081934385527996", "text": "Solo in Italia ci sono politici che vanno a bordo di una nave che se ne \u00e8 fregata delle leggi. \u202c\n\u202aI membri dell\u2019equipaggio vanno arrestati, punto. \u202c\n\u202aHo scritto al mio collega olandese e non mi ha risposto, ma\u2026 Altro io non voglio fare la figura del fesso. Siamo un grande Paese che non prende lezioni da nessuno.\u202c\n\u202aEcco la mia intervista di ieri sera da Paolo Del Debbio, credo di essere stato chiaro.\u202c", "post_text": "Solo in Italia ci sono politici che vanno a bordo di una nave che se ne \u00e8 fregata delle leggi. \u202c\n\u202aI membri dell\u2019equipaggio vanno arrestati, punto. \u202c\n\u202aHo scritto al mio collega olandese e non mi ha risposto, ma\u2026 Altro io non voglio fare la figura del fesso. Siamo un grande Paese che non prende lezioni da nessuno.\u202c\n\u202aEcco la mia intervista di ieri sera da Paolo Del Debbio, credo di essere stato chiaro.\u202c", "shared_text": "", "time": "2019-06-28 13:45:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1081934385527996&id=252306033154", "link": null} +{"post_id": "334718220763322", "text": "In diretta da Genova, sul luogo della demolizione del Ponte Morandi.", "post_text": "In diretta da Genova, sul luogo della demolizione del Ponte Morandi.", "shared_text": "", "time": "2019-06-28 10:20:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=334718220763322&id=252306033154", "link": null} +{"post_id": "707482279676909", "text": "In diretta da Treviglio (Bergamo). Ma quanto caldo fa?\ud83d\ude0a", "post_text": "In diretta da Treviglio (Bergamo). Ma quanto caldo fa?\ud83d\ude0a", "shared_text": "", "time": "2019-06-27 21:26:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=707482279676909&id=252306033154", "link": null} +{"post_id": "10156722909153155", "text": "\u201cSalvini la chiama sbruffoncella? Io avrei detto di peggio, \u00e8 una delinquente e merita la galera\u201d. Come lotta Porro, da ascoltare! \ud83d\udc4d", "post_text": "\u201cSalvini la chiama sbruffoncella? Io avrei detto di peggio, \u00e8 una delinquente e merita la galera\u201d. Come lotta Porro, da ascoltare! \ud83d\udc4d", "shared_text": "", "time": "2019-06-27 20:13:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1538744752934549&id=252306033154", "link": null} +{"post_id": "982980448760060", "text": "In diretta dal Viminale dopo i Comitati Nazionali per l'Ordine e la Sicurezza Pubblica di Calabria e Puglia.\nState con me.", "post_text": "In diretta dal Viminale dopo i Comitati Nazionali per l'Ordine e la Sicurezza Pubblica di Calabria e Puglia.\nState con me.", "shared_text": "", "time": "2019-06-26 17:40:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=982980448760060&id=252306033154", "link": null} +{"post_id": "1667940396683163", "text": "L\u2019immigrazione non pu\u00f2 essere gestita da navi fuorilegge: siamo pronti a bloccare qualunque tipo di illegalit\u00e0.\nChi sbaglia, paga.\nP.S. L\u2019Europa? Assente, come sempre.", "post_text": "L\u2019immigrazione non pu\u00f2 essere gestita da navi fuorilegge: siamo pronti a bloccare qualunque tipo di illegalit\u00e0.\nChi sbaglia, paga.\nP.S. L\u2019Europa? Assente, come sempre.", "shared_text": "", "time": "2019-06-26 14:31:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1667940396683163&id=252306033154", "link": null} +{"post_id": "378383553064095", "text": "Ieri sera ho ribadito alla Berlinguer che chi scappa davvero dalla guerra arriva in aereo con i corridoi umanitari, ma chi d\u00e0 3mila dollari agli scafisti per arrivare via mare alimentando il traffico di uomini, armi e droga in Italia non entra. Punto.", "post_text": "Ieri sera ho ribadito alla Berlinguer che chi scappa davvero dalla guerra arriva in aereo con i corridoi umanitari, ma chi d\u00e0 3mila dollari agli scafisti per arrivare via mare alimentando il traffico di uomini, armi e droga in Italia non entra. Punto.", "shared_text": "", "time": "2019-06-26 13:51:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=378383553064095&id=252306033154", "link": null} +{"post_id": "10156708084648155", "text": "Giornate intense ma non molliamo!\nAvanti tutta, per il bene degli Italiani \ud83c\uddee\ud83c\uddf9\nBuonanotte Amici.", "post_text": "Giornate intense ma non molliamo!\nAvanti tutta, per il bene degli Italiani \ud83c\uddee\ud83c\uddf9\nBuonanotte Amici.", "shared_text": "", "time": "2019-06-21 23:45:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2382375138754209&id=252306033154", "link": null} +{"post_id": "321849662075548", "text": "In diretta da Milano. L\u2019Italia ha i migliori lavoratori e i migliori imprenditori del mondo: torniamo a farli correre con shock fiscale, meno burocrazia, giustizia pi\u00f9 veloce. #FestivalLavoro", "post_text": "In diretta da Milano. L\u2019Italia ha i migliori lavoratori e i migliori imprenditori del mondo: torniamo a farli correre con shock fiscale, meno burocrazia, giustizia pi\u00f9 veloce. #FestivalLavoro", "shared_text": "", "time": "2019-06-21 15:08:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=321849662075548&id=252306033154", "link": null} +{"post_id": "380666949463904", "text": "Questa mattina, intervenendo alla Scuola di Perfezionamento per le Forze di Polizia, ho ribadito la mia soddisfazione nell\u2019andare all\u2019estero e ricevere i complimenti per il modello organizzativo e cooperativo\u2026 Altro delle nostre Forze di Sicurezza. Anche in questo l\u2019Italia \u00e8 un\u2019eccellenza di cui dobbiamo andare fieri.\nDa ministro vi dico grazie, perch\u00e9 siete una delle parti migliori di questo Paese.", "post_text": "Questa mattina, intervenendo alla Scuola di Perfezionamento per le Forze di Polizia, ho ribadito la mia soddisfazione nell\u2019andare all\u2019estero e ricevere i complimenti per il modello organizzativo e cooperativo\u2026 Altro delle nostre Forze di Sicurezza. Anche in questo l\u2019Italia \u00e8 un\u2019eccellenza di cui dobbiamo andare fieri.\nDa ministro vi dico grazie, perch\u00e9 siete una delle parti migliori di questo Paese.", "shared_text": "", "time": "2019-06-20 12:29:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=380666949463904&id=252306033154", "link": null} +{"post_id": "619931621830945", "text": "Qualche minuto per stare insieme a Voi\ud83d\ude0a", "post_text": "Qualche minuto per stare insieme a Voi\ud83d\ude0a", "shared_text": "", "time": "2019-06-19 12:57:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=619931621830945&id=252306033154", "link": null} +{"post_id": "2336480386681471", "text": "Qui Casa Bianca dopo il mio incontro con il vicepresidente americano Mike Pence.\nSeguitemi! \ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8", "post_text": "Qui Casa Bianca dopo il mio incontro con il vicepresidente americano Mike Pence.\nSeguitemi! \ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8", "shared_text": "", "time": "2019-06-17 21:27:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2336480386681471&id=252306033154", "link": null} +{"post_id": "502349013638103", "text": "Ora in diretta da Villa Firenze, residenza dell\u2019Ambasciatore italiano. Mi seguite? \ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8", "post_text": "Ora in diretta da Villa Firenze, residenza dell\u2019Ambasciatore italiano. Mi seguite? \ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8", "shared_text": "", "time": "2019-06-17 17:56:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=502349013638103&id=252306033154", "link": null} +{"post_id": "438663366911576", "text": "Al Cimitero di Arlington a Washington per la deposizione di una corona di fiori alla Tomba del Milite Ignoto #SalviniUSA\ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8", "post_text": "Al Cimitero di Arlington a Washington per la deposizione di una corona di fiori alla Tomba del Milite Ignoto #SalviniUSA\ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8", "shared_text": "", "time": "2019-06-17 16:45:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=438663366911576&id=252306033154", "link": null} +{"post_id": "413034765965386", "text": "In diretta da Washington al Lincoln Memorial. \ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8", "post_text": "In diretta da Washington al Lincoln Memorial. \ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8", "shared_text": "", "time": "2019-06-17 16:03:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=413034765965386&id=252306033154", "link": null} +{"post_id": "608286766241657", "text": "Qui Washington, amici nottambuli dall\u2019Italia, seguitemi!", "post_text": "Qui Washington, amici nottambuli dall\u2019Italia, seguitemi!", "shared_text": "", "time": "2019-06-17 01:41:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=608286766241657&id=252306033154", "link": null} +{"post_id": "10156690892348155", "text": "Settimana intensa ma non si molla!\nBuonanotte Amici \ud83d\ude0a", "post_text": "Settimana intensa ma non si molla!\nBuonanotte Amici \ud83d\ude0a", "shared_text": "", "time": "2019-06-14 23:00:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=618302248666897&id=252306033154", "link": null} +{"post_id": "440610480065127", "text": "In diretta dalla Camera, state con me.", "post_text": "In diretta dalla Camera, state con me.", "shared_text": "", "time": "2019-06-12 15:04:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=440610480065127&id=252306033154", "link": null} +{"post_id": "2374423152794760", "text": "Se tu tiri schiaffi e dai una multa ad un Paese che si sta muovendo allora a qualcuno pu\u00f2 venire il dubbio che tu voglia mettere le mani sulle aziende italiane.\nIeri sera da Bruno Vespa credo di aver parlato chiaro, se avete voglia rivedete insieme a me.", "post_text": "Se tu tiri schiaffi e dai una multa ad un Paese che si sta muovendo allora a qualcuno pu\u00f2 venire il dubbio che tu voglia mettere le mani sulle aziende italiane.\nIeri sera da Bruno Vespa credo di aver parlato chiaro, se avete voglia rivedete insieme a me.", "shared_text": "", "time": "2019-06-12 13:34:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2374423152794760&id=252306033154", "link": null} +{"post_id": "2359047687693565", "text": "\ud83d\udd34 Decreto Sicurezza bis approvato!\nSeguitemi ora in diretta da Palazzo Chigi.", "post_text": "\ud83d\udd34 Decreto Sicurezza bis approvato!\nSeguitemi ora in diretta da Palazzo Chigi.", "shared_text": "", "time": "2019-06-11 18:24:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2359047687693565&id=252306033154", "link": null} +{"post_id": "2388957068015423", "text": "La mia intervista di ieri da Barbara D\u2019Urso. Buon pranzo Amici!", "post_text": "La mia intervista di ieri da Barbara D\u2019Urso. Buon pranzo Amici!", "shared_text": "", "time": "2019-06-08 13:30:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2388957068015423&id=252306033154", "link": null} +{"post_id": "10156674259478155", "text": "Che settimana entusiasmante!\nGrazie Amici, il vostro affetto vale pi\u00f9 di cento sondaggi.\nE questo fine settimana, in tantissimi comuni, si fa la storia. Conto su di voi!\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "post_text": "Che settimana entusiasmante!\nGrazie Amici, il vostro affetto vale pi\u00f9 di cento sondaggi.\nE questo fine settimana, in tantissimi comuni, si fa la storia. Conto su di voi!\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-08 01:15:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2317601288560719&id=252306033154", "link": null} +{"post_id": "438802806909936", "text": "Eccomi a Biella! Ma quanti siete?\nSeguitemi!\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "post_text": "Eccomi a Biella! Ma quanti siete?\nSeguitemi!\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-07 21:49:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=438802806909936&id=252306033154", "link": null} +{"post_id": "10156673715288155", "text": "Vi ripropongo la mia intervista di ieri sera da Paolo Del Debbio, vi piacer\u00e0 \ud83d\ude0a", "post_text": "Vi ripropongo la mia intervista di ieri sera da Paolo Del Debbio, vi piacer\u00e0 \ud83d\ude0a", "shared_text": "", "time": "2019-06-07 20:06:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=369667630570251&id=252306033154", "link": null} +{"post_id": "379546962904757", "text": "In diretta da Paderno Dugnano, poi alle 21.00 sar\u00f2 a Biella!\nChi si ferma \u00e8 perduto!", "post_text": "In diretta da Paderno Dugnano, poi alle 21.00 sar\u00f2 a Biella!\nChi si ferma \u00e8 perduto!", "shared_text": "", "time": "2019-06-07 19:15:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=379546962904757&id=252306033154", "link": null} +{"post_id": "1200289940144669", "text": "Un venerd\u00ec pomeriggio al sole a Romano di Lombardia (Bergamo) \u2600\ufe0f\nState con noi!", "post_text": "Un venerd\u00ec pomeriggio al sole a Romano di Lombardia (Bergamo) \u2600\ufe0f\nState con noi!", "shared_text": "", "time": "2019-06-07 14:32:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1200289940144669&id=252306033154", "link": null} +{"post_id": "468021717266639", "text": "Anche a Prato una marea di strette di mano, consigli e qualche foto. Quante emozioni, state con noi!", "post_text": "Anche a Prato una marea di strette di mano, consigli e qualche foto. Quante emozioni, state con noi!", "shared_text": "", "time": "2019-06-06 22:32:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=468021717266639&id=252306033154", "link": null} +{"post_id": "326189931610348", "text": "Su migliaia di giudici che fanno obiettivamente il proprio lavoro \u00e8 strano che qualcuno partecipi a convegni pro-immigrazione e a favore dei porti aperti, al grido di \u201cnessuno \u00e8 clandestino!\u201d, e poi giudichi l\u2019operato del mio Ministero su questi temi, non credete?\nEcco cosa ho detto questa mattina su Canale 5.", "post_text": "Su migliaia di giudici che fanno obiettivamente il proprio lavoro \u00e8 strano che qualcuno partecipi a convegni pro-immigrazione e a favore dei porti aperti, al grido di \u201cnessuno \u00e8 clandestino!\u201d, e poi giudichi l\u2019operato del mio Ministero su questi temi, non credete?\nEcco cosa ho detto questa mattina su Canale 5.", "shared_text": "", "time": "2019-06-06 19:45:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=326189931610348&id=252306033154", "link": null} +{"post_id": "314397062809435", "text": "Buonasera dalla splendida Orvieto, seguitemi!\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "post_text": "Buonasera dalla splendida Orvieto, seguitemi!\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-05 21:38:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=314397062809435&id=252306033154", "link": null} +{"post_id": "467828753977657", "text": "Buon pomeriggio Amici, ora in diretta da Foligno, nella splendida Umbria. Seguitemi!\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "post_text": "Buon pomeriggio Amici, ora in diretta da Foligno, nella splendida Umbria. Seguitemi!\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-05 16:15:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=467828753977657&id=252306033154", "link": null} +{"post_id": "2479951868704308", "text": "Qui Ascoli, avanti tutta!", "post_text": "Qui Ascoli, avanti tutta!", "shared_text": "", "time": "2019-06-05 13:00:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2479951868704308&id=252306033154", "link": null} +{"post_id": "1277828389052006", "text": "In diretta da Ascoli Piceno per la celebrazione dei 205 anni dalla fondazione dei Carabinieri.\nOnore alle donne e agli uomini dell\u2019Arma! \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Ascoli Piceno per la celebrazione dei 205 anni dalla fondazione dei Carabinieri.\nOnore alle donne e agli uomini dell\u2019Arma! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-05 10:43:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1277828389052006&id=252306033154", "link": null} +{"post_id": "2184590348428257", "text": "Buonasera da Forl\u00ec Amici! Avanti tutta \ud83d\udcaa\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "post_text": "Buonasera da Forl\u00ec Amici! Avanti tutta \ud83d\udcaa\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-04 21:44:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2184590348428257&id=252306033154", "link": null} +{"post_id": "296443091063968", "text": "Qui Argenta (Ferrara), chi si ferma \u00e8 perduto!\nChi mi segue?", "post_text": "Qui Argenta (Ferrara), chi si ferma \u00e8 perduto!\nChi mi segue?", "shared_text": "", "time": "2019-06-04 17:50:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=296443091063968&id=252306033154", "link": null} +{"post_id": "425987464908245", "text": "In diretta da Mirandola (Modena) per sostenere anche qui, il candidato sindaco della Lega in vista dei ballottaggi di questa domenica.\nP.s. Ma che caldo fa??? \ud83d\udd25\ud83d\udd25\ud83d\udd25\n#domenicavotoLega", "post_text": "In diretta da Mirandola (Modena) per sostenere anche qui, il candidato sindaco della Lega in vista dei ballottaggi di questa domenica.\nP.s. Ma che caldo fa??? \ud83d\udd25\ud83d\udd25\ud83d\udd25\n#domenicavotoLega", "shared_text": "", "time": "2019-06-04 12:42:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=425987464908245&id=252306033154", "link": null} +{"post_id": "443404203115821", "text": "La mia intervista di stamattina a RTL 102.5: emergenza tasse, lavoro e economia, serve accelerare e dire tanti S\u00cd, la Lega c\u2019\u00e8!", "post_text": "La mia intervista di stamattina a RTL 102.5: emergenza tasse, lavoro e economia, serve accelerare e dire tanti S\u00cd, la Lega c\u2019\u00e8!", "shared_text": "", "time": "2019-06-04 12:27:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=443404203115821&id=252306033154", "link": null} +{"post_id": "665349473917317", "text": "Un saluto da Castelfranco Emilia \u2600\ufe0f\nMi seguite?\n#domenicavotoLega\ud83c\uddee\ud83c\uddf9", "post_text": "Un saluto da Castelfranco Emilia \u2600\ufe0f\nMi seguite?\n#domenicavotoLega\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-04 10:32:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=665349473917317&id=252306033154", "link": null} +{"post_id": "1223990464438677", "text": "Qui Porto Mantovano, mi seguite?\n#domenicavotoLega\ud83c\uddee\ud83c\uddf9", "post_text": "Qui Porto Mantovano, mi seguite?\n#domenicavotoLega\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-03 18:58:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1223990464438677&id=252306033154", "link": null} +{"post_id": "859119944456962", "text": "In diretta da San Bonifacio (Verona)! Seguitemi amici!\n#9giugnovotoLega \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da San Bonifacio (Verona)! Seguitemi amici!\n#9giugnovotoLega \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-03 17:15:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=859119944456962&id=252306033154", "link": null} +{"post_id": "2295417667366309", "text": "Felice di inaugurare il primo tratto della Superstrada Pedemontana Veneta, che far\u00e0 viaggiare pi\u00f9 velocemente tantissimi lavoratori, camionisti, imprenditori.\nSeguitemi in diretta!", "post_text": "Felice di inaugurare il primo tratto della Superstrada Pedemontana Veneta, che far\u00e0 viaggiare pi\u00f9 velocemente tantissimi lavoratori, camionisti, imprenditori.\nSeguitemi in diretta!", "shared_text": "", "time": "2019-06-03 12:09:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2295417667366309&id=252306033154", "link": null} +{"post_id": "2303398166415361", "text": "Ora a Civitavecchia per sostenere il nostro candidato sindaco... ma quanti siete?? Grazieeee!\n#9giugnovotoLega", "post_text": "Ora a Civitavecchia per sostenere il nostro candidato sindaco... ma quanti siete?? Grazieeee!\n#9giugnovotoLega", "shared_text": "", "time": "2019-06-02 21:48:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2303398166415361&id=252306033154", "link": null} +{"post_id": "820751274974507", "text": "In diretta dai Fori Imperiali a Roma! \ud83c\uddee\ud83c\uddf9\n#festadellarepubblica", "post_text": "In diretta dai Fori Imperiali a Roma! \ud83c\uddee\ud83c\uddf9\n#festadellarepubblica", "shared_text": "", "time": "2019-06-02 11:43:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=820751274974507&id=252306033154", "link": null} +{"post_id": "10156659184163155", "text": "Grazie, grazie e ancora GRAZIE: rivivete insieme a me le emozioni di questa settimana indimenticabile. Orgoglioso della fiducia che 9 MILIONI di italiani hanno dato alla Lega, portandola ad essere la prima\u2026 Altro forza politica, non solo d\u2019Italia ma di tutta Europa! Ce la metter\u00f2 tutta, insieme alla nostra squadra, per ripagare questo consenso straordinario e commovente. Buonanotte Amici, vi voglio bene \u2764\ufe0f", "post_text": "Grazie, grazie e ancora GRAZIE: rivivete insieme a me le emozioni di questa settimana indimenticabile. Orgoglioso della fiducia che 9 MILIONI di italiani hanno dato alla Lega, portandola ad essere la prima\u2026 Altro forza politica, non solo d\u2019Italia ma di tutta Europa! Ce la metter\u00f2 tutta, insieme alla nostra squadra, per ripagare questo consenso straordinario e commovente. Buonanotte Amici, vi voglio bene \u2764\ufe0f", "shared_text": "", "time": "2019-06-01 23:55:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2250082585081706&id=252306033154", "link": null} +{"post_id": "318877912344325", "text": "Ora a Campobasso a sostegno del nostro candidato sindaco al ballottaggio. Seguitemi! #9giugnovotoLega #primagliitaliani \ud83c\uddee\ud83c\uddf9", "post_text": "Ora a Campobasso a sostegno del nostro candidato sindaco al ballottaggio. Seguitemi! #9giugnovotoLega #primagliitaliani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-01 13:59:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=318877912344325&id=252306033154", "link": null} +{"post_id": "656549304766378", "text": "Sempre in diretta da Potenza!\n#9giugnovotoLega #primagliitaliani \ud83c\uddee\ud83c\uddf9", "post_text": "Sempre in diretta da Potenza!\n#9giugnovotoLega #primagliitaliani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-06-01 10:59:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=656549304766378&id=252306033154", "link": null} +{"post_id": "2251991934883297", "text": "In diretta da Casoria (Napoli), state con noi se vi va!\n#9giugnovotoLega #primagliitaliani \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Casoria (Napoli), state con noi se vi va!\n#9giugnovotoLega #primagliitaliani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-31 21:21:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2251991934883297&id=252306033154", "link": null} +{"post_id": "2606175026276026", "text": "Bella intervista ieri sera su Rete 4 da Paolo Del Debbio, guardate e condividete, vi piacer\u00e0! Buon pranzo Amici.", "post_text": "Bella intervista ieri sera su Rete 4 da Paolo Del Debbio, guardate e condividete, vi piacer\u00e0! Buon pranzo Amici.", "shared_text": "", "time": "2019-05-31 13:47:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2606175026276026&id=252306033154", "link": null} +{"post_id": "10156654428653155", "text": "Porter\u00f2 la discussione sulla flat tax per imprese e famiglie nel prossimo Consiglio dei Ministri. Taglio di tasse e burocrazia, pace fiscale, infrastrutture, sviluppo: solo cos\u00ec l'Italia pu\u00f2 tornare a correre, come merita da seconda potenza industriale europea. Di questo ho parlato nella conferenza stampa di oggi al Senato.", "post_text": "Porter\u00f2 la discussione sulla flat tax per imprese e famiglie nel prossimo Consiglio dei Ministri. Taglio di tasse e burocrazia, pace fiscale, infrastrutture, sviluppo: solo cos\u00ec l'Italia pu\u00f2 tornare a correre, come merita da seconda potenza industriale europea. Di questo ho parlato nella conferenza stampa di oggi al Senato.", "shared_text": "", "time": "2019-05-30 23:00:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=296138294605584&id=252306033154", "link": null} +{"post_id": "2201836693186853", "text": "In diretta dal Senato, state con me.", "post_text": "In diretta dal Senato, state con me.", "shared_text": "", "time": "2019-05-30 15:02:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2201836693186853&id=252306033154", "link": null} +{"post_id": "892208174459672", "text": "Buona serata Amici!\nPronte le proposte della Lega per tagliare tasse e burocrazia: solo un\u2019Italia che cresce e lavora aiuta l\u2019Europa a rinascere.", "post_text": "Buona serata Amici!\nPronte le proposte della Lega per tagliare tasse e burocrazia: solo un\u2019Italia che cresce e lavora aiuta l\u2019Europa a rinascere.", "shared_text": "", "time": "2019-05-29 20:22:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=892208174459672&id=252306033154", "link": null} +{"post_id": "308863663339238", "text": "Io voglio un\u2019Italia che cresce, e negli 10 anni le assurde regole europee hanno fatto aumentare debito e disoccupazione.\nPer questo voglio usare il consenso degli italiani per abbassare le tasse a imprese e famiglie, con un Paese che torna a respirare e a crescere. \ud83c\uddee\ud83c\uddf9\nEcco che cosa ho detto ieri sera da Nicola Porro.", "post_text": "Io voglio un\u2019Italia che cresce, e negli 10 anni le assurde regole europee hanno fatto aumentare debito e disoccupazione.\nPer questo voglio usare il consenso degli italiani per abbassare le tasse a imprese e famiglie, con un Paese che torna a respirare e a crescere. \ud83c\uddee\ud83c\uddf9\nEcco che cosa ho detto ieri sera da Nicola Porro.", "shared_text": "", "time": "2019-05-29 15:00:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=308863663339238&id=252306033154", "link": null} +{"post_id": "310078853252229", "text": "Qui Ministero dell\u2019Interno, sempre al lavoro per gli Italiani \ud83c\uddee\ud83c\uddf9\nState con me!", "post_text": "Qui Ministero dell\u2019Interno, sempre al lavoro per gli Italiani \ud83c\uddee\ud83c\uddf9\nState con me!", "shared_text": "", "time": "2019-05-28 18:43:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=310078853252229&id=252306033154", "link": null} +{"post_id": "463598991113662", "text": "Dopo il GRAZIE a tutti gli Italiani per la loro fiducia, siamo al lavoro per ridurre le tasse, aumentare la sicurezza e riportare l\u2019Europa a investire sui giovani e sul lavoro.\nCoraggio e idee chiare, il Futuro ci appartiene.", "post_text": "Dopo il GRAZIE a tutti gli Italiani per la loro fiducia, siamo al lavoro per ridurre le tasse, aumentare la sicurezza e riportare l\u2019Europa a investire sui giovani e sul lavoro.\nCoraggio e idee chiare, il Futuro ci appartiene.", "shared_text": "", "time": "2019-05-28 13:32:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=463598991113662&id=252306033154", "link": null} +{"post_id": "906420289715249", "text": "Vi ripropongo la mia intervista di ieri negli studi di SkyTg24.\nAncora poco e facciamo la storia, siete pronti???\n#domenicavotoLega", "post_text": "Vi ripropongo la mia intervista di ieri negli studi di SkyTg24.\nAncora poco e facciamo la storia, siete pronti???\n#domenicavotoLega", "shared_text": "", "time": "2019-05-25 19:05:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=906420289715249&id=252306033154", "link": null} +{"post_id": "531245464072848", "text": "La mia intervista di ieri ai microfoni di RTL 102.5. Eccola! \ud83d\ude0a\n#domenicavotoLega", "post_text": "La mia intervista di ieri ai microfoni di RTL 102.5. Eccola! \ud83d\ude0a\n#domenicavotoLega", "shared_text": "", "time": "2019-05-25 17:00:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=531245464072848&id=252306033154", "link": null} +{"post_id": "395177574670403", "text": "E tu, domenica sei pronto a scrivere la Storia votando Lega?", "post_text": "E tu, domenica sei pronto a scrivere la Storia votando Lega?", "shared_text": "", "time": "2019-05-24 20:42:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=395177574670403&id=252306033154", "link": null} +{"post_id": "469058760533237", "text": "Il mio intervento di poco fa a Pomeriggio 5. Come sono andato???\nDomenica dalle 7 alle 23 grazie a voi l'ITALIA rialza la Testa! #domenicavotoLega", "post_text": "Il mio intervento di poco fa a Pomeriggio 5. Come sono andato???\nDomenica dalle 7 alle 23 grazie a voi l'ITALIA rialza la Testa! #domenicavotoLega", "shared_text": "", "time": "2019-05-24 18:02:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=469058760533237&id=252306033154", "link": null} +{"post_id": "612526585905321", "text": "In diretta da Milano, tra poco in onda con la D\u2019Urso su Canale 5! Ci siete??? Pronti per domenica, avete la tessera elettorale? \ud83d\ude0a", "post_text": "In diretta da Milano, tra poco in onda con la D\u2019Urso su Canale 5! Ci siete??? Pronti per domenica, avete la tessera elettorale? \ud83d\ude0a", "shared_text": "", "time": "2019-05-24 17:09:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=612526585905321&id=252306033154", "link": null} +{"post_id": "1213319655503037", "text": "Qui Vercelli, chi si ferma \u00e8 perduto!\n#domenicavotoLega", "post_text": "Qui Vercelli, chi si ferma \u00e8 perduto!\n#domenicavotoLega", "shared_text": "", "time": "2019-05-24 14:42:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1213319655503037&id=252306033154", "link": null} +{"post_id": "407249220118191", "text": "Non voglio generazioni \"a tempo determinato\" che muoiono di precariato, in Europa bisogna ripartire nel nome del lavoro e della riduzione delle tasse. E serve PI\u00d9 ITALIA in EUROPA. Di questo e molto altro ho parlato questa mattina su Rai Tre, guardate anche voi.", "post_text": "Non voglio generazioni \"a tempo determinato\" che muoiono di precariato, in Europa bisogna ripartire nel nome del lavoro e della riduzione delle tasse. E serve PI\u00d9 ITALIA in EUROPA. Di questo e molto altro ho parlato questa mattina su Rai Tre, guardate anche voi.", "shared_text": "", "time": "2019-05-24 13:23:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=407249220118191&id=252306033154", "link": null} +{"post_id": "395812054352565", "text": "In diretta da Galliate, seguitemi Amici!\n#domenicavotoLega", "post_text": "In diretta da Galliate, seguitemi Amici!\n#domenicavotoLega", "shared_text": "", "time": "2019-05-24 10:37:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=395812054352565&id=252306033154", "link": null} +{"post_id": "672072699895470", "text": "A Novi Ligure (Alessandria) con tanti amici piemontesi!\n#primalitalia\ud83c\uddee\ud83c\uddf9 #domenicavotoLega", "post_text": "A Novi Ligure (Alessandria) con tanti amici piemontesi!\n#primalitalia\ud83c\uddee\ud83c\uddf9 #domenicavotoLega", "shared_text": "", "time": "2019-05-23 22:15:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=672072699895470&id=252306033154", "link": null} +{"post_id": "333890070631722", "text": "Ieri sera insieme a me da Bruno Vespa c\u2019era Giuseppe, ingegnere meccanico, che scegliendo di andare in pensione con Quota 100 si \u00e8 ripreso la sua vita, lasciando il posto a un giovane.\nIn meno di un anno di\u2026 Altro governo abbiamo restituito dignit\u00e0, lavoro e Futuro in Italia, dal 26 maggio contiamo di farlo anche in Europa.\nRivedete l\u2019intervista insieme a me!", "post_text": "Ieri sera insieme a me da Bruno Vespa c\u2019era Giuseppe, ingegnere meccanico, che scegliendo di andare in pensione con Quota 100 si \u00e8 ripreso la sua vita, lasciando il posto a un giovane.\nIn meno di un anno di\u2026 Altro governo abbiamo restituito dignit\u00e0, lavoro e Futuro in Italia, dal 26 maggio contiamo di farlo anche in Europa.\nRivedete l\u2019intervista insieme a me!", "shared_text": "", "time": "2019-05-23 13:51:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=333890070631722&id=252306033154", "link": null} +{"post_id": "2394808030803117", "text": "Ora in diretta da Palermo, il mio intervento alla cerimonia di commemorazione per le stragi di Capaci e di via d'Amelio, con Giovanni Falcone, Paolo Borsellino e tutte le vittime della mafia sempre nella nostra\u2026 Altro mente e nel nostro cuore. Per non dimenticare, per continuare a lottare ed estirpare questo CANCRO dal nostro Paese. #lamafiamifaschifo", "post_text": "Ora in diretta da Palermo, il mio intervento alla cerimonia di commemorazione per le stragi di Capaci e di via d'Amelio, con Giovanni Falcone, Paolo Borsellino e tutte le vittime della mafia sempre nella nostra\u2026 Altro mente e nel nostro cuore. Per non dimenticare, per continuare a lottare ed estirpare questo CANCRO dal nostro Paese. #lamafiamifaschifo", "shared_text": "", "time": "2019-05-23 11:05:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2394808030803117&id=252306033154", "link": null} +{"post_id": "2318131411792264", "text": "Oggi alla radio da quei curiosoni di Un Giorno da Pecora! E verso le 23.30 se non vi siete addormentati e non avete di meglio da fare sono su Rai Uno da Bruno Vespa, sar\u00e0 una puntata interessante! \ud83d\ude0a", "post_text": "Oggi alla radio da quei curiosoni di Un Giorno da Pecora! E verso le 23.30 se non vi siete addormentati e non avete di meglio da fare sono su Rai Uno da Bruno Vespa, sar\u00e0 una puntata interessante! \ud83d\ude0a", "shared_text": "", "time": "2019-05-22 23:01:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2318131411792264&id=252306033154", "link": null} +{"post_id": "1030362513836295", "text": "La mia intervista di ieri sera da Bianca Berlinguer su Rai Tre. Credo di essermela cavata \ud83d\ude09", "post_text": "La mia intervista di ieri sera da Bianca Berlinguer su Rai Tre. Credo di essermela cavata \ud83d\ude09", "shared_text": "", "time": "2019-05-22 19:23:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1030362513836295&id=252306033154", "link": null} +{"post_id": "400087184167269", "text": "In diretta da una splendida Putignano (Bari)! Mi seguite?\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9 #primalitalia", "post_text": "In diretta da una splendida Putignano (Bari)! Mi seguite?\n#domenicavotoLega \ud83c\uddee\ud83c\uddf9 #primalitalia", "shared_text": "", "time": "2019-05-22 12:25:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=400087184167269&id=252306033154", "link": null} +{"post_id": "1144023219115219", "text": "L'altra sera da Nicola Porro ho ribadito che professo la mia fede testimoniando che voglio un Paese in cui si rispettano regole.\nIl \u201cProssimo tuo\u201d da aiutare spesso non arriva dall\u2019altra parte del mondo, ma \u00e8 l\u2019italiano che vive nel pianerottolo a fianco a casa tua.\nEcco l'intervista!\n#domenicavotoLega", "post_text": "L'altra sera da Nicola Porro ho ribadito che professo la mia fede testimoniando che voglio un Paese in cui si rispettano regole.\nIl \u201cProssimo tuo\u201d da aiutare spesso non arriva dall\u2019altra parte del mondo, ma \u00e8 l\u2019italiano che vive nel pianerottolo a fianco a casa tua.\nEcco l'intervista!\n#domenicavotoLega", "shared_text": "", "time": "2019-05-22 11:42:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1144023219115219&id=252306033154", "link": null} +{"post_id": "359687488016774", "text": "State con me in diretta dal Canile Sanitario di Bari!\nStiamo preparando dei provvedimenti per premiare i canili e i gattili che combattono il randagismo, ed altri per rendere pi\u00f9 aspre le pene contro chi maltratta o abbandona gli animali. \ud83d\udc36", "post_text": "State con me in diretta dal Canile Sanitario di Bari!\nStiamo preparando dei provvedimenti per premiare i canili e i gattili che combattono il randagismo, ed altri per rendere pi\u00f9 aspre le pene contro chi maltratta o abbandona gli animali. \ud83d\udc36", "shared_text": "", "time": "2019-05-22 10:24:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=359687488016774&id=252306033154", "link": null} +{"post_id": "2249316155153200", "text": "Non sar\u00e0 certo una pallottola calibro 9 in una busta a fermare il mio lavoro.\nIo sorrido, perdono e difendo gli Italiani!\nE voi, pronti a VOTARE LEGA domenica?", "post_text": "Non sar\u00e0 certo una pallottola calibro 9 in una busta a fermare il mio lavoro.\nIo sorrido, perdono e difendo gli Italiani!\nE voi, pronti a VOTARE LEGA domenica?", "shared_text": "", "time": "2019-05-21 21:17:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2249316155153200&id=252306033154", "link": null} +{"post_id": "299979310903981", "text": "Adesso da Gioia del Colle, vicino Bari. Un bel sole e tanti sorrisi alla faccia di chi ci vuole male. Seguitemi!\n#domenicavotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "post_text": "Adesso da Gioia del Colle, vicino Bari. Un bel sole e tanti sorrisi alla faccia di chi ci vuole male. Seguitemi!\n#domenicavotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-21 16:51:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=299979310903981&id=252306033154", "link": null} +{"post_id": "432528407325238", "text": "In diretta da Ostuni!\n#domenicavotoLega", "post_text": "In diretta da Ostuni!\n#domenicavotoLega", "shared_text": "", "time": "2019-05-21 13:55:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=432528407325238&id=252306033154", "link": null} +{"post_id": "186276985600157", "text": "In diretta dalla splendida Lecce, con un pensiero ai cittadini pugliesi spaventati dal terremoto di questa mattina.\n#26maggiovotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "post_text": "In diretta dalla splendida Lecce, con un pensiero ai cittadini pugliesi spaventati dal terremoto di questa mattina.\n#26maggiovotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-21 11:38:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=186276985600157&id=252306033154", "link": null} +{"post_id": "872346689764329", "text": "In diretta dalla Prefettura di Lecce per la firma del Patto per la sicurezza urbana.\nState con me!", "post_text": "In diretta dalla Prefettura di Lecce per la firma del Patto per la sicurezza urbana.\nState con me!", "shared_text": "", "time": "2019-05-21 10:56:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=872346689764329&id=252306033154", "link": null} +{"post_id": "359009864747161", "text": "Decreto sicurezza bis per combattere camorristi, spacciatori e scafisti, un fondo per difendere gli anziani truffati, pene pi\u00f9 severe per chi abbandona o maltratta animali, telecamere in asili e case di riposo.\u2026 Altro\nNave della ONG finalmente sequestrata, e comandante indagato per favoreggiamento dell\u2019immigrazione clandestina.\nSi va avanti, GRAZIE per il vostro sostegno.\nE il 26 maggio si cambia l\u2019Europa!\n#domenicavotoLega", "post_text": "Decreto sicurezza bis per combattere camorristi, spacciatori e scafisti, un fondo per difendere gli anziani truffati, pene pi\u00f9 severe per chi abbandona o maltratta animali, telecamere in asili e case di riposo.\u2026 Altro\nNave della ONG finalmente sequestrata, e comandante indagato per favoreggiamento dell\u2019immigrazione clandestina.\nSi va avanti, GRAZIE per il vostro sostegno.\nE il 26 maggio si cambia l\u2019Europa!\n#domenicavotoLega", "shared_text": "", "time": "2019-05-20 19:10:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=359009864747161&id=252306033154", "link": null} +{"post_id": "183592625901598", "text": "Il catechismo della Chiesa Cattolica dice \u201cAccoglienza nei limiti del possibile\u201d. Ecco, in certe periferie italiane credo che il \u201climite del possibile\u201d sia stato ampiamente superato. Di questo e di molto altro ho parlato questa mattina su La7 a \"Coffee Break\", credo di essere stato abbastanza efficace, se vi va commentate!", "post_text": "Il catechismo della Chiesa Cattolica dice \u201cAccoglienza nei limiti del possibile\u201d. Ecco, in certe periferie italiane credo che il \u201climite del possibile\u201d sia stato ampiamente superato. Di questo e di molto altro ho parlato questa mattina su La7 a \"Coffee Break\", credo di essere stato abbastanza efficace, se vi va commentate!", "shared_text": "", "time": "2019-05-20 18:12:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=183592625901598&id=252306033154", "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 128 nuove foto.\n20 maggio alle ore 16:29 \u00b7\nAltre opzioni\nQualche scatto dalla grande manifestazione della Lega in piazza Duomo a Milano, 18 maggio 2019: PRIMA L'ITALIA! - IL BUONSENSO IN EUROPA\n#26maggioVotoLega", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 128 nuove foto.\n20 maggio alle ore 16:29 \u00b7\nAltre opzioni\nQualche scatto dalla grande manifestazione della Lega in piazza Duomo a Milano, 18 maggio 2019: PRIMA L'ITALIA! - IL BUONSENSO IN EUROPA\n#26maggioVotoLega", "time": "2019-05-20 17:29:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/60760326_10156627517873155_5978827228899704832_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=oGyH1zc-QuUAQmG6PpmEU7QLBVb1B6BANaQPbC5_1sLX-9Lh_ozFPhxQA&_nc_ht=scontent-cdt1-1.xx&oh=e1a1e37385b2fa58bb46ed59545c4fc5&oe=5E7DFB25", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "426967308116162", "text": "La nostra bella Italia ci richiede tutela dell\u2019ambiente, una battaglia in cui credo moltissimo, ma che va combattuta senza istinti talebani o ecologismo da salotto. Ora in diretta da Roma all\u2019assemblea ALIS sul futuro del trasporto.", "post_text": "La nostra bella Italia ci richiede tutela dell\u2019ambiente, una battaglia in cui credo moltissimo, ma che va combattuta senza istinti talebani o ecologismo da salotto. Ora in diretta da Roma all\u2019assemblea ALIS sul futuro del trasporto.", "shared_text": "", "time": "2019-05-20 13:01:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=426967308116162&id=252306033154", "link": null} +{"post_id": "421569775290932", "text": "Ora in diretta da Roma dagli amici di Confartigianato per presentare la nostra iniziativa su pene pi\u00fa severe contro i delinquenti che truffano i nostri anziani.\nState con me.", "post_text": "Ora in diretta da Roma dagli amici di Confartigianato per presentare la nostra iniziativa su pene pi\u00fa severe contro i delinquenti che truffano i nostri anziani.\nState con me.", "shared_text": "", "time": "2019-05-20 11:20:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=421569775290932&id=252306033154", "link": null} +{"post_id": "669603726813447", "text": "Porti chiusi vuol dire sbarchi ridotti del 90%, meno reati, meno problemi, meno sprechi, meno donne e bambini morti in mare.\nQualcuno ha nostalgia dei porti aperti???\nSe voi mi sostenete, io non mollo!\nINDIETRO NON SI TORNA.", "post_text": "Porti chiusi vuol dire sbarchi ridotti del 90%, meno reati, meno problemi, meno sprechi, meno donne e bambini morti in mare.\nQualcuno ha nostalgia dei porti aperti???\nSe voi mi sostenete, io non mollo!\nINDIETRO NON SI TORNA.", "shared_text": "", "time": "2019-05-19 23:40:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=669603726813447&id=252306033154", "link": null} +{"post_id": "296459461229715", "text": "Buonasera dalla splendida Firenze. All'odio dei centri a-sociali noi rispondiamo con il sorriso di questa piazza\ud83d\ude0a Seguitemi in diretta!\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "post_text": "Buonasera dalla splendida Firenze. All'odio dei centri a-sociali noi rispondiamo con il sorriso di questa piazza\ud83d\ude0a Seguitemi in diretta!\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-19 21:53:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=296459461229715&id=252306033154", "link": null} +{"post_id": "2346225872299439", "text": "Ecco la REALT\u00c0 di piazza Duomo che i telegiornali non vi hanno fatto vedere! Queste immagini sono pi\u00f9 forti di tutte le bugie contro la Lega!!! #domenicavotoLega #stavoltavotoLega \ud83c\uddee\ud83c\uddf9", "post_text": "Ecco la REALT\u00c0 di piazza Duomo che i telegiornali non vi hanno fatto vedere! Queste immagini sono pi\u00f9 forti di tutte le bugie contro la Lega!!! #domenicavotoLega #stavoltavotoLega \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-19 19:53:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2346225872299439&id=252306033154", "link": null} +{"post_id": "876110862745669", "text": "Ora in diretta da Sassuolo, non si molla!\n#26maggiovotoLega", "post_text": "Ora in diretta da Sassuolo, non si molla!\n#26maggiovotoLega", "shared_text": "", "time": "2019-05-19 15:13:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=876110862745669&id=252306033154", "link": null} +{"post_id": "524573481411230", "text": "Buongiorno Amici, un saluto da Valeggio \ud83d\ude0a\n#26maggiovotoLega", "post_text": "Buongiorno Amici, un saluto da Valeggio \ud83d\ude0a\n#26maggiovotoLega", "shared_text": "", "time": "2019-05-19 10:54:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=524573481411230&id=252306033154", "link": null} +{"post_id": "10156622944833155", "text": "Il mio intervento di oggi in piazza Duomo. Grazie, grazie, GRAZIE!\n#26maggiovotoLega #primalitalia", "post_text": "Il mio intervento di oggi in piazza Duomo. Grazie, grazie, GRAZIE!\n#26maggiovotoLega #primalitalia", "shared_text": "", "time": "2019-05-18 21:00:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1122709117937352&id=252306033154", "link": null} +{"post_id": "325209824821404", "text": "Milano, grazieeee!!!", "post_text": "Milano, grazieeee!!!", "shared_text": "", "time": "2019-05-18 17:56:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=325209824821404&id=252306033154", "link": null} +{"post_id": "2219893231462725", "text": "In diretta da Milano, piazza Duomo! Spettacolooo! State con noi!\n#26maggiovotoLega \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Milano, piazza Duomo! Spettacolooo! State con noi!\n#26maggiovotoLega \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-18 15:51:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2219893231462725&id=252306033154", "link": null} +{"post_id": "389980778391883", "text": "A Milano tutto pronto, ecco le immagini ora da piazza Duomo! Arrivoooo!!! Tra poco in diretta! #26maggiovotoLega", "post_text": "A Milano tutto pronto, ecco le immagini ora da piazza Duomo! Arrivoooo!!! Tra poco in diretta! #26maggiovotoLega", "shared_text": "", "time": "2019-05-18 15:29:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=389980778391883&id=252306033154", "link": null} +{"post_id": "1079006515642581", "text": "In attesa vedervi in piazza Duomo alle 15, ecco la mia intervista di ieri sera su Rai 2. #26maggiovotoLega \ud83c\uddee\ud83c\uddf9", "post_text": "In attesa vedervi in piazza Duomo alle 15, ecco la mia intervista di ieri sera su Rai 2. #26maggiovotoLega \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-18 12:43:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1079006515642581&id=252306033154", "link": null} +{"post_id": "353759395493334", "text": "In diretta da Milano all\u2019assemblea nazionale di Confagricoltura.\nMi seguite?", "post_text": "In diretta da Milano all\u2019assemblea nazionale di Confagricoltura.\nMi seguite?", "shared_text": "", "time": "2019-05-18 12:02:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=353759395493334&id=252306033154", "link": null} +{"post_id": "450220345749429", "text": "La mia intervista di questa mattina a Radio Crc Napoli, dove vado sempre con grande piacere. Viva i mezzi di informazione locali!", "post_text": "La mia intervista di questa mattina a Radio Crc Napoli, dove vado sempre con grande piacere. Viva i mezzi di informazione locali!", "shared_text": "", "time": "2019-05-17 22:35:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=450220345749429&id=252306033154", "link": null} +{"post_id": "371416770143261", "text": "Vi ripropongo la mia intervista di ieri sera su Rete 4 con Paolo Del Debbio.\nLeggo i vostri commenti!", "post_text": "Vi ripropongo la mia intervista di ieri sera su Rete 4 con Paolo Del Debbio.\nLeggo i vostri commenti!", "shared_text": "", "time": "2019-05-17 21:45:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=371416770143261&id=252306033154", "link": null} +{"post_id": "2292748987647448", "text": "Sempre in diretta da Milano, al Forum di LaPresse. Mi seguite?\n[Seconda parte]", "post_text": "Sempre in diretta da Milano, al Forum di LaPresse. Mi seguite?\n[Seconda parte]", "shared_text": "", "time": "2019-05-17 14:23:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2292748987647448&id=252306033154", "link": null} +{"post_id": "381061355859879", "text": "Sempre in diretta da Milano, al Forum di LaPresse. Mi seguite?\n[Prima parte]", "post_text": "Sempre in diretta da Milano, al Forum di LaPresse. Mi seguite?\n[Prima parte]", "shared_text": "", "time": "2019-05-17 14:16:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=381061355859879&id=252306033154", "link": null} +{"post_id": "744496665953509", "text": "Eccomi\ud83d\ude0a\nDai che il 26 maggio, tutti insieme, cambiamo la Storia d\u2019Europa!!!", "post_text": "Eccomi\ud83d\ude0a\nDai che il 26 maggio, tutti insieme, cambiamo la Storia d\u2019Europa!!!", "shared_text": "", "time": "2019-05-17 12:56:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=744496665953509&id=252306033154", "link": null} +{"post_id": "441980939884000", "text": "In diretta da Milano per l'incontro con la stampa estera. State con me.", "post_text": "In diretta da Milano per l'incontro con la stampa estera. State con me.", "shared_text": "", "time": "2019-05-17 11:49:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=441980939884000&id=252306033154", "link": null} +{"post_id": "352632762053252", "text": "In diretta dalla Prefettura di Napoli dopo il Comitato per l\u2019Ordine e la Sicurezza pubblica.\nSeguitemi.", "post_text": "In diretta dalla Prefettura di Napoli dopo il Comitato per l\u2019Ordine e la Sicurezza pubblica.\nSeguitemi.", "shared_text": "", "time": "2019-05-16 19:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=352632762053252&id=252306033154", "link": null} +{"post_id": "363278837636395", "text": "In diretta da Potenza, Basilicata, NON SI MOLLA di un millimetro!!\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Potenza, Basilicata, NON SI MOLLA di un millimetro!!\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-16 15:37:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=363278837636395&id=252306033154", "link": null} +{"post_id": "456257958482033", "text": "Abbiamo TUTTI contro, per questo sabato a Milano (piazza Duomo, ore 15) \u00e8 importante ESSERCI! Scriviamo insieme la Storia. Conto su di voi.", "post_text": "Abbiamo TUTTI contro, per questo sabato a Milano (piazza Duomo, ore 15) \u00e8 importante ESSERCI! Scriviamo insieme la Storia. Conto su di voi.", "shared_text": "", "time": "2019-05-16 13:11:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=456257958482033&id=252306033154", "link": null} +{"post_id": "646127582524525", "text": "In diretta da San Severo (Foggia), la Lega in Puglia va sempre pi\u00f9 forte, per me un'enorme soddisfazione: grazie! #26maggiovotoLega", "post_text": "In diretta da San Severo (Foggia), la Lega in Puglia va sempre pi\u00f9 forte, per me un'enorme soddisfazione: grazie! #26maggiovotoLega", "shared_text": "", "time": "2019-05-16 10:35:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=646127582524525&id=252306033154", "link": null} +{"post_id": "335037640490812", "text": "Buona serata da Campobasso amici! Qui \u00e8 strapieno con la Lega, se avete voglia seguiteci!\n#26maggiovotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "post_text": "Buona serata da Campobasso amici! Qui \u00e8 strapieno con la Lega, se avete voglia seguiteci!\n#26maggiovotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-15 22:00:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=335037640490812&id=252306033154", "link": null} +{"post_id": "365623680966816", "text": "Pioggia qui a Veroli (Frosinone), ma noi non ci fermiamo. State con noi!\n#26maggiovotoLega\ud83c\uddee\ud83c\uddf9", "post_text": "Pioggia qui a Veroli (Frosinone), ma noi non ci fermiamo. State con noi!\n#26maggiovotoLega\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-15 18:28:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=365623680966816&id=252306033154", "link": null} +{"post_id": "2483529355208485", "text": "In diretta dal Senato alla presentazione di un libro molto interessante di Carlo Nordio, ex procuratore di Venezia.\nSeguiteci!", "post_text": "In diretta dal Senato alla presentazione di un libro molto interessante di Carlo Nordio, ex procuratore di Venezia.\nSeguiteci!", "shared_text": "", "time": "2019-05-15 11:51:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2483529355208485&id=252306033154", "link": null} +{"post_id": "450157079084322", "text": "Si torna in Emilia. Stasera in diretta da Carpi (Modena). Seguitemi amici!\n#26maggiovotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "post_text": "Si torna in Emilia. Stasera in diretta da Carpi (Modena). Seguitemi amici!\n#26maggiovotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-14 20:47:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=450157079084322&id=252306033154", "link": null} +{"post_id": "2219317861448740", "text": "In diretta da San Bonifacio (Verona), seguitemi!\n#26maggioVotaLega", "post_text": "In diretta da San Bonifacio (Verona), seguitemi!\n#26maggioVotaLega", "shared_text": "", "time": "2019-05-14 16:02:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2219317861448740&id=252306033154", "link": null} +{"post_id": "2318896985016909", "text": "In diretta da Negrar (Verona)! Mi seguite?\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Negrar (Verona)! Mi seguite?\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-14 13:58:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2318896985016909&id=252306033154", "link": null} +{"post_id": "3162645750427215", "text": "Vi saluto dalla splendida terra Veneta, in diretta da Arzignano (Vicenza).\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "post_text": "Vi saluto dalla splendida terra Veneta, in diretta da Arzignano (Vicenza).\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-14 10:31:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=3162645750427215&id=252306033154", "link": null} +{"post_id": "2355407841410132", "text": "In diretta da Schio (Vicenza), seguitemi!", "post_text": "In diretta da Schio (Vicenza), seguitemi!", "shared_text": "", "time": "2019-05-13 20:29:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2355407841410132&id=252306033154", "link": null} +{"post_id": "680063625786892", "text": "Dopo la Lombardia adesso Veneto!\nIn diretta da Legnago (Verona), chi si ferma \u00e8 perduto! \ud83d\udcaa\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "post_text": "Dopo la Lombardia adesso Veneto!\nIn diretta da Legnago (Verona), chi si ferma \u00e8 perduto! \ud83d\udcaa\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-13 18:04:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=680063625786892&id=252306033154", "link": null} +{"post_id": "602669170259531", "text": "Penso di essere stato abbastanza chiaro questa mattina a Radio 24.\nEcco l'intervista!", "post_text": "Penso di essere stato abbastanza chiaro questa mattina a Radio 24.\nEcco l'intervista!", "shared_text": "", "time": "2019-05-13 16:24:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=602669170259531&id=252306033154", "link": null} +{"post_id": "1287950921329572", "text": "In diretta da Montichiari (Brescia).\nSempre avanti, seguiteci!\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Montichiari (Brescia).\nSempre avanti, seguiteci!\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-13 15:31:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1287950921329572&id=252306033154", "link": null} +{"post_id": "593698867809327", "text": "In diretta da Lumezzane (Valtrompia, Brescia), seguitemi!\n#26maggioVotaLega", "post_text": "In diretta da Lumezzane (Valtrompia, Brescia), seguitemi!\n#26maggioVotaLega", "shared_text": "", "time": "2019-05-13 13:37:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=593698867809327&id=252306033154", "link": null} +{"post_id": "2355096488111723", "text": "Finalmente le ruspe sui palazzoni dello spaccio e della criminalit\u00e0 di Zingonia (Bergamo), seguite in diretta.", "post_text": "Finalmente le ruspe sui palazzoni dello spaccio e della criminalit\u00e0 di Zingonia (Bergamo), seguite in diretta.", "shared_text": "", "time": "2019-05-13 10:15:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2355096488111723&id=252306033154", "link": null} +{"post_id": "648899782202615", "text": "Qui Tortona (Alessandria), ultima piazza di questa giornata stupenda tra Liguria e Piemonte.\nSeguiteci LIVE! Buona serata Amici.\n#26maggiovotoLega \ud83d\udcaa\ud83d\udcaa\ud83d\udcaa", "post_text": "Qui Tortona (Alessandria), ultima piazza di questa giornata stupenda tra Liguria e Piemonte.\nSeguiteci LIVE! Buona serata Amici.\n#26maggiovotoLega \ud83d\udcaa\ud83d\udcaa\ud83d\udcaa", "shared_text": "", "time": "2019-05-12 21:30:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=648899782202615&id=252306033154", "link": null} +{"post_id": "332612490646533", "text": "Oggi dalla Annunziata su Rai Tre! \ud83d\ude0a Vi prego di guardare se non avete visto. Se avrete pazienza, come l\u2019ho avuta io, vi rallegrerete e capirete perch\u00e9 il 26 maggio la Lega prender\u00e0 una valanga di voti! \ud83d\ude0e\ud83d\udcaa", "post_text": "Oggi dalla Annunziata su Rai Tre! \ud83d\ude0a Vi prego di guardare se non avete visto. Se avrete pazienza, come l\u2019ho avuta io, vi rallegrerete e capirete perch\u00e9 il 26 maggio la Lega prender\u00e0 una valanga di voti! \ud83d\ude0e\ud83d\udcaa", "shared_text": "", "time": "2019-05-12 19:59:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=332612490646533&id=252306033154", "link": null} +{"post_id": "2261362710770298", "text": "Ancora in provincia di Cuneo, in diretta dalla splendida piazza di Bra! Non ci si ferma!", "post_text": "Ancora in provincia di Cuneo, in diretta dalla splendida piazza di Bra! Non ci si ferma!", "shared_text": "", "time": "2019-05-12 17:00:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2261362710770298&id=252306033154", "link": null} +{"post_id": "371559816795265", "text": "In diretta da Fossano (Cuneo), piazza stupenda, seguitemi!", "post_text": "In diretta da Fossano (Cuneo), piazza stupenda, seguitemi!", "shared_text": "", "time": "2019-05-12 14:03:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=371559816795265&id=252306033154", "link": null} +{"post_id": "1264271817079747", "text": "Qui Sanremo, solo sorrisi! \ud83d\ude0a\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "post_text": "Qui Sanremo, solo sorrisi! \ud83d\ude0a\n#26maggiovotoLega #primalitalia \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-12 11:10:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1264271817079747&id=252306033154", "link": null} +{"post_id": "10156603594713155", "text": "\u00c8 stata una settimana per me particolarmente impegnativa e intensa, ma sempre e comunque BELLA per l\u2019affetto e il sostegno che mi date da Nord a Sud.\nBuona notte, Amici \u263a\ufe0f", "post_text": "\u00c8 stata una settimana per me particolarmente impegnativa e intensa, ma sempre e comunque BELLA per l\u2019affetto e il sostegno che mi date da Nord a Sud.\nBuona notte, Amici \u263a\ufe0f", "shared_text": "", "time": "2019-05-10 23:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=428369517739707&id=252306033154", "link": null} +{"post_id": "284707169140449", "text": "In arrivo il Decreto Sicurezza 2: ancora pi\u00f9 fondi per le Forze dell\u2019Ordine e per la sicurezza degli Italiani.\nEcco che cosa ho detto poco fa a Napoli, ringraziando nuovamente donne e uomini in divisa che hanno arrestato quell\u2019infame che ha sparato alla piccola Noemi.", "post_text": "In arrivo il Decreto Sicurezza 2: ancora pi\u00f9 fondi per le Forze dell\u2019Ordine e per la sicurezza degli Italiani.\nEcco che cosa ho detto poco fa a Napoli, ringraziando nuovamente donne e uomini in divisa che hanno arrestato quell\u2019infame che ha sparato alla piccola Noemi.", "shared_text": "", "time": "2019-05-10 18:46:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=284707169140449&id=252306033154", "link": null} +{"post_id": "2493453770676642", "text": "In diretta da Catanzaro, nella splendida Calabria. State con noi! \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Catanzaro, nella splendida Calabria. State con noi! \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-10 14:58:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2493453770676642&id=252306033154", "link": null} +{"post_id": "351416745494182", "text": "Chiudiamo questa splendida giornata a Montesilvano!\nBuona serata Amici, non si molla! \ud83d\udcaa\n#primalitalia\ud83c\uddee\ud83c\uddf9", "post_text": "Chiudiamo questa splendida giornata a Montesilvano!\nBuona serata Amici, non si molla! \ud83d\udcaa\n#primalitalia\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-09 21:42:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=351416745494182&id=252306033154", "link": null} +{"post_id": "2408796685852577", "text": "Che spettacolo qui a Montegranaro, ci siete?\nChi si ferma \u00e8 perduto Amici!\n#primalitalia\ud83c\uddee\ud83c\uddf9", "post_text": "Che spettacolo qui a Montegranaro, ci siete?\nChi si ferma \u00e8 perduto Amici!\n#primalitalia\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-09 17:40:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2408796685852577&id=252306033154", "link": null} +{"post_id": "421875648391525", "text": "Buon pomeriggio Amici! Ora ad Osimo (Ancona), state con noi. #26maggiovotoLega", "post_text": "Buon pomeriggio Amici! Ora ad Osimo (Ancona), state con noi. #26maggiovotoLega", "shared_text": "", "time": "2019-05-09 15:08:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=421875648391525&id=252306033154", "link": null} +{"post_id": "406530206863186", "text": "SECONDA PARTE > Ieri sera dalla Gruber record di ascolto 2019 con oltre 2 milioni di spettatori sintonizzati!!! Io mi sono divertito e credo di aver mantenuto una certa calma, voi che ne dite? Rivedete e condividete!", "post_text": "SECONDA PARTE > Ieri sera dalla Gruber record di ascolto 2019 con oltre 2 milioni di spettatori sintonizzati!!! Io mi sono divertito e credo di aver mantenuto una certa calma, voi che ne dite? Rivedete e condividete!", "shared_text": "", "time": "2019-05-09 13:37:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=406530206863186&id=252306033154", "link": null} +{"post_id": "462558101154608", "text": "Un saluto da Fano, nelle splendide Marche \ud83d\ude0a\nSeguitemi in diretta!", "post_text": "Un saluto da Fano, nelle splendide Marche \ud83d\ude0a\nSeguitemi in diretta!", "shared_text": "", "time": "2019-05-09 12:43:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=462558101154608&id=252306033154", "link": null} +{"post_id": "323466304985617", "text": "La pioggia non ci ferma! Seguitemi in diretta da Pesaro! \u2614\ud83d\ude0b", "post_text": "La pioggia non ci ferma! Seguitemi in diretta da Pesaro! \u2614\ud83d\ude0b", "shared_text": "", "time": "2019-05-09 11:03:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=323466304985617&id=252306033154", "link": null} +{"post_id": "590227384817733", "text": "Piazza fantastica anche questa sera ad Ascoli!!! Il freddo non ci ferma! \ud83d\ude0a Le polemiche, le beghe e le chiacchiere stanno a zero, questa \u00e8 vita vera, questi sono gli italiani che ci chiedono di andare avanti\u2026 Altro alla svelta su riduzione delle tasse e flat tax per famiglie e imprese, cantieri, infrastrutture, sviluppo, Futuro! Ci seguite in diretta anche voi?", "post_text": "Piazza fantastica anche questa sera ad Ascoli!!! Il freddo non ci ferma! \ud83d\ude0a Le polemiche, le beghe e le chiacchiere stanno a zero, questa \u00e8 vita vera, questi sono gli italiani che ci chiedono di andare avanti\u2026 Altro alla svelta su riduzione delle tasse e flat tax per famiglie e imprese, cantieri, infrastrutture, sviluppo, Futuro! Ci seguite in diretta anche voi?", "shared_text": "", "time": "2019-05-08 21:46:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=590227384817733&id=252306033154", "link": null} +{"post_id": "10156597072403155", "text": "La mia intervista di ieri sera a Rai Radio 1, buona giornata Amici!", "post_text": "La mia intervista di ieri sera a Rai Radio 1, buona giornata Amici!", "shared_text": "", "time": "2019-05-08 07:30:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2343321839268090&id=252306033154", "link": null} +{"post_id": "471190460290851", "text": "\ud83d\udd34SPETTACOLARE!!! TG NASCONDONO? CONDIVIDIAMO!\nQuesta sera a Pavia davanti a una piazza emozionante! Mi fate compagnia da casa??? \ud83d\udd1d\ud83d\udcaa", "post_text": "\ud83d\udd34SPETTACOLARE!!! TG NASCONDONO? CONDIVIDIAMO!\nQuesta sera a Pavia davanti a una piazza emozionante! Mi fate compagnia da casa??? \ud83d\udd1d\ud83d\udcaa", "shared_text": "", "time": "2019-05-07 22:46:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=471190460290851&id=252306033154", "link": null} +{"post_id": "395034621081611", "text": "[Anteprima, diretta completa nel prossimo post]\nBuonasera Amici, che cosa fate? Io in diretta da Pavia davanti a una piazza emozionante! Mi fate compagnia da casa??? \ud83d\udd1d\ud83d\udcaa", "post_text": "[Anteprima, diretta completa nel prossimo post]\nBuonasera Amici, che cosa fate? Io in diretta da Pavia davanti a una piazza emozionante! Mi fate compagnia da casa??? \ud83d\udd1d\ud83d\udcaa", "shared_text": "", "time": "2019-05-07 21:33:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=395034621081611&id=252306033154", "link": null} +{"post_id": "580801322413469", "text": "Un saluto da Giussano, state con noi!\n#26maggiovotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "post_text": "Un saluto da Giussano, state con noi!\n#26maggiovotoLega #primalitalia\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-07 15:01:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=580801322413469&id=252306033154", "link": null} +{"post_id": "408299840023677", "text": "Oggi si riparte dalla Lombardia! Eccomi in diretta da Concorezzo (MB)!\n#primalitalia #26maggiovotoLega", "post_text": "Oggi si riparte dalla Lombardia! Eccomi in diretta da Concorezzo (MB)!\n#primalitalia #26maggiovotoLega", "shared_text": "", "time": "2019-05-07 12:49:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=408299840023677&id=252306033154", "link": null} +{"post_id": "883428185332858", "text": "Lotta contro tutte le MAFIE, vinceranno lo Stato e gli Italiani perbene!", "post_text": "Lotta contro tutte le MAFIE, vinceranno lo Stato e gli Italiani perbene!", "shared_text": "", "time": "2019-05-07 12:03:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=883428185332858&id=252306033154", "link": null} +{"post_id": "385067355420384", "text": "In diretta da Milano, all\u2019inaugurazione della nuova Agenzia Nazionale dei beni confiscati alla mafia!", "post_text": "In diretta da Milano, all\u2019inaugurazione della nuova Agenzia Nazionale dei beni confiscati alla mafia!", "shared_text": "", "time": "2019-05-07 10:54:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=385067355420384&id=252306033154", "link": null} +{"post_id": "2189757871110240", "text": "\"Sono stato contento di sentire che un ministro fosse vicino ad un cittadino in un momento cos\u00ec difficile\".\nAscoltate l'incredibile racconto di Andrea, un ragazzo ingiustamente indagato per aver ferito uno dei\u2026 Altro ladri che erano entrati in casa sua.\nDa ministro, mi sono sentito in dovere di sentirlo per ribadirgli la mia vicinanza. La nostra legge sulla legittima difesa serve anche e soprattutto per evitare situazioni come queste.\nSempre dalla parte di chi si difende!", "post_text": "\"Sono stato contento di sentire che un ministro fosse vicino ad un cittadino in un momento cos\u00ec difficile\".\nAscoltate l'incredibile racconto di Andrea, un ragazzo ingiustamente indagato per aver ferito uno dei\u2026 Altro ladri che erano entrati in casa sua.\nDa ministro, mi sono sentito in dovere di sentirlo per ribadirgli la mia vicinanza. La nostra legge sulla legittima difesa serve anche e soprattutto per evitare situazioni come queste.\nSempre dalla parte di chi si difende!", "shared_text": "", "time": "2019-05-06 20:10:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2189757871110240&id=252306033154", "link": null} +{"post_id": "823475981364256", "text": "Dopo Avellino, eccomi in diretta da Salerno! Mi seguite?\n#primagliitaliani #26maggiovotoLega", "post_text": "Dopo Avellino, eccomi in diretta da Salerno! Mi seguite?\n#primagliitaliani #26maggiovotoLega", "shared_text": "", "time": "2019-05-06 15:44:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=823475981364256&id=252306033154", "link": null} +{"post_id": "324247911596761", "text": "Ora insieme agli amici di Pietrelcina (Benevento), scambiando due parole in piazza\ud83d\ude0a", "post_text": "Ora insieme agli amici di Pietrelcina (Benevento), scambiando due parole in piazza\ud83d\ude0a", "shared_text": "", "time": "2019-05-06 12:04:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=324247911596761&id=252306033154", "link": null} +{"post_id": "1101021766688628", "text": "Qui Roma amici! Mi seguite?\n#primalitalia #26maggiovotoLega", "post_text": "Qui Roma amici! Mi seguite?\n#primalitalia #26maggiovotoLega", "shared_text": "", "time": "2019-05-05 18:21:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1101021766688628&id=252306033154", "link": null} +{"post_id": "435166587261153", "text": "In diretta da Firenze! State con me!\n#26maggiovotoLega", "post_text": "In diretta da Firenze! State con me!\n#26maggiovotoLega", "shared_text": "", "time": "2019-05-05 10:42:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=435166587261153&id=252306033154", "link": null} +{"post_id": "424305511721609", "text": "Scandicci ora, guardate anche voi che piazza!\n#26maggiovotolega #primalitalia", "post_text": "Scandicci ora, guardate anche voi che piazza!\n#26maggiovotolega #primalitalia", "shared_text": "", "time": "2019-05-04 19:32:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=424305511721609&id=252306033154", "link": null} +{"post_id": "10156588334093155", "text": "PRATO!!! Fate girare queste immagini perch\u00e9 tiv\u00f9 e giornaloni non le faranno vedere.\nIl PD anche qui il 26 maggio lo mandiamo A CASA! Vi voglio bene!\u2764", "post_text": "PRATO!!! Fate girare queste immagini perch\u00e9 tiv\u00f9 e giornaloni non le faranno vedere.\nIl PD anche qui il 26 maggio lo mandiamo A CASA! Vi voglio bene!\u2764", "shared_text": "", "time": "2019-05-04 18:29:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=689775088149677&id=252306033154", "link": null} +{"post_id": "810334966020565", "text": "In diretta da San Giuliano Terme (Pisa)!\nIl tour continua \ud83d\ude01\n#26maggiovotolega", "post_text": "In diretta da San Giuliano Terme (Pisa)!\nIl tour continua \ud83d\ude01\n#26maggiovotolega", "shared_text": "", "time": "2019-05-04 09:28:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=810334966020565&id=252306033154", "link": null} +{"post_id": "551075552082606", "text": "Ecco una sintesi di questa lunga ed intensa settimana \ud83d\ude0a\nSe voi ci siete, io ci sono e non mollo!!!", "post_text": "Ecco una sintesi di questa lunga ed intensa settimana \ud83d\ude0a\nSe voi ci siete, io ci sono e non mollo!!!", "shared_text": "", "time": "2019-05-03 23:49:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=551075552082606&id=252306033154", "link": null} +{"post_id": "445739062845664", "text": "Ultime foto della giornata, con della buona musica romagnola di sottofondo, anche con chi \u00e8 in piazza e non \u00e8 riuscito ad entrare!", "post_text": "Ultime foto della giornata, con della buona musica romagnola di sottofondo, anche con chi \u00e8 in piazza e non \u00e8 riuscito ad entrare!", "shared_text": "", "time": "2019-05-03 22:21:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=445739062845664&id=252306033154", "link": null} +{"post_id": "318421478840349", "text": "Buonasera da Forl\u00ec!\nUltima tappa della giornata.\nCi fate compagnia?\n#26maggiovotolega", "post_text": "Buonasera da Forl\u00ec!\nUltima tappa della giornata.\nCi fate compagnia?\n#26maggiovotolega", "shared_text": "", "time": "2019-05-03 21:34:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=318421478840349&id=252306033154", "link": null} +{"post_id": "10156585461483155", "text": "CONDIVIDIAMO!\nModena, venerd\u00ec ore 15: migliaia di persone in piazza con la Lega!\nAnche l\u2019Emilia \u00e8 sempre meno \u201crossa\u201d\ud83d\ude09", "post_text": "CONDIVIDIAMO!\nModena, venerd\u00ec ore 15: migliaia di persone in piazza con la Lega!\nAnche l\u2019Emilia \u00e8 sempre meno \u201crossa\u201d\ud83d\ude09", "shared_text": "", "time": "2019-05-03 16:55:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2014386152023150&id=252306033154", "link": null} +{"post_id": "489396288552765", "text": "A Modena ci sono anche loro! Poveretti, sono a rischio estinzione! \ud83d\ude01", "post_text": "A Modena ci sono anche loro! Poveretti, sono a rischio estinzione! \ud83d\ude01", "shared_text": "", "time": "2019-05-03 15:30:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=489396288552765&id=252306033154", "link": null} +{"post_id": "297561667790098", "text": "Continua il tour dell'Emilia-Romagna a sostegno dei candidati sindaci della Lega, ora a Reggio Emilia. Mi seguite?\n#primalitaia\ud83c\uddee\ud83c\uddf9", "post_text": "Continua il tour dell'Emilia-Romagna a sostegno dei candidati sindaci della Lega, ora a Reggio Emilia. Mi seguite?\n#primalitaia\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-05-03 12:13:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=297561667790098&id=252306033154", "link": null} +{"post_id": "591831424668590", "text": "In diretta dal mercato di Reggio Emilia! Fate due passi con me \ud83d\ude01", "post_text": "In diretta dal mercato di Reggio Emilia! Fate due passi con me \ud83d\ude01", "shared_text": "", "time": "2019-05-03 11:44:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=591831424668590&id=252306033154", "link": null} +{"post_id": "2366014416968618", "text": "Buongiorno da Fidenza (Parma), si parte!\nState con me\ud83d\ude01\n#primalitalia", "post_text": "Buongiorno da Fidenza (Parma), si parte!\nState con me\ud83d\ude01\n#primalitalia", "shared_text": "", "time": "2019-05-03 09:46:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2366014416968618&id=252306033154", "link": null} +{"post_id": "292243591660419", "text": "Ora in diretta dal Monastero Carmelitano di Budapest con il Presidente Orb\u00e1n.\nSeguitemi!", "post_text": "Ora in diretta dal Monastero Carmelitano di Budapest con il Presidente Orb\u00e1n.\nSeguitemi!", "shared_text": "", "time": "2019-05-02 17:27:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=292243591660419&id=252306033154", "link": null} +{"post_id": "1173257209520017", "text": "Qui Budapest, nella sede del Ministero dell\u2019interno Ungherese, dove ho appena concluso un proficuo incontro bilaterale con il collega S\u00e1ndor Pint\u00e9r.\nVi aggiorno, state con me!", "post_text": "Qui Budapest, nella sede del Ministero dell\u2019interno Ungherese, dove ho appena concluso un proficuo incontro bilaterale con il collega S\u00e1ndor Pint\u00e9r.\nVi aggiorno, state con me!", "shared_text": "", "time": "2019-05-02 15:50:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1173257209520017&id=252306033154", "link": null} +{"post_id": "10156583010263155", "text": "In Italia, in Ungheria e in Europa si entra solo con il permesso!\nPer difendere i confini e la sicurezza dei nostri figli, il 26 maggio scegli la Lega.", "post_text": "In Italia, in Ungheria e in Europa si entra solo con il permesso!\nPer difendere i confini e la sicurezza dei nostri figli, il 26 maggio scegli la Lega.", "shared_text": "", "time": "2019-05-02 15:41:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=933343943676270&id=252306033154", "link": null} +{"post_id": "454271241996879", "text": "Buonasera da Civitavecchia Amici, seguitemi! \ud83d\ude0a\n#26maggiovotoLega", "post_text": "Buonasera da Civitavecchia Amici, seguitemi! \ud83d\ude0a\n#26maggiovotoLega", "shared_text": "", "time": "2019-05-01 19:24:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=454271241996879&id=252306033154", "link": null} +{"post_id": "589471781539905", "text": "Questi sono i sondaggi che preferisco.\nGuardate che accoglienza... alla faccia dei soliti rosiconi!", "post_text": "Questi sono i sondaggi che preferisco.\nGuardate che accoglienza... alla faccia dei soliti rosiconi!", "shared_text": "", "time": "2019-05-01 18:59:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=589471781539905&id=252306033154", "link": null} +{"post_id": "2844837748890016", "text": "Ora in diretta da Tarquinia, che spettacolo!!!\nChi si ferma \u00e8 perduto!\n#26maggiovotoLega", "post_text": "Ora in diretta da Tarquinia, che spettacolo!!!\nChi si ferma \u00e8 perduto!\n#26maggiovotoLega", "shared_text": "", "time": "2019-05-01 17:35:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2844837748890016&id=252306033154", "link": null} +{"post_id": "402185683670021", "text": "Un saluto dalla piazza di Tivoli! \ud83c\uddee\ud83c\uddf9\nMi seguite? \ud83d\ude0a", "post_text": "Un saluto dalla piazza di Tivoli! \ud83c\uddee\ud83c\uddf9\nMi seguite? \ud83d\ude0a", "shared_text": "", "time": "2019-05-01 10:21:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=402185683670021&id=252306033154", "link": null} +{"post_id": "405603763615512", "text": "Per pedofili e stupratori galera e castrazione chimica. Siete d'accordo?\nNe ho parlato ieri sera su Rai Due!", "post_text": "Per pedofili e stupratori galera e castrazione chimica. Siete d'accordo?\nNe ho parlato ieri sera su Rai Due!", "shared_text": "", "time": "2019-04-30 13:00:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=405603763615512&id=252306033154", "link": null} +{"post_id": "396102554577331", "text": "In diretta dalla Prefettura di Milano, state con me.", "post_text": "In diretta dalla Prefettura di Milano, state con me.", "shared_text": "", "time": "2019-04-29 12:38:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=396102554577331&id=252306033154", "link": null} +{"post_id": "668314416959530", "text": "In diretta da Torino, seguitemi!", "post_text": "In diretta da Torino, seguitemi!", "shared_text": "", "time": "2019-04-27 21:48:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=668314416959530&id=252306033154", "link": null} +{"post_id": "447900609310549", "text": "In diretta da Biella, siete tantissimi!!!", "post_text": "In diretta da Biella, siete tantissimi!!!", "shared_text": "", "time": "2019-04-27 18:32:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=447900609310549&id=252306033154", "link": null} +{"post_id": "10156569597808155", "text": "Stanco ma felice! Un mese al voto del 26 maggio, insieme possiamo fare la storia, io ce la metto tutta, sempre con un principio in testa: #primalitalia\ud83c\uddee\ud83c\uddf9!", "post_text": "Stanco ma felice! Un mese al voto del 26 maggio, insieme possiamo fare la storia, io ce la metto tutta, sempre con un principio in testa: #primalitalia\ud83c\uddee\ud83c\uddf9!", "shared_text": "", "time": "2019-04-26 23:30:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=355003358554159&id=252306033154", "link": null} +{"post_id": "359852561321065", "text": "Buongiorno dalla meravigliosa piazza di Motta Sant\u2019Anastasia.\nSeguitemi!", "post_text": "Buongiorno dalla meravigliosa piazza di Motta Sant\u2019Anastasia.\nSeguitemi!", "shared_text": "", "time": "2019-04-26 11:08:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=359852561321065&id=252306033154", "link": null} +{"post_id": "452096572208111", "text": "Dalla meravigliosa Bagheria, seguitemi!", "post_text": "Dalla meravigliosa Bagheria, seguitemi!", "shared_text": "", "time": "2019-04-25 18:54:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=452096572208111&id=252306033154", "link": null} +{"post_id": "284783612400114", "text": "Dalla meravigliosa piazza di Monreale in Sicilia!", "post_text": "Dalla meravigliosa piazza di Monreale in Sicilia!", "shared_text": "", "time": "2019-04-25 17:05:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=284783612400114&id=252306033154", "link": null} +{"post_id": "384838049026724", "text": "In diretta da Monreale! Seguitemi.", "post_text": "In diretta da Monreale! Seguitemi.", "shared_text": "", "time": "2019-04-25 16:54:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=384838049026724&id=252306033154", "link": null} +{"post_id": "543447186179884", "text": "Accoglienza stupenda a Corleone, grazie!", "post_text": "Accoglienza stupenda a Corleone, grazie!", "shared_text": "", "time": "2019-04-25 14:32:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=543447186179884&id=252306033154", "link": null} +{"post_id": "459572051480495", "text": "In diretta dalla sede elettorale della Lega a Bergamo.\nState con noi!", "post_text": "In diretta dalla sede elettorale della Lega a Bergamo.\nState con noi!", "shared_text": "", "time": "2019-04-24 18:02:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=459572051480495&id=252306033154", "link": null} +{"post_id": "432895407463495", "text": "In diretta da Pinzolo, state con me!", "post_text": "In diretta da Pinzolo, state con me!", "shared_text": "", "time": "2019-04-23 11:53:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=432895407463495&id=252306033154", "link": null} +{"post_id": "10156553061188155", "text": "Settimana lunga ed intensa ma non si molla di un millimetro. La mangiatoia dell\u2019immigrazione clandestina \u00e8 CHIUSA, NON SI RIAPRE, STOP!!! \ud83d\udeab\ud83d\udeab\ud83d\udeab\nBuonanotte Amici!\n#primalitalia\ud83d\udcaa\ud83d\udd1d\ud83c\uddee\ud83c\uddf9", "post_text": "Settimana lunga ed intensa ma non si molla di un millimetro. La mangiatoia dell\u2019immigrazione clandestina \u00e8 CHIUSA, NON SI RIAPRE, STOP!!! \ud83d\udeab\ud83d\udeab\ud83d\udeab\nBuonanotte Amici!\n#primalitalia\ud83d\udcaa\ud83d\udd1d\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-04-19 23:30:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=417039562428249&id=252306033154", "link": null} +{"post_id": "274753370096405", "text": "Felice di incontrare oggi a Milano Eduardo Bolsonaro, parlamentare brasiliano e figlio del presidente Jair Messias Bolsonaro, nel segno della collaborazione e dell\u2019amicizia tra i nostri popoli! \ud83c\uddee\ud83c\uddf9\ud83c\udde7\ud83c\uddf7", "post_text": "Felice di incontrare oggi a Milano Eduardo Bolsonaro, parlamentare brasiliano e figlio del presidente Jair Messias Bolsonaro, nel segno della collaborazione e dell\u2019amicizia tra i nostri popoli! \ud83c\uddee\ud83c\uddf9\ud83c\udde7\ud83c\uddf7", "shared_text": "", "time": "2019-04-19 18:30:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=274753370096405&id=252306033154", "link": null} +{"post_id": "432416444173486", "text": "La mia intervista di ieri sera su Rai Uno, vi prego di seguirla. Buon pranzo Amici.", "post_text": "La mia intervista di ieri sera su Rai Uno, vi prego di seguirla. Buon pranzo Amici.", "shared_text": "", "time": "2019-04-19 13:30:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=432416444173486&id=252306033154", "link": null} +{"post_id": "414904992405545", "text": "Dalla ex baraccopoli di San Ferdinando, contro degrado e illegalit\u00e0, dalle parole ai fatti!", "post_text": "Dalla ex baraccopoli di San Ferdinando, contro degrado e illegalit\u00e0, dalle parole ai fatti!", "shared_text": "", "time": "2019-04-18 12:07:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=414904992405545&id=252306033154", "link": null} +{"post_id": "10156548289208155", "text": "Il Viminale lavora in perfetta sintonia con la Difesa per la protezione dei confini. Se per\u00f2 qualcuno, per ragioni politiche, vuole o immagina i porti riaperti lo dica chiaramente. Da responsabile dell\u2019Interno confermo che in Italia entra solo chi ha il permesso!\n#portichiusi\ud83c\uddee\ud83c\uddf9", "post_text": "Il Viminale lavora in perfetta sintonia con la Difesa per la protezione dei confini. Se per\u00f2 qualcuno, per ragioni politiche, vuole o immagina i porti riaperti lo dica chiaramente. Da responsabile dell\u2019Interno confermo che in Italia entra solo chi ha il permesso!\n#portichiusi\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-04-17 20:45:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2093175987640678&id=252306033154", "link": null} +{"post_id": "427197867840166", "text": "Qui Perugia, in una splendida regione che dopo anni di disastri targati Pd merita di essere liberata.\nSeguitemi in diretta!", "post_text": "Qui Perugia, in una splendida regione che dopo anni di disastri targati Pd merita di essere liberata.\nSeguitemi in diretta!", "shared_text": "", "time": "2019-04-17 17:51:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=427197867840166&id=252306033154", "link": null} +{"post_id": "1894362690669898", "text": "La mia intervista di questa mattina a Rai Radio 1.\nTerroristi sui barconi? Una certezza. Non si molla! #portichiusi\ud83c\uddee\ud83c\uddf9", "post_text": "La mia intervista di questa mattina a Rai Radio 1.\nTerroristi sui barconi? Una certezza. Non si molla! #portichiusi\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-04-17 12:23:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1894362690669898&id=252306033154", "link": null} +{"post_id": "289515121951206", "text": "Mamma mia che giornata...\nNon si molla di un centimetro!", "post_text": "Mamma mia che giornata...\nNon si molla di un centimetro!", "shared_text": "", "time": "2019-04-15 21:16:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=289515121951206&id=252306033154", "link": null} +{"post_id": "2133799166657275", "text": "In diretta da Monza con importanti novit\u00e0, state con me!", "post_text": "In diretta da Monza con importanti novit\u00e0, state con me!", "shared_text": "", "time": "2019-04-15 12:04:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2133799166657275&id=252306033154", "link": null} +{"post_id": "717604895317839", "text": "Settimana bella intensa ma non si molla mai! Il 26 maggio \u00e8 vicino, conto su di voi: se saremo in tantissimi questa Europa la rivoluzioniamo, e facciamo la storia! #primalitalia\ud83c\uddee\ud83c\uddf9", "post_text": "Settimana bella intensa ma non si molla mai! Il 26 maggio \u00e8 vicino, conto su di voi: se saremo in tantissimi questa Europa la rivoluzioniamo, e facciamo la storia! #primalitalia\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-04-12 23:32:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=717604895317839&id=252306033154", "link": null} +{"post_id": "341925443345708", "text": "Libia, se qualcuno per business gioca a fare la guerra, con me ha trovato il ministro sbagliato.\nAscolta la mia intervista a RTL 102.5.", "post_text": "Libia, se qualcuno per business gioca a fare la guerra, con me ha trovato il ministro sbagliato.\nAscolta la mia intervista a RTL 102.5.", "shared_text": "", "time": "2019-04-11 13:00:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=341925443345708&id=252306033154", "link": null} +{"post_id": "729115404151986", "text": "PRIMA L\u2019ITALIA! \ud83c\uddee\ud83c\uddf9\nDal 26 maggio, con orgoglio e coraggio, portiamo il buonsenso anche in Europa.", "post_text": "PRIMA L\u2019ITALIA! \ud83c\uddee\ud83c\uddf9\nDal 26 maggio, con orgoglio e coraggio, portiamo il buonsenso anche in Europa.", "shared_text": "", "time": "2019-04-10 18:17:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=729115404151986&id=252306033154", "link": null} +{"post_id": "274518086785215", "text": "Onore alle nostre Forze dell'Ordine.\nIl 25 aprile non parteciper\u00f2 a sfilate, ma sar\u00f2 in mezzo a loro a Corleone perch\u00e9 la liberazione, in tutta Italia, dal cancro di mafia, camorra e 'ndrangheta \u00e8 la nostra ragione di vita.", "post_text": "Onore alle nostre Forze dell'Ordine.\nIl 25 aprile non parteciper\u00f2 a sfilate, ma sar\u00f2 in mezzo a loro a Corleone perch\u00e9 la liberazione, in tutta Italia, dal cancro di mafia, camorra e 'ndrangheta \u00e8 la nostra ragione di vita.", "shared_text": "", "time": "2019-04-10 14:02:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=274518086785215&id=252306033154", "link": null} +{"post_id": "348489335781368", "text": "In diretta da Roma, onorato di partecipare alle celebrazioni del 167esimo anniversario della Polizia di Stato. State con noi! #anniversariopolizia", "post_text": "In diretta da Roma, onorato di partecipare alle celebrazioni del 167esimo anniversario della Polizia di Stato. State con noi! #anniversariopolizia", "shared_text": "", "time": "2019-04-10 11:14:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=348489335781368&id=252306033154", "link": null} +{"post_id": "10156528068043155", "text": "La difesa dei confini e la protezione dall\u2019aggressione del terrorismo islamico \u00e8 una nostra priorit\u00e0. Lo stiamo facendo in Italia e puntiamo a farlo, come primo partito del continente, anche in Europa.\nEcco che cosa ho detto questa mattina a Milano.", "post_text": "La difesa dei confini e la protezione dall\u2019aggressione del terrorismo islamico \u00e8 una nostra priorit\u00e0. Lo stiamo facendo in Italia e puntiamo a farlo, come primo partito del continente, anche in Europa.\nEcco che cosa ho detto questa mattina a Milano.", "shared_text": "", "time": "2019-04-08 19:50:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=578596069300157&id=252306033154", "link": null} +{"post_id": "323720485012150", "text": "Vi ripropongo la mia intervista di ieri sera da Giletti, buon pomeriggio Amici!", "post_text": "Vi ripropongo la mia intervista di ieri sera da Giletti, buon pomeriggio Amici!", "shared_text": "", "time": "2019-04-08 14:39:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=323720485012150&id=252306033154", "link": null} +{"post_id": "10156527397918155", "text": "Vi ripropongo la Conferenza internazionale\n\u201cVerso l\u2019Europa del Buonsenso!\u201d\n#europadelbuonsenso\nMilano - Conferenza internazionale:\n- Matteo Salvini (Lega - ENF)\n- J\u00f6rg Meuthen (Alternative f\u00fcr Deutschland - EFDD)\n- Olli Kotro (The Finns Party - ECR)\n- Anders Vistisen (Dansk Folkeparti - ECR)", "post_text": "Vi ripropongo la Conferenza internazionale\n\u201cVerso l\u2019Europa del Buonsenso!\u201d\n#europadelbuonsenso\nMilano - Conferenza internazionale:\n- Matteo Salvini (Lega - ENF)\n- J\u00f6rg Meuthen (Alternative f\u00fcr Deutschland - EFDD)\n- Olli Kotro (The Finns Party - ECR)\n- Anders Vistisen (Dansk Folkeparti - ECR)", "shared_text": "", "time": "2019-04-08 13:00:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=435216940606713&id=252306033154", "link": null} +{"post_id": "282526362672682", "text": "#Europadelbuonsenso!", "post_text": "#Europadelbuonsenso!", "shared_text": "", "time": "2019-04-08 11:32:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=282526362672682&id=252306033154", "link": null} +{"post_id": "377953666393513", "text": "\ud83c\uddee\ud83c\uddf9LIVE - ITALIANO\n\u201cVerso l\u2019Europa del Buonsenso!\u201d\n#europadelbuonsenso\nMilano - Conferenza internazionale:\n- Matteo Salvini (Lega - ENF)\n- J\u00f6rg Meuthen (Alternative f\u00fcr Deutschland - EFDD)\n- Olli Kotro (The\u2026 Altro Finns Party - ECR)\n- Anders Vistisen (Dansk Folkeparti - ECR)\n\ud83c\uddee\ud83c\uddf9 LIVE - Italiano: https://www.facebook.com/salviniofficial/videos/377953666393513?sfns=mo\n\ud83c\uddec\ud83c\udde7 LIVE - English: https://www.facebook.com/salviniofficial/videos/2440823879284673?sfns=mo\n\ud83c\udde9\ud83c\uddea LIVE - Deutsch: https://www.facebook.com/salviniofficial/videos/1057174311149858?sfns=mo", "post_text": "\ud83c\uddee\ud83c\uddf9LIVE - ITALIANO\n\u201cVerso l\u2019Europa del Buonsenso!\u201d\n#europadelbuonsenso\nMilano - Conferenza internazionale:\n- Matteo Salvini (Lega - ENF)\n- J\u00f6rg Meuthen (Alternative f\u00fcr Deutschland - EFDD)\n- Olli Kotro (The\u2026 Altro Finns Party - ECR)\n- Anders Vistisen (Dansk Folkeparti - ECR)\n\ud83c\uddee\ud83c\uddf9 LIVE - Italiano: https://www.facebook.com/salviniofficial/videos/377953666393513?sfns=mo\n\ud83c\uddec\ud83c\udde7 LIVE - English: https://www.facebook.com/salviniofficial/videos/2440823879284673?sfns=mo\n\ud83c\udde9\ud83c\uddea LIVE - Deutsch: https://www.facebook.com/salviniofficial/videos/1057174311149858?sfns=mo", "shared_text": "", "time": "2019-04-08 10:30:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=377953666393513&id=252306033154", "link": null} +{"post_id": "2440823879284673", "text": "\ud83c\uddec\ud83c\udde7LIVE - ENGLISH\n\u201cTowards a Common Sense Europe!\u201d\n#europadelbuonsenso\nMilan - International conference with:\n- Matteo Salvini (Lega - ENF)\n- J\u00f6rg Meuthen (Alternative f\u00fcr Deutschland - EFDD)\n- Olli Kotro (The\u2026 Altro Finns Party - ECR)\n- Anders Vistisen (Dansk Folkeparti - ECR\n\ud83c\uddee\ud83c\uddf9 LIVE - Italiano: https://www.facebook.com/salviniofficial/videos/377953666393513?sfns=mo\n\ud83c\uddec\ud83c\udde7 LIVE - English: https://www.facebook.com/salviniofficial/videos/2440823879284673?sfns=mo\n\ud83c\udde9\ud83c\uddea LIVE - Deutsch: https://www.facebook.com/salviniofficial/videos/1057174311149858?sfns=mo", "post_text": "\ud83c\uddec\ud83c\udde7LIVE - ENGLISH\n\u201cTowards a Common Sense Europe!\u201d\n#europadelbuonsenso\nMilan - International conference with:\n- Matteo Salvini (Lega - ENF)\n- J\u00f6rg Meuthen (Alternative f\u00fcr Deutschland - EFDD)\n- Olli Kotro (The\u2026 Altro Finns Party - ECR)\n- Anders Vistisen (Dansk Folkeparti - ECR\n\ud83c\uddee\ud83c\uddf9 LIVE - Italiano: https://www.facebook.com/salviniofficial/videos/377953666393513?sfns=mo\n\ud83c\uddec\ud83c\udde7 LIVE - English: https://www.facebook.com/salviniofficial/videos/2440823879284673?sfns=mo\n\ud83c\udde9\ud83c\uddea LIVE - Deutsch: https://www.facebook.com/salviniofficial/videos/1057174311149858?sfns=mo", "shared_text": "", "time": "2019-04-08 10:29:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2440823879284673&id=252306033154", "link": null} +{"post_id": "2332952793696281", "text": "In diretta da Lonigo, Vicenza.\nSeguitemi!", "post_text": "In diretta da Lonigo, Vicenza.\nSeguitemi!", "shared_text": "", "time": "2019-04-07 21:31:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2332952793696281&id=252306033154", "link": null} +{"post_id": "10156525959808155", "text": "Vinitaly\ud83c\uddee\ud83c\uddf9", "post_text": "Vinitaly\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-04-07 20:44:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10156525959808155&id=252306033154", "link": null} +{"post_id": "374200003182364", "text": "Ponte Morandi, non \u00e8 scontato partire da un disastro e raccogliere affetto, fiducia, idee, e anche critiche, ma sempre nel rispetto e nella collaborazione. Nello \u201cSbloccacantieri\u201d risarcimenti anche per\u2026 Altro cittadini e imprese danneggiati dai lavori di ricostruzione. Quando la primavera prossima ci sar\u00e0 il nuovo ponte sar\u00e0 il massimo.\nForza Genova!", "post_text": "Ponte Morandi, non \u00e8 scontato partire da un disastro e raccogliere affetto, fiducia, idee, e anche critiche, ma sempre nel rispetto e nella collaborazione. Nello \u201cSbloccacantieri\u201d risarcimenti anche per\u2026 Altro cittadini e imprese danneggiati dai lavori di ricostruzione. Quando la primavera prossima ci sar\u00e0 il nuovo ponte sar\u00e0 il massimo.\nForza Genova!", "shared_text": "", "time": "2019-04-06 18:29:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=374200003182364&id=252306033154", "link": null} +{"post_id": "382677705795984", "text": "Sempre in diretta da Genova, sotto il Ponte Morandi. Seguitemi.", "post_text": "Sempre in diretta da Genova, sotto il Ponte Morandi. Seguitemi.", "shared_text": "", "time": "2019-04-06 16:28:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=382677705795984&id=252306033154", "link": null} +{"post_id": "399173790905589", "text": "In diretta dalla zona rossa sotto il Ponte Morandi a Genova.", "post_text": "In diretta dalla zona rossa sotto il Ponte Morandi a Genova.", "shared_text": "", "time": "2019-04-06 16:10:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=399173790905589&id=252306033154", "link": null} +{"post_id": "504904660040714", "text": "In diretta da Genova dove ho presieduto il Comitato per l\u2019Ordine e la Sicurezza pubblica.\nMi seguite?", "post_text": "In diretta da Genova dove ho presieduto il Comitato per l\u2019Ordine e la Sicurezza pubblica.\nMi seguite?", "shared_text": "", "time": "2019-04-06 13:57:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=504904660040714&id=252306033154", "link": null} +{"post_id": "647759645683420", "text": "Settimana intensa ed impegnativa in Italia e all\u2019estero ma vado avanti sempre con il sorriso\ud83d\ude0a\nBuonanotte Amici.", "post_text": "Settimana intensa ed impegnativa in Italia e all\u2019estero ma vado avanti sempre con il sorriso\ud83d\ude0a\nBuonanotte Amici.", "shared_text": "", "time": "2019-04-05 23:27:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=647759645683420&id=252306033154", "link": null} +{"post_id": "2189691854446009", "text": "In diretta da Parigi, al G7 dei Ministri dell\u2019Interno. Seguitemi.", "post_text": "In diretta da Parigi, al G7 dei Ministri dell\u2019Interno. Seguitemi.", "shared_text": "", "time": "2019-04-04 17:43:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2189691854446009&id=252306033154", "link": null} +{"post_id": "405138100042218", "text": "Ora in diretta dalla Fiera di Cagliari.\nState con me!", "post_text": "Ora in diretta dalla Fiera di Cagliari.\nState con me!", "shared_text": "", "time": "2019-04-02 12:48:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=405138100042218&id=252306033154", "link": null} +{"post_id": "339431460021747", "text": "Ora in diretta da Como, mi seguite???", "post_text": "Ora in diretta da Como, mi seguite???", "shared_text": "", "time": "2019-04-01 18:10:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=339431460021747&id=252306033154", "link": null} +{"post_id": "1198611856968474", "text": "La mia intervista di questa mattina a Lady Radio di Firenze. Sono sempre felice quando posso stare in onda sulle emittenti del territorio, grazie per l\u2019ospitalit\u00e0 e viva le radio locali!", "post_text": "La mia intervista di questa mattina a Lady Radio di Firenze. Sono sempre felice quando posso stare in onda sulle emittenti del territorio, grazie per l\u2019ospitalit\u00e0 e viva le radio locali!", "shared_text": "", "time": "2019-04-01 13:47:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1198611856968474&id=252306033154", "link": null} +{"post_id": "1057613127774041", "text": "Ora in diretta dalla splendida Firenze, quartiere Isolotto.\nState con noi!\n#26maggiovotolega", "post_text": "Ora in diretta dalla splendida Firenze, quartiere Isolotto.\nState con noi!\n#26maggiovotolega", "shared_text": "", "time": "2019-04-01 12:56:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1057613127774041&id=252306033154", "link": null} +{"post_id": "2151663848203627", "text": "Chi ha paura di mamma e pap\u00e0???", "post_text": "Chi ha paura di mamma e pap\u00e0???", "shared_text": "", "time": "2019-03-30 16:59:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2151663848203627&id=252306033154", "link": null} +{"post_id": "10156505920193155", "text": "Settimana straordinaria che ricorder\u00f2 sempre perch\u00e9 \u00e8 quella in cui abbiamo regalato agli italiani il sacrosanto diritto di difendersi in casa propria! Buonanotte Amici!", "post_text": "Settimana straordinaria che ricorder\u00f2 sempre perch\u00e9 \u00e8 quella in cui abbiamo regalato agli italiani il sacrosanto diritto di difendersi in casa propria! Buonanotte Amici!", "shared_text": "", "time": "2019-03-29 23:45:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=582921295533564&id=252306033154", "link": null} +{"post_id": "325072308212149", "text": "Vi ripropongo la mia partecipazione di ieri sera del Maurizio Costanzo Show, sempre un palcoscenico emozionante, con un po' di autoironia, ma sempre col sorriso.\nGuardatelo, \u00e8 stata una bella puntata, a volte un po' di leggerezza fa bene! \u263a", "post_text": "Vi ripropongo la mia partecipazione di ieri sera del Maurizio Costanzo Show, sempre un palcoscenico emozionante, con un po' di autoironia, ma sempre col sorriso.\nGuardatelo, \u00e8 stata una bella puntata, a volte un po' di leggerezza fa bene! \u263a", "shared_text": "", "time": "2019-03-29 13:00:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=325072308212149&id=252306033154", "link": null} +{"post_id": "1588467597986052", "text": "Finalmente da oggi anche in Italia VINCE il sacrosanto diritto di DIFENDERSI in casa propria o sul posto di lavoro, per evitare tutte queste incredibili ingiustizie! #ladifesa\u00e8semprelegittima", "post_text": "Finalmente da oggi anche in Italia VINCE il sacrosanto diritto di DIFENDERSI in casa propria o sul posto di lavoro, per evitare tutte queste incredibili ingiustizie! #ladifesa\u00e8semprelegittima", "shared_text": "", "time": "2019-03-28 21:16:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1588467597986052&id=252306033154", "link": null} +{"post_id": "833595966984168", "text": "Bellissimo giorno per tutti gli italiani, dopo anni di chiacchiere approvata la nuova legge che garantisce ai cittadini il sacrosanto diritto alla legittima difesa, una battaglia di civilt\u00e0 votata a grandissima maggioranza! \ud83d\udcaa\ud83d\udd1d", "post_text": "Bellissimo giorno per tutti gli italiani, dopo anni di chiacchiere approvata la nuova legge che garantisce ai cittadini il sacrosanto diritto alla legittima difesa, una battaglia di civilt\u00e0 votata a grandissima maggioranza! \ud83d\udcaa\ud83d\udd1d", "shared_text": "", "time": "2019-03-28 12:39:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=833595966984168&id=252306033154", "link": null} +{"post_id": "2323845770988637", "text": "In diretta dal Viminale, con i protagonisti dell'autobus dirottato a Milano. State con noi!", "post_text": "In diretta dal Viminale, con i protagonisti dell'autobus dirottato a Milano. State con noi!", "shared_text": "", "time": "2019-03-27 13:26:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2323845770988637&id=252306033154", "link": null} +{"post_id": "2192020734222756", "text": "In diretta da Milano con l\u2019amico Mario Giordano per la presentazione del suo nuovo libro \u201cL\u2019Italia non \u00e8 pi\u00f9 italiana\u201d (e su come invertire la rotta). Buona serata Amici, fateci compagnia!\n\ud83d\udc49 https://www.librimondadori.it/libri/litalia-non-e-piu-italiana-mario-giordano/", "post_text": "In diretta da Milano con l\u2019amico Mario Giordano per la presentazione del suo nuovo libro \u201cL\u2019Italia non \u00e8 pi\u00f9 italiana\u201d (e su come invertire la rotta). Buona serata Amici, fateci compagnia!\n\ud83d\udc49 https://www.librimondadori.it/libri/litalia-non-e-piu-italiana-mario-giordano/", "shared_text": "", "time": "2019-03-25 21:06:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2192020734222756&id=252306033154", "link": "https://www.librimondadori.it/libri/litalia-non-e-piu-italiana-mario-giordano/?fbclid=IwAR21ghfhgPvF4A-mbtLCnaIQwqrKvsykqHiVemlfm8_ixJKSvu_QieCczOE"} +{"post_id": "392104314854002", "text": "Se avete un po\u2019 di tempo, ecco la mia intervista di ieri mattina su Canale 5 in collegamento dalla splendida Matera (purtroppo il microfono era del Pd... \ud83e\udd28). Buona serata Amici.", "post_text": "Se avete un po\u2019 di tempo, ecco la mia intervista di ieri mattina su Canale 5 in collegamento dalla splendida Matera (purtroppo il microfono era del Pd... \ud83e\udd28). Buona serata Amici.", "shared_text": "", "time": "2019-03-23 21:00:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=392104314854002&id=252306033154", "link": null} +{"post_id": "2278863519049321", "text": "\u00c8 stata una settimana per me particolarmente impegnativa, intensa, a volte anche commovente, ma sempre e comunque BELLA perch\u00e9 il vostro affetto e il vostro sostegno ci sono stati sempre. Grazie Amici\u2764\ufe0f", "post_text": "\u00c8 stata una settimana per me particolarmente impegnativa, intensa, a volte anche commovente, ma sempre e comunque BELLA perch\u00e9 il vostro affetto e il vostro sostegno ci sono stati sempre. Grazie Amici\u2764\ufe0f", "shared_text": "", "time": "2019-03-22 23:27:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2278863519049321&id=252306033154", "link": null} +{"post_id": "2275679179426170", "text": "\ud83d\udd34Quello che mi ha dato fastidio in queste ore \u00e8 che qualche intellettualone e politico di sinistra abbia provato a \"comprendere\" il delinquente che con benzina, pistola e coltelli minacciava 51 bimbi, dicendo\u2026 Altro che un po' di colpe Salvini ce le ha... Ma si vergognino. Io vado avanti, ascoltate anche voi la mia intervista di ieri sera su Rete 4.", "post_text": "\ud83d\udd34Quello che mi ha dato fastidio in queste ore \u00e8 che qualche intellettualone e politico di sinistra abbia provato a \"comprendere\" il delinquente che con benzina, pistola e coltelli minacciava 51 bimbi, dicendo\u2026 Altro che un po' di colpe Salvini ce le ha... Ma si vergognino. Io vado avanti, ascoltate anche voi la mia intervista di ieri sera su Rete 4.", "shared_text": "", "time": "2019-03-22 13:14:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2275679179426170&id=252306033154", "link": null} +{"post_id": "624352491400520", "text": "Ora in diretta dalla splendida Matera.\nState con me! #domenicavotoLega", "post_text": "Ora in diretta dalla splendida Matera.\nState con me! #domenicavotoLega", "shared_text": "", "time": "2019-03-22 12:11:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=624352491400520&id=252306033154", "link": null} +{"post_id": "384918122345300", "text": "Qui Pomarico, mi seguite?\nDopo ci vediamo anche a Matera alle 12 e a Ferrandina alle 15, vi aspetto numerosi \ud83d\ude0a\n#domenicavotoLega", "post_text": "Qui Pomarico, mi seguite?\nDopo ci vediamo anche a Matera alle 12 e a Ferrandina alle 15, vi aspetto numerosi \ud83d\ude0a\n#domenicavotoLega", "shared_text": "", "time": "2019-03-22 10:35:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=384918122345300&id=252306033154", "link": null} +{"post_id": "2155966581160448", "text": "Qui Tolve (Potenza), ma quanti siete???\nAncora pochi giorni e anche qui in Basilicata facciamo la storia! Avanti tutta!\n#domenicavotoLega", "post_text": "Qui Tolve (Potenza), ma quanti siete???\nAncora pochi giorni e anche qui in Basilicata facciamo la storia! Avanti tutta!\n#domenicavotoLega", "shared_text": "", "time": "2019-03-21 18:59:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2155966581160448&id=252306033154", "link": null} +{"post_id": "2344230572519158", "text": "In diretta da Tito Scalo (Potenza) in una delle fabbriche pi\u00f9 importanti della Basilicata nel settore automobilistico.\nSeguitemi.", "post_text": "In diretta da Tito Scalo (Potenza) in una delle fabbriche pi\u00f9 importanti della Basilicata nel settore automobilistico.\nSeguitemi.", "shared_text": "", "time": "2019-03-21 17:15:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2344230572519158&id=252306033154", "link": null} +{"post_id": "606593479766185", "text": "In diretta da Muro Lucano (Potenza).\n\u00c8 un gioved\u00ec mattina ed in piazza siete tantissimi, che spettacolo!\nIn Basilicata #domenicavotolega!", "post_text": "In diretta da Muro Lucano (Potenza).\n\u00c8 un gioved\u00ec mattina ed in piazza siete tantissimi, che spettacolo!\nIn Basilicata #domenicavotolega!", "shared_text": "", "time": "2019-03-21 12:11:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=606593479766185&id=252306033154", "link": null} +{"post_id": "662132560885992", "text": "In diretta dal Senato, ho qualcosa da dirvi. Mi seguite?", "post_text": "In diretta dal Senato, ho qualcosa da dirvi. Mi seguite?", "shared_text": "", "time": "2019-03-20 10:56:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=662132560885992&id=252306033154", "link": null} +{"post_id": "10156482432058155", "text": "\ud83d\udd34AGGIORNAMENTO\nL\u2019Italia non deve cedere ai ricatti della nave dei centri sociali (cercate in rete chi \u00e8 il signor Luca Casarini) e di chi si rende complice dei trafficanti di esseri umani.\n#portichiusi", "post_text": "\ud83d\udd34AGGIORNAMENTO\nL\u2019Italia non deve cedere ai ricatti della nave dei centri sociali (cercate in rete chi \u00e8 il signor Luca Casarini) e di chi si rende complice dei trafficanti di esseri umani.\n#portichiusi", "shared_text": "", "time": "2019-03-19 09:38:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2206812282905233&id=252306033154", "link": null} +{"post_id": "313511906022433", "text": "In Italia si delinque perch\u00e9 si conta sul fatto che in galera si sta poco, per questo stiamo lavorando da mesi sulla certezza della pena: ZERO sconti per stupratori e assassini.\nDi questo e molto altro ho parlato questa mattina su RTL 102.5. Ecco l'intervista!", "post_text": "In Italia si delinque perch\u00e9 si conta sul fatto che in galera si sta poco, per questo stiamo lavorando da mesi sulla certezza della pena: ZERO sconti per stupratori e assassini.\nDi questo e molto altro ho parlato questa mattina su RTL 102.5. Ecco l'intervista!", "shared_text": "", "time": "2019-03-18 17:33:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=313511906022433&id=252306033154", "link": null} +{"post_id": "392443481336431", "text": "Negli studi di Barbara d\u2019Urso ho detto quello che pensavo e credo che anche il pubblico in studio abbia apprezzato \ud83d\ude0a\nSono stato abbastanza chiaro?\nLeggo i vostri commenti!", "post_text": "Negli studi di Barbara d\u2019Urso ho detto quello che pensavo e credo che anche il pubblico in studio abbia apprezzato \ud83d\ude0a\nSono stato abbastanza chiaro?\nLeggo i vostri commenti!", "shared_text": "", "time": "2019-03-18 13:38:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=392443481336431&id=252306033154", "link": null} +{"post_id": "401055894022563", "text": "Ora in diretta da Milano, mi seguite?", "post_text": "Ora in diretta da Milano, mi seguite?", "shared_text": "", "time": "2019-03-18 12:44:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=401055894022563&id=252306033154", "link": null} +{"post_id": "341655039804749", "text": "In diretta da Lavello (Potenza), visti da qua siete una cosa incredibile!!!", "post_text": "In diretta da Lavello (Potenza), visti da qua siete una cosa incredibile!!!", "shared_text": "", "time": "2019-03-17 12:32:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=341655039804749&id=252306033154", "link": null} +{"post_id": "1952136338218011", "text": "Buona domenica da Melfi (Potenza), Amici.\nSeguitemi!\n#24marzovotoLega", "post_text": "Buona domenica da Melfi (Potenza), Amici.\nSeguitemi!\n#24marzovotoLega", "shared_text": "", "time": "2019-03-17 10:47:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1952136338218011&id=252306033154", "link": null} +{"post_id": "2214000022174661", "text": "Amici, ora in diretta da Villa d\u2019Agri, a Marsicovetere!\nMi seguite? \ud83d\ude0a\n#24marzovotoLega", "post_text": "Amici, ora in diretta da Villa d\u2019Agri, a Marsicovetere!\nMi seguite? \ud83d\ude0a\n#24marzovotoLega", "shared_text": "", "time": "2019-03-16 15:31:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2214000022174661&id=252306033154", "link": null} +{"post_id": "407816819785208", "text": "Un buon sabato da Lauria, in Basilicata, Amici.\nOggi vi aspetto numerosi anche a Viggiano alle 12, a Marsicovetere alle 15, a Potenza alle 18.30 e a Filiano alle 21.\nChi si ferma \u00e8 perduto!\n#24marzovotoLega", "post_text": "Un buon sabato da Lauria, in Basilicata, Amici.\nOggi vi aspetto numerosi anche a Viggiano alle 12, a Marsicovetere alle 15, a Potenza alle 18.30 e a Filiano alle 21.\nChi si ferma \u00e8 perduto!\n#24marzovotoLega", "shared_text": "", "time": "2019-03-16 10:21:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=407816819785208&id=252306033154", "link": null} +{"post_id": "10156475089248155", "text": "Amici, vi propongo una sintesi di questa lunga ed intensa settimana \ud83d\ude0a\nSe voi ci siete io ci sono!", "post_text": "Amici, vi propongo una sintesi di questa lunga ed intensa settimana \ud83d\ude0a\nSe voi ci siete io ci sono!", "shared_text": "", "time": "2019-03-16 00:00:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=414078145805034&id=252306033154", "link": null} +{"post_id": "404238060154431", "text": "La mia intervista di oggi a Canale 21 di Napoli, io adoro le tiv\u00f9 locali!", "post_text": "La mia intervista di oggi a Canale 21 di Napoli, io adoro le tiv\u00f9 locali!", "shared_text": "", "time": "2019-03-15 23:17:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=404238060154431&id=252306033154", "link": null} +{"post_id": "543568632799030", "text": "Un saluto dalla Basilicata Amici! Ora in diretta dalla splendida piazza di Maratea, mi seguite? \ud83d\ude0a\n#24marzovotoLega", "post_text": "Un saluto dalla Basilicata Amici! Ora in diretta dalla splendida piazza di Maratea, mi seguite? \ud83d\ude0a\n#24marzovotoLega", "shared_text": "", "time": "2019-03-15 19:40:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=543568632799030&id=252306033154", "link": null} +{"post_id": "2585863094818550", "text": "Qui Napoli, in diretta dalla Prefettura.\nSeguitemi.", "post_text": "Qui Napoli, in diretta dalla Prefettura.\nSeguitemi.", "shared_text": "", "time": "2019-03-15 16:35:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2585863094818550&id=252306033154", "link": null} +{"post_id": "2233753130170711", "text": "In diretta dalla Camera, ecco il progetto della Lega per la tutela dei marchi storici italiani\ud83c\uddee\ud83c\uddf9", "post_text": "In diretta dalla Camera, ecco il progetto della Lega per la tutela dei marchi storici italiani\ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-03-14 10:41:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2233753130170711&id=252306033154", "link": null} +{"post_id": "2210630205919622", "text": "In diretta da Roma alle celebrazioni del Cinquecentenario dalla morte di Leonardo (1519-2019). \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta da Roma alle celebrazioni del Cinquecentenario dalla morte di Leonardo (1519-2019). \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-03-13 10:22:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2210630205919622&id=252306033154", "link": null} +{"post_id": "310940732808637", "text": "Siete uno spettacolo, Matera. \ud83d\ude0d\nState con noi in diretta!", "post_text": "Siete uno spettacolo, Matera. \ud83d\ude0d\nState con noi in diretta!", "shared_text": "", "time": "2019-03-12 18:50:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=310940732808637&id=252306033154", "link": null} +{"post_id": "2117495948334273", "text": "Qui Scanzano Jonico (Matera).\nMi seguite?\n#24marzovotolega", "post_text": "Qui Scanzano Jonico (Matera).\nMi seguite?\n#24marzovotolega", "shared_text": "", "time": "2019-03-12 11:26:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2117495948334273&id=252306033154", "link": null} +{"post_id": "2004382196537695", "text": "Quando c\u2019\u00e8 la volont\u00e0 \u00e8 possibile risolvere problemi che sembrano insuperabili: l\u2019abbattimento delle Torri di Zingonia, luogo di spaccio e degrado, ne \u00e8 l\u2019esempio!\n#dalleparoleaifatti", "post_text": "Quando c\u2019\u00e8 la volont\u00e0 \u00e8 possibile risolvere problemi che sembrano insuperabili: l\u2019abbattimento delle Torri di Zingonia, luogo di spaccio e degrado, ne \u00e8 l\u2019esempio!\n#dalleparoleaifatti", "shared_text": "", "time": "2019-03-11 11:27:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2004382196537695&id=252306033154", "link": null} +{"post_id": "2034053196671846", "text": "In diretta da Milano alla Scuola di Formazione Politica della Lega, state con noi!", "post_text": "In diretta da Milano alla Scuola di Formazione Politica della Lega, state con noi!", "shared_text": "", "time": "2019-03-10 17:34:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2034053196671846&id=252306033154", "link": null} +{"post_id": "2155087921470663", "text": "Amici, ecco una sintesi di questa lunga settimana.\nChi si ferma \u00e8 perduto!", "post_text": "Amici, ecco una sintesi di questa lunga settimana.\nChi si ferma \u00e8 perduto!", "shared_text": "", "time": "2019-03-08 23:25:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2155087921470663&id=252306033154", "link": null} +{"post_id": "331432660814713", "text": "La mia intervista di ieri sera su Rete 4 da Paolo Del Debbio, avanti con il BUONSENSO per il bene degli italiani.", "post_text": "La mia intervista di ieri sera su Rete 4 da Paolo Del Debbio, avanti con il BUONSENSO per il bene degli italiani.", "shared_text": "", "time": "2019-03-08 13:32:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=331432660814713&id=252306033154", "link": null} +{"post_id": "1942052332588247", "text": "In diretta dal Senato. Al di l\u00e0 della mimosa o della rosa, fatti concreti: ecco come elimineremo gli sconti di pena per chi ammazza e per chi stupra. E legge #CodiceRosso che impone corsie preferenziali\u2026 Altro rapidissime per le denunce di violenze.\nUna donna, anche con la minigonna, anche alle dieci di sera, deve avere il diritto e la libert\u00e0 di andare in giro senza essere molestata.", "post_text": "In diretta dal Senato. Al di l\u00e0 della mimosa o della rosa, fatti concreti: ecco come elimineremo gli sconti di pena per chi ammazza e per chi stupra. E legge #CodiceRosso che impone corsie preferenziali\u2026 Altro rapidissime per le denunce di violenze.\nUna donna, anche con la minigonna, anche alle dieci di sera, deve avere il diritto e la libert\u00e0 di andare in giro senza essere molestata.", "shared_text": "", "time": "2019-03-08 11:49:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1942052332588247&id=252306033154", "link": null} +{"post_id": "627637937673820", "text": "In diretta da Potenza in Basilicata dove si voter\u00e0 domenica 24 marzo, mi seguite?", "post_text": "In diretta da Potenza in Basilicata dove si voter\u00e0 domenica 24 marzo, mi seguite?", "shared_text": "", "time": "2019-03-07 12:04:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=627637937673820&id=252306033154", "link": null} +{"post_id": "10156454490023155", "text": "La mia intervista al Tg5, spero di essere stato chiaro. Buona serata Amici.", "post_text": "La mia intervista al Tg5, spero di essere stato chiaro. Buona serata Amici.", "shared_text": "", "time": "2019-03-05 22:23:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2306349436358177&id=252306033154", "link": null} +{"post_id": "393867724526494", "text": "\u201cDrogato, ubriaco, senza patente: marocchino uccide 2 genitori\u201d.\nIn diretta dalla Camera la proposta di legge della Lega per impedire che accadano ancora follie come questa.", "post_text": "\u201cDrogato, ubriaco, senza patente: marocchino uccide 2 genitori\u201d.\nIn diretta dalla Camera la proposta di legge della Lega per impedire che accadano ancora follie come questa.", "shared_text": "", "time": "2019-03-04 15:13:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=393867724526494&id=252306033154", "link": null} +{"post_id": "753641018354692", "text": "Amici, com\u2019\u00e8 stata la vostra settimana?\nLa mia \u00e8 stata lunga e intensa, ma piena di emozioni. Eccone una sintesi!", "post_text": "Amici, com\u2019\u00e8 stata la vostra settimana?\nLa mia \u00e8 stata lunga e intensa, ma piena di emozioni. Eccone una sintesi!", "shared_text": "", "time": "2019-03-01 23:21:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=753641018354692&id=252306033154", "link": null} +{"post_id": "358029451710512", "text": "Ora in diretta dallo Stabilimento Navale di Monfalcone, dove Fincantieri consegner\u00e0 a Costa Crociere la \"Costa Venezia\", una nave interamente italiana.\nSeguitemi!", "post_text": "Ora in diretta dallo Stabilimento Navale di Monfalcone, dove Fincantieri consegner\u00e0 a Costa Crociere la \"Costa Venezia\", una nave interamente italiana.\nSeguitemi!", "shared_text": "", "time": "2019-02-28 12:00:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=358029451710512&id=252306033154", "link": null} +{"post_id": "383532869132326", "text": "Ora da Cagliari, al mercato di San Benedetto. GRAZIE SARDEGNA!", "post_text": "Ora da Cagliari, al mercato di San Benedetto. GRAZIE SARDEGNA!", "shared_text": "", "time": "2019-02-27 11:41:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=383532869132326&id=252306033154", "link": null} +{"post_id": "2275273172793490", "text": "In diretta da Cagliari, mi seguite?", "post_text": "In diretta da Cagliari, mi seguite?", "shared_text": "", "time": "2019-02-27 10:32:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2275273172793490&id=252306033154", "link": null} +{"post_id": "400538927364671", "text": "Ringrazio per la fiducia le amiche e gli amici Sardi. Gi\u00e0 da domani saremo al lavoro per la loro Terra stupenda, che ha una lingua e tradizioni magnifiche.\nAscoltate \u201cNon potho reposare\u201d di Andrea Parodi su\u2026 Altro YouTube, una straordinaria canzone d\u2019amore.\nEcco la mia intervista di questa sera su Rete 4. Stanco, febbricitante ma FELICE! \ud83d\ude0a", "post_text": "Ringrazio per la fiducia le amiche e gli amici Sardi. Gi\u00e0 da domani saremo al lavoro per la loro Terra stupenda, che ha una lingua e tradizioni magnifiche.\nAscoltate \u201cNon potho reposare\u201d di Andrea Parodi su\u2026 Altro YouTube, una straordinaria canzone d\u2019amore.\nEcco la mia intervista di questa sera su Rete 4. Stanco, febbricitante ma FELICE! \ud83d\ude0a", "shared_text": "", "time": "2019-02-25 22:44:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=400538927364671&id=252306033154", "link": null} +{"post_id": "294462344579690", "text": "In diretta dall\u2019universit\u00e0 Luiss di Roma al convegno di Confagricoltura.\nSeguitemi!", "post_text": "In diretta dall\u2019universit\u00e0 Luiss di Roma al convegno di Confagricoltura.\nSeguitemi!", "shared_text": "", "time": "2019-02-25 18:09:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=294462344579690&id=252306033154", "link": null} +{"post_id": "621056634998274", "text": "Sole, sorrisi e serenit\u00e0 da Recco (Genova), buona domenica e buon pranzo, Amici! \u2600\ufe0f\ud83d\ude0a", "post_text": "Sole, sorrisi e serenit\u00e0 da Recco (Genova), buona domenica e buon pranzo, Amici! \u2600\ufe0f\ud83d\ude0a", "shared_text": "", "time": "2019-02-24 13:03:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=621056634998274&id=252306033154", "link": null} +{"post_id": "404918470335697", "text": "Qui Verona, in diretta dal Salone dei trasporti e della logistica.\nSeguitemi!", "post_text": "Qui Verona, in diretta dal Salone dei trasporti e della logistica.\nSeguitemi!", "shared_text": "", "time": "2019-02-23 13:04:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=404918470335697&id=252306033154", "link": null} +{"post_id": "2226695177551923", "text": "Gli avvocati degli immigrati della Diciotti battono cassa, mi chiedono \"risarcimento danni\" per i loro assistiti... \ud83d\ude05\nMa bastaaa, gli italiani non sono scemi. \u00c8 finita la pacchia!", "post_text": "Gli avvocati degli immigrati della Diciotti battono cassa, mi chiedono \"risarcimento danni\" per i loro assistiti... \ud83d\ude05\nMa bastaaa, gli italiani non sono scemi. \u00c8 finita la pacchia!", "shared_text": "", "time": "2019-02-22 21:19:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2226695177551923&id=252306033154", "link": null} +{"post_id": "1592040504275424", "text": "Faccio il ministro da 8 mesi: i reati sono diminuiti, gli sbarchi azzerati e i morti in mare calati. 8.000 nuove assunzioni per le Forze dell\u2019Ordine, gli agenti hanno nuove divise e sono raddoppiati i beni\u2026 Altro sequestrati alle mafie.\nLa sinistra che chiacchiera \u00e8 stata mandata a casa, noi abbiamo parlato con i fatti. E domenica anche in Sardegna con il voto alla Lega il PD al governo dell'isola sar\u00e0 solo un pessimo ricordo.\nRiguarda la mia intervista di questa mattina su Canale 5.", "post_text": "Faccio il ministro da 8 mesi: i reati sono diminuiti, gli sbarchi azzerati e i morti in mare calati. 8.000 nuove assunzioni per le Forze dell\u2019Ordine, gli agenti hanno nuove divise e sono raddoppiati i beni\u2026 Altro sequestrati alle mafie.\nLa sinistra che chiacchiera \u00e8 stata mandata a casa, noi abbiamo parlato con i fatti. E domenica anche in Sardegna con il voto alla Lega il PD al governo dell'isola sar\u00e0 solo un pessimo ricordo.\nRiguarda la mia intervista di questa mattina su Canale 5.", "shared_text": "", "time": "2019-02-22 13:07:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1592040504275424&id=252306033154", "link": null} +{"post_id": "391042068358483", "text": "Da Cagliari, dove questa sera ho trovato un entusiasmo incredibile, ecco la mia intervista al Tg2. Stanco ma felice! Domenica in Sardegna possiamo fare davvero la storia. Buona serata Amici! \ud83d\ude42", "post_text": "Da Cagliari, dove questa sera ho trovato un entusiasmo incredibile, ecco la mia intervista al Tg2. Stanco ma felice! Domenica in Sardegna possiamo fare davvero la storia. Buona serata Amici! \ud83d\ude42", "shared_text": "", "time": "2019-02-21 22:34:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=391042068358483&id=252306033154", "link": null} +{"post_id": "405296020205328", "text": "Qui Cagliari, che spettacolo...\nSeguiteci!\n#domenicavotoLega", "post_text": "Qui Cagliari, che spettacolo...\nSeguiteci!\n#domenicavotoLega", "shared_text": "", "time": "2019-02-21 18:36:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=405296020205328&id=252306033154", "link": null} +{"post_id": "1274490642698925", "text": "In diretta da Villasimius, dove una villa sequestrata ad un narcotrafficante internazionale diventer\u00e0 un alloggio per i Carabinieri.\nSeguitemi.", "post_text": "In diretta da Villasimius, dove una villa sequestrata ad un narcotrafficante internazionale diventer\u00e0 un alloggio per i Carabinieri.\nSeguitemi.", "shared_text": "", "time": "2019-02-21 15:19:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1274490642698925&id=252306033154", "link": null} +{"post_id": "2133493136719076", "text": "In diretta da Iglesias. Siete tantissimi!\nMi seguite?\n#domenicavotoLega", "post_text": "In diretta da Iglesias. Siete tantissimi!\nMi seguite?\n#domenicavotoLega", "shared_text": "", "time": "2019-02-21 10:00:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2133493136719076&id=252306033154", "link": null} +{"post_id": "2021426351304342", "text": "Di ritorno in Sardegna, ora a Carbonia.\nState con me!\n#domenicavotoLega", "post_text": "Di ritorno in Sardegna, ora a Carbonia.\nState con me!\n#domenicavotoLega", "shared_text": "", "time": "2019-02-20 20:29:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2021426351304342&id=252306033154", "link": null} +{"post_id": "555609658273556", "text": "Stamattina ho parlato su Rai Tre, ecco cosa ho detto.\nLeggo i vostri commenti!", "post_text": "Stamattina ho parlato su Rai Tre, ecco cosa ho detto.\nLeggo i vostri commenti!", "shared_text": "", "time": "2019-02-20 19:09:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=555609658273556&id=252306033154", "link": null} +{"post_id": "253667115511170", "text": "Mia nonna mi diceva: \u201cMale non fare, paura non avere\u201d. Ecco la mia intervista di ieri sera da Giovanni Floris, riguardatela insieme a me!", "post_text": "Mia nonna mi diceva: \u201cMale non fare, paura non avere\u201d. Ecco la mia intervista di ieri sera da Giovanni Floris, riguardatela insieme a me!", "shared_text": "", "time": "2019-02-20 13:29:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=253667115511170&id=252306033154", "link": null} +{"post_id": "471338736733633", "text": "La mia intervista di questa mattina a RTL 102.5. Entro marzo \u00e8 da approvare la nostra nuova legge sulla legittima difesa. Non \u00e8 possibile che il signor Angelo, a Piacenza, sia stato condannato a 4 anni e mezzo e debba andare in carcere per essersi difeso da un ladro!", "post_text": "La mia intervista di questa mattina a RTL 102.5. Entro marzo \u00e8 da approvare la nostra nuova legge sulla legittima difesa. Non \u00e8 possibile che il signor Angelo, a Piacenza, sia stato condannato a 4 anni e mezzo e debba andare in carcere per essersi difeso da un ladro!", "shared_text": "", "time": "2019-02-20 10:30:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=471338736733633&id=252306033154", "link": null} +{"post_id": "256121025309541", "text": "In diretta da Bari!\nState con noi!\n[Prima parte]", "post_text": "In diretta da Bari!\nState con noi!\n[Prima parte]", "shared_text": "", "time": "2019-02-19 18:40:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=256121025309541&id=252306033154", "link": null} +{"post_id": "357454968193784", "text": "Buongiorno dal mercato di Alghero. \u2600\ufe0f\nSeguiteci in diretta!\n#24febbraiovotoLega", "post_text": "Buongiorno dal mercato di Alghero. \u2600\ufe0f\nSeguiteci in diretta!\n#24febbraiovotoLega", "shared_text": "", "time": "2019-02-19 10:29:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=357454968193784&id=252306033154", "link": null} +{"post_id": "308036029914158", "text": "Seguiteci in diretta da Sassari \ud83d\ude01\nChe spettacolo!\n#24febbraiovotoLega", "post_text": "Seguiteci in diretta da Sassari \ud83d\ude01\nChe spettacolo!\n#24febbraiovotoLega", "shared_text": "", "time": "2019-02-18 19:22:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=308036029914158&id=252306033154", "link": null} +{"post_id": "516445242095705", "text": "Processo o non processo, se domani arrivasse un altro barcone rifarei quello che ho fatto, in Italia si entra chiedendo il permesso e rispettando le regole!\nDi questo e molto altro ho parlato ieri sera da Giletti, seguite e condividete!", "post_text": "Processo o non processo, se domani arrivasse un altro barcone rifarei quello che ho fatto, in Italia si entra chiedendo il permesso e rispettando le regole!\nDi questo e molto altro ho parlato ieri sera da Giletti, seguite e condividete!", "shared_text": "", "time": "2019-02-18 13:07:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=516445242095705&id=252306033154", "link": null} +{"post_id": "1505447572920968", "text": "Ora in diretta da Ozieri (Sassari).\nChe bello iniziare cos\u00ec la settimana!\nState con noi.\n#24febbraiovotolega", "post_text": "Ora in diretta da Ozieri (Sassari).\nChe bello iniziare cos\u00ec la settimana!\nState con noi.\n#24febbraiovotolega", "shared_text": "", "time": "2019-02-18 11:05:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1505447572920968&id=252306033154", "link": null} +{"post_id": "819344791732615", "text": "Ora in diretta da Castelsardo (Sassari).\nSiete uno spettacolo!\n#24febbraiovotolega", "post_text": "Ora in diretta da Castelsardo (Sassari).\nSiete uno spettacolo!\n#24febbraiovotolega", "shared_text": "", "time": "2019-02-17 19:20:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=819344791732615&id=252306033154", "link": null} +{"post_id": "1107372509435813", "text": "In diretta da La Maddalena.\nState con noi!\n#24febbraiovotolega", "post_text": "In diretta da La Maddalena.\nState con noi!\n#24febbraiovotolega", "shared_text": "", "time": "2019-02-17 13:32:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1107372509435813&id=252306033154", "link": null} +{"post_id": "244486066485542", "text": "In diretta dalla Camera, state con me!", "post_text": "In diretta dalla Camera, state con me!", "shared_text": "", "time": "2019-02-13 15:04:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=244486066485542&id=252306033154", "link": null} +{"post_id": "320872671944773", "text": "Grazie Abruzzo! Seguitemi in diretta!", "post_text": "Grazie Abruzzo! Seguitemi in diretta!", "shared_text": "", "time": "2019-02-11 11:41:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=320872671944773&id=252306033154", "link": null} +{"post_id": "10156401825043155", "text": "Guerriglia urbana a Torino, cassonetti incendiati, autobus assaltato. Galera per questi infami! Ridotti quasi a zero gli sbarchi, adesso si chiudono i centri sociali frequentati da criminali.", "post_text": "Guerriglia urbana a Torino, cassonetti incendiati, autobus assaltato. Galera per questi infami! Ridotti quasi a zero gli sbarchi, adesso si chiudono i centri sociali frequentati da criminali.", "shared_text": "", "time": "2019-02-10 17:45:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=384671075423333&id=252306033154", "link": null} +{"post_id": "2265250030357781", "text": "Riguardate insieme a me l'intervista a SkyTG24? Eccola!", "post_text": "Riguardate insieme a me l'intervista a SkyTG24? Eccola!", "shared_text": "", "time": "2019-02-10 15:30:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2265250030357781&id=252306033154", "link": null} +{"post_id": "597214744037624", "text": "Chi nega, uccide due volte. Oggi a Basovizza mi sono emozionato e commosso, durante la preghiera per i nostri connazionali Martiri delle foibe e nell\u2019ascolto delle storie dei loro famigliari. Grazie, noi non dimentichiamo. \ud83c\uddee\ud83c\uddf9", "post_text": "Chi nega, uccide due volte. Oggi a Basovizza mi sono emozionato e commosso, durante la preghiera per i nostri connazionali Martiri delle foibe e nell\u2019ascolto delle storie dei loro famigliari. Grazie, noi non dimentichiamo. \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2019-02-10 14:23:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=597214744037624&id=252306033154", "link": null} +{"post_id": "2812050212353391", "text": "Il diritto alla legittima difesa per chi viene aggredito in casa sua o nel suo negozio mi sembra semplice BUONSENSO!\nE in marzo regaleremo agli italiani la nuova legge, tanto attesa, che sta dalla parte di chi si difende.", "post_text": "Il diritto alla legittima difesa per chi viene aggredito in casa sua o nel suo negozio mi sembra semplice BUONSENSO!\nE in marzo regaleremo agli italiani la nuova legge, tanto attesa, che sta dalla parte di chi si difende.", "shared_text": "", "time": "2019-02-09 18:19:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2812050212353391&id=252306033154", "link": null} +{"post_id": "10156399139713155", "text": "Il mio intervento di ieri su Canale 5. Buon pranzo Amici.\nP.s. Chi di voi vota domani in Abruzzo e da dove?", "post_text": "Il mio intervento di ieri su Canale 5. Buon pranzo Amici.\nP.s. Chi di voi vota domani in Abruzzo e da dove?", "shared_text": "", "time": "2019-02-09 13:30:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2186916481637224&id=252306033154", "link": null} +{"post_id": "146399689620370", "text": "MIGLIAIA di abruzzesi qui a Pescara! Siete incredibili.\nGrazie a Voi domenica facciamo la storia dell\u2019Abruzzo e lanciamo un messaggio chiaro in tutta Europa: l\u2019Italia c\u2019\u00e8. #domenicavotoLega", "post_text": "MIGLIAIA di abruzzesi qui a Pescara! Siete incredibili.\nGrazie a Voi domenica facciamo la storia dell\u2019Abruzzo e lanciamo un messaggio chiaro in tutta Europa: l\u2019Italia c\u2019\u00e8. #domenicavotoLega", "shared_text": "", "time": "2019-02-07 19:05:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=146399689620370&id=252306033154", "link": null} +{"post_id": "341687706447981", "text": "In diretta da Bussi sul Tirino (Pescara)!\n#domenicavotoLega", "post_text": "In diretta da Bussi sul Tirino (Pescara)!\n#domenicavotoLega", "shared_text": "", "time": "2019-02-07 11:16:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=341687706447981&id=252306033154", "link": null} +{"post_id": "2173558416015839", "text": "In diretta da L\u2019Aquila!\n#domenicavotoLega", "post_text": "In diretta da L\u2019Aquila!\n#domenicavotoLega", "shared_text": "", "time": "2019-02-06 19:31:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2173558416015839&id=252306033154", "link": null} +{"post_id": "364231497757469", "text": "In diretta da Terni!", "post_text": "In diretta da Terni!", "shared_text": "", "time": "2019-02-06 10:39:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=364231497757469&id=252306033154", "link": null} +{"post_id": "291497301537272", "text": "In diretta da Monteroni d\u2019Arbia (Siena), dove restituir\u00f2 ai cittadini l\u2019azienda agricola e la piscina, visitate qualche mese fa, che erano state confiscate alla mafia.\nSeguitemi!\n#lamafiamifaschifo", "post_text": "In diretta da Monteroni d\u2019Arbia (Siena), dove restituir\u00f2 ai cittadini l\u2019azienda agricola e la piscina, visitate qualche mese fa, che erano state confiscate alla mafia.\nSeguitemi!\n#lamafiamifaschifo", "shared_text": "", "time": "2019-02-05 15:19:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=291497301537272&id=252306033154", "link": null} +{"post_id": "234112890869842", "text": "Vi ripropongo la mia intervista di questa sera su Rete 4, che ne dite? \ud83d\ude0a", "post_text": "Vi ripropongo la mia intervista di questa sera su Rete 4, che ne dite? \ud83d\ude0a", "shared_text": "", "time": "2019-02-04 23:21:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=234112890869842&id=252306033154", "link": null} +{"post_id": "234953777442063", "text": "Si prosegue in provincia di Teramo, ora a Sant\u2019Egidio alla Vibrata.\nMa quanti siete???\n#10febbraiovotolega", "post_text": "Si prosegue in provincia di Teramo, ora a Sant\u2019Egidio alla Vibrata.\nMa quanti siete???\n#10febbraiovotolega", "shared_text": "", "time": "2019-02-03 11:50:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=234953777442063&id=252306033154", "link": null} +{"post_id": "2226209397412464", "text": "Ora in diretta dal mercato di Campli (Teramo)!\nState con me, e buona domenica! \ud83d\ude04\n#10febbraiovotolega", "post_text": "Ora in diretta dal mercato di Campli (Teramo)!\nState con me, e buona domenica! \ud83d\ude04\n#10febbraiovotolega", "shared_text": "", "time": "2019-02-03 09:55:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2226209397412464&id=252306033154", "link": null} +{"post_id": "228164878138323", "text": "Arrivato al mercato di Campli (Teramo)!\nTra poco il mio intervento in diretta su questa pagina!\n#10febbraiovotolega", "post_text": "Arrivato al mercato di Campli (Teramo)!\nTra poco il mio intervento in diretta su questa pagina!\n#10febbraiovotolega", "shared_text": "", "time": "2019-02-03 09:53:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=228164878138323&id=252306033154", "link": null} +{"post_id": "1503985649732860", "text": "Ora in diretta da Giulianova (Teramo).\nState con noi!\n#10febbraiovotolega", "post_text": "Ora in diretta da Giulianova (Teramo).\nState con noi!\n#10febbraiovotolega", "shared_text": "", "time": "2019-02-02 18:07:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1503985649732860&id=252306033154", "link": null} +{"post_id": "398975807537065", "text": "Amici, vi propongo una sintesi di questa lunga ed intensa settimana \ud83d\ude0a\nSe voi ci siete io ci sono!", "post_text": "Amici, vi propongo una sintesi di questa lunga ed intensa settimana \ud83d\ude0a\nSe voi ci siete io ci sono!", "shared_text": "", "time": "2019-02-01 23:20:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=398975807537065&id=252306033154", "link": null} +{"post_id": "1594643494012895", "text": "La mia intervista di ieri sera da Vespa. Le mie azioni di governo mi sono costate insulti, denunce ed indagini, ma sono FELICE di quello che ho fatto. Lo rifarei. Commentate e condividete anche voi!", "post_text": "La mia intervista di ieri sera da Vespa. Le mie azioni di governo mi sono costate insulti, denunce ed indagini, ma sono FELICE di quello che ho fatto. Lo rifarei. Commentate e condividete anche voi!", "shared_text": "", "time": "2019-02-01 13:52:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1594643494012895&id=252306033154", "link": null} +{"post_id": "2330168630538621", "text": "In diretta da Chiomonte (Torino), dove tra poco visiter\u00f2 il cantiere della TAV.", "post_text": "In diretta da Chiomonte (Torino), dove tra poco visiter\u00f2 il cantiere della TAV.", "shared_text": "", "time": "2019-02-01 11:32:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2330168630538621&id=252306033154", "link": null} +{"post_id": "2309220729090442", "text": "Qualche altro ministro era indagato perch\u00e9 \u201cgrattava\u201d, io perch\u00e9 difendo il mio Paese e ne vado fiero.\nIeri sera da Floris entusiasmo quasi imbarazzante del pubblico in studio, spero la puntata sia piaciuta anche a voi, eccola!\ud83d\ude42", "post_text": "Qualche altro ministro era indagato perch\u00e9 \u201cgrattava\u201d, io perch\u00e9 difendo il mio Paese e ne vado fiero.\nIeri sera da Floris entusiasmo quasi imbarazzante del pubblico in studio, spero la puntata sia piaciuta anche a voi, eccola!\ud83d\ude42", "shared_text": "", "time": "2019-01-30 13:17:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2309220729090442&id=252306033154", "link": null} +{"post_id": "10156372391523155", "text": "Non ha precedenti che un ministro venga indagato e rischi la galera per aver difeso i confini del proprio Paese. Sono tranquillo, e lo rifarei, perch\u00e9 so di aver agito in base alla Costituzione e nell'interesse\u2026 Altro degli italiani. Di questo e molto altro ho parlato a RTL 102.5, ascoltate anche voi e fatevi un'idea. Buona serata Amici!", "post_text": "Non ha precedenti che un ministro venga indagato e rischi la galera per aver difeso i confini del proprio Paese. Sono tranquillo, e lo rifarei, perch\u00e9 so di aver agito in base alla Costituzione e nell'interesse\u2026 Altro degli italiani. Di questo e molto altro ho parlato a RTL 102.5, ascoltate anche voi e fatevi un'idea. Buona serata Amici!", "shared_text": "", "time": "2019-01-28 21:01:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=337840023490656&id=252306033154", "link": null} +{"post_id": "143521236553527", "text": "Rivedete con me la prima puntata di \u201cPovera Patria\u201d, programma di Rai Due dove sono stato ospite l\u2019altra sera: intervista spero CHIARA.", "post_text": "Rivedete con me la prima puntata di \u201cPovera Patria\u201d, programma di Rai Due dove sono stato ospite l\u2019altra sera: intervista spero CHIARA.", "shared_text": "", "time": "2019-01-27 14:02:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=143521236553527&id=252306033154", "link": null} +{"post_id": "10156364974798155", "text": "Una sintesi della settimana: io non mollo!", "post_text": "Una sintesi della settimana: io non mollo!", "shared_text": "", "time": "2019-01-25 22:30:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=817423455260718&id=252306033154", "link": null} +{"post_id": "348906289276915", "text": "In diretta da Roma, dove consegner\u00f2 al Comune una villa sequestrata ad un criminale.\nSeguitemi!", "post_text": "In diretta da Roma, dove consegner\u00f2 al Comune una villa sequestrata ad un criminale.\nSeguitemi!", "shared_text": "", "time": "2019-01-25 11:56:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=348906289276915&id=252306033154", "link": null} +{"post_id": "550184445457360", "text": "Ci riprovano.\nRischio da 3 a 15 anni di carcere per aver bloccato gli sbarchi dei clandestini in Italia.\nNon ho parole.\nPaura? Zero.\nContinuo e continuer\u00f2 a lavorare per difendere i confini del mio Paese e la sicurezza degli Italiani!\n#iononmollo", "post_text": "Ci riprovano.\nRischio da 3 a 15 anni di carcere per aver bloccato gli sbarchi dei clandestini in Italia.\nNon ho parole.\nPaura? Zero.\nContinuo e continuer\u00f2 a lavorare per difendere i confini del mio Paese e la sicurezza degli Italiani!\n#iononmollo", "shared_text": "", "time": "2019-01-24 13:07:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=550184445457360&id=252306033154", "link": null} +{"post_id": "536040703582022", "text": "Razzista, fascista, nazista...\nAlle balle della sinistra rispondo coi fatti, col lavoro, coi risultati, con le vite salvate, i reati diminuiti, i soldi risparmiati.\nBacioni\ud83d\ude18", "post_text": "Razzista, fascista, nazista...\nAlle balle della sinistra rispondo coi fatti, col lavoro, coi risultati, con le vite salvate, i reati diminuiti, i soldi risparmiati.\nBacioni\ud83d\ude18", "shared_text": "", "time": "2019-01-22 18:32:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=536040703582022&id=252306033154", "link": null} +{"post_id": "2182576945404420", "text": "Eccomi a Lanciano (Chieti), siete tantissimi!\n#10febbraiovotoLega", "post_text": "Eccomi a Lanciano (Chieti), siete tantissimi!\n#10febbraiovotoLega", "shared_text": "", "time": "2019-01-20 19:09:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2182576945404420&id=252306033154", "link": null} +{"post_id": "404625677022830", "text": "In diretta da Vasto (Chieti)!", "post_text": "In diretta da Vasto (Chieti)!", "shared_text": "", "time": "2019-01-20 16:24:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=404625677022830&id=252306033154", "link": null} +{"post_id": "359913904828198", "text": "Buon sabato Amici.\nUna riflessione: tornano in mare davanti alla Libia le navi delle ONG, gli scafisti ricominciano i loro sporchi traffici, le persone tornano a morire. Ma il \u201ccattivo\u201d sono io. Mah...", "post_text": "Buon sabato Amici.\nUna riflessione: tornano in mare davanti alla Libia le navi delle ONG, gli scafisti ricominciano i loro sporchi traffici, le persone tornano a morire. Ma il \u201ccattivo\u201d sono io. Mah...", "shared_text": "", "time": "2019-01-19 16:07:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=359913904828198&id=252306033154", "link": null} +{"post_id": "2240627936204155", "text": "La mia intervista di oggi a Radio CRC. \u00c8 sempre un piacere e un onore intervenire nelle emittenti del territorio (in questo caso Napoli), che fanno tutti i giorni un lavoro straordinario di informazione, di intrattenimento e di servizio alle loro comunit\u00e0.", "post_text": "La mia intervista di oggi a Radio CRC. \u00c8 sempre un piacere e un onore intervenire nelle emittenti del territorio (in questo caso Napoli), che fanno tutti i giorni un lavoro straordinario di informazione, di intrattenimento e di servizio alle loro comunit\u00e0.", "shared_text": "", "time": "2019-01-18 20:31:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2240627936204155&id=252306033154", "link": null} +{"post_id": "2031888896887228", "text": "Oggi la vostra accoglienza ad Afragola mi ha commosso! Grazie \ud83d\ude4f", "post_text": "Oggi la vostra accoglienza ad Afragola mi ha commosso! Grazie \ud83d\ude4f", "shared_text": "", "time": "2019-01-18 17:28:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2031888896887228&id=252306033154", "link": null} +{"post_id": "364878950976127", "text": "In diretta da Afragola (Napoli)!", "post_text": "In diretta da Afragola (Napoli)!", "shared_text": "", "time": "2019-01-18 16:49:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=364878950976127&id=252306033154", "link": null} +{"post_id": "606363363149413", "text": "In diretta dal Senato, state con me!", "post_text": "In diretta dal Senato, state con me!", "shared_text": "", "time": "2019-01-17 15:05:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=606363363149413&id=252306033154", "link": null} +{"post_id": "594117004365136", "text": "Alghero, grazieee!", "post_text": "Alghero, grazieee!", "shared_text": "", "time": "2019-01-16 18:30:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=594117004365136&id=252306033154", "link": null} +{"post_id": "597301237364131", "text": "Live dalla splendida Alghero!\nMa quanti siete???", "post_text": "Live dalla splendida Alghero!\nMa quanti siete???", "shared_text": "", "time": "2019-01-16 18:11:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=597301237364131&id=252306033154", "link": null} +{"post_id": "228483198040084", "text": "Qui Oristano.\nChe spettacolo!!!", "post_text": "Qui Oristano.\nChe spettacolo!!!", "shared_text": "", "time": "2019-01-16 15:04:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=228483198040084&id=252306033154", "link": null} +{"post_id": "306758030183076", "text": "In diretta dal mercato di Quartu (Cagliari).\nSiete una marea!\n#tralagente #solinaspresidente", "post_text": "In diretta dal mercato di Quartu (Cagliari).\nSiete una marea!\n#tralagente #solinaspresidente", "shared_text": "", "time": "2019-01-16 12:33:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=306758030183076&id=252306033154", "link": null} +{"post_id": "2019271341704176", "text": "In diretta dalla Prefettura di Cagliari dove ho presieduto il Comitato per la sicurezza e l\u2019ordine pubblico. Seguitemi!", "post_text": "In diretta dalla Prefettura di Cagliari dove ho presieduto il Comitato per la sicurezza e l\u2019ordine pubblico. Seguitemi!", "shared_text": "", "time": "2019-01-16 11:47:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2019271341704176&id=252306033154", "link": null} +{"post_id": "1470616229737072", "text": "La mia intervista di questa mattina al nuovo programma di approfondimento del Tg2, se avete voglia riguardate con me.", "post_text": "La mia intervista di questa mattina al nuovo programma di approfondimento del Tg2, se avete voglia riguardate con me.", "shared_text": "", "time": "2019-01-14 21:33:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1470616229737072&id=252306033154", "link": null} +{"post_id": "380463542716079", "text": "In diretta da Palazzo Chigi. Oggi \u00e8 una giornata di festa per gli italiani con la cattura e il rientro nelle nostre galere di Battisti. Ma deve essere l\u2019inizio di un percorso, perch\u00e9 sono tanti, troppi i\u2026 Altro terroristi ancora a piede libero, anche nella vicina Francia, dal cui governo non accettiamo lezioni di morale, accoglienza, solidariet\u00e0 e generosit\u00e0.\nChi ha sbagliato in Italia deve pagare in Italia!", "post_text": "In diretta da Palazzo Chigi. Oggi \u00e8 una giornata di festa per gli italiani con la cattura e il rientro nelle nostre galere di Battisti. Ma deve essere l\u2019inizio di un percorso, perch\u00e9 sono tanti, troppi i\u2026 Altro terroristi ancora a piede libero, anche nella vicina Francia, dal cui governo non accettiamo lezioni di morale, accoglienza, solidariet\u00e0 e generosit\u00e0.\nChi ha sbagliato in Italia deve pagare in Italia!", "shared_text": "", "time": "2019-01-14 14:26:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=380463542716079&id=252306033154", "link": null} +{"post_id": "287238315479629", "text": "Vi ripropongo l\u2019intervista di ieri sera da Giletti su La7, la vigilia della storica giornata di oggi in cui un vigliacco criminale e assassino \u00e8 stato finalmente restituito alla giustizia italiana.", "post_text": "Vi ripropongo l\u2019intervista di ieri sera da Giletti su La7, la vigilia della storica giornata di oggi in cui un vigliacco criminale e assassino \u00e8 stato finalmente restituito alla giustizia italiana.", "shared_text": "", "time": "2019-01-14 13:09:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=287238315479629&id=252306033154", "link": null} +{"post_id": "1049525641892730", "text": "Ora in diretta dalla mia Milano, alla Scuola di formazione politica della Lega. State con me!", "post_text": "Ora in diretta dalla mia Milano, alla Scuola di formazione politica della Lega. State con me!", "shared_text": "", "time": "2019-01-13 15:28:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1049525641892730&id=252306033154", "link": null} +{"post_id": "1621335464632743", "text": "Tragedia di Rigopiano.\nDopo due anni di chiacchiere e di promesse a vuoto, arrivano una legge e 10 milioni di euro del Ministero dell\u2019Interno per aiutare i famigliari delle 29 vittime.\n#dalleparoleaifatti", "post_text": "Tragedia di Rigopiano.\nDopo due anni di chiacchiere e di promesse a vuoto, arrivano una legge e 10 milioni di euro del Ministero dell\u2019Interno per aiutare i famigliari delle 29 vittime.\n#dalleparoleaifatti", "shared_text": "", "time": "2019-01-11 15:31:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1621335464632743&id=252306033154", "link": null} +{"post_id": "313956715893737", "text": "Mentre l'immigrazione regolare, di chi si integra, ha un lavoro, paga le tasse e manda i figlia a scuola, \u00e8 un valore aggiunto per una societ\u00e0, non lo \u00e8 lo sbarco incontrollato e senza regole di clandestini. Io\u2026 Altro sono accusato di cattivismo, razzismo, fascismo, ma voglio bloccare il traffico degli scafisti. Mi pare solo buonsenso! Di questo ed altro ho parlato questa mattina a RTL, ascoltate anche voi!", "post_text": "Mentre l'immigrazione regolare, di chi si integra, ha un lavoro, paga le tasse e manda i figlia a scuola, \u00e8 un valore aggiunto per una societ\u00e0, non lo \u00e8 lo sbarco incontrollato e senza regole di clandestini. Io\u2026 Altro sono accusato di cattivismo, razzismo, fascismo, ma voglio bloccare il traffico degli scafisti. Mi pare solo buonsenso! Di questo ed altro ho parlato questa mattina a RTL, ascoltate anche voi!", "shared_text": "", "time": "2019-01-10 11:43:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=313956715893737&id=252306033154", "link": null} +{"post_id": "795086007494889", "text": "In diretta da Varsavia con il collega ministro dell\u2019Interno polacco Brudzi\u0144ski, seguitemi!", "post_text": "In diretta da Varsavia con il collega ministro dell\u2019Interno polacco Brudzi\u0144ski, seguitemi!", "shared_text": "", "time": "2019-01-09 12:37:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=795086007494889&id=252306033154", "link": null} +{"post_id": "1124435201066952", "text": "Chi ha un villone con le guardie ai cancelli non ha un \u201cproblema sicurezza\u201d. L\u2019operaio in periferia, s\u00ec. Di questo ed altro ho parlato ieri sera da Porro in una intervista a tutto campo, riguardate insieme a me?", "post_text": "Chi ha un villone con le guardie ai cancelli non ha un \u201cproblema sicurezza\u201d. L\u2019operaio in periferia, s\u00ec. Di questo ed altro ho parlato ieri sera da Porro in una intervista a tutto campo, riguardate insieme a me?", "shared_text": "", "time": "2019-01-08 13:36:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1124435201066952&id=252306033154", "link": null} +{"post_id": "2425995137474626", "text": "Operativo anche oggi al Ministero.\nFelice per il sostegno che mi dimostrate ogni giorno di pi\u00f9, io continuo il mio lavoro: con coraggio e onest\u00e0, io non mollo di un centimetro!", "post_text": "Operativo anche oggi al Ministero.\nFelice per il sostegno che mi dimostrate ogni giorno di pi\u00f9, io continuo il mio lavoro: con coraggio e onest\u00e0, io non mollo di un centimetro!", "shared_text": "", "time": "2019-01-06 18:14:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2425995137474626&id=252306033154", "link": null} +{"post_id": "376264773123523", "text": "Ora in diretta da L\u2019Aquila, mi seguite?\nChi si ferma \u00e8 perduto!\n#10febbraiovotoLega", "post_text": "Ora in diretta da L\u2019Aquila, mi seguite?\nChi si ferma \u00e8 perduto!\n#10febbraiovotoLega", "shared_text": "", "time": "2019-01-05 19:42:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=376264773123523&id=252306033154", "link": null} +{"post_id": "330867794307691", "text": "Vi propongo il mio intervento di questa mattina a Teramo, anche qui ho trovato tanta gente che ha voglia di cambiamento.\n#10febbraiovotoLega", "post_text": "Vi propongo il mio intervento di questa mattina a Teramo, anche qui ho trovato tanta gente che ha voglia di cambiamento.\n#10febbraiovotoLega", "shared_text": "", "time": "2019-01-05 18:34:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=330867794307691&id=252306033154", "link": null} +{"post_id": "376442076506601", "text": "Ora da Roseto degli Abruzzi. Ma quanti siete???\n#10febbraiovotoLega", "post_text": "Ora da Roseto degli Abruzzi. Ma quanti siete???\n#10febbraiovotoLega", "shared_text": "", "time": "2019-01-05 16:04:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=376442076506601&id=252306033154", "link": null} +{"post_id": "756172294754571", "text": "In diretta da Montesilvano, con idee chiare e coerenza.", "post_text": "In diretta da Montesilvano, con idee chiare e coerenza.", "shared_text": "", "time": "2019-01-04 19:40:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=756172294754571&id=252306033154", "link": null} +{"post_id": "220058082211094", "text": "Due passi per le strade di Pescara in mezzo a tanti abruzzesi perbene. Seguitemi \ud83d\ude0a\n#10febbraiovotoLega", "post_text": "Due passi per le strade di Pescara in mezzo a tanti abruzzesi perbene. Seguitemi \ud83d\ude0a\n#10febbraiovotoLega", "shared_text": "", "time": "2019-01-04 18:04:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=220058082211094&id=252306033154", "link": null} +{"post_id": "2262925007287491", "text": "Molti sindaci che contestano il Decreto Sicurezza, oggi LEGGE dello Stato, non lo hanno letto. Vengono garantiti il diritto alla salute, il diritto allo studio, i bambini non si toccano e non possono essere\u2026 Altro espulsi. Semplicemente non si regalano altri diritti ai furbetti come veniva fatto fino a ieri.\nIo non mollo di una virgola! Ascoltate la mia intervista a Rai Radio 1.", "post_text": "Molti sindaci che contestano il Decreto Sicurezza, oggi LEGGE dello Stato, non lo hanno letto. Vengono garantiti il diritto alla salute, il diritto allo studio, i bambini non si toccano e non possono essere\u2026 Altro espulsi. Semplicemente non si regalano altri diritti ai furbetti come veniva fatto fino a ieri.\nIo non mollo di una virgola! Ascoltate la mia intervista a Rai Radio 1.", "shared_text": "", "time": "2019-01-04 13:43:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2262925007287491&id=252306033154", "link": null} +{"post_id": "1995795260487699", "text": "Arrivato a Chieti!", "post_text": "Arrivato a Chieti!", "shared_text": "", "time": "2019-01-04 11:27:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1995795260487699&id=252306033154", "link": null} +{"post_id": "390206031891921", "text": "Chi non rispetta il Decreto Sicurezza e aiuta i clandestini, tradisce l\u2019Italia e gli Italiani e ne risponder\u00e0 davanti alla Legge e alla Storia.\nIo comunque non mollo!!!\ud83d\ude0a", "post_text": "Chi non rispetta il Decreto Sicurezza e aiuta i clandestini, tradisce l\u2019Italia e gli Italiani e ne risponder\u00e0 davanti alla Legge e alla Storia.\nIo comunque non mollo!!!\ud83d\ude0a", "shared_text": "", "time": "2019-01-03 13:23:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=390206031891921&id=252306033154", "link": null} +{"post_id": "770146236702201", "text": "Chi aiuta i clandestini odia gli Italiani, ne risponder\u00e0 davanti alla Legge e alla Storia. Io non mollo!!!\ud83d\ude0a", "post_text": "Chi aiuta i clandestini odia gli Italiani, ne risponder\u00e0 davanti alla Legge e alla Storia. Io non mollo!!!\ud83d\ude0a", "shared_text": "", "time": "2019-01-03 13:16:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=770146236702201&id=252306033154", "link": null} +{"post_id": "304694453491195", "text": "\u201cNon esistono clandestini\u201d.\nAlcuni sindaci del PD annunciano che non applicheranno il Decreto Sicurezza, alla faccia dei mille problemi, quotidiani e reali, che hanno i loro concittadini.\nDobbiamo dare tutto\u2026 Altro anche agli immigrati irregolari?\nIo non sono d\u2019accordo.\nRicordo a questi sindaci di sinistra che il Decreto Sicurezza, una legge di buon senso e civilt\u00e0, \u00e8 stato approvato da Governo e Parlamento, e firmato dal Presidente della Repubblica.\nPrima dobbiamo pensare ai milioni di Italiani poveri e disoccupati, difendendoli dai troppi reati commessi da immigrati clandestini, poi salveremo anche il resto del mondo.\nSbaglio??", "post_text": "\u201cNon esistono clandestini\u201d.\nAlcuni sindaci del PD annunciano che non applicheranno il Decreto Sicurezza, alla faccia dei mille problemi, quotidiani e reali, che hanno i loro concittadini.\nDobbiamo dare tutto\u2026 Altro anche agli immigrati irregolari?\nIo non sono d\u2019accordo.\nRicordo a questi sindaci di sinistra che il Decreto Sicurezza, una legge di buon senso e civilt\u00e0, \u00e8 stato approvato da Governo e Parlamento, e firmato dal Presidente della Repubblica.\nPrima dobbiamo pensare ai milioni di Italiani poveri e disoccupati, difendendoli dai troppi reati commessi da immigrati clandestini, poi salveremo anche il resto del mondo.\nSbaglio??", "shared_text": "", "time": "2019-01-02 17:33:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=304694453491195&id=252306033154", "link": null} +{"post_id": "514047215771891", "text": "Il Maestro Canello ha gi\u00e0 messo avanti l\u2019orologio. 3, 2, 1... \u00c8 mezzanotteee!!! \ud83c\udf7e\ud83e\udd42\ud83d\ude02\nUn pensiero all\u2019unico, inimitabile, geniale e indimenticabile Paolo Villaggio.", "post_text": "Il Maestro Canello ha gi\u00e0 messo avanti l\u2019orologio. 3, 2, 1... \u00c8 mezzanotteee!!! \ud83c\udf7e\ud83e\udd42\ud83d\ude02\nUn pensiero all\u2019unico, inimitabile, geniale e indimenticabile Paolo Villaggio.", "shared_text": "", "time": "2018-12-31 23:02:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=514047215771891&id=252306033154", "link": null} +{"post_id": "2201836900076651", "text": "Quante emozioni, quante battaglie, quanti problemi ma anche quante soddisfazioni e quanti risultati positivi raggiunti!\nL\u2019Italia ha ritrovato finalmente orgoglio e dignit\u00e0.\nE tutto grazie a VOI.\nChe il 2019 sia migliore per tutti \u00e8 il mio impegno Amici: io ci sono, conto sul vostro aiuto!", "post_text": "Quante emozioni, quante battaglie, quanti problemi ma anche quante soddisfazioni e quanti risultati positivi raggiunti!\nL\u2019Italia ha ritrovato finalmente orgoglio e dignit\u00e0.\nE tutto grazie a VOI.\nChe il 2019 sia migliore per tutti \u00e8 il mio impegno Amici: io ci sono, conto sul vostro aiuto!", "shared_text": "", "time": "2018-12-31 21:41:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2201836900076651&id=252306033154", "link": null} +{"post_id": "2154060998191318", "text": "In diretta dalla festa della Lega di Albino (Bergamo). State con noi!", "post_text": "In diretta dalla festa della Lega di Albino (Bergamo). State con noi!", "shared_text": "", "time": "2018-12-28 21:04:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2154060998191318&id=252306033154", "link": null} +{"post_id": "320373505236403", "text": "Per risolvere i problemi nel calcio bisogna coinvolgere intorno ad un tavolo tutti i protagonisti: calciatori, tifoserie, presidenti, arbitri, giornalisti. Non bisogna per\u00f2 confondere i delinquenti con i tifosi perbene.\nRiguardate insieme a me il mio intervento di ieri notte su Italia 1 e, se vi va, commentate.", "post_text": "Per risolvere i problemi nel calcio bisogna coinvolgere intorno ad un tavolo tutti i protagonisti: calciatori, tifoserie, presidenti, arbitri, giornalisti. Non bisogna per\u00f2 confondere i delinquenti con i tifosi perbene.\nRiguardate insieme a me il mio intervento di ieri notte su Italia 1 e, se vi va, commentate.", "shared_text": "", "time": "2018-12-28 13:32:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=320373505236403&id=252306033154", "link": null} +{"post_id": "204990440456077", "text": "In diretta dalla prefettura di Pesaro, dove ho presieduto il Comitato per la sicurezza e l\u2019ordine pubblico. State con me.", "post_text": "In diretta dalla prefettura di Pesaro, dove ho presieduto il Comitato per la sicurezza e l\u2019ordine pubblico. State con me.", "shared_text": "", "time": "2018-12-27 12:51:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=204990440456077&id=252306033154", "link": null} +{"post_id": "2161055884159197", "text": "Dopo aver donato qualche regalo e un sorriso ai bambini che passeranno il Natale in ospedale, voglio salutare anche Voi.\nE voglio smontare alcune BUFALE propinate da qualche politico giornalista: nessuna\u2026 Altro pensione verr\u00e0 tagliata e diminuir\u00e0, nel 2019 nessuno in Italia prender\u00e0 di meno, anzi si prender\u00e0 di pi\u00f9!\nAgli oppositori rimangono solo le bugie\ud83d\ude0a.\nBuon Santo Natale amici.", "post_text": "Dopo aver donato qualche regalo e un sorriso ai bambini che passeranno il Natale in ospedale, voglio salutare anche Voi.\nE voglio smontare alcune BUFALE propinate da qualche politico giornalista: nessuna\u2026 Altro pensione verr\u00e0 tagliata e diminuir\u00e0, nel 2019 nessuno in Italia prender\u00e0 di meno, anzi si prender\u00e0 di pi\u00f9!\nAgli oppositori rimangono solo le bugie\ud83d\ude0a.\nBuon Santo Natale amici.", "shared_text": "", "time": "2018-12-24 12:08:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2161055884159197&id=252306033154", "link": null} +{"post_id": "330044354497220", "text": "Qui Firenze. Appena terminato il Comitato Provinciale per l\u2019Ordine e la Sicurezza pubblica.\nSeguitemi in diretta!", "post_text": "Qui Firenze. Appena terminato il Comitato Provinciale per l\u2019Ordine e la Sicurezza pubblica.\nSeguitemi in diretta!", "shared_text": "", "time": "2018-12-20 19:36:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=330044354497220&id=252306033154", "link": null} +{"post_id": "293356471316633", "text": "Stamattina ho parlato a Radio 1. Se avete voglia, riascoltate l'intervista insieme a me e commentate, vi leggo!", "post_text": "Stamattina ho parlato a Radio 1. Se avete voglia, riascoltate l'intervista insieme a me e commentate, vi leggo!", "shared_text": "", "time": "2018-12-20 18:23:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=293356471316633&id=252306033154", "link": null} +{"post_id": "280666179319153", "text": "All\u2019ospedale Fatebenefratelli di Milano ho firmato il Protocollo d\u2019intesa tra Polizia di Stato, Azienda Socio Sanitaria Territoriale (ASST) e Regione Lombardia per la realizzazione di un laboratorio di Genetica\u2026 Altro Forense della Polizia Scientifica.\nOrgoglioso che l\u2019Italia sia un punto di riferimento per la sicurezza e l\u2019anticrimine, in Europa e nel mondo.", "post_text": "All\u2019ospedale Fatebenefratelli di Milano ho firmato il Protocollo d\u2019intesa tra Polizia di Stato, Azienda Socio Sanitaria Territoriale (ASST) e Regione Lombardia per la realizzazione di un laboratorio di Genetica\u2026 Altro Forense della Polizia Scientifica.\nOrgoglioso che l\u2019Italia sia un punto di riferimento per la sicurezza e l\u2019anticrimine, in Europa e nel mondo.", "shared_text": "", "time": "2018-12-20 12:19:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=280666179319153&id=252306033154", "link": null} +{"post_id": "209169013341150", "text": "Sorbolo (Parma). Oggi sono felice di aver consegnato personalmente alla Guardia di Finanza un immobile sequestrato alla \u2018Ndrangheta. Voglio vedere i clan ridotti alla fame e in galera. #lamafiamifaschifo", "post_text": "Sorbolo (Parma). Oggi sono felice di aver consegnato personalmente alla Guardia di Finanza un immobile sequestrato alla \u2018Ndrangheta. Voglio vedere i clan ridotti alla fame e in galera. #lamafiamifaschifo", "shared_text": "", "time": "2018-12-18 20:37:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=209169013341150&id=252306033154", "link": null} +{"post_id": "261981744496651", "text": "In diretta con gli amici di Confagricoltura, seguitemi anche voi!\nPatrimonio di lavoro, di ricchezza, di storia, di cultura. Viva la nostra agricoltura, viva il nostro Made in Italy \ud83c\uddee\ud83c\uddf9", "post_text": "In diretta con gli amici di Confagricoltura, seguitemi anche voi!\nPatrimonio di lavoro, di ricchezza, di storia, di cultura. Viva la nostra agricoltura, viva il nostro Made in Italy \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2018-12-18 16:23:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=261981744496651&id=252306033154", "link": null} +{"post_id": "267264540588649", "text": "L'intervista di ieri sera con Nicola Porro su Rete 4 mi \u00e8 piaciuta molto, eccola! Mi aiutate a condividere?", "post_text": "L'intervista di ieri sera con Nicola Porro su Rete 4 mi \u00e8 piaciuta molto, eccola! Mi aiutate a condividere?", "shared_text": "", "time": "2018-12-18 13:01:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=267264540588649&id=252306033154", "link": null} +{"post_id": "1078325205681989", "text": "In diretta dal Comune di Sorbolo (Parma), dove consegner\u00f2 alla Guardia di Finanza un immobile sequestrato alla \u2018ndrangheta.\nState con me.", "post_text": "In diretta dal Comune di Sorbolo (Parma), dove consegner\u00f2 alla Guardia di Finanza un immobile sequestrato alla \u2018ndrangheta.\nState con me.", "shared_text": "", "time": "2018-12-18 12:08:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1078325205681989&id=252306033154", "link": null} +{"post_id": "214259892817626", "text": "Ecco il video completo: RUSPE in azione oggi al campo nomadi di Cascina (Pisa). C'\u00e8 chi chiacchiera, c'\u00e8 chi fa. #dalleparoleaifatti", "post_text": "Ecco il video completo: RUSPE in azione oggi al campo nomadi di Cascina (Pisa). C'\u00e8 chi chiacchiera, c'\u00e8 chi fa. #dalleparoleaifatti", "shared_text": "", "time": "2018-12-17 19:25:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=214259892817626&id=252306033154", "link": null} +{"post_id": "759605257712836", "text": "Manterremo gli impegni presi uno ad uno, guardando sempre avanti, mai indietro.", "post_text": "Manterremo gli impegni presi uno ad uno, guardando sempre avanti, mai indietro.", "shared_text": "", "time": "2018-12-16 16:24:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=759605257712836&id=252306033154", "link": null} +{"post_id": "732920737101157", "text": "In diretta da Milano, alla Scuola di Formazione Politica.\nMi seguite?", "post_text": "In diretta da Milano, alla Scuola di Formazione Politica.\nMi seguite?", "shared_text": "", "time": "2018-12-16 11:52:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=732920737101157&id=252306033154", "link": null} +{"post_id": "930474950482558", "text": "In diretta da Gerusalemme, vi racconto del mio incontro di stamane con il premier Netanyahu e di tutti gli altri incontri di questa splendida visita in Israele.", "post_text": "In diretta da Gerusalemme, vi racconto del mio incontro di stamane con il premier Netanyahu e di tutti gli altri incontri di questa splendida visita in Israele.", "shared_text": "", "time": "2018-12-12 12:17:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=930474950482558&id=252306033154", "link": null} +{"post_id": "396595874215665", "text": "Ora dal Santo Sepolcro, a Gerusalemme.", "post_text": "Ora dal Santo Sepolcro, a Gerusalemme.", "shared_text": "", "time": "2018-12-12 08:58:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=396595874215665&id=252306033154", "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 50 nuove foto.\n10 dicembre 2018 alle ore 18:15 \u00b7\nAltre opzioni\nQui una selezione di fotografie per rivivere insieme le emozioni della manifestazione dell'8 dicembre.\n#iocisono", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 50 nuove foto.\n10 dicembre 2018 alle ore 18:15 \u00b7\nAltre opzioni\nQui una selezione di fotografie per rivivere insieme le emozioni della manifestazione dell'8 dicembre.\n#iocisono", "time": "2018-12-10 18:15:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/47682858_10156263856558155_4154144969155674112_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Fv03ayhBsusAQkCR5WDJkzDcX0eXIALUcN7sssq8fIbsM06GGDbiqJBJA&_nc_ht=scontent-cdt1-1.xx&oh=cd2e7829c7399d577cddef2abeac4c48&oe=5E49D1B5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "2016586605045320", "text": "In diretta dalla sede della Stampa Estera di Roma, domande e risposte con i giornalisti stranieri, parliamo del governo del Buonsenso. State con noi!", "post_text": "In diretta dalla sede della Stampa Estera di Roma, domande e risposte con i giornalisti stranieri, parliamo del governo del Buonsenso. State con noi!", "shared_text": "", "time": "2018-12-10 16:47:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2016586605045320&id=252306033154", "link": null} +{"post_id": "10156261972098155", "text": "Voi siete l'avanguardia dell'orgoglio, del cambiamento e della dignit\u00e0 di questo Paese. Vi ripropongo il mio intervento, ci ho messo tutta la mia testa e tutto il mio cuore.\n#piazzadelpopolo #primagliitaliani", "post_text": "Voi siete l'avanguardia dell'orgoglio, del cambiamento e della dignit\u00e0 di questo Paese. Vi ripropongo il mio intervento, ci ho messo tutta la mia testa e tutto il mio cuore.\n#piazzadelpopolo #primagliitaliani", "shared_text": "", "time": "2018-12-09 21:00:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=556379784787330&id=252306033154", "link": null} +{"post_id": "261032004590526", "text": "Non dimenticher\u00f2 mai le emozioni di questo abbraccio.\nUNITI possiamo tutto.\u2764\ufe0f", "post_text": "Non dimenticher\u00f2 mai le emozioni di questo abbraccio.\nUNITI possiamo tutto.\u2764\ufe0f", "shared_text": "", "time": "2018-12-09 13:20:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=261032004590526&id=252306033154", "link": null} +{"post_id": "2265161823742797", "text": "Live da Roma, tutto pronto in piazza del Popolo! #iocisono", "post_text": "Live da Roma, tutto pronto in piazza del Popolo! #iocisono", "shared_text": "", "time": "2018-12-08 11:19:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2265161823742797&id=252306033154", "link": null} +{"post_id": "127744281453859", "text": "Vi ripropongo la mia intervista di oggi pomeriggio da Barbara D\u2019Urso.\nDi persona e di cuore vi aspetto domani mattina a Roma! #iocisono", "post_text": "Vi ripropongo la mia intervista di oggi pomeriggio da Barbara D\u2019Urso.\nDi persona e di cuore vi aspetto domani mattina a Roma! #iocisono", "shared_text": "", "time": "2018-12-07 21:45:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=127744281453859&id=252306033154", "link": null} +{"post_id": "280279609294053", "text": "La mia intervista di questa mattina a Canale 5, sabato a Roma alle 11 saremo un MARE di gente perbene, contro tutto e tutti, per dire: #primagliitaliani \ud83c\uddee\ud83c\uddf9", "post_text": "La mia intervista di questa mattina a Canale 5, sabato a Roma alle 11 saremo un MARE di gente perbene, contro tutto e tutti, per dire: #primagliitaliani \ud83c\uddee\ud83c\uddf9", "shared_text": "", "time": "2018-12-06 21:16:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=280279609294053&id=252306033154", "link": null} +{"post_id": "357663391455179", "text": "Questa mattina alla radio: su quota 100 (nessun rinvio), concorrenza sleale della Cina e difesa del Made in Italy, presunta \u201cdisumanit\u00e0\u201d dell\u2019Italia e molto altro, tra cui il mio no a nuove tasse sulle auto.\nCredo di essere stato chiaro, ascoltate anche voi.", "post_text": "Questa mattina alla radio: su quota 100 (nessun rinvio), concorrenza sleale della Cina e difesa del Made in Italy, presunta \u201cdisumanit\u00e0\u201d dell\u2019Italia e molto altro, tra cui il mio no a nuove tasse sulle auto.\nCredo di essere stato chiaro, ascoltate anche voi.", "shared_text": "", "time": "2018-12-06 13:12:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=357663391455179&id=252306033154", "link": null} +{"post_id": "575449812914052", "text": "In diretta dalla Camera, la nostra iniziativa per l\u2019educazione civica obbligatoria nelle scuole e per il sostegno e il riconoscimento della lingua dei segni, con formazione degli insegnanti. Che cosa ne pensate?", "post_text": "In diretta dalla Camera, la nostra iniziativa per l\u2019educazione civica obbligatoria nelle scuole e per il sostegno e il riconoscimento della lingua dei segni, con formazione degli insegnanti. Che cosa ne pensate?", "shared_text": "", "time": "2018-12-06 11:10:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=575449812914052&id=252306033154", "link": null} +{"post_id": "456941394832691", "text": "Ieri sera su Rai Tre sono stato chiaro: bene il dialogo con l'Europa ma i nostri datori di lavoro sono gli ITALIANI.", "post_text": "Ieri sera su Rai Tre sono stato chiaro: bene il dialogo con l'Europa ma i nostri datori di lavoro sono gli ITALIANI.", "shared_text": "", "time": "2018-12-05 14:01:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=456941394832691&id=252306033154", "link": null} +{"post_id": "773564702996752", "text": "In diretta da Bruxelles, seguitemi!\nP.s. La testata Politico.eu ha deciso di premiarmi come politico europeo dell\u2019anno! \ud83d\ude31 Grazie soprattutto a VOI!", "post_text": "In diretta da Bruxelles, seguitemi!\nP.s. La testata Politico.eu ha deciso di premiarmi come politico europeo dell\u2019anno! \ud83d\ude31 Grazie soprattutto a VOI!", "shared_text": "", "time": "2018-12-03 21:24:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=773564702996752&id=252306033154", "link": null} +{"post_id": "459892134415614", "text": "Intervista a tutto campo su RTL 102.5. Se vi va, ascoltate e commentate con me!", "post_text": "Intervista a tutto campo su RTL 102.5. Se vi va, ascoltate e commentate con me!", "shared_text": "", "time": "2018-12-03 19:45:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=459892134415614&id=252306033154", "link": null} +{"post_id": "558460354580739", "text": "\u00c8 sempre bello tornare davanti al pubblico di Giletti.\nRivedete l\u2019intervista insieme a me, leggo i vostri commenti!", "post_text": "\u00c8 sempre bello tornare davanti al pubblico di Giletti.\nRivedete l\u2019intervista insieme a me, leggo i vostri commenti!", "shared_text": "", "time": "2018-12-03 13:32:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=558460354580739&id=252306033154", "link": null} +{"post_id": "330649921101215", "text": "Vi ripropongo il mio intervento di oggi su La7 dalla Merlino, e se state svegli mi potrete vedere da Vespa su Rai Uno verso le 23.20. Non si molla, Amici!\n#primagliitaliani", "post_text": "Vi ripropongo il mio intervento di oggi su La7 dalla Merlino, e se state svegli mi potrete vedere da Vespa su Rai Uno verso le 23.20. Non si molla, Amici!\n#primagliitaliani", "shared_text": "", "time": "2018-11-29 21:48:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=330649921101215&id=252306033154", "link": null} +{"post_id": "2240700669542905", "text": "Come promesso il #DecretoSalvini \u00e8 legge! Ed \u00e8 solo l'inizio. Rivedi il mio intervento di oggi da Barbara D'Urso. E... GRAZIE!", "post_text": "Come promesso il #DecretoSalvini \u00e8 legge! Ed \u00e8 solo l'inizio. Rivedi il mio intervento di oggi da Barbara D'Urso. E... GRAZIE!", "shared_text": "", "time": "2018-11-28 21:30:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2240700669542905&id=252306033154", "link": null} +{"post_id": "267889123917683", "text": "\ud83d\udd34 FATELO GIRARE!\nL\u2019Italia non firmer\u00e0 la proposta Global Compact ONU sull'immigrazione e il governo non andr\u00e0 alla riunione di Marrakesh. Avanti!\n#NoGlobalCompact", "post_text": "\ud83d\udd34 FATELO GIRARE!\nL\u2019Italia non firmer\u00e0 la proposta Global Compact ONU sull'immigrazione e il governo non andr\u00e0 alla riunione di Marrakesh. Avanti!\n#NoGlobalCompact", "shared_text": "", "time": "2018-11-28 12:53:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=267889123917683&id=252306033154", "link": null} +{"post_id": "2107851139507429", "text": "Felice e onorato di aver inaugurato il nuovo anno accademico della Scuola di Perfezionamento per le Forze di Polizia, un fiore all'occhiello italiano e un unicum a livello europeo.\nDa questa Scuola uscir\u00e0\u2026 Altro personale formato non solo professionalmente ma anche eticamente, culturalmente e socialmente, perch\u00e9 sicurezza \u00e8 rispetto e tutela dell'ordine oltre che legalit\u00e0.\nGrazie per quello che fate e quello che farete.", "post_text": "Felice e onorato di aver inaugurato il nuovo anno accademico della Scuola di Perfezionamento per le Forze di Polizia, un fiore all'occhiello italiano e un unicum a livello europeo.\nDa questa Scuola uscir\u00e0\u2026 Altro personale formato non solo professionalmente ma anche eticamente, culturalmente e socialmente, perch\u00e9 sicurezza \u00e8 rispetto e tutela dell'ordine oltre che legalit\u00e0.\nGrazie per quello che fate e quello che farete.", "shared_text": "", "time": "2018-11-27 20:40:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2107851139507429&id=252306033154", "link": null} +{"post_id": "2214599101920014", "text": "In diretta dalla Camera, ho alcune cose da dirvi sul #DecretoSalvini che diventa legge! Siete con me?", "post_text": "In diretta dalla Camera, ho alcune cose da dirvi sul #DecretoSalvini che diventa legge! Siete con me?", "shared_text": "", "time": "2018-11-27 18:40:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2214599101920014&id=252306033154", "link": null} +{"post_id": "1682375515200023", "text": "In diretta da Roma all\u2019evento \u201cSindaci d\u2019Italia\u201d di Poste Italiane.", "post_text": "In diretta da Roma all\u2019evento \u201cSindaci d\u2019Italia\u201d di Poste Italiane.", "shared_text": "", "time": "2018-11-26 12:44:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1682375515200023&id=252306033154", "link": null} +{"post_id": "592856317784236", "text": "In diretta da Cagliari alla presentazione del 34esimo Congresso del Partito Sardo d\u2019Azione! Mi seguite?", "post_text": "In diretta da Cagliari alla presentazione del 34esimo Congresso del Partito Sardo d\u2019Azione! Mi seguite?", "shared_text": "", "time": "2018-11-23 12:43:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=592856317784236&id=252306033154", "link": null} +{"post_id": "258897441471334", "text": "Per ogni insulto che arriva da sinistra, noi inauguriamo una nuova sede della Lega! Seguitemi d\u00e0 Tortol\u00ec! Che spettacolo!!!", "post_text": "Per ogni insulto che arriva da sinistra, noi inauguriamo una nuova sede della Lega! Seguitemi d\u00e0 Tortol\u00ec! Che spettacolo!!!", "shared_text": "", "time": "2018-11-22 21:30:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=258897441471334&id=252306033154", "link": null} +{"post_id": "1959157624169878", "text": "Questa mattina su Rai Uno credo di essere stato particolarmente CHIARO. I movimenti del cosiddetto \"spread\" non corrispondono alla vita e all'economia vera del Paese. In 5 mesi abbiamo fatto tanto e abbiamo\u2026 Altro molto consenso, non vorrei che qualche speculatore volesse ostacolarci a tutti i costi. Sempre e comunque: #primagliitaliani", "post_text": "Questa mattina su Rai Uno credo di essere stato particolarmente CHIARO. I movimenti del cosiddetto \"spread\" non corrispondono alla vita e all'economia vera del Paese. In 5 mesi abbiamo fatto tanto e abbiamo\u2026 Altro molto consenso, non vorrei che qualche speculatore volesse ostacolarci a tutti i costi. Sempre e comunque: #primagliitaliani", "shared_text": "", "time": "2018-11-22 13:30:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1959157624169878&id=252306033154", "link": null} +{"post_id": "513027859202065", "text": "In diretta dalla Camera, seguitemi!", "post_text": "In diretta dalla Camera, seguitemi!", "shared_text": "", "time": "2018-11-21 15:02:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=513027859202065&id=252306033154", "link": null} +{"post_id": "2196070903987250", "text": "In diretta da Roma, assemblea ALIS (Associazione Logistica dell\u2019Intermodalit\u00e0 Sostenibil), seguite anche voi.\nDobbiamo costruire. non distruggere. L'Italia ha bisogno di nuove infrastrutture, ha bisogno di pi\u00f9 infrastrutture.\nDobbiamo andare avanti non tornare indietro", "post_text": "In diretta da Roma, assemblea ALIS (Associazione Logistica dell\u2019Intermodalit\u00e0 Sostenibil), seguite anche voi.\nDobbiamo costruire. non distruggere. L'Italia ha bisogno di nuove infrastrutture, ha bisogno di pi\u00f9 infrastrutture.\nDobbiamo andare avanti non tornare indietro", "shared_text": "", "time": "2018-11-20 11:05:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2196070903987250&id=252306033154", "link": null} +{"post_id": "758047844544772", "text": "In diretta da Milano, state con noi! #idn2018", "post_text": "In diretta da Milano, state con noi! #idn2018", "shared_text": "", "time": "2018-11-19 11:46:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=758047844544772&id=252306033154", "link": null} +{"post_id": "255921828615604", "text": "Ieri sera su Rai Due ho avuto un pimpante confronto con Enrico Lucci.\ud83d\ude00\nEccolo!", "post_text": "Ieri sera su Rai Due ho avuto un pimpante confronto con Enrico Lucci.\ud83d\ude00\nEccolo!", "shared_text": "", "time": "2018-11-17 13:40:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=255921828615604&id=252306033154", "link": null} +{"post_id": "716590118710925", "text": "In diretta da Milano, all\u2019assemblea della CNA (Confederazione nazionale dell\u2019artigianato e della piccola e media impresa). Mi seguite?", "post_text": "In diretta da Milano, all\u2019assemblea della CNA (Confederazione nazionale dell\u2019artigianato e della piccola e media impresa). Mi seguite?", "shared_text": "", "time": "2018-11-17 12:18:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=716590118710925&id=252306033154", "link": null} +{"post_id": "287852748506968", "text": "Non ero mai andato da Maurizio Costanzo, \u00e8 stata una esperienza simpatica. Tante domande, non mi sono tirato indietro. Giudicate voi... commento libero! \ud83d\ude09", "post_text": "Non ero mai andato da Maurizio Costanzo, \u00e8 stata una esperienza simpatica. Tante domande, non mi sono tirato indietro. Giudicate voi... commento libero! \ud83d\ude09", "shared_text": "", "time": "2018-11-15 21:00:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=287852748506968&id=252306033154", "link": null} +{"post_id": "317947439041626", "text": "In diretta dalla Prefettura di Napoli dove ho presieduto il Comitato per l'Ordine e la sicurezza pubblica.\n100 nuovi agenti di Polizia locale, impianti di videosorveglianza, norma \"rottama motorini\", programma\u2026 Altro di sgomberi di stabili pericolanti e di case popolari occupate gestite dalla camorra, lotta agli spacciatori e tante altre iniziative consentite dal #DecretoSalvini.\nNon si molla, ce la metter\u00f2 tutta per aiutare questa citt\u00e0.\nMi seguite?", "post_text": "In diretta dalla Prefettura di Napoli dove ho presieduto il Comitato per l'Ordine e la sicurezza pubblica.\n100 nuovi agenti di Polizia locale, impianti di videosorveglianza, norma \"rottama motorini\", programma\u2026 Altro di sgomberi di stabili pericolanti e di case popolari occupate gestite dalla camorra, lotta agli spacciatori e tante altre iniziative consentite dal #DecretoSalvini.\nNon si molla, ce la metter\u00f2 tutta per aiutare questa citt\u00e0.\nMi seguite?", "shared_text": "", "time": "2018-11-15 12:28:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=317947439041626&id=252306033154", "link": null} +{"post_id": "1085582078270743", "text": "Ora in diretta da Milano, alla Scuola di Formazione politica della Lega.\nSe avete voglia state con me!", "post_text": "Ora in diretta da Milano, alla Scuola di Formazione politica della Lega.\nSe avete voglia state con me!", "shared_text": "", "time": "2018-11-11 17:44:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1085582078270743&id=252306033154", "link": null} +{"post_id": "168759264079012", "text": "Questa mattina alla Universit\u00e0 Lumsa di Roma ho partecipato molto volentieri al convegno promosso dalla Comunit\u00e0 Papa Giovanni XXIII insieme alla Polizia di Stato: gli affetti famigliari e gli amici veri sono\u2026 Altro l\u2019antidoto migliore a chi tenta di plagiare, adescare, violentare psicologicamente e purtroppo anche fisicamente. Se avete voglia, ecco il mio intervento.", "post_text": "Questa mattina alla Universit\u00e0 Lumsa di Roma ho partecipato molto volentieri al convegno promosso dalla Comunit\u00e0 Papa Giovanni XXIII insieme alla Polizia di Stato: gli affetti famigliari e gli amici veri sono\u2026 Altro l\u2019antidoto migliore a chi tenta di plagiare, adescare, violentare psicologicamente e purtroppo anche fisicamente. Se avete voglia, ecco il mio intervento.", "shared_text": "", "time": "2018-11-09 15:53:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=168759264079012&id=252306033154", "link": null} +{"post_id": "1584365155042533", "text": "Dopo l'intervista di ieri sera dalla Gruber, nella giornata dell'approvazione in Parlamento del #DecretoSalvini, ho ricevuto molti messaggi di sostegno e tanti inviti ad ANDARE AVANTI, dai mondi e dagli ambienti pi\u00f9 vari. Grazie! Garantisco, non mi fermer\u00f2 certo adesso!", "post_text": "Dopo l'intervista di ieri sera dalla Gruber, nella giornata dell'approvazione in Parlamento del #DecretoSalvini, ho ricevuto molti messaggi di sostegno e tanti inviti ad ANDARE AVANTI, dai mondi e dagli ambienti pi\u00f9 vari. Grazie! Garantisco, non mi fermer\u00f2 certo adesso!", "shared_text": "", "time": "2018-11-08 13:01:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1584365155042533&id=252306033154", "link": null} +{"post_id": "2090732080991647", "text": "Vi ripropongo la mia intervista di oggi a Canale 5, il pubblico in studio ha apprezzato, spero anche voi!", "post_text": "Vi ripropongo la mia intervista di oggi a Canale 5, il pubblico in studio ha apprezzato, spero anche voi!", "shared_text": "", "time": "2018-11-07 19:41:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2090732080991647&id=252306033154", "link": null} +{"post_id": "1966211756795395", "text": "Sono soddisfatto.\nDecreto Sicurezza e Immigrazione e taglio dei costi dell\u2019accoglienza alla faccia di mangioni e profittatori, oggi \u00e8 una giornata molto importante per gli italiani.\nE ora andiamo avanti.", "post_text": "Sono soddisfatto.\nDecreto Sicurezza e Immigrazione e taglio dei costi dell\u2019accoglienza alla faccia di mangioni e profittatori, oggi \u00e8 una giornata molto importante per gli italiani.\nE ora andiamo avanti.", "shared_text": "", "time": "2018-11-07 15:44:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1966211756795395&id=252306033154", "link": null} +{"post_id": "529276700872094", "text": "In diretta dal Viminale, mi seguite?", "post_text": "In diretta dal Viminale, mi seguite?", "shared_text": "", "time": "2018-11-07 12:15:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=529276700872094&id=252306033154", "link": null} +{"post_id": "337624377001667", "text": "Sul caso di Asia Bibi stiamo lavorando con discrezione e attenzione, insieme ad altri Paesi occidentali.\nFar\u00f2 tutto quanto umanamente possibile per garantire un futuro a questa ragazza.", "post_text": "Sul caso di Asia Bibi stiamo lavorando con discrezione e attenzione, insieme ad altri Paesi occidentali.\nFar\u00f2 tutto quanto umanamente possibile per garantire un futuro a questa ragazza.", "shared_text": "", "time": "2018-11-06 10:31:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=337624377001667&id=252306033154", "link": null} +{"post_id": "172869460327487", "text": "Sono soddisfatto. Alla breve ma costruttiva visita in Ghana, le cui autorit\u00e0 ringrazio per l'ospitalit\u00e0, ne seguiranno altre in vari Paesi africani.\nMentre in passato tanti si limitavano a chiacchierare, noi\u2026 Altro cerchiamo di fare quanto promesso: dopo aver bloccato gli sbarchi, favorire i rimpatri di chi non ha diritto a rimanere in Italia e aiutare i popoli a casa loro, attraverso una cooperazione economica, culturale e umana utile a tutti.", "post_text": "Sono soddisfatto. Alla breve ma costruttiva visita in Ghana, le cui autorit\u00e0 ringrazio per l'ospitalit\u00e0, ne seguiranno altre in vari Paesi africani.\nMentre in passato tanti si limitavano a chiacchierare, noi\u2026 Altro cerchiamo di fare quanto promesso: dopo aver bloccato gli sbarchi, favorire i rimpatri di chi non ha diritto a rimanere in Italia e aiutare i popoli a casa loro, attraverso una cooperazione economica, culturale e umana utile a tutti.", "shared_text": "", "time": "2018-11-06 09:34:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=172869460327487&id=252306033154", "link": null} +{"post_id": "190430188535823", "text": "Sono d'accordo, e rilancio: il buonismo ha rovinato l'Italia, perch\u00e9 ha fatto venir meno il RISPETTO.\nMa su immigrazione, sicurezza, certezza della pena, legittima difesa abbiamo invertito la rotta, e siamo solo all'inizio! Io non mollo.", "post_text": "Sono d'accordo, e rilancio: il buonismo ha rovinato l'Italia, perch\u00e9 ha fatto venir meno il RISPETTO.\nMa su immigrazione, sicurezza, certezza della pena, legittima difesa abbiamo invertito la rotta, e siamo solo all'inizio! Io non mollo.", "shared_text": "", "time": "2018-11-05 13:37:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=190430188535823&id=252306033154", "link": null} +{"post_id": "383064492237019", "text": "Conto di tornare presto a Terracina, quando le attivit\u00e0 saranno ripartite, gli alberi ripiantati e i tetti sistemati.\nHo voluto vedere con i miei occhi, credo che la solidariet\u00e0, portata di persona, mostri agli\u2026 Altro italiani che lo Stato c\u2019\u00e8 e non li lascia soli nelle calamit\u00e0 naturali. Ma gli abbracci non bastano, servono soldi e mezzi. Gi\u00e0 nei prossimi giorni arriveranno i primi provvedimenti e stanziamenti da parte del Consiglio dei ministri, metter\u00f2 tutto il mio\nimpegno perch\u00e9 le persone e le attivit\u00e0 colpite ritrovino un po\u2019 di tranquillit\u00e0.", "post_text": "Conto di tornare presto a Terracina, quando le attivit\u00e0 saranno ripartite, gli alberi ripiantati e i tetti sistemati.\nHo voluto vedere con i miei occhi, credo che la solidariet\u00e0, portata di persona, mostri agli\u2026 Altro italiani che lo Stato c\u2019\u00e8 e non li lascia soli nelle calamit\u00e0 naturali. Ma gli abbracci non bastano, servono soldi e mezzi. Gi\u00e0 nei prossimi giorni arriveranno i primi provvedimenti e stanziamenti da parte del Consiglio dei ministri, metter\u00f2 tutto il mio\nimpegno perch\u00e9 le persone e le attivit\u00e0 colpite ritrovino un po\u2019 di tranquillit\u00e0.", "shared_text": "", "time": "2018-11-04 17:55:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=383064492237019&id=252306033154", "link": null} +{"post_id": "254907751864103", "text": "Dal centro coordinamento soccorsi all\u2019aeroporto di Belluno, seguitemi.", "post_text": "Dal centro coordinamento soccorsi all\u2019aeroporto di Belluno, seguitemi.", "shared_text": "", "time": "2018-11-04 11:53:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=254907751864103&id=252306033154", "link": null} +{"post_id": "201365130760527", "text": "La devastazione a Belluno, la montagna senza pi\u00f9 alberi.\nMi si stringe il cuore.\nDomani sar\u00f2 sul posto, stiamo gi\u00e0 cercando (e trovando) i primi 200 milioni di euro per aiutare le popolazioni colpite da questi disastri, dal Veneto alla Sicilia.", "post_text": "La devastazione a Belluno, la montagna senza pi\u00f9 alberi.\nMi si stringe il cuore.\nDomani sar\u00f2 sul posto, stiamo gi\u00e0 cercando (e trovando) i primi 200 milioni di euro per aiutare le popolazioni colpite da questi disastri, dal Veneto alla Sicilia.", "shared_text": "", "time": "2018-11-03 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=201365130760527&id=252306033154", "link": null} +{"post_id": "739384663074465", "text": "Scalfari: \"Putin vuole che Salvini sia il dittatore d'Italia\".\n\ud83d\ude02\ud83d\ude02\ud83d\ude02\n#hastatoSalvini", "post_text": "Scalfari: \"Putin vuole che Salvini sia il dittatore d'Italia\".\n\ud83d\ude02\ud83d\ude02\ud83d\ude02\n#hastatoSalvini", "shared_text": "", "time": "2018-11-03 14:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=739384663074465&id=252306033154", "link": null} +{"post_id": "2247734655508016", "text": "Dopo la richiesta di archiviazione della Procura di Catania continuo ancora con pi\u00f9 forza per la mia strada.\nSe ne faccia una ragione chi mi voleva male \ud83d\ude01\nAvanti tutta!", "post_text": "Dopo la richiesta di archiviazione della Procura di Catania continuo ancora con pi\u00f9 forza per la mia strada.\nSe ne faccia una ragione chi mi voleva male \ud83d\ude01\nAvanti tutta!", "shared_text": "", "time": "2018-11-02 21:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2247734655508016&id=252306033154", "link": null} +{"post_id": "1151200208371084", "text": "\u201cSalvini cattivo maestro\u201d...\nNon ho parole.", "post_text": "\u201cSalvini cattivo maestro\u201d...\nNon ho parole.", "shared_text": "", "time": "2018-11-01 17:51:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1151200208371084&id=252306033154", "link": null} +{"post_id": "557965711316784", "text": "Mi \u00e8 arrivata ora in ufficio una busta chiusa dalla Procura di Catania: sar\u00f2 assolto o indagato???\nDai che la apriamo insieme!\nIntanto buon Ognissanti a tutti voi Amici, e un abbraccio particolare a chi lavora.", "post_text": "Mi \u00e8 arrivata ora in ufficio una busta chiusa dalla Procura di Catania: sar\u00f2 assolto o indagato???\nDai che la apriamo insieme!\nIntanto buon Ognissanti a tutti voi Amici, e un abbraccio particolare a chi lavora.", "shared_text": "", "time": "2018-11-01 10:33:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=557965711316784&id=252306033154", "link": null} +{"post_id": "179657176295093", "text": "Contento di aver conosciuto le ragazze e i ragazzi della nazionale italiana impegnata in questi giorni nei mondiali in Qatar.\nTanta bella giovent\u00f9 di ottime speranze, quanto li invidio!\nStiamo lavorando per\u2026 Altro dare sempre pi\u00f9 spazio, visibilit\u00e0 e fondi alle cosiddette \"discipline minori\", seguite per\u00f2 da milioni di persone.\nDa tifoso di calcio, meno pallone e pi\u00f9 sport!", "post_text": "Contento di aver conosciuto le ragazze e i ragazzi della nazionale italiana impegnata in questi giorni nei mondiali in Qatar.\nTanta bella giovent\u00f9 di ottime speranze, quanto li invidio!\nStiamo lavorando per\u2026 Altro dare sempre pi\u00f9 spazio, visibilit\u00e0 e fondi alle cosiddette \"discipline minori\", seguite per\u00f2 da milioni di persone.\nDa tifoso di calcio, meno pallone e pi\u00f9 sport!", "shared_text": "", "time": "2018-10-31 21:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=179657176295093&id=252306033154", "link": null} +{"post_id": "1875705782525174", "text": "A bordo della splendida fregata Federico Martinengo e i suoi 185 membri dell\u2019equipaggio.\nOrgoglioso della Marina Militare italiana che difende i nostri mari e la nostra sicurezza.\nGrazie!", "post_text": "A bordo della splendida fregata Federico Martinengo e i suoi 185 membri dell\u2019equipaggio.\nOrgoglioso della Marina Militare italiana che difende i nostri mari e la nostra sicurezza.\nGrazie!", "shared_text": "", "time": "2018-10-30 19:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1875705782525174&id=252306033154", "link": null} +{"post_id": "288501751996224", "text": "Alla faccia di chi ci vuole male... Ecco cosa ho detto ieri sera da Giletti su La7!", "post_text": "Alla faccia di chi ci vuole male... Ecco cosa ho detto ieri sera da Giletti su La7!", "shared_text": "", "time": "2018-10-29 13:30:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=288501751996224&id=252306033154", "link": null} +{"post_id": "2039355172784409", "text": "Orgoglioso di questi momenti, in Italia torna il RISPETTO per chi ci difende.", "post_text": "Orgoglioso di questi momenti, in Italia torna il RISPETTO per chi ci difende.", "shared_text": "", "time": "2018-10-27 17:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2039355172784409&id=252306033154", "link": null} +{"post_id": "2102997659730651", "text": "Enrico Montesano difende le nostre azioni politiche e dice quello che milioni di italiani pensano, con parole chiare e semplici. Ascoltatelo.", "post_text": "Enrico Montesano difende le nostre azioni politiche e dice quello che milioni di italiani pensano, con parole chiare e semplici. Ascoltatelo.", "shared_text": "", "time": "2018-10-27 15:00:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2102997659730651&id=252306033154", "link": null} +{"post_id": "366105974128184", "text": "Ridurre ulteriormente gli sbarchi, aumentare espulsioni e rimpatri.\nA Roma come a Milano, Napoli e Palermo, riconquisteremo zone oggi in mano alla delinquenza e allo spaccio.\nIn Italia non c'\u00e8 spazio per l'illegalit\u00e0.", "post_text": "Ridurre ulteriormente gli sbarchi, aumentare espulsioni e rimpatri.\nA Roma come a Milano, Napoli e Palermo, riconquisteremo zone oggi in mano alla delinquenza e allo spaccio.\nIn Italia non c'\u00e8 spazio per l'illegalit\u00e0.", "shared_text": "", "time": "2018-10-26 21:00:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=366105974128184&id=252306033154", "link": null} +{"post_id": "281821152666997", "text": "\"Buttalo, buttalo\".\nDopo avermi dato dell'assassino, i centri a-sociali di Firenze si divertono lanciando in acqua un gommone con un mio fantoccio...\nChe pena, non c\u2019\u00e8 limite all\u2019idiozia, a certi \u201cstudenti\u201d farebbe bene un po\u2019 di scuola in pi\u00f9.", "post_text": "\"Buttalo, buttalo\".\nDopo avermi dato dell'assassino, i centri a-sociali di Firenze si divertono lanciando in acqua un gommone con un mio fantoccio...\nChe pena, non c\u2019\u00e8 limite all\u2019idiozia, a certi \u201cstudenti\u201d farebbe bene un po\u2019 di scuola in pi\u00f9.", "shared_text": "", "time": "2018-10-26 19:10:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=281821152666997&id=252306033154", "link": null} +{"post_id": "493096807848386", "text": "Abbiamo fissato per l'Immacolata, sabato 8 dicembre, un appuntamento a Roma, in piazza del Popolo, con tutti gli italiani che ci sostengono e che vorranno esserci vicini in questa bella avventura di liberazione, di coraggio, di onest\u00e0, di crescita, di futuro.", "post_text": "Abbiamo fissato per l'Immacolata, sabato 8 dicembre, un appuntamento a Roma, in piazza del Popolo, con tutti gli italiani che ci sostengono e che vorranno esserci vicini in questa bella avventura di liberazione, di coraggio, di onest\u00e0, di crescita, di futuro.", "shared_text": "", "time": "2018-10-26 17:17:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=493096807848386&id=252306033154", "link": null} +{"post_id": "353138581920480", "text": "I crimini commessi da coloro che hanno abusato della buona fede del Paese che li accoglie sono doppiamente gravi, io la penso cos\u00ec.", "post_text": "I crimini commessi da coloro che hanno abusato della buona fede del Paese che li accoglie sono doppiamente gravi, io la penso cos\u00ec.", "shared_text": "", "time": "2018-10-26 13:02:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=353138581920480&id=252306033154", "link": null} +{"post_id": "918877141636812", "text": "Ora in diretta dalla caserma dei Carabinieri Salvo D\u2019Acquisto di Roma, alla cerimonia per i 40 anni di fondazione del Gruppo Intervento Speciale (GIS). Seguitemi!", "post_text": "Ora in diretta dalla caserma dei Carabinieri Salvo D\u2019Acquisto di Roma, alla cerimonia per i 40 anni di fondazione del Gruppo Intervento Speciale (GIS). Seguitemi!", "shared_text": "", "time": "2018-10-26 10:33:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=918877141636812&id=252306033154", "link": null} +{"post_id": "342760753143544", "text": "Noi puntiamo sulla vita VERA: lavoro, tasse, legge Fornero, Equitalia, partite Iva, agricoltura, risparmiatori truffati.\nSe la finanza e l'Europa seguiranno l'economia REALE lo spread scender\u00e0 inevitabilmente, perch\u00e9 la nostra manovra dar\u00e0 stabilit\u00e0 e serenit\u00e0 all'Italia.", "post_text": "Noi puntiamo sulla vita VERA: lavoro, tasse, legge Fornero, Equitalia, partite Iva, agricoltura, risparmiatori truffati.\nSe la finanza e l'Europa seguiranno l'economia REALE lo spread scender\u00e0 inevitabilmente, perch\u00e9 la nostra manovra dar\u00e0 stabilit\u00e0 e serenit\u00e0 all'Italia.", "shared_text": "", "time": "2018-10-25 19:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=342760753143544&id=252306033154", "link": null} +{"post_id": "536942866768026", "text": "Ora in diretta dal Senato, state con me.", "post_text": "Ora in diretta dal Senato, state con me.", "shared_text": "", "time": "2018-10-25 15:30:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=536942866768026&id=252306033154", "link": null} +{"post_id": "300411677231239", "text": "In diretta da Verona, alla Fieracavalli, seguitemi!", "post_text": "In diretta da Verona, alla Fieracavalli, seguitemi!", "shared_text": "", "time": "2018-10-25 11:36:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=300411677231239&id=252306033154", "link": null} +{"post_id": "475485276296573", "text": "Il video del fermo, nella notte, di due immigrati senegalesi irregolari per violenza sessuale di gruppo, cessione di stupefacenti e omicidio volontario.\nUna terza persona \u00e8 stata rintracciata, spero presto\u2026 Altro potr\u00f2 darvi notizia su altri sospetti complici.\nGRAZIE alla Polizia di Stato.\nL'omicidio di Desir\u00e9e non rimarr\u00e0 impunito, ve lo garantisco.", "post_text": "Il video del fermo, nella notte, di due immigrati senegalesi irregolari per violenza sessuale di gruppo, cessione di stupefacenti e omicidio volontario.\nUna terza persona \u00e8 stata rintracciata, spero presto\u2026 Altro potr\u00f2 darvi notizia su altri sospetti complici.\nGRAZIE alla Polizia di Stato.\nL'omicidio di Desir\u00e9e non rimarr\u00e0 impunito, ve lo garantisco.", "shared_text": "", "time": "2018-10-25 10:18:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=475485276296573&id=252306033154", "link": null} +{"post_id": "704314199953049", "text": "Vi ripropongo il mio intervento di questa mattina a RTL 102.5. Seguite se avete un po\u2019 di tempo, e ditemi se sono stato abbastanza CHIARO. Avanti tutta!", "post_text": "Vi ripropongo il mio intervento di questa mattina a RTL 102.5. Seguite se avete un po\u2019 di tempo, e ditemi se sono stato abbastanza CHIARO. Avanti tutta!", "shared_text": "", "time": "2018-10-24 19:12:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=704314199953049&id=252306033154", "link": null} +{"post_id": "319954035448901", "text": "Sono al quartiere San Lorenzo di Roma. Seguitemi.\n#Desir\u00e9e", "post_text": "Sono al quartiere San Lorenzo di Roma. Seguitemi.\n#Desir\u00e9e", "shared_text": "", "time": "2018-10-24 12:44:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=319954035448901&id=252306033154", "link": null} +{"post_id": "1381711891964904", "text": "Sempre in diretta da Bucarest, dall\u2019Ambasciata italiana. Seguitemi!", "post_text": "Sempre in diretta da Bucarest, dall\u2019Ambasciata italiana. Seguitemi!", "shared_text": "", "time": "2018-10-23 13:55:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1381711891964904&id=252306033154", "link": null} +{"post_id": "765122530546413", "text": "In diretta da Bucarest, al Ministero dell\u2019Interno romeno con la collega Carmen Daniela Dan.", "post_text": "In diretta da Bucarest, al Ministero dell\u2019Interno romeno con la collega Carmen Daniela Dan.", "shared_text": "", "time": "2018-10-23 12:23:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=765122530546413&id=252306033154", "link": null} +{"post_id": "556311174798150", "text": "Secondo il regista americano Michael Moore sarei un bigotto, un razzista e odierei gay e lesbiche!\nPoveretto, mi fa un po' pena.\nSe questi \"intellettuali\" di sinistra, in Italia e all'estero, mi attaccano un\u2026 Altro giorno s\u00ec e l'altro pure, vuol dire che sono sulla strada giusta, o no?\nA giudicare dai VOTI VERI presi in Trentino e in Alto Adige ieri direi di s\u00ec! :)", "post_text": "Secondo il regista americano Michael Moore sarei un bigotto, un razzista e odierei gay e lesbiche!\nPoveretto, mi fa un po' pena.\nSe questi \"intellettuali\" di sinistra, in Italia e all'estero, mi attaccano un\u2026 Altro giorno s\u00ec e l'altro pure, vuol dire che sono sulla strada giusta, o no?\nA giudicare dai VOTI VERI presi in Trentino e in Alto Adige ieri direi di s\u00ec! :)", "shared_text": "", "time": "2018-10-22 20:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=556311174798150&id=252306033154", "link": null} +{"post_id": "289001928589190", "text": "\u201cSe suo figlio vuole andare in fonderia non c\u2019\u00e8 mica problema. Devono venire dal Ghana per andarci a lavorare\u201d.\nCon 5 milioni di poveri in Italia, mi sembra proprio saggio citare PRODI e le sue teorie sui giovani italiani fannulloni.\nE questa sarebbe la \u201csinistra\u201d...", "post_text": "\u201cSe suo figlio vuole andare in fonderia non c\u2019\u00e8 mica problema. Devono venire dal Ghana per andarci a lavorare\u201d.\nCon 5 milioni di poveri in Italia, mi sembra proprio saggio citare PRODI e le sue teorie sui giovani italiani fannulloni.\nE questa sarebbe la \u201csinistra\u201d...", "shared_text": "", "time": "2018-10-21 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=289001928589190&id=252306033154", "link": null} +{"post_id": "309308609660871", "text": "\"Salvini NEOFASCISTA, rozzo, aggressivo\".\nE basta???\nSono lieto di non piacerle, viste le differenze tra me e lei: io sono stato eletto e non nominato, io non ho rovinato migliaia di famiglie italiane, io non\u2026 Altro verso lacrime di coccodrillo, io non frequento salotti chic.\nSono orgoglioso perch\u00e9 abbiamo cominciato a smontare la legge che porta il suo nome. #STOPFORNERO", "post_text": "\"Salvini NEOFASCISTA, rozzo, aggressivo\".\nE basta???\nSono lieto di non piacerle, viste le differenze tra me e lei: io sono stato eletto e non nominato, io non ho rovinato migliaia di famiglie italiane, io non\u2026 Altro verso lacrime di coccodrillo, io non frequento salotti chic.\nSono orgoglioso perch\u00e9 abbiamo cominciato a smontare la legge che porta il suo nome. #STOPFORNERO", "shared_text": "", "time": "2018-10-20 11:01:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=309308609660871&id=252306033154", "link": null} +{"post_id": "329784577580758", "text": "Amiche e Amici del Trentino, finalmente QUESTA DOMENICA potete cambiare la storia!\nDopo decenni di governi della sinistra, che hanno chiuso ospedali, assunto amici, parenti, e conoscenti, finalmente si cambia!\u2026 Altro\nD\u2019ora in poi a Trento e provincia si lavorer\u00e0 per merito, non per raccomandazione.\nPi\u00f9 sicurezza, pi\u00f9 investimenti, pi\u00f9 autonomia. La Lega c\u2019\u00e8!\n#domenicavotoLega #FugattiPresidente", "post_text": "Amiche e Amici del Trentino, finalmente QUESTA DOMENICA potete cambiare la storia!\nDopo decenni di governi della sinistra, che hanno chiuso ospedali, assunto amici, parenti, e conoscenti, finalmente si cambia!\u2026 Altro\nD\u2019ora in poi a Trento e provincia si lavorer\u00e0 per merito, non per raccomandazione.\nPi\u00f9 sicurezza, pi\u00f9 investimenti, pi\u00f9 autonomia. La Lega c\u2019\u00e8!\n#domenicavotoLega #FugattiPresidente", "shared_text": "", "time": "2018-10-19 23:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=329784577580758&id=252306033154", "link": null} +{"post_id": "2059851767409328", "text": "Spettacolo a #Trento questa sera, grazie! Sono questi i migliori sondaggi!\nDomenica bastano 5 minuti del vostro tempo e anche qui mandiamo a casa la sinistra!\nPassaparola, sui social, via sms, via Whatsapp, via telefonata tradizionale o, meglio ancora, di persona!\n#domenicavotoLega", "post_text": "Spettacolo a #Trento questa sera, grazie! Sono questi i migliori sondaggi!\nDomenica bastano 5 minuti del vostro tempo e anche qui mandiamo a casa la sinistra!\nPassaparola, sui social, via sms, via Whatsapp, via telefonata tradizionale o, meglio ancora, di persona!\n#domenicavotoLega", "shared_text": "", "time": "2018-10-19 22:31:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2059851767409328&id=252306033154", "link": null} +{"post_id": "328444874583566", "text": "In diretta da Trento, state con noi!\n#domenicavotolega", "post_text": "In diretta da Trento, state con noi!\n#domenicavotolega", "shared_text": "", "time": "2018-10-19 20:45:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=328444874583566&id=252306033154", "link": null} +{"post_id": "720049255017873", "text": "Qui Mezzocorona, Trento. Grazie per il vostro sostegno!\nPer la prima volta da quando esiste la Provincia autonoma di Trento, domenica potrete fare una cosa incredibile: mandare a casa la sinistra, che ne ha combinate di cotte e di crude!\n#domenicavotolega", "post_text": "Qui Mezzocorona, Trento. Grazie per il vostro sostegno!\nPer la prima volta da quando esiste la Provincia autonoma di Trento, domenica potrete fare una cosa incredibile: mandare a casa la sinistra, che ne ha combinate di cotte e di crude!\n#domenicavotolega", "shared_text": "", "time": "2018-10-19 14:21:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=720049255017873&id=252306033154", "link": null} +{"post_id": "401445410391470", "text": "Diretta da Cles, nello splendido Trentino.\nSeguitemi! #domenicavotoLega", "post_text": "Diretta da Cles, nello splendido Trentino.\nSeguitemi! #domenicavotoLega", "shared_text": "", "time": "2018-10-19 11:38:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=401445410391470&id=252306033154", "link": null} +{"post_id": "318813322254258", "text": "Le polemiche non servono a nulla. Gli italiani vogliono che andiamo avanti!", "post_text": "Le polemiche non servono a nulla. Gli italiani vogliono che andiamo avanti!", "shared_text": "", "time": "2018-10-18 22:46:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=318813322254258&id=252306033154", "link": null} +{"post_id": "2276385665918766", "text": "In diretta dalla splendida Bolzano, seguitemi!\n#domenicavotoLega", "post_text": "In diretta dalla splendida Bolzano, seguitemi!\n#domenicavotoLega", "shared_text": "", "time": "2018-10-18 18:30:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2276385665918766&id=252306033154", "link": null} +{"post_id": "1897561450327563", "text": "Dalla manovra economica alla vergogna francese di Claviere fino ai poveretti che augurano di vedermi \u201ca testa in gi\u00f9\u201d.\nNell\u2019intervista di Stasera Italia ho parlato un po' di tutto.\nSe avete 3 minuti ve la consiglio!", "post_text": "Dalla manovra economica alla vergogna francese di Claviere fino ai poveretti che augurano di vedermi \u201ca testa in gi\u00f9\u201d.\nNell\u2019intervista di Stasera Italia ho parlato un po' di tutto.\nSe avete 3 minuti ve la consiglio!", "shared_text": "", "time": "2018-10-17 20:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1897561450327563&id=252306033154", "link": null} +{"post_id": "324625675018289", "text": "Adesso in conferenza stampa, sempre in diretta da Mosca. Seguitemi!", "post_text": "Adesso in conferenza stampa, sempre in diretta da Mosca. Seguitemi!", "shared_text": "", "time": "2018-10-17 17:24:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=324625675018289&id=252306033154", "link": null} +{"post_id": "1990475840990135", "text": "Ancora in diretta con voi da Mosca, domande e risposte con gli imprenditori italiani.", "post_text": "Ancora in diretta con voi da Mosca, domande e risposte con gli imprenditori italiani.", "shared_text": "", "time": "2018-10-17 17:08:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1990475840990135&id=252306033154", "link": null} +{"post_id": "313226132810940", "text": "Ora a Mosca all\u2019Assemblea generale di Confindustria Russia. Seguitemi in diretta!", "post_text": "Ora a Mosca all\u2019Assemblea generale di Confindustria Russia. Seguitemi in diretta!", "shared_text": "", "time": "2018-10-17 16:53:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=313226132810940&id=252306033154", "link": null} +{"post_id": "352976735247006", "text": "A Spoleto ho partecipato alla cerimonia di giuramento di 109 allievi agenti della Polizia di Stato. Emozionato e onorato.\nMa i ringraziamenti non bastano.\nMi sono impegnato con le unghie e con i denti fino a\u2026 Altro ieri notte per inserire nella manovra alcune centinaia di milioni di euro che serviranno per assumere 10 MILA uomini e donne nelle Forze dell'ordine.\nMENO SOLDI per la gestione dell'immigrazione, PI\u00d9 SOLDI per la sicurezza! Questo \u00e8 il mio modo di fare il Ministro.", "post_text": "A Spoleto ho partecipato alla cerimonia di giuramento di 109 allievi agenti della Polizia di Stato. Emozionato e onorato.\nMa i ringraziamenti non bastano.\nMi sono impegnato con le unghie e con i denti fino a\u2026 Altro ieri notte per inserire nella manovra alcune centinaia di milioni di euro che serviranno per assumere 10 MILA uomini e donne nelle Forze dell'ordine.\nMENO SOLDI per la gestione dell'immigrazione, PI\u00d9 SOLDI per la sicurezza! Questo \u00e8 il mio modo di fare il Ministro.", "shared_text": "", "time": "2018-10-16 22:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=352976735247006&id=252306033154", "link": null} +{"post_id": "307285479866447", "text": "Ma dove erano i geniali professoroni-soloni, che adesso hanno tutte le soluzioni in tasca, negli ultimi dieci, venti, trenta, quarant'anni???", "post_text": "Ma dove erano i geniali professoroni-soloni, che adesso hanno tutte le soluzioni in tasca, negli ultimi dieci, venti, trenta, quarant'anni???", "shared_text": "", "time": "2018-10-16 20:55:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=307285479866447&id=252306033154", "link": null} +{"post_id": "710265779355544", "text": "Qui Spoleto.\nSeguitemi in diretta dalla cerimonia di giuramento del 200esimo corso Allievi Agenti della Polizia di Stato!", "post_text": "Qui Spoleto.\nSeguitemi in diretta dalla cerimonia di giuramento del 200esimo corso Allievi Agenti della Polizia di Stato!", "shared_text": "", "time": "2018-10-16 15:18:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=710265779355544&id=252306033154", "link": null} +{"post_id": "360791307990449", "text": "L\u2019affetto e il sostegno che ho trovato nei tanti incontri in giro per la provincia di Bolzano mi hanno fatto capire che anche qui c\u2019\u00e8 voglia di sicurezza, di difesa dei confini, di tranquillit\u00e0 e di\u2026 Altro cambiamento.\nGli occhi dell\u2019Europa sono puntati sul voto di questa domenica, la Lega si candida a garantire l\u2019autonomia e il benessere di questa splendida Comunit\u00e0 contro la prepotenza di Bruxelles.\nA Bolzano, come a Trento, STOP PD!\nConto su di voi!\n#domenicavotoLega\nP.s. Gioved\u00ec sera torno a Bolzano, troverete presto i dettagli nella sezione Eventi.", "post_text": "L\u2019affetto e il sostegno che ho trovato nei tanti incontri in giro per la provincia di Bolzano mi hanno fatto capire che anche qui c\u2019\u00e8 voglia di sicurezza, di difesa dei confini, di tranquillit\u00e0 e di\u2026 Altro cambiamento.\nGli occhi dell\u2019Europa sono puntati sul voto di questa domenica, la Lega si candida a garantire l\u2019autonomia e il benessere di questa splendida Comunit\u00e0 contro la prepotenza di Bruxelles.\nA Bolzano, come a Trento, STOP PD!\nConto su di voi!\n#domenicavotoLega\nP.s. Gioved\u00ec sera torno a Bolzano, troverete presto i dettagli nella sezione Eventi.", "shared_text": "", "time": "2018-10-16 12:30:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=360791307990449&id=252306033154", "link": null} +{"post_id": "107229940218085", "text": "In diretta da Roma il mio intervento all\u2019assemblea dell\u2019Associazione Nazionale Costruttori Edili. State con me!", "post_text": "In diretta da Roma il mio intervento all\u2019assemblea dell\u2019Associazione Nazionale Costruttori Edili. State con me!", "shared_text": "", "time": "2018-10-16 11:37:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=107229940218085&id=252306033154", "link": null} +{"post_id": "924423124416959", "text": "Stanco ma estremamente soddisfatto. Non moltiplichiamo pani e pesci ma certamente la nostra manovra economica render\u00e0 migliore la vita degli italiani. Dopo 137 giorni di questo governo, onore e onere, sono contento degli impegni fin qui mantenuti. E non molleremo!", "post_text": "Stanco ma estremamente soddisfatto. Non moltiplichiamo pani e pesci ma certamente la nostra manovra economica render\u00e0 migliore la vita degli italiani. Dopo 137 giorni di questo governo, onore e onere, sono contento degli impegni fin qui mantenuti. E non molleremo!", "shared_text": "", "time": "2018-10-15 22:46:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=924423124416959&id=252306033154", "link": null} +{"post_id": "275339819773436", "text": "In diretta da Monza, all\u2019Assemblea della Confederazione dell\u2019Industria Manifatturiera Italiana e dell\u2019Impresa Privata.", "post_text": "In diretta da Monza, all\u2019Assemblea della Confederazione dell\u2019Industria Manifatturiera Italiana e dell\u2019Impresa Privata.", "shared_text": "", "time": "2018-10-15 11:16:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=275339819773436&id=252306033154", "link": null} +{"post_id": "326928944793188", "text": "\ud83d\udd34Questo non lo vedrete nei tig\u00ec, facciamo girare!\nOnore a questa capotreno che, in Sardegna, fa scendere un gruppo di scrocconi!\nIl clima \u00e8 cambiato, #tolleranzazero con i furbetti, anche con un uso massiccio delle Forze dell\u2019ordine.\nSe vuoi viaggiare, PAGHI come tutti i cittadini perbene!", "post_text": "\ud83d\udd34Questo non lo vedrete nei tig\u00ec, facciamo girare!\nOnore a questa capotreno che, in Sardegna, fa scendere un gruppo di scrocconi!\nIl clima \u00e8 cambiato, #tolleranzazero con i furbetti, anche con un uso massiccio delle Forze dell\u2019ordine.\nSe vuoi viaggiare, PAGHI come tutti i cittadini perbene!", "shared_text": "", "time": "2018-10-14 19:33:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=326928944793188&id=252306033154", "link": null} +{"post_id": "1097054463779188", "text": "Conto di ritornare a Bolzano da Ministro restituendo tutti i quartieri della citt\u00e0 alla gente perbene.\nNon \u00e8 possibile aver paura ad uscire la sera con il cagnolino o a prendere l'autobus o il treno.\nGli\u2026 Altro immigrati integrati e perbene sono miei fratelli, i finti profughi che spacciano e delinquono vanno spediti a casa loro.\n#domenicavotolega", "post_text": "Conto di ritornare a Bolzano da Ministro restituendo tutti i quartieri della citt\u00e0 alla gente perbene.\nNon \u00e8 possibile aver paura ad uscire la sera con il cagnolino o a prendere l'autobus o il treno.\nGli\u2026 Altro immigrati integrati e perbene sono miei fratelli, i finti profughi che spacciano e delinquono vanno spediti a casa loro.\n#domenicavotolega", "shared_text": "", "time": "2018-10-14 17:48:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1097054463779188&id=252306033154", "link": null} +{"post_id": "2158619787533536", "text": "Poco fa per le vie di Bressanone (Bolzano). Che spettacolo!\n#domenicavotolega", "post_text": "Poco fa per le vie di Bressanone (Bolzano). Che spettacolo!\n#domenicavotolega", "shared_text": "", "time": "2018-10-14 16:39:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2158619787533536&id=252306033154", "link": null} +{"post_id": "328636824594509", "text": "Qui nella splendida Laives, comizio improvvisato su una seggiola, i palchi sontuosi li lasciamo alla Boschi e al PD. \ud83d\ude04\nSi parte con il tour nella provincia di Bolzano.\nMa quanti siete? State con noi!\n#domenicavotolega", "post_text": "Qui nella splendida Laives, comizio improvvisato su una seggiola, i palchi sontuosi li lasciamo alla Boschi e al PD. \ud83d\ude04\nSi parte con il tour nella provincia di Bolzano.\nMa quanti siete? State con noi!\n#domenicavotolega", "shared_text": "", "time": "2018-10-14 10:56:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=328636824594509&id=252306033154", "link": null} +{"post_id": "258807944838492", "text": "In collegamento da Laives, in provincia di Bolzano, con la Scuola di formazione politica della Lega, un\u2019esperienza straordinaria di formazione, incontro di idee e di progetti, arrivata alla sua quarta edizione, che tanti ci invidiano e che ci ha accompagnato dall\u2019opposizione al governo del Paese. State con noi!", "post_text": "In collegamento da Laives, in provincia di Bolzano, con la Scuola di formazione politica della Lega, un\u2019esperienza straordinaria di formazione, incontro di idee e di progetti, arrivata alla sua quarta edizione, che tanti ci invidiano e che ci ha accompagnato dall\u2019opposizione al governo del Paese. State con noi!", "shared_text": "", "time": "2018-10-14 10:02:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=258807944838492&id=252306033154", "link": null} +{"post_id": "1076357029209464", "text": "Ultima tappa di questa splendida giornata Trentina, ad Ala (Trento).\nState con me!\n#21ottobrevotoLega", "post_text": "Ultima tappa di questa splendida giornata Trentina, ad Ala (Trento).\nState con me!\n#21ottobrevotoLega", "shared_text": "", "time": "2018-10-13 22:07:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1076357029209464&id=252306033154", "link": null} +{"post_id": "314749862643950", "text": "Altra tappa trentina a Pergine Valsugana, guardate che spettacolo!!!\nA chi la dedichiamo questa piazza???\n#21ottobrevotoLega", "post_text": "Altra tappa trentina a Pergine Valsugana, guardate che spettacolo!!!\nA chi la dedichiamo questa piazza???\n#21ottobrevotoLega", "shared_text": "", "time": "2018-10-13 20:26:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=314749862643950&id=252306033154", "link": null} +{"post_id": "1153170138174817", "text": "Ora in diretta da Borgo Valsugana (Trento), seguitemi!\n#21ottobrevotoLega", "post_text": "Ora in diretta da Borgo Valsugana (Trento), seguitemi!\n#21ottobrevotoLega", "shared_text": "", "time": "2018-10-13 19:05:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1153170138174817&id=252306033154", "link": null} +{"post_id": "1201074223364851", "text": "Grazie Aldeno (Trento)! I sondaggi veri, tra la gente, sono quelli che contano.\nChi si ferma \u00e8 perduto! #21ottobrevotoLega", "post_text": "Grazie Aldeno (Trento)! I sondaggi veri, tra la gente, sono quelli che contano.\nChi si ferma \u00e8 perduto! #21ottobrevotoLega", "shared_text": "", "time": "2018-10-13 16:40:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1201074223364851&id=252306033154", "link": null} +{"post_id": "1820005288106799", "text": "La mia intervista di stamattina a Radio Radicale. Le ricette imposte dall'Europa e dai governi Monti, Letta, Renzi e Gentiloni hanno aumentato il debito pubblico e impoverito e precarizzato l'Italia.\nNoi faremo esattamente il contrario.\n#primagliitaliani", "post_text": "La mia intervista di stamattina a Radio Radicale. Le ricette imposte dall'Europa e dai governi Monti, Letta, Renzi e Gentiloni hanno aumentato il debito pubblico e impoverito e precarizzato l'Italia.\nNoi faremo esattamente il contrario.\n#primagliitaliani", "shared_text": "", "time": "2018-10-11 16:00:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1820005288106799&id=252306033154", "link": null} +{"post_id": "311876909611156", "text": "Lavoro, tasse, pensioni, sicurezza: burocrati e professoroni contro il governo ma noi tiriamo dritto! #primagliitaliani\nIn diretta dai tetti di Roma.", "post_text": "Lavoro, tasse, pensioni, sicurezza: burocrati e professoroni contro il governo ma noi tiriamo dritto! #primagliitaliani\nIn diretta dai tetti di Roma.", "shared_text": "", "time": "2018-10-11 13:45:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=311876909611156&id=252306033154", "link": null} +{"post_id": "337303103500118", "text": "In attesa di pagarci le pensioni... ecco l'opinionista del giorno\ud83e\udd14", "post_text": "In attesa di pagarci le pensioni... ecco l'opinionista del giorno\ud83e\udd14", "shared_text": "", "time": "2018-10-10 21:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=337303103500118&id=252306033154", "link": null} +{"post_id": "270966707085700", "text": "Esercitazione Nocs, live da Roma!", "post_text": "Esercitazione Nocs, live da Roma!", "shared_text": "", "time": "2018-10-10 11:24:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=270966707085700&id=252306033154", "link": null} +{"post_id": "296206254313311", "text": "In diretta da Roma, al 40\u00b0 anniversario del Nucleo Operativo Centrale Sicurezza.", "post_text": "In diretta da Roma, al 40\u00b0 anniversario del Nucleo Operativo Centrale Sicurezza.", "shared_text": "", "time": "2018-10-10 11:01:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=296206254313311&id=252306033154", "link": null} +{"post_id": "310066959793689", "text": "In 1 minuto: meno spread, pi\u00f9 lavoro vero.\nCos\u00ec come stiamo cambiando l'Italia lavoreremo per cambiare l'Europa.\nIo ci sono, e voi?", "post_text": "In 1 minuto: meno spread, pi\u00f9 lavoro vero.\nCos\u00ec come stiamo cambiando l'Italia lavoreremo per cambiare l'Europa.\nIo ci sono, e voi?", "shared_text": "", "time": "2018-10-09 20:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=310066959793689&id=252306033154", "link": null} +{"post_id": "536322216809573", "text": "Ora da Lione in conferenza stampa dopo gli incontri al #G6Lyon. Seguitemi!", "post_text": "Ora da Lione in conferenza stampa dopo gli incontri al #G6Lyon. Seguitemi!", "shared_text": "", "time": "2018-10-09 14:48:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=536322216809573&id=252306033154", "link": null} +{"post_id": "886980874832250", "text": "Ieri sera su Rete 4 Marine Le Pen contro... Bersani, che cita Prodi come esempio (\ud83d\ude31) e parla di \"migrazioni inevitabili\"...\nA me \u00e8 piaciuta molto, ve la consiglio.", "post_text": "Ieri sera su Rete 4 Marine Le Pen contro... Bersani, che cita Prodi come esempio (\ud83d\ude31) e parla di \"migrazioni inevitabili\"...\nA me \u00e8 piaciuta molto, ve la consiglio.", "shared_text": "", "time": "2018-10-09 13:30:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=886980874832250&id=252306033154", "link": null} +{"post_id": "335726770323374", "text": "I consigli e le critiche costruttive li accetto volentieri, gli insulti no, soprattutto se vengono da chi dovrebbe rappresentare 500 milioni di europei e avere l'obiettivo di portare tra i popoli armonia, non scontro sociale e insicurezza.\nIo non mi fermo e vado avanti, spedito come un treno.", "post_text": "I consigli e le critiche costruttive li accetto volentieri, gli insulti no, soprattutto se vengono da chi dovrebbe rappresentare 500 milioni di europei e avere l'obiettivo di portare tra i popoli armonia, non scontro sociale e insicurezza.\nIo non mi fermo e vado avanti, spedito come un treno.", "shared_text": "", "time": "2018-10-09 12:38:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=335726770323374&id=252306033154", "link": null} +{"post_id": "312447342888484", "text": "Accidenti, dopo gli insulti di questo illustre personaggio non so se questa sera riuscir\u00f2 a dormire... Ma quanto rosicano a sinistra?\nBacioni anche a lui \ud83d\ude18", "post_text": "Accidenti, dopo gli insulti di questo illustre personaggio non so se questa sera riuscir\u00f2 a dormire... Ma quanto rosicano a sinistra?\nBacioni anche a lui \ud83d\ude18", "shared_text": "", "time": "2018-10-07 10:31:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=312447342888484&id=252306033154", "link": null} +{"post_id": "176106026627905", "text": "Ascoltare le storie e i problemi di vita vera, accettare i complimenti, i consigli ma anche le critiche, condividere un sorriso, un selfie o anche una semplice stretta di mano.\nQuesti sono i sondaggi che preferisco!\nGRAZIE, il vostro entusiasmo \u00e8 la mia forza quotidiana.\nChi si ferma \u00e8 perduto!", "post_text": "Ascoltare le storie e i problemi di vita vera, accettare i complimenti, i consigli ma anche le critiche, condividere un sorriso, un selfie o anche una semplice stretta di mano.\nQuesti sono i sondaggi che preferisco!\nGRAZIE, il vostro entusiasmo \u00e8 la mia forza quotidiana.\nChi si ferma \u00e8 perduto!", "shared_text": "", "time": "2018-10-06 09:00:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=176106026627905&id=252306033154", "link": null} +{"post_id": "269622770344043", "text": "In 2 minuti, alcuni dei miei interventi a W l\u2019Italia su sicurezza, immigrazione, crescita in Italia e in Africa.\nChe dite, sono stato abbastanza chiaro?", "post_text": "In 2 minuti, alcuni dei miei interventi a W l\u2019Italia su sicurezza, immigrazione, crescita in Italia e in Africa.\nChe dite, sono stato abbastanza chiaro?", "shared_text": "", "time": "2018-10-05 22:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=269622770344043&id=252306033154", "link": null} +{"post_id": "2153202141588609", "text": "Oggi i soliti centri a-sociali hanno deciso di imbrattare il centro di Milano, dandomi della \u201cmerda\u201d e prendendosela con il decreto Scuole Sicure perch\u00e9, secondo uno di loro, con i poliziotti antidroga stiamo\u2026 Altro \u201callontanando dalle scuole i ragazzi problematici, aumentando le situazioni di marginalit\u00e0\u201d.\nMa questi ci sono o ci fanno???\ud83d\ude31", "post_text": "Oggi i soliti centri a-sociali hanno deciso di imbrattare il centro di Milano, dandomi della \u201cmerda\u201d e prendendosela con il decreto Scuole Sicure perch\u00e9, secondo uno di loro, con i poliziotti antidroga stiamo\u2026 Altro \u201callontanando dalle scuole i ragazzi problematici, aumentando le situazioni di marginalit\u00e0\u201d.\nMa questi ci sono o ci fanno???\ud83d\ude31", "shared_text": "", "time": "2018-10-05 21:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2153202141588609&id=252306033154", "link": null} +{"post_id": "315061162378969", "text": "\u2705STOP LEGGE FORNERO da inizio 2019, senza penalizzazioni, senza paletti, senza limiti, senza tetto al reddito, permettendo a 400mila persone di andare in pensione e tornare alla vita, liberando altrettanti\u2026 Altro posti di lavoro.\n\u2705FLAT TAX con aliquota al 15% per almeno un milione tra partite Iva, autonomi, professionisti, piccoli imprenditori accompagnata da un pesante sconto fiscale per chi reinvestir\u00e0 gli utili in assunzioni, ricerca e macchinari.\n\u2705PIANO STRAORDINARIO, senza precedenti in Italia, di ASSUNZIONI per 10.000 donne e uomini delle Forze dell'Ordine.\nAvanti tutta, #dalleparoleaifatti!", "post_text": "\u2705STOP LEGGE FORNERO da inizio 2019, senza penalizzazioni, senza paletti, senza limiti, senza tetto al reddito, permettendo a 400mila persone di andare in pensione e tornare alla vita, liberando altrettanti\u2026 Altro posti di lavoro.\n\u2705FLAT TAX con aliquota al 15% per almeno un milione tra partite Iva, autonomi, professionisti, piccoli imprenditori accompagnata da un pesante sconto fiscale per chi reinvestir\u00e0 gli utili in assunzioni, ricerca e macchinari.\n\u2705PIANO STRAORDINARIO, senza precedenti in Italia, di ASSUNZIONI per 10.000 donne e uomini delle Forze dell'Ordine.\nAvanti tutta, #dalleparoleaifatti!", "shared_text": "", "time": "2018-10-05 09:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=315061162378969&id=252306033154", "link": null} +{"post_id": "1708270519299319", "text": "Una bella novit\u00e0, ascoltate bene!\nUna nave organizzata dai centri sociali (!) vagher\u00e0 per il Mediterraneo alla ricerca di immigrati da sbarcare sulle nostre coste...\nFacciano quello che vogliono, vadano dove vogliono ma per loro in Italia... nisba! \ud83d\ude18", "post_text": "Una bella novit\u00e0, ascoltate bene!\nUna nave organizzata dai centri sociali (!) vagher\u00e0 per il Mediterraneo alla ricerca di immigrati da sbarcare sulle nostre coste...\nFacciano quello che vogliono, vadano dove vogliono ma per loro in Italia... nisba! \ud83d\ude18", "shared_text": "", "time": "2018-10-04 19:32:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1708270519299319&id=252306033154", "link": null} +{"post_id": "333307963896226", "text": "La camorra \u00e8 violenza, ignoranza, povert\u00e0 culturale.\nLa combatteremo attraverso tutti i mezzi possibili, facendo sentire ogni singolo camorrista per lo SCHIFO che \u00e8.", "post_text": "La camorra \u00e8 violenza, ignoranza, povert\u00e0 culturale.\nLa combatteremo attraverso tutti i mezzi possibili, facendo sentire ogni singolo camorrista per lo SCHIFO che \u00e8.", "shared_text": "", "time": "2018-10-04 18:32:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=333307963896226&id=252306033154", "link": null} +{"post_id": "356449388261900", "text": "Decreto Sicurezza e Immigrazione, ci siamo!!!\n#DecretoSalvini", "post_text": "Decreto Sicurezza e Immigrazione, ci siamo!!!\n#DecretoSalvini", "shared_text": "", "time": "2018-10-04 15:49:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=356449388261900&id=252306033154", "link": null} +{"post_id": "304728713642802", "text": "Il mio intervento di oggi su Canale 5, con un pensiero speciale a Juncker... \ud83d\ude0a", "post_text": "Il mio intervento di oggi su Canale 5, con un pensiero speciale a Juncker... \ud83d\ude0a", "shared_text": "", "time": "2018-10-03 13:30:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=304728713642802&id=252306033154", "link": null} +{"post_id": "2226919790886485", "text": "Cancellate il decreto o cancelliamo Salvini!\".\nE secondo la sinistra quello che sparge odio sarei io... \ud83d\ude1e\nQuando si \u00e8 ospiti (si spera regolari) di un Paese straniero, bisognerebbe entrare in punta di piedi e rispettare cultura, leggi e istituzioni. O no?", "post_text": "Cancellate il decreto o cancelliamo Salvini!\".\nE secondo la sinistra quello che sparge odio sarei io... \ud83d\ude1e\nQuando si \u00e8 ospiti (si spera regolari) di un Paese straniero, bisognerebbe entrare in punta di piedi e rispettare cultura, leggi e istituzioni. O no?", "shared_text": "", "time": "2018-10-03 12:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2226919790886485&id=252306033154", "link": null} +{"post_id": "692523041147581", "text": "Ragazzi incontrati ieri a Napoli per un selfie: \"Salvini \u00e8 un buon ministro!\".\nGrazie! \ud83d\ude0a\nA qualcuno questo video andr\u00e0 di traverso...", "post_text": "Ragazzi incontrati ieri a Napoli per un selfie: \"Salvini \u00e8 un buon ministro!\".\nGrazie! \ud83d\ude0a\nA qualcuno questo video andr\u00e0 di traverso...", "shared_text": "", "time": "2018-10-03 08:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=692523041147581&id=252306033154", "link": null} +{"post_id": "1881587231955060", "text": "In diretta da Napoli dove ho presieduto il Comitato per l\u2019ordine e la sicurezza pubblica, ci seguite?\n[Diretta di Giornale Tabl\u00f2]", "post_text": "In diretta da Napoli dove ho presieduto il Comitato per l\u2019ordine e la sicurezza pubblica, ci seguite?\n[Diretta di Giornale Tabl\u00f2]", "shared_text": "", "time": "2018-10-02 12:41:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1881587231955060&id=252306033154", "link": null} +{"post_id": "1893689914273918", "text": "Sempre in diretta da Genova.", "post_text": "Sempre in diretta da Genova.", "shared_text": "", "time": "2018-10-01 11:19:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1893689914273918&id=252306033154", "link": null} +{"post_id": "321974431900755", "text": "In diretta dall\u2019inaugurazione del distaccamento dei Vigili del Fuoco di Genova Est.", "post_text": "In diretta dall\u2019inaugurazione del distaccamento dei Vigili del Fuoco di Genova Est.", "shared_text": "", "time": "2018-10-01 11:05:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=321974431900755&id=252306033154", "link": null} +{"post_id": "284841162351701", "text": "In diretta da Ostia (Roma) per la sfilata in occasione del 50\u00ba anniversario dell\u2019Associazione nazionale Polizia di Stato. Interverr\u00f2 anche io, con grande orgoglio per i nostri uomini e donne in divisa. State con noi!", "post_text": "In diretta da Ostia (Roma) per la sfilata in occasione del 50\u00ba anniversario dell\u2019Associazione nazionale Polizia di Stato. Interverr\u00f2 anche io, con grande orgoglio per i nostri uomini e donne in divisa. State con noi!", "shared_text": "", "time": "2018-09-30 10:57:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=284841162351701&id=252306033154", "link": null} +{"post_id": "335584537191844", "text": "Grazie Latina, che spettacolo, queste sono le mie ricompense pi\u00f9 belle!\nOrgoglioso di aver indossato questa sera la maglia della Polizia di Stato nel giorno del suo Patrono, San Michele Arcangelo, orgoglioso\u2026 Altro che il nostro governo abbia previsto un piano di assunzione di 10mila uomini e donne delle Forze dell\u2019Ordine, come non si vedeva da anni.\nVoglio lasciare ai miei figli un Paese pi\u00fa sicuro, l\u2019ho detto e lo faccio.\nIo non mollo!", "post_text": "Grazie Latina, che spettacolo, queste sono le mie ricompense pi\u00f9 belle!\nOrgoglioso di aver indossato questa sera la maglia della Polizia di Stato nel giorno del suo Patrono, San Michele Arcangelo, orgoglioso\u2026 Altro che il nostro governo abbia previsto un piano di assunzione di 10mila uomini e donne delle Forze dell\u2019Ordine, come non si vedeva da anni.\nVoglio lasciare ai miei figli un Paese pi\u00fa sicuro, l\u2019ho detto e lo faccio.\nIo non mollo!", "shared_text": "", "time": "2018-09-29 22:00:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=335584537191844&id=252306033154", "link": null} +{"post_id": "334617093765548", "text": "In diretta da Latina!", "post_text": "In diretta da Latina!", "shared_text": "", "time": "2018-09-29 20:30:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=334617093765548&id=252306033154", "link": null} +{"post_id": "250131362353144", "text": "In diretta dalla Giornata mondiale del sordo, a Roma. Seguitemi!", "post_text": "In diretta dalla Giornata mondiale del sordo, a Roma. Seguitemi!", "shared_text": "", "time": "2018-09-29 17:22:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=250131362353144&id=252306033154", "link": null} +{"post_id": "2350544654961310", "text": "La madre, alla notizia dell\u2019arresto, ha detto: \u201cSe \u00e8 stato lui fatelo soffrire\u201d.\nSono d\u2019accordo.\nPunizione esemplare, per lui e i suoi schifosi compagni criminali, meglio se in Romania.", "post_text": "La madre, alla notizia dell\u2019arresto, ha detto: \u201cSe \u00e8 stato lui fatelo soffrire\u201d.\nSono d\u2019accordo.\nPunizione esemplare, per lui e i suoi schifosi compagni criminali, meglio se in Romania.", "shared_text": "", "time": "2018-09-28 14:46:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2350544654961310&id=252306033154", "link": null} +{"post_id": "1122560007869184", "text": "Abbattuta l\u2019ex scuola Monteverdi di Marghera, a Venezia: era ricettacolo di sbandati e delinquenti.\nIl Ministero dell\u2019Interno ha gi\u00e0 un accordo col Comune: al suo posto sorger\u00e0 la nuova questura.\n\u00c8 un\u2019altra ottima notizia! \ud83d\ude03", "post_text": "Abbattuta l\u2019ex scuola Monteverdi di Marghera, a Venezia: era ricettacolo di sbandati e delinquenti.\nIl Ministero dell\u2019Interno ha gi\u00e0 un accordo col Comune: al suo posto sorger\u00e0 la nuova questura.\n\u00c8 un\u2019altra ottima notizia! \ud83d\ude03", "shared_text": "", "time": "2018-09-28 11:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1122560007869184&id=252306033154", "link": null} +{"post_id": "283333475611884", "text": "Tunisi, conferenza stampa in diretta dal ministero dell\u2019Interno con il collega tunisino.", "post_text": "Tunisi, conferenza stampa in diretta dal ministero dell\u2019Interno con il collega tunisino.", "shared_text": "", "time": "2018-09-27 13:01:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=283333475611884&id=252306033154", "link": null} +{"post_id": "316555482438299", "text": "Live da Tunisi al Ministero dell\u2019Interno.", "post_text": "Live da Tunisi al Ministero dell\u2019Interno.", "shared_text": "", "time": "2018-09-27 11:58:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=316555482438299&id=252306033154", "link": null} +{"post_id": "317330665712068", "text": "GRAZIE ai nostri eroici Vigili del Fuoco che con la loro professionalit\u00e0 e rapidit\u00e0 di intervento hanno scongiurato danni alle persone e limitato i danni alle abitazioni in provincia di Pisa.\nPi\u00f9 di 200 unit\u00e0,\u2026 Altro compresi i volontari, 4 Canadair, 2 elicotteri Erickson S64, sono in azione per spegnere le fiamme, mettere in sicurezza la zona e consentire ai 700 sfollati di tornare al pi\u00f9 presto nelle loro case.", "post_text": "GRAZIE ai nostri eroici Vigili del Fuoco che con la loro professionalit\u00e0 e rapidit\u00e0 di intervento hanno scongiurato danni alle persone e limitato i danni alle abitazioni in provincia di Pisa.\nPi\u00f9 di 200 unit\u00e0,\u2026 Altro compresi i volontari, 4 Canadair, 2 elicotteri Erickson S64, sono in azione per spegnere le fiamme, mettere in sicurezza la zona e consentire ai 700 sfollati di tornare al pi\u00f9 presto nelle loro case.", "shared_text": "", "time": "2018-09-26 12:06:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=317330665712068&id=252306033154", "link": null} +{"post_id": "684324491945775", "text": "Ieri sera da Porro su Rete 4 ho spiegato il nuovo #DecretoSalvini in tutti i dettagli.\nAiutatemi a condividere in rete!", "post_text": "Ieri sera da Porro su Rete 4 ho spiegato il nuovo #DecretoSalvini in tutti i dettagli.\nAiutatemi a condividere in rete!", "shared_text": "", "time": "2018-09-25 13:01:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=684324491945775&id=252306033154", "link": null} +{"post_id": "1019704961487712", "text": "In diretta da Roma, Palazzo Chigi, \u00e8 nato il #DecretoSalvini Sicurezza e Immigrazione, ve ne parlo!", "post_text": "In diretta da Roma, Palazzo Chigi, \u00e8 nato il #DecretoSalvini Sicurezza e Immigrazione, ve ne parlo!", "shared_text": "", "time": "2018-09-24 13:07:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1019704961487712&id=252306033154", "link": null} +{"post_id": "1063575070472610", "text": "Se volete vedere o rivedere il mio intervento di ieri sera da Giletti, eccolo! Commento libero!", "post_text": "Se volete vedere o rivedere il mio intervento di ieri sera da Giletti, eccolo! Commento libero!", "shared_text": "", "time": "2018-09-24 12:08:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1063575070472610&id=252306033154", "link": null} +{"post_id": "280091419269350", "text": "Ora in diretta insieme a voi da Pradamano (Udine). Ma quanti siete???", "post_text": "Ora in diretta insieme a voi da Pradamano (Udine). Ma quanti siete???", "shared_text": "", "time": "2018-09-23 21:52:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=280091419269350&id=252306033154", "link": null} +{"post_id": "935012586697777", "text": "A Matera arrestato un nigeriano che prende a bastonate un\u2019impalcatura, un\u2019auto e, non contento, aggredisce gli uomini di Polizia. Siamo alla follia...\nOgni giorno i nostri agenti rischiano la vita per far\u2026 Altro fronte a DELINQUENTI come lui e per questo vanno tutelati.\nCon il Decreto sulla sicurezza vogliamo estendere l\u2019utilizzo dei TASER anche ai poliziotti municipali nei comuni con pi\u00f9 di 100mila abitanti.\nSempre dalla parte delle Forze dell\u2019Ordine!", "post_text": "A Matera arrestato un nigeriano che prende a bastonate un\u2019impalcatura, un\u2019auto e, non contento, aggredisce gli uomini di Polizia. Siamo alla follia...\nOgni giorno i nostri agenti rischiano la vita per far\u2026 Altro fronte a DELINQUENTI come lui e per questo vanno tutelati.\nCon il Decreto sulla sicurezza vogliamo estendere l\u2019utilizzo dei TASER anche ai poliziotti municipali nei comuni con pi\u00f9 di 100mila abitanti.\nSempre dalla parte delle Forze dell\u2019Ordine!", "shared_text": "", "time": "2018-09-22 19:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=935012586697777&id=252306033154", "link": null} +{"post_id": "565220700576952", "text": "RUSPA nel campo Rom ieri a Pisa.\nPer ora smantellati solo i capannoni vuoti, ma si sta gi\u00e0 lavorando per far sgomberare completamente l'accampamento entro pochi mesi.\nBene cos\u00ec! Che sia un comune, una regione o il Paese, dove governa la Lega si passa dalle parole ai FATTI!", "post_text": "RUSPA nel campo Rom ieri a Pisa.\nPer ora smantellati solo i capannoni vuoti, ma si sta gi\u00e0 lavorando per far sgomberare completamente l'accampamento entro pochi mesi.\nBene cos\u00ec! Che sia un comune, una regione o il Paese, dove governa la Lega si passa dalle parole ai FATTI!", "shared_text": "", "time": "2018-09-22 13:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=565220700576952&id=252306033154", "link": null} +{"post_id": "288356295129491", "text": "Genova \u00e8 una citt\u00e0 viva, ancora pi\u00f9 bella, che si apre al mondo e che ha voglia di correre.", "post_text": "Genova \u00e8 una citt\u00e0 viva, ancora pi\u00f9 bella, che si apre al mondo e che ha voglia di correre.", "shared_text": "", "time": "2018-09-22 11:02:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=288356295129491&id=252306033154", "link": null} +{"post_id": "537447276705158", "text": "Sul ponte di Genova c\u2019\u00e8 da fare bene e da fare in fretta, la citt\u00e0 ha bisogno di affetto, di presenza e di futuro.\nSe i dirigenti di Autostrade hanno un cuore, accoglieranno le scelte che verranno fatte senza andare a cercare cavilli e ricorsi vari.", "post_text": "Sul ponte di Genova c\u2019\u00e8 da fare bene e da fare in fretta, la citt\u00e0 ha bisogno di affetto, di presenza e di futuro.\nSe i dirigenti di Autostrade hanno un cuore, accoglieranno le scelte che verranno fatte senza andare a cercare cavilli e ricorsi vari.", "shared_text": "", "time": "2018-09-21 13:55:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=537447276705158&id=252306033154", "link": null} +{"post_id": "1680655708730526", "text": "Che tenerezza.", "post_text": "Che tenerezza.", "shared_text": "", "time": "2018-09-20 22:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1680655708730526&id=252306033154", "link": null} +{"post_id": "276677096389299", "text": "Come i nostri nonni che emigravano, uguale......\nDopo aver ridotto drasticamente gli sbarchi, a costo di farmi indagare in Italia e farmi insultare dagli ipocriti buonisti di mezzo mondo (comunque una\u2026 Altro medaglia!), nel #DecretoImmigrazione in arrivo ci saranno finalmente nuovi strumenti per espellere dall\u2019Italia questi delinquenti.\nIo non mollo! \ud83d\udcaa", "post_text": "Come i nostri nonni che emigravano, uguale......\nDopo aver ridotto drasticamente gli sbarchi, a costo di farmi indagare in Italia e farmi insultare dagli ipocriti buonisti di mezzo mondo (comunque una\u2026 Altro medaglia!), nel #DecretoImmigrazione in arrivo ci saranno finalmente nuovi strumenti per espellere dall\u2019Italia questi delinquenti.\nIo non mollo! \ud83d\udcaa", "shared_text": "", "time": "2018-09-20 21:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=276677096389299&id=252306033154", "link": null} +{"post_id": "328895617884512", "text": "La proposta della Lega prevede il sacrosanto diritto di difendersi all'interno della propria abitazione: se mi trovo in casa una persona armata e mascherata alle 3 di notte non sta a me capire se ha un'arma\u2026 Altro finta ho il diritto di difendermi senza se e senza ma.\nDisarmare e punire gli aggressori e difendere gli aggrediti.\nAnche per ladri e rapinatori, la pacchia \u00e8 finita!", "post_text": "La proposta della Lega prevede il sacrosanto diritto di difendersi all'interno della propria abitazione: se mi trovo in casa una persona armata e mascherata alle 3 di notte non sta a me capire se ha un'arma\u2026 Altro finta ho il diritto di difendermi senza se e senza ma.\nDisarmare e punire gli aggressori e difendere gli aggrediti.\nAnche per ladri e rapinatori, la pacchia \u00e8 finita!", "shared_text": "", "time": "2018-09-20 09:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=328895617884512&id=252306033154", "link": null} +{"post_id": "442096396196568", "text": "\u201cUno che ha fatto uno STUPRO ha quella faccia l\u00ec\u201d dice il ricco \u201cfotografo dei VIP\u201d.\nChe schifo, mi viene voglia di querelarlo ancora.\nSe questi sono gli \u201cintellettuali\u201d della sinistra......", "post_text": "\u201cUno che ha fatto uno STUPRO ha quella faccia l\u00ec\u201d dice il ricco \u201cfotografo dei VIP\u201d.\nChe schifo, mi viene voglia di querelarlo ancora.\nSe questi sono gli \u201cintellettuali\u201d della sinistra......", "shared_text": "", "time": "2018-09-19 22:27:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=442096396196568&id=252306033154", "link": null} +{"post_id": "2038858676145126", "text": "Questa mattina ho presentato al Viminale i risultati dell\u2019operazione #spiaggesicure che ha coinvolto 54 comuni e che ha permesso il sequestro di 340mila oggetti contraffatti (molti dei quali nocivi per la\u2026 Altro salute!!!).\nRingrazio le donne e gli uomini della Polizia di Stato, dei Carabinieri, della Guardia di Finanza e della Polizia locale dei tanti Comuni coinvolti per l\u2019ottimo lavoro.\n#dalleparoleaifatti", "post_text": "Questa mattina ho presentato al Viminale i risultati dell\u2019operazione #spiaggesicure che ha coinvolto 54 comuni e che ha permesso il sequestro di 340mila oggetti contraffatti (molti dei quali nocivi per la\u2026 Altro salute!!!).\nRingrazio le donne e gli uomini della Polizia di Stato, dei Carabinieri, della Guardia di Finanza e della Polizia locale dei tanti Comuni coinvolti per l\u2019ottimo lavoro.\n#dalleparoleaifatti", "shared_text": "", "time": "2018-09-19 18:48:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2038858676145126&id=252306033154", "link": null} +{"post_id": "1987479581380101", "text": "Amici, vi ripropongo il mio intervento di ieri sera da Floris, come vi sembra?", "post_text": "Amici, vi ripropongo il mio intervento di ieri sera da Floris, come vi sembra?", "shared_text": "", "time": "2018-09-19 13:00:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1987479581380101&id=252306033154", "link": null} +{"post_id": "433611740498973", "text": "Ora vi mostro quello che abbiamo recuperato grazie all\u2019operazione SPIAGGE SICURE.\nSeguitemi!", "post_text": "Ora vi mostro quello che abbiamo recuperato grazie all\u2019operazione SPIAGGE SICURE.\nSeguitemi!", "shared_text": "", "time": "2018-09-19 11:53:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=433611740498973&id=252306033154", "link": null} +{"post_id": "422689651590276", "text": "In diretta dal Viminale per presentarvi i risultati dell\u2019operazione SPIAGGE SICURE, con una sorpresa...", "post_text": "In diretta dal Viminale per presentarvi i risultati dell\u2019operazione SPIAGGE SICURE, con una sorpresa...", "shared_text": "", "time": "2018-09-19 11:11:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=422689651590276&id=252306033154", "link": null} +{"post_id": "554915854965422", "text": "Chi vuole venire in Italia deve RISPETTARE gli italiani. Punto.\nCon il #DecretoImmigrazione in arrivo torna il buonsenso.", "post_text": "Chi vuole venire in Italia deve RISPETTARE gli italiani. Punto.\nCon il #DecretoImmigrazione in arrivo torna il buonsenso.", "shared_text": "", "time": "2018-09-19 09:04:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=554915854965422&id=252306033154", "link": null} +{"post_id": "2102577079766342", "text": "Dopo le ingiustizie e le sofferenze causate dalla legge Fornero, la nostra priorit\u00e0 era ed \u00e8 restituire il diritto alla pensione a milioni di italiani: stiamo lavorando per questo.\nObiettivo: quota 100,\u2026 Altro permettendo cos\u00ec anche l\u2019ingresso di tanti giovani nel mondo del lavoro.\nDopo l\u2019immigrazione ora tocca all\u2019economia: #dalleparoleaifatti", "post_text": "Dopo le ingiustizie e le sofferenze causate dalla legge Fornero, la nostra priorit\u00e0 era ed \u00e8 restituire il diritto alla pensione a milioni di italiani: stiamo lavorando per questo.\nObiettivo: quota 100,\u2026 Altro permettendo cos\u00ec anche l\u2019ingresso di tanti giovani nel mondo del lavoro.\nDopo l\u2019immigrazione ora tocca all\u2019economia: #dalleparoleaifatti", "shared_text": "", "time": "2018-09-18 13:31:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2102577079766342&id=252306033154", "link": null} +{"post_id": "338600953543818", "text": "Vi ripropongo il mio intervento dell\u2019altra sera a Paderno Dugnano, vicino Milano. Se poi avete voglia, alle 18 sono in diretta su Canale 5 da Barbara D\u2019Urso!", "post_text": "Vi ripropongo il mio intervento dell\u2019altra sera a Paderno Dugnano, vicino Milano. Se poi avete voglia, alle 18 sono in diretta su Canale 5 da Barbara D\u2019Urso!", "shared_text": "", "time": "2018-09-16 16:30:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=338600953543818&id=252306033154", "link": null} +{"post_id": "297347097522926", "text": "Val di Susa, \u201dbravi ragazzi\u201d all\u2019assalto della Polizia... 76 denunciati.\nIn galera!", "post_text": "Val di Susa, \u201dbravi ragazzi\u201d all\u2019assalto della Polizia... 76 denunciati.\nIn galera!", "shared_text": "", "time": "2018-09-16 13:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=297347097522926&id=252306033154", "link": null} +{"post_id": "1887069681368843", "text": "Ma quanti siete?!?\nOra in diretta con voi da Fano, nelle Marche.\nMi seguite?", "post_text": "Ma quanti siete?!?\nOra in diretta con voi da Fano, nelle Marche.\nMi seguite?", "shared_text": "", "time": "2018-09-15 20:27:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1887069681368843&id=252306033154", "link": null} +{"post_id": "2305297819691643", "text": "Al di l\u00e0 dell'isteria di qualche lussemburghese, in molti all'estero sono tornati a vedere nel nostro Paese un baluardo che pu\u00f2 far rinascere questa Europa. Molti parlamentari, ministri, presidenti e commissari europei in privato mi dicono: \"FINALMENTE \u00e8 arrivato un governo che governa in Italia\".", "post_text": "Al di l\u00e0 dell'isteria di qualche lussemburghese, in molti all'estero sono tornati a vedere nel nostro Paese un baluardo che pu\u00f2 far rinascere questa Europa. Molti parlamentari, ministri, presidenti e commissari europei in privato mi dicono: \"FINALMENTE \u00e8 arrivato un governo che governa in Italia\".", "shared_text": "", "time": "2018-09-15 19:54:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2305297819691643&id=252306033154", "link": null} +{"post_id": "2066339746749833", "text": "In tre mesi al governo, 40 MILA sbarcati in meno rispetto all'anno scorso, alla faccia di chi diceva \"non si pu\u00f2 fare niente\".\nVolere \u00e8 potere!", "post_text": "In tre mesi al governo, 40 MILA sbarcati in meno rispetto all'anno scorso, alla faccia di chi diceva \"non si pu\u00f2 fare niente\".\nVolere \u00e8 potere!", "shared_text": "", "time": "2018-09-15 12:48:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2066339746749833&id=252306033154", "link": null} +{"post_id": "2189316887970481", "text": "Paragona i nostri nonni emigrati ai clandestini che sbarcano oggi, vuole pi\u00f9 immigrati in Europa e conclude urlando: \u201cMerda\u201d.\nMa in Lussemburgo, paradiso fiscale che non pu\u00f2 dare lezioni all\u2019Italia, non hanno nessuno di pi\u00f9 normale che faccia il Ministro???", "post_text": "Paragona i nostri nonni emigrati ai clandestini che sbarcano oggi, vuole pi\u00f9 immigrati in Europa e conclude urlando: \u201cMerda\u201d.\nMa in Lussemburgo, paradiso fiscale che non pu\u00f2 dare lezioni all\u2019Italia, non hanno nessuno di pi\u00f9 normale che faccia il Ministro???", "shared_text": "", "time": "2018-09-14 18:02:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2189316887970481&id=252306033154", "link": null} +{"post_id": "231285867567957", "text": "In diretta dalla sede del governo austriaco a Vienna conferenza stampa con l\u2019amico vicecancelliere Strache.", "post_text": "In diretta dalla sede del governo austriaco a Vienna conferenza stampa con l\u2019amico vicecancelliere Strache.", "shared_text": "", "time": "2018-09-14 16:30:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=231285867567957&id=252306033154", "link": null} +{"post_id": "897255547142911", "text": "La mia videointervista a Time. Guardatela anche voi.\nSpero di aver raccontato con chiarezza al pubblico internazionale la nostra idea di Italia e di Europa.", "post_text": "La mia videointervista a Time. Guardatela anche voi.\nSpero di aver raccontato con chiarezza al pubblico internazionale la nostra idea di Italia e di Europa.", "shared_text": "", "time": "2018-09-14 12:53:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=897255547142911&id=252306033154", "link": null} +{"post_id": "294975987761064", "text": "In diretta dal quartiere Libert\u00e0 di Bari!", "post_text": "In diretta dal quartiere Libert\u00e0 di Bari!", "shared_text": "", "time": "2018-09-13 11:16:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=294975987761064&id=252306033154", "link": null} +{"post_id": "297148007752335", "text": "Se ci fosse un'altra Diciotti? Ecco che cosa farei.\nVolere \u00e8 potere.", "post_text": "Se ci fosse un'altra Diciotti? Ecco che cosa farei.\nVolere \u00e8 potere.", "shared_text": "", "time": "2018-09-12 21:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=297148007752335&id=252306033154", "link": null} +{"post_id": "301191060612476", "text": "I \u201cdemocratici\u201d figli di pap\u00e0 occupano una palazzina a Milano al grido di \u201cSalvini \u00e8 una merda\u201d, sgomberati dalla Polizia. E annunciano altri \u201cpresidi di solidariet\u00e0\u201d contro di me in tutte le citt\u00e0...\nMa secondo voi non hanno nulla di meglio da fare??? Avanti tutta!", "post_text": "I \u201cdemocratici\u201d figli di pap\u00e0 occupano una palazzina a Milano al grido di \u201cSalvini \u00e8 una merda\u201d, sgomberati dalla Polizia. E annunciano altri \u201cpresidi di solidariet\u00e0\u201d contro di me in tutte le citt\u00e0...\nMa secondo voi non hanno nulla di meglio da fare??? Avanti tutta!", "shared_text": "", "time": "2018-09-11 13:36:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=301191060612476&id=252306033154", "link": null} +{"post_id": "736034286733517", "text": "Ogni anno l\u2019Italia d\u00e0 all\u2019Onu pi\u00f9 di 100 milioni di euro.\nSe questi signori si permettono di dare lezioni agli italiani, valuteremo sull\u2019utilit\u00e0 di continuare a versare cos\u00ec tanti soldi per finanziare sprechi e mangerie.\nIl razzismo vadano a cercarlo altrove.", "post_text": "Ogni anno l\u2019Italia d\u00e0 all\u2019Onu pi\u00f9 di 100 milioni di euro.\nSe questi signori si permettono di dare lezioni agli italiani, valuteremo sull\u2019utilit\u00e0 di continuare a versare cos\u00ec tanti soldi per finanziare sprechi e mangerie.\nIl razzismo vadano a cercarlo altrove.", "shared_text": "", "time": "2018-09-11 10:00:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=736034286733517&id=252306033154", "link": null} +{"post_id": "1952027128187363", "text": "Quando un video vale pi\u00f9 di mille articoli di giornale!\nAlla faccia di Onu e buonisti...\nFatelo girare!", "post_text": "Quando un video vale pi\u00f9 di mille articoli di giornale!\nAlla faccia di Onu e buonisti...\nFatelo girare!", "shared_text": "", "time": "2018-09-10 13:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1952027128187363&id=252306033154", "link": null} +{"post_id": "505105159964326", "text": "\u201cSalvini non ha fatto alcun sequestro di persona, non l\u2019avrei indagato\u201d. Fa piacere sentirlo dire da un magistrato di grande esperienza come Carlo Nordio. Grazie.", "post_text": "\u201cSalvini non ha fatto alcun sequestro di persona, non l\u2019avrei indagato\u201d. Fa piacere sentirlo dire da un magistrato di grande esperienza come Carlo Nordio. Grazie.", "shared_text": "", "time": "2018-09-09 18:16:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=505105159964326&id=252306033154", "link": null} +{"post_id": "316488779114021", "text": "Da ottobre parte la 4\u00aa edizione della Scuola di Formazione Politica della Lega. Un'occasione di studio, di ascolto, di confronto, di approfondimento e di crescita.\nHanno partecipato pi\u00f9 di 1.000 tra ragazze e\u2026 Altro ragazzi, si creano legami, si creano amicizie, nascono idee, nasce la voglia di partecipare e di essere protagonisti del Futuro!\nGrazie ad Armando Siri e alla sua squadra per aver creato questa bellissima realt\u00e0 che tutti ci invidiano.\nASPETTIAMO VOI!\n\u270f\ufe0f Info e iscrizioni qui: WWW.SCUOLADIFORMAZIONEPOLITICA.IT", "post_text": "Da ottobre parte la 4\u00aa edizione della Scuola di Formazione Politica della Lega. Un'occasione di studio, di ascolto, di confronto, di approfondimento e di crescita.\nHanno partecipato pi\u00f9 di 1.000 tra ragazze e\u2026 Altro ragazzi, si creano legami, si creano amicizie, nascono idee, nasce la voglia di partecipare e di essere protagonisti del Futuro!\nGrazie ad Armando Siri e alla sua squadra per aver creato questa bellissima realt\u00e0 che tutti ci invidiano.\nASPETTIAMO VOI!\n\u270f\ufe0f Info e iscrizioni qui: WWW.SCUOLADIFORMAZIONEPOLITICA.IT", "shared_text": "", "time": "2018-09-09 15:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=316488779114021&id=252306033154", "link": "http://WWW.SCUOLADIFORMAZIONEPOLITICA.IT/?fbclid=IwAR34jSdzz0ddQvIbcx-sPxcLFixgeJccD_bkhWwwdQUn5soRWDAwv_Y7-u0"} +{"post_id": "1850924608306480", "text": "17 spacciatori di morte, tutti stranieri, sono stati arrestati nel Salento dopo una lunga operazione sotto copertura degli uomini della Polizia di Lecce.\nFiero delle nostre Forze dell'Ordine, sempre in prima\u2026 Altro linea per ristabilire ordine e legalit\u00e0 nel nostro Paese.\nCon il #DecretoSicurezza che ho in mente, delinquenti come questi meritano solo la galera, e se sono irregolari, l'espulsione. \u00c8 finita la pacchia.", "post_text": "17 spacciatori di morte, tutti stranieri, sono stati arrestati nel Salento dopo una lunga operazione sotto copertura degli uomini della Polizia di Lecce.\nFiero delle nostre Forze dell'Ordine, sempre in prima\u2026 Altro linea per ristabilire ordine e legalit\u00e0 nel nostro Paese.\nCon il #DecretoSicurezza che ho in mente, delinquenti come questi meritano solo la galera, e se sono irregolari, l'espulsione. \u00c8 finita la pacchia.", "shared_text": "", "time": "2018-09-09 11:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1850924608306480&id=252306033154", "link": null} +{"post_id": "506028543197132", "text": "Alla raffinata signora diciamo che, anzich\u00e9 occupare quella degli altri, la casa la pu\u00f2 prendere in affitto, come fanno milioni di italiani onesti. Sbaglio?\nLa propriet\u00e0 privata \u00e8 sacra.", "post_text": "Alla raffinata signora diciamo che, anzich\u00e9 occupare quella degli altri, la casa la pu\u00f2 prendere in affitto, come fanno milioni di italiani onesti. Sbaglio?\nLa propriet\u00e0 privata \u00e8 sacra.", "shared_text": "", "time": "2018-09-08 21:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=506028543197132&id=252306033154", "link": null} +{"post_id": "928402374034318", "text": "Ho promesso che avrei fatto di tutto per difendere i confini e fermare l\u2019invasione del nostro Paese e lo sto facendo. Possono indagarmi altre cento volte, continuer\u00f2 a farlo. Non tradir\u00f2 il mandato ricevuto dagli italiani. Se voi ci siete, io ci sono!", "post_text": "Ho promesso che avrei fatto di tutto per difendere i confini e fermare l\u2019invasione del nostro Paese e lo sto facendo. Possono indagarmi altre cento volte, continuer\u00f2 a farlo. Non tradir\u00f2 il mandato ricevuto dagli italiani. Se voi ci siete, io ci sono!", "shared_text": "", "time": "2018-09-07 22:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=928402374034318&id=252306033154", "link": null} +{"post_id": "288657505259968", "text": "Ascoltate il grande Mario Giordano, contro l\u2019ipocrisia del pensiero unico!", "post_text": "Ascoltate il grande Mario Giordano, contro l\u2019ipocrisia del pensiero unico!", "shared_text": "", "time": "2018-09-07 13:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=288657505259968&id=252306033154", "link": null} +{"post_id": "1973557782935999", "text": "Monti confessa che c'\u00e8 gente che gli chiede di tornare in politica...\ud83d\ude31\nVoi ne conoscete qualcuno?", "post_text": "Monti confessa che c'\u00e8 gente che gli chiede di tornare in politica...\ud83d\ude31\nVoi ne conoscete qualcuno?", "shared_text": "", "time": "2018-09-06 21:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1973557782935999&id=252306033154", "link": null} +{"post_id": "2233058286913819", "text": "\"Ringrazio tutti quelli che m'hanno voluto bene e anche quelli che m'hanno voluto male\".\nDopo mesi di battaglie, ce l\u2019abbiamo fatta!\nBentornata Nonna Peppina, tutta Italia ti vuole bene!", "post_text": "\"Ringrazio tutti quelli che m'hanno voluto bene e anche quelli che m'hanno voluto male\".\nDopo mesi di battaglie, ce l\u2019abbiamo fatta!\nBentornata Nonna Peppina, tutta Italia ti vuole bene!", "shared_text": "", "time": "2018-09-06 08:46:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2233058286913819&id=252306033154", "link": null} +{"post_id": "295390164584098", "text": "In diretta dal Viminale, per presentarvi la direttiva SCUOLE SICURE in vista dell'inizio dell'anno scolastico.\nMai pi\u00f9 spacciatori di morte davanti alle scuole dei nostri figli!\n[Seconda parte]", "post_text": "In diretta dal Viminale, per presentarvi la direttiva SCUOLE SICURE in vista dell'inizio dell'anno scolastico.\nMai pi\u00f9 spacciatori di morte davanti alle scuole dei nostri figli!\n[Seconda parte]", "shared_text": "", "time": "2018-09-05 11:27:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=295390164584098&id=252306033154", "link": null} +{"post_id": "303804120175631", "text": "In diretta dal Viminale, per presentarvi la direttiva SCUOLE SICURE in vista dell'inizio dell'anno scolastico.\nMai pi\u00f9 spacciatori di morte davanti alle scuole dei nostri figli!\n[Prima parte]\n\n", "post_text": "In diretta dal Viminale, per presentarvi la direttiva SCUOLE SICURE in vista dell'inizio dell'anno scolastico.\nMai pi\u00f9 spacciatori di morte davanti alle scuole dei nostri figli!\n[Prima parte]", "shared_text": "\n", "time": "2018-09-05 11:24:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=303804120175631&id=252306033154", "link": null} +{"post_id": "887787158089321", "text": "La nostra priorit\u00e0 era ed \u00e8 restituire il diritto alla pensione a milioni di italiani: via la Fornero, quota 100 per tutti, ingresso di tanti giovani nel mondo del lavoro.\nDalle parole ai fatti, noi non molliamo!", "post_text": "La nostra priorit\u00e0 era ed \u00e8 restituire il diritto alla pensione a milioni di italiani: via la Fornero, quota 100 per tutti, ingresso di tanti giovani nel mondo del lavoro.\nDalle parole ai fatti, noi non molliamo!", "shared_text": "", "time": "2018-09-05 09:33:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=887787158089321&id=252306033154", "link": null} +{"post_id": "654635834936482", "text": "L'Italia deve essere la protagonista del processo di stabilizzazione del Mediterraneo. Le incursioni di altri che hanno interessi economici non devono prevalere sul bene comune che \u00e8 la pace. Anche io\u2026 Altro personalmente sono disponibile a correre qualche rischio e a tornarci presto, perch\u00e9 \u00e8 troppo importante una Libia finalmente pacificata.", "post_text": "L'Italia deve essere la protagonista del processo di stabilizzazione del Mediterraneo. Le incursioni di altri che hanno interessi economici non devono prevalere sul bene comune che \u00e8 la pace. Anche io\u2026 Altro personalmente sono disponibile a correre qualche rischio e a tornarci presto, perch\u00e9 \u00e8 troppo importante una Libia finalmente pacificata.", "shared_text": "", "time": "2018-09-04 09:43:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=654635834936482&id=252306033154", "link": null} +{"post_id": "2141521342732329", "text": "Mamma mia che pelle d\u2019oca...\nMi sono emozionato e COMMOSSO, davvero.\nGrazie alla gente di Viterbo, incontrata per la splendida festa di Santa Rosa: altro che inchieste e insulti, questi sono i sondaggi che preferisco!\nOvviamente in tiv\u00f9 non vedrete queste immagini\ud83d\ude01", "post_text": "Mamma mia che pelle d\u2019oca...\nMi sono emozionato e COMMOSSO, davvero.\nGrazie alla gente di Viterbo, incontrata per la splendida festa di Santa Rosa: altro che inchieste e insulti, questi sono i sondaggi che preferisco!\nOvviamente in tiv\u00f9 non vedrete queste immagini\ud83d\ude01", "shared_text": "", "time": "2018-09-03 21:02:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2141521342732329&id=252306033154", "link": null} +{"post_id": "453405558503471", "text": "Ora in diretta dalla festa della Lega di Alzano (Bergamo), con l\u2019amico Mario Giordano!\nMi seguite?", "post_text": "Ora in diretta dalla festa della Lega di Alzano (Bergamo), con l\u2019amico Mario Giordano!\nMi seguite?", "shared_text": "", "time": "2018-09-02 20:59:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=453405558503471&id=252306033154", "link": null} +{"post_id": "491605877981007", "text": "Colpa di Salvini e di voi che avete una percezione esagerata della realt\u00e0...\n#tolleranzazero unica soluzione.", "post_text": "Colpa di Salvini e di voi che avete una percezione esagerata della realt\u00e0...\n#tolleranzazero unica soluzione.", "shared_text": "", "time": "2018-09-02 19:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=491605877981007&id=252306033154", "link": null} +{"post_id": "258096501562190", "text": "Il Pd definisce \u201cfolle\u201d la #DirettivaSgomberi?\nRoba da matti!\nLa propriet\u00e0 privata \u00e8 SACRA e sono troppi gli Italiani vittime di occupazioni da parte non di bisognosi, ma di furbi e violenti.\nSe affitti una\u2026 Altro casa alla persona sbagliata che non ti paga, e magari torni ad averne bisogno per i tuoi figli, non puoi metterci anni a tornare in casa tua!", "post_text": "Il Pd definisce \u201cfolle\u201d la #DirettivaSgomberi?\nRoba da matti!\nLa propriet\u00e0 privata \u00e8 SACRA e sono troppi gli Italiani vittime di occupazioni da parte non di bisognosi, ma di furbi e violenti.\nSe affitti una\u2026 Altro casa alla persona sbagliata che non ti paga, e magari torni ad averne bisogno per i tuoi figli, non puoi metterci anni a tornare in casa tua!", "shared_text": "", "time": "2018-09-02 17:19:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=258096501562190&id=252306033154", "link": null} +{"post_id": "2491969097696054", "text": "Fra poco riaprono le SCUOLE dei nostri figli, io sto lavorando perch\u00e9 per gli spacciatori di morte finisca la pacchia.\nCon il nostro piano #ScuoleSicure, diverse citt\u00e0 italiane avranno a disposizione un fondo\u2026 Altro da 2,5 milioni di euro per incrementare i controlli, assumere agenti della polizia locale a tempo determinato, coprire i costi degli straordinari o installare impianti di videosorveglianza davanti alle scuole.\nDa pap\u00e0 prima che da ministro, voglio che i nostri figli possano andare a scuola serenamente, senza la presenza di qualche \u201crisorsa\u201d che per guadagnarsi da vivere spaccia morte ai ragazzini.\nChiedo troppo?", "post_text": "Fra poco riaprono le SCUOLE dei nostri figli, io sto lavorando perch\u00e9 per gli spacciatori di morte finisca la pacchia.\nCon il nostro piano #ScuoleSicure, diverse citt\u00e0 italiane avranno a disposizione un fondo\u2026 Altro da 2,5 milioni di euro per incrementare i controlli, assumere agenti della polizia locale a tempo determinato, coprire i costi degli straordinari o installare impianti di videosorveglianza davanti alle scuole.\nDa pap\u00e0 prima che da ministro, voglio che i nostri figli possano andare a scuola serenamente, senza la presenza di qualche \u201crisorsa\u201d che per guadagnarsi da vivere spaccia morte ai ragazzini.\nChiedo troppo?", "shared_text": "", "time": "2018-09-02 11:33:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2491969097696054&id=252306033154", "link": null} +{"post_id": "2198775547025638", "text": "Dal 5 settembre in 12 citt\u00e0 italiane, da Milano fino a Catania, inizier\u00e0 la sperimentazione del taser, la pistola elettrica non letale che aiuter\u00e0 migliaia di agenti a fare meglio il loro lavoro.\nPer troppo\u2026 Altro tempo le nostre Forze dell'Ordine sono state abbandonate, \u00e8 nostro dovere garantire loro i migliori strumenti per poter DIFENDERE in modo adeguato il popolo italiano.\nOrgoglioso del lavoro quotidiano delle forze di Polizia e Carabinieri!", "post_text": "Dal 5 settembre in 12 citt\u00e0 italiane, da Milano fino a Catania, inizier\u00e0 la sperimentazione del taser, la pistola elettrica non letale che aiuter\u00e0 migliaia di agenti a fare meglio il loro lavoro.\nPer troppo\u2026 Altro tempo le nostre Forze dell'Ordine sono state abbandonate, \u00e8 nostro dovere garantire loro i migliori strumenti per poter DIFENDERE in modo adeguato il popolo italiano.\nOrgoglioso del lavoro quotidiano delle forze di Polizia e Carabinieri!", "shared_text": "", "time": "2018-09-01 19:00:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2198775547025638&id=252306033154", "link": null} +{"post_id": "2213868978642445", "text": "Al \"Premio Capalbio\" i soliti radical chic si indignano sugli immigrati clandestini al grido di \"\u00e8 colpa di Salvini\".\nRoberto D'Agostino, fondatore di Dagospia, li smonta in 2 minuti\ud83d\ude01", "post_text": "Al \"Premio Capalbio\" i soliti radical chic si indignano sugli immigrati clandestini al grido di \"\u00e8 colpa di Salvini\".\nRoberto D'Agostino, fondatore di Dagospia, li smonta in 2 minuti\ud83d\ude01", "shared_text": "", "time": "2018-08-31 22:57:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2213868978642445&id=252306033154", "link": null} +{"post_id": "730945397238155", "text": "Grazie alla Questura di Venezia per questo video-ricordo: sempre dalla parte della nostra Polizia di Stato!", "post_text": "Grazie alla Questura di Venezia per questo video-ricordo: sempre dalla parte della nostra Polizia di Stato!", "shared_text": "", "time": "2018-08-31 21:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=730945397238155&id=252306033154", "link": null} +{"post_id": "515133875615295", "text": "In diretta da Milano con il premier ungherese Viktor Orb\u00e1n, state con noi!", "post_text": "In diretta da Milano con il premier ungherese Viktor Orb\u00e1n, state con noi!", "shared_text": "", "time": "2018-08-28 18:16:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=515133875615295&id=252306033154", "link": null} +{"post_id": "307797869979446", "text": "Buon pomeriggio da Milano, Amici. Verso le 17.30 seguite in diretta su questa Pagina la conferenza stampa con il premier ungherese Viktor Orb\u00e1n.", "post_text": "Buon pomeriggio da Milano, Amici. Verso le 17.30 seguite in diretta su questa Pagina la conferenza stampa con il premier ungherese Viktor Orb\u00e1n.", "shared_text": "", "time": "2018-08-28 16:56:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=307797869979446&id=252306033154", "link": null} +{"post_id": "289290658531578", "text": "Dopo tanta fatica, insulti, bugie, minacce e inchieste finalmente la soluzione della nave Diciotti.", "post_text": "Dopo tanta fatica, insulti, bugie, minacce e inchieste finalmente la soluzione della nave Diciotti.", "shared_text": "", "time": "2018-08-25 21:21:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=289290658531578&id=252306033154", "link": null} +{"post_id": "540490833050296", "text": "Dopo aver superato il confine spagnolo a Ceuta e aggredito gli agenti di pattuglia, questi signori sono stati rimandati in Marocco grazie ad un accordo internazionale di vent\u2019anni fa.\nSe lo fa la Spagna va\u2026 Altro bene, ma se lo propongo io allora sono razzista, fascista e disumano.\nIo vado avanti, alla faccia dei buonisti e radical chic di sinistra. #stopinvasione", "post_text": "Dopo aver superato il confine spagnolo a Ceuta e aggredito gli agenti di pattuglia, questi signori sono stati rimandati in Marocco grazie ad un accordo internazionale di vent\u2019anni fa.\nSe lo fa la Spagna va\u2026 Altro bene, ma se lo propongo io allora sono razzista, fascista e disumano.\nIo vado avanti, alla faccia dei buonisti e radical chic di sinistra. #stopinvasione", "shared_text": "", "time": "2018-08-24 14:10:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=540490833050296&id=252306033154", "link": null} +{"post_id": "2173651566250280", "text": "Stamattina su Rtl 102.5 penso di essere stato chiaro.\nAscoltatemi, se volete, e commentate.", "post_text": "Stamattina su Rtl 102.5 penso di essere stato chiaro.\nAscoltatemi, se volete, e commentate.", "shared_text": "", "time": "2018-08-23 13:29:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2173651566250280&id=252306033154", "link": null} +{"post_id": "953260244857979", "text": "Vi ripropongo il mio intervento di questa mattina su Rai3.\nMi dite cosa ne pensate?", "post_text": "Vi ripropongo il mio intervento di questa mattina su Rai3.\nMi dite cosa ne pensate?", "shared_text": "", "time": "2018-08-20 14:31:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=953260244857979&id=252306033154", "link": null} +{"post_id": "2240918216144729", "text": "Una commossa signora genovese ringrazia dei Vigili del Fuoco di Brescia, impegnati nelle ricerche dei dispersi sotto le macerie del ponte.\n30 secondi di profonda umanit\u00e0...", "post_text": "Una commossa signora genovese ringrazia dei Vigili del Fuoco di Brescia, impegnati nelle ricerche dei dispersi sotto le macerie del ponte.\n30 secondi di profonda umanit\u00e0...", "shared_text": "", "time": "2018-08-18 21:33:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2240918216144729&id=252306033154", "link": null} +{"post_id": "846220052434978", "text": "Emozionanti applausi ai Vigili del Fuoco a Genova.\nNon smetteremo mai di ringraziarvi per quanto avete fatto e quanto farete, chi salva vite rischiando la propria merita solo tanto rispetto.\nMa il\u2026 Altro ringraziamento non basta: da Ministro sono gi\u00e0 al lavoro per assumere tanti pompieri in pi\u00f9, migliorare i loro stipendi e i mezzi a loro disposizione.\nL\u2019Italia \u00e8 con Voi.", "post_text": "Emozionanti applausi ai Vigili del Fuoco a Genova.\nNon smetteremo mai di ringraziarvi per quanto avete fatto e quanto farete, chi salva vite rischiando la propria merita solo tanto rispetto.\nMa il\u2026 Altro ringraziamento non basta: da Ministro sono gi\u00e0 al lavoro per assumere tanti pompieri in pi\u00f9, migliorare i loro stipendi e i mezzi a loro disposizione.\nL\u2019Italia \u00e8 con Voi.", "shared_text": "", "time": "2018-08-18 13:20:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=846220052434978&id=252306033154", "link": null} +{"post_id": "511193969324234", "text": "In diretta da Pontida, Bergamo.", "post_text": "In diretta da Pontida, Bergamo.", "shared_text": "", "time": "2018-08-16 21:29:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=511193969324234&id=252306033154", "link": null} +{"post_id": "273513413256260", "text": "Faccio un appello ad Autostrade: mi aspetto che gi\u00e0 da oggi vengano sospesi i pagamenti dei pedaggi a Genova e dintorni.\nFossi in loro farei un bagno di umilt\u00e0 e metterei a disposizione le risorse necessarie per aiutare e sostenere le famiglie delle vittime e la citt\u00e0 di Genova.", "post_text": "Faccio un appello ad Autostrade: mi aspetto che gi\u00e0 da oggi vengano sospesi i pagamenti dei pedaggi a Genova e dintorni.\nFossi in loro farei un bagno di umilt\u00e0 e metterei a disposizione le risorse necessarie per aiutare e sostenere le famiglie delle vittime e la citt\u00e0 di Genova.", "shared_text": "", "time": "2018-08-16 14:25:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=273513413256260&id=252306033154", "link": null} +{"post_id": "430715317421258", "text": "Eroe!\nCome si fa a non amare gli animali?", "post_text": "Eroe!\nCome si fa a non amare gli animali?", "shared_text": "", "time": "2018-08-15 22:31:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=430715317421258&id=252306033154", "link": null} +{"post_id": "976655965853959", "text": "SOTTO IL PONTE CROLLATO.\nGenova, ho scelto di essere al fianco dei 380 Vigili del Fuoco e di tutti gli eroi (compresi 30 splendidi cani) che da ieri stanno lavorando fra le macerie con coraggio, per portargli il vostro abbraccio.\nGenova non si arrende, ma chi ha sbagliato e ha causato tanto dolore dovr\u00e0 pagare.", "post_text": "SOTTO IL PONTE CROLLATO.\nGenova, ho scelto di essere al fianco dei 380 Vigili del Fuoco e di tutti gli eroi (compresi 30 splendidi cani) che da ieri stanno lavorando fra le macerie con coraggio, per portargli il vostro abbraccio.\nGenova non si arrende, ma chi ha sbagliato e ha causato tanto dolore dovr\u00e0 pagare.", "shared_text": "", "time": "2018-08-15 18:39:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=976655965853959&id=252306033154", "link": null} +{"post_id": "2034294126883105", "text": "Seguitemi in diretta da San Luca (Reggio Calabria), dove abbiamo appena concluso la riunione del Comitato Nazionale Ordine e Sicurezza Pubblica.", "post_text": "Seguitemi in diretta da San Luca (Reggio Calabria), dove abbiamo appena concluso la riunione del Comitato Nazionale Ordine e Sicurezza Pubblica.", "shared_text": "", "time": "2018-08-15 12:52:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=2034294126883105&id=252306033154", "link": null} +{"post_id": "274632503334892", "text": "Oggi pomeriggio andr\u00f2 personalmente a Genova per accertarmi che per una volta ci sia uno, con nome e cognome, che paghi e per garantire che ci saranno tutti i soldi, tutte le attenzioni e meno burocrazia possibile per far s\u00ec che Genova torni subito a sperare, a lavorare e a viaggiare!", "post_text": "Oggi pomeriggio andr\u00f2 personalmente a Genova per accertarmi che per una volta ci sia uno, con nome e cognome, che paghi e per garantire che ci saranno tutti i soldi, tutte le attenzioni e meno burocrazia possibile per far s\u00ec che Genova torni subito a sperare, a lavorare e a viaggiare!", "shared_text": "", "time": "2018-08-15 09:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=274632503334892&id=252306033154", "link": null} +{"post_id": "487392015066148", "text": "Amici, vi ripropongo il mio intervento di poco fa al Tg4, con tutti gli aggiornamenti sulla tragedia di Genova. Serve chiarezza, non pu\u00f2 esserci un'altra strage senza colpevoli, qualcuno deve pagare.", "post_text": "Amici, vi ripropongo il mio intervento di poco fa al Tg4, con tutti gli aggiornamenti sulla tragedia di Genova. Serve chiarezza, non pu\u00f2 esserci un'altra strage senza colpevoli, qualcuno deve pagare.", "shared_text": "", "time": "2018-08-14 22:05:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=487392015066148&id=252306033154", "link": null} +{"post_id": "301238663786679", "text": "Nel 2018 non \u00e8 possibile morire cos\u00ec.\nSe ci sono vincoli europei che ci impediscono di spendere soldi per mettere in sicurezza le scuole dove vanno i nostri figli o le autostrade su cui viaggiano i nostri\u2026 Altro lavoratori, metteremo davanti a tutto e a tutti la sicurezza degli Italiani.\nDomani sar\u00f2 a Genova, per ringraziare i soccorritori, per stare vicino alle famiglie delle vittime e per accertare le responsabilit\u00e0.", "post_text": "Nel 2018 non \u00e8 possibile morire cos\u00ec.\nSe ci sono vincoli europei che ci impediscono di spendere soldi per mettere in sicurezza le scuole dove vanno i nostri figli o le autostrade su cui viaggiano i nostri\u2026 Altro lavoratori, metteremo davanti a tutto e a tutti la sicurezza degli Italiani.\nDomani sar\u00f2 a Genova, per ringraziare i soccorritori, per stare vicino alle famiglie delle vittime e per accertare le responsabilit\u00e0.", "shared_text": "", "time": "2018-08-14 20:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=301238663786679&id=252306033154", "link": null} +{"post_id": "451080475383989", "text": "Immagini impressionanti.\nGRAZIE alle centinaia di professionisti, soccorritori e volontari impegnati da ore nei soccorsi, una preghiera per le vittime e per le loro famiglie.\nUna promessa: andremo fino in fondo per accertare le responsabilit\u00e0 di questo disastro inaccettabile.", "post_text": "Immagini impressionanti.\nGRAZIE alle centinaia di professionisti, soccorritori e volontari impegnati da ore nei soccorsi, una preghiera per le vittime e per le loro famiglie.\nUna promessa: andremo fino in fondo per accertare le responsabilit\u00e0 di questo disastro inaccettabile.", "shared_text": "", "time": "2018-08-14 15:41:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=451080475383989&id=252306033154", "link": null} +{"post_id": "10155973372343155", "text": "I nostri imprenditori, artigiani e agricoltori vanno DIFESI con le unghie e con i denti.\nIl riso cambogiano e la carne sudamericana li lascio agli altri, io voglio mangiare e bere ITALIANO! \ud83d\ude01", "post_text": "I nostri imprenditori, artigiani e agricoltori vanno DIFESI con le unghie e con i denti.\nIl riso cambogiano e la carne sudamericana li lascio agli altri, io voglio mangiare e bere ITALIANO! \ud83d\ude01", "shared_text": "", "time": "2018-08-13 12:36:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155973372343155&id=252306033154", "link": null} +{"post_id": "10155985346908155", "text": "Sassari: una Rom, 31 anni, 12 figli, infrange l\u2019obbligo di dimora e ruba dalla borsetta di questa anziana signora ipovedente la busta con la pensione appena ritirata.\nTutto sotto gli occhi di un figlio\u2026 Altro quindicenne, che fa da palo.\nMa vi par normale???\nIn Italia non c\u2019\u00e8 spazio per delinquenti del genere.\nHo pronta una democratica e pacifica ruspa!", "post_text": "Sassari: una Rom, 31 anni, 12 figli, infrange l\u2019obbligo di dimora e ruba dalla borsetta di questa anziana signora ipovedente la busta con la pensione appena ritirata.\nTutto sotto gli occhi di un figlio\u2026 Altro quindicenne, che fa da palo.\nMa vi par normale???\nIn Italia non c\u2019\u00e8 spazio per delinquenti del genere.\nHo pronta una democratica e pacifica ruspa!", "shared_text": "", "time": "2018-08-13 09:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155985346908155&id=252306033154", "link": null} +{"post_id": "10155982676463155", "text": "Oggi al GR1 ho ribadito che l\u2019Aquarius, col suo carico di clandestini, sicuramente non arriver\u00e0 in un porto italiano, alla faccia dei buonisti.", "post_text": "Oggi al GR1 ho ribadito che l\u2019Aquarius, col suo carico di clandestini, sicuramente non arriver\u00e0 in un porto italiano, alla faccia dei buonisti.", "shared_text": "", "time": "2018-08-11 15:17:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155982676463155&id=252306033154", "link": null} +{"post_id": "10155978867938155", "text": "Sono felice di aver potuto parlare, spero con chiarezza, per un\u2019ora su Al Jazeera.\nVi propongo qui l\u2019intervista in versione italiana, commentate e condividete!", "post_text": "Sono felice di aver potuto parlare, spero con chiarezza, per un\u2019ora su Al Jazeera.\nVi propongo qui l\u2019intervista in versione italiana, commentate e condividete!", "shared_text": "", "time": "2018-08-09 21:00:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155978867938155&id=252306033154", "link": null} +{"post_id": "10155974449883155", "text": "La lotta alla mafia, allo schiavismo e allo sfruttamento del lavoro in nero e dell\u2019immigrazione clandestina \u00e8 e sar\u00e0 una nostra priorit\u00e0 assoluta.\nPer questi delinquenti, in Italia, la pacchia \u00e8 FINITA!", "post_text": "La lotta alla mafia, allo schiavismo e allo sfruttamento del lavoro in nero e dell\u2019immigrazione clandestina \u00e8 e sar\u00e0 una nostra priorit\u00e0 assoluta.\nPer questi delinquenti, in Italia, la pacchia \u00e8 FINITA!", "shared_text": "", "time": "2018-08-08 13:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155974449883155&id=252306033154", "link": null} +{"post_id": "10155973440763155", "text": "Vi ripropongo la mia intervista di ieri sera al Tg2. Leggo i vostri commenti.", "post_text": "Vi ripropongo la mia intervista di ieri sera al Tg2. Leggo i vostri commenti.", "shared_text": "", "time": "2018-08-07 13:00:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155973440763155&id=252306033154", "link": null} +{"post_id": "10155972158778155", "text": "Seguitemi in diretta dalla festa della Lega di Arcore (Monza e Brianza). Avanti tutta.", "post_text": "Seguitemi in diretta dalla festa della Lega di Arcore (Monza e Brianza). Avanti tutta.", "shared_text": "", "time": "2018-08-06 21:50:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155972158778155&id=252306033154", "link": null} +{"post_id": "10155971535183155", "text": "Un pensiero alle vittime e ai feriti della terribile esplosione di Borgo Panigale e un grazie di cuore ai 100 Vigili del Fuoco prontamente intervenuti sul posto.", "post_text": "Un pensiero alle vittime e ai feriti della terribile esplosione di Borgo Panigale e un grazie di cuore ai 100 Vigili del Fuoco prontamente intervenuti sul posto.", "shared_text": "", "time": "2018-08-06 16:33:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155971535183155&id=252306033154", "link": null} +{"post_id": "10155969647143155", "text": "Qui Capriata d\u2019Orba (Alessandria), mi seguite???\n[Prima parte]", "post_text": "Qui Capriata d\u2019Orba (Alessandria), mi seguite???\n[Prima parte]", "shared_text": "", "time": "2018-08-05 20:55:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155969647143155&id=252306033154", "link": null} +{"post_id": "10155967352983155", "text": "Immigrati che mi insultano (\u201cSalvini vaffanculo\u201d) io invece mando loro un grandissimo\ud83d\ude18\nLa pacchia \u00e8 STRA-FINITA, rilassatevi.\nPrima gli italiani!", "post_text": "Immigrati che mi insultano (\u201cSalvini vaffanculo\u201d) io invece mando loro un grandissimo\ud83d\ude18\nLa pacchia \u00e8 STRA-FINITA, rilassatevi.\nPrima gli italiani!", "shared_text": "", "time": "2018-08-05 13:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155967352983155&id=252306033154", "link": null} +{"post_id": "10155961894728155", "text": "Alla manifestazione \u201canti-razzista\u201d di Milano del Pd si lamentano di essere un po\u2019 pochini... Dai, ragazzi, andr\u00e0 meglio la prossima volta \ud83d\ude03", "post_text": "Alla manifestazione \u201canti-razzista\u201d di Milano del Pd si lamentano di essere un po\u2019 pochini... Dai, ragazzi, andr\u00e0 meglio la prossima volta \ud83d\ude03", "shared_text": "", "time": "2018-08-03 18:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155961894728155&id=252306033154", "link": null} +{"post_id": "10155961338003155", "text": "L\u2019Italia sta morendo di tasse.\nNella prossima manovra economica parte la rivoluzione fiscale.\nA qualcuno all\u2019estero non piacer\u00e0?\nPazienza, non ci faremo fermare da qualche rimbrotto. #rivoluzionedelbuonsenso", "post_text": "L\u2019Italia sta morendo di tasse.\nNella prossima manovra economica parte la rivoluzione fiscale.\nA qualcuno all\u2019estero non piacer\u00e0?\nPazienza, non ci faremo fermare da qualche rimbrotto. #rivoluzionedelbuonsenso", "shared_text": "", "time": "2018-08-03 16:50:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155961338003155&id=252306033154", "link": null} +{"post_id": "10155961613098155", "text": "Seguitemi in diretta dalla cerimonia del Giuramento dell\u201982\u00ba corso dei Vigili del Fuoco a Roma!", "post_text": "Seguitemi in diretta dalla cerimonia del Giuramento dell\u201982\u00ba corso dei Vigili del Fuoco a Roma!", "shared_text": "", "time": "2018-08-02 18:27:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155961613098155&id=252306033154", "link": null} +{"post_id": "10155958454938155", "text": "Centro \"a-sociale\" (abusivo) sgomberato a Milano dalla Polizia, i cittadini del quartiere ringraziano.", "post_text": "Centro \"a-sociale\" (abusivo) sgomberato a Milano dalla Polizia, i cittadini del quartiere ringraziano.", "shared_text": "", "time": "2018-08-01 22:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155958454938155&id=252306033154", "link": null} +{"post_id": "10155949571993155", "text": "L\u2019ultima della Boldrini: \u201cSalvini professore della PAURA\u201d.\nAccidenti! \ud83d\ude31\nDite la verit\u00e0, un po' vi mancava???\ud83d\ude00\nAnzich\u00e9 passare la giornata a insultare, forse a sinistra dovrebbero chiedersi perch\u00e9 non li voti pi\u00fa nessuno..\n#primagliitaliani", "post_text": "L\u2019ultima della Boldrini: \u201cSalvini professore della PAURA\u201d.\nAccidenti! \ud83d\ude31\nDite la verit\u00e0, un po' vi mancava???\ud83d\ude00\nAnzich\u00e9 passare la giornata a insultare, forse a sinistra dovrebbero chiedersi perch\u00e9 non li voti pi\u00fa nessuno..\n#primagliitaliani", "shared_text": "", "time": "2018-07-31 19:46:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155949571993155&id=252306033154", "link": null} +{"post_id": "10155952337903155", "text": "I sondaggi dalla spiaggia romagnola mi dicono che siamo sulla strada giusta, a chi ci vuole male inviamo solo sorrisi! \ud83d\ude00", "post_text": "I sondaggi dalla spiaggia romagnola mi dicono che siamo sulla strada giusta, a chi ci vuole male inviamo solo sorrisi! \ud83d\ude00", "shared_text": "", "time": "2018-07-30 11:07:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155952337903155&id=252306033154", "link": null} +{"post_id": "10155949438463155", "text": "Gli insulti di radical-chic, presunti VIP e \"intellettuali\", dall'Italia e dall'estero, non mi toccano minimamente: mi basta il vostro affetto! Avanti tutta! \ud83d\udcaa", "post_text": "Gli insulti di radical-chic, presunti VIP e \"intellettuali\", dall'Italia e dall'estero, non mi toccano minimamente: mi basta il vostro affetto! Avanti tutta! \ud83d\udcaa", "shared_text": "", "time": "2018-07-28 19:01:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155949438463155&id=252306033154", "link": null} +{"post_id": "10155947781478155", "text": "Dalle parole ai fatti.", "post_text": "Dalle parole ai fatti.", "shared_text": "", "time": "2018-07-28 12:46:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155947781478155&id=252306033154", "link": null} +{"post_id": "10155946427993155", "text": "Quale regalo pi\u00f9 bello potrei ricevere?\nQuesta splendida signora ha compiuto 100 anni e ha appena rinnovato la tessera della Lega.\nGRAZIE nonna Bruna, un grande abbraccio! \ud83d\ude18", "post_text": "Quale regalo pi\u00f9 bello potrei ricevere?\nQuesta splendida signora ha compiuto 100 anni e ha appena rinnovato la tessera della Lega.\nGRAZIE nonna Bruna, un grande abbraccio! \ud83d\ude18", "shared_text": "", "time": "2018-07-28 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155946427993155&id=252306033154", "link": null} +{"post_id": "10155947675848155", "text": "Qui Fontevivo (Parma), spettacolo!\nSono questi i sondaggi che preferisco.\nSeguite e condividete questo LIVE, alla faccia di chi ci vuole male!\nEvviva l\u2019eclissi di luna e Pd\ud83d\ude01", "post_text": "Qui Fontevivo (Parma), spettacolo!\nSono questi i sondaggi che preferisco.\nSeguite e condividete questo LIVE, alla faccia di chi ci vuole male!\nEvviva l\u2019eclissi di luna e Pd\ud83d\ude01", "shared_text": "", "time": "2018-07-27 21:44:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155947675848155&id=252306033154", "link": null} +{"post_id": "10155944690643155", "text": "In Italia ci sono circa 150 mila Rom, il problema riguarda solo quei 30 mila che si ostinano a vivere nei campi, ai confini della legalit\u00e0 o nella piena illegalit\u00e0. Fermare tutto questo mi pare solo una questione di BUONSENSO.", "post_text": "In Italia ci sono circa 150 mila Rom, il problema riguarda solo quei 30 mila che si ostinano a vivere nei campi, ai confini della legalit\u00e0 o nella piena illegalit\u00e0. Fermare tutto questo mi pare solo una questione di BUONSENSO.", "shared_text": "", "time": "2018-07-27 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155944690643155&id=252306033154", "link": null} +{"post_id": "10155943991563155", "text": "Per quanto irrispettosa, una copertina non ci fermer\u00e0.\nIo non mollo!", "post_text": "Per quanto irrispettosa, una copertina non ci fermer\u00e0.\nIo non mollo!", "shared_text": "", "time": "2018-07-26 15:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155943991563155&id=252306033154", "link": null} +{"post_id": "10155941919558155", "text": "\"Fanculo Salvini\". Abbiamo una vincitrice per il premio \"Furbizia\" dell'estate 2018! \ud83d\ude01", "post_text": "\"Fanculo Salvini\". Abbiamo una vincitrice per il premio \"Furbizia\" dell'estate 2018! \ud83d\ude01", "shared_text": "", "time": "2018-07-26 13:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155941919558155&id=252306033154", "link": null} +{"post_id": "10155941629668155", "text": "In diretta dal Senato, state con noi!", "post_text": "In diretta dal Senato, state con noi!", "shared_text": "", "time": "2018-07-25 14:01:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155941629668155&id=252306033154", "link": null} +{"post_id": "10155941404158155", "text": "\ud83d\udd34 Sto lavorando a un \"Decreto Sicurezza\" che permetter\u00e0, tra le altre cose, di bloccare la domanda di asilo a chi commette reati, perch\u00e9 incredibilmente oggi la legge, eccetto che in alcuni casi gravissimi,\u2026 Altro consente ai delinquenti stranieri di continuare a chiedere e ricevere \u201cprotezione\u201d a spese degli italiani. \u00c8 finita la pacchia!\n#tolleranzazero", "post_text": "\ud83d\udd34 Sto lavorando a un \"Decreto Sicurezza\" che permetter\u00e0, tra le altre cose, di bloccare la domanda di asilo a chi commette reati, perch\u00e9 incredibilmente oggi la legge, eccetto che in alcuni casi gravissimi,\u2026 Altro consente ai delinquenti stranieri di continuare a chiedere e ricevere \u201cprotezione\u201d a spese degli italiani. \u00c8 finita la pacchia!\n#tolleranzazero", "shared_text": "", "time": "2018-07-25 13:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155941404158155&id=252306033154", "link": null} +{"post_id": "10155939399773155", "text": "A Bruxelles non chiediamo elemosine, l'Italia ha bisogno di dignit\u00e0. E ce la stiamo riprendendo. #primagliitaliani", "post_text": "A Bruxelles non chiediamo elemosine, l'Italia ha bisogno di dignit\u00e0. E ce la stiamo riprendendo. #primagliitaliani", "shared_text": "", "time": "2018-07-24 18:35:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155939399773155&id=252306033154", "link": null} +{"post_id": "10155836343098155", "text": "Alla domanda: \"Rifaresti questo viaggio?\" la risposta \u00e8: NO.\nPi\u00f9 informazione nei Paesi d'origine eviterebbe tante morti e tanti nuovi schiavi. Ascoltate questa testimonianza, illuminante.", "post_text": "Alla domanda: \"Rifaresti questo viaggio?\" la risposta \u00e8: NO.\nPi\u00f9 informazione nei Paesi d'origine eviterebbe tante morti e tanti nuovi schiavi. Ascoltate questa testimonianza, illuminante.", "shared_text": "", "time": "2018-07-21 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155836343098155&id=252306033154", "link": null} +{"post_id": "10155927259178155", "text": "In 2 minuti i miei primi 49 giorni di governo.\nMi hanno chiesto: \"Per che cosa vorr\u00e0 essere ricordato?\". Ascoltate e ditemi se siete d'accordo!", "post_text": "In 2 minuti i miei primi 49 giorni di governo.\nMi hanno chiesto: \"Per che cosa vorr\u00e0 essere ricordato?\". Ascoltate e ditemi se siete d'accordo!", "shared_text": "", "time": "2018-07-19 15:48:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155927259178155&id=252306033154", "link": null} +{"post_id": "10155922274148155", "text": "Sono stato onorato di stringere tutte queste mani anche a nome vostro.\nNoi stiamo con chi ci difende, sempre.", "post_text": "Sono stato onorato di stringere tutte queste mani anche a nome vostro.\nNoi stiamo con chi ci difende, sempre.", "shared_text": "", "time": "2018-07-18 22:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155922274148155&id=252306033154", "link": null} +{"post_id": "10155922271848155", "text": "ARRESTATI tutti gli 11 membri dell'equipaggio del barcone di Pozzallo (2 siriani, 2 tunisini, 1 algerino e 6 egiziani).\nDalle parole ai fatti, ora per\u00f2 che stiano in galera!", "post_text": "ARRESTATI tutti gli 11 membri dell'equipaggio del barcone di Pozzallo (2 siriani, 2 tunisini, 1 algerino e 6 egiziani).\nDalle parole ai fatti, ora per\u00f2 che stiano in galera!", "shared_text": "", "time": "2018-07-17 14:06:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155922271848155&id=252306033154", "link": null} +{"post_id": "10155922118463155", "text": "Ora in diretta dalla Prefettura di Fermo!", "post_text": "Ora in diretta dalla Prefettura di Fermo!", "shared_text": "", "time": "2018-07-17 12:57:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155922118463155&id=252306033154", "link": null} +{"post_id": "10155920913248155", "text": "Siete uno spettacolo! Io non mollo.", "post_text": "Siete uno spettacolo! Io non mollo.", "shared_text": "", "time": "2018-07-16 23:02:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155920913248155&id=252306033154", "link": null} +{"post_id": "10155920712768155", "text": "Che spettacolo a Silvi (Teramo), festeggiamo insieme il primo sindaco della Lega in Abruzzo! Ma quanti siete???", "post_text": "Che spettacolo a Silvi (Teramo), festeggiamo insieme il primo sindaco della Lega in Abruzzo! Ma quanti siete???", "shared_text": "", "time": "2018-07-16 21:14:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155920712768155&id=252306033154", "link": null} +{"post_id": "10155915965123155", "text": "In diretta da Verona, seguitemi!", "post_text": "In diretta da Verona, seguitemi!", "shared_text": "", "time": "2018-07-14 20:36:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155915965123155&id=252306033154", "link": null} +{"post_id": "10155915245483155", "text": "\"Odio la Lega, odio Salvini, siamo tutti clandestini\".\nIl mondo \u00e8 bello perch\u00e9 \u00e8 vario...", "post_text": "\"Odio la Lega, odio Salvini, siamo tutti clandestini\".\nIl mondo \u00e8 bello perch\u00e9 \u00e8 vario...", "shared_text": "", "time": "2018-07-14 20:26:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155915245483155&id=252306033154", "link": null} +{"post_id": "10155912318713155", "text": "Per D'Alema \"l'emergenza non sono gli sbarchi ma Salvini\".\nDetto da lui mi mette quasi di buon umore \ud83d\ude01", "post_text": "Per D'Alema \"l'emergenza non sono gli sbarchi ma Salvini\".\nDetto da lui mi mette quasi di buon umore \ud83d\ude01", "shared_text": "", "time": "2018-07-13 19:44:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155912318713155&id=252306033154", "link": null} +{"post_id": "10155910047913155", "text": "A Reggio Calabria luned\u00ec ho firmato il registro contro la \u2018ndrangheta. Guerra alle mafie, senza quartiere: sar\u00f2 quanto pi\u00f9 possibile presente fisicamente sul territorio per segnalare la vicinanza dello Stato e del Governo a chi \u00e8 impegnato quotidianamente nella lotta alla criminalit\u00e0 organizzata.", "post_text": "A Reggio Calabria luned\u00ec ho firmato il registro contro la \u2018ndrangheta. Guerra alle mafie, senza quartiere: sar\u00f2 quanto pi\u00f9 possibile presente fisicamente sul territorio per segnalare la vicinanza dello Stato e del Governo a chi \u00e8 impegnato quotidianamente nella lotta alla criminalit\u00e0 organizzata.", "shared_text": "", "time": "2018-07-12 18:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155910047913155&id=252306033154", "link": null} +{"post_id": "10155910216633155", "text": "Difendere le frontiere esterne, ridurre le partenze, aiutare le autorit\u00e0 libiche. Penso che, finalmente, in Europa si sia cominciato a lavorare seriamente sul tema dell'immigrazione.", "post_text": "Difendere le frontiere esterne, ridurre le partenze, aiutare le autorit\u00e0 libiche. Penso che, finalmente, in Europa si sia cominciato a lavorare seriamente sul tema dell'immigrazione.", "shared_text": "", "time": "2018-07-12 17:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155910216633155&id=252306033154", "link": null} +{"post_id": "10155910274903155", "text": "In diretta da Innsbruck, mi seguite?", "post_text": "In diretta da Innsbruck, mi seguite?", "shared_text": "", "time": "2018-07-12 14:53:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155910274903155&id=252306033154", "link": null} +{"post_id": "10155909982023155", "text": "Ora al vertice europeo sull\u2019immigrazione, per portare, spero in modo chiaro e deciso, la voce degli italiani.", "post_text": "Ora al vertice europeo sull\u2019immigrazione, per portare, spero in modo chiaro e deciso, la voce degli italiani.", "shared_text": "", "time": "2018-07-12 12:19:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155909982023155&id=252306033154", "link": null} +{"post_id": "10155909620358155", "text": "Live da Innsbruck con i colleghi ministri degli Interni austriaco e tedesco, Kickl e Seehofer.\nSeguitemi!", "post_text": "Live da Innsbruck con i colleghi ministri degli Interni austriaco e tedesco, Kickl e Seehofer.\nSeguitemi!", "shared_text": "", "time": "2018-07-12 08:07:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155909620358155&id=252306033154", "link": null} +{"post_id": "10155908348698155", "text": "Innsbruck, incontro molto positivo tra Italia e Germania: meno sbarchi, meno morti, meno immigrati clandestini.\nComincia un percorso comune tra i due Paesi per risolvere i problemi: l\u2019obiettivo rimane quello di ridurre gli arrivi ed aumentare le espulsioni.", "post_text": "Innsbruck, incontro molto positivo tra Italia e Germania: meno sbarchi, meno morti, meno immigrati clandestini.\nComincia un percorso comune tra i due Paesi per risolvere i problemi: l\u2019obiettivo rimane quello di ridurre gli arrivi ed aumentare le espulsioni.", "shared_text": "", "time": "2018-07-11 19:50:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155908348698155&id=252306033154", "link": null} +{"post_id": "10155905820143155", "text": "\u00c8 iniziata una guerra senza quartiere, in tutta Italia.\nQuesta mattina, a Palmi (Reggio Calabria), ho consegnato personalmente le chiavi di una palazzina, confiscata ad una famiglia mafiosa, alla Polizia di\u2026 Altro Stato: diventer\u00e0 un Commissariato.\nVoglio sequestrare fino all'ultimo centesimo di euro a questa gentaglia, per me 'ndranghetisti e scafisti sono la stessa feccia!\n#lamafiamifaschifo", "post_text": "\u00c8 iniziata una guerra senza quartiere, in tutta Italia.\nQuesta mattina, a Palmi (Reggio Calabria), ho consegnato personalmente le chiavi di una palazzina, confiscata ad una famiglia mafiosa, alla Polizia di\u2026 Altro Stato: diventer\u00e0 un Commissariato.\nVoglio sequestrare fino all'ultimo centesimo di euro a questa gentaglia, per me 'ndranghetisti e scafisti sono la stessa feccia!\n#lamafiamifaschifo", "shared_text": "", "time": "2018-07-10 21:33:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155905820143155&id=252306033154", "link": null} +{"post_id": "10155905935858155", "text": "650.000 sbarchi, 430.000 domande di asilo politico, 170.000 immigrati mantenuti in case e alberghi. Ma per questi \u201cdigiunanti\u201d buonisti non \u00e8 abbastanza e \u201cSalvini \u00e8 come Mussolini\u201d. Mi fanno tenerezza: buon digiuno, io mi faccio un doppio panino col salame alla vostra salute!\ud83d\ude01", "post_text": "650.000 sbarchi, 430.000 domande di asilo politico, 170.000 immigrati mantenuti in case e alberghi. Ma per questi \u201cdigiunanti\u201d buonisti non \u00e8 abbastanza e \u201cSalvini \u00e8 come Mussolini\u201d. Mi fanno tenerezza: buon digiuno, io mi faccio un doppio panino col salame alla vostra salute!\ud83d\ude01", "shared_text": "", "time": "2018-07-10 19:31:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155905935858155&id=252306033154", "link": null} +{"post_id": "10155905867008155", "text": "Finch\u00e9 ci saranno navi nel Mediterraneo che aiuteranno gli scafisti a fare il loro sporco mestiere, partenze e morti non si fermeranno, e io sono stufo di vedere gente innocente morire in mare.", "post_text": "Finch\u00e9 ci saranno navi nel Mediterraneo che aiuteranno gli scafisti a fare il loro sporco mestiere, partenze e morti non si fermeranno, e io sono stufo di vedere gente innocente morire in mare.", "shared_text": "", "time": "2018-07-10 18:28:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155905867008155&id=252306033154", "link": null} +{"post_id": "10155905513418155", "text": "\u201cMagliette rosse\u201d incontrate oggi, fate ciao ciao! \ud83d\ude03\nP.s. La DISUMANIT\u00c0 \u00e8 quella di chi ha permesso negli anni scorsi un\u2019immigrazione senza controllo e senza freni, che crea nuovi schiavi sfruttati dalla\u2026 Altro criminalit\u00e0 organizzata e situazioni vergognose come la tendopoli di San Ferdinando, visitata oggi.\nOCCORRONO limiti, regole, ordine, rispetto e civilt\u00e0.\nIl mio impegno sar\u00e0 massimo per rimediare ai disastri dei governi che ci hanno preceduto.", "post_text": "\u201cMagliette rosse\u201d incontrate oggi, fate ciao ciao! \ud83d\ude03\nP.s. La DISUMANIT\u00c0 \u00e8 quella di chi ha permesso negli anni scorsi un\u2019immigrazione senza controllo e senza freni, che crea nuovi schiavi sfruttati dalla\u2026 Altro criminalit\u00e0 organizzata e situazioni vergognose come la tendopoli di San Ferdinando, visitata oggi.\nOCCORRONO limiti, regole, ordine, rispetto e civilt\u00e0.\nIl mio impegno sar\u00e0 massimo per rimediare ai disastri dei governi che ci hanno preceduto.", "shared_text": "", "time": "2018-07-10 15:34:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155905513418155&id=252306033154", "link": null} +{"post_id": "10155903346543155", "text": "Ora in visita al Comando generale dell\u2019Arma dei Carabinieri a Roma, poi vi aggiorno!", "post_text": "Ora in visita al Comando generale dell\u2019Arma dei Carabinieri a Roma, poi vi aggiorno!", "shared_text": "", "time": "2018-07-09 16:22:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155903346543155&id=252306033154", "link": null} +{"post_id": "10155898430878155", "text": "Ricordando la giornata di domenica scorsa a #Pontida18, che rimarr\u00e0 sempre nel mio cuore!", "post_text": "Ricordando la giornata di domenica scorsa a #Pontida18, che rimarr\u00e0 sempre nel mio cuore!", "shared_text": "", "time": "2018-07-08 10:00:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155898430878155&id=252306033154", "link": null} +{"post_id": "10155898582418155", "text": "A Perugia altra brillante retata della Polizia, che ringrazio: arrestati 25 \u201cprofughi\u201d nigeriani per spaccio di eroina nei parchi.\nChi vende morte nelle nostre citt\u00e0 fingendosi bisognoso di asilo e protezione \u00e8 un verme due volte.\nFuori dall\u2019Italia questi delinquenti!\n#tolleranzazero", "post_text": "A Perugia altra brillante retata della Polizia, che ringrazio: arrestati 25 \u201cprofughi\u201d nigeriani per spaccio di eroina nei parchi.\nChi vende morte nelle nostre citt\u00e0 fingendosi bisognoso di asilo e protezione \u00e8 un verme due volte.\nFuori dall\u2019Italia questi delinquenti!\n#tolleranzazero", "shared_text": "", "time": "2018-07-07 21:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155898582418155&id=252306033154", "link": null} +{"post_id": "10155894507748155", "text": "Contento dei miei primi 35 giorni al governo, onore e onere per il quale ringrazio ogni giorno gli italiani. Continuer\u00f2 a mettercela tutta, e a tenervi informati il pi\u00f9 possibile!", "post_text": "Contento dei miei primi 35 giorni al governo, onore e onere per il quale ringrazio ogni giorno gli italiani. Continuer\u00f2 a mettercela tutta, e a tenervi informati il pi\u00f9 possibile!", "shared_text": "", "time": "2018-07-06 08:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155894507748155&id=252306033154", "link": null} +{"post_id": "10155894022408155", "text": "Spero che dopo la fase iniziale di sperimentazione, il taser potr\u00e0 essere in dotazione agli agenti di tutte le citt\u00e0 italiane. Pi\u00f9 sicurezza e pi\u00f9 efficacia nell'azione delle Forze dell'ordine.", "post_text": "Spero che dopo la fase iniziale di sperimentazione, il taser potr\u00e0 essere in dotazione agli agenti di tutte le citt\u00e0 italiane. Pi\u00f9 sicurezza e pi\u00f9 efficacia nell'azione delle Forze dell'ordine.", "shared_text": "", "time": "2018-07-05 21:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155894022408155&id=252306033154", "link": null} +{"post_id": "10155891662653155", "text": "L'anno scorso dal 1\u00b0 giugno al 3 luglio, con un altro governo ed un altro ministro, sono sbarcate 24.900 persone. Quest'anno, dalla data del mio insediamento ad oggi, ne sono sbarcate 3.098.\nIl mio obiettivo \u00e8 che ne sbarchino ancora di meno, il business dell'immigrazione clandestina \u00e8 FINITO.", "post_text": "L'anno scorso dal 1\u00b0 giugno al 3 luglio, con un altro governo ed un altro ministro, sono sbarcate 24.900 persone. Quest'anno, dalla data del mio insediamento ad oggi, ne sono sbarcate 3.098.\nIl mio obiettivo \u00e8 che ne sbarchino ancora di meno, il business dell'immigrazione clandestina \u00e8 FINITO.", "shared_text": "", "time": "2018-07-05 13:30:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155891662653155&id=252306033154", "link": null} +{"post_id": "10155893528453155", "text": "Con oltre 30% di disoccupazione giovanile, il presidente dell'Inps non pu\u00f2 dire che ci vogliono pi\u00f9 immigrati per pagarci le pensioni, \u00e8 un insulto nei confronti degli italiani.\nSbaglio?", "post_text": "Con oltre 30% di disoccupazione giovanile, il presidente dell'Inps non pu\u00f2 dire che ci vogliono pi\u00f9 immigrati per pagarci le pensioni, \u00e8 un insulto nei confronti degli italiani.\nSbaglio?", "shared_text": "", "time": "2018-07-05 09:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155891753988155&id=252306033154", "link": null} +{"post_id": "10155891147898155", "text": "Voglio che l'Agenzia dei beni confiscati ai mafiosi triplichi il suo organico e la sua efficacia, e presto sar\u00f2 a Palmi, in Calabria, dove 8 appartamenti sequestrati diventeranno un commissariato di Polizia.\nMafiosi e camorristi sappiano che la pacchia \u00e8 FINITA. Fuori dall'Italia!\n#lamafiamifaschifo", "post_text": "Voglio che l'Agenzia dei beni confiscati ai mafiosi triplichi il suo organico e la sua efficacia, e presto sar\u00f2 a Palmi, in Calabria, dove 8 appartamenti sequestrati diventeranno un commissariato di Polizia.\nMafiosi e camorristi sappiano che la pacchia \u00e8 FINITA. Fuori dall'Italia!\n#lamafiamifaschifo", "shared_text": "", "time": "2018-07-04 17:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155891147898155&id=252306033154", "link": null} +{"post_id": "10155887351653155", "text": "Una domenica che rimarr\u00e0 nel cuore di chi c'era e anche di chi l'ha vissuta a distanza. Con l'obiettivo di esserci di persona l'anno prossimo!\n#Pontida18 #primagliitaliani", "post_text": "Una domenica che rimarr\u00e0 nel cuore di chi c'era e anche di chi l'ha vissuta a distanza. Con l'obiettivo di esserci di persona l'anno prossimo!\n#Pontida18 #primagliitaliani", "shared_text": "", "time": "2018-07-04 11:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155887351653155&id=252306033154", "link": null} +{"post_id": "10155888819198155", "text": "Che gusto fare il bagno nella piscina confiscata al boss mafioso!\n", "post_text": "Che gusto fare il bagno nella piscina confiscata al boss mafioso!", "shared_text": "", "time": "2018-07-03 17:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155888819198155&id=252306033154", "link": null} +{"post_id": "10155887250813155", "text": "Che spettacolo il Palio! Complimenti alla contrada del Drago!", "post_text": "Che spettacolo il Palio! Complimenti alla contrada del Drago!", "shared_text": "", "time": "2018-07-02 22:45:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155887250813155&id=252306033154", "link": null} +{"post_id": "10155886545738155", "text": "Se volete vederlo o rivederlo, ecco il mio intervento di domenica a Pontida, per me sempre una grandissima emozione!\n#primagliitaliani", "post_text": "Se volete vederlo o rivederlo, ecco il mio intervento di domenica a Pontida, per me sempre una grandissima emozione!\n#primagliitaliani", "shared_text": "", "time": "2018-07-02 18:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155886545738155&id=252306033154", "link": null} +{"post_id": "10155884727383155", "text": "Pontida, che giornata!", "post_text": "Pontida, che giornata!", "shared_text": "", "time": "2018-07-01 22:19:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155884727383155&id=252306033154", "link": null} +{"post_id": "10155883691073155", "text": "Grazie!!! Siete fantastici!", "post_text": "Grazie!!! Siete fantastici!", "shared_text": "", "time": "2018-07-01 14:18:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155883691073155&id=252306033154", "link": null} +{"post_id": "10155883220513155", "text": "Appena arrivato a #Pontida18, \u00e8 gi\u00e0 uno spettacolo! Seguitemi live \ud83d\ude0d", "post_text": "Appena arrivato a #Pontida18, \u00e8 gi\u00e0 uno spettacolo! Seguitemi live \ud83d\ude0d", "shared_text": "", "time": "2018-07-01 10:12:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155883220513155&id=252306033154", "link": null} +{"post_id": "10155878624928155", "text": "Ora in diretta da Milano, al Festival del Lavoro!", "post_text": "Ora in diretta da Milano, al Festival del Lavoro!", "shared_text": "", "time": "2018-06-29 09:45:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155878624928155&id=252306033154", "link": null} +{"post_id": "10155860242908155", "text": "L'ho detto e l'ho fatto: agli scafisti e ai loro complici l'Italia dice NO!", "post_text": "L'ho detto e l'ho fatto: agli scafisti e ai loro complici l'Italia dice NO!", "shared_text": "", "time": "2018-06-29 09:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155860242908155&id=252306033154", "link": null} +{"post_id": "10155877612453155", "text": "In diretta dalla festa della Lega di Caravaggio (Bergamo).\nSeguitemi live! \ud83d\ude0a", "post_text": "In diretta dalla festa della Lega di Caravaggio (Bergamo).\nSeguitemi live! \ud83d\ude0a", "shared_text": "", "time": "2018-06-28 21:55:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155877612453155&id=252306033154", "link": null} +{"post_id": "10155872505448155", "text": "ROM, dalle parole ai fatti!\nRoghi tossici, furti e ricettazione.\n200 mila euro di beni sequestrati e svariati arresti al campo Rom di Torino, dove sono stato anche io pi\u00f9 volte.\nComplimenti ai Carabinieri per\u2026 Altro il blitz.\nNei confronti di queste situazioni c'\u00e8 un'unica soluzione: TOLLERANZA ZERO!\nL'aria \u00e8 cambiata, le regole devono valere per tutti.", "post_text": "ROM, dalle parole ai fatti!\nRoghi tossici, furti e ricettazione.\n200 mila euro di beni sequestrati e svariati arresti al campo Rom di Torino, dove sono stato anche io pi\u00f9 volte.\nComplimenti ai Carabinieri per\u2026 Altro il blitz.\nNei confronti di queste situazioni c'\u00e8 un'unica soluzione: TOLLERANZA ZERO!\nL'aria \u00e8 cambiata, le regole devono valere per tutti.", "shared_text": "", "time": "2018-06-26 21:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155872505448155&id=252306033154", "link": null} +{"post_id": "10155872663288155", "text": "Questa mattina sono stato all'assemblea nazionale di Confartigianato.\nSenza bacchette magiche, faremo di tutto per aiutare i piccoli, perch\u00e9 negli ultimi anni si \u00e8 fatto tanto solo per i grandi.\nViva gli artigiani italiani che difenderemo con ogni mezzo.", "post_text": "Questa mattina sono stato all'assemblea nazionale di Confartigianato.\nSenza bacchette magiche, faremo di tutto per aiutare i piccoli, perch\u00e9 negli ultimi anni si \u00e8 fatto tanto solo per i grandi.\nViva gli artigiani italiani che difenderemo con ogni mezzo.", "shared_text": "", "time": "2018-06-26 20:00:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155872663288155&id=252306033154", "link": null} +{"post_id": "10155870626073155", "text": "Gli interessi italiani e quelli libici sono comuni: proteggere le proprie frontiere esterne.\nSiamo disponibili ad accogliere chi fugge realmente dalla guerra, non quelli che dalla guerra non scappano.", "post_text": "Gli interessi italiani e quelli libici sono comuni: proteggere le proprie frontiere esterne.\nSiamo disponibili ad accogliere chi fugge realmente dalla guerra, non quelli che dalla guerra non scappano.", "shared_text": "", "time": "2018-06-26 11:46:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155870626073155&id=252306033154", "link": null} +{"post_id": "10155870037313155", "text": "In diretta dal Ministero dell'Interno le mie dichiarazioni dopo il viaggio in Libia. Seguitemi!", "post_text": "In diretta dal Ministero dell'Interno le mie dichiarazioni dopo il viaggio in Libia. Seguitemi!", "shared_text": "", "time": "2018-06-25 17:45:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155870037313155&id=252306033154", "link": null} +{"post_id": "10155869462808155", "text": "In diretta da Tripoli conferenza stampa con il vicepremier libico Ahmed Maitig.", "post_text": "In diretta da Tripoli conferenza stampa con il vicepremier libico Ahmed Maitig.", "shared_text": "", "time": "2018-06-25 12:11:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155869462808155&id=252306033154", "link": null} +{"post_id": "10155869324083155", "text": "Ci sono Paesi europei, tra cui la Francia, che propongono la creazione di hotspots dell'accoglienza in Italia: questo sarebbe un problema per noi e per la Libia stessa perch\u00e9 i flussi della morte non verrebbero\u2026 Altro interrotti.\nNoi invece abbiamo proposto dei centri di accoglienza posti ai confini a Sud della Libia per evitare che anche Tripoli diventi un imbuto, come l'Italia.", "post_text": "Ci sono Paesi europei, tra cui la Francia, che propongono la creazione di hotspots dell'accoglienza in Italia: questo sarebbe un problema per noi e per la Libia stessa perch\u00e9 i flussi della morte non verrebbero\u2026 Altro interrotti.\nNoi invece abbiamo proposto dei centri di accoglienza posti ai confini a Sud della Libia per evitare che anche Tripoli diventi un imbuto, come l'Italia.", "shared_text": "", "time": "2018-06-25 11:39:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155869324083155&id=252306033154", "link": null} +{"post_id": "10155864699073155", "text": "Oggi nei comuni al ballottaggio conto su di voi!\n#primagliitaliani", "post_text": "Oggi nei comuni al ballottaggio conto su di voi!\n#primagliitaliani", "shared_text": "", "time": "2018-06-24 08:00:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155864699073155&id=252306033154", "link": null} +{"post_id": "10155864561913155", "text": "Certe navi si devono scordare l\u2019Italia, stop al business dell\u2019immigrazione clandestina! La musica \u00e8 cambiata, io ce la metto tutta.", "post_text": "Certe navi si devono scordare l\u2019Italia, stop al business dell\u2019immigrazione clandestina! La musica \u00e8 cambiata, io ce la metto tutta.", "shared_text": "", "time": "2018-06-23 15:02:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155864561913155&id=252306033154", "link": null} +{"post_id": "10155862576798155", "text": "Ora in diretta da Marina di Pietrasanta.\nMi seguite?", "post_text": "Ora in diretta da Marina di Pietrasanta.\nMi seguite?", "shared_text": "", "time": "2018-06-22 18:45:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155862576798155&id=252306033154", "link": null} +{"post_id": "10155861619208155", "text": "In diretta dalla splendida Siena!", "post_text": "In diretta dalla splendida Siena!", "shared_text": "", "time": "2018-06-22 09:55:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155861619208155&id=252306033154", "link": null} +{"post_id": "10155860357088155", "text": "Ora da Terni, chi si ferma \u00e8 perduto!", "post_text": "Ora da Terni, chi si ferma \u00e8 perduto!", "shared_text": "", "time": "2018-06-21 21:14:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155860357088155&id=252306033154", "link": null} +{"post_id": "10155860246733155", "text": "Amici, ecco la mia intervista di questa mattina ad Agor\u00e0. Ho spiegato come stiamo lavorando per bloccare l'immigrazione clandestina e per restituire sicurezza e futuro agli italiani. Leggo i vostri commenti!", "post_text": "Amici, ecco la mia intervista di questa mattina ad Agor\u00e0. Ho spiegato come stiamo lavorando per bloccare l'immigrazione clandestina e per restituire sicurezza e futuro agli italiani. Leggo i vostri commenti!", "shared_text": "", "time": "2018-06-21 20:24:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155860246733155&id=252306033154", "link": null} +{"post_id": "10155857672613155", "text": "Nei prossimi giorni sar\u00f2 in Libia: l'Italia dovr\u00e0 riprendere un ruolo centrale per garantire la stabilit\u00e0 di tutta l'area, offrendo collaborazione non solo sul tema immigrazione ma anche per lo sviluppo economico di quel Paese.", "post_text": "Nei prossimi giorni sar\u00f2 in Libia: l'Italia dovr\u00e0 riprendere un ruolo centrale per garantire la stabilit\u00e0 di tutta l'area, offrendo collaborazione non solo sul tema immigrazione ma anche per lo sviluppo economico di quel Paese.", "shared_text": "", "time": "2018-06-21 15:00:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155857672613155&id=252306033154", "link": null} +{"post_id": "10155859368628155", "text": "Riguardate con me il mio intervento di ieri sera da Vespa, spero di aver portato la voce di tanti italiani.", "post_text": "Riguardate con me il mio intervento di ieri sera da Vespa, spero di aver portato la voce di tanti italiani.", "shared_text": "", "time": "2018-06-21 13:30:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155859368628155&id=252306033154", "link": null} +{"post_id": "10155859226973155", "text": "Scafisti e loro complici, l\u2019Italia dice STOP.\nRidurre partenze e morti, difendere i confini italiani.\nIo vado avanti!", "post_text": "Scafisti e loro complici, l\u2019Italia dice STOP.\nRidurre partenze e morti, difendere i confini italiani.\nIo vado avanti!", "shared_text": "", "time": "2018-06-21 12:09:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155859226973155&id=252306033154", "link": null} +{"post_id": "10155856717738155", "text": "Maxi blitz nella notte con 150 Carabinieri all'opera in provincia di Bergamo. Trenta immigrati clandestini, molti dei quali con precedenti penali alle spalle, sono stati fermati.\nSempre grazie alle nostre\u2026 Altro Forze dell'Ordine: \u00e8 ora che in Italia torni di moda la legalit\u00e0!\nhttps://www.ecodibergamo.it/stories/bassa-bergamasca/maxi-blitz-di-150-carabinieri-a-zingoniaperquisiti-tre-palazzi-anna-armi-e-dr_1282213_11/", "post_text": "Maxi blitz nella notte con 150 Carabinieri all'opera in provincia di Bergamo. Trenta immigrati clandestini, molti dei quali con precedenti penali alle spalle, sono stati fermati.\nSempre grazie alle nostre\u2026 Altro Forze dell'Ordine: \u00e8 ora che in Italia torni di moda la legalit\u00e0!\nhttps://www.ecodibergamo.it/stories/bassa-bergamasca/maxi-blitz-di-150-carabinieri-a-zingoniaperquisiti-tre-palazzi-anna-armi-e-dr_1282213_11/", "shared_text": "", "time": "2018-06-20 15:10:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155856717738155&id=252306033154", "link": "https://www.ecodibergamo.it/stories/bassa-bergamasca/maxi-blitz-di-150-carabinieri-a-zingoniaperquisiti-tre-palazzi-anna-armi-e-dr_1282213_11/?fbclid=IwAR1ntqZbuRWOsh4F2JCt-FoBIcveAebV3hZuAh_llyuL8NxnFYnUzGgSONE"} +{"post_id": "10155855587053155", "text": "Ragazze e ragazzi, in bocca al lupo per la MATURIT\u00c0!\nUn po\u2019 vi invidio e se potessi tornerei agli anni del Manzoni a Milano, con i miei italiano e latino allo scritto, greco e storia all\u2019orale, e un 48 finale.\n#maturit\u00e02018", "post_text": "Ragazze e ragazzi, in bocca al lupo per la MATURIT\u00c0!\nUn po\u2019 vi invidio e se potessi tornerei agli anni del Manzoni a Milano, con i miei italiano e latino allo scritto, greco e storia all\u2019orale, e un 48 finale.\n#maturit\u00e02018", "shared_text": "", "time": "2018-06-20 07:00:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155855587053155&id=252306033154", "link": null} +{"post_id": "10155855369738155", "text": "In diretta con gli amici di Skuola.net, un saluto e in bocca al lupo a tutti i ragazzi che domani iniziano gli esami di maturit\u00e0, ricordando i miei! #notteprimadegliesami", "post_text": "In diretta con gli amici di Skuola.net, un saluto e in bocca al lupo a tutti i ragazzi che domani iniziano gli esami di maturit\u00e0, ricordando i miei! #notteprimadegliesami", "shared_text": "", "time": "2018-06-19 22:04:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155855369738155&id=252306033154", "link": "http://Skuola.net/?fbclid=IwAR1OIvYM7Vh5yFZtmtNS78KGFmGP4a1JuH_657u7VCAVCcDje8hkAw-2pPc"} +{"post_id": "10155854989833155", "text": "Fino alla scorsa settimana nessuno ci filava, perch\u00e9 si andava da tutti con il cappello in mano.\nAdesso l'Italia torna ad essere un Paese con il suo orgoglio, i suoi confini e la sua dignit\u00e0.\n#primagliitaliani", "post_text": "Fino alla scorsa settimana nessuno ci filava, perch\u00e9 si andava da tutti con il cappello in mano.\nAdesso l'Italia torna ad essere un Paese con il suo orgoglio, i suoi confini e la sua dignit\u00e0.\n#primagliitaliani", "shared_text": "", "time": "2018-06-19 20:13:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155854989833155&id=252306033154", "link": null} +{"post_id": "10155852720493155", "text": "Ieri sera da Giletti ho ricordato che prima ci usavano, neppure c\u2019era bisogno di parlarci: l\u2019Italia la davano per SCONTATA. Ora, che la musica sia cambiata lo hanno capito tutti, e non ho intenzione di fermarmi.", "post_text": "Ieri sera da Giletti ho ricordato che prima ci usavano, neppure c\u2019era bisogno di parlarci: l\u2019Italia la davano per SCONTATA. Ora, che la musica sia cambiata lo hanno capito tutti, e non ho intenzione di fermarmi.", "shared_text": "", "time": "2018-06-18 20:00:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155852720493155&id=252306033154", "link": null} +{"post_id": "10155852249838155", "text": "\"Ma era Salvini o Mussolini? Lui dice di andare in Africa per costruire case, gli manca solo che canti faccetta nera\".\nAlle offese del vicesindaco buonista di Valencia rispondo con un bel bacione\ud83d\ude18", "post_text": "\"Ma era Salvini o Mussolini? Lui dice di andare in Africa per costruire case, gli manca solo che canti faccetta nera\".\nAlle offese del vicesindaco buonista di Valencia rispondo con un bel bacione\ud83d\ude18", "shared_text": "", "time": "2018-06-18 18:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155852249838155&id=252306033154", "link": null} +{"post_id": "10155850645268155", "text": "Ieri sera a Sondrio, spettacolo!\nForza! Questa domenica ai ballottaggi dobbiamo portare il buongoverno ancora a tanti comuni, bastano 5 minuti del vostro tempo per scegliere i sindaci sostenuti dalla Lega. #primagliitaliani", "post_text": "Ieri sera a Sondrio, spettacolo!\nForza! Questa domenica ai ballottaggi dobbiamo portare il buongoverno ancora a tanti comuni, bastano 5 minuti del vostro tempo per scegliere i sindaci sostenuti dalla Lega. #primagliitaliani", "shared_text": "", "time": "2018-06-18 14:31:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155850645268155&id=252306033154", "link": null} +{"post_id": "10155850353268155", "text": "A Renzi che mi d\u00e0 del \u201cbullo\u201d non ho nulla da rispondere, gli hanno gi\u00e0 risposto gli italiani, mandandolo a casa!", "post_text": "A Renzi che mi d\u00e0 del \u201cbullo\u201d non ho nulla da rispondere, gli hanno gi\u00e0 risposto gli italiani, mandandolo a casa!", "shared_text": "", "time": "2018-06-17 22:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155850353268155&id=252306033154", "link": null} +{"post_id": "10155850080368155", "text": "In diretta da Cinisello Balsamo (Milano), #domenicavotoLega", "post_text": "In diretta da Cinisello Balsamo (Milano), #domenicavotoLega", "shared_text": "", "time": "2018-06-17 18:22:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155850080368155&id=252306033154", "link": null} +{"post_id": "10155847336193155", "text": "\"ODIO LA LEGA, apriamo i porti, mandiamo via Salvini\". Noi non odiamo nessuno e mandiamo un \ud83d\ude18 anche a loro.\nP.s. Per la Pontida, quella vera, fatta solo di sorrisi, speranza e futuro, l\u2019appuntamento \u00e8 tra due domeniche, il 1\u00b0 luglio: vi aspetto in un mare.", "post_text": "\"ODIO LA LEGA, apriamo i porti, mandiamo via Salvini\". Noi non odiamo nessuno e mandiamo un \ud83d\ude18 anche a loro.\nP.s. Per la Pontida, quella vera, fatta solo di sorrisi, speranza e futuro, l\u2019appuntamento \u00e8 tra due domeniche, il 1\u00b0 luglio: vi aspetto in un mare.", "shared_text": "", "time": "2018-06-17 16:36:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155847336193155&id=252306033154", "link": null} +{"post_id": "10155849211128155", "text": "La Aquarius approda in Spagna. Per la prima volta una nave partita dalla Libia e destinata in Italia attracca in un Paese diverso: segno che qualcosa sta cambiando, non siamo pi\u00fa gli zerbini d\u2019Europa.", "post_text": "La Aquarius approda in Spagna. Per la prima volta una nave partita dalla Libia e destinata in Italia attracca in un Paese diverso: segno che qualcosa sta cambiando, non siamo pi\u00fa gli zerbini d\u2019Europa.", "shared_text": "", "time": "2018-06-17 11:58:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155849211128155&id=252306033154", "link": null} +{"post_id": "10155844728553155", "text": "Ultima tappa della giornata, Ivrea (Torino)! Ma quanti siete???", "post_text": "Ultima tappa della giornata, Ivrea (Torino)! Ma quanti siete???", "shared_text": "", "time": "2018-06-15 21:10:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155844728553155&id=252306033154", "link": null} +{"post_id": "10155844333243155", "text": "Qui Orbassano (Torino)! Grazie amici, conto su di voi, domenica 24 giugno, ultimo sforzo per portare in centinaia di comuni italiani il buon governo della Lega!", "post_text": "Qui Orbassano (Torino)! Grazie amici, conto su di voi, domenica 24 giugno, ultimo sforzo per portare in centinaia di comuni italiani il buon governo della Lega!", "shared_text": "", "time": "2018-06-15 18:06:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155844333243155&id=252306033154", "link": null} +{"post_id": "10155843576408155", "text": "Live da Genova!", "post_text": "Live da Genova!", "shared_text": "", "time": "2018-06-15 12:11:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155843576408155&id=252306033154", "link": null} +{"post_id": "10155841122318155", "text": "La mia intervista di ieri sera a Radio 105 Matrix, se vi va seguite e commentate!", "post_text": "La mia intervista di ieri sera a Radio 105 Matrix, se vi va seguite e commentate!", "shared_text": "", "time": "2018-06-14 11:35:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155841122318155&id=252306033154", "link": null} +{"post_id": "10155839708418155", "text": "In 1 minuto una parola di verit\u00e0, spero anche a nome vostro, sui bambini morti come bestie nel Mar Mediterraneo e sullo schifoso business dell'immigrazione, non ho mai taciuto e non tacer\u00f2 adesso!", "post_text": "In 1 minuto una parola di verit\u00e0, spero anche a nome vostro, sui bambini morti come bestie nel Mar Mediterraneo e sullo schifoso business dell'immigrazione, non ho mai taciuto e non tacer\u00f2 adesso!", "shared_text": "", "time": "2018-06-13 21:31:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155839708418155&id=252306033154", "link": null} +{"post_id": "10155837308203155", "text": "Ecco il mio intervento di questa sera dalla Gruber su La7. Linea dura? Solo BUONSENSO. Il mio dovere \u00e8 garantire la sicurezza a 60 milioni di italiani.\nCondividete anche voi!", "post_text": "Ecco il mio intervento di questa sera dalla Gruber su La7. Linea dura? Solo BUONSENSO. Il mio dovere \u00e8 garantire la sicurezza a 60 milioni di italiani.\nCondividete anche voi!", "shared_text": "", "time": "2018-06-12 22:14:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155837308203155&id=252306033154", "link": null} +{"post_id": "10155831396558155", "text": "Gino Strada: Salvini ministro RAZZISTA e \u201cSBIRRO\u201d.\nSenza parole...\nStop ai trafficanti di esseri umani, difendiamo i confini: io non mollo, Amici.\n#chiudiamoiporti", "post_text": "Gino Strada: Salvini ministro RAZZISTA e \u201cSBIRRO\u201d.\nSenza parole...\nStop ai trafficanti di esseri umani, difendiamo i confini: io non mollo, Amici.\n#chiudiamoiporti", "shared_text": "", "time": "2018-06-10 23:00:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155831396558155&id=252306033154", "link": null} +{"post_id": "10155828325443155", "text": "Da soli sette giorni al governo, sto lavorando per recuperare quasi sette anni di ritardi e di buonismo: il nostro obiettivo \u00e8 ridurre gli sbarchi e aumentare le espulsioni, tagliare i costi per il mantenimento\u2026 Altro dei presunti profughi e i tempi della loro permanenza in Italia, coinvolgendo istituzioni europee e internazionali che fino ad oggi hanno lasciato gli italiani da soli. Sapremo farci ascoltare!", "post_text": "Da soli sette giorni al governo, sto lavorando per recuperare quasi sette anni di ritardi e di buonismo: il nostro obiettivo \u00e8 ridurre gli sbarchi e aumentare le espulsioni, tagliare i costi per il mantenimento\u2026 Altro dei presunti profughi e i tempi della loro permanenza in Italia, coinvolgendo istituzioni europee e internazionali che fino ad oggi hanno lasciato gli italiani da soli. Sapremo farci ascoltare!", "shared_text": "", "time": "2018-06-09 11:30:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155828325443155&id=252306033154", "link": null} +{"post_id": "10155824640408155", "text": "Un pensiero ai valsusini di Bussoleno che stanno vivendo ore difficili e un grazie ai #vigilidelfuoco e a tutti coloro impegnati nel soccorso.", "post_text": "Un pensiero ai valsusini di Bussoleno che stanno vivendo ore difficili e un grazie ai #vigilidelfuoco e a tutti coloro impegnati nel soccorso.", "shared_text": "", "time": "2018-06-07 20:04:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155824640408155&id=252306033154", "link": null} +{"post_id": "10155823644753155", "text": "Qui a #ConfCommercio2018, con chi produce e resiste!\nCommercianti, partite IVA e imprese hanno bisogno di pace fiscale, flat tax, eliminazione di spesometri, redditometri, studi di settore e burocrazia, questo sar\u00e0 il nostro impegno.\n#GovernoGialloBlu", "post_text": "Qui a #ConfCommercio2018, con chi produce e resiste!\nCommercianti, partite IVA e imprese hanno bisogno di pace fiscale, flat tax, eliminazione di spesometri, redditometri, studi di settore e burocrazia, questo sar\u00e0 il nostro impegno.\n#GovernoGialloBlu", "shared_text": "", "time": "2018-06-07 10:57:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155823644753155&id=252306033154", "link": null} +{"post_id": "10155823570748155", "text": "La mia linea d'azione come ministro: aumentare il numero dei centri per i rimpatri, in modo che gli immigrati stiano dentro e non girino per le citt\u00e0 facendo confusione, ridurre il numero degli sbarchi e aumentare il numero delle espulsioni. Gli immigrati regolari non hanno nulla da temere.\nMi sembra solo BUONSENSO.", "post_text": "La mia linea d'azione come ministro: aumentare il numero dei centri per i rimpatri, in modo che gli immigrati stiano dentro e non girino per le citt\u00e0 facendo confusione, ridurre il numero degli sbarchi e aumentare il numero delle espulsioni. Gli immigrati regolari non hanno nulla da temere.\nMi sembra solo BUONSENSO.", "shared_text": "", "time": "2018-06-07 10:20:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155823570748155&id=252306033154", "link": null} +{"post_id": "10155822268983155", "text": "Brindisi con la Lega, spettacolo! #domenicavotoLega", "post_text": "Brindisi con la Lega, spettacolo! #domenicavotoLega", "shared_text": "", "time": "2018-06-06 20:27:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155822268983155&id=252306033154", "link": null} +{"post_id": "10155821567008155", "text": "INCREDIBILE come i giornalisti italiani riescano a inventarsi bugie dalla mattina alla sera!\nEcco la mia intervista dove dico chiaramente che l'obiettivo \u00e8 che TUTTI paghino meno tasse! Ascoltate e aiutatemi a diffondere il pi\u00f9 possibile!", "post_text": "INCREDIBILE come i giornalisti italiani riescano a inventarsi bugie dalla mattina alla sera!\nEcco la mia intervista dove dico chiaramente che l'obiettivo \u00e8 che TUTTI paghino meno tasse! Ascoltate e aiutatemi a diffondere il pi\u00f9 possibile!", "shared_text": "", "time": "2018-06-06 15:25:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155821567008155&id=252306033154", "link": null} +{"post_id": "10155820982283155", "text": "Venditori aggrediscono i Carabinieri e durante un controllo ne mandano all\u2019ospedale uno, al quale invio tutta la mia solidariet\u00e0 e auguri di buona guarigione.\nServe #tolleranzazero: espulsioni per i clandestini e restituzione alle nostre citt\u00e0 di un clima di legalit\u00e0, questo \u00e8 il mio obiettivo.\n", "post_text": "Venditori aggrediscono i Carabinieri e durante un controllo ne mandano all\u2019ospedale uno, al quale invio tutta la mia solidariet\u00e0 e auguri di buona guarigione.\nServe #tolleranzazero: espulsioni per i clandestini e restituzione alle nostre citt\u00e0 di un clima di legalit\u00e0, questo \u00e8 il mio obiettivo.", "shared_text": "", "time": "2018-06-06 11:03:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155820982283155&id=252306033154", "link": null} +{"post_id": "10155819603203155", "text": "I clandestini devono tener presente che in Italia per loro la pacchia non solo \u00e8 finita, \u00e8 STRA-finita!\nE ancora: pace fiscale, flat tax, tutela di agricoltura, pesca e turismo nel segno del Made in Italy, stop\u2026 Altro agli aumenti dell'IVA, no Ius Soli, difesa del lavoro e delle pensioni, pi\u00f9 sicurezza, pi\u00f9 rispetto.\nComincia una bella avventura, con gente perbene, motivata, onesta, pulita e concreta, comincia la rivoluzione del buonsenso!\n#primagliitaliani", "post_text": "I clandestini devono tener presente che in Italia per loro la pacchia non solo \u00e8 finita, \u00e8 STRA-finita!\nE ancora: pace fiscale, flat tax, tutela di agricoltura, pesca e turismo nel segno del Made in Italy, stop\u2026 Altro agli aumenti dell'IVA, no Ius Soli, difesa del lavoro e delle pensioni, pi\u00f9 sicurezza, pi\u00f9 rispetto.\nComincia una bella avventura, con gente perbene, motivata, onesta, pulita e concreta, comincia la rivoluzione del buonsenso!\n#primagliitaliani", "shared_text": "", "time": "2018-06-05 20:42:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155819603203155&id=252306033154", "link": null} +{"post_id": "10155818225068155", "text": "Sono pronto anche la settimana prossima a prendere l'aereo e incontrare il ministro dell'interno tunisino. Il nostro obiettivo \u00e8 salvare vite e far s\u00ec che ognuno stia meglio a casa sua, perch\u00e9 tutti hanno il diritto di vivere, crescere e metter su famiglia nel Paese in cui sono nati. Sbaglio?", "post_text": "Sono pronto anche la settimana prossima a prendere l'aereo e incontrare il ministro dell'interno tunisino. Il nostro obiettivo \u00e8 salvare vite e far s\u00ec che ognuno stia meglio a casa sua, perch\u00e9 tutti hanno il diritto di vivere, crescere e metter su famiglia nel Paese in cui sono nati. Sbaglio?", "shared_text": "", "time": "2018-06-05 19:19:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155818225068155&id=252306033154", "link": null} +{"post_id": "10155818622538155", "text": "Live da Roma!", "post_text": "Live da Roma!", "shared_text": "", "time": "2018-06-05 13:34:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155818622538155&id=252306033154", "link": null} +{"post_id": "10155817184513155", "text": "Grande Mario Giordano, uno dei pochi giornalisti liberi!\n#rosiconiasinistra", "post_text": "Grande Mario Giordano, uno dei pochi giornalisti liberi!\n#rosiconiasinistra", "shared_text": "", "time": "2018-06-05 09:38:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155817184513155&id=252306033154", "link": null} +{"post_id": "10155813683473155", "text": "A volte le cose improvvisate sono le pi\u00f9 belle, e questi sono per me i migliori sondaggi! Grazie Catania!\n#domenicavotolega", "post_text": "A volte le cose improvvisate sono le pi\u00f9 belle, e questi sono per me i migliori sondaggi! Grazie Catania!\n#domenicavotolega", "shared_text": "", "time": "2018-06-03 13:40:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155813683473155&id=252306033154", "link": null} +{"post_id": "10155812105873155", "text": "Di nuovo da Treviso per sostenere il candidato sindaco della Lega, Mario Conte! Ma quanti siete??? #10giugnovotoLega", "post_text": "Di nuovo da Treviso per sostenere il candidato sindaco della Lega, Mario Conte! Ma quanti siete??? #10giugnovotoLega", "shared_text": "", "time": "2018-06-02 21:07:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155812105873155&id=252306033154", "link": null} +{"post_id": "10155808800178155", "text": "Live il momento della foto di rito.", "post_text": "Live il momento della foto di rito.", "shared_text": "", "time": "2018-06-01 16:25:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155808800178155&id=252306033154", "link": null} +{"post_id": "10155808714888155", "text": "In diretta dal Quirinale, state con noi!", "post_text": "In diretta dal Quirinale, state con noi!", "shared_text": "", "time": "2018-06-01 16:00:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155808714888155&id=252306033154", "link": null} +{"post_id": "10155808729868155", "text": "In diretta dal Quirinale, ecco un\u2019altra inquadratura!", "post_text": "In diretta dal Quirinale, ecco un\u2019altra inquadratura!", "shared_text": "", "time": "2018-06-01 16:00:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155808729868155&id=252306033154", "link": null} +{"post_id": "10155806380478155", "text": "Ultime ore di lavoro per il governo, ce la stiamo mettendo tutta! Intanto la cronaca ci riporta alla dura realt\u00e0, con un immigrato che SPENNA I PICCIONI in pieno giorno e in mezzo alla strada... A casa!!!", "post_text": "Ultime ore di lavoro per il governo, ce la stiamo mettendo tutta! Intanto la cronaca ci riporta alla dura realt\u00e0, con un immigrato che SPENNA I PICCIONI in pieno giorno e in mezzo alla strada... A casa!!!", "shared_text": "", "time": "2018-05-31 18:01:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155806380478155&id=252306033154", "link": null} +{"post_id": "10155804237698155", "text": "Ieri sera su La7, io non mollo.\nMi dite come sono andato?", "post_text": "Ieri sera su La7, io non mollo.\nMi dite come sono andato?", "shared_text": "", "time": "2018-05-30 18:04:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155804237698155&id=252306033154", "link": null} +{"post_id": "10155804036473155", "text": "Da Sestri Levante, ma quanti siete?", "post_text": "Da Sestri Levante, ma quanti siete?", "shared_text": "", "time": "2018-05-30 16:07:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155804036473155&id=252306033154", "link": null} +{"post_id": "10155803550538155", "text": "Live da Massa!", "post_text": "Live da Massa!", "shared_text": "", "time": "2018-05-30 12:03:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155803550538155&id=252306033154", "link": null} +{"post_id": "10155803550468155", "text": "Mi sono emozionato, grazie Massa!", "post_text": "Mi sono emozionato, grazie Massa!", "shared_text": "", "time": "2018-05-30 11:59:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155803550468155&id=252306033154", "link": null} +{"post_id": "10155803441808155", "text": "Ancora live da Pisa, quanti siamo!!!", "post_text": "Ancora live da Pisa, quanti siamo!!!", "shared_text": "", "time": "2018-05-30 10:24:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155803441808155&id=252306033154", "link": null} +{"post_id": "10155802484278155", "text": "Live da Siena, ragazzi non molliamo!\n#primagliitaliani", "post_text": "Live da Siena, ragazzi non molliamo!\n#primagliitaliani", "shared_text": "", "time": "2018-05-29 21:59:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155802484278155&id=252306033154", "link": null} +{"post_id": "10155801843233155", "text": "Italia sotto attacco, ma ce la faremo!\n#insiemesultetto", "post_text": "Italia sotto attacco, ma ce la faremo!\n#insiemesultetto", "shared_text": "", "time": "2018-05-29 15:56:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155801843233155&id=252306033154", "link": null} +{"post_id": "10155801388238155", "text": "Questa mattina ho parlato su Rai Radio 1.\nMi dite come sono andato? Leggo i vostri commenti!", "post_text": "Questa mattina ho parlato su Rai Radio 1.\nMi dite come sono andato? Leggo i vostri commenti!", "shared_text": "", "time": "2018-05-29 11:38:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155801388238155&id=252306033154", "link": null} +{"post_id": "10155801297638155", "text": "Bambino contro poteri forti, vince bambino!\n#iostoconFabio", "post_text": "Bambino contro poteri forti, vince bambino!\n#iostoconFabio", "shared_text": "", "time": "2018-05-29 10:19:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155801297638155&id=252306033154", "link": null} +{"post_id": "10155799794503155", "text": "Amici, se stasera non avete impegni vi aspetto alle 21.30 su Canale 5 a #Matrix con Nicola Porro!", "post_text": "Amici, se stasera non avete impegni vi aspetto alle 21.30 su Canale 5 a #Matrix con Nicola Porro!", "shared_text": "", "time": "2018-05-28 20:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155799794503155&id=252306033154", "link": null} +{"post_id": "10155799343703155", "text": "Live da Roma!", "post_text": "Live da Roma!", "shared_text": "", "time": "2018-05-28 14:58:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155799343703155&id=252306033154", "link": null} +{"post_id": "10155798883853155", "text": "Live!", "post_text": "Live!", "shared_text": "", "time": "2018-05-28 10:05:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155798883853155&id=252306033154", "link": null} +{"post_id": "10155797776073155", "text": "Che brutta giornata per l\u2019Italia e per la Democrazia.\nEra tutto pronto, anche io ero pronto a occuparmi di immigrazione e sicurezza, ma niente, qualcuno oggi ha detto NO.\nIl governo del cambiamento non poteva\u2026 Altro nascere, i Signori dello Spread e delle banche, i ministri di Berlino, di Parigi e di Bruxelles non erano d\u2019accordo.\nRabbia? Tanta. Paura? Zero.\nCambieremo questo Paese, insieme.\nIo non mollo Amici, conto su di Voi.\nPrima gli italiani!", "post_text": "Che brutta giornata per l\u2019Italia e per la Democrazia.\nEra tutto pronto, anche io ero pronto a occuparmi di immigrazione e sicurezza, ma niente, qualcuno oggi ha detto NO.\nIl governo del cambiamento non poteva\u2026 Altro nascere, i Signori dello Spread e delle banche, i ministri di Berlino, di Parigi e di Bruxelles non erano d\u2019accordo.\nRabbia? Tanta. Paura? Zero.\nCambieremo questo Paese, insieme.\nIo non mollo Amici, conto su di Voi.\nPrima gli italiani!", "shared_text": "", "time": "2018-05-27 22:42:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155797776073155&id=252306033154", "link": null} +{"post_id": "10155797388953155", "text": "Grazie Terni!", "post_text": "Grazie Terni!", "shared_text": "", "time": "2018-05-27 20:11:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155797388953155&id=252306033154", "link": null} +{"post_id": "10155797299443155", "text": "Qui Terni, seguite live!", "post_text": "Qui Terni, seguite live!", "shared_text": "", "time": "2018-05-27 19:29:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155797299443155&id=252306033154", "link": null} +{"post_id": "10155795539998155", "text": "Altra festa Lega ora a Dalmine, sempre in provincia di Bergamo. Ma quanti siete? \ud83d\ude00", "post_text": "Altra festa Lega ora a Dalmine, sempre in provincia di Bergamo. Ma quanti siete? \ud83d\ude00", "shared_text": "", "time": "2018-05-26 21:56:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155795539998155&id=252306033154", "link": null} +{"post_id": "10155790898803155", "text": "Amici, vi ripropongo il mio intervento di oggi dopo l\u2019incontro con il professor Conte. Vorrei un\u2019Italia che torni a contare, in Europa e nel mondo. INSIEME si pu\u00f2!", "post_text": "Amici, vi ripropongo il mio intervento di oggi dopo l\u2019incontro con il professor Conte. Vorrei un\u2019Italia che torni a contare, in Europa e nel mondo. INSIEME si pu\u00f2!", "shared_text": "", "time": "2018-05-24 21:55:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155790898803155&id=252306033154", "link": null} +{"post_id": "10155790749638155", "text": "Rimanete sintonizzati, dopo il colloquio con il professor Conte vi aggiorno!", "post_text": "Rimanete sintonizzati, dopo il colloquio con il professor Conte vi aggiorno!", "shared_text": "", "time": "2018-05-24 18:49:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155790749638155&id=252306033154", "link": null} +{"post_id": "10155790164268155", "text": "Qualche minuto per parlare con voi!\n#insiemesultetto", "post_text": "Qualche minuto per parlare con voi!\n#insiemesultetto", "shared_text": "", "time": "2018-05-24 13:01:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155790164268155&id=252306033154", "link": null} +{"post_id": "10155788195183155", "text": "Semplicemente disumano.\nA Colorno (Parma), due maestre sono state arrestate con l'accusa di aver PICCHIATO e maltrattato bimbi tra i 3 e 5 anni.\nDifendere chi non si pu\u00f2 difendere, bambini, disabili e anziani, con ogni mezzo possibile, telecamere comprese.", "post_text": "Semplicemente disumano.\nA Colorno (Parma), due maestre sono state arrestate con l'accusa di aver PICCHIATO e maltrattato bimbi tra i 3 e 5 anni.\nDifendere chi non si pu\u00f2 difendere, bambini, disabili e anziani, con ogni mezzo possibile, telecamere comprese.", "shared_text": "", "time": "2018-05-23 15:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155788195183155&id=252306033154", "link": null} +{"post_id": "10155787924678155", "text": "\"Questa OSSESSIONE\" di Salvini per la legge Fornero, dice.\nMa ancora ha il coraggio di parlare e pontificare?\n\"Ossessionati\" sono i milioni di italiani a cui questa legge ha rovinato la vita!\nSe ce ne daranno la possibilit\u00e0, sar\u00e0 subito #stopfornero!", "post_text": "\"Questa OSSESSIONE\" di Salvini per la legge Fornero, dice.\nMa ancora ha il coraggio di parlare e pontificare?\n\"Ossessionati\" sono i milioni di italiani a cui questa legge ha rovinato la vita!\nSe ce ne daranno la possibilit\u00e0, sar\u00e0 subito #stopfornero!", "shared_text": "", "time": "2018-05-23 11:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155787924678155&id=252306033154", "link": null} +{"post_id": "10155786750428155", "text": "Noi abbiamo fatto tutto il lavoro e gli sforzi possibili, siamo pronti.\nNon c\u2019\u00e8 tempo da perdere: o si cambia l\u2019Italia, o si vota.", "post_text": "Noi abbiamo fatto tutto il lavoro e gli sforzi possibili, siamo pronti.\nNon c\u2019\u00e8 tempo da perdere: o si cambia l\u2019Italia, o si vota.", "shared_text": "", "time": "2018-05-22 19:47:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155786750428155&id=252306033154", "link": null} +{"post_id": "10155784500768155", "text": "Il mio intervento oggi al Quirinale.\nHo parlato con la testa, ma anche col cuore!", "post_text": "Il mio intervento oggi al Quirinale.\nHo parlato con la testa, ma anche col cuore!", "shared_text": "", "time": "2018-05-21 21:05:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155784500768155&id=252306033154", "link": null} +{"post_id": "10155782306838155", "text": "I ministri francesi si occupino della Francia, all'Italia ci pensiamo noi!\nE si mettano l'anima in pace: faremo il contrario di quanto hanno fatto i governi precedenti. Sbaglio?\n#andiamoagovernare", "post_text": "I ministri francesi si occupino della Francia, all'Italia ci pensiamo noi!\nE si mettano l'anima in pace: faremo il contrario di quanto hanno fatto i governi precedenti. Sbaglio?\n#andiamoagovernare", "shared_text": "", "time": "2018-05-20 18:08:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155782306838155&id=252306033154", "link": null} +{"post_id": "10155781669703155", "text": "Orrore a Roma. Caricata a forza su un'auto, picchiata e stuprata dal branco.\nAvete sentito qualche commento dalle \"femministe\" di casa nostra?\nVorrei lavorare per un'Italia in cui i delinquenti abbiano PAURA e, se sono stranieri, vengano espulsi e marciscano nel loro Paese!", "post_text": "Orrore a Roma. Caricata a forza su un'auto, picchiata e stuprata dal branco.\nAvete sentito qualche commento dalle \"femministe\" di casa nostra?\nVorrei lavorare per un'Italia in cui i delinquenti abbiano PAURA e, se sono stranieri, vengano espulsi e marciscano nel loro Paese!", "shared_text": "", "time": "2018-05-20 12:56:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155781669703155&id=252306033154", "link": null} +{"post_id": "10155779826703155", "text": "ROBA DA MATTI...\nVogliono reddito e accoglienza per tutti al grido di STOP SALVINI. Io dico: STOP CLANDESTINI, tutta l'Africa in Italia non ci sta. Spero di potermi mettere presto al lavoro per cominciare a rimediare ai disastri del Pd sull'immigrazione.\n#rivoluzionedelbuonsenso\n#andiamoagovernare", "post_text": "ROBA DA MATTI...\nVogliono reddito e accoglienza per tutti al grido di STOP SALVINI. Io dico: STOP CLANDESTINI, tutta l'Africa in Italia non ci sta. Spero di potermi mettere presto al lavoro per cominciare a rimediare ai disastri del Pd sull'immigrazione.\n#rivoluzionedelbuonsenso\n#andiamoagovernare", "shared_text": "", "time": "2018-05-19 16:56:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155779826703155&id=252306033154", "link": null} +{"post_id": "10155773226268155", "text": "Provano a fermarci coi soliti ricatti dello Spread che sale, delle Borse che scendono e delle minacce europee.\nStavolta si cambia, pi\u00f9 lavoro e meno clandestini, pi\u00f9 sicurezza e meno tasse.\n#primagliitaliani", "post_text": "Provano a fermarci coi soliti ricatti dello Spread che sale, delle Borse che scendono e delle minacce europee.\nStavolta si cambia, pi\u00f9 lavoro e meno clandestini, pi\u00f9 sicurezza e meno tasse.\n#primagliitaliani", "shared_text": "", "time": "2018-05-16 12:08:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155773226268155&id=252306033154", "link": null} +{"post_id": "10155772055783155", "text": "Minacce, insulti e ricatti non ci spaventano, ci danno forza! Prima gli italiani, o si cambia o si vota.", "post_text": "Minacce, insulti e ricatti non ci spaventano, ci danno forza! Prima gli italiani, o si cambia o si vota.", "shared_text": "", "time": "2018-05-15 21:15:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155772055783155&id=252306033154", "link": null} +{"post_id": "10155755374888155", "text": "Bloccano il traffico perch\u00e9 pretendono cibo pi\u00f9 buono, migliori condizioni di vita, carta d'identit\u00e0 e lavoro...\nAltro che governi tecnici o neutrali, serve un governo forte per espellere questi signori!", "post_text": "Bloccano il traffico perch\u00e9 pretendono cibo pi\u00f9 buono, migliori condizioni di vita, carta d'identit\u00e0 e lavoro...\nAltro che governi tecnici o neutrali, serve un governo forte per espellere questi signori!", "shared_text": "", "time": "2018-05-08 14:02:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155755374888155&id=252306033154", "link": null} +{"post_id": "10155753368798155", "text": "Esponenti del clan di \"nomadi stanziali\" a Roma picchiano a sangue una ragazza DISABILE, poi il barista e distruggono il locale.\nSolo due parole: VERGOGNA e SCHIFO.\n#TOLLERANZAZERO per questi criminali.", "post_text": "Esponenti del clan di \"nomadi stanziali\" a Roma picchiano a sangue una ragazza DISABILE, poi il barista e distruggono il locale.\nSolo due parole: VERGOGNA e SCHIFO.\n#TOLLERANZAZERO per questi criminali.", "shared_text": "", "time": "2018-05-07 20:21:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155753368798155&id=252306033154", "link": null} +{"post_id": "10155753392643155", "text": "Sono stufo!\nO la smettono di litigare e ci fanno fare un Governo per mantenere tutti gli impegni presi con gli italiani, dall\u2019immigrazione al lavoro, dalle tasse alla sicurezza, oppure meglio tornare a chiedere la fiducia direttamente a Voi!\nBasta perdere tempo, o si cambia o si vota.\nCi siete???", "post_text": "Sono stufo!\nO la smettono di litigare e ci fanno fare un Governo per mantenere tutti gli impegni presi con gli italiani, dall\u2019immigrazione al lavoro, dalle tasse alla sicurezza, oppure meglio tornare a chiedere la fiducia direttamente a Voi!\nBasta perdere tempo, o si cambia o si vota.\nCi siete???", "shared_text": "", "time": "2018-05-07 16:02:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155753392643155&id=252306033154", "link": null} +{"post_id": "10155753010108155", "text": "Le mie dichiarazioni di questa mattina al Quirinale. Grazie per l\u2019ascolto e il supporto, amici.\n", "post_text": "Le mie dichiarazioni di questa mattina al Quirinale. Grazie per l\u2019ascolto e il supporto, amici.", "shared_text": "", "time": "2018-05-07 12:51:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155753010108155&id=252306033154", "link": null} +{"post_id": "10155752881883155", "text": "Qui Quirinale. Rimanete collegati, all'uscita del colloquio con il Presidente della Repubblica vi dico com'\u00e8 andata.", "post_text": "Qui Quirinale. Rimanete collegati, all'uscita del colloquio con il Presidente della Repubblica vi dico com'\u00e8 andata.", "shared_text": "", "time": "2018-05-07 11:01:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155752881883155&id=252306033154", "link": null} +{"post_id": "10155750004703155", "text": "Confermo: chiamate un medico!\n#pdclandestino #primagliitaliani", "post_text": "Confermo: chiamate un medico!\n#pdclandestino #primagliitaliani", "shared_text": "", "time": "2018-05-06 14:09:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155750004703155&id=252306033154", "link": null} +{"post_id": "10155746487883155", "text": "Qualche minuto insieme a voi, mi seguite?", "post_text": "Qualche minuto insieme a voi, mi seguite?", "shared_text": "", "time": "2018-05-04 16:29:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155746487883155&id=252306033154", "link": null} +{"post_id": "10155742002218155", "text": "Ecco che cosa ho detto questa sera al Tg di Mentana su La7. Ascoltate e datemi un vostro parere, Amici.", "post_text": "Ecco che cosa ho detto questa sera al Tg di Mentana su La7. Ascoltate e datemi un vostro parere, Amici.", "shared_text": "", "time": "2018-05-02 20:45:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155742002218155&id=252306033154", "link": null} +{"post_id": "10155740814103155", "text": "Con me sul palco ieri sera Sergio Bramini, l\u2019imprenditore fallito a causa dello Stato (ladro!) che non gli ha pagato 4 milioni di crediti: ora rischia anche lo sfratto!\nVergogna!\nNon vedo l\u2019ora di riportare un po\u2019 di normalit\u00e0 in questo Paese. Io sono pronto.\n#primagliitaliani\nP.s. Sergio, cerco di venire presto a trovarti.", "post_text": "Con me sul palco ieri sera Sergio Bramini, l\u2019imprenditore fallito a causa dello Stato (ladro!) che non gli ha pagato 4 milioni di crediti: ora rischia anche lo sfratto!\nVergogna!\nNon vedo l\u2019ora di riportare un po\u2019 di normalit\u00e0 in questo Paese. Io sono pronto.\n#primagliitaliani\nP.s. Sergio, cerco di venire presto a trovarti.", "shared_text": "", "time": "2018-05-02 12:15:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155740814103155&id=252306033154", "link": null} +{"post_id": "10155729803308155", "text": "Siete una marea qui a Udine, GRAZIE!", "post_text": "Siete una marea qui a Udine, GRAZIE!", "shared_text": "", "time": "2018-04-27 16:40:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155729803308155&id=252306033154", "link": null} +{"post_id": "10155729241508155", "text": "Ricomincia l'invasione: 1.400 persone sbarcate in sole 48 ore.\nL'Italia ha bisogno di un governo serio e coerente, sbaglio?\nSe smettono di litigare sulle poltrone, io sono pronto!\n#STOPINVASIONE", "post_text": "Ricomincia l'invasione: 1.400 persone sbarcate in sole 48 ore.\nL'Italia ha bisogno di un governo serio e coerente, sbaglio?\nSe smettono di litigare sulle poltrone, io sono pronto!\n#STOPINVASIONE", "shared_text": "", "time": "2018-04-27 12:39:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155729241508155&id=252306033154", "link": null} +{"post_id": "10155729219913155", "text": "I nostri programmi, a differenza di altri, non cambiano a seconda delle convenienze. Ridurre le tasse, tagliare un po' di burocrazia, mandare in pensione le persone dopo 41 anni di lavoro, per me rimangono\u2026 Altro delle priorit\u00e0.\nDomenica, OGNI VOTO IN PI\u00d9 ALLA LEGA serve per vincere in Friuli Venezia Giulia e per vincere in tutta Italia!\n#domenicavotoLega #FedrigaPresidente", "post_text": "I nostri programmi, a differenza di altri, non cambiano a seconda delle convenienze. Ridurre le tasse, tagliare un po' di burocrazia, mandare in pensione le persone dopo 41 anni di lavoro, per me rimangono\u2026 Altro delle priorit\u00e0.\nDomenica, OGNI VOTO IN PI\u00d9 ALLA LEGA serve per vincere in Friuli Venezia Giulia e per vincere in tutta Italia!\n#domenicavotoLega #FedrigaPresidente", "shared_text": "", "time": "2018-04-27 12:04:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155729219913155&id=252306033154", "link": null} +{"post_id": "10155729075373155", "text": "Buongiorno da Gradisca d\u2019Isonzo (Gorizia) dove 600 presunti profughi stanno cominciando la loro ennesima giornata di giochi, bici e tempo libero.\nTanto pagano gli italiani... #tuttiacasa", "post_text": "Buongiorno da Gradisca d\u2019Isonzo (Gorizia) dove 600 presunti profughi stanno cominciando la loro ennesima giornata di giochi, bici e tempo libero.\nTanto pagano gli italiani... #tuttiacasa", "shared_text": "", "time": "2018-04-27 08:21:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155729075373155&id=252306033154", "link": null} +{"post_id": "10155725842413155", "text": "Ascoltate Luca Zaia, il miglior governatore d'Italia!\nDomenica in Friuli Venezia Giulia, con il voto alla Lega per Fedriga Presidente, vince il Futuro, vince il Friuli Venezia Giulia, vince l'Italia.\n#andiamoagovernare", "post_text": "Ascoltate Luca Zaia, il miglior governatore d'Italia!\nDomenica in Friuli Venezia Giulia, con il voto alla Lega per Fedriga Presidente, vince il Futuro, vince il Friuli Venezia Giulia, vince l'Italia.\n#andiamoagovernare", "shared_text": "", "time": "2018-04-26 18:15:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155725842413155&id=252306033154", "link": null} +{"post_id": "10155722792138155", "text": "Coerenza e idee chiare!\nDomenica ogni vostro voto alla Lega in Friuli-Venezia Giulia sar\u00e0 per mandare a casa Pd e sinistra, e per portare in regione il nostro modello di Buongoverno.\nConto su di voi!\n#domenicavotoLega #FedrigaPresidente", "post_text": "Coerenza e idee chiare!\nDomenica ogni vostro voto alla Lega in Friuli-Venezia Giulia sar\u00e0 per mandare a casa Pd e sinistra, e per portare in regione il nostro modello di Buongoverno.\nConto su di voi!\n#domenicavotoLega #FedrigaPresidente", "shared_text": "", "time": "2018-04-24 15:03:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155722792138155&id=252306033154", "link": null} +{"post_id": "10155720651863155", "text": "Qui Tolmezzo (Udine), piccolo supermercato con spettacolari prodotti locali! Altro che i megacentri commerciali, difendiamo e valorizziamo le nostre ricchezze di cultura, sapori e tradizioni!", "post_text": "Qui Tolmezzo (Udine), piccolo supermercato con spettacolari prodotti locali! Altro che i megacentri commerciali, difendiamo e valorizziamo le nostre ricchezze di cultura, sapori e tradizioni!", "shared_text": "", "time": "2018-04-23 17:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155720651863155&id=252306033154", "link": null} +{"post_id": "10155720527923155", "text": "Dal mercato di Tolmezzo!", "post_text": "Dal mercato di Tolmezzo!", "shared_text": "", "time": "2018-04-23 12:01:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155720527923155&id=252306033154", "link": null} +{"post_id": "10155720381173155", "text": "Buongiorno Amici da Trieste, mi seguite?", "post_text": "Buongiorno Amici da Trieste, mi seguite?", "shared_text": "", "time": "2018-04-23 09:50:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155720381173155&id=252306033154", "link": null} +{"post_id": "10155716802058155", "text": "Grazie Isernia, il Molise esiste, eccome!\nI sorrisi, gli abbracci e la vostra splendida accoglienza mi fanno capire che domani sar\u00e0 un giorno importante per il Molise e per la Lega.\nOra tocca a voi!\u26aa\ufe0f\ud83d\udd34 #domenicavotoLega", "post_text": "Grazie Isernia, il Molise esiste, eccome!\nI sorrisi, gli abbracci e la vostra splendida accoglienza mi fanno capire che domani sar\u00e0 un giorno importante per il Molise e per la Lega.\nOra tocca a voi!\u26aa\ufe0f\ud83d\udd34 #domenicavotoLega", "shared_text": "", "time": "2018-04-21 21:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155716802058155&id=252306033154", "link": null} +{"post_id": "10155713961288155", "text": "Se avete 5 minuti, vi ripropongo la mia intervista di ieri sera da Del Debbio, su Rete 4! Leggo i vostri commenti.", "post_text": "Se avete 5 minuti, vi ripropongo la mia intervista di ieri sera da Del Debbio, su Rete 4! Leggo i vostri commenti.", "shared_text": "", "time": "2018-04-20 11:46:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155713961288155&id=252306033154", "link": null} +{"post_id": "10155712604378155", "text": "Qui Isernia, spettacolo!", "post_text": "Qui Isernia, spettacolo!", "shared_text": "", "time": "2018-04-19 20:26:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155712604378155&id=252306033154", "link": null} +{"post_id": "10155712047388155", "text": "Incontro a Roma con la presidente Casellati, rimanete collegati, all'uscita vi dico com'\u00e8 andata.", "post_text": "Incontro a Roma con la presidente Casellati, rimanete collegati, all'uscita vi dico com'\u00e8 andata.", "shared_text": "", "time": "2018-04-19 15:07:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155712047388155&id=252306033154", "link": null} +{"post_id": "10155710452408155", "text": "I numeri imposti dall'Europa? Per me viene prima il benessere degli ITALIANI!\nChiedo troppo? #primagliitaliani", "post_text": "I numeri imposti dall'Europa? Per me viene prima il benessere degli ITALIANI!\nChiedo troppo? #primagliitaliani", "shared_text": "", "time": "2018-04-19 09:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155710452408155&id=252306033154", "link": null} +{"post_id": "10155710285538155", "text": "MALEDETTI! Ma come si fa a picchiare degli anziani indifesi???\nTelecamere in asili e case di riposo, e punizioni severe per questi VIGLIACCHI!", "post_text": "MALEDETTI! Ma come si fa a picchiare degli anziani indifesi???\nTelecamere in asili e case di riposo, e punizioni severe per questi VIGLIACCHI!", "shared_text": "", "time": "2018-04-18 18:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155710285538155&id=252306033154", "link": null} +{"post_id": "10155709865423155", "text": "Record di ascolti ieri sera su La7!\nVi ripropongo qui la mia intervista, commento libero.\n#andiamoagovernare", "post_text": "Record di ascolti ieri sera su La7!\nVi ripropongo qui la mia intervista, commento libero.\n#andiamoagovernare", "shared_text": "", "time": "2018-04-18 13:39:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155709865423155&id=252306033154", "link": null} +{"post_id": "10155707699383155", "text": "Il Molise ha fretta, l'Italia ha fretta.\nDieci minuti di faccia-a-faccia, con un principio sempre in testa: #primagliitaliani!\n#domenicavotolega", "post_text": "Il Molise ha fretta, l'Italia ha fretta.\nDieci minuti di faccia-a-faccia, con un principio sempre in testa: #primagliitaliani!\n#domenicavotolega", "shared_text": "", "time": "2018-04-17 13:41:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155707699383155&id=252306033154", "link": null} +{"post_id": "10155706441128155", "text": "La giornata in Molise si conclude a Campobasso in una sala strapiena di tanta gente perbene!", "post_text": "La giornata in Molise si conclude a Campobasso in una sala strapiena di tanta gente perbene!", "shared_text": "", "time": "2018-04-16 21:47:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155706441128155&id=252306033154", "link": null} +{"post_id": "10155705786598155", "text": "Piazza strapiena a Montenero di Bisaccia in Molise!", "post_text": "Piazza strapiena a Montenero di Bisaccia in Molise!", "shared_text": "", "time": "2018-04-16 16:00:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155705786598155&id=252306033154", "link": null} +{"post_id": "10155705391818155", "text": "In diretta dal villaggio che ospit\u00f2 i terremotati di San Giuliano di Puglia, in Molise, che la sinistra vuole trasformare in un nuovo centro per immigrati.\nLa Lega dice NO.", "post_text": "In diretta dal villaggio che ospit\u00f2 i terremotati di San Giuliano di Puglia, in Molise, che la sinistra vuole trasformare in un nuovo centro per immigrati.\nLa Lega dice NO.", "shared_text": "", "time": "2018-04-16 10:37:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155705391818155&id=252306033154", "link": null} +{"post_id": "10155703849518155", "text": "I sondaggi che preferisco!", "post_text": "I sondaggi che preferisco!", "shared_text": "", "time": "2018-04-15 16:52:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155703849518155&id=252306033154", "link": null} +{"post_id": "10155701459358155", "text": "Qualche minuto insieme a voi.\nCon le bombe, con litigi e arroganza, con polemiche e perdite di tempo non si costruisce niente.\n#andiamoagovernare io sono pronto!", "post_text": "Qualche minuto insieme a voi.\nCon le bombe, con litigi e arroganza, con polemiche e perdite di tempo non si costruisce niente.\n#andiamoagovernare io sono pronto!", "shared_text": "", "time": "2018-04-14 14:48:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155701459358155&id=252306033154", "link": null} +{"post_id": "10155692349698155", "text": "Un servizio sconvolgente che dovrebbero guardare con attenzione tutti quelli che vorrebbero l'ingresso della Turchia in Europa.", "post_text": "Un servizio sconvolgente che dovrebbero guardare con attenzione tutti quelli che vorrebbero l'ingresso della Turchia in Europa.", "shared_text": "", "time": "2018-04-13 20:32:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155692349698155&id=252306033154", "link": null} +{"post_id": "10155698880948155", "text": "Il mio intervento di questa mattina su Rai Radio 1.\nSe vi va, ascoltate e commentate!", "post_text": "Il mio intervento di questa mattina su Rai Radio 1.\nSe vi va, ascoltate e commentate!", "shared_text": "", "time": "2018-04-13 12:21:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155698880948155&id=252306033154", "link": null} +{"post_id": "10155697138598155", "text": "Ora al Quirinale, nuovo incontro con il Presidente della Repubblica, rimanete sintonizzati!", "post_text": "Ora al Quirinale, nuovo incontro con il Presidente della Repubblica, rimanete sintonizzati!", "shared_text": "", "time": "2018-04-12 17:21:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155697138598155&id=252306033154", "link": null} +{"post_id": "10155694792283155", "text": "Qualche minuto insieme a voi, nella certezza che MISSILI e bombe non risolveranno nessun problema, anzi porteranno altra MORTE e disperazione.\n#fermatevi", "post_text": "Qualche minuto insieme a voi, nella certezza che MISSILI e bombe non risolveranno nessun problema, anzi porteranno altra MORTE e disperazione.\n#fermatevi", "shared_text": "", "time": "2018-04-11 16:41:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155694792283155&id=252306033154", "link": null} +{"post_id": "10155690054488155", "text": "Ieri ho incontrato Roberto De Vivo, uno dei quattro vincitori settimanali di \u201cVinci Salvini\u201d! Aveva vinto un caff\u00e8, ma, visto l'orario, abbiamo optato per uno spritz. \ud83d\ude04", "post_text": "Ieri ho incontrato Roberto De Vivo, uno dei quattro vincitori settimanali di \u201cVinci Salvini\u201d! Aveva vinto un caff\u00e8, ma, visto l'orario, abbiamo optato per uno spritz. \ud83d\ude04", "shared_text": "", "time": "2018-04-09 20:00:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155690054488155&id=252306033154", "link": null} +{"post_id": "10155690221133155", "text": "Qui Brugnera (Pordenone). Che spettacolooo!!!\n#29aprile #FedrigaPresidente", "post_text": "Qui Brugnera (Pordenone). Che spettacolooo!!!\n#29aprile #FedrigaPresidente", "shared_text": "", "time": "2018-04-09 19:23:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155690221133155&id=252306033154", "link": null} +{"post_id": "10155689667103155", "text": "Da Spilimbergo con Massimiliano Fedriga!", "post_text": "Da Spilimbergo con Massimiliano Fedriga!", "shared_text": "", "time": "2018-04-09 15:10:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155689667103155&id=252306033154", "link": null} +{"post_id": "10155687765608155", "text": "Ora da Treviso, mi seguite?", "post_text": "Ora da Treviso, mi seguite?", "shared_text": "", "time": "2018-04-08 18:24:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155687765608155&id=252306033154", "link": null} +{"post_id": "10155680526828155", "text": "Se avete 5 minuti, ecco il mio intervento di oggi dopo l'incontro con il Presidente Mattarella.\nLeggo volentieri i vostri commenti!", "post_text": "Se avete 5 minuti, ecco il mio intervento di oggi dopo l'incontro con il Presidente Mattarella.\nLeggo volentieri i vostri commenti!", "shared_text": "", "time": "2018-04-05 17:41:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155680526828155&id=252306033154", "link": null} +{"post_id": "10155678010223155", "text": "40 anni di Goldrake! Chi di voi lo guardava? Alabarda spazialeee! \ud83d\ude00", "post_text": "40 anni di Goldrake! Chi di voi lo guardava? Alabarda spazialeee! \ud83d\ude00", "shared_text": "", "time": "2018-04-04 22:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155678010223155&id=252306033154", "link": null} +{"post_id": "10155675882143155", "text": "Un servizio che dovrebbero guardare tutti. Sempre pi\u00f9 convinto che all'Italia serva un Ministero DEDICATO ai disabili, che pensi a loro e anche ai famigliari che li assistono con amore, sacrificio e pochissimo aiuto.", "post_text": "Un servizio che dovrebbero guardare tutti. Sempre pi\u00f9 convinto che all'Italia serva un Ministero DEDICATO ai disabili, che pensi a loro e anche ai famigliari che li assistono con amore, sacrificio e pochissimo aiuto.", "shared_text": "", "time": "2018-04-04 18:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155675882143155&id=252306033154", "link": null} +{"post_id": "10155677967538155", "text": "Una delle mie pi\u00f9 recenti soddisfazioni? Aver incontrato la settimana scorsa ad Isernia un ragazzo di 13 anni (intervistato in questo servizio) che mi ha conosciuto su Facebook ed \u00e8 venuto ad ascoltarmi.\u2026 Altro Grazie!\nIl 22 aprile si vota alle regionali in Molise, ci torner\u00f2 prestissimo.\nE mi aspetto un grande risultato per la Lega e il centrodestra. Dai, dai, dai: #primagliitaliani!", "post_text": "Una delle mie pi\u00f9 recenti soddisfazioni? Aver incontrato la settimana scorsa ad Isernia un ragazzo di 13 anni (intervistato in questo servizio) che mi ha conosciuto su Facebook ed \u00e8 venuto ad ascoltarmi.\u2026 Altro Grazie!\nIl 22 aprile si vota alle regionali in Molise, ci torner\u00f2 prestissimo.\nE mi aspetto un grande risultato per la Lega e il centrodestra. Dai, dai, dai: #primagliitaliani!", "shared_text": "", "time": "2018-04-04 15:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155677967538155&id=252306033154", "link": null} +{"post_id": "10155666912008155", "text": "Qualche minuto insieme a voi, che siete stati (e sarete!) protagonisti di una rivoluzione.", "post_text": "Qualche minuto insieme a voi, che siete stati (e sarete!) protagonisti di una rivoluzione.", "shared_text": "", "time": "2018-03-30 17:13:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155666912008155&id=252306033154", "link": null} +{"post_id": "10155660994453155", "text": "Grazie.\nPer me \u00e8 un grande orgoglio e una grande responsabilit\u00e0.\nMeno tasse, pi\u00f9 soldi nelle tasche degli imprenditori e dei lavoratori, e l'economia del nostro Paese riparte!\nStiamo lavorando, giorno dopo giorno, per rendere tutto ci\u00f2 possibile.\n#primagliitaliani #primaillavoro", "post_text": "Grazie.\nPer me \u00e8 un grande orgoglio e una grande responsabilit\u00e0.\nMeno tasse, pi\u00f9 soldi nelle tasche degli imprenditori e dei lavoratori, e l'economia del nostro Paese riparte!\nStiamo lavorando, giorno dopo giorno, per rendere tutto ci\u00f2 possibile.\n#primagliitaliani #primaillavoro", "shared_text": "", "time": "2018-03-29 13:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155660994453155&id=252306033154", "link": null} +{"post_id": "10155662060348155", "text": "Sala strapiena a Isernia in Molise!!!\nMi seguite?", "post_text": "Sala strapiena a Isernia in Molise!!!\nMi seguite?", "shared_text": "", "time": "2018-03-28 21:33:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155662060348155&id=252306033154", "link": null} +{"post_id": "10155645114888155", "text": "Grazie Viterbo, Lega al 20%, ci siamo!\n#primagliitaliani", "post_text": "Grazie Viterbo, Lega al 20%, ci siamo!\n#primagliitaliani", "shared_text": "", "time": "2018-03-22 19:01:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155645114888155&id=252306033154", "link": null} +{"post_id": "10155622020348155", "text": "++ QUESTA EUROPA STA DANNEGGIANDO IL NOSTRO PAESE! VA RICOSTRUITA SULLA BASE DEGLI INTERESSI DI TUTTI I POPOLI EUROPEI! ++\n\"Vogliamo mantenere quella coerenza che reputiamo fondamentale per il futuro del Paese:\u2026 Altro non possiamo pensare di governare costringendoci a rispettare il parametro del 3%.\"\n(Massimiliano Fedriga, Deputato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "post_text": "++ QUESTA EUROPA STA DANNEGGIANDO IL NOSTRO PAESE! VA RICOSTRUITA SULLA BASE DEGLI INTERESSI DI TUTTI I POPOLI EUROPEI! ++\n\"Vogliamo mantenere quella coerenza che reputiamo fondamentale per il futuro del Paese:\u2026 Altro non possiamo pensare di governare costringendoci a rispettare il parametro del 3%.\"\n(Massimiliano Fedriga, Deputato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-03-22 09:39:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155622020348155&id=252306033154", "link": null} +{"post_id": "10155642407883155", "text": "Cancellare la legge Fornero, ridurre le tasse al 15%, espellere tutti i criminali clandestini.\nIl nostro programma \u00e8 CHIARO e non vedo l'ora di passare dalle parole ai FATTI, rispettando la fiducia dei 6 milioni di italiani che hanno deciso di scegliere la Lega. #andiamoagovernare", "post_text": "Cancellare la legge Fornero, ridurre le tasse al 15%, espellere tutti i criminali clandestini.\nIl nostro programma \u00e8 CHIARO e non vedo l'ora di passare dalle parole ai FATTI, rispettando la fiducia dei 6 milioni di italiani che hanno deciso di scegliere la Lega. #andiamoagovernare", "shared_text": "", "time": "2018-03-21 19:12:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155642407883155&id=252306033154", "link": null} +{"post_id": "10155639838093155", "text": "\"Fare la vittima \u00e8 un MESTIERE!\"\nAmici, ascoltate anche voi le folli parole di Barbara Balzerani, EX BRIGATISTA e componente del gruppo criminale che ha ucciso gli agenti della scorta, sequestrato e giustiziato Moro, mai pentita n\u00e9 dissociata.\nVERGOGNA!", "post_text": "\"Fare la vittima \u00e8 un MESTIERE!\"\nAmici, ascoltate anche voi le folli parole di Barbara Balzerani, EX BRIGATISTA e componente del gruppo criminale che ha ucciso gli agenti della scorta, sequestrato e giustiziato Moro, mai pentita n\u00e9 dissociata.\nVERGOGNA!", "shared_text": "", "time": "2018-03-21 17:30:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155639838093155&id=252306033154", "link": null} +{"post_id": "10155639889308155", "text": "Ascoltate Massimo Giletti, un giornalista con la schiena dritta e con il coraggio delle proprie idee.", "post_text": "Ascoltate Massimo Giletti, un giornalista con la schiena dritta e con il coraggio delle proprie idee.", "shared_text": "", "time": "2018-03-20 22:18:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155639889308155&id=252306033154", "link": null} +{"post_id": "10155638451983155", "text": "Francia, basilica invasa per reclamare i diritti dei clandestini.\nROBA DA MATTI!\nNon \u00e8 questa l\u2019Europa che vogliamo lasciare ai nostri figli.", "post_text": "Francia, basilica invasa per reclamare i diritti dei clandestini.\nROBA DA MATTI!\nNon \u00e8 questa l\u2019Europa che vogliamo lasciare ai nostri figli.", "shared_text": "", "time": "2018-03-20 12:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155638451983155&id=252306033154", "link": null} +{"post_id": "10155636792863155", "text": "Da Udine qualche minuto insieme a voi, ci siete?", "post_text": "Da Udine qualche minuto insieme a voi, ci siete?", "shared_text": "", "time": "2018-03-19 19:34:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155636792863155&id=252306033154", "link": null} +{"post_id": "10155635713133155", "text": "Ieri su Canale 5 record di ascolti! Grazie per la fiducia che mi dimostrate, ce la metter\u00f2 tutta!", "post_text": "Ieri su Canale 5 record di ascolti! Grazie per la fiducia che mi dimostrate, ce la metter\u00f2 tutta!", "shared_text": "", "time": "2018-03-19 10:41:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155635713133155&id=252306033154", "link": null} +{"post_id": "10155633795693155", "text": "Fra poco in diretta su Canale 5 per parlare di... voi!!!", "post_text": "Fra poco in diretta su Canale 5 per parlare di... voi!!!", "shared_text": "", "time": "2018-03-18 17:42:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155633795693155&id=252306033154", "link": null} +{"post_id": "10155632936758155", "text": "Grazie amici calabresi! La vostra fiducia \u00e8 la ricompensa migliore!\nCe la metter\u00f2 tutta per dare a questo Paese un governo che possa restituire a Milano, come a Rosarno, un futuro ai nostri figli, qua, non dall\u2019altra parte del mondo.\n#andiamoagovernare", "post_text": "Grazie amici calabresi! La vostra fiducia \u00e8 la ricompensa migliore!\nCe la metter\u00f2 tutta per dare a questo Paese un governo che possa restituire a Milano, come a Rosarno, un futuro ai nostri figli, qua, non dall\u2019altra parte del mondo.\n#andiamoagovernare", "shared_text": "", "time": "2018-03-18 11:42:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155632936758155&id=252306033154", "link": null} +{"post_id": "10155630666053155", "text": "Oggi pomeriggio a Lamezia Terme (Catanzaro) per dire ancora una volta \u201cGRAZIE\u201d. La Calabria mi ha regalato un'emozione incredibile, ma anche una grande responsabilit\u00e0 e io voglio ridare dignit\u00e0 e rispetto a questa splendida terra. #primagliitaliani", "post_text": "Oggi pomeriggio a Lamezia Terme (Catanzaro) per dire ancora una volta \u201cGRAZIE\u201d. La Calabria mi ha regalato un'emozione incredibile, ma anche una grande responsabilit\u00e0 e io voglio ridare dignit\u00e0 e rispetto a questa splendida terra. #primagliitaliani", "shared_text": "", "time": "2018-03-17 18:50:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155630666053155&id=252306033154", "link": null} +{"post_id": "10155624110133155", "text": "\"Ho votato Lega per la Flat Tax al 15%, perch\u00e9 \u00e8 assurdo avere una tassazione del 60%.\"\nIn Veneto come in Puglia gli imprenditori hanno scelto la Lega perch\u00e9 vogliono la CONCRETEZZA: meno tasse, zero burocrazia e pace fiscale.\nAlla faccia di chi ci diceva che la Tassa Unica era \"ingiusta\"...", "post_text": "\"Ho votato Lega per la Flat Tax al 15%, perch\u00e9 \u00e8 assurdo avere una tassazione del 60%.\"\nIn Veneto come in Puglia gli imprenditori hanno scelto la Lega perch\u00e9 vogliono la CONCRETEZZA: meno tasse, zero burocrazia e pace fiscale.\nAlla faccia di chi ci diceva che la Tassa Unica era \"ingiusta\"...", "shared_text": "", "time": "2018-03-16 15:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155624110133155&id=252306033154", "link": null} +{"post_id": "10155624532283155", "text": "++ I POTERI FORTI EUROPEI VOGLIONO UN'ITALIA DEBOLE, NOI DOBBIAMO RISPONDERE CON UN GOVERNO FORTE! ++\n\"Immigrazione, Europa, legge Fornero e Flat Tax: ecco su cosa dobbiamo lavorare per rilanciare l'economia e\u2026 Altro quindi l'occupazione in Italia.\nSu questi quattro temi la Lega cercher\u00e0 la maggioranza in Parlamento.\"\n(Giancarlo Giorgetti, Deputato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "post_text": "++ I POTERI FORTI EUROPEI VOGLIONO UN'ITALIA DEBOLE, NOI DOBBIAMO RISPONDERE CON UN GOVERNO FORTE! ++\n\"Immigrazione, Europa, legge Fornero e Flat Tax: ecco su cosa dobbiamo lavorare per rilanciare l'economia e\u2026 Altro quindi l'occupazione in Italia.\nSu questi quattro temi la Lega cercher\u00e0 la maggioranza in Parlamento.\"\n(Giancarlo Giorgetti, Deputato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-03-16 11:59:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155624532283155&id=252306033154", "link": null} +{"post_id": "10155625359173155", "text": "Ora da Trento, mi seguite?\n#primagliitaliani\n#primaillavoro", "post_text": "Ora da Trento, mi seguite?\n#primagliitaliani\n#primaillavoro", "shared_text": "", "time": "2018-03-15 22:07:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155625359173155&id=252306033154", "link": null} +{"post_id": "10155624939753155", "text": "Ora in diretta da San Giovanni Lupatoto, in provincia di Verona, prima gli italiani, prima il lavoro!", "post_text": "Ora in diretta da San Giovanni Lupatoto, in provincia di Verona, prima gli italiani, prima il lavoro!", "shared_text": "", "time": "2018-03-15 19:35:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155624939753155&id=252306033154", "link": null} +{"post_id": "10155624955278155", "text": "Qui San Giovanni Lupatoto (Verona), accoglienza spettacolare! Tra poco LIVE su questa Pagina.\n#primagliitaliani", "post_text": "Qui San Giovanni Lupatoto (Verona), accoglienza spettacolare! Tra poco LIVE su questa Pagina.\n#primagliitaliani", "shared_text": "", "time": "2018-03-15 19:17:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155624955278155&id=252306033154", "link": null} +{"post_id": "10155621020368155", "text": "Quanto rosicano alcuni giornalisti di sinistra...???", "post_text": "Quanto rosicano alcuni giornalisti di sinistra...???", "shared_text": "", "time": "2018-03-14 11:00:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155621020368155&id=252306033154", "link": null} +{"post_id": "10155615230163155", "text": "Un abbraccio e un grazie alle centinaia di ragazzi e ragazze, donne e uomini che in questi ultimi tre anni hanno partecipato alla nostra Scuola di Formazione politica, un\u2019esperienza che in tanti ci invidiano,\u2026 Altro punto di incontro e di confronto mai banale anche tra idee diverse. Continuiamo cos\u00ed.\nE #andiamoagovernare!\nIscrizioni: http://www.scuoladiformazionepolitica.it/scuola-formazione-politica-2018-2019/", "post_text": "Un abbraccio e un grazie alle centinaia di ragazzi e ragazze, donne e uomini che in questi ultimi tre anni hanno partecipato alla nostra Scuola di Formazione politica, un\u2019esperienza che in tanti ci invidiano,\u2026 Altro punto di incontro e di confronto mai banale anche tra idee diverse. Continuiamo cos\u00ed.\nE #andiamoagovernare!\nIscrizioni: http://www.scuoladiformazionepolitica.it/scuola-formazione-politica-2018-2019/", "shared_text": "", "time": "2018-03-13 21:58:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155615230163155&id=252306033154", "link": "http://www.scuoladiformazionepolitica.it/scuola-formazione-politica-2018-2019/?fbclid=IwAR3L9fUBiDNAStfGEwk-vTTlvz7v_wV-agpw_qkU3wHf97mXRLyr4svbclM"} +{"post_id": "10155617916888155", "text": "In diretta da Strasburgo!", "post_text": "In diretta da Strasburgo!", "shared_text": "", "time": "2018-03-13 09:40:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155617916888155&id=252306033154", "link": null} +{"post_id": "10155612331603155", "text": "Qui Milano, ultima giornata di Scuola Politica per centinaia di ragazzi e ragazze che hanno dedicato tempo, energia e lavoro per il Futuro del nostro Paese!\nState con noi! #andiamoagovernare", "post_text": "Qui Milano, ultima giornata di Scuola Politica per centinaia di ragazzi e ragazze che hanno dedicato tempo, energia e lavoro per il Futuro del nostro Paese!\nState con noi! #andiamoagovernare", "shared_text": "", "time": "2018-03-11 11:32:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155612331603155&id=252306033154", "link": null} +{"post_id": "10155606967873155", "text": "Il modo migliore per festeggiare il compleanno! \ud83d\ude00 Live da Milano, state con noi!", "post_text": "Il modo migliore per festeggiare il compleanno! \ud83d\ude00 Live da Milano, state con noi!", "shared_text": "", "time": "2018-03-09 14:18:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155606967873155&id=252306033154", "link": null} +{"post_id": "10155606594263155", "text": "Milano, incontro con tutti i nuovi parlamentari della Lega!", "post_text": "Milano, incontro con tutti i nuovi parlamentari della Lega!", "shared_text": "", "time": "2018-03-09 11:15:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155606594263155&id=252306033154", "link": null} +{"post_id": "10155603770503155", "text": "Ora da un mercato di Milano, la Lega sempre in mezzo alla gente... prima e dopo le elezioni!\nUn abbraccio a tutte le Amiche di questa Comunit\u00e0 e di tutta Italia!", "post_text": "Ora da un mercato di Milano, la Lega sempre in mezzo alla gente... prima e dopo le elezioni!\nUn abbraccio a tutte le Amiche di questa Comunit\u00e0 e di tutta Italia!", "shared_text": "", "time": "2018-03-08 10:52:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155603770503155&id=252306033154", "link": null} +{"post_id": "10155594519098155", "text": "Che gioia, che emozione, che orgoglio.\nGrazie a voi l\u2019Italia torna ad avere un futuro!", "post_text": "Che gioia, che emozione, che orgoglio.\nGrazie a voi l\u2019Italia torna ad avere un futuro!", "shared_text": "", "time": "2018-03-05 11:16:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155594519098155&id=252306033154", "link": null} +{"post_id": "10155591668213155", "text": "DA ASCOLTARE...\nVerona, il cibo ai signorini fa SCHIFO e per ringraziare che fanno?\nBloccano il traffico buttando i CASSONETTI per strada...\nUn INSULTO a tutti gli italiani in difficolt\u00e0!\nMa OGGI cambia la musica... #oggivotoLega #stopinvasione #primagliitaliani", "post_text": "DA ASCOLTARE...\nVerona, il cibo ai signorini fa SCHIFO e per ringraziare che fanno?\nBloccano il traffico buttando i CASSONETTI per strada...\nUn INSULTO a tutti gli italiani in difficolt\u00e0!\nMa OGGI cambia la musica... #oggivotoLega #stopinvasione #primagliitaliani", "shared_text": "", "time": "2018-03-04 20:35:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155591668213155&id=252306033154", "link": null} +{"post_id": "10155591674958155", "text": "PAZZESCO.\nSpero che questo cittadino rumeno di 30 anni non capiti mai tra le mani dei figli o dei nipoti delle anziane che prendeva A PUGNI a scopo di rapina... VERME SCHIFOSO! Grazie alla Polizia di Stato di Milano.\nSpero marcisca in galera, altro che indulti!\n#oggivotoLega", "post_text": "PAZZESCO.\nSpero che questo cittadino rumeno di 30 anni non capiti mai tra le mani dei figli o dei nipoti delle anziane che prendeva A PUGNI a scopo di rapina... VERME SCHIFOSO! Grazie alla Polizia di Stato di Milano.\nSpero marcisca in galera, altro che indulti!\n#oggivotoLega", "shared_text": "", "time": "2018-03-04 20:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155591674958155&id=252306033154", "link": null} +{"post_id": "10155588508943155", "text": "\ud83d\udcccBUONSENSO \u00c8 SPALANCARE LE PORTE DELLE UNIVERSIT\u00c0 AL MERITO E NON ALLE RACCOMANDAZIONI\nUsa il buonsenso, scegli la chiarezza, vota il Futuro.\n\u2611#domenicavotoLega", "post_text": "\ud83d\udcccBUONSENSO \u00c8 SPALANCARE LE PORTE DELLE UNIVERSIT\u00c0 AL MERITO E NON ALLE RACCOMANDAZIONI\nUsa il buonsenso, scegli la chiarezza, vota il Futuro.\n\u2611#domenicavotoLega", "shared_text": "", "time": "2018-03-04 18:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155588508943155&id=252306033154", "link": null} +{"post_id": "10155591658258155", "text": "Ora o mai pi\u00f9! #stopinvasione #oggivotoLega", "post_text": "Ora o mai pi\u00f9! #stopinvasione #oggivotoLega", "shared_text": "", "time": "2018-03-04 16:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155591658258155&id=252306033154", "link": null} +{"post_id": "10155579364378155", "text": "Oggi faremo una scelta di vita per i prossimi 5 anni.\nScegli la Rivoluzione del Buonsenso, scegli PRIMA GLI ITALIANI, oggi VOTA LEGA, basta una X sul simbolo!\n#oggivotolega\nP.s. C'\u00e8 tempo solo oggi fino alle 23, ed \u00e8 un treno che non passa pi\u00f9!", "post_text": "Oggi faremo una scelta di vita per i prossimi 5 anni.\nScegli la Rivoluzione del Buonsenso, scegli PRIMA GLI ITALIANI, oggi VOTA LEGA, basta una X sul simbolo!\n#oggivotolega\nP.s. C'\u00e8 tempo solo oggi fino alle 23, ed \u00e8 un treno che non passa pi\u00f9!", "shared_text": "", "time": "2018-03-04 10:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155579364378155&id=252306033154", "link": null} +{"post_id": "10155587952768155", "text": "\ud83d\udcccBUONSENSO \u00c8 GARANTIRE UN'ENERGIA PULITA E MENO COSTOSA AL NOSTRO PAESE\nUsa il buonsenso, scegli la chiarezza, vota il Futuro.\n\u2611#domenicavotoLega", "post_text": "\ud83d\udcccBUONSENSO \u00c8 GARANTIRE UN'ENERGIA PULITA E MENO COSTOSA AL NOSTRO PAESE\nUsa il buonsenso, scegli la chiarezza, vota il Futuro.\n\u2611#domenicavotoLega", "shared_text": "", "time": "2018-03-04 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155587952768155&id=252306033154", "link": null} +{"post_id": "10155584408658155", "text": "Io e Luca abbiamo qualcosa da dirvi, con intervista doppia!", "post_text": "Io e Luca abbiamo qualcosa da dirvi, con intervista doppia!", "shared_text": "", "time": "2018-03-03 21:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155584408658155&id=252306033154", "link": null} +{"post_id": "10155586295753155", "text": "Domani usa il buonsenso, usa il cuore.\n#domenicavotoLega", "post_text": "Domani usa il buonsenso, usa il cuore.\n#domenicavotoLega", "shared_text": "", "time": "2018-03-03 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155586295753155&id=252306033154", "link": null} +{"post_id": "10155588620788155", "text": "Questa \u00e8 soltanto una delle mille emozioni che mi avete regalato in questi mesi.\nGRAZIE!\nE domani andiamo a vincere! #4marzovotoLega #andiamoagovernare", "post_text": "Questa \u00e8 soltanto una delle mille emozioni che mi avete regalato in questi mesi.\nGRAZIE!\nE domani andiamo a vincere! #4marzovotoLega #andiamoagovernare", "shared_text": "", "time": "2018-03-03 17:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155588620788155&id=252306033154", "link": null} +{"post_id": "10155588359213155", "text": "Avete 10 minuti? Con questo video, visto gi\u00e0 da quasi 1 milione di persone, capirete perch\u00e9, dopo anni di ricerche e studi approfonditi, la TASSA UNICA al 15% \u00e8 l'unica rivoluzione fiscale possibile, seria e con la quale, cifre alla mano, il Governo Salvini far\u00e0 ripartire l'economia del nostro Paese.", "post_text": "Avete 10 minuti? Con questo video, visto gi\u00e0 da quasi 1 milione di persone, capirete perch\u00e9, dopo anni di ricerche e studi approfonditi, la TASSA UNICA al 15% \u00e8 l'unica rivoluzione fiscale possibile, seria e con la quale, cifre alla mano, il Governo Salvini far\u00e0 ripartire l'economia del nostro Paese.", "shared_text": "", "time": "2018-03-03 16:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155588359213155&id=252306033154", "link": null} +{"post_id": "10155578664018155", "text": "\ud83d\udcccNON \u00c8 BUONSENSO...\nche lo Stato garantisca 280 euro al mese per un disabile e 1.000 euro al mese per una cooperativa che fa i soldi con gli immigrati.\nUsa il buonsenso, scegli la chiarezza, vota il Futuro.\n\u2611#domenicavotoLega", "post_text": "\ud83d\udcccNON \u00c8 BUONSENSO...\nche lo Stato garantisca 280 euro al mese per un disabile e 1.000 euro al mese per una cooperativa che fa i soldi con gli immigrati.\nUsa il buonsenso, scegli la chiarezza, vota il Futuro.\n\u2611#domenicavotoLega", "shared_text": "", "time": "2018-03-03 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155578664018155&id=252306033154", "link": null} +{"post_id": "10155578479103155", "text": "\ud83d\udcccBUONSENSO \u00c8 INVESTIRE NELLE BELLEZZE ITALIANE\nUsa il buonsenso, scegli la chiarezza, vota il Futuro.\n\u2611#domenicavotoLega", "post_text": "\ud83d\udcccBUONSENSO \u00c8 INVESTIRE NELLE BELLEZZE ITALIANE\nUsa il buonsenso, scegli la chiarezza, vota il Futuro.\n\u2611#domenicavotoLega", "shared_text": "", "time": "2018-03-03 08:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155578479103155&id=252306033154", "link": null} +{"post_id": "10155582192158155", "text": "Mamma mia, le foto di quando ero BIMBO!\ud83d\ude01\nHo fatto migliaia di chilometri, incontrato migliaia di persone, ho toccato con mano i problemi, ho ascoltato, ho spiegato il progetto della Lega, con idee chiare,\u2026 Altro mettendoci la faccia.\nOra tocca a voi.\nLa vostra campagna elettorale finisce domenica alle 23: parlate, chiamate, convincete.\nAprite le agende. Via SMS, via Whatsapp, via Facebook, via telefono.\nQuello di domenica \u00e8 un treno che non passa pi\u00f9.\nIo ci credo, INSIEME si pu\u00f2. E VINCIAMO.\n#domenicavotoLega #primagliitaliani", "post_text": "Mamma mia, le foto di quando ero BIMBO!\ud83d\ude01\nHo fatto migliaia di chilometri, incontrato migliaia di persone, ho toccato con mano i problemi, ho ascoltato, ho spiegato il progetto della Lega, con idee chiare,\u2026 Altro mettendoci la faccia.\nOra tocca a voi.\nLa vostra campagna elettorale finisce domenica alle 23: parlate, chiamate, convincete.\nAprite le agende. Via SMS, via Whatsapp, via Facebook, via telefono.\nQuello di domenica \u00e8 un treno che non passa pi\u00f9.\nIo ci credo, INSIEME si pu\u00f2. E VINCIAMO.\n#domenicavotoLega #primagliitaliani", "shared_text": "", "time": "2018-03-02 23:55:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155582192158155&id=252306033154", "link": null} +{"post_id": "10155585950808155", "text": "Buonasera Amici! Seguite assieme a me l\u2019intervista di ieri sera da Maurizio Belpietro su Rete 4. Vi sono piaciuto?\nP.s. Se avete voglia, verso le 23, vi saluto su La7 da Mentana!\n#domenicavotoLega", "post_text": "Buonasera Amici! Seguite assieme a me l\u2019intervista di ieri sera da Maurizio Belpietro su Rete 4. Vi sono piaciuto?\nP.s. Se avete voglia, verso le 23, vi saluto su La7 da Mentana!\n#domenicavotoLega", "shared_text": "", "time": "2018-03-02 20:25:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155585950808155&id=252306033154", "link": null} +{"post_id": "10155585732133155", "text": "Idioti.\nVinciamo lo stesso, non preoccupatevi! \ud83d\ude03", "post_text": "Idioti.\nVinciamo lo stesso, non preoccupatevi! \ud83d\ude03", "shared_text": "", "time": "2018-03-02 19:28:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155585732133155&id=252306033154", "link": null} +{"post_id": "10155585502318155", "text": "Dopo 300 comizi in tutta Italia, con 5 chili in meno, stanco ma felice, chiudo il tour nella mia Milano... Dai che ce la facciamo, ci siete?", "post_text": "Dopo 300 comizi in tutta Italia, con 5 chili in meno, stanco ma felice, chiudo il tour nella mia Milano... Dai che ce la facciamo, ci siete?", "shared_text": "", "time": "2018-03-02 18:08:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155585502318155&id=252306033154", "link": null} +{"post_id": "10155584623078155", "text": "Vi ripropongo le mie interviste al TG5 e a Studio Aperto su accise della benzina, ministero dei disabili, scuola, sicurezza e tanto altro.\nCon una promessa: chi domenica sceglie la Lega sceglie la CHIAREZZA, il\u2026 Altro CORAGGIO e l'ONEST\u00c0, quindi MAI con Renzi, Di Maio o Boldrini.\nDal 5 marzo questo Paese lo governeremo col centrodestra.\nMi date una mano a diffondere? #domenicavotoLega", "post_text": "Vi ripropongo le mie interviste al TG5 e a Studio Aperto su accise della benzina, ministero dei disabili, scuola, sicurezza e tanto altro.\nCon una promessa: chi domenica sceglie la Lega sceglie la CHIAREZZA, il\u2026 Altro CORAGGIO e l'ONEST\u00c0, quindi MAI con Renzi, Di Maio o Boldrini.\nDal 5 marzo questo Paese lo governeremo col centrodestra.\nMi date una mano a diffondere? #domenicavotoLega", "shared_text": "", "time": "2018-03-02 16:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155584623078155&id=252306033154", "link": null} +{"post_id": "10155584987548155", "text": "Ieri sera ero a Porta a Porta con Giulia Bongiorno! Sono orgoglioso di averla in squadra, per le sue battaglie su sicurezza, legalit\u00e0, legittima difesa, difesa dei diritti e della libert\u00e0 delle DONNE!\nDai Amici, domenica \u00e8 vicina, c\u2019\u00e8 bisogno di tutti Voi!\n#domenicavotoLega", "post_text": "Ieri sera ero a Porta a Porta con Giulia Bongiorno! Sono orgoglioso di averla in squadra, per le sue battaglie su sicurezza, legalit\u00e0, legittima difesa, difesa dei diritti e della libert\u00e0 delle DONNE!\nDai Amici, domenica \u00e8 vicina, c\u2019\u00e8 bisogno di tutti Voi!\n#domenicavotoLega", "shared_text": "", "time": "2018-03-02 14:28:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155584987548155&id=252306033154", "link": null} +{"post_id": "10155584524043155", "text": "Un impegno fattibile: con il governo Salvini non pagheremo pi\u00f9 la benzina pi\u00f9 cara d\u2019Europa!\n#domenicavotoLega", "post_text": "Un impegno fattibile: con il governo Salvini non pagheremo pi\u00f9 la benzina pi\u00f9 cara d\u2019Europa!\n#domenicavotoLega", "shared_text": "", "time": "2018-03-02 11:22:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155584524043155&id=252306033154", "link": null} +{"post_id": "10155578862433155", "text": "Esodati, precari, cassaintegrati... Non \u00e8 normale avere italiani di serie B.\nDal 5 marzo, con la Lega al governo, gli ultimi saranno i primi.\n#primagliitaliani", "post_text": "Esodati, precari, cassaintegrati... Non \u00e8 normale avere italiani di serie B.\nDal 5 marzo, con la Lega al governo, gli ultimi saranno i primi.\n#primagliitaliani", "shared_text": "", "time": "2018-03-02 07:25:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155578862433155&id=252306033154", "link": null} +{"post_id": "10155582874763155", "text": "Video da vedere, rivedere e diffondere.\n5 geniali minuti sul perch\u00e9 l'immigrazione di massa non potr\u00e0 mai essere la soluzione alla povert\u00e0 nel mondo.\nChe dite, lo capiranno anche certi buonisti di casa nostra\u2026 Altro che vorrebbero accogliere in Italia tutta l'Africa, compresi i 5Stelle che in Europa difendono gli \"immigrati climatici\"?\n#stopinvasione #domenicavotoLega", "post_text": "Video da vedere, rivedere e diffondere.\n5 geniali minuti sul perch\u00e9 l'immigrazione di massa non potr\u00e0 mai essere la soluzione alla povert\u00e0 nel mondo.\nChe dite, lo capiranno anche certi buonisti di casa nostra\u2026 Altro che vorrebbero accogliere in Italia tutta l'Africa, compresi i 5Stelle che in Europa difendono gli \"immigrati climatici\"?\n#stopinvasione #domenicavotoLega", "shared_text": "", "time": "2018-03-01 21:18:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155582874763155&id=252306033154", "link": null} +{"post_id": "10155581538383155", "text": "Vi consiglio la mia intervista di ieri sera dalla Gruber. Che dite, mi sono difeso bene?\nDai che vinciamo! #domenicavotoLega", "post_text": "Vi consiglio la mia intervista di ieri sera dalla Gruber. Che dite, mi sono difeso bene?\nDai che vinciamo! #domenicavotoLega", "shared_text": "", "time": "2018-03-01 13:28:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155581538383155&id=252306033154", "link": null} +{"post_id": "10155581239763155", "text": "\u274c\u274c\u274c TAGLIAMO!\nNon pagheremo pi\u00f9 le tasse pi\u00f9 alte d'Europa sulla benzina.\nAccise di 80 anni fa con il governo Salvini non ci saranno pi\u00f9.\nAiutami a condividere OVUNQUE.\n#domenicavotoLega", "post_text": "\u274c\u274c\u274c TAGLIAMO!\nNon pagheremo pi\u00f9 le tasse pi\u00f9 alte d'Europa sulla benzina.\nAccise di 80 anni fa con il governo Salvini non ci saranno pi\u00f9.\nAiutami a condividere OVUNQUE.\n#domenicavotoLega", "shared_text": "", "time": "2018-03-01 11:18:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155581239763155&id=252306033154", "link": null} +{"post_id": "10155578385398155", "text": "Rimasto solo ed impaurito in un canile dopo la morte della sua padrona, questo golden retriever \u00e8 stato adottato da una responsabile del rifugio. Sulla via di casa il cane decide di ringraziarla cos\u00ec.\nCome si fa a non amare gli animali?", "post_text": "Rimasto solo ed impaurito in un canile dopo la morte della sua padrona, questo golden retriever \u00e8 stato adottato da una responsabile del rifugio. Sulla via di casa il cane decide di ringraziarla cos\u00ec.\nCome si fa a non amare gli animali?", "shared_text": "", "time": "2018-03-01 00:45:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155578385398155&id=252306033154", "link": null} +{"post_id": "10155579773808155", "text": "Vi saluto dal Teatro Nuovo di Torino, ascoltate e datemi una mano a condividere questo LIVE! #primagliitaliani #domenicavotoLega", "post_text": "Vi saluto dal Teatro Nuovo di Torino, ascoltate e datemi una mano a condividere questo LIVE! #primagliitaliani #domenicavotoLega", "shared_text": "", "time": "2018-02-28 21:31:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155579773808155&id=252306033154", "link": null} +{"post_id": "10155578455293155", "text": "\ud83d\udd34PAZZESCO! ECCO LA PALERMO DEL PD.\nSolidariet\u00e0 a Brumotti e alla sua troupe, aggrediti selvaggiamente con lanci di massi enormi nel quartiere dello spaccio a Palermo.\nNon vedo l'ora di mandare a casa Renzi e fare un po' di PULIZIA in questo Paese! #DomenicavotoLega", "post_text": "\ud83d\udd34PAZZESCO! ECCO LA PALERMO DEL PD.\nSolidariet\u00e0 a Brumotti e alla sua troupe, aggrediti selvaggiamente con lanci di massi enormi nel quartiere dello spaccio a Palermo.\nNon vedo l'ora di mandare a casa Renzi e fare un po' di PULIZIA in questo Paese! #DomenicavotoLega", "shared_text": "", "time": "2018-02-28 13:01:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155578455293155&id=252306033154", "link": null} +{"post_id": "10155578288433155", "text": "30 secondi su come si vota questa domenica, dalle 7 alle 23: SOLO una croce sul simbolo Lega, senza scrivere altro.\n\u26a0 Lo fate girare OVUNQUE???\nE andiamo a vincere!\n\u2714#domenicavotoLega", "post_text": "30 secondi su come si vota questa domenica, dalle 7 alle 23: SOLO una croce sul simbolo Lega, senza scrivere altro.\n\u26a0 Lo fate girare OVUNQUE???\nE andiamo a vincere!\n\u2714#domenicavotoLega", "shared_text": "", "time": "2018-02-28 11:18:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155578288433155&id=252306033154", "link": null} +{"post_id": "10155578318658155", "text": "A Roma Tor Bella Monaca al \"Parco del buco\" , regno degli spacciatori...", "post_text": "A Roma Tor Bella Monaca al \"Parco del buco\" , regno degli spacciatori...", "shared_text": "", "time": "2018-02-28 10:37:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155578318658155&id=252306033154", "link": null} +{"post_id": "10155576729578155", "text": "Qui Firenze! State con noi, siete pronti a domenica? #renziacasa #4marzovotoLega", "post_text": "Qui Firenze! State con noi, siete pronti a domenica? #renziacasa #4marzovotoLega", "shared_text": "", "time": "2018-02-27 22:01:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155576729578155&id=252306033154", "link": null} +{"post_id": "10155572744438155", "text": "COERENTI, DA SEMPRE!\nDall'immigrazione alla legge Fornero fino alla tutela del made in Italy, in questi anni la Lega \u00e8 SEMPRE stata COERENTE con gli italiani, a differenza di altri...\nCon il vostro aiuto, dal 4\u2026 Altro marzo il governo Salvini potr\u00e0 finalmente passare dalle parole ai FATTI, prendendo per mano 60 milioni di italiani e restituendo, insieme, dignit\u00e0 e serenit\u00e0 al Paese pi\u00f9 bello del mondo.\nMi date una mano? #4marzovotoLega #primagliitaliani", "post_text": "COERENTI, DA SEMPRE!\nDall'immigrazione alla legge Fornero fino alla tutela del made in Italy, in questi anni la Lega \u00e8 SEMPRE stata COERENTE con gli italiani, a differenza di altri...\nCon il vostro aiuto, dal 4\u2026 Altro marzo il governo Salvini potr\u00e0 finalmente passare dalle parole ai FATTI, prendendo per mano 60 milioni di italiani e restituendo, insieme, dignit\u00e0 e serenit\u00e0 al Paese pi\u00f9 bello del mondo.\nMi date una mano? #4marzovotoLega #primagliitaliani", "shared_text": "", "time": "2018-02-27 20:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155572744438155&id=252306033154", "link": null} +{"post_id": "10155575390278155", "text": "Sento tanta voglia di CAMBIAMENTO e di CONCRETEZZA!\nNelle piazze trovo l'affetto e la fiducia di milioni di Italiani che non hanno mai votato e che adesso credono nel nostro programma.\nNon vedo l'ora che arrivi il 4 marzo per dimostrare come la Lega passer\u00e0 dalle parole ai FATTI!\n#4marzovotoLega", "post_text": "Sento tanta voglia di CAMBIAMENTO e di CONCRETEZZA!\nNelle piazze trovo l'affetto e la fiducia di milioni di Italiani che non hanno mai votato e che adesso credono nel nostro programma.\nNon vedo l'ora che arrivi il 4 marzo per dimostrare come la Lega passer\u00e0 dalle parole ai FATTI!\n#4marzovotoLega", "shared_text": "", "time": "2018-02-27 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155575390278155&id=252306033154", "link": null} +{"post_id": "10155575542683155", "text": "Questa mattina a RTL un\u2019intervista che mi \u00e8 piaciuta molto, datemi il vostro parere! #domenicavotoLega", "post_text": "Questa mattina a RTL un\u2019intervista che mi \u00e8 piaciuta molto, datemi il vostro parere! #domenicavotoLega", "shared_text": "", "time": "2018-02-27 13:40:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155575542683155&id=252306033154", "link": null} +{"post_id": "10155573555598155", "text": "Coerenza, onest\u00e0 e altruismo saranno i valori portanti del governo Salvini.\nIl 4 marzo \u00e8 alle porte, se voi ci siete io ci sono.\n#primagliitaliani #4marzovotoLega", "post_text": "Coerenza, onest\u00e0 e altruismo saranno i valori portanti del governo Salvini.\nIl 4 marzo \u00e8 alle porte, se voi ci siete io ci sono.\n#primagliitaliani #4marzovotoLega", "shared_text": "", "time": "2018-02-27 09:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155573555598155&id=252306033154", "link": null} +{"post_id": "10155573234748155", "text": "Anche oggi, davanti a tantissimi abruzzesi, ho ribadito la nostra Rivoluzione del Buonsenso: chi vota Lega sceglie PRIMA GLI ITALIANI! #4marzovotoLega", "post_text": "Anche oggi, davanti a tantissimi abruzzesi, ho ribadito la nostra Rivoluzione del Buonsenso: chi vota Lega sceglie PRIMA GLI ITALIANI! #4marzovotoLega", "shared_text": "", "time": "2018-02-26 18:03:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155573234748155&id=252306033154", "link": null} +{"post_id": "10155556202683155", "text": "C'\u00c8 UN MESSAGGIO PER TE!\n\ud83d\udd35Stop Stato ladro!\n#4marzovotoLega", "post_text": "C'\u00c8 UN MESSAGGIO PER TE!\n\ud83d\udd35Stop Stato ladro!\n#4marzovotoLega", "shared_text": "", "time": "2018-02-26 16:48:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155556202683155&id=252306033154", "link": null} +{"post_id": "10155572641668155", "text": "Non vedo l\u2019ora di tornare da Massimo Giletti da Presidente del Consiglio, per spiegare come sono passato dalle parole ai FATTI!\nIo sono pronto! E voi?\n#4marzovotoLega", "post_text": "Non vedo l\u2019ora di tornare da Massimo Giletti da Presidente del Consiglio, per spiegare come sono passato dalle parole ai FATTI!\nIo sono pronto! E voi?\n#4marzovotoLega", "shared_text": "", "time": "2018-02-26 13:39:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155572641668155&id=252306033154", "link": null} +{"post_id": "10155572449368155", "text": "Vi consiglio questi 10 minuti di stamattina su Rai 1.\nL\u2019aria \u00e8 ottima, ma i prossimi giorni saranno decisivi. Mi date una mano a condividere il pi\u00f9 possibile?\n#4marzovotoLega", "post_text": "Vi consiglio questi 10 minuti di stamattina su Rai 1.\nL\u2019aria \u00e8 ottima, ma i prossimi giorni saranno decisivi. Mi date una mano a condividere il pi\u00f9 possibile?\n#4marzovotoLega", "shared_text": "", "time": "2018-02-26 12:08:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155572449368155&id=252306033154", "link": null} +{"post_id": "10155569576888155", "text": "Piazza Duomo a Milano strapiena, CENSURATA da tutti i tig\u00ed.\nMi date una mano a farlo girare ovunque in rete?\n#primagliitaliani #4marzovotoLega", "post_text": "Piazza Duomo a Milano strapiena, CENSURATA da tutti i tig\u00ed.\nMi date una mano a farlo girare ovunque in rete?\n#primagliitaliani #4marzovotoLega", "shared_text": "", "time": "2018-02-25 12:14:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155569576888155&id=252306033154", "link": null} +{"post_id": "10155567904808155", "text": "Emozioni irripetibili, quando un Popolo \u00e8 in cammino non lo ferma nessuno. Vi voglio bene.\n#primagliitaliani", "post_text": "Emozioni irripetibili, quando un Popolo \u00e8 in cammino non lo ferma nessuno. Vi voglio bene.\n#primagliitaliani", "shared_text": "", "time": "2018-02-24 21:55:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155567904808155&id=252306033154", "link": null} +{"post_id": "10155567171873155", "text": "GRAZIEEEEEE! #Primagliitaliani", "post_text": "GRAZIEEEEEE! #Primagliitaliani", "shared_text": "", "time": "2018-02-24 16:55:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155567171873155&id=252306033154", "link": null} +{"post_id": "10155566801533155", "text": "Milano, ci siamo!!! State con noi, siamo un MARE! #PRIMAGLIITALIANI", "post_text": "Milano, ci siamo!!! State con noi, siamo un MARE! #PRIMAGLIITALIANI", "shared_text": "", "time": "2018-02-24 14:56:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155566801533155&id=252306033154", "link": null} +{"post_id": "10155566665413155", "text": "Milano, verso piazza Duomo, seguiteci live.\n#primagliitaliani", "post_text": "Milano, verso piazza Duomo, seguiteci live.\n#primagliitaliani", "shared_text": "", "time": "2018-02-24 14:00:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155566665413155&id=252306033154", "link": null} +{"post_id": "10155566427798155", "text": "Oggi \u00e8 il grande giorno, sta uscendo il sole, vi aspetto alle 15 in piazza Duomo a MILANO!\nSpegnete i computer, oggi si sceglie la vita reale.\nChi sceglie la Lega, sceglie PRIMA GLI ITALIANI.", "post_text": "Oggi \u00e8 il grande giorno, sta uscendo il sole, vi aspetto alle 15 in piazza Duomo a MILANO!\nSpegnete i computer, oggi si sceglie la vita reale.\nChi sceglie la Lega, sceglie PRIMA GLI ITALIANI.", "shared_text": "", "time": "2018-02-24 12:27:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155566427798155&id=252306033154", "link": null} +{"post_id": "10155564536363155", "text": "Loro domani a Milano non ci saranno!", "post_text": "Loro domani a Milano non ci saranno!", "shared_text": "", "time": "2018-02-23 23:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155564536363155&id=252306033154", "link": null} +{"post_id": "10155556205278155", "text": "C'\u00c8 UN MESSAGGIO PER TE!\nSvuotacarceri, indulti e sconti di pena? NO, buonsenso \u00e8 garantire la CERTEZZA DELLA PENA! #4marzovotoLega", "post_text": "C'\u00c8 UN MESSAGGIO PER TE!\nSvuotacarceri, indulti e sconti di pena? NO, buonsenso \u00e8 garantire la CERTEZZA DELLA PENA! #4marzovotoLega", "shared_text": "", "time": "2018-02-23 23:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155556205278155&id=252306033154", "link": null} +{"post_id": "10155557877098155", "text": "Ecco un video che non vedrete su nessuna TV. Da ascoltare e approfondire... Grazie a Matteo Montevecchi, facciamolo girare in rete!", "post_text": "Ecco un video che non vedrete su nessuna TV. Da ascoltare e approfondire... Grazie a Matteo Montevecchi, facciamolo girare in rete!", "shared_text": "", "time": "2018-02-23 21:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155557877098155&id=252306033154", "link": null} +{"post_id": "10155563545073155", "text": "Un impegno concreto: il governo Salvini sar\u00e0 il primo governo italiano ad attivare e dedicare un Ministero che si occupi dei DISABILI, dei loro diritti e dei loro problemi!\n#4marzovotoLega", "post_text": "Un impegno concreto: il governo Salvini sar\u00e0 il primo governo italiano ad attivare e dedicare un Ministero che si occupi dei DISABILI, dei loro diritti e dei loro problemi!\n#4marzovotoLega", "shared_text": "", "time": "2018-02-23 19:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155563545073155&id=252306033154", "link": null} +{"post_id": "10155564182873155", "text": "La pioggia non ci ferma, questa \u00e8 Pisa!", "post_text": "La pioggia non ci ferma, questa \u00e8 Pisa!", "shared_text": "", "time": "2018-02-23 16:58:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155564182873155&id=252306033154", "link": null} +{"post_id": "10155563965888155", "text": "Ieri Juncker, il \"sobrio\" presidente della Commissione Europea, ha detto che dopo le elezioni ci saranno cataclismi, invasioni di cavallette, spread, crollo dei mercati... Ci risiamo!\nE questo pretenderebbe di comandare gli italiani??!", "post_text": "Ieri Juncker, il \"sobrio\" presidente della Commissione Europea, ha detto che dopo le elezioni ci saranno cataclismi, invasioni di cavallette, spread, crollo dei mercati... Ci risiamo!\nE questo pretenderebbe di comandare gli italiani??!", "shared_text": "", "time": "2018-02-23 15:48:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155563965888155&id=252306033154", "link": null} +{"post_id": "10155556214968155", "text": "\ud83d\udd35C'\u00c8 UN MESSAGGIO PER TE!\nBuonsenso \u00e8 difendere l'AGRICOLTURA e la PESCA italiana, tutelando il Made in Italy in Italia ma soprattutto in Europa.\n#primagliitaliani #4marzovotoLega", "post_text": "\ud83d\udd35C'\u00c8 UN MESSAGGIO PER TE!\nBuonsenso \u00e8 difendere l'AGRICOLTURA e la PESCA italiana, tutelando il Made in Italy in Italia ma soprattutto in Europa.\n#primagliitaliani #4marzovotoLega", "shared_text": "", "time": "2018-02-21 22:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155556214968155&id=252306033154", "link": null} +{"post_id": "10155559129143155", "text": "Sala strapiena e tanto entusiasmo a Caserta, dai che ce la facciamo!\n#primagliitaliani", "post_text": "Sala strapiena e tanto entusiasmo a Caserta, dai che ce la facciamo!\n#primagliitaliani", "shared_text": "", "time": "2018-02-21 21:23:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155559129143155&id=252306033154", "link": null} +{"post_id": "10155558564853155", "text": "GRAZIE Bologna!!!\nTanta gente che mi dice \"s\u00ec, di te mi fido\" \u00e8 per me la ricompensa migliore.\nSe voi ci siete io ci sono. #4marzovotoLega", "post_text": "GRAZIE Bologna!!!\nTanta gente che mi dice \"s\u00ec, di te mi fido\" \u00e8 per me la ricompensa migliore.\nSe voi ci siete io ci sono. #4marzovotoLega", "shared_text": "", "time": "2018-02-21 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155558564853155&id=252306033154", "link": null} +{"post_id": "10155557960403155", "text": "++ CHIEDERE PI\u00d9 EUROPA \u00c8 COME IL CONIGLIO NELLA GABBIA CON LE FAINE CHE CHIEDE PI\u00d9 FAINE! ++\n\"Siamo finanziatori netti della UE, abbiamo una moneta sbagliata che danneggia il nostro mercato, non possiamo\u2026 Altro sforare il 3% per aiutare i terremotati.\nTutti i Paesi della UE hanno vantaggi e svantaggi mentre l'Italia ha solo svantaggi. Perch\u00e9?\"\n(Claudio Borghi, candidato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "post_text": "++ CHIEDERE PI\u00d9 EUROPA \u00c8 COME IL CONIGLIO NELLA GABBIA CON LE FAINE CHE CHIEDE PI\u00d9 FAINE! ++\n\"Siamo finanziatori netti della UE, abbiamo una moneta sbagliata che danneggia il nostro mercato, non possiamo\u2026 Altro sforare il 3% per aiutare i terremotati.\nTutti i Paesi della UE hanno vantaggi e svantaggi mentre l'Italia ha solo svantaggi. Perch\u00e9?\"\n(Claudio Borghi, candidato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-02-21 17:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155557960403155&id=252306033154", "link": null} +{"post_id": "10155557926568155", "text": "PICCHIATO dal genitore di un alunno, viene sottoposto a provvedimento disciplinare!!!\nROBA DA MATTI!\nIo sto con questo prof, facciamo girare almeno in rete la sua testimonianza.\nLa \"buona scuola\" di Renzi e del Pd sar\u00e0 presto solo un brutto ricordo.", "post_text": "PICCHIATO dal genitore di un alunno, viene sottoposto a provvedimento disciplinare!!!\nROBA DA MATTI!\nIo sto con questo prof, facciamo girare almeno in rete la sua testimonianza.\nLa \"buona scuola\" di Renzi e del Pd sar\u00e0 presto solo un brutto ricordo.", "shared_text": "", "time": "2018-02-21 11:42:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155557926568155&id=252306033154", "link": null} +{"post_id": "10155556194208155", "text": "C'\u00c8 UN MESSAGGIO PER TE.\nBuonsenso \u00e8... garantire a un bimbo lo stesso insegnante per 5 anni.\n#primagliitaliani #4marzovotoLega", "post_text": "C'\u00c8 UN MESSAGGIO PER TE.\nBuonsenso \u00e8... garantire a un bimbo lo stesso insegnante per 5 anni.\n#primagliitaliani #4marzovotoLega", "shared_text": "", "time": "2018-02-20 21:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155556194208155&id=252306033154", "link": null} +{"post_id": "10155556064643155", "text": "La pioggia non ci ferma, ora a Sassuolo in provincia di Modena!", "post_text": "La pioggia non ci ferma, ora a Sassuolo in provincia di Modena!", "shared_text": "", "time": "2018-02-20 18:07:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155556064643155&id=252306033154", "link": null} +{"post_id": "10155555843523155", "text": "\ud83d\udd35BUONSENSO \u00c8 LA TASSA UNICA AL 15% PER FAMIGLIE E IMPRESE!\nPagare meno per pagare tutti, e l'Italia riparte!\n#4marzovotoLega", "post_text": "\ud83d\udd35BUONSENSO \u00c8 LA TASSA UNICA AL 15% PER FAMIGLIE E IMPRESE!\nPagare meno per pagare tutti, e l'Italia riparte!\n#4marzovotoLega", "shared_text": "", "time": "2018-02-20 17:10:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155555843523155&id=252306033154", "link": null} +{"post_id": "10155555364798155", "text": "Loro sabato a Milano non ci saranno!", "post_text": "Loro sabato a Milano non ci saranno!", "shared_text": "", "time": "2018-02-20 13:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155555364798155&id=252306033154", "link": null} +{"post_id": "10155555295738155", "text": "Spaccio, aggressioni, accoltellamenti, vi porto nel condominio Errenord a Modena...\n#primagliitaliani", "post_text": "Spaccio, aggressioni, accoltellamenti, vi porto nel condominio Errenord a Modena...\n#primagliitaliani", "shared_text": "", "time": "2018-02-20 12:19:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155555295738155&id=252306033154", "link": null} +{"post_id": "10155555238563155", "text": "Dal mercato di Modena!", "post_text": "Dal mercato di Modena!", "shared_text": "", "time": "2018-02-20 11:36:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155555238563155&id=252306033154", "link": null} +{"post_id": "10155542120783155", "text": "++ OGGI VIENI PAGATO 3 EURO ALL'ORA E SE OSI MANGIARE UNA CARAMELLA AL LAVORO VIENI PUNITO! DOV'\u00c8 LO STATO??? ++\n\"Lo Stato si sta dissolvendo di fronte alle multinazionali, che hanno il pieno potere sui diritti\u2026 Altro dei lavoratori. Ci sono sempre pi\u00f9 casi di salari da fame in condizioni di lavoro vergognose, dove sono gli ispettorati del lavoro?\nCon la Lega al governo inseriremo un salario orario minimo stabilito per legge, restituendo dignit\u00e0 ai lavoratori.\"\n(Armando Siri, candidato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "post_text": "++ OGGI VIENI PAGATO 3 EURO ALL'ORA E SE OSI MANGIARE UNA CARAMELLA AL LAVORO VIENI PUNITO! DOV'\u00c8 LO STATO??? ++\n\"Lo Stato si sta dissolvendo di fronte alle multinazionali, che hanno il pieno potere sui diritti\u2026 Altro dei lavoratori. Ci sono sempre pi\u00f9 casi di salari da fame in condizioni di lavoro vergognose, dove sono gli ispettorati del lavoro?\nCon la Lega al governo inseriremo un salario orario minimo stabilito per legge, restituendo dignit\u00e0 ai lavoratori.\"\n(Armando Siri, candidato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-02-20 09:19:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155542120783155&id=252306033154", "link": null} +{"post_id": "10155552896888155", "text": "Oggi a Udine eravamo tantissimi (nonostante il freddo)!\nOvunque io vada trovo tanto entusiasmo, e questo mi d\u00e0 una carica incredibile.\nSe voi ci siete, io ci sono! #4marzovotoLega", "post_text": "Oggi a Udine eravamo tantissimi (nonostante il freddo)!\nOvunque io vada trovo tanto entusiasmo, e questo mi d\u00e0 una carica incredibile.\nSe voi ci siete, io ci sono! #4marzovotoLega", "shared_text": "", "time": "2018-02-19 15:29:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155552896888155&id=252306033154", "link": null} +{"post_id": "10155547675498155", "text": "CHE ORRORE.\nNon mancavano, purtroppo, molestie e violenze verso i bimbi nelle scuole normali, adesso le abbiamo anche nelle scuole islamiche illegali.\nLa cosa vergognosa \u00e8 che nessuno dei genitori delle\u2026 Altro piccole vittime abbia avuto il coraggio di DENUNCIARE... Ma che genitori sono???\nChe INTEGRAZIONE ci pu\u00f2 essere se non riconosci la cultura e le LEGGI del Paese che ti ospita?\n#4marzovotoLega", "post_text": "CHE ORRORE.\nNon mancavano, purtroppo, molestie e violenze verso i bimbi nelle scuole normali, adesso le abbiamo anche nelle scuole islamiche illegali.\nLa cosa vergognosa \u00e8 che nessuno dei genitori delle\u2026 Altro piccole vittime abbia avuto il coraggio di DENUNCIARE... Ma che genitori sono???\nChe INTEGRAZIONE ci pu\u00f2 essere se non riconosci la cultura e le LEGGI del Paese che ti ospita?\n#4marzovotoLega", "shared_text": "", "time": "2018-02-19 10:28:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155547675498155&id=252306033154", "link": null} +{"post_id": "10155550696258155", "text": "VALIDO SOLO PER L'ESTERO, PASSAPAROLA!\nSOLO per chi vota dall'estero, dove c'\u00e8 un diverso sistema elettorale, il centrodestra ha un simbolo unico.\nScopri come votare per i candidati specifici della Lega a\u2026 Altro questo link, con fac-simile e tutti i nomi nomi: www.salvinipremier.it/votoestero\nAvete dubbi, segnalazioni di ritardi o irregolarit\u00e0? Scrivete a questa email: leganelmondo@gmail.com\n\u25cf Chi vota: tutti gli iscritti all'AIRE e coloro temporaneamente all'estero che ne abbiano fatto richiesta entro il 31 gennaio 2018\n\u25cf Come si vota: via posta con Plico elettorale ricevuto a casa dal Consolato o Ambasciata\n\u25cf Quando si vota: dal 14 Febbraio 2018; se entro il 18 febbraio non avete ricevuto il plico potete chiedere un duplicato recandovi al Consolato\n\u25cf Entro il 1\u00b0 Marzo alle ore 16 deve arrivare il plico elettorale con schede votate, oltre tale termine le buste saranno distrutte", "post_text": "VALIDO SOLO PER L'ESTERO, PASSAPAROLA!\nSOLO per chi vota dall'estero, dove c'\u00e8 un diverso sistema elettorale, il centrodestra ha un simbolo unico.\nScopri come votare per i candidati specifici della Lega a\u2026 Altro questo link, con fac-simile e tutti i nomi nomi: www.salvinipremier.it/votoestero\nAvete dubbi, segnalazioni di ritardi o irregolarit\u00e0? Scrivete a questa email: leganelmondo@gmail.com\n\u25cf Chi vota: tutti gli iscritti all'AIRE e coloro temporaneamente all'estero che ne abbiano fatto richiesta entro il 31 gennaio 2018\n\u25cf Come si vota: via posta con Plico elettorale ricevuto a casa dal Consolato o Ambasciata\n\u25cf Quando si vota: dal 14 Febbraio 2018; se entro il 18 febbraio non avete ricevuto il plico potete chiedere un duplicato recandovi al Consolato\n\u25cf Entro il 1\u00b0 Marzo alle ore 16 deve arrivare il plico elettorale con schede votate, oltre tale termine le buste saranno distrutte", "shared_text": "", "time": "2018-02-18 19:28:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155550696258155&id=252306033154", "link": "http://www.salvinipremier.it/votoestero?fbclid=IwAR1v1T8VpAM5LinlT56ATcDedoTqKVPtDZl-PXRL8ail8MhPn5FG8V6M8d0"} +{"post_id": "10155549702063155", "text": "Geniale video della pagina Il Socio ACI! \ud83d\ude05\n\u00c8 triste chi si prende troppo sul serio, noi sorridiamo!\nIntanto, sapete che siamo gi\u00e0 a quasi 25 MILA iscritti al \"Vinci Salvini\"? PAZZESCO.\nE da oggi un altro modo\u2026 Altro per vincere: INVITARE un amico a iscriversi, basta andare qui: www.salvinipremier.it/invita. Passaparola!\nOggi vinciamo in rete, il 4 marzo vinciamo alle elezioni!", "post_text": "Geniale video della pagina Il Socio ACI! \ud83d\ude05\n\u00c8 triste chi si prende troppo sul serio, noi sorridiamo!\nIntanto, sapete che siamo gi\u00e0 a quasi 25 MILA iscritti al \"Vinci Salvini\"? PAZZESCO.\nE da oggi un altro modo\u2026 Altro per vincere: INVITARE un amico a iscriversi, basta andare qui: www.salvinipremier.it/invita. Passaparola!\nOggi vinciamo in rete, il 4 marzo vinciamo alle elezioni!", "shared_text": "", "time": "2018-02-18 12:45:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155549702063155&id=252306033154", "link": "http://www.salvinipremier.it/invita?fbclid=IwAR17e6e127Z3WXsbA3vGf0mNAuUv5hjPoR9PHYCxPYzrHgDaE_gsb9Oi_AY"} +{"post_id": "10155541731123155", "text": "Il signor Calenda si dovrebbe vergognare della parole che usa verso la Lega.\nPer fortuna, il 4 marzo arriver\u00e0 presto.", "post_text": "Il signor Calenda si dovrebbe vergognare della parole che usa verso la Lega.\nPer fortuna, il 4 marzo arriver\u00e0 presto.", "shared_text": "", "time": "2018-02-18 09:03:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155541731123155&id=252306033154", "link": null} +{"post_id": "10155542269388155", "text": "\ud83d\udd34CONDIVIDI! Nessun TG vi mostrer\u00e0 questi dati!\nIn 5 minuti Nicola Molteni dimostra, numeri alla mano, l'INVASIONE che abbiamo sub\u00ecto con i governi Letta, Renzi e Gentiloni.\nManca poco Amici, dal 5 marzo cambia la musica!\n#STOPINVASIONE #PRIMAGLIITALIANI", "post_text": "\ud83d\udd34CONDIVIDI! Nessun TG vi mostrer\u00e0 questi dati!\nIn 5 minuti Nicola Molteni dimostra, numeri alla mano, l'INVASIONE che abbiamo sub\u00ecto con i governi Letta, Renzi e Gentiloni.\nManca poco Amici, dal 5 marzo cambia la musica!\n#STOPINVASIONE #PRIMAGLIITALIANI", "shared_text": "", "time": "2018-02-17 21:14:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155542269388155&id=252306033154", "link": null} +{"post_id": "10155547451808155", "text": "Ieri sera su Rai Due ho ricordato che se qualcuno entra in casa mia con cattive intenzioni devo avere il DIRITTO di difendermi, sempre e comunque.\nMi pare solo BUONSENSO. Sbaglio?", "post_text": "Ieri sera su Rai Due ho ricordato che se qualcuno entra in casa mia con cattive intenzioni devo avere il DIRITTO di difendermi, sempre e comunque.\nMi pare solo BUONSENSO. Sbaglio?", "shared_text": "", "time": "2018-02-17 16:23:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155547451808155&id=252306033154", "link": null} +{"post_id": "10155546961673155", "text": "E dopo il tour di Sicilia, Calabria, Basilicata, Puglia, Molise e Lazio, eccomi di nuovo nella mia Milano, al mercato di piazzale Lagosta, ad ascoltare.\nDal 5 marzo avremo tanto da fare, vi assicuro che ce la metter\u00f2 tutta per dimostrare di essermi meritato la vostra fiducia.\n#4marzovotoLega", "post_text": "E dopo il tour di Sicilia, Calabria, Basilicata, Puglia, Molise e Lazio, eccomi di nuovo nella mia Milano, al mercato di piazzale Lagosta, ad ascoltare.\nDal 5 marzo avremo tanto da fare, vi assicuro che ce la metter\u00f2 tutta per dimostrare di essermi meritato la vostra fiducia.\n#4marzovotoLega", "shared_text": "", "time": "2018-02-17 11:55:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155546961673155&id=252306033154", "link": null} +{"post_id": "10155545238188155", "text": "Quanta gente a Latina!\n#primagliitaliani", "post_text": "Quanta gente a Latina!\n#primagliitaliani", "shared_text": "", "time": "2018-02-16 19:14:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155545238188155&id=252306033154", "link": null} +{"post_id": "10155545228008155", "text": "Ora a Latina! Che spettacolooo!!!\n#PRIMAGLIITALIANI", "post_text": "Ora a Latina! Che spettacolooo!!!\n#PRIMAGLIITALIANI", "shared_text": "", "time": "2018-02-16 19:09:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155545228008155&id=252306033154", "link": null} +{"post_id": "10155544521918155", "text": "Lascio a Renzi i suoi insulti, lascio a Di Maio i suoi scontrini, io preferisco occuparmi dei problemi REALI!\n#PRIMAGLIITALIANI", "post_text": "Lascio a Renzi i suoi insulti, lascio a Di Maio i suoi scontrini, io preferisco occuparmi dei problemi REALI!\n#PRIMAGLIITALIANI", "shared_text": "", "time": "2018-02-16 13:19:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155544521918155&id=252306033154", "link": null} +{"post_id": "10155535945108155", "text": "++ TI DIFENDI IN CASA TUA? OGGI VIENI SUBITO INDAGATO! DAL 4 MARZO IL GOVERNO SALVINI RIBALTER\u00c0 QUESTA INGIUSTIZA! ++\n\"Oggi se ti difendi vieni automaticamente indagato, magari processato e, solo se riesci a\u2026 Altro provarlo, prosciolto.\nQuesto processo deve essere ribaltato: il cittadino non deve essere indagato, a meno che non ci siano indizi evidenti che dimostrino che si tratti di omicidio e non legittima difesa.\"\n(Claudio Borghi, candidato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "post_text": "++ TI DIFENDI IN CASA TUA? OGGI VIENI SUBITO INDAGATO! DAL 4 MARZO IL GOVERNO SALVINI RIBALTER\u00c0 QUESTA INGIUSTIZA! ++\n\"Oggi se ti difendi vieni automaticamente indagato, magari processato e, solo se riesci a\u2026 Altro provarlo, prosciolto.\nQuesto processo deve essere ribaltato: il cittadino non deve essere indagato, a meno che non ci siano indizi evidenti che dimostrino che si tratti di omicidio e non legittima difesa.\"\n(Claudio Borghi, candidato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-02-16 10:01:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155535945108155&id=252306033154", "link": null} +{"post_id": "10155541608053155", "text": "Secondo Grasso in Italia gli stranieri pagano 130MILA MILIARDI di tasse, il DOPPIO del PIL MONDIALE!!!\nMa ci siete o ci fate???\nE questo era il presidente del Senato...", "post_text": "Secondo Grasso in Italia gli stranieri pagano 130MILA MILIARDI di tasse, il DOPPIO del PIL MONDIALE!!!\nMa ci siete o ci fate???\nE questo era il presidente del Senato...", "shared_text": "", "time": "2018-02-16 07:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155541608053155&id=252306033154", "link": null} +{"post_id": "10155542807013155", "text": "VI PIACE?\nMi date una mano a far sapere a tutti che sabato 24 febbraio a MILANO, ore 15, piazza Duomo, faremo la storia? ORA o mai pi\u00f9! #PRIMAGLITALIANI", "post_text": "VI PIACE?\nMi date una mano a far sapere a tutti che sabato 24 febbraio a MILANO, ore 15, piazza Duomo, faremo la storia? ORA o mai pi\u00f9! #PRIMAGLITALIANI", "shared_text": "", "time": "2018-02-15 21:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155542807013155&id=252306033154", "link": null} +{"post_id": "10155542603743155", "text": "FOLLIA.\nL'Italia del PD in cui i clandestini vengono ospitati in hotel a 4 stelle sar\u00e0 presto un brutto ricordo.\n#4marzovotoLega", "post_text": "FOLLIA.\nL'Italia del PD in cui i clandestini vengono ospitati in hotel a 4 stelle sar\u00e0 presto un brutto ricordo.\n#4marzovotoLega", "shared_text": "", "time": "2018-02-15 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155542603743155&id=252306033154", "link": null} +{"post_id": "10155539510298155", "text": "++ I DAZI PROTEGGONO LA NOSTRA ECONOMIA! ARANCE MAROCCHINE E OLIO TUNISINO INVADONO I NOSTRI MERCATI SENZA CONTROLLI, DANNEGGIANDO COMMERCIO E SALUTE DEGLI ITALIANI! ++\n\"L'Italia gioca sui mercati con regole\u2026 Altro diverse. Gli agricoltori italiani devono rispettare tantissime regole europee che aumentano il costo dei prodotti, mentre dalla Tunisia, Marocco e Cambogia arrivano prodotti incontrollati e sottocosto.\nCome combattere questa concorrenza sleale? Con i dazi, tutelando la nostra economia.\"\n(Armando Siri, candidato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "post_text": "++ I DAZI PROTEGGONO LA NOSTRA ECONOMIA! ARANCE MAROCCHINE E OLIO TUNISINO INVADONO I NOSTRI MERCATI SENZA CONTROLLI, DANNEGGIANDO COMMERCIO E SALUTE DEGLI ITALIANI! ++\n\"L'Italia gioca sui mercati con regole\u2026 Altro diverse. Gli agricoltori italiani devono rispettare tantissime regole europee che aumentano il costo dei prodotti, mentre dalla Tunisia, Marocco e Cambogia arrivano prodotti incontrollati e sottocosto.\nCome combattere questa concorrenza sleale? Con i dazi, tutelando la nostra economia.\"\n(Armando Siri, candidato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-02-15 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155539510298155&id=252306033154", "link": null} +{"post_id": "10155538757738155", "text": "\u26a0\ufe0fROBA DA MATTI!\nIl Pd ha trasformato l'Italia in un grande campo di finti profughi.\nE PRETENDONO il permesso di soggiorno, SUBITO.\nChi scappa davvero dalla guerra, portando rispetto agli italiani, \u00e8 mio fratello, ma per gli altri NON c'\u00e8 posto.\nIl 4 marzo \u00e8 vicino.", "post_text": "\u26a0\ufe0fROBA DA MATTI!\nIl Pd ha trasformato l'Italia in un grande campo di finti profughi.\nE PRETENDONO il permesso di soggiorno, SUBITO.\nChi scappa davvero dalla guerra, portando rispetto agli italiani, \u00e8 mio fratello, ma per gli altri NON c'\u00e8 posto.\nIl 4 marzo \u00e8 vicino.", "shared_text": "", "time": "2018-02-14 21:13:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155538757738155&id=252306033154", "link": null} +{"post_id": "10155539824733155", "text": "Ora da Messina!", "post_text": "Ora da Messina!", "shared_text": "", "time": "2018-02-14 18:58:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155539824733155&id=252306033154", "link": null} +{"post_id": "10155536146293155", "text": "++ VERGOGNOSO! MINACCIATA E INSULTATA DAI CENTRI SOCIALI, IL PD HA DETTO CHE ME LO MERITAVO! ++\n\"A Bologna i centri sociali hanno fatto irruzione nel Consiglio Comunale per minacciarmi ed insultarmi\u2026 Altro pesantemente. Nessuna solidariet\u00e0 dalla sinistra, anzi, il capogruppo del PD ha detto che chi semina odio raccoglie tempesta. \u00c8 una vergogna!\"\n(Lucia Borgonzoni, candidata Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "post_text": "++ VERGOGNOSO! MINACCIATA E INSULTATA DAI CENTRI SOCIALI, IL PD HA DETTO CHE ME LO MERITAVO! ++\n\"A Bologna i centri sociali hanno fatto irruzione nel Consiglio Comunale per minacciarmi ed insultarmi\u2026 Altro pesantemente. Nessuna solidariet\u00e0 dalla sinistra, anzi, il capogruppo del PD ha detto che chi semina odio raccoglie tempesta. \u00c8 una vergogna!\"\n(Lucia Borgonzoni, candidata Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-02-14 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155536146293155&id=252306033154", "link": null} +{"post_id": "10155539078738155", "text": "Ieri record di ascolti su La7. Se ve lo siete perso... direi che vale la pena! Auguro all'onorevole Boldrini di raccogliere alle elezioni quello che ha seminato... Commento libero ed educato!\nP.s. Ma a voi d\u00e0 fastidio essere definiti \"risorse salviniane\u201d???", "post_text": "Ieri record di ascolti su La7. Se ve lo siete perso... direi che vale la pena! Auguro all'onorevole Boldrini di raccogliere alle elezioni quello che ha seminato... Commento libero ed educato!\nP.s. Ma a voi d\u00e0 fastidio essere definiti \"risorse salviniane\u201d???", "shared_text": "", "time": "2018-02-14 13:48:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155539078738155&id=252306033154", "link": null} +{"post_id": "10155537617773155", "text": "Grande, unico Fabrizio.\nPer una volta dico Grazie alla Rai.", "post_text": "Grande, unico Fabrizio.\nPer una volta dico Grazie alla Rai.", "shared_text": "", "time": "2018-02-13 23:29:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155537617773155&id=252306033154", "link": null} +{"post_id": "10155533444308155", "text": "\"Come si fa a mandare via chi non ha documenti?\" si chiede l'onorevole Boldrini...\nLascio rispondere a voi, io glielo dir\u00f2 di persona questa sera dalla Gruber, ore 20.30, La7!\n#stopinvasione #4marzovotolega", "post_text": "\"Come si fa a mandare via chi non ha documenti?\" si chiede l'onorevole Boldrini...\nLascio rispondere a voi, io glielo dir\u00f2 di persona questa sera dalla Gruber, ore 20.30, La7!\n#stopinvasione #4marzovotolega", "shared_text": "", "time": "2018-02-13 09:03:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155533444308155&id=252306033154", "link": null} +{"post_id": "10155533332268155", "text": "\"Ho avuto il cancro\".\nForza Nadia! Donna coraggiosa!", "post_text": "\"Ho avuto il cancro\".\nForza Nadia! Donna coraggiosa!", "shared_text": "", "time": "2018-02-12 16:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155533332268155&id=252306033154", "link": null} +{"post_id": "10155533525588155", "text": "Se avete 10 minuti, guardate che cosa ho chiesto questa mattina al pubblico in studio a Canale 5\u2026\nAvanti tutta, il 4 marzo \u00e8 vicino, l\u2019aria \u00e8 buona, ma serve il vostro aiuto: facciamo girare! #4marzovotoLega", "post_text": "Se avete 10 minuti, guardate che cosa ho chiesto questa mattina al pubblico in studio a Canale 5\u2026\nAvanti tutta, il 4 marzo \u00e8 vicino, l\u2019aria \u00e8 buona, ma serve il vostro aiuto: facciamo girare! #4marzovotoLega", "shared_text": "", "time": "2018-02-12 13:59:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155533525588155&id=252306033154", "link": null} +{"post_id": "10155531127018155", "text": "IMMIGRATI protestano perch\u00e9 vogliono vedere le partite su Sky!!!\nTanto pagano gli italiani.\nSiamo in provincia di Verona, pazzesco.\nP.S. Struttura gestita dalla Cooperativa Versoprobo, che fattura milioni di euro in tutta Italia grazie al business dell\u2019immigrazione...\n#tuttiacasa", "post_text": "IMMIGRATI protestano perch\u00e9 vogliono vedere le partite su Sky!!!\nTanto pagano gli italiani.\nSiamo in provincia di Verona, pazzesco.\nP.S. Struttura gestita dalla Cooperativa Versoprobo, che fattura milioni di euro in tutta Italia grazie al business dell\u2019immigrazione...\n#tuttiacasa", "shared_text": "", "time": "2018-02-11 16:53:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155531127018155&id=252306033154", "link": null} +{"post_id": "10155522146833155", "text": "1\u20e3 La donna vale meno dell'uomo\n2\u20e3 La giustizia islamica prevale sulla giustizia nazionale\n3\u20e3 La libert\u00e0 di parola \u00e8 vincolata a quanto dichiara il Corano.\nLo dico soprattutto da pap\u00e0, guardando al futuro dei miei figli: ho il diritto di chiedermi se l'Islam \u00e8 INCOMPATIBILE con i nostri valori e le nostre libert\u00e0???", "post_text": "1\u20e3 La donna vale meno dell'uomo\n2\u20e3 La giustizia islamica prevale sulla giustizia nazionale\n3\u20e3 La libert\u00e0 di parola \u00e8 vincolata a quanto dichiara il Corano.\nLo dico soprattutto da pap\u00e0, guardando al futuro dei miei figli: ho il diritto di chiedermi se l'Islam \u00e8 INCOMPATIBILE con i nostri valori e le nostre libert\u00e0???", "shared_text": "", "time": "2018-02-11 16:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155522146833155&id=252306033154", "link": null} +{"post_id": "10155527949923155", "text": "Motel a 4Stelle a Novi Ligure (Alessandria).\nDa una parte gli operai dell\u2019Ilva che combattono per difendere il posto di lavoro, dall\u2019altra pi\u00f9 di 100 immigrati che fanno il pisolino a spese degli italiani.", "post_text": "Motel a 4Stelle a Novi Ligure (Alessandria).\nDa una parte gli operai dell\u2019Ilva che combattono per difendere il posto di lavoro, dall\u2019altra pi\u00f9 di 100 immigrati che fanno il pisolino a spese degli italiani.", "shared_text": "", "time": "2018-02-10 15:14:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155527949923155&id=252306033154", "link": null} +{"post_id": "10155527792783155", "text": "Ieri sera su Rai Tre ho spiegato come, con idee chiare, passione e buonsenso, governeremo l\u2019Italia!\n#4marzovotoLega", "post_text": "Ieri sera su Rai Tre ho spiegato come, con idee chiare, passione e buonsenso, governeremo l\u2019Italia!\n#4marzovotoLega", "shared_text": "", "time": "2018-02-10 13:48:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155527792783155&id=252306033154", "link": null} +{"post_id": "10155525394238155", "text": "Difendiamo i nostri confini, ora a Ventimiglia!", "post_text": "Difendiamo i nostri confini, ora a Ventimiglia!", "shared_text": "", "time": "2018-02-09 16:39:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155525394238155&id=252306033154", "link": null} +{"post_id": "10155525153538155", "text": "In piazza ad Albenga!", "post_text": "In piazza ad Albenga!", "shared_text": "", "time": "2018-02-09 14:32:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155525153538155&id=252306033154", "link": null} +{"post_id": "10155522643738155", "text": "STANCO degli insulti del signor Calenda, ecco come ho replicato. Ho fatto bene?\nPer fortuna, nostra e dei lavoratori, questo signore sar\u00e0 ministro ancora per poco...", "post_text": "STANCO degli insulti del signor Calenda, ecco come ho replicato. Ho fatto bene?\nPer fortuna, nostra e dei lavoratori, questo signore sar\u00e0 ministro ancora per poco...", "shared_text": "", "time": "2018-02-08 21:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155522643738155&id=252306033154", "link": null} +{"post_id": "10155522792433155", "text": "Ultima tappa di oggi dall'Abruzzo!", "post_text": "Ultima tappa di oggi dall'Abruzzo!", "shared_text": "", "time": "2018-02-08 20:44:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155522792433155&id=252306033154", "link": null} +{"post_id": "10155521435463155", "text": "Prima gli italiani! Questa \u00e8 la rivoluzione del buonsenso! FAI GIRARE!\n#4marzovotoLega", "post_text": "Prima gli italiani! Questa \u00e8 la rivoluzione del buonsenso! FAI GIRARE!\n#4marzovotoLega", "shared_text": "", "time": "2018-02-08 11:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155521435463155&id=252306033154", "link": null} +{"post_id": "10155519609353155", "text": "Ora da Firenze con Alberto Bagnai e Claudio Borghi!", "post_text": "Ora da Firenze con Alberto Bagnai e Claudio Borghi!", "shared_text": "", "time": "2018-02-07 18:35:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155519609353155&id=252306033154", "link": null} +{"post_id": "10155513887203155", "text": "Mentre migliaia di cittadini sono riuniti a Catania per la tradizionale festa di Sant'Agata, alcuni immigrati, grandi lavoratori del ramo \"lavavetri-accattonaggio\", si prendono a sprangate in mezzo alla strada.\u2026 Altro\nMa secondo voi \u00e8 NORMALE???\nSogno un Paese TRANQUILLO, dove si rispettano ordine e regole, chiedo troppo? #4marzovotolega", "post_text": "Mentre migliaia di cittadini sono riuniti a Catania per la tradizionale festa di Sant'Agata, alcuni immigrati, grandi lavoratori del ramo \"lavavetri-accattonaggio\", si prendono a sprangate in mezzo alla strada.\u2026 Altro\nMa secondo voi \u00e8 NORMALE???\nSogno un Paese TRANQUILLO, dove si rispettano ordine e regole, chiedo troppo? #4marzovotolega", "shared_text": "", "time": "2018-02-07 13:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155513887203155&id=252306033154", "link": null} +{"post_id": "10155514599488155", "text": "Sentite che cosa dice Mauro, un panettiere di Ferrara, a proposito della legge Fornero.\nSottoscrivo parola per parola. #4marzovotolega", "post_text": "Sentite che cosa dice Mauro, un panettiere di Ferrara, a proposito della legge Fornero.\nSottoscrivo parola per parola. #4marzovotolega", "shared_text": "", "time": "2018-02-07 11:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155514599488155&id=252306033154", "link": null} +{"post_id": "10155516379318155", "text": "I \"migranti climatici\" li lascio ai vari Renzi, Boldrini e Bonino.\nPer me vengono PRIMA GLI ITALIANI! #andiamoagovernare", "post_text": "I \"migranti climatici\" li lascio ai vari Renzi, Boldrini e Bonino.\nPer me vengono PRIMA GLI ITALIANI! #andiamoagovernare", "shared_text": "", "time": "2018-02-07 09:31:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155516379318155&id=252306033154", "link": null} +{"post_id": "10155517653143155", "text": "Ora a Cinisello Balsamo, ci siete?", "post_text": "Ora a Cinisello Balsamo, ci siete?", "shared_text": "", "time": "2018-02-06 22:02:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155517653143155&id=252306033154", "link": null} +{"post_id": "10155514330178155", "text": "++ LEGITTIMA DIFESA E VIOLENZA SULLE DONNE, ECCO LE MIE PRIORIT\u00c0 DA PARLAMENTARE! ++\n\"Voglio andare al Senato per dare voce alle donne vittime di violenze.\nAnche da parlamentari si possono fare tante cose, non\u2026 Altro \u00e8 necessario essere ministri: quando ero presidente di Commissione giustizia, ribadii che la priorit\u00e0 era la lotta allo stalking, che divenne legge poco dopo.\"\n(Giulia Bongiorno, candidata Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "post_text": "++ LEGITTIMA DIFESA E VIOLENZA SULLE DONNE, ECCO LE MIE PRIORIT\u00c0 DA PARLAMENTARE! ++\n\"Voglio andare al Senato per dare voce alle donne vittime di violenze.\nAnche da parlamentari si possono fare tante cose, non\u2026 Altro \u00e8 necessario essere ministri: quando ero presidente di Commissione giustizia, ribadii che la priorit\u00e0 era la lotta allo stalking, che divenne legge poco dopo.\"\n(Giulia Bongiorno, candidata Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-02-06 10:28:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155514330178155&id=252306033154", "link": null} +{"post_id": "10155513755383155", "text": "Aperti al confronto S\u00cc, schiavi NO!\nIl mio governo non sar\u00e0 MAI servo di Bruxelles e Berlino! #primagliitaliani", "post_text": "Aperti al confronto S\u00cc, schiavi NO!\nIl mio governo non sar\u00e0 MAI servo di Bruxelles e Berlino! #primagliitaliani", "shared_text": "", "time": "2018-02-06 09:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155513755383155&id=252306033154", "link": null} +{"post_id": "10155514833503155", "text": "Questo signore, accolto con tutti gli onori, rappresenta la Turchia che nega lo sterminio di 1 milione e mezzo di Armeni innocenti, donne e bambini massacrati dagli islamici, il primo Olocausto della storia. VERGOGNA!", "post_text": "Questo signore, accolto con tutti gli onori, rappresenta la Turchia che nega lo sterminio di 1 milione e mezzo di Armeni innocenti, donne e bambini massacrati dagli islamici, il primo Olocausto della storia. VERGOGNA!", "shared_text": "", "time": "2018-02-05 21:05:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155514833503155&id=252306033154", "link": null} +{"post_id": "10155514771688155", "text": "Vi ripropongo la mia intervista di questa mattina su LA7. Leggo i vostri commenti!", "post_text": "Vi ripropongo la mia intervista di questa mattina su LA7. Leggo i vostri commenti!", "shared_text": "", "time": "2018-02-05 19:41:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155514771688155&id=252306033154", "link": null} +{"post_id": "10155506208873155", "text": "\u00c8 facile parlare rimanendo all'opposizione e dicendo sempre e solo NO.\nMa io non vedo l'ora di essere messo alla prova, questo Paese lo voglio cambiare.\nCon il centrodestra si pu\u00f2 governare, e un voto in pi\u00f9 alla Lega \u00e8 un voto per CORAGGIO, IDEE CHIARE e FUTURO.\nSe voi ci siete, io ci sono!\n#4marzovotoLega", "post_text": "\u00c8 facile parlare rimanendo all'opposizione e dicendo sempre e solo NO.\nMa io non vedo l'ora di essere messo alla prova, questo Paese lo voglio cambiare.\nCon il centrodestra si pu\u00f2 governare, e un voto in pi\u00f9 alla Lega \u00e8 un voto per CORAGGIO, IDEE CHIARE e FUTURO.\nSe voi ci siete, io ci sono!\n#4marzovotoLega", "shared_text": "", "time": "2018-02-05 10:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155506208873155&id=252306033154", "link": null} +{"post_id": "10155505782583155", "text": "ROBA DA MATTI!\nSecondo \"l'esperto di economia\" del PD, con la tassa unica al 15% il biglietto del bus passerebbe da 1,50 a 5 euro!\nQuesti hanno governato per 7 anni portando l'Italia alla povert\u00e0 assoluta e osano ancora parlare...\nA CASA! #4marzovotoLega", "post_text": "ROBA DA MATTI!\nSecondo \"l'esperto di economia\" del PD, con la tassa unica al 15% il biglietto del bus passerebbe da 1,50 a 5 euro!\nQuesti hanno governato per 7 anni portando l'Italia alla povert\u00e0 assoluta e osano ancora parlare...\nA CASA! #4marzovotoLega", "shared_text": "", "time": "2018-02-04 20:16:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155505782583155&id=252306033154", "link": null} +{"post_id": "10155511192698155", "text": "Mezz\u2019ora di mio intervento venerd\u00ec scorso a Rete 4: per governare l\u2019Italia serve CHIAREZZA. Ascoltate e giudicate voi.\n#4marzovotoLega", "post_text": "Mezz\u2019ora di mio intervento venerd\u00ec scorso a Rete 4: per governare l\u2019Italia serve CHIAREZZA. Ascoltate e giudicate voi.\n#4marzovotoLega", "shared_text": "", "time": "2018-02-04 13:34:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155511192698155&id=252306033154", "link": null} +{"post_id": "10155497838263155", "text": "\ud83d\udd35 Commercio, turismo, burocrazia, tasse: in 3 minuti le nostre proposte per fare ripartire il LAVORO.\nMi aiutate a condividerle? #4marzovotoLega", "post_text": "\ud83d\udd35 Commercio, turismo, burocrazia, tasse: in 3 minuti le nostre proposte per fare ripartire il LAVORO.\nMi aiutate a condividerle? #4marzovotoLega", "shared_text": "", "time": "2018-02-04 09:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155497838263155&id=252306033154", "link": null} +{"post_id": "10155508968058155", "text": "Oggi con i candidati della Lega da tutta Italia, per il nostro solenne impegno: #primagliitaliani!#4marzovotolega", "post_text": "Oggi con i candidati della Lega da tutta Italia, per il nostro solenne impegno: #primagliitaliani!#4marzovotolega", "shared_text": "", "time": "2018-02-03 16:24:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155508968058155&id=252306033154", "link": null} +{"post_id": "10155503583818155", "text": "Per il ministro Martina, il PD ha creato POSTI DI LAVORO!\nQuesti vivono su Marte... Io non voglio un'Italia in cui i lavoratori vengono sfruttati a 4 euro all'ora e con contratti precari, bisogna creare posti di lavoro VERI.\n#4marzovotolega", "post_text": "Per il ministro Martina, il PD ha creato POSTI DI LAVORO!\nQuesti vivono su Marte... Io non voglio un'Italia in cui i lavoratori vengono sfruttati a 4 euro all'ora e con contratti precari, bisogna creare posti di lavoro VERI.\n#4marzovotolega", "shared_text": "", "time": "2018-02-03 15:10:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155503583818155&id=252306033154", "link": null} +{"post_id": "10155506515563155", "text": "Con la pace fiscale torni a respirare, a vivere! #4marzovotoLega", "post_text": "Con la pace fiscale torni a respirare, a vivere! #4marzovotoLega", "shared_text": "", "time": "2018-02-03 13:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155506515563155&id=252306033154", "link": null} +{"post_id": "10155506286873155", "text": "\u00c8 sempre bello confrontarsi!\nQui ho potuto farlo con il direttore e la redazione de \u201cLa Stampa\u201d. Penso sia stato costruttivo. Commentate anche voi!", "post_text": "\u00c8 sempre bello confrontarsi!\nQui ho potuto farlo con il direttore e la redazione de \u201cLa Stampa\u201d. Penso sia stato costruttivo. Commentate anche voi!", "shared_text": "", "time": "2018-02-02 16:04:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155506286873155&id=252306033154", "link": null} +{"post_id": "10155505661253155", "text": "Dal mercato Bonola a Milano!", "post_text": "Dal mercato Bonola a Milano!", "shared_text": "", "time": "2018-02-02 10:51:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155505661253155&id=252306033154", "link": null} +{"post_id": "10155503232538155", "text": "DIFENDERE i confini, ESPELLERE i clandestini!!!\n#STOPINVASIONE #4marzovotolega", "post_text": "DIFENDERE i confini, ESPELLERE i clandestini!!!\n#STOPINVASIONE #4marzovotolega", "shared_text": "", "time": "2018-02-01 20:47:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155503232538155&id=252306033154", "link": null} +{"post_id": "10155503677593155", "text": "Furti, aggressioni, roghi tossici: Torino, campo ROM a cinque stelle...\nLa nostra risposta: RUSPA!", "post_text": "Furti, aggressioni, roghi tossici: Torino, campo ROM a cinque stelle...\nLa nostra risposta: RUSPA!", "shared_text": "", "time": "2018-02-01 17:02:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155503677593155&id=252306033154", "link": null} +{"post_id": "10155498389863155", "text": "Io voglio che i nostri figli crescano con latte, riso, olio, arance e pomodori ITALIANI!\nLa sinistra ha SVENDUTO le aziende italiane alle multinazionali, io invece ritengo che difendere i nostri prodotti sia un DOVERE. #primagliitaliani", "post_text": "Io voglio che i nostri figli crescano con latte, riso, olio, arance e pomodori ITALIANI!\nLa sinistra ha SVENDUTO le aziende italiane alle multinazionali, io invece ritengo che difendere i nostri prodotti sia un DOVERE. #primagliitaliani", "shared_text": "", "time": "2018-02-01 16:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155498389863155&id=252306033154", "link": null} +{"post_id": "10155503056878155", "text": "Davanti alla ex sede di Banca Etruria ad Arezzo... BASTA PD!!!", "post_text": "Davanti alla ex sede di Banca Etruria ad Arezzo... BASTA PD!!!", "shared_text": "", "time": "2018-02-01 10:55:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155503056878155&id=252306033154", "link": null} +{"post_id": "10155495560528155", "text": "Governeremo l'Italia con la testa, ma soprattutto con il CUORE!\nIo sono pronto, e voi?\n#4marzovotoLega", "post_text": "Governeremo l'Italia con la testa, ma soprattutto con il CUORE!\nIo sono pronto, e voi?\n#4marzovotoLega", "shared_text": "", "time": "2018-01-31 22:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155495560528155&id=252306033154", "link": null} +{"post_id": "10155500584113155", "text": "Secondo il solito kompagno (con portafoglio a destra) Oliviero Toscani l'immigrazione clandestina \u00e8 \"INARRESTABILE\" ed \u00e8 la nostra \"GRANDE RICCHEZZA\"...!\nROBA DA MATTI!\nUn bravo a Massimiliano Fedriga che ha riportato un po' di BUONSENSO in studio.\n#4marzovotoLega", "post_text": "Secondo il solito kompagno (con portafoglio a destra) Oliviero Toscani l'immigrazione clandestina \u00e8 \"INARRESTABILE\" ed \u00e8 la nostra \"GRANDE RICCHEZZA\"...!\nROBA DA MATTI!\nUn bravo a Massimiliano Fedriga che ha riportato un po' di BUONSENSO in studio.\n#4marzovotoLega", "shared_text": "", "time": "2018-01-31 18:58:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155500584113155&id=252306033154", "link": null} +{"post_id": "10155490234063155", "text": "Dalla cancellazione della legge Fornero agli asili nido gratis fino alla pace fiscale.\nChi vota Lega sceglie la CONCRETEZZA, l'EQUIT\u00c0 ed il BUONSENSO.\n#4marzovotoLega", "post_text": "Dalla cancellazione della legge Fornero agli asili nido gratis fino alla pace fiscale.\nChi vota Lega sceglie la CONCRETEZZA, l'EQUIT\u00c0 ed il BUONSENSO.\n#4marzovotoLega", "shared_text": "", "time": "2018-01-31 13:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155490234063155&id=252306033154", "link": null} +{"post_id": "10155500490098155", "text": "NOTTI MAGICHE.\nRicordando con nostalgia quando avevo 17 anni, buon viaggio Azeglio.", "post_text": "NOTTI MAGICHE.\nRicordando con nostalgia quando avevo 17 anni, buon viaggio Azeglio.", "shared_text": "", "time": "2018-01-31 12:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155500490098155&id=252306033154", "link": null} +{"post_id": "10155497849568155", "text": "Che dialogo si pu\u00f2 avere con questo Islam?\nCon Salvini al governo, STOP a ogni presenza ISLAMICA irregolare in Italia!\nApriamo gli occhi! #4marzovotoLega", "post_text": "Che dialogo si pu\u00f2 avere con questo Islam?\nCon Salvini al governo, STOP a ogni presenza ISLAMICA irregolare in Italia!\nApriamo gli occhi! #4marzovotoLega", "shared_text": "", "time": "2018-01-31 10:59:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155497849568155&id=252306033154", "link": null} +{"post_id": "10155498632978155", "text": "Una bella intervista, commento libero!", "post_text": "Una bella intervista, commento libero!", "shared_text": "", "time": "2018-01-30 19:09:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155498632978155&id=252306033154", "link": null} +{"post_id": "10155497669243155", "text": "Non vedo l'ora di mandare a casa la KOMPAGNA Boldrini e tutti i suoi amici!\n#4marzovotolega", "post_text": "Non vedo l'ora di mandare a casa la KOMPAGNA Boldrini e tutti i suoi amici!\n#4marzovotolega", "shared_text": "", "time": "2018-01-30 12:58:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155497669243155&id=252306033154", "link": null} +{"post_id": "10155494879363155", "text": "Hanno SVENDUTO l'Italia, la met\u00e0 delle nostre aziende ormai \u00e8 in mani estere.\nA che cosa hanno portato quindici anni di lacrime, sangue e sacrifici imposti dall'Europa agli italiani?\nIL DISASTRO!\nRiprendiamoci il nostro Paese! Io dico #PRIMAGLIITALIANI!", "post_text": "Hanno SVENDUTO l'Italia, la met\u00e0 delle nostre aziende ormai \u00e8 in mani estere.\nA che cosa hanno portato quindici anni di lacrime, sangue e sacrifici imposti dall'Europa agli italiani?\nIL DISASTRO!\nRiprendiamoci il nostro Paese! Io dico #PRIMAGLIITALIANI!", "shared_text": "", "time": "2018-01-30 10:30:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155494879363155&id=252306033154", "link": null} +{"post_id": "10155484020138155", "text": "Mi considero un uomo fortunato, perch\u00e9 ho trasformato la mia passione nel mio lavoro e perch\u00e9 ho due figli stupendi e una compagna di cui sono innamorato.\nPenso che l'Italia meriti di pi\u00f9 e sto facendo di tutto per riuscirci, perch\u00e9 amo questo Paese.", "post_text": "Mi considero un uomo fortunato, perch\u00e9 ho trasformato la mia passione nel mio lavoro e perch\u00e9 ho due figli stupendi e una compagna di cui sono innamorato.\nPenso che l'Italia meriti di pi\u00f9 e sto facendo di tutto per riuscirci, perch\u00e9 amo questo Paese.", "shared_text": "", "time": "2018-01-30 09:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155484020138155&id=252306033154", "link": null} +{"post_id": "10155495583653155", "text": "ENNESIMA protesta in provincia di Padova: non sono soddisfatti dell'accoglienza in hotel!\nRoba da matti! TUTTI A CASA!!!\n#4marzovotoLega", "post_text": "ENNESIMA protesta in provincia di Padova: non sono soddisfatti dell'accoglienza in hotel!\nRoba da matti! TUTTI A CASA!!!\n#4marzovotoLega", "shared_text": "", "time": "2018-01-29 20:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155495583653155&id=252306033154", "link": null} +{"post_id": "10155495408458155", "text": "\ud83d\uded1\ud83d\uded1\ud83d\uded1 SALVINI, CHE PAURA!\n\"SALVINI MI SPAVENTA\". Secondo la Bonino sono pericoloso perch\u00e9 stimo Putin, Orban e Trump...\nPericolosi per l'Italia e gli interessi nazionali sono quelli come lei che vogliono \"pi\u00f9 Europa\"...!", "post_text": "\ud83d\uded1\ud83d\uded1\ud83d\uded1 SALVINI, CHE PAURA!\n\"SALVINI MI SPAVENTA\". Secondo la Bonino sono pericoloso perch\u00e9 stimo Putin, Orban e Trump...\nPericolosi per l'Italia e gli interessi nazionali sono quelli come lei che vogliono \"pi\u00f9 Europa\"...!", "shared_text": "", "time": "2018-01-29 17:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155495408458155&id=252306033154", "link": null} +{"post_id": "10155477384893155", "text": "++ L'UNIONE EUROPEA STA DISTRUGGENDO IL PATRIMONIO CULINARIO ITALIANO! ++\n\"Ad esempio ci sono bottiglie d'olio che hanno marchi italiani ma contengono olio della Tunisia. Se non tuteliamo il nostro cibo e non\u2026 Altro controlliamo quello che arriva nei nostri supermercati rischiamo di rovinare la nostra ricchezza.\"\n(Lucia Borgonzoni)\n#facciamosquadra #andiamoagovernare", "post_text": "++ L'UNIONE EUROPEA STA DISTRUGGENDO IL PATRIMONIO CULINARIO ITALIANO! ++\n\"Ad esempio ci sono bottiglie d'olio che hanno marchi italiani ma contengono olio della Tunisia. Se non tuteliamo il nostro cibo e non\u2026 Altro controlliamo quello che arriva nei nostri supermercati rischiamo di rovinare la nostra ricchezza.\"\n(Lucia Borgonzoni)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-01-28 18:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155477384893155&id=252306033154", "link": null} +{"post_id": "10155491917893155", "text": "\u201cSalvini pensa agli immigrati e non agli italiani\u201d dice la compagna Boldrini.\nSiamo su \u201cScherzi a parte\u201d...\n#4marzovotoLega\n#Boldriniacasa", "post_text": "\u201cSalvini pensa agli immigrati e non agli italiani\u201d dice la compagna Boldrini.\nSiamo su \u201cScherzi a parte\u201d...\n#4marzovotoLega\n#Boldriniacasa", "shared_text": "", "time": "2018-01-28 10:36:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155491917893155&id=252306033154", "link": null} +{"post_id": "10155489535523155", "text": "La prima legge che il governo Salvini canceller\u00e0 \u00e8 la legge Fornero. Su questo non c'\u00e8 discussione aperta possibile.\n#4marzovotoLega\n[Video: Agenzia Vista]", "post_text": "La prima legge che il governo Salvini canceller\u00e0 \u00e8 la legge Fornero. Su questo non c'\u00e8 discussione aperta possibile.\n#4marzovotoLega\n[Video: Agenzia Vista]", "shared_text": "", "time": "2018-01-27 16:25:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155489535523155&id=252306033154", "link": null} +{"post_id": "10155477290933155", "text": "++ L'EUROPA CI HA COSTRETTI A CREARE 1 MILIONE DI LAVORATORI POVERI! ++\n\"Visti i risultati non mi vanterei del Jobs Act e dei dati sull'occupazione. Iniziare la campagna elettorale puntando sulla paura nei\u2026 Altro confronti della Lega \u00e8 follia pura ed \u00e8 una mancanza di rispetto nei confronti dei cittadini!\"\n(Massimiliano Fedriga, Presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "post_text": "++ L'EUROPA CI HA COSTRETTI A CREARE 1 MILIONE DI LAVORATORI POVERI! ++\n\"Visti i risultati non mi vanterei del Jobs Act e dei dati sull'occupazione. Iniziare la campagna elettorale puntando sulla paura nei\u2026 Altro confronti della Lega \u00e8 follia pura ed \u00e8 una mancanza di rispetto nei confronti dei cittadini!\"\n(Massimiliano Fedriga, Presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-01-27 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155477290933155&id=252306033154", "link": null} +{"post_id": "10155481003503155", "text": "La Costituzione Italiana dice che il nostro paese \u00e8 una Repubblica democratica fondata sul LAVORO, LIBERA e SOVRANA.\nSe i folli vincoli europei danneggiano le nostre famiglie e le nostre imprese, da uomo di governo, avr\u00f2 il DOVERE di cambiarle, perch\u00e9 prima viene il nostro Paese!\n#PRIMAGLIITALIANI #4marzovotoLega", "post_text": "La Costituzione Italiana dice che il nostro paese \u00e8 una Repubblica democratica fondata sul LAVORO, LIBERA e SOVRANA.\nSe i folli vincoli europei danneggiano le nostre famiglie e le nostre imprese, da uomo di governo, avr\u00f2 il DOVERE di cambiarle, perch\u00e9 prima viene il nostro Paese!\n#PRIMAGLIITALIANI #4marzovotoLega", "shared_text": "", "time": "2018-01-26 10:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155481003503155&id=252306033154", "link": null} +{"post_id": "10155484132948155", "text": "++ CHI SI DIFENDE NON COMMETTE UN REATO, MA ESERCITA UN DIRITTO! ++\nCon la nostra proposta di legge sulla #legittimadifesa noi vogliamo che un cittadino sappia cosa pu\u00f2 fare o cosa non pu\u00f2 fare nel momento in\u2026 Altro cui viene aggredito, in modo tale che il giudice abbia una discrezionalit\u00e0 ridotta nella valutazione della \"proporzionalit\u00e0\".\n(Nicola Molteni, deputato Lega - Salvini Premier)\n#Facciamosquadra #4marzovotolega", "post_text": "++ CHI SI DIFENDE NON COMMETTE UN REATO, MA ESERCITA UN DIRITTO! ++\nCon la nostra proposta di legge sulla #legittimadifesa noi vogliamo che un cittadino sappia cosa pu\u00f2 fare o cosa non pu\u00f2 fare nel momento in\u2026 Altro cui viene aggredito, in modo tale che il giudice abbia una discrezionalit\u00e0 ridotta nella valutazione della \"proporzionalit\u00e0\".\n(Nicola Molteni, deputato Lega - Salvini Premier)\n#Facciamosquadra #4marzovotolega", "shared_text": "", "time": "2018-01-25 21:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155484132948155&id=252306033154", "link": null} +{"post_id": "10155484085338155", "text": "Lo stabilimento torinese della Whirlpool delocalizzer\u00e0 in Slovacchia, mandando A CASA centinaia di operai italiani.\nMa la Bonino non capisce perch\u00e9 bisogna fermare le delocalizzazioni, per lei la soluzione \u00e8 \"\u2026 Altropi\u00f9 Europa\"...\nCon il governo Salvini, \"prima gli italiani\" non sar\u00e0 solo uno slogan ma la nostra sfida pi\u00f9 grande.\n#4marzovotoLega", "post_text": "Lo stabilimento torinese della Whirlpool delocalizzer\u00e0 in Slovacchia, mandando A CASA centinaia di operai italiani.\nMa la Bonino non capisce perch\u00e9 bisogna fermare le delocalizzazioni, per lei la soluzione \u00e8 \"\u2026 Altropi\u00f9 Europa\"...\nCon il governo Salvini, \"prima gli italiani\" non sar\u00e0 solo uno slogan ma la nostra sfida pi\u00f9 grande.\n#4marzovotoLega", "shared_text": "", "time": "2018-01-25 17:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155484085338155&id=252306033154", "link": null} +{"post_id": "10155425463378155", "text": "Norma, 40 anni, non vedente, riceve a casa la busta arancione dell'INPS.\nAndr\u00e0 in pensione il 2 Febbraio del 2047, quando avr\u00e0 70 ANNI!\nFOLLIA!!!\nVIA la LEGGE FORNERO, profondamente ingiusta e sbagliata, che ha rovinato MILIONI di Italiani.\n#andiamoagovernare #4marzovotoLega", "post_text": "Norma, 40 anni, non vedente, riceve a casa la busta arancione dell'INPS.\nAndr\u00e0 in pensione il 2 Febbraio del 2047, quando avr\u00e0 70 ANNI!\nFOLLIA!!!\nVIA la LEGGE FORNERO, profondamente ingiusta e sbagliata, che ha rovinato MILIONI di Italiani.\n#andiamoagovernare #4marzovotoLega", "shared_text": "", "time": "2018-01-25 11:17:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155425463378155&id=252306033154", "link": null} +{"post_id": "10155481357868155", "text": "++ UN MODO EFFICACE PER DISTRUGGERE L'EUROPA: SOSTENERE L'EUROPA SBAGLIATA! ++\n\"Si \u00e8 demonizzata l'idea che lo Stato che emette moneta possa esercitare la propria sovranit\u00e0, in momenti di emergenza, per\u2026 Altro finanziare direttamente gli investimenti, ma una volta c'era inflazione a due cifre, ora siamo in deflazione\".\n(Prof. Alberto Bagnai, Candidato Lega - Salvini Premier)\n#Facciamosquadra #Andiamoagovernare", "post_text": "++ UN MODO EFFICACE PER DISTRUGGERE L'EUROPA: SOSTENERE L'EUROPA SBAGLIATA! ++\n\"Si \u00e8 demonizzata l'idea che lo Stato che emette moneta possa esercitare la propria sovranit\u00e0, in momenti di emergenza, per\u2026 Altro finanziare direttamente gli investimenti, ma una volta c'era inflazione a due cifre, ora siamo in deflazione\".\n(Prof. Alberto Bagnai, Candidato Lega - Salvini Premier)\n#Facciamosquadra #Andiamoagovernare", "shared_text": "", "time": "2018-01-25 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155481357868155&id=252306033154", "link": null} +{"post_id": "10155481431108155", "text": "Le elezioni le vinci se riesci a trasmettere fiducia.\nCi vorr\u00e0 testa, occhio e cuore per governare questo Paese.\nIo sono pronto. #andiamoagovernare", "post_text": "Le elezioni le vinci se riesci a trasmettere fiducia.\nCi vorr\u00e0 testa, occhio e cuore per governare questo Paese.\nIo sono pronto. #andiamoagovernare", "shared_text": "", "time": "2018-01-24 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155481431108155&id=252306033154", "link": null} +{"post_id": "10155478074208155", "text": "Ve lo ricordate Gedorem Andreatta, l'albergatore di Vicenza che faceva soldi ospitando clandestini? Verr\u00e0 candidato in Parlamento con i 5 Stelle!\nQualche mese fa ero stato in quell'hotel, dove avevo avuto una \"simpatica\" conversazione con la cognata, nonch\u00e9 socia, dell'albergatore grillino.\nLascio a voi i commenti...", "post_text": "Ve lo ricordate Gedorem Andreatta, l'albergatore di Vicenza che faceva soldi ospitando clandestini? Verr\u00e0 candidato in Parlamento con i 5 Stelle!\nQualche mese fa ero stato in quell'hotel, dove avevo avuto una \"simpatica\" conversazione con la cognata, nonch\u00e9 socia, dell'albergatore grillino.\nLascio a voi i commenti...", "shared_text": "", "time": "2018-01-24 15:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155478074208155&id=252306033154", "link": null} +{"post_id": "10155480516438155", "text": "Buongiorno Amici, ora dal mercato San Benedetto di Cagliari, ci siete?", "post_text": "Buongiorno Amici, ora dal mercato San Benedetto di Cagliari, ci siete?", "shared_text": "", "time": "2018-01-24 09:53:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155480516438155&id=252306033154", "link": null} +{"post_id": "10155477973858155", "text": "Se danneggia il risparmio, il lavoro e le famiglie italiane, il \"numerino 3\" per noi non esiste.\nSiamo pronti a ridiscutere tutti i trattati europei che non fanno l'INTERESSE NAZIONALE.", "post_text": "Se danneggia il risparmio, il lavoro e le famiglie italiane, il \"numerino 3\" per noi non esiste.\nSiamo pronti a ridiscutere tutti i trattati europei che non fanno l'INTERESSE NAZIONALE.", "shared_text": "", "time": "2018-01-23 17:57:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155477973858155&id=252306033154", "link": null} +{"post_id": "10155466930588155", "text": "ITALIANI ALLA FAME, CLANDESTINI IN HOTEL!\nSono stanco di quest'Italia al contrario.\n#PRIMAGLIITALIANI #4marzovotoLega", "post_text": "ITALIANI ALLA FAME, CLANDESTINI IN HOTEL!\nSono stanco di quest'Italia al contrario.\n#PRIMAGLIITALIANI #4marzovotoLega", "shared_text": "", "time": "2018-01-20 13:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155466930588155&id=252306033154", "link": null} +{"post_id": "10155466832298155", "text": "++ NIENTE SCONTI DI PENA SE STUPRI O UCCIDI ++\n\"Occorre una rivoluzione culturale. Non \u00e8 un problema solo di Napoli. Le baby gang esistono in tutt'Italia. Spesso hanno origine nelle famiglie problematiche delle\u2026 Altro periferie, dove lo stato \u00e8 totalmente assente e non \u00e8 in grado di offrire a questi ragazzi la speranza di cambiare la propria condizione di vita\".\n(Lucia Borgonzoni)\n#4marzovotoLega", "post_text": "++ NIENTE SCONTI DI PENA SE STUPRI O UCCIDI ++\n\"Occorre una rivoluzione culturale. Non \u00e8 un problema solo di Napoli. Le baby gang esistono in tutt'Italia. Spesso hanno origine nelle famiglie problematiche delle\u2026 Altro periferie, dove lo stato \u00e8 totalmente assente e non \u00e8 in grado di offrire a questi ragazzi la speranza di cambiare la propria condizione di vita\".\n(Lucia Borgonzoni)\n#4marzovotoLega", "shared_text": "", "time": "2018-01-20 09:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155466832298155&id=252306033154", "link": null} +{"post_id": "10155466085553155", "text": "Non solo gli italiani ma anche gli immigrati regolari ci chiedono regole, ordine e sicurezza!\n#4marzovotoLega", "post_text": "Non solo gli italiani ma anche gli immigrati regolari ci chiedono regole, ordine e sicurezza!\n#4marzovotoLega", "shared_text": "", "time": "2018-01-19 19:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155466085553155&id=252306033154", "link": null} +{"post_id": "10155466233563155", "text": "Ieri sera a da Vespa con la maglia degli operai della Ideal Standard di Roccasecca e il pesce di Terracina.\nVita vera, ascoltare la gente, difendere gli interessi nazionali: se gli italiani daranno un voto in pi\u00f9 alla Lega passeremo dalle parole ai fatti, con il governo Salvini.", "post_text": "Ieri sera a da Vespa con la maglia degli operai della Ideal Standard di Roccasecca e il pesce di Terracina.\nVita vera, ascoltare la gente, difendere gli interessi nazionali: se gli italiani daranno un voto in pi\u00f9 alla Lega passeremo dalle parole ai fatti, con il governo Salvini.", "shared_text": "", "time": "2018-01-19 13:37:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155466233563155&id=252306033154", "link": null} +{"post_id": "10155465929638155", "text": "A Roma al mercato di Tuscolano III, seguitemi!", "post_text": "A Roma al mercato di Tuscolano III, seguitemi!", "shared_text": "", "time": "2018-01-19 09:58:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155465929638155&id=252306033154", "link": null} +{"post_id": "10155463986263155", "text": "\"Io sono favorevole alle regole, alle sanzioni e ai divieti, alla riscoperta di questi valori. Suona ANTICO? NO, suona buono\".\nOrgoglioso di avere nella nostra squadra l'avvocato Gulia Bongiorno, con una Lega forte questo Paese lo cambiamo! #andiamoagovernare #4marzovotolega", "post_text": "\"Io sono favorevole alle regole, alle sanzioni e ai divieti, alla riscoperta di questi valori. Suona ANTICO? NO, suona buono\".\nOrgoglioso di avere nella nostra squadra l'avvocato Gulia Bongiorno, con una Lega forte questo Paese lo cambiamo! #andiamoagovernare #4marzovotolega", "shared_text": "", "time": "2018-01-18 20:59:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155463986263155&id=252306033154", "link": null} +{"post_id": "10155463663533155", "text": "Ecco la mia intervista di oggi al TG5, sono solo 2 minuti ma penso di essere stato chiaro.\nNon vedo l'ora che arrivi il 4 marzo per cominciare a FARE. Siete pronti?\n#andiamoagovernare", "post_text": "Ecco la mia intervista di oggi al TG5, sono solo 2 minuti ma penso di essere stato chiaro.\nNon vedo l'ora che arrivi il 4 marzo per cominciare a FARE. Siete pronti?\n#andiamoagovernare", "shared_text": "", "time": "2018-01-18 14:33:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155463663533155&id=252306033154", "link": null} +{"post_id": "10155463448478155", "text": "Vi ripropongo la mia intervista di ieri sera da Belpietro su Rete Quattro.\nCifre alla mano, la natalit\u00e0 in Italia ha raggiunto il livello pi\u00f9 basso degli ultimi 50 anni. \u00c8 un'emergenza, occorre intervenire con ogni mezzo possibile.\nPrima gli italiani non sar\u00e0 solo uno slogan, ve lo prometto. #4marzovotoLega", "post_text": "Vi ripropongo la mia intervista di ieri sera da Belpietro su Rete Quattro.\nCifre alla mano, la natalit\u00e0 in Italia ha raggiunto il livello pi\u00f9 basso degli ultimi 50 anni. \u00c8 un'emergenza, occorre intervenire con ogni mezzo possibile.\nPrima gli italiani non sar\u00e0 solo uno slogan, ve lo prometto. #4marzovotoLega", "shared_text": "", "time": "2018-01-18 13:04:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155463448478155&id=252306033154", "link": null} +{"post_id": "10155461025243155", "text": "++ MIGRAZIONI SENZA RISPETTO DIVENTANO INVASIONI! L'ITALIA \u00c8 IN EMERGENZA CATASTROFICA ++\n\"Nei 5 anni di governo Letta, Renzi e Gentiloni sono arrivati in Italia 670mila immigrati, la cui stragrande maggioranza\u2026 Altro \u00e8 clandestina. Non solo non rispettano la nostra cultura ma ci costano pure 5 miliardi di euro all'anno: \u00e8 giunto il momento di farla finita con questo business targato PD\".\n(Nuccio Altieri, Deputato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "post_text": "++ MIGRAZIONI SENZA RISPETTO DIVENTANO INVASIONI! L'ITALIA \u00c8 IN EMERGENZA CATASTROFICA ++\n\"Nei 5 anni di governo Letta, Renzi e Gentiloni sono arrivati in Italia 670mila immigrati, la cui stragrande maggioranza\u2026 Altro \u00e8 clandestina. Non solo non rispettano la nostra cultura ma ci costano pure 5 miliardi di euro all'anno: \u00e8 giunto il momento di farla finita con questo business targato PD\".\n(Nuccio Altieri, Deputato Lega - Salvini Premier)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-01-17 16:14:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155461025243155&id=252306033154", "link": null} +{"post_id": "1698312110211708", "text": "I grillini gettano la maschera: STIPENDIO per tutti gli immigrati, sia dell'Unione Europea che extra.\nCon il voto alla Lega questa FOLLIA la fermiamo, fai girare!\n#4marzovotoLega #primagliitaliani", "post_text": "I grillini gettano la maschera: STIPENDIO per tutti gli immigrati, sia dell'Unione Europea che extra.\nCon il voto alla Lega questa FOLLIA la fermiamo, fai girare!\n#4marzovotoLega #primagliitaliani", "shared_text": "", "time": "2018-01-17 10:19:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1698312110211708&id=252306033154", "link": null} +{"post_id": "10155459051673155", "text": "Litigavano per pagarci le pensioni...\nOgni bottigliata un anno di contributi...\n#stopinvasione #4marzovotoLega", "post_text": "Litigavano per pagarci le pensioni...\nOgni bottigliata un anno di contributi...\n#stopinvasione #4marzovotoLega", "shared_text": "", "time": "2018-01-16 21:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155459051673155&id=252306033154", "link": null} +{"post_id": "10155459009983155", "text": "Se siete stanchi dell'IPOCRISIA e del BUONISMO imperanti, ascoltate!", "post_text": "Se siete stanchi dell'IPOCRISIA e del BUONISMO imperanti, ascoltate!", "shared_text": "", "time": "2018-01-16 19:14:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155459009983155&id=252306033154", "link": null} +{"post_id": "10155458192338155", "text": "Con il governo Salvini inciuci, minestroni e governi di larghe intese MAI!\n#4marzovotoLega", "post_text": "Con il governo Salvini inciuci, minestroni e governi di larghe intese MAI!\n#4marzovotoLega", "shared_text": "", "time": "2018-01-16 13:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155458192338155&id=252306033154", "link": null} +{"post_id": "10155456701503155", "text": "\"QUI STIAMO MALE\" e bloccano la strada.\nSe stanno cos\u00ec male, la soluzione \u00e8 semplice: RISPEDIRLI A CASA LORO!\n#PDclandestino #4marzovotoLega", "post_text": "\"QUI STIAMO MALE\" e bloccano la strada.\nSe stanno cos\u00ec male, la soluzione \u00e8 semplice: RISPEDIRLI A CASA LORO!\n#PDclandestino #4marzovotoLega", "shared_text": "", "time": "2018-01-15 18:38:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155456701503155&id=252306033154", "link": null} +{"post_id": "10155453816643155", "text": "Con Attilio Fontana per proseguire il buongoverno della Lega in Lombardia!\n#fontanapresidente", "post_text": "Con Attilio Fontana per proseguire il buongoverno della Lega in Lombardia!\n#fontanapresidente", "shared_text": "", "time": "2018-01-14 13:28:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155453816643155&id=252306033154", "link": null} +{"post_id": "10155447379303155", "text": "Se avete 10 minuti del vostro tempo da dedicare, in questo video capirete perch\u00e9, dopo anni di ricerche e studi approfonditi, la TASSA UNICA al 15% \u00e8 l'unica rivoluzione fiscale possibile, seria e con la quale, cifre alla mano, il Governo Salvini far\u00e0 ripartire l'economia del nostro Paese.\n#4marzovotoLega", "post_text": "Se avete 10 minuti del vostro tempo da dedicare, in questo video capirete perch\u00e9, dopo anni di ricerche e studi approfonditi, la TASSA UNICA al 15% \u00e8 l'unica rivoluzione fiscale possibile, seria e con la quale, cifre alla mano, il Governo Salvini far\u00e0 ripartire l'economia del nostro Paese.\n#4marzovotoLega", "shared_text": "", "time": "2018-01-13 12:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155447379303155&id=252306033154", "link": null} +{"post_id": "10155449969133155", "text": "\ud83d\udea8\ud83d\udea8\ud83d\udea8 \"VOGLIAMO RESIDENZA, VOGLIAMO RESIDENZA!\" e accerchiano il comune, dipendenti barricati e intervento dei Carabinieri a Esino Lario, vicino Lecco.\nLe tipiche facce di chi scappa dalla guerra...\nAltro che residenza, con il governo Salvini vi rispediamo TUTTI A CASA VOSTRA!!!\n#4marzovotoLega", "post_text": "\ud83d\udea8\ud83d\udea8\ud83d\udea8 \"VOGLIAMO RESIDENZA, VOGLIAMO RESIDENZA!\" e accerchiano il comune, dipendenti barricati e intervento dei Carabinieri a Esino Lario, vicino Lecco.\nLe tipiche facce di chi scappa dalla guerra...\nAltro che residenza, con il governo Salvini vi rispediamo TUTTI A CASA VOSTRA!!!\n#4marzovotoLega", "shared_text": "", "time": "2018-01-12 21:50:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155449969133155&id=252306033154", "link": null} +{"post_id": "10155449432453155", "text": "Ecco una compilation delle migliori perle \u201cboldriniane\u201d... Se non arrivate alla fine del video, vi capisco...\nPer lei prima tutto il resto del mondo, per noi sempre PRIMA GLI ITALIANI!\n#4marzoVotoLega", "post_text": "Ecco una compilation delle migliori perle \u201cboldriniane\u201d... Se non arrivate alla fine del video, vi capisco...\nPer lei prima tutto il resto del mondo, per noi sempre PRIMA GLI ITALIANI!\n#4marzoVotoLega", "shared_text": "", "time": "2018-01-12 17:58:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155449432453155&id=252306033154", "link": null} +{"post_id": "10155444683923155", "text": "Col Governo Salvini PACE FISCALE, da Stato ladro a Stato amico: se hai una cartella esattoriale sotto i 100mila euro, paghi il 10% dell'importo e riprendi a RESPIRARE, VIVERE e LAVORARE!\n#4marzoVotoLega", "post_text": "Col Governo Salvini PACE FISCALE, da Stato ladro a Stato amico: se hai una cartella esattoriale sotto i 100mila euro, paghi il 10% dell'importo e riprendi a RESPIRARE, VIVERE e LAVORARE!\n#4marzoVotoLega", "shared_text": "", "time": "2018-01-11 18:44:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155444683923155&id=252306033154", "link": null} +{"post_id": "10155444283043155", "text": "Numeri, conti, spread, debito... Ma a subire gli effetti della legge Fornero ci sono MILIONI di italiane e italiani IN CARNE ED OSSA, che sono stati rovinati, che sono caduti in depressione, che hanno perso la casa, che hanno perso il lavoro. A loro restituiremo vita e dignit\u00e0. #STOPFORNERO", "post_text": "Numeri, conti, spread, debito... Ma a subire gli effetti della legge Fornero ci sono MILIONI di italiane e italiani IN CARNE ED OSSA, che sono stati rovinati, che sono caduti in depressione, che hanno perso la casa, che hanno perso il lavoro. A loro restituiremo vita e dignit\u00e0. #STOPFORNERO", "shared_text": "", "time": "2018-01-11 10:10:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155444283043155&id=252306033154", "link": null} +{"post_id": "10155445060523155", "text": "Vi ripropongo il mio intervento radiofonico di questa mattina a RTL 102.5.\nLeggo i vostri commenti!", "post_text": "Vi ripropongo il mio intervento radiofonico di questa mattina a RTL 102.5.\nLeggo i vostri commenti!", "shared_text": "", "time": "2018-01-10 18:50:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155445060523155&id=252306033154", "link": null} +{"post_id": "10155444298078155", "text": "Vi ripropongo il mio intervento di ieri sera da Floris.\nIl sostegno del pubblico mi dice che siamo sulla strada giusta, sono questi i sondaggi che preferisco!\n#4marzovotoLega", "post_text": "Vi ripropongo il mio intervento di ieri sera da Floris.\nIl sostegno del pubblico mi dice che siamo sulla strada giusta, sono questi i sondaggi che preferisco!\n#4marzovotoLega", "shared_text": "", "time": "2018-01-10 13:09:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155444298078155&id=252306033154", "link": null} +{"post_id": "10155444144853155", "text": "Commento libero... Rispettoso, ma libero!", "post_text": "Commento libero... Rispettoso, ma libero!", "shared_text": "", "time": "2018-01-10 10:53:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155444144853155&id=252306033154", "link": null} +{"post_id": "10155441865193155", "text": "++ TASSA UNICA AL 15% E INVERSIONE DELL'ONERE DELLA PROVA: COS\u00cc GUARISCE L'ITALIA ++\n\"Siamo un Paese malato a cui non serve l'aspirina degli 80 euro ma una cura drastica che permetta agli italiani di tornare a\u2026 Altro consumare e quindi alle aziende di produrre: a questo serve la tassa unica al 15%.\nPrevediamo inoltre l'abolizione dell'onere della prova, perch\u00e9 il Fisco non pu\u00f2 avere sempre ragione a prescindere.\"\n(Armando Siri)\n#facciamosquadra #andiamoagovernare", "post_text": "++ TASSA UNICA AL 15% E INVERSIONE DELL'ONERE DELLA PROVA: COS\u00cc GUARISCE L'ITALIA ++\n\"Siamo un Paese malato a cui non serve l'aspirina degli 80 euro ma una cura drastica che permetta agli italiani di tornare a\u2026 Altro consumare e quindi alle aziende di produrre: a questo serve la tassa unica al 15%.\nPrevediamo inoltre l'abolizione dell'onere della prova, perch\u00e9 il Fisco non pu\u00f2 avere sempre ragione a prescindere.\"\n(Armando Siri)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2018-01-09 20:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155441865193155&id=252306033154", "link": null} +{"post_id": "10155441485778155", "text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34PAZZESCO!!!\nNella Milano targata PD le \"risorse\" spacciano cocaina in pieno giorno davanti alla Stazione Centrale, prendendo a sassate Brumotti e la sua troupe, a cui va anche questa volta tutta la mia\u2026 Altro solidariet\u00e0.\nNell'Italia che ho in mente, ESPULSIONE IMMEDIATA di tutti questi DELINQUENTI, senza se e senza ma!\n#4marzovotoLega", "post_text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34PAZZESCO!!!\nNella Milano targata PD le \"risorse\" spacciano cocaina in pieno giorno davanti alla Stazione Centrale, prendendo a sassate Brumotti e la sua troupe, a cui va anche questa volta tutta la mia\u2026 Altro solidariet\u00e0.\nNell'Italia che ho in mente, ESPULSIONE IMMEDIATA di tutti questi DELINQUENTI, senza se e senza ma!\n#4marzovotoLega", "shared_text": "", "time": "2018-01-09 13:12:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155441485778155&id=252306033154", "link": null} +{"post_id": "10155441453543155", "text": "Vi ripropongo la mia intervista di questa mattina a Radio 24: sulla Lombardia, sulle elezioni del 4 marzo e sul programma di governo della Lega.\nSecondo voi sono stato abbastanza chiaro?", "post_text": "Vi ripropongo la mia intervista di questa mattina a Radio 24: sulla Lombardia, sulle elezioni del 4 marzo e sul programma di governo della Lega.\nSecondo voi sono stato abbastanza chiaro?", "shared_text": "", "time": "2018-01-09 11:52:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155441453543155&id=252306033154", "link": null} +{"post_id": "10155394248223155", "text": "\"Non riusciamo a pagare, siamo al gelo\".\nLuca, pap\u00e0 con due figli, ha perso il lavoro dopo un infarto ed ora non riesce pi\u00f9 a pagare le bollette di casa.\nPer chi sbarca domani mattina, invece, c'\u00e8 pronta una comoda sistemazione in hotel...\n#PRIMAGLIITALIANI #4marzovotoLega", "post_text": "\"Non riusciamo a pagare, siamo al gelo\".\nLuca, pap\u00e0 con due figli, ha perso il lavoro dopo un infarto ed ora non riesce pi\u00f9 a pagare le bollette di casa.\nPer chi sbarca domani mattina, invece, c'\u00e8 pronta una comoda sistemazione in hotel...\n#PRIMAGLIITALIANI #4marzovotoLega", "shared_text": "", "time": "2018-01-08 15:07:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155394248223155&id=252306033154", "link": null} +{"post_id": "10155399265928155", "text": "\"Open Society Foundation\" di George Soros.\nIn Italia, guarda caso, finanzia decine e decine di Onlus.\nTra i suoi principali compiti statutari ci sono, l'immigrazione incontrollata, l'apertura del mercato delle\u2026 Altro droghe, la ridiscussione degli stereotipi sulla famiglia e sui generi.\nQuesta persona \u00e8 PERICOLOSA. BLOCCHIAMOLO, prima che sia troppo tardi.\n#andiamoagovernare #4marzovotolega", "post_text": "\"Open Society Foundation\" di George Soros.\nIn Italia, guarda caso, finanzia decine e decine di Onlus.\nTra i suoi principali compiti statutari ci sono, l'immigrazione incontrollata, l'apertura del mercato delle\u2026 Altro droghe, la ridiscussione degli stereotipi sulla famiglia e sui generi.\nQuesta persona \u00e8 PERICOLOSA. BLOCCHIAMOLO, prima che sia troppo tardi.\n#andiamoagovernare #4marzovotolega", "shared_text": "", "time": "2018-01-06 19:41:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155399265928155&id=252306033154", "link": null} +{"post_id": "10155430294778155", "text": "Insofferenti per il cibo, protestano. Vogliono appartamenti.\nPieno di donne e bambini, vero?\nUN INSULTO ai milioni di italiani in difficolt\u00e0!\nNon vedo l'ora di rispedire A CASA chi soggiorna gratis nel nostro Paese senza averne diritto e pretende, pretende, pretende.\n#4marzovotoLega", "post_text": "Insofferenti per il cibo, protestano. Vogliono appartamenti.\nPieno di donne e bambini, vero?\nUN INSULTO ai milioni di italiani in difficolt\u00e0!\nNon vedo l'ora di rispedire A CASA chi soggiorna gratis nel nostro Paese senza averne diritto e pretende, pretende, pretende.\n#4marzovotoLega", "shared_text": "", "time": "2018-01-04 21:01:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155430294778155&id=252306033154", "link": null} +{"post_id": "10155427191998155", "text": "Qualche minuto insieme a voi da Milano, ci siete?", "post_text": "Qualche minuto insieme a voi da Milano, ci siete?", "shared_text": "", "time": "2018-01-03 13:25:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155427191998155&id=252306033154", "link": null} +{"post_id": "10155420174328155", "text": "Difesa del lavoro, del risparmio, della famiglia e dei confini: dalla sinistra solo chiacchiere, il 4 marzo tocca a noi!", "post_text": "Difesa del lavoro, del risparmio, della famiglia e dei confini: dalla sinistra solo chiacchiere, il 4 marzo tocca a noi!", "shared_text": "", "time": "2017-12-31 20:54:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155420174328155&id=252306033154", "link": null} +{"post_id": "10155415163453155", "text": "Parliamo un po\u2019 di me, di voi e di futuro.\nSenza giornalisti di mezzo!", "post_text": "Parliamo un po\u2019 di me, di voi e di futuro.\nSenza giornalisti di mezzo!", "shared_text": "", "time": "2017-12-29 22:24:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155415163453155&id=252306033154", "link": null} +{"post_id": "10155412660503155", "text": "Camere sciolte, noi PRONTI!\nSegui anche tu!", "post_text": "Camere sciolte, noi PRONTI!\nSegui anche tu!", "shared_text": "", "time": "2017-12-28 21:50:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155412660503155&id=252306033154", "link": null} +{"post_id": "10155411831398155", "text": "5 milioni di poveri, 4 milioni di disoccupati, un milione di clandestini nelle nostre citt\u00e0, il record negativo di bambini nati in Italia.\nNon vedo l'ora di mettere fine ai DISASTRI di questi sei anni di PD e di restituire lavoro e sicurezza agli italiani.\nP.s. Guardate e commentate, ma solo se riuscite a rimanere svegli...", "post_text": "5 milioni di poveri, 4 milioni di disoccupati, un milione di clandestini nelle nostre citt\u00e0, il record negativo di bambini nati in Italia.\nNon vedo l'ora di mettere fine ai DISASTRI di questi sei anni di PD e di restituire lavoro e sicurezza agli italiani.\nP.s. Guardate e commentate, ma solo se riuscite a rimanere svegli...", "shared_text": "", "time": "2017-12-28 14:35:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155411831398155&id=252306033154", "link": null} +{"post_id": "10155405029253155", "text": "All'Italia regaleremo un principio troppo spesso dimenticato: #primagliitaliani!\nINSIEME a voi si pu\u00f2, Amici: ancora Buon Natale a questa splendida Comunit\u00e0!", "post_text": "All'Italia regaleremo un principio troppo spesso dimenticato: #primagliitaliani!\nINSIEME a voi si pu\u00f2, Amici: ancora Buon Natale a questa splendida Comunit\u00e0!", "shared_text": "", "time": "2017-12-25 16:44:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155405029253155&id=252306033154", "link": null} +{"post_id": "10155401874338155", "text": "Il #NoIusSoli \u00e8 il miglior regalo di Natale per gli italiani e gli immigrati regolari, integrati e rispettosi della nostra cultura e delle nostre leggi. E sul voto di marzo sentite fino alla fine che cosa ho detto oggi... La pensate anche voi come me???", "post_text": "Il #NoIusSoli \u00e8 il miglior regalo di Natale per gli italiani e gli immigrati regolari, integrati e rispettosi della nostra cultura e delle nostre leggi. E sul voto di marzo sentite fino alla fine che cosa ho detto oggi... La pensate anche voi come me???", "shared_text": "", "time": "2017-12-24 17:08:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155401874338155&id=252306033154", "link": null} +{"post_id": "10155399763103155", "text": "Per gli Auguri di Natale vi porto a fare un giro nel mio ufficio!\nNon abbiamo soldi, televisioni, banche o amici potenti ma abbiamo VOI!\nE #sevoicisieteiocisono!", "post_text": "Per gli Auguri di Natale vi porto a fare un giro nel mio ufficio!\nNon abbiamo soldi, televisioni, banche o amici potenti ma abbiamo VOI!\nE #sevoicisieteiocisono!", "shared_text": "", "time": "2017-12-23 21:04:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155399763103155&id=252306033154", "link": null} +{"post_id": "10155394254983155", "text": "Nando, imprenditore, ha PERSO TUTTO con il TERREMOTO.\n\"Mi hanno dato una mano tutti tranne che lo Stato.\"\nOggi, secondo i criteri del governo Renzi, lui non avrebbe diritto a NESSUNA FORMA DI AIUTI sulle tasse\u2026 Altro perch\u00e9, rimboccandosi le maniche, lavorando giorno e notte, ha ricostruito tutto, mantenendo inalterato il suo fatturato.\nFOLLIA!\nSe non sostieni chi fa impresa, se lasci scappare anche gli imprenditori, l'Italia non ha futuro!\nIo sono pronto! #andiamoagovernare", "post_text": "Nando, imprenditore, ha PERSO TUTTO con il TERREMOTO.\n\"Mi hanno dato una mano tutti tranne che lo Stato.\"\nOggi, secondo i criteri del governo Renzi, lui non avrebbe diritto a NESSUNA FORMA DI AIUTI sulle tasse\u2026 Altro perch\u00e9, rimboccandosi le maniche, lavorando giorno e notte, ha ricostruito tutto, mantenendo inalterato il suo fatturato.\nFOLLIA!\nSe non sostieni chi fa impresa, se lasci scappare anche gli imprenditori, l'Italia non ha futuro!\nIo sono pronto! #andiamoagovernare", "shared_text": "", "time": "2017-12-22 13:45:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155394254983155&id=252306033154", "link": null} +{"post_id": "10155392645618155", "text": "\"Lavoro per 6 euro all'ora, spostandomi in tutta Milano a mie spese, senza buoni pasto n\u00e9 contributi e con le mance tassate. In Italia noi giovani siamo trattati come SCHIAVI, quindi ho deciso di andarmene all'\u2026 Altroestero\".\nAltro che accoglienza, se vogliamo ricominciare a CRESCERE dobbiamo trattenere i nostri giovani creando non lavoretti sottopagati o part-time, ma LAVORO stabile.", "post_text": "\"Lavoro per 6 euro all'ora, spostandomi in tutta Milano a mie spese, senza buoni pasto n\u00e9 contributi e con le mance tassate. In Italia noi giovani siamo trattati come SCHIAVI, quindi ho deciso di andarmene all'\u2026 Altroestero\".\nAltro che accoglienza, se vogliamo ricominciare a CRESCERE dobbiamo trattenere i nostri giovani creando non lavoretti sottopagati o part-time, ma LAVORO stabile.", "shared_text": "", "time": "2017-12-21 13:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155392645618155&id=252306033154", "link": null} +{"post_id": "10155394279913155", "text": "Licenziato per questo episodio, questo capotreno DEVE poter tornare a lavorare!", "post_text": "Licenziato per questo episodio, questo capotreno DEVE poter tornare a lavorare!", "shared_text": "", "time": "2017-12-21 11:40:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155394279913155&id=252306033154", "link": null} +{"post_id": "10155387757168155", "text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34FOLLIA PURA!\n40mila euro di spese legali, per essere ASSOLTO.\nLa Lega ha da tempo depositato una proposta di legge che sancisce che la LEGITTIMIT\u00c0 DELLA DIFESA e la tutela delle vittime.\nOggi Renzi e Gentiloni se ne fregano, per il governo Salvini sar\u00e0 una priorit\u00e0.\n#andiamoagovernare", "post_text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34FOLLIA PURA!\n40mila euro di spese legali, per essere ASSOLTO.\nLa Lega ha da tempo depositato una proposta di legge che sancisce che la LEGITTIMIT\u00c0 DELLA DIFESA e la tutela delle vittime.\nOggi Renzi e Gentiloni se ne fregano, per il governo Salvini sar\u00e0 una priorit\u00e0.\n#andiamoagovernare", "shared_text": "", "time": "2017-12-21 10:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155387757168155&id=252306033154", "link": null} +{"post_id": "10155392267123155", "text": "Modello governo \"Spelacchio\" a 5 Stelle? No, grazie!", "post_text": "Modello governo \"Spelacchio\" a 5 Stelle? No, grazie!", "shared_text": "", "time": "2017-12-20 22:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155392267123155&id=252306033154", "link": null} +{"post_id": "10155392434448155", "text": "La poesia della maestra Maria di Altamura mi ha anche un po' commosso, grazie! Ce la metter\u00f2 tutta.", "post_text": "La poesia della maestra Maria di Altamura mi ha anche un po' commosso, grazie! Ce la metter\u00f2 tutta.", "shared_text": "", "time": "2017-12-20 19:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155392434448155&id=252306033154", "link": null} +{"post_id": "10155392658298155", "text": "Vi ripropongo il mio intervento di luned\u00ec a Bari.\nDa qui parte per il Sud e per tutta l'Italia la Rivoluzione del Buonsenso!\nSe voi ci siete, io ci sono.", "post_text": "Vi ripropongo il mio intervento di luned\u00ec a Bari.\nDa qui parte per il Sud e per tutta l'Italia la Rivoluzione del Buonsenso!\nSe voi ci siete, io ci sono.", "shared_text": "", "time": "2017-12-20 17:27:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155392658298155&id=252306033154", "link": null} +{"post_id": "10155392150198155", "text": "++ CHI COMMETTE REATI CHE HANNO ROVINATO LA VITA AI RISPARMIATORI MERITA LA GALERA ++\n\u201cL\u2019Italia ha dato all\u2019Europa decine miliardi di euro per salvare le banche straniere, \u00e8 giunto il momento di riprenderci almeno una parte per risarcire i correntisti italiani rovinati\u201d.\n(Lucia Borgonzoni)\n#facciamosquadra #andiamoagovernare", "post_text": "++ CHI COMMETTE REATI CHE HANNO ROVINATO LA VITA AI RISPARMIATORI MERITA LA GALERA ++\n\u201cL\u2019Italia ha dato all\u2019Europa decine miliardi di euro per salvare le banche straniere, \u00e8 giunto il momento di riprenderci almeno una parte per risarcire i correntisti italiani rovinati\u201d.\n(Lucia Borgonzoni)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-12-20 16:15:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155392150198155&id=252306033154", "link": null} +{"post_id": "10155392107303155", "text": "A Reggio Emilia per inaugurare la nuova sede della Lega!", "post_text": "A Reggio Emilia per inaugurare la nuova sede della Lega!", "shared_text": "", "time": "2017-12-20 12:23:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155392107303155&id=252306033154", "link": null} +{"post_id": "10155387795233155", "text": "DOPO IL DANNO, PURE LA BEFFA!\nRino, 86 anni, invalido da anni con una gamba amputata.\nOggi, l'INPS lo richiama per controllare che non gli sia ricresciuta!\nNo, non sto scherzando: \u00c8 TUTTO VERO!\nSi controllino i falsi invalidi senza pudore e si condanni qualche medico!", "post_text": "DOPO IL DANNO, PURE LA BEFFA!\nRino, 86 anni, invalido da anni con una gamba amputata.\nOggi, l'INPS lo richiama per controllare che non gli sia ricresciuta!\nNo, non sto scherzando: \u00c8 TUTTO VERO!\nSi controllino i falsi invalidi senza pudore e si condanni qualche medico!", "shared_text": "", "time": "2017-12-20 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155387795233155&id=252306033154", "link": null} +{"post_id": "10155390130823155", "text": "Se avete 2 minuti, ecco le prime cose che far\u00e0 il governo Salvini.\n#LaRivoluzionedelBuonsenso", "post_text": "Se avete 2 minuti, ecco le prime cose che far\u00e0 il governo Salvini.\n#LaRivoluzionedelBuonsenso", "shared_text": "", "time": "2017-12-19 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155390130823155&id=252306033154", "link": null} +{"post_id": "10155387781243155", "text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34Prima ti massacrano di botte poi ti derubano, e se ti difendi vai in galera.\nCome fanno i cittadini onesti e le Forze dell'ordine a fermare i ladri con queste leggi vergognose???\nQuando saremo al governo daremo finalmente agli italiani una legge SERIA sulla legittima difesa.", "post_text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34Prima ti massacrano di botte poi ti derubano, e se ti difendi vai in galera.\nCome fanno i cittadini onesti e le Forze dell'ordine a fermare i ladri con queste leggi vergognose???\nQuando saremo al governo daremo finalmente agli italiani una legge SERIA sulla legittima difesa.", "shared_text": "", "time": "2017-12-19 18:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155387781243155&id=252306033154", "link": null} +{"post_id": "10155389696948155", "text": "Qui Altamura (Bari), lo spettacolo del territorio che si trasforma nella gioia del Natale.\nLo dedichiamo a chi vorrebbe cancellare la nostra storia, la nostra civilt\u00e0 e i nostri valori.\nViva il presepe!", "post_text": "Qui Altamura (Bari), lo spettacolo del territorio che si trasforma nella gioia del Natale.\nLo dedichiamo a chi vorrebbe cancellare la nostra storia, la nostra civilt\u00e0 e i nostri valori.\nViva il presepe!", "shared_text": "", "time": "2017-12-19 12:06:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155389696948155&id=252306033154", "link": null} +{"post_id": "10155389550003155", "text": "Dal 1423 l'Antico Forno Santa Chiara produce l'oro di questo territorio: il celebrato pane di Altamura (Bari)!\nAlla faccia delle schifezze che arrivano dall'altra parte del mondo. Viva i prodotti ITALIANI, viva le nostre splendide tradizioni.", "post_text": "Dal 1423 l'Antico Forno Santa Chiara produce l'oro di questo territorio: il celebrato pane di Altamura (Bari)!\nAlla faccia delle schifezze che arrivano dall'altra parte del mondo. Viva i prodotti ITALIANI, viva le nostre splendide tradizioni.", "shared_text": "", "time": "2017-12-19 10:41:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155389550003155&id=252306033154", "link": null} +{"post_id": "10155388486953155", "text": "La nostra unica ricchezza siete VOI!\nQuesto affetto e questa fiducia mi ripagano di tutto l'impegno che cerco di metterci.\nGrazie BARI, grazie PUGLIA! #andiamoagovernare", "post_text": "La nostra unica ricchezza siete VOI!\nQuesto affetto e questa fiducia mi ripagano di tutto l'impegno che cerco di metterci.\nGrazie BARI, grazie PUGLIA! #andiamoagovernare", "shared_text": "", "time": "2017-12-18 22:09:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155388486953155&id=252306033154", "link": null} +{"post_id": "10155387863208155", "text": "In diretta da Bari, parte da qui la battaglia della Lega per la Puglia e per il Sud. State con noi!\n#andiamoagovernare", "post_text": "In diretta da Bari, parte da qui la battaglia della Lega per la Puglia e per il Sud. State con noi!\n#andiamoagovernare", "shared_text": "", "time": "2017-12-18 17:44:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155387863208155&id=252306033154", "link": null} +{"post_id": "10155387236158155", "text": "Se ieri non l'avete vista, guardate la mia intervista di ieri su Rai Tre da Lucia Annunziata, e aiutatemi a CONDIVIDERLA.\nCredo sia andata bene.\n\u00c8 sempre bello confrontarsi, anche se qualcuno non la pensa allo stesso modo...", "post_text": "Se ieri non l'avete vista, guardate la mia intervista di ieri su Rai Tre da Lucia Annunziata, e aiutatemi a CONDIVIDERLA.\nCredo sia andata bene.\n\u00c8 sempre bello confrontarsi, anche se qualcuno non la pensa allo stesso modo...", "shared_text": "", "time": "2017-12-18 11:49:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155387236158155&id=252306033154", "link": null} +{"post_id": "10155384999338155", "text": "\u201cAntifascisti\u201d a Modena, attacco alla Polizia e citt\u00e0 vandalizzata. Avete sentito qualcuno lamentarsi?\nL\u2019ipocrisia della sinistra che coccola i violenti non ha confini.", "post_text": "\u201cAntifascisti\u201d a Modena, attacco alla Polizia e citt\u00e0 vandalizzata. Avete sentito qualcuno lamentarsi?\nL\u2019ipocrisia della sinistra che coccola i violenti non ha confini.", "shared_text": "", "time": "2017-12-18 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155384999338155&id=252306033154", "link": null} +{"post_id": "10155385618353155", "text": "In diretta da una splendida Verona natalizia!", "post_text": "In diretta da una splendida Verona natalizia!", "shared_text": "", "time": "2017-12-17 18:50:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155385618353155&id=252306033154", "link": null} +{"post_id": "10155385246203155", "text": "Qui Milano. In diretta dalla Scuola di Formazione Politica! Seguiteci!", "post_text": "Qui Milano. In diretta dalla Scuola di Formazione Politica! Seguiteci!", "shared_text": "", "time": "2017-12-17 16:03:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155385246203155&id=252306033154", "link": null} +{"post_id": "10155382296138155", "text": "Orgoglioso di essere di nuovo questo luned\u00ec in Puglia, a Bari, dove la Lega \u00e8 sempre pi\u00f9 forte!\nSe siete liberi, vi aspetto alle 17 allo Showville", "post_text": "Orgoglioso di essere di nuovo questo luned\u00ec in Puglia, a Bari, dove la Lega \u00e8 sempre pi\u00f9 forte!\nSe siete liberi, vi aspetto alle 17 allo Showville", "shared_text": "", "time": "2017-12-16 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155382296138155&id=252306033154", "link": null} +{"post_id": "10155382256343155", "text": "COERENZA.\nSu rivoluzione fiscale con la flat tax, pensioni con la cancellazione dell'infame legge Fornero, invasione clandestina, cittadinanza, sicurezza e legittima difesa, certezza della pena!\nCon le IDEE CHIARE si vince!\n#andiamoagovernare", "post_text": "COERENZA.\nSu rivoluzione fiscale con la flat tax, pensioni con la cancellazione dell'infame legge Fornero, invasione clandestina, cittadinanza, sicurezza e legittima difesa, certezza della pena!\nCon le IDEE CHIARE si vince!\n#andiamoagovernare", "shared_text": "", "time": "2017-12-16 12:18:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155382256343155&id=252306033154", "link": null} +{"post_id": "10155377087363155", "text": "IL GOVERNO SALVINI RESTITUIR\u00c0 IL FUTURO AI NOSTRI FIGLI\nGli insegnanti saranno assegnati in base a concorsi e graduatorie su base REGIONALE, permettendo loro gli stessi studenti durante il loro intero ciclo di\u2026 Altro studi.\nCi impegneremo a far tornare piene le culle dei nostri ospedali con misure RADICALI, non come il vergognoso \u201cbonus beb\u00e8\u201d del PD, perch\u00e9 mamme e pap\u00e0 devono ritrovare il gusto di scommettere sul futuro del nostro Paese.\n#LaRivoluzionedelBuonsenso", "post_text": "IL GOVERNO SALVINI RESTITUIR\u00c0 IL FUTURO AI NOSTRI FIGLI\nGli insegnanti saranno assegnati in base a concorsi e graduatorie su base REGIONALE, permettendo loro gli stessi studenti durante il loro intero ciclo di\u2026 Altro studi.\nCi impegneremo a far tornare piene le culle dei nostri ospedali con misure RADICALI, non come il vergognoso \u201cbonus beb\u00e8\u201d del PD, perch\u00e9 mamme e pap\u00e0 devono ritrovare il gusto di scommettere sul futuro del nostro Paese.\n#LaRivoluzionedelBuonsenso", "shared_text": "", "time": "2017-12-16 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155377087363155&id=252306033154", "link": null} +{"post_id": "10155380504238155", "text": "Pazzesco! Questa \u00e8 la bella Italia del Pd...\nAltro che \"obbligo di firma\"! Questo deve essere rispedito a casa sua a calci nel sedere!", "post_text": "Pazzesco! Questa \u00e8 la bella Italia del Pd...\nAltro che \"obbligo di firma\"! Questo deve essere rispedito a casa sua a calci nel sedere!", "shared_text": "", "time": "2017-12-15 21:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155380504238155&id=252306033154", "link": null} +{"post_id": "10155380423318155", "text": "Ma Librandi del Pd, secondo voi, ci \u00e8 o ci fa???", "post_text": "Ma Librandi del Pd, secondo voi, ci \u00e8 o ci fa???", "shared_text": "", "time": "2017-12-15 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155380423318155&id=252306033154", "link": null} +{"post_id": "10155379952218155", "text": "L'uomo che ha barbaramente massacrato a coltellate Lucia e Filippa, due anziane sorelle della provincia di Catania, a normativa vigente pu\u00f2 ottenere lo sconto di un terzo della pena.\nPer stupratori e assassini\u2026 Altro non pu\u00f2 esserci NESSUNO SCONTO!\nQuesto chiede la legge delle Lega, spero che chi l'ha bloccata ci ripensi e rimedi all'errore.", "post_text": "L'uomo che ha barbaramente massacrato a coltellate Lucia e Filippa, due anziane sorelle della provincia di Catania, a normativa vigente pu\u00f2 ottenere lo sconto di un terzo della pena.\nPer stupratori e assassini\u2026 Altro non pu\u00f2 esserci NESSUNO SCONTO!\nQuesto chiede la legge delle Lega, spero che chi l'ha bloccata ci ripensi e rimedi all'errore.", "shared_text": "", "time": "2017-12-15 15:20:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155379952218155&id=252306033154", "link": null} +{"post_id": "10155377065943155", "text": "Perch\u00e9 i CONTRIBUENTI ITALIANI devono pagare le Forze dell\u2019Ordine per proteggere il pap\u00e0 della Boschi?\nLa Lega ha fatto un\u2019interrogazione parlamentare per sapere quanto costa e chi paga, ma penso di sapere gi\u00e0 la risposta...", "post_text": "Perch\u00e9 i CONTRIBUENTI ITALIANI devono pagare le Forze dell\u2019Ordine per proteggere il pap\u00e0 della Boschi?\nLa Lega ha fatto un\u2019interrogazione parlamentare per sapere quanto costa e chi paga, ma penso di sapere gi\u00e0 la risposta...", "shared_text": "", "time": "2017-12-15 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155377065943155&id=252306033154", "link": null} +{"post_id": "10155374913048155", "text": "IL GOVERNO SALVINI FISSER\u00c0 UNA RETRIBUZIONE MINIMA PER LEGGE\n3 euro all\u2019ora \u00e8 schiavismo, e gli italiani non sono schiavi!\nCon la Lega al Governo introdurremo un salario orario minimo garantito, perch\u00e9 \u00e8 giunto il momento di restituire a tutti il diritto di vivere, non sopravvivere.\n#LaRivoluzionedelBuonsenso", "post_text": "IL GOVERNO SALVINI FISSER\u00c0 UNA RETRIBUZIONE MINIMA PER LEGGE\n3 euro all\u2019ora \u00e8 schiavismo, e gli italiani non sono schiavi!\nCon la Lega al Governo introdurremo un salario orario minimo garantito, perch\u00e9 \u00e8 giunto il momento di restituire a tutti il diritto di vivere, non sopravvivere.\n#LaRivoluzionedelBuonsenso", "shared_text": "", "time": "2017-12-14 14:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155374913048155&id=252306033154", "link": null} +{"post_id": "10155374775478155", "text": "\u201cSuccede che esci a fare la spesa e ti occupano la casa. E devi stare zitto.\"\nNella periferia di Milano, lo Stato non esiste. Se vuoi una casa popolare devi chiedere ai ROM.\nQuando saremo al Governo, l\u2019unica stanza che questi delinquenti dovranno occupare sar\u00e0 la GALERA.", "post_text": "\u201cSuccede che esci a fare la spesa e ti occupano la casa. E devi stare zitto.\"\nNella periferia di Milano, lo Stato non esiste. Se vuoi una casa popolare devi chiedere ai ROM.\nQuando saremo al Governo, l\u2019unica stanza che questi delinquenti dovranno occupare sar\u00e0 la GALERA.", "shared_text": "", "time": "2017-12-14 12:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155374775478155&id=252306033154", "link": null} +{"post_id": "10155374497338155", "text": "Buona Santa Lucia!\nViva il sorriso dei bambini, viva le nostre tradizioni!\nP.s. Un \"Mi piace\" a CRHome.TV che ha realizzato questo bellissimo video.", "post_text": "Buona Santa Lucia!\nViva il sorriso dei bambini, viva le nostre tradizioni!\nP.s. Un \"Mi piace\" a CRHome.TV che ha realizzato questo bellissimo video.", "shared_text": "", "time": "2017-12-13 13:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155374497338155&id=252306033154", "link": null} +{"post_id": "10155374355918155", "text": "In Europa ti stanno preparando il regalo di Natale: una \"riforma\" che consentir\u00e0 di BLOCCARE IL TUO CONTO CORRENTE in caso di difficolt\u00e0 di una banca!\nE il governo del Pd che fa? NIENTE!\nFacciamo GIRARE almeno in rete!", "post_text": "In Europa ti stanno preparando il regalo di Natale: una \"riforma\" che consentir\u00e0 di BLOCCARE IL TUO CONTO CORRENTE in caso di difficolt\u00e0 di una banca!\nE il governo del Pd che fa? NIENTE!\nFacciamo GIRARE almeno in rete!", "shared_text": "", "time": "2017-12-13 11:54:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155374355918155&id=252306033154", "link": null} +{"post_id": "10155371748783155", "text": "PAZZESCO!\nSpara e ferisce un ladro, sventando la rapina.\nPer ricompensarlo viene punito pi\u00f9 del bandito.\nVi sembra normale?\nCon la LEGA al governo la difesa diventer\u00e0 sempre legittima, questo Paese al contrario lo ribaltiamo!\n#andiamoagovernare", "post_text": "PAZZESCO!\nSpara e ferisce un ladro, sventando la rapina.\nPer ricompensarlo viene punito pi\u00f9 del bandito.\nVi sembra normale?\nCon la LEGA al governo la difesa diventer\u00e0 sempre legittima, questo Paese al contrario lo ribaltiamo!\n#andiamoagovernare", "shared_text": "", "time": "2017-12-13 10:07:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155371748783155&id=252306033154", "link": null} +{"post_id": "10155371790693155", "text": "Accogliereste un clandestino per 1.000 euro al mese?\nSentite che cosa ne pensano i romani...\nMa per la Raggi serve \"sperimentare\"......\n#stopinvasione #primagliitaliani", "post_text": "Accogliereste un clandestino per 1.000 euro al mese?\nSentite che cosa ne pensano i romani...\nMa per la Raggi serve \"sperimentare\"......\n#stopinvasione #primagliitaliani", "shared_text": "", "time": "2017-12-13 09:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155371790693155&id=252306033154", "link": null} +{"post_id": "10155369367463155", "text": "VITA VERA contro la realt\u00e0 virtuale del Pd!\n#andiamoagovernare", "post_text": "VITA VERA contro la realt\u00e0 virtuale del Pd!\n#andiamoagovernare", "shared_text": "", "time": "2017-12-12 22:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155369367463155&id=252306033154", "link": null} +{"post_id": "10155371970108155", "text": "Italia vittima di frane e alluvioni.\nServono 40 miliardi, ma i \u201cvincoli europei\u201d ci impediscono di usarli.\nVi pare normale???\nE poi tasse, lavoro, immigrazione, Natale e... CALCIATORI BRUTTI.\nParliamone, e sempre prima gli italiani!", "post_text": "Italia vittima di frane e alluvioni.\nServono 40 miliardi, ma i \u201cvincoli europei\u201d ci impediscono di usarli.\nVi pare normale???\nE poi tasse, lavoro, immigrazione, Natale e... CALCIATORI BRUTTI.\nParliamone, e sempre prima gli italiani!", "shared_text": "", "time": "2017-12-12 13:53:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155371970108155&id=252306033154", "link": null} +{"post_id": "10155369853993155", "text": "I miei impegni per il Sud: lavoro, sicurezza, difesa del made in Italy e delle nostre produzioni.\nNon ne posso pi\u00f9 di un governo di SERVI!", "post_text": "I miei impegni per il Sud: lavoro, sicurezza, difesa del made in Italy e delle nostre produzioni.\nNon ne posso pi\u00f9 di un governo di SERVI!", "shared_text": "", "time": "2017-12-12 11:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155369853993155&id=252306033154", "link": null} +{"post_id": "10155370082973155", "text": "Lega - Pd 3 a 0!\nE il pubblico di La7 in studio ha apprezzato.\nDai che li mandiamo TUTTI A CASA!\nManca poco, #andiamoagovernare", "post_text": "Lega - Pd 3 a 0!\nE il pubblico di La7 in studio ha apprezzato.\nDai che li mandiamo TUTTI A CASA!\nManca poco, #andiamoagovernare", "shared_text": "", "time": "2017-12-11 21:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155370082973155&id=252306033154", "link": null} +{"post_id": "10155369925143155", "text": "DA VEDERE!\nGiovanna, la \"signora del campanello\", truffata dalle banche, azzerata dal governo del Pd!\nBasterebbe chiedere indietro all'Europa una parte di quei 64 MILIARDI che abbiamo regalato per salvare le\u2026 Altro banche straniere!\nIn un Paese serio i risparmiatori vanno GARANTITI e gli interessi NAZIONALI tutelati, noi lo faremo!\n#bastaPD #andiamoagovernare", "post_text": "DA VEDERE!\nGiovanna, la \"signora del campanello\", truffata dalle banche, azzerata dal governo del Pd!\nBasterebbe chiedere indietro all'Europa una parte di quei 64 MILIARDI che abbiamo regalato per salvare le\u2026 Altro banche straniere!\nIn un Paese serio i risparmiatori vanno GARANTITI e gli interessi NAZIONALI tutelati, noi lo faremo!\n#bastaPD #andiamoagovernare", "shared_text": "", "time": "2017-12-11 18:54:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155369925143155&id=252306033154", "link": null} +{"post_id": "10155369818863155", "text": "La mia intervista di stamattina a Rai Radio1 sulle nostre idee per il futuro del Paese.\nAscoltate e commentate!", "post_text": "La mia intervista di stamattina a Rai Radio1 sulle nostre idee per il futuro del Paese.\nAscoltate e commentate!", "shared_text": "", "time": "2017-12-11 17:54:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155369818863155&id=252306033154", "link": null} +{"post_id": "10155369155873155", "text": "Tantissimi immigrati regolari e perbene che pagano le tasse, mandano i figli a scuola e portano rispetto per la nostra cultura e le nostre leggi contribuiscono positivamente alla societ\u00e0 italiana.\nMa chi non\u2026 Altro scappa da nessuna guerra, e la guerra ce la porta in casa, FUORI!\nNel patto di governo chiederemo l'impegno ad espellere almeno 100 MILA clandestini all'anno! Siete d'accordo?", "post_text": "Tantissimi immigrati regolari e perbene che pagano le tasse, mandano i figli a scuola e portano rispetto per la nostra cultura e le nostre leggi contribuiscono positivamente alla societ\u00e0 italiana.\nMa chi non\u2026 Altro scappa da nessuna guerra, e la guerra ce la porta in casa, FUORI!\nNel patto di governo chiederemo l'impegno ad espellere almeno 100 MILA clandestini all'anno! Siete d'accordo?", "shared_text": "", "time": "2017-12-11 16:35:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155369155873155&id=252306033154", "link": null} +{"post_id": "10155356748538155", "text": "\"IO SONO UNA LAVORATRICE E VOGLIO LAVORARE MA TUTTI NOI ABBIAMO UNA VITA\"\nParole belle e commoventi di una mamma, LICENZIATA perch\u00e9 chiedeva di cambiare orari di lavoro per riuscire ad occuparsi del figlio\u2026 Altro disabile.\nCi vogliono precari e SCHIAVI, ma non ci dobbiamo arrendere.\nAltro che le \"fake news\" di Renzi: questo Paese deve restituire LAVORO DIGNITOSO a tutti gli italiani, sar\u00e0 la nostra priorit\u00e0!", "post_text": "\"IO SONO UNA LAVORATRICE E VOGLIO LAVORARE MA TUTTI NOI ABBIAMO UNA VITA\"\nParole belle e commoventi di una mamma, LICENZIATA perch\u00e9 chiedeva di cambiare orari di lavoro per riuscire ad occuparsi del figlio\u2026 Altro disabile.\nCi vogliono precari e SCHIAVI, ma non ci dobbiamo arrendere.\nAltro che le \"fake news\" di Renzi: questo Paese deve restituire LAVORO DIGNITOSO a tutti gli italiani, sar\u00e0 la nostra priorit\u00e0!", "shared_text": "", "time": "2017-12-11 10:44:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155356748538155&id=252306033154", "link": null} +{"post_id": "10155368163438155", "text": "Un bel ricordo, per chi c'era fisicamente, per chi ha seguito da lontano, per chi c'era col cuore!", "post_text": "Un bel ricordo, per chi c'era fisicamente, per chi ha seguito da lontano, per chi c'era col cuore!", "shared_text": "", "time": "2017-12-10 22:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155367099683155&id=252306033154", "link": null} +{"post_id": "10155366956883155", "text": "Vi ripropongo qui il mio intervento di domenica a Roma, se vi piace facciamolo girare qui in rete finch\u00e9 ce lo lasceranno fare! #primagliitaliani", "post_text": "Vi ripropongo qui il mio intervento di domenica a Roma, se vi piace facciamolo girare qui in rete finch\u00e9 ce lo lasceranno fare! #primagliitaliani", "shared_text": "", "time": "2017-12-10 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155366956883155&id=252306033154", "link": null} +{"post_id": "10155367008348155", "text": "L'affetto che mi date \u00e8 la ricompensa pi\u00f9 bella.", "post_text": "L'affetto che mi date \u00e8 la ricompensa pi\u00f9 bella.", "shared_text": "", "time": "2017-12-10 15:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155367008348155&id=252306033154", "link": null} +{"post_id": "10155366580503155", "text": "In questa splendida domenica da piazza Santi Apostoli a Roma, con migliaia di italiani che non si arrendono, che sognano un Paese sicuro, forte e libero! State CON NOI! #primagliitaliani", "post_text": "In questa splendida domenica da piazza Santi Apostoli a Roma, con migliaia di italiani che non si arrendono, che sognano un Paese sicuro, forte e libero! State CON NOI! #primagliitaliani", "shared_text": "", "time": "2017-12-10 11:43:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155366580503155&id=252306033154", "link": null} +{"post_id": "10155366564793155", "text": "Arrivato, che piazza fantastica! Tra poco tutta la diretta da Roma su questa Pagina!", "post_text": "Arrivato, che piazza fantastica! Tra poco tutta la diretta da Roma su questa Pagina!", "shared_text": "", "time": "2017-12-10 11:24:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155366564793155&id=252306033154", "link": null} +{"post_id": "10155362910893155", "text": "Sempre #dallapartedisandra! Noi non ti dimentichiamo, la Lega per te far\u00e0 di tutto.", "post_text": "Sempre #dallapartedisandra! Noi non ti dimentichiamo, la Lega per te far\u00e0 di tutto.", "shared_text": "", "time": "2017-12-10 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155362910893155&id=252306033154", "link": null} +{"post_id": "10155362902753155", "text": "Parroco Sardo: \"L'accoglienza \u00e8 un FALLIMENTO! Basta con gli immigrati accattoni!\".\nIl sacerdote viene accusato di aver usato \"toni salviniani\" e additato come intollerante e razzista.\nNon so voi, ma a me\u2026 Altro sembra soltanto BUONSENSO.\nUno Stato serio, prima pensa agli Italiani in difficolt\u00e0 poi, se c'\u00e8 spazio, a chi arriva dal resto del mondo. #andiamoagovernare", "post_text": "Parroco Sardo: \"L'accoglienza \u00e8 un FALLIMENTO! Basta con gli immigrati accattoni!\".\nIl sacerdote viene accusato di aver usato \"toni salviniani\" e additato come intollerante e razzista.\nNon so voi, ma a me\u2026 Altro sembra soltanto BUONSENSO.\nUno Stato serio, prima pensa agli Italiani in difficolt\u00e0 poi, se c'\u00e8 spazio, a chi arriva dal resto del mondo. #andiamoagovernare", "shared_text": "", "time": "2017-12-09 19:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155362902753155&id=252306033154", "link": null} +{"post_id": "10155364418908155", "text": "In Sardegna lo Stato manda Polizia e Carabinieri a circondare i paesi non per catturare i delinquenti, ma per abbattere i maiali...!!!\nRoba da matti. Io sto con i pastori e con gli agricoltori.", "post_text": "In Sardegna lo Stato manda Polizia e Carabinieri a circondare i paesi non per catturare i delinquenti, ma per abbattere i maiali...!!!\nRoba da matti. Io sto con i pastori e con gli agricoltori.", "shared_text": "", "time": "2017-12-09 18:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155364418908155&id=252306033154", "link": null} +{"post_id": "10155362358003155", "text": "Sandra, pestata a suon di CALCI e PUGNI a Ferrara da gang di \"risorse\". PAZZESCO!\nQuesto \u00e8 il risultato di anni di governi buonisti a guida PD.\nSogno un Paese che accoglie, ma nel limite del possibile.\nPer i\u2026 Altro DELINQUENTI come questi non c\u2019\u00e8 posto.\nChi non ha diritto all'asilo, DEVE ESSERE ESPULSO! Punto.\nSe mi date una mano, LO FAREMO!\n#andiamoagovernare", "post_text": "Sandra, pestata a suon di CALCI e PUGNI a Ferrara da gang di \"risorse\". PAZZESCO!\nQuesto \u00e8 il risultato di anni di governi buonisti a guida PD.\nSogno un Paese che accoglie, ma nel limite del possibile.\nPer i\u2026 Altro DELINQUENTI come questi non c\u2019\u00e8 posto.\nChi non ha diritto all'asilo, DEVE ESSERE ESPULSO! Punto.\nSe mi date una mano, LO FAREMO!\n#andiamoagovernare", "shared_text": "", "time": "2017-12-09 14:55:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155362358003155&id=252306033154", "link": null} +{"post_id": "10155326755478155", "text": "Cane e bimbo, teneri amici!", "post_text": "Cane e bimbo, teneri amici!", "shared_text": "", "time": "2017-12-08 22:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155326755478155&id=252306033154", "link": null} +{"post_id": "10155361630013155", "text": "", "post_text": "", "shared_text": "", "time": "2017-12-08 13:28:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155361630013155&id=252306033154", "link": null} +{"post_id": "10155356759143155", "text": "Soffre di miopia congenita, e per la prima volta questi occhiali gli regalano una nuova vista!\nChe dolcezza!\nVedere la felicit\u00e0 negli occhi dei bimbi non ha prezzo.", "post_text": "Soffre di miopia congenita, e per la prima volta questi occhiali gli regalano una nuova vista!\nChe dolcezza!\nVedere la felicit\u00e0 negli occhi dei bimbi non ha prezzo.", "shared_text": "", "time": "2017-12-07 22:03:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155356759143155&id=252306033154", "link": null} +{"post_id": "10155359091538155", "text": "INCREDIBILE!\n\"Sono immigrato, dunque NON PAGO il biglietto\".\nGrazie al Pd pensano che in Italia si possa fare quello che si vuole.\nMa CAMBIER\u00c0 la musica, ve lo garantisco.\nRiporteremo in questo Paese ORDINE, REGOLE e RISPETTO.", "post_text": "INCREDIBILE!\n\"Sono immigrato, dunque NON PAGO il biglietto\".\nGrazie al Pd pensano che in Italia si possa fare quello che si vuole.\nMa CAMBIER\u00c0 la musica, ve lo garantisco.\nRiporteremo in questo Paese ORDINE, REGOLE e RISPETTO.", "shared_text": "", "time": "2017-12-07 12:31:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155359091538155&id=252306033154", "link": null} +{"post_id": "10155341001098155", "text": "++ \u201cI PROVVEDIMENTI PRESI DAL GOVERNO SONO UN INSULTO PER I RISPARMIATORI DERUBATI DALLE BANCHE\" ++\n\u201cNon solo il Governo ha stanziato solamente 50 milioni di euro (mentre ne serviva 1 miliardo) ma il processo\u2026 Altro per ottenere questi soldi pu\u00f2 durare anni e, dovendo pagare gli avvocati, rischia di essere pi\u00f9 un costo che un guadagno.\u201d\n(Paolo Arrigoni, Senatore della Lega)\n#facciamosquadra #andiamoagovernare", "post_text": "++ \u201cI PROVVEDIMENTI PRESI DAL GOVERNO SONO UN INSULTO PER I RISPARMIATORI DERUBATI DALLE BANCHE\" ++\n\u201cNon solo il Governo ha stanziato solamente 50 milioni di euro (mentre ne serviva 1 miliardo) ma il processo\u2026 Altro per ottenere questi soldi pu\u00f2 durare anni e, dovendo pagare gli avvocati, rischia di essere pi\u00f9 un costo che un guadagno.\u201d\n(Paolo Arrigoni, Senatore della Lega)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-12-06 16:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155341001098155&id=252306033154", "link": null} +{"post_id": "10155357064888155", "text": "Truffati dalle banche, massacrati da Renzi.\nE lo chiamano partito \u201cdemocratico\u201d...", "post_text": "Truffati dalle banche, massacrati da Renzi.\nE lo chiamano partito \u201cdemocratico\u201d...", "shared_text": "", "time": "2017-12-06 14:58:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155357064888155&id=252306033154", "link": null} +{"post_id": "10155354363033155", "text": "In 1 MINUTO: equit\u00e0 dei salari, difesa delle nostre tradizioni e controllo dell'immigrazione.\nSe mi date una mano, insieme cambieremo questo Paese, ve lo prometto.\n#andiamoagovernare", "post_text": "In 1 MINUTO: equit\u00e0 dei salari, difesa delle nostre tradizioni e controllo dell'immigrazione.\nSe mi date una mano, insieme cambieremo questo Paese, ve lo prometto.\n#andiamoagovernare", "shared_text": "", "time": "2017-12-06 13:08:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155354363033155&id=252306033154", "link": null} +{"post_id": "10155352550538155", "text": "\"HANNO SPARATO, CI VOLEVANO UCCIDERE!\"\nQuartiere San Basilio, periferia di Roma.\nPAZZESCO!\nAltra aggressione alla troupe di Vittorio Brumotti di \"Striscia\", che stava documentando lo spaccio incontrollato\u2026 Altro nella capitale, alla luce del giorno.\nSindaca Raggi, dove sei?\nIo non mi arrendo: se mi darete una mano, faremo un po' di PULIZIA!", "post_text": "\"HANNO SPARATO, CI VOLEVANO UCCIDERE!\"\nQuartiere San Basilio, periferia di Roma.\nPAZZESCO!\nAltra aggressione alla troupe di Vittorio Brumotti di \"Striscia\", che stava documentando lo spaccio incontrollato\u2026 Altro nella capitale, alla luce del giorno.\nSindaca Raggi, dove sei?\nIo non mi arrendo: se mi darete una mano, faremo un po' di PULIZIA!", "shared_text": "", "time": "2017-12-05 21:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155352550538155&id=252306033154", "link": null} +{"post_id": "10155354027108155", "text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34 Facciamo girare, VERGOGNA!!!\nStamattina al tribunale di Siena hanno mandato all'asta e PORTATO VIA LA CASA a Sandra, invalida al 100% e malata terminale.\nLei, disperata, al termine dell'udienza ha tentato\u2026 Altro di tagliarsi le vene e l'hanno ricoverata in ospedale.\nQuesta \u00e8 VIOLENZA VERA nei confronti degli italiani!\nLe tiv\u00f9 non ne parlano ma io l\u2019ho sentita al telefono poco fa, la Lega la aiuter\u00e0 in ogni maniera possibile, lei \u00e8 sconvolta ma non molla.\n#dallapartediSandra #primagliitaliani", "post_text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34 Facciamo girare, VERGOGNA!!!\nStamattina al tribunale di Siena hanno mandato all'asta e PORTATO VIA LA CASA a Sandra, invalida al 100% e malata terminale.\nLei, disperata, al termine dell'udienza ha tentato\u2026 Altro di tagliarsi le vene e l'hanno ricoverata in ospedale.\nQuesta \u00e8 VIOLENZA VERA nei confronti degli italiani!\nLe tiv\u00f9 non ne parlano ma io l\u2019ho sentita al telefono poco fa, la Lega la aiuter\u00e0 in ogni maniera possibile, lei \u00e8 sconvolta ma non molla.\n#dallapartediSandra #primagliitaliani", "shared_text": "", "time": "2017-12-05 14:42:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155354027108155&id=252306033154", "link": null} +{"post_id": "10155340933088155", "text": "Ovunque vada, Renzi viene FISCHIATO e CONTESTATO.\nGuardate che bella accoglienza gli hanno riservato gli ex operai della Lucchini, che hanno perso il lavoro per colpa del Jobs Act.\nDai che tra pochi mesi lo mandiamo a casa!\n#andiamoagovernare #bastapd", "post_text": "Ovunque vada, Renzi viene FISCHIATO e CONTESTATO.\nGuardate che bella accoglienza gli hanno riservato gli ex operai della Lucchini, che hanno perso il lavoro per colpa del Jobs Act.\nDai che tra pochi mesi lo mandiamo a casa!\n#andiamoagovernare #bastapd", "shared_text": "", "time": "2017-12-05 12:47:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155340933088155&id=252306033154", "link": null} +{"post_id": "10155353846528155", "text": "Vi ripropongo la mia intervista di domenica scorsa a Sky Tg24 con Maria Latella.\nPenso di essere stato chiaro, che dite?", "post_text": "Vi ripropongo la mia intervista di domenica scorsa a Sky Tg24 con Maria Latella.\nPenso di essere stato chiaro, che dite?", "shared_text": "", "time": "2017-12-05 11:17:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155353846528155&id=252306033154", "link": null} +{"post_id": "10155340827603155", "text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34 RIVOLUZIONE FISCALE!\n++ \u201cLA TASSA UNICA AL 15% AIUTER\u00c0 A FAR RIENTRARE LE AZIENDE CHE HANNO DELOCALIZZATO, RIPORTANDO IL LAVORO IN ITALIA\u201d ++\n\u201cCon un\u2019aliquota bassa gli italiani avranno pi\u00f9 soldi nelle loro\u2026 Altro tasche e potranno finalmente comprare pi\u00f9 beni e servizi, facendo ripartire la crescita.\nInoltre, con un sistema fiscale semplificato, l\u2019economia sommersa riemerger\u00e0, aiutano a risolvere il problema dell\u2019evasione fiscale e garantendo pi\u00f9 entrate nelle casse dello Stato.\u201d\n(Armando Siri)\n#facciamosquadra #andiamoagovernare\nApprofondimenti: www.tassaunica.it", "post_text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34 RIVOLUZIONE FISCALE!\n++ \u201cLA TASSA UNICA AL 15% AIUTER\u00c0 A FAR RIENTRARE LE AZIENDE CHE HANNO DELOCALIZZATO, RIPORTANDO IL LAVORO IN ITALIA\u201d ++\n\u201cCon un\u2019aliquota bassa gli italiani avranno pi\u00f9 soldi nelle loro\u2026 Altro tasche e potranno finalmente comprare pi\u00f9 beni e servizi, facendo ripartire la crescita.\nInoltre, con un sistema fiscale semplificato, l\u2019economia sommersa riemerger\u00e0, aiutano a risolvere il problema dell\u2019evasione fiscale e garantendo pi\u00f9 entrate nelle casse dello Stato.\u201d\n(Armando Siri)\n#facciamosquadra #andiamoagovernare\nApprofondimenti: www.tassaunica.it", "shared_text": "", "time": "2017-12-02 19:10:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155340827603155&id=252306033154", "link": "http://www.tassaunica.it/?fbclid=IwAR09kOLy8W_TJUV4zHPr5Xzn7Ae1qYbK9-G8lTCavjZsPE4m0K7NwUScDt8"} +{"post_id": "10155340842028155", "text": "++ \u201cLA TRAPPOLA DELLA MONETA UNICA: SE ALZIAMO I SALARI DIVENTIAMO MENO COMPETITIVI\u201d ++\n\u201cSiamo in un sistema in cui vince chi riesce a pagare di meno i propri impiegati.\nLa precarizzazione del lavoro con i\u2026 Altro part-time da 500 euro aiuta solamente a gonfiare le statistiche sull\u2019occupazione: il vero lavoro che una volta permetteva di mettere su famiglia sta sparendo.\u201d\n(Claudio Borghi)\n#facciamosquadra #andiamoagovernare", "post_text": "++ \u201cLA TRAPPOLA DELLA MONETA UNICA: SE ALZIAMO I SALARI DIVENTIAMO MENO COMPETITIVI\u201d ++\n\u201cSiamo in un sistema in cui vince chi riesce a pagare di meno i propri impiegati.\nLa precarizzazione del lavoro con i\u2026 Altro part-time da 500 euro aiuta solamente a gonfiare le statistiche sull\u2019occupazione: il vero lavoro che una volta permetteva di mettere su famiglia sta sparendo.\u201d\n(Claudio Borghi)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-12-01 09:16:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155340842028155&id=252306033154", "link": null} +{"post_id": "10155338895598155", "text": "L'Unione Europea ci impone di tagliare la spesa pubblica, ma se loro mandano 114 diplomatici tra Isole Mauritius, Caraibi e Isole Fiji va tutto bene.\nVi sembra normale e di buonsenso???", "post_text": "L'Unione Europea ci impone di tagliare la spesa pubblica, ma se loro mandano 114 diplomatici tra Isole Mauritius, Caraibi e Isole Fiji va tutto bene.\nVi sembra normale e di buonsenso???", "shared_text": "", "time": "2017-11-30 21:26:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155338895598155&id=252306033154", "link": null} +{"post_id": "10155338470703155", "text": "Il film \u201cL\u2019Esodo\u201d racconta la storia vera di Francesca, una delle 400mila vittime legge FORNERO.\nVite reali, lacrime vere.\nMentre queste persone lottano ogni giorno per sopravvivere, la signora continua a dire che dovremmo essere fieri di avere questa riforma\u2026\n#stopfornero #andiamoagovernare", "post_text": "Il film \u201cL\u2019Esodo\u201d racconta la storia vera di Francesca, una delle 400mila vittime legge FORNERO.\nVite reali, lacrime vere.\nMentre queste persone lottano ogni giorno per sopravvivere, la signora continua a dire che dovremmo essere fieri di avere questa riforma\u2026\n#stopfornero #andiamoagovernare", "shared_text": "", "time": "2017-11-30 18:01:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155338470703155&id=252306033154", "link": null} +{"post_id": "10155340928998155", "text": "Renzi si infila alla presentazione di un libro per fare un comizio sullo IUS SOLI. Contestato dal pubblico, lasciato dallo scrittore che si alza e se ne va...\nSalviamo Renzi, mandiamolo a casa!\n#NoIusSoli", "post_text": "Renzi si infila alla presentazione di un libro per fare un comizio sullo IUS SOLI. Contestato dal pubblico, lasciato dallo scrittore che si alza e se ne va...\nSalviamo Renzi, mandiamolo a casa!\n#NoIusSoli", "shared_text": "", "time": "2017-11-30 13:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155340928998155&id=252306033154", "link": null} +{"post_id": "10155338834763155", "text": "ABBASSARE LE TASSE, solo cos\u00ec facciamo ripartire l'Italia.\nNoi una soluzione giusta, equa ed in linea con la nostra Costituzione ce l'abbiamo: TASSA UNICA AL 15%.\nSu www.tassaunica.it trovate tutte le risposte alle vostre domande.", "post_text": "ABBASSARE LE TASSE, solo cos\u00ec facciamo ripartire l'Italia.\nNoi una soluzione giusta, equa ed in linea con la nostra Costituzione ce l'abbiamo: TASSA UNICA AL 15%.\nSu www.tassaunica.it trovate tutte le risposte alle vostre domande.", "shared_text": "", "time": "2017-11-30 12:02:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155338834763155&id=252306033154", "link": "http://www.tassaunica.it/?fbclid=IwAR01kdUyWiZ_DP84HE1iEvNUhogvN1fPnutX-12LL7Jk_yU-vDRM0ZiFMWo"} +{"post_id": "10155338502483155", "text": "30.000 posti di lavoro e 2.000 negozi a rischio per colpa di una NUOVA (folle) TASSA inventata dal governo: 5 EURO per ogni ricarica di sigarette elettroniche, per fare un favore alle solite multinazionali.\u2026 Altro\nQuesti sono matti, la Lega prover\u00e0 a fermarli!\nGrazie ai lavoratori per la STRAORDINARIA accoglienza, avrei voluto vedere Renzi...\nP.S. Ovviamente le tiv\u00f9 censurano tutto.", "post_text": "30.000 posti di lavoro e 2.000 negozi a rischio per colpa di una NUOVA (folle) TASSA inventata dal governo: 5 EURO per ogni ricarica di sigarette elettroniche, per fare un favore alle solite multinazionali.\u2026 Altro\nQuesti sono matti, la Lega prover\u00e0 a fermarli!\nGrazie ai lavoratori per la STRAORDINARIA accoglienza, avrei voluto vedere Renzi...\nP.S. Ovviamente le tiv\u00f9 censurano tutto.", "shared_text": "", "time": "2017-11-29 15:20:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155338502483155&id=252306033154", "link": null} +{"post_id": "10155335964298155", "text": "Per chi se lo fosse perso, vi ripropongo il confronto che ho avuto ieri sera a mezzanotte su Rai 3.", "post_text": "Per chi se lo fosse perso, vi ripropongo il confronto che ho avuto ieri sera a mezzanotte su Rai 3.", "shared_text": "", "time": "2017-11-28 15:35:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155335964298155&id=252306033154", "link": null} +{"post_id": "10155335550243155", "text": "Cancellare ogni sconto di pena per assassini e stupratori, finalmente arriva in Parlamento la proposta della Lega.\nAbbiamo dato voce a genitori cui sono stati uccisi i figli, a bambini cui \u00e8 stato ucciso il\u2026 Altro pap\u00e0, alle vittime dimenticate dallo Stato.\nIntanto Renzi parla di fake news e i telegiornali dicono che va tutto bene...\nFate girare, diamo voce a chi ha perso tutto!", "post_text": "Cancellare ogni sconto di pena per assassini e stupratori, finalmente arriva in Parlamento la proposta della Lega.\nAbbiamo dato voce a genitori cui sono stati uccisi i figli, a bambini cui \u00e8 stato ucciso il\u2026 Altro pap\u00e0, alle vittime dimenticate dallo Stato.\nIntanto Renzi parla di fake news e i telegiornali dicono che va tutto bene...\nFate girare, diamo voce a chi ha perso tutto!", "shared_text": "", "time": "2017-11-28 11:44:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155335550243155&id=252306033154", "link": null} +{"post_id": "10155333732628155", "text": "Nella vita privata ognuno \u00e8 libero di stare con chi vuole, ma i bambini vengono al mondo se c'\u00e8 una MAMMA e un PAP\u00c0. E questo vale anche per le adozioni.\nRenderle meno costose e pi\u00f9 veloci sar\u00e0 una nostra priorit\u00e0 quando saremo al Governo.", "post_text": "Nella vita privata ognuno \u00e8 libero di stare con chi vuole, ma i bambini vengono al mondo se c'\u00e8 una MAMMA e un PAP\u00c0. E questo vale anche per le adozioni.\nRenderle meno costose e pi\u00f9 veloci sar\u00e0 una nostra priorit\u00e0 quando saremo al Governo.", "shared_text": "", "time": "2017-11-27 17:23:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155333732628155&id=252306033154", "link": null} +{"post_id": "10155326145398155", "text": "Luned\u00ec 4 dicembre alle 18.30 torner\u00f2 a Bolzano. Chiss\u00e0 se le cose sono migliorate...", "post_text": "Luned\u00ec 4 dicembre alle 18.30 torner\u00f2 a Bolzano. Chiss\u00e0 se le cose sono migliorate...", "shared_text": "", "time": "2017-11-26 19:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155326145398155&id=252306033154", "link": null} +{"post_id": "10155326009153155", "text": "++ \u201cCON GLI INCENTIVI LE ASSUNZIONI CRESCONO, MA POI CROLLANO QUANDO GLI INCENTIVI FINISCONO: BISOGNA RIDURRE LA TASSAZIONE SUL LAVORO\u201d ++\n\u201cRiguardo alle banche, gli effetti del bail-in sono devastanti: i\u2026 Altro correntisti, presi dal panico da quanto \u00e8 accaduto, sono andati a ritirare i soldi.\n\u00c8 una vergogna assoluta che il PD dica che ha salvato i risparmiatori quando con la loro irresponsabilit\u00e0 hanno messo per strada tante persone!\u201d\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "post_text": "++ \u201cCON GLI INCENTIVI LE ASSUNZIONI CRESCONO, MA POI CROLLANO QUANDO GLI INCENTIVI FINISCONO: BISOGNA RIDURRE LA TASSAZIONE SUL LAVORO\u201d ++\n\u201cRiguardo alle banche, gli effetti del bail-in sono devastanti: i\u2026 Altro correntisti, presi dal panico da quanto \u00e8 accaduto, sono andati a ritirare i soldi.\n\u00c8 una vergogna assoluta che il PD dica che ha salvato i risparmiatori quando con la loro irresponsabilit\u00e0 hanno messo per strada tante persone!\u201d\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-11-26 14:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155326009153155&id=252306033154", "link": null} +{"post_id": "10155328828143155", "text": "Se vi dessero 60 secondi per spiegare come risolvere il problema dell'immigrazione clandestina voi che cosa direste? Io ho risposto cos\u00ec!", "post_text": "Se vi dessero 60 secondi per spiegare come risolvere il problema dell'immigrazione clandestina voi che cosa direste? Io ho risposto cos\u00ec!", "shared_text": "", "time": "2017-11-26 13:35:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155328828143155&id=252306033154", "link": null} +{"post_id": "10155325906018155", "text": "STATO ITALIANO, ORA BASTA: PAGA TUTTI I TUOI DEBITI!\nCon un debito di oltre 4 MILIONI di euro, lo Stato ha costretto Sergio al FALLIMENTO e all\u2019UMILIAZIONE.\nCome lui, migliaia di altri imprenditori sono stati\u2026 Altro rovinati dalla Pubblica Amministrazione.\nCon la Lega al Governo, PAGAMENTO IMMEDIATO di TUTTI I DEBITI e CREDITI D\u2019IMPOSTA della PUBBLICA AMMINISTRAZIONE!\n\u00c8 semplice BUONSENSO.", "post_text": "STATO ITALIANO, ORA BASTA: PAGA TUTTI I TUOI DEBITI!\nCon un debito di oltre 4 MILIONI di euro, lo Stato ha costretto Sergio al FALLIMENTO e all\u2019UMILIAZIONE.\nCome lui, migliaia di altri imprenditori sono stati\u2026 Altro rovinati dalla Pubblica Amministrazione.\nCon la Lega al Governo, PAGAMENTO IMMEDIATO di TUTTI I DEBITI e CREDITI D\u2019IMPOSTA della PUBBLICA AMMINISTRAZIONE!\n\u00c8 semplice BUONSENSO.", "shared_text": "", "time": "2017-11-26 09:33:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155325906018155&id=252306033154", "link": null} +{"post_id": "10155328797303155", "text": "Ricordate gli immigrati \"in marcia\" in Veneto? La ex base militare di Cona non gli piace, vogliono \"migliori condizioni\". Dopo la rottura della \"trattativa\" con il prefetto, \u00e8 scoppiata pure una RISSA...\nMa \u00e8\u2026 Altro possibile che con tutti i problemi che hanno gli italiani, le nostre istituzioni debbano occuparsi del \"benessere abitativo\" di questi PRESUNTI profughi???", "post_text": "Ricordate gli immigrati \"in marcia\" in Veneto? La ex base militare di Cona non gli piace, vogliono \"migliori condizioni\". Dopo la rottura della \"trattativa\" con il prefetto, \u00e8 scoppiata pure una RISSA...\nMa \u00e8\u2026 Altro possibile che con tutti i problemi che hanno gli italiani, le nostre istituzioni debbano occuparsi del \"benessere abitativo\" di questi PRESUNTI profughi???", "shared_text": "", "time": "2017-11-25 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155328797303155&id=252306033154", "link": null} +{"post_id": "10155329211903155", "text": "Spettacolo a CAGLIARI! Grazieeee! #andiamoagovernare", "post_text": "Spettacolo a CAGLIARI! Grazieeee! #andiamoagovernare", "shared_text": "", "time": "2017-11-25 18:45:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155329211903155&id=252306033154", "link": null} +{"post_id": "10155328991323155", "text": "Buon pomeriggio da CAGLIARI, spettacolo! State qui con noi in diretta! #andiamoagovernare", "post_text": "Buon pomeriggio da CAGLIARI, spettacolo! State qui con noi in diretta! #andiamoagovernare", "shared_text": "", "time": "2017-11-25 17:00:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155328991323155&id=252306033154", "link": null} +{"post_id": "10155326161183155", "text": "Questo \u00e8 il risultato della gestione Pd: \"Porte aperte, venite!\".\nRisultato? Italia INVASA da individui che non fuggono da guerre, cercano migliori condizioni di vita.\nUmanamente comprensibile, ma un buon padre\u2026 Altro di famiglia d\u00e0 prima i SUOI figli.\nChi non ha diritto all'asilo, DEVE ESSERE ESPULSO. Punto!\nUn Governo che avesse a cuore gli interessi degli ITALIANI lo farebbe.\nNoi LO FAREMO. #andiamoagovernare", "post_text": "Questo \u00e8 il risultato della gestione Pd: \"Porte aperte, venite!\".\nRisultato? Italia INVASA da individui che non fuggono da guerre, cercano migliori condizioni di vita.\nUmanamente comprensibile, ma un buon padre\u2026 Altro di famiglia d\u00e0 prima i SUOI figli.\nChi non ha diritto all'asilo, DEVE ESSERE ESPULSO. Punto!\nUn Governo che avesse a cuore gli interessi degli ITALIANI lo farebbe.\nNoi LO FAREMO. #andiamoagovernare", "shared_text": "", "time": "2017-11-25 11:17:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155326161183155&id=252306033154", "link": null} +{"post_id": "10155326398873155", "text": "\"Ho chiesto donne e bambini rifugiati da accogliere nel mio comune, mi dicono che non ce ne sono. E s\u00ec, sono orgogliosa di dare le case popolari agli ITALIANI\".\nSMONTATE in diretta tiv\u00f9 le PALLE del PD, questi sono i sindaci della Lega!", "post_text": "\"Ho chiesto donne e bambini rifugiati da accogliere nel mio comune, mi dicono che non ce ne sono. E s\u00ec, sono orgogliosa di dare le case popolari agli ITALIANI\".\nSMONTATE in diretta tiv\u00f9 le PALLE del PD, questi sono i sindaci della Lega!", "shared_text": "", "time": "2017-11-24 21:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155326398873155&id=252306033154", "link": null} +{"post_id": "10155326380023155", "text": "Mi domando dov'erano certi sindacati quando veniva approvata la legge Fornero...", "post_text": "Mi domando dov'erano certi sindacati quando veniva approvata la legge Fornero...", "shared_text": "", "time": "2017-11-24 18:36:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155326380023155&id=252306033154", "link": null} +{"post_id": "10155323590863155", "text": "Stanco di un governo che ODIA gli italiani e COCCOLA i clandestini!", "post_text": "Stanco di un governo che ODIA gli italiani e COCCOLA i clandestini!", "shared_text": "", "time": "2017-11-24 11:25:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155323590863155&id=252306033154", "link": null} +{"post_id": "10155317334493155", "text": "Che bella questa Italia \"accogliente\" dove le \"risorse\" clandestine si accoltellano per strada... Questa \u00e8 proprio la zona di Padova dove sono stati aggrediti gli inviati di \"Striscia\".\nPossiamo dire che quasi\u2026 Altro 5 anni di governi a guida Pd (Letta, Renzi, Gentiloni) hanno rovinato l'Italia???\nIo non mi arrendo: se mi darete una mano, ho voglia di FARE PULIZIA!", "post_text": "Che bella questa Italia \"accogliente\" dove le \"risorse\" clandestine si accoltellano per strada... Questa \u00e8 proprio la zona di Padova dove sono stati aggrediti gli inviati di \"Striscia\".\nPossiamo dire che quasi\u2026 Altro 5 anni di governi a guida Pd (Letta, Renzi, Gentiloni) hanno rovinato l'Italia???\nIo non mi arrendo: se mi darete una mano, ho voglia di FARE PULIZIA!", "shared_text": "", "time": "2017-11-24 08:50:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155317334493155&id=252306033154", "link": null} +{"post_id": "10155324673568155", "text": "\u26ab\ufe0f\u26ab\ufe0f\u26ab\ufe0f Padova in mano a spacciatori africani, altra AGGRESSIONE a \u201cBrumo\u201d che con merito cerca di documentare e denunciare questo schifo.\nSoluzione? Pi\u00f9 controlli, pi\u00f9 risorse alle Forze dell\u2019ordine, certezza della pena ed ESPULSIONE dei delinquenti stranieri.\nVolere \u00e8 potere!", "post_text": "\u26ab\ufe0f\u26ab\ufe0f\u26ab\ufe0f Padova in mano a spacciatori africani, altra AGGRESSIONE a \u201cBrumo\u201d che con merito cerca di documentare e denunciare questo schifo.\nSoluzione? Pi\u00f9 controlli, pi\u00f9 risorse alle Forze dell\u2019ordine, certezza della pena ed ESPULSIONE dei delinquenti stranieri.\nVolere \u00e8 potere!", "shared_text": "", "time": "2017-11-23 23:12:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155324673568155&id=252306033154", "link": null} +{"post_id": "10155323905788155", "text": "Il \"professorone\" Monti (ma ancora ha il coraggio di parlare???) ridicolizza la proposta della Lega di TASSA UNICA al 15%.\nEcco come Armando Siri lo... SMONTA.\nDA VEDERE.", "post_text": "Il \"professorone\" Monti (ma ancora ha il coraggio di parlare???) ridicolizza la proposta della Lega di TASSA UNICA al 15%.\nEcco come Armando Siri lo... SMONTA.\nDA VEDERE.", "shared_text": "", "time": "2017-11-23 20:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155323905788155&id=252306033154", "link": null} +{"post_id": "10155321189438155", "text": "\ud83d\udd34 \"Siamo A CASA NOSTRA, branco di figli di puttana\"\nA Mantes-la-Jolie, vicino Parigi, nel quartiere in mano ad immigrati ed islamici, GUERRIGLIA URBANA contro la Polizia: molotov, spari di mortaio e auto\u2026 Altro incendiate. Il movente? Aver arrestato uno di loro durante un controllo, trovato in possesso di droga aveva anche avuto il coraggio di resistere agli agenti, a morsi.\nEcco a chi stiamo regalando le nostre citt\u00e0.\nBello il multiculturalismo francese... #STOPINVASIONE prima che sia tardi!", "post_text": "\ud83d\udd34 \"Siamo A CASA NOSTRA, branco di figli di puttana\"\nA Mantes-la-Jolie, vicino Parigi, nel quartiere in mano ad immigrati ed islamici, GUERRIGLIA URBANA contro la Polizia: molotov, spari di mortaio e auto\u2026 Altro incendiate. Il movente? Aver arrestato uno di loro durante un controllo, trovato in possesso di droga aveva anche avuto il coraggio di resistere agli agenti, a morsi.\nEcco a chi stiamo regalando le nostre citt\u00e0.\nBello il multiculturalismo francese... #STOPINVASIONE prima che sia tardi!", "shared_text": "", "time": "2017-11-23 18:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155321189438155&id=252306033154", "link": null} +{"post_id": "10155323658588155", "text": "\u26a0 SCONVOLGENTE, QUESTE \u201cMAESTRE\u201d MERITANO LA GALERA!\nTelecamere in TUTTI gli asili e in TUTTE le case di riposo!\nGi\u00f9 le mani da chi non si pu\u00f2 difendere.", "post_text": "\u26a0 SCONVOLGENTE, QUESTE \u201cMAESTRE\u201d MERITANO LA GALERA!\nTelecamere in TUTTI gli asili e in TUTTE le case di riposo!\nGi\u00f9 le mani da chi non si pu\u00f2 difendere.", "shared_text": "", "time": "2017-11-23 15:45:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155323658588155&id=252306033154", "link": null} +{"post_id": "10155323350518155", "text": "Vi ripropongo il mio intervento di ieri sera a Matrix su Canale 5.\nIo mi sono divertito e credo di essere stato chiaro, su Europa, tasse, lavoro, pensioni e immigrazione.\nAiutatemi a condividere!", "post_text": "Vi ripropongo il mio intervento di ieri sera a Matrix su Canale 5.\nIo mi sono divertito e credo di essere stato chiaro, su Europa, tasse, lavoro, pensioni e immigrazione.\nAiutatemi a condividere!", "shared_text": "", "time": "2017-11-23 12:10:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155323350518155&id=252306033154", "link": null} +{"post_id": "10155320993173155", "text": "\u201cIl lavoro \u00e8 bello quando si fa un lavoro che piace, per\u00f2 non si riesce a sopravvivere con una pensione da 700 euro al mese\u201d.\nParole di Bernardino che, a 93 ANNI, si sveglia ancora oggi alle 3.30 per andare a\u2026 Altro consegnare uova, deve mantenere sua figlia e sua nipote.\nDa sempre ammiro chi lavora instancabilmente per passione, ma dopo anni di lavoro e sacrifici una PENSIONE GIUSTA \u00e8 un DIRITTO non negoziabile.\n\u00c8 semplice BUONSENSO!", "post_text": "\u201cIl lavoro \u00e8 bello quando si fa un lavoro che piace, per\u00f2 non si riesce a sopravvivere con una pensione da 700 euro al mese\u201d.\nParole di Bernardino che, a 93 ANNI, si sveglia ancora oggi alle 3.30 per andare a\u2026 Altro consegnare uova, deve mantenere sua figlia e sua nipote.\nDa sempre ammiro chi lavora instancabilmente per passione, ma dopo anni di lavoro e sacrifici una PENSIONE GIUSTA \u00e8 un DIRITTO non negoziabile.\n\u00c8 semplice BUONSENSO!", "shared_text": "", "time": "2017-11-23 11:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155320993173155&id=252306033154", "link": null} +{"post_id": "10155321707948155", "text": "Se riuscite a stare svegli, questa sera alle 23.40 circa vi saluto da Matrix su Canale 5.\nP.s. Spettacolare l'accoglienza del pubblico! Questi sono i sondaggi che mi piacciono di pi\u00f9!", "post_text": "Se riuscite a stare svegli, questa sera alle 23.40 circa vi saluto da Matrix su Canale 5.\nP.s. Spettacolare l'accoglienza del pubblico! Questi sono i sondaggi che mi piacciono di pi\u00f9!", "shared_text": "", "time": "2017-11-22 21:32:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155321707948155&id=252306033154", "link": null} +{"post_id": "10155321655083155", "text": "Vi porto nel minuscolo container, senza bagno, dove \u00e8 ancora costretta a vivere nonna Peppina.\nChe non ha per\u00f2 perso il sorriso.\nLa proposta della Lega \u00e8 stata accolta in commissione la settimana scorsa. Una\u2026 Altro prima vittoria, ma ora dovr\u00e0 dare il suo voto definitivo il Parlamento.\nSBRIGATEVI, perch\u00e9 la nonna merita di passare il Natale nella sua casetta!\n#forzaNonnaPeppina", "post_text": "Vi porto nel minuscolo container, senza bagno, dove \u00e8 ancora costretta a vivere nonna Peppina.\nChe non ha per\u00f2 perso il sorriso.\nLa proposta della Lega \u00e8 stata accolta in commissione la settimana scorsa. Una\u2026 Altro prima vittoria, ma ora dovr\u00e0 dare il suo voto definitivo il Parlamento.\nSBRIGATEVI, perch\u00e9 la nonna merita di passare il Natale nella sua casetta!\n#forzaNonnaPeppina", "shared_text": "", "time": "2017-11-22 19:30:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155321655083155&id=252306033154", "link": null} +{"post_id": "10155321664398155", "text": "\ud83d\udd34 ECCO LE PROVE!\n\"Quando facciamo un'operazione di soccorso portiamo sempre i migranti in Italia, anche se li recuperiamo in acque maltesi. Fa parte dell'accordo\".\nLo dice la coordinatrice di Triton,\u2026 Altro l\u2019operazione europea di controllo delle frontiere nel Mediterraneo.\nQuindi \u00e8 questa la \u201csolidariet\u00e0 europea\"???\nTra qualche mese la musica cambia e si torner\u00e0 a DIFENDERE I CONFINI!", "post_text": "\ud83d\udd34 ECCO LE PROVE!\n\"Quando facciamo un'operazione di soccorso portiamo sempre i migranti in Italia, anche se li recuperiamo in acque maltesi. Fa parte dell'accordo\".\nLo dice la coordinatrice di Triton,\u2026 Altro l\u2019operazione europea di controllo delle frontiere nel Mediterraneo.\nQuindi \u00e8 questa la \u201csolidariet\u00e0 europea\"???\nTra qualche mese la musica cambia e si torner\u00e0 a DIFENDERE I CONFINI!", "shared_text": "", "time": "2017-11-22 18:16:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155321664398155&id=252306033154", "link": null} +{"post_id": "10155321059238155", "text": "Guardate questo \u201cprofugo di guerra\u201d, impegnato in un blocco stradale a Caserta: forma invidiabile, giacca in pelle, occhiali da sole e taglio di capelli ricercato.\nPer\u00f2 per lui \u201ctroppo \u00e8 troppo: il cibo non \u00e8\u2026 Altro buono, l\u2019alloggio non va bene\u201d.\nAnche per gli 8 milioni di persone in Italia sotto la soglia di povert\u00e0 \u201ctroppo \u00e8 troppo\u201d! #primagliitaliani", "post_text": "Guardate questo \u201cprofugo di guerra\u201d, impegnato in un blocco stradale a Caserta: forma invidiabile, giacca in pelle, occhiali da sole e taglio di capelli ricercato.\nPer\u00f2 per lui \u201ctroppo \u00e8 troppo: il cibo non \u00e8\u2026 Altro buono, l\u2019alloggio non va bene\u201d.\nAnche per gli 8 milioni di persone in Italia sotto la soglia di povert\u00e0 \u201ctroppo \u00e8 troppo\u201d! #primagliitaliani", "shared_text": "", "time": "2017-11-22 15:54:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155321059238155&id=252306033154", "link": null} +{"post_id": "10155318350248155", "text": "\"Lo Stato italiano non fa nulla per noi 'RIFUGIATI POLITICI'\".\nCon 8 milioni di poveri, io vorrei invece che lo Stato facesse di pi\u00f9 per gli ITALIANI!\nE sar\u00e0 cos\u00ed quando saremo al governo del Paese. #primagliitaliani", "post_text": "\"Lo Stato italiano non fa nulla per noi 'RIFUGIATI POLITICI'\".\nCon 8 milioni di poveri, io vorrei invece che lo Stato facesse di pi\u00f9 per gli ITALIANI!\nE sar\u00e0 cos\u00ed quando saremo al governo del Paese. #primagliitaliani", "shared_text": "", "time": "2017-11-21 20:41:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155318350248155&id=252306033154", "link": null} +{"post_id": "10155318498663155", "text": "\ud83d\udea9Lo dice anche il presidente di Coldiretti: \"L'Europa \u00e8 SCHIZOFRENICA. Da un lato apre agli insetti, dall'altro consente di produrre VINO con lo zucchero e FORMAGGI con la polvere di latte!\".\nMentre il Pd ha\u2026 Altro votato per portarci in tavola cavallette, tarantole, cimici giganti e altre SCHIFEZZE, la Lega DIFENDE da sempre il Made in Italy, con coerenza, contro le FOLLIE di un\u2019Europa che massacra le nostre produzioni.\nP.s. Il ministro dell\u2019Agricoltura Martina, invece, \u00e8 troppo impegnato a \u201cgiocare tutto se stesso\u201d per far approvare lo IUS SOLI.....", "post_text": "\ud83d\udea9Lo dice anche il presidente di Coldiretti: \"L'Europa \u00e8 SCHIZOFRENICA. Da un lato apre agli insetti, dall'altro consente di produrre VINO con lo zucchero e FORMAGGI con la polvere di latte!\".\nMentre il Pd ha\u2026 Altro votato per portarci in tavola cavallette, tarantole, cimici giganti e altre SCHIFEZZE, la Lega DIFENDE da sempre il Made in Italy, con coerenza, contro le FOLLIE di un\u2019Europa che massacra le nostre produzioni.\nP.s. Il ministro dell\u2019Agricoltura Martina, invece, \u00e8 troppo impegnato a \u201cgiocare tutto se stesso\u201d per far approvare lo IUS SOLI.....", "shared_text": "", "time": "2017-11-21 17:04:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155318498663155&id=252306033154", "link": null} +{"post_id": "10155318231658155", "text": "\"Pensi di spaventarmi con due parolacce?\".\nApplausi a questo autista, alla sua calma e alla sua intelligenza.\nIntrodurre in tutte le scuole qualche ora di educazione civica e ambientale farebbe bene ai nostri ragazzi, siete d'accordo?", "post_text": "\"Pensi di spaventarmi con due parolacce?\".\nApplausi a questo autista, alla sua calma e alla sua intelligenza.\nIntrodurre in tutte le scuole qualche ora di educazione civica e ambientale farebbe bene ai nostri ragazzi, siete d'accordo?", "shared_text": "", "time": "2017-11-21 10:39:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155318231658155&id=252306033154", "link": null} +{"post_id": "10155316503163155", "text": "Ong e scafisti, ecco le prove della complicit\u00e0, sotto gli occhi dell\u2019elicottero dell\u2019Unione Europea...\nMa quando lo diceva la Lega eravamo matti...\n#STOPINVASIONE", "post_text": "Ong e scafisti, ecco le prove della complicit\u00e0, sotto gli occhi dell\u2019elicottero dell\u2019Unione Europea...\nMa quando lo diceva la Lega eravamo matti...\n#STOPINVASIONE", "shared_text": "", "time": "2017-11-20 20:53:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155316503163155&id=252306033154", "link": null} +{"post_id": "10155316612043155", "text": "Altra FOLLIA dell\u2019Europa! Roba da matti...", "post_text": "Altra FOLLIA dell\u2019Europa! Roba da matti...", "shared_text": "", "time": "2017-11-20 18:21:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155316612043155&id=252306033154", "link": null} +{"post_id": "10155316316148155", "text": "\u201cGli italiani sono MERDE\u201d dice la \u201dsignora\u201d ROM...", "post_text": "\u201cGli italiani sono MERDE\u201d dice la \u201dsignora\u201d ROM...", "shared_text": "", "time": "2017-11-20 18:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155316316148155&id=252306033154", "link": null} +{"post_id": "10155315956283155", "text": "Se questo \u00e8 un prete...", "post_text": "Se questo \u00e8 un prete...", "shared_text": "", "time": "2017-11-20 12:34:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155315956283155&id=252306033154", "link": null} +{"post_id": "10155310617263155", "text": "Beh, voleva un passaggio... tutto a posto!", "post_text": "Beh, voleva un passaggio... tutto a posto!", "shared_text": "", "time": "2017-11-19 21:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155310617263155&id=252306033154", "link": null} +{"post_id": "10155311087148155", "text": "Anzich\u00e9 sparare bufale sulla Lega (alle quali non crede nessuno), i 5 Stelle si preoccupino di amministrare Roma. Guardate questo SCHIFO...", "post_text": "Anzich\u00e9 sparare bufale sulla Lega (alle quali non crede nessuno), i 5 Stelle si preoccupino di amministrare Roma. Guardate questo SCHIFO...", "shared_text": "", "time": "2017-11-19 19:17:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155311087148155&id=252306033154", "link": null} +{"post_id": "10155308679373155", "text": "Il modello della Lega nei comuni e nei territori, da Nord a Sud, \u00e8 uno solo: #primaglitaliani!", "post_text": "Il modello della Lega nei comuni e nei territori, da Nord a Sud, \u00e8 uno solo: #primaglitaliani!", "shared_text": "", "time": "2017-11-19 15:58:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155308679373155&id=252306033154", "link": null} +{"post_id": "10155313358323155", "text": "Ora in diretta da Milano dalla Scuola di formazione politica della Lega.\nUn\u2019altra giornata di studio, approfondimento e confronto per centinaia di ragazzi arrivati da tutta Italia.\n#andiamoagovernare", "post_text": "Ora in diretta da Milano dalla Scuola di formazione politica della Lega.\nUn\u2019altra giornata di studio, approfondimento e confronto per centinaia di ragazzi arrivati da tutta Italia.\n#andiamoagovernare", "shared_text": "", "time": "2017-11-19 12:01:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155313358323155&id=252306033154", "link": null} +{"post_id": "10155313210363155", "text": "Auto di lusso, soldi, gioielli e banconote false, pronte per le truffe, nel campo ROM.\nStrano, chi l\u2019avrebbe mai detto.\nRUSPA.", "post_text": "Auto di lusso, soldi, gioielli e banconote false, pronte per le truffe, nel campo ROM.\nStrano, chi l\u2019avrebbe mai detto.\nRUSPA.", "shared_text": "", "time": "2017-11-19 11:06:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155313210363155&id=252306033154", "link": null} +{"post_id": "10155306176933155", "text": "\"Noi VOGLIAMO documenti, noi VOGLIAMO documenti\".\nLa marcia dei \"profughi\" scontenti delle condizioni di vita nella ex base militare di Conetta.\nArrivati a Venezia, sono stati accontentati e ricollocati, in\u2026 Altro 220, in altre strutture del Veneto, ma alcuni pare non gradiscano l'alloggio e chiedono di tornare alla ex base...\nEh, queste sono le priorit\u00e0 dell'Italia.", "post_text": "\"Noi VOGLIAMO documenti, noi VOGLIAMO documenti\".\nLa marcia dei \"profughi\" scontenti delle condizioni di vita nella ex base militare di Conetta.\nArrivati a Venezia, sono stati accontentati e ricollocati, in\u2026 Altro 220, in altre strutture del Veneto, ma alcuni pare non gradiscano l'alloggio e chiedono di tornare alla ex base...\nEh, queste sono le priorit\u00e0 dell'Italia.", "shared_text": "", "time": "2017-11-19 09:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155306176933155&id=252306033154", "link": null} +{"post_id": "10155308811333155", "text": "Con tutto il rispetto per gli allevatori di insetti, e per il PD che in Europa ha votato a favore del loro utilizzo in tavola, io la carbonara la preferisco classica!\nBuona domenica Amici.", "post_text": "Con tutto il rispetto per gli allevatori di insetti, e per il PD che in Europa ha votato a favore del loro utilizzo in tavola, io la carbonara la preferisco classica!\nBuona domenica Amici.", "shared_text": "", "time": "2017-11-18 20:19:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155308811333155&id=252306033154", "link": null} +{"post_id": "10155286723558155", "text": "\"Tutti ubriachi storti che litigano per i fatti loro\".\nMentre a sinistra litigano su Prodi e D'Alema, su giochini di palazzo e su poltrone, io voglio occuparmi delle periferie delle nostre citt\u00e0, a cui nessuno\u2026 Altro pensa.\nSogno un'Italia dove prendendo un autobus alla sera a Milano, a Roma, a Torino, non si rischi la propria incolumit\u00e0 fisica.\n\u00c8 chiedere troppo?", "post_text": "\"Tutti ubriachi storti che litigano per i fatti loro\".\nMentre a sinistra litigano su Prodi e D'Alema, su giochini di palazzo e su poltrone, io voglio occuparmi delle periferie delle nostre citt\u00e0, a cui nessuno\u2026 Altro pensa.\nSogno un'Italia dove prendendo un autobus alla sera a Milano, a Roma, a Torino, non si rischi la propria incolumit\u00e0 fisica.\n\u00c8 chiedere troppo?", "shared_text": "", "time": "2017-11-18 17:10:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155286723558155&id=252306033154", "link": null} +{"post_id": "10155310668363155", "text": "\"Lega merda vaffanculo, Salvini \u00e8 una merda\".\nE poi sassaiole, fumogeni e scontri con la Polizia.\nI \"bravi ragazzi\" rappresentanti degli \"studenti meticci\" (autodefinitisi tali) ieri davanti alla sede della Regione Lombardia.\nChe democratici!\nUn po' di educazione civica a scuola non gli farebbe male, voi che dite?", "post_text": "\"Lega merda vaffanculo, Salvini \u00e8 una merda\".\nE poi sassaiole, fumogeni e scontri con la Polizia.\nI \"bravi ragazzi\" rappresentanti degli \"studenti meticci\" (autodefinitisi tali) ieri davanti alla sede della Regione Lombardia.\nChe democratici!\nUn po' di educazione civica a scuola non gli farebbe male, voi che dite?", "shared_text": "", "time": "2017-11-18 14:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155310668363155&id=252306033154", "link": null} +{"post_id": "10155308423958155", "text": "\"Che cosa c'entra il Pd con MPS?\". Questi pensano che gli italiani siano scemi!!! Ascoltate la risposta di Claudio Borghi.\n#facciamosquadra #andiamoagovernare", "post_text": "\"Che cosa c'entra il Pd con MPS?\". Questi pensano che gli italiani siano scemi!!! Ascoltate la risposta di Claudio Borghi.\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-11-18 11:58:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155308423958155&id=252306033154", "link": null} +{"post_id": "10155306326518155", "text": "Povero Renzino. Destinazione... FALLIMENTO!\n#bastaPD #andiamoagovernare", "post_text": "Povero Renzino. Destinazione... FALLIMENTO!\n#bastaPD #andiamoagovernare", "shared_text": "", "time": "2017-11-18 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155306326518155&id=252306033154", "link": null} +{"post_id": "10155309016578155", "text": "\ud83d\udd35 Ieri sera da Paolo Del Debbio ho spiegato che cosa farei da primo ministro al posto del Pd.\nGuardate (o riguardate, se vi va), credo di essere stato abbastanza efficace, ma legger\u00f2 come sempre i vostri commenti.\n#andiamoagovernare", "post_text": "\ud83d\udd35 Ieri sera da Paolo Del Debbio ho spiegato che cosa farei da primo ministro al posto del Pd.\nGuardate (o riguardate, se vi va), credo di essere stato abbastanza efficace, ma legger\u00f2 come sempre i vostri commenti.\n#andiamoagovernare", "shared_text": "", "time": "2017-11-17 19:47:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155309016578155&id=252306033154", "link": null} +{"post_id": "10155308586918155", "text": "Due sorelle di 84 e 63 anni massacrate brutalmente a Busto Arsizio (Varese), in centro, in pieno giorno, da un 29enne rumeno e ubriaco, SENZA MOTIVO.\nINFAME, VERME!\nUna delle due signore, Argia, \u00e8 in fin di\u2026 Altro vita. Una preghiera perch\u00e9 possa salvarsi.\nUn abbraccio alla signora Wilma, che in questo video racconta la tragedia vissuta.\nDopo anni di buonismo, quando saremo al governo ogni giorno il mio impegno sar\u00e0 quello di far tornare in Italia REGOLE, RISPETTO, SICUREZZA!", "post_text": "Due sorelle di 84 e 63 anni massacrate brutalmente a Busto Arsizio (Varese), in centro, in pieno giorno, da un 29enne rumeno e ubriaco, SENZA MOTIVO.\nINFAME, VERME!\nUna delle due signore, Argia, \u00e8 in fin di\u2026 Altro vita. Una preghiera perch\u00e9 possa salvarsi.\nUn abbraccio alla signora Wilma, che in questo video racconta la tragedia vissuta.\nDopo anni di buonismo, quando saremo al governo ogni giorno il mio impegno sar\u00e0 quello di far tornare in Italia REGOLE, RISPETTO, SICUREZZA!", "shared_text": "", "time": "2017-11-17 18:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155308586918155&id=252306033154", "link": null} +{"post_id": "10155308496798155", "text": "++ \"\u00c8 UNA TRUFFA RICEVERE GLI 80 EURO E POI AVERE LO STIPENDIO DIMEZZATO PERCH\u00c9 NON ERANO DOVUTI!!!\" ++\n\u201cCon i vari bonus stiamo prendendo in giro gli italiani perch\u00e9 non sono soluzioni credibili.\nRidurre le\u2026 Altro aliquote e diminuire la tassazione: quella \u00e8 una misura strutturale!\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "post_text": "++ \"\u00c8 UNA TRUFFA RICEVERE GLI 80 EURO E POI AVERE LO STIPENDIO DIMEZZATO PERCH\u00c9 NON ERANO DOVUTI!!!\" ++\n\u201cCon i vari bonus stiamo prendendo in giro gli italiani perch\u00e9 non sono soluzioni credibili.\nRidurre le\u2026 Altro aliquote e diminuire la tassazione: quella \u00e8 una misura strutturale!\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-11-17 12:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155305279178155&id=252306033154", "link": null} +{"post_id": "10155305755053155", "text": "In fondo dobbiamo capirli, dice il sindaco, sentivano la mancanza della citt\u00e0, \u00e8 stata una \"marachella\"...\nESPULSIONE IMMEDIATA e DIFESA DEI CONFINI!\n#stopinvasione", "post_text": "In fondo dobbiamo capirli, dice il sindaco, sentivano la mancanza della citt\u00e0, \u00e8 stata una \"marachella\"...\nESPULSIONE IMMEDIATA e DIFESA DEI CONFINI!\n#stopinvasione", "shared_text": "", "time": "2017-11-17 10:03:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155305755053155&id=252306033154", "link": null} +{"post_id": null, "text": "Amici Sardi, sabato prossimo, 25 novembre, alle 16.30 alla Fiera di CAGLIARI sono felice e orgoglioso di tornare nella vostra splendida isola. Vi aspetto in tantissimi!\n#andiamoagovernare\nNOTA BENE: l'ingresso\u2026 Altro \u00e8 libero, ma \u00e8 possibile accreditarsi per avere certezza dell'ingresso scrivendo a: accrediti.cagliari2017@noiconsalvini.org", "post_text": "Amici Sardi, sabato prossimo, 25 novembre, alle 16.30 alla Fiera di CAGLIARI sono felice e orgoglioso di tornare nella vostra splendida isola. Vi aspetto in tantissimi!\n#andiamoagovernare\nNOTA BENE: l'ingresso\u2026 Altro \u00e8 libero, ma \u00e8 possibile accreditarsi per avere certezza dell'ingresso scrivendo a: accrediti.cagliari2017@noiconsalvini.org", "shared_text": "", "time": "2017-11-17 09:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p168x128/23668915_10155307967503155_8753708207914278790_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=2D2e1wrHKb4AQka2S6r5PoXj0VyHQExD7Q8jJ3eakGTtmcmmAd_eoEQ2w&_nc_ht=scontent-cdt1-1.xx&oh=3f6f84d1a5c27cf812fbabc9e1082715&oe=5E8A45BD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10155306195938155", "text": "\"ABBIAMO RISCHIATO GROSSO\"\nL'inviato di \"Striscia\" racconta l'aggressione subita dagli spacciatori africani a Bologna: \"Non solo COCAINA, ma ci hanno offerto anche PISTOLE e KALASHNIKOV!\".\nONORE a Vittorio\u2026 Altro Brumotti per il servizio di documentazione del DEGRADO con conduce con la sua troupe, mettendo a rischio la propria incolumit\u00e0.\nDISONORE per quegli amministratori pubblici che tollerano questo SCHIFO nelle loro citt\u00e0.", "post_text": "\"ABBIAMO RISCHIATO GROSSO\"\nL'inviato di \"Striscia\" racconta l'aggressione subita dagli spacciatori africani a Bologna: \"Non solo COCAINA, ma ci hanno offerto anche PISTOLE e KALASHNIKOV!\".\nONORE a Vittorio\u2026 Altro Brumotti per il servizio di documentazione del DEGRADO con conduce con la sua troupe, mettendo a rischio la propria incolumit\u00e0.\nDISONORE per quegli amministratori pubblici che tollerano questo SCHIFO nelle loro citt\u00e0.", "shared_text": "", "time": "2017-11-16 20:13:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155306195938155&id=252306033154", "link": null} +{"post_id": "10155286666333155", "text": "\ud83d\udd34 PER I CLANDESTINI I SOLDI CI SONO SEMPRE, PER UNA VEDOVA CON DUE FIGLI DISABILI NO!\nL'Italia, secondo le stime del governo, spender\u00e0 quasi 13 MILIARDI in 3 anni per l'accoglienza di centinaia di migliaia di\u2026 Altro FINTI PROFUGHI che non scappano da guerre ma vengono qui per migliorare le loro condizioni di vita... E poi abbiamo storie come quelle di Angelina, vedova, due figli disabili, disperata.\nMi si stringe il cuore.\nMa vi pare GIUSTO? Vi pare NORMALE?\nNon dovrebbe essere la priorit\u00e0 di un Paese serio quella di migliorare PRIMA DI TUTTO le condizioni di vita di chi qui \u00e8 nato e ha vissuto?\nIo sono pronto alla RIVOLUZIONE del BUONSENSO: #primagliitaliani\nP.s. Grazie a Paolo Del Debbio, per aver preso a cuore con la sua trasmissione, dove sar\u00f2 anche io questa sera, questa mamma.", "post_text": "\ud83d\udd34 PER I CLANDESTINI I SOLDI CI SONO SEMPRE, PER UNA VEDOVA CON DUE FIGLI DISABILI NO!\nL'Italia, secondo le stime del governo, spender\u00e0 quasi 13 MILIARDI in 3 anni per l'accoglienza di centinaia di migliaia di\u2026 Altro FINTI PROFUGHI che non scappano da guerre ma vengono qui per migliorare le loro condizioni di vita... E poi abbiamo storie come quelle di Angelina, vedova, due figli disabili, disperata.\nMi si stringe il cuore.\nMa vi pare GIUSTO? Vi pare NORMALE?\nNon dovrebbe essere la priorit\u00e0 di un Paese serio quella di migliorare PRIMA DI TUTTO le condizioni di vita di chi qui \u00e8 nato e ha vissuto?\nIo sono pronto alla RIVOLUZIONE del BUONSENSO: #primagliitaliani\nP.s. Grazie a Paolo Del Debbio, per aver preso a cuore con la sua trasmissione, dove sar\u00f2 anche io questa sera, questa mamma.", "shared_text": "", "time": "2017-11-16 14:35:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155286666333155&id=252306033154", "link": null} +{"post_id": "10155305234053155", "text": "Difendere il territorio, comprare italiano e gli scarafaggi se li mangi Renzi con la Boldrini a cena!", "post_text": "Difendere il territorio, comprare italiano e gli scarafaggi se li mangi Renzi con la Boldrini a cena!", "shared_text": "", "time": "2017-11-16 10:24:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155305234053155&id=252306033154", "link": null} +{"post_id": "10155304227243155", "text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34BASTA!!!\nCocaina e armi accanto all'asilo, ragazzi di \"Striscia\" aggrediti selvaggiamente e derubati.\nEcco la sicurezza targata PD nella \"accogliente\" Bologna...\nUnica soluzione: ESPULSIONE IMMEDIATA di questa gentaglia, senza se e senza ma!!!", "post_text": "\ud83d\udd34\ud83d\udd34\ud83d\udd34BASTA!!!\nCocaina e armi accanto all'asilo, ragazzi di \"Striscia\" aggrediti selvaggiamente e derubati.\nEcco la sicurezza targata PD nella \"accogliente\" Bologna...\nUnica soluzione: ESPULSIONE IMMEDIATA di questa gentaglia, senza se e senza ma!!!", "shared_text": "", "time": "2017-11-15 23:18:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155304227243155&id=252306033154", "link": null} +{"post_id": "10155302826318155", "text": "Il giornalista Filippo Facci racconta la sua esperienza di vita VERA con i rom vicino casa...\nConsiglio la visione e la condivisione sulle bacheche di amici \"buonisti\".", "post_text": "Il giornalista Filippo Facci racconta la sua esperienza di vita VERA con i rom vicino casa...\nConsiglio la visione e la condivisione sulle bacheche di amici \"buonisti\".", "shared_text": "", "time": "2017-11-15 21:02:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155302826318155&id=252306033154", "link": null} +{"post_id": "10155303668408155", "text": "Ascoltate le parole di Gentiloni, e capirete perch\u00e9 grazie al Pd l'Italia \u00e8 INVASA da immigrati clandestini che non scappano da nessuna guerra. #stopinvasione\nP.s. Al vanitoso premier ricordo, sommessamente, che in Italia tutta l'Africa non ci sta.", "post_text": "Ascoltate le parole di Gentiloni, e capirete perch\u00e9 grazie al Pd l'Italia \u00e8 INVASA da immigrati clandestini che non scappano da nessuna guerra. #stopinvasione\nP.s. Al vanitoso premier ricordo, sommessamente, che in Italia tutta l'Africa non ci sta.", "shared_text": "", "time": "2017-11-15 19:06:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155303668408155&id=252306033154", "link": null} +{"post_id": "10155303465823155", "text": "Se avete qualche minuto, vi ripropongo la mia intervista di ieri pomeriggio a Radio 105. Sul calcio, e su cose molto pi\u00f9 importanti, come la vittoria per nonna Peppina!", "post_text": "Se avete qualche minuto, vi ripropongo la mia intervista di ieri pomeriggio a Radio 105. Sul calcio, e su cose molto pi\u00f9 importanti, come la vittoria per nonna Peppina!", "shared_text": "", "time": "2017-11-15 17:15:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155303465823155&id=252306033154", "link": null} +{"post_id": "10155297639858155", "text": "Che tenero questo piccolo che ride nel sonno, chiss\u00e0 cosa stava sognando!\nI bimbi sono la cosa pi\u00f9 bella che ci sia e vederli crescere ti riempie d'orgoglio.\nDa pap\u00e0, voglio che i miei figli crescano in un Paese dove sognare in grande non sia un'utopia.\nMi date una mano?", "post_text": "Che tenero questo piccolo che ride nel sonno, chiss\u00e0 cosa stava sognando!\nI bimbi sono la cosa pi\u00f9 bella che ci sia e vederli crescere ti riempie d'orgoglio.\nDa pap\u00e0, voglio che i miei figli crescano in un Paese dove sognare in grande non sia un'utopia.\nMi date una mano?", "shared_text": "", "time": "2017-11-14 21:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155297639858155&id=252306033154", "link": null} +{"post_id": "10155300551443155", "text": "\ud83d\udd34 UNA MOSTRUOSA CRUDELT\u00c0\nQueste immagini sconvolgenti, oltre che riempirmi di tristezza, mi fanno IMBESTIALIRE!\nLa disumana badante, che a Livorno picchiava e insultava i due poveri nonni, di 84 e 89 anni, \u00e8 stata allontanata.\nPer me andrebbe ARRESTATA e rispedita al suo Paese!", "post_text": "\ud83d\udd34 UNA MOSTRUOSA CRUDELT\u00c0\nQueste immagini sconvolgenti, oltre che riempirmi di tristezza, mi fanno IMBESTIALIRE!\nLa disumana badante, che a Livorno picchiava e insultava i due poveri nonni, di 84 e 89 anni, \u00e8 stata allontanata.\nPer me andrebbe ARRESTATA e rispedita al suo Paese!", "shared_text": "", "time": "2017-11-14 16:46:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155300551443155&id=252306033154", "link": null} +{"post_id": "10155300359818155", "text": "Quello che Renzi tocca si trasforma in...", "post_text": "Quello che Renzi tocca si trasforma in...", "shared_text": "", "time": "2017-11-14 14:00:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155300359818155&id=252306033154", "link": null} +{"post_id": "10155298260663155", "text": "I presunti profughi ospitati, a spese degli italiani, nella ex base militare di Conetta, nel Veneziano, bloccano il traffico per due volte in un giorno.\nVogliono condizioni di vita migliori......", "post_text": "I presunti profughi ospitati, a spese degli italiani, nella ex base militare di Conetta, nel Veneziano, bloccano il traffico per due volte in un giorno.\nVogliono condizioni di vita migliori......", "shared_text": "", "time": "2017-11-14 09:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155298260663155&id=252306033154", "link": null} +{"post_id": "10155293750393155", "text": "TUTTO BENE A PADOVA!\nRacconta un testimone: \"C'erano quattro o cinque nomadi che bevevano molto, uno era particolarmente ubriaco e metteva le mani addosso alle persone A CASO. Qualcuno ha portato pazienza,\u2026 Altro cercando di tranquillizzarlo, ma ad un certo punto se l'\u00e8 presa con la persona sbagliata. Ha trovato infatti un ragazzo che lo ha spinto via ed \u00e8 finita l\u00ec. \u00c8 scattata la rissa proprio al bancone. Alla fine hanno avuto la brillante idea di prendere un Ducato e SFONDARE la vetrina d'ingresso del Gasoline\".\nSoluzione? #tolleranzazero\nhttp://www.padovaoggi.it/cronaca/rissa-gasoline-furgone-vetrata-padova-via-fornace-morandi-11-novembre-2017.html", "post_text": "TUTTO BENE A PADOVA!\nRacconta un testimone: \"C'erano quattro o cinque nomadi che bevevano molto, uno era particolarmente ubriaco e metteva le mani addosso alle persone A CASO. Qualcuno ha portato pazienza,\u2026 Altro cercando di tranquillizzarlo, ma ad un certo punto se l'\u00e8 presa con la persona sbagliata. Ha trovato infatti un ragazzo che lo ha spinto via ed \u00e8 finita l\u00ec. \u00c8 scattata la rissa proprio al bancone. Alla fine hanno avuto la brillante idea di prendere un Ducato e SFONDARE la vetrina d'ingresso del Gasoline\".\nSoluzione? #tolleranzazero\nhttp://www.padovaoggi.it/cronaca/rissa-gasoline-furgone-vetrata-padova-via-fornace-morandi-11-novembre-2017.html", "shared_text": "", "time": "2017-11-13 15:29:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155293750393155&id=252306033154", "link": "http://www.padovaoggi.it/cronaca/rissa-gasoline-furgone-vetrata-padova-via-fornace-morandi-11-novembre-2017.html?fbclid=IwAR12Wqspz7N5usVSn4NxMdgE3xJFytR6DIv3nP9IpJPzupVL-nIFYX4FJpk"} +{"post_id": "10155295403948155", "text": "Mi piace questo allenatore!", "post_text": "Mi piace questo allenatore!", "shared_text": "", "time": "2017-11-12 18:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155295403948155&id=252306033154", "link": null} +{"post_id": "10155260869898155", "text": "GUARDATE QUESTO VIDEO.\nL\u2019ideatore del famoso limite deficit/PIL al 3%: \u00e8 un numero CASUALE, lo abbiamo deciso in meno di un\u2019ora.\n\"Oggi tutti gli studiosi cercano di giustificare questo numero con analisi\u2026 Altro scientifiche, ma vi garantisco che \u00e8 andata cos\u00ec.\"\nCapito? Ogni anno il Governo toglie risorse a scuole, ospedali, Forze dell\u2019ordine per rispettare una regola SENZA SENSO. BASTA!\nLa politica deve essere al servizio dei cittadini, non il contrario.\nSe nel nome di norme e tetti arbitrari imposti da Bruxelles non possiamo aiutare gli italiani, li sforeremo.\n#andiamoagovernare", "post_text": "GUARDATE QUESTO VIDEO.\nL\u2019ideatore del famoso limite deficit/PIL al 3%: \u00e8 un numero CASUALE, lo abbiamo deciso in meno di un\u2019ora.\n\"Oggi tutti gli studiosi cercano di giustificare questo numero con analisi\u2026 Altro scientifiche, ma vi garantisco che \u00e8 andata cos\u00ec.\"\nCapito? Ogni anno il Governo toglie risorse a scuole, ospedali, Forze dell\u2019ordine per rispettare una regola SENZA SENSO. BASTA!\nLa politica deve essere al servizio dei cittadini, non il contrario.\nSe nel nome di norme e tetti arbitrari imposti da Bruxelles non possiamo aiutare gli italiani, li sforeremo.\n#andiamoagovernare", "shared_text": "", "time": "2017-11-12 12:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155260869898155&id=252306033154", "link": null} +{"post_id": "1628979027145017", "text": "Contento che la Lega sia forte come mai lo \u00e8 stata: pi\u00f9 voti avremo, pi\u00f9 forza avranno le nostre proposte.\nSulla cancellazione della legge Fornero, sulla tassa unica al 15%, sul blocco dell'immigrazione\u2026 Altro incontrollata con espulsione dei clandestini, su sicurezza, certezza della pena e legittima difesa, sulla riforma della scuola, sulla tutela del Made in Italy, sulla ridiscussione di tutti i trattati europei prima che questa Europa e questo Euro portino al fallimento la nostra economia e le nostre imprese.\nIo sono pronto.\nFATECI VOTARE, anche in febbraio, il prima possibile!\nE gli italiani premieranno le idee pi\u00f9 convincenti.", "post_text": "Contento che la Lega sia forte come mai lo \u00e8 stata: pi\u00f9 voti avremo, pi\u00f9 forza avranno le nostre proposte.\nSulla cancellazione della legge Fornero, sulla tassa unica al 15%, sul blocco dell'immigrazione\u2026 Altro incontrollata con espulsione dei clandestini, su sicurezza, certezza della pena e legittima difesa, sulla riforma della scuola, sulla tutela del Made in Italy, sulla ridiscussione di tutti i trattati europei prima che questa Europa e questo Euro portino al fallimento la nostra economia e le nostre imprese.\nIo sono pronto.\nFATECI VOTARE, anche in febbraio, il prima possibile!\nE gli italiani premieranno le idee pi\u00f9 convincenti.", "shared_text": "", "time": "2017-11-12 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1628979027145017&id=252306033154", "link": null} +{"post_id": "10155292502618155", "text": "\"Come sta?\" \"Male, le notti nel container sono brutte\".\nAnche il TG5 ieri sera ha dedicato un servizio di aggiornamento sulla VERGOGNOSA situazione in cui la burocrazia di uno Stato debole con i forti e forte\u2026 Altro con i deboli ha costretto nonna Peppina, 95 anni, terremotata.\nInvito i rappresentanti di tutti i partiti a SVEGLIARSI: la Lega in parlamento la soluzione l'ha trovata, basta UN QUARTO D'ORA per APPROVARLA e restituire alla nonna la sua casetta.\n#FORZANONNAPEPPINA!\nEcco qui l'appello, che rinnoviamo: https://www.facebook.com/salviniofficial/videos/10155287843523155/", "post_text": "\"Come sta?\" \"Male, le notti nel container sono brutte\".\nAnche il TG5 ieri sera ha dedicato un servizio di aggiornamento sulla VERGOGNOSA situazione in cui la burocrazia di uno Stato debole con i forti e forte\u2026 Altro con i deboli ha costretto nonna Peppina, 95 anni, terremotata.\nInvito i rappresentanti di tutti i partiti a SVEGLIARSI: la Lega in parlamento la soluzione l'ha trovata, basta UN QUARTO D'ORA per APPROVARLA e restituire alla nonna la sua casetta.\n#FORZANONNAPEPPINA!\nEcco qui l'appello, che rinnoviamo: https://www.facebook.com/salviniofficial/videos/10155287843523155/", "shared_text": "", "time": "2017-11-11 18:55:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155292502618155&id=252306033154", "link": null} +{"post_id": "10155292575498155", "text": "La Boldrini auspica il ritorno delle cosiddette ONG in mare...\nEh certo, senn\u00f2 come fanno i clandestini ad arrivare in Italia per pagarci le pensioni...\n#boldriniclandestina", "post_text": "La Boldrini auspica il ritorno delle cosiddette ONG in mare...\nEh certo, senn\u00f2 come fanno i clandestini ad arrivare in Italia per pagarci le pensioni...\n#boldriniclandestina", "shared_text": "", "time": "2017-11-11 16:14:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155292575498155&id=252306033154", "link": null} +{"post_id": "10155274393028155", "text": "Purtroppo era troppo ubriaco per pagarci la pensione...\nUn pensiero a chi lavora su autobus, treni e metro.\nIn questa Italia rovinata dal Pd dove tutti pensano di poter fare quello che vogliono, almeno UN PO' PI\u00d9 di REGOLE e di ORDINE li porteremo, ve lo garantisco.", "post_text": "Purtroppo era troppo ubriaco per pagarci la pensione...\nUn pensiero a chi lavora su autobus, treni e metro.\nIn questa Italia rovinata dal Pd dove tutti pensano di poter fare quello che vogliono, almeno UN PO' PI\u00d9 di REGOLE e di ORDINE li porteremo, ve lo garantisco.", "shared_text": "", "time": "2017-11-11 14:03:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155274393028155&id=252306033154", "link": null} +{"post_id": "10155290210603155", "text": "\ud83d\udd34 SENZA VERGOGNA!\nMonti: \"Salvini incita all'ODIO, verso TUTTI!\".\nINCREDIBILE, ha ancora il coraggio di parlare!\nProprio lui che con la legge Fornero ha ROVINATO milioni di italiani!\nL'ho detto e lo confermo:\u2026 Altro il PRIMO impegno da premier sar\u00e0 cancellare l'infame legge, e con essa la memoria di governanti indegni.\n#andiamoagovernare", "post_text": "\ud83d\udd34 SENZA VERGOGNA!\nMonti: \"Salvini incita all'ODIO, verso TUTTI!\".\nINCREDIBILE, ha ancora il coraggio di parlare!\nProprio lui che con la legge Fornero ha ROVINATO milioni di italiani!\nL'ho detto e lo confermo:\u2026 Altro il PRIMO impegno da premier sar\u00e0 cancellare l'infame legge, e con essa la memoria di governanti indegni.\n#andiamoagovernare", "shared_text": "", "time": "2017-11-11 11:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155290210603155&id=252306033154", "link": null} +{"post_id": "10155281887223155", "text": "Li ricordate? 87 e 86 anni, l'anno scorso in luglio vennero picchiati, torturati con FEROCIA (addirittura con un ferro da stiro) e derubati da una banda di marocchini.\nI due INFAMI (un terzo \u00e8 latitante) sono\u2026 Altro stati condannati ad appena 7 anni e 4 mesi ciascuno.\nRosina \u00e8 sconsolata: \"Tra tre anni questi sono fuori e ci vengono ad ammazzare, me l'hanno promesso\".\nMALEDETTI.\nDopo anni di disastro Pd, tra pochi mesi porteremo in Italia leggi PI\u00d9 GIUSTE e pene PI\u00d9 CERTE.\nUn grande abbraccio a Ennio e Rosina, per voi noi ci siamo.", "post_text": "Li ricordate? 87 e 86 anni, l'anno scorso in luglio vennero picchiati, torturati con FEROCIA (addirittura con un ferro da stiro) e derubati da una banda di marocchini.\nI due INFAMI (un terzo \u00e8 latitante) sono\u2026 Altro stati condannati ad appena 7 anni e 4 mesi ciascuno.\nRosina \u00e8 sconsolata: \"Tra tre anni questi sono fuori e ci vengono ad ammazzare, me l'hanno promesso\".\nMALEDETTI.\nDopo anni di disastro Pd, tra pochi mesi porteremo in Italia leggi PI\u00d9 GIUSTE e pene PI\u00d9 CERTE.\nUn grande abbraccio a Ennio e Rosina, per voi noi ci siamo.", "shared_text": "", "time": "2017-11-11 09:00:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155281887223155&id=252306033154", "link": null} +{"post_id": "10155289753553155", "text": "Un abbraccio a chi oggi \u00e8 duramente colpito dal maltempo al Sud e in Sicilia, in particolare nel Ragusano, nel Siracusano e nel Catanese, dove sono stato anche io la settimana scorsa, con un pensiero particolare ad Acate e a Vittoria. FORZA!", "post_text": "Un abbraccio a chi oggi \u00e8 duramente colpito dal maltempo al Sud e in Sicilia, in particolare nel Ragusano, nel Siracusano e nel Catanese, dove sono stato anche io la settimana scorsa, con un pensiero particolare ad Acate e a Vittoria. FORZA!", "shared_text": "", "time": "2017-11-10 16:45:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155289753553155&id=252306033154", "link": null} +{"post_id": "10155286662598155", "text": "IL DEGRADO. \"Prima ci vanno a letto e dopo qualche mese lo denunciano. Queste sono le ITALIANE\".\nQueste le parole della madre di \"Alessio il Sinto\", per lei non \u00e8 uno STUPRATORE...\nLascio a voi i commenti.\nIo dico che in ITALIA serve una buona dose di #TOLLERANZAZERO.", "post_text": "IL DEGRADO. \"Prima ci vanno a letto e dopo qualche mese lo denunciano. Queste sono le ITALIANE\".\nQueste le parole della madre di \"Alessio il Sinto\", per lei non \u00e8 uno STUPRATORE...\nLascio a voi i commenti.\nIo dico che in ITALIA serve una buona dose di #TOLLERANZAZERO.", "shared_text": "", "time": "2017-11-10 11:52:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155286662598155&id=252306033154", "link": null} +{"post_id": "10155289246288155", "text": "Esposizione internazionale del ciclo e motociclo, viva le eccellenze italiane!", "post_text": "Esposizione internazionale del ciclo e motociclo, viva le eccellenze italiane!", "shared_text": "", "time": "2017-11-10 10:48:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155289246288155&id=252306033154", "link": null} +{"post_id": "10155284430633155", "text": "++ \u201cPER CHI STUPRA LA CASTRAZIONE CHIMICA \u00c8 DOVEROSA!\u201d ++\n\u201cNei campi ROM le leggi dello Stato italiano non esistono.\nPerch\u00e9 chi non manda i figli a scuola non subisce la patria potest\u00e0? Perch\u00e9 i ristoranti\u2026 Altro italiani devono rispettare leggi severe sui fumi emanati mentre loro possono bruciare di tutto creando nubi tossiche?\n\u00c8 necessario innanzitutto riportare il principio di legalit\u00e0!\u201d\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "post_text": "++ \u201cPER CHI STUPRA LA CASTRAZIONE CHIMICA \u00c8 DOVEROSA!\u201d ++\n\u201cNei campi ROM le leggi dello Stato italiano non esistono.\nPerch\u00e9 chi non manda i figli a scuola non subisce la patria potest\u00e0? Perch\u00e9 i ristoranti\u2026 Altro italiani devono rispettare leggi severe sui fumi emanati mentre loro possono bruciare di tutto creando nubi tossiche?\n\u00c8 necessario innanzitutto riportare il principio di legalit\u00e0!\u201d\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-11-10 08:55:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155284430633155&id=252306033154", "link": null} +{"post_id": "10155287843523155", "text": "\ud83d\udd34 Nonna Peppina, 95 anni, \u00e8 al gelo nel container da un mese.\nOltre al disegno di legge, la LEGA ha presentato anche un emendamento al decreto legge fiscale abbinato alla legge di bilancio.\nBasta UN QUARTO D'\u2026 AltroORA per APPROVARE e restituire alla nonna la sua casetta, aiutando anche centinaia di altre famiglie terremotate che sono nella stessa situazione.\nSVEGLIA GENTILONI, SVEGLIA PD!\n#forzaNonnaPeppina", "post_text": "\ud83d\udd34 Nonna Peppina, 95 anni, \u00e8 al gelo nel container da un mese.\nOltre al disegno di legge, la LEGA ha presentato anche un emendamento al decreto legge fiscale abbinato alla legge di bilancio.\nBasta UN QUARTO D'\u2026 AltroORA per APPROVARE e restituire alla nonna la sua casetta, aiutando anche centinaia di altre famiglie terremotate che sono nella stessa situazione.\nSVEGLIA GENTILONI, SVEGLIA PD!\n#forzaNonnaPeppina", "shared_text": "", "time": "2017-11-09 20:48:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155287843523155&id=252306033154", "link": null} +{"post_id": "10155287222118155", "text": "Bambini maltrattati, 13 denunce e segnalazioni AL GIORNO!\nLa Lega lo propone, inascoltata, da anni: TELECAMERE ANTIVIOLENZA in asili, scuole, case di riposo.\nQuando tra qualche mese saremo al governo,\u2026 Altro finalmente lo faremo.\nNessuna tolleranza per chi, proprio nei luoghi in cui dovrebbero essere pi\u00f9 al sicuro, fa del male ai nostri bimbi e ai nostri anziani!!!", "post_text": "Bambini maltrattati, 13 denunce e segnalazioni AL GIORNO!\nLa Lega lo propone, inascoltata, da anni: TELECAMERE ANTIVIOLENZA in asili, scuole, case di riposo.\nQuando tra qualche mese saremo al governo,\u2026 Altro finalmente lo faremo.\nNessuna tolleranza per chi, proprio nei luoghi in cui dovrebbero essere pi\u00f9 al sicuro, fa del male ai nostri bimbi e ai nostri anziani!!!", "shared_text": "", "time": "2017-11-09 17:30:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155287222118155&id=252306033154", "link": null} +{"post_id": "10155286813523155", "text": "\ud83d\udd34FAI GIRARE!\nSbarchi fermati? Tutte palle.\nItalia invasa da ex carcerati nordafricani, ecco le prove in questo video.\n#pdclandestino #votosubito", "post_text": "\ud83d\udd34FAI GIRARE!\nSbarchi fermati? Tutte palle.\nItalia invasa da ex carcerati nordafricani, ecco le prove in questo video.\n#pdclandestino #votosubito", "shared_text": "", "time": "2017-11-09 13:03:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155286813523155&id=252306033154", "link": null} +{"post_id": "10155286666433155", "text": "Vi ripropongo la mia intervista a #CorriereLive: tante domande, ma mi sono divertito a rispondere. Il confronto \u00e8 SEMPRE positivo!", "post_text": "Vi ripropongo la mia intervista a #CorriereLive: tante domande, ma mi sono divertito a rispondere. Il confronto \u00e8 SEMPRE positivo!", "shared_text": "", "time": "2017-11-09 11:11:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155286666433155&id=252306033154", "link": null} +{"post_id": "10155281927893155", "text": "Giada, ancora bimba, si iscrive al corso di karate in una palestra gestita dal maestro Carmelo, entrando nella tana di un ORCO che la stupra sessualmente dai 12 fino ai 17 anni, usando la sua posizione\u2026 Altro autoritaria per costringerla ad accettare tutto e spingendola a subire rapporti a 3 con altri quarantenni.\nOggi lei riesce a raccontare tutto senza veli e con un sorriso dolce e sincero, perch\u00e9 \u201clui non merita di togliermelo\u201d.\nOnore a te Giada, il tuo gesto \u00e8 uno splendido atto di coraggio per tutti.\nSe conoscete persone che hanno subito violenze sessuali, aiutatele a far denunciare i loro stupratori, solo cos\u00ec riusciamo a stanarli.\nIo, da pap\u00e0 prima che da politico, far\u00f2 di tutto per fermare e condannare questi mostri che non meritano di vivere impuniti.", "post_text": "Giada, ancora bimba, si iscrive al corso di karate in una palestra gestita dal maestro Carmelo, entrando nella tana di un ORCO che la stupra sessualmente dai 12 fino ai 17 anni, usando la sua posizione\u2026 Altro autoritaria per costringerla ad accettare tutto e spingendola a subire rapporti a 3 con altri quarantenni.\nOggi lei riesce a raccontare tutto senza veli e con un sorriso dolce e sincero, perch\u00e9 \u201clui non merita di togliermelo\u201d.\nOnore a te Giada, il tuo gesto \u00e8 uno splendido atto di coraggio per tutti.\nSe conoscete persone che hanno subito violenze sessuali, aiutatele a far denunciare i loro stupratori, solo cos\u00ec riusciamo a stanarli.\nIo, da pap\u00e0 prima che da politico, far\u00f2 di tutto per fermare e condannare questi mostri che non meritano di vivere impuniti.", "shared_text": "", "time": "2017-11-08 21:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155281927893155&id=252306033154", "link": null} +{"post_id": "10155285201838155", "text": "Il posto giusto per questo \"signore\" \u00e8 la GALERA!\nSpaccare il naso a testate... Non ho parole.\nTutta la mia solidariet\u00e0 al giornalista Daniele Piervincenzi e alla troupe di Nemo - nessuno escluso.", "post_text": "Il posto giusto per questo \"signore\" \u00e8 la GALERA!\nSpaccare il naso a testate... Non ho parole.\nTutta la mia solidariet\u00e0 al giornalista Daniele Piervincenzi e alla troupe di Nemo - nessuno escluso.", "shared_text": "", "time": "2017-11-08 20:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155285201838155&id=252306033154", "link": null} +{"post_id": "10155284789113155", "text": "PAZZESCO.\nBenvenuti nel cuore della Firenze del PD, scrigno di bellezze che tutto il mondo ci invidia e... di maxi-risse a colpi di SPRANGATE tra pakistani e bengalesi. Cittadini e commercianti terrorizzati.\nBASTA!!!\n#stopinvasione e #pdacasa, manca poco!", "post_text": "PAZZESCO.\nBenvenuti nel cuore della Firenze del PD, scrigno di bellezze che tutto il mondo ci invidia e... di maxi-risse a colpi di SPRANGATE tra pakistani e bengalesi. Cittadini e commercianti terrorizzati.\nBASTA!!!\n#stopinvasione e #pdacasa, manca poco!", "shared_text": "", "time": "2017-11-08 16:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155284789113155&id=252306033154", "link": null} +{"post_id": "10155284200868155", "text": "In diretta, per voi, dal Campo Rom di via Salone (Roma) che ospitava i due stupratori delle ragazzine, e dove ieri i Carabinieri hanno arrestato (per spaccio e furto) dieci persone.\nQui seconda parte LIVE: https://www.facebook.com/salviniofficial/videos/10155284239878155/", "post_text": "In diretta, per voi, dal Campo Rom di via Salone (Roma) che ospitava i due stupratori delle ragazzine, e dove ieri i Carabinieri hanno arrestato (per spaccio e furto) dieci persone.\nQui seconda parte LIVE: https://www.facebook.com/salviniofficial/videos/10155284239878155/", "shared_text": "", "time": "2017-11-08 11:25:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155284200868155&id=252306033154", "link": null} +{"post_id": "10155282386318155", "text": "Per uno che si tatua sul petto \"Solo Dio mi pu\u00f2 giudicare\" e poi stupra due quattordicenni esiste un'unica soluzione: CASTRAZIONE CHIMICA e GALERA!", "post_text": "Per uno che si tatua sul petto \"Solo Dio mi pu\u00f2 giudicare\" e poi stupra due quattordicenni esiste un'unica soluzione: CASTRAZIONE CHIMICA e GALERA!", "shared_text": "", "time": "2017-11-08 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155282386318155&id=252306033154", "link": null} +{"post_id": "10155282181508155", "text": "Insieme a Nello Musumeci e a tutta la squadra, la Lega entra per la prima volta nella storia nell'Assemblea regionale siciliana. FELICE e ORGOGLIOSO dell'impegno dei nostri militanti, dei nostri candidati,\u2026 Altro degli oltre 100mila voti PULITI, conquistati a costo zero.\nEntro Natale torner\u00f2 in Sardegna (il 25 novembre), e poi in Campania, in Puglia e in Calabria, proporremo ai cittadini e agli amministratori locali un Patto per il Sud, vero, per rilanciare l'economia, il lavoro e la speranza.\n#andiamoagovernare", "post_text": "Insieme a Nello Musumeci e a tutta la squadra, la Lega entra per la prima volta nella storia nell'Assemblea regionale siciliana. FELICE e ORGOGLIOSO dell'impegno dei nostri militanti, dei nostri candidati,\u2026 Altro degli oltre 100mila voti PULITI, conquistati a costo zero.\nEntro Natale torner\u00f2 in Sardegna (il 25 novembre), e poi in Campania, in Puglia e in Calabria, proporremo ai cittadini e agli amministratori locali un Patto per il Sud, vero, per rilanciare l'economia, il lavoro e la speranza.\n#andiamoagovernare", "shared_text": "", "time": "2017-11-07 17:30:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155282181508155&id=252306033154", "link": null} +{"post_id": "10155281811203155", "text": "Ecco lo Stato che premia chi commette reati e ROVINA i cittadini perbene!\nNel nuovo parlamento approveremo finalmente una legge che tuteli la LEGITTIMA DIFESA e metteremo fine a queste INGIUSTIZIE!\n#andiamoagovernare", "post_text": "Ecco lo Stato che premia chi commette reati e ROVINA i cittadini perbene!\nNel nuovo parlamento approveremo finalmente una legge che tuteli la LEGITTIMA DIFESA e metteremo fine a queste INGIUSTIZIE!\n#andiamoagovernare", "shared_text": "", "time": "2017-11-07 11:40:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155281811203155&id=252306033154", "link": null} +{"post_id": "10155275445553155", "text": "Ennesima rissa a suon di bottigliate tra \"risorse\" oggi pomeriggio al parco della Montagnola di Bologna, tra degrado e spaccio, in pieni giorno. Poco prima i pagatori di pensione amati dalla sinistra avevano\u2026 Altro minacciato una donna di 86 anni...\nAvremo un po' di lavoro da fare quando saremo al governo per rimediare ad anni di invasione targata Pd.\n(Grazie a Lucia Borgonzoni che ha girato il video)", "post_text": "Ennesima rissa a suon di bottigliate tra \"risorse\" oggi pomeriggio al parco della Montagnola di Bologna, tra degrado e spaccio, in pieni giorno. Poco prima i pagatori di pensione amati dalla sinistra avevano\u2026 Altro minacciato una donna di 86 anni...\nAvremo un po' di lavoro da fare quando saremo al governo per rimediare ad anni di invasione targata Pd.\n(Grazie a Lucia Borgonzoni che ha girato il video)", "shared_text": "", "time": "2017-11-04 19:33:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155275445553155&id=252306033154", "link": null} +{"post_id": "10155261382328155", "text": "Delia, un'arzilla signora di 92 anni, era distrutta dopo la scomparsa del marito. Non ha mai voluto un cane, eppure quando la famiglia ha accolto in casa Maia, un simpatico Bull Terrier, lei ha ricominciato a\u2026 Altro vivere e sono diventati una coppia inseparabile.\nGli amici a quattro zampe ci sono sempre per noi, nel bene e nel male.\nA Delia e a Maia auguriamo tanti anni di tenerezze!", "post_text": "Delia, un'arzilla signora di 92 anni, era distrutta dopo la scomparsa del marito. Non ha mai voluto un cane, eppure quando la famiglia ha accolto in casa Maia, un simpatico Bull Terrier, lei ha ricominciato a\u2026 Altro vivere e sono diventati una coppia inseparabile.\nGli amici a quattro zampe ci sono sempre per noi, nel bene e nel male.\nA Delia e a Maia auguriamo tanti anni di tenerezze!", "shared_text": "", "time": "2017-11-04 09:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155261382328155&id=252306033154", "link": null} +{"post_id": "10155272067218155", "text": "Qui a Belpasso (Catania) con l'oro di Sicilia!\nAltro che arance marocchine, difendiamo i nostri prodotti, consumiamo ITALIANO!", "post_text": "Qui a Belpasso (Catania) con l'oro di Sicilia!\nAltro che arance marocchine, difendiamo i nostri prodotti, consumiamo ITALIANO!", "shared_text": "", "time": "2017-11-03 10:56:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155272067218155&id=252306033154", "link": null} +{"post_id": "10155270704328155", "text": "In diretta da Catania!", "post_text": "In diretta da Catania!", "shared_text": "", "time": "2017-11-02 20:23:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155270704328155&id=252306033154", "link": null} +{"post_id": "10155270176948155", "text": "Dalle baracche del rione Taormina di Messina...", "post_text": "Dalle baracche del rione Taormina di Messina...", "shared_text": "", "time": "2017-11-02 16:15:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155270176948155&id=252306033154", "link": null} +{"post_id": "10155269801973155", "text": "Dalla splendida Taormina!", "post_text": "Dalla splendida Taormina!", "shared_text": "", "time": "2017-11-02 13:04:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155269801973155&id=252306033154", "link": null} +{"post_id": "10155267498563155", "text": "Il tour in Sicilia continua, ora da Palagonia (Catania)!", "post_text": "Il tour in Sicilia continua, ora da Palagonia (Catania)!", "shared_text": "", "time": "2017-11-01 18:57:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155267498563155&id=252306033154", "link": null} +{"post_id": "10155266568378155", "text": "Vi ripropongo la mia intervista di questa mattina ad \"Agor\u00e0\" su Rai Tre, sull'attentato islamista di New York, sulle elezioni in Sicilia e sul progetto della Lega per il governo del Paese.\n\u00c8 bello confrontarmi anche con chi ha opinioni molto diverse dalle mie, spero di essere stato convincente!", "post_text": "Vi ripropongo la mia intervista di questa mattina ad \"Agor\u00e0\" su Rai Tre, sull'attentato islamista di New York, sulle elezioni in Sicilia e sul progetto della Lega per il governo del Paese.\n\u00c8 bello confrontarmi anche con chi ha opinioni molto diverse dalle mie, spero di essere stato convincente!", "shared_text": "", "time": "2017-11-01 14:03:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155266568378155&id=252306033154", "link": null} +{"post_id": "10155266200703155", "text": "Sicilia, su la testa!", "post_text": "Sicilia, su la testa!", "shared_text": "", "time": "2017-11-01 11:14:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155266200703155&id=252306033154", "link": null} +{"post_id": "10155266068298155", "text": "Da Vittoria in provincia di Ragusa, compriamo e consumiamo italiano!", "post_text": "Da Vittoria in provincia di Ragusa, compriamo e consumiamo italiano!", "shared_text": "", "time": "2017-11-01 09:53:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155266068298155&id=252306033154", "link": null} +{"post_id": "10155264170953155", "text": "La Boldrini insiste: \"Lo IUS SOLI s'ha da fare\".\nConsiglio a lei e a quelli del Pd di portarsi i sacchi a pelo, perch\u00e9 gli faremo passare Natale e Capodanno in Parlamento. La cittadinanza NON \u00e8 un REGALO!\n#NoIusSoli", "post_text": "La Boldrini insiste: \"Lo IUS SOLI s'ha da fare\".\nConsiglio a lei e a quelli del Pd di portarsi i sacchi a pelo, perch\u00e9 gli faremo passare Natale e Capodanno in Parlamento. La cittadinanza NON \u00e8 un REGALO!\n#NoIusSoli", "shared_text": "", "time": "2017-10-31 20:40:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155264170953155&id=252306033154", "link": null} +{"post_id": "10155263169908155", "text": "Solo per VOI, all'interno dell'hotel Villa Sikania, sulla splendida vista agrigentina, che da tre anni ospita 200 \"migranti\" (a 35 euro al giorno). Per la gioia dei residenti dei paesi vicini... Grazie Renzi, grazie Alfano.\n#STOPINVASIONE", "post_text": "Solo per VOI, all'interno dell'hotel Villa Sikania, sulla splendida vista agrigentina, che da tre anni ospita 200 \"migranti\" (a 35 euro al giorno). Per la gioia dei residenti dei paesi vicini... Grazie Renzi, grazie Alfano.\n#STOPINVASIONE", "shared_text": "", "time": "2017-10-31 09:28:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155263169908155&id=252306033154", "link": null} +{"post_id": "10155261728083155", "text": "Il mio intervento di apertura alla Scuola di Formazione Politica della Lega. Tanti giovani, tante competenze, tante energie da tutta Italia, tanta voglia di PARTECIPARE per CAMBIARE questo Paese! #andiamoagovernare\nwww.scuoladiformazionepolitica.it", "post_text": "Il mio intervento di apertura alla Scuola di Formazione Politica della Lega. Tanti giovani, tante competenze, tante energie da tutta Italia, tanta voglia di PARTECIPARE per CAMBIARE questo Paese! #andiamoagovernare\nwww.scuoladiformazionepolitica.it", "shared_text": "", "time": "2017-10-30 18:49:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155261728083155&id=252306033154", "link": "http://www.scuoladiformazionepolitica.it/?fbclid=IwAR3dGzzKldneZi7PnV8uWmix3Dsmbwtd2pDkNEP55NX_EzZ3DrUP1vHKQZU"} +{"post_id": "10155261460983155", "text": "Aggiornamenti su nonna Peppina! E le inviamo tutti un bacione.", "post_text": "Aggiornamenti su nonna Peppina! E le inviamo tutti un bacione.", "shared_text": "", "time": "2017-10-30 16:44:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155261460983155&id=252306033154", "link": null} +{"post_id": "10155260822158155", "text": "Ieri mattina a Calvi Risorta (Caserta) i soliti \"democratici\" dei CENTRI A-SOCIALI hanno DISTRUTTO il nostro gazebo e aggredito i nostri militanti.\nAttaccano la Lega perch\u00e9 la temono, ma non ci fermeranno!\nNon ci fate paura, ci fate SOLO PENA!", "post_text": "Ieri mattina a Calvi Risorta (Caserta) i soliti \"democratici\" dei CENTRI A-SOCIALI hanno DISTRUTTO il nostro gazebo e aggredito i nostri militanti.\nAttaccano la Lega perch\u00e9 la temono, ma non ci fermeranno!\nNon ci fate paura, ci fate SOLO PENA!", "shared_text": "", "time": "2017-10-30 13:57:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155260822158155&id=252306033154", "link": null} +{"post_id": "10155260902368155", "text": "Ora alla stazione di Palermo, il viaggio in direzione Agrigento prosegue.\nMi fate compagnia?", "post_text": "Ora alla stazione di Palermo, il viaggio in direzione Agrigento prosegue.\nMi fate compagnia?", "shared_text": "", "time": "2017-10-30 11:55:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155260902368155&id=252306033154", "link": null} +{"post_id": "10155260335163155", "text": "Buona giornata Amici.\nPazzesco, 9 ore da Trapani per raggiungere Agrigento in treno: cos\u00ec i siciliani vengono aiutati dalla politica e dal governo centrale!", "post_text": "Buona giornata Amici.\nPazzesco, 9 ore da Trapani per raggiungere Agrigento in treno: cos\u00ec i siciliani vengono aiutati dalla politica e dal governo centrale!", "shared_text": "", "time": "2017-10-30 05:59:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155260335163155&id=252306033154", "link": null} +{"post_id": "10155259272818155", "text": "Spettacolare accoglienza a Palermo! Che cosa si pu\u00f2 volere di pi\u00f9? Grazie ragazze!", "post_text": "Spettacolare accoglienza a Palermo! Che cosa si pu\u00f2 volere di pi\u00f9? Grazie ragazze!", "shared_text": "", "time": "2017-10-29 20:44:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155259272818155&id=252306033154", "link": null} +{"post_id": "10155258845943155", "text": "Una prima giornata entusiasmante, grazie ragazzi, siete il nostro Futuro!\n#SDFP2017\nwww.scuoladiformazionepolitica.it", "post_text": "Una prima giornata entusiasmante, grazie ragazzi, siete il nostro Futuro!\n#SDFP2017\nwww.scuoladiformazionepolitica.it", "shared_text": "", "time": "2017-10-29 18:20:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155258845943155&id=252306033154", "link": "http://www.scuoladiformazionepolitica.it/?fbclid=IwAR2TOd6GAofTJ1Fj60CO46yW6zTGkbiGbQ9sTyF8hfb3myZpbZtUX6G2nlY"} +{"post_id": "10155255377303155", "text": "Il solito giornalista di sinistra (tendenza caviale e champagne) mi rimprovera per il LINGUAGGIO, dice che io seminerei ODIO...\nMa in che mondo vive certa gente???\nSi sono fatti un giro su un autobus, sulla metro, in un parco giochi o in Pronto soccorso???\nVoi che cosa gli rispondereste?", "post_text": "Il solito giornalista di sinistra (tendenza caviale e champagne) mi rimprovera per il LINGUAGGIO, dice che io seminerei ODIO...\nMa in che mondo vive certa gente???\nSi sono fatti un giro su un autobus, sulla metro, in un parco giochi o in Pronto soccorso???\nVoi che cosa gli rispondereste?", "shared_text": "", "time": "2017-10-28 20:14:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155255377303155&id=252306033154", "link": null} +{"post_id": "10155254744068155", "text": "In Italia si diffondono nuovi stili di vita...!", "post_text": "In Italia si diffondono nuovi stili di vita...!", "shared_text": "", "time": "2017-10-28 15:50:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155254744068155&id=252306033154", "link": null} +{"post_id": "10155247845958155", "text": "++ PENSIONI: APPROVARE SUBITO BLOCCO ET\u00c0 E CANCELLARE LA \"RIFORMA\" FORNERO ++\n\"Peggio di noi, sempre non si arrivi ai 67anni, come vorrebbero i piddini, c'\u00e8 SOLO la Grecia... che certo non \u00e8 l'esempio di un Paese in salute!\"\nLucia Borgonzoni\n#facciamosquadra #andiamoagovernare", "post_text": "++ PENSIONI: APPROVARE SUBITO BLOCCO ET\u00c0 E CANCELLARE LA \"RIFORMA\" FORNERO ++\n\"Peggio di noi, sempre non si arrivi ai 67anni, come vorrebbero i piddini, c'\u00e8 SOLO la Grecia... che certo non \u00e8 l'esempio di un Paese in salute!\"\nLucia Borgonzoni\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-10-28 14:00:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155247845958155&id=252306033154", "link": null} +{"post_id": "10155248574318155", "text": "ANZIANI costretti a rovistare negli scarti del mercato, CLANDESTINI protestano perch\u00e9 non \"gradiscono\" il cibo...!\nUn video che vale pi\u00f9 di mille analisi. Questo nei telegiornali non lo fanno vedere, chiss\u00e0 perch\u00e9... CONDIVIDI almeno in rete.\n#primagliitaliani", "post_text": "ANZIANI costretti a rovistare negli scarti del mercato, CLANDESTINI protestano perch\u00e9 non \"gradiscono\" il cibo...!\nUn video che vale pi\u00f9 di mille analisi. Questo nei telegiornali non lo fanno vedere, chiss\u00e0 perch\u00e9... CONDIVIDI almeno in rete.\n#primagliitaliani", "shared_text": "", "time": "2017-10-27 21:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155248574318155&id=252306033154", "link": null} +{"post_id": "10155250267908155", "text": "Vi ripropongo la mia intervista di ieri sera da Formigli su LA7, le buone idee della LEGA per tutti gli italiani!\n#andiamoagovernare", "post_text": "Vi ripropongo la mia intervista di ieri sera da Formigli su LA7, le buone idee della LEGA per tutti gli italiani!\n#andiamoagovernare", "shared_text": "", "time": "2017-10-27 12:17:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155250267908155&id=252306033154", "link": null} +{"post_id": "10155246757863155", "text": "Sempre per ricordarci con chi abbiamo a che fare...\n#bastaPD #andiamoagovernare", "post_text": "Sempre per ricordarci con chi abbiamo a che fare...\n#bastaPD #andiamoagovernare", "shared_text": "", "time": "2017-10-27 08:58:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155246757863155&id=252306033154", "link": null} +{"post_id": "10155244451988155", "text": "Sequestrare ed uccidere un bimbo di 17 mesi per poi dire davanti alle tiv\u00f9 \u201ci bambini sono l\u2019anima del cuore e non si pu\u00f2 spezzare il cuore ad una famiglia\u201d.\nQuesto verme deve MARCIRE in galera!!!\nPer Tommy e per mamma Paola.", "post_text": "Sequestrare ed uccidere un bimbo di 17 mesi per poi dire davanti alle tiv\u00f9 \u201ci bambini sono l\u2019anima del cuore e non si pu\u00f2 spezzare il cuore ad una famiglia\u201d.\nQuesto verme deve MARCIRE in galera!!!\nPer Tommy e per mamma Paola.", "shared_text": "", "time": "2017-10-26 14:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155244451988155&id=252306033154", "link": null} +{"post_id": "10155245206213155", "text": "Nata sorda, grazie a un intervento questa splendida bimba sente per la prima volta la voce della mamma.\nChe tenerezza!", "post_text": "Nata sorda, grazie a un intervento questa splendida bimba sente per la prima volta la voce della mamma.\nChe tenerezza!", "shared_text": "", "time": "2017-10-25 21:30:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155245206213155&id=252306033154", "link": null} +{"post_id": "10155244954578155", "text": "STOP INVASIONE e stop Islam, l'Italia ha bisogno di lavoro, non di altri delinquenti.\nA Strasburgo in 4 minuti ho smontato tutte le EUROBALLE della sinistra scafista!\nCONDIVIDI anche tu sulla bacheca di qualche buonista, visto che NESSUN TELEGIORNALE vi far\u00e0 vedere queste immagini.", "post_text": "STOP INVASIONE e stop Islam, l'Italia ha bisogno di lavoro, non di altri delinquenti.\nA Strasburgo in 4 minuti ho smontato tutte le EUROBALLE della sinistra scafista!\nCONDIVIDI anche tu sulla bacheca di qualche buonista, visto che NESSUN TELEGIORNALE vi far\u00e0 vedere queste immagini.", "shared_text": "", "time": "2017-10-25 17:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155244954578155&id=252306033154", "link": null} +{"post_id": "10155241709708155", "text": "A giudicare dall'accoglienza ricevuta, pi\u00f9 che sul treno, il treno se l'\u00e8 preso addosso...\n#renziacasa #andiamoagovernare", "post_text": "A giudicare dall'accoglienza ricevuta, pi\u00f9 che sul treno, il treno se l'\u00e8 preso addosso...\n#renziacasa #andiamoagovernare", "shared_text": "", "time": "2017-10-24 13:10:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155241709708155&id=252306033154", "link": null} +{"post_id": "10155239549038155", "text": "Meno burocrazia statale e meno vincoli europei.\nSpendere meno, spendere meglio, politica a chilometro zero.\nPenso di essere stato chiaro oggi al TG5: dopo la straordinaria partecipazione di 5 milioni di\u2026 Altro lombardi e veneti ai referendum di ieri, \u00e8 tempo di passare dalle parole ai FATTI, con l'obiettivo di esportare questo modello in tutte le regioni italiane, da Nord a Sud.", "post_text": "Meno burocrazia statale e meno vincoli europei.\nSpendere meno, spendere meglio, politica a chilometro zero.\nPenso di essere stato chiaro oggi al TG5: dopo la straordinaria partecipazione di 5 milioni di\u2026 Altro lombardi e veneti ai referendum di ieri, \u00e8 tempo di passare dalle parole ai FATTI, con l'obiettivo di esportare questo modello in tutte le regioni italiane, da Nord a Sud.", "shared_text": "", "time": "2017-10-23 18:20:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155239549038155&id=252306033154", "link": null} +{"post_id": "10155234380288155", "text": "Il \"profugo\" spacciatore: \"Non mangiare bene, Italia SPORCO, Italia MAFIA, io vendere ERBA\".\nMa come si fa a votare ancora PD? Quando saremo al governo, ESPULSIONE IMMEDIATA per questa gente!\nFai girare! #primagliitaliani", "post_text": "Il \"profugo\" spacciatore: \"Non mangiare bene, Italia SPORCO, Italia MAFIA, io vendere ERBA\".\nMa come si fa a votare ancora PD? Quando saremo al governo, ESPULSIONE IMMEDIATA per questa gente!\nFai girare! #primagliitaliani", "shared_text": "", "time": "2017-10-22 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155234380288155&id=252306033154", "link": null} +{"post_id": "10155234376323155", "text": "Per non dimenticare da chi siamo governati...", "post_text": "Per non dimenticare da chi siamo governati...", "shared_text": "", "time": "2017-10-22 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155234376323155&id=252306033154", "link": null} +{"post_id": "10155231779513155", "text": "Mi piace cucinare a casa per i miei figli, ma stare ai fornelli in un ristorante \u00e8 un\u2019altra storia!\nIeri al Salone internazionale dell\u2019ospitalit\u00e0 professionale ho avuto l\u2019ennesima conferma che la cucina\u2026 Altro italiana \u00e8 imbattibile.\nUn saluto a ristoratori, cuochi e camerieri che ammiro per la passione che mettono in un lavoro difficilissimo!", "post_text": "Mi piace cucinare a casa per i miei figli, ma stare ai fornelli in un ristorante \u00e8 un\u2019altra storia!\nIeri al Salone internazionale dell\u2019ospitalit\u00e0 professionale ho avuto l\u2019ennesima conferma che la cucina\u2026 Altro italiana \u00e8 imbattibile.\nUn saluto a ristoratori, cuochi e camerieri che ammiro per la passione che mettono in un lavoro difficilissimo!", "shared_text": "", "time": "2017-10-21 12:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155231779513155&id=252306033154", "link": null} +{"post_id": "10155232109003155", "text": "Secondo voi una che, dopo aver mentito non solo sulla LAUREA ma anche sul diploma di maturit\u00e0, ancora INSISTE (\"Ce l'ho, dal punto di vista della sostanza ce l'ho!\") e poi, con la solita spocchia, sfreccia via\u2026 Altro sulla sua autoblu (vedere il servizio!) merita di essere ancora Ministro dell'Istruzione? Bell'esempio per i giovani italiani!\nPer fortuna, questi INCAPACI del Pd sono a fine corsa e, con il vostro aiuto, li mandiamo a casa!\n#andiamoagovernare", "post_text": "Secondo voi una che, dopo aver mentito non solo sulla LAUREA ma anche sul diploma di maturit\u00e0, ancora INSISTE (\"Ce l'ho, dal punto di vista della sostanza ce l'ho!\") e poi, con la solita spocchia, sfreccia via\u2026 Altro sulla sua autoblu (vedere il servizio!) merita di essere ancora Ministro dell'Istruzione? Bell'esempio per i giovani italiani!\nPer fortuna, questi INCAPACI del Pd sono a fine corsa e, con il vostro aiuto, li mandiamo a casa!\n#andiamoagovernare", "shared_text": "", "time": "2017-10-21 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155232109003155&id=252306033154", "link": null} +{"post_id": "10155229383848155", "text": "40MILA EURO.\n\u00c8 quanto ha dovuto spendere Graziano Stacchio in spese legali per provare la sua INNOCENZA.\nANNI di RISPARMI bruciati per aveva difeso legalmente la vita di altre persone, mettendo a rischio la\u2026 Altro propria.\nUna legge SERIA sulla legittima difesa \u00e8 necessaria in un paese NORMALE: sar\u00e0 questa una delle nostre principali missioni una volta al Governo.\n#ladifesa\u00e8semprelegittima #andiamoagovernare\nP.s. Un pensiero al caro Ermes Mattielli, che ebbi la fortuna di incontrare, e che mor\u00ec di infarto dopo aver appreso di dover risarcire le famiglia dei Rom che lo avevano derubato.", "post_text": "40MILA EURO.\n\u00c8 quanto ha dovuto spendere Graziano Stacchio in spese legali per provare la sua INNOCENZA.\nANNI di RISPARMI bruciati per aveva difeso legalmente la vita di altre persone, mettendo a rischio la\u2026 Altro propria.\nUna legge SERIA sulla legittima difesa \u00e8 necessaria in un paese NORMALE: sar\u00e0 questa una delle nostre principali missioni una volta al Governo.\n#ladifesa\u00e8semprelegittima #andiamoagovernare\nP.s. Un pensiero al caro Ermes Mattielli, che ebbi la fortuna di incontrare, e che mor\u00ec di infarto dopo aver appreso di dover risarcire le famiglia dei Rom che lo avevano derubato.", "shared_text": "", "time": "2017-10-20 10:41:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155229383848155&id=252306033154", "link": null} +{"post_id": "10155226740953155", "text": "UNA VERGOGNA!\nSe avete qualche minuto, vi prego di ascoltare e diffondere la storia di Sergio, UMILIATO e ROVINATO da uno STATO LADRO, BUROCRATE e PARASSITARIO che non paga i suoi debiti (oltre 4 MILIONI di\u2026 Altro euro)!\nLui ha tenuto duro, altri imprenditori si sono suicidati.\nNon \u00e8 un Paese civile quello che in cui le amministrazioni pubbliche trattano cos\u00ec chi fa impresa, chi rischia, chi si fida delle istituzioni.\nOnore a te, Sergio.\nQueste saranno le nostre priorit\u00e0 di governo, altro che Ius Soli!", "post_text": "UNA VERGOGNA!\nSe avete qualche minuto, vi prego di ascoltare e diffondere la storia di Sergio, UMILIATO e ROVINATO da uno STATO LADRO, BUROCRATE e PARASSITARIO che non paga i suoi debiti (oltre 4 MILIONI di\u2026 Altro euro)!\nLui ha tenuto duro, altri imprenditori si sono suicidati.\nNon \u00e8 un Paese civile quello che in cui le amministrazioni pubbliche trattano cos\u00ec chi fa impresa, chi rischia, chi si fida delle istituzioni.\nOnore a te, Sergio.\nQueste saranno le nostre priorit\u00e0 di governo, altro che Ius Soli!", "shared_text": "", "time": "2017-10-19 16:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155226740953155&id=252306033154", "link": null} +{"post_id": "10155226270448155", "text": "Questa mattina su Canale 5 credo di essere stato chiaro: se sei un ladro e ti succede qualcosa, lo sbaglio \u00e8 TUO!\n#ladifesa\u00e8semprelegittima", "post_text": "Questa mattina su Canale 5 credo di essere stato chiaro: se sei un ladro e ti succede qualcosa, lo sbaglio \u00e8 TUO!\n#ladifesa\u00e8semprelegittima", "shared_text": "", "time": "2017-10-18 12:11:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155226270448155&id=252306033154", "link": null} +{"post_id": "10155224642568155", "text": "In allegria, risorse giovani e fresche vengono a pagarci la pensione!\nROBA DA MATTI.", "post_text": "In allegria, risorse giovani e fresche vengono a pagarci la pensione!\nROBA DA MATTI.", "shared_text": "", "time": "2017-10-17 20:18:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155224642568155&id=252306033154", "link": null} +{"post_id": "10155224184528155", "text": "Modena, in 18 in classe, una sola bimba italiana.\nIntegrazione \"modello Boldrini\"...\nP.s. ATTENTI! Per voi che non siete d'accordo \u00e8 sempre pronta l'accusa di RAZZISMO.", "post_text": "Modena, in 18 in classe, una sola bimba italiana.\nIntegrazione \"modello Boldrini\"...\nP.s. ATTENTI! Per voi che non siete d'accordo \u00e8 sempre pronta l'accusa di RAZZISMO.", "shared_text": "", "time": "2017-10-17 19:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155224184528155&id=252306033154", "link": null} +{"post_id": "10155224426453155", "text": "Se ve la siete persa, vi ripropongo la mia intervista di ieri a Night Tabloid su Rai Due, un bel programma!\n#andiamoagovernare", "post_text": "Se ve la siete persa, vi ripropongo la mia intervista di ieri a Night Tabloid su Rai Due, un bel programma!\n#andiamoagovernare", "shared_text": "", "time": "2017-10-17 18:11:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155224426453155&id=252306033154", "link": null} +{"post_id": "10155223726663155", "text": "\"HANNO TENTATO DI RAPIRE MIA FIGLIA\"\nIeri vi ho parlato dell\u2019arresto di due kenioti, fratello e sorella, che hanno tentato di rapire tre bimbi da un oratorio in provincia di Monza.\nIl racconto della mamma: \"I bambini hanno pianto, io non capivo cosa stava succedendo\u201d.\nDelinquenti! Espulsione immediata e GALERA a casa loro!", "post_text": "\"HANNO TENTATO DI RAPIRE MIA FIGLIA\"\nIeri vi ho parlato dell\u2019arresto di due kenioti, fratello e sorella, che hanno tentato di rapire tre bimbi da un oratorio in provincia di Monza.\nIl racconto della mamma: \"I bambini hanno pianto, io non capivo cosa stava succedendo\u201d.\nDelinquenti! Espulsione immediata e GALERA a casa loro!", "shared_text": "", "time": "2017-10-17 12:10:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155223726663155&id=252306033154", "link": null} +{"post_id": "10155217265203155", "text": "La nostra idea di Futuro, la nostra idea di Italia.", "post_text": "La nostra idea di Futuro, la nostra idea di Italia.", "shared_text": "", "time": "2017-10-14 20:55:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155217265203155&id=252306033154", "link": null} +{"post_id": "10155216792473155", "text": "Mai visto a Vicenza!\nSiamo riusciti ad entrare, con un Live, in un albergo dove vivono (a spese nostre!) 100 immigrati.\nC'\u00e8 chi guadagna milioni di euro grazie a questi \"presunti profughi\", e spuntano affari a 5Stelle!\nChe dice il signor GRILLO?!?\nLe tiv\u00f9 nascondono questa vergogna, fate girare voi!", "post_text": "Mai visto a Vicenza!\nSiamo riusciti ad entrare, con un Live, in un albergo dove vivono (a spese nostre!) 100 immigrati.\nC'\u00e8 chi guadagna milioni di euro grazie a questi \"presunti profughi\", e spuntano affari a 5Stelle!\nChe dice il signor GRILLO?!?\nLe tiv\u00f9 nascondono questa vergogna, fate girare voi!", "shared_text": "", "time": "2017-10-14 17:22:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155216792473155&id=252306033154", "link": null} +{"post_id": "10155211803443155", "text": "Secondo voi \u00e8 normale che una famiglia che consuma ZERO paghi nella bolletta elettrica 47 EURO di tasse???", "post_text": "Secondo voi \u00e8 normale che una famiglia che consuma ZERO paghi nella bolletta elettrica 47 EURO di tasse???", "shared_text": "", "time": "2017-10-14 16:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155211803443155&id=252306033154", "link": null} +{"post_id": "10155213602228155", "text": "Video pazzesco, come siamo messi, fate girare.\nVi sembra normale che per portare via questo \"signore\" servano TRE AGENTI, che devono SUPPLICARLO di entrare in auto?\nBASTA!\nLe Forze dell'ordine devono poter\u2026 Altro lavorare tranquillamente e NORMALMENTE!\nP.s. Ma Pd e 5Stelle hanno approvato il \"reato di tortura\" che mette Carabinieri, Poliziotti e Agenti della Polizia Penitenziaria in mano ai delinquenti...\n#iostoconlapolizia", "post_text": "Video pazzesco, come siamo messi, fate girare.\nVi sembra normale che per portare via questo \"signore\" servano TRE AGENTI, che devono SUPPLICARLO di entrare in auto?\nBASTA!\nLe Forze dell'ordine devono poter\u2026 Altro lavorare tranquillamente e NORMALMENTE!\nP.s. Ma Pd e 5Stelle hanno approvato il \"reato di tortura\" che mette Carabinieri, Poliziotti e Agenti della Polizia Penitenziaria in mano ai delinquenti...\n#iostoconlapolizia", "shared_text": "", "time": "2017-10-13 13:16:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155213602228155&id=252306033154", "link": null} +{"post_id": "10155211062873155", "text": "++ LE AZIENDE CHE HANNO DELOCALIZZATO? RESTITUISCANO I SOLDI PUBBLICI RICEVUTI! ++\n\u201cLa Lega ha fatto una proposta di legge.\nE anche se va contro le norme europee - si pu\u00f2 dire? -, ce ne freghiamo! Se non sono\u2026 Altro di buon senso, dobbiamo imporre delle misure corrette per tutelare il nostro sistema produttivo e lavorativo.\u201d\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "post_text": "++ LE AZIENDE CHE HANNO DELOCALIZZATO? RESTITUISCANO I SOLDI PUBBLICI RICEVUTI! ++\n\u201cLa Lega ha fatto una proposta di legge.\nE anche se va contro le norme europee - si pu\u00f2 dire? -, ce ne freghiamo! Se non sono\u2026 Altro di buon senso, dobbiamo imporre delle misure corrette per tutelare il nostro sistema produttivo e lavorativo.\u201d\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-10-12 16:40:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155211062873155&id=252306033154", "link": null} +{"post_id": "10155206784468155", "text": "Luned\u00ec ho partecipato a \u201cBottiglie Aperte\u201d, un evento sulla scoperta dei migliori vini italiani.\nAttualmente l\u2019Italia \u00e8 il paese con la pi\u00f9 grande quantit\u00e0 di vino prodotto AL MONDO, mentre la Francia rimane il\u2026 Altro paese con il pi\u00f9 alto valore della produzione, nonostante la quantit\u00e0 prodotta sia inferiore.\nQuesto vuol dire che, mediamente, un vino francese costa pi\u00f9 di uno italiano.\nDobbiamo VALORIZZARE il nostro vino, perch\u00e9 non \u00e8 inferiore a NESSUNO.\nLa nostra sfida una volta al Governo: difendere TUTTA l\u2019agricoltura italiana, da Nord a Sud.", "post_text": "Luned\u00ec ho partecipato a \u201cBottiglie Aperte\u201d, un evento sulla scoperta dei migliori vini italiani.\nAttualmente l\u2019Italia \u00e8 il paese con la pi\u00f9 grande quantit\u00e0 di vino prodotto AL MONDO, mentre la Francia rimane il\u2026 Altro paese con il pi\u00f9 alto valore della produzione, nonostante la quantit\u00e0 prodotta sia inferiore.\nQuesto vuol dire che, mediamente, un vino francese costa pi\u00f9 di uno italiano.\nDobbiamo VALORIZZARE il nostro vino, perch\u00e9 non \u00e8 inferiore a NESSUNO.\nLa nostra sfida una volta al Governo: difendere TUTTA l\u2019agricoltura italiana, da Nord a Sud.", "shared_text": "", "time": "2017-10-11 10:50:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155206784468155&id=252306033154", "link": null} +{"post_id": "10155203442343155", "text": "Presunti \"profughi\" che picchiano i capitreno perch\u00e9 esigono di VIAGGIARE GRATIS o che si nascondono negli armadietti dei quadri elettrici delle carrozze... questa \u00e8 ormai quotidianit\u00e0 sui TRENI italiani dell'INVASIONE.\nPretendere normalit\u00e0 e sicurezza \u00e8 troppo???", "post_text": "Presunti \"profughi\" che picchiano i capitreno perch\u00e9 esigono di VIAGGIARE GRATIS o che si nascondono negli armadietti dei quadri elettrici delle carrozze... questa \u00e8 ormai quotidianit\u00e0 sui TRENI italiani dell'INVASIONE.\nPretendere normalit\u00e0 e sicurezza \u00e8 troppo???", "shared_text": "", "time": "2017-10-10 08:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155203442343155&id=252306033154", "link": null} +{"post_id": "10155203654983155", "text": "\"Risorsa\" in azione: prima d\u00e0 fuoco ad un cassonetto, poi va in escandescenza ed inveisce contro una pattuglia di Carabinieri.\nChe bella ripulita serve a questa Italia!", "post_text": "\"Risorsa\" in azione: prima d\u00e0 fuoco ad un cassonetto, poi va in escandescenza ed inveisce contro una pattuglia di Carabinieri.\nChe bella ripulita serve a questa Italia!", "shared_text": "", "time": "2017-10-09 13:00:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155203654983155&id=252306033154", "link": null} +{"post_id": "10155201046443155", "text": "Mentre i commercianti italiani lottano per la sopravvivenza tra TASSE, BUROCRAZIA e SCONTRINI, a loro tutto \u00e8 concesso.\nQuesto \u00e8 il centro di Bologna, questa \u00e8 l'Italia \"abusiva\" del PD.\nCambiare si pu\u00f2, ripulire si deve!\n#stopinvasione #bastaPD", "post_text": "Mentre i commercianti italiani lottano per la sopravvivenza tra TASSE, BUROCRAZIA e SCONTRINI, a loro tutto \u00e8 concesso.\nQuesto \u00e8 il centro di Bologna, questa \u00e8 l'Italia \"abusiva\" del PD.\nCambiare si pu\u00f2, ripulire si deve!\n#stopinvasione #bastaPD", "shared_text": "", "time": "2017-10-08 18:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155201046443155&id=252306033154", "link": null} +{"post_id": "10155196846063155", "text": "In diretta da Badia Polesine (Rovigo) per parlare di futuro, lavoro e libert\u00e0!\nE voi che fate?", "post_text": "In diretta da Badia Polesine (Rovigo) per parlare di futuro, lavoro e libert\u00e0!\nE voi che fate?", "shared_text": "", "time": "2017-10-06 21:30:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155196846063155&id=252306033154", "link": null} +{"post_id": "10155195720453155", "text": "Qualche minuto per parlare con voi!\nBasta polemiche e litigi, non vedo l'ora di avere il potere di CAMBIARE IN MEGLIO l'Italia.", "post_text": "Qualche minuto per parlare con voi!\nBasta polemiche e litigi, non vedo l'ora di avere il potere di CAMBIARE IN MEGLIO l'Italia.", "shared_text": "", "time": "2017-10-06 12:00:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155195720453155&id=252306033154", "link": null} +{"post_id": "10155193410913155", "text": "\u00c8 in lacrime, Miriam.\n79 anni e con un figlio disabile, dopo lo SFRATTO ha dovuto vendere i quadri da lei dipinti, i ricordi di una vita, per pagarsi qualche notte in un residence.\nLa signora si\u2026 Altro accontenterebbe \u201canche solo di un magazzino o di una capanna\u201d, ma niente.\nPer\u00f2 il Governo pensa bene a dare CASA e LAVORO a 75mila \u201cprofughi\u201d.\nBASTA! BASTA! BASTA!\n#primagliitaliani", "post_text": "\u00c8 in lacrime, Miriam.\n79 anni e con un figlio disabile, dopo lo SFRATTO ha dovuto vendere i quadri da lei dipinti, i ricordi di una vita, per pagarsi qualche notte in un residence.\nLa signora si\u2026 Altro accontenterebbe \u201canche solo di un magazzino o di una capanna\u201d, ma niente.\nPer\u00f2 il Governo pensa bene a dare CASA e LAVORO a 75mila \u201cprofughi\u201d.\nBASTA! BASTA! BASTA!\n#primagliitaliani", "shared_text": "", "time": "2017-10-06 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155193410913155&id=252306033154", "link": null} +{"post_id": "10155193174813155", "text": "NE AVETE SENTITO PARLARE IN QUALCHE TG NAZIONALE???\nSardegna invasa dagli SBARCHI fantasma di delinquenti nordafricani, la testimonianza dei commercianti di Cagliari: \"Mia moglie seguita da stranieri. Siamo\u2026 Altro ostaggio di algerini ubriachi e drogati\". E ora sono costretti a pagarsi una vigilanza privata.\nPer il PD TUTTO BENE, eh???\nMa che guerre ci sono in Algeria?\nUno Stato che non mette al primo posto la sicurezza dei suoi cittadini \u00e8 uno Stato fallito!\nE sabato 25 novembre sar\u00f2 anche io a CAGLIARI con tante persone PERBENE per dire: #stopinvasione!", "post_text": "NE AVETE SENTITO PARLARE IN QUALCHE TG NAZIONALE???\nSardegna invasa dagli SBARCHI fantasma di delinquenti nordafricani, la testimonianza dei commercianti di Cagliari: \"Mia moglie seguita da stranieri. Siamo\u2026 Altro ostaggio di algerini ubriachi e drogati\". E ora sono costretti a pagarsi una vigilanza privata.\nPer il PD TUTTO BENE, eh???\nMa che guerre ci sono in Algeria?\nUno Stato che non mette al primo posto la sicurezza dei suoi cittadini \u00e8 uno Stato fallito!\nE sabato 25 novembre sar\u00f2 anche io a CAGLIARI con tante persone PERBENE per dire: #stopinvasione!", "shared_text": "", "time": "2017-10-05 21:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155193174813155&id=252306033154", "link": null} +{"post_id": "10155190511078155", "text": "++ ABBASSARE LE TASSE PER RILANCIARE IL LAVORO: SOLO COS\u00cc RIPARTE L'ITALIA ++\n\"La nostra economia \u00e8 malata, e per curarla bisogna rimettere in moto il sistema immunitario del Paese per creare LAVORO.\nCome? Con\u2026 Altro la Flat Tax al 15%.\nLa nostra riforma prevede inoltre L'INVERSIONE DELL'ONERE DELLA PROVA, perch\u00e9 \u00e8 inaccettabile che in materia fiscale lo Stato abbia sempre ragione e il contribuente sempre torto.\"\n(Armando Siri)\n#facciamosquadra #andiamoagovernare\nApprofondimenti: www.tassaunica.it", "post_text": "++ ABBASSARE LE TASSE PER RILANCIARE IL LAVORO: SOLO COS\u00cc RIPARTE L'ITALIA ++\n\"La nostra economia \u00e8 malata, e per curarla bisogna rimettere in moto il sistema immunitario del Paese per creare LAVORO.\nCome? Con\u2026 Altro la Flat Tax al 15%.\nLa nostra riforma prevede inoltre L'INVERSIONE DELL'ONERE DELLA PROVA, perch\u00e9 \u00e8 inaccettabile che in materia fiscale lo Stato abbia sempre ragione e il contribuente sempre torto.\"\n(Armando Siri)\n#facciamosquadra #andiamoagovernare\nApprofondimenti: www.tassaunica.it", "shared_text": "", "time": "2017-10-05 14:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155190511078155&id=252306033154", "link": "http://www.tassaunica.it/?fbclid=IwAR0WmjScZBMBGCmlWhjGb37nzxSYVqxM7s-KjuV8M53x_QxUyg44382J-Ik"} +{"post_id": "10155191310048155", "text": "Sui fatti catalani abbiamo visto tante follie e, per l'ennesima volta, l'assordante silenzio e ipocrisia di questa Europa.\nDa Bruxelles sanzioni alla Russia perch\u00e9 \"Putin non \u00e8 democratico\" e silenzio su\u2026 Altro centinaia di cittadini malmenati perch\u00e9 chiedevano di poter votare.\nVengono prima i cittadini o i manganelli e i proiettili di gomma del potere statale che prevale su tutto e tutti?\nNon esiste!\nVengono prima la libert\u00e0 e la democrazia nel rispetto delle regole:\nLA VIOLENZA NON \u00c8 MAI LA SOLUZIONE!", "post_text": "Sui fatti catalani abbiamo visto tante follie e, per l'ennesima volta, l'assordante silenzio e ipocrisia di questa Europa.\nDa Bruxelles sanzioni alla Russia perch\u00e9 \"Putin non \u00e8 democratico\" e silenzio su\u2026 Altro centinaia di cittadini malmenati perch\u00e9 chiedevano di poter votare.\nVengono prima i cittadini o i manganelli e i proiettili di gomma del potere statale che prevale su tutto e tutti?\nNon esiste!\nVengono prima la libert\u00e0 e la democrazia nel rispetto delle regole:\nLA VIOLENZA NON \u00c8 MAI LA SOLUZIONE!", "shared_text": "", "time": "2017-10-04 18:47:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155191310048155&id=252306033154", "link": null} +{"post_id": "10155188872423155", "text": "Ci sono ITALIANI disperati costretti a vivere in auto, scantinati o edifici abbandonati.\nNel frattempo, PD e 5 Stelle regalano lavoro e casa a CLANDESTINI e ROM.\n#primagliitaliani non \u00e8 solo un hashtag, sar\u00e0 la nostra missione di governo.", "post_text": "Ci sono ITALIANI disperati costretti a vivere in auto, scantinati o edifici abbandonati.\nNel frattempo, PD e 5 Stelle regalano lavoro e casa a CLANDESTINI e ROM.\n#primagliitaliani non \u00e8 solo un hashtag, sar\u00e0 la nostra missione di governo.", "shared_text": "", "time": "2017-10-04 11:55:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155188872423155&id=252306033154", "link": null} +{"post_id": "10155188799543155", "text": "Rom, incinte e impunibili: si travestono da artiste di strada per avvicinare i turisti e fregargli il portafoglio.\nChe bello stile di vita, che splendida immagine che d\u00e0 Firenze, culla di arte e civilt\u00e0, al mondo!!!\nIl governo del Pd in questi anni se ne \u00e8 fregato, con noi al governo #tolleranzazero contro questi delinquenti.", "post_text": "Rom, incinte e impunibili: si travestono da artiste di strada per avvicinare i turisti e fregargli il portafoglio.\nChe bello stile di vita, che splendida immagine che d\u00e0 Firenze, culla di arte e civilt\u00e0, al mondo!!!\nIl governo del Pd in questi anni se ne \u00e8 fregato, con noi al governo #tolleranzazero contro questi delinquenti.", "shared_text": "", "time": "2017-10-04 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155188799543155&id=252306033154", "link": null} +{"post_id": "10155188532863155", "text": "Avete 5 minuti liberi? Guardate questo mio intervento a Rete 4 (su Catalogna, violenza, Europa e povert\u00e0 in Italia) e ditemi se sono stato abbastanza chiaro.\nP.s. #forzaNonnaPeppina!", "post_text": "Avete 5 minuti liberi? Guardate questo mio intervento a Rete 4 (su Catalogna, violenza, Europa e povert\u00e0 in Italia) e ditemi se sono stato abbastanza chiaro.\nP.s. #forzaNonnaPeppina!", "shared_text": "", "time": "2017-10-03 20:48:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155188532863155&id=252306033154", "link": null} +{"post_id": "10155186185713155", "text": "ECCO COME CI HA RIDOTTO IL PD\nNel cuore di Bologna al Parco della Montagnola, diventato teatro di violenza e spaccio di droga, per impedire l'arresto di uno di loro, le solite \"risorse\" circondano i vigili, mandandone anche uno all'ospedale.\nCHE SCHIFO! #tolleranzazero #bastapd", "post_text": "ECCO COME CI HA RIDOTTO IL PD\nNel cuore di Bologna al Parco della Montagnola, diventato teatro di violenza e spaccio di droga, per impedire l'arresto di uno di loro, le solite \"risorse\" circondano i vigili, mandandone anche uno all'ospedale.\nCHE SCHIFO! #tolleranzazero #bastapd", "shared_text": "", "time": "2017-10-03 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155186185713155&id=252306033154", "link": null} +{"post_id": "10155186286208155", "text": "Las Vegas, una strage mai vista. Almeno 50 morti, centinaia e centinaia di feriti.\nA prescindere dai legami o meno con il terrorismo islamico, la mia preghiera per le vittime dell'ennesima follia criminale e tutta la mia vicinanza al popolo americano.", "post_text": "Las Vegas, una strage mai vista. Almeno 50 morti, centinaia e centinaia di feriti.\nA prescindere dai legami o meno con il terrorismo islamico, la mia preghiera per le vittime dell'ennesima follia criminale e tutta la mia vicinanza al popolo americano.", "shared_text": "", "time": "2017-10-02 18:45:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155186286208155&id=252306033154", "link": null} +{"post_id": "10155185384953155", "text": "\"Bisogna approvare lo IUS SOLI altrimenti VINCE SALVINI\" dice la faziosa Boldrini.\nORGOGLIOSO di non aver mai mollato, con il vostro aiuto, contro i governi dell'invasione.\nOra andiamo a ridare lavoro e speranza agli italiani. Insieme si vince!\n#NoIusSoli", "post_text": "\"Bisogna approvare lo IUS SOLI altrimenti VINCE SALVINI\" dice la faziosa Boldrini.\nORGOGLIOSO di non aver mai mollato, con il vostro aiuto, contro i governi dell'invasione.\nOra andiamo a ridare lavoro e speranza agli italiani. Insieme si vince!\n#NoIusSoli", "shared_text": "", "time": "2017-10-02 12:27:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155185384953155&id=252306033154", "link": null} +{"post_id": "10155183822323155", "text": "Guardate questo video.\nI loro amichetti dei centri sociali erano tutti a far casino a Torino per il G7, oggi a Milano ne hanno lasciati quattro o cinque per lanciarmi insulti, UOVA e SPUTI.\nLascio a voi\u2026 Altro giudicare chi siano i \"fascisti\" di cui blaterano, ascoltateli bene.\nE a una mamma che gli chiede di smetterla di fare casino \"perch\u00e9 ci sono dei bambini\", la sinistroide risponde \"chi cazzo se ne frega\". Cretina.\nUn annetto di servizio civile o militare potrebbe essere una buona cura, magari imparerebbero ad avere un po' pi\u00f9 di RISPETTO per gli altri, che ne dite?", "post_text": "Guardate questo video.\nI loro amichetti dei centri sociali erano tutti a far casino a Torino per il G7, oggi a Milano ne hanno lasciati quattro o cinque per lanciarmi insulti, UOVA e SPUTI.\nLascio a voi\u2026 Altro giudicare chi siano i \"fascisti\" di cui blaterano, ascoltateli bene.\nE a una mamma che gli chiede di smetterla di fare casino \"perch\u00e9 ci sono dei bambini\", la sinistroide risponde \"chi cazzo se ne frega\". Cretina.\nUn annetto di servizio civile o militare potrebbe essere una buona cura, magari imparerebbero ad avere un po' pi\u00f9 di RISPETTO per gli altri, che ne dite?", "shared_text": "", "time": "2017-10-01 20:00:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155183822323155&id=252306033154", "link": null} +{"post_id": "10155176768123155", "text": "\"Per i \"profughi\" vitto, alloggio, lavoro e cellulare. Per me che sono cittadino italiano NIENTE e sono costretto a vivere nel bagno di un cimitero\".\nMa il signor KARABOUE ha il coraggio di fargli la morale: \"Si informi in Comune, il problema degli immigrati non c'entra niente\"......", "post_text": "\"Per i \"profughi\" vitto, alloggio, lavoro e cellulare. Per me che sono cittadino italiano NIENTE e sono costretto a vivere nel bagno di un cimitero\".\nMa il signor KARABOUE ha il coraggio di fargli la morale: \"Si informi in Comune, il problema degli immigrati non c'entra niente\"......", "shared_text": "", "time": "2017-10-01 13:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155176768123155&id=252306033154", "link": null} +{"post_id": "10155178238123155", "text": "Oggi a Torino.\nAl deficiente col cappuccio giallo farebbe bene un annetto di servizio militare.\nViva la Polizia!", "post_text": "Oggi a Torino.\nAl deficiente col cappuccio giallo farebbe bene un annetto di servizio militare.\nViva la Polizia!", "shared_text": "", "time": "2017-09-29 19:15:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155178238123155&id=252306033154", "link": null} +{"post_id": "10155178415578155", "text": "Ecco il mio intervento di ieri a Torino davanti alla platea dei consulenti del lavoro.\nLe nostre proposte:\n- abolire la legge Fornero per ridare fiato all'occupazione giovanile\n- eliminare tutta la burocrazia\u2026 Altro inutile e dannosa, dagli studi di settore allo spesometro\n- ridurre drasticamente il carico fiscale, come sta facendo Trump negli Stati Uniti, con la flat-tax al 15%.\nNon vedo l'ora di poter passare dalle parole ai fatti!\n#andiamoagovernare", "post_text": "Ecco il mio intervento di ieri a Torino davanti alla platea dei consulenti del lavoro.\nLe nostre proposte:\n- abolire la legge Fornero per ridare fiato all'occupazione giovanile\n- eliminare tutta la burocrazia\u2026 Altro inutile e dannosa, dagli studi di settore allo spesometro\n- ridurre drasticamente il carico fiscale, come sta facendo Trump negli Stati Uniti, con la flat-tax al 15%.\nNon vedo l'ora di poter passare dalle parole ai fatti!\n#andiamoagovernare", "shared_text": "", "time": "2017-09-29 18:02:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155178415578155&id=252306033154", "link": null} +{"post_id": "10155176316778155", "text": "\"Per vivere andiamo a rubare\".\nVi consiglio questa bella compilation di \"orgoglio Rom\".\nUnica soluzione per l'Italia? #tolleranzazero", "post_text": "\"Per vivere andiamo a rubare\".\nVi consiglio questa bella compilation di \"orgoglio Rom\".\nUnica soluzione per l'Italia? #tolleranzazero", "shared_text": "", "time": "2017-09-29 10:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155176316778155&id=252306033154", "link": null} +{"post_id": "10155175057828155", "text": "Maria Etruria ancora parla: \"Lo Ius Soli sar\u00e0 sicuramente la nostra priorit\u00e0 nella prossima legislatura\".\nCAPITO? Lavoro? Tasse? Povert\u00e0?\nNo, il primo impegno dei kompagni sar\u00e0 quello di REGALARE la\u2026 Altro cittadinanza a tutti gli immigrati, anche a quelli che non hanno nessuna intenzione di integrarsi.\nFortunatamente non sar\u00e0 cos\u00ec perch\u00e9 vinceremo noi.\n#NoIusSoli #bastaPD #andiamoagovernare", "post_text": "Maria Etruria ancora parla: \"Lo Ius Soli sar\u00e0 sicuramente la nostra priorit\u00e0 nella prossima legislatura\".\nCAPITO? Lavoro? Tasse? Povert\u00e0?\nNo, il primo impegno dei kompagni sar\u00e0 quello di REGALARE la\u2026 Altro cittadinanza a tutti gli immigrati, anche a quelli che non hanno nessuna intenzione di integrarsi.\nFortunatamente non sar\u00e0 cos\u00ec perch\u00e9 vinceremo noi.\n#NoIusSoli #bastaPD #andiamoagovernare", "shared_text": "", "time": "2017-09-28 21:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155175057828155&id=252306033154", "link": null} +{"post_id": "10155175753223155", "text": "++ FEDRIGA ASFALTA IL SENATORE DEL PD, E ANCHE IL CONDUTTORE DI LA7 AMMETTE: \"SCENE QUOTIDIANE DI MIGRANTI CHE NON PAGANO IL BIGLIETTO\" ++\n\"Gli scontri sui treni italiani o i quartieri radicalizzati come\u2026 Altro Molenbeek in Belgio sono segnali che mostrano i limiti dell\u2019integrazione. Alcune tipi di culture NON sono integrabili! Penso sia molto diverso il rapporto con un immigrato cristiano e uno islamico, sostenere il contrario significa NEGARE la verit\u00e0. Migranti economici? Non ho visto molti casi di denutrizione...\".\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "post_text": "++ FEDRIGA ASFALTA IL SENATORE DEL PD, E ANCHE IL CONDUTTORE DI LA7 AMMETTE: \"SCENE QUOTIDIANE DI MIGRANTI CHE NON PAGANO IL BIGLIETTO\" ++\n\"Gli scontri sui treni italiani o i quartieri radicalizzati come\u2026 Altro Molenbeek in Belgio sono segnali che mostrano i limiti dell\u2019integrazione. Alcune tipi di culture NON sono integrabili! Penso sia molto diverso il rapporto con un immigrato cristiano e uno islamico, sostenere il contrario significa NEGARE la verit\u00e0. Migranti economici? Non ho visto molti casi di denutrizione...\".\n(Massimiliano Fedriga, presidente dei deputati della Lega)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-09-28 19:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155175753223155&id=252306033154", "link": null} +{"post_id": "10155173396903155", "text": "Seguite la mia visita di questa mattina al mercato della Magliana, a Roma. Questi sono i sondaggi che mi piacciono! Dai, dai, dai! Cambiare si pu\u00f2!", "post_text": "Seguite la mia visita di questa mattina al mercato della Magliana, a Roma. Questi sono i sondaggi che mi piacciono! Dai, dai, dai! Cambiare si pu\u00f2!", "shared_text": "", "time": "2017-09-27 18:32:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155173396903155&id=252306033154", "link": null} +{"post_id": "10155173145963155", "text": "Se ieri sera non avete visto la puntata di #Cartabianca con Bianca Berlinguer su Rai Tre, ve la ripropongo qui. #andiamoagovernare, io sono pronto. E voi? Aiutatemi a diffonderla tra i vostri amici!", "post_text": "Se ieri sera non avete visto la puntata di #Cartabianca con Bianca Berlinguer su Rai Tre, ve la ripropongo qui. #andiamoagovernare, io sono pronto. E voi? Aiutatemi a diffonderla tra i vostri amici!", "shared_text": "", "time": "2017-09-27 16:56:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155173145963155&id=252306033154", "link": null} +{"post_id": "10155172548798155", "text": "++ \"CHE COLPA ABBIAMO NOI??? IO MI VERGOGNEREI DI AVER ALLEVATO TRE BESTIE!\" ++\nDichiarazioni allucinanti del padre dei due minorenni marocchini accusati dello stupro di Rimini, Susanna non sta zitta: \u201cSi rende\u2026 Altro conto dei particolari agghiaccianti? Quanto \u00e8 successo NON \u00c8 UMANO!\u201d.\n(Susanna Ceccardi, sindaco di C\u00e0scina, Pisa)\n#facciamosquadra #andiamoagovernare", "post_text": "++ \"CHE COLPA ABBIAMO NOI??? IO MI VERGOGNEREI DI AVER ALLEVATO TRE BESTIE!\" ++\nDichiarazioni allucinanti del padre dei due minorenni marocchini accusati dello stupro di Rimini, Susanna non sta zitta: \u201cSi rende\u2026 Altro conto dei particolari agghiaccianti? Quanto \u00e8 successo NON \u00c8 UMANO!\u201d.\n(Susanna Ceccardi, sindaco di C\u00e0scina, Pisa)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-09-27 14:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155172548798155&id=252306033154", "link": null} +{"post_id": "10155167474278155", "text": "Buon luned\u00ec Amici, ho voglia di parlare un po' insieme a voi.", "post_text": "Buon luned\u00ec Amici, ho voglia di parlare un po' insieme a voi.", "shared_text": "", "time": "2017-09-25 09:19:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155167474278155&id=252306033154", "link": null} +{"post_id": "10155158889793155", "text": "\"Se puoi sognarlo, puoi farlo\".\n(Walt Disney)", "post_text": "\"Se puoi sognarlo, puoi farlo\".\n(Walt Disney)", "shared_text": "", "time": "2017-09-24 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155158889793155&id=252306033154", "link": null} +{"post_id": "10155150471733155", "text": "VIDEO-VERIT\u00c0.\nAprire le porte a tutti e accogliere, accogliere, accogliere... Senza limiti e senza buonsenso.\nE cos\u00ec le nostre citt\u00e0 sono diventate sempre pi\u00f9 pericolose, in particolare per le DONNE.\nIn questo\u2026 Altro video la testimonianza a TELECAMERE NASCOSTE di due ragazze che si sono finte turiste a passeggio per Roma subendo aggressioni e minacce da balordi e molestatori di ogni tipo.\nOra o mai pi\u00f9! CAMBIARE SI PU\u00d2, CAMBIARE SI DEVE.\n#stopinvasione", "post_text": "VIDEO-VERIT\u00c0.\nAprire le porte a tutti e accogliere, accogliere, accogliere... Senza limiti e senza buonsenso.\nE cos\u00ec le nostre citt\u00e0 sono diventate sempre pi\u00f9 pericolose, in particolare per le DONNE.\nIn questo\u2026 Altro video la testimonianza a TELECAMERE NASCOSTE di due ragazze che si sono finte turiste a passeggio per Roma subendo aggressioni e minacce da balordi e molestatori di ogni tipo.\nOra o mai pi\u00f9! CAMBIARE SI PU\u00d2, CAMBIARE SI DEVE.\n#stopinvasione", "shared_text": "", "time": "2017-09-22 12:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155150471733155&id=252306033154", "link": null} +{"post_id": "10155155766873155", "text": "Il nostro emendamento per raddoppiare l'indennit\u00e0 a chi possiede un cane guida per ciechi: un piccolo GESTO CONCRETO che costa poco, ma per mille persone pu\u00f2 essere UN GRANDE AIUTO.\nE magari strappare un sorriso. Ma il Pd pensa allo Ius Soli...\n#primaglitaliani", "post_text": "Il nostro emendamento per raddoppiare l'indennit\u00e0 a chi possiede un cane guida per ciechi: un piccolo GESTO CONCRETO che costa poco, ma per mille persone pu\u00f2 essere UN GRANDE AIUTO.\nE magari strappare un sorriso. Ma il Pd pensa allo Ius Soli...\n#primaglitaliani", "shared_text": "", "time": "2017-09-21 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155155766873155&id=252306033154", "link": null} +{"post_id": "10155153408728155", "text": "A Torre Angela, periferia di Roma, un nigeriano armato di PICCONE sfascia tutto e terrorizza i residenti di un condominio.\nBell'Italia ci lasciano anni e anni di governo del PD... Questo Paese ha bisogno di una bella RIPULITA!", "post_text": "A Torre Angela, periferia di Roma, un nigeriano armato di PICCONE sfascia tutto e terrorizza i residenti di un condominio.\nBell'Italia ci lasciano anni e anni di governo del PD... Questo Paese ha bisogno di una bella RIPULITA!", "shared_text": "", "time": "2017-09-20 18:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155153408728155&id=252306033154", "link": null} +{"post_id": "10155153052223155", "text": "Ecco la mia intervista di ieri sera con Bruno Vespa a \"Porta a Porta\". Non vedo l'ora che agli italiani sia permesso di votare, io e la mia squadra siamo pronti!\nLeggo i vostri commenti, e #andiamoagovernare!", "post_text": "Ecco la mia intervista di ieri sera con Bruno Vespa a \"Porta a Porta\". Non vedo l'ora che agli italiani sia permesso di votare, io e la mia squadra siamo pronti!\nLeggo i vostri commenti, e #andiamoagovernare!", "shared_text": "", "time": "2017-09-20 12:23:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155153052223155&id=252306033154", "link": null} +{"post_id": "10155151422148155", "text": "In ottobre SI PARTE con la terza edizione!\nNon ci sono cattedre e non c'\u00e8 cravatta! C'\u00e8 una Scuola di Formazione Politica che in 2 anni ha formato centinaia di ragazzi e ragazze, uomini e donne, dai 15 ai 70\u2026 Altro anni, educando al confronto, all'apertura mentale, allo scambio di tesi, partendo dai numeri per arrivare alla realt\u00e0.\nInformati e iscriviti su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT e... #andiamoagovernare\n(Email: segreteria@scuoladiformazionepolitica.it)", "post_text": "In ottobre SI PARTE con la terza edizione!\nNon ci sono cattedre e non c'\u00e8 cravatta! C'\u00e8 una Scuola di Formazione Politica che in 2 anni ha formato centinaia di ragazzi e ragazze, uomini e donne, dai 15 ai 70\u2026 Altro anni, educando al confronto, all'apertura mentale, allo scambio di tesi, partendo dai numeri per arrivare alla realt\u00e0.\nInformati e iscriviti su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT e... #andiamoagovernare\n(Email: segreteria@scuoladiformazionepolitica.it)", "shared_text": "", "time": "2017-09-19 21:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155151422148155&id=252306033154", "link": "http://WWW.SCUOLADIFORMAZIONEPOLITICA.IT/?fbclid=IwAR0aY0lOPS9NScc6EQ0JYoqaMKl3l3Z2fF5EMzzBQvXEv9lB0t1nvk7r3JU"} +{"post_id": "10155150460333155", "text": "Terremotata e SFRATTATA dalla casetta di legno donatale dai famigliari a 95 anni!!!\nMa vi rendete conto???\nUna storia incredibile e vergognosa, che grida vendetta.\nDomani andr\u00f2 a S. Martino di Fiastra (Macerata) e cercheremo di dare una mano per risolvere questa incredibile vicenda.\nForza, nonna Peppina!", "post_text": "Terremotata e SFRATTATA dalla casetta di legno donatale dai famigliari a 95 anni!!!\nMa vi rendete conto???\nUna storia incredibile e vergognosa, che grida vendetta.\nDomani andr\u00f2 a S. Martino di Fiastra (Macerata) e cercheremo di dare una mano per risolvere questa incredibile vicenda.\nForza, nonna Peppina!", "shared_text": "", "time": "2017-09-19 19:57:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155150460333155&id=252306033154", "link": null} +{"post_id": "10155151188503155", "text": "Mentre gli altri stanno chiusi nel palazzo, io sono ORGOGLIOSO di stare con gli agenti della Polizia penitenziaria. I veri detenuti sono loro, e faccio mie le loro richieste. Quando saremo al governo diventeranno realt\u00e0.", "post_text": "Mentre gli altri stanno chiusi nel palazzo, io sono ORGOGLIOSO di stare con gli agenti della Polizia penitenziaria. I veri detenuti sono loro, e faccio mie le loro richieste. Quando saremo al governo diventeranno realt\u00e0.", "shared_text": "", "time": "2017-09-19 18:07:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155151188503155&id=252306033154", "link": null} +{"post_id": "10155140634033155", "text": "Fassino: \"Il PD lo Ius Soli LO VUOLE!\", spalleggiato dal solito regista radical-chic che inneggia al \"futuro multiculturale\" dell'Italia senza se e senza ma...\nSe provano anche solo a iniziare a pronunciare la parola \"ius soli\", blocchiamo il Parlamento.\nE se non basta bloccarlo dentro, lo blocchiamo fuori!\n#NoIusSoli", "post_text": "Fassino: \"Il PD lo Ius Soli LO VUOLE!\", spalleggiato dal solito regista radical-chic che inneggia al \"futuro multiculturale\" dell'Italia senza se e senza ma...\nSe provano anche solo a iniziare a pronunciare la parola \"ius soli\", blocchiamo il Parlamento.\nE se non basta bloccarlo dentro, lo blocchiamo fuori!\n#NoIusSoli", "shared_text": "", "time": "2017-09-19 15:41:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155140634033155&id=252306033154", "link": null} +{"post_id": "10155150272193155", "text": "L'immigrato senza biglietto zittisce la capotreno, una cittadina esasperata non ci sta e riprende tutto.\nGrazie al PD per come ha ridotto il Paese...\n\u00c8 una richiesta cos\u00ec esagerata PRETENDERE un po' di REGOLE e un po' di RISPETTO???", "post_text": "L'immigrato senza biglietto zittisce la capotreno, una cittadina esasperata non ci sta e riprende tutto.\nGrazie al PD per come ha ridotto il Paese...\n\u00c8 una richiesta cos\u00ec esagerata PRETENDERE un po' di REGOLE e un po' di RISPETTO???", "shared_text": "", "time": "2017-09-19 11:45:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155150272193155&id=252306033154", "link": null} +{"post_id": "10155148619283155", "text": "Per una volta anche i telegiornali hanno dovuto aprire con un servizio sulla Lega: merito dello splendido popolo di Pontida! #andiamoagovernare", "post_text": "Per una volta anche i telegiornali hanno dovuto aprire con un servizio sulla Lega: merito dello splendido popolo di Pontida! #andiamoagovernare", "shared_text": "", "time": "2017-09-18 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155148619283155&id=252306033154", "link": null} +{"post_id": "10155145722918155", "text": "Grazie allo splendido Popolo di #pontida17. Se voi ci siete, io ci sono! Non ci imbavaglieranno MAI! #andiamoagovernare", "post_text": "Grazie allo splendido Popolo di #pontida17. Se voi ci siete, io ci sono! Non ci imbavaglieranno MAI! #andiamoagovernare", "shared_text": "", "time": "2017-09-17 18:00:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155145722918155&id=252306033154", "link": null} +{"post_id": "10155145643478155", "text": "Grazieeeee! #Pontida17", "post_text": "Grazieeeee! #Pontida17", "shared_text": "", "time": "2017-09-17 13:19:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155145643478155&id=252306033154", "link": null} +{"post_id": "10155145384218155", "text": "Grazie Amici, siamo in tantissimi! #forzaLega", "post_text": "Grazie Amici, siamo in tantissimi! #forzaLega", "shared_text": "", "time": "2017-09-17 10:56:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155145384218155&id=252306033154", "link": null} +{"post_id": "10155145285498155", "text": "In diretta da Pontida, ci prepariamo ad una splendida giornata di libert\u00e0. #forzalega", "post_text": "In diretta da Pontida, ci prepariamo ad una splendida giornata di libert\u00e0. #forzalega", "shared_text": "", "time": "2017-09-17 09:53:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155145285498155&id=252306033154", "link": null} +{"post_id": "10155143243298155", "text": "\"Non mi sembra un Paese DEMOCRATICO quello in cui un magistrato di fatto fa fuori un partito! E Renzi? Rosicone e sciacallo!\".\nGrazie a Nicola Porro, un giornalista con la schiena dritta.", "post_text": "\"Non mi sembra un Paese DEMOCRATICO quello in cui un magistrato di fatto fa fuori un partito! E Renzi? Rosicone e sciacallo!\".\nGrazie a Nicola Porro, un giornalista con la schiena dritta.", "shared_text": "", "time": "2017-09-16 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155143243298155&id=252306033154", "link": null} +{"post_id": "10155137871468155", "text": "Ho ancora nelle orecchie e negli occhi l'affetto che mi ha dimostrato qualche sera fa lo studio di La7.\nCresciamo, le nostre idee si dimostrano giuste, milioni di italiani ci sostengono e... ci PROSCIUGANO i\u2026 Altro conti!\nUn esproprio proletario, senza precedenti.\nA fare ricorso non sar\u00e0 un singolo ma un intero popolo.\nSono certo che vinceremo, e libereremo questo Paese!\nDomani dalle 10.30 tutti a Pontida, conto su di TE! #forzaLega", "post_text": "Ho ancora nelle orecchie e negli occhi l'affetto che mi ha dimostrato qualche sera fa lo studio di La7.\nCresciamo, le nostre idee si dimostrano giuste, milioni di italiani ci sostengono e... ci PROSCIUGANO i\u2026 Altro conti!\nUn esproprio proletario, senza precedenti.\nA fare ricorso non sar\u00e0 un singolo ma un intero popolo.\nSono certo che vinceremo, e libereremo questo Paese!\nDomani dalle 10.30 tutti a Pontida, conto su di TE! #forzaLega", "shared_text": "", "time": "2017-09-16 11:35:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155137871468155&id=252306033154", "link": null} +{"post_id": "10155140512053155", "text": "Non sei d'accordo con la giornalista buonista? Per te \u00e8 pronta l'accusa di \"uomo bianco sessista\"...", "post_text": "Non sei d'accordo con la giornalista buonista? Per te \u00e8 pronta l'accusa di \"uomo bianco sessista\"...", "shared_text": "", "time": "2017-09-15 21:45:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155140512053155&id=252306033154", "link": null} +{"post_id": "10155140340678155", "text": "Amici, se pensano di imbavagliarci hanno trovato le persone sbagliate, non ci fermeranno mai!", "post_text": "Amici, se pensano di imbavagliarci hanno trovato le persone sbagliate, non ci fermeranno mai!", "shared_text": "", "time": "2017-09-15 14:44:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155140340678155&id=252306033154", "link": null} +{"post_id": "10155139832838155", "text": "\"Non possiamo pretendere che un AFRICANO sappia che in Italia su una spiaggia non possa VIOLENTARE una persona\". Cos\u00ec l'avvocato del Comitato pari opportunit\u00e0 della Corte d\u2019Appello di Salerno, tale Carmen Di GENIO...!\nOrmai in Italia siamo alla FOLLIA!\nRICOVERATELA!!!\n#stopinvasione", "post_text": "\"Non possiamo pretendere che un AFRICANO sappia che in Italia su una spiaggia non possa VIOLENTARE una persona\". Cos\u00ec l'avvocato del Comitato pari opportunit\u00e0 della Corte d\u2019Appello di Salerno, tale Carmen Di GENIO...!\nOrmai in Italia siamo alla FOLLIA!\nRICOVERATELA!!!\n#stopinvasione", "shared_text": "", "time": "2017-09-15 11:46:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155139832838155&id=252306033154", "link": null} +{"post_id": "10155139774383155", "text": "Vi ripropongo la conferenza stampa di ieri sera.\nNeanche in Turchia usano un giudice per mettere fuori legge un partito.", "post_text": "Vi ripropongo la conferenza stampa di ieri sera.\nNeanche in Turchia usano un giudice per mettere fuori legge un partito.", "shared_text": "", "time": "2017-09-15 11:03:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155139774383155&id=252306033154", "link": null} +{"post_id": "10155137073668155", "text": "Stupro di Rimini. Dopo il padre, agli arresti domiciliari e certo che i figli saranno presto liberi, ecco la madre, accusata di essere solita minacciare la vicina di casa con il coltello dicendole: \"Ti faccio scopare dai miei figli!\".\nProprio una bella famigliola.\nQuesta gente non merita di rimanere nel nostro Paese!", "post_text": "Stupro di Rimini. Dopo il padre, agli arresti domiciliari e certo che i figli saranno presto liberi, ecco la madre, accusata di essere solita minacciare la vicina di casa con il coltello dicendole: \"Ti faccio scopare dai miei figli!\".\nProprio una bella famigliola.\nQuesta gente non merita di rimanere nel nostro Paese!", "shared_text": "", "time": "2017-09-14 17:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155137073668155&id=252306033154", "link": null} +{"post_id": "10155137041613155", "text": "L'assassino di Noemi saluta e ride???\nSpero che in carcere gli facciano passare la voglia.", "post_text": "L'assassino di Noemi saluta e ride???\nSpero che in carcere gli facciano passare la voglia.", "shared_text": "", "time": "2017-09-14 12:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155137041613155&id=252306033154", "link": null} +{"post_id": "10155135312038155", "text": "++ IN 3 MINUTI ECCO COME L'EURO HA ROVINATO GLI ITALIANI E AVVANTAGGIATO LA GERMANIA. CAMBIARE SI PU\u00d2! ++\n\"Chi \u00e8 pensionato e chi \u00e8 lavoratore dipendente si \u00e8 subito accorto che entrando nell'Euro la propria\u2026 Altro pensione e il proprio stipendio valevano la met\u00e0 di prima\".\n(Giancarlo Giorgetti, deputato e vicesegretario della Lega)\n#facciamosquadra #andiamoagovernare", "post_text": "++ IN 3 MINUTI ECCO COME L'EURO HA ROVINATO GLI ITALIANI E AVVANTAGGIATO LA GERMANIA. CAMBIARE SI PU\u00d2! ++\n\"Chi \u00e8 pensionato e chi \u00e8 lavoratore dipendente si \u00e8 subito accorto che entrando nell'Euro la propria\u2026 Altro pensione e il proprio stipendio valevano la met\u00e0 di prima\".\n(Giancarlo Giorgetti, deputato e vicesegretario della Lega)\n#facciamosquadra #andiamoagovernare", "shared_text": "", "time": "2017-09-13 21:08:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155135312038155&id=252306033154", "link": null} +{"post_id": "10155134497853155", "text": "\"Io ho fatto solo un anno di galera in 30 anni che sono in Italia.\nI miei figli??? Due o tre anni e usciranno dal carcere.\"\nAl paparino dei due bravi ragazzi marocchini arrestati per lo stupro di Rimini, diamo la notizia che molto presto la Lega sar\u00e0 al governo al posto del Pd... E la FESTA FINISCE.", "post_text": "\"Io ho fatto solo un anno di galera in 30 anni che sono in Italia.\nI miei figli??? Due o tre anni e usciranno dal carcere.\"\nAl paparino dei due bravi ragazzi marocchini arrestati per lo stupro di Rimini, diamo la notizia che molto presto la Lega sar\u00e0 al governo al posto del Pd... E la FESTA FINISCE.", "shared_text": "", "time": "2017-09-13 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155134497853155&id=252306033154", "link": null} +{"post_id": "10155135212368155", "text": "Da Bello Figo a Bella Ciao, nuovi kompagni crescono!", "post_text": "Da Bello Figo a Bella Ciao, nuovi kompagni crescono!", "shared_text": "", "time": "2017-09-13 17:35:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155135212368155&id=252306033154", "link": null} +{"post_id": "10155134223373155", "text": "Aereo in ritardo di tre ore.\nDai che parlo un po' con voi!", "post_text": "Aereo in ritardo di tre ore.\nDai che parlo un po' con voi!", "shared_text": "", "time": "2017-09-13 08:15:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155134223373155&id=252306033154", "link": null} +{"post_id": "10155132591133155", "text": "++ TASSA UNICA AL 15%: COME E PERCH\u00c9 FUNZIONA ++\n\"Flat tax: il 15% per tutti \u00e8 sostenibile, equo e progressivo.\nEsiste gi\u00e0 nell'attuale sistema un'aliquota minima al 23%. Una percentuale superiore lascerebbe\u2026 Altro fuori dal beneficio fiscale oltre 30 milioni di italiani. L'Italia deve ripartire, ma senza lasciare indietro nessuno\".\n(Armando Siri)\n#facciamosquadra #andiamoagovernare\nApprofondimenti: www.tassaunica.it", "post_text": "++ TASSA UNICA AL 15%: COME E PERCH\u00c9 FUNZIONA ++\n\"Flat tax: il 15% per tutti \u00e8 sostenibile, equo e progressivo.\nEsiste gi\u00e0 nell'attuale sistema un'aliquota minima al 23%. Una percentuale superiore lascerebbe\u2026 Altro fuori dal beneficio fiscale oltre 30 milioni di italiani. L'Italia deve ripartire, ma senza lasciare indietro nessuno\".\n(Armando Siri)\n#facciamosquadra #andiamoagovernare\nApprofondimenti: www.tassaunica.it", "shared_text": "", "time": "2017-09-12 19:42:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155132591133155&id=252306033154", "link": "http://www.tassaunica.it/?fbclid=IwAR3HSS6DAseGDhLCFM4mWZhIvfxCX5t5jAUrQ-1tjiewDJpEinkxZoi_zCc"} +{"post_id": "10155129942488155", "text": "A Francofonte, vicino Siracusa, alcuni immigrati minorenni, scontenti di paghetta, cibo e vestiti, distruggono mobili e poi li lanciano dal balcone del centro che li ospita! Tranquilli, la risposta dei buonisti \u00e8 gi\u00e0 pronta: colpa di Salvini \"che semina odio\"...!", "post_text": "A Francofonte, vicino Siracusa, alcuni immigrati minorenni, scontenti di paghetta, cibo e vestiti, distruggono mobili e poi li lanciano dal balcone del centro che li ospita! Tranquilli, la risposta dei buonisti \u00e8 gi\u00e0 pronta: colpa di Salvini \"che semina odio\"...!", "shared_text": "", "time": "2017-09-11 16:06:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155129942488155&id=252306033154", "link": null} +{"post_id": "10155129417208155", "text": "Vi ripropongo la mia intervista di ieri sera con Paolo Del Debbio, davanti a migliaia di persone che, anche a Firenze, non vedono l'ora di liberare l'Italia da Renzi e dal Pd!\n#andiamoagovernare", "post_text": "Vi ripropongo la mia intervista di ieri sera con Paolo Del Debbio, davanti a migliaia di persone che, anche a Firenze, non vedono l'ora di liberare l'Italia da Renzi e dal Pd!\n#andiamoagovernare", "shared_text": "", "time": "2017-09-11 12:30:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155129417208155&id=252306033154", "link": null} +{"post_id": "10155127809743155", "text": "Firenze, Scandicci: spettacolo!\nSegui qui: https://www.facebook.com/leganord.toscana/videos/1949766775244873/", "post_text": "Firenze, Scandicci: spettacolo!\nSegui qui: https://www.facebook.com/leganord.toscana/videos/1949766775244873/", "shared_text": "", "time": "2017-09-10 20:06:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155127809743155&id=252306033154", "link": null} +{"post_id": "10155125301268155", "text": "Amici, vi saluto in diretta dalla Festa della Lega del Piemonte a Trecate (Novara). Neanche la pioggia ci ferma! State con noi!", "post_text": "Amici, vi saluto in diretta dalla Festa della Lega del Piemonte a Trecate (Novara). Neanche la pioggia ci ferma! State con noi!", "shared_text": "", "time": "2017-09-09 21:07:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155125301268155&id=252306033154", "link": null} +{"post_id": "10155125215848155", "text": "Sbarco indisturbato vicino Agrigento, gli scafisti cercano nuovi approdi. Sono stati i bagnanti a dare l'allarme per fermare i nuovi presunti \"profughi\" in fuga...", "post_text": "Sbarco indisturbato vicino Agrigento, gli scafisti cercano nuovi approdi. Sono stati i bagnanti a dare l'allarme per fermare i nuovi presunti \"profughi\" in fuga...", "shared_text": "", "time": "2017-09-09 20:40:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155125215848155&id=252306033154", "link": null} +{"post_id": "10155124174818155", "text": "VIDEO INCREDIBILE!!! QUESTO NEI TG NON VE LO FANNO VEDERE.\nRoma, pretende di salire sulla metro senza biglietto: \"Non ho soldi... Non toccarmi... Vaffanculo... TI AMMAZZO!\".\nArroganza, insulti, violenza contro\u2026 Altro gli addetti alla sicurezza e le Forze dell'ordine.\nVoglio riportare in questo Paese, col vostro aiuto, ordine, regole e RISPETTO!\n#stopinvasione", "post_text": "VIDEO INCREDIBILE!!! QUESTO NEI TG NON VE LO FANNO VEDERE.\nRoma, pretende di salire sulla metro senza biglietto: \"Non ho soldi... Non toccarmi... Vaffanculo... TI AMMAZZO!\".\nArroganza, insulti, violenza contro\u2026 Altro gli addetti alla sicurezza e le Forze dell'ordine.\nVoglio riportare in questo Paese, col vostro aiuto, ordine, regole e RISPETTO!\n#stopinvasione", "shared_text": "", "time": "2017-09-09 13:20:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155124174818155&id=252306033154", "link": null} +{"post_id": "10155119122278155", "text": "CHE VERGOGNA.\nItaliana, malata terminale, per lei a Ferrara la casa popolare non c'\u00e8, le graduatorie favoriscono sempre gli immigrati. Chi qui \u00e8 nato, ha pagato i contributi per una vita intera, dovrebbe essere favorito, non penalizzato. #primagliitaliani \u00e8 solo buon senso ma, evidentemente, non per il Pd.", "post_text": "CHE VERGOGNA.\nItaliana, malata terminale, per lei a Ferrara la casa popolare non c'\u00e8, le graduatorie favoriscono sempre gli immigrati. Chi qui \u00e8 nato, ha pagato i contributi per una vita intera, dovrebbe essere favorito, non penalizzato. #primagliitaliani \u00e8 solo buon senso ma, evidentemente, non per il Pd.", "shared_text": "", "time": "2017-09-07 18:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155119122278155&id=252306033154", "link": null} +{"post_id": "10155117052648155", "text": "\"IL GOVERNO HA VENDUTO GLI ITALIANI. Non siamo pi\u00f9 liberi di stare tranquilli nemmeno in casa nostra... Ci devono tutelare altrimenti ci tuteleremo da soli\" dice Franco, Carabiniere in congedo, a cui due\u2026 Altro delinquenti hanno aggredito la moglie Paola nel giardino della loro abitazione in provincia di Treviso.\nPAROLE SACROSANTE, da condividere.", "post_text": "\"IL GOVERNO HA VENDUTO GLI ITALIANI. Non siamo pi\u00f9 liberi di stare tranquilli nemmeno in casa nostra... Ci devono tutelare altrimenti ci tuteleremo da soli\" dice Franco, Carabiniere in congedo, a cui due\u2026 Altro delinquenti hanno aggredito la moglie Paola nel giardino della loro abitazione in provincia di Treviso.\nPAROLE SACROSANTE, da condividere.", "shared_text": "", "time": "2017-09-06 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155117052648155&id=252306033154", "link": null} +{"post_id": "10155113652673155", "text": "Buon viaggio, per sempre Amici Miei!\nAddio Gastone Moschin, ogni volta che riguardo questa scena mi rendo conto di cosa siano il Genio e il grande Cinema.", "post_text": "Buon viaggio, per sempre Amici Miei!\nAddio Gastone Moschin, ogni volta che riguardo questa scena mi rendo conto di cosa siano il Genio e il grande Cinema.", "shared_text": "", "time": "2017-09-05 10:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155113652673155&id=252306033154", "link": null} +{"post_id": "10155108841188155", "text": "Come rilanciare, ripulire e riordinare l'Italia. Dieci minuti di proposte molto pi\u00f9 applaudite rispetto a quelle del grillino Di Maio.\nAiutami a condividere. #andiamoagovernare", "post_text": "Come rilanciare, ripulire e riordinare l'Italia. Dieci minuti di proposte molto pi\u00f9 applaudite rispetto a quelle del grillino Di Maio.\nAiutami a condividere. #andiamoagovernare", "shared_text": "", "time": "2017-09-03 19:29:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155108841188155&id=252306033154", "link": null} +{"post_id": "10155105086998155", "text": "Tutti con regolare biglietto, immagino.", "post_text": "Tutti con regolare biglietto, immagino.", "shared_text": "", "time": "2017-09-02 13:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155105086998155&id=252306033154", "link": null} +{"post_id": "10155097343513155", "text": "Dopo anni di battaglie e di denunce della Lega e dei cittadini, qualcuno si accorge che al Moi di Torino ci sono clandestini e criminali. SGOMBERARE!!!", "post_text": "Dopo anni di battaglie e di denunce della Lega e dei cittadini, qualcuno si accorge che al Moi di Torino ci sono clandestini e criminali. SGOMBERARE!!!", "shared_text": "", "time": "2017-08-30 20:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155097343513155&id=252306033154", "link": null} +{"post_id": "10155091850678155", "text": "Madonnina dai riccioli d'oro con la fisarmonica.\nSpettacolo a Pinzolo!", "post_text": "Madonnina dai riccioli d'oro con la fisarmonica.\nSpettacolo a Pinzolo!", "shared_text": "", "time": "2017-08-28 20:08:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155091850678155&id=252306033154", "link": null} +{"post_id": "10155086798563155", "text": "Buonasera Amici, vi saluto in diretta da Pinzolo, dallo splendido Trentino! State con noi!", "post_text": "Buonasera Amici, vi saluto in diretta da Pinzolo, dallo splendido Trentino! State con noi!", "shared_text": "", "time": "2017-08-26 21:53:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155086798563155&id=252306033154", "link": null} +{"post_id": "10155080776368155", "text": "Oggi a Roma: questi pi\u00f9 che scappare dalla guerra ce la portano nelle nostre citt\u00e0.\nBastaaaaa!\nControlli, espulsioni, tranquillit\u00e0, a casaaaaa!\n#STOPINVASIONE", "post_text": "Oggi a Roma: questi pi\u00f9 che scappare dalla guerra ce la portano nelle nostre citt\u00e0.\nBastaaaaa!\nControlli, espulsioni, tranquillit\u00e0, a casaaaaa!\n#STOPINVASIONE", "shared_text": "", "time": "2017-08-24 16:12:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155080776368155&id=252306033154", "link": null} +{"post_id": "10155080149113155", "text": "Bottiglie e sassi contro la Polizia questa mattina all'alba da parte di un centinaio di immigrati accampati abusivamente nei giardini di Piazza Indipendenza a Roma.\nForza ragazzi, sgomberi, ordine, pulizia e ESPULSIONI!\nGli italiani sono con voi.", "post_text": "Bottiglie e sassi contro la Polizia questa mattina all'alba da parte di un centinaio di immigrati accampati abusivamente nei giardini di Piazza Indipendenza a Roma.\nForza ragazzi, sgomberi, ordine, pulizia e ESPULSIONI!\nGli italiani sono con voi.", "shared_text": "", "time": "2017-08-24 11:53:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155080149113155&id=252306033154", "link": null} +{"post_id": "10155075608158155", "text": "Ecco un VIDEO che vale pi\u00f9 di mille discorsi.\nUn Paese che non fa pi\u00f9 figli \u00e8 un Paese che muore.\nLa soluzione \u00e8 l'immigrazione? FALSO.\nGli immigrati ci pagheranno la pensione? FALSO.\nNumeri alla mano, ecco l'analisi e le proposte del professor Gian Carlo Blangiardo (Universit\u00e0 Bicocca di Milano).\nCONDIVIDI se puoi!", "post_text": "Ecco un VIDEO che vale pi\u00f9 di mille discorsi.\nUn Paese che non fa pi\u00f9 figli \u00e8 un Paese che muore.\nLa soluzione \u00e8 l'immigrazione? FALSO.\nGli immigrati ci pagheranno la pensione? FALSO.\nNumeri alla mano, ecco l'analisi e le proposte del professor Gian Carlo Blangiardo (Universit\u00e0 Bicocca di Milano).\nCONDIVIDI se puoi!", "shared_text": "", "time": "2017-08-23 09:36:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155075608158155&id=252306033154", "link": null} +{"post_id": "10155075086913155", "text": "Vi ripropongo la mia intervista di ieri sera a \"In Onda\" su LA 7. A me pare di essere stato chiaro ed efficace. Voi che ne dite?", "post_text": "Vi ripropongo la mia intervista di ieri sera a \"In Onda\" su LA 7. A me pare di essere stato chiaro ed efficace. Voi che ne dite?", "shared_text": "", "time": "2017-08-22 12:01:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155075086913155&id=252306033154", "link": null} +{"post_id": "10155067130293155", "text": "Fai girare, chi tace \u00e8 complice!\nSempre GRAZIE, ORIANA.", "post_text": "Fai girare, chi tace \u00e8 complice!\nSempre GRAZIE, ORIANA.", "shared_text": "", "time": "2017-08-19 12:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155067130293155&id=252306033154", "link": null} +{"post_id": "10155057863833155", "text": "In diretta da Ponte di Legno insieme a un mare di gente perbene, state con noi!", "post_text": "In diretta da Ponte di Legno insieme a un mare di gente perbene, state con noi!", "shared_text": "", "time": "2017-08-15 21:30:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155057863833155&id=252306033154", "link": null} +{"post_id": "10155045849078155", "text": "[DiMarted\u00ec, La7 - 23.05.2017]\nAlla Fornero invidio solo la serenit\u00e0 e la faccia tosta con cui parla di una riforma che ha gettato nella disperazione MILIONI di italiani!!!\nP.s. E Cazzola? Stessa faccia di bronzo, RICOVERATELO!!!", "post_text": "[DiMarted\u00ec, La7 - 23.05.2017]\nAlla Fornero invidio solo la serenit\u00e0 e la faccia tosta con cui parla di una riforma che ha gettato nella disperazione MILIONI di italiani!!!\nP.s. E Cazzola? Stessa faccia di bronzo, RICOVERATELO!!!", "shared_text": "", "time": "2017-08-15 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155045849078155&id=252306033154", "link": null} +{"post_id": "10155045831493155", "text": "[Quinta Colonna, Rete 4 - 05.06.2017]\nFossi io al governo domani mattina, NON concederei nemmeno mezzo metro quadro alle comunit\u00e0 islamiche finch\u00e9 non firmano, nero su bianco, che la DONNA ha gli stessi DIRITTI dell'uomo.\nCi siamo capiti??? A CASA NOSTRA FUNZIONA COS\u00cd!", "post_text": "[Quinta Colonna, Rete 4 - 05.06.2017]\nFossi io al governo domani mattina, NON concederei nemmeno mezzo metro quadro alle comunit\u00e0 islamiche finch\u00e9 non firmano, nero su bianco, che la DONNA ha gli stessi DIRITTI dell'uomo.\nCi siamo capiti??? A CASA NOSTRA FUNZIONA COS\u00cd!", "shared_text": "", "time": "2017-08-15 13:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155045831493155&id=252306033154", "link": null} +{"post_id": "10155045798943155", "text": "Tranquilli, cercava di recuperare i soldi del biglietto!", "post_text": "Tranquilli, cercava di recuperare i soldi del biglietto!", "shared_text": "", "time": "2017-08-14 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155045798943155&id=252306033154", "link": null} +{"post_id": "10154908986948155", "text": "Se fossi ministro dell'Interno?\nInnanzitutto, da domani mattina non ATTRACCA pi\u00f9 nessuna nave carica di nuovi SCHIAVI.", "post_text": "Se fossi ministro dell'Interno?\nInnanzitutto, da domani mattina non ATTRACCA pi\u00f9 nessuna nave carica di nuovi SCHIAVI.", "shared_text": "", "time": "2017-08-13 21:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154908986948155&id=252306033154", "link": null} +{"post_id": "10155045820368155", "text": "[Otto e mezzo, La7 - 15.06.2017]\nGli unici razzisti in Italia sono quelli del Pd, razzisti nei confronti degli ITALIANI!\n#noiussoli #lacittadinanzanonsiregala", "post_text": "[Otto e mezzo, La7 - 15.06.2017]\nGli unici razzisti in Italia sono quelli del Pd, razzisti nei confronti degli ITALIANI!\n#noiussoli #lacittadinanzanonsiregala", "shared_text": "", "time": "2017-08-13 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155045820368155&id=252306033154", "link": null} +{"post_id": "10154702955173155", "text": "Solo in Italia se hai fregato 30 milioni ti danno una mano, se hai un problema di 30mila euro col fisco sei finito!\n#STATOLADRO", "post_text": "Solo in Italia se hai fregato 30 milioni ti danno una mano, se hai un problema di 30mila euro col fisco sei finito!\n#STATOLADRO", "shared_text": "", "time": "2017-08-13 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154702955173155&id=252306033154", "link": null} +{"post_id": "10154979310328155", "text": "Nel dibattito sulla flat tax, una delle domande pi\u00f9 frequenti \u00e8: \"Come si passa dal sistema attuale all'aliquota unica?\".\nIn 15 minuti, il professor Maurizio Leo propone e spiega come sia possibile, rivedendo il sistema fiscale nella logica dei contribuenti, e non dello Stato, per far ripartire il lavoro.\n#andiamogovernare", "post_text": "Nel dibattito sulla flat tax, una delle domande pi\u00f9 frequenti \u00e8: \"Come si passa dal sistema attuale all'aliquota unica?\".\nIn 15 minuti, il professor Maurizio Leo propone e spiega come sia possibile, rivedendo il sistema fiscale nella logica dei contribuenti, e non dello Stato, per far ripartire il lavoro.\n#andiamogovernare", "shared_text": "", "time": "2017-08-12 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154979310328155&id=252306033154", "link": null} +{"post_id": "10155045717343155", "text": "\"Profughi\" offerti dalla coop come lavoratori a 400 euro al mese...\nDedicato a tutti quelli che \"fanno i lavori che gli italiani non vogliono fare\"...\nS\u00ec, gli italiani NON SONO SCHIAVI!", "post_text": "\"Profughi\" offerti dalla coop come lavoratori a 400 euro al mese...\nDedicato a tutti quelli che \"fanno i lavori che gli italiani non vogliono fare\"...\nS\u00ec, gli italiani NON SONO SCHIAVI!", "shared_text": "", "time": "2017-08-12 13:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155045717343155&id=252306033154", "link": null} +{"post_id": "10155045708178155", "text": "Tranquilli, diventer\u00e0 il nostro stile di vita, garantisce la Boldrini!", "post_text": "Tranquilli, diventer\u00e0 il nostro stile di vita, garantisce la Boldrini!", "shared_text": "", "time": "2017-08-12 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155045708178155&id=252306033154", "link": null} +{"post_id": "10155046011498155", "text": "Vi ripropongo questo confronto di aprile con il presidente della Ong \"Medici senza frontiere\".\nIeri le nostre denunce (ridicolizzate), oggi le inchieste... #stopinvasione", "post_text": "Vi ripropongo questo confronto di aprile con il presidente della Ong \"Medici senza frontiere\".\nIeri le nostre denunce (ridicolizzate), oggi le inchieste... #stopinvasione", "shared_text": "", "time": "2017-08-11 18:01:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155046011498155&id=252306033154", "link": null} +{"post_id": "10154979306128155", "text": "Ogni anno le aziende italiane perdono 60 giorni di lavoro solo per gli adempimenti burocratici, il 43% in pi\u00f9 della media OCSE.\nIn questo intervento, che vi consiglio, il prof. Luigi Carbone, uno dei massimi\u2026 Altro esperti italiani di semplificazione amministrativa, ci spiega come abbattere questa zavorra e tornare a correre. #andiamoagovernare", "post_text": "Ogni anno le aziende italiane perdono 60 giorni di lavoro solo per gli adempimenti burocratici, il 43% in pi\u00f9 della media OCSE.\nIn questo intervento, che vi consiglio, il prof. Luigi Carbone, uno dei massimi\u2026 Altro esperti italiani di semplificazione amministrativa, ci spiega come abbattere questa zavorra e tornare a correre. #andiamoagovernare", "shared_text": "", "time": "2017-08-11 11:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154979306128155&id=252306033154", "link": null} +{"post_id": "10155043245658155", "text": "Sentite che cosa dicono Andrea Orlando e Andrea Romano, entrambi del PD.\nIl primo, ministro della Giustizia, dice che la Lega vuole lasciare ANNEGARE le persone in mare!\nIl secondo, deputato, sostiene che voglio affondare le navi delle Ong con la gente A BORDO!\nVERGOGNOSI E BUGIARDI.\nChe dite, quereliamo???", "post_text": "Sentite che cosa dicono Andrea Orlando e Andrea Romano, entrambi del PD.\nIl primo, ministro della Giustizia, dice che la Lega vuole lasciare ANNEGARE le persone in mare!\nIl secondo, deputato, sostiene che voglio affondare le navi delle Ong con la gente A BORDO!\nVERGOGNOSI E BUGIARDI.\nChe dite, quereliamo???", "shared_text": "", "time": "2017-08-10 20:27:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155043245658155&id=252306033154", "link": null} +{"post_id": "10155040261528155", "text": "Con la signora Anna, maestra merlettaia di Burano (Venezia).\nUn lavoro di squadra straordinario e un'arte da tramandare ai nostri giovani.", "post_text": "Con la signora Anna, maestra merlettaia di Burano (Venezia).\nUn lavoro di squadra straordinario e un'arte da tramandare ai nostri giovani.", "shared_text": "", "time": "2017-08-09 13:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155040261528155&id=252306033154", "link": null} +{"post_id": "10155038450008155", "text": "La mia intervista di questa mattina a RTL 102.5, spero di essere stato chiaro!", "post_text": "La mia intervista di questa mattina a RTL 102.5, spero di essere stato chiaro!", "shared_text": "", "time": "2017-08-08 19:30:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155038450008155&id=252306033154", "link": null} +{"post_id": "10155038332623155", "text": "Secondo quel poveretto (di spirito, non di conto corrente) di Saviano io sono (quindi voi siete) razzista, ignorante, farneticante, sgrammaticato...\nSe andiamo al governo, dopo aver bloccato l'invasione, gli leviamo anche l'inutile scorta. Che dite?", "post_text": "Secondo quel poveretto (di spirito, non di conto corrente) di Saviano io sono (quindi voi siete) razzista, ignorante, farneticante, sgrammaticato...\nSe andiamo al governo, dopo aver bloccato l'invasione, gli leviamo anche l'inutile scorta. Che dite?", "shared_text": "", "time": "2017-08-08 18:23:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155038332623155&id=252306033154", "link": null} +{"post_id": "10155032720543155", "text": "Chi vuole stare con noi deve accettare un principio molto chiaro e semplice: #primagliitaliani", "post_text": "Chi vuole stare con noi deve accettare un principio molto chiaro e semplice: #primagliitaliani", "shared_text": "", "time": "2017-08-07 20:23:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155032720543155&id=252306033154", "link": null} +{"post_id": "10155034667933155", "text": "L'AVETE VISTO IN QUALCHE TG?\nDIFFONDIAMO ALMENO IN RETE!\nNapoli, zona stazione. Uomini del nostro Esercito vengono accerchiati e aggrediti da decine di immigrati che volevano impedire l'arresto di uno di\u2026 Altro loro...! Ormai siamo alla guerriglia urbana. BASTA!!!\nP.s. Solidariet\u00e0 agli abitanti del quartiere, purtroppo con il sindaco che si ritrovano, amico di clandestini e centri sociali...", "post_text": "L'AVETE VISTO IN QUALCHE TG?\nDIFFONDIAMO ALMENO IN RETE!\nNapoli, zona stazione. Uomini del nostro Esercito vengono accerchiati e aggrediti da decine di immigrati che volevano impedire l'arresto di uno di\u2026 Altro loro...! Ormai siamo alla guerriglia urbana. BASTA!!!\nP.s. Solidariet\u00e0 agli abitanti del quartiere, purtroppo con il sindaco che si ritrovano, amico di clandestini e centri sociali...", "shared_text": "", "time": "2017-08-07 09:27:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155034667933155&id=252306033154", "link": null} +{"post_id": "10154741575253155", "text": "Questo video \u00e8 di maggio. Sui legami tra Ong e scafisti la Lega aveva ragione, il coraggioso procuratore Zuccaro aveva ragione... Ma quanti insulti ci siamo presi solo pochi mesi fa da piddini e buonisti vari ed eventuali??? #bastapd #andiamoagovernare", "post_text": "Questo video \u00e8 di maggio. Sui legami tra Ong e scafisti la Lega aveva ragione, il coraggioso procuratore Zuccaro aveva ragione... Ma quanti insulti ci siamo presi solo pochi mesi fa da piddini e buonisti vari ed eventuali??? #bastapd #andiamoagovernare", "shared_text": "", "time": "2017-08-06 11:18:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154741575253155&id=252306033154", "link": null} +{"post_id": "10155020528723155", "text": "\"Risorsa\" beccata durante il blitz dell'altro giorno alla stazione Centrale di Milano, si ribella, insulta, sbava..... Come siamo ridotti (e che pazienza la nostra Polizia, a cui va sempre il nostro GRAZIE).\n#facciamopulizia #andiamoagovernare", "post_text": "\"Risorsa\" beccata durante il blitz dell'altro giorno alla stazione Centrale di Milano, si ribella, insulta, sbava..... Come siamo ridotti (e che pazienza la nostra Polizia, a cui va sempre il nostro GRAZIE).\n#facciamopulizia #andiamoagovernare", "shared_text": "", "time": "2017-08-03 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155020528723155&id=252306033154", "link": null} +{"post_id": "10155023227238155", "text": "In diretta dalla \"moschea abusiva\" di via Cavalcanti a Milano, che in estate diventa anche \"scuola islamica\".\nE i cittadini giustamente si arrabbiano.", "post_text": "In diretta dalla \"moschea abusiva\" di via Cavalcanti a Milano, che in estate diventa anche \"scuola islamica\".\nE i cittadini giustamente si arrabbiano.", "shared_text": "", "time": "2017-08-03 11:05:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155023227238155&id=252306033154", "link": null} +{"post_id": "10155021439888155", "text": "\"Controllore RAZZISTA e povero immigrato...\"\nUna parente della Boldrini???\n(http://bit.ly/2vtDF6h)", "post_text": "\"Controllore RAZZISTA e povero immigrato...\"\nUna parente della Boldrini???\n(http://bit.ly/2vtDF6h)", "shared_text": "", "time": "2017-08-03 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155021439888155&id=252306033154", "link": "https://bit.ly/2vtDF6h?fbclid=IwAR3DbwEtnifQWlD7UliXWBvPz4PxbgIEyX_97f9qQTCx4B-lFeLDji1A6WY"} +{"post_id": "10155020741658155", "text": "PAZZESCO!\nSudanese 18 anni zigzagava nel traffico di Firenze su una bici rubata. Un vigile lo ferma e tenta di immobilizzarlo, il presunto profugo, preziosa risorsa boldriniana, gli ruba la pistola e spara quattro colpi!\nPoteva essere una strage.\nChe dicono i BUONISTI? Lo capiranno che siamo OLTRE OGNI LIMITE?", "post_text": "PAZZESCO!\nSudanese 18 anni zigzagava nel traffico di Firenze su una bici rubata. Un vigile lo ferma e tenta di immobilizzarlo, il presunto profugo, preziosa risorsa boldriniana, gli ruba la pistola e spara quattro colpi!\nPoteva essere una strage.\nChe dicono i BUONISTI? Lo capiranno che siamo OLTRE OGNI LIMITE?", "shared_text": "", "time": "2017-08-02 19:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155020741658155&id=252306033154", "link": null} +{"post_id": "10155018787623155", "text": "Torino, un uomo di 82 anni picchiato con ferocia e derubato, arrestati due marocchini pluripregiudicati, uno con gi\u00e0 un decreto di espulsione sulle spalle. SCHIFOSI!\nDi delinquenti italiani ne abbiamo gi\u00e0 abbastanza, per gli altri ESPULSIONE IMMEDIATA e GALERA a casa loro!", "post_text": "Torino, un uomo di 82 anni picchiato con ferocia e derubato, arrestati due marocchini pluripregiudicati, uno con gi\u00e0 un decreto di espulsione sulle spalle. SCHIFOSI!\nDi delinquenti italiani ne abbiamo gi\u00e0 abbastanza, per gli altri ESPULSIONE IMMEDIATA e GALERA a casa loro!", "shared_text": "", "time": "2017-08-02 12:50:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155018787623155&id=252306033154", "link": null} +{"post_id": "10155015764373155", "text": "I buonisti si scandalizzano, per me Povia \u00e8 uomo e artista coraggioso! #stopinvasione", "post_text": "I buonisti si scandalizzano, per me Povia \u00e8 uomo e artista coraggioso! #stopinvasione", "shared_text": "", "time": "2017-07-31 15:01:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155015764373155&id=252306033154", "link": null} +{"post_id": "10155001208518155", "text": "Credo che questi siano 2 MINUTI efficaci, facciamoli girare!\nNon serve uno scienziato per capire questi numeri, che ne dite?\n#stopinvasione #andiamoagovernare", "post_text": "Credo che questi siano 2 MINUTI efficaci, facciamoli girare!\nNon serve uno scienziato per capire questi numeri, che ne dite?\n#stopinvasione #andiamoagovernare", "shared_text": "", "time": "2017-07-26 08:59:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10155001208518155&id=252306033154", "link": null} +{"post_id": "10154995971543155", "text": "ONORE AL POLIZIOTTO!\nVentimiglia \u00e8 in balia dei presunti profughi, ma qualche malpensante di sinistra (Boldrini?) condanna questo agente, che cerca di fare il suo lavoro in condizioni impossibili.\n#STOPINVASIONE", "post_text": "ONORE AL POLIZIOTTO!\nVentimiglia \u00e8 in balia dei presunti profughi, ma qualche malpensante di sinistra (Boldrini?) condanna questo agente, che cerca di fare il suo lavoro in condizioni impossibili.\n#STOPINVASIONE", "shared_text": "", "time": "2017-07-24 21:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154995971543155&id=252306033154", "link": null} +{"post_id": "10154992626658155", "text": "Grazie a Nicola Porro, giornalista e uomo libero, per riconoscerci che di FLAT TAX siamo stati i primi a parlare. Oggi ne discutono in tanti, dibattito comunque positivo: l'importante \u00e8 arrivare a FARLO.\nwww.tassaunica.it", "post_text": "Grazie a Nicola Porro, giornalista e uomo libero, per riconoscerci che di FLAT TAX siamo stati i primi a parlare. Oggi ne discutono in tanti, dibattito comunque positivo: l'importante \u00e8 arrivare a FARLO.\nwww.tassaunica.it", "shared_text": "", "time": "2017-07-24 13:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154992626658155&id=252306033154", "link": "http://www.tassaunica.it/?fbclid=IwAR2PToUAIHAyBp1y3KMrB1TmlpbBX-adHEpnLq3xryoDw9XeKLuvPb0cwAA"} +{"post_id": "10154988674528155", "text": "Questo video \u00e8 stato gi\u00e0 visto 11 MILIONI di volte.\nDa condividere e inviare a tutti quelli che... \"gli immigrati una volta eravamo noi\"...", "post_text": "Questo video \u00e8 stato gi\u00e0 visto 11 MILIONI di volte.\nDa condividere e inviare a tutti quelli che... \"gli immigrati una volta eravamo noi\"...", "shared_text": "", "time": "2017-07-23 13:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154988674528155&id=252306033154", "link": null} +{"post_id": "10154942473973155", "text": "Manifestazione della CGIL in Calabria. Ma i lavoratori italiani dove sono?\nP.s. Per\u00f2 allegri, \"Bella ciao\" non manca mai...", "post_text": "Manifestazione della CGIL in Calabria. Ma i lavoratori italiani dove sono?\nP.s. Per\u00f2 allegri, \"Bella ciao\" non manca mai...", "shared_text": "", "time": "2017-07-23 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154942473973155&id=252306033154", "link": null} +{"post_id": "10154982577938155", "text": "Corre a pagarvi la pensione, per fare prima prende l'autostrada... Roba da matti, roba da Italia del Pd!", "post_text": "Corre a pagarvi la pensione, per fare prima prende l'autostrada... Roba da matti, roba da Italia del Pd!", "shared_text": "", "time": "2017-07-21 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154982577938155&id=252306033154", "link": null} +{"post_id": "10154985809728155", "text": "Eccomi, pronto a rispondere alle vostre domande!", "post_text": "Eccomi, pronto a rispondere alle vostre domande!", "shared_text": "", "time": "2017-07-21 18:10:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154985809728155&id=252306033154", "link": null} +{"post_id": "10154982287853155", "text": "Cesenatico, Romagna. \"Risorsa\" boldriniana ci insegna il suo stile di vita...... TUTTI A CASA!!!", "post_text": "Cesenatico, Romagna. \"Risorsa\" boldriniana ci insegna il suo stile di vita...... TUTTI A CASA!!!", "shared_text": "", "time": "2017-07-20 21:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154982287853155&id=252306033154", "link": null} +{"post_id": "10154982362673155", "text": "Di fronte alla storia di Sandra c'\u00e8 solo da VERGOGNARSI di essere cittadini di questo Stato!\nDomani mattina, venerd\u00ec, alle 8.30 la Lega di Siena organizza un presidio sotto il Tribunale (via Camollia 85) per\u2026 Altro DIFENDERE i diritti di Sandra. E ci stiamo muovendo anche con i nostri parlamentari.\nFaccio anche un appello al presidente del Consiglio Gentiloni: qui le posizioni politiche non c'entrano, c'\u00e8 solo il buon senso, c'\u00e8 solo da AIUTARE! Fai girare!", "post_text": "Di fronte alla storia di Sandra c'\u00e8 solo da VERGOGNARSI di essere cittadini di questo Stato!\nDomani mattina, venerd\u00ec, alle 8.30 la Lega di Siena organizza un presidio sotto il Tribunale (via Camollia 85) per\u2026 Altro DIFENDERE i diritti di Sandra. E ci stiamo muovendo anche con i nostri parlamentari.\nFaccio anche un appello al presidente del Consiglio Gentiloni: qui le posizioni politiche non c'entrano, c'\u00e8 solo il buon senso, c'\u00e8 solo da AIUTARE! Fai girare!", "shared_text": "", "time": "2017-07-20 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154982362673155&id=252306033154", "link": null} +{"post_id": "10154979303243155", "text": "Tutti parlano di crisi economica, ma nessuno parla di CRISI DEMOGRAFICA: culle vuote, saldo nati-morti NEGATIVO!\nGli immigrati ci pagheranno la pensione? FALSO.\nLa soluzione \u00e8 l'immigrazione? FALSO.\nNumeri alla\u2026 Altro mano, ecco l'analisi e alcune PROPOSTE per salvarsi.\nQuesto chiarissimo intervento del prof. Gian Carlo Blangiardo (Universit\u00e0 Bicocca di Milano) dovrebbe essere trasmesso dalla Rai a reti unificate. Attendo i vostri commenti.\nCONDIVIDI se puoi!", "post_text": "Tutti parlano di crisi economica, ma nessuno parla di CRISI DEMOGRAFICA: culle vuote, saldo nati-morti NEGATIVO!\nGli immigrati ci pagheranno la pensione? FALSO.\nLa soluzione \u00e8 l'immigrazione? FALSO.\nNumeri alla\u2026 Altro mano, ecco l'analisi e alcune PROPOSTE per salvarsi.\nQuesto chiarissimo intervento del prof. Gian Carlo Blangiardo (Universit\u00e0 Bicocca di Milano) dovrebbe essere trasmesso dalla Rai a reti unificate. Attendo i vostri commenti.\nCONDIVIDI se puoi!", "shared_text": "", "time": "2017-07-20 11:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154979303243155&id=252306033154", "link": null} +{"post_id": "10154979000813155", "text": "I \"bravi ragazzi\" dei centri a-sociali hanno \"manifestato\" luned\u00ec sera a Padova per lo IUS SOLI... a suon di bottiglie molotov e bombe carta contro la Polizia!\nSolidariet\u00e0 agli agenti feriti, sono certo che\u2026 Altro con Massimo Bitonci sindaco tutto questo si sarebbe evitato. E voglio sperare che non ci siano strane connivenze con qualche consigliere comunale della nuova maggioranza di sinistra...", "post_text": "I \"bravi ragazzi\" dei centri a-sociali hanno \"manifestato\" luned\u00ec sera a Padova per lo IUS SOLI... a suon di bottiglie molotov e bombe carta contro la Polizia!\nSolidariet\u00e0 agli agenti feriti, sono certo che\u2026 Altro con Massimo Bitonci sindaco tutto questo si sarebbe evitato. E voglio sperare che non ci siano strane connivenze con qualche consigliere comunale della nuova maggioranza di sinistra...", "shared_text": "", "time": "2017-07-19 19:28:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154979000813155&id=252306033154", "link": null} +{"post_id": "10154978787343155", "text": "Immigrazione, giovani e lavoro, processi ai \"bagnini fascisti\" e libert\u00e0 di pensiero: come rispondere a una giornalista di Rai Tre! Che ne dite?", "post_text": "Immigrazione, giovani e lavoro, processi ai \"bagnini fascisti\" e libert\u00e0 di pensiero: come rispondere a una giornalista di Rai Tre! Che ne dite?", "shared_text": "", "time": "2017-07-19 11:47:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154978787343155&id=252306033154", "link": null} +{"post_id": "10154975285148155", "text": "INCREDIBILE a Cagliari.\nChe dir\u00e0 la Boldrini?\nTranquilli, appena finita la bottiglia questa \"risorsa\" correr\u00e0 a pagarvi la pensione.\n#tolleranzazero #stopinvasione", "post_text": "INCREDIBILE a Cagliari.\nChe dir\u00e0 la Boldrini?\nTranquilli, appena finita la bottiglia questa \"risorsa\" correr\u00e0 a pagarvi la pensione.\n#tolleranzazero #stopinvasione", "shared_text": "", "time": "2017-07-18 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154975285148155&id=252306033154", "link": null} +{"post_id": "10154966719733155", "text": "\"Quando \u00e8 troppo \u00e8 troppo!\". Dalla Calabria, dove questo luned\u00ec torner\u00f2 (qui le tappe: http://bit.ly/2tX5rVa), i cittadini denunciano l'INVASIONE!\nDatemi una mano! #BASTAPD #STOPINVASIONE", "post_text": "\"Quando \u00e8 troppo \u00e8 troppo!\". Dalla Calabria, dove questo luned\u00ec torner\u00f2 (qui le tappe: http://bit.ly/2tX5rVa), i cittadini denunciano l'INVASIONE!\nDatemi una mano! #BASTAPD #STOPINVASIONE", "shared_text": "", "time": "2017-07-15 19:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154966719733155&id=252306033154", "link": "https://bit.ly/2tX5rVa?fbclid=IwAR3obUreRmXJmBSMJKLxUmI-aqNHjsj6gORWXctfL7ghObjacMQpTMnxHXo"} +{"post_id": "10154957181113155", "text": "Se avete qualche minuto da dedicare, vi ripropongo la mia intervista di ieri a \"Coffee Break\" su LA7. #andiamoagovernare", "post_text": "Se avete qualche minuto da dedicare, vi ripropongo la mia intervista di ieri a \"Coffee Break\" su LA7. #andiamoagovernare", "shared_text": "", "time": "2017-07-13 11:21:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154957181113155&id=252306033154", "link": null} +{"post_id": "10154954482163155", "text": "SPETTACOLO!!! Ladispoli (Roma), buon lavoro al nuovo sindaco Alessandro Grando e sempre #primagliitaliani", "post_text": "SPETTACOLO!!! Ladispoli (Roma), buon lavoro al nuovo sindaco Alessandro Grando e sempre #primagliitaliani", "shared_text": "", "time": "2017-07-12 13:05:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154954482163155&id=252306033154", "link": null} +{"post_id": "10154952276648155", "text": "Grande interesse per il nostro progetto di governo e di futuro presentato oggi in dialogo con i giornalisti stranieri a Roma.", "post_text": "Grande interesse per il nostro progetto di governo e di futuro presentato oggi in dialogo con i giornalisti stranieri a Roma.", "shared_text": "", "time": "2017-07-11 19:05:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154952276648155&id=252306033154", "link": null} +{"post_id": "10154952179388155", "text": "Risse tra bande di risorse boldriniane nordafricane a Trento. I residenti: \"Ovunque vomito, schizzi di sangue e degrado\". Unica soluzione: BARCONE!", "post_text": "Risse tra bande di risorse boldriniane nordafricane a Trento. I residenti: \"Ovunque vomito, schizzi di sangue e degrado\". Unica soluzione: BARCONE!", "shared_text": "", "time": "2017-07-11 18:21:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154952179388155&id=252306033154", "link": null} +{"post_id": "10154951219473155", "text": "Vi ripropongo la mia intervista di ieri sera a \"In Onda\" su LA 7, che mi \u00e8 sembrata abbastanza chiara ed efficace. Voi che ne dite?", "post_text": "Vi ripropongo la mia intervista di ieri sera a \"In Onda\" su LA 7, che mi \u00e8 sembrata abbastanza chiara ed efficace. Voi che ne dite?", "shared_text": "", "time": "2017-07-11 11:05:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154951219473155&id=252306033154", "link": null} +{"post_id": "10154946724153155", "text": "Una marea di gente con la Lega ad Adro (Brescia).\nRenzi? A casaaaaa!!!!!!!", "post_text": "Una marea di gente con la Lega ad Adro (Brescia).\nRenzi? A casaaaaa!!!!!!!", "shared_text": "", "time": "2017-07-09 22:13:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154946724153155&id=252306033154", "link": null} +{"post_id": "10154946250063155", "text": "DELINQUENTI!\nRisorse boldriniane in fuga oggi pomeriggio a Bologna dopo aver rubato le valigie ad alcuni malcapitati che stavano aspettando l'autobus... Fanno i lavori che gli italiani non vogliono pi\u00f9 fare...\n#BASTAPD #STOPINVASIONE", "post_text": "DELINQUENTI!\nRisorse boldriniane in fuga oggi pomeriggio a Bologna dopo aver rubato le valigie ad alcuni malcapitati che stavano aspettando l'autobus... Fanno i lavori che gli italiani non vogliono pi\u00f9 fare...\n#BASTAPD #STOPINVASIONE", "shared_text": "", "time": "2017-07-09 20:21:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154946250063155&id=252306033154", "link": null} +{"post_id": "10154946052538155", "text": "Non dimentichiamo queste geniali parole... Non vedo l'ora di votare per mandarla a casa.", "post_text": "Non dimentichiamo queste geniali parole... Non vedo l'ora di votare per mandarla a casa.", "shared_text": "", "time": "2017-07-09 18:47:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154946052538155&id=252306033154", "link": null} +{"post_id": "10154938763663155", "text": "Minorenni ROM a SCUOLA DI SCIPPO nella metropolitana di ROMA......", "post_text": "Minorenni ROM a SCUOLA DI SCIPPO nella metropolitana di ROMA......", "shared_text": "", "time": "2017-07-07 14:19:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154938763663155&id=252306033154", "link": null} +{"post_id": "10154932181343155", "text": "Ascoltate Luca Zaia in diretta da Roma.\nRISO ai PESTICIDI per i nostri figli? NO.\nCon il CETA (trattato di libero scambio Italia-Canada) \u00e8 a rischio la tutela del Made in Italy, alla nostra sovranit\u00e0 agroalimentare noi non rinunciamo! #stopCeta #bastaPD", "post_text": "Ascoltate Luca Zaia in diretta da Roma.\nRISO ai PESTICIDI per i nostri figli? NO.\nCon il CETA (trattato di libero scambio Italia-Canada) \u00e8 a rischio la tutela del Made in Italy, alla nostra sovranit\u00e0 agroalimentare noi non rinunciamo! #stopCeta #bastaPD", "shared_text": "", "time": "2017-07-05 11:37:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154932181343155&id=252306033154", "link": null} +{"post_id": "10154932132928155", "text": "\"Pensate se in Francia avesse vinto Marine Le Pen e se avesse detto le stesse cose di Macron... si sarebbe gridato al razzismo, al fascismo, allo squadrismo\".\nOnesto. #enricocipiace #MacronNo", "post_text": "\"Pensate se in Francia avesse vinto Marine Le Pen e se avesse detto le stesse cose di Macron... si sarebbe gridato al razzismo, al fascismo, allo squadrismo\".\nOnesto. #enricocipiace #MacronNo", "shared_text": "", "time": "2017-07-05 11:26:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154932132928155&id=252306033154", "link": null} +{"post_id": "10154928748433155", "text": "Pazzesco. L'italiano paga, l'immigrato no.\nGrazie a questo ragazzo che ha documentato la REALT\u00c0 e, come ha chiesto, anche noi condividiamo.\n#BastaPD, basta razzismo verso gli italiani!", "post_text": "Pazzesco. L'italiano paga, l'immigrato no.\nGrazie a questo ragazzo che ha documentato la REALT\u00c0 e, come ha chiesto, anche noi condividiamo.\n#BastaPD, basta razzismo verso gli italiani!", "shared_text": "", "time": "2017-07-04 13:39:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154928748433155&id=252306033154", "link": null} +{"post_id": "10154926293303155", "text": "Ennesima rivolta oggi nel cuore di Prato, pare che i deperitissimi ospiti non gradiscano le regole del centro di accoglienza, tra cui gli orari di ingresso e di uscita...... MA BASTA!!!\nQuesto \u00e8 il risultato\u2026 Altro di 4 anni di governi PD... Letta, Renzi, Gentiloni... INCAPACI e COMPLICI!\nDatemi una mano e con noi sar\u00e0 #STOPINVASIONE, riprendiamoci le nostre citt\u00e0!", "post_text": "Ennesima rivolta oggi nel cuore di Prato, pare che i deperitissimi ospiti non gradiscano le regole del centro di accoglienza, tra cui gli orari di ingresso e di uscita...... MA BASTA!!!\nQuesto \u00e8 il risultato\u2026 Altro di 4 anni di governi PD... Letta, Renzi, Gentiloni... INCAPACI e COMPLICI!\nDatemi una mano e con noi sar\u00e0 #STOPINVASIONE, riprendiamoci le nostre citt\u00e0!", "shared_text": "", "time": "2017-07-03 20:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154926293303155&id=252306033154", "link": null} +{"post_id": "10154922288558155", "text": "12 minuti di energia e di emozioni, gioved\u00ec sera al Modena Park, grazie Vasco!\nP.s. Immagini by Matteo Salvini, abbiate pazienza...", "post_text": "12 minuti di energia e di emozioni, gioved\u00ec sera al Modena Park, grazie Vasco!\nP.s. Immagini by Matteo Salvini, abbiate pazienza...", "shared_text": "", "time": "2017-07-02 14:50:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154922288558155&id=252306033154", "link": null} +{"post_id": "10154908967253155", "text": "Altro che ius soli... Ecco le nostre priorit\u00e0. #andiamoagovernare", "post_text": "Altro che ius soli... Ecco le nostre priorit\u00e0. #andiamoagovernare", "shared_text": "", "time": "2017-06-29 10:48:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154908967253155&id=252306033154", "link": null} +{"post_id": "10154909045133155", "text": "Poi il PD si interroga sulle cause della sconfitta... Questo video vale pi\u00f9 di mille analisi.\nUn abbraccio alla signora Silvana e al signor Giuseppe. #tolleranzazero #andiamoagovernare", "post_text": "Poi il PD si interroga sulle cause della sconfitta... Questo video vale pi\u00f9 di mille analisi.\nUn abbraccio alla signora Silvana e al signor Giuseppe. #tolleranzazero #andiamoagovernare", "shared_text": "", "time": "2017-06-28 19:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154909045133155&id=252306033154", "link": null} +{"post_id": "10154907554773155", "text": "In diretta da Bruxelles, seguite il mio intervento al convegno \"Oltre l'Unione europea: un nuovo modello di cooperazione tra nazioni sovrane\", organizzato dal nostro gruppo \"Europa delle Nazioni e della Libert\u00e0\".", "post_text": "In diretta da Bruxelles, seguite il mio intervento al convegno \"Oltre l'Unione europea: un nuovo modello di cooperazione tra nazioni sovrane\", organizzato dal nostro gruppo \"Europa delle Nazioni e della Libert\u00e0\".", "shared_text": "", "time": "2017-06-28 12:09:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154907554773155&id=252306033154", "link": null} +{"post_id": "10154907453238155", "text": "Vi ripropongo la mia intervista di ieri sera con Bruno Vespa a \"Porta a Porta\", dove ho potuto spiegare, spero con chiarezza, le nostre proposte per il governo del Paese.\n#andiamoagovernare", "post_text": "Vi ripropongo la mia intervista di ieri sera con Bruno Vespa a \"Porta a Porta\", dove ho potuto spiegare, spero con chiarezza, le nostre proposte per il governo del Paese.\n#andiamoagovernare", "shared_text": "", "time": "2017-06-28 10:41:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154907453238155&id=252306033154", "link": null} +{"post_id": "10154901520733155", "text": "In diretta da Genova con #buccisindaco!!!", "post_text": "In diretta da Genova con #buccisindaco!!!", "shared_text": "", "time": "2017-06-26 18:26:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154901520733155&id=252306033154", "link": null} +{"post_id": "10154900688043155", "text": "Per me la politica \u00e8 sudore, ascolto, passione, \u00e8 fare 200 incontri elettorali, \u00e8 consumarsi la suola delle scarpe, non solo tv o Facebook. E i risultati poi arrivano. Renzi? Lo candidiamo a conduttore di 'Chi l'ha visto?' per la prossima stagione. #andiamoagovernare", "post_text": "Per me la politica \u00e8 sudore, ascolto, passione, \u00e8 fare 200 incontri elettorali, \u00e8 consumarsi la suola delle scarpe, non solo tv o Facebook. E i risultati poi arrivano. Renzi? Lo candidiamo a conduttore di 'Chi l'ha visto?' per la prossima stagione. #andiamoagovernare", "shared_text": "", "time": "2017-06-26 13:21:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154900688043155&id=252306033154", "link": null} +{"post_id": "10154900541018155", "text": "GRAZIE Amici! Qualche minuto per commentare con voi gli storici ballottaggi di ieri. #andiamoagovernare", "post_text": "GRAZIE Amici! Qualche minuto per commentare con voi gli storici ballottaggi di ieri. #andiamoagovernare", "shared_text": "", "time": "2017-06-26 10:56:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154900541018155&id=252306033154", "link": null} +{"post_id": "10154899443363155", "text": "Genova citt\u00e0 libera!!! E non solo, vittorie incredibili.\nGRAZIE!!! #andiamoagovernare", "post_text": "Genova citt\u00e0 libera!!! E non solo, vittorie incredibili.\nGRAZIE!!! #andiamoagovernare", "shared_text": "", "time": "2017-06-26 00:32:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154899443363155&id=252306033154", "link": null} +{"post_id": "10154893914303155", "text": "Liberiamo L'Aquila da un sistema di affari e di potere, di mancata ricostruzione, di periferie e frazioni dimenticate, facciamo lavorare le imprese aquilane! Questa domenica si vota #BiondiSindaco!\nP.s. Ancora\u2026 Altro grazie ai ragazzi di \"Noi con Salvini\" che due settimane fa, al loro esordio, hanno preso quasi il 7%! Dai! Avanti fino alle 11 di domani sera, fino all'ultimo voto!", "post_text": "Liberiamo L'Aquila da un sistema di affari e di potere, di mancata ricostruzione, di periferie e frazioni dimenticate, facciamo lavorare le imprese aquilane! Questa domenica si vota #BiondiSindaco!\nP.s. Ancora\u2026 Altro grazie ai ragazzi di \"Noi con Salvini\" che due settimane fa, al loro esordio, hanno preso quasi il 7%! Dai! Avanti fino alle 11 di domani sera, fino all'ultimo voto!", "shared_text": "", "time": "2017-06-24 17:30:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154893914303155&id=252306033154", "link": null} +{"post_id": "10154891651548155", "text": "Questa domenica tocca a VOI!\nInvia a 5 amici! Se si vince, Gentiloni, Renzi, Boschi e Boldrini piangono!\n#iovoto #bastaPD #primagliitaliani", "post_text": "Questa domenica tocca a VOI!\nInvia a 5 amici! Se si vince, Gentiloni, Renzi, Boschi e Boldrini piangono!\n#iovoto #bastaPD #primagliitaliani", "shared_text": "", "time": "2017-06-23 22:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154891651548155&id=252306033154", "link": null} +{"post_id": "10154891898058155", "text": "In diretta da La Spezia, dai che #sicambia anche qui!\n#25giugno #stopinvasione", "post_text": "In diretta da La Spezia, dai che #sicambia anche qui!\n#25giugno #stopinvasione", "shared_text": "", "time": "2017-06-23 21:28:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154891898058155&id=252306033154", "link": null} +{"post_id": "10154891157888155", "text": "In diretta dal quartiere Le Lavatrici - Pegli 3 di Genova, una delle tante periferie dimenticate dai sindaci di sinistra.\nEntriamo nelle case, ascoltiamo, risolviamo.\n#25giugno #pdacasa", "post_text": "In diretta dal quartiere Le Lavatrici - Pegli 3 di Genova, una delle tante periferie dimenticate dai sindaci di sinistra.\nEntriamo nelle case, ascoltiamo, risolviamo.\n#25giugno #pdacasa", "shared_text": "", "time": "2017-06-23 16:22:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154891157888155&id=252306033154", "link": null} +{"post_id": "10154890445443155", "text": "Domenica #iovoto! E tu? Hai gi\u00e0 convinto 5 amici ad andare?\nPer citt\u00e0 pi\u00f9 SICURE, pi\u00f9 PULITE, pi\u00f9 GIUSTE. #bastaPD #primagliitaliani", "post_text": "Domenica #iovoto! E tu? Hai gi\u00e0 convinto 5 amici ad andare?\nPer citt\u00e0 pi\u00f9 SICURE, pi\u00f9 PULITE, pi\u00f9 GIUSTE. #bastaPD #primagliitaliani", "shared_text": "", "time": "2017-06-23 16:19:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154890445443155&id=252306033154", "link": null} +{"post_id": "10154890802418155", "text": "\"Salvini come Hitler\"... \"Salvini \u00e8 un cretino\"... \"Salvini semina odio su Facebook\"... Le DELIRANTI accuse ieri in diretta su Rai Due da Santoro, idiozie pagate anche da voi col Canone.\nVERGOGNA!\nPerch\u00e9 ci insultano cos\u00ec? Hanno paura?\nChe dite, quereliamo? Io direi di s\u00ec.", "post_text": "\"Salvini come Hitler\"... \"Salvini \u00e8 un cretino\"... \"Salvini semina odio su Facebook\"... Le DELIRANTI accuse ieri in diretta su Rai Due da Santoro, idiozie pagate anche da voi col Canone.\nVERGOGNA!\nPerch\u00e9 ci insultano cos\u00ec? Hanno paura?\nChe dite, quereliamo? Io direi di s\u00ec.", "shared_text": "", "time": "2017-06-23 13:49:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154890802418155&id=252306033154", "link": null} +{"post_id": "10154885176873155", "text": "Se ne parlava da dieci anni, Massimo Bitonci gli sgomberi dei campi Rom li ha promessi ma poi li ha anche FATTI. E i padovani lo sanno.\nQuesta domenica #25giugno AVANTI CON BITONCI!", "post_text": "Se ne parlava da dieci anni, Massimo Bitonci gli sgomberi dei campi Rom li ha promessi ma poi li ha anche FATTI. E i padovani lo sanno.\nQuesta domenica #25giugno AVANTI CON BITONCI!", "shared_text": "", "time": "2017-06-21 19:11:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154885176873155&id=252306033154", "link": null} +{"post_id": "10154881372458155", "text": "La mia intervista di questa mattina a RADIO 24. Se domenica vinciamo a Genova, che \u00e8 sempre stata governata dalla sinistra, Gentiloni SALTA.", "post_text": "La mia intervista di questa mattina a RADIO 24. Se domenica vinciamo a Genova, che \u00e8 sempre stata governata dalla sinistra, Gentiloni SALTA.", "shared_text": "", "time": "2017-06-20 17:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154881372458155&id=252306033154", "link": null} +{"post_id": "10154878241923155", "text": "Non auguro a nessuno ci\u00f2 che ha dovuto subire questa ragazza siriana. Lei la cittadinanza la merita certamente pi\u00f9 di alcuni nati in Italia, soprattutto di certi politici che vorrebbero regalarla come biglietto omaggio.", "post_text": "Non auguro a nessuno ci\u00f2 che ha dovuto subire questa ragazza siriana. Lei la cittadinanza la merita certamente pi\u00f9 di alcuni nati in Italia, soprattutto di certi politici che vorrebbero regalarla come biglietto omaggio.", "shared_text": "", "time": "2017-06-20 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154878241923155&id=252306033154", "link": null} +{"post_id": "10154878310428155", "text": "Visto che monsignor Galantino, segretario dei vescovi italiani, fa politica attaccando la Lega e le (a suo dire) \"IGNOBILI GAZZARRE\" in Parlamento, lo invito a un confronto pubblico. Proporrei due soluzioni: o\u2026 Altro la Chiesa accoglie GRATIS rinunciando agli introiti sull'immigrazione oppure Galantino si fa da parte, magari anche dimettendosi.\n#noiussoli #lacittadinanzanonsiregala", "post_text": "Visto che monsignor Galantino, segretario dei vescovi italiani, fa politica attaccando la Lega e le (a suo dire) \"IGNOBILI GAZZARRE\" in Parlamento, lo invito a un confronto pubblico. Proporrei due soluzioni: o\u2026 Altro la Chiesa accoglie GRATIS rinunciando agli introiti sull'immigrazione oppure Galantino si fa da parte, magari anche dimettendosi.\n#noiussoli #lacittadinanzanonsiregala", "shared_text": "", "time": "2017-06-19 20:00:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154878310428155&id=252306033154", "link": null} +{"post_id": "10154876019713155", "text": "Stazione di Verona, quante belle risorse immigrate...\nLa ripuliamo con Sboarina Sindaco! #25giugno", "post_text": "Stazione di Verona, quante belle risorse immigrate...\nLa ripuliamo con Sboarina Sindaco! #25giugno", "shared_text": "", "time": "2017-06-18 18:23:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154876019713155&id=252306033154", "link": null} +{"post_id": "10154865961783155", "text": "Quando la Guardia di finanza entra nei campi Rom, trova pi\u00f9 soldi, pi\u00f9 oro, pi\u00f9 orologi, pi\u00f9 macchine e pi\u00f9 contanti di tutto i presenti nello studio di \"Di Marted\u00ec\". La casa se la possono permettere anche\u2026 Altro loro, e se sono italiani si mettono in fila per una casa popolare come fanno tutti gli altri cittadini.\nUn po' di regole, un po' di ordine, un po' di giustizia, zero tolleranza verso i furbi. Sbaglio?\n#25giugno #PDacasa", "post_text": "Quando la Guardia di finanza entra nei campi Rom, trova pi\u00f9 soldi, pi\u00f9 oro, pi\u00f9 orologi, pi\u00f9 macchine e pi\u00f9 contanti di tutto i presenti nello studio di \"Di Marted\u00ec\". La casa se la possono permettere anche\u2026 Altro loro, e se sono italiani si mettono in fila per una casa popolare come fanno tutti gli altri cittadini.\nUn po' di regole, un po' di ordine, un po' di giustizia, zero tolleranza verso i furbi. Sbaglio?\n#25giugno #PDacasa", "shared_text": "", "time": "2017-06-17 16:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154865961783155&id=252306033154", "link": null} +{"post_id": "10154869387253155", "text": "Quartiere San Teodoro di Genova: spaccio, furti, occupazioni abusive delle case, una frana incombente da anni...\nE il PD cosa ha fatto?", "post_text": "Quartiere San Teodoro di Genova: spaccio, furti, occupazioni abusive delle case, una frana incombente da anni...\nE il PD cosa ha fatto?", "shared_text": "", "time": "2017-06-16 15:44:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154869387253155&id=252306033154", "link": null} +{"post_id": "10154868693108155", "text": "Gli unici razzisti in Italia sono quelli del Pd, razzisti nei confronti degli ITALIANI!\n#noiussoli #lacittadinanzanonsiregala", "post_text": "Gli unici razzisti in Italia sono quelli del Pd, razzisti nei confronti degli ITALIANI!\n#noiussoli #lacittadinanzanonsiregala", "shared_text": "", "time": "2017-06-16 11:54:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154868693108155&id=252306033154", "link": null} +{"post_id": "10154867389383155", "text": "La cittadinanza italiana non \u00e8 il biglietto di un luna park!\nO vi vanno bene \"nuovi italiani\" come quello di questo video che dice: \"La donna \u00e8 sottomessa, ma lei lo vuole, invece l'uomo pu\u00f2 fare quello che vuole\"?\n#noiussoli #lacittadinanzanonsiregala #renziacasa", "post_text": "La cittadinanza italiana non \u00e8 il biglietto di un luna park!\nO vi vanno bene \"nuovi italiani\" come quello di questo video che dice: \"La donna \u00e8 sottomessa, ma lei lo vuole, invece l'uomo pu\u00f2 fare quello che vuole\"?\n#noiussoli #lacittadinanzanonsiregala #renziacasa", "shared_text": "", "time": "2017-06-16 08:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154867389383155&id=252306033154", "link": null} +{"post_id": "10154866703958155", "text": "VERGOGNOSO!!!\nCon 3 milioni di italiani poveri e 3 milioni di italiani disoccupati, il PD pensa a REGALARE la cittadinanza agli immigrati! LEGA, unica speranza! #noiussoli #lacittadinanzanonsiregala", "post_text": "VERGOGNOSO!!!\nCon 3 milioni di italiani poveri e 3 milioni di italiani disoccupati, il PD pensa a REGALARE la cittadinanza agli immigrati! LEGA, unica speranza! #noiussoli #lacittadinanzanonsiregala", "shared_text": "", "time": "2017-06-15 15:59:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154866703958155&id=252306033154", "link": null} +{"post_id": "10154866148803155", "text": "Oggi lo Stato (che \u00e8 il PRIMO LADRO) a chi produce arriva a chiedere fino al 70%! La tassa unica funziona in 40 Paesi nel mondo, \u00e8 nel programma di Theresa May e di Donald Trump. Anche in Italia serve una RIVOLUZIONE FISCALE, altro che cambiare nome a Equitalia!\nNumeri e risposte a tutte le vostre domande su: WWW.TASSAUNICA.IT", "post_text": "Oggi lo Stato (che \u00e8 il PRIMO LADRO) a chi produce arriva a chiedere fino al 70%! La tassa unica funziona in 40 Paesi nel mondo, \u00e8 nel programma di Theresa May e di Donald Trump. Anche in Italia serve una RIVOLUZIONE FISCALE, altro che cambiare nome a Equitalia!\nNumeri e risposte a tutte le vostre domande su: WWW.TASSAUNICA.IT", "shared_text": "", "time": "2017-06-15 12:06:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154866148803155&id=252306033154", "link": "http://WWW.TASSAUNICA.IT/?fbclid=IwAR3FYNSWYJjt0lS7pcI9tUWpUxFNOA5FjMDLD4oenx0XuP5ehSrfPeDdmTc"} +{"post_id": "10154865982203155", "text": "Benvenuti a \"ZINGARAUTO\": ricambi e CONCESSIONARIA, con Mercedes e Audi a prezzi stracciati. Tranquilli! \"Sono regolari, ma non facciamo fattura, sono intestate a mia madre\", dice il venditore...\nROBA DA MATTI.\n#tolleranzazero, altro che finanziamenti per casa e lavoro ai Rom!", "post_text": "Benvenuti a \"ZINGARAUTO\": ricambi e CONCESSIONARIA, con Mercedes e Audi a prezzi stracciati. Tranquilli! \"Sono regolari, ma non facciamo fattura, sono intestate a mia madre\", dice il venditore...\nROBA DA MATTI.\n#tolleranzazero, altro che finanziamenti per casa e lavoro ai Rom!", "shared_text": "", "time": "2017-06-15 10:20:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154865982203155&id=252306033154", "link": null} +{"post_id": "10154863850693155", "text": "Equitalia? Renzi le ha solo cambiato nome, per fregarci meglio, ma gli italiani non sono scemi.\nFinch\u00e9 lo Stato \u00e8 il primo a NON PAGARE migliaia di suoi fornitori e a non restituire i rimborsi IVA e IRPEF in tempi decenti, COME SI PERMETTE di entrare nei conti correnti dei cittadini?\nBASTA #STATOLADRO!\n#25giugno #renziacasa", "post_text": "Equitalia? Renzi le ha solo cambiato nome, per fregarci meglio, ma gli italiani non sono scemi.\nFinch\u00e9 lo Stato \u00e8 il primo a NON PAGARE migliaia di suoi fornitori e a non restituire i rimborsi IVA e IRPEF in tempi decenti, COME SI PERMETTE di entrare nei conti correnti dei cittadini?\nBASTA #STATOLADRO!\n#25giugno #renziacasa", "shared_text": "", "time": "2017-06-14 19:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154863850693155&id=252306033154", "link": null} +{"post_id": "10154858466603155", "text": "La mia scommessa di allargare la battaglia e la proposta della Lega non solo non penalizza il Nord ma anzi coinvolge tanti nuovi elettori, in tutte le regioni, e questo mi riempie di emozione.\nGRAZIE a tutti\u2026 Altro gli italiani che ci hanno dato fiducia, da Nord a Sud!\nGirer\u00f2 citt\u00e0 per citt\u00e0, mercato per mercato, quartiere popolare per quartiere popolare per confermare e aumentare questa fiducia, nel nostro progetto e nei nostri sindaci, per i ballottaggi del #25giugno\nP.s. ALLA FACCIA DI RENZI che fissa date estive per far votare il minor numero di persone possibile...", "post_text": "La mia scommessa di allargare la battaglia e la proposta della Lega non solo non penalizza il Nord ma anzi coinvolge tanti nuovi elettori, in tutte le regioni, e questo mi riempie di emozione.\nGRAZIE a tutti\u2026 Altro gli italiani che ci hanno dato fiducia, da Nord a Sud!\nGirer\u00f2 citt\u00e0 per citt\u00e0, mercato per mercato, quartiere popolare per quartiere popolare per confermare e aumentare questa fiducia, nel nostro progetto e nei nostri sindaci, per i ballottaggi del #25giugno\nP.s. ALLA FACCIA DI RENZI che fissa date estive per far votare il minor numero di persone possibile...", "shared_text": "", "time": "2017-06-14 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154858466603155&id=252306033154", "link": null} +{"post_id": "10154862910738155", "text": "Da domani sar\u00f2 impegnato in un nuovo giro in decine e decine di piazze, con l'ambizione di riportare a votare ai ballottaggi del 25 giugno almeno una parte di quella met\u00e0 di elettori che ha perso la speranza e rimane a casa.\nTroverete tutte le informazioni su questa Pagina (sezione Eventi). Cambiare si pu\u00f2!", "post_text": "Da domani sar\u00f2 impegnato in un nuovo giro in decine e decine di piazze, con l'ambizione di riportare a votare ai ballottaggi del 25 giugno almeno una parte di quella met\u00e0 di elettori che ha perso la speranza e rimane a casa.\nTroverete tutte le informazioni su questa Pagina (sezione Eventi). Cambiare si pu\u00f2!", "shared_text": "", "time": "2017-06-14 15:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154862910738155&id=252306033154", "link": null} +{"post_id": "10154862966178155", "text": "Floris mi ha chiesto: \"Perch\u00e9 la Lega piace?\". Io ho dato la mia risposta. Secondo voi, perch\u00e9?", "post_text": "Floris mi ha chiesto: \"Perch\u00e9 la Lega piace?\". Io ho dato la mia risposta. Secondo voi, perch\u00e9?", "shared_text": "", "time": "2017-06-14 11:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154862966178155&id=252306033154", "link": null} +{"post_id": "10154860466248155", "text": "Cos\u00ec mi disse un missionario: \"Salvini, date a noi questi 4 MILIARDI, e noi in Africa costruiamo pozzi d'acqua, strade, ospedali\". Spesi in Italia sono soldi che arricchiscono la malavita organizzata e ci\u2026 Altro riempiono di nuovi schiavi, tutti giovani e maschi, sottratti allo sviluppo dei loro Paesi d'origine.\nChe cosa c'\u00e8 di \"umanitario\" in questa invasione?", "post_text": "Cos\u00ec mi disse un missionario: \"Salvini, date a noi questi 4 MILIARDI, e noi in Africa costruiamo pozzi d'acqua, strade, ospedali\". Spesi in Italia sono soldi che arricchiscono la malavita organizzata e ci\u2026 Altro riempiono di nuovi schiavi, tutti giovani e maschi, sottratti allo sviluppo dei loro Paesi d'origine.\nChe cosa c'\u00e8 di \"umanitario\" in questa invasione?", "shared_text": "", "time": "2017-06-13 20:36:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154860466248155&id=252306033154", "link": null} +{"post_id": "10154860218788155", "text": "Con la sconfitta del sindaco del Pd e di Renzi a Lampedusa, l'ipocrisia della sinistra si \u00e8 scontrata con la vita reale. Ricordo una mamma: \"S\u00ec bene l'accoglienza, i premi, il viaggio da Obama... ma se poi devo spendere 20mila euro per partorire perch\u00e9 sull'isola non ci sono servizi all'altezza...\".\n#primagliitaliani", "post_text": "Con la sconfitta del sindaco del Pd e di Renzi a Lampedusa, l'ipocrisia della sinistra si \u00e8 scontrata con la vita reale. Ricordo una mamma: \"S\u00ec bene l'accoglienza, i premi, il viaggio da Obama... ma se poi devo spendere 20mila euro per partorire perch\u00e9 sull'isola non ci sono servizi all'altezza...\".\n#primagliitaliani", "shared_text": "", "time": "2017-06-13 18:38:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154860218788155&id=252306033154", "link": null} +{"post_id": "10154858507143155", "text": "Il 25 giugno investirete 5 minuti per scegliere il vostro sindaco? Cambiare si pu\u00f2!", "post_text": "Il 25 giugno investirete 5 minuti per scegliere il vostro sindaco? Cambiare si pu\u00f2!", "shared_text": "", "time": "2017-06-13 16:13:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154858507143155&id=252306033154", "link": null} +{"post_id": "10154860158158155", "text": "Renzi dice che ha vinto le elezioni, e che il governo Gentiloni durer\u00e0 fino al 2018.\nQuelli del PD non conoscono la vergogna.\n#stopinvasione #elezionisubito #25giugno", "post_text": "Renzi dice che ha vinto le elezioni, e che il governo Gentiloni durer\u00e0 fino al 2018.\nQuelli del PD non conoscono la vergogna.\n#stopinvasione #elezionisubito #25giugno", "shared_text": "", "time": "2017-06-13 11:45:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154860158158155&id=252306033154", "link": null} +{"post_id": "10154852417558155", "text": "Il Partito delle Poltrone vuole rinviare le elezioni all'anno prossimo... Che gentaglia in Parlamento: a casa!!!\nDOMANI SI VOTA LEGA.", "post_text": "Il Partito delle Poltrone vuole rinviare le elezioni all'anno prossimo... Che gentaglia in Parlamento: a casa!!!\nDOMANI SI VOTA LEGA.", "shared_text": "", "time": "2017-06-10 19:13:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154852417558155&id=252306033154", "link": null} +{"post_id": "10154849964733155", "text": "Da San Siro con Davide Van de Sfroos!", "post_text": "Da San Siro con Davide Van de Sfroos!", "shared_text": "", "time": "2017-06-09 23:07:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154849964733155&id=252306033154", "link": null} +{"post_id": "10154848575793155", "text": "Questo \u00e8 il modello a 5 Stelle...\nAi ROM 800 euro per affittare ai casa, ai ROMANI un calcio nel sedere!\nDomenica quando votate nel vostro Comune, pensateci!\nLEGA, unica speranza! #primagliitaliani", "post_text": "Questo \u00e8 il modello a 5 Stelle...\nAi ROM 800 euro per affittare ai casa, ai ROMANI un calcio nel sedere!\nDomenica quando votate nel vostro Comune, pensateci!\nLEGA, unica speranza! #primagliitaliani", "shared_text": "", "time": "2017-06-09 15:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154848575793155&id=252306033154", "link": null} +{"post_id": "10154848762713155", "text": "In diretta dalla periferia di Alessandria, quartiere Cristo, fra case popolari occupate (indovinate da chi...), autobus presi a sassate e spaccio di droga.\nA casa il PD, pulizia!!!", "post_text": "In diretta dalla periferia di Alessandria, quartiere Cristo, fra case popolari occupate (indovinate da chi...), autobus presi a sassate e spaccio di droga.\nA casa il PD, pulizia!!!", "shared_text": "", "time": "2017-06-09 14:13:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154848762713155&id=252306033154", "link": null} +{"post_id": "10154848283198155", "text": "Io gliel'ho detto in faccia, ma no, lui non si vergogna. Agli italiani massacrati dalla legge Fornero ZERO SCUSE!", "post_text": "Io gliel'ho detto in faccia, ma no, lui non si vergogna. Agli italiani massacrati dalla legge Fornero ZERO SCUSE!", "shared_text": "", "time": "2017-06-09 12:54:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154848283198155&id=252306033154", "link": null} +{"post_id": "10154846369398155", "text": "Quattro proposte di buon senso (che quelli del Pd fanno comunque fatica a capire):\n1) in Italia viene preso solo il 4% dei ladri e dei rapinatori: serve sostenere e dare pi\u00f9 risorse alle nostre FORZE dell'\u2026 AltroORDINE\n2) la galera dev'essere galera: come in Austria, obbligo per chi viene condannato in via definitiva di LAVORARE IN CARCERE, in modo da ripagare dei costi sostenuti dallo Stato\n3) i detenuti STRANIERI devono essere rispediti a scontare la pena a casa loro!\n4) serve una legge NORMALE (non le follie di Renzi e amici) sulla legittima difesa, che \u00e8 sempre legittima!", "post_text": "Quattro proposte di buon senso (che quelli del Pd fanno comunque fatica a capire):\n1) in Italia viene preso solo il 4% dei ladri e dei rapinatori: serve sostenere e dare pi\u00f9 risorse alle nostre FORZE dell'\u2026 AltroORDINE\n2) la galera dev'essere galera: come in Austria, obbligo per chi viene condannato in via definitiva di LAVORARE IN CARCERE, in modo da ripagare dei costi sostenuti dallo Stato\n3) i detenuti STRANIERI devono essere rispediti a scontare la pena a casa loro!\n4) serve una legge NORMALE (non le follie di Renzi e amici) sulla legittima difesa, che \u00e8 sempre legittima!", "shared_text": "", "time": "2017-06-09 10:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154846369398155&id=252306033154", "link": null} +{"post_id": "10154846787693155", "text": "Da Verona qualche minuto insieme a voi!", "post_text": "Da Verona qualche minuto insieme a voi!", "shared_text": "", "time": "2017-06-08 22:03:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154846787693155&id=252306033154", "link": null} +{"post_id": "10154846167383155", "text": "INCREDIBILE!\nI giocatori dell'Arabia Saudita in trasferta in Australia si rifiutano di partecipare al minuto di silenzio per le vittime di Londra...!\nChe dialogo si pu\u00f2 avere con questo Islam???\nVERGOGNATEVI!\nP.s. Fate girare, nessuna tiv\u00f9 far\u00e0 vedere queste immagini.", "post_text": "INCREDIBILE!\nI giocatori dell'Arabia Saudita in trasferta in Australia si rifiutano di partecipare al minuto di silenzio per le vittime di Londra...!\nChe dialogo si pu\u00f2 avere con questo Islam???\nVERGOGNATEVI!\nP.s. Fate girare, nessuna tiv\u00f9 far\u00e0 vedere queste immagini.", "shared_text": "", "time": "2017-06-08 18:14:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154846167383155&id=252306033154", "link": null} +{"post_id": "10154845797273155", "text": "I POLTRONARI votano contro la legge elettorale e vogliono rinviare le elezioni.\nChe schifo!!!\nCoi problemi che hanno gli italiani, fra immigrazione, tasse e disoccupazione, c'\u00e8 chi pensa solo alla poltrona. #elezionisubito", "post_text": "I POLTRONARI votano contro la legge elettorale e vogliono rinviare le elezioni.\nChe schifo!!!\nCoi problemi che hanno gli italiani, fra immigrazione, tasse e disoccupazione, c'\u00e8 chi pensa solo alla poltrona. #elezionisubito", "shared_text": "", "time": "2017-06-08 14:28:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154845797273155&id=252306033154", "link": null} +{"post_id": "10154838942588155", "text": "Moschee finanziate con i soldi del Qatar! ROBA DA MATTI!\nCon la Lega al governo, nemmeno MEZZO METRO QUADRO a chi \u00e8 anche lontanamente sospettabile di fiancheggiare il terrorismo islamico!", "post_text": "Moschee finanziate con i soldi del Qatar! ROBA DA MATTI!\nCon la Lega al governo, nemmeno MEZZO METRO QUADRO a chi \u00e8 anche lontanamente sospettabile di fiancheggiare il terrorismo islamico!", "shared_text": "", "time": "2017-06-07 14:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154838942588155&id=252306033154", "link": null} +{"post_id": "10154838840148155", "text": "Solo un TARATO MENTALE pu\u00f2 sostenere che la legittima difesa \u00e8 legittima solo di notte...\nAiutatemi a liberare l'Italia dall'IDIOZIA del Pd!", "post_text": "Solo un TARATO MENTALE pu\u00f2 sostenere che la legittima difesa \u00e8 legittima solo di notte...\nAiutatemi a liberare l'Italia dall'IDIOZIA del Pd!", "shared_text": "", "time": "2017-06-07 08:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154838840148155&id=252306033154", "link": null} +{"post_id": "10154838923533155", "text": "\"CREDEVO nell'Europa, ma questo sistema di integrazione ha FALLITO\".\nAscoltate la testimonianza di questo ragazzo che vive a Londra e che ha avuto la fortuna di salvarsi dall'ultima strage in nome di Allah.\nSolo i CIECHI o i COMPLICI non vedono la realt\u00e0!", "post_text": "\"CREDEVO nell'Europa, ma questo sistema di integrazione ha FALLITO\".\nAscoltate la testimonianza di questo ragazzo che vive a Londra e che ha avuto la fortuna di salvarsi dall'ultima strage in nome di Allah.\nSolo i CIECHI o i COMPLICI non vedono la realt\u00e0!", "shared_text": "", "time": "2017-06-06 21:35:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154838923533155&id=252306033154", "link": null} +{"post_id": "10154839591198155", "text": "Immagini incredibili...\nLITIGAVANO PER DECIDERE CHI DOVEVA PAGARVI LA PENSIONE?\nEnnesima rissa tra \"risorse\" bivaccanti questa mattina alla stazione di Padova.\n1) Se vi piace questo bel modello di immigrazione\u2026 Altro senza regole e senza controlli, smettete di leggere e uscite da questa Pagina, vi troverete meglio su quelle di Renzi, Boldrini e piddini vari.\n2) Se invece vi fa schifo, questa domenica, dalle 7 alle 23, avete un'arma: il VOTO.\nPer Massimo Bitonci a Padova, e in tutti i comuni dove si vota, per i sindaci sostenuti dalla Lega e da Noi con Salvini, da Nord a Sud.\nIo ce la metto tutta, datemi una mano anche voi!\n#tolleranzazero #primagliitaliani", "post_text": "Immagini incredibili...\nLITIGAVANO PER DECIDERE CHI DOVEVA PAGARVI LA PENSIONE?\nEnnesima rissa tra \"risorse\" bivaccanti questa mattina alla stazione di Padova.\n1) Se vi piace questo bel modello di immigrazione\u2026 Altro senza regole e senza controlli, smettete di leggere e uscite da questa Pagina, vi troverete meglio su quelle di Renzi, Boldrini e piddini vari.\n2) Se invece vi fa schifo, questa domenica, dalle 7 alle 23, avete un'arma: il VOTO.\nPer Massimo Bitonci a Padova, e in tutti i comuni dove si vota, per i sindaci sostenuti dalla Lega e da Noi con Salvini, da Nord a Sud.\nIo ce la metto tutta, datemi una mano anche voi!\n#tolleranzazero #primagliitaliani", "shared_text": "", "time": "2017-06-06 18:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154839591198155&id=252306033154", "link": null} +{"post_id": "10154839175908155", "text": "Fra terroristi con passaporto italiano e mafiosi che vogliono uscire di galera, io non mi arrendo: tutti a casa!!!", "post_text": "Fra terroristi con passaporto italiano e mafiosi che vogliono uscire di galera, io non mi arrendo: tutti a casa!!!", "shared_text": "", "time": "2017-06-06 13:25:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154839175908155&id=252306033154", "link": null} +{"post_id": "10154838912083155", "text": "Fossi io al governo domani mattina, NON concederei nemmeno mezzo metro quadro alle comunit\u00e0 islamiche finch\u00e9 non firmano, nero su bianco, che la DONNA ha gli stessi DIRITTI dell'uomo.\nCi siamo capiti??? A CASA NOSTRA FUNZIONA COS\u00cd!", "post_text": "Fossi io al governo domani mattina, NON concederei nemmeno mezzo metro quadro alle comunit\u00e0 islamiche finch\u00e9 non firmano, nero su bianco, che la DONNA ha gli stessi DIRITTI dell'uomo.\nCi siamo capiti??? A CASA NOSTRA FUNZIONA COS\u00cd!", "shared_text": "", "time": "2017-06-06 12:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154838912083155&id=252306033154", "link": null} +{"post_id": "10154836797343155", "text": "Tanta splendida gente incontrata lo scorso weekend in Lombardia, in Emilia, in Romagna e in Veneto!\n#questadomenica #votalega #votanoiconsalvini", "post_text": "Tanta splendida gente incontrata lo scorso weekend in Lombardia, in Emilia, in Romagna e in Veneto!\n#questadomenica #votalega #votanoiconsalvini", "shared_text": "", "time": "2017-06-05 17:53:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154836797343155&id=252306033154", "link": null} +{"post_id": "10154820570683155", "text": "BASTA SPRECONI!\nPensare di aumentare l'IVA in un momento di crisi economica \u00e8 da RICOVERO COATTO!\nSe si obbligassero tutte le venti regioni italiane, comprese quelle a statuto speciale, a spendere la stessa cifra per fare la stessa cosa si risparmierebbero 21 MILIARDI all'anno!", "post_text": "BASTA SPRECONI!\nPensare di aumentare l'IVA in un momento di crisi economica \u00e8 da RICOVERO COATTO!\nSe si obbligassero tutte le venti regioni italiane, comprese quelle a statuto speciale, a spendere la stessa cifra per fare la stessa cosa si risparmierebbero 21 MILIARDI all'anno!", "shared_text": "", "time": "2017-06-05 16:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154820570683155&id=252306033154", "link": null} +{"post_id": "10154830404578155", "text": "Insieme a voi per capire se... la Juve vince???", "post_text": "Insieme a voi per capire se... la Juve vince???", "shared_text": "", "time": "2017-06-03 20:23:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154830404578155&id=252306033154", "link": null} +{"post_id": "10154826397058155", "text": "In diretta da Marliana (Pistoia), albergo 3 stelle per 48 presunti profughi.....\nAlla faccia nostra! E vogliono pure aver ragione.\n#stopinvasione", "post_text": "In diretta da Marliana (Pistoia), albergo 3 stelle per 48 presunti profughi.....\nAlla faccia nostra! E vogliono pure aver ragione.\n#stopinvasione", "shared_text": "", "time": "2017-06-02 12:01:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154826397058155&id=252306033154", "link": null} +{"post_id": "10154823552133155", "text": "\"Lei Salvini non \u00e8 SERIO, faccia la persona SERIA!\" dice il giornalistone del Corriere...\nSolo perch\u00e9 per me la DIFESA \u00e8 sempre legittima.\nMa come si permette?\nE questo dovrebbe essere \"super partes\"?\nSi candidi con la Boldrini e si faccia eleggere!", "post_text": "\"Lei Salvini non \u00e8 SERIO, faccia la persona SERIA!\" dice il giornalistone del Corriere...\nSolo perch\u00e9 per me la DIFESA \u00e8 sempre legittima.\nMa come si permette?\nE questo dovrebbe essere \"super partes\"?\nSi candidi con la Boldrini e si faccia eleggere!", "shared_text": "", "time": "2017-06-01 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154823552133155&id=252306033154", "link": null} +{"post_id": "10154823607243155", "text": "Al mercato di Monza, spettacolo! Tanta gente che ha voglia di cambiare.\nAnche tu puoi dare una mano, con il tuo voto! #11giugno", "post_text": "Al mercato di Monza, spettacolo! Tanta gente che ha voglia di cambiare.\nAnche tu puoi dare una mano, con il tuo voto! #11giugno", "shared_text": "", "time": "2017-06-01 13:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154823607243155&id=252306033154", "link": null} +{"post_id": "10154823371333155", "text": "DA VOMITO!!!\nSe avete qualche minuto da investire, vale la pena vedere questo servizio.\nAltro che accoglienza, questo \u00e8 sfruttamento dello schiavismo per far MANGIARE le solite coop!\nMinniti, Gentiloni,\u2026 Altro prefetti: SVEGLIA!\nSe non se ne occuper\u00e0 qualcuno delle istituzioni, andr\u00f2 io personalmente al Centro immigrati di Foggia e chieder\u00f2 di SIGILLARE questa VERGOGNA!", "post_text": "DA VOMITO!!!\nSe avete qualche minuto da investire, vale la pena vedere questo servizio.\nAltro che accoglienza, questo \u00e8 sfruttamento dello schiavismo per far MANGIARE le solite coop!\nMinniti, Gentiloni,\u2026 Altro prefetti: SVEGLIA!\nSe non se ne occuper\u00e0 qualcuno delle istituzioni, andr\u00f2 io personalmente al Centro immigrati di Foggia e chieder\u00f2 di SIGILLARE questa VERGOGNA!", "shared_text": "", "time": "2017-06-01 11:13:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154823371333155&id=252306033154", "link": null} +{"post_id": "10154817483763155", "text": "Al purtroppo famigerato ex Villaggio olimpico di Torino, dove sono stato anche io molte volte, AGGRESSIONE in diretta alla troupe di \"Quinta Colonna\"!\nQui vivono abusivamente centinaia di presunti \"profughi\" e\u2026 Altro \"richiedenti asilo\".\nSei italiano? Se entri, rischi che ti mandino all'ospedale, o magari al cimitero.\nMa \u00e8 tollerabile che INTERI QUARTIERI delle nostre citt\u00e0 siano in mano ai DELINQUENTI?\nCi si stupisce che magari poi qualcuno, come dicono i buonisti, si \"radicalizzi\"???\nDate una mano alla Lega e sar\u00e0 #tolleranzazero\n#11giugno", "post_text": "Al purtroppo famigerato ex Villaggio olimpico di Torino, dove sono stato anche io molte volte, AGGRESSIONE in diretta alla troupe di \"Quinta Colonna\"!\nQui vivono abusivamente centinaia di presunti \"profughi\" e\u2026 Altro \"richiedenti asilo\".\nSei italiano? Se entri, rischi che ti mandino all'ospedale, o magari al cimitero.\nMa \u00e8 tollerabile che INTERI QUARTIERI delle nostre citt\u00e0 siano in mano ai DELINQUENTI?\nCi si stupisce che magari poi qualcuno, come dicono i buonisti, si \"radicalizzi\"???\nDate una mano alla Lega e sar\u00e0 #tolleranzazero\n#11giugno", "shared_text": "", "time": "2017-06-01 08:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154817483763155&id=252306033154", "link": null} +{"post_id": "10154821500253155", "text": "PAZZESCA AGGRESSIONE in diretta tiv\u00f9 alla troupe di \"Dalla Vostra Parte\" che cerca di documentare l'INVASIONE alla stazione Tiburtina di Roma.\nCHE SCHIFO!!! Con la Lega al governo, #tolleranzazero, ve lo garantisco!", "post_text": "PAZZESCA AGGRESSIONE in diretta tiv\u00f9 alla troupe di \"Dalla Vostra Parte\" che cerca di documentare l'INVASIONE alla stazione Tiburtina di Roma.\nCHE SCHIFO!!! Con la Lega al governo, #tolleranzazero, ve lo garantisco!", "shared_text": "", "time": "2017-05-31 21:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154821500253155&id=252306033154", "link": null} +{"post_id": "10154820448303155", "text": "Regione Liguria, dove la Lega \u00e8 primo partito della maggioranza, ha approvato una legge che mi piacerebbe estendere a tutta Italia.\nPer avere una CASA POPOLARE, devi essere residente qua da ALMENO 10 ANNI.\nE se sei arrivato l'altro ieri, ti metti in fila perch\u00e9 PRIMA ARRIVANO GLI ITALIANI!", "post_text": "Regione Liguria, dove la Lega \u00e8 primo partito della maggioranza, ha approvato una legge che mi piacerebbe estendere a tutta Italia.\nPer avere una CASA POPOLARE, devi essere residente qua da ALMENO 10 ANNI.\nE se sei arrivato l'altro ieri, ti metti in fila perch\u00e9 PRIMA ARRIVANO GLI ITALIANI!", "shared_text": "", "time": "2017-05-31 18:21:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154820448303155&id=252306033154", "link": null} +{"post_id": "10154820337908155", "text": "Qualche minuto insieme a voi.\nCase popolari prima agli italiani, il PD protesta e attacca la \"Lega razzista\".\nChe gli rispondiamo?", "post_text": "Qualche minuto insieme a voi.\nCase popolari prima agli italiani, il PD protesta e attacca la \"Lega razzista\".\nChe gli rispondiamo?", "shared_text": "", "time": "2017-05-31 09:39:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154820337908155&id=252306033154", "link": null} +{"post_id": "10154815320623155", "text": "Mi porter\u00f2 questa piazza di Santeramo nel cuore, grazie Amici.\nP.s. Queste immagini non ve le mostrer\u00e0 nessun telegiornale, per fortuna c'\u00e8 la rete!", "post_text": "Mi porter\u00f2 questa piazza di Santeramo nel cuore, grazie Amici.\nP.s. Queste immagini non ve le mostrer\u00e0 nessun telegiornale, per fortuna c'\u00e8 la rete!", "shared_text": "", "time": "2017-05-29 21:38:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154815320623155&id=252306033154", "link": null} +{"post_id": "10154813907068155", "text": "La mia intervista di stamattina a RTL 102.5: tanti messaggi ricevuti, tanti temi toccati, ho avuto la possibilit\u00e0 di spiegare, spero con chiarezza, le nostre proposte per il governo del Paese. #votosubito", "post_text": "La mia intervista di stamattina a RTL 102.5: tanti messaggi ricevuti, tanti temi toccati, ho avuto la possibilit\u00e0 di spiegare, spero con chiarezza, le nostre proposte per il governo del Paese. #votosubito", "shared_text": "", "time": "2017-05-29 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154813907068155&id=252306033154", "link": null} +{"post_id": "10154813772058155", "text": "La mia intervista di ieri mattina a SKY TG 24. Penso di essere stato abbastanza chiaro! #votosubito", "post_text": "La mia intervista di ieri mattina a SKY TG 24. Penso di essere stato abbastanza chiaro! #votosubito", "shared_text": "", "time": "2017-05-29 11:35:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154813772058155&id=252306033154", "link": null} +{"post_id": "10154795628238155", "text": "Chi afferma che non \u00e8 possibile espellere gli immigrati clandestini \u00e8 un COMPLICE.\nSe c'\u00e8 la volont\u00e0, tutto si pu\u00f2 fare. Non vedo l'ora di essere al governo per FERMARE L'INVASIONE.\n#stopinvasione", "post_text": "Chi afferma che non \u00e8 possibile espellere gli immigrati clandestini \u00e8 un COMPLICE.\nSe c'\u00e8 la volont\u00e0, tutto si pu\u00f2 fare. Non vedo l'ora di essere al governo per FERMARE L'INVASIONE.\n#stopinvasione", "shared_text": "", "time": "2017-05-27 20:08:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154795628238155&id=252306033154", "link": null} +{"post_id": "10154808244598155", "text": "PAZZESCO.\nSpaccio di droga, vendita di cellulari rubati, accoltellamenti... Tutto come prima alla stazione centrale di Milano. Dedicato a quelli che \"poverini, non si possono fare questi blitz violenti, facciamo le marce per i migranti...\".\n#tolleranzazero", "post_text": "PAZZESCO.\nSpaccio di droga, vendita di cellulari rubati, accoltellamenti... Tutto come prima alla stazione centrale di Milano. Dedicato a quelli che \"poverini, non si possono fare questi blitz violenti, facciamo le marce per i migranti...\".\n#tolleranzazero", "shared_text": "", "time": "2017-05-27 16:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154808244598155&id=252306033154", "link": null} +{"post_id": "10154795537728155", "text": "Pi\u00f9 hanno il portafoglio pieno, pi\u00f9 danno degli IMBECILLI a chi chiede semplicemente un po' di REGOLE e di RISPETTO...", "post_text": "Pi\u00f9 hanno il portafoglio pieno, pi\u00f9 danno degli IMBECILLI a chi chiede semplicemente un po' di REGOLE e di RISPETTO...", "shared_text": "", "time": "2017-05-27 10:33:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154795537728155&id=252306033154", "link": null} +{"post_id": "10154799310658155", "text": "Col voto del PD, di Forza Italia e l'astensione dei 5 Stelle l'Europa ha votato il REINSERIMENTO SOCIALE dei COMBATTENTI ISLAMICI!\nSecondo loro \"vanno aiutati, poverini\".\nSe uno parte dall'Italia, ammazza, decapita e sgozza in Siria e poi torna a casa, il suo posto \u00e8 la galera!\nAltro che reinserimento...", "post_text": "Col voto del PD, di Forza Italia e l'astensione dei 5 Stelle l'Europa ha votato il REINSERIMENTO SOCIALE dei COMBATTENTI ISLAMICI!\nSecondo loro \"vanno aiutati, poverini\".\nSe uno parte dall'Italia, ammazza, decapita e sgozza in Siria e poi torna a casa, il suo posto \u00e8 la galera!\nAltro che reinserimento...", "shared_text": "", "time": "2017-05-26 18:32:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154799310658155&id=252306033154", "link": null} +{"post_id": "10154805081998155", "text": "Panino alla milza in preparazione, tutto per voi!", "post_text": "Panino alla milza in preparazione, tutto per voi!", "shared_text": "", "time": "2017-05-26 13:25:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154805081998155&id=252306033154", "link": null} +{"post_id": "10154804958778155", "text": "In diretta dal quartiere Zen di Palermo, con mamme coraggiose che non si arrendono!\nCon Ismaele La Vardera Sindaco", "post_text": "In diretta dal quartiere Zen di Palermo, con mamme coraggiose che non si arrendono!\nCon Ismaele La Vardera Sindaco", "shared_text": "", "time": "2017-05-26 12:18:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154804958778155&id=252306033154", "link": null} +{"post_id": "10154803187778155", "text": "Insieme a voi in compagnia... dei cigni!", "post_text": "Insieme a voi in compagnia... dei cigni!", "shared_text": "", "time": "2017-05-25 20:04:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154803187778155&id=252306033154", "link": null} +{"post_id": "10154802462028155", "text": "Qualche minuto insieme a voi!\nSempre che non preferiate la Boldrini o la Fornero.", "post_text": "Qualche minuto insieme a voi!\nSempre che non preferiate la Boldrini o la Fornero.", "shared_text": "", "time": "2017-05-25 14:16:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154802462028155&id=252306033154", "link": null} +{"post_id": "10154802198058155", "text": "Protestano e bloccano un paese, ma tranquilli, vi pagheranno la pensione (soprattutto quello incappucciato)...\n#stopinvasione #votosubito", "post_text": "Protestano e bloccano un paese, ma tranquilli, vi pagheranno la pensione (soprattutto quello incappucciato)...\n#stopinvasione #votosubito", "shared_text": "", "time": "2017-05-25 13:05:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154802198058155&id=252306033154", "link": null} +{"post_id": "10154801991398155", "text": "Dalle prime ore di questa mattina IN CENTINAIA hanno preso in ostaggio il paese di Bagnoli (Padova), vicino alla ex base militare che li ospita. Qui, in marzo, una donna \u00e8 stata aggredita e picchiata da un \"\u2026 Altromigrante\" che ha tentato di violentarla.\nFinti profughi, vero business, BOMBA SOCIALE. BASTA!\nAssistere e ospitare chi scappa veramente dalla guerra, per tutti gli altri ESPULSIONE, senza se e senza ma!\nMi date una mano a rimediare ai disastri del Pd? #votosubito", "post_text": "Dalle prime ore di questa mattina IN CENTINAIA hanno preso in ostaggio il paese di Bagnoli (Padova), vicino alla ex base militare che li ospita. Qui, in marzo, una donna \u00e8 stata aggredita e picchiata da un \"\u2026 Altromigrante\" che ha tentato di violentarla.\nFinti profughi, vero business, BOMBA SOCIALE. BASTA!\nAssistere e ospitare chi scappa veramente dalla guerra, per tutti gli altri ESPULSIONE, senza se e senza ma!\nMi date una mano a rimediare ai disastri del Pd? #votosubito", "shared_text": "", "time": "2017-05-25 10:37:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154801991398155&id=252306033154", "link": null} +{"post_id": "10154741575968155", "text": "Il miliardario e spuculatore George SOROS, che all'inizio del mese ha incontrato Gentiloni a Palazzo Chigi, dona milioni e milioni per riempire l'Italia di immigrati e farla diventare meticcia...\nBLOCCHIAMOLI prima che sia tardi perch\u00e9 la gente si sta arrabbiando.\n#votosubito", "post_text": "Il miliardario e spuculatore George SOROS, che all'inizio del mese ha incontrato Gentiloni a Palazzo Chigi, dona milioni e milioni per riempire l'Italia di immigrati e farla diventare meticcia...\nBLOCCHIAMOLI prima che sia tardi perch\u00e9 la gente si sta arrabbiando.\n#votosubito", "shared_text": "", "time": "2017-05-25 09:23:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154741575968155&id=252306033154", "link": null} +{"post_id": "10154799896968155", "text": "Alla Fornero invidio solo la serenit\u00e0 e la faccia tosta con cui parla di una riforma che ha gettato nella disperazione MILIONI di italiani!!!\nP.s. E Cazzola? Stessa faccia di bronzo, RICOVERATELO!!!", "post_text": "Alla Fornero invidio solo la serenit\u00e0 e la faccia tosta con cui parla di una riforma che ha gettato nella disperazione MILIONI di italiani!!!\nP.s. E Cazzola? Stessa faccia di bronzo, RICOVERATELO!!!", "shared_text": "", "time": "2017-05-24 21:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154799896968155&id=252306033154", "link": null} +{"post_id": "10154799303918155", "text": "Terrorismo? No, terrorismo ISLAMICO.\nAlla guerra si risponde con la guerra, non possono esistere sacche di fanatismo e illegalit\u00e0 in casa nostra! #tolleranzazero", "post_text": "Terrorismo? No, terrorismo ISLAMICO.\nAlla guerra si risponde con la guerra, non possono esistere sacche di fanatismo e illegalit\u00e0 in casa nostra! #tolleranzazero", "shared_text": "", "time": "2017-05-24 15:50:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154799303918155&id=252306033154", "link": null} +{"post_id": "10154761283688155", "text": "Amici, ma voi vi sentite OSCENI?\nIl signore si sturi le orecchie: gli immigrati regolari sono miei fratelli, i clandestini, se vuole, li accolga lui, visto che \u00e8 tanto buono...", "post_text": "Amici, ma voi vi sentite OSCENI?\nIl signore si sturi le orecchie: gli immigrati regolari sono miei fratelli, i clandestini, se vuole, li accolga lui, visto che \u00e8 tanto buono...", "shared_text": "", "time": "2017-05-24 10:54:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154761283688155&id=252306033154", "link": null} +{"post_id": "10154795459458155", "text": "Soccorri tutti, salvi tutti e poi hai due scelte:\n1) o li porti tutti in Italia (tranne che in Sicilia, per non disturbare il G7 dei potenti...)\n2) o li riporti da dove sono venuti. E non vengano a dirci che\u2026 Altro non si pu\u00f2 fare, visto che le navi delle ONG gi\u00e0 li vanno a prendere nelle acque libiche!\nChi fugge dalla guerra, \u00e8 mio fratello e lo faccio venire qui in aereo.\nChi non ha diritto, FUORI!\nIn Italia non c'\u00e8 casa e lavoro per tutti, nemmeno per gli italiani. O SBAGLIO?", "post_text": "Soccorri tutti, salvi tutti e poi hai due scelte:\n1) o li porti tutti in Italia (tranne che in Sicilia, per non disturbare il G7 dei potenti...)\n2) o li riporti da dove sono venuti. E non vengano a dirci che\u2026 Altro non si pu\u00f2 fare, visto che le navi delle ONG gi\u00e0 li vanno a prendere nelle acque libiche!\nChi fugge dalla guerra, \u00e8 mio fratello e lo faccio venire qui in aereo.\nChi non ha diritto, FUORI!\nIn Italia non c'\u00e8 casa e lavoro per tutti, nemmeno per gli italiani. O SBAGLIO?", "shared_text": "", "time": "2017-05-23 20:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154795459458155&id=252306033154", "link": null} +{"post_id": "10154792233853155", "text": "Ecco il video mostrato ieri a Parma, sulla storia e sul futuro della Lega, che in tanti mi avete chiesto: uniti, forti, liberi e anche emozionati, con il cuore di chi fa parte di una cos\u00ec grande e splendida Comunit\u00e0.\n#CongressoLega", "post_text": "Ecco il video mostrato ieri a Parma, sulla storia e sul futuro della Lega, che in tanti mi avete chiesto: uniti, forti, liberi e anche emozionati, con il cuore di chi fa parte di una cos\u00ec grande e splendida Comunit\u00e0.\n#CongressoLega", "shared_text": "", "time": "2017-05-22 17:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154792233853155&id=252306033154", "link": null} +{"post_id": "10154792164188155", "text": "VACCINI: io ho vaccinato i miei figli, ma togliere i bimbi ai genitori e permettere la libert\u00e0 di scelta solo ai ricchi, \u00e8 una follia della sinistra italiana!", "post_text": "VACCINI: io ho vaccinato i miei figli, ma togliere i bimbi ai genitori e permettere la libert\u00e0 di scelta solo ai ricchi, \u00e8 una follia della sinistra italiana!", "shared_text": "", "time": "2017-05-22 12:54:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154792164188155&id=252306033154", "link": null} +{"post_id": "10154789840103155", "text": "GRAZIE! W la Lega!", "post_text": "GRAZIE! W la Lega!", "shared_text": "", "time": "2017-05-21 14:43:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154789840103155&id=252306033154", "link": null} +{"post_id": "10154787279343155", "text": "In diretta da Parma, aspettando il Congresso!\nDomani vi aspetto, ingresso libero per tutti (con tessera Lega) tranne che per scafisti, buonisti e clandestini.", "post_text": "In diretta da Parma, aspettando il Congresso!\nDomani vi aspetto, ingresso libero per tutti (con tessera Lega) tranne che per scafisti, buonisti e clandestini.", "shared_text": "", "time": "2017-05-20 19:12:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154787279343155&id=252306033154", "link": null} +{"post_id": "10154786803838155", "text": "Scusate, linea migrante e caduta, ora ci sono!", "post_text": "Scusate, linea migrante e caduta, ora ci sono!", "shared_text": "", "time": "2017-05-20 15:34:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154786803838155&id=252306033154", "link": null} +{"post_id": "10154786730503155", "text": "Marcia per i migranti?\nRoba da matti.\nLa facciamo una bella \"Marcia per i diritti degli italiani\"?", "post_text": "Marcia per i migranti?\nRoba da matti.\nLa facciamo una bella \"Marcia per i diritti degli italiani\"?", "shared_text": "", "time": "2017-05-20 15:00:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154786730503155&id=252306033154", "link": null} +{"post_id": "10154784049428155", "text": "Ecco il video dove Ismail Tommaso Ben Yousef Hosni, gi\u00e0 arrestato per droga, accoltella poliziotti e militari.\nPurtroppo per il Pd questa bella persona domani non sar\u00e0 in piazza a Milano per la \"marcia dei migranti\".", "post_text": "Ecco il video dove Ismail Tommaso Ben Yousef Hosni, gi\u00e0 arrestato per droga, accoltella poliziotti e militari.\nPurtroppo per il Pd questa bella persona domani non sar\u00e0 in piazza a Milano per la \"marcia dei migranti\".", "shared_text": "", "time": "2017-05-19 14:02:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154784049428155&id=252306033154", "link": null} +{"post_id": "10154778530518155", "text": "1) Ha detto \"riduco le tasse\", e le tasse sono aumentate\n2) Ha detto \"rilancio il lavoro\", e la disoccupazione \u00e8 aumentata\n3) Ha detto \"blocco l'immigrazione\", e gli sbarchi si moltiplicano\nRenzi dovrebbe farsi\u2026 Altro da parte, insieme alla Boschi e a tutta la compagnia che c'\u00e8 al governo, non tanto per intercettazioni o vicende dei famigliari (a quello penseranno i giudici), ma perch\u00e9 ha MENTITO e FALLITO.\n#votosubito", "post_text": "1) Ha detto \"riduco le tasse\", e le tasse sono aumentate\n2) Ha detto \"rilancio il lavoro\", e la disoccupazione \u00e8 aumentata\n3) Ha detto \"blocco l'immigrazione\", e gli sbarchi si moltiplicano\nRenzi dovrebbe farsi\u2026 Altro da parte, insieme alla Boschi e a tutta la compagnia che c'\u00e8 al governo, non tanto per intercettazioni o vicende dei famigliari (a quello penseranno i giudici), ma perch\u00e9 ha MENTITO e FALLITO.\n#votosubito", "shared_text": "", "time": "2017-05-18 10:46:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154778530518155&id=252306033154", "link": null} +{"post_id": "10154779495273155", "text": "Qualche minuto con voi, INSIEME possiamo vincere!", "post_text": "Qualche minuto con voi, INSIEME possiamo vincere!", "shared_text": "", "time": "2017-05-17 19:35:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154779495273155&id=252306033154", "link": null} +{"post_id": "10154778953533155", "text": "Stazione Centrale di Milano.\nCalcetto o calcinculo? A voi la risposta...", "post_text": "Stazione Centrale di Milano.\nCalcetto o calcinculo? A voi la risposta...", "shared_text": "", "time": "2017-05-17 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154778953533155&id=252306033154", "link": null} +{"post_id": "10154778600343155", "text": "SE NE FREGANO dei 35 milioni di disoccupati, pensano solo a banchieri e immigrati! Questa \u00e8 l'Europa, io glielo ho detto in faccia.\nP.s. 2 MINUTI di verit\u00e0 che tiv\u00f9 e giornali nasconderanno, aiutaci a farli girare sulle bacheche dei tuoi AMICI!", "post_text": "SE NE FREGANO dei 35 milioni di disoccupati, pensano solo a banchieri e immigrati! Questa \u00e8 l'Europa, io glielo ho detto in faccia.\nP.s. 2 MINUTI di verit\u00e0 che tiv\u00f9 e giornali nasconderanno, aiutaci a farli girare sulle bacheche dei tuoi AMICI!", "shared_text": "", "time": "2017-05-17 15:02:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154778600343155&id=252306033154", "link": null} +{"post_id": "10154778559758155", "text": "In 3 minuti ASFALTATO per voi l'amico della Fornero e dei VITALIZI, che mi accusa di imbrogliare gli italiani!", "post_text": "In 3 minuti ASFALTATO per voi l'amico della Fornero e dei VITALIZI, che mi accusa di imbrogliare gli italiani!", "shared_text": "", "time": "2017-05-17 11:50:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154778559758155&id=252306033154", "link": null} +{"post_id": "10154773463518155", "text": "E BASTAAAAA!\nModena, \"profughi\" cappellino-e-telefonino in corteo bloccano i viali: \"Siamo TRATTATI MALE e senza documenti\"...! Possono sempre tornare a casa loro, credo che gli italiani (loro s\u00ed TRATTATI\u2026 Altro MALISSIMO da 6 anni di governi sostenuti dal PD!) non ne possano veramente pi\u00f9! Voi che ne dite, esagero???\n#stopinvasione #PRIMAGLIITALIANI", "post_text": "E BASTAAAAA!\nModena, \"profughi\" cappellino-e-telefonino in corteo bloccano i viali: \"Siamo TRATTATI MALE e senza documenti\"...! Possono sempre tornare a casa loro, credo che gli italiani (loro s\u00ed TRATTATI\u2026 Altro MALISSIMO da 6 anni di governi sostenuti dal PD!) non ne possano veramente pi\u00f9! Voi che ne dite, esagero???\n#stopinvasione #PRIMAGLIITALIANI", "shared_text": "", "time": "2017-05-15 20:38:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154773463518155&id=252306033154", "link": null} +{"post_id": "10154772651493155", "text": "In diretta da Milano, qualche minuto con voi! GRAZIE, e ora avanti: liberiamo il Paese da chi lo tradisce, perch\u00e9 torni ad essere un Paese fondato sul lavoro e non sul business dell'immigrazione clandestina.", "post_text": "In diretta da Milano, qualche minuto con voi! GRAZIE, e ora avanti: liberiamo il Paese da chi lo tradisce, perch\u00e9 torni ad essere un Paese fondato sul lavoro e non sul business dell'immigrazione clandestina.", "shared_text": "", "time": "2017-05-15 10:53:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154772651493155&id=252306033154", "link": null} +{"post_id": "10154771091108155", "text": "Sempre con voi, per liberarci e per vincere!", "post_text": "Sempre con voi, per liberarci e per vincere!", "shared_text": "", "time": "2017-05-14 22:04:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154771091108155&id=252306033154", "link": null} +{"post_id": "10154769985278155", "text": "\"Solidariet\u00e0 in pista\": si cammina per acquistare un nuovo acceleratore lineare per curare malati di tumore all'ospedale San Gerardo di Monza.\nSabato 27 MAGGIO alle 8 all'Autodromo di Monza.\nSe potete, siateci!\u2026 Altro\nE aiutiamo l'associazione Cancro Primo Aiuto Onlus, di cui mi onoro di essere vicepresidente: una beneficenza che arriva direttamente ai malati e a chi ne ha bisogno.", "post_text": "\"Solidariet\u00e0 in pista\": si cammina per acquistare un nuovo acceleratore lineare per curare malati di tumore all'ospedale San Gerardo di Monza.\nSabato 27 MAGGIO alle 8 all'Autodromo di Monza.\nSe potete, siateci!\u2026 Altro\nE aiutiamo l'associazione Cancro Primo Aiuto Onlus, di cui mi onoro di essere vicepresidente: una beneficenza che arriva direttamente ai malati e a chi ne ha bisogno.", "shared_text": "", "time": "2017-05-14 14:48:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154769985278155&id=252306033154", "link": null} +{"post_id": "10154769570323155", "text": "Viva le Mamme, viva gli Alpini, viva la Lega!", "post_text": "Viva le Mamme, viva gli Alpini, viva la Lega!", "shared_text": "", "time": "2017-05-14 10:39:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154769570323155&id=252306033154", "link": null} +{"post_id": "10154764968833155", "text": "Sei militante Lega e vuoi che io continui a fare il segretario per i prossimi tre anni? Questa domenica dalle 9 alle 18 aspetto il tuo voto.\nPer una Lega UNITA, FORTE, LIBERA e VINCENTE!\n#DomenicaVotaSalvini\n[Info sulle sedi di voto: http://www.leganord.org/regolamentocongresso]", "post_text": "Sei militante Lega e vuoi che io continui a fare il segretario per i prossimi tre anni? Questa domenica dalle 9 alle 18 aspetto il tuo voto.\nPer una Lega UNITA, FORTE, LIBERA e VINCENTE!\n#DomenicaVotaSalvini\n[Info sulle sedi di voto: http://www.leganord.org/regolamentocongresso]", "shared_text": "", "time": "2017-05-12 19:30:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154764968833155&id=252306033154", "link": "http://www.leganord.org/regolamentocongresso?fbclid=IwAR3reLKfH6zYsSqXpQ_-oHuXtd4mITDJoUxUlTmWmaQQeD995nkYSXRSgXo"} +{"post_id": "10154764221653155", "text": "Io ci sono, voi ci siete???\nIntanto sbarcano, sbarcano, sbarcano...", "post_text": "Io ci sono, voi ci siete???\nIntanto sbarcano, sbarcano, sbarcano...", "shared_text": "", "time": "2017-05-12 13:20:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154764221653155&id=252306033154", "link": null} +{"post_id": "10154763905183155", "text": "Grazie al grande Vittorio Feltri! #ancheluivotaSalvini", "post_text": "Grazie al grande Vittorio Feltri! #ancheluivotaSalvini", "shared_text": "", "time": "2017-05-12 10:10:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154763905183155&id=252306033154", "link": null} +{"post_id": "10154736198588155", "text": "Accoglierne ancora in Italia???\nCon 7 MILIONI di italiani che in questo momento vivono sotto la soglia della povert\u00e0, mettiamoci d'accordo una volta per tutte.\nChi scappa dalla guerra s\u00ec, TUTTI GLI ALTRI NO!", "post_text": "Accoglierne ancora in Italia???\nCon 7 MILIONI di italiani che in questo momento vivono sotto la soglia della povert\u00e0, mettiamoci d'accordo una volta per tutte.\nChi scappa dalla guerra s\u00ec, TUTTI GLI ALTRI NO!", "shared_text": "", "time": "2017-05-11 20:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154736198588155&id=252306033154", "link": null} +{"post_id": "10154762058393155", "text": "Qualche minuto insieme a voi.", "post_text": "Qualche minuto insieme a voi.", "shared_text": "", "time": "2017-05-11 18:04:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154762058393155&id=252306033154", "link": null} +{"post_id": "10154761395973155", "text": "Se voi ci siete, io ci sono!!!\nStop invasione.", "post_text": "Se voi ci siete, io ci sono!!!\nStop invasione.", "shared_text": "", "time": "2017-05-11 12:06:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154761395973155&id=252306033154", "link": null} +{"post_id": "10154744135088155", "text": "Mirco Basconi \u00e8 un Carabiniere condannato a un anno di GALERA perch\u00e9, intercettando un'auto rubata con tre BANDITI albanesi a bordo, ha sparato alle gomme per fermali e un proiettile di rimbalzo ha ucciso uno dei ladri.\nMa se nemmeno un CARABINIERE pu\u00f2 usare l'arma per difendere s\u00e9 stesso e i colleghi, IN QUALE PAESE VIVIAMO???", "post_text": "Mirco Basconi \u00e8 un Carabiniere condannato a un anno di GALERA perch\u00e9, intercettando un'auto rubata con tre BANDITI albanesi a bordo, ha sparato alle gomme per fermali e un proiettile di rimbalzo ha ucciso uno dei ladri.\nMa se nemmeno un CARABINIERE pu\u00f2 usare l'arma per difendere s\u00e9 stesso e i colleghi, IN QUALE PAESE VIVIAMO???", "shared_text": "", "time": "2017-05-11 10:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154744135088155&id=252306033154", "link": null} +{"post_id": "10154759046793155", "text": "Una mezz'oretta in vostra compagnia. Scrivete pure!", "post_text": "Una mezz'oretta in vostra compagnia. Scrivete pure!", "shared_text": "", "time": "2017-05-10 14:33:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154759046793155&id=252306033154", "link": null} +{"post_id": "10154744150253155", "text": "\"Ma non parli mai dei crimini degli italiani\".\nMa scusate, il fatto che gi\u00e0 qui di delinquenti ne abbiamo qui parecchi, non mi sembra un buon motivo per farne arrivare anche da tutto il resto del MONDO! O sbaglio???", "post_text": "\"Ma non parli mai dei crimini degli italiani\".\nMa scusate, il fatto che gi\u00e0 qui di delinquenti ne abbiamo qui parecchi, non mi sembra un buon motivo per farne arrivare anche da tutto il resto del MONDO! O sbaglio???", "shared_text": "", "time": "2017-05-10 11:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154744150253155&id=252306033154", "link": null} +{"post_id": "10154749903493155", "text": "Tra poco in diretta su Rai Uno da Giletti.", "post_text": "Tra poco in diretta su Rai Uno da Giletti.", "shared_text": "", "time": "2017-05-07 13:45:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154749903493155&id=252306033154", "link": null} +{"post_id": "10154747983363155", "text": "Ma a voi Crozza fa ancora ridere...??", "post_text": "Ma a voi Crozza fa ancora ridere...??", "shared_text": "", "time": "2017-05-06 20:47:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154747983363155&id=252306033154", "link": null} +{"post_id": "10154747790073155", "text": "Qualche minuto insieme a voi.\n\u00c8 quasi buio, se vi aggrediscono potete difendervi!", "post_text": "Qualche minuto insieme a voi.\n\u00c8 quasi buio, se vi aggrediscono potete difendervi!", "shared_text": "", "time": "2017-05-06 19:13:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154747790073155&id=252306033154", "link": null} +{"post_id": "10154736883813155", "text": "Blitz anti-spaccio in stazione a Milano, prendete nota delle parole dell'\"EDUCATORE ALL'ACCOGLIENZA\" (!), dice che non \u00e8 vero niente e che dobbiamo vergognarci... CHE PENA!", "post_text": "Blitz anti-spaccio in stazione a Milano, prendete nota delle parole dell'\"EDUCATORE ALL'ACCOGLIENZA\" (!), dice che non \u00e8 vero niente e che dobbiamo vergognarci... CHE PENA!", "shared_text": "", "time": "2017-05-05 15:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154736883813155&id=252306033154", "link": null} +{"post_id": "10154741719993155", "text": "In 1 MINUTO di video i numeri ufficiali: su 100 sbarcati i veri profughi sono solo 3!\nSolo un COMPLICE pu\u00f2 negare l'INVASIONE e la sostituzione di popolo in corso!", "post_text": "In 1 MINUTO di video i numeri ufficiali: su 100 sbarcati i veri profughi sono solo 3!\nSolo un COMPLICE pu\u00f2 negare l'INVASIONE e la sostituzione di popolo in corso!", "shared_text": "", "time": "2017-05-04 21:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154741719993155&id=252306033154", "link": null} +{"post_id": "10154741955083155", "text": "Solidariet\u00e0 all'inviata di Matrix Francesca Parisella aggredita ieri sera, insieme alla troupe, davanti alla stazione Termini di Roma mentre faceva il proprio lavoro. Aiutata da un tassista, sta bene.\nUn\u2026 Altro abbraccio di compatimento, invece, ai BUONISTI-COMPLICI che, parlando del blitz dell'altro giorno alla stazione di Milano, si preoccupano non di degrado e criminalit\u00e0 ma, ATTENTI BENE, del fatto che questi interventi di ordine pubblico sono \"totalmente fuori luogo\" e tirano \"LA VOLATA A SALVINI\" (lo dichiara tale Corrado Mandreoli oggi su \"La Repubblica\"). DA RICOVERO!", "post_text": "Solidariet\u00e0 all'inviata di Matrix Francesca Parisella aggredita ieri sera, insieme alla troupe, davanti alla stazione Termini di Roma mentre faceva il proprio lavoro. Aiutata da un tassista, sta bene.\nUn\u2026 Altro abbraccio di compatimento, invece, ai BUONISTI-COMPLICI che, parlando del blitz dell'altro giorno alla stazione di Milano, si preoccupano non di degrado e criminalit\u00e0 ma, ATTENTI BENE, del fatto che questi interventi di ordine pubblico sono \"totalmente fuori luogo\" e tirano \"LA VOLATA A SALVINI\" (lo dichiara tale Corrado Mandreoli oggi su \"La Repubblica\"). DA RICOVERO!", "shared_text": "", "time": "2017-05-04 15:57:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154741955083155&id=252306033154", "link": null} +{"post_id": "10154741898613155", "text": "Per il Pd un cittadino pu\u00f2 difendersi solo se \u00e8 aggredito... di notte.\nDi giorno e di pomeriggio? TUTTO LECITO!\nOrgoglioso di aver gridato \"VERGOGNA!\" a questo governo che arma i DELINQUENTI e non difende i cittadini! #legittimadifesasempre", "post_text": "Per il Pd un cittadino pu\u00f2 difendersi solo se \u00e8 aggredito... di notte.\nDi giorno e di pomeriggio? TUTTO LECITO!\nOrgoglioso di aver gridato \"VERGOGNA!\" a questo governo che arma i DELINQUENTI e non difende i cittadini! #legittimadifesasempre", "shared_text": "", "time": "2017-05-04 14:44:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154741898613155&id=252306033154", "link": null} +{"post_id": "10154739578758155", "text": "Zuccaro: \"IMPOSSIBILE ospitare in Italia la migrazione di carattere economico\".\nUn giudice CORAGGIOSO, lasciatelo lavorare!\n#iostoconZuccaro", "post_text": "Zuccaro: \"IMPOSSIBILE ospitare in Italia la migrazione di carattere economico\".\nUn giudice CORAGGIOSO, lasciatelo lavorare!\n#iostoconZuccaro", "shared_text": "", "time": "2017-05-03 21:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154739578758155&id=252306033154", "link": null} +{"post_id": "10154738972573155", "text": "In diretta da Terni, fra i cittadini arrabbiati con il sindaco (del PD) arrestato. Elezioni subito!", "post_text": "In diretta da Terni, fra i cittadini arrabbiati con il sindaco (del PD) arrestato. Elezioni subito!", "shared_text": "", "time": "2017-05-03 11:48:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154738972573155&id=252306033154", "link": null} +{"post_id": "10154736248998155", "text": "Sul tema immigrazione i 5 Stelle sono peggio del Pd di Renzi, parlano bene ma RAZZOLANO malissimo, vi spiego perch\u00e9.", "post_text": "Sul tema immigrazione i 5 Stelle sono peggio del Pd di Renzi, parlano bene ma RAZZOLANO malissimo, vi spiego perch\u00e9.", "shared_text": "", "time": "2017-05-03 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154736248998155&id=252306033154", "link": null} +{"post_id": "10154737174538155", "text": "Vi consiglio questi 2 MINUTI memorabili: \"Salvini, sei la VERGOGNA dell'Italia... NEONAZISTA... fascista... come unica soluzione per te c'\u00e8 solo PIAZZALE LORETO!\".\nIo sono ANTI-CLANDESTINI e ANTI-SPACCIATORI, e continuer\u00f2 ad esserlo alla faccia sua.", "post_text": "Vi consiglio questi 2 MINUTI memorabili: \"Salvini, sei la VERGOGNA dell'Italia... NEONAZISTA... fascista... come unica soluzione per te c'\u00e8 solo PIAZZALE LORETO!\".\nIo sono ANTI-CLANDESTINI e ANTI-SPACCIATORI, e continuer\u00f2 ad esserlo alla faccia sua.", "shared_text": "", "time": "2017-05-02 20:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154737174538155&id=252306033154", "link": null} +{"post_id": "10154737050228155", "text": "\"Da una coppia omosessuale non pu\u00f2 che crescere un ragazzo con handicap\". Questa la frase che mi attribuisce il \"prezioso\" artista, che non avevo ancora il piacere di conoscere, del gruppo Stato Sociale al\u2026 Altro concertone del 1\u00b0 maggio...\nCapisco che ogni occasione \u00e8 buona per insultare Salvini, ma almeno mi attacchi sulle cose che dico realmente.\nE comunque: meglio De Andr\u00e9!", "post_text": "\"Da una coppia omosessuale non pu\u00f2 che crescere un ragazzo con handicap\". Questa la frase che mi attribuisce il \"prezioso\" artista, che non avevo ancora il piacere di conoscere, del gruppo Stato Sociale al\u2026 Altro concertone del 1\u00b0 maggio...\nCapisco che ogni occasione \u00e8 buona per insultare Salvini, ma almeno mi attacchi sulle cose che dico realmente.\nE comunque: meglio De Andr\u00e9!", "shared_text": "", "time": "2017-05-02 18:17:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154737050228155&id=252306033154", "link": null} +{"post_id": "10154736759978155", "text": "Blitz della Polizia in stazione Centrale a Milano, controlli su tutti gli immigrati presenti, metropolitana e treni compresi.\nDopo tante denunce della Lega, speriamo che sia la volta buona: STOP INVASIONE, pulizia!!!", "post_text": "Blitz della Polizia in stazione Centrale a Milano, controlli su tutti gli immigrati presenti, metropolitana e treni compresi.\nDopo tante denunce della Lega, speriamo che sia la volta buona: STOP INVASIONE, pulizia!!!", "shared_text": "", "time": "2017-05-02 15:52:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154736759978155&id=252306033154", "link": null} +{"post_id": "10154734447508155", "text": "Ancora dal centro immigrati di Mineo!", "post_text": "Ancora dal centro immigrati di Mineo!", "shared_text": "", "time": "2017-05-01 19:29:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154734447508155&id=252306033154", "link": null} +{"post_id": "10154733620438155", "text": "In diretta dal porto di Augusta (Siracusa), dove solo nel 2017 sono sbarcati pi\u00f9 di 10.000 clandestini.\n#stopinvasione", "post_text": "In diretta dal porto di Augusta (Siracusa), dove solo nel 2017 sono sbarcati pi\u00f9 di 10.000 clandestini.\n#stopinvasione", "shared_text": "", "time": "2017-05-01 12:58:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154733620438155&id=252306033154", "link": null} +{"post_id": "10154731202883155", "text": "In diretta da La Spezia, insieme a cittadini e pescatori!", "post_text": "In diretta da La Spezia, insieme a cittadini e pescatori!", "shared_text": "", "time": "2017-04-30 17:32:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154731202883155&id=252306033154", "link": null} +{"post_id": "10154725747843155", "text": "In diretta da Piombino Dese (Padova), una marea di gente con la Lega!", "post_text": "In diretta da Piombino Dese (Padova), una marea di gente con la Lega!", "shared_text": "", "time": "2017-04-28 22:19:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154725747843155&id=252306033154", "link": null} +{"post_id": "10154722281708155", "text": "ONG e scafisti, ascoltate attentamente quello che dice Carmelo Zuccaro, procuratore capo di Catania.\nQuello che la Lega DENUNCIA da ANNI.\nE quando saremo al governo questo business schifoso LO FERMIAMO.\n#stopinvasione #votosubito", "post_text": "ONG e scafisti, ascoltate attentamente quello che dice Carmelo Zuccaro, procuratore capo di Catania.\nQuello che la Lega DENUNCIA da ANNI.\nE quando saremo al governo questo business schifoso LO FERMIAMO.\n#stopinvasione #votosubito", "shared_text": "", "time": "2017-04-27 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154722281708155&id=252306033154", "link": null} +{"post_id": "10154719864113155", "text": "Nel 2016 l'Italia \u00e8 penultima per crescita del PIL in Europa, persino la Grecia \u00e8 andata meglio di noi!\nLa soluzione?\nABBASSARE, ABBASSARE, ABBASSARE drasticamente LE TASSE!\nE CANCELLARE la LEGGE FORNERO, che\u2026 Altro ha lasciato fuori i giovani dal mondo del lavoro, tenendo inchiodate le persone fino a 67 anni a fare l'infermiere, il muratore, il camionista, il poliziotto...\nSolo cos\u00ec torneremo a crescere, non certo AFFAMANDO la GENTE con i mini lavori alla tedesca da 450 euro al mese!", "post_text": "Nel 2016 l'Italia \u00e8 penultima per crescita del PIL in Europa, persino la Grecia \u00e8 andata meglio di noi!\nLa soluzione?\nABBASSARE, ABBASSARE, ABBASSARE drasticamente LE TASSE!\nE CANCELLARE la LEGGE FORNERO, che\u2026 Altro ha lasciato fuori i giovani dal mondo del lavoro, tenendo inchiodate le persone fino a 67 anni a fare l'infermiere, il muratore, il camionista, il poliziotto...\nSolo cos\u00ec torneremo a crescere, non certo AFFAMANDO la GENTE con i mini lavori alla tedesca da 450 euro al mese!", "shared_text": "", "time": "2017-04-27 14:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154719864113155&id=252306033154", "link": null} +{"post_id": "10154719858173155", "text": "Marine Le Pen ha preso 7 milioni e mezzo di voti da operai, artigiani, agricoltori e da gran parte del mondo produttivo perch\u00e9 ha un PROGRAMMA chiaro sul LAVORO.\nSulle PENSIONI 60 anni di et\u00e0 e 40 anni di\u2026 Altro contributi.\nSul Made in France, come per noi sul MADE IN ITALY, difendere la pesca, l'agricoltura e le produzioni locali dalla concorrenza sleale, controllo non solo degli uomini ma anche delle merci.\nE, come propone la Lega, impedire alle aziende che hanno avuto soldi pubblici di chiudere qui e di delocalizzare e assumere all'estero.", "post_text": "Marine Le Pen ha preso 7 milioni e mezzo di voti da operai, artigiani, agricoltori e da gran parte del mondo produttivo perch\u00e9 ha un PROGRAMMA chiaro sul LAVORO.\nSulle PENSIONI 60 anni di et\u00e0 e 40 anni di\u2026 Altro contributi.\nSul Made in France, come per noi sul MADE IN ITALY, difendere la pesca, l'agricoltura e le produzioni locali dalla concorrenza sleale, controllo non solo degli uomini ma anche delle merci.\nE, come propone la Lega, impedire alle aziende che hanno avuto soldi pubblici di chiudere qui e di delocalizzare e assumere all'estero.", "shared_text": "", "time": "2017-04-27 11:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154719858173155&id=252306033154", "link": null} +{"post_id": "10154719814813155", "text": "2 MINUTI per dire: VERGOGNATEVI!\nIn Europa si occupano di \"diritti dei Rom e dei migranti\" ma SE NE FREGANO di milioni di giovani disoccupati!\nFacciamo GIRARE in Rete, tanto tutte le tiv\u00f9 lo CENSURERANNO!", "post_text": "2 MINUTI per dire: VERGOGNATEVI!\nIn Europa si occupano di \"diritti dei Rom e dei migranti\" ma SE NE FREGANO di milioni di giovani disoccupati!\nFacciamo GIRARE in Rete, tanto tutte le tiv\u00f9 lo CENSURERANNO!", "shared_text": "", "time": "2017-04-26 17:49:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154719814813155&id=252306033154", "link": null} +{"post_id": "10154716961878155", "text": "GRAZIE! #legittimadifesasempre", "post_text": "GRAZIE! #legittimadifesasempre", "shared_text": "", "time": "2017-04-25 14:08:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154716961878155&id=252306033154", "link": null} +{"post_id": "10154716686928155", "text": "State con noi! In diretta da Verona. #legittimadifesasempre", "post_text": "State con noi! In diretta da Verona. #legittimadifesasempre", "shared_text": "", "time": "2017-04-25 12:30:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154716686928155&id=252306033154", "link": null} +{"post_id": "10154714908673155", "text": "Ho voglia di parlare con voi! Ci siete?", "post_text": "Ho voglia di parlare con voi! Ci siete?", "shared_text": "", "time": "2017-04-24 19:10:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154714908673155&id=252306033154", "link": null} +{"post_id": "10154707295748155", "text": "Ecco il video delle risorse boldriniane oggi a Milano...\nUno degli aggressori nordafricani aveva chiesto il permesso di soggiorno \"per motivi umanitari\"...\n#espulsionidimassa", "post_text": "Ecco il video delle risorse boldriniane oggi a Milano...\nUno degli aggressori nordafricani aveva chiesto il permesso di soggiorno \"per motivi umanitari\"...\n#espulsionidimassa", "shared_text": "", "time": "2017-04-21 22:02:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154707295748155&id=252306033154", "link": null} +{"post_id": "10154699484808155", "text": "Con 4 milioni e mezzo di italiani poveri, io credo che occorra prima pensare a loro: un tetto, una casa e un futuro a chi ha perso la speranza! Sbaglio???\nE, cari buonisti, vi ricordo che tanti immigrati\u2026 Altro arrivati qua regolarmente, che mandano i figli a scuola e rispettano le nostre usanze, non meritano di essere accomunati alla MARMAGLIA che infesta le nostre citt\u00e0!\nP.s. Anche il pubblico di \"DI MARTED\u00cd\" mi sembrava d'accordo. E voi?", "post_text": "Con 4 milioni e mezzo di italiani poveri, io credo che occorra prima pensare a loro: un tetto, una casa e un futuro a chi ha perso la speranza! Sbaglio???\nE, cari buonisti, vi ricordo che tanti immigrati\u2026 Altro arrivati qua regolarmente, che mandano i figli a scuola e rispettano le nostre usanze, non meritano di essere accomunati alla MARMAGLIA che infesta le nostre citt\u00e0!\nP.s. Anche il pubblico di \"DI MARTED\u00cd\" mi sembrava d'accordo. E voi?", "shared_text": "", "time": "2017-04-20 11:54:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154699484808155&id=252306033154", "link": null} +{"post_id": "10154650831123155", "text": "Buon lavoro al Forum economico internazionale che inizia oggi a Yalta, in Crimea.\nLe sanzioni contro la Russia e il misconocimento della legittima richiesta crimeana sono un danno non solo per Mosca, ma per tutta l'IMPRESA ITALIANA che l\u00ec avrebbe tanto da fare.", "post_text": "Buon lavoro al Forum economico internazionale che inizia oggi a Yalta, in Crimea.\nLe sanzioni contro la Russia e il misconocimento della legittima richiesta crimeana sono un danno non solo per Mosca, ma per tutta l'IMPRESA ITALIANA che l\u00ec avrebbe tanto da fare.", "shared_text": "", "time": "2017-04-20 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154650831123155&id=252306033154", "link": null} +{"post_id": "10154684861053155", "text": "Mentre la Boldrini adotta agnellini, mi piacerebbe che il Parlamento approvasse una legge contro la macellazione rituale islamica.", "post_text": "Mentre la Boldrini adotta agnellini, mi piacerebbe che il Parlamento approvasse una legge contro la macellazione rituale islamica.", "shared_text": "", "time": "2017-04-18 19:58:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154684861053155&id=252306033154", "link": null} +{"post_id": "10154696791628155", "text": "Qualche minuto insieme a voi da Milanistan", "post_text": "Qualche minuto insieme a voi da Milanistan", "shared_text": "", "time": "2017-04-18 12:57:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154696791628155&id=252306033154", "link": null} +{"post_id": "10154694337373155", "text": "In diretta da Milano!", "post_text": "In diretta da Milano!", "shared_text": "", "time": "2017-04-17 17:01:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154694337373155&id=252306033154", "link": null} +{"post_id": "10154677531318155", "text": "Non ci sono parole sufficienti... Un abbraccio a Hellen.\nIo lotto per portare in Italia GIUSTIZIA e CERTEZZA della PENA.\nPer i delinquenti come quelli che hanno MASSACRATO questa ragazza ho un solo progetto: GALERA, lavori forzati e via la chiave!", "post_text": "Non ci sono parole sufficienti... Un abbraccio a Hellen.\nIo lotto per portare in Italia GIUSTIZIA e CERTEZZA della PENA.\nPer i delinquenti come quelli che hanno MASSACRATO questa ragazza ho un solo progetto: GALERA, lavori forzati e via la chiave!", "shared_text": "", "time": "2017-04-13 10:57:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154677531318155&id=252306033154", "link": null} +{"post_id": "10154677625683155", "text": "Ma che cos'hanno in testa quelli del PD???\nSe ti ritrovi un malvivente in casa e sei armato, lo stendi prima che lui stenda te o tuo figlio!\nNON ESISTE l'eccesso di legittima difesa all'interno di una\u2026 Altro propriet\u00e0 privata!\nSaremo a Verona il 25 aprile in migliaia di persone perbene, siamo STUFI che siano garantiti pi\u00f9 gli AGGRESSORI degli aggrediti!", "post_text": "Ma che cos'hanno in testa quelli del PD???\nSe ti ritrovi un malvivente in casa e sei armato, lo stendi prima che lui stenda te o tuo figlio!\nNON ESISTE l'eccesso di legittima difesa all'interno di una\u2026 Altro propriet\u00e0 privata!\nSaremo a Verona il 25 aprile in migliaia di persone perbene, siamo STUFI che siano garantiti pi\u00f9 gli AGGRESSORI degli aggrediti!", "shared_text": "", "time": "2017-04-12 13:44:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154677625683155&id=252306033154", "link": null} +{"post_id": "10154674276163155", "text": "Ucciso con un cacciavite da un immigrato senza permesso di soggiorno e pluripregiudicato.\nUn abbraccio alla signora Giuliana, una preghiera per Carlo.\nIl colpevole dovrebbe MARCIRE in galera, \u00e8 stato\u2026 Altro condannato a soli 14 anni e la mamma teme che in Cassazione possa essere addirittura ASSOLTO!\nESPULSIONI e TOLLERANZA ZERO per prevenire queste tragedie.\nUn Paese che consente queste INGIUSTIZIE non \u00e8 un Paese civile.", "post_text": "Ucciso con un cacciavite da un immigrato senza permesso di soggiorno e pluripregiudicato.\nUn abbraccio alla signora Giuliana, una preghiera per Carlo.\nIl colpevole dovrebbe MARCIRE in galera, \u00e8 stato\u2026 Altro condannato a soli 14 anni e la mamma teme che in Cassazione possa essere addirittura ASSOLTO!\nESPULSIONI e TOLLERANZA ZERO per prevenire queste tragedie.\nUn Paese che consente queste INGIUSTIZIE non \u00e8 un Paese civile.", "shared_text": "", "time": "2017-04-11 13:30:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154674276163155&id=252306033154", "link": null} +{"post_id": "10154671879513155", "text": "Il Pd governa da 5 anni: 20mila delinquenti liberati e 500mila profughi, quasi tutti finti.\nSpero ne risponderanno presto di fronte agli italiani. #votosubito", "post_text": "Il Pd governa da 5 anni: 20mila delinquenti liberati e 500mila profughi, quasi tutti finti.\nSpero ne risponderanno presto di fronte agli italiani. #votosubito", "shared_text": "", "time": "2017-04-10 17:53:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154671879513155&id=252306033154", "link": null} +{"post_id": "10154670835828155", "text": "In Svezia reagiscono al SANGUE e ai CADAVERI straziati dal TIR guidato dal finto profugo-terrorista con la FESTA DELL'AMORE...! E con spot come questo.\nROBA DA MATTI!\nNon chiudiamo gli occhi, non arrendiamoci, facciamo GIRARE!\nPerch\u00e9 la nostra Europa non diventi EURABIA!", "post_text": "In Svezia reagiscono al SANGUE e ai CADAVERI straziati dal TIR guidato dal finto profugo-terrorista con la FESTA DELL'AMORE...! E con spot come questo.\nROBA DA MATTI!\nNon chiudiamo gli occhi, non arrendiamoci, facciamo GIRARE!\nPerch\u00e9 la nostra Europa non diventi EURABIA!", "shared_text": "", "time": "2017-04-10 13:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154670835828155&id=252306033154", "link": null} +{"post_id": "10154660586203155", "text": "In Italia i delinquenti devono sapere che CHI SBAGLIA PAGA!\nOggi invece in gran parte la fanno franca, e chi viene beccato in galera ci sta poco o per niente!\nLa vita \u00e8 sacra, ma lo \u00e8 anche la propriet\u00e0\u2026 Altro privata. \u00c8 un concetto cos\u00ec difficile da capire per quelli del PD?\nP.s. intanto lo slavo che ha ammazzato il barista di Budrio e una guardia ecologica nel Ferrarese gira ancora libero...", "post_text": "In Italia i delinquenti devono sapere che CHI SBAGLIA PAGA!\nOggi invece in gran parte la fanno franca, e chi viene beccato in galera ci sta poco o per niente!\nLa vita \u00e8 sacra, ma lo \u00e8 anche la propriet\u00e0\u2026 Altro privata. \u00c8 un concetto cos\u00ec difficile da capire per quelli del PD?\nP.s. intanto lo slavo che ha ammazzato il barista di Budrio e una guardia ecologica nel Ferrarese gira ancora libero...", "shared_text": "", "time": "2017-04-10 11:14:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154660586203155&id=252306033154", "link": null} +{"post_id": "10154664701018155", "text": "Risorsa africana minaccia i passanti armato di due coltelli, poliziotti costretti ad intervenire, sparano alle gambe per arrestarlo.\nHanno esagerato? No, hanno fatto bene!!!", "post_text": "Risorsa africana minaccia i passanti armato di due coltelli, poliziotti costretti ad intervenire, sparano alle gambe per arrestarlo.\nHanno esagerato? No, hanno fatto bene!!!", "shared_text": "", "time": "2017-04-08 15:25:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154664701018155&id=252306033154", "link": null} +{"post_id": "10154661511113155", "text": "Dalla Siria a Stoccolma, chi semina missili raccoglie morti.", "post_text": "Dalla Siria a Stoccolma, chi semina missili raccoglie morti.", "shared_text": "", "time": "2017-04-07 17:02:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154661511113155&id=252306033154", "link": null} +{"post_id": "10154658011813155", "text": "TRANQUILLI, ITALIANI. VI PAGHERANNO LE PENSIONI...\nBotte e assalto al furgone del cibo alla caserma Serena di Treviso, dove stazionano oltre 700 presunti \"profughi\", tra risse, atti di delinquenza gratuita e\u2026 Altro provocazioni alle Forze dell'ordine, il tutto fomentato anche dai \"bravi ragazzi\" dei CENTRI A-SOCIALI della zona...\nVi piace come modello di sviluppo dell'Italia???\n#stopinvasione #facciamopulizia", "post_text": "TRANQUILLI, ITALIANI. VI PAGHERANNO LE PENSIONI...\nBotte e assalto al furgone del cibo alla caserma Serena di Treviso, dove stazionano oltre 700 presunti \"profughi\", tra risse, atti di delinquenza gratuita e\u2026 Altro provocazioni alle Forze dell'ordine, il tutto fomentato anche dai \"bravi ragazzi\" dei CENTRI A-SOCIALI della zona...\nVi piace come modello di sviluppo dell'Italia???\n#stopinvasione #facciamopulizia", "shared_text": "", "time": "2017-04-06 19:58:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154658011813155&id=252306033154", "link": null} +{"post_id": "10154650835178155", "text": "Sei un italiano o un'italiana all'ESTERO e vuoi FARE RETE con noi, non solo online ma anche di persona, per costruire e progettare insieme? Scrivi a: leganelmondo@gmail.com.\nVi aspetto, ho bisogno di voi!", "post_text": "Sei un italiano o un'italiana all'ESTERO e vuoi FARE RETE con noi, non solo online ma anche di persona, per costruire e progettare insieme? Scrivi a: leganelmondo@gmail.com.\nVi aspetto, ho bisogno di voi!", "shared_text": "", "time": "2017-04-06 14:08:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154650835178155&id=252306033154", "link": null} +{"post_id": "10154653906953155", "text": "RIPETIAMO INSIEME per quelli del PD che in tiv\u00f9 dicono una cosa e in Parlamento ne fanno un'altra:\nNON ESISTE il reato di eccesso di legittima difesa!\nNON ESISTE il reato di eccesso di legittima difesa!\nNON\u2026 Altro ESISTE il reato di eccesso di legittima difesa!\nSe anche voi siete d'accordo, Facebook NON BASTA pi\u00f9!\nCi vediamo il 25 aprile alle 12 al Palaolimpia di VERONA, con migliaia di uomini e donne LIBERI che aspirano a vivere in un Paese dove SICUREZZA e CERTEZZA della PENA non siano un optional.", "post_text": "RIPETIAMO INSIEME per quelli del PD che in tiv\u00f9 dicono una cosa e in Parlamento ne fanno un'altra:\nNON ESISTE il reato di eccesso di legittima difesa!\nNON ESISTE il reato di eccesso di legittima difesa!\nNON\u2026 Altro ESISTE il reato di eccesso di legittima difesa!\nSe anche voi siete d'accordo, Facebook NON BASTA pi\u00f9!\nCi vediamo il 25 aprile alle 12 al Palaolimpia di VERONA, con migliaia di uomini e donne LIBERI che aspirano a vivere in un Paese dove SICUREZZA e CERTEZZA della PENA non siano un optional.", "shared_text": "", "time": "2017-04-06 12:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154653906953155&id=252306033154", "link": null} +{"post_id": "10154654716638155", "text": "Amici, solo per voi che seguite questa Pagina, il bacio di Marine Le Pen!\nForza Marine! #MarinePr\u00e9sidente", "post_text": "Amici, solo per voi che seguite questa Pagina, il bacio di Marine Le Pen!\nForza Marine! #MarinePr\u00e9sidente", "shared_text": "", "time": "2017-04-06 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154654716638155&id=252306033154", "link": null} +{"post_id": "10154654213463155", "text": "Solo per voi, in diretta dall'Alsazia per il comizio di Marine Le Pen.", "post_text": "Solo per voi, in diretta dall'Alsazia per il comizio di Marine Le Pen.", "shared_text": "", "time": "2017-04-05 18:29:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154654213463155&id=252306033154", "link": null} +{"post_id": "10154653966693155", "text": "In 2 MINUTI li ho massacrati.\nI servi dell'Europa possono minacciarmi quanto vogliono ma io NON TACCIO!\nViva la Rete: la LIBERT\u00c0 non la ferma nessuno!\nCONDIVIDI se puoi, giornali e tiv\u00f9 lo nasconderanno.", "post_text": "In 2 MINUTI li ho massacrati.\nI servi dell'Europa possono minacciarmi quanto vogliono ma io NON TACCIO!\nViva la Rete: la LIBERT\u00c0 non la ferma nessuno!\nCONDIVIDI se puoi, giornali e tiv\u00f9 lo nasconderanno.", "shared_text": "", "time": "2017-04-05 17:36:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154653966693155&id=252306033154", "link": null} +{"post_id": "10154651278488155", "text": "Luigi, 76 anni, combatte per riavere indietro una casa occupata abusivamente dai ROM (che non lo fanno nemmeno entrare!).\nTutto normale??? ROBA DA MATTI!", "post_text": "Luigi, 76 anni, combatte per riavere indietro una casa occupata abusivamente dai ROM (che non lo fanno nemmeno entrare!).\nTutto normale??? ROBA DA MATTI!", "shared_text": "", "time": "2017-04-04 20:51:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154651278488155&id=252306033154", "link": null} +{"post_id": "10154650491208155", "text": "Qualche minuto insieme a voi, da Strasburgo", "post_text": "Qualche minuto insieme a voi, da Strasburgo", "shared_text": "", "time": "2017-04-04 14:45:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154650491208155&id=252306033154", "link": null} +{"post_id": "10154646902568155", "text": "Quello che faremo per la SICUREZZA quando saremo al governo per rimediare ai DISASTRI del PD:\n1) Basta indulti e svuotacarceri\n2) Basta sconti, serve CERTEZZA della pena\n3) Lavoro obbligatorio in carcere, come\u2026 Altro in Austria\n4) Legittima difesa SEMPRE e COMUNQUE!\n5) Sei mesi di servizio civile o militare obbligatorio, su base regionale, con nozioni di protezione civile, primo soccorso e addestramento all'uso di un'arma\n6) Espulsione di massa delle centinaia di migliaia di persone venute in Italia solo per DELINQUERE, perch\u00e9 NON SE NE PU\u00d2 PI\u00d9!\n\"Chi difende la propria vita non \u00e8 colpevole di omicidio\" dice il Catechismo.\nSiete con me? #Verona25aprile #legittimadifesasempre", "post_text": "Quello che faremo per la SICUREZZA quando saremo al governo per rimediare ai DISASTRI del PD:\n1) Basta indulti e svuotacarceri\n2) Basta sconti, serve CERTEZZA della pena\n3) Lavoro obbligatorio in carcere, come\u2026 Altro in Austria\n4) Legittima difesa SEMPRE e COMUNQUE!\n5) Sei mesi di servizio civile o militare obbligatorio, su base regionale, con nozioni di protezione civile, primo soccorso e addestramento all'uso di un'arma\n6) Espulsione di massa delle centinaia di migliaia di persone venute in Italia solo per DELINQUERE, perch\u00e9 NON SE NE PU\u00d2 PI\u00d9!\n\"Chi difende la propria vita non \u00e8 colpevole di omicidio\" dice il Catechismo.\nSiete con me? #Verona25aprile #legittimadifesasempre", "shared_text": "", "time": "2017-04-03 12:48:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154646902568155&id=252306033154", "link": null} +{"post_id": "10154644543543155", "text": "Aspettando Canale 5", "post_text": "Aspettando Canale 5", "shared_text": "", "time": "2017-04-02 13:57:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154644543543155&id=252306033154", "link": null} +{"post_id": "10154642665278155", "text": "PAZZESCO! Risorsa all'opera...\nQuesta mattina in piazza Cavallotti a Mantova, luogo un tempo tranquillo.\nE purtroppo non \u00e8 un pesce d'aprile.\nI cittadini mi scrivono che da anni la zona \u00e8 teatro di spettacoli\u2026 Altro all'insegna di alcolismo senza limiti. \u00c8 ora di DARE UNA BELLA RIPULITA.\nChe ne dite???\n#bastadegrado #bastapd #facciamopulizia", "post_text": "PAZZESCO! Risorsa all'opera...\nQuesta mattina in piazza Cavallotti a Mantova, luogo un tempo tranquillo.\nE purtroppo non \u00e8 un pesce d'aprile.\nI cittadini mi scrivono che da anni la zona \u00e8 teatro di spettacoli\u2026 Altro all'insegna di alcolismo senza limiti. \u00c8 ora di DARE UNA BELLA RIPULITA.\nChe ne dite???\n#bastadegrado #bastapd #facciamopulizia", "shared_text": "", "time": "2017-04-01 20:10:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154642665278155&id=252306033154", "link": null} +{"post_id": "10154639040148155", "text": "Le intercettazioni degli aspiranti terroristi islamici che volevano far saltare il ponte di Rialto a Venezia: \"Se domani faccio il giuramento e mi danno l'ordine sono obbligato a UCCIDERLI TUTTI, con Venezia guadagniamo subito il PARADISO\".\nChe belle persone che ci stiamo prendendo in casa...", "post_text": "Le intercettazioni degli aspiranti terroristi islamici che volevano far saltare il ponte di Rialto a Venezia: \"Se domani faccio il giuramento e mi danno l'ordine sono obbligato a UCCIDERLI TUTTI, con Venezia guadagniamo subito il PARADISO\".\nChe belle persone che ci stiamo prendendo in casa...", "shared_text": "", "time": "2017-04-01 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154639040148155&id=252306033154", "link": null} +{"post_id": "1390888897620699", "text": "Il FALSO Made in Italy ci costa 60 MILIARDI di euro all'anno!\nInvece di prendersela con Trump e con Putin, che l'Italia e l'Europa difendano i NOSTRI PRODOTTI!", "post_text": "Il FALSO Made in Italy ci costa 60 MILIARDI di euro all'anno!\nInvece di prendersela con Trump e con Putin, che l'Italia e l'Europa difendano i NOSTRI PRODOTTI!", "shared_text": "", "time": "2017-03-31 14:15:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1390888897620699&id=252306033154", "link": null} +{"post_id": "10154638847483155", "text": "Ricordate le ladre ROM che un giudice aveva messo ai domiciliari in un CAMPER a Milano (dove vivevano con 6 figli piccoli...)? Continuavano a RUBARE come se nulla fosse, e finalmente sono state arrestate dalla\u2026 Altro Polizia e portate in carcere, tra gli applausi degli abitanti del quartiere, che non ne potevano pi\u00f9.\nEppure scommetto che ci sar\u00e0 qualche buonista che dir\u00e0: POVERINE, avevano i bimbi piccoli...\nPiuttosto, poveri bimbi con madri del genere.\n#facciamopulizia", "post_text": "Ricordate le ladre ROM che un giudice aveva messo ai domiciliari in un CAMPER a Milano (dove vivevano con 6 figli piccoli...)? Continuavano a RUBARE come se nulla fosse, e finalmente sono state arrestate dalla\u2026 Altro Polizia e portate in carcere, tra gli applausi degli abitanti del quartiere, che non ne potevano pi\u00f9.\nEppure scommetto che ci sar\u00e0 qualche buonista che dir\u00e0: POVERINE, avevano i bimbi piccoli...\nPiuttosto, poveri bimbi con madri del genere.\n#facciamopulizia", "shared_text": "", "time": "2017-03-31 11:42:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154638847483155&id=252306033154", "link": null} +{"post_id": "10154636151773155", "text": "PAZZESCO.\nAvete 2 MINUTI? Guardate e CONDIVIDETE questo video.\nAbbiamo ragione di avere qualche preoccupazione?\nUna societ\u00e0 senza figli non ha futuro, e io, pur nel rispetto di tutto e di tutti, alla \"\u2026 Altroislamizzazione\" dell'Italia e dell'Europa non mi arrendo!\nCon noi al governo sar\u00e0: prima le nostre famiglie, prima la nostra cultura, prima le nostre lingue, prima la nostra civilt\u00e0, #primagliitaliani.", "post_text": "PAZZESCO.\nAvete 2 MINUTI? Guardate e CONDIVIDETE questo video.\nAbbiamo ragione di avere qualche preoccupazione?\nUna societ\u00e0 senza figli non ha futuro, e io, pur nel rispetto di tutto e di tutti, alla \"\u2026 Altroislamizzazione\" dell'Italia e dell'Europa non mi arrendo!\nCon noi al governo sar\u00e0: prima le nostre famiglie, prima la nostra cultura, prima le nostre lingue, prima la nostra civilt\u00e0, #primagliitaliani.", "shared_text": "", "time": "2017-03-30 20:19:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154636151773155&id=252306033154", "link": null} +{"post_id": "10154636616908155", "text": "DAI! Liberiamo Palermo, con #IsmaeleSindaco!\nP.s. Non dimenticate un \"Mi piace\" qui: www.facebook.com/ismaelesindaco", "post_text": "DAI! Liberiamo Palermo, con #IsmaeleSindaco!\nP.s. Non dimenticate un \"Mi piace\" qui: www.facebook.com/ismaelesindaco", "shared_text": "", "time": "2017-03-30 18:00:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154636616908155&id=252306033154", "link": null} +{"post_id": "10154633592553155", "text": "Invece di perseguitare il commerciante o l'artigiano, l'imprenditore o la partita Iva che non ce la fanon ad andare avanti, vorrei che lo Stato andasse a recuperare gli oltre 800 MILIONI di euro dovuti da societ\u00e0 che hanno spostato la residenza all'estero, fregando il fisco italiano!", "post_text": "Invece di perseguitare il commerciante o l'artigiano, l'imprenditore o la partita Iva che non ce la fanon ad andare avanti, vorrei che lo Stato andasse a recuperare gli oltre 800 MILIONI di euro dovuti da societ\u00e0 che hanno spostato la residenza all'estero, fregando il fisco italiano!", "shared_text": "", "time": "2017-03-30 10:36:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154633592553155&id=252306033154", "link": null} +{"post_id": "10154626863313155", "text": "PARLANO I NUMERI.\nNel 2016, 180 mila sbarcati, 123 mila domande, solo 5.000 riconosciuti come in fuga dalle guerre e dalle bombe.\nLa Guardia di Finanza vada a verificare tutti i bilanci di quelle coop e associazioni \"onlus\" che non sono buone, ma fanno gli SCAFISTI, arricchendosi con l'immigrazione CLANDESTINA!", "post_text": "PARLANO I NUMERI.\nNel 2016, 180 mila sbarcati, 123 mila domande, solo 5.000 riconosciuti come in fuga dalle guerre e dalle bombe.\nLa Guardia di Finanza vada a verificare tutti i bilanci di quelle coop e associazioni \"onlus\" che non sono buone, ma fanno gli SCAFISTI, arricchendosi con l'immigrazione CLANDESTINA!", "shared_text": "", "time": "2017-03-29 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154626863313155&id=252306033154", "link": null} +{"post_id": "10154626889658155", "text": "Eppure non \u00e8 difficile da capire: tutti i numeri dicono che l'Euro \u00e8 una moneta che ha avvantaggiato solo i TEDESCHI e ha FREGATO tutto il resto d'Europa!\n#Oltreleuro c'\u00e8 VITA! www.bastaeuro.org", "post_text": "Eppure non \u00e8 difficile da capire: tutti i numeri dicono che l'Euro \u00e8 una moneta che ha avvantaggiato solo i TEDESCHI e ha FREGATO tutto il resto d'Europa!\n#Oltreleuro c'\u00e8 VITA! www.bastaeuro.org", "shared_text": "", "time": "2017-03-29 12:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154626889658155&id=252306033154", "link": "http://www.bastaeuro.org/?fbclid=IwAR3_-jPDEFTLJcgOwcSHV41ICnWeSbMV0ZXGcbng7oufsR3AZPJDUJjG1y0"} +{"post_id": "10154631958643155", "text": "EFE JERRY OGBORU, \"profugo\" aspirante rapper, mantenuto a spese degli italiani a Bagnoli (Padova).\nSu Facebook scriveva, tra le altre cose, \"la legge sono io\".\nArrestato con l'accusa di tentato stupro.\nPer quanto mi riguarda, va RISPEDITO SUBITO IN GALERA IN NIGERIA, sperando che buttino la chiave.", "post_text": "EFE JERRY OGBORU, \"profugo\" aspirante rapper, mantenuto a spese degli italiani a Bagnoli (Padova).\nSu Facebook scriveva, tra le altre cose, \"la legge sono io\".\nArrestato con l'accusa di tentato stupro.\nPer quanto mi riguarda, va RISPEDITO SUBITO IN GALERA IN NIGERIA, sperando che buttino la chiave.", "shared_text": "", "time": "2017-03-29 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154631958643155&id=252306033154", "link": null} +{"post_id": "10154631804148155", "text": "POLETTI, DIMETTITI!\nFai girare!", "post_text": "POLETTI, DIMETTITI!\nFai girare!", "shared_text": "", "time": "2017-03-28 19:36:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154631804148155&id=252306033154", "link": null} +{"post_id": "10154621259503155", "text": "SOSTITUZIONE DI POPOLO!\nEcco che cosa si nasconde dietro la retorica delle Boldrini e dei \"buonisti\" di casa nostra.\nDA CONDIVIDERE.", "post_text": "SOSTITUZIONE DI POPOLO!\nEcco che cosa si nasconde dietro la retorica delle Boldrini e dei \"buonisti\" di casa nostra.\nDA CONDIVIDERE.", "shared_text": "", "time": "2017-03-28 10:44:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154621259503155&id=252306033154", "link": null} +{"post_id": "10154609835193155", "text": "GUARDATE QUESTO SERVIZIO!\nLa coop usa gli immigrati (gratis) per ristrutturarsi un albergo!\nROBA DA MATTI!\nProprio oggi pomeriggio alle 17 sar\u00f2 a Biella in piazza Santa Marta.\nVi aspetto.", "post_text": "GUARDATE QUESTO SERVIZIO!\nLa coop usa gli immigrati (gratis) per ristrutturarsi un albergo!\nROBA DA MATTI!\nProprio oggi pomeriggio alle 17 sar\u00f2 a Biella in piazza Santa Marta.\nVi aspetto.", "shared_text": "", "time": "2017-03-27 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154609835193155&id=252306033154", "link": null} +{"post_id": "10154621969308155", "text": "Qualche minuto insieme a voi, stanco ma contento.", "post_text": "Qualche minuto insieme a voi, stanco ma contento.", "shared_text": "", "time": "2017-03-25 20:24:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154621969308155&id=252306033154", "link": null} +{"post_id": "10154621103808155", "text": "Live dalla splendida Lampedusa!\n500.000 sbarchi e 12.000 morti in tre anni.\nQuesta non \u00e8 accoglienza, questa \u00e8 una vergogna.", "post_text": "Live dalla splendida Lampedusa!\n500.000 sbarchi e 12.000 morti in tre anni.\nQuesta non \u00e8 accoglienza, questa \u00e8 una vergogna.", "shared_text": "", "time": "2017-03-25 12:48:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154621103808155&id=252306033154", "link": null} +{"post_id": "10154618612483155", "text": "Vi pare normale che l'Europa non faccia nulla per l'INVASIONE di clandestini, mantenga le demenziali SANZIONI alla RUSSIA (l'unica potenza che l'ISIS lo combatte veramente) e foraggi di MILIARDI la TURCHIA che\u2026 Altro promette GUERRE SANTE in casa nostra, e purtroppo poi, come dimostra Londra, gli atti di guerra avvengono veramente?\n\u00c8 da POPULISTI affermare che questa EUROPA \u00e8 da RIBALTARE da cima a fondo???", "post_text": "Vi pare normale che l'Europa non faccia nulla per l'INVASIONE di clandestini, mantenga le demenziali SANZIONI alla RUSSIA (l'unica potenza che l'ISIS lo combatte veramente) e foraggi di MILIARDI la TURCHIA che\u2026 Altro promette GUERRE SANTE in casa nostra, e purtroppo poi, come dimostra Londra, gli atti di guerra avvengono veramente?\n\u00c8 da POPULISTI affermare che questa EUROPA \u00e8 da RIBALTARE da cima a fondo???", "shared_text": "", "time": "2017-03-24 15:48:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154618612483155&id=252306033154", "link": null} +{"post_id": "10154616250258155", "text": "Buon viaggio al mitico Mago Zurl\u00ec (Cino Tortorella), amico della nostra infanzia e protagonista di una tiv\u00f9 bella e intelligente.\nVi ripropongo la mitica \"44 GATTI\" del 1968.", "post_text": "Buon viaggio al mitico Mago Zurl\u00ec (Cino Tortorella), amico della nostra infanzia e protagonista di una tiv\u00f9 bella e intelligente.\nVi ripropongo la mitica \"44 GATTI\" del 1968.", "shared_text": "", "time": "2017-03-23 17:25:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154616250258155&id=252306033154", "link": null} +{"post_id": "10154615580063155", "text": "Erdogan: \"Turchi in Europa, fate 5 figli cos\u00ec COMANDEREMO noi\".\nIl ministro degli Esteri turco: \"Inizieranno GUERRE SANTE in Europa\".\nE l'Unione Europea che cosa fa? Regala alla Turchia 12 MILIARDI di euro!!!\u2026 Altro\nContro il terrorismo, contro la colonizzazione, contro il progetto di EURABIA che Oriana Fallaci aveva gi\u00e0 lucidamente previsto, vanno combattuti innanzitutto i COMPLICI che abbiamo in casa, a Roma e a Bruxelles.\nSu questo noi, insieme ai nostri alleati europei, siamo e saremo sempre in prima linea.", "post_text": "Erdogan: \"Turchi in Europa, fate 5 figli cos\u00ec COMANDEREMO noi\".\nIl ministro degli Esteri turco: \"Inizieranno GUERRE SANTE in Europa\".\nE l'Unione Europea che cosa fa? Regala alla Turchia 12 MILIARDI di euro!!!\u2026 Altro\nContro il terrorismo, contro la colonizzazione, contro il progetto di EURABIA che Oriana Fallaci aveva gi\u00e0 lucidamente previsto, vanno combattuti innanzitutto i COMPLICI che abbiamo in casa, a Roma e a Bruxelles.\nSu questo noi, insieme ai nostri alleati europei, siamo e saremo sempre in prima linea.", "shared_text": "", "time": "2017-03-23 12:40:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154615580063155&id=252306033154", "link": null} +{"post_id": "10154613391068155", "text": "I primi video dell'ATTACCO TERRORISTICO di oggi a Londra.\nUcciso l'INFAME attentatore, una preghiera per gli innocenti che ha ammazzato, finora se ne contano purtroppo tre, tra cui uno dei poliziotti di guardia al Parlamento. Venti persone ferite, una citt\u00e0 sconvolta. BASTA!!!", "post_text": "I primi video dell'ATTACCO TERRORISTICO di oggi a Londra.\nUcciso l'INFAME attentatore, una preghiera per gli innocenti che ha ammazzato, finora se ne contano purtroppo tre, tra cui uno dei poliziotti di guardia al Parlamento. Venti persone ferite, una citt\u00e0 sconvolta. BASTA!!!", "shared_text": "", "time": "2017-03-22 19:33:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154613391068155&id=252306033154", "link": null} +{"post_id": "10154597016163155", "text": "Chiunque usi la violenza va messo nell'angolo. Dicono: \"Per\u00f2 Salvini...\". NO, non ci sono \"per\u00f2\"!\nCerti cosiddetti \"democratici\", quanto a pacificit\u00e0, civilt\u00e0, rispetto per le citt\u00e0 e per l'arredo urbano, dalle manifestazioni della Lega ha SOLO da IMPARARE!", "post_text": "Chiunque usi la violenza va messo nell'angolo. Dicono: \"Per\u00f2 Salvini...\". NO, non ci sono \"per\u00f2\"!\nCerti cosiddetti \"democratici\", quanto a pacificit\u00e0, civilt\u00e0, rispetto per le citt\u00e0 e per l'arredo urbano, dalle manifestazioni della Lega ha SOLO da IMPARARE!", "shared_text": "", "time": "2017-03-21 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154597016163155&id=252306033154", "link": null} +{"post_id": "10154607602643155", "text": "\"Milano OSTAGGIO di comunit\u00e0 che non sembrano intenzionate a integrarsi, \u00e8 uno SCHIFO, c'\u00e8 TROPPA GENTE che DELINQUE\". Salvini? No, lo dice lo stilista Alviero Martini, aggredito e rapinato da immigrati dell'Est in pieno centro e in pieno giorno.\nDedicato a quelli che \"i reati sono diminuiti...\"!", "post_text": "\"Milano OSTAGGIO di comunit\u00e0 che non sembrano intenzionate a integrarsi, \u00e8 uno SCHIFO, c'\u00e8 TROPPA GENTE che DELINQUE\". Salvini? No, lo dice lo stilista Alviero Martini, aggredito e rapinato da immigrati dell'Est in pieno centro e in pieno giorno.\nDedicato a quelli che \"i reati sono diminuiti...\"!", "shared_text": "", "time": "2017-03-20 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154607602643155&id=252306033154", "link": null} +{"post_id": "10154597281088155", "text": "NO alla marmellata del pensiero unico, S\u00cc al confronto delle idee!\nAPERTE le iscrizioni alla TERZA edizione della Scuola di Formazione Politica. Sei domeniche da sottrarre al vostro tempo, ma ne vale la pena.\u2026 Altro PENSO, CONOSCO, CREO! E #andiamoagovernare.\nTutte le info QUI: http://www.scuoladiformazionepolitica.it/scuola-formazione-politica-2017-2018/", "post_text": "NO alla marmellata del pensiero unico, S\u00cc al confronto delle idee!\nAPERTE le iscrizioni alla TERZA edizione della Scuola di Formazione Politica. Sei domeniche da sottrarre al vostro tempo, ma ne vale la pena.\u2026 Altro PENSO, CONOSCO, CREO! E #andiamoagovernare.\nTutte le info QUI: http://www.scuoladiformazionepolitica.it/scuola-formazione-politica-2017-2018/", "shared_text": "", "time": "2017-03-20 18:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154597281088155&id=252306033154", "link": "http://www.scuoladiformazionepolitica.it/scuola-formazione-politica-2017-2018/?fbclid=IwAR2C2e8MfWZ7cVR4BsU-dzPIDu5qDa_YxhApgy7Vx6GkUg5SabUVymzC9FU"} +{"post_id": "10154606902928155", "text": "Dall'ospedale fondato da Giuseppe Verdi a Villanova sull'Arda, in provincia di Piacenza, un'eccellenza della nostra sanit\u00e0 che purtroppo \u00e8 a RISCHIO. Sono qui per dare voce ai cittadini, ai comitati e ai pazienti.", "post_text": "Dall'ospedale fondato da Giuseppe Verdi a Villanova sull'Arda, in provincia di Piacenza, un'eccellenza della nostra sanit\u00e0 che purtroppo \u00e8 a RISCHIO. Sono qui per dare voce ai cittadini, ai comitati e ai pazienti.", "shared_text": "", "time": "2017-03-20 11:16:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154606902928155&id=252306033154", "link": null} +{"post_id": "10154594365323155", "text": "ROBA DA MATTI!\nVi garantisco che quando saremo al governo al posto di Librandi e dei suoi amici del Pd, su Made in Italy, lavoro, sicurezza, legittima difesa e tanto altro ancora faremo esattamente il CONTRARIO di quello che pensano loro!", "post_text": "ROBA DA MATTI!\nVi garantisco che quando saremo al governo al posto di Librandi e dei suoi amici del Pd, su Made in Italy, lavoro, sicurezza, legittima difesa e tanto altro ancora faremo esattamente il CONTRARIO di quello che pensano loro!", "shared_text": "", "time": "2017-03-20 11:07:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154594365323155&id=252306033154", "link": null} +{"post_id": "10154599583868155", "text": "I rischi del \"mestiere\" di chi mette in pericolo la vita degli altri.\nVi consiglio, in particolare, di ascoltare le parole del vescovo di Chioggia, monsignor Adriano Tessarollo.\n#legittimadifesasempre #Verona25aprile", "post_text": "I rischi del \"mestiere\" di chi mette in pericolo la vita degli altri.\nVi consiglio, in particolare, di ascoltare le parole del vescovo di Chioggia, monsignor Adriano Tessarollo.\n#legittimadifesasempre #Verona25aprile", "shared_text": "", "time": "2017-03-19 09:02:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154599583868155&id=252306033154", "link": null} +{"post_id": "10154599699158155", "text": "Tanti chiacchierano sulla necessit\u00e0 di cambiare l'atteggiamento verso l'Europa, ma poi non muovono un dito! Insieme, da Nord a Sud, andiamo a Bruxelles a riprenderci le CHIAVI di casa nostra!", "post_text": "Tanti chiacchierano sulla necessit\u00e0 di cambiare l'atteggiamento verso l'Europa, ma poi non muovono un dito! Insieme, da Nord a Sud, andiamo a Bruxelles a riprenderci le CHIAVI di casa nostra!", "shared_text": "", "time": "2017-03-17 19:34:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154599699158155&id=252306033154", "link": null} +{"post_id": "10154594199133155", "text": "In 3 minuti, presente l'inutile Gentiloni, sputtano l'Europa dei BANCHIERI che finanzia il regime TURCO e ROVINA le nostre imprese e i nostri lavoratori!\nLe tiv\u00f9 lo censureranno, aiutaci e CONDIVIDI!", "post_text": "In 3 minuti, presente l'inutile Gentiloni, sputtano l'Europa dei BANCHIERI che finanzia il regime TURCO e ROVINA le nostre imprese e i nostri lavoratori!\nLe tiv\u00f9 lo censureranno, aiutaci e CONDIVIDI!", "shared_text": "", "time": "2017-03-15 13:13:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154594199133155&id=252306033154", "link": null} +{"post_id": "10154591902998155", "text": "1) In Italia serve CERTEZZA della pena, se sbagli PAGHI!\n2) Il mio modello non \u00e8 il Far West, ma la PACIFICA Svizzera, dove i cittadini sono addestrati dallo Stato all'uso delle armi, la criminalit\u00e0 \u00e8 quasi\u2026 Altro inesistente e un ladro prima di entrarti in casa ci pensa due volte!\nSe entri in piedi e esci steso TE LA SEI ANDATA A CERCARE, non devo essere io quello processato!\nSiete d'accordo?\n#legittimadifesasempre #Verona25aprile", "post_text": "1) In Italia serve CERTEZZA della pena, se sbagli PAGHI!\n2) Il mio modello non \u00e8 il Far West, ma la PACIFICA Svizzera, dove i cittadini sono addestrati dallo Stato all'uso delle armi, la criminalit\u00e0 \u00e8 quasi\u2026 Altro inesistente e un ladro prima di entrarti in casa ci pensa due volte!\nSe entri in piedi e esci steso TE LA SEI ANDATA A CERCARE, non devo essere io quello processato!\nSiete d'accordo?\n#legittimadifesasempre #Verona25aprile", "shared_text": "", "time": "2017-03-15 10:54:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154591902998155&id=252306033154", "link": null} +{"post_id": "10154592378303155", "text": "Ribadiamolo una volta per tutte: la TURCHIA non \u00e8 e non sar\u00e0 MAI EUROPA!", "post_text": "Ribadiamolo una volta per tutte: la TURCHIA non \u00e8 e non sar\u00e0 MAI EUROPA!", "shared_text": "", "time": "2017-03-14 19:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154592378303155&id=252306033154", "link": null} +{"post_id": "10154592144603155", "text": "Qui Strasburgo, vi racconto le demenziali nuove norme del Parlamento europeo che, con la scusa dell'ISIS, complicano la vita a chi vuole acquistare e detenere un'arma (con i voti di PD, 5 STELLE e Forza Italia).\n#legittimadifesasempre", "post_text": "Qui Strasburgo, vi racconto le demenziali nuove norme del Parlamento europeo che, con la scusa dell'ISIS, complicano la vita a chi vuole acquistare e detenere un'arma (con i voti di PD, 5 STELLE e Forza Italia).\n#legittimadifesasempre", "shared_text": "", "time": "2017-03-14 15:24:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154592144603155&id=252306033154", "link": null} +{"post_id": "10154589962658155", "text": "Evviva l'integrazione...", "post_text": "Evviva l'integrazione...", "shared_text": "", "time": "2017-03-13 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154589962658155&id=252306033154", "link": null} +{"post_id": "10154583419093155", "text": "In diretta da Napoli: Idee, Cuore, Coraggio, seguite con noi, Amici! #primagliitaliani", "post_text": "In diretta da Napoli: Idee, Cuore, Coraggio, seguite con noi, Amici! #primagliitaliani", "shared_text": "", "time": "2017-03-11 18:42:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154583419093155&id=252306033154", "link": null} +{"post_id": "10154579432983155", "text": "DA ASCOLTARE E CONDIVIDERE!\n\"Volete difendervi? Dovete fare prima una INDAGINE NOTTURNA per capire se chi vi sta aggredendo sta mettendo a rischio la vostra vita\"! Non lo dice Salvini, ma l'avvocato Giulia\u2026 Altro Bongiorno, che spiega perfettamente l'assurdit\u00e0 della legislazione italiana.\nSVEGLIA! La proposta di legge della Lega, n. 2892, sulla LEGITTIMA DIFESA SEMPRE giace in Parlamento dal 18 febbraio 2015!", "post_text": "DA ASCOLTARE E CONDIVIDERE!\n\"Volete difendervi? Dovete fare prima una INDAGINE NOTTURNA per capire se chi vi sta aggredendo sta mettendo a rischio la vostra vita\"! Non lo dice Salvini, ma l'avvocato Giulia\u2026 Altro Bongiorno, che spiega perfettamente l'assurdit\u00e0 della legislazione italiana.\nSVEGLIA! La proposta di legge della Lega, n. 2892, sulla LEGITTIMA DIFESA SEMPRE giace in Parlamento dal 18 febbraio 2015!", "shared_text": "", "time": "2017-03-10 16:59:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154579432983155&id=252306033154", "link": null} +{"post_id": "10154579474173155", "text": "#Napoli non \u00e8 rappresentata da pochi facinorosi. Domani le Forze dell'Ordine, che ringrazio, saranno in grado di fare benissimo il loro lavoro. NESSUNO riuscir\u00e0 a rovinare una giornata di FESTA, di proposta e\u2026 Altro di liberazione.\nAncora pochi posti disponibili, aspetto domani tante mamme, pap\u00e0 e bambini, per un'occasione di GIOIA, non di odio.\nPartecipa anche tu, scrivi a: evento.napoli@noiconsalvini.org", "post_text": "#Napoli non \u00e8 rappresentata da pochi facinorosi. Domani le Forze dell'Ordine, che ringrazio, saranno in grado di fare benissimo il loro lavoro. NESSUNO riuscir\u00e0 a rovinare una giornata di FESTA, di proposta e\u2026 Altro di liberazione.\nAncora pochi posti disponibili, aspetto domani tante mamme, pap\u00e0 e bambini, per un'occasione di GIOIA, non di odio.\nPartecipa anche tu, scrivi a: evento.napoli@noiconsalvini.org", "shared_text": "", "time": "2017-03-10 12:36:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154579474173155&id=252306033154", "link": null} +{"post_id": "10154577477328155", "text": "\"Salvini INNEGGIA alla MORTE di migliaia di uomini, donne e bambini nel Mediterraneo\".\nQuerelina in arrivo per questo \"signore\"...", "post_text": "\"Salvini INNEGGIA alla MORTE di migliaia di uomini, donne e bambini nel Mediterraneo\".\nQuerelina in arrivo per questo \"signore\"...", "shared_text": "", "time": "2017-03-09 20:40:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154577477328155&id=252306033154", "link": null} +{"post_id": "10154576160433155", "text": "Proposta Lega in Parlamento: qualunque azienda abbia preso denaro pubblico non pu\u00f2 permettersi di licenziare in Italia e assumere all'estero! Vale per la Fiat, che ha preso 8 MILIARDI dallo Stato, e per tutte le altre!\nSiete d'accordo?\n#primagliitaliani", "post_text": "Proposta Lega in Parlamento: qualunque azienda abbia preso denaro pubblico non pu\u00f2 permettersi di licenziare in Italia e assumere all'estero! Vale per la Fiat, che ha preso 8 MILIARDI dallo Stato, e per tutte le altre!\nSiete d'accordo?\n#primagliitaliani", "shared_text": "", "time": "2017-03-09 10:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154576160433155&id=252306033154", "link": null} +{"post_id": "10154570995438155", "text": "E basta BUONISMO e COCCOLE per i delinquenti!\nEntri in casa mia per fare del male??? IO MI DIFENDO con ogni mezzo... Se non esci in piedi \u00e8 un problema tuo!", "post_text": "E basta BUONISMO e COCCOLE per i delinquenti!\nEntri in casa mia per fare del male??? IO MI DIFENDO con ogni mezzo... Se non esci in piedi \u00e8 un problema tuo!", "shared_text": "", "time": "2017-03-07 19:30:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154570995438155&id=252306033154", "link": null} +{"post_id": "10154567914833155", "text": "Cittadini in rivolta a Zerman (Mogliano Veneto), i \"profughi\" ospitati in zona hanno preso l'abitudine di usare i bagni del CIMITERO, senza troppi riguardi... Ascoltate la testimonianza. W l'integrazione!", "post_text": "Cittadini in rivolta a Zerman (Mogliano Veneto), i \"profughi\" ospitati in zona hanno preso l'abitudine di usare i bagni del CIMITERO, senza troppi riguardi... Ascoltate la testimonianza. W l'integrazione!", "shared_text": "", "time": "2017-03-07 13:03:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154567914833155&id=252306033154", "link": null} +{"post_id": "10154567565138155", "text": "Alla faccia di kompagni e sinistri vari che organizzano la manifestazione #Maiconsalvini (che originaloni!), questo sabato alle 17 sar\u00f2 a #Napoli, per dare voce e orgoglio al Sud che vuole riprendere in mano il proprio Futuro!", "post_text": "Alla faccia di kompagni e sinistri vari che organizzano la manifestazione #Maiconsalvini (che originaloni!), questo sabato alle 17 sar\u00f2 a #Napoli, per dare voce e orgoglio al Sud che vuole riprendere in mano il proprio Futuro!", "shared_text": "", "time": "2017-03-07 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154567565138155&id=252306033154", "link": null} +{"post_id": "10154562988768155", "text": "La storia di un Vigile del Fuoco in prima linea nell'aiuto ai terremotati: Renzi e il PD danno il bonus... e se lo riprendono in un colpo solo! #BASTAPD #VOTOSUBITO", "post_text": "La storia di un Vigile del Fuoco in prima linea nell'aiuto ai terremotati: Renzi e il PD danno il bonus... e se lo riprendono in un colpo solo! #BASTAPD #VOTOSUBITO", "shared_text": "", "time": "2017-03-05 15:00:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154562988768155&id=252306033154", "link": null} +{"post_id": "10154497146238155", "text": "Chi fa questo \u00e8 una BESTIA! #facciamopulizia #votosubito", "post_text": "Chi fa questo \u00e8 una BESTIA! #facciamopulizia #votosubito", "shared_text": "", "time": "2017-03-05 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154497146238155&id=252306033154", "link": null} +{"post_id": "10154563110468155", "text": "Renziani contro renziani, Pd contro Pd, gole profonde, tessere finte, fughe di notizie... E intanto Parlamento e Governo sono FERMI. Ma vi pare normale???\nCondividi anche tu se pensi che sia ora di dire: #BASTAPD #votosubito", "post_text": "Renziani contro renziani, Pd contro Pd, gole profonde, tessere finte, fughe di notizie... E intanto Parlamento e Governo sono FERMI. Ma vi pare normale???\nCondividi anche tu se pensi che sia ora di dire: #BASTAPD #votosubito", "shared_text": "", "time": "2017-03-04 19:26:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154563110468155&id=252306033154", "link": null} +{"post_id": "10154559388458155", "text": "ASCOLTATE questo fenomeno, circondato da \"migranti\" telefonino-e-cappellino (evidentemente molto patiti...): \"L'11 marzo CACCEREMO SALVINI e tutti i RAZZISTI DI MERDA, non c'\u00e8 differenza tra chi scappa dalla\u2026 Altro guerra e tra chi viene qui a cercare lavoro! Accogliamo TUTTI!\".\nSFIGATI che non siete altro!\nAlla faccia vostra, sabato 11 marzo alle 17 saremo al Palacongressi di NAPOLI in migliaia per dire: #primagliitaliani!\nP.s. Vuoi partecipare? Scrivi a: evento.napoli@noiconsalvini.org", "post_text": "ASCOLTATE questo fenomeno, circondato da \"migranti\" telefonino-e-cappellino (evidentemente molto patiti...): \"L'11 marzo CACCEREMO SALVINI e tutti i RAZZISTI DI MERDA, non c'\u00e8 differenza tra chi scappa dalla\u2026 Altro guerra e tra chi viene qui a cercare lavoro! Accogliamo TUTTI!\".\nSFIGATI che non siete altro!\nAlla faccia vostra, sabato 11 marzo alle 17 saremo al Palacongressi di NAPOLI in migliaia per dire: #primagliitaliani!\nP.s. Vuoi partecipare? Scrivi a: evento.napoli@noiconsalvini.org", "shared_text": "", "time": "2017-03-04 16:01:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154559388458155&id=252306033154", "link": null} +{"post_id": "10154556574033155", "text": "Le Iene portano bene!", "post_text": "Le Iene portano bene!", "shared_text": "", "time": "2017-03-04 12:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154556574033155&id=252306033154", "link": null} +{"post_id": "10154559314963155", "text": "Chi sfider\u00e0 Renzi e Grillo, e con quale programma, saranno gli italiani a deciderlo. Ma sicuramente dove ci sono Alfano, Verdini, Cicchitto e Casini non ci saremo n\u00e9 io n\u00e9 la Lega!", "post_text": "Chi sfider\u00e0 Renzi e Grillo, e con quale programma, saranno gli italiani a deciderlo. Ma sicuramente dove ci sono Alfano, Verdini, Cicchitto e Casini non ci saremo n\u00e9 io n\u00e9 la Lega!", "shared_text": "", "time": "2017-03-04 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154559314963155&id=252306033154", "link": null} +{"post_id": "10154559234628155", "text": "Amici, parenti e alleati indagati e condannati, governo bloccato e parlamentari incatenati alla poltrona. I problemi degli italiani? Quelli, per loro, possono aspettare...\nBASTA!!! Che cosa deve succedere ancora perch\u00e9 si vada a votare? #votosubito", "post_text": "Amici, parenti e alleati indagati e condannati, governo bloccato e parlamentari incatenati alla poltrona. I problemi degli italiani? Quelli, per loro, possono aspettare...\nBASTA!!! Che cosa deve succedere ancora perch\u00e9 si vada a votare? #votosubito", "shared_text": "", "time": "2017-03-03 12:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154559234628155&id=252306033154", "link": null} +{"post_id": "10154550197218155", "text": "Qualche minuto con voi insieme a Maroni, Zaia e Rixi: dal modello di buon governo delle regioni al modello di buon governo per tutto il Paese.", "post_text": "Qualche minuto con voi insieme a Maroni, Zaia e Rixi: dal modello di buon governo delle regioni al modello di buon governo per tutto il Paese.", "shared_text": "", "time": "2017-02-27 16:36:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154550197218155&id=252306033154", "link": null} +{"post_id": "10154549787303155", "text": "Vivere con la carovana ROM sotto casa... Manderei qui a fare un giro certi sinistri-buonisti...", "post_text": "Vivere con la carovana ROM sotto casa... Manderei qui a fare un giro certi sinistri-buonisti...", "shared_text": "", "time": "2017-02-27 15:14:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154549787303155&id=252306033154", "link": null} +{"post_id": "10154547313498155", "text": "\"Gli immigrati fanno i lavori che gli italiani non vogliono pi\u00f9 fare!\". BUM! Vi offro due buonisti al prezzo di uno!\nP.s. Ma secondo voi perch\u00e9 urlano sempre come dannati?", "post_text": "\"Gli immigrati fanno i lavori che gli italiani non vogliono pi\u00f9 fare!\". BUM! Vi offro due buonisti al prezzo di uno!\nP.s. Ma secondo voi perch\u00e9 urlano sempre come dannati?", "shared_text": "", "time": "2017-02-26 18:04:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154547313498155&id=252306033154", "link": null} +{"post_id": "10154547293628155", "text": "Benvenuti nel magico mondo del \"professor\" Cecchi Paone. La soluzione per l'Italia? 150 MILA IMMIGRATI all'anno, altrimenti \"non avremo futuro\"! Lo vada a raccontare ai 4 MILIONI di disoccupati italiani!\nGli ho risposto per le rime, ho fatto male??? #primagliitaliani", "post_text": "Benvenuti nel magico mondo del \"professor\" Cecchi Paone. La soluzione per l'Italia? 150 MILA IMMIGRATI all'anno, altrimenti \"non avremo futuro\"! Lo vada a raccontare ai 4 MILIONI di disoccupati italiani!\nGli ho risposto per le rime, ho fatto male??? #primagliitaliani", "shared_text": "", "time": "2017-02-26 14:00:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154547293628155&id=252306033154", "link": null} +{"post_id": "10154543104843155", "text": "C'\u00e8 chi vive su altri pianeti!", "post_text": "C'\u00e8 chi vive su altri pianeti!", "shared_text": "", "time": "2017-02-26 11:01:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154543104843155&id=252306033154", "link": null} +{"post_id": "10154542930828155", "text": "\"Se certe cose succedono ad altri sono tutti BUONISTI, ma quando succede a te...\"\nDitelo a questo pap\u00e0 che \u00e8 vietato usare il termine CLANDESTINO.\nUn abbraccio a Felice Tavernelli, un pensiero e una preghiera\u2026 Altro per Federica, uccisa da un delinquente, Besik Jikidze, gi\u00e0 espulso, che dunque non doveva essere pi\u00f9 in Italia.\nLa politica deve intervenire PRIMA che accadano tragedie simili. CERTEZZA della pena e CERTEZZA delle espulsioni saranno tra le mie priorit\u00e0 di governo. #votosubito", "post_text": "\"Se certe cose succedono ad altri sono tutti BUONISTI, ma quando succede a te...\"\nDitelo a questo pap\u00e0 che \u00e8 vietato usare il termine CLANDESTINO.\nUn abbraccio a Felice Tavernelli, un pensiero e una preghiera\u2026 Altro per Federica, uccisa da un delinquente, Besik Jikidze, gi\u00e0 espulso, che dunque non doveva essere pi\u00f9 in Italia.\nLa politica deve intervenire PRIMA che accadano tragedie simili. CERTEZZA della pena e CERTEZZA delle espulsioni saranno tra le mie priorit\u00e0 di governo. #votosubito", "shared_text": "", "time": "2017-02-24 17:09:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154542930828155&id=252306033154", "link": null} +{"post_id": "10154540199113155", "text": "Questo tizio dice \"IO ODIO SALVINI\" e pensa di aver capito tutto... Io invece non odio proprio nessuno, e apprezzo i tanti stranieri perbene che lavorano e rispettano le nostre leggi e la nostra cultura.\nMa le\u2026 Altro migliaia di immigrati che vengono qui a pretendere, e magari a delinquere, io li chiamo CLAN-DE-STI-NI. Condannatemi pure!", "post_text": "Questo tizio dice \"IO ODIO SALVINI\" e pensa di aver capito tutto... Io invece non odio proprio nessuno, e apprezzo i tanti stranieri perbene che lavorano e rispettano le nostre leggi e la nostra cultura.\nMa le\u2026 Altro migliaia di immigrati che vengono qui a pretendere, e magari a delinquere, io li chiamo CLAN-DE-STI-NI. Condannatemi pure!", "shared_text": "", "time": "2017-02-23 17:08:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154540199113155&id=252306033154", "link": null} +{"post_id": "10154537282093155", "text": "Condannato a 2 anni e 8 mesi e 325 MILA euro di RISARCIMENTO alla famiglia del delinquente moldavo che aveva tentato di derubarlo nottetempo, aggredendolo. Se la condanna verr\u00e0 confermata in appello, questo\u2026 Altro tabaccaio dovrebbe chiudere la sua attivit\u00e0. QUESTA \u00c8 FOLLIA!\nChe cosa aspetta il Parlamento a discutere la proposta di legge della Lega (n. 2892 del 18 febbraio 2015)???\nLa DIFESA \u00e8 SEMPRE LEGITTIMA! #iostocoltabaccaio", "post_text": "Condannato a 2 anni e 8 mesi e 325 MILA euro di RISARCIMENTO alla famiglia del delinquente moldavo che aveva tentato di derubarlo nottetempo, aggredendolo. Se la condanna verr\u00e0 confermata in appello, questo\u2026 Altro tabaccaio dovrebbe chiudere la sua attivit\u00e0. QUESTA \u00c8 FOLLIA!\nChe cosa aspetta il Parlamento a discutere la proposta di legge della Lega (n. 2892 del 18 febbraio 2015)???\nLa DIFESA \u00e8 SEMPRE LEGITTIMA! #iostocoltabaccaio", "shared_text": "", "time": "2017-02-23 11:49:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154537282093155&id=252306033154", "link": null} +{"post_id": "10154537684803155", "text": "5 MINUTI dedicati ai rosiconi! Saranno tutti \"nazifascisti, razzisti, pericolosi estremisti\" quelli del pubblico che applaudivano?\nFAI GIRARE, alla faccia di buonisti e kompagni!", "post_text": "5 MINUTI dedicati ai rosiconi! Saranno tutti \"nazifascisti, razzisti, pericolosi estremisti\" quelli del pubblico che applaudivano?\nFAI GIRARE, alla faccia di buonisti e kompagni!", "shared_text": "", "time": "2017-02-22 19:33:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154537684803155&id=252306033154", "link": null} +{"post_id": "10154535622428155", "text": "LA MAMMA DI DAVID: PERCH\u00c9 IL SUO ASSASSINO, GI\u00c0 ESPULSO, ERA ANCORA IN ITALIA? PERCH\u00c9???\nAmine Aassoul, detto \u2018Aziz\u2019, il marocchino che, UBRIACO e DROGATO, uccise David Raggi per strada, conficcandogli un\u2026 Altro coltello in gola, non avrebbe dovuto trovarsi in Umbria, n\u00e9 tantomeno in Italia.\nEra \"RICHIEDENTE ASILO\" (parolina magica) senza averne diritto.\nE aveva una fedina penale lunga tre pagine. Eppure circolava LIBERO!!!\nLa famiglia di David ha denunciato, per questo motivo, sia il Ministero dell'Interno che quello della Giustizia.\nIl delinquente, condannato l'anno scorso a 30 anni di carcere, si \u00e8 salvato dall'ergastolo: gi\u00e0 questa \u00e8 una VERGOGNA. Ora se ne aggiunge un'altra: lo Stato non vuole riconoscere alla famiglia alcun RISARCIMENTO (che sarebbe stato devoluto in beneficenza). Il motivo? Il povero David guadagnava pi\u00f9 di 11mila 528 euro l'anno. Io dico solo: FATE SCHIFO!\nCERTEZZA della pena ed ESPULSIONE, SENZA SE e SENZA MA, di clandestini e delinquenti!\nSe lo Stato avesse fatto lo Stato, David sarebbe ancora vivo. Un abbraccio alla signora Bruna.", "post_text": "LA MAMMA DI DAVID: PERCH\u00c9 IL SUO ASSASSINO, GI\u00c0 ESPULSO, ERA ANCORA IN ITALIA? PERCH\u00c9???\nAmine Aassoul, detto \u2018Aziz\u2019, il marocchino che, UBRIACO e DROGATO, uccise David Raggi per strada, conficcandogli un\u2026 Altro coltello in gola, non avrebbe dovuto trovarsi in Umbria, n\u00e9 tantomeno in Italia.\nEra \"RICHIEDENTE ASILO\" (parolina magica) senza averne diritto.\nE aveva una fedina penale lunga tre pagine. Eppure circolava LIBERO!!!\nLa famiglia di David ha denunciato, per questo motivo, sia il Ministero dell'Interno che quello della Giustizia.\nIl delinquente, condannato l'anno scorso a 30 anni di carcere, si \u00e8 salvato dall'ergastolo: gi\u00e0 questa \u00e8 una VERGOGNA. Ora se ne aggiunge un'altra: lo Stato non vuole riconoscere alla famiglia alcun RISARCIMENTO (che sarebbe stato devoluto in beneficenza). Il motivo? Il povero David guadagnava pi\u00f9 di 11mila 528 euro l'anno. Io dico solo: FATE SCHIFO!\nCERTEZZA della pena ed ESPULSIONE, SENZA SE e SENZA MA, di clandestini e delinquenti!\nSe lo Stato avesse fatto lo Stato, David sarebbe ancora vivo. Un abbraccio alla signora Bruna.", "shared_text": "", "time": "2017-02-22 13:33:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154535622428155&id=252306033154", "link": null} +{"post_id": "10154535467748155", "text": "De Magistris insiste su di me: \"NAZIFASCISTA\", \"RAZZISTA\", \"COMPORTAMENTI CRIMINALI\"!\nDa vero democratico quale sono, l'11 MARZO a NAPOLI, le porte del Teatro Mediterraneo saranno aperte anche per il sindaco. Non ho certo paura delle minacce e degli insulti di un chiacchierone di sinistra.", "post_text": "De Magistris insiste su di me: \"NAZIFASCISTA\", \"RAZZISTA\", \"COMPORTAMENTI CRIMINALI\"!\nDa vero democratico quale sono, l'11 MARZO a NAPOLI, le porte del Teatro Mediterraneo saranno aperte anche per il sindaco. Non ho certo paura delle minacce e degli insulti di un chiacchierone di sinistra.", "shared_text": "", "time": "2017-02-21 17:25:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154535467748155&id=252306033154", "link": null} +{"post_id": "10154533538533155", "text": "PAZZESCO!!!\nQuesti buonisti di sinistra facevano la morale anti-razzista ai sindaci leghisti e poi...", "post_text": "PAZZESCO!!!\nQuesti buonisti di sinistra facevano la morale anti-razzista ai sindaci leghisti e poi...", "shared_text": "", "time": "2017-02-20 22:12:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154533538533155&id=252306033154", "link": null} +{"post_id": "10154532928718155", "text": "Qualche minuto dell'oretta di questa mattina a RTL 102.5 in diretta con gli ascoltatori. Non so a voi, ma le manfrine del Pd, che tengono tutti in ostaggio, cominciano a darmi il voltastomaco!\nIDEE CHIARE e CORAGGIO: gli ITALIANI hanno FRETTA! #votosubito", "post_text": "Qualche minuto dell'oretta di questa mattina a RTL 102.5 in diretta con gli ascoltatori. Non so a voi, ma le manfrine del Pd, che tengono tutti in ostaggio, cominciano a darmi il voltastomaco!\nIDEE CHIARE e CORAGGIO: gli ITALIANI hanno FRETTA! #votosubito", "shared_text": "", "time": "2017-02-20 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154532928718155&id=252306033154", "link": null} +{"post_id": "10154524546328155", "text": "Bando alle chiacchiere, se riprendiamo il controllo della nostra moneta, TORNIAMO A CORRERE! Punto. #sciogliamoilpd #votosubito", "post_text": "Bando alle chiacchiere, se riprendiamo il controllo della nostra moneta, TORNIAMO A CORRERE! Punto. #sciogliamoilpd #votosubito", "shared_text": "", "time": "2017-02-19 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154524546328155&id=252306033154", "link": null} +{"post_id": "10154527991423155", "text": "FATE GIRARE QUESTO VIDEO!\nEcco la tolleranza dei kompagni che amano i clandestini e odiano gli italiani: aggredire, spaccare, insultare! VERGOGNATEVI, VIGLIACCHI!!!\nP.s. Un abbraccio alle due ragazze della Lega\u2026 Altro di Monza che erano al gazebo del video e uno ai militanti di Noi con Salvini che stamattina a Roma hanno subito un'analoga aggressione. NOI NON MOLLIAMO, ZECCHE! #votosubito", "post_text": "FATE GIRARE QUESTO VIDEO!\nEcco la tolleranza dei kompagni che amano i clandestini e odiano gli italiani: aggredire, spaccare, insultare! VERGOGNATEVI, VIGLIACCHI!!!\nP.s. Un abbraccio alle due ragazze della Lega\u2026 Altro di Monza che erano al gazebo del video e uno ai militanti di Noi con Salvini che stamattina a Roma hanno subito un'analoga aggressione. NOI NON MOLLIAMO, ZECCHE! #votosubito", "shared_text": "", "time": "2017-02-18 15:31:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154527991423155&id=252306033154", "link": null} +{"post_id": "10154524504668155", "text": "Una DOMANDA semplice semplice: stavate meglio, lavoravate e risparmiavate di pi\u00f9 per voi e per i vostri figli CON LA LIRA o CON L'EURO???\nAscoltate la RISPOSTA del pubblico in studio...\nDedicata ai professoroni e ai politici venduti che, dopo aver rovinato gli italiani, ci vogliono ancora schiavi dell'Euro!", "post_text": "Una DOMANDA semplice semplice: stavate meglio, lavoravate e risparmiavate di pi\u00f9 per voi e per i vostri figli CON LA LIRA o CON L'EURO???\nAscoltate la RISPOSTA del pubblico in studio...\nDedicata ai professoroni e ai politici venduti che, dopo aver rovinato gli italiani, ci vogliono ancora schiavi dell'Euro!", "shared_text": "", "time": "2017-02-17 16:31:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154524504668155&id=252306033154", "link": null} +{"post_id": "10154517472543155", "text": "In 90 secondi smonto le bugie dell'Europa.\nNESSUNA TIV\u00d9 ne parler\u00e0, aiutaci a FAR GIRARE questa vergogna!\nCon il voto favorevole di PD e Forza Italia, passa il CETA, accordo TRUFFA che avvantagger\u00e0 poche\u2026 Altro multinazionali, ai danni di imprenditori, agricoltori e consumatori italiani, con 40 MILA posti di lavoro a rischio!\nCarne agli ormoni e falsi prosciutti e formaggi italiani? Se li mangino loro.", "post_text": "In 90 secondi smonto le bugie dell'Europa.\nNESSUNA TIV\u00d9 ne parler\u00e0, aiutaci a FAR GIRARE questa vergogna!\nCon il voto favorevole di PD e Forza Italia, passa il CETA, accordo TRUFFA che avvantagger\u00e0 poche\u2026 Altro multinazionali, ai danni di imprenditori, agricoltori e consumatori italiani, con 40 MILA posti di lavoro a rischio!\nCarne agli ormoni e falsi prosciutti e formaggi italiani? Se li mangino loro.", "shared_text": "", "time": "2017-02-15 12:25:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154517472543155&id=252306033154", "link": null} +{"post_id": "10154514902053155", "text": "Viaggio nelle megaville dei ROM, tutto abusivo.\nParla uno dei proprietari, agli arresti domiciliari: \"Che ci vuole? FATEVELA ANCHE VOI, tutti i materiali li ho 'truffati'\".\nCHE SCHIFO! Che dice la Boldrini... #votosubito", "post_text": "Viaggio nelle megaville dei ROM, tutto abusivo.\nParla uno dei proprietari, agli arresti domiciliari: \"Che ci vuole? FATEVELA ANCHE VOI, tutti i materiali li ho 'truffati'\".\nCHE SCHIFO! Che dice la Boldrini... #votosubito", "shared_text": "", "time": "2017-02-15 09:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154514902053155&id=252306033154", "link": null} +{"post_id": "10154513485248155", "text": "\"PROFUGHI\" SPACCIATORI\n\"Per colpa degli immigrati i nostri figli chiusi come nei lager\". Da ascoltare e condividere su qualche bacheca buonista! #votosubito", "post_text": "\"PROFUGHI\" SPACCIATORI\n\"Per colpa degli immigrati i nostri figli chiusi come nei lager\". Da ascoltare e condividere su qualche bacheca buonista! #votosubito", "shared_text": "", "time": "2017-02-14 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154513485248155&id=252306033154", "link": null} +{"post_id": "10154510335753155", "text": "La mia intervista di oggi a SkyTg24. Dopo Brexit e Trump niente \u00e8 impossibile! Io le idee CHIARE ce le ho. E voi? #votosubito", "post_text": "La mia intervista di oggi a SkyTg24. Dopo Brexit e Trump niente \u00e8 impossibile! Io le idee CHIARE ce le ho. E voi? #votosubito", "shared_text": "", "time": "2017-02-12 15:30:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154510335753155&id=252306033154", "link": null} +{"post_id": "10154505380538155", "text": "In diretta dalla Foiba di Basovizza, nel Giorno del Ricordo.", "post_text": "In diretta dalla Foiba di Basovizza, nel Giorno del Ricordo.", "shared_text": "", "time": "2017-02-10 12:13:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154505380538155&id=252306033154", "link": null} +{"post_id": "10154497176468155", "text": "L'Euro NON \u00e8 irreversibile come sostiene Draghi, italiano purtroppo complice di quella Unione Germanica Europea che l'economia italiana la sta massacrando. Voi state meglio o peggio di quindici anni fa?\nWWW.BASTAEURO.ORG", "post_text": "L'Euro NON \u00e8 irreversibile come sostiene Draghi, italiano purtroppo complice di quella Unione Germanica Europea che l'economia italiana la sta massacrando. Voi state meglio o peggio di quindici anni fa?\nWWW.BASTAEURO.ORG", "shared_text": "", "time": "2017-02-09 10:16:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154497176468155&id=252306033154", "link": "http://WWW.BASTAEURO.ORG/?fbclid=IwAR1cyBYt67K4Fw_2o1Woa-aaYTKR53ViQSshNlABHm6WE6LkfEYviuEzLrM"} +{"post_id": "10154500295798155", "text": "E al circolo ARCI nella (ex) rossa Toscana danno ragione alla Lega.\nDel resto, oggi quelli del PD conoscono pi\u00f9 banchieri che operai...", "post_text": "E al circolo ARCI nella (ex) rossa Toscana danno ragione alla Lega.\nDel resto, oggi quelli del PD conoscono pi\u00f9 banchieri che operai...", "shared_text": "", "time": "2017-02-08 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154500295798155&id=252306033154", "link": null} +{"post_id": "10154501009848155", "text": "PAZZESCO!\nPer CROZZA e tanti giornalisti i problemi dell'Italia non sono disoccupazione, tasse, immigrazione, ma Salvini e la Lega... AVANTI TUTTA! #votosubito", "post_text": "PAZZESCO!\nPer CROZZA e tanti giornalisti i problemi dell'Italia non sono disoccupazione, tasse, immigrazione, ma Salvini e la Lega... AVANTI TUTTA! #votosubito", "shared_text": "", "time": "2017-02-08 15:46:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154501009848155&id=252306033154", "link": null} +{"post_id": "10154497125683155", "text": "In testa a questo bel corteo per il \"DIRITTO ALLA CASA\" la figlia del ministro PADOAN...\nTALE PADRE, TALE FIGLIA: lui massacra gli italiani, lei difende gli immigrati.\nP.s. e il prefetto gli d\u00e0 pure ragione... #primagliitaliani", "post_text": "In testa a questo bel corteo per il \"DIRITTO ALLA CASA\" la figlia del ministro PADOAN...\nTALE PADRE, TALE FIGLIA: lui massacra gli italiani, lei difende gli immigrati.\nP.s. e il prefetto gli d\u00e0 pure ragione... #primagliitaliani", "shared_text": "", "time": "2017-02-07 14:27:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154497125683155&id=252306033154", "link": null} +{"post_id": "10154497154793155", "text": "\"Francesco ha dovuto affrontare quel bandito a mani nude perch\u00e9 manca il minimo equipaggiamento operativo. Siamo costretti ad usare il corpo quando potremmo fermarli con spray al peperoncino. Se quel ragazzo lo\u2026 Altro avesse avuto, non sarebbe morto\" afferma Franco Maccari del Coisp.\nTanta RABBIA per chi viene in Italia a portare delinquenza e morte.\nE tanto RISPETTO per i nostri uomini e donne in divisa: uno Stato serio per loro farebbe molto di pi\u00f9.", "post_text": "\"Francesco ha dovuto affrontare quel bandito a mani nude perch\u00e9 manca il minimo equipaggiamento operativo. Siamo costretti ad usare il corpo quando potremmo fermarli con spray al peperoncino. Se quel ragazzo lo\u2026 Altro avesse avuto, non sarebbe morto\" afferma Franco Maccari del Coisp.\nTanta RABBIA per chi viene in Italia a portare delinquenza e morte.\nE tanto RISPETTO per i nostri uomini e donne in divisa: uno Stato serio per loro farebbe molto di pi\u00f9.", "shared_text": "", "time": "2017-02-07 13:19:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154497154793155&id=252306033154", "link": null} +{"post_id": "10154488107008155", "text": "Numeri alla mano, le nostre risposte sul controllo della moneta: ci costa non uscire, ma stare dentro. Scarica e diffondi anche tu il manuale #oltreleuro: www.bastaeuro.org/libro", "post_text": "Numeri alla mano, le nostre risposte sul controllo della moneta: ci costa non uscire, ma stare dentro. Scarica e diffondi anche tu il manuale #oltreleuro: www.bastaeuro.org/libro", "shared_text": "", "time": "2017-02-04 12:52:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154488107008155&id=252306033154", "link": "http://www.bastaeuro.org/libro?fbclid=IwAR0xwi3XrcUYRBOA5EsnIA44OE6RMJYfNo7NcMS5UuUcjteAxuZtBH0ZY0U"} +{"post_id": "10154485146773155", "text": "Minacce e botte ai bimbi: \"VI FACCIO SALTARE IL CERVELLO, vi rompo le gambe cos\u00ec camminate sulla sedia a rotelle\".\nUn'altra che meriterebbe i LAVORI FORZATI, altro che sospensione.\nP.s. Rinnovo la proposta della Lega: telecamere in asili e scuole!", "post_text": "Minacce e botte ai bimbi: \"VI FACCIO SALTARE IL CERVELLO, vi rompo le gambe cos\u00ec camminate sulla sedia a rotelle\".\nUn'altra che meriterebbe i LAVORI FORZATI, altro che sospensione.\nP.s. Rinnovo la proposta della Lega: telecamere in asili e scuole!", "shared_text": "", "time": "2017-02-02 18:55:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154485146773155&id=252306033154", "link": null} +{"post_id": "10154482043168155", "text": "Grazie alle migliaia di persone (in sala e in streaming) che hanno dedicato una serata per informarsi, approfondire, capire e progettare il Futuro.\nGrazie a La7, televisione seria.\nP.s. Scarica subito gratuitamente, e aiuta a diffondere, il manuale \"Oltre l'Euro\" dal sito: WWW.BASTAEURO.ORG", "post_text": "Grazie alle migliaia di persone (in sala e in streaming) che hanno dedicato una serata per informarsi, approfondire, capire e progettare il Futuro.\nGrazie a La7, televisione seria.\nP.s. Scarica subito gratuitamente, e aiuta a diffondere, il manuale \"Oltre l'Euro\" dal sito: WWW.BASTAEURO.ORG", "shared_text": "", "time": "2017-02-01 17:55:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154482043168155&id=252306033154", "link": "http://WWW.BASTAEURO.ORG/?fbclid=IwAR0pZB3z3nN9SJViJmbQrEHFRtUhpHLsMUbyEl4U6_9HVs4pPR74B8sv6wM"} +{"post_id": "10154480318563155", "text": "In diretta da Milano, con Alberto Bagnai, Claudio Borghi, Marco Zanni (modera Mario Giordano): come riprendere il controllo della nostra moneta? Stasera proviamo a spiegarvelo, fateci compagnia! #oltreleuro\nP.s. Scaricate gratuitamente il nuovo manuale \"Oltre l'Euro\" dal sito WWW.BASTAEURO.ORG", "post_text": "In diretta da Milano, con Alberto Bagnai, Claudio Borghi, Marco Zanni (modera Mario Giordano): come riprendere il controllo della nostra moneta? Stasera proviamo a spiegarvelo, fateci compagnia! #oltreleuro\nP.s. Scaricate gratuitamente il nuovo manuale \"Oltre l'Euro\" dal sito WWW.BASTAEURO.ORG", "shared_text": "", "time": "2017-01-31 21:13:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154480318563155&id=252306033154", "link": "http://WWW.BASTAEURO.ORG/?fbclid=IwAR24_Kfa_RwDTfZtnRLgxDOk4p91O8BUU7MxsGoUwn0hmmOQvOQIjAqMma8"} +{"post_id": "10154479809238155", "text": "Qualche minuto in diretta da Milano, dove questa sera vi aspetto con Alberto Bagnai, Claudio Borghi, Marco Zanni e Mario Giordano per \"Oltre l'Euro per tornare grandi\" (LIVE su questa pagina dalle ore 21).\nSCARICA gratuitamente il nuovo libro da: www.bastaeuro.org", "post_text": "Qualche minuto in diretta da Milano, dove questa sera vi aspetto con Alberto Bagnai, Claudio Borghi, Marco Zanni e Mario Giordano per \"Oltre l'Euro per tornare grandi\" (LIVE su questa pagina dalle ore 21).\nSCARICA gratuitamente il nuovo libro da: www.bastaeuro.org", "shared_text": "", "time": "2017-01-31 16:35:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154479809238155&id=252306033154", "link": "http://www.bastaeuro.org/?fbclid=IwAR1vc9pC6u4CIWhzzdbLe1dRZ0qdUtavJ1Mx1oBLjLIWJWapkn6-XaBy4xs"} +{"post_id": "10154479084288155", "text": "Incredibile, ASCOLTATE QUI!\nSentite come PRODI, nel 1998, ci illustrava lo splendido futuro che avremmo avuto con l'Euro! Se lui e i suoi amici del PD non ci avessero ROVINATO con questa moneta CRIMINALE, ci\u2026 Altro sarebbe da ridere a riascoltare queste geniali previsioni... #BASTAEURO prima che sia tardi!\nFATE GIRARE sulle bacheche di euristi e buonisti.", "post_text": "Incredibile, ASCOLTATE QUI!\nSentite come PRODI, nel 1998, ci illustrava lo splendido futuro che avremmo avuto con l'Euro! Se lui e i suoi amici del PD non ci avessero ROVINATO con questa moneta CRIMINALE, ci\u2026 Altro sarebbe da ridere a riascoltare queste geniali previsioni... #BASTAEURO prima che sia tardi!\nFATE GIRARE sulle bacheche di euristi e buonisti.", "shared_text": "", "time": "2017-01-31 11:46:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154479084288155&id=252306033154", "link": null} +{"post_id": "10154476779253155", "text": "", "post_text": "", "shared_text": "", "time": "2017-01-30 18:21:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154476779253155&id=252306033154", "link": null} +{"post_id": "10154476705963155", "text": "Il cantante americano MOBY mi colloca tra i MALVAGI del mondo...\nA parte alcuni accostamenti deliranti, meglio CATTIVONI che CO...ONI!", "post_text": "Il cantante americano MOBY mi colloca tra i MALVAGI del mondo...\nA parte alcuni accostamenti deliranti, meglio CATTIVONI che CO...ONI!", "shared_text": "", "time": "2017-01-30 18:12:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154476705963155&id=252306033154", "link": null} +{"post_id": "10154463112128155", "text": "Edicolante difende una ragazza da un clandestino nigeriano e questo, in preda alla furia e in evidente stato di alterazione, gli spacca la faccia a BASTONATE... Avr\u00e0 avuto problemi psicologici anche lui?\nDobbiamo aspettare nuovi casi Kabobo???\nAndiamo a governare e facciamo un po' di PULIZIA generale in Italia! #votosubito", "post_text": "Edicolante difende una ragazza da un clandestino nigeriano e questo, in preda alla furia e in evidente stato di alterazione, gli spacca la faccia a BASTONATE... Avr\u00e0 avuto problemi psicologici anche lui?\nDobbiamo aspettare nuovi casi Kabobo???\nAndiamo a governare e facciamo un po' di PULIZIA generale in Italia! #votosubito", "shared_text": "", "time": "2017-01-29 19:10:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154463112128155&id=252306033154", "link": null} +{"post_id": "10154473872318155", "text": "Il mio intervento di ieri davanti a una bellissima piazza che ha voglia di CAMBIARE e di VOTARE!\nC'\u00e8 un Paese da ricostruire e un'invasione da bloccare: BASTA INCIUCI con la sinistra, sia in Italia che in Europa. IDEE CHIARE, CORAGGIO e andiamo a VINCERE! #votosubito", "post_text": "Il mio intervento di ieri davanti a una bellissima piazza che ha voglia di CAMBIARE e di VOTARE!\nC'\u00e8 un Paese da ricostruire e un'invasione da bloccare: BASTA INCIUCI con la sinistra, sia in Italia che in Europa. IDEE CHIARE, CORAGGIO e andiamo a VINCERE! #votosubito", "shared_text": "", "time": "2017-01-29 14:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154473872318155&id=252306033154", "link": null} +{"post_id": "10154465447763155", "text": "NON DIMENTICHIAMOCI di chi ha perso tutto col terremoto.\nESENZIONE FISCALE TOTALE per almeno 3 anni (non \"sospensione\" e poi lo Stato viene a chiederti le tasse dopo sei mesi!).\nLo abbiamo chiesto a Monti, Letta, Renzi. Ora a Gentiloni: se ci sei, BATTI UN COLPO! #votosubito", "post_text": "NON DIMENTICHIAMOCI di chi ha perso tutto col terremoto.\nESENZIONE FISCALE TOTALE per almeno 3 anni (non \"sospensione\" e poi lo Stato viene a chiederti le tasse dopo sei mesi!).\nLo abbiamo chiesto a Monti, Letta, Renzi. Ora a Gentiloni: se ci sei, BATTI UN COLPO! #votosubito", "shared_text": "", "time": "2017-01-28 14:12:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154465447763155&id=252306033154", "link": null} +{"post_id": "10154467028083155", "text": "\"Se puoi sognarlo, puoi farlo\". Ribaltiamo questo Paese! Se voi ci siete, io ci sono. #votosubito www.votosubito.org", "post_text": "\"Se puoi sognarlo, puoi farlo\". Ribaltiamo questo Paese! Se voi ci siete, io ci sono. #votosubito www.votosubito.org", "shared_text": "", "time": "2017-01-26 19:56:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154467028083155&id=252306033154", "link": "http://www.votosubito.org/?fbclid=IwAR2RCF-3_nH1z0J9NSxKbsPVVi7mGDYSqnw_gHmioIs6rK6rkrYxbn8INzU"} +{"post_id": "10154459770038155", "text": "Montagne di rifiuti, degrado, criminalit\u00e0 nell'inferno delle tendopoli abusive in Calabria per migliaia di nuovi SCHIAVI in cerca di LAVORO, in una regione dove 1 persona su 5 \u00e8 disoccupata (2 su 3 tra i giovani). Vi pare una situazione da Paese normale? #votosubito #primagliitaliani", "post_text": "Montagne di rifiuti, degrado, criminalit\u00e0 nell'inferno delle tendopoli abusive in Calabria per migliaia di nuovi SCHIAVI in cerca di LAVORO, in una regione dove 1 persona su 5 \u00e8 disoccupata (2 su 3 tra i giovani). Vi pare una situazione da Paese normale? #votosubito #primagliitaliani", "shared_text": "", "time": "2017-01-26 19:01:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154459770038155&id=252306033154", "link": null} +{"post_id": "1317007151675541", "text": "Tutti dicevano che Trump non avrebbe mai vinto negli Stati Uniti perch\u00e9 aveva idee troppo forti. Mi auguro che gli italiani abbiano lo stesso coraggio e la stessa lucida follia. #votosubito", "post_text": "Tutti dicevano che Trump non avrebbe mai vinto negli Stati Uniti perch\u00e9 aveva idee troppo forti. Mi auguro che gli italiani abbiano lo stesso coraggio e la stessa lucida follia. #votosubito", "shared_text": "", "time": "2017-01-26 13:29:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1317007151675541&id=252306033154", "link": null} +{"post_id": "10154463780843155", "text": "Oggi il governo del Pd e l'Unione Europea propongono il BLOCCO NAVALE in Libia per fermare i barconi... Ma sentite che cosa rispondeva quel fenomeno di ALFANO due anni fa quando lo proponevo io...\nIPOCRITI, INCAPACI, RIDICOLI e COMPLICI!\n#stopinvasione #votosubito", "post_text": "Oggi il governo del Pd e l'Unione Europea propongono il BLOCCO NAVALE in Libia per fermare i barconi... Ma sentite che cosa rispondeva quel fenomeno di ALFANO due anni fa quando lo proponevo io...\nIPOCRITI, INCAPACI, RIDICOLI e COMPLICI!\n#stopinvasione #votosubito", "shared_text": "", "time": "2017-01-25 20:18:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154463780843155&id=252306033154", "link": null} +{"post_id": "10154461064238155", "text": "Qualche minuto insieme a voi! E tra poco in diretta su Rai Tre.", "post_text": "Qualche minuto insieme a voi! E tra poco in diretta su Rai Tre.", "shared_text": "", "time": "2017-01-24 21:52:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154461064238155&id=252306033154", "link": null} +{"post_id": "10154458883513155", "text": "CHE SCHIFO!!!\n\"Gli italiani sono MERDE\". Cos\u00ec la \"signora\" ROM che chiede il pizzo ai senzatetto per dormire all'aeroporto di Linate. Chi gi\u00e0 soffre e non ha casa n\u00e9 lavoro viene TAGLIEGGIATO da una banda di DELINQUENTI.\nSpero che questa gentaglia venga cacciata dall'Italia a calci in c..o!", "post_text": "CHE SCHIFO!!!\n\"Gli italiani sono MERDE\". Cos\u00ec la \"signora\" ROM che chiede il pizzo ai senzatetto per dormire all'aeroporto di Linate. Chi gi\u00e0 soffre e non ha casa n\u00e9 lavoro viene TAGLIEGGIATO da una banda di DELINQUENTI.\nSpero che questa gentaglia venga cacciata dall'Italia a calci in c..o!", "shared_text": "", "time": "2017-01-24 10:59:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154458883513155&id=252306033154", "link": null} +{"post_id": "10154439702298155", "text": "Un milione di bimbi italiani sotto la soglia di povert\u00e0, ma il PD pensa solo all'Africa...", "post_text": "Un milione di bimbi italiani sotto la soglia di povert\u00e0, ma il PD pensa solo all'Africa...", "shared_text": "", "time": "2017-01-23 18:37:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154439702298155&id=252306033154", "link": null} +{"post_id": "1313256982050558", "text": "Sento PUZZA di INCIUCIO e VOGLIA di VITALIZIO. Voi che dite? BASTA TIRARE A CAMPARE! #votosubto", "post_text": "Sento PUZZA di INCIUCIO e VOGLIA di VITALIZIO. Voi che dite? BASTA TIRARE A CAMPARE! #votosubto", "shared_text": "", "time": "2017-01-23 14:45:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1313256982050558&id=252306033154", "link": null} +{"post_id": "10154454725348155", "text": "Vigili del fuoco EROI, ma siano considerati tali anche dal punto di vista del TRATTAMENTO, aumentando dotazioni e stipendi e assumendo i pompieri precari, andando a colmare l'attuale grave carenza personale.\nSu questo noi non molliamo! #primagliitaliani", "post_text": "Vigili del fuoco EROI, ma siano considerati tali anche dal punto di vista del TRATTAMENTO, aumentando dotazioni e stipendi e assumendo i pompieri precari, andando a colmare l'attuale grave carenza personale.\nSu questo noi non molliamo! #primagliitaliani", "shared_text": "", "time": "2017-01-23 12:26:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154454725348155&id=252306033154", "link": null} +{"post_id": "10154448759678155", "text": "Il mio intervento di Coblenza, dove con i nostri alleati abbiamo parlato della NUOVA EUROPA che insieme costruiremo: LAVORO, controllo dei confini e della moneta, sicurezza, sovranit\u00e0.\nNON MORIREMO di Euro, di\u2026 Altro banche, di finanza, di Merkel! Trump insegna: con CORAGGIO e IDEE CHIARE, si VINCE!\nP.s. Lasciatemi i vostri commenti e, se vi piace, condividete!", "post_text": "Il mio intervento di Coblenza, dove con i nostri alleati abbiamo parlato della NUOVA EUROPA che insieme costruiremo: LAVORO, controllo dei confini e della moneta, sicurezza, sovranit\u00e0.\nNON MORIREMO di Euro, di\u2026 Altro banche, di finanza, di Merkel! Trump insegna: con CORAGGIO e IDEE CHIARE, si VINCE!\nP.s. Lasciatemi i vostri commenti e, se vi piace, condividete!", "shared_text": "", "time": "2017-01-22 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154448759678155&id=252306033154", "link": null} +{"post_id": "1312220985487491", "text": "Fate QUALSIASI legge elettorale, ma fate in FRETTA e date una scheda elettorale in mano agli italiani, che hanno bisogno di risposte CONCRETE, di un parlamento legittimo e di un governo legittimo. #votosubito", "post_text": "Fate QUALSIASI legge elettorale, ma fate in FRETTA e date una scheda elettorale in mano agli italiani, che hanno bisogno di risposte CONCRETE, di un parlamento legittimo e di un governo legittimo. #votosubito", "shared_text": "", "time": "2017-01-22 17:33:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=1312220985487491&id=252306033154", "link": null} +{"post_id": "10154449026808155", "text": "GRAZIE!", "post_text": "GRAZIE!", "shared_text": "", "time": "2017-01-21 19:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154449026808155&id=252306033154", "link": null} +{"post_id": "10154444935318155", "text": "Migliaia di italiani al freddo e al gelo, immigrati (di cui solo una minima parte ha diritto all'asilo) in albergo al caldo. A chi dice che \"non c'\u00e8 relazione\" tra le due cose, ricordo che l'invasione senza\u2026 Altro controllo ci costa 4 MILIARDI all'anno. Vi sembra una situazione normale? Sono \"POPULISTA\" se lo dico? A me pare solo la realt\u00e0. Che non vedo l'ora di cambiare. #votosubito", "post_text": "Migliaia di italiani al freddo e al gelo, immigrati (di cui solo una minima parte ha diritto all'asilo) in albergo al caldo. A chi dice che \"non c'\u00e8 relazione\" tra le due cose, ricordo che l'invasione senza\u2026 Altro controllo ci costa 4 MILIARDI all'anno. Vi sembra una situazione normale? Sono \"POPULISTA\" se lo dico? A me pare solo la realt\u00e0. Che non vedo l'ora di cambiare. #votosubito", "shared_text": "", "time": "2017-01-21 13:55:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154444935318155&id=252306033154", "link": null} +{"post_id": "10154444914398155", "text": "Il governo ha trovato 20 MILIARDI per le BANCHE. Non pu\u00f2 trovare subito 100 MILIONI per i cittadini colpiti dal terremoto e sommersi dalla neve???", "post_text": "Il governo ha trovato 20 MILIARDI per le BANCHE. Non pu\u00f2 trovare subito 100 MILIONI per i cittadini colpiti dal terremoto e sommersi dalla neve???", "shared_text": "", "time": "2017-01-20 16:30:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154444914398155&id=252306033154", "link": null} +{"post_id": "10154445347253155", "text": "Alcuni anziani a L'Aquila e a Teramo mi hanno detto: ma dove sono gli altri politici? Io ho usato la mia carica per chiamare l'Enel, i sindaci, i vigili del fuoco, tutti quanti, dare una mano. Ho parlato con\u2026 Altro il sindaco di Tollo, che \u00e8 del Pd, e con un altro di Ncd, e un altro ancora di una lista civica, e tutti mi hanno ringraziato per essere li. In Italia qualunque cosa fai ti attaccano: se vado mi criticano, se non vado mi criticano, mi criticano anche solo perch\u00e9 ho i doposci ai piedi. E allora? Tutto ci\u00f2 d\u00e0 il senso della distanza esistente oggi tra i media e la realt\u00e0. E Trump insegna. GRAZIE ai volontari che sono arrivati da ogni parte d'Italia. Gente tosta.", "post_text": "Alcuni anziani a L'Aquila e a Teramo mi hanno detto: ma dove sono gli altri politici? Io ho usato la mia carica per chiamare l'Enel, i sindaci, i vigili del fuoco, tutti quanti, dare una mano. Ho parlato con\u2026 Altro il sindaco di Tollo, che \u00e8 del Pd, e con un altro di Ncd, e un altro ancora di una lista civica, e tutti mi hanno ringraziato per essere li. In Italia qualunque cosa fai ti attaccano: se vado mi criticano, se non vado mi criticano, mi criticano anche solo perch\u00e9 ho i doposci ai piedi. E allora? Tutto ci\u00f2 d\u00e0 il senso della distanza esistente oggi tra i media e la realt\u00e0. E Trump insegna. GRAZIE ai volontari che sono arrivati da ogni parte d'Italia. Gente tosta.", "shared_text": "", "time": "2017-01-20 14:36:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154445347253155&id=252306033154", "link": null} +{"post_id": "10154442966983155", "text": "In diretta da Arischia, frazione de L'Aquila, in attesa da anni di ricostruzione.", "post_text": "In diretta da Arischia, frazione de L'Aquila, in attesa da anni di ricostruzione.", "shared_text": "", "time": "2017-01-19 16:37:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154442966983155&id=252306033154", "link": null} +{"post_id": "10154442592063155", "text": "Col sindaco e la gente di Atri (Teramo) in piena emergenza.", "post_text": "Col sindaco e la gente di Atri (Teramo) in piena emergenza.", "shared_text": "", "time": "2017-01-19 13:34:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154442592063155&id=252306033154", "link": null} +{"post_id": "10154439643023155", "text": "L'onorevole del Pd pensa di poter ospitare mezza Africa a cena... Sono al governo da 5 anni e sull'immigrazione si svegliano adesso (per modo di dire...): FATE!!!\nSe fossi io al governo: CHIUSURA delle frontiere e accoglienza nei LIMITI DEL POSSIBILE (e solo per chi ha diritto).", "post_text": "L'onorevole del Pd pensa di poter ospitare mezza Africa a cena... Sono al governo da 5 anni e sull'immigrazione si svegliano adesso (per modo di dire...): FATE!!!\nSe fossi io al governo: CHIUSURA delle frontiere e accoglienza nei LIMITI DEL POSSIBILE (e solo per chi ha diritto).", "shared_text": "", "time": "2017-01-18 16:52:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154439643023155&id=252306033154", "link": null} +{"post_id": "10154435361528155", "text": "In partenza per Strasburgo, qualche minuto insieme a voi", "post_text": "In partenza per Strasburgo, qualche minuto insieme a voi", "shared_text": "", "time": "2017-01-16 19:04:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154435361528155&id=252306033154", "link": null} +{"post_id": "10154434664218155", "text": "Lasci centinaia di milioni di buco in banca (rovinando i risparmiatori) e poi a Capodanno sei ai Caraibi a festeggiare? TI BLOCCO i beni, le ville, le macchine finch\u00e9 non risarcisci agli italiani i soldi che ti sei fregato!\nIn un PAESE NORMALE certe persone sarebbero in GALERA! #votosubito", "post_text": "Lasci centinaia di milioni di buco in banca (rovinando i risparmiatori) e poi a Capodanno sei ai Caraibi a festeggiare? TI BLOCCO i beni, le ville, le macchine finch\u00e9 non risarcisci agli italiani i soldi che ti sei fregato!\nIn un PAESE NORMALE certe persone sarebbero in GALERA! #votosubito", "shared_text": "", "time": "2017-01-16 14:54:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154434664218155&id=252306033154", "link": null} +{"post_id": "10154419294343155", "text": "La coop che gestisce i presunti profughi a Venezia?\nDa un fatturato di 100mila euro nel 2011 \u00e8 passata a OLTRE 9 MILIONI di euro nel 2015!!! VERGOGNA! Non vedo l'ora di essere al governo per mettera la parola FINE allo SCHIFOSO BUSINESS sui nuovi schiavi!\n#stopinvasione #votosubito", "post_text": "La coop che gestisce i presunti profughi a Venezia?\nDa un fatturato di 100mila euro nel 2011 \u00e8 passata a OLTRE 9 MILIONI di euro nel 2015!!! VERGOGNA! Non vedo l'ora di essere al governo per mettera la parola FINE allo SCHIFOSO BUSINESS sui nuovi schiavi!\n#stopinvasione #votosubito", "shared_text": "", "time": "2017-01-13 14:59:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154419294343155&id=252306033154", "link": null} +{"post_id": "10154423313138155", "text": "Nel centro immigrati di Cona, nel Veneziano, ospitiamo anche EX GUERRIGLIERI della Costa d'Avorio... Ma non vi pare che dovrebbe essere NORMALE per TUTTA la politica pensare PRIMA a chi qui \u00e8 nato e cresciuto, e che magari oggi ha perso casa, lavoro, DIGNIT\u00c0? Non mi sembra difficile da capire! #primagliitaliani", "post_text": "Nel centro immigrati di Cona, nel Veneziano, ospitiamo anche EX GUERRIGLIERI della Costa d'Avorio... Ma non vi pare che dovrebbe essere NORMALE per TUTTA la politica pensare PRIMA a chi qui \u00e8 nato e cresciuto, e che magari oggi ha perso casa, lavoro, DIGNIT\u00c0? Non mi sembra difficile da capire! #primagliitaliani", "shared_text": "", "time": "2017-01-12 19:05:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154423313138155&id=252306033154", "link": null} +{"post_id": "10154418807428155", "text": "PAZZESCO!!!\nAscoltate la denuncia del gestore di un agriturismo in Toscana. Corsi di italiano e altre attivit\u00e0 di \"integrazione\"? Disertate. I \"migranti\" preferivano passare il tempo tra ALCOL (bottiglie di\u2026 Altro birra anche negli armadi!), PROSTITUTE e CACCIA AI CAPRIOLI (abbattuti abusivamente), che poi macellavano e cucinavano nel centro. Questo sarebbe il modello di \"accoglienza diffusa\" venduto dal PD come la \"soluzione\"... Unica soluzione? #STOPINVASIONE!", "post_text": "PAZZESCO!!!\nAscoltate la denuncia del gestore di un agriturismo in Toscana. Corsi di italiano e altre attivit\u00e0 di \"integrazione\"? Disertate. I \"migranti\" preferivano passare il tempo tra ALCOL (bottiglie di\u2026 Altro birra anche negli armadi!), PROSTITUTE e CACCIA AI CAPRIOLI (abbattuti abusivamente), che poi macellavano e cucinavano nel centro. Questo sarebbe il modello di \"accoglienza diffusa\" venduto dal PD come la \"soluzione\"... Unica soluzione? #STOPINVASIONE!", "shared_text": "", "time": "2017-01-11 19:12:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154418807428155&id=252306033154", "link": null} +{"post_id": "10154419430403155", "text": "A diciotto anni dalla morte, la Poesia e la voce di Fabrizio De Andr\u00e9 rimangono magiche. GRAZIE Faber!", "post_text": "A diciotto anni dalla morte, la Poesia e la voce di Fabrizio De Andr\u00e9 rimangono magiche. GRAZIE Faber!", "shared_text": "", "time": "2017-01-11 17:20:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154419430403155&id=252306033154", "link": null} +{"post_id": "10154418763038155", "text": "Secondo i soliti buonisti, che non riescono pi\u00f9 a negare l'INVASIONE in corso di immigrati che non fuggono da nessuna guerra, adesso il problema sarebbe \"DISTRIBUIRLI\" sul territorio...!\nNO, il problema \u00e8 rispedirli TUTTI A CASA LORO, a ricostruire i loro Paesi! L'AFRICA IN ITALIA NON CI STA. Punto!", "post_text": "Secondo i soliti buonisti, che non riescono pi\u00f9 a negare l'INVASIONE in corso di immigrati che non fuggono da nessuna guerra, adesso il problema sarebbe \"DISTRIBUIRLI\" sul territorio...!\nNO, il problema \u00e8 rispedirli TUTTI A CASA LORO, a ricostruire i loro Paesi! L'AFRICA IN ITALIA NON CI STA. Punto!", "shared_text": "", "time": "2017-01-11 13:12:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154418763038155&id=252306033154", "link": null} +{"post_id": "10154414382028155", "text": "Qualche minuto insieme a voi!", "post_text": "Qualche minuto insieme a voi!", "shared_text": "", "time": "2017-01-09 16:17:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154414382028155&id=252306033154", "link": null} +{"post_id": "10154397412133155", "text": "Insultato come \"RAZZISTA\" perch\u00e9 ha \"osato\" offrire un pranzo di Natale a soli bisognosi ITALIANI. Onore a questo ristoratore!\nSe passer\u00f2 da Punta Marina (Ravenna) mi fermer\u00f2 all'osteria di Marco.", "post_text": "Insultato come \"RAZZISTA\" perch\u00e9 ha \"osato\" offrire un pranzo di Natale a soli bisognosi ITALIANI. Onore a questo ristoratore!\nSe passer\u00f2 da Punta Marina (Ravenna) mi fermer\u00f2 all'osteria di Marco.", "shared_text": "", "time": "2017-01-03 15:05:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154397412133155&id=252306033154", "link": null} +{"post_id": "10154388607278155", "text": "Il mio discorso per voi e con voi!", "post_text": "Il mio discorso per voi e con voi!", "shared_text": "", "time": "2016-12-31 20:48:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154388607278155&id=252306033154", "link": null} +{"post_id": "10154379824518155", "text": "In diretta con voi dalla festa Lega di Albino, Bergamo. Fatemi compagnia, Amici. Voi che cosa state facendo?", "post_text": "In diretta con voi dalla festa Lega di Albino, Bergamo. Fatemi compagnia, Amici. Voi che cosa state facendo?", "shared_text": "", "time": "2016-12-28 21:52:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154379824518155&id=252306033154", "link": null} +{"post_id": "10154378120888155", "text": "ROBA DA MATTI!!!\nCi mancava pure il \"PRESEPE MUSULMANO\" di questo parroco buonista di Potenza (don Franco Corbo), per il quale in sostanza l'ISIS \u00e8 colpa nostra, gli israeliani sono brutti e cattivi, e se non\u2026 Altro vi piace la MADONNA COL BURQA \u00e8 colpa VOSTRA che siete chiusi mentalmente e integralisti...\nAccendiamo una candela anche per lui!\nPer Auguri di Natale (o per il Ramadan) il tel. della Parrocchia \u00e8 0971/22071.", "post_text": "ROBA DA MATTI!!!\nCi mancava pure il \"PRESEPE MUSULMANO\" di questo parroco buonista di Potenza (don Franco Corbo), per il quale in sostanza l'ISIS \u00e8 colpa nostra, gli israeliani sono brutti e cattivi, e se non\u2026 Altro vi piace la MADONNA COL BURQA \u00e8 colpa VOSTRA che siete chiusi mentalmente e integralisti...\nAccendiamo una candela anche per lui!\nPer Auguri di Natale (o per il Ramadan) il tel. della Parrocchia \u00e8 0971/22071.", "shared_text": "", "time": "2016-12-28 11:22:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154378120888155&id=252306033154", "link": null} +{"post_id": "10154364565108155", "text": "Festeggiamo il Natale anche con i ragazzi che hanno combattuto e combattono contro il cancro all'Istituo dei Tumori di Milano e hanno realizzato questo video STUPENDO.\nA loro il nostro pensiero e gli auguri\u2026 Altro delle migliori fortune per il nuovo anno.\nP.s. E un doveroso \"Mi piace\" alla loro pagina: https://www.facebook.com/ilprogettogiovani", "post_text": "Festeggiamo il Natale anche con i ragazzi che hanno combattuto e combattono contro il cancro all'Istituo dei Tumori di Milano e hanno realizzato questo video STUPENDO.\nA loro il nostro pensiero e gli auguri\u2026 Altro delle migliori fortune per il nuovo anno.\nP.s. E un doveroso \"Mi piace\" alla loro pagina: https://www.facebook.com/ilprogettogiovani", "shared_text": "", "time": "2016-12-24 16:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154364565108155&id=252306033154", "link": null} +{"post_id": "10154364074343155", "text": "In diretta da Sesto San Giovanni (Milano): stop al terrorismo islamico, controlli ai confini, coraggio ed orgoglio!", "post_text": "In diretta da Sesto San Giovanni (Milano): stop al terrorismo islamico, controlli ai confini, coraggio ed orgoglio!", "shared_text": "", "time": "2016-12-24 11:58:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154364074343155&id=252306033154", "link": null} +{"post_id": "10154356287938155", "text": "Alfano, Poletti, Fedeli e amici vari... Governo RIDICOLO! #votosubito", "post_text": "Alfano, Poletti, Fedeli e amici vari... Governo RIDICOLO! #votosubito", "shared_text": "", "time": "2016-12-22 21:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154356287938155&id=252306033154", "link": null} +{"post_id": "10154353438133155", "text": "PAZZESCO!!!\nAdesso l'ISIS pubblica video in ITALIANO dove si spiega come uccidere con un coltello i \"crociati\" e come fabbricare in casa una BOMBA... Eppure certi EUROIDIOTI vorrebbero mantenere le sanzioni alla Russia, l'unica che con Putin i terroristi islamici li combatte veramente...", "post_text": "PAZZESCO!!!\nAdesso l'ISIS pubblica video in ITALIANO dove si spiega come uccidere con un coltello i \"crociati\" e come fabbricare in casa una BOMBA... Eppure certi EUROIDIOTI vorrebbero mantenere le sanzioni alla Russia, l'unica che con Putin i terroristi islamici li combatte veramente...", "shared_text": "", "time": "2016-12-22 15:54:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154353438133155&id=252306033154", "link": null} +{"post_id": "10154356008438155", "text": "Parigi, Madrid, Nizza, Bruxelles, Berlino... Qualcuno capir\u00e0 che occorre intensificare i CONTROLLI e che non possiamo far entrare TUTTI??? E, anche senza morti, il Capodanno scorso a Colonia ha avuto 492 reati\u2026 Altro a sfondo sessuale, 130 indagati, tra cui 120 stranieri, 60 dei quali richiedienti asilo. Speriamo che non si ripeta anche quest'anno. #STOPINVASIONE, prima che sia tardi.", "post_text": "Parigi, Madrid, Nizza, Bruxelles, Berlino... Qualcuno capir\u00e0 che occorre intensificare i CONTROLLI e che non possiamo far entrare TUTTI??? E, anche senza morti, il Capodanno scorso a Colonia ha avuto 492 reati\u2026 Altro a sfondo sessuale, 130 indagati, tra cui 120 stranieri, 60 dei quali richiedienti asilo. Speriamo che non si ripeta anche quest'anno. #STOPINVASIONE, prima che sia tardi.", "shared_text": "", "time": "2016-12-22 10:38:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154356008438155&id=252306033154", "link": null} +{"post_id": "10154355603833155", "text": "\"AL VOTO, AL VOTO\"?\nA parole tanti sono d'accordo, poi per\u00f2 bocciano la nostra proposta di lavorare subito, anche nei giorni vicini al Natale, per approvare subito una legge elettorale. Troppa gente incollata alla poltrona...\nFAI GIRARE! #votosubito", "post_text": "\"AL VOTO, AL VOTO\"?\nA parole tanti sono d'accordo, poi per\u00f2 bocciano la nostra proposta di lavorare subito, anche nei giorni vicini al Natale, per approvare subito una legge elettorale. Troppa gente incollata alla poltrona...\nFAI GIRARE! #votosubito", "shared_text": "", "time": "2016-12-21 16:07:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154355603833155&id=252306033154", "link": null} +{"post_id": "10154355569073155", "text": "Ora in diretta da Roma, qualche minuto con voi, Amici, su quanto siamo riusciti a fare quest'anno ma soprattutto su quello che ci ripromettiamo di fare per il 2017.", "post_text": "Ora in diretta da Roma, qualche minuto con voi, Amici, su quanto siamo riusciti a fare quest'anno ma soprattutto su quello che ci ripromettiamo di fare per il 2017.", "shared_text": "", "time": "2016-12-21 12:18:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154355569073155&id=252306033154", "link": null} +{"post_id": "10154342490558155", "text": "Blocco delle partenze ed espulsione degli immigrati irregolari: questo sar\u00e0 uno dei cinque punti fondamentali del nostro programma.\nLegge elettorale? Votare presto, votare subito! #votosubito", "post_text": "Blocco delle partenze ed espulsione degli immigrati irregolari: questo sar\u00e0 uno dei cinque punti fondamentali del nostro programma.\nLegge elettorale? Votare presto, votare subito! #votosubito", "shared_text": "", "time": "2016-12-19 17:51:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154342490558155&id=252306033154", "link": null} +{"post_id": "10154348485508155", "text": "Immigrati oggi in piazza: \"Vogliamo soldi e non vogliamo confini\".\n#aveterottolepalle", "post_text": "Immigrati oggi in piazza: \"Vogliamo soldi e non vogliamo confini\".\n#aveterottolepalle", "shared_text": "", "time": "2016-12-18 19:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154348485508155&id=252306033154", "link": null} +{"post_id": "10154342382438155", "text": "Qualche minuto insieme a voi! P.s. Anche quest'anno alcune scuole non festeggiano il Natale ed espellono Ges\u00f9 Bambino, pazzesco...", "post_text": "Qualche minuto insieme a voi! P.s. Anche quest'anno alcune scuole non festeggiano il Natale ed espellono Ges\u00f9 Bambino, pazzesco...", "shared_text": "", "time": "2016-12-16 12:00:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154342382438155&id=252306033154", "link": null} +{"post_id": "10154336452733155", "text": "L'Euro \u00e8 una moneta FALLITA, sbagliata, da rottamare.\nE senza una moneta giusta, nostra, non andiamo da nessuna parte! #votosubito", "post_text": "L'Euro \u00e8 una moneta FALLITA, sbagliata, da rottamare.\nE senza una moneta giusta, nostra, non andiamo da nessuna parte! #votosubito", "shared_text": "", "time": "2016-12-14 18:56:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154336452733155&id=252306033154", "link": null} +{"post_id": "10154336599483155", "text": "L'Unione Europea (o meglio Unione Germanica) che tace su clandestini e terroristi, e attacca Putin e i populisti, \u00e8 una gabbia da cui liberarsi.", "post_text": "L'Unione Europea (o meglio Unione Germanica) che tace su clandestini e terroristi, e attacca Putin e i populisti, \u00e8 una gabbia da cui liberarsi.", "shared_text": "", "time": "2016-12-14 12:48:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154336599483155&id=252306033154", "link": null} +{"post_id": "10154336447428155", "text": "Il vostro NO al referendum \u00e8 stato importante, eccome!\nAnzi, FONDAMENTALE.\nSono stati costretti a fare un governo che sta insieme con lo scotch, per tirare a campare qualche mese con la scusa della legge\u2026 Altro elettorale.\nMa sono convinto che in primavera si voter\u00e0.\nGi\u00e0 Renzi, come avevo detto in agosto (e mi davano del matto), il PANETTONE quest'anno non lo mangia, ma anche per i suoi amichetti sar\u00e0 l'ultimo. Avanti con fiducia, non molliamo! E questo weekend tutti a firmare ai gazebo in centinaia di piazze da Nord a Sud! #votosubito", "post_text": "Il vostro NO al referendum \u00e8 stato importante, eccome!\nAnzi, FONDAMENTALE.\nSono stati costretti a fare un governo che sta insieme con lo scotch, per tirare a campare qualche mese con la scusa della legge\u2026 Altro elettorale.\nMa sono convinto che in primavera si voter\u00e0.\nGi\u00e0 Renzi, come avevo detto in agosto (e mi davano del matto), il PANETTONE quest'anno non lo mangia, ma anche per i suoi amichetti sar\u00e0 l'ultimo. Avanti con fiducia, non molliamo! E questo weekend tutti a firmare ai gazebo in centinaia di piazze da Nord a Sud! #votosubito", "shared_text": "", "time": "2016-12-14 11:51:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154336447428155&id=252306033154", "link": null} +{"post_id": "10154333335498155", "text": "Qui Strasburgo, sperando che Santa Lucia questo governo si porti via!", "post_text": "Qui Strasburgo, sperando che Santa Lucia questo governo si porti via!", "shared_text": "", "time": "2016-12-13 19:56:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154333335498155&id=252306033154", "link": null} +{"post_id": "10154331604903155", "text": "E il premio POLTRONARA dell'anno va a... (RIDICOLA!!!) #votosubito", "post_text": "E il premio POLTRONARA dell'anno va a... (RIDICOLA!!!) #votosubito", "shared_text": "", "time": "2016-12-13 13:11:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154331604903155&id=252306033154", "link": null} +{"post_id": "10154331527053155", "text": "Hanno la faccia come il c..o!\nQuindici giorni fa voleva dimettersi e invece, da sindacalista Cgil per il tessile, diventa ministro dell'Istruzione...\nSanta Lucia, questo infame governo portaci via!\nFAI GIRARE se anche a te girano le palle! #votosubito", "post_text": "Hanno la faccia come il c..o!\nQuindici giorni fa voleva dimettersi e invece, da sindacalista Cgil per il tessile, diventa ministro dell'Istruzione...\nSanta Lucia, questo infame governo portaci via!\nFAI GIRARE se anche a te girano le palle! #votosubito", "shared_text": "", "time": "2016-12-13 10:31:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154331527053155&id=252306033154", "link": null} +{"post_id": "10154307223013155", "text": "Se non sapete cosa fare, qui l'intervista completa dell'altro giorno ad \"Agor\u00e0\" su Rai Tre, dove ho avuto la possibilit\u00e0 di argomentare, credo in modo abbastanza chiaro, il nostro progetto per il dopo-Renzi. Avanti tutta! #votosubito", "post_text": "Se non sapete cosa fare, qui l'intervista completa dell'altro giorno ad \"Agor\u00e0\" su Rai Tre, dove ho avuto la possibilit\u00e0 di argomentare, credo in modo abbastanza chiaro, il nostro progetto per il dopo-Renzi. Avanti tutta! #votosubito", "shared_text": "", "time": "2016-12-07 17:23:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154307223013155&id=252306033154", "link": null} +{"post_id": "10154307100208155", "text": "Mi auguro che gli italiani non siano costretti ora per due mesi a parlare di Mattarellum, Consultellum, proporzionale... si vada a votare SUBITO, SUBITO, SUBITO! #votosubito", "post_text": "Mi auguro che gli italiani non siano costretti ora per due mesi a parlare di Mattarellum, Consultellum, proporzionale... si vada a votare SUBITO, SUBITO, SUBITO! #votosubito", "shared_text": "", "time": "2016-12-07 14:01:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154307100208155&id=252306033154", "link": null} +{"post_id": "10154306712738155", "text": "L'Euro, moneta tedesca, \u00e8 un esperimento FALLITO.\nDobbiamo uscire da questo sistema infernale che ha massacrato l'Italia, il primo passo per tornare grandi si chiama SOVRANIT\u00c0 MONETARIA!\n#votosubito", "post_text": "L'Euro, moneta tedesca, \u00e8 un esperimento FALLITO.\nDobbiamo uscire da questo sistema infernale che ha massacrato l'Italia, il primo passo per tornare grandi si chiama SOVRANIT\u00c0 MONETARIA!\n#votosubito", "shared_text": "", "time": "2016-12-07 11:31:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154306712738155&id=252306033154", "link": null} +{"post_id": "10154304699753155", "text": "Alfano-poltronaro! #votosubito", "post_text": "Alfano-poltronaro! #votosubito", "shared_text": "", "time": "2016-12-06 19:36:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154304699753155&id=252306033154", "link": null} +{"post_id": "10154304393993155", "text": "Qualche minuto insieme a voi!", "post_text": "Qualche minuto insieme a voi!", "shared_text": "", "time": "2016-12-06 16:50:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154304393993155&id=252306033154", "link": null} +{"post_id": "10154303997133155", "text": "NOOOOOOOO!!!\nIl giornalista tedesco, amico della Merkel, ci viene ancora a fare la lezioncina su quanto sono belli l'Unione europea e l'Euro... Non si pu\u00f2 ascoltare!!!\nGli ho portato il vostro saluto, ASFALTATO!", "post_text": "NOOOOOOOO!!!\nIl giornalista tedesco, amico della Merkel, ci viene ancora a fare la lezioncina su quanto sono belli l'Unione europea e l'Euro... Non si pu\u00f2 ascoltare!!!\nGli ho portato il vostro saluto, ASFALTATO!", "shared_text": "", "time": "2016-12-06 15:43:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154303997133155&id=252306033154", "link": null} +{"post_id": "10154303914063155", "text": "\"Io ho sempre collaborato molto bene con Renzi... Sono dispiaciuta che abbiano vinto i NO\".\nQuando la Merkel \u00e8 triste vuol sempre dire che \u00e8 un BUON GIORNO per l'Italia!!!\nFAI GIRARE, dai che torniamo PADRONI A CASA NOSTRA!", "post_text": "\"Io ho sempre collaborato molto bene con Renzi... Sono dispiaciuta che abbiano vinto i NO\".\nQuando la Merkel \u00e8 triste vuol sempre dire che \u00e8 un BUON GIORNO per l'Italia!!!\nFAI GIRARE, dai che torniamo PADRONI A CASA NOSTRA!", "shared_text": "", "time": "2016-12-06 13:32:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154303914063155&id=252306033154", "link": null} +{"post_id": "10154303844873155", "text": "Milioni di italiani domenica hanno detto: \"Il re \u00e8 nudo\".\nORA AL VOTO, con qualsiasi legge elettorale. #elezionisubito\nFATE IN FRETTA, il Popolo vuole decidere! Se sei d'accordo, condividi!", "post_text": "Milioni di italiani domenica hanno detto: \"Il re \u00e8 nudo\".\nORA AL VOTO, con qualsiasi legge elettorale. #elezionisubito\nFATE IN FRETTA, il Popolo vuole decidere! Se sei d'accordo, condividi!", "shared_text": "", "time": "2016-12-06 12:12:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154303844873155&id=252306033154", "link": null} +{"post_id": "10154302030198155", "text": "Aspettando Alfano e la diretta su Rai Uno...", "post_text": "Aspettando Alfano e la diretta su Rai Uno...", "shared_text": "", "time": "2016-12-05 21:05:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154302030198155&id=252306033154", "link": null} +{"post_id": "10154300850898155", "text": "Amici, seguitemi in questa diretta da Milano, nel giorno della liberazione nazionale da Renzi. Si parla di Futuro!", "post_text": "Amici, seguitemi in questa diretta da Milano, nel giorno della liberazione nazionale da Renzi. Si parla di Futuro!", "shared_text": "", "time": "2016-12-05 11:09:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154300850898155&id=252306033154", "link": null} +{"post_id": "10154300002893155", "text": "Renzi si dimette! A casaaaaa", "post_text": "Renzi si dimette! A casaaaaa", "shared_text": "", "time": "2016-12-05 00:37:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154300002893155&id=252306033154", "link": null} +{"post_id": "10154299948793155", "text": "", "post_text": "", "shared_text": "", "time": "2016-12-05 00:21:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154299948793155&id=252306033154", "link": null} +{"post_id": "10154299791278155", "text": "Siiiiiiiii! Anzi, nooooooo!", "post_text": "Siiiiiiiii! Anzi, nooooooo!", "shared_text": "", "time": "2016-12-04 23:18:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154299791278155&id=252306033154", "link": null} +{"post_id": "10154299767263155", "text": "", "post_text": "", "shared_text": "", "time": "2016-12-04 23:09:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154299767263155&id=252306033154", "link": null} +{"post_id": "10154292725583155", "text": "RENZI INCAPACE!\nIn tre anni MEZZO MILIONE DI IMMIGRATI SBARCATI che ci costano 35 EURO al GIORNO a testa per arricchire le cooperative degli amici degli amici!!\nAnche per questo #domenica #iovotono", "post_text": "RENZI INCAPACE!\nIn tre anni MEZZO MILIONE DI IMMIGRATI SBARCATI che ci costano 35 EURO al GIORNO a testa per arricchire le cooperative degli amici degli amici!!\nAnche per questo #domenica #iovotono", "shared_text": "", "time": "2016-12-04 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154292725583155&id=252306033154", "link": null} +{"post_id": "10154292720183155", "text": "Da tre anni Renzi dice di aver ridotto le TASSE: io vi chiedo, quest'anno PAGATE PI\u00d9 O MENO TASSE???\n#domenica #iovotono", "post_text": "Da tre anni Renzi dice di aver ridotto le TASSE: io vi chiedo, quest'anno PAGATE PI\u00d9 O MENO TASSE???\n#domenica #iovotono", "shared_text": "", "time": "2016-12-04 11:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154292720183155&id=252306033154", "link": null} +{"post_id": "10154296553078155", "text": "Mio intervento conclusivo da Mentana sul referendum. CONDIVIDIAMO e CONVINCIAMO un po' di indecisi, Amici?\nP.s. Mi dicono che girano video dove sembra che io chieda di votare s\u00ec... RIDICOLI! Per rispondere\u2026 Altro agli inganni dei ROSICONI che non vogliono perdere la poltrona \u00e8 importante che questa domenica SIATE IN TANTI a votare! #iovotono e i Renzi, gli Alfano, le Boschi, i Verdini, i Napolitano, i Prodi... LI MANDIAMO TUTTI A CASA!", "post_text": "Mio intervento conclusivo da Mentana sul referendum. CONDIVIDIAMO e CONVINCIAMO un po' di indecisi, Amici?\nP.s. Mi dicono che girano video dove sembra che io chieda di votare s\u00ec... RIDICOLI! Per rispondere\u2026 Altro agli inganni dei ROSICONI che non vogliono perdere la poltrona \u00e8 importante che questa domenica SIATE IN TANTI a votare! #iovotono e i Renzi, gli Alfano, le Boschi, i Verdini, i Napolitano, i Prodi... LI MANDIAMO TUTTI A CASA!", "shared_text": "", "time": "2016-12-03 22:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154296553078155&id=252306033154", "link": null} +{"post_id": "10154292713513155", "text": "Questo \u00e8 un referendum DETTATO a Renzi DALLA MERKEL, DALLE BANCHE e DA quei POTERI FORTI che prendono l'Italia per un centro commerciale dove andare a fare shopping!\n#domenica #iovotono", "post_text": "Questo \u00e8 un referendum DETTATO a Renzi DALLA MERKEL, DALLE BANCHE e DA quei POTERI FORTI che prendono l'Italia per un centro commerciale dove andare a fare shopping!\n#domenica #iovotono", "shared_text": "", "time": "2016-12-03 21:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154292713513155&id=252306033154", "link": null} +{"post_id": "10154295639353155", "text": "L'Italia di Renzi e del PD \u00e8 una tale barzelletta che questi hanno gioco facile a prenderci tutti per il c...!\nSe vi impegnate, domani sera ridiamo noi! Fino all'ultimo voto, fino all'ultimo indeciso da convincere: OGNI VOTO SERVE! #iovotono!", "post_text": "L'Italia di Renzi e del PD \u00e8 una tale barzelletta che questi hanno gioco facile a prenderci tutti per il c...!\nSe vi impegnate, domani sera ridiamo noi! Fino all'ultimo voto, fino all'ultimo indeciso da convincere: OGNI VOTO SERVE! #iovotono!", "shared_text": "", "time": "2016-12-03 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154295639353155&id=252306033154", "link": null} +{"post_id": "10154295988543155", "text": "Per quelli del PD le regole non valgono... Contro i giochini e l'arroganza degli amici di Renzi, se ognuno di noi convince 5 amici ad andare a votare (e votare NO), \u00e8 fatta. E sar\u00e0 una vittoria degli italiani\u2026 Altro che non si fanno intimidire da letterine, spot milionari, appelli di banche, industriali e presunti VIP \"morti di fama\"! DAI, #iovotono!", "post_text": "Per quelli del PD le regole non valgono... Contro i giochini e l'arroganza degli amici di Renzi, se ognuno di noi convince 5 amici ad andare a votare (e votare NO), \u00e8 fatta. E sar\u00e0 una vittoria degli italiani\u2026 Altro che non si fanno intimidire da letterine, spot milionari, appelli di banche, industriali e presunti VIP \"morti di fama\"! DAI, #iovotono!", "shared_text": "", "time": "2016-12-03 17:27:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154295988543155&id=252306033154", "link": null} +{"post_id": "10154293489368155", "text": "Quando non hanno pi\u00f9 argomenti, gli amici di Renzi sanno solo ricorrere alle BUGIE: SBUGIARDATO in diretta tv!!! E votiamo NO anche alla faccia sua! #iovotono", "post_text": "Quando non hanno pi\u00f9 argomenti, gli amici di Renzi sanno solo ricorrere alle BUGIE: SBUGIARDATO in diretta tv!!! E votiamo NO anche alla faccia sua! #iovotono", "shared_text": "", "time": "2016-12-02 19:29:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154293489368155&id=252306033154", "link": null} +{"post_id": "10154292995513155", "text": "1 MINUTO di intervista al Tg5, aiutami a condividere!\nBasta guardare chi invita a votare s\u00ec: la Merkel e il governo tedesco, banchieri, finanzieri, multinazionali, lobbisti... quelli che hanno MASSACRATO l'Italia e gli italiani. I VINCOLI e le FOLLIE dell'Unione Europea se le tenga Renzi, #iovotono", "post_text": "1 MINUTO di intervista al Tg5, aiutami a condividere!\nBasta guardare chi invita a votare s\u00ec: la Merkel e il governo tedesco, banchieri, finanzieri, multinazionali, lobbisti... quelli che hanno MASSACRATO l'Italia e gli italiani. I VINCOLI e le FOLLIE dell'Unione Europea se le tenga Renzi, #iovotono", "shared_text": "", "time": "2016-12-02 14:52:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154292995513155&id=252306033154", "link": null} +{"post_id": "10154292646173155", "text": "Renzi dice che RISPARMIA??? TUTTE BALLE!\nIntanto NON VIENE ABOLITO IL SENATO, con la sua legge elettorale SPENDIAMO 300 MILIONI IN PI\u00d9 e con L'AEREO che si \u00e8 comprato altri 170 MILIONI... Altro che tagli, CI PAGHIAMO 10 SENATI!\n#domenica #iovotono", "post_text": "Renzi dice che RISPARMIA??? TUTTE BALLE!\nIntanto NON VIENE ABOLITO IL SENATO, con la sua legge elettorale SPENDIAMO 300 MILIONI IN PI\u00d9 e con L'AEREO che si \u00e8 comprato altri 170 MILIONI... Altro che tagli, CI PAGHIAMO 10 SENATI!\n#domenica #iovotono", "shared_text": "", "time": "2016-12-02 10:48:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154292646173155&id=252306033154", "link": null} +{"post_id": "10154283014688155", "text": "1 MINUTO per convincere gli ultimi indecisi. AIUTAMI a farlo GIRARE: se domenica saremo in tanti, sar\u00e0 la vittoria di chi crede che il Popolo debba essere sempre sovrano e MAI SCHIAVO! #iovotono", "post_text": "1 MINUTO per convincere gli ultimi indecisi. AIUTAMI a farlo GIRARE: se domenica saremo in tanti, sar\u00e0 la vittoria di chi crede che il Popolo debba essere sempre sovrano e MAI SCHIAVO! #iovotono", "shared_text": "", "time": "2016-12-01 20:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154283014688155&id=252306033154", "link": null} +{"post_id": "10154290566938155", "text": "In diretta dalla Caserma Smiraglia di Bologna, in attesa che venga sistemata per migliorare la vita di tanti Poliziotti.", "post_text": "In diretta dalla Caserma Smiraglia di Bologna, in attesa che venga sistemata per migliorare la vita di tanti Poliziotti.", "shared_text": "", "time": "2016-12-01 15:34:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154290566938155&id=252306033154", "link": null} +{"post_id": "10154287917363155", "text": "Mio intervento, credo convincente, a Mattino Cinque. Dai, FACCIAMO GIRARE: se ciascuno di voi convince tre amici ad andare a votare domenica, e a votare NO, a Renzi e ai suoi amici banchieri, finanzieri,\u2026 Altro presunti grandi industriali e cosiddetti \"VIP\" daremo un colpo da cui non si riprenderanno pi\u00f9 (e torniamo a parlare di vita reale). #domenica #iovotono", "post_text": "Mio intervento, credo convincente, a Mattino Cinque. Dai, FACCIAMO GIRARE: se ciascuno di voi convince tre amici ad andare a votare domenica, e a votare NO, a Renzi e ai suoi amici banchieri, finanzieri,\u2026 Altro presunti grandi industriali e cosiddetti \"VIP\" daremo un colpo da cui non si riprenderanno pi\u00f9 (e torniamo a parlare di vita reale). #domenica #iovotono", "shared_text": "", "time": "2016-12-01 12:35:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154287917363155&id=252306033154", "link": null} +{"post_id": "10154289989558155", "text": "Io in diretta dal mercato della splendida Mantova.\nSolo sorrisi e strette di mano, niente insulti, come per Renzi...\nVoi cosa state facendo amici?", "post_text": "Io in diretta dal mercato della splendida Mantova.\nSolo sorrisi e strette di mano, niente insulti, come per Renzi...\nVoi cosa state facendo amici?", "shared_text": "", "time": "2016-12-01 10:06:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154289989558155&id=252306033154", "link": null} +{"post_id": "10154288746283155", "text": "Dopo Vicenza, dopo Padova, anche a Verona sala strapiena. Dai che l'aria \u00e8 quella buona!\nVi siete ricordati di cambiare la foto del profilo con un bel \"Io voto NO\"?\nP.s. Potete scaricare la foto anche da www.iovotono.org", "post_text": "Dopo Vicenza, dopo Padova, anche a Verona sala strapiena. Dai che l'aria \u00e8 quella buona!\nVi siete ricordati di cambiare la foto del profilo con un bel \"Io voto NO\"?\nP.s. Potete scaricare la foto anche da www.iovotono.org", "shared_text": "", "time": "2016-11-30 22:18:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154288746283155&id=252306033154", "link": "http://www.iovotono.org/?fbclid=IwAR0HUi0QBtuXLa5_e_5CpOiC43eA4CGDuiM_qB2qEuGUgzXcpfqn2GFa5ZE"} +{"post_id": "10154285031548155", "text": "Perch\u00e9 da tutti i sondaggi risulta che la maggioranza dei GIOVANI voter\u00e0 NO???\nPerch\u00e9 \u00e8 un NO DI SPERANZA di tanti ragazzi che non ne possono pi\u00f9 di Renzi e di questa Europa, e che non vogliono pi\u00f9 fuggire dall'Italia per trovare un lavoro!\n#domenica #iovotono", "post_text": "Perch\u00e9 da tutti i sondaggi risulta che la maggioranza dei GIOVANI voter\u00e0 NO???\nPerch\u00e9 \u00e8 un NO DI SPERANZA di tanti ragazzi che non ne possono pi\u00f9 di Renzi e di questa Europa, e che non vogliono pi\u00f9 fuggire dall'Italia per trovare un lavoro!\n#domenica #iovotono", "shared_text": "", "time": "2016-11-30 13:52:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154285031548155&id=252306033154", "link": null} +{"post_id": "10154287492938155", "text": "Il governo tedesco invita a votare S\u00ec. Voi che fate? #iovotono", "post_text": "Il governo tedesco invita a votare S\u00ec. Voi che fate? #iovotono", "shared_text": "", "time": "2016-11-30 10:33:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154287492938155&id=252306033154", "link": null} +{"post_id": "10154285103178155", "text": "\"Gi\u00e0 libero il clandestino che ha ucciso mio marito\".\nAscolta e fai girare la storia di Romina, questo Stato e questa \"giustizia\" mi fanno sempre pi\u00f9 SCHIFO!\n#domenica #iovotono", "post_text": "\"Gi\u00e0 libero il clandestino che ha ucciso mio marito\".\nAscolta e fai girare la storia di Romina, questo Stato e questa \"giustizia\" mi fanno sempre pi\u00f9 SCHIFO!\n#domenica #iovotono", "shared_text": "", "time": "2016-11-29 18:59:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154285103178155&id=252306033154", "link": null} +{"post_id": "10154285105603155", "text": "La dura vita del \"profugo\" nella VILLA DI LUSSO sul Lago di Garda... A tutto c'\u00e8 un limite, la pazienza \u00e8 finita!\n#domenica #iovotono", "post_text": "La dura vita del \"profugo\" nella VILLA DI LUSSO sul Lago di Garda... A tutto c'\u00e8 un limite, la pazienza \u00e8 finita!\n#domenica #iovotono", "shared_text": "", "time": "2016-11-29 15:20:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154285105603155&id=252306033154", "link": null} +{"post_id": "10154284951868155", "text": "PAZZESCO!\nLa Serracchiani, vice di Renzi, \"sulle banche abbiamo deciso di salvare le persone truffate, i poveri, ma NON GLI SPECULATORI\".\nHanno approvato un decreto che ha SALVATO I BANCHIERI e ROVINATO 150MILA\u2026 Altro PENSIONATI, artigiani e commercianti che hanno perso i risparmi di una vita e questi BUGIARDI SENZA VERGOGNA hanno il coraggio di definirli \"SPECULATORI\"!!!\nCACCIAMOLI!!! #domenica #iovotono", "post_text": "PAZZESCO!\nLa Serracchiani, vice di Renzi, \"sulle banche abbiamo deciso di salvare le persone truffate, i poveri, ma NON GLI SPECULATORI\".\nHanno approvato un decreto che ha SALVATO I BANCHIERI e ROVINATO 150MILA\u2026 Altro PENSIONATI, artigiani e commercianti che hanno perso i risparmi di una vita e questi BUGIARDI SENZA VERGOGNA hanno il coraggio di definirli \"SPECULATORI\"!!!\nCACCIAMOLI!!! #domenica #iovotono", "shared_text": "", "time": "2016-11-29 11:22:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154284951868155&id=252306033154", "link": null} +{"post_id": "10154282864218155", "text": "Ennesima \"renzata\" ai danni degli italiani!\nRenzi va in tutte le tiv\u00f9 a raccontare la barzelletta del \"referendum che semplifica\" e, intanto, nella manovra economica del governo viene prevista l'introduzione\u2026 Altro dello SPESOMETRO TRIMESTRALE per i titolari di PARTITA IVA.\nFOLLIA ASSOLUTA che obbligher\u00e0 milioni di cittadini a riempire ogni tre mesi tonnellate di SCARTOFFIE da inviare allo Stato. BASTA BUGIARDO!!! #domenica #iovotono", "post_text": "Ennesima \"renzata\" ai danni degli italiani!\nRenzi va in tutte le tiv\u00f9 a raccontare la barzelletta del \"referendum che semplifica\" e, intanto, nella manovra economica del governo viene prevista l'introduzione\u2026 Altro dello SPESOMETRO TRIMESTRALE per i titolari di PARTITA IVA.\nFOLLIA ASSOLUTA che obbligher\u00e0 milioni di cittadini a riempire ogni tre mesi tonnellate di SCARTOFFIE da inviare allo Stato. BASTA BUGIARDO!!! #domenica #iovotono", "shared_text": "", "time": "2016-11-28 19:55:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154282864218155&id=252306033154", "link": null} +{"post_id": "10154283348653155", "text": "In diretta dalla splendida Piacenza che dice \"NO\"!\n#iovotono tour.", "post_text": "In diretta dalla splendida Piacenza che dice \"NO\"!\n#iovotono tour.", "shared_text": "", "time": "2016-11-28 18:13:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154283348653155&id=252306033154", "link": null} +{"post_id": "10154282863568155", "text": "Dopo Renzi il DILUVIO? Alla faccia di banche, finanzieri, massoni, giornaloni e potentoni, questa volta sono d'accordo con Marco Travaglio. #iovotono", "post_text": "Dopo Renzi il DILUVIO? Alla faccia di banche, finanzieri, massoni, giornaloni e potentoni, questa volta sono d'accordo con Marco Travaglio. #iovotono", "shared_text": "", "time": "2016-11-28 13:53:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154282863568155&id=252306033154", "link": null} +{"post_id": "10154282639998155", "text": "10 MINUTI per spiegare perch\u00e9 il voto di domenica incider\u00e0 sulle nostre vite, sulla nostra libert\u00e0 di scelta, sul nostro lavoro, sul Made in Italy e anche su quello che potremo dare da mangiare e da bere ai nostri figli.\nAiutatemi a FAR GIRARE il video: Renzi conta sui soldi, io conto su di Voi!\n#iovotono", "post_text": "10 MINUTI per spiegare perch\u00e9 il voto di domenica incider\u00e0 sulle nostre vite, sulla nostra libert\u00e0 di scelta, sul nostro lavoro, sul Made in Italy e anche su quello che potremo dare da mangiare e da bere ai nostri figli.\nAiutatemi a FAR GIRARE il video: Renzi conta sui soldi, io conto su di Voi!\n#iovotono", "shared_text": "", "time": "2016-11-28 11:38:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154282639998155&id=252306033154", "link": null} +{"post_id": "10154280913913155", "text": "Qualche minuto per parlare con voi!", "post_text": "Qualche minuto per parlare con voi!", "shared_text": "", "time": "2016-11-27 18:04:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154280913913155&id=252306033154", "link": null} +{"post_id": "10154280761453155", "text": "Dietro le quinte di Rai Uno.", "post_text": "Dietro le quinte di Rai Uno.", "shared_text": "", "time": "2016-11-27 16:44:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154280761453155&id=252306033154", "link": null} +{"post_id": "10154279037093155", "text": "GUERRIGLIA URBANA qualche notte fa a Torino a cura di alcuni \"profughi\" da noi gentilmente ospitati. Come ringraziamento: BOMBE CARTA, cartelli divelti, CASSONETTI ROVESCIATI, violenze e intimidazioni e\u2026 Altro naturalmente l'accusa: \"ITALIANI RAZZISTI\". Giudicate voi... Questa \u00e8 l'Italia del PD e del governo Renzi \"porte aperte\". Non vedo l'ora, domenica prossima, di VOTARE NO! #4dicembre #iovotono", "post_text": "GUERRIGLIA URBANA qualche notte fa a Torino a cura di alcuni \"profughi\" da noi gentilmente ospitati. Come ringraziamento: BOMBE CARTA, cartelli divelti, CASSONETTI ROVESCIATI, violenze e intimidazioni e\u2026 Altro naturalmente l'accusa: \"ITALIANI RAZZISTI\". Giudicate voi... Questa \u00e8 l'Italia del PD e del governo Renzi \"porte aperte\". Non vedo l'ora, domenica prossima, di VOTARE NO! #4dicembre #iovotono", "shared_text": "", "time": "2016-11-27 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154279037093155&id=252306033154", "link": null} +{"post_id": "10154279020928155", "text": "Dopo Mondov\u00ec, Cuneo, Narzole, Alba, Asti, ora sono in diretta dalla splendida piazza di Alessandria! Fatemi compagnia!\n#4dicembre #iovotono", "post_text": "Dopo Mondov\u00ec, Cuneo, Narzole, Alba, Asti, ora sono in diretta dalla splendida piazza di Alessandria! Fatemi compagnia!\n#4dicembre #iovotono", "shared_text": "", "time": "2016-11-26 21:35:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154279020928155&id=252306033154", "link": null} +{"post_id": "10154277908108155", "text": "In diretta da Cuneo! #Iovotono tour", "post_text": "In diretta da Cuneo! #Iovotono tour", "shared_text": "", "time": "2016-11-26 11:27:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154277908108155&id=252306033154", "link": null} +{"post_id": "10154276571158155", "text": "TRISTE E SIGNIFICATIVO, DA GUARDARE.\nL'operaio di Monfalcone, in lacrime, dice che non voter\u00e0 pi\u00f9 a \"sinistra\". Come stupirsi, se RENZI conosce pi\u00f9 BANCHIERI che operai? Destra e sinistra? Etichette ormai senza\u2026 Altro senso. Oggi lo scontro \u00e8 piccoli contro grandi, lavoro contro finanza, popolo contro banche, sovranit\u00e0 e identit\u00e0 contro il Pensiero Unico globalizzato che ci vuole SCHIAVI! Non a caso, a Monfalcone, dopo 70 anni di giunte \"rosse\", ha vinto la Lega. Anche per questo il #4dicembre, per riprenderci il nostro Futuro, #iovotono!", "post_text": "TRISTE E SIGNIFICATIVO, DA GUARDARE.\nL'operaio di Monfalcone, in lacrime, dice che non voter\u00e0 pi\u00f9 a \"sinistra\". Come stupirsi, se RENZI conosce pi\u00f9 BANCHIERI che operai? Destra e sinistra? Etichette ormai senza\u2026 Altro senso. Oggi lo scontro \u00e8 piccoli contro grandi, lavoro contro finanza, popolo contro banche, sovranit\u00e0 e identit\u00e0 contro il Pensiero Unico globalizzato che ci vuole SCHIAVI! Non a caso, a Monfalcone, dopo 70 anni di giunte \"rosse\", ha vinto la Lega. Anche per questo il #4dicembre, per riprenderci il nostro Futuro, #iovotono!", "shared_text": "", "time": "2016-11-26 11:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154276571158155&id=252306033154", "link": null} +{"post_id": "10154277785273155", "text": "In diretta da Mondov\u00ec (Cuneo)! Tantissima gente che dice NO!", "post_text": "In diretta da Mondov\u00ec (Cuneo)! Tantissima gente che dice NO!", "shared_text": "", "time": "2016-11-26 09:30:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154277785273155&id=252306033154", "link": null} +{"post_id": "10154276833458155", "text": "Diretta da Genova (seconda parte). #iovotono #4dicembre", "post_text": "Diretta da Genova (seconda parte). #iovotono #4dicembre", "shared_text": "", "time": "2016-11-25 22:48:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154276833458155&id=252306033154", "link": null} +{"post_id": "10154276681708155", "text": "Amici, dopo questa splendida giornata in giro per Toscana e Liguria, ora in diretta da GENOVA, con tanti amici che il #4dicembre voteranno NO!!! #iovotono", "post_text": "Amici, dopo questa splendida giornata in giro per Toscana e Liguria, ora in diretta da GENOVA, con tanti amici che il #4dicembre voteranno NO!!! #iovotono", "shared_text": "", "time": "2016-11-25 21:47:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154276681708155&id=252306033154", "link": null} +{"post_id": "10154276498183155", "text": "Quando ascolto 'sta fenomena non so se ridere o piangere...\nLetame, fumogeni e scritte MERDE contro il sindaco di Quinto di Treviso, \"colpevole\" di aver bloccato l'arrivo di presunti profughi.\nGli autori? I\u2026 Altro soliti sfigati dei centri a-sociali: qui una simpatica rappresentante degli assalitori sostiene che la LEGA fa una \"politica NECROFILA\"...!!!\nMa questi che cos'hanno nel cervello?\nSolidariet\u00e0 al sindaco Mauro Dal Zilio, NON MOLLARE!", "post_text": "Quando ascolto 'sta fenomena non so se ridere o piangere...\nLetame, fumogeni e scritte MERDE contro il sindaco di Quinto di Treviso, \"colpevole\" di aver bloccato l'arrivo di presunti profughi.\nGli autori? I\u2026 Altro soliti sfigati dei centri a-sociali: qui una simpatica rappresentante degli assalitori sostiene che la LEGA fa una \"politica NECROFILA\"...!!!\nMa questi che cos'hanno nel cervello?\nSolidariet\u00e0 al sindaco Mauro Dal Zilio, NON MOLLARE!", "shared_text": "", "time": "2016-11-25 20:23:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154276498183155&id=252306033154", "link": null} +{"post_id": "10154275637048155", "text": "In diretta dalla Toscana che dice No! Spettacolo.", "post_text": "In diretta dalla Toscana che dice No! Spettacolo.", "shared_text": "", "time": "2016-11-25 12:04:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154275637048155&id=252306033154", "link": null} +{"post_id": "10154270824993155", "text": "TACI CHE \u00c8 MEGLIO! N. 3\nNapolitano: i populisti sono un pericolo grave, io apprezzo la Merkel.\nIl pericolo grave sono lui e il suo protetto Renz!!i! #4dicembre #iovotono", "post_text": "TACI CHE \u00c8 MEGLIO! N. 3\nNapolitano: i populisti sono un pericolo grave, io apprezzo la Merkel.\nIl pericolo grave sono lui e il suo protetto Renz!!i! #4dicembre #iovotono", "shared_text": "", "time": "2016-11-25 11:51:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154270824993155&id=252306033154", "link": null} +{"post_id": "10154274335693155", "text": "\"Svegliarmi il 5 di dicembre e vedere SALVINI che esulta, questo mi produce dei dolori di pancia insopportabili\". BATTUTONA! I rosiconi dei giornaloni non hanno ancora digerito la vittoria di Trump, purtroppo per loro dovranno rosicare ancora! #4dicembre #iovoto", "post_text": "\"Svegliarmi il 5 di dicembre e vedere SALVINI che esulta, questo mi produce dei dolori di pancia insopportabili\". BATTUTONA! I rosiconi dei giornaloni non hanno ancora digerito la vittoria di Trump, purtroppo per loro dovranno rosicare ancora! #4dicembre #iovoto", "shared_text": "", "time": "2016-11-25 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154274335693155&id=252306033154", "link": null} +{"post_id": "10154273383003155", "text": "Non sanno pi\u00f9 dove metterli, siamo arrivati agli ESPROPRI DI CASE E DI ALBERGHI!\nIn tre anni di Renzi hanno fatto sbarcare in Italia MEZZO MILIONE di CLANDESTINI mascherati da profughi, un ENORME BUSINESS per\u2026 Altro le cooperative degli amici degli amici.\nE con il referendum voluto da Renzi, che intende ulteriormente centralizzare la gestione dell'immigrazione nelle mani del governo, VOGLIONO ZITTIRE i tanti sindaci e cittadini coraggiosi che protestano e combattono l'invasione a difesa delle loro comunit\u00e0.\nIl #4dicembre #iovotono anche per loro!", "post_text": "Non sanno pi\u00f9 dove metterli, siamo arrivati agli ESPROPRI DI CASE E DI ALBERGHI!\nIn tre anni di Renzi hanno fatto sbarcare in Italia MEZZO MILIONE di CLANDESTINI mascherati da profughi, un ENORME BUSINESS per\u2026 Altro le cooperative degli amici degli amici.\nE con il referendum voluto da Renzi, che intende ulteriormente centralizzare la gestione dell'immigrazione nelle mani del governo, VOGLIONO ZITTIRE i tanti sindaci e cittadini coraggiosi che protestano e combattono l'invasione a difesa delle loro comunit\u00e0.\nIl #4dicembre #iovotono anche per loro!", "shared_text": "", "time": "2016-11-24 16:38:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154273383003155&id=252306033154", "link": null} +{"post_id": "10154273311938155", "text": "Adesso ci sarebbe pure l'emergenza BADANTI IMMIGRATE STUPRATE dai datori di lavoro italiani!\nIn Italia ci sono 5 milioni di immigrati REGOLARI e perbene, che pagano le tasse e mandano i figli a scuola. Loro\u2026 Altro sono i benvenuti. Quelli che vengono a sparare FESSERIE come il signore, o che occupano case e caserme a spese nostre, NO: se ne tornino a casa loro! #iovotono", "post_text": "Adesso ci sarebbe pure l'emergenza BADANTI IMMIGRATE STUPRATE dai datori di lavoro italiani!\nIn Italia ci sono 5 milioni di immigrati REGOLARI e perbene, che pagano le tasse e mandano i figli a scuola. Loro\u2026 Altro sono i benvenuti. Quelli che vengono a sparare FESSERIE come il signore, o che occupano case e caserme a spese nostre, NO: se ne tornino a casa loro! #iovotono", "shared_text": "", "time": "2016-11-24 12:59:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154273311938155&id=252306033154", "link": null} +{"post_id": "10154270818663155", "text": "TACI CHE \u00c8 MEGLIO! N. 1\nNapolitano: \"Io da ex-presidente e senatore a vita, in serena coscienza e nell'interesse generale, vi dico che voter\u00f2 S\u00cc!\". FACCIAMO GIRARE: se lui vota s\u00ec, noi votiamo, ancora pi\u00f9 convintamente, NO!!!\n#4dicembre #iovotono", "post_text": "TACI CHE \u00c8 MEGLIO! N. 1\nNapolitano: \"Io da ex-presidente e senatore a vita, in serena coscienza e nell'interesse generale, vi dico che voter\u00f2 S\u00cc!\". FACCIAMO GIRARE: se lui vota s\u00ec, noi votiamo, ancora pi\u00f9 convintamente, NO!!!\n#4dicembre #iovotono", "shared_text": "", "time": "2016-11-23 19:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154270818663155&id=252306033154", "link": null} +{"post_id": "10154268344363155", "text": "Tre \"profughi\" che STUPRANO una ragazza in un parco di Chiari vicino a Brescia. Un tunisino che PALPEGGIA una ragazzina di 13 anni in pieno centro a Verona. Un \"richiedente asilo\" che MOLESTA un bimbo di 8 anni\u2026 Altro a Fiano Romano.\nMentre Renzi dice \"accogliamoli poverini che scappano dalla guerra\", quante altre VIOLENZE dovremo attendere perch\u00e9 il governo fermi l'INVASIONE?\nFuori tutti i clandestini! Io non mi arrendo, e intanto #4dicembre #iovotono", "post_text": "Tre \"profughi\" che STUPRANO una ragazza in un parco di Chiari vicino a Brescia. Un tunisino che PALPEGGIA una ragazzina di 13 anni in pieno centro a Verona. Un \"richiedente asilo\" che MOLESTA un bimbo di 8 anni\u2026 Altro a Fiano Romano.\nMentre Renzi dice \"accogliamoli poverini che scappano dalla guerra\", quante altre VIOLENZE dovremo attendere perch\u00e9 il governo fermi l'INVASIONE?\nFuori tutti i clandestini! Io non mi arrendo, e intanto #4dicembre #iovotono", "shared_text": "", "time": "2016-11-23 14:30:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154268344363155&id=252306033154", "link": null} +{"post_id": "10154268720348155", "text": "Un anno fa 150 MILA TRUFFATI da Banca Etruria e altri istituti apprendevano che il governo salvava le banche e non loro. Ieri hanno manifestato a Roma, queste sono le loro VOCI! Molti di loro votavano PD, ora\u2026 Altro votano NO!\nFACCIAMOLE GIRARE almeno su Facebook!\nP.s. Renzi? Ieri era in giro per la Toscana a fare propaganda per la sua inutile schiforma, in ELICOTTERO... alla faccia dei risparmiatori. #iovotono", "post_text": "Un anno fa 150 MILA TRUFFATI da Banca Etruria e altri istituti apprendevano che il governo salvava le banche e non loro. Ieri hanno manifestato a Roma, queste sono le loro VOCI! Molti di loro votavano PD, ora\u2026 Altro votano NO!\nFACCIAMOLE GIRARE almeno su Facebook!\nP.s. Renzi? Ieri era in giro per la Toscana a fare propaganda per la sua inutile schiforma, in ELICOTTERO... alla faccia dei risparmiatori. #iovotono", "shared_text": "", "time": "2016-11-23 11:26:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154268720348155&id=252306033154", "link": null} +{"post_id": "10154269638693155", "text": "Mamma mia che statista, mi attacca ma invece di far ridere mette tristezza... Dai, mandiamolo a casa!\n#4dicembre #iovotono", "post_text": "Mamma mia che statista, mi attacca ma invece di far ridere mette tristezza... Dai, mandiamolo a casa!\n#4dicembre #iovotono", "shared_text": "", "time": "2016-11-22 21:57:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154269638693155&id=252306033154", "link": null} +{"post_id": "10154269349533155", "text": "Pi\u00f9 ascolto Renzi, pi\u00f9 rileggo il testo della sua riforma, pi\u00f9 mi convinco: #iovotono. E voi? Fra poco sono in diretta su Rai Uno con Serracchiani e Martina.....", "post_text": "Pi\u00f9 ascolto Renzi, pi\u00f9 rileggo il testo della sua riforma, pi\u00f9 mi convinco: #iovotono. E voi? Fra poco sono in diretta su Rai Uno con Serracchiani e Martina.....", "shared_text": "", "time": "2016-11-22 20:08:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154269349533155&id=252306033154", "link": null} +{"post_id": "10154268379443155", "text": "ASCOLTATE! Finalmente la VERIT\u00c0 sui centri di accoglienza: FINTI profughi, SPACCIO, PROSTITUZIONE. Testimonianza ESCLUSIVA (complimenti a Paolo Del Debbio): visto che i TG tacciono, fatela girare il pi\u00f9 possibile!", "post_text": "ASCOLTATE! Finalmente la VERIT\u00c0 sui centri di accoglienza: FINTI profughi, SPACCIO, PROSTITUZIONE. Testimonianza ESCLUSIVA (complimenti a Paolo Del Debbio): visto che i TG tacciono, fatela girare il pi\u00f9 possibile!", "shared_text": "", "time": "2016-11-22 14:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154268379443155&id=252306033154", "link": null} +{"post_id": "10154227340388155", "text": "Anche per voi la priorit\u00e0 \u00e8 rafforzare l'integrazione dei \"profughi\"???\nC'\u00e8 chi dice \"prima i clandestini\", io dico orgogliosamente \"PRIMA GLI ITALIANI\" (e il #4dicembre #iovotono)", "post_text": "Anche per voi la priorit\u00e0 \u00e8 rafforzare l'integrazione dei \"profughi\"???\nC'\u00e8 chi dice \"prima i clandestini\", io dico orgogliosamente \"PRIMA GLI ITALIANI\" (e il #4dicembre #iovotono)", "shared_text": "", "time": "2016-11-22 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154227340388155&id=252306033154", "link": null} +{"post_id": "10154266269208155", "text": "In 5 minuti ecco perch\u00e9 votare NO! Facciamo girare!\n#4dicembre #iovotono", "post_text": "In 5 minuti ecco perch\u00e9 votare NO! Facciamo girare!\n#4dicembre #iovotono", "shared_text": "", "time": "2016-11-21 17:40:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154266269208155&id=252306033154", "link": null} +{"post_id": "10154257532363155", "text": "I telegiornali ci raccontano che in Europa Renzi lotta come un leone per difendere gli interessi degli italiani.\nLa realt\u00e0: 148 VOTAZIONI in Consiglio europeo, sapete quante volte il governo italiano ha VOTATO\u2026 Altro CONTRO??? Indovinate\u2026 ZERO!!!\nUn bugiardo sostenuto da bugiardi, dai che li mandiamo TUTTI A CASA! #4dicembre #iovotono", "post_text": "I telegiornali ci raccontano che in Europa Renzi lotta come un leone per difendere gli interessi degli italiani.\nLa realt\u00e0: 148 VOTAZIONI in Consiglio europeo, sapete quante volte il governo italiano ha VOTATO\u2026 Altro CONTRO??? Indovinate\u2026 ZERO!!!\nUn bugiardo sostenuto da bugiardi, dai che li mandiamo TUTTI A CASA! #4dicembre #iovotono", "shared_text": "", "time": "2016-11-21 12:28:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154257532363155&id=252306033154", "link": null} +{"post_id": "10154264176043155", "text": "Venti minuti a \"Che tempo che fa\" su Rai Tre di cui sono soddisfatto!\nMi aiutate a CONDIVIDERE in giro?\nDopo Renzi non c'\u00e8 il diluvio, anzi dopo Renzi c'\u00e8 il FUTURO: di lavoro, di sicurezza, di identit\u00e0, sovranit\u00e0 e libert\u00e0. Io ci credo, insieme si pu\u00f2!\nIl #4dicembre #iovotono", "post_text": "Venti minuti a \"Che tempo che fa\" su Rai Tre di cui sono soddisfatto!\nMi aiutate a CONDIVIDERE in giro?\nDopo Renzi non c'\u00e8 il diluvio, anzi dopo Renzi c'\u00e8 il FUTURO: di lavoro, di sicurezza, di identit\u00e0, sovranit\u00e0 e libert\u00e0. Io ci credo, insieme si pu\u00f2!\nIl #4dicembre #iovotono", "shared_text": "", "time": "2016-11-20 22:05:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154264176043155&id=252306033154", "link": null} +{"post_id": "10154263869318155", "text": "Questa mattina a Milano, tanta gente incontrata, tanti volantini #IOVOTONO distribuiti! NON MOLLIAMO!\nTutte le tappe del su: www.iovotono.org/tour", "post_text": "Questa mattina a Milano, tanta gente incontrata, tanti volantini #IOVOTONO distribuiti! NON MOLLIAMO!\nTutte le tappe del su: www.iovotono.org/tour", "shared_text": "", "time": "2016-11-20 19:10:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154263869318155&id=252306033154", "link": "http://www.iovotono.org/tour?fbclid=IwAR2Cy8STG1JGP3jHzZBsySnvZe2EoHa7mTb3MfPsJpr46yyZYlaNAF3ilrY"} +{"post_id": "10154263037733155", "text": "In diretta dagli studi di Canale 5.", "post_text": "In diretta dagli studi di Canale 5.", "shared_text": "", "time": "2016-11-20 13:43:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154263037733155&id=252306033154", "link": null} +{"post_id": "10154261067888155", "text": "PAZZESCO!\nGentilmente ospitati a nostre spese, mandano 7 agenti all'ospedale, litigavano per il \"pocket money\"... Grazie Renzi, grazie governo dell'invasione... Il #4dicembre #iovotono", "post_text": "PAZZESCO!\nGentilmente ospitati a nostre spese, mandano 7 agenti all'ospedale, litigavano per il \"pocket money\"... Grazie Renzi, grazie governo dell'invasione... Il #4dicembre #iovotono", "shared_text": "", "time": "2016-11-20 12:20:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154261067888155&id=252306033154", "link": null} +{"post_id": "10154261131533155", "text": "La mia intervista di oggi con Luca Telese a Roma insieme a tanti amici che il 4 dicembre voteranno NO! E voi, quanti amici, parenti, conoscenti avete gi\u00e0 convinto? #iovotono", "post_text": "La mia intervista di oggi con Luca Telese a Roma insieme a tanti amici che il 4 dicembre voteranno NO! E voi, quanti amici, parenti, conoscenti avete gi\u00e0 convinto? #iovotono", "shared_text": "", "time": "2016-11-19 20:31:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154261131533155&id=252306033154", "link": null} +{"post_id": "10154258054633155", "text": "Altro che Renzi che finge di tagliare sprechi e ruberie, e non taglia proprio nulla.\nPartiamo dal MANDARE A CASA i tanti BUROCRATI MANGIA-STIPENDI e dal CANCELLARE gli \"Uffici complicazioni cose semplici\", VIA SUBITO le prefetture e le sovrintendenze! Anche per questo il #4dicembre #iovotono. E tu???", "post_text": "Altro che Renzi che finge di tagliare sprechi e ruberie, e non taglia proprio nulla.\nPartiamo dal MANDARE A CASA i tanti BUROCRATI MANGIA-STIPENDI e dal CANCELLARE gli \"Uffici complicazioni cose semplici\", VIA SUBITO le prefetture e le sovrintendenze! Anche per questo il #4dicembre #iovotono. E tu???", "shared_text": "", "time": "2016-11-19 14:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154258054633155&id=252306033154", "link": null} +{"post_id": "10154257944788155", "text": "Inserendo per dodici volte l'Unione europea in Costituzione, Renzi vuole svendere definitivamente la sovranit\u00e0 degli italiani a Bruxelles.\nDa cittadino, da uomo libero, ma soprattutto da padre, #IOVOTONO per non lasciare a mio figlio di tredici e a mia figlia di quattro anni una Costituzione e un futuro che li vuole SCHIAVI!", "post_text": "Inserendo per dodici volte l'Unione europea in Costituzione, Renzi vuole svendere definitivamente la sovranit\u00e0 degli italiani a Bruxelles.\nDa cittadino, da uomo libero, ma soprattutto da padre, #IOVOTONO per non lasciare a mio figlio di tredici e a mia figlia di quattro anni una Costituzione e un futuro che li vuole SCHIAVI!", "shared_text": "", "time": "2016-11-19 09:14:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154257944788155&id=252306033154", "link": null} +{"post_id": "10154234982303155", "text": "Flat-tax al 15% per famiglie e imprese, che \u00e8 anche nei programmi di Donald Trump, e la CRESCITA ZERO dell'incapace Renzi e dei suoi padroni dell'Unione Sovietica Europea sar\u00e0 solo un ricordo!\nVi consiglio un\u2026 Altro sito: WWW.TASSAUNICA.IT, dove potete comprare anche il nuovo libro di Armando Siri che, numeri alla mano, spiega il nostro progetto di RIVOLUZIONE FISCALE.", "post_text": "Flat-tax al 15% per famiglie e imprese, che \u00e8 anche nei programmi di Donald Trump, e la CRESCITA ZERO dell'incapace Renzi e dei suoi padroni dell'Unione Sovietica Europea sar\u00e0 solo un ricordo!\nVi consiglio un\u2026 Altro sito: WWW.TASSAUNICA.IT, dove potete comprare anche il nuovo libro di Armando Siri che, numeri alla mano, spiega il nostro progetto di RIVOLUZIONE FISCALE.", "shared_text": "", "time": "2016-11-18 12:26:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154234982303155&id=252306033154", "link": "http://WWW.TASSAUNICA.IT/?fbclid=IwAR06vDliiy-B-NpTcLDB0HFHwpHxnBW0IT27DUU8MLqJdJnm6dI-If0toO0"} +{"post_id": "10154255789038155", "text": "In un Paese normale, se mi entri in casa di notte ed esci steso, \u00e8 UN PROBLEMA TUO! Il governo Renzi? Della legittima difesa se ne frega!\nAnche per questo il #4dicembre #iovotono", "post_text": "In un Paese normale, se mi entri in casa di notte ed esci steso, \u00e8 UN PROBLEMA TUO! Il governo Renzi? Della legittima difesa se ne frega!\nAnche per questo il #4dicembre #iovotono", "shared_text": "", "time": "2016-11-18 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154255789038155&id=252306033154", "link": null} +{"post_id": "10154251105478155", "text": "Se vuol dire mettere al primo posto il POPOLO e non le banche, gli ITALIANI e non i clandestini, allora siamo fieri di essere populisti! #4dicembre #iovotono", "post_text": "Se vuol dire mettere al primo posto il POPOLO e non le banche, gli ITALIANI e non i clandestini, allora siamo fieri di essere populisti! #4dicembre #iovotono", "shared_text": "", "time": "2016-11-17 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154251105478155&id=252306033154", "link": null} +{"post_id": "10154246378308155", "text": "Renzi, Boschi e Padoan hanno SVENDUTO gli italiani alle banche! E, a un anno di distanza, per i 150mila TRUFFATI di Banca Etruria e simili non hanno mosso un dito! La parola deve ritornare al POPOLO! #4dicembre #iovotono", "post_text": "Renzi, Boschi e Padoan hanno SVENDUTO gli italiani alle banche! E, a un anno di distanza, per i 150mila TRUFFATI di Banca Etruria e simili non hanno mosso un dito! La parola deve ritornare al POPOLO! #4dicembre #iovotono", "shared_text": "", "time": "2016-11-17 11:56:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154246378308155&id=252306033154", "link": null} +{"post_id": "10154254685558155", "text": "... e questo sarebbe il ministro dell'ECONOMIA!!! Pazzesco! Il 4 dicembre andate a votare e li MANDIAMO TUTTI A CASA! #iovotono\nFATE GIRARE VOI, giornali e tiv\u00f9 lo nasconderanno.", "post_text": "... e questo sarebbe il ministro dell'ECONOMIA!!! Pazzesco! Il 4 dicembre andate a votare e li MANDIAMO TUTTI A CASA! #iovotono\nFATE GIRARE VOI, giornali e tiv\u00f9 lo nasconderanno.", "shared_text": "", "time": "2016-11-17 09:58:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154254685558155&id=252306033154", "link": null} +{"post_id": "10154253345913155", "text": "In attesa di partire... parliamo un po' di NO!", "post_text": "In attesa di partire... parliamo un po' di NO!", "shared_text": "", "time": "2016-11-16 19:56:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154253345913155&id=252306033154", "link": null} +{"post_id": "10154252340068155", "text": "\"SALVINI \u00c8 UN PESSIMO POLITICO\".\nChe faccia di bronzo che ha quella str...a della Fornero!\nDopo aver rovinato milioni di italiani dice che voter\u00e0 S\u00cd al referendum.\nUn motivo in pi\u00f9 per votare NO!\nQuando saremo\u2026 Altro al governo la sua legge-schifezza LA CANCELLIAMO e la Fornero sar\u00e0 solo un brutto ricordo. Promesso!\n#iovotono #4dicembre", "post_text": "\"SALVINI \u00c8 UN PESSIMO POLITICO\".\nChe faccia di bronzo che ha quella str...a della Fornero!\nDopo aver rovinato milioni di italiani dice che voter\u00e0 S\u00cd al referendum.\nUn motivo in pi\u00f9 per votare NO!\nQuando saremo\u2026 Altro al governo la sua legge-schifezza LA CANCELLIAMO e la Fornero sar\u00e0 solo un brutto ricordo. Promesso!\n#iovotono #4dicembre", "shared_text": "", "time": "2016-11-16 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154252340068155&id=252306033154", "link": null} +{"post_id": "10154252282518155", "text": "Venti minuti di mia intervista su LA 7, credo efficaci. Mi aiutate a diffondere su bacheche di vostri amici indecisi su come votare al referendum del #4dicembre? Se stai a casa, aiuti Renzi! #iovotono", "post_text": "Venti minuti di mia intervista su LA 7, credo efficaci. Mi aiutate a diffondere su bacheche di vostri amici indecisi su come votare al referendum del #4dicembre? Se stai a casa, aiuti Renzi! #iovotono", "shared_text": "", "time": "2016-11-16 17:34:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154252282518155&id=252306033154", "link": null} +{"post_id": "10154250468878155", "text": "ECCO I DATI VERI CENSURATI DAI TG!\nNumeri del Ministero dell'Interno alla mano, su 76.448 domande di asilo politico presentate, le domande accolte sono 3.952, e i siriani sono appena 800. Il resto? FINTI\u2026 Altro PROFUGHI! Accogliere donne e bambini in fuga dalla guerra \u00e8 un mio dovere sacrosanto, devono essere portati qui in aereo, non su un gommone.\nMa tutti gli altri VANNO RIMANDATI A CASA LORO. Punto!", "post_text": "ECCO I DATI VERI CENSURATI DAI TG!\nNumeri del Ministero dell'Interno alla mano, su 76.448 domande di asilo politico presentate, le domande accolte sono 3.952, e i siriani sono appena 800. Il resto? FINTI\u2026 Altro PROFUGHI! Accogliere donne e bambini in fuga dalla guerra \u00e8 un mio dovere sacrosanto, devono essere portati qui in aereo, non su un gommone.\nMa tutti gli altri VANNO RIMANDATI A CASA LORO. Punto!", "shared_text": "", "time": "2016-11-16 11:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154250468878155&id=252306033154", "link": null} +{"post_id": "10154249990543155", "text": "Gli abusivi a Bologna adesso non vi portano solo l'ALCOL, ma anche la DROGA! Tutto libero! E il PD che fa? NULLA.\n(Finto acquisto, ovviamente, girato dall'Associazione Bologna Centro Storico che ha documentato la situazione)", "post_text": "Gli abusivi a Bologna adesso non vi portano solo l'ALCOL, ma anche la DROGA! Tutto libero! E il PD che fa? NULLA.\n(Finto acquisto, ovviamente, girato dall'Associazione Bologna Centro Storico che ha documentato la situazione)", "shared_text": "", "time": "2016-11-16 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154249990543155&id=252306033154", "link": null} +{"post_id": "10154247306728155", "text": "VERME MALEDETTO!!!\nCome in Austria, anche per rispetto dei milioni di immigrati regolari e perbene che lavorano, pagano le tasse e mandano i figli a scuola, questa SCHIFEZZA UMANA va messa ai LAVORI FORZATI per ripagare gli italiani dei danni subiti, e poi va rispedito A CALCI IN C. a casa sua!!!", "post_text": "VERME MALEDETTO!!!\nCome in Austria, anche per rispetto dei milioni di immigrati regolari e perbene che lavorano, pagano le tasse e mandano i figli a scuola, questa SCHIFEZZA UMANA va messa ai LAVORI FORZATI per ripagare gli italiani dei danni subiti, e poi va rispedito A CALCI IN C. a casa sua!!!", "shared_text": "", "time": "2016-11-15 11:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154247306728155&id=252306033154", "link": null} +{"post_id": "10154247315113155", "text": "Aspettando Quinta Colonna su Rete Quattro.", "post_text": "Aspettando Quinta Colonna su Rete Quattro.", "shared_text": "", "time": "2016-11-14 21:02:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154247315113155&id=252306033154", "link": null} +{"post_id": "10154245622788155", "text": "Il mio intervento di sabato a FIRENZE, Renzi una piazza cos\u00ec se la sogna!\nDai, manca poco! FAI GIRARE! Il #4dicembre #iovotono\nP.s. Il referendum \u00e8 valido qualsiasi sia l'affluenza, non c'\u00e8 quorum!\nChi non vota, aiuta il BUGIARDO patentato!", "post_text": "Il mio intervento di sabato a FIRENZE, Renzi una piazza cos\u00ec se la sogna!\nDai, manca poco! FAI GIRARE! Il #4dicembre #iovotono\nP.s. Il referendum \u00e8 valido qualsiasi sia l'affluenza, non c'\u00e8 quorum!\nChi non vota, aiuta il BUGIARDO patentato!", "shared_text": "", "time": "2016-11-14 18:55:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154245622788155&id=252306033154", "link": null} +{"post_id": "10154245566383155", "text": "Centrodestra e centrosinistra? Roba vecchia! Il nostro \u00e8 il progetto di chi mette al centro la SOVRANIT\u00c0 del Popolo, contro chi ha svenduto l'Italia all'Unione Europea, alle banche, alle multinazionali! Renzi, stai sereno! #4dicembre #iovotono", "post_text": "Centrodestra e centrosinistra? Roba vecchia! Il nostro \u00e8 il progetto di chi mette al centro la SOVRANIT\u00c0 del Popolo, contro chi ha svenduto l'Italia all'Unione Europea, alle banche, alle multinazionali! Renzi, stai sereno! #4dicembre #iovotono", "shared_text": "", "time": "2016-11-14 11:16:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154245566383155&id=252306033154", "link": null} +{"post_id": "10154241022673155", "text": "Grazie Firenzeeeee! #iovotono", "post_text": "Grazie Firenzeeeee! #iovotono", "shared_text": "", "time": "2016-11-12 17:18:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154241022673155&id=252306033154", "link": null} +{"post_id": "10154240724813155", "text": "Amici, seguiteci in diretta da questa splendida piazza di Idee, Cuore, Coraggio e Futuro! #iovotono #tuttiafirenze www.iovotono.org", "post_text": "Amici, seguiteci in diretta da questa splendida piazza di Idee, Cuore, Coraggio e Futuro! #iovotono #tuttiafirenze www.iovotono.org", "shared_text": "", "time": "2016-11-12 14:51:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154240724813155&id=252306033154", "link": "http://www.iovotono.org/?fbclid=IwAR1PBrQv7KA6pcY8lNZHx8aSahN53mibMCXcdpuSqTTmMxyZ5ro7GGkYEuU"} +{"post_id": "10154240434293155", "text": "Firenze, che sole, eccomi!!!!!", "post_text": "Firenze, che sole, eccomi!!!!!", "shared_text": "", "time": "2016-11-12 12:31:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154240434293155&id=252306033154", "link": null} +{"post_id": "10154237974973155", "text": "Amici, ci siamo. Una piazza aperta e libera OGGI, sabato, a Firenze aspetta VOI!\nCostruiamo insieme il nostro Futuro! www.iovotono.org", "post_text": "Amici, ci siamo. Una piazza aperta e libera OGGI, sabato, a Firenze aspetta VOI!\nCostruiamo insieme il nostro Futuro! www.iovotono.org", "shared_text": "", "time": "2016-11-11 20:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154237974973155&id=252306033154", "link": "http://www.iovotono.org/?fbclid=IwAR1X2GmtRs-ll52EClHnh3QGZ1YU8KbyUhhmu30T0Gv9zNHSvyDv92PY3SE"} +{"post_id": "10154238121223155", "text": "Fra le macerie, nel silenzio di Accumoli (Rieti).", "post_text": "Fra le macerie, nel silenzio di Accumoli (Rieti).", "shared_text": "", "time": "2016-11-11 16:01:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154238121223155&id=252306033154", "link": null} +{"post_id": "10154237706523155", "text": "Cascia, terra di Santa Rita, si rialza!", "post_text": "Cascia, terra di Santa Rita, si rialza!", "shared_text": "", "time": "2016-11-11 13:12:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154237706523155&id=252306033154", "link": null} +{"post_id": "10154237531588155", "text": "Ascoltate questa famiglia, fantastici! maialebradodinorcia.com", "post_text": "Ascoltate questa famiglia, fantastici! maialebradodinorcia.com", "shared_text": "", "time": "2016-11-11 11:34:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154237531588155&id=252306033154", "link": "http://maialebradodinorcia.com/?fbclid=IwAR1Afa-A6dJrLpLfaWVke2O3Pnpo8uY8-jFgYkZsSmjDJWcvWu_yKgfPWe4"} +{"post_id": "10154237439983155", "text": "Zona rossa di Norcia dopo il terremoto, gente stupenda che vuole tornare a vivere e lavorare!", "post_text": "Zona rossa di Norcia dopo il terremoto, gente stupenda che vuole tornare a vivere e lavorare!", "shared_text": "", "time": "2016-11-11 10:24:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154237439983155&id=252306033154", "link": null} +{"post_id": "10154237408373155", "text": "In diretta dalla Norcia che si vuole rialzare", "post_text": "In diretta dalla Norcia che si vuole rialzare", "shared_text": "", "time": "2016-11-11 10:01:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154237408373155&id=252306033154", "link": null} +{"post_id": "10154236074333155", "text": "D'accordo con Donald Trump, che ha vinto proponendo:\n1) meno tasse per famiglie e imprese, con aliquota unica al 15%\n2) pi\u00f9 lavoro, con dazi contro l'invasione dei prodotti cinesi (e non solo) che uccidono il \"\u2026 AltroMade in\"\n3) espulsione degli immigrati clandestini\nRenzi e l'Unione Europea? Fanno esattamente il CONTRARIO!\nDomani a Firenze preavviso di sfratto per il gran bugiardo.\n#tuttiafirenze #iovotono", "post_text": "D'accordo con Donald Trump, che ha vinto proponendo:\n1) meno tasse per famiglie e imprese, con aliquota unica al 15%\n2) pi\u00f9 lavoro, con dazi contro l'invasione dei prodotti cinesi (e non solo) che uccidono il \"\u2026 AltroMade in\"\n3) espulsione degli immigrati clandestini\nRenzi e l'Unione Europea? Fanno esattamente il CONTRARIO!\nDomani a Firenze preavviso di sfratto per il gran bugiardo.\n#tuttiafirenze #iovotono", "shared_text": "", "time": "2016-11-11 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154236074333155&id=252306033154", "link": null} +{"post_id": "10154235424778155", "text": "ALFANO, ministro POLTRONAIO, SCAFISTA e SENZA VERGOGNA, paragona milioni di italiani che si sono spaccati la schiena all'estero in cerca di fortuna ai clandestini nullafacenti coccolati dal suo governo.\nE questo sfigato dovrebbe proteggere gli italiani... ASFALTATO!\nP.s. Dai, facciamo girare il video. #iovotono", "post_text": "ALFANO, ministro POLTRONAIO, SCAFISTA e SENZA VERGOGNA, paragona milioni di italiani che si sono spaccati la schiena all'estero in cerca di fortuna ai clandestini nullafacenti coccolati dal suo governo.\nE questo sfigato dovrebbe proteggere gli italiani... ASFALTATO!\nP.s. Dai, facciamo girare il video. #iovotono", "shared_text": "", "time": "2016-11-10 20:01:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154235424778155&id=252306033154", "link": null} +{"post_id": "10154235160448155", "text": "I FOLLI che governano l'Europa continuano a fare la guerra alla RUSSIA e fanno di tutto per uccidere il \"MADE IN\"...\nE poi si stupiscono se vince Trump.\nViva Trump, viva Putin, viva la Le Pen e viva la Lega!", "post_text": "I FOLLI che governano l'Europa continuano a fare la guerra alla RUSSIA e fanno di tutto per uccidere il \"MADE IN\"...\nE poi si stupiscono se vince Trump.\nViva Trump, viva Putin, viva la Le Pen e viva la Lega!", "shared_text": "", "time": "2016-11-10 14:13:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154235160448155&id=252306033154", "link": null} +{"post_id": "10154157862003155", "text": "L'Italia di Renzi: clandestini in hotel, italiani in auto!\n#primagliitaliani #iovotono", "post_text": "L'Italia di Renzi: clandestini in hotel, italiani in auto!\n#primagliitaliani #iovotono", "shared_text": "", "time": "2016-11-10 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154157862003155&id=252306033154", "link": null} +{"post_id": "10154233403778155", "text": "Riaspettando Alfano...", "post_text": "Riaspettando Alfano...", "shared_text": "", "time": "2016-11-09 21:18:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154233403778155&id=252306033154", "link": null} +{"post_id": "10154233380638155", "text": "Aspettando Porta a Porta, dietro le quinte!", "post_text": "Aspettando Porta a Porta, dietro le quinte!", "shared_text": "", "time": "2016-11-09 21:13:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154233380638155&id=252306033154", "link": null} +{"post_id": "10154232323098155", "text": "Popolo batte poteri forti 3 a 0!", "post_text": "Popolo batte poteri forti 3 a 0!", "shared_text": "", "time": "2016-11-09 13:19:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154232323098155&id=252306033154", "link": null} +{"post_id": "10154232128153155", "text": "In diretta da Roma con voi, amici, a commentare la vittoria di Donald Trump, in cui abbiamo sempre creduto: la vittoria del Popolo contro i poteri forti!\nOggi in America, domani in Italia.\nSabato #tuttiafirenze #iovotono www.iovotono.org", "post_text": "In diretta da Roma con voi, amici, a commentare la vittoria di Donald Trump, in cui abbiamo sempre creduto: la vittoria del Popolo contro i poteri forti!\nOggi in America, domani in Italia.\nSabato #tuttiafirenze #iovotono www.iovotono.org", "shared_text": "", "time": "2016-11-09 11:36:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154232128153155&id=252306033154", "link": "http://www.iovotono.org/?fbclid=IwAR1hacB9-nko1kEPF_YqNrXgYvLaHjlCcLfi3FHVSXKHXT3fIvb3OmWE7Fg"} +{"post_id": "10154230171498155", "text": "Oggi nella splendida piazza Santa Croce a FIRENZE, che questo SABATO alle 15 riempiremo di un MARE di persone perbene. Una piazza APERTA, tutti sono i benvenuti, al di l\u00e0 dell'idea politica. E aspetto anche tanti fiorentini che non ne possono pi\u00f9 delle bugie e dei disastri di Renzi!\n#iovotono", "post_text": "Oggi nella splendida piazza Santa Croce a FIRENZE, che questo SABATO alle 15 riempiremo di un MARE di persone perbene. Una piazza APERTA, tutti sono i benvenuti, al di l\u00e0 dell'idea politica. E aspetto anche tanti fiorentini che non ne possono pi\u00f9 delle bugie e dei disastri di Renzi!\n#iovotono", "shared_text": "", "time": "2016-11-08 19:29:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154230171498155&id=252306033154", "link": null} +{"post_id": "10154227249808155", "text": "PAZZESCO.\nSpero che questo cittadino rumeno di 30 anni non capiti mai tra le mani dei figli o dei nipoti delle anziane che prendeva A PUGNI a scopo di rapina... VERME SCHIFOSO! Grazie alla Polizia di Stato di Milano.\nSpero marcisca in galera, altro che indulti!", "post_text": "PAZZESCO.\nSpero che questo cittadino rumeno di 30 anni non capiti mai tra le mani dei figli o dei nipoti delle anziane che prendeva A PUGNI a scopo di rapina... VERME SCHIFOSO! Grazie alla Polizia di Stato di Milano.\nSpero marcisca in galera, altro che indulti!", "shared_text": "", "time": "2016-11-07 17:02:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154227249808155&id=252306033154", "link": null} +{"post_id": "10154224568513155", "text": "Oggi sono riuscito ad inserirmi tra le urla della parlamentare del PD... E il pubblico di Canale 5 era con noi! Renziani ormai a fine corsa, il 4 dicembre \u00e8 vicino e #iovotono!", "post_text": "Oggi sono riuscito ad inserirmi tra le urla della parlamentare del PD... E il pubblico di Canale 5 era con noi! Renziani ormai a fine corsa, il 4 dicembre \u00e8 vicino e #iovotono!", "shared_text": "", "time": "2016-11-06 20:01:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154224568513155&id=252306033154", "link": null} +{"post_id": "10154201333183155", "text": "In agosto il governo prometteva espulsioni pi\u00f9 veloci, con l'intenzione di vietare i \"ricorsi\" degli immigrati clandestini. Avete visto qualcosa voi??? I soliti CAZZARI! #iovotono", "post_text": "In agosto il governo prometteva espulsioni pi\u00f9 veloci, con l'intenzione di vietare i \"ricorsi\" degli immigrati clandestini. Avete visto qualcosa voi??? I soliti CAZZARI! #iovotono", "shared_text": "", "time": "2016-11-06 09:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154201333183155&id=252306033154", "link": null} +{"post_id": "10154216334153155", "text": "La Costituzione va cambiata ma in meglio, NON IN PEGGIO! Sabato prossimo #tuttiafirenze, piazza Santa Croce, ore 15. TU ci sarai, e da dove?\nInfo pullman: WWW.IOVOTONO.ORG", "post_text": "La Costituzione va cambiata ma in meglio, NON IN PEGGIO! Sabato prossimo #tuttiafirenze, piazza Santa Croce, ore 15. TU ci sarai, e da dove?\nInfo pullman: WWW.IOVOTONO.ORG", "shared_text": "", "time": "2016-11-05 16:15:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154216334153155&id=252306033154", "link": "http://WWW.IOVOTONO.ORG/?fbclid=IwAR0tiV7_JYaKPR96-40CYGNWL2017uczWftGBrUSUral1hwDzUWgnRbRKko"} +{"post_id": "10154219251603155", "text": "PAZZESCO!!!\n\"Sbirro di confine, MUORI AMMAZZATO, stronzo! Sbirri assassini!\".\nCos\u00ec alla festa \"solidale\" pro-clandestini organizzata a Milano con adesione di Anpi, Arci, Emergency e tanti \"bravi ragazzi\" di sinistra... #COMPAGNICLANDESTINI! Fai girare!\n[Da: ilcomizio.it, http://bit.ly/2fFlkfc]", "post_text": "PAZZESCO!!!\n\"Sbirro di confine, MUORI AMMAZZATO, stronzo! Sbirri assassini!\".\nCos\u00ec alla festa \"solidale\" pro-clandestini organizzata a Milano con adesione di Anpi, Arci, Emergency e tanti \"bravi ragazzi\" di sinistra... #COMPAGNICLANDESTINI! Fai girare!\n[Da: ilcomizio.it, http://bit.ly/2fFlkfc]", "shared_text": "", "time": "2016-11-05 13:08:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154219251603155&id=252306033154", "link": "https://bit.ly/2fFlkfc?fbclid=IwAR1f84t8fWuWVAu2goiuGCxlre6T1F7n4H38toN_MoEz8yPeNmcTO3mmsUQ"} +{"post_id": "10154218723803155", "text": "Renzi contesta l'Unione Europea... e poi la sua SCHIFORMA la inserisce in Costituzione. DODICI volte! La sovranit\u00e0 appartiene al POPOLO, questo \u00e8 il principale motivo per cui #iovotono!", "post_text": "Renzi contesta l'Unione Europea... e poi la sua SCHIFORMA la inserisce in Costituzione. DODICI volte! La sovranit\u00e0 appartiene al POPOLO, questo \u00e8 il principale motivo per cui #iovotono!", "shared_text": "", "time": "2016-11-04 18:26:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154218723803155&id=252306033154", "link": null} +{"post_id": "10154219047943155", "text": "Amici #iovotono e voi?", "post_text": "Amici #iovotono e voi?", "shared_text": "", "time": "2016-11-04 15:04:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154219047943155&id=252306033154", "link": null} +{"post_id": "10154218852518155", "text": "In visita al MEGA CAMPO di \"presunti\" profughi a Bagnoli, vicino Padova.", "post_text": "In visita al MEGA CAMPO di \"presunti\" profughi a Bagnoli, vicino Padova.", "shared_text": "", "time": "2016-11-04 13:33:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154218852518155&id=252306033154", "link": null} +{"post_id": "10154218816058155", "text": "Riprendiamo la diretta dal campo \"profughi\" di Bagnoli (PD): bello, si gioca con la Playstation...", "post_text": "Riprendiamo la diretta dal campo \"profughi\" di Bagnoli (PD): bello, si gioca con la Playstation...", "shared_text": "", "time": "2016-11-04 13:11:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154218816058155&id=252306033154", "link": null} +{"post_id": "10154218776278155", "text": "In diretta dal mega campo di \"presunti\" profughi di Bagnoli (PD)", "post_text": "In diretta dal mega campo di \"presunti\" profughi di Bagnoli (PD)", "shared_text": "", "time": "2016-11-04 12:55:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154218776278155&id=252306033154", "link": null} +{"post_id": "10154218424988155", "text": "SORPRESA!\nLa Lega lo dice DA ANNI, oggi lo ammette anche la giornalista di sinistra che in diretta tiv\u00f9 afferma:\n1) aiutarli in Africa \u00e8 giusto perch\u00e9 ne arrivano troppi\n2) fare accordi con i Paesi di\u2026 Altro provenienza, ad esempio con la Nigeria, da dove parte la tratta della prostituzione, perch\u00e9 qui la guerra o Boko Haram non c'entrano nulla\n3) accelerare il riconoscimento dei veri rifugiati, non \u00e8 possibile impiegarci due anni e mezzo, nel resto d'Europa ci si impiega pochi mesi\nE sottolinea: \"NON CAPISCO perch\u00e9 il governo non faccia tutto questo\".\nGi\u00e0, perch\u00e9 non fa nulla? Perch\u00e9 Renzi \u00e8 un INCAPACE e, anzich\u00e9 pensare all'emergenza invasione, \u00e8 preoccupato solo di conservare la poltrona. Ma ancora per poco! Il 4 dicembre #iovotono", "post_text": "SORPRESA!\nLa Lega lo dice DA ANNI, oggi lo ammette anche la giornalista di sinistra che in diretta tiv\u00f9 afferma:\n1) aiutarli in Africa \u00e8 giusto perch\u00e9 ne arrivano troppi\n2) fare accordi con i Paesi di\u2026 Altro provenienza, ad esempio con la Nigeria, da dove parte la tratta della prostituzione, perch\u00e9 qui la guerra o Boko Haram non c'entrano nulla\n3) accelerare il riconoscimento dei veri rifugiati, non \u00e8 possibile impiegarci due anni e mezzo, nel resto d'Europa ci si impiega pochi mesi\nE sottolinea: \"NON CAPISCO perch\u00e9 il governo non faccia tutto questo\".\nGi\u00e0, perch\u00e9 non fa nulla? Perch\u00e9 Renzi \u00e8 un INCAPACE e, anzich\u00e9 pensare all'emergenza invasione, \u00e8 preoccupato solo di conservare la poltrona. Ma ancora per poco! Il 4 dicembre #iovotono", "shared_text": "", "time": "2016-11-04 10:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154218424988155&id=252306033154", "link": null} +{"post_id": "10154216082173155", "text": "Il Papa: \"DISTINGUERE tra migranti e rifugiati\". Sottoscrivo parola per parola.\nUn conto sono i pochissimi che scappano dalla guerra (e sono miei FRATELLI), un altro sono gli \"immigrati economici o climatici\",\u2026 Altro che vanno trattati secondo REGOLE e LIMITI.\nEsattamente il contrario di quello che fa il governo Renzi.\nAnche per questo il 4 dicembre #iovotono!", "post_text": "Il Papa: \"DISTINGUERE tra migranti e rifugiati\". Sottoscrivo parola per parola.\nUn conto sono i pochissimi che scappano dalla guerra (e sono miei FRATELLI), un altro sono gli \"immigrati economici o climatici\",\u2026 Altro che vanno trattati secondo REGOLE e LIMITI.\nEsattamente il contrario di quello che fa il governo Renzi.\nAnche per questo il 4 dicembre #iovotono!", "shared_text": "", "time": "2016-11-03 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154216082173155&id=252306033154", "link": null} +{"post_id": "10154216324083155", "text": "Il governo vuole fare qualcosa per famiglie e imprese colpite dal terremoto? NON sospensione per qualche mese del pagamento delle tasse (come hanno fatto per l'Emlia), ma ESENZIONE, vera e completa, per aiutare DAVVERO chi ha perso tutto. Altro che rimandare il referendum del 4 dicembre... #iovotono", "post_text": "Il governo vuole fare qualcosa per famiglie e imprese colpite dal terremoto? NON sospensione per qualche mese del pagamento delle tasse (come hanno fatto per l'Emlia), ma ESENZIONE, vera e completa, per aiutare DAVVERO chi ha perso tutto. Altro che rimandare il referendum del 4 dicembre... #iovotono", "shared_text": "", "time": "2016-11-03 16:56:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154216324083155&id=252306033154", "link": null} +{"post_id": "10154215845113155", "text": "Ora in diretta con voi, Amici. Aliquota unica al 15% e l'Italia riparte!\nEcco come fare la rivoluzione fiscale anche in Italia.\nPer approfondire, un libro e un sito: WWW.TASSAUNICA.IT", "post_text": "Ora in diretta con voi, Amici. Aliquota unica al 15% e l'Italia riparte!\nEcco come fare la rivoluzione fiscale anche in Italia.\nPer approfondire, un libro e un sito: WWW.TASSAUNICA.IT", "shared_text": "", "time": "2016-11-03 11:34:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154215845113155&id=252306033154", "link": "http://WWW.TASSAUNICA.IT/?fbclid=IwAR3fyzLEKxoBC7ZdBnfckiAM9u3UFn73kyaTzsRXVMMI0Jm8Vdo-Z-pLA88"} +{"post_id": "10154215815243155", "text": "Protestano in Prefettura a Taranto, vogliono i SOLDI per le piccole spese, dicono che \"CIBO NO BUONO\", non gli piacciono i vestiti e \"FA FREDDO\". Penso alle decine di migliaia di italiani TERREMOTATI che non\u2026 Altro hanno pi\u00f9 un tetto sulla testa, e queste manifestazioni mi sembrano OFFENSIVE verso il Paese che li ospita.\nP.s. Cos\u00ec, a occhio, secondo voi questi del video vi sembrano disperati fuggiaschi dalle guerre? BASTA PRESE IN GIRO!", "post_text": "Protestano in Prefettura a Taranto, vogliono i SOLDI per le piccole spese, dicono che \"CIBO NO BUONO\", non gli piacciono i vestiti e \"FA FREDDO\". Penso alle decine di migliaia di italiani TERREMOTATI che non\u2026 Altro hanno pi\u00f9 un tetto sulla testa, e queste manifestazioni mi sembrano OFFENSIVE verso il Paese che li ospita.\nP.s. Cos\u00ec, a occhio, secondo voi questi del video vi sembrano disperati fuggiaschi dalle guerre? BASTA PRESE IN GIRO!", "shared_text": "", "time": "2016-11-03 10:54:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154215815243155&id=252306033154", "link": null} +{"post_id": "10154214195368155", "text": "Da Palazzo Chigi... l'abusivo Renzi lo sfrattiamo!\nEsci da Facebook, sabato 12 novembre a Firenze ASPETTO ANCHE TE! Fai girare!\n#tuttiafirenze #iovotono www.iovotono.org", "post_text": "Da Palazzo Chigi... l'abusivo Renzi lo sfrattiamo!\nEsci da Facebook, sabato 12 novembre a Firenze ASPETTO ANCHE TE! Fai girare!\n#tuttiafirenze #iovotono www.iovotono.org", "shared_text": "", "time": "2016-11-02 20:59:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154214195368155&id=252306033154", "link": "http://www.iovotono.org/?fbclid=IwAR0-kw4TqFf007c_EO31jFMhifKtgOPl7hL_WWQM52e8n9JHm2LH7X28Ptc"} +{"post_id": "10154210778638155", "text": "INCREDIBILE!!!\nIn provincia di Rovigo, per ospitare una nuova ondata di presunti \"profughi\", sequestrano un albergo in diretta tiv\u00f9, con tanto di ordine del prefetto e proprietario presente, e l'amica di Alfano\u2026 Altro e Renzi che fa??? Sbraita come un'invasata che \u00e8 TUTTO FALSO, coprendosi di ridicolo. ESPROPRI di Stato e negazione dell'evidenza: governo dell'invasione, governo SOVIETICO! CACCIAMOLI!!! Il 4 dicembre #iovotono", "post_text": "INCREDIBILE!!!\nIn provincia di Rovigo, per ospitare una nuova ondata di presunti \"profughi\", sequestrano un albergo in diretta tiv\u00f9, con tanto di ordine del prefetto e proprietario presente, e l'amica di Alfano\u2026 Altro e Renzi che fa??? Sbraita come un'invasata che \u00e8 TUTTO FALSO, coprendosi di ridicolo. ESPROPRI di Stato e negazione dell'evidenza: governo dell'invasione, governo SOVIETICO! CACCIAMOLI!!! Il 4 dicembre #iovotono", "shared_text": "", "time": "2016-11-01 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154210778638155&id=252306033154", "link": null} +{"post_id": "10154200973538155", "text": "Mentre il cazzaro parla di ponti e grandi opere, lo Stato non \u00e8 in grado di garantire la SICUREZZA di chi viaggia sulle strade.\nUna preghiera per l'uomo che purtroppo ha perso la vita nel crollo, un pensiero ai feriti e ai loro famigliari, VITTIME DI STATO, e un impegno a lavorare affinch\u00e9 episodi come questo non succedano pi\u00f9.", "post_text": "Mentre il cazzaro parla di ponti e grandi opere, lo Stato non \u00e8 in grado di garantire la SICUREZZA di chi viaggia sulle strade.\nUna preghiera per l'uomo che purtroppo ha perso la vita nel crollo, un pensiero ai feriti e ai loro famigliari, VITTIME DI STATO, e un impegno a lavorare affinch\u00e9 episodi come questo non succedano pi\u00f9.", "shared_text": "", "time": "2016-10-29 16:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154200973538155&id=252306033154", "link": null} +{"post_id": "10154197782643155", "text": "\"Le REQUISIZIONI avvengono quando i Comuni non collaborano\".\nCAPITO???\nCos\u00ec parla il Ministro dell'Interno del #governoscafista.\nNel frattempo, sempre pi\u00f9 cittadini, da Nord a Sud, alla faccia di Renzi, di\u2026 Altro Alfano e dei loro prefetti, DIFENDONO con coraggio le proprie comunit\u00e0 dall'invasione: NON MOLLIAMO, resistiamo!\nE il 4 dicembre LI CACCIAMO VIA TUTTI! #iovotono", "post_text": "\"Le REQUISIZIONI avvengono quando i Comuni non collaborano\".\nCAPITO???\nCos\u00ec parla il Ministro dell'Interno del #governoscafista.\nNel frattempo, sempre pi\u00f9 cittadini, da Nord a Sud, alla faccia di Renzi, di\u2026 Altro Alfano e dei loro prefetti, DIFENDONO con coraggio le proprie comunit\u00e0 dall'invasione: NON MOLLIAMO, resistiamo!\nE il 4 dicembre LI CACCIAMO VIA TUTTI! #iovotono", "shared_text": "", "time": "2016-10-28 12:59:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154197782643155&id=252306033154", "link": null} +{"post_id": "10154196473293155", "text": "Milano by night. Buona serata Amici!", "post_text": "Milano by night. Buona serata Amici!", "shared_text": "", "time": "2016-10-27 23:48:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154196473293155&id=252306033154", "link": null} +{"post_id": "10154193283518155", "text": "La sua \"riforma\" FA SCHIFO e peggiora la Costituzione.\nIn pi\u00f9 \u00e8 un BUGIARDO MATRICOLATO.\nBasta 1 minuto di video per decidere: FAI GIRARE!\n#iovotono #italianicheresistono", "post_text": "La sua \"riforma\" FA SCHIFO e peggiora la Costituzione.\nIn pi\u00f9 \u00e8 un BUGIARDO MATRICOLATO.\nBasta 1 minuto di video per decidere: FAI GIRARE!\n#iovotono #italianicheresistono", "shared_text": "", "time": "2016-10-27 13:00:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154193283518155&id=252306033154", "link": null} +{"post_id": "10154192553063155", "text": "Piccole BORSEGGIATRICI in azione... ma non chiamatele ZINGARE!\nRuspa.", "post_text": "Piccole BORSEGGIATRICI in azione... ma non chiamatele ZINGARE!\nRuspa.", "shared_text": "", "time": "2016-10-26 19:15:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154192553063155&id=252306033154", "link": null} +{"post_id": "10154190712408155", "text": "SENZA VERGOGNA! La parlamentare del PD consiglia a questa signora di 90 anni che, con una pensione da 650 euro non arriva a fine mese, di andare in banca a IPOTECARE LA CASA!!!\nQuesta \u00e8 la gente che governa l'Italia, il 4 dicembre CACCIAMOLI!!! #iovotono", "post_text": "SENZA VERGOGNA! La parlamentare del PD consiglia a questa signora di 90 anni che, con una pensione da 650 euro non arriva a fine mese, di andare in banca a IPOTECARE LA CASA!!!\nQuesta \u00e8 la gente che governa l'Italia, il 4 dicembre CACCIAMOLI!!! #iovotono", "shared_text": "", "time": "2016-10-26 15:12:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154190712408155&id=252306033154", "link": null} +{"post_id": "10154192369838155", "text": "\"Se vogliamo fare qualcosa di bello per noi e per gli altri, dobbiamo farlo oggi!\". Quello di Sammy Basso \u00e8 un inno alla vita.\nGuardate questo video, non ve ne pentirete.", "post_text": "\"Se vogliamo fare qualcosa di bello per noi e per gli altri, dobbiamo farlo oggi!\". Quello di Sammy Basso \u00e8 un inno alla vita.\nGuardate questo video, non ve ne pentirete.", "shared_text": "", "time": "2016-10-26 12:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154192369838155&id=252306033154", "link": null} +{"post_id": "10154190773213155", "text": "Centri di accoglienza sbucano ormai ovunque dalla sera alla mattina, cittadini e i consigli di quartiere nemmeno vengono informati... Questo governo della volont\u00e0 popolare SE NE FREGA e con la SCHIFORMA renziana sar\u00e0 anche peggio. Il 4 dicembre una bella croce sul NO! #iovotono", "post_text": "Centri di accoglienza sbucano ormai ovunque dalla sera alla mattina, cittadini e i consigli di quartiere nemmeno vengono informati... Questo governo della volont\u00e0 popolare SE NE FREGA e con la SCHIFORMA renziana sar\u00e0 anche peggio. Il 4 dicembre una bella croce sul NO! #iovotono", "shared_text": "", "time": "2016-10-25 20:56:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154190773213155&id=252306033154", "link": null} +{"post_id": "10154190464623155", "text": "Gorino, Ferrara. Il video dei cittadini che RESISTONO all'invasione targata Renzi e PD. Io sto con loro!", "post_text": "Gorino, Ferrara. Il video dei cittadini che RESISTONO all'invasione targata Renzi e PD. Io sto con loro!", "shared_text": "", "time": "2016-10-25 17:41:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154190464623155&id=252306033154", "link": null} +{"post_id": "10154150985158155", "text": "A Milanistan tutto bene...", "post_text": "A Milanistan tutto bene...", "shared_text": "", "time": "2016-10-24 17:29:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154150985158155&id=252306033154", "link": null} +{"post_id": "10154185366193155", "text": "SCHIFO e VERGOGNA!\nEcco come hanno ridotto Parigi, ecco qual \u00e8 l'idea di \"futuro\" dei governi europei amici di banchieri e massoni, dei Renzi, delle Merkel, degli Hollande... Ma noi NON MOLLIAMO!\n#stopinvasione #stopunionesovieticaeuropea #iovotono", "post_text": "SCHIFO e VERGOGNA!\nEcco come hanno ridotto Parigi, ecco qual \u00e8 l'idea di \"futuro\" dei governi europei amici di banchieri e massoni, dei Renzi, delle Merkel, degli Hollande... Ma noi NON MOLLIAMO!\n#stopinvasione #stopunionesovieticaeuropea #iovotono", "shared_text": "", "time": "2016-10-24 11:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154185366193155&id=252306033154", "link": null} +{"post_id": "10154148312798155", "text": "Al poliziotto che lamenta leggi e dotazioni INADEGUATE per garantire la sicurezza dei cittadini, l'amico di Renzi Librandi ha il coraggio di rispondere con un \"vergognati\". PAZZESCO!\nLa vergogna dell'Italia siete voi e il vostro governo! Sempre dalla parte delle Forze dell'ordine. Anche per questo il 4 dicembre #iovotono", "post_text": "Al poliziotto che lamenta leggi e dotazioni INADEGUATE per garantire la sicurezza dei cittadini, l'amico di Renzi Librandi ha il coraggio di rispondere con un \"vergognati\". PAZZESCO!\nLa vergogna dell'Italia siete voi e il vostro governo! Sempre dalla parte delle Forze dell'ordine. Anche per questo il 4 dicembre #iovotono", "shared_text": "", "time": "2016-10-22 10:21:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154148312798155&id=252306033154", "link": null} +{"post_id": "10154178578888155", "text": "Cappellino d'ordinanza e abbigliamento da rapper, anche a Piacenza \"profughi\" (visibilmente DEPERITI e sconvolti dalla guerra...) si piazzano in mezzo a una strada bloccando il traffico.\nProtestano perch\u00e9 non\u2026 Altro ricevono i SOLDI della diaria e perch\u00e9 il cibo dell'agriturismo che li ospita gli fa schifo...\nA me fanno invece SCHIFO scene come questa, ormai quotidiane, che UMILIANO i milioni di italiani in difficolt\u00e0.\nUSCIAMO da Facebook e tutti a FIRENZE sabato 12 novembre, preavviso di sfratto per quell'incapace di Renzi! #iovotono", "post_text": "Cappellino d'ordinanza e abbigliamento da rapper, anche a Piacenza \"profughi\" (visibilmente DEPERITI e sconvolti dalla guerra...) si piazzano in mezzo a una strada bloccando il traffico.\nProtestano perch\u00e9 non\u2026 Altro ricevono i SOLDI della diaria e perch\u00e9 il cibo dell'agriturismo che li ospita gli fa schifo...\nA me fanno invece SCHIFO scene come questa, ormai quotidiane, che UMILIANO i milioni di italiani in difficolt\u00e0.\nUSCIAMO da Facebook e tutti a FIRENZE sabato 12 novembre, preavviso di sfratto per quell'incapace di Renzi! #iovotono", "shared_text": "", "time": "2016-10-21 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154178578888155&id=252306033154", "link": null} +{"post_id": "10154127311718155", "text": "Colpito a BOTTIGLIATE dal senegalese clandestino. Motivo? Stava facendo i suoi bisogni in un parco pubblico, ma non aveva gradito il rimprovero... (Naturalmente il clandestino \u00e8 gi\u00e0 libero... L'Italia di Renzi \u00e8 la barzelletta del mondo). Anche per questo il 4 dicembre #iovotono", "post_text": "Colpito a BOTTIGLIATE dal senegalese clandestino. Motivo? Stava facendo i suoi bisogni in un parco pubblico, ma non aveva gradito il rimprovero... (Naturalmente il clandestino \u00e8 gi\u00e0 libero... L'Italia di Renzi \u00e8 la barzelletta del mondo). Anche per questo il 4 dicembre #iovotono", "shared_text": "", "time": "2016-10-21 09:22:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154127311718155&id=252306033154", "link": null} +{"post_id": "10154176656143155", "text": "Maxi-rissa tra gli immigrati ospitati (a nostre spese) a Porto Torres, con tanto di blocco stradale. Pare che i somali non gradiscano lo stesso cibo offerto ai nigeriani... SITUAZIONE DELIRANTE!\n#iovotono #stopinvasione", "post_text": "Maxi-rissa tra gli immigrati ospitati (a nostre spese) a Porto Torres, con tanto di blocco stradale. Pare che i somali non gradiscano lo stesso cibo offerto ai nigeriani... SITUAZIONE DELIRANTE!\n#iovotono #stopinvasione", "shared_text": "", "time": "2016-10-20 19:01:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154176656143155&id=252306033154", "link": null} +{"post_id": "10154173354133155", "text": "In diretta dalla Caserma Cavarzerani di Udine, che ospita pi\u00f9 di 700 immigrati (in maggioranza pakistani). E gli italiani pagano...", "post_text": "In diretta dalla Caserma Cavarzerani di Udine, che ospita pi\u00f9 di 700 immigrati (in maggioranza pakistani). E gli italiani pagano...", "shared_text": "", "time": "2016-10-19 16:50:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154173354133155&id=252306033154", "link": null} +{"post_id": "10154169781598155", "text": "Alla faccia dei milioni di italiani disoccupati, aereo di Stato e cenetta \"senza pretese\" per Renzi e i suoi amici in America...", "post_text": "Alla faccia dei milioni di italiani disoccupati, aereo di Stato e cenetta \"senza pretese\" per Renzi e i suoi amici in America...", "shared_text": "", "time": "2016-10-18 17:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154169781598155&id=252306033154", "link": null} +{"post_id": "10154150433423155", "text": "La SCHIFORMA di Renzi non abolisce il Senato ma lo trasforma in un \"dopolavoro\" di politici nominati, impedisce per sempre agli italiani di votare su quello che viene deciso a Bruxelles, consente ai parlamentari di continuare a cambiare partito senza mollare la poltrona.\nIl 4 dicembre #iovotono", "post_text": "La SCHIFORMA di Renzi non abolisce il Senato ma lo trasforma in un \"dopolavoro\" di politici nominati, impedisce per sempre agli italiani di votare su quello che viene deciso a Bruxelles, consente ai parlamentari di continuare a cambiare partito senza mollare la poltrona.\nIl 4 dicembre #iovotono", "shared_text": "", "time": "2016-10-17 11:18:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154150433423155&id=252306033154", "link": null} +{"post_id": "10154160770468155", "text": "La CASA POPOLARE va data alla FAMIGLIA ITALIANA che magari aspetta da trent'anni, non a chi \u00e8 arrivato l'altro ieri.\nNon \u00e8 egoismo o razzismo, \u00e8 il BUONSENSO del padre di famiglia che prima d\u00e0 da mangiare al proprio figlio!", "post_text": "La CASA POPOLARE va data alla FAMIGLIA ITALIANA che magari aspetta da trent'anni, non a chi \u00e8 arrivato l'altro ieri.\nNon \u00e8 egoismo o razzismo, \u00e8 il BUONSENSO del padre di famiglia che prima d\u00e0 da mangiare al proprio figlio!", "shared_text": "", "time": "2016-10-16 09:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154160770468155&id=252306033154", "link": null} +{"post_id": "10154160256413155", "text": "\u00c8 pi\u00f9 generoso e intelligente buttare 4 miliardi per mantenere in Italia dei finti profughi, quasi sempre maschi, ventenni e robusti, o spenderli in Africa per aiutare 20 milioni di bambini che hanno veramente bisogno?", "post_text": "\u00c8 pi\u00f9 generoso e intelligente buttare 4 miliardi per mantenere in Italia dei finti profughi, quasi sempre maschi, ventenni e robusti, o spenderli in Africa per aiutare 20 milioni di bambini che hanno veramente bisogno?", "shared_text": "", "time": "2016-10-15 18:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154160256413155&id=252306033154", "link": null} +{"post_id": "10154160347488155", "text": "Qualche minuto insieme a voi, senza Renzi!", "post_text": "Qualche minuto insieme a voi, senza Renzi!", "shared_text": "", "time": "2016-10-15 16:26:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154160347488155&id=252306033154", "link": null} +{"post_id": "10154134554583155", "text": "Con Renzi clandestini in hotel, italiani in mezzo a una strada.\nAnche per questo il 4 dicembre #iovotono", "post_text": "Con Renzi clandestini in hotel, italiani in mezzo a una strada.\nAnche per questo il 4 dicembre #iovotono", "shared_text": "", "time": "2016-10-14 15:44:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154134554583155&id=252306033154", "link": null} +{"post_id": "10154148539403155", "text": "Prove tecniche di LAVAGGIO DEL CERVELLO, ecco lo spot tv che gira in Svezia.\nHanno pianificato tutto, SOSTITUIRE I POPOLI per avere nuovi schiavi a basso costo da sfruttare come manodopera.\nNon chiudiamo gli occhi, non arrendiamoci, facciamo GIRARE (finch\u00e9 ce lo lasciano fare...)!", "post_text": "Prove tecniche di LAVAGGIO DEL CERVELLO, ecco lo spot tv che gira in Svezia.\nHanno pianificato tutto, SOSTITUIRE I POPOLI per avere nuovi schiavi a basso costo da sfruttare come manodopera.\nNon chiudiamo gli occhi, non arrendiamoci, facciamo GIRARE (finch\u00e9 ce lo lasciano fare...)!", "shared_text": "", "time": "2016-10-13 20:00:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154148539403155&id=252306033154", "link": null} +{"post_id": "10154150118888155", "text": "Le telecamere di Rete 4 entrano nel famigerato HOTEL HOUSE di Porto Recanati, 480 appartamenti, purtroppo rifugio di troppi clandestini, delinquenti e spacciatori. All'inviato chiedono: \"TI MANDA SALVINI?\". Ben\u2026 Altro contento di essere associato alle battaglie per la LEGALIT\u00c0.\nSoluzione se fossi al governo? Controlli A TAPPETO delle Forze dell'ordine, piano per piano, appartamento per appartamento: chi \u00e8 in regola bene, tutti gli altri ESPULSI, subito!", "post_text": "Le telecamere di Rete 4 entrano nel famigerato HOTEL HOUSE di Porto Recanati, 480 appartamenti, purtroppo rifugio di troppi clandestini, delinquenti e spacciatori. All'inviato chiedono: \"TI MANDA SALVINI?\". Ben\u2026 Altro contento di essere associato alle battaglie per la LEGALIT\u00c0.\nSoluzione se fossi al governo? Controlli A TAPPETO delle Forze dell'ordine, piano per piano, appartamento per appartamento: chi \u00e8 in regola bene, tutti gli altri ESPULSI, subito!", "shared_text": "", "time": "2016-10-13 10:15:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154150118888155&id=252306033154", "link": null} +{"post_id": "10154150101453155", "text": "BUFFONE e BUGIARDO!!!\nBasta 1 minuto per capire con chi abbiamo a che fare. #iovotono", "post_text": "BUFFONE e BUGIARDO!!!\nBasta 1 minuto per capire con chi abbiamo a che fare. #iovotono", "shared_text": "", "time": "2016-10-12 19:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154150101453155&id=252306033154", "link": null} +{"post_id": "10154150047928155", "text": "AVERCENE DI NONNE COS\u00cc!\nSentite che cosa dice a RENZI, con un forcone un mano, la signora Rosina... Un grande abbraccio. #iovotono", "post_text": "AVERCENE DI NONNE COS\u00cc!\nSentite che cosa dice a RENZI, con un forcone un mano, la signora Rosina... Un grande abbraccio. #iovotono", "shared_text": "", "time": "2016-10-12 11:12:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154150047928155&id=252306033154", "link": null} +{"post_id": "10154147431373155", "text": "PAZZESCO!!!\nI \"migranti\", gentilmente ospitati a Bari a spese degli italiani, come ringraziamento AGGREDISCONO la giornalista di Rete 4 (\"Sei una PUTTANA\") e ai Carabinieri dedicano un: \"TU sei un grande\u2026 Altro RAZZISTA!\".\nNell'Italia che ho in mente non ci faremo mettere i piedi in testa da chi sbarca! Anche per questo il 4 dicembre #iovotono", "post_text": "PAZZESCO!!!\nI \"migranti\", gentilmente ospitati a Bari a spese degli italiani, come ringraziamento AGGREDISCONO la giornalista di Rete 4 (\"Sei una PUTTANA\") e ai Carabinieri dedicano un: \"TU sei un grande\u2026 Altro RAZZISTA!\".\nNell'Italia che ho in mente non ci faremo mettere i piedi in testa da chi sbarca! Anche per questo il 4 dicembre #iovotono", "shared_text": "", "time": "2016-10-11 12:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154147431373155&id=252306033154", "link": null} +{"post_id": "10154111381653155", "text": "Secondo la sinistra dovremmo accogliere TUTTI, anche i MIGRANTI ECONOMICI, perch\u00e9 \"\u00e8 normale che in un mondo in cui c'\u00e8 cos\u00ec tanta disuguaglianza e cos\u00ec tanta ingiustizia la gente cerchi di scappare per\u2026 Altro migliorare la propria vita!\".\nCompagna! Ci sono 4 milioni di disoccupati italiani, i veri PROFUGHI sono loro! Ma \u00e8 cos\u00ec difficile da capire???", "post_text": "Secondo la sinistra dovremmo accogliere TUTTI, anche i MIGRANTI ECONOMICI, perch\u00e9 \"\u00e8 normale che in un mondo in cui c'\u00e8 cos\u00ec tanta disuguaglianza e cos\u00ec tanta ingiustizia la gente cerchi di scappare per\u2026 Altro migliorare la propria vita!\".\nCompagna! Ci sono 4 milioni di disoccupati italiani, i veri PROFUGHI sono loro! Ma \u00e8 cos\u00ec difficile da capire???", "shared_text": "", "time": "2016-10-11 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154111381653155&id=252306033154", "link": null} +{"post_id": "10154130195823155", "text": "Gli hanno respinto la richiesta d'asilo, ma si costruiscono \"favelas\" e baraccopoli, comprensive di negozi ed altre belle attivit\u00e0 commerciali...\nMA BASTAAAAAA! Anche per questo il 4 dicembre #iovotono!", "post_text": "Gli hanno respinto la richiesta d'asilo, ma si costruiscono \"favelas\" e baraccopoli, comprensive di negozi ed altre belle attivit\u00e0 commerciali...\nMA BASTAAAAAA! Anche per questo il 4 dicembre #iovotono!", "shared_text": "", "time": "2016-10-10 14:08:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154130195823155&id=252306033154", "link": null} +{"post_id": "10154142835228155", "text": "INCREDIBILE.\nAvevano CHIESTO ASILO, ma nell'attesa SPACCIAVANO droga, anche a minorenni.\nChiss\u00e0 da quale GUERRA scappavano, poverini......\nSe \u00e8 questo il modello di integrazione che vi piace, tenetevelo,\u2026 Altro insieme a Renzi, alla Boldrini e a quel genio di Alfano. Altrimenti, il 4 dicembre avete la possibilit\u00e0 di cambiare: VOTANDO NO. #iovotono", "post_text": "INCREDIBILE.\nAvevano CHIESTO ASILO, ma nell'attesa SPACCIAVANO droga, anche a minorenni.\nChiss\u00e0 da quale GUERRA scappavano, poverini......\nSe \u00e8 questo il modello di integrazione che vi piace, tenetevelo,\u2026 Altro insieme a Renzi, alla Boldrini e a quel genio di Alfano. Altrimenti, il 4 dicembre avete la possibilit\u00e0 di cambiare: VOTANDO NO. #iovotono", "shared_text": "", "time": "2016-10-09 17:37:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154142835228155&id=252306033154", "link": null} +{"post_id": "10154142166603155", "text": "3 minuti PAZZESCHI, da guardare e condividere...\nAnche per questo #iovotono", "post_text": "3 minuti PAZZESCHI, da guardare e condividere...\nAnche per questo #iovotono", "shared_text": "", "time": "2016-10-09 12:30:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154142166603155&id=252306033154", "link": null} +{"post_id": "10154134553338155", "text": "Sfrattata e malata, ma \"purtroppo\" non \u00e8 straniera: \"Per loro trovano sempre sistemazioni, tra poco saremo noi a dover lasciare l'Italia, ci vogliono togliere anche la dignit\u00e0: io non ci sto!\".\nGoverno RAZZISTA\u2026 Altro verso gli italiani, altro che \"riforme\"...! Prima ci liberiamo di Renzi, prima ci salviamo.\nDieci, cento, mille: #iovotono", "post_text": "Sfrattata e malata, ma \"purtroppo\" non \u00e8 straniera: \"Per loro trovano sempre sistemazioni, tra poco saremo noi a dover lasciare l'Italia, ci vogliono togliere anche la dignit\u00e0: io non ci sto!\".\nGoverno RAZZISTA\u2026 Altro verso gli italiani, altro che \"riforme\"...! Prima ci liberiamo di Renzi, prima ci salviamo.\nDieci, cento, mille: #iovotono", "shared_text": "", "time": "2016-10-09 09:46:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154134553338155&id=252306033154", "link": null} +{"post_id": "10154140424908155", "text": "Sono ORGOGLIOSO di aver detto in faccia alla BOSCHI quello che pensano milioni di italiani su BANCA ETRURIA e sulle altre truffe bancarie!\nAnche per questo #iovotono", "post_text": "Sono ORGOGLIOSO di aver detto in faccia alla BOSCHI quello che pensano milioni di italiani su BANCA ETRURIA e sulle altre truffe bancarie!\nAnche per questo #iovotono", "shared_text": "", "time": "2016-10-08 20:25:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154140424908155&id=252306033154", "link": null} +{"post_id": "10154138006453155", "text": "1) Io voto NO perch\u00e9 il Senato non \u00e8 abolito ma rimane come casta di NOMINATI, consiglieri regionali e sindaci che fanno i senatori nel tempo libero.\n2) Io voto NO perch\u00e9 i parlamentari potranno continuare a\u2026 Altro cambiare partito senza mollare la POLTRONA.\n3) Io voto NO perch\u00e9 gli italiani dovranno inchinarsi alle FOLLIE dell'Unione Europea, senza mai potersi esprimere nel merito con un referendum.\nQuella di Renzi, Boschi e Alfano \u00e8 una \"riforma\" che fa comodo a chi ci vuole SERVI. Io voglio che gli italiani siano PADRONI del proprio futuro!\n#iovotono", "post_text": "1) Io voto NO perch\u00e9 il Senato non \u00e8 abolito ma rimane come casta di NOMINATI, consiglieri regionali e sindaci che fanno i senatori nel tempo libero.\n2) Io voto NO perch\u00e9 i parlamentari potranno continuare a\u2026 Altro cambiare partito senza mollare la POLTRONA.\n3) Io voto NO perch\u00e9 gli italiani dovranno inchinarsi alle FOLLIE dell'Unione Europea, senza mai potersi esprimere nel merito con un referendum.\nQuella di Renzi, Boschi e Alfano \u00e8 una \"riforma\" che fa comodo a chi ci vuole SERVI. Io voglio che gli italiani siano PADRONI del proprio futuro!\n#iovotono", "shared_text": "", "time": "2016-10-08 17:21:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154138006453155&id=252306033154", "link": null} +{"post_id": "10154136842683155", "text": "Non ho parole, Amici... La Boschi scappa a poche ore dal confronto su LA 7. Hanno cos\u00ec paura??? Ora aspetto Renzi! #boschiscappa #iovotono", "post_text": "Non ho parole, Amici... La Boschi scappa a poche ore dal confronto su LA 7. Hanno cos\u00ec paura??? Ora aspetto Renzi! #boschiscappa #iovotono", "shared_text": "", "time": "2016-10-07 12:10:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154136842683155&id=252306033154", "link": null} +{"post_id": "10154127310363155", "text": "\"Non abbiamo soldi, non abbiamo soldi\"...", "post_text": "\"Non abbiamo soldi, non abbiamo soldi\"...", "shared_text": "", "time": "2016-10-06 11:34:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154127310363155&id=252306033154", "link": null} +{"post_id": "10154132588598155", "text": "Ecco come Treviso ha salutato un buffone.\nScommettiamo che nessun telegiornale vi far\u00e0 vedere queste immagini?", "post_text": "Ecco come Treviso ha salutato un buffone.\nScommettiamo che nessun telegiornale vi far\u00e0 vedere queste immagini?", "shared_text": "", "time": "2016-10-05 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154132588598155&id=252306033154", "link": null} +{"post_id": "10154130498728155", "text": "BASTANO 3 MINUTI!\nIl cardinale Raymond Leo Burke: \"L'ISLAM \u00e8 una minaccia, ha lo scopo di governare il mondo\", per loro siamo infedeli e il \"loro scopo primario \u00e8 PRENDERE ROMA\". E ancora, sull'immigrazione,\u2026 Altro serve \"INTELLIGENZA\" e \"dobbiamo sapere chi sono e QUANTI immigrati possiamo realisticamente accettare\".\nPer fortuna non tutti tra le gerarchie ecclesiastiche si rassegnano al \"politically correct\"... FAI GIRARE!", "post_text": "BASTANO 3 MINUTI!\nIl cardinale Raymond Leo Burke: \"L'ISLAM \u00e8 una minaccia, ha lo scopo di governare il mondo\", per loro siamo infedeli e il \"loro scopo primario \u00e8 PRENDERE ROMA\". E ancora, sull'immigrazione,\u2026 Altro serve \"INTELLIGENZA\" e \"dobbiamo sapere chi sono e QUANTI immigrati possiamo realisticamente accettare\".\nPer fortuna non tutti tra le gerarchie ecclesiastiche si rassegnano al \"politically correct\"... FAI GIRARE!", "shared_text": "", "time": "2016-10-05 12:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154130498728155&id=252306033154", "link": null} +{"post_id": "10154110327243155", "text": "\"Cosa fate tutto il giorno?\". \"Stiamo seduti, mangiamo e dormiamo\".\nE chi ha fatto il mutuo trentennale per quella che doveva essere una elegante residenza? Se la prende in quel posto...", "post_text": "\"Cosa fate tutto il giorno?\". \"Stiamo seduti, mangiamo e dormiamo\".\nE chi ha fatto il mutuo trentennale per quella che doveva essere una elegante residenza? Se la prende in quel posto...", "shared_text": "", "time": "2016-10-05 09:03:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154110327243155&id=252306033154", "link": null} +{"post_id": "10154127297568155", "text": "\"I primi delle graduatorie spesso sono stranieri\". E cos\u00ec, con due bimbi piccoli, devono vivere in un camper senza riscaldamento... Gli italiani? Sempre DOPO! Per noi verranno sempre PRIMA!\nP.s. \u00c8 ora di MUOVERSI. Ti aspetto sabato 12 novembre a Firenze! #iovotono", "post_text": "\"I primi delle graduatorie spesso sono stranieri\". E cos\u00ec, con due bimbi piccoli, devono vivere in un camper senza riscaldamento... Gli italiani? Sempre DOPO! Per noi verranno sempre PRIMA!\nP.s. \u00c8 ora di MUOVERSI. Ti aspetto sabato 12 novembre a Firenze! #iovotono", "shared_text": "", "time": "2016-10-04 11:50:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154127297568155&id=252306033154", "link": null} +{"post_id": "10154127297793155", "text": "Corteo presidenziale a Verona, atmosfera ovattata, baci, abbracci ma poi... arriva una vocina che rovina tutto!\nNessuna tiv\u00f9 ve l'ha fatto sentire, noi s\u00ec! Sempre pi\u00f9 amato il Renzi...\nIl 4 dicembre gli mostriamo tutti insieme i titoli di coda! Vi va?\n#iovotono", "post_text": "Corteo presidenziale a Verona, atmosfera ovattata, baci, abbracci ma poi... arriva una vocina che rovina tutto!\nNessuna tiv\u00f9 ve l'ha fatto sentire, noi s\u00ec! Sempre pi\u00f9 amato il Renzi...\nIl 4 dicembre gli mostriamo tutti insieme i titoli di coda! Vi va?\n#iovotono", "shared_text": "", "time": "2016-10-04 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154127297793155&id=252306033154", "link": null} +{"post_id": "10154079351303155", "text": "Con la flat-tax al 15% l'economia sommersa potr\u00e0 RIEMERGERE. Ma se non paghi, tolleranza zero. WWW.TASSAUNICA.IT", "post_text": "Con la flat-tax al 15% l'economia sommersa potr\u00e0 RIEMERGERE. Ma se non paghi, tolleranza zero. WWW.TASSAUNICA.IT", "shared_text": "", "time": "2016-10-03 17:33:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154079351303155&id=252306033154", "link": "http://WWW.TASSAUNICA.IT/?fbclid=IwAR1bd5pf0HFO_m62RL8c05HQeNQZqkVt1WrfeeFbTqmAkYEX54GbKxC_sg4"} +{"post_id": "10154126970923155", "text": "Bolzano, rissa tra immigrati, a colpi di MAZZE e bastoni, davanti a bimbi e famiglie. Questi pi\u00f9 che scappare dalla GUERRA ce la portano in casa...\nCHE SCHIFO! #stopinvasione, fai girare!", "post_text": "Bolzano, rissa tra immigrati, a colpi di MAZZE e bastoni, davanti a bimbi e famiglie. Questi pi\u00f9 che scappare dalla GUERRA ce la portano in casa...\nCHE SCHIFO! #stopinvasione, fai girare!", "shared_text": "", "time": "2016-10-03 15:02:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154126970923155&id=252306033154", "link": null} +{"post_id": "10154113900388155", "text": "Michele, esodato, TRUFFATO dallo Stato, forse dovr\u00e0 vendere la casa per tirare avanti... E pensare che c'\u00e8 chi dice che gli esodati non esistono. Vergogna Fornero, vergogna Pd, VERGOGNA Renzi che non muove un dito! Non vedo l'ora di essere al governo per restituire un po' di dignit\u00e0 agli italiani traditi!", "post_text": "Michele, esodato, TRUFFATO dallo Stato, forse dovr\u00e0 vendere la casa per tirare avanti... E pensare che c'\u00e8 chi dice che gli esodati non esistono. Vergogna Fornero, vergogna Pd, VERGOGNA Renzi che non muove un dito! Non vedo l'ora di essere al governo per restituire un po' di dignit\u00e0 agli italiani traditi!", "shared_text": "", "time": "2016-10-03 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154113900388155&id=252306033154", "link": null} +{"post_id": "10154114191638155", "text": "\"Noi non veniamo con i barconi, ma non per questo non viviamo un inferno\".", "post_text": "\"Noi non veniamo con i barconi, ma non per questo non viviamo un inferno\".", "shared_text": "", "time": "2016-10-02 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154114191638155&id=252306033154", "link": null} +{"post_id": "10154121814863155", "text": "Chi ha castrato il clandestino???", "post_text": "Chi ha castrato il clandestino???", "shared_text": "", "time": "2016-10-01 14:59:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154121814863155&id=252306033154", "link": null} +{"post_id": "10154111281128155", "text": "Pretendono, pretendono, pretendono. Il riso non gli piace, vogliono \"cibo africano\"... Ma, secondo voi, se uno scappa veramente dalla guerra, si comporta cos\u00ec???", "post_text": "Pretendono, pretendono, pretendono. Il riso non gli piace, vogliono \"cibo africano\"... Ma, secondo voi, se uno scappa veramente dalla guerra, si comporta cos\u00ec???", "shared_text": "", "time": "2016-10-01 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154111281128155&id=252306033154", "link": null} +{"post_id": "10154120158188155", "text": "In diretta da Padova, un abbraccio a Renzi, Boldrini e ai centri a-sociali.", "post_text": "In diretta da Padova, un abbraccio a Renzi, Boldrini e ai centri a-sociali.", "shared_text": "", "time": "2016-09-30 22:12:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154120158188155&id=252306033154", "link": null} +{"post_id": "10154109729998155", "text": "12 \"profughi\", 6 residenti... Ma secondo voi \u00e8 normale???", "post_text": "12 \"profughi\", 6 residenti... Ma secondo voi \u00e8 normale???", "shared_text": "", "time": "2016-09-30 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154109729998155&id=252306033154", "link": null} +{"post_id": "10154117112093155", "text": "Quello che i TG non vi faranno vedere!!!\nGli agricoltori coprono di FISCHI Renzi, il suo S\u00cc e il suo amico segretario della Coldiretti, uno che avrebbe PERCEPITO, secondo \"L'Espresso\", l'incredibile cifra di 10 MILIONI di stipendio in 12 anni!!!\nVERGOGNA, fai girare!", "post_text": "Quello che i TG non vi faranno vedere!!!\nGli agricoltori coprono di FISCHI Renzi, il suo S\u00cc e il suo amico segretario della Coldiretti, uno che avrebbe PERCEPITO, secondo \"L'Espresso\", l'incredibile cifra di 10 MILIONI di stipendio in 12 anni!!!\nVERGOGNA, fai girare!", "shared_text": "", "time": "2016-09-29 20:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154117112093155&id=252306033154", "link": null} +{"post_id": "10154116301258155", "text": "La casa PRIMA agli italiani. A Cascina la Lega lo ha fatto. VOLERE \u00e8 POTERE!", "post_text": "La casa PRIMA agli italiani. A Cascina la Lega lo ha fatto. VOLERE \u00e8 POTERE!", "shared_text": "", "time": "2016-09-29 19:16:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154116301258155&id=252306033154", "link": null} +{"post_id": "10154116406918155", "text": "Sfrutta la debolezza di un'anziana e le frega i soldi, che infame.\nCi vogliono le telecamere, sempre!!!", "post_text": "Sfrutta la debolezza di un'anziana e le frega i soldi, che infame.\nCi vogliono le telecamere, sempre!!!", "shared_text": "", "time": "2016-09-29 13:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154116406918155&id=252306033154", "link": null} +{"post_id": "10154113906568155", "text": "\"Siccome sono italiano, mi hanno detto che potevo permettermi di pagare 600 euro di affitto. Se sei straniero invece...\".", "post_text": "\"Siccome sono italiano, mi hanno detto che potevo permettermi di pagare 600 euro di affitto. Se sei straniero invece...\".", "shared_text": "", "time": "2016-09-29 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154113906568155&id=252306033154", "link": null} +{"post_id": "10154114186478155", "text": "Se l'Europa \u00e8 quella della Bolkestein che mette a rischio 200mila aziende italiane, meglio SOLI che male accompagnati!\nRenzi MUOVITI, se vuoi ti porto io a Bruxelles!", "post_text": "Se l'Europa \u00e8 quella della Bolkestein che mette a rischio 200mila aziende italiane, meglio SOLI che male accompagnati!\nRenzi MUOVITI, se vuoi ti porto io a Bruxelles!", "shared_text": "", "time": "2016-09-28 20:39:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154114186478155&id=252306033154", "link": null} +{"post_id": "10154097804288155", "text": "Voglio ricordare la storia di Franco, CONDANNATO a 2 anni e 8 mesi di reclusione e 300 MILA euro di risarcimento per aver ucciso un LADRO.\nIl giudice preferiva forse che venisse ucciso il tabaccaio???\nQuesta \u00e8\u2026 Altro l'Italia AL CONTRARIO di Renzi e della sinistra!\nQuando andremo al governo, il principio della \"LEGITTIMA DIFESA SEMPRE\" (altro che reato di \"eccesso\"!) sar\u00e0 SACRO!", "post_text": "Voglio ricordare la storia di Franco, CONDANNATO a 2 anni e 8 mesi di reclusione e 300 MILA euro di risarcimento per aver ucciso un LADRO.\nIl giudice preferiva forse che venisse ucciso il tabaccaio???\nQuesta \u00e8\u2026 Altro l'Italia AL CONTRARIO di Renzi e della sinistra!\nQuando andremo al governo, il principio della \"LEGITTIMA DIFESA SEMPRE\" (altro che reato di \"eccesso\"!) sar\u00e0 SACRO!", "shared_text": "", "time": "2016-09-28 10:44:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154097804288155&id=252306033154", "link": null} +{"post_id": "10154095180538155", "text": "Parlo ogni giorno con tanti artigiani che magari avranno solo la terza media, ma hanno messo in piedi imprese un tempo vincenti, oggi DISTRUTTE da quelli con tripla laurea e doppio master...\nL'EURO \u00e8 una moneta criminale, da malati di mente!", "post_text": "Parlo ogni giorno con tanti artigiani che magari avranno solo la terza media, ma hanno messo in piedi imprese un tempo vincenti, oggi DISTRUTTE da quelli con tripla laurea e doppio master...\nL'EURO \u00e8 una moneta criminale, da malati di mente!", "shared_text": "", "time": "2016-09-27 15:28:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154095180538155&id=252306033154", "link": null} +{"post_id": "10154111251838155", "text": "Bastano meno di 5 minuti, dati ufficiali alla mano, per SMONTARE le BUGIE di Renzi e del PD sull'immigrazione!\nFai girare!", "post_text": "Bastano meno di 5 minuti, dati ufficiali alla mano, per SMONTARE le BUGIE di Renzi e del PD sull'immigrazione!\nFai girare!", "shared_text": "", "time": "2016-09-27 12:33:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154111251838155&id=252306033154", "link": null} +{"post_id": "10154108511253155", "text": "BENVENUTI A VARESESTAN!\nDa quest'anno sul SAGRATO del DUOMO (trasformato per l'occasione in suk) canti, danze e mezzelune islamiche nell'ambito del fondamentale festival promosso dal \"COORDINAMENTO MIGRANTE\", con patrocinio del Comune. Pubblico attento, con smartphone caldo...\n(Ecco che cosa succede a votare PD...)", "post_text": "BENVENUTI A VARESESTAN!\nDa quest'anno sul SAGRATO del DUOMO (trasformato per l'occasione in suk) canti, danze e mezzelune islamiche nell'ambito del fondamentale festival promosso dal \"COORDINAMENTO MIGRANTE\", con patrocinio del Comune. Pubblico attento, con smartphone caldo...\n(Ecco che cosa succede a votare PD...)", "shared_text": "", "time": "2016-09-26 12:37:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154108511253155&id=252306033154", "link": null} +{"post_id": "10154076509063155", "text": "Con la scusa di una richiesta di informazioni, PICCHIATO selvaggiamente da una banda di ladri nordafricani a Seriate, vicino Bergamo...\nQuesta \u00e8 la realt\u00e0, RENZI! Esci da Palazzo Chigi e fatti un giro in una qualsiasi citt\u00e0 italana: altro che Italicum e legge elettorale!!!", "post_text": "Con la scusa di una richiesta di informazioni, PICCHIATO selvaggiamente da una banda di ladri nordafricani a Seriate, vicino Bergamo...\nQuesta \u00e8 la realt\u00e0, RENZI! Esci da Palazzo Chigi e fatti un giro in una qualsiasi citt\u00e0 italana: altro che Italicum e legge elettorale!!!", "shared_text": "", "time": "2016-09-26 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154076509063155&id=252306033154", "link": null} +{"post_id": "10154071520708155", "text": "Numeretto magico: 5%. Lo ripeto: 5%!\nLo ripetiamo tutti insieme: SOLO il 5% di chi sbarca scappa dalla GUERRA! Entrer\u00e0 in testa a Renzi, Boldrini e compagnia?\nAh no, loro pensano che in Italia ci sia posto per tutta l'Africa.\nMigranti climatici compresi...", "post_text": "Numeretto magico: 5%. Lo ripeto: 5%!\nLo ripetiamo tutti insieme: SOLO il 5% di chi sbarca scappa dalla GUERRA! Entrer\u00e0 in testa a Renzi, Boldrini e compagnia?\nAh no, loro pensano che in Italia ci sia posto per tutta l'Africa.\nMigranti climatici compresi...", "shared_text": "", "time": "2016-09-25 20:33:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154071520708155&id=252306033154", "link": null} +{"post_id": "10154103039128155", "text": "Uno Stato che non mette al primo posto i PROPRI CITTADINI \u00e8 uno STATO FALLITO! Un abbraccio a questo pap\u00e0.", "post_text": "Uno Stato che non mette al primo posto i PROPRI CITTADINI \u00e8 uno STATO FALLITO! Un abbraccio a questo pap\u00e0.", "shared_text": "", "time": "2016-09-24 13:09:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154103039128155&id=252306033154", "link": null} +{"post_id": "10154100695823155", "text": "Gli SCHIFOSI avevano picchiato e TORTURATO con un FERRO DA STIRO rovente una coppia di anziani. Presi: MAROCCHINI, CLANDESTINI e con precedenti penali... Che sorpresa, non avrei mai detto!\nRISPEDIRLI A CASA LORO, subito!!!", "post_text": "Gli SCHIFOSI avevano picchiato e TORTURATO con un FERRO DA STIRO rovente una coppia di anziani. Presi: MAROCCHINI, CLANDESTINI e con precedenti penali... Che sorpresa, non avrei mai detto!\nRISPEDIRLI A CASA LORO, subito!!!", "shared_text": "", "time": "2016-09-24 10:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154100695823155&id=252306033154", "link": null} +{"post_id": "10154095144028155", "text": "Quelli che hanno SVENDUTO il nostro futuro hanno TRADITO la fiducia degli italiani. E posso dire che il signor Napolitano \u00e8 COMPLICE del disastro in cui ci troviamo oggi o vengo arrestato?\nAvr\u00f2 tanti difetti, ma non quello di essere ipocrita.", "post_text": "Quelli che hanno SVENDUTO il nostro futuro hanno TRADITO la fiducia degli italiani. E posso dire che il signor Napolitano \u00e8 COMPLICE del disastro in cui ci troviamo oggi o vengo arrestato?\nAvr\u00f2 tanti difetti, ma non quello di essere ipocrita.", "shared_text": "", "time": "2016-09-23 14:46:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154095144028155&id=252306033154", "link": null} +{"post_id": "10154097785808155", "text": "I cittadini di Abano Terme (Padova) scendono in piazza in massa e dicono NO all'invasione dei clandestini, che il governo Renzi vorrebbe mettere in una ex base Nato! SONO CON VOI, AMICI! Non molliamo! RESISTERE! #stopinvasione", "post_text": "I cittadini di Abano Terme (Padova) scendono in piazza in massa e dicono NO all'invasione dei clandestini, che il governo Renzi vorrebbe mettere in una ex base Nato! SONO CON VOI, AMICI! Non molliamo! RESISTERE! #stopinvasione", "shared_text": "", "time": "2016-09-23 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154097785808155&id=252306033154", "link": null} +{"post_id": "10154098088073155", "text": "Maledette, gi\u00f9 le mani dai bambini!\nLa proposta della Lega \u00e8 chiara: telecamere negli asili.\nSiete d'accordo?", "post_text": "Maledette, gi\u00f9 le mani dai bambini!\nLa proposta della Lega \u00e8 chiara: telecamere negli asili.\nSiete d'accordo?", "shared_text": "", "time": "2016-09-22 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154098088073155&id=252306033154", "link": null} +{"post_id": "10154079295408155", "text": "Domande e risposte sulla flat-tax: 15% di tasse per tutti \u00e8 troppo poco?\nEcco la risposta in 1 minuto.\nApprofondisci anche sul sito: WWW.TASSAUNICA.IT", "post_text": "Domande e risposte sulla flat-tax: 15% di tasse per tutti \u00e8 troppo poco?\nEcco la risposta in 1 minuto.\nApprofondisci anche sul sito: WWW.TASSAUNICA.IT", "shared_text": "", "time": "2016-09-22 14:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154079295408155&id=252306033154", "link": "http://WWW.TASSAUNICA.IT/?fbclid=IwAR14hTwnAtGosk1uKS2PhUf13Gmsf01UpFsImhe9RITDRGJ5B-nQJVV1ss4"} +{"post_id": "10154095240048155", "text": "In Calabria due giovani su tre non hanno lavoro, e sono costretti a lasciare la propria terra. Ma secondo questo sindaco i problemi si risolvono IMPORTANDO migliaia di immigrati... Dai, su, fate posto!\n(ROBA DA MATTI!)", "post_text": "In Calabria due giovani su tre non hanno lavoro, e sono costretti a lasciare la propria terra. Ma secondo questo sindaco i problemi si risolvono IMPORTANDO migliaia di immigrati... Dai, su, fate posto!\n(ROBA DA MATTI!)", "shared_text": "", "time": "2016-09-21 18:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154095240048155&id=252306033154", "link": null} +{"post_id": "10154095256948155", "text": "Il signore in studio fa finta di non capire la differenza tra immigrati regolari e CLANDESTINI che invadono le nostre citt\u00e0.\nProblemi di comprensione o malafede? Glielo spiegate voi?", "post_text": "Il signore in studio fa finta di non capire la differenza tra immigrati regolari e CLANDESTINI che invadono le nostre citt\u00e0.\nProblemi di comprensione o malafede? Glielo spiegate voi?", "shared_text": "", "time": "2016-09-21 14:17:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154095256948155&id=252306033154", "link": null} +{"post_id": "10154079968398155", "text": "VERGOGNOSO!\nVittima della legge Fornero, esodata: senza lavoro, senza pensione, con il marito malato. Vive con un assegno di invalidit\u00e0 di 290 euro al mese... mentre lo Stato ne spende pi\u00f9 di 1.000 per ciascuno\u2026 Altro delle decine di migliaia di CLANDESTINI che non fuggono da nessuna guerra (e che hanno anche il coraggio di protestare per cibo cattivo e wi-fi mancante...).\nGoverno RAZZISTA verso gli italiani! Servono altre prove?\n#renzistaisereno #iovotono", "post_text": "VERGOGNOSO!\nVittima della legge Fornero, esodata: senza lavoro, senza pensione, con il marito malato. Vive con un assegno di invalidit\u00e0 di 290 euro al mese... mentre lo Stato ne spende pi\u00f9 di 1.000 per ciascuno\u2026 Altro delle decine di migliaia di CLANDESTINI che non fuggono da nessuna guerra (e che hanno anche il coraggio di protestare per cibo cattivo e wi-fi mancante...).\nGoverno RAZZISTA verso gli italiani! Servono altre prove?\n#renzistaisereno #iovotono", "shared_text": "", "time": "2016-09-20 16:15:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154079968398155&id=252306033154", "link": null} +{"post_id": "10154092541143155", "text": "In diretta da Milanistan...", "post_text": "In diretta da Milanistan...", "shared_text": "", "time": "2016-09-20 12:37:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154092541143155&id=252306033154", "link": null} +{"post_id": "10154090473303155", "text": "Da guardare e DIFFONDERE su BACHECHE \"BUONISTE\".\nL'anno scorso il sindaco di Bergamo (PD) affermava: \"Salvini dice parecchie cose non vere... la Lega riesce ad alimentare un costante clima di PAURA e\u2026 Altro INSICUREZZA\".\nPoi nel centro della sua citt\u00e0, ormai invasa da bande di immigrati, si moltiplicano risse come questa, di qualche giorno fa.\nAltro che indicarci come responsabili, qui serve una bella RIPULITA!\nP.s. Sempre GRAZIE alle Forze dell'ordine, purtroppo il loro lavoro \u00e8 spesso rovinato da qualche giudice.", "post_text": "Da guardare e DIFFONDERE su BACHECHE \"BUONISTE\".\nL'anno scorso il sindaco di Bergamo (PD) affermava: \"Salvini dice parecchie cose non vere... la Lega riesce ad alimentare un costante clima di PAURA e\u2026 Altro INSICUREZZA\".\nPoi nel centro della sua citt\u00e0, ormai invasa da bande di immigrati, si moltiplicano risse come questa, di qualche giorno fa.\nAltro che indicarci come responsabili, qui serve una bella RIPULITA!\nP.s. Sempre GRAZIE alle Forze dell'ordine, purtroppo il loro lavoro \u00e8 spesso rovinato da qualche giudice.", "shared_text": "", "time": "2016-09-19 17:05:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154090473303155&id=252306033154", "link": null} +{"post_id": "10154089782738155", "text": "Noi non saremo pi\u00f9 schiavi di nessuno! #Pontida16", "post_text": "Noi non saremo pi\u00f9 schiavi di nessuno! #Pontida16", "shared_text": "", "time": "2016-09-19 10:59:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154089782738155&id=252306033154", "link": null} +{"post_id": "10154087514848155", "text": "Continua la diretta da #Pontida16", "post_text": "Continua la diretta da #Pontida16", "shared_text": "", "time": "2016-09-18 14:40:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154087514848155&id=252306033154", "link": null} +{"post_id": "10154087507918155", "text": "Continua la diretta da #Pontida16", "post_text": "Continua la diretta da #Pontida16", "shared_text": "", "time": "2016-09-18 14:36:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154087507918155&id=252306033154", "link": null} +{"post_id": "10154087352963155", "text": "+++ Eccomi, amici: In diretta dallo splendido palco di #Pontida16! +++", "post_text": "+++ Eccomi, amici: In diretta dallo splendido palco di #Pontida16! +++", "shared_text": "", "time": "2016-09-18 13:45:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154087352963155&id=252306033154", "link": null} +{"post_id": "10154077011213155", "text": "Dati alla mano, fuori dall'Euro c'\u00e8 vita, sviluppo, futuro!", "post_text": "Dati alla mano, fuori dall'Euro c'\u00e8 vita, sviluppo, futuro!", "shared_text": "", "time": "2016-09-15 15:24:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154077011213155&id=252306033154", "link": null} +{"post_id": "10154079287128155", "text": "La flat-tax aiuta solo i ricchi? FALSO! Scopri in 1 minuto perch\u00e9.\nWWW.TASSAUNICA.IT, la rivoluzione fiscale \u00e8 possibile!", "post_text": "La flat-tax aiuta solo i ricchi? FALSO! Scopri in 1 minuto perch\u00e9.\nWWW.TASSAUNICA.IT, la rivoluzione fiscale \u00e8 possibile!", "shared_text": "", "time": "2016-09-15 12:48:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154079287128155&id=252306033154", "link": "http://WWW.TASSAUNICA.IT/?fbclid=IwAR3BOcfPsOYthGbBNSfPpzLlmk08sgU0SxPhoN_LV-dnx5KWQ4RCsBTO70E"} +{"post_id": "10154076647108155", "text": "Un minuto per smontare le palle degli EURO-BUGIARDI!", "post_text": "Un minuto per smontare le palle degli EURO-BUGIARDI!", "shared_text": "", "time": "2016-09-14 14:07:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154076647108155&id=252306033154", "link": null} +{"post_id": "10154071813798155", "text": "Gli insulti di Saviano a milioni di italiani che sostengono la Lega, da lui definiti \"un CANCRO\"? Li rivolga a mafiosi, delinquenti, spacciatori e stupratori!\nComunque, a lui e a Fedez preferisco Mauro Corona e Fabrizio De Andr\u00e9!", "post_text": "Gli insulti di Saviano a milioni di italiani che sostengono la Lega, da lui definiti \"un CANCRO\"? Li rivolga a mafiosi, delinquenti, spacciatori e stupratori!\nComunque, a lui e a Fedez preferisco Mauro Corona e Fabrizio De Andr\u00e9!", "shared_text": "", "time": "2016-09-12 18:38:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154071813798155&id=252306033154", "link": null} +{"post_id": "10154071843668155", "text": "Dopo i migranti economici e i migranti climatici, tra un po' ci saranno i migranti calcistici... BASTA! Tutta l'Africa in Italia non ci sta.", "post_text": "Dopo i migranti economici e i migranti climatici, tra un po' ci saranno i migranti calcistici... BASTA! Tutta l'Africa in Italia non ci sta.", "shared_text": "", "time": "2016-09-12 14:23:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154071843668155&id=252306033154", "link": null} +{"post_id": "10154060899458155", "text": "La rivoluzione fiscale in Italia \u00e8 POSSIBILE, con la flat tax al 15%.\nCOME? Eccola spiegata: con grafici, cifre, simulazioni. Alla faccia di chi dice \"non si pu\u00f2 fare\", \"non \u00e8 progressiva\", \"non ci sono le\u2026 Altro coperture\"...\nCon il CORAGGIO, quello che manca all'incapace Renzi, NOI LA FAREMO! Condividi anche tu.\nP.s. Puoi approfondire anche sul sito: WWW.TASSAUNICA.IT", "post_text": "La rivoluzione fiscale in Italia \u00e8 POSSIBILE, con la flat tax al 15%.\nCOME? Eccola spiegata: con grafici, cifre, simulazioni. Alla faccia di chi dice \"non si pu\u00f2 fare\", \"non \u00e8 progressiva\", \"non ci sono le\u2026 Altro coperture\"...\nCon il CORAGGIO, quello che manca all'incapace Renzi, NOI LA FAREMO! Condividi anche tu.\nP.s. Puoi approfondire anche sul sito: WWW.TASSAUNICA.IT", "shared_text": "", "time": "2016-09-09 12:07:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154060899458155&id=252306033154", "link": "http://WWW.TASSAUNICA.IT/?fbclid=IwAR0HIb9tFKu-27xMNlSuri1S7FJy8ZZJPbicNZi66_y1BugoSaKLhvSN5-I"} +{"post_id": "10154060808168155", "text": "In 3 minuti, con cifre e proposte chiare, quello che farei al posto del BUGIARDO Renzi e del suo governo della crescita ZERO.\nSe ti piace, fai girare!", "post_text": "In 3 minuti, con cifre e proposte chiare, quello che farei al posto del BUGIARDO Renzi e del suo governo della crescita ZERO.\nSe ti piace, fai girare!", "shared_text": "", "time": "2016-09-08 21:02:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154060808168155&id=252306033154", "link": null} +{"post_id": "10154060066203155", "text": "Lo Stato ha 575 miliardi di \"crediti inesigibili\" verso gli italiani. Che cosa sono? Sono tasse dichiarate e non versate da quei cittadini che non sono evasori, semplicemente non ce la fanno a pagarle. E\u2026 Altro vengono perseguitati da Equitalia.\nDOMANDA e PROPOSTA concreta: invece di pretendere delle somme che non si vedranno mai, non sarebbe meglio STRACCIARE quelle CARTELLE ESATTORIALI e chiedere di pagare solo il 10% del dovuto?\nNoi lo faremo.", "post_text": "Lo Stato ha 575 miliardi di \"crediti inesigibili\" verso gli italiani. Che cosa sono? Sono tasse dichiarate e non versate da quei cittadini che non sono evasori, semplicemente non ce la fanno a pagarle. E\u2026 Altro vengono perseguitati da Equitalia.\nDOMANDA e PROPOSTA concreta: invece di pretendere delle somme che non si vedranno mai, non sarebbe meglio STRACCIARE quelle CARTELLE ESATTORIALI e chiedere di pagare solo il 10% del dovuto?\nNoi lo faremo.", "shared_text": "", "time": "2016-09-08 14:04:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154060066203155&id=252306033154", "link": null} +{"post_id": "10154054488623155", "text": "Liberi dall'Unione Sovietica Europea, dei clandestini e della disoccupazione!", "post_text": "Liberi dall'Unione Sovietica Europea, dei clandestini e della disoccupazione!", "shared_text": "", "time": "2016-09-06 12:26:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154054488623155&id=252306033154", "link": null} +{"post_id": "10154054389588155", "text": "In diretta da Milano!", "post_text": "In diretta da Milano!", "shared_text": "", "time": "2016-09-06 11:33:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154054389588155&id=252306033154", "link": null} +{"post_id": "10154054278478155", "text": "Nuove proteste dei \"profughi\", questa volta a Livorno, con blocco del traffico e aggressione ai passanti. Non sono soddisfatti dei servizi che gli offriamo... A CASAAAAA!", "post_text": "Nuove proteste dei \"profughi\", questa volta a Livorno, con blocco del traffico e aggressione ai passanti. Non sono soddisfatti dei servizi che gli offriamo... A CASAAAAA!", "shared_text": "", "time": "2016-09-06 11:02:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154054278478155&id=252306033154", "link": null} +{"post_id": "10154049801648155", "text": "In diretta da Borgosesia (Vercelli), con un pensiero speciale per Gianluca Buonanno.", "post_text": "In diretta da Borgosesia (Vercelli), con un pensiero speciale per Gianluca Buonanno.", "shared_text": "", "time": "2016-09-04 21:29:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154049801648155&id=252306033154", "link": null} +{"post_id": "10154049459668155", "text": "In Germania vincono gli alleati della Lega e perdono la Merkel e gli amici di Renzi!!!", "post_text": "In Germania vincono gli alleati della Lega e perdono la Merkel e gli amici di Renzi!!!", "shared_text": "", "time": "2016-09-04 19:21:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154049459668155&id=252306033154", "link": null} +{"post_id": "10154042313113155", "text": "E poi dicono che esagero, che non \u00e8 vero che gli italiani siano esasperati, che l'invasione \u00e8 un'invenzione... I cittadini di questo video per\u00f2 non hanno la villa a Capalbio, dunque per buonisti e sinistri non avrebbero nemmeno diritto di lamentarsi... Quante situazioni come questa conoscete?", "post_text": "E poi dicono che esagero, che non \u00e8 vero che gli italiani siano esasperati, che l'invasione \u00e8 un'invenzione... I cittadini di questo video per\u00f2 non hanno la villa a Capalbio, dunque per buonisti e sinistri non avrebbero nemmeno diritto di lamentarsi... Quante situazioni come questa conoscete?", "shared_text": "", "time": "2016-09-02 12:03:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154042313113155&id=252306033154", "link": null} +{"post_id": "10154037347363155", "text": "In diretta da Conselve, Padova. Buona serata Amici!", "post_text": "In diretta da Conselve, Padova. Buona serata Amici!", "shared_text": "", "time": "2016-08-31 21:49:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154037347363155&id=252306033154", "link": null} +{"post_id": "10154036149053155", "text": "\u00c8 INVASIONE: voluta, finanziata, organizzata.\nA qualcuno servono schiavi a 3 euro all'ora da sfruttare al posto degli italiani.\nLa LEGA far\u00e0 di tutto per bloccare questa sostituzione di popolo: il 12 novembre a FIRENZE appuntamento per tutti quelli che vogliono un FUTURO per i propri figli! Ci state?", "post_text": "\u00c8 INVASIONE: voluta, finanziata, organizzata.\nA qualcuno servono schiavi a 3 euro all'ora da sfruttare al posto degli italiani.\nLa LEGA far\u00e0 di tutto per bloccare questa sostituzione di popolo: il 12 novembre a FIRENZE appuntamento per tutti quelli che vogliono un FUTURO per i propri figli! Ci state?", "shared_text": "", "time": "2016-08-31 11:59:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154036149053155&id=252306033154", "link": null} +{"post_id": "10154031194913155", "text": "Buon luned\u00ec sera Amici, ben ritrovati!", "post_text": "Buon luned\u00ec sera Amici, ben ritrovati!", "shared_text": "", "time": "2016-08-29 19:38:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154031194913155&id=252306033154", "link": null} +{"post_id": "10154024696033155", "text": "Buonasera Amici. In diretta da Pinzolo, Val Rendena, Trentino. Voi sapete a chi vanno questa sera il nostro pensiero e le nostre preghiere.", "post_text": "Buonasera Amici. In diretta da Pinzolo, Val Rendena, Trentino. Voi sapete a chi vanno questa sera il nostro pensiero e le nostre preghiere.", "shared_text": "", "time": "2016-08-27 21:15:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154024696033155&id=252306033154", "link": null} +{"post_id": "10154013312323155", "text": "ROBA DA MATTI!!!\nIl pensionato non gli d\u00e0 l'elemosina? Il signor Moustafa Hussein lo massacra di botte. Subito liberato (ovviamente!), va ad ACCOLTELLARE un ragazzo che aveva difeso il pensionato, forandogli un\u2026 Altro polmone e rischiando di ucciderlo.\nMa state tranquilli, dice Renzi, l'INVASIONE \u00e8 una palla di quell'estremista, brutto, sporco e cattivo di Salvini... NOI NON MOLLIAMO!\nP.s. Facebook \u00e8 utile ma non basta: vi aspetto il 12 novembre TUTTI A FIRENZE #iovotono!", "post_text": "ROBA DA MATTI!!!\nIl pensionato non gli d\u00e0 l'elemosina? Il signor Moustafa Hussein lo massacra di botte. Subito liberato (ovviamente!), va ad ACCOLTELLARE un ragazzo che aveva difeso il pensionato, forandogli un\u2026 Altro polmone e rischiando di ucciderlo.\nMa state tranquilli, dice Renzi, l'INVASIONE \u00e8 una palla di quell'estremista, brutto, sporco e cattivo di Salvini... NOI NON MOLLIAMO!\nP.s. Facebook \u00e8 utile ma non basta: vi aspetto il 12 novembre TUTTI A FIRENZE #iovotono!", "shared_text": "", "time": "2016-08-23 16:22:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154013312323155&id=252306033154", "link": null} +{"post_id": "10154007447763155", "text": "Se anche CL nasconde la Madonna per paura dell'Islam...", "post_text": "Se anche CL nasconde la Madonna per paura dell'Islam...", "shared_text": "", "time": "2016-08-21 11:30:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10154007447763155&id=252306033154", "link": null} +{"post_id": "10153996289278155", "text": "Qui Milano! Anche se in alcune vie non sembra di essere in Italia...", "post_text": "Qui Milano! Anche se in alcune vie non sembra di essere in Italia...", "shared_text": "", "time": "2016-08-17 10:35:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153996289278155&id=252306033154", "link": null} +{"post_id": "10153992459013155", "text": "Appuntamento sabato 12 novembre a FIRENZE, dobbiamo essere TANTI!\nSe voi ci siete, io ci sono!", "post_text": "Appuntamento sabato 12 novembre a FIRENZE, dobbiamo essere TANTI!\nSe voi ci siete, io ci sono!", "shared_text": "", "time": "2016-08-16 13:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153992459013155&id=252306033154", "link": null} +{"post_id": "10153993588478155", "text": "Buon marted\u00ec Amici, cambiare si pu\u00f2!", "post_text": "Buon marted\u00ec Amici, cambiare si pu\u00f2!", "shared_text": "", "time": "2016-08-16 11:29:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153993588478155&id=252306033154", "link": null} +{"post_id": "10153964142513155", "text": "Abbiamo creato la nostra Scuola di formazione politica perch\u00e9 dal confronto e dalla conoscenza arriva la soluzione dei problemi. Sono aperte le iscrizioni all'edizione 2016-2017 (un corso a Milano e uno a Roma): anche quest'anno io ci sar\u00f2, aspetto anche voi!\nTutte le info su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT", "post_text": "Abbiamo creato la nostra Scuola di formazione politica perch\u00e9 dal confronto e dalla conoscenza arriva la soluzione dei problemi. Sono aperte le iscrizioni all'edizione 2016-2017 (un corso a Milano e uno a Roma): anche quest'anno io ci sar\u00f2, aspetto anche voi!\nTutte le info su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT", "shared_text": "", "time": "2016-08-09 13:02:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153964142513155&id=252306033154", "link": "http://WWW.SCUOLADIFORMAZIONEPOLITICA.IT/?fbclid=IwAR3d3izZ9OSf4VyX2l0BiaHL4w72RmqvJVaqzKh8mwIFbMqtQu4eCK73_H0"} +{"post_id": "10153894447488155", "text": "Chi alimenta l'immigrazione clandestina \u00e8 COMPLICE degli attentati dell'Isis. Punto!", "post_text": "Chi alimenta l'immigrazione clandestina \u00e8 COMPLICE degli attentati dell'Isis. Punto!", "shared_text": "", "time": "2016-08-05 14:17:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153894447488155&id=252306033154", "link": null} +{"post_id": "10153959897158155", "text": "In diretta da Milanistan, accampamenti a cielo aperto in pieno centro.", "post_text": "In diretta da Milanistan, accampamenti a cielo aperto in pieno centro.", "shared_text": "", "time": "2016-08-04 15:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153959897158155&id=252306033154", "link": null} +{"post_id": "10153959568678155", "text": "Io ci sono, e voi?", "post_text": "Io ci sono, e voi?", "shared_text": "", "time": "2016-08-03 19:27:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153959568678155&id=252306033154", "link": null} +{"post_id": "10153947170578155", "text": "Qualche minuto insieme a voi!", "post_text": "Qualche minuto insieme a voi!", "shared_text": "", "time": "2016-07-29 20:45:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153947170578155&id=252306033154", "link": null} +{"post_id": "10153944283673155", "text": "FOLLIA!\nInversione a U sull'autostrada della Cisa!\nMa a casa sua in Romania fanno cos\u00ec? Altro regalo dell'Unione Europea...", "post_text": "FOLLIA!\nInversione a U sull'autostrada della Cisa!\nMa a casa sua in Romania fanno cos\u00ec? Altro regalo dell'Unione Europea...", "shared_text": "", "time": "2016-07-28 19:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153944283673155&id=252306033154", "link": null} +{"post_id": "10153936436868155", "text": "SENZA PAROLE!\nEcco il futuro che Laura immagina per tutti noi: i \"migranti\" sono una \"avanguardia\" e ci offrono il loro \"stile di vita\"... da imitare!\nIeri, oggi e domani: #sgonfialaboldrini", "post_text": "SENZA PAROLE!\nEcco il futuro che Laura immagina per tutti noi: i \"migranti\" sono una \"avanguardia\" e ci offrono il loro \"stile di vita\"... da imitare!\nIeri, oggi e domani: #sgonfialaboldrini", "shared_text": "", "time": "2016-07-26 17:54:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153936436868155&id=252306033154", "link": null} +{"post_id": "10153936781393155", "text": "Qualche minuto con voi, anche se Laura non c'\u00e8...", "post_text": "Qualche minuto con voi, anche se Laura non c'\u00e8...", "shared_text": "", "time": "2016-07-25 20:11:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153936781393155&id=252306033154", "link": null} +{"post_id": "10153931104528155", "text": "Qualche minuto con voi. Referendum di Renzi? NO, grazie.", "post_text": "Qualche minuto con voi. Referendum di Renzi? NO, grazie.", "shared_text": "", "time": "2016-07-23 12:41:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153931104528155&id=252306033154", "link": null} +{"post_id": "10153929543448155", "text": "Ancora spari e morti, stavolta a Monaco.", "post_text": "Ancora spari e morti, stavolta a Monaco.", "shared_text": "", "time": "2016-07-22 19:30:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153929543448155&id=252306033154", "link": null} +{"post_id": "10153928694943155", "text": "Una coppia di anziani, quasi novantenni, PICCHIATI e TORTURATI nella notte. Provo SCHIFO e PENA verso chi, complice di questa situazione, pensa che in Italia non esista un'emergenza...\nUn abbraccio al signor Libero e alla signora Rosina: noi NON MOLLIAMO!", "post_text": "Una coppia di anziani, quasi novantenni, PICCHIATI e TORTURATI nella notte. Provo SCHIFO e PENA verso chi, complice di questa situazione, pensa che in Italia non esista un'emergenza...\nUn abbraccio al signor Libero e alla signora Rosina: noi NON MOLLIAMO!", "shared_text": "", "time": "2016-07-22 12:33:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153928694943155&id=252306033154", "link": null} +{"post_id": "10153927094528155", "text": "Io ci sono, voi???", "post_text": "Io ci sono, voi???", "shared_text": "", "time": "2016-07-21 19:28:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153927094528155&id=252306033154", "link": null} +{"post_id": "10153921475008155", "text": "ROBA DA MATTI!\nDopo aver tentato di scippare una donna (con bimbo e passeggino) a Palermo, insulta la Polizia al grido di \"FANCULO ITALIA, FANCULO ITALIANI\"... Non si trova bene? Accontentiamolo! Biglietto di sola andata per la Somalia (magari a spese della Boldrini).", "post_text": "ROBA DA MATTI!\nDopo aver tentato di scippare una donna (con bimbo e passeggino) a Palermo, insulta la Polizia al grido di \"FANCULO ITALIA, FANCULO ITALIANI\"... Non si trova bene? Accontentiamolo! Biglietto di sola andata per la Somalia (magari a spese della Boldrini).", "shared_text": "", "time": "2016-07-19 13:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153921475008155&id=252306033154", "link": null} +{"post_id": "10153919662463155", "text": "\"Il SANGUE dei vostri BAMBINI \u00e8 il nostro sangue. Sangue per sangue. Distruzione per distruzione\".\n\"Il lavoro e il cibo sono disgustosi, sono dei CANI. Dio ci protegga da questo Paese\".\nE poi RISATE per le\u2026 Altro chiese distrutte dal TERREMOTO in Abruzzo, e altre \"amorevoli\" affermazioni...\nCinque tunisini, gi\u00e0 condannati con l'accusa di aver creato intorno alla moschea di Andria, in Puglia, un \"centro di indottrinamento e addestramento finalizzata al reclutamento di ASPIRANTI MARTIRI\" (e rifugio di clandestini), sono stati ASSOLTI dalla Cassazione perch\u00e9 \"il fatto non sussiste\".\nTutti liberi, e immagino continueranno a ridere, alla faccia nostra.", "post_text": "\"Il SANGUE dei vostri BAMBINI \u00e8 il nostro sangue. Sangue per sangue. Distruzione per distruzione\".\n\"Il lavoro e il cibo sono disgustosi, sono dei CANI. Dio ci protegga da questo Paese\".\nE poi RISATE per le\u2026 Altro chiese distrutte dal TERREMOTO in Abruzzo, e altre \"amorevoli\" affermazioni...\nCinque tunisini, gi\u00e0 condannati con l'accusa di aver creato intorno alla moschea di Andria, in Puglia, un \"centro di indottrinamento e addestramento finalizzata al reclutamento di ASPIRANTI MARTIRI\" (e rifugio di clandestini), sono stati ASSOLTI dalla Cassazione perch\u00e9 \"il fatto non sussiste\".\nTutti liberi, e immagino continueranno a ridere, alla faccia nostra.", "shared_text": "", "time": "2016-07-19 09:56:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153919662463155&id=252306033154", "link": null} +{"post_id": "10153917272383155", "text": "Qualche minuto insieme!", "post_text": "Qualche minuto insieme!", "shared_text": "", "time": "2016-07-17 19:10:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153917272383155&id=252306033154", "link": null} +{"post_id": "10153916421243155", "text": "Non ho parole.\nhttp://www.ansa.it/sardegna/notizie/2016/07/16/disabile-picchiato-filmato-gira-su-web_caa2b4fa-a937-4e4d-8d25-51eec7cc7c90.html", "post_text": "Non ho parole.\nhttp://www.ansa.it/sardegna/notizie/2016/07/16/disabile-picchiato-filmato-gira-su-web_caa2b4fa-a937-4e4d-8d25-51eec7cc7c90.html", "shared_text": "", "time": "2016-07-17 11:36:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153916421243155&id=252306033154", "link": "http://www.ansa.it/sardegna/notizie/2016/07/16/disabile-picchiato-filmato-gira-su-web_caa2b4fa-a937-4e4d-8d25-51eec7cc7c90.html?fbclid=IwAR3of3PIi3J7UjKBDA999hKOt7c8lci4neaGSq0eXh6MlbNohD0ZoNQO2Zc"} +{"post_id": "10153903577043155", "text": "Grande il controllore: \"IL RAZZISTA SEI TU!\"", "post_text": "Grande il controllore: \"IL RAZZISTA SEI TU!\"", "shared_text": "", "time": "2016-07-12 12:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153903577043155&id=252306033154", "link": null} +{"post_id": "10153894548198155", "text": "Quante prove servono ancora per dimostrare che l'Euro \u00e8 una moneta SBAGLIATA, eccetto che per i tedeschi? Non si possono fare referendum sui trattati europei perch\u00e9 in Italia si pensa che i cittadini siano\u2026 Altro IDIOTI (buon motivo per votare NO al referendum di Renzi, tra l'altro)?\nBene, con noi al governo la moneta unica la salutiamo. Punto!", "post_text": "Quante prove servono ancora per dimostrare che l'Euro \u00e8 una moneta SBAGLIATA, eccetto che per i tedeschi? Non si possono fare referendum sui trattati europei perch\u00e9 in Italia si pensa che i cittadini siano\u2026 Altro IDIOTI (buon motivo per votare NO al referendum di Renzi, tra l'altro)?\nBene, con noi al governo la moneta unica la salutiamo. Punto!", "shared_text": "", "time": "2016-07-12 10:17:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153894548198155&id=252306033154", "link": null} +{"post_id": "10153901543073155", "text": "Benvenuti a Milanistan", "post_text": "Benvenuti a Milanistan", "shared_text": "", "time": "2016-07-11 12:43:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153901543073155&id=252306033154", "link": null} +{"post_id": "10153897776243155", "text": "Qualche minuto con voi", "post_text": "Qualche minuto con voi", "shared_text": "", "time": "2016-07-09 19:58:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153897776243155&id=252306033154", "link": null} +{"post_id": "10153889902648155", "text": "I \"profughi\" a Catania trascorrono placide giornate da villeggianti, tra mare, sole e sport! A spese degli italiani, anche di quelli che magari in vacanza non ci possono andare... Questa \u00e8 l'Italia di Renzi.", "post_text": "I \"profughi\" a Catania trascorrono placide giornate da villeggianti, tra mare, sole e sport! A spese degli italiani, anche di quelli che magari in vacanza non ci possono andare... Questa \u00e8 l'Italia di Renzi.", "shared_text": "", "time": "2016-07-08 16:41:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153889902648155&id=252306033154", "link": null} +{"post_id": "10153894192143155", "text": "In diretta dall'area Expo di Milano, pronta ad accogliere su indicazione del governo Renzi centinaia di clandestini in 576 monolocali con aria condizionata, wi-fi e bagno in camera...", "post_text": "In diretta dall'area Expo di Milano, pronta ad accogliere su indicazione del governo Renzi centinaia di clandestini in 576 monolocali con aria condizionata, wi-fi e bagno in camera...", "shared_text": "", "time": "2016-07-08 11:10:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153894192143155&id=252306033154", "link": null} +{"post_id": "10153892638513155", "text": "Razzista, populista, fascista... E basta!!!", "post_text": "Razzista, populista, fascista... E basta!!!", "shared_text": "", "time": "2016-07-07 20:33:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153892638513155&id=252306033154", "link": null} +{"post_id": "10153890455718155", "text": "Imparare, conoscere, confrontarsi e approfondire! Sono aperte le iscrizioni all'edizione 2016-2017 della Scuola di formazione politica (un corso a Milano e uno a Roma): pensaci anche tu!\nTutte le info su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT", "post_text": "Imparare, conoscere, confrontarsi e approfondire! Sono aperte le iscrizioni all'edizione 2016-2017 della Scuola di formazione politica (un corso a Milano e uno a Roma): pensaci anche tu!\nTutte le info su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT", "shared_text": "", "time": "2016-07-06 20:01:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153890455718155&id=252306033154", "link": "http://WWW.SCUOLADIFORMAZIONEPOLITICA.IT/?fbclid=IwAR1kq0ZBemxqN4srO29BFWrx4q_4TRcKDu-6pJlAHOA7v9HjLhbuw065qGY"} +{"post_id": "10153889939823155", "text": "\"GIUSTIZIA\" DA MANICOMIO!\nNigeriano di 22 anni, non gli \u00e8 stato riconosciuto lo status di profugo, ma potr\u00e0 rimanere qui da noi (per un \"modico\" costo di 60mila euro di soldi pubblici) FINO AL 2020, anno in cui il giudice ha fissato l'udienza di ricorso!\nMa quanti casi come questo ci sono in giro???", "post_text": "\"GIUSTIZIA\" DA MANICOMIO!\nNigeriano di 22 anni, non gli \u00e8 stato riconosciuto lo status di profugo, ma potr\u00e0 rimanere qui da noi (per un \"modico\" costo di 60mila euro di soldi pubblici) FINO AL 2020, anno in cui il giudice ha fissato l'udienza di ricorso!\nMa quanti casi come questo ci sono in giro???", "shared_text": "", "time": "2016-07-06 13:41:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153889939823155&id=252306033154", "link": null} +{"post_id": "10153888174953155", "text": "\"\u00c8 gi\u00e0 la seconda volta che mi fermi, la terza TI AMMAZZO\" e lo manda all'ospedale. Cos\u00ec un simpatico ragazzo extracomunitario a Pescara, ai danni di un controllore. No, dai, non esiste problema sicurezza, ci\u2026 Altro dicono i \"BUONISTI\", son tutte esagerazioni, la colpa \u00e8 nostra che siamo populisti (e anche un po' scemi perch\u00e9 paghiamo il BIGLIETTO...).", "post_text": "\"\u00c8 gi\u00e0 la seconda volta che mi fermi, la terza TI AMMAZZO\" e lo manda all'ospedale. Cos\u00ec un simpatico ragazzo extracomunitario a Pescara, ai danni di un controllore. No, dai, non esiste problema sicurezza, ci\u2026 Altro dicono i \"BUONISTI\", son tutte esagerazioni, la colpa \u00e8 nostra che siamo populisti (e anche un po' scemi perch\u00e9 paghiamo il BIGLIETTO...).", "shared_text": "", "time": "2016-07-05 19:34:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153888174953155&id=252306033154", "link": null} +{"post_id": "10153882213838155", "text": "Combattere l'ISIS a partire dalle fonti di denaro che lo armano: petrolio e immigrazione clandestina...\nE poi ANNIENTARE con tutti i mezzi queste BESTIE, perch\u00e9 le chiacchiere e i minuti di silenzio non fermano l'orrore.", "post_text": "Combattere l'ISIS a partire dalle fonti di denaro che lo armano: petrolio e immigrazione clandestina...\nE poi ANNIENTARE con tutti i mezzi queste BESTIE, perch\u00e9 le chiacchiere e i minuti di silenzio non fermano l'orrore.", "shared_text": "", "time": "2016-07-04 18:20:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153882213838155&id=252306033154", "link": null} +{"post_id": "10153880093688155", "text": "Qualche minuto insieme a voi!", "post_text": "Qualche minuto insieme a voi!", "shared_text": "", "time": "2016-07-01 17:43:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153880093688155&id=252306033154", "link": null} +{"post_id": "10153879822848155", "text": "In Austria chi sbaglia paga (e si annullano le elezioni presidenziali irregolari), in Gran Bretagna, dopo il #brexit, si propone il modello di immigrazione limitata e a punti... e in Italia? Si fa la corsa a chi \u00e8 pi\u00f9 servo del BUGIARDO di Firenze!\nMa il vento di Libert\u00e0 arriver\u00e0 anche qui: se voi non mollate, IO NON MOLLO!", "post_text": "In Austria chi sbaglia paga (e si annullano le elezioni presidenziali irregolari), in Gran Bretagna, dopo il #brexit, si propone il modello di immigrazione limitata e a punti... e in Italia? Si fa la corsa a chi \u00e8 pi\u00f9 servo del BUGIARDO di Firenze!\nMa il vento di Libert\u00e0 arriver\u00e0 anche qui: se voi non mollate, IO NON MOLLO!", "shared_text": "", "time": "2016-07-01 14:57:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153879822848155&id=252306033154", "link": null} +{"post_id": "10153875217743155", "text": "ROM nullatenenti... ma con la Porsche.", "post_text": "ROM nullatenenti... ma con la Porsche.", "shared_text": "", "time": "2016-06-30 13:52:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153875217743155&id=252306033154", "link": null} +{"post_id": "10153875682823155", "text": "Protesta dei \"profughi\" a Verona: si lamentano perch\u00e9 sono \"imprigionati\" e gli diamo \"pochi soldi\"... Poveretti. Dai, facciamo una colletta?", "post_text": "Protesta dei \"profughi\" a Verona: si lamentano perch\u00e9 sono \"imprigionati\" e gli diamo \"pochi soldi\"... Poveretti. Dai, facciamo una colletta?", "shared_text": "", "time": "2016-06-29 15:47:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153875682823155&id=252306033154", "link": null} +{"post_id": "10153875233933155", "text": "ECCO IN CHE MANI SIAMO!\nVi presento Juncker, il \"traballante\" presidente della Commissione europea... A voi i commenti.", "post_text": "ECCO IN CHE MANI SIAMO!\nVi presento Juncker, il \"traballante\" presidente della Commissione europea... A voi i commenti.", "shared_text": "", "time": "2016-06-29 11:38:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153875233933155&id=252306033154", "link": null} +{"post_id": "10153873435353155", "text": "5 minuti senza interruzioni da Vespa sulla #Brexit: i veri europeisti sono quelli che riconoscono che la UE di banchieri, multinazionali e burocrati \u00e8 la NEGAZIONE dei valori e delle ragioni per cui nacque l'Unione. Ma i POPOLI EUROPEI si stanno svegliando: LIBERT\u00c0!", "post_text": "5 minuti senza interruzioni da Vespa sulla #Brexit: i veri europeisti sono quelli che riconoscono che la UE di banchieri, multinazionali e burocrati \u00e8 la NEGAZIONE dei valori e delle ragioni per cui nacque l'Unione. Ma i POPOLI EUROPEI si stanno svegliando: LIBERT\u00c0!", "shared_text": "", "time": "2016-06-28 18:00:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153873435353155&id=252306033154", "link": null} +{"post_id": "10153872845323155", "text": "In diretta dalla Bruxelles post Brexit", "post_text": "In diretta dalla Bruxelles post Brexit", "shared_text": "", "time": "2016-06-28 10:42:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153872845323155&id=252306033154", "link": null} +{"post_id": "10153866800533155", "text": "In diretta da Parma, IL CANTIERE: oggi la politica ascolta (quarta parte)", "post_text": "In diretta da Parma, IL CANTIERE: oggi la politica ascolta (quarta parte)", "shared_text": "", "time": "2016-06-25 18:01:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153866800533155&id=252306033154", "link": null} +{"post_id": "10153866513163155", "text": "In diretta da Parma, IL CANTIERE: oggi la politica ascolta (terza parte).", "post_text": "In diretta da Parma, IL CANTIERE: oggi la politica ascolta (terza parte).", "shared_text": "", "time": "2016-06-25 16:00:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153866513163155&id=252306033154", "link": null} +{"post_id": "10153866471418155", "text": "In diretta da Parma, IL CANTIERE: oggi la politica ascolta.", "post_text": "In diretta da Parma, IL CANTIERE: oggi la politica ascolta.", "shared_text": "", "time": "2016-06-25 15:10:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153866471418155&id=252306033154", "link": null} +{"post_id": "10153866180438155", "text": "In diretta da Parma, IL CANTIERE: oggi la politica ascolta.", "post_text": "In diretta da Parma, IL CANTIERE: oggi la politica ascolta.", "shared_text": "", "time": "2016-06-25 13:12:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153866180438155&id=252306033154", "link": null} +{"post_id": "10153863356988155", "text": "Ora da Milano su Brexit!", "post_text": "Ora da Milano su Brexit!", "shared_text": "", "time": "2016-06-24 11:19:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153863356988155&id=252306033154", "link": null} +{"post_id": "10153863203373155", "text": "Ora tocca a noi!!!", "post_text": "Ora tocca a noi!!!", "shared_text": "", "time": "2016-06-24 09:50:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153863203373155&id=252306033154", "link": null} +{"post_id": "10153858349828155", "text": "Qualche minuto con voi!\nE da due giorni non si fuma...", "post_text": "Qualche minuto con voi!\nE da due giorni non si fuma...", "shared_text": "", "time": "2016-06-22 17:01:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153858349828155&id=252306033154", "link": null} +{"post_id": "10153851289998155", "text": "Dopo aver votato, qualche minuto insieme a voi", "post_text": "Dopo aver votato, qualche minuto insieme a voi", "shared_text": "", "time": "2016-06-19 18:31:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153851289998155&id=252306033154", "link": null} +{"post_id": "10153846089793155", "text": "CHE VERGOGNA!\nAnche voi, come Renzi nel video, pensate che questi siano come i nostri emigranti italiani di tanti anni fa??? PRIMA vengono gli ITALIANI, non ho paura di dirlo. E voi?", "post_text": "CHE VERGOGNA!\nAnche voi, come Renzi nel video, pensate che questi siano come i nostri emigranti italiani di tanti anni fa??? PRIMA vengono gli ITALIANI, non ho paura di dirlo. E voi?", "shared_text": "", "time": "2016-06-17 20:06:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153846089793155&id=252306033154", "link": null} +{"post_id": "10153846343213155", "text": "Due passi in centro a Bologna, ma di contestatore questa volta solo uno, peccato.", "post_text": "Due passi in centro a Bologna, ma di contestatore questa volta solo uno, peccato.", "shared_text": "", "time": "2016-06-17 19:21:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153846343213155&id=252306033154", "link": null} +{"post_id": "10153845397283155", "text": "...e per Renzi le tasse sono diminuite: il solito BUGIARDO!\nP.s. Condividi sulla bacheca di un amico che vota Pd (ma come si fa???)", "post_text": "...e per Renzi le tasse sono diminuite: il solito BUGIARDO!\nP.s. Condividi sulla bacheca di un amico che vota Pd (ma come si fa???)", "shared_text": "", "time": "2016-06-17 10:57:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153845397283155&id=252306033154", "link": null} +{"post_id": "10153843665033155", "text": "Ma quanto piove?????", "post_text": "Ma quanto piove?????", "shared_text": "", "time": "2016-06-16 18:00:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153843665033155&id=252306033154", "link": null} +{"post_id": "10153840879138155", "text": "Gli studi di settore sono una FOLLIA. VIA SUBITO! LIBERARE energie!\nSe lo Stato ti chiede il 60% il primo LADRO, il socio occulto che non fa niente, \u00e8 lui.\nP.s. Secondo RENZI voi oggi pagate meno tasse, vi risulta?", "post_text": "Gli studi di settore sono una FOLLIA. VIA SUBITO! LIBERARE energie!\nSe lo Stato ti chiede il 60% il primo LADRO, il socio occulto che non fa niente, \u00e8 lui.\nP.s. Secondo RENZI voi oggi pagate meno tasse, vi risulta?", "shared_text": "", "time": "2016-06-16 13:47:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153840879138155&id=252306033154", "link": null} +{"post_id": "10153841645973155", "text": "Io ci sono!", "post_text": "Io ci sono!", "shared_text": "", "time": "2016-06-15 19:42:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153841645973155&id=252306033154", "link": null} +{"post_id": "10153841379298155", "text": "Tanta gente incontrata anche questa mattina a Carmagnola, Torino.\nDalle parti del governo dovrebbero farsi qualche giro in pi\u00f9 al mercato ad ASCOLTARE.", "post_text": "Tanta gente incontrata anche questa mattina a Carmagnola, Torino.\nDalle parti del governo dovrebbero farsi qualche giro in pi\u00f9 al mercato ad ASCOLTARE.", "shared_text": "", "time": "2016-06-15 17:13:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153841379298155&id=252306033154", "link": null} +{"post_id": "10153840866208155", "text": "Il progetto di Renzi per le pensioni?\nDevi PAGARE per avere i TUOI SOLDI, in attesa di crepare, ingrassando le solite BANCHE!\nNon c'\u00e8 che una parola da dire: TRUFFATORE!!!\nAiutami a diffondere, finch\u00e9 Facebook rimane libero!", "post_text": "Il progetto di Renzi per le pensioni?\nDevi PAGARE per avere i TUOI SOLDI, in attesa di crepare, ingrassando le solite BANCHE!\nNon c'\u00e8 che una parola da dire: TRUFFATORE!!!\nAiutami a diffondere, finch\u00e9 Facebook rimane libero!", "shared_text": "", "time": "2016-06-15 13:08:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153840866208155&id=252306033154", "link": null} +{"post_id": "10153838685843155", "text": "Torino, Villaggio olimpico OCCUPATO: qui comandano libici ed eritrei, nell'assoluta impunit\u00e0\nITALIANI espulsi dalla propria citt\u00e0. Questo \u00e8 il governo della sinistra. Che schifo!", "post_text": "Torino, Villaggio olimpico OCCUPATO: qui comandano libici ed eritrei, nell'assoluta impunit\u00e0\nITALIANI espulsi dalla propria citt\u00e0. Questo \u00e8 il governo della sinistra. Che schifo!", "shared_text": "", "time": "2016-06-14 12:16:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153838685843155&id=252306033154", "link": null} +{"post_id": "10153837518128155", "text": "Io ci sono!", "post_text": "Io ci sono!", "shared_text": "", "time": "2016-06-13 22:36:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153837518128155&id=252306033154", "link": null} +{"post_id": "10153836665088155", "text": "Per loro gli ITALIANI SONO TUTTI RAZZISTI. Capito???\nVisibilmente deperiti dalla fame, tra l'altro...\nQuesti ci stanno PRENDENDO PER IL CULO! Fai girare!", "post_text": "Per loro gli ITALIANI SONO TUTTI RAZZISTI. Capito???\nVisibilmente deperiti dalla fame, tra l'altro...\nQuesti ci stanno PRENDENDO PER IL CULO! Fai girare!", "shared_text": "", "time": "2016-06-13 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153836665088155&id=252306033154", "link": null} +{"post_id": "10153832679503155", "text": "Qualche minuto con voi", "post_text": "Qualche minuto con voi", "shared_text": "", "time": "2016-06-11 19:21:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153832679503155&id=252306033154", "link": null} +{"post_id": "10153829626868155", "text": "ROBA DA MATTI!!!\nSi consideravano troppo \"fuori mano\" dunque: SPACCANO TUTTO, sfasciano i mobili e GETTANO IL CIBO per terra. Risultato? Spostati in un HOTEL A 4 STELLE nel centro di Messina! Come si fa a\u2026 Altro votare ancora per il PD e per il governo dell'invasione che UMILIA gli italiani???\nAlla faccia dei TG di Telerenzi (che tacciono), condividi anche tu!", "post_text": "ROBA DA MATTI!!!\nSi consideravano troppo \"fuori mano\" dunque: SPACCANO TUTTO, sfasciano i mobili e GETTANO IL CIBO per terra. Risultato? Spostati in un HOTEL A 4 STELLE nel centro di Messina! Come si fa a\u2026 Altro votare ancora per il PD e per il governo dell'invasione che UMILIA gli italiani???\nAlla faccia dei TG di Telerenzi (che tacciono), condividi anche tu!", "shared_text": "", "time": "2016-06-10 13:30:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153829626868155&id=252306033154", "link": null} +{"post_id": "10153829488378155", "text": "Qualche minuto insieme a voi", "post_text": "Qualche minuto insieme a voi", "shared_text": "", "time": "2016-06-10 11:27:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153829488378155&id=252306033154", "link": null} +{"post_id": "10153828022933155", "text": "Il \"Fenomeno\" oggi si \u00e8 beccato anche i fischi dei commercianti.\nChiss\u00e0 se i telegiornali lo faranno vedere...\nE sperate di non essere tra quelli (si parla di un oltre un milione di italiani) che potrebbero vedersi recapitare una cartella di Equitalia per restituire gli 80 euro...", "post_text": "Il \"Fenomeno\" oggi si \u00e8 beccato anche i fischi dei commercianti.\nChiss\u00e0 se i telegiornali lo faranno vedere...\nE sperate di non essere tra quelli (si parla di un oltre un milione di italiani) che potrebbero vedersi recapitare una cartella di Equitalia per restituire gli 80 euro...", "shared_text": "", "time": "2016-06-09 20:24:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153828022933155&id=252306033154", "link": null} +{"post_id": "10153827897928155", "text": "Qualche minuto insieme a voi", "post_text": "Qualche minuto insieme a voi", "shared_text": "", "time": "2016-06-09 19:10:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153827897928155&id=252306033154", "link": null} +{"post_id": "10153815843018155", "text": "Un video di INCREDIBILE CHIAREZZA da mostrare agli scettici.\nNe parleremo alla Scuola di Formazione Politica.\nIo ci sar\u00f2, come l'anno scorso con centinaia di persone, e voi?\nDue corsi, a Milano e a Roma.\u2026 Altro Iscrizioni aperte su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT - info@scuoladiformazionepolitica.it\nUn video di GENIALE semplicit\u00e0, che vi consiglio di guardare e condividere. 5 minuti sul perch\u00e9 l'immigrazione di massa non potr\u00e0 mai essere la soluzione alla povert\u00e0 nel mondo. Che dite, lo capiranno anche certi buonisti di casa nostra che vorrebbero accogliere in Italia tutta l'Africa?", "post_text": "Un video di INCREDIBILE CHIAREZZA da mostrare agli scettici.\nNe parleremo alla Scuola di Formazione Politica.\nIo ci sar\u00f2, come l'anno scorso con centinaia di persone, e voi?\nDue corsi, a Milano e a Roma.\u2026 Altro Iscrizioni aperte su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT - info@scuoladiformazionepolitica.it\nUn video di GENIALE semplicit\u00e0, che vi consiglio di guardare e condividere. 5 minuti sul perch\u00e9 l'immigrazione di massa non potr\u00e0 mai essere la soluzione alla povert\u00e0 nel mondo. Che dite, lo capiranno anche certi buonisti di casa nostra che vorrebbero accogliere in Italia tutta l'Africa?", "shared_text": "", "time": "2016-06-09 16:11:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153815843018155&id=252306033154", "link": "http://WWW.SCUOLADIFORMAZIONEPOLITICA.IT/?fbclid=IwAR2NMH06N_nNvFqY5iiu35QnUBHQa7maf3JltACX0ZRrvcTQELQAUYt8Obs"} +{"post_id": "10153825418458155", "text": "VIDEO PER STOMACI FORTI.\nPalermo, egiziano accoltella e quasi AMMAZZA un altro straniero che, pare, avesse fatto apprezzamenti alla fidanzata.\nQuesta \u00e8 la gente che gira per le nostre strade.\nUn GRAZIE alle\u2026 Altro nostre Forze dell'ordine che l'hanno arrestato, purtroppo, anzich\u00e9 essere rispedito subito in Egitto a calci nel sedere, temo ce lo ritroveremo presto in circolazione.", "post_text": "VIDEO PER STOMACI FORTI.\nPalermo, egiziano accoltella e quasi AMMAZZA un altro straniero che, pare, avesse fatto apprezzamenti alla fidanzata.\nQuesta \u00e8 la gente che gira per le nostre strade.\nUn GRAZIE alle\u2026 Altro nostre Forze dell'ordine che l'hanno arrestato, purtroppo, anzich\u00e9 essere rispedito subito in Egitto a calci nel sedere, temo ce lo ritroveremo presto in circolazione.", "shared_text": "", "time": "2016-06-08 20:36:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153825418458155&id=252306033154", "link": null} +{"post_id": "10153824711183155", "text": "Insieme a voi, da Strasburgo", "post_text": "Insieme a voi, da Strasburgo", "shared_text": "", "time": "2016-06-08 11:58:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153824711183155&id=252306033154", "link": null} +{"post_id": "10153822810818155", "text": "\"Li accogliamo nel nostro albergo anche per umanit\u00e0\" dice l'albergatore che quest'anno si intascher\u00e0 250 MILA EURO per ospitare un centinaio di \"profughi\".\nChe cuore d'oro... Questi \"finti buoni\" che si arricchiscono sui clandestini dovrebbero fallire dal primo all'ultimo!", "post_text": "\"Li accogliamo nel nostro albergo anche per umanit\u00e0\" dice l'albergatore che quest'anno si intascher\u00e0 250 MILA EURO per ospitare un centinaio di \"profughi\".\nChe cuore d'oro... Questi \"finti buoni\" che si arricchiscono sui clandestini dovrebbero fallire dal primo all'ultimo!", "shared_text": "", "time": "2016-06-07 18:12:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153822810818155&id=252306033154", "link": null} +{"post_id": "10153820922593155", "text": "Qualche minuto insieme a voi", "post_text": "Qualche minuto insieme a voi", "shared_text": "", "time": "2016-06-06 18:38:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153820922593155&id=252306033154", "link": null} +{"post_id": "10153820319503155", "text": "Ora in diretta da Milano.", "post_text": "Ora in diretta da Milano.", "shared_text": "", "time": "2016-06-06 11:50:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153820319503155&id=252306033154", "link": null} +{"post_id": "10153818120068155", "text": "Buona domenica e... buon voto!!!", "post_text": "Buona domenica e... buon voto!!!", "shared_text": "", "time": "2016-06-05 12:41:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153818120068155&id=252306033154", "link": null} +{"post_id": "10153816607113155", "text": "Qualche minuto per stare insieme.\nPronti domani a votare Lega?", "post_text": "Qualche minuto per stare insieme.\nPronti domani a votare Lega?", "shared_text": "", "time": "2016-06-04 19:41:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153816607113155&id=252306033154", "link": null} +{"post_id": "10153814581388155", "text": "AIUTAMI A FAR GIRARE! VIDEO-ISTRUZIONI: COME SI VOTA QUESTA DOMENICA PER IL COMUNE DI MILANO", "post_text": "AIUTAMI A FAR GIRARE! VIDEO-ISTRUZIONI: COME SI VOTA QUESTA DOMENICA PER IL COMUNE DI MILANO", "shared_text": "", "time": "2016-06-04 12:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153814581388155&id=252306033154", "link": null} +{"post_id": "10153814599278155", "text": "AIUTAMI A FAR GIRARE! VIDEO-ISTRUZIONI: COME SI VOTA QUESTA DOMENICA PER IL COMUNE DI ROMA", "post_text": "AIUTAMI A FAR GIRARE! VIDEO-ISTRUZIONI: COME SI VOTA QUESTA DOMENICA PER IL COMUNE DI ROMA", "shared_text": "", "time": "2016-06-04 10:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153814599278155&id=252306033154", "link": null} +{"post_id": "10153814144458155", "text": "Indiretta da Milano, visita campo Rom", "post_text": "Indiretta da Milano, visita campo Rom", "shared_text": "", "time": "2016-06-03 16:56:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153814144458155&id=252306033154", "link": null} +{"post_id": "10153813556193155", "text": "Questa mattina a Canale 5. 80 euro da restituire? Una TRUFFA RENZIANA, proprio come l'infamia tentata sulla pelle dei disabili cercando di tassare le pensioni di invalidit\u00e0!\nC'\u00e8 voluta una sentenza del Consiglio di Stato per evitarlo. RENZI \u00e8 pericoloso!\nP.s. Nervosetti quelli del PD! DAI, MENO 2!", "post_text": "Questa mattina a Canale 5. 80 euro da restituire? Una TRUFFA RENZIANA, proprio come l'infamia tentata sulla pelle dei disabili cercando di tassare le pensioni di invalidit\u00e0!\nC'\u00e8 voluta una sentenza del Consiglio di Stato per evitarlo. RENZI \u00e8 pericoloso!\nP.s. Nervosetti quelli del PD! DAI, MENO 2!", "shared_text": "", "time": "2016-06-03 10:55:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153813556193155&id=252306033154", "link": null} +{"post_id": "10153812130538155", "text": "In diretta da Bologna, ci imbavagliamo. VERGOGNA SINDACO!\n#rivogliobologna", "post_text": "In diretta da Bologna, ci imbavagliamo. VERGOGNA SINDACO!\n#rivogliobologna", "shared_text": "", "time": "2016-06-02 18:23:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153812130538155&id=252306033154", "link": null} +{"post_id": "10153809403328155", "text": "Non accadeva dal 1917 (ma c'erano malattie epidemiche e una guerra mondiale) che i morti superassero la nascite, ci stiamo ESTINGUENDO. Possibile che su 800 miliardi di spesa pubblica non se ne trovino 2 per\u2026 Altro rendere gli ASILI NIDO GRATUITI fino a 3 anni? Non c'\u00e8 futuro senza FIGLI!\nP.s. Se avete la pazienza di arrivare fino alla fine del video, ascoltate che cosa dice l'amica di Renzi...", "post_text": "Non accadeva dal 1917 (ma c'erano malattie epidemiche e una guerra mondiale) che i morti superassero la nascite, ci stiamo ESTINGUENDO. Possibile che su 800 miliardi di spesa pubblica non se ne trovino 2 per\u2026 Altro rendere gli ASILI NIDO GRATUITI fino a 3 anni? Non c'\u00e8 futuro senza FIGLI!\nP.s. Se avete la pazienza di arrivare fino alla fine del video, ascoltate che cosa dice l'amica di Renzi...", "shared_text": "", "time": "2016-06-02 16:26:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153809403328155&id=252306033154", "link": null} +{"post_id": "10153811581513155", "text": "Su 80.000 studenti universitari a Bologna i violenti e i casinisti non sono pi\u00f9 di 100. Dei poveretti, figli di pap\u00e0, da rieducare. Che odiano la Polizia, che odiano Salvini, che impediscono a persone come il\u2026 Altro prof. Panebianco di parlare liberamente. Oggi alle 18, nonostante la piazza negataci, sar\u00f2 in citt\u00e0 con la nostra candidata sindaco Lucia Borgonzoni, non vi dico dove: sorpresa!\nBOLOGNA \u00c8 DI TUTTI I BOLOGNESI! Fai girare.", "post_text": "Su 80.000 studenti universitari a Bologna i violenti e i casinisti non sono pi\u00f9 di 100. Dei poveretti, figli di pap\u00e0, da rieducare. Che odiano la Polizia, che odiano Salvini, che impediscono a persone come il\u2026 Altro prof. Panebianco di parlare liberamente. Oggi alle 18, nonostante la piazza negataci, sar\u00f2 in citt\u00e0 con la nostra candidata sindaco Lucia Borgonzoni, non vi dico dove: sorpresa!\nBOLOGNA \u00c8 DI TUTTI I BOLOGNESI! Fai girare.", "shared_text": "", "time": "2016-06-02 12:45:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153811581513155&id=252306033154", "link": null} +{"post_id": "10153809968488155", "text": "Una comunit\u00e0 internazionale pi\u00f9 normale non ha la convenienza a organizzare campi di identificazione nelle zone libere del Nord Africa evitando di trasformare il Mediterraneo in una fossa comune?\nTutti si\u2026 Altro occupano dei diritti degli immigrati, io vorrei che ci fosse qualcuno che si occupasse anche dei DIRITTI DEGLI ITALIANI che sono PROFUGHI IN CASA LORO!", "post_text": "Una comunit\u00e0 internazionale pi\u00f9 normale non ha la convenienza a organizzare campi di identificazione nelle zone libere del Nord Africa evitando di trasformare il Mediterraneo in una fossa comune?\nTutti si\u2026 Altro occupano dei diritti degli immigrati, io vorrei che ci fosse qualcuno che si occupasse anche dei DIRITTI DEGLI ITALIANI che sono PROFUGHI IN CASA LORO!", "shared_text": "", "time": "2016-06-02 10:32:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153809968488155&id=252306033154", "link": null} +{"post_id": "10153810040038155", "text": "Domani, alla faccia di questi sfigati figli di pap\u00e0, sar\u00f2 comunque a BOLOGNA alle 18. Una intera citt\u00e0 non pu\u00f2 essere ostaggio di pochi violenti! Senza paura. #BolognaLibera", "post_text": "Domani, alla faccia di questi sfigati figli di pap\u00e0, sar\u00f2 comunque a BOLOGNA alle 18. Una intera citt\u00e0 non pu\u00f2 essere ostaggio di pochi violenti! Senza paura. #BolognaLibera", "shared_text": "", "time": "2016-06-01 20:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153810040038155&id=252306033154", "link": null} +{"post_id": "10153810005478155", "text": "Banda di romeni svaligiava le case su indicazione delle badanti, i parenti si oppongono all'arresto... Che belle personcine! RUSPA!!!", "post_text": "Banda di romeni svaligiava le case su indicazione delle badanti, i parenti si oppongono all'arresto... Che belle personcine! RUSPA!!!", "shared_text": "", "time": "2016-06-01 18:22:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153810005478155&id=252306033154", "link": null} +{"post_id": "10153809465003155", "text": "QUESTA domenica tocca a voi: 5 minuti del vostro tempo per sostenere i nostri candidati sindaci, citt\u00e0 per citt\u00e0, da Nord a Sud, con la Lega e Noi con Salvini.\nDiamo un segnale a Renzi: VAI A CASA!", "post_text": "QUESTA domenica tocca a voi: 5 minuti del vostro tempo per sostenere i nostri candidati sindaci, citt\u00e0 per citt\u00e0, da Nord a Sud, con la Lega e Noi con Salvini.\nDiamo un segnale a Renzi: VAI A CASA!", "shared_text": "", "time": "2016-06-01 16:47:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153809465003155&id=252306033154", "link": null} +{"post_id": "10153809870438155", "text": "Qualche minuto insieme a voi da Torino", "post_text": "Qualche minuto insieme a voi da Torino", "shared_text": "", "time": "2016-06-01 16:45:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153809870438155&id=252306033154", "link": null} +{"post_id": "10153809760693155", "text": "In diretta da Torino", "post_text": "In diretta da Torino", "shared_text": "", "time": "2016-06-01 15:44:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153809760693155&id=252306033154", "link": null} +{"post_id": "10153809329943155", "text": "Vorrei che prima o poi pagasse anche un BANCHIERE per i disastri che hanno fatto in Italia, anzich\u00e9 risparmiatori, obbligazionisti e lavoratori!", "post_text": "Vorrei che prima o poi pagasse anche un BANCHIERE per i disastri che hanno fatto in Italia, anzich\u00e9 risparmiatori, obbligazionisti e lavoratori!", "shared_text": "", "time": "2016-06-01 11:02:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153809329943155&id=252306033154", "link": null} +{"post_id": "10153807878263155", "text": "Mi vergogno di uno Stato che non \u00e8 nemmeno in grado di difendere gli anziani!", "post_text": "Mi vergogno di uno Stato che non \u00e8 nemmeno in grado di difendere gli anziani!", "shared_text": "", "time": "2016-06-01 09:38:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153807878263155&id=252306033154", "link": null} +{"post_id": "10153807373138155", "text": "Domenica ogni voto in pi\u00f9 alla Lega e a Noi con Salvini \u00e8 un dispiacere in pi\u00f9 per il signor Napolitano e il suo amichetto Renzi!", "post_text": "Domenica ogni voto in pi\u00f9 alla Lega e a Noi con Salvini \u00e8 un dispiacere in pi\u00f9 per il signor Napolitano e il suo amichetto Renzi!", "shared_text": "", "time": "2016-05-31 18:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153807373138155&id=252306033154", "link": null} +{"post_id": "10153807489378155", "text": "Renzino fa i monologhi al TG, io preferisco una mattinata in giro per strada: ascoltare, capire, proporre, senza PAURA del confronto!\nE anche oggi vi aspetto a ROMA: alle 16.30 al Teatro Golden di via Taranto\u2026 Altro 36 con tutti i candidati della lista LEGA-NOI CON SALVINI e alle 19 alla libreria Borri Books (www.borribooks.com), in Stazione Termini, per la presentazione del libro \"Secondo Matteo\" (ancora primo per vendite in Italia tra i libri di saggistica, nonostante boicottaggi e rosiconi). NON MOLLIAMO!", "post_text": "Renzino fa i monologhi al TG, io preferisco una mattinata in giro per strada: ascoltare, capire, proporre, senza PAURA del confronto!\nE anche oggi vi aspetto a ROMA: alle 16.30 al Teatro Golden di via Taranto\u2026 Altro 36 con tutti i candidati della lista LEGA-NOI CON SALVINI e alle 19 alla libreria Borri Books (www.borribooks.com), in Stazione Termini, per la presentazione del libro \"Secondo Matteo\" (ancora primo per vendite in Italia tra i libri di saggistica, nonostante boicottaggi e rosiconi). NON MOLLIAMO!", "shared_text": "", "time": "2016-05-31 13:46:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153807489378155&id=252306033154", "link": "http://www.borribooks.com/?fbclid=IwAR0Bqa_nZ890ekAYi7ppbBAQDEocIkdcC7LpX-eKYhb5H4JN6xbn3lCyeJQ"} +{"post_id": "10153807387763155", "text": "Qualche minuto insieme a voi", "post_text": "Qualche minuto insieme a voi", "shared_text": "", "time": "2016-05-31 12:29:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153807387763155&id=252306033154", "link": null} +{"post_id": "10153807379433155", "text": "PAZZESCO!!!\nRISSA furibonda tra immigrati su un autobus di sera, a Roma, passeggeri e conducente in ostaggio delle gang. \"Non c'\u00e8 nessuna INVASIONE\" dice Renzino... Noooooo.... Tutte invenzioni di quel \"\u2026 Altromeschino\" di Salvini...\nDomenica hai l'occasione di AIUTARCI, col TUO VOTO, da Nord a Sud: cerca sulla scheda il simbolo della Lega o di Noi con Salvini, RIPULIAMO le nostre citt\u00e0!\nP.s. Un pensiero particolare non solo ai viaggiatori ma anche a chi ogni giorno lavora su autobus, treni, metropolitane, rischiando la pelle.", "post_text": "PAZZESCO!!!\nRISSA furibonda tra immigrati su un autobus di sera, a Roma, passeggeri e conducente in ostaggio delle gang. \"Non c'\u00e8 nessuna INVASIONE\" dice Renzino... Noooooo.... Tutte invenzioni di quel \"\u2026 Altromeschino\" di Salvini...\nDomenica hai l'occasione di AIUTARCI, col TUO VOTO, da Nord a Sud: cerca sulla scheda il simbolo della Lega o di Noi con Salvini, RIPULIAMO le nostre citt\u00e0!\nP.s. Un pensiero particolare non solo ai viaggiatori ma anche a chi ogni giorno lavora su autobus, treni, metropolitane, rischiando la pelle.", "shared_text": "", "time": "2016-05-31 12:22:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153807379433155&id=252306033154", "link": null} +{"post_id": "10153805670148155", "text": "L'Italia sta SCOPPIANDO. Renzi e Alfano NEGANO. Ma si sono mai fatti un giro in una qualsiasi citt\u00e0??? #STOPINVASIONE!", "post_text": "L'Italia sta SCOPPIANDO. Renzi e Alfano NEGANO. Ma si sono mai fatti un giro in una qualsiasi citt\u00e0??? #STOPINVASIONE!", "shared_text": "", "time": "2016-05-31 09:30:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153805670148155&id=252306033154", "link": null} +{"post_id": "10153805583458155", "text": "Se volete condividere questi 5 minuti di mio intervento di ieri (sotto il diluvio) sulla bacheca di qualche amico, diamo un bel dispiacere a Telerenzi e a quei TG che preferiscono ignorarci!", "post_text": "Se volete condividere questi 5 minuti di mio intervento di ieri (sotto il diluvio) sulla bacheca di qualche amico, diamo un bel dispiacere a Telerenzi e a quei TG che preferiscono ignorarci!", "shared_text": "", "time": "2016-05-30 16:16:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153805583458155&id=252306033154", "link": null} +{"post_id": "10153805165168155", "text": "Qualche minuto insieme a voi", "post_text": "Qualche minuto insieme a voi", "shared_text": "", "time": "2016-05-30 11:41:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153805165168155&id=252306033154", "link": null} +{"post_id": "10153803493938155", "text": "Grazie agli EROI oggi a Milano sotto le secchiate d'acqua! Non moriremo SCHIAVI dell'Europa, RENZINO arriviamo! #liberi", "post_text": "Grazie agli EROI oggi a Milano sotto le secchiate d'acqua! Non moriremo SCHIAVI dell'Europa, RENZINO arriviamo! #liberi", "shared_text": "", "time": "2016-05-29 16:18:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153803493938155&id=252306033154", "link": null} +{"post_id": "10153803429223155", "text": "In diretta, sotto l'acqua, da una splendida piazza piena a Milano!", "post_text": "In diretta, sotto l'acqua, da una splendida piazza piena a Milano!", "shared_text": "", "time": "2016-05-29 15:40:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153803429223155&id=252306033154", "link": null} +{"post_id": "10153803405078155", "text": "Siete pronti??? #Liberi! Segui su: www.libericonsalvini.org oppure su questa pagina!", "post_text": "Siete pronti??? #Liberi! Segui su: www.libericonsalvini.org oppure su questa pagina!", "shared_text": "", "time": "2016-05-29 15:26:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153803405078155&id=252306033154", "link": "http://www.libericonsalvini.org/?fbclid=IwAR3XeEISgfb2TNhbEHzRUN0rC0DaL85tQ6QlXeMUkAe01voejWJwbYxF0e4"} +{"post_id": "10153798973413155", "text": "Renzi avr\u00e0 voglia di ascoltarci o far\u00e0, come sempre, finta di niente??? #LIBERI", "post_text": "Renzi avr\u00e0 voglia di ascoltarci o far\u00e0, come sempre, finta di niente??? #LIBERI", "shared_text": "", "time": "2016-05-29 11:26:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153798973413155&id=252306033154", "link": null} +{"post_id": "10153801770023155", "text": "Qualche minuto insieme a voi!", "post_text": "Qualche minuto insieme a voi!", "shared_text": "", "time": "2016-05-28 19:13:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153801770023155&id=252306033154", "link": null} +{"post_id": "10153799250743155", "text": "In video-collegamento con Giorgia Meloni, unica candidata sindaco del centrodestra a Roma che, col sostegno della Lega, pu\u00f2 mandare a casa il PD.", "post_text": "In video-collegamento con Giorgia Meloni, unica candidata sindaco del centrodestra a Roma che, col sostegno della Lega, pu\u00f2 mandare a casa il PD.", "shared_text": "", "time": "2016-05-27 14:23:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153799250743155&id=252306033154", "link": null} +{"post_id": "10153799105478155", "text": "#matteorisponde?", "post_text": "#matteorisponde?", "shared_text": "", "time": "2016-05-27 13:12:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153799105478155&id=252306033154", "link": null} +{"post_id": "10153797995983155", "text": "Liberiamo Bologna! Chiuder\u00f2 la campagna elettorale gioved\u00ec 2 GIUGNO alle 18 in piazza Verdi, dove spacciano giorno e notte. Niente zecche, Bolognesi vi aspetto!", "post_text": "Liberiamo Bologna! Chiuder\u00f2 la campagna elettorale gioved\u00ec 2 GIUGNO alle 18 in piazza Verdi, dove spacciano giorno e notte. Niente zecche, Bolognesi vi aspetto!", "shared_text": "", "time": "2016-05-26 21:57:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153797995983155&id=252306033154", "link": null} +{"post_id": "10153797816453155", "text": "In diretta da Bologna!", "post_text": "In diretta da Bologna!", "shared_text": "", "time": "2016-05-26 20:03:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153797816453155&id=252306033154", "link": null} +{"post_id": "10153797001553155", "text": "Bruxelles, qualche minuto insieme a voi", "post_text": "Bruxelles, qualche minuto insieme a voi", "shared_text": "", "time": "2016-05-26 11:05:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153797001553155&id=252306033154", "link": null} +{"post_id": "10153795187843155", "text": "Ma con quale FACCIA DI BRONZO la \"signora\" FORNERO va ancora in tiv\u00f9 a tenere lezioni sulle PENSIONI???\nPer favore, taci e ritirati in esilio, che \u00e8 meglio!!!", "post_text": "Ma con quale FACCIA DI BRONZO la \"signora\" FORNERO va ancora in tiv\u00f9 a tenere lezioni sulle PENSIONI???\nPer favore, taci e ritirati in esilio, che \u00e8 meglio!!!", "shared_text": "", "time": "2016-05-25 15:01:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153795187843155&id=252306033154", "link": null} +{"post_id": "10153795020473155", "text": "Qualche minuto con voi, dai che ce la facciamo!", "post_text": "Qualche minuto con voi, dai che ce la facciamo!", "shared_text": "", "time": "2016-05-25 12:49:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153795020473155&id=252306033154", "link": null} +{"post_id": "10153792946928155", "text": "Al monsignore suggerisco di ricordarsi qualche volta anche di quei 4 MILIONI di italiani senza uno straccio di LAVORO che non possono permettersi di accogliere TUTTO IL MONDO... Sbaglio?", "post_text": "Al monsignore suggerisco di ricordarsi qualche volta anche di quei 4 MILIONI di italiani senza uno straccio di LAVORO che non possono permettersi di accogliere TUTTO IL MONDO... Sbaglio?", "shared_text": "", "time": "2016-05-25 11:14:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153792946928155&id=252306033154", "link": null} +{"post_id": "10153793206623155", "text": "Ancora straparla? Napolitano dovrebbe essere ricoverato, questo vecchio arnese comunista ha gi\u00e0 fatto troppi danni!", "post_text": "Ancora straparla? Napolitano dovrebbe essere ricoverato, questo vecchio arnese comunista ha gi\u00e0 fatto troppi danni!", "shared_text": "", "time": "2016-05-24 19:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153793206623155&id=252306033154", "link": null} +{"post_id": "10153793028008155", "text": "PAZZESCO!!!\nLa teoria del signor ROM: giusto occupare la casa a cui avrebbe diritto un'ANZIANA perch\u00e9 tanto MUORE alla svelta, se ne vada all'ospizio!\nUNA RUSPA GIGANTE non \u00e8 abbastanza per uno cos\u00ec!\n[http://cronacacriminale.tgcom24.it/2016/05/24/occupazioni-il-rom-giusto-togliere-la-casa-ad-unanziana-o-muore-o-va-allospizio]", "post_text": "PAZZESCO!!!\nLa teoria del signor ROM: giusto occupare la casa a cui avrebbe diritto un'ANZIANA perch\u00e9 tanto MUORE alla svelta, se ne vada all'ospizio!\nUNA RUSPA GIGANTE non \u00e8 abbastanza per uno cos\u00ec!\n[http://cronacacriminale.tgcom24.it/2016/05/24/occupazioni-il-rom-giusto-togliere-la-casa-ad-unanziana-o-muore-o-va-allospizio]", "shared_text": "", "time": "2016-05-24 15:40:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153793028008155&id=252306033154", "link": "http://cronacacriminale.tgcom24.it/2016/05/24/occupazioni-il-rom-giusto-togliere-la-casa-ad-unanziana-o-muore-o-va-allospizio?fbclid=IwAR2xotA7EpDJCi9GllXTieflwAGaT0RZ_txZ1M-b3osOSLZUNbqoQh83nTs"} +{"post_id": "10153792628153155", "text": "Per chi scappa dalla guerra, porte aperte di casa mia.\nPer i finti profughi e per il governo dell'invasione, biglietto di NON RITORNO e VIA!", "post_text": "Per chi scappa dalla guerra, porte aperte di casa mia.\nPer i finti profughi e per il governo dell'invasione, biglietto di NON RITORNO e VIA!", "shared_text": "", "time": "2016-05-24 14:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153792628153155&id=252306033154", "link": null} +{"post_id": "10153791104268155", "text": "C'\u00e8 ancora qualcuno convinto che la \"cura euro\" ci abbia salvato???", "post_text": "C'\u00e8 ancora qualcuno convinto che la \"cura euro\" ci abbia salvato???", "shared_text": "", "time": "2016-05-23 19:42:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153791104268155&id=252306033154", "link": null} +{"post_id": "10153790446708155", "text": "Ascoltate la giornalista, sinistra e renziana, del \"Corriere\": io dico \"NEFANDEZZE\" e se mi permetto di denunciare situazioni di illegalit\u00e0, anche andando a vedere di persona, sono un \"PROVOCATORE\". Forse la signora non \u00e8 molto abituata a prendere l'autobus o a girare in periferia... Che dite?", "post_text": "Ascoltate la giornalista, sinistra e renziana, del \"Corriere\": io dico \"NEFANDEZZE\" e se mi permetto di denunciare situazioni di illegalit\u00e0, anche andando a vedere di persona, sono un \"PROVOCATORE\". Forse la signora non \u00e8 molto abituata a prendere l'autobus o a girare in periferia... Che dite?", "shared_text": "", "time": "2016-05-23 11:20:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153790446708155&id=252306033154", "link": null} +{"post_id": "10153788683518155", "text": "Il primo LADRO in Italia \u00e8 lo STATO che rapina commercianti, artigiani e partite IVA.\nFlat-tax al 15%, VIA gli studi di settore e si riparte! #liberi", "post_text": "Il primo LADRO in Italia \u00e8 lo STATO che rapina commercianti, artigiani e partite IVA.\nFlat-tax al 15%, VIA gli studi di settore e si riparte! #liberi", "shared_text": "", "time": "2016-05-22 21:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153788683518155&id=252306033154", "link": null} +{"post_id": "10153788950668155", "text": "In diretta dalla piazza strapiena di Oderzo. Renzi, arriviamo!!!", "post_text": "In diretta dalla piazza strapiena di Oderzo. Renzi, arriviamo!!!", "shared_text": "", "time": "2016-05-22 19:35:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153788950668155&id=252306033154", "link": null} +{"post_id": "10153788658768155", "text": "VERGOGNA sono i mega-stipendi di dirigenti che fanno fallire grandi aziende e banche ai danni dei risparmiatori. VERGOGNA sono i miseri 300 euro al mese per un invalido quando a una coop per gestire gli immigrati che sbarcano domani mattina se ne danno 1.200!\n#LIBERI da queste ingiustizie! Io ci credo!", "post_text": "VERGOGNA sono i mega-stipendi di dirigenti che fanno fallire grandi aziende e banche ai danni dei risparmiatori. VERGOGNA sono i miseri 300 euro al mese per un invalido quando a una coop per gestire gli immigrati che sbarcano domani mattina se ne danno 1.200!\n#LIBERI da queste ingiustizie! Io ci credo!", "shared_text": "", "time": "2016-05-22 18:13:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153788658768155&id=252306033154", "link": null} +{"post_id": "10153788518178155", "text": "Qualche minuto insieme a voi! Sempre che non siate al mare o ai monti...", "post_text": "Qualche minuto insieme a voi! Sempre che non siate al mare o ai monti...", "shared_text": "", "time": "2016-05-22 15:50:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153788518178155&id=252306033154", "link": null} +{"post_id": "10153786650893155", "text": "Qualche minuto insieme a voi!", "post_text": "Qualche minuto insieme a voi!", "shared_text": "", "time": "2016-05-21 20:00:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153786650893155&id=252306033154", "link": null} +{"post_id": "10153784684303155", "text": "Renzi, BASTA PALLE! E cancella gli studi di settore che massacrano aziende e partite IVA, se vuoi lo puoi fare domani mattina.", "post_text": "Renzi, BASTA PALLE! E cancella gli studi di settore che massacrano aziende e partite IVA, se vuoi lo puoi fare domani mattina.", "shared_text": "", "time": "2016-05-21 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153784684303155&id=252306033154", "link": null} +{"post_id": "10153784574673155", "text": "Qualche minuto insieme a voi. Domande???", "post_text": "Qualche minuto insieme a voi. Domande???", "shared_text": "", "time": "2016-05-20 19:48:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153784574673155&id=252306033154", "link": null} +{"post_id": "10153783909793155", "text": "Se abbassi le tasse e reimmetti soldi in circolo, la gente compra, la fabbrica produce e assume l'operaio. ALIQUOTA UNICA, semplice e chiara, e si sconfigge anche la demenziale burocrazia fiscale italiana. Che sia al 15, al 20 o al 23% se ne pu\u00f2 discutere, ma serve CORAGGIO, quello che Renzi non ha.", "post_text": "Se abbassi le tasse e reimmetti soldi in circolo, la gente compra, la fabbrica produce e assume l'operaio. ALIQUOTA UNICA, semplice e chiara, e si sconfigge anche la demenziale burocrazia fiscale italiana. Che sia al 15, al 20 o al 23% se ne pu\u00f2 discutere, ma serve CORAGGIO, quello che Renzi non ha.", "shared_text": "", "time": "2016-05-20 18:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153783909793155&id=252306033154", "link": null} +{"post_id": "10153784072068155", "text": "Mando un GRAZIE e un abbraccio alle centinaia di ginosini che mi hanno accolto questa mattina in un Teatro Alcanices strapieno: agricoltura, lavoro, sicurezza, immigrazione, turismo, e STOP ai covi di illegalit\u00e0 che fanno concorrenza alle imprese oneste. Se voi ci siete, IO CI SONO! #liberi", "post_text": "Mando un GRAZIE e un abbraccio alle centinaia di ginosini che mi hanno accolto questa mattina in un Teatro Alcanices strapieno: agricoltura, lavoro, sicurezza, immigrazione, turismo, e STOP ai covi di illegalit\u00e0 che fanno concorrenza alle imprese oneste. Se voi ci siete, IO CI SONO! #liberi", "shared_text": "", "time": "2016-05-20 14:14:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153784072068155&id=252306033154", "link": null} +{"post_id": "10153783998658155", "text": "Dalla Puglia, qualche minuto (connessione permettendo) per parlare con voi.", "post_text": "Dalla Puglia, qualche minuto (connessione permettendo) per parlare con voi.", "shared_text": "", "time": "2016-05-20 13:26:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153783998658155&id=252306033154", "link": null} +{"post_id": "10153783806753155", "text": "Quanti di voi hanno ricevuto una cartella esattoriale SBAGLIATA e, pur avendo ragione, avete dovuto anticipare parte delle sanzioni non dovute? Oggi per lo Stato il cittadino \u00e8 il presunto colpevole, noi faremo in modo che sia il CONTRARIO. #liberi", "post_text": "Quanti di voi hanno ricevuto una cartella esattoriale SBAGLIATA e, pur avendo ragione, avete dovuto anticipare parte delle sanzioni non dovute? Oggi per lo Stato il cittadino \u00e8 il presunto colpevole, noi faremo in modo che sia il CONTRARIO. #liberi", "shared_text": "", "time": "2016-05-20 11:59:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153783806753155&id=252306033154", "link": null} +{"post_id": "10153783764748155", "text": "L'altro giorno al campo Rom della Magliana, a Roma, tra \"residenti\" e centri-asociali... Istruttivo, da condividere!\nSe volete che tutto rimanga cos\u00ec, votate PD!", "post_text": "L'altro giorno al campo Rom della Magliana, a Roma, tra \"residenti\" e centri-asociali... Istruttivo, da condividere!\nSe volete che tutto rimanga cos\u00ec, votate PD!", "shared_text": "", "time": "2016-05-20 10:45:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153783764748155&id=252306033154", "link": null} +{"post_id": "10153782426083155", "text": "Se Renzi perde il referendum di ottobre, basta giochi: subito elezioni!", "post_text": "Se Renzi perde il referendum di ottobre, basta giochi: subito elezioni!", "shared_text": "", "time": "2016-05-19 19:58:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153782426083155&id=252306033154", "link": null} +{"post_id": "10153781651403155", "text": "A Bruxelles stanno discutendo il TTIP che \u00e8 un DISASTRO per le nostre imprese, per la nostra economia ma anche per la nostra SALUTE.\nUn esempio? Negli Stati Uniti ci sono 82 PESTICIDI VIETATI per legge in\u2026 Altro Italia: per colpa dei VENDUTI e dei SERVI delle MULTINAZIONALI porteranno sulle tavole degli italiani alimenti trattati con questo SCHIFO!!!", "post_text": "A Bruxelles stanno discutendo il TTIP che \u00e8 un DISASTRO per le nostre imprese, per la nostra economia ma anche per la nostra SALUTE.\nUn esempio? Negli Stati Uniti ci sono 82 PESTICIDI VIETATI per legge in\u2026 Altro Italia: per colpa dei VENDUTI e dei SERVI delle MULTINAZIONALI porteranno sulle tavole degli italiani alimenti trattati con questo SCHIFO!!!", "shared_text": "", "time": "2016-05-19 13:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153781651403155&id=252306033154", "link": null} +{"post_id": "10153781628353155", "text": "Ieri a Umbertide, Perugia. Per quanto mi riguarda, nemmeno MEZZO METRO a \"centri culturali\" islamici (leggi: moschee) di cui non si conoscono i finanziatori e che non riconoscono le nostre libert\u00e0, i nostri diritti e i nostri valori.", "post_text": "Ieri a Umbertide, Perugia. Per quanto mi riguarda, nemmeno MEZZO METRO a \"centri culturali\" islamici (leggi: moschee) di cui non si conoscono i finanziatori e che non riconoscono le nostre libert\u00e0, i nostri diritti e i nostri valori.", "shared_text": "", "time": "2016-05-19 12:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153781628353155&id=252306033154", "link": null} +{"post_id": "10153781644138155", "text": "In diretta dalla Versilia!", "post_text": "In diretta dalla Versilia!", "shared_text": "", "time": "2016-05-19 12:26:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153781644138155&id=252306033154", "link": null} +{"post_id": "10153779661608155", "text": "Picchiata nel suo locale da sette rapinatori a volto coperto e armati di piccone (ci sono anche le immagini). Il marito non ha fatto in tempo ad arrivare con la pistola. Avesse per caso sparato per difendere la\u2026 Altro moglie, uccidendo un ladro, oggi magari sarebbe in carcere... Non mi stancher\u00f2 mai di ricordarlo: la DIFESA \u00e8 SEMPRE LEGITTIMA!", "post_text": "Picchiata nel suo locale da sette rapinatori a volto coperto e armati di piccone (ci sono anche le immagini). Il marito non ha fatto in tempo ad arrivare con la pistola. Avesse per caso sparato per difendere la\u2026 Altro moglie, uccidendo un ladro, oggi magari sarebbe in carcere... Non mi stancher\u00f2 mai di ricordarlo: la DIFESA \u00e8 SEMPRE LEGITTIMA!", "shared_text": "", "time": "2016-05-19 10:54:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153779661608155&id=252306033154", "link": null} +{"post_id": "10153780096398155", "text": "In diretta dalla PIAZZA STRAPIENA di Citt\u00e0 di Castello, in Umbria, governata dalla sinistra da settant'anni. Li mandiamo a casa???", "post_text": "In diretta dalla PIAZZA STRAPIENA di Citt\u00e0 di Castello, in Umbria, governata dalla sinistra da settant'anni. Li mandiamo a casa???", "shared_text": "", "time": "2016-05-18 18:50:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153780096398155&id=252306033154", "link": null} +{"post_id": "10153779737873155", "text": "Ladruncole Rom (cominciano a NOVE ANNI!) ancora in azione alla stazione Termini di Roma... ma un tribunale per i minorenni che interviene non c'\u00e8, \u00e8 troppo chiederlo???\nP.s. Attenti per\u00f2, dal portafogli rubato prendono \"solo i soldi\"; poi lo buttano per terra... bont\u00e0 loro.", "post_text": "Ladruncole Rom (cominciano a NOVE ANNI!) ancora in azione alla stazione Termini di Roma... ma un tribunale per i minorenni che interviene non c'\u00e8, \u00e8 troppo chiederlo???\nP.s. Attenti per\u00f2, dal portafogli rubato prendono \"solo i soldi\"; poi lo buttano per terra... bont\u00e0 loro.", "shared_text": "", "time": "2016-05-18 15:10:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153779737873155&id=252306033154", "link": null} +{"post_id": "10153779642608155", "text": "In diretta con Giorgia Meloni, sindaco di Roma", "post_text": "In diretta con Giorgia Meloni, sindaco di Roma", "shared_text": "", "time": "2016-05-18 14:02:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153779642608155&id=252306033154", "link": null} +{"post_id": "10153779470718155", "text": "In diretta da un campo Rom di Roma!", "post_text": "In diretta da un campo Rom di Roma!", "shared_text": "", "time": "2016-05-18 12:40:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153779470718155&id=252306033154", "link": null} +{"post_id": "10153779320028155", "text": "Fedez mi dedica un dito medio e un verso della sua nuova canzone, spot per l'estate del cornetto Algida (marchio della multinazionale Unilever).\nBella!\nIo quest'estate manger\u00f2 solo cornetti Sammontana, Sanson e di altri produttori ITALIANI!", "post_text": "Fedez mi dedica un dito medio e un verso della sua nuova canzone, spot per l'estate del cornetto Algida (marchio della multinazionale Unilever).\nBella!\nIo quest'estate manger\u00f2 solo cornetti Sammontana, Sanson e di altri produttori ITALIANI!", "shared_text": "", "time": "2016-05-18 11:17:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153779320028155&id=252306033154", "link": null} +{"post_id": "10153777507383155", "text": "Come in tanti Paesi civili, per gli stupratori serve un'unica soluzione: castrazione chimica! ZAC, e non lo fanno pi\u00f9!", "post_text": "Come in tanti Paesi civili, per gli stupratori serve un'unica soluzione: castrazione chimica! ZAC, e non lo fanno pi\u00f9!", "shared_text": "", "time": "2016-05-17 14:17:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153777507383155&id=252306033154", "link": null} +{"post_id": "10153777153538155", "text": "Rieccomi", "post_text": "Rieccomi", "shared_text": "", "time": "2016-05-17 10:01:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153777153538155&id=252306033154", "link": null} +{"post_id": "10153777132148155", "text": "A pochi metri dai monumenti pi\u00f9 belli di Roma, vi porto nella ex fabbrica occupata da ANNI da centinaia di rom: degrado, topi, spazzatura, centinaia di bambini che non so come possano crescere in questo schifo... #ripuliamoroma", "post_text": "A pochi metri dai monumenti pi\u00f9 belli di Roma, vi porto nella ex fabbrica occupata da ANNI da centinaia di rom: degrado, topi, spazzatura, centinaia di bambini che non so come possano crescere in questo schifo... #ripuliamoroma", "shared_text": "", "time": "2016-05-17 09:35:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153777132148155&id=252306033154", "link": null} +{"post_id": "10153777114573155", "text": "In diretta da Roma, palazzo occupato da centinaia di persone, incredibile...", "post_text": "In diretta da Roma, palazzo occupato da centinaia di persone, incredibile...", "shared_text": "", "time": "2016-05-17 09:19:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153777114573155&id=252306033154", "link": null} +{"post_id": "10153775292688155", "text": "Non so voi, ma quando vado in giro nessuno mi chiede di riforma del Senato o adozioni gay... Tra le tante proposte concrete della Lega, una che realizzerei SUBITO se fossi al posto di quel \"bufalaro\" di Renzi: copiare la Francia e rendere GRATUITI gli ASILI NIDO per tutti i bimbi fino a tre anni. Senza figli, nessun futuro!", "post_text": "Non so voi, ma quando vado in giro nessuno mi chiede di riforma del Senato o adozioni gay... Tra le tante proposte concrete della Lega, una che realizzerei SUBITO se fossi al posto di quel \"bufalaro\" di Renzi: copiare la Francia e rendere GRATUITI gli ASILI NIDO per tutti i bimbi fino a tre anni. Senza figli, nessun futuro!", "shared_text": "", "time": "2016-05-16 13:15:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153775292688155&id=252306033154", "link": null} +{"post_id": "10153775153333155", "text": "Provate a chiedere in giro: dopo due anni e mezzo di Renzi, state meglio o state peggio? Un governo va valutato su questo, non su una \"riforma\" (leggi: SCHIFEZZA) della costituzione che toglie ulteriore libert\u00e0\u2026 Altro di scelta ai cittadini. Non serve il \"partito dei giudici\" per mandare a casa Renzino, bastano gli italiani! Ci state? #liberi!", "post_text": "Provate a chiedere in giro: dopo due anni e mezzo di Renzi, state meglio o state peggio? Un governo va valutato su questo, non su una \"riforma\" (leggi: SCHIFEZZA) della costituzione che toglie ulteriore libert\u00e0\u2026 Altro di scelta ai cittadini. Non serve il \"partito dei giudici\" per mandare a casa Renzino, bastano gli italiani! Ci state? #liberi!", "shared_text": "", "time": "2016-05-16 10:41:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153775153333155&id=252306033154", "link": null} +{"post_id": "10153773316908155", "text": "Qualche minuto insieme a voi, prima della diretta su Rai Tre.", "post_text": "Qualche minuto insieme a voi, prima della diretta su Rai Tre.", "shared_text": "", "time": "2016-05-15 13:56:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153773316908155&id=252306033154", "link": null} +{"post_id": "10153721663448155", "text": "Campi e occupazioni rom abusive nelle nostre citt\u00e0: \"O ti organizzi e ti paghi la casa, oppure vattene in giro per il mondo!\". Vi sembra una posizione cos\u00ec ESTREMISTA???", "post_text": "Campi e occupazioni rom abusive nelle nostre citt\u00e0: \"O ti organizzi e ti paghi la casa, oppure vattene in giro per il mondo!\". Vi sembra una posizione cos\u00ec ESTREMISTA???", "shared_text": "", "time": "2016-05-15 11:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153721663448155&id=252306033154", "link": null} +{"post_id": "10153771689963155", "text": "Beccatevi questo \"terapista familiare\", trasmesso da una tv saudita, che fa lezione su COME E QUANDO PICCHIARE UNA MOGLIE, con dotta dissertazione sul tipo di bastone da usare. Si lamenta, il \"professore\", del\u2026 Altro fatto che molte donne aspirino a \"un rapporto di uguaglianza\" col marito, atteggiamento ovviamente da punire...\nNESSUNA INTEGRAZIONE possibile con un Islam che tollera, e magari (sotto sotto) giustifica, questi personaggi DA MANICOMIO! O no???\n[Qui il video tradotto: http://video.corriere.it/terapista-familiare-saudita-ecco-quando-come-si-picchia-moglie/570f6140-1901-11e6-a60e-5fac25fd8ba7]", "post_text": "Beccatevi questo \"terapista familiare\", trasmesso da una tv saudita, che fa lezione su COME E QUANDO PICCHIARE UNA MOGLIE, con dotta dissertazione sul tipo di bastone da usare. Si lamenta, il \"professore\", del\u2026 Altro fatto che molte donne aspirino a \"un rapporto di uguaglianza\" col marito, atteggiamento ovviamente da punire...\nNESSUNA INTEGRAZIONE possibile con un Islam che tollera, e magari (sotto sotto) giustifica, questi personaggi DA MANICOMIO! O no???\n[Qui il video tradotto: http://video.corriere.it/terapista-familiare-saudita-ecco-quando-come-si-picchia-moglie/570f6140-1901-11e6-a60e-5fac25fd8ba7]", "shared_text": "", "time": "2016-05-15 08:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153771689963155&id=252306033154", "link": "http://video.corriere.it/terapista-familiare-saudita-ecco-quando-come-si-picchia-moglie/570f6140-1901-11e6-a60e-5fac25fd8ba7?fbclid=IwAR1chHMVNZZy5EtHlxzgXUXMpqofGiAqzpIrWi1Ld_g0X1fv-ChK6I5mFdI"} +{"post_id": "10153771898693155", "text": "In diretta da una bellissima piazza piena di Savona! Sullo sfondo le grida dei kompagni che urlano... Bacioni!", "post_text": "In diretta da una bellissima piazza piena di Savona! Sullo sfondo le grida dei kompagni che urlano... Bacioni!", "shared_text": "", "time": "2016-05-14 21:28:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153771898693155&id=252306033154", "link": null} +{"post_id": "10153771595853155", "text": "Qualche giornale ha parlato di CONTESTATORI oggi al Salone del Libro... S\u00ec... DUE DI NUMERO, questi qui! Potete guardarli anche in faccia nel video, gli mandiamo un BACIONE!\nP.s.: Saluto invece tutti i\u2026 Altro ragazzi, anche giovanissimi, che sono venuti a trovarmi a Torino per \"Secondo Matteo\": le BUONE IDEE sono pi\u00f9 forti di qualche intollerante zecca rossa, figlia di pap\u00e0. AVANTI TUTTA!", "post_text": "Qualche giornale ha parlato di CONTESTATORI oggi al Salone del Libro... S\u00ec... DUE DI NUMERO, questi qui! Potete guardarli anche in faccia nel video, gli mandiamo un BACIONE!\nP.s.: Saluto invece tutti i\u2026 Altro ragazzi, anche giovanissimi, che sono venuti a trovarmi a Torino per \"Secondo Matteo\": le BUONE IDEE sono pi\u00f9 forti di qualche intollerante zecca rossa, figlia di pap\u00e0. AVANTI TUTTA!", "shared_text": "", "time": "2016-05-14 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153771595853155&id=252306033154", "link": null} +{"post_id": "10153771425588155", "text": "Adesso ci sono, connessione permettendo, per parlare con voi!", "post_text": "Adesso ci sono, connessione permettendo, per parlare con voi!", "shared_text": "", "time": "2016-05-14 15:55:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153771425588155&id=252306033154", "link": null} +{"post_id": "10153771307588155", "text": "Rieccomi!", "post_text": "Rieccomi!", "shared_text": "", "time": "2016-05-14 14:52:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153771307588155&id=252306033154", "link": null} +{"post_id": "10153771291293155", "text": "In diretta in mezzo a tantissimi ragazzi al Salone del Libro di Torino!", "post_text": "In diretta in mezzo a tantissimi ragazzi al Salone del Libro di Torino!", "shared_text": "", "time": "2016-05-14 14:49:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153771291293155&id=252306033154", "link": null} +{"post_id": "10153769129353155", "text": "VIDEO PAZZESCO.\nUn plauso ai Carabinieri di Catania che, aggrediti dagli \"amici\" dell'uomo che stavano arrestando, hanno mantenuto il sangue freddo, evitando il peggio. SEMPRE dalla parte delle Forze dell'Ordine, VERGOGNA RENZI che taglia i fondi per il loro lavoro e per la nostra sicurezza.", "post_text": "VIDEO PAZZESCO.\nUn plauso ai Carabinieri di Catania che, aggrediti dagli \"amici\" dell'uomo che stavano arrestando, hanno mantenuto il sangue freddo, evitando il peggio. SEMPRE dalla parte delle Forze dell'Ordine, VERGOGNA RENZI che taglia i fondi per il loro lavoro e per la nostra sicurezza.", "shared_text": "", "time": "2016-05-13 13:55:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153769129353155&id=252306033154", "link": null} +{"post_id": "10153768933548155", "text": "In diretta da Roma, un intero palazzo occupato da Rom e immigrati, parabole ovunque, incredibile!", "post_text": "In diretta da Roma, un intero palazzo occupato da Rom e immigrati, parabole ovunque, incredibile!", "shared_text": "", "time": "2016-05-13 12:11:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153768933548155&id=252306033154", "link": null} +{"post_id": "10153767674843155", "text": "Ci sono ancoraaa!", "post_text": "Ci sono ancoraaa!", "shared_text": "", "time": "2016-05-12 19:27:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153767674843155&id=252306033154", "link": null} +{"post_id": "10153767657653155", "text": "Qualche minuto per rispondere alle vostre domande", "post_text": "Qualche minuto per rispondere alle vostre domande", "shared_text": "", "time": "2016-05-12 19:21:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153767657653155&id=252306033154", "link": null} +{"post_id": "10153766889268155", "text": "In diretta dal Centro per Immigrati di Bari!\nSu 1.200 ospiti, i numeri dicono che solo il 15% otterr\u00e0 l'asilo politico!\nE gli altri??? Ancora qui in giro, da clandestini...", "post_text": "In diretta dal Centro per Immigrati di Bari!\nSu 1.200 ospiti, i numeri dicono che solo il 15% otterr\u00e0 l'asilo politico!\nE gli altri??? Ancora qui in giro, da clandestini...", "shared_text": "", "time": "2016-05-12 09:43:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153766889268155&id=252306033154", "link": null} +{"post_id": "10153765784203155", "text": "Qualche minuto per parlare con voi", "post_text": "Qualche minuto per parlare con voi", "shared_text": "", "time": "2016-05-11 20:31:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153765784203155&id=252306033154", "link": null} +{"post_id": "10153751650133155", "text": "Tutti gli Stati CONTROLLANO, VERIFICANO, ESPELLONO. In Italia entra chiunque e solo tre su cento scappano dalla guerra...\nUn'unica soluzione, per i CLANDESTINI e per il GOVERNO: mandarli TUTTI A CASA!", "post_text": "Tutti gli Stati CONTROLLANO, VERIFICANO, ESPELLONO. In Italia entra chiunque e solo tre su cento scappano dalla guerra...\nUn'unica soluzione, per i CLANDESTINI e per il GOVERNO: mandarli TUTTI A CASA!", "shared_text": "", "time": "2016-05-06 13:24:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153751650133155&id=252306033154", "link": null} +{"post_id": "10153750052688155", "text": "A Roma, quartiere Montagnola, i soliti violenti dei centri a-sociali bloccano il mercato e lanciano oggetti per impedirmi di incontrare i cittadini. Non mi fate paura, mi fate pena!", "post_text": "A Roma, quartiere Montagnola, i soliti violenti dei centri a-sociali bloccano il mercato e lanciano oggetti per impedirmi di incontrare i cittadini. Non mi fate paura, mi fate pena!", "shared_text": "", "time": "2016-05-04 09:54:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153750052688155&id=252306033154", "link": null} +{"post_id": "10153746890068155", "text": "L'accoglienza riservata oggi a Renzino a Matera. Naturalmente non aspettatevi di vederlo nei TG...", "post_text": "L'accoglienza riservata oggi a Renzino a Matera. Naturalmente non aspettatevi di vederlo nei TG...", "shared_text": "", "time": "2016-05-02 20:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153746890068155&id=252306033154", "link": null} +{"post_id": "10153741994493155", "text": "", "post_text": "", "shared_text": "", "time": "2016-04-30 16:02:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153741994493155&id=252306033154", "link": null} +{"post_id": "10153741981623155", "text": "In diretta da una bellissima piazza di Milano, per la Lega e per Parisi sindaco!", "post_text": "In diretta da una bellissima piazza di Milano, per la Lega e per Parisi sindaco!", "shared_text": "", "time": "2016-04-30 15:55:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153741981623155&id=252306033154", "link": null} +{"post_id": "10153739217913155", "text": "Domande e risposte, qualche minuto insieme a voi! Mentre Silvio si gode l'abbraccio di Fini e Casini...", "post_text": "Domande e risposte, qualche minuto insieme a voi! Mentre Silvio si gode l'abbraccio di Fini e Casini...", "shared_text": "", "time": "2016-04-29 10:55:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153739217913155&id=252306033154", "link": null} +{"post_id": "10153735128633155", "text": "Ieri sera la \"signora\" FORNERO diceva che Salvini \u00e8 \"espressione di cattiva politica\" e \"istiga all'odio\".\nTACI VIGLIACCA, che \u00e8 meglio.\nP.s. E gufava su Trump, sperando che la mia visita gli portasse sfortuna.\nStanotte Trump ha TRIONFATO nelle primarie di tutti e cinque gli Stati in palio...", "post_text": "Ieri sera la \"signora\" FORNERO diceva che Salvini \u00e8 \"espressione di cattiva politica\" e \"istiga all'odio\".\nTACI VIGLIACCA, che \u00e8 meglio.\nP.s. E gufava su Trump, sperando che la mia visita gli portasse sfortuna.\nStanotte Trump ha TRIONFATO nelle primarie di tutti e cinque gli Stati in palio...", "shared_text": "", "time": "2016-04-27 12:20:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153735128633155&id=252306033154", "link": null} +{"post_id": "10153733448883155", "text": "In diretta da Philadelphia!", "post_text": "In diretta da Philadelphia!", "shared_text": "", "time": "2016-04-26 16:56:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153733448883155&id=252306033154", "link": null} +{"post_id": "10153728729088155", "text": "Buona domenica Amici, qualche minuto in vostra compagnia.", "post_text": "Buona domenica Amici, qualche minuto in vostra compagnia.", "shared_text": "", "time": "2016-04-24 14:01:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153728729088155&id=252306033154", "link": null} +{"post_id": "10153727143908155", "text": "In diretta da una piazza di Varese bella e piena!", "post_text": "In diretta da una piazza di Varese bella e piena!", "shared_text": "", "time": "2016-04-23 17:52:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153727143908155&id=252306033154", "link": null} +{"post_id": "10153725272293155", "text": "Una zingara mostra le chiappe al semaforo... Ruspa!!!\nQuando avr\u00f2 il potere di farlo, queste schifezze magicamente spariranno!", "post_text": "Una zingara mostra le chiappe al semaforo... Ruspa!!!\nQuando avr\u00f2 il potere di farlo, queste schifezze magicamente spariranno!", "shared_text": "", "time": "2016-04-22 19:06:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153725272293155&id=252306033154", "link": null} +{"post_id": "10153723310523155", "text": "Ma questa linea torna o no??? Colpa di Renzi...", "post_text": "Ma questa linea torna o no??? Colpa di Renzi...", "shared_text": "", "time": "2016-04-21 19:24:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153723310523155&id=252306033154", "link": null} +{"post_id": "10153723253658155", "text": "Ancora in diretta da Roma!\nCon Lega-Noi con Salvini per ripulire la citt\u00e0.", "post_text": "Ancora in diretta da Roma!\nCon Lega-Noi con Salvini per ripulire la citt\u00e0.", "shared_text": "", "time": "2016-04-21 19:07:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153723253658155&id=252306033154", "link": null} +{"post_id": "10153723198718155", "text": "In diretta da Roma!", "post_text": "In diretta da Roma!", "shared_text": "", "time": "2016-04-21 18:33:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153723198718155&id=252306033154", "link": null} +{"post_id": "10153721684748155", "text": "DOMANDA del giornalista: \u201cCome vi mantenete, ad esempio le parabole, se non avete lavoro?\u201d. RISPOSTA del signor ROM: \u201cUn po\u2019 di delinquenza e ci si arrangia anche onestamente\u2026\u201d\nCapito??? Si delinque ma con \u201cmoderazione\u201d\u2026\nRUSPAAA!!!", "post_text": "DOMANDA del giornalista: \u201cCome vi mantenete, ad esempio le parabole, se non avete lavoro?\u201d. RISPOSTA del signor ROM: \u201cUn po\u2019 di delinquenza e ci si arrangia anche onestamente\u2026\u201d\nCapito??? Si delinque ma con \u201cmoderazione\u201d\u2026\nRUSPAAA!!!", "shared_text": "", "time": "2016-04-21 10:05:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153721684748155&id=252306033154", "link": null} +{"post_id": "10153721214958155", "text": "In diretta dalla piazza piena di Grosseto!", "post_text": "In diretta dalla piazza piena di Grosseto!", "shared_text": "", "time": "2016-04-20 18:34:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153721214958155&id=252306033154", "link": null} +{"post_id": "10153720573228155", "text": "In diretta dalla Stazione Tiburtina di Roma: occupazioni abusive, criminalit\u00e0 e illegalit\u00e0 intorno al business dei clandestini. I cittadini non ne possono pi\u00f9. Ascoltate anche voi.", "post_text": "In diretta dalla Stazione Tiburtina di Roma: occupazioni abusive, criminalit\u00e0 e illegalit\u00e0 intorno al business dei clandestini. I cittadini non ne possono pi\u00f9. Ascoltate anche voi.", "shared_text": "", "time": "2016-04-20 12:02:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153720573228155&id=252306033154", "link": null} +{"post_id": "10153720507633155", "text": "", "post_text": "", "shared_text": "", "time": "2016-04-20 11:07:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153720507633155&id=252306033154", "link": null} +{"post_id": "10153720483248155", "text": "In diretta dal mercato di via Doria a Roma", "post_text": "In diretta dal mercato di via Doria a Roma", "shared_text": "", "time": "2016-04-20 10:53:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153720483248155&id=252306033154", "link": null} +{"post_id": "10153718801238155", "text": "\"Siamo OBBLIGATI ad andare a RUBARE!\". Io il signor ROM che mi risponde cos\u00ec lo manderei subito in GALERA! RUSPAAAA!", "post_text": "\"Siamo OBBLIGATI ad andare a RUBARE!\". Io il signor ROM che mi risponde cos\u00ec lo manderei subito in GALERA! RUSPAAAA!", "shared_text": "", "time": "2016-04-19 22:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153718801238155&id=252306033154", "link": null} +{"post_id": "10153718917538155", "text": "10 minuti insieme a voi!", "post_text": "10 minuti insieme a voi!", "shared_text": "", "time": "2016-04-19 17:48:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153718917538155&id=252306033154", "link": null} +{"post_id": "10153718396123155", "text": "Tanta bella gente incontrata stamane al mercato di Latina! Se voi ci siete, io ci sono: RIPULIAMO le nostre citt\u00e0!", "post_text": "Tanta bella gente incontrata stamane al mercato di Latina! Se voi ci siete, io ci sono: RIPULIAMO le nostre citt\u00e0!", "shared_text": "", "time": "2016-04-19 13:11:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153718396123155&id=252306033154", "link": null} +{"post_id": "10153717381968155", "text": "Campi rom, covi di illegalit\u00e0? Dipendesse da me, li RADEREI AL SUOLO domani mattina!", "post_text": "Campi rom, covi di illegalit\u00e0? Dipendesse da me, li RADEREI AL SUOLO domani mattina!", "shared_text": "", "time": "2016-04-19 10:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153717381968155&id=252306033154", "link": null} +{"post_id": "10153717040333155", "text": "In diretta da Latina, piazza pienaaaaa!", "post_text": "In diretta da Latina, piazza pienaaaaa!", "shared_text": "", "time": "2016-04-18 20:16:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153717040333155&id=252306033154", "link": null} +{"post_id": "10153707063238155", "text": "Ma questo qui convertito all'Islam l'avevate visto? Dice che le vittime dei terroristi islamici \"se la sono cercata\"...!\nPERICOLOSO!", "post_text": "Ma questo qui convertito all'Islam l'avevate visto? Dice che le vittime dei terroristi islamici \"se la sono cercata\"...!\nPERICOLOSO!", "shared_text": "", "time": "2016-04-18 14:22:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153707063238155&id=252306033154", "link": null} +{"post_id": "10153712961668155", "text": "Rieccomi...", "post_text": "Rieccomi...", "shared_text": "", "time": "2016-04-16 19:31:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153712961668155&id=252306033154", "link": null} +{"post_id": "10153712943658155", "text": "10 minuti per parlare con voi del viaggio del Papa, del referendum e di tasse", "post_text": "10 minuti per parlare con voi del viaggio del Papa, del referendum e di tasse", "shared_text": "", "time": "2016-04-16 19:22:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153712943658155&id=252306033154", "link": null} +{"post_id": "10153694562188155", "text": "E BASTA con i PRONTO SOCCORSO italiani diventati ACCAMPAMENTI di CLANDESTINI e furbetti in cerca di cure GRATIS mentre chi ha veramente bisogno deve aspettare delle ore!", "post_text": "E BASTA con i PRONTO SOCCORSO italiani diventati ACCAMPAMENTI di CLANDESTINI e furbetti in cerca di cure GRATIS mentre chi ha veramente bisogno deve aspettare delle ore!", "shared_text": "", "time": "2016-04-16 12:44:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153694562188155&id=252306033154", "link": null} +{"post_id": "10153711112938155", "text": "10 minuti per dialogare con voi!", "post_text": "10 minuti per dialogare con voi!", "shared_text": "", "time": "2016-04-15 21:17:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153711112938155&id=252306033154", "link": null} +{"post_id": "10153710306263155", "text": "Costa tanto a Renzi fare una telefonata al premier australiano?", "post_text": "Costa tanto a Renzi fare una telefonata al premier australiano?", "shared_text": "", "time": "2016-04-15 14:22:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153710306263155&id=252306033154", "link": null} +{"post_id": "10153708865628155", "text": "Due parole insieme a voi per commentare fatti e misfatti del giorno.", "post_text": "Due parole insieme a voi per commentare fatti e misfatti del giorno.", "shared_text": "", "time": "2016-04-14 17:53:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153708865628155&id=252306033154", "link": null} +{"post_id": "10153706754448155", "text": "Grazie a Ivan per il coraggio, sei un esempio per tutti noi!", "post_text": "Grazie a Ivan per il coraggio, sei un esempio per tutti noi!", "shared_text": "", "time": "2016-04-13 17:03:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153706754448155&id=252306033154", "link": null} +{"post_id": "10153702340543155", "text": "Ecco come \u00e8 stato accolto Renzi al Vinitaly, ma le televisioni non lo faranno vedere.", "post_text": "Ecco come \u00e8 stato accolto Renzi al Vinitaly, ma le televisioni non lo faranno vedere.", "shared_text": "", "time": "2016-04-11 19:25:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153702340543155&id=252306033154", "link": null} +{"post_id": "10153702203068155", "text": "I politici devono SMETTERE di SVENDERE l'Italia, proteggendo i suoi confini, sia dai clandestini che dalle merci che arrivano senza controlli dal resto del mondo.", "post_text": "I politici devono SMETTERE di SVENDERE l'Italia, proteggendo i suoi confini, sia dai clandestini che dalle merci che arrivano senza controlli dal resto del mondo.", "shared_text": "", "time": "2016-04-11 17:48:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153702203068155&id=252306033154", "link": null} +{"post_id": "10153701500588155", "text": "Se devo essere processato perch\u00e9 difendo gli interessi degli italiani, allora processatemi domani mattina!", "post_text": "Se devo essere processato perch\u00e9 difendo gli interessi degli italiani, allora processatemi domani mattina!", "shared_text": "", "time": "2016-04-11 12:55:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153701500588155&id=252306033154", "link": null} +{"post_id": "10153699766318155", "text": "Io non voglio attaccare Mattarella, voglio difendere il principio che le frontiere e i confini esistono e, per l'ingresso di uomini e merci, nell'interesse degli italiani vanno controllate. Punto.", "post_text": "Io non voglio attaccare Mattarella, voglio difendere il principio che le frontiere e i confini esistono e, per l'ingresso di uomini e merci, nell'interesse degli italiani vanno controllate. Punto.", "shared_text": "", "time": "2016-04-10 17:45:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153699766318155&id=252306033154", "link": null} +{"post_id": "10153699502588155", "text": "Al referendum sulle trivellazioni, e per la difesa del territorio, io domenica voto SI.\nGuardate i danni fatti qui nelle Marche!", "post_text": "Al referendum sulle trivellazioni, e per la difesa del territorio, io domenica voto SI.\nGuardate i danni fatti qui nelle Marche!", "shared_text": "", "time": "2016-04-10 15:20:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153699502588155&id=252306033154", "link": null} +{"post_id": "10153698123193155", "text": "In diretta... Romagna Mia!", "post_text": "In diretta... Romagna Mia!", "shared_text": "", "time": "2016-04-09 23:32:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153698123193155&id=252306033154", "link": null} +{"post_id": "10153697543848155", "text": "In diretta da Cesenatico!", "post_text": "In diretta da Cesenatico!", "shared_text": "", "time": "2016-04-09 18:39:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153697543848155&id=252306033154", "link": null} +{"post_id": "10153692743563155", "text": "Non scappano da nessuna guerra (come la stragrande maggioranza di chi sbarca in Italia) ma PRETENDONO, PROTESTANO e BLOCCANO le nostre citt\u00e0.\nSe fossi io al governo, ESPULSIONI SUBITO, gli italiani sono STUFI di farsi prendere per il c.!", "post_text": "Non scappano da nessuna guerra (come la stragrande maggioranza di chi sbarca in Italia) ma PRETENDONO, PROTESTANO e BLOCCANO le nostre citt\u00e0.\nSe fossi io al governo, ESPULSIONI SUBITO, gli italiani sono STUFI di farsi prendere per il c.!", "shared_text": "", "time": "2016-04-08 10:09:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153692743563155&id=252306033154", "link": null} +{"post_id": "10153692682858155", "text": "E voi gliela stringereste la mano a Renzino???", "post_text": "E voi gliela stringereste la mano a Renzino???", "shared_text": "", "time": "2016-04-07 17:55:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153692682858155&id=252306033154", "link": null} +{"post_id": "10153686666043155", "text": "Forse non \u00e8 un problema del signor FRIEDMAN, ma oggi ci sono MILIONI di italiani che non hanno n\u00e9 lavoro, n\u00e9 pensione!\nTroppo volgare? Io lo ripeto: la legge Fornero \u00e8 una legge del CAZZO!", "post_text": "Forse non \u00e8 un problema del signor FRIEDMAN, ma oggi ci sono MILIONI di italiani che non hanno n\u00e9 lavoro, n\u00e9 pensione!\nTroppo volgare? Io lo ripeto: la legge Fornero \u00e8 una legge del CAZZO!", "shared_text": "", "time": "2016-04-07 14:32:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153686666043155&id=252306033154", "link": null} +{"post_id": "10153690457383155", "text": "In diretta da Finale Emilia (Modena) per ricostruire dopo il terremoto e il nulla del PD.", "post_text": "In diretta da Finale Emilia (Modena) per ricostruire dopo il terremoto e il nulla del PD.", "shared_text": "", "time": "2016-04-06 17:16:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153690457383155&id=252306033154", "link": null} +{"post_id": "10153690214238155", "text": "Centro immigrati di Bologna...", "post_text": "Centro immigrati di Bologna...", "shared_text": "", "time": "2016-04-06 14:40:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153690214238155&id=252306033154", "link": null} +{"post_id": "10153690009843155", "text": "Bologna, Fiera Internazionale del Libro per Ragazzi.\nUno spettacolo, 2.000 espositori e illustratori da 70 Paesi del mondo.\nAprire le menti, liberare la fantasia!", "post_text": "Bologna, Fiera Internazionale del Libro per Ragazzi.\nUno spettacolo, 2.000 espositori e illustratori da 70 Paesi del mondo.\nAprire le menti, liberare la fantasia!", "shared_text": "", "time": "2016-04-06 12:39:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153690009843155&id=252306033154", "link": null} +{"post_id": "10153689906873155", "text": "A chi vanno le case popolari a Bologna???\nIn graduatoria anche cittadini... dell'UNIONE SOVIETICA...!", "post_text": "A chi vanno le case popolari a Bologna???\nIn graduatoria anche cittadini... dell'UNIONE SOVIETICA...!", "shared_text": "", "time": "2016-04-06 11:26:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153689906873155&id=252306033154", "link": null} +{"post_id": "10153687926728155", "text": "Roberto, invalido civile di Genova, da trenta giorni non pu\u00f2 pi\u00f9 rientrare nel suo appartamento perch\u00e9 OCCUPATO ABUSIVAMENTE da una famiglia di IMMIGRATI...\nAnche per lui sono gi\u00e0 pronte le ACCUSE DI RAZZISMO???", "post_text": "Roberto, invalido civile di Genova, da trenta giorni non pu\u00f2 pi\u00f9 rientrare nel suo appartamento perch\u00e9 OCCUPATO ABUSIVAMENTE da una famiglia di IMMIGRATI...\nAnche per lui sono gi\u00e0 pronte le ACCUSE DI RAZZISMO???", "shared_text": "", "time": "2016-04-05 17:54:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153687926728155&id=252306033154", "link": null} +{"post_id": "10153687768348155", "text": "Eccoli gli abusivi...", "post_text": "Eccoli gli abusivi...", "shared_text": "", "time": "2016-04-05 12:32:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153687768348155&id=252306033154", "link": null} +{"post_id": "10153686643383155", "text": "Buongiorno \"istigatori alla violenza\"... Se questa \u00e8 una professoressa... Roba da matti!!!", "post_text": "Buongiorno \"istigatori alla violenza\"... Se questa \u00e8 una professoressa... Roba da matti!!!", "shared_text": "", "time": "2016-04-05 09:58:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153686643383155&id=252306033154", "link": null} +{"post_id": "10153685955498155", "text": "Prima diretta autoprodotta... Ma devo proprio rispondere a Renzi!", "post_text": "Prima diretta autoprodotta... Ma devo proprio rispondere a Renzi!", "shared_text": "", "time": "2016-04-04 18:42:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153685955498155&id=252306033154", "link": null} +{"post_id": "10153685452928155", "text": "Si lamentano, sempre \"riso e maccheroni, riso e maccheroni\"...\nQuesti pensano di essere al ristorante... RUSPA!", "post_text": "Si lamentano, sempre \"riso e maccheroni, riso e maccheroni\"...\nQuesti pensano di essere al ristorante... RUSPA!", "shared_text": "", "time": "2016-04-04 17:03:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153685452928155&id=252306033154", "link": null} +{"post_id": "10153674652098155", "text": "Roma Est, in quest'area della citt\u00e0 sono stati arrestati a marzo tre fiancheggiatori dell'ISIS, qui ci sono 100 MOSCHEE in garage, scantinati, negozi dismessi, spesso mascherate da \"associazioni culturali\". E\u2026 Altro quando si chiede di TERRORISMO ISLAMICO, tutti zitti...\nBella l'INTEGRAZIONE dei Renzi e delle Boldrini!!! Sono queste le citt\u00e0 che vogliamo lasciare ai nostri figli???", "post_text": "Roma Est, in quest'area della citt\u00e0 sono stati arrestati a marzo tre fiancheggiatori dell'ISIS, qui ci sono 100 MOSCHEE in garage, scantinati, negozi dismessi, spesso mascherate da \"associazioni culturali\". E\u2026 Altro quando si chiede di TERRORISMO ISLAMICO, tutti zitti...\nBella l'INTEGRAZIONE dei Renzi e delle Boldrini!!! Sono queste le citt\u00e0 che vogliamo lasciare ai nostri figli???", "shared_text": "", "time": "2016-04-04 10:52:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153674652098155&id=252306033154", "link": null} +{"post_id": "10153678501903155", "text": "Tutte le volte che vado all'estero per incontrare dei governi seri che sanno gestire l'IMMIGRAZIONE e la SICUREZZA, mi chiedono: \"Ma in Italia non vi rendete conto di quanti FANATICI e potenziali TERRORISTI\u2026 Altro state facendo entrare?\".\nNoi e la maggioranza degli italiani s\u00ec... ma andatelo a dire a quegli INCAPACI di Renzi e Alfano!!!", "post_text": "Tutte le volte che vado all'estero per incontrare dei governi seri che sanno gestire l'IMMIGRAZIONE e la SICUREZZA, mi chiedono: \"Ma in Italia non vi rendete conto di quanti FANATICI e potenziali TERRORISTI\u2026 Altro state facendo entrare?\".\nNoi e la maggioranza degli italiani s\u00ec... ma andatelo a dire a quegli INCAPACI di Renzi e Alfano!!!", "shared_text": "", "time": "2016-04-03 17:01:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153678501903155&id=252306033154", "link": null} +{"post_id": "10153678484828155", "text": "A Trento cinquanta IMMIGRATI hanno bloccato una strada del centro per protesta, vogliono SOLDI e DOCUMENTI. Sono ospiti, a spese degli italiani, e rompono pure le palle...\nVIA sul primo aereo, e TUTTI A CASA LORO!", "post_text": "A Trento cinquanta IMMIGRATI hanno bloccato una strada del centro per protesta, vogliono SOLDI e DOCUMENTI. Sono ospiti, a spese degli italiani, e rompono pure le palle...\nVIA sul primo aereo, e TUTTI A CASA LORO!", "shared_text": "", "time": "2016-04-03 10:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153678484828155&id=252306033154", "link": null} +{"post_id": "10153670703003155", "text": "Per l'amico di Renzi e Alfano, io sono come i brigatisti e il pubblico dello studio di \"Ballar\u00f2\" che mi applaude per la nostra battaglia contro la legge Fornero \u00e8 BARBARO... Ma personaggi come il sig. Cazzola hanno provato ad andare in giro per strada e sentire che cosa dicono gli italiani???", "post_text": "Per l'amico di Renzi e Alfano, io sono come i brigatisti e il pubblico dello studio di \"Ballar\u00f2\" che mi applaude per la nostra battaglia contro la legge Fornero \u00e8 BARBARO... Ma personaggi come il sig. Cazzola hanno provato ad andare in giro per strada e sentire che cosa dicono gli italiani???", "shared_text": "", "time": "2016-04-02 12:34:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153670703003155&id=252306033154", "link": null} +{"post_id": "10153671372623155", "text": "Dedicato alle \"anime belle\" della sinistra: i nostri toni contro la Fornero sono \"indecenti e scorretti\"... Ma quando si tratta di insultare dalla mattina alla sera, o aggredire in piazza Salvini e la Lega, tutto \u00e8 lecito, spesso gradito... W LA COERENZA!", "post_text": "Dedicato alle \"anime belle\" della sinistra: i nostri toni contro la Fornero sono \"indecenti e scorretti\"... Ma quando si tratta di insultare dalla mattina alla sera, o aggredire in piazza Salvini e la Lega, tutto \u00e8 lecito, spesso gradito... W LA COERENZA!", "shared_text": "", "time": "2016-04-01 10:21:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153671372623155&id=252306033154", "link": null} +{"post_id": "10153672669838155", "text": "Servizio TG1 sulla giornata di ieri in Israele. Il vero PERICOLO di oggi \u00e8 il terrorismo islamico, chi tace o non reagisce \u00e8 COMPLICE.", "post_text": "Servizio TG1 sulla giornata di ieri in Israele. Il vero PERICOLO di oggi \u00e8 il terrorismo islamico, chi tace o non reagisce \u00e8 COMPLICE.", "shared_text": "", "time": "2016-03-31 13:20:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153672669838155&id=252306033154", "link": null} +{"post_id": "10153656702023155", "text": "\"Provo piet\u00e0 umana anche per i kamikaze che si fanno esplodere\" dice il compagno Vauro.\nVaglielo dire alle famiglie delle vittime degli attentati! MA VERGOGNATI!!!", "post_text": "\"Provo piet\u00e0 umana anche per i kamikaze che si fanno esplodere\" dice il compagno Vauro.\nVaglielo dire alle famiglie delle vittime degli attentati! MA VERGOGNATI!!!", "shared_text": "", "time": "2016-03-30 17:29:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153656702023155&id=252306033154", "link": null} +{"post_id": "10153624696668155", "text": "Monti racconta come nel 2011 hanno ROVINATO la vita di milioni di italiani: \"Abbiamo approvato la riforma Fornero SEMPLICEMENTE, i sindacati non ci hanno fatto nessuna rivolta sociale, solo 2 ore simboliche di sciopero.\"\nAvete capito bene??? Tutti insieme COMPLICI del disastro italiano. Anche per i sindacati... RUSPA!!!", "post_text": "Monti racconta come nel 2011 hanno ROVINATO la vita di milioni di italiani: \"Abbiamo approvato la riforma Fornero SEMPLICEMENTE, i sindacati non ci hanno fatto nessuna rivolta sociale, solo 2 ore simboliche di sciopero.\"\nAvete capito bene??? Tutti insieme COMPLICI del disastro italiano. Anche per i sindacati... RUSPA!!!", "shared_text": "", "time": "2016-03-29 16:59:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153624696668155&id=252306033154", "link": null} +{"post_id": "10153653759523155", "text": "A questi non basta l'HOTEL GRATIS pagato dagli italiani: protestano e bloccano il traffico a Cagliari perch\u00e9 non vogliono essere identificati... PRETENDONO la libert\u00e0 di andare in giro da clandestini! Con la Lega al governo sarebbero gi\u00e0 a casa loro, RISPEDITI INDIETRO a calci nel c.!", "post_text": "A questi non basta l'HOTEL GRATIS pagato dagli italiani: protestano e bloccano il traffico a Cagliari perch\u00e9 non vogliono essere identificati... PRETENDONO la libert\u00e0 di andare in giro da clandestini! Con la Lega al governo sarebbero gi\u00e0 a casa loro, RISPEDITI INDIETRO a calci nel c.!", "shared_text": "", "time": "2016-03-26 10:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153653759523155&id=252306033154", "link": null} +{"post_id": "10153652281893155", "text": "PAZZESCO. Il dirigente di Polizia ci svela come stanno REALMENTE le cose: \"Ieri sbarcati 700 profughi in Sardegna. Prese le impronte solo a 9, gli altri si sono RIFIUTATI. E il giudice stamattina ha LIBERATO i\u2026 Altro 3 scafisti arrestati\".\nMa chi ci stiamo prendendo in casa???\nRenzi e Alfano ci raccontano che \u00e8 tutto sotto controllo, ma la SICUREZZA degli italiani \u00e8 in mano a PERICOLOSI INCAPACI!!!", "post_text": "PAZZESCO. Il dirigente di Polizia ci svela come stanno REALMENTE le cose: \"Ieri sbarcati 700 profughi in Sardegna. Prese le impronte solo a 9, gli altri si sono RIFIUTATI. E il giudice stamattina ha LIBERATO i\u2026 Altro 3 scafisti arrestati\".\nMa chi ci stiamo prendendo in casa???\nRenzi e Alfano ci raccontano che \u00e8 tutto sotto controllo, ma la SICUREZZA degli italiani \u00e8 in mano a PERICOLOSI INCAPACI!!!", "shared_text": "", "time": "2016-03-25 12:08:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153652281893155&id=252306033154", "link": null} +{"post_id": "10153649309973155", "text": "A questa BANDA di ROM piace \"prelevare\" al bancomat cos\u00ec...\nChe dite, per loro ancora coccole e buonismo o... RUSPA???", "post_text": "A questa BANDA di ROM piace \"prelevare\" al bancomat cos\u00ec...\nChe dite, per loro ancora coccole e buonismo o... RUSPA???", "shared_text": "", "time": "2016-03-24 19:15:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153649309973155&id=252306033154", "link": null} +{"post_id": "10153643366748155", "text": "Hanno appena AMMAZZATO pi\u00f9 di 30 persone nel nome di Allah e per questo IMAM il problema \u00e8 Salvini che fa \"SCIACALLAGGIO\"...\nMa vaff..!!!", "post_text": "Hanno appena AMMAZZATO pi\u00f9 di 30 persone nel nome di Allah e per questo IMAM il problema \u00e8 Salvini che fa \"SCIACALLAGGIO\"...\nMa vaff..!!!", "shared_text": "", "time": "2016-03-24 12:30:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153643366748155&id=252306033154", "link": null} +{"post_id": "10153643336088155", "text": "Mettono le SANZIONI alla Russia di Putin che combatte i tagliagole islamici e poi regalano i MILIARDI alla Turchia che finanzia l\u2019ISIS\u2026\nIn Europa abbiamo dei PERICOLOSI IMBECILLI da mandare a casa a calci nel sedere!!!", "post_text": "Mettono le SANZIONI alla Russia di Putin che combatte i tagliagole islamici e poi regalano i MILIARDI alla Turchia che finanzia l\u2019ISIS\u2026\nIn Europa abbiamo dei PERICOLOSI IMBECILLI da mandare a casa a calci nel sedere!!!", "shared_text": "", "time": "2016-03-24 09:46:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153643336088155&id=252306033154", "link": null} +{"post_id": "10153645377023155", "text": "Spero che queste immagini non vengano presto dimenticate.\nNe ho le PALLE PIENE di chi ammazza nel nome di Allah!\nREAGIRE, e RIPULIRE i quartieri dove COVA l'odio islamista: controllare, indagare, espellere! Delle CHIACCHIERE di Renzi non ce ne facciamo nulla.", "post_text": "Spero che queste immagini non vengano presto dimenticate.\nNe ho le PALLE PIENE di chi ammazza nel nome di Allah!\nREAGIRE, e RIPULIRE i quartieri dove COVA l'odio islamista: controllare, indagare, espellere! Delle CHIACCHIERE di Renzi non ce ne facciamo nulla.", "shared_text": "", "time": "2016-03-23 20:19:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153645377023155&id=252306033154", "link": null} +{"post_id": "10153646178118155", "text": "Io NON sto ZITTO perch\u00e9 non mi rassegno alla PAURA. Bisogna controllare questa immigrazione, perch\u00e9 col BUONISMO ci stanno MASSACRANDO!\nSe avete qualche minuto ascoltate e, se vi piace, condividete sulla bacheca di qualche amico!", "post_text": "Io NON sto ZITTO perch\u00e9 non mi rassegno alla PAURA. Bisogna controllare questa immigrazione, perch\u00e9 col BUONISMO ci stanno MASSACRANDO!\nSe avete qualche minuto ascoltate e, se vi piace, condividete sulla bacheca di qualche amico!", "shared_text": "", "time": "2016-03-23 18:45:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153646178118155&id=252306033154", "link": null} +{"post_id": "10153643331938155", "text": "Stanco del bla-bla-bla di Renzi e degli \"intellettuali\" alla Gad Lerner... Gli attentati sono figli del buonismo e dell'accoglienza a tutti i costi. Con la tua religione vuoi cancellare le nostre libert\u00e0 e il nostro modo di vivere? Ti rispedisco A CASA TUA in tempo zero!", "post_text": "Stanco del bla-bla-bla di Renzi e degli \"intellettuali\" alla Gad Lerner... Gli attentati sono figli del buonismo e dell'accoglienza a tutti i costi. Con la tua religione vuoi cancellare le nostre libert\u00e0 e il nostro modo di vivere? Ti rispedisco A CASA TUA in tempo zero!", "shared_text": "", "time": "2016-03-23 09:35:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153643331938155&id=252306033154", "link": null} +{"post_id": "10153642232793155", "text": "Ora in diretta da Bruxelles", "post_text": "Ora in diretta da Bruxelles", "shared_text": "", "time": "2016-03-22 16:16:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153642232793155&id=252306033154", "link": null} +{"post_id": "10153642057293155", "text": "Molenbeek, Bruxelles. Altro che accoglienza, altro che integrazione! Qua o ci SVEGLIAMO o siamo tutti carne da macello.", "post_text": "Molenbeek, Bruxelles. Altro che accoglienza, altro che integrazione! Qua o ci SVEGLIAMO o siamo tutti carne da macello.", "shared_text": "", "time": "2016-03-22 15:05:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153642057293155&id=252306033154", "link": null} +{"post_id": "10153637929148155", "text": "Mastella: #nonmenefottenulladisalvini.\nSe questo \u00e8 il \"nuovo\" del centrodestra... forza Lega!", "post_text": "Mastella: #nonmenefottenulladisalvini.\nSe questo \u00e8 il \"nuovo\" del centrodestra... forza Lega!", "shared_text": "", "time": "2016-03-21 17:45:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153637929148155&id=252306033154", "link": null} +{"post_id": "10153624710493155", "text": "Bruxelles vuole portare sulle nostre tavole PORCHERIE da tutto il mondo e intanto i PESCATORI e AGRICOLTORI italiani vengono messi in ginocchio\u2026 CONSUMIAMO e DIFENDIAMO i prodotti della nostra terra e le schifezze se le mangino Renzi e la Merkel!", "post_text": "Bruxelles vuole portare sulle nostre tavole PORCHERIE da tutto il mondo e intanto i PESCATORI e AGRICOLTORI italiani vengono messi in ginocchio\u2026 CONSUMIAMO e DIFENDIAMO i prodotti della nostra terra e le schifezze se le mangino Renzi e la Merkel!", "shared_text": "", "time": "2016-03-19 15:01:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153624710493155&id=252306033154", "link": null} +{"post_id": "10153629738318155", "text": "Dialogo surreale in diretta tv con il \"rom abusivo\": non solo OCCUPA una casa popolare (FREGANDO qualcuno che ne avrebbe diritto), ma pretenderebbe che IO gli trovassi un lavoro... RUSPA.", "post_text": "Dialogo surreale in diretta tv con il \"rom abusivo\": non solo OCCUPA una casa popolare (FREGANDO qualcuno che ne avrebbe diritto), ma pretenderebbe che IO gli trovassi un lavoro... RUSPA.", "shared_text": "", "time": "2016-03-18 19:19:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153629738318155&id=252306033154", "link": null} +{"post_id": "10153629616563155", "text": "Altro che genitore 1 o 2: sabato sono ORGOGLIOSO di ricevere gli auguri dai miei bimbi per la FESTA DEL PAP\u00c0!", "post_text": "Altro che genitore 1 o 2: sabato sono ORGOGLIOSO di ricevere gli auguri dai miei bimbi per la FESTA DEL PAP\u00c0!", "shared_text": "", "time": "2016-03-18 11:10:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153629616563155&id=252306033154", "link": null} +{"post_id": "10153626986978155", "text": "L'Europa che piace a Renzi e alla Merkel ci ha rubato il LAVORO, la SICUREZZA, la DIGNIT\u00c0, l'IDENTIT\u00c0, la LIBERT\u00c0 e il FUTURO! In Italia, come in Francia, non moriremo schiavi: PADRONI A CASA NOSTRA!", "post_text": "L'Europa che piace a Renzi e alla Merkel ci ha rubato il LAVORO, la SICUREZZA, la DIGNIT\u00c0, l'IDENTIT\u00c0, la LIBERT\u00c0 e il FUTURO! In Italia, come in Francia, non moriremo schiavi: PADRONI A CASA NOSTRA!", "shared_text": "", "time": "2016-03-17 19:29:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153626986978155&id=252306033154", "link": null} +{"post_id": "10153624119893155", "text": "Confermo: la Boldrini, che vorrebbe importare 400mila immigrati l'anno perch\u00e9 da noi non si fanno pi\u00f9 figli, \u00e8 RAZZISTA verso gli italiani.\nLe auguro comunque di cambiare presto mestiere!", "post_text": "Confermo: la Boldrini, che vorrebbe importare 400mila immigrati l'anno perch\u00e9 da noi non si fanno pi\u00f9 figli, \u00e8 RAZZISTA verso gli italiani.\nLe auguro comunque di cambiare presto mestiere!", "shared_text": "", "time": "2016-03-16 14:44:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153624119893155&id=252306033154", "link": null} +{"post_id": "10153621950023155", "text": "Bruxelles \u00e8 pronta a dichiarare ABUSIVI gli stabilimenti balneari italiani...\nBASTA FOLLIE, qui gli unici \"abusivi\" sono Renzi e questa Europa!", "post_text": "Bruxelles \u00e8 pronta a dichiarare ABUSIVI gli stabilimenti balneari italiani...\nBASTA FOLLIE, qui gli unici \"abusivi\" sono Renzi e questa Europa!", "shared_text": "", "time": "2016-03-15 17:14:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153621950023155&id=252306033154", "link": null} +{"post_id": "10153621873153155", "text": "Pazzesco. Sono passati 10 anni e chi ha ucciso il piccolo Tommy uscir\u00e0 per dei PERMESSI-PREMIO.\nRIPETO.\nLa BESTIA che ha massacrato un bimbo di 18 mesi, condannata all\u2019ergastolo, potr\u00e0 lavorare FUORI DAL\u2026 Altro CARCERE.\nQuesta Italia \u00e8 proprio da RIBALTARE! Il mio IMPEGNO quando sar\u00f2 al governo: l\u2019ERGASTOLO sar\u00e0 ERGASTOLO, meglio se ai LAVORI FORZATI!\nP.s. un pensiero a Tommy e alla sua famiglia con un invito a voi, se volete, a visitare la pagina https://www.facebook.com/tommy.cuore", "post_text": "Pazzesco. Sono passati 10 anni e chi ha ucciso il piccolo Tommy uscir\u00e0 per dei PERMESSI-PREMIO.\nRIPETO.\nLa BESTIA che ha massacrato un bimbo di 18 mesi, condannata all\u2019ergastolo, potr\u00e0 lavorare FUORI DAL\u2026 Altro CARCERE.\nQuesta Italia \u00e8 proprio da RIBALTARE! Il mio IMPEGNO quando sar\u00f2 al governo: l\u2019ERGASTOLO sar\u00e0 ERGASTOLO, meglio se ai LAVORI FORZATI!\nP.s. un pensiero a Tommy e alla sua famiglia con un invito a voi, se volete, a visitare la pagina https://www.facebook.com/tommy.cuore", "shared_text": "", "time": "2016-03-15 14:48:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153621873153155&id=252306033154", "link": null} +{"post_id": "10153619721233155", "text": "Giuseppe, AGGREDITO e RAPINATO nel suo negozio... Se qualche buonista sinistro mi parla ancora di ECCESSO DI LEGITTIMA DIFESA lo mando a quel paese!", "post_text": "Giuseppe, AGGREDITO e RAPINATO nel suo negozio... Se qualche buonista sinistro mi parla ancora di ECCESSO DI LEGITTIMA DIFESA lo mando a quel paese!", "shared_text": "", "time": "2016-03-14 21:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153619721233155&id=252306033154", "link": null} +{"post_id": "10153608731948155", "text": "Contro l\u2019Europa che massacra la nostra agricoltura per riempirci di schifezze da tutto il mondo... Questa volta non parla Salvini, il MICROFONO a chi si spacca la schiena tutti i giorni e vuole continuare a produrre ITALIANO. Facciamo girare!", "post_text": "Contro l\u2019Europa che massacra la nostra agricoltura per riempirci di schifezze da tutto il mondo... Questa volta non parla Salvini, il MICROFONO a chi si spacca la schiena tutti i giorni e vuole continuare a produrre ITALIANO. Facciamo girare!", "shared_text": "", "time": "2016-03-14 15:45:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153608731948155&id=252306033154", "link": null} +{"post_id": "10153605089578155", "text": "PERMESSO-PREMIO per la bestia che ha ucciso il piccolo Tommy???\nMa in che cazzo di Stato viviamo!!!\nChi uccide un bambino non merita di rivedere il sole per il resto della sua vita!", "post_text": "PERMESSO-PREMIO per la bestia che ha ucciso il piccolo Tommy???\nMa in che cazzo di Stato viviamo!!!\nChi uccide un bambino non merita di rivedere il sole per il resto della sua vita!", "shared_text": "", "time": "2016-03-10 17:59:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153605089578155&id=252306033154", "link": null} +{"post_id": "10153604644023155", "text": "Domani mattina sar\u00f2 di nuovo in SICILIA: alle 9.30 al grande mercato ortofrutticolo di Vittoria (RG) e alle 11.30 a Grammichele (CT). Se l'Europa \u00e8 quella che ci INVADE di prodotti non controllati che uccidono\u2026 Altro la nostra agricoltura, MEGLIO SOLI!\nE l'OLIO tunisino e le ARANCE marocchine se lo bevano e se le mangino Renzi e la Merkel!", "post_text": "Domani mattina sar\u00f2 di nuovo in SICILIA: alle 9.30 al grande mercato ortofrutticolo di Vittoria (RG) e alle 11.30 a Grammichele (CT). Se l'Europa \u00e8 quella che ci INVADE di prodotti non controllati che uccidono\u2026 Altro la nostra agricoltura, MEGLIO SOLI!\nE l'OLIO tunisino e le ARANCE marocchine se lo bevano e se le mangino Renzi e la Merkel!", "shared_text": "", "time": "2016-03-10 10:42:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153604644023155&id=252306033154", "link": null} +{"post_id": "10153602133613155", "text": "Agli italiani ROVINATI dalla Fornero, l'amico di Renzi e Alfano risponde \"VADANO A LAVORARE\"!!! Roba da matti!\nIl sig. Cazzola si dovrebbe VERGOGNARE! Voi avete qualcosa da dirgli?", "post_text": "Agli italiani ROVINATI dalla Fornero, l'amico di Renzi e Alfano risponde \"VADANO A LAVORARE\"!!! Roba da matti!\nIl sig. Cazzola si dovrebbe VERGOGNARE! Voi avete qualcosa da dirgli?", "shared_text": "", "time": "2016-03-09 14:29:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153602133613155&id=252306033154", "link": null} +{"post_id": "10153591285798155", "text": "Sostegno e libert\u00e0 di azione per le forze dell'ordine, CERTEZZA della PENA, legittima difesa per i cittadini aggrediti, SEMPRE.\nNon servono magie, per avere pi\u00f9 sicurezza in Italia basta il BUONSENSO!", "post_text": "Sostegno e libert\u00e0 di azione per le forze dell'ordine, CERTEZZA della PENA, legittima difesa per i cittadini aggrediti, SEMPRE.\nNon servono magie, per avere pi\u00f9 sicurezza in Italia basta il BUONSENSO!", "shared_text": "", "time": "2016-03-08 09:51:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153591285798155&id=252306033154", "link": null} +{"post_id": "10153597619823155", "text": "Con tutte le famiglie che hanno bisogno, la CASA POPOLARE la danno ad un avvocato che possiede anche una BARCA???\nIn Italia non c\u2019\u00e8 pi\u00f9 limite allo SCHIFO!!!\nP.s.: Bravo Massimo Giletti che sulla vicenda non molla!", "post_text": "Con tutte le famiglie che hanno bisogno, la CASA POPOLARE la danno ad un avvocato che possiede anche una BARCA???\nIn Italia non c\u2019\u00e8 pi\u00f9 limite allo SCHIFO!!!\nP.s.: Bravo Massimo Giletti che sulla vicenda non molla!", "shared_text": "", "time": "2016-03-07 13:23:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153597619823155&id=252306033154", "link": null} +{"post_id": "10153595810993155", "text": "\u201cDAMMI LE SIGARETTE o TI VIOLENTO\u201d, cos\u00ec un immigrato, gi\u00e0 noto per episodi simili, ha aggredito la titolare di una tabaccheria a Bolzano. Per fortuna sono intervenuti i clienti a difendere lei e la figlia, ma quanta PULIZIA c\u2019\u00e8 da fare nelle nostre citt\u00e0!", "post_text": "\u201cDAMMI LE SIGARETTE o TI VIOLENTO\u201d, cos\u00ec un immigrato, gi\u00e0 noto per episodi simili, ha aggredito la titolare di una tabaccheria a Bolzano. Per fortuna sono intervenuti i clienti a difendere lei e la figlia, ma quanta PULIZIA c\u2019\u00e8 da fare nelle nostre citt\u00e0!", "shared_text": "", "time": "2016-03-07 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153595810993155&id=252306033154", "link": null} +{"post_id": "10153595082643155", "text": "Orgoglioso di aver portato in prima serata su CANALE CINQUE un po' della nostra battaglia contro l'INFAME LEGGE FORNERO che ha rovinato la vita a milioni di italiani, nell'indifferenza di Renzi.", "post_text": "Orgoglioso di aver portato in prima serata su CANALE CINQUE un po' della nostra battaglia contro l'INFAME LEGGE FORNERO che ha rovinato la vita a milioni di italiani, nell'indifferenza di Renzi.", "shared_text": "", "time": "2016-03-06 12:08:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153595082643155&id=252306033154", "link": null} +{"post_id": "10153594157533155", "text": "ZECCA ROSSA (e consigliere comunale sinistro) si presenta con il disinfettante al nostro gazebo di Roma Garbatella. Pensate, questo \u00e8 il pi\u00f9 intelligente del suo centro sociale, lo abbracciamo forte forte.", "post_text": "ZECCA ROSSA (e consigliere comunale sinistro) si presenta con il disinfettante al nostro gazebo di Roma Garbatella. Pensate, questo \u00e8 il pi\u00f9 intelligente del suo centro sociale, lo abbracciamo forte forte.", "shared_text": "", "time": "2016-03-05 18:06:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153594157533155&id=252306033154", "link": null} +{"post_id": "10153586920018155", "text": "La Fornero, non una legge ma una TRUFFA, MALEDETTA e INFAME.\nChe cancelleremo un minuto dopo essere andati al governo!", "post_text": "La Fornero, non una legge ma una TRUFFA, MALEDETTA e INFAME.\nChe cancelleremo un minuto dopo essere andati al governo!", "shared_text": "", "time": "2016-03-04 10:35:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153586920018155&id=252306033154", "link": null} +{"post_id": "10153587976598155", "text": "1.000 euro al mese di BOLLETTE per stare in un CONTAINER, da 3 anni.\nFAI GIRARE, dedicato a quelli che \u201c\u00e8 tutta propaganda di Salvini, NON \u00c8 VERO che i terremotati emiliani stanno ancora FUORI CASA\u201d.\nFanculo.", "post_text": "1.000 euro al mese di BOLLETTE per stare in un CONTAINER, da 3 anni.\nFAI GIRARE, dedicato a quelli che \u201c\u00e8 tutta propaganda di Salvini, NON \u00c8 VERO che i terremotati emiliani stanno ancora FUORI CASA\u201d.\nFanculo.", "shared_text": "", "time": "2016-03-03 09:30:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153587976598155&id=252306033154", "link": null} +{"post_id": "10153586955448155", "text": "\u201cSALVINI VATTENE! E via la telecamera, TE LA SFONDO!!!\u201d.\nMa un bel vaffa allo \u201csceriffo\u201d di Bologna glielo mandiamo???", "post_text": "\u201cSALVINI VATTENE! E via la telecamera, TE LA SFONDO!!!\u201d.\nMa un bel vaffa allo \u201csceriffo\u201d di Bologna glielo mandiamo???", "shared_text": "", "time": "2016-03-02 12:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153586955448155&id=252306033154", "link": null} +{"post_id": "10153585325688155", "text": "INCREDIBILE!!!\nCos\u00ec il governo RENZI tratta i nostri POLIZIOTTI, mentre per chi sbarca domani mattina c'\u00e8 pronto l'hotel a 3 stelle... Fai girare anche tu questo SCHIFO!!!", "post_text": "INCREDIBILE!!!\nCos\u00ec il governo RENZI tratta i nostri POLIZIOTTI, mentre per chi sbarca domani mattina c'\u00e8 pronto l'hotel a 3 stelle... Fai girare anche tu questo SCHIFO!!!", "shared_text": "", "time": "2016-03-01 18:04:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153585325688155&id=252306033154", "link": null} +{"post_id": "10153584702278155", "text": "Marianna \u00e8 arrivata a vendersi le FEDI NUZIALI per sopravvivere\u2026 Dedicato ai BUONISTI che vogliono accogliere tutto il mondo ma SE NE FREGANO degli italiani che hanno veramente bisogno.", "post_text": "Marianna \u00e8 arrivata a vendersi le FEDI NUZIALI per sopravvivere\u2026 Dedicato ai BUONISTI che vogliono accogliere tutto il mondo ma SE NE FREGANO degli italiani che hanno veramente bisogno.", "shared_text": "", "time": "2016-03-01 12:07:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153584702278155&id=252306033154", "link": null} +{"post_id": "10153583450993155", "text": "ATTENTI al \u201csignore\u201d col CAPPELLO, spara pi\u00f9 CAZZATE di Renzi!", "post_text": "ATTENTI al \u201csignore\u201d col CAPPELLO, spara pi\u00f9 CAZZATE di Renzi!", "shared_text": "", "time": "2016-02-29 20:47:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153583450993155&id=252306033154", "link": null} +{"post_id": "10153582647403155", "text": "Si COMPRA un dvd, una lavatrice, un paio di scarpe o un\u2019auto, MA NON UN BAMBINO. Questo non \u00e8 futuro ma EGOISMO!\nIo la penso cos\u00ec.", "post_text": "Si COMPRA un dvd, una lavatrice, un paio di scarpe o un\u2019auto, MA NON UN BAMBINO. Questo non \u00e8 futuro ma EGOISMO!\nIo la penso cos\u00ec.", "shared_text": "", "time": "2016-02-29 11:34:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153582647403155&id=252306033154", "link": null} +{"post_id": "10153580994158155", "text": "A Pordenone arrestato per TERRORISMO islamico un immigrato macedone. Veniva COCCOLATO dalla Regione Friuli-Venezia Giulia con un sussidio di 500 euro al mese. Siamo governati da pericolosi INCAPACI, Renzi e Serracchiani vi manderemo a casa!", "post_text": "A Pordenone arrestato per TERRORISMO islamico un immigrato macedone. Veniva COCCOLATO dalla Regione Friuli-Venezia Giulia con un sussidio di 500 euro al mese. Siamo governati da pericolosi INCAPACI, Renzi e Serracchiani vi manderemo a casa!", "shared_text": "", "time": "2016-02-28 19:23:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153580994158155&id=252306033154", "link": null} +{"post_id": "10153579220683155", "text": "I nazisti rossi devastano le postazioni di #romaparlitu ma noi NON MOLLIAMO! Grazie a chi ha partecipato oggi, domani mattina continua l'ascolto dei romani! Avantiiiii!\nInfo su luoghi e orari: WWW.NOICONSALVINI.ORG", "post_text": "I nazisti rossi devastano le postazioni di #romaparlitu ma noi NON MOLLIAMO! Grazie a chi ha partecipato oggi, domani mattina continua l'ascolto dei romani! Avantiiiii!\nInfo su luoghi e orari: WWW.NOICONSALVINI.ORG", "shared_text": "", "time": "2016-02-27 19:38:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153579220683155&id=252306033154", "link": "http://WWW.NOICONSALVINI.ORG/?fbclid=IwAR3UkYTYl7UTEhg2QIffosD_PMEbs67iILj_BodB_7RcEi8XnbjqcKwcn1Q"} +{"post_id": "10153576286193155", "text": "TANTA VOGLIA di COMBATTERE insieme a VOI per un'Italia in cui le persone perbene non siano costrette ad armarsi per difendere la propria famiglia! Se voi ci siete, IO CI SONO!", "post_text": "TANTA VOGLIA di COMBATTERE insieme a VOI per un'Italia in cui le persone perbene non siano costrette ad armarsi per difendere la propria famiglia! Se voi ci siete, IO CI SONO!", "shared_text": "", "time": "2016-02-26 13:24:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153576286193155&id=252306033154", "link": null} +{"post_id": "10153576181248155", "text": "Il signor Fuksas \u00e8 spettacolare! Vuole le moschee perch\u00e9 ha un domestico islamico! E mi insulta. Tipico del radical chic col cuore a sinistra e il portafoglio a destra!", "post_text": "Il signor Fuksas \u00e8 spettacolare! Vuole le moschee perch\u00e9 ha un domestico islamico! E mi insulta. Tipico del radical chic col cuore a sinistra e il portafoglio a destra!", "shared_text": "", "time": "2016-02-26 11:33:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153576181248155&id=252306033154", "link": null} +{"post_id": "10153570398213155", "text": "Antonio di 81 anni, in provincia di Foggia, MASSACRATO nella propria casa per pochi euro. Per la bestia che lo ha ucciso NESSUNA PIET\u00c0, prenderla e farla MARCIRE IN GALERA fino alla fine dei suoi giorni!", "post_text": "Antonio di 81 anni, in provincia di Foggia, MASSACRATO nella propria casa per pochi euro. Per la bestia che lo ha ucciso NESSUNA PIET\u00c0, prenderla e farla MARCIRE IN GALERA fino alla fine dei suoi giorni!", "shared_text": "", "time": "2016-02-26 09:45:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153570398213155&id=252306033154", "link": null} +{"post_id": "10153574959653155", "text": "Amici romani, sabato e domenica in quaranta piazze ascoltiamo VOI.\nLa politica fa un passo indietro, per Roma ora PARLI TU!\n#romaparlitu\nTrova postazione su: http://noiconsalvini.org/sabato-27-e-domenica-28-febbraio-scegli-il-tuo-sindaco-e-la-roma-che-vuoi-tu/", "post_text": "Amici romani, sabato e domenica in quaranta piazze ascoltiamo VOI.\nLa politica fa un passo indietro, per Roma ora PARLI TU!\n#romaparlitu\nTrova postazione su: http://noiconsalvini.org/sabato-27-e-domenica-28-febbraio-scegli-il-tuo-sindaco-e-la-roma-che-vuoi-tu/", "shared_text": "", "time": "2016-02-25 19:25:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153574959653155&id=252306033154", "link": "http://noiconsalvini.org/sabato-27-e-domenica-28-febbraio-scegli-il-tuo-sindaco-e-la-roma-che-vuoi-tu/?fbclid=IwAR2dspweOnbhCwNeMbvVgB4h7UsrA3ozTWlh41P6HuFHfzbp_L6YVR17b10"} +{"post_id": "10153574761698155", "text": "Se avete tempo e voglia vi consiglio la lettura del suo \"Dopo l'Occidente\". Quello per cui stiamo combattendo oggi, lei lo aveva previsto anni fa. A difesa dei popoli, della libert\u00e0 e dell'Italia, contro il pericolo di questa Europa dei banchieri e della grande Finanza...\nGRAZIE Ida Magli!", "post_text": "Se avete tempo e voglia vi consiglio la lettura del suo \"Dopo l'Occidente\". Quello per cui stiamo combattendo oggi, lei lo aveva previsto anni fa. A difesa dei popoli, della libert\u00e0 e dell'Italia, contro il pericolo di questa Europa dei banchieri e della grande Finanza...\nGRAZIE Ida Magli!", "shared_text": "", "time": "2016-02-25 17:23:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153574761698155&id=252306033154", "link": null} +{"post_id": "10153574308073155", "text": "Un GRAZIE ai cittadini di Tor Sapienza per il sostegno e per la ruspa giocattolo... Tenete duro, a giugno LIBERIAMO ROMA e vi porto io la RUSPA, quella vera!", "post_text": "Un GRAZIE ai cittadini di Tor Sapienza per il sostegno e per la ruspa giocattolo... Tenete duro, a giugno LIBERIAMO ROMA e vi porto io la RUSPA, quella vera!", "shared_text": "", "time": "2016-02-25 14:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153574308073155&id=252306033154", "link": null} +{"post_id": "10153574100293155", "text": "E poi c'\u00e8 il signor Rom, che in vita sua non ha MAI pagato le tasse... Ma di cosa stiamo parlando?!?", "post_text": "E poi c'\u00e8 il signor Rom, che in vita sua non ha MAI pagato le tasse... Ma di cosa stiamo parlando?!?", "shared_text": "", "time": "2016-02-25 10:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153574100293155&id=252306033154", "link": null} +{"post_id": "10153572779753155", "text": "35 giorni di SCIOPERO DELLA FAME e 16 chili persi, Gianni Tonelli, segretario del SAP (Sindacato Autonomo di Polizia), non si arrende e continua a chiedere pi\u00f9 SICUREZZA per i cittadini italiani e TUTELA per chi porta una divisa.\nI PALAZZI DEL POTERE vogliono tenere tutto nascosto, noi FACCIAMO GIRARE! #iostocontonelli", "post_text": "35 giorni di SCIOPERO DELLA FAME e 16 chili persi, Gianni Tonelli, segretario del SAP (Sindacato Autonomo di Polizia), non si arrende e continua a chiedere pi\u00f9 SICUREZZA per i cittadini italiani e TUTELA per chi porta una divisa.\nI PALAZZI DEL POTERE vogliono tenere tutto nascosto, noi FACCIAMO GIRARE! #iostocontonelli", "shared_text": "", "time": "2016-02-24 19:13:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153572779753155&id=252306033154", "link": null} +{"post_id": "10153572601098155", "text": "Per i nostri terremotati CONTAINER e BOLLETTE da pagare, per chi sbarca coccole e hotel gratis...\nQuesto \u00e8 RAZZISMO SCHIFOSO!", "post_text": "Per i nostri terremotati CONTAINER e BOLLETTE da pagare, per chi sbarca coccole e hotel gratis...\nQuesto \u00e8 RAZZISMO SCHIFOSO!", "shared_text": "", "time": "2016-02-24 17:36:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153572601098155&id=252306033154", "link": null} +{"post_id": "10153572057208155", "text": "Non basta Bruxelles e l'Europa che uccide la nostra pesca, ora REGALANO pure il nostro MARE ai francesi!\nSolo imbecilli o qui qualcuno \u00e8 pagato per danneggiare l'Italia?", "post_text": "Non basta Bruxelles e l'Europa che uccide la nostra pesca, ora REGALANO pure il nostro MARE ai francesi!\nSolo imbecilli o qui qualcuno \u00e8 pagato per danneggiare l'Italia?", "shared_text": "", "time": "2016-02-24 14:46:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153572057208155&id=252306033154", "link": null} +{"post_id": "10153570327613155", "text": "Privatizzare la Rai e TOGLIERE IL CANONE. Punto.\nPerch\u00e9 pagare per TELERENZI \u00e8 una TRUFFA!", "post_text": "Privatizzare la Rai e TOGLIERE IL CANONE. Punto.\nPerch\u00e9 pagare per TELERENZI \u00e8 una TRUFFA!", "shared_text": "", "time": "2016-02-24 09:51:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153570327613155&id=252306033154", "link": null} +{"post_id": "10153570390703155", "text": "A Modena nei negozi non ne possono pi\u00f9 delle rapine e affiggono cartelli \"Se entri armato, ti sparo\". FANNO BENE!!!", "post_text": "A Modena nei negozi non ne possono pi\u00f9 delle rapine e affiggono cartelli \"Se entri armato, ti sparo\". FANNO BENE!!!", "shared_text": "", "time": "2016-02-23 18:15:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153570390703155&id=252306033154", "link": null} +{"post_id": "10153570230603155", "text": "Sulla legge Fornero (votata dal PD) in due anni RENZI non ha mosso un dito, e adesso vogliono toccare la reversibilit\u00e0 di vedovi e vedove. Altro che festeggiamenti! GI\u00d9 LE MANI DALLE PENSIONI!", "post_text": "Sulla legge Fornero (votata dal PD) in due anni RENZI non ha mosso un dito, e adesso vogliono toccare la reversibilit\u00e0 di vedovi e vedove. Altro che festeggiamenti! GI\u00d9 LE MANI DALLE PENSIONI!", "shared_text": "", "time": "2016-02-23 12:01:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153570230603155&id=252306033154", "link": null} +{"post_id": "10153568208128155", "text": "Carmelo, anziano MASSACRATO di botte per 60 EURO da un clandestino (ha perso la vista ad un occhio e l'uso di un orecchio) e ora Aziz se lo ritrova a piede libero e vicino di casa!\nMa quanto fa SCHIFO la giustizia italiana???", "post_text": "Carmelo, anziano MASSACRATO di botte per 60 EURO da un clandestino (ha perso la vista ad un occhio e l'uso di un orecchio) e ora Aziz se lo ritrova a piede libero e vicino di casa!\nMa quanto fa SCHIFO la giustizia italiana???", "shared_text": "", "time": "2016-02-22 16:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153568208128155&id=252306033154", "link": null} +{"post_id": "10153568157308155", "text": "Quanti sono i REATI commessi dagli IMMIGRATI in Italia?\nI numeri PARLANO CHIARO. Chi nega la verit\u00e0 \u00e8 NEMICO degli italiani!", "post_text": "Quanti sono i REATI commessi dagli IMMIGRATI in Italia?\nI numeri PARLANO CHIARO. Chi nega la verit\u00e0 \u00e8 NEMICO degli italiani!", "shared_text": "", "time": "2016-02-22 12:11:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153568157308155&id=252306033154", "link": null} +{"post_id": "10153564534433155", "text": "Ha ROVINATO la vita a milioni di italiani ma ha la faccia tosta di farsi vedere ancora in tv e di difendere la sua legge-PORCHERIA... Ma vergognati, CHIEDI SCUSA e vattene dall'Italia!", "post_text": "Ha ROVINATO la vita a milioni di italiani ma ha la faccia tosta di farsi vedere ancora in tv e di difendere la sua legge-PORCHERIA... Ma vergognati, CHIEDI SCUSA e vattene dall'Italia!", "shared_text": "", "time": "2016-02-20 20:30:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153564534433155&id=252306033154", "link": null} +{"post_id": "10153562437698155", "text": "Tommaso, PESTATO a sangue, RAPINATO e PERSEGUITATO per aver segnalato una zingara che usa l'ingresso di casa sua come... CESSO! Mandiamo a casa la sinistra che \"abbraccia i fratelli rom\": accendete le RUSPE!", "post_text": "Tommaso, PESTATO a sangue, RAPINATO e PERSEGUITATO per aver segnalato una zingara che usa l'ingresso di casa sua come... CESSO! Mandiamo a casa la sinistra che \"abbraccia i fratelli rom\": accendete le RUSPE!", "shared_text": "", "time": "2016-02-19 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153562437698155&id=252306033154", "link": null} +{"post_id": "10153558411948155", "text": "Basta prendere un qualsiasi mezzo pubblico per capirlo: \u00e8 un'INVASIONE! Riprendiamoci le nostre citt\u00e0, io STO CON MASSIMO!", "post_text": "Basta prendere un qualsiasi mezzo pubblico per capirlo: \u00e8 un'INVASIONE! Riprendiamoci le nostre citt\u00e0, io STO CON MASSIMO!", "shared_text": "", "time": "2016-02-17 21:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153558411948155&id=252306033154", "link": null} +{"post_id": "10153557861733155", "text": "A Oderzo, vicino Treviso, vogliono riempire il paese con CENTINAIA di clandestini, gli abitanti scendono in piazza in massa per protestare. BRAVI, sono con voi, al governo dell'invasione si risponde cos\u00ec!", "post_text": "A Oderzo, vicino Treviso, vogliono riempire il paese con CENTINAIA di clandestini, gli abitanti scendono in piazza in massa per protestare. BRAVI, sono con voi, al governo dell'invasione si risponde cos\u00ec!", "shared_text": "", "time": "2016-02-17 12:02:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153557861733155&id=252306033154", "link": null} +{"post_id": "10153556602788155", "text": "Pazzesco... Avete capito bene??? S\u00ec, in Italia \u00e8 VIETATO SPAVENTARE i LADRI!\nNon ho pi\u00f9 parole per definire questo Stato!", "post_text": "Pazzesco... Avete capito bene??? S\u00ec, in Italia \u00e8 VIETATO SPAVENTARE i LADRI!\nNon ho pi\u00f9 parole per definire questo Stato!", "shared_text": "", "time": "2016-02-16 19:44:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153556602788155&id=252306033154", "link": null} +{"post_id": "10153556420863155", "text": "PRIMA GLI ITALIANI e poi chi sbarca domattina a Lampedusa. Io la penso cos\u00ec, alla faccia di \"sinistrati\" vari!", "post_text": "PRIMA GLI ITALIANI e poi chi sbarca domattina a Lampedusa. Io la penso cos\u00ec, alla faccia di \"sinistrati\" vari!", "shared_text": "", "time": "2016-02-16 17:35:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153556420863155&id=252306033154", "link": null} +{"post_id": "10153556012003155", "text": "FANNO SCHIFO. Ci sono PENSIONI D'ORO da 20mila euro al mese e questi vanno a prendere i soldi dalle vedove... GI\u00d9 LE MANI altrimenti sar\u00e0 guerra!", "post_text": "FANNO SCHIFO. Ci sono PENSIONI D'ORO da 20mila euro al mese e questi vanno a prendere i soldi dalle vedove... GI\u00d9 LE MANI altrimenti sar\u00e0 guerra!", "shared_text": "", "time": "2016-02-16 12:38:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153556012003155&id=252306033154", "link": null} +{"post_id": "10153555844638155", "text": "Entri in casa mia per fare del male a me o alla mia famiglia?\nSE NON ESCI IN PIEDI, il problema \u00e8 tutto tuo!", "post_text": "Entri in casa mia per fare del male a me o alla mia famiglia?\nSE NON ESCI IN PIEDI, il problema \u00e8 tutto tuo!", "shared_text": "", "time": "2016-02-16 09:27:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153555844638155&id=252306033154", "link": null} +{"post_id": "10153554184738155", "text": "Pavia, voleva spaventare i ladri che gli erano entrati (a colpi di piccone) per la terza volta nel bar e spara due colpi in aria col fucile.\nRisultato? Viene denunciato!\nMa bastaaaaaaaaaa!", "post_text": "Pavia, voleva spaventare i ladri che gli erano entrati (a colpi di piccone) per la terza volta nel bar e spara due colpi in aria col fucile.\nRisultato? Viene denunciato!\nMa bastaaaaaaaaaa!", "shared_text": "", "time": "2016-02-15 19:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153554184738155&id=252306033154", "link": null} +{"post_id": "10153554485953155", "text": "\"Abbiamo versato pi\u00f9 di 40 anni di contributi, ma uno SCHIATTA, e allora la PENSIONE non la danno e han fatto bingo\". Questo \u00e8 il regalo agli italiani della Fornero e dei governi del PD.\nRENZI continua a FREGARSENE, ma noi non molliamo!", "post_text": "\"Abbiamo versato pi\u00f9 di 40 anni di contributi, ma uno SCHIATTA, e allora la PENSIONE non la danno e han fatto bingo\". Questo \u00e8 il regalo agli italiani della Fornero e dei governi del PD.\nRENZI continua a FREGARSENE, ma noi non molliamo!", "shared_text": "", "time": "2016-02-15 17:06:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153554485953155&id=252306033154", "link": null} +{"post_id": "10153554299448155", "text": "La CAZZATA radical chic del giorno: visto che abbiamo tanti delinquenti italiani, dovremmo farne arrivare anche da tutto il resto del mondo e stare zitti!\nMa che cos'hanno in testa i giornalisti di sinistra, secondo voi???", "post_text": "La CAZZATA radical chic del giorno: visto che abbiamo tanti delinquenti italiani, dovremmo farne arrivare anche da tutto il resto del mondo e stare zitti!\nMa che cos'hanno in testa i giornalisti di sinistra, secondo voi???", "shared_text": "", "time": "2016-02-15 15:03:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153554299448155&id=252306033154", "link": null} +{"post_id": "10153551988843155", "text": "Affamano i DISABILI e poi spendono i soldi per l\u2019AEREO di Renzi.\nFANNO SCHIFO.", "post_text": "Affamano i DISABILI e poi spendono i soldi per l\u2019AEREO di Renzi.\nFANNO SCHIFO.", "shared_text": "", "time": "2016-02-14 12:50:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153551988843155&id=252306033154", "link": null} +{"post_id": "10153548853848155", "text": "Attenzione amici dal grilletto facile, NON SPARATE al rapinatore che vi entra in casa, magari vuole solo una \"MELA\"!!!\nMa dove vive questa??? Ricoveratelaaaa!", "post_text": "Attenzione amici dal grilletto facile, NON SPARATE al rapinatore che vi entra in casa, magari vuole solo una \"MELA\"!!!\nMa dove vive questa??? Ricoveratelaaaa!", "shared_text": "", "time": "2016-02-13 10:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153548853848155&id=252306033154", "link": null} +{"post_id": "10153548123678155", "text": "IO STO CON BRUNO, l'ex poliziotto in pensione! Ha sparato al ladro, e HA FATTO BENE!", "post_text": "IO STO CON BRUNO, l'ex poliziotto in pensione! Ha sparato al ladro, e HA FATTO BENE!", "shared_text": "", "time": "2016-02-12 15:45:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153548123678155&id=252306033154", "link": null} +{"post_id": "10153547711728155", "text": "Ieri, oggi e domani: se entri in casa mia ed esci steso, sono cazzi tuoi!!!", "post_text": "Ieri, oggi e domani: se entri in casa mia ed esci steso, sono cazzi tuoi!!!", "shared_text": "", "time": "2016-02-12 10:59:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153547711728155&id=252306033154", "link": null} +{"post_id": "10153546224308155", "text": "\"Democratici antifascisti\" fermati con furgone carico di mazze a altri \"regali\" per noi...\nVoto 0 alle ZECCHE (che non ci spaventano), voto 10 alle Forze dell'ordine e alle tante persone perbene incontrate oggi a Cagliari!", "post_text": "\"Democratici antifascisti\" fermati con furgone carico di mazze a altri \"regali\" per noi...\nVoto 0 alle ZECCHE (che non ci spaventano), voto 10 alle Forze dell'ordine e alle tante persone perbene incontrate oggi a Cagliari!", "shared_text": "", "time": "2016-02-11 17:58:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153546224308155&id=252306033154", "link": null} +{"post_id": "10153545894998155", "text": "Sempre vivace e piena di inventiva la \"cultura ROM\": provocavano finti incidenti ad ANZIANI facendo credere che nell'urto si fosse danneggiato un orologio di valore, per il quale chiedevano 4.000 euro di\u2026 Altro risarcimento.\nGrazie a questo simpatico passatempo, gli zingari della banda si erano fatti le palle d'oro, tra VILLE e AUTO DI LUSSO... Se fossi al governo, mi assicurerei personalmente che questi SCHIFOSI fossero PUNITI come meritano!", "post_text": "Sempre vivace e piena di inventiva la \"cultura ROM\": provocavano finti incidenti ad ANZIANI facendo credere che nell'urto si fosse danneggiato un orologio di valore, per il quale chiedevano 4.000 euro di\u2026 Altro risarcimento.\nGrazie a questo simpatico passatempo, gli zingari della banda si erano fatti le palle d'oro, tra VILLE e AUTO DI LUSSO... Se fossi al governo, mi assicurerei personalmente che questi SCHIFOSI fossero PUNITI come meritano!", "shared_text": "", "time": "2016-02-11 15:07:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153545894998155&id=252306033154", "link": null} +{"post_id": "10153545511803155", "text": "Cancellare il reato di eccesso di LEGITTIMA DIFESA, aiutare poliziotti e carabinieri, certezza della pena. \u201cIo sto con Stacchio\u201d vuol dire tutte queste cose, insieme LE FAREMO!", "post_text": "Cancellare il reato di eccesso di LEGITTIMA DIFESA, aiutare poliziotti e carabinieri, certezza della pena. \u201cIo sto con Stacchio\u201d vuol dire tutte queste cose, insieme LE FAREMO!", "shared_text": "", "time": "2016-02-11 11:09:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153545511803155&id=252306033154", "link": null} +{"post_id": "10153544324593155", "text": "Cartelle esattoriali NON DOVUTE, ecco la verit\u00e0: milioni di italiani TRUFFATI e TARTASSATI da Equitalia.\nRUSPA per lo Stato Ladro!", "post_text": "Cartelle esattoriali NON DOVUTE, ecco la verit\u00e0: milioni di italiani TRUFFATI e TARTASSATI da Equitalia.\nRUSPA per lo Stato Ladro!", "shared_text": "", "time": "2016-02-10 19:50:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153544324593155&id=252306033154", "link": null} +{"post_id": "10153541795818155", "text": "Meno di 3 euro all'ora in nero per sopravvivere... Non \u00e8 LAVORO, \u00e8 SCHIAVIT\u00d9!\nE il Jobs Act? RENZI INCAPACE, all'Italia servono MENO TASSE, il resto \u00e8 aria fritta!", "post_text": "Meno di 3 euro all'ora in nero per sopravvivere... Non \u00e8 LAVORO, \u00e8 SCHIAVIT\u00d9!\nE il Jobs Act? RENZI INCAPACE, all'Italia servono MENO TASSE, il resto \u00e8 aria fritta!", "shared_text": "", "time": "2016-02-09 17:14:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153541795818155&id=252306033154", "link": null} +{"post_id": "10153539699298155", "text": "Benvenuti nella Repubblica Islamica di DEWSBURY, la citt\u00e0 inglese divenuta culla dei terroristi e simbolo del fallimento del multiculturalismo forzato. Del resto, che integrazione vuoi fare se gli \"ospiti\" diventano maggioranza e vogliono CANCELLARE la tua cultura???", "post_text": "Benvenuti nella Repubblica Islamica di DEWSBURY, la citt\u00e0 inglese divenuta culla dei terroristi e simbolo del fallimento del multiculturalismo forzato. Del resto, che integrazione vuoi fare se gli \"ospiti\" diventano maggioranza e vogliono CANCELLARE la tua cultura???", "shared_text": "", "time": "2016-02-09 09:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153539699298155&id=252306033154", "link": null} +{"post_id": "10153539739538155", "text": "Negli altri Paesi europei verificano, controllano, ESPELLONO.\nNell'Italia dei RenzAlfano, invece, c'\u00e8 posto per tutti... Abbiamo la sinistra pi\u00f9 FESSA d'Europa!", "post_text": "Negli altri Paesi europei verificano, controllano, ESPELLONO.\nNell'Italia dei RenzAlfano, invece, c'\u00e8 posto per tutti... Abbiamo la sinistra pi\u00f9 FESSA d'Europa!", "shared_text": "", "time": "2016-02-08 18:58:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153539739538155&id=252306033154", "link": null} +{"post_id": "10153539174253155", "text": "VACANZE in hotel, scuole di sci e ora anche \u201cescursioni\u201d con guida ai MUSEI, tutto GRATIS, tutto compreso\u2026\nBenvenuti nell\u2019Italia dei Renzi e delle Boldrini... Ma non vale per gli italiani!!!", "post_text": "VACANZE in hotel, scuole di sci e ora anche \u201cescursioni\u201d con guida ai MUSEI, tutto GRATIS, tutto compreso\u2026\nBenvenuti nell\u2019Italia dei Renzi e delle Boldrini... Ma non vale per gli italiani!!!", "shared_text": "", "time": "2016-02-08 13:16:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153539174253155&id=252306033154", "link": null} +{"post_id": "10153539041848155", "text": "Prove tecniche di integrazione, buona visione!", "post_text": "Prove tecniche di integrazione, buona visione!", "shared_text": "", "time": "2016-02-08 12:04:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153539041848155&id=252306033154", "link": null} +{"post_id": "10153535290898155", "text": "Massacrano i piccoli per non toccare i grandi, non sono TASSE ma una RAPINA! Con noi sar\u00e0 RIVOLUZIONE FISCALE: flat tax al 15%, e SI RIPARTE!", "post_text": "Massacrano i piccoli per non toccare i grandi, non sono TASSE ma una RAPINA! Con noi sar\u00e0 RIVOLUZIONE FISCALE: flat tax al 15%, e SI RIPARTE!", "shared_text": "", "time": "2016-02-06 19:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153535290898155&id=252306033154", "link": null} +{"post_id": "10153535484088155", "text": "Un anno fa l'OMICIDIO di David Raggi, sgozzato per strada a Terni da un marocchino, ubriaco e drogato, gi\u00e0 ESPULSO, con una fedina penale lunga tre pagine, eppure ancora libero di circolare in Italia in qualit\u00e0\u2026 Altro di RICHIEDENTE ASILO...!!!\nGli hanno dato solo 30 anni, con il \"rito abbreviato\" si \u00e8 salvato dall'ergastolo: UNA VERGOGNA!\nLa famiglia Raggi ha denunciato Renzi e Alfano: \"\u00c8 morto perch\u00e9 il Governo non ha vigilato\".\nHANNO RAGIONE.", "post_text": "Un anno fa l'OMICIDIO di David Raggi, sgozzato per strada a Terni da un marocchino, ubriaco e drogato, gi\u00e0 ESPULSO, con una fedina penale lunga tre pagine, eppure ancora libero di circolare in Italia in qualit\u00e0\u2026 Altro di RICHIEDENTE ASILO...!!!\nGli hanno dato solo 30 anni, con il \"rito abbreviato\" si \u00e8 salvato dall'ergastolo: UNA VERGOGNA!\nLa famiglia Raggi ha denunciato Renzi e Alfano: \"\u00c8 morto perch\u00e9 il Governo non ha vigilato\".\nHANNO RAGIONE.", "shared_text": "", "time": "2016-02-06 17:29:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153535484088155&id=252306033154", "link": null} +{"post_id": "10153535020448155", "text": "Nooo\u2026 BASTA!!! Con 4 milioni di italiani DISOCCUPATI disposti a fare qualsiasi LAVORO, non posso pi\u00f9 sentire la BARZELLETTA del \u201cmeno male che ci sono gli immigrati che\u2026\u201d!!!", "post_text": "Nooo\u2026 BASTA!!! Con 4 milioni di italiani DISOCCUPATI disposti a fare qualsiasi LAVORO, non posso pi\u00f9 sentire la BARZELLETTA del \u201cmeno male che ci sono gli immigrati che\u2026\u201d!!!", "shared_text": "", "time": "2016-02-06 12:40:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153535020448155&id=252306033154", "link": null} +{"post_id": "10153534811443155", "text": "EQUITALIA e il fisco hanno preso in OSTAGGIO milioni di italiani, non evasori ma persone che non hanno i soldi per pagare.\nCambieremo questo Stato INFAME, cancelleremo questo SCHIFO!", "post_text": "EQUITALIA e il fisco hanno preso in OSTAGGIO milioni di italiani, non evasori ma persone che non hanno i soldi per pagare.\nCambieremo questo Stato INFAME, cancelleremo questo SCHIFO!", "shared_text": "", "time": "2016-02-06 09:05:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153534811443155&id=252306033154", "link": null} +{"post_id": "10153533617058155", "text": "Non moriremo schiavi di questa Europa!\n#pi\u00f9liberipi\u00f9forti", "post_text": "Non moriremo schiavi di questa Europa!\n#pi\u00f9liberipi\u00f9forti", "shared_text": "", "time": "2016-02-05 21:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153533617058155&id=252306033154", "link": null} +{"post_id": "10153533582278155", "text": "Adozioni gay e utero in affitto? NO. Fossi al posto di Renzi, renderei pi\u00f9 veloci e meno costose le adozioni per le MIGLIAIA di COPPIE che stanno aspettando da anni!", "post_text": "Adozioni gay e utero in affitto? NO. Fossi al posto di Renzi, renderei pi\u00f9 veloci e meno costose le adozioni per le MIGLIAIA di COPPIE che stanno aspettando da anni!", "shared_text": "", "time": "2016-02-05 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153533582278155&id=252306033154", "link": null} +{"post_id": "10153533143158155", "text": "Se uno si arricchisce sui clandestini, che chiuda domani mattina, non serve all'Italia!", "post_text": "Se uno si arricchisce sui clandestini, che chiuda domani mattina, non serve all'Italia!", "shared_text": "", "time": "2016-02-05 12:34:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153533143158155&id=252306033154", "link": null} +{"post_id": "10153531282758155", "text": "Amici, ma soprattutto amiche, che cosa rispondiamo a questa \"insegnante\" islamica???", "post_text": "Amici, ma soprattutto amiche, che cosa rispondiamo a questa \"insegnante\" islamica???", "shared_text": "", "time": "2016-02-05 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153531282758155&id=252306033154", "link": null} +{"post_id": "10153531550373155", "text": "E bravo il nostro Renzuccio che si \u00e8 fatto il giocattolino nuovo... Tanto pagano gli italiani!", "post_text": "E bravo il nostro Renzuccio che si \u00e8 fatto il giocattolino nuovo... Tanto pagano gli italiani!", "shared_text": "", "time": "2016-02-04 19:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153531550373155&id=252306033154", "link": null} +{"post_id": "10153531478283155", "text": "Per i sinistri va bene ACCOGLIERE con tutti gli onori il presidente dell'Iran, quello che vorrebbe CANCELLARE Israele dalla faccia della terra. E per qualche benpensante il \"nemico\" sarebbe la Russia...\nOgnuno si sceglie gli \"amici\" che vuole... Io preferisco STARE con PUTIN!", "post_text": "Per i sinistri va bene ACCOGLIERE con tutti gli onori il presidente dell'Iran, quello che vorrebbe CANCELLARE Israele dalla faccia della terra. E per qualche benpensante il \"nemico\" sarebbe la Russia...\nOgnuno si sceglie gli \"amici\" che vuole... Io preferisco STARE con PUTIN!", "shared_text": "", "time": "2016-02-04 14:59:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153531478283155&id=252306033154", "link": null} +{"post_id": "10153531245683155", "text": "Sardegna e Sicilia, trattate come colonie, affondano sotto i colpi di Roma e Bruxelles!", "post_text": "Sardegna e Sicilia, trattate come colonie, affondano sotto i colpi di Roma e Bruxelles!", "shared_text": "", "time": "2016-02-04 12:18:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153531245683155&id=252306033154", "link": null} +{"post_id": "10153530084588155", "text": "Pensionato pestato e derubato... \"\u00c8 colpa sua perch\u00e9 non aveva l'allarme in casa\".\nLibrandi ma vaff...!!!", "post_text": "Pensionato pestato e derubato... \"\u00c8 colpa sua perch\u00e9 non aveva l'allarme in casa\".\nLibrandi ma vaff...!!!", "shared_text": "", "time": "2016-02-03 19:18:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153530084588155&id=252306033154", "link": null} +{"post_id": "10153529321133155", "text": "Nella metro di Monaco, dei \"richiedenti asilo\" prima MOLESTANO una ragazza, poi AGGREDISCONO gli uomini accorsi per difenderla...\nMa avanti cos\u00ec che c'\u00e8 posto! Vi piace l'ACCOGLIENZA a tutti i costi dei Renzi e della Merkel?", "post_text": "Nella metro di Monaco, dei \"richiedenti asilo\" prima MOLESTANO una ragazza, poi AGGREDISCONO gli uomini accorsi per difenderla...\nMa avanti cos\u00ec che c'\u00e8 posto! Vi piace l'ACCOGLIENZA a tutti i costi dei Renzi e della Merkel?", "shared_text": "", "time": "2016-02-03 09:23:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153529321133155&id=252306033154", "link": null} +{"post_id": "10153527897863155", "text": "Tutti giovani, africani, e molto annoiati...\nFare il \"richiedente asilo\" (a spese degli italiani) deve essere dura... Per questo, per passare il tempo, si davano simpaticamente allo SPACCIO di DROGA.\nPer loro, un bel calcio nel c. e poi TUTTI A CASA LORO!", "post_text": "Tutti giovani, africani, e molto annoiati...\nFare il \"richiedente asilo\" (a spese degli italiani) deve essere dura... Per questo, per passare il tempo, si davano simpaticamente allo SPACCIO di DROGA.\nPer loro, un bel calcio nel c. e poi TUTTI A CASA LORO!", "shared_text": "", "time": "2016-02-02 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153527897863155&id=252306033154", "link": null} +{"post_id": "10153528060978155", "text": "\"ZITTA che ti ammazzo!\". Ancora una volta due nostri anziani PICCHIATI e DERUBATI nella loro abitazione.\nL'aggressore? Straniero. Concidenze? No, nell'Italia \"buonista\" entrano cani e porci perch\u00e9 NESSUNO PAGA.", "post_text": "\"ZITTA che ti ammazzo!\". Ancora una volta due nostri anziani PICCHIATI e DERUBATI nella loro abitazione.\nL'aggressore? Straniero. Concidenze? No, nell'Italia \"buonista\" entrano cani e porci perch\u00e9 NESSUNO PAGA.", "shared_text": "", "time": "2016-02-02 15:54:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153528060978155&id=252306033154", "link": null} +{"post_id": "10153527771513155", "text": "Telecamere nascoste, lo SCHIFO dello SPACCIO di eroina nel centro storico di Prato.\nQuante belle \"risorse\" in azione... Fai girare, a questa Italia serve una bella RIPULITA!", "post_text": "Telecamere nascoste, lo SCHIFO dello SPACCIO di eroina nel centro storico di Prato.\nQuante belle \"risorse\" in azione... Fai girare, a questa Italia serve una bella RIPULITA!", "shared_text": "", "time": "2016-02-02 12:13:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153527771513155&id=252306033154", "link": null} +{"post_id": "10153527586218155", "text": "Benvenuti a \"casa ROM\": ammassi di rifiuti che bruciano, accoltellamenti, commerci illegali e allacci abusivi alla corrente, tanto pagano gli italiani... Ma per il tizio del video il problema \u00e8 \"SALVINI che PROVOCA\".\nAppena avremo responsabilit\u00e0 di governo, il Signor ROM stia tranquillo... noi non \"provochiamo\", noi SGOMBERIAMO!", "post_text": "Benvenuti a \"casa ROM\": ammassi di rifiuti che bruciano, accoltellamenti, commerci illegali e allacci abusivi alla corrente, tanto pagano gli italiani... Ma per il tizio del video il problema \u00e8 \"SALVINI che PROVOCA\".\nAppena avremo responsabilit\u00e0 di governo, il Signor ROM stia tranquillo... noi non \"provochiamo\", noi SGOMBERIAMO!", "shared_text": "", "time": "2016-02-02 09:17:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153527586218155&id=252306033154", "link": null} +{"post_id": "10153526380033155", "text": "\"A te poi ti strappo proprio i capelli dalla testa!\" e SCARAVENTA a terra un bambino. Per ora solo arresti domiciliari per questa \"maestra\". Voi che pena suggerireste?", "post_text": "\"A te poi ti strappo proprio i capelli dalla testa!\" e SCARAVENTA a terra un bambino. Per ora solo arresti domiciliari per questa \"maestra\". Voi che pena suggerireste?", "shared_text": "", "time": "2016-02-01 18:18:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153526380033155&id=252306033154", "link": null} +{"post_id": "10153525879068155", "text": "\"Volevo farla FINITA\".\nPICCHIATA e SOTTOMESSA perch\u00e9 si \u00e8 ribellata al matrimonio combinato dal padre. Questa \u00e8 la storia di Amani che ora vive LIBERA con la sua bimba di 3 anni.\nFai girare, finch\u00e9 l'Islam non RISPETTA la DONNA nessuna integrazione \u00e8 possibile!", "post_text": "\"Volevo farla FINITA\".\nPICCHIATA e SOTTOMESSA perch\u00e9 si \u00e8 ribellata al matrimonio combinato dal padre. Questa \u00e8 la storia di Amani che ora vive LIBERA con la sua bimba di 3 anni.\nFai girare, finch\u00e9 l'Islam non RISPETTA la DONNA nessuna integrazione \u00e8 possibile!", "shared_text": "", "time": "2016-02-01 12:41:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153525879068155&id=252306033154", "link": null} +{"post_id": "10153525828498155", "text": "Parla il jihadista pentito: ecco come ci addestriamo in Siria per compiere ATTENTATI in Europa.\nMagari arrivano come \"profughi\" INFILTRATI sui barconi, come ha sottolineato ieri il ministro della Difesa francese. Gli unici che non vedono pericoli sono Renzi e Alfano...", "post_text": "Parla il jihadista pentito: ecco come ci addestriamo in Siria per compiere ATTENTATI in Europa.\nMagari arrivano come \"profughi\" INFILTRATI sui barconi, come ha sottolineato ieri il ministro della Difesa francese. Gli unici che non vedono pericoli sono Renzi e Alfano...", "shared_text": "", "time": "2016-02-01 11:46:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153525828498155&id=252306033154", "link": null} +{"post_id": "10153523937038155", "text": "Se vi avanza un po' di tempo, ecco l'intervista dell'altra sera a \"Virus\" insieme a MARINE LE PEN. Orgoglioso di essere al suo fianco contro l'UNIONE SOVIETICA EUROPEA, riprendiamoci le CHIAVI DI CASA prima che il tetto ci crolli sulla testa!", "post_text": "Se vi avanza un po' di tempo, ecco l'intervista dell'altra sera a \"Virus\" insieme a MARINE LE PEN. Orgoglioso di essere al suo fianco contro l'UNIONE SOVIETICA EUROPEA, riprendiamoci le CHIAVI DI CASA prima che il tetto ci crolli sulla testa!", "shared_text": "", "time": "2016-01-31 18:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153523937038155&id=252306033154", "link": null} +{"post_id": "10153523842378155", "text": "Reggio Emilia, bullizzata, minacciata e mandata all'ospedale dalle coetanee marocchine perch\u00e9 non porta il VELO. La considerano \"impura, mezzo sangue\"... E poi i razzisti sarebbero gli italiani...", "post_text": "Reggio Emilia, bullizzata, minacciata e mandata all'ospedale dalle coetanee marocchine perch\u00e9 non porta il VELO. La considerano \"impura, mezzo sangue\"... E poi i razzisti sarebbero gli italiani...", "shared_text": "", "time": "2016-01-31 12:40:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153523842378155&id=252306033154", "link": null} +{"post_id": "10153522390193155", "text": "Con tutti i problemi che ci sono, DISOCCUPAZIONE, immigrazione, tasse, giovani italiani che scappano all\u2019estero per trovare lavoro, Renzi va a Berlino a calare le braghe e a dire che il vero PROBLEMA dell\u2019Italia e dell\u2019Europa \u00e8 il POPULISMO\u2026\nUn genio, curatelo.", "post_text": "Con tutti i problemi che ci sono, DISOCCUPAZIONE, immigrazione, tasse, giovani italiani che scappano all\u2019estero per trovare lavoro, Renzi va a Berlino a calare le braghe e a dire che il vero PROBLEMA dell\u2019Italia e dell\u2019Europa \u00e8 il POPULISMO\u2026\nUn genio, curatelo.", "shared_text": "", "time": "2016-01-30 17:13:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153522390193155&id=252306033154", "link": null} +{"post_id": "10153522049758155", "text": "Noi non dimentichiamo, GRAZIE ORIANA!\nPer quello che hai fatto, per quello che hai scritto.", "post_text": "Noi non dimentichiamo, GRAZIE ORIANA!\nPer quello che hai fatto, per quello che hai scritto.", "shared_text": "", "time": "2016-01-30 13:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153522049758155&id=252306033154", "link": null} +{"post_id": "10153518162433155", "text": "W la montagna, w il letame.\nAbbasso i nazisti rossi!", "post_text": "W la montagna, w il letame.\nAbbasso i nazisti rossi!", "shared_text": "", "time": "2016-01-28 15:59:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153518162433155&id=252306033154", "link": null} +{"post_id": "10153516642508155", "text": "\"Abbiamo coperto delle statue che rappresentano la nostra CULTURA e la nostra IDENTIT\u00c0. Per non \"imbarazzare\" il leader iraniano abbiamo IMBARAZZATO TUTTI gli ITALIANI!\".\nIo sto con Myrta!\nRenzi IPOCRITA e RIDICOLO... Se anche tu sei d'accordo, fai girare!", "post_text": "\"Abbiamo coperto delle statue che rappresentano la nostra CULTURA e la nostra IDENTIT\u00c0. Per non \"imbarazzare\" il leader iraniano abbiamo IMBARAZZATO TUTTI gli ITALIANI!\".\nIo sto con Myrta!\nRenzi IPOCRITA e RIDICOLO... Se anche tu sei d'accordo, fai girare!", "shared_text": "", "time": "2016-01-27 22:45:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153516642508155&id=252306033154", "link": null} +{"post_id": "10153516013918155", "text": "Il sindaco di TARVISIO, ai nostri confini (COLABRODO) con l'Austria: \"Dovremmo sospendere SCHENGEN o fare controlli pi\u00f9 rigidi. \u00c8 chiaro che se gli altri chiudono, i profughi arriveranno tutti da noi. Sanno che\u2026 Altro qui ci sono tempistiche molto pi\u00f9 lente sulla richiesta d'asilo e addirittura possono fare ricorso al TAR...\". E il Friuli-Venezia Giulia potrebbe diventare il pi\u00f9 grande campo profughi d'Europa. Avanti c'\u00e8 posto... Grazie RENZI!!!", "post_text": "Il sindaco di TARVISIO, ai nostri confini (COLABRODO) con l'Austria: \"Dovremmo sospendere SCHENGEN o fare controlli pi\u00f9 rigidi. \u00c8 chiaro che se gli altri chiudono, i profughi arriveranno tutti da noi. Sanno che\u2026 Altro qui ci sono tempistiche molto pi\u00f9 lente sulla richiesta d'asilo e addirittura possono fare ricorso al TAR...\". E il Friuli-Venezia Giulia potrebbe diventare il pi\u00f9 grande campo profughi d'Europa. Avanti c'\u00e8 posto... Grazie RENZI!!!", "shared_text": "", "time": "2016-01-27 15:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153516013918155&id=252306033154", "link": null} +{"post_id": "10153515748903155", "text": "Secondo una BANCA SVIZZERA dobbiamo riempirci di MILIONI di IMMIGRATI, \"ce n'\u00e8 bisogno\"...!\nNon sarebbe meglio favorire le COPPIE ITALIANE e, ad esempio, rendere GRATUITI gli ASILI NIDO fino a 2 anni, come in Francia, per riempire qualche culla in pi\u00f9???", "post_text": "Secondo una BANCA SVIZZERA dobbiamo riempirci di MILIONI di IMMIGRATI, \"ce n'\u00e8 bisogno\"...!\nNon sarebbe meglio favorire le COPPIE ITALIANE e, ad esempio, rendere GRATUITI gli ASILI NIDO fino a 2 anni, come in Francia, per riempire qualche culla in pi\u00f9???", "shared_text": "", "time": "2016-01-27 12:09:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153515748903155&id=252306033154", "link": null} +{"post_id": "10153514803458155", "text": "Buongiorno amici \u201crazzisti, populisti, xenofobi, fascisti, leghisti e sessisti\u201d, che cosa rispondiamo a questi quattro SFIGATI di \u201cMaiconSalvini&LePen\u201d?", "post_text": "Buongiorno amici \u201crazzisti, populisti, xenofobi, fascisti, leghisti e sessisti\u201d, che cosa rispondiamo a questi quattro SFIGATI di \u201cMaiconSalvini&LePen\u201d?", "shared_text": "", "time": "2016-01-27 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153514803458155&id=252306033154", "link": null} +{"post_id": "10153514348988155", "text": "L'amico di Renzi ci spiega che \"cambiare le regole sulla LEGITTIMA DIFESA sarebbe un pericolo per i nostri bambini...\". Ma quelli del PD non si vergognano a dire certe cazzate?\nFai girare, io sto con Adriano!", "post_text": "L'amico di Renzi ci spiega che \"cambiare le regole sulla LEGITTIMA DIFESA sarebbe un pericolo per i nostri bambini...\". Ma quelli del PD non si vergognano a dire certe cazzate?\nFai girare, io sto con Adriano!", "shared_text": "", "time": "2016-01-26 19:40:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153514348988155&id=252306033154", "link": null} +{"post_id": "10153514189173155", "text": "Prima il bimbo che piange!\nDa TRIESTE, tante famiglie e persone perbene che non si arrendono!\nCambieremo tutto, Renzi stiamo arrivando!", "post_text": "Prima il bimbo che piange!\nDa TRIESTE, tante famiglie e persone perbene che non si arrendono!\nCambieremo tutto, Renzi stiamo arrivando!", "shared_text": "", "time": "2016-01-26 18:06:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153514189173155&id=252306033154", "link": null} +{"post_id": "10153513740633155", "text": "Un saluto dal confine con la SLOVENIA: chilometri e chilometri SGUARNITI, indumenti, coperte, scarpe sparsi ovunque... Grazie al governo Renzalfano, qui ENTRA ed ESCE chi vuole... altro che controlli alle frontiere!!! Fai girare!", "post_text": "Un saluto dal confine con la SLOVENIA: chilometri e chilometri SGUARNITI, indumenti, coperte, scarpe sparsi ovunque... Grazie al governo Renzalfano, qui ENTRA ed ESCE chi vuole... altro che controlli alle frontiere!!! Fai girare!", "shared_text": "", "time": "2016-01-26 13:29:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153513740633155&id=252306033154", "link": null} +{"post_id": "10153513667928155", "text": "Antonio, operaio metalmeccanico, \u00e8 una delle tante vittime della STRAMALEDETTA legge Fornero. Dovr\u00e0 arrivare a versare quasi 50 ANNI di contributi prima di poter andare in pensione!\nUn Governo serio cancellerebbe subito questa INGIUSTIZIA ma per Renzino ci sono altre priorit\u00e0...", "post_text": "Antonio, operaio metalmeccanico, \u00e8 una delle tante vittime della STRAMALEDETTA legge Fornero. Dovr\u00e0 arrivare a versare quasi 50 ANNI di contributi prima di poter andare in pensione!\nUn Governo serio cancellerebbe subito questa INGIUSTIZIA ma per Renzino ci sono altre priorit\u00e0...", "shared_text": "", "time": "2016-01-26 12:35:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153513667928155&id=252306033154", "link": null} +{"post_id": "10153512618818155", "text": "Io sono per il RISPETTO e la LIBERT\u00c0 di scelta di CHIUNQUE su come e con chi affrontare la propria vita sentimentale, per\u00f2 il bambino, almeno nel momento in cui nasce, ha diritto a conoscere una MAMMA ed un\u2026 Altro PAP\u00c0.\nE \"al presidente\" BOLDRINI dico: anzich\u00e9 delle ADOZIONI GAY (che per te sono \"NATURALI\") preoccupati della LEGGE FORNERO, anche se non riguarda te che HAI IL CULO AL CALDO!!!", "post_text": "Io sono per il RISPETTO e la LIBERT\u00c0 di scelta di CHIUNQUE su come e con chi affrontare la propria vita sentimentale, per\u00f2 il bambino, almeno nel momento in cui nasce, ha diritto a conoscere una MAMMA ed un\u2026 Altro PAP\u00c0.\nE \"al presidente\" BOLDRINI dico: anzich\u00e9 delle ADOZIONI GAY (che per te sono \"NATURALI\") preoccupati della LEGGE FORNERO, anche se non riguarda te che HAI IL CULO AL CALDO!!!", "shared_text": "", "time": "2016-01-25 22:13:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153512618818155&id=252306033154", "link": null} +{"post_id": "10153512139378155", "text": "Noi NON dimentichiamo... e LA CANCELLEREMO!", "post_text": "Noi NON dimentichiamo... e LA CANCELLEREMO!", "shared_text": "", "time": "2016-01-25 17:47:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153512139378155&id=252306033154", "link": null} +{"post_id": "10153511939493155", "text": "Parla una delle vittime dei banditi dell'Est dell'Audi gialla: \u201cTanta RABBIA e SCHIFO, in Italia non vengono tutelati i cittadini perbene, ci DEVASTERANNO!\u201d.\nHa ragione, la soluzione si chiama CERTEZZA della\u2026 Altro PENA, pi\u00f9 RISORSE per le Forze dell'ordine e LEGGI PI\u00d9 GIUSTE a difesa della propriet\u00e0 privata! E per chi ci riprova BUTTARE LA CHIAVE!", "post_text": "Parla una delle vittime dei banditi dell'Est dell'Audi gialla: \u201cTanta RABBIA e SCHIFO, in Italia non vengono tutelati i cittadini perbene, ci DEVASTERANNO!\u201d.\nHa ragione, la soluzione si chiama CERTEZZA della\u2026 Altro PENA, pi\u00f9 RISORSE per le Forze dell'ordine e LEGGI PI\u00d9 GIUSTE a difesa della propriet\u00e0 privata! E per chi ci riprova BUTTARE LA CHIAVE!", "shared_text": "", "time": "2016-01-25 15:10:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153511939493155&id=252306033154", "link": null} +{"post_id": "10153511790328155", "text": "La settimana comincia con l'ARRESTO di un marocchino in provincia di Cosenza. Commerciante ambulante con il PERMESSO di SOGGIORNO ma anche, secondo la Polizia, aspirante \"COMBATTENTE ISLAMICO\" con la volont\u00e0 di\u2026 Altro andare ad ammazzare gli \"infedeli\" in Siria.\nUn GRAZIE alle Forze dell'ordine ma la domanda \u00e8: quanti altri, come lui, ne ha fatti entrare questo governo di INETTI? Intervenire, controllare, bloccare ed espellere: SUBITO prima che sia troppo tardi!", "post_text": "La settimana comincia con l'ARRESTO di un marocchino in provincia di Cosenza. Commerciante ambulante con il PERMESSO di SOGGIORNO ma anche, secondo la Polizia, aspirante \"COMBATTENTE ISLAMICO\" con la volont\u00e0 di\u2026 Altro andare ad ammazzare gli \"infedeli\" in Siria.\nUn GRAZIE alle Forze dell'ordine ma la domanda \u00e8: quanti altri, come lui, ne ha fatti entrare questo governo di INETTI? Intervenire, controllare, bloccare ed espellere: SUBITO prima che sia troppo tardi!", "shared_text": "", "time": "2016-01-25 13:27:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153511790328155&id=252306033154", "link": null} +{"post_id": "10153510519568155", "text": "In 30 secondi ecco la mia opinione su Renzi, Schengen e i controlli alle nostre frontiere...", "post_text": "In 30 secondi ecco la mia opinione su Renzi, Schengen e i controlli alle nostre frontiere...", "shared_text": "", "time": "2016-01-25 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153510519568155&id=252306033154", "link": null} +{"post_id": "10153510582828155", "text": "Il senatore della Lega Stefano Candiani, insieme a Nicola Porro, vi spiega i \"nobili motivi\" del sostegno del profugo Verdini e di poltronari vari alle \"riforme\" di Renzi... Istruttivo!", "post_text": "Il senatore della Lega Stefano Candiani, insieme a Nicola Porro, vi spiega i \"nobili motivi\" del sostegno del profugo Verdini e di poltronari vari alle \"riforme\" di Renzi... Istruttivo!", "shared_text": "", "time": "2016-01-24 21:45:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153510582828155&id=252306033154", "link": null} +{"post_id": "10153508586518155", "text": "Nella metro di Stoccolma un'eroica MAMMA, con BIMBI, sventa un furto ai danni di un'anziana: il ladro prima la COLPISCE IN FACCIA, poi allo STOMACO e poi, non contento, torna indietro e le SPUTA addosso.\nPare\u2026 Altro che lo SCHIFOSO sia un \"richiedente asilo\" nordafricano... Che strano, vero?\nVIA, VIA, VIA! In Italia e in Europa non abbiamo bisogno di questa GENTAGLIA!", "post_text": "Nella metro di Stoccolma un'eroica MAMMA, con BIMBI, sventa un furto ai danni di un'anziana: il ladro prima la COLPISCE IN FACCIA, poi allo STOMACO e poi, non contento, torna indietro e le SPUTA addosso.\nPare\u2026 Altro che lo SCHIFOSO sia un \"richiedente asilo\" nordafricano... Che strano, vero?\nVIA, VIA, VIA! In Italia e in Europa non abbiamo bisogno di questa GENTAGLIA!", "shared_text": "", "time": "2016-01-24 10:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153508586518155&id=252306033154", "link": null} +{"post_id": "10153508372243155", "text": "Renzi contestato oggi a Mantova con tanto di striscione \"Ciocapi\u00e0t\" (ciarlatano). Protesta, civilmente, anche un medico, ma il nostro cuor di leone ha preferito rifugiarsi in un teatro e poi darsela a gambe, \"\u2026 Altroin visita privata\". Niente male per uno che diceva \"non voglio la scorta, LA MIA SCORTA \u00c8 LA GENTE!\". Oltre che incapace, anche VIGLIACCO.\n(Fonte: http://video.gelocal.it/gazzettadimantova/locale/la-contestazione-del-medico-di-famiglia-la-sanita-pubblica-va-a-rotoli/51180/51266)", "post_text": "Renzi contestato oggi a Mantova con tanto di striscione \"Ciocapi\u00e0t\" (ciarlatano). Protesta, civilmente, anche un medico, ma il nostro cuor di leone ha preferito rifugiarsi in un teatro e poi darsela a gambe, \"\u2026 Altroin visita privata\". Niente male per uno che diceva \"non voglio la scorta, LA MIA SCORTA \u00c8 LA GENTE!\". Oltre che incapace, anche VIGLIACCO.\n(Fonte: http://video.gelocal.it/gazzettadimantova/locale/la-contestazione-del-medico-di-famiglia-la-sanita-pubblica-va-a-rotoli/51180/51266)", "shared_text": "", "time": "2016-01-23 17:36:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153508372243155&id=252306033154", "link": "http://video.gelocal.it/gazzettadimantova/locale/la-contestazione-del-medico-di-famiglia-la-sanita-pubblica-va-a-rotoli/51180/51266?fbclid=IwAR26w4N-v-eMJoAdW8zlnz3qwwLPVTGknwJk7pzVWqp-oxOpK8foldDuhZY"} +{"post_id": "10153507944258155", "text": "A Monteforte Irpino, in provincia di Avellino, 25 carabinieri per sedare la RIVOLTA di un centinaio di presunti profughi che si lamentavano dell\u2019accoglienza italiana GETTANDO VIA IL CIBO DALLE FINESTRE?\nQuesti NON MERITANO di stare un minuto in pi\u00f9 in Italia: sul primo aereo e TUTTI A CASA LORO!", "post_text": "A Monteforte Irpino, in provincia di Avellino, 25 carabinieri per sedare la RIVOLTA di un centinaio di presunti profughi che si lamentavano dell\u2019accoglienza italiana GETTANDO VIA IL CIBO DALLE FINESTRE?\nQuesti NON MERITANO di stare un minuto in pi\u00f9 in Italia: sul primo aereo e TUTTI A CASA LORO!", "shared_text": "", "time": "2016-01-23 12:54:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153507944258155&id=252306033154", "link": null} +{"post_id": "10153506168123155", "text": "Dopo quattro anni di governo PD e tante idiozie votate in Europa, se Renzi avesse un minimo di responsabilit\u00e0 alzerebbe la testa e voterebbe contro le \"direttive\" europee che ci stanno UCCIDENDO: NO al rinnovo\u2026 Altro delle sanzioni contro la Russia, VIA la legge Fornero e VIA gli studi di settore. A Bruxelles non sta bene? CHISSENEFREGA!", "post_text": "Dopo quattro anni di governo PD e tante idiozie votate in Europa, se Renzi avesse un minimo di responsabilit\u00e0 alzerebbe la testa e voterebbe contro le \"direttive\" europee che ci stanno UCCIDENDO: NO al rinnovo\u2026 Altro delle sanzioni contro la Russia, VIA la legge Fornero e VIA gli studi di settore. A Bruxelles non sta bene? CHISSENEFREGA!", "shared_text": "", "time": "2016-01-22 12:41:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153506168123155&id=252306033154", "link": null} +{"post_id": "10153505939788155", "text": "RUSPA!", "post_text": "RUSPA!", "shared_text": "", "time": "2016-01-22 09:30:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153505939788155&id=252306033154", "link": null} +{"post_id": "10153504395308155", "text": "\"Per i profughi accoglienza, per me il baratro\". Questa \u00e8 la giornata di Francesco, che ha perso il lavoro perch\u00e9 troppo vecchio (ma troppo giovane per la pensione), poi la casa, poi la famiglia. La mia priorit\u00e0 se fossi al posto di Renzi? Restituire LAVORO e DIGNIT\u00c0 agli italiani, tutto il resto viene DOPO!", "post_text": "\"Per i profughi accoglienza, per me il baratro\". Questa \u00e8 la giornata di Francesco, che ha perso il lavoro perch\u00e9 troppo vecchio (ma troppo giovane per la pensione), poi la casa, poi la famiglia. La mia priorit\u00e0 se fossi al posto di Renzi? Restituire LAVORO e DIGNIT\u00c0 agli italiani, tutto il resto viene DOPO!", "shared_text": "", "time": "2016-01-21 14:26:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153504395308155&id=252306033154", "link": null} +{"post_id": "10153504244303155", "text": "Secondo l'esponente del PD l'Europa per noi \u00e8 stata \"CONVENIENTE\"... Guarda caso a crescere sono i Paesi che si sono tenuti (ben stretta) la loro moneta... Riprendiamoci la nostra SOVRANIT\u00c0 prima che sia troppo tardi!", "post_text": "Secondo l'esponente del PD l'Europa per noi \u00e8 stata \"CONVENIENTE\"... Guarda caso a crescere sono i Paesi che si sono tenuti (ben stretta) la loro moneta... Riprendiamoci la nostra SOVRANIT\u00c0 prima che sia troppo tardi!", "shared_text": "", "time": "2016-01-21 12:31:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153504244303155&id=252306033154", "link": null} +{"post_id": "10153504055893155", "text": "RUSPA!", "post_text": "RUSPA!", "shared_text": "", "time": "2016-01-21 09:21:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153504055893155&id=252306033154", "link": null} +{"post_id": "10153502941453155", "text": "Al compagno Chicco Testa, detto Mister Spocchia, ho risposto per le rime... Non sopporto l'ARROGANZA!\nHo fatto bene???", "post_text": "Al compagno Chicco Testa, detto Mister Spocchia, ho risposto per le rime... Non sopporto l'ARROGANZA!\nHo fatto bene???", "shared_text": "", "time": "2016-01-20 19:27:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153502941453155&id=252306033154", "link": null} +{"post_id": "10153502699193155", "text": "L'Imam vi spiega perch\u00e9 le donne non sono adatte come testimoni in tribunale: hanno un cervello inferiore (tutto scientifico, eh?). Buona integrazione a tutti!\nP.s. Consiglio CONDIVISIONE del video su bacheche buoniste e magari femministe!", "post_text": "L'Imam vi spiega perch\u00e9 le donne non sono adatte come testimoni in tribunale: hanno un cervello inferiore (tutto scientifico, eh?). Buona integrazione a tutti!\nP.s. Consiglio CONDIVISIONE del video su bacheche buoniste e magari femministe!", "shared_text": "", "time": "2016-01-20 16:57:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153502699193155&id=252306033154", "link": null} +{"post_id": "10153502376438155", "text": "Non solo i nostri giovani sono costretti ad andare all'estero per cercare lavoro: i nostri PENSIONATI scappano in ALBANIA per poter sopravvivere! Non vedo l'ora di mandare a casa un governo che ODIA gli italiani! Dai, INSIEME si pu\u00f2!", "post_text": "Non solo i nostri giovani sono costretti ad andare all'estero per cercare lavoro: i nostri PENSIONATI scappano in ALBANIA per poter sopravvivere! Non vedo l'ora di mandare a casa un governo che ODIA gli italiani! Dai, INSIEME si pu\u00f2!", "shared_text": "", "time": "2016-01-20 14:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153502376438155&id=252306033154", "link": null} +{"post_id": "10153502148838155", "text": "Strasburgo, RENZI NON C'\u00c8.\nInvece di fingere di litigare con l'Europa, venga qui a riprendersi almeno 1 dei 63 MILIARDI REGALATI da Monti, Letta e Renzi per SALVARE LE BANCHE degli altri.\nCaro Renzi, se vieni qui a riprenderti i soldi degli italiani noi ti diamo una mano, altrimenti rimani solo un CHIACCHIERONE!", "post_text": "Strasburgo, RENZI NON C'\u00c8.\nInvece di fingere di litigare con l'Europa, venga qui a riprendersi almeno 1 dei 63 MILIARDI REGALATI da Monti, Letta e Renzi per SALVARE LE BANCHE degli altri.\nCaro Renzi, se vieni qui a riprenderti i soldi degli italiani noi ti diamo una mano, altrimenti rimani solo un CHIACCHIERONE!", "shared_text": "", "time": "2016-01-20 10:58:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153502148838155&id=252306033154", "link": null} +{"post_id": "10153501368723155", "text": "Come non essere d'accordo con il grande Vittorio Sgarbi, fate girare!\n(Qui intervento completo: http://bit.ly/1V6hmWy)", "post_text": "Come non essere d'accordo con il grande Vittorio Sgarbi, fate girare!\n(Qui intervento completo: http://bit.ly/1V6hmWy)", "shared_text": "", "time": "2016-01-20 09:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153501368723155&id=252306033154", "link": "https://bit.ly/1V6hmWy?fbclid=IwAR3nQGVm-qcVMXSEW9HPJ2moul39zx96dqarce9h1f8NoCkT0DHLAmqo9x0"} +{"post_id": "10153501060813155", "text": "In Europa chiudono le frontiere, in Italia entrano cani e porci! Non vedo l'ora di prendere il posto degli INCAPACI Renzi e Alfano per restituire SOVRANIT\u00c0 e TRANQUILLIT\u00c0 alla nostra gente!", "post_text": "In Europa chiudono le frontiere, in Italia entrano cani e porci! Non vedo l'ora di prendere il posto degli INCAPACI Renzi e Alfano per restituire SOVRANIT\u00c0 e TRANQUILLIT\u00c0 alla nostra gente!", "shared_text": "", "time": "2016-01-19 18:34:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153501060813155&id=252306033154", "link": null} +{"post_id": "10153500720448155", "text": "La Fornero la manderei a PANE E ACQUA su un'isola deserta, visto che ha ROVINATO la vita a milioni di italiani! E a farle compagnia anche la parlamentare del PD che sostiene sia praticamente tutto risolto! VERGOGNA!", "post_text": "La Fornero la manderei a PANE E ACQUA su un'isola deserta, visto che ha ROVINATO la vita a milioni di italiani! E a farle compagnia anche la parlamentare del PD che sostiene sia praticamente tutto risolto! VERGOGNA!", "shared_text": "", "time": "2016-01-19 14:51:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153500720448155&id=252306033154", "link": null} +{"post_id": "10153500477653155", "text": "\"Non pago le tasse per pagare i dipendenti, se no muore l'azienda\". Questo imprenditore HA RAGIONE! Autodifesa contro lo Stato Ladro! Siete d'accordo?", "post_text": "\"Non pago le tasse per pagare i dipendenti, se no muore l'azienda\". Questo imprenditore HA RAGIONE! Autodifesa contro lo Stato Ladro! Siete d'accordo?", "shared_text": "", "time": "2016-01-19 11:59:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153500477653155&id=252306033154", "link": null} +{"post_id": "10153500425403155", "text": "I rom non vogliono lo sgombero: \"Ci piace vivere cos\u00ec, inutile tentare di civilizzarci\". Tra furti, copertoni che bruciano e accoltellamenti. Per la felicit\u00e0 dei milanesi che abitano in zona... RUSPA!!!", "post_text": "I rom non vogliono lo sgombero: \"Ci piace vivere cos\u00ec, inutile tentare di civilizzarci\". Tra furti, copertoni che bruciano e accoltellamenti. Per la felicit\u00e0 dei milanesi che abitano in zona... RUSPA!!!", "shared_text": "", "time": "2016-01-19 10:54:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153500425403155&id=252306033154", "link": null} +{"post_id": "10153499336238155", "text": "Risparmiatori FREGATI, la ferita di Banca ETRURIA ancora aperta e questi vogliono mettere le mani sulle piccole banche locali che ancora funzionano! NOI CI OPPORREMO con tutti i mezzi!\nAnzich\u00e9 occuparsi di\u2026 Altro adozioni gay e cittadinanza facile ai figli degli immigrati, Renzi pensi a RISARCIRE le decine di migliaia di italiani TRUFFATI!", "post_text": "Risparmiatori FREGATI, la ferita di Banca ETRURIA ancora aperta e questi vogliono mettere le mani sulle piccole banche locali che ancora funzionano! NOI CI OPPORREMO con tutti i mezzi!\nAnzich\u00e9 occuparsi di\u2026 Altro adozioni gay e cittadinanza facile ai figli degli immigrati, Renzi pensi a RISARCIRE le decine di migliaia di italiani TRUFFATI!", "shared_text": "", "time": "2016-01-18 19:42:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153499336238155&id=252306033154", "link": null} +{"post_id": "10153498878623155", "text": "Dipendenti pubblici che timbrano il cartellino e poi se ne vanno a fare la spesa?\nA CASA SUBITO! In un'azienda privata verrebbero CACCIATI A PEDATE in 24 ore, abbiamo milioni di ragazzi VENTENNI DA ASSUMERE al posto loro!", "post_text": "Dipendenti pubblici che timbrano il cartellino e poi se ne vanno a fare la spesa?\nA CASA SUBITO! In un'azienda privata verrebbero CACCIATI A PEDATE in 24 ore, abbiamo milioni di ragazzi VENTENNI DA ASSUMERE al posto loro!", "shared_text": "", "time": "2016-01-18 14:51:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153498878623155&id=252306033154", "link": null} +{"post_id": "10153498632443155", "text": "Che cosa vuol dire gestire un\u2019attivit\u00e0 commerciale e RESISTERE tra TASSE INGIUSTE e BUROCRAZIA, ce lo spiega in 2 minuti Carlo, proprietario da 27 anni di un bar a Milano.\nFacciamo girare, alla faccia dei sinistri che parlano a vanvera di EVASIONE e magari campano grazie allo STATO LADRO!", "post_text": "Che cosa vuol dire gestire un\u2019attivit\u00e0 commerciale e RESISTERE tra TASSE INGIUSTE e BUROCRAZIA, ce lo spiega in 2 minuti Carlo, proprietario da 27 anni di un bar a Milano.\nFacciamo girare, alla faccia dei sinistri che parlano a vanvera di EVASIONE e magari campano grazie allo STATO LADRO!", "shared_text": "", "time": "2016-01-18 11:58:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153498632443155&id=252306033154", "link": null} +{"post_id": "10153497144943155", "text": "Timbri e vai al mare? Licenziare SUBITO! Ci sono MILIONI di italiani che pagherebbero oro per poter timbrare un cartellino tutti i giorni!", "post_text": "Timbri e vai al mare? Licenziare SUBITO! Ci sono MILIONI di italiani che pagherebbero oro per poter timbrare un cartellino tutti i giorni!", "shared_text": "", "time": "2016-01-17 18:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153497144943155&id=252306033154", "link": null} +{"post_id": "10153494872488155", "text": "Per l\u2019angolo \u201cbuonista\u201d, ecco il video del tentativo (fallito) di integrazione tra Baudo e questa donna islamica. Mah\u2026 A voi i commenti!!!", "post_text": "Per l\u2019angolo \u201cbuonista\u201d, ecco il video del tentativo (fallito) di integrazione tra Baudo e questa donna islamica. Mah\u2026 A voi i commenti!!!", "shared_text": "", "time": "2016-01-16 14:20:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153494872488155&id=252306033154", "link": null} +{"post_id": "10153492953078155", "text": "Ascoltate le LEZIONI dell'imam in tiv\u00f9 su come PICCHIARE UNA DONNA, \"senza lasciare segni\", magari con un \"bastone piccolo\"... lei \"ha bisogno di ESSERE EDUCATA\". Non contento, precisa che il rispetto per la\u2026 Altro donna nell'Islam \"\u00e8 evidente\" (!) perch\u00e9 la punizione corporale \u00e8 permessa \"solo\" se si rifiuta di andare a letto col marito...\nAvete capito bene? Secondo me, chi meriterebbe un bell'INSEGNAMENTO sono questo \"signore\" e quelli che la pensano come lui... A base di tanti CALCI NEL C.!!!", "post_text": "Ascoltate le LEZIONI dell'imam in tiv\u00f9 su come PICCHIARE UNA DONNA, \"senza lasciare segni\", magari con un \"bastone piccolo\"... lei \"ha bisogno di ESSERE EDUCATA\". Non contento, precisa che il rispetto per la\u2026 Altro donna nell'Islam \"\u00e8 evidente\" (!) perch\u00e9 la punizione corporale \u00e8 permessa \"solo\" se si rifiuta di andare a letto col marito...\nAvete capito bene? Secondo me, chi meriterebbe un bell'INSEGNAMENTO sono questo \"signore\" e quelli che la pensano come lui... A base di tanti CALCI NEL C.!!!", "shared_text": "", "time": "2016-01-15 18:51:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153492953078155&id=252306033154", "link": null} +{"post_id": "10153492648793155", "text": "\"Se sei donna devi COPRIRTI, se no provochi\". CAPITO amiche??? Se non vi mettete il velo, poi non lamentatevi se qualcuno vi molesta! E le violenze sessuali di Colonia a Capodanno? Gli intervistati non ne hanno sentito parlare... Non rispetti le donne? O cambi idea e ti adegui alla nostra cultura, o te ne torni al tuo Paese!", "post_text": "\"Se sei donna devi COPRIRTI, se no provochi\". CAPITO amiche??? Se non vi mettete il velo, poi non lamentatevi se qualcuno vi molesta! E le violenze sessuali di Colonia a Capodanno? Gli intervistati non ne hanno sentito parlare... Non rispetti le donne? O cambi idea e ti adegui alla nostra cultura, o te ne torni al tuo Paese!", "shared_text": "", "time": "2016-01-15 10:43:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153492648793155&id=252306033154", "link": null} +{"post_id": "10153491675168155", "text": "Giuseppe, terremotato emiliano, combatte da 4 anni per rientrare in casa sua: per un cavillo burocratico gli negano i fondi per la ricostruzione e per il dispiacere si ammala e muore. E la moglie, a 71 anni, dovr\u00e0 continuare a vivere nel container. Uno Stato che TORTURA in questo modo i suoi cittadini A ME FA SCHIFO!!!", "post_text": "Giuseppe, terremotato emiliano, combatte da 4 anni per rientrare in casa sua: per un cavillo burocratico gli negano i fondi per la ricostruzione e per il dispiacere si ammala e muore. E la moglie, a 71 anni, dovr\u00e0 continuare a vivere nel container. Uno Stato che TORTURA in questo modo i suoi cittadini A ME FA SCHIFO!!!", "shared_text": "", "time": "2016-01-14 20:54:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153491675168155&id=252306033154", "link": null} +{"post_id": "10153490939828155", "text": "Per difendersi da tasse FOLLI e INGIUSTE, questo imprenditore prima paga dipendenti e fornitori, poi il fisco. Non \u00e8 evasione, \u00e8 SOPRAVVIVENZA! Contro lo Stato ladro serve subito la rivoluzione fiscale della flat tax al 15%: pagare meno, pagare tutti!", "post_text": "Per difendersi da tasse FOLLI e INGIUSTE, questo imprenditore prima paga dipendenti e fornitori, poi il fisco. Non \u00e8 evasione, \u00e8 SOPRAVVIVENZA! Contro lo Stato ladro serve subito la rivoluzione fiscale della flat tax al 15%: pagare meno, pagare tutti!", "shared_text": "", "time": "2016-01-14 12:22:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153490939828155&id=252306033154", "link": null} +{"post_id": "10153489843503155", "text": "Gli negano il permesso di soggiorno, per protesta gira NUDO per Palermo. La Polizia lo ha fermato, io lo RISPEDIREI AL VOLO al suo Paese. E chiss\u00e0, se l\u00e0 gira nudo, che fine fa...", "post_text": "Gli negano il permesso di soggiorno, per protesta gira NUDO per Palermo. La Polizia lo ha fermato, io lo RISPEDIREI AL VOLO al suo Paese. E chiss\u00e0, se l\u00e0 gira nudo, che fine fa...", "shared_text": "", "time": "2016-01-13 21:04:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153489843503155&id=252306033154", "link": null} +{"post_id": "10153489599538155", "text": "Questo signore ospita nel proprio agriturismo una quarantina di \"profughi\" minorenni. Prima nega spazientito, poi ammette di ricevere 80 euro al giorno per ogni ragazzo, quasi 100 MILA EURO AL MESE di soldi\u2026 Altro pubblici!\nAPPLAUSI!!! Facile essere accoglienti quando a pagare il conto sono gli italiani... E poi sarei io a \"tradire il Paese\"! Ma vergognati!!!", "post_text": "Questo signore ospita nel proprio agriturismo una quarantina di \"profughi\" minorenni. Prima nega spazientito, poi ammette di ricevere 80 euro al giorno per ogni ragazzo, quasi 100 MILA EURO AL MESE di soldi\u2026 Altro pubblici!\nAPPLAUSI!!! Facile essere accoglienti quando a pagare il conto sono gli italiani... E poi sarei io a \"tradire il Paese\"! Ma vergognati!!!", "shared_text": "", "time": "2016-01-13 19:06:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153489599538155&id=252306033154", "link": null} +{"post_id": "10153489190118155", "text": "PAZZESCO! 14 presunti profughi, tutti maschi adulti, in un solo appartamento, fra vicine di casa arrabbiate, proprio davanti a una scuola elementare. E la solita cooperativa ci guadagna... BASTA!!!", "post_text": "PAZZESCO! 14 presunti profughi, tutti maschi adulti, in un solo appartamento, fra vicine di casa arrabbiate, proprio davanti a una scuola elementare. E la solita cooperativa ci guadagna... BASTA!!!", "shared_text": "", "time": "2016-01-13 15:04:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153489190118155&id=252306033154", "link": null} +{"post_id": "10153488896293155", "text": "Che integrazione ci pu\u00f2 essere se mandi 500 \"profughi\" in un paese di 190 abitanti? Al governo abbiamo dei GENI...", "post_text": "Che integrazione ci pu\u00f2 essere se mandi 500 \"profughi\" in un paese di 190 abitanti? Al governo abbiamo dei GENI...", "shared_text": "", "time": "2016-01-13 12:31:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153488896293155&id=252306033154", "link": null} +{"post_id": "10153488789633155", "text": "Caserta come Colonia, due nigeriani, presunti \"profughi\", chiedono \"aiuto psicologico\" e, come ringraziamento, che cosa fanno? Tentano di VIOLENTARE la psicologa! RISPEDIRLI SUBITO A CASA a calci nel c.!", "post_text": "Caserta come Colonia, due nigeriani, presunti \"profughi\", chiedono \"aiuto psicologico\" e, come ringraziamento, che cosa fanno? Tentano di VIOLENTARE la psicologa! RISPEDIRLI SUBITO A CASA a calci nel c.!", "shared_text": "", "time": "2016-01-13 10:15:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153488789633155&id=252306033154", "link": null} +{"post_id": "10153487583553155", "text": "GUARDATE la giornalista sinistra, lei RIDE, \u00e8 troppo colta per informarsi su Internet.\nForse, se si abbassasse al nostro livello, scoprirebbe che la CASTRAZIONE CHIMICA per stupratori e pedofili \u00e8 applicata da\u2026 Altro anni in tanti civilissimi Paesi in tutto il mondo. Per me, uno che mette le mani addosso a un bambino o a una donna non \u00e8 RECUPERABILE, \u00e8 solo CURABILE!", "post_text": "GUARDATE la giornalista sinistra, lei RIDE, \u00e8 troppo colta per informarsi su Internet.\nForse, se si abbassasse al nostro livello, scoprirebbe che la CASTRAZIONE CHIMICA per stupratori e pedofili \u00e8 applicata da\u2026 Altro anni in tanti civilissimi Paesi in tutto il mondo. Per me, uno che mette le mani addosso a un bambino o a una donna non \u00e8 RECUPERABILE, \u00e8 solo CURABILE!", "shared_text": "", "time": "2016-01-12 21:01:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153487583553155&id=252306033154", "link": null} +{"post_id": "10153487341063155", "text": "La Lega NON molla: CLANDESTINO \u00c8 REATO! E Renzi \u00e8 AVVISATO!", "post_text": "La Lega NON molla: CLANDESTINO \u00c8 REATO! E Renzi \u00e8 AVVISATO!", "shared_text": "", "time": "2016-01-12 19:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153487341063155&id=252306033154", "link": null} +{"post_id": "10153486868478155", "text": "Due \"profughi\" dell'Est, mantenuti A SPESE DEGLI ITALIANI in un centro di accoglienza, arrestati per aver MASSACRATO di botte e ACCOLTELLATO un tabaccaio a Torino.\nIn un Paese normale questi delinquenti riceverebbero una pena esemplare, nell'Italia di Matteo \"Porte Aperte\" Renzi invece che cosa rischiano???", "post_text": "Due \"profughi\" dell'Est, mantenuti A SPESE DEGLI ITALIANI in un centro di accoglienza, arrestati per aver MASSACRATO di botte e ACCOLTELLATO un tabaccaio a Torino.\nIn un Paese normale questi delinquenti riceverebbero una pena esemplare, nell'Italia di Matteo \"Porte Aperte\" Renzi invece che cosa rischiano???", "shared_text": "", "time": "2016-01-12 14:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153486868478155&id=252306033154", "link": null} +{"post_id": "10153486763838155", "text": "Che cosa farei al posto di Renzi per rimettere soldi nelle tasche dei cittadini?\nPartiamo da queste 4 proposte concrete per RISARCIRE milioni di ITALIANI TRUFFATI o TARTASSATI da Equitalia, banche, studi di settore e legge Fornero.\nSiete d\u2019accordo? Fate girare!", "post_text": "Che cosa farei al posto di Renzi per rimettere soldi nelle tasche dei cittadini?\nPartiamo da queste 4 proposte concrete per RISARCIRE milioni di ITALIANI TRUFFATI o TARTASSATI da Equitalia, banche, studi di settore e legge Fornero.\nSiete d\u2019accordo? Fate girare!", "shared_text": "", "time": "2016-01-12 12:04:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153486763838155&id=252306033154", "link": null} +{"post_id": "10153485526873155", "text": "Milano, sede di \"Pane Quotidiano\", associazione che distribuisce gratuitamente beni alimentari alle persone in difficolt\u00e0. SEMPRE PI\u00d9 ITALIANI, anziani e famiglie con bimbi, IN FILA.\nLa nostra EMERGENZA sono loro, tutto il resto viene dopo!", "post_text": "Milano, sede di \"Pane Quotidiano\", associazione che distribuisce gratuitamente beni alimentari alle persone in difficolt\u00e0. SEMPRE PI\u00d9 ITALIANI, anziani e famiglie con bimbi, IN FILA.\nLa nostra EMERGENZA sono loro, tutto il resto viene dopo!", "shared_text": "", "time": "2016-01-11 20:48:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153485526873155&id=252306033154", "link": null} +{"post_id": "10153484690343155", "text": "Per i clandestini tutto, per gli italiani niente. NON \u00c8 UNO SLOGAN.\nCristina e Fulvio lo stanno provando SULLA LORO PELLE.\nFai girare, quest\u2019Italia la RIBALTIAMO anche per loro!", "post_text": "Per i clandestini tutto, per gli italiani niente. NON \u00c8 UNO SLOGAN.\nCristina e Fulvio lo stanno provando SULLA LORO PELLE.\nFai girare, quest\u2019Italia la RIBALTIAMO anche per loro!", "shared_text": "", "time": "2016-01-11 12:46:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153484690343155&id=252306033154", "link": null} +{"post_id": "10153482683898155", "text": "\"Corteo islamico\" nelle vie di Bolzano, alla Boldrini sar\u00e0 piaciuto sicuramente... E a voi?", "post_text": "\"Corteo islamico\" nelle vie di Bolzano, alla Boldrini sar\u00e0 piaciuto sicuramente... E a voi?", "shared_text": "", "time": "2016-01-10 13:39:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153482683898155&id=252306033154", "link": null} +{"post_id": "10153479573958155", "text": "Messaggio dalla Siria su chi ci stiamo prendendo in casa: \"In Europa siete particolarmente STUPIDI. Non sapete distinguere il bene dal male, sono la nostra spazzatura, sono terroristi dell'ISIS. Qui li stiamo\u2026 Altro combattendo, voi invece LI FATE ENTRARE. Pagherete il prezzo di questo errore, e se non lo PAGHERETE voi lo pagheranno i vostri figli\".\nVi sentite tranquilli con RENZI e ALFANO al comando???\n[Fonte \"Il Giornale\" > https://www.youtube.com/watch?v=z9tX_t8uhaQ]", "post_text": "Messaggio dalla Siria su chi ci stiamo prendendo in casa: \"In Europa siete particolarmente STUPIDI. Non sapete distinguere il bene dal male, sono la nostra spazzatura, sono terroristi dell'ISIS. Qui li stiamo\u2026 Altro combattendo, voi invece LI FATE ENTRARE. Pagherete il prezzo di questo errore, e se non lo PAGHERETE voi lo pagheranno i vostri figli\".\nVi sentite tranquilli con RENZI e ALFANO al comando???\n[Fonte \"Il Giornale\" > https://www.youtube.com/watch?v=z9tX_t8uhaQ]", "shared_text": "", "time": "2016-01-08 20:30:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153479573958155&id=252306033154", "link": "https://www.youtube.com/watch?v=z9tX_t8uhaQ&fbclid=IwAR16VmsnpGLerE8RNBJ2ncvLMMIvIM1nFL4-L6ffssfiZOX8u1HK__vBJ50"} +{"post_id": "10153478902398155", "text": "Vedere Renzi e i governanti europei FARE FINTA DI NIENTE mentre orde di fanatici islamici mettono in pericolo le nostre libert\u00e0 e aggrediscono centinaia di donne, MI FA PAURA.\nNon \u00e8 tempo del silenzio, chi tace\u2026 Altro \u00e8 complice.\nCONTROLLARE, ESPELLERE, RESPINGERE: io porto rispetto a chi porta rispetto, questa gente non merita di essere ospitata nelle nostre citt\u00e0!", "post_text": "Vedere Renzi e i governanti europei FARE FINTA DI NIENTE mentre orde di fanatici islamici mettono in pericolo le nostre libert\u00e0 e aggrediscono centinaia di donne, MI FA PAURA.\nNon \u00e8 tempo del silenzio, chi tace\u2026 Altro \u00e8 complice.\nCONTROLLARE, ESPELLERE, RESPINGERE: io porto rispetto a chi porta rispetto, questa gente non merita di essere ospitata nelle nostre citt\u00e0!", "shared_text": "", "time": "2016-01-08 13:43:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153478902398155&id=252306033154", "link": null} +{"post_id": "10153477182373155", "text": "Fai girare, parlano le DONNE AGGREDITE la sera di Capodanno in Germania da centinaia di immigrati organizzati. Altro che \"integrazione\", per queste bestie castrazione chimica e GALERA A CASA LORO!", "post_text": "Fai girare, parlano le DONNE AGGREDITE la sera di Capodanno in Germania da centinaia di immigrati organizzati. Altro che \"integrazione\", per queste bestie castrazione chimica e GALERA A CASA LORO!", "shared_text": "", "time": "2016-01-07 19:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153477182373155&id=252306033154", "link": null} +{"post_id": "10153477151613155", "text": "Io un Capodanno con bande di nordafricani che molestano e violentano donne non l'avevo mai sentito... Merkel MALE d'Europa e Renzi, che \u00e8 il suo servetto, anche. Entrambi COMPLICI di quanto sta accadendo. Le espulsioni di chi viene qui a delinquere, e danneggia anche i tanti immigrati perbene, non saranno mai troppo poche!", "post_text": "Io un Capodanno con bande di nordafricani che molestano e violentano donne non l'avevo mai sentito... Merkel MALE d'Europa e Renzi, che \u00e8 il suo servetto, anche. Entrambi COMPLICI di quanto sta accadendo. Le espulsioni di chi viene qui a delinquere, e danneggia anche i tanti immigrati perbene, non saranno mai troppo poche!", "shared_text": "", "time": "2016-01-07 13:35:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153477151613155&id=252306033154", "link": null} +{"post_id": "10153464034533155", "text": "BUON 2016, AMICI! Auguri di serenit\u00e0, lavoro, sicurezza e FUTURO per i nostri figli!\nCe la faremo? Dipende da VOI! Io ci metto solo una piccola parte, con i miei tanti limiti e difetti.\nMa se saremo in tanti, RENZI LO MANDIAMO A CASA: INSIEME SI PU\u00d2!", "post_text": "BUON 2016, AMICI! Auguri di serenit\u00e0, lavoro, sicurezza e FUTURO per i nostri figli!\nCe la faremo? Dipende da VOI! Io ci metto solo una piccola parte, con i miei tanti limiti e difetti.\nMa se saremo in tanti, RENZI LO MANDIAMO A CASA: INSIEME SI PU\u00d2!", "shared_text": "", "time": "2016-01-01 00:01:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153464034533155&id=252306033154", "link": null} +{"post_id": "10153453474643155", "text": "Auguri a tutti i camerieri, cuochi, baristi, ristoratori e albergatori!\nE con tasse pi\u00f9 basse, il Turismo in Italia volerebbe.", "post_text": "Auguri a tutti i camerieri, cuochi, baristi, ristoratori e albergatori!\nE con tasse pi\u00f9 basse, il Turismo in Italia volerebbe.", "shared_text": "", "time": "2015-12-26 13:01:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/966581_10153453474643155_582534543381740437_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=u736AdEG2O0AQl9OuU9b6MrNdoql_Bsx1mNHpMTYdomyx73ufpsSABoyw&_nc_ht=scontent-cdt1-1.xx&oh=b5005f03236b23054a2e26adc7fb52d5&oe=5E50A56B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153451845648155", "text": "Oggi ingrasso di un chilo... Mascarpone!", "post_text": "Oggi ingrasso di un chilo... Mascarpone!", "shared_text": "", "time": "2015-12-25 16:25:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/1053511_10153451845648155_4516662292006309038_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=cRgky-2I1pIAQnxaKM-ekBTNNlYK3Jjdrj0KtxjLxJIzre-82QAQfA8Ag&_nc_ht=scontent-cdt1-1.xx&oh=279defd05364724c717c1e6b53a1d00b&oe=5E7A9626", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153451299123155", "text": "Buon Natale a tutti voi Amici!\nUn augurio particolare a chi oggi lavora: medici e infermieri, autisti, farmacisti, taxisti, forze dell'ordine, cuochi, volontari del soccorso...\nHo dimenticato qualcuno???", "post_text": "Buon Natale a tutti voi Amici!\nUn augurio particolare a chi oggi lavora: medici e infermieri, autisti, farmacisti, taxisti, forze dell'ordine, cuochi, volontari del soccorso...\nHo dimenticato qualcuno???", "shared_text": "", "time": "2015-12-25 10:23:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/920852_10153451299123155_8780550338390565489_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=Wk9eknrgDp0AQlXV52nNneor7BxsMaR8AOEw-W94gc4A3UMi6tAlvuRBg&_nc_ht=scontent-cdt1-1.xx&oh=89780f29c94427639270a8478afdb1ca&oe=5E8543A5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153449800853155", "text": "Un messaggio per voi, Amici.\nCon tutto il mio cuore, Buon Natale!", "post_text": "Un messaggio per voi, Amici.\nCon tutto il mio cuore, Buon Natale!", "shared_text": "", "time": "2015-12-24 23:55:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153449800853155&id=252306033154", "link": null} +{"post_id": "10153449392118155", "text": "Con l'amico Tiziano, uno degli ultimi artigiani cesellatori di Milano, davanti alla sua bottega in Alzaia Naviglio Grande 2.\nGli chiedo: \"Ma la sentite la ripresa economica di cui parla Renzi?\"\nVi lascio immaginare la risposta...", "post_text": "Con l'amico Tiziano, uno degli ultimi artigiani cesellatori di Milano, davanti alla sua bottega in Alzaia Naviglio Grande 2.\nGli chiedo: \"Ma la sentite la ripresa economica di cui parla Renzi?\"\nVi lascio immaginare la risposta...", "shared_text": "", "time": "2015-12-24 11:52:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/10293718_10153449392118155_5726018637272850004_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=n56ttqXcpbwAQls16KKbHVJ8pjOQ28j2geYbO_HMaIfEFf2hACLK96UIA&_nc_ht=scontent-cdt1-1.xx&oh=6270f5a92886f413eb85385ebdde4ad6&oe=5E865F18", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153444437413155", "text": "Economia, banche, lavoro, pensioni, immigrazione: per la Lega il 2016 sar\u00e0 l'anno della riconquista della sovranit\u00e0 nazionale.\nE mentre a Londra voteranno per uscire dall'Unione Europea, in contemporanea, nelle\u2026 Altro piazze di tutta Italia, da Nord a Sud, chiederemo ai 60 milioni di italiani se vogliono rimanere schiavi di questa Europa o se vogliono rialzare la testa. Ci state?", "post_text": "Economia, banche, lavoro, pensioni, immigrazione: per la Lega il 2016 sar\u00e0 l'anno della riconquista della sovranit\u00e0 nazionale.\nE mentre a Londra voteranno per uscire dall'Unione Europea, in contemporanea, nelle\u2026 Altro piazze di tutta Italia, da Nord a Sud, chiederemo ai 60 milioni di italiani se vogliono rimanere schiavi di questa Europa o se vogliono rialzare la testa. Ci state?", "shared_text": "", "time": "2015-12-22 12:19:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153444437413155&id=252306033154", "link": null} +{"post_id": "10153433459573155", "text": "Meno di 2 minuti per SBUGIARDARE gli inutili IPOCRITI che governano l'Europa: pensano a tutti, meno che ai nostri DISOCCUPATI!\nSe ti piace, diffondi.", "post_text": "Meno di 2 minuti per SBUGIARDARE gli inutili IPOCRITI che governano l'Europa: pensano a tutti, meno che ai nostri DISOCCUPATI!\nSe ti piace, diffondi.", "shared_text": "", "time": "2015-12-17 13:47:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153433459573155&id=252306033154", "link": null} +{"post_id": "10153432321488155", "text": "Da rottamatore dei vecchi politici a rottamatore degli anziani risparmiatori. Che fine misera per Renzi... Comunque anche oggi, pur essendo in minoranza, la Lega ha dato battaglia a Roma e a Strasburgo.", "post_text": "Da rottamatore dei vecchi politici a rottamatore degli anziani risparmiatori. Che fine misera per Renzi... Comunque anche oggi, pur essendo in minoranza, la Lega ha dato battaglia a Roma e a Strasburgo.", "shared_text": "", "time": "2015-12-16 20:17:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/12356864_10153432321488155_7277191749346751522_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Ym-4BNM7KBgAQkEI3CvSM8hGDOAhq0lI10mME--7GuorECFXcShE5311w&_nc_ht=scontent-cdt1-1.xx&oh=7d6659659046fbc4f59dcbd2e5ef6f14&oe=5E7A1D08", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153432085853155", "text": "Prendetevi 2 minuti per ascoltare la storia di Adriano.\nUn anno fa dei BANDITI rumeni sono entrati in officina e hanno massacrato a SPRANGATE lui e il padre settantenne, rimasto purtroppo completamente invalido\u2026 Altro dopo l'aggressione.\nLe BESTIE, pur IDENTIFICATE dai magistrati, non sono MAI state ARRESTATE... Questa giustizia FA SCHIFO. Cambieremo TUTTO, anche per Adriano e la sua famiglia!", "post_text": "Prendetevi 2 minuti per ascoltare la storia di Adriano.\nUn anno fa dei BANDITI rumeni sono entrati in officina e hanno massacrato a SPRANGATE lui e il padre settantenne, rimasto purtroppo completamente invalido\u2026 Altro dopo l'aggressione.\nLe BESTIE, pur IDENTIFICATE dai magistrati, non sono MAI state ARRESTATE... Questa giustizia FA SCHIFO. Cambieremo TUTTO, anche per Adriano e la sua famiglia!", "shared_text": "", "time": "2015-12-16 17:35:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153432085853155&id=252306033154", "link": null} +{"post_id": "10153430561373155", "text": "Oggi RENZI dice che chi strumentalizza la morte delle persone gli FA SCHIFO. Ma guardate che cosa faceva solo tre mesi fa... Voi uno cos\u00ed come lo definireste???", "post_text": "Oggi RENZI dice che chi strumentalizza la morte delle persone gli FA SCHIFO. Ma guardate che cosa faceva solo tre mesi fa... Voi uno cos\u00ed come lo definireste???", "shared_text": "", "time": "2015-12-15 19:23:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153430561373155&id=252306033154", "link": null} +{"post_id": "10153430339148155", "text": "Risparmiatori FREGATI e ROVINATI dal governo protestano a Firenze, ma RENZI non ha nemmeno avuto il coraggio di incontrarli... Oltre che responsabile di questo disastro, anche VIGLIACCO.", "post_text": "Risparmiatori FREGATI e ROVINATI dal governo protestano a Firenze, ma RENZI non ha nemmeno avuto il coraggio di incontrarli... Oltre che responsabile di questo disastro, anche VIGLIACCO.", "shared_text": "", "time": "2015-12-15 16:50:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153430339148155&id=252306033154", "link": null} +{"post_id": "10153428732433155", "text": "Auguri cucciola.", "post_text": "Auguri cucciola.", "shared_text": "", "time": "2015-12-14 16:53:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/12374910_10153428732433155_6448000708276380674_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=-9t15hJ1sPAAQnqpvXUVlILkDtEe0ZG2N9C5FlimP5pMDflYp6pkUZ-Zg&_nc_ht=scontent-cdt1-1.xx&oh=17555189e3c5b59621a87ac6bdf6eafe&oe=5E4F0361", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153427305903155", "text": "Hanno dovuto fare UN'AMMUCCHIATA tutti insieme, sinistra e finta destra, socialisti e repubblicani, banchieri e giornali, contro la Le Pen.\nMa ormai la riscossa delle persone perbene non la ferma pi\u00f9 nessuno, potranno rallentarla ma non bloccarla: GRAZIE MARINE!", "post_text": "Hanno dovuto fare UN'AMMUCCHIATA tutti insieme, sinistra e finta destra, socialisti e repubblicani, banchieri e giornali, contro la Le Pen.\nMa ormai la riscossa delle persone perbene non la ferma pi\u00f9 nessuno, potranno rallentarla ma non bloccarla: GRAZIE MARINE!", "shared_text": "", "time": "2015-12-13 21:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12369103_10153427305208155_911683106550932438_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=WGT0u7TNlJwAQmCY-E3YO1QwPNMv-Ux02q599oXRtR_1YrrLQ0904Lz1A&_nc_ht=scontent-cdt1-1.xx&oh=f2ea4a527654c590936f3cfaf092403e&oe=5E3F09F4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153422556263155", "text": "CONSIGLI telefonici dei terroristi islamici arrestati ai \u201cconterranei\u201d: \"Se vuoi vivere in Italia \u00e8 meglio che tu vada a Bolzano, TI PAGANO LA CASA anche se non lavori\". \"Per il lavoro e anche per il sociale\u2026 Altro basta che fai come ha fatto Mullah Kawa, lui ha pagato l\u2019affitto di casa soltanto per sei mesi. Dopodich\u00e9 ci hanno pensato i SERVIZI SOCIALI. Che lavora o che non lavora \u00e8 uguale! Pu\u00f2 starsene tranquillamente a casa che TANTO GLI PAGA TUTTO IL COMUNE. Gli passano pure un mensile per lui, la moglie e i figli\".\nQuesti ci prendono per FESSI. Occorre che tutti gli italiani si ricordino qual \u00e8 la nostra storia, la nostra cultura, la nostra tradizione: senza l\u2019ORGOGLIO delle nostre radici, rimarremo INDIFESI di fronte ai tentativi di SOSTITUZIONE DI POPOLO in corso.", "post_text": "CONSIGLI telefonici dei terroristi islamici arrestati ai \u201cconterranei\u201d: \"Se vuoi vivere in Italia \u00e8 meglio che tu vada a Bolzano, TI PAGANO LA CASA anche se non lavori\". \"Per il lavoro e anche per il sociale\u2026 Altro basta che fai come ha fatto Mullah Kawa, lui ha pagato l\u2019affitto di casa soltanto per sei mesi. Dopodich\u00e9 ci hanno pensato i SERVIZI SOCIALI. Che lavora o che non lavora \u00e8 uguale! Pu\u00f2 starsene tranquillamente a casa che TANTO GLI PAGA TUTTO IL COMUNE. Gli passano pure un mensile per lui, la moglie e i figli\".\nQuesti ci prendono per FESSI. Occorre che tutti gli italiani si ricordino qual \u00e8 la nostra storia, la nostra cultura, la nostra tradizione: senza l\u2019ORGOGLIO delle nostre radici, rimarremo INDIFESI di fronte ai tentativi di SOSTITUZIONE DI POPOLO in corso.", "shared_text": "", "time": "2015-12-11 13:03:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153422556263155&id=252306033154", "link": null} +{"post_id": "10153420596913155", "text": "La posizione \"prudente\" di Renzi sull'ISIS?\nIniziamo a chiamare le cose con il loro nome, NON FARE NULLA sperando che i tagliagole islamici non ci colpiscano per me \u00e8 VIGLIACCHERIA!", "post_text": "La posizione \"prudente\" di Renzi sull'ISIS?\nIniziamo a chiamare le cose con il loro nome, NON FARE NULLA sperando che i tagliagole islamici non ci colpiscano per me \u00e8 VIGLIACCHERIA!", "shared_text": "", "time": "2015-12-10 13:01:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153420596913155&id=252306033154", "link": null} +{"post_id": "10153418926923155", "text": "I provvedimenti di Renzi hanno aiutato i GRANDI, peccato che oltre il 90% delle imprese italiane abbia meno di 10 dipendenti e 3 milioni di autonomi lavorino da soli: per loro non una lira di aiuto, ma solo pi\u00f9 tasse e un calcio nel sedere!", "post_text": "I provvedimenti di Renzi hanno aiutato i GRANDI, peccato che oltre il 90% delle imprese italiane abbia meno di 10 dipendenti e 3 milioni di autonomi lavorino da soli: per loro non una lira di aiuto, ma solo pi\u00f9 tasse e un calcio nel sedere!", "shared_text": "", "time": "2015-12-09 11:26:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153418926923155&id=252306033154", "link": null} +{"post_id": "10153415996248155", "text": "Italiana convertita all'Islam, frequentatrice della moschea di Centocelle a Roma: \"Quello che sta succedendo in Francia? SE LA SONO CERCATA\". Sono islamofobo se dico che non mi sento tranquillo con certa gente in circolazione?", "post_text": "Italiana convertita all'Islam, frequentatrice della moschea di Centocelle a Roma: \"Quello che sta succedendo in Francia? SE LA SONO CERCATA\". Sono islamofobo se dico che non mi sento tranquillo con certa gente in circolazione?", "shared_text": "", "time": "2015-12-07 18:32:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153415996248155&id=252306033154", "link": null} +{"post_id": "10153411938488155", "text": "Le folli sanzioni economiche contro la Russia hanno fatto chiudere pi\u00f9 di 1.000 imprese solo in Emilia-Romagna.\nGrazie Renzi, grazie Obama, grazie Europa.\nVia le sanzioni, subito.", "post_text": "Le folli sanzioni economiche contro la Russia hanno fatto chiudere pi\u00f9 di 1.000 imprese solo in Emilia-Romagna.\nGrazie Renzi, grazie Obama, grazie Europa.\nVia le sanzioni, subito.", "shared_text": "", "time": "2015-12-05 11:25:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12314266_10153411938488155_3000045867037372496_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=qpy5itUjEAYAQnQ7wutkyr24TRKK75rwxp0fvsGtaXMtTx-6S1LqjxrPw&_nc_ht=scontent-cdt1-1.xx&oh=e0238f8c385aeffad370731bc6932aaa&oe=5E3E13D8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153410593623155", "text": "Al di l\u00e0 delle barriere ideologiche (destra e sinistra? roba vecchia!), impegniamoci insieme per LIBERARCI e RIPARTIRE! Grazie, Mauro!", "post_text": "Al di l\u00e0 delle barriere ideologiche (destra e sinistra? roba vecchia!), impegniamoci insieme per LIBERARCI e RIPARTIRE! Grazie, Mauro!", "shared_text": "", "time": "2015-12-04 17:32:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153410593623155&id=252306033154", "link": null} +{"post_id": "10153410277188155", "text": "Primo barcone per il signor Al\u00ec \"Bab\u00e0\", sedicente \"PRINCIPE ISLAMICO\", e per tutti quelli che le pensano come lui!", "post_text": "Primo barcone per il signor Al\u00ec \"Bab\u00e0\", sedicente \"PRINCIPE ISLAMICO\", e per tutti quelli che le pensano come lui!", "shared_text": "", "time": "2015-12-04 16:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153410277188155&id=252306033154", "link": null} +{"post_id": "10153410346973155", "text": "CHI TOGLIE soldati a Milano, AIUTA I TERRORISTI.\nGI\u00d9 LE MANI dal Reggimento Santa Barbara, noi stiamo con questi ragazzi che garantiscono la nostra SICUREZZA!", "post_text": "CHI TOGLIE soldati a Milano, AIUTA I TERRORISTI.\nGI\u00d9 LE MANI dal Reggimento Santa Barbara, noi stiamo con questi ragazzi che garantiscono la nostra SICUREZZA!", "shared_text": "", "time": "2015-12-04 14:30:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153410346973155&id=252306033154", "link": null} +{"post_id": "10153410156138155", "text": "\u201cDobbiamo trattarle cos\u00ec\u2026 alla DONNA non \u00e8 permesso dire NO!\u201d.\nE magari va bene PICCHIARLA?\nO ACCOLTELLARLA come \u00e8 accaduto a Bergamo?\nAscolta questi 2 minuti di SCHIFOSA FOLLIA e BESTIALIT\u00c0 dell\u2019Imam di Berlino.\nFinch\u00e9 l\u2019Islam \u00e8 questo, alle moschee NEMMENO UN METRO QUADRO!", "post_text": "\u201cDobbiamo trattarle cos\u00ec\u2026 alla DONNA non \u00e8 permesso dire NO!\u201d.\nE magari va bene PICCHIARLA?\nO ACCOLTELLARLA come \u00e8 accaduto a Bergamo?\nAscolta questi 2 minuti di SCHIFOSA FOLLIA e BESTIALIT\u00c0 dell\u2019Imam di Berlino.\nFinch\u00e9 l\u2019Islam \u00e8 questo, alle moschee NEMMENO UN METRO QUADRO!", "shared_text": "", "time": "2015-12-04 12:19:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153410156138155&id=252306033154", "link": null} +{"post_id": "10153409173413155", "text": "Abbiamo il CALIFFO alle porte (in Libia) ma l'Europa d\u00e0 i MILIARDI a chi lo aiuta (Turchia) e non a chi lo combatte... Questa Unione Sovietica Europea va ABBATTUTA!", "post_text": "Abbiamo il CALIFFO alle porte (in Libia) ma l'Europa d\u00e0 i MILIARDI a chi lo aiuta (Turchia) e non a chi lo combatte... Questa Unione Sovietica Europea va ABBATTUTA!", "shared_text": "", "time": "2015-12-03 21:59:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153409173413155&id=252306033154", "link": null} +{"post_id": "10153408825063155", "text": "Nell'Italia di Renzalfano, anche al Brennero, ciascuno entra ed esce come gli pare...\nNon credo in muri e fili spinati, ma credo nei CONTROLLI e, se necessario, si pu\u00f2 sospendere Schengen. PREVENIRE \u00e8 meglio che curare!", "post_text": "Nell'Italia di Renzalfano, anche al Brennero, ciascuno entra ed esce come gli pare...\nNon credo in muri e fili spinati, ma credo nei CONTROLLI e, se necessario, si pu\u00f2 sospendere Schengen. PREVENIRE \u00e8 meglio che curare!", "shared_text": "", "time": "2015-12-03 18:40:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153408825063155&id=252306033154", "link": null} +{"post_id": "10153408627348155", "text": "SICUREZZA, SICUREZZA, SICUREZZA! Tutti ne PARLANO ma\u2026 Alla prova dei fatti, che cosa VOTANO il PD e i 5 Stelle? Ascolta e CONDIVIDI. Fai girare la verit\u00e0, smaschera i chiacchieroni!", "post_text": "SICUREZZA, SICUREZZA, SICUREZZA! Tutti ne PARLANO ma\u2026 Alla prova dei fatti, che cosa VOTANO il PD e i 5 Stelle? Ascolta e CONDIVIDI. Fai girare la verit\u00e0, smaschera i chiacchieroni!", "shared_text": "", "time": "2015-12-03 16:32:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153408627348155&id=252306033154", "link": null} +{"post_id": "10153408439568155", "text": "Prendetevi 2 minuti per ASCOLTARE e diffondere (in particolare su qualche bacheca \"buonista\").\nIl procuratore della Repubblica di Lecce: \"IL BARCONE \u00e8 la via pi\u00f9 TRANQUILLA per entrare nell'Unione Europea, un\u2026 Altro conto \u00e8 arrivare in due in un aeroporto, un altro arrivare confusi con 800 persone...\"\nFatelo sapere a RENZI che, all'idea che i terroristi arrivino mescolati ai \"profughi\", SGHIGNAZZA!\nINCAPACE e PERICOLOSO.", "post_text": "Prendetevi 2 minuti per ASCOLTARE e diffondere (in particolare su qualche bacheca \"buonista\").\nIl procuratore della Repubblica di Lecce: \"IL BARCONE \u00e8 la via pi\u00f9 TRANQUILLA per entrare nell'Unione Europea, un\u2026 Altro conto \u00e8 arrivare in due in un aeroporto, un altro arrivare confusi con 800 persone...\"\nFatelo sapere a RENZI che, all'idea che i terroristi arrivino mescolati ai \"profughi\", SGHIGNAZZA!\nINCAPACE e PERICOLOSO.", "shared_text": "", "time": "2015-12-03 13:18:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153408439568155&id=252306033154", "link": null} +{"post_id": "10153407552628155", "text": "Viva il Presepe e viva Crozza!", "post_text": "Viva il Presepe e viva Crozza!", "shared_text": "", "time": "2015-12-02 22:02:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153407552628155&id=252306033154", "link": null} +{"post_id": "10153407247938155", "text": "Ragazzi, abbiamo bisogno di voi! Mentre Renzi dorme, gli istituti scolastici cadono a pezzi.\nSegnalateci disservizi e disagi su Scuole da Incubo: la buona scuola, quella vera, incomincia da qui!\nP.s. E se hai un professore che fa politica faziosa in classe, segnalacelo!", "post_text": "Ragazzi, abbiamo bisogno di voi! Mentre Renzi dorme, gli istituti scolastici cadono a pezzi.\nSegnalateci disservizi e disagi su Scuole da Incubo: la buona scuola, quella vera, incomincia da qui!\nP.s. E se hai un professore che fa politica faziosa in classe, segnalacelo!", "shared_text": "", "time": "2015-12-02 19:44:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153407247938155&id=252306033154", "link": null} +{"post_id": "10153407227138155", "text": "Renzi e la sua banda sono degli INCAPACI.\nHanno un contesto economico internazionale favorevolissimo, petrolio basso, euro ai minimi, la BCE che riempie i mercati di miliardi eppure con loro siamo ostaggi dello\u2026 Altro ZERO VIRGOLA.\nMi chiedo e vi chiedo: i nostri figli hanno un futuro in questa situazione? No.\nChe cosa faremmo noi: LIBERARE l\u2019ECONOMIA, via la Legge Fornero, via gli Studi di Settore ma, soprattutto, RIVOLUZIONE FISCALE con un\u2019aliquota unica pi\u00f9 giusta al 15%.\nPerch\u00e9 non viene fatto in Italia? Forse qualcuno \u00e8 pagato per difendere i grandi e non farci ripartire?", "post_text": "Renzi e la sua banda sono degli INCAPACI.\nHanno un contesto economico internazionale favorevolissimo, petrolio basso, euro ai minimi, la BCE che riempie i mercati di miliardi eppure con loro siamo ostaggi dello\u2026 Altro ZERO VIRGOLA.\nMi chiedo e vi chiedo: i nostri figli hanno un futuro in questa situazione? No.\nChe cosa faremmo noi: LIBERARE l\u2019ECONOMIA, via la Legge Fornero, via gli Studi di Settore ma, soprattutto, RIVOLUZIONE FISCALE con un\u2019aliquota unica pi\u00f9 giusta al 15%.\nPerch\u00e9 non viene fatto in Italia? Forse qualcuno \u00e8 pagato per difendere i grandi e non farci ripartire?", "shared_text": "", "time": "2015-12-02 18:36:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153407227138155&id=252306033154", "link": null} +{"post_id": "10153406852388155", "text": "DA FARE ADESSO.\nLe carceri italiane, da Nord a Sud, sono diventate un luogo dove si coltiva il TERRORISMO e dove i 52mila detenuti, in gran parte stranieri, potrebbero portare a conseguenze imprevedibili.\nNon\u2026 Altro possiamo contare solo sul coraggio e sulla professionalit\u00e0 dei nostri uomini della Polizia Penitenziaria. Occorrono pi\u00f9 agenti, pi\u00f9 risorse e strutture ma, soprattutto, ripristiniamo la CERTEZZA della PENA e mandiamo a scontare in galera a CASA LORO le migliaia di delinquenti stranieri che manteniamo nelle nostre carceri.\nFacciamolo SUBITO, prima che sia troppo tardi!", "post_text": "DA FARE ADESSO.\nLe carceri italiane, da Nord a Sud, sono diventate un luogo dove si coltiva il TERRORISMO e dove i 52mila detenuti, in gran parte stranieri, potrebbero portare a conseguenze imprevedibili.\nNon\u2026 Altro possiamo contare solo sul coraggio e sulla professionalit\u00e0 dei nostri uomini della Polizia Penitenziaria. Occorrono pi\u00f9 agenti, pi\u00f9 risorse e strutture ma, soprattutto, ripristiniamo la CERTEZZA della PENA e mandiamo a scontare in galera a CASA LORO le migliaia di delinquenti stranieri che manteniamo nelle nostre carceri.\nFacciamolo SUBITO, prima che sia troppo tardi!", "shared_text": "", "time": "2015-12-02 15:03:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153406852388155&id=252306033154", "link": null} +{"post_id": "10153405038213155", "text": "Fate girare, in 2 minuti ecco perch\u00e9 DICIAMO NO alla TURCHIA in EUROPA:\n- Compra il petrolio dell'Isis.\n- Non riconosce il genocidio di un milione di Armeni.\n- Ha distrutto le chiese e sterminato i cristiani.\n-\u2026 Altro Occupa da quarant'anni uno stato membro dell'UE, Cipro.\n- Non riconosce giuridicamente il culto della Chiesa cattolica.\n- Ha ricevuto 9 MILIARDI di euro dall'Europa (anche soldi degli italiani) per fare concorrenza sleale alle nostre imprese!\nMinaccia di inviarci milioni di profughi? Noi NON cediamo ai ricatti!\nE l'Europa e Renzi si sveglino!\nInvece di sanzionare la Russia, dovrebbero sanzionare la Turchia!", "post_text": "Fate girare, in 2 minuti ecco perch\u00e9 DICIAMO NO alla TURCHIA in EUROPA:\n- Compra il petrolio dell'Isis.\n- Non riconosce il genocidio di un milione di Armeni.\n- Ha distrutto le chiese e sterminato i cristiani.\n-\u2026 Altro Occupa da quarant'anni uno stato membro dell'UE, Cipro.\n- Non riconosce giuridicamente il culto della Chiesa cattolica.\n- Ha ricevuto 9 MILIARDI di euro dall'Europa (anche soldi degli italiani) per fare concorrenza sleale alle nostre imprese!\nMinaccia di inviarci milioni di profughi? Noi NON cediamo ai ricatti!\nE l'Europa e Renzi si sveglino!\nInvece di sanzionare la Russia, dovrebbero sanzionare la Turchia!", "shared_text": "", "time": "2015-12-01 13:15:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153405038213155&id=252306033154", "link": null} +{"post_id": "10153404974848155", "text": "Cancellare il Natale e la nostra storia? Mai!\nIl Vescovo di Padova non abbia paura, nessuno di noi deve averne: cantiamo, celebriamo, festeggiamo! Difendiamo le nostre Tradizioni, orgogliosi della nostra Storia per costruire un Futuro migliore.", "post_text": "Cancellare il Natale e la nostra storia? Mai!\nIl Vescovo di Padova non abbia paura, nessuno di noi deve averne: cantiamo, celebriamo, festeggiamo! Difendiamo le nostre Tradizioni, orgogliosi della nostra Storia per costruire un Futuro migliore.", "shared_text": "", "time": "2015-12-01 12:15:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153404974848155&id=252306033154", "link": null} +{"post_id": "10153404904003155", "text": "\"Risorse\" in azione a Roma, giornalista, che per indagare si finge parcheggiatrice abusiva, mandata all'ospedale... RUSPA!!!", "post_text": "\"Risorse\" in azione a Roma, giornalista, che per indagare si finge parcheggiatrice abusiva, mandata all'ospedale... RUSPA!!!", "shared_text": "", "time": "2015-12-01 11:25:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153404904003155&id=252306033154", "link": null} +{"post_id": "10153403480713155", "text": "Insomma, abbiamo rimesso al suo posto Ges\u00f9 Bambino e ribadito che i Canti di Natale non danno fastidio a nessuno, ma bambini, insegnanti e genitori si meritano una SCUOLA MIGLIORE.\nE le scuole dei vostri figli, come sono messe?", "post_text": "Insomma, abbiamo rimesso al suo posto Ges\u00f9 Bambino e ribadito che i Canti di Natale non danno fastidio a nessuno, ma bambini, insegnanti e genitori si meritano una SCUOLA MIGLIORE.\nE le scuole dei vostri figli, come sono messe?", "shared_text": "", "time": "2015-11-30 14:51:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12304433_10153403480713155_4742776395396374021_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=k6NfLsUfsbAAQmqyZGqql7eFcgZPQXFawzI9tF0uX-R1xE7ZQNdqmlUXg&_nc_ht=scontent-cdt1-1.xx&oh=c9ca049c90aab7432f021e34373d4068&oe=5E401FB8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153403470288155", "text": "Aule \"blindate\" con sbarre per evitare furti e vandalismi...", "post_text": "Aule \"blindate\" con sbarre per evitare furti e vandalismi...", "shared_text": "", "time": "2015-11-30 14:43:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12322823_10153403470288155_6924447369695592004_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=x49_8FMTNH4AQmDz-jvXzeamLXWAskb_nvxYjUowE7bezTBBR3HQFGpNw&_nc_ht=scontent-cdt1-1.xx&oh=c3d8fe954779da554a0ac99a70efc1ba&oe=5E476E53", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153403448483155", "text": "Un pezzo di tetto crollato da tempo e abbandonato in cortile...", "post_text": "Un pezzo di tetto crollato da tempo e abbandonato in cortile...", "shared_text": "", "time": "2015-11-30 14:28:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/12314338_10153403448483155_753304944078343149_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=howN1Ywn3NQAQlSvWwcZFPSOYuRoLL4RwwjeR8jr_mQlUW6CUsrx5pQKQ&_nc_ht=scontent-cdt1-1.xx&oh=73d0cabae6512fd4a4c1be5790921949&oe=5E7D2EAB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153403282078155", "text": "\"La DONNA, islamicamente, deve chiedere il PERMESSO per poter USCIRE\" dice il signore alla fine del servizio. E per alcuni \u00e8 lecito anche sottomettere, segregare, picchiare.\nCon chi ha queste idee non \u00e8 possibile NESSUNA integrazione!", "post_text": "\"La DONNA, islamicamente, deve chiedere il PERMESSO per poter USCIRE\" dice il signore alla fine del servizio. E per alcuni \u00e8 lecito anche sottomettere, segregare, picchiare.\nCon chi ha queste idee non \u00e8 possibile NESSUNA integrazione!", "shared_text": "", "time": "2015-11-30 14:00:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153403282078155&id=252306033154", "link": null} +{"post_id": "10153401981433155", "text": "Supermercato di Milano.\nLimoni, clementine, cachi, peperoni e pomodori: arriva tutto dall'estero.\nMa vi pare normale???\nIo a Bruxelles mi batto (purtroppo quasi solo contro tutti) per difendere il Made in Italy, e in negozio compro solo prodotti italiani!", "post_text": "Supermercato di Milano.\nLimoni, clementine, cachi, peperoni e pomodori: arriva tutto dall'estero.\nMa vi pare normale???\nIo a Bruxelles mi batto (purtroppo quasi solo contro tutti) per difendere il Made in Italy, e in negozio compro solo prodotti italiani!", "shared_text": "", "time": "2015-11-29 16:46:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11223771_10153401981433155_3149915034760848500_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=JYeLPMCAXJIAQkIiB17TyGyE5VTdIYLWuQ4qD0lFTnd8KYh3KAg5jWY-w&_nc_ht=scontent-cdt1-1.xx&oh=2b9b61c4dff2cd0e81d30375b6268ae3&oe=5E8291CE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153401732523155", "text": "Fini difende gli immigrati in albergo e insulta uno studente che lo contesta: traditore!!!", "post_text": "Fini difende gli immigrati in albergo e insulta uno studente che lo contesta: traditore!!!", "shared_text": "", "time": "2015-11-29 13:22:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153401732523155&id=252306033154", "link": null} +{"post_id": "10153400349533155", "text": "Luned\u00ec a mezzogiorno a questa scuola di via Milano a Rozzano i presepi per i bimbi li portiamo noi!\nE se al signor preside non va gi\u00f9, se ne far\u00e0 una ragione: non ci pu\u00f2 essere ACCOGLIENZA se manca l'ORGOGLIO per le nostre radici e la nostra Storia.", "post_text": "Luned\u00ec a mezzogiorno a questa scuola di via Milano a Rozzano i presepi per i bimbi li portiamo noi!\nE se al signor preside non va gi\u00f9, se ne far\u00e0 una ragione: non ci pu\u00f2 essere ACCOGLIENZA se manca l'ORGOGLIO per le nostre radici e la nostra Storia.", "shared_text": "", "time": "2015-11-28 15:36:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153400349533155&id=252306033154", "link": null} +{"post_id": "10153396905848155", "text": "\"Io ho difeso la mia famiglia. Ho risposto al fuoco e alle minacce. Ringrazio Dio di essere stato armato, se no mi avrebbero ammazzato\". Se avete 5 minuti di tempo, ascoltate le parole piene di buon senso di Rodolfo Corazzo, che questa sera alle 18.30 incontrer\u00f2 a Rodano, vicino Milano.", "post_text": "\"Io ho difeso la mia famiglia. Ho risposto al fuoco e alle minacce. Ringrazio Dio di essere stato armato, se no mi avrebbero ammazzato\". Se avete 5 minuti di tempo, ascoltate le parole piene di buon senso di Rodolfo Corazzo, che questa sera alle 18.30 incontrer\u00f2 a Rodano, vicino Milano.", "shared_text": "", "time": "2015-11-26 16:19:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153396905848155&id=252306033154", "link": null} +{"post_id": "10153396647703155", "text": "L'imam: \"Voi siete in pericolo! Con Salvini in Italia arriva l'ISIS\"... RICOVERATELOOOO!", "post_text": "L'imam: \"Voi siete in pericolo! Con Salvini in Italia arriva l'ISIS\"... RICOVERATELOOOO!", "shared_text": "", "time": "2015-11-26 12:39:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153396647703155&id=252306033154", "link": null} +{"post_id": "10153395270643155", "text": "L'immigrazione clandestina \u00e8 un BUSINESS di MILIARDI di euro e arriva a finanziare il TERRORISMO.\nOra lo dice \"Il Sole 24 Ore\", noi lo diciamo da un po' di tempo... Bene.\nMa quand'\u00e8 che la premiata ditta\u2026 Altro Renzi-Alfano, con i prefetti a far da AFFITTACAMERE, smetter\u00e0\ndi RIEMPIRE di presunti profughi i nostri comuni, a volte senza nemmeno avvertire i sindaci?\nUn INSULTO nei confronti degli italiani e degli immigrati perbene che il resort con piscina se lo sognano!", "post_text": "L'immigrazione clandestina \u00e8 un BUSINESS di MILIARDI di euro e arriva a finanziare il TERRORISMO.\nOra lo dice \"Il Sole 24 Ore\", noi lo diciamo da un po' di tempo... Bene.\nMa quand'\u00e8 che la premiata ditta\u2026 Altro Renzi-Alfano, con i prefetti a far da AFFITTACAMERE, smetter\u00e0\ndi RIEMPIRE di presunti profughi i nostri comuni, a volte senza nemmeno avvertire i sindaci?\nUn INSULTO nei confronti degli italiani e degli immigrati perbene che il resort con piscina se lo sognano!", "shared_text": "", "time": "2015-11-25 19:05:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153395270643155&id=252306033154", "link": null} +{"post_id": "10153394762333155", "text": "GUARDA questo servizio sulle condizioni di lavoro della POLIZIA, e guarda le reazioni del signor Prefetto Mario MORCONE (gi\u00e0 candidato sindaco di PD e Vendola a Napoli nel 2011). Se per lui NON \u00e8 un problema\u2026 Altro che i suoi uomini rischino la vita in mezzo alla strada, per 1.200 euro al mese, con il giubbotto antiproiettile scaduto e inadeguato e con la pistola del 1978, per me si dovrebbe DIMETTERE!", "post_text": "GUARDA questo servizio sulle condizioni di lavoro della POLIZIA, e guarda le reazioni del signor Prefetto Mario MORCONE (gi\u00e0 candidato sindaco di PD e Vendola a Napoli nel 2011). Se per lui NON \u00e8 un problema\u2026 Altro che i suoi uomini rischino la vita in mezzo alla strada, per 1.200 euro al mese, con il giubbotto antiproiettile scaduto e inadeguato e con la pistola del 1978, per me si dovrebbe DIMETTERE!", "shared_text": "", "time": "2015-11-25 13:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153394762333155&id=252306033154", "link": null} +{"post_id": "10153394730283155", "text": "Qui Strasburgo.\n\u00c8 appena intervenuto il Presidente Mattarella, che ha detto che chiudere e controllare le frontiere europee non serve.\nNo, certo, facciamo entrare altri milioni di immigrati...\nCedo due Mattarella in cambio di mezzo Putin!", "post_text": "Qui Strasburgo.\n\u00c8 appena intervenuto il Presidente Mattarella, che ha detto che chiudere e controllare le frontiere europee non serve.\nNo, certo, facciamo entrare altri milioni di immigrati...\nCedo due Mattarella in cambio di mezzo Putin!", "shared_text": "", "time": "2015-11-25 12:35:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12247878_10153394730283155_7868059741991662687_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=76S4Gjkua8oAQlpVCuz_qyyKIui3iHNqHlWh5ItZIrktzwww0ArGN0ZFA&_nc_ht=scontent-cdt1-1.xx&oh=6ebff54b6b4dc2745669cbd1f463ff22&oe=5E3F4676", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153393135588155", "text": "Vi aspetto questa sera alle 22 su Rai Tre a \"Ballar\u00f2\" per un \"duetto\" con il grande Mauro Corona!", "post_text": "Vi aspetto questa sera alle 22 su Rai Tre a \"Ballar\u00f2\" per un \"duetto\" con il grande Mauro Corona!", "shared_text": "", "time": "2015-11-24 16:10:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12246656_10153393135588155_4829795651721241700_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=uH4sY9JEQUYAQlkCUtxXESlJs_KOpD8Uqgi06_25iY-o2GGruPmc-nIog&_nc_ht=scontent-cdt1-1.xx&oh=c9b24afa394a9176a57b2cde9c8a947b&oe=5E7CB7A3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153392789853155", "text": "SIAMO ALLA FOLLIA!\nQuesta signora convertita all'Islam (l'\"albergatrice\" che guadagna soldi a palate con gli immigrati, ricordate?) dice: le DONNE ITALIANE che escono in minigonna o con i tacchi non vorranno FARSI VIOLENTARE...?\nChe SCHIFO, taci che \u00e8 meglio e VERGOGNATI!", "post_text": "SIAMO ALLA FOLLIA!\nQuesta signora convertita all'Islam (l'\"albergatrice\" che guadagna soldi a palate con gli immigrati, ricordate?) dice: le DONNE ITALIANE che escono in minigonna o con i tacchi non vorranno FARSI VIOLENTARE...?\nChe SCHIFO, taci che \u00e8 meglio e VERGOGNATI!", "shared_text": "", "time": "2015-11-24 12:31:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153392789853155&id=252306033154", "link": null} +{"post_id": "10153391086768155", "text": "\"\u00c8 giusto uccidere i francesi per Allah?\". \"S\u00ec\". Altro che \"controlli\"... Se io fossi al governo al posto di Renzi, questi soggetti (che MANTENIAMO con i nostri soldi!) li ESPELLEREI subito!", "post_text": "\"\u00c8 giusto uccidere i francesi per Allah?\". \"S\u00ec\". Altro che \"controlli\"... Se io fossi al governo al posto di Renzi, questi soggetti (che MANTENIAMO con i nostri soldi!) li ESPELLEREI subito!", "shared_text": "", "time": "2015-11-23 14:14:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153391086768155&id=252306033154", "link": null} +{"post_id": "10153390883953155", "text": "In una scuola in provincia di Bergamo la dirigenza ha chiesto alla banda di non suonare \"Adeste Fideles\" perch\u00e9 \u00e8 TROPPO CRISTIANA, mentre nel Bresciano vorrebbero che non si festeggiasse Santa Lucia, per lo\u2026 Altro stesso motivo.\nFaccio un appello a mamme, pap\u00e0, insegnanti e dirigenti scolastici: per ACCOGLIERE dobbiamo essere ORGOGLIOSI delle nostre radici! Si fa il Presepe, si fanno i canti di Natale, nasce Ges\u00f9 Bambino!\nChi si dimentica delle nostre tradizioni e della nostra storia \u00e8 COMPLICE di questi matti!", "post_text": "In una scuola in provincia di Bergamo la dirigenza ha chiesto alla banda di non suonare \"Adeste Fideles\" perch\u00e9 \u00e8 TROPPO CRISTIANA, mentre nel Bresciano vorrebbero che non si festeggiasse Santa Lucia, per lo\u2026 Altro stesso motivo.\nFaccio un appello a mamme, pap\u00e0, insegnanti e dirigenti scolastici: per ACCOGLIERE dobbiamo essere ORGOGLIOSI delle nostre radici! Si fa il Presepe, si fanno i canti di Natale, nasce Ges\u00f9 Bambino!\nChi si dimentica delle nostre tradizioni e della nostra storia \u00e8 COMPLICE di questi matti!", "shared_text": "", "time": "2015-11-23 11:38:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153390883953155&id=252306033154", "link": null} +{"post_id": "10153388053683155", "text": "Ascoltate questa signora, convertita all'Islam: il suo albergo ha guadagnato quasi 1 MILIONE di euro ospitando clandestini. Con migliaia di italiani che dormono in macchina, questi si fanno i soldi sui finti profughi. Per me \u00e8 una VERGOGNA!", "post_text": "Ascoltate questa signora, convertita all'Islam: il suo albergo ha guadagnato quasi 1 MILIONE di euro ospitando clandestini. Con migliaia di italiani che dormono in macchina, questi si fanno i soldi sui finti profughi. Per me \u00e8 una VERGOGNA!", "shared_text": "", "time": "2015-11-21 18:37:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153388053683155&id=252306033154", "link": null} +{"post_id": "10153387635158155", "text": "Poverini i centri a-sociali, volevano \"soltanto\" BLOCCARE la strada, e poverino il bravo ragazzo arrestato... Io sto con la Polizia!", "post_text": "Poverini i centri a-sociali, volevano \"soltanto\" BLOCCARE la strada, e poverino il bravo ragazzo arrestato... Io sto con la Polizia!", "shared_text": "", "time": "2015-11-21 13:59:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153387635158155&id=252306033154", "link": null} +{"post_id": "10153386565948155", "text": "\"Se Salvini diventa Presidente, l'ISIS arriver\u00e0 in Italia!\" dice questo rappresentante islamico che vuole spaventare e decidere per gli italiani. Gli rispondete voi?", "post_text": "\"Se Salvini diventa Presidente, l'ISIS arriver\u00e0 in Italia!\" dice questo rappresentante islamico che vuole spaventare e decidere per gli italiani. Gli rispondete voi?", "shared_text": "", "time": "2015-11-20 21:55:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153386565948155&id=252306033154", "link": null} +{"post_id": "10153385903333155", "text": "\"I video degli sgozzamenti mi hanno spinto ad arruolarmi all'Isis\".\n\"Avrei preferito morire che essere catturato, per Allah unico e onnipotente.\nQuando muori c'\u00e8 il Paradiso con le Vergini\".\n\"Quelli che\u2026 Altro vengono sgozzati o bruciati vivi? SE LO MERITANO. Se sono miscredenti, quello \u00e8 il loro destino\".\n\"BAMBINE schiave sessuali? Sono OGGETTI, bisogna godere di loro prima che si convertano\".\nPACIFINTI, VIGLIACCHI e IPOCRITI preferiscono mettere la testa sotto la sabbia.\nIo dico NO al Nuovo MEDIOEVO, l'Isis va estirpato dalla faccia della Terra!", "post_text": "\"I video degli sgozzamenti mi hanno spinto ad arruolarmi all'Isis\".\n\"Avrei preferito morire che essere catturato, per Allah unico e onnipotente.\nQuando muori c'\u00e8 il Paradiso con le Vergini\".\n\"Quelli che\u2026 Altro vengono sgozzati o bruciati vivi? SE LO MERITANO. Se sono miscredenti, quello \u00e8 il loro destino\".\n\"BAMBINE schiave sessuali? Sono OGGETTI, bisogna godere di loro prima che si convertano\".\nPACIFINTI, VIGLIACCHI e IPOCRITI preferiscono mettere la testa sotto la sabbia.\nIo dico NO al Nuovo MEDIOEVO, l'Isis va estirpato dalla faccia della Terra!", "shared_text": "", "time": "2015-11-20 15:32:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153385903333155&id=252306033154", "link": null} +{"post_id": "10153385661953155", "text": "Per evitare di PIANGERE domani \u00e8 necessario fare un CONTROLLO di tutti i quartieri popolari, da Nord a Sud, ed ESPELLERE tutti quelli che sono entrati in Italia e non ne hanno diritto.", "post_text": "Per evitare di PIANGERE domani \u00e8 necessario fare un CONTROLLO di tutti i quartieri popolari, da Nord a Sud, ed ESPELLERE tutti quelli che sono entrati in Italia e non ne hanno diritto.", "shared_text": "", "time": "2015-11-20 12:51:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153385661953155&id=252306033154", "link": null} +{"post_id": "10153384304438155", "text": "Bastano 5 minuti di questo video per APRIRE GLI OCCHI.\nEcco quello che succede nelle citt\u00e0 europee dove l'Islam \u00e8 diventato maggioranza, Mohamed \u00e8 il nome pi\u00f9 diffuso tra i bambini che nascono, e la SHARIA\u2026 Altro prende il posto della DEMOCRAZIA.\nFAI GIRARE LA VERIT\u00c0, \"vi sono momenti nella vita in cui tacere diventa una colpa, e parlare diventa un obbligo\".\nFonte: http://video.ilmessaggero.it/primopiano/gli_occidentali_si_preparino_a_un_onda_di_sharia_ed_islam_il_documentario_choc_dal_quartiere_islamico_di_bruxelles-73340.shtml", "post_text": "Bastano 5 minuti di questo video per APRIRE GLI OCCHI.\nEcco quello che succede nelle citt\u00e0 europee dove l'Islam \u00e8 diventato maggioranza, Mohamed \u00e8 il nome pi\u00f9 diffuso tra i bambini che nascono, e la SHARIA\u2026 Altro prende il posto della DEMOCRAZIA.\nFAI GIRARE LA VERIT\u00c0, \"vi sono momenti nella vita in cui tacere diventa una colpa, e parlare diventa un obbligo\".\nFonte: http://video.ilmessaggero.it/primopiano/gli_occidentali_si_preparino_a_un_onda_di_sharia_ed_islam_il_documentario_choc_dal_quartiere_islamico_di_bruxelles-73340.shtml", "shared_text": "", "time": "2015-11-19 19:22:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153384304438155&id=252306033154", "link": "http://video.ilmessaggero.it/primopiano/gli_occidentali_si_preparino_a_un_onda_di_sharia_ed_islam_il_documentario_choc_dal_quartiere_islamico_di_bruxelles-73340.shtml?fbclid=IwAR1zuuZTglCi_4PAUJ1WF8lwp5NMHcm1qYJol0Pb_XgBCzM2qOzENH0NGd8"} +{"post_id": "10153383842368155", "text": "Lo sapete? MENO DI UN MESE FA tal Mohamed Ahmed al Tayyeb, invitato dalla signora BOLDRINI, doveva tenere una LEZIONE magistrale alla Camera dei Deputati.\nQuesto personaggio teorizza che Israele debba essere\u2026 Altro annientata, che i kamikaze palestinesi siano dei \"martiri\" e che le DONNE possano essere PICCHIATE.\nSiamo riusciti, insieme ad altri, a bloccare questa follia ma, se inviti un soggetto del genere, TI DEVI VERGOGNARE!", "post_text": "Lo sapete? MENO DI UN MESE FA tal Mohamed Ahmed al Tayyeb, invitato dalla signora BOLDRINI, doveva tenere una LEZIONE magistrale alla Camera dei Deputati.\nQuesto personaggio teorizza che Israele debba essere\u2026 Altro annientata, che i kamikaze palestinesi siano dei \"martiri\" e che le DONNE possano essere PICCHIATE.\nSiamo riusciti, insieme ad altri, a bloccare questa follia ma, se inviti un soggetto del genere, TI DEVI VERGOGNARE!", "shared_text": "", "time": "2015-11-19 15:52:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153383842368155&id=252306033154", "link": null} +{"post_id": "10153383535383155", "text": "\"UCCIDERE delle PERSONE? Se \u00e8 per Allah, VA BENE.\"\nBasta un minuto di telecamere NASCOSTE per capire che l'Islam non \u00e8 una religione come le altre. Qualcuno ha ancora dei dubbi?", "post_text": "\"UCCIDERE delle PERSONE? Se \u00e8 per Allah, VA BENE.\"\nBasta un minuto di telecamere NASCOSTE per capire che l'Islam non \u00e8 una religione come le altre. Qualcuno ha ancora dei dubbi?", "shared_text": "", "time": "2015-11-19 10:47:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153383535383155&id=252306033154", "link": null} +{"post_id": "10153382539233155", "text": "Per NOI occorre controllare i confini e BLOCCARE gli sbarchi.\nPer LUI non c'\u00e8 problema, i TERRORISTI non possono arrivare coi barconi: TUTTO A POSTO! Voi vi fidate? Con Renzi vi sentite al sicuro?", "post_text": "Per NOI occorre controllare i confini e BLOCCARE gli sbarchi.\nPer LUI non c'\u00e8 problema, i TERRORISTI non possono arrivare coi barconi: TUTTO A POSTO! Voi vi fidate? Con Renzi vi sentite al sicuro?", "shared_text": "", "time": "2015-11-18 20:40:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153382539233155&id=252306033154", "link": null} +{"post_id": "10153382277683155", "text": "Altro che le chiacchiere di Renzi e dell'inutile Alfano...\nCon i TAGLIAGOLE dell'ISIS servono le maniere forti, per fortuna c'\u00e8 Putin.", "post_text": "Altro che le chiacchiere di Renzi e dell'inutile Alfano...\nCon i TAGLIAGOLE dell'ISIS servono le maniere forti, per fortuna c'\u00e8 Putin.", "shared_text": "", "time": "2015-11-18 17:32:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153382277683155&id=252306033154", "link": null} +{"post_id": "10153382105218155", "text": "Che cosa farei se fossi al posto di Renzi? Appoggerei le forze che stanno intervenendo militarmente, tutti insieme.\nE toglierei le sanzioni (demenziali) alla Russia, nostra alleata nella guerra al terrore,\u2026 Altro mettendole all'Arabia Saudita, che finanzia l'Isis attraverso il petrolio.\nC'\u00e8 qualcuno SANO DI MENTE che pensa si possa DIALOGARE con i TAGLIAGOLE islamici?\nNon voglio lasciare ai miei figli un futuro di paura e di schiavit\u00f9!", "post_text": "Che cosa farei se fossi al posto di Renzi? Appoggerei le forze che stanno intervenendo militarmente, tutti insieme.\nE toglierei le sanzioni (demenziali) alla Russia, nostra alleata nella guerra al terrore,\u2026 Altro mettendole all'Arabia Saudita, che finanzia l'Isis attraverso il petrolio.\nC'\u00e8 qualcuno SANO DI MENTE che pensa si possa DIALOGARE con i TAGLIAGOLE islamici?\nNon voglio lasciare ai miei figli un futuro di paura e di schiavit\u00f9!", "shared_text": "", "time": "2015-11-18 15:51:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153382105218155&id=252306033154", "link": null} +{"post_id": "10153382041798155", "text": "Utilissimo incontro su immigrazione, tasse, sicurezza e lavoro fra la Lega e gli ambasciatori di Danimarca, Svezia, Norvegia e Finlandia.\nPer noi, un'altra Europa \u00e8 possibile.", "post_text": "Utilissimo incontro su immigrazione, tasse, sicurezza e lavoro fra la Lega e gli ambasciatori di Danimarca, Svezia, Norvegia e Finlandia.\nPer noi, un'altra Europa \u00e8 possibile.", "shared_text": "", "time": "2015-11-18 15:00:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12238173_10153382041798155_7378010801619607412_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=SCoKnK2fR_8AQnb07L2h3A19dOR90mTCBBj3nPyIXeQ17PBaDUxlmE6PQ&_nc_ht=scontent-cdt1-1.xx&oh=65d823182c63fecf99bb3f1a53d04fe6&oe=5E86860E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153381657263155", "text": "Migliaia di fischi per i morti di Parigi e grida \"Allah \u00e8 grande\", ecco l'Islam moderato della Turchia...", "post_text": "Migliaia di fischi per i morti di Parigi e grida \"Allah \u00e8 grande\", ecco l'Islam moderato della Turchia...", "shared_text": "", "time": "2015-11-18 10:29:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153381657263155&id=252306033154", "link": null} +{"post_id": "10153380212018155", "text": "\"Lo STATO ISLAMICO fa viaggiare i suoi verso l'Europa AVANTI E INDIETRO da pi\u00f9 di un anno e la crisi dei RIFUGIATI rende questo tutto pi\u00f9 facile\". \"Nelle nostre societ\u00e0 ci sono TERRORISTI impegnati a INVADERCI.\u2026 Altro Diciamo quindi ARRIVEDERCI all'epoca dei CONFINI APERTI e agli articoli entusiasti su come l'immigrazione pu\u00f2 risolvere il deficit DEMOGRAFICO dell'Europa\".\nVi ricorda qualcosa?\nNo, non sono parole della Lega, ma del prof. Ferguson, docente di storia ad Harvard. Sono le tesi non della paura, ma del BUON SENSO. Le nostre. E se stiamo INSIEME anche i nostri figli cresceranno con un po' meno paura. #iononhopaura.", "post_text": "\"Lo STATO ISLAMICO fa viaggiare i suoi verso l'Europa AVANTI E INDIETRO da pi\u00f9 di un anno e la crisi dei RIFUGIATI rende questo tutto pi\u00f9 facile\". \"Nelle nostre societ\u00e0 ci sono TERRORISTI impegnati a INVADERCI.\u2026 Altro Diciamo quindi ARRIVEDERCI all'epoca dei CONFINI APERTI e agli articoli entusiasti su come l'immigrazione pu\u00f2 risolvere il deficit DEMOGRAFICO dell'Europa\".\nVi ricorda qualcosa?\nNo, non sono parole della Lega, ma del prof. Ferguson, docente di storia ad Harvard. Sono le tesi non della paura, ma del BUON SENSO. Le nostre. E se stiamo INSIEME anche i nostri figli cresceranno con un po' meno paura. #iononhopaura.", "shared_text": "", "time": "2015-11-17 15:48:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153380212018155&id=252306033154", "link": null} +{"post_id": "10153379845308155", "text": "\"Parigi? No, non ne ho sentito parlare\". \"Uccidere in nome della religione si pu\u00f2 fare qualche volta?\". \"S\u00ec\". E gli italiani? Sono degli \"infedeli\". Se lo spirito di \"integrazione\" \u00e8 quello che emerge da queste interviste, allora c'\u00e8 MOLTO lavoro da fare...", "post_text": "\"Parigi? No, non ne ho sentito parlare\". \"Uccidere in nome della religione si pu\u00f2 fare qualche volta?\". \"S\u00ec\". E gli italiani? Sono degli \"infedeli\". Se lo spirito di \"integrazione\" \u00e8 quello che emerge da queste interviste, allora c'\u00e8 MOLTO lavoro da fare...", "shared_text": "", "time": "2015-11-17 10:53:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153379845308155&id=252306033154", "link": null} +{"post_id": "10153378951513155", "text": "\"Charlie Hebdo, per me \u00e8 giusto... BRAVI, hanno fatto BENE\".\nIo ho finito le parole, Amici.", "post_text": "\"Charlie Hebdo, per me \u00e8 giusto... BRAVI, hanno fatto BENE\".\nIo ho finito le parole, Amici.", "shared_text": "", "time": "2015-11-16 22:00:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153378951513155&id=252306033154", "link": null} +{"post_id": "10153378420683155", "text": "NON BASTA piangere le vittime, non basta dirsi parigini, non basta il minuto di silenzio.\nDobbiamo FARE.\nCONTROLLARE le frontiere, ESPELLERE i clandestini, VERIFICARE i centri islamici presenti in Italia,\u2026 Altro ANNIENTARE con le maniere forti i tagliagole dell'ISIS.\nSUBITO, ORA, perch\u00e9 ci sono momenti in cui stare fermi diventa una colpa!", "post_text": "NON BASTA piangere le vittime, non basta dirsi parigini, non basta il minuto di silenzio.\nDobbiamo FARE.\nCONTROLLARE le frontiere, ESPELLERE i clandestini, VERIFICARE i centri islamici presenti in Italia,\u2026 Altro ANNIENTARE con le maniere forti i tagliagole dell'ISIS.\nSUBITO, ORA, perch\u00e9 ci sono momenti in cui stare fermi diventa una colpa!", "shared_text": "", "time": "2015-11-16 16:16:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153378420683155&id=252306033154", "link": null} +{"post_id": "10153378206318155", "text": "Ci hanno dichiarato guerra, e Salvini \u00e8 la sua preoccupazione...\nLa SICUREZZA degli italiani non pu\u00f2 rimanere in mano ad un inutile INCAPACE!\nAlfano VERGOGNATI, poi DIMETTITI.\n#alfanodimettiti", "post_text": "Ci hanno dichiarato guerra, e Salvini \u00e8 la sua preoccupazione...\nLa SICUREZZA degli italiani non pu\u00f2 rimanere in mano ad un inutile INCAPACE!\nAlfano VERGOGNATI, poi DIMETTITI.\n#alfanodimettiti", "shared_text": "", "time": "2015-11-16 13:30:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153378206318155&id=252306033154", "link": null} +{"post_id": "10153378031368155", "text": "+++ VERGOGNA!!!!!!! #ALFANODIMETTITI +++\nE questo dovrebbe difendere gli italiani?\nPrima lo denuncio e poi... #alfanodimettiti\n\"Ascoltando Salvini sembra di percepire il suo DISPIACERE perch\u00e9 gli ATTENTATI di\u2026 Altro Parigi non siano avvenuti in ITALIA, cos\u00ec da consentirgli di fare caciara e guadagnare voti\".\nLo ha incredibilmente detto a Rai Uno l'incapace ALFANO.", "post_text": "+++ VERGOGNA!!!!!!! #ALFANODIMETTITI +++\nE questo dovrebbe difendere gli italiani?\nPrima lo denuncio e poi... #alfanodimettiti\n\"Ascoltando Salvini sembra di percepire il suo DISPIACERE perch\u00e9 gli ATTENTATI di\u2026 Altro Parigi non siano avvenuti in ITALIA, cos\u00ec da consentirgli di fare caciara e guadagnare voti\".\nLo ha incredibilmente detto a Rai Uno l'incapace ALFANO.", "shared_text": "", "time": "2015-11-16 10:36:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12234981_10153378031208155_4433422262274437774_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=lTkdQO_x3VAAQmWRY38FtNd8XX-vVI9MwM3dgEI1fgdt4rsPSsG4A5IWw&_nc_ht=scontent-cdt1-1.xx&oh=de97141c0891d5031c93c86be5eeb6fd&oe=5E508B6B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153376717973155", "text": "BASTA a chi dice \u201cnon vogliamo il Crocifisso e il Presepe nelle scuole\u201d o \u201cci spettano il medico e la palestra per soli islamici\u201d.\nSIAMO IN ITALIA. Riprendiamoci l'orgoglio della nostra Storia!\nChi non RISPETTA la generosit\u00e0 degli italiani e pretende di cambiare la nostra cultura pu\u00f2 tornare al suo Paese!", "post_text": "BASTA a chi dice \u201cnon vogliamo il Crocifisso e il Presepe nelle scuole\u201d o \u201cci spettano il medico e la palestra per soli islamici\u201d.\nSIAMO IN ITALIA. Riprendiamoci l'orgoglio della nostra Storia!\nChi non RISPETTA la generosit\u00e0 degli italiani e pretende di cambiare la nostra cultura pu\u00f2 tornare al suo Paese!", "shared_text": "", "time": "2015-11-15 16:56:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153376717973155&id=252306033154", "link": null} +{"post_id": "10153376329818155", "text": "Da FARE SUBITO.\nSostegno militare alla Russia per annientare l\u2019ISIS, controllo delle frontiere, blocco degli sbarchi ed espulsione dei clandestini, verifica a tappeto di tutte le occupazioni abusive nei nostri\u2026 Altro quartieri popolari, da Milano a Palermo.\nCi hanno dichiarato GUERRA.\nE alla guerra non si risponde con le chiacchiere di Renzi e dell\u2019inutile Alfano!", "post_text": "Da FARE SUBITO.\nSostegno militare alla Russia per annientare l\u2019ISIS, controllo delle frontiere, blocco degli sbarchi ed espulsione dei clandestini, verifica a tappeto di tutte le occupazioni abusive nei nostri\u2026 Altro quartieri popolari, da Milano a Palermo.\nCi hanno dichiarato GUERRA.\nE alla guerra non si risponde con le chiacchiere di Renzi e dell\u2019inutile Alfano!", "shared_text": "", "time": "2015-11-15 13:12:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153376329818155&id=252306033154", "link": null} +{"post_id": "10153373486183155", "text": "#iononhopaura", "post_text": "#iononhopaura", "shared_text": "", "time": "2015-11-14 11:02:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12249851_10153373485943155_5808500657821903204_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=uQSNGxR8pSkAQkVqUYGPrtud4KLu_I2vBLAOK4dTQlV_5One9ZgBOgqZQ&_nc_ht=scontent-cdt1-1.xx&oh=3105979863b70dcb3cf1e71f6e4e7881&oe=5E79D891", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153373432143155", "text": "Il silenzio \u00e8 complice del terrorismo. Fai girare la VERIT\u00c0! Grazie, Oriana. #iononhopaura", "post_text": "Il silenzio \u00e8 complice del terrorismo. Fai girare la VERIT\u00c0! Grazie, Oriana. #iononhopaura", "shared_text": "", "time": "2015-11-14 10:56:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153373432143155&id=252306033154", "link": null} +{"post_id": "10153372459178155", "text": "Una preghiera per i morti innocenti di Parigi. E poi chiusura delle frontiere, controllo a tappeto di tutte le realt\u00e0 islamiche presenti in Italia, bloccare partenze e sbarchi, attaccare in Siria e in Libia.\nI tagliagole e i terroristi islamici vanno ELIMINATI con la forza!", "post_text": "Una preghiera per i morti innocenti di Parigi. E poi chiusura delle frontiere, controllo a tappeto di tutte le realt\u00e0 islamiche presenti in Italia, bloccare partenze e sbarchi, attaccare in Siria e in Libia.\nI tagliagole e i terroristi islamici vanno ELIMINATI con la forza!", "shared_text": "", "time": "2015-11-14 00:30:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12240078_10153372458933155_1483202544428078798_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=nO63efXKXBQAQmf8K5Txix2w6H6cA8NEpigcvVSw8D6tn_PyXVIq3r3ew&_nc_ht=scontent-cdt1-1.xx&oh=ecb14fadffafc359b0748d569861475f&oe=5E3ECF2F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153371596638155", "text": "Che tutto va bene e che la crisi \u00e8 finita Renzi lo vada a raccontare a Salvo, ai suoi bimbi, alla sua famiglia e a quelle dei suoi quasi 600 colleghi della MICHELIN che perderanno posto di lavoro, speranze e futuro. Dall'opposizione far\u00f2 quello che posso per aiutare questi lavoratori. E Renzi? Se ci sei, BATTI UN COLPO!", "post_text": "Che tutto va bene e che la crisi \u00e8 finita Renzi lo vada a raccontare a Salvo, ai suoi bimbi, alla sua famiglia e a quelle dei suoi quasi 600 colleghi della MICHELIN che perderanno posto di lavoro, speranze e futuro. Dall'opposizione far\u00f2 quello che posso per aiutare questi lavoratori. E Renzi? Se ci sei, BATTI UN COLPO!", "shared_text": "", "time": "2015-11-13 15:24:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153371596638155&id=252306033154", "link": null} +{"post_id": "10153371360798155", "text": "Oltre il danno, anche la BEFFA: gli \"antagonisti\" fermati a Bologna sono gi\u00e0 liberi. ASCOLTATE l'agente di Polizia: \"C'\u00e8 gente denunciata gi\u00e0 pi\u00f9 di 60 volte ma mai portata a processo, passa il messaggio che si\u2026 Altro goda di IMPUNIT\u00c0\". Servirebbe l'arresto obbligatorio per i reati commessi durante le manifestazioni, anche per gli incensurati. Che ne pensate?", "post_text": "Oltre il danno, anche la BEFFA: gli \"antagonisti\" fermati a Bologna sono gi\u00e0 liberi. ASCOLTATE l'agente di Polizia: \"C'\u00e8 gente denunciata gi\u00e0 pi\u00f9 di 60 volte ma mai portata a processo, passa il messaggio che si\u2026 Altro goda di IMPUNIT\u00c0\". Servirebbe l'arresto obbligatorio per i reati commessi durante le manifestazioni, anche per gli incensurati. Che ne pensate?", "shared_text": "", "time": "2015-11-13 11:19:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153371360798155&id=252306033154", "link": null} +{"post_id": "10153370480338155", "text": "Quattro sindaci vicentini sono stati segnalati dalla Prefettura per essersi tolti la fascia tricolore al funerale di Ermes Mattielli, il rigattiere morto di infarto dopo la condanna a 5 anni e 4 mesi per aver\u2026 Altro ferito due ladri. Si tratta dei primi cittadini di Velo d'Astico, Cogollo del Cengio, Laghi e Albettone.\nIO STO CON I SINDACI!", "post_text": "Quattro sindaci vicentini sono stati segnalati dalla Prefettura per essersi tolti la fascia tricolore al funerale di Ermes Mattielli, il rigattiere morto di infarto dopo la condanna a 5 anni e 4 mesi per aver\u2026 Altro ferito due ladri. Si tratta dei primi cittadini di Velo d'Astico, Cogollo del Cengio, Laghi e Albettone.\nIO STO CON I SINDACI!", "shared_text": "", "time": "2015-11-12 20:21:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/12241172_10153370480338155_3247179920916584765_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=bAMsSwV01soAQmSH9jG6iQULNGCb1qQWuGrct9A7IQ3H4HvW1udaLNmaQ&_nc_ht=scontent-cdt1-1.xx&oh=a1eb9c434c179613e7458da6f9ee3670&oe=5E48476E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153370261883155", "text": "In meno di 2 minuti scopri la verit\u00e0 sulla TRUFFA del LATTE dalla voce di chi si spacca la schiena tutti i giorni per produrlo.\nAiutiamo i nostri allevatori, fai girare!", "post_text": "In meno di 2 minuti scopri la verit\u00e0 sulla TRUFFA del LATTE dalla voce di chi si spacca la schiena tutti i giorni per produrlo.\nAiutiamo i nostri allevatori, fai girare!", "shared_text": "", "time": "2015-11-12 18:29:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153370261883155&id=252306033154", "link": null} +{"post_id": "10153370156653155", "text": "Non rancore, non odio, non passato: da Bologna solo IDEE e FUTURO.\nSe stiamo insieme e riuniamo tutte le persone perbene, anche chi oggi non andrebbe a votare, per Renzi \u00e8 finita.", "post_text": "Non rancore, non odio, non passato: da Bologna solo IDEE e FUTURO.\nSe stiamo insieme e riuniamo tutte le persone perbene, anche chi oggi non andrebbe a votare, per Renzi \u00e8 finita.", "shared_text": "", "time": "2015-11-12 17:13:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153370156653155&id=252306033154", "link": null} +{"post_id": "10153369877308155", "text": "Con Recco e la Liguria nel cuore, in aula a Bruxelles, per difendere il Made in Italy, massacrato da questa Europa.", "post_text": "Con Recco e la Liguria nel cuore, in aula a Bruxelles, per difendere il Made in Italy, massacrato da questa Europa.", "shared_text": "", "time": "2015-11-12 13:05:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12238496_10153369877308155_1124585674219848741_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=Rywf5dnCHaIAQk3sxpc2BtT4G8afj9QRmfC01MFISgh9HtADXVBv1I6xw&_nc_ht=scontent-cdt1-1.xx&oh=c085b5d25abe03c0156651a5fcaa4e1f&oe=5E802247", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153369734398155", "text": "Rieti, vita reale: passeggeri di un autobus protestano con alcuni immigrati che non vogliono pagare il biglietto, e che reagiscono con insulti e \"VAFFA\"... \u00c8 questa l'INTEGRAZIONE che piace a Renzi, Boldrini &\u2026 Altro c.??? Nell'Italia che vogliamo c'\u00e8 il rispetto delle REGOLE e della CONVIVENZA CIVILE. Per tutti.\nE se non ti sta bene, TORNA A CASA TUA!", "post_text": "Rieti, vita reale: passeggeri di un autobus protestano con alcuni immigrati che non vogliono pagare il biglietto, e che reagiscono con insulti e \"VAFFA\"... \u00c8 questa l'INTEGRAZIONE che piace a Renzi, Boldrini &\u2026 Altro c.??? Nell'Italia che vogliamo c'\u00e8 il rispetto delle REGOLE e della CONVIVENZA CIVILE. Per tutti.\nE se non ti sta bene, TORNA A CASA TUA!", "shared_text": "", "time": "2015-11-12 11:10:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153369734398155&id=252306033154", "link": null} +{"post_id": "10153369649723155", "text": "Questa mattina, alle 11.30, sar\u00f2 a Pieve Emanuele, vicino Milano, a sostegno dei nostri allevatori, a difesa del latte italiano e dell'eccellenza delle\nnostre produzioni. E i finti prodotti \"Made in Italy\" se li mangino i signori delle multinazionali!", "post_text": "Questa mattina, alle 11.30, sar\u00f2 a Pieve Emanuele, vicino Milano, a sostegno dei nostri allevatori, a difesa del latte italiano e dell'eccellenza delle\nnostre produzioni. E i finti prodotti \"Made in Italy\" se li mangino i signori delle multinazionali!", "shared_text": "", "time": "2015-11-12 08:51:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12196348_10153369649573155_1840437800344664855_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=O0B2lgpTz0wAQlTMMDa1nt9GcNvL7KTnwatPQPcbEUbtkDWlgdAOW7A3w&_nc_ht=scontent-cdt1-1.xx&oh=cdcd3ecac53c1e961a2624bc47f3c6a0&oe=5E89A96A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153368890448155", "text": "C'\u00e8 l'Italia di Renzi e poi c'\u00e8 l'Italia a cui pensiamo noi, dove gli italiani vengono PRIMA di chi sbarca domani mattina.\n\u00c8 chiedere tanto?", "post_text": "C'\u00e8 l'Italia di Renzi e poi c'\u00e8 l'Italia a cui pensiamo noi, dove gli italiani vengono PRIMA di chi sbarca domani mattina.\n\u00c8 chiedere tanto?", "shared_text": "", "time": "2015-11-11 20:03:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153368890448155&id=252306033154", "link": null} +{"post_id": "10153368800253155", "text": "Dedicato a chi c'era, e a chi di voi non ha potuto esserci ma con il cuore era a Bologna, in una splendida giornata di LIBERT\u00c0!", "post_text": "Dedicato a chi c'era, e a chi di voi non ha potuto esserci ma con il cuore era a Bologna, in una splendida giornata di LIBERT\u00c0!", "shared_text": "", "time": "2015-11-11 19:05:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153368800253155&id=252306033154", "link": null} +{"post_id": "10153368408688155", "text": "Io sono sempre pi\u00f9 convinto che ce la possiamo fare.\nTutti insieme, da Nord a Sud, batteremo Renzi e torneremo grandi!", "post_text": "Io sono sempre pi\u00f9 convinto che ce la possiamo fare.\nTutti insieme, da Nord a Sud, batteremo Renzi e torneremo grandi!", "shared_text": "", "time": "2015-11-11 14:18:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153368408688155&id=252306033154", "link": null} +{"post_id": "10153367371088155", "text": "Guardate uno dei \"bravi ragazzi\" fermati domenica a Bologna: violenza, resistenza ai poliziotti, bestemmie, sputi. Prima lancia petardi con il volto coperto, poi quando tentano di ammanettarlo minaccia di denunciare gli agenti per \"violenza\"...\nNaturalmente \u00e8 gi\u00e0 libero. Voi dove lo mandereste a LAVORARE uno cos\u00ec???", "post_text": "Guardate uno dei \"bravi ragazzi\" fermati domenica a Bologna: violenza, resistenza ai poliziotti, bestemmie, sputi. Prima lancia petardi con il volto coperto, poi quando tentano di ammanettarlo minaccia di denunciare gli agenti per \"violenza\"...\nNaturalmente \u00e8 gi\u00e0 libero. Voi dove lo mandereste a LAVORARE uno cos\u00ec???", "shared_text": "", "time": "2015-11-10 20:59:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153367371088155&id=252306033154", "link": null} +{"post_id": "10153367329798155", "text": "Vi aspetto questa sera alle 23.15 su Rai Uno, sar\u00e0 interessante!", "post_text": "Vi aspetto questa sera alle 23.15 su Rai Uno, sar\u00e0 interessante!", "shared_text": "", "time": "2015-11-10 20:20:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12183739_10153367329633155_6658882929641421807_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=HMRCoairYCAAQmvVxP9iQu9zba1T2bwjXcv3VEgdFQTCC8QUR07gd9yQQ&_nc_ht=scontent-cdt1-1.xx&oh=2b03b0a209adec0e87bd910e4b427091&oe=5E4AF861", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153366886163155", "text": "Io sto con i NOSTRI ALLEVATORI. Consumiamo solo MADE IN ITALY, alla faccia dell'Europa che vuole distruggere le nostre produzioni!", "post_text": "Io sto con i NOSTRI ALLEVATORI. Consumiamo solo MADE IN ITALY, alla faccia dell'Europa che vuole distruggere le nostre produzioni!", "shared_text": "", "time": "2015-11-10 14:45:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153366886163155&id=252306033154", "link": null} +{"post_id": "10153365715003155", "text": "Dalla piazza di Bologna parte la RIVOLUZIONE delle persone PERBENE!\nNon mi arrender\u00f2 fino a che questo nostro Paese non torner\u00e0 ad essere il Paese pi\u00f9 bello del mondo!", "post_text": "Dalla piazza di Bologna parte la RIVOLUZIONE delle persone PERBENE!\nNon mi arrender\u00f2 fino a che questo nostro Paese non torner\u00e0 ad essere il Paese pi\u00f9 bello del mondo!", "shared_text": "", "time": "2015-11-09 19:47:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153365715003155&id=252306033154", "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 231 nuove foto \u2014 presso Piazza Maggiore.\n9 novembre 2015 alle ore 18:33 \u00b7 Bologna \u00b7\nAltre opzioni\nUn po' di foto di una splendida giornata!\n[\"Liberiamoci e Ripartiamo\" - Bologna, domenica 8 novembre 2015]", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 231 nuove foto \u2014 presso Piazza Maggiore.\n9 novembre 2015 alle ore 18:33 \u00b7 Bologna \u00b7\nAltre opzioni\nUn po' di foto di una splendida giornata!\n[\"Liberiamoci e Ripartiamo\" - Bologna, domenica 8 novembre 2015]", "time": "2015-11-09 18:33:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12194809_10153365608838155_952058004148047359_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=BL1InKnXCOQAQlkhC5XgKjPmIs7OnolF1An2UTbTRwOOnZfpjOEzakThg&_nc_ht=scontent-cdt1-1.xx&oh=0783c81817447d5c56daec42d4b0075c&oe=5E418338", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153365104838155", "text": "C'\u00e8 chi i poliziotti li prende a bastonate e c'\u00e8 chi...", "post_text": "C'\u00e8 chi i poliziotti li prende a bastonate e c'\u00e8 chi...", "shared_text": "", "time": "2015-11-09 12:00:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153365104838155&id=252306033154", "link": null} +{"post_id": "10153364828698155", "text": "GRAZIE Bologna! La piazza delle persone PERBENE che porter\u00f2 sempre nel cuore.\nSe voi ci siete, IO CI SONO! Il governo delle tasse e dell'invasione LO MANDIAMO A CASA. INSIEME si pu\u00f2!\n#liberiamoci e #RIPARTIAMO!", "post_text": "GRAZIE Bologna! La piazza delle persone PERBENE che porter\u00f2 sempre nel cuore.\nSe voi ci siete, IO CI SONO! Il governo delle tasse e dell'invasione LO MANDIAMO A CASA. INSIEME si pu\u00f2!\n#liberiamoci e #RIPARTIAMO!", "shared_text": "", "time": "2015-11-09 06:16:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12186380_10153364828578155_52110427041926221_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=yFR74uVByMsAQlIYHji1WaA5VsM3X4cdIMsmhy_Rap0BI9oDZSpF1RMHA&_nc_ht=scontent-cdt1-1.xx&oh=0bba72439185b5aa1ebc187d510a68ad&oe=5E3F5D7B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153363402198155", "text": "A Bologna con Silvio Berlusconi e Giorgia Meloni: #Liberiamoci!", "post_text": "A Bologna con Silvio Berlusconi e Giorgia Meloni: #Liberiamoci!", "shared_text": "", "time": "2015-11-08 13:45:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12188252_10153363402198155_1811749416911875683_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=qbh8caruNIUAQn5ffHMv8HL1znPu5Z5y48etHZtElQn14LSGcsmkjgxsw&_nc_ht=scontent-cdt1-1.xx&oh=5b69804f120d492d4795f39ddc24d379&oe=5E4414ED", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153362647278155", "text": "Oggi un MARE di persone perbene invader\u00e0 pacificamente piazza Maggiore a BOLOGNA. Se voi ci siete, IO CI SONO! Riprendiamoci il nostro Futuro!\nRenzuccio, arriviamo!\n#liberiamoci - WWW.LIBERIAMOCI.COM", "post_text": "Oggi un MARE di persone perbene invader\u00e0 pacificamente piazza Maggiore a BOLOGNA. Se voi ci siete, IO CI SONO! Riprendiamoci il nostro Futuro!\nRenzuccio, arriviamo!\n#liberiamoci - WWW.LIBERIAMOCI.COM", "shared_text": "", "time": "2015-11-08 00:51:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12188178_10153362647143155_2422785306173852015_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=tJEiFWyxQ7MAQkuRX-QMwtR5CpV4AEVYwqC-_bHpX5x9Ap2hcdGYdkEEw&_nc_ht=scontent-cdt1-1.xx&oh=c00bc7d47f559e165e71b3d9ef1a58ed&oe=5E4D669E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.LIBERIAMOCI.COM/?fbclid=IwAR3vpQzUedAx4p4eqP_2ROsg6Ne86A7ogbtKqkaoiapueWsukKep8bMdnSo"} +{"post_id": "10153361498298155", "text": "++ MENO 1! DOMANI! PRONTI??? ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "++ MENO 1! DOMANI! PRONTI??? ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-11-07 09:08:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12227747_10153361497988155_4871043581662209831_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=4z8AyXyV-tQAQlK-Isv20-U84-hNAeRbtDSrQRBZ3DeaFFRLqynAsj_jw&_nc_ht=scontent-cdt1-1.xx&oh=040e0fea3e829a33dbfc5f42032eb224&oe=5E877894", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR0KG6DjsgIncS-IxUVYmgyYcVhik6jfPNiL2Kdi6ggGfXN5Lz4R-cVxA34"} +{"post_id": "10153360445613155", "text": "E stasera... pizza!!! Voi?", "post_text": "E stasera... pizza!!! Voi?", "shared_text": "", "time": "2015-11-06 20:59:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12189240_10153360445613155_7203394712491015424_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=DuIJBHT3ET0AQmUEm0sSKKaLZ9JZoOvfk62chOPsp6XZTQ4cCFthM8YYA&_nc_ht=scontent-cdt1-1.xx&oh=27e32f501c75a5bc6472e4d81a6ad8b7&oe=5E879348", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153360013623155", "text": "Fai girare, in soli 5 minuti guarda cosa sta succedendo a Mosca per colpa delle folli sanzioni alla Russia.\nSolo imbecilli o qui qualcuno \u00e8 pagato per danneggiare l'Italia?", "post_text": "Fai girare, in soli 5 minuti guarda cosa sta succedendo a Mosca per colpa delle folli sanzioni alla Russia.\nSolo imbecilli o qui qualcuno \u00e8 pagato per danneggiare l'Italia?", "shared_text": "", "time": "2015-11-06 15:32:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153360013623155&id=252306033154", "link": null} +{"post_id": "10153360006263155", "text": "Questi due qua domenica a Bologna NON CI SONO! Potete venire tranquilli!", "post_text": "Questi due qua domenica a Bologna NON CI SONO! Potete venire tranquilli!", "shared_text": "", "time": "2015-11-06 15:03:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12195067_10153360006263155_8796799305356983977_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=kUmVO7b1p9kAQkuH0REbKXvHhFCpWX1n8D5oR4H-AR9xIWXLOhGFhgSVA&_nc_ht=scontent-cdt1-1.xx&oh=0b522a06f9b37a734c9e7db75d765183&oe=5E42E301", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153359656453155", "text": "Ci siamo, Amici. MENO 2! CI SARETE???\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "Ci siamo, Amici. MENO 2! CI SARETE???\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-11-06 10:01:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12187958_10153359656338155_7080380414485220674_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=OkeF3pnndz0AQmtNBwQvLMF6PepS1K1MRukN8u7i2vGXDqRPR6fDpYlVw&_nc_ht=scontent-cdt1-1.xx&oh=355df21e9e6ddddb60c8ee403290143c&oe=5E4FF78F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR1z5Ageq9_KUah-BcZ2EZGINz95uWecQEH3fRmkYyFPFAIjohD6sPYa_sQ"} +{"post_id": "10153358600963155", "text": "Abbatteremo questo Stato SCHIFOSO che protegge i delinquenti e processa chi si difende. La tua morte non sar\u00e0 vana, un pensiero e una preghiera per te, buon viaggio Ermes.", "post_text": "Abbatteremo questo Stato SCHIFOSO che protegge i delinquenti e processa chi si difende. La tua morte non sar\u00e0 vana, un pensiero e una preghiera per te, buon viaggio Ermes.", "shared_text": "", "time": "2015-11-05 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153358600963155&id=252306033154", "link": null} +{"post_id": "10153358162553155", "text": "La legge Fornero non sta danneggiando solo quelli che hanno la \"sfiga\" di essere nati nel 1952, ma tiene fuori dal mondo del lavoro un MILIONE di giovani, rubando il futuro a un'intera generazione. Quando saremo al governo vi assicuro che questa schifezza la cancelleremo, e alla signora Fornero rideremo in faccia.", "post_text": "La legge Fornero non sta danneggiando solo quelli che hanno la \"sfiga\" di essere nati nel 1952, ma tiene fuori dal mondo del lavoro un MILIONE di giovani, rubando il futuro a un'intera generazione. Quando saremo al governo vi assicuro che questa schifezza la cancelleremo, e alla signora Fornero rideremo in faccia.", "shared_text": "", "time": "2015-11-05 15:20:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153358162553155&id=252306033154", "link": null} +{"post_id": "10153357938748155", "text": "Un altro GENIO (del governo) che difende gli studi di settore! Lo dica a quelli che hanno la partita IVA in tasca e vengono ogni giorno massacrati dallo Stato ladro (il pubblico ha apprezzato). Domenica a BOLOGNA: liberiamoci dai PARASSITI!", "post_text": "Un altro GENIO (del governo) che difende gli studi di settore! Lo dica a quelli che hanno la partita IVA in tasca e vengono ogni giorno massacrati dallo Stato ladro (il pubblico ha apprezzato). Domenica a BOLOGNA: liberiamoci dai PARASSITI!", "shared_text": "", "time": "2015-11-05 11:52:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153357938748155&id=252306033154", "link": null} +{"post_id": "10153357874373155", "text": "++ MENO 3 A BOLOGNA! SIETE PRONTI??? ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "++ MENO 3 A BOLOGNA! SIETE PRONTI??? ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-11-05 10:15:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/886037_10153357874248155_5226178144946542718_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=A3mpPATAFMoAQnno5HeC6YxHk3PufskWxTLJvf1TRFESCdVA1fHT3q0kQ&_nc_ht=scontent-cdt1-1.xx&oh=a2ed9e7e3953acbad8dd3015487ad02c&oe=5E49A720", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR2wcS0L51OlLXQRGz86hn28BZduxl58Qt-tGD1mipbzG_G7G48YIkKKVHk"} +{"post_id": "10153356824228155", "text": "E la carne fa male, e il caff\u00e8 fa male, e il latte fa male... Ma basta con questi allarmismi!\nHanno rotto le palle e in pi\u00f9 ci costano migliaia di POSTI DI LAVORO!\nAbbiamo il cibo e i prodotti pi\u00f9 buoni del mondo, COMPRIAMO e consumiamo ITALIANO!", "post_text": "E la carne fa male, e il caff\u00e8 fa male, e il latte fa male... Ma basta con questi allarmismi!\nHanno rotto le palle e in pi\u00f9 ci costano migliaia di POSTI DI LAVORO!\nAbbiamo il cibo e i prodotti pi\u00f9 buoni del mondo, COMPRIAMO e consumiamo ITALIANO!", "shared_text": "", "time": "2015-11-04 17:00:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153356824228155&id=252306033154", "link": null} +{"post_id": "10153356497873155", "text": "Non mi basta che tu dica: ci vanno gli altri. Mi servi TU!\nDomenica sar\u00e0 una giornata di Futuro, di costruzione, di lavoro, di sicurezza e di LIBERT\u00c0!\nInvadiamo, pacificamente, Bologna.\nWWW.LIBERIAMOCI.COM", "post_text": "Non mi basta che tu dica: ci vanno gli altri. Mi servi TU!\nDomenica sar\u00e0 una giornata di Futuro, di costruzione, di lavoro, di sicurezza e di LIBERT\u00c0!\nInvadiamo, pacificamente, Bologna.\nWWW.LIBERIAMOCI.COM", "shared_text": "", "time": "2015-11-04 12:58:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153356497873155&id=252306033154", "link": "http://WWW.LIBERIAMOCI.COM/?fbclid=IwAR1kN8OOn2ZDVW8qyYQGQwxeXlxFihEpKbdpBSsRhS7spbqWlIfxajrMtiw"} +{"post_id": "10153356412813155", "text": "\"Sono bresciano, ho bisogno di una mano, datemi qualcosa\". Senza lavoro e senza casa, chiede l'elemosina. I vigili lo MULTANO, mentre di fianco i parcheggiatori abusivi (stranieri) agiscono indisturbati... Che SCHIFO!", "post_text": "\"Sono bresciano, ho bisogno di una mano, datemi qualcosa\". Senza lavoro e senza casa, chiede l'elemosina. I vigili lo MULTANO, mentre di fianco i parcheggiatori abusivi (stranieri) agiscono indisturbati... Che SCHIFO!", "shared_text": "", "time": "2015-11-04 11:28:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153356412813155&id=252306033154", "link": null} +{"post_id": "10153356334458155", "text": "++ MENO 4 A BOLOGNA! FACCIAMO VEDERE A TUTTA ITALIA CHE NON VOGLIAMO MORIRE RENZIANI!! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "++ MENO 4 A BOLOGNA! FACCIAMO VEDERE A TUTTA ITALIA CHE NON VOGLIAMO MORIRE RENZIANI!! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-11-04 09:48:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12194538_10153356334368155_5164974880342568857_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=ysuT9Ue17oYAQnCIKi6LUEPVXE6h9OlJCR8-Nv8pnifzHdWUbbSHSuelQ&_nc_ht=scontent-cdt1-1.xx&oh=61503f3b32cc28423f28d075ef39a72c&oe=5E7C731C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR3uKM6OXrkGkZIpeG3wpB1tvHKGtZwRBeX3RIlyFk5H74C942-FFUuXfzs"} +{"post_id": "10153355584838155", "text": "Ascoltate il sig. Librandi, a lui quella porcheria della Legge Fornero piace tanto... lo mandiamo a lavorare in miniera fino a 80 anni???", "post_text": "Ascoltate il sig. Librandi, a lui quella porcheria della Legge Fornero piace tanto... lo mandiamo a lavorare in miniera fino a 80 anni???", "shared_text": "", "time": "2015-11-03 19:54:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153355584838155&id=252306033154", "link": null} +{"post_id": "10153355127003155", "text": "Benvenuti nella roccaforte del clan calabrese degli ZINGARI: fuori casa popolare, dentro violini, Rolex, vasche idromassaggio, armi e cocaina e, oltre a una sobria Ferrari, anche una Aston Martin, l'auto di James Bond... RUSPAAA!!!", "post_text": "Benvenuti nella roccaforte del clan calabrese degli ZINGARI: fuori casa popolare, dentro violini, Rolex, vasche idromassaggio, armi e cocaina e, oltre a una sobria Ferrari, anche una Aston Martin, l'auto di James Bond... RUSPAAA!!!", "shared_text": "", "time": "2015-11-03 13:43:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153355127003155&id=252306033154", "link": null} +{"post_id": "10153354877408155", "text": "++ MENO 5 A BOLOGNA! FACCIAMO VEDERE A TUTTA ITALIA CHE NON VOGLIAMO MORIRE RENZIANI!! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "++ MENO 5 A BOLOGNA! FACCIAMO VEDERE A TUTTA ITALIA CHE NON VOGLIAMO MORIRE RENZIANI!! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-11-03 09:04:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12183963_10153354877303155_3068849117574824520_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=WrmeoRxo9_IAQkMNocT0NvK1Y9kVxLcOQVu5q402XsKroZhsqoxBDc35Q&_nc_ht=scontent-cdt1-1.xx&oh=291f09485602ad40a1681e65d5e015ce&oe=5E42E4F4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR0DZvmr4hBTQyeqyL-NH8UAFDEVTzaFqmDmsNgJYBVC3E4VG0PCpsIRXEc"} +{"post_id": "10153354275458155", "text": "A Vercelli oggi presunti \"profughi\" protestavano perch\u00e9 non hanno il WI-FI. A Latina questa famiglia, mamma e pap\u00e0 ottantenni e invalidi, senza pensione e sotto sfratto, \u00e8 arrivata a vendersi le FEDI NUZIALI. Se tutto questo ti fa COMMUOVERE ma anche INCAZZARE, condividi.\nIO NON MOLLO, questa Italia ce la riprendiamo!", "post_text": "A Vercelli oggi presunti \"profughi\" protestavano perch\u00e9 non hanno il WI-FI. A Latina questa famiglia, mamma e pap\u00e0 ottantenni e invalidi, senza pensione e sotto sfratto, \u00e8 arrivata a vendersi le FEDI NUZIALI. Se tutto questo ti fa COMMUOVERE ma anche INCAZZARE, condividi.\nIO NON MOLLO, questa Italia ce la riprendiamo!", "shared_text": "", "time": "2015-11-02 23:15:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153354275458155&id=252306033154", "link": null} +{"post_id": "10153354149068155", "text": "Monti, Letta, Renzi hanno aperto le porte a 20mila delinquenti con indulti e \"svuotacarceri\". Non c'\u00e8 pi\u00f9 spazio in galera? COSTRUISCI nuove carceri. Ho detto bene???", "post_text": "Monti, Letta, Renzi hanno aperto le porte a 20mila delinquenti con indulti e \"svuotacarceri\". Non c'\u00e8 pi\u00f9 spazio in galera? COSTRUISCI nuove carceri. Ho detto bene???", "shared_text": "", "time": "2015-11-02 21:53:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153354149068155&id=252306033154", "link": null} +{"post_id": "10153353857693155", "text": "Sui ROM conoscete qualche cittadino italiano che non la pensa come noi?\nP.s. ATTENZIONE! Non condividete questo video sulla pagina della Boldrini!", "post_text": "Sui ROM conoscete qualche cittadino italiano che non la pensa come noi?\nP.s. ATTENZIONE! Non condividete questo video sulla pagina della Boldrini!", "shared_text": "", "time": "2015-11-02 19:17:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153353857693155&id=252306033154", "link": null} +{"post_id": "10153353772663155", "text": "Egiziano POLIGAMO teneva nascosta una moglie e tre figli piccoli in un GARAGE (all'insaputa dell'altra moglie)...\nEvviva l'Italia multiculturale che piace tanto alla sinistra!", "post_text": "Egiziano POLIGAMO teneva nascosta una moglie e tre figli piccoli in un GARAGE (all'insaputa dell'altra moglie)...\nEvviva l'Italia multiculturale che piace tanto alla sinistra!", "shared_text": "", "time": "2015-11-02 17:56:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153353772663155&id=252306033154", "link": null} +{"post_id": "10153353709813155", "text": "Sono tanti i TAXISTI che mi fermano in giro, a Milano o a Roma, e in tanti saranno con noi in piazza a Bologna domenica prossima. Per chiedere:\n1. Legalit\u00e0: contrasto all'ABUSIVISMO.\n2. Controlli e strumenti\u2026 Altro per proteggersi in citt\u00e0 sempre pi\u00f9 INSICURE\n3. Innovazione tecnologica, tutelando il lavoro dei PICCOLI contro l'aggressione delle multinazionali straniere.\nDiffondi tra i tuoi amici taxisti!\n#Liberiamoci e ripartiamo!\nwww.liberiamoci.com - 02 66.234.234", "post_text": "Sono tanti i TAXISTI che mi fermano in giro, a Milano o a Roma, e in tanti saranno con noi in piazza a Bologna domenica prossima. Per chiedere:\n1. Legalit\u00e0: contrasto all'ABUSIVISMO.\n2. Controlli e strumenti\u2026 Altro per proteggersi in citt\u00e0 sempre pi\u00f9 INSICURE\n3. Innovazione tecnologica, tutelando il lavoro dei PICCOLI contro l'aggressione delle multinazionali straniere.\nDiffondi tra i tuoi amici taxisti!\n#Liberiamoci e ripartiamo!\nwww.liberiamoci.com - 02 66.234.234", "shared_text": "", "time": "2015-11-02 17:05:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/12194684_10153353709813155_6475441134393378768_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=nL9Ml3FYVX8AQmCIB-EUACLaN8G9lzhlabHm9Cw4-s1SnT1iFoSczX23w&_nc_ht=scontent-cdt1-1.xx&oh=33fedd291a3b4d3b280e2be403053541&oe=5E414999", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR0FsmOnsSntO3tvTDFFQ0BlGTy2iCVEBKmUwal3ipZZtfvHUW5C2uAum1w"} +{"post_id": "10153353377833155", "text": "Vi presento l'\"ASSESSORE URLANTE\"... Si occupi dei problemi di Napoli, con meno urla, pi\u00f9 risposte e pi\u00f9 umilt\u00e0. Siete d'accordo?", "post_text": "Vi presento l'\"ASSESSORE URLANTE\"... Si occupi dei problemi di Napoli, con meno urla, pi\u00f9 risposte e pi\u00f9 umilt\u00e0. Siete d'accordo?", "shared_text": "", "time": "2015-11-02 12:24:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153353377833155&id=252306033154", "link": null} +{"post_id": "10153353220128155", "text": "++ MENO 6 A BOLOGNA! FACCIAMO VEDERE A TUTTA ITALIA CHE NON VOGLIAMO MORIRE RENZIANI!! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "++ MENO 6 A BOLOGNA! FACCIAMO VEDERE A TUTTA ITALIA CHE NON VOGLIAMO MORIRE RENZIANI!! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-11-02 09:56:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12191192_10153353220008155_8979284416663803507_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=83RF48aNQ6sAQnBq2NGWnhljnTyR1rlfwy1fiUMet4TpaAAsJuXcGoNtA&_nc_ht=scontent-cdt1-1.xx&oh=454dfa50403698b07d39fb82c3015549&oe=5E7B35EB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR3YeQTiFVxpPPdJcG7u8T7vR09fQMplA-VOpgoJ-zlc1pSWx1TUGLAfUeI"} +{"post_id": "10153351775253155", "text": "Un bravo giornalista!", "post_text": "Un bravo giornalista!", "shared_text": "", "time": "2015-11-01 15:43:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12185336_10153351775253155_3433862347303777558_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=Gw-UibImcxUAQnTjB9H-mpuCTMm_Oa8c4m058ViXZgzug3OhwEIzaWm8Q&_nc_ht=scontent-cdt1-1.xx&oh=c0f4d540e7e54e8989e7ae89d5ae53e2&oe=5E4DE6D5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153351343468155", "text": "++ MENO 7 A BOLOGNA! OCCORRE ESSERCI! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "++ MENO 7 A BOLOGNA! OCCORRE ESSERCI! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-11-01 10:02:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12195056_10153351343418155_560183506874033317_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=c0v5qgVIuyQAQl7iTx2ntNYigZsheEQzn3WVha-Dhpw8QHyrS7cjGO4qA&_nc_ht=scontent-cdt1-1.xx&oh=6c6dcc7cdce3c821cff1b2a2e345bdcf&oe=5E47B718", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR00CNF61RCzQbQ6slbAkAaFxucPTTVBZHxcHhErQ3Zu9mbr0Sel2aUwmaY"} +{"post_id": "10153350441138155", "text": "Il gioielliere Roberto Zancan: \"Stacchio mi ha salvato la vita\".\nUna breve intervista, vale la pena guardarla, e condividerla.\nLEGITTIMA DIFESA, sempre: non \u00e8 mai eccessiva se serve per evitare il funerale di chi viene aggredito.\nUn pensiero e una preghiera per quelli che non ce l'hanno fatta.", "post_text": "Il gioielliere Roberto Zancan: \"Stacchio mi ha salvato la vita\".\nUna breve intervista, vale la pena guardarla, e condividerla.\nLEGITTIMA DIFESA, sempre: non \u00e8 mai eccessiva se serve per evitare il funerale di chi viene aggredito.\nUn pensiero e una preghiera per quelli che non ce l'hanno fatta.", "shared_text": "", "time": "2015-10-31 21:16:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153350441138155&id=252306033154", "link": null} +{"post_id": "10153350028583155", "text": "A certi proprio non va gi\u00f9 che tanti soggetti, apolitici e apartitici, abbiano deciso di essere con noi a BOLOGNA l'8 novembre. Per bloccare un governo che sta facendo il MALE dell'Italia, per RESPIRARE e RIPARTIRE!", "post_text": "A certi proprio non va gi\u00f9 che tanti soggetti, apolitici e apartitici, abbiano deciso di essere con noi a BOLOGNA l'8 novembre. Per bloccare un governo che sta facendo il MALE dell'Italia, per RESPIRARE e RIPARTIRE!", "shared_text": "", "time": "2015-10-31 16:57:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153350028583155&id=252306033154", "link": null} +{"post_id": "10153349949388155", "text": "Prima che ad \"altri\", il governo che vorrei dovrebbe pensare agli italiani INVALIDI CIVILI e alle loro famiglie!\nLe priorit\u00e0 per loro:\n1. Aggiornamento nomenclatore tariffario\n2. Miglioramento del sistema degli\u2026 Altro indennizzi sul lavoro\n3. Illegittimit\u00e0 del nuovo regolamento ISEE\n#Liberiamoci e ripartiamo!\nwww.liberiamoci.com - 02 66.234.234", "post_text": "Prima che ad \"altri\", il governo che vorrei dovrebbe pensare agli italiani INVALIDI CIVILI e alle loro famiglie!\nLe priorit\u00e0 per loro:\n1. Aggiornamento nomenclatore tariffario\n2. Miglioramento del sistema degli\u2026 Altro indennizzi sul lavoro\n3. Illegittimit\u00e0 del nuovo regolamento ISEE\n#Liberiamoci e ripartiamo!\nwww.liberiamoci.com - 02 66.234.234", "shared_text": "", "time": "2015-10-31 16:13:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/905572_10153349949388155_7196585094001972202_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=yo5fTULYhnYAQnuoxcn-echrjZqYsYSOgeTTqS2-BnmHP3lXvaE29BKmw&_nc_ht=scontent-cdt1-1.xx&oh=456cd2ae27180099f2d59b0f8aafe2eb&oe=5E4BEA6E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR30DMKSgattduvlWT_4pH6E5NLKwu9xzipmtVMmMlSXJ7QpSwNPGmo6kyY"} +{"post_id": "10153349710683155", "text": "Come lo definireste un governo che, non solo non muove un dito per cambiare l'infame legge Fornero (votata dal PD, anche se Renzi a volte fa finta di dimenticarsene...), ma umilia continuamente i propri\u2026 Altro pensionati, che qui hanno lavorato e costruito? I soldi per chi sbarca domani mattina per\u00f2 ci sono sempre, pronto cassa... LIBERIAMOCI dei politici che odiano gli italiani, prima che sia tardi!", "post_text": "Come lo definireste un governo che, non solo non muove un dito per cambiare l'infame legge Fornero (votata dal PD, anche se Renzi a volte fa finta di dimenticarsene...), ma umilia continuamente i propri\u2026 Altro pensionati, che qui hanno lavorato e costruito? I soldi per chi sbarca domani mattina per\u00f2 ci sono sempre, pronto cassa... LIBERIAMOCI dei politici che odiano gli italiani, prima che sia tardi!", "shared_text": "", "time": "2015-10-31 13:24:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153349710683155&id=252306033154", "link": null} +{"post_id": "10153349515678155", "text": "++ MENO 8 A BOLOGNA! OCCORRE ESSERCI! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "++ MENO 8 A BOLOGNA! OCCORRE ESSERCI! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-10-31 10:06:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/887548_10153349515623155_4943929532948023485_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=gmNr5BrILBAAQlICTum7sWnR-6DCa_wZuH8UEXJsE9L2G3b75f11ao1rg&_nc_ht=scontent-cdt1-1.xx&oh=e0bf786c14cac91d40485a435395f235&oe=5E796E4C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR2jllOq56yK6GlPeCEAjvF7myJomt0oG1E16-R0NISx_dGyChsasb6mwPQ"} +{"post_id": "10153348539213155", "text": "Domenica 8 novembre a BOLOGNA, alle 12, in piazza Maggiore, occorre ESSERCI! Nel cuore del sistema della CGIL e delle coop rosse, del PCI-PDS-PD, di Bersani, di Renzi...\nVIA, VIA! LIBERIAMOCI e RIPARTIAMO! Vieni ANCHE TU, facciamo vedere a tutta Italia che non vogliamo morire renziani!\nWWW.LIBERIAMOCI.COM", "post_text": "Domenica 8 novembre a BOLOGNA, alle 12, in piazza Maggiore, occorre ESSERCI! Nel cuore del sistema della CGIL e delle coop rosse, del PCI-PDS-PD, di Bersani, di Renzi...\nVIA, VIA! LIBERIAMOCI e RIPARTIAMO! Vieni ANCHE TU, facciamo vedere a tutta Italia che non vogliamo morire renziani!\nWWW.LIBERIAMOCI.COM", "shared_text": "", "time": "2015-10-30 19:00:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153348539213155&id=252306033154", "link": "http://WWW.LIBERIAMOCI.COM/?fbclid=IwAR0CaSviobgvlcQK76WDw9LYbRUixRTsufBUXgR2QpT5KwRsVX-Yr6s75JY"} +{"post_id": "10153348404328155", "text": "Preferisco un pensionato che testimonia la sua innocenza piuttosto che un bel funerale di Stato.\nCondividi, NON MOLLIAMO: Francesco non lo lasceremo solo.", "post_text": "Preferisco un pensionato che testimonia la sua innocenza piuttosto che un bel funerale di Stato.\nCondividi, NON MOLLIAMO: Francesco non lo lasceremo solo.", "shared_text": "", "time": "2015-10-30 17:09:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153348404328155&id=252306033154", "link": null} +{"post_id": "10153348305433155", "text": "Perch\u00e9 i problemi non si risolvono con le PALLE ASTRONOMICHE di Renzi ma con interventi concreti per controllare e limitare l'IMMIGRAZIONE, pretendendo il rispetto delle regole. Siete d'accordo?", "post_text": "Perch\u00e9 i problemi non si risolvono con le PALLE ASTRONOMICHE di Renzi ma con interventi concreti per controllare e limitare l'IMMIGRAZIONE, pretendendo il rispetto delle regole. Siete d'accordo?", "shared_text": "", "time": "2015-10-30 15:56:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p261x260/905706_10153348305433155_294423419656372441_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=kC0H9kYMaeIAQm6BJw0qSgm3uei0Ntt7wZeKMhRFLmiYrl2KyGA1bwHJQ&_nc_ht=scontent-cdt1-1.xx&oh=295367ef9506769c7e3bce84c7ddda0e&oe=5E41A723", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153348045328155", "text": "Ladri GAMBIZZANO il benzinaio, il giudice li condanna solo per lesioni e tornano liberi! Questa Italia al contrario la raddrizziamo??? Io ci credo!\nLIBERIAMOCI!", "post_text": "Ladri GAMBIZZANO il benzinaio, il giudice li condanna solo per lesioni e tornano liberi! Questa Italia al contrario la raddrizziamo??? Io ci credo!\nLIBERIAMOCI!", "shared_text": "", "time": "2015-10-30 12:55:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153348045328155&id=252306033154", "link": null} +{"post_id": "10153347847303155", "text": "++ MENO 9 A BOLOGNA! SAREMO UN MAREEE! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "++ MENO 9 A BOLOGNA! SAREMO UN MAREEE! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-10-30 09:06:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12184206_10153347847263155_8776229763925509994_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=hPYJQH49_WcAQmGj3T_noL4l_zhdLB5UKVB3-2d6HDJ68LABgfuqxtpDw&_nc_ht=scontent-cdt1-1.xx&oh=d2af293415d2fc674504fd9c97ba43fc&oe=5E514E14", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR3yVY8BQCAbpdxEZZtPfbXF27oYR__hkvC2b-B6LeHpmGco1BCSEMM8Yto"} +{"post_id": "10153346962763155", "text": "Con gente che brucia viva un essere umano perch\u00e9 crede in un altro Dio NESSUN DIALOGO, ma solo le MANIERE FORTI. O i tagliagole dell'ISIS ce li troveremo sul pianerottolo di casa nostra.\nIo la penso cos\u00ec. E voi?", "post_text": "Con gente che brucia viva un essere umano perch\u00e9 crede in un altro Dio NESSUN DIALOGO, ma solo le MANIERE FORTI. O i tagliagole dell'ISIS ce li troveremo sul pianerottolo di casa nostra.\nIo la penso cos\u00ec. E voi?", "shared_text": "", "time": "2015-10-29 19:31:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153346962763155&id=252306033154", "link": null} +{"post_id": "10153346730203155", "text": "\u00c8 iniziato il processo per l'omicidio di Pietro RACCAGNI, aggredito l'anno scorso in casa, di notte, da una banda di ladri albanesi, morto in ospedale dopo giorni di agonia: ERGASTOLO per queste BESTIE e\u2026 Altro buttino via la chiave!\nNon \u00e8 normale (e mi fa SCHIFO) uno Stato che, invece di garantire la CERTEZZA della PENA, concede ai delinquenti indulti, depenalizzazione dei reati e \"svuotacarceri\". Un abbraccio alla signora Federica, siamo tutti con lei.", "post_text": "\u00c8 iniziato il processo per l'omicidio di Pietro RACCAGNI, aggredito l'anno scorso in casa, di notte, da una banda di ladri albanesi, morto in ospedale dopo giorni di agonia: ERGASTOLO per queste BESTIE e\u2026 Altro buttino via la chiave!\nNon \u00e8 normale (e mi fa SCHIFO) uno Stato che, invece di garantire la CERTEZZA della PENA, concede ai delinquenti indulti, depenalizzazione dei reati e \"svuotacarceri\". Un abbraccio alla signora Federica, siamo tutti con lei.", "shared_text": "", "time": "2015-10-29 16:34:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153346730203155&id=252306033154", "link": null} +{"post_id": "10153346460863155", "text": "La ragazza nel video difende i clandestini che vendono abusivamente la loro merce, magari contraffatta. Io preferisco difendere i 4 milioni di italiani disoccupati e i commercianti regolari.", "post_text": "La ragazza nel video difende i clandestini che vendono abusivamente la loro merce, magari contraffatta. Io preferisco difendere i 4 milioni di italiani disoccupati e i commercianti regolari.", "shared_text": "", "time": "2015-10-29 13:01:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153346460863155&id=252306033154", "link": null} +{"post_id": "10153346280943155", "text": "++ MENO 10 A BOLOGNA! DAI, CI SARAI??? ++\n#LIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\nRENZUCCIO, arriviamo!", "post_text": "++ MENO 10 A BOLOGNA! DAI, CI SARAI??? ++\n#LIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\nRENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-10-29 09:36:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12186663_10153346280823155_3582430623640007300_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=q2dQ3pqaTB0AQnCt_bSgUG307iMubJkLfiZ9JTQz_O3KcCEP1lRURPn8Q&_nc_ht=scontent-cdt1-1.xx&oh=633119462dd389f26c549c215757c4db&oe=5E894674", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR3A2TpJKGLSKWhSptb1mx-5ahHdMUuzC_ftJX-75BDw1_Zq63D7aX8bcmI"} +{"post_id": "10153345555218155", "text": "Amici, non vedo l'ora di incontrarvi in TANTISSIMI a Bologna! Purtroppo LEI non ci sar\u00e0...", "post_text": "Amici, non vedo l'ora di incontrarvi in TANTISSIMI a Bologna! Purtroppo LEI non ci sar\u00e0...", "shared_text": "", "time": "2015-10-28 20:54:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12189502_10153345555218155_8003018784832657153_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=CcAP_MVQtgQAQmU7v3Dm-ELxkS2vTOhznN3Mt5Gf0AVAyIg4fOA3ilTXA&_nc_ht=scontent-cdt1-1.xx&oh=d1c3e64903db945a4c25187853d79bb2&oe=5E84E17F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153345484773155", "text": "Ascolta e CONDIVIDI le parole di Carla, proprietaria di una tabaccheria e vittima di varie rapine. Le dedichiamo a chi parla a vanvera di eccesso di legittima difesa senza capire che cosa vuol dire avere un\u2019arma puntata contro!", "post_text": "Ascolta e CONDIVIDI le parole di Carla, proprietaria di una tabaccheria e vittima di varie rapine. Le dedichiamo a chi parla a vanvera di eccesso di legittima difesa senza capire che cosa vuol dire avere un\u2019arma puntata contro!", "shared_text": "", "time": "2015-10-28 20:13:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153345484773155&id=252306033154", "link": null} +{"post_id": "10153345178623155", "text": "Presunti \"profughi\" a Vicenza, come sempre tutti maschi, giovani e in forma, si lamentano del trattamento... Ma Renzi e Alfano non dovevano rispedirne fuori dall'Italia almeno 80 al giorno grazie ai magnifici accordi con l'Europa? TUTTE PALLE, non \u00e8 cambiato nulla!", "post_text": "Presunti \"profughi\" a Vicenza, come sempre tutti maschi, giovani e in forma, si lamentano del trattamento... Ma Renzi e Alfano non dovevano rispedirne fuori dall'Italia almeno 80 al giorno grazie ai magnifici accordi con l'Europa? TUTTE PALLE, non \u00e8 cambiato nulla!", "shared_text": "", "time": "2015-10-28 17:20:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153345178623155&id=252306033154", "link": null} +{"post_id": "10153344950218155", "text": "Se non ti piace il CROCIFISSO e sei in Italia, sbagli Paese e torni a casa tua, perch\u00e9 questa \u00e8 la NOSTRA CULTURA e il nostro modo di essere.\nServe RISPETTO.\nAnche la giovane Fatima dice di essere d'accordo, mi fa piacere.", "post_text": "Se non ti piace il CROCIFISSO e sei in Italia, sbagli Paese e torni a casa tua, perch\u00e9 questa \u00e8 la NOSTRA CULTURA e il nostro modo di essere.\nServe RISPETTO.\nAnche la giovane Fatima dice di essere d'accordo, mi fa piacere.", "shared_text": "", "time": "2015-10-28 13:36:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153344950218155&id=252306033154", "link": null} +{"post_id": "10153344693998155", "text": "++ MENO 11 A BOLOGNA! ASPETTO ANCHE TE! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "post_text": "++ MENO 11 A BOLOGNA! ASPETTO ANCHE TE! ++\nLIBERIAMOCI e RIPARTIAMO!\nInfo: 02 66.234.234 - www.liberiamoci.com\n#liberiamoci > RENZUCCIO, arriviamo!", "shared_text": "", "time": "2015-10-28 08:40:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/12182589_10153344693888155_3780660802711780121_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=Lq7DYURvISsAQkrXDJMYVVRMizem9Tq7xTDeOjiwrqbvJIkzJTZCvTzwg&_nc_ht=scontent-cdt1-1.xx&oh=9f813509034581dfebc78485cc4dba33&oe=5E8086F3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR2felfbRui6ewv5L8IRuuJXvOunXR0hrUFHn70LY-fz7WPB288AoQgO4wE"} +{"post_id": "10153343878558155", "text": "GUARDA e CONDIVIDI. RENZI BUGIARDO E COMPLICE!\nDopo mesi di chiacchiere oggi si scopre che l'Europa far\u00e0 lo sforzo di accogliere SETTECENTO immigrati. In Italia ne sono sbarcati TRECENTOMILA in due anni. Secondo RENZI era tutto risolto...", "post_text": "GUARDA e CONDIVIDI. RENZI BUGIARDO E COMPLICE!\nDopo mesi di chiacchiere oggi si scopre che l'Europa far\u00e0 lo sforzo di accogliere SETTECENTO immigrati. In Italia ne sono sbarcati TRECENTOMILA in due anni. Secondo RENZI era tutto risolto...", "shared_text": "", "time": "2015-10-27 19:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153343856953155&id=252306033154", "link": null} +{"post_id": "10153343763503155", "text": "La moglie di un sindaco del PD dice su Facebook che a Bologna dovrei essere accolto a tortellini \"col ripieno di GHISA\"...\nVoi che cosa le rispondereste???\nP.s. Dai, suggeritemi qualche altro personaggio che l'8 novembre a Bologna NON ci sar\u00e0!", "post_text": "La moglie di un sindaco del PD dice su Facebook che a Bologna dovrei essere accolto a tortellini \"col ripieno di GHISA\"...\nVoi che cosa le rispondereste???\nP.s. Dai, suggeritemi qualche altro personaggio che l'8 novembre a Bologna NON ci sar\u00e0!", "shared_text": "", "time": "2015-10-27 18:04:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12045439_10153343763503155_4724929927496074549_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=GQ4-iXYc3RAAQkPPM2SsN094CMdFfSMPRYgXPyrowZ-AkeetANWSbf_Og&_nc_ht=scontent-cdt1-1.xx&oh=4e4e6c366d8f102e8632faaa0a2d0f92&oe=5E8900F1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153343399523155", "text": "Se un pensionato deve decidere se fare la spesa un giorno in pi\u00f9 o pagare il CANONE RAI, non ho dubbi: faccia la spesa!", "post_text": "Se un pensionato deve decidere se fare la spesa un giorno in pi\u00f9 o pagare il CANONE RAI, non ho dubbi: faccia la spesa!", "shared_text": "", "time": "2015-10-27 13:15:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153343399523155&id=252306033154", "link": null} +{"post_id": "10153343313778155", "text": "Per far vivere chi \u00e8 in PENSIONE (e chi, purtroppo, non ci \u00e8 ancora arrivato a causa dei governi del PD) in un'Italia NORMALE che pensi PRIMA ai cittadini che qui hanno vissuto, lavorato e costruito, abbiamo\u2026 Altro TRE priorit\u00e0:\n1. CANCELLAZIONE della (infame!) Legge Fornero.\n2. RESTITUZIONE della rivalutazione ISTAT.\n3. ADEGUAMENTO degli assegni familiari.\nSe sei d'accordo, DIFFONDI!\n#Liberiamoci e ripartiamo!\nwww.liberiamoci.com - 02 66.234.234", "post_text": "Per far vivere chi \u00e8 in PENSIONE (e chi, purtroppo, non ci \u00e8 ancora arrivato a causa dei governi del PD) in un'Italia NORMALE che pensi PRIMA ai cittadini che qui hanno vissuto, lavorato e costruito, abbiamo\u2026 Altro TRE priorit\u00e0:\n1. CANCELLAZIONE della (infame!) Legge Fornero.\n2. RESTITUZIONE della rivalutazione ISTAT.\n3. ADEGUAMENTO degli assegni familiari.\nSe sei d'accordo, DIFFONDI!\n#Liberiamoci e ripartiamo!\nwww.liberiamoci.com - 02 66.234.234", "shared_text": "", "time": "2015-10-27 11:53:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/12186479_10153343313778155_1066479851164945529_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=Q43RxFFAGpUAQkOk9Xv0n7zDpmpE-uE8lL9v5978y_WtyDbtubqlVygsw&_nc_ht=scontent-cdt1-1.xx&oh=92e7b23a897881f502f7edf9ffc5bf5b&oe=5E839B30", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR0aOkVln_vY1tWVC1nNiGkdpN7Oqgg7SjCfxOinkOYdRQmw-_TWPMKjaNw"} +{"post_id": "10153343256588155", "text": "Questo signore schifa la Lega dicendo che \"non rappresenta gli italiani\". Fenomenoooo, li rappresenti tu???", "post_text": "Questo signore schifa la Lega dicendo che \"non rappresenta gli italiani\". Fenomenoooo, li rappresenti tu???", "shared_text": "", "time": "2015-10-27 11:05:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153343256588155&id=252306033154", "link": null} +{"post_id": "10153342471263155", "text": "Che dite, ho risposto bene???", "post_text": "Che dite, ho risposto bene???", "shared_text": "", "time": "2015-10-26 21:10:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153342471263155&id=252306033154", "link": null} +{"post_id": "10153342440223155", "text": "Tante adesioni anche da INFERMIERI e TECNICI SANITARI per l'8 novembre. Tre punti:\n1. Adeguamento degli organici.\n2. Rinnovo del contratto di lavoro.\n3. Meno abusivismo, pi\u00f9 sicurezza.\nSe hai amici che\u2026 Altro svolgono queste professioni, condividi con loro questo cartello!\n#Liberiamoci e ripartiamo!\nwww.liberiamoci.com - 02 66.234.234", "post_text": "Tante adesioni anche da INFERMIERI e TECNICI SANITARI per l'8 novembre. Tre punti:\n1. Adeguamento degli organici.\n2. Rinnovo del contratto di lavoro.\n3. Meno abusivismo, pi\u00f9 sicurezza.\nSe hai amici che\u2026 Altro svolgono queste professioni, condividi con loro questo cartello!\n#Liberiamoci e ripartiamo!\nwww.liberiamoci.com - 02 66.234.234", "shared_text": "", "time": "2015-10-26 20:48:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/12195017_10153342440223155_1146963348598157822_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=1pa6gTsRZuUAQk1YiuXa5Aiak60v-ndiDtG-eQqk8_kcaItYiScOpWzpQ&_nc_ht=scontent-cdt1-1.xx&oh=40e29a5a4659c06efb3f209ab4ea05f1&oe=5E8BCC71", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberiamoci.com/?fbclid=IwAR2vyHExJo48Mlg3l51ZYFrFlix4yRqlw_wLYBATKMSWUxxr4K7-YpwddUo"} +{"post_id": "10153342127593155", "text": "Siamo d\u2019accordo con Paul!\nCONDIVIDETE ma non fatelo vedere alla Boldrini!", "post_text": "Siamo d\u2019accordo con Paul!\nCONDIVIDETE ma non fatelo vedere alla Boldrini!", "shared_text": "", "time": "2015-10-26 16:58:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153342127593155&id=252306033154", "link": null} +{"post_id": "10153340958593155", "text": "Cancellare il reato di eccesso di legittima difesa, aiutare Polizia e Carabinieri, BASTA \"svuotacarceri\". Tanti applausi dal pubblico in studio a Canale 5. Qualche \"sinistro buonista\" si arrabbier\u00e0, voi che dite?", "post_text": "Cancellare il reato di eccesso di legittima difesa, aiutare Polizia e Carabinieri, BASTA \"svuotacarceri\". Tanti applausi dal pubblico in studio a Canale 5. Qualche \"sinistro buonista\" si arrabbier\u00e0, voi che dite?", "shared_text": "", "time": "2015-10-25 20:57:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153340958593155&id=252306033154", "link": null} +{"post_id": "10153338553948155", "text": "Pochi ne parlano ma VITTIME della Legge Fornero sono anche i nostri GIOVANI. Secondo la Confesercenti sono un milione quelli mai entrati nel mondo del LAVORO.\nE molti non lo cercano nemmeno pi\u00f9 o sono andati\u2026 Altro all\u2019estero per trovarlo.\nLIBERIAMOCI di un Governo che spende 3 miliardi per chi sbarca ma non trova un euro per i nostri ragazzi!", "post_text": "Pochi ne parlano ma VITTIME della Legge Fornero sono anche i nostri GIOVANI. Secondo la Confesercenti sono un milione quelli mai entrati nel mondo del LAVORO.\nE molti non lo cercano nemmeno pi\u00f9 o sono andati\u2026 Altro all\u2019estero per trovarlo.\nLIBERIAMOCI di un Governo che spende 3 miliardi per chi sbarca ma non trova un euro per i nostri ragazzi!", "shared_text": "", "time": "2015-10-24 12:45:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153338553948155&id=252306033154", "link": null} +{"post_id": "10153336970813155", "text": "Sono convinto che se in Italia ci fosse la CERTEZZA della PENA e a chi \u00e8 in divisa venisse data la possibilit\u00e0 di fare bene il proprio lavoro, avremmo molti problemi in meno. Siete d'accordo?", "post_text": "Sono convinto che se in Italia ci fosse la CERTEZZA della PENA e a chi \u00e8 in divisa venisse data la possibilit\u00e0 di fare bene il proprio lavoro, avremmo molti problemi in meno. Siete d'accordo?", "shared_text": "", "time": "2015-10-23 14:02:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153336970813155&id=252306033154", "link": null} +{"post_id": "10153336786983155", "text": "Attenti! Professioniste del borseggio a PISA. Indovinate chi sono? Zing... cio\u00e8, NOMADI minorenni: vengono fermate, ma il giorno dopo sono gi\u00e0 sul \"posto di lavoro\"...\nP.s. NON condividete questo video sulla bacheca dei vostri amici \"buonisti\" di sinistra, tanto diranno che \u00e8 una bufala della Lega.", "post_text": "Attenti! Professioniste del borseggio a PISA. Indovinate chi sono? Zing... cio\u00e8, NOMADI minorenni: vengono fermate, ma il giorno dopo sono gi\u00e0 sul \"posto di lavoro\"...\nP.s. NON condividete questo video sulla bacheca dei vostri amici \"buonisti\" di sinistra, tanto diranno che \u00e8 una bufala della Lega.", "shared_text": "", "time": "2015-10-23 10:58:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153336786983155&id=252306033154", "link": null} +{"post_id": "10153336730648155", "text": "Domenica 8 novembre a Bologna c'\u00e8 bisogno ANCHE DI TE! LIBERIAMOCI e RIPARTIAMO!\nWWW.LIBERIAMOCI.COM", "post_text": "Domenica 8 novembre a Bologna c'\u00e8 bisogno ANCHE DI TE! LIBERIAMOCI e RIPARTIAMO!\nWWW.LIBERIAMOCI.COM", "shared_text": "", "time": "2015-10-23 09:32:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1610792_10153336730208155_7306790574385213809_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=IsF7w5KeQjkAQkfno5QMIsBm500Mi_uqwxCA6TgvwoW96qJrj4ztyGn6Q&_nc_ht=scontent-cdt1-1.xx&oh=434cd4dffe969dec7293b9961417c73c&oe=5E85EC06", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.LIBERIAMOCI.COM/?fbclid=IwAR0VPdvmJTwrES_iUocshetHbgmLQk4I7-_QPvg6mHOEI8XiJf0IpZaA4kw"} +{"post_id": "10153335292273155", "text": "Anziani selvaggiamente picchiati, uccisi, alcuni morti per le conseguenze dell'aggressione subita: QUANDO VEDO QUESTE COSE VADO IN BESTIA! In un Paese NORMALE difendere le persone pi\u00f9 fragili dovrebbe essere la priorit\u00e0 NUMERO UNO. E certamente sar\u00e0 la mia quando ci libereremo di Renzi e andremo al governo.", "post_text": "Anziani selvaggiamente picchiati, uccisi, alcuni morti per le conseguenze dell'aggressione subita: QUANDO VEDO QUESTE COSE VADO IN BESTIA! In un Paese NORMALE difendere le persone pi\u00f9 fragili dovrebbe essere la priorit\u00e0 NUMERO UNO. E certamente sar\u00e0 la mia quando ci libereremo di Renzi e andremo al governo.", "shared_text": "", "time": "2015-10-22 20:47:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153335292273155&id=252306033154", "link": null} +{"post_id": "10153335400448155", "text": "Questa mattina a Roma all'Assemblea dei Carabinieri UNAC.\nNon \u00e8 uno Stato di diritto quello in cui, se vai in strada a rischiare la vita, non solo nelle istituzioni nessuno ti difende, ma magari ti INDAGANO per aver fatto il tuo lavoro.\nRiportiamo RISPETTO e TUTELA per chi indossa una divisa.", "post_text": "Questa mattina a Roma all'Assemblea dei Carabinieri UNAC.\nNon \u00e8 uno Stato di diritto quello in cui, se vai in strada a rischiare la vita, non solo nelle istituzioni nessuno ti difende, ma magari ti INDAGANO per aver fatto il tuo lavoro.\nRiportiamo RISPETTO e TUTELA per chi indossa una divisa.", "shared_text": "", "time": "2015-10-22 15:51:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153335400448155&id=252306033154", "link": null} +{"post_id": "10153335248178155", "text": "\"Ci sono politici bravi, ma alcuni sono IDIOTI... Basterebbe dare 25 anni per un reato del genere e uno non viene pi\u00f9 a rubare in casa. Questo non \u00e8 un furto ma uno stupro psicologico. Ne abbiamo pieni i COGLIONI\".\nFrancesco, sono con te.", "post_text": "\"Ci sono politici bravi, ma alcuni sono IDIOTI... Basterebbe dare 25 anni per un reato del genere e uno non viene pi\u00f9 a rubare in casa. Questo non \u00e8 un furto ma uno stupro psicologico. Ne abbiamo pieni i COGLIONI\".\nFrancesco, sono con te.", "shared_text": "", "time": "2015-10-22 13:31:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153335248178155&id=252306033154", "link": null} +{"post_id": "10153335130393155", "text": "Abbiamo pianto troppi tabaccai, gioiellieri, tassisti... i due anziani di Palagonia massacrati a botte e violentati: se Francesco si \u00e8 difeso ha fatto BENE! Punto.\n(E anche il pubblico di \"Matrix\" sembra pensarla cos\u00ec. Condividi anche tu sulla bacheca di qualche \"benpensante\" di sinistra...).", "post_text": "Abbiamo pianto troppi tabaccai, gioiellieri, tassisti... i due anziani di Palagonia massacrati a botte e violentati: se Francesco si \u00e8 difeso ha fatto BENE! Punto.\n(E anche il pubblico di \"Matrix\" sembra pensarla cos\u00ec. Condividi anche tu sulla bacheca di qualche \"benpensante\" di sinistra...).", "shared_text": "", "time": "2015-10-22 11:25:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153335130393155&id=252306033154", "link": null} +{"post_id": "10153335085758155", "text": "Oggi alle 17.30 in tante citt\u00e0 i nostri presidi davanti ai tribunali: LA LEGA STA CON CHI SI DIFENDE!\nIo sar\u00f2 a Milano. MOBILITIAMOCI e LIBERIAMOCI di una GIUSTIZIA INGIUSTA!\nVi aspetto!\nMILANO > Tribunale -\u2026 Altro Corso di Porta Vittoria\nTORINO > Tribunale - Corso Vittorio Emanuele\nVICENZA > Tribunale - Via Ettore Gallo\nPADOVA > Tribunale, via Tommaseo\nTREVISO > Tribunale, via Verdi\nROVIGO > Tribunale, via Verdi\nBELLUNO > via Segato\nVERONA > via dello Zappatore\nGENOVA > Largo XII Ottobre\nTRIESTE > Tribunale - Foro Ulpiano\nUDINE > Tribunale - Largo Ospedale Vecchio\nPORDENONE > Tribunale - Viale Franco Martelli\nGORIZIA > Tribunale - Via Nazario Sauro\nBOLZANO > Tribunale - Piazza del Tribunale\u2026 Altro", "post_text": "Oggi alle 17.30 in tante citt\u00e0 i nostri presidi davanti ai tribunali: LA LEGA STA CON CHI SI DIFENDE!\nIo sar\u00f2 a Milano. MOBILITIAMOCI e LIBERIAMOCI di una GIUSTIZIA INGIUSTA!\nVi aspetto!\nMILANO > Tribunale -\u2026 Altro Corso di Porta Vittoria\nTORINO > Tribunale - Corso Vittorio Emanuele\nVICENZA > Tribunale - Via Ettore Gallo\nPADOVA > Tribunale, via Tommaseo\nTREVISO > Tribunale, via Verdi\nROVIGO > Tribunale, via Verdi\nBELLUNO > via Segato\nVERONA > via dello Zappatore\nGENOVA > Largo XII Ottobre\nTRIESTE > Tribunale - Foro Ulpiano\nUDINE > Tribunale - Largo Ospedale Vecchio\nPORDENONE > Tribunale - Viale Franco Martelli\nGORIZIA > Tribunale - Via Nazario Sauro\nBOLZANO > Tribunale - Piazza del Tribunale\u2026 Altro", "shared_text": "", "time": "2015-10-22 10:28:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12141616_10153335085588155_474649820538847453_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=4AQMXLrGkv4AQllZ_639vZtwW8JlJYlbjkgComrk-gI-3pQCjdcriQccQ&_nc_ht=scontent-cdt1-1.xx&oh=55650b69d79067e721f6176705bb570f&oe=5E804078", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153334310493155", "text": "Io sto #conchisidifende!", "post_text": "Io sto #conchisidifende!", "shared_text": "", "time": "2015-10-21 21:19:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153334310493155&id=252306033154", "link": null} +{"post_id": "10153334226663155", "text": "Sono sicuro che la maggioranza degli italiani la pensa come noi. Se hai voglia, condividi.", "post_text": "Sono sicuro che la maggioranza degli italiani la pensa come noi. Se hai voglia, condividi.", "shared_text": "", "time": "2015-10-21 19:58:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153334226663155&id=252306033154", "link": null} +{"post_id": "10153334092803155", "text": "Gioved\u00ec 22 ottobre alle 17.30 in tante citt\u00e0 i nostri presidi davanti ai tribunali: LA LEGA STA CON CHI SI DIFENDE!\nIo sar\u00f2 a Milano. MOBILITIAMOCI e LIBERIAMOCI di una GIUSTIZIA INGIUSTA!\nVi aspetto!\nMILANO\u2026 Altro > Tribunale - Corso di Porta Vittoria\nTORINO > Tribunale - Corso Vittorio Emanuele\nVICENZA > Tribunale - Via Ettore Gallo\nPADOVA > Tribunale, via Tommaseo\nTREVISO > Tribunale, via Verdi\nROVIGO > Tribunale, via Verdi\nBELLUNO > via Segato\nVERONA > via dello Zappatore\nGENOVA > Largo XII Ottobre\nTRIESTE > Tribunale - Foro Ulpiano\nUDINE > Tribunale - Largo Ospedale Vecchio\nPORDENONE > Tribunale - Viale Franco Martelli\nGORIZIA > Tribunale - Via Nazario Sauro\nBOLZANO > Tribunale - Piazza del\u2026 Altro", "post_text": "Gioved\u00ec 22 ottobre alle 17.30 in tante citt\u00e0 i nostri presidi davanti ai tribunali: LA LEGA STA CON CHI SI DIFENDE!\nIo sar\u00f2 a Milano. MOBILITIAMOCI e LIBERIAMOCI di una GIUSTIZIA INGIUSTA!\nVi aspetto!\nMILANO\u2026 Altro > Tribunale - Corso di Porta Vittoria\nTORINO > Tribunale - Corso Vittorio Emanuele\nVICENZA > Tribunale - Via Ettore Gallo\nPADOVA > Tribunale, via Tommaseo\nTREVISO > Tribunale, via Verdi\nROVIGO > Tribunale, via Verdi\nBELLUNO > via Segato\nVERONA > via dello Zappatore\nGENOVA > Largo XII Ottobre\nTRIESTE > Tribunale - Foro Ulpiano\nUDINE > Tribunale - Largo Ospedale Vecchio\nPORDENONE > Tribunale - Viale Franco Martelli\nGORIZIA > Tribunale - Via Nazario Sauro\nBOLZANO > Tribunale - Piazza del\u2026 Altro", "shared_text": "", "time": "2015-10-21 18:12:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12107879_10153334092618155_4924635975423255229_n.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=6EeGRRvuHzwAQn4LzRVWgSEmIukQwg9RGKBVDgrZ5EkH5ie7lr76DKLJw&_nc_ht=scontent-cdt1-1.xx&oh=1e25799301b8da46c75564de84adc611&oe=5E4E1EEE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153333683828155", "text": "La mia intervista di ieri sera da Giovanni Floris a \"DiMarted\u00ec\" su LA 7: se vi va, guardatela, poi leggo i vostri commenti.", "post_text": "La mia intervista di ieri sera da Giovanni Floris a \"DiMarted\u00ec\" su LA 7: se vi va, guardatela, poi leggo i vostri commenti.", "shared_text": "", "time": "2015-10-21 12:33:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153333683828155&id=252306033154", "link": null} +{"post_id": "10153332779738155", "text": "I vicini di casa a sostegno di Francesco, il pensionato indagato per OMICIDIO VOLONTARIO per essersi difeso da un ladro che gli era entrato in casa! GI\u00d9 LE MANI DA CHI SI DIFENDE!\nGuarda e CONDIVIDI: #iostoconfrancesco", "post_text": "I vicini di casa a sostegno di Francesco, il pensionato indagato per OMICIDIO VOLONTARIO per essersi difeso da un ladro che gli era entrato in casa! GI\u00d9 LE MANI DA CHI SI DIFENDE!\nGuarda e CONDIVIDI: #iostoconfrancesco", "shared_text": "", "time": "2015-10-20 20:48:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153332779738155&id=252306033154", "link": null} +{"post_id": "10153330621698155", "text": "Loris e Giorgio, Udine. Vivono in una baracca con mobili presi dall'immondizia, senza acqua e senza luce elettrica. La casa popolare? La danno prima agli immigrati. Questa \u00e8 VITA REALE, non invenzioni della Lega. Per\u00f2, attenti, se condividerete questo video, qualche \"buonista\" vi dir\u00e0 che parlate alla PANCIA...", "post_text": "Loris e Giorgio, Udine. Vivono in una baracca con mobili presi dall'immondizia, senza acqua e senza luce elettrica. La casa popolare? La danno prima agli immigrati. Questa \u00e8 VITA REALE, non invenzioni della Lega. Per\u00f2, attenti, se condividerete questo video, qualche \"buonista\" vi dir\u00e0 che parlate alla PANCIA...", "shared_text": "", "time": "2015-10-19 12:33:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153330621698155&id=252306033154", "link": null} +{"post_id": "10153329432273155", "text": "Tiv\u00f9 e giornali lo hanno nascosto, ma ieri Renzi a Udine si \u00e8 beccato del BUFFONE! Io condivido.\n(Tratto da: http://www.ilgiornale.it/video/politica/renzi-parla-e-dagli-spalti-urlano-buffone-1183912.html)", "post_text": "Tiv\u00f9 e giornali lo hanno nascosto, ma ieri Renzi a Udine si \u00e8 beccato del BUFFONE! Io condivido.\n(Tratto da: http://www.ilgiornale.it/video/politica/renzi-parla-e-dagli-spalti-urlano-buffone-1183912.html)", "shared_text": "", "time": "2015-10-18 18:27:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153329432273155&id=252306033154", "link": "http://www.ilgiornale.it/video/politica/renzi-parla-e-dagli-spalti-urlano-buffone-1183912.html?fbclid=IwAR22_qvvBwgcyXnYdWdkrHpVhh7ma2Q7L0ZBGUPNHq65j0-vkQGQ7xFl0yg"} +{"post_id": "10153328014318155", "text": "Che dite, noi Milanisti soffriremo anche stasera???", "post_text": "Che dite, noi Milanisti soffriremo anche stasera???", "shared_text": "", "time": "2015-10-17 20:29:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12094916_10153328014318155_1089950459372962509_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=RNISKgRIT2MAQlkdhd8dCJJNQMIIFlWwbZJXkq-WKxiYp56eNQdSmXyuA&_nc_ht=scontent-cdt1-1.xx&oh=5887589e8a4e85549a63b9abf26dedec&oe=5E7E277D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153327295733155", "text": "Guarda e CONDIVIDI, questo \u00e8 RAZZISMO!\nMentre si regalano alberghi agli immigrati, ecco come il Governo dei buonisti tratta una mamma italiana con 2 figli!", "post_text": "Guarda e CONDIVIDI, questo \u00e8 RAZZISMO!\nMentre si regalano alberghi agli immigrati, ecco come il Governo dei buonisti tratta una mamma italiana con 2 figli!", "shared_text": "", "time": "2015-10-17 10:46:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153327295733155&id=252306033154", "link": null} +{"post_id": "10153324786458155", "text": "Mille difficolt\u00e0, poche tutele e paghe da fame...\nRISPETTO e RICONOSCENZA per chi rischia la vita tutti i giorni per proteggerci.", "post_text": "Mille difficolt\u00e0, poche tutele e paghe da fame...\nRISPETTO e RICONOSCENZA per chi rischia la vita tutti i giorni per proteggerci.", "shared_text": "", "time": "2015-10-15 19:00:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153324786458155&id=252306033154", "link": null} +{"post_id": "10153322692078155", "text": "Invece che lavorare per risolvere i problemi veri degli italiani, si occupano delle adozioni gay, regalano le cittadinanze agli immigrati e attaccano le Regioni meglio governate.\nI soliti sinistri che svendono l\u2019Italia, li CACCEREMO!", "post_text": "Invece che lavorare per risolvere i problemi veri degli italiani, si occupano delle adozioni gay, regalano le cittadinanze agli immigrati e attaccano le Regioni meglio governate.\nI soliti sinistri che svendono l\u2019Italia, li CACCEREMO!", "shared_text": "", "time": "2015-10-14 12:44:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153322692078155&id=252306033154", "link": null} +{"post_id": "10153320791308155", "text": "Se un poliziotto o un carabiniere interviene per proteggere un collega o un cittadino, va TUTELATO, non indagato. E se qualche delinquente protesta, pazienza\u2026\nIo sto con chi ci DIFENDE!", "post_text": "Se un poliziotto o un carabiniere interviene per proteggere un collega o un cittadino, va TUTELATO, non indagato. E se qualche delinquente protesta, pazienza\u2026\nIo sto con chi ci DIFENDE!", "shared_text": "", "time": "2015-10-13 21:29:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153320791308155&id=252306033154", "link": null} +{"post_id": "10153320450128155", "text": "Bettola, provincia di Piacenza (paese di Bersani).\nA un mese dall'alluvione, 3 morti, feriti e milioni di euro di danni, ancora da Stato e Regione non arrivano tutti gli aiuti promessi.\nA furia di impedire ai\u2026 Altro residenti di dragare i fiumi e togliere ghiaia, di pulire i torrenti e di curare i boschi, la natura fa il suo corso.\nNon \u00e8 solo colpa dell'acqua, \u00e8 soprattutto colpa dell'uomo!\nLasciamo che la montagna sia curata dalla gente di montagna.\nChe ne pensate?", "post_text": "Bettola, provincia di Piacenza (paese di Bersani).\nA un mese dall'alluvione, 3 morti, feriti e milioni di euro di danni, ancora da Stato e Regione non arrivano tutti gli aiuti promessi.\nA furia di impedire ai\u2026 Altro residenti di dragare i fiumi e togliere ghiaia, di pulire i torrenti e di curare i boschi, la natura fa il suo corso.\nNon \u00e8 solo colpa dell'acqua, \u00e8 soprattutto colpa dell'uomo!\nLasciamo che la montagna sia curata dalla gente di montagna.\nChe ne pensate?", "shared_text": "", "time": "2015-10-13 17:44:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12032791_10153320450128155_2649842529976446050_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=I1Xj4VgC-McAQn7V52wxB7BNqqoE34iALrqWoCTTxB1zVjc-V7xTykWFA&_nc_ht=scontent-cdt1-1.xx&oh=734912a191f772ddbe24f9bc0eec1198&oe=5E431DE3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153320075673155", "text": "Anna di Milano, mamma disoccupata e sotto sfratto. Per i clandestini tutto, per lei e per i suoi figli poco o niente. Ora basta con questo schifo!\nPRETENDERE aiuti per la nostra gente \u00e8 un DIRITTO, negarli \u00e8 RAZZISMO!", "post_text": "Anna di Milano, mamma disoccupata e sotto sfratto. Per i clandestini tutto, per lei e per i suoi figli poco o niente. Ora basta con questo schifo!\nPRETENDERE aiuti per la nostra gente \u00e8 un DIRITTO, negarli \u00e8 RAZZISMO!", "shared_text": "", "time": "2015-10-13 13:09:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153320075673155&id=252306033154", "link": null} +{"post_id": "10153319090468155", "text": "Molto bene. E dalle 21.15 vi aspetto in diretta a \"Quinta Colonna\" su Rete 4, ci siete???", "post_text": "Molto bene. E dalle 21.15 vi aspetto in diretta a \"Quinta Colonna\" su Rete 4, ci siete???", "shared_text": "", "time": "2015-10-12 21:14:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p173x172/12108204_10153319090468155_4623296160856396338_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=kNVlkx4a3MoAQlvBX10OupoxCgWySH1RsGQsX_xRrRiuzA0J3l0nPZUwg&_nc_ht=scontent-cdt1-1.xx&oh=9caf2fb88538ac55eadb8791fa84166f&oe=5E7D0B52", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153318365273155", "text": "Stiamo lavorando per dare agli italiani un Paese NORMALE.\nDove, chi viene, RISPETTA la nostra gente e si adegua alle nostre regole e alle nostre leggi.\nAltrimenti torna a CASA sua!", "post_text": "Stiamo lavorando per dare agli italiani un Paese NORMALE.\nDove, chi viene, RISPETTA la nostra gente e si adegua alle nostre regole e alle nostre leggi.\nAltrimenti torna a CASA sua!", "shared_text": "", "time": "2015-10-12 12:06:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153318365273155&id=252306033154", "link": null} +{"post_id": "10153313493683155", "text": "Spero che la colossale figura di fango di RENZI, di MARINO e del PD avvicini tanta gente normale che abbia voglia di costruire il FUTURO della propria Comunit\u00e0. E si torni al VOTO subito, perch\u00e9 la democrazia \u00e8 sospesa gi\u00e0 da troppo tempo. ROMA merita di pi\u00f9, l'ITALIA merita di pi\u00f9.", "post_text": "Spero che la colossale figura di fango di RENZI, di MARINO e del PD avvicini tanta gente normale che abbia voglia di costruire il FUTURO della propria Comunit\u00e0. E si torni al VOTO subito, perch\u00e9 la democrazia \u00e8 sospesa gi\u00e0 da troppo tempo. ROMA merita di pi\u00f9, l'ITALIA merita di pi\u00f9.", "shared_text": "", "time": "2015-10-09 15:43:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153313493683155&id=252306033154", "link": null} +{"post_id": "10153313347863155", "text": "Archiviato il disastro MARINO (a cui RENZI ha coperto le spalle per un anno e mezzo), ora per ROMA ma anche per Milano, Napoli, Torino, Bologna, occorre parlare poco, e lavorare tanto. E in un momento in cui c'\u00e8 poco per pochi, per me \u00e8 indispensabile un prerequisito: PRIMA GLI ITALIANI.", "post_text": "Archiviato il disastro MARINO (a cui RENZI ha coperto le spalle per un anno e mezzo), ora per ROMA ma anche per Milano, Napoli, Torino, Bologna, occorre parlare poco, e lavorare tanto. E in un momento in cui c'\u00e8 poco per pochi, per me \u00e8 indispensabile un prerequisito: PRIMA GLI ITALIANI.", "shared_text": "", "time": "2015-10-09 13:22:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153313347863155&id=252306033154", "link": null} +{"post_id": "10153312374943155", "text": "Gli studi di settore e gli accertamenti fiscali stanno massacrando chi produce in questo Paese.\nL'imprenditore italiano deve poter LAVORARE, senza avere uno Stato che gli va a rompere le palle in azienda!", "post_text": "Gli studi di settore e gli accertamenti fiscali stanno massacrando chi produce in questo Paese.\nL'imprenditore italiano deve poter LAVORARE, senza avere uno Stato che gli va a rompere le palle in azienda!", "shared_text": "", "time": "2015-10-08 20:32:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153312374943155&id=252306033154", "link": null} +{"post_id": "10153311657893155", "text": "Adriano, 37 anni di lavoro come muratore, ma per lo Stato italiano non bastano per avere la pensione.\nIntanto lo mantiene il figlio, perch\u00e9 le cooperative a cui si \u00e8 rivolto impiegano solo extracomunitari.\nAscoltando questa storia i giochini di Alfano e Verdini alla corte di Renzi mi sembrano ancora pi\u00f9 SCHIFOSI.", "post_text": "Adriano, 37 anni di lavoro come muratore, ma per lo Stato italiano non bastano per avere la pensione.\nIntanto lo mantiene il figlio, perch\u00e9 le cooperative a cui si \u00e8 rivolto impiegano solo extracomunitari.\nAscoltando questa storia i giochini di Alfano e Verdini alla corte di Renzi mi sembrano ancora pi\u00f9 SCHIFOSI.", "shared_text": "", "time": "2015-10-08 11:25:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153311657893155&id=252306033154", "link": null} +{"post_id": "10153310571768155", "text": "Alla faccia dell'Europa dei SENZAPALLE, questa mattina a Strasburgo il mio e il vostro GRAZIE alla Russia che, da sola, sta combattendo i TAGLIAGOLE islamici dell'ISIS. Se anche tu non ti arrendi, CONDIVIDI!", "post_text": "Alla faccia dell'Europa dei SENZAPALLE, questa mattina a Strasburgo il mio e il vostro GRAZIE alla Russia che, da sola, sta combattendo i TAGLIAGOLE islamici dell'ISIS. Se anche tu non ti arrendi, CONDIVIDI!", "shared_text": "", "time": "2015-10-07 17:35:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153310571768155&id=252306033154", "link": null} +{"post_id": "10153310190103155", "text": "Il 93% delle imprese italiane ha meno di dieci dipendenti e, di queste, due su tre non ne hanno nemmeno uno. Ma Renzi favorisce solo i grandi e cresciamo dello \"zero virgola\". Occorre CORAGGIO, occorre una\u2026 Altro RIVOLUZIONE FISCALE: flat-tax uguale per tutti al 15% e basta con l'oppressione di Equitalia. L'Italia ha bisogno di CORRERE, non di passeggiare.", "post_text": "Il 93% delle imprese italiane ha meno di dieci dipendenti e, di queste, due su tre non ne hanno nemmeno uno. Ma Renzi favorisce solo i grandi e cresciamo dello \"zero virgola\". Occorre CORAGGIO, occorre una\u2026 Altro RIVOLUZIONE FISCALE: flat-tax uguale per tutti al 15% e basta con l'oppressione di Equitalia. L'Italia ha bisogno di CORRERE, non di passeggiare.", "shared_text": "", "time": "2015-10-07 12:44:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153310190103155&id=252306033154", "link": null} +{"post_id": "10153308997008155", "text": "Ascoltate che cosa dicono i cittadini di Ventimiglia circondati dai presunti \"profughi\". SENZA LIMITI e SENZA REGOLE, il governo Renzi umilia ogni giorno gli italiani... vi pare NORMALE?", "post_text": "Ascoltate che cosa dicono i cittadini di Ventimiglia circondati dai presunti \"profughi\". SENZA LIMITI e SENZA REGOLE, il governo Renzi umilia ogni giorno gli italiani... vi pare NORMALE?", "shared_text": "", "time": "2015-10-06 18:33:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153308997008155&id=252306033154", "link": null} +{"post_id": "10153308587448155", "text": "In una scuola materna di Rovereto hanno rimosso una giostrina con la faccia di un maialino perch\u00e9 gli islamici si offendevano.\nA Schio, un IMAM \u201ceducava\u201d i bambini a non ascoltare la musica perch\u00e9 peccato\u2026\nIn\u2026 Altro una scuola elementare di Ladispoli hanno introdotto un\u2019ora settimanale di lingua rumena obbligatoria.\nQualcuno ha deciso che gli italiani debbano essere MINORANZA a casa loro?\nA me tutto questo pare RAZZISMO! O sbaglio?", "post_text": "In una scuola materna di Rovereto hanno rimosso una giostrina con la faccia di un maialino perch\u00e9 gli islamici si offendevano.\nA Schio, un IMAM \u201ceducava\u201d i bambini a non ascoltare la musica perch\u00e9 peccato\u2026\nIn\u2026 Altro una scuola elementare di Ladispoli hanno introdotto un\u2019ora settimanale di lingua rumena obbligatoria.\nQualcuno ha deciso che gli italiani debbano essere MINORANZA a casa loro?\nA me tutto questo pare RAZZISMO! O sbaglio?", "shared_text": "", "time": "2015-10-06 12:55:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153308587448155&id=252306033154", "link": null} +{"post_id": "10153304415073155", "text": "I centri a-sociali aggrediscono leghisti che a Pisa raccolgono firme per la sicurezza. Nonostante questo, pi\u00f9 di 100 cittadini si fermano e firmano. Zecche rosse, non fate paura a nessuno!", "post_text": "I centri a-sociali aggrediscono leghisti che a Pisa raccolgono firme per la sicurezza. Nonostante questo, pi\u00f9 di 100 cittadini si fermano e firmano. Zecche rosse, non fate paura a nessuno!", "shared_text": "", "time": "2015-10-03 19:36:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153304415073155&id=252306033154", "link": null} +{"post_id": "10153303085888155", "text": "Castagne, vino rosso e \"Quarto grado\".\nE voi?", "post_text": "Castagne, vino rosso e \"Quarto grado\".\nE voi?", "shared_text": "", "time": "2015-10-02 22:15:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12080098_10153303085888155_400459349269612853_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=4ifSoFCqrlwAQlBehCHjdMeUuP0fX8w3LU8y1XmTZCBnYlkw63-5NHPKQ&_nc_ht=scontent-cdt1-1.xx&oh=e1a4b34c9e7b73346d6c2f920c0d8b14&oe=5E475502", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153302405228155", "text": "Sacrifici per gli italiani, voli di Stato per Renzi e i suoi ministri.\nSbaglio se dico che tutto questo MI FA SCHIFO? RUSPA.", "post_text": "Sacrifici per gli italiani, voli di Stato per Renzi e i suoi ministri.\nSbaglio se dico che tutto questo MI FA SCHIFO? RUSPA.", "shared_text": "", "time": "2015-10-02 12:37:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153302405228155&id=252306033154", "link": null} +{"post_id": "10153300802538155", "text": "Io mi VERGOGNO di uno Stato in cui una mamma e un pap\u00e0, oltre a non essere ancora risarciti per l\u2019errore dell\u2019ospedale che ha reso disabile il loro bimbo, ricevono una cartella di Equitalia di 38mila euro e la minaccia del fermo dell\u2019auto.\nCAMBIEREMO QUESTO STATO INFAME, CANCELLEREMO QUESTO SCHIFO!", "post_text": "Io mi VERGOGNO di uno Stato in cui una mamma e un pap\u00e0, oltre a non essere ancora risarciti per l\u2019errore dell\u2019ospedale che ha reso disabile il loro bimbo, ricevono una cartella di Equitalia di 38mila euro e la minaccia del fermo dell\u2019auto.\nCAMBIEREMO QUESTO STATO INFAME, CANCELLEREMO QUESTO SCHIFO!", "shared_text": "", "time": "2015-10-01 12:15:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153300802538155&id=252306033154", "link": null} +{"post_id": "10153300658933155", "text": "Altro che la riforma del Senato di Renzi, un Governo normale dovrebbe occuparsi in questo momento dei problemi VERI degli italiani, LAVORO, TASSE, PENSIONI e IMMIGRAZIONE.\nSolo io la penso cos\u00ec?", "post_text": "Altro che la riforma del Senato di Renzi, un Governo normale dovrebbe occuparsi in questo momento dei problemi VERI degli italiani, LAVORO, TASSE, PENSIONI e IMMIGRAZIONE.\nSolo io la penso cos\u00ec?", "shared_text": "", "time": "2015-10-01 09:37:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153300658933155&id=252306033154", "link": null} +{"post_id": "10153299707548155", "text": "Per Angelo, 69 anni di Roma, non c'\u00e8 posto in albergo, per migliaia di clandestini, magari ventenni, invece s\u00ec.\nAscoltate e CONDIVIDETE le sue parole... Anche per lui sono pronte le accuse di razzismo?", "post_text": "Per Angelo, 69 anni di Roma, non c'\u00e8 posto in albergo, per migliaia di clandestini, magari ventenni, invece s\u00ec.\nAscoltate e CONDIVIDETE le sue parole... Anche per lui sono pronte le accuse di razzismo?", "shared_text": "", "time": "2015-09-30 19:08:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153299707548155&id=252306033154", "link": null} +{"post_id": "10153298097228155", "text": "Le priorit\u00e0 di Renzi sono la riforma del Senato e lo IUS SOLI, la cittadinanza veloce per gli immigrati...\nLe nostre EMERGENZE si chiamano LAVORO, PENSIONI, FLAT TAX e aiutare gli italiani in difficolt\u00e0, tutto il resto viene dopo!", "post_text": "Le priorit\u00e0 di Renzi sono la riforma del Senato e lo IUS SOLI, la cittadinanza veloce per gli immigrati...\nLe nostre EMERGENZE si chiamano LAVORO, PENSIONI, FLAT TAX e aiutare gli italiani in difficolt\u00e0, tutto il resto viene dopo!", "shared_text": "", "time": "2015-09-29 19:39:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153298097228155&id=252306033154", "link": null} +{"post_id": "10153297581198155", "text": "Ascolta e CONDIVIDI, questa \u00e8 la situazione di Pescara filmata dai cittadini\u2026\nPi\u00f9 SICUREZZA e BUON SENSO, meno Renzi e Boldrini!", "post_text": "Ascolta e CONDIVIDI, questa \u00e8 la situazione di Pescara filmata dai cittadini\u2026\nPi\u00f9 SICUREZZA e BUON SENSO, meno Renzi e Boldrini!", "shared_text": "", "time": "2015-09-29 12:33:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153297581198155&id=252306033154", "link": null} +{"post_id": "10153295787453155", "text": "Guardate la reazione dei \"buonisti\" alla lettura in diretta di un vostro messaggio su Facebook... Ci vuole RISPETTO per i milioni di italiani in difficolt\u00e0, altro che resort a 4 stelle per i clandestini!", "post_text": "Guardate la reazione dei \"buonisti\" alla lettura in diretta di un vostro messaggio su Facebook... Ci vuole RISPETTO per i milioni di italiani in difficolt\u00e0, altro che resort a 4 stelle per i clandestini!", "shared_text": "", "time": "2015-09-28 14:18:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153295787453155&id=252306033154", "link": null} +{"post_id": "10153290878383155", "text": "BECCATI a truccare i dati sulle emissioni delle auto...\nCara Merkel, GI\u00d9 dal PIEDISTALLO!!!", "post_text": "BECCATI a truccare i dati sulle emissioni delle auto...\nCara Merkel, GI\u00d9 dal PIEDISTALLO!!!", "shared_text": "", "time": "2015-09-25 18:21:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153290878383155&id=252306033154", "link": null} +{"post_id": "10153288918048155", "text": "Mentre gli sfigati rossi di \"Mai con Salvini\" si ritrovano in quattro gatti davanti alla loro Casa del Popolo, io vi aspetto in tantissimi sabato sera a Pordenone! Se voi ci siete, io ci sono!", "post_text": "Mentre gli sfigati rossi di \"Mai con Salvini\" si ritrovano in quattro gatti davanti alla loro Casa del Popolo, io vi aspetto in tantissimi sabato sera a Pordenone! Se voi ci siete, io ci sono!", "shared_text": "", "time": "2015-09-24 15:26:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153288918048155&id=252306033154", "link": null} +{"post_id": "10153287737758155", "text": "Anche il pubblico di \"Pomeriggio Cinque\" che applaude sar\u00e0 composto da BESTIE???", "post_text": "Anche il pubblico di \"Pomeriggio Cinque\" che applaude sar\u00e0 composto da BESTIE???", "shared_text": "", "time": "2015-09-23 20:26:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153287737758155&id=252306033154", "link": null} +{"post_id": "10153286023118155", "text": "Ma i buonisti della sinistra o dei Cinquestelle pensano di sconfiggere i tagliagole dell\u2019ISIS con i fiorellini?\nPer sradicare la peste del terrorismo islamico servono le MANIERE FORTI!\nSe sei d\u2019accordo, CONDIVIDI\u2026 Alla faccia di ipocriti e fessi di casa nostra!", "post_text": "Ma i buonisti della sinistra o dei Cinquestelle pensano di sconfiggere i tagliagole dell\u2019ISIS con i fiorellini?\nPer sradicare la peste del terrorismo islamico servono le MANIERE FORTI!\nSe sei d\u2019accordo, CONDIVIDI\u2026 Alla faccia di ipocriti e fessi di casa nostra!", "shared_text": "", "time": "2015-09-22 21:10:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153286023118155&id=252306033154", "link": null} +{"post_id": "10153285222223155", "text": "Ecco il video della mia intervista a RTL 102.5. Se non l'avete vista e vi va di dare un'occhiata, poi leggo volentieri i vostri commenti.", "post_text": "Ecco il video della mia intervista a RTL 102.5. Se non l'avete vista e vi va di dare un'occhiata, poi leggo volentieri i vostri commenti.", "shared_text": "", "time": "2015-09-22 13:05:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153285222223155&id=252306033154", "link": null} +{"post_id": "10153282986333155", "text": "MAFIA E IMMIGRATI: due mesi fa lo denunciavo io ed ero razzista, oggi se ne accorge anche il Corriere...", "post_text": "MAFIA E IMMIGRATI: due mesi fa lo denunciavo io ed ero razzista, oggi se ne accorge anche il Corriere...", "shared_text": "", "time": "2015-09-21 14:03:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153282986333155&id=252306033154", "link": null} +{"post_id": "10153280500273155", "text": "Ascoltate e CONDIVIDETE: voi come altro definireste questa VERGOGNA?\nUn abbraccio a Paola e a Beatrice, un vaffa a Renzi e alla sua \u201cBuona Scuola\u201d!", "post_text": "Ascoltate e CONDIVIDETE: voi come altro definireste questa VERGOGNA?\nUn abbraccio a Paola e a Beatrice, un vaffa a Renzi e alla sua \u201cBuona Scuola\u201d!", "shared_text": "", "time": "2015-09-20 12:41:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153280500273155&id=252306033154", "link": null} +{"post_id": "10153279007793155", "text": "Salvatore, padre di un bimbo di 4 anni, ha perso il lavoro e ora dorme in tenda in un parcheggio pubblico. Per lui un posto in albergo non c\u2019\u00e8, per migliaia di clandestini, invece, s\u00ec.\nSe questo RAZZISMO fa incazzare anche te, CONDIVIDI.", "post_text": "Salvatore, padre di un bimbo di 4 anni, ha perso il lavoro e ora dorme in tenda in un parcheggio pubblico. Per lui un posto in albergo non c\u2019\u00e8, per migliaia di clandestini, invece, s\u00ec.\nSe questo RAZZISMO fa incazzare anche te, CONDIVIDI.", "shared_text": "", "time": "2015-09-19 19:28:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153279007793155&id=252306033154", "link": null} +{"post_id": "10153277045933155", "text": "Ciao amici, noi andiamo in altalena! Voi che fate?", "post_text": "Ciao amici, noi andiamo in altalena! Voi che fate?", "shared_text": "", "time": "2015-09-18 19:59:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11143169_10153277045933155_529441527163225232_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=1BIpr1iZU2UAQlfCosmiaruaJfdKZbu_N-CeO-xNlleWIH01PsJDInI2Q&_nc_ht=scontent-cdt1-1.xx&oh=9edfaaecaf93c12f67d643159b3d10a5&oe=5E40D1D4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153277006703155", "text": "Fanculo alle porcherie dell'Europa e a chi prende in giro gli italiani! RUSPA! #grillocomerenzi", "post_text": "Fanculo alle porcherie dell'Europa e a chi prende in giro gli italiani! RUSPA! #grillocomerenzi", "shared_text": "", "time": "2015-09-18 19:32:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153277006703155&id=252306033154", "link": null} +{"post_id": "10153275246008155", "text": "Mentre Renzi \u00e8 a cena in un ristorante 3 stelle Michelin da centinaia di euro, io mi tuffo nei cannelloni coi leghisti!\nBuon appetito a tutte le persone perbene! Quindi non a Renzi...", "post_text": "Mentre Renzi \u00e8 a cena in un ristorante 3 stelle Michelin da centinaia di euro, io mi tuffo nei cannelloni coi leghisti!\nBuon appetito a tutte le persone perbene! Quindi non a Renzi...", "shared_text": "", "time": "2015-09-17 21:14:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12017481_10153275246008155_844064159675250782_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=HYhT4cVLILsAQlIWCaXxlSLrrScSMCY21Tt3D0s2kocy18d0N7u1H5GSg&_nc_ht=scontent-cdt1-1.xx&oh=010658c1e0c4abd577f58408e22af0ed&oe=5E7C705B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153274472263155", "text": "\"Il mio voto? MAI PI\u00d9 AL PD!!!\"\nAscolta e CONDIVIDI le parole di Paola, esodata emiliana, che in un minuto smaschera e sbugiarda Renzi!", "post_text": "\"Il mio voto? MAI PI\u00d9 AL PD!!!\"\nAscolta e CONDIVIDI le parole di Paola, esodata emiliana, che in un minuto smaschera e sbugiarda Renzi!", "shared_text": "", "time": "2015-09-17 14:52:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153274472263155&id=252306033154", "link": null} +{"post_id": "10153274222513155", "text": "La signora Boldrini che parla della Costituzione e dei diritti dei profughi.\nRenzi che blocca il Parlamento con la riforma del Senato, i matrimoni gay, le missioni all\u2019estero e le intercettazioni\u2026\nMa i problemi VERI degli italiani non interessano proprio alla sinistra?", "post_text": "La signora Boldrini che parla della Costituzione e dei diritti dei profughi.\nRenzi che blocca il Parlamento con la riforma del Senato, i matrimoni gay, le missioni all\u2019estero e le intercettazioni\u2026\nMa i problemi VERI degli italiani non interessano proprio alla sinistra?", "shared_text": "", "time": "2015-09-17 11:25:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153274222513155&id=252306033154", "link": null} +{"post_id": "10153272134698155", "text": "Mentre i soldi per gli italiani che hanno bisogno non si trovano mai, ecco come vengono buttati 100 milioni di euro per mantenere, anche per 2 anni, dei \"profughi\" che non scappano da nessuna guerra. Forse qualcuno ci mangia?", "post_text": "Mentre i soldi per gli italiani che hanno bisogno non si trovano mai, ecco come vengono buttati 100 milioni di euro per mantenere, anche per 2 anni, dei \"profughi\" che non scappano da nessuna guerra. Forse qualcuno ci mangia?", "shared_text": "", "time": "2015-09-16 14:55:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153272134698155&id=252306033154", "link": null} +{"post_id": "10153271931903155", "text": "O il PALAZZO inizia a occuparsi dei problemi di milioni di cittadini italiani derubati e dimenticati, o la prossima volta lo SMONTIAMO mattone per mattone!", "post_text": "O il PALAZZO inizia a occuparsi dei problemi di milioni di cittadini italiani derubati e dimenticati, o la prossima volta lo SMONTIAMO mattone per mattone!", "shared_text": "", "time": "2015-09-16 10:37:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153271931903155&id=252306033154", "link": null} +{"post_id": "10153270559078155", "text": "4.000 morti, 5 miliardi di euro spesi, migliaia di clandestini in albergo, Germania e Slovacchia sospendono Schengen, l\u2019Austria invia l\u2019esercito per presidiare i confini, l\u2019Ungheria alza un muro, persino\u2026 Altro l\u2019Europa, come chiediamo da anni, vorrebbe iniziare a usare le \u201cmaniere forti\u201d per bloccare barconi e scafisti\u2026\nCosa deve succedere ancora per svegliare il governo dei dormienti Renzi e Alfano?", "post_text": "4.000 morti, 5 miliardi di euro spesi, migliaia di clandestini in albergo, Germania e Slovacchia sospendono Schengen, l\u2019Austria invia l\u2019esercito per presidiare i confini, l\u2019Ungheria alza un muro, persino\u2026 Altro l\u2019Europa, come chiediamo da anni, vorrebbe iniziare a usare le \u201cmaniere forti\u201d per bloccare barconi e scafisti\u2026\nCosa deve succedere ancora per svegliare il governo dei dormienti Renzi e Alfano?", "shared_text": "", "time": "2015-09-15 19:01:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153270559078155&id=252306033154", "link": null} +{"post_id": "10153270001648155", "text": "Ho parlato ad una docente che seguiva una bimba Down e che ora \u00e8 lasciata a casa dal governo. E come lei, sono migliaia gli insegnanti, compresi quelli di sostegno per i bambini disabili, dimenticati e lasciati a piedi.\nAltro che \u201cBuona Scuola\u201d, Renzi non si vergogna almeno un po\u2019?", "post_text": "Ho parlato ad una docente che seguiva una bimba Down e che ora \u00e8 lasciata a casa dal governo. E come lei, sono migliaia gli insegnanti, compresi quelli di sostegno per i bambini disabili, dimenticati e lasciati a piedi.\nAltro che \u201cBuona Scuola\u201d, Renzi non si vergogna almeno un po\u2019?", "shared_text": "", "time": "2015-09-15 13:33:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153270001648155&id=252306033154", "link": null} +{"post_id": "10153269941393155", "text": "Stiamo OCCUPANDO il Ministero dell'Economia!\nVogliamo fatti concreti, risposte e tempi certi sulla Legge Fornero.\nSiete al nostro fianco?", "post_text": "Stiamo OCCUPANDO il Ministero dell'Economia!\nVogliamo fatti concreti, risposte e tempi certi sulla Legge Fornero.\nSiete al nostro fianco?", "shared_text": "", "time": "2015-09-15 12:55:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12028839_10153269941393155_497480820643560962_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=jlHcVWXi634AQnESoCUNOdi8jAF_eq7rd_Ptf4cgs9Y9IW4rgUpmV5D8g&_nc_ht=scontent-cdt1-1.xx&oh=721cf2106578e429cf6127018c0f09f6&oe=5E404B8D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153267580308155", "text": "Ascoltiamo e facciamo girare le parole di Tina...\nTerremotata di Mirandola, in provincia di Modena, sopravvive da 1.197 giorni in un container.\nLIBERIAMOCI di un governo che mette in albergo i clandestini e toglie la DIGNIT\u00c0 ai cittadini! Ruspa.", "post_text": "Ascoltiamo e facciamo girare le parole di Tina...\nTerremotata di Mirandola, in provincia di Modena, sopravvive da 1.197 giorni in un container.\nLIBERIAMOCI di un governo che mette in albergo i clandestini e toglie la DIGNIT\u00c0 ai cittadini! Ruspa.", "shared_text": "", "time": "2015-09-14 13:51:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153267580308155&id=252306033154", "link": null} +{"post_id": "10153267471518155", "text": "Elio, pap\u00e0 di Giada, si \u00e8 incatenato all'esterno della scuola elementare di Calolziocorte (Lecco). Protesta perch\u00e9 sua figlia, come migliaia di altri bimbi disabili, sar\u00e0 in classe senza l'insegnante di sostegno. Un abbraccio a Elio e a Giada, un vaffa a Renzi e alla sua \"Buona Scuola\"...", "post_text": "Elio, pap\u00e0 di Giada, si \u00e8 incatenato all'esterno della scuola elementare di Calolziocorte (Lecco). Protesta perch\u00e9 sua figlia, come migliaia di altri bimbi disabili, sar\u00e0 in classe senza l'insegnante di sostegno. Un abbraccio a Elio e a Giada, un vaffa a Renzi e alla sua \"Buona Scuola\"...", "shared_text": "", "time": "2015-09-14 12:20:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11988714_10153267471518155_1722762277604237523_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=46km2vClPxIAQmzvK5lvf2YhDBxjIih9ftKVs1fzvTCnxo_bO3jiZGpuQ&_nc_ht=scontent-cdt1-1.xx&oh=cae034673f62304f3571e84b963b63b9&oe=5E4AAF76", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153266023493155", "text": "Forza vecchio cuore rossonero!", "post_text": "Forza vecchio cuore rossonero!", "shared_text": "", "time": "2015-09-13 20:45:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/12017714_10153266023493155_1821852275628105761_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=TSuR6q55MfUAQneBBO8HDM2_i3lnm9zdBYidkQi1sYTeqybftFuBEZ3kQ&_nc_ht=scontent-cdt1-1.xx&oh=990f9adc78fab15edd7e96f1fb13e87d&oe=5E4D1495", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153265555748155", "text": "Amici, l'abbraccio della piazza di Cittadella lo dedico a voi!", "post_text": "Amici, l'abbraccio della piazza di Cittadella lo dedico a voi!", "shared_text": "", "time": "2015-09-13 17:46:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153265555748155&id=252306033154", "link": null} +{"post_id": "10153260402588155", "text": "A Saluzzo pi\u00f9 di mille persone! Renzi, stiamo arrivando!", "post_text": "A Saluzzo pi\u00f9 di mille persone! Renzi, stiamo arrivando!", "shared_text": "", "time": "2015-09-11 23:38:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12004929_10153260402588155_8612783887531128642_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=RRxGbpIeBMQAQl-f07483IcqIHB7pBoXHA1FoLv1Mg5Yhnjp0xU2Zx4Kg&_nc_ht=scontent-cdt1-1.xx&oh=a13acd8f1e5dc007916452f38eeb182a&oe=5E84A631", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153260046763155", "text": "Togliere l'embargo alla Siria, eliminare le folli sanzioni alla Russia, intervenire per cancellare dalla faccia della Terra i tagliagole dello Stato Islamico e aiutare la gente a non scappare.\nAltro che importare nuovi schiavi in Europa!\nSe sei d'accordo, ascolta e CONDIVIDI!", "post_text": "Togliere l'embargo alla Siria, eliminare le folli sanzioni alla Russia, intervenire per cancellare dalla faccia della Terra i tagliagole dello Stato Islamico e aiutare la gente a non scappare.\nAltro che importare nuovi schiavi in Europa!\nSe sei d'accordo, ascolta e CONDIVIDI!", "shared_text": "", "time": "2015-09-11 20:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153260046763155&id=252306033154", "link": null} +{"post_id": "10153257136978155", "text": "Altro che bestie!\nNoi siamo l\u2019Italia del Monsignor Maggiolini che ci metteva in guardia dal non confondere la libert\u00e0 di religione con la libert\u00e0 di INVASIONE.\nDell\u2019arcivescovo di Bologna Biffi che consigliava\u2026 Altro di privilegiare l\u2019immigrazione di chi viene da territori cristiani perch\u00e9 pi\u00f9 facilmente assimilabile.\nNoi siamo l\u2019Italia del BUON SENSO che vuole accogliere chi scappa veramente dalla guerra ma RESPINGERE chi non ne ha diritto.\nAltro che bestie, Renzi VERGOGNATI!", "post_text": "Altro che bestie!\nNoi siamo l\u2019Italia del Monsignor Maggiolini che ci metteva in guardia dal non confondere la libert\u00e0 di religione con la libert\u00e0 di INVASIONE.\nDell\u2019arcivescovo di Bologna Biffi che consigliava\u2026 Altro di privilegiare l\u2019immigrazione di chi viene da territori cristiani perch\u00e9 pi\u00f9 facilmente assimilabile.\nNoi siamo l\u2019Italia del BUON SENSO che vuole accogliere chi scappa veramente dalla guerra ma RESPINGERE chi non ne ha diritto.\nAltro che bestie, Renzi VERGOGNATI!", "shared_text": "", "time": "2015-09-10 12:56:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153257136978155&id=252306033154", "link": null} +{"post_id": "10153255918708155", "text": "\u201cVogliamo una casa, vogliamo essere aiutati\u201d dicono i giovani ROM.\nOssignur\u2026 Che cosa rispondiamo a questi ventenni di belle speranze e con tanta voglia di lavorare?", "post_text": "\u201cVogliamo una casa, vogliamo essere aiutati\u201d dicono i giovani ROM.\nOssignur\u2026 Che cosa rispondiamo a questi ventenni di belle speranze e con tanta voglia di lavorare?", "shared_text": "", "time": "2015-09-09 20:10:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153255918708155&id=252306033154", "link": null} +{"post_id": "10153255761558155", "text": "Pensano agli immigrati, se ne fregano dei disoccupati! Condividi e...ruspa!", "post_text": "Pensano agli immigrati, se ne fregano dei disoccupati! Condividi e...ruspa!", "shared_text": "", "time": "2015-09-09 18:22:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153255761558155&id=252306033154", "link": null} +{"post_id": "10153255316823155", "text": "\u00c8 NORMALE l'Italia di Renzi, che ruba ANNI di vita alle donne con la legge Fornero ma i soldi li trova solo per i clandestini che sbarcano domani mattina? Quando saremo al governo CANCELLEREMO SUBITO quell'infame legge, gli italiani vengono PRIMA!", "post_text": "\u00c8 NORMALE l'Italia di Renzi, che ruba ANNI di vita alle donne con la legge Fornero ma i soldi li trova solo per i clandestini che sbarcano domani mattina? Quando saremo al governo CANCELLEREMO SUBITO quell'infame legge, gli italiani vengono PRIMA!", "shared_text": "", "time": "2015-09-09 13:18:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153255316823155&id=252306033154", "link": null} +{"post_id": "10153252949773155", "text": "\"O tiri fuori i tutti i soldi o ti uccido\". Un abbraccio a tutti i tassisti italiani che, grazie al governo Renzi-Alfano, sono ogni giorno meno al sicuro.", "post_text": "\"O tiri fuori i tutti i soldi o ti uccido\". Un abbraccio a tutti i tassisti italiani che, grazie al governo Renzi-Alfano, sono ogni giorno meno al sicuro.", "shared_text": "", "time": "2015-09-08 13:41:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153252949773155&id=252306033154", "link": null} +{"post_id": "10153252793628155", "text": "Se avete voglia, ecco il video dell'intervista di ieri sera con Paolo Del Debbio a \"Quinta Colonna\".\nP.s. Ho parlato anche di voi, e di tutti i messaggi che mi scrivete, siamo una splendida Comunit\u00e0!", "post_text": "Se avete voglia, ecco il video dell'intervista di ieri sera con Paolo Del Debbio a \"Quinta Colonna\".\nP.s. Ho parlato anche di voi, e di tutti i messaggi che mi scrivete, siamo una splendida Comunit\u00e0!", "shared_text": "", "time": "2015-09-08 11:14:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153252793628155&id=252306033154", "link": null} +{"post_id": "10153250887348155", "text": "Sbugiardare Renzi e proporre un futuro diverso per l'Italia davanti alla platea di Cernobbio, raccogliendo applausi inaspettati. Fatto!", "post_text": "Sbugiardare Renzi e proporre un futuro diverso per l'Italia davanti alla platea di Cernobbio, raccogliendo applausi inaspettati. Fatto!", "shared_text": "", "time": "2015-09-07 16:43:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153250887348155&id=252306033154", "link": null} +{"post_id": "10153250530383155", "text": "Ho dato del \"verme\" a Renzi, ho esagerato???", "post_text": "Ho dato del \"verme\" a Renzi, ho esagerato???", "shared_text": "", "time": "2015-09-07 13:00:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153250530383155&id=252306033154", "link": null} +{"post_id": "10153250246108155", "text": "Questo fine settimana vi aspetto venerd\u00ec e sabato sul Monviso e domenica a Cittadella. Difendere le radici vuol dire preparare il Futuro!", "post_text": "Questo fine settimana vi aspetto venerd\u00ec e sabato sul Monviso e domenica a Cittadella. Difendere le radici vuol dire preparare il Futuro!", "shared_text": "", "time": "2015-09-07 09:08:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11227403_10153250245968155_7350289739036140351_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=FaJ3Y3UxJqcAQkgISPNaR--Ct4jHQ-coRXZvlHIT1IXmEXPlnSjZM2yqQ&_nc_ht=scontent-cdt1-1.xx&oh=03a809ad18e30e8f2ae7501e9ef102d5&oe=5E42297A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153248836353155", "text": "Renzi, guarda quante BESTIE con la Lega a Lodi!\n#megliobestiacherenzi", "post_text": "Renzi, guarda quante BESTIE con la Lega a Lodi!\n#megliobestiacherenzi", "shared_text": "", "time": "2015-09-06 20:11:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11872167_10153248836353155_6316468404758713229_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=idZKScB3iikAQnS0NBjR23CvwcEHI35CvC7i7ed34TPD9pN8DQkYzc7Dw&_nc_ht=scontent-cdt1-1.xx&oh=f2e33c745afd770767925cde856fd320&oe=5E8C4C13", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153248619573155", "text": "Renzi fa il fenomeno ma, anche in economia, non combina nulla.\nPer liberare le imprese e ridare il lavoro agli italiani c'\u00e8 bisogno di una RIVOLUZIONE che si chiama ALIQUOTA FISCALE UNICA al 15% per tutti.\nAndremo al governo e la faremo. Io sono pronto, e voi?", "post_text": "Renzi fa il fenomeno ma, anche in economia, non combina nulla.\nPer liberare le imprese e ridare il lavoro agli italiani c'\u00e8 bisogno di una RIVOLUZIONE che si chiama ALIQUOTA FISCALE UNICA al 15% per tutti.\nAndremo al governo e la faremo. Io sono pronto, e voi?", "shared_text": "", "time": "2015-09-06 19:09:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153248619573155&id=252306033154", "link": null} +{"post_id": "10153244186678155", "text": "Se in Italia ti trovi \"di merda\", torna al tuo Paese!\nP.s. Condividi sulla bacheca di qualche \"buonista\", che magari pu\u00f2 offrirsi per trattare meglio questo signore...", "post_text": "Se in Italia ti trovi \"di merda\", torna al tuo Paese!\nP.s. Condividi sulla bacheca di qualche \"buonista\", che magari pu\u00f2 offrirsi per trattare meglio questo signore...", "shared_text": "", "time": "2015-09-04 19:49:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153244186678155&id=252306033154", "link": null} +{"post_id": "10153243867353155", "text": "Guardate e CONDIVIDETE la storia di Angelo che ormai vive prigioniero in casa sua tra \"profughi\" che fanno casino, girano nudi e sputano per le scale...\nAngelo, non ti lasciamo solo.\nPer il governo dell'\u2026 Altroinvasione e per chi si arricchisce sulla pelle degli italiani, RUSPA IN ARRIVO!\nhttp://www.ilgiornale.it/news/cronache/chieve-business-immigrati-e-case-invendute-1165785.html", "post_text": "Guardate e CONDIVIDETE la storia di Angelo che ormai vive prigioniero in casa sua tra \"profughi\" che fanno casino, girano nudi e sputano per le scale...\nAngelo, non ti lasciamo solo.\nPer il governo dell'\u2026 Altroinvasione e per chi si arricchisce sulla pelle degli italiani, RUSPA IN ARRIVO!\nhttp://www.ilgiornale.it/news/cronache/chieve-business-immigrati-e-case-invendute-1165785.html", "shared_text": "", "time": "2015-09-04 16:44:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153243867353155&id=252306033154", "link": "http://www.ilgiornale.it/news/cronache/chieve-business-immigrati-e-case-invendute-1165785.html?fbclid=IwAR0hzJSacrzxcrh4TnqtmWFkT4S8zy3lkX2U8djX0ZSOVOuAUDhqwsZGfOg"} +{"post_id": "10153241612313155", "text": "Ascoltate bene e fate girare tra i vostri amici!\nOrmai \u00e8 passaparola tra \u201cprofughi\u201d di mezzo mondo: andate in Italia, l\u00ec fanno passare tutti ed \u00e8 facile chiedere asilo\u2026\nDISASTRO Renzi, prima lo cacciamo meglio \u00e8!\nhttp://www.ilgiornale.it/news/cronache/londata-pakistani-est-prefetture-collasso-1165819.html", "post_text": "Ascoltate bene e fate girare tra i vostri amici!\nOrmai \u00e8 passaparola tra \u201cprofughi\u201d di mezzo mondo: andate in Italia, l\u00ec fanno passare tutti ed \u00e8 facile chiedere asilo\u2026\nDISASTRO Renzi, prima lo cacciamo meglio \u00e8!\nhttp://www.ilgiornale.it/news/cronache/londata-pakistani-est-prefetture-collasso-1165819.html", "shared_text": "", "time": "2015-09-03 13:24:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153241612313155&id=252306033154", "link": "http://www.ilgiornale.it/news/cronache/londata-pakistani-est-prefetture-collasso-1165819.html?fbclid=IwAR2q_0gctSArTzNd4GTqnNdiKygJcXcDObH89yOPLSGZhHwumGl1k77JfME"} +{"post_id": "10153239580353155", "text": "Dai Renzi, gli Alfano e le Boldrini ZERO proposte e ZERO risultati ma solo tanti INSULTI per chi chiede il rispetto delle regole e interventi concreti per controllare e gestire l\u2019immigrazione.\n\u201cRazzisti,\u2026 Altro leghisti, populisti, xenofobi, nazisti, fascisti e ora anche SCIACALLIIII\u201d, siete pronti a cacciare il governo degli incapaci e a riprendervi l\u2019Italia?", "post_text": "Dai Renzi, gli Alfano e le Boldrini ZERO proposte e ZERO risultati ma solo tanti INSULTI per chi chiede il rispetto delle regole e interventi concreti per controllare e gestire l\u2019immigrazione.\n\u201cRazzisti,\u2026 Altro leghisti, populisti, xenofobi, nazisti, fascisti e ora anche SCIACALLIIII\u201d, siete pronti a cacciare il governo degli incapaci e a riprendervi l\u2019Italia?", "shared_text": "", "time": "2015-09-02 12:38:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153239580353155&id=252306033154", "link": null} +{"post_id": "10153237976938155", "text": "E oggi il premio \"Vai a lavorareee!!!\" lo vince l'europarlamentare del PD Pina Picierno!", "post_text": "E oggi il premio \"Vai a lavorareee!!!\" lo vince l'europarlamentare del PD Pina Picierno!", "shared_text": "", "time": "2015-09-01 19:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153237976938155&id=252306033154", "link": null} +{"post_id": null, "text": "Amici, sotto \"copio e incollo\" il mio programma per i prossimi giorni, fino a domenica.\nCome sempre, vi aspetto! E chi si ferma \u00e8 perduto!\nMERCOLEDI' 2 SETTEMBRE\n- 9.00 Radio Cusano Campus (collegamento\u2026 Altro telefonico)\n- 20.30 Festa LN a CONSELVE (PD) c/o Prato Comunale in via Monsignor Beggiato\nGIOVEDI' 3 SETTEMBRE\n(VITERBO e provincia nella giornata)\n- 21.00 Trasporto Macchina di Santa Rosa\nVENERDI' 4 SETTEMBRE\n- 13.00 CARA di MINEO (CT)\n- 20.00 Festa LN a CANTU' (CO) in via Giovanni da Cermenate c/o Struttura \"Campo Solare\"\n- 21.30 Festa LN a CALOLZIOCORTE (LC) c/o Dancing Sport Lavello in viale De Gasperi 4\nSABATO 5 SETTEMBRE\n- 19.00 Festa LN \u201cSempre in corsa con Matteo Salvini\u201d a BUGLIO IN\u2026 Altro", "post_text": "Amici, sotto \"copio e incollo\" il mio programma per i prossimi giorni, fino a domenica.\nCome sempre, vi aspetto! E chi si ferma \u00e8 perduto!\nMERCOLEDI' 2 SETTEMBRE\n- 9.00 Radio Cusano Campus (collegamento\u2026 Altro telefonico)\n- 20.30 Festa LN a CONSELVE (PD) c/o Prato Comunale in via Monsignor Beggiato\nGIOVEDI' 3 SETTEMBRE\n(VITERBO e provincia nella giornata)\n- 21.00 Trasporto Macchina di Santa Rosa\nVENERDI' 4 SETTEMBRE\n- 13.00 CARA di MINEO (CT)\n- 20.00 Festa LN a CANTU' (CO) in via Giovanni da Cermenate c/o Struttura \"Campo Solare\"\n- 21.30 Festa LN a CALOLZIOCORTE (LC) c/o Dancing Sport Lavello in viale De Gasperi 4\nSABATO 5 SETTEMBRE\n- 19.00 Festa LN \u201cSempre in corsa con Matteo Salvini\u201d a BUGLIO IN\u2026 Altro", "shared_text": "", "time": "2015-09-01 17:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11927478_10153237853078155_7133398370334881219_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=s-bgqbiLyBoAQmJW2Q-ZBh7FnvV8AnbPKhS8Kik8Vb0b-BSbW7MvfPzrw&_nc_ht=scontent-cdt1-1.xx&oh=78130908cf72fe4e6d02a1a39d369d41&oe=5E3FDFC4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153235530178155", "text": "Pazzesco! A Conetta, vicino a Venezia, hanno inviato 2 \"profughi\" per ogni abitante.\nQuello sveglione di Renzi gioca a Risiko con gli immigrati sulla pelle degli italiani, per lui e Alfano RUSPA del BUON SENSO in arrivo!", "post_text": "Pazzesco! A Conetta, vicino a Venezia, hanno inviato 2 \"profughi\" per ogni abitante.\nQuello sveglione di Renzi gioca a Risiko con gli immigrati sulla pelle degli italiani, per lui e Alfano RUSPA del BUON SENSO in arrivo!", "shared_text": "", "time": "2015-08-31 19:10:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153235530178155&id=252306033154", "link": null} +{"post_id": "10153234819103155", "text": "Altre parole non servono. Una preghiera.", "post_text": "Altre parole non servono. Una preghiera.", "shared_text": "", "time": "2015-08-31 13:38:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153234819103155&id=252306033154", "link": null} +{"post_id": "10153229855683155", "text": "Gli pseudo-albergatori che guadagnano grazie a questa invasione sono un insulto ai VERI imprenditori e ristoratori che si fanno un mazzo tutti i giorni per fare il loro LAVORO.\nSe uno campa sui clandestini che chiuda domani mattina, non serve all'Italia!", "post_text": "Gli pseudo-albergatori che guadagnano grazie a questa invasione sono un insulto ai VERI imprenditori e ristoratori che si fanno un mazzo tutti i giorni per fare il loro LAVORO.\nSe uno campa sui clandestini che chiuda domani mattina, non serve all'Italia!", "shared_text": "", "time": "2015-08-29 12:54:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153229855683155&id=252306033154", "link": null} +{"post_id": "10153227379093155", "text": "Italiani sgomberati, \"profughi\" ospitati. Stato italiano o Stato clandestino???", "post_text": "Italiani sgomberati, \"profughi\" ospitati. Stato italiano o Stato clandestino???", "shared_text": "", "time": "2015-08-28 12:39:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153227379093155&id=252306033154", "link": null} +{"post_id": "10153224856673155", "text": "Marino e Alfano a casaaa!\nNell'Italia che vogliamo, e che cambieremo, CHI SBAGLIA PAGA!\nSe anche tu sei d\u2019accordo, ascolta e fai girare\u2026", "post_text": "Marino e Alfano a casaaa!\nNell'Italia che vogliamo, e che cambieremo, CHI SBAGLIA PAGA!\nSe anche tu sei d\u2019accordo, ascolta e fai girare\u2026", "shared_text": "", "time": "2015-08-27 13:18:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153224856673155&id=252306033154", "link": null} +{"post_id": "10153222387843155", "text": "Bello per i sinistri riempirsi la bocca della parola \u201caccoglienza\u201d con chi sbarca domani mattina!\nMa quanti sono i cittadini italiani, magari disoccupati o sotto sfratto, cassintegrati, pensionati al minimo o\u2026 Altro disabili che hanno bisogno e sono lasciati senza alcun aiuto? Quando saremo al governo, PRIMA penseremo ai nostri, POI agli altri.", "post_text": "Bello per i sinistri riempirsi la bocca della parola \u201caccoglienza\u201d con chi sbarca domani mattina!\nMa quanti sono i cittadini italiani, magari disoccupati o sotto sfratto, cassintegrati, pensionati al minimo o\u2026 Altro disabili che hanno bisogno e sono lasciati senza alcun aiuto? Quando saremo al governo, PRIMA penseremo ai nostri, POI agli altri.", "shared_text": "", "time": "2015-08-26 11:34:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153222387843155&id=252306033154", "link": null} +{"post_id": "10153218310418155", "text": "Questi sono peggio dei clandestini.", "post_text": "Questi sono peggio dei clandestini.", "shared_text": "", "time": "2015-08-24 16:03:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153218310418155&id=252306033154", "link": null} +{"post_id": "10153218025118155", "text": "Protestano e rompono? TUTTI A CASA LORO, subito!\nP.s.: Condividi questo video sulla bacheca di qualche tuo amico \"buonista\"...", "post_text": "Protestano e rompono? TUTTI A CASA LORO, subito!\nP.s.: Condividi questo video sulla bacheca di qualche tuo amico \"buonista\"...", "shared_text": "", "time": "2015-08-24 13:41:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153218025118155&id=252306033154", "link": null} +{"post_id": "10153214234893155", "text": "Guardate che spettacolo a PINZOLO! Trentino, grazieee! Renzi, arriviamo!\nP.s. Il video traballa un po' perch\u00e9 fatto in piedi sulla benna di una RUSPA!", "post_text": "Guardate che spettacolo a PINZOLO! Trentino, grazieee! Renzi, arriviamo!\nP.s. Il video traballa un po' perch\u00e9 fatto in piedi sulla benna di una RUSPA!", "shared_text": "", "time": "2015-08-22 21:39:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153214234893155&id=252306033154", "link": null} +{"post_id": "10153209617133155", "text": "Hotel San Lorenzo in Banale, una cena fra amici si trasforma in un comizio della Lega con pi\u00f9 di 100 persone. Spettacolo il Trentino!", "post_text": "Hotel San Lorenzo in Banale, una cena fra amici si trasforma in un comizio della Lega con pi\u00f9 di 100 persone. Spettacolo il Trentino!", "shared_text": "", "time": "2015-08-20 23:10:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11232235_10153209617133155_3093117201082068679_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=3dWmpKy6uYMAQmer9kQ4UIh8BmCUiDO2xQU0lmR3agjK76v_LQtcyhOJg&_nc_ht=scontent-cdt1-1.xx&oh=e43d9c95d141b40ee0c336cee5058379&oe=5E81AECD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153209030513155", "text": "PAZZESCO!\nEcco a chi servono i presunti \"profughi\"!\nA Reggio Emilia il PD li usa come \"volontari\" alla sua festa...\nMa vi sembra una cosa NORMALE?\nSe ti GIRANO LE PALLE, fai girare questo video.", "post_text": "PAZZESCO!\nEcco a chi servono i presunti \"profughi\"!\nA Reggio Emilia il PD li usa come \"volontari\" alla sua festa...\nMa vi sembra una cosa NORMALE?\nSe ti GIRANO LE PALLE, fai girare questo video.", "shared_text": "", "time": "2015-08-20 19:30:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153209030513155&id=252306033154", "link": null} +{"post_id": "10153208401223155", "text": "Amici, fra un'oretta tocca a me!", "post_text": "Amici, fra un'oretta tocca a me!", "shared_text": "", "time": "2015-08-20 14:45:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11885001_10153208401223155_8764352066078552654_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=J8pBtgteDFMAQm94XRRTFVimmuAfY7jTIf7dr-HnYp1JzEd0eg4_23ljA&_nc_ht=scontent-cdt1-1.xx&oh=b163ba3b9c7e54e14fc35f19c472cd68&oe=5E79992A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153202429863155", "text": "Traghetto della Tirrenia da Porto Torres a Genova.\nPartenza ritardata per l'attesa di far salire a bordo un pullman di CLANDESTINI. Nella foto la sala poltrone riservata a loro, mentre tanti italiani dormiranno in terra sui materassini... Fanculo.", "post_text": "Traghetto della Tirrenia da Porto Torres a Genova.\nPartenza ritardata per l'attesa di far salire a bordo un pullman di CLANDESTINI. Nella foto la sala poltrone riservata a loro, mentre tanti italiani dormiranno in terra sui materassini... Fanculo.", "shared_text": "", "time": "2015-08-17 21:57:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11893933_10153202429863155_2098930423929815410_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=nvubMHdRq8kAQk5pKzQYh1PiLs3-4H2R65YfOg4sFqwLR2ibZo3wrGILg&_nc_ht=scontent-cdt1-1.xx&oh=5a7ba0c48f77efeb83bfc2989c2ee5b4&oe=5E49A3BF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153201406448155", "text": "Altro che Galantino, questa era gente seria...", "post_text": "Altro che Galantino, questa era gente seria...", "shared_text": "", "time": "2015-08-17 12:11:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11856290_10153201406448155_7532075055401820106_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=nEtlIATUVmcAQkS_xKzSeJcy3kEj2bBf9S0h3vFJ96UEYbEFHrHJmqKwQ&_nc_ht=scontent-cdt1-1.xx&oh=d25965223c5643d3166700a40520f10a&oe=5E8C3B65", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153200419543155", "text": "Sabato alle 20.30 vi aspetto alla festa Lega di PINZOLO, nello splendido Trentino! Passaparola!", "post_text": "Sabato alle 20.30 vi aspetto alla festa Lega di PINZOLO, nello splendido Trentino! Passaparola!", "shared_text": "", "time": "2015-08-16 22:40:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11872094_10153200414243155_6993249414263387821_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=d-g3VRnUezcAQmA5F0iggn0utAjxlObHq1m22S8CJMkbVmxsaG6nT9RMQ&_nc_ht=scontent-cdt1-1.xx&oh=4039c6816c9c78490858e4704bb01a29&oe=5E86B214", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 94 nuove foto \u2014 a Ponte di Legno.\n16 agosto 2015 alle ore 20:50 \u00b7 Ponte di Legno, Lombardia \u00b7\nAltre opzioni\nRicordi di una splendida mattina di Ferragosto. Rendere l'Italia un Paese NORMALE: INSIEME si pu\u00f2!", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 94 nuove foto \u2014 a Ponte di Legno.\n16 agosto 2015 alle ore 20:50 \u00b7 Ponte di Legno, Lombardia \u00b7\nAltre opzioni\nRicordi di una splendida mattina di Ferragosto. Rendere l'Italia un Paese NORMALE: INSIEME si pu\u00f2!", "time": "2015-08-16 21:50:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11889463_10153200302578155_1298095688838476236_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=FFmIi0oGl44AQljF4gtyYR-MLCLYVn5_Nf48kGKo5pMREuQOFKYeIwhKg&_nc_ht=scontent-cdt1-1.xx&oh=78eff80a60adbeda73b4d727931749e3&oe=5E4C3988", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153193434873155", "text": "Che programmi avete per Ferragosto? Se siete in zona e vi va di stare insieme a me e a tanti altri amici, vi aspetto come tutti gli anni a Pontedilegno, ore 21. Renzi, ARRIVIAMO!", "post_text": "Che programmi avete per Ferragosto? Se siete in zona e vi va di stare insieme a me e a tanti altri amici, vi aspetto come tutti gli anni a Pontedilegno, ore 21. Renzi, ARRIVIAMO!", "shared_text": "", "time": "2015-08-13 20:01:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153193434873155&id=252306033154", "link": null} +{"post_id": "10153193518258155", "text": "Mia intervista di ieri sera al TG1. Commenti? Proposte? Suggerimenti?", "post_text": "Mia intervista di ieri sera al TG1. Commenti? Proposte? Suggerimenti?", "shared_text": "", "time": "2015-08-13 19:13:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153193518258155&id=252306033154", "link": null} +{"post_id": "10153193258293155", "text": "Le richieste dei cosiddetti \"profughi\": smartphone di ultima generazione, WI-FI, Skype e TV in tutte le camere... Agli italiani in difficolt\u00e0? Un calcio in culo! Ma nooooo, sono invenzioni di quei razzisti della Lega!\nP.s. Condividete il video sulla bacheca di qualche vostro amico \"buonista\"...", "post_text": "Le richieste dei cosiddetti \"profughi\": smartphone di ultima generazione, WI-FI, Skype e TV in tutte le camere... Agli italiani in difficolt\u00e0? Un calcio in culo! Ma nooooo, sono invenzioni di quei razzisti della Lega!\nP.s. Condividete il video sulla bacheca di qualche vostro amico \"buonista\"...", "shared_text": "", "time": "2015-08-13 16:54:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153193258293155&id=252306033154", "link": null} +{"post_id": "10153191216593155", "text": "La Sicilia si meriterebbe qualcosa di meglio rispetto a CROCETTA... o sbaglio?", "post_text": "La Sicilia si meriterebbe qualcosa di meglio rispetto a CROCETTA... o sbaglio?", "shared_text": "", "time": "2015-08-12 16:45:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153191216593155&id=252306033154", "link": null} +{"post_id": "10153188700928155", "text": "ATTENTI! Non \u00e8 vero che i terremotati emiliani stanno in roulotte da 3 anni mentre per gli immigrati ci sono comodi hotel, \u00e8 SALVINI che \u00e8 \"populista\"...", "post_text": "ATTENTI! Non \u00e8 vero che i terremotati emiliani stanno in roulotte da 3 anni mentre per gli immigrati ci sono comodi hotel, \u00e8 SALVINI che \u00e8 \"populista\"...", "shared_text": "", "time": "2015-08-11 12:16:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153188700928155&id=252306033154", "link": null} +{"post_id": "10153183223478155", "text": "Toscana, Francesco dorme in AUTO, i cosiddetti \"profughi\" in una villa di LUSSO! Basta UMILIARE i cittadini italiani, la pazienza sta finendo!", "post_text": "Toscana, Francesco dorme in AUTO, i cosiddetti \"profughi\" in una villa di LUSSO! Basta UMILIARE i cittadini italiani, la pazienza sta finendo!", "shared_text": "", "time": "2015-08-09 18:35:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153183223478155&id=252306033154", "link": null} +{"post_id": "10153180169918155", "text": "Egoisticamente potrei dire: ho preso il 50% in Veneto, ho vinto in Liguria, governo la Lombardia, ho il 20% in Toscana, la Lega ha 300 sindaci... me ne sto al Nord, e chissenefrega degli altri.\nMa non farei un\u2026 Altro ragionamento intelligente. L'Italia o riparte tutta insieme o non va da nessuna parte.\nP.s.: se Saviano ha voglia di andare oltre certi squallidi slogan e approfondire, lo invito nel mio prossimo viaggio al Sud.", "post_text": "Egoisticamente potrei dire: ho preso il 50% in Veneto, ho vinto in Liguria, governo la Lombardia, ho il 20% in Toscana, la Lega ha 300 sindaci... me ne sto al Nord, e chissenefrega degli altri.\nMa non farei un\u2026 Altro ragionamento intelligente. L'Italia o riparte tutta insieme o non va da nessuna parte.\nP.s.: se Saviano ha voglia di andare oltre certi squallidi slogan e approfondire, lo invito nel mio prossimo viaggio al Sud.", "shared_text": "", "time": "2015-08-08 12:06:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153180169918155&id=252306033154", "link": null} +{"post_id": "10153178579653155", "text": "Io ORGOGLIOSO di stare in mezzo alla gente, l'onorevole renziana (sbugiardata) forse preferisce stare in mezzo ai clandestini!", "post_text": "Io ORGOGLIOSO di stare in mezzo alla gente, l'onorevole renziana (sbugiardata) forse preferisce stare in mezzo ai clandestini!", "shared_text": "", "time": "2015-08-07 18:53:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153178579653155&id=252306033154", "link": null} +{"post_id": "10153177966728155", "text": "Clandestini a Ventimiglia. I residenti, invasi dalla sera alla mattina, non ce la fanno pi\u00f9. Renzi e i suoi ministri? Dormono e se ne fregano. Da Nord a Sud ogni giorno si creano situazioni come questa, secondo voi \u00e8 da Paese NORMALE???", "post_text": "Clandestini a Ventimiglia. I residenti, invasi dalla sera alla mattina, non ce la fanno pi\u00f9. Renzi e i suoi ministri? Dormono e se ne fregano. Da Nord a Sud ogni giorno si creano situazioni come questa, secondo voi \u00e8 da Paese NORMALE???", "shared_text": "", "time": "2015-08-07 12:53:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153177966728155&id=252306033154", "link": null} +{"post_id": "10153175522813155", "text": "Se c'\u00e8 un euro nelle casse di un comune amministrato dalla Lega, quell'euro va a un cittadino ITALIANO! Il nostro obiettivo \u00e8 SBARCHI ZERO: visto che la signora del PD dice che i \"migranti\" sono soprattutto qui \"in transito\", lei quanti ne fa \"transitare\" a casa sua???", "post_text": "Se c'\u00e8 un euro nelle casse di un comune amministrato dalla Lega, quell'euro va a un cittadino ITALIANO! Il nostro obiettivo \u00e8 SBARCHI ZERO: visto che la signora del PD dice che i \"migranti\" sono soprattutto qui \"in transito\", lei quanti ne fa \"transitare\" a casa sua???", "shared_text": "", "time": "2015-08-06 16:36:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153175522813155&id=252306033154", "link": null} +{"post_id": "10153174990443155", "text": "Donazione di plasma all'AVIS, fatta!\nA chi andr\u00e0 il mio sangue non lo so, mi basta sapere che aiuter\u00f2 qualcuno.\nSpero che almeno su questo non ci sia chi fa polemica...", "post_text": "Donazione di plasma all'AVIS, fatta!\nA chi andr\u00e0 il mio sangue non lo so, mi basta sapere che aiuter\u00f2 qualcuno.\nSpero che almeno su questo non ci sia chi fa polemica...", "shared_text": "", "time": "2015-08-06 11:05:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/11038266_10153174990443155_4883339263990969829_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=8zwT-rdkFVgAQm8RZ1dHPvGQutyvMcxJlRK8oEeCWqvrd_keNDXzr10iQ&_nc_ht=scontent-cdt1-1.xx&oh=47789456f1a903e400262aaada0631a8&oe=5E8D0753", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153173291023155", "text": "Un minuto di delirio di un kompagno...", "post_text": "Un minuto di delirio di un kompagno...", "shared_text": "", "time": "2015-08-05 17:07:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153173291023155&id=252306033154", "link": null} +{"post_id": "10153172525428155", "text": "La \"tolleranza zero\" la vedo bene verso ALFANO! Ridicolo che il governo pi\u00f9 incapace della storia sul fronte dell'ordine pubblico se la prenda con tutte le discoteche.", "post_text": "La \"tolleranza zero\" la vedo bene verso ALFANO! Ridicolo che il governo pi\u00f9 incapace della storia sul fronte dell'ordine pubblico se la prenda con tutte le discoteche.", "shared_text": "", "time": "2015-08-05 12:13:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/11828777_10153172525428155_6079820896004290766_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=id1UVFAqb3UAQlrxjdpi4udbnbH8s3vVKytDrJnUkxcuVuQZd6k1t9mvQ&_nc_ht=scontent-cdt1-1.xx&oh=1b6dd6e103244a5cc0321ea877283000&oe=5E892B4A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153171165493155", "text": "Al campo rom, con Mercedes di lusso. Come le comprate? Risposta: \"Andiamo a fare il mercato e a vendere i vestiti\".\nE intanto noi tutti, fessi, gli paghiamo le bollette perch\u00e9 sono ufficialmente \"poveri\". Esagero a dire RUSPA???", "post_text": "Al campo rom, con Mercedes di lusso. Come le comprate? Risposta: \"Andiamo a fare il mercato e a vendere i vestiti\".\nE intanto noi tutti, fessi, gli paghiamo le bollette perch\u00e9 sono ufficialmente \"poveri\". Esagero a dire RUSPA???", "shared_text": "", "time": "2015-08-04 20:16:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153171165493155&id=252306033154", "link": null} +{"post_id": "10153170398628155", "text": "Io mi VERGOGNO di uno Stato in cui un pap\u00e0 italiano si d\u00e0 fuoco per disperazione e muore, mentre ci sono immigrati, mantenuti da noi, che rifiutano gli spaghetti al pomodoro perch\u00e9 non gli piacciono. NON VEDO L'ORA DI ESSERE AL GOVERNO PER CAMBIARE QUESTO SCHIFO!", "post_text": "Io mi VERGOGNO di uno Stato in cui un pap\u00e0 italiano si d\u00e0 fuoco per disperazione e muore, mentre ci sono immigrati, mantenuti da noi, che rifiutano gli spaghetti al pomodoro perch\u00e9 non gli piacciono. NON VEDO L'ORA DI ESSERE AL GOVERNO PER CAMBIARE QUESTO SCHIFO!", "shared_text": "", "time": "2015-08-04 12:41:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153170398628155&id=252306033154", "link": null} +{"post_id": "10153166850193155", "text": "Lomazzo, provincia di Como.\nDa una parte, con la Lega, una marea di gente perbene.....", "post_text": "Lomazzo, provincia di Como.\nDa una parte, con la Lega, una marea di gente perbene.....", "shared_text": "", "time": "2015-08-02 21:31:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11792187_10153166850193155_9048588074659747441_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=qWDW_yFE4McAQlm2rfkWFAXkbF7mB4-a7erB5jdyoTnROb06-75-aPrrg&_nc_ht=scontent-cdt1-1.xx&oh=e136071cda67c326d70ff4aa54b9c46c&oe=5E511A79", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153156441503155", "text": "Gran finale della festa Lega di Cervia con il nostro Super Luca Zaia!\nAl PD lasciamo Crocetta...", "post_text": "Gran finale della festa Lega di Cervia con il nostro Super Luca Zaia!\nAl PD lasciamo Crocetta...", "shared_text": "", "time": "2015-07-28 23:05:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s370x247/11807575_10153156441503155_2194994273486109804_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=ttKy20s_mw4AQlY2a-Ra9CACokh35C71zhsxBmJL2lcAJMndslbLjEI7w&_nc_ht=scontent-cdt1-1.xx&oh=4c87fbda44ede080d4dfe76e6b66f987&oe=5E7F455C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153155483458155", "text": "Con alcuni PESCATORI di vongole a Cattolica.\nSe non cambieranno le folli regole europee (che prevedono una taglia minima di 25 millimetri per ogni vongola!) rischiano di rimanere ferme oltre 700 barche, e di saltare 2.000 posti di lavoro.\nLa Lega c'\u00e8, Renzi dov'\u00e8???", "post_text": "Con alcuni PESCATORI di vongole a Cattolica.\nSe non cambieranno le folli regole europee (che prevedono una taglia minima di 25 millimetri per ogni vongola!) rischiano di rimanere ferme oltre 700 barche, e di saltare 2.000 posti di lavoro.\nLa Lega c'\u00e8, Renzi dov'\u00e8???", "shared_text": "", "time": "2015-07-28 17:41:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11741095_10153155483458155_3040322592912633421_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=bZX-uThgctgAQnRIFADQPdi2aer3jeo1TcM8Ug2J7CktLFwSsVLJhliOQ&_nc_ht=scontent-cdt1-1.xx&oh=625108491f12170f6074b7a2b5ee0f62&oe=5E4A8411", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153153049943155", "text": "Una trentina di presunti profughi bloccano le strade a Este, in Veneto: cibo e vestiti non gli piacciono, e fa troppo CALDO... Devono essere i famosi \"rifugiati climatici\": perch\u00e9 non li inviamo tutti a casa di Renzi, Alfano e Boldrini??? Guarda e condividi questo video, se non ti fa troppo incazzare.", "post_text": "Una trentina di presunti profughi bloccano le strade a Este, in Veneto: cibo e vestiti non gli piacciono, e fa troppo CALDO... Devono essere i famosi \"rifugiati climatici\": perch\u00e9 non li inviamo tutti a casa di Renzi, Alfano e Boldrini??? Guarda e condividi questo video, se non ti fa troppo incazzare.", "shared_text": "", "time": "2015-07-27 20:43:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153153049943155&id=252306033154", "link": null} +{"post_id": "10153141685323155", "text": "Ecco il video dell\u2019intervista con Gianni Riotta nello splendido Castello Sforzesco della mia Milano.\nSe non l'avete vista e vi va di dare un'occhiata, poi leggo volentieri i vostri commenti\u2026 E se vi piace, condividete!", "post_text": "Ecco il video dell\u2019intervista con Gianni Riotta nello splendido Castello Sforzesco della mia Milano.\nSe non l'avete vista e vi va di dare un'occhiata, poi leggo volentieri i vostri commenti\u2026 E se vi piace, condividete!", "shared_text": "", "time": "2015-07-22 20:14:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153141685323155&id=252306033154", "link": null} +{"post_id": "10153137231968155", "text": "La \"rivoluzione\" di Renzi?\nPromette di togliere la tassa sulla prima casa, che hanno messo loro.\nEliminare l'IMU sui terreni agricoli, che hanno introdotto loro.\nAbbassare Irpef, Ires e Iva, che hanno aumentato loro.\nPi\u00f9 che una rivoluzione, a me sembra l'ennesima \"renzata\" di un chiacchierone!", "post_text": "La \"rivoluzione\" di Renzi?\nPromette di togliere la tassa sulla prima casa, che hanno messo loro.\nEliminare l'IMU sui terreni agricoli, che hanno introdotto loro.\nAbbassare Irpef, Ires e Iva, che hanno aumentato loro.\nPi\u00f9 che una rivoluzione, a me sembra l'ennesima \"renzata\" di un chiacchierone!", "shared_text": "", "time": "2015-07-20 19:10:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153137231968155&id=252306033154", "link": null} +{"post_id": "10153134730728155", "text": "Orgoglioso dei Sindaci e dei cittadini che in tutta Italia protestano contro l\u2019invasione e difendono le loro citt\u00e0.\nCONDIVIDIAMO: chi non si rassegna, VINCE!", "post_text": "Orgoglioso dei Sindaci e dei cittadini che in tutta Italia protestano contro l\u2019invasione e difendono le loro citt\u00e0.\nCONDIVIDIAMO: chi non si rassegna, VINCE!", "shared_text": "", "time": "2015-07-19 19:19:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153134730728155&id=252306033154", "link": null} +{"post_id": "10153133655018155", "text": "Per combattere il caldo, formaggio alla piastra e pistola ad acqua...", "post_text": "Per combattere il caldo, formaggio alla piastra e pistola ad acqua...", "shared_text": "", "time": "2015-07-19 14:51:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/1941518_10153133655018155_6672149730338501463_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=GL47Jux3f8MAQnL_d1rwtt63LIBkGVrdcL_WlN2r9cLyTkITOIXxm13LA&_nc_ht=scontent-cdt1-1.xx&oh=3406113af82b6a065f221365f04ebe9d&oe=5E798ECF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153129627488155", "text": "Insieme al grande Luca Zaia, presente fin da subito al fianco dei suoi concittadini, in quello che rimane della settecentesca Villa Fini.\nPerch\u00e9 secondo voi le Tiv\u00f9 e le Radio nazionali non hanno parlato di questa tragedia, con un morto, 90 feriti e 400 persone fuori di casa?", "post_text": "Insieme al grande Luca Zaia, presente fin da subito al fianco dei suoi concittadini, in quello che rimane della settecentesca Villa Fini.\nPerch\u00e9 secondo voi le Tiv\u00f9 e le Radio nazionali non hanno parlato di questa tragedia, con un morto, 90 feriti e 400 persone fuori di casa?", "shared_text": "", "time": "2015-07-18 18:58:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11713889_10153129627488155_5316758982117843219_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=Ics9RIhd2M8AQkjEGKFHqO6bM75NEmfZCzYDPIj8zPlxEHOd6qmcR2ZIA&_nc_ht=scontent-cdt1-1.xx&oh=48ed35f05de50c8c647d67ca87ef8ca0&oe=5E7919F8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153129044173155", "text": "Veneto, dopo il tornado a Cazzago di Pianiga.\nSullo sfondo lo stadio (ormai ex) e davanti quel che resta di decine di alberi secolari sradicati e lanciati dal vento come proiettili.\n90 milioni di euro di danni, fino ad ora il governo ne ha dati solo 2!!!", "post_text": "Veneto, dopo il tornado a Cazzago di Pianiga.\nSullo sfondo lo stadio (ormai ex) e davanti quel che resta di decine di alberi secolari sradicati e lanciati dal vento come proiettili.\n90 milioni di euro di danni, fino ad ora il governo ne ha dati solo 2!!!", "shared_text": "", "time": "2015-07-18 18:06:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11023329_10153129044173155_6028756033736406426_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=xFumrWk0mO4AQmhGPmnT-HXCvUZlaa-gOCVPL5LF5E16UyViWkLUJcqQA&_nc_ht=scontent-cdt1-1.xx&oh=63128041e73f5480f415973661a47cf5&oe=5E879F3F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153127476853155", "text": "La signora Kyenge vuole accogliere tutti i finti profughi del mondo?\nLo faccia a casa sua, ma non a SPESE DEGLI ITALIANI!", "post_text": "La signora Kyenge vuole accogliere tutti i finti profughi del mondo?\nLo faccia a casa sua, ma non a SPESE DEGLI ITALIANI!", "shared_text": "", "time": "2015-07-18 12:33:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153127476853155&id=252306033154", "link": null} +{"post_id": "10153125031088155", "text": "Italiani alla fame, clandestini con l'iPhone trattati come graditi ospiti dallo Stato. Qualcuno vuole lo scontro sociale?", "post_text": "Italiani alla fame, clandestini con l'iPhone trattati come graditi ospiti dallo Stato. Qualcuno vuole lo scontro sociale?", "shared_text": "", "time": "2015-07-17 19:41:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153125031088155&id=252306033154", "link": null} +{"post_id": "10153124058878155", "text": "Amici Veneti, sabato torno da voi! Visiter\u00f2 i luoghi devastati dal tornado (di cui tv e giornali si sono gi\u00e0 dimenticati), sar\u00f2 in provincia di Treviso per sostenere i residenti contro l'invasione clandestina (grazie Renzi-Alfano!) e alla sera alla Festa Lega di Oppeano (VR).\nVi aspetto!", "post_text": "Amici Veneti, sabato torno da voi! Visiter\u00f2 i luoghi devastati dal tornado (di cui tv e giornali si sono gi\u00e0 dimenticati), sar\u00f2 in provincia di Treviso per sostenere i residenti contro l'invasione clandestina (grazie Renzi-Alfano!) e alla sera alla Festa Lega di Oppeano (VR).\nVi aspetto!", "shared_text": "", "time": "2015-07-17 09:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11696644_10153124057928155_2433812848453330096_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=M8f1N3f0YkYAQmBVQqLy5NPoeBlWXZ_CZXeQlXNkmyltfaQUPoUG_XrTQ&_nc_ht=scontent-cdt1-1.xx&oh=2bde34011997477a96719dc9f5991e1f&oe=5E813F07", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153122712848155", "text": "Bellissima sala, strapiena con gente fuori, oggi a Novara con la Lega!\nVuoi vedere che anche qui si sono stancati del PD?", "post_text": "Bellissima sala, strapiena con gente fuori, oggi a Novara con la Lega!\nVuoi vedere che anche qui si sono stancati del PD?", "shared_text": "", "time": "2015-07-16 18:43:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11144443_10153122712848155_7373204510914509106_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=ryxiDQVwCwMAQmqj2PzxGSAyZ3upkZXXlWclkx7HWgx61zPUKbj9LCXQA&_nc_ht=scontent-cdt1-1.xx&oh=8bb427fb6299d0cdfae5ae814d37ee4f&oe=5E8CCB5D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153122509048155", "text": "Guarda e condividi. Ecco le situazioni create dal governo Renzi-Alfano dei \"finti buoni\". E sabato nel tardo pomeriggio a Quinto di Treviso ci vado di persona, anche per dare solidariet\u00e0 alle famiglie dei residenti: il RAZZISMO verso gli italiani mi fa girare le PALLE. E a voi?", "post_text": "Guarda e condividi. Ecco le situazioni create dal governo Renzi-Alfano dei \"finti buoni\". E sabato nel tardo pomeriggio a Quinto di Treviso ci vado di persona, anche per dare solidariet\u00e0 alle famiglie dei residenti: il RAZZISMO verso gli italiani mi fa girare le PALLE. E a voi?", "shared_text": "", "time": "2015-07-16 16:35:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153122509048155&id=252306033154", "link": null} +{"post_id": "10153120817798155", "text": "Anche io ho messo MI PIACE alla Pagina della Cancro Primo Aiuto Onlus.\nSolidariet\u00e0 concreta per migliaia di malati, e niente chiacchiere.\nCLICCA sul SEGUENTE link e metti \"MI PIACE\": https://www.facebook.com/pages/Cancro-Primo-Aiuto-Onlus/341370057559", "post_text": "Anche io ho messo MI PIACE alla Pagina della Cancro Primo Aiuto Onlus.\nSolidariet\u00e0 concreta per migliaia di malati, e niente chiacchiere.\nCLICCA sul SEGUENTE link e metti \"MI PIACE\": https://www.facebook.com/pages/Cancro-Primo-Aiuto-Onlus/341370057559", "shared_text": "", "time": "2015-07-15 18:15:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11234969_10153120817798155_8070618663372586991_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=Mig_0i4we0gAQn2rUBO3DHnKXWlUCJiKS7Dgy5-rPqIMFqsJqCvRv85fA&_nc_ht=scontent-cdt1-1.xx&oh=cf2a4b6b6fdac9ecb26d78a5f3c6675b&oe=5E8708A0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153120484908155", "text": "Legge Fornero, rapporti con la Russia, aiuto al Veneto, grazia per Antonio Monella, federalismo, Europa da cambiare, aziende che chiudono, immigrazione. Ho portato al Presidente Mattarella le vostre voci, al lavoro!", "post_text": "Legge Fornero, rapporti con la Russia, aiuto al Veneto, grazia per Antonio Monella, federalismo, Europa da cambiare, aziende che chiudono, immigrazione. Ho portato al Presidente Mattarella le vostre voci, al lavoro!", "shared_text": "", "time": "2015-07-15 14:37:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153120484908155&id=252306033154", "link": null} +{"post_id": "10153120362623155", "text": "Riempire gli alberghi, gli agriturismi e gli ostelli di mezza Italia di immigrati CLANDESTINI \u00e8 una PRESA IN GIRO nei confronti di milioni di cittadini che sono sotto la soglia di povert\u00e0.\nDicono che siamo \u201cpopulisti e razzisti\u201d? Ma chi se ne frega, vengono prima gli italiani in difficolt\u00e0!", "post_text": "Riempire gli alberghi, gli agriturismi e gli ostelli di mezza Italia di immigrati CLANDESTINI \u00e8 una PRESA IN GIRO nei confronti di milioni di cittadini che sono sotto la soglia di povert\u00e0.\nDicono che siamo \u201cpopulisti e razzisti\u201d? Ma chi se ne frega, vengono prima gli italiani in difficolt\u00e0!", "shared_text": "", "time": "2015-07-15 13:11:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153120362623155&id=252306033154", "link": null} +{"post_id": "10153119908683155", "text": "Buond\u00ec Amici, si vola a Roma leggendo un nuovo romanzo dell'ottimo Vitali.\nStasera avr\u00f2 due incontri bergamaschi, alle 20 alla Festa Lega di Bonate Sopra e alle 21.30 a quella di Treviglio: vi aspetto!\nP.s. Odio il caldo.....", "post_text": "Buond\u00ec Amici, si vola a Roma leggendo un nuovo romanzo dell'ottimo Vitali.\nStasera avr\u00f2 due incontri bergamaschi, alle 20 alla Festa Lega di Bonate Sopra e alle 21.30 a quella di Treviglio: vi aspetto!\nP.s. Odio il caldo.....", "shared_text": "", "time": "2015-07-15 07:52:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11722172_10153119908683155_2223181406107288539_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=gFoJ9Cp-kyUAQkN67m8VkLXJuL_rqQ9OCsvaP_QLHB45VM_ROFO0NgZLA&_nc_ht=scontent-cdt1-1.xx&oh=e392e23e40972fe4d4b498a661d09f11&oe=5E481514", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153119068658155", "text": "Splendida cena con 300 persone a Viareggio.\nE la sorpresa del grande ciclista Alessandro Petacchi che mi ha regalato la sua Maglia Verde, vinta al Tour de France del 2010.\nSi corre!!!", "post_text": "Splendida cena con 300 persone a Viareggio.\nE la sorpresa del grande ciclista Alessandro Petacchi che mi ha regalato la sua Maglia Verde, vinta al Tour de France del 2010.\nSi corre!!!", "shared_text": "", "time": "2015-07-14 22:11:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11717357_10153119068658155_7939778460374590379_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=rSaPPjE2vnsAQnOsERjE0PzvrhC3zIgp4o5_Kh9JVxbxVR3rYprCrezQQ&_nc_ht=scontent-cdt1-1.xx&oh=7d87530f760bd4f443fffe46d43133fa&oe=5E462057", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153118929453155", "text": "Questa \u00e8 l'Europa fondata sull'interesse delle BANCHE e delle MULTINAZIONALI. Per anni ci hanno detto che \"piccolo \u00e8 brutto\". Che per essere competitivi avevamo bisogno del grande centro commerciale, delle\u2026 Altro grandi banche, delle grandi catene straniere.\nE intanto stanno uccidendo la nostra storia, la nostra impresa e i nostri posti di lavoro.\nFaremo di tutto per difendere il \"saper fare\" italiano, ma serve un nuovo sistema fiscale per pagare MENO TASSE. Altro che dormire... Renzi, svegliaaaa!", "post_text": "Questa \u00e8 l'Europa fondata sull'interesse delle BANCHE e delle MULTINAZIONALI. Per anni ci hanno detto che \"piccolo \u00e8 brutto\". Che per essere competitivi avevamo bisogno del grande centro commerciale, delle\u2026 Altro grandi banche, delle grandi catene straniere.\nE intanto stanno uccidendo la nostra storia, la nostra impresa e i nostri posti di lavoro.\nFaremo di tutto per difendere il \"saper fare\" italiano, ma serve un nuovo sistema fiscale per pagare MENO TASSE. Altro che dormire... Renzi, svegliaaaa!", "shared_text": "", "time": "2015-07-14 20:54:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153118929453155&id=252306033154", "link": null} +{"post_id": "10153118436763155", "text": "Gruppi di CLANDESTINI ospitati in un residence a Eraclea Mare, cittadina turistica sul litorale veneto, si sono presi a sassate tra la rabbia dei residenti e dei turisti impauriti. Nel frattempo i commercianti\u2026 Altro e gli operatori turistici esasperati denunciano gravi perdite nella loro attivit\u00e0.\nL'INVASIONE continua: altri soldi per gli scafisti, altri affari per chi ci mangia, altri problemi per gli italiani onesti che vogliono solo lavorare in pace.\nMa a Renzi va bene cos\u00ec\u2026 LI PAGA LUI I DANNI?", "post_text": "Gruppi di CLANDESTINI ospitati in un residence a Eraclea Mare, cittadina turistica sul litorale veneto, si sono presi a sassate tra la rabbia dei residenti e dei turisti impauriti. Nel frattempo i commercianti\u2026 Altro e gli operatori turistici esasperati denunciano gravi perdite nella loro attivit\u00e0.\nL'INVASIONE continua: altri soldi per gli scafisti, altri affari per chi ci mangia, altri problemi per gli italiani onesti che vogliono solo lavorare in pace.\nMa a Renzi va bene cos\u00ec\u2026 LI PAGA LUI I DANNI?", "shared_text": "", "time": "2015-07-14 16:50:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153118436763155&id=252306033154", "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-07-13 19:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p160x160/11011268_10153116931778155_6763734575783521987_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=sKuvVvV7zVgAQlApy0Y0NFuAmkX0A8tnbakBGMb3Qwi_K3G9XwAaGhpEQ&_nc_ht=scontent-cdt1-1.xx&oh=3f15f0b0b25c5197c15fca7be5c18965&oe=5E4CA983", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153116260618155", "text": "Ho incontrato a Ferrara una signora che stava piangendo: ha il marito disoccupato, una pensione da fame e fra 10 giorni rischia di perdere la casa perch\u00e9 non riesce a pagare le rate del mutuo.\nPer il\u2026 Altro clandestino che sbarca questa mattina e non scappa da nessuna guerra, c\u2019\u00e8 la casa, l\u2019albergo o l\u2019agriturismo.\nPer lei, cittadina italiana che paga le tasse da decine di anni, due dita negli occhi.\nLa nostra EMERGENZA sono gli italiani in difficolt\u00e0, tutto il resto viene dopo!", "post_text": "Ho incontrato a Ferrara una signora che stava piangendo: ha il marito disoccupato, una pensione da fame e fra 10 giorni rischia di perdere la casa perch\u00e9 non riesce a pagare le rate del mutuo.\nPer il\u2026 Altro clandestino che sbarca questa mattina e non scappa da nessuna guerra, c\u2019\u00e8 la casa, l\u2019albergo o l\u2019agriturismo.\nPer lei, cittadina italiana che paga le tasse da decine di anni, due dita negli occhi.\nLa nostra EMERGENZA sono gli italiani in difficolt\u00e0, tutto il resto viene dopo!", "shared_text": "", "time": "2015-07-13 13:07:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153116260618155&id=252306033154", "link": null} +{"post_id": "10153115104733155", "text": "Pienone pazzesco per la Lega a Bulgarograsso, vicino a Como!\nE anche stasera tantissimi bambini, il Futuro cresce.\nRenzino, stiamo arrivandooooo!", "post_text": "Pienone pazzesco per la Lega a Bulgarograsso, vicino a Como!\nE anche stasera tantissimi bambini, il Futuro cresce.\nRenzino, stiamo arrivandooooo!", "shared_text": "", "time": "2015-07-12 21:28:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11709741_10153115104733155_6148228190681267925_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=O4gdeZWt-RwAQlDc5alqvHtrZT6frI8orqRlYuFT_5LCZvTAYC6rMjlvQ&_nc_ht=scontent-cdt1-1.xx&oh=9edfb950967917a4be74b94df64fcad2&oe=5E7F4BC2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153112344528155", "text": "L\u2019Inps certifica che i poveri in Italia sono 15 MILIONI.\nCittadini che non possono permettersi un\u2019alimentazione adeguata o non riescono a far fronte a spese impreviste, anche di pochi euro.\nNel frattempo la priorit\u00e0 del governo italiano \u00e8 trovare l'albergo a migliaia di CLANDESTINI.\nChe dite, Renzi non si VERGOGNA almeno un po\u2019?", "post_text": "L\u2019Inps certifica che i poveri in Italia sono 15 MILIONI.\nCittadini che non possono permettersi un\u2019alimentazione adeguata o non riescono a far fronte a spese impreviste, anche di pochi euro.\nNel frattempo la priorit\u00e0 del governo italiano \u00e8 trovare l'albergo a migliaia di CLANDESTINI.\nChe dite, Renzi non si VERGOGNA almeno un po\u2019?", "shared_text": "", "time": "2015-07-11 15:19:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153112344528155&id=252306033154", "link": null} +{"post_id": "10153110103558155", "text": "Vi aspetto questa sera a Quartesana (Villa Pignara), in provincia di Ferrara, alla Festa della Lega e in collegamento con LA 7 alle 20.30. E la ruspa va!", "post_text": "Vi aspetto questa sera a Quartesana (Villa Pignara), in provincia di Ferrara, alla Festa della Lega e in collegamento con LA 7 alle 20.30. E la ruspa va!", "shared_text": "", "time": "2015-07-10 09:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11731652_10153110103308155_7099432742664853925_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=YKz5WLVY5DgAQntIHPDVmUF9pRV2lq-uYmtoV29ozWu6n8JrGZdDVydww&_nc_ht=scontent-cdt1-1.xx&oh=223182fca63fb2545bd3281f6820b280&oe=5E823EF0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153108197728155", "text": "Il mio intervento al Convegno \u201cEuro o Libert\u00e0?\u201d. Qualche anno fa ci davano dei \u201cmatti\u201d perch\u00e9 dicevamo \u201cBASTA EURO\u201d. Ora da RICOVERARE sono quelli che difendono ancora la moneta della povert\u00e0 e della DISOCCUPAZIONE.\nLa Libert\u00e0 viene prima di tutto. Rassegnarsi mai, cambieremo l\u2019Italia e cambieremo l\u2019Europa!", "post_text": "Il mio intervento al Convegno \u201cEuro o Libert\u00e0?\u201d. Qualche anno fa ci davano dei \u201cmatti\u201d perch\u00e9 dicevamo \u201cBASTA EURO\u201d. Ora da RICOVERARE sono quelli che difendono ancora la moneta della povert\u00e0 e della DISOCCUPAZIONE.\nLa Libert\u00e0 viene prima di tutto. Rassegnarsi mai, cambieremo l\u2019Italia e cambieremo l\u2019Europa!", "shared_text": "", "time": "2015-07-09 13:25:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153108197728155&id=252306033154", "link": null} +{"post_id": "10153106971108155", "text": "Migliaia di FIRME FALSE avrebbero consentito l'elezione di Chiamparino: i giudici del TAR riconoscano ai Piemontesi il diritto di tornare a VOTARE e a scegliere liberamente il futuro della loro terra!\nO forse qualcuno vuol farci credere che una firma falsa, se \u00e8 di sinistra, diventa meno falsa?", "post_text": "Migliaia di FIRME FALSE avrebbero consentito l'elezione di Chiamparino: i giudici del TAR riconoscano ai Piemontesi il diritto di tornare a VOTARE e a scegliere liberamente il futuro della loro terra!\nO forse qualcuno vuol farci credere che una firma falsa, se \u00e8 di sinistra, diventa meno falsa?", "shared_text": "", "time": "2015-07-08 20:10:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153106971108155&id=252306033154", "link": null} +{"post_id": "10153106651878155", "text": "Amici, questa mattina a Strasburgo ho portato il vostro \u201csaluto\u201d alla Merkel e a Renzi.\nChe dite, messaggio ricevuto?", "post_text": "Amici, questa mattina a Strasburgo ho portato il vostro \u201csaluto\u201d alla Merkel e a Renzi.\nChe dite, messaggio ricevuto?", "shared_text": "", "time": "2015-07-08 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153106651878155&id=252306033154", "link": null} +{"post_id": "10153106205023155", "text": "Il mio intervento di ieri sera a Ballar\u00f2. Credo di aver parlato chiaro, che dite? Non moriremo renziani, n\u00e9 schiavi dell'Europa! Se vi piace, condividete!", "post_text": "Il mio intervento di ieri sera a Ballar\u00f2. Credo di aver parlato chiaro, che dite? Non moriremo renziani, n\u00e9 schiavi dell'Europa! Se vi piace, condividete!", "shared_text": "", "time": "2015-07-08 12:07:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153106205023155&id=252306033154", "link": null} +{"post_id": "10153104981078155", "text": "Dialoghiamo, dialoghiamo...\nAltro che dialogo, il fanatismo islamico si combatte!\nCONDIVIDIAMO questo video, alla faccia di buonisti, ipocriti e fessi di casa nostra!", "post_text": "Dialoghiamo, dialoghiamo...\nAltro che dialogo, il fanatismo islamico si combatte!\nCONDIVIDIAMO questo video, alla faccia di buonisti, ipocriti e fessi di casa nostra!", "shared_text": "", "time": "2015-07-07 21:11:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153104981078155&id=252306033154", "link": null} +{"post_id": "10153104149363155", "text": "L\u2019Europa cos\u00ec non va. Bisogna fermarsi, riscrivere tutto e RIPARTIRE.\nIl nostro programma: ridare dignit\u00e0 agli italiani e a tutti i popoli d\u2019Europa, difendere il nostro LAVORO, controllare la nostra moneta e i nostri confini.\nQuello di Renzi? Fare il cagnolino della Merkel e tirare avanti.", "post_text": "L\u2019Europa cos\u00ec non va. Bisogna fermarsi, riscrivere tutto e RIPARTIRE.\nIl nostro programma: ridare dignit\u00e0 agli italiani e a tutti i popoli d\u2019Europa, difendere il nostro LAVORO, controllare la nostra moneta e i nostri confini.\nQuello di Renzi? Fare il cagnolino della Merkel e tirare avanti.", "shared_text": "", "time": "2015-07-07 12:19:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153104149363155&id=252306033154", "link": null} +{"post_id": "10153103291918155", "text": "Pi\u00f9 di 700 persone alla cena per Radio Padania a Castelcovati (Brescia), bellissima serata!\nNotte Amici, almeno i Sogni per ora Renzi non li tassa.", "post_text": "Pi\u00f9 di 700 persone alla cena per Radio Padania a Castelcovati (Brescia), bellissima serata!\nNotte Amici, almeno i Sogni per ora Renzi non li tassa.", "shared_text": "", "time": "2015-07-07 00:09:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11416337_10153103291918155_2433763766751537308_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=t3jfKn6OMFcAQl9_Hj-3oUcR7MIzdKC5zViYAwVD1xIAzV8X0p-gOjgyw&_nc_ht=scontent-cdt1-1.xx&oh=71e6246c8aa3b7ea091c56005612b4d6&oe=5E8C4169", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153103020178155", "text": "Ragazzi, trovate ancora qualcuno che difende l'Europa e l'Euro?\nUna moneta unica per 19 economie diverse non funziona, \u00e8 un esperimento genetico FALLITO.\nO si cambiano tutti i Trattati o facciamo da soli, l'Italia non ha niente da imparare da nessuno!", "post_text": "Ragazzi, trovate ancora qualcuno che difende l'Europa e l'Euro?\nUna moneta unica per 19 economie diverse non funziona, \u00e8 un esperimento genetico FALLITO.\nO si cambiano tutti i Trattati o facciamo da soli, l'Italia non ha niente da imparare da nessuno!", "shared_text": "", "time": "2015-07-06 22:11:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153103020178155&id=252306033154", "link": null} +{"post_id": "10153101978358155", "text": "In Italia pu\u00f2 tornare il LAVORO? S\u00ec, ma senza un Fisco assassino, vincoli europei demenziali e una moneta sbagliata in tasca\u2026\nNe ho parlato in questa intervista: se hai voglia, ascolta e condividi.", "post_text": "In Italia pu\u00f2 tornare il LAVORO? S\u00ec, ma senza un Fisco assassino, vincoli europei demenziali e una moneta sbagliata in tasca\u2026\nNe ho parlato in questa intervista: se hai voglia, ascolta e condividi.", "shared_text": "", "time": "2015-07-06 13:47:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153101978358155&id=252306033154", "link": null} +{"post_id": "10153096215043155", "text": "Spettacolare accoglienza e bagno di folla per la Lega ad Adro, in Franciacorta!\nRenzi, stiamo arrivandooooo.", "post_text": "Spettacolare accoglienza e bagno di folla per la Lega ad Adro, in Franciacorta!\nRenzi, stiamo arrivandooooo.", "shared_text": "", "time": "2015-07-03 22:42:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11698839_10153096215043155_5116797949483682548_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=NOnIwV-E2dgAQkv3Gdxp8qHF6JSV8licdN92cznOVApPyQd_ji9lHh9NQ&_nc_ht=scontent-cdt1-1.xx&oh=e827dfcb026a172f8585bbfa70710ddf&oe=5E477B42", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153095575803155", "text": "Pazzesco, l'italiana jihadista... Ascolta e CONDIVIDI.\nL'Islam non \u00e8 una religione come le altre, qualcuno ha ancora dei dubbi?", "post_text": "Pazzesco, l'italiana jihadista... Ascolta e CONDIVIDI.\nL'Islam non \u00e8 una religione come le altre, qualcuno ha ancora dei dubbi?", "shared_text": "", "time": "2015-07-03 18:00:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153095575803155&id=252306033154", "link": null} +{"post_id": "10153094648988155", "text": "Amici, ULTIMI GIORNI per firmare nel vostro Comune, entro il 4 luglio! Tassare e regolamentare la prostituzione, liberando le strade delle nostre citt\u00e0, \u00e8 una battaglia di civilt\u00e0 che porta solo vantaggi.\nCon la vostra firma potremo combatterla tutti insieme!\nLibert\u00e0 \u00e8 PARTECIPAZIONE!", "post_text": "Amici, ULTIMI GIORNI per firmare nel vostro Comune, entro il 4 luglio! Tassare e regolamentare la prostituzione, liberando le strade delle nostre citt\u00e0, \u00e8 una battaglia di civilt\u00e0 che porta solo vantaggi.\nCon la vostra firma potremo combatterla tutti insieme!\nLibert\u00e0 \u00e8 PARTECIPAZIONE!", "shared_text": "", "time": "2015-07-03 12:48:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11224132_10153083704208155_7064185289893002714_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=pxR3rAKnhQgAQniO01I6tH6RoFetaxSv7mjYFcfffgRIek5lmn741mU0w&_nc_ht=scontent-cdt1-1.xx&oh=c2415e40339fe1da9c733b8c0324c529&oe=5E41965C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153094551933155", "text": "Per i clandestini che sbarcano, albergo e pasti gratis.\nPer i nostri TERREMOTATI, container e tanti saluti.\nQuesta \u00e8 l'Italia dei Renzi e delle Boldrini!\nE poi i RAZZISTI sarebbero gli italiani stanchi di questa INVASIONE...", "post_text": "Per i clandestini che sbarcano, albergo e pasti gratis.\nPer i nostri TERREMOTATI, container e tanti saluti.\nQuesta \u00e8 l'Italia dei Renzi e delle Boldrini!\nE poi i RAZZISTI sarebbero gli italiani stanchi di questa INVASIONE...", "shared_text": "", "time": "2015-07-03 12:06:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153094551933155&id=252306033154", "link": null} +{"post_id": "10153092779658155", "text": "Lascio la bellissima terra di Calabria, grazie per l'amicizia!\nL'impegno \u00e8 di tornarci presto, per aiutare a risolvere qualche problema.", "post_text": "Lascio la bellissima terra di Calabria, grazie per l'amicizia!\nL'impegno \u00e8 di tornarci presto, per aiutare a risolvere qualche problema.", "shared_text": "", "time": "2015-07-02 19:58:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11045493_10153092779658155_8160342994648886091_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=xXbwB6yBxhkAQkrGsiCh2P2ps3YTTHjFcXQy95bd2FCS_mQAnd1QhwmFQ&_nc_ht=scontent-cdt1-1.xx&oh=c98fb87c66b3af7895cf600265a61575&oe=5E3F0B42", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153092138033155", "text": "Stazione di Crotone, ci sono pi\u00f9 clandestini che passeggeri.\nSecondo voi \u00e8 normale???", "post_text": "Stazione di Crotone, ci sono pi\u00f9 clandestini che passeggeri.\nSecondo voi \u00e8 normale???", "shared_text": "", "time": "2015-07-02 14:51:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11147238_10153092138033155_5442827048692964572_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=TWVYuLJxwMUAQnH-q3IqPW3I5nnRvCIQoB2ag6ahc-KmOP5Vd67u1R71A&_nc_ht=scontent-cdt1-1.xx&oh=e0f69e125b6478cc076eef7450ef76c8&oe=5E7B4AD5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153090305988155", "text": "Capire, conoscere, studiare, approfondire, imparare: serve a me, serve a tutti. Con professori, economisti e studiosi LIBERI. Con la Lega e con \"Noi con Salvini\".\nPuoi iscriverti su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT", "post_text": "Capire, conoscere, studiare, approfondire, imparare: serve a me, serve a tutti. Con professori, economisti e studiosi LIBERI. Con la Lega e con \"Noi con Salvini\".\nPuoi iscriverti su: WWW.SCUOLADIFORMAZIONEPOLITICA.IT", "shared_text": "", "time": "2015-07-01 21:14:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153090305988155&id=252306033154", "link": "http://WWW.SCUOLADIFORMAZIONEPOLITICA.IT/?fbclid=IwAR2GNqn88jid7JhboqJkjM8RJEcTeMEGcRnBk8a-IR5DY0CgeLcd896NB6Q"} +{"post_id": "10153090272303155", "text": "Vittorio Feltri \u00e8 sempre un grande!", "post_text": "Vittorio Feltri \u00e8 sempre un grande!", "shared_text": "", "time": "2015-07-01 19:53:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153090272303155&id=252306033154", "link": null} +{"post_id": "10153089331123155", "text": "Chi paga lo stipendio al signor Renzi e al signor Alfano? I cittadini ITALIANI, giusto?\nE allora la smettano di farci INVADERE e di fare i camerieri all\u2019Europa della DISOCCUPAZIONE!", "post_text": "Chi paga lo stipendio al signor Renzi e al signor Alfano? I cittadini ITALIANI, giusto?\nE allora la smettano di farci INVADERE e di fare i camerieri all\u2019Europa della DISOCCUPAZIONE!", "shared_text": "", "time": "2015-07-01 13:19:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153089331123155&id=252306033154", "link": null} +{"post_id": "10153086958383155", "text": "\"Infedeli\" crocifissi, decapitati, arsi vivi, giustiziati in spiaggia a colpi di mitra.\n\"La religione non c'entra con il terrorismo islamico\" dicono i buonisti?\nPALLE! Quando c'\u00e8 una guerra in corso bisogna difendersi con tutte le armi a disposizione. E chi dorme \u00e8 COMPLICE!", "post_text": "\"Infedeli\" crocifissi, decapitati, arsi vivi, giustiziati in spiaggia a colpi di mitra.\n\"La religione non c'entra con il terrorismo islamico\" dicono i buonisti?\nPALLE! Quando c'\u00e8 una guerra in corso bisogna difendersi con tutte le armi a disposizione. E chi dorme \u00e8 COMPLICE!", "shared_text": "", "time": "2015-06-30 22:49:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153086958383155&id=252306033154", "link": null} +{"post_id": "10153086255483155", "text": "Le MOSCHEE vanno controllate e \"radiografate\" una per una. Chi le gestisce, chi le conduce?\nE quelle finanziate da regimi islamici fanatici vanno CHIUSE domani mattina!", "post_text": "Le MOSCHEE vanno controllate e \"radiografate\" una per una. Chi le gestisce, chi le conduce?\nE quelle finanziate da regimi islamici fanatici vanno CHIUSE domani mattina!", "shared_text": "", "time": "2015-06-30 15:14:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153086255483155&id=252306033154", "link": null} +{"post_id": "10153084184803155", "text": "Esportiamo i nostri laureati ed importiamo disperati: questa \u00e8 INVASIONE PIANIFICATA e sostituzione di popoli! NON SE NE PU\u00d2 PI\u00d9!\nP.s. Grazie al pubblico in studio oggi a LA 7 per gli applausi, saranno brutti, estremisti e populisti anche loro? Noi di certo non molliamo!", "post_text": "Esportiamo i nostri laureati ed importiamo disperati: questa \u00e8 INVASIONE PIANIFICATA e sostituzione di popoli! NON SE NE PU\u00d2 PI\u00d9!\nP.s. Grazie al pubblico in studio oggi a LA 7 per gli applausi, saranno brutti, estremisti e populisti anche loro? Noi di certo non molliamo!", "shared_text": "", "time": "2015-06-29 17:39:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153084184803155&id=252306033154", "link": null} +{"post_id": "10153083660413155", "text": "Ascoltate bene, aveva ragione ORIANA FALLACI\u2026\nIo questo signore non lo vorrei come vicino di casa nemmeno sotto tortura!", "post_text": "Ascoltate bene, aveva ragione ORIANA FALLACI\u2026\nIo questo signore non lo vorrei come vicino di casa nemmeno sotto tortura!", "shared_text": "", "time": "2015-06-29 12:04:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153083660413155&id=252306033154", "link": null} +{"post_id": "10153083574253155", "text": "Senza montarci la testa, piedi bene piantati per terra, adesso non dobbiamo fermarci e dobbiamo lavorare ancora pi\u00f9 duro: vincere SI PU\u00d2!", "post_text": "Senza montarci la testa, piedi bene piantati per terra, adesso non dobbiamo fermarci e dobbiamo lavorare ancora pi\u00f9 duro: vincere SI PU\u00d2!", "shared_text": "", "time": "2015-06-29 10:41:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p280x280/1798994_10153083574253155_5109227324347376519_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=wIAB8Z64lKEAQlBZGK72Vbtx5oET8Gm7mswUFFI4nbwqDKFr8YGeMPWVQ&_nc_ht=scontent-cdt1-1.xx&oh=ef1d306726183575c35472e5acf1d78e&oe=5E44BDF4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153082532163155", "text": "Pazzesco! Maledizione a lui e a quelli che ci hanno SVENDUTO all'Unione Sovietica Europea delle banche e dell'Euro... Fuori, e si riparte!", "post_text": "Pazzesco! Maledizione a lui e a quelli che ci hanno SVENDUTO all'Unione Sovietica Europea delle banche e dell'Euro... Fuori, e si riparte!", "shared_text": "", "time": "2015-06-28 22:35:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153082532163155&id=252306033154", "link": null} +{"post_id": "10153075821043155", "text": "Chi sbaglia, paga ma il cosiddetto \"reato di tortura\" \u00e8 un'IDIOZIA che espone chi porta una divisa al ricatto dei DELINQUENTI. E l'ultima cosa di cui ha bisogno l'Italia \u00e8 ostacolare l'attivit\u00e0 di poliziotti e carabinieri.", "post_text": "Chi sbaglia, paga ma il cosiddetto \"reato di tortura\" \u00e8 un'IDIOZIA che espone chi porta una divisa al ricatto dei DELINQUENTI. E l'ultima cosa di cui ha bisogno l'Italia \u00e8 ostacolare l'attivit\u00e0 di poliziotti e carabinieri.", "shared_text": "", "time": "2015-06-25 20:59:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153075821043155&id=252306033154", "link": null} +{"post_id": "10153075466653155", "text": "Io sto con le Forze dell'Ordine.\nQualche delinquente si lamenta? Problemi suoi.", "post_text": "Io sto con le Forze dell'Ordine.\nQualche delinquente si lamenta? Problemi suoi.", "shared_text": "", "time": "2015-06-25 17:29:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10624081_10153075466653155_9196606806723956533_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=h_dU09OVIcEAQnGbnMdsROzl2wkNcu1ZXrK2HmOdapeMzovJcZ1uJxrwg&_nc_ht=scontent-cdt1-1.xx&oh=7331c2f0254ef163326d4ce94b8f3c11&oe=5E7B8EDD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153073664673155", "text": "Un GRAZIE a Jonata Pregio Martinalli che ha cantato a Pontida un suo pezzo in ricordo di una ragazza che ha perso la vita a 19 anni in un incidente stradale. Un angelo che ha combattuto insieme a noi e che non dimenticheremo mai.\nCIAO VITTORIA", "post_text": "Un GRAZIE a Jonata Pregio Martinalli che ha cantato a Pontida un suo pezzo in ricordo di una ragazza che ha perso la vita a 19 anni in un incidente stradale. Un angelo che ha combattuto insieme a noi e che non dimenticheremo mai.\nCIAO VITTORIA", "shared_text": "", "time": "2015-06-24 23:24:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153073664673155&id=252306033154", "link": null} +{"post_id": "10153072079953155", "text": "A Capaccio, in un RESORT in provincia di Salerno, dei presunti profughi protestano per la qualit\u00e0 del cibo e dei servizi. Mangiano male e manca Internet?\nChe vadano a fare i turisti a CASA LORO, e diamo quei fondi agli italiani in difficolt\u00e0!", "post_text": "A Capaccio, in un RESORT in provincia di Salerno, dei presunti profughi protestano per la qualit\u00e0 del cibo e dei servizi. Mangiano male e manca Internet?\nChe vadano a fare i turisti a CASA LORO, e diamo quei fondi agli italiani in difficolt\u00e0!", "shared_text": "", "time": "2015-06-24 12:20:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153072079953155&id=252306033154", "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 14 nuove foto \u2014 a Pontida.\n23 giugno 2015 alle ore 17:00 \u00b7 Pontida, Lombardia \u00b7\nAltre opzioni", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 14 nuove foto \u2014 a Pontida.\n23 giugno 2015 alle ore 17:00 \u00b7 Pontida, Lombardia \u00b7\nAltre opzioni", "time": "2015-06-23 18:00:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11232952_10153070021078155_3285087631919659517_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=qu0FdU7lKwMAQk6IdHMM2nRy1f6gZ1qZv0T6PU0j4wnlQP0sqc7JAPFhQ&_nc_ht=scontent-cdt1-1.xx&oh=ec453dc1383298177549126b37d1693b&oe=5E83A671", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-06-23 08:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p160x160/10998080_10153068871228155_5260088626358501103_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=8ITpXsgHthIAQlyZHw7sS3BvzwjCuE62-WDjbd6V1JwGLS7NmmZNas2Bw&_nc_ht=scontent-cdt1-1.xx&oh=74eb5e7358fda960e3ba0def2a6486b2&oe=5E3FB4EE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 18 nuove foto \u2014 a Pontida.\n22 giugno 2015 alle ore 22:05 \u00b7 Pontida, Lombardia \u00b7\nAltre opzioni", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 18 nuove foto \u2014 a Pontida.\n22 giugno 2015 alle ore 22:05 \u00b7 Pontida, Lombardia \u00b7\nAltre opzioni", "time": "2015-06-22 23:05:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11537597_10153067696298155_4773704279226693882_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=E7nYRGp3IzwAQklFD1lOl8MD5R-9VR94f9Fj5_MQmhFnnLcCNsF2yljFg&_nc_ht=scontent-cdt1-1.xx&oh=85474847511a14163f7881a0dbe25d78&oe=5E45D695", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153066750088155", "text": "Ieri ci siamo stretti la mano e abbiamo fatto un PATTO.\nPer noi e per i nostri figli: finch\u00e9 non libereremo questa Italia, non molleremo mai!", "post_text": "Ieri ci siamo stretti la mano e abbiamo fatto un PATTO.\nPer noi e per i nostri figli: finch\u00e9 non libereremo questa Italia, non molleremo mai!", "shared_text": "", "time": "2015-06-22 16:44:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-8/cp0/e15/q65/s851x315/11144414_10153066750088155_3521562988507561000_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=0yumzGvlUlkAQmIPT62ivQU-JYbvdZt9z2TyIeojTXlBQd56R6pwB6Puw&_nc_ht=scontent-cdt1-1.xx&oh=eb55ec63073f5217a4e7246ec52b8d0f&oe=5E3F4175", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153061821443155", "text": "Ruspe in azione, dai 2 ai 90 anni, magliette quasi esaurite!", "post_text": "Ruspe in azione, dai 2 ai 90 anni, magliette quasi esaurite!", "shared_text": "", "time": "2015-06-20 22:45:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/10317721_10153061821443155_6087868164265033509_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=2ig5TMbJuZMAQkq2FD9K5xdXB-i5Z2kNt9awVqCyq4xe0TMpC-0Tmgj2A&_nc_ht=scontent-cdt1-1.xx&oh=977fe568ef5ec673b803be0472cc6be7&oe=5E4F86A6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153058862738155", "text": "Immigrati che protestano e rifiutano gli alberghi, a Pisa perch\u00e9 non c\u2019\u00e8 il wifi, a Livorno perch\u00e9 sono ospitate delle donne, a Sassari perch\u00e9 \u00e8 troppo isolato\u2026\nAltro che \u201cprofughi che scappano dalle guerre\u201d, questi sono CLANDESTINI da rispedire a CASA LORO!!!", "post_text": "Immigrati che protestano e rifiutano gli alberghi, a Pisa perch\u00e9 non c\u2019\u00e8 il wifi, a Livorno perch\u00e9 sono ospitate delle donne, a Sassari perch\u00e9 \u00e8 troppo isolato\u2026\nAltro che \u201cprofughi che scappano dalle guerre\u201d, questi sono CLANDESTINI da rispedire a CASA LORO!!!", "shared_text": "", "time": "2015-06-19 20:28:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153058862738155&id=252306033154", "link": null} +{"post_id": "10153053829263155", "text": "30 presunti profughi rifiutano un agriturismo in provincia di Sassari, \u00e8 troppo isolato e lontano dal mare\u2026\nBarcone e via, vadano a CASA LORO a fare gli schizzinosi!", "post_text": "30 presunti profughi rifiutano un agriturismo in provincia di Sassari, \u00e8 troppo isolato e lontano dal mare\u2026\nBarcone e via, vadano a CASA LORO a fare gli schizzinosi!", "shared_text": "", "time": "2015-06-18 12:43:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153053829263155&id=252306033154", "link": null} +{"post_id": "10153053631578155", "text": "Donazione di sangue fatta!\nNon mi interessa chi aiuter\u00f2, un bianco o un nero, un milanese o un giapponese, da cittadino mi interessa aiutare qualcuno che ha bisogno.\nDa politico invece, \u00e8 mio dovere aiutare prima gli italiani.", "post_text": "Donazione di sangue fatta!\nNon mi interessa chi aiuter\u00f2, un bianco o un nero, un milanese o un giapponese, da cittadino mi interessa aiutare qualcuno che ha bisogno.\nDa politico invece, \u00e8 mio dovere aiutare prima gli italiani.", "shared_text": "", "time": "2015-06-18 11:08:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p280x280/11416349_10153053631578155_3690336076002275656_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=A1wkX4CMcFQAQluCIPRA2mH-jc_Gjuidk2m_76tfqrh-2RcAV0EDC0T1g&_nc_ht=scontent-cdt1-1.xx&oh=53862b31e0c78749cdb46530230139e1&oe=5E7FEAE1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153051710683155", "text": "Incredibile, Renzi per una volta ha detto la verit\u00e0!", "post_text": "Incredibile, Renzi per una volta ha detto la verit\u00e0!", "shared_text": "", "time": "2015-06-17 19:52:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153051710683155&id=252306033154", "link": null} +{"post_id": "10153048424428155", "text": "Per Doriano, cittadino italiano in difficolt\u00e0, c'\u00e8 il SACCO A PELO.\nPer il clandestino che sbarca, invece, c'\u00e8 pronto l'ALBERGO.\nFacciamo girare, STOP al RAZZISMO verso gli italiani!", "post_text": "Per Doriano, cittadino italiano in difficolt\u00e0, c'\u00e8 il SACCO A PELO.\nPer il clandestino che sbarca, invece, c'\u00e8 pronto l'ALBERGO.\nFacciamo girare, STOP al RAZZISMO verso gli italiani!", "shared_text": "", "time": "2015-06-16 13:51:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153048424428155&id=252306033154", "link": null} +{"post_id": "10153044903778155", "text": "Tassare e regolamentare la prostituzione, riaprendo le case chiuse e liberando le strade delle nostre citt\u00e0, \u00e8 una battaglia di civilt\u00e0 che porta solo vantaggi.\nUsa un quarto d'ora del tuo tempo, vai in Comune\u2026 Altro e combattila con noi!\nC'\u00e8 tempo solo fino al 4 LUGLIO!\nP.s. se avevi gi\u00e0 firmato l'anno scorso, non vale: devi firmare di nuovo!", "post_text": "Tassare e regolamentare la prostituzione, riaprendo le case chiuse e liberando le strade delle nostre citt\u00e0, \u00e8 una battaglia di civilt\u00e0 che porta solo vantaggi.\nUsa un quarto d'ora del tuo tempo, vai in Comune\u2026 Altro e combattila con noi!\nC'\u00e8 tempo solo fino al 4 LUGLIO!\nP.s. se avevi gi\u00e0 firmato l'anno scorso, non vale: devi firmare di nuovo!", "shared_text": "", "time": "2015-06-15 02:18:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11312719_10153022333768155_7704247201481353193_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=fjPsUnRHX2EAQn4dYObqrxUptr95Ww1x78PfMdAn8isra3CKyoKGvu92Q&_nc_ht=scontent-cdt1-1.xx&oh=421fcfc91807899183175f8accc36b9c&oe=5E8B7008", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153044755598155", "text": "Una marea di gente con la Lega stasera a Melzo!\nDedico questo entusiasmo ai nostri Militanti, che stanno rendendo possibili vittorie impensabili ai ballottaggi: grazie!", "post_text": "Una marea di gente con la Lega stasera a Melzo!\nDedico questo entusiasmo ai nostri Militanti, che stanno rendendo possibili vittorie impensabili ai ballottaggi: grazie!", "shared_text": "", "time": "2015-06-15 00:27:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153044755598155&id=252306033154", "link": null} +{"post_id": "10153043542868155", "text": "Visto che la stragrande maggioranza dei richiedenti non ottiene l'asilo, fino a prova contraria, li chiamiamo CLANDESTINI. Altro che \"profughi\" e hotel gratis a spese degli italiani... Chi non CONDIVIDE \u00e8 un amico di Renzi e della Boldrini!", "post_text": "Visto che la stragrande maggioranza dei richiedenti non ottiene l'asilo, fino a prova contraria, li chiamiamo CLANDESTINI. Altro che \"profughi\" e hotel gratis a spese degli italiani... Chi non CONDIVIDE \u00e8 un amico di Renzi e della Boldrini!", "shared_text": "", "time": "2015-06-14 11:56:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153043542868155&id=252306033154", "link": null} +{"post_id": "10153041702408155", "text": "Per i ROM stessi diritti e stessi DOVERI! La casa se la comprano o se la affittano come tutti gli altri, visto che, spesso e volentieri, hanno sul conto corrente il triplo dei soldi di un cittadino italiano.", "post_text": "Per i ROM stessi diritti e stessi DOVERI! La casa se la comprano o se la affittano come tutti gli altri, visto che, spesso e volentieri, hanno sul conto corrente il triplo dei soldi di un cittadino italiano.", "shared_text": "", "time": "2015-06-13 12:25:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153041702408155&id=252306033154", "link": null} +{"post_id": "10153040055628155", "text": "Ma ai politici del PD piace la SCABBIA?!?", "post_text": "Ma ai politici del PD piace la SCABBIA?!?", "shared_text": "", "time": "2015-06-12 19:07:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153040055628155&id=252306033154", "link": null} +{"post_id": "10153039928473155", "text": "Per disabili, anziani e disoccupati italiani i soldi non ci sono!\nPer i CLANDESTINI, invece, Renzi li trova subito\u2026 Se questo RAZZISMO fa incazzare anche te, CONDIVIDI.", "post_text": "Per disabili, anziani e disoccupati italiani i soldi non ci sono!\nPer i CLANDESTINI, invece, Renzi li trova subito\u2026 Se questo RAZZISMO fa incazzare anche te, CONDIVIDI.", "shared_text": "", "time": "2015-06-12 18:15:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153039928473155&id=252306033154", "link": null} +{"post_id": "10153039704233155", "text": "Bella squadra in piazza Sordello a Mantova!\nE chi domenica vota a sinistra, o non vota, non si lamenti per i prossimi cinque anni...", "post_text": "Bella squadra in piazza Sordello a Mantova!\nE chi domenica vota a sinistra, o non vota, non si lamenti per i prossimi cinque anni...", "shared_text": "", "time": "2015-06-12 16:04:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11427754_10153039704233155_3021679937571046208_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=nMYAvFM8lfQAQkVB7SjK_Gqn22aoxawEWk05k6OdeAv003s5ZCrPzHAxA&_nc_ht=scontent-cdt1-1.xx&oh=88dc5d0ee9fd9ce25658c6a5c8535f3a&oe=5E7AFDCB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153036320123155", "text": "In questo momento di crisi economica gli studi di settore sono uno strumento di TORTURA FISCALE. Lo Stato ti costringe a dichiarare quello che non hai guadagnato altrimenti vengono a controllarti anche i calzini che hai nell'armadio...\nCon noi al Governo? Li cancelliamo domani mattina!", "post_text": "In questo momento di crisi economica gli studi di settore sono uno strumento di TORTURA FISCALE. Lo Stato ti costringe a dichiarare quello che non hai guadagnato altrimenti vengono a controllarti anche i calzini che hai nell'armadio...\nCon noi al Governo? Li cancelliamo domani mattina!", "shared_text": "", "time": "2015-06-11 10:10:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153036320123155&id=252306033154", "link": null} +{"post_id": "10153035291098155", "text": "Spettacolare accoglienza per la Lega a Cologno Monzese!\nVuoi vedere che dopo cinquant'anni si manda a casa la sinistra???", "post_text": "Spettacolare accoglienza per la Lega a Cologno Monzese!\nVuoi vedere che dopo cinquant'anni si manda a casa la sinistra???", "shared_text": "", "time": "2015-06-10 22:14:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11535894_10153035291098155_8495862404382470781_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=yV62ayPp-FcAQl3YLdwbxV5hWqsAMsgxVlZm5RvdOX1Q7auRyyug8AEqg&_nc_ht=scontent-cdt1-1.xx&oh=3677b5f96fbaf8ca7a5159afd50c1361&oe=5E469678", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153035175878155", "text": "In un paese normale Alfano non sarebbe pi\u00f9 Ministro dell'Interno gi\u00e0 da qualche mese...\nPer manifesta e TOTALE INCAPACIT\u00c0 di gestire l'immigrazione clandestina.\nE Renzi pi\u00f9 lo copre e lo difende, pi\u00f9 \u00e8 COMPLICE di questa INVASIONE!", "post_text": "In un paese normale Alfano non sarebbe pi\u00f9 Ministro dell'Interno gi\u00e0 da qualche mese...\nPer manifesta e TOTALE INCAPACIT\u00c0 di gestire l'immigrazione clandestina.\nE Renzi pi\u00f9 lo copre e lo difende, pi\u00f9 \u00e8 COMPLICE di questa INVASIONE!", "shared_text": "", "time": "2015-06-10 20:58:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153035175878155&id=252306033154", "link": null} +{"post_id": "10153034646008155", "text": "Amici, ho bisogno di voi! Entro la fine di giugno andate, ciascuno nel proprio Comune, a firmare per il referendum Lega per tassare e regolamentare la prostituzione.\nAnche chi l'ha gi\u00e0 fatto l'anno scorso deve\u2026 Altro firmare di nuovo per poter contribuire a questa battaglia di civilt\u00e0. Servono 500.000 firme: dai, insieme ce la facciamo!!!", "post_text": "Amici, ho bisogno di voi! Entro la fine di giugno andate, ciascuno nel proprio Comune, a firmare per il referendum Lega per tassare e regolamentare la prostituzione.\nAnche chi l'ha gi\u00e0 fatto l'anno scorso deve\u2026 Altro firmare di nuovo per poter contribuire a questa battaglia di civilt\u00e0. Servono 500.000 firme: dai, insieme ce la facciamo!!!", "shared_text": "", "time": "2015-06-10 15:45:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153034646008155&id=252306033154", "link": null} +{"post_id": "10153034364483155", "text": "Abbiamo iniziato un percorso comune con gli imprenditori italiani, da Nord a Sud. Rivedere i trattati europei, la difesa del \"Made in Italy\", una giustizia pi\u00f9 efficace e, soprattutto, un nuovo sistema fiscale per pagare MENO TASSE.\nVolere \u00e8 potere, insieme torneremo grandi!", "post_text": "Abbiamo iniziato un percorso comune con gli imprenditori italiani, da Nord a Sud. Rivedere i trattati europei, la difesa del \"Made in Italy\", una giustizia pi\u00f9 efficace e, soprattutto, un nuovo sistema fiscale per pagare MENO TASSE.\nVolere \u00e8 potere, insieme torneremo grandi!", "shared_text": "", "time": "2015-06-10 12:11:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153034364483155&id=252306033154", "link": null} +{"post_id": "10153030466028155", "text": "Tantissima gente in piazza a Corsico, per mandare a casa la sinistra dopo troppi anni di disastri!\nP.s. Una ventina di contestatori urlavano \"Siamo tutti clandestini\": allora andate a vivere da un'altra parte!", "post_text": "Tantissima gente in piazza a Corsico, per mandare a casa la sinistra dopo troppi anni di disastri!\nP.s. Una ventina di contestatori urlavano \"Siamo tutti clandestini\": allora andate a vivere da un'altra parte!", "shared_text": "", "time": "2015-06-08 20:03:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11251120_10153030466028155_7231327743010959503_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=Leec_oqugQAAQkGjNAZQfmwt0mETNpcJSkqzmevL3-nqCZUbxawS_TOvA&_nc_ht=scontent-cdt1-1.xx&oh=ba2260a12ccc45d3cc9252ff2003c13b&oe=5E3E28BB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153029645848155", "text": "Anche al mercato di Segrate, accoglienza stupenda!\nP.s. Ad ascoltare le signore che incontro, mi sa che se si facesse vedere la Fornero, dovrebbe scappare via velocemente...", "post_text": "Anche al mercato di Segrate, accoglienza stupenda!\nP.s. Ad ascoltare le signore che incontro, mi sa che se si facesse vedere la Fornero, dovrebbe scappare via velocemente...", "shared_text": "", "time": "2015-06-08 12:01:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11424454_10153029645848155_4609129095083463095_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=_sSrNfb5ncIAQnsXUjAT6aOun5SuhUPIRF4q-j7CBVSBZ7qgepUR67wgg&_nc_ht=scontent-cdt1-1.xx&oh=bba234300977abac45880cde5da3065c&oe=5E8B41AD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153029534053155", "text": "Schifani dice che porter\u00f2 \"il centrodestra alla sconfitta\", perch\u00e9 sono \"integralista, estremista, di destra\" e porto l'Italia \"allo sfascio\"... Povero \"zerovirgola\" Schifani, che cosa pretendere da uno che ha un ministro dell'Interno che di secondo lavoro fa lo scafista?", "post_text": "Schifani dice che porter\u00f2 \"il centrodestra alla sconfitta\", perch\u00e9 sono \"integralista, estremista, di destra\" e porto l'Italia \"allo sfascio\"... Povero \"zerovirgola\" Schifani, che cosa pretendere da uno che ha un ministro dell'Interno che di secondo lavoro fa lo scafista?", "shared_text": "", "time": "2015-06-08 10:25:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153029534053155&id=252306033154", "link": null} +{"post_id": "10153028600758155", "text": "Piazza STRAPIENA per la Lega a Lonigo, in provincia di Vicenza: domenica si vota e si manda a casa il sindaco di sinistra!!!\nRenzi? Sul barcone.", "post_text": "Piazza STRAPIENA per la Lega a Lonigo, in provincia di Vicenza: domenica si vota e si manda a casa il sindaco di sinistra!!!\nRenzi? Sul barcone.", "shared_text": "", "time": "2015-06-07 23:07:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153028600758155&id=252306033154", "link": null} +{"post_id": "10153028092378155", "text": "Un abbraccio dalla splendida piazza di Castelfranco Veneto!\nCosa state facendo?", "post_text": "Un abbraccio dalla splendida piazza di Castelfranco Veneto!\nCosa state facendo?", "shared_text": "", "time": "2015-06-07 19:09:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11393166_10153028092378155_353958524356937230_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=IQYxaMmCbm0AQmYrloQs9BfI0d1ysG54AgAvNhq1rAU1P9KMaqtKYUu2A&_nc_ht=scontent-cdt1-1.xx&oh=b5712404729088141104704362a501e4&oe=5E7C8839", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153027566073155", "text": "Amici, rinnovo l'invito. Combattete con noi una battaglia di civilt\u00e0, da Nord a Sud: a Roma, a Napoli, a Milano, a Palermo, a Torino, se andate a firmare nel vostro comune e ci date 500mila firme, dopo 50 anni toglieremo la prostituzione dalle strade.\nWWW.VIENIAFIRMARE.ORG", "post_text": "Amici, rinnovo l'invito. Combattete con noi una battaglia di civilt\u00e0, da Nord a Sud: a Roma, a Napoli, a Milano, a Palermo, a Torino, se andate a firmare nel vostro comune e ci date 500mila firme, dopo 50 anni toglieremo la prostituzione dalle strade.\nWWW.VIENIAFIRMARE.ORG", "shared_text": "", "time": "2015-06-07 12:54:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153027566073155&id=252306033154", "link": "http://WWW.VIENIAFIRMARE.ORG/?fbclid=IwAR1lLrdSc9mQBMB_qNU4qR5ZjWQgoFaOcUEYuNZgMhGIdsTOufhlAmNAiuk"} +{"post_id": "10153024499378155", "text": "Per ridare il LAVORO agli italiani servono idee chiare e coraggiose.\nLa nostra proposta si chiama FLAT TAX al 15%, pagare meno per pagare tutti\u2026\nFunziona gi\u00e0 in 40 Paesi al mondo, noi la faremo!", "post_text": "Per ridare il LAVORO agli italiani servono idee chiare e coraggiose.\nLa nostra proposta si chiama FLAT TAX al 15%, pagare meno per pagare tutti\u2026\nFunziona gi\u00e0 in 40 Paesi al mondo, noi la faremo!", "shared_text": "", "time": "2015-06-05 19:48:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153024499378155&id=252306033154", "link": null} +{"post_id": "10153024068073155", "text": "Stiamo costruendo un progetto alternativo a quello di Renzi, di Bruxelles e delle banche. Siamo qui per vincere e per ridare l'Italia agli italiani... Io ci credo. E voi?", "post_text": "Stiamo costruendo un progetto alternativo a quello di Renzi, di Bruxelles e delle banche. Siamo qui per vincere e per ridare l'Italia agli italiani... Io ci credo. E voi?", "shared_text": "", "time": "2015-06-05 15:35:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153024068073155&id=252306033154", "link": null} +{"post_id": "10153023711473155", "text": "Paesi a confronto: l'Austria difende i propri confini, l'Italia si fa invadere.\nGrazie alle scelte DEMENZIALI di Renzi e Alfano. INCAPACI.\nQuando saremo al governo tutto questo cambier\u00e0.", "post_text": "Paesi a confronto: l'Austria difende i propri confini, l'Italia si fa invadere.\nGrazie alle scelte DEMENZIALI di Renzi e Alfano. INCAPACI.\nQuando saremo al governo tutto questo cambier\u00e0.", "shared_text": "", "time": "2015-06-05 11:51:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153023711473155&id=252306033154", "link": null} +{"post_id": "10153022268008155", "text": "Video dell'intervista di luned\u00ec da Paolo Del Debbio a \"Quinta Colonna\" su Rete 4. Ho dialogato volentieri con i giovani del PD, ma aspetto il giorno in cui anche un militante della Lega potr\u00e0 fare una domanda a Renzi in diretta televisiva...", "post_text": "Video dell'intervista di luned\u00ec da Paolo Del Debbio a \"Quinta Colonna\" su Rete 4. Ho dialogato volentieri con i giovani del PD, ma aspetto il giorno in cui anche un militante della Lega potr\u00e0 fare una domanda a Renzi in diretta televisiva...", "shared_text": "", "time": "2015-06-04 18:09:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153022268008155&id=252306033154", "link": null} +{"post_id": "10153021851833155", "text": "Se ce lo chiederanno i cittadini, il Governo non ci spaventa. Anche perch\u00e9, a differenza di Renzi, non sarei un uomo solo al comando. Se avete voglia, leggete e condividete questa intervista e, soprattutto, legger\u00f2 con attenzione i vostri commenti.", "post_text": "Se ce lo chiederanno i cittadini, il Governo non ci spaventa. Anche perch\u00e9, a differenza di Renzi, non sarei un uomo solo al comando. Se avete voglia, leggete e condividete questa intervista e, soprattutto, legger\u00f2 con attenzione i vostri commenti.", "shared_text": "", "time": "2015-06-04 14:44:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p75x225/11393741_10153021851833155_404752709494086516_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=tTSLXxMj7E0AQn7iKFOBNi-2MoJLniYoi9f4URcC3a8GXZdWxJeEdRjnw&_nc_ht=scontent-cdt1-1.xx&oh=9e718832494158895a77095e08a4e947&oe=5E798DEB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153021587638155", "text": "Una giornata per fare la storia: domenica 21 giugno a Pontida aspetto anche te!", "post_text": "Una giornata per fare la storia: domenica 21 giugno a Pontida aspetto anche te!", "shared_text": "", "time": "2015-06-04 11:43:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/11415490_10153021587638155_9016105666198912731_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=SfSDNgLSTiwAQnGh6_mCnF0aJTMpscQgWK2cBSRy0UmxvJoaWpKdGrMOw&_nc_ht=scontent-cdt1-1.xx&oh=152b69610a8ebd676c8b8ce00d7714e2&oe=5E876D22", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153020493258155", "text": "Se persino il \"Fatto Quotidiano\" riconosce il successo della Lega...\nhttp://tv.ilfattoquotidiano.it/2015/06/03/saronno-nuova-base-di-salvini-tra-terroni-e-migranti-ruspa-ruspa-ruspa/379376/", "post_text": "Se persino il \"Fatto Quotidiano\" riconosce il successo della Lega...\nhttp://tv.ilfattoquotidiano.it/2015/06/03/saronno-nuova-base-di-salvini-tra-terroni-e-migranti-ruspa-ruspa-ruspa/379376/", "shared_text": "", "time": "2015-06-03 18:26:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153020493258155&id=252306033154", "link": "http://tv.ilfattoquotidiano.it/2015/06/03/saronno-nuova-base-di-salvini-tra-terroni-e-migranti-ruspa-ruspa-ruspa/379376/?fbclid=IwAR2cxFxpSXOoMOPx-G3LII8Xvh3Am2mauiIIQJ69uEqAArHUehNCIT1joLY"} +{"post_id": "10153019090913155", "text": "Spettacolare folla per la serata della Lega a Martinengo!!!\nRenzi, stiamo arrivandooooooo.\nNotte serena Amici, domani mattina sar\u00f2 a Saronno.", "post_text": "Spettacolare folla per la serata della Lega a Martinengo!!!\nRenzi, stiamo arrivandooooooo.\nNotte serena Amici, domani mattina sar\u00f2 a Saronno.", "shared_text": "", "time": "2015-06-03 00:23:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153019090913155&id=252306033154", "link": null} +{"post_id": "10153016968043155", "text": "Un ringraziamento per voi, e un tapiro per...", "post_text": "Un ringraziamento per voi, e un tapiro per...", "shared_text": "", "time": "2015-06-01 19:20:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153016968043155&id=252306033154", "link": null} +{"post_id": "10153016058513155", "text": "GRAZIE! Da Nord a Sud ho incontrato un sacco di gente che mi ha dato tanto, per me \u00e8 stata un'esperienza di vita incredibile. Se volete aiutarci a realizzare un progetto alternativo a quello di Renzi, andate nel vostro comune a firmare il referendum per abrogare la legge Merlin.\nInfo: www.vieniafirmare.org", "post_text": "GRAZIE! Da Nord a Sud ho incontrato un sacco di gente che mi ha dato tanto, per me \u00e8 stata un'esperienza di vita incredibile. Se volete aiutarci a realizzare un progetto alternativo a quello di Renzi, andate nel vostro comune a firmare il referendum per abrogare la legge Merlin.\nInfo: www.vieniafirmare.org", "shared_text": "", "time": "2015-06-01 08:52:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11351269_10153016058428155_8320272580197965208_n.png.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=aWF5aF38jhYAQlMOVIJhS-X1Lbv7_qPOysOw7jqsdUzjDggbly-qEp2Sw&_nc_ht=scontent-cdt1-1.xx&oh=13c052849c57d69f70fbfb6446159734&oe=5E4E2247", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR3kT4VLV8Q-JI_1S-sEvHzpQeWQQ__N_k0JMCP5o3tg9OvaQKDfVQYjrZ8"} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-05-31 09:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p160x160/11143142_10153014262433155_4929717857510318407_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=RdVM1G5Hy0EAQkEqhRBra-TKJ20-H9LBnRk81f8Mm6GAdQw6cMO6-vEnQ&_nc_ht=scontent-cdt1-1.xx&oh=e06f4358d446b3040c0f884218ff3dc3&oe=5E485A31", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153010333428155", "text": "Questa \u00e8 la PIAZZA STRAPIENA di Thiene, in provincia di Vicenza, per la Lega e Luca Zaia.\nTutti gli altri? Spariti...\nRenzi, stiamo arrivandooooo!", "post_text": "Questa \u00e8 la PIAZZA STRAPIENA di Thiene, in provincia di Vicenza, per la Lega e Luca Zaia.\nTutti gli altri? Spariti...\nRenzi, stiamo arrivandooooo!", "shared_text": "", "time": "2015-05-29 19:18:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11168062_10153010333428155_6291739042118862527_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=Zx9x9kk4u0wAQl0SeTAlMG-XPQIFylQ9Bh4qjBKOjaB__5i09lQjxjWpw&_nc_ht=scontent-cdt1-1.xx&oh=47045eb2bf7fdc0e622d007070263020&oe=5E8B615D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153010071643155", "text": "Arqu\u00e0 Polesine, vicino a Rovigo, Ostello Canalbianco. Ah, che relax! 60 immigrati con vitto e alloggio garantito per mesi, mentre migliaia di italiani non tirano a fine mese e dormono in macchina...\nNon ti piace l'Italia di Renzi, Alfano e Boldrini? DOMENICA puoi contribuire a cambiarla, col tuo voto.", "post_text": "Arqu\u00e0 Polesine, vicino a Rovigo, Ostello Canalbianco. Ah, che relax! 60 immigrati con vitto e alloggio garantito per mesi, mentre migliaia di italiani non tirano a fine mese e dormono in macchina...\nNon ti piace l'Italia di Renzi, Alfano e Boldrini? DOMENICA puoi contribuire a cambiarla, col tuo voto.", "shared_text": "", "time": "2015-05-29 18:08:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153010071643155&id=252306033154", "link": null} +{"post_id": "10153009280943155", "text": "Ciclisti leghisti, spettacolo!!!", "post_text": "Ciclisti leghisti, spettacolo!!!", "shared_text": "", "time": "2015-05-29 16:35:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10453470_10153009280943155_3539357927037828721_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=vpWn_h2Ic1sAQmpBZ5teeRzCR_fdbEqusc80ZIQSZEqR_DL5tYEF1CTHQ&_nc_ht=scontent-cdt1-1.xx&oh=c0e55a11253c626f1f3b80e1f1267f54&oe=5E89682E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153008299633155", "text": "Elezioni regionali di questa domenica: FAI GIRARE tra chi vota in PUGLIA! E con \"Noi con Salvini\" siamo presenti anche in tanti comuni di Centro, Sud e Isole, dall'Abruzzo alla Sicilia!\nDOMENICA vince chi PARTECIPA! MENO DUEEEEE!", "post_text": "Elezioni regionali di questa domenica: FAI GIRARE tra chi vota in PUGLIA! E con \"Noi con Salvini\" siamo presenti anche in tanti comuni di Centro, Sud e Isole, dall'Abruzzo alla Sicilia!\nDOMENICA vince chi PARTECIPA! MENO DUEEEEE!", "shared_text": "", "time": "2015-05-29 12:55:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11232017_10153008299633155_4771534185252551229_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=2zab6UfzqaMAQkej9wNqcYhx9z3z9NvDjTqo_6SVexaVLgpmv_QJOr2ng&_nc_ht=scontent-cdt1-1.xx&oh=653e63aef59b3609b46e93cb8c9ac1a7&oe=5E46E35C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153003530318155", "text": "E con la splendida piazza di Orvieto, piena mi dicono come non si vedeva da anni, vi auguro una Notte Serena.\nA domani in Veneto, e a domenica per un Voto di Libert\u00e0!", "post_text": "E con la splendida piazza di Orvieto, piena mi dicono come non si vedeva da anni, vi auguro una Notte Serena.\nA domani in Veneto, e a domenica per un Voto di Libert\u00e0!", "shared_text": "", "time": "2015-05-29 00:16:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11188221_10153003530318155_4248933267849090878_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=iqDwS0ZXaBcAQmXpsDSmBp0mW-bw5hXFPy02iaYVS5eHykxXyaYjh84sg&_nc_ht=scontent-cdt1-1.xx&oh=9a0c373023eed2bf1002106cfff95ad6&oe=5E850AAA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153003312863155", "text": "Grazie Toscana, grazie Umbria! E DOMANI, venerd\u00ec, gran finale in VENETO!\nAlle 9 sar\u00f2 a Torre di Mosto (VE), alle 10.30 a Dolo (VE) in piazza del Mercato, alle 12.15 in collegamento con La7 a \"L'Aria che Tira\",\u2026 Altro alle 12.30 a Padova al convegno \"Terrorismo di piazza\" (organizzato da UGL Polizia di Stato, presso la Sala comunale \"Fornace Carotta\"), alle 14 a Due Carrare (PD), alle 16 ad Arqu\u00e0 Polesine (RO), alle 16.45 a ROVIGO in piazza Vittorio Emanuele II, alle 18.30 a THIENE (VI) in piazza Chilesotti e per finire con Luca Zaia a VERONA, in piazza Dante, alle 21.\nE se proprio non siete ancora stanchi di Salvini, alle 22.30 mi collego con Mentana su La7 a \"Bersaglio Mobile\".\nDAI, DAI, DAI! Domenica \u00e8 vicina, ogni vostro voto... UNA RUSPA!", "post_text": "Grazie Toscana, grazie Umbria! E DOMANI, venerd\u00ec, gran finale in VENETO!\nAlle 9 sar\u00f2 a Torre di Mosto (VE), alle 10.30 a Dolo (VE) in piazza del Mercato, alle 12.15 in collegamento con La7 a \"L'Aria che Tira\",\u2026 Altro alle 12.30 a Padova al convegno \"Terrorismo di piazza\" (organizzato da UGL Polizia di Stato, presso la Sala comunale \"Fornace Carotta\"), alle 14 a Due Carrare (PD), alle 16 ad Arqu\u00e0 Polesine (RO), alle 16.45 a ROVIGO in piazza Vittorio Emanuele II, alle 18.30 a THIENE (VI) in piazza Chilesotti e per finire con Luca Zaia a VERONA, in piazza Dante, alle 21.\nE se proprio non siete ancora stanchi di Salvini, alle 22.30 mi collego con Mentana su La7 a \"Bersaglio Mobile\".\nDAI, DAI, DAI! Domenica \u00e8 vicina, ogni vostro voto... UNA RUSPA!", "shared_text": "", "time": "2015-05-28 23:40:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11060252_10153003309898155_3779538395896290008_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=TtZqQYCsRfwAQmjpGMIdgOzC2QKR3VAyZSowu9J_8K2wSQp_gXkNUxjVA&_nc_ht=scontent-cdt1-1.xx&oh=93157049bd985a01d0ea27eca548f517&oe=5E88A0BF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10153002943038155", "text": "Preferite una suite matrimoniale o una doppia uso singola??? Benvenuti nel capannone rom degli orrori a Firenze. Che SCHIFO!\nDiritti ma anche DOVERI per tutti! Domenica la scelta di pulizia si chiama LEGA!", "post_text": "Preferite una suite matrimoniale o una doppia uso singola??? Benvenuti nel capannone rom degli orrori a Firenze. Che SCHIFO!\nDiritti ma anche DOVERI per tutti! Domenica la scelta di pulizia si chiama LEGA!", "shared_text": "", "time": "2015-05-28 21:39:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153002943038155&id=252306033154", "link": null} +{"post_id": "10153002823423155", "text": "Una piazza piena, orgogliosa e pacifica, poco fa ad Arezzo.\nContestatori? Neanche l'aria..!!", "post_text": "Una piazza piena, orgogliosa e pacifica, poco fa ad Arezzo.\nContestatori? Neanche l'aria..!!", "shared_text": "", "time": "2015-05-28 21:33:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153002823423155&id=252306033154", "link": null} +{"post_id": "10153000884258155", "text": "Guarda e diffondi. Per i clandestini hotel con piscina, wifi e discoteca, per gli italiani un calcio nel sedere e il conto da pagare!\nDomenica vai a votare e questo schifo lo fermiamo!", "post_text": "Guarda e diffondi. Per i clandestini hotel con piscina, wifi e discoteca, per gli italiani un calcio nel sedere e il conto da pagare!\nDomenica vai a votare e questo schifo lo fermiamo!", "shared_text": "", "time": "2015-05-28 12:54:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10153000884258155&id=252306033154", "link": null} +{"post_id": "10152999533653155", "text": "Notte serena Amici.\nStasera mi sono concesso una pausa di poesia, relax, musica e arte con il film su Fabrizio De Andr\u00e9.\nIn direzione ostinata e contraria, sempre.", "post_text": "Notte serena Amici.\nStasera mi sono concesso una pausa di poesia, relax, musica e arte con il film su Fabrizio De Andr\u00e9.\nIn direzione ostinata e contraria, sempre.", "shared_text": "", "time": "2015-05-28 00:28:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10409034_10152999533653155_101241357676631973_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=q3mqYWqyx84AQle_Yin7NGa9_vLh8xU3AYBHpOW-Cg3AYxREx_QonyJeQ&_nc_ht=scontent-cdt1-1.xx&oh=51231fc62929b07aa9be59ec8a6867c9&oe=5E813F43", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152998614673155", "text": "Ascoltate e diffondete. Renzi paragona gli ITALIANI che emigravano in cerca di fortuna ai clandestini che sbarcano oggi. Per i nostri nonni c\u2019erano le MINIERE e il DURO LAVORO, non gli alberghi gratis.\nRenzi VERGOGNATI!!!", "post_text": "Ascoltate e diffondete. Renzi paragona gli ITALIANI che emigravano in cerca di fortuna ai clandestini che sbarcano oggi. Per i nostri nonni c\u2019erano le MINIERE e il DURO LAVORO, non gli alberghi gratis.\nRenzi VERGOGNATI!!!", "shared_text": "", "time": "2015-05-27 20:38:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152998614673155&id=252306033154", "link": null} +{"post_id": "10152997841373155", "text": "Una piazza piena ed EMOZIONANTE a San Giovanni la Punta, in provincia di Catania: anche in Sicilia c'\u00e8 voglia di cambiare!!!\nUn saluto particolare ad Angelino Alfano, ministro dell'Invasione.", "post_text": "Una piazza piena ed EMOZIONANTE a San Giovanni la Punta, in provincia di Catania: anche in Sicilia c'\u00e8 voglia di cambiare!!!\nUn saluto particolare ad Angelino Alfano, ministro dell'Invasione.", "shared_text": "", "time": "2015-05-27 16:51:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152997841373155&id=252306033154", "link": null} +{"post_id": "10152996987938155", "text": "Ascolta e fai girare: se non lo fanno Renzi, Alfano e la Boldrini, lo faremo noi! DIFENDIAMO i confini, difendiamo la nostra storia!", "post_text": "Ascolta e fai girare: se non lo fanno Renzi, Alfano e la Boldrini, lo faremo noi! DIFENDIAMO i confini, difendiamo la nostra storia!", "shared_text": "", "time": "2015-05-27 13:03:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152996987938155&id=252306033154", "link": null} +{"post_id": "10152996935918155", "text": "Il giornalista Andrea Scanzi dice che in tiv\u00f9 stravinco e che ho ragione sul \"Renzi monologante\". Grazie: chiss\u00e0, magari riesce a convincerlo lui il Renzi-coniglio a confrontarsi con me, io sempre pronto!", "post_text": "Il giornalista Andrea Scanzi dice che in tiv\u00f9 stravinco e che ho ragione sul \"Renzi monologante\". Grazie: chiss\u00e0, magari riesce a convincerlo lui il Renzi-coniglio a confrontarsi con me, io sempre pronto!", "shared_text": "", "time": "2015-05-27 12:21:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p200x200/10440113_10152996935918155_5932831603229388308_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=J5iumYm5zkwAQlAACOnecOfM26OpqbaF2Xr8y8dZD_A0W4fsqmLkAuFew&_nc_ht=scontent-cdt1-1.xx&oh=d631d6bfbe62b43bca09aa3270ecbd83&oe=5E8A496E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152992983258155", "text": "Che dite se oggi il premio \"VERGOGNATI E TACI (ch\u00e9 fai pi\u00f9 bella figura)\" lo diamo a questo GENIO, amico di Monti e della Fornero, e al suo \"gli esodati sono stati messi tutti a posto\"?", "post_text": "Che dite se oggi il premio \"VERGOGNATI E TACI (ch\u00e9 fai pi\u00f9 bella figura)\" lo diamo a questo GENIO, amico di Monti e della Fornero, e al suo \"gli esodati sono stati messi tutti a posto\"?", "shared_text": "", "time": "2015-05-26 20:43:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152992983258155&id=252306033154", "link": null} +{"post_id": "10152992889253155", "text": "A Genova 1.000 splendide persone in piazza con la Lega, GRAZIE!\nPurtroppo i soliti PARASSITI dei centri a-sociali hanno cercato di attaccare la piazza, lanciando bombe carta, petardi e bottiglie contro\u2026 Altro Poliziotti e Carabinieri.\nVotare domenica, anche in Liguria, a questo punto non \u00e8 solo un Diritto, ma un Dovere!\nPer i centri sociali? RUSPA.", "post_text": "A Genova 1.000 splendide persone in piazza con la Lega, GRAZIE!\nPurtroppo i soliti PARASSITI dei centri a-sociali hanno cercato di attaccare la piazza, lanciando bombe carta, petardi e bottiglie contro\u2026 Altro Poliziotti e Carabinieri.\nVotare domenica, anche in Liguria, a questo punto non \u00e8 solo un Diritto, ma un Dovere!\nPer i centri sociali? RUSPA.", "shared_text": "", "time": "2015-05-26 19:41:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152992889253155&id=252306033154", "link": null} +{"post_id": "10152992729208155", "text": "Ovviamente anche a Savona non potevano mancare gli Anti Leghisti, Anti Fascisti, Anti Razzisti, Anti Bla Bla Bla...", "post_text": "Ovviamente anche a Savona non potevano mancare gli Anti Leghisti, Anti Fascisti, Anti Razzisti, Anti Bla Bla Bla...", "shared_text": "", "time": "2015-05-26 18:19:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152992729208155&id=252306033154", "link": null} +{"post_id": "10152992715083155", "text": "Anche Savona, in piazza con la Lega, vuole liberarsi di Renzi e di Burlando.\nRingrazio i lavoratori del Porto per la loro presenza.", "post_text": "Anche Savona, in piazza con la Lega, vuole liberarsi di Renzi e di Burlando.\nRingrazio i lavoratori del Porto per la loro presenza.", "shared_text": "", "time": "2015-05-26 18:11:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11351210_10152992715083155_3028092923252175762_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=GS3OqYgNDSQAQmjgZD3mMUzRFiAtNO34xDrl7pVlheUOqLGyEGknvKXQg&_nc_ht=scontent-cdt1-1.xx&oh=42ad2318b661b6b9c31ea134cadf3583&oe=5E8597DF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152992673968155", "text": "Orlando SOPRAVVIVE da 4 mesi in macchina con la sua famiglia. Gli ho chiesto: \"perch\u00e9 per te, cittadino italiano, niente albergo mentre per i presunti profughi s\u00ec?\"\nAscoltate e CONDIVIDETE le sue parole... Le dedichiamo ai tanti ipocriti e finti buonisti della sinistra!", "post_text": "Orlando SOPRAVVIVE da 4 mesi in macchina con la sua famiglia. Gli ho chiesto: \"perch\u00e9 per te, cittadino italiano, niente albergo mentre per i presunti profughi s\u00ec?\"\nAscoltate e CONDIVIDETE le sue parole... Le dedichiamo ai tanti ipocriti e finti buonisti della sinistra!", "shared_text": "", "time": "2015-05-26 17:41:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152992673968155&id=252306033154", "link": null} +{"post_id": "10152992192708155", "text": "Centinaia di persone in piazza con la Lega, adesso, a Valenza: incredibile!\nChe dite, vuol dire che domenica la Lega prender\u00e0 una marea di voti?!?", "post_text": "Centinaia di persone in piazza con la Lega, adesso, a Valenza: incredibile!\nChe dite, vuol dire che domenica la Lega prender\u00e0 una marea di voti?!?", "shared_text": "", "time": "2015-05-26 14:23:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152992192708155&id=252306033154", "link": null} +{"post_id": "10152992083733155", "text": "Ecco la sede del Canile devastato: chi pu\u00f2 dare una mano la dia, io lo far\u00f2.\nP.s. Forse adesso a proteggere la struttura arriver\u00e0 l'Esercito..... Ma non sarebbe meglio sgomberare i Campi Rom che ci sono di fianco???", "post_text": "Ecco la sede del Canile devastato: chi pu\u00f2 dare una mano la dia, io lo far\u00f2.\nP.s. Forse adesso a proteggere la struttura arriver\u00e0 l'Esercito..... Ma non sarebbe meglio sgomberare i Campi Rom che ci sono di fianco???", "shared_text": "", "time": "2015-05-26 13:13:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11329923_10152992083733155_4169473199351509992_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=tUitpjvPAawAQn5UyshdWUM6EkEry_3i53hnZo-GO8Th0E8n03WcOfdPw&_nc_ht=scontent-cdt1-1.xx&oh=96ee8280adfa9a3263599955479d4c9c&oe=5E79C48E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152992084958155", "text": "Mi spiegate perch\u00e9 gli italiani devono pagare il ticket in ospedale, mentre migliaia di clandestini hanno tutte le cure gratis, magari scavalcando la fila, e senza pagare mai una lira? Io mi sono STUFATO! E, a sentire gli applausi, anche il pubblico di \"Quinta Colonna\". E voi???", "post_text": "Mi spiegate perch\u00e9 gli italiani devono pagare il ticket in ospedale, mentre migliaia di clandestini hanno tutte le cure gratis, magari scavalcando la fila, e senza pagare mai una lira? Io mi sono STUFATO! E, a sentire gli applausi, anche il pubblico di \"Quinta Colonna\". E voi???", "shared_text": "", "time": "2015-05-26 13:12:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152992084958155&id=252306033154", "link": null} +{"post_id": "10152991950663155", "text": "Torino, benvenuti nel Campo ROM \"regolare\" di via Germagnano, villette gentilmente costruite (e poi distrutte, e poi ricostruite...) dal Comune a spese dei cittadini.\nA pochi metri, il CANILE dell'Enpa distrutto pochi giorni fa (chiss\u00e0 da chi), che ha dovuto allontanare 100 cani e 30 gatti.", "post_text": "Torino, benvenuti nel Campo ROM \"regolare\" di via Germagnano, villette gentilmente costruite (e poi distrutte, e poi ricostruite...) dal Comune a spese dei cittadini.\nA pochi metri, il CANILE dell'Enpa distrutto pochi giorni fa (chiss\u00e0 da chi), che ha dovuto allontanare 100 cani e 30 gatti.", "shared_text": "", "time": "2015-05-26 12:30:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11009180_10152991950663155_6131373196461382751_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=DWOjqxwW6dgAQmdP2U66IHp0lEjTWtE30Qt89M0xJgRWN_jtGnQZ4gkMw&_nc_ht=scontent-cdt1-1.xx&oh=1e91b7cbab43fb49e540c7f10bd9df35&oe=5E80D515", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152990671078155", "text": "Genovesi, su la testa! Vi aspetto in piazza, alle 18.30!", "post_text": "Genovesi, su la testa! Vi aspetto in piazza, alle 18.30!", "shared_text": "", "time": "2015-05-25 23:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11148811_10152990669643155_2435812251287105963_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=7bqlgzvZ_1oAQnt4PEHyjDCZjo9MQ2gUJgOv_38b2AigIyDRkS_uAFqFA&_nc_ht=scontent-cdt1-1.xx&oh=0bfdf7cffe2b80edb8e7f4083567a95a&oe=5E49C858", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152989766428155", "text": "Ascoltate e diffondete, Renzi smascherato sulla legge Fornero!\nCapitooo???", "post_text": "Ascoltate e diffondete, Renzi smascherato sulla legge Fornero!\nCapitooo???", "shared_text": "", "time": "2015-05-25 19:27:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152989766428155&id=252306033154", "link": null} +{"post_id": "10152989565648155", "text": "Questa PIAZZA STRAPIENA di gente a TERNI (fatela girare sul web!!!) mi riempie di gioia, di emozione, di orgoglio, di responsabilit\u00e0: con Coraggio e Onest\u00e0, cambiare si pu\u00f2 davvero.\nSecondo voi, anche Renzi troverebbe una piazza cos\u00ec bella???", "post_text": "Questa PIAZZA STRAPIENA di gente a TERNI (fatela girare sul web!!!) mi riempie di gioia, di emozione, di orgoglio, di responsabilit\u00e0: con Coraggio e Onest\u00e0, cambiare si pu\u00f2 davvero.\nSecondo voi, anche Renzi troverebbe una piazza cos\u00ec bella???", "shared_text": "", "time": "2015-05-25 18:45:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152989565648155&id=252306033154", "link": null} +{"post_id": "10152989217538155", "text": "Mentre 85.000 presunti profughi hanno l\u2019albergo pagato dagli italiani, 1.200 TERREMOTATI emiliani sono ancora FUORI CASA.\nQuesto schifo, DOMENICA, lo abbattiamo col voto!", "post_text": "Mentre 85.000 presunti profughi hanno l\u2019albergo pagato dagli italiani, 1.200 TERREMOTATI emiliani sono ancora FUORI CASA.\nQuesto schifo, DOMENICA, lo abbattiamo col voto!", "shared_text": "", "time": "2015-05-25 16:31:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152989217538155&id=252306033154", "link": null} +{"post_id": "10152988833923155", "text": "Come promesso, oggi sono tornato all'Hotel House di Porto Recanati.\n480 appartamenti, molti occupati da spacciatori, truffatori e abusivi.\nUna decina di inquilini italiani, tutti gli altri stranieri: molti\u2026 Altro immigrati perbene, ma troppi stranieri delinquenti.\nLa soluzione per riportare ordine?\n500 uomini dell'Esercito e delle Forze dell'Ordine che in due giorni controllano, piano per piano, appartamento per appartamento, il palazzo: chi \u00e8 in regola bene, tutti gli altri rispediti col primo aereo a casa loro!", "post_text": "Come promesso, oggi sono tornato all'Hotel House di Porto Recanati.\n480 appartamenti, molti occupati da spacciatori, truffatori e abusivi.\nUna decina di inquilini italiani, tutti gli altri stranieri: molti\u2026 Altro immigrati perbene, ma troppi stranieri delinquenti.\nLa soluzione per riportare ordine?\n500 uomini dell'Esercito e delle Forze dell'Ordine che in due giorni controllano, piano per piano, appartamento per appartamento, il palazzo: chi \u00e8 in regola bene, tutti gli altri rispediti col primo aereo a casa loro!", "shared_text": "", "time": "2015-05-25 13:31:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152988833923155&id=252306033154", "link": null} +{"post_id": "10152987413623155", "text": "Stasera a Mestre: Polizia 1 - centri sociali 0.", "post_text": "Stasera a Mestre: Polizia 1 - centri sociali 0.", "shared_text": "", "time": "2015-05-24 22:57:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152987413623155&id=252306033154", "link": null} +{"post_id": "10152987112078155", "text": "Se avete voglia, qui c'\u00e8 il video del confronto di oggi su Rai Tre con Lucia Annunziata. E se vi piace, condividete sulla bacheca di qualche amico! Tante persone incontrate in giro in questi giorni, anche di\u2026 Altro sinistra, mi dicono: basta, stavolta voto LEGA! Grazie, domenica prossima dobbiamo essere in tanti, UNITI, tutti insieme, cambiare si pu\u00f2!", "post_text": "Se avete voglia, qui c'\u00e8 il video del confronto di oggi su Rai Tre con Lucia Annunziata. E se vi piace, condividete sulla bacheca di qualche amico! Tante persone incontrate in giro in questi giorni, anche di\u2026 Altro sinistra, mi dicono: basta, stavolta voto LEGA! Grazie, domenica prossima dobbiamo essere in tanti, UNITI, tutti insieme, cambiare si pu\u00f2!", "shared_text": "", "time": "2015-05-24 20:59:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152987112078155&id=252306033154", "link": null} +{"post_id": "10152986374318155", "text": "Jesolo, voglia di mare!!!\nCome passa la vostra domenica?", "post_text": "Jesolo, voglia di mare!!!\nCome passa la vostra domenica?", "shared_text": "", "time": "2015-05-24 13:39:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10986174_10152986374318155_2931979833312546762_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=HPuM8YfM-48AQlce4KmGyc7vq8XfELQxHcX6bJkkB4OS76-n0AoUZBH0A&_nc_ht=scontent-cdt1-1.xx&oh=ab4d5a3f9fe6bdb636e4c21ea1679314&oe=5E425F80", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152986336933155", "text": "La storia di Orlando e Teresa e dei loro 3 figli mi ha commosso e fatto parecchio incazzare!\nGuarda e diffondi, questo Stato lo RIBALTIAMO!!!", "post_text": "La storia di Orlando e Teresa e dei loro 3 figli mi ha commosso e fatto parecchio incazzare!\nGuarda e diffondi, questo Stato lo RIBALTIAMO!!!", "shared_text": "", "time": "2015-05-24 13:06:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152986336933155&id=252306033154", "link": null} +{"post_id": "10152986256903155", "text": "++ VENEZIA VA SALVATA! E STASERA ALLE 21 VI ASPETTO A MESTRE! ++\nDomenica 31 maggio l'appuntamento non \u00e8 solo con la conferma di Luca Zaia in Regione ma anche con le elezioni comunali, per liberare la citt\u00e0 pi\u00f9 bella del mondo dagli occupanti di sinistra.\nVi aspetto questa sera alle 21 a MESTRE in piazza Ferretto!", "post_text": "++ VENEZIA VA SALVATA! E STASERA ALLE 21 VI ASPETTO A MESTRE! ++\nDomenica 31 maggio l'appuntamento non \u00e8 solo con la conferma di Luca Zaia in Regione ma anche con le elezioni comunali, per liberare la citt\u00e0 pi\u00f9 bella del mondo dagli occupanti di sinistra.\nVi aspetto questa sera alle 21 a MESTRE in piazza Ferretto!", "shared_text": "", "time": "2015-05-24 12:08:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152986256903155&id=252306033154", "link": null} +{"post_id": "10152985101313155", "text": "Domenica, 100 anni dalla Grande Guerra. Oggi, come allora, NON PASSA LO STRANIERO!\nTi aspetto alle 14.30 sul Fiume Piave, a Nervesa della Battaglia (TV). Se Renzi e Alfano non sanno difendere i confini, se ne vadano: LI DIFENDEREMO NOI!", "post_text": "Domenica, 100 anni dalla Grande Guerra. Oggi, come allora, NON PASSA LO STRANIERO!\nTi aspetto alle 14.30 sul Fiume Piave, a Nervesa della Battaglia (TV). Se Renzi e Alfano non sanno difendere i confini, se ne vadano: LI DIFENDEREMO NOI!", "shared_text": "", "time": "2015-05-23 22:57:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11255798_10152981313683155_9087606673140876351_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=kP0BORzbaYkAQm3jlxyq9fsfNMHJWOtZm4wdcqtWtaqaEeYnhcNeN7suQ&_nc_ht=scontent-cdt1-1.xx&oh=ff67b9bc0e02a82d0144209197863779&oe=5E86957B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152984733008155", "text": "++ MENO 8! ++\nDOMENICA 31 MAGGIO (ore 7-23) \u00c8 UN REFERENDUM: O CON LORO, O CON NOI!", "post_text": "++ MENO 8! ++\nDOMENICA 31 MAGGIO (ore 7-23) \u00c8 UN REFERENDUM: O CON LORO, O CON NOI!", "shared_text": "", "time": "2015-05-23 20:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11270358_10152984732473155_3800130178078697571_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=mkCbN4Dsg5MAQkpwMQz-7UjRhhlM1kUBvd9mzh4OlnHkDbdMXCNeJPVSA&_nc_ht=scontent-cdt1-1.xx&oh=9e5c1355a7b58970758f609b5ecac6b5&oe=5E502002", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152983674478155", "text": "La signora candidata del PD in Liguria vuole accoglierli tutti\u2026 Intanto Gran Bretagna, Spagna, Austria e Francia RESPINGONO.\nDifendiamo anche noi i confini, chi non condivide \u00e8 un Renzalfano!", "post_text": "La signora candidata del PD in Liguria vuole accoglierli tutti\u2026 Intanto Gran Bretagna, Spagna, Austria e Francia RESPINGONO.\nDifendiamo anche noi i confini, chi non condivide \u00e8 un Renzalfano!", "shared_text": "", "time": "2015-05-23 13:28:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152983674478155&id=252306033154", "link": null} +{"post_id": "10152983357718155", "text": "Bellissima piazza a FELTRE, voglia di Lega!\nE il governo Renzi? IMU sui terreni agricoli in montagna, raddoppio dell'IVA sul Pellet da riscaldamento, milioni tolti alle scuole e agli ospedali di montagna.\nLa Moretti? Per me \u00e8 un'ottima birra.", "post_text": "Bellissima piazza a FELTRE, voglia di Lega!\nE il governo Renzi? IMU sui terreni agricoli in montagna, raddoppio dell'IVA sul Pellet da riscaldamento, milioni tolti alle scuole e agli ospedali di montagna.\nLa Moretti? Per me \u00e8 un'ottima birra.", "shared_text": "", "time": "2015-05-23 10:38:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11165310_10152983357718155_4848635878683836059_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=ajIeGebvNT8AQkimIKof02XO_CnRIjTGMBdt38TIxCUeoL7vP0UL7FspQ&_nc_ht=scontent-cdt1-1.xx&oh=9a6b6604f85a0cb807a77e3cee7e00f8&oe=5E4B1CAC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152981514808155", "text": "Guarda e CONDIVIDI. Come la Francia difende i suoi confini ed espelle i clandestini.\nIn Italia, invece, porte aperte e alberghi per tutti... Ma cambier\u00e0!", "post_text": "Guarda e CONDIVIDI. Come la Francia difende i suoi confini ed espelle i clandestini.\nIn Italia, invece, porte aperte e alberghi per tutti... Ma cambier\u00e0!", "shared_text": "", "time": "2015-05-22 15:03:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152981514808155&id=252306033154", "link": null} +{"post_id": "10152981300088155", "text": "A 3 anni dal terremoto in Emilia, mentre ci sono ancora 1.200 cittadini italiani che vivono fuori casa, lo Stato italiano sta pagando colazione, pranzo e cena in albergo a 85.000 presunti profughi.\nChe schifo. La nostra pazienza \u00e8 FINITA!!!", "post_text": "A 3 anni dal terremoto in Emilia, mentre ci sono ancora 1.200 cittadini italiani che vivono fuori casa, lo Stato italiano sta pagando colazione, pranzo e cena in albergo a 85.000 presunti profughi.\nChe schifo. La nostra pazienza \u00e8 FINITA!!!", "shared_text": "", "time": "2015-05-22 12:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152981270508155&id=252306033154", "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-05-22 09:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p160x160/11262445_10152980943553155_8210406686803290677_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=UavnURi345QAQlu7HsKDYqWfIEOeTdYH5Pmjw71LKqmCOWNA2e5EutfDg&_nc_ht=scontent-cdt1-1.xx&oh=ac6c247b336c6d672e12fac8214c912d&oe=5E426DCF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152979157433155", "text": "Amici, vi chiedo uno sforzo per sostenere Luca Zaia questa sera al confronto tv su SKY alle 21.10: potete televotare SCARICANDO la APP gratuita di SkyTg24 sul vostro telefonino (se invece siete abbonati, anche\u2026 Altro col telecomando).\nIl programma \u00e8 visibile sui canali 500 e 100 di Sky, sul canale 27 del digitale terrestre oppure via Internet qui: http://video.sky.it/news/diretta\nGrazieeeeee! #scelgozaia", "post_text": "Amici, vi chiedo uno sforzo per sostenere Luca Zaia questa sera al confronto tv su SKY alle 21.10: potete televotare SCARICANDO la APP gratuita di SkyTg24 sul vostro telefonino (se invece siete abbonati, anche\u2026 Altro col telecomando).\nIl programma \u00e8 visibile sui canali 500 e 100 di Sky, sul canale 27 del digitale terrestre oppure via Internet qui: http://video.sky.it/news/diretta\nGrazieeeeee! #scelgozaia", "shared_text": "", "time": "2015-05-21 17:12:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/11263017_10152979157433155_5231347607909834328_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=4o-1OYzgY-kAQmplECHy25JsXBD_XTuRN1Nqc4Q6TFPGT398Fara6QWVw&_nc_ht=scontent-cdt1-1.xx&oh=55a4596bd922412add3fcd15d6b1204a&oe=5E8415B2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://video.sky.it/news/diretta?fbclid=IwAR0He7rgYb5dQvB75YBiVPD4F-0n9HMrDM1Y7Zd1d21ZKEZLz8MtnVBN4gc"} +{"post_id": "10152978422883155", "text": "Basta con questa violenza rossa! Che ne pensate? Chi non vota il 31 maggio \u00e8 complice...", "post_text": "Basta con questa violenza rossa! Che ne pensate? Chi non vota il 31 maggio \u00e8 complice...", "shared_text": "", "time": "2015-05-21 09:52:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152978422883155&id=252306033154", "link": null} +{"post_id": "10152976495978155", "text": "Se dell'INVASIONE in corso l'Europa se ne frega, almeno il governo italiano si svegli e inizi a DIFENDERE I CONFINI, come fanno Francia, Regno Unito e tanti altri Paesi.\nSOSPENDERE SCHENGEN e bloccare le partenze dei barconi si pu\u00f2 e si deve, prima che sia troppo tardi!", "post_text": "Se dell'INVASIONE in corso l'Europa se ne frega, almeno il governo italiano si svegli e inizi a DIFENDERE I CONFINI, come fanno Francia, Regno Unito e tanti altri Paesi.\nSOSPENDERE SCHENGEN e bloccare le partenze dei barconi si pu\u00f2 e si deve, prima che sia troppo tardi!", "shared_text": "", "time": "2015-05-20 17:35:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152976495978155&id=252306033154", "link": null} +{"post_id": "10152976337713155", "text": "++ GUARDA E DIFFONDI > LA LEGA SMASCHERA UN LADRO TUNISINO (PRESUNTO PROFUGO) IN DIRETTA TV. ALLA FINE, SPUTTANATO, IL FENOMENO FA UN \"BALLETTO\" DI FRONTE ALLA TELECAMERA PER PRENDERCI TUTTI PER IL C.... RUSPAAAAAAA! ++", "post_text": "++ GUARDA E DIFFONDI > LA LEGA SMASCHERA UN LADRO TUNISINO (PRESUNTO PROFUGO) IN DIRETTA TV. ALLA FINE, SPUTTANATO, IL FENOMENO FA UN \"BALLETTO\" DI FRONTE ALLA TELECAMERA PER PRENDERCI TUTTI PER IL C.... RUSPAAAAAAA! ++", "shared_text": "", "time": "2015-05-20 15:21:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152976337713155&id=252306033154", "link": null} +{"post_id": "10152976168888155", "text": "Il sindaco di Firenze del PD che parla di banche, ridicolooooooooooo!\nI MILIARDI spariti al Monte dei Paschi di Siena chi se li \u00e8 intascati???", "post_text": "Il sindaco di Firenze del PD che parla di banche, ridicolooooooooooo!\nI MILIARDI spariti al Monte dei Paschi di Siena chi se li \u00e8 intascati???", "shared_text": "", "time": "2015-05-20 13:37:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152976168888155&id=252306033154", "link": null} +{"post_id": "10152974823938155", "text": "Un GRAZIE alla gente perbene... e a chi le uova le regala o le mangia!", "post_text": "Un GRAZIE alla gente perbene... e a chi le uova le regala o le mangia!", "shared_text": "", "time": "2015-05-19 20:11:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152974823938155&id=252306033154", "link": null} +{"post_id": "10152974123193155", "text": "Su 18 miliardi rubati ai pensionati, il \"fenomeno\" ne vuole restituire solo 2 con un \"simpatico bonus\"... E degli esodati rimasti se ne frega. Insieme a loro faremo ricorso alla Corte europea dei diritti dell'uomo contro la sciagurata legge Fornero.\nRENZI FUORILEGGE, fuori TUTTI i soldi!", "post_text": "Su 18 miliardi rubati ai pensionati, il \"fenomeno\" ne vuole restituire solo 2 con un \"simpatico bonus\"... E degli esodati rimasti se ne frega. Insieme a loro faremo ricorso alla Corte europea dei diritti dell'uomo contro la sciagurata legge Fornero.\nRENZI FUORILEGGE, fuori TUTTI i soldi!", "shared_text": "", "time": "2015-05-19 13:06:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152974123193155&id=252306033154", "link": null} +{"post_id": "10152971980293155", "text": "Io NON PAGO la casa a 40mila ROM!!! Uguali diritti, uguali doveri...\nSe sei d\u2019accordo, condividi.", "post_text": "Io NON PAGO la casa a 40mila ROM!!! Uguali diritti, uguali doveri...\nSe sei d\u2019accordo, condividi.", "shared_text": "", "time": "2015-05-18 14:22:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152971980293155&id=252306033154", "link": null} +{"post_id": "10152971921123155", "text": "100 MILA firme ai gazebo in un solo weekend: GRAZIE, Amici!\nE la raccolta prosegue: perdete un quarto d'ora di tempo e andate a firmare nel vostro Comune. \u00c8 una battaglia di civilt\u00e0 e di buon senso che dar\u00e0 solo vantaggi.\nStop alla prostituzione di strada, liberiamo le nostre citt\u00e0! Info: WWW.VIENIAFIRMARE.ORG", "post_text": "100 MILA firme ai gazebo in un solo weekend: GRAZIE, Amici!\nE la raccolta prosegue: perdete un quarto d'ora di tempo e andate a firmare nel vostro Comune. \u00c8 una battaglia di civilt\u00e0 e di buon senso che dar\u00e0 solo vantaggi.\nStop alla prostituzione di strada, liberiamo le nostre citt\u00e0! Info: WWW.VIENIAFIRMARE.ORG", "shared_text": "", "time": "2015-05-18 13:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10996059_10152971917643155_4188496260464320451_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=79zD6ucpLrMAQnYkJKyIxWVWXywi8je8DKhtDo_eYTG4fjGLWJnYxq9Tg&_nc_ht=scontent-cdt1-1.xx&oh=fbd5dcc46722b4201084564b55391de4&oe=5E79FB7C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.VIENIAFIRMARE.ORG/?fbclid=IwAR3hIkGlWdupmtr2bxQXNQzIflmC3PVy3liCGGA_koog-mL_JkkIPSkTqPI"} +{"post_id": "10152968664178155", "text": "Pi\u00f9 lavoro, meno clandestini!\nP.s. Gente in coda a Ventimiglia, per firmare il Referendum della Lega per riaprire le CASE CHIUSE.", "post_text": "Pi\u00f9 lavoro, meno clandestini!\nP.s. Gente in coda a Ventimiglia, per firmare il Referendum della Lega per riaprire le CASE CHIUSE.", "shared_text": "", "time": "2015-05-17 09:56:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11148214_10152968664178155_5139185182148328017_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=Ta8ta93BeuoAQnyveKGoNqZ63wQ3ozJlHCxPWxYGLFinmnEPLnxnbSlyg&_nc_ht=scontent-cdt1-1.xx&oh=87c46cb1b57a77e90270ddfd6dfc1e11&oe=5E852E41", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152967474788155", "text": "Questa \u00e8 PISA!\nDai ragazzi, il 31 maggio si vota e... RENZI A CASA!", "post_text": "Questa \u00e8 PISA!\nDai ragazzi, il 31 maggio si vota e... RENZI A CASA!", "shared_text": "", "time": "2015-05-16 22:19:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152967474788155&id=252306033154", "link": null} +{"post_id": "10152967398103155", "text": "GUARDA e DIFFONDI.\nInsulti, bestemmie e sputi ai poliziotti... Questi sono i \"fenomeni\" che tentano di impedirci di parlare...\nUn GRAZIE alle Forze dell'Ordine. E per questi balordi SOLO RUSPA!", "post_text": "GUARDA e DIFFONDI.\nInsulti, bestemmie e sputi ai poliziotti... Questi sono i \"fenomeni\" che tentano di impedirci di parlare...\nUn GRAZIE alle Forze dell'Ordine. E per questi balordi SOLO RUSPA!", "shared_text": "", "time": "2015-05-16 22:09:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152967398103155&id=252306033154", "link": null} +{"post_id": "10152966663908155", "text": "Un aperitivo a Marina di Pietrasanta si trasforma in un comizio in mezzo a un sacco di gente: vai!!!!!", "post_text": "Un aperitivo a Marina di Pietrasanta si trasforma in un comizio in mezzo a un sacco di gente: vai!!!!!", "shared_text": "", "time": "2015-05-16 17:04:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152966663908155&id=252306033154", "link": null} +{"post_id": "10152966370568155", "text": "Nonostante i fumogeni e le minacce dei centri a-sociali, tanta gente di MASSA \u00e8 scesa in piazza con la Lega.\nP.s. Per i ritrovi dei violenti, ruspa!", "post_text": "Nonostante i fumogeni e le minacce dei centri a-sociali, tanta gente di MASSA \u00e8 scesa in piazza con la Lega.\nP.s. Per i ritrovi dei violenti, ruspa!", "shared_text": "", "time": "2015-05-16 15:30:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152966370568155&id=252306033154", "link": null} +{"post_id": "10152966107983155", "text": "Fra poco in diretta su Sky Tg 24 dalla piazza affollata di gente di Fivizzano, in Lunigiana!", "post_text": "Fra poco in diretta su Sky Tg 24 dalla piazza affollata di gente di Fivizzano, in Lunigiana!", "shared_text": "", "time": "2015-05-16 12:21:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1506755_10152966107983155_314616450731312659_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=uBDWlQYsqIEAQmeVEPOVFgivY2CnTYF_BgJ1qJuIJfZUGuqZpsiUwWdIA&_nc_ht=scontent-cdt1-1.xx&oh=e87fbc66de6646b7e2ed5b25db2d695b&oe=5E885E28", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152965162163155", "text": "Piazza spettacolare per la Lega a Gualdo Tadino!\nRenzi, stiamo arrivando...", "post_text": "Piazza spettacolare per la Lega a Gualdo Tadino!\nRenzi, stiamo arrivando...", "shared_text": "", "time": "2015-05-15 23:13:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152965162163155&id=252306033154", "link": null} +{"post_id": "10152964675998155", "text": "Ascoltate e DIFFONDETE. In 2 minuti il commerciante vicentino Zancan smonta le palle di Renzi e del PD sulla SICUREZZA!", "post_text": "Ascoltate e DIFFONDETE. In 2 minuti il commerciante vicentino Zancan smonta le palle di Renzi e del PD sulla SICUREZZA!", "shared_text": "", "time": "2015-05-15 18:49:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152964675998155&id=252306033154", "link": null} +{"post_id": "10152963943793155", "text": "Amici umbri, stasera vi aspetto a PERUGIA, in piazza del Bacio alle 18.30.\nPi\u00f9 SICUREZZA e meno CLANDESTINI, chi non viene \u00e8 un Alfano!", "post_text": "Amici umbri, stasera vi aspetto a PERUGIA, in piazza del Bacio alle 18.30.\nPi\u00f9 SICUREZZA e meno CLANDESTINI, chi non viene \u00e8 un Alfano!", "shared_text": "", "time": "2015-05-15 11:37:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/10845796_10152963943793155_8317005532121835390_o.png.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=VrN58x6dvPsAQkT-zXWu__4V2sFGa9hQWFhZZJj1bvaikSi7uFP_J3fyw&_nc_ht=scontent-cdt1-1.xx&oh=d3732e41e52d404770b8f43f5def7155&oe=5E8BE210", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152962638198155", "text": "GUARDA e DIFFONDI. Ecco quello che succede quando un giornalista con la schiena dritta incontra la \"civilt\u00e0 ROM\"...", "post_text": "GUARDA e DIFFONDI. Ecco quello che succede quando un giornalista con la schiena dritta incontra la \"civilt\u00e0 ROM\"...", "shared_text": "", "time": "2015-05-14 19:30:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152962638198155&id=252306033154", "link": null} +{"post_id": "10152962512883155", "text": "Eccoli gli \"eroi\" anti-leghisti, lanciatori di fumogeni contro mamme e bambini... RUSPA.", "post_text": "Eccoli gli \"eroi\" anti-leghisti, lanciatori di fumogeni contro mamme e bambini... RUSPA.", "shared_text": "", "time": "2015-05-14 18:28:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11055370_10152962512883155_2731480434101718999_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=6A0F_8gkt0EAQnwxHsk_x0lWFTwaP-7AndzNawlYBDJmwK3jNkcrFQWEg&_nc_ht=scontent-cdt1-1.xx&oh=e940453128fa7555ba1d04cf0d3c10cf&oe=5E460FE1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152962500173155", "text": "Bombe carta, fumogeni, pomodori e accendini.\nAnche oggi i balordi dei CENTRI A-SOCIALI, braccio armato della sinistra, hanno provato a fermarci, ma non ci sono riusciti: ha vinto la Senigallia perbene, con\u2026 Altro tanta gente in piazza, nonostante il lancio di oggetti.\nUn abbraccio al ragazzo colpito (con un taglio al collo, come si vede nelle immagini) e alle tante mamme presenti, coi bimbi purtroppo spaventati.\nSe pensano di fermare la Lega, hanno capito male!", "post_text": "Bombe carta, fumogeni, pomodori e accendini.\nAnche oggi i balordi dei CENTRI A-SOCIALI, braccio armato della sinistra, hanno provato a fermarci, ma non ci sono riusciti: ha vinto la Senigallia perbene, con\u2026 Altro tanta gente in piazza, nonostante il lancio di oggetti.\nUn abbraccio al ragazzo colpito (con un taglio al collo, come si vede nelle immagini) e alle tante mamme presenti, coi bimbi purtroppo spaventati.\nSe pensano di fermare la Lega, hanno capito male!", "shared_text": "", "time": "2015-05-14 18:23:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152962500173155&id=252306033154", "link": null} +{"post_id": "10152961988883155", "text": "Fantastica piazza a Porto San Giorgio!\nP.s. Ma i 20 urlatori presenti, non potrebbero fare un po' di volontariato con gli anziani, invece di rompere le palle?", "post_text": "Fantastica piazza a Porto San Giorgio!\nP.s. Ma i 20 urlatori presenti, non potrebbero fare un po' di volontariato con gli anziani, invece di rompere le palle?", "shared_text": "", "time": "2015-05-14 13:11:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152961988883155&id=252306033154", "link": null} +{"post_id": "10152961813088155", "text": "Evvai! Quanta bella gente con la Lega ad Ascoli.\nUn abbraccio ai ragazzi del Liceo, che hanno bigiato per venire ad ascoltarmi!", "post_text": "Evvai! Quanta bella gente con la Lega ad Ascoli.\nUn abbraccio ai ragazzi del Liceo, che hanno bigiato per venire ad ascoltarmi!", "shared_text": "", "time": "2015-05-14 10:40:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152961813088155&id=252306033154", "link": null} +{"post_id": "10152960431973155", "text": "Villabate, vicino a Palermo: tanta gente che ha voglia di una SICILIA migliore!\nP.s. Tanta pena per i 20 lanciatori di frutta e verdura, che urlavano che siamo RAZZISTI: cosa possiamo dirgli?", "post_text": "Villabate, vicino a Palermo: tanta gente che ha voglia di una SICILIA migliore!\nP.s. Tanta pena per i 20 lanciatori di frutta e verdura, che urlavano che siamo RAZZISTI: cosa possiamo dirgli?", "shared_text": "", "time": "2015-05-13 17:40:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152960431973155&id=252306033154", "link": null} +{"post_id": "10152960044093155", "text": "Il governo chieda scusa e restituisca tutti i soldi RUBATI agli italiani dalla Legge Fornero!", "post_text": "Il governo chieda scusa e restituisca tutti i soldi RUBATI agli italiani dalla Legge Fornero!", "shared_text": "", "time": "2015-05-13 12:15:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152960044093155&id=252306033154", "link": null} +{"post_id": "10152959103723155", "text": "Mentre qualcuno sta con i clandestini, io sto con le Forze dell'Ordine.", "post_text": "Mentre qualcuno sta con i clandestini, io sto con le Forze dell'Ordine.", "shared_text": "", "time": "2015-05-12 21:28:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11203138_10152959103723155_610224580680331516_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=x46687K5o7UAQmDcXIVVq0kUJsisS1wP8coQ5H78GhlcBFI0Via5cYofw&_nc_ht=scontent-cdt1-1.xx&oh=faf677c737e6da0a80747be663a96b44&oe=5E840572", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152959010763155", "text": "Una piazza cos\u00ec ad Agrigento (citt\u00e0 di Alfano) \u00e8 uno SPETTACOLO emozionante!\nDomenica 31 maggio, votando Noi con Salvini, si mandano a casa Crocetta e Alfano.", "post_text": "Una piazza cos\u00ec ad Agrigento (citt\u00e0 di Alfano) \u00e8 uno SPETTACOLO emozionante!\nDomenica 31 maggio, votando Noi con Salvini, si mandano a casa Crocetta e Alfano.", "shared_text": "", "time": "2015-05-12 20:36:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152959010763155&id=252306033154", "link": null} +{"post_id": "10152958819108155", "text": "Il solito ritornello della sinistra: \u201cc\u2019\u00e8 bisogno degli immigrati perch\u00e9 gli italiani non fanno figli\u2026\u201d\nVediamo di fare gli ASILI NIDO GRATUITI, come in Francia. E magari gli italiani torneranno a fare pi\u00f9 figli!", "post_text": "Il solito ritornello della sinistra: \u201cc\u2019\u00e8 bisogno degli immigrati perch\u00e9 gli italiani non fanno figli\u2026\u201d\nVediamo di fare gli ASILI NIDO GRATUITI, come in Francia. E magari gli italiani torneranno a fare pi\u00f9 figli!", "shared_text": "", "time": "2015-05-12 18:27:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152958819108155&id=252306033154", "link": null} +{"post_id": "10152958354948155", "text": "Ecco cosa succede mentre i nostri invalidi campano con 280 euro al mese...\nAscolta e condividi, questo SCHIFO lo fermiamo!", "post_text": "Ecco cosa succede mentre i nostri invalidi campano con 280 euro al mese...\nAscolta e condividi, questo SCHIFO lo fermiamo!", "shared_text": "", "time": "2015-05-12 12:33:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152958354948155&id=252306033154", "link": null} +{"post_id": "10152958196838155", "text": "Mamma mia!\nFra poco sono in diretta su Sky Tg 24, poi al Ministero del Tesoro per la vicenda Fornero-pensioni, nel pomeriggio in Sicilia.", "post_text": "Mamma mia!\nFra poco sono in diretta su Sky Tg 24, poi al Ministero del Tesoro per la vicenda Fornero-pensioni, nel pomeriggio in Sicilia.", "shared_text": "", "time": "2015-05-12 10:08:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p206x206/10931106_10152958196838155_8153999156796200049_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=aigcrs41kxQAQly7mC1ujtQJQ4vslpmkWuNBZsDrRvRcfEJtldBFPukFA&_nc_ht=scontent-cdt1-1.xx&oh=0b4a5c35c0b5c46c5a8646c0720c1183&oe=5E8BE90F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152956919433155", "text": "Ormai ogni volta che facciamo un incontro ci troviamo i TEPPISTI organizzati dei centri sociali che tentano con la violenza di impedirci di parlare.\nAlfano non muove un dito. E Renzi non dice una parola...\nChe dite, GOVERNO COMPLICE?", "post_text": "Ormai ogni volta che facciamo un incontro ci troviamo i TEPPISTI organizzati dei centri sociali che tentano con la violenza di impedirci di parlare.\nAlfano non muove un dito. E Renzi non dice una parola...\nChe dite, GOVERNO COMPLICE?", "shared_text": "", "time": "2015-05-11 20:00:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152956919433155&id=252306033154", "link": null} +{"post_id": "10152956514138155", "text": "Migliaia di persone incontrate... E poi i soliti violenti dei centri sociali che attaccano noi e le forze dell'ordine.\nIO NON MI FERMO ma Alfano, se ne \u00e8 capace, faccia il suo lavoro e permetta alla gente perbene di manifestare!", "post_text": "Migliaia di persone incontrate... E poi i soliti violenti dei centri sociali che attaccano noi e le forze dell'ordine.\nIO NON MI FERMO ma Alfano, se ne \u00e8 capace, faccia il suo lavoro e permetta alla gente perbene di manifestare!", "shared_text": "", "time": "2015-05-11 15:28:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152956514138155&id=252306033154", "link": null} +{"post_id": "10152956326848155", "text": "Guardate che accoglienza stupenda a FOGGIA!\nUn abbraccio anche agli studenti del liceo Volta, che hanno perso qualche ora di lezione per venirmi ad ascoltare: tutti giustificati!", "post_text": "Guardate che accoglienza stupenda a FOGGIA!\nUn abbraccio anche agli studenti del liceo Volta, che hanno perso qualche ora di lezione per venirmi ad ascoltare: tutti giustificati!", "shared_text": "", "time": "2015-05-11 12:53:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152956326848155&id=252306033154", "link": null} +{"post_id": "10152955106093155", "text": "Anche a BARI sala strapiena!\nSi parla della sanit\u00e0 pugliese che non funziona, dell'agricoltura massacrata dalle tasse, della sicurezza che non c'\u00e8 e del lavoro che lascia la Puglia, sono con noi anche i rappresentanti dei 500 operai della Natuzzi che sono a casa da tempo.\nA casa la Sinistra, RAZZISTA con gli italiani.", "post_text": "Anche a BARI sala strapiena!\nSi parla della sanit\u00e0 pugliese che non funziona, dell'agricoltura massacrata dalle tasse, della sicurezza che non c'\u00e8 e del lavoro che lascia la Puglia, sono con noi anche i rappresentanti dei 500 operai della Natuzzi che sono a casa da tempo.\nA casa la Sinistra, RAZZISTA con gli italiani.", "shared_text": "", "time": "2015-05-10 21:47:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152955106093155&id=252306033154", "link": null} +{"post_id": "10152954923238155", "text": "Eccezionale accoglienza nella bellissima LECCE: anche in Salento e in Puglia il razzismo della sinistra ha stancato!", "post_text": "Eccezionale accoglienza nella bellissima LECCE: anche in Salento e in Puglia il razzismo della sinistra ha stancato!", "shared_text": "", "time": "2015-05-10 19:52:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152954923238155&id=252306033154", "link": null} +{"post_id": "10152954017868155", "text": "Qui sotto il programma, da oggi a mercoled\u00ec, dalla Puglia alla Sicilia, passando per Roma. Chi si ferma \u00e8 perduto!\n=== PROGRAMMA ===\n10 maggio (domenica)\nOre 17.00 Conferenza stampa a LECCE in via del Mare 15\u2026 Altro c/o sede \"Noi con Salvini\"\nOre 17.30 Incontro pubblico a LECCE c/o Grand Hotel Tiziano e dei Congressi in viale Porta d\u2019Europa 73\nOre 21.30 Incontro pubblico a BARI c/o Hotel Villa Romanazzi Carducci in via Giuseppe Capruzzi 326\n11 maggio (luned\u00ec)\nOre 9.30 Conferenza stampa e presentazione candidati al Comune ad ANDRIA c/o Hotel Cristal Palace in via Firenze 35\nOre 11.30 Incontro pubblico a FOGGIA c/o Hotel Cicolella in via XXIV Maggio 60\nOre 21.00 a ROMA c/o Teatro Brancaccio (via Merulana 244)\n12 maggio 2015 (marted\u00ec)\nOre 9,30 conferenza stampa presso segreteria regionale a Catania in via Orto Limoni n. 5/A\nOre 11,30 Pedara (CT)\nOre 15 - 17 Gela (CL)\nOre 18 - 20 Agrigento (alle ore 19 comizio)\nOre 22 Di Marted\u00ec, La7\n13 maggio (mercoled\u00ec)\nOre 10 Marsala\nOre 15,30 - 17,00 Villabate (PA)\nOre 23,30 Trasmissione Matrix, Canale5", "post_text": "Qui sotto il programma, da oggi a mercoled\u00ec, dalla Puglia alla Sicilia, passando per Roma. Chi si ferma \u00e8 perduto!\n=== PROGRAMMA ===\n10 maggio (domenica)\nOre 17.00 Conferenza stampa a LECCE in via del Mare 15\u2026 Altro c/o sede \"Noi con Salvini\"\nOre 17.30 Incontro pubblico a LECCE c/o Grand Hotel Tiziano e dei Congressi in viale Porta d\u2019Europa 73\nOre 21.30 Incontro pubblico a BARI c/o Hotel Villa Romanazzi Carducci in via Giuseppe Capruzzi 326\n11 maggio (luned\u00ec)\nOre 9.30 Conferenza stampa e presentazione candidati al Comune ad ANDRIA c/o Hotel Cristal Palace in via Firenze 35\nOre 11.30 Incontro pubblico a FOGGIA c/o Hotel Cicolella in via XXIV Maggio 60\nOre 21.00 a ROMA c/o Teatro Brancaccio (via Merulana 244)\n12 maggio 2015 (marted\u00ec)\nOre 9,30 conferenza stampa presso segreteria regionale a Catania in via Orto Limoni n. 5/A\nOre 11,30 Pedara (CT)\nOre 15 - 17 Gela (CL)\nOre 18 - 20 Agrigento (alle ore 19 comizio)\nOre 22 Di Marted\u00ec, La7\n13 maggio (mercoled\u00ec)\nOre 10 Marsala\nOre 15,30 - 17,00 Villabate (PA)\nOre 23,30 Trasmissione Matrix, Canale5", "shared_text": "", "time": "2015-05-10 10:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11244734_10152954014773155_248064015767453245_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=ZwSfDT1urAMAQkZIcl0MK5IHM-Nzq-BdE5ms60xgx_bGPGNhIemJ0nbMA&_nc_ht=scontent-cdt1-1.xx&oh=bd9d25d2d385559c6f04f2c112ca4284&oe=5E8C7D99", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152952941073155", "text": "I presunti profughi si lamentano dell'accoglienza italiana? Tornate a CASAAAAA!!!\nAscoltate e diffondete, chi non condivide \u00e8 un Gad Lerner!", "post_text": "I presunti profughi si lamentano dell'accoglienza italiana? Tornate a CASAAAAA!!!\nAscoltate e diffondete, chi non condivide \u00e8 un Gad Lerner!", "shared_text": "", "time": "2015-05-09 20:52:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152952941073155&id=252306033154", "link": null} +{"post_id": "10152952131178155", "text": "Si parte, amici!\nDa oggi \u00e8 attivo il TESSERAMENTO UFFICIALE di \"Noi con Salvini\" sul sito:\nWWW.NOICONSALVINI.ORG/ISCRIVITI\n\u00c8 aperto sia a chi aveva gi\u00e0 partecipato alla fase di censimento e pre-adesione, sia ai\u2026 Altro nuovi. Vi aspetto in tanti, dalle regioni del Centro, del Sud e delle Isole: per tornare tutti insieme ad essere SICURI, LIBERI e FORTI!", "post_text": "Si parte, amici!\nDa oggi \u00e8 attivo il TESSERAMENTO UFFICIALE di \"Noi con Salvini\" sul sito:\nWWW.NOICONSALVINI.ORG/ISCRIVITI\n\u00c8 aperto sia a chi aveva gi\u00e0 partecipato alla fase di censimento e pre-adesione, sia ai\u2026 Altro nuovi. Vi aspetto in tanti, dalle regioni del Centro, del Sud e delle Isole: per tornare tutti insieme ad essere SICURI, LIBERI e FORTI!", "shared_text": "", "time": "2015-05-09 12:06:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/11206070_10152952131178155_6561196521075048285_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=aMbVpS10fqUAQmfdQD7VjJsnn5J3e2TlAvE_8jJp3aoRtsrjFTqzOmRqA&_nc_ht=scontent-cdt1-1.xx&oh=cd88dff65d8dd0811d11f17ba708aa04&oe=5E5070AE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.NOICONSALVINI.ORG/ISCRIVITI?fbclid=IwAR1goz_9WrHmox19ekR_fNJ1gMM7jxg1180AlqJoNiz3T3PeBD4mCE-4s78"} +{"post_id": "10152950682728155", "text": "C\u2019\u00e8 chi \u201ccoccola\u201d violenti, balordi e lanciatori di molotov\u2026\nNoi stiamo con le Forze dell\u2019Ordine, SEMPRE!", "post_text": "C\u2019\u00e8 chi \u201ccoccola\u201d violenti, balordi e lanciatori di molotov\u2026\nNoi stiamo con le Forze dell\u2019Ordine, SEMPRE!", "shared_text": "", "time": "2015-05-08 21:22:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152950682728155&id=252306033154", "link": null} +{"post_id": "10152949250503155", "text": "RITIRARE la carica e lo stipendio di SENATORE A VITA al signor Mario Monti!\nAltro che non restituire i soldi a milioni di pensionati...", "post_text": "RITIRARE la carica e lo stipendio di SENATORE A VITA al signor Mario Monti!\nAltro che non restituire i soldi a milioni di pensionati...", "shared_text": "", "time": "2015-05-08 13:49:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152949250503155&id=252306033154", "link": null} +{"post_id": "10152947954683155", "text": "Il disabile italiano, con genitori italiani, con nonni italiani, deve campare con 250 euro al mese. Per chi sbarca, invece, vitto e alloggio per oltre 1.000 euro al mese.\nQuesta VERGOGNA la fermiamo, questo Stato lo RIBALTIAMO!", "post_text": "Il disabile italiano, con genitori italiani, con nonni italiani, deve campare con 250 euro al mese. Per chi sbarca, invece, vitto e alloggio per oltre 1.000 euro al mese.\nQuesta VERGOGNA la fermiamo, questo Stato lo RIBALTIAMO!", "shared_text": "", "time": "2015-05-07 21:51:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152947954683155&id=252306033154", "link": null} +{"post_id": "10152945191798155", "text": "Gran finale a Rovereto: sala piena e 100 persone fuori, che non riescono a entrare, spettacolo!\nP.s. Ovviamente non potevano mancare 6 contestatori urlanti... Ruspa.", "post_text": "Gran finale a Rovereto: sala piena e 100 persone fuori, che non riescono a entrare, spettacolo!\nP.s. Ovviamente non potevano mancare 6 contestatori urlanti... Ruspa.", "shared_text": "", "time": "2015-05-06 21:56:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152945191798155&id=252306033154", "link": null} +{"post_id": "10152945122098155", "text": "La parlamentare del PD ringrazia Monti, Letta, Renzi e la Fornero...\nLo vada a dire ai tanti italiani che, \"grazie\" a loro, hanno perso un lavoro!", "post_text": "La parlamentare del PD ringrazia Monti, Letta, Renzi e la Fornero...\nLo vada a dire ai tanti italiani che, \"grazie\" a loro, hanno perso un lavoro!", "shared_text": "", "time": "2015-05-06 21:25:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152945122098155&id=252306033154", "link": null} +{"post_id": "10152945027643155", "text": "Fra poco in collegamento da Ala (Trento) in diretta su Rete 4.", "post_text": "Fra poco in collegamento da Ala (Trento) in diretta su Rete 4.", "shared_text": "", "time": "2015-05-06 20:32:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/11251286_10152945027643155_5465057264453723812_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=PoIpnU_tuR4AQmZxXELr86l_H61FwKZnFpjd-Wbr3ICvm3GnGikN5YtrQ&_nc_ht=scontent-cdt1-1.xx&oh=83d9131947bc3c685e5965086ad36ad3&oe=5E84D75D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152944754528155", "text": "Una piazza stupenda, pacifica e piena di gente perbene: questa \u00e8 Trento!\nRenzi, stiamo arrivandooooo.", "post_text": "Una piazza stupenda, pacifica e piena di gente perbene: questa \u00e8 Trento!\nRenzi, stiamo arrivandooooo.", "shared_text": "", "time": "2015-05-06 18:17:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152944754528155&id=252306033154", "link": null} +{"post_id": "10152943030233155", "text": "INCREDIBILE!!!\nPiazza Matteotti strapiena di gente con la Lega a Bolzano!", "post_text": "INCREDIBILE!!!\nPiazza Matteotti strapiena di gente con la Lega a Bolzano!", "shared_text": "", "time": "2015-05-05 18:42:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152943030233155&id=252306033154", "link": null} +{"post_id": "10152942553988155", "text": "TOGLIERE DALLE STRADE, regolamentare, ripulire e TASSARE la PROSTITUZIONE.\nSe vai nel tuo Comune e metti la tua FIRMA per il nostro referendum per riaprire le Case Chiuse, si pu\u00f2 fare.\nInfo. allo 02 66234234 o vieniafirmare.org", "post_text": "TOGLIERE DALLE STRADE, regolamentare, ripulire e TASSARE la PROSTITUZIONE.\nSe vai nel tuo Comune e metti la tua FIRMA per il nostro referendum per riaprire le Case Chiuse, si pu\u00f2 fare.\nInfo. allo 02 66234234 o vieniafirmare.org", "shared_text": "", "time": "2015-05-05 13:20:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1610922_10152942553988155_2838243452411065536_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=H0RFIH3Dz-AAQlkAphvA29j8wdzvvDPyCa0FKTd64NrynW0HPByWSgyXw&_nc_ht=scontent-cdt1-1.xx&oh=98db24c740af75c1991cfd8eb56420c2&oe=5E49FBA4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://vieniafirmare.org/?fbclid=IwAR22Nov6rqomKltA4-msmA7mhayTJs_uAZ8JaiQ8Vi6RwxNb54uxaRpjLVc"} +{"post_id": "10152941440843155", "text": "\"E poi, se avanza del tempo, vado anche a rubare\" dice il ROM con il doppio \"lavoro\"...\nRUSPA.", "post_text": "\"E poi, se avanza del tempo, vado anche a rubare\" dice il ROM con il doppio \"lavoro\"...\nRUSPA.", "shared_text": "", "time": "2015-05-04 21:07:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152941440843155&id=252306033154", "link": null} +{"post_id": "10152941298098155", "text": "Questa \u00e8 la Milano pulita, a volto scoperto, che MI PIACE!", "post_text": "Questa \u00e8 la Milano pulita, a volto scoperto, che MI PIACE!", "shared_text": "", "time": "2015-05-04 19:25:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152941298098155&id=252306033154", "link": null} +{"post_id": "10152940642153155", "text": "Guardate, amici! L'ONOREVOLE Picierno del Pd d\u00e0 lezioni di buona educazione...", "post_text": "Guardate, amici! L'ONOREVOLE Picierno del Pd d\u00e0 lezioni di buona educazione...", "shared_text": "", "time": "2015-05-04 14:57:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152940642153155&id=252306033154", "link": null} +{"post_id": "10152940517658155", "text": "Vi aspetto oggi a Milano alle 18 in Piazza della Scala, chi non viene \u00e8 un Pisapia!", "post_text": "Vi aspetto oggi a Milano alle 18 in Piazza della Scala, chi non viene \u00e8 un Pisapia!", "shared_text": "", "time": "2015-05-04 13:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/1522909_10152940517263155_6659563506719968266_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=3OC5p_hD6-MAQmDT-eQKRuV3LvTK9vdh0DWVQjquyqjLIhiB0xlQEhPBw&_nc_ht=scontent-cdt1-1.xx&oh=99bf205b3ac93d479659af625a96b072&oe=5E82B021", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152940373908155", "text": "Ecco quello che tv e giornali non hanno fatto vedere. Questa l'accoglienza dei milanesi al \"sindaco\" incapace e protettore dei centri a-sociali...\nVi aspetto oggi a Milano alle 18 in Piazza della Scala, chi non viene \u00e8 un Pisapia!", "post_text": "Ecco quello che tv e giornali non hanno fatto vedere. Questa l'accoglienza dei milanesi al \"sindaco\" incapace e protettore dei centri a-sociali...\nVi aspetto oggi a Milano alle 18 in Piazza della Scala, chi non viene \u00e8 un Pisapia!", "shared_text": "", "time": "2015-05-04 10:48:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152940373908155&id=252306033154", "link": null} +{"post_id": "10152937133583155", "text": "Insulti agli \"sbirri\", \"non c'avete un cazzo da fare\", \"possiamo fare sesso selvaggio in cella?\"... orgoglioso che la signora non voti Lega...\nP.s. per stomaci forti, da GUARDARE e CONDIVIDERE a vostro rischio e pericolo", "post_text": "Insulti agli \"sbirri\", \"non c'avete un cazzo da fare\", \"possiamo fare sesso selvaggio in cella?\"... orgoglioso che la signora non voti Lega...\nP.s. per stomaci forti, da GUARDARE e CONDIVIDERE a vostro rischio e pericolo", "shared_text": "", "time": "2015-05-02 18:50:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152937108968155&id=252306033154", "link": null} +{"post_id": "10152934956673155", "text": "Amici, GUARDATE e CONDIVIDETE: a questo imbecille che pena dareste???", "post_text": "Amici, GUARDATE e CONDIVIDETE: a questo imbecille che pena dareste???", "shared_text": "", "time": "2015-05-01 20:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152934933593155&id=252306033154", "link": null} +{"post_id": "10152934512463155", "text": "Spettacolo: centinaia di persone in piazza con la Lega a Montecatini Terme!\nVuoi vedere che la gente inizia a stancarsi di Renzi?", "post_text": "Spettacolo: centinaia di persone in piazza con la Lega a Montecatini Terme!\nVuoi vedere che la gente inizia a stancarsi di Renzi?", "shared_text": "", "time": "2015-05-01 16:22:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152934512463155&id=252306033154", "link": null} +{"post_id": "10152934337698155", "text": "Incontro con i VIVAISTI della provincia di Pistoia, 1.300 aziende che esportano alberi in tutto il mondo.\nOvviamente senza nessun contributo da parte dello Stato e dell'Europa...", "post_text": "Incontro con i VIVAISTI della provincia di Pistoia, 1.300 aziende che esportano alberi in tutto il mondo.\nOvviamente senza nessun contributo da parte dello Stato e dell'Europa...", "shared_text": "", "time": "2015-05-01 13:57:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/11072764_10152934337698155_2698537405734128945_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=29lKDsScMIMAQkiE6oTkflwCLBAnKFvEdBOe1UsXwPu4GnH3rDXsZ7HLg&_nc_ht=scontent-cdt1-1.xx&oh=21bc0114bb4439d0a9cd05eb18f9aaf3&oe=5E812B7D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152934276278155", "text": "Il signor rom: noi siamo perseguitati, noi vogliamo dei piccoli campi, con delle case in periferia. Chi paga? L'Europa. Cio\u00e8 noi... Ma bastaaa!", "post_text": "Il signor rom: noi siamo perseguitati, noi vogliamo dei piccoli campi, con delle case in periferia. Chi paga? L'Europa. Cio\u00e8 noi... Ma bastaaa!", "shared_text": "", "time": "2015-05-01 13:05:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152934276278155&id=252306033154", "link": null} +{"post_id": "10152933436933155", "text": "Notte serena Amici, \u00e8 gente stupenda come quella incontrata stasera che mi dice che le cose cambieranno!", "post_text": "Notte serena Amici, \u00e8 gente stupenda come quella incontrata stasera che mi dice che le cose cambieranno!", "shared_text": "", "time": "2015-05-01 00:44:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152933436933155&id=252306033154", "link": null} +{"post_id": "10152932131063155", "text": "Per la parlamentare \"migrante\" (e sinistra) serve un'operazione MARE NOSTRUM pi\u00f9 grande... Ricoveratelaaaa!", "post_text": "Per la parlamentare \"migrante\" (e sinistra) serve un'operazione MARE NOSTRUM pi\u00f9 grande... Ricoveratelaaaa!", "shared_text": "", "time": "2015-04-30 12:47:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152932131063155&id=252306033154", "link": null} +{"post_id": "10152930447148155", "text": "Per Juncker dovremmo aprire le porte a un miliardo di Africani. Ma siamo matti??? Con milioni di DISOCCUPATI, non c'\u00e8 posto per un solo immigrato in pi\u00f9!", "post_text": "Per Juncker dovremmo aprire le porte a un miliardo di Africani. Ma siamo matti??? Con milioni di DISOCCUPATI, non c'\u00e8 posto per un solo immigrato in pi\u00f9!", "shared_text": "", "time": "2015-04-29 17:31:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152930447148155&id=252306033154", "link": null} +{"post_id": "10152929899043155", "text": "Oggi il Premio \u201cBuonista a spese degli italiani\u201d lo vince questa giornalista di Repubblica che sui clandestini dice: \u201cpossiamo ospitarne ancora tanti!\u201d. Quanti ne accoglier\u00e0 a casa sua?", "post_text": "Oggi il Premio \u201cBuonista a spese degli italiani\u201d lo vince questa giornalista di Repubblica che sui clandestini dice: \u201cpossiamo ospitarne ancora tanti!\u201d. Quanti ne accoglier\u00e0 a casa sua?", "shared_text": "", "time": "2015-04-29 13:00:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152929899043155&id=252306033154", "link": null} +{"post_id": "10152929638843155", "text": "Strasburgo, ennesimo, ipocrita dibattito sull'IMMIGRAZIONE.\nIl presidente della Commissione Europea Juncker ha appena detto che \"bisogna aprire le porte, se non vogliamo che la gente entri dalla finestra\".\nAVANTI TUTTI, secondo lui... E il PD ha applaudito convinto.\nRicoveratelo!\nE se proprio vuole apra le porte, ma di casa sua.", "post_text": "Strasburgo, ennesimo, ipocrita dibattito sull'IMMIGRAZIONE.\nIl presidente della Commissione Europea Juncker ha appena detto che \"bisogna aprire le porte, se non vogliamo che la gente entri dalla finestra\".\nAVANTI TUTTI, secondo lui... E il PD ha applaudito convinto.\nRicoveratelo!\nE se proprio vuole apra le porte, ma di casa sua.", "shared_text": "", "time": "2015-04-29 09:38:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11209377_10152929635808155_5620135157226892128_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=KZrMLtpBExEAQleV6yB-YO5Cq-6Zxx_ks2SRLCqmeRQ5ztUG-Ocqxw0Ww&_nc_ht=scontent-cdt1-1.xx&oh=bdb2c180481c6dd57e7a9a1f481f6a3e&oe=5E513DD1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152928460028155", "text": "\"Io non sono leghista per\u00f2...\"\nAscoltate le parole della scrittrice Sveva Casati Modignani sull'invasione in corso.\nChiarezza e buonsenso, SENZA IPOCRISIA. Mi piace!", "post_text": "\"Io non sono leghista per\u00f2...\"\nAscoltate le parole della scrittrice Sveva Casati Modignani sull'invasione in corso.\nChiarezza e buonsenso, SENZA IPOCRISIA. Mi piace!", "shared_text": "", "time": "2015-04-28 20:52:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152928460028155&id=252306033154", "link": null} +{"post_id": "10152927215338155", "text": "Fate attenzione e diffondete ai vostri amici!\nIl rom: \u201cecco come frego le auto agli italiani senza fare un giorno di galera\u2026\u201d\nRUSPA!", "post_text": "Fate attenzione e diffondete ai vostri amici!\nIl rom: \u201cecco come frego le auto agli italiani senza fare un giorno di galera\u2026\u201d\nRUSPA!", "shared_text": "", "time": "2015-04-28 12:42:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152927215338155&id=252306033154", "link": null} +{"post_id": "10152927032193155", "text": "Sms arrivato ieri.\n\"Buonasera Salvini, sono il proprietario di un capannone a Firenze, occupato da 50 ROM ormai da due anni. Non riesco a liberarlo nonostante le varie denunce, in compenso lo Stato mi chiede\u2026 Altro comunque il pagamento dell'IMU\".\nPazzesco. Paga Renzi?\nOvviamente quel capannone lo andr\u00f2 a visitare prestissimo!!!\nChe dite, RUSPA?", "post_text": "Sms arrivato ieri.\n\"Buonasera Salvini, sono il proprietario di un capannone a Firenze, occupato da 50 ROM ormai da due anni. Non riesco a liberarlo nonostante le varie denunce, in compenso lo Stato mi chiede\u2026 Altro comunque il pagamento dell'IMU\".\nPazzesco. Paga Renzi?\nOvviamente quel capannone lo andr\u00f2 a visitare prestissimo!!!\nChe dite, RUSPA?", "shared_text": "", "time": "2015-04-28 11:36:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10996072_10152927029293155_5530834607848621718_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=IGkYQ2iI_4wAQmFjYI9z3aScCS7iZH7mMV9wSOn6oeQaV0_T0GQydyIzQ&_nc_ht=scontent-cdt1-1.xx&oh=c1c3e2d410a1deb7e350192fb46e181f&oe=5E4B72B1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152925762328155", "text": "Bella la \"democrazia\" dei compagni. La VIOLENZA non ha mai ragione, mai.\nCi fate paura? Noooooooo!", "post_text": "Bella la \"democrazia\" dei compagni. La VIOLENZA non ha mai ragione, mai.\nCi fate paura? Noooooooo!", "shared_text": "", "time": "2015-04-27 22:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11149636_10152925760753155_687096441133680207_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=2R8TDAbPYjoAQnKTcu-mOD2EjH2phcykzdKfq2vH4GweBxXp9rV0IL_HQ&_nc_ht=scontent-cdt1-1.xx&oh=34d2f82986eae78f2a97af38f0825eca&oe=5E8C4956", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152925107843155", "text": "Macerata: 300 cittadini perbene, molti giovani, in piazza ad ascoltare le proposte della Lega: GRAZIE!\nA poca distanza, 30 perditempo dei centri a-sociali a lanciare le solite uova: ma non hanno dei genitori che gli tirino due schiaffi educativi???", "post_text": "Macerata: 300 cittadini perbene, molti giovani, in piazza ad ascoltare le proposte della Lega: GRAZIE!\nA poca distanza, 30 perditempo dei centri a-sociali a lanciare le solite uova: ma non hanno dei genitori che gli tirino due schiaffi educativi???", "shared_text": "", "time": "2015-04-27 17:03:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152925107843155&id=252306033154", "link": null} +{"post_id": "10152924826053155", "text": "Hotel House di Porto Recanati.\n400 appartamenti che, fra spaccio, armi, prostituzione e abusivismo, sono un inferno.\nManifestanti del PD e della CGIL, insieme ad abusivi e centri a-sociali, hanno bloccato l'\u2026 Altroingresso al palazzo.\nA loro vanno bene il casino e lo spaccio?\nE pensare che a chiedere l'aiuto della Lega sono stati dei cittadini africani perbene!\nLa soluzione per certa gente? RUSPA.", "post_text": "Hotel House di Porto Recanati.\n400 appartamenti che, fra spaccio, armi, prostituzione e abusivismo, sono un inferno.\nManifestanti del PD e della CGIL, insieme ad abusivi e centri a-sociali, hanno bloccato l'\u2026 Altroingresso al palazzo.\nA loro vanno bene il casino e lo spaccio?\nE pensare che a chiedere l'aiuto della Lega sono stati dei cittadini africani perbene!\nLa soluzione per certa gente? RUSPA.", "shared_text": "", "time": "2015-04-27 15:02:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152924826053155&id=252306033154", "link": null} +{"post_id": "10152924637648155", "text": "Facebook mi ha bannato per aver scritto la parola \"zing@ro\", ma i \"sinceri democratici\" dei centri a-sociali possono vantarsi pubblicamente, sulla loro pagina, del lancio di uova, fumogeni e altri oggetti al nostro gazebo ad Ancona, rischiando di colpire mamme e bambini presenti. Vergogna!\nP.s. Ovviamente Alfano dorme e tace...", "post_text": "Facebook mi ha bannato per aver scritto la parola \"zing@ro\", ma i \"sinceri democratici\" dei centri a-sociali possono vantarsi pubblicamente, sulla loro pagina, del lancio di uova, fumogeni e altri oggetti al nostro gazebo ad Ancona, rischiando di colpire mamme e bambini presenti. Vergogna!\nP.s. Ovviamente Alfano dorme e tace...", "shared_text": "", "time": "2015-04-27 13:36:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/10668934_10152924607438155_2212162434544303761_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=8kxhIV0-WZsAQmdzTxQTz0AkZQBkRfBM5EN72ATza2x6VJ1aIJPoztGog&_nc_ht=scontent-cdt1-1.xx&oh=3be725a0e7c2a66e4bbba1440bdad6ba&oe=5E81B26D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152924531008155", "text": "30 figli di pap\u00e0 dei centri a-sociali hanno lanciato uova e arance contro i cittadini di Ancona che hanno accolto la Lega.\nBella la \"democrazia\" dei compagni...\nCi fate paura? Nooooooooo.\nPi\u00f9 sicurezza e pi\u00f9 lavoro, meno clandestini e meno zecche rosse: anche nelle Marche si pu\u00f2!", "post_text": "30 figli di pap\u00e0 dei centri a-sociali hanno lanciato uova e arance contro i cittadini di Ancona che hanno accolto la Lega.\nBella la \"democrazia\" dei compagni...\nCi fate paura? Nooooooooo.\nPi\u00f9 sicurezza e pi\u00f9 lavoro, meno clandestini e meno zecche rosse: anche nelle Marche si pu\u00f2!", "shared_text": "", "time": "2015-04-27 12:23:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11193323_10152924527638155_339433606601304132_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=0UQRAgo1JMsAQltfsYv7OVkl4_hCuClTr7VXFL-TvW9tYkAzcJj1ZVyVA&_nc_ht=scontent-cdt1-1.xx&oh=8ed266abb3e2a89e6a1e976e585417eb&oe=5E7BB4F5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152916250118155", "text": "I soliti violenti di sinistra, contro la Lega a Torino. E poi magari vanno in piazza per \"difendere la democrazia\"... Che pena!", "post_text": "I soliti violenti di sinistra, contro la Lega a Torino. E poi magari vanno in piazza per \"difendere la democrazia\"... Che pena!", "shared_text": "", "time": "2015-04-24 09:09:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/1537952_10152916250033155_9012710086481482241_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=YCQjUEQqyigAQkLt2_N_0TtruRjsUJuX9MfEV3iozfoiRq2r2p_-bTg8A&_nc_ht=scontent-cdt1-1.xx&oh=b18ec7f267809aebab37e2ed439b0fe0&oe=5E4D07DE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152915112923155", "text": "E \"andiamo qualche volta a rubare\" dice il rom con l'hobby del furto...\nRUSPA.", "post_text": "E \"andiamo qualche volta a rubare\" dice il rom con l'hobby del furto...\nRUSPA.", "shared_text": "", "time": "2015-04-23 21:13:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152915112923155&id=252306033154", "link": null} +{"post_id": "10152914364208155", "text": "Ancora \"baby-ladre\" rom, ancora borseggi, ancora risate.\n(Ma i genitori dove saranno?)\nAvanti, amici di \"Mattino Cinque\": le verit\u00e0 scomode danno fastidio a Santoro e compagni, ma la gente perbene vi ringrazia.\nP.s. se avete tempo, qui c'\u00e8 il servizio completo: http://dai.ly/x2nnv4i", "post_text": "Ancora \"baby-ladre\" rom, ancora borseggi, ancora risate.\n(Ma i genitori dove saranno?)\nAvanti, amici di \"Mattino Cinque\": le verit\u00e0 scomode danno fastidio a Santoro e compagni, ma la gente perbene vi ringrazia.\nP.s. se avete tempo, qui c'\u00e8 il servizio completo: http://dai.ly/x2nnv4i", "shared_text": "", "time": "2015-04-23 14:36:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152914364208155&id=252306033154", "link": "http://dai.ly/x2nnv4i?fbclid=IwAR2ZT7ssqlG2TKnbSM3n_JQBE7NIR6b5ZL4M18qxM4tLWTA29jzXu-WEXLU"} +{"post_id": "10152912537183155", "text": "Anche per voi milioni in banca e, magari, bollette gratis??? Se ti fa incazzare, condividi!", "post_text": "Anche per voi milioni in banca e, magari, bollette gratis??? Se ti fa incazzare, condividi!", "shared_text": "", "time": "2015-04-22 19:59:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152912537183155&id=252306033154", "link": null} +{"post_id": "10152911758063155", "text": "Salvini o il Vescovone, chi ha ragione?", "post_text": "Salvini o il Vescovone, chi ha ragione?", "shared_text": "", "time": "2015-04-22 12:09:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152911758063155&id=252306033154", "link": null} +{"post_id": "10152910596413155", "text": "600 persone in sala, e tanta gente anche fuori, con la Lega a Cecina, in provincia di Livorno!\nEccezzzzzionale, vedere per credere.\nCiao ciao kompagni.", "post_text": "600 persone in sala, e tanta gente anche fuori, con la Lega a Cecina, in provincia di Livorno!\nEccezzzzzionale, vedere per credere.\nCiao ciao kompagni.", "shared_text": "", "time": "2015-04-21 22:10:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152910596413155&id=252306033154", "link": null} +{"post_id": "10152910321963155", "text": "L'Europa se ne frega, l'Onu non muove un dito...\nE allora l'Italia faccia l'Italia: difendere i CONFINI e FERMARE L'INVASIONE!", "post_text": "L'Europa se ne frega, l'Onu non muove un dito...\nE allora l'Italia faccia l'Italia: difendere i CONFINI e FERMARE L'INVASIONE!", "shared_text": "", "time": "2015-04-21 19:39:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152910321963155&id=252306033154", "link": null} +{"post_id": "10152909424383155", "text": "Spettacolare accoglienza in piazza a Grosseto.\nPi\u00f9 lavoro e pi\u00f9 sicurezza, meno sprechi e meno ruberie.\nLa Toscana c'\u00e8!", "post_text": "Spettacolare accoglienza in piazza a Grosseto.\nPi\u00f9 lavoro e pi\u00f9 sicurezza, meno sprechi e meno ruberie.\nLa Toscana c'\u00e8!", "shared_text": "", "time": "2015-04-21 11:39:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11178354_10152909423298155_6134896409697021140_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=yg6oA6YyK5MAQkguVEBMpbijC8QOGerVqZEFuI9PUp2UnRFV3mAZw7qpA&_nc_ht=scontent-cdt1-1.xx&oh=86e89bf73b0c10740e06eea19a63ea5b&oe=5E81F6A0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152908404653155", "text": "Tantisssssima gente con la Lega stasera a Travagliato!\nRenzi, stiamo arrivando...", "post_text": "Tantisssssima gente con la Lega stasera a Travagliato!\nRenzi, stiamo arrivando...", "shared_text": "", "time": "2015-04-20 23:30:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152908404653155&id=252306033154", "link": null} +{"post_id": "10152907798373155", "text": "Ascoltate e divulgate!\nQuesta \u00e8 la gestione dell\u2019immigrazione \u201calla Renzi\u201d\u2026 STOP al Governo degli INCAPACI!", "post_text": "Ascoltate e divulgate!\nQuesta \u00e8 la gestione dell\u2019immigrazione \u201calla Renzi\u201d\u2026 STOP al Governo degli INCAPACI!", "shared_text": "", "time": "2015-04-20 19:38:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152907798373155&id=252306033154", "link": null} +{"post_id": "10152907308168155", "text": "Altro che indulti, sconti e depenalizzazioni\u2026 Per certe BESTIE, solo GALERA e buttare la chiave!", "post_text": "Altro che indulti, sconti e depenalizzazioni\u2026 Per certe BESTIE, solo GALERA e buttare la chiave!", "shared_text": "", "time": "2015-04-20 16:50:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152907308168155&id=252306033154", "link": null} +{"post_id": "10152906729063155", "text": "BLOCCO NAVALE, fermare le partenze e smetterla di arricchire scafisti e terroristi! Meno persone partono, meno ne muoiono.", "post_text": "BLOCCO NAVALE, fermare le partenze e smetterla di arricchire scafisti e terroristi! Meno persone partono, meno ne muoiono.", "shared_text": "", "time": "2015-04-20 12:11:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152906729063155&id=252306033154", "link": null} +{"post_id": "10152903758283155", "text": "Piazza strapiena a Belluno, gente stupenda!\nPersone generose e accoglienti, ma che vogliono che chi arriva rispetti le regole. E fanno bene!!!", "post_text": "Piazza strapiena a Belluno, gente stupenda!\nPersone generose e accoglienti, ma che vogliono che chi arriva rispetti le regole. E fanno bene!!!", "shared_text": "", "time": "2015-04-19 12:15:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10423791_10152903757008155_6067978559252582401_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=R9Nvbqss4K0AQlXNUQhUcRLfdpE5uwvUmaUgbAaLL7OaHO4ZfRf2STQrA&_nc_ht=scontent-cdt1-1.xx&oh=bcc4a07c4cec3b433199fc079374e94c&oe=5E8A0056", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152902317318155", "text": "Viva le RUSPE e le MIETITREBBIE... E abbasso le Boldrini!", "post_text": "Viva le RUSPE e le MIETITREBBIE... E abbasso le Boldrini!", "shared_text": "", "time": "2015-04-18 22:08:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152902317318155&id=252306033154", "link": null} +{"post_id": "10152901767798155", "text": "Con Luca Zaia e tanti giovani all'inaugurazione della nuova sede della Lega a Villorba.\nSolo oggi una ventina di 18enni mi ha detto che il primo voto sar\u00e0 per la Lega!\nAltro che sbandati dei centri a-sociali...", "post_text": "Con Luca Zaia e tanti giovani all'inaugurazione della nuova sede della Lega a Villorba.\nSolo oggi una ventina di 18enni mi ha detto che il primo voto sar\u00e0 per la Lega!\nAltro che sbandati dei centri a-sociali...", "shared_text": "", "time": "2015-04-18 17:14:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11170330_10152901764883155_3090579987810532142_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=yFqfNr-63QAAQnq14yBSmHvT1jEJK9RFnnGp7OOmauhh7xWGHCGM2COpQ&_nc_ht=scontent-cdt1-1.xx&oh=ca12caa85e00656d58223239a2b2300d&oe=5E892DA0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152899534618155", "text": "Ecco come fanno la \"raccolta differenziata\" nel MEGA Campo Rom di La Barbuta a Roma... Anche qui: preavviso e poi RUSPA!", "post_text": "Ecco come fanno la \"raccolta differenziata\" nel MEGA Campo Rom di La Barbuta a Roma... Anche qui: preavviso e poi RUSPA!", "shared_text": "", "time": "2015-04-17 20:34:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152899534618155&id=252306033154", "link": null} +{"post_id": "10152898534343155", "text": "Bisogna allestire in Nord Africa dei centri di identificazione e di BLOCCO di quelle migliaia di clandestini che non sono profughi e che finanziano MAFIE e TERRORISTI.\nRenzi dorme o pensa alla legge elettorale... BLOCCHIAMO LE PARTENZE!", "post_text": "Bisogna allestire in Nord Africa dei centri di identificazione e di BLOCCO di quelle migliaia di clandestini che non sono profughi e che finanziano MAFIE e TERRORISTI.\nRenzi dorme o pensa alla legge elettorale... BLOCCHIAMO LE PARTENZE!", "shared_text": "", "time": "2015-04-17 12:06:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152898534343155&id=252306033154", "link": null} +{"post_id": "10152896026188155", "text": "1,5 miliardi da spendere? Se ci sono soldi, vanno destinati alle VITTIME della Legge Fornero... Agli italiani, non ad altri!", "post_text": "1,5 miliardi da spendere? Se ci sono soldi, vanno destinati alle VITTIME della Legge Fornero... Agli italiani, non ad altri!", "shared_text": "", "time": "2015-04-16 11:02:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152896026188155&id=252306033154", "link": null} +{"post_id": "10152893682068155", "text": "Contro i VIOLENTI che vanno in piazza a volto coperto, con i bastoni e le spranghe... io STO con il poliziotto e il carabiniere! SEMPRE.", "post_text": "Contro i VIOLENTI che vanno in piazza a volto coperto, con i bastoni e le spranghe... io STO con il poliziotto e il carabiniere! SEMPRE.", "shared_text": "", "time": "2015-04-15 12:39:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152893682068155&id=252306033154", "link": null} +{"post_id": "10152892299228155", "text": "VERIT\u00c0 e CORAGGIO nelle parole del Papa sul GENOCIDIO da parte della Turchia di 1,5 milioni di Armeni. Che lo Stato turco, dopo un secolo, rifiuta di riconoscere\u2026\nAnche per questo: NO alla Turchia in Europa!", "post_text": "VERIT\u00c0 e CORAGGIO nelle parole del Papa sul GENOCIDIO da parte della Turchia di 1,5 milioni di Armeni. Che lo Stato turco, dopo un secolo, rifiuta di riconoscere\u2026\nAnche per questo: NO alla Turchia in Europa!", "shared_text": "", "time": "2015-04-14 21:05:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152892299228155&id=252306033154", "link": null} +{"post_id": "10152891288508155", "text": "Ascoltate e diffondete, ecco \"i Rom che si vogliono integrare\" della Boldrini...", "post_text": "Ascoltate e diffondete, ecco \"i Rom che si vogliono integrare\" della Boldrini...", "shared_text": "", "time": "2015-04-14 12:02:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152891288508155&id=252306033154", "link": null} +{"post_id": "10152890948838155", "text": "1.000 giorni che \u00e8 in vigore l'INFAME Legge Fornero. Solo la Lega si batte per cambiarla, e ce la faremo!", "post_text": "1.000 giorni che \u00e8 in vigore l'INFAME Legge Fornero. Solo la Lega si batte per cambiarla, e ce la faremo!", "shared_text": "", "time": "2015-04-14 08:01:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/18513_10152890948683155_3299463357849090193_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=9zp64q8T2D8AQlk1FQJBFJ1arVA49XpQn5b4on6xtbjL7J0ajHpLDF35Q&_nc_ht=scontent-cdt1-1.xx&oh=31a1f245224f3b72cccf597fd13c5ad6&oe=5E8195EE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152888988258155", "text": "Ragazzi, anche voi avete acqua, luce e gas pagate? O la casa GRATIS?\nAscoltate e divulgate, questa VERGOGNA la fermiamo!", "post_text": "Ragazzi, anche voi avete acqua, luce e gas pagate? O la casa GRATIS?\nAscoltate e divulgate, questa VERGOGNA la fermiamo!", "shared_text": "", "time": "2015-04-13 11:42:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152888988258155&id=252306033154", "link": null} +{"post_id": "10152886720663155", "text": "Un mare di gente stamattina al Giambellino, una delle periferie milanesi abbandonate da Pisapia. La Lega c'\u00e8!", "post_text": "Un mare di gente stamattina al Giambellino, una delle periferie milanesi abbandonate da Pisapia. La Lega c'\u00e8!", "shared_text": "", "time": "2015-04-12 12:56:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p160x160/11061354_10152886720593155_4401692771663487430_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=drHeoNInxHgAQm4csee_-f-XVTW_jZ8pYqxvnCF3xjIUHOonBoyhIOG-Q&_nc_ht=scontent-cdt1-1.xx&oh=3b025e779b6b08723d4601209ee7e5c6&oe=5E4491E2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152885323378155", "text": "A Rovigo 4 sfigati dei centri a-sociali da una parte, 300 persone perbene dall'altra.\nArriviamo!!!!!", "post_text": "A Rovigo 4 sfigati dei centri a-sociali da una parte, 300 persone perbene dall'altra.\nArriviamo!!!!!", "shared_text": "", "time": "2015-04-11 21:19:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p261x260/11111911_10152885321728155_6773312672323227228_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=1I5F94C2MiwAQmaJAIh0I-W3wJ3ZSQYX2LRjcu0HzEYwLfA2ZbY0ZQeyw&_nc_ht=scontent-cdt1-1.xx&oh=5da831884da61c2a671f36067b4464e3&oe=5E3F6F8B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-04-11 08:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/11152691_10152884162233155_2518173937022693576_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=Rr80DVSyoVkAQkxSTGMRM9ICZ88fUJecJP5NfmkoWi-aE1f54-syqfr-g&_nc_ht=scontent-cdt1-1.xx&oh=2f678cd2e5010deaf07eccc962dd9f07&oe=5E3EEC93", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152882361938155", "text": "Qualche vescovone che non abita certo in periferia si scandalizza per le mie parole sui Campi Rom.\nChe dite, solo IPOCRISIA o anche qualcuno che CI GUADAGNA?", "post_text": "Qualche vescovone che non abita certo in periferia si scandalizza per le mie parole sui Campi Rom.\nChe dite, solo IPOCRISIA o anche qualcuno che CI GUADAGNA?", "shared_text": "", "time": "2015-04-10 17:12:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152882361938155&id=252306033154", "link": null} +{"post_id": "10152881856023155", "text": "In Italia \u00e8 benvenuto chi lavora e si integra\u2026\nChi ai semafori si lancia sui cofani delle macchine rompendo le palle, soprattutto alle donne, NON \u00c8 BENVENUTO!", "post_text": "In Italia \u00e8 benvenuto chi lavora e si integra\u2026\nChi ai semafori si lancia sui cofani delle macchine rompendo le palle, soprattutto alle donne, NON \u00c8 BENVENUTO!", "shared_text": "", "time": "2015-04-10 12:34:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152881856023155&id=252306033154", "link": null} +{"post_id": "10152880777093155", "text": "Mi hanno mandato questa foto: su Twitter #haragionesalvini pare abbia vinto anche stasera. Grazie amici, INSIEME si pu\u00f2 tutto!", "post_text": "Mi hanno mandato questa foto: su Twitter #haragionesalvini pare abbia vinto anche stasera. Grazie amici, INSIEME si pu\u00f2 tutto!", "shared_text": "", "time": "2015-04-09 23:37:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p200x200/11146253_10152880771383155_1785197404494962518_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=LO9EVVvc9uAAQnGGFrwBq72vwsvzqSEopauYiLbSIVBeGb_Y1EmRIveaw&_nc_ht=scontent-cdt1-1.xx&oh=a871665a48fd54faa2a6a5af9bdfc822&oe=5E8C21A5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152880263703155", "text": "Guardate e diffondete. Governo razzista! Per i clandestini hotel con piscina, per gli italiani macchina o cantina!\n> Sabato e domenica tutti in piazza, vieni a firmare. WWW.CHIEDOASILO.ORG <", "post_text": "Guardate e diffondete. Governo razzista! Per i clandestini hotel con piscina, per gli italiani macchina o cantina!\n> Sabato e domenica tutti in piazza, vieni a firmare. WWW.CHIEDOASILO.ORG <", "shared_text": "", "time": "2015-04-09 13:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152879260348155&id=252306033154", "link": "https://WWW.CHIEDOASILO.ORG/?fbclid=IwAR3wsxliKPlsriC60mnQQ257J67sRL4D88TKDlp8OcRvA4LK27TiM-bC7vo"} +{"post_id": "10152877502043155", "text": "In Europa non esistono i campi Rom...\nStessi diritti e stessi doveri. E la casa la compri o la affitti come tutti gli altri cittadini!", "post_text": "In Europa non esistono i campi Rom...\nStessi diritti e stessi doveri. E la casa la compri o la affitti come tutti gli altri cittadini!", "shared_text": "", "time": "2015-04-08 20:08:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152877502043155&id=252306033154", "link": null} +{"post_id": "10152876494298155", "text": "Ragazzi, da non credere! Ascoltate e divulgate.\n> Sabato e domenica tutti in piazza, vieni a firmare. WWW.CHIEDOASILO.ORG <", "post_text": "Ragazzi, da non credere! Ascoltate e divulgate.\n> Sabato e domenica tutti in piazza, vieni a firmare. WWW.CHIEDOASILO.ORG <", "shared_text": "", "time": "2015-04-08 12:08:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152876494298155&id=252306033154", "link": "https://WWW.CHIEDOASILO.ORG/?fbclid=IwAR1hEJrtIkwybp9ueBXFfi3tiXC6rxTyTnEV_Qkxpv-cF6jUH0Vhti5HVQA"} +{"post_id": "10152874092688155", "text": "Contro i corrotti meno chiacchiere renziane e una sola semplice regola: ZERO SCONTI. Chi sbaglia, paga!", "post_text": "Contro i corrotti meno chiacchiere renziane e una sola semplice regola: ZERO SCONTI. Chi sbaglia, paga!", "shared_text": "", "time": "2015-04-07 11:43:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152874092688155&id=252306033154", "link": null} +{"post_id": "10152867311743155", "text": "Montagna.\nRispetto, silenzio, amicizia, pace.\nQualche valore rischia di essere perso, non arrendiamoci!", "post_text": "Montagna.\nRispetto, silenzio, amicizia, pace.\nQualche valore rischia di essere perso, non arrendiamoci!", "shared_text": "", "time": "2015-04-04 12:58:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/11000264_10152867309448155_939204885762301264_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=6dg7PuYyQeQAQkVQA6Dteoo5qwh6mvqTSnfRSHvT8Zk2WeebVa8lvSHOw&_nc_ht=scontent-cdt1-1.xx&oh=e0a5900a8747271241b0c2eeb7a8aff9&oe=5E44956A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152864724133155", "text": "Vincere il 31 maggio per mandare a casa Renzi e Alfano!", "post_text": "Vincere il 31 maggio per mandare a casa Renzi e Alfano!", "shared_text": "", "time": "2015-04-03 11:39:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/11096580_10152864723928155_2570173476811834198_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=knyviqXOCGMAQmsji3M3TT_bm-2Izo9705cd_NUtkIL8XrPOev722cZkA&_nc_ht=scontent-cdt1-1.xx&oh=b1346ce4dac76ea216fcf5d2d459f188&oe=5E50CA54", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152862614623155", "text": "In mezzo agli operai di Fincantieri, a Sestri Levante.\n650 posti di lavoro da difendere, un governo che purtroppo se ne frega. Noi ci siamo!", "post_text": "In mezzo agli operai di Fincantieri, a Sestri Levante.\n650 posti di lavoro da difendere, un governo che purtroppo se ne frega. Noi ci siamo!", "shared_text": "", "time": "2015-04-02 11:38:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11080938_10152862612138155_8986702801934700537_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=fTj4bJc0M10AQmH15BbRy-AQg9KbqGBMbTqeqhwRitZ68jmIb-KvcB_nw&_nc_ht=scontent-cdt1-1.xx&oh=12ff660f28cc3b3466584064adb04be8&oe=5E469B7F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152861808983155", "text": "Questa LUNA \u00e8 per ciascuno di voi, per chi non si arrende, per chi ama la sua Terra e la sua Gente.\nNotte serena Amici, un altro giorno \u00e8 andato.", "post_text": "Questa LUNA \u00e8 per ciascuno di voi, per chi non si arrende, per chi ama la sua Terra e la sua Gente.\nNotte serena Amici, un altro giorno \u00e8 andato.", "shared_text": "", "time": "2015-04-02 00:08:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1610910_10152861806948155_6045823681378036347_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=ZlCA9Y3_WfgAQkm6lkF-HEkifJ1VpMjWcqCDohE1fW3s-OQkMJ8SZlg_Q&_nc_ht=scontent-cdt1-1.xx&oh=b7a36995989d2eba147f61751b2e1d3e&oe=5E8A7E6D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152861552978155", "text": "Ecco un altro parlamentare del PD che ci racconta la supercazzata degli 80 euro e delle tasse ridotte...", "post_text": "Ecco un altro parlamentare del PD che ci racconta la supercazzata degli 80 euro e delle tasse ridotte...", "shared_text": "", "time": "2015-04-01 21:28:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152861552978155&id=252306033154", "link": null} +{"post_id": "10152861472888155", "text": "Vi sentite clandestini in Italia? L'11 e 12 aprile vi aspetto in tantissimi, in 1.000 piazze, per firmare domanda di Asilo Politico. Renzi, Alfano, Boldrini e sinistri vari cominceranno a capire qualcosa, secondo voi?\n#chiedoasilo\nP.s. elenco gazebo nei prossimi giorni su: WWW.CHIEDOASILO.ORG", "post_text": "Vi sentite clandestini in Italia? L'11 e 12 aprile vi aspetto in tantissimi, in 1.000 piazze, per firmare domanda di Asilo Politico. Renzi, Alfano, Boldrini e sinistri vari cominceranno a capire qualcosa, secondo voi?\n#chiedoasilo\nP.s. elenco gazebo nei prossimi giorni su: WWW.CHIEDOASILO.ORG", "shared_text": "", "time": "2015-04-01 20:35:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/11071793_10152861449673155_867754762806375824_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=cdfgemjai4gAQncPJHr_yh87b8uwARoNtovV8-TBEBgwfqjlwiChCzE3w&_nc_ht=scontent-cdt1-1.xx&oh=a2ae7a469f24450baeccd985a5eb1728&oe=5E40A8C9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "https://WWW.CHIEDOASILO.ORG/?fbclid=IwAR3F9k4-219hiK_ewad8tsefGe0k0EkdpQiqy5eNw69a_baJ0zQMc_Z2RG8"} +{"post_id": "10152861301103155", "text": "Renzi esibisce le donne come oggetto da \"quote rosa\", noi le coinvolgiamo concretamente per occuparsi di legge Fornero, sicurezza e lavoro.", "post_text": "Renzi esibisce le donne come oggetto da \"quote rosa\", noi le coinvolgiamo concretamente per occuparsi di legge Fornero, sicurezza e lavoro.", "shared_text": "", "time": "2015-04-01 15:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152860979953155&id=252306033154", "link": null} +{"post_id": "10152859516623155", "text": "Il governo Renzi regala sconti ai corrotti: 5 mesi di carcere in meno per ogni anno di buona condotta...\nSiamo al \"SUPERMERCATO\" della corruzione, altro che CERTEZZA della PENA!", "post_text": "Il governo Renzi regala sconti ai corrotti: 5 mesi di carcere in meno per ogni anno di buona condotta...\nSiamo al \"SUPERMERCATO\" della corruzione, altro che CERTEZZA della PENA!", "shared_text": "", "time": "2015-03-31 21:07:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152859516623155&id=252306033154", "link": null} +{"post_id": "10152857362268155", "text": "Intanto l'Europa regala altri 2 miliardi all'Ucraina, alla faccia di disoccupati e pensionati italiani che non arrivano a fine mese...", "post_text": "Intanto l'Europa regala altri 2 miliardi all'Ucraina, alla faccia di disoccupati e pensionati italiani che non arrivano a fine mese...", "shared_text": "", "time": "2015-03-30 18:13:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152857362268155&id=252306033154", "link": null} +{"post_id": "10152855440678155", "text": "Inaugurazione della Nuova Sede della Lega a Spoleto, in Umbria: speranza, orgoglio, progetti, coraggio!", "post_text": "Inaugurazione della Nuova Sede della Lega a Spoleto, in Umbria: speranza, orgoglio, progetti, coraggio!", "shared_text": "", "time": "2015-03-29 19:16:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/11061328_10152855440578155_5386980181831393499_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=x32wZLAJ6rYAQloHlXMBVmmmm8Jpcz4LjVhJeJSIz2or4Ef5XojLihNKw&_nc_ht=scontent-cdt1-1.xx&oh=47942e66fb989878a5457c59f5bf434b&oe=5E7B1146", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152853197073155", "text": "Accesso alla piazza dove manifesta la Lega a Torino bloccato da grate di ferro, per evitare gli \"attacchi\" dei maledetti centri a-sociali.\nRoba da matti, questa non \u00e8 Democrazia o Libert\u00e0.", "post_text": "Accesso alla piazza dove manifesta la Lega a Torino bloccato da grate di ferro, per evitare gli \"attacchi\" dei maledetti centri a-sociali.\nRoba da matti, questa non \u00e8 Democrazia o Libert\u00e0.", "shared_text": "", "time": "2015-03-28 16:35:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/11082473_10152853195423155_2426883392369542975_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=97ZGUEzIpsQAQlt3ybej0SdSP_NeY5n1xUVatFYtx676r8NxED4hJFvTQ&_nc_ht=scontent-cdt1-1.xx&oh=a5e0f7a1144e371677754b99be945cb6&oe=5E7FCC17", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152853153948155", "text": "In piazza a Moncalieri con la squadra che prover\u00e0 a strappare il Comune alla sinistra parolaia, dopo vent'anni.\nCandidato Sindaco il grande Beppe Furino, capitano della Juve negli anni '70 e '80: grintoso allora, coraggioso oggi.", "post_text": "In piazza a Moncalieri con la squadra che prover\u00e0 a strappare il Comune alla sinistra parolaia, dopo vent'anni.\nCandidato Sindaco il grande Beppe Furino, capitano della Juve negli anni '70 e '80: grintoso allora, coraggioso oggi.", "shared_text": "", "time": "2015-03-28 16:11:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/11079031_10152853142423155_3342577388465519327_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=PtzbYqxO3JgAQn6y2ny89wD5nlj2h_Q2SajDs6MQ8APUGpqBkPqYXTWZQ&_nc_ht=scontent-cdt1-1.xx&oh=14e6973fe0fbabd43f93c39271d1d59a&oe=5E8B7F8B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152851075093155", "text": "Con tantissimi cittadini di Arezzo davanti alla sede della Banca dell'Etruria.\nCompagni, fuori i soldi!!!", "post_text": "Con tantissimi cittadini di Arezzo davanti alla sede della Banca dell'Etruria.\nCompagni, fuori i soldi!!!", "shared_text": "", "time": "2015-03-27 16:58:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/11078190_10152851073098155_5898732244521194181_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=NYra4fsc4G0AQmOIa5no5gR2IghKamE7ChuNCqIKnApxL_Oi2gYPuChAw&_nc_ht=scontent-cdt1-1.xx&oh=ca18ff871226077f05c520245df97f04&oe=5E841A2C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152849180623155", "text": "I soliti centri sociali che difendono i loro amici ABUSIVI e CLANDESTINI...", "post_text": "I soliti centri sociali che difendono i loro amici ABUSIVI e CLANDESTINI...", "shared_text": "", "time": "2015-03-26 19:16:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152849180623155&id=252306033154", "link": null} +{"post_id": "10152848445518155", "text": "In un momento di crisi economica come questa, quando si parla di CASA e di LAVORO, vengono prima gli ITALIANI!", "post_text": "In un momento di crisi economica come questa, quando si parla di CASA e di LAVORO, vengono prima gli ITALIANI!", "shared_text": "", "time": "2015-03-26 11:16:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152848445518155&id=252306033154", "link": null} +{"post_id": "10152847224968155", "text": "L'On. Ginefra del PD vorrebbe denunciarmi, mentre per Rocco Buttiglione sarei un uomo di merda: sono due poveretti!", "post_text": "L'On. Ginefra del PD vorrebbe denunciarmi, mentre per Rocco Buttiglione sarei un uomo di merda: sono due poveretti!", "shared_text": "", "time": "2015-03-25 19:46:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152847224968155&id=252306033154", "link": null} +{"post_id": "10152846853133155", "text": "Chaouki e la \u201csua\u201d Commissione per verificare se l\u2019Italia tratta bene gli immigrati\u2026\nLe lasagne in hotel non sono abbastanza buone?", "post_text": "Chaouki e la \u201csua\u201d Commissione per verificare se l\u2019Italia tratta bene gli immigrati\u2026\nLe lasagne in hotel non sono abbastanza buone?", "shared_text": "", "time": "2015-03-25 16:14:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152846853133155&id=252306033154", "link": null} +{"post_id": "10152844469868155", "text": "Con i bambini che vendemmiano e imbottigliano: il vino \u00e8 anche solidariet\u00e0!", "post_text": "Con i bambini che vendemmiano e imbottigliano: il vino \u00e8 anche solidariet\u00e0!", "shared_text": "", "time": "2015-03-24 14:26:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/11026172_10152844469053155_7700034095949819327_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=vz8OPkef9HQAQl8RYAQd4sgV3DdPBmny_dTZfaMh7RuKrUc99d6Vf8K8A&_nc_ht=scontent-cdt1-1.xx&oh=13021b151e5236fd314eda61008327e3&oe=5E3EA650", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152844412828155", "text": "Con gli amici della Cantina di Soave al Vinitaly: 2.200 soci che resistono!", "post_text": "Con gli amici della Cantina di Soave al Vinitaly: 2.200 soci che resistono!", "shared_text": "", "time": "2015-03-24 13:40:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10351260_10152844412538155_1273810894110142619_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=IAKSUfSBLLsAQmtQWCZyZe5H7BugiePFgQN9Wg0xhmo5Kn9qO-n_3kssw&_nc_ht=scontent-cdt1-1.xx&oh=01d57ff97f0d91dbe61fe055262febe5&oe=5E8269C8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152844249338155", "text": "Verona, Vinitaly: il regalo di Luca Zaia. Vi piace?", "post_text": "Verona, Vinitaly: il regalo di Luca Zaia. Vi piace?", "shared_text": "", "time": "2015-03-24 11:31:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/11008821_10152844249263155_2917410703073107259_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=psmqQmhkJgoAQlCb01WMGAladUB5ZTtr5uI9oEfeZUSMhrywmqwQqRtKA&_nc_ht=scontent-cdt1-1.xx&oh=968049180003ea62eea4eb1cd77a8755&oe=5E418893", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152842688068155", "text": "Con una delegazione di Taxisti Fiorentini.\nIl traffico a Firenze? Un casino.....", "post_text": "Con una delegazione di Taxisti Fiorentini.\nIl traffico a Firenze? Un casino.....", "shared_text": "", "time": "2015-03-23 18:00:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/13055_10152842684998155_5009088789304925645_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=q5dJHatnIioAQkxz7gFX_vyvIHp0cSJgP0dXGY_P-VJgPS2VNvmGFEBog&_nc_ht=scontent-cdt1-1.xx&oh=61e35266028dac806972a08eede0fa23&oe=5E8BB2B3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152842195613155", "text": "\u201cNoi dell\u2019NCD stiamo con Renzi, le elezioni le vogliono solo Salvini e i SALVINIANI\u201d dice Formigoni, terrorizzato... dal voto degli ITALIANI!", "post_text": "\u201cNoi dell\u2019NCD stiamo con Renzi, le elezioni le vogliono solo Salvini e i SALVINIANI\u201d dice Formigoni, terrorizzato... dal voto degli ITALIANI!", "shared_text": "", "time": "2015-03-23 12:54:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152842195613155&id=252306033154", "link": null} +{"post_id": "10152836204078155", "text": "Ci sono delinquenti che non hanno piet\u00e0 nemmeno per gli anziani.\nE poi ci sono Governi che li mettono a piede libero con indulti e svuotacarceri.\nIn Italia abbiamo tutto questo... Grazie Alfano, grazie Renzi!", "post_text": "Ci sono delinquenti che non hanno piet\u00e0 nemmeno per gli anziani.\nE poi ci sono Governi che li mettono a piede libero con indulti e svuotacarceri.\nIn Italia abbiamo tutto questo... Grazie Alfano, grazie Renzi!", "shared_text": "", "time": "2015-03-20 19:41:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152836204078155&id=252306033154", "link": null} +{"post_id": "10152833643438155", "text": "Alberi in fiore e Madonnina, che bella Padova!", "post_text": "Alberi in fiore e Madonnina, che bella Padova!", "shared_text": "", "time": "2015-03-19 18:35:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11010943_10152833640518155_4821622488887070439_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=ncdguMxjg6YAQlqbzCh59T_y5fEEbrOCnj9xa5LEga-v5J46Ve2U2yGbw&_nc_ht=scontent-cdt1-1.xx&oh=7557dfd28f61bb32386762207653753a&oe=5E41D628", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152831447703155", "text": "Domani, gioved\u00ec, sar\u00f2 a Padova alle 15 per presentare le nostre proposte economiche per le piccole e medie imprese: Flat Tax, abolizione degli studi di settore...\nBASTA STATO LADRO! Cambiare si pu\u00f2.", "post_text": "Domani, gioved\u00ec, sar\u00f2 a Padova alle 15 per presentare le nostre proposte economiche per le piccole e medie imprese: Flat Tax, abolizione degli studi di settore...\nBASTA STATO LADRO! Cambiare si pu\u00f2.", "shared_text": "", "time": "2015-03-18 19:02:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/11041898_10152831446758155_554854211414380509_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=g37wALT2eKAAQmdngJZfgYNGAaRLk4VoEd02qWWr3SKFuamUCJQ-obCXA&_nc_ht=scontent-cdt1-1.xx&oh=f73427f3c01be967582b25de1bf8282c&oe=5E7E7C9E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152830711763155", "text": "Dalla Gruber: \"Salvini, se chiede scusa alla Fornero stappo una bottiglia...\"\nLo dica ai tanti italiani fregati, preferisco brindare quando avremo cancellato la sua Legge-VERGOGNA!", "post_text": "Dalla Gruber: \"Salvini, se chiede scusa alla Fornero stappo una bottiglia...\"\nLo dica ai tanti italiani fregati, preferisco brindare quando avremo cancellato la sua Legge-VERGOGNA!", "shared_text": "", "time": "2015-03-18 12:21:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152830711763155&id=252306033154", "link": null} +{"post_id": "10152829257703155", "text": "Spostare l'Africa in Italia \u00e8 ingiusto e demenziale. Chi lo spiega ad Alfano e a Renzi?", "post_text": "Spostare l'Africa in Italia \u00e8 ingiusto e demenziale. Chi lo spiega ad Alfano e a Renzi?", "shared_text": "", "time": "2015-03-17 19:28:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152829257703155&id=252306033154", "link": null} +{"post_id": "10152827308303155", "text": "Chi \"mangia\" sull'immigrazione clandestina?\nVe lo spiega \"l'ispettore\" Chaouki del PD...", "post_text": "Chi \"mangia\" sull'immigrazione clandestina?\nVe lo spiega \"l'ispettore\" Chaouki del PD...", "shared_text": "", "time": "2015-03-16 22:10:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152827308303155&id=252306033154", "link": null} +{"post_id": "10152821471128155", "text": "Sala Tv, nuova e affrescata, a disposizione dei 70 presunti profughi a Monselice.\nMa voi un salotto cos\u00ec ce l'avete???", "post_text": "Sala Tv, nuova e affrescata, a disposizione dei 70 presunti profughi a Monselice.\nMa voi un salotto cos\u00ec ce l'avete???", "shared_text": "", "time": "2015-03-14 16:13:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11032750_10152821469463155_2453200977150515438_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=h-hR9lqC-XoAQnIUPA4woPW9Zy30qHuwbEe8W1xVMCV0fJ_32af2QL4UA&_nc_ht=scontent-cdt1-1.xx&oh=7792f80f4f2b3f3e3ae7d7441a7aa9fc&oe=5E866447", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152820979603155", "text": "Campo San Martino, provincia di Padova.\nCon tanta bella giovent\u00f9 all'intitolazione della Via che ricorda i Martiri di Beslan, 333 morti (fra cui 186 bambini) per mano dei terroristi.\nGi\u00f9 le mani dai bambini, loro sono il nostro Futuro!", "post_text": "Campo San Martino, provincia di Padova.\nCon tanta bella giovent\u00f9 all'intitolazione della Via che ricorda i Martiri di Beslan, 333 morti (fra cui 186 bambini) per mano dei terroristi.\nGi\u00f9 le mani dai bambini, loro sono il nostro Futuro!", "shared_text": "", "time": "2015-03-14 11:20:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11039306_10152820972483155_196821498405209287_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=I2Aa_Yn8AK8AQnaX7n0Dc8c_PdrQzDR6SLobloGbHqcZ_KZP7yu5Soriw&_nc_ht=scontent-cdt1-1.xx&oh=ce24fee30b1dabfcd35d290760d75eb6&oe=5E4FB5BF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152817528308155", "text": "Delle aziende in ginocchio l'Europa se ne frega, preferisce perdere tempo a misurare le vongole. Fuori da questa gabbia di matti!", "post_text": "Delle aziende in ginocchio l'Europa se ne frega, preferisce perdere tempo a misurare le vongole. Fuori da questa gabbia di matti!", "shared_text": "", "time": "2015-03-12 22:57:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152817528308155&id=252306033154", "link": null} +{"post_id": "10152816396263155", "text": "Ed ecco il magico mondo di Lella Costa, dove \"gli immigrati sono gli unici sui mezzi pubblici ad alzarsi per lasciare il posto agli anziani...\"\nAnche sui vostri autobus \u00e8 tutto cos\u00ec bello e \"magico\"?", "post_text": "Ed ecco il magico mondo di Lella Costa, dove \"gli immigrati sono gli unici sui mezzi pubblici ad alzarsi per lasciare il posto agli anziani...\"\nAnche sui vostri autobus \u00e8 tutto cos\u00ec bello e \"magico\"?", "shared_text": "", "time": "2015-03-12 12:04:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152816396263155&id=252306033154", "link": null} +{"post_id": "10152814534053155", "text": "L'Europa processa Putin, ma io lo preferisco a tanti euro-buffoni!", "post_text": "L'Europa processa Putin, ma io lo preferisco a tanti euro-buffoni!", "shared_text": "", "time": "2015-03-11 17:36:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152814534053155&id=252306033154", "link": null} +{"post_id": "10152809944408155", "text": "Tortelli di zucca mantovani! Il meglio. E voi?", "post_text": "Tortelli di zucca mantovani! Il meglio. E voi?", "shared_text": "", "time": "2015-03-09 20:53:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10428611_10152809943073155_4363619263560170216_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=UzNcC7L7sy0AQm2GwJmOzg7M3QVAIkxTXgsYyLhZflz130-zs0g6WQ13w&_nc_ht=scontent-cdt1-1.xx&oh=37b51dd4705e1c9b84e390847b41900a&oe=5E844679", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152805984358155", "text": "Secondo il signor Battista, del Corriere della Sera, io sarei PARANOICO perch\u00e9 non voglio REGALARE LA CITTADINANZA ITALIANA a chiunque nasca in Italia, magari da clandestini. Orgoglioso di essere paranoico, ma non fesso.", "post_text": "Secondo il signor Battista, del Corriere della Sera, io sarei PARANOICO perch\u00e9 non voglio REGALARE LA CITTADINANZA ITALIANA a chiunque nasca in Italia, magari da clandestini. Orgoglioso di essere paranoico, ma non fesso.", "shared_text": "", "time": "2015-03-08 09:56:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152805984358155&id=252306033154", "link": null} +{"post_id": "10152803495853155", "text": "\"Ammazziamoli... Facciamoli crepare... Carabinieri di merda...\nChi \u00e8 contro i miei ideali deve essere ammazzato...\"\nALLA FACCIA DELLA \"DEMOCRAZIA\".", "post_text": "\"Ammazziamoli... Facciamoli crepare... Carabinieri di merda...\nChi \u00e8 contro i miei ideali deve essere ammazzato...\"\nALLA FACCIA DELLA \"DEMOCRAZIA\".", "shared_text": "", "time": "2015-03-07 10:29:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152803495853155&id=252306033154", "link": null} +{"post_id": "10152802172898155", "text": "E alla Gabbia piomb\u00f2 la \u201cstudiosa di populismi\u201d\u2026\nPs: questa \u00e8 vicepresidente dell\u2019Emilia Romagna, indovinate per quale partito?", "post_text": "E alla Gabbia piomb\u00f2 la \u201cstudiosa di populismi\u201d\u2026\nPs: questa \u00e8 vicepresidente dell\u2019Emilia Romagna, indovinate per quale partito?", "shared_text": "", "time": "2015-03-06 19:29:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152802172898155&id=252306033154", "link": null} +{"post_id": "10152801861918155", "text": "Se un delinquente, magari armato, entra in casa, nel negozio o nella propriet\u00e0 di un cittadino NON ESISTE eccesso di legittima difesa. MAI!", "post_text": "Se un delinquente, magari armato, entra in casa, nel negozio o nella propriet\u00e0 di un cittadino NON ESISTE eccesso di legittima difesa. MAI!", "shared_text": "", "time": "2015-03-06 16:46:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152801861918155&id=252306033154", "link": null} +{"post_id": "10152799679633155", "text": "Vi aspetto sabato mattina a Genova per liberare la Liguria da dieci anni di oppressione e malagestione della Sinistra.\nCon Edoardo Rixi e con la Lega si torna a dare speranza e voce ai cittadini!", "post_text": "Vi aspetto sabato mattina a Genova per liberare la Liguria da dieci anni di oppressione e malagestione della Sinistra.\nCon Edoardo Rixi e con la Lega si torna a dare speranza e voce ai cittadini!", "shared_text": "", "time": "2015-03-05 16:36:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152799679633155&id=252306033154", "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 17 nuove foto \u2014 presso Piazza del Popolo.\n5 marzo 2015 alle ore 12:11 \u00b7 Roma, Lazio \u00b7\nAltre opzioni\nUn po' di foto da una giornata che non dimenticheremo. CAMBIARE SI PU\u00d2!", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 17 nuove foto \u2014 presso Piazza del Popolo.\n5 marzo 2015 alle ore 12:11 \u00b7 Roma, Lazio \u00b7\nAltre opzioni\nUn po' di foto da una giornata che non dimenticheremo. CAMBIARE SI PU\u00d2!", "time": "2015-03-05 12:11:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s350x350/10828050_10152799308138155_5113342928806961834_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=hi1VM6IM7-UAQkBNVPNUIz1etn61pvqTLnwZUjkb6dXlpCn9mXr4FnYWQ&_nc_ht=scontent-cdt1-1.xx&oh=5a4a42c6622c1879f8a5689be050f755&oe=5E823EA7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 100 nuove foto \u2014 presso Piazza del Popolo.\n4 marzo 2015 alle ore 15:41 \u00b7 Roma, Lazio \u00b7\nAltre opzioni\nUn po' di foto da una giornata che non dimenticheremo. CAMBIARE SI PU\u00d2!", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 100 nuove foto \u2014 presso Piazza del Popolo.\n4 marzo 2015 alle ore 15:41 \u00b7 Roma, Lazio \u00b7\nAltre opzioni\nUn po' di foto da una giornata che non dimenticheremo. CAMBIARE SI PU\u00d2!", "time": "2015-03-04 15:41:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10997988_10152797561198155_4179872485248617773_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=UtZRlxh8_scAQlF76NyGBWRQEGQG-l7frMz0z-VrJMbjeU3dM6Kov-8WA&_nc_ht=scontent-cdt1-1.xx&oh=c96411cc558d206b7d29c38ff8eca076&oe=5E84E07B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152794900358155", "text": "Videomessaggio alla piazza di Roma, #renziacasa. Grazie, Marine! Un'altra Europa \u00e8 possibile!", "post_text": "Videomessaggio alla piazza di Roma, #renziacasa. Grazie, Marine! Un'altra Europa \u00e8 possibile!", "shared_text": "", "time": "2015-03-03 13:40:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152794900358155&id=252306033154", "link": null} +{"post_id": "10152789448078155", "text": "50.000 volte grazie!\nIdee, coraggio, civilt\u00e0, futuro.", "post_text": "50.000 volte grazie!\nIdee, coraggio, civilt\u00e0, futuro.", "shared_text": "", "time": "2015-03-01 11:57:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152789448078155&id=252306033154", "link": null} +{"post_id": "10152788598558155", "text": "Grazie!", "post_text": "Grazie!", "shared_text": "", "time": "2015-03-01 02:43:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/11025665_10152788598138155_2618078181456288564_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=NmbORIXFv0EAQmkaOlwklQW13gMiBpVivmfuLeZlOLZTLiJfiIELIJdtQ&_nc_ht=scontent-cdt1-1.xx&oh=d51bf4424ef41d31f308184018ccf7d2&oe=5E4BC740", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-02-28 01:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10986904_10152786404928155_1421152723913311036_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=XIQ1QmdNg6EAQkGV1gQqh7ieUYS33GwM8WXRPBZrPqvktgbahYi9kLgJQ&_nc_ht=scontent-cdt1-1.xx&oh=c5d2d2fc6c0af5fe24fd2040bf7f0290&oe=5E7BA7F5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152785643848155", "text": "ROMA, SABATO ORE 15, PIAZZA DEL POPOLO\n#renziacasa #MARINOACASA", "post_text": "ROMA, SABATO ORE 15, PIAZZA DEL POPOLO\n#renziacasa #MARINOACASA", "shared_text": "", "time": "2015-02-27 17:49:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10869574_10152785642263155_2386209829958848836_o.png.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=6yPC92r0zJwAQkgn4-TmBhDV-tZmz_nyf57-42lA8HypRzI4tDm64zyIw&_nc_ht=scontent-cdt1-1.xx&oh=cb0b7daf455efa4cd49729bbf2490fd0&oe=5E8615C2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152783442633155", "text": "Simpatici!!!", "post_text": "Simpatici!!!", "shared_text": "", "time": "2015-02-26 17:33:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11720_10152783437323155_5739628090198113382_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=s1A3hCR5YdIAQk0cLw-y_cwWXe_zmqk9cMywlyicg7Uf9YzOJiI5xKnFw&_nc_ht=scontent-cdt1-1.xx&oh=4bd7b18e0164c2de8627cbdf14df7a06&oe=5E469303", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152783236533155", "text": "Via Negrotto, periferia di Milano. Uno dei tanti campi ROM presenti in Italia. Da sgomberare. Ma non solo questo... sono da CHIUDERE TUTTI. Subito!", "post_text": "Via Negrotto, periferia di Milano. Uno dei tanti campi ROM presenti in Italia. Da sgomberare. Ma non solo questo... sono da CHIUDERE TUTTI. Subito!", "shared_text": "", "time": "2015-02-26 15:47:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152783236533155&id=252306033154", "link": null} +{"post_id": "10152782802058155", "text": ">>> MENO 2 <<<\nSabato 28 FEBBRAIO alle ore 15\nTUTTI in PIAZZA DEL POPOLO a ROMA\nper dire tutti insieme: #RENZIACASA!\nTu ci sarai?\nInfo:\n02 66.234.234 | www.renziacasa.com | info@renziacasa.com\nAderisci anche a evento FB ufficiale: https://www.facebook.com/events/762447150504839/", "post_text": ">>> MENO 2 <<<\nSabato 28 FEBBRAIO alle ore 15\nTUTTI in PIAZZA DEL POPOLO a ROMA\nper dire tutti insieme: #RENZIACASA!\nTu ci sarai?\nInfo:\n02 66.234.234 | www.renziacasa.com | info@renziacasa.com\nAderisci anche a evento FB ufficiale: https://www.facebook.com/events/762447150504839/", "shared_text": "", "time": "2015-02-26 10:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10347094_10152782801848155_7096435394472810774_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=texGlu_yJbIAQmm_FktEnFQr6UzilB1585a2UQbKRyOzZR6wCYIX22jKQ&_nc_ht=scontent-cdt1-1.xx&oh=f06fffd5724148d15f8cbe9dbd4a053f&oe=5E811E1D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.renziacasa.com/?fbclid=IwAR2ClgPekSPEEczVGGZ_IqsMfNo1bqKrbFPEE_lYuY_Z27LoxZqVYZs4WjI"} +{"post_id": "10152781296138155", "text": "LUI NON CI SAR\u00c0 (che peccato!). E TU?\nSabato, Roma, ore 15, Piazza del Popolo: #renziacasa!", "post_text": "LUI NON CI SAR\u00c0 (che peccato!). E TU?\nSabato, Roma, ore 15, Piazza del Popolo: #renziacasa!", "shared_text": "", "time": "2015-02-25 16:50:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/11018878_10152781293653155_3397993372205582623_o.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=5xYktrw3EZ4AQm7kuAjmhvTGS6HlNNfSRyJa7LmoPhRLdUSixxChTGfWg&_nc_ht=scontent-cdt1-1.xx&oh=c30fe564b4e632f2d961aabb69f2a43d&oe=5E8487CC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152781237583155", "text": "Ai \"sinceri democratici\" che vorrebbero impedire la nostra manifestazione inviamo un abbraccio! SABATO TUTTI A ROMA! #renziacasa", "post_text": "Ai \"sinceri democratici\" che vorrebbero impedire la nostra manifestazione inviamo un abbraccio! SABATO TUTTI A ROMA! #renziacasa", "shared_text": "", "time": "2015-02-25 16:20:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152781237583155&id=252306033154", "link": null} +{"post_id": "10152779962908155", "text": "Dedicato ai \"radical chic\" della sinistra che dal loro attico in centro e magari con un ricco conto in banca, dicono sull'immigrazione: \"avanti accogliamoli, in Italia c'\u00e8 posto per tutti.\"\nSono stato troppo buono?", "post_text": "Dedicato ai \"radical chic\" della sinistra che dal loro attico in centro e magari con un ricco conto in banca, dicono sull'immigrazione: \"avanti accogliamoli, in Italia c'\u00e8 posto per tutti.\"\nSono stato troppo buono?", "shared_text": "", "time": "2015-02-24 23:50:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152779962908155&id=252306033154", "link": null} +{"post_id": "10152779185248155", "text": "34 euro al giorno per mantenere ogni immigrato.\nQuindi pi\u00f9 di 1.000 euro al mese.\nUn enorme BUSINESS, alla faccia degli italiani in difficolt\u00e0.\nCooperative, ARCI e \"generosi\" vari ringraziano.", "post_text": "34 euro al giorno per mantenere ogni immigrato.\nQuindi pi\u00f9 di 1.000 euro al mese.\nUn enorme BUSINESS, alla faccia degli italiani in difficolt\u00e0.\nCooperative, ARCI e \"generosi\" vari ringraziano.", "shared_text": "", "time": "2015-02-24 17:12:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152779185248155&id=252306033154", "link": null} +{"post_id": "10152776618138155", "text": "Alla faccia dei \"sinceri democratici\"!\nSabato RIEMPIAMO ROMA!\nRenzi e Marino A CASA!", "post_text": "Alla faccia dei \"sinceri democratici\"!\nSabato RIEMPIAMO ROMA!\nRenzi e Marino A CASA!", "shared_text": "", "time": "2015-02-23 11:34:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10991048_10152776617878155_2935318970784179342_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=UD-UcwJYNgsAQl9dDfXxCw1Vz8CeOkVkHMtPwzdHCo_tQTpdU_LqPZ9GQ&_nc_ht=scontent-cdt1-1.xx&oh=16a7cfa18dc06eabccaa34897453f0f9&oe=5E3EC304", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-02-22 02:40:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10952930_10152774154173155_1590920250001956682_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=dXZT1c1PrmwAQmhib5XUdSXL5CSqfPZn8etrWCL7cWuqOhosU3Y8AqjCw&_nc_ht=scontent-cdt1-1.xx&oh=4e093ea4794faaf8c4f8f84b42097b98&oe=5E8B2023", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152772117038155", "text": "Se questi sono gli argomenti dei nemici della Lega e di Salvini, siamo a posto...", "post_text": "Se questi sono gli argomenti dei nemici della Lega e di Salvini, siamo a posto...", "shared_text": "", "time": "2015-02-21 16:13:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/10994261_10152772116323155_391300638449076617_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=gYGI4S7bTCMAQnMv0wa1SSlleq2ifaky6LE1szaxK7JYunvnLU40kxy-w&_nc_ht=scontent-cdt1-1.xx&oh=a07ef41733ab9c37aa68c534539eceea&oe=5E7BEDA1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152768206543155", "text": "Lo diciamo chiaramente? L'immigrazione incontrollata \u00e8 un grande BUSINESS!\nPer i trafficanti di esseri umani. Ma anche per tanti che ci \"mangiano\" in Italia... Voi che dite?", "post_text": "Lo diciamo chiaramente? L'immigrazione incontrollata \u00e8 un grande BUSINESS!\nPer i trafficanti di esseri umani. Ma anche per tanti che ci \"mangiano\" in Italia... Voi che dite?", "shared_text": "", "time": "2015-02-19 20:51:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152768206543155&id=252306033154", "link": null} +{"post_id": "10152767286738155", "text": "I fatti: 4 o 5 belve assaltano una gioielleria con mazze, pistole e kalashnikov. Dentro c'\u00e8 una ragazza indifesa. Graziano Stacchio con coraggio interviene.\nE ora qualcuno vorrebbe il risarcimento per la famiglia del bandito ucciso?\nVERGOGNA! #iostoconstacchio", "post_text": "I fatti: 4 o 5 belve assaltano una gioielleria con mazze, pistole e kalashnikov. Dentro c'\u00e8 una ragazza indifesa. Graziano Stacchio con coraggio interviene.\nE ora qualcuno vorrebbe il risarcimento per la famiglia del bandito ucciso?\nVERGOGNA! #iostoconstacchio", "shared_text": "", "time": "2015-02-19 12:03:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152767286738155&id=252306033154", "link": null} +{"post_id": "10152766207963155", "text": "Roba da matti, ecco gli amici della Boldrini...\nP.s.: sar\u00e0 anche un'auto finta, di scena... ma chi la custodisce?", "post_text": "Roba da matti, ecco gli amici della Boldrini...\nP.s.: sar\u00e0 anche un'auto finta, di scena... ma chi la custodisce?", "shared_text": "", "time": "2015-02-18 23:34:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152766207963155&id=252306033154", "link": null} +{"post_id": "10152765434708155", "text": "Per la sinistra l'IMMIGRAZIONE \u00e8 un diritto...\nNoi riteniamo che i senza-tetto e i senza-lavoro ITALIANI abbiano pi\u00f9 DIRITTI rispetto a chi sbarca domani mattina. Punto.\n>>> SABATO 28 ROMA, ORE 15 #renziacasa <<< [http://www.renziacasa.com/ - 02 66.234.234]", "post_text": "Per la sinistra l'IMMIGRAZIONE \u00e8 un diritto...\nNoi riteniamo che i senza-tetto e i senza-lavoro ITALIANI abbiano pi\u00f9 DIRITTI rispetto a chi sbarca domani mattina. Punto.\n>>> SABATO 28 ROMA, ORE 15 #renziacasa <<< [http://www.renziacasa.com/ - 02 66.234.234]", "shared_text": "", "time": "2015-02-18 16:30:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152765427123155&id=252306033154", "link": "http://www.renziacasa.com/?fbclid=IwAR2aHX0Cifk9Fdru3plUHHhZJ8dwEJzvLEiJpOieBWyybpsMtBD6B3ouUmA"} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-02-17 08:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10360336_10152762510358155_460864771992347906_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=9g0abnU4ClcAQn0IlXG17ylDvVhHUVqVDT2BN8z0UcZ7SErpmcbXcFl1Q&_nc_ht=scontent-cdt1-1.xx&oh=ac59a5a62384110717aa465d58ae9647&oe=5E3F7905", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152756216653155", "text": "Anche a Mosca la Nutella spopola!", "post_text": "Anche a Mosca la Nutella spopola!", "shared_text": "", "time": "2015-02-14 16:50:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/1909294_10152756216388155_8406217637865908238_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=NY8O4aluhYkAQlBh2-leSGFopUk2kly0vbhxNJtHluJTcQCJUoUSPxVdA&_nc_ht=scontent-cdt1-1.xx&oh=1c3522a57bf956bdbfcaec0301f96e1d&oe=5E3E8105", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152752068818155", "text": "3.000 morti in un anno nel Mediterraneo, 3.000 vittime sulla coscienza di chi incoraggia queste persone a partire.\nBasta sprecare soldi dei contribuenti: per evitare nuove stragi in mare, FERMIAMO LE PARTENZE e aiutiamoli a casa loro!", "post_text": "3.000 morti in un anno nel Mediterraneo, 3.000 vittime sulla coscienza di chi incoraggia queste persone a partire.\nBasta sprecare soldi dei contribuenti: per evitare nuove stragi in mare, FERMIAMO LE PARTENZE e aiutiamoli a casa loro!", "shared_text": "", "time": "2015-02-12 15:34:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152752068818155&id=252306033154", "link": null} +{"post_id": "10152750701743155", "text": "Le truppe della NATO invece che giocare alla guerra con la Russia vadano a sterminare le bestie dell'Isis che sgozzano e bruciano vivi gli esseri umani!", "post_text": "Le truppe della NATO invece che giocare alla guerra con la Russia vadano a sterminare le bestie dell'Isis che sgozzano e bruciano vivi gli esseri umani!", "shared_text": "", "time": "2015-02-11 21:37:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152750701743155&id=252306033154", "link": null} +{"post_id": "10152742781768155", "text": "Graziano, benzinaio vicentino: ha sparato ad un bandito, ha messo in gioco la propria vita per difendere quella di altri.\nOccorre cambiare il codice penale sull'eccesso di legittima difesa perch\u00e9 in un paese normale meriterebbe un attestato di riconoscenza. Siete d'accordo?\n#IOSTOCONSTACCHIO", "post_text": "Graziano, benzinaio vicentino: ha sparato ad un bandito, ha messo in gioco la propria vita per difendere quella di altri.\nOccorre cambiare il codice penale sull'eccesso di legittima difesa perch\u00e9 in un paese normale meriterebbe un attestato di riconoscenza. Siete d'accordo?\n#IOSTOCONSTACCHIO", "shared_text": "", "time": "2015-02-09 19:06:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152742781768155&id=252306033154", "link": null} +{"post_id": "10152742361438155", "text": "Di ieri a Palermo porto nel cuore le parole dei pescatori e degli agricoltori siciliani: \"ci stanno massacrando, mai avremmo pensato di chiedere aiuto ad uno che viene da Milano...\"\nNon vi lasceremo soli. Promesso.", "post_text": "Di ieri a Palermo porto nel cuore le parole dei pescatori e degli agricoltori siciliani: \"ci stanno massacrando, mai avremmo pensato di chiedere aiuto ad uno che viene da Milano...\"\nNon vi lasceremo soli. Promesso.", "shared_text": "", "time": "2015-02-09 15:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p235x350/10911262_10152742360593155_6838978438013793685_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=EJdZXHimp60AQnDH4wiun33NTBV2_EIq7VQv5eFzEPSFDlL7DXWQuMROw&_nc_ht=scontent-cdt1-1.xx&oh=1d02c4b7907a16be851da620c7cb6465&oe=5E870EBD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152736797118155", "text": "Bellissimo!\nAnche sotto l'acqua, almeno 500 cittadini stanno protestando a Crema per dire NO ALLA MOSCHEA.\nE la sindaca del PD, da vera democratica, non fa entrare queste persone in Consiglio Comunale: vergogna!", "post_text": "Bellissimo!\nAnche sotto l'acqua, almeno 500 cittadini stanno protestando a Crema per dire NO ALLA MOSCHEA.\nE la sindaca del PD, da vera democratica, non fa entrare queste persone in Consiglio Comunale: vergogna!", "shared_text": "", "time": "2015-02-06 20:59:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10959651_10152736794678155_7989726696297691661_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=VdG8St7fiK8AQkfKLLqkbiefODkYClVrG52p87mxb7lf62y3sO7uHAu-w&_nc_ht=scontent-cdt1-1.xx&oh=7c9c29d7bfdca459247d23d7a041d8c7&oe=5E7F3A47", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152736038268155", "text": "A Udine dei presunti profughi hanno protestato per la qualit\u00e0 del cibo. Zuppa di legumi, frittata, pasta, carne e patate. Mangiano poco e male? Che tornino a CASA LORO, e diamo quel cibo agli italiani bisognosi!", "post_text": "A Udine dei presunti profughi hanno protestato per la qualit\u00e0 del cibo. Zuppa di legumi, frittata, pasta, carne e patate. Mangiano poco e male? Che tornino a CASA LORO, e diamo quel cibo agli italiani bisognosi!", "shared_text": "", "time": "2015-02-06 13:32:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152736038268155&id=252306033154", "link": null} +{"post_id": "10152734752963155", "text": "800 persone a Montesilvano, vicino a Pescara, per presentare il progetto di \"Noi con Salvini\" in Abruzzo.\nTanta fiducia ripaga tutto il nostro impegno, grazie!", "post_text": "800 persone a Montesilvano, vicino a Pescara, per presentare il progetto di \"Noi con Salvini\" in Abruzzo.\nTanta fiducia ripaga tutto il nostro impegno, grazie!", "shared_text": "", "time": "2015-02-05 20:16:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10959441_10152734749033155_4183023779298031149_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=hHcyFHqeJasAQnnx77K9ldOarOWNpocgORAwBFl9SMgt5jiKjuwsEq39A&_nc_ht=scontent-cdt1-1.xx&oh=d2558472bf7b5d1380933a9f3d552ec4&oe=5E865AAE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152728102358155", "text": "Dieci giorni fa ha bocciato il Referendum per cancellare la legge Fornero.\nE oggi dice che si occuper\u00e0 di chi \u00e8 in difficolt\u00e0.\n#Mattarella non \u00e8 il mio presidente.", "post_text": "Dieci giorni fa ha bocciato il Referendum per cancellare la legge Fornero.\nE oggi dice che si occuper\u00e0 di chi \u00e8 in difficolt\u00e0.\n#Mattarella non \u00e8 il mio presidente.", "shared_text": "", "time": "2015-02-02 14:57:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152728102358155&id=252306033154", "link": null} +{"post_id": "10152726688238155", "text": "Incredibile... il Milan ha fatto gol...\nEvidentemente la Madonnina ha guardato gi\u00f9!", "post_text": "Incredibile... il Milan ha fatto gol...\nEvidentemente la Madonnina ha guardato gi\u00f9!", "shared_text": "", "time": "2015-02-01 21:09:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1544309_10152726687098155_347658206030896318_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=eO2a10NLG-4AQnqnrCBBBZ4RFahT1NI_pGk7IeKZj4ILIkl2lRcdBZ64w&_nc_ht=scontent-cdt1-1.xx&oh=c36eeab41270ff0bc864c13837f21fd4&oe=5E40539E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152726222808155", "text": "\u00c8 un governo amico dei GRANDI, di Confindustria, delle banche, dell\u2019Europa\u2026 Ma il 2015 sar\u00e0 l\u2019anno dei PICCOLI, di quelli che hanno sempre reso bella e forte l\u2019Italia.\nSabato 28 febbraio alle 15 vi aspetto a ROMA, in piazza del Popolo, per dire tutti insieme: l'Italia NON \u00e8 della Sinistra, #RENZIACASA!!!", "post_text": "\u00c8 un governo amico dei GRANDI, di Confindustria, delle banche, dell\u2019Europa\u2026 Ma il 2015 sar\u00e0 l\u2019anno dei PICCOLI, di quelli che hanno sempre reso bella e forte l\u2019Italia.\nSabato 28 febbraio alle 15 vi aspetto a ROMA, in piazza del Popolo, per dire tutti insieme: l'Italia NON \u00e8 della Sinistra, #RENZIACASA!!!", "shared_text": "", "time": "2015-02-01 17:04:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152726222808155&id=252306033154", "link": null} +{"post_id": "10152725867843155", "text": "Dai, state cantando???", "post_text": "Dai, state cantando???", "shared_text": "", "time": "2015-02-01 14:01:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10968592_10152725867598155_6527935260361498229_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=NIE9lL2hCkgAQkGeWWzDaHRM2Rj1qZfS0bNtMad0eQn4FnY_pGcdsUjmA&_nc_ht=scontent-cdt1-1.xx&oh=cdd61fb023f9023663fda0de652ac208&oe=5E8ADFE5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152725750708155", "text": "Con una capriola Angelino salva (per ora) la poltrona...", "post_text": "Con una capriola Angelino salva (per ora) la poltrona...", "shared_text": "", "time": "2015-02-01 12:55:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152725750708155&id=252306033154", "link": null} +{"post_id": "10152721473158155", "text": "Nel 2014 migliaia di imprenditori, artigiani e commercianti hanno chiuso. MASSACRATI dalle TASSE.\nE sentite cosa ha avuto il coraggio di dire la Serracchiani\u2026\nQuesta vive in Italia o su Marte?", "post_text": "Nel 2014 migliaia di imprenditori, artigiani e commercianti hanno chiuso. MASSACRATI dalle TASSE.\nE sentite cosa ha avuto il coraggio di dire la Serracchiani\u2026\nQuesta vive in Italia o su Marte?", "shared_text": "", "time": "2015-01-30 15:13:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152721473158155&id=252306033154", "link": null} +{"post_id": "10152721122703155", "text": "Questo artigiano, nel darmi in mano gli attrezzi del mestiere, ha corso un grande rischio!\nCome sono lontani i bisticci fra Renzi e Berlusconi...", "post_text": "Questo artigiano, nel darmi in mano gli attrezzi del mestiere, ha corso un grande rischio!\nCome sono lontani i bisticci fra Renzi e Berlusconi...", "shared_text": "", "time": "2015-01-30 10:57:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10959428_10152721121133155_3239522006858851609_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=Id-ZwitygnYAQmxk3KLkXi9NEGHfzojn6gH8Tbx_8tG2R4wTrAc0TAzFA&_nc_ht=scontent-cdt1-1.xx&oh=e61d71e32f92a8bc024fd6ac80a89bee&oe=5E887F5E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152719896348155", "text": "Sala strapiena con la Lega ad Aosta, dove domani parteciper\u00f2 alla straordinaria Fiera di Sant'Orso, 1.000 anni di Storia e Artigianato.\nE stasera con la felpa a \"Porta a porta\".", "post_text": "Sala strapiena con la Lega ad Aosta, dove domani parteciper\u00f2 alla straordinaria Fiera di Sant'Orso, 1.000 anni di Storia e Artigianato.\nE stasera con la felpa a \"Porta a porta\".", "shared_text": "", "time": "2015-01-29 19:54:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p200x200/10952062_10152719868888155_8585923471779803337_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=BxwantB2y28AQnlO2m9whg3irrQGn3fQFJFaLvt12O9hQTzpfQM3nqBZA&_nc_ht=scontent-cdt1-1.xx&oh=b651a492ff473fa2c298c36e66b97bb7&oe=5E82415F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152719069773155", "text": "Anche in Francia si parla di Lega!", "post_text": "Anche in Francia si parla di Lega!", "shared_text": "", "time": "2015-01-29 13:41:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10827949_10152719069613155_2995159733106418010_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=ARJ9VCPGligAQlR8IUlYzhdE95wLpj1-Ya8q6cV0-smMiD009YheYSpUg&_nc_ht=scontent-cdt1-1.xx&oh=0b93ecbbf058e3bc04ffd2012a406f39&oe=5E7A2262", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152717724373155", "text": "Tanti nomi, tutti di sinistra e uno peggio dell'altro. Sarebbe pi\u00f9 civile che fossero gli italiani a votare direttamente il Presidente della Repubblica. Siete d'accordo?", "post_text": "Tanti nomi, tutti di sinistra e uno peggio dell'altro. Sarebbe pi\u00f9 civile che fossero gli italiani a votare direttamente il Presidente della Repubblica. Siete d'accordo?", "shared_text": "", "time": "2015-01-28 21:54:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152717724373155&id=252306033154", "link": null} +{"post_id": "10152717100288155", "text": "Non mi piace chi vota scheda bianca, come Renzi.\nNon mi piace chi passa dalla rivoluzione a Bersani e a Prodi, come i Cinque Stelle.\nE a Berlusconi chiedo: perch\u00e9 non Vittorio Feltri? Noi domani lo votiamo.", "post_text": "Non mi piace chi vota scheda bianca, come Renzi.\nNon mi piace chi passa dalla rivoluzione a Bersani e a Prodi, come i Cinque Stelle.\nE a Berlusconi chiedo: perch\u00e9 non Vittorio Feltri? Noi domani lo votiamo.", "shared_text": "", "time": "2015-01-28 16:10:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152717100288155&id=252306033154", "link": null} +{"post_id": "10152716886623155", "text": "Ieri sera da Floris. Credo di aver detto quello che la maggioranza degli italiani pensa di Renzi e delle sue \u201crenzate\u201d. Che ne dite, sono stato chiaro?", "post_text": "Ieri sera da Floris. Credo di aver detto quello che la maggioranza degli italiani pensa di Renzi e delle sue \u201crenzate\u201d. Che ne dite, sono stato chiaro?", "shared_text": "", "time": "2015-01-28 13:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152716835828155&id=252306033154", "link": null} +{"post_id": "10152712514263155", "text": "Pacchi di miliardate \"donati\" alla Grecia grazie a quei geni di Monti, di Letta e di Renzi che invece di aiutare l'Italia hanno deciso di aiutare tutto il mondo.\nItaliani cornuti e mazziati, senza che i cittadini abbiano deciso nulla.", "post_text": "Pacchi di miliardate \"donati\" alla Grecia grazie a quei geni di Monti, di Letta e di Renzi che invece di aiutare l'Italia hanno deciso di aiutare tutto il mondo.\nItaliani cornuti e mazziati, senza che i cittadini abbiano deciso nulla.", "shared_text": "", "time": "2015-01-26 09:56:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152712514263155&id=252306033154", "link": null} +{"post_id": "10152706088398155", "text": "La Consulta ha bocciato il referendum, ma non finisce qui! La battaglia della Lega contro la legge Fornero continuer\u00e0 in ogni sede e con ogni mezzo.", "post_text": "La Consulta ha bocciato il referendum, ma non finisce qui! La battaglia della Lega contro la legge Fornero continuer\u00e0 in ogni sede e con ogni mezzo.", "shared_text": "", "time": "2015-01-23 12:09:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152706088398155&id=252306033154", "link": null} +{"post_id": "10152704511838155", "text": "Il governo ammette che tra i clandestini si nascondono potenziali terroristi. Ben arrivati: la Lega lo ripete da mesi!!!\nRenzi riferisca subito in Parlamento e smetta di usare la Marina Militare per aiutare gli scafisti. I confini vanno difesi!", "post_text": "Il governo ammette che tra i clandestini si nascondono potenziali terroristi. Ben arrivati: la Lega lo ripete da mesi!!!\nRenzi riferisca subito in Parlamento e smetta di usare la Marina Militare per aiutare gli scafisti. I confini vanno difesi!", "shared_text": "", "time": "2015-01-22 17:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152704492408155&id=252306033154", "link": null} +{"post_id": "10152702641373155", "text": "E al Quirinale Prodi, Amato, Veltroni o Fassino se li votino Renzi e Berlusconi!", "post_text": "E al Quirinale Prodi, Amato, Veltroni o Fassino se li votino Renzi e Berlusconi!", "shared_text": "", "time": "2015-01-21 19:48:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152702641373155&id=252306033154", "link": null} +{"post_id": "10152701927658155", "text": "Un Parlamento che si occupa di legge elettorale anzich\u00e9 dei problemi del lavoro e della gente a me fa schifo!", "post_text": "Un Parlamento che si occupa di legge elettorale anzich\u00e9 dei problemi del lavoro e della gente a me fa schifo!", "shared_text": "", "time": "2015-01-21 12:43:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152701927658155&id=252306033154", "link": null} +{"post_id": "10152701853523155", "text": "E la Lega Amato al Quirinale non lo vota nemmeno se ci minacciano di morte!", "post_text": "E la Lega Amato al Quirinale non lo vota nemmeno se ci minacciano di morte!", "shared_text": "", "time": "2015-01-21 11:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152701841058155&id=252306033154", "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-01-19 01:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10933743_10152696919018155_2859224283406084319_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=_3pbgyW6e9wAQmGZsf8H2of3H5NRQmbkkQsVVmQbzVfQewBArwShPnUvQ&_nc_ht=scontent-cdt1-1.xx&oh=894937543138293583e4791e6af1c663&oe=5E8A87FF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2015-01-18 03:04:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/1506470_10152694796863155_584906620098220806_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=iv8q5izK8AEAQkCgH-xqZcr2T8e9jQO_7pY74Hrs6sgDz1McfMSPUWS9Q&_nc_ht=scontent-cdt1-1.xx&oh=ce5999df3c4154e964af920944765939&oe=5E85824F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152690719888155", "text": "Mancano 4 giorni, milioni di italiani devono poter decidere, milioni di italiani devono poter cancellare l\u2019infame legge Fornero!", "post_text": "Mancano 4 giorni, milioni di italiani devono poter decidere, milioni di italiani devono poter cancellare l\u2019infame legge Fornero!", "shared_text": "", "time": "2015-01-16 12:26:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10487596_10152690719688155_4305791624892861785_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=w99fsYBHBqMAQlQU9NrUg0jYM5ZIT-50xNv9GLMsZ3zDXME8jhrhloPLg&_nc_ht=scontent-cdt1-1.xx&oh=fbd7ba6d42a5295ddede2c056055ed04&oe=5E8A2912", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152686866913155", "text": "\"Questo semestre si \u00e8 chiuso con una immagine BELLISSIMA che \u00e8 quella della grande manifestazione di Parigi\".\nFENOMENOOO, SONO MORTE 20 PERSONE! Ma quelli del PD ci sono o ci fanno???", "post_text": "\"Questo semestre si \u00e8 chiuso con una immagine BELLISSIMA che \u00e8 quella della grande manifestazione di Parigi\".\nFENOMENOOO, SONO MORTE 20 PERSONE! Ma quelli del PD ci sono o ci fanno???", "shared_text": "", "time": "2015-01-14 14:01:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152686866913155&id=252306033154", "link": null} +{"post_id": "10152685395363155", "text": "Ci hanno dichiarato guerra. \u00c8 cos\u00ec difficile da capire?", "post_text": "Ci hanno dichiarato guerra. \u00c8 cos\u00ec difficile da capire?", "shared_text": "", "time": "2015-01-13 19:42:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152685395363155&id=252306033154", "link": null} +{"post_id": "10152684666208155", "text": "Renzi in Europa? Sei mesi di palle. Risultati: ZERO.", "post_text": "Renzi in Europa? Sei mesi di palle. Risultati: ZERO.", "shared_text": "", "time": "2015-01-13 12:08:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152684666208155&id=252306033154", "link": null} +{"post_id": "10152675604033155", "text": "Strage di Parigi, Roberta Pinotti del PD: \"La religione non c'entra!\". E questa sarebbe il \"Ministro della Difesa\"??? RENZI A CASA!", "post_text": "Strage di Parigi, Roberta Pinotti del PD: \"La religione non c'entra!\". E questa sarebbe il \"Ministro della Difesa\"??? RENZI A CASA!", "shared_text": "", "time": "2015-01-09 12:10:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152675604033155&id=252306033154", "link": null} +{"post_id": "10152674153303155", "text": "Secondo Lia Quartapelle del Pd \"nessun terrorismo \u00e8 di matrice religiosa\". Ma in quale mondo vivono i sinistri???", "post_text": "Secondo Lia Quartapelle del Pd \"nessun terrorismo \u00e8 di matrice religiosa\". Ma in quale mondo vivono i sinistri???", "shared_text": "", "time": "2015-01-08 19:30:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152674153303155&id=252306033154", "link": null} +{"post_id": "10152635898428155", "text": "Buon 2015, amici!\nRiprendiamoci il nostro Futuro.", "post_text": "Buon 2015, amici!\nRiprendiamoci il nostro Futuro.", "shared_text": "", "time": "2014-12-31 17:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10292543_10152635897263155_1332554300142706623_n.png.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=lokZpRPSN90AQlzo3FGrFOftQYCICUe7sIy_zIWf4ODqzHlZC4fFvVnXQ&_nc_ht=scontent-cdt1-1.xx&oh=71217be7721e62492553208b7471391e&oe=5E3DFA66", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152626852338155", "text": "Prima Monti, poi Letta, ora Renzi. Ci hanno rubato il futuro. Sabato 28 febbraio RIPRENDIAMOCELO!!!", "post_text": "Prima Monti, poi Letta, ora Renzi. Ci hanno rubato il futuro. Sabato 28 febbraio RIPRENDIAMOCELO!!!", "shared_text": "", "time": "2014-12-29 16:47:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p350x350/10151320_10152626851528155_4112331116640111629_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=cO4-yv5QNJcAQmR5dgDXDH8-eGC1iaP1rNFarQNtBK7WZhGyaY3GoaS-g&_nc_ht=scontent-cdt1-1.xx&oh=421ae389b28e9e7dcc5fa24eebeeae10&oe=5E852F4E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152626796008155", "text": "In baita con gli artigiani dei Presepi: difendiamo montagna e tradizioni!", "post_text": "In baita con gli artigiani dei Presepi: difendiamo montagna e tradizioni!", "shared_text": "", "time": "2014-12-29 16:12:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10898001_10152626794803155_4899865235698477489_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=a2RBjnqj4BkAQmquvZMDtnmTFCjtOC0bmowymaCqVtc-pWCiz47Xb8NgA&_nc_ht=scontent-cdt1-1.xx&oh=baafc7f9b81e6716ffb2ab6ef85c83fd&oe=5E3F2C15", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152626716733155", "text": "Un Presepe \u00e8 costruito sull'acqua, bravissimi gli autori!", "post_text": "Un Presepe \u00e8 costruito sull'acqua, bravissimi gli autori!", "shared_text": "", "time": "2014-12-29 15:29:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10896862_10152626716313155_5562160472126666194_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=NDzVjTvxGugAQnMNK8dg6JebXZJBm-eCY7JtFfVi_b7CnBhGnubLqcS3g&_nc_ht=scontent-cdt1-1.xx&oh=f0546c3fbaebe283103ac22cd9ae51d1&oe=5E504C1F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152622683838155", "text": "Strapieno anche stasera con la Lega ad Albino.\nTorna a casa Renzi!", "post_text": "Strapieno anche stasera con la Lega ad Albino.\nTorna a casa Renzi!", "shared_text": "", "time": "2014-12-27 23:44:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10898033_10152622683728155_243986069107393383_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=0yZxWxduo8oAQm9s1d2VNmlo0ZDBxPL44zTGu5HI7joGpRJwNsnXv-U_g&_nc_ht=scontent-cdt1-1.xx&oh=8a75f3adc6f77ade567e2222306af952&oe=5E3E1CBF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152622351003155", "text": "E stasera... stinco!!!", "post_text": "E stasera... stinco!!!", "shared_text": "", "time": "2014-12-27 20:37:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10888599_10152622350693155_7560708460081079227_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=HMNDLmB9vdQAQn78TF1RD05Qz13oD1je5f0k7bfpYvWZCuyososRQ5FOA&_nc_ht=scontent-cdt1-1.xx&oh=84ba10aa39bcac3baba33b95d2f22529&oe=5E88B6C3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152621496293155", "text": "Neve a Milano!!!", "post_text": "Neve a Milano!!!", "shared_text": "", "time": "2014-12-27 11:59:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10540565_10152621496148155_5214356488709738835_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=eJrrfM8LA8sAQmN-q12qmiDRDaV-cscPPTbiXrsHqtaJv00MXkzXlMZWg&_nc_ht=scontent-cdt1-1.xx&oh=84693082121255df6454990beba72bf8&oe=5E42171E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152617939448155", "text": "Notte serena Amici.", "post_text": "Notte serena Amici.", "shared_text": "", "time": "2014-12-26 00:04:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p280x280/10390559_10152617939118155_4077818488815922213_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=5XkKt6NBo0cAQliwlCEgpYvkO76v8trcxw-6tb16CfIpI3TirJStpq5DA&_nc_ht=scontent-cdt1-1.xx&oh=4d8e268a65b6dc89468d27b4efeda52a&oe=5E4E8DCC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152614543678155", "text": "Da una sempre bella Milano... AUGURI!!!", "post_text": "Da una sempre bella Milano... AUGURI!!!", "shared_text": "", "time": "2014-12-24 17:25:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10888915_10152614541718155_4855244937731469518_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=LKdxg10jurYAQnBh2CzlJ7SnzSF6fzbbTR9pTd8khS-OwgG_wL38Zy5AQ&_nc_ht=scontent-cdt1-1.xx&oh=0681c5a22fd129566c080f3ee90c890f&oe=5E3F1109", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152613890843155", "text": "Coi Giovani della Lega, per aiutare Babbo Natale a portare i regali ai bimbi che sono ricoverati all'Ospedale Buzzi di Milano.\nI loro sorrisi, il regalo pi\u00f9 bello.", "post_text": "Coi Giovani della Lega, per aiutare Babbo Natale a portare i regali ai bimbi che sono ricoverati all'Ospedale Buzzi di Milano.\nI loro sorrisi, il regalo pi\u00f9 bello.", "shared_text": "", "time": "2014-12-24 11:30:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10868011_10152613887743155_3343585897905832608_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=HYr_vpf21kAAQkzi6lN_ca1UCvHx1AtxYxdihhBsGnTDon0NwbnVpOrcw&_nc_ht=scontent-cdt1-1.xx&oh=8237f737c60080454c1cac68c98379dd&oe=5E413124", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152612385623155", "text": "DONARE SANGUE fa bene a chi dona e a chi riceve!", "post_text": "DONARE SANGUE fa bene a chi dona e a chi riceve!", "shared_text": "", "time": "2014-12-23 18:15:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10882358_10152612384003155_2664754499738540707_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=A9K3mBxpXyUAQksmrow9kF_UuLj3ytIzWYdEmqOUl5fZrlcLXYJ8BicsQ&_nc_ht=scontent-cdt1-1.xx&oh=c70a57c89b6c2865ac5462d6032f3537&oe=5E8C1E13", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152609304593155", "text": "Al carcere di Bergamo per abbracciare Antonio Monella, imprenditore bergamasco condannato a 6 anni di galera per aver ucciso un rapinatore.\nPurtroppo per lui, grazie a uno Stato buono coi delinquenti e severo\u2026 Altro con le persone perbene, passer\u00e0 un Natale lontano da casa.\nChi volesse mandargli un messaggio di auguri pu\u00f2 scrivere ad Antonio Monella, c/o casa circondariale di via Gleno, Bergamo.\nGRAZIE.", "post_text": "Al carcere di Bergamo per abbracciare Antonio Monella, imprenditore bergamasco condannato a 6 anni di galera per aver ucciso un rapinatore.\nPurtroppo per lui, grazie a uno Stato buono coi delinquenti e severo\u2026 Altro con le persone perbene, passer\u00e0 un Natale lontano da casa.\nChi volesse mandargli un messaggio di auguri pu\u00f2 scrivere ad Antonio Monella, c/o casa circondariale di via Gleno, Bergamo.\nGRAZIE.", "shared_text": "", "time": "2014-12-22 11:22:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10885102_10152609304413155_8229445276360390909_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=tPDLlKsPwrcAQnRGc3G7GOKf6QyoQlbCTR4qsyOhP-YrnFMF2_22iB0PQ&_nc_ht=scontent-cdt1-1.xx&oh=1537477df42a17004e6c8db5f8d243a7&oe=5E4F5091", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2014-12-21 20:40:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/1743621_10152608020243155_5369809683944202147_n.png.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=xP1FmOXe55oAQluK3vNzsNEghh4d5xHw6TIn6rv7a8egDK64gAtAaCTJA&_nc_ht=scontent-cdt1-1.xx&oh=ef9a46c400c0c03e66a27babedbc90ed&oe=5E4617DA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152607015948155", "text": "Auguri Amici!\nE un pensiero a quelle tristi persone che si vergognano della nostra Storia e delle nostre tradizioni, del Presepe e del Natale.\nChi dimentica del suo passato, non avr\u00e0 un Futuro.", "post_text": "Auguri Amici!\nE un pensiero a quelle tristi persone che si vergognano della nostra Storia e delle nostre tradizioni, del Presepe e del Natale.\nChi dimentica del suo passato, non avr\u00e0 un Futuro.", "shared_text": "", "time": "2014-12-21 11:06:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10881628_10152607012308155_5685098574316488882_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=W98lKGv10F8AQlfQ2MJppCxhi8mstV2vYtKbV6dVuo0w94sX8R7TWm9LQ&_nc_ht=scontent-cdt1-1.xx&oh=a562b24834bedfc9ba0a6691f183bf0b&oe=5E3F9340", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152603917118155", "text": "Io nel cuore ho le nostre montagne!\nE voi, che luogo avete nel cuore?", "post_text": "Io nel cuore ho le nostre montagne!\nE voi, che luogo avete nel cuore?", "shared_text": "", "time": "2014-12-20 16:37:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10850159_10152603916578155_2573715763517130168_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=VZNfHW7jDloAQkAvzU3AlDAyK2-Lhw_JL6S7bhX2884iIAM6bac6lOGIA&_nc_ht=scontent-cdt1-1.xx&oh=fefe706722bf55f233a64ecfe349c134&oe=5E7A3716", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152603568303155", "text": "Centinaia di CLANDESTINI (non profughi, clandestini) alloggiati a mantenuti a spese degli italiani nelle palazzine dell'ex Villaggio Olimpico a Torino.\nE la sinistra ovviamente non fa nulla...\nGrazie a tutti i\u2026 Altro commercianti e ai residenti che ci hanno accolto e ringraziato.\nMi sono impegnato a tornare e tornare a Torino, finch\u00e9 la legalit\u00e0 non verr\u00e0 rispettata.", "post_text": "Centinaia di CLANDESTINI (non profughi, clandestini) alloggiati a mantenuti a spese degli italiani nelle palazzine dell'ex Villaggio Olimpico a Torino.\nE la sinistra ovviamente non fa nulla...\nGrazie a tutti i\u2026 Altro commercianti e ai residenti che ci hanno accolto e ringraziato.\nMi sono impegnato a tornare e tornare a Torino, finch\u00e9 la legalit\u00e0 non verr\u00e0 rispettata.", "shared_text": "", "time": "2014-12-20 13:39:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/988959_10152603566368155_4010760193013355936_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=3AD2ltHesmgAQkIEnI9a_tJU_3zXwu5UDsusksjjCy36HGfkOMALEVx6A&_nc_ht=scontent-cdt1-1.xx&oh=2c4cabffccd829a67271d154f5c79ae1&oe=5E4E1139", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152602149683155", "text": "Un abbraccio da Vigevano!\nQui c'\u00e8 voglia di lavorare, di vivere sicuri, di credere nel Futuro.\nE bravo il Sindaco che sgombera gli abusivi.", "post_text": "Un abbraccio da Vigevano!\nQui c'\u00e8 voglia di lavorare, di vivere sicuri, di credere nel Futuro.\nE bravo il Sindaco che sgombera gli abusivi.", "shared_text": "", "time": "2014-12-19 20:27:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10292515_10152602146418155_5797548650072922908_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=7yhWi50Jp78AQlTNUuAh7TMC98n5EGtiOaxyIaoWJJkGCugrUr1745Ydw&_nc_ht=scontent-cdt1-1.xx&oh=a3c3befee8034f8cc66ca9f26743af87&oe=5E7B24AF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152601849983155", "text": "La Turchia occupa militarmente da quarant'anni mezza Cipro e si ostina a negare il GENOCIDIO degli Armeni.\nMa a Bruxelles qualche genio insiste per farla entrare in Europa, e intanto l'Europa REGALA alla Turchia 600 milioni di euro l'anno...\nFuori da questa gabbia di matti!", "post_text": "La Turchia occupa militarmente da quarant'anni mezza Cipro e si ostina a negare il GENOCIDIO degli Armeni.\nMa a Bruxelles qualche genio insiste per farla entrare in Europa, e intanto l'Europa REGALA alla Turchia 600 milioni di euro l'anno...\nFuori da questa gabbia di matti!", "shared_text": "", "time": "2014-12-19 17:02:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152601849983155&id=252306033154", "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2014-12-19 06:21:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10394610_10152601719528155_3827945691651569953_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=pcsipvEXXRsAQldgGycOnOW0pkOQAhPJ_U4S6IHNQS8AKXg5epaRqPZyQ&_nc_ht=scontent-cdt1-1.xx&oh=3683462f441362c53ea614686084f744&oe=5E48D4EA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152597877133155", "text": "Ciao Amici, qui Strasburgo.\nOggi ci fanno votare sui problemi del Venezuela, della Mauritania, del Sudan, delle Filippine e della Georgia...\nMa andate a quel paese!!!\nDisoccupazione e immigrazione devastano l'\u2026 AltroEuropa, e su questo ci battiamo noi della Lega, invece questi si preoccupano del resto del mondo.\nFuori da questa Unione Sovietica Europea!", "post_text": "Ciao Amici, qui Strasburgo.\nOggi ci fanno votare sui problemi del Venezuela, della Mauritania, del Sudan, delle Filippine e della Georgia...\nMa andate a quel paese!!!\nDisoccupazione e immigrazione devastano l'\u2026 AltroEuropa, e su questo ci battiamo noi della Lega, invece questi si preoccupano del resto del mondo.\nFuori da questa Unione Sovietica Europea!", "shared_text": "", "time": "2014-12-18 11:12:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1621813_10152597875408155_7075116724079935722_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=zeHqHLuQJ2sAQmw7SdfBJm4OLcJV8K9SimtQprX97zadKqlfZlYT5TmaQ&_nc_ht=scontent-cdt1-1.xx&oh=dcfdb49c96c796ada5135ca7b9bb6a2e&oe=5E413517", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152595279713155", "text": "Buon Natale! Anche se al Liceo Stellini di Udine quest'anno non si pu\u00f2 festeggiare...", "post_text": "Buon Natale! Anche se al Liceo Stellini di Udine quest'anno non si pu\u00f2 festeggiare...", "shared_text": "", "time": "2014-12-17 12:07:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152595279713155&id=252306033154", "link": null} +{"post_id": "10152592610793155", "text": "Buond\u00ec Amici, si parte per Strasburgo!\nSpero per voi in un marted\u00ec di soddisfazioni, di lavoro e di poche incazzature su Fb...\nP.s. Prodi al Quirinale? Maddai!!!", "post_text": "Buond\u00ec Amici, si parte per Strasburgo!\nSpero per voi in un marted\u00ec di soddisfazioni, di lavoro e di poche incazzature su Fb...\nP.s. Prodi al Quirinale? Maddai!!!", "shared_text": "", "time": "2014-12-16 06:13:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10176124_10152592607943155_6398900555181261667_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=O3uSSRuvQA0AQnSa4cchAwNgKj14Be5lTtLfiRT4L5LawMJATT3l9uZdg&_nc_ht=scontent-cdt1-1.xx&oh=7956cd5237edd49fe2386be8544987a1&oe=5E796250", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152591633263155", "text": "Tanti imprenditori italiani all'incontro organizzato a Padova con Ministri della Russia e della Crimea.\nChe il 2015 sia un anno di Pace, di Lavoro e di Dialogo, le sanzioni contro la Russia sono un danno pazzesco!", "post_text": "Tanti imprenditori italiani all'incontro organizzato a Padova con Ministri della Russia e della Crimea.\nChe il 2015 sia un anno di Pace, di Lavoro e di Dialogo, le sanzioni contro la Russia sono un danno pazzesco!", "shared_text": "", "time": "2014-12-15 18:34:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10613060_10152591629898155_2128809708025997450_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=EVkGIUj71LIAQmtiIpuLp6zrr4yK4_vM844kcmau3Qqt0rLn3UvRFiNig&_nc_ht=scontent-cdt1-1.xx&oh=e2e4635cfbeb1b019be75a7d10429582&oe=5E82F66E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152591143753155", "text": "Tanta gente si \u00e8 regalata la Tessera della Lega, molti per la prima volta. GRAZIE!", "post_text": "Tanta gente si \u00e8 regalata la Tessera della Lega, molti per la prima volta. GRAZIE!", "shared_text": "", "time": "2014-12-15 13:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10858404_10152591142483155_4139052984646191620_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=Kv3eT2d-XJ4AQnJlf0T4rU8-9Bkdj0o3aiDe4S2Ard-JDzmV04yiQ33MQ&_nc_ht=scontent-cdt1-1.xx&oh=74c831cf60d1fe559d6a3fbcc946f240&oe=5E8D0B6C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152591099278155", "text": "Nonostante i tagli dello Stato (rubati altri 930 milioni di euro alla Lombardia) riusciamo a comprare un nuovo acceleratore lineare (per la radioterapia ai malati di tumore) all'Ospedale di Sondrio, grazie alla\u2026 Altro generosit\u00e0 di 15.000 valtellinesi, ai fondi raccolti dalla Cancro Primo Aiuto Onlus e al contributo della Provincia di Sondrio e di Regione Lombardia.\nLa Buona Politica, insieme ai Cittadini, pu\u00f2 fare tanto.", "post_text": "Nonostante i tagli dello Stato (rubati altri 930 milioni di euro alla Lombardia) riusciamo a comprare un nuovo acceleratore lineare (per la radioterapia ai malati di tumore) all'Ospedale di Sondrio, grazie alla\u2026 Altro generosit\u00e0 di 15.000 valtellinesi, ai fondi raccolti dalla Cancro Primo Aiuto Onlus e al contributo della Provincia di Sondrio e di Regione Lombardia.\nLa Buona Politica, insieme ai Cittadini, pu\u00f2 fare tanto.", "shared_text": "", "time": "2014-12-15 12:40:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p235x165/10858477_10152591098408155_7806744962308641989_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=CrYxbXgy2NIAQkEb4AyJQF6l1x3xPSKOwSigaAfXsUaCou3hGc9pWyn_g&_nc_ht=scontent-cdt1-1.xx&oh=da706a656d6892366cc4ba41416d774f&oe=5E4639B3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152589611718155", "text": "Nonostante il brutto tempo, tanta gente si \u00e8 regalata la Tessera della Lega, molti per la prima volta.\nSolo al gazebo di piazza Wagner, a Milano, 22 nuovi iscritti.\nGRAZIE.", "post_text": "Nonostante il brutto tempo, tanta gente si \u00e8 regalata la Tessera della Lega, molti per la prima volta.\nSolo al gazebo di piazza Wagner, a Milano, 22 nuovi iscritti.\nGRAZIE.", "shared_text": "", "time": "2014-12-14 18:40:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10801497_10152589609468155_1840075562850637952_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=EE0NdScwU3AAQkl80D5uASb5I9RUcLzaofbufwbnPr3fEt5bvDb-E4aUA&_nc_ht=scontent-cdt1-1.xx&oh=b275bb094e63dd3abdd6f867abf6844c&oe=5E8129A8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152587601713155", "text": "Grande il professor Alvin Rabushka!\nMi hanno regalato la felpa \"Gi\u00f9 le mani dall'Unione Italiana dei Ciechi\": governo Renzi, tira fuori i 6 milioni di euro che avete tolto ai CIECHI!", "post_text": "Grande il professor Alvin Rabushka!\nMi hanno regalato la felpa \"Gi\u00f9 le mani dall'Unione Italiana dei Ciechi\": governo Renzi, tira fuori i 6 milioni di euro che avete tolto ai CIECHI!", "shared_text": "", "time": "2014-12-13 18:09:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10370367_10152587594008155_5175272156457277561_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=jIdFniMndbkAQlSEHbQO269sV3tHOX64GeUO00CtvdlMvGtA8w6b3DZrQ&_nc_ht=scontent-cdt1-1.xx&oh=b34bbff9823990d574baa4184c005149&oe=5E7D65AA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152587368508155", "text": "15% di aliquota fiscale per tutti? SI PU\u00d2!\nSala strapiena a Milano, seguici in diretta sul sito della Lega Nord o su Radio Padania.\nOrgoglioso di costruire un'Italia migliore.", "post_text": "15% di aliquota fiscale per tutti? SI PU\u00d2!\nSala strapiena a Milano, seguici in diretta sul sito della Lega Nord o su Radio Padania.\nOrgoglioso di costruire un'Italia migliore.", "shared_text": "", "time": "2014-12-13 15:34:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10371381_10152587367928155_9012366176180657845_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=e5kdFG5viNAAQlmBc4mGHjbd9SRou7XET0Gea3ZXSephrh9rF3oZjlR_A&_nc_ht=scontent-cdt1-1.xx&oh=7276d1af2f887fcb647f3e19315b6e01&oe=5E854D87", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152586263713155", "text": "Una padellata di castagne e auguri per Santa Lucia amici!\nSempre che qualcuno non si offenda...", "post_text": "Una padellata di castagne e auguri per Santa Lucia amici!\nSempre che qualcuno non si offenda...", "shared_text": "", "time": "2014-12-12 23:40:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1544361_10152586262938155_1794103029013870081_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=8mDcejTRX68AQkHGMyDlFE7wsCKIdg01uqrkNUei-qN3zn-lRmkNW0N9A&_nc_ht=scontent-cdt1-1.xx&oh=6796f9f90828ba62fa0fb62de9cacad8&oe=5E86775A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152583972193155", "text": "Altra felpa bresciana!\nAltro che Dolce e Gabbana...", "post_text": "Altra felpa bresciana!\nAltro che Dolce e Gabbana...", "shared_text": "", "time": "2014-12-11 21:51:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10850099_10152583971638155_8444499690166409474_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=GEiL0grfX9oAQncn7lZAxOI6J2_i5tbwJkkQDZ5qLuD1n7jpSahRCtIFg&_nc_ht=scontent-cdt1-1.xx&oh=374a9496602178316b58e66f4da2a27a&oe=5E42DAF3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152581530183155", "text": "Domenica prossima 1.000 sedi Lega Nord aperte per la \"Giornata del Tesseramento\". CAMBIARE SI PUO'! Tu ci sarai?\nElenco sedi (in aggiornamento) qui: http://www.leganord.org/index.php/aderisci/iscriviti", "post_text": "Domenica prossima 1.000 sedi Lega Nord aperte per la \"Giornata del Tesseramento\". CAMBIARE SI PUO'! Tu ci sarai?\nElenco sedi (in aggiornamento) qui: http://www.leganord.org/index.php/aderisci/iscriviti", "shared_text": "", "time": "2014-12-10 19:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10858487_10152581529593155_4227792645313924355_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=okjghAgKt6QAQnAJKv0gX0GC4xH7Vbzm6DpgAcUC6OezqNv6_8hVXPHlA&_nc_ht=scontent-cdt1-1.xx&oh=ae9b184c9d331b37a6a846e456686898&oe=5E8613C0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.leganord.org/index.php/aderisci/iscriviti?fbclid=IwAR2H4bbznsA7HG-nY1i3w2A2lV7UhTK4Irb0EilbNFA7WHcSOeFSTV5_z74"} +{"post_id": "10152580725098155", "text": "Affollatissimo incontro con i giornalisti stranieri.\nTanta attenzione per le idee della Lega da tutto il mondo, sono molto contento.", "post_text": "Affollatissimo incontro con i giornalisti stranieri.\nTanta attenzione per le idee della Lega da tutto il mondo, sono molto contento.", "shared_text": "", "time": "2014-12-10 11:33:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/553277_10152580718178155_8636788982335201758_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=sUXuHcoXy8cAQljXYJMiMOIiKg2GEQbqXYRqS1gqtJN3yZP5WgZgP3qTw&_nc_ht=scontent-cdt1-1.xx&oh=4c010e93d77320f1c13df1ee216c0a24&oe=5E7F3D05", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152579627293155", "text": "Pronto con Floris su La 7. Che fa la Juve?", "post_text": "Pronto con Floris su La 7. Che fa la Juve?", "shared_text": "", "time": "2014-12-09 21:11:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10806441_10152579626978155_5197552811126443175_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=qAwIrBA0QekAQnHc50sHQlNqzsfHDWwA0StmhgWWtqo3JqZ2rs8m6hTlA&_nc_ht=scontent-cdt1-1.xx&oh=2f3e5aff10fa14282a9dbc765317a307&oe=5E4CB0D6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152577106113155", "text": "Ieri in Fiera, con gli amici del Consorzio della Focaccia di Recco.\nUn esempio delle nostre bont\u00e0 da far conoscere e tutelare, per evitare che ci arrivino in tavola schifezze prodotte con materie prime scadenti, che di \"italiano\" hanno solo il nome.\nE se questa Europa non ci difende... Addio Europa!\nCiao Liguria!", "post_text": "Ieri in Fiera, con gli amici del Consorzio della Focaccia di Recco.\nUn esempio delle nostre bont\u00e0 da far conoscere e tutelare, per evitare che ci arrivino in tavola schifezze prodotte con materie prime scadenti, che di \"italiano\" hanno solo il nome.\nE se questa Europa non ci difende... Addio Europa!\nCiao Liguria!", "shared_text": "", "time": "2014-12-08 18:07:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p261x260/10427338_10152577099938155_4057281923614025176_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=AZutkHr71ysAQkHKubPkFcwlHo3wArsafs3FANAamuu95aY7O07iETIUQ&_nc_ht=scontent-cdt1-1.xx&oh=5c0f2f4622e6b666d3657806cf034cd5&oe=5E8242F8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152576750208155", "text": "Ma la Sinistra, che dice che \"la Lega \u00e8 fascista\", dov'\u00e8 quando si tratta di difendere gli interessi italiani???", "post_text": "Ma la Sinistra, che dice che \"la Lega \u00e8 fascista\", dov'\u00e8 quando si tratta di difendere gli interessi italiani???", "shared_text": "", "time": "2014-12-08 13:20:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152576613063155&id=252306033154", "link": null} +{"post_id": "10152576594078155", "text": "Ora al Parlamento russo, per incontrare gli imprenditori italiani che stanno rischiando di perdere tutto per colpa delle sanzioni economiche, idiote, imposte da Bruxelles.\nL'Italia ci sta rimettendo 5 miliardi di euro!\nRenzi, dove sei?? Twitti? Mangi il gelato?", "post_text": "Ora al Parlamento russo, per incontrare gli imprenditori italiani che stanno rischiando di perdere tutto per colpa delle sanzioni economiche, idiote, imposte da Bruxelles.\nL'Italia ci sta rimettendo 5 miliardi di euro!\nRenzi, dove sei?? Twitti? Mangi il gelato?", "shared_text": "", "time": "2014-12-08 13:13:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1013641_10152576591748155_6398211321954746500_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=p_co4WwmpKQAQm87ucWoHCAJgsxJojLLg970Yl5EIAWdmwOcJSEMM1k0Q&_nc_ht=scontent-cdt1-1.xx&oh=a2f3dea8f056dccac7296f7cb7076458&oe=5E839D49", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152575064008155", "text": "In partenza per Mosca, per incontrare autorit\u00e0 russe e imprenditori italiani che rischiano di perdere tutto.\nMa non dovrebbe essere Renzi a difendere il MADE IN ITALY nel mondo???\nBuona serata Amici.", "post_text": "In partenza per Mosca, per incontrare autorit\u00e0 russe e imprenditori italiani che rischiano di perdere tutto.\nMa non dovrebbe essere Renzi a difendere il MADE IN ITALY nel mondo???\nBuona serata Amici.", "shared_text": "", "time": "2014-12-07 19:39:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10404365_10152575061378155_636131161671956345_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=3RlSAXqLlFMAQk8ZxhNuwl_GmWQyQcktS8mg13toHSwrX5mUwUWVJuH4g&_nc_ht=scontent-cdt1-1.xx&oh=0c232be8639c27f37f7b7e4f887abec5&oe=5E8960B9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152572500638155", "text": "Alla fine del semestre di Presidenza Italiana in Europa, che risultati ha portato a casa Renzi? Meno di ZERO!", "post_text": "Alla fine del semestre di Presidenza Italiana in Europa, che risultati ha portato a casa Renzi? Meno di ZERO!", "shared_text": "", "time": "2014-12-06 18:08:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152572500638155&id=252306033154", "link": null} +{"post_id": "10152572380578155", "text": "In piazza a Seriate, col Sindaco e i consiglieri, davanti al Presepe realizzato dagli ex alunni della Scuola Edile.", "post_text": "In piazza a Seriate, col Sindaco e i consiglieri, davanti al Presepe realizzato dagli ex alunni della Scuola Edile.", "shared_text": "", "time": "2014-12-06 16:40:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10696228_10152572377893155_6983467506481429860_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=lgu0P7IljFUAQmPPSJjG60Jfym4NdEd6KHg_g6lEZyxMcVlMkIlVLCYyw&_nc_ht=scontent-cdt1-1.xx&oh=d29e85e6153dad3c5a724cbbab6e811e&oe=5E7EEA7E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152568135393155", "text": "Chi occupa le case popolari? Soprattutto i clandestini. Eppure il governo Renzi, dopo aver abolito il reato di immigrazione clandestina, ora depenalizza l'occupazione abusiva... VERGOGNA!", "post_text": "Chi occupa le case popolari? Soprattutto i clandestini. Eppure il governo Renzi, dopo aver abolito il reato di immigrazione clandestina, ora depenalizza l'occupazione abusiva... VERGOGNA!", "shared_text": "", "time": "2014-12-04 17:00:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152568117278155&id=252306033154", "link": null} +{"post_id": "10152565521358155", "text": "Intervistato da Cristina Parodi a \"La Vita in Diretta\". Come sono andato? Abbastanza convincente?", "post_text": "Intervistato da Cristina Parodi a \"La Vita in Diretta\". Come sono andato? Abbastanza convincente?", "shared_text": "", "time": "2014-12-03 11:40:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152565521358155&id=252306033154", "link": null} +{"post_id": "10152564009098155", "text": "Diciamo che... non chiedo i vostri voti per la mia prestanza fisica!!! Dovrei andare in palestra, lo so... Ma pur di esporre le Nostre Idee sono disposto a tutto. O quasi. Vi aspetto domani in edicola. Sorridere allunga la vita!", "post_text": "Diciamo che... non chiedo i vostri voti per la mia prestanza fisica!!! Dovrei andare in palestra, lo so... Ma pur di esporre le Nostre Idee sono disposto a tutto. O quasi. Vi aspetto domani in edicola. Sorridere allunga la vita!", "shared_text": "", "time": "2014-12-02 18:18:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10805715_10152563985743155_5562323531940457960_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=LLLuECY2-MsAQkEBAMrLmUSnaq__BcWAwmoy5Gs6lBc2zHijF3WfboZSQ&_nc_ht=scontent-cdt1-1.xx&oh=3b8c50dcef597f67445896026e21abf0&oe=5E7C92E5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152561201258155", "text": "Il governatore del PD della Toscana, Enrico Rossi, presenta i suoi vicini di casa rom. Dimmi con chi vai e ti dir\u00f2 chi sei!\nP.s.: se gli avanza tempo anche per incontrare alluvionati, imprenditori e disoccupati, magari ci farebbe piacere.", "post_text": "Il governatore del PD della Toscana, Enrico Rossi, presenta i suoi vicini di casa rom. Dimmi con chi vai e ti dir\u00f2 chi sei!\nP.s.: se gli avanza tempo anche per incontrare alluvionati, imprenditori e disoccupati, magari ci farebbe piacere.", "shared_text": "", "time": "2014-12-01 13:25:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10428630_10152561200383155_2525299627128179241_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=atQqBKeBi_AAQl9c_kJnhtmdsN_C7TXwKuue7k2_s9tuvHiG_fqAnGEHA&_nc_ht=scontent-cdt1-1.xx&oh=9c56f8177a29602773d3b81d691c0e7f&oe=5E7EF684", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152556295428155", "text": "Un bicchierino alla vostra!\nNotte serena Amici.", "post_text": "Un bicchierino alla vostra!\nNotte serena Amici.", "shared_text": "", "time": "2014-11-28 23:30:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1505670_10152556294943155_9073039913568892212_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=jBCoPWHcMckAQkmYvjCRJap_kUfwslmoQOJSMdCfL-cqqVqxfrjiMg5Jg&_nc_ht=scontent-cdt1-1.xx&oh=566d39394f4ed34963aa58cb86cf61cd&oe=5E4C49EB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152555809793155", "text": "Con Armando Siri (PIN), sabato 13 dicembre, in diretta streaming, radio e tv, la proposta di rivoluzione fiscale della Lega: aliquota fiscale unica per tutti al 15%.", "post_text": "Con Armando Siri (PIN), sabato 13 dicembre, in diretta streaming, radio e tv, la proposta di rivoluzione fiscale della Lega: aliquota fiscale unica per tutti al 15%.", "shared_text": "", "time": "2014-11-28 18:12:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/1401251_10152555809448155_5235316080045167134_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Q_G8627dxFEAQkaHK_TE81nz86bgA78WPqFlcgK5GAZ067L-wxaj6YkWQ&_nc_ht=scontent-cdt1-1.xx&oh=63f1465eea45084c02d5f85184dd7f1a&oe=5E897972", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152555597148155", "text": "Ecco la squadra dei 9 consiglieri regionali che difenderanno i diritti dei Cittadini in Emilia Romagna!\nIl gruppo pi\u00f9 giovane della storia: al lavorooo!", "post_text": "Ecco la squadra dei 9 consiglieri regionali che difenderanno i diritti dei Cittadini in Emilia Romagna!\nIl gruppo pi\u00f9 giovane della storia: al lavorooo!", "shared_text": "", "time": "2014-11-28 15:58:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10429271_10152555595518155_1512384621597058717_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=wH3Z47U88HsAQlmp4nuwYOhDFynxMnJRbvyZ23BnOb0q2QJD6kIyc1vHg&_nc_ht=scontent-cdt1-1.xx&oh=f9a9750f08209e77c85bd7e7e2c512a3&oe=5E7B8610", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152553260523155", "text": "Qui Strasburgo.\nCon questo voto il Parlamento Europeo, compresi PD e Forza Italia, ha appena salvato le poltrone della vergognosa Commissione Europea.\nCos\u00ec potranno continuare a massacrare l'economia italiana...\nMa a voi piace questa Europa?", "post_text": "Qui Strasburgo.\nCon questo voto il Parlamento Europeo, compresi PD e Forza Italia, ha appena salvato le poltrone della vergognosa Commissione Europea.\nCos\u00ec potranno continuare a massacrare l'economia italiana...\nMa a voi piace questa Europa?", "shared_text": "", "time": "2014-11-27 12:13:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10440955_10152553255053155_5465566695262611830_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=sjKCSLZXYm4AQmAOE8gYDU6DUSYrPfZH7J-WH5SqAPgICPPQ__vPRfNyw&_nc_ht=scontent-cdt1-1.xx&oh=fa594f36aebf7d0fdc5c9b811a2c6ea7&oe=5E4C6D72", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152551936998155", "text": "Viva i tombini di ghisa, abbasso chi non ride mai di se stesso!", "post_text": "Viva i tombini di ghisa, abbasso chi non ride mai di se stesso!", "shared_text": "", "time": "2014-11-26 18:57:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152551936998155&id=252306033154", "link": null} +{"post_id": "10152544824328155", "text": "Prime riflessioni dall\u2019Emilia-Romagna.\nIl pallone Renzi si sta sgonfiando. La Lega vola, la nostra Comunit\u00e0 cresce di giorno in giorno, ovunque. Pochi amici fra i potenti, tanti Amici fra la gente.", "post_text": "Prime riflessioni dall\u2019Emilia-Romagna.\nIl pallone Renzi si sta sgonfiando. La Lega vola, la nostra Comunit\u00e0 cresce di giorno in giorno, ovunque. Pochi amici fra i potenti, tanti Amici fra la gente.", "shared_text": "", "time": "2014-11-24 02:40:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10675535_10152546514933155_1151150859652862977_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=3rHPBOX-tooAQk3j-aL4fsB3zIa-n_dGFmB8XvLLPltDwnBFoOjcbzZmg&_nc_ht=scontent-cdt1-1.xx&oh=ca3ab2d31909a019c4678a0a21d6f417&oe=5E4B2E0B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152553254763155", "text": "Clima Derby!!!\nP.s. Avete fatto il vostro Dovere in Emilia Romagna?", "post_text": "Clima Derby!!!\nP.s. Avete fatto il vostro Dovere in Emilia Romagna?", "shared_text": "", "time": "2014-11-23 20:20:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10270382_10152545833078155_4128933181335064794_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=W9rXP1EVLbQAQk-VhfBKf-kXXDbgKuiuYoGdcD15hJSyaWYo30Bt4ZEtA&_nc_ht=scontent-cdt1-1.xx&oh=8247d0ab74cc42c69e46de02a333e5b2&oe=5E7EBC2F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152544824328155", "text": "++ EMILIANI E ROMAGNOLI, OGGI #IOVOTO! ++\nDalle 7 alle 23. DAI, DAI! CAMBIARE SI PUO'!", "post_text": "++ EMILIANI E ROMAGNOLI, OGGI #IOVOTO! ++\nDalle 7 alle 23. DAI, DAI! CAMBIARE SI PUO'!", "shared_text": "", "time": "2014-11-23 07:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10403103_10152544823078155_1170218721572865538_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=Ffah24Lfq1kAQktWaCyDQ1J2kRWRsDfFgsHrVVmfFDjCFNvMIiOcqGXQA&_nc_ht=scontent-cdt1-1.xx&oh=cff1a7bca7c4d012aae6d8ed84d47a46&oe=5E481725", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2014-11-22 00:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10805539_10152541914583155_5851936151922530852_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=PPGVQZyopGwAQkcrlHl8j7KDDK_g6kxPflcW6fFcY_jjONLBPINDBT4XQ&_nc_ht=scontent-cdt1-1.xx&oh=9ae4a6bfbea8b0c1711f6825820885c2&oe=5E507B15", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152541311513155", "text": "BOLOGNA, noi ci siamo!\nTante idee, tanta passione, tanta voglia di cambiare.\nP.s. Fra i \"bravi ragazzi\" dei centri sociali che hanno danneggiato una sede del PD, hanno identificato anche il tizio che era salito sul cofano della mia macchina...\nSpero sia condannato: non alla galera, ma a spalare il fango nelle zone alluvionate!", "post_text": "BOLOGNA, noi ci siamo!\nTante idee, tanta passione, tanta voglia di cambiare.\nP.s. Fra i \"bravi ragazzi\" dei centri sociali che hanno danneggiato una sede del PD, hanno identificato anche il tizio che era salito sul cofano della mia macchina...\nSpero sia condannato: non alla galera, ma a spalare il fango nelle zone alluvionate!", "shared_text": "", "time": "2014-11-21 19:01:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1466057_10152541308073155_8505440897135063079_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=rPWVf6d40k0AQnj0XkCrcotKeTX6gKlCstdOmKG0r2hMSabDZCUAGTGAg&_nc_ht=scontent-cdt1-1.xx&oh=1815c5d52519a42ea2886460a15e7fb0&oe=5E496D8E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152541177188155", "text": "Palazzo del Governatore a Cento, dopo il terremoto... niente!\nEvviva lo Stato e la Regione Emilia, i cittadini ringraziano il PD.", "post_text": "Palazzo del Governatore a Cento, dopo il terremoto... niente!\nEvviva lo Stato e la Regione Emilia, i cittadini ringraziano il PD.", "shared_text": "", "time": "2014-11-21 17:34:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10385564_10152541175293155_8484866932810247055_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=oBIzlKsoK3QAQmD8U_za2TYYilhLBzbcJqK174wSOVPqXMwngY_BsY4EQ&_nc_ht=scontent-cdt1-1.xx&oh=c678f4ffee1155a1ad78e26abb04fbfa&oe=5E86FC52", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152540736578155", "text": "Splendida la Busseto di Verdi!\nQuanta ricchezza abbiamo, ma purtroppo certa politica non le vuole valorizzare...\nDai ragazzi, su la testa, CAMBIARE SI PU\u00d2!", "post_text": "Splendida la Busseto di Verdi!\nQuanta ricchezza abbiamo, ma purtroppo certa politica non le vuole valorizzare...\nDai ragazzi, su la testa, CAMBIARE SI PU\u00d2!", "shared_text": "", "time": "2014-11-21 12:43:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10420417_10152540735013155_6319144027464822110_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Ks4i8xlC9XoAQmDqxJcOQHdK_ctOmAPRMUKgD34b91KMwqoMgU-BSAODw&_nc_ht=scontent-cdt1-1.xx&oh=07e15f58ccb94ce7ae596cea35b0b8f5&oe=5E82F48A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152540371113155", "text": "++ OGGI TOUR #FABBRI - #SALVINI IN EMILIA + CHIUSURA A BOLOGNA ORE 18 ++\nOre 9.00 Incontro con la cittadinanza a RIVERGARO (PC) presso il mercato in piazza Paolo\nOre 9.45 Presidio \"Stop immigrazione\" a\u2026 Altro RIVERGARO (PC) Frazione Caratta - Strada Provinciale 28\nOre 10.30 Incontro con la cittadinanza a CORTEMAGGIORE (PC) presso il mercato\nOre 11.30 Incontro con la cittadinanza a BUSSETO (PR) in piazza Verdi\nOre 12.30 Incontro con la cittadinanza a REGGIO EMILIA c/o \"La Spaghetteria\" in via Emilia Santo Stefano 38\nOre 17.00 Incontro con la cittadinanza a CENTO (FE) in piazza Guercino\nOre 18.00 Comizio elettorale a BOLOGNA c/o Teatro Fossolo in via Lincoln 3\nOre 22.40 Trasmissione TV in onda su La 7 \"Bersaglio mobile\"", "post_text": "++ OGGI TOUR #FABBRI - #SALVINI IN EMILIA + CHIUSURA A BOLOGNA ORE 18 ++\nOre 9.00 Incontro con la cittadinanza a RIVERGARO (PC) presso il mercato in piazza Paolo\nOre 9.45 Presidio \"Stop immigrazione\" a\u2026 Altro RIVERGARO (PC) Frazione Caratta - Strada Provinciale 28\nOre 10.30 Incontro con la cittadinanza a CORTEMAGGIORE (PC) presso il mercato\nOre 11.30 Incontro con la cittadinanza a BUSSETO (PR) in piazza Verdi\nOre 12.30 Incontro con la cittadinanza a REGGIO EMILIA c/o \"La Spaghetteria\" in via Emilia Santo Stefano 38\nOre 17.00 Incontro con la cittadinanza a CENTO (FE) in piazza Guercino\nOre 18.00 Comizio elettorale a BOLOGNA c/o Teatro Fossolo in via Lincoln 3\nOre 22.40 Trasmissione TV in onda su La 7 \"Bersaglio mobile\"", "shared_text": "", "time": "2014-11-21 07:00:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10749959_10152540371073155_3322651104449707972_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=-3Bkxjo8aawAQnKuryFUx1LNpvnPskpVQYKcZ0DpmNSCsB4nph0fqkjig&_nc_ht=scontent-cdt1-1.xx&oh=04210ca0f23bcf0a60785e2ba17567e5&oe=5E4C947B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152539799433155", "text": "MENO DUE!!!\nIn Emilia-Romagna: #iovoto!\nP.s.: oggi pomeriggio, venerd\u00ec, a Bologna, ore 18, vi aspetto per la chiusura della campagna elettorale, al Teatro Fossolo di Via Lincoln 3.", "post_text": "MENO DUE!!!\nIn Emilia-Romagna: #iovoto!\nP.s.: oggi pomeriggio, venerd\u00ec, a Bologna, ore 18, vi aspetto per la chiusura della campagna elettorale, al Teatro Fossolo di Via Lincoln 3.", "shared_text": "", "time": "2014-11-20 23:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10653291_10152539798503155_1114738935574860118_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=psSoo-e9HUkAQncpcWntMXf87yAwsvD0fb2Q8M-ww30iRwzfqe0NA39Dw&_nc_ht=scontent-cdt1-1.xx&oh=049d9ef740561f4f6941e64abad58a14&oe=5E84CB17", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152539246063155", "text": "10 poveretti di sinistra urlano fuori da un bar qui a Forl\u00ec.\n\"Meglio Rom che Leghista\" dicono.\nChe vita vuota devono avere...", "post_text": "10 poveretti di sinistra urlano fuori da un bar qui a Forl\u00ec.\n\"Meglio Rom che Leghista\" dicono.\nChe vita vuota devono avere...", "shared_text": "", "time": "2014-11-20 20:06:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1476089_10152539243083155_6336272647026785141_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=1f7kd4jCUXMAQkQwcz5zhvN9iKDGFLMtfLHiXPg5OgYLuf7N6X1iykUBQ&_nc_ht=scontent-cdt1-1.xx&oh=beac34ffad266dd0d7795b33c99492eb&oe=5E403B05", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152538866898155", "text": "Domani sera a BOLOGNA, alle 18, al Cinema Teatro Fossolo di via Lincoln 3 io ci sono.\nE voi???", "post_text": "Domani sera a BOLOGNA, alle 18, al Cinema Teatro Fossolo di via Lincoln 3 io ci sono.\nE voi???", "shared_text": "", "time": "2014-11-20 16:15:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1484262_10152538866833155_8061282794775312223_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=8No-VGCuufQAQklVbwpS_VFea6jktSKaXO274AlfN6VrnNiKVkU9VyjXQ&_nc_ht=scontent-cdt1-1.xx&oh=0cef085cac4face20ea50727497300b2&oe=5E898ECD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152538810823155", "text": "250 persone incontrate a Riccione, incazzati con la sinistra che spende 100 milioni di euro per un Filobus che attraversa i paesi, massacra l'ambiente e non serve a nulla!\nViva Riccione, No TRC.", "post_text": "250 persone incontrate a Riccione, incazzati con la sinistra che spende 100 milioni di euro per un Filobus che attraversa i paesi, massacra l'ambiente e non serve a nulla!\nViva Riccione, No TRC.", "shared_text": "", "time": "2014-11-20 15:33:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10624632_10152538807148155_5077250149668919189_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=NdIWGYRgloMAQknNpRxV_mXXrr6aJvcYeN-mq5NMl-d_Hxtr5LGyZfzWw&_nc_ht=scontent-cdt1-1.xx&oh=b6584686df13736b6628b087dc5cfdd8&oe=5E4BD350", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152538657788155", "text": "Tanta gente con la Lega in piazza a Cattolica.\nMancavano i 66 IMMIGRATI che da mesi mangiano e dormono (a spese degli italiani) all'Hotel Royal, 3 stelle con piscina e spiaggia.\nUn Paese civile e generoso quei 66 letti li mette a disposizione di italiani in difficolt\u00e0!\nSbaglio?", "post_text": "Tanta gente con la Lega in piazza a Cattolica.\nMancavano i 66 IMMIGRATI che da mesi mangiano e dormono (a spese degli italiani) all'Hotel Royal, 3 stelle con piscina e spiaggia.\nUn Paese civile e generoso quei 66 letti li mette a disposizione di italiani in difficolt\u00e0!\nSbaglio?", "shared_text": "", "time": "2014-11-20 13:59:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1966804_10152538654218155_4149761102712940336_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=WO8QQ2Fl5nsAQlSy8cM348pyJTdaHkeeP1ynqGSoR_mpgHKgGpvipouFg&_nc_ht=scontent-cdt1-1.xx&oh=53bd2b508442e692155b7f4fdd8fcdb5&oe=5E4D2675", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152538539173155", "text": "A casa del grande Raoul Casadei, re del Liscio!\nLo ringrazio per la sua musica, per il suo amore per la Romagna, per le belle parole sulla Lega e per aver detto \"Io domenica vado a votare, e voter\u00f2 bene!\".\nP.s. Ci sono altre 1.000 Amici a cui piace il Liscio come a me???", "post_text": "A casa del grande Raoul Casadei, re del Liscio!\nLo ringrazio per la sua musica, per il suo amore per la Romagna, per le belle parole sulla Lega e per aver detto \"Io domenica vado a votare, e voter\u00f2 bene!\".\nP.s. Ci sono altre 1.000 Amici a cui piace il Liscio come a me???", "shared_text": "", "time": "2014-11-20 13:00:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10734208_10152538533288155_5840370065617953532_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=1bMVwh9ziBcAQmp9znSpkBwiWrO8XUHWDSYuOJO-OuEYckAqlTnFLTcBA&_nc_ht=scontent-cdt1-1.xx&oh=ae0d23f2b4c6ad7178cffa5a0ae7a0b7&oe=5E7C1F07", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152535765148155", "text": "MENO TRE!!!\nDOMENICA \u00e8 vicinaaaaa. In Emilia-Romagna: #iovoto!\nP.s.: venerd\u00ec pomeriggio a Bologna, ore 18, vi aspetto per la chiusura della campagna elettorale, al Teatro Fossolo di Via Lincoln 3)", "post_text": "MENO TRE!!!\nDOMENICA \u00e8 vicinaaaaa. In Emilia-Romagna: #iovoto!\nP.s.: venerd\u00ec pomeriggio a Bologna, ore 18, vi aspetto per la chiusura della campagna elettorale, al Teatro Fossolo di Via Lincoln 3)", "shared_text": "", "time": "2014-11-20 00:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10686927_10152537663398155_7886655743777820112_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=0b0eTunnr6UAQmdIfW1Unj-tthA6IhxALUR4Pi2qYQD_upgHvdJiX3dUw&_nc_ht=scontent-cdt1-1.xx&oh=b02e776b70460a5a532c270ae5acb4dc&oe=5E4B17EF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152537179998155", "text": "Il treno del cambiamento passa in Emilia-Romagna questa domenica fino alle 11 di sera.\nChi sta a casa, sceglie di non scegliere!", "post_text": "Il treno del cambiamento passa in Emilia-Romagna questa domenica fino alle 11 di sera.\nChi sta a casa, sceglie di non scegliere!", "shared_text": "", "time": "2014-11-19 19:30:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152537179998155&id=252306033154", "link": null} +{"post_id": "10152536547553155", "text": "L'alternativa a Renzi nasce nelle piazze, non nelle segreterie di partito e, per quanto mi riguarda, con Alfano MAI! Che ne dite?", "post_text": "L'alternativa a Renzi nasce nelle piazze, non nelle segreterie di partito e, per quanto mi riguarda, con Alfano MAI! Che ne dite?", "shared_text": "", "time": "2014-11-19 12:48:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s370x247/10505259_10152536547168155_1625879560423148531_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=Xqr9fykmsx8AQlx9eFjvOTdNuswTuEpWjZrdf9tX7qMUzt5fWFMKXTVZA&_nc_ht=scontent-cdt1-1.xx&oh=d505d18f472debdd35d275296ee38e14&oe=5E8A1F59", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152530675673155", "text": "MENO SEI!\nDOMENICA \u00e8 vicina. In Emilia-Romagna: #iovoto!\nP.s.: mettete anche voi qualche bella foto con cartello \"#iovoto Emilia-Romagna\" sui social?", "post_text": "MENO SEI!\nDOMENICA \u00e8 vicina. In Emilia-Romagna: #iovoto!\nP.s.: mettete anche voi qualche bella foto con cartello \"#iovoto Emilia-Romagna\" sui social?", "shared_text": "", "time": "2014-11-17 13:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10367728_10152530675108155_5297241414308318213_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=ZLVbaYbSF-AAQkEPZJ8wjKAi9bhHuBIoaKp46REcU6C8n8jffl3YhQVLA&_nc_ht=scontent-cdt1-1.xx&oh=790f559c4bc8a223188c8b3c7f17d8c4&oe=5E45841E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152530581288155", "text": "Questa mattina a Palazzo Lombardia insieme a Deborah Compagnoni, al governatore Roberto Maroni, all'assessore allo sport Antonio Rossi, a Flavio Ferrari (presidente Cancro primo aiuto) e Flavio Roda (presidente nazionale FISI) alla conferenza stampa di Cancro primo aiuto per la presentazione degli eventi invernali.", "post_text": "Questa mattina a Palazzo Lombardia insieme a Deborah Compagnoni, al governatore Roberto Maroni, all'assessore allo sport Antonio Rossi, a Flavio Ferrari (presidente Cancro primo aiuto) e Flavio Roda (presidente nazionale FISI) alla conferenza stampa di Cancro primo aiuto per la presentazione degli eventi invernali.", "shared_text": "", "time": "2014-11-17 12:28:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/1492450_10152530580063155_3770311877349209956_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=kJ4kB201PzcAQmczH93hoz43320mk6bwNvO6AU3E1SVNoR2mO4zbeQPrQ&_nc_ht=scontent-cdt1-1.xx&oh=d5be85917dcac71c10fcc19307b2f843&oe=5E4D64F1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152527372063155", "text": "Abbiamo qualcosa da invidiare alla sinistra???", "post_text": "Abbiamo qualcosa da invidiare alla sinistra???", "shared_text": "", "time": "2014-11-15 23:27:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10393772_10152527371243155_6153089788523121007_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=DWxTeF5r54wAQl_oCPuK61jkw_4TuXn5Q16XAjqOjThkoaTOI0ZAl9b6g&_nc_ht=scontent-cdt1-1.xx&oh=7c993cab32d134fe29ff677968cc1b04&oe=5E7F2111", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152526986463155", "text": "Finale Emilia.\nUna piccola azienda ripartita dopo il terremoto.\n23 dipendenti che ci mettono l'anima insieme ai loro \"padroni\", altro che sindacati...", "post_text": "Finale Emilia.\nUna piccola azienda ripartita dopo il terremoto.\n23 dipendenti che ci mettono l'anima insieme ai loro \"padroni\", altro che sindacati...", "shared_text": "", "time": "2014-11-15 19:37:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10376261_10152526981928155_2520834388781379233_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=HcMi_tNe8D4AQntHC82lNYK99zXz2QX1XTvqyEpr1yd8e-zKspCjm2PGQ&_nc_ht=scontent-cdt1-1.xx&oh=5797856db07b98f21c2c6ac53a9433ea&oe=5E80B6E7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152526960043155", "text": "Sapete la novit\u00e0? Ci sono dei POVERETTI che non hanno nulla di meglio da fare che creare falsi profili, copiando la mia foto, e fingendosi me in alcuni commenti. Fate attenzione, non vorrei ci rimaneste male. Il livello di FRUSTRAZIONE DEI SINISTRI \u00e8 senza confini. Buon segno!", "post_text": "Sapete la novit\u00e0? Ci sono dei POVERETTI che non hanno nulla di meglio da fare che creare falsi profili, copiando la mia foto, e fingendosi me in alcuni commenti. Fate attenzione, non vorrei ci rimaneste male. Il livello di FRUSTRAZIONE DEI SINISTRI \u00e8 senza confini. Buon segno!", "shared_text": "", "time": "2014-11-15 19:21:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/10696255_10152526956888155_5810490798345096401_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=oGUAe8_GMJwAQlClK40bni0Y5-4xkN8Gt13CV8k1Um2sgyWeI63eAw_wA&_nc_ht=scontent-cdt1-1.xx&oh=bec1a51f9d7f4ccf24ed5c351ba790b5&oe=5E4A22FB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152526897133155", "text": "Asilo e scuola elementare ricostruite, dopo il terremoto, dal sindaco Alan Fabbri e dalla splendida comunit\u00e0 di Bondeno.\nMi piacerebbe che tutta l'Emilia Romagna risorgesse cos\u00ec!", "post_text": "Asilo e scuola elementare ricostruite, dopo il terremoto, dal sindaco Alan Fabbri e dalla splendida comunit\u00e0 di Bondeno.\nMi piacerebbe che tutta l'Emilia Romagna risorgesse cos\u00ec!", "shared_text": "", "time": "2014-11-15 18:50:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10407718_10152526895738155_9186441608211955865_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=yRILIBJyqgcAQkS_e4W9ns5Uo5yxLrpLmLpWWgzwy3WZBd1khZEVSEobA&_nc_ht=scontent-cdt1-1.xx&oh=f301c3aca2107021839b1dfb8d751811&oe=5E7A46B2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152524725898155", "text": "Incontro con i COMMERCIANTI di Cesena.\nStop ai nuovi centri commerciali, via il limite di spesa di 999 euro in contanti, no all'obbligo del Bancomat, controlli sugli orari e sui contratti di lavoro dei negozi\u2026 Altro gestiti da immigrati, sospensione del Durc per terremotati e alluvionati.\nUn negozio che chiude \u00e8 sempre una sconfitta.\nCAMBIARE SI PU\u00d2.", "post_text": "Incontro con i COMMERCIANTI di Cesena.\nStop ai nuovi centri commerciali, via il limite di spesa di 999 euro in contanti, no all'obbligo del Bancomat, controlli sugli orari e sui contratti di lavoro dei negozi\u2026 Altro gestiti da immigrati, sospensione del Durc per terremotati e alluvionati.\nUn negozio che chiude \u00e8 sempre una sconfitta.\nCAMBIARE SI PU\u00d2.", "shared_text": "", "time": "2014-11-14 17:09:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10446686_10152524722553155_8665363440677150623_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=74pTjW-z21gAQleLOO7yri0z5PThwCgCeMkt1C9oNKiogwjSExk_A1Igg&_nc_ht=scontent-cdt1-1.xx&oh=e31ec92ae75a69373e48071bebb14506&oe=5E864D6E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152524624138155", "text": "Piadina romagnola!\nAzienda Orva di Bagnacavallo (Ravenna), una eccellenza italiana, 350.000 piadine sfornate e vendute ogni giorno.\nNonostante tasse e burocrazia, ci sono imprese che crescono: bravi!\nE con una ALIQUOTA FISCALE UNICA del 15%, potr\u00e0 andare anche meglio.", "post_text": "Piadina romagnola!\nAzienda Orva di Bagnacavallo (Ravenna), una eccellenza italiana, 350.000 piadine sfornate e vendute ogni giorno.\nNonostante tasse e burocrazia, ci sono imprese che crescono: bravi!\nE con una ALIQUOTA FISCALE UNICA del 15%, potr\u00e0 andare anche meglio.", "shared_text": "", "time": "2014-11-14 16:03:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1512720_10152524621178155_1441781642153706450_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=Bc-On_TSFfwAQlvvIWWtV0255daYMuA0k9AdBpbxwOMr9lDPubyg_Yswg&_nc_ht=scontent-cdt1-1.xx&oh=a0cafedf427e8f5b5a6e4211b11e542f&oe=5E79069C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152524466743155", "text": "Toilette del bar del Rione Rosso di Faenza.\nHo riso per due minuti!", "post_text": "Toilette del bar del Rione Rosso di Faenza.\nHo riso per due minuti!", "shared_text": "", "time": "2014-11-14 14:22:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10676148_10152524466098155_3910667342483609608_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=CJA4nu9BDeQAQnVKMC16eBdv0TJ81Z2lbySFomI4NqWzACqXlzBJwi0HQ&_nc_ht=scontent-cdt1-1.xx&oh=3e2806e5fd4d8f0995eac5a48ecc4efd&oe=5E46C7F3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152524325993155", "text": "In diretta dalla splendida Faenza, in collegamento con La 7.", "post_text": "In diretta dalla splendida Faenza, in collegamento con La 7.", "shared_text": "", "time": "2014-11-14 12:38:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10730845_10152524325673155_9151264233068276529_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=MVkj4PrYQ4MAQlZZweG6Zcmh_tRARr6sIbS0Aku2-XNWYi5ma-lT1mEug&_nc_ht=scontent-cdt1-1.xx&oh=f886876da9dbac89fc40e1ce811afe99&oe=5E4634BF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152524288698155", "text": "Centinaia di persone incontrate e abbracciate al mercato di Forl\u00ec.\nOvviamente c'erano anche i soliti contestatori, stavolta almeno non hanno sfasciato niente...", "post_text": "Centinaia di persone incontrate e abbracciate al mercato di Forl\u00ec.\nOvviamente c'erano anche i soliti contestatori, stavolta almeno non hanno sfasciato niente...", "shared_text": "", "time": "2014-11-14 12:09:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10375007_10152524287178155_8713105837082888082_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=kCQFGWeUcooAQnRZfUvNKI2MIYiBKNpH9mSFNM_cu3igsqP7L6qbxR0lw&_nc_ht=scontent-cdt1-1.xx&oh=2bad5cf2e9e7e2a4b60db116c3417a2a&oe=5E85703E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152522709443155", "text": "Insieme ad alcuni agenti della Polizia Locale di Piacenza.\nSiamo nel quartiere Roma, dove per risse, spaccio e accoltellamenti, le persone perbene hanno paura ad uscire di casa.\nTelecamere di sorveglianza,\u2026 Altro sequestro degli appartamenti affittati in nero, pi\u00f9 controlli nei giardini, verifiche sugli orari di apertura e chiusura dei \"negozi etnici\": non servono tanti soldi, solo buona volont\u00e0.\nAh gi\u00e0, ma a Piacenza governa la sinistra...\nCAMBIARE SI PU\u00d2! A partire da domenica 23 novembre.", "post_text": "Insieme ad alcuni agenti della Polizia Locale di Piacenza.\nSiamo nel quartiere Roma, dove per risse, spaccio e accoltellamenti, le persone perbene hanno paura ad uscire di casa.\nTelecamere di sorveglianza,\u2026 Altro sequestro degli appartamenti affittati in nero, pi\u00f9 controlli nei giardini, verifiche sugli orari di apertura e chiusura dei \"negozi etnici\": non servono tanti soldi, solo buona volont\u00e0.\nAh gi\u00e0, ma a Piacenza governa la sinistra...\nCAMBIARE SI PU\u00d2! A partire da domenica 23 novembre.", "shared_text": "", "time": "2014-11-13 19:02:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10731133_10152522705153155_5751683692971768368_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=GoEsuzWxSdsAQlTZSJR0mf8a_gozs00nqpTHtr3Qh344X0oi7vkHHjyFw&_nc_ht=scontent-cdt1-1.xx&oh=8ce091f7a9e124cb1bcccf1987dbaef3&oe=5E80DD28", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152522597978155", "text": "Incontro con gli agricoltori della provincia di Piacenza: anche loro dicono di NO alle sanzioni economiche contro la Russia.\nA rischio migliaia di posti di lavoro e 10 miliardi di mancata esportazione di nostri prodotti: Renzi, che dici???", "post_text": "Incontro con gli agricoltori della provincia di Piacenza: anche loro dicono di NO alle sanzioni economiche contro la Russia.\nA rischio migliaia di posti di lavoro e 10 miliardi di mancata esportazione di nostri prodotti: Renzi, che dici???", "shared_text": "", "time": "2014-11-13 17:59:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1426310_10152522593128155_1965708643485942151_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=V0UDWGmd5owAQkHWgDyW5FlnnD3eat48VCE0gDLJOc0baHQsqOonkDfMA&_nc_ht=scontent-cdt1-1.xx&oh=d21b7e208de7ec073fea9f424cac30f5&oe=5E4E20F5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152520723273155", "text": "Secondo tutti i sondaggi la Lega sta crescendo: perch\u00e9 secondo voi? E comunque non montiamoci la testa, e continuiamo a lavorare.", "post_text": "Secondo tutti i sondaggi la Lega sta crescendo: perch\u00e9 secondo voi? E comunque non montiamoci la testa, e continuiamo a lavorare.", "shared_text": "", "time": "2014-11-12 19:23:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/10423697_10152520721893155_2800031753122981254_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=wkqxQoN5VPQAQnGP0SoiRWB33Fw9VdXqFL_MpvAWD0A8i3ch6LDs7OtKw&_nc_ht=scontent-cdt1-1.xx&oh=ed35ddad48a9a2137e8a10114693a2ab&oe=5E867D7C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152518953308155", "text": "Amici, dopo tanti incontri un minuto di relax...\nNel video ho un quiz per voi: sapete la risposta o comprate una vocale?", "post_text": "Amici, dopo tanti incontri un minuto di relax...\nNel video ho un quiz per voi: sapete la risposta o comprate una vocale?", "shared_text": "", "time": "2014-11-11 22:23:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152518953308155&id=252306033154", "link": null} +{"post_id": "10152518600098155", "text": "Incontro con la Confartigianato di Parma.\n5.000 aziende chiuse in Emilia Romagna in un anno, follia!\nVia gli studi di settore, stop ai versamenti INPS per chi non ce la fa, aliquota fiscale unica al 15%.\nE della legge elettorale, chissenefrega!", "post_text": "Incontro con la Confartigianato di Parma.\n5.000 aziende chiuse in Emilia Romagna in un anno, follia!\nVia gli studi di settore, stop ai versamenti INPS per chi non ce la fa, aliquota fiscale unica al 15%.\nE della legge elettorale, chissenefrega!", "shared_text": "", "time": "2014-11-11 18:55:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/154591_10152518598098155_7398117256351818120_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=BZUEZQdqZV4AQnz4hz7LNU5qmQJIMAA9M5wqh3tEF3UEk7203a15vKM4w&_nc_ht=scontent-cdt1-1.xx&oh=1c66c80895ff533030a6f0736d942c00&oe=5E3F044C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152515808873155", "text": "Questa \u00e8 l'Emilia che ci piace!", "post_text": "Questa \u00e8 l'Emilia che ci piace!", "shared_text": "", "time": "2014-11-10 13:29:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10670033_10152515808528155_17893487140931525_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=wMX9E8QdlDwAQnc4u9WCNhZejks6pDriqDKOJ_PLNc5QEZEc9cekTUs6g&_nc_ht=scontent-cdt1-1.xx&oh=e7b35dfcc65df708d42cbd2d7bcc10a5&oe=5E43DAA9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152515596828155", "text": "Imola, alle nostre spalle una struttura che ospita 30 immigrati, che non arrivano da zone di guerra.\nFinch\u00e9 in Emilia ci sar\u00e0 un terremotato o un alluvionato fuori di casa, gli alberghi vanno pagati a loro, non ad altri!\n\u00c8 razzismo?", "post_text": "Imola, alle nostre spalle una struttura che ospita 30 immigrati, che non arrivano da zone di guerra.\nFinch\u00e9 in Emilia ci sar\u00e0 un terremotato o un alluvionato fuori di casa, gli alberghi vanno pagati a loro, non ad altri!\n\u00c8 razzismo?", "shared_text": "", "time": "2014-11-10 10:54:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10425124_10152515595078155_4101769225557001085_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=IT6-PVqRe7kAQnIBwncoqCzT74ORvx9C7TctGfhiLHIOBMPmJ-pOxqPwg&_nc_ht=scontent-cdt1-1.xx&oh=a7b33b3eb17f1bf3ede59d9eac85eb54&oe=5E886EA4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152515577338155", "text": "In Emilia Romagna si vota perch\u00e9 il Governatore del PD \u00e8 stato CONDANNATO.\nCos\u00ec, giusto per ricordarlo.", "post_text": "In Emilia Romagna si vota perch\u00e9 il Governatore del PD \u00e8 stato CONDANNATO.\nCos\u00ec, giusto per ricordarlo.", "shared_text": "", "time": "2014-11-10 10:35:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10382176_10152515574923155_1228388160237098720_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=n8TuSZNnDdoAQnBVaAVtUKWAWO1lS4GdTCl--pESO6LkliirfTMk1HzQQ&_nc_ht=scontent-cdt1-1.xx&oh=fc5e5efbcf201f88efb35a4bcd8ebcc1&oe=5E88898F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152513722103155", "text": "Monumento a Marco Pantani.\nQualunque sia il vostro giudizio, un grande Ciclista che ha regalato grandi Emozioni.", "post_text": "Monumento a Marco Pantani.\nQualunque sia il vostro giudizio, un grande Ciclista che ha regalato grandi Emozioni.", "shared_text": "", "time": "2014-11-09 15:47:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1620578_10152513720603155_886526595972775773_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=KLdFie6w1LkAQkT5yzsWshObUE_dJgl9PVwtP6ssdxaoVAfI73t7KiChw&_nc_ht=scontent-cdt1-1.xx&oh=1bebd6f80ec51c757e103b78799b2049&oe=5E89DD53", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152513604598155", "text": "Cesenatico, risultato raggiunto!\nDopo 5 manifestazioni e raccolte di firme, oggi finalmente i 40 immigrati che soggiornavano da mesi (a spese degli italiani) qui in albergo, sono stati allontanati.", "post_text": "Cesenatico, risultato raggiunto!\nDopo 5 manifestazioni e raccolte di firme, oggi finalmente i 40 immigrati che soggiornavano da mesi (a spese degli italiani) qui in albergo, sono stati allontanati.", "shared_text": "", "time": "2014-11-09 14:43:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10462794_10152513601758155_2347416984610798438_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=V9dkL_IxGiwAQlofdy4S1Y8KQxhnyHnHodQEXvwicHRkq8VcYgsvH2Q8Q&_nc_ht=scontent-cdt1-1.xx&oh=dd3e9a4e4ebdffd939581dc1e3cc18e6&oe=5E83F98A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152513405758155", "text": "A Fusignano col grande Arrigo Sacchi.\nChe Milan, che cuore, che vittorie!", "post_text": "A Fusignano col grande Arrigo Sacchi.\nChe Milan, che cuore, che vittorie!", "shared_text": "", "time": "2014-11-09 13:10:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1551648_10152513405063155_3428038623805211630_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=Dp3ioHXnt7UAQmEUh_EkJoj2L6LfsMe-Yy6IYS8EDmOTl75CiZNVsYSug&_nc_ht=scontent-cdt1-1.xx&oh=d1f592c8dad7e91c1ea6823d0a6e3243&oe=5E8BFC70", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152513184728155", "text": "Con gli splendidi militanti e gli amministratori di Modigliana in Val Tramazzo in Romagna.\nMilioni di euro di danni per l'alluvione, nessuna risposta da parte dello Stato. Vergogna!", "post_text": "Con gli splendidi militanti e gli amministratori di Modigliana in Val Tramazzo in Romagna.\nMilioni di euro di danni per l'alluvione, nessuna risposta da parte dello Stato. Vergogna!", "shared_text": "", "time": "2014-11-09 10:25:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/9458_10152513176363155_4743589000486912611_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=8GZT7pyaBZAAQn6VfUB2ODDLi6Tgt388JLhRkWNLjjMUp64ezU-ieUQAg&_nc_ht=scontent-cdt1-1.xx&oh=2a006d9b5a182c5925a19a47cce7479b&oe=5E418340", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152513071288155", "text": "Colazione con torta di mele e i mitici formaggini Susanna!!!\nBuona domenica Amici, e non distruggete le macchine degli altri, mi raccomando...", "post_text": "Colazione con torta di mele e i mitici formaggini Susanna!!!\nBuona domenica Amici, e non distruggete le macchine degli altri, mi raccomando...", "shared_text": "", "time": "2014-11-09 09:07:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10480225_10152513069988155_7529432899269962679_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=cztXo0--S3wAQnXRetJKNw8tQem2Fx5cIMv9McVshOCkQL-hfDCnpwbOg&_nc_ht=scontent-cdt1-1.xx&oh=a6e9a1e131be89b6c8c5da0c85c3693c&oe=5E7EA1A7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152512094678155", "text": "Le immagini parlano chiaro, questa \u00e8 la loro idea di democrazia.\n[Fonti: Il Resto del Carlino, Repubblica.it]", "post_text": "Le immagini parlano chiaro, questa \u00e8 la loro idea di democrazia.\n[Fonti: Il Resto del Carlino, Repubblica.it]", "shared_text": "", "time": "2014-11-08 21:57:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152512094678155&id=252306033154", "link": null} +{"post_id": "10152511601628155", "text": "Sala strapiena a Montesilvano per il convegno di asimmetrie.org sul DOPO EURO.\nPrima ci liberiamo di questa Europa e di questa moneta folle, prima torniamo a lavorare e sorridere.", "post_text": "Sala strapiena a Montesilvano per il convegno di asimmetrie.org sul DOPO EURO.\nPrima ci liberiamo di questa Europa e di questa moneta folle, prima torniamo a lavorare e sorridere.", "shared_text": "", "time": "2014-11-08 18:52:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10354136_10152511599148155_1335415755234149988_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=pWNUzQNvbVUAQk4kW4UCShZjZsveJ91q6iRrAFc495r0_4kHer1dxIt6w&_nc_ht=scontent-cdt1-1.xx&oh=4b49c22aa0fdb2d6ba648219664e938e&oe=5E4FC845", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://asimmetrie.org/?fbclid=IwAR37ReiVXH806Z0XLkXh48d6OpPsTMs-JsAmQzH35mndrnrbYyUnveNa8OQ"} +{"post_id": "10152510385103155", "text": "Cos\u00ec i balordi dei centri sociali hanno distrutto la nostra macchina, prima ancora che ci avvicinassimo al Campo ROM.\nNoi stiamo bene.\nBastardi.", "post_text": "Cos\u00ec i balordi dei centri sociali hanno distrutto la nostra macchina, prima ancora che ci avvicinassimo al Campo ROM.\nNoi stiamo bene.\nBastardi.", "shared_text": "", "time": "2014-11-08 12:04:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/984254_10152510383373155_7591084151829311358_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=8XK8TQqWpUcAQnpOFyqwIF36eqz9FCUl9YEj3oaJZ8WKgDo81ObECyriA&_nc_ht=scontent-cdt1-1.xx&oh=cc51bc3271baff55506697bf8723c5e3&oe=5E4A4256", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152510360318155", "text": "\"Poveri Rom, gli paghiamo le bollette perch\u00e9 hanno famiglia\" dice l'assessora bolognese di sinistra... Ma taci e vergognati!", "post_text": "\"Poveri Rom, gli paghiamo le bollette perch\u00e9 hanno famiglia\" dice l'assessora bolognese di sinistra... Ma taci e vergognati!", "shared_text": "", "time": "2014-11-08 11:41:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10351154_10152510360253155_10073476245206461_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=kjGh9zfj34YAQljei0MlU2CcAGYXthJgh0kZxh9COfJJqlbob43izjz9Q&_nc_ht=scontent-cdt1-1.xx&oh=ed32259248dd7fa72e0c631cd1564242&oe=5E823029", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152509075848155", "text": "Disastroso INCIUCIO Renzi-Cinquestelle su Consulta e Csm.\nGrillo non lo capisco, mi dispiace per i suoi elettori...", "post_text": "Disastroso INCIUCIO Renzi-Cinquestelle su Consulta e Csm.\nGrillo non lo capisco, mi dispiace per i suoi elettori...", "shared_text": "", "time": "2014-11-07 18:06:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s526x296/10496989_10152509073498155_5632161783391644325_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=sItFWvoOVFEAQmH_jYQ4FQKKpPc5vudTgGX4ZZY9sEgl_acK5AQoC-Eqg&_nc_ht=scontent-cdt1-1.xx&oh=517fd8c13683343f9f3e38221531914a&oe=5E3F0524", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152508649628155", "text": "Basta con la sinistra dell\u2019Euro, delle tasse e dell\u2019immigrazione incontrollata!\nRenzi ha il fiato corto, tante parole ma pochi fatti. Guardiamo avanti!", "post_text": "Basta con la sinistra dell\u2019Euro, delle tasse e dell\u2019immigrazione incontrollata!\nRenzi ha il fiato corto, tante parole ma pochi fatti. Guardiamo avanti!", "shared_text": "", "time": "2014-11-07 12:47:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152508649628155&id=252306033154", "link": null} +{"post_id": "10152501446888155", "text": "Pronto con la Gruber su La 7", "post_text": "Pronto con la Gruber su La 7", "shared_text": "", "time": "2014-11-03 20:33:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10313081_10152501446793155_5864249326104898211_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=1Pv1bAiqlkMAQmEFwdXBvjAe-KVf5k0RnsRkvvB6REnxO1_O3eG3EWZWA&_nc_ht=scontent-cdt1-1.xx&oh=79804883fdd46511a7a60e548cbecbbd&oe=5E4A7245", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152500814443155", "text": "Stamattina a Bologna. A questa gente che AGGREDISCE e insulta i leghisti, la Sinistra emiliana (a spese di tutti gli italiani) offre gratis acqua, luce e gas! Altro che integrazione! Un voto alla Lega \u00e8 un voto per chiudere e sgomberare tutti i campi rom.", "post_text": "Stamattina a Bologna. A questa gente che AGGREDISCE e insulta i leghisti, la Sinistra emiliana (a spese di tutti gli italiani) offre gratis acqua, luce e gas! Altro che integrazione! Un voto alla Lega \u00e8 un voto per chiudere e sgomberare tutti i campi rom.", "shared_text": "", "time": "2014-11-03 15:39:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152500814443155&id=252306033154", "link": null} +{"post_id": "10152497508233155", "text": "Uno dei libri pi\u00f9 belli che abbia letto.\n\"L'ombra del vento\" di Carlos Ruiz Zafon.\nAvete altri titoli da suggerire?", "post_text": "Uno dei libri pi\u00f9 belli che abbia letto.\n\"L'ombra del vento\" di Carlos Ruiz Zafon.\nAvete altri titoli da suggerire?", "shared_text": "", "time": "2014-11-01 22:44:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10421125_10152497506373155_3313363306573095165_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=F8VITVW6Rf4AQnR1DFHIkR0nhRVaC1ND4KrQi3VQnZ9FG-R6D0_yiaYfw&_nc_ht=scontent-cdt1-1.xx&oh=4d608040dc18c241cf900d4cddaad450&oe=5E4A7C07", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152496491418155", "text": "Stanchi del modello ROSSO in Emilia-Romagna? Noi ci siamo, siamo l'alternativa a Renzi e rappresentiamo milioni di italiani che ne hanno le PALLE PIENE di una Sinistra che ci sta portando in rovina. Amici\u2026 Altro Emiliani e Romagnoli, con Alan Fabbri, 35 anni, apprezzatissimo sindaco del terremoto, domenica 23 novembre possiamo dare un grosso dispiacere al PD, ci state?\nIntanto mettete un \"Mi piace\" a questa pagina, diffondiamo!\nhttps://www.facebook.com/fabbripresidente", "post_text": "Stanchi del modello ROSSO in Emilia-Romagna? Noi ci siamo, siamo l'alternativa a Renzi e rappresentiamo milioni di italiani che ne hanno le PALLE PIENE di una Sinistra che ci sta portando in rovina. Amici\u2026 Altro Emiliani e Romagnoli, con Alan Fabbri, 35 anni, apprezzatissimo sindaco del terremoto, domenica 23 novembre possiamo dare un grosso dispiacere al PD, ci state?\nIntanto mettete un \"Mi piace\" a questa pagina, diffondiamo!\nhttps://www.facebook.com/fabbripresidente", "shared_text": "", "time": "2014-11-01 11:59:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10653600_10152491318918155_8289918470269028515_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=JmIOLkM95FkAQkC_bz2Cgl-vyHzYCQ1o_VYbppVbgjZq28Bagx5UqyunA&_nc_ht=scontent-cdt1-1.xx&oh=c1bede62dd87e6b59c3873266509950f&oe=5E4DCAD4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152496470223155", "text": "Il Merlo preoccupato.", "post_text": "Il Merlo preoccupato.", "shared_text": "", "time": "2014-11-01 11:37:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10694385_10152496470013155_4932930959228979610_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=RvwvPpTW5JwAQmSMzkQypSUf3DsQctqK2WtycFo_5LGd6rsr3TaxvQeJQ&_nc_ht=scontent-cdt1-1.xx&oh=09fc3266b9af13fb890233272178f360&oe=5E4F9AFC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152495250993155", "text": "Tutto esaurito per la Festa della Zucca con la Lega a Ziano Piacentino!\nE voi, come la passate la serata di Halloween?", "post_text": "Tutto esaurito per la Festa della Zucca con la Lega a Ziano Piacentino!\nE voi, come la passate la serata di Halloween?", "shared_text": "", "time": "2014-10-31 21:05:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10734042_10152495248888155_5199140744659190278_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=8k1axUXzBEwAQnlCdbDClM1gKfd2LoRLTYRyTmzO0MTUunrjnAwysA_eQ&_nc_ht=scontent-cdt1-1.xx&oh=ae9e4b063f1dd8792cf452f849efe823&oe=5E41A194", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152495188323155", "text": "Assaggiare yogurt e panna cotta alla LATTERIA PIEVETTA (Castel San Giovanni, cercatela su internet) \u00e8 una emozione unica! Altro che prodotti che arrivano dall'estero, la ricchezza c'\u00e8 l'abbiamo in casa.\nP. s. Anche loro sono stati \"visitati\" dai ladri, 4.000 litri di gasolio fregati, ma questa \u00e8 un'altra storia...", "post_text": "Assaggiare yogurt e panna cotta alla LATTERIA PIEVETTA (Castel San Giovanni, cercatela su internet) \u00e8 una emozione unica! Altro che prodotti che arrivano dall'estero, la ricchezza c'\u00e8 l'abbiamo in casa.\nP. s. Anche loro sono stati \"visitati\" dai ladri, 4.000 litri di gasolio fregati, ma questa \u00e8 un'altra storia...", "shared_text": "", "time": "2014-10-31 20:31:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10696426_10152495180718155_9119015544857113273_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=iAzu__nw_-IAQkxe1XVp1y84GO1R3Wfrq3Lt7OpV16JUFMOmZMx5w0MGw&_nc_ht=scontent-cdt1-1.xx&oh=f3342cb6cb2a0ecbadfd46642fc0a2f2&oe=5E8A616D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152495089208155", "text": "Fra poco collegamento con Sky Tg 24 da un'azienda agricola nel piacentino, vittima di furti e aggressioni da parte di stranieri.\nAnche se vengono presi, in due giorni sono gi\u00e0 fuori... Ecco la Riforma della Giustizia da fare!", "post_text": "Fra poco collegamento con Sky Tg 24 da un'azienda agricola nel piacentino, vittima di furti e aggressioni da parte di stranieri.\nAnche se vengono presi, in due giorni sono gi\u00e0 fuori... Ecco la Riforma della Giustizia da fare!", "shared_text": "", "time": "2014-10-31 19:34:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10730883_10152495084628155_4762349156083350548_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=ZSEi-YsufDYAQmsEU-xmzH9dvni4KqEm9rrYogrcPUoTxs1niBAWJSukw&_nc_ht=scontent-cdt1-1.xx&oh=d777308c5744e61e3c358efa7812c565&oe=5E81C388", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152494956598155", "text": "Calendasco, provincia di Piacenza: da due anni questo Ostello ospita (a spese degli italiani) decine di immigrati che hanno tutto, anche il collegamento internet gratis.\nVergogna! Questo \u00e8 razzismo.", "post_text": "Calendasco, provincia di Piacenza: da due anni questo Ostello ospita (a spese degli italiani) decine di immigrati che hanno tutto, anche il collegamento internet gratis.\nVergogna! Questo \u00e8 razzismo.", "shared_text": "", "time": "2014-10-31 18:20:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10519505_10152494953033155_2238036280273486372_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=wD-tHsOCq8IAQlEE45FcC3G8fPR1MkHAY-k6Ppy2jT_LUae_H_oNqkzCA&_nc_ht=scontent-cdt1-1.xx&oh=039a60eb518af0cdacbcca451109fcdd&oe=5E795DCE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152494152898155", "text": "Uno, nessuno, 400.000! Grazie, la Comunit\u00e0 cresce e progetta il Futuro.", "post_text": "Uno, nessuno, 400.000! Grazie, la Comunit\u00e0 cresce e progetta il Futuro.", "shared_text": "", "time": "2014-10-31 08:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10422335_10152494152508155_260914827171438068_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=9HfbT2JiiwMAQliEWzPi-TUEoSt9mtBu-l55222YgIKGvUSU9gb1LyGIA&_nc_ht=scontent-cdt1-1.xx&oh=ac19b9cd4b51409782450b9dbf54aa27&oe=5E795D2A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152492728423155", "text": "Mia intervista a \"Le Iene\" dell'altro giorno. Vi \u00e8 piaciuta?", "post_text": "Mia intervista a \"Le Iene\" dell'altro giorno. Vi \u00e8 piaciuta?", "shared_text": "", "time": "2014-10-30 16:25:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152492728423155&id=252306033154", "link": null} +{"post_id": "10152491364993155", "text": "MPS e \"modello rosso\"? Ne abbiamo le PALLE PIENE!\nIl 23 novembre, se voti in Emilia-Romagna, scegli un Sindaco, scegli Alan Fabbri e la Lega.\nNon moriremo renziani!", "post_text": "MPS e \"modello rosso\"? Ne abbiamo le PALLE PIENE!\nIl 23 novembre, se voti in Emilia-Romagna, scegli un Sindaco, scegli Alan Fabbri e la Lega.\nNon moriremo renziani!", "shared_text": "", "time": "2014-10-29 21:02:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152491364993155&id=252306033154", "link": null} +{"post_id": "10152491071198155", "text": "Affollatissimo incontro in piazza a Siena, pazzesco esempio dei fallimenti della sinistra e del PD.\nBanca, universit\u00e0, ospedale, squadre di calcio e basket: quello che tocca il PD, muore...\nMa la gente si sta svegliando: dai, dai, dai!!!", "post_text": "Affollatissimo incontro in piazza a Siena, pazzesco esempio dei fallimenti della sinistra e del PD.\nBanca, universit\u00e0, ospedale, squadre di calcio e basket: quello che tocca il PD, muore...\nMa la gente si sta svegliando: dai, dai, dai!!!", "shared_text": "", "time": "2014-10-29 17:26:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10433828_10152491071128155_1864180201646912160_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=JZaiH1AL0ksAQmuhpkPHY3jnEquTPAChOh1RMBhZAdywoCruf2xN421Cw&_nc_ht=scontent-cdt1-1.xx&oh=64ce565a82d702d71fe50ba7f9ff81b6&oe=5E8A44C9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152489145818155", "text": "Oggi a Roma: Renzi chiuso nel Palazzo, noi in mezzo ai pompieri precari che vogliono continuare a fare il loro lavoro.", "post_text": "Oggi a Roma: Renzi chiuso nel Palazzo, noi in mezzo ai pompieri precari che vogliono continuare a fare il loro lavoro.", "shared_text": "", "time": "2014-10-28 18:04:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10648409_10152489144808155_371589724969538123_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=FNULyPPkKQ0AQn1YnfbC7hlkg7IuMRaobmDVdzqFSB_isBjOxCOZZu19A&_nc_ht=scontent-cdt1-1.xx&oh=a63bee1496ea84bba2f103ef3e071c5e&oe=5E50936E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 4 nuove foto.\n27 ottobre 2014 alle ore 09:07 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 4 nuove foto.\n27 ottobre 2014 alle ore 09:07 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "time": "2014-10-27 09:07:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10425157_10152486433023155_6646283396514032656_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=8W4bjmNc_P8AQlyM0sJIQtHzJoLMHWqYkWDBjrcl4pL74MwAJK_3G6YsQ&_nc_ht=scontent-cdt1-1.xx&oh=dcdd9f70729fb00aca4cc7eee89157a7&oe=5E45E3CE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 76 nuove foto.\n27 ottobre 2014 alle ore 08:11 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 76 nuove foto.\n27 ottobre 2014 alle ore 08:11 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "time": "2014-10-27 08:11:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1653374_10152486380823155_5052846492486034230_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=ijvmNiamNJgAQnqa94omwVnmXgI-6q5W27WevABD0wVtPEjwGU0rmsqyg&_nc_ht=scontent-cdt1-1.xx&oh=0ff9369226cc272c199d15b3211ea5c3&oe=5E4CCF89", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152484310323155", "text": "La Lega cresce, appassiona, propone: con chi dovremmo dialogare secondo voi?", "post_text": "La Lega cresce, appassiona, propone: con chi dovremmo dialogare secondo voi?", "shared_text": "", "time": "2014-10-26 13:42:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-9/cp0/e15/q65/s851x315/10734221_10152484310118155_3208522104367590187_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=MF5WlrhB6r8AQn7NvUN4l82TIUIudOFkLcj-qmWSekDPRjpLyQwRQcD4w&_nc_ht=scontent-cdt1-1.xx&oh=0ba01571ecdf08a5fcae70fce3ba8e58&oe=5E88F49D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 19 nuove foto.\n25 ottobre 2014 alle ore 12:27 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 19 nuove foto.\n25 ottobre 2014 alle ore 12:27 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "time": "2014-10-25 13:27:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/1962792_10152482151418155_3000451267679726520_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=0SznKN5NKKsAQnCuqfTDJ-fujotWpDBJM4IXYgJgfK0jJryw2H8oSw9qw&_nc_ht=scontent-cdt1-1.xx&oh=a0dbf84ea7df26ba5cd689affc5a302e&oe=5E425565", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 133 nuove foto.\n24 ottobre 2014 alle ore 17:19 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 133 nuove foto.\n24 ottobre 2014 alle ore 17:19 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "time": "2014-10-24 18:19:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10382827_10152480666778155_8846996959957438833_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=HnoYmcUHBo8AQn7xydr2hX3wqCE34i2XuwQKr1XEqof6MILMI4prx8Kyw&_nc_ht=scontent-cdt1-1.xx&oh=9d9fc21f7a349132f6ce8597ba2e96a6&oe=5E482023", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152481122513155", "text": "Castagne e Braulio, alla vostra Amici!\nSerata tranquilla?", "post_text": "Castagne e Braulio, alla vostra Amici!\nSerata tranquilla?", "shared_text": "", "time": "2014-10-24 23:14:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1560542_10152481121828155_7269158027494838722_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=ZNPj8eNYJ9oAQn4Q2ury0FbZg2zGZa1NzxWughGa2zFKzOuG_H56W6xnA&_nc_ht=scontent-cdt1-1.xx&oh=5f05534e507edee7be3ee3d0d321c350&oe=5E810E52", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 180 nuove foto.\n23 ottobre 2014 alle ore 19:48 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 180 nuove foto.\n23 ottobre 2014 alle ore 19:48 \u00b7\nAltre opzioni\nAbbiamo SVUOTATO le edicole! Siete SPETTACOLARI!!!", "time": "2014-10-23 20:48:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/10448740_10152478970433155_3397386960418363310_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=py0Z2yt9qN4AQlxNoqSrETP5q_qYjsXsrUBuK7_BDYvQOzAIbDWu09Uag&_nc_ht=scontent-cdt1-1.xx&oh=bab6b4db760d09ec606554f230a5d7dd&oe=5E7DB7B4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152478281543155", "text": "Amici, vi presento Juncker, il presidente della Commissione europea. \u00c8 uno dei maggiori responsabili del DISASTRO in cui siamo.\nGli ho portato il vostro \"saluto\", che dite, gli \u00e8 arrivato forte e chiaro?", "post_text": "Amici, vi presento Juncker, il presidente della Commissione europea. \u00c8 uno dei maggiori responsabili del DISASTRO in cui siamo.\nGli ho portato il vostro \"saluto\", che dite, gli \u00e8 arrivato forte e chiaro?", "shared_text": "", "time": "2014-10-23 13:59:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152478281543155&id=252306033154", "link": null} +{"post_id": "10152474146113155", "text": "Il Parlamento europeo insiste a rompere le palle alla Russia e all'Ungheria, invece di preoccuparsi dei problemi dei cittadini. Fra Renzi e Putin, io scelgo PUTIN. E voi?", "post_text": "Il Parlamento europeo insiste a rompere le palle alla Russia e all'Ungheria, invece di preoccuparsi dei problemi dei cittadini. Fra Renzi e Putin, io scelgo PUTIN. E voi?", "shared_text": "", "time": "2014-10-21 14:02:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10450765_10152474145848155_8339293953463650250_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=iFj3sjqXjJIAQmY-Jsbv1AVyDBKMgRzZ5hjCjw1T2dhZGiFAGVGN4YdiA&_nc_ht=scontent-cdt1-1.xx&oh=e9714dd1dfd415d4f0b54f76bbfbadd9&oe=5E8C0D86", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152474023503155", "text": "L\u2019emergenza italiana \u00e8 il LAVORO, le aziende che chiudono, da Milano a Lecce.\nIl passato lo lasciamo agli amichetti di Bruxelles e della Merkel. Guardiamo al futuro!", "post_text": "L\u2019emergenza italiana \u00e8 il LAVORO, le aziende che chiudono, da Milano a Lecce.\nIl passato lo lasciamo agli amichetti di Bruxelles e della Merkel. Guardiamo al futuro!", "shared_text": "", "time": "2014-10-21 12:26:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/1602194_10152474023273155_8667708142012022757_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=lmHpYNm002UAQmmVkoUSwpGheFv72qdjBrjq-41PsN7GrPAPJTVm5vRrQ&_nc_ht=scontent-cdt1-1.xx&oh=f8d9af15ab7ba509dcd5ebf1735339ed&oe=5E815DD7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152473654003155", "text": "Panino crudo e mozzarella, succo di frutta, e si parte per Strasburgo!\nBuona giornata Amici.", "post_text": "Panino crudo e mozzarella, succo di frutta, e si parte per Strasburgo!\nBuona giornata Amici.", "shared_text": "", "time": "2014-10-21 05:53:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/532912_10152473653483155_5779409259733565633_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=CfhQZx1SntwAQmciHwxPS4Zwv3Bf37cjsFKGILS5_eSTdTsfi_XNmfMsA&_nc_ht=scontent-cdt1-1.xx&oh=3df1e0d3d24cc801d2b38335210e2e40&oe=5E82BEAF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 383 nuove foto.\n20 ottobre 2014 alle ore 19:32 \u00b7\nAltre opzioni\nAlcune fotografie dalla indimenticabile giornata di Milano.", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 383 nuove foto.\n20 ottobre 2014 alle ore 19:32 \u00b7\nAltre opzioni\nAlcune fotografie dalla indimenticabile giornata di Milano.", "time": "2014-10-20 20:32:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10441030_10152472659553155_95385048071269613_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=LxlNuEgOkAoAQm4hzZq-Cs0_QsYr51OgMSzzxufVXRnE2dV-YhGnVq4nQ&_nc_ht=scontent-cdt1-1.xx&oh=2d6d5eea489e8089781b6af1bf89650e&oe=5E4C6F8D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152471702738155", "text": "Che bello il Naviglio di Milano, cos\u00ec pulito e curato...", "post_text": "Che bello il Naviglio di Milano, cos\u00ec pulito e curato...", "shared_text": "", "time": "2014-10-20 10:20:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10177495_10152471701798155_874814716723412109_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=hZkjB3KsS1EAQl2V3GbkbEF2kFgArsY8V5ekM5O5GwsWWjHMGG4tDUPEw&_nc_ht=scontent-cdt1-1.xx&oh=307bb630cce0f872504be6673932f600&oe=5E7E4861", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152470692348155", "text": "Tendone STRAPIENO a Sotto il Monte, nella bergamasca: la buona politica non si ferma mai!", "post_text": "Tendone STRAPIENO a Sotto il Monte, nella bergamasca: la buona politica non si ferma mai!", "shared_text": "", "time": "2014-10-19 22:24:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10432535_10152470633418155_2899813423270614510_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=Mp2QIp5snQkAQkT5ejyQfpsJodZlrbSt_dGUcyhSHgTJvxzsM7-r5JPYw&_nc_ht=scontent-cdt1-1.xx&oh=fe8c74bf0054edd7afaa264dd76c4410&oe=5E4BD1D8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 45 nuove foto.\n19 ottobre 2014 \u00b7\nAltre opzioni\nAmici, mi sono fatto raccogliere in un unico album la rassegna stampa sulla nostra indimenticabile giornata. Alcuni giornali non sono proprio contenti, molto bene: segno che la LEGA \u00e8 pi\u00f9 forte che mai!", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 45 nuove foto.\n19 ottobre 2014 \u00b7\nAltre opzioni\nAmici, mi sono fatto raccogliere in un unico album la rassegna stampa sulla nostra indimenticabile giornata. Alcuni giornali non sono proprio contenti, molto bene: segno che la LEGA \u00e8 pi\u00f9 forte che mai!", "time": "2014-10-19 12:11:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p75x225/10660214_10152470524553155_9139171149785193323_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=_Mdu3aE-XpkAQn2L6xsKyNYq9yGH8apBR26we5XhbYb6awMcu1L6RV9xQ&_nc_ht=scontent-cdt1-1.xx&oh=0fc41d4db3e244f7ca1e60b07d575bf0&oe=5E46B423", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152468332358155", "text": "Commosso e felice per questa straordinaria giornata.\nDonne e uomini, giovani e anziani, da Nord a Sud, bimbi sorridenti e poliziotti tranquilli, nessuno \"spacca vetrine\".\nDa domani gli amici dei clandestini, gli schiavisti rossi, avranno vita ancora pi\u00f9 dura.\nGRAZIE.", "post_text": "Commosso e felice per questa straordinaria giornata.\nDonne e uomini, giovani e anziani, da Nord a Sud, bimbi sorridenti e poliziotti tranquilli, nessuno \"spacca vetrine\".\nDa domani gli amici dei clandestini, gli schiavisti rossi, avranno vita ancora pi\u00f9 dura.\nGRAZIE.", "shared_text": "", "time": "2014-10-18 21:36:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10616513_10152468330433155_1093867274432945604_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=_hmRqJkDyfQAQnUgis-wesQc1rfZrutGpcyVujK9N0zRttCiJ6oN_Eg7w&_nc_ht=scontent-cdt1-1.xx&oh=3bb86032baa6b4d6c1fc21ee00f33b07&oe=5E889A0C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152467882273155", "text": "Piazza Duomo, ora. SPETTACOLO! E la coda del corteo ancora ha difficolt\u00e0 a partire! GRAZIE!!!\n#Salvini #Lega #Stopinvasione", "post_text": "Piazza Duomo, ora. SPETTACOLO! E la coda del corteo ancora ha difficolt\u00e0 a partire! GRAZIE!!!\n#Salvini #Lega #Stopinvasione", "shared_text": "", "time": "2014-10-18 18:14:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10670127_10152467882018155_6733758340609147004_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=ItrMz9k9RE0AQl6xpx7EqlCvaWVP2hQHYyLtI4cWG3MpLqbObnC6ejNqA&_nc_ht=scontent-cdt1-1.xx&oh=5a6e24df15290634cd7644d04e2fd550&oe=5E80045E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152467749178155", "text": "#stopinvasione #Milano > SIAMO TANTISSIMI! #Lega #Salvini", "post_text": "#stopinvasione #Milano > SIAMO TANTISSIMI! #Lega #Salvini", "shared_text": "", "time": "2014-10-18 17:05:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10153125_10152467748543155_6968170909341807387_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=lDblED_NIHkAQlN71oNft2oBoe52VE9YCOrDi-X9VH6ew7vZ_mHsk-qoQ&_nc_ht=scontent-cdt1-1.xx&oh=31e59d9a8fddb21b1eec3f4645dfc41c&oe=5E42D1CE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152467129603155", "text": "Mi dicono che sia il cantante rap che ha fatto l'inno per Beppe Grillo. Oggi non sar\u00e0 con la Lega a Milano. Devo dire che questo mi riempie di gioia.", "post_text": "Mi dicono che sia il cantante rap che ha fatto l'inno per Beppe Grillo. Oggi non sar\u00e0 con la Lega a Milano. Devo dire che questo mi riempie di gioia.", "shared_text": "", "time": "2014-10-18 10:18:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1897829_10152467128503155_583486161962367148_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=4QCCHJB7VEoAQnEi_kdUAy27noS8lNbgtfT3JqDm4YITTRbGoAgdtXkwA&_nc_ht=scontent-cdt1-1.xx&oh=1a759e741c213d9624348146d92daa25&oe=5E80B582", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152466032493155", "text": "DAI! Da adesso fino a domani sera vi va di mettere tutti questa immagine come copertina di Facebook?\n#stopinvasione", "post_text": "DAI! Da adesso fino a domani sera vi va di mettere tutti questa immagine come copertina di Facebook?\n#stopinvasione", "shared_text": "", "time": "2014-10-17 19:37:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10440783_10152466029548155_4160130396892661173_n.png.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=KClJ59vj0_cAQmIZ_clVjSDr1ba8_pltHqUc7jXcRZgDGo1WfcDpu6vmg&_nc_ht=scontent-cdt1-1.xx&oh=225faa4302f6aecf14b8be25fefe676b&oe=5E407D31", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152465926663155", "text": "20 minuti di incontro, cordiale e costruttivo, con Vladimir Putin.\nAbbiamo parlato di immigrazione, di pace, di imprese italiane, di valori comuni, di un'altra Europa possibile.\nNel 2014 si dialoga, non si minacciano guerre e sanzioni.", "post_text": "20 minuti di incontro, cordiale e costruttivo, con Vladimir Putin.\nAbbiamo parlato di immigrazione, di pace, di imprese italiane, di valori comuni, di un'altra Europa possibile.\nNel 2014 si dialoga, non si minacciano guerre e sanzioni.", "shared_text": "", "time": "2014-10-17 18:33:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10269349_10152465922593155_639379620683436668_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Yfj7OMGmBqYAQlMRj7X4YqUSHJriCH7cyodFO4QqLT1Oae0MaO4rJNhZw&_nc_ht=scontent-cdt1-1.xx&oh=717e1c90e46b5a21dd764d96145809a1&oe=5E87329D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152465324668155", "text": "Amici EMILIANI e ROMAGNOLI, serve il vostro aiuto!\nPochissimi giorni rimasti per le firme necessarie a presentare Alan Fabbri, apprezzatissimo sindaco del terremoto, e la lista Lega Nord alle prossime elezioni\u2026 Altro regionali. Qui trovate tutte le info su luoghi e orari: www.leganord.org/fabbripresidente.\nOppure potete chiamare: 0522 518834 (Emilia) - 0543 092566 (Romagna).\nCONTO SU DI VOI!", "post_text": "Amici EMILIANI e ROMAGNOLI, serve il vostro aiuto!\nPochissimi giorni rimasti per le firme necessarie a presentare Alan Fabbri, apprezzatissimo sindaco del terremoto, e la lista Lega Nord alle prossime elezioni\u2026 Altro regionali. Qui trovate tutte le info su luoghi e orari: www.leganord.org/fabbripresidente.\nOppure potete chiamare: 0522 518834 (Emilia) - 0543 092566 (Romagna).\nCONTO SU DI VOI!", "shared_text": "", "time": "2014-10-17 11:36:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10628109_10152465324188155_3573056159084336206_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=Bpo4mOp_hK0AQm9DwIGTSYM-gMeiFgpnXlXIfZs2awDYHRgAV6rI2pOfQ&_nc_ht=scontent-cdt1-1.xx&oh=de8e2f76457b291080738e2442f098b7&oe=5E7B346B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.leganord.org/fabbripresidente?fbclid=IwAR2K1fcyl7TGEja0rrmKQ4T5R1wXGuBcEItPiRzJpD9DKfRK5RJzMXaxssI"} +{"post_id": "10152463439303155", "text": "Un momento di relax.\nFoto del 1982, il piccolo Salvini \u00e8 facilmente riconoscibile!\nP.s. Quanta pazienza coi sinistri, \"buoni\" coi soldi degli altri...", "post_text": "Un momento di relax.\nFoto del 1982, il piccolo Salvini \u00e8 facilmente riconoscibile!\nP.s. Quanta pazienza coi sinistri, \"buoni\" coi soldi degli altri...", "shared_text": "", "time": "2014-10-16 15:42:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10418176_10152463437158155_5377700099708021933_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=mFVuPBJ-dEoAQkAY0V9kjCUv8XOt6yzHBBpa8jKTCV9s0jMpjLzLv6yaw&_nc_ht=scontent-cdt1-1.xx&oh=8f8a2181ed80bc7598abef80c860b8bf&oe=5E89E7B7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152459556613155", "text": "Titoli e grande spazio alla Lega dal tg del pi\u00f9 seguito canale TV russo. E sulla TV italiana, come va? Sempre e solo Renzi?", "post_text": "Titoli e grande spazio alla Lega dal tg del pi\u00f9 seguito canale TV russo. E sulla TV italiana, come va? Sempre e solo Renzi?", "shared_text": "", "time": "2014-10-15 14:35:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152459556613155&id=252306033154", "link": null} +{"post_id": "10152459249003155", "text": "Anche la piccola ALESSIA da CALAVINO (TN) dice #StopInvasione #iocisar\u00f2", "post_text": "Anche la piccola ALESSIA da CALAVINO (TN) dice #StopInvasione #iocisar\u00f2", "shared_text": "", "time": "2014-10-15 10:15:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s370x247/10646682_10152459248403155_5034958288743377459_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=qDU1Xn5veq8AQkubYKyPVSiezwNPhcdxvpp3_mQuELZvmtJ9oju9I_U8Q&_nc_ht=scontent-cdt1-1.xx&oh=5c1cd8d51b078fa522413ca1c7d44c1e&oe=5E7AC827", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 41 nuove foto \u2014 con Alessandro N Morelli presso Russia.\n15 ottobre 2014 alle ore 08:13 \u00b7\nAltre opzioni\nMatteo Salvini e Lega in Russia - Ottobre 2014. Viaggio pagato da noi e con ottimi risultati, per tornare a dialogare e lavorare con la Russia. E gli altri politici dove sono? [Foto Cavicchi - Corriere della Sera]", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 41 nuove foto \u2014 con Alessandro N Morelli presso Russia.\n15 ottobre 2014 alle ore 08:13 \u00b7\nAltre opzioni\nMatteo Salvini e Lega in Russia - Ottobre 2014. Viaggio pagato da noi e con ottimi risultati, per tornare a dialogare e lavorare con la Russia. E gli altri politici dove sono? [Foto Cavicchi - Corriere della Sera]", "time": "2014-10-15 09:13:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10699797_10152459176648155_5740519593965695298_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=ZSfq6y2Ztt4AQkGk-mAhcxdTMBdWbkr-1jewMh3Pz5zz_FRQpWdH-noKw&_nc_ht=scontent-cdt1-1.xx&oh=666fedb60058af1f15b7431ccafa938c&oe=5E7DEC82", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152457966313155", "text": "Quindici anni fa eravamo la quinta potenza economica al mondo.\nOra siamo ridotti come sappiamo.\nItalia, Francia e Spagna devono uscire dall\u2019Euro, insieme. Si pu\u00f2, si deve!", "post_text": "Quindici anni fa eravamo la quinta potenza economica al mondo.\nOra siamo ridotti come sappiamo.\nItalia, Francia e Spagna devono uscire dall\u2019Euro, insieme. Si pu\u00f2, si deve!", "shared_text": "", "time": "2014-10-14 19:28:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10708740_10152457965838155_4231373023111184908_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=SZAZ574gOZ4AQnmcIV0puv34HqwxrZ0wTGB36Kn1wvBBXvTmJ6t_4nibQ&_nc_ht=scontent-cdt1-1.xx&oh=1cba4e1d017e55b517a9e0891622cf00&oe=5E80E03C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152457516493155", "text": "Amici, ecco come ci ha accolto il Parlamento Russo.\nNO alle SANZIONI, NO alle FOLLIE di Bruxelles, NO al TERRORISMO islamico.\nQui c\u2019\u00e8 gente seria, ci vediamo sabato 18 a Milano!", "post_text": "Amici, ecco come ci ha accolto il Parlamento Russo.\nNO alle SANZIONI, NO alle FOLLIE di Bruxelles, NO al TERRORISMO islamico.\nQui c\u2019\u00e8 gente seria, ci vediamo sabato 18 a Milano!", "shared_text": "", "time": "2014-10-14 15:32:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152457516493155&id=252306033154", "link": null} +{"post_id": "10152457362663155", "text": "Tutti i nemici dell'EURO-MOSTRO sono miei amici.\nMa non dimentico che i Cinquestelle hanno votato con la sinistra per abolire il reato di clandestinit\u00e0.", "post_text": "Tutti i nemici dell'EURO-MOSTRO sono miei amici.\nMa non dimentico che i Cinquestelle hanno votato con la sinistra per abolire il reato di clandestinit\u00e0.", "shared_text": "", "time": "2014-10-14 14:11:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p160x160/10708551_10152457362228155_8286534572100519473_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=sRfmYEnCF6EAQnWpGq-EYOSigmecdsHpS1DCemTR0VGPwiQ_2otyuy9Ig&_nc_ht=scontent-cdt1-1.xx&oh=f97e918290256c03c9575ef635de256f&oe=5E513DF5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152457228258155", "text": "Renzi sostiene le politiche IDIOTE di Bruxelles contro la Russia che uccidono il LAVORO di tante nostre imprese. Parliamo di 12 miliardi di export italiano a rischio, altro che Jobs Act!\nPutin \u00e8 un ALLEATO, non un nemico!", "post_text": "Renzi sostiene le politiche IDIOTE di Bruxelles contro la Russia che uccidono il LAVORO di tante nostre imprese. Parliamo di 12 miliardi di export italiano a rischio, altro che Jobs Act!\nPutin \u00e8 un ALLEATO, non un nemico!", "shared_text": "", "time": "2014-10-14 12:47:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/1978564_10152457228113155_3788937351090780106_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=lERwv5XR2xEAQk_Ypmb6YOgO28a5iqmve9waX1mV-0AioyYRwSExaWtCg&_nc_ht=scontent-cdt1-1.xx&oh=dc9ce855dbfb51fa376946c2a25dd1c7&oe=5E3E4A44", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152454944523155", "text": "Sullo sfondo, alcune navi della Marina Militare Russa nel porto di Sebastopoli.\nChe dite, ne chiediamo qualcuna in prestito per Mare Nostrum?!?", "post_text": "Sullo sfondo, alcune navi della Marina Militare Russa nel porto di Sebastopoli.\nChe dite, ne chiediamo qualcuna in prestito per Mare Nostrum?!?", "shared_text": "", "time": "2014-10-13 16:26:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10670014_10152454919653155_7807881846000768331_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=kCYB0lR5h0kAQngGZMZKJqWdut4YEzuhsPRfQ8ULSNwN_OiY_R9S5qrTg&_nc_ht=scontent-cdt1-1.xx&oh=f08034081ecdb9d0912063541b6405b3&oe=5E47943D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152454412163155", "text": "Ho visitato la flotta russa a Sebastopoli, Repubblica di Crimea: facciamoci prestare una grande nave ospedale per aiutare chi ha bisogno in mezzo al mare, e usiamo invece le nostre navi per fermare l'invasione!\nSTOPINVASIONE.ORG\nStopinvasione.org", "post_text": "Ho visitato la flotta russa a Sebastopoli, Repubblica di Crimea: facciamoci prestare una grande nave ospedale per aiutare chi ha bisogno in mezzo al mare, e usiamo invece le nostre navi per fermare l'invasione!", "shared_text": "STOPINVASIONE.ORG\nStopinvasione.org", "time": "2014-10-13 11:02:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152454412163155&id=252306033154", "link": "http://www.stopinvasione.org/?fbclid=IwAR2uiSEVkJWiL-1xFQRWp9xK_fQ_tH2YzSY7vABAC6LARxhSVBIHQ6OOChE"} +{"post_id": "10152451544843155", "text": "Dalla piazza rossa di Mosca oggi mi sposto in Crimea, dove il 90% dei cittadini ha scelto, con un referendum, di aderire alla Federazione Russa.\nIncontreremo ministri, giornalisti e imprenditori, sperando di allacciare rapporti utili per il lavoro delle imprese italiane.\nBuona domenica Amici, come va dalle vostre parti?", "post_text": "Dalla piazza rossa di Mosca oggi mi sposto in Crimea, dove il 90% dei cittadini ha scelto, con un referendum, di aderire alla Federazione Russa.\nIncontreremo ministri, giornalisti e imprenditori, sperando di allacciare rapporti utili per il lavoro delle imprese italiane.\nBuona domenica Amici, come va dalle vostre parti?", "shared_text": "", "time": "2014-10-12 11:18:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10606291_10152451538218155_2339768505231329993_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=2ZAGOLhmgD8AQkQwzIiD_IaU9T1mrU1q6SEeiOtRmEQlOCrE0UfXlcL1Q&_nc_ht=scontent-cdt1-1.xx&oh=2165377c597e717326653f16f96a369e&oe=5E7C4BC3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152449961988155", "text": "\u00c8 necessaria un'alleanza tra Russia e Italia. Qui lavorano tante imprese italiane che, per colpa delle SANZIONI, sono sull'orlo del DISASTRO.\nIl pericolo \u00e8 l\u2019estremismo islamico. Con PUTIN si dialoga, non si gioca alla guerra!", "post_text": "\u00c8 necessaria un'alleanza tra Russia e Italia. Qui lavorano tante imprese italiane che, per colpa delle SANZIONI, sono sull'orlo del DISASTRO.\nIl pericolo \u00e8 l\u2019estremismo islamico. Con PUTIN si dialoga, non si gioca alla guerra!", "shared_text": "", "time": "2014-10-11 20:44:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152449961988155&id=252306033154", "link": null} +{"post_id": "10152449486003155", "text": "Anche il \"Corriere\" si \u00e8 accorto della missione leghista.\nHo spiegato come la priorit\u00e0 siano le nostre aziende e i posti di lavoro, vittime delle sanzioni, delle 400 societ\u00e0 italiane che qui operano, e ricordo a Renzi che il 30% del gas che usiamo viene dalla Russia.", "post_text": "Anche il \"Corriere\" si \u00e8 accorto della missione leghista.\nHo spiegato come la priorit\u00e0 siano le nostre aziende e i posti di lavoro, vittime delle sanzioni, delle 400 societ\u00e0 italiane che qui operano, e ricordo a Renzi che il 30% del gas che usiamo viene dalla Russia.", "shared_text": "", "time": "2014-10-11 17:27:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1654298_10152449484958155_4610527077481440655_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=J3__ss77Lu0AQmMSUL0NgD9JpmdE59ekna1sE2TBiZA3mJx-3Ft5DfYoQ&_nc_ht=scontent-cdt1-1.xx&oh=fcde5775bcf7302c416b7601799a1c56&oe=5E817B71", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152449188423155", "text": "Un saluto dalla Piazza Rossa!\nMosca citt\u00e0 pulita e tranquilla, qui MARE NOSTRUM non c\u2019\u00e8!\nSTOP INVASIONE e torniamo a vivere SICURI e SERENI anche nelle NOSTRE CITT\u00c0!", "post_text": "Un saluto dalla Piazza Rossa!\nMosca citt\u00e0 pulita e tranquilla, qui MARE NOSTRUM non c\u2019\u00e8!\nSTOP INVASIONE e torniamo a vivere SICURI e SERENI anche nelle NOSTRE CITT\u00c0!", "shared_text": "", "time": "2014-10-11 15:14:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152449188423155&id=252306033154", "link": null} +{"post_id": "10152448925633155", "text": "Qui a Mosca non c'\u00e8 un clandestino, non un lavavetri, non un campo Rom.\nE le ragazze possono prendere la metropolitana alle 2 di notte senza paura.\nMare Nostrum? Ci vorrebbe Putin...\nSabato 18 ottobre, piazza Duomo a Milano, vietato mancare!", "post_text": "Qui a Mosca non c'\u00e8 un clandestino, non un lavavetri, non un campo Rom.\nE le ragazze possono prendere la metropolitana alle 2 di notte senza paura.\nMare Nostrum? Ci vorrebbe Putin...\nSabato 18 ottobre, piazza Duomo a Milano, vietato mancare!", "shared_text": "", "time": "2014-10-11 12:31:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1512357_10152448922553155_8482863789556157734_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=DPTroTqdsZgAQm4o-bBDQmzyj3fpwKjn363Zjwe0qjuDzA_Rvf-T12iLA&_nc_ht=scontent-cdt1-1.xx&oh=97996f9380cb83c18bbc071e73617b72&oe=5E44A872", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152447245368155", "text": "Primi due importanti incontri che ho avuto a Mosca oggi.\nCon Alexei Pushkov, presidente della commissione esteri della Duma, per FERMARE LE SANZIONI che costano molto di pi\u00f9 all\u2019Italia che alla Russia.\nIl\u2026 Altro secondo nella sede del Ministero per la Crimea, anche qui un\u2019enorme opportunit\u00e0 di sviluppo e di lavoro per tante nostre imprese.\nTotale sintonia e collaborazione tra noi e Russia Unita a Strasburgo e a Bruxelles, ci saranno delle sorprese\u2026", "post_text": "Primi due importanti incontri che ho avuto a Mosca oggi.\nCon Alexei Pushkov, presidente della commissione esteri della Duma, per FERMARE LE SANZIONI che costano molto di pi\u00f9 all\u2019Italia che alla Russia.\nIl\u2026 Altro secondo nella sede del Ministero per la Crimea, anche qui un\u2019enorme opportunit\u00e0 di sviluppo e di lavoro per tante nostre imprese.\nTotale sintonia e collaborazione tra noi e Russia Unita a Strasburgo e a Bruxelles, ci saranno delle sorprese\u2026", "shared_text": "", "time": "2014-10-10 20:24:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152447245368155&id=252306033154", "link": null} +{"post_id": "10152446139448155", "text": "Un agente di polizia ad Augusta in Sicilia: \u201cBuona parte dei clandestini sparisce letteralmente nel nulla. Altro che controlli sanitari, prevenzione o quarantena!\u201d.\nPer il Governo Renzi-Alfano invece \u00e8 tutto a\u2026 Altro posto.\nVoi a chi credete? Io sto con il poliziotto!\nhttp://www.ilgiornale.it/news/politica/altro-che-quarantena-o-esami-sui-barconi-non-c-controllo-1058549.html", "post_text": "Un agente di polizia ad Augusta in Sicilia: \u201cBuona parte dei clandestini sparisce letteralmente nel nulla. Altro che controlli sanitari, prevenzione o quarantena!\u201d.\nPer il Governo Renzi-Alfano invece \u00e8 tutto a\u2026 Altro posto.\nVoi a chi credete? Io sto con il poliziotto!\nhttp://www.ilgiornale.it/news/politica/altro-che-quarantena-o-esami-sui-barconi-non-c-controllo-1058549.html", "shared_text": "", "time": "2014-10-10 12:44:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/10561784_10152446138743155_1141446430779348370_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=h6uDOsvy7DoAQlVSR26IzImiuyUlKXCMyzfxKh0DV7Y62T1iHIdu0jZgA&_nc_ht=scontent-cdt1-1.xx&oh=5dbec8d542fd1b600cd4aa4772f52f15&oe=5E4C45AB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.ilgiornale.it/news/politica/altro-che-quarantena-o-esami-sui-barconi-non-c-controllo-1058549.html?fbclid=IwAR2NdIY1331Pslq4O9dhXN0PSnbX6gDVayPH3Uv_s0bs1BaJQCTlRDPh3cs"} +{"post_id": "10152441476043155", "text": "Per colpa delle sanzioni contro la Russia e dell'aumento delle tasse, temo che in inverno per scaldarci e cucinare si torner\u00e0 alle vecchie maniere...", "post_text": "Per colpa delle sanzioni contro la Russia e dell'aumento delle tasse, temo che in inverno per scaldarci e cucinare si torner\u00e0 alle vecchie maniere...", "shared_text": "", "time": "2014-10-08 20:38:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10687050_10152441474313155_8172335372232559947_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=D52h1cu4D2wAQlV8l4hBmsSjiPCYDGSERkAZHHiYsEqmbQnFdPh1dZn0g&_nc_ht=scontent-cdt1-1.xx&oh=496bd28a9420c7973d1ac3b8f45e5456&oe=5E41C040", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152432265808155", "text": "Lega presente anche alla Festa del borgo di Chiaravalle: centinaia di cittadini che ci dicono il 18 ottobre IO CI SAR\u00d2!", "post_text": "Lega presente anche alla Festa del borgo di Chiaravalle: centinaia di cittadini che ci dicono il 18 ottobre IO CI SAR\u00d2!", "shared_text": "", "time": "2014-10-05 17:04:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10712961_10152432264303155_6260128378413860034_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=SFcaBL5N680AQmR53T2cSTK4ds65OMJEEkrEwpjBtUga6RXlzcwHbCkUQ&_nc_ht=scontent-cdt1-1.xx&oh=33ce1d2236922ba4774745670f6a8a46&oe=5E7C29F6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152431932158155", "text": "Ho scoperto un vino Rosso ligure eccellente, Granaccia: salute!\nE voi che vino preferite?", "post_text": "Ho scoperto un vino Rosso ligure eccellente, Granaccia: salute!\nE voi che vino preferite?", "shared_text": "", "time": "2014-10-05 14:16:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10516731_10152431932028155_2085835220694168245_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=yhfAOiZ6ZZAAQnx1h5xpfVWGbX7rDPdB2fr_TbEkXWyNXEVN8Z5P5pcYQ&_nc_ht=scontent-cdt1-1.xx&oh=f5ee18a0e1abe8240e0f4b8d5ae00afa&oe=5E414046", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152430123163155", "text": "E da San Siro... forza vecchio Cuore Rossonero!", "post_text": "E da San Siro... forza vecchio Cuore Rossonero!", "shared_text": "", "time": "2014-10-04 20:46:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10404500_10152430122183155_5753839974133516318_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=wvk_NP08KTYAQmTvDWOz0hBG3vWYTJzdBK51yRmLdvCR34v4F2xT9_h_w&_nc_ht=scontent-cdt1-1.xx&oh=2d1dd7bfbc2bab086212299c2c8aa482&oe=5E7DF25D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152429613183155", "text": "Stamattina sul \"Corriere\", Piero Ostellino si dichiara dell'opinione che \"il ragazzotto fiorentino sia una sorta di Mussolini minore, tanto parolaio e velleitario quanto impotente\" e, rivolgendosi a RENZI: \"mi\u2026 Altro piacerebbe che lei facesse ci\u00f2 che le suggerisce SALVINI\", spiegando che se non gli piace \"l'austerit\u00e0 imposta dalla Merkel all'Europa o la ritiene sbagliata, DEVE EVITARE DI ADOTTARLA\".\nSemplice, no?\nGrazie. L'editoriale si intitola \"Poche chiacchiere, servono i fatti\" ma temo che, in questo caso, trattandosi di Renzi, si rimarr\u00e0 fermi alle CHIACCHIERE: far finta di \"cantargliele\", per poi invece obbedire, battendo i tacchi, a Berlino e a Bruxelles.\nPer fortuna c'\u00e8 la LEGA che contro un'Europa \"PARODIA DELL'UNIONE SOVIETICA come l'attuale\" (parole di Ostellino) non smetter\u00e0 MAI di lottare (e non per finta).", "post_text": "Stamattina sul \"Corriere\", Piero Ostellino si dichiara dell'opinione che \"il ragazzotto fiorentino sia una sorta di Mussolini minore, tanto parolaio e velleitario quanto impotente\" e, rivolgendosi a RENZI: \"mi\u2026 Altro piacerebbe che lei facesse ci\u00f2 che le suggerisce SALVINI\", spiegando che se non gli piace \"l'austerit\u00e0 imposta dalla Merkel all'Europa o la ritiene sbagliata, DEVE EVITARE DI ADOTTARLA\".\nSemplice, no?\nGrazie. L'editoriale si intitola \"Poche chiacchiere, servono i fatti\" ma temo che, in questo caso, trattandosi di Renzi, si rimarr\u00e0 fermi alle CHIACCHIERE: far finta di \"cantargliele\", per poi invece obbedire, battendo i tacchi, a Berlino e a Bruxelles.\nPer fortuna c'\u00e8 la LEGA che contro un'Europa \"PARODIA DELL'UNIONE SOVIETICA come l'attuale\" (parole di Ostellino) non smetter\u00e0 MAI di lottare (e non per finta).", "shared_text": "", "time": "2014-10-04 16:58:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-8/fr/cp0/e15/q65/10655247_10152429613033155_2106988302149443505_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=n_tMcosvcagAQk_WcqYIdKJumAHaURz93SFFP8IYKACcaMCO6Ck622ahg&_nc_ht=scontent-cdt1-1.xx&oh=e8c004e28763dbf166e25ce08555c8c0&oe=5E7AC3C0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "Matteo Salvini ha aggiunto 15 nuove foto \u2014 presso Milano Niguarda.\n2 ottobre 2014 alle ore 11:13 \u00b7 Milano, Lombardia \u00b7\nAltre opzioni\nIo dei sondaggi non mi fido, molto meglio il \"sondaggio\" che ho fatto stamattina tra la gente al mercato. Risultato: sabato 18 ottobre a Milano saremo un MARE di brave persone per FERMARE MARE NOSTRUM! #stopinvasione", "post_text": "", "shared_text": "Matteo Salvini ha aggiunto 15 nuove foto \u2014 presso Milano Niguarda.\n2 ottobre 2014 alle ore 11:13 \u00b7 Milano, Lombardia \u00b7\nAltre opzioni\nIo dei sondaggi non mi fido, molto meglio il \"sondaggio\" che ho fatto stamattina tra la gente al mercato. Risultato: sabato 18 ottobre a Milano saremo un MARE di brave persone per FERMARE MARE NOSTRUM! #stopinvasione", "time": "2014-10-02 12:13:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10150751_10152424563068155_778022265870346674_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=u1XXQsgOQBUAQk96dFT1twBQ4IkHz4h4N918O63SCEBU2-3vM8N34KT6A&_nc_ht=scontent-cdt1-1.xx&oh=0e348d591328110d62f62d3e2dd0b58c&oe=5E7A6A5E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152424482223155", "text": "Mercato di via Val Maira, Milano. Fra donne col BURQA e venditori abusivi, mi chiedo dove sia il Sindaco!", "post_text": "Mercato di via Val Maira, Milano. Fra donne col BURQA e venditori abusivi, mi chiedo dove sia il Sindaco!", "shared_text": "", "time": "2014-10-02 10:49:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1798165_10152424481443155_2514318085833362667_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Ro-L-UDGuekAQmlJTN_0-XbHTdfC4gSwnMDINnUcRHTENDvTKnmIzGONg&_nc_ht=scontent-cdt1-1.xx&oh=9885c2493f908c8e0c528260bb569b6a&oe=5E4E391B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152423252398155", "text": "STOP INVASIONE! DIFENDIAMO I CONFINI\n***********************\nMilano, 18 ottobre 2014\n***********************\nore 16.30 - Porta Venezia\nINIZIO CORTEO\n***********************\nore 18.00 - Piazza Duomo\nCOMIZIO\u2026 Altro\n***********************\nTu ci sarai? E' ora di AGIRE!\n#STOPINVASIONE\n***********************\nInfo: 0266234234\nWWW.STOPINVASIONE.ORG\n***********************\nhttps://www.facebook.com/events/836390183046100", "post_text": "STOP INVASIONE! DIFENDIAMO I CONFINI\n***********************\nMilano, 18 ottobre 2014\n***********************\nore 16.30 - Porta Venezia\nINIZIO CORTEO\n***********************\nore 18.00 - Piazza Duomo\nCOMIZIO\u2026 Altro\n***********************\nTu ci sarai? E' ora di AGIRE!\n#STOPINVASIONE\n***********************\nInfo: 0266234234\nWWW.STOPINVASIONE.ORG\n***********************\nhttps://www.facebook.com/events/836390183046100", "shared_text": "", "time": "2014-10-01 20:57:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10441071_10152423252253155_3255463261323879924_n.png.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=3dLWLeykP2kAQknicNQClIULHvklvyvEs0pgshjelr7VXTFc0VB_LwBHg&_nc_ht=scontent-cdt1-1.xx&oh=1965b2dfff3412fe2384662f78863ad7&oe=5E3E6499", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.STOPINVASIONE.ORG/?fbclid=IwAR2Tw0lJsz2wUcjKrTLiQzitg7a65OvM9rukv_iPDrmCYk7jwaX0IGCKwE8"} +{"post_id": "10152421082093155", "text": "Elegante, e pronto per la diretta!\nVi piace la maglietta?", "post_text": "Elegante, e pronto per la diretta!\nVi piace la maglietta?", "shared_text": "", "time": "2014-09-30 21:07:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1959474_10152421081283155_4374893760584064858_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=Kg_tRa4jtnQAQnlImFJTjcB8HUxZYi-bGkewTpV2xOBZfkfLYiKlZvuGQ&_nc_ht=scontent-cdt1-1.xx&oh=35afb5084636c85ddeab3531e69b8686&oe=5E45DF35", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152418740858155", "text": "Pare che stasera a \"Striscia la Notizia\", su Canale 5, esordiranno con una nuova imitazione del sottoscritto. Bene, evidentemente la nostra crescita non passa inosservata e, comunque, a differenza della sinistra, sappiamo ridere!", "post_text": "Pare che stasera a \"Striscia la Notizia\", su Canale 5, esordiranno con una nuova imitazione del sottoscritto. Bene, evidentemente la nostra crescita non passa inosservata e, comunque, a differenza della sinistra, sappiamo ridere!", "shared_text": "", "time": "2014-09-29 17:24:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s370x247/10435917_10152418735993155_1960306984468337424_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=Bz-Nmqn0ND0AQlldMo_Nz8win24d43H4ImeWa69TkDu7ea_kKHAFxBZXg&_nc_ht=scontent-cdt1-1.xx&oh=d0dfb028b28b9c622a9e93be21923f51&oe=5E46EEC0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152418531273155", "text": "Sono in commissione a Bruxelles, si parla di Commercio Internazionale.\nQuesti sono matti!!!\nPer \"buonismo\" hanno tolto i DAZI sul riso che arriva dalla Cambogia.\nRisultato, mentre nel 2009 l'Europa importava\u2026 Altro dalla Cambogia solo 6.000 tonnellate di riso, nel 2013 pi\u00f9 di 200.000.\nCon migliaia di agricoltori rovinati e rimasti a casa...\nCome Lega, anche se da soli, combattiamo questo schifo: DIFENDIAMO I NOSTRI PRODOTTI e il nostro futuro!", "post_text": "Sono in commissione a Bruxelles, si parla di Commercio Internazionale.\nQuesti sono matti!!!\nPer \"buonismo\" hanno tolto i DAZI sul riso che arriva dalla Cambogia.\nRisultato, mentre nel 2009 l'Europa importava\u2026 Altro dalla Cambogia solo 6.000 tonnellate di riso, nel 2013 pi\u00f9 di 200.000.\nCon migliaia di agricoltori rovinati e rimasti a casa...\nCome Lega, anche se da soli, combattiamo questo schifo: DIFENDIAMO I NOSTRI PRODOTTI e il nostro futuro!", "shared_text": "", "time": "2014-09-29 15:18:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10609653_10152418528033155_3883130087263395089_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=ibvfQzcpiYoAQkTwZ22NcrtxlDAmkgfJhPFudAkly73Dg4C8ji13v1r-g&_nc_ht=scontent-cdt1-1.xx&oh=d32dbf37a77eae16d6ea26e83d4f0671&oe=5E8895D3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152417351483155", "text": "La splendida squadra dei Giovani Padani, stasera in Valtellina.\nNon solo un movimento politico, ma una Comunit\u00e0.\nSTOP INVASIONE!", "post_text": "La splendida squadra dei Giovani Padani, stasera in Valtellina.\nNon solo un movimento politico, ma una Comunit\u00e0.\nSTOP INVASIONE!", "shared_text": "", "time": "2014-09-28 23:48:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1146468_10152417351008155_1215264409860321646_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=8mnWiCvkg14AQkt5Yy5Z2A73s93ZjEcCysd_Wj9ozZwCjxUf-8KOZLsvw&_nc_ht=scontent-cdt1-1.xx&oh=0d9d0fe22fd9d58cb8a619c60883f37e&oe=5E492FFA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152416724993155", "text": "Un minuto del mio intervento di oggi a Canale 5. Come vi sembra?\nCliccate qui per vederlo e, se vi piace, condividete: https://www.dailymotion.com/video/x26syhn_non-e-razzismo-aiutiamo-prima-i-4-milioni-di-disoccupati-e-9-milioni-di-poveri-italiani_news", "post_text": "Un minuto del mio intervento di oggi a Canale 5. Come vi sembra?\nCliccate qui per vederlo e, se vi piace, condividete: https://www.dailymotion.com/video/x26syhn_non-e-razzismo-aiutiamo-prima-i-4-milioni-di-disoccupati-e-9-milioni-di-poveri-italiani_news", "shared_text": "", "time": "2014-09-28 17:48:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10665295_10152416723803155_4389500725093663244_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=Ubh-Hy7XfvQAQmYAfTmBK9AqFMDxxghkd-UtAV1sBfIG9VrcLUjiitdsw&_nc_ht=scontent-cdt1-1.xx&oh=e647e0fdb418e8ec9d5792e39be47936&oe=5E80439A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "https://www.dailymotion.com/video/x26syhn_non-e-razzismo-aiutiamo-prima-i-4-milioni-di-disoccupati-e-9-milioni-di-poveri-italiani_news?fbclid=IwAR1EqqN-05mglQzNOrtG3UyzfjtM9Dt-MLpyDjI0qq-OVLjM6xkj8A_YKd4"} +{"post_id": "10152415354563155", "text": "Assaggiatori di grappa.\nQuesta \u00e8 davvero un'associazione interessante!", "post_text": "Assaggiatori di grappa.\nQuesta \u00e8 davvero un'associazione interessante!", "shared_text": "", "time": "2014-09-28 00:02:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10670205_10152415353453155_815020294841194735_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=ZT94BO_yxQcAQn_8puIdqaiDLMTuh1Pl6NtRL9G-MGcg3XMVmctSqTaHA&_nc_ht=scontent-cdt1-1.xx&oh=59937bb6af9e47039a0d3d9b547e76c7&oe=5E848C2F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152414973653155", "text": "San Daniele, grissini e bianco del Friuli.\nDifendere la nostra Agricoltura, che Bruxelles sta massacrando, \u00e8 un dovere!", "post_text": "San Daniele, grissini e bianco del Friuli.\nDifendere la nostra Agricoltura, che Bruxelles sta massacrando, \u00e8 un dovere!", "shared_text": "", "time": "2014-09-27 19:59:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10371933_10152414972183155_8971726594993051806_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=GfqAYYYQF9EAQk9NFFu08EZx0YaWp3VPZu0o-B8JpBT2JXT1pvL9ycyLA&_nc_ht=scontent-cdt1-1.xx&oh=b043c2911474489d971177f883171878&oe=5E84A315", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152414864423155", "text": "Gusti di Frontiere (cercatela su internet!) splendida manifestazione di culture, di cibi, di vini e di tradizioni a Gorizia!\nE un mare di foto e di Selfie...", "post_text": "Gusti di Frontiere (cercatela su internet!) splendida manifestazione di culture, di cibi, di vini e di tradizioni a Gorizia!\nE un mare di foto e di Selfie...", "shared_text": "", "time": "2014-09-27 18:52:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10698669_10152414864253155_5101776371275616055_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=36V93OxTc9IAQnjaVO79XjL35M_ELuYZuKzH7NZqIf8NvBv_8PDVI_LbQ&_nc_ht=scontent-cdt1-1.xx&oh=0c39ba615708300d9da1d5927824813e&oe=5E876F3F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152412690798155", "text": "Periferia sud di Milano.\nUn intero palazzo comunale \u00e8 occupato da 200 immigrati.\nNon hanno i soldi per pagare affitto, luce, gas e spese condominiali (che devono pagare gli inquilini regolari...) ma hanno i soldi per bersi centinaia di birre ogni sera!\nHo chiesto lo sgombero immediato: basta!!!", "post_text": "Periferia sud di Milano.\nUn intero palazzo comunale \u00e8 occupato da 200 immigrati.\nNon hanno i soldi per pagare affitto, luce, gas e spese condominiali (che devono pagare gli inquilini regolari...) ma hanno i soldi per bersi centinaia di birre ogni sera!\nHo chiesto lo sgombero immediato: basta!!!", "shared_text": "", "time": "2014-09-26 16:11:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10344790_10152412687803155_3717424716059186433_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=NA44jNm1zjwAQnuQrfdSR4Iv1kAAc9aRty-75LiaPqAqChw2HTIvFFtgA&_nc_ht=scontent-cdt1-1.xx&oh=73d0e0b1f5f4ea6969e211463415afaa&oe=5E7F7710", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152410335338155", "text": "Un \"barbone\" milanese che la notte scorsa dormiva in strada, su una panchina.\nPer lui e per molti altri una casa non c'\u00e8, mentre migliaia di immigrati appena sbarcati dormono comodamente in albergo.\nNon \u00e8 giusto, prima i Nostri.", "post_text": "Un \"barbone\" milanese che la notte scorsa dormiva in strada, su una panchina.\nPer lui e per molti altri una casa non c'\u00e8, mentre migliaia di immigrati appena sbarcati dormono comodamente in albergo.\nNon \u00e8 giusto, prima i Nostri.", "shared_text": "", "time": "2014-09-25 10:52:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1545099_10152410332953155_4858824014002140141_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=8peHabFyZF0AQmzfJOk9lmCRfYO1APvkbQ4gTLysbml1qThH56SzD6WWw&_nc_ht=scontent-cdt1-1.xx&oh=c3e08435e8f73b5c22625c02ffa4e30a&oe=5E7D6A9E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152405161688155", "text": "MILANO, SABATO 18 OTTOBRE - #STOPINVASIONE\nTu ci sarai???", "post_text": "MILANO, SABATO 18 OTTOBRE - #STOPINVASIONE\nTu ci sarai???", "shared_text": "", "time": "2014-09-22 20:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10665906_10152405161213155_7414864149998966831_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=6NO_bUW0ne4AQnJNtPSy4aiLH7emlaBdOqg5FPfJtX-oPk53udi06F3SQ&_nc_ht=scontent-cdt1-1.xx&oh=67cc654c7c4d5f75d56a34ff20847645&oe=5E475A51", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152402807703155", "text": "GRAZIE alle migliaia di persone, parecchie anche \"non ancora Leghisti\", che oggi sono venute in Veneto (pagando di tasca loro!) per darci forza nella battaglia contro Bruxelles e lo STATO LADRO, contro l'\u2026 Altroinvasione clandestina e la legge FORNERO, per dare speranza ai nostri lavoratori, ai disoccupati e alle famiglie.\nP.s. Per molti Siti di \"informazione\" online queste migliaia di persone non esistono.\nGiornalisti infami, amici di Renzi e del suo bravo pap\u00e0: meno parlate di noi, e dei problemi veri della gente, pi\u00f9 noi abbiamo voglia di combattere!", "post_text": "GRAZIE alle migliaia di persone, parecchie anche \"non ancora Leghisti\", che oggi sono venute in Veneto (pagando di tasca loro!) per darci forza nella battaglia contro Bruxelles e lo STATO LADRO, contro l'\u2026 Altroinvasione clandestina e la legge FORNERO, per dare speranza ai nostri lavoratori, ai disoccupati e alle famiglie.\nP.s. Per molti Siti di \"informazione\" online queste migliaia di persone non esistono.\nGiornalisti infami, amici di Renzi e del suo bravo pap\u00e0: meno parlate di noi, e dei problemi veri della gente, pi\u00f9 noi abbiamo voglia di combattere!", "shared_text": "", "time": "2014-09-21 17:13:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10629832_10152402807468155_5394034179889154143_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=8HcDobc-mSUAQnCrCFTVyZLnsUdv7-FV94RPbW-KWvssmtF4zXuIzXmwA&_nc_ht=scontent-cdt1-1.xx&oh=d87fcb7e1f764fa6b3d0c9ddadb2f1ba&oe=5E4A1F4A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152402677273155", "text": "CITTADELLA, che spettacolo, che emozione!\nUNITI SI VINCE! Viva le persone per bene e di buona volont\u00e0, al Nord come al Sud, dal Veneto alla Lombardia, dalla Sicilia al Salento, contro la DITTATURA EUROPEA che\u2026 Altro odia le autonomie locali, e contro un Governo nazionale che esegue i suoi ordini, vende fumo e si dimentica degli italiani, che non ce la fanno pi\u00f9. Ma se non mollate voi, allora NON MOLLO nemmeno io.\nStanco ma FELICE. Grazie, Fratelli!", "post_text": "CITTADELLA, che spettacolo, che emozione!\nUNITI SI VINCE! Viva le persone per bene e di buona volont\u00e0, al Nord come al Sud, dal Veneto alla Lombardia, dalla Sicilia al Salento, contro la DITTATURA EUROPEA che\u2026 Altro odia le autonomie locali, e contro un Governo nazionale che esegue i suoi ordini, vende fumo e si dimentica degli italiani, che non ce la fanno pi\u00f9. Ma se non mollate voi, allora NON MOLLO nemmeno io.\nStanco ma FELICE. Grazie, Fratelli!", "shared_text": "", "time": "2014-09-21 16:06:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10675625_10152402677148155_3262038096165898343_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=wFISCTcH798AQktjF7S3kzlQtpLdLFMgJoux-iu2sCVXj9NgTejShRO0w&_nc_ht=scontent-cdt1-1.xx&oh=e34f631bf601183d04b166bfebcb01be&oe=5E3E5266", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152400946353155", "text": "Roma, dibattito sul futuro del \"centrodestra\", che oggi non esiste.\nSono curioso di ascoltare cosa dir\u00e0 Quagliariello, NCD...", "post_text": "Roma, dibattito sul futuro del \"centrodestra\", che oggi non esiste.\nSono curioso di ascoltare cosa dir\u00e0 Quagliariello, NCD...", "shared_text": "", "time": "2014-09-20 18:37:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10702118_10152400944978155_182364645289327192_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=o6OHKlOxT_gAQmWzODxFJg3Ie7Gv4ftvx0ID05H8ynkXxh9ouaVim0FXg&_nc_ht=scontent-cdt1-1.xx&oh=88e4e134e0df8bb3dcc3699a0b37679c&oe=5E801AD3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152400398433155", "text": "Bellissima la festa per l'Ospedale dei Bambini Buzzi di Milano!\nE ci sono anche gli Harleysti.", "post_text": "Bellissima la festa per l'Ospedale dei Bambini Buzzi di Milano!\nE ci sono anche gli Harleysti.", "shared_text": "", "time": "2014-09-20 12:15:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/480764_10152400397873155_4183078605597555922_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=ZtqovoSGUjcAQnP3uoY46HSW-uSmLkK66RZ2mWfN4Q-H-tjUH9ixLadFA&_nc_ht=scontent-cdt1-1.xx&oh=1828dab627403d483207877ba1e679f5&oe=5E4233C6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152398678208155", "text": "Adoro le tradizioni, le culture, le identit\u00e0, le diversit\u00e0.\nQual \u00e8 la cosa pi\u00f9 bella della vostra terra?", "post_text": "Adoro le tradizioni, le culture, le identit\u00e0, le diversit\u00e0.\nQual \u00e8 la cosa pi\u00f9 bella della vostra terra?", "shared_text": "", "time": "2014-09-19 14:36:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/995088_10152398675643155_583779324032504956_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=zpkHShuNJdsAQm1DgdOh2OwsQ-oSR6xBECyOUyIiE--DI631PsWdNYVaw&_nc_ht=scontent-cdt1-1.xx&oh=b9497ee72c03891345e322c43ad137dd&oe=5E493A27", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152394937123155", "text": "Strasburgo, discussione sull'allarme Ebola: l'aula \u00e8 deserta, l'Europa se ne frega...\nL'Italia dovrebbe chiudere subito le frontiere agli immigrati provenienti dalle zone a rischio contagio, e a tutti i clandestini!", "post_text": "Strasburgo, discussione sull'allarme Ebola: l'aula \u00e8 deserta, l'Europa se ne frega...\nL'Italia dovrebbe chiudere subito le frontiere agli immigrati provenienti dalle zone a rischio contagio, e a tutti i clandestini!", "shared_text": "", "time": "2014-09-17 15:19:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1623557_10152394935233155_2212776911091538698_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=ohmheGf9aNkAQnQTDt2JS3Ibor4MugtN-143yXOvOoMxtZZQ1cJbeOC9g&_nc_ht=scontent-cdt1-1.xx&oh=56ab04113d5a22ac5d23b4c5d2df0785&oe=5E876C71", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152394764553155", "text": "Liberi di scegliere!\nDomenica, dalle 12.30, vi aspetto a Cittadella!", "post_text": "Liberi di scegliere!\nDomenica, dalle 12.30, vi aspetto a Cittadella!", "shared_text": "", "time": "2014-09-17 13:41:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p168x128/10603468_10152390365098155_7177286730740078762_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=252XWVWx15YAQmaWKqoSZ6POPBCFMetBmU69IbM7qohN-ZleGsPdVbo_w&_nc_ht=scontent-cdt1-1.xx&oh=ba5863e543b0dcb651d1cb70b2b743c8&oe=5E7CF883", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152392718833155", "text": "Siamo partiti in pochi, oggi siamo 300.000! Con idee, passione e coraggio cambieremo il Futuro. Grazie!", "post_text": "Siamo partiti in pochi, oggi siamo 300.000! Con idee, passione e coraggio cambieremo il Futuro. Grazie!", "shared_text": "", "time": "2014-09-16 03:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10614342_10152392718318155_5175152720114317374_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=R6MAXp3XIQwAQls9b_N542Xj7lmI5JTpJwUeIZ2Q1XXY7smYWQq9Kbf1w&_nc_ht=scontent-cdt1-1.xx&oh=e71d55ce510f57c8fd375415ee9976cd&oe=5E45704F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152389220138155", "text": "Tanta gente con la Lega in Brianza!\nVia la legge Fornero, via gli studi di settore, via Mare Nostrum.", "post_text": "Tanta gente con la Lega in Brianza!\nVia la legge Fornero, via gli studi di settore, via Mare Nostrum.", "shared_text": "", "time": "2014-09-14 21:45:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10404079_10152389218968155_4186708300213089845_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=7h9R3E7fhL8AQlZe7cOKnrBFGo_qMAUkd89j77PHu40cN3bau8EYLcORA&_nc_ht=scontent-cdt1-1.xx&oh=74d47abea28a60582232806cb695b9a8&oe=5E3F9BDD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152388433543155", "text": "Quel fenomeno di Renzi abbaia ma non morde, al guinzaglio di Berlino e Bruxelles, e dice che rispetter\u00e0 tutti i vincoli di questa Europa (una gabbia di matti!)... Un politico normale dei vincoli che MASSACRANO\u2026 Altro il suo Paese se ne fregherebbe! Non so dove trover\u00e0 i soldi, ma se metter\u00e0 una sola mezza tassa in pi\u00f9 andremo a Roma coi bastoni!\nIntanto cominciamo a Milano sabato 18 ottobre con #stopimmigrazione e il 14 novembre, in tutta Italia, con #nonpago per danneggiare il pi\u00f9 possibile lo Stato ladro. Voi ci siete?", "post_text": "Quel fenomeno di Renzi abbaia ma non morde, al guinzaglio di Berlino e Bruxelles, e dice che rispetter\u00e0 tutti i vincoli di questa Europa (una gabbia di matti!)... Un politico normale dei vincoli che MASSACRANO\u2026 Altro il suo Paese se ne fregherebbe! Non so dove trover\u00e0 i soldi, ma se metter\u00e0 una sola mezza tassa in pi\u00f9 andremo a Roma coi bastoni!\nIntanto cominciamo a Milano sabato 18 ottobre con #stopimmigrazione e il 14 novembre, in tutta Italia, con #nonpago per danneggiare il pi\u00f9 possibile lo Stato ladro. Voi ci siete?", "shared_text": "", "time": "2014-09-14 04:31:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/10679731_10152388431053155_4221763492011833674_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=aOGgTIQ-gqEAQlFu1sLhIzbxUnVHesnCtegijtLcirG92k57HWUxjVj_A&_nc_ht=scontent-cdt1-1.xx&oh=0534a86458b7ade99afecf0be12dc943&oe=5E79090F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152386722258155", "text": "Le nostre montagne, la nostra acqua: beni preziosi, da proteggere e da difendere!\nVi saluto dallo splendido Monviso.", "post_text": "Le nostre montagne, la nostra acqua: beni preziosi, da proteggere e da difendere!\nVi saluto dallo splendido Monviso.", "shared_text": "", "time": "2014-09-13 16:33:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10636325_10152386720478155_3598620685231697484_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=KFp0JZubpKcAQl0rIjQpQvac_P6Ogvzc1GSeVy0AQwXdw5s6uoAFRwCEQ&_nc_ht=scontent-cdt1-1.xx&oh=190bb32ac09ed6b4db34c09336a00d6a&oe=5E8196BD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152376752723155", "text": "++AIUTARE GLI IMMIGRATI O LE FAMIGLIE?++ \u00abASILI NIDO pubblici e GRATUITI, come in Francia. Quanto costerebbe? 1,2 miliardi di euro all'anno. Quanto costa Mare Nostrum? 1,2 miliardi di euro all'anno. Questione di scelte: aiutare gli immigrati, o aiutare le famiglie. Voi che dite?!? Renzi che dir\u00e0?\u00bb", "post_text": "++AIUTARE GLI IMMIGRATI O LE FAMIGLIE?++ \u00abASILI NIDO pubblici e GRATUITI, come in Francia. Quanto costerebbe? 1,2 miliardi di euro all'anno. Quanto costa Mare Nostrum? 1,2 miliardi di euro all'anno. Questione di scelte: aiutare gli immigrati, o aiutare le famiglie. Voi che dite?!? Renzi che dir\u00e0?\u00bb", "shared_text": "", "time": "2014-09-08 08:28:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10670171_10152376752408155_3654969927090150418_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=MbZPmitwJ0QAQlXZSgh09w4fafuMWFeJjLZ5j3ND2mqd2GsWZ8qJBQjIg&_nc_ht=scontent-cdt1-1.xx&oh=6206bea2fd63031336ac6ac4457b1362&oe=5E50A3AB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152375145068155", "text": "Piazza strapiena con la Lega a Torino!\nCitt\u00e0 ancora \"rossa\", ma con tanta voglia di ripartire, di lavorare, di sognare.", "post_text": "Piazza strapiena con la Lega a Torino!\nCitt\u00e0 ancora \"rossa\", ma con tanta voglia di ripartire, di lavorare, di sognare.", "shared_text": "", "time": "2014-09-07 22:01:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10659152_10152375143108155_2396866515542228739_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=lzbBSpJoHScAQlkuoNHW1AER_h6lpjee3AaKDWmL_6ZFXeVHMUCfOKdUg&_nc_ht=scontent-cdt1-1.xx&oh=b5cf2743b169e84fd631502a129731fc&oe=5E79BCA4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152373319168155", "text": "Eccoli i tortelli di zucca!\nEsiste un piatto pi\u00f9 buono???", "post_text": "Eccoli i tortelli di zucca!\nEsiste un piatto pi\u00f9 buono???", "shared_text": "", "time": "2014-09-07 00:09:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10641166_10152373318728155_6294958058627717689_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=aFEqqYm08t8AQnWvRGGaNmLfRNqrcumdtluCercQ9Fh9ZuF7GLOY0iqpg&_nc_ht=scontent-cdt1-1.xx&oh=13c78348aee3d53a8c14131310a133d0&oe=5E415178", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152373307773155", "text": "Tantissima gente alla festa mantovana di Ponti sul Mincio!\nE tortelli di zucca da favola...", "post_text": "Tantissima gente alla festa mantovana di Ponti sul Mincio!\nE tortelli di zucca da favola...", "shared_text": "", "time": "2014-09-07 00:01:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10685367_10152373307673155_7542007571124223540_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=e1ldUzJPfwEAQnbIcv2NCsAPPMVFnUUmC1ehvmJjUI13appE-qOpGUKHA&_nc_ht=scontent-cdt1-1.xx&oh=7be8e318205a2658ca55ed7bf116086b&oe=5E8752B6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152371523493155", "text": "Grandi i Militanti della Lega di Pontirolo Nuovo, nella bergamasca.\nPassione, coraggio, partecipazione: siamo sulla strada giusta per cambiare le cose!", "post_text": "Grandi i Militanti della Lega di Pontirolo Nuovo, nella bergamasca.\nPassione, coraggio, partecipazione: siamo sulla strada giusta per cambiare le cose!", "shared_text": "", "time": "2014-09-06 00:12:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10629704_10152371522463155_5866826268897974946_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=CRjLdVqPQhgAQnz2YkmKX09eWpzcF_np5LkKuBuGgYafeJZX1mX64PhwQ&_nc_ht=scontent-cdt1-1.xx&oh=6c0aa075d63bdc06e5aa5af4b324a4cd&oe=5E86A384", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152371317003155", "text": "Bella serata con gli amici della Lega a Romanengo.\nMoschea a Crema? No, grazie!", "post_text": "Bella serata con gli amici della Lega a Romanengo.\nMoschea a Crema? No, grazie!", "shared_text": "", "time": "2014-09-05 21:52:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10414473_10152371316323155_3725002031588392280_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=kVkKH4EcFDAAQk9z7IxwsrVrEtTIgXmobHJUp-ql_wROkUEWMu28B-RqQ&_nc_ht=scontent-cdt1-1.xx&oh=cd9041e105cb6cf4593c35d42531cdb8&oe=5E42CCA9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152368580323155", "text": "Io non credo ai sondaggi, per\u00f2 meglio cos\u00ec...\n(http://www.liberoquotidiano.it/news/italia/11679999/Sondaggio-Ixe--il-Pd-primo.html)", "post_text": "Io non credo ai sondaggi, per\u00f2 meglio cos\u00ec...\n(http://www.liberoquotidiano.it/news/italia/11679999/Sondaggio-Ixe--il-Pd-primo.html)", "shared_text": "", "time": "2014-09-04 18:17:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10506742_10152368579923155_1492817538803873113_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=y90WmmVQ3bYAQluDWyWXFLlivbSaChrdmz8e9Rxzsa2RjCPxSUt-XPqbQ&_nc_ht=scontent-cdt1-1.xx&oh=02c2d4c82dcebae3fb0d8955b8463a46&oe=5E4E3112", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.liberoquotidiano.it/news/italia/11679999/Sondaggio-Ixe--il-Pd-primo.html?fbclid=IwAR2T2XNEPxYtPCl4cg45J72uqkx9h8mqq4P9t7PLaNrmQ_BS0ZA-GXF2QIs"} +{"post_id": "10152366897433155", "text": "La benedizione dei Facchini.\nQuanto sono belle le Tradizioni dei Popoli.", "post_text": "La benedizione dei Facchini.\nQuanto sono belle le Tradizioni dei Popoli.", "shared_text": "", "time": "2014-09-03 21:00:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10660254_10152366896648155_7350866856951374409_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=s3w2mJx-AuoAQmBRq1Ll9qbtdVpl3VqahKyyO6puTY8sbj0-cSWKBqgpA&_nc_ht=scontent-cdt1-1.xx&oh=cfaeb96328353e2135d99dfbcf7a8b3e&oe=5E4A113A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152366849608155", "text": "110 portatori per i 50 quintali di storia della Macchina di Santa Rosa: che spettacolo!", "post_text": "110 portatori per i 50 quintali di storia della Macchina di Santa Rosa: che spettacolo!", "shared_text": "", "time": "2014-09-03 20:29:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10620518_10152366848878155_3899164599413569998_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=GV8tVHsiDAMAQmmXlS0694s_CiTEzm-SxWGyZyj1hVCMWswR52yqXjUSw&_nc_ht=scontent-cdt1-1.xx&oh=45c5f8ccddf2de46b966a617f4cb7cc3&oe=5E5028B8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152366682333155", "text": "Sono a Viterbo per la Festa di Santa Rosa, patrono della citt\u00e0.\nViva le tradizioni, le culture e l diversit\u00e0, contro ogni tentativo di omologare, cancellare, dimenticare.", "post_text": "Sono a Viterbo per la Festa di Santa Rosa, patrono della citt\u00e0.\nViva le tradizioni, le culture e l diversit\u00e0, contro ogni tentativo di omologare, cancellare, dimenticare.", "shared_text": "", "time": "2014-09-03 18:41:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10606056_10152366680893155_6619187967538543830_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=QIZAMP9z5CwAQkAfpTVV51b1eHiWyEB3_-5lDX23R9scjSHDEkk2Z3jDw&_nc_ht=scontent-cdt1-1.xx&oh=7336452655c332f1267830430c135aa8&oe=5E508B0C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152361483048155", "text": "Ci facciamo INVADERE dagli IMMIGRATI, e ci dimentichiamo in India due nostri soldati: BUFFONI!!!\nUn augurio di pronto ristabilimento a Massimiliano Latorre e un abbraccio alla famiglia. Sabato 18 ottobre saremo TUTTI in piazza a Milano anche per gridare:\nCLANDESTINI TUTTI A CASA, RIPRENDIAMOCI I MAR\u00d2!", "post_text": "Ci facciamo INVADERE dagli IMMIGRATI, e ci dimentichiamo in India due nostri soldati: BUFFONI!!!\nUn augurio di pronto ristabilimento a Massimiliano Latorre e un abbraccio alla famiglia. Sabato 18 ottobre saremo TUTTI in piazza a Milano anche per gridare:\nCLANDESTINI TUTTI A CASA, RIPRENDIAMOCI I MAR\u00d2!", "shared_text": "", "time": "2014-09-01 17:32:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p200x200/10393910_10152361482898155_276469047972178451_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=_mYipg5-QSEAQmvDE9yF-_UzWZcpm4nsGS1pbJwMIcoBS5uykSU7B57_Q&_nc_ht=scontent-cdt1-1.xx&oh=0c075fe213fd984c46b167cd0e2129b3&oe=5E41F9A3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152356666168155", "text": "Barbara Gambaro di Noale, 9 ettari di serre di insalata e rucola. La RUSSIA era il suo mercato. \u00abSolo nelle prime due settimane ho gi\u00e0 perso 60.000 euro. Dovr\u00f2 lasciare a casa 20 persone\u00bb.\nLa politica IDIOTA di\u2026 Altro Bruxelles uccide l\u2019agricoltura italiana. E intanto i paesi fuori dal blocco come Egitto, Tunisia, Marocco e Serbia conquistano i nostri mercati.\nVIA LE SANZIONI contro la Russia, SUBITO!\nhttp://corrieredelveneto.corriere.it/veneto/notizie/cronaca/2014/22-agosto-2014/devo-lasciare-20-persone-casa-blocco-russo-fa-prime-vittime-2301787178.shtml", "post_text": "Barbara Gambaro di Noale, 9 ettari di serre di insalata e rucola. La RUSSIA era il suo mercato. \u00abSolo nelle prime due settimane ho gi\u00e0 perso 60.000 euro. Dovr\u00f2 lasciare a casa 20 persone\u00bb.\nLa politica IDIOTA di\u2026 Altro Bruxelles uccide l\u2019agricoltura italiana. E intanto i paesi fuori dal blocco come Egitto, Tunisia, Marocco e Serbia conquistano i nostri mercati.\nVIA LE SANZIONI contro la Russia, SUBITO!\nhttp://corrieredelveneto.corriere.it/veneto/notizie/cronaca/2014/22-agosto-2014/devo-lasciare-20-persone-casa-blocco-russo-fa-prime-vittime-2301787178.shtml", "shared_text": "", "time": "2014-08-30 12:44:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10635778_10152356665878155_4737686527201251181_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=uh-vZ-SUP3oAQnJbZ_Tod2WzH0D1Yz13ToaD6XNeWo75n0aI6n-6A95wg&_nc_ht=scontent-cdt1-1.xx&oh=9720837f523d7082fe4fc6095a270cb6&oe=5E8715CB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://corrieredelveneto.corriere.it/veneto/notizie/cronaca/2014/22-agosto-2014/devo-lasciare-20-persone-casa-blocco-russo-fa-prime-vittime-2301787178.shtml?fbclid=IwAR1V7lh77fg0I1MrlGmHkTj4hrSUaNSQxWuD0JU9nQIfVlNLxRKIyy3KTHk"} +{"post_id": "10152343409313155", "text": "Berghem Fest, foto di gruppo coi Giovani della Lega che, dopo dieci giorni di presidio, hanno costretto il prefetto di Bergamo ad allontanare decine di immigrati dal Parco dei Colli Bergamaschi.", "post_text": "Berghem Fest, foto di gruppo coi Giovani della Lega che, dopo dieci giorni di presidio, hanno costretto il prefetto di Bergamo ad allontanare decine di immigrati dal Parco dei Colli Bergamaschi.", "shared_text": "", "time": "2014-08-24 20:14:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10593143_10152343403163155_8829513357174815607_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Fu9s8MAW5xQAQnPIfVOliMBZoeQsOjdeR6ebprQ9K5zXkJOVWEnEkQyQw&_nc_ht=scontent-cdt1-1.xx&oh=0d121918e40540c43a731ff3d9435add&oe=5E84704C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152341302808155", "text": "Spuma nera e Indipendenza, che accoppiata!", "post_text": "Spuma nera e Indipendenza, che accoppiata!", "shared_text": "", "time": "2014-08-24 00:16:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1621913_10152341302583155_6629404929926611517_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=NJHYKtEMEVEAQmzttSYjfBua08QZAJrHlVh2atl6l11QlBd_L0r4KeRZg&_nc_ht=scontent-cdt1-1.xx&oh=bb0b1a5731c3c44416fc4aa6ff3137fd&oe=5E4518F8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152341082733155", "text": "Coi militanti di Ghisalba: prima i Bergamaschi, solo dopo gli immigrati!", "post_text": "Coi militanti di Ghisalba: prima i Bergamaschi, solo dopo gli immigrati!", "shared_text": "", "time": "2014-08-23 21:53:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1610795_10152341081603155_613187862951632973_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Sy4_Bp4--qAAQlj9O_Ic4lnKZrA8aY72sgjg9ZkYly2ps5CTuXWBd5_kw&_nc_ht=scontent-cdt1-1.xx&oh=e59347ea7c9472cf507e70701ccbe35f&oe=5E40A5A5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152341015908155", "text": "Prima tappa bergamasca di stasera: tanta gente e tanta voglia di cambiare le cose a Verdello e... ottimi spiedini e costine!", "post_text": "Prima tappa bergamasca di stasera: tanta gente e tanta voglia di cambiare le cose a Verdello e... ottimi spiedini e costine!", "shared_text": "", "time": "2014-08-23 21:14:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10626572_10152341014708155_6748994300584015545_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=fVehr5bM07YAQnN1qIWdF3ZvLID3ST8zYUbe1_6KZuTBfMJ94oKTnuMAg&_nc_ht=scontent-cdt1-1.xx&oh=dc867ca63e544de69a92d494d8fdd25b&oe=5E4D2BC0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152340848273155", "text": "Una stretta di mano con Antonio Monella, imprenditore edile bergamasco, condannato a 6 anni di carcere per aver ucciso un rapinatore albanese, alla cui famiglia ha anche versato 200.000 euro di risarcimento.\nChi pi\u00f9 di Antonio merita la GRAZIA?\nSono altri che dovrebbero andare in galera!", "post_text": "Una stretta di mano con Antonio Monella, imprenditore edile bergamasco, condannato a 6 anni di carcere per aver ucciso un rapinatore albanese, alla cui famiglia ha anche versato 200.000 euro di risarcimento.\nChi pi\u00f9 di Antonio merita la GRAZIA?\nSono altri che dovrebbero andare in galera!", "shared_text": "", "time": "2014-08-23 19:34:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10599291_10152340846273155_8625977528646433708_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=cVyvKeofY3sAQn8yM2iP3jM8Y7fcddzxKeCISK6UKaJLuKF2S925d6vGw&_nc_ht=scontent-cdt1-1.xx&oh=bd5f6467d81ea02571424da6340768aa&oe=5E4AD9B0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152340396503155", "text": "Bottiglia di buon bianco siciliano alla vostra salute!", "post_text": "Bottiglia di buon bianco siciliano alla vostra salute!", "shared_text": "", "time": "2014-08-23 14:48:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10405477_10152340395598155_1081045603884006541_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=zUs9lw023lUAQlkPCVf61-x50VF2HdF1C_tpnUnqnGq6kPdmnKA01c1vw&_nc_ht=scontent-cdt1-1.xx&oh=711bbcee26f2817121409d30c0b99301&oe=5E479259", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152338346853155", "text": "Bellissimo!\nPiazza strapiena a Capriata, in provincia di Alessandria, per la serata leghista.\nSono felice: le persone hanno voglia di esserci, di ribellarsi, di fare.\nP.s. Qui clandestini non ce ne sono...", "post_text": "Bellissimo!\nPiazza strapiena a Capriata, in provincia di Alessandria, per la serata leghista.\nSono felice: le persone hanno voglia di esserci, di ribellarsi, di fare.\nP.s. Qui clandestini non ce ne sono...", "shared_text": "", "time": "2014-08-22 22:20:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10426663_10152338343773155_9196926307687778868_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=8W0EdNSpbuQAQnYnwuItgG-is_whCqWn8QJEnKrIsNk0Gw_IYU9dzeZEg&_nc_ht=scontent-cdt1-1.xx&oh=2c8aff3d68bd8e9fae6d098bbccf5783&oe=5E3E4404", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152333126033155", "text": "Parco giochi di Recco.\n\"Miracolosamente\", dopo il mio Tweet e due articoli sul giornale, il Comune si \u00e8 ricordato come si potano le piante, e da domani i bambini potranno tornare a giocare.\nMissione compiuta.", "post_text": "Parco giochi di Recco.\n\"Miracolosamente\", dopo il mio Tweet e due articoli sul giornale, il Comune si \u00e8 ricordato come si potano le piante, e da domani i bambini potranno tornare a giocare.\nMissione compiuta.", "shared_text": "", "time": "2014-08-20 10:21:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10336665_10152333124168155_6926298119043420442_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=AKb9jCDpHAEAQmvS0CIQYAXk9srXzY9wcwdj7TSYIh5hOK-kzBZdphcrw&_nc_ht=scontent-cdt1-1.xx&oh=0650b4718a70798d529da8dfd56036e6&oe=5E440971", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152329678648155", "text": "Amarcord, il Salvini quarant'anni fa.", "post_text": "Amarcord, il Salvini quarant'anni fa.", "shared_text": "", "time": "2014-08-18 17:56:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10628579_10152329678038155_5296987426292791295_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=GDlYv88hcBoAQnEwERdcAx_gt6bEljbcax2P8EcZ1LZB3gUKeFaA04Kyw&_nc_ht=scontent-cdt1-1.xx&oh=49d84d66c9de33960e176f50b0ad4377&oe=5E4AFA3A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152329096018155", "text": "L'unico parco giochi per bambini sul lungomare di Recco, sporco e chiuso da settimane in piena estate, perch\u00e9 il Comune non riesce a potare quattro alberi.\nNo comment.", "post_text": "L'unico parco giochi per bambini sul lungomare di Recco, sporco e chiuso da settimane in piena estate, perch\u00e9 il Comune non riesce a potare quattro alberi.\nNo comment.", "shared_text": "", "time": "2014-08-18 11:47:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/995085_10152329094833155_5560545032126359419_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=ikK9EfJzNKEAQkkPnIfePRLBbmxUJUH9Bj7PsalLJ2dxMR1-dXAJSLB_w&_nc_ht=scontent-cdt1-1.xx&oh=b5687a31f19b84ea5f84ba108c1528a4&oe=5E45FDE4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152327672863155", "text": "#14novembre: quel giorno tu, Stato, da noi non vedi niente! Lavoro per me e per la mia famiglia, l'IVA non te la do, muori di fame!\nDi idee ne trovate molte in questo articolo, voi ne avete qualcuna da aggiungere? Se ciascuno di noi far\u00e0 la sua parte, a questo Stato che affama gli italiani faremo MOLTO MALE.", "post_text": "#14novembre: quel giorno tu, Stato, da noi non vedi niente! Lavoro per me e per la mia famiglia, l'IVA non te la do, muori di fame!\nDi idee ne trovate molte in questo articolo, voi ne avete qualcuna da aggiungere? Se ciascuno di noi far\u00e0 la sua parte, a questo Stato che affama gli italiani faremo MOLTO MALE.", "shared_text": "", "time": "2014-08-17 19:06:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10562736_10152327672483155_3569596016919473936_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=yNsViXUW1aoAQm5_xeLrJP9bX5N6U7Uy5Kuknr0GbFfm5sQDDzGiYs9JA&_nc_ht=scontent-cdt1-1.xx&oh=2077150e2d2869877ac8f908dc75f9db&oe=5E495D69", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152327467403155", "text": "Tassazione unica al 20%, abolizione studi di settore, asili nido pubblici gratuiti, STOP 'Mare Monstrum'!\nAltro che riforma della legge elettorale e della Costituzione: la gente mi ferma e mi parla del mutuo da\u2026 Altro pagare, del lavoro che manca, dell'invasione dei clandestini... da Renzi SOLO FUMO.\nAlfano e Passera? E quelli sarebbero di 'centrodestra'?\nLEGA unica alternativa al Governo degli immigrati e delle balle, da Nord a Sud.", "post_text": "Tassazione unica al 20%, abolizione studi di settore, asili nido pubblici gratuiti, STOP 'Mare Monstrum'!\nAltro che riforma della legge elettorale e della Costituzione: la gente mi ferma e mi parla del mutuo da\u2026 Altro pagare, del lavoro che manca, dell'invasione dei clandestini... da Renzi SOLO FUMO.\nAlfano e Passera? E quelli sarebbero di 'centrodestra'?\nLEGA unica alternativa al Governo degli immigrati e delle balle, da Nord a Sud.", "shared_text": "", "time": "2014-08-17 17:00:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10549974_10152327467293155_6696578375799685437_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=_ih-ZPQJFzAAQnwfI-ZRNH3VPA5vuPqX1_RDcZ5vcTGzHB5jQSzifNBOQ&_nc_ht=scontent-cdt1-1.xx&oh=c21c35882063b25995a7ff03d92d27c1&oe=5E7E6C5E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152326358508155", "text": "Prato di Pontida, l'albero della Vita e di chi non c'\u00e8 pi\u00f9.\nUna preghiera e un sorriso.", "post_text": "Prato di Pontida, l'albero della Vita e di chi non c'\u00e8 pi\u00f9.\nUna preghiera e un sorriso.", "shared_text": "", "time": "2014-08-17 00:16:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10599530_10152326343778155_3235857218590784536_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=ncJBAiW6YN0AQl1lTcYFZNSYfzuSDLGxpcXsC_wPEczqB3oTQqtqfLy9Q&_nc_ht=scontent-cdt1-1.xx&oh=452027c45663dd7ec1a56808030353fb&oe=5E8777F4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152326278813155", "text": "Altro che centri sociali!\nQuesta \u00e8 GENTE VERA, questi sono i Volontari della Lega.", "post_text": "Altro che centri sociali!\nQuesta \u00e8 GENTE VERA, questi sono i Volontari della Lega.", "shared_text": "", "time": "2014-08-16 23:21:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10487302_10152326278618155_2865009932254062995_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=ULuLGQDcOpkAQmchv0rP3S2RmSbsNPwHKHj029JdKt7mX2TbDl76eY2ww&_nc_ht=scontent-cdt1-1.xx&oh=8d8ed481db2b4373209d16f4cce70731&oe=5E4BB1ED", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152326109048155", "text": "Oltre 1.000 persone per la serata leghista a Pontida, la gente non riesce pi\u00f9 a entrare sotto il tendone!\nSTOP IMMIGRAZIONE, ne abbiamo le palle piene!", "post_text": "Oltre 1.000 persone per la serata leghista a Pontida, la gente non riesce pi\u00f9 a entrare sotto il tendone!\nSTOP IMMIGRAZIONE, ne abbiamo le palle piene!", "shared_text": "", "time": "2014-08-16 21:22:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10606075_10152326107593155_9003326163285458665_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=ECubwafxVioAQkEYl8FqFZobiACf6Y-IXt4_PzW9-MtKF_uft8ofDgVhA&_nc_ht=scontent-cdt1-1.xx&oh=5ca5141e0df3041833e4d2713a254814&oe=5E82894C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152325891423155", "text": "Presidio in corso da una settimana, giorno e notte, nel Parco dei Colli Bergamaschi contro il soggiorno di decine di immigrati.\nGrazie Giovani Padani e grazie Lega, noi non ci arrendiamo!", "post_text": "Presidio in corso da una settimana, giorno e notte, nel Parco dei Colli Bergamaschi contro il soggiorno di decine di immigrati.\nGrazie Giovani Padani e grazie Lega, noi non ci arrendiamo!", "shared_text": "", "time": "2014-08-16 18:59:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10616254_10152325889183155_4901501283952708083_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=8HJpxbURTEwAQmR5pXAKFKL9ipjp-67lWSNX2uIr86-UCEjp65hHR2e6A&_nc_ht=scontent-cdt1-1.xx&oh=f1a24762975ba9cf02e17de44e01d9e2&oe=5E431656", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152311845443155", "text": "Trentino, vista la temperatura \"estiva\" vado di Zabaione!\nEchissenefrega...", "post_text": "Trentino, vista la temperatura \"estiva\" vado di Zabaione!\nEchissenefrega...", "shared_text": "", "time": "2014-08-09 15:37:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10502266_10152311845028155_8541811306329305586_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=xI3N3q_cjWgAQmBtbAjOU1iV30HdTXB6APAV9B_CZgSsszCYC-jNjQJ9w&_nc_ht=scontent-cdt1-1.xx&oh=b5313b3215395f6e439be89e340f4849&oe=5E48D349", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152307634198155", "text": "Oggi mi hanno fatto qualche domanda \"privata\": condivido con voi!\nL'articolo completo \u00e8 qui: http://www.affaritaliani.it/politica/salvini-intervista-non-politica0708.html\n(se vi piace, cliccate il \"Pollice su\" in fondo alla pagina)", "post_text": "Oggi mi hanno fatto qualche domanda \"privata\": condivido con voi!\nL'articolo completo \u00e8 qui: http://www.affaritaliani.it/politica/salvini-intervista-non-politica0708.html\n(se vi piace, cliccate il \"Pollice su\" in fondo alla pagina)", "shared_text": "", "time": "2014-08-07 14:00:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/10525358_10152307634118155_1660474956154994504_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=FQwwf6n6_z4AQmsBXiA0sBFEFZiRUBurSiugHwArkCE5ODQAPF0GOFOqQ&_nc_ht=scontent-cdt1-1.xx&oh=c1b49e3a36f8e963457c5a74bc774a03&oe=5E7A4F61", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.affaritaliani.it/politica/salvini-intervista-non-politica0708.html?fbclid=IwAR1slDuSXSREWSrD_AJqvoQ1E0GhbaCtbytzbcMDHRNU9_g3VQ99U391Djg"} +{"post_id": "10152306308488155", "text": "Pi\u00f9 di 1.000 persone con la Lega ad Arcore!\nStop immigrazione e lavoro alla nostra gente, non molliamo!!!", "post_text": "Pi\u00f9 di 1.000 persone con la Lega ad Arcore!\nStop immigrazione e lavoro alla nostra gente, non molliamo!!!", "shared_text": "", "time": "2014-08-06 22:04:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10527820_10152306307533155_7110986421161586407_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=mSG0H_ZmpPYAQkmgrVovVnWYwJxTX4eGgIDYMQixC74pJulORINL7qDqg&_nc_ht=scontent-cdt1-1.xx&oh=8b63476506da0e309a2574288d3783e5&oe=5E84C8EA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152302517143155", "text": "Centinaia di persone con la Lega ad Arcene, Bergamo.\nL'emergenza sono la disoccupazione, l'immigrazione e le tasse, non la legge elettorale o menate simili...", "post_text": "Centinaia di persone con la Lega ad Arcene, Bergamo.\nL'emergenza sono la disoccupazione, l'immigrazione e le tasse, non la legge elettorale o menate simili...", "shared_text": "", "time": "2014-08-04 22:08:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1908045_10152302512368155_7508363534985696819_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=gFBXQWEA874AQnKOf5UbugTCTYupWR2ontsQa7zyf8ENv5SOfCOoRkZBw&_nc_ht=scontent-cdt1-1.xx&oh=9937d2c1bf335d4e8722866833208abc&oe=5E85CB4A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152302378053155", "text": "Ecco una proposta che mi piace: ogni sinistro mantiene un clandestino!", "post_text": "Ecco una proposta che mi piace: ogni sinistro mantiene un clandestino!", "shared_text": "", "time": "2014-08-04 20:51:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10353195_10152302375153155_6913011751032760135_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=VfEr3Lm-uUIAQmw26WSXR9fKNZq9tkk6OebkiCFi9DeCtB5uTIHpLiT_w&_nc_ht=scontent-cdt1-1.xx&oh=5866c7adbbdedb48babc727fb75917fc&oe=5E8760A5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152300306348155", "text": "Ora sul palco a Milano Marittima con esponenti del presunto 'centrodestra'. Utile discutere o \u00e8 tempo sprecato, voi che ne dite?", "post_text": "Ora sul palco a Milano Marittima con esponenti del presunto 'centrodestra'. Utile discutere o \u00e8 tempo sprecato, voi che ne dite?", "shared_text": "", "time": "2014-08-03 21:48:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p240x240/10465499_10152300305718155_2701326933287519948_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Frdyz-mYG_kAQlLUAk2kZ1y5LPPY5RbvmXHuUp0ZaQTpI8gsyMy9-KRFQ&_nc_ht=scontent-cdt1-1.xx&oh=f6deade54fbf2caf05adcc59bba90d4d&oe=5E45320F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152296059973155", "text": "Spettacolare colpo d'occhio nella \"rossa\" Milano Marittima: centinaia di persone alla serata leghista in piazza!\nGrazie Romagna.", "post_text": "Spettacolare colpo d'occhio nella \"rossa\" Milano Marittima: centinaia di persone alla serata leghista in piazza!\nGrazie Romagna.", "shared_text": "", "time": "2014-08-01 21:36:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10433802_10152296058833155_795179430504522122_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=JZs6LxEtZ0wAQnbglX8VOEcA_yRepAR0iI9p-QlbJMhB12HX2Qn61jhgw&_nc_ht=scontent-cdt1-1.xx&oh=9771558252915b8a6d340700551238d6&oe=5E81BB35", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152286306728155", "text": "Centinaia di ABUSIVI che vendono di tutto.\nCentinaia di italiani che comprano, e poi magari si lamentano dell'IMMIGRAZIONE clandestina.\nNESSUN CONTROLLO, e poi lo Stato rompe le palle ad artigiani e commercianti per uno scontrino di 2 Euro.\nIo non mi arrendo, cambiare si pu\u00f2.", "post_text": "Centinaia di ABUSIVI che vendono di tutto.\nCentinaia di italiani che comprano, e poi magari si lamentano dell'IMMIGRAZIONE clandestina.\nNESSUN CONTROLLO, e poi lo Stato rompe le palle ad artigiani e commercianti per uno scontrino di 2 Euro.\nIo non mi arrendo, cambiare si pu\u00f2.", "shared_text": "", "time": "2014-07-28 12:04:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10487283_10152286304663155_6582681375883817379_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=eJ6eVYs0crYAQnWHNHUMRHn8jbasqsqUBauSjDdzJs2ullmuNmF7RAzfw&_nc_ht=scontent-cdt1-1.xx&oh=072b0c69b9bb6b75ad5371dba7afdd4d&oe=5E895C5D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152279175738155", "text": "Se questo \u00e8 il RENZISMO che d\u00e0 8 euro al giorno, 240 al mese, agli ex detenuti insoddisfatti di come sono stati trattati... io LO COMBATTO, #iostoconlevittime!\nGUARDA VIDEO: https://www.youtube.com/watch?v=UwqDkgN9MSk", "post_text": "Se questo \u00e8 il RENZISMO che d\u00e0 8 euro al giorno, 240 al mese, agli ex detenuti insoddisfatti di come sono stati trattati... io LO COMBATTO, #iostoconlevittime!\nGUARDA VIDEO: https://www.youtube.com/watch?v=UwqDkgN9MSk", "shared_text": "", "time": "2014-07-24 20:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10372532_10152279174853155_7836673328208029821_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=1-8tCQ20oU0AQm9T3jvrYEsF88KOj7nm2YiTggDGfZCwtInqJ9P5ZdV-w&_nc_ht=scontent-cdt1-1.xx&oh=8a0e8fe875df5e8879b98410633cf314&oe=5E863EAC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "https://www.youtube.com/watch?v=UwqDkgN9MSk&fbclid=IwAR3c4IHvWRHcBMWVjmkGjoeqB0_pVqQnMplU1D7xz1_mTjXli0rHbl5ppH4"} +{"post_id": "10152276756598155", "text": "14 novembre: sfida allo #statoladro, ci state?", "post_text": "14 novembre: sfida allo #statoladro, ci state?", "shared_text": "", "time": "2014-07-23 13:01:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s526x296/905862_10152276756428155_3117306010652068464_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=w21PXZq54XAAQnPMMdgh7Sjxf8-h-cshov3qg4_BSvFBapgEELdVqzM1Q&_nc_ht=scontent-cdt1-1.xx&oh=11bc42d3b3ef226bc1a0baf6190492e1&oe=5E510B09", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152272503703155", "text": "", "post_text": "", "shared_text": "", "time": "2014-07-21 16:08:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10410789_10152272501018155_3653218460536498592_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=W18RPisx6uEAQn0aEP_8DeuyEvEmNRWlk_hPZa-8CpoD9IhgjkQpiu9iw&_nc_ht=scontent-cdt1-1.xx&oh=474908973bfee2edba9dd476d23b3279&oe=5E4D9BD9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152271037098155", "text": "Lezzeno, lago di Como, serata leghista.\nCi sono posti pi\u00f9 belli sulla terra?", "post_text": "Lezzeno, lago di Como, serata leghista.\nCi sono posti pi\u00f9 belli sulla terra?", "shared_text": "", "time": "2014-07-20 21:20:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10478118_10152271034628155_2729038228946144089_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=dAN6QWBi63gAQku1RFadMDylTBu6hmcUJ7HXSfpEb6yXPniJTj5A18E2Q&_nc_ht=scontent-cdt1-1.xx&oh=d736c73799516e788fe6204160781cbb&oe=5E453B8C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152270251588155", "text": "Domenica di luglio, caldo e afa, ma la sala di Padova \u00e8 strapiena di Lega e di Idee.", "post_text": "Domenica di luglio, caldo e afa, ma la sala di Padova \u00e8 strapiena di Lega e di Idee.", "shared_text": "", "time": "2014-07-20 11:52:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10500399_10152270250923155_7833030044315575378_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=udHoTpdkReUAQnxeP6EOpgkF8b84LCsXjCqFoS7n5mf2ykomRjwEwEJww&_nc_ht=scontent-cdt1-1.xx&oh=fc615fa3b2375d909f0d841582118dbd&oe=5E8930D9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152269423693155", "text": "Gruppo leghista in trasferta padovana, Sant'Antonio ci guarda le spalle!", "post_text": "Gruppo leghista in trasferta padovana, Sant'Antonio ci guarda le spalle!", "shared_text": "", "time": "2014-07-19 23:56:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10347168_10152269422603155_5139152318215003656_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=9glqVCs4kToAQl8jvLZoLbqGCRLGSAHDr4fwA_zsO0xUGdBwpRQA_t0gA&_nc_ht=scontent-cdt1-1.xx&oh=f207e6a5a334fc74e82e641f7992c547&oe=5E43DA99", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152263205093155", "text": "Sondaggio: \"Sull'operazione Mare Nostrum, il leader della Lega Matteo Salvini ha dichiarato: \u00abMare Nostrum va sospesa e i centri di pseudo accoglienza vanno allestiti in Nord Africa al di l\u00e0 del Mediterraneo\u00bb \u00e8 d'accordo?\"\nUn ITALIANO SU DUE dice SI'.\nChiss\u00e0 se se ne accorger\u00e0 anche Renzi...", "post_text": "Sondaggio: \"Sull'operazione Mare Nostrum, il leader della Lega Matteo Salvini ha dichiarato: \u00abMare Nostrum va sospesa e i centri di pseudo accoglienza vanno allestiti in Nord Africa al di l\u00e0 del Mediterraneo\u00bb \u00e8 d'accordo?\"\nUn ITALIANO SU DUE dice SI'.\nChiss\u00e0 se se ne accorger\u00e0 anche Renzi...", "shared_text": "", "time": "2014-07-16 13:05:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p206x206/10498264_10152263204728155_7860754164186122246_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=qrpM-b795JQAQlUvNOKDW57-K5KWx3afBP_IvosqainkgPzJKoEnxPmeg&_nc_ht=scontent-cdt1-1.xx&oh=298485c8bbcb00f7294dd1d35614a024&oe=5E46A2D3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152263131033155", "text": "Ora in collegamento con Radio Base", "post_text": "Ora in collegamento con Radio Base", "shared_text": "", "time": "2014-07-16 11:52:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10461973_10152263130323155_6288906198986126083_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=g3Clug0vplIAQljtt8CzxX8tmJUT5ewdPtxpFrSBYINpHOo4045XYrghw&_nc_ht=scontent-cdt1-1.xx&oh=991afe1beccbe64e4a072a316d82e184&oe=5E7ABAB6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152259900793155", "text": "Centinaia di persone in piazza con la Lega a Magenta: STOP IMMIGRAZIONE!\nE dalle 21.45 sar\u00f2 in diretta su LA 7.", "post_text": "Centinaia di persone in piazza con la Lega a Magenta: STOP IMMIGRAZIONE!\nE dalle 21.45 sar\u00f2 in diretta su LA 7.", "shared_text": "", "time": "2014-07-14 21:21:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10462688_10152259891153155_4758246487549184939_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=7lwe4hw9nmoAQnb6e-NI6kPJbglKBkEy4Z9Ton85Oy2TJHCuWwqnI0YUQ&_nc_ht=scontent-cdt1-1.xx&oh=64dfbd400a8d25e22926519f5a06653e&oe=5E894F75", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152259846898155", "text": "128 immigrati spediti a Magenta, vitto e alloggio pagato dai cittadini italiani, ospitalit\u00e0 \"offerta\" dalla Caritas.\nLi volete? Pagate voi!", "post_text": "128 immigrati spediti a Magenta, vitto e alloggio pagato dai cittadini italiani, ospitalit\u00e0 \"offerta\" dalla Caritas.\nLi volete? Pagate voi!", "shared_text": "", "time": "2014-07-14 20:48:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10388569_10152259845033155_6481842347758660646_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=ptLQkVHoFeAAQktkhOUr2iO2tkqLc5KRaotTUr1_XP_6g3IxQYvG_gwTA&_nc_ht=scontent-cdt1-1.xx&oh=a3a1635618b62142d82c1284de1eda21&oe=5E46F93A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152258108603155", "text": "Centinaia di persone con la Lega nella \"rossa\" Cavriago (Reggio Emilia), ultima citt\u00e0 italiana con una statua di Lenin in piazza...", "post_text": "Centinaia di persone con la Lega nella \"rossa\" Cavriago (Reggio Emilia), ultima citt\u00e0 italiana con una statua di Lenin in piazza...", "shared_text": "", "time": "2014-07-13 23:22:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10462790_10152258106833155_8847396797369069358_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=8WdrYx-QAnkAQm5MLgHsBmaLq-vixabXLOoynU6ggnFKoLRr34BrhhwTw&_nc_ht=scontent-cdt1-1.xx&oh=51d19b49aa530cd52bad7842bc87af17&oe=5E401F52", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152257372813155", "text": "Pranzo coi cittadini ad Adro, in Franciacorta.\nE voi, come state passando la vostra domenica?", "post_text": "Pranzo coi cittadini ad Adro, in Franciacorta.\nE voi, come state passando la vostra domenica?", "shared_text": "", "time": "2014-07-13 16:18:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10405687_10152257371288155_7035245026786030899_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=DDlYbXrTSS0AQmT-xbNfK6VWrreD74U2RM0he7MNOkA9nGxRkDp5jiZyw&_nc_ht=scontent-cdt1-1.xx&oh=bc533b68d20b021b2da208da53a04740&oe=5E87A5D2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152257099033155", "text": "Buon appetito da Adro, in Franciacorta.\nAppena finita la \"Gara del Salame\", 17 tipi di salami diversi fra cui scegliere il migliore. Difficile...", "post_text": "Buon appetito da Adro, in Franciacorta.\nAppena finita la \"Gara del Salame\", 17 tipi di salami diversi fra cui scegliere il migliore. Difficile...", "shared_text": "", "time": "2014-07-13 13:10:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10491192_10152257098518155_6784706495624451120_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=AVman6x569oAQnOj6sVqY5atDPZtE7qN9G-v-Z9cW4zGAZOqi64bz3HBg&_nc_ht=scontent-cdt1-1.xx&oh=3ee61cc90f2cbe9df6c3829a6076d112&oe=5E440F61", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152256991173155", "text": "Ancora dal Centro per Immigrati di Mineo, Catania.\nGuarda che bel \"deposito\" di biciclette davanti a una delle 400 villette, sicuramente tutte bici regolarmente acquistate...", "post_text": "Ancora dal Centro per Immigrati di Mineo, Catania.\nGuarda che bel \"deposito\" di biciclette davanti a una delle 400 villette, sicuramente tutte bici regolarmente acquistate...", "shared_text": "", "time": "2014-07-13 12:26:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10539196_10152256991128155_4678729850206979793_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=xqzWifk8LP4AQl0ftmE3bAyIxlVXB8rKFbtc9ab3UFbgn4JbgwrKnRrcg&_nc_ht=scontent-cdt1-1.xx&oh=c55e3a5b19b5b8280a9e080ea9c8508b&oe=5E88012D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152256173873155", "text": "Coi volontari della Festa Lega di Carpugnino, sul lago Maggiore.\nMusica, tanta gente, ottime torte, politica sana.", "post_text": "Coi volontari della Festa Lega di Carpugnino, sul lago Maggiore.\nMusica, tanta gente, ottime torte, politica sana.", "shared_text": "", "time": "2014-07-13 00:25:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10456424_10152256171188155_301362680696340366_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=YJjXY__5SIQAQnl0VkhaDmlLHoS9k8VPcLOSsmIJdJxHup9byqRJ7KRmg&_nc_ht=scontent-cdt1-1.xx&oh=96886fc1fb7a1adb2bc93ffc3452ffac&oe=5E495076", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152255747833155", "text": "200.000 volte Grazie! La Storia siamo Noi, la Storia siete Voi.", "post_text": "200.000 volte Grazie! La Storia siamo Noi, la Storia siete Voi.", "shared_text": "", "time": "2014-07-12 20:12:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10347706_10152255747613155_6968868722304728823_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=gUfWkUZ8DDUAQks8UAXaB6H2nIEkcpcwhJ99L2GU-VSo16sa-t_Y_sN0Q&_nc_ht=scontent-cdt1-1.xx&oh=826c5be527ac8273ee9e8b5e14f4732d&oe=5E4E99A6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152255048403155", "text": "Centro di Accoglienza di Mineo, campi giochi per i bambini.\nSe penso a come sono ridotti i giochi in alcuni giardini pubblici di Milano, mi incazzo.", "post_text": "Centro di Accoglienza di Mineo, campi giochi per i bambini.\nSe penso a come sono ridotti i giochi in alcuni giardini pubblici di Milano, mi incazzo.", "shared_text": "", "time": "2014-07-12 12:35:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10494614_10152255044788155_4167066971668241430_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=mArvIlgorxsAQnp1LVO49aiOg9AdgB0Tzq9Y5TAJvvAPkpf61oRMpQ-7A&_nc_ht=scontent-cdt1-1.xx&oh=cd7a4a59c57953d33fe564619d4d68b5&oe=5E4D2F82", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152255019603155", "text": "Aria condizionata e palme in giardino.\nQuesto per chi sbarca.\nE per gli italiani?", "post_text": "Aria condizionata e palme in giardino.\nQuesto per chi sbarca.\nE per gli italiani?", "shared_text": "", "time": "2014-07-12 12:12:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10553385_10152255018863155_1615570340113959010_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=e_xv1RYv73kAQk-LN49C4zjEyaH2Py9BF89IH_BEoxx6H-KqJnGYrwNhQ&_nc_ht=scontent-cdt1-1.xx&oh=dadd940344b9f2ecfb4426665afbb056&oe=5E4794BA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152254976608155", "text": "Sempre dentro il Centro di Mineo ci sono \"negozi\" di fotografia, servizi wi-fi, ristoranti.\nVarranno anche per loro gli Studi di Settore?", "post_text": "Sempre dentro il Centro di Mineo ci sono \"negozi\" di fotografia, servizi wi-fi, ristoranti.\nVarranno anche per loro gli Studi di Settore?", "shared_text": "", "time": "2014-07-12 11:42:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10491177_10152254975958155_6457947119429421078_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=-90FryOpWUEAQn4THroPVBJWj_aZ7QsLjQQiWMQ6M3ubRr6TxQ2eVIY9w&_nc_ht=scontent-cdt1-1.xx&oh=a296f5fe10d80db5d48ea382fa544c91&oe=5E7DB03F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152254953908155", "text": "Mercati abusivi all'interno del Centro.\nSi vende di tutto, chiss\u00e0 se l'obbligo del Bancomat vale anche per loro...", "post_text": "Mercati abusivi all'interno del Centro.\nSi vende di tutto, chiss\u00e0 se l'obbligo del Bancomat vale anche per loro...", "shared_text": "", "time": "2014-07-12 11:21:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10494725_10152254952598155_9001764223526628133_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=R_v-2-RHvkEAQk7mUUpQRMVGKoduzJ4H59Vvt4tAIgebqd4OCJmTfyf2w&_nc_ht=scontent-cdt1-1.xx&oh=5175cd6270e867834ef2821ff07bcf99&oe=5E4BAEDF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152254885528155", "text": "Immigrati subito \"ambientati\" in Italia...\nSigarette di contrabbando in vendita senza problemi.", "post_text": "Immigrati subito \"ambientati\" in Italia...\nSigarette di contrabbando in vendita senza problemi.", "shared_text": "", "time": "2014-07-12 10:27:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10402707_10152254884918155_8878004032138582843_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=3FV9zizOQSoAQnWQl_hNIi8fNlw9fNc-hjWdPLejvxURPiKyBojfXNEZA&_nc_ht=scontent-cdt1-1.xx&oh=64c46c02d7896ea3e20e0c6972b6f7e5&oe=5E3E3AB6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152254878418155", "text": "Pazzesco!\n400 villette, con giardino davanti e dietro e parabole sui tetti.\nCos\u00ec gli italiani mantengono 4.000 IMMIGRATI che, anche oggi, bivaccano nel Centro di Accoglienza di Mineo (Catania).", "post_text": "Pazzesco!\n400 villette, con giardino davanti e dietro e parabole sui tetti.\nCos\u00ec gli italiani mantengono 4.000 IMMIGRATI che, anche oggi, bivaccano nel Centro di Accoglienza di Mineo (Catania).", "shared_text": "", "time": "2014-07-12 10:20:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10527414_10152254877138155_8742028701074162591_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=ucyV6jKZ__MAQmao-k_wofB9FoNDXY7w3d039fdrwyMLmjwBjD_J0-o0g&_nc_ht=scontent-cdt1-1.xx&oh=df8d69f71ff08965e3cfc0615e508668&oe=5E449AE6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152254156888155", "text": "Badia Calavena, terra Veneta e orgogliosa, tanti giovani!", "post_text": "Badia Calavena, terra Veneta e orgogliosa, tanti giovani!", "shared_text": "", "time": "2014-07-11 23:32:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10547610_10152254155348155_404513720787984397_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=NN_OMBfwDuoAQniP52PWmb4E7euGsr87NwPKnDUx67RkSmRG--3j-4ssQ&_nc_ht=scontent-cdt1-1.xx&oh=090268635e5c6d366ff8f06af86619d4&oe=5E4024A4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152252193903155", "text": "Con alcuni dei volontari della bellissima festa Lega di Vizzolo Predabissi, nel milanese.\nBravi!", "post_text": "Con alcuni dei volontari della bellissima festa Lega di Vizzolo Predabissi, nel milanese.\nBravi!", "shared_text": "", "time": "2014-07-10 23:32:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10484277_10152252193203155_603051955021197299_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=B9AjQ7530cYAQlbTzNA0j4w96abehhDLjRLjxQoRQPPg8tZlpFuU0tapw&_nc_ht=scontent-cdt1-1.xx&oh=5d142e72860360641e80759495a1dbc6&oe=5E46BBCF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152250222183155", "text": "Mi piace da matti mangiare la crosta del Grana.\n\u00c8 normale?", "post_text": "Mi piace da matti mangiare la crosta del Grana.\n\u00c8 normale?", "shared_text": "", "time": "2014-07-09 23:10:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1977204_10152250221078155_5736709175190440904_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=mR47reUScbgAQkdCKxFJSShLLRbp9PCgzXzjigU38Rx-1Ys5h2Uudef1A&_nc_ht=scontent-cdt1-1.xx&oh=d6da974dc607dccc9e3b4d07c1eb6845&oe=5E4ECCB1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152244448018155", "text": "Notte serena, da me e dai militanti Leghisti di Rovato, a chi non si arrende e si impegna per migliorare il Domani.", "post_text": "Notte serena, da me e dai militanti Leghisti di Rovato, a chi non si arrende e si impegna per migliorare il Domani.", "shared_text": "", "time": "2014-07-07 00:58:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10401969_10152244446168155_3552502048169305822_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=M9ubM04ruOcAQn7_6jFGzB9TigS93JQIGT-KFpha7MBupx42ljZPolxHQ&_nc_ht=scontent-cdt1-1.xx&oh=6afecfab9562f3b01a8401724be9c2c7&oe=5E4875C8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152242266928155", "text": "Strapiena la festa della Lega di Quinzano, nel bresciano.\nE questa \u00e8 la bellissima squadra dei volontari che ci stanno lavorando.", "post_text": "Strapiena la festa della Lega di Quinzano, nel bresciano.\nE questa \u00e8 la bellissima squadra dei volontari che ci stanno lavorando.", "shared_text": "", "time": "2014-07-05 23:24:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10458486_10152242265883155_3192196524155184998_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=nuIxuS7pf3gAQklUMzSEVU2zagslW0MCizRP_TWSEBg1TWaQVTF7S5R3Q&_nc_ht=scontent-cdt1-1.xx&oh=af90f616bb2e5e6093b2a409b25bb887&oe=5E41C943", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152235908208155", "text": "Parla Renzi a Strasburgo.\nAula desolatamente mezza vuota.\nVedete come \"tira\" Matteo in Europa..??", "post_text": "Parla Renzi a Strasburgo.\nAula desolatamente mezza vuota.\nVedete come \"tira\" Matteo in Europa..??", "shared_text": "", "time": "2014-07-02 15:19:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10489965_10152235907553155_841730279130209671_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=5-zfVLsPSzoAQmX73_MQtri_eHVC52a8vZys0mKrlCB4p_1mAgG_MUb-A&_nc_ht=scontent-cdt1-1.xx&oh=b26c81441cd379c232804434e2446549&oe=5E4D0296", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152236159148155", "text": "Diritti delle donne in Pakistan, cristiani perseguitati in Nigeria, tutte cause giuste.\nMa da RENZI oggi al Parlamento Europeo NON UNA PAROLA sui MARO' da due anni prigionieri in India.\nSi occupa di tutti i diseredati del mondo, meno che di loro.", "post_text": "Diritti delle donne in Pakistan, cristiani perseguitati in Nigeria, tutte cause giuste.\nMa da RENZI oggi al Parlamento Europeo NON UNA PAROLA sui MARO' da due anni prigionieri in India.\nSi occupa di tutti i diseredati del mondo, meno che di loro.", "shared_text": "", "time": "2014-07-02 08:34:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10300034_10152236158743155_1038393686644493434_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=24Auj0PZSd4AQl9_EPDWK2SjNPpHyf87I8sNmtUrH5ooMzRlnOXH6LMAQ&_nc_ht=scontent-cdt1-1.xx&oh=f99d8f52a2085608ba797b3a9ffb2953&oe=5E7DD277", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152233432603155", "text": "Si comincia a Strasburgo!\nPer l'occasione cravatta col Leone di San Marco e marsupio Piemontese.", "post_text": "Si comincia a Strasburgo!\nPer l'occasione cravatta col Leone di San Marco e marsupio Piemontese.", "shared_text": "", "time": "2014-07-01 10:07:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10468638_10152233432188155_2468687476579465048_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=uQfEFp4ukBUAQnlE0JL3bSgkzINk1pWA9gxd7r3aZq7m9AqE22FB3TkLA&_nc_ht=scontent-cdt1-1.xx&oh=7f42f6d943a39abba2a4adb13750961a&oe=5E8C8897", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152233431693155", "text": "Stamattina BUONISTI scatenati quasi quanto gli SCAFISTI. Se non a Salvini, che \u00e8 brutto, sporco e CATTIVO, forse al Dalai Lama daranno ascolto?\nSTOP MARE NOSTRUM, SUBITO!", "post_text": "Stamattina BUONISTI scatenati quasi quanto gli SCAFISTI. Se non a Salvini, che \u00e8 brutto, sporco e CATTIVO, forse al Dalai Lama daranno ascolto?\nSTOP MARE NOSTRUM, SUBITO!", "shared_text": "", "time": "2014-07-01 10:06:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10462769_10152233431593155_5350532998167131596_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=h1YOZRZBw6gAQmztcWNtECe89M55R7IVumL4j1GRo2LRT41ZF9qElBPpg&_nc_ht=scontent-cdt1-1.xx&oh=2da5ee6fe385aebb8da6ceccafca386f&oe=5E4175CA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152229939878155", "text": "Giugno o novembre?\nCi stanno rubando anche l'estate...", "post_text": "Giugno o novembre?\nCi stanno rubando anche l'estate...", "shared_text": "", "time": "2014-06-29 17:24:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10355751_10152229939313155_4533277161181619491_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=BJ6F_BUXca8AQmdpXf4W_B6kFaKkYWGOAxTnU1Sllvn5WFSmVk8nX7Aog&_nc_ht=scontent-cdt1-1.xx&oh=22b194e07b03155aa2fdacc5c57c7234&oe=5E83FC1B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152221974868155", "text": "500.000 GRAZIE!", "post_text": "500.000 GRAZIE!", "shared_text": "", "time": "2014-06-25 03:49:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10464237_10152221974378155_4096502967156208671_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=PXwNuRD4POIAQlpTmP_gpob3QRBULYZ81aF0JfC2FDu_gB0Ow5vM60Nog&_nc_ht=scontent-cdt1-1.xx&oh=e87a5f61c573b7e9bb8a1a7cf4ebe10b&oe=5E87E789", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152216584798155", "text": "Con la splendida squadra dei Volontari Leghisti della Festa di Zogno.\nInsieme si pu\u00f2!", "post_text": "Con la splendida squadra dei Volontari Leghisti della Festa di Zogno.\nInsieme si pu\u00f2!", "shared_text": "", "time": "2014-06-22 23:33:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10464205_10152216583838155_2526097428141397736_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=KLBTVN2AoLsAQlTzn_XtXgSrqUkvzEO2OMb1ruJsQuMih9TqdbxacLyWQ&_nc_ht=scontent-cdt1-1.xx&oh=cd0fbc6216fc8500b4c3a3a128829664&oe=5E49D869", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152216342578155", "text": "Formaggio alla piastra, polenta e birra!\nLa cucina della festa di Zogno (Val Brembana) non tradisce.\nIngrasser\u00f2..??", "post_text": "Formaggio alla piastra, polenta e birra!\nLa cucina della festa di Zogno (Val Brembana) non tradisce.\nIngrasser\u00f2..??", "shared_text": "", "time": "2014-06-22 21:12:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10436041_10152216341743155_307713987998288270_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=zwn02k9Ci6YAQknJFmeSaP36jKi4n3qZ-lNvsf3YmYEzZaRcQi8nQEmvg&_nc_ht=scontent-cdt1-1.xx&oh=dba7ac85ff7fda0accc18ff9c4b120fe&oe=5E4615EF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152208021233155", "text": "Signore e signori, sua maest\u00e0 l'Adamello.\nIo adoro la Montagna.", "post_text": "Signore e signori, sua maest\u00e0 l'Adamello.\nIo adoro la Montagna.", "shared_text": "", "time": "2014-06-18 19:09:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10342749_10152208018463155_7954208969032703642_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=w4-hA_OwgRoAQmp9K3TvWsKQC9kUvq5qRUoEbU-qqheoRjxrcQbHztGtg&_nc_ht=scontent-cdt1-1.xx&oh=a6e28d591c844e1814ff8d63e5af00b4&oe=5E5145C3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152207457133155", "text": "Basta Euro, STOP clandestini, lavoro e rivoluzione FISCALE. E una scommessa: aprire la Lega a chi con la Lega non ha mai avuto a che fare. Se avete voglia, date un'occhiata a questa intervista a \"Oggi\", leggo i vostri pareri!", "post_text": "Basta Euro, STOP clandestini, lavoro e rivoluzione FISCALE. E una scommessa: aprire la Lega a chi con la Lega non ha mai avuto a che fare. Se avete voglia, date un'occhiata a questa intervista a \"Oggi\", leggo i vostri pareri!", "shared_text": "", "time": "2014-06-18 12:01:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p280x280/10463683_10152207457073155_1504102647648608060_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=IkVgOFKplNAAQko0B_-7hf0D-pnDO8pP0f_NqSlqP-SiibyPMNUzSHAUw&_nc_ht=scontent-cdt1-1.xx&oh=b83a5433193ead670a2f3123339cfee9&oe=5E405AA3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152207292593155", "text": "Pane, burro e marmellata, yogurt e mela.\nOgni tanto bisogna \"viziarsi\" anche a colazione.\nBuona giornata Amici!", "post_text": "Pane, burro e marmellata, yogurt e mela.\nOgni tanto bisogna \"viziarsi\" anche a colazione.\nBuona giornata Amici!", "shared_text": "", "time": "2014-06-18 08:44:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10384130_10152207292033155_2194823990863869187_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=fK3GA3N-yI8AQltmlzQ1kqQqFvM6edUIFlcJ53TWdcLIP64LTWKs-fWgw&_nc_ht=scontent-cdt1-1.xx&oh=1b0eb285b6d7a293dac5454c278737fc&oe=5E4DCBDA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152207366038155", "text": "\"Il buon cuore per accogliere i rifugiati non basta, bisogna avere il coraggio di dire quando sono troppi e di intervenire nei loro Paesi\". Onore al Dalai Lama.", "post_text": "\"Il buon cuore per accogliere i rifugiati non basta, bisogna avere il coraggio di dire quando sono troppi e di intervenire nei loro Paesi\". Onore al Dalai Lama.", "shared_text": "", "time": "2014-06-18 01:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10383589_10152207365763155_7252793102392001290_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=SR40RKPEA0YAQkjCuTm5SqiHAsh93kaE4JRPK-N8c_JNQjdFI2eeSLE4w&_nc_ht=scontent-cdt1-1.xx&oh=b71d08651b361d09e246bcd95884e6b9&oe=5E84CA26", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152203352683155", "text": "Porto di Pozzallo, alle mie spalle il posto dove sbarcano migliaia di esseri umani su cui qualcuno specula.\nBloccare subito le navi di Mare Lorum!\nRenzi, svegliaaaaa!", "post_text": "Porto di Pozzallo, alle mie spalle il posto dove sbarcano migliaia di esseri umani su cui qualcuno specula.\nBloccare subito le navi di Mare Lorum!\nRenzi, svegliaaaaa!", "shared_text": "", "time": "2014-06-16 11:49:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152203352683155&id=252306033154", "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2014-06-16 02:15:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10473458_10152203318958155_5809045909609937854_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=tbdZVe8xccgAQlN0v30iMLRHxf2ACh-811wyly7rKxTD3sHCsYNBhuItA&_nc_ht=scontent-cdt1-1.xx&oh=a841edf449798ebab46f85b78ad8d0cb&oe=5E81F165", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152201725903155", "text": "In diretta da Maletto, provincia di Catania: le fragole pi\u00f9 dolci del mondo!", "post_text": "In diretta da Maletto, provincia di Catania: le fragole pi\u00f9 dolci del mondo!", "shared_text": "", "time": "2014-06-15 19:38:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10345566_10152201724738155_6989173121202064446_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=fRm7EXs8jaUAQkcQtmH4_5C7NTyaPeKgGROpbi1Jd8zyfceJMOPe0vJwg&_nc_ht=scontent-cdt1-1.xx&oh=567cc927392e2e89f2e2540c1643cb19&oe=5E4B0093", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152197575358155", "text": "Partita fra bimbi di 12 anni.\nLa maleducazione di alcuni genitori non si pu\u00f2 sentire...", "post_text": "Partita fra bimbi di 12 anni.\nLa maleducazione di alcuni genitori non si pu\u00f2 sentire...", "shared_text": "", "time": "2014-06-13 18:43:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10389706_10152197570818155_3335506048114582036_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=4-JmrpQ7-poAQlk76NZIbvps2vzHuEvhg99D9QeMZjKl7GtCfCU5oPhWg&_nc_ht=scontent-cdt1-1.xx&oh=83fdf2bf896e10fd610c67adf60d95af&oe=5E7FDD34", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152197416108155", "text": "Natale 1982.\nBoy Scout, Cngei Milano 5: io c'ero!\nBellissima esperienza, fra amicizia e natura.", "post_text": "Natale 1982.\nBoy Scout, Cngei Milano 5: io c'ero!\nBellissima esperienza, fra amicizia e natura.", "shared_text": "", "time": "2014-06-13 17:09:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10402451_10152197414223155_4597644640211464834_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=7NfSjTGJ39QAQmPLR4NVYMW9YuHHDHmdABDTkgz9OknLvtSiOdc19CRdw&_nc_ht=scontent-cdt1-1.xx&oh=36daa99c673d349dd0f07e07e3d7b388&oe=5E42456A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152192206723155", "text": "Adoro il formaggio! Sono l'unico?\nE il colesterolo permette...", "post_text": "Adoro il formaggio! Sono l'unico?\nE il colesterolo permette...", "shared_text": "", "time": "2014-06-10 22:27:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10169409_10152192205908155_5565897919422277136_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=8HW3CbWCT08AQm4Zyy4IoOaOJojAKqGSzWpnCWBWZGwQwi1fVa4B6VT-g&_nc_ht=scontent-cdt1-1.xx&oh=39b9b69285784c0774ec191ab9d58049&oe=5E49C70D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152191198738155", "text": "Bellissima questa foto!", "post_text": "Bellissima questa foto!", "shared_text": "", "time": "2014-06-10 10:53:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10443435_10152191198333155_1995486228699958213_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=eIHPFvnqCRsAQkHT0wTeWG7GZ_aAEj1Bsb3mQkO710qxVh9TNUrHeTEDQ&_nc_ht=scontent-cdt1-1.xx&oh=87df1b4df5197f7cb5e540ba8096ed86&oe=5E89F331", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152190198218155", "text": "SABATO 14 e DOMENICA 15 giugno #vieniafirmare >> Nei capoluoghi di provincia e nelle localit\u00e0 di villeggiatura, ai gazebo indicati sul sito WWW.VIENIAFIRMARE.ORG >> Ultima occasione per firmare i 6 REFERENDUM\u2026 Altro DI LIBERT\u00c0 >> CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO - PROSTITUZIONE LEGALE - ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A IMMIGRATI >> Il sesto referendum (ripristino del reato di immigrazione clandestina) potr\u00e0 essere firmato nei municipi e ai gazebo fino all'11 luglio >> INFO: 0266234234 - info@vieniafirmare.org", "post_text": "SABATO 14 e DOMENICA 15 giugno #vieniafirmare >> Nei capoluoghi di provincia e nelle localit\u00e0 di villeggiatura, ai gazebo indicati sul sito WWW.VIENIAFIRMARE.ORG >> Ultima occasione per firmare i 6 REFERENDUM\u2026 Altro DI LIBERT\u00c0 >> CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO - PROSTITUZIONE LEGALE - ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A IMMIGRATI >> Il sesto referendum (ripristino del reato di immigrazione clandestina) potr\u00e0 essere firmato nei municipi e ai gazebo fino all'11 luglio >> INFO: 0266234234 - info@vieniafirmare.org", "shared_text": "", "time": "2014-06-09 22:54:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10441270_10152190198048155_3585047343779111826_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=c8pmSJdDUUsAQnNC2wrHjdyga1DmUmdBvijW4h9jjuK80FFkFXESIfO_A&_nc_ht=scontent-cdt1-1.xx&oh=4173bf71953dbfda860e5c7992810655&oe=5E4C27F8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.VIENIAFIRMARE.ORG/?fbclid=IwAR380xJIoxpXj0YBSg063Kemjh-GGQXm5tv-DPXd2dl7spfSnLolcSYFzQA"} +{"post_id": "10152187854643155", "text": "Tantissima gente alla Festa della Lega nella bergamasca.\nMolti dopo aver preso i voti spariscono, noi ci siamo sempre!", "post_text": "Tantissima gente alla Festa della Lega nella bergamasca.\nMolti dopo aver preso i voti spariscono, noi ci siamo sempre!", "shared_text": "", "time": "2014-06-08 21:43:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10404089_10152187853378155_4447257254615162766_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=1mG702Exf8AAQmc2msrYN9Sl9G-CuFfh9fnNcEK73fuE_c_MB2Q6_bYpA&_nc_ht=scontent-cdt1-1.xx&oh=a5096e9244c0f98def34197585d2df15&oe=5E41377A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152184887433155", "text": "Ore 12.07, mercato di via Fauch\u00e8: 23 persone in fila per firmare i Referendum.\nSpettacolo!", "post_text": "Ore 12.07, mercato di via Fauch\u00e8: 23 persone in fila per firmare i Referendum.\nSpettacolo!", "shared_text": "", "time": "2014-06-07 12:07:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10458777_10152184886413155_2725673401352555318_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=txi4Lt9iBLAAQkVkvcFdWH5iD1OaBZcu9DY6KDRKZbtsUms7iW1ikfu7Q&_nc_ht=scontent-cdt1-1.xx&oh=ee3eaffac08d33dacc0d9e569a08414b&oe=5E88F0EF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152184837633155", "text": "Piazza Caneva, Milano.\nI vigili multano le auto parcheggiate, a 10 metri una trentina di abusivi vende di tutto...\nChe SCHIFOOO!!!", "post_text": "Piazza Caneva, Milano.\nI vigili multano le auto parcheggiate, a 10 metri una trentina di abusivi vende di tutto...\nChe SCHIFOOO!!!", "shared_text": "", "time": "2014-06-07 11:19:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10440988_10152184837098155_1215864166265915718_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=FKRUbcUUv_gAQlM2ABfKf_XJdZX1Ap-4k11bAKtn-CMmR60xXcZljoTVg&_nc_ht=scontent-cdt1-1.xx&oh=d11d5480a4ba18c9c833b3994b038418&oe=5E44603D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152184176888155", "text": "Notte serena Amici, un bicchiere di grappa \u00e8 per Voi!", "post_text": "Notte serena Amici, un bicchiere di grappa \u00e8 per Voi!", "shared_text": "", "time": "2014-06-07 01:12:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10334304_10152184176433155_7355083249073449545_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=wsoaIig8OygAQk51HFksba8Insi4ZcrZZw6B4yrLjmVgDnUza-VCMVmCg&_nc_ht=scontent-cdt1-1.xx&oh=a8f7cfc01eb77cec271e407bfc7c89c2&oe=5E791DDF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152183768123155", "text": "Dai, ragazzi, comincia la rincorsa a Renzi!", "post_text": "Dai, ragazzi, comincia la rincorsa a Renzi!", "shared_text": "", "time": "2014-06-06 21:26:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/984106_10152183767718155_1780136316166639621_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=pMuCRYdwUP4AQkBXXXpT-l3pZMkIyBK8nbGLL8rLixnPgKnsw1coceEvw&_nc_ht=scontent-cdt1-1.xx&oh=cff984e5b012f9aa2251c70b82277ef6&oe=5E473E5C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152181771453155", "text": "Piazza piena a Vittorio Veneto.\nChe bello quando la Buona Politica c'\u00e8!\nE se ci sono anche buon cibo e buon vino...", "post_text": "Piazza piena a Vittorio Veneto.\nChe bello quando la Buona Politica c'\u00e8!\nE se ci sono anche buon cibo e buon vino...", "shared_text": "", "time": "2014-06-05 21:37:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10409332_10152181770498155_2345429996198317130_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=wKdY_67y048AQmLW58skp-dWQ97XxygouW8KUy6Uy3V7M_49D0MLXNrdQ&_nc_ht=scontent-cdt1-1.xx&oh=c17f9e4c11b823a04b323197506850d2&oe=5E7CC795", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152181285253155", "text": "Fantastica, giovane e motivata la squadra Leghista a Preganziol, nel Trevigiano.\nDai che si vince!", "post_text": "Fantastica, giovane e motivata la squadra Leghista a Preganziol, nel Trevigiano.\nDai che si vince!", "shared_text": "", "time": "2014-06-05 17:51:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10392430_10152181282838155_8902968593585113834_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=CrvlCSqtO3sAQloIh-dhM0TzF7DXBHcdAEoYPMHdYCgDEVcD0pjYt24vQ&_nc_ht=scontent-cdt1-1.xx&oh=e5b7eb0f47441050b0f9b76f614d029e&oe=5E8CFB00", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152181010388155", "text": "Scritta su un muro a Montecchio Maggiore, Vicenza.\nPoveretti, una risata li seppellir\u00e0!", "post_text": "Scritta su un muro a Montecchio Maggiore, Vicenza.\nPoveretti, una risata li seppellir\u00e0!", "shared_text": "", "time": "2014-06-05 14:43:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10341637_10152181008973155_4983238458200738185_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=2ElssGufhrYAQkBa4D9mWU9T0biaPZD9dpVkPyZbkTBscV8SMKlePSZTA&_nc_ht=scontent-cdt1-1.xx&oh=b40c0b9bd97b322d978c28e9ceef22ee&oe=5E7B6ADF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152179845283155", "text": "Che spettacolo la chiesa di Montichiari!\nE anche qui c'\u00e8 una Madonnina che guarda gi\u00f9...", "post_text": "Che spettacolo la chiesa di Montichiari!\nE anche qui c'\u00e8 una Madonnina che guarda gi\u00f9...", "shared_text": "", "time": "2014-06-04 22:18:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10358875_10152179844293155_6421404492883666281_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=pr8YlGRlH2gAQnPk7MlNOH2tJU-Hh77TtULlOVvLrHgy5h1_gwLXY3PRg&_nc_ht=scontent-cdt1-1.xx&oh=5ad61cce35c774b602ba0ad6161925fa&oe=5E81F376", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152179799088155", "text": "Con gli amici di Lumezzane, sana montagna bresciana.\nE stasera a mezzanotte, in diretta su Rai Tre, ci vado con la loro felpa!", "post_text": "Con gli amici di Lumezzane, sana montagna bresciana.\nE stasera a mezzanotte, in diretta su Rai Tre, ci vado con la loro felpa!", "shared_text": "", "time": "2014-06-04 21:49:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1470140_10152179797343155_6633363282135455231_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=znZ-8nqd0VQAQnKi8_pEXO0DHja80h_KxtHuj9medstZesqnfzbekEOeQ&_nc_ht=scontent-cdt1-1.xx&oh=0afa939992800461f30cef92561246b2&oe=5E3EEA68", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152179658163155", "text": "Serata in cascina a Chiari: difendere la nostra Agricoltura, significa difendere il futuro dei nostri figli.", "post_text": "Serata in cascina a Chiari: difendere la nostra Agricoltura, significa difendere il futuro dei nostri figli.", "shared_text": "", "time": "2014-06-04 20:14:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1507017_10152179654803155_4731642782076857964_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=hsERzuJ_CZAAQkF8mSNwZodyqEtTnJSuT3cfLh2mSLPwHoOUQM6ziKEoA&_nc_ht=scontent-cdt1-1.xx&oh=caa03572fbb39d5cd437c5dec256df6a&oe=5E3F8EC3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152178073653155", "text": "E durante \"Ballar\u00f2\", un nuovo traguardo: 150.000 volte GRAZIE! Una Comunit\u00e0 che sogna, che lavora, che cresce.", "post_text": "E durante \"Ballar\u00f2\", un nuovo traguardo: 150.000 volte GRAZIE! Una Comunit\u00e0 che sogna, che lavora, che cresce.", "shared_text": "", "time": "2014-06-03 23:30:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10437439_10152178068758155_8220431403713614462_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=SE0R1MQaNd4AQmAbbRSq6GiupRAOjZRtbsQqUI24ax-Y7XaVOcLNqoqVA&_nc_ht=scontent-cdt1-1.xx&oh=6c092d7d4216b60c411c25ab73584d1d&oe=5E3F4974", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152177564143155", "text": "ANCORA UNO SFORZO per arrivare a 500.000 FIRME! SABATO 7 e DOMENICA 8 giugno gazebata conclusiva per FIRMARE I 6 REFERENDUM #vieniafirmare: CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO - PROSTITUZIONE LEGALE -\u2026 Altro ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A IMMIGRATI >> Si \u00e8 chiusa la raccolta nei municipi, ma si pu\u00f2 ancora firmare ai gazebo indicati sul sito http://www.vieniafirmare.org >> Verifica dov'\u00e8 il pi\u00f9 vicino oppure dai la tua disponibilit\u00e0 alle sezioni e alle segreterie provinciali della Lega Nord (http://www.leganord.org/index.php/il-movimento/sedi-e-sezioni) per aiutare ad aprirne uno in pi\u00f9! Info: 0266234234 - info@vieniafirmare.org >> DAI CHE CE LA FACCIAMO!!", "post_text": "ANCORA UNO SFORZO per arrivare a 500.000 FIRME! SABATO 7 e DOMENICA 8 giugno gazebata conclusiva per FIRMARE I 6 REFERENDUM #vieniafirmare: CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO - PROSTITUZIONE LEGALE -\u2026 Altro ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A IMMIGRATI >> Si \u00e8 chiusa la raccolta nei municipi, ma si pu\u00f2 ancora firmare ai gazebo indicati sul sito http://www.vieniafirmare.org >> Verifica dov'\u00e8 il pi\u00f9 vicino oppure dai la tua disponibilit\u00e0 alle sezioni e alle segreterie provinciali della Lega Nord (http://www.leganord.org/index.php/il-movimento/sedi-e-sezioni) per aiutare ad aprirne uno in pi\u00f9! Info: 0266234234 - info@vieniafirmare.org >> DAI CHE CE LA FACCIAMO!!", "shared_text": "", "time": "2014-06-03 19:30:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10157170_10152177563933155_324645240809216854_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=HWCv2N72VXcAQkv9W67dBVR_RY8HT4pJZFb3WsTc_IqY46YBXsf2wf8Ew&_nc_ht=scontent-cdt1-1.xx&oh=635aa30e4d7d5a2a4e68e192a286350b&oe=5E82BB9D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR37H-T3lnrRxRGM2mkpGpD4Z6gl2Kll5H0ynYxtRCoDXDqNdywgYFIuIVg"} +{"post_id": "10152175968528155", "text": "ULTIMO GIORNO >> Vai in municipio per firmare i referendum di libert\u00e0! CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO - PROSTITUZIONE LEGALE - ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A\u2026 Altro IMMIGRATI >> INFO: 0266234234 - info@vieniafirmare.org >> La raccolta prosegue fino all'8 giugno nei gazebo indicati sul sito: http://www.vieniafirmare.org/", "post_text": "ULTIMO GIORNO >> Vai in municipio per firmare i referendum di libert\u00e0! CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO - PROSTITUZIONE LEGALE - ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A\u2026 Altro IMMIGRATI >> INFO: 0266234234 - info@vieniafirmare.org >> La raccolta prosegue fino all'8 giugno nei gazebo indicati sul sito: http://www.vieniafirmare.org/", "shared_text": "", "time": "2014-06-03 00:01:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10343685_10152175968383155_1327139902941502586_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=u1LUXCYRFcYAQm8zcNidWpSFZUyJZ3NSHwdkWp4fOhFu51nCnCKtTJ5MQ&_nc_ht=scontent-cdt1-1.xx&oh=aeef3744d60cb0fdff649908e915757d&oe=5E7CAC43", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR1mjXe19crY980mXc84hL3emKsvrvz9j9ueEVFfoQN4gXlUkMh560fsjBk"} +{"post_id": "10152173851568155", "text": "-1 >> Domani 3 giugno ultimo giorno per firmare i referendum di libert\u00e0 nei comuni! Sei gi\u00e0 andato a firmare al gazebo o nel municipio del tuo comune? CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO -\u2026 Altro PROSTITUZIONE LEGALE - ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A IMMIGRATI >> INFO: info@vieniafirmare.org >> La raccolta prosegue fino all'8 giugno nei gazebo indicati sul sito: http://www.vieniafirmare.org/", "post_text": "-1 >> Domani 3 giugno ultimo giorno per firmare i referendum di libert\u00e0 nei comuni! Sei gi\u00e0 andato a firmare al gazebo o nel municipio del tuo comune? CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO -\u2026 Altro PROSTITUZIONE LEGALE - ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A IMMIGRATI >> INFO: info@vieniafirmare.org >> La raccolta prosegue fino all'8 giugno nei gazebo indicati sul sito: http://www.vieniafirmare.org/", "shared_text": "", "time": "2014-06-02 00:01:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10405274_10152173851433155_633600070875953409_n.png.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=FCLEJHvl2loAQlV7hxVqCH1SF0LBm3e-QoBIz4SOZ10RGxUHxO674H5Yg&_nc_ht=scontent-cdt1-1.xx&oh=47622afd6b7002743d4a2d45f5e95aa6&oe=5E45BA05", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR0EKI_blZi4TPkRWd0J4DHy6mcis_eQ3penGeM4SxTxDlVgYxlHZhL0q_4"} +{"post_id": "10152173847843155", "text": "Che queste piccole luci in mare, con le loro sorelle in cielo, vi guidino lungo il cammino.\nNotte serena Amici.", "post_text": "Che queste piccole luci in mare, con le loro sorelle in cielo, vi guidino lungo il cammino.\nNotte serena Amici.", "shared_text": "", "time": "2014-06-01 23:59:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10325678_10152173846763155_4481382549189330114_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=XPlllkoiKFgAQmgtY6bQjSjzgxzVOvLnBJZRjAVvSKeZNAXE2o_wO_n3w&_nc_ht=scontent-cdt1-1.xx&oh=d34ecc625696b04266c7151d6ca42698&oe=5E47C681", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152173648418155", "text": "C'\u00e8 poco da essere MODERATI con 200 aziende al giorno che chiudono!\nProporr\u00f2 una \"carta dei valori\", a cominciare dai temi economici, e vedremo chi ci sta.\nIntanto MASSIMO IMPEGNO per i ballottaggi e per lo\u2026 Altro sprint finale di raccolta firme per i REFERENDUM!\nE voi, siete andati a firmare? Avete portato qualche AMICO? DAI! Anche una firma pu\u00f2 fare la differenza: fino a marted\u00ec compreso in Comune, in tutta Italia, e il prossimo weekend in 1.000 gazebo!", "post_text": "C'\u00e8 poco da essere MODERATI con 200 aziende al giorno che chiudono!\nProporr\u00f2 una \"carta dei valori\", a cominciare dai temi economici, e vedremo chi ci sta.\nIntanto MASSIMO IMPEGNO per i ballottaggi e per lo\u2026 Altro sprint finale di raccolta firme per i REFERENDUM!\nE voi, siete andati a firmare? Avete portato qualche AMICO? DAI! Anche una firma pu\u00f2 fare la differenza: fino a marted\u00ec compreso in Comune, in tutta Italia, e il prossimo weekend in 1.000 gazebo!", "shared_text": "", "time": "2014-06-01 22:12:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/1888941_10152173610578155_4472062626858841365_o.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=gKM2M6By8DsAQm5od3-yecbmCa_n98YoMsXjBCcgUSplw5uu0RUMK1b7A&_nc_ht=scontent-cdt1-1.xx&oh=3383b612de6c7148ef3dd525356357c6&oe=5E7B3ACC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152172566513155", "text": "\"Deriva lepenista\"? Meglio della deriva socialista! Niente lezioni da chi sostiene un governo di SINISTRA che abolisce il reato di clandestinit\u00e0, libera 4.000 spacciatori e chiude 200 presidi di polizia!\nDalla\u2026 Altro LEGA riparte l'alternativa a Renzi: riduzione tasse, tutela dei 'piccoli', difesa delle tante identit\u00e0 - da Nord a Sud - e mobilitazione contro l'Euro.\nChe ne dite???", "post_text": "\"Deriva lepenista\"? Meglio della deriva socialista! Niente lezioni da chi sostiene un governo di SINISTRA che abolisce il reato di clandestinit\u00e0, libera 4.000 spacciatori e chiude 200 presidi di polizia!\nDalla\u2026 Altro LEGA riparte l'alternativa a Renzi: riduzione tasse, tutela dei 'piccoli', difesa delle tante identit\u00e0 - da Nord a Sud - e mobilitazione contro l'Euro.\nChe ne dite???", "shared_text": "", "time": "2014-06-01 12:23:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p235x350/10286739_10152172565488155_905168609148508286_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=nke6kM5A_BcAQlRiV8MpAACkhhdmcqK88z2h5VfDftoOzvS2K3MeTbOYg&_nc_ht=scontent-cdt1-1.xx&oh=7f3e58902f83b8429e60a03015f9213a&oe=5E80C4A3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152171909883155", "text": "-2 >> Marted\u00ec 3 giugno ultimo giorno per firmare i referendum di libert\u00e0 nei comuni! Sei gi\u00e0 andato a firmare al gazebo o nel municipio del tuo comune? CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO -\u2026 Altro PROSTITUZIONE LEGALE - ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A IMMIGRATI >> INFO: info@vieniafirmare.org >> La raccolta prosegue fino all'8 giugno nei gazebo indicati sul sito: http://www.vieniafirmare.org/", "post_text": "-2 >> Marted\u00ec 3 giugno ultimo giorno per firmare i referendum di libert\u00e0 nei comuni! Sei gi\u00e0 andato a firmare al gazebo o nel municipio del tuo comune? CANCELLIAMO LA FORNERO - CLANDESTINO \u00c8 REATO -\u2026 Altro PROSTITUZIONE LEGALE - ABOLIAMO LE PREFETTURE - LIBERT\u00c0 DI ESPRESSIONE - NO PRIVILEGI A IMMIGRATI >> INFO: info@vieniafirmare.org >> La raccolta prosegue fino all'8 giugno nei gazebo indicati sul sito: http://www.vieniafirmare.org/", "shared_text": "", "time": "2014-06-01 02:22:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10313745_10152171909718155_6079180596233377801_n.png.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=vN0pBRzaAUEAQkLxbu8mRFG2ZDDtOt71dcV0zSQhjKcd3VJnkLzFYlTyw&_nc_ht=scontent-cdt1-1.xx&oh=a7c5cd97946146d4308913ca38b32eb4&oe=5E423B7B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR3T3j9eZZrliP5HpJFyBxMGieAlPLZuceeLOfbwv4uCi5HNe8RyJ_sd99U"} +{"post_id": "10152169798373155", "text": "Ultimi 3 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFO: info@vieniafirmare.org", "post_text": "Ultimi 3 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFO: info@vieniafirmare.org", "shared_text": "", "time": "2014-05-31 03:22:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10365747_10152169798188155_4967637643933259926_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=XRJgkaK_TvYAQkKsPIXk2kCaoThri5pJbyhRBhcjBmzFh0sf5tMnnU1fw&_nc_ht=scontent-cdt1-1.xx&oh=54f91f55089bc36b2560ebde113f7ac7&oe=5E40A38A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152168758408155", "text": "ULTIMI GIORNI FIRMA REFERENDUM! E SE MANCANO I MODULI IN COMUNE? >> 1. Chiama lo 0266234234 o scrivi a info@vieniafirmare.org >> 2. D\u00ec al tuo Comune di controllare l'email PEC (moduli inviati a tutti!) oppure\u2026 Altro di SCARICARE i moduli da http://www.vieniafirmare.org >> CORRI! FIRMA IN TUTTA ITALIA IN MUNICIPIO! SOLO FINO A MARTED\u00cc 3 GIUGNO COMPRESO!", "post_text": "ULTIMI GIORNI FIRMA REFERENDUM! E SE MANCANO I MODULI IN COMUNE? >> 1. Chiama lo 0266234234 o scrivi a info@vieniafirmare.org >> 2. D\u00ec al tuo Comune di controllare l'email PEC (moduli inviati a tutti!) oppure\u2026 Altro di SCARICARE i moduli da http://www.vieniafirmare.org >> CORRI! FIRMA IN TUTTA ITALIA IN MUNICIPIO! SOLO FINO A MARTED\u00cc 3 GIUGNO COMPRESO!", "shared_text": "", "time": "2014-05-30 16:07:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10255897_10152168758168155_7693856016688638576_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=QSbI2-g8FFcAQncCIDHYnkax45OBWq5pRg4r9mS01_LK5iA95SWXcMZSQ&_nc_ht=scontent-cdt1-1.xx&oh=6908f29364a130e442417ecc07fe7615&oe=5E4D4193", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR2JOrIwCU94o_LFaAa3tkHlJQDn8xVNuyAGQd_id5aPXjQbJd-6yRhrQIc"} +{"post_id": "10152168458903155", "text": "\"Ripartire dal nostro esempio\": il mio intervento su \"Il Tempo\" di oggi. Cosa ne pensate?", "post_text": "\"Ripartire dal nostro esempio\": il mio intervento su \"Il Tempo\" di oggi. Cosa ne pensate?", "shared_text": "", "time": "2014-05-30 12:16:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10369061_10152168458803155_1170376193267314463_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=U9SPNh8KIG4AQkWHhJklEcOtYqj2FLD1JDwP8w_pq9-JWvAJ7OSNQnbfg&_nc_ht=scontent-cdt1-1.xx&oh=1bf4fc321fdee55d180675d133c897af&oe=5E3F8BF2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152168362438155", "text": "Siete d'accordo con la mia idea di Europa? Leggete l'intervista e, se la risposta sar\u00e0 affermativa, condividete e cliccate su \"Piace\" in fondo alla pagina: http://www.affaritaliani.it/affari-europei/salvini-intervista-ue-forzaitalia3005.html", "post_text": "Siete d'accordo con la mia idea di Europa? Leggete l'intervista e, se la risposta sar\u00e0 affermativa, condividete e cliccate su \"Piace\" in fondo alla pagina: http://www.affaritaliani.it/affari-europei/salvini-intervista-ue-forzaitalia3005.html", "shared_text": "", "time": "2014-05-30 10:47:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-9/cp0/e15/q65/s851x315/10341840_10152168361428155_3140244334863428350_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=T6cg8oANhckAQkjdlCFFQ58euuN5pC6g_8KEybqG_eFhPzM3f5C6ERPHA&_nc_ht=scontent-cdt1-1.xx&oh=5a60da5a4d2cc602ad154260d5c8c2e2&oe=5E801E25", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.affaritaliani.it/affari-europei/salvini-intervista-ue-forzaitalia3005.html?fbclid=IwAR0Rf7ykHNE75LzaVIQPW8KoQXGYkAPTBvuf1yXcJo4936FMboSZTITgjw0"} +{"post_id": "10152167572068155", "text": "Ultimi 4 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFOLINE: 0266234234", "post_text": "Ultimi 4 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFOLINE: 0266234234", "shared_text": "", "time": "2014-05-30 00:09:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1013217_10152167571918155_4380009291068409375_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=GrXSDRSSRQMAQnsw9QK_e4Wtyton2MP3mXST0Cb2XvzN3owqVgQM105aA&_nc_ht=scontent-cdt1-1.xx&oh=4cf20648d11a4a17296e18aa5c52dd30&oe=5E414AB4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152166541498155", "text": "Incredibile... fino a 5 mesi fa, un articolo del genere sarebbe stato impensabile!", "post_text": "Incredibile... fino a 5 mesi fa, un articolo del genere sarebbe stato impensabile!", "shared_text": "", "time": "2014-05-29 13:41:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/10365612_10152166541363155_1350349918987657491_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=YQBTAJMhKREAQmFSKNJLblC45du_Ua-vYa0RUD7dNMVD9hlFSqi3i8MpQ&_nc_ht=scontent-cdt1-1.xx&oh=69c3537d4e467b007acbb51cc02426b0&oe=5E47AFFC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152165661613155", "text": "Ultimi 5 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFOLINE: 0266234234", "post_text": "Ultimi 5 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFOLINE: 0266234234", "shared_text": "", "time": "2014-05-29 00:57:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10325163_10152165661538155_1631536410306106825_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=GBrpejkN_9AAQmGDYZzYgb9nR8mMVoeBSYJKJhQqru83gkOqoiGmf5W6w&_nc_ht=scontent-cdt1-1.xx&oh=921afb1c4222e5582fafac3e1551c66d&oe=5E8A2D0E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152164855168155", "text": "Tutto esaurito per la conferenza stampa con la Lega, Marine Le Pen, austriaci, olandesi e fiamminghi.\nMoneta unica? No, grazie.\nPensiero unico? No, grazie.\nImmigrazione incontrollata? No, grazie.\nA Bruxelles qualcuno ha paura...", "post_text": "Tutto esaurito per la conferenza stampa con la Lega, Marine Le Pen, austriaci, olandesi e fiamminghi.\nMoneta unica? No, grazie.\nPensiero unico? No, grazie.\nImmigrazione incontrollata? No, grazie.\nA Bruxelles qualcuno ha paura...", "shared_text": "", "time": "2014-05-28 16:45:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10313487_10152164851888155_4110623011042664993_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=nHMfdAlnjFkAQn1h1kP2Xf3cUZPWhH9sXJ2HhHooE9I03mzsDYdMeBa0Q&_nc_ht=scontent-cdt1-1.xx&oh=f308f93441e3df04ec4924d8f735c592&oe=5E8461FB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152163840273155", "text": "Ultimi 6 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFOLINE: 0266234234", "post_text": "Ultimi 6 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFOLINE: 0266234234", "shared_text": "", "time": "2014-05-28 02:06:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1549430_10152163840148155_1669769375402750808_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=sYVB2ifKi7UAQkTYBESuHnoCpKg8hPKwMcfnHc2HV6ZEhCCDaX9-IKgrw&_nc_ht=scontent-cdt1-1.xx&oh=c442ae30326764df5baaf9903a834b63&oe=5E7E2B9F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152162419718155", "text": "Ultimi 7 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFOLINE: 0266234234", "post_text": "Ultimi 7 giorni per firmare i referendum di libert\u00e0! Sei gi\u00e0 andato a farlo nel municipio del tuo comune? INFOLINE: 0266234234", "shared_text": "", "time": "2014-05-27 02:40:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10375894_10152162419513155_7820869171188613740_n.png.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=eJICPolIJCgAQl6NcdYNocOXYQ6BUPGRfrqfGocLwDxyAlkk486_ICYpw&_nc_ht=scontent-cdt1-1.xx&oh=b15257e30525740f1756d5319bd1cec5&oe=5E4D89DE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152161294403155", "text": "Festival del TRASH...Non ho parole.", "post_text": "Festival del TRASH...Non ho parole.", "shared_text": "", "time": "2014-05-26 22:56:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10383881_10152161294028155_8781703954996046226_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=WPPB3yM8ewcAQnmmUK4-0D6N3kEhIFJKokrWedvgyTbwxyGr3JLNMrXCA&_nc_ht=scontent-cdt1-1.xx&oh=768c268ee6b4cccf04c89bfde514ce87&oe=5E415D87", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152160051423155", "text": "", "post_text": "", "shared_text": "", "time": "2014-05-26 10:13:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10300959_10152160051318155_8647875495739350341_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=PPMerE-b_XAAQmhJk9oGagx1-CclXaBulSSNrqp9F-_vmsHoEDXDrt5kA&_nc_ht=scontent-cdt1-1.xx&oh=e2590fb1e9f75e176ea09d6b587ae395&oe=5E4E974A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152159492498155", "text": "Un brindisi per tutti i Militanti e gli elettori che ci hanno permesso di sognare! Grazie.", "post_text": "Un brindisi per tutti i Militanti e gli elettori che ci hanno permesso di sognare! Grazie.", "shared_text": "", "time": "2014-05-26 02:42:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10322827_10152159491128155_9057893467804540537_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=G2BzXJWxOkIAQmcJmlWMCMtwQkEaBhk6OEBy3JJTziPPQz8hW-eu3IqVw&_nc_ht=scontent-cdt1-1.xx&oh=4b3478cc5c8b401515792d16da893900&oe=5E8C1B14", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152159064713155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 22:15:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/10336806_10152159064693155_7346204753043489601_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=-8dJudKrLJIAQlCaxJLl5lqmHx6VbFDniunkCZH3MCZ1aCBfJEZTy7ztQ&_nc_ht=scontent-cdt1-1.xx&oh=979811f82a1d460314f5016298d83ccf&oe=5E810C18", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152159014953155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 21:45:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10177498_10152159014943155_2250133091367504582_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=_YQd8UQOZa0AQkmlJC4BCre8xFZcVcbAVP1R04N8V6Ggzk5Cc-EfCQ1zg&_nc_ht=scontent-cdt1-1.xx&oh=24b54b2fd4998039bebd4e752e95ef2a&oe=5E4C5EB4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158960243155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 21:15:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p100x100/10401420_10152158960138155_9064161391200553796_n.png.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=5DztHSa4HaYAQlvadW3QM3oNGr-4AOATSclVZhY0x2LQtK-evCCd08J8w&_nc_ht=scontent-cdt1-1.xx&oh=2347207a7402558c5e562074d8e9da83&oe=5E506FFF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158906473155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 20:45:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10386790_10152158906433155_5708648077429606401_n.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=mow536X9AwgAQm2IbCqIxQy4al_tKUPdHfKe289WA0GLimyla4DoM6bdw&_nc_ht=scontent-cdt1-1.xx&oh=779974fa3e28190f04ed17f4f648280f&oe=5E85F66F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158855023155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 20:15:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p118x118/10369232_10152158855003155_1505555263501877116_n.png.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=6iLY8fWerOkAQnfINx3ZP55p3SfZnTsGQBD5KOLMBy8QXhe7nQgGVI1CA&_nc_ht=scontent-cdt1-1.xx&oh=d821b58a13d7316ceea6b444e9a763e2&oe=5E7E9BD6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158806083155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 19:45:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/10303754_10152158806068155_2167169868152192007_n.png.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=YrIwINE7vj0AQnJvZ70n_zPRBqYllUSD1g_eSvCZSWVsYGWNNQY2XFJqQ&_nc_ht=scontent-cdt1-1.xx&oh=3bc60b7f402fb5cc67b77a0e3dced6ce&oe=5E88F555", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158679028155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 18:45:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10310555_10152158678983155_6643985467787578531_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=MDvDFD-F3KcAQl-21xW3gcFnlUKodHldguixI4qiCXDNxcB7EP0Q1EiqQ&_nc_ht=scontent-cdt1-1.xx&oh=788f860ce0d8dde1c6c37cb37cba9725&oe=5E8255D2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158616998155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 18:15:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p50x50/10336705_10152158616983155_6660132245345837348_n.png.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=gIb4yiUA5vcAQnC8HZdPqVpJdtXcYGanFN--aFMjSeK8SG6jADlmoGZsA&_nc_ht=scontent-cdt1-1.xx&oh=5ee63f7f856e2375cbfa0edd58b6ecc0&oe=5E8B8AAB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158584718155", "text": "Oggi ho aiutato a far nascere Alba, una vitellina di 30 kili.\nMa che fatica...\nP.s. Ho appena votato Lega!", "post_text": "Oggi ho aiutato a far nascere Alba, una vitellina di 30 kili.\nMa che fatica...\nP.s. Ho appena votato Lega!", "shared_text": "", "time": "2014-05-25 17:59:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10341503_10152158582733155_6549256655695102403_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Um3sZF4PDSoAQldkU5HXLAKsv08kjWu0w08RCi1CTEwmQyBENmD2c44yA&_nc_ht=scontent-cdt1-1.xx&oh=9256ae8d9b60211f8d3625a7f4819348&oe=5E4CC510", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158562438155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 17:45:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10299526_10152158562423155_4689142973027597418_n.png.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=yOyWrO1eJ8EAQn2IgkuqzNK81z5actRXtYp2DR16kfhfA7EKJG9yQTOvg&_nc_ht=scontent-cdt1-1.xx&oh=8421d32a38898a784df3495a5e90adac&oe=5E4A34BB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158502908155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 17:15:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10405562_10152158502893155_8999372479109514752_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=ZLEHisnw0HsAQlAwBFXmq7E0S7pI0A9n1mm-wNXigAEb6Wgp_CtyqTkhA&_nc_ht=scontent-cdt1-1.xx&oh=9f3b7832b8e34612fc0c55ef8216c724&oe=5E8C649E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158451558155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 16:45:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p64x64/10406745_10152158451538155_6035853141281133631_n.png.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=PDTx9jM8PdoAQmki4_sY29sf69udlAVnaDV_lraCJRX80gEQA97sO0dcQ&_nc_ht=scontent-cdt1-1.xx&oh=579f0b1b194fe626523a96f6958f5407&oe=5E84FEB1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158399618155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 16:15:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p100x100/1959355_10152158399573155_5592164272746709237_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=cYKbLXgH1AkAQkJZUfYBxXskw2_50N8LDra5R_2WVACRKia-O1l8i0JsQ&_nc_ht=scontent-cdt1-1.xx&oh=1d4292799d36330079a7e1d7d8124ba7&oe=5E79EFD8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158354163155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 15:45:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10325762_10152158354098155_2513167892019910246_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=a9Xxmkjd2UoAQm8kjdhFk_rBx4Xaf1ERHeaVI7CHbCALz20NDZlO4CdIg&_nc_ht=scontent-cdt1-1.xx&oh=13bf89d0f810d722c04557b49844f5b4&oe=5E80A86C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158313838155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 15:15:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10245404_10152158313803155_5507750841195696853_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=aDcKOGKiOQ0AQn1s0G5A4dwWMlfdOcpWFPGMfrKIo0YOhjWT0jxeLEKEw&_nc_ht=scontent-cdt1-1.xx&oh=badec11db1ab0119914008ea9e5283f2&oe=5E8B48E7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158274693155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 14:45:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10308142_10152158274683155_7085897246320645461_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=zSPbz9DoXC0AQnXXjmPpToGQWG12NcAHgFj3pnwTaSVrL1z2mSTWKHMIw&_nc_ht=scontent-cdt1-1.xx&oh=2e0d8cd2fd5ab16e8863e8199eb832bf&oe=5E3FD8D2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158249493155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 14:25:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s350x350/10366071_10152158249468155_8233016707756455230_n.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=gkRPIA3u7poAQmpd5WCTY2Yn2mh23xL7tJzWEsZNuhRvi50qdBzoLK8yQ&_nc_ht=scontent-cdt1-1.xx&oh=c873ca48d2f7dfd70956075dacdfcf02&oe=5E7B98DC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158196088155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 13:40:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p118x90/10247361_10152158196078155_3328128255231845014_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=zwTrTDaLINkAQkQbqrM2BlAN4WARD5TNxAna6bMTophTGG4ZU5Vdwl3wg&_nc_ht=scontent-cdt1-1.xx&oh=2b6c512b63cb3874ded57dca9d3bbccc&oe=5E406CFA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158164103155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 13:10:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p110x80/10245468_10152158164083155_3080266270178453317_n.png.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=kecj4iC55ZsAQk2QhQ5DHIBhSX5S8C2t0N2SRno_-sfWtBmlBnsMieylg&_nc_ht=scontent-cdt1-1.xx&oh=2305383d56ed68ee99f75f55587ee7b7&oe=5E8B2906", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158136953155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 12:40:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p110x80/10366228_10152158136943155_9147986831896809259_n.png.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=wWfholP7rIgAQlFGJIeBjItawGWjhQDdXHJtvCB030qlRBb4CS-dxlcIA&_nc_ht=scontent-cdt1-1.xx&oh=32972c798b820921f72e7384fcc34e05&oe=5E82C6CE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158103148155", "text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "#questavoltavotolega #iovotolega #ioscrivosalvini - C'\u00e8 tempo fino alle 23 di oggi! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-25 12:10:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1513168_10152158103133155_6397874473550258339_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=L43tOCLDtP0AQn1IEiXfN6HohuDAdgFV7gNl-GHfFE5lMM13VZ6rG4R3g&_nc_ht=scontent-cdt1-1.xx&oh=9dd65aebc9268a8e4ed4657e077ce460&oe=5E8354C0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152158054813155", "text": "In attesa di dare una mano a... far partorire una mucca!\nNon di finisce mai di imparare.\nCome e dove votare?\nIrregolarit\u00e0 da segnalare?\nChiama ora lo 02 66234234", "post_text": "In attesa di dare una mano a... far partorire una mucca!\nNon di finisce mai di imparare.\nCome e dove votare?\nIrregolarit\u00e0 da segnalare?\nChiama ora lo 02 66234234", "shared_text": "", "time": "2014-05-25 11:25:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10351749_10152158053963155_8571207520662808207_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=KpmvDD7PPgcAQnsOjhZfn1bnFjuhYTEJZlFa67wF_LDtbs8BTHfBOQSIA&_nc_ht=scontent-cdt1-1.xx&oh=983482dc63a083a6548c24963f368f9b&oe=5E844CA6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152157961528155", "text": "Un voto alla Lega, \u00e8 un voto per DIFENDERE la nostra Agricoltura, per mangiare e vivere sano, senza le schifezze che le multinazionali vorrebbero portare sulle nostre tavole.", "post_text": "Un voto alla Lega, \u00e8 un voto per DIFENDERE la nostra Agricoltura, per mangiare e vivere sano, senza le schifezze che le multinazionali vorrebbero portare sulle nostre tavole.", "shared_text": "", "time": "2014-05-25 10:21:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10339756_10152157959483155_5898712437015338263_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=h7RV1WEVdsQAQmMoDvOlDDE9jJYD5NmvYnhFPgqRHFlgbRgKH5ex0pLLg&_nc_ht=scontent-cdt1-1.xx&oh=3f3ff299dc55a6f6f4604686e019270d&oe=5E499E0A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152156829933155", "text": "Serafino, grazie. Il mio impegno per non deluderti, e non deludervi, sar\u00e0 MASSIMO.", "post_text": "Serafino, grazie. Il mio impegno per non deluderti, e non deludervi, sar\u00e0 MASSIMO.", "shared_text": "", "time": "2014-05-24 19:56:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10368227_10152156827788155_3950489388676006032_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=B6PWtkxW2goAQlzeV8VvE3rlQHbf2euUwjtWxfyxNdT6bNfh41DyXZFfQ&_nc_ht=scontent-cdt1-1.xx&oh=8ca4d7622259c2aad5e1738eaf962c57&oe=5E4AFC4F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152156810688155", "text": "Un promemoria, anche se so che sapete gi\u00e0 tutto!\nUnica precisazione: \"SALVINI\" lo potete scrivere, se avete voglia, in TUTTA Italia, in tutte le circoscrizioni elettorali.\n#iovotolega #ioscrivoSalvini\nSOLO DOMENICA dalle ore 7 alle ore 23\n++Tessera elettorale smarrita? Recati nel tuo comune per rifarla!++", "post_text": "Un promemoria, anche se so che sapete gi\u00e0 tutto!\nUnica precisazione: \"SALVINI\" lo potete scrivere, se avete voglia, in TUTTA Italia, in tutte le circoscrizioni elettorali.\n#iovotolega #ioscrivoSalvini\nSOLO DOMENICA dalle ore 7 alle ore 23\n++Tessera elettorale smarrita? Recati nel tuo comune per rifarla!++", "shared_text": "", "time": "2014-05-24 19:40:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10416622_10152156803583155_3176230688024971204_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=hUBTLPS6YTwAQkrgqX2KRulkwOFtcnxldCyeHtKrwYXbcFB_avss2iYOQ&_nc_ht=scontent-cdt1-1.xx&oh=76d2d5d9142614930f5847aa2660a035&oe=5E7E99E3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152156660643155", "text": "Dopo ANNI di Forza Italia, AN e PDL... #questavoltavotoLega.\nMIGLIAIA - verificabile! - di messaggi ricevuti: ne scelgo due arrivati questa mattina in chat, grazie BEATRICE, grazie GIANPAOLO!", "post_text": "Dopo ANNI di Forza Italia, AN e PDL... #questavoltavotoLega.\nMIGLIAIA - verificabile! - di messaggi ricevuti: ne scelgo due arrivati questa mattina in chat, grazie BEATRICE, grazie GIANPAOLO!", "shared_text": "", "time": "2014-05-24 17:58:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10329169_10152156660318155_3085005056257576724_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=NKhXxkgMS-kAQlvEAi-oPmyi1qUKgRGdow-2JilSw01fiNlUX0hulc6NQ&_nc_ht=scontent-cdt1-1.xx&oh=05965f765f17f26bb3b7611562c0b835&oe=5E7E6011", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152156319283155", "text": "Che chat! Siete fantastici! Migliaia di \"Mi piace\", domande e commenti: GRAZIE! E per domani: BUON VOTO! Libert\u00e0 \u00e8 Partecipazione.", "post_text": "Che chat! Siete fantastici! Migliaia di \"Mi piace\", domande e commenti: GRAZIE! E per domani: BUON VOTO! Libert\u00e0 \u00e8 Partecipazione.", "shared_text": "", "time": "2014-05-24 14:02:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152156319283155&id=252306033154", "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2014-05-23 20:40:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10380991_10152155072748155_7534402969157189950_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=vNG7OCujAHgAQmJs0WcVmbxQqCQWUqXe-FoYLMxetbWS02TY7gYg1D-QQ&_nc_ht=scontent-cdt1-1.xx&oh=e9b379ad5836ffb25925cf386142c584&oe=5E41C91D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152154641538155", "text": "Ho voluto chiudere la campagna elettorale della Lega davanti al Dormitorio pubblico di viale Ortles, a Milano.\nL'anno scorso 1.500 ospiti, di cui 400 cittadini italiani: genitori separati, disoccupati,\u2026 Altro pensionati, esodati.\nRIDARE LAVORO E SPERANZA \u00e8 il mio obiettivo.\nSe ci date una mano, votando Lega domenica 25 maggio, non rimarr\u00e0 solo un sogno.\nGRAZIE DI CUORE amici, ad ognuno di voi.", "post_text": "Ho voluto chiudere la campagna elettorale della Lega davanti al Dormitorio pubblico di viale Ortles, a Milano.\nL'anno scorso 1.500 ospiti, di cui 400 cittadini italiani: genitori separati, disoccupati,\u2026 Altro pensionati, esodati.\nRIDARE LAVORO E SPERANZA \u00e8 il mio obiettivo.\nSe ci date una mano, votando Lega domenica 25 maggio, non rimarr\u00e0 solo un sogno.\nGRAZIE DI CUORE amici, ad ognuno di voi.", "shared_text": "", "time": "2014-05-23 15:57:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10003966_10152154636853155_5157473545711790904_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=Y45CxCSXMvQAQmn5IYzAdn7U-xQfZbQN6HnJXVbQm8TTmhtot4oIhuD1A&_nc_ht=scontent-cdt1-1.xx&oh=b634f2bbb209ee628565e3452f2f6948&oe=5E80EF3E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152154492188155", "text": "Tra poco, alle 15, al DORMITORIO pubblico di viale Ortles contro l'UNIONE SOVIETICA EUROPEA che AFFAMA LA NOSTRA GENTE e, dall'altra parte, SPALANCA le porte all'INVASIONE dei CLANDESTINI!\nCari burocrati di\u2026 Altro Bruxelles, cara Angela MERKEL, preparatevi a sloggiare perch\u00e9 saranno i Popoli europei a darvi DOMENICA il FOGLIO DI VIA!\n[>>> Diretta streaming su: www.matteosalvini.com]", "post_text": "Tra poco, alle 15, al DORMITORIO pubblico di viale Ortles contro l'UNIONE SOVIETICA EUROPEA che AFFAMA LA NOSTRA GENTE e, dall'altra parte, SPALANCA le porte all'INVASIONE dei CLANDESTINI!\nCari burocrati di\u2026 Altro Bruxelles, cara Angela MERKEL, preparatevi a sloggiare perch\u00e9 saranno i Popoli europei a darvi DOMENICA il FOGLIO DI VIA!\n[>>> Diretta streaming su: www.matteosalvini.com]", "shared_text": "", "time": "2014-05-23 14:11:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10291143_10152154488098155_4774019384364713377_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=RwWSf1DtqlAAQlYkV2KZzGP-_bbg5jl9MZ3zliq26qQhyN-IHuYjtT5WQ&_nc_ht=scontent-cdt1-1.xx&oh=59ca865c5d6e91122394759b9bf88043&oe=5E438E49", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.matteosalvini.com/?fbclid=IwAR2jpb89cEt2dtw0iGtbkXvHJgiIaZWnWo7X7scgLZVofyLFIzr68HrP32E"} +{"post_id": "10152154309938155", "text": "Tra 24 ore, sabato alle 11, vi aspetto qui per una nuova iniziativa realizzata con il supporto tecnico di Facebook Italia: per un'oretta cercher\u00f2 di rispondere a tutte le vostre domande!", "post_text": "Tra 24 ore, sabato alle 11, vi aspetto qui per una nuova iniziativa realizzata con il supporto tecnico di Facebook Italia: per un'oretta cercher\u00f2 di rispondere a tutte le vostre domande!", "shared_text": "", "time": "2014-05-23 11:08:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10377251_10152154309373155_5259618712845685400_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=iZin5MBGT04AQmSWvkZZxvFVoQf_vzUEJQVUz6QFt4SeJ6ExUklKZO5oA&_nc_ht=scontent-cdt1-1.xx&oh=ead5f4acc513fc688b32c0f00c30aa81&oe=5E3FDED7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152154267278155", "text": "Oggi lunga intervista su \"Libero\", dove parlo di tutto, ma proprio di tutto.\nChe ne dite? Leggete e, se vi piace, diffondete!\nP.S.: MENO DUE! Siete pronti?", "post_text": "Oggi lunga intervista su \"Libero\", dove parlo di tutto, ma proprio di tutto.\nChe ne dite? Leggete e, se vi piace, diffondete!\nP.S.: MENO DUE! Siete pronti?", "shared_text": "", "time": "2014-05-23 10:18:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s526x296/10339523_10152154267118155_1589775896387481015_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=crecZJJ_3k4AQnxYvTbEWt2HKfFKQyITcNwehSKSOPOV66qlJShukrhfg&_nc_ht=scontent-cdt1-1.xx&oh=85be959421a40f27e14ee3d71f4530e7&oe=5E81CE22", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152154135688155", "text": "Pronto per la diretta su AGOR\u00c0, Rai Tre.\nUltime ore e poi si vota, dai che LA LEGA VINCEEEEE", "post_text": "Pronto per la diretta su AGOR\u00c0, Rai Tre.\nUltime ore e poi si vota, dai che LA LEGA VINCEEEEE", "shared_text": "", "time": "2014-05-23 08:04:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10380917_10152154135223155_8185582425305216375_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=tvmNRacYYfEAQl1re0SqtSKXkoOpZK7JS1BcjpfuTrXZIgeZPUY-BRcug&_nc_ht=scontent-cdt1-1.xx&oh=2379c0d0560dbe3a0db13a823cdaf80d&oe=5E4D2B35", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152153394198155", "text": "MARIO: votato a destra per 25 ANNI, poi M5S, ora LEGA!\nGUIDO, NON votava da OLTRE 20 anni, aveva buttato scheda elettorale, stamattina \u00e8 andato a rifarla, \"indovinate perch\u00e9?\"\nChe dite, tutti questi fantastici\u2026 Altro messaggi faranno intristire quel FENOMENO di ALFANO???\n[Evento Facebook Domenica voto Lega: https://www.facebook.com/events/547657418684502/]", "post_text": "MARIO: votato a destra per 25 ANNI, poi M5S, ora LEGA!\nGUIDO, NON votava da OLTRE 20 anni, aveva buttato scheda elettorale, stamattina \u00e8 andato a rifarla, \"indovinate perch\u00e9?\"\nChe dite, tutti questi fantastici\u2026 Altro messaggi faranno intristire quel FENOMENO di ALFANO???\n[Evento Facebook Domenica voto Lega: https://www.facebook.com/events/547657418684502/]", "shared_text": "", "time": "2014-05-23 00:05:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10374909_10152153391073155_3183180809078076745_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=1Hc3gevwyqoAQmV5dGOSfDO74Qzh9R1rAN29l0wIvzLXr_8m0zbqR6zCQ&_nc_ht=scontent-cdt1-1.xx&oh=e0497ab7baef8647d02a9171f6bc22e3&oe=5E7F5116", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152152706288155", "text": "Prato, 160.000 abitanti di cui pi\u00f9 di 50.000 immigrati.\nQuesta non \u00e8 \"accoglienza\", questo \u00e8 un suicidio.\nLega, unica Opposizione.", "post_text": "Prato, 160.000 abitanti di cui pi\u00f9 di 50.000 immigrati.\nQuesta non \u00e8 \"accoglienza\", questo \u00e8 un suicidio.\nLega, unica Opposizione.", "shared_text": "", "time": "2014-05-22 17:22:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10363923_10152152704928155_5691355134056082393_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=7SM9SFnD6zAAQkysUMJGr8dL0uDgWwPtv36FeR5VXVbN-3U7-RDsgjxdg&_nc_ht=scontent-cdt1-1.xx&oh=67a1f8a3b10c4f3f39d34e8a840923cb&oe=5E4B3173", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152152037658155", "text": "Amici, siamo a circa 400.000 FIRME raccolte per cancellare le leggi Fornero e Merlin, ci siamo quasi!\nAbbiamo pochi giorni per arrivare a 500.000.\nPOTETE FIRMARE IN TUTTI I COMUNI ITALIANI.\nChiamate lo 02 66234234 per informazioni.\nE in ogni caso, GRAZIE a tutti voi!", "post_text": "Amici, siamo a circa 400.000 FIRME raccolte per cancellare le leggi Fornero e Merlin, ci siamo quasi!\nAbbiamo pochi giorni per arrivare a 500.000.\nPOTETE FIRMARE IN TUTTI I COMUNI ITALIANI.\nChiamate lo 02 66234234 per informazioni.\nE in ogni caso, GRAZIE a tutti voi!", "shared_text": "", "time": "2014-05-22 10:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10302120_10152152037258155_6657227868390587612_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=WfGsZ3crYSAAQlsWTiI_a6FzPQUemnTGasrOxbFi86oFRxGzxFWY7Cr9g&_nc_ht=scontent-cdt1-1.xx&oh=8ad0f4dc82af2cd821c5e3ac7d0bbc8c&oe=5E4EF2EE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152150421758155", "text": "Ma... che fine ha fatto Gianfranco Fini???\nLui sicuramente domenica NON voter\u00e0 per la Lega. E tu?", "post_text": "Ma... che fine ha fatto Gianfranco Fini???\nLui sicuramente domenica NON voter\u00e0 per la Lega. E tu?", "shared_text": "", "time": "2014-05-21 17:56:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10376849_10152150421168155_838675043069925619_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=_D8l2Tf4M1cAQkMqdxenU2aWAjHi-ywCsFW2NRPi-5X88RiDE7FfhJVWA&_nc_ht=scontent-cdt1-1.xx&oh=0b6c97336605961e9d5ba0b92ca457e2&oe=5E7CB7CD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152149813373155", "text": "Renzi, Grillo, Berlusconi... se voti gli altri, voti LEI! Domenica non sar\u00e0 solo un voto, ma un REFERENDUM tra PASSATO e FUTURO. Fuori dall'EURO, subito!", "post_text": "Renzi, Grillo, Berlusconi... se voti gli altri, voti LEI! Domenica non sar\u00e0 solo un voto, ma un REFERENDUM tra PASSATO e FUTURO. Fuori dall'EURO, subito!", "shared_text": "", "time": "2014-05-21 15:40:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10374884_10152150233058155_8841461520685973072_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=phBWMxyzLUoAQlw-dFE8aXd5BHh0kPQ7jOKc3CH9VAJrB4yt7E0FzU95Q&_nc_ht=scontent-cdt1-1.xx&oh=78ec4fc93d4bc84d14a65e827f0eee01&oe=5E7E532C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152149975948155", "text": "Mercato di Genova.\nIn coda da stamattina per firmare i 6 Referendum della Lega!\nLa FORNERO? \"Cancelliamo lei e la sua legge\" dicono le signore in fila...\nDai, dobbiamo arrivare a 500.000 firme!\nAiutaci, chiama ora lo 02 66234234.", "post_text": "Mercato di Genova.\nIn coda da stamattina per firmare i 6 Referendum della Lega!\nLa FORNERO? \"Cancelliamo lei e la sua legge\" dicono le signore in fila...\nDai, dobbiamo arrivare a 500.000 firme!\nAiutaci, chiama ora lo 02 66234234.", "shared_text": "", "time": "2014-05-21 11:44:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10377180_10152149974998155_3969749445422667863_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=2WnXUtR2skgAQn06vXvBsebp_ZaYucKCTCqRYms0UvHmUNjAF-5v4xAuQ&_nc_ht=scontent-cdt1-1.xx&oh=bd23816a45bec76c57893439403798ce&oe=5E8CC175", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152149898013155", "text": "Nella splendida Genova, a Cornigliano, decine di Rom abusivi, con bimbi in mezzo a una strada...\nEcco la Sinistra che \"integra\", anzi che disintegra.", "post_text": "Nella splendida Genova, a Cornigliano, decine di Rom abusivi, con bimbi in mezzo a una strada...\nEcco la Sinistra che \"integra\", anzi che disintegra.", "shared_text": "", "time": "2014-05-21 10:22:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10298665_10152149895363155_1779013286831461027_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=2myYkhZ62XMAQlEG8VVlGd3fEbcoCsE956GoXDF48z-4yDbM6UGo3C_sQ&_nc_ht=scontent-cdt1-1.xx&oh=ec24e9efe8bfa265f9e19008de0f8875&oe=5E4E26AD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2014-05-21 00:02:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10341567_10152149813073155_2673911556943755718_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=5wC5g6_THMAAQmJDmTJ0Ut4_TxZ6kDhpWzB0OKcThEGRKdu_dJWc-4jTg&_nc_ht=scontent-cdt1-1.xx&oh=e148a07f5ca8d5704bba5ffad689fa3e&oe=5E8717BB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152149182483155", "text": "Spettacolare il Fast Food Piemontese!\nCarne cruda, patate e birra artigianale.\nE da mezzanotte sar\u00f2 in diretta su Rai Tre: c'\u00e8 qualche nottambulo sveglio davanti al video?", "post_text": "Spettacolare il Fast Food Piemontese!\nCarne cruda, patate e birra artigianale.\nE da mezzanotte sar\u00f2 in diretta su Rai Tre: c'\u00e8 qualche nottambulo sveglio davanti al video?", "shared_text": "", "time": "2014-05-20 23:41:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10366012_10152149181903155_3157892656971394917_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=mAW5QkC3losAQmQiCa2xrQRVOufk2LgWerp64xogcg63kLu9N4GrOUOKQ&_nc_ht=scontent-cdt1-1.xx&oh=33f185ea1745a1ede7de6a617be57abc&oe=5E87992B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152148849913155", "text": "Da NAPOLI, ex CINQUESTELLE, altri due voti per la LEGA. Le buone idee sono contagiose, sempre, da Nord a Sud.\nE voi, da dove scrivete? Facciamo un \"sondaggio\" cos\u00ec, al volo!", "post_text": "Da NAPOLI, ex CINQUESTELLE, altri due voti per la LEGA. Le buone idee sono contagiose, sempre, da Nord a Sud.\nE voi, da dove scrivete? Facciamo un \"sondaggio\" cos\u00ec, al volo!", "shared_text": "", "time": "2014-05-20 20:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10364147_10152148843808155_4525265996785290887_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=EFBhSaOF3XsAQmAxRZwmkPdMyph-y76cLWKZL_WzWQoiqXC2J5BPVubsw&_nc_ht=scontent-cdt1-1.xx&oh=41d844c0b93690a64756cf721eee6c30&oe=5E8CA91A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152148725753155", "text": "E il Comune di Torino ha il coraggio di mettere i cartelli NO CAMPING all'ingresso del campo Rom abusivo...\nMa chi lo vota il PD???", "post_text": "E il Comune di Torino ha il coraggio di mettere i cartelli NO CAMPING all'ingresso del campo Rom abusivo...\nMa chi lo vota il PD???", "shared_text": "", "time": "2014-05-20 19:00:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10402833_10152148723018155_5379822579426096917_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=qGWinnqOfvwAQmfVW4VOw6fNrlpe9s59dPxH209LH_xPAFVjQuyOTFX9g&_nc_ht=scontent-cdt1-1.xx&oh=11f1e31fa6acd70b267dccef8b9f04b2&oe=5E82F65E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152148722793155", "text": "Grandi ragazzi, la nostra Comunit\u00e0 domina la Rete!\nhttp://seigradi.corriere.it/2014/05/20/europee-e-salvini-il-piu-forte-sul-web/", "post_text": "Grandi ragazzi, la nostra Comunit\u00e0 domina la Rete!\nhttp://seigradi.corriere.it/2014/05/20/europee-e-salvini-il-piu-forte-sul-web/", "shared_text": "", "time": "2014-05-20 18:58:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/1801165_10152148722693155_2668081725726269229_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=xpMcPrhiC0AAQnwEoWP53rYR-8Usi46_58Qbatxa7JEAOJg7yBxwGHF7Q&_nc_ht=scontent-cdt1-1.xx&oh=ff1b47beb338751a57b912fa39e02c51&oe=5E7DD588", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://seigradi.corriere.it/2014/05/20/europee-e-salvini-il-piu-forte-sul-web/?fbclid=IwAR02VmLNrRhBbls-ABjyau17yuCfaZa9KThfvJlTVv-4mh4ownBU2Ina23A"} +{"post_id": "10152148685178155", "text": "Renzi va sempre a spasso nei Centri Storici, ma la vita vera purtroppo \u00e8 anche questa.\nDa pap\u00e0 dico che questa non \u00e8 \"integrazione\", questo \u00e8 uno schifo.\nSgomberare, subito!", "post_text": "Renzi va sempre a spasso nei Centri Storici, ma la vita vera purtroppo \u00e8 anche questa.\nDa pap\u00e0 dico che questa non \u00e8 \"integrazione\", questo \u00e8 uno schifo.\nSgomberare, subito!", "shared_text": "", "time": "2014-05-20 18:33:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10363955_10152148683163155_6482866874113036748_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=bmLYQBoUzw0AQnC5Y8zOd9RDlIjwrI5sF-jlilInm-YHZDxmc58MMOpuQ&_nc_ht=scontent-cdt1-1.xx&oh=dfd6e9e381d4d83e58ea193fee9af681&oe=5E4D29B7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152148664998155", "text": "Far vivere centinaia di bambini in mezzo allo schifo, non \u00e8 \"cultura alternativa\" ma follia.\nDov'\u00e8 il Tribunale dei Minori?\nDov'\u00e8 lo Stato???", "post_text": "Far vivere centinaia di bambini in mezzo allo schifo, non \u00e8 \"cultura alternativa\" ma follia.\nDov'\u00e8 il Tribunale dei Minori?\nDov'\u00e8 lo Stato???", "shared_text": "", "time": "2014-05-20 18:27:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10404401_10152148663308155_7712248782104466665_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Bvquuek9N8MAQk3uEr_9cjEgbndEKQFZThzbMHNro3ng315ydtoU9AofA&_nc_ht=scontent-cdt1-1.xx&oh=d182507d802e771afc43c0afaf782622&oe=5E7EEAB7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152148652358155", "text": "1.000 Rom accampati nell'immondizia.\nFortuna che l'Ipad non trasmette gli odori.", "post_text": "1.000 Rom accampati nell'immondizia.\nFortuna che l'Ipad non trasmette gli odori.", "shared_text": "", "time": "2014-05-20 18:20:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1010709_10152148650548155_4044307608795372024_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=r1qW7UjlvRMAQkEY1pWJ2Twe65qLBAuumz-UR6qTM_xBGWy9u3IcDvqqg&_nc_ht=scontent-cdt1-1.xx&oh=c5a7c371bb54ff6f345201210b537afe&oe=5E4AEB14", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152148642238155", "text": "Benvenuti nella Torino di Fassino e Chiamparino...\nBenvenuti al mega campo Rom abusivo del Lungo Stura.", "post_text": "Benvenuti nella Torino di Fassino e Chiamparino...\nBenvenuti al mega campo Rom abusivo del Lungo Stura.", "shared_text": "", "time": "2014-05-20 18:13:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10376757_10152148642188155_4586492981091009611_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=TaZGu5gLgxgAQnCQ2WLL9nJRaN1Ox5sccIv_RxSaC5HkaKgn-Z7RHWQjA&_nc_ht=scontent-cdt1-1.xx&oh=043cef419cba437ae0369bc96bb8f835&oe=5E8A8F72", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152148175448155", "text": "Mancano CINQUE giorni al voto di domenica (dalle 7 alle 23, non si vota il luned\u00ec).\nSu Internet il silenzio elettorale NON VALE, dunque possiamo agire fino a domenica compresa!\nStiamo dialogando con Facebook\u2026 Altro Italia per riattivare l'applicazione 'portavoce' sospesa, ma vi ricordo che andiamo forte anche su TWITTER.\nSe vi collegate a questo indirizzo: www.matteosalvini.com/seguimi potete aiutarmi, da qui a domenica, a potenziare il nostro messaggio! Qui ci sono anche le istruzioni.\nNon avete Twitter? Anche io preferisco Facebook ma \u00e8 QUESTO il momento buono per iscriversi anche l\u00ec.\nGrazieeee!", "post_text": "Mancano CINQUE giorni al voto di domenica (dalle 7 alle 23, non si vota il luned\u00ec).\nSu Internet il silenzio elettorale NON VALE, dunque possiamo agire fino a domenica compresa!\nStiamo dialogando con Facebook\u2026 Altro Italia per riattivare l'applicazione 'portavoce' sospesa, ma vi ricordo che andiamo forte anche su TWITTER.\nSe vi collegate a questo indirizzo: www.matteosalvini.com/seguimi potete aiutarmi, da qui a domenica, a potenziare il nostro messaggio! Qui ci sono anche le istruzioni.\nNon avete Twitter? Anche io preferisco Facebook ma \u00e8 QUESTO il momento buono per iscriversi anche l\u00ec.\nGrazieeee!", "shared_text": "", "time": "2014-05-20 13:31:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10380643_10152148170498155_6034628855321752259_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=6x76vRxmF9YAQkjkD9meuR0J7tnoBuv_SMDakB6DTsZ0b_-ffaDOh2-8w&_nc_ht=scontent-cdt1-1.xx&oh=4017c7df8e2c47bda6532e168dee9ad5&oe=5E7D3A5C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.matteosalvini.com/seguimi?fbclid=IwAR2JvF-LMHe12LRwhbQwlfn5XsGtLfzLc_u3uka92608YRwuGGxExpCDYks"} +{"post_id": "10152146860183155", "text": "AMICI, qualche problema con la applicazione Facebook per condividere i miei post, al momento SOSPESA (stiamo chiarendo l'accaduto con gli amici di FACEBOOK ITALIA, che ringrazio per la disponibilit\u00e0), ma vi\u2026 Altro ricordo che \u00e8 attiva e operativa anche la app per farmi da portavoce su TWITTER!\nSe avete voglia, da qui a domenica prossima, possiamo AUMENTARE la forza del nostro messaggio in Rete.\nBasta avere un account Twitter, andare a questo link: www.matteosalvini.com/seguimi e seguire le istruzioni di questa infografica, dovrebbe essere abbastanza semplice.\nE... GRAZIE per tutto quello che fate!", "post_text": "AMICI, qualche problema con la applicazione Facebook per condividere i miei post, al momento SOSPESA (stiamo chiarendo l'accaduto con gli amici di FACEBOOK ITALIA, che ringrazio per la disponibilit\u00e0), ma vi\u2026 Altro ricordo che \u00e8 attiva e operativa anche la app per farmi da portavoce su TWITTER!\nSe avete voglia, da qui a domenica prossima, possiamo AUMENTARE la forza del nostro messaggio in Rete.\nBasta avere un account Twitter, andare a questo link: www.matteosalvini.com/seguimi e seguire le istruzioni di questa infografica, dovrebbe essere abbastanza semplice.\nE... GRAZIE per tutto quello che fate!", "shared_text": "", "time": "2014-05-19 22:07:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10275606_10152146855023155_240271116947814434_o.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=JQy9gRi3UHMAQkJc7ozMHU1k3ZVpMtV811TOgBmX2aaDw1WyoR0kWcoxw&_nc_ht=scontent-cdt1-1.xx&oh=fd8121085669c5d9de5cb024f628bc16&oe=5E4FFEDE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.matteosalvini.com/seguimi?fbclid=IwAR2HmDFQ6lGkBm25aM7PEvM0w9Bi8-nf1sWdWbKz0p7l-uc65Hov4Mx1cBQ"} +{"post_id": "10152146436758155", "text": "Con la maglietta BASTA EURO, pronto alla diretta su Canale 5", "post_text": "Con la maglietta BASTA EURO, pronto alla diretta su Canale 5", "shared_text": "", "time": "2014-05-19 18:00:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10256477_10152146436143155_3464357543508118218_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=pWphND7F7MwAQnEhb6PxxYXXYpK2xOLCSqFFn3VcgWT_9OgZdoHzuwljA&_nc_ht=scontent-cdt1-1.xx&oh=8014f654c8faf2ba519b7668f0f139ce&oe=5E7B26FA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152146259158155", "text": "Presidio davanti a CASA FORNERO a San Carlo Canavese.\nLei non c'era, altrimenti l'avremmo fatta piangere!!!\nAvete gi\u00e0 firmato nel vostro Comune il Referendum per cancellare la sua maledetta Legge?", "post_text": "Presidio davanti a CASA FORNERO a San Carlo Canavese.\nLei non c'era, altrimenti l'avremmo fatta piangere!!!\nAvete gi\u00e0 firmato nel vostro Comune il Referendum per cancellare la sua maledetta Legge?", "shared_text": "", "time": "2014-05-19 16:07:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10256260_10152146257838155_3659097094081635442_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=VUrZIVzILn0AQlq2h2rlLdFSt4hRBqpdUjtpzrJUNfLQav1KcW70hP4Zw&_nc_ht=scontent-cdt1-1.xx&oh=de8c9f18cbc5b8f45960332dde699b2a&oe=5E492C85", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152145959778155", "text": "Ma QUANTI SIETE dalla SARDEGNA???\n#questavoltavotolega", "post_text": "Ma QUANTI SIETE dalla SARDEGNA???\n#questavoltavotolega", "shared_text": "", "time": "2014-05-19 12:29:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/1504396_10152145958923155_8292685614328951431_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=Tg6aoIlojdsAQlhjdqX7IGpWkYf8mVfZCGqNYd2l-lpudRDGOZoUbV02A&_nc_ht=scontent-cdt1-1.xx&oh=a27a8ea4d8964328a707481243e7da83&oe=5E504ACA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152144526253155", "text": "Messaggio appena ricevuto. Ex \"soldatessa\" di Berlusconi, da ROMA, delusa perch\u00e9 \"Silvio\" non ha detto nulla su USCITA dall'EURO e MARE NOSTRUM. Ora vota Lega!\nGrazie, Annamaria!\nMa ce ne sono davvero cos\u00ec tanti di delusi da \"Silvio\"?", "post_text": "Messaggio appena ricevuto. Ex \"soldatessa\" di Berlusconi, da ROMA, delusa perch\u00e9 \"Silvio\" non ha detto nulla su USCITA dall'EURO e MARE NOSTRUM. Ora vota Lega!\nGrazie, Annamaria!\nMa ce ne sono davvero cos\u00ec tanti di delusi da \"Silvio\"?", "shared_text": "", "time": "2014-05-18 18:50:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10350540_10152144522663155_8973620403416219897_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=1CYZu338miEAQniFtlyLh3rhi-nO897iokrfv_2zpWNICmzNfp-KiPlMQ&_nc_ht=scontent-cdt1-1.xx&oh=ae2dfac0279efb1af789c54579921ece&oe=5E4DA25C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152144401123155", "text": "Attenzione: c'\u00e8 un POPULISTA sul Lago Maggiore!", "post_text": "Attenzione: c'\u00e8 un POPULISTA sul Lago Maggiore!", "shared_text": "", "time": "2014-05-18 17:37:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1238262_10152144400463155_1943206643258772503_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=MHE2TGyKIQsAQlclDuwakI26V-TXMGiotz0-iqpzEXhRFfZI1qkGWEecQ&_nc_ht=scontent-cdt1-1.xx&oh=d117f4e9b4e8e3263d2801d99443e6db&oe=5E405DCC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152144335788155", "text": "AMICI, grazie! Mi avete inviato MIGLIAIA di commenti di sostegno sul tema \"nuovi LEGHISTI\", cos\u00ec ho fatto fare qualche cartello per valorizzarli, che ne dite?\nQuesti dalla SICILIA!\nE voi ne conoscete altri che STAVOLTA votano LEGA?\nDAI che domenica prossima facciamo una bella SORPRESA a tanti!", "post_text": "AMICI, grazie! Mi avete inviato MIGLIAIA di commenti di sostegno sul tema \"nuovi LEGHISTI\", cos\u00ec ho fatto fare qualche cartello per valorizzarli, che ne dite?\nQuesti dalla SICILIA!\nE voi ne conoscete altri che STAVOLTA votano LEGA?\nDAI che domenica prossima facciamo una bella SORPRESA a tanti!", "shared_text": "", "time": "2014-05-18 16:50:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10403911_10152144335598155_5528817152493147076_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=8nLpVOwa5gkAQmNMHJoSa7VsVoKR2aYoHEkuV3nkOVFPM7-Xtc3K_hUkg&_nc_ht=scontent-cdt1-1.xx&oh=97fbde76cf2e5452ea39de243c53af7f&oe=5E41B0D8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152144049133155", "text": "Le battaglie contro Euro e immigrazione clandestina non hanno colore!", "post_text": "Le battaglie contro Euro e immigrazione clandestina non hanno colore!", "shared_text": "", "time": "2014-05-18 13:40:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10363320_10152144049033155_1472615580170747417_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=dAbEyROsW1wAQl7xRTVfUsIdA7b0U1MJirD8aTqFU69uYna8rtq37Dw4A&_nc_ht=scontent-cdt1-1.xx&oh=1fddd56960ecf30f411435d39ea194d3&oe=5E7FBC7D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152144026438155", "text": "Oggi pranzo dietetico...\nUn mare di CASONCELLI con burro e pancettaaa!!!", "post_text": "Oggi pranzo dietetico...\nUn mare di CASONCELLI con burro e pancettaaa!!!", "shared_text": "", "time": "2014-05-18 13:19:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10338752_10152144026123155_7628703370520916417_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=p9u_4zptyaEAQlO_kZnHh-eU3fMKMO-n6LvqNEdU4DwKRd3qXxKlQ3uew&_nc_ht=scontent-cdt1-1.xx&oh=956952aa2f33314c472306b6212dee38&oe=5E402299", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152143879398155", "text": "Toh, guarda chi ho incontrato al mercato di Mariano Comense!\nChi vi ricorda???", "post_text": "Toh, guarda chi ho incontrato al mercato di Mariano Comense!\nChi vi ricorda???", "shared_text": "", "time": "2014-05-18 11:04:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10372641_10152143879013155_781774915849506417_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=QwsjFZe_NvoAQkRdiiyPcK_H0Qq3Ql8gzLMn61lWXAEf6aI089vdeWw5Q&_nc_ht=scontent-cdt1-1.xx&oh=8a925925ef1e2bae6657c44a01f8cdff&oe=5E458F72", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152143803103155", "text": "Buongiorno mondo!\nOggi il Camper parte da Canzo, fra le montagne comasche.\nPoi passaggi lombardi a Cant\u00f9, Mariano Comense, Bergamo (ore 11), Bonate Sopra, Marcallo con Casone, Sesto Calende, Varese (ore 18) e Caronno Varesino.\nDai che LA LEGA CORRE!", "post_text": "Buongiorno mondo!\nOggi il Camper parte da Canzo, fra le montagne comasche.\nPoi passaggi lombardi a Cant\u00f9, Mariano Comense, Bergamo (ore 11), Bonate Sopra, Marcallo con Casone, Sesto Calende, Varese (ore 18) e Caronno Varesino.\nDai che LA LEGA CORRE!", "shared_text": "", "time": "2014-05-18 09:39:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10296874_10152143802843155_8830935921741972706_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=h_f3VBfcpycAQn2aOVt3GwfUNq8GT2TbfiZbzHKvHUumh_rd39bZX7_7A&_nc_ht=scontent-cdt1-1.xx&oh=bd005dd9338a2c146f790b5340ae1908&oe=5E4F0BDA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152142507618155", "text": "A Bologna davanti alle Sette Chiese (monumento stupendo, da visitare!) col signor IVO, un giovane leghista di 95 ANNI!\nL'entusiasmo non ha et\u00e0!", "post_text": "A Bologna davanti alle Sette Chiese (monumento stupendo, da visitare!) col signor IVO, un giovane leghista di 95 ANNI!\nL'entusiasmo non ha et\u00e0!", "shared_text": "", "time": "2014-05-17 20:45:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10390345_10152142505443155_411954813041266900_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=tLLVs9y5pQEAQlrW5QGAA0v9iq9VbLUkXQF96gyFqU2t-LSOY_Vq62_BA&_nc_ht=scontent-cdt1-1.xx&oh=648b827b3f6a1a44e7e6a6c635db5f5b&oe=5E80FE59", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152141752423155", "text": "Se vinciamo mi spoglio!", "post_text": "Se vinciamo mi spoglio!", "shared_text": "", "time": "2014-05-17 13:01:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s526x296/10348912_10152141749613155_6531578131919399084_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=AevkAEuqYtUAQkBPe70DEVnmRIv1xEsZEMyC2cYIABh2DyjLQ4tDNRbYA&_nc_ht=scontent-cdt1-1.xx&oh=57c17789c9c0416f4eb9814a03caabcf&oe=5E86AB15", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152141656698155", "text": "Villa Aldini, da Napoleone ai clandestini.\nQuesta \u00e8 la sinistra, a Bologna e in Italia...", "post_text": "Villa Aldini, da Napoleone ai clandestini.\nQuesta \u00e8 la sinistra, a Bologna e in Italia...", "shared_text": "", "time": "2014-05-17 11:15:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10336858_10152141655503155_584770600891416730_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=4ngCoiD5d5QAQne8m3bhLp6Qj5619toDFYjF8Vo_fS5dHSFxlHl1MWwug&_nc_ht=scontent-cdt1-1.xx&oh=4d205a1867b1aba726610eaca4c734d1&oe=5E8181B7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152141649078155", "text": "Villa Aldini, sui colli di Bologna.\nQuesta \u00e8 la splendida vista che si godono i 70 immigrati ospiti della villa, ovviamente a spese degli italiani.\nMica male, vero?", "post_text": "Villa Aldini, sui colli di Bologna.\nQuesta \u00e8 la splendida vista che si godono i 70 immigrati ospiti della villa, ovviamente a spese degli italiani.\nMica male, vero?", "shared_text": "", "time": "2014-05-17 11:07:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10152565_10152141647893155_7345861155966732155_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=MKCVxvHYqUUAQk6yJqeb-Mgig7syw2Gg8lFuw5NgeZaTP6lw6iuXpK8_Q&_nc_ht=scontent-cdt1-1.xx&oh=edb2f0a1dfef2ebf736f54747971b1ed&oe=5E4E0660", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152140154668155", "text": "16/05/2014: Alla Camera PD, SEL, Scelta civica, Nuovo centro destra e Movimento 5 stelle VOTANO CONTRO la sospensione dell'operazione \"mare nostrum\" >> LEGA, UNICA OPPOSIZIONE ALL\u2019INVASIONE! >> UN\u2019ALTRA EUROPA \u00c8 POSSIBILE >> EUROPEE DOMENICA 25 MAGGIO 2014: VOTA LEGA NORD, SCRIVI SALVINI", "post_text": "16/05/2014: Alla Camera PD, SEL, Scelta civica, Nuovo centro destra e Movimento 5 stelle VOTANO CONTRO la sospensione dell'operazione \"mare nostrum\" >> LEGA, UNICA OPPOSIZIONE ALL\u2019INVASIONE! >> UN\u2019ALTRA EUROPA \u00c8 POSSIBILE >> EUROPEE DOMENICA 25 MAGGIO 2014: VOTA LEGA NORD, SCRIVI SALVINI", "shared_text": "", "time": "2014-05-16 17:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p118x118/10330242_10152140152918155_71289972519698363_n.png.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=rYFu0dMymAcAQnfkM_ZI6TbBcD901JdsBYqwDhnNrbErnAlC7dJFPA_Tw&_nc_ht=scontent-cdt1-1.xx&oh=786ad0c58184ecc8cae52a2fcb3ada21&oe=5E7ABFDC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152139934833155", "text": "La DEMENZIALE operazione 'MARE NOSTRUM' \u00e8 riuscita finalmente ad espellere qualcuno: i deputati della LEGA! Che stamane, alla Camera, hanno protestato esponendo i cartelli CLANDESTINO \u00c8 REATO.\nEcco i numeri\u2026 Altro FOLLI: incremento dei clandestini dell'823% nell'ultimo anno, +30mila immigrati in 4 mesi, 9,3 milioni di euro di soldi pubblici spesi ogni mese.\nNOI NON MOLLIAMO, i CONFINI li difenderemo NOI.\nLEGA, UNICA OPPOSIZIONE ALL'INVASIONE!", "post_text": "La DEMENZIALE operazione 'MARE NOSTRUM' \u00e8 riuscita finalmente ad espellere qualcuno: i deputati della LEGA! Che stamane, alla Camera, hanno protestato esponendo i cartelli CLANDESTINO \u00c8 REATO.\nEcco i numeri\u2026 Altro FOLLI: incremento dei clandestini dell'823% nell'ultimo anno, +30mila immigrati in 4 mesi, 9,3 milioni di euro di soldi pubblici spesi ogni mese.\nNOI NON MOLLIAMO, i CONFINI li difenderemo NOI.\nLEGA, UNICA OPPOSIZIONE ALL'INVASIONE!", "shared_text": "", "time": "2014-05-16 15:26:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10372259_10152139934373155_3761765459049682224_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=PsTNpfXS4hMAQl4hZvA7vjLPe9DGRQLa5ifj5xFCe6-fkDxbNrTMj_0DA&_nc_ht=scontent-cdt1-1.xx&oh=68e304715803d1a977c70e345e74a7e6&oe=5E46C566", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152139472173155", "text": "Pronto per un'ora di diretta su Radio Rai Uno.\nChi mi far\u00e0 compagnia?", "post_text": "Pronto per un'ora di diretta su Radio Rai Uno.\nChi mi far\u00e0 compagnia?", "shared_text": "", "time": "2014-05-16 08:50:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10374849_10152139471833155_1612803049498518065_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=qZDVMhnuAmkAQnbp5MdbYwruraorUOB2s6AN3buNQ1TP5R869UVF_HSnA&_nc_ht=scontent-cdt1-1.xx&oh=20acc3d8900756a460b75211356d6112&oe=5E432B94", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152138795508155", "text": "", "post_text": "", "shared_text": "", "time": "2014-05-16 00:31:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10297651_10152134739688155_1817653662198692512_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=180MOoiErBMAQlKTXa18471NUyKm08OK5d0QnQB020Sez8aHWNfmaATjA&_nc_ht=scontent-cdt1-1.xx&oh=11a88f149d45ed2d6e4ea8fb10d1a507&oe=5E8A1884", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152138358803155", "text": "Pronto!", "post_text": "Pronto!", "shared_text": "", "time": "2014-05-15 21:23:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10294244_10152138358213155_6905917137090284486_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=tK268Nnlb-gAQlX0zaYInDXyDR-aF0yX8xQU4dfjMzphnJzpOD4oFYQgw&_nc_ht=scontent-cdt1-1.xx&oh=9275176871b5bc97f0882f47b9bea8e5&oe=5E8A3087", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152138267073155", "text": "Tra poco a La7! Ci siete? Mi aiutate a commentare su Facebook e a twittare?", "post_text": "Tra poco a La7! Ci siete? Mi aiutate a commentare su Facebook e a twittare?", "shared_text": "", "time": "2014-05-15 20:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10372008_10152138265528155_5576590855845544600_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=JeSwtC0Qi_wAQnuA4Ifnm2gPL22fGJ0aIaMnWPfPCDsLqSIxl9XOx23jA&_nc_ht=scontent-cdt1-1.xx&oh=af65d5a95cc25f9f26f341fe4a0a40d4&oe=5E4E7B2E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152135904083155", "text": "Presidio davanti all'Hotel Garda di Affi, che ospita (a spese di tutti) una ventina di CLANDESTINI.\n35 euro al giorno agli immigrati, 10 euro al giorno ai disabili.\nVergogna!", "post_text": "Presidio davanti all'Hotel Garda di Affi, che ospita (a spese di tutti) una ventina di CLANDESTINI.\n35 euro al giorno agli immigrati, 10 euro al giorno ai disabili.\nVergogna!", "shared_text": "", "time": "2014-05-14 16:47:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10361995_10152135901378155_5478654640927511051_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=J3Zt4Gp-sK8AQnm5V7NwKMjg_NRbHjas2CtTnwbZHoin55D2OYfubfXIA&_nc_ht=scontent-cdt1-1.xx&oh=f78c396af5ed54bd752f3e7f8118dbaa&oe=5E817F23", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152135530493155", "text": "Al mercato di Meolo a sostegno della candidata della Lega: sarebbe la prima Sindaca della storia del paese, forza!", "post_text": "Al mercato di Meolo a sostegno della candidata della Lega: sarebbe la prima Sindaca della storia del paese, forza!", "shared_text": "", "time": "2014-05-14 11:23:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10277627_10152135529858155_6471455310699992273_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=OukpLczi8HcAQl_XUHPdsx61s0UOGRGPGie76RQR89SrJEl8O-iSglnsQ&_nc_ht=scontent-cdt1-1.xx&oh=e32dbd8cdfd6192daaa1ebfe2fe050fd&oe=5E4DF6FC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152134439268155", "text": "Guarda questi poveretti di Monti che cosa si inventano... E comunque varrebbe di pi\u00f9 un MARENGO del loro EURO DROGATO!", "post_text": "Guarda questi poveretti di Monti che cosa si inventano... E comunque varrebbe di pi\u00f9 un MARENGO del loro EURO DROGATO!", "shared_text": "", "time": "2014-05-13 20:44:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s526x395/1098339_10152134436678155_4397370357312294288_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=szha5pAA5C4AQnR6m7HGsaIAylJ0DmpDbTMhvVgj9CiI9XT_tpHkcJoEQ&_nc_ht=scontent-cdt1-1.xx&oh=1b2b3a7ec7a41785504519c3a3923728&oe=5E87A948", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152134443413155", "text": "Tra poco su Rai Tre. Ci siete???", "post_text": "Tra poco su Rai Tre. Ci siete???", "shared_text": "", "time": "2014-05-13 20:40:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10366189_10152134441343155_7447597776454153565_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=4aFU9vvvlsYAQmEKuYwkFNI96hyD_eJKS9o2bot3hu1lWv6HG8SwxB-Lg&_nc_ht=scontent-cdt1-1.xx&oh=ffa7ee8093b1868ba94464a8825634b9&oe=5E474971", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152133935638155", "text": "Che splendida terra il Friuli!\nFoto di gruppo leghista a Gonars, provincia di Udine.", "post_text": "Che splendida terra il Friuli!\nFoto di gruppo leghista a Gonars, provincia di Udine.", "shared_text": "", "time": "2014-05-13 15:13:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152133935638155&id=252306033154", "link": null} +{"post_id": "10152133855048155", "text": "In piazza con la Lega a Trieste, per dire NO alla proposta di PD e M5Stelle di REGALARE LA CITTADINANZA a chiunque nasce in Italia.", "post_text": "In piazza con la Lega a Trieste, per dire NO alla proposta di PD e M5Stelle di REGALARE LA CITTADINANZA a chiunque nasce in Italia.", "shared_text": "", "time": "2014-05-13 14:08:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10277477_10152133853748155_1288491115560052132_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=JrwV633Dq2sAQm9lfdzIAKCJeOc-2KYkgqmzPYUo1t3zyzvyD1e4phujw&_nc_ht=scontent-cdt1-1.xx&oh=9e250ce2d52795dea6c5726e07467251&oe=5E42BB00", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152133659828155", "text": "Tappa col camper a Monfalcone, accoglienza calorosa e tanta voglia di tornare a sperare e lavorare!", "post_text": "Tappa col camper a Monfalcone, accoglienza calorosa e tanta voglia di tornare a sperare e lavorare!", "shared_text": "", "time": "2014-05-13 10:58:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10334243_10152133657243155_6643939465941088086_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=HH3O4I4IwyQAQmkM2tzYpiYXFGX5WnxhVZqg0h2HxYivBjxQSfMvk6VVA&_nc_ht=scontent-cdt1-1.xx&oh=9be1b5bbb8754ee5d5776cefbb2d7869&oe=5E4FF022", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152132826393155", "text": "Sala strapiena a Vittorio Veneto, e ora sono in diretta su SKY Tg 24.", "post_text": "Sala strapiena a Vittorio Veneto, e ora sono in diretta su SKY Tg 24.", "shared_text": "", "time": "2014-05-12 23:05:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10330471_10152132825488155_5833608611046263567_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=22nRIZMOpc8AQkZB9F2kGDMY5ZVcL4UyyWIhJ8NGHV-bP251CzMJPYKKw&_nc_ht=scontent-cdt1-1.xx&oh=3b23262dbb77588fff713670cd08d763&oe=5E43993C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152132594953155", "text": "Autoscatto in camper, direzione Vittorio Veneto", "post_text": "Autoscatto in camper, direzione Vittorio Veneto", "shared_text": "", "time": "2014-05-12 20:51:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10155968_10152132594263155_7845196327204766102_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Mxt3uzDlDqoAQk6EPfQAS5AXfa88oM7FmXSMQwcIkI76VccLKHhA0akvQ&_nc_ht=scontent-cdt1-1.xx&oh=0910252cfaa3fd0fc4c10e543980b008&oe=5E4B24B1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152132576058155", "text": "Padova pu\u00f2 cambiare, con Massimo Bitonci sindaco!", "post_text": "Padova pu\u00f2 cambiare, con Massimo Bitonci sindaco!", "shared_text": "", "time": "2014-05-12 20:38:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1209174_10152132575293155_9184095816136614556_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=WFUv_UDlv5kAQkglpog_ZtHC37UO4DRRRu0rZjrr1Ey8YOvIFqB0pVWfA&_nc_ht=scontent-cdt1-1.xx&oh=1c95bcd0476c9327fa58645b12b578c6&oe=5E7ECCBC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152132443593155", "text": "Dopo la pioggia, torna sempre il sereno!\nBellissimo arcobaleno, fotografato dal camper fra Vicenza e Padova.\nDedicato a Voi!", "post_text": "Dopo la pioggia, torna sempre il sereno!\nBellissimo arcobaleno, fotografato dal camper fra Vicenza e Padova.\nDedicato a Voi!", "shared_text": "", "time": "2014-05-12 19:11:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10337746_10152132442403155_34617521897266790_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=BRNtuaYLUpcAQkbGI51g3GX340EMWsumFFGxJHOlzIN7ZvjUNRmN6wsfw&_nc_ht=scontent-cdt1-1.xx&oh=ec7a00e08ee1e383ff4ccc618d2553fe&oe=5E7D2F13", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152132196293155", "text": "Anche ad Arzignano (Vicenza) tanta bella gente, con tanta voglia di lavorare.\nP.s. Campi rom? Tutti sgomberati!", "post_text": "Anche ad Arzignano (Vicenza) tanta bella gente, con tanta voglia di lavorare.\nP.s. Campi rom? Tutti sgomberati!", "shared_text": "", "time": "2014-05-12 16:34:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10294363_10152132195028155_5755101726429699347_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=4ETH49JvZ_4AQlcz1EWN0GiAKSP0kc4emSqSxdjUBLuUkg9Doi-3IzK6A&_nc_ht=scontent-cdt1-1.xx&oh=df6e5c42cc4d3b922b9a775df05f42ae&oe=5E491E53", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152131942008155", "text": "Salutiamo lo splendido Trentino, ora si va in Veneto!\nAlle 14.15 ad Arzignano, alle 15.15 a Valdagno, alle 16.15 a Schio, alle 17.15 a Tezze sul Brenta, alle 18 a San Martino di Lupari.\nE poi dalle 18.30 a\u2026 Altro Padova (piazza Mazzini e piazzale della Stazione) e alle 21 a Vittorio Veneto.\nE per chi fotografa il CAMPER in viaggio, una lacrima della Fornero in omaggio!", "post_text": "Salutiamo lo splendido Trentino, ora si va in Veneto!\nAlle 14.15 ad Arzignano, alle 15.15 a Valdagno, alle 16.15 a Schio, alle 17.15 a Tezze sul Brenta, alle 18 a San Martino di Lupari.\nE poi dalle 18.30 a\u2026 Altro Padova (piazza Mazzini e piazzale della Stazione) e alle 21 a Vittorio Veneto.\nE per chi fotografa il CAMPER in viaggio, una lacrima della Fornero in omaggio!", "shared_text": "", "time": "2014-05-12 13:27:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10366288_10152131935308155_641082055820096527_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=ARe6q6FfZ3YAQnqjfaN3TA5vLIlDrO4fZw4E5VIVF_yKUny6NPoV2KCoA&_nc_ht=scontent-cdt1-1.xx&oh=deffdb29c8cfed9fdae9455983f3ca1d&oe=5E3E8A29", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152130393933155", "text": "Quante mamme e pap\u00e0 candidati con la Lega a Telgate!\nI figli sono il Futuro.", "post_text": "Quante mamme e pap\u00e0 candidati con la Lega a Telgate!\nI figli sono il Futuro.", "shared_text": "", "time": "2014-05-11 20:04:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10336660_10152130391728155_8330880614874552947_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=UMjyBF7kaWwAQnA4oHLHpWjVRVuar03IDH8JO4dpnWS9KFnQEaUR5Ouow&_nc_ht=scontent-cdt1-1.xx&oh=2b42c709f2cb5ba3ab08c95842819318&oe=5E508FAF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152130272208155", "text": "Prima foto con due modelle di eccezione!\nVi piace la maglietta?", "post_text": "Prima foto con due modelle di eccezione!\nVi piace la maglietta?", "shared_text": "", "time": "2014-05-11 18:56:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10298869_10152130271263155_724095415862114456_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=6iGkDayOqKUAQl7kdnLa0G5RTTTPGOhJ04WmEg82ekRhmj8jjNMQQymew&_nc_ht=scontent-cdt1-1.xx&oh=f680cc83a26303a8e15b4499aca75e37&oe=5E7C2CB3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152130207883155", "text": "Prima Camper-Tappa a Bolgare: va che bella gente, in provincia ci sono persone genuine!", "post_text": "Prima Camper-Tappa a Bolgare: va che bella gente, in provincia ci sono persone genuine!", "shared_text": "", "time": "2014-05-11 18:17:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10311775_10152130205518155_4407453858978060238_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=zuryeNenN_gAQnbz9PQFwB7d18sdCL06Eeo75wAoYj5z7L7RQAzUsZBMw&_nc_ht=scontent-cdt1-1.xx&oh=2cb0625664c6dd1b9860e8062dc9db91&oe=5E853123", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152130106758155", "text": "Camper.....partito!\nRagazzi, vi porto con me.", "post_text": "Camper.....partito!\nRagazzi, vi porto con me.", "shared_text": "", "time": "2014-05-11 17:17:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10338737_10152130104908155_6618466108669389330_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=cYp3n0CaeJwAQnM-Xxy00UcQAE6JACHcW-QOS6VA5IlE5bAQMelZgOimA&_nc_ht=scontent-cdt1-1.xx&oh=544fea01ce4469c909ec6be321aa4c3e&oe=5E7C1609", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152129637848155", "text": "Amici, oggi si parte col camper! Alle 16, da MILANO, piazza della Scala. Chi \u00e8 in zona viene a farmi un salutino?\nTutte le info su: WWW.MATTEOSALVINI.COM", "post_text": "Amici, oggi si parte col camper! Alle 16, da MILANO, piazza della Scala. Chi \u00e8 in zona viene a farmi un salutino?\nTutte le info su: WWW.MATTEOSALVINI.COM", "shared_text": "", "time": "2014-05-11 12:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10308748_10152129636073155_1591539012093209928_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=dzbnIaXgCH0AQkBmd57pMp8Pyi5S27Ihk0Q5gZcxEiycbtaw9y6k-xJMg&_nc_ht=scontent-cdt1-1.xx&oh=19ef4b91ba5368d020a761c4357a4b7b&oe=5E44E3A1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.MATTEOSALVINI.COM/?fbclid=IwAR3BVuZCuH0sk8fIbr-mIyYGdRkFQXg1jMI_6uwS3mqPOpGrwDcuKVnp7aM"} +{"post_id": "10152129524833155", "text": "Liberarsi dalla gabbia dell'Euro e fermare l'invasione clandestina.\nAnche a Roma, sala strapiena!\nDai, dai, dai: il 25 maggio SI PU\u00d2 SCEGLIERE.", "post_text": "Liberarsi dalla gabbia dell'Euro e fermare l'invasione clandestina.\nAnche a Roma, sala strapiena!\nDai, dai, dai: il 25 maggio SI PU\u00d2 SCEGLIERE.", "shared_text": "", "time": "2014-05-11 11:10:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1625657_10152129523103155_8435312736928857702_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=ZqNv3moLaWAAQm9-7dOQ8nO1ajFO6x26cLPjwghbw7fCR1NX0bs5_Ancw&_nc_ht=scontent-cdt1-1.xx&oh=538057d0eacfd64916ad4d9ed949d109&oe=5E41A41E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152127825093155", "text": "DOMANI mattina, domenica, alle 10.30 vi aspetto a ROMA al Teatro Flavio per il #BASTAEURO TOUR!\nAmici romani, qualcuno di voi viene a trovarmi?", "post_text": "DOMANI mattina, domenica, alle 10.30 vi aspetto a ROMA al Teatro Flavio per il #BASTAEURO TOUR!\nAmici romani, qualcuno di voi viene a trovarmi?", "shared_text": "", "time": "2014-05-10 14:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p228x119/10252014_10152127822953155_2631487634249825853_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=g6kTlG8QNoIAQmdYcO2BoHO5LKlyVRnPVT_eXsC5hubJFamQ_k-iQKH3Q&_nc_ht=scontent-cdt1-1.xx&oh=f436b09a3d602e12704254b1553fc46d&oe=5E86896A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152127677073155", "text": "Spettacolo!\nFate girare questa foto, coda ininterrotta al gazebo di Milano per firmare: CLANDESTINO \u00c8 REATO!", "post_text": "Spettacolo!\nFate girare questa foto, coda ininterrotta al gazebo di Milano per firmare: CLANDESTINO \u00c8 REATO!", "shared_text": "", "time": "2014-05-10 11:43:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1512391_10152127674513155_5145432678779195111_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=D7WDT6DEmKIAQnSaMI3RXPJF-HI5rK4q7Wu5nOrkt6IxERscQmea_JoGg&_nc_ht=scontent-cdt1-1.xx&oh=81101341819746eebacebcf2346b62e3&oe=5E3E371C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152127627208155", "text": "Ecco il nuovo Referendum!\nMi segnalano CODE AI GAZEBO per firmare, vaiiiii!!!", "post_text": "Ecco il nuovo Referendum!\nMi segnalano CODE AI GAZEBO per firmare, vaiiiii!!!", "shared_text": "", "time": "2014-05-10 10:53:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10309026_10152127626648155_1107639507917297817_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Le-b0_31mDcAQk0xTxbjzR3nOJBpzx1DC5Mcrxz9AQh6AjULQyEehtXSw&_nc_ht=scontent-cdt1-1.xx&oh=862e97bbbfe6a9f730d3b0582648836e&oe=5E4CD7C2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152125994563155", "text": "AMICI, SABATO e DOMENICA venite a firmare in centinaia di piazze al Nord. Mappa gazebo su www.vieniafirmare.org oppure 02 66.234.234.\nE DA LUNEDI' si firma in TUTTI I MUNICIPI ITALIANI!\n#clandestino\u00e8reato", "post_text": "AMICI, SABATO e DOMENICA venite a firmare in centinaia di piazze al Nord. Mappa gazebo su www.vieniafirmare.org oppure 02 66.234.234.\nE DA LUNEDI' si firma in TUTTI I MUNICIPI ITALIANI!\n#clandestino\u00e8reato", "shared_text": "", "time": "2014-05-09 13:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1939962_10152125993633155_5505721623348815111_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=JcEnRZvpGOQAQn-GVvGlxraHcSi-0_j08JvmkcPzptt_1kNzW75qZZpSg&_nc_ht=scontent-cdt1-1.xx&oh=d3451d5da25160945fc8229e78761890&oe=5E837602", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR3m67wBZwSQXC9WLgR39vO4DMRo3793ICjn5AIZTGTcXHpqe4ZFfyxP8rE"} +{"post_id": "10152124994658155", "text": "Non ci crederete, ma questa stasera \u00e8 la cena del Salvini: solo frutta!", "post_text": "Non ci crederete, ma questa stasera \u00e8 la cena del Salvini: solo frutta!", "shared_text": "", "time": "2014-05-08 21:52:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10330271_10152124994573155_7844392216957528865_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=fei5eJcFGwsAQlQ3XvZ_Iwm4XCPFx_g6gXU6Mu5dpMvNzT3T0TbOdVl6Q&_nc_ht=scontent-cdt1-1.xx&oh=3e0e33654d0f030083fa24df9408f1f1&oe=5E8B8E21", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152124464748155", "text": "L'Europa identitaria guarda anche a Mosca. La Crimea ha diritto all\u2019autodeterminazione.\nhttp://www.nododigordio.org/in-evidenza/salvini-lega-nord-europa-identitaria-guarda-anche-a-mosca/", "post_text": "L'Europa identitaria guarda anche a Mosca. La Crimea ha diritto all\u2019autodeterminazione.\nhttp://www.nododigordio.org/in-evidenza/salvini-lega-nord-europa-identitaria-guarda-anche-a-mosca/", "shared_text": "", "time": "2014-05-08 16:12:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1002684_10152124464613155_596528395920021315_n.png.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=qS8cf36jvfMAQkWf80aBnNd6DlPm2MMqZWDTHjRKtkG31ZkQyUDP6_8ew&_nc_ht=scontent-cdt1-1.xx&oh=2c3bcf48bca5591cb6badb94b1266193&oe=5E82ADDD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.nododigordio.org/in-evidenza/salvini-lega-nord-europa-identitaria-guarda-anche-a-mosca/?fbclid=IwAR2QZ4woyQeE_Z19Ft_vRjnknfJvVVhOe8fXx2GSlMIzDzEAd4FpyxAr-W8"} +{"post_id": "10152124285108155", "text": "Fra poco sono in diretta su Rai Radio 2", "post_text": "Fra poco sono in diretta su Rai Radio 2", "shared_text": "", "time": "2014-05-08 13:47:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10291090_10152124284908155_252715164060048927_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=7K2GYcYuEq4AQmVll_bxDSDO2UTt55jv-QJOVpJXNFsXwyocuQ2jD_sLw&_nc_ht=scontent-cdt1-1.xx&oh=6ca002b4d3453876427a5d49193e5a0d&oe=5E486E4C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152123942583155", "text": "Pronto per la diretta su Rai Uno!", "post_text": "Pronto per la diretta su Rai Uno!", "shared_text": "", "time": "2014-05-08 08:42:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10175045_10152123942398155_5673754279939812685_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=R3-Z-2CAeV4AQm5aDbd-NsnHyzw3zpdz1OyjSN4BPTz2TKDA7uEF3kNrg&_nc_ht=scontent-cdt1-1.xx&oh=ed2f380ab01fb5ecb968c3444493e2ae&oe=5E3DFF06", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152123901408155", "text": "Buona colazione Amici!\nAlle 8.30 vi saluto a UNO MATTINA, in diretta su Rai 1.", "post_text": "Buona colazione Amici!\nAlle 8.30 vi saluto a UNO MATTINA, in diretta su Rai 1.", "shared_text": "", "time": "2014-05-08 07:43:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10245291_10152123900578155_2238790128677750348_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=z_ctCQphAAAAQlAUKZDU5c2hH0O-usndTtigcnyjBbHZuiqnVJHKmGRfw&_nc_ht=scontent-cdt1-1.xx&oh=e1c8a572810683ccba750babd9b5fef0&oe=5E809398", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152123109893155", "text": "\u00c8 ARRIVATO! Ecco il SESTO referendum per reintrodurre il reato di CLANDESTINIT\u00c0, abrogando la norma voluta da RENZI e votata in Parlamento anche da FORZA ITALIA e con la SOLA DURA opposizione della LEGA (i\u2026 Altro CINQUESTELLE? DEFILATI anche loro!).\nPuoi firmare il PROSSIMO WEEKEND in centinaia di GAZEBO al NORD oppure nel tuo Municipio dalla settimana prossima.\nE la raccolta PROSEGUE anche per gli altri CINQUE: dai, che se raccogliamo 500mila firme cancelliamo anche la FORNERO (la legge...). Info: 02 66.234.234 o www.vieniafirmare.org\nP.s.: nei prossimi giorni mandiamo in tiv\u00f9 anche questo SPOT, dai un'occhiata e, se ti piace, DIFFONDI! LEGA, UNICA OPPOSIZIONE ALL'INVASIONE!\nGUARDALO QUI: https://www.youtube.com/watch?v=axLNiUqy_Ac", "post_text": "\u00c8 ARRIVATO! Ecco il SESTO referendum per reintrodurre il reato di CLANDESTINIT\u00c0, abrogando la norma voluta da RENZI e votata in Parlamento anche da FORZA ITALIA e con la SOLA DURA opposizione della LEGA (i\u2026 Altro CINQUESTELLE? DEFILATI anche loro!).\nPuoi firmare il PROSSIMO WEEKEND in centinaia di GAZEBO al NORD oppure nel tuo Municipio dalla settimana prossima.\nE la raccolta PROSEGUE anche per gli altri CINQUE: dai, che se raccogliamo 500mila firme cancelliamo anche la FORNERO (la legge...). Info: 02 66.234.234 o www.vieniafirmare.org\nP.s.: nei prossimi giorni mandiamo in tiv\u00f9 anche questo SPOT, dai un'occhiata e, se ti piace, DIFFONDI! LEGA, UNICA OPPOSIZIONE ALL'INVASIONE!\nGUARDALO QUI: https://www.youtube.com/watch?v=axLNiUqy_Ac", "shared_text": "", "time": "2014-05-07 21:13:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/1614204_10152123092113155_8577669246189039941_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=88lz3RYajlcAQnevwz39bZG_BwwcCw-q_rdpvyV4QcyTIxlupHJSBxMyg&_nc_ht=scontent-cdt1-1.xx&oh=1c32edc9396a930d6604c9439293c6fc&oe=5E825A9B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR0uqr6bloWbYVfnof3OShTcjQ0DmQ78YXJ-F-5jJcGTblYdc5HlgugFzWw"} +{"post_id": "10152122415468155", "text": "E voi SIETE PRONTI a firmare il referendum per reintrodurre il REATO di CLANDESTINITA'?\nA brevissimo!\nInfo: 02 66.234.234 - #clandestino\u00e8reato", "post_text": "E voi SIETE PRONTI a firmare il referendum per reintrodurre il REATO di CLANDESTINITA'?\nA brevissimo!\nInfo: 02 66.234.234 - #clandestino\u00e8reato", "shared_text": "", "time": "2014-05-07 12:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10353133_10152122390778155_4226549084329561442_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=hWjttv6tiSsAQkqwNQ_Q9fsdE1YRfKsrmYzi7suieLnP-bV5grjEvVdIA&_nc_ht=scontent-cdt1-1.xx&oh=9ba15e4a7d6901e8ef723630fdfac8fc&oe=5E7F2F8B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152122285373155", "text": "Presidio della Lega davanti al CIE di Ponte Galeria, a Roma.\nEspellere, espellere, espellere!", "post_text": "Presidio della Lega davanti al CIE di Ponte Galeria, a Roma.\nEspellere, espellere, espellere!", "shared_text": "", "time": "2014-05-07 11:16:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10259756_10152122284728155_1417809748379810029_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=1fUWNPfGMPcAQn9RT5v5rEKXyp8GxWvqQmet1mLh8CkXAeqktikfQx76Q&_nc_ht=scontent-cdt1-1.xx&oh=ab3d788313f65395373973d5d0246209&oe=5E85F9B1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152120978453155", "text": "E per rilassarsi, un caff\u00e8 con latte di mandorle!", "post_text": "E per rilassarsi, un caff\u00e8 con latte di mandorle!", "shared_text": "", "time": "2014-05-06 19:51:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10307425_10152120977723155_8799780231585046864_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=GvEOW4sMDMwAQmKcss5WJY8PE0azHJMx3lxC9PpR0kWO4JXAgDreeHmrw&_nc_ht=scontent-cdt1-1.xx&oh=294a5d3ac46a553f8c37522ba61fe261&oe=5E43A41D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152120962493155", "text": "Una piazza, bella e piena, a Locorotondo, per un confronto fra Lega e Forza Italia su Euro, Europa e immigrazione.", "post_text": "Una piazza, bella e piena, a Locorotondo, per un confronto fra Lega e Forza Italia su Euro, Europa e immigrazione.", "shared_text": "", "time": "2014-05-06 19:40:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10247313_10152120961628155_6071891990374148725_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=cRAbWOJqitIAQkLdrk-x5hOkvCtjbTFRlGYBUey9mMGmPPH2PyX6wiRiw&_nc_ht=scontent-cdt1-1.xx&oh=9108aecc1e796c94ca4d14196266d681&oe=5E460747", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152120786883155", "text": "Bellissima Taranto!\nCon una politica pi\u00f9 giusta, anche queste terre possono tornare a lavorare.\nP.s. Un abbraccio alle quattro ragazze che mi hanno fermato. \"Ma lei \u00e8 Salvini? In televisione ci sembrava pi\u00f9 grassottello. Ah, comunque la votiamo per la battaglia contro i clandestini\".\nGrazieee!", "post_text": "Bellissima Taranto!\nCon una politica pi\u00f9 giusta, anche queste terre possono tornare a lavorare.\nP.s. Un abbraccio alle quattro ragazze che mi hanno fermato. \"Ma lei \u00e8 Salvini? In televisione ci sembrava pi\u00f9 grassottello. Ah, comunque la votiamo per la battaglia contro i clandestini\".\nGrazieee!", "shared_text": "", "time": "2014-05-06 17:50:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10178154_10152120777693155_3722569432404541432_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=4OEvjYM4NtUAQnrhjWrjPa3CcjtFBVKkLsiW6zhv9PyGzPZ85MQnUrt7A&_nc_ht=scontent-cdt1-1.xx&oh=3e83146a597f9bc16b67c2d7b2d0af7c&oe=5E81DCE4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152120507343155", "text": "Un'altra foto della splendida serata di ieri a Lamezia Terme: pi\u00f9 di 200 persone che vogliono liberarsi dalla gabbia dell'Euro!", "post_text": "Un'altra foto della splendida serata di ieri a Lamezia Terme: pi\u00f9 di 200 persone che vogliono liberarsi dalla gabbia dell'Euro!", "shared_text": "", "time": "2014-05-06 15:00:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10294281_10152120503973155_8209023090962571452_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=BWErOk0J4ikAQkxIuX9M7maL6gk7jEQnxL5jShVdHXTnwnI9HmLl3D3zg&_nc_ht=scontent-cdt1-1.xx&oh=2638aef8f554ffd945d1a14970f62460&oe=5E8702D5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152120232858155", "text": "Anche in piazza a Salerno si firma per i 5 referendum della Lega: superate le 50 firme in un'ora!\nMaledetta la Fornero.", "post_text": "Anche in piazza a Salerno si firma per i 5 referendum della Lega: superate le 50 firme in un'ora!\nMaledetta la Fornero.", "shared_text": "", "time": "2014-05-06 11:24:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10325292_10152120231198155_7155619626623157262_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=mrdXLq6R2BsAQlmRQFwV5ofrsYoFYqKBFdLRVy4_W_y8-XU0KTW54DNxg&_nc_ht=scontent-cdt1-1.xx&oh=465ec58ed70e0cb4c83404e8dff5f4a7&oe=5E870550", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152118813933155", "text": "Attraversato lo Stretto, ora si corre sulla mitica Salerno - Reggio Calabria!", "post_text": "Attraversato lo Stretto, ora si corre sulla mitica Salerno - Reggio Calabria!", "shared_text": "", "time": "2014-05-05 17:55:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10264977_10152118813593155_5409736854831838818_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=-Eh1ICQE1sEAQlrwe4EQZgVo1z05q0zaQ9OYgvZskzpFLDXWekegGt9YQ&_nc_ht=scontent-cdt1-1.xx&oh=e5ca67fe4695279c4ba9b8d83b0443c0&oe=5E4FB39B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152118572608155", "text": "Vi aspetto alle 18.30 a LAMEZIA TERME per la nuova tappa del #BASTAEURO TOUR e stasera alle 21, sempre in collegamento da Lamezia a #PiazzaPulita su La7.", "post_text": "Vi aspetto alle 18.30 a LAMEZIA TERME per la nuova tappa del #BASTAEURO TOUR e stasera alle 21, sempre in collegamento da Lamezia a #PiazzaPulita su La7.", "shared_text": "", "time": "2014-05-05 14:59:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p100x100/10317642_10152118572403155_4048068990646542454_o.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=nXdkdRwclY4AQm8cttmcVQ3X9_d9N6CDnVEqScSO3Vq9y2XPYUSvgWWiA&_nc_ht=scontent-cdt1-1.xx&oh=93e90fe1bf1f3e23b2fba60b7ab5cccb&oe=5E7A1A24", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152118447813155", "text": "E dopo aver raccolto le firme per il Referendum contro la Fornero... granita siciliana alla mandorla!", "post_text": "E dopo aver raccolto le firme per il Referendum contro la Fornero... granita siciliana alla mandorla!", "shared_text": "", "time": "2014-05-05 13:10:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10153826_10152118446858155_4829949611319379122_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=KydrDtxiNlMAQkrujw7i9KRLd81l_54QEQRdhBERikVUJ2fS7pIqFQTvw&_nc_ht=scontent-cdt1-1.xx&oh=caf34f0699ef03c1418a8da425a25ba7&oe=5E44FEA8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152118307708155", "text": "Ragazze e ragazzi che chiedono solo di lavorare e avere un futuro.\nLa battaglia BASTA EURO cresce anche in Sicilia.", "post_text": "Ragazze e ragazzi che chiedono solo di lavorare e avere un futuro.\nLa battaglia BASTA EURO cresce anche in Sicilia.", "shared_text": "", "time": "2014-05-05 11:07:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10277117_10152118306833155_7594082436287797964_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=YRIFbJlwAYAAQn26yWY_IK4LJkCoWyGvnkLCOU_eynYUlEbTNkqhdH8uQ&_nc_ht=scontent-cdt1-1.xx&oh=878ba94fefcf303fd8dc40934859b181&oe=5E436D1D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152118263168155", "text": "Augusta, Sicilia: la Lega accolta da decine di lavoratori del porto, mamme e studenti, preoccupati per l'invasione in corso.\n\"Aiutateci voi\" mi dicono.\nForza Sicilia perbene, Stop Immigrazione!", "post_text": "Augusta, Sicilia: la Lega accolta da decine di lavoratori del porto, mamme e studenti, preoccupati per l'invasione in corso.\n\"Aiutateci voi\" mi dicono.\nForza Sicilia perbene, Stop Immigrazione!", "shared_text": "", "time": "2014-05-05 10:13:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10251942_10152118261118155_8443750360711284529_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=eHd0CuwEmf4AQmn7jrwpeF3nNGD-s4J5CXUatl6yMjPYLK6Mnl7saZv_A&_nc_ht=scontent-cdt1-1.xx&oh=1a3f52ccaac8047d1447d2e8df88c55f&oe=5E85E723", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152117198338155", "text": "Lega libera Sud! Salvini tour. Domani, luned\u00ec: alle 9 ad Augusta, a Mineo e poi a Catania: CLANDESTINI STOP! Alle 18.30 a Lamezia Terme per il Basta Euro tour e dalle 21 in diretta a Piazza Pulita su La7. Persone libere, vi aspetto!", "post_text": "Lega libera Sud! Salvini tour. Domani, luned\u00ec: alle 9 ad Augusta, a Mineo e poi a Catania: CLANDESTINI STOP! Alle 18.30 a Lamezia Terme per il Basta Euro tour e dalle 21 in diretta a Piazza Pulita su La7. Persone libere, vi aspetto!", "shared_text": "", "time": "2014-05-04 20:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10173657_10152117197903155_6536434778102342137_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=5wul0XKHmFgAQlqZQjusdXBsOYzkyVFziOCE5YvjIfqXt1qu80cbBikVA&_nc_ht=scontent-cdt1-1.xx&oh=096ea679db3353e06140ba88da95761f&oe=5E8CA23B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152116482403155", "text": "Messaggio chiaro! Basta Euro, con il popolo di #Pontida14 sullo sfondo", "post_text": "Messaggio chiaro! Basta Euro, con il popolo di #Pontida14 sullo sfondo", "shared_text": "", "time": "2014-05-04 11:05:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1511056_10152116481763155_6449152442938645284_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=ynw_s4K_oAsAQmQ3POFDqbYXm4O3DwiVHOA7TxuJUdIpRohDKMPwvIsrg&_nc_ht=scontent-cdt1-1.xx&oh=ca6d08f0a92dbc3cc8614ac185cf8689&oe=5E4DC298", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152114997973155", "text": "Genova \u00e8 sempre stupenda!\nPeccato che la politica di sinistra la riduca sempre peggio...", "post_text": "Genova \u00e8 sempre stupenda!\nPeccato che la politica di sinistra la riduca sempre peggio...", "shared_text": "", "time": "2014-05-03 15:35:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10322803_10152114996998155_5565007808033790214_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=r1nujIdxI2IAQkvsXxWelYDIBLcJgkR4vttbsYrm-umRjC_Lyn8mRCoEQ&_nc_ht=scontent-cdt1-1.xx&oh=0c21e0e352032cbb0c7f9fb364d22dfa&oe=5E83D42F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152114788718155", "text": "Bivacco in centro a Milano.\nRENZI e ALFANO, vergognatevi!", "post_text": "Bivacco in centro a Milano.\nRENZI e ALFANO, vergognatevi!", "shared_text": "", "time": "2014-05-03 12:30:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10170943_10152114787408155_1833030390615816230_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=ECW4zKfQbhkAQlNpTiNZYLsYWOp2pTQ08Ext5Q9AJkkI5GfOMMsRTfW0g&_nc_ht=scontent-cdt1-1.xx&oh=5c68736ebb69988f3402dd5be0d3a0fb&oe=5E84DFE6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152114749063155", "text": "Benvenuti in Stazione Centrale a Milano. Milano..??\nRoba da matti. STOP IMMIGRAZIONE, subito.", "post_text": "Benvenuti in Stazione Centrale a Milano. Milano..??\nRoba da matti. STOP IMMIGRAZIONE, subito.", "shared_text": "", "time": "2014-05-03 12:07:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10177372_10152114748998155_2671992236440250672_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=kDtmhYlefugAQnpbY1jAENt8mafWnrxii8qn5_5nk0akhgHwsXLIT5O-g&_nc_ht=scontent-cdt1-1.xx&oh=76c73855caea50be1ec137a86216706b&oe=5E8BC08E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152114671653155", "text": "GRILLO? NOI diciamo: FUORI SUBITO dall'Euro, LUI la tira per le lunghe. BERLUSCONI? E' il passato, lui come il PD. Chi vota loro, vota MERKEL!\nEcco la mia intervista di oggi a \"Il Secolo XIX\" di GENOVA,\u2026 Altro splendida citt\u00e0 dove vi aspetto in tanti oggi alle ore 16, Palazzo Ducale, per dire tutti insieme, senza tentennamenti: BASTA EURO!\nSe ti piace, fai girare.", "post_text": "GRILLO? NOI diciamo: FUORI SUBITO dall'Euro, LUI la tira per le lunghe. BERLUSCONI? E' il passato, lui come il PD. Chi vota loro, vota MERKEL!\nEcco la mia intervista di oggi a \"Il Secolo XIX\" di GENOVA,\u2026 Altro splendida citt\u00e0 dove vi aspetto in tanti oggi alle ore 16, Palazzo Ducale, per dire tutti insieme, senza tentennamenti: BASTA EURO!\nSe ti piace, fai girare.", "shared_text": "", "time": "2014-05-03 10:43:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10344309_10152114669373155_6311358012840340264_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=CKWWH35gzgYAQl2mbNvNyMZIKrMpPpAagDxp9mpy0GN7jenlhpc2Ka6qg&_nc_ht=scontent-cdt1-1.xx&oh=dc55c7d2ecf1f122ae696f41bf8819ec&oe=5E7D2F4F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152114066393155", "text": "Oggi sabato a GENOVA alle 16 a Palazzo Ducale per la nuova tappa del #bastaeuro e stasera e domani #Pontida14! Chi non viene \u00e8 un RENZEL!", "post_text": "Oggi sabato a GENOVA alle 16 a Palazzo Ducale per la nuova tappa del #bastaeuro e stasera e domani #Pontida14! Chi non viene \u00e8 un RENZEL!", "shared_text": "", "time": "2014-05-03 01:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10252169_10152114064213155_1816899116045099209_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=NIjJeEC1Si0AQn_lufR158CxkrztGwLFTMAX6fhc0kfzyXIKdwYXuu_ug&_nc_ht=scontent-cdt1-1.xx&oh=94537a3f7cda1a0b51c0c195433b7dcc&oe=5E465947", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152113779903155", "text": "E poi arrivi a Cagliari, e trovi 200 persone ad aspettarti per ascoltarti, e la sala che non riesce a contenerle tutte, e devono montare degli altoparlanti per chi \u00e8 fuori.\nE la stanchezza passa in un attimo.\nGrazie.", "post_text": "E poi arrivi a Cagliari, e trovi 200 persone ad aspettarti per ascoltarti, e la sala che non riesce a contenerle tutte, e devono montare degli altoparlanti per chi \u00e8 fuori.\nE la stanchezza passa in un attimo.\nGrazie.", "shared_text": "", "time": "2014-05-02 22:03:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10325310_10152113777308155_8894577611553352918_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=QIOd7iJR2y4AQlZtIky_7DBDq1uR9UU98NLjMk1p0RKzh2_1toIlftFqQ&_nc_ht=scontent-cdt1-1.xx&oh=7d6dc0a654254ff86da0029ed2df2ef8&oe=5E4587F6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152113494743155", "text": "Stupenda la Sardegna, stupendo il porto di Alghero, e stupenda la bandiera Catalana che sventola.", "post_text": "Stupenda la Sardegna, stupendo il porto di Alghero, e stupenda la bandiera Catalana che sventola.", "shared_text": "", "time": "2014-05-02 18:29:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10171841_10152113493568155_6305587631702568187_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=2toFVyeJm5MAQnul455qewUMTtitHj5CrC9dWDAg30p7pWWCcH5mB-kSw&_nc_ht=scontent-cdt1-1.xx&oh=882ac3a0b865d73df6364dca0ba2617b&oe=5E4156FF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2014-05-02 09:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10260022_10152112887838155_8196496206310734239_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=NIWrGc6rc14AQkSeYvs4FCbShmGcCxr8xKqkJ05YH8OGoLgN5iJifjzXw&_nc_ht=scontent-cdt1-1.xx&oh=e6093abc8c6741a3e0c4b3063b618e64&oe=5E81F78C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152112173003155", "text": "2.000 persone a Pontida con Van de Sfroos!\nMusica, dialetto, poesia.", "post_text": "2.000 persone a Pontida con Van de Sfroos!\nMusica, dialetto, poesia.", "shared_text": "", "time": "2014-05-01 22:56:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10174979_10152112172363155_4163927148706837985_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=605xBL-vlukAQkMtbUSrtZa_o8wf3bNn7eTeDry8bbCj7E5Iy8-XFkO2A&_nc_ht=scontent-cdt1-1.xx&oh=04f6464c7d60155d3b747580c70b37d2&oe=5E4A2167", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152112121078155", "text": "Di ROSSO solo il VINO!\nVittoria sempre con noi.", "post_text": "Di ROSSO solo il VINO!\nVittoria sempre con noi.", "shared_text": "", "time": "2014-05-01 22:16:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10329206_10152112120353155_8548788653238935176_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=h6T3s7Qdk_kAQmJMDYqIyi9kqnZgf6C304x7fVz2upmkg255hcuD-6dGA&_nc_ht=scontent-cdt1-1.xx&oh=2e2a90194625864d4de2b563ddbdd2ad&oe=5E4D3BA9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152112003113155", "text": "Spettacolooo!!!\nAltro che concerto di Roma, la MUSICA col Davide stasera \u00e8 a Pontida!!!", "post_text": "Spettacolooo!!!\nAltro che concerto di Roma, la MUSICA col Davide stasera \u00e8 a Pontida!!!", "shared_text": "", "time": "2014-05-01 20:58:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10152485_10152112001893155_5948493667746140429_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=UKxEykfX2IoAQknvmfrWWyTyone7IZhkXhexYM0KojZyzHE-30w3sRvTg&_nc_ht=scontent-cdt1-1.xx&oh=13dec5b3fd43c0d591a3ba852c27b17c&oe=5E42C0FD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152111458173155", "text": "100 volontari in cucina, centinaia di persone ospiti a pranzo, stasera musica (gratis) con Davide Van de Sfroos.\nSe non ci siete mai venuti, vi aspetto a Pontidaaaaa!", "post_text": "100 volontari in cucina, centinaia di persone ospiti a pranzo, stasera musica (gratis) con Davide Van de Sfroos.\nSe non ci siete mai venuti, vi aspetto a Pontidaaaaa!", "shared_text": "", "time": "2014-05-01 14:36:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10336694_10152111456263155_3018721840761413661_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=OqOrNnPCOA8AQliQbaPyJtflDjIHTGqX6EYfcFb7UHZ7NcLaA8-uLmEGQ&_nc_ht=scontent-cdt1-1.xx&oh=e42bf5b90112d9eeb93347c5ab43127b&oe=5E4ED0D0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152111363218155", "text": "Gente in fila da un'ora per il pranzo per i disoccupati e gli esodati a Pontida!\nIo scelgo casoncelli, costine, polenta e zola. Oggi dieta...", "post_text": "Gente in fila da un'ora per il pranzo per i disoccupati e gli esodati a Pontida!\nIo scelgo casoncelli, costine, polenta e zola. Oggi dieta...", "shared_text": "", "time": "2014-05-01 13:12:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1966796_10152111361948155_5687582924353865505_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=weVNe-heolIAQlLCkHVznpUef9bJ3vp20xXEn5Bs2JdGpFGoofM-qk0ZA&_nc_ht=scontent-cdt1-1.xx&oh=839bdbd0ac2bb948fc03533190fb9d2b&oe=5E40D596", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152110099678155", "text": "Guarda quanti giovani IMPEGNATI CON LA LEGA a Besana Brianza!", "post_text": "Guarda quanti giovani IMPEGNATI CON LA LEGA a Besana Brianza!", "shared_text": "", "time": "2014-04-30 19:24:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1620415_10152110098863155_8384244362675659634_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=Kp-c4y4xHlgAQl0wCC3WPuCQ3UdDta_3ekfQbdKeEuHfPLttBdJBhmmsA&_nc_ht=scontent-cdt1-1.xx&oh=92b7818ebe53486853d15b55876a3fcb&oe=5E8565E8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152110024368155", "text": "#Pontida14 - Domani, 1\u00b0 maggio, inizia la 4 giorni di PONTIDA: PRANZO DEI LAVORATORI e concerto acustico di Davide VAN DE SFROOS. Vi aspetto!", "post_text": "#Pontida14 - Domani, 1\u00b0 maggio, inizia la 4 giorni di PONTIDA: PRANZO DEI LAVORATORI e concerto acustico di Davide VAN DE SFROOS. Vi aspetto!", "shared_text": "", "time": "2014-04-30 18:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10288719_10152110023518155_6840242567263025151_n.png.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=58WqTmphnroAQmHTKbfUBdr8xHX5uqNEnVm1XI6U1HQrPIRH5L90NmtIw&_nc_ht=scontent-cdt1-1.xx&oh=35d438f1f8e887ecf72558cc3dd90ac9&oe=5E835AEB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152108494163155", "text": "Evvai!\nPiazza piena per la Lega anche ad Albenga, per Rosy Guarnieri sindaco, e per liberarci dalla gabbia dell'Euro.", "post_text": "Evvai!\nPiazza piena per la Lega anche ad Albenga, per Rosy Guarnieri sindaco, e per liberarci dalla gabbia dell'Euro.", "shared_text": "", "time": "2014-04-29 22:05:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10313579_10152108492793155_8173336734162442019_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=IQmP1bvmYUQAQkbgewePkYezeH915xLG01suxDbAk2G71E5Xfr-0so-xw&_nc_ht=scontent-cdt1-1.xx&oh=405b4ef56dd0177dc42bf194adf43645&oe=5E4487BC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152108400703155", "text": "Ecco la bella piazza leghista di Sanremo, fra poco sono ad Albenga.", "post_text": "Ecco la bella piazza leghista di Sanremo, fra poco sono ad Albenga.", "shared_text": "", "time": "2014-04-29 21:02:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10250137_10152108400418155_7139180614393561099_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=YNLMJDCcPNYAQmMNZKuQkzySfzJjm_NoHwgEeIAwW6SL6jJtFSPX6zTIw&_nc_ht=scontent-cdt1-1.xx&oh=c188a3caf6e33c405d21ba947a6871fc&oe=5E7D9E3A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152108379908155", "text": "Gente in coda anche a Sanremo per firmare i Referendum!", "post_text": "Gente in coda anche a Sanremo per firmare i Referendum!", "shared_text": "", "time": "2014-04-29 20:46:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10330369_10152108379138155_5496604317259882234_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=iiy_xmiy4eMAQmAArKAAFGsHK3FXEccVmUYAt3DqsB5rTgOrGIAXKEAfg&_nc_ht=scontent-cdt1-1.xx&oh=535c3ac8884e883e8ce47acdb35bfedb&oe=5E4CB9FA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152106795413155", "text": "Pienone anche a Pavia!\nContro il pensiero unico, le Idee.\nE ora sono a PORTA A PORTA su Rai Uno, se siete ancora in piedi.", "post_text": "Pienone anche a Pavia!\nContro il pensiero unico, le Idee.\nE ora sono a PORTA A PORTA su Rai Uno, se siete ancora in piedi.", "shared_text": "", "time": "2014-04-28 23:50:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10299010_10152106794338155_7469141211082175460_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=Z93wTpWPl7sAQmPDlvnu2m5csZzyUVScclk0sqIJwMS-nyr71IcFa9fcg&_nc_ht=scontent-cdt1-1.xx&oh=e9b6ee89897d8626d4ff16c4b52572e8&oe=5E8802A4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152106027833155", "text": "Anche se piove, a NERVIANO sotto i portici si raccolgono le firme per i 5 Referendum.\nBravi i militanti!!!", "post_text": "Anche se piove, a NERVIANO sotto i portici si raccolgono le firme per i 5 Referendum.\nBravi i militanti!!!", "shared_text": "", "time": "2014-04-28 16:10:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10155435_10152106025543155_4826617878988603639_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=rYbeiFT6IVoAQkawR-7bnT92MCPj-7SsJVCnBl3x2F6mMaLDSzAXusClw&_nc_ht=scontent-cdt1-1.xx&oh=a9249b2f1e151a8900f6f06ec28bf8e2&oe=5E7F2057", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152105855508155", "text": "In attesa della 4 giorni di PONTIDA, siete tutti invitati MERCOLEDI' SERA a MONZA per la nuova tappa del #bastaeuro TOUR. Vi aspetto NUMEROSISSIMI!", "post_text": "In attesa della 4 giorni di PONTIDA, siete tutti invitati MERCOLEDI' SERA a MONZA per la nuova tappa del #bastaeuro TOUR. Vi aspetto NUMEROSISSIMI!", "shared_text": "", "time": "2014-04-28 14:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1010381_10152105853973155_5805738300567378951_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=wAdp1hsWFTwAQm2vcNiL9MkMoBnx8kr5b3D8Abj4e0rnvhx2tpx_sFTRQ&_nc_ht=scontent-cdt1-1.xx&oh=0ed49a241bcd20da55921b07a8cb377c&oe=5E898BC2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152105669583155", "text": "\u00abNos id\u00e9es convergent \u00e0 99% avec celles de Marine Le Pen / Le nostre idee convergono al 99% con quelle di Marine Le Pen\u00bb [Le Figaro - 28/04/2014]", "post_text": "\u00abNos id\u00e9es convergent \u00e0 99% avec celles de Marine Le Pen / Le nostre idee convergono al 99% con quelle di Marine Le Pen\u00bb [Le Figaro - 28/04/2014]", "shared_text": "", "time": "2014-04-28 11:26:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10272772_10152105669328155_73189063185065591_o.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=LkK7Se7ecGoAQntoDY68XZ98kem_PMC3HvDAH40aTQyzE97E52HXgsqZA&_nc_ht=scontent-cdt1-1.xx&oh=efc613614eb386591b4adb3657b5e0f2&oe=5E8A01A2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152102306638155", "text": "Fantastiche le donne e gli uomini che stanno cucinando alla festa leghista di Zanica!\nE che profumoooo!", "post_text": "Fantastiche le donne e gli uomini che stanno cucinando alla festa leghista di Zanica!\nE che profumoooo!", "shared_text": "", "time": "2014-04-26 22:04:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10277249_10152102302088155_918091577744139007_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=fVrNCNsc5lUAQnl_7FWzMb7Zl8m8Za5UPH8GSWAqdGygUfTjU5qPr5lgg&_nc_ht=scontent-cdt1-1.xx&oh=54635952f4fc7e1fce18607ce62f036e&oe=5E8B0336", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152102122648155", "text": "Dopo 5 anni di buona amministrazione, la squadra della Lega torna per vincere a Spirano (Bergamo).\nBravi ragazzi!", "post_text": "Dopo 5 anni di buona amministrazione, la squadra della Lega torna per vincere a Spirano (Bergamo).\nBravi ragazzi!", "shared_text": "", "time": "2014-04-26 20:07:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10171684_10152102120598155_3641228225015649892_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=sxJqG251ZZcAQl1OZERuQ_Y0mfr3S2DY41mn2uhsq48bA5I4J9yT3jj2w&_nc_ht=scontent-cdt1-1.xx&oh=a521dd89483ac5297fd5b001482c4f45&oe=5E40EB2E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152101715553155", "text": "Per fortuna fra i bimbi c'\u00e8 ancora un Milan che vince!", "post_text": "Per fortuna fra i bimbi c'\u00e8 ancora un Milan che vince!", "shared_text": "", "time": "2014-04-26 15:34:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10253766_10152101714953155_2551643839624185150_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=5kn-eDqHh_MAQmwu3yOIKSf4YVX_ZJcDleo8JlQSkOxnRQLt3SBGom1yw&_nc_ht=scontent-cdt1-1.xx&oh=d27fccb2f9e791ed53c7653c6566e744&oe=5E45217D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152101500523155", "text": "Anche il sindaco di Tribiano, di Fratelli d'Italia, firma i Referendum della Lega: bravo!", "post_text": "Anche il sindaco di Tribiano, di Fratelli d'Italia, firma i Referendum della Lega: bravo!", "shared_text": "", "time": "2014-04-26 12:34:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10155265_10152101499158155_5027241651404974208_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=Fyla58CoQ9cAQnr-8GOE6DxV6ZgEaTQ2mQa6_VB2CJTJaTHx3mkcIXxWQ&_nc_ht=scontent-cdt1-1.xx&oh=a2ab3a598c9d230722df4eb81a095886&oe=5E423F07", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152101447118155", "text": "Grande gruppo a Pioltello!\nVincere in Comune,e liberarci dall'EURO-FOLLIA.", "post_text": "Grande gruppo a Pioltello!\nVincere in Comune,e liberarci dall'EURO-FOLLIA.", "shared_text": "", "time": "2014-04-26 11:38:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10171096_10152101444388155_8773220387024389213_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Ka_DKxjifAQAQnaPR3S9xiXrrz6f1_RWkTy_I4tPAvVCbEVsvKGsISQaA&_nc_ht=scontent-cdt1-1.xx&oh=384f44c374871bf1bab6cb029eb8f1c6&oe=5E86794F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": null, "text": "", "post_text": "", "shared_text": "", "time": "2014-04-26 01:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p160x160/10295730_10152100755098155_2862238356511935154_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=9z7rbCSkOSQAQmXHxGl74RnMpnv0K6AeCFCcxQgOh-MCepmyAvA-3n3bg&_nc_ht=scontent-cdt1-1.xx&oh=58a8af467c41fd01141c71432c797e12&oe=5E818895", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152100372903155", "text": "Pronto con Mentana.\nEx Manzoniano come me, purtroppo interista...", "post_text": "Pronto con Mentana.\nEx Manzoniano come me, purtroppo interista...", "shared_text": "", "time": "2014-04-25 22:31:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10277705_10152100372198155_7485179986975748934_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=YFUF1NgzCw0AQkS2VnSowxhHijNbT_T3-0euq_Ymu6Z7g-GnCu6bQ1BaQ&_nc_ht=scontent-cdt1-1.xx&oh=6f8f11d8295d3d284e42ef61f31b89bb&oe=5E451206", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152100289193155", "text": "Per distrarmi da questo Milan... bucatini cacio e pepe!\nDietetici.", "post_text": "Per distrarmi da questo Milan... bucatini cacio e pepe!\nDietetici.", "shared_text": "", "time": "2014-04-25 21:44:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10258255_10152100288358155_3434629773236419236_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=YQBWWoOuG3QAQnwmu2Cmlu7IcuvcUm16e9XVTMC3uO69PaEUhaydfqwAQ&_nc_ht=scontent-cdt1-1.xx&oh=5053378237ebe678e7b2261027bd8203&oe=5E46FBD9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152100011808155", "text": "Ieri a Quinto di Treviso. Viva San Marco!", "post_text": "Ieri a Quinto di Treviso. Viva San Marco!", "shared_text": "", "time": "2014-04-25 18:42:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1897935_10152100011358155_171191131145155070_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=OmCCfxZRgKkAQncKlvQJL-vwdPQ0rO0TmyqWD2mPosAJt_UJqau73XNUg&_nc_ht=scontent-cdt1-1.xx&oh=bdeec1abb1016a6cdd4c77e1a15bf626&oe=5E86F9E1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152099780923155", "text": "Caspita, lo rifanno bene l'asfalto a Milano... Bravo Pisapia!", "post_text": "Caspita, lo rifanno bene l'asfalto a Milano... Bravo Pisapia!", "shared_text": "", "time": "2014-04-25 16:14:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10258363_10152099779898155_1825359822100666737_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=zQo19RWfq0cAQne3zsjD1NafIVLJjkQ9noTgRhTl5QVGUP_FGX-LgpHXA&_nc_ht=scontent-cdt1-1.xx&oh=ce811c8604a905293efded82b0b6893f&oe=5E7C91A8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152098383143155", "text": "Sala strapiena a TREVISO per parlare di Euro, di lavoro e di Futuro.\nAll'inizio avevo dei dubbi, ma ora sono certo che la Gente non vuole morire di banche, di finanza e di Euro.\nRiportiamo al centro di tutto l'Uomo e la Donna, non il denaro e il profitto!", "post_text": "Sala strapiena a TREVISO per parlare di Euro, di lavoro e di Futuro.\nAll'inizio avevo dei dubbi, ma ora sono certo che la Gente non vuole morire di banche, di finanza e di Euro.\nRiportiamo al centro di tutto l'Uomo e la Donna, non il denaro e il profitto!", "shared_text": "", "time": "2014-04-24 21:51:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10245545_10152098378863155_8515312713985405665_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=l4Qp3uxz21AAQksducNZTT3u9SZ1Abxn1dSpbNwwusNMPy5mVQlwaOfkQ&_nc_ht=scontent-cdt1-1.xx&oh=1adf2bf0980a5568def45df75ebc0f63&oe=5E3E7DFE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152095787243155", "text": "Non riusciamo ad arrivare in Chiesa, ma sar\u00e0 il vento del lago a portarti il nostro saluto.\nBuon viaggio ragazza!", "post_text": "Non riusciamo ad arrivare in Chiesa, ma sar\u00e0 il vento del lago a portarti il nostro saluto.\nBuon viaggio ragazza!", "shared_text": "", "time": "2014-04-23 15:19:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10169198_10152095786178155_5729890768455075509_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=o9uoleCjI2EAQk2MKdvAfKoGGDZsqZhAxQl110aB24RsBvs1FDrgfTCAQ&_nc_ht=scontent-cdt1-1.xx&oh=e4bd239cfdd4965114ff0d85a18e6978&oe=5E4B9FA6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152095542758155", "text": "Mercato di Milano, superate le 150 FIRME per ciascuno dei 5 Referendum!\nParecchie persone che NON VOTAVANO PI\u00d9 DA ANNI, ci hanno ringraziato e ci hanno detto \"questa volta voto Lega\".\nAvanti!!!", "post_text": "Mercato di Milano, superate le 150 FIRME per ciascuno dei 5 Referendum!\nParecchie persone che NON VOTAVANO PI\u00d9 DA ANNI, ci hanno ringraziato e ci hanno detto \"questa volta voto Lega\".\nAvanti!!!", "shared_text": "", "time": "2014-04-23 12:13:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10247238_10152095541563155_6592283193957573778_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=KlyQ8-LqqIkAQlHsFwXB4xq-Hw4oAVYCZ-wjeJEVVv1-kdwaWIWh6RIPQ&_nc_ht=scontent-cdt1-1.xx&oh=a4af3815d84e5c3f07c9fceaeb1ace45&oe=5E793E9F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152095304668155", "text": "Ore 7.30, gente gi\u00e0 in fila, fuori dalla Stazione Nord di Milano, per firmare contro la Legge Fornero!\nVoi siete a posto con la coscienza?", "post_text": "Ore 7.30, gente gi\u00e0 in fila, fuori dalla Stazione Nord di Milano, per firmare contro la Legge Fornero!\nVoi siete a posto con la coscienza?", "shared_text": "", "time": "2014-04-23 07:59:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1926940_10152095302393155_2396467863448228343_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=SocAfF-qYLMAQlMGsPQYRY4SU6xD-vvhLgjfIWfr2FzS9Kp1fJXa_bX5g&_nc_ht=scontent-cdt1-1.xx&oh=83d30b07d41146fc3630fe501bc06c1d&oe=5E8B3CE7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152093859563155", "text": "Questa settimana DOPPIO APPUNTAMENTO #BASTAEURO. Gioved\u00ec SERA a TREVISO e venerd\u00ec MATTINA, 25 aprile, a REGGIO EMILIA.\nLiberazione dall'EURO: non 'si pu\u00f2', SI DEVE! Vi aspettiamo.\nE diffondete ai vostri amici il manuale 'Come uscire dall'incubo', che trovate sul sito WWW.BASTAEURO.ORG", "post_text": "Questa settimana DOPPIO APPUNTAMENTO #BASTAEURO. Gioved\u00ec SERA a TREVISO e venerd\u00ec MATTINA, 25 aprile, a REGGIO EMILIA.\nLiberazione dall'EURO: non 'si pu\u00f2', SI DEVE! Vi aspettiamo.\nE diffondete ai vostri amici il manuale 'Come uscire dall'incubo', che trovate sul sito WWW.BASTAEURO.ORG", "shared_text": "", "time": "2014-04-22 15:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10245543_10152093857673155_8960996745081764272_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=284CzWYVPc4AQmYadJiqbDacz7PJhwNMa6C6tfT1Q9JSK89_U4Zolcvdg&_nc_ht=scontent-cdt1-1.xx&oh=83dba7099d881da2c00256ed69c6e848&oe=5E448F04", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.BASTAEURO.ORG/?fbclid=IwAR3D6m2f9NcAJ7-Zh4DfwQKWDglI61x3BU26aKZGOvyrrkmwBxVvzjePjvE"} +{"post_id": "10152089406658155", "text": "Ciao Amici, auguri di buona Pasqua!\nIl nostro pensiero a Vittoria, e a tutti gli Amici che hanno percorso il sentiero con noi, e adesso ci accompagnano da Lass\u00f9.", "post_text": "Ciao Amici, auguri di buona Pasqua!\nIl nostro pensiero a Vittoria, e a tutti gli Amici che hanno percorso il sentiero con noi, e adesso ci accompagnano da Lass\u00f9.", "shared_text": "", "time": "2014-04-20 11:37:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10167971_10152089405463155_2689653761569058875_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=01pJkJOERM0AQnoKkr0MDgPMXcKNFlv199Yb8HKujQP_kLctgekymL7Gw&_nc_ht=scontent-cdt1-1.xx&oh=7537eb498e1060261485741388891adf&oe=5E87531C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152087583618155", "text": "Buon viaggio\npiccola grande\nVittoria Cola,\nsorriso\ndella Lega\nin Valtellina,\nquest\u2019anno\nPontida\nnon sar\u00e0 la\nstessa.", "post_text": "Buon viaggio\npiccola grande\nVittoria Cola,\nsorriso\ndella Lega\nin Valtellina,\nquest\u2019anno\nPontida\nnon sar\u00e0 la\nstessa.", "shared_text": "", "time": "2014-04-19 11:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/984034_10152087583163155_7956165754520928466_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=80ea_YH42EMAQkbu2C-1KVHZbQdxkdxv0ulAL_03XSk02D0cx0qWrnX8Q&_nc_ht=scontent-cdt1-1.xx&oh=44cd17635554729d047e1ade7808e28f&oe=5E80E317", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152083416883155", "text": "Qui Strasburgo.\nCon tutto il rispetto per gli animali del Vietnam, penso che l'Europa dovrebbe preoccuparsi PRIMA del benessere degli esseri viventi, umani o animali, in Europa!\nO no?", "post_text": "Qui Strasburgo.\nCon tutto il rispetto per gli animali del Vietnam, penso che l'Europa dovrebbe preoccuparsi PRIMA del benessere degli esseri viventi, umani o animali, in Europa!\nO no?", "shared_text": "", "time": "2014-04-17 12:19:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10271509_10152083408613155_4311220410770434979_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=kvZZDkgb6h4AQm6DwnuA0Vdsoyk-EL7I-FCRdq9KiU8JLRdZ9dPDuN18Q&_nc_ht=scontent-cdt1-1.xx&oh=04d7d15ce5d57a6eca4f04382b95c30e&oe=5E469DB4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152081640273155", "text": "Kabobo? Pena di morte no, ergastolo s\u00ec!\nCosa ne pensate?", "post_text": "Kabobo? Pena di morte no, ergastolo s\u00ec!\nCosa ne pensate?", "shared_text": "", "time": "2014-04-16 12:18:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10005904_10152081639228155_8004759374610431304_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=gMF6xI6mLHgAQl1sI75vMVgTyXotpCr50k_t797Sl4wecw_gTmi1TSk8w&_nc_ht=scontent-cdt1-1.xx&oh=f445ff43ab76b70ea90ae1ab4fbf39db&oe=5E48B5D1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152080256118155", "text": "Mezz'ora di incontro con Marine Le Pen.\nUniti nella battaglia contro l'Euro dei disastri e delle banche, contro l'immigrazione di massa.\nIo e Marine ci crediamo: il 25 maggio possiamo liberarci dalla gabbia e ridare forza al lavoro, al futuro, al sogno!", "post_text": "Mezz'ora di incontro con Marine Le Pen.\nUniti nella battaglia contro l'Euro dei disastri e delle banche, contro l'immigrazione di massa.\nIo e Marine ci crediamo: il 25 maggio possiamo liberarci dalla gabbia e ridare forza al lavoro, al futuro, al sogno!", "shared_text": "", "time": "2014-04-15 18:29:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/10170964_10152080246118155_5350309750764792616_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=OzXVARE2nA0AQlnogboIi5adh-bNxenuz3HGqzyy0QDJD_9gbPN2D1oPg&_nc_ht=scontent-cdt1-1.xx&oh=15c7e9508b54bb5a7466272449e99247&oe=5E813B50", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152078668908155", "text": "Un vassoio di tortelli di zucca, le canzoni di Tenco sullo stereo.\nLa mia bimba che gioca col libro di Peppa Pig, il mio bimbo che ha preso 10 nell'interrogazione di Storia.\nUna splendida Comunit\u00e0 di Amici.\nNon cambierei questo, nemmeno per tutti i soldi del mondo!", "post_text": "Un vassoio di tortelli di zucca, le canzoni di Tenco sullo stereo.\nLa mia bimba che gioca col libro di Peppa Pig, il mio bimbo che ha preso 10 nell'interrogazione di Storia.\nUna splendida Comunit\u00e0 di Amici.\nNon cambierei questo, nemmeno per tutti i soldi del mondo!", "shared_text": "", "time": "2014-04-14 20:17:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1907980_10152078664188155_5975997798882970835_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=NzX12I_pu5UAQn2kLEI-SZSWb4j2N8zOV_jEiyMDYCO3ZsGFLsxvbyHag&_nc_ht=scontent-cdt1-1.xx&oh=eb232588a9b7015540ffb7341bfa7fb8&oe=5E8C052E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152078397448155", "text": "Ascoltiamoci un po' di BUONA MUSICA!", "post_text": "Ascoltiamoci un po' di BUONA MUSICA!", "shared_text": "", "time": "2014-04-14 17:19:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10155514_10152078396458155_5100001321518528472_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=xAwjyKc31xgAQkE2LMmF4PxEPUvG5bP6MsQDe7qgZdE4FCBtpvsft1QlQ&_nc_ht=scontent-cdt1-1.xx&oh=0dd4ba82e2816cc85e8a50ebdd46fac2&oe=5E4085C7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152077982813155", "text": "Gi\u00e0 raccolte 150.000 firme per cancellare la legge Fornero! Dai, dobbiamo arrivare a 500.000, si pu\u00f2 firmare in tutti i Comuni italiani. Per info: 02 66.234.234 o www.vieniafirmare.org", "post_text": "Gi\u00e0 raccolte 150.000 firme per cancellare la legge Fornero! Dai, dobbiamo arrivare a 500.000, si pu\u00f2 firmare in tutti i Comuni italiani. Per info: 02 66.234.234 o www.vieniafirmare.org", "shared_text": "", "time": "2014-04-14 12:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10177471_10152077982153155_3485895390222078317_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=JlWP12xRloEAQkr_P3KzPv1mNdHFo5gh_q2V7njG93oCNVG5E-ObenKKQ&_nc_ht=scontent-cdt1-1.xx&oh=40b987cc1258cc375154d0fb423db7d2&oe=5E478B88", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR1iQ4EMa3Yewco-6c6ZWMCdoXfT4RGZedkSZmZbONAPksFRXNr-F5dWyWA"} +{"post_id": "10152075998823155", "text": "Non ci credo.\nPerfino il Corriere della Sera si accorge della battaglia della Lega per imporre regole, tasse e sicurezza nel mondo della prostituzione.\nChe sta succedendo secondo voi??", "post_text": "Non ci credo.\nPerfino il Corriere della Sera si accorge della battaglia della Lega per imporre regole, tasse e sicurezza nel mondo della prostituzione.\nChe sta succedendo secondo voi??", "shared_text": "", "time": "2014-04-13 12:29:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1520756_10152075997438155_7323261200875173618_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=4tRhhHYZxGUAQkVZSDsdeakWF6UBY6eUx8Hq-eSxDO6q8E_pr38d5IGbw&_nc_ht=scontent-cdt1-1.xx&oh=adbde2aee1239a2ddee90044a2a73d1f&oe=5E4D2C45", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152075889928155", "text": "Gente in piedi, e gente che non riesce a entrare in sala, a BERGAMO per il Basta Euro Tour.\nDai, dai, dai!", "post_text": "Gente in piedi, e gente che non riesce a entrare in sala, a BERGAMO per il Basta Euro Tour.\nDai, dai, dai!", "shared_text": "", "time": "2014-04-13 10:49:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10174918_10152075886378155_501803862174804683_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=KwxxzCu-TKMAQk27NF2ug4GApwkbC13eCTiQte-LOK2iKWoSTkvFVOa-Q&_nc_ht=scontent-cdt1-1.xx&oh=8e0941cfec910b2e045623fa221066f5&oe=5E7C5B5D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152074402438155", "text": "Arrivato a Roma per un bellissimo convegno.\nFuori dalla gabbia dell'Euro, e riparte la speranza!", "post_text": "Arrivato a Roma per un bellissimo convegno.\nFuori dalla gabbia dell'Euro, e riparte la speranza!", "shared_text": "", "time": "2014-04-12 16:22:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1511016_10152074401218155_1515561689577338279_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=Qb4koA1tygcAQne5tgYrFYAXKD4aHdLWXGmv0gjdggs9c0R0gNQO98qWg&_nc_ht=scontent-cdt1-1.xx&oh=4b43ab861690dbecee83cade1b0df7eb&oe=5E504ED7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152072687793155", "text": "Si potr\u00e0 ancora sognare, vero???\nQuesto \u00e8 PANORAMA oggi in edicola.", "post_text": "Si potr\u00e0 ancora sognare, vero???\nQuesto \u00e8 PANORAMA oggi in edicola.", "shared_text": "", "time": "2014-04-11 17:41:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1422501_10152072687643155_5208781227139185885_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=_50ZWUuiIdYAQm0cP3ogGmj6UlnTZe-u3y6vcghyj3HHdrsmK1lvo7-ZA&_nc_ht=scontent-cdt1-1.xx&oh=49c08728d5b9999a113b955b2ece4b56&oe=5E49F3B0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152072230608155", "text": "DAI! CANCELLIAMOLA con una FIRMA!\nSe PORTI 5 AMICI facciamo alla svelta!\nIn TUTTI I MUNICIPI italiani o ai gazebo Lega al Nord questo weekend. Info: 02 66.234.234 o www.vieniafirmare.org", "post_text": "DAI! CANCELLIAMOLA con una FIRMA!\nSe PORTI 5 AMICI facciamo alla svelta!\nIn TUTTI I MUNICIPI italiani o ai gazebo Lega al Nord questo weekend. Info: 02 66.234.234 o www.vieniafirmare.org", "shared_text": "", "time": "2014-04-11 11:42:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10007272_10152072229863155_8577441405839667718_o.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=KsIIIuwzR-4AQmT_n4v0zC8a6ViXyoe0yrBJ78rDwE9aFeQdcL9R4znvg&_nc_ht=scontent-cdt1-1.xx&oh=5ca64c56247bd21edd48eee7fab1cc83&oe=5E45D36D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR1e6HlXfHqXlAZfWiZOV4UCQQJVkK3MO9sRtATaVwxFO-aNhemHOAD1ou0"} +{"post_id": "10152070429798155", "text": "In Comune a Citt\u00e0 di Castello, nella bellissima Umbria.\nAnche qui mattinata di FIRME per cancellare la Fornero e la Merlin.\nVuoi darci una mano? Chiama lo 02 66234234", "post_text": "In Comune a Citt\u00e0 di Castello, nella bellissima Umbria.\nAnche qui mattinata di FIRME per cancellare la Fornero e la Merlin.\nVuoi darci una mano? Chiama lo 02 66234234", "shared_text": "", "time": "2014-04-10 12:14:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10001395_10152070427618155_3002589164998143264_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=JNqJQJwatx4AQloEHcuVyAfUs73TQZYbrZ_wGMwkAMXEZMa5VJKfDNl8w&_nc_ht=scontent-cdt1-1.xx&oh=5438e7b0c27a3b2140d0173eccb6dba9&oe=5E806E71", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152068939673155", "text": "CANCELLIAMO la vergogna della legge FORNERO con una FIRMA!\nSABATO e DOMENICA la LEGA torna in centinaia di piazze al Nord con i gazebo per FIRMARE i REFERENDUM di Libert\u00e0.\nTrova la mappa in aggiornamento su www.vieniafirmare.org.\nOPPURE puoi firmare nei MUNICIPI di TUTTA ITALIA!", "post_text": "CANCELLIAMO la vergogna della legge FORNERO con una FIRMA!\nSABATO e DOMENICA la LEGA torna in centinaia di piazze al Nord con i gazebo per FIRMARE i REFERENDUM di Libert\u00e0.\nTrova la mappa in aggiornamento su www.vieniafirmare.org.\nOPPURE puoi firmare nei MUNICIPI di TUTTA ITALIA!", "shared_text": "", "time": "2014-04-09 14:41:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/10256191_10152068939523155_9093796914099722727_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=G_4vvzA6g8AAQnQIKxojwirtNaxCkcPF5zJfH8rjwnEWL7U0bp9UKGVwA&_nc_ht=scontent-cdt1-1.xx&oh=8eabdf99189869f469e6f15cc4aadf96&oe=5E4F74CC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR31K_Os4orgwr8yyW74q9ka_GZilcdiqi2dF7nEM5qa59QQ-VjGqqpHqRI"} +{"post_id": "10152068744933155", "text": "In coda anche a ROMA per cancellare la legge Fornero!\nInfo. 02 66234234 o vieniafirmare.org", "post_text": "In coda anche a ROMA per cancellare la legge Fornero!\nInfo. 02 66234234 o vieniafirmare.org", "shared_text": "", "time": "2014-04-09 11:30:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1480529_10152068744118155_6362659416581246770_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=5jpMYKGMjh8AQl91q10vqx9_0cLdgU7AC35VqyOtS-vYq_IHhiaC0UkUQ&_nc_ht=scontent-cdt1-1.xx&oh=fa79d3db1c7f73f937e9b2dcdbf66d5f&oe=5E4910E2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://vieniafirmare.org/?fbclid=IwAR0J7YY7CICDc3WFq_pq3A2_mm9CAAkOOgMfTgM2oeYKTD-6XNIRsB-TWkQ"} +{"post_id": "10152067669168155", "text": "Altri 1.000 CLANDESTINI in arrivo, bastaaaaa!\nRenzi e Alfano, complici di una invasione annunciata.\nIo non ci sto, la Lega non ci sta.\nCLANDESTINO \u00c8 REATO!\nSei d'accordo?", "post_text": "Altri 1.000 CLANDESTINI in arrivo, bastaaaaa!\nRenzi e Alfano, complici di una invasione annunciata.\nIo non ci sto, la Lega non ci sta.\nCLANDESTINO \u00c8 REATO!\nSei d'accordo?", "shared_text": "", "time": "2014-04-08 18:28:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10177314_10152067666823155_8353350774271298686_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=2e_ZptiWeQ0AQn6QCZK_qvNYww3pA5qt2AFFBEToDy__VvZKIVma1-xkQ&_nc_ht=scontent-cdt1-1.xx&oh=ddfdfd2445418dabd1360dc23d39279a&oe=5E4C5CD2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152065886843155", "text": "PISAPIA ha abbandonato Milano e la sua periferia.\nOggi abbiamo portato davanti a Palazzo Marino decine di sacchi di rifiuti, raccolti dai volontari Leghisti nei parchi e nelle piazze.\nPisapia, preparati allo sfratto!", "post_text": "PISAPIA ha abbandonato Milano e la sua periferia.\nOggi abbiamo portato davanti a Palazzo Marino decine di sacchi di rifiuti, raccolti dai volontari Leghisti nei parchi e nelle piazze.\nPisapia, preparati allo sfratto!", "shared_text": "", "time": "2014-04-07 17:47:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1505326_10152065884583155_1153929655_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=apqWNi9_vukAQmAtVR6dQdkcwqenShJQkk0QlcoMSTeB0X1a11ftnXIRg&_nc_ht=scontent-cdt1-1.xx&oh=d334e9d579281e2a1d2a050941fbbe54&oe=5E42ABF8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152064508193155", "text": "Un mare di bandiere, di idee, di bambini, di gente che vuole lavorare e vivere tranquilla.\nCi arresteranno tutti?", "post_text": "Un mare di bandiere, di idee, di bambini, di gente che vuole lavorare e vivere tranquilla.\nCi arresteranno tutti?", "shared_text": "", "time": "2014-04-06 21:46:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1610087_10152064506348155_1219714197_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=SF8RXjwzM3gAQmYi2yOiIYY2lWsYfYlB34jpAMk67F2luJUJigYUsttKg&_nc_ht=scontent-cdt1-1.xx&oh=06d1d8b7426f81deb7656c416974aae4&oe=5E44D905", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152063818918155", "text": "Ma sapete che SACILE \u00e8 una cittadina veramente bellissima???\nE bellissimo \u00e8 anche vedere la gente da stamattina in coda al gazebo per firmare i Referendum.\nFORNERO, non farti vedere in giro!", "post_text": "Ma sapete che SACILE \u00e8 una cittadina veramente bellissima???\nE bellissimo \u00e8 anche vedere la gente da stamattina in coda al gazebo per firmare i Referendum.\nFORNERO, non farti vedere in giro!", "shared_text": "", "time": "2014-04-06 14:08:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10155364_10152063817633155_2040852022_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=4p4XGkSCEc8AQmFAGxgYt1aeDDo6XwXat6ox82HStD5zr9g9g0E6dnKmQ&_nc_ht=scontent-cdt1-1.xx&oh=8d2b1db43873055b515aa6f9d4e60a6a&oe=5E3EDCA4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152063731053155", "text": "Incontro con gli operai della Electrolux di Porcia, centinaia di posti di lavoro a rischio.\nL'Europa che si basa solo sul profitto e lo sfruttamento, non \u00e8 la mia Europa!\nDifendiamo il LAVORO in Italia.", "post_text": "Incontro con gli operai della Electrolux di Porcia, centinaia di posti di lavoro a rischio.\nL'Europa che si basa solo sul profitto e lo sfruttamento, non \u00e8 la mia Europa!\nDifendiamo il LAVORO in Italia.", "shared_text": "", "time": "2014-04-06 12:49:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10176122_10152063729813155_1978111042_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=t5NGgb4qvKUAQnqZ71FJn2jkEZsLFUuOy6JWdnFFFSPFeMKOw90K_MFDQ&_nc_ht=scontent-cdt1-1.xx&oh=984b26a81743b036d2aca1212a52dcbb&oe=5E841911", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152063493363155", "text": "Colazione energetica!\nSpeck, formaggi, yogurt e zabaione, pronto per le tappe friulane di oggi: Brugnera, Pasiano di Pordenone, Porcia e pranzo a Sacile.\nE alle 18..... VERONA!", "post_text": "Colazione energetica!\nSpeck, formaggi, yogurt e zabaione, pronto per le tappe friulane di oggi: Brugnera, Pasiano di Pordenone, Porcia e pranzo a Sacile.\nE alle 18..... VERONA!", "shared_text": "", "time": "2014-04-06 08:59:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1484127_10152063491313155_132469795_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=niTGrSwe-AMAQm1ctMWb6QqsDZvScZQad2pE1sxXwbH5Y7g3BGm1ylLGg&_nc_ht=scontent-cdt1-1.xx&oh=bd1fa1415b990e929196e8bc5f20db63&oe=5E430EF0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152062731388155", "text": "Nuova felpa FRIUL (cos\u00ec CROZZA sar\u00e0 contento), buona musica, ottimo rosso e tantissimi amici!\nSempre pi\u00f9 Innamorato della Lega.", "post_text": "Nuova felpa FRIUL (cos\u00ec CROZZA sar\u00e0 contento), buona musica, ottimo rosso e tantissimi amici!\nSempre pi\u00f9 Innamorato della Lega.", "shared_text": "", "time": "2014-04-05 22:40:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10174977_10152062729088155_1672775916_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=5-o6lrjvMoQAQnurGjmIor6-MEosjJ0yO4yjW-DR6aIGJz94ohOktcBxg&_nc_ht=scontent-cdt1-1.xx&oh=21c53ffd9b494f296f422a15273574cf&oe=5E44940B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152062534693155", "text": "Domenica vi aspetto a VERONA, ore 18.00, piazza dei Signori > #pacificamenteliberi, da Nord a Sud", "post_text": "Domenica vi aspetto a VERONA, ore 18.00, piazza dei Signori > #pacificamenteliberi, da Nord a Sud", "shared_text": "", "time": "2014-04-05 20:17:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10170890_10152057086323155_614238510_n.png.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=N1UQTJ6aggAAQnq_maRWHKbU6jsRJeuOmFybP5jC2pD_vcnDHOuP9OWuw&_nc_ht=scontent-cdt1-1.xx&oh=c2ef980456402b303ba65e181a038715&oe=5E7CDE61", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152062384713155", "text": "Incredibile: pi\u00f9 di 500 persone, in un paese sulle montagne di Udine, per preparare il Futuro!\nFuori dalla gabbia dell'Euro, indipendenti!", "post_text": "Incredibile: pi\u00f9 di 500 persone, in un paese sulle montagne di Udine, per preparare il Futuro!\nFuori dalla gabbia dell'Euro, indipendenti!", "shared_text": "", "time": "2014-04-05 18:49:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/734534_10152062380213155_826582707_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=Ym4Vf-p6T0QAQkJSybRJwOdXAAS5-9kIaaiSuObQ-JuEASLuwAQM6JNBg&_nc_ht=scontent-cdt1-1.xx&oh=11b3b40bbeca3519029984cd5eb9e180&oe=5E40B6E0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152062258633155", "text": "#BASTAEURO tour\nAlle ore 17.30 DIRETTA STREAMING da Monte di BUJA (UD) su www.bastaeuro.org.\nVi aspetto!", "post_text": "#BASTAEURO tour\nAlle ore 17.30 DIRETTA STREAMING da Monte di BUJA (UD) su www.bastaeuro.org.\nVi aspetto!", "shared_text": "", "time": "2014-04-05 17:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10177956_10152062257868155_1072839928_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=UqbR9pLC6UMAQks4CmMZvN7AQnFFwYj3AaobXw9tuAgF2-bWYztBMUF9A&_nc_ht=scontent-cdt1-1.xx&oh=96b4107c4394f0bc8aaad74fedd4898c&oe=5E8D08EC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.bastaeuro.org/?fbclid=IwAR0IRASQQVUaRbvo_k6F12ixtXHwWdKFl30ZX43PGbTlC7squXSugucbBxE"} +{"post_id": "10152062173613155", "text": "In piazza a Longarone!\nViva il Leone, e oggi alle 17 sar\u00f2 a Monte di Buja, vicino a UDINE, per il Basta Euro Tour.", "post_text": "In piazza a Longarone!\nViva il Leone, e oggi alle 17 sar\u00f2 a Monte di Buja, vicino a UDINE, per il Basta Euro Tour.", "shared_text": "", "time": "2014-04-05 16:02:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1925348_10152062171413155_1895818075_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=A9BlPOw8Q34AQneeMI7KXiDeJtrvVzvoJKO9diRnxck9Zaa2bfD6BjJTg&_nc_ht=scontent-cdt1-1.xx&oh=44c892ecb2aae8b011f1ebefdafd8662&oe=5E7E66C9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152061947088155", "text": "Nella \"tana\" del mitico Mauro Corona, a Erto!\nE ho avuto la fortuna di dare un'occhiata al quadernetto dove sta nascendo il suo nuovo libro...", "post_text": "Nella \"tana\" del mitico Mauro Corona, a Erto!\nE ho avuto la fortuna di dare un'occhiata al quadernetto dove sta nascendo il suo nuovo libro...", "shared_text": "", "time": "2014-04-05 12:39:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1458507_10152061945278155_121217583_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=fbROBfRLe5gAQmNs71legwsajP_8Hv2tZE8ZqRvsAfHeV8KHgrrOFOzqg&_nc_ht=scontent-cdt1-1.xx&oh=179bb26768aef57074ac8e3fe2ce3fbd&oe=5E88B472", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152060781123155", "text": "Bellissimo pomeriggio con gli Amici dell'Ente Nazionale SORDI.\nSe non si conoscono le difficolt\u00e0, non si possono risolvere i problemi.\nIl mio impegno concreto per approvare in Regione la Lingua dei Segni, e un offrire assistenza a chi ne ha bisogno.\nTutti diversi, ma tutti uguali!", "post_text": "Bellissimo pomeriggio con gli Amici dell'Ente Nazionale SORDI.\nSe non si conoscono le difficolt\u00e0, non si possono risolvere i problemi.\nIl mio impegno concreto per approvare in Regione la Lingua dei Segni, e un offrire assistenza a chi ne ha bisogno.\nTutti diversi, ma tutti uguali!", "shared_text": "", "time": "2014-04-04 20:48:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/397558_10152060778238155_1162318990_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=Wu3yVSe5zaIAQk6TcMJGRoT8ImAPXEwevmIMNiLe_Lc361dFZSsnBntGA&_nc_ht=scontent-cdt1-1.xx&oh=63a176084e0e3639697c456bc1a8b15e&oe=5E47AB8C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152055353328155", "text": "Metti anche tu questa copertina Facebook per qualche ora!\nVERGOGNA! 1 APRILE 2014 (E NON E' UN PESCE D'APRILE)\n+++ ABOLITO REATO IMMIGRAZIONE CLANDESTINA +++\n> FAVOREVOLI FORZA ITALIA\nNCD, SEL, PD, SC, UDC > ASTENUTI (!!!): M5S\nLEGA, UNICA DIFESA DALL'INVASIONE!", "post_text": "Metti anche tu questa copertina Facebook per qualche ora!\nVERGOGNA! 1 APRILE 2014 (E NON E' UN PESCE D'APRILE)\n+++ ABOLITO REATO IMMIGRAZIONE CLANDESTINA +++\n> FAVOREVOLI FORZA ITALIA\nNCD, SEL, PD, SC, UDC > ASTENUTI (!!!): M5S\nLEGA, UNICA DIFESA DALL'INVASIONE!", "shared_text": "", "time": "2014-04-01 20:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1969297_10152055352698155_877464078_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=qD_LjIrf4w4AQmp9vbkVNr7VC19bsn-1UEMSswJlyZlDVVqaSToFQVheg&_nc_ht=scontent-cdt1-1.xx&oh=6ff51a26a097e3f5b63d99d69a563df6&oe=5E8A6A89", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152055109878155", "text": "VERGOGNA!!! Ecco come il Parlamento vota sui nostri emendamenti CONTRO l\u2019eliminazione del reato di IMMIGRAZIONE CLANDESTINA! Dove sono i grillini? Stanno con PD, FI, NCD e gli altri A DIFESA DEI CLANDESTINI!!!\u2026 Altro Da Alfano a Renzi, tutti d\u2019accordo: SOLO LA LEGA RESISTE (luci verdi), UNICA DIFESA DALL\u2019INVASIONE.\nFAI GIRARE, SMASCHERIAMO GLI AMICI DEI CLANDESTINI", "post_text": "VERGOGNA!!! Ecco come il Parlamento vota sui nostri emendamenti CONTRO l\u2019eliminazione del reato di IMMIGRAZIONE CLANDESTINA! Dove sono i grillini? Stanno con PD, FI, NCD e gli altri A DIFESA DEI CLANDESTINI!!!\u2026 Altro Da Alfano a Renzi, tutti d\u2019accordo: SOLO LA LEGA RESISTE (luci verdi), UNICA DIFESA DALL\u2019INVASIONE.\nFAI GIRARE, SMASCHERIAMO GLI AMICI DEI CLANDESTINI", "shared_text": "", "time": "2014-04-01 17:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1911730_10152055107443155_1719479583_n.png.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=gQ2abeXvoBIAQl2KT0W26JM0QiuI4MsnmrIjQEnhOEIUodDwM-mxQVyOg&_nc_ht=scontent-cdt1-1.xx&oh=4afe4172c9accd0fed224db240c066a1&oe=5E7ED498", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152055101668155", "text": "Ecco il voto di un emendamento tra i tanti contro l'eliminazione del reato di IMMIGRAZIONE CLANDESTINA. Unico voto per mantenerlo: LA LEGA!\nLEGA, UNICA DIFESA DALL\u2019INVASIONE!\nFAI GIRARE, SMASCHERIAMO GLI AMICI DEI CLANDESTINI", "post_text": "Ecco il voto di un emendamento tra i tanti contro l'eliminazione del reato di IMMIGRAZIONE CLANDESTINA. Unico voto per mantenerlo: LA LEGA!\nLEGA, UNICA DIFESA DALL\u2019INVASIONE!\nFAI GIRARE, SMASCHERIAMO GLI AMICI DEI CLANDESTINI", "shared_text": "", "time": "2014-04-01 17:49:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/998942_10152055101403155_1959259609_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=4D8-O2LdvaYAQmFBnbfsK9nemWB2l1WWHxDwjgNg1M8GaEE_sjO8jbaVw&_nc_ht=scontent-cdt1-1.xx&oh=3e5d3eb33ca63b12b5c3cb30bcdaa2ff&oe=5E3F9198", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152053375588155", "text": "Liberi, mai pi\u00f9 schiavi di nessuno!\nEcco il SIMBOLO con cui la Lega sar\u00e0 presente sulle schede elettorali, da Nord a Sud, il 25 maggio.\nRiprendiamo in mano il nostro Futuro!", "post_text": "Liberi, mai pi\u00f9 schiavi di nessuno!\nEcco il SIMBOLO con cui la Lega sar\u00e0 presente sulle schede elettorali, da Nord a Sud, il 25 maggio.\nRiprendiamo in mano il nostro Futuro!", "shared_text": "", "time": "2014-03-31 17:22:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10173530_10152053373938155_1523173599_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=H-Fwn6Kx_P4AQlhf3W1wA1MBlVwmW09Tt1REeLUjeJjZXkQL8vFKTdcuw&_nc_ht=scontent-cdt1-1.xx&oh=061909ba9552cd21a0c991bee24c3d26&oe=5E88362E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152051261898155", "text": "Le mie letture di oggi.\nDue copie de LA PADANIA e una di Libero, che oggi dedica un bell'articolo alla \"Lega che scala i sondaggi\".", "post_text": "Le mie letture di oggi.\nDue copie de LA PADANIA e una di Libero, che oggi dedica un bell'articolo alla \"Lega che scala i sondaggi\".", "shared_text": "", "time": "2014-03-30 13:08:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1902950_10152051260603155_422515651_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=sWJSBI7DXZoAQn3HaUdzQoLEafBYYoFyZa4Tjrap5tHyET0tXQBv4m2Ng&_nc_ht=scontent-cdt1-1.xx&oh=f599caa07a3667609d9b335b364debbe&oe=5E820AB7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152051094858155", "text": "Colazione dietetica!\nSvegliaaa, sistemate l'orologio e date una mano alla Comunit\u00e0.", "post_text": "Colazione dietetica!\nSvegliaaa, sistemate l'orologio e date una mano alla Comunit\u00e0.", "shared_text": "", "time": "2014-03-30 09:39:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1939547_10152051093503155_523547920_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=QoiiV_iuQ6QAQk3f0z_76MezbVaOB2UREe2hI-nQs9AIphTew-H5h6l4g&_nc_ht=scontent-cdt1-1.xx&oh=e08471b5a39f8692355bfd2e7ce15933&oe=5E4292D5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152050050598155", "text": "50 persone in coda, in piazza Repubblica a NOVARA, per firmare i Referendum!\nChe giornata stupenda. Grazie!", "post_text": "50 persone in coda, in piazza Repubblica a NOVARA, per firmare i Referendum!\nChe giornata stupenda. Grazie!", "shared_text": "", "time": "2014-03-29 18:02:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1010294_10152050049373155_1515059377_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=AQf9hIKwnxcAQm87aEVA5lp6Pilee5wiiZY3AJ4zUxpiCpFK9n856-KoQ&_nc_ht=scontent-cdt1-1.xx&oh=17b230c496377f186ecdd8482742437d&oe=5E515440", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152049781813155", "text": "Giornata stupenda sul Lago ad ARONA!\nE tante firme contro Fornero e Merlin raccolte al gazebo.\nE voi avete gi\u00e0 firmato?", "post_text": "Giornata stupenda sul Lago ad ARONA!\nE tante firme contro Fornero e Merlin raccolte al gazebo.\nE voi avete gi\u00e0 firmato?", "shared_text": "", "time": "2014-03-29 14:26:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1480634_10152049780883155_373053175_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=igu1kGKvQMwAQkZsc7G-kXratccbFkImxsKjlt2mXWB3-jFiYpvQGRs0Q&_nc_ht=scontent-cdt1-1.xx&oh=41aa61abe72fdb34a00644b4e8c4ef79&oe=5E48D7B1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152048270428155", "text": "Grande gruppo al GAZEBO di Vercelli!\nSi firma in piazza Cavour, vi aspettiamo!\nTrova dove firmare su: www.vieniafirmare.org e usa sui social: #vieniafirmare", "post_text": "Grande gruppo al GAZEBO di Vercelli!\nSi firma in piazza Cavour, vi aspettiamo!\nTrova dove firmare su: www.vieniafirmare.org e usa sui social: #vieniafirmare", "shared_text": "", "time": "2014-03-29 11:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10002914_10152049611638155_1316499969_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=ixj3ASkzk_EAQlg7R41DH9pRP0DGiM4BPnnzyZaYfTzEyC_KomlfI8v8A&_nc_ht=scontent-cdt1-1.xx&oh=20e01ff87d53f8cb9036b543bd7eee55&oe=5E48A964", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR1kdcnVFAC_kyuol_daypUHDSTosVhDJsmCJoAe12QApbdupkdbAcf_TaA"} +{"post_id": "10152048270428155", "text": "Con Vittorio Sgarbi, ho appena firmato il Referendum per CANCELLARE l'infame riforma FORNERO.\nDa domani tocca a Voi!\n#vieniafirmare | trova dove su: www.vieniafirmare.org", "post_text": "Con Vittorio Sgarbi, ho appena firmato il Referendum per CANCELLARE l'infame riforma FORNERO.\nDa domani tocca a Voi!\n#vieniafirmare | trova dove su: www.vieniafirmare.org", "shared_text": "", "time": "2014-03-28 15:20:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10155706_10152048266458155_1679443612_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=JiQ6xyEFPUwAQnX_NniOP45PnsqrlrEYATp4ysyl-9Hrv3rtSMvQYmk5g&_nc_ht=scontent-cdt1-1.xx&oh=8a127439ae56f21c0b773c9184c57484&oe=5E8903B2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR1gIz4fAn-2-7tlbJTksfmH1VbNAmd5r5eumsSy5JRLhT_l_KG3C1eY6S4"} +{"post_id": "10152047973323155", "text": "Trova i TOPI nella foto!\nNon siamo a Calcutta ma a Milano, a pochi metri dalla Metropolitana di Cascina Gobba.\nPisapia, svegliaaaaa!", "post_text": "Trova i TOPI nella foto!\nNon siamo a Calcutta ma a Milano, a pochi metri dalla Metropolitana di Cascina Gobba.\nPisapia, svegliaaaaa!", "shared_text": "", "time": "2014-03-28 10:16:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1977470_10152047972713155_239734398_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=8PhrVW-AS2IAQlU0j5YsjOCl9AVjXW_NjZKdGIgCYQG0cUy5zA1xnbNDg&_nc_ht=scontent-cdt1-1.xx&oh=51f60955d83f80128027253be7cf9016&oe=5E4036A5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152047206578155", "text": "Non so voi, ma io ho serata PEPPA PIG!", "post_text": "Non so voi, ma io ho serata PEPPA PIG!", "shared_text": "", "time": "2014-03-27 22:44:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1010670_10152047205633155_477953778_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=2Pi4pDxAKq4AQmGrhsINTcC7ubAwwCSd5TNF0Nf6e-cxgVyASgNFwoqdw&_nc_ht=scontent-cdt1-1.xx&oh=13475ddc2f6263b49678e251141edce9&oe=5E4CCA3A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152045522568155", "text": "Roma, per l'arrivo di Obama (Nobel per la Pace...) 1.000 uomini impegnati per la sua sicurezza.\nE gli italiani pagano.", "post_text": "Roma, per l'arrivo di Obama (Nobel per la Pace...) 1.000 uomini impegnati per la sua sicurezza.\nE gli italiani pagano.", "shared_text": "", "time": "2014-03-26 23:47:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1977338_10152045515913155_677868624_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=eq8EstJct0AAQmnJfx5y3RIgc7NXu641w1lY-bHRXyZYDGdjqm1ub5zUQ&_nc_ht=scontent-cdt1-1.xx&oh=bc6dabf73e6bd52f0111c9d8ce5b1dc8&oe=5E8254AD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152044668748155", "text": "Gi\u00e0 1.019 GAZEBO pronti per sabato e domenica in tutto il Nord!\nAiutaci a dare un calcio nel sedere alla legge Fornero e alla legge Merlin, vieni a firmare i REFERENDUM.\nPer info. 02 66234234, si potr\u00e0 firmare anche in tutti i Comuni del Centro e del Sud", "post_text": "Gi\u00e0 1.019 GAZEBO pronti per sabato e domenica in tutto il Nord!\nAiutaci a dare un calcio nel sedere alla legge Fornero e alla legge Merlin, vieni a firmare i REFERENDUM.\nPer info. 02 66234234, si potr\u00e0 firmare anche in tutti i Comuni del Centro e del Sud", "shared_text": "", "time": "2014-03-26 12:32:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10156149_10152044654793155_1549906603_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=VPih7VD5LwEAQmIkMmrJLrWfsSLWayp4rzmc4D38tbHF-2a5Eswct5mzw&_nc_ht=scontent-cdt1-1.xx&oh=f1d2ac26c1d3d8e1487f7ff0fc301e97&oe=5E41743A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152043314943155", "text": "Vuoi aiutarci a FAR SAPERE? METTI ANCHE TU, da qui a domenica, questa immagine di copertina e usa hashtag #vieniafirmare sui social.\nFra sabato e domenica si potranno firmare i REFERENDUM per cancellare la\u2026 Altro VERGOGNOSA \"riforma\" Fornero, cancellare la legge Merlin sulla prostituzione, e mandare a casa i Prefetti.\nNon limitarti a discutere in Rete, PARTECIPA anche tu!\nOltre che ai gazebo, puoi firmare anche in TUTTI I MUNICIPI ITALIANI.\nPer info: 02 66234234 o www.vieniafirmare.org\nFai girare questo messaggio, INSIEME SI PUO'!", "post_text": "Vuoi aiutarci a FAR SAPERE? METTI ANCHE TU, da qui a domenica, questa immagine di copertina e usa hashtag #vieniafirmare sui social.\nFra sabato e domenica si potranno firmare i REFERENDUM per cancellare la\u2026 Altro VERGOGNOSA \"riforma\" Fornero, cancellare la legge Merlin sulla prostituzione, e mandare a casa i Prefetti.\nNon limitarti a discutere in Rete, PARTECIPA anche tu!\nOltre che ai gazebo, puoi firmare anche in TUTTI I MUNICIPI ITALIANI.\nPer info: 02 66234234 o www.vieniafirmare.org\nFai girare questo messaggio, INSIEME SI PUO'!", "shared_text": "", "time": "2014-03-26 12:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10154508_10152044644073155_545983453_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=2lAW4mLmdPYAQkwD__BCXdosoyvkiYF6zUyDpHiNKuT8k3N8Tst7H0uLQ&_nc_ht=scontent-cdt1-1.xx&oh=b9bd8c2785540eab04afbe00048b6672&oe=5E7974DE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR0xJPHVV5K1A1kwRDejNL1HeH3CyTFkb8jB_MWKmGxRzIyq-Y7Jh94Xagc"} +{"post_id": "10152043942793155", "text": "Tutto esaurito per la Lega anche stasera a Mortara.\nRiconquistare speranza, lavoro e futuro: insieme si pu\u00f2!", "post_text": "Tutto esaurito per la Lega anche stasera a Mortara.\nRiconquistare speranza, lavoro e futuro: insieme si pu\u00f2!", "shared_text": "", "time": "2014-03-25 23:57:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1743592_10152043937533155_1430109316_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=mP6_A4IdRC0AQmbeL_VtqQX8mbTITPCDbODdwbeJSkVpvrOlZFMxvnFmQ&_nc_ht=scontent-cdt1-1.xx&oh=b18bb7ee56be9072b4ce5431f735b858&oe=5E8092D6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152043314943155", "text": "#vieniafirmare > SABATO e DOMENICA prossimi, in CENTINAIA di PIAZZE e dal 29 marzo in tutti i municipi italiani\nUNA FIRMA PER CANCELLARE LA VERGOGNA\nDELLA LEGGE FORNERO!\nTrova gazebo su: www.vieniafirmare.org\nE\u2026 Altro usa sui social: #vieniafirmare\nE puoi firmare anche per:\n- abrogazione Legge Merlin (tassiamo e regolamentiamo la PROSTITUZIONE)\n- abolizione delle PREFETTURE\n- stop ai concorsi pubblici per gli IMMIGRATI\n- abrogazione Legge Mancino su REATI DI OPINIONE", "post_text": "#vieniafirmare > SABATO e DOMENICA prossimi, in CENTINAIA di PIAZZE e dal 29 marzo in tutti i municipi italiani\nUNA FIRMA PER CANCELLARE LA VERGOGNA\nDELLA LEGGE FORNERO!\nTrova gazebo su: www.vieniafirmare.org\nE\u2026 Altro usa sui social: #vieniafirmare\nE puoi firmare anche per:\n- abrogazione Legge Merlin (tassiamo e regolamentiamo la PROSTITUZIONE)\n- abolizione delle PREFETTURE\n- stop ai concorsi pubblici per gli IMMIGRATI\n- abrogazione Legge Mancino su REATI DI OPINIONE", "shared_text": "", "time": "2014-03-25 16:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1947470_10152043309988155_1572522110_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=EDYhzuCiwL4AQlMru9_SKlizkt0p1kikrFOa3auhwNx0miNPYOihFO_9g&_nc_ht=scontent-cdt1-1.xx&oh=0a5cffd06f759bd1cad686e20c9aba09&oe=5E7D271A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR1ldhGFb4MzlDk2QftpLqP3jQj003qtgW5YoXNIlv8LYtuHQKIwZi6Kr5Q"} +{"post_id": "10152043014243155", "text": "A Bruxelles hanno paura della Lega. Grazie a Voi, siamo una Comunit\u00e0 che cresce!", "post_text": "A Bruxelles hanno paura della Lega. Grazie a Voi, siamo una Comunit\u00e0 che cresce!", "shared_text": "", "time": "2014-03-25 12:07:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/1966274_10152043013903155_1635643852_o.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=klKHjWIWgEIAQnGTPuyBim82mNWKBxNVmbrmiWEGQAekHnrLosOQusPQA&_nc_ht=scontent-cdt1-1.xx&oh=f8e273bd0a348a4fb02c6c3377aebaa4&oe=5E7BC9F6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152040973833155", "text": "Un'altra Europa \u00e8 possibile, fuori dall'Euro ripartono lavoro e speranza!", "post_text": "Un'altra Europa \u00e8 possibile, fuori dall'Euro ripartono lavoro e speranza!", "shared_text": "", "time": "2014-03-24 10:20:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1969146_10152040973703155_2026150933_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=KryVZI9RyQ8AQlzCuXXRccWmqsohT1LZ9uUL80LAUDiFH4aHomuMmt2-w&_nc_ht=scontent-cdt1-1.xx&oh=7e5616f7dc8eb195ad5ead49ce3fc3b4&oe=5E40C8F3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152039127278155", "text": "Pubblico caldo", "post_text": "Pubblico caldo", "shared_text": "", "time": "2014-03-23 14:14:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10006931_10152039126883155_531985108_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=0-aBiRD6RDQAQnFEJG51ijx1F8CPCd0_hw581EOINNxOJ6nG4JPZAiEIw&_nc_ht=scontent-cdt1-1.xx&oh=827ebcf81ec0873eac4bfd6bbb4c3fd0&oe=5E791D7A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152039091078155", "text": "Una via di Milano?\nNO! Una lavanderia a cielo aperto, i ROM si \"integrano\" cos\u00ec...", "post_text": "Una via di Milano?\nNO! Una lavanderia a cielo aperto, i ROM si \"integrano\" cos\u00ec...", "shared_text": "", "time": "2014-03-23 13:45:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10006921_10152039090333155_1075217227_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=2hDJoYR38ZUAQkxO4hRG24of8d8LLuU_ikj-XEX8LgDosuhF9sG9-jr3w&_nc_ht=scontent-cdt1-1.xx&oh=1bf6f4f1e43b92d0ae68c436653f78db&oe=5E7F2F2E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152037940063155", "text": "Amici, SABATO 29 e DOMENICA 30 MARZO vi aspettiamo in centinaia di piazze per sostenere i Referendum 2014:\n- abrogazione della 'riforma Fornero' sulle pensioni\n- abrogazione della Legge Merlin sulla\u2026 Altro prostituzione\n- stop ai concorsi pubblici per gli immigrati\n- abolizione delle prefetture\n- abolizione della Legge Mancino (reati di opinione)\nE dal 29 marzo potete firmare anche presso il vostro Comune di residenza, in tutta Italia!\nTrovate tutte le informazioni su www.vieniafirmare.org. Non ci fermiamo mai!", "post_text": "Amici, SABATO 29 e DOMENICA 30 MARZO vi aspettiamo in centinaia di piazze per sostenere i Referendum 2014:\n- abrogazione della 'riforma Fornero' sulle pensioni\n- abrogazione della Legge Merlin sulla\u2026 Altro prostituzione\n- stop ai concorsi pubblici per gli immigrati\n- abolizione delle prefetture\n- abolizione della Legge Mancino (reati di opinione)\nE dal 29 marzo potete firmare anche presso il vostro Comune di residenza, in tutta Italia!\nTrovate tutte le informazioni su www.vieniafirmare.org. Non ci fermiamo mai!", "shared_text": "", "time": "2014-03-22 21:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/10152019_10152037934628155_497708254_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=YpNfK52PmjEAQm0fM2ZtQUIUPmtIEe79yWztEmg-vU7qlQC7-SJIGxUuQ&_nc_ht=scontent-cdt1-1.xx&oh=196ad5245e6f1d523d710d1304d0a632&oe=5E41B276", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.vieniafirmare.org/?fbclid=IwAR1HXAW8a-vA3Z7Dq30A12T_YdWA2I9Gz1XJnEi2m8yGDO02hfa4gVwxU5M"} +{"post_id": "10152037242788155", "text": "Centinaia di persone, e tanti che non riescono ad entrare in sala, per il Basta Euro Tour a Padova.\nIndipendenza, dallo Stato e da Bruxelles!", "post_text": "Centinaia di persone, e tanti che non riescono ad entrare in sala, per il Basta Euro Tour a Padova.\nIndipendenza, dallo Stato e da Bruxelles!", "shared_text": "", "time": "2014-03-22 16:00:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/7005_10152037240618155_702760466_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=RnR-ptW5bnUAQlgUeuhznAL4HNlzYQUBFBxqWq6_PARGXNEFP3_G5KJ9g&_nc_ht=scontent-cdt1-1.xx&oh=dbdab8142801a7f4db0d64443809e80d&oe=5E3E50B3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152037025943155", "text": "La BRIANZA non ci sta.\nBasta coi milioni spesi per i clandestini: PRIMA NOI!", "post_text": "La BRIANZA non ci sta.\nBasta coi milioni spesi per i clandestini: PRIMA NOI!", "shared_text": "", "time": "2014-03-22 13:02:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1920481_10152037023453155_1994990917_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=HqslIQKvO3oAQk7hroKXJGUV4oBffSqUIhZQmUzptGYOrrT7UjWHSXhlQ&_nc_ht=scontent-cdt1-1.xx&oh=dd985dbb681d2f5d39479ffb6d108d13&oe=5E3E6B95", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152036819208155", "text": "Felpa VENETO pronta per oggi pomeriggio a Padova, quarta tappa del Basta Euro Tour.\nVi aspetto!\nAlla faccia dei giornalisti che diffamano i Veneti, la Lega e la voglia di Indipendenza.", "post_text": "Felpa VENETO pronta per oggi pomeriggio a Padova, quarta tappa del Basta Euro Tour.\nVi aspetto!\nAlla faccia dei giornalisti che diffamano i Veneti, la Lega e la voglia di Indipendenza.", "shared_text": "", "time": "2014-03-22 10:18:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1924936_10152036817428155_1112067890_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=3aH1eVapq2MAQlv1N-Qro233ViPsqJLRAzv-Nj2hLWFy9TzrjMv9nBRuQ&_nc_ht=scontent-cdt1-1.xx&oh=71a2e604fea4de715acda430881c0fea&oe=5E4D8826", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152035624763155", "text": "Presidio davanti alla Prefettura di Milano.\nAltri 1.700 CLANDESTINI da ospitare in case e alberghi, a nostre spese?\nRISPEDIAMOLI A CASA LORO!", "post_text": "Presidio davanti alla Prefettura di Milano.\nAltri 1.700 CLANDESTINI da ospitare in case e alberghi, a nostre spese?\nRISPEDIAMOLI A CASA LORO!", "shared_text": "", "time": "2014-03-21 16:15:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1975097_10152035622633155_1755432920_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=uuj3ILUmhkYAQk2g3_EDdnfQ90zNqUPg85cpnAMPd59jAWEUYm_RAOFag&_nc_ht=scontent-cdt1-1.xx&oh=dbd8ff7db5b7037322d5b994b34a391c&oe=5E3E4C73", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152035359473155", "text": "Con sindaci e cittadini a San Genesio, vicino a Pavia.\nDa oggi diversi clandestini alloggiano all'Hotel Riz, con piscina e centro benessere, a spese vostre.\nCome Lega non ci sposteremo, finch\u00e8 questi clandestini non se ne andranno.\nBanzai!", "post_text": "Con sindaci e cittadini a San Genesio, vicino a Pavia.\nDa oggi diversi clandestini alloggiano all'Hotel Riz, con piscina e centro benessere, a spese vostre.\nCome Lega non ci sposteremo, finch\u00e8 questi clandestini non se ne andranno.\nBanzai!", "shared_text": "", "time": "2014-03-21 12:51:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10014626_10152035357463155_329100970_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=3dNVNRkFToEAQnPvqnqTic0ZK7a2PrGrSbcQV8_6ozMy0ouNJi0EKQC4g&_nc_ht=scontent-cdt1-1.xx&oh=39b0ca86412cf3297458d079c187d919&oe=5E3F4785", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152034370113155", "text": "Tanta gente anche stasera a VERBANIA per il BASTA EURO Tour.\nC'\u00e8 chi si tele-rimbambisce, e c'\u00e8 chi invece ha voglia di capire, di dubitare, di sognare.", "post_text": "Tanta gente anche stasera a VERBANIA per il BASTA EURO Tour.\nC'\u00e8 chi si tele-rimbambisce, e c'\u00e8 chi invece ha voglia di capire, di dubitare, di sognare.", "shared_text": "", "time": "2014-03-20 21:31:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1911781_10152034367083155_1159155682_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Zu1rVxjFfQUAQmKZpBZrfajD6zD_RE3OW_7iCYn8HrlquFuChHf34Ai7Q&_nc_ht=scontent-cdt1-1.xx&oh=219e3541eb8c523d4e20d870ba51f1ca&oe=5E8B00EB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152034162068155", "text": "C'\u00e8 ancora chi non si arrende e PRODUCE tutto in ITALIA.\nGiocattoli storici della Nuova Faro, prima in legno e oggi in plastica.\nCompriamo i NOSTRI PRODOTTI, difendiamo i NOSTRI LAVORATORI!", "post_text": "C'\u00e8 ancora chi non si arrende e PRODUCE tutto in ITALIA.\nGiocattoli storici della Nuova Faro, prima in legno e oggi in plastica.\nCompriamo i NOSTRI PRODOTTI, difendiamo i NOSTRI LAVORATORI!", "shared_text": "", "time": "2014-03-20 18:59:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1958494_10152034159898155_586175803_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=jVjBIGgXpdQAQkCWoeGlkHDgX8Ind7dRb1qGXtv1v8aqHLWvEQoHju--A&_nc_ht=scontent-cdt1-1.xx&oh=1e0730c91ce1d5b94a2549c0e7566117&oe=5E42EE3C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152031404953155", "text": "Gente che dorme in strada, e a Milano ci sono troppe case vuote. Quelle che vedete, \u00e8 mio impegno, andranno assegnate subito!", "post_text": "Gente che dorme in strada, e a Milano ci sono troppe case vuote. Quelle che vedete, \u00e8 mio impegno, andranno assegnate subito!", "shared_text": "", "time": "2014-03-19 10:54:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10152031404953155&id=252306033154", "link": null} +{"post_id": "10152029808283155", "text": "", "post_text": "", "shared_text": "", "time": "2014-03-18 10:22:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p280x280/1970580_10152029807588155_313471748_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=6Lf6cZYjyfsAQkeMUrNvSguNm-jjscUzFF5bHJHmmancI7yJp4jCT-wxw&_nc_ht=scontent-cdt1-1.xx&oh=d11aad81c9df5181e5be1adcf63c9526&oe=5E8966B5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152026247183155", "text": "Il centro di Milano invaso dalle Vespa!\nChi c'\u00e8 in giro per il mondo a due ruote?", "post_text": "Il centro di Milano invaso dalle Vespa!\nChi c'\u00e8 in giro per il mondo a due ruote?", "shared_text": "", "time": "2014-03-16 10:47:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1901538_10152026246503155_1210969712_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=h_8SIy2pGCIAQmZChjdymtBOEnJSTKEiu8WQ4G38_j4_FGMFzm5rNyCjw&_nc_ht=scontent-cdt1-1.xx&oh=af6cc264456bf48982bce45eee1e0226&oe=5E4FA82A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152025365258155", "text": "AMICI, ancora non abbiamo esaurito l'entusiasmo per la tappa di TORINO che gi\u00e0 \u00e8 pronta quella di PADOVA, sabato 22 MARZO. Aspettiamo tanti CITTADINI VENETI che vogliono RIPRENDERSI il loro FUTURO! Non ci fermiamo MAI! #bastaeuro", "post_text": "AMICI, ancora non abbiamo esaurito l'entusiasmo per la tappa di TORINO che gi\u00e0 \u00e8 pronta quella di PADOVA, sabato 22 MARZO. Aspettiamo tanti CITTADINI VENETI che vogliono RIPRENDERSI il loro FUTURO! Non ci fermiamo MAI! #bastaeuro", "shared_text": "", "time": "2014-03-15 21:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/12495_10152025364448155_169106871_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=EWJm4HtKilQAQkHtwVqsj5BNALKzQ-b3M7Z74jO5dR9GfsiqraIFirtRA&_nc_ht=scontent-cdt1-1.xx&oh=760c4bcae1cd4943cecaf6d34048bb84&oe=5E81D4A6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152024962913155", "text": "Incredibile.\nSala strapiena, e gente seduta e in piedi ovunque, per la tappa del BASTA EURO Tour di Torino.\nSe la Gente comincia a capire, per i SERVI di Bruxelles \u00e8 finita.", "post_text": "Incredibile.\nSala strapiena, e gente seduta e in piedi ovunque, per la tappa del BASTA EURO Tour di Torino.\nSe la Gente comincia a capire, per i SERVI di Bruxelles \u00e8 finita.", "shared_text": "", "time": "2014-03-15 16:26:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1969167_10152024959878155_1130089619_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=Hpqvxd2_rakAQm6ps4kosk8MEqSOKZCy84Cw3GS5bBtvWUbTbvX24EE8A&_nc_ht=scontent-cdt1-1.xx&oh=8bd4a595e524d7635bb857dce0908d55&oe=5E7FB152", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152024847788155", "text": "PRONTI qui a #Torino per la tappa di oggi del #BASTAEURO Tour, diretta su WWW.BASTAEURO.ORG dove potete anche SCARICARE il manuale \"Come uscire dall'incubo\" e richiedere gratuitamente adesivi e materiale!\nUn'Altra Europa \u00e8 possibile. Con la #LEGA.", "post_text": "PRONTI qui a #Torino per la tappa di oggi del #BASTAEURO Tour, diretta su WWW.BASTAEURO.ORG dove potete anche SCARICARE il manuale \"Come uscire dall'incubo\" e richiedere gratuitamente adesivi e materiale!\nUn'Altra Europa \u00e8 possibile. Con la #LEGA.", "shared_text": "", "time": "2014-03-15 15:00:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/48027_10152024841598155_1776560697_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=jxQPjwz2urUAQnpcS5HnsjeF8kV2ipdKrFwMLP_bl4pMjP_2GmgFsONqQ&_nc_ht=scontent-cdt1-1.xx&oh=ea7b7206ba5ea0e6170e89783053af75&oe=5E7EC193", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.BASTAEURO.ORG/?fbclid=IwAR2DqJr7lIoq9nK3kxnTYN9sjenNvlVKL4owf4V74_4w1Jp6Q4tZmKlj69w"} +{"post_id": "10152022384213155", "text": "Inaugurazione sede Lega Nord di Ghedi e a seguire cena con 300 persone a Montichiari.\nLa Lega c'\u00e8, combatte e cresce!", "post_text": "Inaugurazione sede Lega Nord di Ghedi e a seguire cena con 300 persone a Montichiari.\nLa Lega c'\u00e8, combatte e cresce!", "shared_text": "", "time": "2014-03-13 23:25:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1962879_10152022383293155_1087687733_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=v3jP6gQqD3oAQnDCzEoElU15AKVL_SYR40MpAYAK7thOV5TitAJZDhXnA&_nc_ht=scontent-cdt1-1.xx&oh=f8171c7370dc690fdd70dd122c475340&oe=5E80C3D8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152022075963155", "text": "Brescia, centinaia di firme contro il \"diritto di voto\" anticipato agli immigrati.\nPrima la nostra gente!", "post_text": "Brescia, centinaia di firme contro il \"diritto di voto\" anticipato agli immigrati.\nPrima la nostra gente!", "shared_text": "", "time": "2014-03-13 20:15:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1966943_10152022075198155_880821775_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=Sv8CsWbq5DIAQmfgzrteDE-sT1e3EaP3KIdLuqoibSODdaxpiwBsZCfEQ&_nc_ht=scontent-cdt1-1.xx&oh=ef1e9c6ccf6b5d6f73d61a46cc5f3d45&oe=5E498DD8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152017070278155", "text": "L'Europa toglie i dazi sui limoni del Marocco... Io continuo a difendere orgogliosamente i lavoratori italiani come Angelo e i nostri prodotti d'eccellenza!\nhttp://www.dailymotion.com/video/x1g35r1_europa-criminale-uscire-al-piu-presto-dall-euro-o-sara-la-nostra-fine_news", "post_text": "L'Europa toglie i dazi sui limoni del Marocco... Io continuo a difendere orgogliosamente i lavoratori italiani come Angelo e i nostri prodotti d'eccellenza!\nhttp://www.dailymotion.com/video/x1g35r1_europa-criminale-uscire-al-piu-presto-dall-euro-o-sara-la-nostra-fine_news", "shared_text": "", "time": "2014-03-10 23:09:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s350x350/1979331_10152017063523155_161878694_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=lHHeGCPdtbgAQnENBXqVVCdrJKrvGfs-AolObk-9U30o-n19n97ClcHXw&_nc_ht=scontent-cdt1-1.xx&oh=99b77588b773c9432975302a6e600794&oe=5E7EE80A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.dailymotion.com/video/x1g35r1_europa-criminale-uscire-al-piu-presto-dall-euro-o-sara-la-nostra-fine_news?fbclid=IwAR3LMD3UKYKYbgpImnstHLnRdDopNQi8VfKN_uvvblSCtntetx5zAOdPdD0"} +{"post_id": "10152016835028155", "text": "Quasi in diretta (con occhio bendato per congiuntivite...) su RETE 4.\nDi fianco a me Gasparri, wow!", "post_text": "Quasi in diretta (con occhio bendato per congiuntivite...) su RETE 4.\nDi fianco a me Gasparri, wow!", "shared_text": "", "time": "2014-03-10 21:14:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10007070_10152016834103155_1176092367_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=q86O7xexwiYAQnVpYuf6BDYwZe1m--ef0HLDH5WtfYVEAFKSSBdjvkyKw&_nc_ht=scontent-cdt1-1.xx&oh=eef8c01bc75c674f81ba8c3ec5c83600&oe=5E4F0D51", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152016617048155", "text": "Un limone.\nStasera in trasmissione a QUINTA COLONNA mi porto un limone, dimostrazione di come questa Europa e questo Euro stiano massacrando tutto, anche la nostra agricoltura, nel nome del profitto.", "post_text": "Un limone.\nStasera in trasmissione a QUINTA COLONNA mi porto un limone, dimostrazione di come questa Europa e questo Euro stiano massacrando tutto, anche la nostra agricoltura, nel nome del profitto.", "shared_text": "", "time": "2014-03-10 18:27:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1017145_10152016615713155_101422532_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=-XH4rY_K6TwAQlE-lSQKAZPttWPMTgoBeGwt0CJWe3F4Wi5lBACvHDMtA&_nc_ht=scontent-cdt1-1.xx&oh=ef3e26ae4d5fe355063e0bbf1765d668&oe=5E3FB358", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152016165628155", "text": "Insieme agli ESODATI nella sede dell'Inps.\nGrazie a Regione Lombardia, possiamo aiutare per arrivare alla PENSIONE centinaia di persone! Burocrazia, sveglia.", "post_text": "Insieme agli ESODATI nella sede dell'Inps.\nGrazie a Regione Lombardia, possiamo aiutare per arrivare alla PENSIONE centinaia di persone! Burocrazia, sveglia.", "shared_text": "", "time": "2014-03-10 11:45:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1781890_10152016164713155_1810639319_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=11E5imllTBQAQk3bkNmzd7JgWMFbagrnkun-2WLGgJ68di-jiDspul0Aw&_nc_ht=scontent-cdt1-1.xx&oh=a3c56b558603a0537ba6c05d900754eb&oe=5E7B6CBB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152015234583155", "text": "Vi aspetto a TORINO sabato 15 marzo alle ore 15 (Sala Convegni ATC, Corso Dante 14), per la nuova tappa del #BASTAEURO tour.\nTutte le date e il manuale \"Come Uscire dall'Incubo\" sul sito www.bastaeuro.org", "post_text": "Vi aspetto a TORINO sabato 15 marzo alle ore 15 (Sala Convegni ATC, Corso Dante 14), per la nuova tappa del #BASTAEURO tour.\nTutte le date e il manuale \"Come Uscire dall'Incubo\" sul sito www.bastaeuro.org", "shared_text": "", "time": "2014-03-09 21:28:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1899927_10152002590513155_487737713_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=xop5I-k_xZcAQm2cf0vbuO34-9D1OEol1BKz9W8dAv1Ycj2_8ykPKHL0w&_nc_ht=scontent-cdt1-1.xx&oh=1e52e9245b01a6e25f12c2656f544b08&oe=5E41FC40", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.bastaeuro.org/?fbclid=IwAR1lQbBlijOAW4Cs-NHk8XlQ1r1QpUPxV64XvgBl2m2DdhctI9UJHWrC3tE"} +{"post_id": "10152014863558155", "text": "Lega presente in piazza a Breno!\nNon ci fermiamo mai!!!", "post_text": "Lega presente in piazza a Breno!\nNon ci fermiamo mai!!!", "shared_text": "", "time": "2014-03-09 17:11:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1920444_10152014862728155_1389359298_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=NrX3yJRteXIAQmGjHqvm_mxs0qF0HFt2MQ93MLcmu2ub1c1laO5LIiz-g&_nc_ht=scontent-cdt1-1.xx&oh=abd517c6586b67b7e3e7872b9cdbe3db&oe=5E89F7D4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152014461288155", "text": "Qualche ora di relax, e un Sorriso dedicato a una Comunit\u00e0 di 82.000 belle persone!", "post_text": "Qualche ora di relax, e un Sorriso dedicato a una Comunit\u00e0 di 82.000 belle persone!", "shared_text": "", "time": "2014-03-09 11:41:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1939532_10152014460718155_1510872321_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=cyN-vmjiIpkAQm_edad2Xf3l7iVZBe15lK2efVi68p8a-1m_0qFOajsvA&_nc_ht=scontent-cdt1-1.xx&oh=80b7ff822f0805438ea243574476843b&oe=5E8990F9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152013259613155", "text": "Presenti anche oggi in piazza a Ponte di Legno, insieme a tante donne.\nIn due ore abbiamo distribuito pi\u00f9 di 500 copie del libro Basta Euro!", "post_text": "Presenti anche oggi in piazza a Ponte di Legno, insieme a tante donne.\nIn due ore abbiamo distribuito pi\u00f9 di 500 copie del libro Basta Euro!", "shared_text": "", "time": "2014-03-08 19:06:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1451450_10152013258003155_687312419_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=UWkBJ0EvI-AAQkQqz5t4-KLJflQA9F0fu8PPiM7vPUwP6COIAmm9ZnJjQ&_nc_ht=scontent-cdt1-1.xx&oh=3a1cef9c6f82e94a995b8628d9b2a8a8&oe=5E7EE31A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152011128498155", "text": "Pausa con Spritz e patatine.\nSalute!", "post_text": "Pausa con Spritz e patatine.\nSalute!", "shared_text": "", "time": "2014-03-07 13:26:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10003457_10152011128073155_543462356_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=iXaslb0hB7UAQkzh6087590jjUgJ5Oa54VQF64ovxsa5lZ_Dhs5hBPaUA&_nc_ht=scontent-cdt1-1.xx&oh=87c33877211a27ffceef11f446a59a37&oe=5E3F576B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152007080433155", "text": "Antonio, 54 anni, muratore da quaranta, due figli.\nSecondo la \"giustizia\" italiana dovrebbe farsi 6 anni di galera, perch\u00e8 ha ucciso uno dei rapinatori che gli erano entrati in casa di notte.\nMAI!\nSaremo al tuo fianco, con ogni mezzo.", "post_text": "Antonio, 54 anni, muratore da quaranta, due figli.\nSecondo la \"giustizia\" italiana dovrebbe farsi 6 anni di galera, perch\u00e8 ha ucciso uno dei rapinatori che gli erano entrati in casa di notte.\nMAI!\nSaremo al tuo fianco, con ogni mezzo.", "shared_text": "", "time": "2014-03-05 17:21:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1982296_10152007077193155_1694382872_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=reY94--JtPcAQnojjac8XYU8bSAQIEBRogTByHKmkyTA1GbsFy7hlebug&_nc_ht=scontent-cdt1-1.xx&oh=0f92a62c0364e6f5b9367ee9aca718cd&oe=5E4B2DE7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152006358813155", "text": "Abbiamo gi\u00e0 spedito le prime 1.000 BUSTE con gli adesivi e i volantini Basta Euro in tutta Italia!\nGratis, direttamente a casa.\nChi li volesse, pu\u00f2 compilare il modulo sul sito www.bastaeuro.org per maggiore rapidit\u00e0, oppure scrivermi in privato.", "post_text": "Abbiamo gi\u00e0 spedito le prime 1.000 BUSTE con gli adesivi e i volantini Basta Euro in tutta Italia!\nGratis, direttamente a casa.\nChi li volesse, pu\u00f2 compilare il modulo sul sito www.bastaeuro.org per maggiore rapidit\u00e0, oppure scrivermi in privato.", "shared_text": "", "time": "2014-03-05 10:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1899907_10152006347228155_1214510814_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=foZrNznKBKIAQnLg-kmpvdpxMgjR-Plw8tG92RVpAreFHeX8ul3p2Daiw&_nc_ht=scontent-cdt1-1.xx&oh=f162e4ccb7817bbda96ad1cc626fc2ab&oe=5E4397C6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.bastaeuro.org/?fbclid=IwAR1xP6gj3eBmobkfz2_Z8cEIKauZmE8BoZbqfQO4lzjMdR2acQwKGANIsoM"} +{"post_id": "10152004747298155", "text": "Vogliono il SALVA ROMA perch\u00e8 hanno troppi debiti, ma poi vogliono fare le Olimpiadi e il Gran Premio di Formula Uno.\nRobb de matt...", "post_text": "Vogliono il SALVA ROMA perch\u00e8 hanno troppi debiti, ma poi vogliono fare le Olimpiadi e il Gran Premio di Formula Uno.\nRobb de matt...", "shared_text": "", "time": "2014-03-04 15:20:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1901832_10152004746078155_1661976868_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=zTc8VnyxT1IAQm3kwukL7H_suxttc31O2E0gewsO95TXRneNTsYXsLzLg&_nc_ht=scontent-cdt1-1.xx&oh=adfff5656f6a012cb842ded8ca5d83a0&oe=5E7D52DE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152001258728155", "text": "Inaugurata la nuova sede della Lega Nord a BOLZANO!\nPersone, idee, coraggio: dai che si cresce!", "post_text": "Inaugurata la nuova sede della Lega Nord a BOLZANO!\nPersone, idee, coraggio: dai che si cresce!", "shared_text": "", "time": "2014-03-02 18:59:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10003299_10152001252858155_1300690010_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=7_FOBTgT73oAQlXzR1IoZNnVspLkbeY7StIulg0UaPXi4wYYCJ37dLnDw&_nc_ht=scontent-cdt1-1.xx&oh=7335676b712ca773439b10ca4f1ce28e&oe=5E48BD2E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152001024448155", "text": "Che profumo in Valpolicella!\nSindaco e cittadini a San Pietro in Cariano, fila al gazebo per firmare e Golia, a quattro zampe, pronto a mordere!", "post_text": "Che profumo in Valpolicella!\nSindaco e cittadini a San Pietro in Cariano, fila al gazebo per firmare e Golia, a quattro zampe, pronto a mordere!", "shared_text": "", "time": "2014-03-02 16:47:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1959582_10152001016143155_1817279542_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=q9liPAHfi4cAQklOFKyTSEvSzCqI_53bkekNlHTxIenV0_B4zEtrilRUg&_nc_ht=scontent-cdt1-1.xx&oh=9ce5a8e8acf09fd0a3974928933d2b58&oe=5E8ACCB5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152000960918155", "text": "Piazza della Vittoria a LEGNAGO, il Veneto ha un'energia incredibile!", "post_text": "Piazza della Vittoria a LEGNAGO, il Veneto ha un'energia incredibile!", "shared_text": "", "time": "2014-03-02 16:02:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1620406_10152000959403155_818108257_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=ENd7FTYpmIgAQks1UrPZkGiSuMQPFNQDqH9Jo1I0LRv2-eTgdybj37iSg&_nc_ht=scontent-cdt1-1.xx&oh=3647ca21f042b77ef4436d7d023189e7&oe=5E3F826A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152000707933155", "text": "Piazza piena nella splendida BELLUNO!\nAltro che Salva-Roma, i cittadini ne hanno le palle piene.", "post_text": "Piazza piena nella splendida BELLUNO!\nAltro che Salva-Roma, i cittadini ne hanno le palle piene.", "shared_text": "", "time": "2014-03-02 12:33:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1924937_10152000706833155_1748993267_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=7MuLBnpXhEAAQkGRxNyqBeBGhDw_z3Hx-sfeYTV6cY_lG_ruvDOZ61tJA&_nc_ht=scontent-cdt1-1.xx&oh=bef4fe40afa972a49d480a329bbe3187&oe=5E463028", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10152000487818155", "text": "Oggi si parte da Vittorio Veneto.\nGente in fila da stamattina per firmare il Referendum per l'Indipendenza!\nPoi il Tour mi porter\u00e0 a Belluno, Legnago, San Pietro in Cariano, Bolzano e Arco di Trento.\nBuona domenicaaa!", "post_text": "Oggi si parte da Vittorio Veneto.\nGente in fila da stamattina per firmare il Referendum per l'Indipendenza!\nPoi il Tour mi porter\u00e0 a Belluno, Legnago, San Pietro in Cariano, Bolzano e Arco di Trento.\nBuona domenicaaa!", "shared_text": "", "time": "2014-03-02 10:29:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/988792_10152000485558155_433197807_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=oBI97R1Gf7oAQkSkKUT51NWWnsKdJi68GFoPwZ6ycvcBRCyiBQBi8rgeA&_nc_ht=scontent-cdt1-1.xx&oh=7098f5b68b0e92b1ec0fdda53c82b3c2&oe=5E480D84", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151999892878155", "text": "Torta per la festa del Capodanno Veneto! Notte serena Amici, adesso mi faccio un grappino", "post_text": "Torta per la festa del Capodanno Veneto! Notte serena Amici, adesso mi faccio un grappino", "shared_text": "", "time": "2014-03-02 00:29:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1620711_10151999890753155_323547666_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=HFAYM5SFmfoAQmJvi_6f7kK81ogu3V8jPfvmZ9q_YHMZQTQo13tIOrhig&_nc_ht=scontent-cdt1-1.xx&oh=5c3ca74f842786f5e0ab82cfc1646d8c&oe=5E4C0588", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151999331873155", "text": "L'acqua non ferma i Leghisti di MOGLIANO VENETO.\nTanta gente in Comune a sostegno dell'Indipendenza!", "post_text": "L'acqua non ferma i Leghisti di MOGLIANO VENETO.\nTanta gente in Comune a sostegno dell'Indipendenza!", "shared_text": "", "time": "2014-03-01 17:51:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1010986_10151999329963155_1955937733_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=2wWNpt4iBlkAQm7gdnQHAvChhCySv9qm-uoWXuAymBR_M9HssUNn3tUKA&_nc_ht=scontent-cdt1-1.xx&oh=bb8fda53941b43a6ed08e6f5e19b4919&oe=5E7BCF26", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151999172073155", "text": "Stupenda la cripta medievale del Duomo di Treviso", "post_text": "Stupenda la cripta medievale del Duomo di Treviso", "shared_text": "", "time": "2014-03-01 16:10:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1926705_10151999169988155_421356137_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=LZ5arhBQDYwAQkHuKJl21Ej4CkX8Vy7tI5vDEGBkEmOMhB1lVP8j-ARHw&_nc_ht=scontent-cdt1-1.xx&oh=2f048f0850726e63258faa01bc0adec2&oe=5E81B2A6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151998940073155", "text": "Nuovo Punto Lega a PADOVA in piazza delle Erbe.\nIn una mattinata 500 firme, una Comunit\u00e0 in cammino!", "post_text": "Nuovo Punto Lega a PADOVA in piazza delle Erbe.\nIn una mattinata 500 firme, una Comunit\u00e0 in cammino!", "shared_text": "", "time": "2014-03-01 13:48:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1932269_10151998935063155_175232324_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=1MR8-ghISFUAQnxweSTZdG8-m_U6UZCh0T_9AjtsssRozWfoarzCmQ27g&_nc_ht=scontent-cdt1-1.xx&oh=30459ee10e4e85783c101c74ae6d37c5&oe=5E47B8F9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151998829428155", "text": "Sullo splendido Ponte di Bassano del Grappa!\nChi di voi c'\u00e8 stato?", "post_text": "Sullo splendido Ponte di Bassano del Grappa!\nChi di voi c'\u00e8 stato?", "shared_text": "", "time": "2014-03-01 12:10:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1618635_10151998829003155_1725217797_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=LlWk0e3auDgAQkJJxQaHaCCDJHIOMgb7Mi8skwL5UYNl4MP4fmNuJrqRg&_nc_ht=scontent-cdt1-1.xx&oh=9f3fb8f87570e855baa5487701acb5d5&oe=5E437B24", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151998710113155", "text": "Seconda tappa vicentina, siamo a MALO.\nTanta gente, cioccolata calda e sorrisi.\nE domani la 90esima edizione dello storico Carnevale.", "post_text": "Seconda tappa vicentina, siamo a MALO.\nTanta gente, cioccolata calda e sorrisi.\nE domani la 90esima edizione dello storico Carnevale.", "shared_text": "", "time": "2014-03-01 10:05:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1231514_10151998708088155_1260335388_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=XQo1DhedhhYAQlMyVidLhXnjcAMjzB0wF8TqSqmh5-cWnqsmLmvqi5J-w&_nc_ht=scontent-cdt1-1.xx&oh=3216eb3415c71096891cb874595c2186&oe=5E451C5C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151996043613155", "text": "Ci saranno 500 GAZEBO in Veneto, sabato e domenica, a sostegno del Referendum per l'Indipendenza: grandi!\nEcco le tappe del mio VENETO TOUR.\nSABATO alle 9.30 incontro a Montecchio Maggiore, alle 10 a Bassano\u2026 Altro del Grappa, alle 13 a Padova (inaugurazione del Comitato Elettorale in Piazza delle Erbe), alle 17 a Mogliano Veneto, alle 19.30 ad Arcade ed infine in serata alle 21 a Caorle, per la cena del Capodanno Veneto.\nDOMENICA alle 10 a Vittorio Veneto, alle 11.30 a Belluno, alle 15 a Legnago e alle 16 a San Pietro in Cariano.\nE sempre domenica alle 18 a Bolzano (inaugurazione sede Lega in via Rovigo) e alle 20.30 ad Arco di Trento.\nChi si ferma e perduto! Vi aspetto.\nPER INFO www.firmaindipendenza.org", "post_text": "Ci saranno 500 GAZEBO in Veneto, sabato e domenica, a sostegno del Referendum per l'Indipendenza: grandi!\nEcco le tappe del mio VENETO TOUR.\nSABATO alle 9.30 incontro a Montecchio Maggiore, alle 10 a Bassano\u2026 Altro del Grappa, alle 13 a Padova (inaugurazione del Comitato Elettorale in Piazza delle Erbe), alle 17 a Mogliano Veneto, alle 19.30 ad Arcade ed infine in serata alle 21 a Caorle, per la cena del Capodanno Veneto.\nDOMENICA alle 10 a Vittorio Veneto, alle 11.30 a Belluno, alle 15 a Legnago e alle 16 a San Pietro in Cariano.\nE sempre domenica alle 18 a Bolzano (inaugurazione sede Lega in via Rovigo) e alle 20.30 ad Arco di Trento.\nChi si ferma e perduto! Vi aspetto.\nPER INFO www.firmaindipendenza.org", "shared_text": "", "time": "2014-02-27 20:10:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1901255_10151996043238155_966695714_n.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=LyNM2gxWlLsAQkMkqpoZIfOKA6nzTlK0JqBIIGLYaLEKOjBdTt7NZqbTw&_nc_ht=scontent-cdt1-1.xx&oh=697816c469dd4e6a3ba5bfd3288c645c&oe=5E861303", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.firmaindipendenza.org/?fbclid=IwAR18G8JuGC7DTrPZswDe_4cL8EW8Kb0xNr6w7aKVQY2SJ5h5kWmgGxsIlXs"} +{"post_id": "10151995623628155", "text": "Arena di Verona, spettacolo vero!", "post_text": "Arena di Verona, spettacolo vero!", "shared_text": "", "time": "2014-02-27 15:42:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1619076_10151995623243155_1350821058_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=xwhM9Uv_Zr8AQlBvRb43MTHdfP2dUC5qv8ViifhkMB-ih0XhspQopBw3A&_nc_ht=scontent-cdt1-1.xx&oh=93fa605ad68b4ce2daed2fbcbf5b4cb3&oe=5E83F221", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151994249468155", "text": "Scarica il manuale \"Come uscire dall'incubo. 31 domande, 31 risposte. La verit\u00e0 che nessuno ti dice\" da www.bastaeuro.org\nUN'ALTRA EUROPA E' POSSIBILE!", "post_text": "Scarica il manuale \"Come uscire dall'incubo. 31 domande, 31 risposte. La verit\u00e0 che nessuno ti dice\" da www.bastaeuro.org\nUN'ALTRA EUROPA E' POSSIBILE!", "shared_text": "", "time": "2014-02-26 20:54:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1621888_10151988480178155_1405999218_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=WbFjP55WY3QAQlvzN4uxTqMa3wK7lXfiJ-Q1metwdwJR5HFGjsnMr6N6Q&_nc_ht=scontent-cdt1-1.xx&oh=9bbfb5450e4cfe5e9107d49867f5ed2f&oe=5E80D382", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.bastaeuro.org/?fbclid=IwAR33LO5E832E-MSzi0hVx4PVN74-3JALDN_Y7h8bsihyem31cfRlDYG-erk"} +{"post_id": "10151993710698155", "text": "VITTORIA DELLA LEGA!!!!!\nIl Governo ritira il Decreto Salva-Roma e gli italiani risparmiano 1 MILIARDO DI EURO, che sarebbe finito a tappare il buco della Citt\u00e0 pi\u00f9 indebitata del mondo.\nChi sbaglia paga, politici romani a casa!\nLega, unica Opposizione.", "post_text": "VITTORIA DELLA LEGA!!!!!\nIl Governo ritira il Decreto Salva-Roma e gli italiani risparmiano 1 MILIARDO DI EURO, che sarebbe finito a tappare il buco della Citt\u00e0 pi\u00f9 indebitata del mondo.\nChi sbaglia paga, politici romani a casa!\nLega, unica Opposizione.", "shared_text": "", "time": "2014-02-26 14:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1982351_10151993710433155_441568065_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=loVBNGp0jeUAQkshh1rC7mF5nlyl-LrCrXw_IIpeAfKE2U5S441UbMNvA&_nc_ht=scontent-cdt1-1.xx&oh=f8a803cb133f18d07e31e3e9da81b634&oe=5E7F5B95", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151992423063155", "text": "PEDAGGI AUTOSTRADALI ridotti per i PENDOLARI, una VITTORIA della LEGA! In difesa dei CITTADINI, contro uno Stato ladro e sprecone che ha autorizzato RINCARI VERGOGNOSI in tempo di crisi, noi ci siamo!", "post_text": "PEDAGGI AUTOSTRADALI ridotti per i PENDOLARI, una VITTORIA della LEGA! In difesa dei CITTADINI, contro uno Stato ladro e sprecone che ha autorizzato RINCARI VERGOGNOSI in tempo di crisi, noi ci siamo!", "shared_text": "", "time": "2014-02-25 19:10:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1901941_10151992385908155_2016484439_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=wEIKj8BbBjsAQm8WvNwm3TiEEg014gh5UgIiJdL79i4ZaE6RRPL45WlHg&_nc_ht=scontent-cdt1-1.xx&oh=f70c09f922768f6eb7cc165bc8d1abb2&oe=5E510BF0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151991662758155", "text": "Ciao Amici, buona giornata!\nIo volo a Strasburgo, e comincio un nuovo libro.", "post_text": "Ciao Amici, buona giornata!\nIo volo a Strasburgo, e comincio un nuovo libro.", "shared_text": "", "time": "2014-02-25 06:44:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1796695_10151991661618155_1706753784_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=0jvASQRcbq4AQn77vTnue1bPZCo9pgPvAeRXHXb_mQAe4X_N6Or-X5Q_A&_nc_ht=scontent-cdt1-1.xx&oh=e7f8e0d1e08a8583321ba0c4a801902b&oe=5E506C63", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151990650533155", "text": "Sinistra a Como: tante promesse, pochi fatti e nuove tasse.", "post_text": "Sinistra a Como: tante promesse, pochi fatti e nuove tasse.", "shared_text": "", "time": "2014-02-24 19:06:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1779322_10151990650073155_629688620_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=6xRGu3YhB4wAQkF1TruRibF8RD06-pyYfy_1VjTpgLmN_-Sjg3pDtZb1Q&_nc_ht=scontent-cdt1-1.xx&oh=e1a0d1748ac49353d619e83e26d0a017&oe=5E7A3B9E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151990558383155", "text": "\u00dcber Euro, Immigration und F\u00f6deralismus, von Herrn Renzi nur viel Rauch: 1,10 Stunde verschwendet! Was alle verstanden haben ist, dass Herr Renzi die Staatsanleihen versteuern wird, um Deutschland und Bruxelles noch einen Gefallen zu tun!", "post_text": "\u00dcber Euro, Immigration und F\u00f6deralismus, von Herrn Renzi nur viel Rauch: 1,10 Stunde verschwendet! Was alle verstanden haben ist, dass Herr Renzi die Staatsanleihen versteuern wird, um Deutschland und Bruxelles noch einen Gefallen zu tun!", "shared_text": "", "time": "2014-02-24 17:58:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1618536_10151990557943155_6536608_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=mvmUf4C4Yi4AQnWPro4QAVlqMYlZACOnbYphvCXEI6g67T6DCYWOtluIw&_nc_ht=scontent-cdt1-1.xx&oh=3d6775762ca7997114d7920ff0d3ff18&oe=5E8C05A7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151989120528155", "text": "Palazzago, valle Imagna.\nAlmeno 300 persone per la serata con la Lega: tanti ragazzi, costine e salamelle strepitose, tanta voglia di sognare e di lavorare, e una Comunit\u00e0 di Militanti (nella foto) stupenda. Banzai!!!", "post_text": "Palazzago, valle Imagna.\nAlmeno 300 persone per la serata con la Lega: tanti ragazzi, costine e salamelle strepitose, tanta voglia di sognare e di lavorare, e una Comunit\u00e0 di Militanti (nella foto) stupenda. Banzai!!!", "shared_text": "", "time": "2014-02-23 23:18:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1932235_10151989115123155_702859517_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=wXOTZD_TMeQAQmvYjNv5GAnFyQHM_F1IhexONCA8IwQ78tcdNAXeDOkng&_nc_ht=scontent-cdt1-1.xx&oh=ba75a87057dda35bde573b3b15aa6f73&oe=5E3F5702", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151988592873155", "text": "ESENZIONE FISCALE per alluvionati e terremotati, o diventiamo cattivi anche noi!", "post_text": "ESENZIONE FISCALE per alluvionati e terremotati, o diventiamo cattivi anche noi!", "shared_text": "", "time": "2014-02-23 18:26:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1743699_10151988592198155_307813838_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=0xiW34m9q0gAQlTsPBVc5JWpFJB54U0i_rXtRoWn7nsStHVQk2Q7TkFJg&_nc_ht=scontent-cdt1-1.xx&oh=0822755345570e102c7eecec87b354e9&oe=5E7CA825", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151986689688155", "text": "Paradossalmente sar\u00e0 la \"Lega Nord per l'Indipendenza della Padania\" che nella sua lotta contro l'Euro salver\u00e0 tutte le diversit\u00e0 dell'Italia, da BRUXELLES ci vogliono 'marmellata' indistinta, consumatori senza anima e senza identit\u00e0!\nNoi non ci tireremo indietro, e vinceremo, perch\u00e9 siamo nel giusto.\n#bastaeuro", "post_text": "Paradossalmente sar\u00e0 la \"Lega Nord per l'Indipendenza della Padania\" che nella sua lotta contro l'Euro salver\u00e0 tutte le diversit\u00e0 dell'Italia, da BRUXELLES ci vogliono 'marmellata' indistinta, consumatori senza anima e senza identit\u00e0!\nNoi non ci tireremo indietro, e vinceremo, perch\u00e9 siamo nel giusto.\n#bastaeuro", "shared_text": "", "time": "2014-02-22 16:31:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1902980_10151986687553155_1038322883_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=vsyJ5GckiZQAQkP309Uxqcj5lNoSsF3ZLqueRTxC9P72i7lLkgCelebXQ&_nc_ht=scontent-cdt1-1.xx&oh=d59beeae1bd7c298b80e3af2221c0dd3&oe=5E43750E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151986610238155", "text": "BASTA EURO!\nSala strapiena, abbiamo dovuto portare degli amplificatori all'esterno per tutta la gente che non \u00e8 riuscita ad entrare.\nGoverno Renzi-Merkel e Moneta Unica criminale, la nostra Comunit\u00e0 non si arrende!", "post_text": "BASTA EURO!\nSala strapiena, abbiamo dovuto portare degli amplificatori all'esterno per tutta la gente che non \u00e8 riuscita ad entrare.\nGoverno Renzi-Merkel e Moneta Unica criminale, la nostra Comunit\u00e0 non si arrende!", "shared_text": "", "time": "2014-02-22 15:40:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1898126_10151986599823155_458802519_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=jlO0Y6KtbKEAQkQtLups2c6yvw_31z8Q4l8t9KqatMAPHo1XPPo0IcZ2Q&_nc_ht=scontent-cdt1-1.xx&oh=9c84347da0dd06e24f6548a2ec4e6806&oe=5E7F9D13", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151986490638155", "text": "Per chi proprio oggi non \u00e8 riuscito a venire a MILANO, niente paura! Dalle 15 potete seguire la DIRETTA STREAMING su www.bastaeuro.org! UN'ALTRA EUROPA E' POSSIBILE- VI ASPETTO!", "post_text": "Per chi proprio oggi non \u00e8 riuscito a venire a MILANO, niente paura! Dalle 15 potete seguire la DIRETTA STREAMING su www.bastaeuro.org! UN'ALTRA EUROPA E' POSSIBILE- VI ASPETTO!", "shared_text": "", "time": "2014-02-22 14:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1970657_10151986489803155_1862171264_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=5-hNBFekvgcAQlKWAVLZGYy5HwYXq_a8_jDO5i8v1WTWZZn6Dp83uObXw&_nc_ht=scontent-cdt1-1.xx&oh=c51a3b47be3efeed0e3b6f31a4b56e63&oe=5E894742", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.bastaeuro.org/?fbclid=IwAR0T5WXukOpQs0C7xq7AZTLXOOt7tCGYaBB83W8kaqIMK28EQ8-aFmu0wGo"} +{"post_id": "10151985503423155", "text": "Stasera non mi riconosco...\nCena leggera, pinzimonio con carote e finocchi.\nStar\u00f2 bene???", "post_text": "Stasera non mi riconosco...\nCena leggera, pinzimonio con carote e finocchi.\nStar\u00f2 bene???", "shared_text": "", "time": "2014-02-21 23:57:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1798527_10151985502723155_630035191_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=6ty1cBO-Ck0AQnyzTAUyc0D7UN_Xdy4sCmg8EclEbsf34ZNSIhvq1RHkA&_nc_ht=scontent-cdt1-1.xx&oh=d501d84b47a2d5008a9547bc09385d3d&oe=5E48C4E4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151983665218155", "text": "Onore ai Leghisti in terra di Romagna!\nUna Comunit\u00e0 che sogna, che resiste, che lavora.", "post_text": "Onore ai Leghisti in terra di Romagna!\nUna Comunit\u00e0 che sogna, che resiste, che lavora.", "shared_text": "", "time": "2014-02-20 22:57:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1656016_10151983663433155_1607027277_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=8patfJLfBBcAQkXWsLZt76IE2oyCTWQb-sxioyqoQN-Nry97WWg6Vk9sg&_nc_ht=scontent-cdt1-1.xx&oh=638f8051075a176173da2f6ad01a9d81&oe=5E7D8AA5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151983043188155", "text": "Mentre in Senato votano il SALVA ROMA, a Venezia la Lega presenta il Referendum per l'Indipendenza.\n1 e 2 marzo, in centinaia di piazze venete, aspettiamo anche te!\nWWW.FIRMAINDIPENDENZA.ORG", "post_text": "Mentre in Senato votano il SALVA ROMA, a Venezia la Lega presenta il Referendum per l'Indipendenza.\n1 e 2 marzo, in centinaia di piazze venete, aspettiamo anche te!\nWWW.FIRMAINDIPENDENZA.ORG", "shared_text": "", "time": "2014-02-20 16:01:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1780914_10151983040798155_1691742795_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=6k782DZnE4MAQnqTOM3A6HS-QkqZnd39jK3j_rkZlGd1Iv8gWAElp7PUA&_nc_ht=scontent-cdt1-1.xx&oh=072f8c7766c14a1be30a137a5b5124b7&oe=5E8AC566", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://WWW.FIRMAINDIPENDENZA.ORG/?fbclid=IwAR1nofzM81a3Pjamu8zhzP0d60C2cc3wG_5NibfvL6IL_F00r-UvjY4IloI"} +{"post_id": "10151982750533155", "text": "L'alba di un nuovo giorno, vista dal Cielo, dedicata a Voi.\nLass\u00f9 qualcuno ci ama.\nVediamo di non deluderlo, e di non sprecare il nostro Tempo.\nCambiare il Mondo, insieme si pu\u00f2.", "post_text": "L'alba di un nuovo giorno, vista dal Cielo, dedicata a Voi.\nLass\u00f9 qualcuno ci ama.\nVediamo di non deluderlo, e di non sprecare il nostro Tempo.\nCambiare il Mondo, insieme si pu\u00f2.", "shared_text": "", "time": "2014-02-20 11:09:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1920419_10151982749643155_1972239768_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=Y3jQw8ar8vMAQkkR3HmG9sXbGRoy46fzRkHNQiVkMqbpLbjX95bikfRlw&_nc_ht=scontent-cdt1-1.xx&oh=846054c7cd64c8aa3e0971294ba3cdbc&oe=5E3DFFE8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151979903103155", "text": "Insieme ai nostri ARTIGIANI, che hanno invaso pacificamente Roma.\nMeno Stato e meno tasse, ma soprattutto via da un EURO che massacra imprese, lavoro e speranza.", "post_text": "Insieme ai nostri ARTIGIANI, che hanno invaso pacificamente Roma.\nMeno Stato e meno tasse, ma soprattutto via da un EURO che massacra imprese, lavoro e speranza.", "shared_text": "", "time": "2014-02-18 20:43:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1901598_10151979899273155_601661417_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=VMImUVLvRCgAQmcoReWkp6te2hQxMvUJXZq5JfjnYYhOcvyD5aMUumodA&_nc_ht=scontent-cdt1-1.xx&oh=e3a1397f11a9a604a5fe4978ea6499ef&oe=5E40573E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151979441718155", "text": "FESTIVAL spreco di Stato!\nNo al Canone Rai!\nProtesta mia e dei senatori Leghisti.\nBOICOTTA IL FESTIVAL dei milionari di sinistra.", "post_text": "FESTIVAL spreco di Stato!\nNo al Canone Rai!\nProtesta mia e dei senatori Leghisti.\nBOICOTTA IL FESTIVAL dei milionari di sinistra.", "shared_text": "", "time": "2014-02-18 14:50:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1969365_10151979440628155_2057752297_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=s7d2yTWVJU0AQlDMUPh7fLrQifGagzbLRYZahUL-Ryd3gJor8WgfMiSrA&_nc_ht=scontent-cdt1-1.xx&oh=d632f2726fb20554580f941aad07c7f2&oe=5E3E1C54", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151977706158155", "text": "Incontro con gli operai della INVERNIZZI a Caravaggio.\n300 posti di lavoro a rischio?\nAltro che legge elettorale, questi sono i veri problemi.\nLa Lega c'\u00e8.", "post_text": "Incontro con gli operai della INVERNIZZI a Caravaggio.\n300 posti di lavoro a rischio?\nAltro che legge elettorale, questi sono i veri problemi.\nLa Lega c'\u00e8.", "shared_text": "", "time": "2014-02-17 13:32:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1505591_10151977704788155_1156193911_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=inftBl3E9LgAQlYsFaYep3bWGqqVccBf43r7pt4lNPV1YekRTIospyOnw&_nc_ht=scontent-cdt1-1.xx&oh=6593ff6fed797edd876e4e77fc8f388e&oe=5E3E8D49", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151977611843155", "text": "Mentre a ROMA si giocano le poltrone, i MAR\u00d2 in INDIA si giocano la vita", "post_text": "Mentre a ROMA si giocano le poltrone, i MAR\u00d2 in INDIA si giocano la vita", "shared_text": "", "time": "2014-02-17 11:43:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/14864_10151977611583155_728210466_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=oxKBqInpwNMAQmD97UROvmRmd_q7TeeyrqrPkTxSxNIbi4dEZi8DWgGlA&_nc_ht=scontent-cdt1-1.xx&oh=f835a69fe3cd451784f2e2df2356b0fe&oe=5E4BC44C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151976299168155", "text": "SABATO 22 FEBBRAIO, A MILANO - ORE 15 vi aspetto tutti al #BASTAEURO TOUR, con il prof. Claudio Borghi. Verr\u00e0 distribuito il manuale 'Come uscire dall'incubo. 31 domande, 31 risposte'.\nVi attendo NUMEROSISSIMI!\nEvento Facebook: https://www.facebook.com/events/278796415609930/?fref=ts", "post_text": "SABATO 22 FEBBRAIO, A MILANO - ORE 15 vi aspetto tutti al #BASTAEURO TOUR, con il prof. Claudio Borghi. Verr\u00e0 distribuito il manuale 'Come uscire dall'incubo. 31 domande, 31 risposte'.\nVi attendo NUMEROSISSIMI!\nEvento Facebook: https://www.facebook.com/events/278796415609930/?fref=ts", "shared_text": "", "time": "2014-02-16 18:00:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1925233_10151976296638155_1708365993_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=Fosm6lJuJkIAQkIh9fuQ1Ev7KZdJPGXnLsMlG-_GfDKaM4OLmQae9v4EQ&_nc_ht=scontent-cdt1-1.xx&oh=531e4aa119b1d1c16cc0b733d7ab6ff8&oe=5E7C1E19", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151975847353155", "text": "Corteo spontaneo NO-EURO nel centro di Firenze!\nCentinaia di foto, migliaia di turisti, tanta Legaaaaaa!", "post_text": "Corteo spontaneo NO-EURO nel centro di Firenze!\nCentinaia di foto, migliaia di turisti, tanta Legaaaaaa!", "shared_text": "", "time": "2014-02-16 12:45:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1798379_10151975846483155_1725821830_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=Jbu7NUA9xi0AQl9BAe7TNzOay46xqrfcHkox5bWvRhQtWF0k5yuGk8vdA&_nc_ht=scontent-cdt1-1.xx&oh=33c91ebfb1a0457fa917a3b96e5c0be7&oe=5E8318B1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151975710378155", "text": "Qui Firenze!\nMentre Renzi cerca ministri, la Lega riempie l'Auditorium per parlare di Euro e di Lavoro.", "post_text": "Qui Firenze!\nMentre Renzi cerca ministri, la Lega riempie l'Auditorium per parlare di Euro e di Lavoro.", "shared_text": "", "time": "2014-02-16 10:11:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1959832_10151975705693155_187397911_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=M9h6g9yyemoAQlLSRkGe61QNEWth2NM9cioWjWPcYycrpQB3Yuf7u1Mzw&_nc_ht=scontent-cdt1-1.xx&oh=73bec144d3e75970788adb0dcb9e8a53&oe=5E448B47", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151974937698155", "text": "E adesso cena tipica emiliana!", "post_text": "E adesso cena tipica emiliana!", "shared_text": "", "time": "2014-02-15 21:45:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1902071_10151974937198155_1331797108_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=5D10MzxdXDwAQkboSOX7CBYM1RR94Ej11_VQthGe8-x5KX_aOENB3qUhg&_nc_ht=scontent-cdt1-1.xx&oh=dfd86cff3c6ac67b5b2686d01c83a41f&oe=5E47F6F5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151974746603155", "text": "Anche sotto l'acqua, a Pavia si rialza la testa! Un'altra Europa \u00e8 possibile, SPERARE si pu\u00f2.", "post_text": "Anche sotto l'acqua, a Pavia si rialza la testa! Un'altra Europa \u00e8 possibile, SPERARE si pu\u00f2.", "shared_text": "", "time": "2014-02-15 19:42:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1002211_10151974745418155_168249180_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=-MKt0HYL3vsAQnDkQT4Zbbz0evEhsY0teYNQ5BovQ2ilQUoRJFjwdoiOg&_nc_ht=scontent-cdt1-1.xx&oh=3f8479440b6d5e4ba811968e89e2ef54&oe=5E40B89E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151974245028155", "text": "> Vi aspetto domenica 16 febbraio a FIRENZE per l'ANTEPRIMA del #bastaeuro tour insieme all'amico prof. Claudio Borghi. Numero 'zero' del Manuale 'BASTA EURO! COME USCIRE DALL'INCUBO. 31 DOMANDE, 31 RISPOSTE' <", "post_text": "> Vi aspetto domenica 16 febbraio a FIRENZE per l'ANTEPRIMA del #bastaeuro tour insieme all'amico prof. Claudio Borghi. Numero 'zero' del Manuale 'BASTA EURO! COME USCIRE DALL'INCUBO. 31 DOMANDE, 31 RISPOSTE' <", "shared_text": "", "time": "2014-02-15 14:30:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1795491_10151974243483155_755200290_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=vd31ov8Qnt8AQkMLd1E9hA4RCkS2bqrmN_e-xrtV9bfKVnkk_KNYdVcSA&_nc_ht=scontent-cdt1-1.xx&oh=8652c4aa5cbd344ba5dc6279efd86379&oe=5E463FFB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151969858573155", "text": "SOLO LA LEGA lavora da anni, con coraggio, per tornare Padroni a casa nostra: fuori dall'Euro, il Lavoro riparte!", "post_text": "SOLO LA LEGA lavora da anni, con coraggio, per tornare Padroni a casa nostra: fuori dall'Euro, il Lavoro riparte!", "shared_text": "", "time": "2014-02-13 10:25:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1380034_10151969856123155_638704563_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=Mqb94x0yE9UAQm6u6qX7ozV0xmO6mMu7j30vJFqym5iudZS3uBfZnJ1RQ&_nc_ht=scontent-cdt1-1.xx&oh=9fe7c48d451be029fe96cb3471965b4b&oe=5E7E6E7A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151968999058155", "text": "Vince Letta o vince Renzi?\nPerdono gli italiani!!!", "post_text": "Vince Letta o vince Renzi?\nPerdono gli italiani!!!", "shared_text": "", "time": "2014-02-12 21:25:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1609631_10151968998663155_965672147_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=Dmbzo3N4p78AQkOuhm5VMUDVqXhi99ZsfsBqO1KNDIjHCb_k-VvjwtPgA&_nc_ht=scontent-cdt1-1.xx&oh=a646871a2813b1e80eb1091f96b4456f&oe=5E7D102F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151968984448155", "text": "Pubblico Leghista tonico nella Gabbia!\nPronti???", "post_text": "Pubblico Leghista tonico nella Gabbia!\nPronti???", "shared_text": "", "time": "2014-02-12 21:14:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1797611_10151968984108155_509599979_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=babY4yhrTNQAQkoLs4kVLqR3Gb50_R3si-kg6WBvnx_QdT5uMS_D17VuA&_nc_ht=scontent-cdt1-1.xx&oh=6182568cfab446063915e18465fecd78&oe=5E82BC1B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151968487738155", "text": "Cancellare l'infame riforma Fornero sulle pensioni. Regolamentare e tassare la prostituzione. Riservare i concorsi pubblici a chi ha la cittadinanza italiana. Abolire i Prefetti e le prefetture. Cancellare i \"\u2026 Altroreati di opinione\".\nAbbiamo depositato stamattina questi 5 REFERENDUM, dal 29 marzo preparatevi a firmare, da Nord a Sud!\nLega, opposizione e proposte concrete.", "post_text": "Cancellare l'infame riforma Fornero sulle pensioni. Regolamentare e tassare la prostituzione. Riservare i concorsi pubblici a chi ha la cittadinanza italiana. Abolire i Prefetti e le prefetture. Cancellare i \"\u2026 Altroreati di opinione\".\nAbbiamo depositato stamattina questi 5 REFERENDUM, dal 29 marzo preparatevi a firmare, da Nord a Sud!\nLega, opposizione e proposte concrete.", "shared_text": "", "time": "2014-02-12 14:57:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1912329_10151968484898155_899567126_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=pbkLWC84fPYAQmJSaMwGdxTzE6mZl6-tWIbW16h4rCSiZy-KYhTQBLmvw&_nc_ht=scontent-cdt1-1.xx&oh=18aca0ad22f74ddd8aca94558e9b6ed6&oe=5E44644B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151965823713155", "text": "Un bicchierino di Braulio alla vostra salute!\nVi piace, o avete altri consigli?", "post_text": "Un bicchierino di Braulio alla vostra salute!\nVi piace, o avete altri consigli?", "shared_text": "", "time": "2014-02-10 22:44:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1779967_10151965820988155_1353101775_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=DPseAcD8OtgAQkly6CP0inixk3P5qX3OYqNnRmZZ5HCkd4kwCqwfmdk9g&_nc_ht=scontent-cdt1-1.xx&oh=d8cb27afba0ef9646fb8e5cb9e2f4129&oe=5E79CE94", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151965633943155", "text": "Pronto alla battaglia!", "post_text": "Pronto alla battaglia!", "shared_text": "", "time": "2014-02-10 20:39:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/71676_10151965633683155_1784599960_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=eiRq9prNAr8AQnaa5ok14YVsQfATvEuG4KGulbhjTxOmylBm9ChFcI-8g&_nc_ht=scontent-cdt1-1.xx&oh=b47387c7e1031d24b5bb541e7dffaac8&oe=5E892967", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151963929723155", "text": "Missoltino di Como e bianco di Sardegna, che gemellaggio!", "post_text": "Missoltino di Como e bianco di Sardegna, che gemellaggio!", "shared_text": "", "time": "2014-02-09 22:13:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1619418_10151963928318155_1602754151_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=S462G5BkFxkAQmg1iLkDdKHaqj8xQYgZOjUm61BuxeJ5fD0zF-wtLI0-g&_nc_ht=scontent-cdt1-1.xx&oh=b03087ddf26f5285071324ee350be7f4&oe=5E811A02", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151963043033155", "text": "Spettacolo! Indovinate il Lago...", "post_text": "Spettacolo! Indovinate il Lago...", "shared_text": "", "time": "2014-02-09 14:28:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1796641_10151963042803155_950318296_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=qzPh1__vtvwAQkVa57jU4mZraK3jg-t_HKnx0kXwLa3AeOlyVWTZFRHrw&_nc_ht=scontent-cdt1-1.xx&oh=7cd45f35f8e7b4d0686df4d2ba3e2cab&oe=5E3EB0D9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151961130443155", "text": "Ingredienti genuini, per giornata da bambini!", "post_text": "Ingredienti genuini, per giornata da bambini!", "shared_text": "", "time": "2014-02-08 09:51:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1891124_10151961130183155_1317569495_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=O6kuH-C643oAQn8ixbRaJzhfe1fCptj4yDllhjFwhE3uIwvFO5KCdMC0Q&_nc_ht=scontent-cdt1-1.xx&oh=f2c8bfad7fb9a707d9ac3e16de128cf0&oe=5E3F53EE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151946388578155", "text": "Oggi pranzo dietetico...", "post_text": "Oggi pranzo dietetico...", "shared_text": "", "time": "2014-01-31 13:55:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1620780_10151946388358155_269183580_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=Vh3oX10crskAQkJXHI7grEHv7Jdl7m-KbcAZftmruXYmJtSe9nCzvSMeg&_nc_ht=scontent-cdt1-1.xx&oh=c3f41a1870548a13e1095b1817098b9d&oe=5E4DFFA8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151944316883155", "text": "Artigiani del legno in piazza ad Aosta, spettacolo di passione e di fatica!", "post_text": "Artigiani del legno in piazza ad Aosta, spettacolo di passione e di fatica!", "shared_text": "", "time": "2014-01-30 08:45:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1604470_10151944316308155_1103029412_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=-mDejqFBLlsAQnz_UYsf0c4HX-p6f11tRHmxwzKLAff9VAzqsFySUGemg&_nc_ht=scontent-cdt1-1.xx&oh=5b467e180c466278e53aa00b62999e40&oe=5E466275", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151943385638155", "text": "Un quintale di TRIPPA in cottura, in vista della storica Veill\u00e0 valdostana di domani, fiera e cantine aperte.\nViva le tradizioni e... buon appetito!", "post_text": "Un quintale di TRIPPA in cottura, in vista della storica Veill\u00e0 valdostana di domani, fiera e cantine aperte.\nViva le tradizioni e... buon appetito!", "shared_text": "", "time": "2014-01-29 20:50:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1497170_10151943383568155_1979205229_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=EUkVRLOUA9wAQlt9N0IEoga0KuTMhMOOr6kzeHyT1EBhJuQJ_n5elnPnA&_nc_ht=scontent-cdt1-1.xx&oh=b2f6f006fb4a7844288589b3237a7352&oe=5E46A403", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151943273048155", "text": "Qui Aosta, per parlare di Autonomia, Europa e Lavoro.\nNevicaaaaa!", "post_text": "Qui Aosta, per parlare di Autonomia, Europa e Lavoro.\nNevicaaaaa!", "shared_text": "", "time": "2014-01-29 19:31:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1653902_10151943272268155_794966721_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=d_f8m1t4SrIAQnoU-J9peh5uj15fbwFlewB2sCbOvIoGcej61lkAdo7vA&_nc_ht=scontent-cdt1-1.xx&oh=14f49f6e910a98d0943df8c6bcd55a07&oe=5E86AEB7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151942622163155", "text": "Qui Bruxelles, sta per parlare Enrico Letta. Ve lo racconter\u00f2 in diretta! Avete domande da fare?", "post_text": "Qui Bruxelles, sta per parlare Enrico Letta. Ve lo racconter\u00f2 in diretta! Avete domande da fare?", "shared_text": "", "time": "2014-01-29 10:08:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1493215_10151942621908155_472801049_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=_-rkxeRag68AQkndgCMkeXr_97942R-RM7KEdoiAAEd2XJ9sB_nuDTXbQ&_nc_ht=scontent-cdt1-1.xx&oh=df4d7b209cae0018193ca6f2465f39cc&oe=5E887ED1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151941247638155", "text": "Due metri d'acqua, negozi chiusi.\nMa lo Stato chieder\u00e0 le tasse anche a questa gente. \u00c8 giusto???", "post_text": "Due metri d'acqua, negozi chiusi.\nMa lo Stato chieder\u00e0 le tasse anche a questa gente. \u00c8 giusto???", "shared_text": "", "time": "2014-01-28 15:27:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1601584_10151941246783155_743918455_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=iuFPIcqZFk8AQns8YL8BEmKi2Q6M3bUx58oDJTXiSb4JM0Q8B-NI91Ozg&_nc_ht=scontent-cdt1-1.xx&oh=d47f50188f82faf826c2d0e492ce1bd7&oe=5E4512C2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151941199938155", "text": "Fino a 2 giorni fa, qui c'era solo acqua, un \"lago\" di 75 km quadrati che ha sommerso tutto.\nMa per Bruxelles, questo disastro non \u00e8 \"abbastanza grave\": niente contributi.\nRoba da matti.", "post_text": "Fino a 2 giorni fa, qui c'era solo acqua, un \"lago\" di 75 km quadrati che ha sommerso tutto.\nMa per Bruxelles, questo disastro non \u00e8 \"abbastanza grave\": niente contributi.\nRoba da matti.", "shared_text": "", "time": "2014-01-28 14:46:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1622256_10151941198108155_1479098704_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=ACqxtOf9TKcAQlO6omuvahvcp5xhc9rFYEdOCSZMGo6FBx2J0BX68W-GA&_nc_ht=scontent-cdt1-1.xx&oh=70a4603b449dc2b630f225aeaea0f7a7&oe=5E89BAED", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151941186833155", "text": "Qui BOMPORTO, Modena, con agricoltori e cittadini alluvionati, e dimenticati.\nSoldi dallo Stato? Zero.\nSoldi dall'Europa? Zero.\nSu le maniche, e Indipendenza!", "post_text": "Qui BOMPORTO, Modena, con agricoltori e cittadini alluvionati, e dimenticati.\nSoldi dallo Stato? Zero.\nSoldi dall'Europa? Zero.\nSu le maniche, e Indipendenza!", "shared_text": "", "time": "2014-01-28 14:33:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1620880_10151941185328155_965454519_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=_xrGLbV1_3sAQksxU2Cb2XQ3SGV4LsRfej-V3HCOql9r7MrdsaH495VVA&_nc_ht=scontent-cdt1-1.xx&oh=87cc4c940a3662b9c6501f427f5a4bb3&oe=5E7F32D8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151939583148155", "text": "Qui Catania.\nAll'Istituto Oncologico del Mediterraneo ho appena presentato con medici, infermieri e volontari, il \"Progetto Parrucche\", dedicato alle donne malate di tumore.\nNel nome della Solidariet\u00e0, del Volontariato e dell'Autonomia, un gemellaggio fra Nord e Sicilia.", "post_text": "Qui Catania.\nAll'Istituto Oncologico del Mediterraneo ho appena presentato con medici, infermieri e volontari, il \"Progetto Parrucche\", dedicato alle donne malate di tumore.\nNel nome della Solidariet\u00e0, del Volontariato e dell'Autonomia, un gemellaggio fra Nord e Sicilia.", "shared_text": "", "time": "2014-01-27 15:53:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1653344_10151939578733155_1099709311_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=qx2QZXkqnnsAQkEIY7cBSW3sq-ZWi5xdyvP5IyUEVj5vZRbmvX86dtY8Q&_nc_ht=scontent-cdt1-1.xx&oh=76d440a044a1399228146c80b53fc013&oe=5E4625DE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151935879303155", "text": "Pienone di Giornalisti!\nParte il contrattacco della Lega alla RAPINA FISCALE di uno Stato Ladro.", "post_text": "Pienone di Giornalisti!\nParte il contrattacco della Lega alla RAPINA FISCALE di uno Stato Ladro.", "shared_text": "", "time": "2014-01-25 15:32:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1010478_10151935879188155_1994303497_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=mjThQGnOcsMAQkTEK4y3ZRirPPrfvqH815CMOFBKL8RtZGBthI9TGj_bw&_nc_ht=scontent-cdt1-1.xx&oh=4436b877796e868ff8afe0e42a02ebfb&oe=5E444659", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151931074993155", "text": "Adoro il MIRTO di Sardegna!\nLiquori, avete altre preferenze?", "post_text": "Adoro il MIRTO di Sardegna!\nLiquori, avete altre preferenze?", "shared_text": "", "time": "2014-01-22 21:50:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/995305_10151931074268155_1270119457_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=GYigXq88eiEAQkX6CStznXefkbGJJ1BmQylm5Ds3L_-zj_ISah6K5TUog&_nc_ht=scontent-cdt1-1.xx&oh=17150d886708dbb73b3ffdbf40314435&oe=5E862751", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151925207458155", "text": "Forza ragazzi!", "post_text": "Forza ragazzi!", "shared_text": "", "time": "2014-01-19 20:42:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1545737_10151925207258155_1893178944_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=EML6YnnHM_0AQko8G69VL7aFj1csKCgjjcKPwVNMeFkaUKAXQ8yD-JEug&_nc_ht=scontent-cdt1-1.xx&oh=eae54e371907fc17a2ff8f8a53780e71&oe=5E7E9B80", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151923162228155", "text": "Grande gruppo qui a Padova! 20 sfigati dei centri sociali a urlare, non se li guarda nessuno...", "post_text": "Grande gruppo qui a Padova! 20 sfigati dei centri sociali a urlare, non se li guarda nessuno...", "shared_text": "", "time": "2014-01-18 16:17:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1512404_10151923157188155_1921794456_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=hiuI6EcKEpIAQnh7AE0rMpglcv0ILCRDuTpzSxlRiP3PFVcIfhkz27YTQ&_nc_ht=scontent-cdt1-1.xx&oh=7b9ec099d127c8f13d0a0658fe95b33a&oe=5E7B1A0E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151920254718155", "text": "Santoro e Fiorito, bella coppia!", "post_text": "Santoro e Fiorito, bella coppia!", "shared_text": "", "time": "2014-01-16 21:35:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1522208_10151920254543155_817253934_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=W8iuR3KZf2oAQm_ebHDktfd40OjfzWiagb1oQwet4YpaYdr9Pl0MXPFpA&_nc_ht=scontent-cdt1-1.xx&oh=49dff272091ec6abfee4214ee5cc7b9d&oe=5E883C83", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151918301663155", "text": "Incontro con Marine Le Pen, un patto molto positivo!\nUn'altra Europa \u00e8 possibile.\nUn'Europa pacifica e ordinata, fondata sul Lavoro e sulle Culture, non serva dell'Euro e delle banche.\nUn'Europa orgogliosa, che\u2026 Altro non \u00e8 disposta a farsi invadere da uomini e merci. Una Comunit\u00e0 in cammino.\nDiamo fastidio? Sicuramente.\nCi attaccheranno? Sicuramente.\nAbbiamo paura? NO!\nAvanti, insieme si pu\u00f2.", "post_text": "Incontro con Marine Le Pen, un patto molto positivo!\nUn'altra Europa \u00e8 possibile.\nUn'Europa pacifica e ordinata, fondata sul Lavoro e sulle Culture, non serva dell'Euro e delle banche.\nUn'Europa orgogliosa, che\u2026 Altro non \u00e8 disposta a farsi invadere da uomini e merci. Una Comunit\u00e0 in cammino.\nDiamo fastidio? Sicuramente.\nCi attaccheranno? Sicuramente.\nAbbiamo paura? NO!\nAvanti, insieme si pu\u00f2.", "shared_text": "", "time": "2014-01-15 18:05:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1555558_10151918292028155_1345531312_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=EPtmYtmhghQAQkFxxYYbsf1PUGyv8o0Nh5f0RzPY89Knk0yiWjj8I3GLg&_nc_ht=scontent-cdt1-1.xx&oh=54311826f3e56f957255e7b7eb531942&oe=5E7AFC8B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151917500078155", "text": "Fra poco mi collego in diretta con AGOR\u00c0 su Rai Tre.\nVisto che sono a Strasburgo, chi compra una copia de La Padania anche per me???", "post_text": "Fra poco mi collego in diretta con AGOR\u00c0 su Rai Tre.\nVisto che sono a Strasburgo, chi compra una copia de La Padania anche per me???", "shared_text": "", "time": "2014-01-15 08:19:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1507718_10151917499408155_885420861_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=Pw4vnAqtZhwAQlA7mM-UxJfVpSggOGaNmrVCGWFIB5Wny0dTITwLVzOJA&_nc_ht=scontent-cdt1-1.xx&oh=42229ffb09c61212c6f114b46b176090&oe=5E80F566", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151912374163155", "text": "Oggi seguo il CALCIO VERO: i bimbi di 10 anni!", "post_text": "Oggi seguo il CALCIO VERO: i bimbi di 10 anni!", "shared_text": "", "time": "2014-01-12 15:47:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1525006_10151912372473155_509261602_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=Mjdw6VBpfFcAQkOQ_XwkznC9693tckcwIlV__ziBGAWRsr9Oz11hwfdjQ&_nc_ht=scontent-cdt1-1.xx&oh=a300fcebecfb79e3890040a93f399985&oe=5E8733AC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151910559668155", "text": "Le ELEZIONI le fanno vincere i cittadini, non i tribunali!", "post_text": "Le ELEZIONI le fanno vincere i cittadini, non i tribunali!", "shared_text": "", "time": "2014-01-11 18:18:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1609704_10151910558563155_473329735_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=D7GG-PDVqM8AQmpUKOYUTUegmmJdKVXr_6aV1kMfRGcq9M8LZte_2EtaA&_nc_ht=scontent-cdt1-1.xx&oh=38fb94b9ca51c1d521b849bea8b45503&oe=5E792BCB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151910518818155", "text": "Tante Fiaccole a Torino per difendere la Libert\u00e0!", "post_text": "Tante Fiaccole a Torino per difendere la Libert\u00e0!", "shared_text": "", "time": "2014-01-11 17:53:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1545633_10151910517248155_854221475_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=MSqAE_yd7nMAQmstm1it_pwGD7UAxFmdThKxlaq-UU8JQB73anSlWGAzA&_nc_ht=scontent-cdt1-1.xx&oh=5f6abc04fbbf76486ce7f9a06a644b73&oe=5E4B4E06", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151910049138155", "text": "Protesta leghista al casello di Gallarate!\nPerch\u00e8???\nPerch\u00e8 al Sud ci sono pi\u00f9 di 1.000 kilometri di autostrade GRATIS, e invece al Nord si paga tutto, e si paga caro.\nDa Milano a Como e ritorno, 8 euro.\n\u00c8 giusto???", "post_text": "Protesta leghista al casello di Gallarate!\nPerch\u00e8???\nPerch\u00e8 al Sud ci sono pi\u00f9 di 1.000 kilometri di autostrade GRATIS, e invece al Nord si paga tutto, e si paga caro.\nDa Milano a Como e ritorno, 8 euro.\n\u00c8 giusto???", "shared_text": "", "time": "2014-01-11 12:29:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1511915_10151910044733155_1066688385_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=jlME_BPi4S0AQlMxKgaguoW6Q_Ch8gwQsh0aK1PkMZtpMtfshPiV6M-HA&_nc_ht=scontent-cdt1-1.xx&oh=4bab30e2f0aeab8830785fa2566bcc14&oe=5E3F9632", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151908310933155", "text": "Nuovi adesivi BASTA EURO!\nSe lasciate nome e indirizzo con un messaggio privato, ve li spediremo direttamente a casa.", "post_text": "Nuovi adesivi BASTA EURO!\nSe lasciate nome e indirizzo con un messaggio privato, ve li spediremo direttamente a casa.", "shared_text": "", "time": "2014-01-10 10:26:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1555480_10151908309918155_816388898_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=KFj93Z67UGoAQm4gGBuNfZLazCpL7nngJEBP1hark4O5ANbastaTD-WWQ&_nc_ht=scontent-cdt1-1.xx&oh=cb2ea300e82876bb2aeb54da7c94362f&oe=5E7C9BCB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151905012898155", "text": "Milano, ufficio delle Poste Italiane. Decine di persone in coda, tanti anziani in piedi, per ritirare delle Raccomandate spedite (e non ritirate) dopo Natale. Ovviamente solo 2 sportelli aperti, ma tanta bella gente a spasso... Italia, Stato ladro, fallito e disorganizzato.", "post_text": "Milano, ufficio delle Poste Italiane. Decine di persone in coda, tanti anziani in piedi, per ritirare delle Raccomandate spedite (e non ritirate) dopo Natale. Ovviamente solo 2 sportelli aperti, ma tanta bella gente a spasso... Italia, Stato ladro, fallito e disorganizzato.", "shared_text": "", "time": "2014-01-08 11:22:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1483359_10151905011773155_989718803_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=HRrBKQxPZuQAQlAUQb564yYUqZqIpvKkKrMVY4O9OdkGdfa4cpwRuB3zw&_nc_ht=scontent-cdt1-1.xx&oh=b2ee962a5a0c0f68aec8292aae359afb&oe=5E82EC94", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151895361038155", "text": "Notte serena Amici, soprattutto a chi ha orgoglio, passione, speranza.", "post_text": "Notte serena Amici, soprattutto a chi ha orgoglio, passione, speranza.", "shared_text": "", "time": "2014-01-03 00:41:16", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1536448_10151895360078155_1286100104_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=MjWHBgzNZ8wAQloU6knN4QXhfZoczDiAisJImpSKj9C8zH6XKR6uF-TUQ&_nc_ht=scontent-cdt1-1.xx&oh=1db666e8ea25d96c7c9eec57f689c5ed&oe=5E44AEF1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151892435208155", "text": "Nell'incertezza, io mi faccio un pisolino...", "post_text": "Nell'incertezza, io mi faccio un pisolino...", "shared_text": "", "time": "2014-01-01 15:50:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1546258_10151892434063155_1904298292_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=QCXJN7plY6YAQn105QSYCPcYT3CLG8BOkRBq_yoXwYUBjioiZcCxMDU_Q&_nc_ht=scontent-cdt1-1.xx&oh=2d8e6713101dbb684444b1af20049f21&oe=5E4D2BFE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151891169893155", "text": "Un abbraccio, in particolare a chi \u00e8 solo, a chi ha avuto un anno sfigato, a chi spera di tornare a sorridere.", "post_text": "Un abbraccio, in particolare a chi \u00e8 solo, a chi ha avuto un anno sfigato, a chi spera di tornare a sorridere.", "shared_text": "", "time": "2014-01-01 00:56:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151891169893155&id=252306033154", "link": null} +{"post_id": "10151890523453155", "text": "Il signor Napolitano?\nUno che nomina 4 nuovi SENATORI A VITA, fregandosene della crisi e della gente, NON \u00c8 IL MIO PRESIDENTE.", "post_text": "Il signor Napolitano?\nUno che nomina 4 nuovi SENATORI A VITA, fregandosene della crisi e della gente, NON \u00c8 IL MIO PRESIDENTE.", "shared_text": "", "time": "2013-12-31 18:43:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151890523453155&id=252306033154", "link": null} +{"post_id": "10151890372493155", "text": "Auguri Amici, spero che il 2014 vi porti\ntanta salute e nessun rimpianto,\ntanto coraggio e nessuna rassegnazione,\ntanta fortuna e solo poche sconfitte,\ntanta comunit\u00e0 e nessuna solitudine.\nUn 2014 da persone Libere!", "post_text": "Auguri Amici, spero che il 2014 vi porti\ntanta salute e nessun rimpianto,\ntanto coraggio e nessuna rassegnazione,\ntanta fortuna e solo poche sconfitte,\ntanta comunit\u00e0 e nessuna solitudine.\nUn 2014 da persone Libere!", "shared_text": "", "time": "2013-12-31 17:20:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/996672_10151890372093155_1722760997_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=-z9SzLcAjE0AQkFI26KvA5tlOn2VTVBGVARLOw0MCKVeURS9xBC4h5b1g&_nc_ht=scontent-cdt1-1.xx&oh=e54d69a017a143d86085892a114e62a3&oe=5E8AAB8A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151886405698155", "text": "Cena poco vegetariana... Capriolo con polentaaa!", "post_text": "Cena poco vegetariana... Capriolo con polentaaa!", "shared_text": "", "time": "2013-12-29 21:29:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1538952_10151886405088155_1928983490_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=jLOKwFNA0bcAQlvXv6Euh1HXNPwS0sXOD_O363468xy98gkrXe2CBnTPQ&_nc_ht=scontent-cdt1-1.xx&oh=a8d396daeb49ca75586ff13a4adbcd72&oe=5E8C06D4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151886403728155", "text": "Cena poco vegetariana... Capriolo con polentaaa!", "post_text": "Cena poco vegetariana... Capriolo con polentaaa!", "shared_text": "", "time": "2013-12-29 21:27:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1525747_10151886403318155_527046958_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=_JDHNJkDkR4AQknx2Agmgd8rwECE0_DH474I914Jkc6Yr7mRNc6U4AA1Q&_nc_ht=scontent-cdt1-1.xx&oh=cd4f77184510e54685b5ec989589e461&oe=5E8A1710", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151884766848155", "text": "A cena con amici, bresaola, sciatt, risotto e una torta speciale! Notte serena a tutti, che i fiocchi di neve che vedo oltre i vetri accompagnino i vostri sogni", "post_text": "A cena con amici, bresaola, sciatt, risotto e una torta speciale! Notte serena a tutti, che i fiocchi di neve che vedo oltre i vetri accompagnino i vostri sogni", "shared_text": "", "time": "2013-12-29 00:12:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1459675_10151884764608155_253666519_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=rWg9Qt2X6RMAQkIh_MRyaAfmloW_qC7_WGH2SSsPTAh_L00lAbQqdAC9g&_nc_ht=scontent-cdt1-1.xx&oh=5eed2dc39abf6deb5a8d62f507e63b8d&oe=5E7D0D0F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151884344883155", "text": "Discorso di fine anno, un giornalista mi ha chiesto chi ascolter\u00f2 fra Giorgino Napolitano e Beppe Grillo.\nHo risposto che il 31 seguir\u00f2 con mia figlia la PEPPA PIG!", "post_text": "Discorso di fine anno, un giornalista mi ha chiesto chi ascolter\u00f2 fra Giorgino Napolitano e Beppe Grillo.\nHo risposto che il 31 seguir\u00f2 con mia figlia la PEPPA PIG!", "shared_text": "", "time": "2013-12-28 19:05:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151884344883155&id=252306033154", "link": null} +{"post_id": "10151882189178155", "text": "Con il bellissimo Castello Sforzesco alle spalle, pronto al collegamento con SKY", "post_text": "Con il bellissimo Castello Sforzesco alle spalle, pronto al collegamento con SKY", "shared_text": "", "time": "2013-12-27 19:28:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1525341_10151882188203155_266660553_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=mp-iCIdrhfoAQmgDIt1TidNlBzbYMLHg0WxEzcwgJquZ5CAYm53hfvhPA&_nc_ht=scontent-cdt1-1.xx&oh=8b23f393e16172ea613eb4d17a60b331&oe=5E4FBE78", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151881716633155", "text": "Madonna della Salute di Venezia. Stacci vicina!", "post_text": "Madonna della Salute di Venezia. Stacci vicina!", "shared_text": "", "time": "2013-12-27 14:59:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1536630_10151881716248155_1366374520_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=NTkfdPq7gbQAQmfGLBoWdNIzZUkmr3OfY3hGJzW3vIe4igGtQgfoXTQJA&_nc_ht=scontent-cdt1-1.xx&oh=99ce1b678d01357afba4b41edb8d3491&oe=5E7C533E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151881511923155", "text": "Riunione di lavoro. Venezia \u00e8 sempre stupenda!", "post_text": "Riunione di lavoro. Venezia \u00e8 sempre stupenda!", "shared_text": "", "time": "2013-12-27 13:46:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1488161_10151881511433155_258191272_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=NCJueGzvkxEAQlfeZIO2U6qGD-Y2KVZefx09Rxbnvx6hugufHTKMydppQ&_nc_ht=scontent-cdt1-1.xx&oh=1a64fbaacdbc19a50b7b37d0fdd7a59f&oe=5E890DDA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151880213768155", "text": "Notte serena Amici, comincio un nuovo libro!", "post_text": "Notte serena Amici, comincio un nuovo libro!", "shared_text": "", "time": "2013-12-27 00:24:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1546149_10151880213288155_724480168_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=xk60NcZEg8kAQn4OiUPA62OrfZowfJxatbq-YzMgZPrvKcYRTQ1lrCuoA&_nc_ht=scontent-cdt1-1.xx&oh=8217c0316fc4f07ddfd596c458dc57f9&oe=5E797535", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151875838603155", "text": "Tanti AUGURI di un sereno NATALE amici! Se saremo una comunit\u00e0 e ci difenderemo a vicenda di fronte agli attacchi vili ed infami dei mezzi di comunicazione, che sono nati per distruggere la Lega, arriveremo molto lontano! Sempre pi\u00f9 innamorato della LEGA NORD!\nYOUTUBE.COM\nLEGA NORD SALVINI AUGURI", "post_text": "Tanti AUGURI di un sereno NATALE amici! Se saremo una comunit\u00e0 e ci difenderemo a vicenda di fronte agli attacchi vili ed infami dei mezzi di comunicazione, che sono nati per distruggere la Lega, arriveremo molto lontano! Sempre pi\u00f9 innamorato della LEGA NORD!", "shared_text": "YOUTUBE.COM\nLEGA NORD SALVINI AUGURI", "time": "2013-12-24 21:41:47", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBfONpIAclgEkWq&w=476&h=249&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FnyNUa7OsKMU%2Fhqdefault.jpg&cfs=1&jq=75&sx=0&sy=7&sw=480&sh=251&ext=jpg&_nc_hash=AQCHrNUMg9QCrqzx", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151875838603155&id=252306033154", "link": "https://www.youtube.com/watch?v=nyNUa7OsKMU&fbclid=IwAR0XUfPMtrTANG3BP1Vpz15SHrFqYPbCQtooVaYBvCpTRfkG6DO1s2-RN7c"} +{"post_id": "10151873935293155", "text": "La miliardaria LITTIZZETTO, campionessa della nota disciplina 'fare la comunista col c. degli altri' (molto frequentata a sinistra) ieri sera se l'\u00e8 presa con me a Rai 3 come se io non considerassi i\u2026 Altro clandestini di Lampedusa 'persone' e ha costruito tutta una filippica radical-chic, dal tono serio e indignato, con tanto di applausi di Fazio, rifiutando inoltre l'etichetta di 'buonista'. Cara Littizzetto, 1) \u00e8 pi\u00fa facile che tu vinca Miss Italia che non trovare in me un solo briciolo di razzismo; 2) anzich\u00e9 investire in propriet\u00e0 immobiliari le tue vaste fortune, perch\u00e9 non ne usi una parte per ospitare un centinaio di immigrati clandestini? In fondo sono soldi pubblici che gli italiani pagano col CANONE RAI.", "post_text": "La miliardaria LITTIZZETTO, campionessa della nota disciplina 'fare la comunista col c. degli altri' (molto frequentata a sinistra) ieri sera se l'\u00e8 presa con me a Rai 3 come se io non considerassi i\u2026 Altro clandestini di Lampedusa 'persone' e ha costruito tutta una filippica radical-chic, dal tono serio e indignato, con tanto di applausi di Fazio, rifiutando inoltre l'etichetta di 'buonista'. Cara Littizzetto, 1) \u00e8 pi\u00fa facile che tu vinca Miss Italia che non trovare in me un solo briciolo di razzismo; 2) anzich\u00e9 investire in propriet\u00e0 immobiliari le tue vaste fortune, perch\u00e9 non ne usi una parte per ospitare un centinaio di immigrati clandestini? In fondo sono soldi pubblici che gli italiani pagano col CANONE RAI.", "shared_text": "", "time": "2013-12-23 21:11:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1477464_10151873934893155_860815108_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=yfDY7GvnYqoAQnBGlvXLQDfKYvX5BsNdwwcX-14MMTdh4MxvEwDBtyhYg&_nc_ht=scontent-cdt1-1.xx&oh=3c35c30bb684acbc61055c5bef08dfdd&oe=5E3E6914", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151872062398155", "text": "Forza Vecchio Cuore ROSSONERO!", "post_text": "Forza Vecchio Cuore ROSSONERO!", "shared_text": "", "time": "2013-12-22 19:56:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/644351_10151872062048155_425597365_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=gJBRCm6gPi8AQk_TFJNPa-xwtkiE7yamQt68T_Q7BSshqQPIoGVcpxKPQ&_nc_ht=scontent-cdt1-1.xx&oh=1e91d815eb09a45b032ab63eedf4549c&oe=5E7DEAAF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151870342413155", "text": "I poverini non sono i clandestini, ma i Cittadini che poi li devono mantenere e che subiscono i loro crimini\nBERGAMO.CORRIERE.IT\nSalvini show a Chiuduno: \u00abImmigrati disinfettati? Poi vengono da noi a rubare\u00bb", "post_text": "I poverini non sono i clandestini, ma i Cittadini che poi li devono mantenere e che subiscono i loro crimini", "shared_text": "BERGAMO.CORRIERE.IT\nSalvini show a Chiuduno: \u00abImmigrati disinfettati? Poi vengono da noi a rubare\u00bb", "time": "2013-12-21 19:07:17", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDA5zwDTXdaVwIm&w=476&h=249&url=http%3A%2F%2Fimages.bergamo.corriereobjects.it%2Fmethode_image%2F2013%2F11%2F04%2FBergamo%2FFoto%2520Gallery%2F14586898-046.jpg%3Fv%3D20131104151624&cfs=1&jq=75&ext=jpg&_nc_hash=AQCDd4AjKFCm1UkQ", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151870342413155&id=252306033154", "link": "http://bergamo.corriere.it/bergamo/notizie/cronaca/13_dicembre_21/salvini-show-chiuduno-lega-nord-immigrati-gay-f4811650-6a2e-11e3-aaba-67f946664e4c.shtml?fbclid=IwAR33q4mD9TUZvTS7P-47rwLq_6cVJPgOteddMlXVxWnTUATpCSOxNpCetHI"} +{"post_id": "10151869015738155", "text": "800 Bergamaschi con la Lega a Chiuduno per festeggiare il Natale!\nPronti a un 2014 di sacrifici e di battaglie.", "post_text": "800 Bergamaschi con la Lega a Chiuduno per festeggiare il Natale!\nPronti a un 2014 di sacrifici e di battaglie.", "shared_text": "", "time": "2013-12-20 22:51:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1480549_10151869013903155_866804813_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=rW9m0V7GYYUAQkqmQHCGnhOOdmxpM_DyQrZibjZJutZi4FnEzZv100yGg&_nc_ht=scontent-cdt1-1.xx&oh=7b7bcc28318235cd0838ab8ea478de9b&oe=5E3F04D3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151868247793155", "text": "Napolitano fa gli Auguri ai MAR\u00d2 e dice che il Governo \u00e8 molto attento al loro destino.\nFossi nei Mar\u00f2, rifiuterei auguri e attenzione.", "post_text": "Napolitano fa gli Auguri ai MAR\u00d2 e dice che il Governo \u00e8 molto attento al loro destino.\nFossi nei Mar\u00f2, rifiuterei auguri e attenzione.", "shared_text": "", "time": "2013-12-20 13:38:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151868247793155&id=252306033154", "link": null} +{"post_id": "10151867447573155", "text": "Mamma mia quanti tira tardi!\nAllora se riesco saluto il Popolo della Rete.", "post_text": "Mamma mia quanti tira tardi!\nAllora se riesco saluto il Popolo della Rete.", "shared_text": "", "time": "2013-12-19 23:51:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151867447573155&id=252306033154", "link": null} +{"post_id": "10151867114833155", "text": "Quelli che..... Poverini i migranti, i rom e i carcerati.\nE poi non muovono un dito se ad aver bisogno \u00e8 il loro vicino di casa. Troppo banale, troppo normale.\nIpocriti, tristi, \"buoni\" su facebook ma egoisti nella vita.", "post_text": "Quelli che..... Poverini i migranti, i rom e i carcerati.\nE poi non muovono un dito se ad aver bisogno \u00e8 il loro vicino di casa. Troppo banale, troppo normale.\nIpocriti, tristi, \"buoni\" su facebook ma egoisti nella vita.", "shared_text": "", "time": "2013-12-19 19:44:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151867114833155&id=252306033154", "link": null} +{"post_id": "10151866781423155", "text": "\"Ho la responsabilit\u00e0 di tenere la barca Italia in equilibrio\".\nLo ha detto oggi LETTA, mi ricorda tanto SCHETTINO.", "post_text": "\"Ho la responsabilit\u00e0 di tenere la barca Italia in equilibrio\".\nLo ha detto oggi LETTA, mi ricorda tanto SCHETTINO.", "shared_text": "", "time": "2013-12-19 15:41:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151866781423155&id=252306033154", "link": null} +{"post_id": "10151866401818155", "text": "Fra poco sono in diretta su Rai Uno. Immigrazione, carceri, agricoltura, imprese, pensioni: se l'Europa ci massacra, ribellarsi \u00e9 un Dovere", "post_text": "Fra poco sono in diretta su Rai Uno. Immigrazione, carceri, agricoltura, imprese, pensioni: se l'Europa ci massacra, ribellarsi \u00e9 un Dovere", "shared_text": "", "time": "2013-12-19 09:31:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151866401818155&id=252306033154", "link": null} +{"post_id": "10151862948923155", "text": "Ma guarda un po' cosa attaccano all'aeroporto di Fiumicino...", "post_text": "Ma guarda un po' cosa attaccano all'aeroporto di Fiumicino...", "shared_text": "", "time": "2013-12-17 10:35:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1472787_10151862948623155_1091722918_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=KbPe9Ad7x4MAQmgFnb5xIJ3pvy7uV13xag_CQvoivXtlK8BGsdU558CZw&_nc_ht=scontent-cdt1-1.xx&oh=746742fc809934e5dc848a9ab01ac1ef&oe=5E4AC6F8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151862912983155", "text": "Con tutti i problemi che ci sono in Italia, guarda caso ritirano fuori il CALCIOSCOMMESSE e le \"partite truccate\", indagano qualche calciatore famoso e ci riempiono le pagine dei giornali...\nTentativo di DISTRAZIONE DI MASSA?", "post_text": "Con tutti i problemi che ci sono in Italia, guarda caso ritirano fuori il CALCIOSCOMMESSE e le \"partite truccate\", indagano qualche calciatore famoso e ci riempiono le pagine dei giornali...\nTentativo di DISTRAZIONE DI MASSA?", "shared_text": "", "time": "2013-12-17 09:42:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151862912983155&id=252306033154", "link": null} +{"post_id": "10151862054093155", "text": "Bruno Vespa riflessivo", "post_text": "Bruno Vespa riflessivo", "shared_text": "", "time": "2013-12-16 23:07:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1510494_10151862053803155_1834168701_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=evSqVQgAaAcAQnO12uQEiM0MNYHZtMTlGvrzotqqkTS8seQmgmDgepATA&_nc_ht=scontent-cdt1-1.xx&oh=4ea271fab181d052fcf89cf73efb63a8&oe=5E845E89", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151861999748155", "text": "Comincio a registrare Porta a Porta.\nAlemanno: \"In Italia c'\u00e8 TROPPO FEDERALISMO\".\nSi rideeeeeeeeee!!", "post_text": "Comincio a registrare Porta a Porta.\nAlemanno: \"In Italia c'\u00e8 TROPPO FEDERALISMO\".\nSi rideeeeeeeeee!!", "shared_text": "", "time": "2013-12-16 22:33:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151861999748155&id=252306033154", "link": null} +{"post_id": "10151861957928155", "text": "PRESEPE in studio a Porta a Porta, bene!", "post_text": "PRESEPE in studio a Porta a Porta, bene!", "shared_text": "", "time": "2013-12-16 22:06:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1482794_10151861957258155_570129756_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=O8A_Nyu_KNQAQlTZGIfckiJJpOgCsWkllbrhJ1GMf9k5iaeTp2R046rxA&_nc_ht=scontent-cdt1-1.xx&oh=018e976a1bddcee1049fe90afbc2e162&oe=5E3F5675", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151861600923155", "text": "Giornata di lavoro milanese, ora si parte per Roma.\nSTASERA sar\u00f2 ospite di PORTA A PORTA, su Rai Uno, in allegra compagnia: con me in studio Gianni ALEMANNO e la simpaticissima Debora SERRACCHIANI.\nSe avete qualche consiglio da darmi, scrivete ora!\nBuona serata Amici.", "post_text": "Giornata di lavoro milanese, ora si parte per Roma.\nSTASERA sar\u00f2 ospite di PORTA A PORTA, su Rai Uno, in allegra compagnia: con me in studio Gianni ALEMANNO e la simpaticissima Debora SERRACCHIANI.\nSe avete qualche consiglio da darmi, scrivete ora!\nBuona serata Amici.", "shared_text": "", "time": "2013-12-16 18:22:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151861600923155&id=252306033154", "link": null} +{"post_id": "10151860975758155", "text": "Buona lettura.\nPoi ditemi cosa ne pensate\nhttp://www.ilgiornale.it/news/interni/salvini-briglia-sciolta-vaffaday-lega-976278.html\nILGIORNALE.IT\nSalvini a briglia sciolta \u00c8 il \u00abvaffaday\u00bb della Lega", "post_text": "Buona lettura.\nPoi ditemi cosa ne pensate\nhttp://www.ilgiornale.it/news/interni/salvini-briglia-sciolta-vaffaday-lega-976278.html", "shared_text": "ILGIORNALE.IT\nSalvini a briglia sciolta \u00c8 il \u00abvaffaday\u00bb della Lega", "time": "2013-12-16 09:48:28", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAThvsWpFv0Rubl&w=476&h=249&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Ffiles%2Ffoto%2F2013%2F12%2F16%2F1387176363-ipad-152-0.jpg&cfs=1&jq=75&sx=0&sy=1368&sw=1260&sh=659&ext=jpg&_nc_hash=AQD0CygqpDVgTC7S", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151860975758155&id=252306033154", "link": "http://www.ilgiornale.it/news/interni/salvini-briglia-sciolta-vaffaday-lega-976278.html?fbclid=IwAR08HcyFl5nk7LHRAcZVenj9fwtwOhn1X_1zmidf2mvYoQoXBepQqC7bBeM"} +{"post_id": "10151859169573155", "text": "Indipendenza e Disobbedienza!", "post_text": "Indipendenza e Disobbedienza!", "shared_text": "", "time": "2013-12-15 11:55:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1512345_10151859169278155_90286426_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=DBg6Cx8IzH0AQlkm6OrBkawKiLWzvHM1uR-kLZ-WaQr1mChzwQNYwRL2g&_nc_ht=scontent-cdt1-1.xx&oh=3e90f38f00e6c5b29687bdf6e65d3605&oe=5E83E4D9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151859154068155", "text": "Un mare di calore, idee, passione.\nUna splendida Comunit\u00e0 in cammino. GRAZIE!", "post_text": "Un mare di calore, idee, passione.\nUna splendida Comunit\u00e0 in cammino. GRAZIE!", "shared_text": "", "time": "2013-12-15 11:35:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1513263_10151859153378155_437132149_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=-V-J3pMyTywAQn8JaV8mXZUgzdNbeIvGb_3FXdhlHIF_ekdEgkQwK_8pQ&_nc_ht=scontent-cdt1-1.xx&oh=7dbab2ddc97051538bb7ae345925a6e1&oe=5E4BC229", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151859121563155", "text": "Primo acquisto fatto: il Berretto Verde #Rebel", "post_text": "Primo acquisto fatto: il Berretto Verde #Rebel", "shared_text": "", "time": "2013-12-15 10:53:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1484305_10151859121003155_1334735845_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=Ez_cs9kbhZwAQmrOFeTLB-h-XppMsdHg-pLZMLtGW4plWjZApvzdqFrBg&_nc_ht=scontent-cdt1-1.xx&oh=02b7470786289364633b2477e56f591e&oe=5E854201", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151859111793155", "text": "Si comincia!\nDecine di giornalisti per la conferenza stampa UN'ALTRA EUROPA \u00c8 POSSIBILE con gli Amici francesi, fiamminghi, olandesi, austriaci e russi", "post_text": "Si comincia!\nDecine di giornalisti per la conferenza stampa UN'ALTRA EUROPA \u00c8 POSSIBILE con gli Amici francesi, fiamminghi, olandesi, austriaci e russi", "shared_text": "", "time": "2013-12-15 10:45:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1507721_10151859110743155_973650383_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=1f4R0JtqcucAQlneMFuMoX78nhbjrMowiqef_tvORTvUqYyKDTQgk281w&_nc_ht=scontent-cdt1-1.xx&oh=908fa0b27a950be4d2be9eaad878705e&oe=5E3EB823", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151857773018155", "text": "Ciao Amici, mi chiamo MIRTA e oggi compio un anno! Domani, mi raccomando, tutti a Torino.", "post_text": "Ciao Amici, mi chiamo MIRTA e oggi compio un anno! Domani, mi raccomando, tutti a Torino.", "shared_text": "", "time": "2013-12-14 15:04:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1477594_10151857771983155_1747569626_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=JIw6kOnTITsAQmOGFbiLtHiwRHj81dhMp3XIn2UPSFv9qSqAzhrpPuXsQ&_nc_ht=scontent-cdt1-1.xx&oh=2eeeb6cc2eca5d9fa58fa367cf31aaf4&oe=5E7DF825", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151854381443155", "text": "La CATALOGNA, il 9 novembre 2014, chiamer\u00e0 al VOTO tutti i suoi Cittadini per decidere sull'INDIPENDENZA.\nGRANDI!\nL'Unione Sovietica Europea minaccia ritorsioni...\nMotivo in pi\u00f9 per MOLLARE questa Europa e questo Euro.\nForconi a Bruxelles!\nOgnuno deve essere Libero e Padrone in casa sua.", "post_text": "La CATALOGNA, il 9 novembre 2014, chiamer\u00e0 al VOTO tutti i suoi Cittadini per decidere sull'INDIPENDENZA.\nGRANDI!\nL'Unione Sovietica Europea minaccia ritorsioni...\nMotivo in pi\u00f9 per MOLLARE questa Europa e questo Euro.\nForconi a Bruxelles!\nOgnuno deve essere Libero e Padrone in casa sua.", "shared_text": "", "time": "2013-12-12 22:43:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151854381443155&id=252306033154", "link": null} +{"post_id": "10151854055208155", "text": "Ricevere gli APPLAUSI del pubblico romano, vale doppio!", "post_text": "Ricevere gli APPLAUSI del pubblico romano, vale doppio!", "shared_text": "", "time": "2013-12-12 18:43:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151854055208155&id=252306033154", "link": null} +{"post_id": "10151853856298155", "text": "Il Tramonto dal treno, rientrando a casa.\nMi Piace un sacco!", "post_text": "Il Tramonto dal treno, rientrando a casa.\nMi Piace un sacco!", "shared_text": "", "time": "2013-12-12 16:21:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1461818_10151853855758155_726508947_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=8Bi0KOHY_TcAQlkubrkeVE5ve24YSq0IqLz9jRrbcEKps89zZUzBu03YA&_nc_ht=scontent-cdt1-1.xx&oh=b27579104aa847a78fabd02311174fbc&oe=5E7E8694", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151852614503155", "text": "Formigoni dark!", "post_text": "Formigoni dark!", "shared_text": "", "time": "2013-12-11 23:25:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1472004_10151852614318155_289504297_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=OH7Qf-cW04cAQkoAiyJCjPrq7t1qcU7lle7QQqFTQK98L5tMPA_YuNEBg&_nc_ht=scontent-cdt1-1.xx&oh=5ba199202232fdb2507df63d4d528e5c&oe=5E830E07", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151852118258155", "text": "Un Parlamento che vota la Fiducia al governo dei disastri e della game Letta-Monti, \u00e8 un Parlamento infame, servo di Bruxelles, da prendere a calci.", "post_text": "Un Parlamento che vota la Fiducia al governo dei disastri e della game Letta-Monti, \u00e8 un Parlamento infame, servo di Bruxelles, da prendere a calci.", "shared_text": "", "time": "2013-12-11 18:11:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151852118258155&id=252306033154", "link": null} +{"post_id": "10151851907993155", "text": "Steve Jobs diceva: \"Siate affamati, siate folli\". La Libert\u00e0 richiede fame e follia.\nIo ci sono, noi ci siamo.", "post_text": "Steve Jobs diceva: \"Siate affamati, siate folli\". La Libert\u00e0 richiede fame e follia.\nIo ci sono, noi ci siamo.", "shared_text": "", "time": "2013-12-11 15:47:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151851907993155&id=252306033154", "link": null} +{"post_id": "10151851496718155", "text": "Oggi la giornata \u00e8 cominciata presto, e male. Spero per voi sia diverso", "post_text": "Oggi la giornata \u00e8 cominciata presto, e male. Spero per voi sia diverso", "shared_text": "", "time": "2013-12-11 09:43:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151851496718155&id=252306033154", "link": null} +{"post_id": "10151850832843155", "text": "Notte serena Amici.\nInnamorato della Lega.", "post_text": "Notte serena Amici.\nInnamorato della Lega.", "shared_text": "", "time": "2013-12-11 00:13:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151850832843155&id=252306033154", "link": null} +{"post_id": "10151850516483155", "text": "In mezzo ai Nostri Agricoltori, Roma e Bruxelles ci massacrano, in Battaglia!", "post_text": "In mezzo ai Nostri Agricoltori, Roma e Bruxelles ci massacrano, in Battaglia!", "shared_text": "", "time": "2013-12-10 20:49:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1465180_10151850515538155_269756882_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=uJiQRQ9BD6QAQkocK7HLmQhG95PfxVezJy0K1ra5V3WxWASPQXa5OKj_w&_nc_ht=scontent-cdt1-1.xx&oh=7e23c0abd9245666b0857b23196c513a&oe=5E8BBEC3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151848162633155", "text": "Chi oggi sta manifestando col TRICOLORE in mano, dovrebbe capire che il primo NEMICO di chi lavora \u00e8 proprio lo STATO, ladro, che usa quel Tricolore.", "post_text": "Chi oggi sta manifestando col TRICOLORE in mano, dovrebbe capire che il primo NEMICO di chi lavora \u00e8 proprio lo STATO, ladro, che usa quel Tricolore.", "shared_text": "", "time": "2013-12-09 18:45:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151848162633155&id=252306033154", "link": null} +{"post_id": "10151847908133155", "text": "Enrico LETTA dice che \"gli ANTIEUROPEISTI producono solo macerie\".\nAmartya SEN, Nobel per l'Economia, dice che \"l'EURO \u00e8 stata un'idea orribile\".\nVoi a chi credete???", "post_text": "Enrico LETTA dice che \"gli ANTIEUROPEISTI producono solo macerie\".\nAmartya SEN, Nobel per l'Economia, dice che \"l'EURO \u00e8 stata un'idea orribile\".\nVoi a chi credete???", "shared_text": "", "time": "2013-12-09 15:51:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151847908133155&id=252306033154", "link": null} +{"post_id": "10151847680313155", "text": "Francois Heisbourg, docente e analista anglo-francese, europeista da sempre, Presidente dell'Istituto Internazionale di Studi Strategici, oggi afferma che l'EURO \u00c8 UN INCUBO, e che se non si lascia subito la Moneta Unica, sar\u00e0 presto il CAOS.\nLe certezze degli EURO SCEMI sono sempre meno certe.", "post_text": "Francois Heisbourg, docente e analista anglo-francese, europeista da sempre, Presidente dell'Istituto Internazionale di Studi Strategici, oggi afferma che l'EURO \u00c8 UN INCUBO, e che se non si lascia subito la Moneta Unica, sar\u00e0 presto il CAOS.\nLe certezze degli EURO SCEMI sono sempre meno certe.", "shared_text": "", "time": "2013-12-09 13:01:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151847680313155&id=252306033154", "link": null} +{"post_id": "10151844422003155", "text": "GRAZIEEEEEEE!\nLa prima telefonata che far\u00f2?\nAll sempre grande Umberto BOSSI.\nLa prima uscita pubblica?\nIn una FABBRICA che rischia di chiudere.\nLa prima battaglia?\nQuella per l'INDIPENDENZA, dallo Stato italiano ladro e fallito, e dall'Unione Sovietica Europea che ci massacra, grazie allo strumento di morte chiamato EURO.\nTutti insieme, senza\u2026 Altro dividere, ascoltando e decidendo.\nStando il meno possibile in ufficio, e tanto FRA LA GENTE.\nAl fianco dei nostri Sindaci, e dei nostri Amministratori.\nUna bellissima giornata di PARTECIPAZIONE.\nGrazie Amici.\nAdesso ognuno di Voi deve sentirsi in Battaglia.", "post_text": "GRAZIEEEEEEE!\nLa prima telefonata che far\u00f2?\nAll sempre grande Umberto BOSSI.\nLa prima uscita pubblica?\nIn una FABBRICA che rischia di chiudere.\nLa prima battaglia?\nQuella per l'INDIPENDENZA, dallo Stato italiano ladro e fallito, e dall'Unione Sovietica Europea che ci massacra, grazie allo strumento di morte chiamato EURO.\nTutti insieme, senza\u2026 Altro dividere, ascoltando e decidendo.\nStando il meno possibile in ufficio, e tanto FRA LA GENTE.\nAl fianco dei nostri Sindaci, e dei nostri Amministratori.\nUna bellissima giornata di PARTECIPAZIONE.\nGrazie Amici.\nAdesso ognuno di Voi deve sentirsi in Battaglia.", "shared_text": "", "time": "2013-12-07 19:56:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151844422003155&id=252306033154", "link": null} +{"post_id": "10151843768083155", "text": "Che belli i Fiori!\nE che belli gli Alberi di Natale, quelli veri!", "post_text": "Che belli i Fiori!\nE che belli gli Alberi di Natale, quelli veri!", "shared_text": "", "time": "2013-12-07 12:33:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1454697_10151843766753155_1330568507_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=kZF193hXLRwAQmsnQMraIHZFGzQbibal-Z5_C_v00UN0RQ33lPTq9XoVw&_nc_ht=scontent-cdt1-1.xx&oh=8df72a30012bc7ce6249c72095d9087c&oe=5E883BFC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151842425288155", "text": "In attesa di privatizzarla...\nFra poco sono in diretta su Rai News 24", "post_text": "In attesa di privatizzarla...\nFra poco sono in diretta su Rai News 24", "shared_text": "", "time": "2013-12-06 18:19:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1451614_10151842424588155_879265141_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=3vkU3Vct8pIAQnoZKKu3k49RTvjdTVhdABdBygPEhHjTAuvgXI3lQA9Lw&_nc_ht=scontent-cdt1-1.xx&oh=7962bb2703c84e4ecd00dd80dc062268&oe=5E852F07", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151842375453155", "text": "Il sindaco di Torino oggi ha dato la Cittadinanza a Rachid, giovane marocchino che prima vendeva gli accendini in strada, e adesso si \u00e8 laureato.\nIntanto migliaia di laureati italiani, perso il lavoro, hanno cominciato a vendere accendini in strada.\nMa per loro lo Stato non ha tempo da perdere.", "post_text": "Il sindaco di Torino oggi ha dato la Cittadinanza a Rachid, giovane marocchino che prima vendeva gli accendini in strada, e adesso si \u00e8 laureato.\nIntanto migliaia di laureati italiani, perso il lavoro, hanno cominciato a vendere accendini in strada.\nMa per loro lo Stato non ha tempo da perdere.", "shared_text": "", "time": "2013-12-06 17:46:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151842375453155&id=252306033154", "link": null} +{"post_id": "10151842275488155", "text": "Vi segnalo questo bell'articolo del Secolo XIX.\nCosa ne pensate?", "post_text": "Vi segnalo questo bell'articolo del Secolo XIX.\nCosa ne pensate?", "shared_text": "", "time": "2013-12-06 16:35:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1466110_10151842275448155_1599097535_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=b2O7RnUS6i8AQlsigkrTgY5Dnv8CehSzAmTia9KLWv2847HLD_KqtU2wg&_nc_ht=scontent-cdt1-1.xx&oh=f4b7c6b429f33a6bc5c9bc8f10f5108d&oe=5E8CE7EB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151840982753155", "text": "Notte serena Amici!\nUn pensiero a Nelson Mandela e a chi lotta per la Libert\u00e0.", "post_text": "Notte serena Amici!\nUn pensiero a Nelson Mandela e a chi lotta per la Libert\u00e0.", "shared_text": "", "time": "2013-12-05 23:55:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151840982753155&id=252306033154", "link": null} +{"post_id": "10151840676883155", "text": "Legge elettorale??? Chi se ne frega!\n30% di italiani a rischio POVERT\u00c0, ecco l'emergenza.", "post_text": "Legge elettorale??? Chi se ne frega!\n30% di italiani a rischio POVERT\u00c0, ecco l'emergenza.", "shared_text": "", "time": "2013-12-05 20:49:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151840676883155&id=252306033154", "link": null} +{"post_id": "10151840618178155", "text": "Pronto per intervenire a OTTO E MEZZO con la Gruber, dalle 20.30 su La7. Dovr\u00f2 confrontarmi con CUPERLO: ve lo devo salutare??", "post_text": "Pronto per intervenire a OTTO E MEZZO con la Gruber, dalle 20.30 su La7. Dovr\u00f2 confrontarmi con CUPERLO: ve lo devo salutare??", "shared_text": "", "time": "2013-12-05 20:12:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1463372_10151840616628155_776309995_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=YuTNtHNtssYAQncN8JuL9agEIrwPrxeBmgKhExNVkh33wlyG6ivDaV5ow&_nc_ht=scontent-cdt1-1.xx&oh=696ee5a687b68b3e43180bc307fa535c&oe=5E3F083E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151838978138155", "text": "La KYENGE dice che \"L'INTOLLERANZA \u00e8 ignoranza\".\nQuindi lei, che proprio non tollera i Leghisti, si d\u00e0 dell'IGNORANTE da sola.\nStavolta mi tocca di darle ragione!", "post_text": "La KYENGE dice che \"L'INTOLLERANZA \u00e8 ignoranza\".\nQuindi lei, che proprio non tollera i Leghisti, si d\u00e0 dell'IGNORANTE da sola.\nStavolta mi tocca di darle ragione!", "shared_text": "", "time": "2013-12-04 22:31:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151838978138155&id=252306033154", "link": null} +{"post_id": "10151838573438155", "text": "FIRENZE.\nNonostante il disastro Renzi, un vero spettacolo.", "post_text": "FIRENZE.\nNonostante il disastro Renzi, un vero spettacolo.", "shared_text": "", "time": "2013-12-04 18:03:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1480618_10151838572778155_1706396523_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=hJIhbm57Qk4AQnEDpvhn917AZgTiEfau9JAOU_j0HkXCA_6nedz1HTsMg&_nc_ht=scontent-cdt1-1.xx&oh=697571954f18406b3bebe195e04e63d9&oe=5E8AAAE8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151838439013155", "text": "Morti, lavoro nero, sfruttamento.\nMa lo Stato, ladro e mafioso, manda i blitz a Cortina e rompe le palle a commercianti e artigiani... INDIPENDENZA! Da Roma e da Bruxelles.", "post_text": "Morti, lavoro nero, sfruttamento.\nMa lo Stato, ladro e mafioso, manda i blitz a Cortina e rompe le palle a commercianti e artigiani... INDIPENDENZA! Da Roma e da Bruxelles.", "shared_text": "", "time": "2013-12-04 16:39:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1462982_10151838437363155_86226083_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=76btJEcX_hQAQk2drjpXSX6FCs07YMKMjSpzc5UcSXfzUDyYLi_RzQiFA&_nc_ht=scontent-cdt1-1.xx&oh=94e069fd81dacebb198357d1e049d4c3&oe=5E43B684", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151838376173155", "text": "Qui Prato.\nFuori dal Centro Storico, non un solo cittadino Toscano, solo Cinesi.\nE sui muri migliaia di scritte in cinese, compresi centinaia di numeri di telefono che pare siano di \"signorine\"...", "post_text": "Qui Prato.\nFuori dal Centro Storico, non un solo cittadino Toscano, solo Cinesi.\nE sui muri migliaia di scritte in cinese, compresi centinaia di numeri di telefono che pare siano di \"signorine\"...", "shared_text": "", "time": "2013-12-04 15:57:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/582072_10151838374073155_1911480573_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=eGfzGv-GuyQAQk-HOfR38KTNuzLGm0wimBZ0nLnmGD7Mf9bpa2tIsj9Wg&_nc_ht=scontent-cdt1-1.xx&oh=e630ed37960f84646574012fa80858ea&oe=5E7960C7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151838289768155", "text": "Eccoci a PRATO! Fra 5 minuti sono in diretta con SKY Tg 24", "post_text": "Eccoci a PRATO! Fra 5 minuti sono in diretta con SKY Tg 24", "shared_text": "", "time": "2013-12-04 14:59:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1466177_10151838288963155_1647331326_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=bghhPPdNNMIAQnpSTVWhjHaOQXJbz3QhnhHHsolpmX0YQJdfYsDJtCyOg&_nc_ht=scontent-cdt1-1.xx&oh=43fdd152d9a43c1dcf1cf14e65241c41&oe=5E470B3C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151836475803155", "text": "Nuova sede della Lega Nord nella bellissima PARMA. Bravi!", "post_text": "Nuova sede della Lega Nord nella bellissima PARMA. Bravi!", "shared_text": "", "time": "2013-12-03 19:44:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1458558_10151836473268155_804360454_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=suuxVFE6j2QAQnhvmODoEQuxIl2WY08UclKI3r1Qhnu5y83sUrKl_Kc8w&_nc_ht=scontent-cdt1-1.xx&oh=061cbe7d29fb54374a6f7cf2ac6fb826&oe=5E4F21BE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151836249083155", "text": "Non so a voi ma... a me le PRIMARIE del PD hanno rotto!\nSu tiv\u00f9, siti e giornali, si vedono a tutte le ore le facce dei Tre Porcellini Democratici, ma dei Militanti e delle Primarie della Lega chissenefrega...\nGiornalisti (tranne rare eccezioni) VERGOGNA d'Italia!\nIo il 7 DICEMBRE partecipo, e l'8 me ne sto a casa.", "post_text": "Non so a voi ma... a me le PRIMARIE del PD hanno rotto!\nSu tiv\u00f9, siti e giornali, si vedono a tutte le ore le facce dei Tre Porcellini Democratici, ma dei Militanti e delle Primarie della Lega chissenefrega...\nGiornalisti (tranne rare eccezioni) VERGOGNA d'Italia!\nIo il 7 DICEMBRE partecipo, e l'8 me ne sto a casa.", "shared_text": "", "time": "2013-12-03 17:21:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151836249083155&id=252306033154", "link": null} +{"post_id": "10151834838473155", "text": "Sala strapiena (gente in piedi!) con la Lega e Alain de Benoist, per parlare di Denaro e di Banche, di Popoli e di Libert\u00e0.\nFinch\u00e8 conserveremo la voglia e il coraggio di PENSARE, non ci schiacceranno.", "post_text": "Sala strapiena (gente in piedi!) con la Lega e Alain de Benoist, per parlare di Denaro e di Banche, di Popoli e di Libert\u00e0.\nFinch\u00e8 conserveremo la voglia e il coraggio di PENSARE, non ci schiacceranno.", "shared_text": "", "time": "2013-12-02 22:08:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/526610_10151834832378155_1583938244_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=4o_DUVqpwWgAQlqjKvfLywRksyMqugD_cZMnZlEJenzLU3qGmnni0T0MQ&_nc_ht=scontent-cdt1-1.xx&oh=fffb2572728478c47817859d489305ea&oe=5E86B7EA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151834563988155", "text": "Basta EURO!\nRiprendiamoci sovranit\u00e0, lavoro, libert\u00e0, speranza.", "post_text": "Basta EURO!\nRiprendiamoci sovranit\u00e0, lavoro, libert\u00e0, speranza.", "shared_text": "", "time": "2013-12-02 19:17:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1441195_10151834562703155_1448573737_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=OzwgMwBO5NQAQnMNNiZEtgoSyYUVxqWcpSsz8A7D9kEmf7JNlo66NIOxg&_nc_ht=scontent-cdt1-1.xx&oh=277d4fe475c02013a1ee88ba7b903dd8&oe=5E7A7E70", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151833081548155", "text": "Notte serena Amici!\n\"Cominciate col FARE ci\u00f2 che \u00e8 necessario, poi ci\u00f2 che \u00e8 possibile. E all'improvviso vi sorprenderete a fare l'IMPOSSIBILE\".\nSan Francesco d'Assisi", "post_text": "Notte serena Amici!\n\"Cominciate col FARE ci\u00f2 che \u00e8 necessario, poi ci\u00f2 che \u00e8 possibile. E all'improvviso vi sorprenderete a fare l'IMPOSSIBILE\".\nSan Francesco d'Assisi", "shared_text": "", "time": "2013-12-02 00:50:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151833081548155&id=252306033154", "link": null} +{"post_id": "10151832770248155", "text": "Sala PIENA con la Lega a Torino, per parlare di Piemonte e costruire Lavoro, Futuro e Speranza.\nVoi a casa, vi abbraccio!", "post_text": "Sala PIENA con la Lega a Torino, per parlare di Piemonte e costruire Lavoro, Futuro e Speranza.\nVoi a casa, vi abbraccio!", "shared_text": "", "time": "2013-12-01 21:43:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1456658_10151832768998155_895676138_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=oV7Oc_lbnqwAQms1_hH0ji2-BldJRuJheYwZ-7t6jjWuqO9ovJ2kUr8LQ&_nc_ht=scontent-cdt1-1.xx&oh=9f6135f0c9c574044851af8ac90c66af&oe=5E50EDB7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151832276158155", "text": "Bella e bianca Cuneo!", "post_text": "Bella e bianca Cuneo!", "shared_text": "", "time": "2013-12-01 16:57:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1453412_10151832275803155_1958057017_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=McXLXVdDSSkAQnKq1X_sD4Rd217aoavSO0T9TR-F44-ms9mc8Pj5xg34g&_nc_ht=scontent-cdt1-1.xx&oh=315e897c5275ef0c53cc577437dd0850&oe=5E4BB0AE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151831879843155", "text": "Genova, sempre stupenda.", "post_text": "Genova, sempre stupenda.", "shared_text": "", "time": "2013-12-01 11:32:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1424337_10151831879338155_1755928480_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=FzS7p4idExMAQldLpkrvanQJz-jCBX-N2_wY_7HiQF61UtRZz46kma26g&_nc_ht=scontent-cdt1-1.xx&oh=e425f4d125495a444f9d2cd4c9f362e1&oe=5E80F2B4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151831724943155", "text": "Buona domenica Amici, che il Sole vi scaldi!\nOggi incontri Leghisti alle 11 a Genova, alle 13.30 ad Albenga, alle 17 a Cuneo e alle 21 a Torino.\nDall'ascolto, al Progetto.", "post_text": "Buona domenica Amici, che il Sole vi scaldi!\nOggi incontri Leghisti alle 11 a Genova, alle 13.30 ad Albenga, alle 17 a Cuneo e alle 21 a Torino.\nDall'ascolto, al Progetto.", "shared_text": "", "time": "2013-12-01 09:13:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1476146_10151831723368155_956795203_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=s6SZX7mbFDoAQmuKf9WOsKEQeBwNuYxqaqi3HY8O-Bz5fMuICvl1PrHJw&_nc_ht=scontent-cdt1-1.xx&oh=0ec5ab4225f526f3ca33fba248466670&oe=5E40C976", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151830702918155", "text": "Sala piena, almeno 300 persone, con la Lega qui a Verona. Indipendenza e Disobbedienza!", "post_text": "Sala piena, almeno 300 persone, con la Lega qui a Verona. Indipendenza e Disobbedienza!", "shared_text": "", "time": "2013-11-30 21:26:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1464621_10151830700703155_562549735_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=JnKSlPeu1LcAQmasFqiUYPr4oRo-UMjSQU5lG0GRWXVJAdlmYfKY_fxLQ&_nc_ht=scontent-cdt1-1.xx&oh=b817697b22eac1267543611a87481208&oe=5E7D97F0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151830346548155", "text": "Con i Fratelli Leghisti di Rovigo. Indipendenza!", "post_text": "Con i Fratelli Leghisti di Rovigo. Indipendenza!", "shared_text": "", "time": "2013-11-30 17:56:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1452114_10151830345958155_1865244066_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=Hv7FzRS1AycAQm9JzRAkg9yCVD57EaQzT-qDXEQ6TZZnUko9WNfcvQPvA&_nc_ht=scontent-cdt1-1.xx&oh=4ed28aa8baedb34b3d867c0dbae291d0&oe=5E4D7A29", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151830070138155", "text": "Orgoglioso di essere a Bondeno , Comune terremotato nel Ferrarese, per consegnare ai Vigili del Fuoco e alla Protezione Civile due automezzi DONATI DALLA LEGA NORD. La Buona Politica c'\u00e8.", "post_text": "Orgoglioso di essere a Bondeno , Comune terremotato nel Ferrarese, per consegnare ai Vigili del Fuoco e alla Protezione Civile due automezzi DONATI DALLA LEGA NORD. La Buona Politica c'\u00e8.", "shared_text": "", "time": "2013-11-30 14:52:00", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1471148_10151830068223155_1933928929_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=CmVgu9vcfSQAQnqyqYITlB710zADqe2tA4natWHCzDFdhH43i9JgOSmyA&_nc_ht=scontent-cdt1-1.xx&oh=22ea17ec0cfed65ca019fdab3607055f&oe=5E49147A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151830048093155", "text": "Ieri la sciura KYENGE, al Simposio su \"Africa e sviluppo sostenibile\" in Vaticano, ha premiato il sciur PRODI.\nL'Italia va in malora, e questi SI PREMIANO, pensando all'Africa: se i due sono cos\u00ec affezionati al Continente Nero, terra peraltro stupenda, che CI TORNINO!", "post_text": "Ieri la sciura KYENGE, al Simposio su \"Africa e sviluppo sostenibile\" in Vaticano, ha premiato il sciur PRODI.\nL'Italia va in malora, e questi SI PREMIANO, pensando all'Africa: se i due sono cos\u00ec affezionati al Continente Nero, terra peraltro stupenda, che CI TORNINO!", "shared_text": "", "time": "2013-11-30 14:31:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151830048093155&id=252306033154", "link": null} +{"post_id": "10151828234383155", "text": "Tramonto su Milano. Poesia.\nTroppo spesso andiamo in cerca di Bellezza lontano da casa, e non ci accorgiamo che ce l'abbiamo a portata di mano.", "post_text": "Tramonto su Milano. Poesia.\nTroppo spesso andiamo in cerca di Bellezza lontano da casa, e non ci accorgiamo che ce l'abbiamo a portata di mano.", "shared_text": "", "time": "2013-11-29 16:55:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1486859_10151828232393155_1492577885_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=jFTq5X4ldiQAQm5xlTj7Uk6JpLWAXvlF6O_oD5g0G2yXbvEdEw6ghy63g&_nc_ht=scontent-cdt1-1.xx&oh=5729e09c85bfb4e20944c4abcda5bb4f&oe=5E4988B9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151828052413155", "text": "Finito (forse) con Berlusconi e Ruby, adesso il Tribunale di Milano torna a \"occuparsi\" di Bossi e della Lega.\nI processi a mafiosi e assassini possono attendere...\nGIUDICI ELETTI dal Popolo e INDIPENDENZA, unica via.", "post_text": "Finito (forse) con Berlusconi e Ruby, adesso il Tribunale di Milano torna a \"occuparsi\" di Bossi e della Lega.\nI processi a mafiosi e assassini possono attendere...\nGIUDICI ELETTI dal Popolo e INDIPENDENZA, unica via.", "shared_text": "", "time": "2013-11-29 15:04:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151828052413155&id=252306033154", "link": null} +{"post_id": "10151826383893155", "text": "GRAZIE ai 4.000 Militanti che hanno firmato per me.\nGRAZIE anche a tutti coloro che hanno scelto altri candidati, primo fra tutti Umberto BOSSI, grande uomo.\nGrazie a Stucchi, a Bernardini, a Stefanazzi.\nDal CONFRONTO di Idee diverse, nascono Idee migliori.\nGRAZIE LEGA, Comunit\u00e0 in cammino.\nOra, dalla difesa all'attacco!\nRoma e Bruxelles non sono mai state cos\u00ec deboli.\nUniti e INDIPENDENTI, alla faccia dei servi, SI VINCE.", "post_text": "GRAZIE ai 4.000 Militanti che hanno firmato per me.\nGRAZIE anche a tutti coloro che hanno scelto altri candidati, primo fra tutti Umberto BOSSI, grande uomo.\nGrazie a Stucchi, a Bernardini, a Stefanazzi.\nDal CONFRONTO di Idee diverse, nascono Idee migliori.\nGRAZIE LEGA, Comunit\u00e0 in cammino.\nOra, dalla difesa all'attacco!\nRoma e Bruxelles non sono mai state cos\u00ec deboli.\nUniti e INDIPENDENTI, alla faccia dei servi, SI VINCE.", "shared_text": "", "time": "2013-11-28 18:26:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151826383893155&id=252306033154", "link": null} +{"post_id": "10151825046518155", "text": "Notte serena Amici!\n\"Bisogna sempre giocare LEALMENTE, quando si hanno in mano le carte vincenti\". Oscar WILDE\nA duman matina alle 7 in diretta su Telelombardia.", "post_text": "Notte serena Amici!\n\"Bisogna sempre giocare LEALMENTE, quando si hanno in mano le carte vincenti\". Oscar WILDE\nA duman matina alle 7 in diretta su Telelombardia.", "shared_text": "", "time": "2013-11-28 01:04:47", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151825046518155&id=252306033154", "link": null} +{"post_id": "10151824259033155", "text": "4 milioni di DISOCCUPATI e 5 milioni di poveri.\nMa i politici di sinistra e destra litigano su altro.\nSulle Decadenze e sulla Magistratura.\nItalia, Stato ladro, e sull'orlo del Fallimento.\nL'INDIPENDENZA, da Roma e da Bruxelles, non \u00e8 mai stata cos\u00ec vicina. INSIEME SI PU\u00d2.", "post_text": "4 milioni di DISOCCUPATI e 5 milioni di poveri.\nMa i politici di sinistra e destra litigano su altro.\nSulle Decadenze e sulla Magistratura.\nItalia, Stato ladro, e sull'orlo del Fallimento.\nL'INDIPENDENZA, da Roma e da Bruxelles, non \u00e8 mai stata cos\u00ec vicina. INSIEME SI PU\u00d2.", "shared_text": "", "time": "2013-11-27 16:48:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151824259033155&id=252306033154", "link": null} +{"post_id": "10151824093848155", "text": "Vi segnalo questa bella intervista a Massimo Fini su \"La Padania\" di oggi.\nLAPADANIA.NET\nLega Nord 2.0 - La Padania", "post_text": "Vi segnalo questa bella intervista a Massimo Fini su \"La Padania\" di oggi.", "shared_text": "LAPADANIA.NET\nLega Nord 2.0 - La Padania", "time": "2013-11-27 14:45:12", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCCnG_GC47X9MBy&w=476&h=249&url=http%3A%2F%2Fwww.lapadania.net%2Fuploads%2Furl_1385480546267_2711fini.jpg&cfs=1&jq=75&sx=0&sy=6&sw=730&sh=382&ext=jpg&_nc_hash=AQDwSoIu9Vx6qzF0", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151824093848155&id=252306033154", "link": "http://www.lapadania.net/articoli/10981.php?fbclid=IwAR3VMqyRPg0-HQ6VZi6tjQLv1u7EWNkJ1xRNRu5gbvJSkZNCdyQG3DXmu8Q"} +{"post_id": "10151822085803155", "text": "Vi piace?\nCosa ne pensate delle mie proposte?\nLINDIPENDENZA.COM\nSalvini risponde: \u00abRiuniamoci per vincere insieme. Poi, ci divideremo\u00bb | L'Indipendenza", "post_text": "Vi piace?\nCosa ne pensate delle mie proposte?", "shared_text": "LINDIPENDENZA.COM\nSalvini risponde: \u00abRiuniamoci per vincere insieme. Poi, ci divideremo\u00bb | L'Indipendenza", "time": "2013-11-26 14:21:31", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBWDYmiWu4iTiKZ&w=358&h=187&url=http%3A%2F%2Fwww.lindipendenza.com%2Fwp-content%2Fthemes%2Feditorial%2Fimages%2Fporcellinoindipendenza.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQA3d71aWbOGlvPq", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151822085803155&id=252306033154", "link": "http://www.lindipendenza.com/%c2%abprima-riuniamoci-per-battagliare-insieme-poi-ci-divideremo%c2%bb/?fbclid=IwAR3lIIg1EtaxFeA56DGPuoV4ORNTCrOaaoriJj7u0xYaCextxzcLoUKZTqo"} +{"post_id": "10151821751263155", "text": "Oggi il cielo di Lombardia \u00e8 una Poesia!\nCom'\u00e8 dalle vostre parti?", "post_text": "Oggi il cielo di Lombardia \u00e8 una Poesia!\nCom'\u00e8 dalle vostre parti?", "shared_text": "", "time": "2013-11-26 09:19:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1471954_10151821750858155_1755128462_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=06M4IHNNbF4AQk_2bp78CO87yCDxq-18LwPRHc46ImJQrZOM7sO370qoQ&_nc_ht=scontent-cdt1-1.xx&oh=b1be90e2b443d155d10a7af62cf41bfa&oe=5E44EB70", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151820800098155", "text": "La lunga discussione sulla DECADENZA di Berlusconi, lo confesso, mi ha fatto decadere le PALLE...", "post_text": "La lunga discussione sulla DECADENZA di Berlusconi, lo confesso, mi ha fatto decadere le PALLE...", "shared_text": "", "time": "2013-11-25 23:00:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151820800098155&id=252306033154", "link": null} +{"post_id": "10151819991748155", "text": "Grazie a tutti quelli che hanno partecipato di persona e tutti quelli che ci hanno seguito da casa attraverso Radio Padania o attraverso la diretta streaming.\nPer chi non fosse ancora riuscito a vedere il\u2026 Altro convegno vi segnaliamo il link di Youtube per rivedere l'intero convegno\nhttp://www.youtube.com/watch?v=mJfmmVvKF1g&feature=c4-overview&list=UUw2AF_J2QizzmWw99bs3e6Q", "post_text": "Grazie a tutti quelli che hanno partecipato di persona e tutti quelli che ci hanno seguito da casa attraverso Radio Padania o attraverso la diretta streaming.\nPer chi non fosse ancora riuscito a vedere il\u2026 Altro convegno vi segnaliamo il link di Youtube per rivedere l'intero convegno\nhttp://www.youtube.com/watch?v=mJfmmVvKF1g&feature=c4-overview&list=UUw2AF_J2QizzmWw99bs3e6Q", "shared_text": "", "time": "2013-11-25 15:10:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1461639_10151819991703155_1862973914_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=fyeGjNfn710AQnle4nfcHMY6petCFzuQXyoBsSSRZy_e4fuwET411gcOw&_nc_ht=scontent-cdt1-1.xx&oh=aebacf6e5352840e396d3c16d7cc58e8&oe=5E7B4156", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "https://www.youtube.com/watch?v=mJfmmVvKF1g&feature=c4-overview&list=UUw2AF_J2QizzmWw99bs3e6Q&fbclid=IwAR2orH0w15TNZ-mQ2-q0uVbEYZDMM1xuB7pAweJ07oB9Z9cGJzX0u0A1d5w"} +{"post_id": "10151819709328155", "text": "Qui Regione Lombardia.\nConferenza stampa per due bei Progetti Lega. 1) Stop al consumo del territorio, stop a nuovo cemento. 2) Appalti a kilometro zero: favoriamo il lavoro delle nostre imprese.\nA Bruxelles si arrabbieranno?\nChissenefrega! INDIPENDENZA, da Roma e da Bruxelles.", "post_text": "Qui Regione Lombardia.\nConferenza stampa per due bei Progetti Lega. 1) Stop al consumo del territorio, stop a nuovo cemento. 2) Appalti a kilometro zero: favoriamo il lavoro delle nostre imprese.\nA Bruxelles si arrabbieranno?\nChissenefrega! INDIPENDENZA, da Roma e da Bruxelles.", "shared_text": "", "time": "2013-11-25 10:47:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1466253_10151819707673155_611671434_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=JiCZR0dbqYQAQkLSCblmeh77KQOqrSZd-D4Q-McdxQVnB1VNMhxLBXqYQ&_nc_ht=scontent-cdt1-1.xx&oh=7017993f830cff0dfe0380aadd45758b&oe=5E8807EE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151818708423155", "text": "Torna la gente, cresce l'entusiasmo, le Idee di Libert\u00e0 sveglieranno l'Europa! Forza Lega, INSIEME SI PU\u00d2.", "post_text": "Torna la gente, cresce l'entusiasmo, le Idee di Libert\u00e0 sveglieranno l'Europa! Forza Lega, INSIEME SI PU\u00d2.", "shared_text": "", "time": "2013-11-24 21:55:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1463005_10151818705088155_1951310936_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=cf2bURJzob0AQnxPey2hX-x_EKP_XY43pjY9SVKCPWfoNStJy08Q1zfOw&_nc_ht=scontent-cdt1-1.xx&oh=5fecd95358d9108b7e7001719f626afc&oe=5E79180A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151818683693155", "text": "Che squadra, in cucina alla Festa di Spirano! Innamorato della Lega.", "post_text": "Che squadra, in cucina alla Festa di Spirano! Innamorato della Lega.", "shared_text": "", "time": "2013-11-24 21:41:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1456677_10151818682543155_1572986554_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=fe4vWaKQm0AAQkHd0b7RXUd0g3vJtzpOs91tJkgn0Oqlj9nVGH6OEcIgQ&_nc_ht=scontent-cdt1-1.xx&oh=a342415e19b7f2f57fefee037804143e&oe=5E8A70AF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151817642828155", "text": "Tentando di fare una torta di mele...\nBuona domenica Amici, ci vediamo stasera alla Festa Lega di Spirano, Berghem!", "post_text": "Tentando di fare una torta di mele...\nBuona domenica Amici, ci vediamo stasera alla Festa Lega di Spirano, Berghem!", "shared_text": "", "time": "2013-11-24 09:34:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1467483_10151817642018155_959153686_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=1HLplFG1pT4AQn9Etaizl4WD0gm1Vx32gZN7Pmhirg3SOynyBplOyxkKA&_nc_ht=scontent-cdt1-1.xx&oh=00f119aac17ace041fd9a533ebd59314&oe=5E491BA4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151816018653155", "text": "NO EURO DAY, sala strapiena!", "post_text": "NO EURO DAY, sala strapiena!", "shared_text": "", "time": "2013-11-23 15:36:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1476151_10151816018163155_651441197_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=5A7sRYHhtiEAQl6qqXbn4amYb0XFROL-JoFsMBTm8N6_fGbUKSo-HxBSQ&_nc_ht=scontent-cdt1-1.xx&oh=bb2c79f8bf1f22957f4c9092ec7c77e7&oe=5E80752A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151815554013155", "text": "Seguite la diretta Streaming dalle ore 15:00 su\nwww.lapadania.net", "post_text": "Seguite la diretta Streaming dalle ore 15:00 su\nwww.lapadania.net", "shared_text": "", "time": "2013-11-23 08:57:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1459293_10151815553963155_1801287087_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=0xlBG9UekU8AQkjzLcqmIi59wEWOvUKqigwD83LsHHzI5PCwOYB4KoVTQ&_nc_ht=scontent-cdt1-1.xx&oh=7ffe8451155b07524d3125674013bc7b&oe=5E3EF34F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.lapadania.net/?fbclid=IwAR3Mme5cdesmwWuy3WGu-BLRWQAS73g1Eerc9HZxosPGbk0ueslQmlNuRtM"} +{"post_id": "10151815551793155", "text": "Seguite la diretta streaming su\nwww.lapadania.net", "post_text": "Seguite la diretta streaming su\nwww.lapadania.net", "shared_text": "", "time": "2013-11-23 08:56:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1456110_10151815551763155_982111781_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=kH3eeB2HAJMAQmKxJkRPdW0gTysmhP_exIXU_r0g6wgCl6wT-2-hy-0ww&_nc_ht=scontent-cdt1-1.xx&oh=5f905e04ad49e017fd303ecf936619a1&oe=5E79A473", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.lapadania.net/?fbclid=IwAR3lv7QPiF-K7eaydJ0OYXKU9dTrTSKQcjTvsZvFuNf6aQ32kWdKUbhRy8w"} +{"post_id": "10151814684238155", "text": "Pare che il Governo di Roma, per evitare l'IMU, voglia aumentare ancora le TASSE sulla BENZINA.\nSe davvero sar\u00e0 cos\u00ec, prepariamo i RANDELLI.", "post_text": "Pare che il Governo di Roma, per evitare l'IMU, voglia aumentare ancora le TASSE sulla BENZINA.\nSe davvero sar\u00e0 cos\u00ec, prepariamo i RANDELLI.", "shared_text": "", "time": "2013-11-22 22:03:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151814684238155&id=252306033154", "link": null} +{"post_id": "10151814594503155", "text": "", "post_text": "", "shared_text": "", "time": "2013-11-22 21:02:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/1455086_10151814594363155_1140831352_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=WdfxjyKUL8EAQnuuA5b8PTQMc-il65SSKfkTqHoLynRGdjthST3bODxeg&_nc_ht=scontent-cdt1-1.xx&oh=8bb957f9ce967bc8d59cf50c34b2a6c2&oe=5E4EEB44", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151814466698155", "text": "Mirtilli dell'ARGENTINA e more dal MESSICO...", "post_text": "Mirtilli dell'ARGENTINA e more dal MESSICO...", "shared_text": "", "time": "2013-11-22 19:33:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1422385_10151814466543155_1332768432_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=GKMrXac50NsAQmwGRIPg-_WYRh4ha5qoSuS7J9tNZepBWP7w1vlbcsJOw&_nc_ht=scontent-cdt1-1.xx&oh=d7a1c85394013803850ce60ece2e9bab&oe=5E48CF2C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151814168198155", "text": "Arrivano ancora tantissime richieste per il convegno di domani, ma i posti purtroppo sono esauriti.\nPotete per\u00f2 seguire lo streaming sul sito\nwww.lapadania.net\noppure dalle frequenze di Radio Padania Libera", "post_text": "Arrivano ancora tantissime richieste per il convegno di domani, ma i posti purtroppo sono esauriti.\nPotete per\u00f2 seguire lo streaming sul sito\nwww.lapadania.net\noppure dalle frequenze di Radio Padania Libera", "shared_text": "", "time": "2013-11-22 16:09:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1476694_10151814168138155_801910570_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=0XbOg_dAbYUAQlPOWAD9sPHXuRb_L3n_dRs8RAv7Ydtw8ge0YyJeLE2AQ&_nc_ht=scontent-cdt1-1.xx&oh=acc38253627f6aa92c1fd2f4ed1a8cdb&oe=5E78F957", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.lapadania.net/?fbclid=IwAR0N3fNbHk_QFvILKIqYUT46W7ToWc0epjzyxlyQBDmxDRMwEKAJ7MIbAME"} +{"post_id": "10151813591853155", "text": "La CASA dei miei SOGNI.\nNel bosco, isolata.\nPer starci con la Giulia, coi bimbi, e con un mare di Amici.\nChiss\u00e0...\nBuona giornata, qui Fiumicino, si rientra in Padania!", "post_text": "La CASA dei miei SOGNI.\nNel bosco, isolata.\nPer starci con la Giulia, coi bimbi, e con un mare di Amici.\nChiss\u00e0...\nBuona giornata, qui Fiumicino, si rientra in Padania!", "shared_text": "", "time": "2013-11-22 08:10:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1455150_10151813591728155_1784673319_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=135bWVqVFqsAQkdPbtDQI8Hi2afr7GzUgvwGC-c9rpS5kyGylDpo4kukg&_nc_ht=scontent-cdt1-1.xx&oh=e1ce3a2098d3db376a121cbd763d7b70&oe=5E8BEFFC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151812947728155", "text": "Ho ricevuto un APPLAUSO dal pubblico, romano e di sinistra, di Santoro.\nSono quasi commosso...", "post_text": "Ho ricevuto un APPLAUSO dal pubblico, romano e di sinistra, di Santoro.\nSono quasi commosso...", "shared_text": "", "time": "2013-11-21 23:50:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151812947728155&id=252306033154", "link": null} +{"post_id": "10151812815523155", "text": "Secondo intervento fatto.\nLiberiamo il Nord dal folle Patto di Stabilit\u00e0.\nPer gli ABUSI EDILIZI, in gran parte al Sud, nessuna sanatoria, e in galera i colpevoli.\nE i 98 MILIARDI di euro di multa per le societ\u00e0 che gestiscono le Slot Machine???\nRegalo agli amici dello Stato Ladro...", "post_text": "Secondo intervento fatto.\nLiberiamo il Nord dal folle Patto di Stabilit\u00e0.\nPer gli ABUSI EDILIZI, in gran parte al Sud, nessuna sanatoria, e in galera i colpevoli.\nE i 98 MILIARDI di euro di multa per le societ\u00e0 che gestiscono le Slot Machine???\nRegalo agli amici dello Stato Ladro...", "shared_text": "", "time": "2013-11-21 22:27:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151812815523155&id=252306033154", "link": null} +{"post_id": "10151812750973155", "text": "Primo intervento fatto.\nSvizzera, autonomia, Europa serva delle banche e della Germania, Euro moneta criminale. Ma salvarsi \u00e8 possibile!\nAndava bene?", "post_text": "Primo intervento fatto.\nSvizzera, autonomia, Europa serva delle banche e della Germania, Euro moneta criminale. Ma salvarsi \u00e8 possibile!\nAndava bene?", "shared_text": "", "time": "2013-11-21 21:45:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151812750973155&id=252306033154", "link": null} +{"post_id": "10151812701438155", "text": "Qui Roma, da Santoro su La7.\nDietro le quinte, siete in tempo a cambiare canale...", "post_text": "Qui Roma, da Santoro su La7.\nDietro le quinte, siete in tempo a cambiare canale...", "shared_text": "", "time": "2013-11-21 21:14:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1480658_10151812701348155_1062219662_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=7VWBMMOOV-EAQn7nBZd5G0IIogVm6QlgCh9qSbRkgiOa5SasORbDhQJiw&_nc_ht=scontent-cdt1-1.xx&oh=4d8666b88b6680077b0cf5219ced84a3&oe=5E479F4F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151812149418155", "text": "Vecchie, care cartoline!\nForza Oscar Lancini, non mollare.\nScriviamogli tutti!!!", "post_text": "Vecchie, care cartoline!\nForza Oscar Lancini, non mollare.\nScriviamogli tutti!!!", "shared_text": "", "time": "2013-11-21 15:26:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1472036_10151812148493155_80045456_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=a-UoREIsnw8AQmBYc3u3wJepa3o3S8ctZdYiz6zr9uvPrRp-7zyAwm6iw&_nc_ht=scontent-cdt1-1.xx&oh=ebaddfa045ffcaf9fd296b43adb0cb6d&oe=5E40AE0B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151811809808155", "text": "Ragazzi, per il convegno di sabato \"No Euro Day\" ci sono ancora pochi posti disponibili,\nChiamate lo 0266211279\nParleremo di come uscire dall'euro con i Prof. Bagnai, Borghi e Rinaldi.\nVi aspetto!\n#insiemesipu\u00f2", "post_text": "Ragazzi, per il convegno di sabato \"No Euro Day\" ci sono ancora pochi posti disponibili,\nChiamate lo 0266211279\nParleremo di come uscire dall'euro con i Prof. Bagnai, Borghi e Rinaldi.\nVi aspetto!\n#insiemesipu\u00f2", "shared_text": "", "time": "2013-11-21 11:03:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1470243_10151811809788155_29775347_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=UHo4gUSZsf8AQlbZCaFmc4ZvsKTZyf_0BPiUvM39hxKekB3MaT-KeJSzg&_nc_ht=scontent-cdt1-1.xx&oh=ec1da778de811abc133e50f872328737&oe=5E464344", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151809570473155", "text": "Il nostro OSCAR LANCINI continua con il suo SCIOPERO DELLA FAME, e la sua famiglia chiede qualche giorno di tranquillit\u00e0 in attesa, si spera, di buone notizie.\nSempre pi\u00f9 convinto che sia un ATTACCO ALLA LEGA fondato sul nulla, per rispetto della volont\u00e0 della sua famiglia sospendiamo (per ora) altre manifestazioni.\nPer qualche giorno per\u00f2, non di pi\u00f9.\nUn PADANO ARRESTATO ingiustamente, \u00e8 Follia.\nOscar, riprendi a mangiare: abbiamo bisogno di te sano, in forze, pronto con noi alla Battaglia!", "post_text": "Il nostro OSCAR LANCINI continua con il suo SCIOPERO DELLA FAME, e la sua famiglia chiede qualche giorno di tranquillit\u00e0 in attesa, si spera, di buone notizie.\nSempre pi\u00f9 convinto che sia un ATTACCO ALLA LEGA fondato sul nulla, per rispetto della volont\u00e0 della sua famiglia sospendiamo (per ora) altre manifestazioni.\nPer qualche giorno per\u00f2, non di pi\u00f9.\nUn PADANO ARRESTATO ingiustamente, \u00e8 Follia.\nOscar, riprendi a mangiare: abbiamo bisogno di te sano, in forze, pronto con noi alla Battaglia!", "shared_text": "", "time": "2013-11-20 11:18:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151809570473155&id=252306033154", "link": null} +{"post_id": "10151808041048155", "text": "In tasca una Carta Telefonica internazionale, una cartina di Roma, un kit di accoglienza e... 35 EURO al giorno!\nSono SCAPPATI con le tasche piene gli 89 CLANDESTINI sopravvissuti a Lampedusa, ospiti (ora non pi\u00f9!) a Roma dell'Assessorato al SOSTEGNO SOCIALE e Sussidiariet\u00e0.\nLi accogliamo, li coccoliamo, li MANTENIAMO...\nE poi fanno quello che vogliono, dove vogliono.\nBASTAAAAAAAAA!\nEspulsioni, controllo delle frontiere, seriet\u00e0.", "post_text": "In tasca una Carta Telefonica internazionale, una cartina di Roma, un kit di accoglienza e... 35 EURO al giorno!\nSono SCAPPATI con le tasche piene gli 89 CLANDESTINI sopravvissuti a Lampedusa, ospiti (ora non pi\u00f9!) a Roma dell'Assessorato al SOSTEGNO SOCIALE e Sussidiariet\u00e0.\nLi accogliamo, li coccoliamo, li MANTENIAMO...\nE poi fanno quello che vogliono, dove vogliono.\nBASTAAAAAAAAA!\nEspulsioni, controllo delle frontiere, seriet\u00e0.", "shared_text": "", "time": "2013-11-19 17:50:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151808041048155&id=252306033154", "link": null} +{"post_id": "10151807507053155", "text": "INDIPENDENZA sia da Roma che da Bruxelles!", "post_text": "INDIPENDENZA sia da Roma che da Bruxelles!", "shared_text": "", "time": "2013-11-19 11:04:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1422627_10151807506953155_389977220_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=_EeKHcRmMMMAQnkD45Nv4H8GkzWqv12lyEaaiyzuHcSAshSQnSKyDgNSQ&_nc_ht=scontent-cdt1-1.xx&oh=87cd1080658cf9cf95546e5b8e1da0d1&oe=5E403880", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151807436068155", "text": "Un pensiero e un abbraccio al grande Popolo di Sardegna, ai suoi morti e a chi lavora in queste ore nel fango. Non siete soli!", "post_text": "Un pensiero e un abbraccio al grande Popolo di Sardegna, ai suoi morti e a chi lavora in queste ore nel fango. Non siete soli!", "shared_text": "", "time": "2013-11-19 09:56:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-9/fr/cp0/e15/q65/1459953_10151807435908155_1876580134_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=4HWa17cvuXsAQmltMH4qIsVJ_5masoCIwtXyQpYj1rN8j0lV9zXxAgLGA&_nc_ht=scontent-cdt1-1.xx&oh=f960753a8c0ddbeaaf37311665b26ab9&oe=5E8CE139", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151807168623155", "text": "Buon marted\u00ec Amici!\nQui Stazione Nord di Milano, comincia il viaggio per Strasburgo: Abbattere e Ricostruire un'Europa dei Cittadini, non delle Banche!", "post_text": "Buon marted\u00ec Amici!\nQui Stazione Nord di Milano, comincia il viaggio per Strasburgo: Abbattere e Ricostruire un'Europa dei Cittadini, non delle Banche!", "shared_text": "", "time": "2013-11-19 05:27:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1454670_10151807166428155_2073647967_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=A2OsMY5JIzcAQn6HE0z0pEv9qpYkjEQRUQOWqpdAVPwOg7V0oVwYP_c8w&_nc_ht=scontent-cdt1-1.xx&oh=22f6559a9cf4768b6d42c44dfa2b86c5&oe=5E4AF632", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151806498133155", "text": "Operazione Castagne, banzai!", "post_text": "Operazione Castagne, banzai!", "shared_text": "", "time": "2013-11-18 22:38:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1455856_10151806497428155_285067386_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=dYCWXKveiykAQngk4E-mDyRkNSanFck0r_Jb2lBwtr4LrS2MP4_Kf0FHQ&_nc_ht=scontent-cdt1-1.xx&oh=1c9bc4571051634f37b999ec715a1f61&oe=5E829EB1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151805687268155", "text": "Oriana Fallaci, grande donna.\nLibera, scomoda, coraggiosa. GRAZIE!", "post_text": "Oriana Fallaci, grande donna.\nLibera, scomoda, coraggiosa. GRAZIE!", "shared_text": "", "time": "2013-11-18 14:33:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1452224_10151805684608155_270992696_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=XFIvo8hkI78AQlsiJeRlA3_pHdfdyf6JS20Qv1nVv0SVQ-HOiA-CMW88Q&_nc_ht=scontent-cdt1-1.xx&oh=b39fa0ab76d3507e1612de9ea4a80fea&oe=5E3F8341", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151805548728155", "text": "PISAPIA se la prende con la Lega Nord perch\u00e8, ma guarda che strano, fa OPPOSIZIONE.\nMa a un \"sindaco\" che AUMENTA di 1 MILIARDO DI EURO tasse e tariffe, in meno di 3 anni, per tutto evtutti, dobbiamo forse dire BRAVO..??\nPISAOIA: sciagura, massacro, bugia, disastro, beffa, calamit\u00e0 naturale per Milano.", "post_text": "PISAPIA se la prende con la Lega Nord perch\u00e8, ma guarda che strano, fa OPPOSIZIONE.\nMa a un \"sindaco\" che AUMENTA di 1 MILIARDO DI EURO tasse e tariffe, in meno di 3 anni, per tutto evtutti, dobbiamo forse dire BRAVO..??\nPISAOIA: sciagura, massacro, bugia, disastro, beffa, calamit\u00e0 naturale per Milano.", "shared_text": "", "time": "2013-11-18 13:06:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151805548728155&id=252306033154", "link": null} +{"post_id": "10151805302798155", "text": "30 minuti di trasmissione su Rai Tre, solo beghe fra berlusconiani e alfaniani... Machissenefregaaa!!! I problemi dei cittadini sono altri.", "post_text": "30 minuti di trasmissione su Rai Tre, solo beghe fra berlusconiani e alfaniani... Machissenefregaaa!!! I problemi dei cittadini sono altri.", "shared_text": "", "time": "2013-11-18 08:58:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151805302798155&id=252306033154", "link": null} +{"post_id": "10151803786163155", "text": "Un fiume di GENTE PERBENE per le strade di ADRO.\nGrazieeeeeeeeeee, non si molla!\nGi\u00f9 le mani dai Sindaci Onesti, Stato ladro e mafioso", "post_text": "Un fiume di GENTE PERBENE per le strade di ADRO.\nGrazieeeeeeeeeee, non si molla!\nGi\u00f9 le mani dai Sindaci Onesti, Stato ladro e mafioso", "shared_text": "", "time": "2013-11-17 16:26:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1466132_10151803784128155_2100048195_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=TmyrtIfOv8kAQlS4BK6h9t3OQ1cKaO1Noi9wV5-2zeD5mGu0eYecHClPQ&_nc_ht=scontent-cdt1-1.xx&oh=7a496068e21fec35b090263ac9a916a8&oe=5E7B87AB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151803076013155", "text": "Cittadini in piazza a Gradisca d'Isonzo contro l'invasione clandestina: in Italia NON C'\u00c8 PI\u00d9 SPAZIO per un solo immigrato!", "post_text": "Cittadini in piazza a Gradisca d'Isonzo contro l'invasione clandestina: in Italia NON C'\u00c8 PI\u00d9 SPAZIO per un solo immigrato!", "shared_text": "", "time": "2013-11-17 11:34:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1456763_10151803072928155_1003481515_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=l7HuYa9QS-EAQk79InEmFXhFRhnJQzrs_YHfXoCRNYymt5t3ulY61KeLw&_nc_ht=scontent-cdt1-1.xx&oh=3579030eb8e0f880da54c3781673aa94&oe=5E48C488", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151802994138155", "text": "Buona domenica Amici.\nMa che bella Portogruaro!", "post_text": "Buona domenica Amici.\nMa che bella Portogruaro!", "shared_text": "", "time": "2013-11-17 10:27:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1463388_10151802993613155_1540584190_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=vwfQZ6hqbJcAQlJiXiyyhEI0_2I0zONuiUGG7ZeDGxFDm6sy9MPG3Rhng&_nc_ht=scontent-cdt1-1.xx&oh=640b49ae8cfa0fd1233c7dcafab76e15&oe=5E838803", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151801815398155", "text": "Tanta gente, tanto Veneto, tante idee e tanta voglia di Indipendenza stasera con la Lega a Pramaggiore. In attesa di mangiare formaggio fuso e tagliata...", "post_text": "Tanta gente, tanto Veneto, tante idee e tanta voglia di Indipendenza stasera con la Lega a Pramaggiore. In attesa di mangiare formaggio fuso e tagliata...", "shared_text": "", "time": "2013-11-16 21:21:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/551372_10151801813573155_727162952_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=ARgpJkKBgq0AQkekzyWi9nQILzOBwtcao7P1uq_DYslypNDXmZLaUSLoQ&_nc_ht=scontent-cdt1-1.xx&oh=8a4c6ac2175a840aebaf537c7406a5b1&oe=5E3F0A58", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151801324118155", "text": "Stasera sono contento perch\u00e8 sar\u00f2 in VENETO, alla festa leghista di Pramaggiore, in provincia di Venezia.\nVi aspetto in tanti Amici! INSIEME SI PU\u00d2.", "post_text": "Stasera sono contento perch\u00e8 sar\u00f2 in VENETO, alla festa leghista di Pramaggiore, in provincia di Venezia.\nVi aspetto in tanti Amici! INSIEME SI PU\u00d2.", "shared_text": "", "time": "2013-11-16 15:34:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151801324118155&id=252306033154", "link": null} +{"post_id": "10151801015533155", "text": "Lago di Como.\nPer me, uno dei posti PI\u00d9 BELLI del mondo!\nE voi, che Luogo avete nel Cuore?", "post_text": "Lago di Como.\nPer me, uno dei posti PI\u00d9 BELLI del mondo!\nE voi, che Luogo avete nel Cuore?", "shared_text": "", "time": "2013-11-16 12:53:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/602752_10151801014263155_1650416704_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=FS9767O9sT0AQkZKSmlk07NJf4hTDyMFCsBFavWzlRwdCNwxVHfbeddQg&_nc_ht=scontent-cdt1-1.xx&oh=d10d549fdbcc49ca6c1f03ec426d9d45&oe=5E8A6282", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151800870838155", "text": "Il PDL si spacca fra falchi e colombe, pitonesse e pantere.\nNon so voi, ma io non faccio il tifo PER NESSUNO.\nIo tifo per il Nord.", "post_text": "Il PDL si spacca fra falchi e colombe, pitonesse e pantere.\nNon so voi, ma io non faccio il tifo PER NESSUNO.\nIo tifo per il Nord.", "shared_text": "", "time": "2013-11-16 10:42:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151800870838155&id=252306033154", "link": null} +{"post_id": "10151799995873155", "text": "Bitto, casera e Sforzato.\nSapori di casa, il meglio.", "post_text": "Bitto, casera e Sforzato.\nSapori di casa, il meglio.", "shared_text": "", "time": "2013-11-15 22:39:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1458472_10151799995638155_999153535_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=Tj3MNtoYj1MAQmot8prySTY2UvaA_b2_aXdJfsMUhowIt3E5e7sXHC8Gw&_nc_ht=scontent-cdt1-1.xx&oh=108170504b12804c040bae228e1f8dd5&oe=5E7AF4FF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151799567803155", "text": "Eroici!\nI 4 consiglieri comunali della Lega di Milano sono in Consiglio Comunale da 24 ore, per SVEGLIARE Pisapia e la sinistra, e per togliere un po' di soldi destinati ai Rom e restituirli ai Milanesi!\nSiamo con voi, INSIEME SI PU\u00d2.", "post_text": "Eroici!\nI 4 consiglieri comunali della Lega di Milano sono in Consiglio Comunale da 24 ore, per SVEGLIARE Pisapia e la sinistra, e per togliere un po' di soldi destinati ai Rom e restituirli ai Milanesi!\nSiamo con voi, INSIEME SI PU\u00d2.", "shared_text": "", "time": "2013-11-15 18:16:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151799567803155&id=252306033154", "link": null} +{"post_id": "10151799452303155", "text": "Clandestini e delinquenti fuori dalle palle! Vi aspetto, DOMENICA ore 11, a manifestare presso il centro d'identificazione ed espulsione (CIE) di GRADISCA D'ISONZO!\nYOUTUBE.COM\ngradisca", "post_text": "Clandestini e delinquenti fuori dalle palle! Vi aspetto, DOMENICA ore 11, a manifestare presso il centro d'identificazione ed espulsione (CIE) di GRADISCA D'ISONZO!", "shared_text": "YOUTUBE.COM\ngradisca", "time": "2013-11-15 16:44:38", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAvYGccpdCrHeOr&w=476&h=249&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2Fj-CrDHV-hMQ%2Fmaxresdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&sx=0&sy=17&sw=1280&sh=670&ext=jpg&_nc_hash=AQCoanVh6rSJEXSo", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151799452303155&id=252306033154", "link": "https://www.youtube.com/watch?v=j-CrDHV-hMQ&fbclid=IwAR0tyQ6oy5RTwLrEdOvycAsRBP206J0DLmkL5N9vhHrykvHYNsBhJLKUCHM"} +{"post_id": "10151798788508155", "text": "Buon venerd\u00ec, bagnato e spero fortunato, Amici!\nA Bologna una BIMBA di 3 anni, su decisione del Tribunale minorile (e contro il parere della Procura minorile), \u00e8 stata data in AFFIDO temporaneo ad una coppia OMOSESSUALE.\nE intanto le coppie, quelle \"banali\" e composte da uomo e donna, ASPETTANO ANNI e spendono cifre folli per un'ADOZIONE o un affido.\nC'\u00e8 qualcuno che vuole un MONDO AL CONTRARIO.\nIo non mi arrendo.\nTradizione, Identit\u00e0 e Comunit\u00e0 sono il FUTURO.", "post_text": "Buon venerd\u00ec, bagnato e spero fortunato, Amici!\nA Bologna una BIMBA di 3 anni, su decisione del Tribunale minorile (e contro il parere della Procura minorile), \u00e8 stata data in AFFIDO temporaneo ad una coppia OMOSESSUALE.\nE intanto le coppie, quelle \"banali\" e composte da uomo e donna, ASPETTANO ANNI e spendono cifre folli per un'ADOZIONE o un affido.\nC'\u00e8 qualcuno che vuole un MONDO AL CONTRARIO.\nIo non mi arrendo.\nTradizione, Identit\u00e0 e Comunit\u00e0 sono il FUTURO.", "shared_text": "", "time": "2013-11-15 09:30:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151798788508155&id=252306033154", "link": null} +{"post_id": "10151797826253155", "text": "Notte serena Amici!\nLa Lega \u00e8 passione, lavoro, impegno, fatica, battaglie, allegria!", "post_text": "Notte serena Amici!\nLa Lega \u00e8 passione, lavoro, impegno, fatica, battaglie, allegria!", "shared_text": "", "time": "2013-11-14 23:52:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1462935_10151797820393155_702041887_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=SdxCUmH4VSMAQlY9ovZuDp6N4jcfF7sg1jCejNHnI31kVROLFjEt2lPKg&_nc_ht=scontent-cdt1-1.xx&oh=943e2cdd9cf6184ede8ef4d1dccfc8d4&oe=5E8A72A8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151797364998155", "text": "Ripensavo alla storia delle Baby-Prostitute.\nMa una \"mamma\" che fa PROSTITUIRE la figlia, che razza di brutta BESTIACCIA \u00e8???", "post_text": "Ripensavo alla storia delle Baby-Prostitute.\nMa una \"mamma\" che fa PROSTITUIRE la figlia, che razza di brutta BESTIACCIA \u00e8???", "shared_text": "", "time": "2013-11-14 20:29:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151797364998155&id=252306033154", "link": null} +{"post_id": "10151797146423155", "text": "Addio mio semplice e fedele compagno di telefonate, mi mancherai! Fate fatica anche voi a buttare le \"cose vecchie\"?", "post_text": "Addio mio semplice e fedele compagno di telefonate, mi mancherai! Fate fatica anche voi a buttare le \"cose vecchie\"?", "shared_text": "", "time": "2013-11-14 18:23:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1465139_10151797142453155_424735579_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=BGZDqPXl4KcAQkBY8x4A2dFLhEqjrf8s3eIvCGW3vXsNscNDJ2GRyBGPQ&_nc_ht=scontent-cdt1-1.xx&oh=02e78a2080c2c595bd4a0fea0372c260&oe=5E80DA09", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151796326638155", "text": "Cos\u00ec vedo il futuro della Lega in Europa.\nCosa ne pensate?\nhttp://www.lastampa.it/2013/11/14/italia/politica/salvini-la-lega-ci-sta-il-novembre-faremo-il-no-euro-day-InDF2WFkaNcpQxz4S6uVMN/pagina.html", "post_text": "Cos\u00ec vedo il futuro della Lega in Europa.\nCosa ne pensate?\nhttp://www.lastampa.it/2013/11/14/italia/politica/salvini-la-lega-ci-sta-il-novembre-faremo-il-no-euro-day-InDF2WFkaNcpQxz4S6uVMN/pagina.html", "shared_text": "", "time": "2013-11-14 11:07:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/1401348_10151796326603155_437630049_o.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=F0Dt-NQwYlUAQmWaVSSw7Vqxfe-hHPB38auv6hk2bMIGrXp4riUPI08JQ&_nc_ht=scontent-cdt1-1.xx&oh=adb450e15ad2ec7d9ac2482e6d9028ca&oe=5E7D01B5", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": "http://www.lastampa.it/2013/11/14/italia/politica/salvini-la-lega-ci-sta-il-novembre-faremo-il-no-euro-day-InDF2WFkaNcpQxz4S6uVMN/pagina.html?fbclid=IwAR3kUdoi1rFiWgL3VvxW8mHgcmdXJR5cmUxTcCIQ3Qup7nTy-DcOueIWh5E"} +{"post_id": "10151794767538155", "text": "Manifesti in giro per Milano!\nTi piace?", "post_text": "Manifesti in giro per Milano!\nTi piace?", "shared_text": "", "time": "2013-11-13 18:54:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1422536_10151794766958155_1690433641_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=xIQmXoLUfJ0AQl2AWME84ePkCR5EGN938XF-Kn8JuZm3exhi86Y-S6OAw&_nc_ht=scontent-cdt1-1.xx&oh=af267093f257ea3b1553bd4cff4e72fd&oe=5E3F2CF1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151794370253155", "text": "STATO LADRO, TUTTI AD ADRO!\nDomenica ore 14:30 manifestazione a difesa dei nostri Sindaci.\nSe ti girano le palle, fai girare questo video", "post_text": "STATO LADRO, TUTTI AD ADRO!\nDomenica ore 14:30 manifestazione a difesa dei nostri Sindaci.\nSe ti girano le palle, fai girare questo video", "shared_text": "", "time": "2013-11-13 14:43:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151794370253155&id=252306033154", "link": null} +{"post_id": "10151794171953155", "text": "Chi ci ha guadagnato con l'EURO?\nDISOCCUPAZIONE, confronto fra Germania e Italia.\nNel 2002 in Germania era l'8,4%, in Italia l'8,6%.\nNel 2013 in Germania \u00e8 il 5,4%, in Italia il 12,2%.\nIn GERMANIA, con l'Euro, \u00e8 SCESA molto.\nIn Italia \u00e8 drammaticamente cresciuta.\nCerto in Italia abbiamo anche uno STATO LADRO, ma i NUMERI dicono che DI EURO STIAMO MORENDO.\nChe dite?", "post_text": "Chi ci ha guadagnato con l'EURO?\nDISOCCUPAZIONE, confronto fra Germania e Italia.\nNel 2002 in Germania era l'8,4%, in Italia l'8,6%.\nNel 2013 in Germania \u00e8 il 5,4%, in Italia il 12,2%.\nIn GERMANIA, con l'Euro, \u00e8 SCESA molto.\nIn Italia \u00e8 drammaticamente cresciuta.\nCerto in Italia abbiamo anche uno STATO LADRO, ma i NUMERI dicono che DI EURO STIAMO MORENDO.\nChe dite?", "shared_text": "", "time": "2013-11-13 11:26:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151794171953155&id=252306033154", "link": null} +{"post_id": "10151793514208155", "text": "Pi\u00f9 che IENE, mi sembrano SQUALLIDE PECORE.", "post_text": "Pi\u00f9 che IENE, mi sembrano SQUALLIDE PECORE.", "shared_text": "", "time": "2013-11-13 00:20:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151793514208155&id=252306033154", "link": null} +{"post_id": "10151792334623155", "text": "Congresso della Lega, parla... GAD LERNERRRRRRR.\n\"Sar\u00e0 Matteo SALVINI il prossimo Segretario della Lega Nord. Non \u00e8 una grande notizia, neppure per i MILITANTI. Salvini non \u00e8 uomo che abbia collezionato SUCCESSI.\nLa Lega STA SCOMPARENDO\".\nSe per Lernerrrrr sono un fallito, e la Lega sta morendo, allora vuol dire che stiamo lavorando BENE.\nINDIPENDENZA!", "post_text": "Congresso della Lega, parla... GAD LERNERRRRRRR.\n\"Sar\u00e0 Matteo SALVINI il prossimo Segretario della Lega Nord. Non \u00e8 una grande notizia, neppure per i MILITANTI. Salvini non \u00e8 uomo che abbia collezionato SUCCESSI.\nLa Lega STA SCOMPARENDO\".\nSe per Lernerrrrr sono un fallito, e la Lega sta morendo, allora vuol dire che stiamo lavorando BENE.\nINDIPENDENZA!", "shared_text": "", "time": "2013-11-12 10:58:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151792334623155&id=252306033154", "link": null} +{"post_id": "10151790967568155", "text": "Milano che non si arrende!", "post_text": "Milano che non si arrende!", "shared_text": "", "time": "2013-11-11 18:36:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/556857_10151790967038155_1166573284_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=yfabEeYQSwMAQmIWWnscmZf9FQjS8QyaGHSJnyzafuOMUOmNu6pGZ64ZA&_nc_ht=scontent-cdt1-1.xx&oh=fc9d41d4c744e27538f34176b4c04ec1&oe=5E7B8BD7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151788795798155", "text": "Enrico LETTA nel 2014 vede la RIPRESA.\nS\u00ec, la Ri-Presa per il Culo da parte sua e di Bruxelles.", "post_text": "Enrico LETTA nel 2014 vede la RIPRESA.\nS\u00ec, la Ri-Presa per il Culo da parte sua e di Bruxelles.", "shared_text": "", "time": "2013-11-10 18:15:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151788795798155&id=252306033154", "link": null} +{"post_id": "10151788277903155", "text": "Nostalgia e sorriso, al ricordo dei tempi delle cabine a gettoni. Per voi \u00e8 lo stesso?", "post_text": "Nostalgia e sorriso, al ricordo dei tempi delle cabine a gettoni. Per voi \u00e8 lo stesso?", "shared_text": "", "time": "2013-11-10 13:58:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/995536_10151788277248155_73091548_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=MVS9PnV6pZsAQloFgGowUGuwdk7wTkTrIdbZ9wYsdfL9__Zl9AYhF8WBw&_nc_ht=scontent-cdt1-1.xx&oh=83e82560276dea4fe0b3a8f29f82ff1d&oe=5E8AB90C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151787131243155", "text": "Notte serena Amici!\nGoccia dopo goccia, si pu\u00f2 scolpire la Storia.", "post_text": "Notte serena Amici!\nGoccia dopo goccia, si pu\u00f2 scolpire la Storia.", "shared_text": "", "time": "2013-11-10 00:05:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1426142_10151787112753155_1857344544_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=4PVzO9UC5XkAQmbEYucTa0g_p6d3YGgCuW7Ck4fZBIw-7cq4eoWtlQDsg&_nc_ht=scontent-cdt1-1.xx&oh=d36ae2e51c800a8478ef42ceeaed3ebc&oe=5E844651", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151786323648155", "text": "1.200 MORTI, tantissimi bambini, per una terribile tempesta nelle Filippine.\nUna preghiera per ciascuno di loro.", "post_text": "1.200 MORTI, tantissimi bambini, per una terribile tempesta nelle Filippine.\nUna preghiera per ciascuno di loro.", "shared_text": "", "time": "2013-11-09 16:55:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151786323648155&id=252306033154", "link": null} +{"post_id": "10151785828213155", "text": "Leghisti, che fanno uscire articoli contro altri Leghisti, tirando in ballo altri Leghisti. Che pazienza...\nCerte cose lasciamole al PD o al PDL, noi siamo la Lega!\nBuon sabato a tutti i Fratelli", "post_text": "Leghisti, che fanno uscire articoli contro altri Leghisti, tirando in ballo altri Leghisti. Che pazienza...\nCerte cose lasciamole al PD o al PDL, noi siamo la Lega!\nBuon sabato a tutti i Fratelli", "shared_text": "", "time": "2013-11-09 11:07:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151785828213155&id=252306033154", "link": null} +{"post_id": "10151784872443155", "text": "Notte serena Amici!\n\"Si odia chi si teme\". Quinto Ennio, poeta latino.", "post_text": "Notte serena Amici!\n\"Si odia chi si teme\". Quinto Ennio, poeta latino.", "shared_text": "", "time": "2013-11-08 23:49:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151784872443155&id=252306033154", "link": null} +{"post_id": "10151783953678155", "text": "Sono in diretta a L'ARIA CHE TIRA su La7.\nChi c'\u00e8?", "post_text": "Sono in diretta a L'ARIA CHE TIRA su La7.\nChi c'\u00e8?", "shared_text": "", "time": "2013-11-08 12:10:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151783953678155&id=252306033154", "link": null} +{"post_id": "10151782710233155", "text": "Una MIRTA curiosa tira le tende e Vi saluta!", "post_text": "Una MIRTA curiosa tira le tende e Vi saluta!", "shared_text": "", "time": "2013-11-07 19:53:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1462854_10151782709668155_1529015352_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=K-eaGCZU8ZMAQk6UzsRBP3D3xmWDPQnObmdd_asPmJBFm7ieKhppYCHvQ&_nc_ht=scontent-cdt1-1.xx&oh=7e707eed989a14499fa8607a7e4fb4ba&oe=5E8C7E0E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151781777303155", "text": "Ragazzi, aiutiamo il PD a fare ancora pi\u00f9 TESSERE!\nNe hanno fatte, regalate e moltiplicate a tutti...\nMa possiamo AIUTARLI a fare di pi\u00f9!\nAvete qualche amico, conoscente, viandante, mendicante o super-eroe, a cui regalare la Tessera dei Kompagni?", "post_text": "Ragazzi, aiutiamo il PD a fare ancora pi\u00f9 TESSERE!\nNe hanno fatte, regalate e moltiplicate a tutti...\nMa possiamo AIUTARLI a fare di pi\u00f9!\nAvete qualche amico, conoscente, viandante, mendicante o super-eroe, a cui regalare la Tessera dei Kompagni?", "shared_text": "", "time": "2013-11-07 13:18:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151781777303155&id=252306033154", "link": null} +{"post_id": "10151777485448155", "text": "Maxi rissa fra famiglie ROM rivali all'ospedale San Raffaele di Milano: sprangate, feriti e un morto.\nNotte serena a tutti Amici, ma non ai Rom...", "post_text": "Maxi rissa fra famiglie ROM rivali all'ospedale San Raffaele di Milano: sprangate, feriti e un morto.\nNotte serena a tutti Amici, ma non ai Rom...", "shared_text": "", "time": "2013-11-07 00:29:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151777485448155&id=252306033154", "link": null} +{"post_id": "10151776066253155", "text": "In partenza per Bruxelles.\nLibro pronto nello zaino. Ti piace?", "post_text": "In partenza per Bruxelles.\nLibro pronto nello zaino. Ti piace?", "shared_text": "", "time": "2013-11-06 18:35:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1424519_10151776065833155_1829895538_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=QN2WEkdikfAAQmjlWi1gbZmEtHiC20ew3EO4VyHvsXKVuCLGkAWf4aAeg&_nc_ht=scontent-cdt1-1.xx&oh=d741912fb1528e6265afd037e0a44d1c&oe=5E40EBA8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151775798933155", "text": "Gioia Tauro, 6 ragazzini SEGREGATI in un campo ROM.\nForse l\u00ec la Kyenge e la Boldrini non erano passate...\nEvviva l'INTEGRAZIONE dei fratelli zingari!", "post_text": "Gioia Tauro, 6 ragazzini SEGREGATI in un campo ROM.\nForse l\u00ec la Kyenge e la Boldrini non erano passate...\nEvviva l'INTEGRAZIONE dei fratelli zingari!", "shared_text": "", "time": "2013-11-06 15:32:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151775798933155&id=252306033154", "link": null} +{"post_id": "10151775468963155", "text": "Amici, posso chiedervi un parere personale?\nQuale LIBRO deve assolutamente essere letto da un Leghista, da un Indipendentista, da un Uomo Libero?", "post_text": "Amici, posso chiedervi un parere personale?\nQuale LIBRO deve assolutamente essere letto da un Leghista, da un Indipendentista, da un Uomo Libero?", "shared_text": "", "time": "2013-11-06 11:23:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151775468963155&id=252306033154", "link": null} +{"post_id": "10151775164408155", "text": "Che bella Milano che si sveglia!\nPer chi vuole, vi offro un Tele Caff\u00e8 in diretta su 7 GOLD", "post_text": "Che bella Milano che si sveglia!\nPer chi vuole, vi offro un Tele Caff\u00e8 in diretta su 7 GOLD", "shared_text": "", "time": "2013-11-06 06:57:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/12982_10151775162673155_1634205701_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=VRaCgesP5igAQk0HNxAImPaWkdJuTaOb012xayKGxua3Z48CQxEuWwjuQ&_nc_ht=scontent-cdt1-1.xx&oh=98124781e8f0fb19d549069292ab583c&oe=5E8527B2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151774174278155", "text": "Un simpatico tizio su Corriere.it scrive a proposito della Lega \"speriamo che questo MINIPARTITO di stampo MEDIEVALE sparisca per sempre\".\nQuanti parassiti vorrebbero un Paese senza Lega...\nAspetta e spera! In battaglia, INSIEME SI PU\u00d2.", "post_text": "Un simpatico tizio su Corriere.it scrive a proposito della Lega \"speriamo che questo MINIPARTITO di stampo MEDIEVALE sparisca per sempre\".\nQuanti parassiti vorrebbero un Paese senza Lega...\nAspetta e spera! In battaglia, INSIEME SI PU\u00d2.", "shared_text": "", "time": "2013-11-05 20:14:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151774174278155&id=252306033154", "link": null} +{"post_id": "10151773261503155", "text": "Fra poco intervengo su Rai Radio Uno per parlare di EUROPA.\nPrima torniamo PADRONI del nostro lavoro, della nostra moneta, della nostra agricoltura, del nostro ambiente e del nostro Futuro, prima torneremo a Crescere, Produrre, Sperare, Vivere bene.", "post_text": "Fra poco intervengo su Rai Radio Uno per parlare di EUROPA.\nPrima torniamo PADRONI del nostro lavoro, della nostra moneta, della nostra agricoltura, del nostro ambiente e del nostro Futuro, prima torneremo a Crescere, Produrre, Sperare, Vivere bene.", "shared_text": "", "time": "2013-11-05 09:20:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151773261503155&id=252306033154", "link": null} +{"post_id": "10151771491443155", "text": "Da me, in tavola, solo salsa di pomodoro POM\u00cc!\nMa \u00e8 possibile che se un'azienda pubblicizza il suo prodotto, dicendo che la materia prima viene solo dalle Regioni del Nord (Lombardia, Piemonte, Veneto, Emilia e Romagna) debba scattare l'accusa di RAZZISMO?\nRoba da matti.\nBrava POM\u00cc ITALIA, pi\u00f9 alcuni imbecilli vi insultano sulla vostra Pagina Facebook, pi\u00f9 avete il mio sostegno.", "post_text": "Da me, in tavola, solo salsa di pomodoro POM\u00cc!\nMa \u00e8 possibile che se un'azienda pubblicizza il suo prodotto, dicendo che la materia prima viene solo dalle Regioni del Nord (Lombardia, Piemonte, Veneto, Emilia e Romagna) debba scattare l'accusa di RAZZISMO?\nRoba da matti.\nBrava POM\u00cc ITALIA, pi\u00f9 alcuni imbecilli vi insultano sulla vostra Pagina Facebook, pi\u00f9 avete il mio sostegno.", "shared_text": "", "time": "2013-11-04 14:12:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151771491443155&id=252306033154", "link": null} +{"post_id": "10151768761703155", "text": "Anche il cielo pi\u00f9 grigio, alla fine torna al sereno. Buona domenica Amici, mai smettere di Crederci e di Combattere!", "post_text": "Anche il cielo pi\u00f9 grigio, alla fine torna al sereno. Buona domenica Amici, mai smettere di Crederci e di Combattere!", "shared_text": "", "time": "2013-11-03 11:33:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1002617_10151768760678155_132235716_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=nqD_s-NxD4QAQkUjMiMBblPbm_FP5dvJIWxsMAVSiYvyBOWeblDzVOPzw&_nc_ht=scontent-cdt1-1.xx&oh=3c0eaf937683377ba7a33191854d25dd&oe=5E794604", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151766650948155", "text": "Pisapia \u00e9 una vergogna vivente: in due anni e mezzo molte tasse in pi\u00f9 e molta sicurezza in meno. E quando non sa cosa fare, cio\u00e9 sempre, attacca la lega", "post_text": "Pisapia \u00e9 una vergogna vivente: in due anni e mezzo molte tasse in pi\u00f9 e molta sicurezza in meno. E quando non sa cosa fare, cio\u00e9 sempre, attacca la lega", "shared_text": "", "time": "2013-11-02 14:51:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151766650948155&id=252306033154", "link": null} +{"post_id": "10151765510903155", "text": "Stasera tagliatelle con formaggio fuso e funghi! Poi tiramisu e genep\u00ec... Augh.", "post_text": "Stasera tagliatelle con formaggio fuso e funghi! Poi tiramisu e genep\u00ec... Augh.", "shared_text": "", "time": "2013-11-01 23:26:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1450701_10151765509148155_2046678549_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=3z7bNxHebMQAQlmhEkDmoQeHxeeqIkBnUL0ObdlAX0wljjdGomFf4JHbA&_nc_ht=scontent-cdt1-1.xx&oh=d8ef7852f9617117a6c492092b9f5796&oe=5E8A40AA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151762033523155", "text": "Sala piena di Fratelli a Ziano Piacentino! Avanti!", "post_text": "Sala piena di Fratelli a Ziano Piacentino! Avanti!", "shared_text": "", "time": "2013-10-31 23:28:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/993696_10151761852438155_364241594_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=sNbitUnz3SkAQl9zKYSFOhxBLs9dx1LA_6old_P3TJOczgcksyQ-Cnz4Q&_nc_ht=scontent-cdt1-1.xx&oh=31ebddbcff4edb0843b9d01b4bdf0d86&oe=5E48A552", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151761839493155", "text": "La CAMPAGNA lombarda-emiliana \u00e8 STUPENDA,", "post_text": "La CAMPAGNA lombarda-emiliana \u00e8 STUPENDA,", "shared_text": "", "time": "2013-10-31 21:37:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151761839493155&id=252306033154", "link": null} +{"post_id": "10151760998123155", "text": "Viale Lunigiana, Milano.\n9 lavavetri, 9 rompiballe ad un solo incrocio! Ma quello \"sveglione\" di Pisapia non pu\u00f2 mandare due Vigili?\nAspetto il giorno in cui queste \"preziose risorse\" andranno a RIPULIRE i vetri (e magari le case) delle Boldrini e delle Kyenge!", "post_text": "Viale Lunigiana, Milano.\n9 lavavetri, 9 rompiballe ad un solo incrocio! Ma quello \"sveglione\" di Pisapia non pu\u00f2 mandare due Vigili?\nAspetto il giorno in cui queste \"preziose risorse\" andranno a RIPULIRE i vetri (e magari le case) delle Boldrini e delle Kyenge!", "shared_text": "", "time": "2013-10-31 13:59:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1386000_10151760995138155_527337356_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=POZMjjITRAUAQlQAq8Wqt7CL2Kav3kE3MhSKJK5pKaE-Gpd3v1OWqWkrQ&_nc_ht=scontent-cdt1-1.xx&oh=dff216fc0aa855ca8a3819f4664677f9&oe=5E87C8D8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151760887713155", "text": "Fra poco in diretta su TG COM 24. Chi c'\u00e8 davanti alla tele?", "post_text": "Fra poco in diretta su TG COM 24. Chi c'\u00e8 davanti alla tele?", "shared_text": "", "time": "2013-10-31 12:54:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/969316_10151760887118155_1414394217_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=_SnDi4pLST4AQlaZhwl6DpGM54YF2RLVNAJPRqIqcKReMcO79Kbu03ReQ&_nc_ht=scontent-cdt1-1.xx&oh=775694ba8ba74c4e8209100fe8460ed9&oe=5E8D005B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151760783373155", "text": "La Milano Gentile di Pisapia, fra topi, rom e abusivi di varia natura...", "post_text": "La Milano Gentile di Pisapia, fra topi, rom e abusivi di varia natura...", "shared_text": "", "time": "2013-10-31 11:21:46", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1382861_10151760782788155_1255429498_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=jivtcohV16kAQleEzPV1enFs4hyiV-q41e2Z0jPsvj9XbtU6HBvgC7QjQ&_nc_ht=scontent-cdt1-1.xx&oh=6b9bd77fa4665c60dc8580d69907234e&oe=5E4E216F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151759086488155", "text": "Decadenza di Berlusconi.\nSiti e giornali non parlano d'altro. Purtroppo.\nE voi cosa ne pensate?", "post_text": "Decadenza di Berlusconi.\nSiti e giornali non parlano d'altro. Purtroppo.\nE voi cosa ne pensate?", "shared_text": "", "time": "2013-10-30 17:46:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151759086488155&id=252306033154", "link": null} +{"post_id": "10151759033918155", "text": "Rainews 24: \"Enrico Letta oggi sta incontrando TANTE PERSONE, ma non vuole far sapere chi\".\nMa che cacchio di notizia \u00e8...???\nSecondo voi chi sta incontrando di misterioso?", "post_text": "Rainews 24: \"Enrico Letta oggi sta incontrando TANTE PERSONE, ma non vuole far sapere chi\".\nMa che cacchio di notizia \u00e8...???\nSecondo voi chi sta incontrando di misterioso?", "shared_text": "", "time": "2013-10-30 17:12:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151759033918155&id=252306033154", "link": null} +{"post_id": "10151758724653155", "text": "La ministra inutile KYENGE dice che il \"NEMICO\" non \u00e8 lo straniero ma l'evasore fiscale, e che le norme sulla CITTADINANZA vanno cambiate.\nMa la ministra sa a chi vanno le CASE POPOLARI?\nMa la ministra sa a chi vanno i contributi pubblici?\nQuasi pronto un REFERENDUM: Prima la Nostra Gente!", "post_text": "La ministra inutile KYENGE dice che il \"NEMICO\" non \u00e8 lo straniero ma l'evasore fiscale, e che le norme sulla CITTADINANZA vanno cambiate.\nMa la ministra sa a chi vanno le CASE POPOLARI?\nMa la ministra sa a chi vanno i contributi pubblici?\nQuasi pronto un REFERENDUM: Prima la Nostra Gente!", "shared_text": "", "time": "2013-10-30 14:00:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151758724653155&id=252306033154", "link": null} +{"post_id": "10151757137673155", "text": "Cena leggerina: Chili piccante con formaggio e birra! Viva la pancetta...", "post_text": "Cena leggerina: Chili piccante con formaggio e birra! Viva la pancetta...", "shared_text": "", "time": "2013-10-29 22:52:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/521698_10151757117403155_683219511_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=eoGCMG7mBCwAQkQNtgivAY_hcrcADFAiJmHD165Sz8-KBFedcfVGsR3DQ&_nc_ht=scontent-cdt1-1.xx&oh=9d9805111f0c182b95a8a4187fbdef39&oe=5E7FD74E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151753968968155", "text": "Come \u00e8 pulita la Nostra Milano... Qui siamo in via Moneta: troppo in periferia per interessare Pisapia?", "post_text": "Come \u00e8 pulita la Nostra Milano... Qui siamo in via Moneta: troppo in periferia per interessare Pisapia?", "shared_text": "", "time": "2013-10-28 15:12:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1381446_10151753967933155_1405791183_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=jS8cfeUpY-YAQlmks0WJPXnv8lGxyzTG2UaSg4cOSrPMFTW9qyHGFCTgw&_nc_ht=scontent-cdt1-1.xx&oh=264e53d91972cbe9a491fb2624de4fdd&oe=5E3E56A2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151751460918155", "text": "Una delle notizie pi\u00f9 \"importanti\" della domenica?\nBALOTELLI si \u00e8 tagliato i capelli... Machissenefregaaaaaaa!\nPovero calcio, e povera Italia.", "post_text": "Una delle notizie pi\u00f9 \"importanti\" della domenica?\nBALOTELLI si \u00e8 tagliato i capelli... Machissenefregaaaaaaa!\nPovero calcio, e povera Italia.", "shared_text": "", "time": "2013-10-27 14:39:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151751460918155&id=252306033154", "link": null} +{"post_id": "10151751406163155", "text": "RENZI e il PD a reti unificate, su ogni tiv\u00f9 e radio.\nDaranno lo stesso spazio al CONGRESSO della LEGA?", "post_text": "RENZI e il PD a reti unificate, su ogni tiv\u00f9 e radio.\nDaranno lo stesso spazio al CONGRESSO della LEGA?", "shared_text": "", "time": "2013-10-27 13:59:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151751406163155&id=252306033154", "link": null} +{"post_id": "10151751255453155", "text": "Tanta gente per ricordare CESARINO MONTI, grande Sindaco, cui la Comunit\u00e0 di Lazzate sta intitolando la Piazza del Comune. Prima la Nostra Gente, con CORAGGIO.", "post_text": "Tanta gente per ricordare CESARINO MONTI, grande Sindaco, cui la Comunit\u00e0 di Lazzate sta intitolando la Piazza del Comune. Prima la Nostra Gente, con CORAGGIO.", "shared_text": "", "time": "2013-10-27 11:50:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/14148_10151751253353155_1925579332_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=UF6dWYqCTEIAQmrvH60vjN9ycBurYkuyJ2v3rQ2HX8v_XB9O85qg3hJrg&_nc_ht=scontent-cdt1-1.xx&oh=5510b85a04c6c8d45955d8ba82c75ba1&oe=5E4327BD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151749889693155", "text": "Stand della Lega strapieno, cibo esaurito e sorrisi! Spazi degli altri partiti... vuoti. Banzai!", "post_text": "Stand della Lega strapieno, cibo esaurito e sorrisi! Spazi degli altri partiti... vuoti. Banzai!", "shared_text": "", "time": "2013-10-26 22:23:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1382795_10151749888298155_691052695_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=ln4usyHSWW4AQn1lL-aXzWLgreUV3uCjQ2DVVyZYAriG3VOW1LQEjeFgA&_nc_ht=scontent-cdt1-1.xx&oh=5139bea49a7aecf2ab5b7e41e787f8ef&oe=5E3E5014", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151749687528155", "text": "Donne Venete al lavoro, per cucinare polenta e polipo qui a Noventa Padovana! GRANDI", "post_text": "Donne Venete al lavoro, per cucinare polenta e polipo qui a Noventa Padovana! GRANDI", "shared_text": "", "time": "2013-10-26 20:40:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1385308_10151749684328155_1431674983_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=JamXhknK_PMAQl8q9xIBu8htbjyEFdv0VV2IJWTo5jKvfnSZ2ixVvB59g&_nc_ht=scontent-cdt1-1.xx&oh=fa394ffec50dfaf8383aa5fd887e0736&oe=5E8C9A52", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151749415348155", "text": "Dedico questo bellissimo Tramonto Milanese alle Amiche e agli Amici che vivono in TRENTINO: se domani voti Lega, non sbagli!", "post_text": "Dedico questo bellissimo Tramonto Milanese alle Amiche e agli Amici che vivono in TRENTINO: se domani voti Lega, non sbagli!", "shared_text": "", "time": "2013-10-26 18:10:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1382360_10151749413933155_2074760496_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=pAB2wtgsRwMAQm05ENOzmTv2mXhcXQlg1ap8yB2yfTm7_Zw5K9giefqEQ&_nc_ht=scontent-cdt1-1.xx&oh=3d8e3b596ec702064ad974be31fcd948&oe=5E484CBB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151746845613155", "text": "Un pensiero e un grande GRAZIE a Piero Mazzarella e a Zuzzurro, DUE GRANDI del Teatro e del Sorriso.\nDue Grandi non abbastanza apprezzati e valorizzati dalla Tiv\u00f9 pubblica, forse perch\u00e8 non abbastanza \"romani\"...\nPortate un SORRISO oltre questo CIELO GRIGIO!", "post_text": "Un pensiero e un grande GRAZIE a Piero Mazzarella e a Zuzzurro, DUE GRANDI del Teatro e del Sorriso.\nDue Grandi non abbastanza apprezzati e valorizzati dalla Tiv\u00f9 pubblica, forse perch\u00e8 non abbastanza \"romani\"...\nPortate un SORRISO oltre questo CIELO GRIGIO!", "shared_text": "", "time": "2013-10-25 14:56:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151746845613155&id=252306033154", "link": null} +{"post_id": "10151746753138155", "text": "NAPOLITANO?\nCome \"presidente\", forse \u00e8 buono per il Congo.", "post_text": "NAPOLITANO?\nCome \"presidente\", forse \u00e8 buono per il Congo.", "shared_text": "", "time": "2013-10-25 13:31:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151746753138155&id=252306033154", "link": null} +{"post_id": "10151745618033155", "text": "Stasera cozze (2 kili 6 euro) e Vermentino di Sardegna (4 euro). Poca spesa, tanta resa!", "post_text": "Stasera cozze (2 kili 6 euro) e Vermentino di Sardegna (4 euro). Poca spesa, tanta resa!", "shared_text": "", "time": "2013-10-24 21:57:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1377126_10151745616338155_319704957_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=ow8ac2MsZXgAQmBYZWUH1RvNgh7dkJS4LuuLnko_V461JI5cVv0R4cChA&_nc_ht=scontent-cdt1-1.xx&oh=3c3618953b79e6b4aef99f979a7a04f3&oe=5E7A04B1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151744818013155", "text": "Anni fa a Strasburgo queste Bandiere rappresentavano degli Stati Sovrani, oggi rappresentano i Nuovi Schiavi di banche, finanza ed Euroburocrati. Combattere il Mostro, SI PU\u00d2!", "post_text": "Anni fa a Strasburgo queste Bandiere rappresentavano degli Stati Sovrani, oggi rappresentano i Nuovi Schiavi di banche, finanza ed Euroburocrati. Combattere il Mostro, SI PU\u00d2!", "shared_text": "", "time": "2013-10-24 12:28:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1394266_10151744816693155_573763599_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=s8kM3o6ZcSEAQm9K_5bkEd1QEhbrJqIMiKjqwXbgKt3qzVWv73qqLWoXw&_nc_ht=scontent-cdt1-1.xx&oh=8e989bc1f4f4ee2580f72cc43716f6ad&oe=5E881576", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151743249003155", "text": "Oltre 200 COMUNI LOMBARDI in Movimento!\nWWW.ROMPIAMOILPATTO.ORG cresce... Tu ci sei?\nROMPIAMOILPATTO.ORG\nRompiamoIlPatto.org", "post_text": "Oltre 200 COMUNI LOMBARDI in Movimento!\nWWW.ROMPIAMOILPATTO.ORG cresce... Tu ci sei?", "shared_text": "ROMPIAMOILPATTO.ORG\nRompiamoIlPatto.org", "time": "2013-10-23 16:05:51", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQD2iT4mqk8weKan&w=476&h=249&url=http%3A%2F%2Fwww.rompiamoilpatto.org%2Fdocs_file%2Fslideshow_lavoratori.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQDC2_-29sYy4zSl", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151743249003155&id=252306033154", "link": "http://WWW.ROMPIAMOILPATTO.ORG/?fbclid=IwAR39FVWN57NAvhXJGi_rll9p8gMXZ-rGeMsMeXXwgcSZ9ftUT78Sf_Bba4c"} +{"post_id": "10151743230153155", "text": "Leggere gli articoli di PIERO OSTELLINO \u00e8 salvifico!\nPer fortuna, qualche Giornalista esiste ancora.", "post_text": "Leggere gli articoli di PIERO OSTELLINO \u00e8 salvifico!\nPer fortuna, qualche Giornalista esiste ancora.", "shared_text": "", "time": "2013-10-23 15:48:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151743230153155&id=252306033154", "link": null} +{"post_id": "10151741713548155", "text": "Stasera, ahim\u00e8, Milan - Barcellona...\nQuanto finisce secondo voi?", "post_text": "Stasera, ahim\u00e8, Milan - Barcellona...\nQuanto finisce secondo voi?", "shared_text": "", "time": "2013-10-22 19:04:54", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151741713548155&id=252306033154", "link": null} +{"post_id": "10151741136853155", "text": "Altri 200 CLANDESTINI, da mantenere, sbarcati in Sicilia.\nClandestini, non MIGRANTI.\nRicominciamo a usare le GIUSTE PAROLE, almeno Noi!", "post_text": "Altri 200 CLANDESTINI, da mantenere, sbarcati in Sicilia.\nClandestini, non MIGRANTI.\nRicominciamo a usare le GIUSTE PAROLE, almeno Noi!", "shared_text": "", "time": "2013-10-22 10:06:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151741136853155&id=252306033154", "link": null} +{"post_id": "10151739899943155", "text": "Maxi RISSA fra IMMIGRATI nel carcere di Bologna.\nTranquilli, fra poco queste RISORSE saranno liberate dal Governo dell'Indulto, e si picchieranno fuori...", "post_text": "Maxi RISSA fra IMMIGRATI nel carcere di Bologna.\nTranquilli, fra poco queste RISORSE saranno liberate dal Governo dell'Indulto, e si picchieranno fuori...", "shared_text": "", "time": "2013-10-21 18:41:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151739899943155&id=252306033154", "link": null} +{"post_id": "10151739614623155", "text": "Per la RAI esiste solo Roma... A rischio migliaia di posti di Lavoro al Nord: Uniti si pu\u00f2 Vincere!", "post_text": "Per la RAI esiste solo Roma... A rischio migliaia di posti di Lavoro al Nord: Uniti si pu\u00f2 Vincere!", "shared_text": "", "time": "2013-10-21 12:57:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1375974_10151739613233155_1909093428_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=6CrrJTPhJgcAQnZhaVFnX9Fkui8kChNMtQk9bMt2NOZTp6Ti7H175M_nw&_nc_ht=scontent-cdt1-1.xx&oh=044a45575ee7628ac4ab0fcba0d1315e&oe=5E8470D3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151739519848155", "text": "\"Abbiamo perso la consapevolezza dell'ISTANTE che stiamo VIVENDO\". Davide Van de Sfroos", "post_text": "\"Abbiamo perso la consapevolezza dell'ISTANTE che stiamo VIVENDO\". Davide Van de Sfroos", "shared_text": "", "time": "2013-10-21 10:56:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1375873_10151739518138155_1302346901_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=ZgT2QQS1S5sAQltsBARvLLF6-_6za7UaRpWBk8dRS_GESGfMCZhYg4Zyg&_nc_ht=scontent-cdt1-1.xx&oh=ae23c231ae1a7ee407060181c86cdf31&oe=5E89D7C1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151735547218155", "text": "La sciura KYENGE dice che riceve delle letterine affettuose da migliaia di bambini.\nSperiamo che alla loro giovane et\u00e0 non abbiamo gi\u00e0 imparato troppe PAROLACCE...", "post_text": "La sciura KYENGE dice che riceve delle letterine affettuose da migliaia di bambini.\nSperiamo che alla loro giovane et\u00e0 non abbiamo gi\u00e0 imparato troppe PAROLACCE...", "shared_text": "", "time": "2013-10-19 16:36:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151735547218155&id=252306033154", "link": null} +{"post_id": "10151735412003155", "text": "Cediamo la Rai alla Repubblica del Congo! Basta con mega-stipendi, programmi inguardabili e giornalisti faziosi. Luned\u00ec ti aspettiamo, gi\u00f9 le mani da Milano!", "post_text": "Cediamo la Rai alla Repubblica del Congo! Basta con mega-stipendi, programmi inguardabili e giornalisti faziosi. Luned\u00ec ti aspettiamo, gi\u00f9 le mani da Milano!", "shared_text": "", "time": "2013-10-19 14:40:23", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1377528_10151735411933155_116022599_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=u6OBa-p8540AQm_gmIMv7GtqOW_qoyj8Hqvq23fH8qCBQtTOAArMUOxuA&_nc_ht=scontent-cdt1-1.xx&oh=ec4be67ba396f04cfb8aa950e887b65f&oe=5E48C685", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151733710503155", "text": "Incredibile... per SACCONI, del PDL, gli sprechi italiani sono i piccoli ospedali e le universit\u00e0 del Nord. Ma vergognatiiiiiii!!!", "post_text": "Incredibile... per SACCONI, del PDL, gli sprechi italiani sono i piccoli ospedali e le universit\u00e0 del Nord. Ma vergognatiiiiiii!!!", "shared_text": "", "time": "2013-10-18 22:23:18", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151733710503155&id=252306033154", "link": null} +{"post_id": "10151733384263155", "text": "Uno Stato dove politici e giornalisti discutono se la Pascale sia LESBICA o no, \u00e8 uno Stato di M...A", "post_text": "Uno Stato dove politici e giornalisti discutono se la Pascale sia LESBICA o no, \u00e8 uno Stato di M...A", "shared_text": "", "time": "2013-10-18 18:40:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151733384263155&id=252306033154", "link": null} +{"post_id": "10151733203583155", "text": "Posso suggerirvi un Sito con le Palle?\nWWW.ROMPIAMOILPATTO.ORG\nMi piaceeeeeeeee!\nFate girare il Sito, cos\u00ec a qualcuno girano le balle...\nROMPIAMOILPATTO.ORG\nRompiamoilpatto.org - Amministratori uniti in difesa dei cittadini", "post_text": "Posso suggerirvi un Sito con le Palle?\nWWW.ROMPIAMOILPATTO.ORG\nMi piaceeeeeeeee!\nFate girare il Sito, cos\u00ec a qualcuno girano le balle...", "shared_text": "ROMPIAMOILPATTO.ORG\nRompiamoilpatto.org - Amministratori uniti in difesa dei cittadini", "time": "2013-10-18 16:23:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151733203583155&id=252306033154", "link": "http://WWW.ROMPIAMOILPATTO.ORG/?fbclid=IwAR060sIggn3YtPi2TNOUSes7r8Rkmgsf62sWACntcEmvbmQewasKzjPWQ5I"} +{"post_id": "10151732771763155", "text": "Buon venerd\u00ec Amici, MI PIACE il venerd\u00ec!\nFra poco sono a CANALE 5: prima la Nostra Gente!", "post_text": "Buon venerd\u00ec Amici, MI PIACE il venerd\u00ec!\nFra poco sono a CANALE 5: prima la Nostra Gente!", "shared_text": "", "time": "2013-10-18 09:48:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151732771763155&id=252306033154", "link": null} +{"post_id": "10151731425503155", "text": "Vi piace? Secondo voi riusciamo ad arrivare almeno a 1000 condivisioni?", "post_text": "Vi piace? Secondo voi riusciamo ad arrivare almeno a 1000 condivisioni?", "shared_text": "", "time": "2013-10-17 16:55:36", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/883133_10151731425358155_740960344_o.png.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=SoPvZ3lm-eAAQlGaAsd1MJJncum2_TwAKyjIXqoTKHY9P_B18X8KWYEog&_nc_ht=scontent-cdt1-1.xx&oh=5c7c1975255e4d35127547ea00160874&oe=5E412F82", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151731054428155", "text": "Si vota in Commissione a Bruxelles per IMPORRE che sulle ETICHETTE sia scritto chiaramente da DOVE arriva un prodotto. Orgogliosamente Lega, da sempre a DIFESA del lavoro della nostra gente.", "post_text": "Si vota in Commissione a Bruxelles per IMPORRE che sulle ETICHETTE sia scritto chiaramente da DOVE arriva un prodotto. Orgogliosamente Lega, da sempre a DIFESA del lavoro della nostra gente.", "shared_text": "", "time": "2013-10-17 11:33:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1379287_10151731050418155_1317810866_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=6SVrmTfUP5UAQnr4iKP_RvMy57d8fpluxbjg1cEjDF41bLV99Nba5YuXQ&_nc_ht=scontent-cdt1-1.xx&oh=32baec0eec9eb88a9afd3cada66b4e09&oe=5E85ED4F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151730815028155", "text": "Si va a Combattere in Europa! Buon gioved\u00ec Amici", "post_text": "Si va a Combattere in Europa! Buon gioved\u00ec Amici", "shared_text": "", "time": "2013-10-17 06:28:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1382260_10151730814358155_283739933_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=1bol89gl2gUAQk-dTqelJkG1_Gnq26qzQpIXk7jQk3pwD-ewMKlylqsyQ&_nc_ht=scontent-cdt1-1.xx&oh=15238af6427b9487eb33cf228664453b&oe=5E8BC953", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151729599978155", "text": "La Bella Squadra della Lega Nord per il Trentino: all'attacco!", "post_text": "La Bella Squadra della Lega Nord per il Trentino: all'attacco!", "shared_text": "", "time": "2013-10-16 15:36:34", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1377287_10151729599278155_183603561_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=a5Lsw7yXqVoAQmCCY-PyYEShnPSF5xxNjY_0BXNO7hCSjjYLbvDsXWPOg&_nc_ht=scontent-cdt1-1.xx&oh=c76e85340d3498bd10dfd9f5d4b4f755&oe=5E7C2CCB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151729222233155", "text": "Che il Vento pulito dell'Adamello ripulisca la vostra giornata, Amici!", "post_text": "Che il Vento pulito dell'Adamello ripulisca la vostra giornata, Amici!", "shared_text": "", "time": "2013-10-16 09:54:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1379807_10151729221668155_1007576204_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=5lWC8WggJvgAQnSUiOqaNI1MY4de8e7VvNAlJ7dsn4NFo4zHaCaBaenlg&_nc_ht=scontent-cdt1-1.xx&oh=01b8bd1b24528935b3094195398ab9ff&oe=5E4EEF29", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151728629673155", "text": "Una cena fra Amici, una grappa, due passi nel silenzio, l'acqua del fiume, la luna dietro le nuvole, e domani un altro Giorno. Niente di pi\u00f9. Notte serena Amici.", "post_text": "Una cena fra Amici, una grappa, due passi nel silenzio, l'acqua del fiume, la luna dietro le nuvole, e domani un altro Giorno. Niente di pi\u00f9. Notte serena Amici.", "shared_text": "", "time": "2013-10-16 00:45:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1392093_10151728628118155_555384340_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=feV32miLPYAAQl_eZaZ_W325DiL_DDG3a8FAAkVSSGbn89M3tfCK5WeuA&_nc_ht=scontent-cdt1-1.xx&oh=5520928f74adef683990e965a990df36&oe=5E812C9C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151728005478155", "text": "Divisi da un confine, uniti dal Valore", "post_text": "Divisi da un confine, uniti dal Valore", "shared_text": "", "time": "2013-10-15 18:05:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/994619_10151728004693155_903413524_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=Pq6YNgcftLwAQleexf1MYWtmf71lKA-ej4p5edzQhIntp8sNOz0wu41IA&_nc_ht=scontent-cdt1-1.xx&oh=e65eb41efe220e2f33bbb7acea4f2518&oe=5E4427F7", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151727960433155", "text": "Da buon Militante, ADESIVI sempre in tasca!", "post_text": "Da buon Militante, ADESIVI sempre in tasca!", "shared_text": "", "time": "2013-10-15 17:31:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1376593_10151727960073155_883788216_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=iGf1VoFPlcQAQkJHSiwDFogTnFKBN3Gy8MDRwwZ0Vx8ThLHHOC4ceBzYg&_nc_ht=scontent-cdt1-1.xx&oh=7a62081b4f2b57aeaf2755af3d8e98ad&oe=5E3F24AF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151727849303155", "text": "I Miei Boschi, la Mia Val Rendena, il Mio Trentino. Arrivo!", "post_text": "I Miei Boschi, la Mia Val Rendena, il Mio Trentino. Arrivo!", "shared_text": "", "time": "2013-10-15 16:06:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1381746_10151727848898155_736688642_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=SI7UNWHH4pQAQnRFL2M28ORkjm0zolp2O20C8IrUFFHGn9O_byus7AYcA&_nc_ht=scontent-cdt1-1.xx&oh=84968291711f0371cdefb01359a84c6a&oe=5E7F9B6C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151727540088155", "text": "Sopralluogo a casa della signora Giulia. Invalida, in carrozzina, vive a Milano nelle case popolari al secondo piano, senza ascensore o montascale... Istituzioni, sveglia!!!", "post_text": "Sopralluogo a casa della signora Giulia. Invalida, in carrozzina, vive a Milano nelle case popolari al secondo piano, senza ascensore o montascale... Istituzioni, sveglia!!!", "shared_text": "", "time": "2013-10-15 12:03:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1384324_10151727538998155_1345410624_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=KIdF-os1JEgAQkdWoJ1ZlrOCchKCLPDGdPiYEGAqys4sQIzUizd0YdgMw&_nc_ht=scontent-cdt1-1.xx&oh=a38f6950c0200e38a5301c5f2b17280d&oe=5E4F3231", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151726721083155", "text": "Notte serena agli Amici che non mollano!\n\"Troverai pi\u00f9 nei BOSCHI che nei libri. Gli alberi e le rocce ti insegneranno cose che nessun MAESTRO ti dir\u00e0\".\nSan Bernardo di Chiaravalle", "post_text": "Notte serena agli Amici che non mollano!\n\"Troverai pi\u00f9 nei BOSCHI che nei libri. Gli alberi e le rocce ti insegneranno cose che nessun MAESTRO ti dir\u00e0\".\nSan Bernardo di Chiaravalle", "shared_text": "", "time": "2013-10-15 00:43:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151726721083155&id=252306033154", "link": null} +{"post_id": "10151725831493155", "text": "I veri amici dei grillini?\nNon gli italiani ma i clandesitini", "post_text": "I veri amici dei grillini?\nNon gli italiani ma i clandesitini", "shared_text": "", "time": "2013-10-14 15:52:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/p320x320/1244430_10151725831438155_2128542964_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=Ry-gwxrtpF8AQm1jXni8p4pd2P1F7_OuyNSmJh7yWavJocFDTpqnWBFeg&_nc_ht=scontent-cdt1-1.xx&oh=a58a4822be90a7bf92ac55c06d45a178&oe=5E4213E1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151724040063155", "text": "Squadra padana vincente per la nuova Sezione di Casalbuttano!", "post_text": "Squadra padana vincente per la nuova Sezione di Casalbuttano!", "shared_text": "", "time": "2013-10-13 18:01:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1379767_10151724039168155_1724489802_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=LpkZJnjMvBwAQmRHpHFBNb0Op90j7mTDJuVbxxvRTGjSuQvZ-ki4Kwuew&_nc_ht=scontent-cdt1-1.xx&oh=e683781236e297d262f1401ba270ae42&oe=5E84E855", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151723643758155", "text": "Super BRUNCH al KIKI di piazza Minniti, con bolliti, bue grasso, tonno, riso-patate e cozze. Poca spesa, tanta resa!", "post_text": "Super BRUNCH al KIKI di piazza Minniti, con bolliti, bue grasso, tonno, riso-patate e cozze. Poca spesa, tanta resa!", "shared_text": "", "time": "2013-10-13 13:31:45", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1382809_10151723641443155_1285223148_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=fZ2bCgkm5cYAQkckw5ZiV0x94zxjtOzjDFzwCpkhyao8PedWG5iY-OhWQ&_nc_ht=scontent-cdt1-1.xx&oh=4202a98afee196b482048d794937225d&oe=5E8B9C21", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151722295963155", "text": "Con la Lega, anche la SARDEGNA c'\u00e8!", "post_text": "Con la Lega, anche la SARDEGNA c'\u00e8!", "shared_text": "", "time": "2013-10-12 18:19:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1377021_10151722295533155_1341722428_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=dN2eMjOoSG0AQlNed0oQUt8mV_vQToVBAHijEE5kgGLVPaDacWLucIeTQ&_nc_ht=scontent-cdt1-1.xx&oh=85d09256df30973e3bbd33773d9d6cb1&oe=5E476901", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151722281523155", "text": "Razzisti, egoisti, brutti e cattivi?\nNo! Gente perbene, che vuole VIVERE TRANQUILLA nelle sue citt\u00e0.", "post_text": "Razzisti, egoisti, brutti e cattivi?\nNo! Gente perbene, che vuole VIVERE TRANQUILLA nelle sue citt\u00e0.", "shared_text": "", "time": "2013-10-12 18:07:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1375136_10151722280713155_952549962_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=wEehNoIKBvcAQksVyzw5Apc5KmRxb-V6llFXqI_xppx3WrRTPRT7i6ehA&_nc_ht=scontent-cdt1-1.xx&oh=e74ed337fed435c02ba04c41ee5fece2&oe=5E426A1A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151722268008155", "text": "Comunit\u00e0 di Idee e di Lotta!", "post_text": "Comunit\u00e0 di Idee e di Lotta!", "shared_text": "", "time": "2013-10-12 17:57:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1395914_10151722267683155_952553844_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=e5V0JKmarrkAQls3snYKxFwr7d_QfyA9yy3nL3DZqwC73bnHdP9iLDGEw&_nc_ht=scontent-cdt1-1.xx&oh=d85fb0f978bd15dc15997f093a3aaf5a&oe=5E892187", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151722237308155", "text": "A Torino si parla di Legalit\u00e0 e Libert\u00e0! Chiss\u00e0 se giornali e tiv\u00f9 ne parleranno...", "post_text": "A Torino si parla di Legalit\u00e0 e Libert\u00e0! Chiss\u00e0 se giornali e tiv\u00f9 ne parleranno...", "shared_text": "", "time": "2013-10-12 17:38:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1379309_10151722236378155_354810918_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=YrZbbs7NlDkAQlVvHDzTb6RBYImxqRCc1BUh86aWBXUzBmvjefZT4UkLw&_nc_ht=scontent-cdt1-1.xx&oh=8cb034f9acc387b80faaa3e4db7818b4&oe=5E812D50", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151722206513155", "text": "Fratelli EMILIANI, presenti!", "post_text": "Fratelli EMILIANI, presenti!", "shared_text": "", "time": "2013-10-12 17:15:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1377550_10151722206208155_543971653_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=uh2qj2usyeYAQksIGrENVKXhwp2SgCz06kcSRgBuLnIr5By3v6hPUgR0g&_nc_ht=scontent-cdt1-1.xx&oh=a295e8d083554a48c221870fcdc7e4f4&oe=5E8579A8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151722195183155", "text": "Torino oggi \u00e8 LEGHISTAAAA!", "post_text": "Torino oggi \u00e8 LEGHISTAAAA!", "shared_text": "", "time": "2013-10-12 17:05:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1186164_10151722194753155_1714870984_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=WRMHyyjPbzkAQnFY45PeZGFQqgfdFEot-8liiQFBTTZh0oHExgI5uQL4w&_nc_ht=scontent-cdt1-1.xx&oh=79b385ce53b9831f3c1b59ff2f484e97&oe=5E7BB112", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151720933178155", "text": "Che squadra leghista ad Albenga! Che centro storico stupendo, e che Sindaca in gamba. Cos\u00ec la Lega vince: poche parole e tanti fatti!", "post_text": "Che squadra leghista ad Albenga! Che centro storico stupendo, e che Sindaca in gamba. Cos\u00ec la Lega vince: poche parole e tanti fatti!", "shared_text": "", "time": "2013-10-11 21:19:28", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1375688_10151720924978155_493303209_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=V5lsq1VktZ0AQkZQQCX3uI_Uqd7YyQH_-xhdq59wAzvdQBkpzb2lID0Ew&_nc_ht=scontent-cdt1-1.xx&oh=5789fc4ca34d2161331c68282cba98e7&oe=5E4F8C5B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151719183178155", "text": "RENZI al TgCoreadelNord, cio\u00e8 al Tg3, dice che la legge Bossi-Fini \u00e8 servita ad alimentare le paure della Lega.\nQuesto PI\u00d9 CHIACCHIERA e MENO MI PIACE.", "post_text": "RENZI al TgCoreadelNord, cio\u00e8 al Tg3, dice che la legge Bossi-Fini \u00e8 servita ad alimentare le paure della Lega.\nQuesto PI\u00d9 CHIACCHIERA e MENO MI PIACE.", "shared_text": "", "time": "2013-10-10 19:19:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151719183178155&id=252306033154", "link": null} +{"post_id": "10151719111973155", "text": "Ragazzi arriviamo almeno a 1000 condivisioni?\nVi aspetto Sabato per la manifestazione contro l'immigrazione clandestina a TORINO!", "post_text": "Ragazzi arriviamo almeno a 1000 condivisioni?\nVi aspetto Sabato per la manifestazione contro l'immigrazione clandestina a TORINO!", "shared_text": "", "time": "2013-10-10 18:18:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1385999_10151719111943155_1285166487_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=GggczFTrZVYAQk2LBiC6cv35tfI6VeMeCLoAmwfz_EEYZuSzhOBdQNJVg&_nc_ht=scontent-cdt1-1.xx&oh=6cc5280e703fbd8c185a710b2a5bc3a4&oe=5E404FFE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151716006838155", "text": "Buon viaggio fratello padano Beppe Vezzoli, colonna della Sezione di Adro. La tua Battaglia sar\u00e0 la nostra Battaglia, aiutaci dall'Alto", "post_text": "Buon viaggio fratello padano Beppe Vezzoli, colonna della Sezione di Adro. La tua Battaglia sar\u00e0 la nostra Battaglia, aiutaci dall'Alto", "shared_text": "", "time": "2013-10-08 21:43:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151716006838155&id=252306033154", "link": null} +{"post_id": "10151715444628155", "text": "Rapine, STUPRI, violenze, aggressioni col MACHETE.\nArrestati 25 immigrati sud-americani a Milano e dintorni.\nSi attende un pronto intervento del Duo Kyenge - Boldrini!\nPoverini, \u00e9 colpa degli italiani che non li hanno INTEGRATI...", "post_text": "Rapine, STUPRI, violenze, aggressioni col MACHETE.\nArrestati 25 immigrati sud-americani a Milano e dintorni.\nSi attende un pronto intervento del Duo Kyenge - Boldrini!\nPoverini, \u00e9 colpa degli italiani che non li hanno INTEGRATI...", "shared_text": "", "time": "2013-10-08 14:17:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151715444628155&id=252306033154", "link": null} +{"post_id": "10151714505828155", "text": "Amici, la Mirta in tuta (verde!) vi augura una Notte Serena.", "post_text": "Amici, la Mirta in tuta (verde!) vi augura una Notte Serena.", "shared_text": "", "time": "2013-10-07 22:31:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1377948_10151714505163155_1310214862_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=suz-pvVzlHoAQmSwqHB1zA1lYt2pR0RPPQssOHShTDcaiASb1Z4bKAHow&_nc_ht=scontent-cdt1-1.xx&oh=7cbf1e840a744bec0e922d5dd420d0a2&oe=5E87F33C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151710973503155", "text": "Grande gruppo leghista a Ceriano Laghetto! Avanti fratelli", "post_text": "Grande gruppo leghista a Ceriano Laghetto! Avanti fratelli", "shared_text": "", "time": "2013-10-06 00:04:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1379274_10151710972838155_609539187_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=qSUUwzl4jYsAQnl3DLkNtlqrqAI5q9S7_vSJIso7eKUpyNYJdnvtqn5Ew&_nc_ht=scontent-cdt1-1.xx&oh=71d4df678d303cf5411cccd0e9264ff3&oe=5E3EC691", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151710174648155", "text": "Scoperte in Italia 1 MILIONE di CASE FANTASMA.\nDove?\nIn SICILIA 176.000 immobili beccati, in CAMPANIA 170.000, in CALABRIA 143.000, in PUGLIA 100.000.\nChi l'avrebbe mai detto..... Che strano!\nViva l'Italia Una, Insivisibile e Fantasma.", "post_text": "Scoperte in Italia 1 MILIONE di CASE FANTASMA.\nDove?\nIn SICILIA 176.000 immobili beccati, in CAMPANIA 170.000, in CALABRIA 143.000, in PUGLIA 100.000.\nChi l'avrebbe mai detto..... Che strano!\nViva l'Italia Una, Insivisibile e Fantasma.", "shared_text": "", "time": "2013-10-05 13:54:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151710174648155&id=252306033154", "link": null} +{"post_id": "10151709010123155", "text": "Fra poco intervengo alla ZANZARA su Radio 24.\nVi saluto Cruciani o Parenzo??", "post_text": "Fra poco intervengo alla ZANZARA su Radio 24.\nVi saluto Cruciani o Parenzo??", "shared_text": "", "time": "2013-10-04 19:40:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151709010123155&id=252306033154", "link": null} +{"post_id": "10151708192028155", "text": "E Roma si MAGNA anche il Teatro alla Scala...\nPer la prima volta infatti, col Decreto Cultura approvato in Parlamento (Lega contraria), il SOVRINTENDENTE della Scala verr\u00e0 nominato dal Ministero, non pi\u00f9 dal Comune.\nINDIPENDENZA, via da questo Stato Ladro.", "post_text": "E Roma si MAGNA anche il Teatro alla Scala...\nPer la prima volta infatti, col Decreto Cultura approvato in Parlamento (Lega contraria), il SOVRINTENDENTE della Scala verr\u00e0 nominato dal Ministero, non pi\u00f9 dal Comune.\nINDIPENDENZA, via da questo Stato Ladro.", "shared_text": "", "time": "2013-10-04 11:01:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151708192028155&id=252306033154", "link": null} +{"post_id": "10151708124963155", "text": "La \"signora\" sindaco di LAMPEDUSA oggi ha trovato i colpevoli dei poveri morti in mare: \"La Lega Nord ha seminato un VIRUS di menzogna e ODIO\".\nCapisco la stanchezza, lo strazio e lo stress di questa \"signora\", ma UN BEL TACER non fu mai scritto!", "post_text": "La \"signora\" sindaco di LAMPEDUSA oggi ha trovato i colpevoli dei poveri morti in mare: \"La Lega Nord ha seminato un VIRUS di menzogna e ODIO\".\nCapisco la stanchezza, lo strazio e lo stress di questa \"signora\", ma UN BEL TACER non fu mai scritto!", "shared_text": "", "time": "2013-10-04 09:48:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151708124963155&id=252306033154", "link": null} +{"post_id": "10151706619243155", "text": "Il signor NAPOLITANO dice: \"Sono indispensabili dei PRESIDI adeguati lungo le COSTE da cui partono questi viaggi di disperazione e MORTE\".\nL'anziano Presidente (non mio) si \u00e8 SVEGLIATO, e d\u00e0 ragione a MARONI: pattugliamenti e controlli!\nAvr\u00e0 avvisato Letta, Alfano, Kyenge e Boldrini???", "post_text": "Il signor NAPOLITANO dice: \"Sono indispensabili dei PRESIDI adeguati lungo le COSTE da cui partono questi viaggi di disperazione e MORTE\".\nL'anziano Presidente (non mio) si \u00e8 SVEGLIATO, e d\u00e0 ragione a MARONI: pattugliamenti e controlli!\nAvr\u00e0 avvisato Letta, Alfano, Kyenge e Boldrini???", "shared_text": "", "time": "2013-10-03 15:13:57", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151706619243155&id=252306033154", "link": null} +{"post_id": "10151705482378155", "text": "Notte serena Amici.\nHo un dubbio: visto che Papa FRANCESCO ormai telefona a qualcuno tutti i giorni, non \u00e8 che il \"numero privato\", cui non ho risposto oggi, arrivava dal Vaticano..???", "post_text": "Notte serena Amici.\nHo un dubbio: visto che Papa FRANCESCO ormai telefona a qualcuno tutti i giorni, non \u00e8 che il \"numero privato\", cui non ho risposto oggi, arrivava dal Vaticano..???", "shared_text": "", "time": "2013-10-02 23:30:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151705482378155&id=252306033154", "link": null} +{"post_id": "10151705306368155", "text": "Stasera a casa, ma niente \"politica\" in tiv\u00f9...\nAnzi, mi guardo CHI L'HA VISTO. Sono il solo???", "post_text": "Stasera a casa, ma niente \"politica\" in tiv\u00f9...\nAnzi, mi guardo CHI L'HA VISTO. Sono il solo???", "shared_text": "", "time": "2013-10-02 21:19:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151705306368155&id=252306033154", "link": null} +{"post_id": "10151702655143155", "text": "Saluti \"romani\" e ora in taxi, si vola a Bruxelles. BASTA EURO, insieme SI PU\u00d2.", "post_text": "Saluti \"romani\" e ora in taxi, si vola a Bruxelles. BASTA EURO, insieme SI PU\u00d2.", "shared_text": "", "time": "2013-10-01 09:09:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/988721_10151702654088155_1395030097_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=Yw5ahznq3T4AQlHz1x2zHHsnKQkoJ8JMSBC_hxrXPvqwDuA_yclODUo7Q&_nc_ht=scontent-cdt1-1.xx&oh=44c41ab3ce4022472d6358e3353e4f31&oe=5E44AF74", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151702002823155", "text": "Porta a Porta.\nHo ascoltato a lungo i POLITICI IMPORTANTI in studio.\nHanno parlato, parlato, urlato, litigato, parlato.\nAlla fine, tardi, sono intervenuto.\n\"VESPA, la ringrazio, stasera ho avuto una conferma: l'unica via che al Nord ci rimane da seguire, \u00e8 l'INDIPENDENZA\".\nE poi ancora \"NAPOLITANO NON \u00c8 IL MIO PRESIDENTE\" e \"l'unica scelta che si pu\u00f2 salvare \u00e8 USCIRE DALL'EURO\".\nSconcerto in studio, spero approvazione a casa.\nNotte Amici.", "post_text": "Porta a Porta.\nHo ascoltato a lungo i POLITICI IMPORTANTI in studio.\nHanno parlato, parlato, urlato, litigato, parlato.\nAlla fine, tardi, sono intervenuto.\n\"VESPA, la ringrazio, stasera ho avuto una conferma: l'unica via che al Nord ci rimane da seguire, \u00e8 l'INDIPENDENZA\".\nE poi ancora \"NAPOLITANO NON \u00c8 IL MIO PRESIDENTE\" e \"l'unica scelta che si pu\u00f2 salvare \u00e8 USCIRE DALL'EURO\".\nSconcerto in studio, spero approvazione a casa.\nNotte Amici.", "shared_text": "", "time": "2013-09-30 23:08:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151702002823155&id=252306033154", "link": null} +{"post_id": "10151701801663155", "text": "Dietro le quinte di PORTA A PORTA, fra gli ospiti Brunetta, Demicheli e Mauro", "post_text": "Dietro le quinte di PORTA A PORTA, fra gli ospiti Brunetta, Demicheli e Mauro", "shared_text": "", "time": "2013-09-30 20:54:10", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1384307_10151701800888155_2123098435_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=zp2YjcvljBYAQlC9ZY58o4tcbR8hH7RIpnqfP9RxO3Iv5ZfU-VyH_cADw&_nc_ht=scontent-cdt1-1.xx&oh=136021b50da18e0d98038e8f743e6233&oe=5E41682B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151700995988155", "text": "Lo Stato Italiano AUMENTA ancora le tasse sulla Benzina.\nRegione Lombardia DIMINUISCE il prezzo della Benzina (fino a 37 centesimi al litro) per un milione di cittadini che abitano nelle province di confine, e benzinai e consumatori RINGRAZIANO pubblicamente.\nPROMESSO in campagna elettorale, FATTO.", "post_text": "Lo Stato Italiano AUMENTA ancora le tasse sulla Benzina.\nRegione Lombardia DIMINUISCE il prezzo della Benzina (fino a 37 centesimi al litro) per un milione di cittadini che abitano nelle province di confine, e benzinai e consumatori RINGRAZIANO pubblicamente.\nPROMESSO in campagna elettorale, FATTO.", "shared_text": "", "time": "2013-09-30 08:47:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151700995988155&id=252306033154", "link": null} +{"post_id": "10151699797508155", "text": "Biscione, Castello e ponte levatoio: il Coraggio e le Vittorie di ieri ci dicono che POSSIAMO VINCERE e liberarci anche domani!", "post_text": "Biscione, Castello e ponte levatoio: il Coraggio e le Vittorie di ieri ci dicono che POSSIAMO VINCERE e liberarci anche domani!", "shared_text": "", "time": "2013-09-29 19:48:39", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/944588_10151699796453155_138512836_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=ASuGk7ZR60gAQn2G2Ax_dvdgEuhPCetywMv1oQ0tZTqNm3zB10ydTnKuQ&_nc_ht=scontent-cdt1-1.xx&oh=0e04b498455dbbaead04be8541899e25&oe=5E8B7F3B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151699707268155", "text": "Stasera PASTA tradizionale con gli amici!", "post_text": "Stasera PASTA tradizionale con gli amici!", "shared_text": "", "time": "2013-09-29 18:36:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1239846_10151699706643155_1509305829_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=ch8N2Q20D7EAQnxFfVFBKvdMeNtGQ6XLeVGYBuEfFJECEJKCw446xlDIA&_nc_ht=scontent-cdt1-1.xx&oh=fe8a63f2c2dc9c9cba329047fd5a07f9&oe=5E8C4898", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151699431968155", "text": "Pomeriggio a TEATRO.\nSenza Cultura, insieme al Lavoro, non c'\u00e8 Futuro.", "post_text": "Pomeriggio a TEATRO.\nSenza Cultura, insieme al Lavoro, non c'\u00e8 Futuro.", "shared_text": "", "time": "2013-09-29 15:40:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151699431968155&id=252306033154", "link": null} +{"post_id": "10151698473113155", "text": "Pi\u00f9 di 500 PERSONE stasera con la Lega a Vittorio Veneto! E un gran gruppo di Donne a lavorare nelle cucine, modello tradizionale BARILLA. Notte serena Amici.", "post_text": "Pi\u00f9 di 500 PERSONE stasera con la Lega a Vittorio Veneto! E un gran gruppo di Donne a lavorare nelle cucine, modello tradizionale BARILLA. Notte serena Amici.", "shared_text": "", "time": "2013-09-29 00:21:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1238258_10151698471873155_95295603_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=CnDI_uhjl2QAQkdK1knEHUwYnrr2wHe47i1nTo_cFSiChzw8nr6dP7O2g&_nc_ht=scontent-cdt1-1.xx&oh=813a9513dd119ac8cb97cbfc125b2ecf&oe=5E8A0127", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151697511638155", "text": "Su Rai Uno c'\u00e8 Giuliano AMATO che parla di Europa.\nSu Rai YoYo c'\u00e8 la PEPPA PIG che gioca.\nNessun dubbio: pi\u00f9 Educativa, seria e utile la PEPPA PIG!", "post_text": "Su Rai Uno c'\u00e8 Giuliano AMATO che parla di Europa.\nSu Rai YoYo c'\u00e8 la PEPPA PIG che gioca.\nNessun dubbio: pi\u00f9 Educativa, seria e utile la PEPPA PIG!", "shared_text": "", "time": "2013-09-28 09:50:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151697511638155&id=252306033154", "link": null} +{"post_id": "10151696955048155", "text": "Notte serena Amici!\nPensando alla colazione di domani, con TRADIZIONALI biscotti del Mulino Bianco BARILLA!", "post_text": "Notte serena Amici!\nPensando alla colazione di domani, con TRADIZIONALI biscotti del Mulino Bianco BARILLA!", "shared_text": "", "time": "2013-09-28 00:42:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151696955048155&id=252306033154", "link": null} +{"post_id": "10151696711498155", "text": "Una \"signora\" di sinistra mi dice alla tiv\u00f9 \"poveri ROM, vengono trattati cos\u00ec male, lei parla di SGOMBERI e sicurezza perch\u00e8 ha la pancia piena... anzi, lei Salvini RUBA lo stipendio, e le esce MERDA dalla bocca\".\nPerbacco! Una Principessa!\nIdee chiare, rispettose, utili e approfondite.\nDomanda: ma perch\u00e8 chi AMA tanto i Rom, non se ne prende 5 o 6 in casa sua e se LI MANTIENE???", "post_text": "Una \"signora\" di sinistra mi dice alla tiv\u00f9 \"poveri ROM, vengono trattati cos\u00ec male, lei parla di SGOMBERI e sicurezza perch\u00e8 ha la pancia piena... anzi, lei Salvini RUBA lo stipendio, e le esce MERDA dalla bocca\".\nPerbacco! Una Principessa!\nIdee chiare, rispettose, utili e approfondite.\nDomanda: ma perch\u00e8 chi AMA tanto i Rom, non se ne prende 5 o 6 in casa sua e se LI MANTIENE???", "shared_text": "", "time": "2013-09-27 21:48:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151696711498155&id=252306033154", "link": null} +{"post_id": "10151696154638155", "text": "Ogni cittadino europeo ha il diritto di sapere DOVE e COME vengono confezionati i prodotti con cui viene a contatto. Lo fa il resto del mondo, perch\u00e9 l\u2019Europa non lo deve fare?\nYOUTUBE.COM\nIntervento di Matteo Salvini in Commissione IMCO sulla sicurezza dei prodotti", "post_text": "Ogni cittadino europeo ha il diritto di sapere DOVE e COME vengono confezionati i prodotti con cui viene a contatto. Lo fa il resto del mondo, perch\u00e9 l\u2019Europa non lo deve fare?", "shared_text": "YOUTUBE.COM\nIntervento di Matteo Salvini in Commissione IMCO sulla sicurezza dei prodotti", "time": "2013-09-27 15:09:00", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDnjJnk_D1tooTP&w=476&h=249&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FrzjPaeV3xxE%2Fhqdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&sx=0&sy=18&sw=480&sh=251&ext=jpg&_nc_hash=AQD2iNc6omzsfjg8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151696154638155&id=252306033154", "link": "https://www.youtube.com/watch?v=rzjPaeV3xxE&fbclid=IwAR1w-NzULSRJy9h2U41wSOeCXg8asquHo60GSkRrvATfrBXHOkCVGBu3lcQ"} +{"post_id": "10151694974523155", "text": "Per LETTA gli ultimi sviluppi politici sono stati una UMILIAZIONE PER L'ITALIA.\nPer me invece i Governi Monti e Letta, schiavi di Bruxelles, sono stati la vera UMILIAZIONE PER L'ITALIA.", "post_text": "Per LETTA gli ultimi sviluppi politici sono stati una UMILIAZIONE PER L'ITALIA.\nPer me invece i Governi Monti e Letta, schiavi di Bruxelles, sono stati la vera UMILIAZIONE PER L'ITALIA.", "shared_text": "", "time": "2013-09-26 19:54:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151694974523155&id=252306033154", "link": null} +{"post_id": "10151694928813155", "text": "Su Radio Popolare tal Mirco Rota, della FIOM CGIL Lombardia, ha dichiarato che \"oggi Salvini in Valcamonica ha guidato la protesta di un PICCOLO GRUPPO DI LAVORATORI per nascondere il fatto che la Regione Lombardoa non sta facendo niente per loro\".\nMa VERGOGNATI, sei un poveretto!!!!!\nCosa c'entra la Regione con le Acciaierie Riva???\nDai la sveglia a tuoi amici del PD e rispetta gli operai, compresi i tuoi iscritti incazzati, sciur Rota.\nSe sono questi i loro \"sindacalisti\", poveri lavoratori...", "post_text": "Su Radio Popolare tal Mirco Rota, della FIOM CGIL Lombardia, ha dichiarato che \"oggi Salvini in Valcamonica ha guidato la protesta di un PICCOLO GRUPPO DI LAVORATORI per nascondere il fatto che la Regione Lombardoa non sta facendo niente per loro\".\nMa VERGOGNATI, sei un poveretto!!!!!\nCosa c'entra la Regione con le Acciaierie Riva???\nDai la sveglia a tuoi amici del PD e rispetta gli operai, compresi i tuoi iscritti incazzati, sciur Rota.\nSe sono questi i loro \"sindacalisti\", poveri lavoratori...", "shared_text": "", "time": "2013-09-26 19:35:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151694928813155&id=252306033154", "link": null} +{"post_id": "10151694558553155", "text": "SEDUTI sulla Statale 42! A difesa del Lavoro dei Lombardi.", "post_text": "SEDUTI sulla Statale 42! A difesa del Lavoro dei Lombardi.", "shared_text": "", "time": "2013-09-26 15:50:51", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1380662_10151694557048155_1759749394_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=UI_BKYh_JVgAQnoxmAF9CfsT7fviOenmjJ0k3UKOVF3e84In2_Q9hQ_Lg&_nc_ht=scontent-cdt1-1.xx&oh=99a2b37da27ac7c2f7a693031910da97&oe=5E8847C4", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151694544453155", "text": "Con gli Operai, andiamo a BLOCCARE la Statale 42!", "post_text": "Con gli Operai, andiamo a BLOCCARE la Statale 42!", "shared_text": "", "time": "2013-09-26 15:37:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1375756_10151694543903155_1306999641_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=UT4KXyvWdrkAQkWwUVoYqT01CQMLGg2vfzIdfmssWUuHKnJgKKwDtETGA&_nc_ht=scontent-cdt1-1.xx&oh=6760844f8b800dc650615e92b805c4fe&oe=5E497D18", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151694517963155", "text": "Insieme agli Operai della Riva! Se serve, la Strada Statale \u00e8 poco distante...", "post_text": "Insieme agli Operai della Riva! Se serve, la Strada Statale \u00e8 poco distante...", "shared_text": "", "time": "2013-09-26 15:13:21", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/542231_10151694517283155_1847505310_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=x9HViBj1LEMAQktjzCQ8FQsQYMAy4QqWSVMrlPZ3PDpL70S92YMJNxymg&_nc_ht=scontent-cdt1-1.xx&oh=e949713cf7d36bce558a653582915f8e&oe=5E7E1C35", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151693487983155", "text": "Abbiati...Zapata...Allegri...Galliani...Chi cazzo buttiamo gi\u00f9 dalla torre?!", "post_text": "Abbiati...Zapata...Allegri...Galliani...Chi cazzo buttiamo gi\u00f9 dalla torre?!", "shared_text": "", "time": "2013-09-25 22:29:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151693487983155&id=252306033154", "link": null} +{"post_id": "10151692692813155", "text": "Lavoratori ATM Milano, all'attacco!", "post_text": "Lavoratori ATM Milano, all'attacco!", "shared_text": "", "time": "2013-09-25 11:42:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1235883_10151692692173155_203651748_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=pCZ7HxpfYzQAQlcXPc5sHVJuIZv1JFkYc55raeuLYU0HN5Ju0I-KMajHQ&_nc_ht=scontent-cdt1-1.xx&oh=b4d34547dce6da42696be7033b82daac&oe=5E886737", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151691454203155", "text": "Con Roberto Maroni, in Brianza, alla serata dedicata alla Onlus CANCRO PRIMO AIUTO, che ogni anno aiuta gratuitamente 20.000 malati Lombardi a curarsi e avere SPERANZA. Insieme SI PU\u00d2!", "post_text": "Con Roberto Maroni, in Brianza, alla serata dedicata alla Onlus CANCRO PRIMO AIUTO, che ogni anno aiuta gratuitamente 20.000 malati Lombardi a curarsi e avere SPERANZA. Insieme SI PU\u00d2!", "shared_text": "", "time": "2013-09-24 18:31:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1184803_10151691451653155_1733220440_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=1f8lvXRmpI8AQnRKvOzQ05OZGMCoOz4ussJs0ocIM00yG3e6RosfcSsBQ&_nc_ht=scontent-cdt1-1.xx&oh=26a0be2afeb5b10c5e03b36a86d37f41&oe=5E466EC1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151691128128155", "text": "Eh no, il vetro me lo lavo da solo cazzo!", "post_text": "Eh no, il vetro me lo lavo da solo cazzo!", "shared_text": "", "time": "2013-09-24 14:07:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1013811_10151691124003155_434252740_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=6wbU-ydNZkAAQlPQj9AcKH-ynjnntO8OINPyqL7vjldUQ1srm4Ux4PCdA&_nc_ht=scontent-cdt1-1.xx&oh=c7d086f81ff4bf8390c1ed6e0cbc4002&oe=5E4AF340", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151691018278155", "text": "Bimbi a spasso nel campo rom... Marted\u00ec a scuola? No, grazie", "post_text": "Bimbi a spasso nel campo rom... Marted\u00ec a scuola? No, grazie", "shared_text": "", "time": "2013-09-24 12:44:35", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1231652_10151691017693155_752970796_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=0LWgbMSNK6gAQkAXfd8N6_JkVqFvmCxO3eYktdk2Z8SpL6G2_Lwy84eNw&_nc_ht=scontent-cdt1-1.xx&oh=2276490dcaad5f1a4393f53bbe370ca6&oe=5E887D10", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151690997088155", "text": "Raccolta \"differenziata\", con tanto di fuoco, nel campo rom... E a noi fanno fare le Domeniche a Piedi!", "post_text": "Raccolta \"differenziata\", con tanto di fuoco, nel campo rom... E a noi fanno fare le Domeniche a Piedi!", "shared_text": "", "time": "2013-09-24 12:23:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/602938_10151690996523155_1383629329_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=m6DffsLCXc8AQniiVJsEFTjzL4U-AYo7EhnE4sgNUL-WGLzOn6X20ulqg&_nc_ht=scontent-cdt1-1.xx&oh=b4d3bff468a24772200cac0bc331f224&oe=5E41A451", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151690988288155", "text": "All'ingresso di un mega campo rom abusivo... Propriet\u00e0 privata!", "post_text": "All'ingresso di un mega campo rom abusivo... Propriet\u00e0 privata!", "shared_text": "", "time": "2013-09-24 12:13:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1240233_10151690987953155_144233231_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=_DL8DKnpC10AQngcnNOsIExi90qgrpbWujXjNsG9YLn-tdC6mWVN0bpWA&_nc_ht=scontent-cdt1-1.xx&oh=479f39484bded010528e686bd3ee0143&oe=5E409E82", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151689834623155", "text": "Stasera sar\u00f2 ospite di ICEBERG su Telelombardia, con Vittorio Feltri, Carmela Rozza e Licia Ronzulli.\nMa se preferite leggervi un buon libro, vi capisco!", "post_text": "Stasera sar\u00f2 ospite di ICEBERG su Telelombardia, con Vittorio Feltri, Carmela Rozza e Licia Ronzulli.\nMa se preferite leggervi un buon libro, vi capisco!", "shared_text": "", "time": "2013-09-23 20:11:24", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151689834623155&id=252306033154", "link": null} +{"post_id": "10151688196968155", "text": "Che gruppo a CHIUDUNO! Non ci ferma nessunoooooo", "post_text": "Che gruppo a CHIUDUNO! Non ci ferma nessunoooooo", "shared_text": "", "time": "2013-09-22 22:38:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/994598_10151688196193155_314927605_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=ZBaJGUzb9jYAQlYRvPg8DFdATd5A3ifgGT9OUh3kIIUA0LDNvs58Wh3Dw&_nc_ht=scontent-cdt1-1.xx&oh=d1f11b6de3d267163545095ce11e8790&oe=5E7B19FB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151688124323155", "text": "Tanta gente a Chiuduno! E per fortuna non sto guardando il Milan...", "post_text": "Tanta gente a Chiuduno! E per fortuna non sto guardando il Milan...", "shared_text": "", "time": "2013-09-22 21:56:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1236460_10151688122618155_924181037_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=p1kalhe6ZQUAQkL1m1X-Yvd3LbAgxkYIAOTL7AoAbBO1XEJC1G_9cFzHQ&_nc_ht=scontent-cdt1-1.xx&oh=8624632aec3902ca98d8cede390b0017&oe=5E4F80B2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151686511423155", "text": "Notte serena da Cappelletta di Noale! E chiss\u00e0 se quei FIGLI EROICAMENTE CADUTI oggi sarebbero orgogliosi di questa italietta...", "post_text": "Notte serena da Cappelletta di Noale! E chiss\u00e0 se quei FIGLI EROICAMENTE CADUTI oggi sarebbero orgogliosi di questa italietta...", "shared_text": "", "time": "2013-09-22 00:30:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1234693_10151686510468155_1045413108_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=UXBXhzeX0wYAQlMWnfty0-EFmgjRu41iZuJe0UPAzLSC1ZuJGP1jqtZCg&_nc_ht=scontent-cdt1-1.xx&oh=13a953c66361b965aa76d0a8e7514b91&oe=5E7952F6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151678184428155", "text": "Corriere della Sera, edizione Milano, lettera di un genitore.\n\"Mio figlio, ha 20 mesi, quest'anno dovrebbe andare al NIDO ma rischia di essere l'UNICO BIMBO ITALIANO in classe. Con lui 5 arabi, 4 romeni, 3 sudamericani, 3 indiani, 2 pachistani e un albanese. Il RAZZISMO non c'entra nulla, ma siamo combattuti\".\nSignora KYENGE, sarebbe questa la Tua Integrazione?", "post_text": "Corriere della Sera, edizione Milano, lettera di un genitore.\n\"Mio figlio, ha 20 mesi, quest'anno dovrebbe andare al NIDO ma rischia di essere l'UNICO BIMBO ITALIANO in classe. Con lui 5 arabi, 4 romeni, 3 sudamericani, 3 indiani, 2 pachistani e un albanese. Il RAZZISMO non c'entra nulla, ma siamo combattuti\".\nSignora KYENGE, sarebbe questa la Tua Integrazione?", "shared_text": "", "time": "2013-09-18 09:27:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151678184428155&id=252306033154", "link": null} +{"post_id": "10151675118548155", "text": "Adoro il PROFUMO e il calore della legna che brucia, e le STORIE che negli anni questo Fuoco ha sentito raccontare.", "post_text": "Adoro il PROFUMO e il calore della legna che brucia, e le STORIE che negli anni questo Fuoco ha sentito raccontare.", "shared_text": "", "time": "2013-09-16 20:42:59", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/563012_10151675117283155_1242514129_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=XU5q3NgxpaIAQl7sUXB_azvC2RAHBYm9rtNJqVK9EUDYzu8J4c8wq0_Rg&_nc_ht=scontent-cdt1-1.xx&oh=3d0a142d49bcebbbb65a11ef4ad1ee8f&oe=5E485223", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151673210233155", "text": "Coi Fratelli Leghisti sull'Alto Lago di Como!", "post_text": "Coi Fratelli Leghisti sull'Alto Lago di Como!", "shared_text": "", "time": "2013-09-15 19:43:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1185832_10151673209108155_701098538_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=TDKJn313MUEAQnUgbew-VKvwqqx4P8LSgUjrYh0Fx-eXGvqNonCRvucWg&_nc_ht=scontent-cdt1-1.xx&oh=89eed7d73ed938f5dddf1d5f4e40711f&oe=5E4A2AE6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151671252588155", "text": "Tramonto Ligure, dedicato a VOI e a chi non molla mai!", "post_text": "Tramonto Ligure, dedicato a VOI e a chi non molla mai!", "shared_text": "", "time": "2013-09-14 19:15:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1234148_10151671250973155_1042788253_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=skBwXtLo7zUAQk0BINuJO4TWNwFd0TisYHD7nBqLGTBpAl2b7do1k0b5Q&_nc_ht=scontent-cdt1-1.xx&oh=e953f2148c914b36ac14828ee6b1eab0&oe=5E50B581", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151670912238155", "text": "Mercato comunale di via Osoppo, Milano. Un'anziana cerca frutta e verdura, abbandonate per terra, fra le cassette vuote. Ma per Letta e Kyenge, bisogna AIUTARE gli \"ALTRI\"...", "post_text": "Mercato comunale di via Osoppo, Milano. Un'anziana cerca frutta e verdura, abbandonate per terra, fra le cassette vuote. Ma per Letta e Kyenge, bisogna AIUTARE gli \"ALTRI\"...", "shared_text": "", "time": "2013-09-14 15:21:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1175298_10151670909278155_2112659819_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=Cf-MSCurV-oAQnTe_C1zg3eo48huHp8mrL-eFbP2vyge16eTosGBUVwIQ&_nc_ht=scontent-cdt1-1.xx&oh=8b2ec8be3589ffa843c74b086160dadd&oe=5E823E00", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151670760798155", "text": "La PERLA del signorino LETTA.\n\"Avere nominato ministro Cecile KYENGE \u00e8 una scelta importante, un BENE per il Paese\".\nIo penso invece che nominare un ministro per il COLORE della sua PELLE sia RAZZISMO.", "post_text": "La PERLA del signorino LETTA.\n\"Avere nominato ministro Cecile KYENGE \u00e8 una scelta importante, un BENE per il Paese\".\nIo penso invece che nominare un ministro per il COLORE della sua PELLE sia RAZZISMO.", "shared_text": "", "time": "2013-09-14 12:42:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151670760798155&id=252306033154", "link": null} +{"post_id": "10151668813153155", "text": "Svegliaaaaaaa!\nPer chiamarmi a Telelombardia, da adesso, chiamatlo il numero 02 320046240 e ci salutiamoooo", "post_text": "Svegliaaaaaaa!\nPer chiamarmi a Telelombardia, da adesso, chiamatlo il numero 02 320046240 e ci salutiamoooo", "shared_text": "", "time": "2013-09-13 07:07:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151668813153155&id=252306033154", "link": null} +{"post_id": "10151666638228155", "text": "Notte serena Amici.\n\"Ci sono momenti nella Vita, in cui TACERE diventa una colpa, e parlare diventa un obbligo\".\nGrazie ORIANA Fallaci.", "post_text": "Notte serena Amici.\n\"Ci sono momenti nella Vita, in cui TACERE diventa una colpa, e parlare diventa un obbligo\".\nGrazie ORIANA Fallaci.", "shared_text": "", "time": "2013-09-12 00:27:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151666638228155&id=252306033154", "link": null} +{"post_id": "10151666070143155", "text": "Indovinate qual \u00e8 l'ufficio del Salvini qui a Strasburgo?!?", "post_text": "Indovinate qual \u00e8 l'ufficio del Salvini qui a Strasburgo?!?", "shared_text": "", "time": "2013-09-11 17:13:47", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1260890_10151666070043155_1359062246_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=PQzDdgVLkoUAQntaev0N4owAXlF780pX2G0ZNeXzkjY1qZSoZOHGJUAIA&_nc_ht=scontent-cdt1-1.xx&oh=970279b426797dabc5b1500d5468f636&oe=5E4972B6", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151664437998155", "text": "Non se ne pu\u00f2 pi\u00f9 della MENATA, del tira e molla, dei tigg\u00ec e dei commenti sulla decadenza di Berlusconi!!!", "post_text": "Non se ne pu\u00f2 pi\u00f9 della MENATA, del tira e molla, dei tigg\u00ec e dei commenti sulla decadenza di Berlusconi!!!", "shared_text": "", "time": "2013-09-10 19:42:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151664437998155&id=252306033154", "link": null} +{"post_id": "10151664350248155", "text": "Fra poco in diretta su RAI NEWS 24.\nPolo verde di ADRO, con Alberto da Giussano!", "post_text": "Fra poco in diretta su RAI NEWS 24.\nPolo verde di ADRO, con Alberto da Giussano!", "shared_text": "", "time": "2013-09-10 18:33:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151664350248155&id=252306033154", "link": null} +{"post_id": "10151662156678155", "text": "Immigrati che si AMMAZZANO a colpi di MACHETE in mezzo alla strada. In Africa? No, a Bergamo.\nE muore anche una DOTTORESSA italiana, che si era fermata per soccorrere i feriti, investita da quelle bestie.\nAnche questa \u00e8 INTEGRAZIONE?\nUna preghiera per i morti, e intanto aspettiamo lo sdegno dell'accogliente signora KYENGE...", "post_text": "Immigrati che si AMMAZZANO a colpi di MACHETE in mezzo alla strada. In Africa? No, a Bergamo.\nE muore anche una DOTTORESSA italiana, che si era fermata per soccorrere i feriti, investita da quelle bestie.\nAnche questa \u00e8 INTEGRAZIONE?\nUna preghiera per i morti, e intanto aspettiamo lo sdegno dell'accogliente signora KYENGE...", "shared_text": "", "time": "2013-09-09 12:50:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151662156678155&id=252306033154", "link": null} +{"post_id": "10151658158678155", "text": "NAPOLITANO in un suo messaggio dice che l'Unione Europea \"resta un modello di SUCCESSO\", e mette in guardia su \"PERICOLOSE correnti di scetticismo e di rifiuto verso l'indispensabile ulteriore INTEGRAZIONE\".\nAlla faccia dell'Europa di successo...\nSecondo me di PERICOLOSO ci sono solo Questa Europa, che sta massacrando il nostro Lavoro e la nostra\u2026 Altro Identit\u00e0, e l'EURO, che sta uccidendo le nostre Imprese e il Futuro.\nE moooolto PERICOLOSI sono pure i loro tifosi ad ogni costo, NAPOLITANO compreso.\nNon \u00e8 \"politicamente corretto\" dirlo? Chissenefrega!", "post_text": "NAPOLITANO in un suo messaggio dice che l'Unione Europea \"resta un modello di SUCCESSO\", e mette in guardia su \"PERICOLOSE correnti di scetticismo e di rifiuto verso l'indispensabile ulteriore INTEGRAZIONE\".\nAlla faccia dell'Europa di successo...\nSecondo me di PERICOLOSO ci sono solo Questa Europa, che sta massacrando il nostro Lavoro e la nostra\u2026 Altro Identit\u00e0, e l'EURO, che sta uccidendo le nostre Imprese e il Futuro.\nE moooolto PERICOLOSI sono pure i loro tifosi ad ogni costo, NAPOLITANO compreso.\nNon \u00e8 \"politicamente corretto\" dirlo? Chissenefrega!", "shared_text": "", "time": "2013-09-07 11:52:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151658158678155&id=252306033154", "link": null} +{"post_id": "10151657080248155", "text": "Grande gruppo leghista a CASTANO PRIMO!", "post_text": "Grande gruppo leghista a CASTANO PRIMO!", "shared_text": "", "time": "2013-09-06 23:36:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1185908_10151657080178155_1670530821_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=CmgNNfFeXZwAQkhi45K2atiKLIjDD5bKBXvOlDePQZW4p2C99f5gri5Nw&_nc_ht=scontent-cdt1-1.xx&oh=650428f09867ca7b40895bb89ff86300&oe=5E87BD54", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151655639838155", "text": "Grande gruppo al lavoro per la Festa di PALAZZAGO! Andate a trovarli, sorrisi, tombola e ottima cucina", "post_text": "Grande gruppo al lavoro per la Festa di PALAZZAGO! Andate a trovarli, sorrisi, tombola e ottima cucina", "shared_text": "", "time": "2013-09-06 08:59:03", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1234263_10151655639753155_753955942_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=Q2Mrq87Vbr0AQnYbDN2D0_i1Jr2nWqXabKheoMI-wl2eaQlZGy-Y1sPvA&_nc_ht=scontent-cdt1-1.xx&oh=15f502bc30c108cf9185cdc060855816&oe=5E87F389", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151655046743155", "text": "\"Solo la persona che RISCHIA \u00e8 veramente LIBERA\".\nNotte serena Amici, a duman alle 7 su Telelombardia.", "post_text": "\"Solo la persona che RISCHIA \u00e8 veramente LIBERA\".\nNotte serena Amici, a duman alle 7 su Telelombardia.", "shared_text": "", "time": "2013-09-06 00:12:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151655046743155&id=252306033154", "link": null} +{"post_id": "10151654734053155", "text": "Il Corriere: \"PUGNI e insulti alla vicina ALBANESE, a processo la SORELLA della KYENGE\".\nMadddaiiiiiiiiii......... Violenza e razzismo???\nSciura Kyenge forse, prima di INTEGRARE i LEGHISTI, dai un occhio a quello che accade IN CASA TUA!!!", "post_text": "Il Corriere: \"PUGNI e insulti alla vicina ALBANESE, a processo la SORELLA della KYENGE\".\nMadddaiiiiiiiiii......... Violenza e razzismo???\nSciura Kyenge forse, prima di INTEGRARE i LEGHISTI, dai un occhio a quello che accade IN CASA TUA!!!", "shared_text": "", "time": "2013-09-05 20:26:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151654734053155&id=252306033154", "link": null} +{"post_id": "10151654682953155", "text": "L'assessore milanese del PD: \"I Vigili non devono picchiare la gente\". Ossignur, \u00e8 noto che a Milano e in tutta Italia i Vigili vanno in giro a menare le mani...\nNiente da fare, certa Sinistra \u00e8 allergica alla Sicurezza.", "post_text": "L'assessore milanese del PD: \"I Vigili non devono picchiare la gente\". Ossignur, \u00e8 noto che a Milano e in tutta Italia i Vigili vanno in giro a menare le mani...\nNiente da fare, certa Sinistra \u00e8 allergica alla Sicurezza.", "shared_text": "", "time": "2013-09-05 19:47:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151654682953155&id=252306033154", "link": null} +{"post_id": "10151654169733155", "text": "La LEGA che combatte e VINCE!\nAl Senato governo battuto, passa la proposta leghista: per UN ANNO, niente apertura di nuove SALE per il GIOCO D'AZZARDO.\nLetta, Kyenge e Boldrini, datevi alle Slot Machine!", "post_text": "La LEGA che combatte e VINCE!\nAl Senato governo battuto, passa la proposta leghista: per UN ANNO, niente apertura di nuove SALE per il GIOCO D'AZZARDO.\nLetta, Kyenge e Boldrini, datevi alle Slot Machine!", "shared_text": "", "time": "2013-09-05 13:39:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151654169733155&id=252306033154", "link": null} +{"post_id": "10151653118378155", "text": "Pi\u00f9 di 500 persone, amministratori e militanti, per la Lega qui a Buguggiate: la provincia di Varese C'\u00c8!", "post_text": "Pi\u00f9 di 500 persone, amministratori e militanti, per la Lega qui a Buguggiate: la provincia di Varese C'\u00c8!", "shared_text": "", "time": "2013-09-04 21:31:20", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1185177_10151653118273155_1549151929_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=nqwCThBzUtcAQlBb1jNzPPrpHvlj7UGAqq2gV1mkV2L8yapm85cvKL54w&_nc_ht=scontent-cdt1-1.xx&oh=cb919d3ff0e541267fdd2338dc2e7636&oe=5E8B574B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151652369643155", "text": "Grande, poetica, immensa la sciura KYENGE.\n\"IL CINEMA, poich\u00e9 arriva nelle case di tutti, pu\u00f2 aiutare il discorso sull'INTEGRAZIONE, per non imparare a camminare, ma a VOLARE\".\nEcco, brava, prova a VOLARE VIA anche tu!", "post_text": "Grande, poetica, immensa la sciura KYENGE.\n\"IL CINEMA, poich\u00e9 arriva nelle case di tutti, pu\u00f2 aiutare il discorso sull'INTEGRAZIONE, per non imparare a camminare, ma a VOLARE\".\nEcco, brava, prova a VOLARE VIA anche tu!", "shared_text": "", "time": "2013-09-04 11:34:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151652369643155&id=252306033154", "link": null} +{"post_id": "10151650599543155", "text": "Qui pronto ad ascoltarvi su ANTENNA 3.\nPotete telefonarmi allo 02 320046240.", "post_text": "Qui pronto ad ascoltarvi su ANTENNA 3.\nPotete telefonarmi allo 02 320046240.", "shared_text": "", "time": "2013-09-03 12:07:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151650599543155&id=252306033154", "link": null} +{"post_id": "10151646817103155", "text": "Quanto avevano ragione i nostri vecchi!", "post_text": "Quanto avevano ragione i nostri vecchi!", "shared_text": "", "time": "2013-09-01 12:42:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1237157_10151646816968155_1168050464_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=M4wPecG9-VIAQmq4TgMa7CXku8qPHO8mvqvTe0ymAGntIckfeLbWQdwQg&_nc_ht=scontent-cdt1-1.xx&oh=466450dff95d10e070cf555a5928d6fc&oe=5E4EBC56", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151644274238155", "text": "Sala piena stasera per la Lega a Bormio! E non ci sono senatori a vita...", "post_text": "Sala piena stasera per la Lega a Bormio! E non ci sono senatori a vita...", "shared_text": "", "time": "2013-08-30 21:27:57", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/999745_10151644274098155_1263029909_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=ipbfO6nELbIAQmGzZqEn37Qb0SqixQByA4P8zKp35YJhZ-GhJVhV1iR2A&_nc_ht=scontent-cdt1-1.xx&oh=a9e2a357c478360a63c0812b020ec1f8&oe=5E8B74FD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151643784738155", "text": "Avvistato su questi monti il prossimo SENATORE A VITA scelto da Napolitano: un CERVO!", "post_text": "Avvistato su questi monti il prossimo SENATORE A VITA scelto da Napolitano: un CERVO!", "shared_text": "", "time": "2013-08-30 15:35:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1011637_10151643784678155_519793031_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=wmIr-aEkNbAAQlberdbrPGxfWD7-Lrk_pWfy90eg45TyhmqzsjLKx9a7g&_nc_ht=scontent-cdt1-1.xx&oh=c7d7f3032f5e823ebb99201bbfa5035c&oe=5E7FE483", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151642062188155", "text": "L'assassino della gioielliera di Sarono ha confessato.\nHa ucciso una donna a CALCI E PUGNI.\nDicono sia uno sbandato disoccupato.\nSicuro ci sar\u00e0 qualcuno che cercher\u00e0 di \"CAPIRLO\", io spero finisca i suoi giorni in galera, senza vedere il sole.", "post_text": "L'assassino della gioielliera di Sarono ha confessato.\nHa ucciso una donna a CALCI E PUGNI.\nDicono sia uno sbandato disoccupato.\nSicuro ci sar\u00e0 qualcuno che cercher\u00e0 di \"CAPIRLO\", io spero finisca i suoi giorni in galera, senza vedere il sole.", "shared_text": "", "time": "2013-08-29 13:49:51", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151642062188155&id=252306033154", "link": null} +{"post_id": "10151641977913155", "text": "Le formiche lavorano come matte, poi le cicale spendono e spandono... Mi sono rotto di essere FORMICA, che le cicale vadano a farsi fottere!", "post_text": "Le formiche lavorano come matte, poi le cicale spendono e spandono... Mi sono rotto di essere FORMICA, che le cicale vadano a farsi fottere!", "shared_text": "", "time": "2013-08-29 12:17:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1185283_10151641977868155_2039630931_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=gtFzALLcFp0AQm4rZ0GeKOHgS5Ue7JYSIveeSgHQDtSW43qIUinQRkTnA&_nc_ht=scontent-cdt1-1.xx&oh=dfad1266c421a610cd0b1bf0bc45a716&oe=5E796F7E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151641168653155", "text": "3 gol del Milan, ora in camera mi merito 3 Bombardini!", "post_text": "3 gol del Milan, ora in camera mi merito 3 Bombardini!", "shared_text": "", "time": "2013-08-28 22:39:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151641168653155&id=252306033154", "link": null} +{"post_id": "10151640835848155", "text": "Altri 350 CLANDESTINI sbarcati nelle ultime ore.\nE intanto 9 MILIONI DI ITALIANI soffrono per la DISOCCUPAZIONE, il precariato e la cassa integrazione.\nUn Politico \u00e8 pagato per aiutare PRIMA LA SUA GENTE, poi anche il resto del mondo, altro che Kyenge!\nSiete d'accordo? INSIEME SI PU\u00d2 cambiare.", "post_text": "Altri 350 CLANDESTINI sbarcati nelle ultime ore.\nE intanto 9 MILIONI DI ITALIANI soffrono per la DISOCCUPAZIONE, il precariato e la cassa integrazione.\nUn Politico \u00e8 pagato per aiutare PRIMA LA SUA GENTE, poi anche il resto del mondo, altro che Kyenge!\nSiete d'accordo? INSIEME SI PU\u00d2 cambiare.", "shared_text": "", "time": "2013-08-28 18:17:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151640835848155&id=252306033154", "link": null} +{"post_id": "10151640790553155", "text": "Livigno, UN LITRO DI DIESEL a 1,054 euro. Se non dovessimo mantenere uno STATO LADRO, sarebbe cos\u00ec anche da noi...", "post_text": "Livigno, UN LITRO DI DIESEL a 1,054 euro. Se non dovessimo mantenere uno STATO LADRO, sarebbe cos\u00ec anche da noi...", "shared_text": "", "time": "2013-08-28 17:41:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/1150342_10151640790503155_1546157841_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=V6lfUCDg1lkAQm5veAa7huqx1Ta9dz6aom8oLjSOg7twM0QICEY6VUqRw&_nc_ht=scontent-cdt1-1.xx&oh=686affed48c95edddf86b75e7defc2f9&oe=5E7FD67E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151640407263155", "text": "Venerd\u00ec sera incontro pubblico a BORMIO, vi aspetto!", "post_text": "Venerd\u00ec sera incontro pubblico a BORMIO, vi aspetto!", "shared_text": "", "time": "2013-08-28 11:42:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1234850_10151640407218155_185476690_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=9WpWdx9UFXwAQkSZ_KB5mEAMLQ0whvHBy8fJ4mMmnROJwM7gtv90oUeNQ&_nc_ht=scontent-cdt1-1.xx&oh=d0af3d1489526b23d079ce62bc3e3c65&oe=5E4C0B3C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151640404018155", "text": "Il mio voto va ad Aaron Swartz, attivista americano finito sotto processo per aver lottato in favore della libera circolazione di idee e conoscenze, morto suicida a soli 26 anni; un ragazzo che ha accettato di rischiare tutto per i suoi ideali, come un vero leghista!\nLaPadania\n26 agosto 2013 alle ore 12:12 \u00b7\nPartecipa con il tuo campione al 1\u00b0Campionato Mondiale di Mitologia Leghista\nChi \u00e8 il Segretario Provinciale di Paperopoli?\nDe Andr\u00e8 era davvero di sinistra?\nHomer Simpson verrebbe a Pontida?\nOriana Fallaci era\u2026 Altro una dei nostri?\nVercingetorige voleva una MacroGallia ?\nCosa votava San Giuseppe nel segreto dell\u2019urna?\nA tutte queste domande puoi rispondere tu!\nPartecipa con il tuo campione al 1\u00b0Campionato Mondiale di Mitologia Leghista.\nIl giorno 4 Dicembre 1989 nasce la Lega Nord e con essa i leghisti fanno ufficialmente la loro comparsa sulla terra.\nE prima?\nQuali sono i personaggi che hanno direttamente o indirettamente influenzato la nascita del nostro Movimento? Carlo Cattaneo solo\u2026 Altro", "post_text": "Il mio voto va ad Aaron Swartz, attivista americano finito sotto processo per aver lottato in favore della libera circolazione di idee e conoscenze, morto suicida a soli 26 anni; un ragazzo che ha accettato di rischiare tutto per i suoi ideali, come un vero leghista!", "shared_text": "LaPadania\n26 agosto 2013 alle ore 12:12 \u00b7\nPartecipa con il tuo campione al 1\u00b0Campionato Mondiale di Mitologia Leghista\nChi \u00e8 il Segretario Provinciale di Paperopoli?\nDe Andr\u00e8 era davvero di sinistra?\nHomer Simpson verrebbe a Pontida?\nOriana Fallaci era\u2026 Altro una dei nostri?\nVercingetorige voleva una MacroGallia ?\nCosa votava San Giuseppe nel segreto dell\u2019urna?\nA tutte queste domande puoi rispondere tu!\nPartecipa con il tuo campione al 1\u00b0Campionato Mondiale di Mitologia Leghista.\nIl giorno 4 Dicembre 1989 nasce la Lega Nord e con essa i leghisti fanno ufficialmente la loro comparsa sulla terra.\nE prima?\nQuali sono i personaggi che hanno direttamente o indirettamente influenzato la nascita del nostro Movimento? Carlo Cattaneo solo\u2026 Altro", "time": "2013-08-28 11:37:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/622474_515105688570110_1868288582_o.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=QibMy2sPx6EAQn6x8-hy0gtSdfbe8mXMCmnMpyu-qdR73DG6WXteATKDQ&_nc_ht=scontent-cdt1-1.xx&oh=9cbf986873d4d7b134dc0d292d0a0e4c&oe=5E7A537A", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151640404018155&id=252306033154", "link": null} +{"post_id": "10151639391248155", "text": "Approfittando dell'agosto, la Giunta PISAPIA ha RADDOPPIATO per decine di migliaia di pensionati e di STUDENTI il costo dell'abbonamento ai mezzi pubblici.\nDa 16 a 30 euro in un colpo solo.\nMaledetti! Sarete voi a PAGARE CARO.\nDove sono finiti gli ELETTORI di Pisapia..??", "post_text": "Approfittando dell'agosto, la Giunta PISAPIA ha RADDOPPIATO per decine di migliaia di pensionati e di STUDENTI il costo dell'abbonamento ai mezzi pubblici.\nDa 16 a 30 euro in un colpo solo.\nMaledetti! Sarete voi a PAGARE CARO.\nDove sono finiti gli ELETTORI di Pisapia..??", "shared_text": "", "time": "2013-08-27 19:31:20", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151639391248155&id=252306033154", "link": null} +{"post_id": "10151636281538155", "text": "Bella serata con la gente di Solbiate!", "post_text": "Bella serata con la gente di Solbiate!", "shared_text": "", "time": "2013-08-25 23:07:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1001419_10151636281468155_1685265127_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=R8JrHYxV93IAQkt3ojqTG4YM0fZB6tQM_XV-M45f1UqWkRl7KdjSFf2dw&_nc_ht=scontent-cdt1-1.xx&oh=9dc60a0a12f6506f074f06541e62764a&oe=5E80D597", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151635544573155", "text": "Un abbraccio dal Lago di Como! Stasera presente alle Feste di Arcisate e Solbiate Olona.", "post_text": "Un abbraccio dal Lago di Como! Stasera presente alle Feste di Arcisate e Solbiate Olona.", "shared_text": "", "time": "2013-08-25 14:24:54", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/555279_10151635544508155_449210656_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=0ki8BNZK6yoAQk5Ap0o6pR0xgFqdJVX_Ek5W93ZFBmEIjKy5Qrai7bHTA&_nc_ht=scontent-cdt1-1.xx&oh=5877aa9c69ec11902602fd63d0a00342&oe=5E3E61EC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151634553238155", "text": "Giovani Padani del PIEMONTE! Pi\u00f9 me mica tanto giovane...", "post_text": "Giovani Padani del PIEMONTE! Pi\u00f9 me mica tanto giovane...", "shared_text": "", "time": "2013-08-24 23:41:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1239655_10151634553173155_1271659713_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=_XVH9N7XItMAQmhuegoQlqy_aD8xsdZ585VrIYbqp4SQdD4ihN_cAp-Qw&_nc_ht=scontent-cdt1-1.xx&oh=07315fc762de22f3b1ea2de3bf044171&oe=5E87A666", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151634427443155", "text": "Grande gruppo a Capriata!", "post_text": "Grande gruppo a Capriata!", "shared_text": "", "time": "2013-08-24 22:20:52", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1240007_10151634427363155_1694323316_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=_JB7DJK6xHUAQnT-gs_lAxlSMv8o3fqVDhPvOiR5Y5fLJpqiLA_OmLcnQ&_nc_ht=scontent-cdt1-1.xx&oh=98eff4241ba10b50b192b37be94e1818&oe=5E8B485E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151633668743155", "text": "Il Sindaco di Pozzallo, in Sicilia: \"La citt\u00e0 \u00e8 totalmente IN MANO AGLI IMMIGRATI, quasi sempre UBRIACHI\".\nMa dai Sindaco, accogli, sorridi e pensa alla Kyenge, senn\u00f2 anche per te \u00c8 PRONTA L'ACCUSA DI RAZZISMO!", "post_text": "Il Sindaco di Pozzallo, in Sicilia: \"La citt\u00e0 \u00e8 totalmente IN MANO AGLI IMMIGRATI, quasi sempre UBRIACHI\".\nMa dai Sindaco, accogli, sorridi e pensa alla Kyenge, senn\u00f2 anche per te \u00c8 PRONTA L'ACCUSA DI RAZZISMO!", "shared_text": "", "time": "2013-08-24 12:36:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151633668743155&id=252306033154", "link": null} +{"post_id": "10151633626878155", "text": "Oggi dalle 18 alle 20 sar\u00f2 a TELELOMBARDIA, alla trasmissione \"Qui studio e voi stadio\", per commentare la prima di Campionato VERONA - MILAN.\nDai Ragazzi!\nMi farete compagnia? Quanto finisce secondo voi?", "post_text": "Oggi dalle 18 alle 20 sar\u00f2 a TELELOMBARDIA, alla trasmissione \"Qui studio e voi stadio\", per commentare la prima di Campionato VERONA - MILAN.\nDai Ragazzi!\nMi farete compagnia? Quanto finisce secondo voi?", "shared_text": "", "time": "2013-08-24 11:59:43", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151633626878155&id=252306033154", "link": null} +{"post_id": "10151632630883155", "text": "Kilometri di coda sulla A 4, dopo Capriate, direzione Milano, perch\u00e9... ci sono i lavori in corso!\nUn venerd\u00ec di rientro di fine agosto.\nComplimenti ai PIRLA che programmano queste cose.", "post_text": "Kilometri di coda sulla A 4, dopo Capriate, direzione Milano, perch\u00e9... ci sono i lavori in corso!\nUn venerd\u00ec di rientro di fine agosto.\nComplimenti ai PIRLA che programmano queste cose.", "shared_text": "", "time": "2013-08-24 00:56:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151632630883155&id=252306033154", "link": null} +{"post_id": "10151632394678155", "text": "Tanta gente, anche sotto l'acqua, con la Lega alla Berghem Fest!", "post_text": "Tanta gente, anche sotto l'acqua, con la Lega alla Berghem Fest!", "shared_text": "", "time": "2013-08-23 21:57:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/996927_10151632394598155_306677363_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=3LKJ5TguzEgAQlDLkVjkXaSLFsxoWiGLm7_ohGWs4F_HO7LBvcSUKhBDA&_nc_ht=scontent-cdt1-1.xx&oh=61c67153de0b072e140f223b602b1477&oe=5E80097B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151632328773155", "text": "Grande squadra Padana alla Festa di BOLGARE! Banzai!", "post_text": "Grande squadra Padana alla Festa di BOLGARE! Banzai!", "shared_text": "", "time": "2013-08-23 21:07:07", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1157474_10151632328728155_311177950_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=KsN4HAyjk38AQlWitd42_8lNqeVvYvOmJOCZoFhLwwng1j3_U9NggriuQ&_nc_ht=scontent-cdt1-1.xx&oh=5d0a40c8f49fad2f94c06195e3a7661d&oe=5E4AC47E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151631021373155", "text": "Rissa e sangue in Stazione Centrale a Milano, fra i turisti.\nUn marocchino accoltellato al torace \u00e8 molto grave, un tunisino sfregiato al volto \u00e8 in ospedale.\nStorie di ordinaria INTEGRAZIONE.", "post_text": "Rissa e sangue in Stazione Centrale a Milano, fra i turisti.\nUn marocchino accoltellato al torace \u00e8 molto grave, un tunisino sfregiato al volto \u00e8 in ospedale.\nStorie di ordinaria INTEGRAZIONE.", "shared_text": "", "time": "2013-08-22 23:51:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151631021373155&id=252306033154", "link": null} +{"post_id": "10151630802553155", "text": "Domani mattina si ricomincia!\nAlle 7 in diretta su TELELOMBARDIA, vi aspetto!", "post_text": "Domani mattina si ricomincia!\nAlle 7 in diretta su TELELOMBARDIA, vi aspetto!", "shared_text": "", "time": "2013-08-22 21:08:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151630802553155&id=252306033154", "link": null} +{"post_id": "10151630147083155", "text": "Tutti i siti di informazione parlano dello SCONTRO PD-PDL sul futuro di Berlusconi e sul GOVERNO A RISCHIO.\nSecondo voi come va a finire?\nBerlusconi stacca la spina? Il governo cade?\nE il sciura Napolitano tace?\nIn verit\u00e0, questa \u00e8 la \"politica\" che ha rotto le scatole...", "post_text": "Tutti i siti di informazione parlano dello SCONTRO PD-PDL sul futuro di Berlusconi e sul GOVERNO A RISCHIO.\nSecondo voi come va a finire?\nBerlusconi stacca la spina? Il governo cade?\nE il sciura Napolitano tace?\nIn verit\u00e0, questa \u00e8 la \"politica\" che ha rotto le scatole...", "shared_text": "", "time": "2013-08-22 12:41:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151630147083155&id=252306033154", "link": null} +{"post_id": "10151629017233155", "text": "Tramonto in Valcamonica, dedicato a Voi!", "post_text": "Tramonto in Valcamonica, dedicato a Voi!", "shared_text": "", "time": "2013-08-21 19:49:40", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1170830_10151629017068155_147844184_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=9Jwfxt8tcHcAQk2MfZkXpEyjwz-vdw20DPxLpXwzbAWvaWuRXqvnb_9Uw&_nc_ht=scontent-cdt1-1.xx&oh=6fb068936c885a04c6bee9cc611d40aa&oe=5E412391", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151627294998155", "text": "Che LUNA stasera sulle montagne! Chiss\u00e0 se esistono altre Vite in altri Mondi... Per ora, notte serena a chi si impegna per migliorare Questo, di Mondo!", "post_text": "Che LUNA stasera sulle montagne! Chiss\u00e0 se esistono altre Vite in altri Mondi... Per ora, notte serena a chi si impegna per migliorare Questo, di Mondo!", "shared_text": "", "time": "2013-08-20 22:56:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/581812_10151627294908155_1044332283_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=86YNYaLFPWoAQkpqB1z9vhtQjowEscAKY9MySljZaonz61gVVzyg46OOA&_nc_ht=scontent-cdt1-1.xx&oh=4de7e5015cd5d863d448f16bc4814207&oe=5E514A63", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151626395593155", "text": "Solo in Lombardia, i DISOCCUPATI sono 407.000.\nSolo nel 2013, sono 479 le AZIENDE IN CRISI.\nDi questi \"PROFUGHI ITALIANI\", il Governo se ne frega!\nForse \u00e8 pi\u00f9 chic e pi\u00f9 politicamente corretto preoccuparsi di chi arriva dall\"Africa e sbarca a Lampedusa, piuttosto che di tutti questi italiani bisognosi.\nOgni \"integrazione\" \u00e8 impossibile in queste condizioni.\nPRIMA VIENE LA NOSTRA GENTE.\nPoi, se avanzano spazio e soldi, tutti gli altri...\nQualcuno lo chiama \"razzismo\", per me \u00e8 BUON SENSO.\nSbaglio?", "post_text": "Solo in Lombardia, i DISOCCUPATI sono 407.000.\nSolo nel 2013, sono 479 le AZIENDE IN CRISI.\nDi questi \"PROFUGHI ITALIANI\", il Governo se ne frega!\nForse \u00e8 pi\u00f9 chic e pi\u00f9 politicamente corretto preoccuparsi di chi arriva dall\"Africa e sbarca a Lampedusa, piuttosto che di tutti questi italiani bisognosi.\nOgni \"integrazione\" \u00e8 impossibile in queste condizioni.\nPRIMA VIENE LA NOSTRA GENTE.\nPoi, se avanzano spazio e soldi, tutti gli altri...\nQualcuno lo chiama \"razzismo\", per me \u00e8 BUON SENSO.\nSbaglio?", "shared_text": "", "time": "2013-08-20 11:41:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151626395593155&id=252306033154", "link": null} +{"post_id": "10151624916658155", "text": "Oggi si comincia con il REDDITOMETRO.\nRoba da regime comunista, o fascista, scegliete voi.\nFra le spese inserite nei controlli, e che quindi potrebbero COSTARVI CARE, troviamo: i libri scolastici, le visite dal veterinario per i cagnolini o i gatti, piante e fiori, la bolletta dell'acqua, i succhi di frutta, le medicine.\nMa soprattutto, ROBA DA MATTI, verranno controllate le DONAZIONI alle ASSOCIAZIONI DI VOLONTARIATO.\nSolo uno Stato Ladro pu\u00f2 arrivare a tanto.\nCaro Letta, l'AUTUNNO CALDO sta arrivando.", "post_text": "Oggi si comincia con il REDDITOMETRO.\nRoba da regime comunista, o fascista, scegliete voi.\nFra le spese inserite nei controlli, e che quindi potrebbero COSTARVI CARE, troviamo: i libri scolastici, le visite dal veterinario per i cagnolini o i gatti, piante e fiori, la bolletta dell'acqua, i succhi di frutta, le medicine.\nMa soprattutto, ROBA DA MATTI, verranno controllate le DONAZIONI alle ASSOCIAZIONI DI VOLONTARIATO.\nSolo uno Stato Ladro pu\u00f2 arrivare a tanto.\nCaro Letta, l'AUTUNNO CALDO sta arrivando.", "shared_text": "", "time": "2013-08-19 15:53:03", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151624916658155&id=252306033154", "link": null} +{"post_id": "10151624705363155", "text": "A Milano la Giunta PISAPIA d\u00e0 il via libera a tutti i CENTRI ISLAMICI, i Milanesi ne hanno proprio bisogno...\nIn Egitto e in giro per il mondo nel none dell'Islam mettono a ferro e fuoco le citt\u00e0, e noi gli apriamo le porte di casa nostra: la LEGA, anche da sola, far\u00e0 le barricate!", "post_text": "A Milano la Giunta PISAPIA d\u00e0 il via libera a tutti i CENTRI ISLAMICI, i Milanesi ne hanno proprio bisogno...\nIn Egitto e in giro per il mondo nel none dell'Islam mettono a ferro e fuoco le citt\u00e0, e noi gli apriamo le porte di casa nostra: la LEGA, anche da sola, far\u00e0 le barricate!", "shared_text": "", "time": "2013-08-19 12:52:58", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151624705363155&id=252306033154", "link": null} +{"post_id": "10151623743253155", "text": "Qui MELZO. Almeno 500 persone per ballare e per parlare di Buona Politica con la Lega: EVVAI!", "post_text": "Qui MELZO. Almeno 500 persone per ballare e per parlare di Buona Politica con la Lega: EVVAI!", "shared_text": "", "time": "2013-08-18 22:37:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1149002_10151623743203155_2015298721_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=SA5Yx-oh9EEAQnY4Ri46i1wrVHFR6up7j22hRFPjAqykNTzUFfsviWypQ&_nc_ht=scontent-cdt1-1.xx&oh=b560f8aa11b58e199f42c3cbab46a088&oe=5E8AB91C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151623458238155", "text": "Finiti i tornanti di Selvino, si guida direzione Festa di MELZO. Vi aspetto!", "post_text": "Finiti i tornanti di Selvino, si guida direzione Festa di MELZO. Vi aspetto!", "shared_text": "", "time": "2013-08-18 19:27:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1005796_10151623458173155_2121518496_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=pxzoBv5vxbIAQnpMyWgDVIa_5WAQh_P6aT6NKV6gE9XbCx3e0DRrYEJLg&_nc_ht=scontent-cdt1-1.xx&oh=ee9f91eec3b2b59d86d7546e17f91a99&oe=5E7AEDB9", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151622285393155", "text": "Adoro la mia Milano d'agosto: parcheggio ovunque!", "post_text": "Adoro la mia Milano d'agosto: parcheggio ovunque!", "shared_text": "", "time": "2013-08-18 01:39:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/998232_10151622285358155_1737228093_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=No7Hmey9ZJwAQmZvJQdPV55iS5pEdqXf2xDBALfLpIQ5uoDPySMDLzh7Q&_nc_ht=scontent-cdt1-1.xx&oh=53c94e5ac3cc18240d7e685a04a29a26&oe=5E47B7F3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151622061158155", "text": "PONTIDA strapiena!!! Grazie Lega, si combatte!", "post_text": "PONTIDA strapiena!!! Grazie Lega, si combatte!", "shared_text": "", "time": "2013-08-17 22:37:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1175507_10151622061068155_1161048520_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=yXxo6mGBeh4AQleoTRHwemS29FvF2em60pn1FsqwmgnYQte8zafAM9cIA&_nc_ht=scontent-cdt1-1.xx&oh=0251225fe19ecc92fefefb7a88ab5e48&oe=5E4B7D7E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151621636818155", "text": "Qui Lago del Mortitolo, a stasera a PONTIDA!", "post_text": "Qui Lago del Mortitolo, a stasera a PONTIDA!", "shared_text": "", "time": "2013-08-17 17:25:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/534014_10151621636758155_1991917400_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=gSd9e4a-o9UAQkU6Gz8ngSWnBbqgRC599QIRngXinbI8xEFydOXVtRK8Q&_nc_ht=scontent-cdt1-1.xx&oh=8194e9f39c2b4528c9895bc683c84f50&oe=5E8BBE33", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151620122313155", "text": "Leghisti che parlano contro Leghisti, avete rotto!", "post_text": "Leghisti che parlano contro Leghisti, avete rotto!", "shared_text": "", "time": "2013-08-16 19:45:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151620122313155&id=252306033154", "link": null} +{"post_id": "10151619962083155", "text": "Su queste montagne si combatt\u00e9 per scacciare l'occupante straniero.\nDa queste montagne si riparte per riprenderci le nostre citt\u00e0, il nostro lavoro, il nostro futuro.", "post_text": "Su queste montagne si combatt\u00e9 per scacciare l'occupante straniero.\nDa queste montagne si riparte per riprenderci le nostre citt\u00e0, il nostro lavoro, il nostro futuro.", "shared_text": "", "time": "2013-08-16 17:51:13", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/995195_10151619962003155_682184456_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=32mazA8xYRIAQlJnmr1vfvfju-U2ezK8YCmUwCELKU7KU9MQSRTAy_1ew&_nc_ht=scontent-cdt1-1.xx&oh=2e0e1a94420d047a19ffba09394aad9f&oe=5E80DB40", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151618640738155", "text": "Un migliaio di persone, la sera di ferragosto, CON LA LEGA a Ponte di Legno. Insieme SI PU\u00d2!", "post_text": "Un migliaio di persone, la sera di ferragosto, CON LA LEGA a Ponte di Legno. Insieme SI PU\u00d2!", "shared_text": "", "time": "2013-08-15 21:55:25", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1146510_10151618640703155_578890841_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=-ikLtN7axigAQmyn-m3bB8i8FwfzJq_ja7P6UKxkibUI_4GI0mUVyr6vw&_nc_ht=scontent-cdt1-1.xx&oh=d56ba66b52125fb4d3deeadab0beac82&oe=5E40E288", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151618530023155", "text": "Esagerati!!!", "post_text": "Esagerati!!!", "shared_text": "", "time": "2013-08-15 20:29:04", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1174892_10151618529943155_1408508628_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=kQbnCte9HYQAQnhaQrkmQt82sO1-D9xU8rXMu7uyEJjFjC7p250Tq_keg&_nc_ht=scontent-cdt1-1.xx&oh=9970b121800d359505c3d7d87c2ab47d&oe=5E4CECAA", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151614434278155", "text": "Fra poco semifinale del Torneo Notturno di Calcetto, all'oratorio di Vezza d'Oglio: questo \u00e8 CALCIO!", "post_text": "Fra poco semifinale del Torneo Notturno di Calcetto, all'oratorio di Vezza d'Oglio: questo \u00e8 CALCIO!", "shared_text": "", "time": "2013-08-13 21:44:56", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151614434278155&id=252306033154", "link": null} +{"post_id": "10151613874078155", "text": "Siamo pronti per un autunno caldo, in cui lanceremo una SERRATA totale! Puntiamo a CHIUDERE comuni, negozi, stalle, benzinai, scuole, piscine... TUTTO! Ne abbiamo le palle piene! Cosa ne pensate?\nWWW.AFFARITALIANI.IT\nhttp://www.affaritaliani.it/politica/salvini-serrata-comuni-autunno1308", "post_text": "Siamo pronti per un autunno caldo, in cui lanceremo una SERRATA totale! Puntiamo a CHIUDERE comuni, negozi, stalle, benzinai, scuole, piscine... TUTTO! Ne abbiamo le palle piene! Cosa ne pensate?", "shared_text": "WWW.AFFARITALIANI.IT\nhttp://www.affaritaliani.it/politica/salvini-serrata-comuni-autunno1308", "time": "2013-08-13 15:13:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151613874078155&id=252306033154", "link": "http://www.affaritaliani.it/politica/salvini-serrata-comuni-autunno1308?fbclid=IwAR0y2Ia1STaIRLRqor0fTokMpAZqeR2H6yaQKKTJngqEJz_2AOfyxqu9FEE"} +{"post_id": "10151613528333155", "text": "Una delle nostre priorit\u00e0.\nAumentare il contributo per le PENSIONI DI INVALIDIT\u00c0, quelle vere: 268 EURO sono una vergogna!\nP.s. Che fine hanno fatto i controlli per beccare i falsi invalidi? Forse i governi Monti e Letta dormono..??", "post_text": "Una delle nostre priorit\u00e0.\nAumentare il contributo per le PENSIONI DI INVALIDIT\u00c0, quelle vere: 268 EURO sono una vergogna!\nP.s. Che fine hanno fatto i controlli per beccare i falsi invalidi? Forse i governi Monti e Letta dormono..??", "shared_text": "", "time": "2013-08-13 11:14:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151613528333155&id=252306033154", "link": null} +{"post_id": "10151611997088155", "text": "L'EURO sta uccidendo il nostro Lavoro, la nostre Economia, i nostri Stipendi, il nostro Futuro.\nNoi siamo nel cuore dell'Europa, ma se non combatteremo QUESTA EUROPA schiava delle banche, della finanza e dei poteri forti, per noi \u00e8 finita.\nPronti alla Battaglia?\nPronti, se servir\u00e0, a liberarci da questo Euro?\nIo ci sono.", "post_text": "L'EURO sta uccidendo il nostro Lavoro, la nostre Economia, i nostri Stipendi, il nostro Futuro.\nNoi siamo nel cuore dell'Europa, ma se non combatteremo QUESTA EUROPA schiava delle banche, della finanza e dei poteri forti, per noi \u00e8 finita.\nPronti alla Battaglia?\nPronti, se servir\u00e0, a liberarci da questo Euro?\nIo ci sono.", "shared_text": "", "time": "2013-08-12 15:19:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151611997088155&id=252306033154", "link": null} +{"post_id": "10151611755918155", "text": "Ieri una giornata di SILENZIO.\nPiuttosto che parlare a tutti i costi, e dire le CAZZATE che dice il signorino Letta, meglio tacere...\nBuona settimana a tucc!", "post_text": "Ieri una giornata di SILENZIO.\nPiuttosto che parlare a tutti i costi, e dire le CAZZATE che dice il signorino Letta, meglio tacere...\nBuona settimana a tucc!", "shared_text": "", "time": "2013-08-12 11:17:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151611755918155&id=252306033154", "link": null} +{"post_id": "10151608258828155", "text": "Sperando che il governaccio romano non pensi di tassare anche la Vista delle nostre Montagne...", "post_text": "Sperando che il governaccio romano non pensi di tassare anche la Vista delle nostre Montagne...", "shared_text": "", "time": "2013-08-10 11:01:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1150958_10151608258768155_328472787_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=RRxwT1rUCmQAQmZbfp-xmGFWsrS60mY-CBdn3i72QAyhrPJZWTu2YSnsQ&_nc_ht=scontent-cdt1-1.xx&oh=c08db95c1f65b40b358861bfa2518090&oe=5E89EB38", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151608247298155", "text": "Le mie scelte in EDICOLA oggi! Buon week Amici.", "post_text": "Le mie scelte in EDICOLA oggi! Buon week Amici.", "shared_text": "", "time": "2013-08-10 10:44:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/537178_10151608247268155_24452013_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=-oDrIP4pW84AQnjow_7wya1iC17jTR9q8mumLb1_xQPbRbR2pCtqQXy3w&_nc_ht=scontent-cdt1-1.xx&oh=4c45089017e780c0bc634ad334c05546&oe=5E3E396D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151607490358155", "text": "Notte serena, agli Amici e agli sfigati che insultano.", "post_text": "Notte serena, agli Amici e agli sfigati che insultano.", "shared_text": "", "time": "2013-08-09 23:45:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151607490358155&id=252306033154", "link": null} +{"post_id": "10151606808248155", "text": "Pronto al collegamento con SKY Tg 24 alle ore 15!", "post_text": "Pronto al collegamento con SKY Tg 24 alle ore 15!", "shared_text": "", "time": "2013-08-09 14:45:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/15665_10151606808143155_1686828111_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=3-AEK8keLWoAQndoLQ8zvdmcZcr2R52Y0WTAmXIuQXwIyF61MtzMy7Kkg&_nc_ht=scontent-cdt1-1.xx&oh=8d466d6dcf4d7ffdc506d02c2e117e6e&oe=5E805705", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151606642943155", "text": "Melone di Calvenzano, che spettacolo!", "post_text": "Melone di Calvenzano, che spettacolo!", "shared_text": "", "time": "2013-08-09 13:13:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1150421_10151606642918155_787608148_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=ER4ivFl7DMwAQlB8o5S5qIzlmzji5hiK768WDgEZtIarjOPoIN3PSPISg&_nc_ht=scontent-cdt1-1.xx&oh=fc34ad0cc5f0ee4eb0ed3e72bf32a06f&oe=5E4C16B0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151605603288155", "text": "Gnocchi al burro, insalata e ravanelli, due bicchieri di Rosso del Salento e una fetta di crostata.\nPoi un grappino e un telefilm.\nNotte serena a tutti Amici, soprattutto a chi non perde mai la voglia di Lottare e di Sperare!", "post_text": "Gnocchi al burro, insalata e ravanelli, due bicchieri di Rosso del Salento e una fetta di crostata.\nPoi un grappino e un telefilm.\nNotte serena a tutti Amici, soprattutto a chi non perde mai la voglia di Lottare e di Sperare!", "shared_text": "", "time": "2013-08-08 23:14:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151605603288155&id=252306033154", "link": null} +{"post_id": "10151605281158155", "text": "Ho ricevuto MIGLIAIA DI MESSAGGI DI SOSTEGNO da tutta Italia, tanti Leghisti e anche molti non Leghisti, da Nord e da Sud, da cittadini italiani e anche da tanti STRANIERI PERBENE, tutti pronti a firmare per ABOLIRE l'inutile e ipocrita Ministero dell'Integrazione.\nGRAZIE!\nAndremo AVANTI, nonostante insulti e attacchi.\nPrima la Nostra Gente, per i CLANDESTINI non c'\u00e8 posto!", "post_text": "Ho ricevuto MIGLIAIA DI MESSAGGI DI SOSTEGNO da tutta Italia, tanti Leghisti e anche molti non Leghisti, da Nord e da Sud, da cittadini italiani e anche da tanti STRANIERI PERBENE, tutti pronti a firmare per ABOLIRE l'inutile e ipocrita Ministero dell'Integrazione.\nGRAZIE!\nAndremo AVANTI, nonostante insulti e attacchi.\nPrima la Nostra Gente, per i CLANDESTINI non c'\u00e8 posto!", "shared_text": "", "time": "2013-08-08 20:49:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151605281158155&id=252306033154", "link": null} +{"post_id": "10151604624838155", "text": "Oggi il governo PD-PDL annuncia pene pi\u00f9 severe nei confronti dei MARITI VIOLENTI.\nIeri il governo PD-PDL fa approvare una legge, lo SVUOTA CARCERI, che far\u00e0 uscire 4.000 DELINQUENTI.\nNon serve una legga Svuota Carceri, ma una legge SVUOTA MINISTERI dai fessi che li occupano!", "post_text": "Oggi il governo PD-PDL annuncia pene pi\u00f9 severe nei confronti dei MARITI VIOLENTI.\nIeri il governo PD-PDL fa approvare una legge, lo SVUOTA CARCERI, che far\u00e0 uscire 4.000 DELINQUENTI.\nNon serve una legga Svuota Carceri, ma una legge SVUOTA MINISTERI dai fessi che li occupano!", "shared_text": "", "time": "2013-08-08 16:52:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151604624838155&id=252306033154", "link": null} +{"post_id": "10151601724448155", "text": "Montagna, Valcamonica, vista sull'Adamello.\nUn bicierin de grapa di quella buona, e un coro alpino che canta \"Il Signore delle Cime\" sullo stereo.\nStar\u00f2 mica invecchiando???\nBuona serata Amici.", "post_text": "Montagna, Valcamonica, vista sull'Adamello.\nUn bicierin de grapa di quella buona, e un coro alpino che canta \"Il Signore delle Cime\" sullo stereo.\nStar\u00f2 mica invecchiando???\nBuona serata Amici.", "shared_text": "", "time": "2013-08-06 23:16:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151601724448155&id=252306033154", "link": null} +{"post_id": "10151599979238155", "text": "Che SQUADRA di amici con la Lega ad ARCENE!", "post_text": "Che SQUADRA di amici con la Lega ad ARCENE!", "shared_text": "", "time": "2013-08-05 22:14:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1012450_10151599979083155_435055003_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=ykmVOQbxktoAQl0MzhL2FOXot45K3Qxbu51lJRYidLVy-AviW5rs57C_A&_nc_ht=scontent-cdt1-1.xx&oh=a045a48773fe68f393d305089392d58c&oe=5E43E9B2", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151599928788155", "text": "Gara delle BARBE pi\u00f9 belle ad ARCENE! Come vado?", "post_text": "Gara delle BARBE pi\u00f9 belle ad ARCENE! Come vado?", "shared_text": "", "time": "2013-08-05 21:32:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/581734_10151599928718155_924661470_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=XV79n7bw-x0AQns0eG22QxS-UEPNa4EJ7CfaRazswZnANYkB04Gajo5-A&_nc_ht=scontent-cdt1-1.xx&oh=0221939445a2bc249fe11d398fc8565e&oe=5E478E05", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151598422408155", "text": "Duman dalle 10 sar\u00f2 in piazza a NERVIANO, con gli amici della Lega, per incontrare ed ascoltare tanta gente.\nNotte serena a chi ha ancora VOGLIA di COMBATTERE.", "post_text": "Duman dalle 10 sar\u00f2 in piazza a NERVIANO, con gli amici della Lega, per incontrare ed ascoltare tanta gente.\nNotte serena a chi ha ancora VOGLIA di COMBATTERE.", "shared_text": "", "time": "2013-08-05 00:26:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151598422408155&id=252306033154", "link": null} +{"post_id": "10151598144913155", "text": "Grande Torta per Grandi Militanti a VENIANO!", "post_text": "Grande Torta per Grandi Militanti a VENIANO!", "shared_text": "", "time": "2013-08-04 21:02:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/539622_10151598144863155_2007468343_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=tmgAsak_i5AAQl6e9B-AvVV2-3LW_PkjORR8Wol6g_hLDIQ0rW4JmMIRw&_nc_ht=scontent-cdt1-1.xx&oh=b9ce05f233374f7a133f21023ad1ebea&oe=5E4BD95C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151597628813155", "text": "Ancora la Giulia, altra trota!", "post_text": "Ancora la Giulia, altra trota!", "shared_text": "", "time": "2013-08-04 15:13:02", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1005445_10151597628763155_2072854341_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=1_dOejohZpwAQkAcnl1JzJmbAElrYP4DZx08uiH8gL9lfh3QwGVu3D7Og&_nc_ht=scontent-cdt1-1.xx&oh=c772e78f1c4f9f09ca309a3cdaad0a7c&oe=5E4CF95A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151597601318155", "text": "La Giulia ha preso una trota!", "post_text": "La Giulia ha preso una trota!", "shared_text": "", "time": "2013-08-04 14:57:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1004916_10151597601263155_564546727_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=ZYJECfJPcWIAQkoxPJ-J1lfTOCjZ6ZrFCCF0R1AL8EKDIHntoQULWD0yA&_nc_ht=scontent-cdt1-1.xx&oh=2babbff5b5d194903783816f95897501&oe=5E4888E8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151597597738155", "text": "Adoro i laghetti alpini! Appuntamento a stasera nel comasco, alle 20 a Veniano e alle 21.30 a Valbrona.", "post_text": "Adoro i laghetti alpini! Appuntamento a stasera nel comasco, alle 20 a Veniano e alle 21.30 a Valbrona.", "shared_text": "", "time": "2013-08-04 14:54:37", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/969781_10151597597643155_1546314037_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=TUCuX-3h2twAQknJzDk2cuDc6uIGLGUU-RWNa_q5SPTu53D2Iisv4HfvQ&_nc_ht=scontent-cdt1-1.xx&oh=12534fcf0d8065475fec20248e50f7b6&oe=5E41941D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151596635543155", "text": "Almeno un migliaio di persone insieme alla Lega ad ARCORE! Banzai!", "post_text": "Almeno un migliaio di persone insieme alla Lega ad ARCORE! Banzai!", "shared_text": "", "time": "2013-08-03 22:26:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1005779_10151596635403155_679702556_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=FESJi61X6mMAQkXCy9bfrf4YZvwsMpEUjpA5ChpQCJnPv-O--AsydOxCg&_nc_ht=scontent-cdt1-1.xx&oh=df9d17df285c7cd3b662490c70a073ed&oe=5E7E1CA1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151596512318155", "text": "Al volante direzione ARCORE.\nNon in villa, ma alla Festa della Lega, mooolto meglio!", "post_text": "Al volante direzione ARCORE.\nNon in villa, ma alla Festa della Lega, mooolto meglio!", "shared_text": "", "time": "2013-08-03 20:37:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151596512318155&id=252306033154", "link": null} +{"post_id": "10151596158118155", "text": "Mercato di via Osoppo, Milano. Le bancarelle smontano, una coppia di nonni con due nipotini cercano fra gli avanzi un po' di frutta e verdura. Mi piacerebbe che le Boldrini, i Pisapia e le Kyenge pensassero anche a questi italiani in difficolt\u00e0, oltre che agli immigrati e ai rom. Mi vergogno per loro.", "post_text": "Mercato di via Osoppo, Milano. Le bancarelle smontano, una coppia di nonni con due nipotini cercano fra gli avanzi un po' di frutta e verdura. Mi piacerebbe che le Boldrini, i Pisapia e le Kyenge pensassero anche a questi italiani in difficolt\u00e0, oltre che agli immigrati e ai rom. Mi vergogno per loro.", "shared_text": "", "time": "2013-08-03 16:36:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/644211_10151596158083155_2116756797_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=ozrWOgvGne0AQmC3Klg_SWSZJR3lAXGrPIIYd8BIT6B0a9iwA8IbIZkUw&_nc_ht=scontent-cdt1-1.xx&oh=f60880c7f00bfadeb9e06379422621ab&oe=5E42AF28", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151596036778155", "text": "Dolcetto dietetico, profiterole con panna montata. Posso??", "post_text": "Dolcetto dietetico, profiterole con panna montata. Posso??", "shared_text": "", "time": "2013-08-03 15:22:18", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1098003_10151596036718155_760245041_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=YA6iibq0VAkAQlREBUY5fTq0OiO6Zb_r0QclKVvuFb1JHSU1Bp-nrKW7g&_nc_ht=scontent-cdt1-1.xx&oh=6ad77cbc027d3397af896557f5b34a11&oe=5E803421", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151595780508155", "text": "Che bella Milano tranquilla!\nIdee, proposte o inviti per oggi a pranzo???", "post_text": "Che bella Milano tranquilla!\nIdee, proposte o inviti per oggi a pranzo???", "shared_text": "", "time": "2013-08-03 10:26:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151595780508155&id=252306033154", "link": null} +{"post_id": "10151594918903155", "text": "Tramonto su Corgeno, grazie alla Lega si scoprono angoli di Lombardia davvero stupendi!", "post_text": "Tramonto su Corgeno, grazie alla Lega si scoprono angoli di Lombardia davvero stupendi!", "shared_text": "", "time": "2013-08-02 20:09:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/601961_10151594918818155_184111094_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=vEngvtwpcqAAQlKIKRpkQdfAFZ6BP9rdhk9WYsuxll2B183ExlOO5M68g&_nc_ht=scontent-cdt1-1.xx&oh=a8b6c741993a47f8de50b01a542a24a3&oe=5E3E7970", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151594747768155", "text": "Oggi sono SODDISFATTO, si pu\u00f2 fare Buona Politica.\nIn pochi giorni sono gi\u00e0 arrivate 600 RICHIESTE per il contributo economico ai GENITORI SEPARATI o DIVORZIATI, voluto da Regione Lombardia: fino a 400 EURO al mese per aiutare chi ha bisogno, solo se RESIDENTE in Lombardia da almeno 5 anni.\nPer la prima volta su questo importante tema, non solo parole ma FATTI CONCRETI!\nPer informazioni, si pu\u00f2 ancora contattare la ASL di zona.\nFate girare, AIUTIAMO ad AIUTARE la nostra gente.", "post_text": "Oggi sono SODDISFATTO, si pu\u00f2 fare Buona Politica.\nIn pochi giorni sono gi\u00e0 arrivate 600 RICHIESTE per il contributo economico ai GENITORI SEPARATI o DIVORZIATI, voluto da Regione Lombardia: fino a 400 EURO al mese per aiutare chi ha bisogno, solo se RESIDENTE in Lombardia da almeno 5 anni.\nPer la prima volta su questo importante tema, non solo parole ma FATTI CONCRETI!\nPer informazioni, si pu\u00f2 ancora contattare la ASL di zona.\nFate girare, AIUTIAMO ad AIUTARE la nostra gente.", "shared_text": "", "time": "2013-08-02 17:41:06", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151594747768155&id=252306033154", "link": null} +{"post_id": "10151594238608155", "text": "Io NON ESULTO per la condanna di nessuno, semmai aspetto la condanna dei TROPPI KABOBO in libert\u00e0.\nIo non sono n\u00e8 amico, n\u00e8 nemico di BERLUSCONI.\nUn avversario politico si combatte con le Idee, non con le sentenze, e si batte se quelle Idee sono migliori.\nTemo che questo Governo non cadr\u00e0, sono troppi gli INTERESSI (soprattutto economici) in ballo\u2026 Altro a destra e a sinistra: quando, da Napolitano a Letta in gi\u00f9, fanno appello \"all'unit\u00e0, alla coesione, all'interesse supremo dell'Italia\", significa che non vogliono mollare la poltrona, e continuare a SVENDERE tutto il possibile.\nE penso che la LEGA debba guardare sempre meno a quello che succede a Roma, e sempre pi\u00f9 (solo) al Nord.\nUsando, adesso o mai pi\u00f9, CORAGGIO e DISUBBIDIENZA.\nIn giro per il Nord (e non solo) ci sono RABBIA e voglia di lottare, TOCCA ALLA LEGA guidare la Rivolta.\nAbbiamo gli uomini e le donne, abbiamo il Progetto.\nDipende da Noi, dipende anche da Voi. FORZA!", "post_text": "Io NON ESULTO per la condanna di nessuno, semmai aspetto la condanna dei TROPPI KABOBO in libert\u00e0.\nIo non sono n\u00e8 amico, n\u00e8 nemico di BERLUSCONI.\nUn avversario politico si combatte con le Idee, non con le sentenze, e si batte se quelle Idee sono migliori.\nTemo che questo Governo non cadr\u00e0, sono troppi gli INTERESSI (soprattutto economici) in ballo\u2026 Altro a destra e a sinistra: quando, da Napolitano a Letta in gi\u00f9, fanno appello \"all'unit\u00e0, alla coesione, all'interesse supremo dell'Italia\", significa che non vogliono mollare la poltrona, e continuare a SVENDERE tutto il possibile.\nE penso che la LEGA debba guardare sempre meno a quello che succede a Roma, e sempre pi\u00f9 (solo) al Nord.\nUsando, adesso o mai pi\u00f9, CORAGGIO e DISUBBIDIENZA.\nIn giro per il Nord (e non solo) ci sono RABBIA e voglia di lottare, TOCCA ALLA LEGA guidare la Rivolta.\nAbbiamo gli uomini e le donne, abbiamo il Progetto.\nDipende da Noi, dipende anche da Voi. FORZA!", "shared_text": "", "time": "2013-08-02 08:23:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151594238608155&id=252306033154", "link": null} +{"post_id": "10151593633078155", "text": "Schiuma party padano a Colico!", "post_text": "Schiuma party padano a Colico!", "shared_text": "", "time": "2013-08-01 23:08:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/547377_10151593633063155_220384597_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=YdhOutC6I5kAQl0--I3c0g1L4ZzPcFVQv8O-nSzdIChCI4zXlmSCn2oOw&_nc_ht=scontent-cdt1-1.xx&oh=7269071703b0e55d1eca961906a91ef1&oe=5E8635C1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151593423573155", "text": "Berlusconi CONDANNATO a 4 anni.\nAdesso sono curioso di sentire come faranno i Kompagni del PD, sia in Parlamento che su Facebook, a giustificare il fatto che sono al Governo con un Condannato...", "post_text": "Berlusconi CONDANNATO a 4 anni.\nAdesso sono curioso di sentire come faranno i Kompagni del PD, sia in Parlamento che su Facebook, a giustificare il fatto che sono al Governo con un Condannato...", "shared_text": "", "time": "2013-08-01 20:20:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151593423573155&id=252306033154", "link": null} +{"post_id": "10151566104873155", "text": "Geniale fare lavori in autostrada un venerd\u00ec di luglio... Pirla! In coda dopo Dalmine.", "post_text": "Geniale fare lavori in autostrada un venerd\u00ec di luglio... Pirla! In coda dopo Dalmine.", "shared_text": "", "time": "2013-07-20 00:06:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1001684_10151566104793155_525852372_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=5WlN_alljmcAQnyAAgozbA_VEfFxzIjIs_r7fz2zSgiry8UvUDMflXDCg&_nc_ht=scontent-cdt1-1.xx&oh=7df066e675b7274450468736b911ba03&oe=5E456915", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151564315853155", "text": "Giovani Padani del Piemonte, presenti!", "post_text": "Giovani Padani del Piemonte, presenti!", "shared_text": "", "time": "2013-07-18 22:50:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1334_10151564315778155_1231080228_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=rat0sfEfgb8AQlEBHYDGLVO-VPUFLi90FF6ZvFHlskY64wwrYzZaQ4Tnw&_nc_ht=scontent-cdt1-1.xx&oh=23720d4ae83cdd655936fac0e35d6c02&oe=5E50500D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151564251798155", "text": "Leghisti (e non solo) a VENARIA, per parlare di Piemonte, di lavoro e di futuro. Banzai!", "post_text": "Leghisti (e non solo) a VENARIA, per parlare di Piemonte, di lavoro e di futuro. Banzai!", "shared_text": "", "time": "2013-07-18 21:59:09", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/946932_10151564251633155_26270913_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=d8GWh1FfBMQAQnS8CzMcKdb2-q66KPjQdi-swXCW2MGE6013N3LRy7plA&_nc_ht=scontent-cdt1-1.xx&oh=e9e284758040dc320ad212c738b5091b&oe=5E7FE4CF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151563468923155", "text": "Regione Lombardia.\nConferenza stampa di presentazione del progetto a favo dei Genitori Separati in difficolt\u00e0. Riusciremo ad aiutare concretamente circa 500 persone, e siamo solo all'inizio!", "post_text": "Regione Lombardia.\nConferenza stampa di presentazione del progetto a favo dei Genitori Separati in difficolt\u00e0. Riusciremo ad aiutare concretamente circa 500 persone, e siamo solo all'inizio!", "shared_text": "", "time": "2013-07-18 11:21:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/8341_10151563468888155_340909523_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=DRycKojNRQ4AQmWIBfHEHk6X3DooSBg9xZbWdG5hX04dOJlDqU1ZitaQw&_nc_ht=scontent-cdt1-1.xx&oh=9d200592052d476905eb6133c20bc2d4&oe=5E4CA6DE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151560726803155", "text": "Non so se arrabbiarmi di pi\u00f9 o di meno...\nNon sopporto falsit\u00e0 e ipocrisia, sono fatto cos\u00ec!\nBuona serata Amici.", "post_text": "Non so se arrabbiarmi di pi\u00f9 o di meno...\nNon sopporto falsit\u00e0 e ipocrisia, sono fatto cos\u00ec!\nBuona serata Amici.", "shared_text": "", "time": "2013-07-16 21:41:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151560726803155&id=252306033154", "link": null} +{"post_id": "10151560661958155", "text": "Il Direttore di tal quotidiano Europa, ovviamente di sinistra, rivolgendosi ai Leghisti, dice quasi con schifo: \"Voi che venite da quelle parti la\".\nSe non ci fossimo noi \"di queste parti qua\" a pagare le tasse per mezza Italia, tu lavoreresti altrove...", "post_text": "Il Direttore di tal quotidiano Europa, ovviamente di sinistra, rivolgendosi ai Leghisti, dice quasi con schifo: \"Voi che venite da quelle parti la\".\nSe non ci fossimo noi \"di queste parti qua\" a pagare le tasse per mezza Italia, tu lavoreresti altrove...", "shared_text": "", "time": "2013-07-16 20:58:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151560661958155&id=252306033154", "link": null} +{"post_id": "10151560617428155", "text": "Del Debbio e Sallusti, pronti in studio", "post_text": "Del Debbio e Sallusti, pronti in studio", "shared_text": "", "time": "2013-07-16 20:32:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1003318_10151560617283155_1270804974_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=4V1FA2NmzK0AQnWfKBA8IGHezVDQ1F-LqpPWXs6QIdZ156fgv2OdTds7g&_nc_ht=scontent-cdt1-1.xx&oh=3266de4daced0df6a0678d9c8178cdcd&oe=5E8A2B9D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151558337753155", "text": "Alcuni KOMPAGNI, sinceri democratici, accoglienti e tolleranti, indignati per le offese alla KYENGE, vengono su questa pagina solo per INSULTARE e minacciare.\nMi fate tanta TENEREZZA, vi sono vicino e vi abbraccio!", "post_text": "Alcuni KOMPAGNI, sinceri democratici, accoglienti e tolleranti, indignati per le offese alla KYENGE, vengono su questa pagina solo per INSULTARE e minacciare.\nMi fate tanta TENEREZZA, vi sono vicino e vi abbraccio!", "shared_text": "", "time": "2013-07-15 15:40:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151558337753155&id=252306033154", "link": null} +{"post_id": "10151557118063155", "text": "Con questa gente, tosta e sorridente, faremo grandi cose! Grazie Missaglia!", "post_text": "Con questa gente, tosta e sorridente, faremo grandi cose! Grazie Missaglia!", "shared_text": "", "time": "2013-07-14 22:54:49", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/999032_10151557118018155_751268757_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=dTM6_v4J2UQAQljND0ZLAlNqWU46VN7yJ_o3ZshG_gFSvU_HM9KYN5yUQ&_nc_ht=scontent-cdt1-1.xx&oh=f328d509900048ea19ca6e92fa1ee4e1&oe=5E44BE8E", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151557063893155", "text": "Quanta gente con la Lega stasera a Missaglia! Avanti!!!", "post_text": "Quanta gente con la Lega stasera a Missaglia! Avanti!!!", "shared_text": "", "time": "2013-07-14 22:14:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/934616_10151557063803155_1296776653_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=hs-Rl--MEncAQlQq-E4zZWXgxNOBlhaqd3ZTFyLpZoH1sfGeEBF-jkcjg&_nc_ht=scontent-cdt1-1.xx&oh=88844a5125fc9b7b124a51a190a893b4&oe=5E4C773F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151556766093155", "text": "E comunque, kyenge o non kyenge, vi aspetto tutti, belli e brutti, stasera alla festa di Missaglia!", "post_text": "E comunque, kyenge o non kyenge, vi aspetto tutti, belli e brutti, stasera alla festa di Missaglia!", "shared_text": "", "time": "2013-07-14 19:45:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151556766093155&id=252306033154", "link": null} +{"post_id": "10151556244343155", "text": "Polenta e missoltini!", "post_text": "Polenta e missoltini!", "shared_text": "", "time": "2013-07-14 14:14:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/995120_10151556244288155_966102816_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=rtFjCH8vQj0AQnDVpRBVWpziVq9pVa5-JNmQRjQz4mEWByaGUx8QFzoTA&_nc_ht=scontent-cdt1-1.xx&oh=d5e255bba3944ed0e1cbb0d4107fc499&oe=5E84ED7A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151556138588155", "text": "Congresso Lega di Como, gente pronta alla Battaglia!", "post_text": "Congresso Lega di Como, gente pronta alla Battaglia!", "shared_text": "", "time": "2013-07-14 12:29:11", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/67417_10151556138543155_1203541066_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=hsSGDOzr_igAQkBhipQmQ-Rdf7iAm740XeCovakWliRXvfPBQzCNiyaGg&_nc_ht=scontent-cdt1-1.xx&oh=312fd446fb35f9227a5e1b3d57e9541f&oe=5E82922A", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151555206143155", "text": "Squadra di Volontari a Marcallo, Banzai!", "post_text": "Squadra di Volontari a Marcallo, Banzai!", "shared_text": "", "time": "2013-07-13 22:18:30", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/999034_10151555206068155_26337127_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=1Ar8l17gmfUAQlF6apmCACsCZQRZgU6Xo7xexXm-unqGI3jdQdxAdJVgA&_nc_ht=scontent-cdt1-1.xx&oh=51049dc95a7e2a8565e34fa9600e0677&oe=5E832326", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151555143098155", "text": "Grande gruppo a Muggi\u00f2!", "post_text": "Grande gruppo a Muggi\u00f2!", "shared_text": "", "time": "2013-07-13 21:26:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/971846_10151555143048155_110538439_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=0xo2YsrLKu0AQnx5wlG8PmbSloWSwl-T9a6o0P_vkZnfp7d87cPyisjgw&_nc_ht=scontent-cdt1-1.xx&oh=cd1a03e649fc3635e3686eac1826563d&oe=5E4CBD06", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151554345778155", "text": "Gazebo in via Papiniano, vanno a ruba i libricini sui Primi 100 giorni di Maroni!", "post_text": "Gazebo in via Papiniano, vanno a ruba i libricini sui Primi 100 giorni di Maroni!", "shared_text": "", "time": "2013-07-13 11:15:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1000487_10151554345728155_1072907381_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=Iav1E8Vc1LAAQmFioSmPWJ8_Bef66FdhwzgbVe8CtDs36ZunTws3EAWhw&_nc_ht=scontent-cdt1-1.xx&oh=730b85241d4117d81f7a518fe74e224e&oe=5E4368CC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151554317193155", "text": "Sudato fradicio... Lavori in casa del sabato mattina...\nLetto a castello dei bimbi smontato, trasferito a spalla (quattro piani di scaleeee) nel palazzo di fronte.\nNon sono fatto per questi sforzi sovrumani!\nMa ogni tanto bisogna far finta di essere l'Uomo di casa. O no?", "post_text": "Sudato fradicio... Lavori in casa del sabato mattina...\nLetto a castello dei bimbi smontato, trasferito a spalla (quattro piani di scaleeee) nel palazzo di fronte.\nNon sono fatto per questi sforzi sovrumani!\nMa ogni tanto bisogna far finta di essere l'Uomo di casa. O no?", "shared_text": "", "time": "2013-07-13 10:31:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151554317193155&id=252306033154", "link": null} +{"post_id": "10151553424158155", "text": "Giovani Padani di Crema e Cremona: Banzai!", "post_text": "Giovani Padani di Crema e Cremona: Banzai!", "shared_text": "", "time": "2013-07-12 23:06:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/994840_10151553424108155_1226156737_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=7FIYgixdZUUAQnzVPTu51O5nay0rR9RL32pBQDacsnasiYpe7CNbRQmOw&_nc_ht=scontent-cdt1-1.xx&oh=0fdbeef05858cb623c11d0e9fbb623c5&oe=5E872E60", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151553359053155", "text": "Si balla... non solo in Borsa, ma anche grazie alla Lega! Evviva il Liscio.", "post_text": "Si balla... non solo in Borsa, ma anche grazie alla Lega! Evviva il Liscio.", "shared_text": "", "time": "2013-07-12 22:08:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1006245_10151553358963155_1286410921_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=MUNBiXpT2TcAQmBVz2oN1PD-wc59_m7EQ_mOX9pyY7rE-y_put7l8vGOQ&_nc_ht=scontent-cdt1-1.xx&oh=2945e08cba475ed6401a8fd2ab72e926&oe=5E47F068", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151551292923155", "text": "Anche i cioccolatini PERNIGOTTI finiscono in mani straniere, oggi a comprare \u00e8 stata un'azienda TURCA.\nA parte che smetter\u00f2 di comprarli, ma \u00e8 l'ennesima dimostrazione che se non MOLLIAMO questo EURO e questa EUROPA perderemo lavoro, produzione, futuro.", "post_text": "Anche i cioccolatini PERNIGOTTI finiscono in mani straniere, oggi a comprare \u00e8 stata un'azienda TURCA.\nA parte che smetter\u00f2 di comprarli, ma \u00e8 l'ennesima dimostrazione che se non MOLLIAMO questo EURO e questa EUROPA perderemo lavoro, produzione, futuro.", "shared_text": "", "time": "2013-07-11 19:20:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151551292923155&id=252306033154", "link": null} +{"post_id": "10151550898658155", "text": "Cartello stradale a Milano... Chi ama la Libert\u00e0, non odia nessuno!", "post_text": "Cartello stradale a Milano... Chi ama la Libert\u00e0, non odia nessuno!", "shared_text": "", "time": "2013-07-11 15:04:12", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/994842_10151550898583155_594492757_n.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=QOZ5lR84wrcAQnSZI5gyLmz00uNA7LKxBeEXsZYsQTFFTfm4gDe2juGWQ&_nc_ht=scontent-cdt1-1.xx&oh=9e16a25395d9280777f0d2d222db188d&oe=5E506697", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151550772568155", "text": "Ora su Telelombardia!\nPer telefonare vale sempre lo 02 320046240.\nNella trasmissione precedente, su 10 telefonate 8 hanno espresso FIDUCIA nella Lega: dai ragazziiiiiii!!!", "post_text": "Ora su Telelombardia!\nPer telefonare vale sempre lo 02 320046240.\nNella trasmissione precedente, su 10 telefonate 8 hanno espresso FIDUCIA nella Lega: dai ragazziiiiiii!!!", "shared_text": "", "time": "2013-07-11 13:06:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151550772568155&id=252306033154", "link": null} +{"post_id": "10151549932603155", "text": "Gruppo di TREVIGLIO! Tanti e belli!", "post_text": "Gruppo di TREVIGLIO! Tanti e belli!", "shared_text": "", "time": "2013-07-10 22:27:50", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/970961_10151549932503155_2113475955_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=TTDEx8YtOtYAQlW0-Oj-F8l8jsCAgruFKqSOZ9oCqXdT8nKA0AB43aBKA&_nc_ht=scontent-cdt1-1.xx&oh=84fea703d6405f7158214ac6ed16d090&oe=5E454A77", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151549092208155", "text": "Difesa europea? Una fregatura! Di fronte agli sbarchi a Lampedusa, l'Europa ci ha lasciati soli; a Bruxelles contano le multinazionali, pi\u00f9 che il volere dei cittadini!\nhttp://www.youtube.com/watch?v=53egZSRSepo\nYOUTUBE.COM\nL'Europa impone scelte incomprensibili, ma quando c'\u00e8 un problema se ne lava le mani", "post_text": "Difesa europea? Una fregatura! Di fronte agli sbarchi a Lampedusa, l'Europa ci ha lasciati soli; a Bruxelles contano le multinazionali, pi\u00f9 che il volere dei cittadini!\nhttp://www.youtube.com/watch?v=53egZSRSepo", "shared_text": "YOUTUBE.COM\nL'Europa impone scelte incomprensibili, ma quando c'\u00e8 un problema se ne lava le mani", "time": "2013-07-10 12:10:54", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAUWGKic0OnETV6&w=476&h=249&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2F53egZSRSepo%2Fhqdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&sx=0&sy=12&sw=480&sh=251&ext=jpg&_nc_hash=AQAQJQTOi4i68TL8", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151549092208155&id=252306033154", "link": "https://www.youtube.com/watch?v=53egZSRSepo&fbclid=IwAR0-y5t4SicJAmBtaqxDrYs32RsCWO6UadiipcqdJFi_Og80jNm6RWx-4Vc"} +{"post_id": "10151547483278155", "text": "", "post_text": "", "shared_text": "", "time": "2013-07-09 16:10:42", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/578354_10151547483233155_1298884647_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=DO12KlRGtY0AQn4aPbEbCzZpExTUBaeeWP5Vz1UuaOI7eHnItH19zGECg&_nc_ht=scontent-cdt1-1.xx&oh=91b6336a2ab2f8f1ed24766251d90245&oe=5E4A16C8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151546122588155", "text": "Tanta gente anche stasera con la Lega a Goito! Giornalisti, cosa scriverete domani???", "post_text": "Tanta gente anche stasera con la Lega a Goito! Giornalisti, cosa scriverete domani???", "shared_text": "", "time": "2013-07-08 22:47:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1044734_10151546122548155_1380356561_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=FeWVHIppax0AQk0nJvk1Cmzi08XZDLKp3r3q3cS3PSXvW4B560mi1YLww&_nc_ht=scontent-cdt1-1.xx&oh=ded9f581ab9ef7cb97fd20aa23f8d340&oe=5E441A58", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151545997388155", "text": "Grandi i \"Militanti alla Griglia\" qui a GOITO!", "post_text": "Grandi i \"Militanti alla Griglia\" qui a GOITO!", "shared_text": "", "time": "2013-07-08 21:16:41", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/992874_10151545997323155_1854314090_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=8i3XcX3JdFoAQk4BKHEt_A91sGwp48F1nioBthYlASA3V27vrZbFkT9tw&_nc_ht=scontent-cdt1-1.xx&oh=42b34727f291b0dcee11b25f4488ed3b&oe=5E85770D", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151545811818155", "text": "Il PAPA ai \"migranti\" dice \"non sappiamo pi\u00f9 piangere\".\nFalso.\nBasta chiedere ai parenti delle vittime dei CLANDESTINI.", "post_text": "Il PAPA ai \"migranti\" dice \"non sappiamo pi\u00f9 piangere\".\nFalso.\nBasta chiedere ai parenti delle vittime dei CLANDESTINI.", "shared_text": "", "time": "2013-07-08 18:45:28", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151545811818155&id=252306033154", "link": null} +{"post_id": "10151544155758155", "text": "Festa STRAPIENA a Cassano Magnago, dove sono i giornalisti gufi???", "post_text": "Festa STRAPIENA a Cassano Magnago, dove sono i giornalisti gufi???", "shared_text": "", "time": "2013-07-07 22:34:27", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1016258_10151544155668155_1033434814_n.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=v883i0AYj04AQmaQXPpii8E9THi1vp2e_ehTkjjYJioa17Kka0-6b9PqQ&_nc_ht=scontent-cdt1-1.xx&oh=e8792a9883fae2d95ccd310016d4ada9&oe=5E4D84E0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151542262043155", "text": "Tanta gente nella bellissima Alserio, a due passi dal lago. Forza Lega, Banzai!", "post_text": "Tanta gente nella bellissima Alserio, a due passi dal lago. Forza Lega, Banzai!", "shared_text": "", "time": "2013-07-06 22:27:14", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/971851_10151542261863155_733218086_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=BKRU2KocO-4AQlSp03v7-mry14iv7sFo5KwBOxurnNM2HpFH8l75P9G1A&_nc_ht=scontent-cdt1-1.xx&oh=82cd84cb8e841ee6a6a0b48f9da94310&oe=5E40CD93", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151542159938155", "text": "Militanti al lavoro a Boffalora Ticino, bravi!!!", "post_text": "Militanti al lavoro a Boffalora Ticino, bravi!!!", "shared_text": "", "time": "2013-07-06 21:06:08", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/933871_10151542159858155_1855511372_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=MN9wIBl4Ht4AQkx4bXpmmgFlIsQza7WpZFVyg4EYh1EUIDspl8LoLD2Nw&_nc_ht=scontent-cdt1-1.xx&oh=9f10ac51bf56218e17f150a4c461697f&oe=5E7E0A3F", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151540186053155", "text": "Grande squadra padana a Castelcovati!", "post_text": "Grande squadra padana a Castelcovati!", "shared_text": "", "time": "2013-07-05 22:30:43", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1044504_10151540185798155_494801751_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=P-R4t8p58wcAQnDNhRSSRV1A8elmb8v5SqKhY-dzagNohHeZWtmSbQKxA&_nc_ht=scontent-cdt1-1.xx&oh=bb5bbd12ec4028c7332b6f99de4e3038&oe=5E7AAE1B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151538783453155", "text": "Qui Telelombardia, svegliaa! Chi mi porta un Caff\u00e8 Virtuale, telefonando allo 02 320046240???", "post_text": "Qui Telelombardia, svegliaa! Chi mi porta un Caff\u00e8 Virtuale, telefonando allo 02 320046240???", "shared_text": "", "time": "2013-07-05 07:04:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151538783453155&id=252306033154", "link": null} +{"post_id": "10151537051938155", "text": "Chiudo l'ufficio e ritiro la Bandiera, ciao Strasburgo!", "post_text": "Chiudo l'ufficio e ritiro la Bandiera, ciao Strasburgo!", "shared_text": "", "time": "2013-07-04 13:31:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1043844_10151537051888155_1473958702_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=V9zVO2gkHSEAQk0mBkjTfFr0W0ZQ9OI0b7y52ou6CmC0eDPkKli0sCCTA&_nc_ht=scontent-cdt1-1.xx&oh=2e91bbb0e61c4e5318beb062cadd12a2&oe=5E89342B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151533201498155", "text": "La MIRTA ha superato quota 6 kili, ride sempre e incomincia a emettere dei suoni e dei gorgheggi, anche se per ora di difficile comprensione, un po' come Bersani.\nSecondo voi quale sar\u00e0 la PRIMA PAROLA della Mirta?", "post_text": "La MIRTA ha superato quota 6 kili, ride sempre e incomincia a emettere dei suoni e dei gorgheggi, anche se per ora di difficile comprensione, un po' come Bersani.\nSecondo voi quale sar\u00e0 la PRIMA PAROLA della Mirta?", "shared_text": "", "time": "2013-07-02 20:33:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151533201498155&id=252306033154", "link": null} +{"post_id": "10151532466703155", "text": "Un abbraccio a tutti voi da Strasburgo! Troppa ipocrisia e troppo \"politicamente corretto\" in questo Palazzo... Io MODERATO? Nooo!", "post_text": "Un abbraccio a tutti voi da Strasburgo! Troppa ipocrisia e troppo \"politicamente corretto\" in questo Palazzo... Io MODERATO? Nooo!", "shared_text": "", "time": "2013-07-02 12:23:55", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/998659_10151532466663155_1194131596_n.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=QmWpzEStwZUAQnMvvkD54tAPva8kxXAeMxdoxUWB6rcVVVBG6ytdUKvqw&_nc_ht=scontent-cdt1-1.xx&oh=0447060800acfc51ab398077123d50e4&oe=5E8B25AD", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151531606023155", "text": "Questa Europa e questo euro rischiano di essere la nostra TOMBA: su la testa e fuori, prima che sia troppo tardi!", "post_text": "Questa Europa e questo euro rischiano di essere la nostra TOMBA: su la testa e fuori, prima che sia troppo tardi!", "shared_text": "", "time": "2013-07-02 00:21:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151531606023155&id=252306033154", "link": null} +{"post_id": "10151528576383155", "text": "Grande la Squadra dei GIOVANI PADANI!", "post_text": "Grande la Squadra dei GIOVANI PADANI!", "shared_text": "", "time": "2013-06-30 13:44:17", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1044798_10151528576328155_372608554_n.jpg?_nc_cat=102&efg=eyJpIjoidCJ9&_nc_ohc=kfTjibnyQWYAQlERtBqqbMZ-m72BQZ6BFGK1tA6qH3EcEdGTIBoQoyzDQ&_nc_ht=scontent-cdt1-1.xx&oh=2974d57fc02d83e8b5bf1d5fbf155b28&oe=5E81252B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151528377783155", "text": "Congresso dei Giovani Padani, fino alle 13 solo della Lombardia: si parte!", "post_text": "Congresso dei Giovani Padani, fino alle 13 solo della Lombardia: si parte!", "shared_text": "", "time": "2013-06-30 10:59:38", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11488_10151528377753155_319535201_n.jpg?_nc_cat=101&efg=eyJpIjoidCJ9&_nc_ohc=Y7m7tTpRkPQAQlo2KYY1IylFz76b6QROqVXmFszgxuWmTHAZhK0sJ0VyA&_nc_ht=scontent-cdt1-1.xx&oh=bd8d951eb052a21061d76a30bfae5a84&oe=5E498AEB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151525788213155", "text": "In SIRIA i \"ribelli\" ultr\u00e0 islamici hanno sgozzato due persone. In EGITTO nelle ultime ore 3 morti, centinaia di feriti e una Guerra Civile all'orizzonte.\nEcco le PRIMAVERE ARABE che gli Stati Uniti e le Sinistre occidentali hanno osannato, alimentato e armato.\nSe ognuno guardasse in casa sua, non sarebbe un male.", "post_text": "In SIRIA i \"ribelli\" ultr\u00e0 islamici hanno sgozzato due persone. In EGITTO nelle ultime ore 3 morti, centinaia di feriti e una Guerra Civile all'orizzonte.\nEcco le PRIMAVERE ARABE che gli Stati Uniti e le Sinistre occidentali hanno osannato, alimentato e armato.\nSe ognuno guardasse in casa sua, non sarebbe un male.", "shared_text": "", "time": "2013-06-28 23:31:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151525788213155&id=252306033154", "link": null} +{"post_id": "10151525740243155", "text": "Grandi i Militanti di SPIRANO!", "post_text": "Grandi i Militanti di SPIRANO!", "shared_text": "", "time": "2013-06-28 22:50:19", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/480117_10151525740168155_820552266_n.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=b41vCBeiKDsAQm-hHrAzHK88u0nnuelsCwBbO-Jgm-czU8ZvkPCflwjuQ&_nc_ht=scontent-cdt1-1.xx&oh=5678ec0a4b1860c4a0bffbc787acfc4c&oe=5E8A1124", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151524791518155", "text": "Decreto del FARE? Chiamatelo decreto del RIMANDARE! Il governo rinvia l'aumento dell'IVA, ma in compenso sull'IRPEF chiede un acconto del 101%!!! Letta vuol vendere fumo all'Europa, ma MASSACRANDO cittadini e imprese ci far\u00e0 solo colare a picco pi\u00f9 in fretta.\nYOUTUBE.COM\nLetta massacra le imprese, l'Europa \u00e8 sempre pi\u00f9 scettica verso il governo italiano", "post_text": "Decreto del FARE? Chiamatelo decreto del RIMANDARE! Il governo rinvia l'aumento dell'IVA, ma in compenso sull'IRPEF chiede un acconto del 101%!!! Letta vuol vendere fumo all'Europa, ma MASSACRANDO cittadini e imprese ci far\u00e0 solo colare a picco pi\u00f9 in fretta.", "shared_text": "YOUTUBE.COM\nLetta massacra le imprese, l'Europa \u00e8 sempre pi\u00f9 scettica verso il governo italiano", "time": "2013-06-28 16:06:14", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBICwIhyPJbkGAQ&w=476&h=249&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FFczSn3ZXn9w%2Fmaxresdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&sx=0&sy=9&sw=1050&sh=549&ext=jpg&_nc_hash=AQAyq-uHs-WlB9l9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151524791518155&id=252306033154", "link": "https://www.youtube.com/watch?v=FczSn3ZXn9w&fbclid=IwAR3_v5n6JZdzbbx0ASMXjMsu65JfE_bg2YsVeqMU3FWGRTT8AR7Uk18o25g"} +{"post_id": "10151524237913155", "text": "Svegliaaa!\nFra poco sono in diretta su Telelombardia.\nPer chiamare in diretta e segnalare problemi o proposte, potete chiamare lo 02 320046240. Daiiiii", "post_text": "Svegliaaa!\nFra poco sono in diretta su Telelombardia.\nPer chiamare in diretta e segnalare problemi o proposte, potete chiamare lo 02 320046240. Daiiiii", "shared_text": "", "time": "2013-06-28 06:54:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151524237913155&id=252306033154", "link": null} +{"post_id": "10151523335418155", "text": "Qui Borgomanero, tanta gente che spegne la TELEVISIONE accende il CERVELLO per parlare di Nord, di Immigrazione, di Lega, di Lavoro. Banzai!", "post_text": "Qui Borgomanero, tanta gente che spegne la TELEVISIONE accende il CERVELLO per parlare di Nord, di Immigrazione, di Lega, di Lavoro. Banzai!", "shared_text": "", "time": "2013-06-27 21:42:05", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1003978_10151523335353155_692732128_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=J71Op5IGglgAQmWIj-M2zQGL00lPFHDCZ2BkDzoAWmpB3SzDn0MJpvwmA&_nc_ht=scontent-cdt1-1.xx&oh=94b037fbfbece279bc32c22688e9fa62&oe=5E82BEE3", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151521231543155", "text": "Sala stra-piena a Milano per un dibattito sul Futuro dell'Europa", "post_text": "Sala stra-piena a Milano per un dibattito sul Futuro dell'Europa", "shared_text": "", "time": "2013-06-26 21:19:44", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/995828_10151521231493155_1599295722_n.jpg?_nc_cat=103&efg=eyJpIjoidCJ9&_nc_ohc=Vlrz1tsw15IAQl3tsfAtLsaRXla61mCW2HCFaBpzsTmoIYoRrROZC9Dag&_nc_ht=scontent-cdt1-1.xx&oh=a65d7ecca371c46765e0f9b664200d4e&oe=5E4EFAEC", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151520287403155", "text": "La RAI, il TG3 Regionale, unica assente alla conferenza stampa per la Legge in aiuto dei Genitori Separati.\nSe alla Rai non interessano le famiglie, a me non interessa il pagamento del CANONE!", "post_text": "La RAI, il TG3 Regionale, unica assente alla conferenza stampa per la Legge in aiuto dei Genitori Separati.\nSe alla Rai non interessano le famiglie, a me non interessa il pagamento del CANONE!", "shared_text": "", "time": "2013-06-26 11:22:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151520287403155&id=252306033154", "link": null} +{"post_id": "10151520269493155", "text": "Conferenza stampa in Regione Lombardia per presentare il Progetto di Legge per la \"Tutela dei GENITORI SEPARATI e DIVORZIATI e dei loro FIGLI\".\nDalle promesse, ai Fatti.", "post_text": "Conferenza stampa in Regione Lombardia per presentare il Progetto di Legge per la \"Tutela dei GENITORI SEPARATI e DIVORZIATI e dei loro FIGLI\".\nDalle promesse, ai Fatti.", "shared_text": "", "time": "2013-06-26 10:56:33", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/11472_10151520269448155_1861245092_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=KFsmUSCI1R0AQmMiCDVCDoywjes9T3NdSHfklGw-ZwXPOC9YZKoUgbKNg&_nc_ht=scontent-cdt1-1.xx&oh=8f6992d932a5a5de223f43494690c655&oe=5E810856", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151520196903155", "text": "Regione Lombardia ieri ha votato: STOP a nuovi Centri commerciali e Grande Distribuzione.\nPromesso in campagna elettorale, FATTO.", "post_text": "Regione Lombardia ieri ha votato: STOP a nuovi Centri commerciali e Grande Distribuzione.\nPromesso in campagna elettorale, FATTO.", "shared_text": "", "time": "2013-06-26 09:06:00", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151520196903155&id=252306033154", "link": null} +{"post_id": "10151519067768155", "text": "Governo Letta in bilico per una presunta trombata.\nSecondo voi cade o sta su? Il Governo, ovviamente...", "post_text": "Governo Letta in bilico per una presunta trombata.\nSecondo voi cade o sta su? Il Governo, ovviamente...", "shared_text": "", "time": "2013-06-25 20:14:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151519067768155&id=252306033154", "link": null} +{"post_id": "10151516876078155", "text": "7 anni a Berlusconi, e sconti di pena agli assassini.\nSempre pi\u00f9 convinto che, per ripartire, dobbiamo mollare questo Paese di Melma: INDIPENDENZA!", "post_text": "7 anni a Berlusconi, e sconti di pena agli assassini.\nSempre pi\u00f9 convinto che, per ripartire, dobbiamo mollare questo Paese di Melma: INDIPENDENZA!", "shared_text": "", "time": "2013-06-24 18:29:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151516876078155&id=252306033154", "link": null} +{"post_id": "10151505793723155", "text": "Qui Telelombardia.\nLa sinistra dice che \"la Lega \u00e8 MORTA, scomparsa\".\nMa fra i primi 20 cittadini che hanno TELEFONATO in diretta, 18 si sono rivolti CON FIDUCIA alla Lega.\nBasta con litigi e PERNACCHIE, al lavoro che si Vince!", "post_text": "Qui Telelombardia.\nLa sinistra dice che \"la Lega \u00e8 MORTA, scomparsa\".\nMa fra i primi 20 cittadini che hanno TELEFONATO in diretta, 18 si sono rivolti CON FIDUCIA alla Lega.\nBasta con litigi e PERNACCHIE, al lavoro che si Vince!", "shared_text": "", "time": "2013-06-19 08:29:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151505793723155&id=252306033154", "link": null} +{"post_id": "10151504769218155", "text": "Grandi i militanti di Osio Sotto, Banzai!", "post_text": "Grandi i militanti di Osio Sotto, Banzai!", "shared_text": "", "time": "2013-06-18 20:13:32", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/954704_10151504769153155_284976911_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=omZ_SlEprLEAQm3Y5PxOmKf2H5UjpHW0FnvmKmpKMxCeqsMNSOL1N0q_g&_nc_ht=scontent-cdt1-1.xx&oh=f9f54c0415dea8be27cd433a401a0775&oe=5E4AAA9B", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151503899133155", "text": "Dietro le quinte di AGORA', in onda fra poco su Rai Tre da Bruxelles. Oggi indosso la Polo Verde degli amici padani di Adro!", "post_text": "Dietro le quinte di AGORA', in onda fra poco su Rai Tre da Bruxelles. Oggi indosso la Polo Verde degli amici padani di Adro!", "shared_text": "", "time": "2013-06-18 08:02:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1001845_10151503899108155_1015770049_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=DX-OgAwFdIIAQkiiTwUhoeaFxJKGjrnJ9wniN7SJa_Isrb6qXwavTzBFA&_nc_ht=scontent-cdt1-1.xx&oh=5bce8e39aaf3a9d8c4236599979e8d4a&oe=5E8BD907", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151502427413155", "text": "Domani sera sar\u00f3 alla Festa Lega di OSIO SOTTO.\nChi di voi viene a fare un salto? Daiiiii", "post_text": "Domani sera sar\u00f3 alla Festa Lega di OSIO SOTTO.\nChi di voi viene a fare un salto? Daiiiii", "shared_text": "", "time": "2013-06-17 13:50:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151502427413155&id=252306033154", "link": null} +{"post_id": "10151501149773155", "text": "Grandi i militanti di Caronno Varesino!", "post_text": "Grandi i militanti di Caronno Varesino!", "shared_text": "", "time": "2013-06-16 22:31:56", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/993767_10151501149588155_1734737532_n.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=NTo9LxFabxgAQkqJE373aDm_-eWGWz7qQp3EmU85b0rpZDOpsA3mcNajw&_nc_ht=scontent-cdt1-1.xx&oh=3cbca20fa35a64313c101f5e912d7460&oe=5E88DA89", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151500047758155", "text": "Per chi vive, lavora e paga al Nord, quello del governo non \u00e8 il \"decreto del fare\", ma \"del prendere\".\nDel prendere per il sedere.", "post_text": "Per chi vive, lavora e paga al Nord, quello del governo non \u00e8 il \"decreto del fare\", ma \"del prendere\".\nDel prendere per il sedere.", "shared_text": "", "time": "2013-06-16 14:41:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151500047758155&id=252306033154", "link": null} +{"post_id": "10151497958613155", "text": "Grigliata sul Lago di Como. Bellooooooo", "post_text": "Grigliata sul Lago di Como. Bellooooooo", "shared_text": "", "time": "2013-06-15 14:53:58", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1017056_10151497958573155_161166308_n.jpg?_nc_cat=106&efg=eyJpIjoidCJ9&_nc_ohc=csTFHTY1IIIAQkdOX4VzqfhgtdvOI-fN1t67KxbzrDfuWyWKfBnlBPHMg&_nc_ht=scontent-cdt1-1.xx&oh=0734def7069cf481a258f8b40373aaa8&oe=5E8A28D0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151496512673155", "text": "Benvenuta MIRTA, oggi sono 6 MESI di sorrisi!", "post_text": "Benvenuta MIRTA, oggi sono 6 MESI di sorrisi!", "shared_text": "", "time": "2013-06-14 22:48:14", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151496512673155&id=252306033154", "link": null} +{"post_id": "10151495348773155", "text": "Oggi \u00e8 Giornata Mondiale della DONAZIONE di SANGUE.\nGrazie a chi Dona: BUONI nei fatti, non solo a parole.", "post_text": "Oggi \u00e8 Giornata Mondiale della DONAZIONE di SANGUE.\nGrazie a chi Dona: BUONI nei fatti, non solo a parole.", "shared_text": "", "time": "2013-06-14 11:05:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151495348773155&id=252306033154", "link": null} +{"post_id": "10151489252913155", "text": "In viaggio per Strasburgo, sotto lo splendido cielo di Lombardia. buona giornata Amici, si ri-parte!", "post_text": "In viaggio per Strasburgo, sotto lo splendido cielo di Lombardia. buona giornata Amici, si ri-parte!", "shared_text": "", "time": "2013-06-11 05:42:53", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/999263_10151489252833155_675869780_n.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=Ku_XIwaoKCwAQmsX4ACRd6cx24TgGVaCf9D8ZUJ1ye-9Phc2fJ6lqXAUw&_nc_ht=scontent-cdt1-1.xx&oh=908c3554605f1d2132cbad0c01a2f269&oe=5E7D08B0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151487777188155", "text": "Dalle 12 alle 13 sar\u00f3 in diretta su ANTENNA 3.\nPer parlarmi, e magari esporre qualche vostro problema, potete telefonare allo 02 320046240. Ciao!", "post_text": "Dalle 12 alle 13 sar\u00f3 in diretta su ANTENNA 3.\nPer parlarmi, e magari esporre qualche vostro problema, potete telefonare allo 02 320046240. Ciao!", "shared_text": "", "time": "2013-06-10 11:55:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151487777188155&id=252306033154", "link": null} +{"post_id": "10151486413688155", "text": "Berlusconi dice \"VORREI PI\u00d9 EUROPA, non meno Europa.\nNON MI PIACE.\nIo invece faccio di tutto per avere meno Roma e meno Bruxelles, pi\u00f9 Autonomie e pi\u00f9 Lavoro.", "post_text": "Berlusconi dice \"VORREI PI\u00d9 EUROPA, non meno Europa.\nNON MI PIACE.\nIo invece faccio di tutto per avere meno Roma e meno Bruxelles, pi\u00f9 Autonomie e pi\u00f9 Lavoro.", "shared_text": "", "time": "2013-06-09 18:24:26", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151486413688155&id=252306033154", "link": null} +{"post_id": "10151486149343155", "text": "", "post_text": "", "shared_text": "", "time": "2013-06-09 15:44:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/1000190_10151486149283155_33672883_n.jpg?_nc_cat=100&efg=eyJpIjoidCJ9&_nc_ohc=sJQ7frAoPq8AQlt7uUvcp81BQFUtKzOeRlSL0xkS7C_LxI_cOKgB_ypyg&_nc_ht=scontent-cdt1-1.xx&oh=f11d568fb801e17502224961b45c632f&oe=5E7F06CE", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151482543358155", "text": "GRANDE!!!\nInsegna MILANESE di nuovo bar in piazza Duomo, da visitare assssolutamente!", "post_text": "GRANDE!!!\nInsegna MILANESE di nuovo bar in piazza Duomo, da visitare assssolutamente!", "shared_text": "", "time": "2013-06-07 15:39:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/576803_10151482543303155_751677205_n.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=1lyZ6bFzHLMAQl30sWrojrtgUL7VLfseLhi1z9XJtbvWwoX8SaNBdedBA&_nc_ht=scontent-cdt1-1.xx&oh=1877af87243f6fd64387849b464960a6&oe=5E4066BB", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151482317123155", "text": "I Siti di Corriere e Repubblica danno grande spazio a una notizia fondamentale: la MINETTI AMAVA BERLUSCONI.\nMa chi se ne frega! Parlare di LAVORO, no???\nOgni Paese ha i giornalisti che si merita... Non mi piace.", "post_text": "I Siti di Corriere e Repubblica danno grande spazio a una notizia fondamentale: la MINETTI AMAVA BERLUSCONI.\nMa chi se ne frega! Parlare di LAVORO, no???\nOgni Paese ha i giornalisti che si merita... Non mi piace.", "shared_text": "", "time": "2013-06-07 12:40:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151482317123155&id=252306033154", "link": null} +{"post_id": "10151482299648155", "text": "Ogni volta che sento uno che mi, rabbioso e arrogante, mi dice \"Spero che la Lega scompaia\", sono sempre pi\u00f9 convinto che abbiamo ragione!", "post_text": "Ogni volta che sento uno che mi, rabbioso e arrogante, mi dice \"Spero che la Lega scompaia\", sono sempre pi\u00f9 convinto che abbiamo ragione!", "shared_text": "", "time": "2013-06-07 12:17:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151482299648155&id=252306033154", "link": null} +{"post_id": "10151481344583155", "text": "Qui Bussolengo, Verona, centinaia di persone in piazza per la Lega. Banzai!", "post_text": "Qui Bussolengo, Verona, centinaia di persone in piazza per la Lega. Banzai!", "shared_text": "", "time": "2013-06-06 22:16:48", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/292634_10151481344458155_141314785_n.png.jpg?_nc_cat=104&efg=eyJpIjoidCJ9&_nc_ohc=5Kj9qEaGQ7sAQmpA_0dzzNoheL_APscGmRNfb37O0w6BcR20Dg_DUBS8g&_nc_ht=scontent-cdt1-1.xx&oh=d70fa77656517b4a4c8cd5adc3afb049&oe=5E4E8853", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151481200318155", "text": "Il governo dice che le Riforme le fanno IN 18 MESI???\nChi di voi avvisa a roma che in AUTUNNO, sia economicamente che politicamente, si decide se si vive o si muore? Io mi sto preparando... E voi?", "post_text": "Il governo dice che le Riforme le fanno IN 18 MESI???\nChi di voi avvisa a roma che in AUTUNNO, sia economicamente che politicamente, si decide se si vive o si muore? Io mi sto preparando... E voi?", "shared_text": "", "time": "2013-06-06 20:12:35", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151481200318155&id=252306033154", "link": null} +{"post_id": "10151480880138155", "text": "Prima di Cormano solito casino...\nMa che pezzo stupendo \u00e8 ODE TO MY FAMILY?!?", "post_text": "Prima di Cormano solito casino...\nMa che pezzo stupendo \u00e8 ODE TO MY FAMILY?!?", "shared_text": "", "time": "2013-06-06 15:28:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151480880138155&id=252306033154", "link": null} +{"post_id": "10151477943508155", "text": "Stanco morto, ma in battaglia e fiducioso.\nWow, siete arrivati a 22.000, GRAZIEEEEEEEEEE", "post_text": "Stanco morto, ma in battaglia e fiducioso.\nWow, siete arrivati a 22.000, GRAZIEEEEEEEEEE", "shared_text": "", "time": "2013-06-04 19:05:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151477943508155&id=252306033154", "link": null} +{"post_id": "10151476542593155", "text": "Ebb\u00e8.....", "post_text": "Ebb\u00e8.....", "shared_text": "", "time": "2013-06-03 23:34:06", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/s320x320/485684_10151476542478155_2118506273_n.png.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=I5U6Lg_F170AQlULPVWbg1j7--Clpjo-jh7GGAOo_4HOQTHHliDs8PzLw&_nc_ht=scontent-cdt1-1.xx&oh=3a8544703ce90b2b4a05c1711e5ba838&oe=5E4BDCBF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151476398888155", "text": "Dietro le quinte di Quinta Colonna...", "post_text": "Dietro le quinte di Quinta Colonna...", "shared_text": "", "time": "2013-06-03 22:03:22", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/10193_10151476398798155_1295768085_n.png.jpg?_nc_cat=107&efg=eyJpIjoidCJ9&_nc_ohc=3o2Dk3D-7i8AQkXM-gYaqZsOG2UbmpEbUqaWcO2aKTX7NeaQ5nZiHTDVQ&_nc_ht=scontent-cdt1-1.xx&oh=b0ddf97a1bfba381b2a4ec10a724f462&oe=5E7B26E1", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151475713783155", "text": "Allegri riconfermato Allenatore del Milan?\nNON MI PIACE proprio.", "post_text": "Allegri riconfermato Allenatore del Milan?\nNON MI PIACE proprio.", "shared_text": "", "time": "2013-06-03 14:06:17", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151475713783155&id=252306033154", "link": null} +{"post_id": "10151472170018155", "text": "Ogni tanto mi sono chiesto se sia valsa davvero la pena fare tutte le battaglie nei miei 23 ANNI DI LEGA.\nLa risposta \u00e8 S\u00cc.", "post_text": "Ogni tanto mi sono chiesto se sia valsa davvero la pena fare tutte le battaglie nei miei 23 ANNI DI LEGA.\nLa risposta \u00e8 S\u00cc.", "shared_text": "", "time": "2013-06-01 15:47:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151472170018155&id=252306033154", "link": null} +{"post_id": "10151470272723155", "text": "Ciao amici, la piccola Rivoluzionaria cresce!", "post_text": "Ciao amici, la piccola Rivoluzionaria cresce!", "shared_text": "", "time": "2013-05-31 12:07:29", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p320x320/296104_10151470272693155_788507518_n.png.jpg?_nc_cat=111&efg=eyJpIjoidCJ9&_nc_ohc=AYFCy1mrzFEAQk_gm0YtE-7oJTo0YfRnvzXzaymjykvFzOql9r06t55LA&_nc_ht=scontent-cdt1-1.xx&oh=12bf2343356fd9fb378d9b5c38ad1273&oe=5E5104CF", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151469067213155", "text": "Confesso...\nOgni tanto ascolto un bel Liscio, su Radio Zeta!", "post_text": "Confesso...\nOgni tanto ascolto un bel Liscio, su Radio Zeta!", "shared_text": "", "time": "2013-05-30 19:37:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151469067213155&id=252306033154", "link": null} +{"post_id": "10151469024163155", "text": "Via Palmanova, coda impressionante verso Milano.\nForse c'\u00e8 Pisapia al semaforo, a regalare rose.\nCosa state ascoltando in radio?\nIo non ve lo dico... Vediamo chi indovina!", "post_text": "Via Palmanova, coda impressionante verso Milano.\nForse c'\u00e8 Pisapia al semaforo, a regalare rose.\nCosa state ascoltando in radio?\nIo non ve lo dico... Vediamo chi indovina!", "shared_text": "", "time": "2013-05-30 19:04:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151469024163155&id=252306033154", "link": null} +{"post_id": "10151464753363155", "text": "Vista la situazione, e continuando ad essere fiducioso, penso che dovremo essere un po' MENO PRUDENTI", "post_text": "Vista la situazione, e continuando ad essere fiducioso, penso che dovremo essere un po' MENO PRUDENTI", "shared_text": "", "time": "2013-05-28 10:25:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151464753363155&id=252306033154", "link": null} +{"post_id": "10151463722748155", "text": "Fra i NON ELETTORI di questi giorni ci sono molti voti passati, e forse anche futuri, della Lega: sono questi cuori che bisogna riconquistare.\nDobbiamo discutere e ragionare sui perch\u00e9 delle SCONFITTE, festeggiare (ma solo stasera!) per le VITTORIE, e da domani al lavoro.\nP.s. Di disfattisti non abbiamo bisogno!", "post_text": "Fra i NON ELETTORI di questi giorni ci sono molti voti passati, e forse anche futuri, della Lega: sono questi cuori che bisogna riconquistare.\nDobbiamo discutere e ragionare sui perch\u00e9 delle SCONFITTE, festeggiare (ma solo stasera!) per le VITTORIE, e da domani al lavoro.\nP.s. Di disfattisti non abbiamo bisogno!", "shared_text": "", "time": "2013-05-27 22:55:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151463722748155&id=252306033154", "link": null} +{"post_id": "10151458987168155", "text": "Pochi minuti fa, un militare francese sarebbe stato ACCOLTELLATO ALLA GOLA a Parigi, e la Polizia pare stia dando la caccia a un Nordafricano.\nSe la notizia fosse confermata, mammamia...\nOriana FALLACI, penso che i tuoi libri dovrebbero essere OBBLIGATORI in tutte le scuole!", "post_text": "Pochi minuti fa, un militare francese sarebbe stato ACCOLTELLATO ALLA GOLA a Parigi, e la Polizia pare stia dando la caccia a un Nordafricano.\nSe la notizia fosse confermata, mammamia...\nOriana FALLACI, penso che i tuoi libri dovrebbero essere OBBLIGATORI in tutte le scuole!", "shared_text": "", "time": "2013-05-25 19:33:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151458987168155&id=252306033154", "link": null} +{"post_id": "10151457112653155", "text": "Quelli che... ascoltano VASCO sulla Milano-Meda e cantano, finestrino abbassato, il sole che entra, le montagne lombarde innevate sullo sfondo. IO!", "post_text": "Quelli che... ascoltano VASCO sulla Milano-Meda e cantano, finestrino abbassato, il sole che entra, le montagne lombarde innevate sullo sfondo. IO!", "shared_text": "", "time": "2013-05-24 19:07:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151457112653155&id=252306033154", "link": null} +{"post_id": "10151456607898155", "text": "INCREDIBILEEEEEEEEE.\nPerfino il Corriere della Sera adesso BOCCIA la Giunta PISAPIA....\nCome mai secondo voi???\nMILANO.CORRIERE.IT\nSe la giunta arancione di Milano \u00e8 un caso di solitudine politica", "post_text": "INCREDIBILEEEEEEEEE.\nPerfino il Corriere della Sera adesso BOCCIA la Giunta PISAPIA....\nCome mai secondo voi???", "shared_text": "MILANO.CORRIERE.IT\nSe la giunta arancione di Milano \u00e8 un caso di solitudine politica", "time": "2013-05-24 13:20:45", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBGywepCsOcgedj&w=112&h=112&url=http%3A%2F%2Fimages.milano.corriereobjects.it%2Fmedia%2Ffoto%2F2013%2F05%2F24%2Fpisa2--140x180.JPG&cfs=1&jq=75&sx=0&sy=40&sw=140&sh=140&ext=jpg&_nc_hash=AQAeRSE7rEPD3C9P", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151456607898155&id=252306033154", "link": "http://milano.corriere.it/milano/notizie/politica/13_maggio_24/se-la-giunta-arancione-di-milano-e-un-caso-di-solitudine-politica-giangiacomo-schiavi-2221294413614.shtml?fbclid=IwAR25KR2LzqTo76u-o1ArC4E4_x24g_XZXipI0Qc1_uMNdbiZ90LqUw5XVFw#.UZ9Fl_4REEE.facebook"} +{"post_id": "10151456274553155", "text": "Il Grillino Vito Crimi ora su Radio 24 dice che \"si pu\u00f2 pensare ad un EURO A DUE VELOCIT\u00c0...\"\nMa dai! Come sempre, arrivano DOPO LA LEGA.\nA noi la sfida di passare DALLE PAROLE AI FATTI.", "post_text": "Il Grillino Vito Crimi ora su Radio 24 dice che \"si pu\u00f2 pensare ad un EURO A DUE VELOCIT\u00c0...\"\nMa dai! Come sempre, arrivano DOPO LA LEGA.\nA noi la sfida di passare DALLE PAROLE AI FATTI.", "shared_text": "", "time": "2013-05-24 08:39:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151456274553155&id=252306033154", "link": null} +{"post_id": "10151454832308155", "text": "VENT'ANNI FA, alle 17.58, morivano per mano della Mafia il magistrato Giovanni FALCONE, la moglie Francesca e diversi uomini della sua scorta.\nGrande UOMO, coerente e coraggioso, ma alla fine ISOLATO e osteggiato proprio da quei \"progressisti\" che ogni anno ipocritamente lo ricordano.\nIeri, oggi e domani, sempre CONTRO TUTTE LE MAFIE!", "post_text": "VENT'ANNI FA, alle 17.58, morivano per mano della Mafia il magistrato Giovanni FALCONE, la moglie Francesca e diversi uomini della sua scorta.\nGrande UOMO, coerente e coraggioso, ma alla fine ISOLATO e osteggiato proprio da quei \"progressisti\" che ogni anno ipocritamente lo ricordano.\nIeri, oggi e domani, sempre CONTRO TUTTE LE MAFIE!", "shared_text": "", "time": "2013-05-23 16:02:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151454832308155&id=252306033154", "link": null} +{"post_id": "10151454590693155", "text": "Appena finito volantinaggio al mercato a BRESCIA.\nOttima accoglienza, tante domande, tante firme raccolte, qualche critica (che ci sta) ma tanti TENETE DURO.\nDai ragazzi, che a Brescia SI VINCE!", "post_text": "Appena finito volantinaggio al mercato a BRESCIA.\nOttima accoglienza, tante domande, tante firme raccolte, qualche critica (che ci sta) ma tanti TENETE DURO.\nDai ragazzi, che a Brescia SI VINCE!", "shared_text": "", "time": "2013-05-23 12:19:21", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151454590693155&id=252306033154", "link": null} +{"post_id": "10151452429563155", "text": "", "post_text": "", "shared_text": "", "time": "2013-05-22 10:45:31", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/981333_10151452429528155_1854938784_o.jpg?_nc_cat=105&efg=eyJpIjoidCJ9&_nc_ohc=Yx_W1YLr40MAQmCb5nCNAef41_ozdZMgDmniP6waF_xsqfZDNJ8qcvslg&_nc_ht=scontent-cdt1-1.xx&oh=7628fc12d5262bb25619122bc6791fd3&oe=5E83560C", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151451131298155", "text": "Se questa \u00e8 una ministra... VERGOGNA!!!\nYOUTUBE.COM\nIl ministro Kyenge non stringe la mano al capogruppo della Lega Nord", "post_text": "Se questa \u00e8 una ministra... VERGOGNA!!!", "shared_text": "YOUTUBE.COM\nIl ministro Kyenge non stringe la mano al capogruppo della Lega Nord", "time": "2013-05-21 18:09:50", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCQG0H2Vrnbg3W4&w=476&h=249&url=http%3A%2F%2Fi3.ytimg.com%2Fvi%2Fz-sFABoK5ls%2Fhqdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&sx=0&sy=109&sw=480&sh=251&ext=jpg&_nc_hash=AQAQb-kZBrkooG1k", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151451131298155&id=252306033154", "link": "https://www.youtube.com/watch?v=z-sFABoK5ls&fbclid=IwAR1pJKZ9_fk86D0tLSdO_DMTcL-8OTRn2iS_VE5srafemDH3hq8UP0xIasc"} +{"post_id": "10151449510883155", "text": "Sala STRAPIENA qui a LODI, con almeno 100 persone in piedi perch\u00e9 non trovano posto, per la presentazione dei candidati della Lega Nord, che risveglieranno La Citt\u00e0 sempre pi\u00f9 vuota, povera e insicura della sinistra.\nMentre gli altri insultano, anche a Lodi la Lega PROPONE.\nDai che SI PU\u00d2 VINCERE!", "post_text": "Sala STRAPIENA qui a LODI, con almeno 100 persone in piedi perch\u00e9 non trovano posto, per la presentazione dei candidati della Lega Nord, che risveglieranno La Citt\u00e0 sempre pi\u00f9 vuota, povera e insicura della sinistra.\nMentre gli altri insultano, anche a Lodi la Lega PROPONE.\nDai che SI PU\u00d2 VINCERE!", "shared_text": "", "time": "2013-05-20 21:47:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151449510883155&id=252306033154", "link": null} +{"post_id": "10151444144383155", "text": "Domani alle 10.30 sar\u00f3 al GAZEBO di via Papiniano (angolo piazza Sant'Agostino) per raccogliere le firme per difendere il REATO DI CLANDESTINIT\u00c0.\nCi saranno anche televisioni e fotografi. Chi viene?", "post_text": "Domani alle 10.30 sar\u00f3 al GAZEBO di via Papiniano (angolo piazza Sant'Agostino) per raccogliere le firme per difendere il REATO DI CLANDESTINIT\u00c0.\nCi saranno anche televisioni e fotografi. Chi viene?", "shared_text": "", "time": "2013-05-17 18:07:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151444144383155&id=252306033154", "link": null} +{"post_id": "10151443453878155", "text": "Ciaoooo, qui Telelombardia!\nPer parlarmi in diretta chiamate lo 02 320046240.", "post_text": "Ciaoooo, qui Telelombardia!\nPer parlarmi in diretta chiamate lo 02 320046240.", "shared_text": "", "time": "2013-05-17 07:02:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151443453878155&id=252306033154", "link": null} +{"post_id": "10151442537253155", "text": "WWW.VIENIAFIRMARE.COM\nQui trovate gli indirizzi di TUTTI I GAZEBO in Lombardia.\nFate girare sulle bacheche!\nVIENIAFIRMARE.COM\n18 e 19 Maggio \u2013 Vieni a Firmare", "post_text": "WWW.VIENIAFIRMARE.COM\nQui trovate gli indirizzi di TUTTI I GAZEBO in Lombardia.\nFate girare sulle bacheche!", "shared_text": "VIENIAFIRMARE.COM\n18 e 19 Maggio \u2013 Vieni a Firmare", "time": "2013-05-16 18:50:41", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCCzy9qeQdtPDAt&w=112&h=112&url=http%3A%2F%2Fwww.vieniafirmare.com%2F18e19%2Fwp-content%2Fgallery%2Fmani%2Fthumbs%2Fthumbs_3-mln-disoccupati-5-mln-stranieri.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQDZWCgtpuN5cVYB", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151442537253155&id=252306033154", "link": "http://WWW.VIENIAFIRMARE.COM/?fbclid=IwAR0dkSaYCR1aw5RhrWn-uZ08g7CRjps-brvAzSqooVCj4jXq-Z5HIZplhqk"} +{"post_id": "10151440860418155", "text": "Dai ragazzi, arriviamo a 1000 condivisioni!", "post_text": "Dai ragazzi, arriviamo a 1000 condivisioni!", "shared_text": "", "time": "2013-05-15 18:41:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151440860418155&id=252306033154", "link": null} +{"post_id": "10151438919913155", "text": "Incazzato??? Altro che incazzato, non si pu\u00f2 morire cos\u00ec! Cosa ne pensate?\nINTELLIGONEWS.IT\n\u00abKabobo assassino anche se fosse valdostano. Ora Pisapia si dia una mossa, Milano \u00e8 piena di clandes", "post_text": "Incazzato??? Altro che incazzato, non si pu\u00f2 morire cos\u00ec! Cosa ne pensate?", "shared_text": "INTELLIGONEWS.IT\n\u00abKabobo assassino anche se fosse valdostano. Ora Pisapia si dia una mossa, Milano \u00e8 piena di clandes", "time": "2013-05-14 15:29:50", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBf0weBSO7FMI5N&w=112&h=112&url=http%3A%2F%2Fwww.intelligonews.it%2Fwp-content%2Fuploads%2F2013%2F05%2Fsalvini-300x202.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQBqFNT7ABwGm5tO", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151438919913155&id=252306033154", "link": "http://www.intelligonews.it/kabobo-assassino-anche-se-fosse-valdostano-ora-pisapia-si-dia-una-mossa-milano-e-piena-di-clandestini-e-la-boldrini-faccia-meno-annunci-ipocriti-jus-soli-grillo-la-pensa-come-la/?fbclid=IwAR2sPivuK1axudJg5P090SKFQpmWPTJOkg8x46QAMs5Rnl1trby32NGiefc"} +{"post_id": "10151437020338155", "text": "", "post_text": "", "shared_text": "", "time": "2013-05-13 12:56:01", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/462528_10151437020258155_1248372147_o.jpg?_nc_cat=110&efg=eyJpIjoidCJ9&_nc_ohc=WLR2q2oxjtkAQnyfDMnOuDi8x7HUY4519FfaCUuCCyD1hJ64YjR-8gxGg&_nc_ht=scontent-cdt1-1.xx&oh=4c3dcbbef91425f075bf79fea80fea9e&oe=5E49BFB8", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151436759838155", "text": "Ieri a Niguarda, il quartiere milanese dove il folle Picconatore ha sparso sangue innocente, in 2 ore al Gazebo della Lega si sono fermati e hanno firmato a sostegno del reato di Clandestinit\u00e0 400 CITTADINI.\nAltri 5 CITTADINI, militanti di sinistra, hanno contestato.\nA chi pensate siano dedicati i Titoli dei giornali?\nQuanti PENNIVENDOLI ANTI-LEGHISTI, che schifo...\nBanzai!", "post_text": "Ieri a Niguarda, il quartiere milanese dove il folle Picconatore ha sparso sangue innocente, in 2 ore al Gazebo della Lega si sono fermati e hanno firmato a sostegno del reato di Clandestinit\u00e0 400 CITTADINI.\nAltri 5 CITTADINI, militanti di sinistra, hanno contestato.\nA chi pensate siano dedicati i Titoli dei giornali?\nQuanti PENNIVENDOLI ANTI-LEGHISTI, che schifo...\nBanzai!", "shared_text": "", "time": "2013-05-13 08:36:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151436759838155&id=252306033154", "link": null} +{"post_id": "10151435964573155", "text": "Notte serena Amici, quanta bella gente ho incontrato oggi: tanti problemi, qualche critica, molte proposte, speranze ed entusiasmo intatti.\nA domani alle 9 su Canale 5 per chi avr\u00e0 voglia, ciauuu", "post_text": "Notte serena Amici, quanta bella gente ho incontrato oggi: tanti problemi, qualche critica, molte proposte, speranze ed entusiasmo intatti.\nA domani alle 9 su Canale 5 per chi avr\u00e0 voglia, ciauuu", "shared_text": "", "time": "2013-05-12 23:06:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151435964573155&id=252306033154", "link": null} +{"post_id": "10151432485118155", "text": "E domani... Prima Comunione del Fede!!!", "post_text": "E domani... Prima Comunione del Fede!!!", "shared_text": "", "time": "2013-05-10 23:49:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151432485118155&id=252306033154", "link": null} +{"post_id": "10151431317883155", "text": "Buond\u00ec!!!\nSono in diretta su 7 GOLD, chiamatemi allo 02 45702312", "post_text": "Buond\u00ec!!!\nSono in diretta su 7 GOLD, chiamatemi allo 02 45702312", "shared_text": "", "time": "2013-05-10 07:11:19", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151431317883155&id=252306033154", "link": null} +{"post_id": "10151428149908155", "text": "Ora entro a San Vittore. Spero anche di uscire!", "post_text": "Ora entro a San Vittore. Spero anche di uscire!", "shared_text": "", "time": "2013-05-08 11:41:32", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151428149908155&id=252306033154", "link": null} +{"post_id": "10151422415363155", "text": "Bene bene.\nLiberata la pagina da un po' di frustrati e sfigati vari.", "post_text": "Bene bene.\nLiberata la pagina da un po' di frustrati e sfigati vari.", "shared_text": "", "time": "2013-05-05 08:57:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151422415363155&id=252306033154", "link": null} +{"post_id": "10151419206643155", "text": "In visita a un centro anti-violenza e a un ospedale finanziati dall'Unione Europea. Soldi ben spesi, vite salvate in un contesto di povert\u00e0 impensabile. Fra poco sfido i 40 gradi vado alla ricerca della casa di Madre Teresa di Calcutta e della sua gente che, almeno alla fine, riesce a sorridere.", "post_text": "In visita a un centro anti-violenza e a un ospedale finanziati dall'Unione Europea. Soldi ben spesi, vite salvate in un contesto di povert\u00e0 impensabile. Fra poco sfido i 40 gradi vado alla ricerca della casa di Madre Teresa di Calcutta e della sua gente che, almeno alla fine, riesce a sorridere.", "shared_text": "", "time": "2013-05-03 10:13:36", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151419206643155&id=252306033154", "link": null} +{"post_id": "10151412535408155", "text": "CONDIVIDETE!", "post_text": "CONDIVIDETE!", "shared_text": "", "time": "2013-04-29 14:10:26", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t1.0-0/cp0/e15/q65/p240x240/943178_10151412535098155_184152227_n.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=fTycMM2BWU8AQl4c9pwFaXuEvQ7tAovj3RhjJrhMZPFgvvFVBXDJHHsmg&_nc_ht=scontent-cdt1-1.xx&oh=7464b4cf700bf2bc6188de42254d0d9c&oe=5E4C2D20", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151411083378155", "text": "Ciao Amici, oggi sono un po' accaldato, vi saluto dall'aeroporto di Dubai! Chiss\u00e0 se hanno una ministra per l'Integrazione anche qui...", "post_text": "Ciao Amici, oggi sono un po' accaldato, vi saluto dall'aeroporto di Dubai! Chiss\u00e0 se hanno una ministra per l'Integrazione anche qui...", "shared_text": "", "time": "2013-04-28 17:57:10", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151411083378155&id=252306033154", "link": null} +{"post_id": "10151410896803155", "text": "dai ragazzi CONDIVIDIAMO!!!!!", "post_text": "dai ragazzi CONDIVIDIAMO!!!!!", "shared_text": "", "time": "2013-04-28 16:31:15", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/473002_10151410896043155_319417446_o.jpg?_nc_cat=109&efg=eyJpIjoidCJ9&_nc_ohc=dALDZE1n6vQAQkJBV2sVs_u95INyFoLCDQdjov1Pl1-Ds7ZN01OwXOkVg&_nc_ht=scontent-cdt1-1.xx&oh=bc321352e1524cf086ca4679227685f2&oe=5E491AD0", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151409591273155", "text": "Liberata la pagina da un po' di pirla: ci sono tanti centri sociali a vostra disposizione, sfogatevi da quelle parti!", "post_text": "Liberata la pagina da un po' di pirla: ci sono tanti centri sociali a vostra disposizione, sfogatevi da quelle parti!", "shared_text": "", "time": "2013-04-27 21:33:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151409591273155&id=252306033154", "link": null} +{"post_id": "10151407282433155", "text": "La salute vale pi\u00f9 dei profitti di qualche multinazionale!!! La Lega continua a battersi a Bruxelles per i diritti dei celiaci.\nYOUTUBE.COM\nLa Lega in Europa continua la battaglia in difesa dei celiaci", "post_text": "La salute vale pi\u00f9 dei profitti di qualche multinazionale!!! La Lega continua a battersi a Bruxelles per i diritti dei celiaci.", "shared_text": "YOUTUBE.COM\nLa Lega in Europa continua la battaglia in difesa dei celiaci", "time": "2013-04-26 14:49:44", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQB1N4J0tepP_ixD&w=476&h=249&url=http%3A%2F%2Fi3.ytimg.com%2Fvi%2FJdO1yDrBL5M%2Fmaxresdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&sx=0&sy=17&sw=1280&sh=670&ext=jpg&_nc_hash=AQC1HdqOsT3oTmTi", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151407282433155&id=252306033154", "link": "https://www.youtube.com/watch?v=JdO1yDrBL5M&fbclid=IwAR3oDtfbXVSaUkNAo87d0HMqXWAdX8_uQd3PfGsGoBEn0rUNRRiXJ0I11wk"} +{"post_id": "10151406994768155", "text": "Che bello riuscre a risolvere dei PROBLEMI CONCRETI dei cittadini, dai lavori per installare ascensori per i disabili, alla sistemazione di alcune case popolari, dal recupero di un giardino comunale, all'aiuto ad alcune mamme per le graduatorie nelle scuole materne.\nOra vado alla tele, dalle 12 alle 13 su ANTENNA 3 e dalle 13 alle 13.40 su TELELOMBARDIA: telefonatemi in diretta allo 02 320046240!", "post_text": "Che bello riuscre a risolvere dei PROBLEMI CONCRETI dei cittadini, dai lavori per installare ascensori per i disabili, alla sistemazione di alcune case popolari, dal recupero di un giardino comunale, all'aiuto ad alcune mamme per le graduatorie nelle scuole materne.\nOra vado alla tele, dalle 12 alle 13 su ANTENNA 3 e dalle 13 alle 13.40 su TELELOMBARDIA: telefonatemi in diretta allo 02 320046240!", "shared_text": "", "time": "2013-04-26 11:59:40", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151406994768155&id=252306033154", "link": null} +{"post_id": "10151405107778155", "text": "Eccomi sbarcato su Rai Tre...\nP.s. Oggi pomeriggio sotto la Madonnina (quante ne ha sentite!) viene a comiziare, per il 25 aprile, la compagna amica-dei-rom Laura Boldrini.\nPrevedo fiumi di buonismo, retorica, faziosit\u00e0 e bla bla.\nPoveri Partigiani, se sapessero come \u00e8 andata a finire...", "post_text": "Eccomi sbarcato su Rai Tre...\nP.s. Oggi pomeriggio sotto la Madonnina (quante ne ha sentite!) viene a comiziare, per il 25 aprile, la compagna amica-dei-rom Laura Boldrini.\nPrevedo fiumi di buonismo, retorica, faziosit\u00e0 e bla bla.\nPoveri Partigiani, se sapessero come \u00e8 andata a finire...", "shared_text": "", "time": "2013-04-25 08:15:07", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151405107778155&id=252306033154", "link": null} +{"post_id": "10151403921198155", "text": "Marted\u00ec 30 Aprile la LEGA NORD sar\u00e0 in ogni piazza della Lombardia per dire SI\u2019 al lavoro e NO a Equitalia!\nYOUTUBE.COM\nVia Equitalia dalle nostre citt\u00e0", "post_text": "Marted\u00ec 30 Aprile la LEGA NORD sar\u00e0 in ogni piazza della Lombardia per dire SI\u2019 al lavoro e NO a Equitalia!", "shared_text": "YOUTUBE.COM\nVia Equitalia dalle nostre citt\u00e0", "time": "2013-04-24 18:41:09", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBTJo1uArj3XGe3&w=476&h=249&url=http%3A%2F%2Fi2.ytimg.com%2Fvi%2F1qOurUxAVQM%2Fmaxresdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&sx=0&sy=17&sw=1280&sh=670&ext=jpg&_nc_hash=AQCi7RgZtzDJIWZa", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151403921198155&id=252306033154", "link": "https://www.youtube.com/watch?feature=player_profilepage&v=1qOurUxAVQM&fbclid=IwAR0JWKsmM1Wn51B2tGBLYrJN0TppsyKm4jA0ZTKklQotziqzinGVZ3yq28k"} +{"post_id": "10151403531843155", "text": "La sinistra a Milano ha deciso di svendere allo Stato una scuola eccellente come la San Giusto\u2026Pisapia, quanti voti buttati via!!\nMATTEOSALVINI.EU\nLa sinistra a Milano ha deciso di svendere allo Stato una scuola eccellente come la San Giusto\u2026Pisap", "post_text": "La sinistra a Milano ha deciso di svendere allo Stato una scuola eccellente come la San Giusto\u2026Pisapia, quanti voti buttati via!!", "shared_text": "MATTEOSALVINI.EU\nLa sinistra a Milano ha deciso di svendere allo Stato una scuola eccellente come la San Giusto\u2026Pisap", "time": "2013-04-24 11:57:03", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQA-8LwMmHz279sK&w=476&h=249&url=http%3A%2F%2Fwww.matteosalvini.eu%2Fwp-content%2Ffiles_mf%2Fsalvinisangue.jpg&cfs=1&jq=75&sx=150&sy=0&sw=877&sh=459&ext=jpg&_nc_hash=AQAVmvdqdr3YtybS", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151403531843155&id=252306033154", "link": "http://www.matteosalvini.eu/senza-categoria/la-sinistra-a-milano-ha-deciso-di-svendere-allo-stato-una-scuola-eccellente-come-la-san-giusto-pisapia-quanti-voti-buttati-via.html?fbclid=IwAR15I7rgk6tGyrZp1frvgH2GBHiaRB5P7TOztX86AHz8ruUTgAElMbK7wVA"} +{"post_id": "10151403434163155", "text": "Matrimoni, e soprattutto adozioni di bambini, per le coppie omosessuali? Io dico di NO.\nQuesto non \u00e8 \"futuro\", questo sarebbe un salto nel buio che cancella radici, certezze, speranze.\nInvece ieri in Francia il\u2026 Altro Parlamento proprio questo ha approvato, per l'esultanza di qualcuno.\nNon mi interessano le \"mode\", io la penso cos\u00ec.\nE voi cosa ne dite?\nAFFARITALIANI.LIBERO.IT\nAffaritaliani.it - Il primo quotidiano on-line", "post_text": "Matrimoni, e soprattutto adozioni di bambini, per le coppie omosessuali? Io dico di NO.\nQuesto non \u00e8 \"futuro\", questo sarebbe un salto nel buio che cancella radici, certezze, speranze.\nInvece ieri in Francia il\u2026 Altro Parlamento proprio questo ha approvato, per l'esultanza di qualcuno.\nNon mi interessano le \"mode\", io la penso cos\u00ec.\nE voi cosa ne dite?", "shared_text": "AFFARITALIANI.LIBERO.IT\nAffaritaliani.it - Il primo quotidiano on-line", "time": "2013-04-24 11:41:08", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAkE0U7e_XMEayE&w=476&h=249&url=http%3A%2F%2Faffaritaliani.libero.it%2Fstatic%2Fupload%2Felio%2F0000%2Felio-e-le-storie-tese-mm-025.jpg&cfs=1&jq=75&sx=0&sy=78&sw=549&sh=287&ext=jpg&_nc_hash=AQDv8gm9kalxQGw9", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151403434163155&id=252306033154", "link": "http://affaritaliani.it/?fbclid=IwAR3oFMBKCCq72J6iogdgqMMLWgwIvQ7mRZqw5UMm9NymbBgLdj-49-v2EFY"} +{"post_id": "10151403150703155", "text": "Ciao Padani!\nQui Linate direzione Bruxelles, si va a combattere.", "post_text": "Ciao Padani!\nQui Linate direzione Bruxelles, si va a combattere.", "shared_text": "", "time": "2013-04-24 06:39:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151403150703155&id=252306033154", "link": null} +{"post_id": "10151400519258155", "text": "Ragazzi, commenti al discorso di Napolitano?", "post_text": "Ragazzi, commenti al discorso di Napolitano?", "shared_text": "", "time": "2013-04-22 18:04:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151400519258155&id=252306033154", "link": null} +{"post_id": "10151397132158155", "text": "Indipendenza? SI'! Sempre e comunque INDIPENDENZA!", "post_text": "Indipendenza? SI'! Sempre e comunque INDIPENDENZA!", "shared_text": "", "time": "2013-04-20 20:09:33", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151397132158155&id=252306033154", "link": null} +{"post_id": "10151395094568155", "text": "PRODI non sar\u00e0 MAI il mio presidente.\nOggi dalle ORE 17 ci troviamo a protestare davanti alla PREFETTURA di Milano (quando chiuder\u00e0 non sar\u00e0 mai troppo tardi) in corso Monforte, con fischietti, bandiere e un po' di MORTADELLA. Vi aspetto!", "post_text": "PRODI non sar\u00e0 MAI il mio presidente.\nOggi dalle ORE 17 ci troviamo a protestare davanti alla PREFETTURA di Milano (quando chiuder\u00e0 non sar\u00e0 mai troppo tardi) in corso Monforte, con fischietti, bandiere e un po' di MORTADELLA. Vi aspetto!", "shared_text": "", "time": "2013-04-19 15:39:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151395094568155&id=252306033154", "link": null} +{"post_id": "10151393216433155", "text": "Pisapia e i Rom, storia di un Amore incompreso dai Milanesi...\nILGIORNALE.IT\nMediatori del Comune per convincere la gente ad accogliere i nomadi", "post_text": "Pisapia e i Rom, storia di un Amore incompreso dai Milanesi...", "shared_text": "ILGIORNALE.IT\nMediatori del Comune per convincere la gente ad accogliere i nomadi", "time": "2013-04-18 12:12:55", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQD_jNelC83vmEf3&w=85&h=85&url=http%3A%2F%2Fwww.ilgiornale.it%2Fsites%2Fdefault%2Fmodules%2Filg_firme%2Fimg%2F46407.png&cfs=1&jq=75&ext=jpg&_nc_hash=AQAlyZAciFYBc-qr", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151393216433155&id=252306033154", "link": "http://www.ilgiornale.it/news/milano/mediatori-comune-convincere-gente-ad-accogliere-i-nomadi-909040.html?fbclid=IwAR0bnF5AJsuy5ngysMM0A1FBKCQlb6SXoMek_KOTvM0LOqd5RFA6NrMPpp0"} +{"post_id": "10151391750738155", "text": "La Turchia non \u00e8 Europa n\u00e9 per storia, n\u00e9 per cultura, n\u00e9 per rispetto dei diritti umani! Se Europa non \u00e8 solo una parola vuota, la Turchia non potr\u00e0 entrarci ora e neppure in futuro!\nYOUTUBE.COM\nMatteo Salvini sull'entrata della Turchia in Europa - 17-04-2013", "post_text": "La Turchia non \u00e8 Europa n\u00e9 per storia, n\u00e9 per cultura, n\u00e9 per rispetto dei diritti umani! Se Europa non \u00e8 solo una parola vuota, la Turchia non potr\u00e0 entrarci ora e neppure in futuro!", "shared_text": "YOUTUBE.COM\nMatteo Salvini sull'entrata della Turchia in Europa - 17-04-2013", "time": "2013-04-17 18:24:36", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDv40WPR7z3SEzv&w=476&h=249&url=http%3A%2F%2Fi4.ytimg.com%2Fvi%2FKD2G7RELHrE%2Fhqdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&sx=0&sy=109&sw=480&sh=251&ext=jpg&_nc_hash=AQD6kPKO8uZWXQ60", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151391750738155&id=252306033154", "link": "https://www.youtube.com/watch?v=KD2G7RELHrE&feature=youtu.be&fbclid=IwAR26tRccmDgmg6cDP3fYQXqHLHo33LzysX7KwwYbOSjiLJ2Iy8DTHlOTTwI"} +{"post_id": "10151389679263155", "text": "Spero che i vermi che con le loro bombe hanno ucciso un bimbo di 9 anni a BOSTON, un bimbo che aveva appena abbracciato il suo pap\u00e0, ebbene spero non riescano pi\u00f9 a dormire per il resto dei loro miseri giorni.", "post_text": "Spero che i vermi che con le loro bombe hanno ucciso un bimbo di 9 anni a BOSTON, un bimbo che aveva appena abbracciato il suo pap\u00e0, ebbene spero non riescano pi\u00f9 a dormire per il resto dei loro miseri giorni.", "shared_text": "", "time": "2013-04-16 12:51:38", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151389679263155&id=252306033154", "link": null} +{"post_id": "10151387685668155", "text": "Sono davvero FELICE.\nHo appena partecipato all'inaugurazione del CENTRO AIUTO ALLA VITA dell'ospedale Buzzi di Milano, che aiuta psicologicamente ed economicamente le donne in difficolt\u00e0 a proseguire la GRAVIDANZA.\nNel mio piccolo ho contribuito alla nascita di questo Centro fin dagli inizi, e in 6 mesi sono nati 25 BIMBI che altrimenti sarebbero\u2026 Altro rimasti in Cielo.\nOggi ho conosciuto una di queste bimbe, vestitino rosa e ciuccio in bocca, e il pap\u00e0 e la mamma alla fine mi hanno detto \"GRAZIE, senza il vostro aiuto forse la nostra piccola non sarebbe mai nata\".\nSapere di avere una PICCOLA PARTE di merito per una Vita che Sorride, mi ha dato una EMOZIONE incredibile. Avanti, al lavoro!", "post_text": "Sono davvero FELICE.\nHo appena partecipato all'inaugurazione del CENTRO AIUTO ALLA VITA dell'ospedale Buzzi di Milano, che aiuta psicologicamente ed economicamente le donne in difficolt\u00e0 a proseguire la GRAVIDANZA.\nNel mio piccolo ho contribuito alla nascita di questo Centro fin dagli inizi, e in 6 mesi sono nati 25 BIMBI che altrimenti sarebbero\u2026 Altro rimasti in Cielo.\nOggi ho conosciuto una di queste bimbe, vestitino rosa e ciuccio in bocca, e il pap\u00e0 e la mamma alla fine mi hanno detto \"GRAZIE, senza il vostro aiuto forse la nostra piccola non sarebbe mai nata\".\nSapere di avere una PICCOLA PARTE di merito per una Vita che Sorride, mi ha dato una EMOZIONE incredibile. Avanti, al lavoro!", "shared_text": "", "time": "2013-04-15 11:50:46", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151387685668155&id=252306033154", "link": null} +{"post_id": "514339531955649", "text": "WWW.TUTTIICRIMINIDEGLIIMMIGRATI.COM\nDate un occhio a questo Sito, \u00e8 impressionante...\nTUTTIICRIMINIDEGLIIMMIGRATI.COM\nTutti i Crimini degli Immigrati", "post_text": "WWW.TUTTIICRIMINIDEGLIIMMIGRATI.COM\nDate un occhio a questo Sito, \u00e8 impressionante...", "shared_text": "TUTTIICRIMINIDEGLIIMMIGRATI.COM\nTutti i Crimini degli Immigrati", "time": "2013-04-15 09:48:20", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQAJE3p7lkzWPSe1&w=476&h=249&url=http%3A%2F%2Ftuttiicriminidegliimmigrati.com%2Fwp-content%2Fuploads%2F2013%2F02%2Frosarno_immigrati_rivolta_ansa_01.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQBobs-XojBhqGx1", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=514339531955649&id=252306033154", "link": "http://WWW.TUTTIICRIMINIDEGLIIMMIGRATI.COM/?fbclid=IwAR0u_hd2dhhPSgsxGE5KDUFJ6Ae5e9F2LiM0JubzbftX3d-aLewksWHvYpM"} +{"post_id": "10151386512573155", "text": "Stasera la MIRTA compie 4 mesi, e vi abbraccia tutti!", "post_text": "Stasera la MIRTA compie 4 mesi, e vi abbraccia tutti!", "shared_text": "", "time": "2013-04-14 19:22:04", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151386512573155&id=252306033154", "link": null} +{"post_id": "10151386233328155", "text": "Ora mi collego, dalla macchina, col TG COM 24", "post_text": "Ora mi collego, dalla macchina, col TG COM 24", "shared_text": "", "time": "2013-04-14 16:32:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151386233328155&id=252306033154", "link": null} +{"post_id": "10151384689708155", "text": "Leggo che oggi a BARI c'erano 50.000 persone giunte dalla Puglia per ascoltare il comizio di Sivlio Berlusconi.\nCacchio, devo dire che pensavo che il CAVALIERE fosse finito, e mi ero sbagliato di grosso. Che ne pensate?", "post_text": "Leggo che oggi a BARI c'erano 50.000 persone giunte dalla Puglia per ascoltare il comizio di Sivlio Berlusconi.\nCacchio, devo dire che pensavo che il CAVALIERE fosse finito, e mi ero sbagliato di grosso. Che ne pensate?", "shared_text": "", "time": "2013-04-13 17:37:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151384689708155&id=252306033154", "link": null} +{"post_id": "10151383372238155", "text": "Pronto al week end di incontri in FRIULI VENEZIA GIULIA.\nDomani alle 16 a UDINE (piazza San Giacomo), alle 18 a FOGLIANO REDIPUGLIA (Gorizia) e alle 20.30 a MONFALCONE. Domenica invece il tour prevede alle 11 un incontro a GRADO, alle 14 a CORDENONS e poi a MEDUNO e ZOPPOLA (Pordenone).\nAmici Furlans, vi aspetto!!!", "post_text": "Pronto al week end di incontri in FRIULI VENEZIA GIULIA.\nDomani alle 16 a UDINE (piazza San Giacomo), alle 18 a FOGLIANO REDIPUGLIA (Gorizia) e alle 20.30 a MONFALCONE. Domenica invece il tour prevede alle 11 un incontro a GRADO, alle 14 a CORDENONS e poi a MEDUNO e ZOPPOLA (Pordenone).\nAmici Furlans, vi aspetto!!!", "shared_text": "", "time": "2013-04-12 18:11:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151383372238155&id=252306033154", "link": null} +{"post_id": "10151382798523155", "text": "Stamattina si torna \"nel fango\", come ai vecchi tempi.\nPronto al sopralluogo nel PALAZZO ABBANDONATO di via Montefeltro 8 a Milano, di fianco all'autostrada, oggi okkupato da clandestini, rom e abusivi di varia natura, che rendono impossibile la vita ai Residenti.\nLa Lega suona la SVEGLIA al Sindaco, speremm!", "post_text": "Stamattina si torna \"nel fango\", come ai vecchi tempi.\nPronto al sopralluogo nel PALAZZO ABBANDONATO di via Montefeltro 8 a Milano, di fianco all'autostrada, oggi okkupato da clandestini, rom e abusivi di varia natura, che rendono impossibile la vita ai Residenti.\nLa Lega suona la SVEGLIA al Sindaco, speremm!", "shared_text": "", "time": "2013-04-12 10:39:31", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151382798523155&id=252306033154", "link": null} +{"post_id": "10151382136203155", "text": "Che bello vedere 230 persone a cena a GOITO, leghisti da vent'anni oppure leghisti appena arrivati, tutti orgogliosi, sorridenti, ogni tanto litigiosi ma incazzati e motivati.\nSe marciamo COMPATTI, non ci ferma nessuno!\nP.s. Adoro i tortelli di zucca...", "post_text": "Che bello vedere 230 persone a cena a GOITO, leghisti da vent'anni oppure leghisti appena arrivati, tutti orgogliosi, sorridenti, ogni tanto litigiosi ma incazzati e motivati.\nSe marciamo COMPATTI, non ci ferma nessuno!\nP.s. Adoro i tortelli di zucca...", "shared_text": "", "time": "2013-04-11 23:45:44", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151382136203155&id=252306033154", "link": null} +{"post_id": "161382550691036", "text": "I PENSIONATI ULTRASETTANTENNI residenti a MILANO possono sottoscrivere una polizza assicurativa GRATUITA contro furti, scippi e rapine!\nPer info Polizia Locale di Milano allo 028845689\nDAILYMOTION.COM\nA Milano i pensionati over 70 hanno diritto a una polizza assicurativa gratuita contro furti, scippi", "post_text": "I PENSIONATI ULTRASETTANTENNI residenti a MILANO possono sottoscrivere una polizza assicurativa GRATUITA contro furti, scippi e rapine!\nPer info Polizia Locale di Milano allo 028845689", "shared_text": "DAILYMOTION.COM\nA Milano i pensionati over 70 hanno diritto a una polizza assicurativa gratuita contro furti, scippi", "time": "2013-04-09 12:39:09", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBoeK76K2HgfDXi&w=476&h=249&url=http%3A%2F%2Fs2.dmcdn.net%2FBUuRO%2F526x297-qO0.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQDx8ORiX7YmUEo7", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=161382550691036&id=252306033154", "link": "http://www.dailymotion.com/video/xyuybe_a-milano-i-pensionati-over-70-hanno-diritto-a-una-polizza-assicurativa-gratuita-contro-furti-scippi_news?fbclid=IwAR1vovs6U3dIX2Ujrh1nMPsWGhhCzmt39tTzos-vkfQx-300Mzu_6jrPOVQ"} +{"post_id": "10151377870293155", "text": "Azz... La bilancia del medico Avis mi assegna 88 KILI...\nConsigli per perdere qualche chilo??", "post_text": "Azz... La bilancia del medico Avis mi assegna 88 KILI...\nConsigli per perdere qualche chilo??", "shared_text": "", "time": "2013-04-09 10:47:08", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151377870293155&id=252306033154", "link": null} +{"post_id": "10151376489258155", "text": "Secondo voi chi ha sulla coscienza gli ultimi 3 SUICIDI di Civitanova Marche, suicidi per colpa della crisi?", "post_text": "Secondo voi chi ha sulla coscienza gli ultimi 3 SUICIDI di Civitanova Marche, suicidi per colpa della crisi?", "shared_text": "", "time": "2013-04-08 14:49:29", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151376489258155&id=252306033154", "link": null} +{"post_id": "524563530918189", "text": "La LEGA mantiene le promesse: mentre Roma \u00e8 nel caos, la giunta MARONI pensa ai cittadini e ai Comuni in difficolt\u00e0.\nYOUTUBE.COM\nA Roma \u00e8 il caos, in Lombardia si lavora sulle priorit\u00e0 dei paese reale", "post_text": "La LEGA mantiene le promesse: mentre Roma \u00e8 nel caos, la giunta MARONI pensa ai cittadini e ai Comuni in difficolt\u00e0.", "shared_text": "YOUTUBE.COM\nA Roma \u00e8 il caos, in Lombardia si lavora sulle priorit\u00e0 dei paese reale", "time": "2013-04-05 11:31:40", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQBGvplDAbgG4906&w=320&h=167&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FpdYxpuZxeDE%2Fmqdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&ext=jpg&_nc_hash=AQCY2C0ug2ryhrBh", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=524563530918189&id=252306033154", "link": "https://www.youtube.com/watch?v=pdYxpuZxeDE&fbclid=IwAR3_UTFuJtTih8lfxdtClyqVqaGz7BZmCf9B2Q8RbDB5VbAXthVaPna4HPc"} +{"post_id": "10151371077313155", "text": "Sono in diretta su LA 7.\nQualcuno si scandalizza per lo scherzo radiofonico della ZANZARA che, con un'imitazione, ha fatto fare una figuraccia al professor Onida.\nPerch\u00e9 le IMITAZIONI di BOSSI e MARONI non hanno mai scandalizzato nessuno???\nSempre e comunque, viva la SATIRA e la ZANZARA.", "post_text": "Sono in diretta su LA 7.\nQualcuno si scandalizza per lo scherzo radiofonico della ZANZARA che, con un'imitazione, ha fatto fare una figuraccia al professor Onida.\nPerch\u00e9 le IMITAZIONI di BOSSI e MARONI non hanno mai scandalizzato nessuno???\nSempre e comunque, viva la SATIRA e la ZANZARA.", "shared_text": "", "time": "2013-04-05 10:03:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151371077313155&id=252306033154", "link": null} +{"post_id": "10151368126368155", "text": "E adesso passo su TELELOMBARDIA (il luogo \u00e8 lo stesso ma cambia il canale) sempre per ascoltare VOI.", "post_text": "E adesso passo su TELELOMBARDIA (il luogo \u00e8 lo stesso ma cambia il canale) sempre per ascoltare VOI.", "shared_text": "", "time": "2013-04-03 13:00:11", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151368126368155&id=252306033154", "link": null} +{"post_id": "10151367157343155", "text": "Confesso che mi sono preso 4 giorni di totale riposo.\nDa domani SI RIPARTE a tutta forza!\nRicordandosi che l'OBIETTIVO ultimo della Lega, e di tutti i nostri splendidi MILITANTI, rimane sempre e comunque l'INDIPENDENZA DELLA PADANIA. Banzai!", "post_text": "Confesso che mi sono preso 4 giorni di totale riposo.\nDa domani SI RIPARTE a tutta forza!\nRicordandosi che l'OBIETTIVO ultimo della Lega, e di tutti i nostri splendidi MILITANTI, rimane sempre e comunque l'INDIPENDENZA DELLA PADANIA. Banzai!", "shared_text": "", "time": "2013-04-02 22:17:12", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151367157343155&id=252306033154", "link": null} +{"post_id": "414798155282146", "text": "Vogliamo risolvere DAVVERO il problema del sovraffollamento delle carceri? Facciamo scontare la pena ai DETENUTI STRANIERI nel PAESE D'ORIGINE!\nAvremo carceri pi\u00f9 sicure e vivibili e risparmieremo MILIARDI DI EURO di soldi pubblici! Banzai!!!\nYOUTUBE.COM\nI detenuti stranieri scontino la pena nel Paese d'origine", "post_text": "Vogliamo risolvere DAVVERO il problema del sovraffollamento delle carceri? Facciamo scontare la pena ai DETENUTI STRANIERI nel PAESE D'ORIGINE!\nAvremo carceri pi\u00f9 sicure e vivibili e risparmieremo MILIARDI DI EURO di soldi pubblici! Banzai!!!", "shared_text": "YOUTUBE.COM\nI detenuti stranieri scontino la pena nel Paese d'origine", "time": "2013-04-02 11:11:58", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQCT9dL8bJ7ij193&w=476&h=249&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2Fd-Txay3qP_U%2Fmaxresdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&ext=jpg&_nc_hash=AQBFW9KhNsPQ57DT", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=414798155282146&id=252306033154", "link": "https://www.youtube.com/watch?v=d-Txay3qP_U&feature=youtu.be&fbclid=IwAR3uIVcwW5tGB-uNqukaPx3lDqBjd7ayh_XYGd_Tk7CX1fIJ1Mn5rEMT9LI"} +{"post_id": "306963076098636", "text": "Governo TECNICO con Monti e Bersani? NO GRAZIE, ABBIAMO GIA' DATO!!! Serve un governo per affrontare i problemi del paese reale, ma se dobbiamo continuare a perdere tempo con i proclami di Grillo e di Bersani, allora meglio tornare a votare!\nYOUTUBE.COM\nGoverno tecnico Monti - Bersani? No, grazie!", "post_text": "Governo TECNICO con Monti e Bersani? NO GRAZIE, ABBIAMO GIA' DATO!!! Serve un governo per affrontare i problemi del paese reale, ma se dobbiamo continuare a perdere tempo con i proclami di Grillo e di Bersani, allora meglio tornare a votare!", "shared_text": "YOUTUBE.COM\nGoverno tecnico Monti - Bersani? No, grazie!", "time": "2013-03-30 18:29:02", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQDCeIKHBy5Q5HA6&w=320&h=167&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FLoP0oAv-bfs%2Fmqdefault.jpg%3Ffeature%3Dog&cfs=1&jq=75&ext=jpg&_nc_hash=AQBObPnpYwfcyeZG", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=306963076098636&id=252306033154", "link": "https://www.youtube.com/watch?v=LoP0oAv-bfs&fbclid=IwAR0pHPGJgD5LjPgOk8Ynvnkpy8CPEL18NmCMchPZStI5fCeF23kg806kL6k"} +{"post_id": "10151361020488155", "text": "Se Milano perde la MEMORIA, perde anche il suo Futuro.\nCome ricordereste Enzo JANNACCI?\nIntitolandogli che cosa nella nostra Citt\u00e0?", "post_text": "Se Milano perde la MEMORIA, perde anche il suo Futuro.\nCome ricordereste Enzo JANNACCI?\nIntitolandogli che cosa nella nostra Citt\u00e0?", "shared_text": "", "time": "2013-03-30 14:35:48", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151361020488155&id=252306033154", "link": null} +{"post_id": "10151360757238155", "text": "Un sorriso e un pensiero per il Grande ENZO JANNACCI.\nPasseggia con i Scarp del Tennis anche Lass\u00f9!", "post_text": "Un sorriso e un pensiero per il Grande ENZO JANNACCI.\nPasseggia con i Scarp del Tennis anche Lass\u00f9!", "shared_text": "", "time": "2013-03-30 10:12:55", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151360757238155&id=252306033154", "link": null} +{"post_id": "10151358661153155", "text": "Notte serena Amici, se la gente del Nord non si sveglia nemmeno adesso, addio...\nA duman matina, per chi avr\u00e0 voglia, dalle 8 su Rai Tre.\nCiauuu!", "post_text": "Notte serena Amici, se la gente del Nord non si sveglia nemmeno adesso, addio...\nA duman matina, per chi avr\u00e0 voglia, dalle 8 su Rai Tre.\nCiauuu!", "shared_text": "", "time": "2013-03-29 00:42:09", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151358661153155&id=252306033154", "link": null} +{"post_id": "10151358468953155", "text": "Sto registrando Porta a Porta di stasera, oggetto della discussione la palude romana...", "post_text": "Sto registrando Porta a Porta di stasera, oggetto della discussione la palude romana...", "shared_text": "", "time": "2013-03-28 22:33:50", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151358468953155&id=252306033154", "link": null} +{"post_id": "10151356476473155", "text": "Stop ai venditori abusivi e sequestro della loro merce.\nStop ai nuovi centri commerciali.\nRiduzione di IMU, Cosap e tassa sulle insegne.\nNo all'Area C e ad altre demenziali tasse comunali.\nVia il redditometro e stop alla persecuzione fiscale.\nE magari cominciare a far pagare le tasse a chi non le paga, ad esempio alle prostitute. Che ne dite?", "post_text": "Stop ai venditori abusivi e sequestro della loro merce.\nStop ai nuovi centri commerciali.\nRiduzione di IMU, Cosap e tassa sulle insegne.\nNo all'Area C e ad altre demenziali tasse comunali.\nVia il redditometro e stop alla persecuzione fiscale.\nE magari cominciare a far pagare le tasse a chi non le paga, ad esempio alle prostitute. Che ne dite?", "shared_text": "", "time": "2013-03-27 18:27:52", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151356476473155&id=252306033154", "link": null} +{"post_id": "10151356416668155", "text": "Quanti NEGOZI stanno morendo di TASSE...\nQuali interventi suggerite per bloccare questo disastro nelle nostre citt\u00e0? No IMU? Stop alle aperture di centri commerciali? Riduzione fiscale? Altro?", "post_text": "Quanti NEGOZI stanno morendo di TASSE...\nQuali interventi suggerite per bloccare questo disastro nelle nostre citt\u00e0? No IMU? Stop alle aperture di centri commerciali? Riduzione fiscale? Altro?", "shared_text": "", "time": "2013-03-27 17:32:27", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151356416668155&id=252306033154", "link": null} +{"post_id": "498197700239627", "text": "Chi fatica a tirare la fine del mese non vuole chiacchiere ma lavoro e certezze: la LEGA lo ha capito da un pezzo, \u00e8 ora che anche gli altri si sveglino!\nMATTEOSALVINI.EU\nLe dichiarazioni di Battiato e la legge elettorale? Non danno da mangiare a nessuno. Fare buona poli", "post_text": "Chi fatica a tirare la fine del mese non vuole chiacchiere ma lavoro e certezze: la LEGA lo ha capito da un pezzo, \u00e8 ora che anche gli altri si sveglino!", "shared_text": "MATTEOSALVINI.EU\nLe dichiarazioni di Battiato e la legge elettorale? Non danno da mangiare a nessuno. Fare buona poli", "time": "2013-03-27 17:19:23", "image": "https://external-cdt1-1.xx.fbcdn.net/safe_image.php?d=AQA-8LwMmHz279sK&w=476&h=249&url=http%3A%2F%2Fwww.matteosalvini.eu%2Fwp-content%2Ffiles_mf%2Fsalvinisangue.jpg&cfs=1&jq=75&ext=jpg&_nc_hash=AQBGpkfGSD_nt-k4", "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=498197700239627&id=252306033154", "link": "http://www.matteosalvini.eu/senza-categoria/le-dichiarazioni-di-battiato-e-la-legge-elettorale-non-danno-da-mangiare-a-nessuno-fare-buona-politica-significa-parlare-meno-e-risolvere-i-problemi.html?fbclid=IwAR1i9NVFR4Cht_-DJU-vi_mQQ4n6hwXIw5a5WYd1dlj_YRIA3mWR8_ZF-Mc"} +{"post_id": "10151353736428155", "text": "La signora BOLDRINI come Presidente del Consiglio??\nIn un Paese Nordafricano magari, visto che si preoccupa tanto degli immigrati e un po' meno della Nostra Gente.", "post_text": "La signora BOLDRINI come Presidente del Consiglio??\nIn un Paese Nordafricano magari, visto che si preoccupa tanto degli immigrati e un po' meno della Nostra Gente.", "shared_text": "", "time": "2013-03-26 08:56:05", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151353736428155&id=252306033154", "link": null} +{"post_id": "10151350558328155", "text": "Beppe GRILLO dice che i commenti negativi e le critiche sul suo Blog sono di \"gente pagata per attaccarlo\".\nChi non accetta la critica e si ritiene l'unico depositario della Verit\u00e0, mi preoccupa e NON MI PIACE.", "post_text": "Beppe GRILLO dice che i commenti negativi e le critiche sul suo Blog sono di \"gente pagata per attaccarlo\".\nChi non accetta la critica e si ritiene l'unico depositario della Verit\u00e0, mi preoccupa e NON MI PIACE.", "shared_text": "", "time": "2013-03-24 16:32:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151350558328155&id=252306033154", "link": null} +{"post_id": "10151349272413155", "text": "Stasera sono fuori a cena da \"ragazzo padre\" (alla bella et\u00e0 di 40 anni!) sul lago di Garda insieme a Federico, alla Mirta e a un amico anche lui con bimbo.\nChiss\u00e0 cosa pensano ai tavoli vicini... Banzai!", "post_text": "Stasera sono fuori a cena da \"ragazzo padre\" (alla bella et\u00e0 di 40 anni!) sul lago di Garda insieme a Federico, alla Mirta e a un amico anche lui con bimbo.\nChiss\u00e0 cosa pensano ai tavoli vicini... Banzai!", "shared_text": "", "time": "2013-03-23 22:14:41", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151349272413155&id=252306033154", "link": null} +{"post_id": "10151346573578155", "text": "Buon venerd\u00ec gente!\nStamattina incontro residenti e commercianti ai mercati milanesi di Baggio, in via Pistoia e via Fratelli di Dio.\nOggi \u00e8 l'ultima delle CINQUE GIORNATE!\nMa tranquilli, per il Futuro il Bello deve ancora venire...", "post_text": "Buon venerd\u00ec gente!\nStamattina incontro residenti e commercianti ai mercati milanesi di Baggio, in via Pistoia e via Fratelli di Dio.\nOggi \u00e8 l'ultima delle CINQUE GIORNATE!\nMa tranquilli, per il Futuro il Bello deve ancora venire...", "shared_text": "", "time": "2013-03-22 09:20:49", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151346573578155&id=252306033154", "link": null} +{"post_id": "10151339533548155", "text": "Dopo la perdita del vicesindaco, dell'assessore al Bilancio e di quello ai Lavori Pubblici, ora l'assessore alla Cultura: la Giunta PISAPIA continua a PERDERE PEZZI...\nOra telefonate in diretta su RADIO POPOLARE: su 8 ascoltatori (elettori) di sinistra, 8 delusi da Pisapia!\nLa MILANO ARANCIONE \u00e8 gi\u00e0 al tramonto? MI PIACE.", "post_text": "Dopo la perdita del vicesindaco, dell'assessore al Bilancio e di quello ai Lavori Pubblici, ora l'assessore alla Cultura: la Giunta PISAPIA continua a PERDERE PEZZI...\nOra telefonate in diretta su RADIO POPOLARE: su 8 ascoltatori (elettori) di sinistra, 8 delusi da Pisapia!\nLa MILANO ARANCIONE \u00e8 gi\u00e0 al tramonto? MI PIACE.", "shared_text": "", "time": "2013-03-18 10:03:39", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151339533548155&id=252306033154", "link": null} +{"post_id": "10151338890373155", "text": "Bella serata casalinga, a parlare di Futuro, con AMICI.\nE la Politica senza Amici non sarebbe nulla.\nNEVICA a Milano, adoro la neve! Notte serena.", "post_text": "Bella serata casalinga, a parlare di Futuro, con AMICI.\nE la Politica senza Amici non sarebbe nulla.\nNEVICA a Milano, adoro la neve! Notte serena.", "shared_text": "", "time": "2013-03-18 00:10:13", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151338890373155&id=252306033154", "link": null} +{"post_id": "10151337784623155", "text": "Aiuto, siamo alla FOLLIA!!!\nSu WWW.CORRIERE.IT (sezione di Roma) leggo che in un asilo hanno ANNULLATO LA FESTA DEL PAPA' per non turbare un bimbo che ha \"due mamme\" omosessuali.\nAttendo qualche \"democratico di sinistra\" che invece mi spieghi che si tratta di \"progresso e tolleranza\"...\nE voi cosa ne pensate?", "post_text": "Aiuto, siamo alla FOLLIA!!!\nSu WWW.CORRIERE.IT (sezione di Roma) leggo che in un asilo hanno ANNULLATO LA FESTA DEL PAPA' per non turbare un bimbo che ha \"due mamme\" omosessuali.\nAttendo qualche \"democratico di sinistra\" che invece mi spieghi che si tratta di \"progresso e tolleranza\"...\nE voi cosa ne pensate?", "shared_text": "", "time": "2013-03-17 11:18:37", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151337784623155&id=252306033154", "link": "http://WWW.CORRIERE.IT/?fbclid=IwAR1I1RO-tVd7vFyL15S4wytTK-FXp37j90NvKKqxQ_oGyG5CAezky9IZFzQ"} +{"post_id": "10151336905223155", "text": "Un'intera giornata passata con una BIMBA di 3 MESI, mi fa dimenticare tutte le schifezze di questo mondo.\nNotte SERENA amici!", "post_text": "Un'intera giornata passata con una BIMBA di 3 MESI, mi fa dimenticare tutte le schifezze di questo mondo.\nNotte SERENA amici!", "shared_text": "", "time": "2013-03-17 00:03:34", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151336905223155&id=252306033154", "link": null} +{"post_id": "10151336375313155", "text": "Amici, PROPOSTE interessanti per STASERA?", "post_text": "Amici, PROPOSTE interessanti per STASERA?", "shared_text": "", "time": "2013-03-16 17:28:15", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151336375313155&id=252306033154", "link": null} +{"post_id": "502815343110693", "text": "Su WWW.AFFARITALIANI.IT (sezione Milanoitalia) c'\u00e8 un sondaggio che chiede ai lettori \"Che giudizio dai su Pisapia dopo quasi due anni di mandato?\".\nBene, dopo oltre 13.000 voti i giudizi \"insufficiente o PESSIMO\" superano l'86%... Milanesi, che dite??\nAFFARITALIANI.LIBERO.IT\nAffaritaliani.it - Il primo quotidiano on-line", "post_text": "Su WWW.AFFARITALIANI.IT (sezione Milanoitalia) c'\u00e8 un sondaggio che chiede ai lettori \"Che giudizio dai su Pisapia dopo quasi due anni di mandato?\".\nBene, dopo oltre 13.000 voti i giudizi \"insufficiente o PESSIMO\" superano l'86%... Milanesi, che dite??", "shared_text": "AFFARITALIANI.LIBERO.IT\nAffaritaliani.it - Il primo quotidiano on-line", "time": "2013-03-15 12:38:25", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=502815343110693&id=252306033154", "link": "http://WWW.AFFARITALIANI.IT/?fbclid=IwAR0U5JezStUqNnKtEDZ7IeTMsr6oKIKGwPct9XiclNIPJbP-L_phBfoMk1k"} +{"post_id": "10151333677303155", "text": "Buon venerd\u00ec Amici.\nIeri mi sono DIMESSO dal Parlamento di ROMA per rimanere a Bruxelles e per essere sempre pi\u00f9 vicino a Milano, alla LOMBARDIA e alla nostra gente del Nord.\nIl LAVORO non manca, l'ENTUSIASMO neanche.\nBanzai!", "post_text": "Buon venerd\u00ec Amici.\nIeri mi sono DIMESSO dal Parlamento di ROMA per rimanere a Bruxelles e per essere sempre pi\u00f9 vicino a Milano, alla LOMBARDIA e alla nostra gente del Nord.\nIl LAVORO non manca, l'ENTUSIASMO neanche.\nBanzai!", "shared_text": "", "time": "2013-03-15 09:41:22", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151333677303155&id=252306033154", "link": null} +{"post_id": "10151332705753155", "text": "Pare che bersani e grillo si stiano scannando per le presidenze di camera e senato. Che tristezza...secondo voi come va a finire?", "post_text": "Pare che bersani e grillo si stiano scannando per le presidenze di camera e senato. Che tristezza...secondo voi come va a finire?", "shared_text": "", "time": "2013-03-14 19:15:59", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151332705753155&id=252306033154", "link": null} +{"post_id": "10151332470428155", "text": "Perch\u00e9 in autostrada in Svizzera tutti rispettano il limite di velocit\u00e0, e da noi invece no???", "post_text": "Perch\u00e9 in autostrada in Svizzera tutti rispettano il limite di velocit\u00e0, e da noi invece no???", "shared_text": "", "time": "2013-03-14 15:28:45", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151332470428155&id=252306033154", "link": null} +{"post_id": "10151330932288155", "text": "Visto il caos a roma, mi pare che Bersani si sia messo nell'angolo da solo. Secondo voi recupereranno Matteo Renzi?", "post_text": "Visto il caos a roma, mi pare che Bersani si sia messo nell'angolo da solo. Secondo voi recupereranno Matteo Renzi?", "shared_text": "", "time": "2013-03-13 18:25:23", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151330932288155&id=252306033154", "link": null} +{"post_id": "10151328594253155", "text": "", "post_text": "", "shared_text": "", "time": "2013-03-12 15:36:24", "image": "https://scontent-cdt1-1.xx.fbcdn.net/v/t31.0-0/cp0/e15/q65/s320x320/665409_10151100929003155_14227179_o.jpg?_nc_cat=108&efg=eyJpIjoidCJ9&_nc_ohc=DbsptX2WmsoAQlG-rsA9Fcn11XdLguB3c5NunfUz8ghHbdDZCmTdKTzQw&_nc_ht=scontent-cdt1-1.xx&oh=e37e8ba973e9b6f181c093def90ba551&oe=5E456E00", "likes": 0, "comments": 0, "shares": 0, "post_url": null, "link": null} +{"post_id": "10151325832063155", "text": "Dai che vi preparo il CAFFE': zucchero o no?\nPer \"ordinarlo\", chiamatemi ora in diretta a Telelombardia al numero 02 320046240. Buona settimana!", "post_text": "Dai che vi preparo il CAFFE': zucchero o no?\nPer \"ordinarlo\", chiamatemi ora in diretta a Telelombardia al numero 02 320046240. Buona settimana!", "shared_text": "", "time": "2013-03-11 07:07:02", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151325832063155&id=252306033154", "link": null} +{"post_id": "10151317059113155", "text": "Case popolari, sicurezza, aiuti alle aziende, difesa dell'ambiente e dei parchi, lavoro, agricoltura, sostegno ai disabili, treni pendolari, riduzione delle tasse.\nQuali sono secondo voi le TRE PRIORIT\u00c0 che deve affrontare il prossimo Governatore della LOMBARDIA?", "post_text": "Case popolari, sicurezza, aiuti alle aziende, difesa dell'ambiente e dei parchi, lavoro, agricoltura, sostegno ai disabili, treni pendolari, riduzione delle tasse.\nQuali sono secondo voi le TRE PRIORIT\u00c0 che deve affrontare il prossimo Governatore della LOMBARDIA?", "shared_text": "", "time": "2013-03-07 18:30:16", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151317059113155&id=252306033154", "link": null} +{"post_id": "10151315958003155", "text": "Prime VACCINAZIONI fatte alla Mirta.\nLei se la rideva, la pi\u00f9 preoccupata era la Mamma...", "post_text": "Prime VACCINAZIONI fatte alla Mirta.\nLei se la rideva, la pi\u00f9 preoccupata era la Mamma...", "shared_text": "", "time": "2013-03-07 10:46:53", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151315958003155&id=252306033154", "link": null} +{"post_id": "10151310731863155", "text": "Certo che rimanere con l'AUTO FERMA, per la terza volta in pochi mesi, perch\u00e9 ho finito completamente la BENZINA, mi porta a sospettare di essere un cretino...", "post_text": "Certo che rimanere con l'AUTO FERMA, per la terza volta in pochi mesi, perch\u00e9 ho finito completamente la BENZINA, mi porta a sospettare di essere un cretino...", "shared_text": "", "time": "2013-03-05 17:36:30", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151310731863155&id=252306033154", "link": null} +{"post_id": "10151306139808155", "text": "P.s. Io non so se mangiare un Crispy Mac Bacon a mezzanotte sia sano, ma chi se ne frega!!!", "post_text": "P.s. Io non so se mangiare un Crispy Mac Bacon a mezzanotte sia sano, ma chi se ne frega!!!", "shared_text": "", "time": "2013-03-04 23:58:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151306139808155&id=252306033154", "link": null} +{"post_id": "10151305761498155", "text": "Mamma mia che giornatina...\nMi sono perso qualcosa, di bello o di brutto?", "post_text": "Mamma mia che giornatina...\nMi sono perso qualcosa, di bello o di brutto?", "shared_text": "", "time": "2013-03-04 19:29:42", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=10151305761498155&id=252306033154", "link": null} +{"post_id": "440836365995758", "text": "Ossignur la pagina FB del povero SAVIANO, altro sinistro deluso dal voto...\nLa CREDIBILITA' il signor Maroni l'ha conquistata con i fatti e i rinsultati concreti, a Mord e a Sud.\nAltri la \"credibilit\u00e0\" l'hanno conquistata a teatro, coi libri, con i convegni, con le belle parole.\nNon so voi, ma io PREFERISCO I RISULTATI.\nRoberto Saviano\n27 febbraio 2013 alle ore 16:33 \u00b7\nDopo che il tesoriere della Lega ha investito insieme al clan De Stefano, mi domando con quale credibilit\u00e0 Maroni contraster\u00e0 le organizzazioni criminali in Lombardia. Immagino che ci si fermer\u00e0 alle solite logiche securitarie, mentre la regione continuer\u00e0 ad essere zona franca per gli investimenti mafiosi.", "post_text": "Ossignur la pagina FB del povero SAVIANO, altro sinistro deluso dal voto...\nLa CREDIBILITA' il signor Maroni l'ha conquistata con i fatti e i rinsultati concreti, a Mord e a Sud.\nAltri la \"credibilit\u00e0\" l'hanno conquistata a teatro, coi libri, con i convegni, con le belle parole.\nNon so voi, ma io PREFERISCO I RISULTATI.", "shared_text": "Roberto Saviano\n27 febbraio 2013 alle ore 16:33 \u00b7\nDopo che il tesoriere della Lega ha investito insieme al clan De Stefano, mi domando con quale credibilit\u00e0 Maroni contraster\u00e0 le organizzazioni criminali in Lombardia. Immagino che ci si fermer\u00e0 alle solite logiche securitarie, mentre la regione continuer\u00e0 ad essere zona franca per gli investimenti mafiosi.", "time": "2013-02-28 13:20:01", "image": null, "likes": 0, "comments": 0, "shares": 0, "post_url": "https://m.facebook.com/story.php?story_fbid=440836365995758&id=252306033154", "link": null} diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2014_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2014_salvini_trends.tsv new file mode 100644 index 0000000..37cca7d --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2014_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-13 Salvini-14 +1-Jan 0 2 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 0 0 +10-Jan 0 1 +11-Jan 0 3 +12-Jan 0 1 +13-Jan 0 0 +14-Jan 0 0 +15-Jan 0 2 +16-Jan 0 1 +17-Jan 0 0 +18-Jan 0 1 +19-Jan 0 1 +20-Jan 0 0 +21-Jan 0 0 +22-Jan 0 1 +23-Jan 0 0 +24-Jan 0 0 +25-Jan 0 1 +26-Jan 0 0 +27-Jan 0 1 +28-Jan 0 3 +29-Jan 0 3 +30-Jan 0 1 +31-Jan 0 1 +1-Feb 0 0 +2-Feb 0 0 +3-Feb 0 0 +4-Feb 0 0 +5-Feb 0 0 +6-Feb 0 0 +7-Feb 0 0 +8-Feb 0 1 +9-Feb 0 2 +10-Feb 0 2 +11-Feb 0 0 +12-Feb 0 3 +13-Feb 0 1 +14-Feb 0 0 +15-Feb 0 3 +16-Feb 0 3 +17-Feb 0 2 +18-Feb 0 2 +19-Feb 0 0 +20-Feb 0 3 +21-Feb 0 1 +22-Feb 0 3 +23-Feb 0 2 +24-Feb 0 2 +25-Feb 0 2 +26-Feb 0 2 +27-Feb 0 2 +28-Feb 1 0 +1-Mar 0 5 +2-Mar 0 6 +3-Mar 0 0 +4-Mar 2 1 +5-Mar 1 2 +6-Mar 0 0 +7-Mar 2 1 +8-Mar 0 1 +9-Mar 0 3 +10-Mar 0 4 +11-Mar 1 0 +12-Mar 1 0 +13-Mar 1 2 +14-Mar 2 0 +15-Mar 2 3 +16-Mar 1 1 +17-Mar 2 0 +18-Mar 2 1 +19-Mar 0 1 +20-Mar 0 2 +21-Mar 0 2 +22-Mar 1 4 +23-Mar 1 2 +24-Mar 1 1 +25-Mar 0 3 +26-Mar 1 3 +27-Mar 3 1 +28-Mar 1 2 +29-Mar 1 3 +30-Mar 3 2 +31-Mar 0 1 +1-Apr 0 3 +2-Apr 2 0 +3-Apr 1 0 +4-Apr 0 1 +5-Apr 2 6 +6-Apr 0 4 +7-Apr 0 1 +8-Apr 1 1 +9-Apr 2 2 +10-Apr 0 1 +11-Apr 1 2 +12-Apr 2 1 +13-Apr 1 2 +14-Apr 2 3 +15-Apr 2 1 +16-Apr 1 1 +17-Apr 1 1 +18-Apr 1 0 +19-Apr 1 1 +20-Apr 1 1 +21-Apr 0 0 +22-Apr 1 1 +23-Apr 0 3 +24-Apr 4 1 +25-Apr 1 4 +26-Apr 2 6 +27-Apr 1 0 +28-Apr 2 4 +29-Apr 1 3 +30-Apr 0 2 +1-May 0 5 +2-May 0 3 +3-May 1 5 +4-May 0 2 +5-May 1 5 +6-May 0 5 +7-May 0 3 +8-May 1 5 +9-May 0 1 +10-May 2 3 +11-May 0 6 +12-May 1 6 +13-May 2 5 +14-May 1 2 +15-May 1 2 +16-May 1 4 +17-May 2 4 +18-May 0 7 +19-May 0 4 +20-May 1 9 +21-May 1 5 +22-May 1 2 +23-May 2 7 +24-May 3 4 +25-May 1 23 +26-May 0 3 +27-May 1 1 +28-May 1 2 +29-May 0 2 +30-May 2 4 +31-May 1 1 +1-Jun 1 4 +2-Jun 0 1 +3-Jun 3 3 +4-Jun 1 3 +5-Jun 0 3 +6-Jun 3 1 +7-Jun 3 3 +8-Jun 0 1 +9-Jun 2 1 +10-Jun 1 2 +11-Jun 1 0 +12-Jun 0 0 +13-Jun 0 2 +14-Jun 2 0 +15-Jun 1 1 +16-Jun 2 2 +17-Jun 1 0 +18-Jun 2 4 +19-Jun 1 0 +20-Jun 0 0 +21-Jun 0 0 +22-Jun 0 2 +23-Jun 0 0 +24-Jun 1 0 +25-Jun 1 1 +26-Jun 4 0 +27-Jun 1 0 +28-Jun 4 0 +29-Jun 0 1 +30-Jun 2 0 +1-Jul 0 2 +2-Jul 3 2 +3-Jul 0 0 +4-Jul 1 0 +5-Jul 2 1 +6-Jul 2 0 +7-Jul 1 1 +8-Jul 3 0 +9-Jul 1 1 +10-Jul 2 1 +11-Jul 3 1 +12-Jul 2 7 +13-Jul 4 5 +14-Jul 5 2 +15-Jul 1 0 +16-Jul 3 2 +17-Jul 0 0 +18-Jul 3 0 +19-Jul 0 1 +20-Jul 1 2 +21-Jul 0 1 +22-Jul 0 0 +23-Jul 0 1 +24-Jul 0 1 +25-Jul 0 0 +26-Jul 0 0 +27-Jul 0 0 +28-Jul 0 1 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 2 1 +2-Aug 3 0 +3-Aug 5 1 +4-Aug 4 2 +5-Aug 3 0 +6-Aug 1 1 +7-Aug 0 1 +8-Aug 3 0 +9-Aug 3 1 +10-Aug 2 0 +11-Aug 0 0 +12-Aug 2 0 +13-Aug 3 0 +14-Aug 0 0 +15-Aug 2 0 +16-Aug 2 3 +17-Aug 2 3 +18-Aug 3 2 +19-Aug 2 0 +20-Aug 2 1 +21-Aug 1 0 +22-Aug 3 1 +23-Aug 2 4 +24-Aug 5 2 +25-Aug 2 0 +26-Aug 0 0 +27-Aug 1 0 +28-Aug 5 0 +29-Aug 2 0 +30-Aug 2 1 +31-Aug 0 0 +1-Sep 1 1 +2-Sep 0 0 +3-Sep 1 3 +4-Sep 2 1 +5-Sep 3 1 +6-Sep 3 1 +7-Sep 1 3 +8-Sep 0 1 +9-Sep 1 0 +10-Sep 2 0 +11-Sep 1 0 +12-Sep 1 0 +13-Sep 1 1 +14-Sep 3 2 +15-Sep 1 0 +16-Sep 1 1 +17-Sep 0 2 +18-Sep 1 0 +19-Sep 0 1 +20-Sep 0 2 +21-Sep 0 2 +22-Sep 3 1 +23-Sep 1 0 +24-Sep 5 0 +25-Sep 2 1 +26-Sep 5 1 +27-Sep 2 2 +28-Sep 2 3 +29-Sep 4 2 +30-Sep 3 1 +1-Oct 1 1 +2-Oct 2 2 +3-Oct 1 0 +4-Oct 3 2 +5-Oct 1 2 +6-Oct 1 0 +7-Oct 1 0 +8-Oct 2 1 +9-Oct 0 0 +10-Oct 2 2 +11-Oct 1 4 +12-Oct 6 1 +13-Oct 2 2 +14-Oct 1 4 +15-Oct 5 3 +16-Oct 3 1 +17-Oct 3 3 +18-Oct 4 4 +19-Oct 2 2 +20-Oct 0 2 +21-Oct 3 3 +22-Oct 2 0 +23-Oct 2 2 +24-Oct 2 2 +25-Oct 2 1 +26-Oct 3 1 +27-Oct 3 2 +28-Oct 1 1 +29-Oct 1 2 +30-Oct 3 1 +31-Oct 5 5 +1-Nov 1 3 +2-Nov 1 0 +3-Nov 1 2 +4-Nov 1 0 +5-Nov 2 0 +6-Nov 4 0 +7-Nov 3 2 +8-Nov 2 4 +9-Nov 2 5 +10-Nov 3 3 +11-Nov 1 2 +12-Nov 1 1 +13-Nov 4 2 +14-Nov 4 5 +15-Nov 4 4 +16-Nov 4 0 +17-Nov 3 2 +18-Nov 4 0 +19-Nov 4 2 +20-Nov 1 7 +21-Nov 6 4 +22-Nov 5 1 +23-Nov 3 2 +24-Nov 3 1 +25-Nov 3 0 +26-Nov 2 1 +27-Nov 2 1 +28-Nov 2 3 +29-Nov 2 0 +30-Nov 4 0 +1-Dec 4 1 +2-Dec 3 1 +3-Dec 2 1 +4-Dec 5 1 +5-Dec 3 0 +6-Dec 3 2 +7-Dec 2 1 +8-Dec 0 3 +9-Dec 3 1 +10-Dec 1 2 +11-Dec 5 1 +12-Dec 3 1 +13-Dec 0 2 +14-Dec 1 1 +15-Dec 4 3 +16-Dec 5 1 +17-Dec 2 1 +18-Dec 0 1 +19-Dec 4 3 +20-Dec 2 2 +21-Dec 1 2 +22-Dec 1 1 +23-Dec 1 1 +24-Dec 1 2 +25-Dec 0 0 +26-Dec 0 1 +27-Dec 4 3 +28-Dec 1 0 +29-Dec 3 3 +30-Dec 0 0 +31-Dec 2 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2015_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2015_salvini_trends.tsv new file mode 100644 index 0000000..f3bd98e --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2015_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-13 Salvini-15 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 0 0 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 0 1 +10-Jan 0 0 +11-Jan 0 0 +12-Jan 0 0 +13-Jan 0 2 +14-Jan 0 1 +15-Jan 0 0 +16-Jan 0 1 +17-Jan 0 0 +18-Jan 0 1 +19-Jan 0 1 +20-Jan 0 0 +21-Jan 0 3 +22-Jan 0 1 +23-Jan 0 1 +24-Jan 0 0 +25-Jan 0 0 +26-Jan 0 1 +27-Jan 0 0 +28-Jan 0 3 +29-Jan 0 2 +30-Jan 0 2 +31-Jan 0 0 +1-Feb 0 4 +2-Feb 0 1 +3-Feb 0 0 +4-Feb 0 0 +5-Feb 0 1 +6-Feb 0 2 +7-Feb 0 0 +8-Feb 0 0 +9-Feb 0 2 +10-Feb 0 0 +11-Feb 0 1 +12-Feb 0 1 +13-Feb 0 0 +14-Feb 0 1 +15-Feb 0 0 +16-Feb 0 0 +17-Feb 0 1 +18-Feb 0 2 +19-Feb 0 2 +20-Feb 0 0 +21-Feb 0 1 +22-Feb 0 1 +23-Feb 0 1 +24-Feb 0 2 +25-Feb 0 2 +26-Feb 0 3 +27-Feb 0 1 +28-Feb 1 1 +1-Mar 0 2 +2-Mar 0 0 +3-Mar 0 1 +4-Mar 2 1 +5-Mar 1 2 +6-Mar 0 2 +7-Mar 2 1 +8-Mar 0 1 +9-Mar 0 1 +10-Mar 0 0 +11-Mar 1 1 +12-Mar 1 2 +13-Mar 1 0 +14-Mar 2 2 +15-Mar 2 0 +16-Mar 1 1 +17-Mar 2 1 +18-Mar 2 2 +19-Mar 0 1 +20-Mar 0 1 +21-Mar 0 0 +22-Mar 1 0 +23-Mar 1 2 +24-Mar 1 3 +25-Mar 0 2 +26-Mar 1 2 +27-Mar 3 1 +28-Mar 1 2 +29-Mar 1 1 +30-Mar 3 1 +31-Mar 0 1 +1-Apr 0 3 +2-Apr 2 2 +3-Apr 1 1 +4-Apr 0 1 +5-Apr 2 0 +6-Apr 0 0 +7-Apr 0 1 +8-Apr 1 2 +9-Apr 2 2 +10-Apr 0 2 +11-Apr 1 2 +12-Apr 2 1 +13-Apr 1 1 +14-Apr 2 3 +15-Apr 2 1 +16-Apr 1 1 +17-Apr 1 2 +18-Apr 1 2 +19-Apr 1 1 +20-Apr 1 4 +21-Apr 0 3 +22-Apr 1 2 +23-Apr 0 2 +24-Apr 4 1 +25-Apr 1 0 +26-Apr 2 0 +27-Apr 1 5 +28-Apr 2 3 +29-Apr 1 3 +30-Apr 0 1 +1-May 0 5 +2-May 0 1 +3-May 1 0 +4-May 0 5 +5-May 1 2 +6-May 0 4 +7-May 0 1 +8-May 1 2 +9-May 0 2 +10-May 2 3 +11-May 0 3 +12-May 1 5 +13-May 2 2 +14-May 1 5 +15-May 1 3 +16-May 1 5 +17-May 2 1 +18-May 0 2 +19-May 0 2 +20-May 1 3 +21-May 1 2 +22-May 1 3 +23-May 2 4 +24-May 3 5 +25-May 1 5 +26-May 0 9 +27-May 1 4 +28-May 1 5 +29-May 0 5 +30-May 2 0 +31-May 1 1 +1-Jun 1 2 +2-Jun 0 0 +3-Jun 3 2 +4-Jun 1 3 +5-Jun 0 3 +6-Jun 3 0 +7-Jun 3 3 +8-Jun 0 3 +9-Jun 2 0 +10-Jun 1 4 +11-Jun 1 1 +12-Jun 0 3 +13-Jun 0 1 +14-Jun 2 1 +15-Jun 1 2 +16-Jun 2 1 +17-Jun 1 1 +18-Jun 2 2 +19-Jun 1 1 +20-Jun 0 1 +21-Jun 0 0 +22-Jun 0 2 +23-Jun 0 2 +24-Jun 1 2 +25-Jun 1 2 +26-Jun 4 0 +27-Jun 1 0 +28-Jun 4 1 +29-Jun 0 3 +30-Jun 2 2 +1-Jul 0 3 +2-Jul 3 2 +3-Jul 0 4 +4-Jul 1 0 +5-Jul 2 0 +6-Jul 2 2 +7-Jul 1 3 +8-Jul 3 3 +9-Jul 1 1 +10-Jul 2 1 +11-Jul 3 1 +12-Jul 2 1 +13-Jul 4 2 +14-Jul 5 3 +15-Jul 1 4 +16-Jul 3 2 +17-Jul 0 2 +18-Jul 3 3 +19-Jul 0 2 +20-Jul 1 1 +21-Jul 0 0 +22-Jul 0 1 +23-Jul 0 0 +24-Jul 0 0 +25-Jul 0 0 +26-Jul 0 0 +27-Jul 0 1 +28-Jul 0 2 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 2 0 +2-Aug 3 1 +3-Aug 5 0 +4-Aug 4 2 +5-Aug 3 2 +6-Aug 1 2 +7-Aug 0 2 +8-Aug 3 1 +9-Aug 3 1 +10-Aug 2 0 +11-Aug 0 1 +12-Aug 2 1 +13-Aug 3 3 +14-Aug 0 0 +15-Aug 2 0 +16-Aug 2 2 +17-Aug 2 2 +18-Aug 3 0 +19-Aug 2 0 +20-Aug 2 3 +21-Aug 1 0 +22-Aug 3 1 +23-Aug 2 0 +24-Aug 5 2 +25-Aug 2 0 +26-Aug 0 1 +27-Aug 1 1 +28-Aug 5 1 +29-Aug 2 1 +30-Aug 2 0 +31-Aug 0 2 +1-Sep 1 2 +2-Sep 0 1 +3-Sep 1 1 +4-Sep 2 2 +5-Sep 3 0 +6-Sep 3 2 +7-Sep 1 3 +8-Sep 0 2 +9-Sep 1 3 +10-Sep 2 1 +11-Sep 1 2 +12-Sep 1 0 +13-Sep 1 2 +14-Sep 3 2 +15-Sep 1 3 +16-Sep 1 2 +17-Sep 0 3 +18-Sep 1 2 +19-Sep 0 1 +20-Sep 0 1 +21-Sep 0 1 +22-Sep 3 2 +23-Sep 1 1 +24-Sep 5 1 +25-Sep 2 1 +26-Sep 5 0 +27-Sep 2 0 +28-Sep 2 1 +29-Sep 4 2 +30-Sep 3 1 +1-Oct 1 2 +2-Oct 2 2 +3-Oct 1 1 +4-Oct 3 0 +5-Oct 1 0 +6-Oct 1 2 +7-Oct 1 2 +8-Oct 2 2 +9-Oct 0 2 +10-Oct 2 0 +11-Oct 1 0 +12-Oct 6 2 +13-Oct 2 3 +14-Oct 1 1 +15-Oct 5 1 +16-Oct 3 0 +17-Oct 3 2 +18-Oct 4 1 +19-Oct 2 1 +20-Oct 0 1 +21-Oct 3 4 +22-Oct 2 5 +23-Oct 2 3 +24-Oct 2 1 +25-Oct 2 1 +26-Oct 3 3 +27-Oct 3 5 +28-Oct 1 5 +29-Oct 1 4 +30-Oct 3 5 +31-Oct 5 5 +1-Nov 1 2 +2-Nov 1 7 +3-Nov 1 3 +4-Nov 1 4 +5-Nov 2 4 +6-Nov 4 4 +7-Nov 3 1 +8-Nov 2 2 +9-Nov 2 4 +10-Nov 3 3 +11-Nov 1 3 +12-Nov 1 6 +13-Nov 4 2 +14-Nov 4 3 +15-Nov 4 2 +16-Nov 4 4 +17-Nov 3 2 +18-Nov 4 5 +19-Nov 4 3 +20-Nov 1 3 +21-Nov 6 2 +22-Nov 5 0 +23-Nov 3 2 +24-Nov 3 2 +25-Nov 3 3 +26-Nov 2 2 +27-Nov 2 0 +28-Nov 2 1 +29-Nov 2 2 +30-Nov 4 4 +1-Dec 4 3 +2-Dec 3 4 +3-Dec 2 4 +4-Dec 5 4 +5-Dec 3 1 +6-Dec 3 0 +7-Dec 2 1 +8-Dec 0 0 +9-Dec 3 1 +10-Dec 1 1 +11-Dec 5 1 +12-Dec 3 0 +13-Dec 0 1 +14-Dec 1 1 +15-Dec 4 2 +16-Dec 5 2 +17-Dec 2 1 +18-Dec 0 0 +19-Dec 4 0 +20-Dec 2 0 +21-Dec 1 0 +22-Dec 1 1 +23-Dec 1 0 +24-Dec 1 2 +25-Dec 0 2 +26-Dec 0 1 +27-Dec 4 0 +28-Dec 1 0 +29-Dec 3 0 +30-Dec 0 0 +31-Dec 2 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2016_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2016_salvini_trends.tsv new file mode 100644 index 0000000..a53e083 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2016_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-13 Salvini-16 +1-Jan 0 1 +2-Jan 0 0 +3-Jan 0 0 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 2 +8-Jan 0 2 +9-Jan 0 0 +10-Jan 0 1 +11-Jan 0 2 +12-Jan 0 4 +13-Jan 0 5 +14-Jan 0 2 +15-Jan 0 2 +16-Jan 0 1 +17-Jan 0 1 +18-Jan 0 3 +19-Jan 0 4 +20-Jan 0 5 +21-Jan 0 3 +22-Jan 0 2 +23-Jan 0 2 +24-Jan 0 2 +25-Jan 0 5 +26-Jan 0 4 +27-Jan 0 4 +28-Jan 0 1 +29-Jan 0 0 +30-Jan 0 2 +31-Jan 0 2 +1-Feb 0 3 +2-Feb 0 4 +3-Feb 0 2 +4-Feb 0 3 +5-Feb 0 4 +6-Feb 0 4 +7-Feb 0 0 +8-Feb 0 3 +9-Feb 0 2 +10-Feb 0 1 +11-Feb 0 3 +12-Feb 0 2 +13-Feb 0 1 +14-Feb 0 1 +15-Feb 0 3 +16-Feb 0 4 +17-Feb 0 2 +18-Feb 0 0 +19-Feb 0 1 +20-Feb 0 1 +21-Feb 0 0 +22-Feb 0 2 +23-Feb 0 2 +24-Feb 0 4 +25-Feb 0 4 +26-Feb 0 3 +27-Feb 0 1 +28-Feb 1 1 +1-Mar 0 2 +2-Mar 0 1 +3-Mar 0 1 +4-Mar 2 1 +5-Mar 1 1 +6-Mar 0 1 +7-Mar 2 2 +8-Mar 0 1 +9-Mar 0 1 +10-Mar 0 2 +11-Mar 1 0 +12-Mar 1 0 +13-Mar 1 0 +14-Mar 2 2 +15-Mar 2 2 +16-Mar 1 1 +17-Mar 2 1 +18-Mar 2 2 +19-Mar 0 1 +20-Mar 0 0 +21-Mar 0 1 +22-Mar 1 2 +23-Mar 1 3 +24-Mar 1 3 +25-Mar 0 1 +26-Mar 1 1 +27-Mar 3 0 +28-Mar 1 0 +29-Mar 1 1 +30-Mar 3 1 +31-Mar 0 1 +1-Apr 0 1 +2-Apr 2 1 +3-Apr 1 2 +4-Apr 0 3 +5-Apr 2 3 +6-Apr 0 4 +7-Apr 0 2 +8-Apr 1 1 +9-Apr 2 2 +10-Apr 0 2 +11-Apr 1 3 +12-Apr 2 0 +13-Apr 1 1 +14-Apr 2 1 +15-Apr 2 2 +16-Apr 1 3 +17-Apr 1 0 +18-Apr 1 2 +19-Apr 1 4 +20-Apr 1 4 +21-Apr 0 4 +22-Apr 1 1 +23-Apr 0 1 +24-Apr 4 1 +25-Apr 1 0 +26-Apr 2 1 +27-Apr 1 1 +28-Apr 2 0 +29-Apr 1 1 +30-Apr 0 2 +1-May 0 0 +2-May 0 1 +3-May 1 0 +4-May 0 1 +5-May 1 0 +6-May 0 1 +7-May 0 0 +8-May 1 0 +9-May 0 0 +10-May 2 0 +11-May 0 1 +12-May 1 3 +13-May 2 2 +14-May 1 5 +15-May 1 3 +16-May 1 2 +17-May 2 4 +18-May 0 5 +19-May 0 5 +20-May 1 6 +21-May 1 2 +22-May 1 4 +23-May 2 2 +24-May 3 3 +25-May 1 3 +26-May 0 3 +27-May 1 2 +28-May 1 1 +29-May 0 4 +30-May 2 2 +31-May 1 5 +1-Jun 1 7 +2-Jun 0 4 +3-Jun 3 2 +4-Jun 1 3 +5-Jun 0 1 +6-Jun 3 2 +7-Jun 3 1 +8-Jun 0 2 +9-Jun 2 3 +10-Jun 1 2 +11-Jun 1 1 +12-Jun 0 0 +13-Jun 0 2 +14-Jun 2 1 +15-Jun 1 3 +16-Jun 2 2 +17-Jun 1 3 +18-Jun 2 0 +19-Jun 1 1 +20-Jun 0 0 +21-Jun 0 0 +22-Jun 0 1 +23-Jun 0 0 +24-Jun 1 2 +25-Jun 1 4 +26-Jun 4 0 +27-Jun 1 0 +28-Jun 4 2 +29-Jun 0 2 +30-Jun 2 1 +1-Jul 0 2 +2-Jul 3 0 +3-Jul 0 0 +4-Jul 1 1 +5-Jul 2 1 +6-Jul 2 2 +7-Jul 1 1 +8-Jul 3 2 +9-Jul 1 1 +10-Jul 2 0 +11-Jul 3 1 +12-Jul 2 2 +13-Jul 4 0 +14-Jul 5 0 +15-Jul 1 0 +16-Jul 3 0 +17-Jul 0 2 +18-Jul 3 0 +19-Jul 0 2 +20-Jul 1 0 +21-Jul 0 1 +22-Jul 0 2 +23-Jul 0 1 +24-Jul 0 0 +25-Jul 0 1 +26-Jul 0 1 +27-Jul 0 0 +28-Jul 0 1 +29-Jul 0 1 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 2 0 +2-Aug 3 0 +3-Aug 5 1 +4-Aug 4 1 +5-Aug 3 1 +6-Aug 1 0 +7-Aug 0 0 +8-Aug 3 0 +9-Aug 3 1 +10-Aug 2 0 +11-Aug 0 0 +12-Aug 2 0 +13-Aug 3 0 +14-Aug 0 0 +15-Aug 2 0 +16-Aug 2 2 +17-Aug 2 1 +18-Aug 3 0 +19-Aug 2 0 +20-Aug 2 0 +21-Aug 1 1 +22-Aug 3 0 +23-Aug 2 1 +24-Aug 5 0 +25-Aug 2 0 +26-Aug 0 0 +27-Aug 1 1 +28-Aug 5 0 +29-Aug 2 1 +30-Aug 2 0 +31-Aug 0 2 +1-Sep 1 0 +2-Sep 0 1 +3-Sep 1 0 +4-Sep 2 2 +5-Sep 3 0 +6-Sep 3 3 +7-Sep 1 0 +8-Sep 0 2 +9-Sep 1 1 +10-Sep 2 0 +11-Sep 1 0 +12-Sep 1 2 +13-Sep 1 0 +14-Sep 3 1 +15-Sep 1 2 +16-Sep 1 0 +17-Sep 0 0 +18-Sep 1 3 +19-Sep 0 2 +20-Sep 0 2 +21-Sep 0 2 +22-Sep 3 2 +23-Sep 1 2 +24-Sep 5 2 +25-Sep 2 1 +26-Sep 5 2 +27-Sep 2 2 +28-Sep 2 2 +29-Sep 4 4 +30-Sep 3 2 +1-Oct 1 2 +2-Oct 2 1 +3-Oct 1 3 +4-Oct 3 2 +5-Oct 1 3 +6-Oct 1 1 +7-Oct 1 1 +8-Oct 2 2 +9-Oct 0 3 +10-Oct 2 1 +11-Oct 1 2 +12-Oct 6 2 +13-Oct 2 2 +14-Oct 1 1 +15-Oct 5 2 +16-Oct 3 1 +17-Oct 3 1 +18-Oct 4 1 +19-Oct 2 1 +20-Oct 0 1 +21-Oct 3 2 +22-Oct 2 1 +23-Oct 2 0 +24-Oct 2 2 +25-Oct 2 2 +26-Oct 3 3 +27-Oct 3 2 +28-Oct 1 1 +29-Oct 1 1 +30-Oct 3 0 +31-Oct 5 0 +1-Nov 1 1 +2-Nov 1 1 +3-Nov 1 4 +4-Nov 1 6 +5-Nov 2 2 +6-Nov 4 2 +7-Nov 3 1 +8-Nov 2 1 +9-Nov 2 4 +10-Nov 3 3 +11-Nov 1 7 +12-Nov 1 3 +13-Nov 4 0 +14-Nov 4 3 +15-Nov 4 1 +16-Nov 4 5 +17-Nov 3 3 +18-Nov 4 2 +19-Nov 4 3 +20-Nov 1 4 +21-Nov 6 2 +22-Nov 5 4 +23-Nov 3 3 +24-Nov 3 2 +25-Nov 3 6 +26-Nov 2 4 +27-Nov 2 3 +28-Nov 2 4 +29-Nov 2 3 +30-Nov 4 3 +1-Dec 4 4 +2-Dec 3 3 +3-Dec 2 4 +4-Dec 5 4 +5-Dec 3 4 +6-Dec 3 5 +7-Dec 2 3 +8-Dec 0 0 +9-Dec 3 0 +10-Dec 1 0 +11-Dec 5 0 +12-Dec 3 0 +13-Dec 0 3 +14-Dec 1 3 +15-Dec 4 0 +16-Dec 5 1 +17-Dec 2 0 +18-Dec 0 1 +19-Dec 4 1 +20-Dec 2 0 +21-Dec 1 2 +22-Dec 1 3 +23-Dec 1 0 +24-Dec 1 2 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 4 0 +28-Dec 1 2 +29-Dec 3 0 +30-Dec 0 0 +31-Dec 2 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2017_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2017_salvini_trends.tsv new file mode 100644 index 0000000..15c5b7b --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2017_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-13 Salvini-17 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 0 0 +9-Jan 0 1 +10-Jan 0 0 +11-Jan 0 3 +12-Jan 0 1 +13-Jan 0 1 +14-Jan 0 0 +15-Jan 0 0 +16-Jan 0 2 +17-Jan 0 0 +18-Jan 0 1 +19-Jan 0 2 +20-Jan 0 2 +21-Jan 0 2 +22-Jan 0 2 +23-Jan 0 3 +24-Jan 0 2 +25-Jan 0 1 +26-Jan 0 3 +27-Jan 0 0 +28-Jan 0 1 +29-Jan 0 2 +30-Jan 0 2 +31-Jan 0 3 +1-Feb 0 1 +2-Feb 0 1 +3-Feb 0 0 +4-Feb 0 1 +5-Feb 0 0 +6-Feb 0 0 +7-Feb 0 2 +8-Feb 0 2 +9-Feb 0 1 +10-Feb 0 1 +11-Feb 0 0 +12-Feb 0 1 +13-Feb 0 0 +14-Feb 0 1 +15-Feb 0 2 +16-Feb 0 0 +17-Feb 0 1 +18-Feb 0 1 +19-Feb 0 1 +20-Feb 0 2 +21-Feb 0 1 +22-Feb 0 2 +23-Feb 0 2 +24-Feb 0 1 +25-Feb 0 0 +26-Feb 0 3 +27-Feb 0 2 +28-Feb 1 0 +1-Mar 0 0 +2-Mar 0 0 +3-Mar 0 1 +4-Mar 2 4 +5-Mar 1 2 +6-Mar 0 0 +7-Mar 2 3 +8-Mar 0 0 +9-Mar 0 2 +10-Mar 0 2 +11-Mar 1 1 +12-Mar 1 0 +13-Mar 1 1 +14-Mar 2 2 +15-Mar 2 2 +16-Mar 1 0 +17-Mar 2 1 +18-Mar 2 0 +19-Mar 0 1 +20-Mar 0 4 +21-Mar 0 1 +22-Mar 1 1 +23-Mar 1 2 +24-Mar 1 1 +25-Mar 0 2 +26-Mar 1 0 +27-Mar 3 1 +28-Mar 1 2 +29-Mar 1 3 +30-Mar 3 3 +31-Mar 0 2 +1-Apr 0 2 +2-Apr 2 1 +3-Apr 1 1 +4-Apr 0 2 +5-Apr 2 2 +6-Apr 0 4 +7-Apr 0 1 +8-Apr 1 1 +9-Apr 2 0 +10-Apr 0 3 +11-Apr 1 1 +12-Apr 2 1 +13-Apr 1 1 +14-Apr 2 0 +15-Apr 2 0 +16-Apr 1 0 +17-Apr 1 1 +18-Apr 1 2 +19-Apr 1 0 +20-Apr 1 2 +21-Apr 0 1 +22-Apr 1 0 +23-Apr 0 0 +24-Apr 4 1 +25-Apr 1 2 +26-Apr 2 1 +27-Apr 1 3 +28-Apr 2 1 +29-Apr 1 0 +30-Apr 0 1 +1-May 0 2 +2-May 0 3 +3-May 1 3 +4-May 0 3 +5-May 1 1 +6-May 0 2 +7-May 0 1 +8-May 1 0 +9-May 0 0 +10-May 2 2 +11-May 0 4 +12-May 1 3 +13-May 2 0 +14-May 1 3 +15-May 1 2 +16-May 1 0 +17-May 2 4 +18-May 0 1 +19-May 0 1 +20-May 1 3 +21-May 1 1 +22-May 1 2 +23-May 2 1 +24-May 3 3 +25-May 1 5 +26-May 0 3 +27-May 1 3 +28-May 1 0 +29-May 0 3 +30-May 2 0 +31-May 1 3 +1-Jun 1 4 +2-Jun 0 1 +3-Jun 3 1 +4-Jun 1 0 +5-Jun 0 2 +6-Jun 3 4 +7-Jun 3 2 +8-Jun 0 3 +9-Jun 2 5 +10-Jun 1 1 +11-Jun 1 0 +12-Jun 0 0 +13-Jun 0 4 +14-Jun 2 4 +15-Jun 1 3 +16-Jun 2 3 +17-Jun 1 1 +18-Jun 2 1 +19-Jun 1 1 +20-Jun 0 2 +21-Jun 0 1 +22-Jun 0 0 +23-Jun 0 5 +24-Jun 1 1 +25-Jun 1 0 +26-Jun 4 4 +27-Jun 1 0 +28-Jun 4 3 +29-Jun 0 1 +30-Jun 2 0 +1-Jul 0 0 +2-Jul 3 1 +3-Jul 0 1 +4-Jul 1 1 +5-Jul 2 2 +6-Jul 2 0 +7-Jul 1 1 +8-Jul 3 0 +9-Jul 1 3 +10-Jul 2 0 +11-Jul 3 3 +12-Jul 2 1 +13-Jul 4 1 +14-Jul 5 0 +15-Jul 1 1 +16-Jul 3 0 +17-Jul 0 0 +18-Jul 3 1 +19-Jul 0 2 +20-Jul 1 3 +21-Jul 0 2 +22-Jul 0 0 +23-Jul 0 2 +24-Jul 0 2 +25-Jul 0 0 +26-Jul 0 1 +27-Jul 0 0 +28-Jul 0 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 1 +1-Aug 2 0 +2-Aug 3 2 +3-Aug 5 3 +4-Aug 4 0 +5-Aug 3 0 +6-Aug 1 1 +7-Aug 0 2 +8-Aug 3 2 +9-Aug 3 1 +10-Aug 2 1 +11-Aug 0 2 +12-Aug 2 3 +13-Aug 3 3 +14-Aug 0 1 +15-Aug 2 3 +16-Aug 2 0 +17-Aug 2 0 +18-Aug 3 0 +19-Aug 2 1 +20-Aug 2 0 +21-Aug 1 0 +22-Aug 3 1 +23-Aug 2 1 +24-Aug 5 2 +25-Aug 2 0 +26-Aug 0 1 +27-Aug 1 0 +28-Aug 5 1 +29-Aug 2 0 +30-Aug 2 1 +31-Aug 0 0 +1-Sep 1 0 +2-Sep 0 1 +3-Sep 1 1 +4-Sep 2 0 +5-Sep 3 1 +6-Sep 3 1 +7-Sep 1 1 +8-Sep 0 0 +9-Sep 1 3 +10-Sep 2 1 +11-Sep 1 2 +12-Sep 1 1 +13-Sep 1 4 +14-Sep 3 2 +15-Sep 1 4 +16-Sep 1 2 +17-Sep 0 4 +18-Sep 1 1 +19-Sep 0 5 +20-Sep 0 2 +21-Sep 0 1 +22-Sep 3 1 +23-Sep 1 0 +24-Sep 5 1 +25-Sep 2 1 +26-Sep 5 0 +27-Sep 2 3 +28-Sep 2 2 +29-Sep 4 3 +30-Sep 3 0 +1-Oct 1 2 +2-Oct 2 2 +3-Oct 1 2 +4-Oct 3 3 +5-Oct 1 2 +6-Oct 1 3 +7-Oct 1 0 +8-Oct 2 1 +9-Oct 0 1 +10-Oct 2 1 +11-Oct 1 1 +12-Oct 6 1 +13-Oct 2 1 +14-Oct 1 3 +15-Oct 5 0 +16-Oct 3 0 +17-Oct 3 4 +18-Oct 4 1 +19-Oct 2 1 +20-Oct 0 1 +21-Oct 3 2 +22-Oct 2 2 +23-Oct 2 1 +24-Oct 2 1 +25-Oct 2 2 +26-Oct 3 1 +27-Oct 3 3 +28-Oct 1 3 +29-Oct 1 2 +30-Oct 3 5 +31-Oct 5 2 +1-Nov 1 4 +2-Nov 1 3 +3-Nov 1 1 +4-Nov 1 2 +5-Nov 2 0 +6-Nov 4 0 +7-Nov 3 2 +8-Nov 2 5 +9-Nov 2 4 +10-Nov 3 4 +11-Nov 1 5 +12-Nov 1 3 +13-Nov 4 1 +14-Nov 4 4 +15-Nov 4 4 +16-Nov 4 3 +17-Nov 3 5 +18-Nov 4 5 +19-Nov 4 6 +20-Nov 1 4 +21-Nov 6 3 +22-Nov 5 4 +23-Nov 3 6 +24-Nov 3 4 +25-Nov 3 4 +26-Nov 2 4 +27-Nov 2 1 +28-Nov 2 2 +29-Nov 2 1 +30-Nov 4 4 +1-Dec 4 1 +2-Dec 3 1 +3-Dec 2 0 +4-Dec 5 0 +5-Dec 3 4 +6-Dec 3 3 +7-Dec 2 2 +8-Dec 0 2 +9-Dec 3 3 +10-Dec 1 6 +11-Dec 5 5 +12-Dec 3 3 +13-Dec 0 4 +14-Dec 1 2 +15-Dec 4 4 +16-Dec 5 3 +17-Dec 2 2 +18-Dec 0 4 +19-Dec 4 4 +20-Dec 2 6 +21-Dec 1 3 +22-Dec 1 1 +23-Dec 1 1 +24-Dec 1 1 +25-Dec 0 1 +26-Dec 0 0 +27-Dec 4 0 +28-Dec 1 2 +29-Dec 3 1 +30-Dec 0 0 +31-Dec 2 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2018_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2018_salvini_trends.tsv new file mode 100644 index 0000000..6dcbf8e --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2018_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-13 Salvini-18 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 1 +5-Jan 0 0 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 0 3 +10-Jan 0 3 +11-Jan 0 2 +12-Jan 0 2 +13-Jan 0 1 +14-Jan 0 1 +15-Jan 0 1 +16-Jan 0 3 +17-Jan 0 2 +18-Jan 0 3 +19-Jan 0 3 +20-Jan 0 2 +21-Jan 0 0 +22-Jan 0 0 +23-Jan 0 1 +24-Jan 0 3 +25-Jan 0 4 +26-Jan 0 1 +27-Jan 0 2 +28-Jan 0 2 +29-Jan 0 2 +30-Jan 0 4 +31-Jan 0 5 +1-Feb 0 4 +2-Feb 0 2 +3-Feb 0 3 +4-Feb 0 3 +5-Feb 0 3 +6-Feb 0 3 +7-Feb 0 4 +8-Feb 0 3 +9-Feb 0 2 +10-Feb 0 2 +11-Feb 0 2 +12-Feb 0 2 +13-Feb 0 2 +14-Feb 0 4 +15-Feb 0 3 +16-Feb 0 5 +17-Feb 0 3 +18-Feb 0 3 +19-Feb 0 2 +20-Feb 0 7 +21-Feb 0 5 +22-Feb 0 0 +23-Feb 0 6 +24-Feb 0 5 +25-Feb 0 1 +26-Feb 0 4 +27-Feb 0 5 +28-Feb 1 4 +1-Mar 0 4 +2-Mar 0 8 +3-Mar 0 6 +4-Mar 2 6 +5-Mar 1 1 +6-Mar 0 0 +7-Mar 2 0 +8-Mar 0 1 +9-Mar 0 2 +10-Mar 0 0 +11-Mar 1 1 +12-Mar 1 0 +13-Mar 1 2 +14-Mar 2 1 +15-Mar 2 3 +16-Mar 1 2 +17-Mar 2 1 +18-Mar 2 2 +19-Mar 0 2 +20-Mar 0 2 +21-Mar 0 2 +22-Mar 1 2 +23-Mar 1 0 +24-Mar 1 0 +25-Mar 0 0 +26-Mar 1 0 +27-Mar 3 0 +28-Mar 1 1 +29-Mar 1 1 +30-Mar 3 1 +31-Mar 0 0 +1-Apr 0 0 +2-Apr 2 0 +3-Apr 1 0 +4-Apr 0 3 +5-Apr 2 1 +6-Apr 0 0 +7-Apr 0 0 +8-Apr 1 1 +9-Apr 2 3 +10-Apr 0 0 +11-Apr 1 1 +12-Apr 2 1 +13-Apr 1 2 +14-Apr 2 1 +15-Apr 2 1 +16-Apr 1 3 +17-Apr 1 1 +18-Apr 1 2 +19-Apr 1 3 +20-Apr 1 1 +21-Apr 0 1 +22-Apr 1 0 +23-Apr 0 3 +24-Apr 4 1 +25-Apr 1 0 +26-Apr 2 1 +27-Apr 1 4 +28-Apr 2 0 +29-Apr 1 0 +30-Apr 0 0 +1-May 0 0 +2-May 0 2 +3-May 1 0 +4-May 0 1 +5-May 1 0 +6-May 0 1 +7-May 0 4 +8-May 1 1 +9-May 0 0 +10-May 2 0 +11-May 0 0 +12-May 1 0 +13-May 2 0 +14-May 1 0 +15-May 1 1 +16-May 1 1 +17-May 2 0 +18-May 0 0 +19-May 0 1 +20-May 1 2 +21-May 1 1 +22-May 1 1 +23-May 2 2 +24-May 3 3 +25-May 1 0 +26-May 0 1 +27-May 1 3 +28-May 1 3 +29-May 0 4 +30-May 2 5 +31-May 1 1 +1-Jun 1 3 +2-Jun 0 1 +3-Jun 3 1 +4-Jun 1 0 +5-Jun 0 4 +6-Jun 3 3 +7-Jun 3 3 +8-Jun 0 0 +9-Jun 2 1 +10-Jun 1 1 +11-Jun 1 0 +12-Jun 0 1 +13-Jun 0 1 +14-Jun 2 1 +15-Jun 1 3 +16-Jun 2 0 +17-Jun 1 4 +18-Jun 2 3 +19-Jun 1 2 +20-Jun 0 2 +21-Jun 0 5 +22-Jun 0 2 +23-Jun 0 1 +24-Jun 1 1 +25-Jun 1 3 +26-Jun 4 3 +27-Jun 1 0 +28-Jun 4 1 +29-Jun 0 2 +30-Jun 2 0 +1-Jul 0 3 +2-Jul 3 2 +3-Jul 0 1 +4-Jul 1 2 +5-Jul 2 3 +6-Jul 2 1 +7-Jul 1 1 +8-Jul 3 1 +9-Jul 1 1 +10-Jul 2 4 +11-Jul 3 1 +12-Jul 2 5 +13-Jul 4 1 +14-Jul 5 2 +15-Jul 1 0 +16-Jul 3 2 +17-Jul 0 2 +18-Jul 3 1 +19-Jul 0 1 +20-Jul 1 0 +21-Jul 0 1 +22-Jul 0 0 +23-Jul 0 0 +24-Jul 0 1 +25-Jul 0 2 +26-Jul 0 2 +27-Jul 0 2 +28-Jul 0 3 +29-Jul 0 0 +30-Jul 0 1 +31-Jul 0 1 +1-Aug 2 1 +2-Aug 3 1 +3-Aug 5 2 +4-Aug 4 0 +5-Aug 3 2 +6-Aug 1 2 +7-Aug 0 1 +8-Aug 3 1 +9-Aug 3 1 +10-Aug 2 0 +11-Aug 0 1 +12-Aug 2 0 +13-Aug 3 2 +14-Aug 0 3 +15-Aug 2 4 +16-Aug 2 2 +17-Aug 2 0 +18-Aug 3 2 +19-Aug 2 0 +20-Aug 2 1 +21-Aug 1 0 +22-Aug 3 0 +23-Aug 2 1 +24-Aug 5 1 +25-Aug 2 1 +26-Aug 0 0 +27-Aug 1 0 +28-Aug 5 2 +29-Aug 2 0 +30-Aug 2 0 +31-Aug 0 2 +1-Sep 1 1 +2-Sep 0 4 +3-Sep 1 1 +4-Sep 2 1 +5-Sep 3 3 +6-Sep 3 2 +7-Sep 1 2 +8-Sep 0 1 +9-Sep 1 3 +10-Sep 2 1 +11-Sep 1 2 +12-Sep 1 1 +13-Sep 1 1 +14-Sep 3 3 +15-Sep 1 3 +16-Sep 1 2 +17-Sep 0 0 +18-Sep 1 1 +19-Sep 0 6 +20-Sep 0 3 +21-Sep 0 1 +22-Sep 3 3 +23-Sep 1 1 +24-Sep 5 2 +25-Sep 2 1 +26-Sep 5 1 +27-Sep 2 2 +28-Sep 2 2 +29-Sep 4 3 +30-Sep 3 1 +1-Oct 1 2 +2-Oct 2 1 +3-Oct 1 3 +4-Oct 3 3 +5-Oct 1 3 +6-Oct 1 1 +7-Oct 1 1 +8-Oct 2 0 +9-Oct 0 4 +10-Oct 2 3 +11-Oct 1 2 +12-Oct 6 0 +13-Oct 2 4 +14-Oct 1 5 +15-Oct 5 2 +16-Oct 3 5 +17-Oct 3 4 +18-Oct 4 2 +19-Oct 2 5 +20-Oct 0 1 +21-Oct 3 1 +22-Oct 2 1 +23-Oct 2 2 +24-Oct 2 2 +25-Oct 2 4 +26-Oct 3 5 +27-Oct 3 2 +28-Oct 1 0 +29-Oct 1 1 +30-Oct 3 1 +31-Oct 5 1 +1-Nov 1 2 +2-Nov 1 1 +3-Nov 1 2 +4-Nov 1 2 +5-Nov 2 1 +6-Nov 4 2 +7-Nov 3 3 +8-Nov 2 1 +9-Nov 2 1 +10-Nov 3 0 +11-Nov 1 1 +12-Nov 1 0 +13-Nov 4 0 +14-Nov 4 0 +15-Nov 4 2 +16-Nov 4 0 +17-Nov 3 2 +18-Nov 4 0 +19-Nov 4 1 +20-Nov 1 1 +21-Nov 6 1 +22-Nov 5 2 +23-Nov 3 1 +24-Nov 3 0 +25-Nov 3 0 +26-Nov 2 1 +27-Nov 2 2 +28-Nov 2 2 +29-Nov 2 1 +30-Nov 4 0 +1-Dec 4 0 +2-Dec 3 0 +3-Dec 2 3 +4-Dec 5 0 +5-Dec 3 1 +6-Dec 3 3 +7-Dec 2 1 +8-Dec 0 1 +9-Dec 3 2 +10-Dec 1 2 +11-Dec 5 0 +12-Dec 3 2 +13-Dec 0 0 +14-Dec 1 0 +15-Dec 4 0 +16-Dec 5 2 +17-Dec 2 1 +18-Dec 0 4 +19-Dec 4 0 +20-Dec 2 3 +21-Dec 1 0 +22-Dec 1 0 +23-Dec 1 0 +24-Dec 1 1 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 4 1 +28-Dec 1 2 +29-Dec 3 0 +30-Dec 0 0 +31-Dec 2 2 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2019_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2019_salvini_trends.tsv new file mode 100644 index 0000000..4449876 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2013_salvini_2019_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-13 Salvini-19 +1-Jan 0 0 +2-Jan 0 1 +3-Jan 0 2 +4-Jan 0 4 +5-Jan 0 3 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 0 1 +10-Jan 0 1 +11-Jan 0 1 +12-Jan 0 0 +13-Jan 0 1 +14-Jan 0 3 +15-Jan 0 0 +16-Jan 0 5 +17-Jan 0 1 +18-Jan 0 3 +19-Jan 0 1 +20-Jan 0 2 +21-Jan 0 0 +22-Jan 0 1 +23-Jan 0 0 +24-Jan 0 1 +25-Jan 0 2 +26-Jan 0 0 +27-Jan 0 1 +28-Jan 0 1 +29-Jan 0 0 +30-Jan 0 1 +31-Jan 0 0 +1-Feb 0 3 +2-Feb 0 1 +3-Feb 0 3 +4-Feb 0 1 +5-Feb 0 1 +6-Feb 0 2 +7-Feb 0 2 +8-Feb 0 0 +9-Feb 0 2 +10-Feb 0 3 +11-Feb 0 1 +12-Feb 0 0 +13-Feb 0 1 +14-Feb 0 0 +15-Feb 0 0 +16-Feb 0 0 +17-Feb 0 2 +18-Feb 0 3 +19-Feb 0 2 +20-Feb 0 4 +21-Feb 0 4 +22-Feb 0 2 +23-Feb 0 1 +24-Feb 0 1 +25-Feb 0 2 +26-Feb 0 0 +27-Feb 0 2 +28-Feb 1 1 +1-Mar 0 1 +2-Mar 0 0 +3-Mar 0 0 +4-Mar 2 1 +5-Mar 1 1 +6-Mar 0 0 +7-Mar 2 1 +8-Mar 0 3 +9-Mar 0 0 +10-Mar 0 1 +11-Mar 1 1 +12-Mar 1 2 +13-Mar 1 1 +14-Mar 2 1 +15-Mar 2 3 +16-Mar 1 3 +17-Mar 2 2 +18-Mar 2 3 +19-Mar 0 1 +20-Mar 0 1 +21-Mar 0 3 +22-Mar 1 4 +23-Mar 1 1 +24-Mar 1 0 +25-Mar 0 1 +26-Mar 1 0 +27-Mar 3 1 +28-Mar 1 2 +29-Mar 1 2 +30-Mar 3 1 +31-Mar 0 0 +1-Apr 0 3 +2-Apr 2 1 +3-Apr 1 0 +4-Apr 0 1 +5-Apr 2 1 +6-Apr 0 4 +7-Apr 0 2 +8-Apr 1 6 +9-Apr 2 0 +10-Apr 0 3 +11-Apr 1 1 +12-Apr 2 1 +13-Apr 1 0 +14-Apr 2 0 +15-Apr 2 2 +16-Apr 1 0 +17-Apr 1 3 +18-Apr 1 1 +19-Apr 1 3 +20-Apr 1 0 +21-Apr 0 0 +22-Apr 1 0 +23-Apr 0 1 +24-Apr 4 1 +25-Apr 1 4 +26-Apr 2 2 +27-Apr 1 2 +28-Apr 2 0 +29-Apr 1 1 +30-Apr 0 1 +1-May 0 4 +2-May 0 3 +3-May 1 8 +4-May 0 3 +5-May 1 2 +6-May 0 3 +7-May 0 6 +8-May 1 2 +9-May 0 6 +10-May 2 3 +11-May 0 0 +12-May 1 5 +13-May 2 6 +14-May 1 4 +15-May 1 3 +16-May 1 4 +17-May 2 6 +18-May 0 6 +19-May 0 5 +20-May 1 5 +21-May 1 5 +22-May 1 5 +23-May 2 3 +24-May 3 6 +25-May 1 2 +26-May 0 0 +27-May 1 0 +28-May 1 2 +29-May 0 2 +30-May 2 2 +31-May 1 2 +1-Jun 1 3 +2-Jun 0 2 +3-Jun 3 3 +4-Jun 1 5 +5-Jun 0 4 +6-Jun 3 2 +7-Jun 3 4 +8-Jun 0 2 +9-Jun 2 0 +10-Jun 1 0 +11-Jun 1 1 +12-Jun 0 2 +13-Jun 0 0 +14-Jun 2 1 +15-Jun 1 0 +16-Jun 2 0 +17-Jun 1 5 +18-Jun 2 0 +19-Jun 1 1 +20-Jun 0 1 +21-Jun 0 2 +22-Jun 0 0 +23-Jun 0 0 +24-Jun 1 0 +25-Jun 1 0 +26-Jun 4 3 +27-Jun 1 2 +28-Jun 4 3 +29-Jun 0 3 +30-Jun 2 1 +1-Jul 0 1 +2-Jul 3 0 +3-Jul 0 1 +4-Jul 1 0 +5-Jul 2 1 +6-Jul 2 4 +7-Jul 1 0 +8-Jul 3 0 +9-Jul 1 2 +10-Jul 2 1 +11-Jul 3 1 +12-Jul 2 1 +13-Jul 4 3 +14-Jul 5 0 +15-Jul 1 2 +16-Jul 3 1 +17-Jul 0 2 +18-Jul 3 1 +19-Jul 0 2 +20-Jul 1 0 +21-Jul 0 1 +22-Jul 0 1 +23-Jul 0 0 +24-Jul 0 2 +25-Jul 0 3 +26-Jul 0 1 +27-Jul 0 0 +28-Jul 0 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 2 2 +2-Aug 3 0 +3-Aug 5 1 +4-Aug 4 1 +5-Aug 3 2 +6-Aug 1 3 +7-Aug 0 1 +8-Aug 3 1 +9-Aug 3 4 +10-Aug 2 3 +11-Aug 0 2 +12-Aug 2 1 +13-Aug 3 2 +14-Aug 0 3 +15-Aug 2 2 +16-Aug 2 0 +17-Aug 2 0 +18-Aug 3 2 +19-Aug 2 1 +20-Aug 2 2 +21-Aug 1 1 +22-Aug 3 1 +23-Aug 2 1 +24-Aug 5 0 +25-Aug 2 0 +26-Aug 0 1 +27-Aug 1 0 +28-Aug 5 3 +29-Aug 2 2 +30-Aug 2 1 +31-Aug 0 1 +1-Sep 1 3 +2-Sep 0 2 +3-Sep 1 1 +4-Sep 2 2 +5-Sep 3 1 +6-Sep 3 2 +7-Sep 1 1 +8-Sep 0 2 +9-Sep 1 5 +10-Sep 2 2 +11-Sep 1 2 +12-Sep 1 1 +13-Sep 1 2 +14-Sep 3 1 +15-Sep 1 5 +16-Sep 1 1 +17-Sep 0 2 +18-Sep 1 2 +19-Sep 0 2 +20-Sep 0 0 +21-Sep 0 3 +22-Sep 3 2 +23-Sep 1 3 +24-Sep 5 2 +25-Sep 2 1 +26-Sep 5 5 +27-Sep 2 3 +28-Sep 2 2 +29-Sep 4 3 +30-Sep 3 3 +1-Oct 1 5 +2-Oct 2 3 +3-Oct 1 5 +4-Oct 3 2 +5-Oct 1 1 +6-Oct 1 0 +7-Oct 1 3 +8-Oct 2 3 +9-Oct 0 1 +10-Oct 2 1 +11-Oct 1 1 +12-Oct 6 2 +13-Oct 2 2 +14-Oct 1 1 +15-Oct 5 0 +16-Oct 3 0 +17-Oct 3 1 +18-Oct 4 1 +19-Oct 2 1 +20-Oct 0 1 +21-Oct 3 5 +22-Oct 2 2 +23-Oct 2 5 +24-Oct 2 4 +25-Oct 2 4 +26-Oct 3 2 +27-Oct 3 0 +28-Oct 1 6 +29-Oct 1 3 +30-Oct 3 5 +31-Oct 5 3 +1-Nov 1 1 +2-Nov 1 2 +3-Nov 1 1 +4-Nov 1 16 +5-Nov 2 17 +6-Nov 4 21 +7-Nov 3 19 +8-Nov 2 16 +9-Nov 2 18 +10-Nov 3 24 +11-Nov 1 19 +12-Nov 1 16 +13-Nov 4 18 +14-Nov 4 35 +15-Nov 4 12 +16-Nov 4 9 +17-Nov 3 12 +18-Nov 4 19 +19-Nov 4 23 +20-Nov 1 18 +21-Nov 6 19 +22-Nov 5 20 +23-Nov 3 21 +24-Nov 3 22 +25-Nov 3 1 +26-Nov 2 0 +27-Nov 2 0 +28-Nov 2 0 +29-Nov 2 0 +30-Nov 4 0 +1-Dec 4 0 +2-Dec 3 0 +3-Dec 2 0 +4-Dec 5 0 +5-Dec 3 0 +6-Dec 3 0 +7-Dec 2 0 +8-Dec 0 0 +9-Dec 3 0 +10-Dec 1 0 +11-Dec 5 0 +12-Dec 3 0 +13-Dec 0 0 +14-Dec 1 0 +15-Dec 4 0 +16-Dec 5 0 +17-Dec 2 0 +18-Dec 0 0 +19-Dec 4 0 +20-Dec 2 0 +21-Dec 1 0 +22-Dec 1 0 +23-Dec 1 0 +24-Dec 1 0 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 4 0 +28-Dec 1 0 +29-Dec 3 0 +30-Dec 0 0 +31-Dec 2 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2015_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2015_salvini_trends.tsv new file mode 100644 index 0000000..1539822 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2015_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-14 Salvini-15 +1-Jan 2 0 +2-Jan 0 0 +3-Jan 1 0 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 1 1 +9-Jan 0 1 +10-Jan 1 0 +11-Jan 3 0 +12-Jan 1 0 +13-Jan 0 2 +14-Jan 0 1 +15-Jan 2 0 +16-Jan 1 1 +17-Jan 0 0 +18-Jan 1 1 +19-Jan 1 1 +20-Jan 0 0 +21-Jan 0 3 +22-Jan 1 1 +23-Jan 0 1 +24-Jan 0 0 +25-Jan 1 0 +26-Jan 0 1 +27-Jan 1 0 +28-Jan 3 3 +29-Jan 3 2 +30-Jan 1 2 +31-Jan 1 0 +1-Feb 0 4 +2-Feb 0 1 +3-Feb 0 0 +4-Feb 0 0 +5-Feb 0 1 +6-Feb 0 2 +7-Feb 0 0 +8-Feb 1 0 +9-Feb 2 2 +10-Feb 2 0 +11-Feb 0 1 +12-Feb 3 1 +13-Feb 1 0 +14-Feb 0 1 +15-Feb 3 0 +16-Feb 3 0 +17-Feb 2 1 +18-Feb 2 2 +19-Feb 0 2 +20-Feb 3 0 +21-Feb 1 1 +22-Feb 3 1 +23-Feb 2 1 +24-Feb 2 2 +25-Feb 2 2 +26-Feb 2 3 +27-Feb 2 1 +28-Feb 0 1 +1-Mar 5 2 +2-Mar 6 0 +3-Mar 0 1 +4-Mar 1 1 +5-Mar 2 2 +6-Mar 0 2 +7-Mar 1 1 +8-Mar 1 1 +9-Mar 3 1 +10-Mar 4 0 +11-Mar 0 1 +12-Mar 0 2 +13-Mar 2 0 +14-Mar 0 2 +15-Mar 3 0 +16-Mar 1 1 +17-Mar 0 1 +18-Mar 1 2 +19-Mar 1 1 +20-Mar 2 1 +21-Mar 2 0 +22-Mar 4 0 +23-Mar 2 2 +24-Mar 1 3 +25-Mar 3 2 +26-Mar 3 2 +27-Mar 1 1 +28-Mar 2 2 +29-Mar 3 1 +30-Mar 2 1 +31-Mar 1 1 +1-Apr 3 3 +2-Apr 0 2 +3-Apr 0 1 +4-Apr 1 1 +5-Apr 6 0 +6-Apr 4 0 +7-Apr 1 1 +8-Apr 1 2 +9-Apr 2 2 +10-Apr 1 2 +11-Apr 2 2 +12-Apr 1 1 +13-Apr 2 1 +14-Apr 3 3 +15-Apr 1 1 +16-Apr 1 1 +17-Apr 1 2 +18-Apr 0 2 +19-Apr 1 1 +20-Apr 1 4 +21-Apr 0 3 +22-Apr 1 2 +23-Apr 3 2 +24-Apr 1 1 +25-Apr 4 0 +26-Apr 6 0 +27-Apr 0 5 +28-Apr 4 3 +29-Apr 3 3 +30-Apr 2 1 +1-May 5 5 +2-May 3 1 +3-May 5 0 +4-May 2 5 +5-May 5 2 +6-May 5 4 +7-May 3 1 +8-May 5 2 +9-May 1 2 +10-May 3 3 +11-May 6 3 +12-May 6 5 +13-May 5 2 +14-May 2 5 +15-May 2 3 +16-May 4 5 +17-May 4 1 +18-May 7 2 +19-May 4 2 +20-May 9 3 +21-May 5 2 +22-May 2 3 +23-May 7 4 +24-May 4 5 +25-May 23 5 +26-May 3 9 +27-May 1 4 +28-May 2 5 +29-May 2 5 +30-May 4 0 +31-May 1 1 +1-Jun 4 2 +2-Jun 1 0 +3-Jun 3 2 +4-Jun 3 3 +5-Jun 3 3 +6-Jun 1 0 +7-Jun 3 3 +8-Jun 1 3 +9-Jun 1 0 +10-Jun 2 4 +11-Jun 0 1 +12-Jun 0 3 +13-Jun 2 1 +14-Jun 0 1 +15-Jun 1 2 +16-Jun 2 1 +17-Jun 0 1 +18-Jun 4 2 +19-Jun 0 1 +20-Jun 0 1 +21-Jun 0 0 +22-Jun 2 2 +23-Jun 0 2 +24-Jun 0 2 +25-Jun 1 2 +26-Jun 0 0 +27-Jun 0 0 +28-Jun 0 1 +29-Jun 1 3 +30-Jun 0 2 +1-Jul 2 3 +2-Jul 2 2 +3-Jul 0 4 +4-Jul 0 0 +5-Jul 1 0 +6-Jul 0 2 +7-Jul 1 3 +8-Jul 0 3 +9-Jul 1 1 +10-Jul 1 1 +11-Jul 1 1 +12-Jul 7 1 +13-Jul 5 2 +14-Jul 2 3 +15-Jul 0 4 +16-Jul 2 2 +17-Jul 0 2 +18-Jul 0 3 +19-Jul 1 2 +20-Jul 2 1 +21-Jul 1 0 +22-Jul 0 1 +23-Jul 1 0 +24-Jul 1 0 +25-Jul 0 0 +26-Jul 0 0 +27-Jul 0 1 +28-Jul 1 2 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 1 0 +2-Aug 0 1 +3-Aug 1 0 +4-Aug 2 2 +5-Aug 0 2 +6-Aug 1 2 +7-Aug 1 2 +8-Aug 0 1 +9-Aug 1 1 +10-Aug 0 0 +11-Aug 0 1 +12-Aug 0 1 +13-Aug 0 3 +14-Aug 0 0 +15-Aug 0 0 +16-Aug 3 2 +17-Aug 3 2 +18-Aug 2 0 +19-Aug 0 0 +20-Aug 1 3 +21-Aug 0 0 +22-Aug 1 1 +23-Aug 4 0 +24-Aug 2 2 +25-Aug 0 0 +26-Aug 0 1 +27-Aug 0 1 +28-Aug 0 1 +29-Aug 0 1 +30-Aug 1 0 +31-Aug 0 2 +1-Sep 1 2 +2-Sep 0 1 +3-Sep 3 1 +4-Sep 1 2 +5-Sep 1 0 +6-Sep 1 2 +7-Sep 3 3 +8-Sep 1 2 +9-Sep 0 3 +10-Sep 0 1 +11-Sep 0 2 +12-Sep 0 0 +13-Sep 1 2 +14-Sep 2 2 +15-Sep 0 3 +16-Sep 1 2 +17-Sep 2 3 +18-Sep 0 2 +19-Sep 1 1 +20-Sep 2 1 +21-Sep 2 1 +22-Sep 1 2 +23-Sep 0 1 +24-Sep 0 1 +25-Sep 1 1 +26-Sep 1 0 +27-Sep 2 0 +28-Sep 3 1 +29-Sep 2 2 +30-Sep 1 1 +1-Oct 1 2 +2-Oct 2 2 +3-Oct 0 1 +4-Oct 2 0 +5-Oct 2 0 +6-Oct 0 2 +7-Oct 0 2 +8-Oct 1 2 +9-Oct 0 2 +10-Oct 2 0 +11-Oct 4 0 +12-Oct 1 2 +13-Oct 2 3 +14-Oct 4 1 +15-Oct 3 1 +16-Oct 1 0 +17-Oct 3 2 +18-Oct 4 1 +19-Oct 2 1 +20-Oct 2 1 +21-Oct 3 4 +22-Oct 0 5 +23-Oct 2 3 +24-Oct 2 1 +25-Oct 1 1 +26-Oct 1 3 +27-Oct 2 5 +28-Oct 1 5 +29-Oct 2 4 +30-Oct 1 5 +31-Oct 5 5 +1-Nov 3 2 +2-Nov 0 7 +3-Nov 2 3 +4-Nov 0 4 +5-Nov 0 4 +6-Nov 0 4 +7-Nov 2 1 +8-Nov 4 2 +9-Nov 5 4 +10-Nov 3 3 +11-Nov 2 3 +12-Nov 1 6 +13-Nov 2 2 +14-Nov 5 3 +15-Nov 4 2 +16-Nov 0 4 +17-Nov 2 2 +18-Nov 0 5 +19-Nov 2 3 +20-Nov 7 3 +21-Nov 4 2 +22-Nov 1 0 +23-Nov 2 2 +24-Nov 1 2 +25-Nov 0 3 +26-Nov 1 2 +27-Nov 1 0 +28-Nov 3 1 +29-Nov 0 2 +30-Nov 0 4 +1-Dec 1 3 +2-Dec 1 4 +3-Dec 1 4 +4-Dec 1 4 +5-Dec 0 1 +6-Dec 2 0 +7-Dec 1 1 +8-Dec 3 0 +9-Dec 1 1 +10-Dec 2 1 +11-Dec 1 1 +12-Dec 1 0 +13-Dec 2 1 +14-Dec 1 1 +15-Dec 3 2 +16-Dec 1 2 +17-Dec 1 1 +18-Dec 1 0 +19-Dec 3 0 +20-Dec 2 0 +21-Dec 2 0 +22-Dec 1 1 +23-Dec 1 0 +24-Dec 2 2 +25-Dec 0 2 +26-Dec 1 1 +27-Dec 3 0 +28-Dec 0 0 +29-Dec 3 0 +30-Dec 0 0 +31-Dec 1 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2016_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2016_salvini_trends.tsv new file mode 100644 index 0000000..f98427e --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2016_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-14 Salvini-16 +1-Jan 2 1 +2-Jan 0 0 +3-Jan 1 0 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 2 +8-Jan 1 2 +9-Jan 0 0 +10-Jan 1 1 +11-Jan 3 2 +12-Jan 1 4 +13-Jan 0 5 +14-Jan 0 2 +15-Jan 2 2 +16-Jan 1 1 +17-Jan 0 1 +18-Jan 1 3 +19-Jan 1 4 +20-Jan 0 5 +21-Jan 0 3 +22-Jan 1 2 +23-Jan 0 2 +24-Jan 0 2 +25-Jan 1 5 +26-Jan 0 4 +27-Jan 1 4 +28-Jan 3 1 +29-Jan 3 0 +30-Jan 1 2 +31-Jan 1 2 +1-Feb 0 3 +2-Feb 0 4 +3-Feb 0 2 +4-Feb 0 3 +5-Feb 0 4 +6-Feb 0 4 +7-Feb 0 0 +8-Feb 1 3 +9-Feb 2 2 +10-Feb 2 1 +11-Feb 0 3 +12-Feb 3 2 +13-Feb 1 1 +14-Feb 0 1 +15-Feb 3 3 +16-Feb 3 4 +17-Feb 2 2 +18-Feb 2 0 +19-Feb 0 1 +20-Feb 3 1 +21-Feb 1 0 +22-Feb 3 2 +23-Feb 2 2 +24-Feb 2 4 +25-Feb 2 4 +26-Feb 2 3 +27-Feb 2 1 +28-Feb 0 1 +1-Mar 5 2 +2-Mar 6 1 +3-Mar 0 1 +4-Mar 1 1 +5-Mar 2 1 +6-Mar 0 1 +7-Mar 1 2 +8-Mar 1 1 +9-Mar 3 1 +10-Mar 4 2 +11-Mar 0 0 +12-Mar 0 0 +13-Mar 2 0 +14-Mar 0 2 +15-Mar 3 2 +16-Mar 1 1 +17-Mar 0 1 +18-Mar 1 2 +19-Mar 1 1 +20-Mar 2 0 +21-Mar 2 1 +22-Mar 4 2 +23-Mar 2 3 +24-Mar 1 3 +25-Mar 3 1 +26-Mar 3 1 +27-Mar 1 0 +28-Mar 2 0 +29-Mar 3 1 +30-Mar 2 1 +31-Mar 1 1 +1-Apr 3 1 +2-Apr 0 1 +3-Apr 0 2 +4-Apr 1 3 +5-Apr 6 3 +6-Apr 4 4 +7-Apr 1 2 +8-Apr 1 1 +9-Apr 2 2 +10-Apr 1 2 +11-Apr 2 3 +12-Apr 1 0 +13-Apr 2 1 +14-Apr 3 1 +15-Apr 1 2 +16-Apr 1 3 +17-Apr 1 0 +18-Apr 0 2 +19-Apr 1 4 +20-Apr 1 4 +21-Apr 0 4 +22-Apr 1 1 +23-Apr 3 1 +24-Apr 1 1 +25-Apr 4 0 +26-Apr 6 1 +27-Apr 0 1 +28-Apr 4 0 +29-Apr 3 1 +30-Apr 2 2 +1-May 5 0 +2-May 3 1 +3-May 5 0 +4-May 2 1 +5-May 5 0 +6-May 5 1 +7-May 3 0 +8-May 5 0 +9-May 1 0 +10-May 3 0 +11-May 6 1 +12-May 6 3 +13-May 5 2 +14-May 2 5 +15-May 2 3 +16-May 4 2 +17-May 4 4 +18-May 7 5 +19-May 4 5 +20-May 9 6 +21-May 5 2 +22-May 2 4 +23-May 7 2 +24-May 4 3 +25-May 23 3 +26-May 3 3 +27-May 1 2 +28-May 2 1 +29-May 2 4 +30-May 4 2 +31-May 1 5 +1-Jun 4 7 +2-Jun 1 4 +3-Jun 3 2 +4-Jun 3 3 +5-Jun 3 1 +6-Jun 1 2 +7-Jun 3 1 +8-Jun 1 2 +9-Jun 1 3 +10-Jun 2 2 +11-Jun 0 1 +12-Jun 0 0 +13-Jun 2 2 +14-Jun 0 1 +15-Jun 1 3 +16-Jun 2 2 +17-Jun 0 3 +18-Jun 4 0 +19-Jun 0 1 +20-Jun 0 0 +21-Jun 0 0 +22-Jun 2 1 +23-Jun 0 0 +24-Jun 0 2 +25-Jun 1 4 +26-Jun 0 0 +27-Jun 0 0 +28-Jun 0 2 +29-Jun 1 2 +30-Jun 0 1 +1-Jul 2 2 +2-Jul 2 0 +3-Jul 0 0 +4-Jul 0 1 +5-Jul 1 1 +6-Jul 0 2 +7-Jul 1 1 +8-Jul 0 2 +9-Jul 1 1 +10-Jul 1 0 +11-Jul 1 1 +12-Jul 7 2 +13-Jul 5 0 +14-Jul 2 0 +15-Jul 0 0 +16-Jul 2 0 +17-Jul 0 2 +18-Jul 0 0 +19-Jul 1 2 +20-Jul 2 0 +21-Jul 1 1 +22-Jul 0 2 +23-Jul 1 1 +24-Jul 1 0 +25-Jul 0 1 +26-Jul 0 1 +27-Jul 0 0 +28-Jul 1 1 +29-Jul 0 1 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 1 0 +2-Aug 0 0 +3-Aug 1 1 +4-Aug 2 1 +5-Aug 0 1 +6-Aug 1 0 +7-Aug 1 0 +8-Aug 0 0 +9-Aug 1 1 +10-Aug 0 0 +11-Aug 0 0 +12-Aug 0 0 +13-Aug 0 0 +14-Aug 0 0 +15-Aug 0 0 +16-Aug 3 2 +17-Aug 3 1 +18-Aug 2 0 +19-Aug 0 0 +20-Aug 1 0 +21-Aug 0 1 +22-Aug 1 0 +23-Aug 4 1 +24-Aug 2 0 +25-Aug 0 0 +26-Aug 0 0 +27-Aug 0 1 +28-Aug 0 0 +29-Aug 0 1 +30-Aug 1 0 +31-Aug 0 2 +1-Sep 1 0 +2-Sep 0 1 +3-Sep 3 0 +4-Sep 1 2 +5-Sep 1 0 +6-Sep 1 3 +7-Sep 3 0 +8-Sep 1 2 +9-Sep 0 1 +10-Sep 0 0 +11-Sep 0 0 +12-Sep 0 2 +13-Sep 1 0 +14-Sep 2 1 +15-Sep 0 2 +16-Sep 1 0 +17-Sep 2 0 +18-Sep 0 3 +19-Sep 1 2 +20-Sep 2 2 +21-Sep 2 2 +22-Sep 1 2 +23-Sep 0 2 +24-Sep 0 2 +25-Sep 1 1 +26-Sep 1 2 +27-Sep 2 2 +28-Sep 3 2 +29-Sep 2 4 +30-Sep 1 2 +1-Oct 1 2 +2-Oct 2 1 +3-Oct 0 3 +4-Oct 2 2 +5-Oct 2 3 +6-Oct 0 1 +7-Oct 0 1 +8-Oct 1 2 +9-Oct 0 3 +10-Oct 2 1 +11-Oct 4 2 +12-Oct 1 2 +13-Oct 2 2 +14-Oct 4 1 +15-Oct 3 2 +16-Oct 1 1 +17-Oct 3 1 +18-Oct 4 1 +19-Oct 2 1 +20-Oct 2 1 +21-Oct 3 2 +22-Oct 0 1 +23-Oct 2 0 +24-Oct 2 2 +25-Oct 1 2 +26-Oct 1 3 +27-Oct 2 2 +28-Oct 1 1 +29-Oct 2 1 +30-Oct 1 0 +31-Oct 5 0 +1-Nov 3 1 +2-Nov 0 1 +3-Nov 2 4 +4-Nov 0 6 +5-Nov 0 2 +6-Nov 0 2 +7-Nov 2 1 +8-Nov 4 1 +9-Nov 5 4 +10-Nov 3 3 +11-Nov 2 7 +12-Nov 1 3 +13-Nov 2 0 +14-Nov 5 3 +15-Nov 4 1 +16-Nov 0 5 +17-Nov 2 3 +18-Nov 0 2 +19-Nov 2 3 +20-Nov 7 4 +21-Nov 4 2 +22-Nov 1 4 +23-Nov 2 3 +24-Nov 1 2 +25-Nov 0 6 +26-Nov 1 4 +27-Nov 1 3 +28-Nov 3 4 +29-Nov 0 3 +30-Nov 0 3 +1-Dec 1 4 +2-Dec 1 3 +3-Dec 1 4 +4-Dec 1 4 +5-Dec 0 4 +6-Dec 2 5 +7-Dec 1 3 +8-Dec 3 0 +9-Dec 1 0 +10-Dec 2 0 +11-Dec 1 0 +12-Dec 1 0 +13-Dec 2 3 +14-Dec 1 3 +15-Dec 3 0 +16-Dec 1 1 +17-Dec 1 0 +18-Dec 1 1 +19-Dec 3 1 +20-Dec 2 0 +21-Dec 2 2 +22-Dec 1 3 +23-Dec 1 0 +24-Dec 2 2 +25-Dec 0 0 +26-Dec 1 0 +27-Dec 3 0 +28-Dec 0 2 +29-Dec 3 0 +30-Dec 0 0 +31-Dec 1 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2017_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2017_salvini_trends.tsv new file mode 100644 index 0000000..23e5eaa --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2017_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-14 Salvini-17 +1-Jan 2 0 +2-Jan 0 0 +3-Jan 1 1 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 1 0 +9-Jan 0 1 +10-Jan 1 0 +11-Jan 3 3 +12-Jan 1 1 +13-Jan 0 1 +14-Jan 0 0 +15-Jan 2 0 +16-Jan 1 2 +17-Jan 0 0 +18-Jan 1 1 +19-Jan 1 2 +20-Jan 0 2 +21-Jan 0 2 +22-Jan 1 2 +23-Jan 0 3 +24-Jan 0 2 +25-Jan 1 1 +26-Jan 0 3 +27-Jan 1 0 +28-Jan 3 1 +29-Jan 3 2 +30-Jan 1 2 +31-Jan 1 3 +1-Feb 0 1 +2-Feb 0 1 +3-Feb 0 0 +4-Feb 0 1 +5-Feb 0 0 +6-Feb 0 0 +7-Feb 0 2 +8-Feb 1 2 +9-Feb 2 1 +10-Feb 2 1 +11-Feb 0 0 +12-Feb 3 1 +13-Feb 1 0 +14-Feb 0 1 +15-Feb 3 2 +16-Feb 3 0 +17-Feb 2 1 +18-Feb 2 1 +19-Feb 0 1 +20-Feb 3 2 +21-Feb 1 1 +22-Feb 3 2 +23-Feb 2 2 +24-Feb 2 1 +25-Feb 2 0 +26-Feb 2 3 +27-Feb 2 2 +28-Feb 0 0 +1-Mar 5 0 +2-Mar 6 0 +3-Mar 0 1 +4-Mar 1 4 +5-Mar 2 2 +6-Mar 0 0 +7-Mar 1 3 +8-Mar 1 0 +9-Mar 3 2 +10-Mar 4 2 +11-Mar 0 1 +12-Mar 0 0 +13-Mar 2 1 +14-Mar 0 2 +15-Mar 3 2 +16-Mar 1 0 +17-Mar 0 1 +18-Mar 1 0 +19-Mar 1 1 +20-Mar 2 4 +21-Mar 2 1 +22-Mar 4 1 +23-Mar 2 2 +24-Mar 1 1 +25-Mar 3 2 +26-Mar 3 0 +27-Mar 1 1 +28-Mar 2 2 +29-Mar 3 3 +30-Mar 2 3 +31-Mar 1 2 +1-Apr 3 2 +2-Apr 0 1 +3-Apr 0 1 +4-Apr 1 2 +5-Apr 6 2 +6-Apr 4 4 +7-Apr 1 1 +8-Apr 1 1 +9-Apr 2 0 +10-Apr 1 3 +11-Apr 2 1 +12-Apr 1 1 +13-Apr 2 1 +14-Apr 3 0 +15-Apr 1 0 +16-Apr 1 0 +17-Apr 1 1 +18-Apr 0 2 +19-Apr 1 0 +20-Apr 1 2 +21-Apr 0 1 +22-Apr 1 0 +23-Apr 3 0 +24-Apr 1 1 +25-Apr 4 2 +26-Apr 6 1 +27-Apr 0 3 +28-Apr 4 1 +29-Apr 3 0 +30-Apr 2 1 +1-May 5 2 +2-May 3 3 +3-May 5 3 +4-May 2 3 +5-May 5 1 +6-May 5 2 +7-May 3 1 +8-May 5 0 +9-May 1 0 +10-May 3 2 +11-May 6 4 +12-May 6 3 +13-May 5 0 +14-May 2 3 +15-May 2 2 +16-May 4 0 +17-May 4 4 +18-May 7 1 +19-May 4 1 +20-May 9 3 +21-May 5 1 +22-May 2 2 +23-May 7 1 +24-May 4 3 +25-May 23 5 +26-May 3 3 +27-May 1 3 +28-May 2 0 +29-May 2 3 +30-May 4 0 +31-May 1 3 +1-Jun 4 4 +2-Jun 1 1 +3-Jun 3 1 +4-Jun 3 0 +5-Jun 3 2 +6-Jun 1 4 +7-Jun 3 2 +8-Jun 1 3 +9-Jun 1 5 +10-Jun 2 1 +11-Jun 0 0 +12-Jun 0 0 +13-Jun 2 4 +14-Jun 0 4 +15-Jun 1 3 +16-Jun 2 3 +17-Jun 0 1 +18-Jun 4 1 +19-Jun 0 1 +20-Jun 0 2 +21-Jun 0 1 +22-Jun 2 0 +23-Jun 0 5 +24-Jun 0 1 +25-Jun 1 0 +26-Jun 0 4 +27-Jun 0 0 +28-Jun 0 3 +29-Jun 1 1 +30-Jun 0 0 +1-Jul 2 0 +2-Jul 2 1 +3-Jul 0 1 +4-Jul 0 1 +5-Jul 1 2 +6-Jul 0 0 +7-Jul 1 1 +8-Jul 0 0 +9-Jul 1 3 +10-Jul 1 0 +11-Jul 1 3 +12-Jul 7 1 +13-Jul 5 1 +14-Jul 2 0 +15-Jul 0 1 +16-Jul 2 0 +17-Jul 0 0 +18-Jul 0 1 +19-Jul 1 2 +20-Jul 2 3 +21-Jul 1 2 +22-Jul 0 0 +23-Jul 1 2 +24-Jul 1 2 +25-Jul 0 0 +26-Jul 0 1 +27-Jul 0 0 +28-Jul 1 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 1 +1-Aug 1 0 +2-Aug 0 2 +3-Aug 1 3 +4-Aug 2 0 +5-Aug 0 0 +6-Aug 1 1 +7-Aug 1 2 +8-Aug 0 2 +9-Aug 1 1 +10-Aug 0 1 +11-Aug 0 2 +12-Aug 0 3 +13-Aug 0 3 +14-Aug 0 1 +15-Aug 0 3 +16-Aug 3 0 +17-Aug 3 0 +18-Aug 2 0 +19-Aug 0 1 +20-Aug 1 0 +21-Aug 0 0 +22-Aug 1 1 +23-Aug 4 1 +24-Aug 2 2 +25-Aug 0 0 +26-Aug 0 1 +27-Aug 0 0 +28-Aug 0 1 +29-Aug 0 0 +30-Aug 1 1 +31-Aug 0 0 +1-Sep 1 0 +2-Sep 0 1 +3-Sep 3 1 +4-Sep 1 0 +5-Sep 1 1 +6-Sep 1 1 +7-Sep 3 1 +8-Sep 1 0 +9-Sep 0 3 +10-Sep 0 1 +11-Sep 0 2 +12-Sep 0 1 +13-Sep 1 4 +14-Sep 2 2 +15-Sep 0 4 +16-Sep 1 2 +17-Sep 2 4 +18-Sep 0 1 +19-Sep 1 5 +20-Sep 2 2 +21-Sep 2 1 +22-Sep 1 1 +23-Sep 0 0 +24-Sep 0 1 +25-Sep 1 1 +26-Sep 1 0 +27-Sep 2 3 +28-Sep 3 2 +29-Sep 2 3 +30-Sep 1 0 +1-Oct 1 2 +2-Oct 2 2 +3-Oct 0 2 +4-Oct 2 3 +5-Oct 2 2 +6-Oct 0 3 +7-Oct 0 0 +8-Oct 1 1 +9-Oct 0 1 +10-Oct 2 1 +11-Oct 4 1 +12-Oct 1 1 +13-Oct 2 1 +14-Oct 4 3 +15-Oct 3 0 +16-Oct 1 0 +17-Oct 3 4 +18-Oct 4 1 +19-Oct 2 1 +20-Oct 2 1 +21-Oct 3 2 +22-Oct 0 2 +23-Oct 2 1 +24-Oct 2 1 +25-Oct 1 2 +26-Oct 1 1 +27-Oct 2 3 +28-Oct 1 3 +29-Oct 2 2 +30-Oct 1 5 +31-Oct 5 2 +1-Nov 3 4 +2-Nov 0 3 +3-Nov 2 1 +4-Nov 0 2 +5-Nov 0 0 +6-Nov 0 0 +7-Nov 2 2 +8-Nov 4 5 +9-Nov 5 4 +10-Nov 3 4 +11-Nov 2 5 +12-Nov 1 3 +13-Nov 2 1 +14-Nov 5 4 +15-Nov 4 4 +16-Nov 0 3 +17-Nov 2 5 +18-Nov 0 5 +19-Nov 2 6 +20-Nov 7 4 +21-Nov 4 3 +22-Nov 1 4 +23-Nov 2 6 +24-Nov 1 4 +25-Nov 0 4 +26-Nov 1 4 +27-Nov 1 1 +28-Nov 3 2 +29-Nov 0 1 +30-Nov 0 4 +1-Dec 1 1 +2-Dec 1 1 +3-Dec 1 0 +4-Dec 1 0 +5-Dec 0 4 +6-Dec 2 3 +7-Dec 1 2 +8-Dec 3 2 +9-Dec 1 3 +10-Dec 2 6 +11-Dec 1 5 +12-Dec 1 3 +13-Dec 2 4 +14-Dec 1 2 +15-Dec 3 4 +16-Dec 1 3 +17-Dec 1 2 +18-Dec 1 4 +19-Dec 3 4 +20-Dec 2 6 +21-Dec 2 3 +22-Dec 1 1 +23-Dec 1 1 +24-Dec 2 1 +25-Dec 0 1 +26-Dec 1 0 +27-Dec 3 0 +28-Dec 0 2 +29-Dec 3 1 +30-Dec 0 0 +31-Dec 1 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2018_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2018_salvini_trends.tsv new file mode 100644 index 0000000..365afb8 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2018_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-14 Salvini-18 +1-Jan 2 0 +2-Jan 0 0 +3-Jan 1 1 +4-Jan 0 1 +5-Jan 0 0 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 1 1 +9-Jan 0 3 +10-Jan 1 3 +11-Jan 3 2 +12-Jan 1 2 +13-Jan 0 1 +14-Jan 0 1 +15-Jan 2 1 +16-Jan 1 3 +17-Jan 0 2 +18-Jan 1 3 +19-Jan 1 3 +20-Jan 0 2 +21-Jan 0 0 +22-Jan 1 0 +23-Jan 0 1 +24-Jan 0 3 +25-Jan 1 4 +26-Jan 0 1 +27-Jan 1 2 +28-Jan 3 2 +29-Jan 3 2 +30-Jan 1 4 +31-Jan 1 5 +1-Feb 0 4 +2-Feb 0 2 +3-Feb 0 3 +4-Feb 0 3 +5-Feb 0 3 +6-Feb 0 3 +7-Feb 0 4 +8-Feb 1 3 +9-Feb 2 2 +10-Feb 2 2 +11-Feb 0 2 +12-Feb 3 2 +13-Feb 1 2 +14-Feb 0 4 +15-Feb 3 3 +16-Feb 3 5 +17-Feb 2 3 +18-Feb 2 3 +19-Feb 0 2 +20-Feb 3 7 +21-Feb 1 5 +22-Feb 3 0 +23-Feb 2 6 +24-Feb 2 5 +25-Feb 2 1 +26-Feb 2 4 +27-Feb 2 5 +28-Feb 0 4 +1-Mar 5 4 +2-Mar 6 8 +3-Mar 0 6 +4-Mar 1 6 +5-Mar 2 1 +6-Mar 0 0 +7-Mar 1 0 +8-Mar 1 1 +9-Mar 3 2 +10-Mar 4 0 +11-Mar 0 1 +12-Mar 0 0 +13-Mar 2 2 +14-Mar 0 1 +15-Mar 3 3 +16-Mar 1 2 +17-Mar 0 1 +18-Mar 1 2 +19-Mar 1 2 +20-Mar 2 2 +21-Mar 2 2 +22-Mar 4 2 +23-Mar 2 0 +24-Mar 1 0 +25-Mar 3 0 +26-Mar 3 0 +27-Mar 1 0 +28-Mar 2 1 +29-Mar 3 1 +30-Mar 2 1 +31-Mar 1 0 +1-Apr 3 0 +2-Apr 0 0 +3-Apr 0 0 +4-Apr 1 3 +5-Apr 6 1 +6-Apr 4 0 +7-Apr 1 0 +8-Apr 1 1 +9-Apr 2 3 +10-Apr 1 0 +11-Apr 2 1 +12-Apr 1 1 +13-Apr 2 2 +14-Apr 3 1 +15-Apr 1 1 +16-Apr 1 3 +17-Apr 1 1 +18-Apr 0 2 +19-Apr 1 3 +20-Apr 1 1 +21-Apr 0 1 +22-Apr 1 0 +23-Apr 3 3 +24-Apr 1 1 +25-Apr 4 0 +26-Apr 6 1 +27-Apr 0 4 +28-Apr 4 0 +29-Apr 3 0 +30-Apr 2 0 +1-May 5 0 +2-May 3 2 +3-May 5 0 +4-May 2 1 +5-May 5 0 +6-May 5 1 +7-May 3 4 +8-May 5 1 +9-May 1 0 +10-May 3 0 +11-May 6 0 +12-May 6 0 +13-May 5 0 +14-May 2 0 +15-May 2 1 +16-May 4 1 +17-May 4 0 +18-May 7 0 +19-May 4 1 +20-May 9 2 +21-May 5 1 +22-May 2 1 +23-May 7 2 +24-May 4 3 +25-May 23 0 +26-May 3 1 +27-May 1 3 +28-May 2 3 +29-May 2 4 +30-May 4 5 +31-May 1 1 +1-Jun 4 3 +2-Jun 1 1 +3-Jun 3 1 +4-Jun 3 0 +5-Jun 3 4 +6-Jun 1 3 +7-Jun 3 3 +8-Jun 1 0 +9-Jun 1 1 +10-Jun 2 1 +11-Jun 0 0 +12-Jun 0 1 +13-Jun 2 1 +14-Jun 0 1 +15-Jun 1 3 +16-Jun 2 0 +17-Jun 0 4 +18-Jun 4 3 +19-Jun 0 2 +20-Jun 0 2 +21-Jun 0 5 +22-Jun 2 2 +23-Jun 0 1 +24-Jun 0 1 +25-Jun 1 3 +26-Jun 0 3 +27-Jun 0 0 +28-Jun 0 1 +29-Jun 1 2 +30-Jun 0 0 +1-Jul 2 3 +2-Jul 2 2 +3-Jul 0 1 +4-Jul 0 2 +5-Jul 1 3 +6-Jul 0 1 +7-Jul 1 1 +8-Jul 0 1 +9-Jul 1 1 +10-Jul 1 4 +11-Jul 1 1 +12-Jul 7 5 +13-Jul 5 1 +14-Jul 2 2 +15-Jul 0 0 +16-Jul 2 2 +17-Jul 0 2 +18-Jul 0 1 +19-Jul 1 1 +20-Jul 2 0 +21-Jul 1 1 +22-Jul 0 0 +23-Jul 1 0 +24-Jul 1 1 +25-Jul 0 2 +26-Jul 0 2 +27-Jul 0 2 +28-Jul 1 3 +29-Jul 0 0 +30-Jul 0 1 +31-Jul 0 1 +1-Aug 1 1 +2-Aug 0 1 +3-Aug 1 2 +4-Aug 2 0 +5-Aug 0 2 +6-Aug 1 2 +7-Aug 1 1 +8-Aug 0 1 +9-Aug 1 1 +10-Aug 0 0 +11-Aug 0 1 +12-Aug 0 0 +13-Aug 0 2 +14-Aug 0 3 +15-Aug 0 4 +16-Aug 3 2 +17-Aug 3 0 +18-Aug 2 2 +19-Aug 0 0 +20-Aug 1 1 +21-Aug 0 0 +22-Aug 1 0 +23-Aug 4 1 +24-Aug 2 1 +25-Aug 0 1 +26-Aug 0 0 +27-Aug 0 0 +28-Aug 0 2 +29-Aug 0 0 +30-Aug 1 0 +31-Aug 0 2 +1-Sep 1 1 +2-Sep 0 4 +3-Sep 3 1 +4-Sep 1 1 +5-Sep 1 3 +6-Sep 1 2 +7-Sep 3 2 +8-Sep 1 1 +9-Sep 0 3 +10-Sep 0 1 +11-Sep 0 2 +12-Sep 0 1 +13-Sep 1 1 +14-Sep 2 3 +15-Sep 0 3 +16-Sep 1 2 +17-Sep 2 0 +18-Sep 0 1 +19-Sep 1 6 +20-Sep 2 3 +21-Sep 2 1 +22-Sep 1 3 +23-Sep 0 1 +24-Sep 0 2 +25-Sep 1 1 +26-Sep 1 1 +27-Sep 2 2 +28-Sep 3 2 +29-Sep 2 3 +30-Sep 1 1 +1-Oct 1 2 +2-Oct 2 1 +3-Oct 0 3 +4-Oct 2 3 +5-Oct 2 3 +6-Oct 0 1 +7-Oct 0 1 +8-Oct 1 0 +9-Oct 0 4 +10-Oct 2 3 +11-Oct 4 2 +12-Oct 1 0 +13-Oct 2 4 +14-Oct 4 5 +15-Oct 3 2 +16-Oct 1 5 +17-Oct 3 4 +18-Oct 4 2 +19-Oct 2 5 +20-Oct 2 1 +21-Oct 3 1 +22-Oct 0 1 +23-Oct 2 2 +24-Oct 2 2 +25-Oct 1 4 +26-Oct 1 5 +27-Oct 2 2 +28-Oct 1 0 +29-Oct 2 1 +30-Oct 1 1 +31-Oct 5 1 +1-Nov 3 2 +2-Nov 0 1 +3-Nov 2 2 +4-Nov 0 2 +5-Nov 0 1 +6-Nov 0 2 +7-Nov 2 3 +8-Nov 4 1 +9-Nov 5 1 +10-Nov 3 0 +11-Nov 2 1 +12-Nov 1 0 +13-Nov 2 0 +14-Nov 5 0 +15-Nov 4 2 +16-Nov 0 0 +17-Nov 2 2 +18-Nov 0 0 +19-Nov 2 1 +20-Nov 7 1 +21-Nov 4 1 +22-Nov 1 2 +23-Nov 2 1 +24-Nov 1 0 +25-Nov 0 0 +26-Nov 1 1 +27-Nov 1 2 +28-Nov 3 2 +29-Nov 0 1 +30-Nov 0 0 +1-Dec 1 0 +2-Dec 1 0 +3-Dec 1 3 +4-Dec 1 0 +5-Dec 0 1 +6-Dec 2 3 +7-Dec 1 1 +8-Dec 3 1 +9-Dec 1 2 +10-Dec 2 2 +11-Dec 1 0 +12-Dec 1 2 +13-Dec 2 0 +14-Dec 1 0 +15-Dec 3 0 +16-Dec 1 2 +17-Dec 1 1 +18-Dec 1 4 +19-Dec 3 0 +20-Dec 2 3 +21-Dec 2 0 +22-Dec 1 0 +23-Dec 1 0 +24-Dec 2 1 +25-Dec 0 0 +26-Dec 1 0 +27-Dec 3 1 +28-Dec 0 2 +29-Dec 3 0 +30-Dec 0 0 +31-Dec 1 2 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2019_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2019_salvini_trends.tsv new file mode 100644 index 0000000..96b0043 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2014_salvini_2019_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-14 Salvini-19 +1-Jan 2 0 +2-Jan 0 1 +3-Jan 1 2 +4-Jan 0 4 +5-Jan 0 3 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 1 1 +9-Jan 0 1 +10-Jan 1 1 +11-Jan 3 1 +12-Jan 1 0 +13-Jan 0 1 +14-Jan 0 3 +15-Jan 2 0 +16-Jan 1 5 +17-Jan 0 1 +18-Jan 1 3 +19-Jan 1 1 +20-Jan 0 2 +21-Jan 0 0 +22-Jan 1 1 +23-Jan 0 0 +24-Jan 0 1 +25-Jan 1 2 +26-Jan 0 0 +27-Jan 1 1 +28-Jan 3 1 +29-Jan 3 0 +30-Jan 1 1 +31-Jan 1 0 +1-Feb 0 3 +2-Feb 0 1 +3-Feb 0 3 +4-Feb 0 1 +5-Feb 0 1 +6-Feb 0 2 +7-Feb 0 2 +8-Feb 1 0 +9-Feb 2 2 +10-Feb 2 3 +11-Feb 0 1 +12-Feb 3 0 +13-Feb 1 1 +14-Feb 0 0 +15-Feb 3 0 +16-Feb 3 0 +17-Feb 2 2 +18-Feb 2 3 +19-Feb 0 2 +20-Feb 3 4 +21-Feb 1 4 +22-Feb 3 2 +23-Feb 2 1 +24-Feb 2 1 +25-Feb 2 2 +26-Feb 2 0 +27-Feb 2 2 +28-Feb 0 1 +1-Mar 5 1 +2-Mar 6 0 +3-Mar 0 0 +4-Mar 1 1 +5-Mar 2 1 +6-Mar 0 0 +7-Mar 1 1 +8-Mar 1 3 +9-Mar 3 0 +10-Mar 4 1 +11-Mar 0 1 +12-Mar 0 2 +13-Mar 2 1 +14-Mar 0 1 +15-Mar 3 3 +16-Mar 1 3 +17-Mar 0 2 +18-Mar 1 3 +19-Mar 1 1 +20-Mar 2 1 +21-Mar 2 3 +22-Mar 4 4 +23-Mar 2 1 +24-Mar 1 0 +25-Mar 3 1 +26-Mar 3 0 +27-Mar 1 1 +28-Mar 2 2 +29-Mar 3 2 +30-Mar 2 1 +31-Mar 1 0 +1-Apr 3 3 +2-Apr 0 1 +3-Apr 0 0 +4-Apr 1 1 +5-Apr 6 1 +6-Apr 4 4 +7-Apr 1 2 +8-Apr 1 6 +9-Apr 2 0 +10-Apr 1 3 +11-Apr 2 1 +12-Apr 1 1 +13-Apr 2 0 +14-Apr 3 0 +15-Apr 1 2 +16-Apr 1 0 +17-Apr 1 3 +18-Apr 0 1 +19-Apr 1 3 +20-Apr 1 0 +21-Apr 0 0 +22-Apr 1 0 +23-Apr 3 1 +24-Apr 1 1 +25-Apr 4 4 +26-Apr 6 2 +27-Apr 0 2 +28-Apr 4 0 +29-Apr 3 1 +30-Apr 2 1 +1-May 5 4 +2-May 3 3 +3-May 5 8 +4-May 2 3 +5-May 5 2 +6-May 5 3 +7-May 3 6 +8-May 5 2 +9-May 1 6 +10-May 3 3 +11-May 6 0 +12-May 6 5 +13-May 5 6 +14-May 2 4 +15-May 2 3 +16-May 4 4 +17-May 4 6 +18-May 7 6 +19-May 4 5 +20-May 9 5 +21-May 5 5 +22-May 2 5 +23-May 7 3 +24-May 4 6 +25-May 23 2 +26-May 3 0 +27-May 1 0 +28-May 2 2 +29-May 2 2 +30-May 4 2 +31-May 1 2 +1-Jun 4 3 +2-Jun 1 2 +3-Jun 3 3 +4-Jun 3 5 +5-Jun 3 4 +6-Jun 1 2 +7-Jun 3 4 +8-Jun 1 2 +9-Jun 1 0 +10-Jun 2 0 +11-Jun 0 1 +12-Jun 0 2 +13-Jun 2 0 +14-Jun 0 1 +15-Jun 1 0 +16-Jun 2 0 +17-Jun 0 5 +18-Jun 4 0 +19-Jun 0 1 +20-Jun 0 1 +21-Jun 0 2 +22-Jun 2 0 +23-Jun 0 0 +24-Jun 0 0 +25-Jun 1 0 +26-Jun 0 3 +27-Jun 0 2 +28-Jun 0 3 +29-Jun 1 3 +30-Jun 0 1 +1-Jul 2 1 +2-Jul 2 0 +3-Jul 0 1 +4-Jul 0 0 +5-Jul 1 1 +6-Jul 0 4 +7-Jul 1 0 +8-Jul 0 0 +9-Jul 1 2 +10-Jul 1 1 +11-Jul 1 1 +12-Jul 7 1 +13-Jul 5 3 +14-Jul 2 0 +15-Jul 0 2 +16-Jul 2 1 +17-Jul 0 2 +18-Jul 0 1 +19-Jul 1 2 +20-Jul 2 0 +21-Jul 1 1 +22-Jul 0 1 +23-Jul 1 0 +24-Jul 1 2 +25-Jul 0 3 +26-Jul 0 1 +27-Jul 0 0 +28-Jul 1 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 1 2 +2-Aug 0 0 +3-Aug 1 1 +4-Aug 2 1 +5-Aug 0 2 +6-Aug 1 3 +7-Aug 1 1 +8-Aug 0 1 +9-Aug 1 4 +10-Aug 0 3 +11-Aug 0 2 +12-Aug 0 1 +13-Aug 0 2 +14-Aug 0 3 +15-Aug 0 2 +16-Aug 3 0 +17-Aug 3 0 +18-Aug 2 2 +19-Aug 0 1 +20-Aug 1 2 +21-Aug 0 1 +22-Aug 1 1 +23-Aug 4 1 +24-Aug 2 0 +25-Aug 0 0 +26-Aug 0 1 +27-Aug 0 0 +28-Aug 0 3 +29-Aug 0 2 +30-Aug 1 1 +31-Aug 0 1 +1-Sep 1 3 +2-Sep 0 2 +3-Sep 3 1 +4-Sep 1 2 +5-Sep 1 1 +6-Sep 1 2 +7-Sep 3 1 +8-Sep 1 2 +9-Sep 0 5 +10-Sep 0 2 +11-Sep 0 2 +12-Sep 0 1 +13-Sep 1 2 +14-Sep 2 1 +15-Sep 0 5 +16-Sep 1 1 +17-Sep 2 2 +18-Sep 0 2 +19-Sep 1 2 +20-Sep 2 0 +21-Sep 2 3 +22-Sep 1 2 +23-Sep 0 3 +24-Sep 0 2 +25-Sep 1 1 +26-Sep 1 5 +27-Sep 2 3 +28-Sep 3 2 +29-Sep 2 3 +30-Sep 1 3 +1-Oct 1 5 +2-Oct 2 3 +3-Oct 0 5 +4-Oct 2 2 +5-Oct 2 1 +6-Oct 0 0 +7-Oct 0 3 +8-Oct 1 3 +9-Oct 0 1 +10-Oct 2 1 +11-Oct 4 1 +12-Oct 1 2 +13-Oct 2 2 +14-Oct 4 1 +15-Oct 3 0 +16-Oct 1 0 +17-Oct 3 1 +18-Oct 4 1 +19-Oct 2 1 +20-Oct 2 1 +21-Oct 3 5 +22-Oct 0 2 +23-Oct 2 5 +24-Oct 2 4 +25-Oct 1 4 +26-Oct 1 2 +27-Oct 2 0 +28-Oct 1 6 +29-Oct 2 3 +30-Oct 1 5 +31-Oct 5 3 +1-Nov 3 1 +2-Nov 0 2 +3-Nov 2 1 +4-Nov 0 16 +5-Nov 0 17 +6-Nov 0 21 +7-Nov 2 19 +8-Nov 4 16 +9-Nov 5 18 +10-Nov 3 24 +11-Nov 2 19 +12-Nov 1 16 +13-Nov 2 18 +14-Nov 5 35 +15-Nov 4 12 +16-Nov 0 9 +17-Nov 2 12 +18-Nov 0 19 +19-Nov 2 23 +20-Nov 7 18 +21-Nov 4 19 +22-Nov 1 20 +23-Nov 2 21 +24-Nov 1 22 +25-Nov 0 1 +26-Nov 1 0 +27-Nov 1 0 +28-Nov 3 0 +29-Nov 0 0 +30-Nov 0 0 +1-Dec 1 0 +2-Dec 1 0 +3-Dec 1 0 +4-Dec 1 0 +5-Dec 0 0 +6-Dec 2 0 +7-Dec 1 0 +8-Dec 3 0 +9-Dec 1 0 +10-Dec 2 0 +11-Dec 1 0 +12-Dec 1 0 +13-Dec 2 0 +14-Dec 1 0 +15-Dec 3 0 +16-Dec 1 0 +17-Dec 1 0 +18-Dec 1 0 +19-Dec 3 0 +20-Dec 2 0 +21-Dec 2 0 +22-Dec 1 0 +23-Dec 1 0 +24-Dec 2 0 +25-Dec 0 0 +26-Dec 1 0 +27-Dec 3 0 +28-Dec 0 0 +29-Dec 3 0 +30-Dec 0 0 +31-Dec 1 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2016_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2016_salvini_trends.tsv new file mode 100644 index 0000000..f38b2ab --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2016_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-15 Salvini-16 +1-Jan 0 1 +2-Jan 0 0 +3-Jan 0 0 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 2 +8-Jan 1 2 +9-Jan 1 0 +10-Jan 0 1 +11-Jan 0 2 +12-Jan 0 4 +13-Jan 2 5 +14-Jan 1 2 +15-Jan 0 2 +16-Jan 1 1 +17-Jan 0 1 +18-Jan 1 3 +19-Jan 1 4 +20-Jan 0 5 +21-Jan 3 3 +22-Jan 1 2 +23-Jan 1 2 +24-Jan 0 2 +25-Jan 0 5 +26-Jan 1 4 +27-Jan 0 4 +28-Jan 3 1 +29-Jan 2 0 +30-Jan 2 2 +31-Jan 0 2 +1-Feb 4 3 +2-Feb 1 4 +3-Feb 0 2 +4-Feb 0 3 +5-Feb 1 4 +6-Feb 2 4 +7-Feb 0 0 +8-Feb 0 3 +9-Feb 2 2 +10-Feb 0 1 +11-Feb 1 3 +12-Feb 1 2 +13-Feb 0 1 +14-Feb 1 1 +15-Feb 0 3 +16-Feb 0 4 +17-Feb 1 2 +18-Feb 2 0 +19-Feb 2 1 +20-Feb 0 1 +21-Feb 1 0 +22-Feb 1 2 +23-Feb 1 2 +24-Feb 2 4 +25-Feb 2 4 +26-Feb 3 3 +27-Feb 1 1 +28-Feb 1 1 +1-Mar 2 2 +2-Mar 0 1 +3-Mar 1 1 +4-Mar 1 1 +5-Mar 2 1 +6-Mar 2 1 +7-Mar 1 2 +8-Mar 1 1 +9-Mar 1 1 +10-Mar 0 2 +11-Mar 1 0 +12-Mar 2 0 +13-Mar 0 0 +14-Mar 2 2 +15-Mar 0 2 +16-Mar 1 1 +17-Mar 1 1 +18-Mar 2 2 +19-Mar 1 1 +20-Mar 1 0 +21-Mar 0 1 +22-Mar 0 2 +23-Mar 2 3 +24-Mar 3 3 +25-Mar 2 1 +26-Mar 2 1 +27-Mar 1 0 +28-Mar 2 0 +29-Mar 1 1 +30-Mar 1 1 +31-Mar 1 1 +1-Apr 3 1 +2-Apr 2 1 +3-Apr 1 2 +4-Apr 1 3 +5-Apr 0 3 +6-Apr 0 4 +7-Apr 1 2 +8-Apr 2 1 +9-Apr 2 2 +10-Apr 2 2 +11-Apr 2 3 +12-Apr 1 0 +13-Apr 1 1 +14-Apr 3 1 +15-Apr 1 2 +16-Apr 1 3 +17-Apr 2 0 +18-Apr 2 2 +19-Apr 1 4 +20-Apr 4 4 +21-Apr 3 4 +22-Apr 2 1 +23-Apr 2 1 +24-Apr 1 1 +25-Apr 0 0 +26-Apr 0 1 +27-Apr 5 1 +28-Apr 3 0 +29-Apr 3 1 +30-Apr 1 2 +1-May 5 0 +2-May 1 1 +3-May 0 0 +4-May 5 1 +5-May 2 0 +6-May 4 1 +7-May 1 0 +8-May 2 0 +9-May 2 0 +10-May 3 0 +11-May 3 1 +12-May 5 3 +13-May 2 2 +14-May 5 5 +15-May 3 3 +16-May 5 2 +17-May 1 4 +18-May 2 5 +19-May 2 5 +20-May 3 6 +21-May 2 2 +22-May 3 4 +23-May 4 2 +24-May 5 3 +25-May 5 3 +26-May 9 3 +27-May 4 2 +28-May 5 1 +29-May 5 4 +30-May 0 2 +31-May 1 5 +1-Jun 2 7 +2-Jun 0 4 +3-Jun 2 2 +4-Jun 3 3 +5-Jun 3 1 +6-Jun 0 2 +7-Jun 3 1 +8-Jun 3 2 +9-Jun 0 3 +10-Jun 4 2 +11-Jun 1 1 +12-Jun 3 0 +13-Jun 1 2 +14-Jun 1 1 +15-Jun 2 3 +16-Jun 1 2 +17-Jun 1 3 +18-Jun 2 0 +19-Jun 1 1 +20-Jun 1 0 +21-Jun 0 0 +22-Jun 2 1 +23-Jun 2 0 +24-Jun 2 2 +25-Jun 2 4 +26-Jun 0 0 +27-Jun 0 0 +28-Jun 1 2 +29-Jun 3 2 +30-Jun 2 1 +1-Jul 3 2 +2-Jul 2 0 +3-Jul 4 0 +4-Jul 0 1 +5-Jul 0 1 +6-Jul 2 2 +7-Jul 3 1 +8-Jul 3 2 +9-Jul 1 1 +10-Jul 1 0 +11-Jul 1 1 +12-Jul 1 2 +13-Jul 2 0 +14-Jul 3 0 +15-Jul 4 0 +16-Jul 2 0 +17-Jul 2 2 +18-Jul 3 0 +19-Jul 2 2 +20-Jul 1 0 +21-Jul 0 1 +22-Jul 1 2 +23-Jul 0 1 +24-Jul 0 0 +25-Jul 0 1 +26-Jul 0 1 +27-Jul 1 0 +28-Jul 2 1 +29-Jul 0 1 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 0 0 +2-Aug 1 0 +3-Aug 0 1 +4-Aug 2 1 +5-Aug 2 1 +6-Aug 2 0 +7-Aug 2 0 +8-Aug 1 0 +9-Aug 1 1 +10-Aug 0 0 +11-Aug 1 0 +12-Aug 1 0 +13-Aug 3 0 +14-Aug 0 0 +15-Aug 0 0 +16-Aug 2 2 +17-Aug 2 1 +18-Aug 0 0 +19-Aug 0 0 +20-Aug 3 0 +21-Aug 0 1 +22-Aug 1 0 +23-Aug 0 1 +24-Aug 2 0 +25-Aug 0 0 +26-Aug 1 0 +27-Aug 1 1 +28-Aug 1 0 +29-Aug 1 1 +30-Aug 0 0 +31-Aug 2 2 +1-Sep 2 0 +2-Sep 1 1 +3-Sep 1 0 +4-Sep 2 2 +5-Sep 0 0 +6-Sep 2 3 +7-Sep 3 0 +8-Sep 2 2 +9-Sep 3 1 +10-Sep 1 0 +11-Sep 2 0 +12-Sep 0 2 +13-Sep 2 0 +14-Sep 2 1 +15-Sep 3 2 +16-Sep 2 0 +17-Sep 3 0 +18-Sep 2 3 +19-Sep 1 2 +20-Sep 1 2 +21-Sep 1 2 +22-Sep 2 2 +23-Sep 1 2 +24-Sep 1 2 +25-Sep 1 1 +26-Sep 0 2 +27-Sep 0 2 +28-Sep 1 2 +29-Sep 2 4 +30-Sep 1 2 +1-Oct 2 2 +2-Oct 2 1 +3-Oct 1 3 +4-Oct 0 2 +5-Oct 0 3 +6-Oct 2 1 +7-Oct 2 1 +8-Oct 2 2 +9-Oct 2 3 +10-Oct 0 1 +11-Oct 0 2 +12-Oct 2 2 +13-Oct 3 2 +14-Oct 1 1 +15-Oct 1 2 +16-Oct 0 1 +17-Oct 2 1 +18-Oct 1 1 +19-Oct 1 1 +20-Oct 1 1 +21-Oct 4 2 +22-Oct 5 1 +23-Oct 3 0 +24-Oct 1 2 +25-Oct 1 2 +26-Oct 3 3 +27-Oct 5 2 +28-Oct 5 1 +29-Oct 4 1 +30-Oct 5 0 +31-Oct 5 0 +1-Nov 2 1 +2-Nov 7 1 +3-Nov 3 4 +4-Nov 4 6 +5-Nov 4 2 +6-Nov 4 2 +7-Nov 1 1 +8-Nov 2 1 +9-Nov 4 4 +10-Nov 3 3 +11-Nov 3 7 +12-Nov 6 3 +13-Nov 2 0 +14-Nov 3 3 +15-Nov 2 1 +16-Nov 4 5 +17-Nov 2 3 +18-Nov 5 2 +19-Nov 3 3 +20-Nov 3 4 +21-Nov 2 2 +22-Nov 0 4 +23-Nov 2 3 +24-Nov 2 2 +25-Nov 3 6 +26-Nov 2 4 +27-Nov 0 3 +28-Nov 1 4 +29-Nov 2 3 +30-Nov 4 3 +1-Dec 3 4 +2-Dec 4 3 +3-Dec 4 4 +4-Dec 4 4 +5-Dec 1 4 +6-Dec 0 5 +7-Dec 1 3 +8-Dec 0 0 +9-Dec 1 0 +10-Dec 1 0 +11-Dec 1 0 +12-Dec 0 0 +13-Dec 1 3 +14-Dec 1 3 +15-Dec 2 0 +16-Dec 2 1 +17-Dec 1 0 +18-Dec 0 1 +19-Dec 0 1 +20-Dec 0 0 +21-Dec 0 2 +22-Dec 1 3 +23-Dec 0 0 +24-Dec 2 2 +25-Dec 2 0 +26-Dec 1 0 +27-Dec 0 0 +28-Dec 0 2 +29-Dec 0 0 +30-Dec 0 0 +31-Dec 0 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2017_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2017_salvini_trends.tsv new file mode 100644 index 0000000..7bcae21 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2017_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-15 Salvini-17 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 1 0 +9-Jan 1 1 +10-Jan 0 0 +11-Jan 0 3 +12-Jan 0 1 +13-Jan 2 1 +14-Jan 1 0 +15-Jan 0 0 +16-Jan 1 2 +17-Jan 0 0 +18-Jan 1 1 +19-Jan 1 2 +20-Jan 0 2 +21-Jan 3 2 +22-Jan 1 2 +23-Jan 1 3 +24-Jan 0 2 +25-Jan 0 1 +26-Jan 1 3 +27-Jan 0 0 +28-Jan 3 1 +29-Jan 2 2 +30-Jan 2 2 +31-Jan 0 3 +1-Feb 4 1 +2-Feb 1 1 +3-Feb 0 0 +4-Feb 0 1 +5-Feb 1 0 +6-Feb 2 0 +7-Feb 0 2 +8-Feb 0 2 +9-Feb 2 1 +10-Feb 0 1 +11-Feb 1 0 +12-Feb 1 1 +13-Feb 0 0 +14-Feb 1 1 +15-Feb 0 2 +16-Feb 0 0 +17-Feb 1 1 +18-Feb 2 1 +19-Feb 2 1 +20-Feb 0 2 +21-Feb 1 1 +22-Feb 1 2 +23-Feb 1 2 +24-Feb 2 1 +25-Feb 2 0 +26-Feb 3 3 +27-Feb 1 2 +28-Feb 1 0 +1-Mar 2 0 +2-Mar 0 0 +3-Mar 1 1 +4-Mar 1 4 +5-Mar 2 2 +6-Mar 2 0 +7-Mar 1 3 +8-Mar 1 0 +9-Mar 1 2 +10-Mar 0 2 +11-Mar 1 1 +12-Mar 2 0 +13-Mar 0 1 +14-Mar 2 2 +15-Mar 0 2 +16-Mar 1 0 +17-Mar 1 1 +18-Mar 2 0 +19-Mar 1 1 +20-Mar 1 4 +21-Mar 0 1 +22-Mar 0 1 +23-Mar 2 2 +24-Mar 3 1 +25-Mar 2 2 +26-Mar 2 0 +27-Mar 1 1 +28-Mar 2 2 +29-Mar 1 3 +30-Mar 1 3 +31-Mar 1 2 +1-Apr 3 2 +2-Apr 2 1 +3-Apr 1 1 +4-Apr 1 2 +5-Apr 0 2 +6-Apr 0 4 +7-Apr 1 1 +8-Apr 2 1 +9-Apr 2 0 +10-Apr 2 3 +11-Apr 2 1 +12-Apr 1 1 +13-Apr 1 1 +14-Apr 3 0 +15-Apr 1 0 +16-Apr 1 0 +17-Apr 2 1 +18-Apr 2 2 +19-Apr 1 0 +20-Apr 4 2 +21-Apr 3 1 +22-Apr 2 0 +23-Apr 2 0 +24-Apr 1 1 +25-Apr 0 2 +26-Apr 0 1 +27-Apr 5 3 +28-Apr 3 1 +29-Apr 3 0 +30-Apr 1 1 +1-May 5 2 +2-May 1 3 +3-May 0 3 +4-May 5 3 +5-May 2 1 +6-May 4 2 +7-May 1 1 +8-May 2 0 +9-May 2 0 +10-May 3 2 +11-May 3 4 +12-May 5 3 +13-May 2 0 +14-May 5 3 +15-May 3 2 +16-May 5 0 +17-May 1 4 +18-May 2 1 +19-May 2 1 +20-May 3 3 +21-May 2 1 +22-May 3 2 +23-May 4 1 +24-May 5 3 +25-May 5 5 +26-May 9 3 +27-May 4 3 +28-May 5 0 +29-May 5 3 +30-May 0 0 +31-May 1 3 +1-Jun 2 4 +2-Jun 0 1 +3-Jun 2 1 +4-Jun 3 0 +5-Jun 3 2 +6-Jun 0 4 +7-Jun 3 2 +8-Jun 3 3 +9-Jun 0 5 +10-Jun 4 1 +11-Jun 1 0 +12-Jun 3 0 +13-Jun 1 4 +14-Jun 1 4 +15-Jun 2 3 +16-Jun 1 3 +17-Jun 1 1 +18-Jun 2 1 +19-Jun 1 1 +20-Jun 1 2 +21-Jun 0 1 +22-Jun 2 0 +23-Jun 2 5 +24-Jun 2 1 +25-Jun 2 0 +26-Jun 0 4 +27-Jun 0 0 +28-Jun 1 3 +29-Jun 3 1 +30-Jun 2 0 +1-Jul 3 0 +2-Jul 2 1 +3-Jul 4 1 +4-Jul 0 1 +5-Jul 0 2 +6-Jul 2 0 +7-Jul 3 1 +8-Jul 3 0 +9-Jul 1 3 +10-Jul 1 0 +11-Jul 1 3 +12-Jul 1 1 +13-Jul 2 1 +14-Jul 3 0 +15-Jul 4 1 +16-Jul 2 0 +17-Jul 2 0 +18-Jul 3 1 +19-Jul 2 2 +20-Jul 1 3 +21-Jul 0 2 +22-Jul 1 0 +23-Jul 0 2 +24-Jul 0 2 +25-Jul 0 0 +26-Jul 0 1 +27-Jul 1 0 +28-Jul 2 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 1 +1-Aug 0 0 +2-Aug 1 2 +3-Aug 0 3 +4-Aug 2 0 +5-Aug 2 0 +6-Aug 2 1 +7-Aug 2 2 +8-Aug 1 2 +9-Aug 1 1 +10-Aug 0 1 +11-Aug 1 2 +12-Aug 1 3 +13-Aug 3 3 +14-Aug 0 1 +15-Aug 0 3 +16-Aug 2 0 +17-Aug 2 0 +18-Aug 0 0 +19-Aug 0 1 +20-Aug 3 0 +21-Aug 0 0 +22-Aug 1 1 +23-Aug 0 1 +24-Aug 2 2 +25-Aug 0 0 +26-Aug 1 1 +27-Aug 1 0 +28-Aug 1 1 +29-Aug 1 0 +30-Aug 0 1 +31-Aug 2 0 +1-Sep 2 0 +2-Sep 1 1 +3-Sep 1 1 +4-Sep 2 0 +5-Sep 0 1 +6-Sep 2 1 +7-Sep 3 1 +8-Sep 2 0 +9-Sep 3 3 +10-Sep 1 1 +11-Sep 2 2 +12-Sep 0 1 +13-Sep 2 4 +14-Sep 2 2 +15-Sep 3 4 +16-Sep 2 2 +17-Sep 3 4 +18-Sep 2 1 +19-Sep 1 5 +20-Sep 1 2 +21-Sep 1 1 +22-Sep 2 1 +23-Sep 1 0 +24-Sep 1 1 +25-Sep 1 1 +26-Sep 0 0 +27-Sep 0 3 +28-Sep 1 2 +29-Sep 2 3 +30-Sep 1 0 +1-Oct 2 2 +2-Oct 2 2 +3-Oct 1 2 +4-Oct 0 3 +5-Oct 0 2 +6-Oct 2 3 +7-Oct 2 0 +8-Oct 2 1 +9-Oct 2 1 +10-Oct 0 1 +11-Oct 0 1 +12-Oct 2 1 +13-Oct 3 1 +14-Oct 1 3 +15-Oct 1 0 +16-Oct 0 0 +17-Oct 2 4 +18-Oct 1 1 +19-Oct 1 1 +20-Oct 1 1 +21-Oct 4 2 +22-Oct 5 2 +23-Oct 3 1 +24-Oct 1 1 +25-Oct 1 2 +26-Oct 3 1 +27-Oct 5 3 +28-Oct 5 3 +29-Oct 4 2 +30-Oct 5 5 +31-Oct 5 2 +1-Nov 2 4 +2-Nov 7 3 +3-Nov 3 1 +4-Nov 4 2 +5-Nov 4 0 +6-Nov 4 0 +7-Nov 1 2 +8-Nov 2 5 +9-Nov 4 4 +10-Nov 3 4 +11-Nov 3 5 +12-Nov 6 3 +13-Nov 2 1 +14-Nov 3 4 +15-Nov 2 4 +16-Nov 4 3 +17-Nov 2 5 +18-Nov 5 5 +19-Nov 3 6 +20-Nov 3 4 +21-Nov 2 3 +22-Nov 0 4 +23-Nov 2 6 +24-Nov 2 4 +25-Nov 3 4 +26-Nov 2 4 +27-Nov 0 1 +28-Nov 1 2 +29-Nov 2 1 +30-Nov 4 4 +1-Dec 3 1 +2-Dec 4 1 +3-Dec 4 0 +4-Dec 4 0 +5-Dec 1 4 +6-Dec 0 3 +7-Dec 1 2 +8-Dec 0 2 +9-Dec 1 3 +10-Dec 1 6 +11-Dec 1 5 +12-Dec 0 3 +13-Dec 1 4 +14-Dec 1 2 +15-Dec 2 4 +16-Dec 2 3 +17-Dec 1 2 +18-Dec 0 4 +19-Dec 0 4 +20-Dec 0 6 +21-Dec 0 3 +22-Dec 1 1 +23-Dec 0 1 +24-Dec 2 1 +25-Dec 2 1 +26-Dec 1 0 +27-Dec 0 0 +28-Dec 0 2 +29-Dec 0 1 +30-Dec 0 0 +31-Dec 0 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2018_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2018_salvini_trends.tsv new file mode 100644 index 0000000..0114e41 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2018_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-15 Salvini-18 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 1 +5-Jan 0 0 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 1 1 +9-Jan 1 3 +10-Jan 0 3 +11-Jan 0 2 +12-Jan 0 2 +13-Jan 2 1 +14-Jan 1 1 +15-Jan 0 1 +16-Jan 1 3 +17-Jan 0 2 +18-Jan 1 3 +19-Jan 1 3 +20-Jan 0 2 +21-Jan 3 0 +22-Jan 1 0 +23-Jan 1 1 +24-Jan 0 3 +25-Jan 0 4 +26-Jan 1 1 +27-Jan 0 2 +28-Jan 3 2 +29-Jan 2 2 +30-Jan 2 4 +31-Jan 0 5 +1-Feb 4 4 +2-Feb 1 2 +3-Feb 0 3 +4-Feb 0 3 +5-Feb 1 3 +6-Feb 2 3 +7-Feb 0 4 +8-Feb 0 3 +9-Feb 2 2 +10-Feb 0 2 +11-Feb 1 2 +12-Feb 1 2 +13-Feb 0 2 +14-Feb 1 4 +15-Feb 0 3 +16-Feb 0 5 +17-Feb 1 3 +18-Feb 2 3 +19-Feb 2 2 +20-Feb 0 7 +21-Feb 1 5 +22-Feb 1 0 +23-Feb 1 6 +24-Feb 2 5 +25-Feb 2 1 +26-Feb 3 4 +27-Feb 1 5 +28-Feb 1 4 +1-Mar 2 4 +2-Mar 0 8 +3-Mar 1 6 +4-Mar 1 6 +5-Mar 2 1 +6-Mar 2 0 +7-Mar 1 0 +8-Mar 1 1 +9-Mar 1 2 +10-Mar 0 0 +11-Mar 1 1 +12-Mar 2 0 +13-Mar 0 2 +14-Mar 2 1 +15-Mar 0 3 +16-Mar 1 2 +17-Mar 1 1 +18-Mar 2 2 +19-Mar 1 2 +20-Mar 1 2 +21-Mar 0 2 +22-Mar 0 2 +23-Mar 2 0 +24-Mar 3 0 +25-Mar 2 0 +26-Mar 2 0 +27-Mar 1 0 +28-Mar 2 1 +29-Mar 1 1 +30-Mar 1 1 +31-Mar 1 0 +1-Apr 3 0 +2-Apr 2 0 +3-Apr 1 0 +4-Apr 1 3 +5-Apr 0 1 +6-Apr 0 0 +7-Apr 1 0 +8-Apr 2 1 +9-Apr 2 3 +10-Apr 2 0 +11-Apr 2 1 +12-Apr 1 1 +13-Apr 1 2 +14-Apr 3 1 +15-Apr 1 1 +16-Apr 1 3 +17-Apr 2 1 +18-Apr 2 2 +19-Apr 1 3 +20-Apr 4 1 +21-Apr 3 1 +22-Apr 2 0 +23-Apr 2 3 +24-Apr 1 1 +25-Apr 0 0 +26-Apr 0 1 +27-Apr 5 4 +28-Apr 3 0 +29-Apr 3 0 +30-Apr 1 0 +1-May 5 0 +2-May 1 2 +3-May 0 0 +4-May 5 1 +5-May 2 0 +6-May 4 1 +7-May 1 4 +8-May 2 1 +9-May 2 0 +10-May 3 0 +11-May 3 0 +12-May 5 0 +13-May 2 0 +14-May 5 0 +15-May 3 1 +16-May 5 1 +17-May 1 0 +18-May 2 0 +19-May 2 1 +20-May 3 2 +21-May 2 1 +22-May 3 1 +23-May 4 2 +24-May 5 3 +25-May 5 0 +26-May 9 1 +27-May 4 3 +28-May 5 3 +29-May 5 4 +30-May 0 5 +31-May 1 1 +1-Jun 2 3 +2-Jun 0 1 +3-Jun 2 1 +4-Jun 3 0 +5-Jun 3 4 +6-Jun 0 3 +7-Jun 3 3 +8-Jun 3 0 +9-Jun 0 1 +10-Jun 4 1 +11-Jun 1 0 +12-Jun 3 1 +13-Jun 1 1 +14-Jun 1 1 +15-Jun 2 3 +16-Jun 1 0 +17-Jun 1 4 +18-Jun 2 3 +19-Jun 1 2 +20-Jun 1 2 +21-Jun 0 5 +22-Jun 2 2 +23-Jun 2 1 +24-Jun 2 1 +25-Jun 2 3 +26-Jun 0 3 +27-Jun 0 0 +28-Jun 1 1 +29-Jun 3 2 +30-Jun 2 0 +1-Jul 3 3 +2-Jul 2 2 +3-Jul 4 1 +4-Jul 0 2 +5-Jul 0 3 +6-Jul 2 1 +7-Jul 3 1 +8-Jul 3 1 +9-Jul 1 1 +10-Jul 1 4 +11-Jul 1 1 +12-Jul 1 5 +13-Jul 2 1 +14-Jul 3 2 +15-Jul 4 0 +16-Jul 2 2 +17-Jul 2 2 +18-Jul 3 1 +19-Jul 2 1 +20-Jul 1 0 +21-Jul 0 1 +22-Jul 1 0 +23-Jul 0 0 +24-Jul 0 1 +25-Jul 0 2 +26-Jul 0 2 +27-Jul 1 2 +28-Jul 2 3 +29-Jul 0 0 +30-Jul 0 1 +31-Jul 0 1 +1-Aug 0 1 +2-Aug 1 1 +3-Aug 0 2 +4-Aug 2 0 +5-Aug 2 2 +6-Aug 2 2 +7-Aug 2 1 +8-Aug 1 1 +9-Aug 1 1 +10-Aug 0 0 +11-Aug 1 1 +12-Aug 1 0 +13-Aug 3 2 +14-Aug 0 3 +15-Aug 0 4 +16-Aug 2 2 +17-Aug 2 0 +18-Aug 0 2 +19-Aug 0 0 +20-Aug 3 1 +21-Aug 0 0 +22-Aug 1 0 +23-Aug 0 1 +24-Aug 2 1 +25-Aug 0 1 +26-Aug 1 0 +27-Aug 1 0 +28-Aug 1 2 +29-Aug 1 0 +30-Aug 0 0 +31-Aug 2 2 +1-Sep 2 1 +2-Sep 1 4 +3-Sep 1 1 +4-Sep 2 1 +5-Sep 0 3 +6-Sep 2 2 +7-Sep 3 2 +8-Sep 2 1 +9-Sep 3 3 +10-Sep 1 1 +11-Sep 2 2 +12-Sep 0 1 +13-Sep 2 1 +14-Sep 2 3 +15-Sep 3 3 +16-Sep 2 2 +17-Sep 3 0 +18-Sep 2 1 +19-Sep 1 6 +20-Sep 1 3 +21-Sep 1 1 +22-Sep 2 3 +23-Sep 1 1 +24-Sep 1 2 +25-Sep 1 1 +26-Sep 0 1 +27-Sep 0 2 +28-Sep 1 2 +29-Sep 2 3 +30-Sep 1 1 +1-Oct 2 2 +2-Oct 2 1 +3-Oct 1 3 +4-Oct 0 3 +5-Oct 0 3 +6-Oct 2 1 +7-Oct 2 1 +8-Oct 2 0 +9-Oct 2 4 +10-Oct 0 3 +11-Oct 0 2 +12-Oct 2 0 +13-Oct 3 4 +14-Oct 1 5 +15-Oct 1 2 +16-Oct 0 5 +17-Oct 2 4 +18-Oct 1 2 +19-Oct 1 5 +20-Oct 1 1 +21-Oct 4 1 +22-Oct 5 1 +23-Oct 3 2 +24-Oct 1 2 +25-Oct 1 4 +26-Oct 3 5 +27-Oct 5 2 +28-Oct 5 0 +29-Oct 4 1 +30-Oct 5 1 +31-Oct 5 1 +1-Nov 2 2 +2-Nov 7 1 +3-Nov 3 2 +4-Nov 4 2 +5-Nov 4 1 +6-Nov 4 2 +7-Nov 1 3 +8-Nov 2 1 +9-Nov 4 1 +10-Nov 3 0 +11-Nov 3 1 +12-Nov 6 0 +13-Nov 2 0 +14-Nov 3 0 +15-Nov 2 2 +16-Nov 4 0 +17-Nov 2 2 +18-Nov 5 0 +19-Nov 3 1 +20-Nov 3 1 +21-Nov 2 1 +22-Nov 0 2 +23-Nov 2 1 +24-Nov 2 0 +25-Nov 3 0 +26-Nov 2 1 +27-Nov 0 2 +28-Nov 1 2 +29-Nov 2 1 +30-Nov 4 0 +1-Dec 3 0 +2-Dec 4 0 +3-Dec 4 3 +4-Dec 4 0 +5-Dec 1 1 +6-Dec 0 3 +7-Dec 1 1 +8-Dec 0 1 +9-Dec 1 2 +10-Dec 1 2 +11-Dec 1 0 +12-Dec 0 2 +13-Dec 1 0 +14-Dec 1 0 +15-Dec 2 0 +16-Dec 2 2 +17-Dec 1 1 +18-Dec 0 4 +19-Dec 0 0 +20-Dec 0 3 +21-Dec 0 0 +22-Dec 1 0 +23-Dec 0 0 +24-Dec 2 1 +25-Dec 2 0 +26-Dec 1 0 +27-Dec 0 1 +28-Dec 0 2 +29-Dec 0 0 +30-Dec 0 0 +31-Dec 0 2 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2019_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2019_salvini_trends.tsv new file mode 100644 index 0000000..46316ab --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2015_salvini_2019_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-15 Salvini-19 +1-Jan 0 0 +2-Jan 0 1 +3-Jan 0 2 +4-Jan 0 4 +5-Jan 0 3 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 1 1 +9-Jan 1 1 +10-Jan 0 1 +11-Jan 0 1 +12-Jan 0 0 +13-Jan 2 1 +14-Jan 1 3 +15-Jan 0 0 +16-Jan 1 5 +17-Jan 0 1 +18-Jan 1 3 +19-Jan 1 1 +20-Jan 0 2 +21-Jan 3 0 +22-Jan 1 1 +23-Jan 1 0 +24-Jan 0 1 +25-Jan 0 2 +26-Jan 1 0 +27-Jan 0 1 +28-Jan 3 1 +29-Jan 2 0 +30-Jan 2 1 +31-Jan 0 0 +1-Feb 4 3 +2-Feb 1 1 +3-Feb 0 3 +4-Feb 0 1 +5-Feb 1 1 +6-Feb 2 2 +7-Feb 0 2 +8-Feb 0 0 +9-Feb 2 2 +10-Feb 0 3 +11-Feb 1 1 +12-Feb 1 0 +13-Feb 0 1 +14-Feb 1 0 +15-Feb 0 0 +16-Feb 0 0 +17-Feb 1 2 +18-Feb 2 3 +19-Feb 2 2 +20-Feb 0 4 +21-Feb 1 4 +22-Feb 1 2 +23-Feb 1 1 +24-Feb 2 1 +25-Feb 2 2 +26-Feb 3 0 +27-Feb 1 2 +28-Feb 1 1 +1-Mar 2 1 +2-Mar 0 0 +3-Mar 1 0 +4-Mar 1 1 +5-Mar 2 1 +6-Mar 2 0 +7-Mar 1 1 +8-Mar 1 3 +9-Mar 1 0 +10-Mar 0 1 +11-Mar 1 1 +12-Mar 2 2 +13-Mar 0 1 +14-Mar 2 1 +15-Mar 0 3 +16-Mar 1 3 +17-Mar 1 2 +18-Mar 2 3 +19-Mar 1 1 +20-Mar 1 1 +21-Mar 0 3 +22-Mar 0 4 +23-Mar 2 1 +24-Mar 3 0 +25-Mar 2 1 +26-Mar 2 0 +27-Mar 1 1 +28-Mar 2 2 +29-Mar 1 2 +30-Mar 1 1 +31-Mar 1 0 +1-Apr 3 3 +2-Apr 2 1 +3-Apr 1 0 +4-Apr 1 1 +5-Apr 0 1 +6-Apr 0 4 +7-Apr 1 2 +8-Apr 2 6 +9-Apr 2 0 +10-Apr 2 3 +11-Apr 2 1 +12-Apr 1 1 +13-Apr 1 0 +14-Apr 3 0 +15-Apr 1 2 +16-Apr 1 0 +17-Apr 2 3 +18-Apr 2 1 +19-Apr 1 3 +20-Apr 4 0 +21-Apr 3 0 +22-Apr 2 0 +23-Apr 2 1 +24-Apr 1 1 +25-Apr 0 4 +26-Apr 0 2 +27-Apr 5 2 +28-Apr 3 0 +29-Apr 3 1 +30-Apr 1 1 +1-May 5 4 +2-May 1 3 +3-May 0 8 +4-May 5 3 +5-May 2 2 +6-May 4 3 +7-May 1 6 +8-May 2 2 +9-May 2 6 +10-May 3 3 +11-May 3 0 +12-May 5 5 +13-May 2 6 +14-May 5 4 +15-May 3 3 +16-May 5 4 +17-May 1 6 +18-May 2 6 +19-May 2 5 +20-May 3 5 +21-May 2 5 +22-May 3 5 +23-May 4 3 +24-May 5 6 +25-May 5 2 +26-May 9 0 +27-May 4 0 +28-May 5 2 +29-May 5 2 +30-May 0 2 +31-May 1 2 +1-Jun 2 3 +2-Jun 0 2 +3-Jun 2 3 +4-Jun 3 5 +5-Jun 3 4 +6-Jun 0 2 +7-Jun 3 4 +8-Jun 3 2 +9-Jun 0 0 +10-Jun 4 0 +11-Jun 1 1 +12-Jun 3 2 +13-Jun 1 0 +14-Jun 1 1 +15-Jun 2 0 +16-Jun 1 0 +17-Jun 1 5 +18-Jun 2 0 +19-Jun 1 1 +20-Jun 1 1 +21-Jun 0 2 +22-Jun 2 0 +23-Jun 2 0 +24-Jun 2 0 +25-Jun 2 0 +26-Jun 0 3 +27-Jun 0 2 +28-Jun 1 3 +29-Jun 3 3 +30-Jun 2 1 +1-Jul 3 1 +2-Jul 2 0 +3-Jul 4 1 +4-Jul 0 0 +5-Jul 0 1 +6-Jul 2 4 +7-Jul 3 0 +8-Jul 3 0 +9-Jul 1 2 +10-Jul 1 1 +11-Jul 1 1 +12-Jul 1 1 +13-Jul 2 3 +14-Jul 3 0 +15-Jul 4 2 +16-Jul 2 1 +17-Jul 2 2 +18-Jul 3 1 +19-Jul 2 2 +20-Jul 1 0 +21-Jul 0 1 +22-Jul 1 1 +23-Jul 0 0 +24-Jul 0 2 +25-Jul 0 3 +26-Jul 0 1 +27-Jul 1 0 +28-Jul 2 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 0 2 +2-Aug 1 0 +3-Aug 0 1 +4-Aug 2 1 +5-Aug 2 2 +6-Aug 2 3 +7-Aug 2 1 +8-Aug 1 1 +9-Aug 1 4 +10-Aug 0 3 +11-Aug 1 2 +12-Aug 1 1 +13-Aug 3 2 +14-Aug 0 3 +15-Aug 0 2 +16-Aug 2 0 +17-Aug 2 0 +18-Aug 0 2 +19-Aug 0 1 +20-Aug 3 2 +21-Aug 0 1 +22-Aug 1 1 +23-Aug 0 1 +24-Aug 2 0 +25-Aug 0 0 +26-Aug 1 1 +27-Aug 1 0 +28-Aug 1 3 +29-Aug 1 2 +30-Aug 0 1 +31-Aug 2 1 +1-Sep 2 3 +2-Sep 1 2 +3-Sep 1 1 +4-Sep 2 2 +5-Sep 0 1 +6-Sep 2 2 +7-Sep 3 1 +8-Sep 2 2 +9-Sep 3 5 +10-Sep 1 2 +11-Sep 2 2 +12-Sep 0 1 +13-Sep 2 2 +14-Sep 2 1 +15-Sep 3 5 +16-Sep 2 1 +17-Sep 3 2 +18-Sep 2 2 +19-Sep 1 2 +20-Sep 1 0 +21-Sep 1 3 +22-Sep 2 2 +23-Sep 1 3 +24-Sep 1 2 +25-Sep 1 1 +26-Sep 0 5 +27-Sep 0 3 +28-Sep 1 2 +29-Sep 2 3 +30-Sep 1 3 +1-Oct 2 5 +2-Oct 2 3 +3-Oct 1 5 +4-Oct 0 2 +5-Oct 0 1 +6-Oct 2 0 +7-Oct 2 3 +8-Oct 2 3 +9-Oct 2 1 +10-Oct 0 1 +11-Oct 0 1 +12-Oct 2 2 +13-Oct 3 2 +14-Oct 1 1 +15-Oct 1 0 +16-Oct 0 0 +17-Oct 2 1 +18-Oct 1 1 +19-Oct 1 1 +20-Oct 1 1 +21-Oct 4 5 +22-Oct 5 2 +23-Oct 3 5 +24-Oct 1 4 +25-Oct 1 4 +26-Oct 3 2 +27-Oct 5 0 +28-Oct 5 6 +29-Oct 4 3 +30-Oct 5 5 +31-Oct 5 3 +1-Nov 2 1 +2-Nov 7 2 +3-Nov 3 1 +4-Nov 4 16 +5-Nov 4 17 +6-Nov 4 21 +7-Nov 1 19 +8-Nov 2 16 +9-Nov 4 18 +10-Nov 3 24 +11-Nov 3 19 +12-Nov 6 16 +13-Nov 2 18 +14-Nov 3 35 +15-Nov 2 12 +16-Nov 4 9 +17-Nov 2 12 +18-Nov 5 19 +19-Nov 3 23 +20-Nov 3 18 +21-Nov 2 19 +22-Nov 0 20 +23-Nov 2 21 +24-Nov 2 22 +25-Nov 3 1 +26-Nov 2 0 +27-Nov 0 0 +28-Nov 1 0 +29-Nov 2 0 +30-Nov 4 0 +1-Dec 3 0 +2-Dec 4 0 +3-Dec 4 0 +4-Dec 4 0 +5-Dec 1 0 +6-Dec 0 0 +7-Dec 1 0 +8-Dec 0 0 +9-Dec 1 0 +10-Dec 1 0 +11-Dec 1 0 +12-Dec 0 0 +13-Dec 1 0 +14-Dec 1 0 +15-Dec 2 0 +16-Dec 2 0 +17-Dec 1 0 +18-Dec 0 0 +19-Dec 0 0 +20-Dec 0 0 +21-Dec 0 0 +22-Dec 1 0 +23-Dec 0 0 +24-Dec 2 0 +25-Dec 2 0 +26-Dec 1 0 +27-Dec 0 0 +28-Dec 0 0 +29-Dec 0 0 +30-Dec 0 0 +31-Dec 0 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2016_salvini_2017_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2016_salvini_2017_salvini_trends.tsv new file mode 100644 index 0000000..647986c --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2016_salvini_2017_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-16 Salvini-17 +1-Jan 1 0 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 2 0 +8-Jan 2 0 +9-Jan 0 1 +10-Jan 1 0 +11-Jan 2 3 +12-Jan 4 1 +13-Jan 5 1 +14-Jan 2 0 +15-Jan 2 0 +16-Jan 1 2 +17-Jan 1 0 +18-Jan 3 1 +19-Jan 4 2 +20-Jan 5 2 +21-Jan 3 2 +22-Jan 2 2 +23-Jan 2 3 +24-Jan 2 2 +25-Jan 5 1 +26-Jan 4 3 +27-Jan 4 0 +28-Jan 1 1 +29-Jan 0 2 +30-Jan 2 2 +31-Jan 2 3 +1-Feb 3 1 +2-Feb 4 1 +3-Feb 2 0 +4-Feb 3 1 +5-Feb 4 0 +6-Feb 4 0 +7-Feb 0 2 +8-Feb 3 2 +9-Feb 2 1 +10-Feb 1 1 +11-Feb 3 0 +12-Feb 2 1 +13-Feb 1 0 +14-Feb 1 1 +15-Feb 3 2 +16-Feb 4 0 +17-Feb 2 1 +18-Feb 0 1 +19-Feb 1 1 +20-Feb 1 2 +21-Feb 0 1 +22-Feb 2 2 +23-Feb 2 2 +24-Feb 4 1 +25-Feb 4 0 +26-Feb 3 3 +27-Feb 1 2 +28-Feb 1 0 +29-Feb 2 0 +1-Mar 2 0 +2-Mar 1 0 +3-Mar 1 1 +4-Mar 1 4 +5-Mar 1 2 +6-Mar 1 0 +7-Mar 2 3 +8-Mar 1 0 +9-Mar 1 2 +10-Mar 2 2 +11-Mar 0 1 +12-Mar 0 0 +13-Mar 0 1 +14-Mar 2 2 +15-Mar 2 2 +16-Mar 1 0 +17-Mar 1 1 +18-Mar 2 0 +19-Mar 1 1 +20-Mar 0 4 +21-Mar 1 1 +22-Mar 2 1 +23-Mar 3 2 +24-Mar 3 1 +25-Mar 1 2 +26-Mar 1 0 +27-Mar 0 1 +28-Mar 0 2 +29-Mar 1 3 +30-Mar 1 3 +31-Mar 1 2 +1-Apr 1 2 +2-Apr 1 1 +3-Apr 2 1 +4-Apr 3 2 +5-Apr 3 2 +6-Apr 4 4 +7-Apr 2 1 +8-Apr 1 1 +9-Apr 2 0 +10-Apr 2 3 +11-Apr 3 1 +12-Apr 0 1 +13-Apr 1 1 +14-Apr 1 0 +15-Apr 2 0 +16-Apr 3 0 +17-Apr 0 1 +18-Apr 2 2 +19-Apr 4 0 +20-Apr 4 2 +21-Apr 4 1 +22-Apr 1 0 +23-Apr 1 0 +24-Apr 1 1 +25-Apr 0 2 +26-Apr 1 1 +27-Apr 1 3 +28-Apr 0 1 +29-Apr 1 0 +30-Apr 2 1 +1-May 0 2 +2-May 1 3 +3-May 0 3 +4-May 1 3 +5-May 0 1 +6-May 1 2 +7-May 0 1 +8-May 0 0 +9-May 0 0 +10-May 0 2 +11-May 1 4 +12-May 3 3 +13-May 2 0 +14-May 5 3 +15-May 3 2 +16-May 2 0 +17-May 4 4 +18-May 5 1 +19-May 5 1 +20-May 6 3 +21-May 2 1 +22-May 4 2 +23-May 2 1 +24-May 3 3 +25-May 3 5 +26-May 3 3 +27-May 2 3 +28-May 1 0 +29-May 4 3 +30-May 2 0 +31-May 5 3 +1-Jun 7 4 +2-Jun 4 1 +3-Jun 2 1 +4-Jun 3 0 +5-Jun 1 2 +6-Jun 2 4 +7-Jun 1 2 +8-Jun 2 3 +9-Jun 3 5 +10-Jun 2 1 +11-Jun 1 0 +12-Jun 0 0 +13-Jun 2 4 +14-Jun 1 4 +15-Jun 3 3 +16-Jun 2 3 +17-Jun 3 1 +18-Jun 0 1 +19-Jun 1 1 +20-Jun 0 2 +21-Jun 0 1 +22-Jun 1 0 +23-Jun 0 5 +24-Jun 2 1 +25-Jun 4 0 +26-Jun 0 4 +27-Jun 0 0 +28-Jun 2 3 +29-Jun 2 1 +30-Jun 1 0 +1-Jul 2 0 +2-Jul 0 1 +3-Jul 0 1 +4-Jul 1 1 +5-Jul 1 2 +6-Jul 2 0 +7-Jul 1 1 +8-Jul 2 0 +9-Jul 1 3 +10-Jul 0 0 +11-Jul 1 3 +12-Jul 2 1 +13-Jul 0 1 +14-Jul 0 0 +15-Jul 0 1 +16-Jul 0 0 +17-Jul 2 0 +18-Jul 0 1 +19-Jul 2 2 +20-Jul 0 3 +21-Jul 1 2 +22-Jul 2 0 +23-Jul 1 2 +24-Jul 0 2 +25-Jul 1 0 +26-Jul 1 1 +27-Jul 0 0 +28-Jul 1 0 +29-Jul 1 0 +30-Jul 0 0 +31-Jul 0 1 +1-Aug 0 0 +2-Aug 0 2 +3-Aug 1 3 +4-Aug 1 0 +5-Aug 1 0 +6-Aug 0 1 +7-Aug 0 2 +8-Aug 0 2 +9-Aug 1 1 +10-Aug 0 1 +11-Aug 0 2 +12-Aug 0 3 +13-Aug 0 3 +14-Aug 0 1 +15-Aug 0 3 +16-Aug 2 0 +17-Aug 1 0 +18-Aug 0 0 +19-Aug 0 1 +20-Aug 0 0 +21-Aug 1 0 +22-Aug 0 1 +23-Aug 1 1 +24-Aug 0 2 +25-Aug 0 0 +26-Aug 0 1 +27-Aug 1 0 +28-Aug 0 1 +29-Aug 1 0 +30-Aug 0 1 +31-Aug 2 0 +1-Sep 0 0 +2-Sep 1 1 +3-Sep 0 1 +4-Sep 2 0 +5-Sep 0 1 +6-Sep 3 1 +7-Sep 0 1 +8-Sep 2 0 +9-Sep 1 3 +10-Sep 0 1 +11-Sep 0 2 +12-Sep 2 1 +13-Sep 0 4 +14-Sep 1 2 +15-Sep 2 4 +16-Sep 0 2 +17-Sep 0 4 +18-Sep 3 1 +19-Sep 2 5 +20-Sep 2 2 +21-Sep 2 1 +22-Sep 2 1 +23-Sep 2 0 +24-Sep 2 1 +25-Sep 1 1 +26-Sep 2 0 +27-Sep 2 3 +28-Sep 2 2 +29-Sep 4 3 +30-Sep 2 0 +1-Oct 2 2 +2-Oct 1 2 +3-Oct 3 2 +4-Oct 2 3 +5-Oct 3 2 +6-Oct 1 3 +7-Oct 1 0 +8-Oct 2 1 +9-Oct 3 1 +10-Oct 1 1 +11-Oct 2 1 +12-Oct 2 1 +13-Oct 2 1 +14-Oct 1 3 +15-Oct 2 0 +16-Oct 1 0 +17-Oct 1 4 +18-Oct 1 1 +19-Oct 1 1 +20-Oct 1 1 +21-Oct 2 2 +22-Oct 1 2 +23-Oct 0 1 +24-Oct 2 1 +25-Oct 2 2 +26-Oct 3 1 +27-Oct 2 3 +28-Oct 1 3 +29-Oct 1 2 +30-Oct 0 5 +31-Oct 0 2 +1-Nov 1 4 +2-Nov 1 3 +3-Nov 4 1 +4-Nov 6 2 +5-Nov 2 0 +6-Nov 2 0 +7-Nov 1 2 +8-Nov 1 5 +9-Nov 4 4 +10-Nov 3 4 +11-Nov 7 5 +12-Nov 3 3 +13-Nov 0 1 +14-Nov 3 4 +15-Nov 1 4 +16-Nov 5 3 +17-Nov 3 5 +18-Nov 2 5 +19-Nov 3 6 +20-Nov 4 4 +21-Nov 2 3 +22-Nov 4 4 +23-Nov 3 6 +24-Nov 2 4 +25-Nov 6 4 +26-Nov 4 4 +27-Nov 3 1 +28-Nov 4 2 +29-Nov 3 1 +30-Nov 3 4 +1-Dec 4 1 +2-Dec 3 1 +3-Dec 4 0 +4-Dec 4 0 +5-Dec 4 4 +6-Dec 5 3 +7-Dec 3 2 +8-Dec 0 2 +9-Dec 0 3 +10-Dec 0 6 +11-Dec 0 5 +12-Dec 0 3 +13-Dec 3 4 +14-Dec 3 2 +15-Dec 0 4 +16-Dec 1 3 +17-Dec 0 2 +18-Dec 1 4 +19-Dec 1 4 +20-Dec 0 6 +21-Dec 2 3 +22-Dec 3 1 +23-Dec 0 1 +24-Dec 2 1 +25-Dec 0 1 +26-Dec 0 0 +27-Dec 0 0 +28-Dec 2 2 +29-Dec 0 1 +30-Dec 0 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2016_salvini_2018_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2016_salvini_2018_salvini_trends.tsv new file mode 100644 index 0000000..26363f7 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2016_salvini_2018_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-16 Salvini-18 +1-Jan 1 0 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 1 +5-Jan 0 0 +6-Jan 0 1 +7-Jan 2 0 +8-Jan 2 1 +9-Jan 0 3 +10-Jan 1 3 +11-Jan 2 2 +12-Jan 4 2 +13-Jan 5 1 +14-Jan 2 1 +15-Jan 2 1 +16-Jan 1 3 +17-Jan 1 2 +18-Jan 3 3 +19-Jan 4 3 +20-Jan 5 2 +21-Jan 3 0 +22-Jan 2 0 +23-Jan 2 1 +24-Jan 2 3 +25-Jan 5 4 +26-Jan 4 1 +27-Jan 4 2 +28-Jan 1 2 +29-Jan 0 2 +30-Jan 2 4 +31-Jan 2 5 +1-Feb 3 4 +2-Feb 4 2 +3-Feb 2 3 +4-Feb 3 3 +5-Feb 4 3 +6-Feb 4 3 +7-Feb 0 4 +8-Feb 3 3 +9-Feb 2 2 +10-Feb 1 2 +11-Feb 3 2 +12-Feb 2 2 +13-Feb 1 2 +14-Feb 1 4 +15-Feb 3 3 +16-Feb 4 5 +17-Feb 2 3 +18-Feb 0 3 +19-Feb 1 2 +20-Feb 1 7 +21-Feb 0 5 +22-Feb 2 0 +23-Feb 2 6 +24-Feb 4 5 +25-Feb 4 1 +26-Feb 3 4 +27-Feb 1 5 +28-Feb 1 4 +29-Feb 2 0 +1-Mar 2 4 +2-Mar 1 8 +3-Mar 1 6 +4-Mar 1 6 +5-Mar 1 1 +6-Mar 1 0 +7-Mar 2 0 +8-Mar 1 1 +9-Mar 1 2 +10-Mar 2 0 +11-Mar 0 1 +12-Mar 0 0 +13-Mar 0 2 +14-Mar 2 1 +15-Mar 2 3 +16-Mar 1 2 +17-Mar 1 1 +18-Mar 2 2 +19-Mar 1 2 +20-Mar 0 2 +21-Mar 1 2 +22-Mar 2 2 +23-Mar 3 0 +24-Mar 3 0 +25-Mar 1 0 +26-Mar 1 0 +27-Mar 0 0 +28-Mar 0 1 +29-Mar 1 1 +30-Mar 1 1 +31-Mar 1 0 +1-Apr 1 0 +2-Apr 1 0 +3-Apr 2 0 +4-Apr 3 3 +5-Apr 3 1 +6-Apr 4 0 +7-Apr 2 0 +8-Apr 1 1 +9-Apr 2 3 +10-Apr 2 0 +11-Apr 3 1 +12-Apr 0 1 +13-Apr 1 2 +14-Apr 1 1 +15-Apr 2 1 +16-Apr 3 3 +17-Apr 0 1 +18-Apr 2 2 +19-Apr 4 3 +20-Apr 4 1 +21-Apr 4 1 +22-Apr 1 0 +23-Apr 1 3 +24-Apr 1 1 +25-Apr 0 0 +26-Apr 1 1 +27-Apr 1 4 +28-Apr 0 0 +29-Apr 1 0 +30-Apr 2 0 +1-May 0 0 +2-May 1 2 +3-May 0 0 +4-May 1 1 +5-May 0 0 +6-May 1 1 +7-May 0 4 +8-May 0 1 +9-May 0 0 +10-May 0 0 +11-May 1 0 +12-May 3 0 +13-May 2 0 +14-May 5 0 +15-May 3 1 +16-May 2 1 +17-May 4 0 +18-May 5 0 +19-May 5 1 +20-May 6 2 +21-May 2 1 +22-May 4 1 +23-May 2 2 +24-May 3 3 +25-May 3 0 +26-May 3 1 +27-May 2 3 +28-May 1 3 +29-May 4 4 +30-May 2 5 +31-May 5 1 +1-Jun 7 3 +2-Jun 4 1 +3-Jun 2 1 +4-Jun 3 0 +5-Jun 1 4 +6-Jun 2 3 +7-Jun 1 3 +8-Jun 2 0 +9-Jun 3 1 +10-Jun 2 1 +11-Jun 1 0 +12-Jun 0 1 +13-Jun 2 1 +14-Jun 1 1 +15-Jun 3 3 +16-Jun 2 0 +17-Jun 3 4 +18-Jun 0 3 +19-Jun 1 2 +20-Jun 0 2 +21-Jun 0 5 +22-Jun 1 2 +23-Jun 0 1 +24-Jun 2 1 +25-Jun 4 3 +26-Jun 0 3 +27-Jun 0 0 +28-Jun 2 1 +29-Jun 2 2 +30-Jun 1 0 +1-Jul 2 3 +2-Jul 0 2 +3-Jul 0 1 +4-Jul 1 2 +5-Jul 1 3 +6-Jul 2 1 +7-Jul 1 1 +8-Jul 2 1 +9-Jul 1 1 +10-Jul 0 4 +11-Jul 1 1 +12-Jul 2 5 +13-Jul 0 1 +14-Jul 0 2 +15-Jul 0 0 +16-Jul 0 2 +17-Jul 2 2 +18-Jul 0 1 +19-Jul 2 1 +20-Jul 0 0 +21-Jul 1 1 +22-Jul 2 0 +23-Jul 1 0 +24-Jul 0 1 +25-Jul 1 2 +26-Jul 1 2 +27-Jul 0 2 +28-Jul 1 3 +29-Jul 1 0 +30-Jul 0 1 +31-Jul 0 1 +1-Aug 0 1 +2-Aug 0 1 +3-Aug 1 2 +4-Aug 1 0 +5-Aug 1 2 +6-Aug 0 2 +7-Aug 0 1 +8-Aug 0 1 +9-Aug 1 1 +10-Aug 0 0 +11-Aug 0 1 +12-Aug 0 0 +13-Aug 0 2 +14-Aug 0 3 +15-Aug 0 4 +16-Aug 2 2 +17-Aug 1 0 +18-Aug 0 2 +19-Aug 0 0 +20-Aug 0 1 +21-Aug 1 0 +22-Aug 0 0 +23-Aug 1 1 +24-Aug 0 1 +25-Aug 0 1 +26-Aug 0 0 +27-Aug 1 0 +28-Aug 0 2 +29-Aug 1 0 +30-Aug 0 0 +31-Aug 2 2 +1-Sep 0 1 +2-Sep 1 4 +3-Sep 0 1 +4-Sep 2 1 +5-Sep 0 3 +6-Sep 3 2 +7-Sep 0 2 +8-Sep 2 1 +9-Sep 1 3 +10-Sep 0 1 +11-Sep 0 2 +12-Sep 2 1 +13-Sep 0 1 +14-Sep 1 3 +15-Sep 2 3 +16-Sep 0 2 +17-Sep 0 0 +18-Sep 3 1 +19-Sep 2 6 +20-Sep 2 3 +21-Sep 2 1 +22-Sep 2 3 +23-Sep 2 1 +24-Sep 2 2 +25-Sep 1 1 +26-Sep 2 1 +27-Sep 2 2 +28-Sep 2 2 +29-Sep 4 3 +30-Sep 2 1 +1-Oct 2 2 +2-Oct 1 1 +3-Oct 3 3 +4-Oct 2 3 +5-Oct 3 3 +6-Oct 1 1 +7-Oct 1 1 +8-Oct 2 0 +9-Oct 3 4 +10-Oct 1 3 +11-Oct 2 2 +12-Oct 2 0 +13-Oct 2 4 +14-Oct 1 5 +15-Oct 2 2 +16-Oct 1 5 +17-Oct 1 4 +18-Oct 1 2 +19-Oct 1 5 +20-Oct 1 1 +21-Oct 2 1 +22-Oct 1 1 +23-Oct 0 2 +24-Oct 2 2 +25-Oct 2 4 +26-Oct 3 5 +27-Oct 2 2 +28-Oct 1 0 +29-Oct 1 1 +30-Oct 0 1 +31-Oct 0 1 +1-Nov 1 2 +2-Nov 1 1 +3-Nov 4 2 +4-Nov 6 2 +5-Nov 2 1 +6-Nov 2 2 +7-Nov 1 3 +8-Nov 1 1 +9-Nov 4 1 +10-Nov 3 0 +11-Nov 7 1 +12-Nov 3 0 +13-Nov 0 0 +14-Nov 3 0 +15-Nov 1 2 +16-Nov 5 0 +17-Nov 3 2 +18-Nov 2 0 +19-Nov 3 1 +20-Nov 4 1 +21-Nov 2 1 +22-Nov 4 2 +23-Nov 3 1 +24-Nov 2 0 +25-Nov 6 0 +26-Nov 4 1 +27-Nov 3 2 +28-Nov 4 2 +29-Nov 3 1 +30-Nov 3 0 +1-Dec 4 0 +2-Dec 3 0 +3-Dec 4 3 +4-Dec 4 0 +5-Dec 4 1 +6-Dec 5 3 +7-Dec 3 1 +8-Dec 0 1 +9-Dec 0 2 +10-Dec 0 2 +11-Dec 0 0 +12-Dec 0 2 +13-Dec 3 0 +14-Dec 3 0 +15-Dec 0 0 +16-Dec 1 2 +17-Dec 0 1 +18-Dec 1 4 +19-Dec 1 0 +20-Dec 0 3 +21-Dec 2 0 +22-Dec 3 0 +23-Dec 0 0 +24-Dec 2 1 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 0 1 +28-Dec 2 2 +29-Dec 0 0 +30-Dec 0 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2016_salvini_2019_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2016_salvini_2019_salvini_trends.tsv new file mode 100644 index 0000000..cae95a9 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2016_salvini_2019_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-16 Salvini-19 +1-Jan 1 0 +2-Jan 0 1 +3-Jan 0 2 +4-Jan 0 4 +5-Jan 0 3 +6-Jan 0 1 +7-Jan 2 0 +8-Jan 2 1 +9-Jan 0 1 +10-Jan 1 1 +11-Jan 2 1 +12-Jan 4 0 +13-Jan 5 1 +14-Jan 2 3 +15-Jan 2 0 +16-Jan 1 5 +17-Jan 1 1 +18-Jan 3 3 +19-Jan 4 1 +20-Jan 5 2 +21-Jan 3 0 +22-Jan 2 1 +23-Jan 2 0 +24-Jan 2 1 +25-Jan 5 2 +26-Jan 4 0 +27-Jan 4 1 +28-Jan 1 1 +29-Jan 0 0 +30-Jan 2 1 +31-Jan 2 0 +1-Feb 3 3 +2-Feb 4 1 +3-Feb 2 3 +4-Feb 3 1 +5-Feb 4 1 +6-Feb 4 2 +7-Feb 0 2 +8-Feb 3 0 +9-Feb 2 2 +10-Feb 1 3 +11-Feb 3 1 +12-Feb 2 0 +13-Feb 1 1 +14-Feb 1 0 +15-Feb 3 0 +16-Feb 4 0 +17-Feb 2 2 +18-Feb 0 3 +19-Feb 1 2 +20-Feb 1 4 +21-Feb 0 4 +22-Feb 2 2 +23-Feb 2 1 +24-Feb 4 1 +25-Feb 4 2 +26-Feb 3 0 +27-Feb 1 2 +28-Feb 1 1 +29-Feb 2 0 +1-Mar 2 1 +2-Mar 1 0 +3-Mar 1 0 +4-Mar 1 1 +5-Mar 1 1 +6-Mar 1 0 +7-Mar 2 1 +8-Mar 1 3 +9-Mar 1 0 +10-Mar 2 1 +11-Mar 0 1 +12-Mar 0 2 +13-Mar 0 1 +14-Mar 2 1 +15-Mar 2 3 +16-Mar 1 3 +17-Mar 1 2 +18-Mar 2 3 +19-Mar 1 1 +20-Mar 0 1 +21-Mar 1 3 +22-Mar 2 4 +23-Mar 3 1 +24-Mar 3 0 +25-Mar 1 1 +26-Mar 1 0 +27-Mar 0 1 +28-Mar 0 2 +29-Mar 1 2 +30-Mar 1 1 +31-Mar 1 0 +1-Apr 1 3 +2-Apr 1 1 +3-Apr 2 0 +4-Apr 3 1 +5-Apr 3 1 +6-Apr 4 4 +7-Apr 2 2 +8-Apr 1 6 +9-Apr 2 0 +10-Apr 2 3 +11-Apr 3 1 +12-Apr 0 1 +13-Apr 1 0 +14-Apr 1 0 +15-Apr 2 2 +16-Apr 3 0 +17-Apr 0 3 +18-Apr 2 1 +19-Apr 4 3 +20-Apr 4 0 +21-Apr 4 0 +22-Apr 1 0 +23-Apr 1 1 +24-Apr 1 1 +25-Apr 0 4 +26-Apr 1 2 +27-Apr 1 2 +28-Apr 0 0 +29-Apr 1 1 +30-Apr 2 1 +1-May 0 4 +2-May 1 3 +3-May 0 8 +4-May 1 3 +5-May 0 2 +6-May 1 3 +7-May 0 6 +8-May 0 2 +9-May 0 6 +10-May 0 3 +11-May 1 0 +12-May 3 5 +13-May 2 6 +14-May 5 4 +15-May 3 3 +16-May 2 4 +17-May 4 6 +18-May 5 6 +19-May 5 5 +20-May 6 5 +21-May 2 5 +22-May 4 5 +23-May 2 3 +24-May 3 6 +25-May 3 2 +26-May 3 0 +27-May 2 0 +28-May 1 2 +29-May 4 2 +30-May 2 2 +31-May 5 2 +1-Jun 7 3 +2-Jun 4 2 +3-Jun 2 3 +4-Jun 3 5 +5-Jun 1 4 +6-Jun 2 2 +7-Jun 1 4 +8-Jun 2 2 +9-Jun 3 0 +10-Jun 2 0 +11-Jun 1 1 +12-Jun 0 2 +13-Jun 2 0 +14-Jun 1 1 +15-Jun 3 0 +16-Jun 2 0 +17-Jun 3 5 +18-Jun 0 0 +19-Jun 1 1 +20-Jun 0 1 +21-Jun 0 2 +22-Jun 1 0 +23-Jun 0 0 +24-Jun 2 0 +25-Jun 4 0 +26-Jun 0 3 +27-Jun 0 2 +28-Jun 2 3 +29-Jun 2 3 +30-Jun 1 1 +1-Jul 2 1 +2-Jul 0 0 +3-Jul 0 1 +4-Jul 1 0 +5-Jul 1 1 +6-Jul 2 4 +7-Jul 1 0 +8-Jul 2 0 +9-Jul 1 2 +10-Jul 0 1 +11-Jul 1 1 +12-Jul 2 1 +13-Jul 0 3 +14-Jul 0 0 +15-Jul 0 2 +16-Jul 0 1 +17-Jul 2 2 +18-Jul 0 1 +19-Jul 2 2 +20-Jul 0 0 +21-Jul 1 1 +22-Jul 2 1 +23-Jul 1 0 +24-Jul 0 2 +25-Jul 1 3 +26-Jul 1 1 +27-Jul 0 0 +28-Jul 1 0 +29-Jul 1 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 0 2 +2-Aug 0 0 +3-Aug 1 1 +4-Aug 1 1 +5-Aug 1 2 +6-Aug 0 3 +7-Aug 0 1 +8-Aug 0 1 +9-Aug 1 4 +10-Aug 0 3 +11-Aug 0 2 +12-Aug 0 1 +13-Aug 0 2 +14-Aug 0 3 +15-Aug 0 2 +16-Aug 2 0 +17-Aug 1 0 +18-Aug 0 2 +19-Aug 0 1 +20-Aug 0 2 +21-Aug 1 1 +22-Aug 0 1 +23-Aug 1 1 +24-Aug 0 0 +25-Aug 0 0 +26-Aug 0 1 +27-Aug 1 0 +28-Aug 0 3 +29-Aug 1 2 +30-Aug 0 1 +31-Aug 2 1 +1-Sep 0 3 +2-Sep 1 2 +3-Sep 0 1 +4-Sep 2 2 +5-Sep 0 1 +6-Sep 3 2 +7-Sep 0 1 +8-Sep 2 2 +9-Sep 1 5 +10-Sep 0 2 +11-Sep 0 2 +12-Sep 2 1 +13-Sep 0 2 +14-Sep 1 1 +15-Sep 2 5 +16-Sep 0 1 +17-Sep 0 2 +18-Sep 3 2 +19-Sep 2 2 +20-Sep 2 0 +21-Sep 2 3 +22-Sep 2 2 +23-Sep 2 3 +24-Sep 2 2 +25-Sep 1 1 +26-Sep 2 5 +27-Sep 2 3 +28-Sep 2 2 +29-Sep 4 3 +30-Sep 2 3 +1-Oct 2 5 +2-Oct 1 3 +3-Oct 3 5 +4-Oct 2 2 +5-Oct 3 1 +6-Oct 1 0 +7-Oct 1 3 +8-Oct 2 3 +9-Oct 3 1 +10-Oct 1 1 +11-Oct 2 1 +12-Oct 2 2 +13-Oct 2 2 +14-Oct 1 1 +15-Oct 2 0 +16-Oct 1 0 +17-Oct 1 1 +18-Oct 1 1 +19-Oct 1 1 +20-Oct 1 1 +21-Oct 2 5 +22-Oct 1 2 +23-Oct 0 5 +24-Oct 2 4 +25-Oct 2 4 +26-Oct 3 2 +27-Oct 2 0 +28-Oct 1 6 +29-Oct 1 3 +30-Oct 0 5 +31-Oct 0 3 +1-Nov 1 1 +2-Nov 1 2 +3-Nov 4 1 +4-Nov 6 16 +5-Nov 2 17 +6-Nov 2 21 +7-Nov 1 19 +8-Nov 1 16 +9-Nov 4 18 +10-Nov 3 24 +11-Nov 7 19 +12-Nov 3 16 +13-Nov 0 18 +14-Nov 3 35 +15-Nov 1 12 +16-Nov 5 9 +17-Nov 3 12 +18-Nov 2 19 +19-Nov 3 23 +20-Nov 4 18 +21-Nov 2 19 +22-Nov 4 20 +23-Nov 3 21 +24-Nov 2 22 +25-Nov 6 1 +26-Nov 4 0 +27-Nov 3 0 +28-Nov 4 0 +29-Nov 3 0 +30-Nov 3 0 +1-Dec 4 0 +2-Dec 3 0 +3-Dec 4 0 +4-Dec 4 0 +5-Dec 4 0 +6-Dec 5 0 +7-Dec 3 0 +8-Dec 0 0 +9-Dec 0 0 +10-Dec 0 0 +11-Dec 0 0 +12-Dec 0 0 +13-Dec 3 0 +14-Dec 3 0 +15-Dec 0 0 +16-Dec 1 0 +17-Dec 0 0 +18-Dec 1 0 +19-Dec 1 0 +20-Dec 0 0 +21-Dec 2 0 +22-Dec 3 0 +23-Dec 0 0 +24-Dec 2 0 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 0 0 +28-Dec 2 0 +29-Dec 0 0 +30-Dec 0 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2017_salvini_2018_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2017_salvini_2018_salvini_trends.tsv new file mode 100644 index 0000000..40fdb2a --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2017_salvini_2018_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-17 Salvini-18 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 1 1 +4-Jan 0 1 +5-Jan 0 0 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 1 3 +10-Jan 0 3 +11-Jan 3 2 +12-Jan 1 2 +13-Jan 1 1 +14-Jan 0 1 +15-Jan 0 1 +16-Jan 2 3 +17-Jan 0 2 +18-Jan 1 3 +19-Jan 2 3 +20-Jan 2 2 +21-Jan 2 0 +22-Jan 2 0 +23-Jan 3 1 +24-Jan 2 3 +25-Jan 1 4 +26-Jan 3 1 +27-Jan 0 2 +28-Jan 1 2 +29-Jan 2 2 +30-Jan 2 4 +31-Jan 3 5 +1-Feb 1 4 +2-Feb 1 2 +3-Feb 0 3 +4-Feb 1 3 +5-Feb 0 3 +6-Feb 0 3 +7-Feb 2 4 +8-Feb 2 3 +9-Feb 1 2 +10-Feb 1 2 +11-Feb 0 2 +12-Feb 1 2 +13-Feb 0 2 +14-Feb 1 4 +15-Feb 2 3 +16-Feb 0 5 +17-Feb 1 3 +18-Feb 1 3 +19-Feb 1 2 +20-Feb 2 7 +21-Feb 1 5 +22-Feb 2 0 +23-Feb 2 6 +24-Feb 1 5 +25-Feb 0 1 +26-Feb 3 4 +27-Feb 2 5 +28-Feb 0 4 +1-Mar 0 4 +2-Mar 0 8 +3-Mar 1 6 +4-Mar 4 6 +5-Mar 2 1 +6-Mar 0 0 +7-Mar 3 0 +8-Mar 0 1 +9-Mar 2 2 +10-Mar 2 0 +11-Mar 1 1 +12-Mar 0 0 +13-Mar 1 2 +14-Mar 2 1 +15-Mar 2 3 +16-Mar 0 2 +17-Mar 1 1 +18-Mar 0 2 +19-Mar 1 2 +20-Mar 4 2 +21-Mar 1 2 +22-Mar 1 2 +23-Mar 2 0 +24-Mar 1 0 +25-Mar 2 0 +26-Mar 0 0 +27-Mar 1 0 +28-Mar 2 1 +29-Mar 3 1 +30-Mar 3 1 +31-Mar 2 0 +1-Apr 2 0 +2-Apr 1 0 +3-Apr 1 0 +4-Apr 2 3 +5-Apr 2 1 +6-Apr 4 0 +7-Apr 1 0 +8-Apr 1 1 +9-Apr 0 3 +10-Apr 3 0 +11-Apr 1 1 +12-Apr 1 1 +13-Apr 1 2 +14-Apr 0 1 +15-Apr 0 1 +16-Apr 0 3 +17-Apr 1 1 +18-Apr 2 2 +19-Apr 0 3 +20-Apr 2 1 +21-Apr 1 1 +22-Apr 0 0 +23-Apr 0 3 +24-Apr 1 1 +25-Apr 2 0 +26-Apr 1 1 +27-Apr 3 4 +28-Apr 1 0 +29-Apr 0 0 +30-Apr 1 0 +1-May 2 0 +2-May 3 2 +3-May 3 0 +4-May 3 1 +5-May 1 0 +6-May 2 1 +7-May 1 4 +8-May 0 1 +9-May 0 0 +10-May 2 0 +11-May 4 0 +12-May 3 0 +13-May 0 0 +14-May 3 0 +15-May 2 1 +16-May 0 1 +17-May 4 0 +18-May 1 0 +19-May 1 1 +20-May 3 2 +21-May 1 1 +22-May 2 1 +23-May 1 2 +24-May 3 3 +25-May 5 0 +26-May 3 1 +27-May 3 3 +28-May 0 3 +29-May 3 4 +30-May 0 5 +31-May 3 1 +1-Jun 4 3 +2-Jun 1 1 +3-Jun 1 1 +4-Jun 0 0 +5-Jun 2 4 +6-Jun 4 3 +7-Jun 2 3 +8-Jun 3 0 +9-Jun 5 1 +10-Jun 1 1 +11-Jun 0 0 +12-Jun 0 1 +13-Jun 4 1 +14-Jun 4 1 +15-Jun 3 3 +16-Jun 3 0 +17-Jun 1 4 +18-Jun 1 3 +19-Jun 1 2 +20-Jun 2 2 +21-Jun 1 5 +22-Jun 0 2 +23-Jun 5 1 +24-Jun 1 1 +25-Jun 0 3 +26-Jun 4 3 +27-Jun 0 0 +28-Jun 3 1 +29-Jun 1 2 +30-Jun 0 0 +1-Jul 0 3 +2-Jul 1 2 +3-Jul 1 1 +4-Jul 1 2 +5-Jul 2 3 +6-Jul 0 1 +7-Jul 1 1 +8-Jul 0 1 +9-Jul 3 1 +10-Jul 0 4 +11-Jul 3 1 +12-Jul 1 5 +13-Jul 1 1 +14-Jul 0 2 +15-Jul 1 0 +16-Jul 0 2 +17-Jul 0 2 +18-Jul 1 1 +19-Jul 2 1 +20-Jul 3 0 +21-Jul 2 1 +22-Jul 0 0 +23-Jul 2 0 +24-Jul 2 1 +25-Jul 0 2 +26-Jul 1 2 +27-Jul 0 2 +28-Jul 0 3 +29-Jul 0 0 +30-Jul 0 1 +31-Jul 1 1 +1-Aug 0 1 +2-Aug 2 1 +3-Aug 3 2 +4-Aug 0 0 +5-Aug 0 2 +6-Aug 1 2 +7-Aug 2 1 +8-Aug 2 1 +9-Aug 1 1 +10-Aug 1 0 +11-Aug 2 1 +12-Aug 3 0 +13-Aug 3 2 +14-Aug 1 3 +15-Aug 3 4 +16-Aug 0 2 +17-Aug 0 0 +18-Aug 0 2 +19-Aug 1 0 +20-Aug 0 1 +21-Aug 0 0 +22-Aug 1 0 +23-Aug 1 1 +24-Aug 2 1 +25-Aug 0 1 +26-Aug 1 0 +27-Aug 0 0 +28-Aug 1 2 +29-Aug 0 0 +30-Aug 1 0 +31-Aug 0 2 +1-Sep 0 1 +2-Sep 1 4 +3-Sep 1 1 +4-Sep 0 1 +5-Sep 1 3 +6-Sep 1 2 +7-Sep 1 2 +8-Sep 0 1 +9-Sep 3 3 +10-Sep 1 1 +11-Sep 2 2 +12-Sep 1 1 +13-Sep 4 1 +14-Sep 2 3 +15-Sep 4 3 +16-Sep 2 2 +17-Sep 4 0 +18-Sep 1 1 +19-Sep 5 6 +20-Sep 2 3 +21-Sep 1 1 +22-Sep 1 3 +23-Sep 0 1 +24-Sep 1 2 +25-Sep 1 1 +26-Sep 0 1 +27-Sep 3 2 +28-Sep 2 2 +29-Sep 3 3 +30-Sep 0 1 +1-Oct 2 2 +2-Oct 2 1 +3-Oct 2 3 +4-Oct 3 3 +5-Oct 2 3 +6-Oct 3 1 +7-Oct 0 1 +8-Oct 1 0 +9-Oct 1 4 +10-Oct 1 3 +11-Oct 1 2 +12-Oct 1 0 +13-Oct 1 4 +14-Oct 3 5 +15-Oct 0 2 +16-Oct 0 5 +17-Oct 4 4 +18-Oct 1 2 +19-Oct 1 5 +20-Oct 1 1 +21-Oct 2 1 +22-Oct 2 1 +23-Oct 1 2 +24-Oct 1 2 +25-Oct 2 4 +26-Oct 1 5 +27-Oct 3 2 +28-Oct 3 0 +29-Oct 2 1 +30-Oct 5 1 +31-Oct 2 1 +1-Nov 4 2 +2-Nov 3 1 +3-Nov 1 2 +4-Nov 2 2 +5-Nov 0 1 +6-Nov 0 2 +7-Nov 2 3 +8-Nov 5 1 +9-Nov 4 1 +10-Nov 4 0 +11-Nov 5 1 +12-Nov 3 0 +13-Nov 1 0 +14-Nov 4 0 +15-Nov 4 2 +16-Nov 3 0 +17-Nov 5 2 +18-Nov 5 0 +19-Nov 6 1 +20-Nov 4 1 +21-Nov 3 1 +22-Nov 4 2 +23-Nov 6 1 +24-Nov 4 0 +25-Nov 4 0 +26-Nov 4 1 +27-Nov 1 2 +28-Nov 2 2 +29-Nov 1 1 +30-Nov 4 0 +1-Dec 1 0 +2-Dec 1 0 +3-Dec 0 3 +4-Dec 0 0 +5-Dec 4 1 +6-Dec 3 3 +7-Dec 2 1 +8-Dec 2 1 +9-Dec 3 2 +10-Dec 6 2 +11-Dec 5 0 +12-Dec 3 2 +13-Dec 4 0 +14-Dec 2 0 +15-Dec 4 0 +16-Dec 3 2 +17-Dec 2 1 +18-Dec 4 4 +19-Dec 4 0 +20-Dec 6 3 +21-Dec 3 0 +22-Dec 1 0 +23-Dec 1 0 +24-Dec 1 1 +25-Dec 1 0 +26-Dec 0 0 +27-Dec 0 1 +28-Dec 2 2 +29-Dec 1 0 +30-Dec 0 0 +31-Dec 1 2 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2017_salvini_2019_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2017_salvini_2019_salvini_trends.tsv new file mode 100644 index 0000000..f80d466 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2017_salvini_2019_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-17 Salvini-19 +1-Jan 0 0 +2-Jan 0 1 +3-Jan 1 2 +4-Jan 0 4 +5-Jan 0 3 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 1 1 +10-Jan 0 1 +11-Jan 3 1 +12-Jan 1 0 +13-Jan 1 1 +14-Jan 0 3 +15-Jan 0 0 +16-Jan 2 5 +17-Jan 0 1 +18-Jan 1 3 +19-Jan 2 1 +20-Jan 2 2 +21-Jan 2 0 +22-Jan 2 1 +23-Jan 3 0 +24-Jan 2 1 +25-Jan 1 2 +26-Jan 3 0 +27-Jan 0 1 +28-Jan 1 1 +29-Jan 2 0 +30-Jan 2 1 +31-Jan 3 0 +1-Feb 1 3 +2-Feb 1 1 +3-Feb 0 3 +4-Feb 1 1 +5-Feb 0 1 +6-Feb 0 2 +7-Feb 2 2 +8-Feb 2 0 +9-Feb 1 2 +10-Feb 1 3 +11-Feb 0 1 +12-Feb 1 0 +13-Feb 0 1 +14-Feb 1 0 +15-Feb 2 0 +16-Feb 0 0 +17-Feb 1 2 +18-Feb 1 3 +19-Feb 1 2 +20-Feb 2 4 +21-Feb 1 4 +22-Feb 2 2 +23-Feb 2 1 +24-Feb 1 1 +25-Feb 0 2 +26-Feb 3 0 +27-Feb 2 2 +28-Feb 0 1 +1-Mar 0 1 +2-Mar 0 0 +3-Mar 1 0 +4-Mar 4 1 +5-Mar 2 1 +6-Mar 0 0 +7-Mar 3 1 +8-Mar 0 3 +9-Mar 2 0 +10-Mar 2 1 +11-Mar 1 1 +12-Mar 0 2 +13-Mar 1 1 +14-Mar 2 1 +15-Mar 2 3 +16-Mar 0 3 +17-Mar 1 2 +18-Mar 0 3 +19-Mar 1 1 +20-Mar 4 1 +21-Mar 1 3 +22-Mar 1 4 +23-Mar 2 1 +24-Mar 1 0 +25-Mar 2 1 +26-Mar 0 0 +27-Mar 1 1 +28-Mar 2 2 +29-Mar 3 2 +30-Mar 3 1 +31-Mar 2 0 +1-Apr 2 3 +2-Apr 1 1 +3-Apr 1 0 +4-Apr 2 1 +5-Apr 2 1 +6-Apr 4 4 +7-Apr 1 2 +8-Apr 1 6 +9-Apr 0 0 +10-Apr 3 3 +11-Apr 1 1 +12-Apr 1 1 +13-Apr 1 0 +14-Apr 0 0 +15-Apr 0 2 +16-Apr 0 0 +17-Apr 1 3 +18-Apr 2 1 +19-Apr 0 3 +20-Apr 2 0 +21-Apr 1 0 +22-Apr 0 0 +23-Apr 0 1 +24-Apr 1 1 +25-Apr 2 4 +26-Apr 1 2 +27-Apr 3 2 +28-Apr 1 0 +29-Apr 0 1 +30-Apr 1 1 +1-May 2 4 +2-May 3 3 +3-May 3 8 +4-May 3 3 +5-May 1 2 +6-May 2 3 +7-May 1 6 +8-May 0 2 +9-May 0 6 +10-May 2 3 +11-May 4 0 +12-May 3 5 +13-May 0 6 +14-May 3 4 +15-May 2 3 +16-May 0 4 +17-May 4 6 +18-May 1 6 +19-May 1 5 +20-May 3 5 +21-May 1 5 +22-May 2 5 +23-May 1 3 +24-May 3 6 +25-May 5 2 +26-May 3 0 +27-May 3 0 +28-May 0 2 +29-May 3 2 +30-May 0 2 +31-May 3 2 +1-Jun 4 3 +2-Jun 1 2 +3-Jun 1 3 +4-Jun 0 5 +5-Jun 2 4 +6-Jun 4 2 +7-Jun 2 4 +8-Jun 3 2 +9-Jun 5 0 +10-Jun 1 0 +11-Jun 0 1 +12-Jun 0 2 +13-Jun 4 0 +14-Jun 4 1 +15-Jun 3 0 +16-Jun 3 0 +17-Jun 1 5 +18-Jun 1 0 +19-Jun 1 1 +20-Jun 2 1 +21-Jun 1 2 +22-Jun 0 0 +23-Jun 5 0 +24-Jun 1 0 +25-Jun 0 0 +26-Jun 4 3 +27-Jun 0 2 +28-Jun 3 3 +29-Jun 1 3 +30-Jun 0 1 +1-Jul 0 1 +2-Jul 1 0 +3-Jul 1 1 +4-Jul 1 0 +5-Jul 2 1 +6-Jul 0 4 +7-Jul 1 0 +8-Jul 0 0 +9-Jul 3 2 +10-Jul 0 1 +11-Jul 3 1 +12-Jul 1 1 +13-Jul 1 3 +14-Jul 0 0 +15-Jul 1 2 +16-Jul 0 1 +17-Jul 0 2 +18-Jul 1 1 +19-Jul 2 2 +20-Jul 3 0 +21-Jul 2 1 +22-Jul 0 1 +23-Jul 2 0 +24-Jul 2 2 +25-Jul 0 3 +26-Jul 1 1 +27-Jul 0 0 +28-Jul 0 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 1 0 +1-Aug 0 2 +2-Aug 2 0 +3-Aug 3 1 +4-Aug 0 1 +5-Aug 0 2 +6-Aug 1 3 +7-Aug 2 1 +8-Aug 2 1 +9-Aug 1 4 +10-Aug 1 3 +11-Aug 2 2 +12-Aug 3 1 +13-Aug 3 2 +14-Aug 1 3 +15-Aug 3 2 +16-Aug 0 0 +17-Aug 0 0 +18-Aug 0 2 +19-Aug 1 1 +20-Aug 0 2 +21-Aug 0 1 +22-Aug 1 1 +23-Aug 1 1 +24-Aug 2 0 +25-Aug 0 0 +26-Aug 1 1 +27-Aug 0 0 +28-Aug 1 3 +29-Aug 0 2 +30-Aug 1 1 +31-Aug 0 1 +1-Sep 0 3 +2-Sep 1 2 +3-Sep 1 1 +4-Sep 0 2 +5-Sep 1 1 +6-Sep 1 2 +7-Sep 1 1 +8-Sep 0 2 +9-Sep 3 5 +10-Sep 1 2 +11-Sep 2 2 +12-Sep 1 1 +13-Sep 4 2 +14-Sep 2 1 +15-Sep 4 5 +16-Sep 2 1 +17-Sep 4 2 +18-Sep 1 2 +19-Sep 5 2 +20-Sep 2 0 +21-Sep 1 3 +22-Sep 1 2 +23-Sep 0 3 +24-Sep 1 2 +25-Sep 1 1 +26-Sep 0 5 +27-Sep 3 3 +28-Sep 2 2 +29-Sep 3 3 +30-Sep 0 3 +1-Oct 2 5 +2-Oct 2 3 +3-Oct 2 5 +4-Oct 3 2 +5-Oct 2 1 +6-Oct 3 0 +7-Oct 0 3 +8-Oct 1 3 +9-Oct 1 1 +10-Oct 1 1 +11-Oct 1 1 +12-Oct 1 2 +13-Oct 1 2 +14-Oct 3 1 +15-Oct 0 0 +16-Oct 0 0 +17-Oct 4 1 +18-Oct 1 1 +19-Oct 1 1 +20-Oct 1 1 +21-Oct 2 5 +22-Oct 2 2 +23-Oct 1 5 +24-Oct 1 4 +25-Oct 2 4 +26-Oct 1 2 +27-Oct 3 0 +28-Oct 3 6 +29-Oct 2 3 +30-Oct 5 5 +31-Oct 2 3 +1-Nov 4 1 +2-Nov 3 2 +3-Nov 1 1 +4-Nov 2 16 +5-Nov 0 17 +6-Nov 0 21 +7-Nov 2 19 +8-Nov 5 16 +9-Nov 4 18 +10-Nov 4 24 +11-Nov 5 19 +12-Nov 3 16 +13-Nov 1 18 +14-Nov 4 35 +15-Nov 4 12 +16-Nov 3 9 +17-Nov 5 12 +18-Nov 5 19 +19-Nov 6 23 +20-Nov 4 18 +21-Nov 3 19 +22-Nov 4 20 +23-Nov 6 21 +24-Nov 4 22 +25-Nov 4 1 +26-Nov 4 0 +27-Nov 1 0 +28-Nov 2 0 +29-Nov 1 0 +30-Nov 4 0 +1-Dec 1 0 +2-Dec 1 0 +3-Dec 0 0 +4-Dec 0 0 +5-Dec 4 0 +6-Dec 3 0 +7-Dec 2 0 +8-Dec 2 0 +9-Dec 3 0 +10-Dec 6 0 +11-Dec 5 0 +12-Dec 3 0 +13-Dec 4 0 +14-Dec 2 0 +15-Dec 4 0 +16-Dec 3 0 +17-Dec 2 0 +18-Dec 4 0 +19-Dec 4 0 +20-Dec 6 0 +21-Dec 3 0 +22-Dec 1 0 +23-Dec 1 0 +24-Dec 1 0 +25-Dec 1 0 +26-Dec 0 0 +27-Dec 0 0 +28-Dec 2 0 +29-Dec 1 0 +30-Dec 0 0 +31-Dec 1 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2013_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2013_salvini_trends.tsv new file mode 100644 index 0000000..4da9ce1 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2013_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-18 Salvini-13 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 0 0 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 0 0 +9-Jan 0 0 +10-Jan 0 0 +11-Jan 0 0 +12-Jan 0 0 +13-Jan 0 0 +14-Jan 0 0 +15-Jan 0 0 +16-Jan 0 0 +17-Jan 0 0 +18-Jan 0 0 +19-Jan 0 0 +20-Jan 0 0 +21-Jan 0 0 +22-Jan 0 0 +23-Jan 0 0 +24-Jan 0 0 +25-Jan 0 0 +26-Jan 0 0 +27-Jan 0 0 +28-Jan 0 0 +29-Jan 0 0 +30-Jan 0 0 +31-Jan 0 0 +1-Feb 0 0 +2-Feb 0 0 +3-Feb 0 0 +4-Feb 0 0 +5-Feb 0 0 +6-Feb 0 0 +7-Feb 0 0 +8-Feb 0 0 +9-Feb 0 0 +10-Feb 0 0 +11-Feb 0 0 +12-Feb 0 0 +13-Feb 0 0 +14-Feb 0 0 +15-Feb 0 0 +16-Feb 0 0 +17-Feb 0 0 +18-Feb 0 0 +19-Feb 0 0 +20-Feb 0 0 +21-Feb 0 0 +22-Feb 0 0 +23-Feb 0 0 +24-Feb 0 0 +25-Feb 0 0 +26-Feb 0 0 +27-Feb 0 0 +28-Feb 0 1 +1-Mar 0 0 +2-Mar 0 0 +3-Mar 0 0 +4-Mar 0 2 +5-Mar 0 1 +6-Mar 0 0 +7-Mar 0 2 +8-Mar 0 0 +9-Mar 0 0 +10-Mar 0 0 +11-Mar 0 1 +12-Mar 0 1 +13-Mar 0 1 +14-Mar 0 2 +15-Mar 0 2 +16-Mar 0 1 +17-Mar 0 2 +18-Mar 0 2 +19-Mar 0 0 +20-Mar 0 0 +21-Mar 0 0 +22-Mar 0 1 +23-Mar 0 1 +24-Mar 0 1 +25-Mar 0 0 +26-Mar 0 1 +27-Mar 0 3 +28-Mar 0 1 +29-Mar 0 1 +30-Mar 0 3 +31-Mar 0 0 +1-Apr 0 0 +2-Apr 0 2 +3-Apr 0 1 +4-Apr 0 0 +5-Apr 0 2 +6-Apr 0 0 +7-Apr 0 0 +8-Apr 0 1 +9-Apr 0 2 +10-Apr 0 0 +11-Apr 0 1 +12-Apr 0 2 +13-Apr 0 1 +14-Apr 0 2 +15-Apr 0 2 +16-Apr 0 1 +17-Apr 0 1 +18-Apr 0 1 +19-Apr 0 1 +20-Apr 0 1 +21-Apr 0 0 +22-Apr 0 1 +23-Apr 0 0 +24-Apr 0 4 +25-Apr 0 1 +26-Apr 0 2 +27-Apr 0 1 +28-Apr 0 2 +29-Apr 0 1 +30-Apr 0 0 +1-May 0 0 +2-May 0 0 +3-May 0 1 +4-May 0 0 +5-May 0 1 +6-May 0 0 +7-May 0 0 +8-May 0 1 +9-May 0 0 +10-May 0 2 +11-May 0 0 +12-May 0 1 +13-May 0 2 +14-May 0 1 +15-May 0 1 +16-May 0 1 +17-May 0 2 +18-May 0 0 +19-May 0 0 +20-May 0 1 +21-May 0 1 +22-May 0 1 +23-May 0 2 +24-May 0 3 +25-May 0 1 +26-May 0 0 +27-May 0 1 +28-May 0 1 +29-May 0 0 +30-May 0 2 +31-May 0 1 +1-Jun 0 1 +2-Jun 0 0 +3-Jun 0 3 +4-Jun 0 1 +5-Jun 0 0 +6-Jun 0 3 +7-Jun 0 3 +8-Jun 0 0 +9-Jun 0 2 +10-Jun 0 1 +11-Jun 0 1 +12-Jun 0 0 +13-Jun 0 0 +14-Jun 0 2 +15-Jun 0 1 +16-Jun 0 2 +17-Jun 0 1 +18-Jun 0 2 +19-Jun 0 1 +20-Jun 0 0 +21-Jun 0 0 +22-Jun 0 0 +23-Jun 0 0 +24-Jun 0 1 +25-Jun 0 1 +26-Jun 0 4 +27-Jun 0 1 +28-Jun 0 4 +29-Jun 0 0 +30-Jun 0 2 +1-Jul 0 0 +2-Jul 0 3 +3-Jul 0 0 +4-Jul 0 1 +5-Jul 0 2 +6-Jul 0 2 +7-Jul 0 1 +8-Jul 0 3 +9-Jul 0 1 +10-Jul 0 2 +11-Jul 0 3 +12-Jul 0 2 +13-Jul 0 4 +14-Jul 0 5 +15-Jul 0 1 +16-Jul 0 3 +17-Jul 0 0 +18-Jul 0 3 +19-Jul 0 0 +20-Jul 0 1 +21-Jul 0 0 +22-Jul 0 0 +23-Jul 0 0 +24-Jul 0 0 +25-Jul 0 0 +26-Jul 0 0 +27-Jul 0 0 +28-Jul 0 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 0 2 +2-Aug 0 3 +3-Aug 0 5 +4-Aug 0 4 +5-Aug 1 3 +6-Aug 1 1 +7-Aug 2 0 +8-Aug 1 3 +9-Aug 1 3 +10-Aug 2 2 +11-Aug 1 0 +12-Aug 0 2 +13-Aug 1 3 +14-Aug 1 0 +15-Aug 0 2 +16-Aug 1 2 +17-Aug 1 2 +18-Aug 0 3 +19-Aug 0 2 +20-Aug 2 2 +21-Aug 0 1 +22-Aug 1 3 +23-Aug 1 2 +24-Aug 0 5 +25-Aug 1 2 +26-Aug 1 0 +27-Aug 0 1 +28-Aug 0 5 +29-Aug 1 2 +30-Aug 0 2 +31-Aug 1 0 +1-Sep 0 1 +2-Sep 0 0 +3-Sep 1 1 +4-Sep 3 2 +5-Sep 2 3 +6-Sep 3 3 +7-Sep 2 1 +8-Sep 0 0 +9-Sep 2 1 +10-Sep 4 2 +11-Sep 0 1 +12-Sep 2 1 +13-Sep 2 1 +14-Sep 2 3 +15-Sep 0 1 +16-Sep 1 1 +17-Sep 0 0 +18-Sep 0 1 +19-Sep 0 0 +20-Sep 2 0 +21-Sep 1 0 +22-Sep 2 3 +23-Sep 0 1 +24-Sep 1 5 +25-Sep 2 2 +26-Sep 1 5 +27-Sep 1 2 +28-Sep 2 2 +29-Sep 2 4 +30-Sep 4 3 +1-Oct 1 1 +2-Oct 3 2 +3-Oct 1 1 +4-Oct 3 3 +5-Oct 4 1 +6-Oct 1 1 +7-Oct 2 1 +8-Oct 3 2 +9-Oct 3 0 +10-Oct 1 2 +11-Oct 1 1 +12-Oct 1 6 +13-Oct 2 2 +14-Oct 1 1 +15-Oct 2 5 +16-Oct 2 3 +17-Oct 2 3 +18-Oct 3 4 +19-Oct 3 2 +20-Oct 4 0 +21-Oct 4 3 +22-Oct 2 2 +23-Oct 4 2 +24-Oct 1 2 +25-Oct 2 2 +26-Oct 3 3 +27-Oct 0 3 +28-Oct 1 1 +29-Oct 3 1 +30-Oct 4 3 +31-Oct 3 5 +1-Nov 0 1 +2-Nov 0 1 +3-Nov 1 1 +4-Nov 1 1 +5-Nov 1 2 +6-Nov 3 4 +7-Nov 0 3 +8-Nov 2 2 +9-Nov 4 2 +10-Nov 5 3 +11-Nov 2 1 +12-Nov 2 1 +13-Nov 2 4 +14-Nov 5 4 +15-Nov 3 4 +16-Nov 2 4 +17-Nov 2 3 +18-Nov 3 4 +19-Nov 1 4 +20-Nov 3 1 +21-Nov 4 6 +22-Nov 5 5 +23-Nov 2 3 +24-Nov 2 3 +25-Nov 2 3 +26-Nov 2 2 +27-Nov 3 2 +28-Nov 5 2 +29-Nov 1 2 +30-Nov 2 4 +1-Dec 4 4 +2-Dec 1 3 +3-Dec 2 2 +4-Dec 3 5 +5-Dec 1 3 +6-Dec 4 3 +7-Dec 2 2 +8-Dec 1 0 +9-Dec 1 3 +10-Dec 4 1 +11-Dec 4 5 +12-Dec 3 3 +13-Dec 3 0 +14-Dec 1 1 +15-Dec 5 4 +16-Dec 2 5 +17-Dec 5 2 +18-Dec 4 0 +19-Dec 7 4 +20-Dec 2 2 +21-Dec 6 1 +22-Dec 6 1 +23-Dec 3 1 +24-Dec 2 1 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 4 4 +28-Dec 5 1 +29-Dec 4 3 +30-Dec 6 0 +31-Dec 4 2 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2014_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2014_salvini_trends.tsv new file mode 100644 index 0000000..0cce5cd --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2014_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-18 Salvini-14 +1-Jan 0 2 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 0 0 +10-Jan 0 1 +11-Jan 0 3 +12-Jan 0 1 +13-Jan 0 0 +14-Jan 0 0 +15-Jan 0 2 +16-Jan 0 1 +17-Jan 0 0 +18-Jan 0 1 +19-Jan 0 1 +20-Jan 0 0 +21-Jan 0 0 +22-Jan 0 1 +23-Jan 0 0 +24-Jan 0 0 +25-Jan 0 1 +26-Jan 0 0 +27-Jan 0 1 +28-Jan 0 3 +29-Jan 0 3 +30-Jan 0 1 +31-Jan 0 1 +1-Feb 0 0 +2-Feb 0 0 +3-Feb 0 0 +4-Feb 0 0 +5-Feb 0 0 +6-Feb 0 0 +7-Feb 0 0 +8-Feb 0 1 +9-Feb 0 2 +10-Feb 0 2 +11-Feb 0 0 +12-Feb 0 3 +13-Feb 0 1 +14-Feb 0 0 +15-Feb 0 3 +16-Feb 0 3 +17-Feb 0 2 +18-Feb 0 2 +19-Feb 0 0 +20-Feb 0 3 +21-Feb 0 1 +22-Feb 0 3 +23-Feb 0 2 +24-Feb 0 2 +25-Feb 0 2 +26-Feb 0 2 +27-Feb 0 2 +28-Feb 0 0 +1-Mar 0 5 +2-Mar 0 6 +3-Mar 0 0 +4-Mar 0 1 +5-Mar 0 2 +6-Mar 0 0 +7-Mar 0 1 +8-Mar 0 1 +9-Mar 0 3 +10-Mar 0 4 +11-Mar 0 0 +12-Mar 0 0 +13-Mar 0 2 +14-Mar 0 0 +15-Mar 0 3 +16-Mar 0 1 +17-Mar 0 0 +18-Mar 0 1 +19-Mar 0 1 +20-Mar 0 2 +21-Mar 0 2 +22-Mar 0 4 +23-Mar 0 2 +24-Mar 0 1 +25-Mar 0 3 +26-Mar 0 3 +27-Mar 0 1 +28-Mar 0 2 +29-Mar 0 3 +30-Mar 0 2 +31-Mar 0 1 +1-Apr 0 3 +2-Apr 0 0 +3-Apr 0 0 +4-Apr 0 1 +5-Apr 0 6 +6-Apr 0 4 +7-Apr 0 1 +8-Apr 0 1 +9-Apr 0 2 +10-Apr 0 1 +11-Apr 0 2 +12-Apr 0 1 +13-Apr 0 2 +14-Apr 0 3 +15-Apr 0 1 +16-Apr 0 1 +17-Apr 0 1 +18-Apr 0 0 +19-Apr 0 1 +20-Apr 0 1 +21-Apr 0 0 +22-Apr 0 1 +23-Apr 0 3 +24-Apr 0 1 +25-Apr 0 4 +26-Apr 0 6 +27-Apr 0 0 +28-Apr 0 4 +29-Apr 0 3 +30-Apr 0 2 +1-May 0 5 +2-May 0 3 +3-May 0 5 +4-May 0 2 +5-May 0 5 +6-May 0 5 +7-May 0 3 +8-May 0 5 +9-May 0 1 +10-May 0 3 +11-May 0 6 +12-May 0 6 +13-May 0 5 +14-May 0 2 +15-May 0 2 +16-May 0 4 +17-May 0 4 +18-May 0 7 +19-May 0 4 +20-May 0 9 +21-May 0 5 +22-May 0 2 +23-May 0 7 +24-May 0 4 +25-May 0 23 +26-May 0 3 +27-May 0 1 +28-May 0 2 +29-May 0 2 +30-May 0 4 +31-May 0 1 +1-Jun 0 4 +2-Jun 0 1 +3-Jun 0 3 +4-Jun 0 3 +5-Jun 0 3 +6-Jun 0 1 +7-Jun 0 3 +8-Jun 0 1 +9-Jun 0 1 +10-Jun 0 2 +11-Jun 0 0 +12-Jun 0 0 +13-Jun 0 2 +14-Jun 0 0 +15-Jun 0 1 +16-Jun 0 2 +17-Jun 0 0 +18-Jun 0 4 +19-Jun 0 0 +20-Jun 0 0 +21-Jun 0 0 +22-Jun 0 2 +23-Jun 0 0 +24-Jun 0 0 +25-Jun 0 1 +26-Jun 0 0 +27-Jun 0 0 +28-Jun 0 0 +29-Jun 0 1 +30-Jun 0 0 +1-Jul 0 2 +2-Jul 0 2 +3-Jul 0 0 +4-Jul 0 0 +5-Jul 0 1 +6-Jul 0 0 +7-Jul 0 1 +8-Jul 0 0 +9-Jul 0 1 +10-Jul 0 1 +11-Jul 0 1 +12-Jul 0 7 +13-Jul 0 5 +14-Jul 0 2 +15-Jul 0 0 +16-Jul 0 2 +17-Jul 0 0 +18-Jul 0 0 +19-Jul 0 1 +20-Jul 0 2 +21-Jul 0 1 +22-Jul 0 0 +23-Jul 0 1 +24-Jul 0 1 +25-Jul 0 0 +26-Jul 0 0 +27-Jul 0 0 +28-Jul 0 1 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 0 1 +2-Aug 0 0 +3-Aug 0 1 +4-Aug 0 2 +5-Aug 1 0 +6-Aug 1 1 +7-Aug 2 1 +8-Aug 1 0 +9-Aug 1 1 +10-Aug 2 0 +11-Aug 1 0 +12-Aug 0 0 +13-Aug 1 0 +14-Aug 1 0 +15-Aug 0 0 +16-Aug 1 3 +17-Aug 1 3 +18-Aug 0 2 +19-Aug 0 0 +20-Aug 2 1 +21-Aug 0 0 +22-Aug 1 1 +23-Aug 1 4 +24-Aug 0 2 +25-Aug 1 0 +26-Aug 1 0 +27-Aug 0 0 +28-Aug 0 0 +29-Aug 1 0 +30-Aug 0 1 +31-Aug 1 0 +1-Sep 0 1 +2-Sep 0 0 +3-Sep 1 3 +4-Sep 3 1 +5-Sep 2 1 +6-Sep 3 1 +7-Sep 2 3 +8-Sep 0 1 +9-Sep 2 0 +10-Sep 4 0 +11-Sep 0 0 +12-Sep 2 0 +13-Sep 2 1 +14-Sep 2 2 +15-Sep 0 0 +16-Sep 1 1 +17-Sep 0 2 +18-Sep 0 0 +19-Sep 0 1 +20-Sep 2 2 +21-Sep 1 2 +22-Sep 2 1 +23-Sep 0 0 +24-Sep 1 0 +25-Sep 2 1 +26-Sep 1 1 +27-Sep 1 2 +28-Sep 2 3 +29-Sep 2 2 +30-Sep 4 1 +1-Oct 1 1 +2-Oct 3 2 +3-Oct 1 0 +4-Oct 3 2 +5-Oct 4 2 +6-Oct 1 0 +7-Oct 2 0 +8-Oct 3 1 +9-Oct 3 0 +10-Oct 1 2 +11-Oct 1 4 +12-Oct 1 1 +13-Oct 2 2 +14-Oct 1 4 +15-Oct 2 3 +16-Oct 2 1 +17-Oct 2 3 +18-Oct 3 4 +19-Oct 3 2 +20-Oct 4 2 +21-Oct 4 3 +22-Oct 2 0 +23-Oct 4 2 +24-Oct 1 2 +25-Oct 2 1 +26-Oct 3 1 +27-Oct 0 2 +28-Oct 1 1 +29-Oct 3 2 +30-Oct 4 1 +31-Oct 3 5 +1-Nov 0 3 +2-Nov 0 0 +3-Nov 1 2 +4-Nov 1 0 +5-Nov 1 0 +6-Nov 3 0 +7-Nov 0 2 +8-Nov 2 4 +9-Nov 4 5 +10-Nov 5 3 +11-Nov 2 2 +12-Nov 2 1 +13-Nov 2 2 +14-Nov 5 5 +15-Nov 3 4 +16-Nov 2 0 +17-Nov 2 2 +18-Nov 3 0 +19-Nov 1 2 +20-Nov 3 7 +21-Nov 4 4 +22-Nov 5 1 +23-Nov 2 2 +24-Nov 2 1 +25-Nov 2 0 +26-Nov 2 1 +27-Nov 3 1 +28-Nov 5 3 +29-Nov 1 0 +30-Nov 2 0 +1-Dec 4 1 +2-Dec 1 1 +3-Dec 2 1 +4-Dec 3 1 +5-Dec 1 0 +6-Dec 4 2 +7-Dec 2 1 +8-Dec 1 3 +9-Dec 1 1 +10-Dec 4 2 +11-Dec 4 1 +12-Dec 3 1 +13-Dec 3 2 +14-Dec 1 1 +15-Dec 5 3 +16-Dec 2 1 +17-Dec 5 1 +18-Dec 4 1 +19-Dec 7 3 +20-Dec 2 2 +21-Dec 6 2 +22-Dec 6 1 +23-Dec 3 1 +24-Dec 2 2 +25-Dec 0 0 +26-Dec 0 1 +27-Dec 4 3 +28-Dec 5 0 +29-Dec 4 3 +30-Dec 6 0 +31-Dec 4 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2015_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2015_salvini_trends.tsv new file mode 100644 index 0000000..ad5fd7f --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2015_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-18 Salvini-15 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 0 0 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 0 1 +10-Jan 0 0 +11-Jan 0 0 +12-Jan 0 0 +13-Jan 0 2 +14-Jan 0 1 +15-Jan 0 0 +16-Jan 0 1 +17-Jan 0 0 +18-Jan 0 1 +19-Jan 0 1 +20-Jan 0 0 +21-Jan 0 3 +22-Jan 0 1 +23-Jan 0 1 +24-Jan 0 0 +25-Jan 0 0 +26-Jan 0 1 +27-Jan 0 0 +28-Jan 0 3 +29-Jan 0 2 +30-Jan 0 2 +31-Jan 0 0 +1-Feb 0 4 +2-Feb 0 1 +3-Feb 0 0 +4-Feb 0 0 +5-Feb 0 1 +6-Feb 0 2 +7-Feb 0 0 +8-Feb 0 0 +9-Feb 0 2 +10-Feb 0 0 +11-Feb 0 1 +12-Feb 0 1 +13-Feb 0 0 +14-Feb 0 1 +15-Feb 0 0 +16-Feb 0 0 +17-Feb 0 1 +18-Feb 0 2 +19-Feb 0 2 +20-Feb 0 0 +21-Feb 0 1 +22-Feb 0 1 +23-Feb 0 1 +24-Feb 0 2 +25-Feb 0 2 +26-Feb 0 3 +27-Feb 0 1 +28-Feb 0 1 +1-Mar 0 2 +2-Mar 0 0 +3-Mar 0 1 +4-Mar 0 1 +5-Mar 0 2 +6-Mar 0 2 +7-Mar 0 1 +8-Mar 0 1 +9-Mar 0 1 +10-Mar 0 0 +11-Mar 0 1 +12-Mar 0 2 +13-Mar 0 0 +14-Mar 0 2 +15-Mar 0 0 +16-Mar 0 1 +17-Mar 0 1 +18-Mar 0 2 +19-Mar 0 1 +20-Mar 0 1 +21-Mar 0 0 +22-Mar 0 0 +23-Mar 0 2 +24-Mar 0 3 +25-Mar 0 2 +26-Mar 0 2 +27-Mar 0 1 +28-Mar 0 2 +29-Mar 0 1 +30-Mar 0 1 +31-Mar 0 1 +1-Apr 0 3 +2-Apr 0 2 +3-Apr 0 1 +4-Apr 0 1 +5-Apr 0 0 +6-Apr 0 0 +7-Apr 0 1 +8-Apr 0 2 +9-Apr 0 2 +10-Apr 0 2 +11-Apr 0 2 +12-Apr 0 1 +13-Apr 0 1 +14-Apr 0 3 +15-Apr 0 1 +16-Apr 0 1 +17-Apr 0 2 +18-Apr 0 2 +19-Apr 0 1 +20-Apr 0 4 +21-Apr 0 3 +22-Apr 0 2 +23-Apr 0 2 +24-Apr 0 1 +25-Apr 0 0 +26-Apr 0 0 +27-Apr 0 5 +28-Apr 0 3 +29-Apr 0 3 +30-Apr 0 1 +1-May 0 5 +2-May 0 1 +3-May 0 0 +4-May 0 5 +5-May 0 2 +6-May 0 4 +7-May 0 1 +8-May 0 2 +9-May 0 2 +10-May 0 3 +11-May 0 3 +12-May 0 5 +13-May 0 2 +14-May 0 5 +15-May 0 3 +16-May 0 5 +17-May 0 1 +18-May 0 2 +19-May 0 2 +20-May 0 3 +21-May 0 2 +22-May 0 3 +23-May 0 4 +24-May 0 5 +25-May 0 5 +26-May 0 9 +27-May 0 4 +28-May 0 5 +29-May 0 5 +30-May 0 0 +31-May 0 1 +1-Jun 0 2 +2-Jun 0 0 +3-Jun 0 2 +4-Jun 0 3 +5-Jun 0 3 +6-Jun 0 0 +7-Jun 0 3 +8-Jun 0 3 +9-Jun 0 0 +10-Jun 0 4 +11-Jun 0 1 +12-Jun 0 3 +13-Jun 0 1 +14-Jun 0 1 +15-Jun 0 2 +16-Jun 0 1 +17-Jun 0 1 +18-Jun 0 2 +19-Jun 0 1 +20-Jun 0 1 +21-Jun 0 0 +22-Jun 0 2 +23-Jun 0 2 +24-Jun 0 2 +25-Jun 0 2 +26-Jun 0 0 +27-Jun 0 0 +28-Jun 0 1 +29-Jun 0 3 +30-Jun 0 2 +1-Jul 0 3 +2-Jul 0 2 +3-Jul 0 4 +4-Jul 0 0 +5-Jul 0 0 +6-Jul 0 2 +7-Jul 0 3 +8-Jul 0 3 +9-Jul 0 1 +10-Jul 0 1 +11-Jul 0 1 +12-Jul 0 1 +13-Jul 0 2 +14-Jul 0 3 +15-Jul 0 4 +16-Jul 0 2 +17-Jul 0 2 +18-Jul 0 3 +19-Jul 0 2 +20-Jul 0 1 +21-Jul 0 0 +22-Jul 0 1 +23-Jul 0 0 +24-Jul 0 0 +25-Jul 0 0 +26-Jul 0 0 +27-Jul 0 1 +28-Jul 0 2 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 0 0 +2-Aug 0 1 +3-Aug 0 0 +4-Aug 0 2 +5-Aug 1 2 +6-Aug 1 2 +7-Aug 2 2 +8-Aug 1 1 +9-Aug 1 1 +10-Aug 2 0 +11-Aug 1 1 +12-Aug 0 1 +13-Aug 1 3 +14-Aug 1 0 +15-Aug 0 0 +16-Aug 1 2 +17-Aug 1 2 +18-Aug 0 0 +19-Aug 0 0 +20-Aug 2 3 +21-Aug 0 0 +22-Aug 1 1 +23-Aug 1 0 +24-Aug 0 2 +25-Aug 1 0 +26-Aug 1 1 +27-Aug 0 1 +28-Aug 0 1 +29-Aug 1 1 +30-Aug 0 0 +31-Aug 1 2 +1-Sep 0 2 +2-Sep 0 1 +3-Sep 1 1 +4-Sep 3 2 +5-Sep 2 0 +6-Sep 3 2 +7-Sep 2 3 +8-Sep 0 2 +9-Sep 2 3 +10-Sep 4 1 +11-Sep 0 2 +12-Sep 2 0 +13-Sep 2 2 +14-Sep 2 2 +15-Sep 0 3 +16-Sep 1 2 +17-Sep 0 3 +18-Sep 0 2 +19-Sep 0 1 +20-Sep 2 1 +21-Sep 1 1 +22-Sep 2 2 +23-Sep 0 1 +24-Sep 1 1 +25-Sep 2 1 +26-Sep 1 0 +27-Sep 1 0 +28-Sep 2 1 +29-Sep 2 2 +30-Sep 4 1 +1-Oct 1 2 +2-Oct 3 2 +3-Oct 1 1 +4-Oct 3 0 +5-Oct 4 0 +6-Oct 1 2 +7-Oct 2 2 +8-Oct 3 2 +9-Oct 3 2 +10-Oct 1 0 +11-Oct 1 0 +12-Oct 1 2 +13-Oct 2 3 +14-Oct 1 1 +15-Oct 2 1 +16-Oct 2 0 +17-Oct 2 2 +18-Oct 3 1 +19-Oct 3 1 +20-Oct 4 1 +21-Oct 4 4 +22-Oct 2 5 +23-Oct 4 3 +24-Oct 1 1 +25-Oct 2 1 +26-Oct 3 3 +27-Oct 0 5 +28-Oct 1 5 +29-Oct 3 4 +30-Oct 4 5 +31-Oct 3 5 +1-Nov 0 2 +2-Nov 0 7 +3-Nov 1 3 +4-Nov 1 4 +5-Nov 1 4 +6-Nov 3 4 +7-Nov 0 1 +8-Nov 2 2 +9-Nov 4 4 +10-Nov 5 3 +11-Nov 2 3 +12-Nov 2 6 +13-Nov 2 2 +14-Nov 5 3 +15-Nov 3 2 +16-Nov 2 4 +17-Nov 2 2 +18-Nov 3 5 +19-Nov 1 3 +20-Nov 3 3 +21-Nov 4 2 +22-Nov 5 0 +23-Nov 2 2 +24-Nov 2 2 +25-Nov 2 3 +26-Nov 2 2 +27-Nov 3 0 +28-Nov 5 1 +29-Nov 1 2 +30-Nov 2 4 +1-Dec 4 3 +2-Dec 1 4 +3-Dec 2 4 +4-Dec 3 4 +5-Dec 1 1 +6-Dec 4 0 +7-Dec 2 1 +8-Dec 1 0 +9-Dec 1 1 +10-Dec 4 1 +11-Dec 4 1 +12-Dec 3 0 +13-Dec 3 1 +14-Dec 1 1 +15-Dec 5 2 +16-Dec 2 2 +17-Dec 5 1 +18-Dec 4 0 +19-Dec 7 0 +20-Dec 2 0 +21-Dec 6 0 +22-Dec 6 1 +23-Dec 3 0 +24-Dec 2 2 +25-Dec 0 2 +26-Dec 0 1 +27-Dec 4 0 +28-Dec 5 0 +29-Dec 4 0 +30-Dec 6 0 +31-Dec 4 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2016_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2016_salvini_trends.tsv new file mode 100644 index 0000000..9510d96 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2016_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-18 Salvini-16 +1-Jan 0 1 +2-Jan 0 0 +3-Jan 0 0 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 2 +8-Jan 0 2 +9-Jan 0 0 +10-Jan 0 1 +11-Jan 0 2 +12-Jan 0 4 +13-Jan 0 5 +14-Jan 0 2 +15-Jan 0 2 +16-Jan 0 1 +17-Jan 0 1 +18-Jan 0 3 +19-Jan 0 4 +20-Jan 0 5 +21-Jan 0 3 +22-Jan 0 2 +23-Jan 0 2 +24-Jan 0 2 +25-Jan 0 5 +26-Jan 0 4 +27-Jan 0 4 +28-Jan 0 1 +29-Jan 0 0 +30-Jan 0 2 +31-Jan 0 2 +1-Feb 0 3 +2-Feb 0 4 +3-Feb 0 2 +4-Feb 0 3 +5-Feb 0 4 +6-Feb 0 4 +7-Feb 0 0 +8-Feb 0 3 +9-Feb 0 2 +10-Feb 0 1 +11-Feb 0 3 +12-Feb 0 2 +13-Feb 0 1 +14-Feb 0 1 +15-Feb 0 3 +16-Feb 0 4 +17-Feb 0 2 +18-Feb 0 0 +19-Feb 0 1 +20-Feb 0 1 +21-Feb 0 0 +22-Feb 0 2 +23-Feb 0 2 +24-Feb 0 4 +25-Feb 0 4 +26-Feb 0 3 +27-Feb 0 1 +28-Feb 0 1 +29-Feb 0 2 +1-Mar 0 2 +2-Mar 0 1 +3-Mar 0 1 +4-Mar 0 1 +5-Mar 0 1 +6-Mar 0 1 +7-Mar 0 2 +8-Mar 0 1 +9-Mar 0 1 +10-Mar 0 2 +11-Mar 0 0 +12-Mar 0 0 +13-Mar 0 0 +14-Mar 0 2 +15-Mar 0 2 +16-Mar 0 1 +17-Mar 0 1 +18-Mar 0 2 +19-Mar 0 1 +20-Mar 0 0 +21-Mar 0 1 +22-Mar 0 2 +23-Mar 0 3 +24-Mar 0 3 +25-Mar 0 1 +26-Mar 0 1 +27-Mar 0 0 +28-Mar 0 0 +29-Mar 0 1 +30-Mar 0 1 +31-Mar 0 1 +1-Apr 0 1 +2-Apr 0 1 +3-Apr 0 2 +4-Apr 0 3 +5-Apr 0 3 +6-Apr 0 4 +7-Apr 0 2 +8-Apr 0 1 +9-Apr 0 2 +10-Apr 0 2 +11-Apr 0 3 +12-Apr 0 0 +13-Apr 0 1 +14-Apr 0 1 +15-Apr 0 2 +16-Apr 0 3 +17-Apr 0 0 +18-Apr 0 2 +19-Apr 0 4 +20-Apr 0 4 +21-Apr 0 4 +22-Apr 0 1 +23-Apr 0 1 +24-Apr 0 1 +25-Apr 0 0 +26-Apr 0 1 +27-Apr 0 1 +28-Apr 0 0 +29-Apr 0 1 +30-Apr 0 2 +1-May 0 0 +2-May 0 1 +3-May 0 0 +4-May 0 1 +5-May 0 0 +6-May 0 1 +7-May 0 0 +8-May 0 0 +9-May 0 0 +10-May 0 0 +11-May 0 1 +12-May 0 3 +13-May 0 2 +14-May 0 5 +15-May 0 3 +16-May 0 2 +17-May 0 4 +18-May 0 5 +19-May 0 5 +20-May 0 6 +21-May 0 2 +22-May 0 4 +23-May 0 2 +24-May 0 3 +25-May 0 3 +26-May 0 3 +27-May 0 2 +28-May 0 1 +29-May 0 4 +30-May 0 2 +31-May 0 5 +1-Jun 0 7 +2-Jun 0 4 +3-Jun 0 2 +4-Jun 0 3 +5-Jun 0 1 +6-Jun 0 2 +7-Jun 0 1 +8-Jun 0 2 +9-Jun 0 3 +10-Jun 0 2 +11-Jun 0 1 +12-Jun 0 0 +13-Jun 0 2 +14-Jun 0 1 +15-Jun 0 3 +16-Jun 0 2 +17-Jun 0 3 +18-Jun 0 0 +19-Jun 0 1 +20-Jun 0 0 +21-Jun 0 0 +22-Jun 0 1 +23-Jun 0 0 +24-Jun 0 2 +25-Jun 0 4 +26-Jun 0 0 +27-Jun 0 0 +28-Jun 0 2 +29-Jun 0 2 +30-Jun 0 1 +1-Jul 0 2 +2-Jul 0 0 +3-Jul 0 0 +4-Jul 0 1 +5-Jul 0 1 +6-Jul 0 2 +7-Jul 0 1 +8-Jul 0 2 +9-Jul 0 1 +10-Jul 0 0 +11-Jul 0 1 +12-Jul 0 2 +13-Jul 0 0 +14-Jul 0 0 +15-Jul 0 0 +16-Jul 0 0 +17-Jul 0 2 +18-Jul 0 0 +19-Jul 0 2 +20-Jul 0 0 +21-Jul 0 1 +22-Jul 0 2 +23-Jul 0 1 +24-Jul 0 0 +25-Jul 0 1 +26-Jul 0 1 +27-Jul 0 0 +28-Jul 0 1 +29-Jul 0 1 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 0 0 +2-Aug 0 0 +3-Aug 0 1 +4-Aug 0 1 +5-Aug 1 1 +6-Aug 1 0 +7-Aug 2 0 +8-Aug 1 0 +9-Aug 1 1 +10-Aug 2 0 +11-Aug 1 0 +12-Aug 0 0 +13-Aug 1 0 +14-Aug 1 0 +15-Aug 0 0 +16-Aug 1 2 +17-Aug 1 1 +18-Aug 0 0 +19-Aug 0 0 +20-Aug 2 0 +21-Aug 0 1 +22-Aug 1 0 +23-Aug 1 1 +24-Aug 0 0 +25-Aug 1 0 +26-Aug 1 0 +27-Aug 0 1 +28-Aug 0 0 +29-Aug 1 1 +30-Aug 0 0 +31-Aug 1 2 +1-Sep 0 0 +2-Sep 0 1 +3-Sep 1 0 +4-Sep 3 2 +5-Sep 2 0 +6-Sep 3 3 +7-Sep 2 0 +8-Sep 0 2 +9-Sep 2 1 +10-Sep 4 0 +11-Sep 0 0 +12-Sep 2 2 +13-Sep 2 0 +14-Sep 2 1 +15-Sep 0 2 +16-Sep 1 0 +17-Sep 0 0 +18-Sep 0 3 +19-Sep 0 2 +20-Sep 2 2 +21-Sep 1 2 +22-Sep 2 2 +23-Sep 0 2 +24-Sep 1 2 +25-Sep 2 1 +26-Sep 1 2 +27-Sep 1 2 +28-Sep 2 2 +29-Sep 2 4 +30-Sep 4 2 +1-Oct 1 2 +2-Oct 3 1 +3-Oct 1 3 +4-Oct 3 2 +5-Oct 4 3 +6-Oct 1 1 +7-Oct 2 1 +8-Oct 3 2 +9-Oct 3 3 +10-Oct 1 1 +11-Oct 1 2 +12-Oct 1 2 +13-Oct 2 2 +14-Oct 1 1 +15-Oct 2 2 +16-Oct 2 1 +17-Oct 2 1 +18-Oct 3 1 +19-Oct 3 1 +20-Oct 4 1 +21-Oct 4 2 +22-Oct 2 1 +23-Oct 4 0 +24-Oct 1 2 +25-Oct 2 2 +26-Oct 3 3 +27-Oct 0 2 +28-Oct 1 1 +29-Oct 3 1 +30-Oct 4 0 +31-Oct 3 0 +1-Nov 0 1 +2-Nov 0 1 +3-Nov 1 4 +4-Nov 1 6 +5-Nov 1 2 +6-Nov 3 2 +7-Nov 0 1 +8-Nov 2 1 +9-Nov 4 4 +10-Nov 5 3 +11-Nov 2 7 +12-Nov 2 3 +13-Nov 2 0 +14-Nov 5 3 +15-Nov 3 1 +16-Nov 2 5 +17-Nov 2 3 +18-Nov 3 2 +19-Nov 1 3 +20-Nov 3 4 +21-Nov 4 2 +22-Nov 5 4 +23-Nov 2 3 +24-Nov 2 2 +25-Nov 2 6 +26-Nov 2 4 +27-Nov 3 3 +28-Nov 5 4 +29-Nov 1 3 +30-Nov 2 3 +1-Dec 4 4 +2-Dec 1 3 +3-Dec 2 4 +4-Dec 3 4 +5-Dec 1 4 +6-Dec 4 5 +7-Dec 2 3 +8-Dec 1 0 +9-Dec 1 0 +10-Dec 4 0 +11-Dec 4 0 +12-Dec 3 0 +13-Dec 3 3 +14-Dec 1 3 +15-Dec 5 0 +16-Dec 2 1 +17-Dec 5 0 +18-Dec 4 1 +19-Dec 7 1 +20-Dec 2 0 +21-Dec 6 2 +22-Dec 6 3 +23-Dec 3 0 +24-Dec 2 2 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 4 0 +28-Dec 5 2 +29-Dec 4 0 +30-Dec 6 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2017_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2017_salvini_trends.tsv new file mode 100644 index 0000000..b168415 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2017_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-18 Salvini-17 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 0 +5-Jan 0 0 +6-Jan 0 0 +7-Jan 0 0 +8-Jan 0 0 +9-Jan 0 1 +10-Jan 0 0 +11-Jan 0 3 +12-Jan 0 1 +13-Jan 0 1 +14-Jan 0 0 +15-Jan 0 0 +16-Jan 0 2 +17-Jan 0 0 +18-Jan 0 1 +19-Jan 0 2 +20-Jan 0 2 +21-Jan 0 2 +22-Jan 0 2 +23-Jan 0 3 +24-Jan 0 2 +25-Jan 0 1 +26-Jan 0 3 +27-Jan 0 0 +28-Jan 0 1 +29-Jan 0 2 +30-Jan 0 2 +31-Jan 0 3 +1-Feb 0 1 +2-Feb 0 1 +3-Feb 0 0 +4-Feb 0 1 +5-Feb 0 0 +6-Feb 0 0 +7-Feb 0 2 +8-Feb 0 2 +9-Feb 0 1 +10-Feb 0 1 +11-Feb 0 0 +12-Feb 0 1 +13-Feb 0 0 +14-Feb 0 1 +15-Feb 0 2 +16-Feb 0 0 +17-Feb 0 1 +18-Feb 0 1 +19-Feb 0 1 +20-Feb 0 2 +21-Feb 0 1 +22-Feb 0 2 +23-Feb 0 2 +24-Feb 0 1 +25-Feb 0 0 +26-Feb 0 3 +27-Feb 0 2 +28-Feb 0 0 +1-Mar 0 0 +2-Mar 0 0 +3-Mar 0 1 +4-Mar 0 4 +5-Mar 0 2 +6-Mar 0 0 +7-Mar 0 3 +8-Mar 0 0 +9-Mar 0 2 +10-Mar 0 2 +11-Mar 0 1 +12-Mar 0 0 +13-Mar 0 1 +14-Mar 0 2 +15-Mar 0 2 +16-Mar 0 0 +17-Mar 0 1 +18-Mar 0 0 +19-Mar 0 1 +20-Mar 0 4 +21-Mar 0 1 +22-Mar 0 1 +23-Mar 0 2 +24-Mar 0 1 +25-Mar 0 2 +26-Mar 0 0 +27-Mar 0 1 +28-Mar 0 2 +29-Mar 0 3 +30-Mar 0 3 +31-Mar 0 2 +1-Apr 0 2 +2-Apr 0 1 +3-Apr 0 1 +4-Apr 0 2 +5-Apr 0 2 +6-Apr 0 4 +7-Apr 0 1 +8-Apr 0 1 +9-Apr 0 0 +10-Apr 0 3 +11-Apr 0 1 +12-Apr 0 1 +13-Apr 0 1 +14-Apr 0 0 +15-Apr 0 0 +16-Apr 0 0 +17-Apr 0 1 +18-Apr 0 2 +19-Apr 0 0 +20-Apr 0 2 +21-Apr 0 1 +22-Apr 0 0 +23-Apr 0 0 +24-Apr 0 1 +25-Apr 0 2 +26-Apr 0 1 +27-Apr 0 3 +28-Apr 0 1 +29-Apr 0 0 +30-Apr 0 1 +1-May 0 2 +2-May 0 3 +3-May 0 3 +4-May 0 3 +5-May 0 1 +6-May 0 2 +7-May 0 1 +8-May 0 0 +9-May 0 0 +10-May 0 2 +11-May 0 4 +12-May 0 3 +13-May 0 0 +14-May 0 3 +15-May 0 2 +16-May 0 0 +17-May 0 4 +18-May 0 1 +19-May 0 1 +20-May 0 3 +21-May 0 1 +22-May 0 2 +23-May 0 1 +24-May 0 3 +25-May 0 5 +26-May 0 3 +27-May 0 3 +28-May 0 0 +29-May 0 3 +30-May 0 0 +31-May 0 3 +1-Jun 0 4 +2-Jun 0 1 +3-Jun 0 1 +4-Jun 0 0 +5-Jun 0 2 +6-Jun 0 4 +7-Jun 0 2 +8-Jun 0 3 +9-Jun 0 5 +10-Jun 0 1 +11-Jun 0 0 +12-Jun 0 0 +13-Jun 0 4 +14-Jun 0 4 +15-Jun 0 3 +16-Jun 0 3 +17-Jun 0 1 +18-Jun 0 1 +19-Jun 0 1 +20-Jun 0 2 +21-Jun 0 1 +22-Jun 0 0 +23-Jun 0 5 +24-Jun 0 1 +25-Jun 0 0 +26-Jun 0 4 +27-Jun 0 0 +28-Jun 0 3 +29-Jun 0 1 +30-Jun 0 0 +1-Jul 0 0 +2-Jul 0 1 +3-Jul 0 1 +4-Jul 0 1 +5-Jul 0 2 +6-Jul 0 0 +7-Jul 0 1 +8-Jul 0 0 +9-Jul 0 3 +10-Jul 0 0 +11-Jul 0 3 +12-Jul 0 1 +13-Jul 0 1 +14-Jul 0 0 +15-Jul 0 1 +16-Jul 0 0 +17-Jul 0 0 +18-Jul 0 1 +19-Jul 0 2 +20-Jul 0 3 +21-Jul 0 2 +22-Jul 0 0 +23-Jul 0 2 +24-Jul 0 2 +25-Jul 0 0 +26-Jul 0 1 +27-Jul 0 0 +28-Jul 0 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 1 +1-Aug 0 0 +2-Aug 0 2 +3-Aug 0 3 +4-Aug 0 0 +5-Aug 1 0 +6-Aug 1 1 +7-Aug 2 2 +8-Aug 1 2 +9-Aug 1 1 +10-Aug 2 1 +11-Aug 1 2 +12-Aug 0 3 +13-Aug 1 3 +14-Aug 1 1 +15-Aug 0 3 +16-Aug 1 0 +17-Aug 1 0 +18-Aug 0 0 +19-Aug 0 1 +20-Aug 2 0 +21-Aug 0 0 +22-Aug 1 1 +23-Aug 1 1 +24-Aug 0 2 +25-Aug 1 0 +26-Aug 1 1 +27-Aug 0 0 +28-Aug 0 1 +29-Aug 1 0 +30-Aug 0 1 +31-Aug 1 0 +1-Sep 0 0 +2-Sep 0 1 +3-Sep 1 1 +4-Sep 3 0 +5-Sep 2 1 +6-Sep 3 1 +7-Sep 2 1 +8-Sep 0 0 +9-Sep 2 3 +10-Sep 4 1 +11-Sep 0 2 +12-Sep 2 1 +13-Sep 2 4 +14-Sep 2 2 +15-Sep 0 4 +16-Sep 1 2 +17-Sep 0 4 +18-Sep 0 1 +19-Sep 0 5 +20-Sep 2 2 +21-Sep 1 1 +22-Sep 2 1 +23-Sep 0 0 +24-Sep 1 1 +25-Sep 2 1 +26-Sep 1 0 +27-Sep 1 3 +28-Sep 2 2 +29-Sep 2 3 +30-Sep 4 0 +1-Oct 1 2 +2-Oct 3 2 +3-Oct 1 2 +4-Oct 3 3 +5-Oct 4 2 +6-Oct 1 3 +7-Oct 2 0 +8-Oct 3 1 +9-Oct 3 1 +10-Oct 1 1 +11-Oct 1 1 +12-Oct 1 1 +13-Oct 2 1 +14-Oct 1 3 +15-Oct 2 0 +16-Oct 2 0 +17-Oct 2 4 +18-Oct 3 1 +19-Oct 3 1 +20-Oct 4 1 +21-Oct 4 2 +22-Oct 2 2 +23-Oct 4 1 +24-Oct 1 1 +25-Oct 2 2 +26-Oct 3 1 +27-Oct 0 3 +28-Oct 1 3 +29-Oct 3 2 +30-Oct 4 5 +31-Oct 3 2 +1-Nov 0 4 +2-Nov 0 3 +3-Nov 1 1 +4-Nov 1 2 +5-Nov 1 0 +6-Nov 3 0 +7-Nov 0 2 +8-Nov 2 5 +9-Nov 4 4 +10-Nov 5 4 +11-Nov 2 5 +12-Nov 2 3 +13-Nov 2 1 +14-Nov 5 4 +15-Nov 3 4 +16-Nov 2 3 +17-Nov 2 5 +18-Nov 3 5 +19-Nov 1 6 +20-Nov 3 4 +21-Nov 4 3 +22-Nov 5 4 +23-Nov 2 6 +24-Nov 2 4 +25-Nov 2 4 +26-Nov 2 4 +27-Nov 3 1 +28-Nov 5 2 +29-Nov 1 1 +30-Nov 2 4 +1-Dec 4 1 +2-Dec 1 1 +3-Dec 2 0 +4-Dec 3 0 +5-Dec 1 4 +6-Dec 4 3 +7-Dec 2 2 +8-Dec 1 2 +9-Dec 1 3 +10-Dec 4 6 +11-Dec 4 5 +12-Dec 3 3 +13-Dec 3 4 +14-Dec 1 2 +15-Dec 5 4 +16-Dec 2 3 +17-Dec 5 2 +18-Dec 4 4 +19-Dec 7 4 +20-Dec 2 6 +21-Dec 6 3 +22-Dec 6 1 +23-Dec 3 1 +24-Dec 2 1 +25-Dec 0 1 +26-Dec 0 0 +27-Dec 4 0 +28-Dec 5 2 +29-Dec 4 1 +30-Dec 6 0 +31-Dec 4 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2018_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2018_salvini_trends.tsv new file mode 100644 index 0000000..5dc2189 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2018_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-18 Salvini-18 +1-Jan 0 0 +2-Jan 0 0 +3-Jan 0 1 +4-Jan 0 1 +5-Jan 0 0 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 0 3 +10-Jan 0 3 +11-Jan 0 2 +12-Jan 0 2 +13-Jan 0 1 +14-Jan 0 1 +15-Jan 0 1 +16-Jan 0 3 +17-Jan 0 2 +18-Jan 0 3 +19-Jan 0 3 +20-Jan 0 2 +21-Jan 0 0 +22-Jan 0 0 +23-Jan 0 1 +24-Jan 0 3 +25-Jan 0 4 +26-Jan 0 1 +27-Jan 0 2 +28-Jan 0 2 +29-Jan 0 2 +30-Jan 0 4 +31-Jan 0 5 +1-Feb 0 4 +2-Feb 0 2 +3-Feb 0 3 +4-Feb 0 3 +5-Feb 0 3 +6-Feb 0 3 +7-Feb 0 4 +8-Feb 0 3 +9-Feb 0 2 +10-Feb 0 2 +11-Feb 0 2 +12-Feb 0 2 +13-Feb 0 2 +14-Feb 0 4 +15-Feb 0 3 +16-Feb 0 5 +17-Feb 0 3 +18-Feb 0 3 +19-Feb 0 2 +20-Feb 0 7 +21-Feb 0 5 +22-Feb 0 0 +23-Feb 0 6 +24-Feb 0 5 +25-Feb 0 1 +26-Feb 0 4 +27-Feb 0 5 +28-Feb 0 4 +1-Mar 0 4 +2-Mar 0 8 +3-Mar 0 6 +4-Mar 0 6 +5-Mar 0 1 +6-Mar 0 0 +7-Mar 0 0 +8-Mar 0 1 +9-Mar 0 2 +10-Mar 0 0 +11-Mar 0 1 +12-Mar 0 0 +13-Mar 0 2 +14-Mar 0 1 +15-Mar 0 3 +16-Mar 0 2 +17-Mar 0 1 +18-Mar 0 2 +19-Mar 0 2 +20-Mar 0 2 +21-Mar 0 2 +22-Mar 0 2 +23-Mar 0 0 +24-Mar 0 0 +25-Mar 0 0 +26-Mar 0 0 +27-Mar 0 0 +28-Mar 0 1 +29-Mar 0 1 +30-Mar 0 1 +31-Mar 0 0 +1-Apr 0 0 +2-Apr 0 0 +3-Apr 0 0 +4-Apr 0 3 +5-Apr 0 1 +6-Apr 0 0 +7-Apr 0 0 +8-Apr 0 1 +9-Apr 0 3 +10-Apr 0 0 +11-Apr 0 1 +12-Apr 0 1 +13-Apr 0 2 +14-Apr 0 1 +15-Apr 0 1 +16-Apr 0 3 +17-Apr 0 1 +18-Apr 0 2 +19-Apr 0 3 +20-Apr 0 1 +21-Apr 0 1 +22-Apr 0 0 +23-Apr 0 3 +24-Apr 0 1 +25-Apr 0 0 +26-Apr 0 1 +27-Apr 0 4 +28-Apr 0 0 +29-Apr 0 0 +30-Apr 0 0 +1-May 0 0 +2-May 0 2 +3-May 0 0 +4-May 0 1 +5-May 0 0 +6-May 0 1 +7-May 0 4 +8-May 0 1 +9-May 0 0 +10-May 0 0 +11-May 0 0 +12-May 0 0 +13-May 0 0 +14-May 0 0 +15-May 0 1 +16-May 0 1 +17-May 0 0 +18-May 0 0 +19-May 0 1 +20-May 0 2 +21-May 0 1 +22-May 0 1 +23-May 0 2 +24-May 0 3 +25-May 0 0 +26-May 0 1 +27-May 0 3 +28-May 0 3 +29-May 0 4 +30-May 0 5 +31-May 0 1 +1-Jun 0 3 +2-Jun 0 1 +3-Jun 0 1 +4-Jun 0 0 +5-Jun 0 4 +6-Jun 0 3 +7-Jun 0 3 +8-Jun 0 0 +9-Jun 0 1 +10-Jun 0 1 +11-Jun 0 0 +12-Jun 0 1 +13-Jun 0 1 +14-Jun 0 1 +15-Jun 0 3 +16-Jun 0 0 +17-Jun 0 4 +18-Jun 0 3 +19-Jun 0 2 +20-Jun 0 2 +21-Jun 0 5 +22-Jun 0 2 +23-Jun 0 1 +24-Jun 0 1 +25-Jun 0 3 +26-Jun 0 3 +27-Jun 0 0 +28-Jun 0 1 +29-Jun 0 2 +30-Jun 0 0 +1-Jul 0 3 +2-Jul 0 2 +3-Jul 0 1 +4-Jul 0 2 +5-Jul 0 3 +6-Jul 0 1 +7-Jul 0 1 +8-Jul 0 1 +9-Jul 0 1 +10-Jul 0 4 +11-Jul 0 1 +12-Jul 0 5 +13-Jul 0 1 +14-Jul 0 2 +15-Jul 0 0 +16-Jul 0 2 +17-Jul 0 2 +18-Jul 0 1 +19-Jul 0 1 +20-Jul 0 0 +21-Jul 0 1 +22-Jul 0 0 +23-Jul 0 0 +24-Jul 0 1 +25-Jul 0 2 +26-Jul 0 2 +27-Jul 0 2 +28-Jul 0 3 +29-Jul 0 0 +30-Jul 0 1 +31-Jul 0 1 +1-Aug 0 1 +2-Aug 0 1 +3-Aug 0 2 +4-Aug 0 0 +5-Aug 1 2 +6-Aug 1 2 +7-Aug 2 1 +8-Aug 1 1 +9-Aug 1 1 +10-Aug 2 0 +11-Aug 1 1 +12-Aug 0 0 +13-Aug 1 2 +14-Aug 1 3 +15-Aug 0 4 +16-Aug 1 2 +17-Aug 1 0 +18-Aug 0 2 +19-Aug 0 0 +20-Aug 2 1 +21-Aug 0 0 +22-Aug 1 0 +23-Aug 1 1 +24-Aug 0 1 +25-Aug 1 1 +26-Aug 1 0 +27-Aug 0 0 +28-Aug 0 2 +29-Aug 1 0 +30-Aug 0 0 +31-Aug 1 2 +1-Sep 0 1 +2-Sep 0 4 +3-Sep 1 1 +4-Sep 3 1 +5-Sep 2 3 +6-Sep 3 2 +7-Sep 2 2 +8-Sep 0 1 +9-Sep 2 3 +10-Sep 4 1 +11-Sep 0 2 +12-Sep 2 1 +13-Sep 2 1 +14-Sep 2 3 +15-Sep 0 3 +16-Sep 1 2 +17-Sep 0 0 +18-Sep 0 1 +19-Sep 0 6 +20-Sep 2 3 +21-Sep 1 1 +22-Sep 2 3 +23-Sep 0 1 +24-Sep 1 2 +25-Sep 2 1 +26-Sep 1 1 +27-Sep 1 2 +28-Sep 2 2 +29-Sep 2 3 +30-Sep 4 1 +1-Oct 1 2 +2-Oct 3 1 +3-Oct 1 3 +4-Oct 3 3 +5-Oct 4 3 +6-Oct 1 1 +7-Oct 2 1 +8-Oct 3 0 +9-Oct 3 4 +10-Oct 1 3 +11-Oct 1 2 +12-Oct 1 0 +13-Oct 2 4 +14-Oct 1 5 +15-Oct 2 2 +16-Oct 2 5 +17-Oct 2 4 +18-Oct 3 2 +19-Oct 3 5 +20-Oct 4 1 +21-Oct 4 1 +22-Oct 2 1 +23-Oct 4 2 +24-Oct 1 2 +25-Oct 2 4 +26-Oct 3 5 +27-Oct 0 2 +28-Oct 1 0 +29-Oct 3 1 +30-Oct 4 1 +31-Oct 3 1 +1-Nov 0 2 +2-Nov 0 1 +3-Nov 1 2 +4-Nov 1 2 +5-Nov 1 1 +6-Nov 3 2 +7-Nov 0 3 +8-Nov 2 1 +9-Nov 4 1 +10-Nov 5 0 +11-Nov 2 1 +12-Nov 2 0 +13-Nov 2 0 +14-Nov 5 0 +15-Nov 3 2 +16-Nov 2 0 +17-Nov 2 2 +18-Nov 3 0 +19-Nov 1 1 +20-Nov 3 1 +21-Nov 4 1 +22-Nov 5 2 +23-Nov 2 1 +24-Nov 2 0 +25-Nov 2 0 +26-Nov 2 1 +27-Nov 3 2 +28-Nov 5 2 +29-Nov 1 1 +30-Nov 2 0 +1-Dec 4 0 +2-Dec 1 0 +3-Dec 2 3 +4-Dec 3 0 +5-Dec 1 1 +6-Dec 4 3 +7-Dec 2 1 +8-Dec 1 1 +9-Dec 1 2 +10-Dec 4 2 +11-Dec 4 0 +12-Dec 3 2 +13-Dec 3 0 +14-Dec 1 0 +15-Dec 5 0 +16-Dec 2 2 +17-Dec 5 1 +18-Dec 4 4 +19-Dec 7 0 +20-Dec 2 3 +21-Dec 6 0 +22-Dec 6 0 +23-Dec 3 0 +24-Dec 2 1 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 4 1 +28-Dec 5 2 +29-Dec 4 0 +30-Dec 6 0 +31-Dec 4 2 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2019_renzi_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2019_renzi_trends.tsv new file mode 100644 index 0000000..fd41906 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2019_renzi_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-18 Renzi-19 +1-Jan 0 0 +2-Jan 0 5 +3-Jan 0 4 +4-Jan 0 4 +5-Jan 0 5 +6-Jan 0 1 +7-Jan 0 2 +8-Jan 0 3 +9-Jan 0 2 +10-Jan 0 4 +11-Jan 0 4 +12-Jan 0 4 +13-Jan 0 3 +14-Jan 0 3 +15-Jan 0 1 +16-Jan 0 3 +17-Jan 0 2 +18-Jan 0 3 +19-Jan 0 1 +20-Jan 0 3 +21-Jan 0 4 +22-Jan 0 2 +23-Jan 0 3 +24-Jan 0 4 +25-Jan 0 1 +26-Jan 0 0 +27-Jan 0 1 +28-Jan 0 1 +29-Jan 0 1 +30-Jan 0 1 +31-Jan 0 2 +1-Feb 0 2 +2-Feb 0 1 +3-Feb 0 1 +4-Feb 0 1 +5-Feb 0 2 +6-Feb 0 2 +7-Feb 0 1 +8-Feb 0 0 +9-Feb 0 0 +10-Feb 0 0 +11-Feb 0 0 +12-Feb 0 1 +13-Feb 0 1 +14-Feb 0 4 +15-Feb 0 2 +16-Feb 0 2 +17-Feb 0 3 +18-Feb 0 2 +19-Feb 0 2 +20-Feb 0 2 +21-Feb 0 2 +22-Feb 0 1 +23-Feb 0 2 +24-Feb 0 3 +25-Feb 0 1 +26-Feb 0 1 +27-Feb 0 3 +28-Feb 0 2 +1-Mar 0 6 +2-Mar 0 2 +3-Mar 0 1 +4-Mar 0 0 +5-Mar 0 0 +6-Mar 0 3 +7-Mar 0 3 +8-Mar 0 1 +9-Mar 0 0 +10-Mar 0 2 +11-Mar 0 1 +12-Mar 0 0 +13-Mar 0 2 +14-Mar 0 2 +15-Mar 0 2 +16-Mar 0 0 +17-Mar 0 0 +18-Mar 0 0 +19-Mar 0 0 +20-Mar 0 2 +21-Mar 0 0 +22-Mar 0 1 +23-Mar 0 4 +24-Mar 0 0 +25-Mar 0 1 +26-Mar 0 0 +27-Mar 0 0 +28-Mar 0 1 +29-Mar 0 1 +30-Mar 0 0 +31-Mar 0 1 +1-Apr 0 1 +2-Apr 0 1 +3-Apr 0 0 +4-Apr 0 2 +5-Apr 0 1 +6-Apr 0 1 +7-Apr 0 0 +8-Apr 0 0 +9-Apr 0 1 +10-Apr 0 0 +11-Apr 0 0 +12-Apr 0 0 +13-Apr 0 0 +14-Apr 0 2 +15-Apr 0 1 +16-Apr 0 0 +17-Apr 0 1 +18-Apr 0 0 +19-Apr 0 0 +20-Apr 0 0 +21-Apr 0 2 +22-Apr 0 0 +23-Apr 0 1 +24-Apr 0 1 +25-Apr 0 1 +26-Apr 0 1 +27-Apr 0 0 +28-Apr 0 0 +29-Apr 0 0 +30-Apr 0 1 +1-May 0 2 +2-May 0 0 +3-May 0 1 +4-May 0 1 +5-May 0 0 +6-May 0 1 +7-May 0 2 +8-May 0 2 +9-May 0 2 +10-May 0 0 +11-May 0 1 +12-May 0 1 +13-May 0 1 +14-May 0 1 +15-May 0 3 +16-May 0 0 +17-May 0 2 +18-May 0 0 +19-May 0 0 +20-May 0 2 +21-May 0 2 +22-May 0 1 +23-May 0 1 +24-May 0 1 +25-May 0 1 +26-May 0 2 +27-May 0 1 +28-May 0 2 +29-May 0 0 +30-May 0 0 +31-May 0 1 +1-Jun 0 1 +2-Jun 0 2 +3-Jun 0 2 +4-Jun 0 1 +5-Jun 0 0 +6-Jun 0 0 +7-Jun 0 0 +8-Jun 0 1 +9-Jun 0 2 +10-Jun 0 2 +11-Jun 0 1 +12-Jun 0 0 +13-Jun 0 0 +14-Jun 0 0 +15-Jun 0 1 +16-Jun 0 2 +17-Jun 0 1 +18-Jun 0 1 +19-Jun 0 2 +20-Jun 0 1 +21-Jun 0 2 +22-Jun 0 1 +23-Jun 0 3 +24-Jun 0 3 +25-Jun 0 3 +26-Jun 0 2 +27-Jun 0 1 +28-Jun 0 3 +29-Jun 0 1 +30-Jun 0 0 +1-Jul 0 1 +2-Jul 0 4 +3-Jul 0 3 +4-Jul 0 2 +5-Jul 0 2 +6-Jul 0 0 +7-Jul 0 4 +8-Jul 0 1 +9-Jul 0 2 +10-Jul 0 0 +11-Jul 0 4 +12-Jul 0 3 +13-Jul 0 3 +14-Jul 0 4 +15-Jul 0 2 +16-Jul 0 4 +17-Jul 0 2 +18-Jul 0 3 +19-Jul 0 4 +20-Jul 0 4 +21-Jul 0 4 +22-Jul 0 1 +23-Jul 0 4 +24-Jul 0 5 +25-Jul 0 2 +26-Jul 0 4 +27-Jul 0 4 +28-Jul 0 2 +29-Jul 0 3 +30-Jul 0 2 +31-Jul 0 2 +1-Aug 0 3 +2-Aug 0 6 +3-Aug 0 3 +4-Aug 0 3 +5-Aug 1 3 +6-Aug 1 3 +7-Aug 2 7 +8-Aug 1 8 +9-Aug 1 2 +10-Aug 2 1 +11-Aug 1 5 +12-Aug 0 4 +13-Aug 1 7 +14-Aug 1 2 +15-Aug 0 5 +16-Aug 1 2 +17-Aug 1 1 +18-Aug 0 6 +19-Aug 0 3 +20-Aug 2 3 +21-Aug 0 3 +22-Aug 1 5 +23-Aug 1 2 +24-Aug 0 3 +25-Aug 1 2 +26-Aug 1 2 +27-Aug 0 0 +28-Aug 0 1 +29-Aug 1 2 +30-Aug 0 2 +31-Aug 1 0 +1-Sep 0 2 +2-Sep 0 1 +3-Sep 1 0 +4-Sep 3 3 +5-Sep 2 1 +6-Sep 3 2 +7-Sep 2 3 +8-Sep 0 3 +9-Sep 2 2 +10-Sep 4 2 +11-Sep 0 2 +12-Sep 2 3 +13-Sep 2 2 +14-Sep 2 1 +15-Sep 0 1 +16-Sep 1 0 +17-Sep 0 4 +18-Sep 0 3 +19-Sep 0 4 +20-Sep 2 1 +21-Sep 1 4 +22-Sep 2 4 +23-Sep 0 6 +24-Sep 1 1 +25-Sep 2 2 +26-Sep 1 4 +27-Sep 1 2 +28-Sep 2 4 +29-Sep 2 1 +30-Sep 4 4 +1-Oct 1 1 +2-Oct 3 2 +3-Oct 1 2 +4-Oct 3 5 +5-Oct 4 1 +6-Oct 1 3 +7-Oct 2 1 +8-Oct 3 1 +9-Oct 3 3 +10-Oct 1 0 +11-Oct 1 1 +12-Oct 1 2 +13-Oct 2 1 +14-Oct 1 2 +15-Oct 2 5 +16-Oct 2 8 +17-Oct 2 4 +18-Oct 3 8 +19-Oct 3 12 +20-Oct 4 10 +21-Oct 4 2 +22-Oct 2 6 +23-Oct 4 2 +24-Oct 1 2 +25-Oct 2 1 +26-Oct 3 5 +27-Oct 0 2 +28-Oct 1 3 +29-Oct 3 2 +30-Oct 4 2 +31-Oct 3 1 +1-Nov 0 3 +2-Nov 0 4 +3-Nov 1 5 +4-Nov 1 2 +5-Nov 1 3 +6-Nov 3 3 +7-Nov 0 1 +8-Nov 2 1 +9-Nov 4 3 +10-Nov 5 0 +11-Nov 2 1 +12-Nov 2 1 +13-Nov 2 4 +14-Nov 5 0 +15-Nov 3 3 +16-Nov 2 6 +17-Nov 2 2 +18-Nov 3 0 +19-Nov 1 3 +20-Nov 3 1 +21-Nov 4 3 +22-Nov 5 0 +23-Nov 2 2 +24-Nov 2 2 +25-Nov 2 0 +26-Nov 2 0 +27-Nov 3 0 +28-Nov 5 0 +29-Nov 1 0 +30-Nov 2 0 +1-Dec 4 0 +2-Dec 1 0 +3-Dec 2 0 +4-Dec 3 0 +5-Dec 1 0 +6-Dec 4 0 +7-Dec 2 0 +8-Dec 1 0 +9-Dec 1 0 +10-Dec 4 0 +11-Dec 4 0 +12-Dec 3 0 +13-Dec 3 0 +14-Dec 1 0 +15-Dec 5 0 +16-Dec 2 0 +17-Dec 5 0 +18-Dec 4 0 +19-Dec 7 0 +20-Dec 2 0 +21-Dec 6 0 +22-Dec 6 0 +23-Dec 3 0 +24-Dec 2 0 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 4 0 +28-Dec 5 0 +29-Dec 4 0 +30-Dec 6 0 +31-Dec 4 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2019_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2019_salvini_trends.tsv new file mode 100644 index 0000000..1e38bf1 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2018_renzi_2019_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-18 Salvini-19 +1-Jan 0 0 +2-Jan 0 1 +3-Jan 0 2 +4-Jan 0 4 +5-Jan 0 3 +6-Jan 0 1 +7-Jan 0 0 +8-Jan 0 1 +9-Jan 0 1 +10-Jan 0 1 +11-Jan 0 1 +12-Jan 0 0 +13-Jan 0 1 +14-Jan 0 3 +15-Jan 0 0 +16-Jan 0 5 +17-Jan 0 1 +18-Jan 0 3 +19-Jan 0 1 +20-Jan 0 2 +21-Jan 0 0 +22-Jan 0 1 +23-Jan 0 0 +24-Jan 0 1 +25-Jan 0 2 +26-Jan 0 0 +27-Jan 0 1 +28-Jan 0 1 +29-Jan 0 0 +30-Jan 0 1 +31-Jan 0 0 +1-Feb 0 3 +2-Feb 0 1 +3-Feb 0 3 +4-Feb 0 1 +5-Feb 0 1 +6-Feb 0 2 +7-Feb 0 2 +8-Feb 0 0 +9-Feb 0 2 +10-Feb 0 3 +11-Feb 0 1 +12-Feb 0 0 +13-Feb 0 1 +14-Feb 0 0 +15-Feb 0 0 +16-Feb 0 0 +17-Feb 0 2 +18-Feb 0 3 +19-Feb 0 2 +20-Feb 0 4 +21-Feb 0 4 +22-Feb 0 2 +23-Feb 0 1 +24-Feb 0 1 +25-Feb 0 2 +26-Feb 0 0 +27-Feb 0 2 +28-Feb 0 1 +1-Mar 0 1 +2-Mar 0 0 +3-Mar 0 0 +4-Mar 0 1 +5-Mar 0 1 +6-Mar 0 0 +7-Mar 0 1 +8-Mar 0 3 +9-Mar 0 0 +10-Mar 0 1 +11-Mar 0 1 +12-Mar 0 2 +13-Mar 0 1 +14-Mar 0 1 +15-Mar 0 3 +16-Mar 0 3 +17-Mar 0 2 +18-Mar 0 3 +19-Mar 0 1 +20-Mar 0 1 +21-Mar 0 3 +22-Mar 0 4 +23-Mar 0 1 +24-Mar 0 0 +25-Mar 0 1 +26-Mar 0 0 +27-Mar 0 1 +28-Mar 0 2 +29-Mar 0 2 +30-Mar 0 1 +31-Mar 0 0 +1-Apr 0 3 +2-Apr 0 1 +3-Apr 0 0 +4-Apr 0 1 +5-Apr 0 1 +6-Apr 0 4 +7-Apr 0 2 +8-Apr 0 6 +9-Apr 0 0 +10-Apr 0 3 +11-Apr 0 1 +12-Apr 0 1 +13-Apr 0 0 +14-Apr 0 0 +15-Apr 0 2 +16-Apr 0 0 +17-Apr 0 3 +18-Apr 0 1 +19-Apr 0 3 +20-Apr 0 0 +21-Apr 0 0 +22-Apr 0 0 +23-Apr 0 1 +24-Apr 0 1 +25-Apr 0 4 +26-Apr 0 2 +27-Apr 0 2 +28-Apr 0 0 +29-Apr 0 1 +30-Apr 0 1 +1-May 0 4 +2-May 0 3 +3-May 0 8 +4-May 0 3 +5-May 0 2 +6-May 0 3 +7-May 0 6 +8-May 0 2 +9-May 0 6 +10-May 0 3 +11-May 0 0 +12-May 0 5 +13-May 0 6 +14-May 0 4 +15-May 0 3 +16-May 0 4 +17-May 0 6 +18-May 0 6 +19-May 0 5 +20-May 0 5 +21-May 0 5 +22-May 0 5 +23-May 0 3 +24-May 0 6 +25-May 0 2 +26-May 0 0 +27-May 0 0 +28-May 0 2 +29-May 0 2 +30-May 0 2 +31-May 0 2 +1-Jun 0 3 +2-Jun 0 2 +3-Jun 0 3 +4-Jun 0 5 +5-Jun 0 4 +6-Jun 0 2 +7-Jun 0 4 +8-Jun 0 2 +9-Jun 0 0 +10-Jun 0 0 +11-Jun 0 1 +12-Jun 0 2 +13-Jun 0 0 +14-Jun 0 1 +15-Jun 0 0 +16-Jun 0 0 +17-Jun 0 5 +18-Jun 0 0 +19-Jun 0 1 +20-Jun 0 1 +21-Jun 0 2 +22-Jun 0 0 +23-Jun 0 0 +24-Jun 0 0 +25-Jun 0 0 +26-Jun 0 3 +27-Jun 0 2 +28-Jun 0 3 +29-Jun 0 3 +30-Jun 0 1 +1-Jul 0 1 +2-Jul 0 0 +3-Jul 0 1 +4-Jul 0 0 +5-Jul 0 1 +6-Jul 0 4 +7-Jul 0 0 +8-Jul 0 0 +9-Jul 0 2 +10-Jul 0 1 +11-Jul 0 1 +12-Jul 0 1 +13-Jul 0 3 +14-Jul 0 0 +15-Jul 0 2 +16-Jul 0 1 +17-Jul 0 2 +18-Jul 0 1 +19-Jul 0 2 +20-Jul 0 0 +21-Jul 0 1 +22-Jul 0 1 +23-Jul 0 0 +24-Jul 0 2 +25-Jul 0 3 +26-Jul 0 1 +27-Jul 0 0 +28-Jul 0 0 +29-Jul 0 0 +30-Jul 0 0 +31-Jul 0 0 +1-Aug 0 2 +2-Aug 0 0 +3-Aug 0 1 +4-Aug 0 1 +5-Aug 1 2 +6-Aug 1 3 +7-Aug 2 1 +8-Aug 1 1 +9-Aug 1 4 +10-Aug 2 3 +11-Aug 1 2 +12-Aug 0 1 +13-Aug 1 2 +14-Aug 1 3 +15-Aug 0 2 +16-Aug 1 0 +17-Aug 1 0 +18-Aug 0 2 +19-Aug 0 1 +20-Aug 2 2 +21-Aug 0 1 +22-Aug 1 1 +23-Aug 1 1 +24-Aug 0 0 +25-Aug 1 0 +26-Aug 1 1 +27-Aug 0 0 +28-Aug 0 3 +29-Aug 1 2 +30-Aug 0 1 +31-Aug 1 1 +1-Sep 0 3 +2-Sep 0 2 +3-Sep 1 1 +4-Sep 3 2 +5-Sep 2 1 +6-Sep 3 2 +7-Sep 2 1 +8-Sep 0 2 +9-Sep 2 5 +10-Sep 4 2 +11-Sep 0 2 +12-Sep 2 1 +13-Sep 2 2 +14-Sep 2 1 +15-Sep 0 5 +16-Sep 1 1 +17-Sep 0 2 +18-Sep 0 2 +19-Sep 0 2 +20-Sep 2 0 +21-Sep 1 3 +22-Sep 2 2 +23-Sep 0 3 +24-Sep 1 2 +25-Sep 2 1 +26-Sep 1 5 +27-Sep 1 3 +28-Sep 2 2 +29-Sep 2 3 +30-Sep 4 3 +1-Oct 1 5 +2-Oct 3 3 +3-Oct 1 5 +4-Oct 3 2 +5-Oct 4 1 +6-Oct 1 0 +7-Oct 2 3 +8-Oct 3 3 +9-Oct 3 1 +10-Oct 1 1 +11-Oct 1 1 +12-Oct 1 2 +13-Oct 2 2 +14-Oct 1 1 +15-Oct 2 0 +16-Oct 2 0 +17-Oct 2 1 +18-Oct 3 1 +19-Oct 3 1 +20-Oct 4 1 +21-Oct 4 5 +22-Oct 2 2 +23-Oct 4 5 +24-Oct 1 4 +25-Oct 2 4 +26-Oct 3 2 +27-Oct 0 0 +28-Oct 1 6 +29-Oct 3 3 +30-Oct 4 5 +31-Oct 3 3 +1-Nov 0 1 +2-Nov 0 2 +3-Nov 1 1 +4-Nov 1 16 +5-Nov 1 17 +6-Nov 3 21 +7-Nov 0 19 +8-Nov 2 16 +9-Nov 4 18 +10-Nov 5 24 +11-Nov 2 19 +12-Nov 2 16 +13-Nov 2 18 +14-Nov 5 35 +15-Nov 3 12 +16-Nov 2 9 +17-Nov 2 12 +18-Nov 3 19 +19-Nov 1 23 +20-Nov 3 18 +21-Nov 4 19 +22-Nov 5 20 +23-Nov 2 21 +24-Nov 2 22 +25-Nov 2 1 +26-Nov 2 0 +27-Nov 3 0 +28-Nov 5 0 +29-Nov 1 0 +30-Nov 2 0 +1-Dec 4 0 +2-Dec 1 0 +3-Dec 2 0 +4-Dec 3 0 +5-Dec 1 0 +6-Dec 4 0 +7-Dec 2 0 +8-Dec 1 0 +9-Dec 1 0 +10-Dec 4 0 +11-Dec 4 0 +12-Dec 3 0 +13-Dec 3 0 +14-Dec 1 0 +15-Dec 5 0 +16-Dec 2 0 +17-Dec 5 0 +18-Dec 4 0 +19-Dec 7 0 +20-Dec 2 0 +21-Dec 6 0 +22-Dec 6 0 +23-Dec 3 0 +24-Dec 2 0 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 4 0 +28-Dec 5 0 +29-Dec 4 0 +30-Dec 6 0 +31-Dec 4 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2018_salvini_2019_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2018_salvini_2019_salvini_trends.tsv new file mode 100644 index 0000000..16d3e1c --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2018_salvini_2019_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Salvini-18 Salvini-19 +1-Jan 0 0 +2-Jan 0 1 +3-Jan 1 2 +4-Jan 1 4 +5-Jan 0 3 +6-Jan 1 1 +7-Jan 0 0 +8-Jan 1 1 +9-Jan 3 1 +10-Jan 3 1 +11-Jan 2 1 +12-Jan 2 0 +13-Jan 1 1 +14-Jan 1 3 +15-Jan 1 0 +16-Jan 3 5 +17-Jan 2 1 +18-Jan 3 3 +19-Jan 3 1 +20-Jan 2 2 +21-Jan 0 0 +22-Jan 0 1 +23-Jan 1 0 +24-Jan 3 1 +25-Jan 4 2 +26-Jan 1 0 +27-Jan 2 1 +28-Jan 2 1 +29-Jan 2 0 +30-Jan 4 1 +31-Jan 5 0 +1-Feb 4 3 +2-Feb 2 1 +3-Feb 3 3 +4-Feb 3 1 +5-Feb 3 1 +6-Feb 3 2 +7-Feb 4 2 +8-Feb 3 0 +9-Feb 2 2 +10-Feb 2 3 +11-Feb 2 1 +12-Feb 2 0 +13-Feb 2 1 +14-Feb 4 0 +15-Feb 3 0 +16-Feb 5 0 +17-Feb 3 2 +18-Feb 3 3 +19-Feb 2 2 +20-Feb 7 4 +21-Feb 5 4 +22-Feb 0 2 +23-Feb 6 1 +24-Feb 5 1 +25-Feb 1 2 +26-Feb 4 0 +27-Feb 5 2 +28-Feb 4 1 +1-Mar 4 1 +2-Mar 8 0 +3-Mar 6 0 +4-Mar 6 1 +5-Mar 1 1 +6-Mar 0 0 +7-Mar 0 1 +8-Mar 1 3 +9-Mar 2 0 +10-Mar 0 1 +11-Mar 1 1 +12-Mar 0 2 +13-Mar 2 1 +14-Mar 1 1 +15-Mar 3 3 +16-Mar 2 3 +17-Mar 1 2 +18-Mar 2 3 +19-Mar 2 1 +20-Mar 2 1 +21-Mar 2 3 +22-Mar 2 4 +23-Mar 0 1 +24-Mar 0 0 +25-Mar 0 1 +26-Mar 0 0 +27-Mar 0 1 +28-Mar 1 2 +29-Mar 1 2 +30-Mar 1 1 +31-Mar 0 0 +1-Apr 0 3 +2-Apr 0 1 +3-Apr 0 0 +4-Apr 3 1 +5-Apr 1 1 +6-Apr 0 4 +7-Apr 0 2 +8-Apr 1 6 +9-Apr 3 0 +10-Apr 0 3 +11-Apr 1 1 +12-Apr 1 1 +13-Apr 2 0 +14-Apr 1 0 +15-Apr 1 2 +16-Apr 3 0 +17-Apr 1 3 +18-Apr 2 1 +19-Apr 3 3 +20-Apr 1 0 +21-Apr 1 0 +22-Apr 0 0 +23-Apr 3 1 +24-Apr 1 1 +25-Apr 0 4 +26-Apr 1 2 +27-Apr 4 2 +28-Apr 0 0 +29-Apr 0 1 +30-Apr 0 1 +1-May 0 4 +2-May 2 3 +3-May 0 8 +4-May 1 3 +5-May 0 2 +6-May 1 3 +7-May 4 6 +8-May 1 2 +9-May 0 6 +10-May 0 3 +11-May 0 0 +12-May 0 5 +13-May 0 6 +14-May 0 4 +15-May 1 3 +16-May 1 4 +17-May 0 6 +18-May 0 6 +19-May 1 5 +20-May 2 5 +21-May 1 5 +22-May 1 5 +23-May 2 3 +24-May 3 6 +25-May 0 2 +26-May 1 0 +27-May 3 0 +28-May 3 2 +29-May 4 2 +30-May 5 2 +31-May 1 2 +1-Jun 3 3 +2-Jun 1 2 +3-Jun 1 3 +4-Jun 0 5 +5-Jun 4 4 +6-Jun 3 2 +7-Jun 3 4 +8-Jun 0 2 +9-Jun 1 0 +10-Jun 1 0 +11-Jun 0 1 +12-Jun 1 2 +13-Jun 1 0 +14-Jun 1 1 +15-Jun 3 0 +16-Jun 0 0 +17-Jun 4 5 +18-Jun 3 0 +19-Jun 2 1 +20-Jun 2 1 +21-Jun 5 2 +22-Jun 2 0 +23-Jun 1 0 +24-Jun 1 0 +25-Jun 3 0 +26-Jun 3 3 +27-Jun 0 2 +28-Jun 1 3 +29-Jun 2 3 +30-Jun 0 1 +1-Jul 3 1 +2-Jul 2 0 +3-Jul 1 1 +4-Jul 2 0 +5-Jul 3 1 +6-Jul 1 4 +7-Jul 1 0 +8-Jul 1 0 +9-Jul 1 2 +10-Jul 4 1 +11-Jul 1 1 +12-Jul 5 1 +13-Jul 1 3 +14-Jul 2 0 +15-Jul 0 2 +16-Jul 2 1 +17-Jul 2 2 +18-Jul 1 1 +19-Jul 1 2 +20-Jul 0 0 +21-Jul 1 1 +22-Jul 0 1 +23-Jul 0 0 +24-Jul 1 2 +25-Jul 2 3 +26-Jul 2 1 +27-Jul 2 0 +28-Jul 3 0 +29-Jul 0 0 +30-Jul 1 0 +31-Jul 1 0 +1-Aug 1 2 +2-Aug 1 0 +3-Aug 2 1 +4-Aug 0 1 +5-Aug 2 2 +6-Aug 2 3 +7-Aug 1 1 +8-Aug 1 1 +9-Aug 1 4 +10-Aug 0 3 +11-Aug 1 2 +12-Aug 0 1 +13-Aug 2 2 +14-Aug 3 3 +15-Aug 4 2 +16-Aug 2 0 +17-Aug 0 0 +18-Aug 2 2 +19-Aug 0 1 +20-Aug 1 2 +21-Aug 0 1 +22-Aug 0 1 +23-Aug 1 1 +24-Aug 1 0 +25-Aug 1 0 +26-Aug 0 1 +27-Aug 0 0 +28-Aug 2 3 +29-Aug 0 2 +30-Aug 0 1 +31-Aug 2 1 +1-Sep 1 3 +2-Sep 4 2 +3-Sep 1 1 +4-Sep 1 2 +5-Sep 3 1 +6-Sep 2 2 +7-Sep 2 1 +8-Sep 1 2 +9-Sep 3 5 +10-Sep 1 2 +11-Sep 2 2 +12-Sep 1 1 +13-Sep 1 2 +14-Sep 3 1 +15-Sep 3 5 +16-Sep 2 1 +17-Sep 0 2 +18-Sep 1 2 +19-Sep 6 2 +20-Sep 3 0 +21-Sep 1 3 +22-Sep 3 2 +23-Sep 1 3 +24-Sep 2 2 +25-Sep 1 1 +26-Sep 1 5 +27-Sep 2 3 +28-Sep 2 2 +29-Sep 3 3 +30-Sep 1 3 +1-Oct 2 5 +2-Oct 1 3 +3-Oct 3 5 +4-Oct 3 2 +5-Oct 3 1 +6-Oct 1 0 +7-Oct 1 3 +8-Oct 0 3 +9-Oct 4 1 +10-Oct 3 1 +11-Oct 2 1 +12-Oct 0 2 +13-Oct 4 2 +14-Oct 5 1 +15-Oct 2 0 +16-Oct 5 0 +17-Oct 4 1 +18-Oct 2 1 +19-Oct 5 1 +20-Oct 1 1 +21-Oct 1 5 +22-Oct 1 2 +23-Oct 2 5 +24-Oct 2 4 +25-Oct 4 4 +26-Oct 5 2 +27-Oct 2 0 +28-Oct 0 6 +29-Oct 1 3 +30-Oct 1 5 +31-Oct 1 3 +1-Nov 2 1 +2-Nov 1 2 +3-Nov 2 1 +4-Nov 2 16 +5-Nov 1 17 +6-Nov 2 21 +7-Nov 3 19 +8-Nov 1 16 +9-Nov 1 18 +10-Nov 0 24 +11-Nov 1 19 +12-Nov 0 16 +13-Nov 0 18 +14-Nov 0 35 +15-Nov 2 12 +16-Nov 0 9 +17-Nov 2 12 +18-Nov 0 19 +19-Nov 1 23 +20-Nov 1 18 +21-Nov 1 19 +22-Nov 2 20 +23-Nov 1 21 +24-Nov 0 22 +25-Nov 0 1 +26-Nov 1 0 +27-Nov 2 0 +28-Nov 2 0 +29-Nov 1 0 +30-Nov 0 0 +1-Dec 0 0 +2-Dec 0 0 +3-Dec 3 0 +4-Dec 0 0 +5-Dec 1 0 +6-Dec 3 0 +7-Dec 1 0 +8-Dec 1 0 +9-Dec 2 0 +10-Dec 2 0 +11-Dec 0 0 +12-Dec 2 0 +13-Dec 0 0 +14-Dec 0 0 +15-Dec 0 0 +16-Dec 2 0 +17-Dec 1 0 +18-Dec 4 0 +19-Dec 0 0 +20-Dec 3 0 +21-Dec 0 0 +22-Dec 0 0 +23-Dec 0 0 +24-Dec 1 0 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 1 0 +28-Dec 2 0 +29-Dec 0 0 +30-Dec 0 0 +31-Dec 2 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2013_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2013_salvini_trends.tsv new file mode 100644 index 0000000..c232462 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2013_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-19 Salvini-13 +1-Jan 0 0 +2-Jan 5 0 +3-Jan 4 0 +4-Jan 4 0 +5-Jan 5 0 +6-Jan 1 0 +7-Jan 2 0 +8-Jan 3 0 +9-Jan 2 0 +10-Jan 4 0 +11-Jan 4 0 +12-Jan 4 0 +13-Jan 3 0 +14-Jan 3 0 +15-Jan 1 0 +16-Jan 3 0 +17-Jan 2 0 +18-Jan 3 0 +19-Jan 1 0 +20-Jan 3 0 +21-Jan 4 0 +22-Jan 2 0 +23-Jan 3 0 +24-Jan 4 0 +25-Jan 1 0 +26-Jan 0 0 +27-Jan 1 0 +28-Jan 1 0 +29-Jan 1 0 +30-Jan 1 0 +31-Jan 2 0 +1-Feb 2 0 +2-Feb 1 0 +3-Feb 1 0 +4-Feb 1 0 +5-Feb 2 0 +6-Feb 2 0 +7-Feb 1 0 +8-Feb 0 0 +9-Feb 0 0 +10-Feb 0 0 +11-Feb 0 0 +12-Feb 1 0 +13-Feb 1 0 +14-Feb 4 0 +15-Feb 2 0 +16-Feb 2 0 +17-Feb 3 0 +18-Feb 2 0 +19-Feb 2 0 +20-Feb 2 0 +21-Feb 2 0 +22-Feb 1 0 +23-Feb 2 0 +24-Feb 3 0 +25-Feb 1 0 +26-Feb 1 0 +27-Feb 3 0 +28-Feb 2 1 +1-Mar 6 0 +2-Mar 2 0 +3-Mar 1 0 +4-Mar 0 2 +5-Mar 0 1 +6-Mar 3 0 +7-Mar 3 2 +8-Mar 1 0 +9-Mar 0 0 +10-Mar 2 0 +11-Mar 1 1 +12-Mar 0 1 +13-Mar 2 1 +14-Mar 2 2 +15-Mar 2 2 +16-Mar 0 1 +17-Mar 0 2 +18-Mar 0 2 +19-Mar 0 0 +20-Mar 2 0 +21-Mar 0 0 +22-Mar 1 1 +23-Mar 4 1 +24-Mar 0 1 +25-Mar 1 0 +26-Mar 0 1 +27-Mar 0 3 +28-Mar 1 1 +29-Mar 1 1 +30-Mar 0 3 +31-Mar 1 0 +1-Apr 1 0 +2-Apr 1 2 +3-Apr 0 1 +4-Apr 2 0 +5-Apr 1 2 +6-Apr 1 0 +7-Apr 0 0 +8-Apr 0 1 +9-Apr 1 2 +10-Apr 0 0 +11-Apr 0 1 +12-Apr 0 2 +13-Apr 0 1 +14-Apr 2 2 +15-Apr 1 2 +16-Apr 0 1 +17-Apr 1 1 +18-Apr 0 1 +19-Apr 0 1 +20-Apr 0 1 +21-Apr 2 0 +22-Apr 0 1 +23-Apr 1 0 +24-Apr 1 4 +25-Apr 1 1 +26-Apr 1 2 +27-Apr 0 1 +28-Apr 0 2 +29-Apr 0 1 +30-Apr 1 0 +1-May 2 0 +2-May 0 0 +3-May 1 1 +4-May 1 0 +5-May 0 1 +6-May 1 0 +7-May 2 0 +8-May 2 1 +9-May 2 0 +10-May 0 2 +11-May 1 0 +12-May 1 1 +13-May 1 2 +14-May 1 1 +15-May 3 1 +16-May 0 1 +17-May 2 2 +18-May 0 0 +19-May 0 0 +20-May 2 1 +21-May 2 1 +22-May 1 1 +23-May 1 2 +24-May 1 3 +25-May 1 1 +26-May 2 0 +27-May 1 1 +28-May 2 1 +29-May 0 0 +30-May 0 2 +31-May 1 1 +1-Jun 1 1 +2-Jun 2 0 +3-Jun 2 3 +4-Jun 1 1 +5-Jun 0 0 +6-Jun 0 3 +7-Jun 0 3 +8-Jun 1 0 +9-Jun 2 2 +10-Jun 2 1 +11-Jun 1 1 +12-Jun 0 0 +13-Jun 0 0 +14-Jun 0 2 +15-Jun 1 1 +16-Jun 2 2 +17-Jun 1 1 +18-Jun 1 2 +19-Jun 2 1 +20-Jun 1 0 +21-Jun 2 0 +22-Jun 1 0 +23-Jun 3 0 +24-Jun 3 1 +25-Jun 3 1 +26-Jun 2 4 +27-Jun 1 1 +28-Jun 3 4 +29-Jun 1 0 +30-Jun 0 2 +1-Jul 1 0 +2-Jul 4 3 +3-Jul 3 0 +4-Jul 2 1 +5-Jul 2 2 +6-Jul 0 2 +7-Jul 4 1 +8-Jul 1 3 +9-Jul 2 1 +10-Jul 0 2 +11-Jul 4 3 +12-Jul 3 2 +13-Jul 3 4 +14-Jul 4 5 +15-Jul 2 1 +16-Jul 4 3 +17-Jul 2 0 +18-Jul 3 3 +19-Jul 4 0 +20-Jul 4 1 +21-Jul 4 0 +22-Jul 1 0 +23-Jul 4 0 +24-Jul 5 0 +25-Jul 2 0 +26-Jul 4 0 +27-Jul 4 0 +28-Jul 2 0 +29-Jul 3 0 +30-Jul 2 0 +31-Jul 2 0 +1-Aug 3 2 +2-Aug 6 3 +3-Aug 3 5 +4-Aug 3 4 +5-Aug 3 3 +6-Aug 3 1 +7-Aug 7 0 +8-Aug 8 3 +9-Aug 2 3 +10-Aug 1 2 +11-Aug 5 0 +12-Aug 4 2 +13-Aug 7 3 +14-Aug 2 0 +15-Aug 5 2 +16-Aug 2 2 +17-Aug 1 2 +18-Aug 6 3 +19-Aug 3 2 +20-Aug 3 2 +21-Aug 3 1 +22-Aug 5 3 +23-Aug 2 2 +24-Aug 3 5 +25-Aug 2 2 +26-Aug 2 0 +27-Aug 0 1 +28-Aug 1 5 +29-Aug 2 2 +30-Aug 2 2 +31-Aug 0 0 +1-Sep 2 1 +2-Sep 1 0 +3-Sep 0 1 +4-Sep 3 2 +5-Sep 1 3 +6-Sep 2 3 +7-Sep 3 1 +8-Sep 3 0 +9-Sep 2 1 +10-Sep 2 2 +11-Sep 2 1 +12-Sep 3 1 +13-Sep 2 1 +14-Sep 1 3 +15-Sep 1 1 +16-Sep 0 1 +17-Sep 4 0 +18-Sep 3 1 +19-Sep 4 0 +20-Sep 1 0 +21-Sep 4 0 +22-Sep 4 3 +23-Sep 6 1 +24-Sep 1 5 +25-Sep 2 2 +26-Sep 4 5 +27-Sep 2 2 +28-Sep 4 2 +29-Sep 1 4 +30-Sep 4 3 +1-Oct 1 1 +2-Oct 2 2 +3-Oct 2 1 +4-Oct 5 3 +5-Oct 1 1 +6-Oct 3 1 +7-Oct 1 1 +8-Oct 1 2 +9-Oct 3 0 +10-Oct 0 2 +11-Oct 1 1 +12-Oct 2 6 +13-Oct 1 2 +14-Oct 2 1 +15-Oct 5 5 +16-Oct 8 3 +17-Oct 4 3 +18-Oct 8 4 +19-Oct 12 2 +20-Oct 10 0 +21-Oct 2 3 +22-Oct 6 2 +23-Oct 2 2 +24-Oct 2 2 +25-Oct 1 2 +26-Oct 5 3 +27-Oct 2 3 +28-Oct 3 1 +29-Oct 2 1 +30-Oct 2 3 +31-Oct 1 5 +1-Nov 3 1 +2-Nov 4 1 +3-Nov 5 1 +4-Nov 2 1 +5-Nov 3 2 +6-Nov 3 4 +7-Nov 1 3 +8-Nov 1 2 +9-Nov 3 2 +10-Nov 0 3 +11-Nov 1 1 +12-Nov 1 1 +13-Nov 4 4 +14-Nov 0 4 +15-Nov 3 4 +16-Nov 6 4 +17-Nov 2 3 +18-Nov 0 4 +19-Nov 3 4 +20-Nov 1 1 +21-Nov 3 6 +22-Nov 0 5 +23-Nov 2 3 +24-Nov 2 3 +25-Nov 0 3 +26-Nov 0 2 +27-Nov 0 2 +28-Nov 0 2 +29-Nov 0 2 +30-Nov 0 4 +1-Dec 0 4 +2-Dec 0 3 +3-Dec 0 2 +4-Dec 0 5 +5-Dec 0 3 +6-Dec 0 3 +7-Dec 0 2 +8-Dec 0 0 +9-Dec 0 3 +10-Dec 0 1 +11-Dec 0 5 +12-Dec 0 3 +13-Dec 0 0 +14-Dec 0 1 +15-Dec 0 4 +16-Dec 0 5 +17-Dec 0 2 +18-Dec 0 0 +19-Dec 0 4 +20-Dec 0 2 +21-Dec 0 1 +22-Dec 0 1 +23-Dec 0 1 +24-Dec 0 1 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 0 4 +28-Dec 0 1 +29-Dec 0 3 +30-Dec 0 0 +31-Dec 0 2 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2014_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2014_salvini_trends.tsv new file mode 100644 index 0000000..d05a1e6 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2014_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-19 Salvini-14 +1-Jan 0 2 +2-Jan 5 0 +3-Jan 4 1 +4-Jan 4 0 +5-Jan 5 0 +6-Jan 1 0 +7-Jan 2 0 +8-Jan 3 1 +9-Jan 2 0 +10-Jan 4 1 +11-Jan 4 3 +12-Jan 4 1 +13-Jan 3 0 +14-Jan 3 0 +15-Jan 1 2 +16-Jan 3 1 +17-Jan 2 0 +18-Jan 3 1 +19-Jan 1 1 +20-Jan 3 0 +21-Jan 4 0 +22-Jan 2 1 +23-Jan 3 0 +24-Jan 4 0 +25-Jan 1 1 +26-Jan 0 0 +27-Jan 1 1 +28-Jan 1 3 +29-Jan 1 3 +30-Jan 1 1 +31-Jan 2 1 +1-Feb 2 0 +2-Feb 1 0 +3-Feb 1 0 +4-Feb 1 0 +5-Feb 2 0 +6-Feb 2 0 +7-Feb 1 0 +8-Feb 0 1 +9-Feb 0 2 +10-Feb 0 2 +11-Feb 0 0 +12-Feb 1 3 +13-Feb 1 1 +14-Feb 4 0 +15-Feb 2 3 +16-Feb 2 3 +17-Feb 3 2 +18-Feb 2 2 +19-Feb 2 0 +20-Feb 2 3 +21-Feb 2 1 +22-Feb 1 3 +23-Feb 2 2 +24-Feb 3 2 +25-Feb 1 2 +26-Feb 1 2 +27-Feb 3 2 +28-Feb 2 0 +1-Mar 6 5 +2-Mar 2 6 +3-Mar 1 0 +4-Mar 0 1 +5-Mar 0 2 +6-Mar 3 0 +7-Mar 3 1 +8-Mar 1 1 +9-Mar 0 3 +10-Mar 2 4 +11-Mar 1 0 +12-Mar 0 0 +13-Mar 2 2 +14-Mar 2 0 +15-Mar 2 3 +16-Mar 0 1 +17-Mar 0 0 +18-Mar 0 1 +19-Mar 0 1 +20-Mar 2 2 +21-Mar 0 2 +22-Mar 1 4 +23-Mar 4 2 +24-Mar 0 1 +25-Mar 1 3 +26-Mar 0 3 +27-Mar 0 1 +28-Mar 1 2 +29-Mar 1 3 +30-Mar 0 2 +31-Mar 1 1 +1-Apr 1 3 +2-Apr 1 0 +3-Apr 0 0 +4-Apr 2 1 +5-Apr 1 6 +6-Apr 1 4 +7-Apr 0 1 +8-Apr 0 1 +9-Apr 1 2 +10-Apr 0 1 +11-Apr 0 2 +12-Apr 0 1 +13-Apr 0 2 +14-Apr 2 3 +15-Apr 1 1 +16-Apr 0 1 +17-Apr 1 1 +18-Apr 0 0 +19-Apr 0 1 +20-Apr 0 1 +21-Apr 2 0 +22-Apr 0 1 +23-Apr 1 3 +24-Apr 1 1 +25-Apr 1 4 +26-Apr 1 6 +27-Apr 0 0 +28-Apr 0 4 +29-Apr 0 3 +30-Apr 1 2 +1-May 2 5 +2-May 0 3 +3-May 1 5 +4-May 1 2 +5-May 0 5 +6-May 1 5 +7-May 2 3 +8-May 2 5 +9-May 2 1 +10-May 0 3 +11-May 1 6 +12-May 1 6 +13-May 1 5 +14-May 1 2 +15-May 3 2 +16-May 0 4 +17-May 2 4 +18-May 0 7 +19-May 0 4 +20-May 2 9 +21-May 2 5 +22-May 1 2 +23-May 1 7 +24-May 1 4 +25-May 1 23 +26-May 2 3 +27-May 1 1 +28-May 2 2 +29-May 0 2 +30-May 0 4 +31-May 1 1 +1-Jun 1 4 +2-Jun 2 1 +3-Jun 2 3 +4-Jun 1 3 +5-Jun 0 3 +6-Jun 0 1 +7-Jun 0 3 +8-Jun 1 1 +9-Jun 2 1 +10-Jun 2 2 +11-Jun 1 0 +12-Jun 0 0 +13-Jun 0 2 +14-Jun 0 0 +15-Jun 1 1 +16-Jun 2 2 +17-Jun 1 0 +18-Jun 1 4 +19-Jun 2 0 +20-Jun 1 0 +21-Jun 2 0 +22-Jun 1 2 +23-Jun 3 0 +24-Jun 3 0 +25-Jun 3 1 +26-Jun 2 0 +27-Jun 1 0 +28-Jun 3 0 +29-Jun 1 1 +30-Jun 0 0 +1-Jul 1 2 +2-Jul 4 2 +3-Jul 3 0 +4-Jul 2 0 +5-Jul 2 1 +6-Jul 0 0 +7-Jul 4 1 +8-Jul 1 0 +9-Jul 2 1 +10-Jul 0 1 +11-Jul 4 1 +12-Jul 3 7 +13-Jul 3 5 +14-Jul 4 2 +15-Jul 2 0 +16-Jul 4 2 +17-Jul 2 0 +18-Jul 3 0 +19-Jul 4 1 +20-Jul 4 2 +21-Jul 4 1 +22-Jul 1 0 +23-Jul 4 1 +24-Jul 5 1 +25-Jul 2 0 +26-Jul 4 0 +27-Jul 4 0 +28-Jul 2 1 +29-Jul 3 0 +30-Jul 2 0 +31-Jul 2 0 +1-Aug 3 1 +2-Aug 6 0 +3-Aug 3 1 +4-Aug 3 2 +5-Aug 3 0 +6-Aug 3 1 +7-Aug 7 1 +8-Aug 8 0 +9-Aug 2 1 +10-Aug 1 0 +11-Aug 5 0 +12-Aug 4 0 +13-Aug 7 0 +14-Aug 2 0 +15-Aug 5 0 +16-Aug 2 3 +17-Aug 1 3 +18-Aug 6 2 +19-Aug 3 0 +20-Aug 3 1 +21-Aug 3 0 +22-Aug 5 1 +23-Aug 2 4 +24-Aug 3 2 +25-Aug 2 0 +26-Aug 2 0 +27-Aug 0 0 +28-Aug 1 0 +29-Aug 2 0 +30-Aug 2 1 +31-Aug 0 0 +1-Sep 2 1 +2-Sep 1 0 +3-Sep 0 3 +4-Sep 3 1 +5-Sep 1 1 +6-Sep 2 1 +7-Sep 3 3 +8-Sep 3 1 +9-Sep 2 0 +10-Sep 2 0 +11-Sep 2 0 +12-Sep 3 0 +13-Sep 2 1 +14-Sep 1 2 +15-Sep 1 0 +16-Sep 0 1 +17-Sep 4 2 +18-Sep 3 0 +19-Sep 4 1 +20-Sep 1 2 +21-Sep 4 2 +22-Sep 4 1 +23-Sep 6 0 +24-Sep 1 0 +25-Sep 2 1 +26-Sep 4 1 +27-Sep 2 2 +28-Sep 4 3 +29-Sep 1 2 +30-Sep 4 1 +1-Oct 1 1 +2-Oct 2 2 +3-Oct 2 0 +4-Oct 5 2 +5-Oct 1 2 +6-Oct 3 0 +7-Oct 1 0 +8-Oct 1 1 +9-Oct 3 0 +10-Oct 0 2 +11-Oct 1 4 +12-Oct 2 1 +13-Oct 1 2 +14-Oct 2 4 +15-Oct 5 3 +16-Oct 8 1 +17-Oct 4 3 +18-Oct 8 4 +19-Oct 12 2 +20-Oct 10 2 +21-Oct 2 3 +22-Oct 6 0 +23-Oct 2 2 +24-Oct 2 2 +25-Oct 1 1 +26-Oct 5 1 +27-Oct 2 2 +28-Oct 3 1 +29-Oct 2 2 +30-Oct 2 1 +31-Oct 1 5 +1-Nov 3 3 +2-Nov 4 0 +3-Nov 5 2 +4-Nov 2 0 +5-Nov 3 0 +6-Nov 3 0 +7-Nov 1 2 +8-Nov 1 4 +9-Nov 3 5 +10-Nov 0 3 +11-Nov 1 2 +12-Nov 1 1 +13-Nov 4 2 +14-Nov 0 5 +15-Nov 3 4 +16-Nov 6 0 +17-Nov 2 2 +18-Nov 0 0 +19-Nov 3 2 +20-Nov 1 7 +21-Nov 3 4 +22-Nov 0 1 +23-Nov 2 2 +24-Nov 2 1 +25-Nov 0 0 +26-Nov 0 1 +27-Nov 0 1 +28-Nov 0 3 +29-Nov 0 0 +30-Nov 0 0 +1-Dec 0 1 +2-Dec 0 1 +3-Dec 0 1 +4-Dec 0 1 +5-Dec 0 0 +6-Dec 0 2 +7-Dec 0 1 +8-Dec 0 3 +9-Dec 0 1 +10-Dec 0 2 +11-Dec 0 1 +12-Dec 0 1 +13-Dec 0 2 +14-Dec 0 1 +15-Dec 0 3 +16-Dec 0 1 +17-Dec 0 1 +18-Dec 0 1 +19-Dec 0 3 +20-Dec 0 2 +21-Dec 0 2 +22-Dec 0 1 +23-Dec 0 1 +24-Dec 0 2 +25-Dec 0 0 +26-Dec 0 1 +27-Dec 0 3 +28-Dec 0 0 +29-Dec 0 3 +30-Dec 0 0 +31-Dec 0 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2015_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2015_salvini_trends.tsv new file mode 100644 index 0000000..0d842a5 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2015_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-19 Salvini-15 +1-Jan 0 0 +2-Jan 5 0 +3-Jan 4 0 +4-Jan 4 0 +5-Jan 5 0 +6-Jan 1 0 +7-Jan 2 0 +8-Jan 3 1 +9-Jan 2 1 +10-Jan 4 0 +11-Jan 4 0 +12-Jan 4 0 +13-Jan 3 2 +14-Jan 3 1 +15-Jan 1 0 +16-Jan 3 1 +17-Jan 2 0 +18-Jan 3 1 +19-Jan 1 1 +20-Jan 3 0 +21-Jan 4 3 +22-Jan 2 1 +23-Jan 3 1 +24-Jan 4 0 +25-Jan 1 0 +26-Jan 0 1 +27-Jan 1 0 +28-Jan 1 3 +29-Jan 1 2 +30-Jan 1 2 +31-Jan 2 0 +1-Feb 2 4 +2-Feb 1 1 +3-Feb 1 0 +4-Feb 1 0 +5-Feb 2 1 +6-Feb 2 2 +7-Feb 1 0 +8-Feb 0 0 +9-Feb 0 2 +10-Feb 0 0 +11-Feb 0 1 +12-Feb 1 1 +13-Feb 1 0 +14-Feb 4 1 +15-Feb 2 0 +16-Feb 2 0 +17-Feb 3 1 +18-Feb 2 2 +19-Feb 2 2 +20-Feb 2 0 +21-Feb 2 1 +22-Feb 1 1 +23-Feb 2 1 +24-Feb 3 2 +25-Feb 1 2 +26-Feb 1 3 +27-Feb 3 1 +28-Feb 2 1 +1-Mar 6 2 +2-Mar 2 0 +3-Mar 1 1 +4-Mar 0 1 +5-Mar 0 2 +6-Mar 3 2 +7-Mar 3 1 +8-Mar 1 1 +9-Mar 0 1 +10-Mar 2 0 +11-Mar 1 1 +12-Mar 0 2 +13-Mar 2 0 +14-Mar 2 2 +15-Mar 2 0 +16-Mar 0 1 +17-Mar 0 1 +18-Mar 0 2 +19-Mar 0 1 +20-Mar 2 1 +21-Mar 0 0 +22-Mar 1 0 +23-Mar 4 2 +24-Mar 0 3 +25-Mar 1 2 +26-Mar 0 2 +27-Mar 0 1 +28-Mar 1 2 +29-Mar 1 1 +30-Mar 0 1 +31-Mar 1 1 +1-Apr 1 3 +2-Apr 1 2 +3-Apr 0 1 +4-Apr 2 1 +5-Apr 1 0 +6-Apr 1 0 +7-Apr 0 1 +8-Apr 0 2 +9-Apr 1 2 +10-Apr 0 2 +11-Apr 0 2 +12-Apr 0 1 +13-Apr 0 1 +14-Apr 2 3 +15-Apr 1 1 +16-Apr 0 1 +17-Apr 1 2 +18-Apr 0 2 +19-Apr 0 1 +20-Apr 0 4 +21-Apr 2 3 +22-Apr 0 2 +23-Apr 1 2 +24-Apr 1 1 +25-Apr 1 0 +26-Apr 1 0 +27-Apr 0 5 +28-Apr 0 3 +29-Apr 0 3 +30-Apr 1 1 +1-May 2 5 +2-May 0 1 +3-May 1 0 +4-May 1 5 +5-May 0 2 +6-May 1 4 +7-May 2 1 +8-May 2 2 +9-May 2 2 +10-May 0 3 +11-May 1 3 +12-May 1 5 +13-May 1 2 +14-May 1 5 +15-May 3 3 +16-May 0 5 +17-May 2 1 +18-May 0 2 +19-May 0 2 +20-May 2 3 +21-May 2 2 +22-May 1 3 +23-May 1 4 +24-May 1 5 +25-May 1 5 +26-May 2 9 +27-May 1 4 +28-May 2 5 +29-May 0 5 +30-May 0 0 +31-May 1 1 +1-Jun 1 2 +2-Jun 2 0 +3-Jun 2 2 +4-Jun 1 3 +5-Jun 0 3 +6-Jun 0 0 +7-Jun 0 3 +8-Jun 1 3 +9-Jun 2 0 +10-Jun 2 4 +11-Jun 1 1 +12-Jun 0 3 +13-Jun 0 1 +14-Jun 0 1 +15-Jun 1 2 +16-Jun 2 1 +17-Jun 1 1 +18-Jun 1 2 +19-Jun 2 1 +20-Jun 1 1 +21-Jun 2 0 +22-Jun 1 2 +23-Jun 3 2 +24-Jun 3 2 +25-Jun 3 2 +26-Jun 2 0 +27-Jun 1 0 +28-Jun 3 1 +29-Jun 1 3 +30-Jun 0 2 +1-Jul 1 3 +2-Jul 4 2 +3-Jul 3 4 +4-Jul 2 0 +5-Jul 2 0 +6-Jul 0 2 +7-Jul 4 3 +8-Jul 1 3 +9-Jul 2 1 +10-Jul 0 1 +11-Jul 4 1 +12-Jul 3 1 +13-Jul 3 2 +14-Jul 4 3 +15-Jul 2 4 +16-Jul 4 2 +17-Jul 2 2 +18-Jul 3 3 +19-Jul 4 2 +20-Jul 4 1 +21-Jul 4 0 +22-Jul 1 1 +23-Jul 4 0 +24-Jul 5 0 +25-Jul 2 0 +26-Jul 4 0 +27-Jul 4 1 +28-Jul 2 2 +29-Jul 3 0 +30-Jul 2 0 +31-Jul 2 0 +1-Aug 3 0 +2-Aug 6 1 +3-Aug 3 0 +4-Aug 3 2 +5-Aug 3 2 +6-Aug 3 2 +7-Aug 7 2 +8-Aug 8 1 +9-Aug 2 1 +10-Aug 1 0 +11-Aug 5 1 +12-Aug 4 1 +13-Aug 7 3 +14-Aug 2 0 +15-Aug 5 0 +16-Aug 2 2 +17-Aug 1 2 +18-Aug 6 0 +19-Aug 3 0 +20-Aug 3 3 +21-Aug 3 0 +22-Aug 5 1 +23-Aug 2 0 +24-Aug 3 2 +25-Aug 2 0 +26-Aug 2 1 +27-Aug 0 1 +28-Aug 1 1 +29-Aug 2 1 +30-Aug 2 0 +31-Aug 0 2 +1-Sep 2 2 +2-Sep 1 1 +3-Sep 0 1 +4-Sep 3 2 +5-Sep 1 0 +6-Sep 2 2 +7-Sep 3 3 +8-Sep 3 2 +9-Sep 2 3 +10-Sep 2 1 +11-Sep 2 2 +12-Sep 3 0 +13-Sep 2 2 +14-Sep 1 2 +15-Sep 1 3 +16-Sep 0 2 +17-Sep 4 3 +18-Sep 3 2 +19-Sep 4 1 +20-Sep 1 1 +21-Sep 4 1 +22-Sep 4 2 +23-Sep 6 1 +24-Sep 1 1 +25-Sep 2 1 +26-Sep 4 0 +27-Sep 2 0 +28-Sep 4 1 +29-Sep 1 2 +30-Sep 4 1 +1-Oct 1 2 +2-Oct 2 2 +3-Oct 2 1 +4-Oct 5 0 +5-Oct 1 0 +6-Oct 3 2 +7-Oct 1 2 +8-Oct 1 2 +9-Oct 3 2 +10-Oct 0 0 +11-Oct 1 0 +12-Oct 2 2 +13-Oct 1 3 +14-Oct 2 1 +15-Oct 5 1 +16-Oct 8 0 +17-Oct 4 2 +18-Oct 8 1 +19-Oct 12 1 +20-Oct 10 1 +21-Oct 2 4 +22-Oct 6 5 +23-Oct 2 3 +24-Oct 2 1 +25-Oct 1 1 +26-Oct 5 3 +27-Oct 2 5 +28-Oct 3 5 +29-Oct 2 4 +30-Oct 2 5 +31-Oct 1 5 +1-Nov 3 2 +2-Nov 4 7 +3-Nov 5 3 +4-Nov 2 4 +5-Nov 3 4 +6-Nov 3 4 +7-Nov 1 1 +8-Nov 1 2 +9-Nov 3 4 +10-Nov 0 3 +11-Nov 1 3 +12-Nov 1 6 +13-Nov 4 2 +14-Nov 0 3 +15-Nov 3 2 +16-Nov 6 4 +17-Nov 2 2 +18-Nov 0 5 +19-Nov 3 3 +20-Nov 1 3 +21-Nov 3 2 +22-Nov 0 0 +23-Nov 2 2 +24-Nov 2 2 +25-Nov 0 3 +26-Nov 0 2 +27-Nov 0 0 +28-Nov 0 1 +29-Nov 0 2 +30-Nov 0 4 +1-Dec 0 3 +2-Dec 0 4 +3-Dec 0 4 +4-Dec 0 4 +5-Dec 0 1 +6-Dec 0 0 +7-Dec 0 1 +8-Dec 0 0 +9-Dec 0 1 +10-Dec 0 1 +11-Dec 0 1 +12-Dec 0 0 +13-Dec 0 1 +14-Dec 0 1 +15-Dec 0 2 +16-Dec 0 2 +17-Dec 0 1 +18-Dec 0 0 +19-Dec 0 0 +20-Dec 0 0 +21-Dec 0 0 +22-Dec 0 1 +23-Dec 0 0 +24-Dec 0 2 +25-Dec 0 2 +26-Dec 0 1 +27-Dec 0 0 +28-Dec 0 0 +29-Dec 0 0 +30-Dec 0 0 +31-Dec 0 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2016_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2016_salvini_trends.tsv new file mode 100644 index 0000000..9d3e905 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2016_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-19 Salvini-16 +1-Jan 0 1 +2-Jan 5 0 +3-Jan 4 0 +4-Jan 4 0 +5-Jan 5 0 +6-Jan 1 0 +7-Jan 2 2 +8-Jan 3 2 +9-Jan 2 0 +10-Jan 4 1 +11-Jan 4 2 +12-Jan 4 4 +13-Jan 3 5 +14-Jan 3 2 +15-Jan 1 2 +16-Jan 3 1 +17-Jan 2 1 +18-Jan 3 3 +19-Jan 1 4 +20-Jan 3 5 +21-Jan 4 3 +22-Jan 2 2 +23-Jan 3 2 +24-Jan 4 2 +25-Jan 1 5 +26-Jan 0 4 +27-Jan 1 4 +28-Jan 1 1 +29-Jan 1 0 +30-Jan 1 2 +31-Jan 2 2 +1-Feb 2 3 +2-Feb 1 4 +3-Feb 1 2 +4-Feb 1 3 +5-Feb 2 4 +6-Feb 2 4 +7-Feb 1 0 +8-Feb 0 3 +9-Feb 0 2 +10-Feb 0 1 +11-Feb 0 3 +12-Feb 1 2 +13-Feb 1 1 +14-Feb 4 1 +15-Feb 2 3 +16-Feb 2 4 +17-Feb 3 2 +18-Feb 2 0 +19-Feb 2 1 +20-Feb 2 1 +21-Feb 2 0 +22-Feb 1 2 +23-Feb 2 2 +24-Feb 3 4 +25-Feb 1 4 +26-Feb 1 3 +27-Feb 3 1 +28-Feb 2 1 +29-Feb 0 2 +1-Mar 6 2 +2-Mar 2 1 +3-Mar 1 1 +4-Mar 0 1 +5-Mar 0 1 +6-Mar 3 1 +7-Mar 3 2 +8-Mar 1 1 +9-Mar 0 1 +10-Mar 2 2 +11-Mar 1 0 +12-Mar 0 0 +13-Mar 2 0 +14-Mar 2 2 +15-Mar 2 2 +16-Mar 0 1 +17-Mar 0 1 +18-Mar 0 2 +19-Mar 0 1 +20-Mar 2 0 +21-Mar 0 1 +22-Mar 1 2 +23-Mar 4 3 +24-Mar 0 3 +25-Mar 1 1 +26-Mar 0 1 +27-Mar 0 0 +28-Mar 1 0 +29-Mar 1 1 +30-Mar 0 1 +31-Mar 1 1 +1-Apr 1 1 +2-Apr 1 1 +3-Apr 0 2 +4-Apr 2 3 +5-Apr 1 3 +6-Apr 1 4 +7-Apr 0 2 +8-Apr 0 1 +9-Apr 1 2 +10-Apr 0 2 +11-Apr 0 3 +12-Apr 0 0 +13-Apr 0 1 +14-Apr 2 1 +15-Apr 1 2 +16-Apr 0 3 +17-Apr 1 0 +18-Apr 0 2 +19-Apr 0 4 +20-Apr 0 4 +21-Apr 2 4 +22-Apr 0 1 +23-Apr 1 1 +24-Apr 1 1 +25-Apr 1 0 +26-Apr 1 1 +27-Apr 0 1 +28-Apr 0 0 +29-Apr 0 1 +30-Apr 1 2 +1-May 2 0 +2-May 0 1 +3-May 1 0 +4-May 1 1 +5-May 0 0 +6-May 1 1 +7-May 2 0 +8-May 2 0 +9-May 2 0 +10-May 0 0 +11-May 1 1 +12-May 1 3 +13-May 1 2 +14-May 1 5 +15-May 3 3 +16-May 0 2 +17-May 2 4 +18-May 0 5 +19-May 0 5 +20-May 2 6 +21-May 2 2 +22-May 1 4 +23-May 1 2 +24-May 1 3 +25-May 1 3 +26-May 2 3 +27-May 1 2 +28-May 2 1 +29-May 0 4 +30-May 0 2 +31-May 1 5 +1-Jun 1 7 +2-Jun 2 4 +3-Jun 2 2 +4-Jun 1 3 +5-Jun 0 1 +6-Jun 0 2 +7-Jun 0 1 +8-Jun 1 2 +9-Jun 2 3 +10-Jun 2 2 +11-Jun 1 1 +12-Jun 0 0 +13-Jun 0 2 +14-Jun 0 1 +15-Jun 1 3 +16-Jun 2 2 +17-Jun 1 3 +18-Jun 1 0 +19-Jun 2 1 +20-Jun 1 0 +21-Jun 2 0 +22-Jun 1 1 +23-Jun 3 0 +24-Jun 3 2 +25-Jun 3 4 +26-Jun 2 0 +27-Jun 1 0 +28-Jun 3 2 +29-Jun 1 2 +30-Jun 0 1 +1-Jul 1 2 +2-Jul 4 0 +3-Jul 3 0 +4-Jul 2 1 +5-Jul 2 1 +6-Jul 0 2 +7-Jul 4 1 +8-Jul 1 2 +9-Jul 2 1 +10-Jul 0 0 +11-Jul 4 1 +12-Jul 3 2 +13-Jul 3 0 +14-Jul 4 0 +15-Jul 2 0 +16-Jul 4 0 +17-Jul 2 2 +18-Jul 3 0 +19-Jul 4 2 +20-Jul 4 0 +21-Jul 4 1 +22-Jul 1 2 +23-Jul 4 1 +24-Jul 5 0 +25-Jul 2 1 +26-Jul 4 1 +27-Jul 4 0 +28-Jul 2 1 +29-Jul 3 1 +30-Jul 2 0 +31-Jul 2 0 +1-Aug 3 0 +2-Aug 6 0 +3-Aug 3 1 +4-Aug 3 1 +5-Aug 3 1 +6-Aug 3 0 +7-Aug 7 0 +8-Aug 8 0 +9-Aug 2 1 +10-Aug 1 0 +11-Aug 5 0 +12-Aug 4 0 +13-Aug 7 0 +14-Aug 2 0 +15-Aug 5 0 +16-Aug 2 2 +17-Aug 1 1 +18-Aug 6 0 +19-Aug 3 0 +20-Aug 3 0 +21-Aug 3 1 +22-Aug 5 0 +23-Aug 2 1 +24-Aug 3 0 +25-Aug 2 0 +26-Aug 2 0 +27-Aug 0 1 +28-Aug 1 0 +29-Aug 2 1 +30-Aug 2 0 +31-Aug 0 2 +1-Sep 2 0 +2-Sep 1 1 +3-Sep 0 0 +4-Sep 3 2 +5-Sep 1 0 +6-Sep 2 3 +7-Sep 3 0 +8-Sep 3 2 +9-Sep 2 1 +10-Sep 2 0 +11-Sep 2 0 +12-Sep 3 2 +13-Sep 2 0 +14-Sep 1 1 +15-Sep 1 2 +16-Sep 0 0 +17-Sep 4 0 +18-Sep 3 3 +19-Sep 4 2 +20-Sep 1 2 +21-Sep 4 2 +22-Sep 4 2 +23-Sep 6 2 +24-Sep 1 2 +25-Sep 2 1 +26-Sep 4 2 +27-Sep 2 2 +28-Sep 4 2 +29-Sep 1 4 +30-Sep 4 2 +1-Oct 1 2 +2-Oct 2 1 +3-Oct 2 3 +4-Oct 5 2 +5-Oct 1 3 +6-Oct 3 1 +7-Oct 1 1 +8-Oct 1 2 +9-Oct 3 3 +10-Oct 0 1 +11-Oct 1 2 +12-Oct 2 2 +13-Oct 1 2 +14-Oct 2 1 +15-Oct 5 2 +16-Oct 8 1 +17-Oct 4 1 +18-Oct 8 1 +19-Oct 12 1 +20-Oct 10 1 +21-Oct 2 2 +22-Oct 6 1 +23-Oct 2 0 +24-Oct 2 2 +25-Oct 1 2 +26-Oct 5 3 +27-Oct 2 2 +28-Oct 3 1 +29-Oct 2 1 +30-Oct 2 0 +31-Oct 1 0 +1-Nov 3 1 +2-Nov 4 1 +3-Nov 5 4 +4-Nov 2 6 +5-Nov 3 2 +6-Nov 3 2 +7-Nov 1 1 +8-Nov 1 1 +9-Nov 3 4 +10-Nov 0 3 +11-Nov 1 7 +12-Nov 1 3 +13-Nov 4 0 +14-Nov 0 3 +15-Nov 3 1 +16-Nov 6 5 +17-Nov 2 3 +18-Nov 0 2 +19-Nov 3 3 +20-Nov 1 4 +21-Nov 3 2 +22-Nov 0 4 +23-Nov 2 3 +24-Nov 2 2 +25-Nov 0 6 +26-Nov 0 4 +27-Nov 0 3 +28-Nov 0 4 +29-Nov 0 3 +30-Nov 0 3 +1-Dec 0 4 +2-Dec 0 3 +3-Dec 0 4 +4-Dec 0 4 +5-Dec 0 4 +6-Dec 0 5 +7-Dec 0 3 +8-Dec 0 0 +9-Dec 0 0 +10-Dec 0 0 +11-Dec 0 0 +12-Dec 0 0 +13-Dec 0 3 +14-Dec 0 3 +15-Dec 0 0 +16-Dec 0 1 +17-Dec 0 0 +18-Dec 0 1 +19-Dec 0 1 +20-Dec 0 0 +21-Dec 0 2 +22-Dec 0 3 +23-Dec 0 0 +24-Dec 0 2 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 0 0 +28-Dec 0 2 +29-Dec 0 0 +30-Dec 0 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2017_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2017_salvini_trends.tsv new file mode 100644 index 0000000..4e0a874 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2017_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-19 Salvini-17 +1-Jan 0 0 +2-Jan 5 0 +3-Jan 4 1 +4-Jan 4 0 +5-Jan 5 0 +6-Jan 1 0 +7-Jan 2 0 +8-Jan 3 0 +9-Jan 2 1 +10-Jan 4 0 +11-Jan 4 3 +12-Jan 4 1 +13-Jan 3 1 +14-Jan 3 0 +15-Jan 1 0 +16-Jan 3 2 +17-Jan 2 0 +18-Jan 3 1 +19-Jan 1 2 +20-Jan 3 2 +21-Jan 4 2 +22-Jan 2 2 +23-Jan 3 3 +24-Jan 4 2 +25-Jan 1 1 +26-Jan 0 3 +27-Jan 1 0 +28-Jan 1 1 +29-Jan 1 2 +30-Jan 1 2 +31-Jan 2 3 +1-Feb 2 1 +2-Feb 1 1 +3-Feb 1 0 +4-Feb 1 1 +5-Feb 2 0 +6-Feb 2 0 +7-Feb 1 2 +8-Feb 0 2 +9-Feb 0 1 +10-Feb 0 1 +11-Feb 0 0 +12-Feb 1 1 +13-Feb 1 0 +14-Feb 4 1 +15-Feb 2 2 +16-Feb 2 0 +17-Feb 3 1 +18-Feb 2 1 +19-Feb 2 1 +20-Feb 2 2 +21-Feb 2 1 +22-Feb 1 2 +23-Feb 2 2 +24-Feb 3 1 +25-Feb 1 0 +26-Feb 1 3 +27-Feb 3 2 +28-Feb 2 0 +1-Mar 6 0 +2-Mar 2 0 +3-Mar 1 1 +4-Mar 0 4 +5-Mar 0 2 +6-Mar 3 0 +7-Mar 3 3 +8-Mar 1 0 +9-Mar 0 2 +10-Mar 2 2 +11-Mar 1 1 +12-Mar 0 0 +13-Mar 2 1 +14-Mar 2 2 +15-Mar 2 2 +16-Mar 0 0 +17-Mar 0 1 +18-Mar 0 0 +19-Mar 0 1 +20-Mar 2 4 +21-Mar 0 1 +22-Mar 1 1 +23-Mar 4 2 +24-Mar 0 1 +25-Mar 1 2 +26-Mar 0 0 +27-Mar 0 1 +28-Mar 1 2 +29-Mar 1 3 +30-Mar 0 3 +31-Mar 1 2 +1-Apr 1 2 +2-Apr 1 1 +3-Apr 0 1 +4-Apr 2 2 +5-Apr 1 2 +6-Apr 1 4 +7-Apr 0 1 +8-Apr 0 1 +9-Apr 1 0 +10-Apr 0 3 +11-Apr 0 1 +12-Apr 0 1 +13-Apr 0 1 +14-Apr 2 0 +15-Apr 1 0 +16-Apr 0 0 +17-Apr 1 1 +18-Apr 0 2 +19-Apr 0 0 +20-Apr 0 2 +21-Apr 2 1 +22-Apr 0 0 +23-Apr 1 0 +24-Apr 1 1 +25-Apr 1 2 +26-Apr 1 1 +27-Apr 0 3 +28-Apr 0 1 +29-Apr 0 0 +30-Apr 1 1 +1-May 2 2 +2-May 0 3 +3-May 1 3 +4-May 1 3 +5-May 0 1 +6-May 1 2 +7-May 2 1 +8-May 2 0 +9-May 2 0 +10-May 0 2 +11-May 1 4 +12-May 1 3 +13-May 1 0 +14-May 1 3 +15-May 3 2 +16-May 0 0 +17-May 2 4 +18-May 0 1 +19-May 0 1 +20-May 2 3 +21-May 2 1 +22-May 1 2 +23-May 1 1 +24-May 1 3 +25-May 1 5 +26-May 2 3 +27-May 1 3 +28-May 2 0 +29-May 0 3 +30-May 0 0 +31-May 1 3 +1-Jun 1 4 +2-Jun 2 1 +3-Jun 2 1 +4-Jun 1 0 +5-Jun 0 2 +6-Jun 0 4 +7-Jun 0 2 +8-Jun 1 3 +9-Jun 2 5 +10-Jun 2 1 +11-Jun 1 0 +12-Jun 0 0 +13-Jun 0 4 +14-Jun 0 4 +15-Jun 1 3 +16-Jun 2 3 +17-Jun 1 1 +18-Jun 1 1 +19-Jun 2 1 +20-Jun 1 2 +21-Jun 2 1 +22-Jun 1 0 +23-Jun 3 5 +24-Jun 3 1 +25-Jun 3 0 +26-Jun 2 4 +27-Jun 1 0 +28-Jun 3 3 +29-Jun 1 1 +30-Jun 0 0 +1-Jul 1 0 +2-Jul 4 1 +3-Jul 3 1 +4-Jul 2 1 +5-Jul 2 2 +6-Jul 0 0 +7-Jul 4 1 +8-Jul 1 0 +9-Jul 2 3 +10-Jul 0 0 +11-Jul 4 3 +12-Jul 3 1 +13-Jul 3 1 +14-Jul 4 0 +15-Jul 2 1 +16-Jul 4 0 +17-Jul 2 0 +18-Jul 3 1 +19-Jul 4 2 +20-Jul 4 3 +21-Jul 4 2 +22-Jul 1 0 +23-Jul 4 2 +24-Jul 5 2 +25-Jul 2 0 +26-Jul 4 1 +27-Jul 4 0 +28-Jul 2 0 +29-Jul 3 0 +30-Jul 2 0 +31-Jul 2 1 +1-Aug 3 0 +2-Aug 6 2 +3-Aug 3 3 +4-Aug 3 0 +5-Aug 3 0 +6-Aug 3 1 +7-Aug 7 2 +8-Aug 8 2 +9-Aug 2 1 +10-Aug 1 1 +11-Aug 5 2 +12-Aug 4 3 +13-Aug 7 3 +14-Aug 2 1 +15-Aug 5 3 +16-Aug 2 0 +17-Aug 1 0 +18-Aug 6 0 +19-Aug 3 1 +20-Aug 3 0 +21-Aug 3 0 +22-Aug 5 1 +23-Aug 2 1 +24-Aug 3 2 +25-Aug 2 0 +26-Aug 2 1 +27-Aug 0 0 +28-Aug 1 1 +29-Aug 2 0 +30-Aug 2 1 +31-Aug 0 0 +1-Sep 2 0 +2-Sep 1 1 +3-Sep 0 1 +4-Sep 3 0 +5-Sep 1 1 +6-Sep 2 1 +7-Sep 3 1 +8-Sep 3 0 +9-Sep 2 3 +10-Sep 2 1 +11-Sep 2 2 +12-Sep 3 1 +13-Sep 2 4 +14-Sep 1 2 +15-Sep 1 4 +16-Sep 0 2 +17-Sep 4 4 +18-Sep 3 1 +19-Sep 4 5 +20-Sep 1 2 +21-Sep 4 1 +22-Sep 4 1 +23-Sep 6 0 +24-Sep 1 1 +25-Sep 2 1 +26-Sep 4 0 +27-Sep 2 3 +28-Sep 4 2 +29-Sep 1 3 +30-Sep 4 0 +1-Oct 1 2 +2-Oct 2 2 +3-Oct 2 2 +4-Oct 5 3 +5-Oct 1 2 +6-Oct 3 3 +7-Oct 1 0 +8-Oct 1 1 +9-Oct 3 1 +10-Oct 0 1 +11-Oct 1 1 +12-Oct 2 1 +13-Oct 1 1 +14-Oct 2 3 +15-Oct 5 0 +16-Oct 8 0 +17-Oct 4 4 +18-Oct 8 1 +19-Oct 12 1 +20-Oct 10 1 +21-Oct 2 2 +22-Oct 6 2 +23-Oct 2 1 +24-Oct 2 1 +25-Oct 1 2 +26-Oct 5 1 +27-Oct 2 3 +28-Oct 3 3 +29-Oct 2 2 +30-Oct 2 5 +31-Oct 1 2 +1-Nov 3 4 +2-Nov 4 3 +3-Nov 5 1 +4-Nov 2 2 +5-Nov 3 0 +6-Nov 3 0 +7-Nov 1 2 +8-Nov 1 5 +9-Nov 3 4 +10-Nov 0 4 +11-Nov 1 5 +12-Nov 1 3 +13-Nov 4 1 +14-Nov 0 4 +15-Nov 3 4 +16-Nov 6 3 +17-Nov 2 5 +18-Nov 0 5 +19-Nov 3 6 +20-Nov 1 4 +21-Nov 3 3 +22-Nov 0 4 +23-Nov 2 6 +24-Nov 2 4 +25-Nov 0 4 +26-Nov 0 4 +27-Nov 0 1 +28-Nov 0 2 +29-Nov 0 1 +30-Nov 0 4 +1-Dec 0 1 +2-Dec 0 1 +3-Dec 0 0 +4-Dec 0 0 +5-Dec 0 4 +6-Dec 0 3 +7-Dec 0 2 +8-Dec 0 2 +9-Dec 0 3 +10-Dec 0 6 +11-Dec 0 5 +12-Dec 0 3 +13-Dec 0 4 +14-Dec 0 2 +15-Dec 0 4 +16-Dec 0 3 +17-Dec 0 2 +18-Dec 0 4 +19-Dec 0 4 +20-Dec 0 6 +21-Dec 0 3 +22-Dec 0 1 +23-Dec 0 1 +24-Dec 0 1 +25-Dec 0 1 +26-Dec 0 0 +27-Dec 0 0 +28-Dec 0 2 +29-Dec 0 1 +30-Dec 0 0 +31-Dec 0 1 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2018_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2018_salvini_trends.tsv new file mode 100644 index 0000000..db95783 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2018_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-19 Salvini-18 +1-Jan 0 0 +2-Jan 5 0 +3-Jan 4 1 +4-Jan 4 1 +5-Jan 5 0 +6-Jan 1 1 +7-Jan 2 0 +8-Jan 3 1 +9-Jan 2 3 +10-Jan 4 3 +11-Jan 4 2 +12-Jan 4 2 +13-Jan 3 1 +14-Jan 3 1 +15-Jan 1 1 +16-Jan 3 3 +17-Jan 2 2 +18-Jan 3 3 +19-Jan 1 3 +20-Jan 3 2 +21-Jan 4 0 +22-Jan 2 0 +23-Jan 3 1 +24-Jan 4 3 +25-Jan 1 4 +26-Jan 0 1 +27-Jan 1 2 +28-Jan 1 2 +29-Jan 1 2 +30-Jan 1 4 +31-Jan 2 5 +1-Feb 2 4 +2-Feb 1 2 +3-Feb 1 3 +4-Feb 1 3 +5-Feb 2 3 +6-Feb 2 3 +7-Feb 1 4 +8-Feb 0 3 +9-Feb 0 2 +10-Feb 0 2 +11-Feb 0 2 +12-Feb 1 2 +13-Feb 1 2 +14-Feb 4 4 +15-Feb 2 3 +16-Feb 2 5 +17-Feb 3 3 +18-Feb 2 3 +19-Feb 2 2 +20-Feb 2 7 +21-Feb 2 5 +22-Feb 1 0 +23-Feb 2 6 +24-Feb 3 5 +25-Feb 1 1 +26-Feb 1 4 +27-Feb 3 5 +28-Feb 2 4 +1-Mar 6 4 +2-Mar 2 8 +3-Mar 1 6 +4-Mar 0 6 +5-Mar 0 1 +6-Mar 3 0 +7-Mar 3 0 +8-Mar 1 1 +9-Mar 0 2 +10-Mar 2 0 +11-Mar 1 1 +12-Mar 0 0 +13-Mar 2 2 +14-Mar 2 1 +15-Mar 2 3 +16-Mar 0 2 +17-Mar 0 1 +18-Mar 0 2 +19-Mar 0 2 +20-Mar 2 2 +21-Mar 0 2 +22-Mar 1 2 +23-Mar 4 0 +24-Mar 0 0 +25-Mar 1 0 +26-Mar 0 0 +27-Mar 0 0 +28-Mar 1 1 +29-Mar 1 1 +30-Mar 0 1 +31-Mar 1 0 +1-Apr 1 0 +2-Apr 1 0 +3-Apr 0 0 +4-Apr 2 3 +5-Apr 1 1 +6-Apr 1 0 +7-Apr 0 0 +8-Apr 0 1 +9-Apr 1 3 +10-Apr 0 0 +11-Apr 0 1 +12-Apr 0 1 +13-Apr 0 2 +14-Apr 2 1 +15-Apr 1 1 +16-Apr 0 3 +17-Apr 1 1 +18-Apr 0 2 +19-Apr 0 3 +20-Apr 0 1 +21-Apr 2 1 +22-Apr 0 0 +23-Apr 1 3 +24-Apr 1 1 +25-Apr 1 0 +26-Apr 1 1 +27-Apr 0 4 +28-Apr 0 0 +29-Apr 0 0 +30-Apr 1 0 +1-May 2 0 +2-May 0 2 +3-May 1 0 +4-May 1 1 +5-May 0 0 +6-May 1 1 +7-May 2 4 +8-May 2 1 +9-May 2 0 +10-May 0 0 +11-May 1 0 +12-May 1 0 +13-May 1 0 +14-May 1 0 +15-May 3 1 +16-May 0 1 +17-May 2 0 +18-May 0 0 +19-May 0 1 +20-May 2 2 +21-May 2 1 +22-May 1 1 +23-May 1 2 +24-May 1 3 +25-May 1 0 +26-May 2 1 +27-May 1 3 +28-May 2 3 +29-May 0 4 +30-May 0 5 +31-May 1 1 +1-Jun 1 3 +2-Jun 2 1 +3-Jun 2 1 +4-Jun 1 0 +5-Jun 0 4 +6-Jun 0 3 +7-Jun 0 3 +8-Jun 1 0 +9-Jun 2 1 +10-Jun 2 1 +11-Jun 1 0 +12-Jun 0 1 +13-Jun 0 1 +14-Jun 0 1 +15-Jun 1 3 +16-Jun 2 0 +17-Jun 1 4 +18-Jun 1 3 +19-Jun 2 2 +20-Jun 1 2 +21-Jun 2 5 +22-Jun 1 2 +23-Jun 3 1 +24-Jun 3 1 +25-Jun 3 3 +26-Jun 2 3 +27-Jun 1 0 +28-Jun 3 1 +29-Jun 1 2 +30-Jun 0 0 +1-Jul 1 3 +2-Jul 4 2 +3-Jul 3 1 +4-Jul 2 2 +5-Jul 2 3 +6-Jul 0 1 +7-Jul 4 1 +8-Jul 1 1 +9-Jul 2 1 +10-Jul 0 4 +11-Jul 4 1 +12-Jul 3 5 +13-Jul 3 1 +14-Jul 4 2 +15-Jul 2 0 +16-Jul 4 2 +17-Jul 2 2 +18-Jul 3 1 +19-Jul 4 1 +20-Jul 4 0 +21-Jul 4 1 +22-Jul 1 0 +23-Jul 4 0 +24-Jul 5 1 +25-Jul 2 2 +26-Jul 4 2 +27-Jul 4 2 +28-Jul 2 3 +29-Jul 3 0 +30-Jul 2 1 +31-Jul 2 1 +1-Aug 3 1 +2-Aug 6 1 +3-Aug 3 2 +4-Aug 3 0 +5-Aug 3 2 +6-Aug 3 2 +7-Aug 7 1 +8-Aug 8 1 +9-Aug 2 1 +10-Aug 1 0 +11-Aug 5 1 +12-Aug 4 0 +13-Aug 7 2 +14-Aug 2 3 +15-Aug 5 4 +16-Aug 2 2 +17-Aug 1 0 +18-Aug 6 2 +19-Aug 3 0 +20-Aug 3 1 +21-Aug 3 0 +22-Aug 5 0 +23-Aug 2 1 +24-Aug 3 1 +25-Aug 2 1 +26-Aug 2 0 +27-Aug 0 0 +28-Aug 1 2 +29-Aug 2 0 +30-Aug 2 0 +31-Aug 0 2 +1-Sep 2 1 +2-Sep 1 4 +3-Sep 0 1 +4-Sep 3 1 +5-Sep 1 3 +6-Sep 2 2 +7-Sep 3 2 +8-Sep 3 1 +9-Sep 2 3 +10-Sep 2 1 +11-Sep 2 2 +12-Sep 3 1 +13-Sep 2 1 +14-Sep 1 3 +15-Sep 1 3 +16-Sep 0 2 +17-Sep 4 0 +18-Sep 3 1 +19-Sep 4 6 +20-Sep 1 3 +21-Sep 4 1 +22-Sep 4 3 +23-Sep 6 1 +24-Sep 1 2 +25-Sep 2 1 +26-Sep 4 1 +27-Sep 2 2 +28-Sep 4 2 +29-Sep 1 3 +30-Sep 4 1 +1-Oct 1 2 +2-Oct 2 1 +3-Oct 2 3 +4-Oct 5 3 +5-Oct 1 3 +6-Oct 3 1 +7-Oct 1 1 +8-Oct 1 0 +9-Oct 3 4 +10-Oct 0 3 +11-Oct 1 2 +12-Oct 2 0 +13-Oct 1 4 +14-Oct 2 5 +15-Oct 5 2 +16-Oct 8 5 +17-Oct 4 4 +18-Oct 8 2 +19-Oct 12 5 +20-Oct 10 1 +21-Oct 2 1 +22-Oct 6 1 +23-Oct 2 2 +24-Oct 2 2 +25-Oct 1 4 +26-Oct 5 5 +27-Oct 2 2 +28-Oct 3 0 +29-Oct 2 1 +30-Oct 2 1 +31-Oct 1 1 +1-Nov 3 2 +2-Nov 4 1 +3-Nov 5 2 +4-Nov 2 2 +5-Nov 3 1 +6-Nov 3 2 +7-Nov 1 3 +8-Nov 1 1 +9-Nov 3 1 +10-Nov 0 0 +11-Nov 1 1 +12-Nov 1 0 +13-Nov 4 0 +14-Nov 0 0 +15-Nov 3 2 +16-Nov 6 0 +17-Nov 2 2 +18-Nov 0 0 +19-Nov 3 1 +20-Nov 1 1 +21-Nov 3 1 +22-Nov 0 2 +23-Nov 2 1 +24-Nov 2 0 +25-Nov 0 0 +26-Nov 0 1 +27-Nov 0 2 +28-Nov 0 2 +29-Nov 0 1 +30-Nov 0 0 +1-Dec 0 0 +2-Dec 0 0 +3-Dec 0 3 +4-Dec 0 0 +5-Dec 0 1 +6-Dec 0 3 +7-Dec 0 1 +8-Dec 0 1 +9-Dec 0 2 +10-Dec 0 2 +11-Dec 0 0 +12-Dec 0 2 +13-Dec 0 0 +14-Dec 0 0 +15-Dec 0 0 +16-Dec 0 2 +17-Dec 0 1 +18-Dec 0 4 +19-Dec 0 0 +20-Dec 0 3 +21-Dec 0 0 +22-Dec 0 0 +23-Dec 0 0 +24-Dec 0 1 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 0 1 +28-Dec 0 2 +29-Dec 0 0 +30-Dec 0 0 +31-Dec 0 2 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2019_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2019_salvini_trends.tsv new file mode 100644 index 0000000..b5e336d --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/2019_renzi_2019_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-19 Salvini-19 +1-Jan 0 0 +2-Jan 5 1 +3-Jan 4 2 +4-Jan 4 4 +5-Jan 5 3 +6-Jan 1 1 +7-Jan 2 0 +8-Jan 3 1 +9-Jan 2 1 +10-Jan 4 1 +11-Jan 4 1 +12-Jan 4 0 +13-Jan 3 1 +14-Jan 3 3 +15-Jan 1 0 +16-Jan 3 5 +17-Jan 2 1 +18-Jan 3 3 +19-Jan 1 1 +20-Jan 3 2 +21-Jan 4 0 +22-Jan 2 1 +23-Jan 3 0 +24-Jan 4 1 +25-Jan 1 2 +26-Jan 0 0 +27-Jan 1 1 +28-Jan 1 1 +29-Jan 1 0 +30-Jan 1 1 +31-Jan 2 0 +1-Feb 2 3 +2-Feb 1 1 +3-Feb 1 3 +4-Feb 1 1 +5-Feb 2 1 +6-Feb 2 2 +7-Feb 1 2 +8-Feb 0 0 +9-Feb 0 2 +10-Feb 0 3 +11-Feb 0 1 +12-Feb 1 0 +13-Feb 1 1 +14-Feb 4 0 +15-Feb 2 0 +16-Feb 2 0 +17-Feb 3 2 +18-Feb 2 3 +19-Feb 2 2 +20-Feb 2 4 +21-Feb 2 4 +22-Feb 1 2 +23-Feb 2 1 +24-Feb 3 1 +25-Feb 1 2 +26-Feb 1 0 +27-Feb 3 2 +28-Feb 2 1 +1-Mar 6 1 +2-Mar 2 0 +3-Mar 1 0 +4-Mar 0 1 +5-Mar 0 1 +6-Mar 3 0 +7-Mar 3 1 +8-Mar 1 3 +9-Mar 0 0 +10-Mar 2 1 +11-Mar 1 1 +12-Mar 0 2 +13-Mar 2 1 +14-Mar 2 1 +15-Mar 2 3 +16-Mar 0 3 +17-Mar 0 2 +18-Mar 0 3 +19-Mar 0 1 +20-Mar 2 1 +21-Mar 0 3 +22-Mar 1 4 +23-Mar 4 1 +24-Mar 0 0 +25-Mar 1 1 +26-Mar 0 0 +27-Mar 0 1 +28-Mar 1 2 +29-Mar 1 2 +30-Mar 0 1 +31-Mar 1 0 +1-Apr 1 3 +2-Apr 1 1 +3-Apr 0 0 +4-Apr 2 1 +5-Apr 1 1 +6-Apr 1 4 +7-Apr 0 2 +8-Apr 0 6 +9-Apr 1 0 +10-Apr 0 3 +11-Apr 0 1 +12-Apr 0 1 +13-Apr 0 0 +14-Apr 2 0 +15-Apr 1 2 +16-Apr 0 0 +17-Apr 1 3 +18-Apr 0 1 +19-Apr 0 3 +20-Apr 0 0 +21-Apr 2 0 +22-Apr 0 0 +23-Apr 1 1 +24-Apr 1 1 +25-Apr 1 4 +26-Apr 1 2 +27-Apr 0 2 +28-Apr 0 0 +29-Apr 0 1 +30-Apr 1 1 +1-May 2 4 +2-May 0 3 +3-May 1 8 +4-May 1 3 +5-May 0 2 +6-May 1 3 +7-May 2 6 +8-May 2 2 +9-May 2 6 +10-May 0 3 +11-May 1 0 +12-May 1 5 +13-May 1 6 +14-May 1 4 +15-May 3 3 +16-May 0 4 +17-May 2 6 +18-May 0 6 +19-May 0 5 +20-May 2 5 +21-May 2 5 +22-May 1 5 +23-May 1 3 +24-May 1 6 +25-May 1 2 +26-May 2 0 +27-May 1 0 +28-May 2 2 +29-May 0 2 +30-May 0 2 +31-May 1 2 +1-Jun 1 3 +2-Jun 2 2 +3-Jun 2 3 +4-Jun 1 5 +5-Jun 0 4 +6-Jun 0 2 +7-Jun 0 4 +8-Jun 1 2 +9-Jun 2 0 +10-Jun 2 0 +11-Jun 1 1 +12-Jun 0 2 +13-Jun 0 0 +14-Jun 0 1 +15-Jun 1 0 +16-Jun 2 0 +17-Jun 1 5 +18-Jun 1 0 +19-Jun 2 1 +20-Jun 1 1 +21-Jun 2 2 +22-Jun 1 0 +23-Jun 3 0 +24-Jun 3 0 +25-Jun 3 0 +26-Jun 2 3 +27-Jun 1 2 +28-Jun 3 3 +29-Jun 1 3 +30-Jun 0 1 +1-Jul 1 1 +2-Jul 4 0 +3-Jul 3 1 +4-Jul 2 0 +5-Jul 2 1 +6-Jul 0 4 +7-Jul 4 0 +8-Jul 1 0 +9-Jul 2 2 +10-Jul 0 1 +11-Jul 4 1 +12-Jul 3 1 +13-Jul 3 3 +14-Jul 4 0 +15-Jul 2 2 +16-Jul 4 1 +17-Jul 2 2 +18-Jul 3 1 +19-Jul 4 2 +20-Jul 4 0 +21-Jul 4 1 +22-Jul 1 1 +23-Jul 4 0 +24-Jul 5 2 +25-Jul 2 3 +26-Jul 4 1 +27-Jul 4 0 +28-Jul 2 0 +29-Jul 3 0 +30-Jul 2 0 +31-Jul 2 0 +1-Aug 3 2 +2-Aug 6 0 +3-Aug 3 1 +4-Aug 3 1 +5-Aug 3 2 +6-Aug 3 3 +7-Aug 7 1 +8-Aug 8 1 +9-Aug 2 4 +10-Aug 1 3 +11-Aug 5 2 +12-Aug 4 1 +13-Aug 7 2 +14-Aug 2 3 +15-Aug 5 2 +16-Aug 2 0 +17-Aug 1 0 +18-Aug 6 2 +19-Aug 3 1 +20-Aug 3 2 +21-Aug 3 1 +22-Aug 5 1 +23-Aug 2 1 +24-Aug 3 0 +25-Aug 2 0 +26-Aug 2 1 +27-Aug 0 0 +28-Aug 1 3 +29-Aug 2 2 +30-Aug 2 1 +31-Aug 0 1 +1-Sep 2 3 +2-Sep 1 2 +3-Sep 0 1 +4-Sep 3 2 +5-Sep 1 1 +6-Sep 2 2 +7-Sep 3 1 +8-Sep 3 2 +9-Sep 2 5 +10-Sep 2 2 +11-Sep 2 2 +12-Sep 3 1 +13-Sep 2 2 +14-Sep 1 1 +15-Sep 1 5 +16-Sep 0 1 +17-Sep 4 2 +18-Sep 3 2 +19-Sep 4 2 +20-Sep 1 0 +21-Sep 4 3 +22-Sep 4 2 +23-Sep 6 3 +24-Sep 1 2 +25-Sep 2 1 +26-Sep 4 5 +27-Sep 2 3 +28-Sep 4 2 +29-Sep 1 3 +30-Sep 4 3 +1-Oct 1 5 +2-Oct 2 3 +3-Oct 2 5 +4-Oct 5 2 +5-Oct 1 1 +6-Oct 3 0 +7-Oct 1 3 +8-Oct 1 3 +9-Oct 3 1 +10-Oct 0 1 +11-Oct 1 1 +12-Oct 2 2 +13-Oct 1 2 +14-Oct 2 1 +15-Oct 5 0 +16-Oct 8 0 +17-Oct 4 1 +18-Oct 8 1 +19-Oct 12 1 +20-Oct 10 1 +21-Oct 2 5 +22-Oct 6 2 +23-Oct 2 5 +24-Oct 2 4 +25-Oct 1 4 +26-Oct 5 2 +27-Oct 2 0 +28-Oct 3 6 +29-Oct 2 3 +30-Oct 2 5 +31-Oct 1 3 +1-Nov 3 1 +2-Nov 4 2 +3-Nov 5 1 +4-Nov 2 16 +5-Nov 3 17 +6-Nov 3 21 +7-Nov 1 19 +8-Nov 1 16 +9-Nov 3 18 +10-Nov 0 24 +11-Nov 1 19 +12-Nov 1 16 +13-Nov 4 18 +14-Nov 0 35 +15-Nov 3 12 +16-Nov 6 9 +17-Nov 2 12 +18-Nov 0 19 +19-Nov 3 23 +20-Nov 1 18 +21-Nov 3 19 +22-Nov 0 20 +23-Nov 2 21 +24-Nov 2 22 +25-Nov 0 1 +26-Nov 0 0 +27-Nov 0 0 +28-Nov 0 0 +29-Nov 0 0 +30-Nov 0 0 +1-Dec 0 0 +2-Dec 0 0 +3-Dec 0 0 +4-Dec 0 0 +5-Dec 0 0 +6-Dec 0 0 +7-Dec 0 0 +8-Dec 0 0 +9-Dec 0 0 +10-Dec 0 0 +11-Dec 0 0 +12-Dec 0 0 +13-Dec 0 0 +14-Dec 0 0 +15-Dec 0 0 +16-Dec 0 0 +17-Dec 0 0 +18-Dec 0 0 +19-Dec 0 0 +20-Dec 0 0 +21-Dec 0 0 +22-Dec 0 0 +23-Dec 0 0 +24-Dec 0 0 +25-Dec 0 0 +26-Dec 0 0 +27-Dec 0 0 +28-Dec 0 0 +29-Dec 0 0 +30-Dec 0 0 +31-Dec 0 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/trends/all_renzi_all_salvini_trends.tsv b/anno3/avrc/assignments/dataviz/dataset/trends/all_renzi_all_salvini_trends.tsv new file mode 100644 index 0000000..214669c --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/trends/all_renzi_all_salvini_trends.tsv @@ -0,0 +1,366 @@ +date Renzi-l Salvini-l +70-Jan-1 0 0 +70-Jan-2 0 0 +70-Jan-3 0 0 +70-Jan-4 0 0 +70-Jan-5 0 0 +70-Jan-6 0 0 +70-Jan-7 0 0 +70-Jan-8 0 0 +70-Jan-9 0 0 +70-Jan-10 0 0 +70-Jan-11 0 0 +70-Jan-12 0 0 +70-Jan-13 0 0 +70-Jan-14 0 0 +70-Jan-15 0 0 +70-Jan-16 0 0 +70-Jan-17 0 0 +70-Jan-18 0 0 +70-Jan-19 0 0 +70-Jan-20 0 0 +70-Jan-21 0 0 +70-Jan-22 0 0 +70-Jan-23 0 0 +70-Jan-24 0 0 +70-Jan-25 0 0 +70-Jan-26 0 0 +70-Jan-27 0 0 +70-Jan-28 0 0 +70-Jan-29 0 0 +70-Jan-30 0 0 +70-Jan-31 0 0 +70-Feb-1 0 0 +70-Feb-2 0 0 +70-Feb-3 0 0 +70-Feb-4 0 0 +70-Feb-5 0 0 +70-Feb-6 0 0 +70-Feb-7 0 0 +70-Feb-8 0 0 +70-Feb-9 0 0 +70-Feb-10 0 0 +70-Feb-11 0 0 +70-Feb-12 0 0 +70-Feb-13 0 0 +70-Feb-14 0 0 +70-Feb-15 0 0 +70-Feb-16 0 0 +70-Feb-17 0 0 +70-Feb-18 0 0 +70-Feb-19 0 0 +70-Feb-20 0 0 +70-Feb-21 0 0 +70-Feb-22 0 0 +70-Feb-23 0 0 +70-Feb-24 0 0 +70-Feb-25 0 0 +70-Feb-26 0 0 +70-Feb-27 0 0 +70-Feb-28 0 0 +70-Mar-1 0 0 +70-Mar-2 0 0 +70-Mar-3 0 0 +70-Mar-4 0 0 +70-Mar-5 0 0 +70-Mar-6 0 0 +70-Mar-7 0 0 +70-Mar-8 0 0 +70-Mar-9 0 0 +70-Mar-10 0 0 +70-Mar-11 0 0 +70-Mar-12 0 0 +70-Mar-13 0 0 +70-Mar-14 0 0 +70-Mar-15 0 0 +70-Mar-16 0 0 +70-Mar-17 0 0 +70-Mar-18 0 0 +70-Mar-19 0 0 +70-Mar-20 0 0 +70-Mar-21 0 0 +70-Mar-22 0 0 +70-Mar-23 0 0 +70-Mar-24 0 0 +70-Mar-25 0 0 +70-Mar-26 0 0 +70-Mar-27 0 0 +70-Mar-28 0 0 +70-Mar-29 0 0 +70-Mar-30 0 0 +70-Mar-31 0 0 +70-Apr-1 0 0 +70-Apr-2 0 0 +70-Apr-3 0 0 +70-Apr-4 0 0 +70-Apr-5 0 0 +70-Apr-6 0 0 +70-Apr-7 0 0 +70-Apr-8 0 0 +70-Apr-9 0 0 +70-Apr-10 0 0 +70-Apr-11 0 0 +70-Apr-12 0 0 +70-Apr-13 0 0 +70-Apr-14 0 0 +70-Apr-15 0 0 +70-Apr-16 0 0 +70-Apr-17 0 0 +70-Apr-18 0 0 +70-Apr-19 0 0 +70-Apr-20 0 0 +70-Apr-21 0 0 +70-Apr-22 0 0 +70-Apr-23 0 0 +70-Apr-24 0 0 +70-Apr-25 0 0 +70-Apr-26 0 0 +70-Apr-27 0 0 +70-Apr-28 0 0 +70-Apr-29 0 0 +70-Apr-30 0 0 +70-May-1 0 0 +70-May-2 0 0 +70-May-3 0 0 +70-May-4 0 0 +70-May-5 0 0 +70-May-6 0 0 +70-May-7 0 0 +70-May-8 0 0 +70-May-9 0 0 +70-May-10 0 0 +70-May-11 0 0 +70-May-12 0 0 +70-May-13 0 0 +70-May-14 0 0 +70-May-15 0 0 +70-May-16 0 0 +70-May-17 0 0 +70-May-18 0 0 +70-May-19 0 0 +70-May-20 0 0 +70-May-21 0 0 +70-May-22 0 0 +70-May-23 0 0 +70-May-24 0 0 +70-May-25 0 0 +70-May-26 0 0 +70-May-27 0 0 +70-May-28 0 0 +70-May-29 0 0 +70-May-30 0 0 +70-May-31 0 0 +70-Jun-1 0 0 +70-Jun-2 0 0 +70-Jun-3 0 0 +70-Jun-4 0 0 +70-Jun-5 0 0 +70-Jun-6 0 0 +70-Jun-7 0 0 +70-Jun-8 0 0 +70-Jun-9 0 0 +70-Jun-10 0 0 +70-Jun-11 0 0 +70-Jun-12 0 0 +70-Jun-13 0 0 +70-Jun-14 0 0 +70-Jun-15 0 0 +70-Jun-16 0 0 +70-Jun-17 0 0 +70-Jun-18 0 0 +70-Jun-19 0 0 +70-Jun-20 0 0 +70-Jun-21 0 0 +70-Jun-22 0 0 +70-Jun-23 0 0 +70-Jun-24 0 0 +70-Jun-25 0 0 +70-Jun-26 0 0 +70-Jun-27 0 0 +70-Jun-28 0 0 +70-Jun-29 0 0 +70-Jun-30 0 0 +70-Jul-1 0 0 +70-Jul-2 0 0 +70-Jul-3 0 0 +70-Jul-4 0 0 +70-Jul-5 0 0 +70-Jul-6 0 0 +70-Jul-7 0 0 +70-Jul-8 0 0 +70-Jul-9 0 0 +70-Jul-10 0 0 +70-Jul-11 0 0 +70-Jul-12 0 0 +70-Jul-13 0 0 +70-Jul-14 0 0 +70-Jul-15 0 0 +70-Jul-16 0 0 +70-Jul-17 0 0 +70-Jul-18 0 0 +70-Jul-19 0 0 +70-Jul-20 0 0 +70-Jul-21 0 0 +70-Jul-22 0 0 +70-Jul-23 0 0 +70-Jul-24 0 0 +70-Jul-25 0 0 +70-Jul-26 0 0 +70-Jul-27 0 0 +70-Jul-28 0 0 +70-Jul-29 0 0 +70-Jul-30 0 0 +70-Jul-31 0 0 +70-Aug-1 0 0 +70-Aug-2 0 0 +70-Aug-3 0 0 +70-Aug-4 0 0 +70-Aug-5 0 0 +70-Aug-6 0 0 +70-Aug-7 0 0 +70-Aug-8 0 0 +70-Aug-9 0 0 +70-Aug-10 0 0 +70-Aug-11 0 0 +70-Aug-12 0 0 +70-Aug-13 0 0 +70-Aug-14 0 0 +70-Aug-15 0 0 +70-Aug-16 0 0 +70-Aug-17 0 0 +70-Aug-18 0 0 +70-Aug-19 0 0 +70-Aug-20 0 0 +70-Aug-21 0 0 +70-Aug-22 0 0 +70-Aug-23 0 0 +70-Aug-24 0 0 +70-Aug-25 0 0 +70-Aug-26 0 0 +70-Aug-27 0 0 +70-Aug-28 0 0 +70-Aug-29 0 0 +70-Aug-30 0 0 +70-Aug-31 0 0 +70-Sep-1 0 0 +70-Sep-2 0 0 +70-Sep-3 0 0 +70-Sep-4 0 0 +70-Sep-5 0 0 +70-Sep-6 0 0 +70-Sep-7 0 0 +70-Sep-8 0 0 +70-Sep-9 0 0 +70-Sep-10 0 0 +70-Sep-11 0 0 +70-Sep-12 0 0 +70-Sep-13 0 0 +70-Sep-14 0 0 +70-Sep-15 0 0 +70-Sep-16 0 0 +70-Sep-17 0 0 +70-Sep-18 0 0 +70-Sep-19 0 0 +70-Sep-20 0 0 +70-Sep-21 0 0 +70-Sep-22 0 0 +70-Sep-23 0 0 +70-Sep-24 0 0 +70-Sep-25 0 0 +70-Sep-26 0 0 +70-Sep-27 0 0 +70-Sep-28 0 0 +70-Sep-29 0 0 +70-Sep-30 0 0 +70-Oct-1 0 0 +70-Oct-2 0 0 +70-Oct-3 0 0 +70-Oct-4 0 0 +70-Oct-5 0 0 +70-Oct-6 0 0 +70-Oct-7 0 0 +70-Oct-8 0 0 +70-Oct-9 0 0 +70-Oct-10 0 0 +70-Oct-11 0 0 +70-Oct-12 0 0 +70-Oct-13 0 0 +70-Oct-14 0 0 +70-Oct-15 0 0 +70-Oct-16 0 0 +70-Oct-17 0 0 +70-Oct-18 0 0 +70-Oct-19 0 0 +70-Oct-20 0 0 +70-Oct-21 0 0 +70-Oct-22 0 0 +70-Oct-23 0 0 +70-Oct-24 0 0 +70-Oct-25 0 0 +70-Oct-26 0 0 +70-Oct-27 0 0 +70-Oct-28 0 0 +70-Oct-29 0 0 +70-Oct-30 0 0 +70-Oct-31 0 0 +70-Nov-1 0 0 +70-Nov-2 0 0 +70-Nov-3 0 0 +70-Nov-4 0 0 +70-Nov-5 0 0 +70-Nov-6 0 0 +70-Nov-7 0 0 +70-Nov-8 0 0 +70-Nov-9 0 0 +70-Nov-10 0 0 +70-Nov-11 0 0 +70-Nov-12 0 0 +70-Nov-13 0 0 +70-Nov-14 0 0 +70-Nov-15 0 0 +70-Nov-16 0 0 +70-Nov-17 0 0 +70-Nov-18 0 0 +70-Nov-19 0 0 +70-Nov-20 0 0 +70-Nov-21 0 0 +70-Nov-22 0 0 +70-Nov-23 0 0 +70-Nov-24 0 0 +70-Nov-25 0 0 +70-Nov-26 0 0 +70-Nov-27 0 0 +70-Nov-28 0 0 +70-Nov-29 0 0 +70-Nov-30 0 0 +70-Dec-1 0 0 +70-Dec-2 0 0 +70-Dec-3 0 0 +70-Dec-4 0 0 +70-Dec-5 0 0 +70-Dec-6 0 0 +70-Dec-7 0 0 +70-Dec-8 0 0 +70-Dec-9 0 0 +70-Dec-10 0 0 +70-Dec-11 0 0 +70-Dec-12 0 0 +70-Dec-13 0 0 +70-Dec-14 0 0 +70-Dec-15 0 0 +70-Dec-16 0 0 +70-Dec-17 0 0 +70-Dec-18 0 0 +70-Dec-19 0 0 +70-Dec-20 0 0 +70-Dec-21 0 0 +70-Dec-22 0 0 +70-Dec-23 0 0 +70-Dec-24 0 0 +70-Dec-25 0 0 +70-Dec-26 0 0 +70-Dec-27 0 0 +70-Dec-28 0 0 +70-Dec-29 0 0 +70-Dec-30 0 0 +70-Dec-31 0 0 diff --git a/anno3/avrc/assignments/dataviz/dataset/world_cities.json b/anno3/avrc/assignments/dataviz/dataset/world_cities.json new file mode 100644 index 0000000..86d95b0 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dataset/world_cities.json @@ -0,0 +1,1418512 @@ +[ + { + "id": "52", + "name": "Ashkāsham", + "state_id": 3901, + "state_code": "BDS", + "country_id": 1, + "country_code": "AF", + "latitude": "36.68333000", + "longitude": "71.53333000" + }, + { + "id": "68", + "name": "Fayzabad", + "state_id": 3901, + "state_code": "BDS", + "country_id": 1, + "country_code": "AF", + "latitude": "37.11664000", + "longitude": "70.58002000" + }, + { + "id": "78", + "name": "Jurm", + "state_id": 3901, + "state_code": "BDS", + "country_id": 1, + "country_code": "AF", + "latitude": "36.86477000", + "longitude": "70.83421000" + }, + { + "id": "84", + "name": "Khandūd", + "state_id": 3901, + "state_code": "BDS", + "country_id": 1, + "country_code": "AF", + "latitude": "36.95127000", + "longitude": "72.31800000" + }, + { + "id": "115", + "name": "Rāghistān", + "state_id": 3901, + "state_code": "BDS", + "country_id": 1, + "country_code": "AF", + "latitude": "37.66079000", + "longitude": "70.67346000" + }, + { + "id": "131", + "name": "Wākhān", + "state_id": 3901, + "state_code": "BDS", + "country_id": 1, + "country_code": "AF", + "latitude": "37.05710000", + "longitude": "73.34928000" + }, + { + "id": "72", + "name": "Ghormach", + "state_id": 3871, + "state_code": "BDG", + "country_id": 1, + "country_code": "AF", + "latitude": "35.73062000", + "longitude": "63.78264000" + }, + { + "id": "108", + "name": "Qala i Naw", + "state_id": 3871, + "state_code": "BDG", + "country_id": 1, + "country_code": "AF", + "latitude": "34.98735000", + "longitude": "63.12891000" + }, + { + "id": "140", + "name": "Ḩukūmatī Dahanah-ye Ghōrī", + "state_id": 3875, + "state_code": "BGL", + "country_id": 1, + "country_code": "AF", + "latitude": "35.90617000", + "longitude": "68.48869000" + }, + { + "id": "54", + "name": "Baghlān", + "state_id": 3875, + "state_code": "BGL", + "country_id": 1, + "country_code": "AF", + "latitude": "36.13068000", + "longitude": "68.70829000" + }, + { + "id": "101", + "name": "Nahrīn", + "state_id": 3875, + "state_code": "BGL", + "country_id": 1, + "country_code": "AF", + "latitude": "36.06490000", + "longitude": "69.13343000" + }, + { + "id": "105", + "name": "Pul-e Khumrī", + "state_id": 3875, + "state_code": "BGL", + "country_id": 1, + "country_code": "AF", + "latitude": "35.94458000", + "longitude": "68.71512000" + }, + { + "id": "55", + "name": "Balkh", + "state_id": 3884, + "state_code": "BAL", + "country_id": 1, + "country_code": "AF", + "latitude": "36.75635000", + "longitude": "66.89720000" + }, + { + "id": "65", + "name": "Dowlatābād", + "state_id": 3884, + "state_code": "BAL", + "country_id": 1, + "country_code": "AF", + "latitude": "36.98821000", + "longitude": "66.82069000" + }, + { + "id": "85", + "name": "Khulm", + "state_id": 3884, + "state_code": "BAL", + "country_id": 1, + "country_code": "AF", + "latitude": "36.69736000", + "longitude": "67.69826000" + }, + { + "id": "91", + "name": "Lab-Sar", + "state_id": 3884, + "state_code": "BAL", + "country_id": 1, + "country_code": "AF", + "latitude": "36.02634000", + "longitude": "66.83799000" + }, + { + "id": "97", + "name": "Mazār-e Sharīf", + "state_id": 3884, + "state_code": "BAL", + "country_id": 1, + "country_code": "AF", + "latitude": "36.70904000", + "longitude": "67.11087000" + }, + { + "id": "112", + "name": "Qarchī Gak", + "state_id": 3884, + "state_code": "BAL", + "country_id": 1, + "country_code": "AF", + "latitude": "37.03999000", + "longitude": "66.78891000" + }, + { + "id": "57", + "name": "Bāmyān", + "state_id": 3872, + "state_code": "BAM", + "country_id": 1, + "country_code": "AF", + "latitude": "34.82156000", + "longitude": "67.82734000" + }, + { + "id": "104", + "name": "Panjāb", + "state_id": 3872, + "state_code": "BAM", + "country_id": 1, + "country_code": "AF", + "latitude": "34.38795000", + "longitude": "67.02327000" + }, + { + "id": "102", + "name": "Nīlī", + "state_id": 3892, + "state_code": "DAY", + "country_id": 1, + "country_code": "AF", + "latitude": "33.76329000", + "longitude": "66.07617000" + }, + { + "id": "66", + "name": "Farah", + "state_id": 3899, + "state_code": "FRA", + "country_id": 1, + "country_code": "AF", + "latitude": "32.37451000", + "longitude": "62.11638000" + }, + { + "id": "50", + "name": "Andkhōy", + "state_id": 3889, + "state_code": "FYB", + "country_id": 1, + "country_code": "AF", + "latitude": "36.95293000", + "longitude": "65.12376000" + }, + { + "id": "96", + "name": "Maymana", + "state_id": 3889, + "state_code": "FYB", + "country_id": 1, + "country_code": "AF", + "latitude": "35.92139000", + "longitude": "64.78361000" + }, + { + "id": "71", + "name": "Ghazni", + "state_id": 3870, + "state_code": "GHA", + "country_id": 1, + "country_code": "AF", + "latitude": "33.55391000", + "longitude": "68.42096000" + }, + { + "id": "67", + "name": "Fayrōz Kōh", + "state_id": 3888, + "state_code": "GHO", + "country_id": 1, + "country_code": "AF", + "latitude": "34.51952000", + "longitude": "65.25093000" + }, + { + "id": "121", + "name": "Shahrak", + "state_id": 3888, + "state_code": "GHO", + "country_id": 1, + "country_code": "AF", + "latitude": "34.10737000", + "longitude": "64.30520000" + }, + { + "id": "141", + "name": "‘Alāqahdārī Dīshū", + "state_id": 3873, + "state_code": "HEL", + "country_id": 1, + "country_code": "AF", + "latitude": "30.43206000", + "longitude": "63.29802000" + }, + { + "id": "70", + "name": "Gereshk", + "state_id": 3873, + "state_code": "HEL", + "country_id": 1, + "country_code": "AF", + "latitude": "31.82089000", + "longitude": "64.57005000" + }, + { + "id": "93", + "name": "Lashkar Gāh", + "state_id": 3873, + "state_code": "HEL", + "country_id": 1, + "country_code": "AF", + "latitude": "31.59382000", + "longitude": "64.37161000" + }, + { + "id": "95", + "name": "Markaz-e Ḩukūmat-e Darwēshān", + "state_id": 3873, + "state_code": "HEL", + "country_id": 1, + "country_code": "AF", + "latitude": "31.13231000", + "longitude": "64.19340000" + }, + { + "id": "118", + "name": "Sangīn", + "state_id": 3873, + "state_code": "HEL", + "country_id": 1, + "country_code": "AF", + "latitude": "32.07275000", + "longitude": "64.83590000" + }, + { + "id": "60", + "name": "Chahār Burj", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "34.24475000", + "longitude": "62.19165000" + }, + { + "id": "73", + "name": "Ghōriyān", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "34.34480000", + "longitude": "61.49321000" + }, + { + "id": "74", + "name": "Herāt", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "34.34817000", + "longitude": "62.19967000" + }, + { + "id": "80", + "name": "Kafir Qala", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "34.66667000", + "longitude": "61.06667000" + }, + { + "id": "82", + "name": "Karukh", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "34.48108000", + "longitude": "62.58630000" + }, + { + "id": "88", + "name": "Kuhsān", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "34.65389000", + "longitude": "61.19778000" + }, + { + "id": "90", + "name": "Kushk", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "33.29565000", + "longitude": "61.95221000" + }, + { + "id": "111", + "name": "Qarah Bāgh", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "34.94023000", + "longitude": "61.77589000" + }, + { + "id": "123", + "name": "Shīnḏanḏ", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "33.30294000", + "longitude": "62.14740000" + }, + { + "id": "129", + "name": "Tīr Pul", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "34.59431000", + "longitude": "61.26895000" + }, + { + "id": "135", + "name": "Zindah Jān", + "state_id": 3887, + "state_code": "HER", + "country_id": 1, + "country_code": "AF", + "latitude": "34.34264000", + "longitude": "61.74675000" + }, + { + "id": "136", + "name": "Āqchah", + "state_id": 3886, + "state_code": "JOW", + "country_id": 1, + "country_code": "AF", + "latitude": "36.90500000", + "longitude": "66.18341000" + }, + { + "id": "63", + "name": "Darzāb", + "state_id": 3886, + "state_code": "JOW", + "country_id": 1, + "country_code": "AF", + "latitude": "35.97744000", + "longitude": "65.37828000" + }, + { + "id": "113", + "name": "Qarqīn", + "state_id": 3886, + "state_code": "JOW", + "country_id": 1, + "country_code": "AF", + "latitude": "37.41853000", + "longitude": "66.04358000" + }, + { + "id": "122", + "name": "Shibirghān", + "state_id": 3886, + "state_code": "JOW", + "country_id": 1, + "country_code": "AF", + "latitude": "36.66757000", + "longitude": "65.75290000" + }, + { + "id": "79", + "name": "Kabul", + "state_id": 3902, + "state_code": "KAB", + "country_id": 1, + "country_code": "AF", + "latitude": "34.52813000", + "longitude": "69.17233000" + }, + { + "id": "99", + "name": "Mīr Bachah Kōṯ", + "state_id": 3902, + "state_code": "KAB", + "country_id": 1, + "country_code": "AF", + "latitude": "34.74999000", + "longitude": "69.11899000" + }, + { + "id": "103", + "name": "Paghmān", + "state_id": 3902, + "state_code": "KAB", + "country_id": 1, + "country_code": "AF", + "latitude": "34.58787000", + "longitude": "68.95091000" + }, + { + "id": "81", + "name": "Kandahār", + "state_id": 3890, + "state_code": "KAN", + "country_id": 1, + "country_code": "AF", + "latitude": "31.61332000", + "longitude": "65.71013000" + }, + { + "id": "124", + "name": "Sidqābād", + "state_id": 3879, + "state_code": "KAP", + "country_id": 1, + "country_code": "AF", + "latitude": "35.02298000", + "longitude": "69.35112000" + }, + { + "id": "87", + "name": "Khōst", + "state_id": 3878, + "state_code": "KHO", + "country_id": 1, + "country_code": "AF", + "latitude": "33.33951000", + "longitude": "69.92041000" + }, + { + "id": "51", + "name": "Asadābād", + "state_id": 3876, + "state_code": "KNR", + "country_id": 1, + "country_code": "AF", + "latitude": "34.87311000", + "longitude": "71.14697000" + }, + { + "id": "138", + "name": "Āsmār", + "state_id": 3876, + "state_code": "KNR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.03333000", + "longitude": "71.35809000" + }, + { + "id": "64", + "name": "Dasht-e Archī", + "state_id": 3900, + "state_code": "KDZ", + "country_id": 1, + "country_code": "AF", + "latitude": "37.13333000", + "longitude": "69.16667000" + }, + { + "id": "75", + "name": "Imām Şāḩib", + "state_id": 3900, + "state_code": "KDZ", + "country_id": 1, + "country_code": "AF", + "latitude": "37.18897000", + "longitude": "68.93644000" + }, + { + "id": "83", + "name": "Khanabad", + "state_id": 3900, + "state_code": "KDZ", + "country_id": 1, + "country_code": "AF", + "latitude": "36.68250000", + "longitude": "69.11556000" + }, + { + "id": "89", + "name": "Kunduz", + "state_id": 3900, + "state_code": "KDZ", + "country_id": 1, + "country_code": "AF", + "latitude": "36.72895000", + "longitude": "68.85700000" + }, + { + "id": "114", + "name": "Qarāwul", + "state_id": 3900, + "state_code": "KDZ", + "country_id": 1, + "country_code": "AF", + "latitude": "37.21959000", + "longitude": "68.78020000" + }, + { + "id": "98", + "name": "Mehtar Lām", + "state_id": 3891, + "state_code": "LAG", + "country_id": 1, + "country_code": "AF", + "latitude": "34.67139000", + "longitude": "70.20944000" + }, + { + "id": "139", + "name": "Ḩukūmatī Azrah", + "state_id": 3897, + "state_code": "LOG", + "country_id": 1, + "country_code": "AF", + "latitude": "34.17355000", + "longitude": "69.64573000" + }, + { + "id": "56", + "name": "Baraki Barak", + "state_id": 3897, + "state_code": "LOG", + "country_id": 1, + "country_code": "AF", + "latitude": "33.96744000", + "longitude": "68.94920000" + }, + { + "id": "106", + "name": "Pul-e ‘Alam", + "state_id": 3897, + "state_code": "LOG", + "country_id": 1, + "country_code": "AF", + "latitude": "33.99529000", + "longitude": "69.02274000" + }, + { + "id": "58", + "name": "Bāsawul", + "state_id": 3882, + "state_code": "NAN", + "country_id": 1, + "country_code": "AF", + "latitude": "34.24749000", + "longitude": "70.87218000" + }, + { + "id": "77", + "name": "Jalālābād", + "state_id": 3882, + "state_code": "NAN", + "country_id": 1, + "country_code": "AF", + "latitude": "34.42647000", + "longitude": "70.45153000" + }, + { + "id": "94", + "name": "Markaz-e Woluswalī-ye Āchīn", + "state_id": 3882, + "state_code": "NAN", + "country_id": 1, + "country_code": "AF", + "latitude": "34.12583000", + "longitude": "70.70778000" + }, + { + "id": "86", + "name": "Khāsh", + "state_id": 3896, + "state_code": "NIM", + "country_id": 1, + "country_code": "AF", + "latitude": "31.52919000", + "longitude": "62.79055000" + }, + { + "id": "100", + "name": "Mīrābād", + "state_id": 3896, + "state_code": "NIM", + "country_id": 1, + "country_code": "AF", + "latitude": "30.43624000", + "longitude": "61.83830000" + }, + { + "id": "116", + "name": "Rūdbār", + "state_id": 3896, + "state_code": "NIM", + "country_id": 1, + "country_code": "AF", + "latitude": "30.15000000", + "longitude": "62.60000000" + }, + { + "id": "132", + "name": "Zaranj", + "state_id": 3896, + "state_code": "NIM", + "country_id": 1, + "country_code": "AF", + "latitude": "30.95962000", + "longitude": "61.86037000" + }, + { + "id": "107", + "name": "Pārūn", + "state_id": 3880, + "state_code": "NUR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.42064000", + "longitude": "70.92261000" + }, + { + "id": "69", + "name": "Gardez", + "state_id": 3894, + "state_code": "PIA", + "country_id": 1, + "country_code": "AF", + "latitude": "33.59744000", + "longitude": "69.22592000" + }, + { + "id": "120", + "name": "Saṟōbī", + "state_id": 3877, + "state_code": "PKA", + "country_id": 1, + "country_code": "AF", + "latitude": "32.75221000", + "longitude": "69.04587000" + }, + { + "id": "134", + "name": "Zaṟah Sharan", + "state_id": 3877, + "state_code": "PKA", + "country_id": 1, + "country_code": "AF", + "latitude": "33.14641000", + "longitude": "68.79213000" + }, + { + "id": "133", + "name": "Zarghūn Shahr", + "state_id": 3877, + "state_code": "PKA", + "country_id": 1, + "country_code": "AF", + "latitude": "32.84734000", + "longitude": "68.44573000" + }, + { + "id": "59", + "name": "Bāzārak", + "state_id": 3881, + "state_code": "PAN", + "country_id": 1, + "country_code": "AF", + "latitude": "35.31292000", + "longitude": "69.51519000" + }, + { + "id": "61", + "name": "Charikar", + "state_id": 3895, + "state_code": "PAR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.01361000", + "longitude": "69.17139000" + }, + { + "id": "76", + "name": "Jabal os Saraj", + "state_id": 3895, + "state_code": "PAR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.11833000", + "longitude": "69.23778000" + }, + { + "id": "53", + "name": "Aībak", + "state_id": 3883, + "state_code": "SAM", + "country_id": 1, + "country_code": "AF", + "latitude": "36.26468000", + "longitude": "68.01551000" + }, + { + "id": "62", + "name": "Chīras", + "state_id": 3885, + "state_code": "SAR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.41674000", + "longitude": "65.98234000" + }, + { + "id": "92", + "name": "Larkird", + "state_id": 3885, + "state_code": "SAR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.48936000", + "longitude": "66.66409000" + }, + { + "id": "110", + "name": "Qal‘ah-ye Shahr", + "state_id": 3885, + "state_code": "SAR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.54729000", + "longitude": "65.56760000" + }, + { + "id": "117", + "name": "Sang-e Chārak", + "state_id": 3885, + "state_code": "SAR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.84972000", + "longitude": "66.43694000" + }, + { + "id": "119", + "name": "Sar-e Pul", + "state_id": 3885, + "state_code": "SAR", + "country_id": 1, + "country_code": "AF", + "latitude": "36.21544000", + "longitude": "65.93249000" + }, + { + "id": "125", + "name": "Tagāw-Bāy", + "state_id": 3885, + "state_code": "SAR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.69941000", + "longitude": "66.06164000" + }, + { + "id": "128", + "name": "Tukzār", + "state_id": 3885, + "state_code": "SAR", + "country_id": 1, + "country_code": "AF", + "latitude": "35.94831000", + "longitude": "66.42132000" + }, + { + "id": "137", + "name": "Ārt Khwājah", + "state_id": 3893, + "state_code": "TAK", + "country_id": 1, + "country_code": "AF", + "latitude": "37.08571000", + "longitude": "69.47958000" + }, + { + "id": "126", + "name": "Taloqan", + "state_id": 3893, + "state_code": "TAK", + "country_id": 1, + "country_code": "AF", + "latitude": "36.73605000", + "longitude": "69.53451000" + }, + { + "id": "127", + "name": "Tarinkot", + "state_id": 3898, + "state_code": "URU", + "country_id": 1, + "country_code": "AF", + "latitude": "32.62998000", + "longitude": "65.87806000" + }, + { + "id": "130", + "name": "Uruzgān", + "state_id": 3898, + "state_code": "URU", + "country_id": 1, + "country_code": "AF", + "latitude": "32.92775000", + "longitude": "66.63253000" + }, + { + "id": "109", + "name": "Qalāt", + "state_id": 3874, + "state_code": "ZAB", + "country_id": 1, + "country_code": "AF", + "latitude": "32.10575000", + "longitude": "66.90833000" + }, + { + "id": "280", + "name": "Çorovodë", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.50417000", + "longitude": "20.22722000" + }, + { + "id": "153", + "name": "Banaj", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.82492000", + "longitude": "19.84074000" + }, + { + "id": "154", + "name": "Bashkia Berat", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.69997000", + "longitude": "19.94983000" + }, + { + "id": "170", + "name": "Bashkia Kuçovë", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.82489000", + "longitude": "19.95350000" + }, + { + "id": "180", + "name": "Bashkia Poliçan", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.58608000", + "longitude": "20.04535000" + }, + { + "id": "186", + "name": "Bashkia Skrapar", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.56036000", + "longitude": "20.25477000" + }, + { + "id": "191", + "name": "Berat", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.70583000", + "longitude": "19.95222000" + }, + { + "id": "219", + "name": "Kuçovë", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.80028000", + "longitude": "19.91667000" + }, + { + "id": "238", + "name": "Poliçan", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.61222000", + "longitude": "20.09806000" + }, + { + "id": "242", + "name": "Rrethi i Beratit", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.66667000", + "longitude": "20.00000000" + }, + { + "id": "253", + "name": "Rrethi i Kuçovës", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.83333000", + "longitude": "19.91667000" + }, + { + "id": "258", + "name": "Rrethi i Skraparit", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.55000000", + "longitude": "20.26667000" + }, + { + "id": "273", + "name": "Ura Vajgurore", + "state_id": 629, + "state_code": "BR", + "country_id": 3, + "country_code": "AL", + "latitude": "40.76889000", + "longitude": "19.87778000" + }, + { + "id": "155", + "name": "Bashkia Bulqizë", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.47152000", + "longitude": "20.33192000" + }, + { + "id": "165", + "name": "Bashkia Klos", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.50826000", + "longitude": "20.07107000" + }, + { + "id": "176", + "name": "Bashkia Mat", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.63317000", + "longitude": "20.01228000" + }, + { + "id": "193", + "name": "Bulqizë", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.49167000", + "longitude": "20.22194000" + }, + { + "id": "194", + "name": "Burrel", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.61028000", + "longitude": "20.00889000" + }, + { + "id": "209", + "name": "Klos", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.50694000", + "longitude": "20.08667000" + }, + { + "id": "236", + "name": "Peshkopi", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.68500000", + "longitude": "20.42889000" + }, + { + "id": "243", + "name": "Rrethi i Bulqizës", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.50000000", + "longitude": "20.33333000" + }, + { + "id": "246", + "name": "Rrethi i Dibrës", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.75000000", + "longitude": "20.33333000" + }, + { + "id": "256", + "name": "Rrethi i Matit", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.58333000", + "longitude": "20.08333000" + }, + { + "id": "272", + "name": "Ulëz", + "state_id": 610, + "state_code": "09", + "country_id": 3, + "country_code": "AL", + "latitude": "41.68278000", + "longitude": "19.89333000" + }, + { + "id": "159", + "name": "Bashkia Durrës", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.42743000", + "longitude": "19.48690000" + }, + { + "id": "168", + "name": "Bashkia Krujë", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.50091000", + "longitude": "19.72571000" + }, + { + "id": "185", + "name": "Bashkia Shijak", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.33558000", + "longitude": "19.58977000" + }, + { + "id": "197", + "name": "Durrës", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.32355000", + "longitude": "19.45469000" + }, + { + "id": "198", + "name": "Durrës District", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.31660000", + "longitude": "19.45000000" + }, + { + "id": "203", + "name": "Fushë-Krujë", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.47833000", + "longitude": "19.71778000" + }, + { + "id": "214", + "name": "Krujë", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.50917000", + "longitude": "19.79278000" + }, + { + "id": "250", + "name": "Rrethi i Krujës", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.55000000", + "longitude": "19.75000000" + }, + { + "id": "265", + "name": "Shijak", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.34556000", + "longitude": "19.56722000" + }, + { + "id": "269", + "name": "Sukth", + "state_id": 639, + "state_code": "DR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.38056000", + "longitude": "19.53778000" + }, + { + "id": "152", + "name": "Ballsh", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.59889000", + "longitude": "19.73472000" + }, + { + "id": "157", + "name": "Bashkia Divjakë", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.95716000", + "longitude": "19.52364000" + }, + { + "id": "160", + "name": "Bashkia Fier", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.72937000", + "longitude": "19.48690000" + }, + { + "id": "174", + "name": "Bashkia Mallakastër", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.55669000", + "longitude": "19.77347000" + }, + { + "id": "179", + "name": "Bashkia Patos", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.67793000", + "longitude": "19.65591000" + }, + { + "id": "196", + "name": "Divjakë", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.99667000", + "longitude": "19.52944000" + }, + { + "id": "200", + "name": "Fier", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.72389000", + "longitude": "19.55611000" + }, + { + "id": "201", + "name": "Fier-Çifçi", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.71667000", + "longitude": "19.56667000" + }, + { + "id": "227", + "name": "Lushnjë", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.94194000", + "longitude": "19.70500000" + }, + { + "id": "234", + "name": "Patos", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.68333000", + "longitude": "19.61944000" + }, + { + "id": "235", + "name": "Patos Fshat", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.64278000", + "longitude": "19.65083000" + }, + { + "id": "241", + "name": "Roskovec", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.73750000", + "longitude": "19.70222000" + }, + { + "id": "254", + "name": "Rrethi i Mallakastrës", + "state_id": 631, + "state_code": "04", + "country_id": 3, + "country_code": "AL", + "latitude": "40.55000000", + "longitude": "19.78333000" + }, + { + "id": "158", + "name": "Bashkia Dropull", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "39.98584000", + "longitude": "20.30529000" + }, + { + "id": "164", + "name": "Bashkia Kelcyrë", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.36196000", + "longitude": "20.16476000" + }, + { + "id": "172", + "name": "Bashkia Libohovë", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.10754000", + "longitude": "20.25753000" + }, + { + "id": "177", + "name": "Bashkia Memaliaj", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.41524000", + "longitude": "19.96911000" + }, + { + "id": "183", + "name": "Bashkia Përmet", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.23246000", + "longitude": "20.41091000" + }, + { + "id": "187", + "name": "Bashkia Tepelenë", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.26736000", + "longitude": "19.97003000" + }, + { + "id": "204", + "name": "Gjinkar", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.19944000", + "longitude": "20.40611000" + }, + { + "id": "205", + "name": "Gjirokastër", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.07583000", + "longitude": "20.13889000" + }, + { + "id": "220", + "name": "Këlcyrë", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.31306000", + "longitude": "20.18944000" + }, + { + "id": "221", + "name": "Lazarat", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.04667000", + "longitude": "20.14750000" + }, + { + "id": "225", + "name": "Libohovë", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.03111000", + "longitude": "20.26306000" + }, + { + "id": "231", + "name": "Memaliaj", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.35167000", + "longitude": "19.98028000" + }, + { + "id": "240", + "name": "Përmet", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.23361000", + "longitude": "20.35167000" + }, + { + "id": "270", + "name": "Tepelenë", + "state_id": 621, + "state_code": "GJ", + "country_id": 3, + "country_code": "AL", + "latitude": "40.29583000", + "longitude": "20.01917000" + }, + { + "id": "156", + "name": "Bashkia Devoll", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.60078000", + "longitude": "20.93814000" + }, + { + "id": "166", + "name": "Bashkia Kolonjë", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.31420000", + "longitude": "20.61482000" + }, + { + "id": "173", + "name": "Bashkia Maliq", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.75508000", + "longitude": "20.60748000" + }, + { + "id": "182", + "name": "Bashkia Pustec", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.83591000", + "longitude": "20.89405000" + }, + { + "id": "192", + "name": "Bilisht", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.62750000", + "longitude": "20.99000000" + }, + { + "id": "199", + "name": "Ersekë", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.33778000", + "longitude": "20.67889000" + }, + { + "id": "212", + "name": "Korçë", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.61861000", + "longitude": "20.78083000" + }, + { + "id": "223", + "name": "Leskovik", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.15139000", + "longitude": "20.59722000" + }, + { + "id": "226", + "name": "Libonik", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.70444000", + "longitude": "20.70861000" + }, + { + "id": "228", + "name": "Maliq", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.70583000", + "longitude": "20.69972000" + }, + { + "id": "230", + "name": "Mborje", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.60333000", + "longitude": "20.80306000" + }, + { + "id": "237", + "name": "Pogradec", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.90250000", + "longitude": "20.65250000" + }, + { + "id": "245", + "name": "Rrethi i Devollit", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.58333000", + "longitude": "20.91667000" + }, + { + "id": "249", + "name": "Rrethi i Kolonjës", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.25000000", + "longitude": "20.66667000" + }, + { + "id": "275", + "name": "Velçan", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.95472000", + "longitude": "20.46222000" + }, + { + "id": "278", + "name": "Voskopojë", + "state_id": 630, + "state_code": "06", + "country_id": 3, + "country_code": "AL", + "latitude": "40.63306000", + "longitude": "20.58889000" + }, + { + "id": "151", + "name": "Bajram Curri", + "state_id": 623, + "state_code": "KU", + "country_id": 3, + "country_code": "AL", + "latitude": "42.35734000", + "longitude": "20.07679000" + }, + { + "id": "215", + "name": "Krumë", + "state_id": 623, + "state_code": "KU", + "country_id": 3, + "country_code": "AL", + "latitude": "42.19694000", + "longitude": "20.41333000" + }, + { + "id": "217", + "name": "Kukës", + "state_id": 623, + "state_code": "KU", + "country_id": 3, + "country_code": "AL", + "latitude": "42.07694000", + "longitude": "20.42194000" + }, + { + "id": "247", + "name": "Rrethi i Hasit", + "state_id": 623, + "state_code": "KU", + "country_id": 3, + "country_code": "AL", + "latitude": "42.16667000", + "longitude": "20.33333000" + }, + { + "id": "251", + "name": "Rrethi i Kukësit", + "state_id": 623, + "state_code": "KU", + "country_id": 3, + "country_code": "AL", + "latitude": "42.00000000", + "longitude": "20.33333000" + }, + { + "id": "169", + "name": "Bashkia Kurbin", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.62215000", + "longitude": "19.70734000" + }, + { + "id": "171", + "name": "Bashkia Lezhë", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.81320000", + "longitude": "19.64121000" + }, + { + "id": "178", + "name": "Bashkia Mirditë", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.80953000", + "longitude": "19.99024000" + }, + { + "id": "218", + "name": "Kurbnesh", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.77972000", + "longitude": "20.08361000" + }, + { + "id": "222", + "name": "Laç", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.63556000", + "longitude": "19.71306000" + }, + { + "id": "224", + "name": "Lezhë", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.78361000", + "longitude": "19.64361000" + }, + { + "id": "229", + "name": "Mamurras", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.57750000", + "longitude": "19.69222000" + }, + { + "id": "232", + "name": "Milot", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.68389000", + "longitude": "19.71556000" + }, + { + "id": "261", + "name": "Rrëshen", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.76750000", + "longitude": "19.87556000" + }, + { + "id": "252", + "name": "Rrethi i Kurbinit", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.63333000", + "longitude": "19.71667000" + }, + { + "id": "262", + "name": "Rubik", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.77444000", + "longitude": "19.78611000" + }, + { + "id": "267", + "name": "Shëngjin", + "state_id": 609, + "state_code": "08", + "country_id": 3, + "country_code": "AL", + "latitude": "41.81361000", + "longitude": "19.59389000" + }, + { + "id": "175", + "name": "Bashkia Malësi e Madhe", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.36798000", + "longitude": "19.58977000" + }, + { + "id": "181", + "name": "Bashkia Pukë", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.02997000", + "longitude": "19.92778000" + }, + { + "id": "188", + "name": "Bashkia Vau i Dejës", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.04834000", + "longitude": "19.69999000" + }, + { + "id": "202", + "name": "Fushë-Arrëz", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.06222000", + "longitude": "20.01667000" + }, + { + "id": "211", + "name": "Koplik", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.21361000", + "longitude": "19.43639000" + }, + { + "id": "239", + "name": "Pukë", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.04444000", + "longitude": "19.89972000" + }, + { + "id": "255", + "name": "Rrethi i Malësia e Madhe", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.33333000", + "longitude": "19.58333000" + }, + { + "id": "257", + "name": "Rrethi i Shkodrës", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.06917000", + "longitude": "19.53506000" + }, + { + "id": "266", + "name": "Shkodër", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.06828000", + "longitude": "19.51258000" + }, + { + "id": "274", + "name": "Vau i Dejës", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.01000000", + "longitude": "19.62472000" + }, + { + "id": "279", + "name": "Vukatanë", + "state_id": 626, + "state_code": "SH", + "country_id": 3, + "country_code": "AL", + "latitude": "42.02806000", + "longitude": "19.54778000" + }, + { + "id": "163", + "name": "Bashkia Kavajë", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.18127000", + "longitude": "19.55579000" + }, + { + "id": "190", + "name": "Bashkia Vorë", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.39804000", + "longitude": "19.67703000" + }, + { + "id": "207", + "name": "Kamëz", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.38167000", + "longitude": "19.76028000" + }, + { + "id": "208", + "name": "Kavajë", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.18556000", + "longitude": "19.55694000" + }, + { + "id": "213", + "name": "Krrabë", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.21556000", + "longitude": "19.97139000" + }, + { + "id": "248", + "name": "Rrethi i Kavajës", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.16667000", + "longitude": "19.58333000" + }, + { + "id": "259", + "name": "Rrethi i Tiranës", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.33333000", + "longitude": "19.91667000" + }, + { + "id": "260", + "name": "Rrogozhinë", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.07639000", + "longitude": "19.66528000" + }, + { + "id": "268", + "name": "Sinaballaj", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.06889000", + "longitude": "19.69944000" + }, + { + "id": "271", + "name": "Tirana", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.32750000", + "longitude": "19.81889000" + }, + { + "id": "277", + "name": "Vorë", + "state_id": 633, + "state_code": "TR", + "country_id": 3, + "country_code": "AL", + "latitude": "41.39083000", + "longitude": "19.65500000" + }, + { + "id": "161", + "name": "Bashkia Finiq", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "39.84393000", + "longitude": "20.16659000" + }, + { + "id": "162", + "name": "Bashkia Himarë", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "40.11581000", + "longitude": "19.81389000" + }, + { + "id": "167", + "name": "Bashkia Konispol", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "39.70064000", + "longitude": "20.13353000" + }, + { + "id": "184", + "name": "Bashkia Selenicë", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "40.39503000", + "longitude": "19.65958000" + }, + { + "id": "189", + "name": "Bashkia Vlorë", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "40.41340000", + "longitude": "19.49792000" + }, + { + "id": "195", + "name": "Delvinë", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "39.95111000", + "longitude": "20.09778000" + }, + { + "id": "206", + "name": "Himarë", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "40.10167000", + "longitude": "19.74472000" + }, + { + "id": "210", + "name": "Konispol", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "39.65889000", + "longitude": "20.18139000" + }, + { + "id": "216", + "name": "Ksamil", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "39.76889000", + "longitude": "19.99972000" + }, + { + "id": "233", + "name": "Orikum", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "40.32528000", + "longitude": "19.47139000" + }, + { + "id": "244", + "name": "Rrethi i Delvinës", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "39.91667000", + "longitude": "20.08333000" + }, + { + "id": "263", + "name": "Sarandë", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "39.87534000", + "longitude": "20.00477000" + }, + { + "id": "264", + "name": "Selenicë", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "40.53056000", + "longitude": "19.63583000" + }, + { + "id": "276", + "name": "Vlorë", + "state_id": 634, + "state_code": "12", + "country_id": 3, + "country_code": "AL", + "latitude": "40.46860000", + "longitude": "19.48318000" + }, + { + "id": "31243", + "name": "Aïn Defla", + "state_id": 1119, + "state_code": "44", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.26405000", + "longitude": "1.96790000" + }, + { + "id": "31325", + "name": "El Abadia", + "state_id": 1119, + "state_code": "44", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.26951000", + "longitude": "1.68609000" + }, + { + "id": "31331", + "name": "El Attaf", + "state_id": 1119, + "state_code": "44", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.22393000", + "longitude": "1.67187000" + }, + { + "id": "31361", + "name": "Khemis Miliana", + "state_id": 1119, + "state_code": "44", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.26104000", + "longitude": "2.22015000" + }, + { + "id": "31448", + "name": "Theniet el Had", + "state_id": 1119, + "state_code": "44", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.87111000", + "longitude": "2.02806000" + }, + { + "id": "31250", + "name": "Aïn Temouchent", + "state_id": 1122, + "state_code": "46", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.29749000", + "longitude": "-1.14037000" + }, + { + "id": "31265", + "name": "Beni Saf", + "state_id": 1122, + "state_code": "46", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.30099000", + "longitude": "-1.38226000" + }, + { + "id": "31329", + "name": "El Amria", + "state_id": 1122, + "state_code": "46", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.52439000", + "longitude": "-1.01577000" + }, + { + "id": "31340", + "name": "El Malah", + "state_id": 1122, + "state_code": "46", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.39137000", + "longitude": "-1.09238000" + }, + { + "id": "31351", + "name": "Hammam Bou Hadjar", + "state_id": 1122, + "state_code": "46", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.37889000", + "longitude": "-0.96778000" + }, + { + "id": "31227", + "name": "Adrar", + "state_id": 1118, + "state_code": "01", + "country_id": 4, + "country_code": "DZ", + "latitude": "27.87429000", + "longitude": "-0.29388000" + }, + { + "id": "31234", + "name": "Aoulef", + "state_id": 1118, + "state_code": "01", + "country_id": 4, + "country_code": "DZ", + "latitude": "26.96667000", + "longitude": "1.08333000" + }, + { + "id": "31406", + "name": "Reggane", + "state_id": 1118, + "state_code": "01", + "country_id": 4, + "country_code": "DZ", + "latitude": "26.71576000", + "longitude": "0.17140000" + }, + { + "id": "31450", + "name": "Timimoun", + "state_id": 1118, + "state_code": "01", + "country_id": 4, + "country_code": "DZ", + "latitude": "29.26388000", + "longitude": "0.23098000" + }, + { + "id": "31249", + "name": "Aïn Taya", + "state_id": 1144, + "state_code": "16", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.79333000", + "longitude": "3.28694000" + }, + { + "id": "31230", + "name": "Algiers", + "state_id": 1144, + "state_code": "16", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.73225000", + "longitude": "3.08746000" + }, + { + "id": "31254", + "name": "Bab Ezzouar", + "state_id": 1144, + "state_code": "16", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.72615000", + "longitude": "3.18291000" + }, + { + "id": "31274", + "name": "Birkhadem", + "state_id": 1144, + "state_code": "16", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.71499000", + "longitude": "3.05002000" + }, + { + "id": "31281", + "name": "Bordj el Kiffan", + "state_id": 1144, + "state_code": "16", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.74871000", + "longitude": "3.19249000" + }, + { + "id": "31312", + "name": "Dar el Beïda", + "state_id": 1144, + "state_code": "16", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.71333000", + "longitude": "3.21250000" + }, + { + "id": "31413", + "name": "Rouiba", + "state_id": 1144, + "state_code": "16", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.73829000", + "longitude": "3.28079000" + }, + { + "id": "31233", + "name": "Annaba", + "state_id": 1103, + "state_code": "23", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.90000000", + "longitude": "7.76667000" + }, + { + "id": "31267", + "name": "Berrahal", + "state_id": 1103, + "state_code": "23", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.83528000", + "longitude": "7.45333000" + }, + { + "id": "31323", + "name": "Drean", + "state_id": 1103, + "state_code": "23", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.68482000", + "longitude": "7.75111000" + }, + { + "id": "31334", + "name": "El Hadjar", + "state_id": 1103, + "state_code": "23", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.80377000", + "longitude": "7.73684000" + }, + { + "id": "31251", + "name": "Aïn Touta", + "state_id": 1142, + "state_code": "05", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.37675000", + "longitude": "5.90001000" + }, + { + "id": "31237", + "name": "Arris", + "state_id": 1142, + "state_code": "05", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.25881000", + "longitude": "6.34706000" + }, + { + "id": "31257", + "name": "Barika", + "state_id": 1142, + "state_code": "05", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.38901000", + "longitude": "5.36584000" + }, + { + "id": "31258", + "name": "Batna", + "state_id": 1142, + "state_code": "05", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.55597000", + "longitude": "6.17414000" + }, + { + "id": "31292", + "name": "Boumagueur", + "state_id": 1142, + "state_code": "05", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.50520000", + "longitude": "5.55250000" + }, + { + "id": "31382", + "name": "Merouana", + "state_id": 1142, + "state_code": "05", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.63106000", + "longitude": "5.91186000" + }, + { + "id": "31415", + "name": "Râs el Aïoun", + "state_id": 1142, + "state_code": "05", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.67384000", + "longitude": "5.64530000" + }, + { + "id": "31444", + "name": "Tazoult-Lambese", + "state_id": 1142, + "state_code": "05", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.48171000", + "longitude": "6.26074000" + }, + { + "id": "31298", + "name": "Béchar", + "state_id": 1108, + "state_code": "08", + "country_id": 4, + "country_code": "DZ", + "latitude": "31.61667000", + "longitude": "-2.21667000" + }, + { + "id": "31229", + "name": "Akbou", + "state_id": 1128, + "state_code": "06", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.45750000", + "longitude": "4.53494000" + }, + { + "id": "31231", + "name": "Amizour", + "state_id": 1128, + "state_code": "06", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.64022000", + "longitude": "4.90131000" + }, + { + "id": "31256", + "name": "Barbacha", + "state_id": 1128, + "state_code": "06", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.56667000", + "longitude": "4.96667000" + }, + { + "id": "31259", + "name": "Bejaïa", + "state_id": 1128, + "state_code": "06", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.75587000", + "longitude": "5.08433000" + }, + { + "id": "31467", + "name": "el hed", + "state_id": 1128, + "state_code": "06", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.65000000", + "longitude": "4.77361000" + }, + { + "id": "31339", + "name": "El Kseur", + "state_id": 1128, + "state_code": "06", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.67942000", + "longitude": "4.85550000" + }, + { + "id": "31344", + "name": "Feraoun", + "state_id": 1128, + "state_code": "06", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.56041000", + "longitude": "4.85454000" + }, + { + "id": "31421", + "name": "Seddouk", + "state_id": 1128, + "state_code": "06", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.54722000", + "longitude": "4.68611000" + }, + { + "id": "31275", + "name": "Biskra", + "state_id": 1114, + "state_code": "07", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.85038000", + "longitude": "5.72805000" + }, + { + "id": "31405", + "name": "Oumache", + "state_id": 1114, + "state_code": "07", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.69292000", + "longitude": "5.68092000" + }, + { + "id": "31427", + "name": "Sidi Khaled", + "state_id": 1114, + "state_code": "07", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.38700000", + "longitude": "4.98785000" + }, + { + "id": "31430", + "name": "Sidi Okba", + "state_id": 1114, + "state_code": "07", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.74512000", + "longitude": "5.89833000" + }, + { + "id": "31461", + "name": "Tolga", + "state_id": 1114, + "state_code": "07", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.72224000", + "longitude": "5.37845000" + }, + { + "id": "31466", + "name": "Zeribet el Oued", + "state_id": 1114, + "state_code": "07", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.68284000", + "longitude": "6.51109000" + }, + { + "id": "31263", + "name": "Beni Mered", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.52389000", + "longitude": "2.86131000" + }, + { + "id": "31276", + "name": "Blida", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.47004000", + "longitude": "2.82770000" + }, + { + "id": "31296", + "name": "Boû Arfa", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.46298000", + "longitude": "2.81464000" + }, + { + "id": "31287", + "name": "Boufarik", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.57413000", + "longitude": "2.91214000" + }, + { + "id": "31289", + "name": "Bougara", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.54178000", + "longitude": "3.08100000" + }, + { + "id": "31290", + "name": "Bouinan", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.53167000", + "longitude": "2.99194000" + }, + { + "id": "31301", + "name": "Chebli", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.57722000", + "longitude": "3.00917000" + }, + { + "id": "31307", + "name": "Chiffa", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.46293000", + "longitude": "2.73873000" + }, + { + "id": "31369", + "name": "Larbaâ", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.56471000", + "longitude": "3.15434000" + }, + { + "id": "31377", + "name": "Meftah", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.62040000", + "longitude": "3.22248000" + }, + { + "id": "31428", + "name": "Sidi Moussa", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.60637000", + "longitude": "3.08783000" + }, + { + "id": "31438", + "name": "Souma", + "state_id": 1111, + "state_code": "09", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.51833000", + "longitude": "2.90528000" + }, + { + "id": "31278", + "name": "Bordj Bou Arreridj", + "state_id": 1116, + "state_code": "34", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.07321000", + "longitude": "4.76108000" + }, + { + "id": "31279", + "name": "Bordj Ghdir", + "state_id": 1116, + "state_code": "34", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.90111000", + "longitude": "4.89806000" + }, + { + "id": "31280", + "name": "Bordj Zemoura", + "state_id": 1116, + "state_code": "34", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.27462000", + "longitude": "4.85668000" + }, + { + "id": "31327", + "name": "El Achir", + "state_id": 1116, + "state_code": "34", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.06386000", + "longitude": "4.62744000" + }, + { + "id": "31373", + "name": "Mansourah", + "state_id": 1116, + "state_code": "34", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.08725000", + "longitude": "4.45192000" + }, + { + "id": "31381", + "name": "Melouza", + "state_id": 1116, + "state_code": "34", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.97999000", + "longitude": "4.18665000" + }, + { + "id": "31416", + "name": "Râs el Oued", + "state_id": 1116, + "state_code": "34", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.94410000", + "longitude": "5.03107000" + }, + { + "id": "31241", + "name": "Aïn Bessem", + "state_id": 1104, + "state_code": "10", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.29333000", + "longitude": "3.67319000" + }, + { + "id": "31295", + "name": "Bouïra", + "state_id": 1104, + "state_code": "10", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.37489000", + "longitude": "3.90200000" + }, + { + "id": "31309", + "name": "Chorfa", + "state_id": 1104, + "state_code": "10", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.36505000", + "longitude": "4.32636000" + }, + { + "id": "31322", + "name": "Draa el Mizan", + "state_id": 1104, + "state_code": "10", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.53628000", + "longitude": "3.83340000" + }, + { + "id": "31368", + "name": "Lakhdaria", + "state_id": 1104, + "state_code": "10", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.56463000", + "longitude": "3.59330000" + }, + { + "id": "31439", + "name": "Sour el Ghozlane", + "state_id": 1104, + "state_code": "10", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.14766000", + "longitude": "3.69123000" + }, + { + "id": "31235", + "name": "Arbatache", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.63773000", + "longitude": "3.37127000" + }, + { + "id": "31261", + "name": "Beni Amrane", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.66774000", + "longitude": "3.59115000" + }, + { + "id": "31286", + "name": "Boudouaou", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.72735000", + "longitude": "3.40995000" + }, + { + "id": "31294", + "name": "Boumerdas", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.76639000", + "longitude": "3.47717000" + }, + { + "id": "31299", + "name": "Chabet el Ameur", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.63709000", + "longitude": "3.69474000" + }, + { + "id": "31314", + "name": "Dellys", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.91716000", + "longitude": "3.91311000" + }, + { + "id": "31362", + "name": "Khemis el Khechna", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.64997000", + "longitude": "3.33080000" + }, + { + "id": "31372", + "name": "Makouda", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.78567000", + "longitude": "4.06273000" + }, + { + "id": "31393", + "name": "Naciria", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.74625000", + "longitude": "3.83163000" + }, + { + "id": "31403", + "name": "Ouled Moussa", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.68394000", + "longitude": "3.36661000" + }, + { + "id": "31407", + "name": "Reghaïa", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.73587000", + "longitude": "3.34018000" + }, + { + "id": "31441", + "name": "Tadmaït", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.74413000", + "longitude": "3.90045000" + }, + { + "id": "31447", + "name": "Thenia", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.72544000", + "longitude": "3.55665000" + }, + { + "id": "31456", + "name": "Tizi Gheniff", + "state_id": 1125, + "state_code": "35", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.58839000", + "longitude": "3.77445000" + }, + { + "id": "31226", + "name": "Abou el Hassan", + "state_id": 1105, + "state_code": "02", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.41657000", + "longitude": "1.19616000" + }, + { + "id": "31291", + "name": "Boukadir", + "state_id": 1105, + "state_code": "02", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.06629000", + "longitude": "1.12602000" + }, + { + "id": "31308", + "name": "Chlef", + "state_id": 1105, + "state_code": "02", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.16525000", + "longitude": "1.33452000" + }, + { + "id": "31324", + "name": "Ech Chettia", + "state_id": 1105, + "state_code": "02", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.19591000", + "longitude": "1.25537000" + }, + { + "id": "31397", + "name": "Oued Fodda", + "state_id": 1105, + "state_code": "02", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.18503000", + "longitude": "1.53299000" + }, + { + "id": "31399", + "name": "Oued Sly", + "state_id": 1105, + "state_code": "02", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.10124000", + "longitude": "1.19949000" + }, + { + "id": "31424", + "name": "Sidi Akkacha", + "state_id": 1105, + "state_code": "02", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.46472000", + "longitude": "1.30258000" + }, + { + "id": "31248", + "name": "Aïn Smara", + "state_id": 1121, + "state_code": "25", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.26740000", + "longitude": "6.50135000" + }, + { + "id": "31469", + "name": "’Aïn Abid", + "state_id": 1121, + "state_code": "25", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.23194000", + "longitude": "6.94333000" + }, + { + "id": "31310", + "name": "Constantine", + "state_id": 1121, + "state_code": "25", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.36500000", + "longitude": "6.61472000" + }, + { + "id": "31315", + "name": "Didouche Mourad", + "state_id": 1121, + "state_code": "25", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.45250000", + "longitude": "6.63639000" + }, + { + "id": "31338", + "name": "El Khroub", + "state_id": 1121, + "state_code": "25", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.26333000", + "longitude": "6.69361000" + }, + { + "id": "31350", + "name": "Hamma Bouziane", + "state_id": 1121, + "state_code": "25", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.41205000", + "longitude": "6.59603000" + }, + { + "id": "31246", + "name": "Aïn Oussera", + "state_id": 1098, + "state_code": "17", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.45139000", + "longitude": "2.90583000" + }, + { + "id": "31474", + "name": "’Aïn el Bell", + "state_id": 1098, + "state_code": "17", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.34381000", + "longitude": "3.22475000" + }, + { + "id": "31273", + "name": "Birine", + "state_id": 1098, + "state_code": "17", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.63500000", + "longitude": "3.22500000" + }, + { + "id": "31300", + "name": "Charef", + "state_id": 1098, + "state_code": "17", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.62098000", + "longitude": "2.79503000" + }, + { + "id": "31311", + "name": "Dar Chioukh", + "state_id": 1098, + "state_code": "17", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.89638000", + "longitude": "3.48543000" + }, + { + "id": "31318", + "name": "Djelfa", + "state_id": 1098, + "state_code": "17", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.67279000", + "longitude": "3.26300000" + }, + { + "id": "31336", + "name": "El Idrissia", + "state_id": 1098, + "state_code": "17", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.44542000", + "longitude": "2.52749000" + }, + { + "id": "31385", + "name": "Messaad", + "state_id": 1098, + "state_code": "17", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.15429000", + "longitude": "3.50309000" + }, + { + "id": "31297", + "name": "Brezina", + "state_id": 1129, + "state_code": "32", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.09892000", + "longitude": "1.26082000" + }, + { + "id": "31326", + "name": "El Abiodh Sidi Cheikh", + "state_id": 1129, + "state_code": "32", + "country_id": 4, + "country_code": "DZ", + "latitude": "32.89300000", + "longitude": "0.54839000" + }, + { + "id": "31332", + "name": "El Bayadh", + "state_id": 1129, + "state_code": "32", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.68318000", + "longitude": "1.01927000" + }, + { + "id": "31313", + "name": "Debila", + "state_id": 1099, + "state_code": "39", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.51667000", + "longitude": "6.95000000" + }, + { + "id": "31341", + "name": "El Oued", + "state_id": 1099, + "state_code": "39", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.35608000", + "longitude": "6.86319000" + }, + { + "id": "31408", + "name": "Reguiba", + "state_id": 1099, + "state_code": "39", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.56391000", + "longitude": "6.70326000" + }, + { + "id": "31411", + "name": "Robbah", + "state_id": 1099, + "state_code": "39", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.27967000", + "longitude": "6.90984000" + }, + { + "id": "31260", + "name": "Ben Mehidi", + "state_id": 1100, + "state_code": "36", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.76967000", + "longitude": "7.90641000" + }, + { + "id": "31270", + "name": "Besbes", + "state_id": 1100, + "state_code": "36", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.70222000", + "longitude": "7.84722000" + }, + { + "id": "31337", + "name": "El Kala", + "state_id": 1100, + "state_code": "36", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.89556000", + "longitude": "8.44333000" + }, + { + "id": "31342", + "name": "El Tarf", + "state_id": 1100, + "state_code": "36", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.76720000", + "longitude": "8.31377000" + }, + { + "id": "31268", + "name": "Berriane", + "state_id": 1127, + "state_code": "47", + "country_id": 4, + "country_code": "DZ", + "latitude": "32.82648000", + "longitude": "3.76689000" + }, + { + "id": "31347", + "name": "Ghardaïa", + "state_id": 1127, + "state_code": "47", + "country_id": 4, + "country_code": "DZ", + "latitude": "32.49094000", + "longitude": "3.67347000" + }, + { + "id": "31386", + "name": "Metlili Chaamba", + "state_id": 1127, + "state_code": "47", + "country_id": 4, + "country_code": "DZ", + "latitude": "32.26667000", + "longitude": "3.63333000" + }, + { + "id": "31293", + "name": "Boumahra Ahmed", + "state_id": 1137, + "state_code": "24", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.45833000", + "longitude": "7.51389000" + }, + { + "id": "31348", + "name": "Guelma", + "state_id": 1137, + "state_code": "24", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.46214000", + "longitude": "7.42608000" + }, + { + "id": "31355", + "name": "Héliopolis", + "state_id": 1137, + "state_code": "24", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.50361000", + "longitude": "7.44278000" + }, + { + "id": "31358", + "name": "Illizi", + "state_id": 1112, + "state_code": "33", + "country_id": 4, + "country_code": "DZ", + "latitude": "26.48333000", + "longitude": "8.46667000" + }, + { + "id": "31359", + "name": "Jijel", + "state_id": 1113, + "state_code": "18", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.82055000", + "longitude": "5.76671000" + }, + { + "id": "31363", + "name": "Khenchela", + "state_id": 1126, + "state_code": "40", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.43583000", + "longitude": "7.14333000" + }, + { + "id": "31228", + "name": "Aflou", + "state_id": 1138, + "state_code": "03", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.11279000", + "longitude": "2.10228000" + }, + { + "id": "31367", + "name": "Laghouat", + "state_id": 1138, + "state_code": "03", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.80000000", + "longitude": "2.86514000" + }, + { + "id": "31468", + "name": "‘Aïn el Hadjel", + "state_id": 1134, + "state_code": "28", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.67003000", + "longitude": "3.88153000" + }, + { + "id": "31477", + "name": "’Aïn el Melh", + "state_id": 1134, + "state_code": "28", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.84146000", + "longitude": "4.16383000" + }, + { + "id": "31391", + "name": "M’Sila", + "state_id": 1134, + "state_code": "28", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.70583000", + "longitude": "4.54194000" + }, + { + "id": "31426", + "name": "Sidi Aïssa", + "state_id": 1134, + "state_code": "28", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.88548000", + "longitude": "3.77236000" + }, + { + "id": "31282", + "name": "Bou Hanifia el Hamamat", + "state_id": 1124, + "state_code": "29", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.31473000", + "longitude": "-0.05037000" + }, + { + "id": "31375", + "name": "Mascara", + "state_id": 1124, + "state_code": "29", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.39664000", + "longitude": "0.14027000" + }, + { + "id": "31400", + "name": "Oued el Abtal", + "state_id": 1124, + "state_code": "29", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.45595000", + "longitude": "0.68778000" + }, + { + "id": "31433", + "name": "Sig", + "state_id": 1124, + "state_code": "29", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.52832000", + "longitude": "-0.19369000" + }, + { + "id": "31471", + "name": "’Aïn Boucif", + "state_id": 1109, + "state_code": "26", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.89123000", + "longitude": "3.15850000" + }, + { + "id": "31269", + "name": "Berrouaghia", + "state_id": 1109, + "state_code": "26", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.13516000", + "longitude": "2.91085000" + }, + { + "id": "31366", + "name": "Ksar el Boukhari", + "state_id": 1109, + "state_code": "26", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.88889000", + "longitude": "2.74905000" + }, + { + "id": "31390", + "name": "Médéa", + "state_id": 1109, + "state_code": "26", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.26417000", + "longitude": "2.75393000" + }, + { + "id": "31302", + "name": "Chelghoum el Aïd", + "state_id": 1132, + "state_code": "43", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.16286000", + "longitude": "6.16651000" + }, + { + "id": "31387", + "name": "Mila", + "state_id": 1132, + "state_code": "43", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.45028000", + "longitude": "6.26444000" + }, + { + "id": "31412", + "name": "Rouached", + "state_id": 1132, + "state_code": "43", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.45774000", + "longitude": "6.04267000" + }, + { + "id": "31429", + "name": "Sidi Mérouane", + "state_id": 1132, + "state_code": "43", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.52056000", + "longitude": "6.26111000" + }, + { + "id": "31446", + "name": "Telerghma", + "state_id": 1132, + "state_code": "43", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.11653000", + "longitude": "6.35434000" + }, + { + "id": "31388", + "name": "Mostaganem", + "state_id": 1140, + "state_code": "27", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.93115000", + "longitude": "0.08918000" + }, + { + "id": "31247", + "name": "Aïn Sefra", + "state_id": 1102, + "state_code": "45", + "country_id": 4, + "country_code": "DZ", + "latitude": "32.75000000", + "longitude": "-0.58333000" + }, + { + "id": "31392", + "name": "Naama", + "state_id": 1102, + "state_code": "45", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.26667000", + "longitude": "-0.31667000" + }, + { + "id": "31252", + "name": "Aïn el Bya", + "state_id": 1101, + "state_code": "31", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.80389000", + "longitude": "-0.30178000" + }, + { + "id": "31478", + "name": "’Aïn el Turk", + "state_id": 1101, + "state_code": "31", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.74381000", + "longitude": "-0.76930000" + }, + { + "id": "31272", + "name": "Bir el Djir", + "state_id": 1101, + "state_code": "31", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.72000000", + "longitude": "-0.54500000" + }, + { + "id": "31284", + "name": "Bou Tlelis", + "state_id": 1101, + "state_code": "31", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.57272000", + "longitude": "-0.89960000" + }, + { + "id": "31343", + "name": "Es Senia", + "state_id": 1101, + "state_code": "31", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.64779000", + "longitude": "-0.62397000" + }, + { + "id": "31383", + "name": "Mers el Kebir", + "state_id": 1101, + "state_code": "31", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.72790000", + "longitude": "-0.70810000" + }, + { + "id": "31395", + "name": "Oran", + "state_id": 1101, + "state_code": "31", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.69906000", + "longitude": "-0.63588000" + }, + { + "id": "31432", + "name": "Sidi ech Chahmi", + "state_id": 1101, + "state_code": "31", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.65903000", + "longitude": "-0.52168000" + }, + { + "id": "31316", + "name": "Djamaa", + "state_id": 1139, + "state_code": "30", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.53388000", + "longitude": "5.99306000" + }, + { + "id": "31335", + "name": "El Hadjira", + "state_id": 1139, + "state_code": "30", + "country_id": 4, + "country_code": "DZ", + "latitude": "32.61336000", + "longitude": "5.51259000" + }, + { + "id": "31353", + "name": "Hassi Messaoud", + "state_id": 1139, + "state_code": "30", + "country_id": 4, + "country_code": "DZ", + "latitude": "31.68041000", + "longitude": "6.07286000" + }, + { + "id": "31378", + "name": "Megarine", + "state_id": 1139, + "state_code": "30", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.19195000", + "longitude": "6.08695000" + }, + { + "id": "31396", + "name": "Ouargla", + "state_id": 1139, + "state_code": "30", + "country_id": 4, + "country_code": "DZ", + "latitude": "31.94932000", + "longitude": "5.32502000" + }, + { + "id": "31414", + "name": "Rouissat", + "state_id": 1139, + "state_code": "30", + "country_id": 4, + "country_code": "DZ", + "latitude": "31.92427000", + "longitude": "5.35018000" + }, + { + "id": "31425", + "name": "Sidi Amrane", + "state_id": 1139, + "state_code": "30", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.49885000", + "longitude": "6.00803000" + }, + { + "id": "31445", + "name": "Tebesbest", + "state_id": 1139, + "state_code": "30", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.11667000", + "longitude": "6.08333000" + }, + { + "id": "31462", + "name": "Touggourt", + "state_id": 1139, + "state_code": "30", + "country_id": 4, + "country_code": "DZ", + "latitude": "33.10527000", + "longitude": "6.05796000" + }, + { + "id": "31242", + "name": "Aïn Beïda", + "state_id": 1136, + "state_code": "04", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.79639000", + "longitude": "7.39278000" + }, + { + "id": "31244", + "name": "Aïn Fakroun", + "state_id": 1136, + "state_code": "04", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.97108000", + "longitude": "6.87374000" + }, + { + "id": "31245", + "name": "Aïn Kercha", + "state_id": 1136, + "state_code": "04", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.92472000", + "longitude": "6.69528000" + }, + { + "id": "31330", + "name": "El Aouinet", + "state_id": 1136, + "state_code": "04", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.86691000", + "longitude": "7.88673000" + }, + { + "id": "31384", + "name": "Meskiana", + "state_id": 1136, + "state_code": "04", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.63058000", + "longitude": "7.66606000" + }, + { + "id": "31404", + "name": "Oum el Bouaghi", + "state_id": 1136, + "state_code": "04", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.87541000", + "longitude": "7.11353000" + }, + { + "id": "31232", + "name": "Ammi Moussa", + "state_id": 1130, + "state_code": "48", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.86781000", + "longitude": "1.11143000" + }, + { + "id": "31473", + "name": "’Aïn Merane", + "state_id": 1130, + "state_code": "48", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.16277000", + "longitude": "0.97037000" + }, + { + "id": "31319", + "name": "Djidiouia", + "state_id": 1130, + "state_code": "48", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.92989000", + "longitude": "0.82871000" + }, + { + "id": "31376", + "name": "Mazouna", + "state_id": 1130, + "state_code": "48", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.12232000", + "longitude": "0.89865000" + }, + { + "id": "31398", + "name": "Oued Rhiou", + "state_id": 1130, + "state_code": "48", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.96124000", + "longitude": "0.91896000" + }, + { + "id": "31409", + "name": "Relizane", + "state_id": 1130, + "state_code": "48", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.73734000", + "longitude": "0.55599000" + }, + { + "id": "31435", + "name": "Smala", + "state_id": 1130, + "state_code": "48", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.71652000", + "longitude": "0.75437000" + }, + { + "id": "31464", + "name": "Zemoura", + "state_id": 1130, + "state_code": "48", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.72251000", + "longitude": "0.75509000" + }, + { + "id": "31475", + "name": "’Aïn el Hadjar", + "state_id": 1123, + "state_code": "20", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.75846000", + "longitude": "0.14528000" + }, + { + "id": "31419", + "name": "Saïda", + "state_id": 1123, + "state_code": "20", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.83033000", + "longitude": "0.15171000" + }, + { + "id": "31240", + "name": "Aïn Arnat", + "state_id": 1141, + "state_code": "19", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.18683000", + "longitude": "5.31347000" + }, + { + "id": "31253", + "name": "BABOR - VILLE", + "state_id": 1141, + "state_code": "19", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.48994000", + "longitude": "5.53930000" + }, + { + "id": "31288", + "name": "Bougaa", + "state_id": 1141, + "state_code": "19", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.33293000", + "longitude": "5.08843000" + }, + { + "id": "31333", + "name": "El Eulma", + "state_id": 1141, + "state_code": "19", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.15281000", + "longitude": "5.69016000" + }, + { + "id": "31417", + "name": "Salah Bey", + "state_id": 1141, + "state_code": "19", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.85451000", + "longitude": "5.29053000" + }, + { + "id": "31440", + "name": "Sétif", + "state_id": 1141, + "state_code": "19", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.19112000", + "longitude": "5.41373000" + }, + { + "id": "31239", + "name": "Azzaba", + "state_id": 1110, + "state_code": "21", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.73944000", + "longitude": "7.10528000" + }, + { + "id": "31360", + "name": "Karkira", + "state_id": 1110, + "state_code": "21", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.92917000", + "longitude": "6.58556000" + }, + { + "id": "31434", + "name": "Skikda", + "state_id": 1110, + "state_code": "21", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.87617000", + "longitude": "6.90921000" + }, + { + "id": "31442", + "name": "Tamalous", + "state_id": 1110, + "state_code": "21", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.83763000", + "longitude": "6.64018000" + }, + { + "id": "31422", + "name": "Sedrata", + "state_id": 1143, + "state_code": "41", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.12868000", + "longitude": "7.53376000" + }, + { + "id": "31437", + "name": "Souk Ahras", + "state_id": 1143, + "state_code": "41", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.28639000", + "longitude": "7.95111000" + }, + { + "id": "31356", + "name": "I-n-Salah", + "state_id": 1135, + "state_code": "11", + "country_id": 4, + "country_code": "DZ", + "latitude": "27.19351000", + "longitude": "2.46069000" + }, + { + "id": "31443", + "name": "Tamanrasset", + "state_id": 1135, + "state_code": "11", + "country_id": 4, + "country_code": "DZ", + "latitude": "22.78500000", + "longitude": "5.52278000" + }, + { + "id": "31271", + "name": "Bir el Ater", + "state_id": 1117, + "state_code": "12", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.74488000", + "longitude": "8.06024000" + }, + { + "id": "31305", + "name": "Cheria", + "state_id": 1117, + "state_code": "12", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.27306000", + "longitude": "7.75194000" + }, + { + "id": "31352", + "name": "Hammamet", + "state_id": 1117, + "state_code": "12", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.44862000", + "longitude": "7.95184000" + }, + { + "id": "31463", + "name": "Tébessa", + "state_id": 1117, + "state_code": "12", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.40417000", + "longitude": "8.12417000" + }, + { + "id": "31472", + "name": "’Aïn Deheb", + "state_id": 1106, + "state_code": "14", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.84218000", + "longitude": "1.54697000" + }, + { + "id": "31317", + "name": "Djebilet Rosfa", + "state_id": 1106, + "state_code": "14", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.86375000", + "longitude": "0.83496000" + }, + { + "id": "31346", + "name": "Frenda", + "state_id": 1106, + "state_code": "14", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.06544000", + "longitude": "1.04945000" + }, + { + "id": "31365", + "name": "Ksar Chellala", + "state_id": 1106, + "state_code": "14", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.21222000", + "longitude": "2.31889000" + }, + { + "id": "31379", + "name": "Mehdia daira de meghila", + "state_id": 1106, + "state_code": "14", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.43058000", + "longitude": "1.75714000" + }, + { + "id": "31436", + "name": "Sougueur", + "state_id": 1106, + "state_code": "14", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.18568000", + "longitude": "1.49612000" + }, + { + "id": "31449", + "name": "Tiaret", + "state_id": 1106, + "state_code": "14", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.37103000", + "longitude": "1.31699000" + }, + { + "id": "31452", + "name": "Tindouf", + "state_id": 1120, + "state_code": "37", + "country_id": 4, + "country_code": "DZ", + "latitude": "27.67111000", + "longitude": "-8.14743000" + }, + { + "id": "31470", + "name": "’Aïn Benian", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.80277000", + "longitude": "2.92185000" + }, + { + "id": "31255", + "name": "Baraki", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.66655000", + "longitude": "3.09606000" + }, + { + "id": "31283", + "name": "Bou Ismaïl", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.64262000", + "longitude": "2.69007000" + }, + { + "id": "31304", + "name": "Cheraga", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.76775000", + "longitude": "2.95924000" + }, + { + "id": "31320", + "name": "Douera", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.67000000", + "longitude": "2.94444000" + }, + { + "id": "31328", + "name": "El Affroun", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.47010000", + "longitude": "2.62528000" + }, + { + "id": "31349", + "name": "Hadjout", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.51257000", + "longitude": "2.41382000" + }, + { + "id": "31364", + "name": "Kolea", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.63888000", + "longitude": "2.76845000" + }, + { + "id": "31389", + "name": "Mouzaïa", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.46695000", + "longitude": "2.68991000" + }, + { + "id": "31401", + "name": "Oued el Alleug", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.55528000", + "longitude": "2.79028000" + }, + { + "id": "31418", + "name": "Saoula", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.70456000", + "longitude": "3.02462000" + }, + { + "id": "31453", + "name": "Tipasa", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.58972000", + "longitude": "2.44750000" + }, + { + "id": "31465", + "name": "Zeralda", + "state_id": 1115, + "state_code": "42", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.71169000", + "longitude": "2.84244000" + }, + { + "id": "31370", + "name": "Lardjem", + "state_id": 1133, + "state_code": "38", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.74922000", + "longitude": "1.54778000" + }, + { + "id": "31455", + "name": "Tissemsilt", + "state_id": 1133, + "state_code": "38", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.60722000", + "longitude": "1.81081000" + }, + { + "id": "31236", + "name": "Arhribs", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.79361000", + "longitude": "4.31158000" + }, + { + "id": "31238", + "name": "Azazga", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.74472000", + "longitude": "4.37222000" + }, + { + "id": "31476", + "name": "’Aïn el Hammam", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.56471000", + "longitude": "4.30619000" + }, + { + "id": "31262", + "name": "Beni Douala", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.61954000", + "longitude": "4.08282000" + }, + { + "id": "31277", + "name": "Boghni", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.54222000", + "longitude": "3.95306000" + }, + { + "id": "31285", + "name": "Boudjima", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.80218000", + "longitude": "4.15187000" + }, + { + "id": "31303", + "name": "Chemini", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.60000000", + "longitude": "4.61667000" + }, + { + "id": "31321", + "name": "Draa Ben Khedda", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.73436000", + "longitude": "3.96223000" + }, + { + "id": "31345", + "name": "Freha", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.75234000", + "longitude": "4.31550000" + }, + { + "id": "31357", + "name": "Ighram", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.46295000", + "longitude": "4.50532000" + }, + { + "id": "31371", + "name": "L’Arbaa Naït Irathen", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.63112000", + "longitude": "4.19864000" + }, + { + "id": "31380", + "name": "Mekla", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.68178000", + "longitude": "4.26378000" + }, + { + "id": "31451", + "name": "Timizart", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.80000000", + "longitude": "4.26667000" + }, + { + "id": "31454", + "name": "Tirmitine", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.65393000", + "longitude": "3.98143000" + }, + { + "id": "31457", + "name": "Tizi Ouzou", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.71182000", + "longitude": "4.04591000" + }, + { + "id": "31458", + "name": "Tizi Rached", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.67176000", + "longitude": "4.19176000" + }, + { + "id": "31459", + "name": "Tizi-n-Tleta", + "state_id": 1131, + "state_code": "15", + "country_id": 4, + "country_code": "DZ", + "latitude": "36.54569000", + "longitude": "4.05712000" + }, + { + "id": "31264", + "name": "Beni Mester", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.87045000", + "longitude": "-1.42319000" + }, + { + "id": "31266", + "name": "Bensekrane", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.07465000", + "longitude": "-1.22431000" + }, + { + "id": "31306", + "name": "Chetouane", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.92129000", + "longitude": "-1.29512000" + }, + { + "id": "31354", + "name": "Hennaya", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.95139000", + "longitude": "-1.36806000" + }, + { + "id": "31374", + "name": "Mansoûra", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.86158000", + "longitude": "-1.33935000" + }, + { + "id": "31394", + "name": "Nedroma", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.01361000", + "longitude": "-1.74799000" + }, + { + "id": "31402", + "name": "Ouled Mimoun", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.90472000", + "longitude": "-1.03394000" + }, + { + "id": "31410", + "name": "Remchi", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.06196000", + "longitude": "-1.43362000" + }, + { + "id": "31420", + "name": "Sebdou", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.63703000", + "longitude": "-1.33143000" + }, + { + "id": "31423", + "name": "Sidi Abdelli", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "35.06937000", + "longitude": "-1.13706000" + }, + { + "id": "31431", + "name": "Sidi Senoussi سيدي سنوسي", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.99691000", + "longitude": "-1.09449000" + }, + { + "id": "31460", + "name": "Tlemcen", + "state_id": 1107, + "state_code": "13", + "country_id": 4, + "country_code": "DZ", + "latitude": "34.87833000", + "longitude": "-1.31500000" + }, + { + "id": "1", + "name": "Andorra la Vella", + "state_id": 488, + "state_code": "07", + "country_id": 6, + "country_code": "AD", + "latitude": "42.50779000", + "longitude": "1.52109000" + }, + { + "id": "3", + "name": "Canillo", + "state_id": 489, + "state_code": "02", + "country_id": 6, + "country_code": "AD", + "latitude": "42.56760000", + "longitude": "1.59756000" + }, + { + "id": "4", + "name": "El Tarter", + "state_id": 489, + "state_code": "02", + "country_id": 6, + "country_code": "AD", + "latitude": "42.57952000", + "longitude": "1.65362000" + }, + { + "id": "5", + "name": "Encamp", + "state_id": 487, + "state_code": "03", + "country_id": 6, + "country_code": "AD", + "latitude": "42.53474000", + "longitude": "1.58014000" + }, + { + "id": "7", + "name": "Pas de la Casa", + "state_id": 487, + "state_code": "03", + "country_id": 6, + "country_code": "AD", + "latitude": "42.54277000", + "longitude": "1.73361000" + }, + { + "id": "10", + "name": "les Escaldes", + "state_id": 492, + "state_code": "08", + "country_id": 6, + "country_code": "AD", + "latitude": "42.50729000", + "longitude": "1.53414000" + }, + { + "id": "2", + "name": "Arinsal", + "state_id": 493, + "state_code": "04", + "country_id": 6, + "country_code": "AD", + "latitude": "42.57205000", + "longitude": "1.48453000" + }, + { + "id": "9", + "name": "la Massana", + "state_id": 493, + "state_code": "04", + "country_id": 6, + "country_code": "AD", + "latitude": "42.54499000", + "longitude": "1.51483000" + }, + { + "id": "6", + "name": "Ordino", + "state_id": 491, + "state_code": "05", + "country_id": 6, + "country_code": "AD", + "latitude": "42.55623000", + "longitude": "1.53319000" + }, + { + "id": "8", + "name": "Sant Julià de Lòria", + "state_id": 490, + "state_code": "06", + "country_id": 6, + "country_code": "AD", + "latitude": "42.46372000", + "longitude": "1.49129000" + }, + { + "id": "598", + "name": "Caxito", + "state_id": 221, + "state_code": "BGO", + "country_id": 7, + "country_code": "AO", + "latitude": "-8.57848000", + "longitude": "13.66425000" + }, + { + "id": "590", + "name": "Benguela", + "state_id": 218, + "state_code": "BGU", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.57626000", + "longitude": "13.40547000" + }, + { + "id": "597", + "name": "Catumbela", + "state_id": 218, + "state_code": "BGU", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.43002000", + "longitude": "13.54677000" + }, + { + "id": "613", + "name": "Lobito", + "state_id": 218, + "state_code": "BGU", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.36440000", + "longitude": "13.53601000" + }, + { + "id": "595", + "name": "Camacupa", + "state_id": 212, + "state_code": "BIE", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.01667000", + "longitude": "17.48333000" + }, + { + "id": "596", + "name": "Catabola", + "state_id": 212, + "state_code": "BIE", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.15000000", + "longitude": "17.28333000" + }, + { + "id": "605", + "name": "Chissamba", + "state_id": 212, + "state_code": "BIE", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.16667000", + "longitude": "17.33333000" + }, + { + "id": "606", + "name": "Cuito", + "state_id": 212, + "state_code": "BIE", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.38333000", + "longitude": "16.93333000" + }, + { + "id": "591", + "name": "Cabinda", + "state_id": 228, + "state_code": "CAB", + "country_id": 7, + "country_code": "AO", + "latitude": "-5.55000000", + "longitude": "12.20000000" + }, + { + "id": "625", + "name": "Menongue", + "state_id": 226, + "state_code": "CCU", + "country_id": 7, + "country_code": "AO", + "latitude": "-14.65850000", + "longitude": "17.69099000" + }, + { + "id": "594", + "name": "Camabatela", + "state_id": 217, + "state_code": "CNO", + "country_id": 7, + "country_code": "AO", + "latitude": "-8.18812000", + "longitude": "15.37495000" + }, + { + "id": "627", + "name": "N’dalatando", + "state_id": 217, + "state_code": "CNO", + "country_id": 7, + "country_code": "AO", + "latitude": "-9.29782000", + "longitude": "14.91162000" + }, + { + "id": "629", + "name": "Quibala", + "state_id": 216, + "state_code": "CUS", + "country_id": 7, + "country_code": "AO", + "latitude": "-10.73366000", + "longitude": "14.97995000" + }, + { + "id": "634", + "name": "Sumbe", + "state_id": 216, + "state_code": "CUS", + "country_id": 7, + "country_code": "AO", + "latitude": "-11.20605000", + "longitude": "13.84371000" + }, + { + "id": "635", + "name": "Uacu Cungo", + "state_id": 216, + "state_code": "CUS", + "country_id": 7, + "country_code": "AO", + "latitude": "-11.35669000", + "longitude": "15.11719000" + }, + { + "id": "628", + "name": "Ondjiva", + "state_id": 215, + "state_code": "CNN", + "country_id": 7, + "country_code": "AO", + "latitude": "-17.06667000", + "longitude": "15.73333000" + }, + { + "id": "600", + "name": "Caála", + "state_id": 213, + "state_code": "HUA", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.85250000", + "longitude": "15.56056000" + }, + { + "id": "601", + "name": "Chela", + "state_id": 213, + "state_code": "HUA", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.30261000", + "longitude": "15.43358000" + }, + { + "id": "609", + "name": "Huambo", + "state_id": 213, + "state_code": "HUA", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.77611000", + "longitude": "15.73917000" + }, + { + "id": "614", + "name": "Longonjo", + "state_id": 213, + "state_code": "HUA", + "country_id": 7, + "country_code": "AO", + "latitude": "-12.90667000", + "longitude": "15.25333000" + }, + { + "id": "592", + "name": "Caconda", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-13.73333000", + "longitude": "15.06667000" + }, + { + "id": "593", + "name": "Caluquembe", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-13.92093000", + "longitude": "14.53476000" + }, + { + "id": "602", + "name": "Chibia", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-15.23657000", + "longitude": "13.88468000" + }, + { + "id": "603", + "name": "Chicomba", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-14.30788000", + "longitude": "14.98672000" + }, + { + "id": "604", + "name": "Chipindo", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-13.86830000", + "longitude": "15.73277000" + }, + { + "id": "607", + "name": "Cuvango", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-14.27693000", + "longitude": "16.31475000" + }, + { + "id": "608", + "name": "Gambos", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-15.80926000", + "longitude": "14.07661000" + }, + { + "id": "610", + "name": "Humpata", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-15.07250000", + "longitude": "13.36771000" + }, + { + "id": "612", + "name": "Jamba", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-14.76294000", + "longitude": "15.83493000" + }, + { + "id": "617", + "name": "Lubango", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-14.91717000", + "longitude": "13.49250000" + }, + { + "id": "623", + "name": "Matala", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-15.23967000", + "longitude": "15.17246000" + }, + { + "id": "630", + "name": "Quilengues", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-13.99213000", + "longitude": "13.76705000" + }, + { + "id": "631", + "name": "Quipungo", + "state_id": 225, + "state_code": "HUI", + "country_id": 7, + "country_code": "AO", + "latitude": "-15.12203000", + "longitude": "14.55953000" + }, + { + "id": "589", + "name": "Belas", + "state_id": 222, + "state_code": "LUA", + "country_id": 7, + "country_code": "AO", + "latitude": "-9.06875000", + "longitude": "13.16072000" + }, + { + "id": "611", + "name": "Icolo e Bengo", + "state_id": 222, + "state_code": "LUA", + "country_id": 7, + "country_code": "AO", + "latitude": "-9.24191000", + "longitude": "13.73549000" + }, + { + "id": "615", + "name": "Luanda", + "state_id": 222, + "state_code": "LUA", + "country_id": 7, + "country_code": "AO", + "latitude": "-8.83682000", + "longitude": "13.23432000" + }, + { + "id": "618", + "name": "Lucapa", + "state_id": 223, + "state_code": "LNO", + "country_id": 7, + "country_code": "AO", + "latitude": "-8.68337000", + "longitude": "20.27045000" + }, + { + "id": "599", + "name": "Cazaji", + "state_id": 220, + "state_code": "LSU", + "country_id": 7, + "country_code": "AO", + "latitude": "-11.06715000", + "longitude": "20.70148000" + }, + { + "id": "632", + "name": "Saurimo", + "state_id": 220, + "state_code": "LSU", + "country_id": 7, + "country_code": "AO", + "latitude": "-9.66078000", + "longitude": "20.39155000" + }, + { + "id": "622", + "name": "Malanje", + "state_id": 227, + "state_code": "MAL", + "country_id": 7, + "country_code": "AO", + "latitude": "-9.54015000", + "longitude": "16.34096000" + }, + { + "id": "621", + "name": "Léua", + "state_id": 219, + "state_code": "MOX", + "country_id": 7, + "country_code": "AO", + "latitude": "-11.65000000", + "longitude": "20.45000000" + }, + { + "id": "616", + "name": "Luau", + "state_id": 219, + "state_code": "MOX", + "country_id": 7, + "country_code": "AO", + "latitude": "-10.70727000", + "longitude": "22.22466000" + }, + { + "id": "619", + "name": "Luena", + "state_id": 219, + "state_code": "MOX", + "country_id": 7, + "country_code": "AO", + "latitude": "-11.78333000", + "longitude": "19.91667000" + }, + { + "id": "620", + "name": "Lumeje", + "state_id": 219, + "state_code": "MOX", + "country_id": 7, + "country_code": "AO", + "latitude": "-11.55000000", + "longitude": "20.78333000" + }, + { + "id": "636", + "name": "Uíge", + "state_id": 224, + "state_code": "UIG", + "country_id": 7, + "country_code": "AO", + "latitude": "-7.60874000", + "longitude": "15.06131000" + }, + { + "id": "624", + "name": "Mbanza Congo", + "state_id": 214, + "state_code": "ZAI", + "country_id": 7, + "country_code": "AO", + "latitude": "-6.26703000", + "longitude": "14.24010000" + }, + { + "id": "626", + "name": "N'zeto", + "state_id": 214, + "state_code": "ZAI", + "country_id": 7, + "country_code": "AO", + "latitude": "-7.23116000", + "longitude": "12.86660000" + }, + { + "id": "633", + "name": "Soio", + "state_id": 214, + "state_code": "ZAI", + "country_id": 7, + "country_code": "AO", + "latitude": "-6.13490000", + "longitude": "12.36894000" + }, + { + "id": "144", + "name": "Codrington", + "state_id": 3708, + "state_code": "10", + "country_id": 10, + "country_code": "AG", + "latitude": "17.63333000", + "longitude": "-61.83333000" + }, + { + "id": "148", + "name": "Piggotts", + "state_id": 3709, + "state_code": "03", + "country_id": 10, + "country_code": "AG", + "latitude": "17.11667000", + "longitude": "-61.80000000" + }, + { + "id": "149", + "name": "Potters Village", + "state_id": 3706, + "state_code": "04", + "country_id": 10, + "country_code": "AG", + "latitude": "17.11337000", + "longitude": "-61.81962000" + }, + { + "id": "150", + "name": "Saint John’s", + "state_id": 3706, + "state_code": "04", + "country_id": 10, + "country_code": "AG", + "latitude": "17.12096000", + "longitude": "-61.84329000" + }, + { + "id": "143", + "name": "Bolands", + "state_id": 3707, + "state_code": "05", + "country_id": 10, + "country_code": "AG", + "latitude": "17.06565000", + "longitude": "-61.87466000" + }, + { + "id": "145", + "name": "Falmouth", + "state_id": 3705, + "state_code": "06", + "country_id": 10, + "country_code": "AG", + "latitude": "17.02741000", + "longitude": "-61.78136000" + }, + { + "id": "146", + "name": "Liberta", + "state_id": 3705, + "state_code": "06", + "country_id": 10, + "country_code": "AG", + "latitude": "17.04141000", + "longitude": "-61.79052000" + }, + { + "id": "142", + "name": "All Saints", + "state_id": 3704, + "state_code": "07", + "country_id": 10, + "country_code": "AG", + "latitude": "17.06671000", + "longitude": "-61.79303000" + }, + { + "id": "147", + "name": "Parham", + "state_id": 3704, + "state_code": "07", + "country_id": 10, + "country_code": "AG", + "latitude": "17.09682000", + "longitude": "-61.77046000" + }, + { + "id": "682", + "name": "Balvanera", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.61032000", + "longitude": "-58.39766000" + }, + { + "id": "683", + "name": "Barracas", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.64966000", + "longitude": "-58.38341000" + }, + { + "id": "687", + "name": "Belgrano", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.56270000", + "longitude": "-58.45829000" + }, + { + "id": "697", + "name": "Boedo", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.63333000", + "longitude": "-58.41667000" + }, + { + "id": "704", + "name": "Buenos Aires", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.61315000", + "longitude": "-58.37723000" + }, + { + "id": "773", + "name": "Colegiales", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.57365000", + "longitude": "-58.44924000" + }, + { + "id": "1380", + "name": "Retiro", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.58333000", + "longitude": "-58.38333000" + }, + { + "id": "1561", + "name": "Villa Lugano", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.67907000", + "longitude": "-58.47263000" + }, + { + "id": "1570", + "name": "Villa Ortúzar", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.57973000", + "longitude": "-58.46829000" + }, + { + "id": "1576", + "name": "Villa Santa Rita", + "state_id": 3656, + "state_code": "C", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.61082000", + "longitude": "-58.48100000" + }, + { + "id": "659", + "name": "Ancasti", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.81247000", + "longitude": "-65.50145000" + }, + { + "id": "661", + "name": "Andalgalá", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.58185000", + "longitude": "-66.31626000" + }, + { + "id": "663", + "name": "Antofagasta de la Sierra", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.05940000", + "longitude": "-67.40636000" + }, + { + "id": "726", + "name": "Capayán", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.77436000", + "longitude": "-66.04749000" + }, + { + "id": "824", + "name": "Departamento de Ambato", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.00000000", + "longitude": "-65.91667000" + }, + { + "id": "825", + "name": "Departamento de Ancasti", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.00000000", + "longitude": "-65.50000000" + }, + { + "id": "826", + "name": "Departamento de Andalgalá", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.58333000", + "longitude": "-66.46667000" + }, + { + "id": "829", + "name": "Departamento de Antofagasta de la Sierra", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.00000000", + "longitude": "-67.58333000" + }, + { + "id": "846", + "name": "Departamento de Capayán", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.83333000", + "longitude": "-66.00000000" + }, + { + "id": "849", + "name": "Departamento de Capital", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.41667000", + "longitude": "-65.80000000" + }, + { + "id": "877", + "name": "Departamento de El Alto", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.41667000", + "longitude": "-65.41667000" + }, + { + "id": "884", + "name": "Departamento de Fray Mamerto Esquiú", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.30000000", + "longitude": "-65.75000000" + }, + { + "id": "918", + "name": "Departamento de La Paz", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.25000000", + "longitude": "-65.25000000" + }, + { + "id": "959", + "name": "Departamento de Pomán", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.25000000", + "longitude": "-66.41667000" + }, + { + "id": "1006", + "name": "Departamento de Santa María", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.66667000", + "longitude": "-66.41667000" + }, + { + "id": "1007", + "name": "Departamento de Santa Rosa", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.08333000", + "longitude": "-65.25000000" + }, + { + "id": "1020", + "name": "Departamento de Tinogasta", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50000000", + "longitude": "-68.00000000" + }, + { + "id": "1030", + "name": "Departamento de Valle Viejo", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.58333000", + "longitude": "-65.75000000" + }, + { + "id": "1060", + "name": "El Rodeo", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.21518000", + "longitude": "-65.87420000" + }, + { + "id": "1078", + "name": "Fiambalá", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.67225000", + "longitude": "-67.61870000" + }, + { + "id": "1142", + "name": "Hualfín", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.22896000", + "longitude": "-66.83131000" + }, + { + "id": "1145", + "name": "Huillapima", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.72533000", + "longitude": "-65.97870000" + }, + { + "id": "1149", + "name": "Icaño", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.91934000", + "longitude": "-65.32817000" + }, + { + "id": "1197", + "name": "La Puerta de San José", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.55000000", + "longitude": "-67.01667000" + }, + { + "id": "1239", + "name": "Londres", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.71439000", + "longitude": "-67.13349000" + }, + { + "id": "1243", + "name": "Los Altos", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.04845000", + "longitude": "-65.49945000" + }, + { + "id": "1256", + "name": "Los Varela", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.93003000", + "longitude": "-65.87153000" + }, + { + "id": "1294", + "name": "Mutquín", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.32104000", + "longitude": "-66.14253000" + }, + { + "id": "1340", + "name": "Pomán", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.39455000", + "longitude": "-66.22052000" + }, + { + "id": "1350", + "name": "Puerta de Corral Quemado", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.23000000", + "longitude": "-66.93635000" + }, + { + "id": "1378", + "name": "Recreo", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.28184000", + "longitude": "-65.06096000" + }, + { + "id": "1408", + "name": "San Antonio", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.01009000", + "longitude": "-65.70874000" + }, + { + "id": "1421", + "name": "San Fernando del Valle de Catamarca", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.46957000", + "longitude": "-65.78524000" + }, + { + "id": "1464", + "name": "Santa María", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.69547000", + "longitude": "-66.04732000" + }, + { + "id": "1505", + "name": "Tinogasta", + "state_id": 3647, + "state_code": "K", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.06319000", + "longitude": "-67.56488000" + }, + { + "id": "639", + "name": "Achiras", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.17538000", + "longitude": "-64.99331000" + }, + { + "id": "640", + "name": "Adelia María", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.63152000", + "longitude": "-64.02097000" + }, + { + "id": "641", + "name": "Agua de Oro", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.06661000", + "longitude": "-64.30017000" + }, + { + "id": "647", + "name": "Alejandro Roca", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.35369000", + "longitude": "-63.71849000" + }, + { + "id": "648", + "name": "Alejo Ledesma", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.60643000", + "longitude": "-62.62304000" + }, + { + "id": "651", + "name": "Almafuerte", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.19296000", + "longitude": "-64.25559000" + }, + { + "id": "653", + "name": "Alta Gracia", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.65292000", + "longitude": "-64.42826000" + }, + { + "id": "656", + "name": "Altos de Chipión", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.95590000", + "longitude": "-62.33727000" + }, + { + "id": "668", + "name": "Arias", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.64411000", + "longitude": "-62.40272000" + }, + { + "id": "671", + "name": "Arroyito", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.42022000", + "longitude": "-63.05002000" + }, + { + "id": "672", + "name": "Arroyo Cabral", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.49119000", + "longitude": "-63.40126000" + }, + { + "id": "681", + "name": "Balnearia", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.00880000", + "longitude": "-62.66733000" + }, + { + "id": "688", + "name": "Bell Ville", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.62591000", + "longitude": "-62.68873000" + }, + { + "id": "695", + "name": "Berrotarán", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.45100000", + "longitude": "-64.38867000" + }, + { + "id": "701", + "name": "Brinkmann", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.86589000", + "longitude": "-62.03742000" + }, + { + "id": "702", + "name": "Buchardo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.72263000", + "longitude": "-63.50920000" + }, + { + "id": "744", + "name": "Cañada de Luque", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.73341000", + "longitude": "-63.72375000" + }, + { + "id": "716", + "name": "Camilo Aldao", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.12745000", + "longitude": "-62.09453000" + }, + { + "id": "723", + "name": "Canals", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.56542000", + "longitude": "-62.88927000" + }, + { + "id": "727", + "name": "Capilla del Monte", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.86088000", + "longitude": "-64.52515000" + }, + { + "id": "733", + "name": "Carnerillo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.91371000", + "longitude": "-64.02175000" + }, + { + "id": "734", + "name": "Carrilobo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.87296000", + "longitude": "-63.11715000" + }, + { + "id": "742", + "name": "Cavanagh", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.47606000", + "longitude": "-62.33888000" + }, + { + "id": "815", + "name": "Córdoba", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.41350000", + "longitude": "-64.18105000" + }, + { + "id": "755", + "name": "Charras", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.02400000", + "longitude": "-64.04719000" + }, + { + "id": "757", + "name": "Chazón", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.07872000", + "longitude": "-63.27657000" + }, + { + "id": "769", + "name": "Cintra", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.30673000", + "longitude": "-62.65214000" + }, + { + "id": "780", + "name": "Colonia La Tordilla", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.23746000", + "longitude": "-63.06134000" + }, + { + "id": "781", + "name": "Colonia San Bartolomé", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.52780000", + "longitude": "-62.72436000" + }, + { + "id": "797", + "name": "Coronel Baigorria", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.84770000", + "longitude": "-64.36107000" + }, + { + "id": "800", + "name": "Coronel Moldes", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.62270000", + "longitude": "-64.59711000" + }, + { + "id": "801", + "name": "Corral de Bustos", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.28205000", + "longitude": "-62.18463000" + }, + { + "id": "802", + "name": "Corralito", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.02462000", + "longitude": "-64.19216000" + }, + { + "id": "805", + "name": "Cosquín", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.24508000", + "longitude": "-64.46563000" + }, + { + "id": "806", + "name": "Costa Sacate", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.64770000", + "longitude": "-63.75935000" + }, + { + "id": "809", + "name": "Cruz Alta", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.00887000", + "longitude": "-61.80746000" + }, + { + "id": "811", + "name": "Cruz del Eje", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.72644000", + "longitude": "-64.80387000" + }, + { + "id": "812", + "name": "Cuesta Blanca", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.48658000", + "longitude": "-64.57150000" + }, + { + "id": "816", + "name": "Dalmacio Vélez Sársfield", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.61072000", + "longitude": "-63.58038000" + }, + { + "id": "1039", + "name": "Deán Funes", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.42036000", + "longitude": "-64.34984000" + }, + { + "id": "818", + "name": "Del Campillo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.37659000", + "longitude": "-64.49504000" + }, + { + "id": "842", + "name": "Departamento de Calamuchita", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.25000000", + "longitude": "-64.58333000" + }, + { + "id": "864", + "name": "Departamento de Colón", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.16667000", + "longitude": "-64.16667000" + }, + { + "id": "871", + "name": "Departamento de Cruz del Eje", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.75000000", + "longitude": "-65.00000000" + }, + { + "id": "896", + "name": "Departamento de General Roca", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.66667000", + "longitude": "-64.25000000" + }, + { + "id": "897", + "name": "Departamento de General San Martín", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.50000000", + "longitude": "-63.33333000" + }, + { + "id": "914", + "name": "Departamento de Juárez Celman", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.33333000", + "longitude": "-63.66667000" + }, + { + "id": "939", + "name": "Departamento de Marcos Juárez", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.00000000", + "longitude": "-62.25000000" + }, + { + "id": "943", + "name": "Departamento de Minas", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.00000000", + "longitude": "-65.33333000" + }, + { + "id": "961", + "name": "Departamento de Presidente Roque Sáenz Peña", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.25000000", + "longitude": "-63.50000000" + }, + { + "id": "974", + "name": "Departamento de Río Cuarto", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.33333000", + "longitude": "-64.50000000" + }, + { + "id": "976", + "name": "Departamento de Río Primero", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.08333000", + "longitude": "-63.50000000" + }, + { + "id": "977", + "name": "Departamento de Río Seco", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.08333000", + "longitude": "-63.00000000" + }, + { + "id": "978", + "name": "Departamento de Río Segundo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.75000000", + "longitude": "-63.50000000" + }, + { + "id": "981", + "name": "Departamento de San Alberto", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.75000000", + "longitude": "-65.25000000" + }, + { + "id": "990", + "name": "Departamento de San Javier", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.08333000", + "longitude": "-65.16667000" + }, + { + "id": "991", + "name": "Departamento de San Justo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.33333000", + "longitude": "-62.66667000" + }, + { + "id": "1016", + "name": "Departamento de Sobremonte", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.66667000", + "longitude": "-64.08333000" + }, + { + "id": "1022", + "name": "Departamento de Totoral", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.83333000", + "longitude": "-63.91667000" + }, + { + "id": "1024", + "name": "Departamento de Tulumba", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.25000000", + "longitude": "-63.91667000" + }, + { + "id": "1029", + "name": "Departamento de Unión", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.83333000", + "longitude": "-62.75000000" + }, + { + "id": "1037", + "name": "Despeñaderos", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.81626000", + "longitude": "-64.28989000" + }, + { + "id": "1038", + "name": "Devoto", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.40431000", + "longitude": "-62.30634000" + }, + { + "id": "1049", + "name": "El Arañado", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.74120000", + "longitude": "-62.89322000" + }, + { + "id": "1063", + "name": "El Tío", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.38357000", + "longitude": "-62.82938000" + }, + { + "id": "1064", + "name": "Elena", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.57205000", + "longitude": "-64.39481000" + }, + { + "id": "1066", + "name": "Embalse", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.18000000", + "longitude": "-64.41809000" + }, + { + "id": "1073", + "name": "Etruria", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.94008000", + "longitude": "-63.24660000" + }, + { + "id": "1096", + "name": "General Baldissera", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.12246000", + "longitude": "-62.30630000" + }, + { + "id": "1097", + "name": "General Cabrera", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.81313000", + "longitude": "-63.87243000" + }, + { + "id": "1106", + "name": "General Levalle", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.01472000", + "longitude": "-63.92413000" + }, + { + "id": "1111", + "name": "General Roca", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.73196000", + "longitude": "-61.91599000" + }, + { + "id": "1129", + "name": "Guatimozín", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.46149000", + "longitude": "-62.43844000" + }, + { + "id": "1136", + "name": "Hernando", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.42657000", + "longitude": "-63.73333000" + }, + { + "id": "1143", + "name": "Huanchillas", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.66653000", + "longitude": "-63.63701000" + }, + { + "id": "1144", + "name": "Huerta Grande", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.07524000", + "longitude": "-64.49063000" + }, + { + "id": "1146", + "name": "Huinca Renancó", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.84038000", + "longitude": "-64.37580000" + }, + { + "id": "1150", + "name": "Idiazábal", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.81411000", + "longitude": "-63.03252000" + }, + { + "id": "1156", + "name": "Inriville", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.94424000", + "longitude": "-62.23028000" + }, + { + "id": "1159", + "name": "Isla Verde", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.24104000", + "longitude": "-62.40297000" + }, + { + "id": "1160", + "name": "Italó", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.79237000", + "longitude": "-63.78199000" + }, + { + "id": "1165", + "name": "James Craik", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.16120000", + "longitude": "-63.46688000" + }, + { + "id": "1167", + "name": "Jesús María", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.98153000", + "longitude": "-64.09424000" + }, + { + "id": "1173", + "name": "Justiniano Posse", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.88411000", + "longitude": "-62.67788000" + }, + { + "id": "1178", + "name": "La Calera", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.34377000", + "longitude": "-64.33529000" + }, + { + "id": "1179", + "name": "La Carlota", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.41993000", + "longitude": "-63.29769000" + }, + { + "id": "1180", + "name": "La Cesira", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.95115000", + "longitude": "-62.97238000" + }, + { + "id": "1185", + "name": "La Cumbre", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.98201000", + "longitude": "-64.49139000" + }, + { + "id": "1188", + "name": "La Falda", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.08841000", + "longitude": "-64.48987000" + }, + { + "id": "1189", + "name": "La Francia", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.40675000", + "longitude": "-62.63396000" + }, + { + "id": "1190", + "name": "La Granja", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.00919000", + "longitude": "-64.26869000" + }, + { + "id": "1194", + "name": "La Para", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.89416000", + "longitude": "-63.00107000" + }, + { + "id": "1196", + "name": "La Playosa", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.10002000", + "longitude": "-63.03088000" + }, + { + "id": "1204", + "name": "Laborde", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.15319000", + "longitude": "-62.85661000" + }, + { + "id": "1205", + "name": "Laboulaye", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.12662000", + "longitude": "-63.39119000" + }, + { + "id": "1207", + "name": "Laguna Larga", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.77652000", + "longitude": "-63.80104000" + }, + { + "id": "1215", + "name": "Las Acequias", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.28155000", + "longitude": "-63.97610000" + }, + { + "id": "1221", + "name": "Las Higueras", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.09231000", + "longitude": "-64.28899000" + }, + { + "id": "1222", + "name": "Las Junturas", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.83125000", + "longitude": "-63.45016000" + }, + { + "id": "1228", + "name": "Las Perdices", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.69794000", + "longitude": "-63.70634000" + }, + { + "id": "1232", + "name": "Las Varas", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.80260000", + "longitude": "-62.61655000" + }, + { + "id": "1233", + "name": "Las Varillas", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.87208000", + "longitude": "-62.71946000" + }, + { + "id": "1234", + "name": "Leones", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.66174000", + "longitude": "-62.29678000" + }, + { + "id": "1248", + "name": "Los Cóndores", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.31983000", + "longitude": "-64.27751000" + }, + { + "id": "1246", + "name": "Los Cocos", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.92497000", + "longitude": "-64.50207000" + }, + { + "id": "1254", + "name": "Los Surgentes", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.98454000", + "longitude": "-62.02191000" + }, + { + "id": "1266", + "name": "Malagueño", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.46467000", + "longitude": "-64.35840000" + }, + { + "id": "1267", + "name": "Malvinas Argentinas", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.38194000", + "longitude": "-64.05545000" + }, + { + "id": "1269", + "name": "Marcos Juárez", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.69780000", + "longitude": "-62.10672000" + }, + { + "id": "1273", + "name": "Marull", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.99471000", + "longitude": "-62.82576000" + }, + { + "id": "1274", + "name": "Mattaldi", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.48194000", + "longitude": "-64.17255000" + }, + { + "id": "1277", + "name": "Mendiolaza", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.26738000", + "longitude": "-64.30087000" + }, + { + "id": "1282", + "name": "Mina Clavero", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.72101000", + "longitude": "-65.00619000" + }, + { + "id": "1283", + "name": "Miramar", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.91859000", + "longitude": "-62.67814000" + }, + { + "id": "1286", + "name": "Monte Buey", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.91642000", + "longitude": "-62.45669000" + }, + { + "id": "1288", + "name": "Monte Cristo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.34312000", + "longitude": "-63.94437000" + }, + { + "id": "1289", + "name": "Monte Maíz", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.20462000", + "longitude": "-62.60085000" + }, + { + "id": "1292", + "name": "Morrison", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.59480000", + "longitude": "-62.83455000" + }, + { + "id": "1293", + "name": "Morteros", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.71164000", + "longitude": "-61.99862000" + }, + { + "id": "1299", + "name": "Noetinger", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.36597000", + "longitude": "-62.31126000" + }, + { + "id": "1305", + "name": "Obispo Trejo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.78128000", + "longitude": "-63.41349000" + }, + { + "id": "1306", + "name": "Oliva", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.04158000", + "longitude": "-63.56978000" + }, + { + "id": "1307", + "name": "Oncativo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.91353000", + "longitude": "-63.68201000" + }, + { + "id": "1308", + "name": "Ordóñez", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.84057000", + "longitude": "-62.86552000" + }, + { + "id": "1321", + "name": "Pascanas", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.12550000", + "longitude": "-63.04084000" + }, + { + "id": "1322", + "name": "Pasco", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.74733000", + "longitude": "-63.34232000" + }, + { + "id": "1333", + "name": "Pilar", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.67890000", + "longitude": "-63.87964000" + }, + { + "id": "1335", + "name": "Piquillín", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.30158000", + "longitude": "-63.75788000" + }, + { + "id": "1341", + "name": "Porteña", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.01391000", + "longitude": "-62.06650000" + }, + { + "id": "1343", + "name": "Pozo del Molle", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.01860000", + "longitude": "-62.91984000" + }, + { + "id": "1368", + "name": "Quilino", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.21397000", + "longitude": "-64.50063000" + }, + { + "id": "1388", + "name": "Río Ceballos", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.16486000", + "longitude": "-64.32241000" + }, + { + "id": "1390", + "name": "Río Cuarto", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.13067000", + "longitude": "-64.34992000" + }, + { + "id": "1395", + "name": "Río Segundo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.65260000", + "longitude": "-63.90990000" + }, + { + "id": "1396", + "name": "Río Tercero", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.17301000", + "longitude": "-64.11405000" + }, + { + "id": "1398", + "name": "Sacanta", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.66300000", + "longitude": "-63.04505000" + }, + { + "id": "1400", + "name": "Saldán", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.30262000", + "longitude": "-64.30700000" + }, + { + "id": "1401", + "name": "Salsacate", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.31842000", + "longitude": "-65.09003000" + }, + { + "id": "1402", + "name": "Salsipuedes", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.13725000", + "longitude": "-64.29589000" + }, + { + "id": "1404", + "name": "Sampacho", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.38390000", + "longitude": "-64.72211000" + }, + { + "id": "1406", + "name": "San Agustín", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.97681000", + "longitude": "-64.37400000" + }, + { + "id": "1410", + "name": "San Antonio de Litín", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.21377000", + "longitude": "-62.63237000" + }, + { + "id": "1412", + "name": "San Basilio", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.49763000", + "longitude": "-64.31495000" + }, + { + "id": "1415", + "name": "San Carlos", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.17761000", + "longitude": "-65.10245000" + }, + { + "id": "1422", + "name": "San Francisco", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.42797000", + "longitude": "-62.08266000" + }, + { + "id": "1424", + "name": "San Francisco del Chañar", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.78830000", + "longitude": "-63.94411000" + }, + { + "id": "1432", + "name": "San José de la Dormida", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.35440000", + "longitude": "-63.94871000" + }, + { + "id": "1457", + "name": "Santa Eufemia", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.17659000", + "longitude": "-63.28281000" + }, + { + "id": "1462", + "name": "Santa Magdalena", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.51776000", + "longitude": "-63.94409000" + }, + { + "id": "1467", + "name": "Santa Rosa de Calamuchita", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.06905000", + "longitude": "-64.53631000" + }, + { + "id": "1468", + "name": "Santa Rosa de Río Primero", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.15231000", + "longitude": "-63.40191000" + }, + { + "id": "1472", + "name": "Santiago Temple", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.38731000", + "longitude": "-63.41821000" + }, + { + "id": "1479", + "name": "Saturnino M. Laspiur", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.70287000", + "longitude": "-62.48202000" + }, + { + "id": "1481", + "name": "Sebastián Elcano", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.16105000", + "longitude": "-63.59360000" + }, + { + "id": "1484", + "name": "Serrano", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.46971000", + "longitude": "-63.53842000" + }, + { + "id": "1485", + "name": "Serrezuela", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.63761000", + "longitude": "-65.38692000" + }, + { + "id": "1497", + "name": "Tancacha", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.24309000", + "longitude": "-63.98070000" + }, + { + "id": "1517", + "name": "Tío Pujio", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.28790000", + "longitude": "-63.35598000" + }, + { + "id": "1502", + "name": "Ticino", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.69350000", + "longitude": "-63.43606000" + }, + { + "id": "1507", + "name": "Toledo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.55574000", + "longitude": "-64.00947000" + }, + { + "id": "1519", + "name": "Ucacha", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.03203000", + "longitude": "-63.50666000" + }, + { + "id": "1521", + "name": "Unquillo", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.23073000", + "longitude": "-64.31615000" + }, + { + "id": "1526", + "name": "Valle Hermoso", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.11732000", + "longitude": "-64.48084000" + }, + { + "id": "1532", + "name": "Viamonte", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.74647000", + "longitude": "-63.09764000" + }, + { + "id": "1535", + "name": "Vicuña Mackenna", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.91965000", + "longitude": "-64.39215000" + }, + { + "id": "1537", + "name": "Villa Allende", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.29458000", + "longitude": "-64.29538000" + }, + { + "id": "1538", + "name": "Villa Ascasubi", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.16351000", + "longitude": "-63.89157000" + }, + { + "id": "1541", + "name": "Villa Berna", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.91419000", + "longitude": "-64.73249000" + }, + { + "id": "1544", + "name": "Villa Carlos Paz", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.42414000", + "longitude": "-64.49778000" + }, + { + "id": "1546", + "name": "Villa Concepción del Tío", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.32259000", + "longitude": "-62.81354000" + }, + { + "id": "1548", + "name": "Villa Cura Brochero", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.70578000", + "longitude": "-65.01796000" + }, + { + "id": "1581", + "name": "Villa de Soto", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.85523000", + "longitude": "-64.99947000" + }, + { + "id": "1582", + "name": "Villa del Dique", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.17667000", + "longitude": "-64.45543000" + }, + { + "id": "1583", + "name": "Villa del Rosario", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.55660000", + "longitude": "-63.53452000" + }, + { + "id": "1585", + "name": "Villa del Totoral", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.81667000", + "longitude": "-63.71667000" + }, + { + "id": "1549", + "name": "Villa Dolores", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.94585000", + "longitude": "-65.18958000" + }, + { + "id": "1552", + "name": "Villa General Belgrano", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.97828000", + "longitude": "-64.55627000" + }, + { + "id": "1556", + "name": "Villa Giardino", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.03333000", + "longitude": "-64.48333000" + }, + { + "id": "1558", + "name": "Villa Huidobro", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.83826000", + "longitude": "-64.58686000" + }, + { + "id": "1560", + "name": "Villa Las Rosas", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.95021000", + "longitude": "-65.05354000" + }, + { + "id": "1563", + "name": "Villa María", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.40751000", + "longitude": "-63.24016000" + }, + { + "id": "1567", + "name": "Villa Nueva", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.43293000", + "longitude": "-63.24763000" + }, + { + "id": "1573", + "name": "Villa Reducción", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.20105000", + "longitude": "-63.86234000" + }, + { + "id": "1575", + "name": "Villa Rumipal", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.18790000", + "longitude": "-64.48027000" + }, + { + "id": "1578", + "name": "Villa Tulumba", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.39552000", + "longitude": "-64.12241000" + }, + { + "id": "1580", + "name": "Villa Valeria", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.34093000", + "longitude": "-64.92030000" + }, + { + "id": "1591", + "name": "Wenceslao Escalante", + "state_id": 3642, + "state_code": "X", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.17303000", + "longitude": "-62.77078000" + }, + { + "id": "677", + "name": "Aviá Terai", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.68532000", + "longitude": "-60.72920000" + }, + { + "id": "685", + "name": "Barranqueras", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.48132000", + "longitude": "-58.93925000" + }, + { + "id": "686", + "name": "Basail", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.88539000", + "longitude": "-59.28245000" + }, + { + "id": "719", + "name": "Campo Largo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.80077000", + "longitude": "-60.84215000" + }, + { + "id": "730", + "name": "Capitán Solari", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.80215000", + "longitude": "-59.56089000" + }, + { + "id": "737", + "name": "Castelli", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.94679000", + "longitude": "-60.61947000" + }, + { + "id": "753", + "name": "Charadai", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.65503000", + "longitude": "-59.86291000" + }, + { + "id": "754", + "name": "Charata", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.21438000", + "longitude": "-61.18795000" + }, + { + "id": "765", + "name": "Chorotis", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.91578000", + "longitude": "-61.39982000" + }, + { + "id": "767", + "name": "Ciervo Petiso", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.58041000", + "longitude": "-59.63094000" + }, + { + "id": "776", + "name": "Colonia Benítez", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.33099000", + "longitude": "-58.94622000" + }, + { + "id": "778", + "name": "Colonia Elisa", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.93041000", + "longitude": "-59.51861000" + }, + { + "id": "782", + "name": "Colonias Unidas", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.69825000", + "longitude": "-59.63154000" + }, + { + "id": "791", + "name": "Concepción del Bermejo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.59926000", + "longitude": "-60.94617000" + }, + { + "id": "799", + "name": "Coronel Du Graty", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.68038000", + "longitude": "-60.91462000" + }, + { + "id": "804", + "name": "Corzuela", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.95374000", + "longitude": "-60.96928000" + }, + { + "id": "807", + "name": "Coté-Lai", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50000000", + "longitude": "-59.60000000" + }, + { + "id": "822", + "name": "Departamento de Almirante Brown", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.81662000", + "longitude": "-61.45576000" + }, + { + "id": "837", + "name": "Departamento de Bermejo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.00000000", + "longitude": "-58.66667000" + }, + { + "id": "865", + "name": "Departamento de Comandante Fernández", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.83333000", + "longitude": "-60.50000000" + }, + { + "id": "875", + "name": "Departamento de Doce de Octubre", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.41667000", + "longitude": "-61.33333000" + }, + { + "id": "876", + "name": "Departamento de Dos de Abril", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.60932000", + "longitude": "-61.34473000" + }, + { + "id": "890", + "name": "Departamento de General Donovan", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.16667000", + "longitude": "-59.33333000" + }, + { + "id": "892", + "name": "Departamento de General Güemes", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.16667000", + "longitude": "-61.41667000" + }, + { + "id": "909", + "name": "Departamento de Independencia", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.66667000", + "longitude": "-60.66667000" + }, + { + "id": "928", + "name": "Departamento de Libertad", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.33333000", + "longitude": "-59.33333000" + }, + { + "id": "937", + "name": "Departamento de Maipú", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.33333000", + "longitude": "-60.41667000" + }, + { + "id": "950", + "name": "Departamento de Nueve de Julio", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.95331000", + "longitude": "-61.27627000" + }, + { + "id": "954", + "name": "Departamento de O’Higgins", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.25000000", + "longitude": "-60.66667000" + }, + { + "id": "960", + "name": "Departamento de Presidencia de la Plaza", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.00000000", + "longitude": "-59.75000000" + }, + { + "id": "962", + "name": "Departamento de Quitilipi", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.66667000", + "longitude": "-60.16667000" + }, + { + "id": "986", + "name": "Departamento de San Fernando", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.66667000", + "longitude": "-59.16667000" + }, + { + "id": "994", + "name": "Departamento de San Lorenzo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.33333000", + "longitude": "-60.41667000" + }, + { + "id": "1010", + "name": "Departamento de Sargento Cabral", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.83333000", + "longitude": "-59.50000000" + }, + { + "id": "1017", + "name": "Departamento de Tapenagá", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50000000", + "longitude": "-59.75000000" + }, + { + "id": "1081", + "name": "Fontana", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.41813000", + "longitude": "-59.02392000" + }, + { + "id": "1088", + "name": "Gancedo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.49038000", + "longitude": "-61.67571000" + }, + { + "id": "1105", + "name": "General José de San Martín", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.53743000", + "longitude": "-59.34158000" + }, + { + "id": "1109", + "name": "General Pinedo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.31667000", + "longitude": "-61.28333000" + }, + { + "id": "1114", + "name": "General Vedia", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.93382000", + "longitude": "-58.66040000" + }, + { + "id": "1135", + "name": "Hermoso Campo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.60816000", + "longitude": "-61.34441000" + }, + { + "id": "1181", + "name": "La Clotilde", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.13333000", + "longitude": "-60.66667000" + }, + { + "id": "1186", + "name": "La Eduvigis", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.83607000", + "longitude": "-59.06211000" + }, + { + "id": "1187", + "name": "La Escondida", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.10724000", + "longitude": "-59.44784000" + }, + { + "id": "1191", + "name": "La Leonesa", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.03786000", + "longitude": "-58.70347000" + }, + { + "id": "1201", + "name": "La Tigra", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.10996000", + "longitude": "-60.58719000" + }, + { + "id": "1203", + "name": "La Verde", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.12634000", + "longitude": "-59.37352000" + }, + { + "id": "1208", + "name": "Laguna Limpia", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.49565000", + "longitude": "-59.68083000" + }, + { + "id": "1213", + "name": "Lapachito", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.15997000", + "longitude": "-59.38605000" + }, + { + "id": "1216", + "name": "Las Breñas", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.08966000", + "longitude": "-61.08161000" + }, + { + "id": "1218", + "name": "Las Garcitas", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.61802000", + "longitude": "-59.80135000" + }, + { + "id": "1249", + "name": "Los Frentones", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.40770000", + "longitude": "-61.41367000" + }, + { + "id": "1260", + "name": "Machagai", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.92614000", + "longitude": "-60.04955000" + }, + { + "id": "1264", + "name": "Makallé", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.20687000", + "longitude": "-59.28696000" + }, + { + "id": "1270", + "name": "Margarita Belén", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.26160000", + "longitude": "-58.97219000" + }, + { + "id": "1296", + "name": "Napenay", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.73333000", + "longitude": "-60.61667000" + }, + { + "id": "1314", + "name": "Pampa Almirón", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.70039000", + "longitude": "-59.12331000" + }, + { + "id": "1316", + "name": "Pampa del Indio", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.04982000", + "longitude": "-59.93728000" + }, + { + "id": "1317", + "name": "Pampa del Infierno", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.50517000", + "longitude": "-61.17436000" + }, + { + "id": "1347", + "name": "Presidencia de la Plaza", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.00147000", + "longitude": "-59.84243000" + }, + { + "id": "1345", + "name": "Presidencia Roca", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.14090000", + "longitude": "-59.59541000" + }, + { + "id": "1346", + "name": "Presidencia Roque Sáenz Peña", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.78522000", + "longitude": "-60.43876000" + }, + { + "id": "1351", + "name": "Puerto Bermejo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.92739000", + "longitude": "-58.50917000" + }, + { + "id": "1363", + "name": "Puerto Tirol", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.37218000", + "longitude": "-59.08206000" + }, + { + "id": "1364", + "name": "Puerto Vilelas", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.51414000", + "longitude": "-58.93906000" + }, + { + "id": "1370", + "name": "Quitilipi", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.86913000", + "longitude": "-60.21683000" + }, + { + "id": "1379", + "name": "Resistencia", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.46056000", + "longitude": "-58.98389000" + }, + { + "id": "1405", + "name": "Samuhú", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.52116000", + "longitude": "-60.39167000" + }, + { + "id": "1414", + "name": "San Bernardo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.28782000", + "longitude": "-60.71252000" + }, + { + "id": "1471", + "name": "Santa Sylvina", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.83261000", + "longitude": "-61.13747000" + }, + { + "id": "1493", + "name": "Taco Pozo", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.61557000", + "longitude": "-63.26708000" + }, + { + "id": "1515", + "name": "Tres Isletas", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.34067000", + "longitude": "-60.43207000" + }, + { + "id": "1586", + "name": "Villa Ángela", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.57383000", + "longitude": "-60.71526000" + }, + { + "id": "1542", + "name": "Villa Berthet", + "state_id": 3640, + "state_code": "H", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.29174000", + "longitude": "-60.41263000" + }, + { + "id": "655", + "name": "Alto Río Senguer", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-45.04105000", + "longitude": "-70.81982000" + }, + { + "id": "715", + "name": "Camarones", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-44.79709000", + "longitude": "-65.70994000" + }, + { + "id": "787", + "name": "Comodoro Rivadavia", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-45.86413000", + "longitude": "-67.49656000" + }, + { + "id": "839", + "name": "Departamento de Biedma", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.41667000", + "longitude": "-65.00000000" + }, + { + "id": "873", + "name": "Departamento de Cushamen", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.50000000", + "longitude": "-70.83333000" + }, + { + "id": "880", + "name": "Departamento de Escalante", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-45.33333000", + "longitude": "-67.33333000" + }, + { + "id": "883", + "name": "Departamento de Florentino Ameghino", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-44.41667000", + "longitude": "-66.16667000" + }, + { + "id": "885", + "name": "Departamento de Futaleufú", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.08333000", + "longitude": "-71.41667000" + }, + { + "id": "886", + "name": "Departamento de Gaimán", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.33333000", + "longitude": "-66.33333000" + }, + { + "id": "887", + "name": "Departamento de Gastre", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.83333000", + "longitude": "-68.66667000" + }, + { + "id": "923", + "name": "Departamento de Languiñeo", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.33333000", + "longitude": "-70.66667000" + }, + { + "id": "949", + "name": "Departamento de Mártires", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.83333000", + "longitude": "-67.16667000" + }, + { + "id": "956", + "name": "Departamento de Paso de Indios", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-44.00000000", + "longitude": "-68.83333000" + }, + { + "id": "963", + "name": "Departamento de Rawson", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.12342000", + "longitude": "-65.10179000" + }, + { + "id": "979", + "name": "Departamento de Río Senguerr", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-45.33333000", + "longitude": "-70.83333000" + }, + { + "id": "1012", + "name": "Departamento de Sarmiento", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-45.33333000", + "longitude": "-69.00000000" + }, + { + "id": "1018", + "name": "Departamento de Tehuelches", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-44.22132000", + "longitude": "-70.25260000" + }, + { + "id": "1019", + "name": "Departamento de Telsen", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.41667000", + "longitude": "-67.16667000" + }, + { + "id": "1042", + "name": "Dolavón", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.30684000", + "longitude": "-65.70651000" + }, + { + "id": "1058", + "name": "El Maitén", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.04924000", + "longitude": "-71.16693000" + }, + { + "id": "1070", + "name": "Esquel", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.91147000", + "longitude": "-71.31947000" + }, + { + "id": "1087", + "name": "Gaimán", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.28970000", + "longitude": "-65.49290000" + }, + { + "id": "1092", + "name": "Gastre", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.26186000", + "longitude": "-69.22112000" + }, + { + "id": "1115", + "name": "Gobernador Costa", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-44.04992000", + "longitude": "-70.59798000" + }, + { + "id": "1141", + "name": "Hoyo de Epuyén", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.07189000", + "longitude": "-71.50811000" + }, + { + "id": "1169", + "name": "José de San Martín", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-44.05032000", + "longitude": "-70.46967000" + }, + { + "id": "1206", + "name": "Lago Puelo", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.06684000", + "longitude": "-71.60384000" + }, + { + "id": "1229", + "name": "Las Plumas", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.72058000", + "longitude": "-67.28319000" + }, + { + "id": "1359", + "name": "Puerto Madryn", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-42.76920000", + "longitude": "-65.03851000" + }, + { + "id": "1371", + "name": "Rada Tilly", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-45.92462000", + "longitude": "-67.55424000" + }, + { + "id": "1374", + "name": "Rawson", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.30016000", + "longitude": "-65.10228000" + }, + { + "id": "1393", + "name": "Río Mayo", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-45.68573000", + "longitude": "-70.25797000" + }, + { + "id": "1394", + "name": "Río Pico", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-44.17905000", + "longitude": "-71.36847000" + }, + { + "id": "1477", + "name": "Sarmiento", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-45.58815000", + "longitude": "-69.06996000" + }, + { + "id": "1499", + "name": "Tecka", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.49489000", + "longitude": "-70.81020000" + }, + { + "id": "1512", + "name": "Trelew", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.24895000", + "longitude": "-65.30505000" + }, + { + "id": "1516", + "name": "Trevelin", + "state_id": 3651, + "state_code": "U", + "country_id": 11, + "country_code": "AR", + "latitude": "-43.08580000", + "longitude": "-71.46386000" + }, + { + "id": "658", + "name": "Alvear", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.09683000", + "longitude": "-56.55043000" + }, + { + "id": "696", + "name": "Berón de Astrada", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.55067000", + "longitude": "-57.53460000" + }, + { + "id": "698", + "name": "Bonpland", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.81708000", + "longitude": "-57.42974000" + }, + { + "id": "756", + "name": "Chavarría", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.95489000", + "longitude": "-58.57277000" + }, + { + "id": "789", + "name": "Concepción", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.39175000", + "longitude": "-57.88777000" + }, + { + "id": "803", + "name": "Corrientes", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.46784000", + "longitude": "-58.83440000" + }, + { + "id": "810", + "name": "Cruz de los Milagros", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.83646000", + "longitude": "-59.00476000" + }, + { + "id": "813", + "name": "Curuzú Cuatiá", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.79171000", + "longitude": "-58.05460000" + }, + { + "id": "836", + "name": "Departamento de Bella Vista", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.50000000", + "longitude": "-58.83333000" + }, + { + "id": "838", + "name": "Departamento de Berón de Astrada", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50000000", + "longitude": "-57.66667000" + }, + { + "id": "847", + "name": "Departamento de Capital", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50000000", + "longitude": "-58.75000000" + }, + { + "id": "866", + "name": "Departamento de Concepción", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.33333000", + "longitude": "-58.00000000" + }, + { + "id": "872", + "name": "Departamento de Curuzú Cuatiá", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.50000000", + "longitude": "-58.50000000" + }, + { + "id": "879", + "name": "Departamento de Empedrado", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.83333000", + "longitude": "-58.66667000" + }, + { + "id": "881", + "name": "Departamento de Esquina", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.00000000", + "longitude": "-59.33333000" + }, + { + "id": "888", + "name": "Departamento de General Alvear", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.83333000", + "longitude": "-56.50000000" + }, + { + "id": "895", + "name": "Departamento de General Paz", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.75000000", + "longitude": "-57.83333000" + }, + { + "id": "899", + "name": "Departamento de Goya", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.50000000", + "longitude": "-59.50000000" + }, + { + "id": "912", + "name": "Departamento de Itatí", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.33333000", + "longitude": "-58.00000000" + }, + { + "id": "913", + "name": "Departamento de Ituzaingó", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.90085000", + "longitude": "-56.86604000" + }, + { + "id": "925", + "name": "Departamento de Lavalle", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.00000000", + "longitude": "-58.91667000" + }, + { + "id": "940", + "name": "Departamento de Mburucuyá", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.00000000", + "longitude": "-58.25000000" + }, + { + "id": "941", + "name": "Departamento de Mercedes", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.00000000", + "longitude": "-57.83333000" + }, + { + "id": "945", + "name": "Departamento de Monte Caseros", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.25000000", + "longitude": "-57.83333000" + }, + { + "id": "957", + "name": "Departamento de Paso de los Libres", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.66667000", + "longitude": "-57.25000000" + }, + { + "id": "980", + "name": "Departamento de Saladas", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.25000000", + "longitude": "-58.75000000" + }, + { + "id": "984", + "name": "Departamento de San Cosme", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.33333000", + "longitude": "-58.50000000" + }, + { + "id": "995", + "name": "Departamento de San Luis del Palmar", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50000000", + "longitude": "-58.25000000" + }, + { + "id": "996", + "name": "Departamento de San Martín", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.83333000", + "longitude": "-56.91667000" + }, + { + "id": "1001", + "name": "Departamento de San Miguel", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.91667000", + "longitude": "-57.50000000" + }, + { + "id": "1004", + "name": "Departamento de San Roque", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.66667000", + "longitude": "-58.75000000" + }, + { + "id": "1009", + "name": "Departamento de Santo Tomé", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.25000000", + "longitude": "-56.25000000" + }, + { + "id": "1014", + "name": "Departamento de Sauce", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.00000000", + "longitude": "-58.66667000" + }, + { + "id": "1068", + "name": "Empedrado", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.95178000", + "longitude": "-58.80584000" + }, + { + "id": "1071", + "name": "Esquina", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.01476000", + "longitude": "-59.52890000" + }, + { + "id": "1077", + "name": "Felipe Yofré", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.10226000", + "longitude": "-58.33772000" + }, + { + "id": "1089", + "name": "Garruchos", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.17208000", + "longitude": "-55.65406000" + }, + { + "id": "1118", + "name": "Gobernador Juan E. Martínez", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.91161000", + "longitude": "-58.93594000" + }, + { + "id": "1121", + "name": "Gobernador Virasora", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.05000000", + "longitude": "-56.03333000" + }, + { + "id": "1123", + "name": "Goya", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.13995000", + "longitude": "-59.26343000" + }, + { + "id": "1134", + "name": "Herlitzka", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.56516000", + "longitude": "-58.25557000" + }, + { + "id": "1161", + "name": "Itatí", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.27043000", + "longitude": "-58.24458000" + }, + { + "id": "1163", + "name": "Itá Ibaté", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.42573000", + "longitude": "-57.33758000" + }, + { + "id": "1162", + "name": "Ituzaingó", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.58162000", + "longitude": "-56.68231000" + }, + { + "id": "1171", + "name": "Juan Pujol", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.41873000", + "longitude": "-57.85612000" + }, + { + "id": "1184", + "name": "La Cruz", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.17443000", + "longitude": "-56.64326000" + }, + { + "id": "1235", + "name": "Libertad", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.04300000", + "longitude": "-57.82020000" + }, + { + "id": "1237", + "name": "Lomas de Vallejos", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.73501000", + "longitude": "-57.91850000" + }, + { + "id": "1242", + "name": "Loreto", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.76834000", + "longitude": "-57.27531000" + }, + { + "id": "1271", + "name": "Mariano I. Loza", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.37667000", + "longitude": "-58.19436000" + }, + { + "id": "1275", + "name": "Mburucuyá", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.04532000", + "longitude": "-58.22835000" + }, + { + "id": "1279", + "name": "Mercedes", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.18416000", + "longitude": "-58.07519000" + }, + { + "id": "1284", + "name": "Mocoretá", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.61891000", + "longitude": "-57.96344000" + }, + { + "id": "1287", + "name": "Monte Caseros", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.25359000", + "longitude": "-57.63626000" + }, + { + "id": "1301", + "name": "Nuestra Señora del Rosario de Caa Catí", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.75072000", + "longitude": "-57.62073000" + }, + { + "id": "1303", + "name": "Nueve de Julio", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.84051000", + "longitude": "-58.82650000" + }, + { + "id": "1311", + "name": "Palmar Grande", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.94195000", + "longitude": "-57.90057000" + }, + { + "id": "1323", + "name": "Paso de la Patria", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.31676000", + "longitude": "-58.57197000" + }, + { + "id": "1324", + "name": "Paso de los Libres", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.71251000", + "longitude": "-57.08771000" + }, + { + "id": "1325", + "name": "Pedro R. Fernández", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.75097000", + "longitude": "-58.65583000" + }, + { + "id": "1327", + "name": "Perugorría", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.34132000", + "longitude": "-58.61059000" + }, + { + "id": "1349", + "name": "Pueblo Libertador", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.22087000", + "longitude": "-59.38981000" + }, + { + "id": "1382", + "name": "Riachuelo", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.58191000", + "longitude": "-58.74497000" + }, + { + "id": "1399", + "name": "Saladas", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.25384000", + "longitude": "-58.62591000" + }, + { + "id": "1416", + "name": "San Carlos", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.74586000", + "longitude": "-55.89731000" + }, + { + "id": "1419", + "name": "San Cosme", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.37123000", + "longitude": "-58.51214000" + }, + { + "id": "1437", + "name": "San Lorenzo", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.13306000", + "longitude": "-58.76733000" + }, + { + "id": "1439", + "name": "San Luis del Palmar", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50790000", + "longitude": "-58.55454000" + }, + { + "id": "1443", + "name": "San Miguel", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.99585000", + "longitude": "-57.58964000" + }, + { + "id": "1461", + "name": "Santa Lucía", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.98746000", + "longitude": "-59.10287000" + }, + { + "id": "1466", + "name": "Santa Rosa", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.26318000", + "longitude": "-58.11891000" + }, + { + "id": "1476", + "name": "Santo Tomé", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.54939000", + "longitude": "-56.04077000" + }, + { + "id": "1594", + "name": "Yapeyú", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.46914000", + "longitude": "-56.81841000" + }, + { + "id": "1595", + "name": "Yataity Calle", + "state_id": 3638, + "state_code": "W", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.01913000", + "longitude": "-58.90846000" + }, + { + "id": "645", + "name": "Aldea San Antonio", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.62317000", + "longitude": "-58.70512000" + }, + { + "id": "665", + "name": "Aranguren", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.24252000", + "longitude": "-60.16107000" + }, + { + "id": "700", + "name": "Bovril", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.34311000", + "longitude": "-59.44512000" + }, + { + "id": "735", + "name": "Caseros", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.46325000", + "longitude": "-58.47872000" + }, + { + "id": "745", + "name": "Ceibas", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.43333000", + "longitude": "-58.75000000" + }, + { + "id": "751", + "name": "Chajarí", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.75048000", + "longitude": "-57.97962000" + }, + { + "id": "783", + "name": "Colón", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.22312000", + "longitude": "-58.14426000" + }, + { + "id": "779", + "name": "Colonia Elía", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.67144000", + "longitude": "-58.32538000" + }, + { + "id": "792", + "name": "Concepción del Uruguay", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.48463000", + "longitude": "-58.23217000" + }, + { + "id": "793", + "name": "Concordia", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.39296000", + "longitude": "-58.02089000" + }, + { + "id": "794", + "name": "Conscripto Bernardi", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.04837000", + "longitude": "-59.08435000" + }, + { + "id": "808", + "name": "Crespo", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.02873000", + "longitude": "-60.30658000" + }, + { + "id": "902", + "name": "Departamento de Gualeguaychú", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.25000000", + "longitude": "-59.00000000" + }, + { + "id": "955", + "name": "Departamento de Paraná", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.66667000", + "longitude": "-60.00000000" + }, + { + "id": "1040", + "name": "Diamante", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.06641000", + "longitude": "-60.63837000" + }, + { + "id": "1043", + "name": "Domínguez", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.98710000", + "longitude": "-58.96197000" + }, + { + "id": "1075", + "name": "Federación", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.00621000", + "longitude": "-57.89962000" + }, + { + "id": "1076", + "name": "Federal", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.95465000", + "longitude": "-58.78326000" + }, + { + "id": "1098", + "name": "General Campos", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.52311000", + "longitude": "-58.40490000" + }, + { + "id": "1104", + "name": "General Galarza", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.72034000", + "longitude": "-59.39615000" + }, + { + "id": "1110", + "name": "General Ramírez", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.17601000", + "longitude": "-60.20079000" + }, + { + "id": "1119", + "name": "Gobernador Mansilla", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.54453000", + "longitude": "-59.35480000" + }, + { + "id": "1126", + "name": "Gualeguay", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.14156000", + "longitude": "-59.30966000" + }, + { + "id": "1127", + "name": "Gualeguaychú", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.00937000", + "longitude": "-58.51722000" + }, + { + "id": "1132", + "name": "Hasenkamp", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.51226000", + "longitude": "-59.83545000" + }, + { + "id": "1137", + "name": "Hernández", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.33730000", + "longitude": "-60.02160000" + }, + { + "id": "1139", + "name": "Herrera", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.43401000", + "longitude": "-58.63177000" + }, + { + "id": "1183", + "name": "La Criolla", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.26904000", + "longitude": "-58.10558000" + }, + { + "id": "1195", + "name": "La Paz", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.74179000", + "longitude": "-59.64517000" + }, + { + "id": "1214", + "name": "Larroque", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.03595000", + "longitude": "-59.00125000" + }, + { + "id": "1245", + "name": "Los Charrúas", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.17548000", + "longitude": "-58.18774000" + }, + { + "id": "1247", + "name": "Los Conquistadores", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.59080000", + "longitude": "-58.46773000" + }, + { + "id": "1257", + "name": "Lucas González", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.38430000", + "longitude": "-59.53013000" + }, + { + "id": "1261", + "name": "Maciá", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.17220000", + "longitude": "-59.39947000" + }, + { + "id": "1300", + "name": "Nogoyá", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.39387000", + "longitude": "-59.78953000" + }, + { + "id": "1309", + "name": "Oro Verde", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.82508000", + "longitude": "-60.51749000" + }, + { + "id": "1319", + "name": "Paraná", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.73271000", + "longitude": "-60.52897000" + }, + { + "id": "1332", + "name": "Piedras Blancas", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.18592000", + "longitude": "-59.95181000" + }, + { + "id": "1348", + "name": "Pronunciamiento", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.34480000", + "longitude": "-58.44268000" + }, + { + "id": "1355", + "name": "Puerto Ibicuy", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.75305000", + "longitude": "-59.17762000" + }, + { + "id": "1365", + "name": "Puerto Yeruá", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.53713000", + "longitude": "-58.01527000" + }, + { + "id": "1385", + "name": "Rosario del Tala", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.30286000", + "longitude": "-59.14545000" + }, + { + "id": "1413", + "name": "San Benito", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.78371000", + "longitude": "-60.44156000" + }, + { + "id": "1426", + "name": "San Gustavo", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.68961000", + "longitude": "-59.39840000" + }, + { + "id": "1430", + "name": "San José de Feliciano", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.38452000", + "longitude": "-58.75167000" + }, + { + "id": "1435", + "name": "San Justo", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.44654000", + "longitude": "-58.43569000" + }, + { + "id": "1450", + "name": "San Salvador", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.62487000", + "longitude": "-58.50524000" + }, + { + "id": "1453", + "name": "Santa Ana", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.90004000", + "longitude": "-57.93162000" + }, + { + "id": "1454", + "name": "Santa Anita", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.17476000", + "longitude": "-58.78622000" + }, + { + "id": "1456", + "name": "Santa Elena", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.94432000", + "longitude": "-59.78832000" + }, + { + "id": "1480", + "name": "Sauce de Luna", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.23794000", + "longitude": "-59.21872000" + }, + { + "id": "1482", + "name": "Seguí", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.95642000", + "longitude": "-60.12488000" + }, + { + "id": "1492", + "name": "Tabossi", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.80135000", + "longitude": "-59.93477000" + }, + { + "id": "1518", + "name": "Ubajay", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.79358000", + "longitude": "-58.31350000" + }, + { + "id": "1522", + "name": "Urdinarrain", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.68573000", + "longitude": "-58.89323000" + }, + { + "id": "1531", + "name": "Viale", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.86782000", + "longitude": "-60.00722000" + }, + { + "id": "1533", + "name": "Victoria", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.61841000", + "longitude": "-60.15478000" + }, + { + "id": "1584", + "name": "Villa del Rosario", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.79567000", + "longitude": "-57.91257000" + }, + { + "id": "1550", + "name": "Villa Elisa", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.16320000", + "longitude": "-58.40082000" + }, + { + "id": "1557", + "name": "Villa Hernandarias", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.23097000", + "longitude": "-59.98464000" + }, + { + "id": "1562", + "name": "Villa Mantero", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.39727000", + "longitude": "-58.74596000" + }, + { + "id": "1564", + "name": "Villa María Grande", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.66565000", + "longitude": "-59.90182000" + }, + { + "id": "1571", + "name": "Villa Paranacito", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.71381000", + "longitude": "-58.65844000" + }, + { + "id": "1579", + "name": "Villa Urquiza", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.64757000", + "longitude": "-60.37516000" + }, + { + "id": "1587", + "name": "Villaguay", + "state_id": 3654, + "state_code": "E", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.86530000", + "longitude": "-59.02689000" + }, + { + "id": "772", + "name": "Clorinda", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.28481000", + "longitude": "-57.71851000" + }, + { + "id": "785", + "name": "Comandante Fontana", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.33453000", + "longitude": "-59.68212000" + }, + { + "id": "958", + "name": "Departamento de Pilcomayo", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.50000000", + "longitude": "-58.08333000" + }, + { + "id": "1053", + "name": "El Colorado", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.30808000", + "longitude": "-59.37291000" + }, + { + "id": "1072", + "name": "Estanislao del Campo", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.05504000", + "longitude": "-60.09218000" + }, + { + "id": "1082", + "name": "Formosa", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.18489000", + "longitude": "-58.17313000" + }, + { + "id": "1102", + "name": "General Enrique Mosconi", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.21667000", + "longitude": "-62.30000000" + }, + { + "id": "1138", + "name": "Herradura", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.48705000", + "longitude": "-58.31198000" + }, + { + "id": "1148", + "name": "Ibarreta", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.21438000", + "longitude": "-59.85851000" + }, + { + "id": "1151", + "name": "Ingeniero Guillermo N. Juárez", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.90000000", + "longitude": "-61.85000000" + }, + { + "id": "1209", + "name": "Laguna Naick-Neck", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.24769000", + "longitude": "-58.09383000" + }, + { + "id": "1211", + "name": "Laguna Yema", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.25391000", + "longitude": "-61.24466000" + }, + { + "id": "1225", + "name": "Las Lomitas", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.70955000", + "longitude": "-60.59303000" + }, + { + "id": "1312", + "name": "Palo Santo", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.56332000", + "longitude": "-59.33781000" + }, + { + "id": "1336", + "name": "Pirané", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.73239000", + "longitude": "-59.10879000" + }, + { + "id": "1344", + "name": "Pozo del Tigre", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.89682000", + "longitude": "-60.32359000" + }, + { + "id": "1381", + "name": "Riacho Eh-Eh", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.36209000", + "longitude": "-58.27750000" + }, + { + "id": "1423", + "name": "San Francisco de Laishí", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.24262000", + "longitude": "-58.63039000" + }, + { + "id": "1551", + "name": "Villa Escolar", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.62209000", + "longitude": "-58.67134000" + }, + { + "id": "1553", + "name": "Villa General Guemes", + "state_id": 3652, + "state_code": "P", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.75530000", + "longitude": "-59.48940000" + }, + { + "id": "638", + "name": "Abra Pampa", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-22.72049000", + "longitude": "-65.69697000" + }, + { + "id": "709", + "name": "Caimancito", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.74069000", + "longitude": "-64.59370000" + }, + { + "id": "713", + "name": "Calilegua", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.77368000", + "longitude": "-64.77002000" + }, + { + "id": "862", + "name": "Departamento de Cochinoca", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.00000000", + "longitude": "-65.83333000" + }, + { + "id": "965", + "name": "Departamento de Rinconada", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-22.50000000", + "longitude": "-66.50000000" + }, + { + "id": "1025", + "name": "Departamento de Tumbaya", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.71667000", + "longitude": "-65.66667000" + }, + { + "id": "1047", + "name": "El Aguilar", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.21572000", + "longitude": "-65.68005000" + }, + { + "id": "1083", + "name": "Fraile Pintado", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.94079000", + "longitude": "-64.79943000" + }, + { + "id": "1147", + "name": "Humahuaca", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.20544000", + "longitude": "-65.35048000" + }, + { + "id": "1155", + "name": "Ingenio La Esperanza", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.22554000", + "longitude": "-64.83896000" + }, + { + "id": "1193", + "name": "La Mendieta", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.31187000", + "longitude": "-64.96377000" + }, + { + "id": "1199", + "name": "La Quiaca", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-22.10236000", + "longitude": "-65.59299000" + }, + { + "id": "1236", + "name": "Libertador General San Martín", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.80644000", + "longitude": "-64.78757000" + }, + { + "id": "1262", + "name": "Maimará", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.62392000", + "longitude": "-65.40797000" + }, + { + "id": "1310", + "name": "Palma Sola", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.97771000", + "longitude": "-64.30311000" + }, + { + "id": "1313", + "name": "Palpalá", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.25647000", + "longitude": "-65.21163000" + }, + { + "id": "1447", + "name": "San Pedro de Jujuy", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.23127000", + "longitude": "-64.86614000" + }, + { + "id": "1451", + "name": "San Salvador de Jujuy", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.19457000", + "longitude": "-65.29712000" + }, + { + "id": "1455", + "name": "Santa Clara", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.30921000", + "longitude": "-64.66253000" + }, + { + "id": "1503", + "name": "Tilcara", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.57817000", + "longitude": "-65.39516000" + }, + { + "id": "1597", + "name": "Yuto", + "state_id": 3645, + "state_code": "Y", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.64342000", + "longitude": "-64.47194000" + }, + { + "id": "652", + "name": "Alpachiri", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.37704000", + "longitude": "-63.77445000" + }, + { + "id": "654", + "name": "Alta Italia", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.33350000", + "longitude": "-64.11496000" + }, + { + "id": "662", + "name": "Anguil", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.52567000", + "longitude": "-64.01025000" + }, + { + "id": "666", + "name": "Arata", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.63895000", + "longitude": "-64.35621000" + }, + { + "id": "692", + "name": "Bernardo Larroudé", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.02449000", + "longitude": "-63.58253000" + }, + { + "id": "694", + "name": "Bernasconi", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.90459000", + "longitude": "-63.74240000" + }, + { + "id": "712", + "name": "Caleufú", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.59559000", + "longitude": "-64.55778000" + }, + { + "id": "740", + "name": "Catriló", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.40597000", + "longitude": "-63.42168000" + }, + { + "id": "775", + "name": "Colonia Barón", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.15152000", + "longitude": "-63.85404000" + }, + { + "id": "843", + "name": "Departamento de Caleu-Caleu", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.58333000", + "longitude": "-64.00000000" + }, + { + "id": "1021", + "name": "Departamento de Toay", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.58333000", + "longitude": "-64.80000000" + }, + { + "id": "1041", + "name": "Doblas", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.14967000", + "longitude": "-64.01183000" + }, + { + "id": "1046", + "name": "Eduardo Castex", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.91501000", + "longitude": "-64.29448000" + }, + { + "id": "1065", + "name": "Embajador Martini", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.38633000", + "longitude": "-64.28092000" + }, + { + "id": "1094", + "name": "General Acha", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.37698000", + "longitude": "-64.60431000" + }, + { + "id": "1107", + "name": "General Manuel J. Campos", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.46025000", + "longitude": "-63.58537000" + }, + { + "id": "1108", + "name": "General Pico", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.65662000", + "longitude": "-63.75682000" + }, + { + "id": "1113", + "name": "General San Martín", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.97904000", + "longitude": "-63.60449000" + }, + { + "id": "1130", + "name": "Guatraché", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.66776000", + "longitude": "-63.53021000" + }, + { + "id": "1153", + "name": "Ingeniero Luiggi", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.38585000", + "longitude": "-64.46519000" + }, + { + "id": "1157", + "name": "Intendente Alvear", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.23383000", + "longitude": "-63.59205000" + }, + { + "id": "1164", + "name": "Jacinto Arauz", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.08606000", + "longitude": "-63.43169000" + }, + { + "id": "1175", + "name": "La Adela", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.98333000", + "longitude": "-64.08333000" + }, + { + "id": "1192", + "name": "La Maruja", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.67360000", + "longitude": "-64.93997000" + }, + { + "id": "1240", + "name": "Lonquimay", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.46546000", + "longitude": "-63.62429000" + }, + { + "id": "1259", + "name": "Macachín", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.13598000", + "longitude": "-63.66650000" + }, + { + "id": "1281", + "name": "Miguel Riglos", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.85398000", + "longitude": "-63.68842000" + }, + { + "id": "1320", + "name": "Parera", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.14600000", + "longitude": "-64.50089000" + }, + { + "id": "1367", + "name": "Quemú Quemú", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.05463000", + "longitude": "-63.56428000" + }, + { + "id": "1373", + "name": "Rancul", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.06862000", + "longitude": "-64.68107000" + }, + { + "id": "1375", + "name": "Realicó", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.03658000", + "longitude": "-64.24470000" + }, + { + "id": "1459", + "name": "Santa Isabel", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.22724000", + "longitude": "-66.94240000" + }, + { + "id": "1465", + "name": "Santa Rosa", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.61667000", + "longitude": "-64.28333000" + }, + { + "id": "1500", + "name": "Telén", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.26429000", + "longitude": "-65.51018000" + }, + { + "id": "1513", + "name": "Trenel", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.69837000", + "longitude": "-64.13218000" + }, + { + "id": "1523", + "name": "Uriburu", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.50682000", + "longitude": "-63.86225000" + }, + { + "id": "1527", + "name": "Veinticinco de Mayo", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.77410000", + "longitude": "-67.71638000" + }, + { + "id": "1534", + "name": "Victorica", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.21505000", + "longitude": "-65.43586000" + }, + { + "id": "1592", + "name": "Winifreda", + "state_id": 3655, + "state_code": "L", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.22643000", + "longitude": "-64.23388000" + }, + { + "id": "667", + "name": "Arauco", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.58071000", + "longitude": "-66.79250000" + }, + { + "id": "738", + "name": "Castro Barros", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.57952000", + "longitude": "-65.72696000" + }, + { + "id": "752", + "name": "Chamical", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.36002000", + "longitude": "-66.31399000" + }, + { + "id": "761", + "name": "Chilecito", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.16195000", + "longitude": "-67.49740000" + }, + { + "id": "831", + "name": "Departamento de Arauco", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.50000000", + "longitude": "-66.83333000" + }, + { + "id": "893", + "name": "Departamento de General Lamadrid", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.83333000", + "longitude": "-68.66667000" + }, + { + "id": "910", + "name": "Departamento de Independencia", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.16667000", + "longitude": "-67.41667000" + }, + { + "id": "1200", + "name": "La Rioja", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.41105000", + "longitude": "-66.85067000" + }, + { + "id": "1543", + "name": "Villa Bustos", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.28636000", + "longitude": "-67.02067000" + }, + { + "id": "1588", + "name": "Vinchina", + "state_id": 3653, + "state_code": "F", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.75964000", + "longitude": "-68.20692000" + }, + { + "id": "850", + "name": "Departamento de Capital", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.88469000", + "longitude": "-68.85826000" + }, + { + "id": "889", + "name": "Departamento de General Alvear", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.16667000", + "longitude": "-67.33333000" + }, + { + "id": "898", + "name": "Departamento de Godoy Cruz", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.93333000", + "longitude": "-68.86667000" + }, + { + "id": "905", + "name": "Departamento de Guaymallén", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.88333000", + "longitude": "-68.70000000" + }, + { + "id": "919", + "name": "Departamento de La Paz", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.66667000", + "longitude": "-67.25000000" + }, + { + "id": "924", + "name": "Departamento de Las Heras", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.50000000", + "longitude": "-69.50000000" + }, + { + "id": "926", + "name": "Departamento de Lavalle", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.50000000", + "longitude": "-68.00000000" + }, + { + "id": "932", + "name": "Departamento de Luján", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.00000000", + "longitude": "-69.33333000" + }, + { + "id": "936", + "name": "Departamento de Maipú", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.00000000", + "longitude": "-68.58333000" + }, + { + "id": "938", + "name": "Departamento de Malargüe", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.25000000", + "longitude": "-69.25000000" + }, + { + "id": "967", + "name": "Departamento de Rivadavia", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.18000000", + "longitude": "-68.46600000" + }, + { + "id": "983", + "name": "Departamento de San Carlos", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.00000000", + "longitude": "-69.00000000" + }, + { + "id": "999", + "name": "Departamento de San Martín", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.83730000", + "longitude": "-68.24922000" + }, + { + "id": "1003", + "name": "Departamento de San Rafael", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.00000000", + "longitude": "-68.83333000" + }, + { + "id": "1008", + "name": "Departamento de Santa Rosa", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.50000000", + "longitude": "-68.00000000" + }, + { + "id": "1026", + "name": "Departamento de Tunuyán", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.66667000", + "longitude": "-69.50000000" + }, + { + "id": "1027", + "name": "Departamento de Tupungato", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.25000000", + "longitude": "-69.25000000" + }, + { + "id": "1122", + "name": "Godoy Cruz", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.92863000", + "longitude": "-68.83510000" + }, + { + "id": "1219", + "name": "Las Heras", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.85273000", + "longitude": "-68.82837000" + }, + { + "id": "1278", + "name": "Mendoza", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.89084000", + "longitude": "-68.82717000" + }, + { + "id": "1440", + "name": "San Martín", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.08103000", + "longitude": "-68.46814000" + }, + { + "id": "1448", + "name": "San Rafael", + "state_id": 3646, + "state_code": "M", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.61772000", + "longitude": "-68.33007000" + }, + { + "id": "643", + "name": "Alba Posse", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.56978000", + "longitude": "-54.68262000" + }, + { + "id": "650", + "name": "Almafuerte", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50825000", + "longitude": "-55.40258000" + }, + { + "id": "669", + "name": "Aristóbulo del Valle", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.09625000", + "longitude": "-54.89626000" + }, + { + "id": "674", + "name": "Arroyo del Medio", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.69748000", + "longitude": "-55.40376000" + }, + { + "id": "678", + "name": "Azara", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.06160000", + "longitude": "-55.67797000" + }, + { + "id": "693", + "name": "Bernardo de Irigoyen", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.25520000", + "longitude": "-53.64581000" + }, + { + "id": "699", + "name": "Bonpland", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.48218000", + "longitude": "-55.47756000" + }, + { + "id": "718", + "name": "Campo Grande", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.20770000", + "longitude": "-54.97977000" + }, + { + "id": "721", + "name": "Campo Ramón", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.45490000", + "longitude": "-55.02122000" + }, + { + "id": "722", + "name": "Campo Viera", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.33271000", + "longitude": "-55.05651000" + }, + { + "id": "724", + "name": "Candelaria", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.45950000", + "longitude": "-55.74536000" + }, + { + "id": "728", + "name": "Capioví", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.92998000", + "longitude": "-55.06084000" + }, + { + "id": "731", + "name": "Caraguatay", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.60587000", + "longitude": "-54.78093000" + }, + { + "id": "748", + "name": "Cerro Azul", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.63310000", + "longitude": "-55.49620000" + }, + { + "id": "749", + "name": "Cerro Corá", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.51310000", + "longitude": "-55.60896000" + }, + { + "id": "774", + "name": "Colonia Aurora", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.47428000", + "longitude": "-54.52498000" + }, + { + "id": "790", + "name": "Concepción de la Sierra", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.98311000", + "longitude": "-55.52031000" + }, + { + "id": "830", + "name": "Departamento de Apóstoles", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.91667000", + "longitude": "-55.75000000" + }, + { + "id": "841", + "name": "Departamento de Cainguás", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.16667000", + "longitude": "-54.83333000" + }, + { + "id": "845", + "name": "Departamento de Candelaria", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50000000", + "longitude": "-55.50000000" + }, + { + "id": "848", + "name": "Departamento de Capital", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50000000", + "longitude": "-55.83333000" + }, + { + "id": "867", + "name": "Departamento de Concepción de la Sierra", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.83333000", + "longitude": "-55.41667000" + }, + { + "id": "878", + "name": "Departamento de Eldorado", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.25000000", + "longitude": "-54.41667000" + }, + { + "id": "894", + "name": "Departamento de General Manuel Belgrano", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.16667000", + "longitude": "-53.91667000" + }, + { + "id": "903", + "name": "Departamento de Guaraní", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.16667000", + "longitude": "-54.16667000" + }, + { + "id": "908", + "name": "Departamento de Iguazú", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.86667000", + "longitude": "-54.36667000" + }, + { + "id": "927", + "name": "Departamento de Leandro N. Alem", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.56667000", + "longitude": "-55.33333000" + }, + { + "id": "929", + "name": "Departamento de Libertador General San Martín", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.91667000", + "longitude": "-54.91667000" + }, + { + "id": "946", + "name": "Departamento de Montecarlo", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.71667000", + "longitude": "-54.58333000" + }, + { + "id": "953", + "name": "Departamento de Oberá", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.55000000", + "longitude": "-55.08333000" + }, + { + "id": "987", + "name": "Departamento de San Ignacio", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.25000000", + "longitude": "-55.33333000" + }, + { + "id": "989", + "name": "Departamento de San Javier", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.77806000", + "longitude": "-55.13004000" + }, + { + "id": "1002", + "name": "Departamento de San Pedro", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.66667000", + "longitude": "-54.00000000" + }, + { + "id": "1031", + "name": "Departamento de Veinticinco de Mayo", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.41667000", + "longitude": "-54.66667000" + }, + { + "id": "1044", + "name": "Dos Arroyos", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.69946000", + "longitude": "-55.25207000" + }, + { + "id": "1045", + "name": "Dos de Mayo", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.02277000", + "longitude": "-54.68669000" + }, + { + "id": "1048", + "name": "El Alcázar", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.71459000", + "longitude": "-54.81523000" + }, + { + "id": "1061", + "name": "El Soberbio", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.29847000", + "longitude": "-54.19877000" + }, + { + "id": "1080", + "name": "Florentino Ameghino", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.56667000", + "longitude": "-55.13333000" + }, + { + "id": "1090", + "name": "Garuhapé", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.81768000", + "longitude": "-54.95665000" + }, + { + "id": "1091", + "name": "Garupá", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.48171000", + "longitude": "-55.82921000" + }, + { + "id": "1095", + "name": "General Alvear", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.42611000", + "longitude": "-55.16916000" + }, + { + "id": "1120", + "name": "Gobernador Roca", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.18636000", + "longitude": "-55.46433000" + }, + { + "id": "1128", + "name": "Guaraní", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.52323000", + "longitude": "-55.16077000" + }, + { + "id": "1166", + "name": "Jardín América", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.04346000", + "longitude": "-55.22698000" + }, + { + "id": "1241", + "name": "Loreto", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.33177000", + "longitude": "-55.52499000" + }, + { + "id": "1250", + "name": "Los Helechos", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.55051000", + "longitude": "-55.07908000" + }, + { + "id": "1295", + "name": "Mártires", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.42265000", + "longitude": "-55.37659000" + }, + { + "id": "1285", + "name": "Mojón Grande", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.71165000", + "longitude": "-55.15631000" + }, + { + "id": "1290", + "name": "Montecarlo", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.56620000", + "longitude": "-54.75700000" + }, + { + "id": "1304", + "name": "Oberá", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.48706000", + "longitude": "-55.11994000" + }, + { + "id": "1318", + "name": "Panambí", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.72369000", + "longitude": "-54.91515000" + }, + { + "id": "1328", + "name": "Picada Gobernador López", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.67069000", + "longitude": "-55.24585000" + }, + { + "id": "1342", + "name": "Posadas", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.36708000", + "longitude": "-55.89608000" + }, + { + "id": "1353", + "name": "Puerto Eldorado", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.40843000", + "longitude": "-54.69463000" + }, + { + "id": "1354", + "name": "Puerto Esperanza", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.02267000", + "longitude": "-54.61356000" + }, + { + "id": "1356", + "name": "Puerto Iguazú", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.59912000", + "longitude": "-54.57355000" + }, + { + "id": "1357", + "name": "Puerto Leoni", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.98762000", + "longitude": "-55.16569000" + }, + { + "id": "1358", + "name": "Puerto Libertad", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.91958000", + "longitude": "-54.58229000" + }, + { + "id": "1360", + "name": "Puerto Piray", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.46937000", + "longitude": "-54.70736000" + }, + { + "id": "1361", + "name": "Puerto Rico", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.79598000", + "longitude": "-55.02402000" + }, + { + "id": "1387", + "name": "Ruiz de Montoya", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.98333000", + "longitude": "-55.05000000" + }, + { + "id": "1429", + "name": "San José", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.76979000", + "longitude": "-55.78260000" + }, + { + "id": "1446", + "name": "San Pedro", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.62207000", + "longitude": "-54.10842000" + }, + { + "id": "1452", + "name": "San Vicente", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.61667000", + "longitude": "-54.13333000" + }, + { + "id": "1463", + "name": "Santa María", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.93490000", + "longitude": "-55.40742000" + }, + { + "id": "1474", + "name": "Santo Pipó", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.14132000", + "longitude": "-55.40867000" + }, + { + "id": "1514", + "name": "Tres Capones", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.00641000", + "longitude": "-55.60471000" + }, + { + "id": "1528", + "name": "Veinticinco de Mayo", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.37679000", + "longitude": "-54.74312000" + }, + { + "id": "1590", + "name": "Wanda", + "state_id": 3644, + "state_code": "N", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.96879000", + "longitude": "-54.56285000" + }, + { + "id": "680", + "name": "Añelo", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.35441000", + "longitude": "-68.78840000" + }, + { + "id": "657", + "name": "Aluminé", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.23686000", + "longitude": "-70.91970000" + }, + { + "id": "660", + "name": "Andacollo", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.17945000", + "longitude": "-70.66912000" + }, + { + "id": "684", + "name": "Barrancas", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.82344000", + "longitude": "-69.91564000" + }, + { + "id": "706", + "name": "Buta Ranquil", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.05222000", + "longitude": "-69.87713000" + }, + { + "id": "746", + "name": "Centenario", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.82955000", + "longitude": "-68.13180000" + }, + { + "id": "766", + "name": "Chos Malal", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.37809000", + "longitude": "-70.27085000" + }, + { + "id": "814", + "name": "Cutral-Có", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.93424000", + "longitude": "-69.23052000" + }, + { + "id": "833", + "name": "Departamento de Añelo", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.16667000", + "longitude": "-69.00000000" + }, + { + "id": "823", + "name": "Departamento de Aluminé", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.16667000", + "longitude": "-71.00000000" + }, + { + "id": "855", + "name": "Departamento de Catán-Lil", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.50000000", + "longitude": "-70.33333000" + }, + { + "id": "860", + "name": "Departamento de Chos-Malal", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.91667000", + "longitude": "-70.16667000" + }, + { + "id": "863", + "name": "Departamento de Collón-Curá", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.08333000", + "longitude": "-70.16667000" + }, + { + "id": "868", + "name": "Departamento de Confluencia", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.83333000", + "longitude": "-68.83333000" + }, + { + "id": "934", + "name": "Departamento de Lácar", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.25000000", + "longitude": "-71.20000000" + }, + { + "id": "944", + "name": "Departamento de Minas", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.83333000", + "longitude": "-70.83333000" + }, + { + "id": "1035", + "name": "Departamento de Zapala", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.00000000", + "longitude": "-69.83333000" + }, + { + "id": "1057", + "name": "El Huecú", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.64522000", + "longitude": "-70.58006000" + }, + { + "id": "1172", + "name": "Junín de los Andes", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.95043000", + "longitude": "-71.06936000" + }, + { + "id": "1217", + "name": "Las Coloradas", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.55534000", + "longitude": "-70.59491000" + }, + { + "id": "1223", + "name": "Las Lajas", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.52322000", + "longitude": "-70.36745000" + }, + { + "id": "1226", + "name": "Las Ovejas", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-36.98881000", + "longitude": "-70.74991000" + }, + { + "id": "1238", + "name": "Loncopué", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.07284000", + "longitude": "-70.61609000" + }, + { + "id": "1272", + "name": "Mariano Moreno", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.75029000", + "longitude": "-70.02367000" + }, + { + "id": "1298", + "name": "Neuquén", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.95161000", + "longitude": "-68.05910000" + }, + { + "id": "1330", + "name": "Picún Leufú", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.51614000", + "longitude": "-69.28765000" + }, + { + "id": "1331", + "name": "Piedra del Águila", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.04811000", + "longitude": "-70.07410000" + }, + { + "id": "1337", + "name": "Plaza Huincul", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.92598000", + "longitude": "-69.20863000" + }, + { + "id": "1338", + "name": "Plottier", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.96667000", + "longitude": "-68.23333000" + }, + { + "id": "1442", + "name": "San Martín de los Andes", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.15789000", + "longitude": "-71.35337000" + }, + { + "id": "1483", + "name": "Senillosa", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.01412000", + "longitude": "-68.43281000" + }, + { + "id": "1559", + "name": "Villa La Angostura", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.76173000", + "longitude": "-71.64631000" + }, + { + "id": "1589", + "name": "Vista Alegre", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.75000000", + "longitude": "-68.18333000" + }, + { + "id": "1598", + "name": "Zapala", + "state_id": 3648, + "state_code": "Q", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.89916000", + "longitude": "-70.05442000" + }, + { + "id": "649", + "name": "Allen", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.97736000", + "longitude": "-67.82714000" + }, + { + "id": "1599", + "name": "Ñorquinco", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-41.85072000", + "longitude": "-70.90173000" + }, + { + "id": "739", + "name": "Catriel", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-37.87907000", + "longitude": "-67.79560000" + }, + { + "id": "750", + "name": "Cervantes", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.05444000", + "longitude": "-67.39426000" + }, + { + "id": "759", + "name": "Chichinales", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.11505000", + "longitude": "-66.92714000" + }, + { + "id": "763", + "name": "Chimpay", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.16482000", + "longitude": "-66.14236000" + }, + { + "id": "764", + "name": "Choele Choel", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.28941000", + "longitude": "-65.66060000" + }, + { + "id": "768", + "name": "Cinco Saltos", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.82225000", + "longitude": "-68.06293000" + }, + { + "id": "770", + "name": "Cipolletti", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.93392000", + "longitude": "-67.99032000" + }, + { + "id": "784", + "name": "Comallo", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-41.02993000", + "longitude": "-70.26784000" + }, + { + "id": "795", + "name": "Contraalmirante Cordero", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.72423000", + "longitude": "-68.15284000" + }, + { + "id": "798", + "name": "Coronel Belisle", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.18688000", + "longitude": "-65.95422000" + }, + { + "id": "817", + "name": "Darwin", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.20334000", + "longitude": "-65.73952000" + }, + { + "id": "832", + "name": "Departamento de Avellaneda", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.50000000", + "longitude": "-66.50000000" + }, + { + "id": "1032", + "name": "Departamento de Veinticinco de Mayo", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-41.25000000", + "longitude": "-69.00000000" + }, + { + "id": "1050", + "name": "El Bolsón", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-41.96051000", + "longitude": "-71.53336000" + }, + { + "id": "1054", + "name": "El Cuy", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.92685000", + "longitude": "-68.34208000" + }, + { + "id": "1085", + "name": "Fray Luis Beltrán", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.31369000", + "longitude": "-65.76002000" + }, + { + "id": "1099", + "name": "General Conesa", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.10408000", + "longitude": "-64.45592000" + }, + { + "id": "1100", + "name": "General Enrique Godoy", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.07891000", + "longitude": "-67.15807000" + }, + { + "id": "1103", + "name": "General Fernández Oro", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.95297000", + "longitude": "-67.92489000" + }, + { + "id": "1112", + "name": "General Roca", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.03333000", + "longitude": "-67.58333000" + }, + { + "id": "1152", + "name": "Ingeniero Jacobacci", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-41.32920000", + "longitude": "-69.55015000" + }, + { + "id": "1154", + "name": "Ingeniero Luis A. Huergo", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.07146000", + "longitude": "-67.23790000" + }, + { + "id": "1212", + "name": "Lamarque", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.42304000", + "longitude": "-65.70208000" + }, + { + "id": "1253", + "name": "Los Menucos", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.84402000", + "longitude": "-68.08718000" + }, + { + "id": "1263", + "name": "Mainque", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.06667000", + "longitude": "-67.30000000" + }, + { + "id": "1268", + "name": "Maquinchao", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-41.24912000", + "longitude": "-68.70321000" + }, + { + "id": "1334", + "name": "Pilcaniyeu", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-41.12288000", + "longitude": "-70.72152000" + }, + { + "id": "1389", + "name": "Río Colorado", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-38.99397000", + "longitude": "-64.09295000" + }, + { + "id": "1409", + "name": "San Antonio Oeste", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.73193000", + "longitude": "-64.94769000" + }, + { + "id": "1418", + "name": "San Carlos de Bariloche", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-41.14557000", + "longitude": "-71.30822000" + }, + { + "id": "1486", + "name": "Sierra Colorada", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.58487000", + "longitude": "-67.75674000" + }, + { + "id": "1487", + "name": "Sierra Grande", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-41.60603000", + "longitude": "-65.35574000" + }, + { + "id": "1525", + "name": "Valcheta", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.67989000", + "longitude": "-66.16283000" + }, + { + "id": "1536", + "name": "Viedma", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-40.81345000", + "longitude": "-62.99668000" + }, + { + "id": "1574", + "name": "Villa Regina", + "state_id": 3639, + "state_code": "R", + "country_id": 11, + "country_code": "AR", + "latitude": "-39.10000000", + "longitude": "-67.06667000" + }, + { + "id": "664", + "name": "Apolinario Saravia", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.43276000", + "longitude": "-63.99535000" + }, + { + "id": "707", + "name": "Cachí", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.12033000", + "longitude": "-66.16519000" + }, + { + "id": "708", + "name": "Cafayate", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.08333000", + "longitude": "-65.83333000" + }, + { + "id": "720", + "name": "Campo Quijano", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.90982000", + "longitude": "-65.63656000" + }, + { + "id": "760", + "name": "Chicoana", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.10502000", + "longitude": "-65.53473000" + }, + { + "id": "819", + "name": "Departamento Capital", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.83333000", + "longitude": "-65.33333000" + }, + { + "id": "828", + "name": "Departamento de Anta", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.91667000", + "longitude": "-64.00000000" + }, + { + "id": "857", + "name": "Departamento de Cerrillos", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.00000000", + "longitude": "-65.41667000" + }, + { + "id": "858", + "name": "Departamento de Chicoana", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.11583000", + "longitude": "-65.59466000" + }, + { + "id": "891", + "name": "Departamento de General Güemes", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.79464000", + "longitude": "-64.94393000" + }, + { + "id": "901", + "name": "Departamento de Guachipas", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.66667000", + "longitude": "-65.50000000" + }, + { + "id": "911", + "name": "Departamento de Iruya", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-22.80000000", + "longitude": "-64.91667000" + }, + { + "id": "920", + "name": "Departamento de La Poma", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.16667000", + "longitude": "-66.16667000" + }, + { + "id": "921", + "name": "Departamento de La Viña", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.50000000", + "longitude": "-65.66667000" + }, + { + "id": "931", + "name": "Departamento de Los Andes", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.50000000", + "longitude": "-67.33333000" + }, + { + "id": "942", + "name": "Departamento de Metán", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.50000000", + "longitude": "-64.66667000" + }, + { + "id": "968", + "name": "Departamento de Rivadavia", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.66667000", + "longitude": "-62.91667000" + }, + { + "id": "971", + "name": "Departamento de Rosario de la Frontera", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.91667000", + "longitude": "-64.83333000" + }, + { + "id": "970", + "name": "Departamento de Rosario de Lerma", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.58333000", + "longitude": "-65.83333000" + }, + { + "id": "982", + "name": "Departamento de San Carlos", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.75000000", + "longitude": "-66.08333000" + }, + { + "id": "1052", + "name": "El Carril", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.07410000", + "longitude": "-65.49174000" + }, + { + "id": "1055", + "name": "El Galpón", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.38069000", + "longitude": "-64.65259000" + }, + { + "id": "1059", + "name": "El Quebrachal", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.28333000", + "longitude": "-64.06667000" + }, + { + "id": "1067", + "name": "Embarcación", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.21003000", + "longitude": "-64.09965000" + }, + { + "id": "1101", + "name": "General Enrique Mosconi", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-22.59588000", + "longitude": "-63.81255000" + }, + { + "id": "1168", + "name": "Joaquín V. González", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-25.11364000", + "longitude": "-64.12628000" + }, + { + "id": "1177", + "name": "La Caldera", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.58333000", + "longitude": "-65.41667000" + }, + { + "id": "1224", + "name": "Las Lajitas", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.72762000", + "longitude": "-64.19335000" + }, + { + "id": "1403", + "name": "Salta", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.78590000", + "longitude": "-65.41166000" + }, + { + "id": "1411", + "name": "San Antonio de los Cobres", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.21804000", + "longitude": "-66.31877000" + }, + { + "id": "1449", + "name": "San Ramón de la Nueva Orán", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-23.13705000", + "longitude": "-64.32426000" + }, + { + "id": "1469", + "name": "Santa Rosa de Tastil", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-24.45166000", + "longitude": "-65.97452000" + }, + { + "id": "1498", + "name": "Tartagal", + "state_id": 3643, + "state_code": "A", + "country_id": 11, + "country_code": "AR", + "latitude": "-22.51637000", + "longitude": "-63.80131000" + }, + { + "id": "644", + "name": "Albardón", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.43722000", + "longitude": "-68.52556000" + }, + { + "id": "714", + "name": "Calingasta", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.33394000", + "longitude": "-69.42080000" + }, + { + "id": "741", + "name": "Caucete", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.65179000", + "longitude": "-68.28105000" + }, + { + "id": "762", + "name": "Chimbas", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.48333000", + "longitude": "-68.53333000" + }, + { + "id": "821", + "name": "Departamento de Albardón", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.28333000", + "longitude": "-68.41667000" + }, + { + "id": "827", + "name": "Departamento de Angaco", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.20000000", + "longitude": "-68.13333000" + }, + { + "id": "844", + "name": "Departamento de Calingasta", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.50000000", + "longitude": "-69.75000000" + }, + { + "id": "851", + "name": "Departamento de Capital", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.53333000", + "longitude": "-68.53333000" + }, + { + "id": "856", + "name": "Departamento de Caucete", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.45000000", + "longitude": "-67.66667000" + }, + { + "id": "859", + "name": "Departamento de Chimbas", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.48738000", + "longitude": "-68.52691000" + }, + { + "id": "907", + "name": "Departamento de Iglesia", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.33333000", + "longitude": "-69.58333000" + }, + { + "id": "915", + "name": "Departamento de Jáchal", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.50000000", + "longitude": "-68.50000000" + }, + { + "id": "952", + "name": "Departamento de Nueve de Julio", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.65072000", + "longitude": "-68.38925000" + }, + { + "id": "964", + "name": "Departamento de Rawson", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.70000000", + "longitude": "-68.46667000" + }, + { + "id": "966", + "name": "Departamento de Rivadavia", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.56450000", + "longitude": "-68.65219000" + }, + { + "id": "998", + "name": "Departamento de San Martín", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.50000000", + "longitude": "-68.25000000" + }, + { + "id": "1005", + "name": "Departamento de Santa Lucía", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.53333000", + "longitude": "-68.46667000" + }, + { + "id": "1013", + "name": "Departamento de Sarmiento", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.00000000", + "longitude": "-68.66667000" + }, + { + "id": "1028", + "name": "Departamento de Ullúm", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.00000000", + "longitude": "-68.91667000" + }, + { + "id": "1036", + "name": "Departamento de Zonda", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.68260000", + "longitude": "-68.89938000" + }, + { + "id": "1302", + "name": "Nueve de Julio", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.66914000", + "longitude": "-68.39023000" + }, + { + "id": "1339", + "name": "Pocito", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.68333000", + "longitude": "-68.58333000" + }, + { + "id": "1407", + "name": "San Agustín de Valle Fértil", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.63353000", + "longitude": "-67.46821000" + }, + { + "id": "1431", + "name": "San José de Jáchal", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.24057000", + "longitude": "-68.74693000" + }, + { + "id": "1433", + "name": "San Juan", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.53750000", + "longitude": "-68.53639000" + }, + { + "id": "1441", + "name": "San Martín", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.42957000", + "longitude": "-68.50065000" + }, + { + "id": "1460", + "name": "Santa Lucía", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.53987000", + "longitude": "-68.49503000" + }, + { + "id": "1540", + "name": "Villa Basilio Nievas", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.55000000", + "longitude": "-68.73333000" + }, + { + "id": "1572", + "name": "Villa Paula de Sarmiento", + "state_id": 3634, + "state_code": "J", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.49330000", + "longitude": "-68.53838000" + }, + { + "id": "703", + "name": "Buena Esperanza", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.75647000", + "longitude": "-65.25379000" + }, + { + "id": "725", + "name": "Candelaria", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.06036000", + "longitude": "-65.82477000" + }, + { + "id": "788", + "name": "Concarán", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.56009000", + "longitude": "-65.24270000" + }, + { + "id": "1170", + "name": "Juan Martín de Pueyrredón", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.27544000", + "longitude": "-66.32017000" + }, + { + "id": "1174", + "name": "Justo Daract", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.85940000", + "longitude": "-65.18277000" + }, + { + "id": "1198", + "name": "La Punta", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.18368000", + "longitude": "-66.31270000" + }, + { + "id": "1202", + "name": "La Toma", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.05258000", + "longitude": "-65.62385000" + }, + { + "id": "1258", + "name": "Luján", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.36674000", + "longitude": "-65.93642000" + }, + { + "id": "1280", + "name": "Merlo", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.34288000", + "longitude": "-65.01396000" + }, + { + "id": "1297", + "name": "Naschel", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.91656000", + "longitude": "-65.37535000" + }, + { + "id": "1425", + "name": "San Francisco del Monte de Oro", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.59825000", + "longitude": "-66.12539000" + }, + { + "id": "1438", + "name": "San Luis", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.29501000", + "longitude": "-66.33563000" + }, + { + "id": "1470", + "name": "Santa Rosa del Conlara", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.34286000", + "longitude": "-65.20323000" + }, + { + "id": "1504", + "name": "Tilisarao", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.73292000", + "longitude": "-65.29109000" + }, + { + "id": "1520", + "name": "Unión", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-35.15282000", + "longitude": "-65.94602000" + }, + { + "id": "1555", + "name": "Villa General Roca", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.66535000", + "longitude": "-66.45052000" + }, + { + "id": "1565", + "name": "Villa Mercedes", + "state_id": 3636, + "state_code": "D", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.67571000", + "longitude": "-65.45783000" + }, + { + "id": "637", + "name": "28 de Noviembre", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-51.58390000", + "longitude": "-72.21382000" + }, + { + "id": "711", + "name": "Caleta Olivia", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-46.43929000", + "longitude": "-67.52814000" + }, + { + "id": "786", + "name": "Comandante Luis Piedra Buena", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-49.98513000", + "longitude": "-68.91467000" + }, + { + "id": "874", + "name": "Departamento de Deseado", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-47.33333000", + "longitude": "-67.83333000" + }, + { + "id": "906", + "name": "Departamento de Güer Aike", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-51.33333000", + "longitude": "-70.33333000" + }, + { + "id": "922", + "name": "Departamento de Lago Argentino", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-49.75000000", + "longitude": "-72.00000000" + }, + { + "id": "935", + "name": "Departamento de Magallanes", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-48.75000000", + "longitude": "-68.50000000" + }, + { + "id": "972", + "name": "Departamento de Río Chico", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-48.25000000", + "longitude": "-71.00000000" + }, + { + "id": "1051", + "name": "El Calafate", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-50.34075000", + "longitude": "-72.27682000" + }, + { + "id": "1116", + "name": "Gobernador Gregores", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-48.75057000", + "longitude": "-70.24741000" + }, + { + "id": "1220", + "name": "Las Heras", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-46.54186000", + "longitude": "-68.93593000" + }, + { + "id": "1244", + "name": "Los Antiguos", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-46.54972000", + "longitude": "-71.63086000" + }, + { + "id": "1326", + "name": "Perito Moreno", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-46.58995000", + "longitude": "-70.92975000" + }, + { + "id": "1329", + "name": "Pico Truncado", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-46.79490000", + "longitude": "-67.95731000" + }, + { + "id": "1352", + "name": "Puerto Deseado", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-47.75034000", + "longitude": "-65.89382000" + }, + { + "id": "1362", + "name": "Puerto Santa Cruz", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-50.01910000", + "longitude": "-68.52321000" + }, + { + "id": "1391", + "name": "Río Gallegos", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-51.62261000", + "longitude": "-69.21813000" + }, + { + "id": "1397", + "name": "Río Turbio", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-51.53587000", + "longitude": "-72.33673000" + }, + { + "id": "1434", + "name": "San Julián", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-49.30554000", + "longitude": "-67.72743000" + }, + { + "id": "1593", + "name": "Yacimiento Río Turbio", + "state_id": 3649, + "state_code": "Z", + "country_id": 11, + "country_code": "AR", + "latitude": "-51.57321000", + "longitude": "-72.35080000" + }, + { + "id": "670", + "name": "Armstrong", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.78215000", + "longitude": "-61.60222000" + }, + { + "id": "673", + "name": "Arroyo Seco", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.15489000", + "longitude": "-60.50863000" + }, + { + "id": "675", + "name": "Arrufó", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.23281000", + "longitude": "-61.72862000" + }, + { + "id": "676", + "name": "Avellaneda", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.11761000", + "longitude": "-59.65834000" + }, + { + "id": "689", + "name": "Bella Italia", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.28182000", + "longitude": "-61.41092000" + }, + { + "id": "743", + "name": "Cañada de Gómez", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.81636000", + "longitude": "-61.39493000" + }, + { + "id": "710", + "name": "Calchaquí", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.88767000", + "longitude": "-60.28697000" + }, + { + "id": "729", + "name": "Capitán Bermúdez", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.82262000", + "longitude": "-60.71852000" + }, + { + "id": "732", + "name": "Carcarañá", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.85679000", + "longitude": "-61.15331000" + }, + { + "id": "736", + "name": "Casilda", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.04417000", + "longitude": "-61.16806000" + }, + { + "id": "747", + "name": "Ceres", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.88100000", + "longitude": "-61.94504000" + }, + { + "id": "758", + "name": "Chañar Ladeado", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.32524000", + "longitude": "-62.03831000" + }, + { + "id": "796", + "name": "Coronda", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.97263000", + "longitude": "-60.91983000" + }, + { + "id": "835", + "name": "Departamento de Belgrano", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.50000000", + "longitude": "-61.75000000" + }, + { + "id": "853", + "name": "Departamento de Caseros", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.25000000", + "longitude": "-61.66667000" + }, + { + "id": "854", + "name": "Departamento de Castellanos", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.16667000", + "longitude": "-61.66667000" + }, + { + "id": "869", + "name": "Departamento de Constitución", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.50000000", + "longitude": "-60.91667000" + }, + { + "id": "916", + "name": "Departamento de La Capital", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.50000000", + "longitude": "-60.66667000" + }, + { + "id": "951", + "name": "Departamento de Nueve de Julio", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.83333000", + "longitude": "-61.33333000" + }, + { + "id": "985", + "name": "Departamento de San Cristóbal", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.33333000", + "longitude": "-61.33333000" + }, + { + "id": "988", + "name": "Departamento de San Javier", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.33333000", + "longitude": "-59.91667000" + }, + { + "id": "992", + "name": "Departamento de San Justo", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.66667000", + "longitude": "-60.50000000" + }, + { + "id": "993", + "name": "Departamento de San Lorenzo", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.00000000", + "longitude": "-61.00000000" + }, + { + "id": "1000", + "name": "Departamento de San Martín", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.00000000", + "longitude": "-61.83333000" + }, + { + "id": "1033", + "name": "Departamento de Vera", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.00000000", + "longitude": "-60.50000000" + }, + { + "id": "1062", + "name": "El Trébol", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.20080000", + "longitude": "-61.70140000" + }, + { + "id": "1069", + "name": "Esperanza", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.44880000", + "longitude": "-60.93173000" + }, + { + "id": "1079", + "name": "Firmat", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.45937000", + "longitude": "-61.48320000" + }, + { + "id": "1084", + "name": "Fray Luis A. Beltrán", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.79122000", + "longitude": "-60.72819000" + }, + { + "id": "1086", + "name": "Funes", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.91568000", + "longitude": "-60.80995000" + }, + { + "id": "1093", + "name": "Gato Colorado", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.02219000", + "longitude": "-61.18663000" + }, + { + "id": "1131", + "name": "Gálvez", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.02927000", + "longitude": "-61.22103000" + }, + { + "id": "1117", + "name": "Gobernador Gálvez", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.03016000", + "longitude": "-60.64045000" + }, + { + "id": "1124", + "name": "Granadero Baigorria", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.85683000", + "longitude": "-60.71754000" + }, + { + "id": "1133", + "name": "Helvecia", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.09834000", + "longitude": "-60.08830000" + }, + { + "id": "1140", + "name": "Hersilia", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.00447000", + "longitude": "-61.84080000" + }, + { + "id": "1158", + "name": "Iriondo Department", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.63333000", + "longitude": "-61.33333000" + }, + { + "id": "1210", + "name": "Laguna Paiva", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.30391000", + "longitude": "-60.65894000" + }, + { + "id": "1227", + "name": "Las Parejas", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.68478000", + "longitude": "-61.51637000" + }, + { + "id": "1230", + "name": "Las Rosas", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.47661000", + "longitude": "-61.58041000" + }, + { + "id": "1231", + "name": "Las Toscas", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.35290000", + "longitude": "-59.25795000" + }, + { + "id": "1252", + "name": "Los Laureles", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.36847000", + "longitude": "-59.73634000" + }, + { + "id": "1265", + "name": "Malabrigo", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.34636000", + "longitude": "-59.96957000" + }, + { + "id": "1276", + "name": "Melincué", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.65847000", + "longitude": "-61.45459000" + }, + { + "id": "1366", + "name": "Pérez", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.99835000", + "longitude": "-60.76791000" + }, + { + "id": "1372", + "name": "Rafaela", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.25033000", + "longitude": "-61.48670000" + }, + { + "id": "1376", + "name": "Reconquista", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.15000000", + "longitude": "-59.65000000" + }, + { + "id": "1377", + "name": "Recreo", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.49076000", + "longitude": "-60.73299000" + }, + { + "id": "1383", + "name": "Roldán", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.89846000", + "longitude": "-60.90681000" + }, + { + "id": "1384", + "name": "Rosario", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.94682000", + "longitude": "-60.63932000" + }, + { + "id": "1386", + "name": "Rufino", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.26827000", + "longitude": "-62.71262000" + }, + { + "id": "1417", + "name": "San Carlos Centro", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.72864000", + "longitude": "-61.09192000" + }, + { + "id": "1420", + "name": "San Cristóbal", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.31053000", + "longitude": "-61.23724000" + }, + { + "id": "1427", + "name": "San Javier", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.57781000", + "longitude": "-59.93170000" + }, + { + "id": "1428", + "name": "San Jorge", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.89618000", + "longitude": "-61.85984000" + }, + { + "id": "1436", + "name": "San Justo", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.78913000", + "longitude": "-60.59189000" + }, + { + "id": "1458", + "name": "Santa Fe", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.64881000", + "longitude": "-60.70868000" + }, + { + "id": "1475", + "name": "Santo Tomé", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.66274000", + "longitude": "-60.76530000" + }, + { + "id": "1478", + "name": "Sastre", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-31.76762000", + "longitude": "-61.82887000" + }, + { + "id": "1490", + "name": "Sunchales", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.94404000", + "longitude": "-61.56148000" + }, + { + "id": "1494", + "name": "Tacuarendí", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.41265000", + "longitude": "-59.26000000" + }, + { + "id": "1509", + "name": "Tostado", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.23202000", + "longitude": "-61.76917000" + }, + { + "id": "1510", + "name": "Totoras", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-32.58440000", + "longitude": "-61.16852000" + }, + { + "id": "1529", + "name": "Venado Tuerto", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.74556000", + "longitude": "-61.96885000" + }, + { + "id": "1530", + "name": "Vera", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.45930000", + "longitude": "-60.21261000" + }, + { + "id": "1545", + "name": "Villa Cañás", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-34.00565000", + "longitude": "-61.60757000" + }, + { + "id": "1547", + "name": "Villa Constitución", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.22778000", + "longitude": "-60.32970000" + }, + { + "id": "1566", + "name": "Villa Mugueta", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-33.31129000", + "longitude": "-61.05515000" + }, + { + "id": "1568", + "name": "Villa Ocampo", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.48752000", + "longitude": "-59.35515000" + }, + { + "id": "1577", + "name": "Villa Trinidad", + "state_id": 3641, + "state_code": "S", + "country_id": 11, + "country_code": "AR", + "latitude": "-30.21329000", + "longitude": "-61.87597000" + }, + { + "id": "679", + "name": "Añatuya", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.46064000", + "longitude": "-62.83472000" + }, + { + "id": "691", + "name": "Beltrán", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.82913000", + "longitude": "-64.06098000" + }, + { + "id": "717", + "name": "Campo Gallo", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.58333000", + "longitude": "-62.85000000" + }, + { + "id": "771", + "name": "Clodomira", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.57440000", + "longitude": "-64.13108000" + }, + { + "id": "777", + "name": "Colonia Dora", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.60000000", + "longitude": "-62.95000000" + }, + { + "id": "820", + "name": "Departamento de Aguirre", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.33333000", + "longitude": "-62.50000000" + }, + { + "id": "834", + "name": "Departamento de Banda", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.50000000", + "longitude": "-64.33333000" + }, + { + "id": "861", + "name": "Departamento de Choya", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.75000000", + "longitude": "-64.75000000" + }, + { + "id": "904", + "name": "Departamento de Guasayán", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.00000000", + "longitude": "-64.83333000" + }, + { + "id": "930", + "name": "Departamento de Loreto", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.55000000", + "longitude": "-64.33333000" + }, + { + "id": "948", + "name": "Departamento de Moreno", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.33333000", + "longitude": "-62.50000000" + }, + { + "id": "975", + "name": "Departamento de Río Hondo", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.58333000", + "longitude": "-64.75000000" + }, + { + "id": "969", + "name": "Departamento de Robles", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.83333000", + "longitude": "-63.91667000" + }, + { + "id": "997", + "name": "Departamento de San Martín", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.16667000", + "longitude": "-63.83333000" + }, + { + "id": "1011", + "name": "Departamento de Sarmiento", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.08333000", + "longitude": "-63.41667000" + }, + { + "id": "1056", + "name": "El Hoyo", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.02872000", + "longitude": "-63.23197000" + }, + { + "id": "1176", + "name": "La Banda", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.73348000", + "longitude": "-64.24278000" + }, + { + "id": "1251", + "name": "Los Juríes", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.46539000", + "longitude": "-62.10862000" + }, + { + "id": "1255", + "name": "Los Telares", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.98479000", + "longitude": "-63.44889000" + }, + { + "id": "1315", + "name": "Pampa de los Guanacos", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.23002000", + "longitude": "-61.83774000" + }, + { + "id": "1369", + "name": "Quimilí", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.64615000", + "longitude": "-62.41655000" + }, + { + "id": "1445", + "name": "San Pedro", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.95386000", + "longitude": "-65.16651000" + }, + { + "id": "1473", + "name": "Santiago del Estero", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.79511000", + "longitude": "-64.26149000" + }, + { + "id": "1489", + "name": "Sumampa", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.38470000", + "longitude": "-63.46907000" + }, + { + "id": "1491", + "name": "Suncho Corral", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.93357000", + "longitude": "-63.42938000" + }, + { + "id": "1501", + "name": "Termas de Río Hondo", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.49362000", + "longitude": "-64.85972000" + }, + { + "id": "1506", + "name": "Tintina", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.02687000", + "longitude": "-62.70643000" + }, + { + "id": "1539", + "name": "Villa Atamisqui", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-28.49609000", + "longitude": "-63.81609000" + }, + { + "id": "1554", + "name": "Villa General Mitre", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.14310000", + "longitude": "-62.65248000" + }, + { + "id": "1569", + "name": "Villa Ojo de Agua", + "state_id": 3635, + "state_code": "G", + "country_id": 11, + "country_code": "AR", + "latitude": "-29.50003000", + "longitude": "-63.69377000" + }, + { + "id": "1392", + "name": "Río Grande", + "state_id": 3650, + "state_code": "V", + "country_id": 11, + "country_code": "AR", + "latitude": "-53.78769000", + "longitude": "-67.70946000" + }, + { + "id": "1508", + "name": "Tolhuin", + "state_id": 3650, + "state_code": "V", + "country_id": 11, + "country_code": "AR", + "latitude": "-54.51083000", + "longitude": "-67.19550000" + }, + { + "id": "1524", + "name": "Ushuaia", + "state_id": 3650, + "state_code": "V", + "country_id": 11, + "country_code": "AR", + "latitude": "-54.81084000", + "longitude": "-68.31591000" + }, + { + "id": "642", + "name": "Aguilares", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.43380000", + "longitude": "-65.61427000" + }, + { + "id": "646", + "name": "Alderetes", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.81667000", + "longitude": "-65.13333000" + }, + { + "id": "690", + "name": "Bella Vista", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.03424000", + "longitude": "-65.30196000" + }, + { + "id": "705", + "name": "Burruyacú", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.49918000", + "longitude": "-64.74206000" + }, + { + "id": "840", + "name": "Departamento de Burruyacú", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.50000000", + "longitude": "-64.91667000" + }, + { + "id": "852", + "name": "Departamento de Capital", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.82825000", + "longitude": "-65.21126000" + }, + { + "id": "870", + "name": "Departamento de Cruz Alta", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.91667000", + "longitude": "-64.91667000" + }, + { + "id": "882", + "name": "Departamento de Famaillá", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.91667000", + "longitude": "-65.50000000" + }, + { + "id": "900", + "name": "Departamento de Graneros", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.75000000", + "longitude": "-65.33333000" + }, + { + "id": "917", + "name": "Departamento de La Cocha", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.77784000", + "longitude": "-65.57109000" + }, + { + "id": "933", + "name": "Departamento de Lules", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.92886000", + "longitude": "-65.33848000" + }, + { + "id": "947", + "name": "Departamento de Monteros", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.16667000", + "longitude": "-65.58333000" + }, + { + "id": "973", + "name": "Departamento de Río Chico", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.43368000", + "longitude": "-65.76671000" + }, + { + "id": "1015", + "name": "Departamento de Simoca", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.26360000", + "longitude": "-65.35612000" + }, + { + "id": "1023", + "name": "Departamento de Trancas", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.41667000", + "longitude": "-65.50000000" + }, + { + "id": "1034", + "name": "Departamento de Yerba Buena", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.81826000", + "longitude": "-65.31733000" + }, + { + "id": "1074", + "name": "Famaillá", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.05413000", + "longitude": "-65.40329000" + }, + { + "id": "1125", + "name": "Graneros", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.64934000", + "longitude": "-65.43830000" + }, + { + "id": "1182", + "name": "La Cocha", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.76927000", + "longitude": "-65.58711000" + }, + { + "id": "1291", + "name": "Monteros", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.16741000", + "longitude": "-65.49832000" + }, + { + "id": "1444", + "name": "San Miguel de Tucumán", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.82414000", + "longitude": "-65.22260000" + }, + { + "id": "1488", + "name": "Simoca", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-27.26272000", + "longitude": "-65.35647000" + }, + { + "id": "1496", + "name": "Tafí del Valle", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.85275000", + "longitude": "-65.70983000" + }, + { + "id": "1495", + "name": "Tafí Viejo", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.73201000", + "longitude": "-65.25921000" + }, + { + "id": "1511", + "name": "Trancas", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.23136000", + "longitude": "-65.28093000" + }, + { + "id": "1596", + "name": "Yerba Buena", + "state_id": 3637, + "state_code": "T", + "country_id": 11, + "country_code": "AR", + "latitude": "-26.81667000", + "longitude": "-65.31667000" + }, + { + "id": "286", + "name": "Agarakavan", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.33069000", + "longitude": "44.07233000" + }, + { + "id": "303", + "name": "Aparan", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.59323000", + "longitude": "44.35890000" + }, + { + "id": "305", + "name": "Aragats", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.48889000", + "longitude": "44.35290000" + }, + { + "id": "329", + "name": "Arteni", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.29730000", + "longitude": "43.76672000" + }, + { + "id": "334", + "name": "Ashnak", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.33069000", + "longitude": "43.91669000" + }, + { + "id": "335", + "name": "Ashtarak", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.29910000", + "longitude": "44.36204000" + }, + { + "id": "361", + "name": "Byurakan", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.33894000", + "longitude": "44.27275000" + }, + { + "id": "412", + "name": "Hnaberd", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.63721000", + "longitude": "44.14058000" + }, + { + "id": "428", + "name": "Karbi", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.33069000", + "longitude": "44.37793000" + }, + { + "id": "430", + "name": "Kasakh", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.53697000", + "longitude": "44.41046000" + }, + { + "id": "434", + "name": "Kosh", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.30011000", + "longitude": "44.16107000" + }, + { + "id": "486", + "name": "Nor Yerznka", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.30011000", + "longitude": "44.38892000" + }, + { + "id": "497", + "name": "Oshakan", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.26392000", + "longitude": "44.31671000" + }, + { + "id": "512", + "name": "Sasunik", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.25012000", + "longitude": "44.34448000" + }, + { + "id": "520", + "name": "Shenavan", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.48328000", + "longitude": "44.38348000" + }, + { + "id": "546", + "name": "T’alin", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.39172000", + "longitude": "43.87793000" + }, + { + "id": "538", + "name": "Tsaghkahovit", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.63428000", + "longitude": "44.22241000" + }, + { + "id": "548", + "name": "Ushi", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.34729000", + "longitude": "44.37512000" + }, + { + "id": "570", + "name": "Voskevaz", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.27508000", + "longitude": "44.30011000" + }, + { + "id": "588", + "name": "Zovuni", + "state_id": 2023, + "state_code": "AG", + "country_id": 12, + "country_code": "AM", + "latitude": "40.51111000", + "longitude": "44.43890000" + }, + { + "id": "282", + "name": "Abovyan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.04851000", + "longitude": "44.54742000" + }, + { + "id": "307", + "name": "Aralez", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.90008000", + "longitude": "44.65570000" + }, + { + "id": "309", + "name": "Ararat", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.83069000", + "longitude": "44.70569000" + }, + { + "id": "314", + "name": "Arevabuyr", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.03607000", + "longitude": "44.46948000" + }, + { + "id": "319", + "name": "Arevshat", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.03963000", + "longitude": "44.54179000" + }, + { + "id": "324", + "name": "Armash", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.76672000", + "longitude": "44.81110000" + }, + { + "id": "328", + "name": "Artashat", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.96144000", + "longitude": "44.54447000" + }, + { + "id": "337", + "name": "Avshar", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.85553000", + "longitude": "44.65832000" + }, + { + "id": "338", + "name": "Aygavan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.87327000", + "longitude": "44.66984000" + }, + { + "id": "341", + "name": "Aygepat", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.95845000", + "longitude": "44.59981000" + }, + { + "id": "343", + "name": "Aygestan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.00293000", + "longitude": "44.55829000" + }, + { + "id": "344", + "name": "Aygezard", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.95436000", + "longitude": "44.60229000" + }, + { + "id": "351", + "name": "Bardzrashen", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.08533000", + "longitude": "44.57957000" + }, + { + "id": "356", + "name": "Berk’anush", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.97790000", + "longitude": "44.51672000" + }, + { + "id": "359", + "name": "Burastan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.99157000", + "longitude": "44.49681000" + }, + { + "id": "362", + "name": "Byuravan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.01604000", + "longitude": "44.51889000" + }, + { + "id": "366", + "name": "Dalar", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.97653000", + "longitude": "44.52649000" + }, + { + "id": "368", + "name": "Darakert", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.10553000", + "longitude": "44.41388000" + }, + { + "id": "370", + "name": "Dashtavan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.10010000", + "longitude": "44.39172000" + }, + { + "id": "373", + "name": "Dimitrov", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.00848000", + "longitude": "44.49170000" + }, + { + "id": "377", + "name": "Dvin", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.01984000", + "longitude": "44.58376000" + }, + { + "id": "395", + "name": "Getazat", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.03844000", + "longitude": "44.56369000" + }, + { + "id": "396", + "name": "Ghukasavan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.12793000", + "longitude": "44.41669000" + }, + { + "id": "401", + "name": "Goravan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.90832000", + "longitude": "44.73328000" + }, + { + "id": "409", + "name": "Hayanist", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.12231000", + "longitude": "44.37793000" + }, + { + "id": "415", + "name": "Hovtashat", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.09729000", + "longitude": "44.34448000" + }, + { + "id": "416", + "name": "Hovtashen", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.02508000", + "longitude": "44.45007000" + }, + { + "id": "421", + "name": "Jrahovit", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.04730000", + "longitude": "44.47510000" + }, + { + "id": "449", + "name": "Lusarrat", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.87403000", + "longitude": "44.58678000" + }, + { + "id": "455", + "name": "Marmarashen", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.05829000", + "longitude": "44.47229000" + }, + { + "id": "458", + "name": "Masis", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.06542000", + "longitude": "44.41618000" + }, + { + "id": "472", + "name": "Mrganush", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.02857000", + "longitude": "44.55831000" + }, + { + "id": "475", + "name": "Mrgavan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.97251000", + "longitude": "44.53565000" + }, + { + "id": "476", + "name": "Mrgavet", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.02789000", + "longitude": "44.48328000" + }, + { + "id": "482", + "name": "Nizami", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.09168000", + "longitude": "44.40570000" + }, + { + "id": "487", + "name": "Norabats’", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.10553000", + "longitude": "44.43329000" + }, + { + "id": "489", + "name": "Noramarg", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.02228000", + "longitude": "44.42511000" + }, + { + "id": "491", + "name": "Norashen", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.00130000", + "longitude": "44.59296000" + }, + { + "id": "493", + "name": "Noyakert", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.83069000", + "longitude": "44.66949000" + }, + { + "id": "495", + "name": "Nshavan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.02787000", + "longitude": "44.52565000" + }, + { + "id": "513", + "name": "Sayat’-Nova", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.07507000", + "longitude": "44.40008000" + }, + { + "id": "516", + "name": "Shahumyan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.94171000", + "longitude": "44.57233000" + }, + { + "id": "525", + "name": "Sis", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.05829000", + "longitude": "44.38892000" + }, + { + "id": "526", + "name": "Sisavan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.90802000", + "longitude": "44.66721000" + }, + { + "id": "531", + "name": "Surenavan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.79449000", + "longitude": "44.77508000" + }, + { + "id": "560", + "name": "Vedi", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.91388000", + "longitude": "44.72510000" + }, + { + "id": "561", + "name": "Verin Artashat", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.99731000", + "longitude": "44.58893000" + }, + { + "id": "562", + "name": "Verin Dvin", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.02434000", + "longitude": "44.59038000" + }, + { + "id": "568", + "name": "Vosketap’", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.88114000", + "longitude": "44.64917000" + }, + { + "id": "571", + "name": "Vostan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.96515000", + "longitude": "44.55937000" + }, + { + "id": "574", + "name": "Yeghegnavan", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.83893000", + "longitude": "44.61951000" + }, + { + "id": "582", + "name": "Zangakatun", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "39.82233000", + "longitude": "45.04169000" + }, + { + "id": "585", + "name": "Zorak", + "state_id": 2024, + "state_code": "AR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.09168000", + "longitude": "44.39447000" + }, + { + "id": "289", + "name": "Aghavnatun", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.23330000", + "longitude": "44.25295000" + }, + { + "id": "292", + "name": "Aknalich", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.14728000", + "longitude": "44.16669000" + }, + { + "id": "293", + "name": "Aknashen", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.09551000", + "longitude": "44.28604000" + }, + { + "id": "297", + "name": "Alashkert", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.10712000", + "longitude": "44.05108000" + }, + { + "id": "302", + "name": "Apaga", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.09729000", + "longitude": "44.25293000" + }, + { + "id": "306", + "name": "Arak’s", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.05548000", + "longitude": "44.30292000" + }, + { + "id": "310", + "name": "Arazap’", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.04169000", + "longitude": "44.14728000" + }, + { + "id": "311", + "name": "Arbat’", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13892000", + "longitude": "44.40289000" + }, + { + "id": "315", + "name": "Arevashat", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.14447000", + "longitude": "44.37512000" + }, + { + "id": "317", + "name": "Arevik", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.10010000", + "longitude": "44.09448000" + }, + { + "id": "322", + "name": "Argavand", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.06110000", + "longitude": "44.09448000" + }, + { + "id": "325", + "name": "Armavir", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.15446000", + "longitude": "44.03815000" + }, + { + "id": "327", + "name": "Arshaluys", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.16949000", + "longitude": "44.21393000" + }, + { + "id": "330", + "name": "Artimet", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.15008000", + "longitude": "44.26672000" + }, + { + "id": "340", + "name": "Aygek", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18890000", + "longitude": "44.38611000" + }, + { + "id": "342", + "name": "Aygeshat", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.07507000", + "longitude": "44.06110000" + }, + { + "id": "347", + "name": "Baghramyan", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.19452000", + "longitude": "44.36951000" + }, + { + "id": "350", + "name": "Bambakashat", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.10828000", + "longitude": "44.01947000" + }, + { + "id": "367", + "name": "Dalarik", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.22790000", + "longitude": "43.87793000" + }, + { + "id": "374", + "name": "Doghs", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.22229000", + "longitude": "44.27228000" + }, + { + "id": "388", + "name": "Gay", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.08444000", + "longitude": "44.30528000" + }, + { + "id": "389", + "name": "Geghakert", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18516000", + "longitude": "44.24331000" + }, + { + "id": "392", + "name": "Geghanist", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.14587000", + "longitude": "44.43048000" + }, + { + "id": "394", + "name": "Getashen", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.04449000", + "longitude": "43.94171000" + }, + { + "id": "398", + "name": "Gmbet’", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.22369000", + "longitude": "44.25409000" + }, + { + "id": "403", + "name": "Griboyedov", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.11307000", + "longitude": "44.27169000" + }, + { + "id": "410", + "name": "Haykashen", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.07233000", + "longitude": "44.30829000" + }, + { + "id": "414", + "name": "Hovtamej", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18329000", + "longitude": "44.25848000" + }, + { + "id": "419", + "name": "Janfida", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.04449000", + "longitude": "44.02789000" + }, + { + "id": "433", + "name": "Khoronk’", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13611000", + "longitude": "44.24731000" + }, + { + "id": "440", + "name": "Lenughi", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.12512000", + "longitude": "43.96393000" + }, + { + "id": "448", + "name": "Lukashin", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18726000", + "longitude": "44.00390000" + }, + { + "id": "454", + "name": "Margara", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.03332000", + "longitude": "44.18048000" + }, + { + "id": "461", + "name": "Mayisyan", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.15701000", + "longitude": "44.09192000" + }, + { + "id": "465", + "name": "Merdzavan", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18140000", + "longitude": "44.40033000" + }, + { + "id": "469", + "name": "Metsamor", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.14447000", + "longitude": "44.11670000" + }, + { + "id": "473", + "name": "Mrgashat", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13068000", + "longitude": "44.08069000" + }, + { + "id": "477", + "name": "Musalerr", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.15570000", + "longitude": "44.37793000" + }, + { + "id": "478", + "name": "Myasnikyan", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18048000", + "longitude": "43.91949000" + }, + { + "id": "479", + "name": "Nalbandyan", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.06390000", + "longitude": "43.98889000" + }, + { + "id": "483", + "name": "Nor Armavir", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.08612000", + "longitude": "43.99451000" + }, + { + "id": "488", + "name": "Norakert", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.19733000", + "longitude": "44.35010000" + }, + { + "id": "504", + "name": "P’shatavan", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.03888000", + "longitude": "44.06671000" + }, + { + "id": "502", + "name": "Ptghunk’", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.16388000", + "longitude": "44.36389000" + }, + { + "id": "509", + "name": "Sardarapat", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13206000", + "longitude": "44.00969000" + }, + { + "id": "519", + "name": "Shenavan", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.05548000", + "longitude": "43.93048000" + }, + { + "id": "532", + "name": "Tandzut", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.06952000", + "longitude": "44.07788000" + }, + { + "id": "533", + "name": "Taronik", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13367000", + "longitude": "44.19957000" + }, + { + "id": "539", + "name": "Tsaghkunk’", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18048000", + "longitude": "44.27228000" + }, + { + "id": "540", + "name": "Tsiatsan", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18610000", + "longitude": "44.26947000" + }, + { + "id": "549", + "name": "Vagharshapat", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.16557000", + "longitude": "44.29462000" + }, + { + "id": "567", + "name": "Voskehat", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.14172000", + "longitude": "44.33069000" + }, + { + "id": "575", + "name": "Yeghegnut", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.08893000", + "longitude": "44.16669000" + }, + { + "id": "579", + "name": "Yeraskhahun", + "state_id": 2026, + "state_code": "AV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.07233000", + "longitude": "44.21948000" + }, + { + "id": "296", + "name": "Akunk’", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.15886000", + "longitude": "45.72568000" + }, + { + "id": "336", + "name": "Astghadzor", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.12231000", + "longitude": "45.35553000" + }, + { + "id": "364", + "name": "Chambarak", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.59655000", + "longitude": "45.35498000" + }, + { + "id": "371", + "name": "Ddmashen", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.57028000", + "longitude": "44.82295000" + }, + { + "id": "375", + "name": "Drakhtik", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.56497000", + "longitude": "45.23670000" + }, + { + "id": "380", + "name": "Dzoragyugh", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.16957000", + "longitude": "45.18337000" + }, + { + "id": "384", + "name": "Gagarin", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.54026000", + "longitude": "44.86962000" + }, + { + "id": "385", + "name": "Gandzak", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.31472000", + "longitude": "45.11139000" + }, + { + "id": "387", + "name": "Gavarr", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.35398000", + "longitude": "45.12386000" + }, + { + "id": "390", + "name": "Geghamasar", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.31091000", + "longitude": "45.67924000" + }, + { + "id": "391", + "name": "Geghamavan", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.56250000", + "longitude": "44.88892000" + }, + { + "id": "427", + "name": "Karanlukh", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.10444000", + "longitude": "45.28972000" + }, + { + "id": "429", + "name": "Karchaghbyur", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.17048000", + "longitude": "45.57785000" + }, + { + "id": "437", + "name": "Lanjaghbyur", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.26947000", + "longitude": "45.14447000" + }, + { + "id": "438", + "name": "Lchap’", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.45569000", + "longitude": "45.07507000" + }, + { + "id": "439", + "name": "Lchashen", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.51947000", + "longitude": "44.93048000" + }, + { + "id": "446", + "name": "Lichk’", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.15933000", + "longitude": "45.23467000" + }, + { + "id": "450", + "name": "Madina", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.07637000", + "longitude": "45.25507000" + }, + { + "id": "457", + "name": "Martuni", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.08333000", + "longitude": "45.25000000" + }, + { + "id": "467", + "name": "Mets Masrik", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.21948000", + "longitude": "45.76391000" + }, + { + "id": "481", + "name": "Nerk’in Getashen", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.14172000", + "longitude": "45.27087000" + }, + { + "id": "492", + "name": "Noratus", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.37793000", + "longitude": "45.18048000" + }, + { + "id": "511", + "name": "Sarukhan", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.29169000", + "longitude": "45.13068000" + }, + { + "id": "514", + "name": "Sevan", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.54730000", + "longitude": "44.94171000" + }, + { + "id": "541", + "name": "Tsovagyugh", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.63348000", + "longitude": "44.96112000" + }, + { + "id": "542", + "name": "Tsovak", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18254000", + "longitude": "45.63286000" + }, + { + "id": "543", + "name": "Tsovasar", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13820000", + "longitude": "45.19096000" + }, + { + "id": "544", + "name": "Tsovazard", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.47510000", + "longitude": "45.05011000" + }, + { + "id": "545", + "name": "Tsovinar", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.15959000", + "longitude": "45.46786000" + }, + { + "id": "550", + "name": "Vaghashen", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13611000", + "longitude": "45.33069000" + }, + { + "id": "552", + "name": "Vahan", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.57549000", + "longitude": "45.39769000" + }, + { + "id": "556", + "name": "Vardenik", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13348000", + "longitude": "45.44311000" + }, + { + "id": "557", + "name": "Vardenis", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18329000", + "longitude": "45.73053000" + }, + { + "id": "558", + "name": "Varser", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.55548000", + "longitude": "44.90832000" + }, + { + "id": "563", + "name": "Verin Getashen", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13068000", + "longitude": "45.25293000" + }, + { + "id": "578", + "name": "Yeranos", + "state_id": 2028, + "state_code": "GR", + "country_id": 12, + "country_code": "AM", + "latitude": "40.20428000", + "longitude": "45.19209000" + }, + { + "id": "281", + "name": "Abovyan", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.27368000", + "longitude": "44.63348000" + }, + { + "id": "287", + "name": "Aghavnadzor", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.58195000", + "longitude": "44.69581000" + }, + { + "id": "295", + "name": "Akunk’", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.26672000", + "longitude": "44.68610000" + }, + { + "id": "308", + "name": "Aramus", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.25095000", + "longitude": "44.66351000" + }, + { + "id": "323", + "name": "Argel", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.37793000", + "longitude": "44.60010000" + }, + { + "id": "332", + "name": "Arzakan", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.45007000", + "longitude": "44.60828000" + }, + { + "id": "333", + "name": "Arzni", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.29730000", + "longitude": "44.59869000" + }, + { + "id": "349", + "name": "Balahovit", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.25153000", + "longitude": "44.60828000" + }, + { + "id": "357", + "name": "Bjni", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.45831000", + "longitude": "44.65008000" + }, + { + "id": "360", + "name": "Buzhakan", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.45569000", + "longitude": "44.51947000" + }, + { + "id": "363", + "name": "Byureghavan", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.31417000", + "longitude": "44.59333000" + }, + { + "id": "379", + "name": "Dzoraghbyur", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.20412000", + "longitude": "44.64150000" + }, + { + "id": "382", + "name": "Fantan", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.39447000", + "longitude": "44.68610000" + }, + { + "id": "386", + "name": "Garrni", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.11931000", + "longitude": "44.73442000" + }, + { + "id": "400", + "name": "Goght’", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.13470000", + "longitude": "44.78332000" + }, + { + "id": "417", + "name": "Hrazdan", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.49748000", + "longitude": "44.76620000" + }, + { + "id": "426", + "name": "Kaputan", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.32507000", + "longitude": "44.70007000" + }, + { + "id": "435", + "name": "Kotayk’", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.27789000", + "longitude": "44.66388000" + }, + { + "id": "442", + "name": "Lerrnanist", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.46676000", + "longitude": "44.79249000" + }, + { + "id": "459", + "name": "Mayakovski", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.25293000", + "longitude": "44.63892000" + }, + { + "id": "462", + "name": "Meghradzor", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.60611000", + "longitude": "44.65147000" + }, + { + "id": "474", + "name": "Mrgashen", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.28607000", + "longitude": "44.54449000" + }, + { + "id": "484", + "name": "Nor Geghi", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.32233000", + "longitude": "44.58331000" + }, + { + "id": "485", + "name": "Nor Gyugh", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.26672000", + "longitude": "44.65832000" + }, + { + "id": "500", + "name": "Prroshyan", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.24731000", + "longitude": "44.41949000" + }, + { + "id": "501", + "name": "Ptghni", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.25568000", + "longitude": "44.58612000" + }, + { + "id": "527", + "name": "Solak", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.46252000", + "longitude": "44.70709000" + }, + { + "id": "537", + "name": "Tsaghkadzor", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.53259000", + "longitude": "44.72025000" + }, + { + "id": "577", + "name": "Yeghvard", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.32507000", + "longitude": "44.48608000" + }, + { + "id": "583", + "name": "Zarr", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.25848000", + "longitude": "44.73328000" + }, + { + "id": "586", + "name": "Zoravan", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.35553000", + "longitude": "44.52228000" + }, + { + "id": "587", + "name": "Zovaber", + "state_id": 2033, + "state_code": "KT", + "country_id": 12, + "country_code": "AM", + "latitude": "40.56671000", + "longitude": "44.79028000" + }, + { + "id": "283", + "name": "Agarak", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.01072000", + "longitude": "44.46845000" + }, + { + "id": "290", + "name": "Akht’ala", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.16838000", + "longitude": "44.75811000" + }, + { + "id": "298", + "name": "Alaverdi", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.09766000", + "longitude": "44.67316000" + }, + { + "id": "316", + "name": "Arevashogh", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.86039000", + "longitude": "44.27438000" + }, + { + "id": "353", + "name": "Bazum", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.86763000", + "longitude": "44.43978000" + }, + { + "id": "365", + "name": "Chochkan", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.18118000", + "longitude": "44.83217000" + }, + { + "id": "369", + "name": "Darpas", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.83674000", + "longitude": "44.42494000" + }, + { + "id": "376", + "name": "Dsegh", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.96170000", + "longitude": "44.65003000" + }, + { + "id": "383", + "name": "Fioletovo", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.72241000", + "longitude": "44.71769000" + }, + { + "id": "399", + "name": "Gogaran", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.89255000", + "longitude": "44.19915000" + }, + { + "id": "404", + "name": "Gugark’", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.80460000", + "longitude": "44.54025000" + }, + { + "id": "405", + "name": "Gyulagarak", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.96715000", + "longitude": "44.47144000" + }, + { + "id": "423", + "name": "Jrashen", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.79028000", + "longitude": "44.18664000" + }, + { + "id": "443", + "name": "Lerrnants’k’", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.79532000", + "longitude": "44.27435000" + }, + { + "id": "444", + "name": "Lerrnapat", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.81538000", + "longitude": "44.39344000" + }, + { + "id": "445", + "name": "Lerrnavan", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.78820000", + "longitude": "44.16024000" + }, + { + "id": "447", + "name": "Lorut", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.93717000", + "longitude": "44.77142000" + }, + { + "id": "453", + "name": "Margahovit", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.73381000", + "longitude": "44.68474000" + }, + { + "id": "468", + "name": "Mets Parni", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.83472000", + "longitude": "44.11108000" + }, + { + "id": "470", + "name": "Metsavan", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.20156000", + "longitude": "44.22877000" + }, + { + "id": "490", + "name": "Norashen", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.18886000", + "longitude": "44.33336000" + }, + { + "id": "496", + "name": "Odzun", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.05321000", + "longitude": "44.61341000" + }, + { + "id": "506", + "name": "Sarahart’", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.87043000", + "longitude": "44.21407000" + }, + { + "id": "507", + "name": "Saramej", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.77487000", + "longitude": "44.22220000" + }, + { + "id": "517", + "name": "Shahumyan", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.77482000", + "longitude": "44.54596000" + }, + { + "id": "523", + "name": "Shirakamut", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.86056000", + "longitude": "44.15278000" + }, + { + "id": "524", + "name": "Shnogh", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.14693000", + "longitude": "44.84043000" + }, + { + "id": "529", + "name": "Spitak", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.83221000", + "longitude": "44.26731000" + }, + { + "id": "530", + "name": "Step’anavan", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.00995000", + "longitude": "44.38531000" + }, + { + "id": "534", + "name": "Tashir", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.12072000", + "longitude": "44.28462000" + }, + { + "id": "536", + "name": "Tsaghkaber", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.79849000", + "longitude": "44.10144000" + }, + { + "id": "547", + "name": "Urrut", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "41.06778000", + "longitude": "44.39628000" + }, + { + "id": "551", + "name": "Vahagni", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.90698000", + "longitude": "44.60873000" + }, + { + "id": "553", + "name": "Vanadzor", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.80456000", + "longitude": "44.49390000" + }, + { + "id": "554", + "name": "Vardablur", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.97083000", + "longitude": "44.50889000" + }, + { + "id": "576", + "name": "Yeghegnut", + "state_id": 2029, + "state_code": "LO", + "country_id": 12, + "country_code": "AM", + "latitude": "40.90302000", + "longitude": "44.63155000" + }, + { + "id": "291", + "name": "Akhuryan", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.78003000", + "longitude": "43.90027000" + }, + { + "id": "299", + "name": "Amasia", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.95442000", + "longitude": "43.78720000" + }, + { + "id": "301", + "name": "Anushavan", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.65008000", + "longitude": "43.98053000" + }, + { + "id": "318", + "name": "Arevik", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.74170000", + "longitude": "43.90430000" + }, + { + "id": "320", + "name": "Arevshat", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.65345000", + "longitude": "44.04419000" + }, + { + "id": "326", + "name": "Arrap’i", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.78276000", + "longitude": "43.80583000" + }, + { + "id": "346", + "name": "Azatan", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.71959000", + "longitude": "43.82727000" + }, + { + "id": "352", + "name": "Basen", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.75767000", + "longitude": "43.99274000" + }, + { + "id": "378", + "name": "Dzit’hank’ov", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.50848000", + "longitude": "43.82092000" + }, + { + "id": "406", + "name": "Gyumri", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.79420000", + "longitude": "43.84528000" + }, + { + "id": "411", + "name": "Haykavan", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.80312000", + "longitude": "43.75173000" + }, + { + "id": "413", + "name": "Horrom", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.65973000", + "longitude": "43.89032000" + }, + { + "id": "424", + "name": "Kamo", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.82572000", + "longitude": "43.95071000" + }, + { + "id": "441", + "name": "Lerrnakert", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.56250000", + "longitude": "43.93890000" + }, + { + "id": "452", + "name": "Maralik", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.57507000", + "longitude": "43.87231000" + }, + { + "id": "456", + "name": "Marmashen", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.83486000", + "longitude": "43.77790000" + }, + { + "id": "460", + "name": "Mayisyan", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.84715000", + "longitude": "43.83938000" + }, + { + "id": "463", + "name": "Meghrashen", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.67230000", + "longitude": "43.95831000" + }, + { + "id": "466", + "name": "Mets Mant’ash", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.64376000", + "longitude": "44.05653000" + }, + { + "id": "503", + "name": "P’ok’r Mant’ash", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.64026000", + "longitude": "44.04666000" + }, + { + "id": "499", + "name": "Pemzashen", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.58612000", + "longitude": "43.94311000" + }, + { + "id": "508", + "name": "Saratak", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.67090000", + "longitude": "43.87231000" + }, + { + "id": "522", + "name": "Shirak", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.84042000", + "longitude": "43.91582000" + }, + { + "id": "528", + "name": "Spandaryan", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.66105000", + "longitude": "44.01551000" + }, + { + "id": "566", + "name": "Voskehask", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.76426000", + "longitude": "43.77474000" + }, + { + "id": "580", + "name": "Yerazgavors", + "state_id": 2031, + "state_code": "SH", + "country_id": 12, + "country_code": "AM", + "latitude": "40.69505000", + "longitude": "43.74722000" + }, + { + "id": "284", + "name": "Agarak", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.20684000", + "longitude": "46.54460000" + }, + { + "id": "294", + "name": "Akner", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.53491000", + "longitude": "46.30732000" + }, + { + "id": "300", + "name": "Angeghakot’", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.56952000", + "longitude": "45.94452000" + }, + { + "id": "358", + "name": "Brrnakot’", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.49742000", + "longitude": "45.97241000" + }, + { + "id": "381", + "name": "Dzorastan", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.27059000", + "longitude": "46.35720000" + }, + { + "id": "402", + "name": "Goris", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.51111000", + "longitude": "46.34168000" + }, + { + "id": "408", + "name": "Hats’avan", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.46405000", + "longitude": "45.97047000" + }, + { + "id": "425", + "name": "Kapan", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.20755000", + "longitude": "46.40576000" + }, + { + "id": "432", + "name": "Khndzoresk", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.50568000", + "longitude": "46.43610000" + }, + { + "id": "464", + "name": "Meghri", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "38.90292000", + "longitude": "46.24458000" + }, + { + "id": "515", + "name": "Shaghat", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.55698000", + "longitude": "45.90727000" + }, + { + "id": "521", + "name": "Shinuhayr", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.43670000", + "longitude": "46.31787000" + }, + { + "id": "535", + "name": "Tegh", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.55826000", + "longitude": "46.48054000" + }, + { + "id": "564", + "name": "Verishen", + "state_id": 2027, + "state_code": "SU", + "country_id": 12, + "country_code": "AM", + "latitude": "39.53543000", + "longitude": "46.32063000" + }, + { + "id": "312", + "name": "Archis", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "41.16351000", + "longitude": "44.87631000" + }, + { + "id": "331", + "name": "Artsvaberd", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.83947000", + "longitude": "45.47033000" + }, + { + "id": "339", + "name": "Aygehovit", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.97951000", + "longitude": "45.25033000" + }, + { + "id": "345", + "name": "Azatamut", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.98204000", + "longitude": "45.18551000" + }, + { + "id": "348", + "name": "Bagratashen", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "41.24358000", + "longitude": "44.81737000" + }, + { + "id": "354", + "name": "Berd", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.88135000", + "longitude": "45.38901000" + }, + { + "id": "355", + "name": "Berdavan", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "41.20503000", + "longitude": "44.99967000" + }, + { + "id": "372", + "name": "Dilijan", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.74170000", + "longitude": "44.85010000" + }, + { + "id": "407", + "name": "Haghartsin", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.77614000", + "longitude": "44.96847000" + }, + { + "id": "418", + "name": "Ijevan", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.87877000", + "longitude": "45.14851000" + }, + { + "id": "431", + "name": "Khasht’arrak", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.93668000", + "longitude": "45.18210000" + }, + { + "id": "471", + "name": "Mosesgegh", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.90534000", + "longitude": "45.48838000" + }, + { + "id": "480", + "name": "Navur", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.86695000", + "longitude": "45.34179000" + }, + { + "id": "494", + "name": "Noyemberyan", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "41.17244000", + "longitude": "44.99917000" + }, + { + "id": "498", + "name": "Parravak’ar", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "40.98248000", + "longitude": "45.36696000" + }, + { + "id": "510", + "name": "Sarigyugh", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "41.03531000", + "longitude": "45.14486000" + }, + { + "id": "569", + "name": "Voskevan", + "state_id": 2032, + "state_code": "TV", + "country_id": 12, + "country_code": "AM", + "latitude": "41.12081000", + "longitude": "45.06381000" + }, + { + "id": "285", + "name": "Agarakadzor", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.73608000", + "longitude": "45.35553000" + }, + { + "id": "288", + "name": "Aghavnadzor", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.78607000", + "longitude": "45.22790000" + }, + { + "id": "313", + "name": "Areni", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.71668000", + "longitude": "45.18329000" + }, + { + "id": "393", + "name": "Getap’", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.76392000", + "longitude": "45.30829000" + }, + { + "id": "397", + "name": "Gladzor", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.78070000", + "longitude": "45.34729000" + }, + { + "id": "420", + "name": "Jermuk", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.84168000", + "longitude": "45.66949000" + }, + { + "id": "451", + "name": "Malishka", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.74731000", + "longitude": "45.40570000" + }, + { + "id": "505", + "name": "Rrind", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.76111000", + "longitude": "45.17792000" + }, + { + "id": "518", + "name": "Shatin", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.83612000", + "longitude": "45.30292000" + }, + { + "id": "559", + "name": "Vayk’", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.68890000", + "longitude": "45.46668000" + }, + { + "id": "565", + "name": "Vernashen", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.79236000", + "longitude": "45.36389000" + }, + { + "id": "572", + "name": "Yeghegis", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.87231000", + "longitude": "45.35010000" + }, + { + "id": "573", + "name": "Yeghegnadzor", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.76389000", + "longitude": "45.33239000" + }, + { + "id": "584", + "name": "Zarrit’ap’", + "state_id": 2025, + "state_code": "VD", + "country_id": 12, + "country_code": "AM", + "latitude": "39.63892000", + "longitude": "45.51111000" + }, + { + "id": "304", + "name": "Arabkir", + "state_id": 2030, + "state_code": "ER", + "country_id": 12, + "country_code": "AM", + "latitude": "40.20549000", + "longitude": "44.50699000" + }, + { + "id": "321", + "name": "Argavand", + "state_id": 2030, + "state_code": "ER", + "country_id": 12, + "country_code": "AM", + "latitude": "40.15289000", + "longitude": "44.43890000" + }, + { + "id": "422", + "name": "Jrashen", + "state_id": 2030, + "state_code": "ER", + "country_id": 12, + "country_code": "AM", + "latitude": "40.05275000", + "longitude": "44.51259000" + }, + { + "id": "436", + "name": "K’anak’erravan", + "state_id": 2030, + "state_code": "ER", + "country_id": 12, + "country_code": "AM", + "latitude": "40.24739000", + "longitude": "44.53511000" + }, + { + "id": "555", + "name": "Vardadzor", + "state_id": 2030, + "state_code": "ER", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18701000", + "longitude": "45.19212000" + }, + { + "id": "581", + "name": "Yerevan", + "state_id": 2030, + "state_code": "ER", + "country_id": 12, + "country_code": "AM", + "latitude": "40.18111000", + "longitude": "44.51361000" + }, + { + "id": "3915", + "name": "Acton", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.27767000", + "longitude": "149.11829000" + }, + { + "id": "3923", + "name": "Ainslie", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.26255000", + "longitude": "149.14370000" + }, + { + "id": "3974", + "name": "Amaroo", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.16959000", + "longitude": "149.12802000" + }, + { + "id": "3995", + "name": "Aranda", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.25817000", + "longitude": "149.08040000" + }, + { + "id": "4098", + "name": "Banks", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.47194000", + "longitude": "149.09965000" + }, + { + "id": "4129", + "name": "Barton", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.30489000", + "longitude": "149.14121000" + }, + { + "id": "4184", + "name": "Belconnen", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.23798000", + "longitude": "149.06627000" + }, + { + "id": "4331", + "name": "Bonner", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.16225000", + "longitude": "149.13855000" + }, + { + "id": "4338", + "name": "Bonython", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.43326000", + "longitude": "149.07822000" + }, + { + "id": "4377", + "name": "Braddon", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.27078000", + "longitude": "149.13569000" + }, + { + "id": "4436", + "name": "Bruce", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.24405000", + "longitude": "149.09083000" + }, + { + "id": "4536", + "name": "Calwell", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.44042000", + "longitude": "149.10707000" + }, + { + "id": "4555", + "name": "Campbell", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.28907000", + "longitude": "149.15382000" + }, + { + "id": "4566", + "name": "Canberra", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.28346000", + "longitude": "149.12807000" + }, + { + "id": "4621", + "name": "Casey", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.16701000", + "longitude": "149.09470000" + }, + { + "id": "4662", + "name": "Chapman", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.35621000", + "longitude": "149.03742000" + }, + { + "id": "4669", + "name": "Charnwood", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.20019000", + "longitude": "149.03412000" + }, + { + "id": "4687", + "name": "Chifley", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.35340000", + "longitude": "149.07684000" + }, + { + "id": "4697", + "name": "Chisholm", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.41249000", + "longitude": "149.12825000" + }, + { + "id": "4708", + "name": "City", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.28125000", + "longitude": "149.12927000" + }, + { + "id": "4787", + "name": "Conder", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.45926000", + "longitude": "149.10422000" + }, + { + "id": "4799", + "name": "Cook", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.26014000", + "longitude": "149.06566000" + }, + { + "id": "4816", + "name": "Coombs", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.31634000", + "longitude": "149.03941000" + }, + { + "id": "4855", + "name": "Crace", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.20282000", + "longitude": "149.10736000" + }, + { + "id": "4916", + "name": "Curtin", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.32464000", + "longitude": "149.07763000" + }, + { + "id": "4957", + "name": "Deakin", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.31927000", + "longitude": "149.10308000" + }, + { + "id": "4989", + "name": "Dickson", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.25082000", + "longitude": "149.13932000" + }, + { + "id": "5024", + "name": "Downer", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.24457000", + "longitude": "149.14468000" + }, + { + "id": "5036", + "name": "Duffy", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.33459000", + "longitude": "149.03188000" + }, + { + "id": "5046", + "name": "Dunlop", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.19402000", + "longitude": "149.01984000" + }, + { + "id": "5197", + "name": "Evatt", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.21191000", + "longitude": "149.06891000" + }, + { + "id": "5204", + "name": "Fadden", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.40500000", + "longitude": "149.11662000" + }, + { + "id": "5219", + "name": "Farrer", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.37673000", + "longitude": "149.10500000" + }, + { + "id": "5239", + "name": "Fisher", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.36126000", + "longitude": "149.05704000" + }, + { + "id": "5257", + "name": "Florey", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.22588000", + "longitude": "149.05000000" + }, + { + "id": "5258", + "name": "Flynn", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.20593000", + "longitude": "149.04389000" + }, + { + "id": "5261", + "name": "Forde", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.16823000", + "longitude": "149.14607000" + }, + { + "id": "5270", + "name": "Forrest", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.31499000", + "longitude": "149.12859000" + }, + { + "id": "5278", + "name": "Franklin", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.19946000", + "longitude": "149.14329000" + }, + { + "id": "5284", + "name": "Fraser", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.19170000", + "longitude": "149.04534000" + }, + { + "id": "5306", + "name": "Garran", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.34206000", + "longitude": "149.10846000" + }, + { + "id": "5336", + "name": "Gilmore", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.41994000", + "longitude": "149.13481000" + }, + { + "id": "5340", + "name": "Giralang", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.21093000", + "longitude": "149.09600000" + }, + { + "id": "5420", + "name": "Gordon", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.45676000", + "longitude": "149.08498000" + }, + { + "id": "5429", + "name": "Gowrie", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.41187000", + "longitude": "149.10903000" + }, + { + "id": "5461", + "name": "Greenway", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.41829000", + "longitude": "149.06658000" + }, + { + "id": "5472", + "name": "Griffith", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.32533000", + "longitude": "149.13714000" + }, + { + "id": "5485", + "name": "Gungahlin", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.18674000", + "longitude": "149.13619000" + }, + { + "id": "5498", + "name": "Hackett", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.24948000", + "longitude": "149.16352000" + }, + { + "id": "5531", + "name": "Harrison", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.19906000", + "longitude": "149.15631000" + }, + { + "id": "5538", + "name": "Hawker", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.24707000", + "longitude": "149.03666000" + }, + { + "id": "5592", + "name": "Higgins", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.23242000", + "longitude": "149.02720000" + }, + { + "id": "5629", + "name": "Holder", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.33439000", + "longitude": "149.04614000" + }, + { + "id": "5639", + "name": "Holt", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.22441000", + "longitude": "149.01188000" + }, + { + "id": "5663", + "name": "Hughes", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.33269000", + "longitude": "149.09491000" + }, + { + "id": "5707", + "name": "Isaacs", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.36862000", + "longitude": "149.11555000" + }, + { + "id": "5708", + "name": "Isabella Plains", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.42829000", + "longitude": "149.08795000" + }, + { + "id": "5758", + "name": "Kaleen", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.21814000", + "longitude": "149.10516000" + }, + { + "id": "5768", + "name": "Kambah", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.38624000", + "longitude": "149.05804000" + }, + { + "id": "5886", + "name": "Kingston", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.31525000", + "longitude": "149.14658000" + }, + { + "id": "5980", + "name": "Latham", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.21652000", + "longitude": "149.03144000" + }, + { + "id": "6091", + "name": "Lyneham", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.23980000", + "longitude": "149.13074000" + }, + { + "id": "6093", + "name": "Lyons", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.34060000", + "longitude": "149.07396000" + }, + { + "id": "6097", + "name": "Macarthur", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.40885000", + "longitude": "149.12696000" + }, + { + "id": "6102", + "name": "Macgregor", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.20980000", + "longitude": "149.01101000" + }, + { + "id": "6112", + "name": "Macquarie", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.25126000", + "longitude": "149.06363000" + }, + { + "id": "6205", + "name": "Mawson", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.36340000", + "longitude": "149.09863000" + }, + { + "id": "6218", + "name": "McKellar", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.21752000", + "longitude": "149.07704000" + }, + { + "id": "6234", + "name": "Melba", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.21016000", + "longitude": "149.05405000" + }, + { + "id": "6345", + "name": "Monash", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.41577000", + "longitude": "149.09063000" + }, + { + "id": "6533", + "name": "Narrabundah", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.33570000", + "longitude": "149.14924000" + }, + { + "id": "6583", + "name": "Ngunnawal", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.17280000", + "longitude": "149.11147000" + }, + { + "id": "6587", + "name": "Nicholls", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.18733000", + "longitude": "149.09648000" + }, + { + "id": "6691", + "name": "O'Connor", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.25645000", + "longitude": "149.11248000" + }, + { + "id": "6749", + "name": "Oxley", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.40952000", + "longitude": "149.07860000" + }, + { + "id": "6761", + "name": "Page", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.23864000", + "longitude": "149.04988000" + }, + { + "id": "6770", + "name": "Palmerston", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.19447000", + "longitude": "149.11940000" + }, + { + "id": "6820", + "name": "Pearce", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.36222000", + "longitude": "149.08338000" + }, + { + "id": "6848", + "name": "Phillip", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.35035000", + "longitude": "149.09151000" + }, + { + "id": "6977", + "name": "Red Hill", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.32624000", + "longitude": "149.11906000" + }, + { + "id": "6992", + "name": "Reid", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.28578000", + "longitude": "149.13905000" + }, + { + "id": "7004", + "name": "Richardson", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.42787000", + "longitude": "149.11377000" + }, + { + "id": "7031", + "name": "Rivett", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.34709000", + "longitude": "149.03790000" + }, + { + "id": "7157", + "name": "Scullin", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.23462000", + "longitude": "149.03900000" + }, + { + "id": "7303", + "name": "Spence", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.19873000", + "longitude": "149.06438000" + }, + { + "id": "7348", + "name": "Stirling", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.34969000", + "longitude": "149.04930000" + }, + { + "id": "7498", + "name": "Theodore", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.44962000", + "longitude": "149.11971000" + }, + { + "id": "7544", + "name": "Torrens", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.37203000", + "longitude": "149.08773000" + }, + { + "id": "7582", + "name": "Turner", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.26881000", + "longitude": "149.12465000" + }, + { + "id": "7693", + "name": "Wanniassa", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.39783000", + "longitude": "149.09086000" + }, + { + "id": "7697", + "name": "Waramanga", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.35297000", + "longitude": "149.06214000" + }, + { + "id": "7735", + "name": "Watson", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.23815000", + "longitude": "149.15271000" + }, + { + "id": "7753", + "name": "Weetangera", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.25000000", + "longitude": "149.05000000" + }, + { + "id": "7827", + "name": "Weston", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.33582000", + "longitude": "149.05929000" + }, + { + "id": "7955", + "name": "Wright", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.32239000", + "longitude": "149.03456000" + }, + { + "id": "8002", + "name": "Yarralumla", + "state_id": 3907, + "state_code": "ACT", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.29980000", + "longitude": "149.10585000" + }, + { + "id": "3903", + "name": "Abbotsbury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87010000", + "longitude": "150.86119000" + }, + { + "id": "3905", + "name": "Abbotsford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84889000", + "longitude": "151.12801000" + }, + { + "id": "3906", + "name": "Abercrombie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.38867000", + "longitude": "149.54580000" + }, + { + "id": "3907", + "name": "Aberdare", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.84112000", + "longitude": "151.38168000" + }, + { + "id": "3908", + "name": "Aberdeen", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.16588000", + "longitude": "150.89003000" + }, + { + "id": "3911", + "name": "Aberglasslyn", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.70000000", + "longitude": "151.53333000" + }, + { + "id": "3912", + "name": "Abermain", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.80740000", + "longitude": "151.42750000" + }, + { + "id": "3913", + "name": "Acacia Gardens", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73159000", + "longitude": "150.91636000" + }, + { + "id": "3917", + "name": "Adamstown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.93824000", + "longitude": "151.72541000" + }, + { + "id": "3918", + "name": "Adamstown Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.94906000", + "longitude": "151.71009000" + }, + { + "id": "3924", + "name": "Airds", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.08599000", + "longitude": "150.83322000" + }, + { + "id": "3937", + "name": "Albion Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.57132000", + "longitude": "150.77568000" + }, + { + "id": "3938", + "name": "Albion Park Rail", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.56634000", + "longitude": "150.79177000" + }, + { + "id": "3939", + "name": "Albury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.07482000", + "longitude": "146.92401000" + }, + { + "id": "3940", + "name": "Albury Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.01494000", + "longitude": "146.95684000" + }, + { + "id": "3941", + "name": "Aldavilla", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.08180000", + "longitude": "152.76790000" + }, + { + "id": "3950", + "name": "Alexandria", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89989000", + "longitude": "151.19951000" + }, + { + "id": "3952", + "name": "Alfords Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98744000", + "longitude": "151.02526000" + }, + { + "id": "3959", + "name": "Allambie Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76655000", + "longitude": "151.24981000" + }, + { + "id": "3961", + "name": "Allawah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97257000", + "longitude": "151.11440000" + }, + { + "id": "3968", + "name": "Alstonville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.84186000", + "longitude": "153.44022000" + }, + { + "id": "3975", + "name": "Ambarvale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.08942000", + "longitude": "150.79656000" + }, + { + "id": "3983", + "name": "Anna Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.78135000", + "longitude": "152.08586000" + }, + { + "id": "3984", + "name": "Annandale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88333000", + "longitude": "151.16667000" + }, + { + "id": "3986", + "name": "Annangrove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.65758000", + "longitude": "150.94755000" + }, + { + "id": "3991", + "name": "Appin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.20347000", + "longitude": "150.78644000" + }, + { + "id": "3997", + "name": "Arcadia", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.61667000", + "longitude": "151.03333000" + }, + { + "id": "3998", + "name": "Arcadia vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.06052000", + "longitude": "151.58408000" + }, + { + "id": "4002", + "name": "Argenton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.93505000", + "longitude": "151.63064000" + }, + { + "id": "4005", + "name": "Armidale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.50123000", + "longitude": "151.66553000" + }, + { + "id": "4007", + "name": "Arncliffe", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93627000", + "longitude": "151.14819000" + }, + { + "id": "4009", + "name": "Artarmon", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81667000", + "longitude": "151.18333000" + }, + { + "id": "4018", + "name": "Ashbury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89785000", + "longitude": "151.11960000" + }, + { + "id": "4020", + "name": "Ashcroft", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91598000", + "longitude": "150.89985000" + }, + { + "id": "4022", + "name": "Ashfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88834000", + "longitude": "151.12274000" + }, + { + "id": "4025", + "name": "Ashmont", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.12491000", + "longitude": "147.33172000" + }, + { + "id": "4027", + "name": "Ashtonfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.77331000", + "longitude": "151.60583000" + }, + { + "id": "4032", + "name": "Asquith", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68705000", + "longitude": "151.11630000" + }, + { + "id": "4040", + "name": "Auburn", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85000000", + "longitude": "151.03333000" + }, + { + "id": "4046", + "name": "Austinmer", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.30516000", + "longitude": "150.93335000" + }, + { + "id": "4048", + "name": "Austral", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92745000", + "longitude": "150.80811000" + }, + { + "id": "4055", + "name": "Avoca Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.46818000", + "longitude": "151.43390000" + }, + { + "id": "4056", + "name": "Avondale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.51750000", + "longitude": "150.75010000" + }, + { + "id": "4074", + "name": "Balgowlah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79494000", + "longitude": "151.25720000" + }, + { + "id": "4075", + "name": "Balgowlah Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80661000", + "longitude": "151.26243000" + }, + { + "id": "4076", + "name": "Balgownie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.39505000", + "longitude": "150.88051000" + }, + { + "id": "4084", + "name": "Ballina", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.85273000", + "longitude": "153.48568000" + }, + { + "id": "4085", + "name": "Balmain", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85481000", + "longitude": "151.18330000" + }, + { + "id": "4086", + "name": "Balmain East", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85710000", + "longitude": "151.19282000" + }, + { + "id": "4090", + "name": "Balranald", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.67839000", + "longitude": "143.56384000" + }, + { + "id": "4095", + "name": "Bangalow", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.68634000", + "longitude": "153.52153000" + }, + { + "id": "4096", + "name": "Bangor", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01667000", + "longitude": "151.03333000" + }, + { + "id": "4099", + "name": "Banksia", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94601000", + "longitude": "151.14304000" + }, + { + "id": "4103", + "name": "Bankstown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91667000", + "longitude": "151.03333000" + }, + { + "id": "4105", + "name": "Banora Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.21298000", + "longitude": "153.53634000" + }, + { + "id": "4108", + "name": "Bar Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.94128000", + "longitude": "151.76544000" + }, + { + "id": "4112", + "name": "Barden Ridge", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03413000", + "longitude": "151.01194000" + }, + { + "id": "4113", + "name": "Bardia", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97789000", + "longitude": "150.86306000" + }, + { + "id": "4115", + "name": "Bardwell Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93534000", + "longitude": "151.12571000" + }, + { + "id": "4116", + "name": "Bardwell Valley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93344000", + "longitude": "151.13668000" + }, + { + "id": "4119", + "name": "Bargo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.29301000", + "longitude": "150.57806000" + }, + { + "id": "4120", + "name": "Barham", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.62647000", + "longitude": "144.12895000" + }, + { + "id": "4124", + "name": "Barnsley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.93333000", + "longitude": "151.58333000" + }, + { + "id": "4125", + "name": "Barooga", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.90602000", + "longitude": "145.69585000" + }, + { + "id": "4127", + "name": "Barraba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.38547000", + "longitude": "150.60901000" + }, + { + "id": "4128", + "name": "Barrack Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.56464000", + "longitude": "150.85692000" + }, + { + "id": "4132", + "name": "Basin View", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.08833000", + "longitude": "150.55534000" + }, + { + "id": "4134", + "name": "Bass Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89863000", + "longitude": "150.99541000" + }, + { + "id": "4136", + "name": "Bateau Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.38334000", + "longitude": "151.46671000" + }, + { + "id": "4137", + "name": "Batehaven", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.73757000", + "longitude": "150.19836000" + }, + { + "id": "4139", + "name": "Batemans Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.70658000", + "longitude": "150.17541000" + }, + { + "id": "4140", + "name": "Bathurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.41665000", + "longitude": "149.58060000" + }, + { + "id": "4142", + "name": "Bathurst city centre", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.41816000", + "longitude": "149.57621000" + }, + { + "id": "4141", + "name": "Bathurst Regional", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.47310000", + "longitude": "149.51956000" + }, + { + "id": "4143", + "name": "Batlow", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.51987000", + "longitude": "148.14727000" + }, + { + "id": "4146", + "name": "Baulkham Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75881000", + "longitude": "150.99292000" + }, + { + "id": "4149", + "name": "Bay View", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.65982000", + "longitude": "151.29878000" + }, + { + "id": "4159", + "name": "Beacon Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75280000", + "longitude": "151.25857000" + }, + { + "id": "4169", + "name": "Beaumont Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.69993000", + "longitude": "150.94110000" + }, + { + "id": "4177", + "name": "Beecroft", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74954000", + "longitude": "151.06480000" + }, + { + "id": "4181", + "name": "Bega", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.67392000", + "longitude": "149.84178000" + }, + { + "id": "4182", + "name": "Bega Valley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.81646000", + "longitude": "149.72060000" + }, + { + "id": "4186", + "name": "Belfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90354000", + "longitude": "151.08467000" + }, + { + "id": "4193", + "name": "Bella Vista", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74127000", + "longitude": "150.95456000" + }, + { + "id": "4195", + "name": "Bellambi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.36667000", + "longitude": "150.91667000" + }, + { + "id": "4197", + "name": "Bellbird", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.85992000", + "longitude": "151.31873000" + }, + { + "id": "4203", + "name": "Bellevue Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87899000", + "longitude": "151.25101000" + }, + { + "id": "4205", + "name": "Bellingen", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.37394000", + "longitude": "152.72492000" + }, + { + "id": "4207", + "name": "Belmont", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.02740000", + "longitude": "151.66010000" + }, + { + "id": "4211", + "name": "Belmont North", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.02081000", + "longitude": "151.66849000" + }, + { + "id": "4212", + "name": "Belmont South", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.04934000", + "longitude": "151.65695000" + }, + { + "id": "4213", + "name": "Belmore", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91901000", + "longitude": "151.08935000" + }, + { + "id": "4214", + "name": "Belrose", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73954000", + "longitude": "151.21033000" + }, + { + "id": "4222", + "name": "Bensville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.49757000", + "longitude": "151.38084000" + }, + { + "id": "4227", + "name": "Berala", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87197000", + "longitude": "151.03386000" + }, + { + "id": "4228", + "name": "Beresfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.80000000", + "longitude": "151.65000000" + }, + { + "id": "4230", + "name": "Berkeley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.48333000", + "longitude": "150.85000000" + }, + { + "id": "4231", + "name": "Berkeley Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.35000000", + "longitude": "151.43333000" + }, + { + "id": "4232", + "name": "Berkshire Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.67283000", + "longitude": "150.77523000" + }, + { + "id": "4233", + "name": "Bermagui", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.41900000", + "longitude": "150.06355000" + }, + { + "id": "4234", + "name": "Berowra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.62078000", + "longitude": "151.15091000" + }, + { + "id": "4235", + "name": "Berowra Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.61211000", + "longitude": "151.13754000" + }, + { + "id": "4238", + "name": "Berridale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.36673000", + "longitude": "148.82772000" + }, + { + "id": "4240", + "name": "Berrigan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.75192000", + "longitude": "145.66984000" + }, + { + "id": "4243", + "name": "Berry", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.77507000", + "longitude": "150.69436000" + }, + { + "id": "4251", + "name": "Beverley Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97707000", + "longitude": "151.13437000" + }, + { + "id": "4252", + "name": "Beverly Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94799000", + "longitude": "151.07979000" + }, + { + "id": "4253", + "name": "Bexley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95000000", + "longitude": "151.11667000" + }, + { + "id": "4254", + "name": "Bexley North", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93848000", + "longitude": "151.11385000" + }, + { + "id": "4257", + "name": "Bidwill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73013000", + "longitude": "150.82219000" + }, + { + "id": "4259", + "name": "Bilambil Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.21610000", + "longitude": "153.48415000" + }, + { + "id": "4260", + "name": "Bilgola Plateau", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.64781000", + "longitude": "151.31212000" + }, + { + "id": "4265", + "name": "Bingara", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.86931000", + "longitude": "150.57204000" + }, + { + "id": "4267", + "name": "Birchgrove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85164000", + "longitude": "151.18243000" + }, + { + "id": "4271", + "name": "Birmingham Gardens", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.89368000", + "longitude": "151.69009000" + }, + { + "id": "4272", + "name": "Birrong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89255000", + "longitude": "151.02075000" + }, + { + "id": "4282", + "name": "Blackalls Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.99893000", + "longitude": "151.58018000" + }, + { + "id": "4286", + "name": "Blackbutt", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.57164000", + "longitude": "150.83804000" + }, + { + "id": "4287", + "name": "Blackett", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73792000", + "longitude": "150.81812000" + }, + { + "id": "4288", + "name": "Blackheath", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.63567000", + "longitude": "150.28318000" + }, + { + "id": "4291", + "name": "Blacksmiths", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.07167000", + "longitude": "151.65533000" + }, + { + "id": "4293", + "name": "Blacktown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74016000", + "longitude": "150.86253000" + }, + { + "id": "4294", + "name": "Blackwall", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.50252000", + "longitude": "151.32786000" + }, + { + "id": "4298", + "name": "Blair Athol", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.65000000", + "longitude": "150.20000000" + }, + { + "id": "4300", + "name": "Blakehurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.99152000", + "longitude": "151.10876000" + }, + { + "id": "4302", + "name": "Bland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91904000", + "longitude": "146.92718000" + }, + { + "id": "4303", + "name": "Blaxland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75000000", + "longitude": "150.60000000" + }, + { + "id": "4304", + "name": "Blayney", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.61653000", + "longitude": "149.13046000" + }, + { + "id": "4306", + "name": "Bligh Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.63985000", + "longitude": "150.80248000" + }, + { + "id": "4308", + "name": "Blue Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.35413000", + "longitude": "151.50024000" + }, + { + "id": "4309", + "name": "Blue Haven", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.21106000", + "longitude": "151.50351000" + }, + { + "id": "4310", + "name": "Blue Mountains Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.63203000", + "longitude": "150.41293000" + }, + { + "id": "4313", + "name": "Boambee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.33981000", + "longitude": "153.06783000" + }, + { + "id": "4314", + "name": "Boambee East", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.34662000", + "longitude": "153.07320000" + }, + { + "id": "4316", + "name": "Bogan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.57012000", + "longitude": "146.90617000" + }, + { + "id": "4317", + "name": "Bogangar", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.32944000", + "longitude": "153.56860000" + }, + { + "id": "4318", + "name": "Boggabri", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.70953000", + "longitude": "150.04121000" + }, + { + "id": "4321", + "name": "Bolton Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.00177000", + "longitude": "151.61013000" + }, + { + "id": "4322", + "name": "Bolwarra Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.70100000", + "longitude": "151.58541000" + }, + { + "id": "4323", + "name": "Bomaderry", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.84967000", + "longitude": "150.61093000" + }, + { + "id": "4324", + "name": "Bombala", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.91212000", + "longitude": "149.23669000" + }, + { + "id": "4326", + "name": "Bondi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89429000", + "longitude": "151.26444000" + }, + { + "id": "4327", + "name": "Bondi Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89079000", + "longitude": "151.27852000" + }, + { + "id": "4328", + "name": "Bondi Junction", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89275000", + "longitude": "151.24723000" + }, + { + "id": "4330", + "name": "Bonnells Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.10973000", + "longitude": "151.53226000" + }, + { + "id": "4332", + "name": "Bonnet Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01023000", + "longitude": "151.05253000" + }, + { + "id": "4333", + "name": "Bonny Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.59061000", + "longitude": "152.83908000" + }, + { + "id": "4334", + "name": "Bonnyrigg", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89357000", + "longitude": "150.88908000" + }, + { + "id": "4335", + "name": "Bonnyrigg Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89117000", + "longitude": "150.86994000" + }, + { + "id": "4337", + "name": "Bonville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.38284000", + "longitude": "153.05959000" + }, + { + "id": "4340", + "name": "Booker Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.51250000", + "longitude": "151.34590000" + }, + { + "id": "4344", + "name": "Booragul", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.97486000", + "longitude": "151.60978000" + }, + { + "id": "4346", + "name": "Boorowa", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.43661000", + "longitude": "148.71634000" + }, + { + "id": "4352", + "name": "Bossley Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86184000", + "longitude": "150.88410000" + }, + { + "id": "4354", + "name": "Botany", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94599000", + "longitude": "151.19591000" + }, + { + "id": "4355", + "name": "Botany Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94660000", + "longitude": "151.19874000" + }, + { + "id": "4359", + "name": "Bourke", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.99584000", + "longitude": "145.36160000" + }, + { + "id": "4360", + "name": "Bourkelands", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.15593000", + "longitude": "147.34704000" + }, + { + "id": "4361", + "name": "Bow Bowing", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01655000", + "longitude": "150.84030000" + }, + { + "id": "4364", + "name": "Bowen Mountain", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.57192000", + "longitude": "150.62563000" + }, + { + "id": "4365", + "name": "Bowenfels", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.48336000", + "longitude": "150.13444000" + }, + { + "id": "4366", + "name": "Bowral", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.47750000", + "longitude": "150.42040000" + }, + { + "id": "4367", + "name": "Bowraville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.64997000", + "longitude": "152.85146000" + }, + { + "id": "4376", + "name": "Bradbury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.08540000", + "longitude": "150.81541000" + }, + { + "id": "4379", + "name": "Braidwood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.44148000", + "longitude": "149.79980000" + }, + { + "id": "4382", + "name": "Branxton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.65547000", + "longitude": "151.35113000" + }, + { + "id": "4388", + "name": "Breakfast Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84286000", + "longitude": "151.11072000" + }, + { + "id": "4391", + "name": "Brewarrina", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.95055000", + "longitude": "147.14760000" + }, + { + "id": "4406", + "name": "Brighton-Le-Sands", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96009000", + "longitude": "151.15110000" + }, + { + "id": "4408", + "name": "Bringelly", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93333000", + "longitude": "150.73333000" + }, + { + "id": "4415", + "name": "Broadmeadow", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.92371000", + "longitude": "151.72849000" + }, + { + "id": "4420", + "name": "Broken Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.96520000", + "longitude": "141.45120000" + }, + { + "id": "4421", + "name": "Broken Hill Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95000000", + "longitude": "141.43333000" + }, + { + "id": "4423", + "name": "Bronte", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90198000", + "longitude": "151.26556000" + }, + { + "id": "4430", + "name": "Brookvale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76108000", + "longitude": "151.27446000" + }, + { + "id": "4434", + "name": "Broulee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.85469000", + "longitude": "150.17392000" + }, + { + "id": "4441", + "name": "Brunswick Heads", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.54003000", + "longitude": "153.54573000" + }, + { + "id": "4448", + "name": "Budgewoi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.23390000", + "longitude": "151.55412000" + }, + { + "id": "4449", + "name": "Buff Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.22285000", + "longitude": "151.53125000" + }, + { + "id": "4450", + "name": "Bulahdelah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.40698000", + "longitude": "152.21185000" + }, + { + "id": "4454", + "name": "Bullaburra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72922000", + "longitude": "150.41766000" + }, + { + "id": "4456", + "name": "Bulli", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.33834000", + "longitude": "150.91347000" + }, + { + "id": "4468", + "name": "Bundanoon", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.65658000", + "longitude": "150.29623000" + }, + { + "id": "4469", + "name": "Bundeena", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.08384000", + "longitude": "151.15016000" + }, + { + "id": "4472", + "name": "Bungarribee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77704000", + "longitude": "150.86799000" + }, + { + "id": "4473", + "name": "Bungendore", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.25382000", + "longitude": "149.44007000" + }, + { + "id": "4490", + "name": "Buronga", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.17070000", + "longitude": "142.17350000" + }, + { + "id": "4494", + "name": "Burradoo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.50320000", + "longitude": "150.40900000" + }, + { + "id": "4495", + "name": "Burraneer", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05625000", + "longitude": "151.13810000" + }, + { + "id": "4496", + "name": "Burrill Lake", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.38716000", + "longitude": "150.44952000" + }, + { + "id": "4501", + "name": "Burwood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88536000", + "longitude": "151.10481000" + }, + { + "id": "4503", + "name": "Busby", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91124000", + "longitude": "150.88068000" + }, + { + "id": "4508", + "name": "Buttaba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.05327000", + "longitude": "151.57866000" + }, + { + "id": "4509", + "name": "Buxton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.26017000", + "longitude": "150.53288000" + }, + { + "id": "4511", + "name": "Byron Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.64989000", + "longitude": "153.61246000" + }, + { + "id": "4512", + "name": "Byron Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.61667000", + "longitude": "153.51667000" + }, + { + "id": "4513", + "name": "Bywong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.16476000", + "longitude": "149.32892000" + }, + { + "id": "4514", + "name": "Cabarita", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84721000", + "longitude": "151.11638000" + }, + { + "id": "4517", + "name": "Cabonne", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.11076000", + "longitude": "148.82694000" + }, + { + "id": "4520", + "name": "Cabramatta", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89743000", + "longitude": "150.93446000" + }, + { + "id": "4521", + "name": "Cabramatta West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89303000", + "longitude": "150.91190000" + }, + { + "id": "4522", + "name": "Caddens", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77415000", + "longitude": "150.74126000" + }, + { + "id": "4527", + "name": "Calala", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.17356000", + "longitude": "150.98059000" + }, + { + "id": "4531", + "name": "Callaghan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.89205000", + "longitude": "151.70531000" + }, + { + "id": "4532", + "name": "Callala Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99668000", + "longitude": "150.72281000" + }, + { + "id": "4538", + "name": "Cambewarra Village", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.82335000", + "longitude": "150.55940000" + }, + { + "id": "4542", + "name": "Cambridge Gardens", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73801000", + "longitude": "150.72075000" + }, + { + "id": "4543", + "name": "Cambridge Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74784000", + "longitude": "150.72208000" + }, + { + "id": "4544", + "name": "Camden", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01610000", + "longitude": "150.72521000" + }, + { + "id": "4545", + "name": "Camden Haven", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.64484000", + "longitude": "152.79462000" + }, + { + "id": "4547", + "name": "Camden South", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.08312000", + "longitude": "150.69491000" + }, + { + "id": "4548", + "name": "Cameron Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90701000", + "longitude": "151.60528000" + }, + { + "id": "4551", + "name": "Cammeray", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82132000", + "longitude": "151.21609000" + }, + { + "id": "4558", + "name": "Campbelltown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.06667000", + "longitude": "150.81667000" + }, + { + "id": "4560", + "name": "Campbelltown Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.08333000", + "longitude": "150.83333000" + }, + { + "id": "4561", + "name": "Camperdown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88965000", + "longitude": "151.17642000" + }, + { + "id": "4563", + "name": "Campsie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91250000", + "longitude": "151.10279000" + }, + { + "id": "4564", + "name": "Canada Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86590000", + "longitude": "151.11591000" + }, + { + "id": "4567", + "name": "Canley Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88262000", + "longitude": "150.92408000" + }, + { + "id": "4568", + "name": "Canley Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88657000", + "longitude": "150.94802000" + }, + { + "id": "4574", + "name": "Canowindra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.56247000", + "longitude": "148.66434000" + }, + { + "id": "4576", + "name": "Canterbury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91192000", + "longitude": "151.11862000" + }, + { + "id": "4577", + "name": "Canton Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.27443000", + "longitude": "151.54614000" + }, + { + "id": "4585", + "name": "Cardiff", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.94201000", + "longitude": "151.65440000" + }, + { + "id": "4586", + "name": "Cardiff Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.93626000", + "longitude": "151.67227000" + }, + { + "id": "4587", + "name": "Cardiff South", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.95470000", + "longitude": "151.66446000" + }, + { + "id": "4595", + "name": "Caringbah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03534000", + "longitude": "151.12468000" + }, + { + "id": "4596", + "name": "Caringbah South", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05662000", + "longitude": "151.12149000" + }, + { + "id": "4598", + "name": "Carlingford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78269000", + "longitude": "151.04888000" + }, + { + "id": "4601", + "name": "Carlton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97107000", + "longitude": "151.12136000" + }, + { + "id": "4606", + "name": "Carnes Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93846000", + "longitude": "150.84881000" + }, + { + "id": "4609", + "name": "Carramar", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88382000", + "longitude": "150.96153000" + }, + { + "id": "4612", + "name": "Carrathool", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.62571000", + "longitude": "145.42523000" + }, + { + "id": "4613", + "name": "Carrington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.91501000", + "longitude": "151.76436000" + }, + { + "id": "4617", + "name": "Carss Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98667000", + "longitude": "151.11734000" + }, + { + "id": "4618", + "name": "Cartwright", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92498000", + "longitude": "150.88951000" + }, + { + "id": "4619", + "name": "Carwoola", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.37836000", + "longitude": "149.32150000" + }, + { + "id": "4623", + "name": "Casino", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.85819000", + "longitude": "153.04748000" + }, + { + "id": "4626", + "name": "Castle Cove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78655000", + "longitude": "151.20925000" + }, + { + "id": "4627", + "name": "Castle Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73333000", + "longitude": "151.00000000" + }, + { + "id": "4628", + "name": "Castlecrag", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79987000", + "longitude": "151.22310000" + }, + { + "id": "4630", + "name": "Castlereagh", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68981000", + "longitude": "150.67887000" + }, + { + "id": "4632", + "name": "Casuarina", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.30042000", + "longitude": "153.57064000" + }, + { + "id": "4634", + "name": "Casula", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95222000", + "longitude": "150.89949000" + }, + { + "id": "4635", + "name": "Catalina", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.73000000", + "longitude": "150.18494000" + }, + { + "id": "4636", + "name": "Catherine Field", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.00439000", + "longitude": "150.77253000" + }, + { + "id": "4642", + "name": "Caves Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.10637000", + "longitude": "151.64402000" + }, + { + "id": "4643", + "name": "Cecil Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88917000", + "longitude": "150.85137000" + }, + { + "id": "4648", + "name": "Centennial Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89794000", + "longitude": "151.23364000" + }, + { + "id": "4650", + "name": "Central Darling", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.77155000", + "longitude": "143.62569000" + }, + { + "id": "4655", + "name": "Cessnock", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.89391000", + "longitude": "151.21234000" + }, + { + "id": "4657", + "name": "Chain Valley Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.17241000", + "longitude": "151.57143000" + }, + { + "id": "4665", + "name": "Charlestown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.96828000", + "longitude": "151.69318000" + }, + { + "id": "4668", + "name": "Charmhaven", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.22671000", + "longitude": "151.50284000" + }, + { + "id": "4672", + "name": "Chatswood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80000000", + "longitude": "151.18333000" + }, + { + "id": "4673", + "name": "Chatswood West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79402000", + "longitude": "151.16492000" + }, + { + "id": "4683", + "name": "Cherrybrook", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72197000", + "longitude": "151.04607000" + }, + { + "id": "4684", + "name": "Chester Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87896000", + "longitude": "150.99945000" + }, + { + "id": "4688", + "name": "Chifley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96696000", + "longitude": "151.24221000" + }, + { + "id": "4693", + "name": "Chinderah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.25456000", + "longitude": "153.53712000" + }, + { + "id": "4694", + "name": "Chippendale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88673000", + "longitude": "151.19745000" + }, + { + "id": "4695", + "name": "Chipping Norton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91801000", + "longitude": "150.95927000" + }, + { + "id": "4698", + "name": "Chiswick", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84996000", + "longitude": "151.13846000" + }, + { + "id": "4699", + "name": "Chittaway Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.32769000", + "longitude": "151.42971000" + }, + { + "id": "4712", + "name": "City of Sydney", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86778000", + "longitude": "151.20844000" + }, + { + "id": "4719", + "name": "Claremont Meadows", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77587000", + "longitude": "150.75193000" + }, + { + "id": "4723", + "name": "Clarence Town", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.58395000", + "longitude": "151.77757000" + }, + { + "id": "4724", + "name": "Clarence Valley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.69444000", + "longitude": "152.78156000" + }, + { + "id": "4729", + "name": "Claymore", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.04649000", + "longitude": "150.81114000" + }, + { + "id": "4734", + "name": "Clemton Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92616000", + "longitude": "151.10406000" + }, + { + "id": "4745", + "name": "Clontarf", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80554000", + "longitude": "151.25367000" + }, + { + "id": "4746", + "name": "Clovelly", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91214000", + "longitude": "151.25882000" + }, + { + "id": "4752", + "name": "Coal Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.04225000", + "longitude": "151.61159000" + }, + { + "id": "4753", + "name": "Cobar", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.96613000", + "longitude": "145.36063000" + }, + { + "id": "4754", + "name": "Cobbitty", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01592000", + "longitude": "150.67854000" + }, + { + "id": "4763", + "name": "Coffs Harbour", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.17294000", + "longitude": "153.03262000" + }, + { + "id": "4768", + "name": "Coleambally", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.80388000", + "longitude": "145.88036000" + }, + { + "id": "4769", + "name": "Colebee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72769000", + "longitude": "150.84743000" + }, + { + "id": "4770", + "name": "Coledale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.29105000", + "longitude": "150.94470000" + }, + { + "id": "4771", + "name": "Collaroy", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73205000", + "longitude": "151.30118000" + }, + { + "id": "4772", + "name": "Collaroy Plateau", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72884000", + "longitude": "151.29075000" + }, + { + "id": "4779", + "name": "Colo Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.40095000", + "longitude": "150.48573000" + }, + { + "id": "4781", + "name": "Colyton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78283000", + "longitude": "150.79679000" + }, + { + "id": "4782", + "name": "Como", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.99941000", + "longitude": "151.06389000" + }, + { + "id": "4784", + "name": "Concord", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84722000", + "longitude": "151.10381000" + }, + { + "id": "4785", + "name": "Concord West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84809000", + "longitude": "151.08609000" + }, + { + "id": "4786", + "name": "Condell Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92458000", + "longitude": "151.01093000" + }, + { + "id": "4788", + "name": "Condobolin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.08877000", + "longitude": "147.15139000" + }, + { + "id": "4790", + "name": "Coniston", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.45000000", + "longitude": "150.88333000" + }, + { + "id": "4791", + "name": "Connells Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98827000", + "longitude": "151.09094000" + }, + { + "id": "4793", + "name": "Constitution Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79259000", + "longitude": "150.97627000" + }, + { + "id": "4798", + "name": "Coogee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92050000", + "longitude": "151.25522000" + }, + { + "id": "4801", + "name": "Cooks Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.93244000", + "longitude": "151.77114000" + }, + { + "id": "4803", + "name": "Coolah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.82787000", + "longitude": "149.71564000" + }, + { + "id": "4804", + "name": "Coolamon", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.60046000", + "longitude": "147.13707000" + }, + { + "id": "4813", + "name": "Cooma", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.23517000", + "longitude": "149.12408000" + }, + { + "id": "4819", + "name": "Coonabarabran", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.27734000", + "longitude": "149.27904000" + }, + { + "id": "4820", + "name": "Coonamble", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.86714000", + "longitude": "148.29053000" + }, + { + "id": "4823", + "name": "Cooranbong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.07622000", + "longitude": "151.45409000" + }, + { + "id": "4828", + "name": "Cootamundra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.64095000", + "longitude": "148.02838000" + }, + { + "id": "4829", + "name": "Copacabana", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.48692000", + "longitude": "151.43587000" + }, + { + "id": "4832", + "name": "Coraki", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.99260000", + "longitude": "153.28374000" + }, + { + "id": "4835", + "name": "Cordeaux Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.44043000", + "longitude": "150.83748000" + }, + { + "id": "4837", + "name": "Corindi Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.01668000", + "longitude": "153.18555000" + }, + { + "id": "4839", + "name": "Corlette", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.72014000", + "longitude": "152.10846000" + }, + { + "id": "4842", + "name": "Corowa", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.99704000", + "longitude": "146.38552000" + }, + { + "id": "4844", + "name": "Corrimal", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.37864000", + "longitude": "150.90356000" + }, + { + "id": "4849", + "name": "Coutts Crossing", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.82619000", + "longitude": "152.89156000" + }, + { + "id": "4854", + "name": "Cowra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81138000", + "longitude": "148.78346000" + }, + { + "id": "4871", + "name": "Cranebrook", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70610000", + "longitude": "150.70940000" + }, + { + "id": "4875", + "name": "Cremorne", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82679000", + "longitude": "151.22633000" + }, + { + "id": "4876", + "name": "Cremorne Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84008000", + "longitude": "151.22698000" + }, + { + "id": "4877", + "name": "Crescent Head", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.18870000", + "longitude": "152.97301000" + }, + { + "id": "4880", + "name": "Crestwood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.34844000", + "longitude": "149.21758000" + }, + { + "id": "4883", + "name": "Cringila", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.47131000", + "longitude": "150.86755000" + }, + { + "id": "4884", + "name": "Cromer", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73120000", + "longitude": "151.26788000" + }, + { + "id": "4885", + "name": "Cronulla", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.06251000", + "longitude": "151.14961000" + }, + { + "id": "4886", + "name": "Crookwell", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.45925000", + "longitude": "149.47137000" + }, + { + "id": "4887", + "name": "Crows Nest", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82494000", + "longitude": "151.20398000" + }, + { + "id": "4889", + "name": "Croydon", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88333000", + "longitude": "151.11667000" + }, + { + "id": "4899", + "name": "Culburra Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92788000", + "longitude": "150.75766000" + }, + { + "id": "4900", + "name": "Culcairn", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.66669000", + "longitude": "147.03845000" + }, + { + "id": "4901", + "name": "Cumbalum", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.82250000", + "longitude": "153.52840000" + }, + { + "id": "4904", + "name": "Cundletown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.89410000", + "longitude": "152.52141000" + }, + { + "id": "4906", + "name": "Curl Curl", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76886000", + "longitude": "151.28888000" + }, + { + "id": "4910", + "name": "Currans Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.04311000", + "longitude": "150.77301000" + }, + { + "id": "4918", + "name": "Daceyville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92879000", + "longitude": "151.22577000" + }, + { + "id": "4925", + "name": "Dalmeny", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.16608000", + "longitude": "150.12912000" + }, + { + "id": "4933", + "name": "Dapto", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.50386000", + "longitude": "150.79416000" + }, + { + "id": "4940", + "name": "Darling Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87064000", + "longitude": "151.23895000" + }, + { + "id": "4941", + "name": "Darlinghurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87939000", + "longitude": "151.21925000" + }, + { + "id": "4944", + "name": "Darlington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89103000", + "longitude": "151.19548000" + }, + { + "id": "4945", + "name": "Darlington Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.56942000", + "longitude": "145.99870000" + }, + { + "id": "4948", + "name": "Davidson", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74297000", + "longitude": "151.20080000" + }, + { + "id": "4949", + "name": "Davistown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.48559000", + "longitude": "151.36151000" + }, + { + "id": "4958", + "name": "Dean Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73539000", + "longitude": "150.85958000" + }, + { + "id": "4960", + "name": "Dee Why", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75110000", + "longitude": "151.28886000" + }, + { + "id": "4969", + "name": "Denham Court", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98307000", + "longitude": "150.84606000" + }, + { + "id": "4970", + "name": "Deniliquin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.53245000", + "longitude": "144.95364000" + }, + { + "id": "4971", + "name": "Denistone", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79835000", + "longitude": "151.09051000" + }, + { + "id": "4972", + "name": "Denistone East", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79600000", + "longitude": "151.09740000" + }, + { + "id": "4973", + "name": "Denman", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.38788000", + "longitude": "150.68935000" + }, + { + "id": "4985", + "name": "Dharruk", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74814000", + "longitude": "150.81561000" + }, + { + "id": "5000", + "name": "Dolls Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.99341000", + "longitude": "151.14474000" + }, + { + "id": "5011", + "name": "Doonside", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76667000", + "longitude": "150.86667000" + }, + { + "id": "5012", + "name": "Dora Creek", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.08139000", + "longitude": "151.49677000" + }, + { + "id": "5014", + "name": "Dorrigo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.34112000", + "longitude": "152.71394000" + }, + { + "id": "5016", + "name": "Double Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87782000", + "longitude": "151.24354000" + }, + { + "id": "5019", + "name": "Douglas Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.18496000", + "longitude": "150.71449000" + }, + { + "id": "5021", + "name": "Dover Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87083000", + "longitude": "151.27917000" + }, + { + "id": "5031", + "name": "Drummoyne", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85237000", + "longitude": "151.15491000" + }, + { + "id": "5033", + "name": "Dubbo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.24295000", + "longitude": "148.60484000" + }, + { + "id": "5034", + "name": "Dudley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.99373000", + "longitude": "151.72197000" + }, + { + "id": "5038", + "name": "Dulwich Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90410000", + "longitude": "151.13945000" + }, + { + "id": "5042", + "name": "Dundas Valley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78826000", + "longitude": "151.05261000" + }, + { + "id": "5044", + "name": "Dunedoo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.01634000", + "longitude": "149.38710000" + }, + { + "id": "5045", + "name": "Dungog", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.34619000", + "longitude": "151.61122000" + }, + { + "id": "5050", + "name": "Dural", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68333000", + "longitude": "151.01667000" + }, + { + "id": "5056", + "name": "Eagle Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03747000", + "longitude": "150.81360000" + }, + { + "id": "5061", + "name": "Earlwood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92090000", + "longitude": "151.12506000" + }, + { + "id": "5062", + "name": "East Albury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.08144000", + "longitude": "146.92991000" + }, + { + "id": "5065", + "name": "East Ballina", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.85709000", + "longitude": "153.58736000" + }, + { + "id": "5067", + "name": "East Branxton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.65372000", + "longitude": "151.36559000" + }, + { + "id": "5072", + "name": "East Corrimal", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.37606000", + "longitude": "150.91078000" + }, + { + "id": "5077", + "name": "East Gosford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.43874000", + "longitude": "151.35338000" + }, + { + "id": "5078", + "name": "East Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96099000", + "longitude": "150.98822000" + }, + { + "id": "5081", + "name": "East Jindabyne", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.39579000", + "longitude": "148.65137000" + }, + { + "id": "5082", + "name": "East Kempsey", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.08242000", + "longitude": "152.85253000" + }, + { + "id": "5083", + "name": "East Killara", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75535000", + "longitude": "151.18154000" + }, + { + "id": "5084", + "name": "East Kurrajong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.50550000", + "longitude": "150.79427000" + }, + { + "id": "5086", + "name": "East Lindfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76664000", + "longitude": "151.18685000" + }, + { + "id": "5087", + "name": "East Lismore", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.82591000", + "longitude": "153.28880000" + }, + { + "id": "5089", + "name": "East Maitland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.75000000", + "longitude": "151.58333000" + }, + { + "id": "5093", + "name": "East Ryde", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81031000", + "longitude": "151.13153000" + }, + { + "id": "5095", + "name": "East Tamworth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.08548000", + "longitude": "150.93721000" + }, + { + "id": "5099", + "name": "Eastlakes", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93196000", + "longitude": "151.21214000" + }, + { + "id": "5100", + "name": "Eastwood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79176000", + "longitude": "151.08057000" + }, + { + "id": "5105", + "name": "Eden", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.06675000", + "longitude": "149.90029000" + }, + { + "id": "5110", + "name": "Edensor Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87971000", + "longitude": "150.87778000" + }, + { + "id": "5112", + "name": "Edgecliff", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87952000", + "longitude": "151.23677000" + }, + { + "id": "5114", + "name": "Edgeworth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.92508000", + "longitude": "151.61612000" + }, + { + "id": "5116", + "name": "Edmondson Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95695000", + "longitude": "150.86134000" + }, + { + "id": "5119", + "name": "Eglinton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.37731000", + "longitude": "149.54654000" + }, + { + "id": "5124", + "name": "Elanora Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70159000", + "longitude": "151.27965000" + }, + { + "id": "5125", + "name": "Elderslie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05519000", + "longitude": "150.71367000" + }, + { + "id": "5126", + "name": "Eleebana", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.98960000", + "longitude": "151.63642000" + }, + { + "id": "5127", + "name": "Elermore Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.91621000", + "longitude": "151.67665000" + }, + { + "id": "5130", + "name": "Elizabeth Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87181000", + "longitude": "151.22706000" + }, + { + "id": "5134", + "name": "Elizabeth Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89863000", + "longitude": "150.84761000" + }, + { + "id": "5139", + "name": "Ellalong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.91507000", + "longitude": "151.31161000" + }, + { + "id": "5152", + "name": "Emerald Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.16388000", + "longitude": "153.18190000" + }, + { + "id": "5153", + "name": "Emerton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74411000", + "longitude": "150.80644000" + }, + { + "id": "5154", + "name": "Empire Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.49385000", + "longitude": "151.36290000" + }, + { + "id": "5155", + "name": "Emu Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73453000", + "longitude": "150.64874000" + }, + { + "id": "5157", + "name": "Emu Plains", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75000000", + "longitude": "150.66667000" + }, + { + "id": "5161", + "name": "Engadine", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.06564000", + "longitude": "151.01266000" + }, + { + "id": "5162", + "name": "Enmore", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90050000", + "longitude": "151.17314000" + }, + { + "id": "5165", + "name": "Epping", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77271000", + "longitude": "151.08184000" + }, + { + "id": "5167", + "name": "Erina", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.43218000", + "longitude": "151.38972000" + }, + { + "id": "5169", + "name": "Ermington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81483000", + "longitude": "151.05467000" + }, + { + "id": "5171", + "name": "Erskine Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81301000", + "longitude": "150.79773000" + }, + { + "id": "5172", + "name": "Erskineville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90254000", + "longitude": "151.18579000" + }, + { + "id": "5173", + "name": "Eschol Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.02982000", + "longitude": "150.80957000" + }, + { + "id": "5180", + "name": "Estella", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.07254000", + "longitude": "147.35748000" + }, + { + "id": "5183", + "name": "Ettalong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.51301000", + "longitude": "151.33830000" + }, + { + "id": "5184", + "name": "Ettalong Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.51058000", + "longitude": "151.33044000" + }, + { + "id": "5186", + "name": "Eulomogo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.26667000", + "longitude": "148.68333000" + }, + { + "id": "5190", + "name": "Eurobodalla", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.93307000", + "longitude": "149.92780000" + }, + { + "id": "5193", + "name": "Evans Head", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.11777000", + "longitude": "153.43072000" + }, + { + "id": "5206", + "name": "Fairfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86742000", + "longitude": "150.90105000" + }, + { + "id": "5208", + "name": "Fairfield East", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86938000", + "longitude": "150.97129000" + }, + { + "id": "5209", + "name": "Fairfield Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86445000", + "longitude": "150.93884000" + }, + { + "id": "5210", + "name": "Fairfield West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86670000", + "longitude": "150.91700000" + }, + { + "id": "5211", + "name": "Fairlight", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79575000", + "longitude": "151.27346000" + }, + { + "id": "5213", + "name": "Fairy Meadow", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.39303000", + "longitude": "150.89275000" + }, + { + "id": "5217", + "name": "Farmborough Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.45499000", + "longitude": "150.81308000" + }, + { + "id": "5220", + "name": "Faulconbridge", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70000000", + "longitude": "150.53333000" + }, + { + "id": "5223", + "name": "Fennell Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.99220000", + "longitude": "151.60008000" + }, + { + "id": "5224", + "name": "Fern Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.86428000", + "longitude": "151.81307000" + }, + { + "id": "5225", + "name": "Fern Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.38294000", + "longitude": "150.88567000" + }, + { + "id": "5234", + "name": "Figtree", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.43556000", + "longitude": "150.85833000" + }, + { + "id": "5236", + "name": "Fingal Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.74969000", + "longitude": "152.17104000" + }, + { + "id": "5237", + "name": "Finley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.65498000", + "longitude": "145.57106000" + }, + { + "id": "5244", + "name": "Five Dock", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86740000", + "longitude": "151.12905000" + }, + { + "id": "5247", + "name": "Fletcher", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.87232000", + "longitude": "151.64008000" + }, + { + "id": "5248", + "name": "Flinders", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.58333000", + "longitude": "150.85516000" + }, + { + "id": "5255", + "name": "Floraville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.01116000", + "longitude": "151.66480000" + }, + { + "id": "5260", + "name": "Forbes", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.37898000", + "longitude": "147.86448000" + }, + { + "id": "5263", + "name": "Forest Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.14810000", + "longitude": "147.46707000" + }, + { + "id": "5266", + "name": "Forest Lodge", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88137000", + "longitude": "151.18000000" + }, + { + "id": "5269", + "name": "Forestville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76667000", + "longitude": "151.20833000" + }, + { + "id": "5272", + "name": "Forresters Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.40700000", + "longitude": "151.47600000" + }, + { + "id": "5274", + "name": "Forster", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.18136000", + "longitude": "152.51715000" + }, + { + "id": "5286", + "name": "Frederickton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.03749000", + "longitude": "152.87530000" + }, + { + "id": "5288", + "name": "Freemans Reach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.55794000", + "longitude": "150.79553000" + }, + { + "id": "5290", + "name": "Frenchs Forest", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74821000", + "longitude": "151.22322000" + }, + { + "id": "5292", + "name": "Freshwater", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77867000", + "longitude": "151.28569000" + }, + { + "id": "5300", + "name": "Galston", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.65297000", + "longitude": "151.04713000" + }, + { + "id": "5304", + "name": "Garden Suburb", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.94368000", + "longitude": "151.68085000" + }, + { + "id": "5307", + "name": "Gateshead", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.98208000", + "longitude": "151.69188000" + }, + { + "id": "5325", + "name": "Georges Hall", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90879000", + "longitude": "150.98852000" + }, + { + "id": "5326", + "name": "Georgetown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90810000", + "longitude": "151.73119000" + }, + { + "id": "5329", + "name": "Gerringong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.74702000", + "longitude": "150.82809000" + }, + { + "id": "5332", + "name": "Gilgandra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.63297000", + "longitude": "148.70354000" + }, + { + "id": "5335", + "name": "Gillieston Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.76164000", + "longitude": "151.52863000" + }, + { + "id": "5341", + "name": "Girards Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.81693000", + "longitude": "153.27786000" + }, + { + "id": "5342", + "name": "Girraween", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79900000", + "longitude": "150.94300000" + }, + { + "id": "5346", + "name": "Gladesville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83333000", + "longitude": "151.13333000" + }, + { + "id": "5353", + "name": "Glebe", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87884000", + "longitude": "151.18426000" + }, + { + "id": "5354", + "name": "Glen Alpine", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.08600000", + "longitude": "150.78512000" + }, + { + "id": "5359", + "name": "Glen Innes", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.73485000", + "longitude": "151.73850000" + }, + { + "id": "5360", + "name": "Glen Innes Severn", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.63116000", + "longitude": "151.93957000" + }, + { + "id": "5366", + "name": "Glenbrook", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76667000", + "longitude": "150.61667000" + }, + { + "id": "5367", + "name": "Glendale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.93194000", + "longitude": "151.64103000" + }, + { + "id": "5369", + "name": "Glendenning", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74830000", + "longitude": "150.85411000" + }, + { + "id": "5378", + "name": "Glenfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96667000", + "longitude": "150.90000000" + }, + { + "id": "5379", + "name": "Glenfield Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.13725000", + "longitude": "147.33285000" + }, + { + "id": "5382", + "name": "Glenhaven", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70000000", + "longitude": "151.00000000" + }, + { + "id": "5383", + "name": "Glenmore Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79068000", + "longitude": "150.66930000" + }, + { + "id": "5384", + "name": "Glenning Valley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.35369000", + "longitude": "151.42623000" + }, + { + "id": "5386", + "name": "Glenorie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.60177000", + "longitude": "151.00886000" + }, + { + "id": "5388", + "name": "Glenroy", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.05021000", + "longitude": "146.91058000" + }, + { + "id": "5393", + "name": "Glenwood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73333000", + "longitude": "150.93284000" + }, + { + "id": "5394", + "name": "Glossodia", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.53618000", + "longitude": "150.77390000" + }, + { + "id": "5395", + "name": "Gloucester", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.00770000", + "longitude": "151.96330000" + }, + { + "id": "5399", + "name": "Gol Gol", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.17388000", + "longitude": "142.22187000" + }, + { + "id": "5411", + "name": "Googong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.43873000", + "longitude": "149.21310000" + }, + { + "id": "5416", + "name": "Goonellabah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.81667000", + "longitude": "153.31667000" + }, + { + "id": "5418", + "name": "Gordon", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75535000", + "longitude": "151.15115000" + }, + { + "id": "5423", + "name": "Gorokan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.25764000", + "longitude": "151.50970000" + }, + { + "id": "5424", + "name": "Gosford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.42440000", + "longitude": "151.34399000" + }, + { + "id": "5426", + "name": "Goulburn", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.75155000", + "longitude": "149.72086000" + }, + { + "id": "5427", + "name": "Goulburn Mulwaree", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90250000", + "longitude": "149.90200000" + }, + { + "id": "5434", + "name": "Grafton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.68104000", + "longitude": "152.93394000" + }, + { + "id": "5439", + "name": "Granville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84060000", + "longitude": "151.00748000" + }, + { + "id": "5442", + "name": "Grasmere", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05392000", + "longitude": "150.66602000" + }, + { + "id": "5444", + "name": "Grays Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05873000", + "longitude": "151.08604000" + }, + { + "id": "5448", + "name": "Greater Hume Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.75837000", + "longitude": "147.19731000" + }, + { + "id": "5450", + "name": "Green Valley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90292000", + "longitude": "150.86713000" + }, + { + "id": "5451", + "name": "Greenacre", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90034000", + "longitude": "151.05563000" + }, + { + "id": "5454", + "name": "Greenfield Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87461000", + "longitude": "150.89189000" + }, + { + "id": "5462", + "name": "Greenwell Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90751000", + "longitude": "150.73113000" + }, + { + "id": "5463", + "name": "Greenwich", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83954000", + "longitude": "151.18300000" + }, + { + "id": "5466", + "name": "Gregory Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.02673000", + "longitude": "150.77070000" + }, + { + "id": "5467", + "name": "Grenfell", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89549000", + "longitude": "148.16438000" + }, + { + "id": "5468", + "name": "Greta", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.67783000", + "longitude": "151.38924000" + }, + { + "id": "5469", + "name": "Greystanes", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82346000", + "longitude": "150.94607000" + }, + { + "id": "5471", + "name": "Griffith", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.33448000", + "longitude": "146.02295000" + }, + { + "id": "5473", + "name": "Grose Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.58331000", + "longitude": "150.67440000" + }, + { + "id": "5476", + "name": "Guildford West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84939000", + "longitude": "150.96475000" + }, + { + "id": "5478", + "name": "Gulgong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.36253000", + "longitude": "149.53201000" + }, + { + "id": "5480", + "name": "Gulmarrad", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.48700000", + "longitude": "153.23341000" + }, + { + "id": "5483", + "name": "Gundagai", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02623000", + "longitude": "148.13457000" + }, + { + "id": "5484", + "name": "Gundaroo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.03333000", + "longitude": "149.25000000" + }, + { + "id": "5487", + "name": "Gunnedah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.02404000", + "longitude": "150.11548000" + }, + { + "id": "5488", + "name": "Guyra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.21680000", + "longitude": "151.66785000" + }, + { + "id": "5489", + "name": "Gwandalan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.13538000", + "longitude": "151.58285000" + }, + { + "id": "5491", + "name": "Gwydir", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.49806000", + "longitude": "150.53813000" + }, + { + "id": "5492", + "name": "Gwynneville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.41667000", + "longitude": "150.88750000" + }, + { + "id": "5493", + "name": "Gymea", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03637000", + "longitude": "151.08528000" + }, + { + "id": "5494", + "name": "Gymea Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05209000", + "longitude": "151.08795000" + }, + { + "id": "5497", + "name": "Haberfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88296000", + "longitude": "151.14389000" + }, + { + "id": "5505", + "name": "Halekulani", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.21914000", + "longitude": "151.55251000" + }, + { + "id": "5512", + "name": "Hamilton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.92207000", + "longitude": "151.74711000" + }, + { + "id": "5516", + "name": "Hamlyn Terrace", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.25125000", + "longitude": "151.47627000" + }, + { + "id": "5518", + "name": "Hammondville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94827000", + "longitude": "150.95211000" + }, + { + "id": "5524", + "name": "Hanwood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.33095000", + "longitude": "146.04137000" + }, + { + "id": "5527", + "name": "Harrington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88306000", + "longitude": "152.65924000" + }, + { + "id": "5528", + "name": "Harrington Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.02405000", + "longitude": "150.73501000" + }, + { + "id": "5529", + "name": "Harris Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82285000", + "longitude": "151.00781000" + }, + { + "id": "5534", + "name": "Hassall Grove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73349000", + "longitude": "150.83542000" + }, + { + "id": "5539", + "name": "Hawkesbury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.34078000", + "longitude": "150.78300000" + }, + { + "id": "5540", + "name": "Hawks Nest", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.66755000", + "longitude": "152.17831000" + }, + { + "id": "5547", + "name": "Hay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.54276000", + "longitude": "144.83826000" + }, + { + "id": "5550", + "name": "Haymarket", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87868000", + "longitude": "151.20526000" + }, + { + "id": "5551", + "name": "Hazelbrook", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72446000", + "longitude": "150.45839000" + }, + { + "id": "5556", + "name": "Heathcote", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.08410000", + "longitude": "151.01305000" + }, + { + "id": "5563", + "name": "Hebersham", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74582000", + "longitude": "150.82385000" + }, + { + "id": "5564", + "name": "Heckenberg", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90828000", + "longitude": "150.88982000" + }, + { + "id": "5566", + "name": "Heddon Greta", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.80204000", + "longitude": "151.51327000" + }, + { + "id": "5571", + "name": "Helensburgh", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.17836000", + "longitude": "150.99522000" + }, + { + "id": "5579", + "name": "Henty", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.52094000", + "longitude": "147.03426000" + }, + { + "id": "5604", + "name": "Hill Top", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.34792000", + "longitude": "150.49550000" + }, + { + "id": "5611", + "name": "Hillsdale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95151000", + "longitude": "151.22784000" + }, + { + "id": "5613", + "name": "Hillston", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.48266000", + "longitude": "145.53525000" + }, + { + "id": "5614", + "name": "Hillvue", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.12756000", + "longitude": "150.90711000" + }, + { + "id": "5617", + "name": "Hinchinbrook", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91878000", + "longitude": "150.86314000" + }, + { + "id": "5623", + "name": "Hobartville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.60435000", + "longitude": "150.74299000" + }, + { + "id": "5627", + "name": "Holbrook", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.72100000", + "longitude": "147.31605000" + }, + { + "id": "5635", + "name": "Holmesville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.91667000", + "longitude": "151.58333000" + }, + { + "id": "5637", + "name": "Holroyd", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83078000", + "longitude": "150.99725000" + }, + { + "id": "5638", + "name": "Holsworthy", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98333000", + "longitude": "150.96667000" + }, + { + "id": "5642", + "name": "Homebush", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86667000", + "longitude": "151.08333000" + }, + { + "id": "5643", + "name": "Homebush West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86269000", + "longitude": "151.06696000" + }, + { + "id": "5648", + "name": "Horningsea Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94341000", + "longitude": "150.84528000" + }, + { + "id": "5649", + "name": "Hornsby", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70244000", + "longitude": "151.09931000" + }, + { + "id": "5650", + "name": "Hornsby Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.67130000", + "longitude": "151.09428000" + }, + { + "id": "5651", + "name": "Hornsby Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.58315000", + "longitude": "151.10953000" + }, + { + "id": "5653", + "name": "Horsley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.48763000", + "longitude": "150.77799000" + }, + { + "id": "5654", + "name": "Horsley Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84322000", + "longitude": "150.84889000" + }, + { + "id": "5659", + "name": "Howlong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.98197000", + "longitude": "146.63248000" + }, + { + "id": "5661", + "name": "Hoxton Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93126000", + "longitude": "150.85412000" + }, + { + "id": "5667", + "name": "Hunters Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83437000", + "longitude": "151.14510000" + }, + { + "id": "5668", + "name": "Hunterview", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.54343000", + "longitude": "151.17717000" + }, + { + "id": "5675", + "name": "Hurlstone Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90988000", + "longitude": "151.12867000" + }, + { + "id": "5677", + "name": "Hurstville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96770000", + "longitude": "151.10149000" + }, + { + "id": "5678", + "name": "Hurstville Grove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97993000", + "longitude": "151.09029000" + }, + { + "id": "5682", + "name": "Illawong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.00000000", + "longitude": "151.03333000" + }, + { + "id": "5684", + "name": "Iluka", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.40147000", + "longitude": "153.35112000" + }, + { + "id": "5691", + "name": "Ingleburn", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.00000000", + "longitude": "150.86667000" + }, + { + "id": "5697", + "name": "Inverell", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.31526000", + "longitude": "151.04187000" + }, + { + "id": "5709", + "name": "Islington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.91388000", + "longitude": "151.74739000" + }, + { + "id": "5716", + "name": "Jamberoo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.64745000", + "longitude": "150.77464000" + }, + { + "id": "5719", + "name": "Jamisontown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76797000", + "longitude": "150.67681000" + }, + { + "id": "5724", + "name": "Jannali", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01643000", + "longitude": "151.06065000" + }, + { + "id": "5727", + "name": "Jerilderie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.35757000", + "longitude": "145.72962000" + }, + { + "id": "5728", + "name": "Jerrabomberra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.38441000", + "longitude": "149.20248000" + }, + { + "id": "5730", + "name": "Jesmond", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90275000", + "longitude": "151.69072000" + }, + { + "id": "5731", + "name": "Jewells", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.01386000", + "longitude": "151.68308000" + }, + { + "id": "5732", + "name": "Jilliby", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.22605000", + "longitude": "151.41684000" + }, + { + "id": "5734", + "name": "Jindabyne", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.41745000", + "longitude": "148.62254000" + }, + { + "id": "5737", + "name": "Jindera", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.95474000", + "longitude": "146.88852000" + }, + { + "id": "5743", + "name": "Jordan Springs", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72138000", + "longitude": "150.72873000" + }, + { + "id": "5748", + "name": "Junction Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.64113000", + "longitude": "152.92491000" + }, + { + "id": "5750", + "name": "Junee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86819000", + "longitude": "147.58273000" + }, + { + "id": "5754", + "name": "Kahibah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.96175000", + "longitude": "151.71251000" + }, + { + "id": "5772", + "name": "Kanahooka", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.49160000", + "longitude": "150.80817000" + }, + { + "id": "5773", + "name": "Kandos", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.85772000", + "longitude": "149.96832000" + }, + { + "id": "5779", + "name": "Kanwal", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.25300000", + "longitude": "151.49110000" + }, + { + "id": "5780", + "name": "Kapooka", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.15693000", + "longitude": "147.28439000" + }, + { + "id": "5782", + "name": "Karabar", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.37595000", + "longitude": "149.23280000" + }, + { + "id": "5788", + "name": "Kareela", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01336000", + "longitude": "151.08345000" + }, + { + "id": "5789", + "name": "Kariong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.43972000", + "longitude": "151.29453000" + }, + { + "id": "5794", + "name": "Karuah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.65389000", + "longitude": "151.96040000" + }, + { + "id": "5800", + "name": "Katoomba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71977000", + "longitude": "150.30739000" + }, + { + "id": "5805", + "name": "Kearns", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.02191000", + "longitude": "150.80082000" + }, + { + "id": "5812", + "name": "Keiraville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.41667000", + "longitude": "150.86667000" + }, + { + "id": "5815", + "name": "Kellyville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71028000", + "longitude": "150.95095000" + }, + { + "id": "5816", + "name": "Kellyville Ridge", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70156000", + "longitude": "150.91790000" + }, + { + "id": "5818", + "name": "Kelso", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.41667000", + "longitude": "149.60000000" + }, + { + "id": "5821", + "name": "Kemps Creek", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88059000", + "longitude": "150.78761000" + }, + { + "id": "5822", + "name": "Kempsey", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.90553000", + "longitude": "152.68608000" + }, + { + "id": "5823", + "name": "Kendall", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.63295000", + "longitude": "152.70393000" + }, + { + "id": "5828", + "name": "Kensington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92019000", + "longitude": "151.22241000" + }, + { + "id": "5834", + "name": "Kenthurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.65527000", + "longitude": "151.00503000" + }, + { + "id": "5842", + "name": "Kew", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.63602000", + "longitude": "152.72662000" + }, + { + "id": "5848", + "name": "Kiama", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.67124000", + "longitude": "150.84572000" + }, + { + "id": "5849", + "name": "Kiama Downs", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.63341000", + "longitude": "150.85456000" + }, + { + "id": "5852", + "name": "Kilaben Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.02395000", + "longitude": "151.59197000" + }, + { + "id": "5856", + "name": "Killara", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76604000", + "longitude": "151.16213000" + }, + { + "id": "5857", + "name": "Killarney Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77451000", + "longitude": "151.22028000" + }, + { + "id": "5858", + "name": "Killarney Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.36319000", + "longitude": "151.45799000" + }, + { + "id": "5864", + "name": "King Creek", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.49237000", + "longitude": "152.75658000" + }, + { + "id": "5871", + "name": "Kings Langley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75005000", + "longitude": "150.93542000" + }, + { + "id": "5873", + "name": "Kings Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74320000", + "longitude": "150.90761000" + }, + { + "id": "5876", + "name": "Kingscliff", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.25983000", + "longitude": "153.57816000" + }, + { + "id": "5878", + "name": "Kingsford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92399000", + "longitude": "151.22749000" + }, + { + "id": "5879", + "name": "Kingsgrove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93932000", + "longitude": "151.09928000" + }, + { + "id": "5890", + "name": "Kingswood Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76651000", + "longitude": "150.71440000" + }, + { + "id": "5894", + "name": "Kirrawee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03831000", + "longitude": "151.06903000" + }, + { + "id": "5895", + "name": "Kirribilli", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84867000", + "longitude": "151.21620000" + }, + { + "id": "5901", + "name": "Kogarah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96810000", + "longitude": "151.13564000" + }, + { + "id": "5902", + "name": "Kogarah Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97951000", + "longitude": "151.12119000" + }, + { + "id": "5906", + "name": "Koonawarra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.50212000", + "longitude": "150.80855000" + }, + { + "id": "5911", + "name": "Kooringal", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.14069000", + "longitude": "147.37680000" + }, + { + "id": "5912", + "name": "Kootingal", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.05857000", + "longitude": "151.05350000" + }, + { + "id": "5914", + "name": "Korora", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.24620000", + "longitude": "153.11487000" + }, + { + "id": "5916", + "name": "Kosciuszko National Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.26436000", + "longitude": "148.48179000" + }, + { + "id": "5917", + "name": "Kotara", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.94282000", + "longitude": "151.69585000" + }, + { + "id": "5918", + "name": "Kotara South", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.95261000", + "longitude": "151.69076000" + }, + { + "id": "5920", + "name": "Ku-ring-gai", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72701000", + "longitude": "151.14877000" + }, + { + "id": "5926", + "name": "Kurnell", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01088000", + "longitude": "151.20512000" + }, + { + "id": "5927", + "name": "Kurraba Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84235000", + "longitude": "151.22256000" + }, + { + "id": "5928", + "name": "Kurrajong Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.52772000", + "longitude": "150.62907000" + }, + { + "id": "5930", + "name": "Kurri Kurri", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.81933000", + "longitude": "151.47908000" + }, + { + "id": "5935", + "name": "Kyle Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98787000", + "longitude": "151.09939000" + }, + { + "id": "5937", + "name": "Kyogle", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.64643000", + "longitude": "152.77871000" + }, + { + "id": "5939", + "name": "Lachlan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.79999000", + "longitude": "146.87556000" + }, + { + "id": "5941", + "name": "Lake Albert", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.16667000", + "longitude": "147.38333000" + }, + { + "id": "5942", + "name": "Lake Cargelligo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.29884000", + "longitude": "146.37296000" + }, + { + "id": "5943", + "name": "Lake Cathie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.55183000", + "longitude": "152.85465000" + }, + { + "id": "5946", + "name": "Lake Haven", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.24303000", + "longitude": "151.50434000" + }, + { + "id": "5947", + "name": "Lake Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.48433000", + "longitude": "150.86649000" + }, + { + "id": "5948", + "name": "Lake Illawarra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.54658000", + "longitude": "150.85645000" + }, + { + "id": "5950", + "name": "Lake Macquarie Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.03756000", + "longitude": "151.53470000" + }, + { + "id": "5951", + "name": "Lake Munmorah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.19716000", + "longitude": "151.58240000" + }, + { + "id": "5954", + "name": "Lakelands", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.96185000", + "longitude": "151.64972000" + }, + { + "id": "5955", + "name": "Lakemba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91972000", + "longitude": "151.07592000" + }, + { + "id": "5957", + "name": "Lakewood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.63210000", + "longitude": "152.75820000" + }, + { + "id": "5959", + "name": "Lalor Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76090000", + "longitude": "150.93123000" + }, + { + "id": "5960", + "name": "Lambton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.91667000", + "longitude": "151.70000000" + }, + { + "id": "5966", + "name": "Lane Cove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82321000", + "longitude": "151.17028000" + }, + { + "id": "5967", + "name": "Lane Cove North", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80543000", + "longitude": "151.16638000" + }, + { + "id": "5968", + "name": "Lane Cove West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81613000", + "longitude": "151.15145000" + }, + { + "id": "5973", + "name": "Lansvale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90073000", + "longitude": "150.95078000" + }, + { + "id": "5976", + "name": "Largs", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.70000000", + "longitude": "151.60000000" + }, + { + "id": "5990", + "name": "Lavington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.03976000", + "longitude": "146.93958000" + }, + { + "id": "5992", + "name": "Lawrence", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.49210000", + "longitude": "153.09689000" + }, + { + "id": "5993", + "name": "Lawson", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72064000", + "longitude": "150.42975000" + }, + { + "id": "5999", + "name": "Leeton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.52967000", + "longitude": "146.26918000" + }, + { + "id": "6002", + "name": "Leichhardt", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88341000", + "longitude": "151.15625000" + }, + { + "id": "6004", + "name": "Lemon Tree Passage", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.73047000", + "longitude": "152.03859000" + }, + { + "id": "6006", + "name": "Lennox Head", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.79131000", + "longitude": "153.59201000" + }, + { + "id": "6007", + "name": "Leonay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76542000", + "longitude": "150.64806000" + }, + { + "id": "6011", + "name": "Leppington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96983000", + "longitude": "150.79675000" + }, + { + "id": "6014", + "name": "Lethbridge Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73716000", + "longitude": "150.80042000" + }, + { + "id": "6015", + "name": "Leumeah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05000000", + "longitude": "150.83333000" + }, + { + "id": "6016", + "name": "Leura", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71667000", + "longitude": "150.33333000" + }, + { + "id": "6017", + "name": "Lewisham", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89719000", + "longitude": "151.14883000" + }, + { + "id": "6019", + "name": "Liberty Grove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84095000", + "longitude": "151.08402000" + }, + { + "id": "6020", + "name": "Lidcombe", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86436000", + "longitude": "151.03970000" + }, + { + "id": "6022", + "name": "Lightning Ridge", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.42743000", + "longitude": "147.97865000" + }, + { + "id": "6023", + "name": "Lilli Pilli", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.06830000", + "longitude": "151.11574000" + }, + { + "id": "6025", + "name": "Lilyfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87499000", + "longitude": "151.16530000" + }, + { + "id": "6027", + "name": "Lindfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78333000", + "longitude": "151.16667000" + }, + { + "id": "6029", + "name": "Lisarow", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.38333000", + "longitude": "151.36667000" + }, + { + "id": "6030", + "name": "Lismore", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.81354000", + "longitude": "153.27730000" + }, + { + "id": "6031", + "name": "Lismore Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.80102000", + "longitude": "153.30048000" + }, + { + "id": "6032", + "name": "Lismore Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.80000000", + "longitude": "153.26667000" + }, + { + "id": "6034", + "name": "Lithgow", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.32025000", + "longitude": "150.18584000" + }, + { + "id": "6035", + "name": "Little Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97899000", + "longitude": "151.24299000" + }, + { + "id": "6040", + "name": "Liverpool", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92418000", + "longitude": "150.91232000" + }, + { + "id": "6041", + "name": "Liverpool Plains", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.47024000", + "longitude": "150.42001000" + }, + { + "id": "6042", + "name": "Llanarth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.39687000", + "longitude": "149.55105000" + }, + { + "id": "6043", + "name": "Llandilo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71286000", + "longitude": "150.74650000" + }, + { + "id": "6045", + "name": "Lockhart", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.32193000", + "longitude": "146.79354000" + }, + { + "id": "6052", + "name": "Loftus", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.04467000", + "longitude": "151.04646000" + }, + { + "id": "6060", + "name": "Londonderry", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.64656000", + "longitude": "150.73515000" + }, + { + "id": "6061", + "name": "Long Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.70833000", + "longitude": "150.24483000" + }, + { + "id": "6063", + "name": "Long Jetty", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.35917000", + "longitude": "151.48834000" + }, + { + "id": "6067", + "name": "Longueville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83285000", + "longitude": "151.16531000" + }, + { + "id": "6069", + "name": "Lorn", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.72701000", + "longitude": "151.57245000" + }, + { + "id": "6083", + "name": "Luddenham", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87850000", + "longitude": "150.68863000" + }, + { + "id": "6085", + "name": "Lugarno", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98267000", + "longitude": "151.04184000" + }, + { + "id": "6086", + "name": "Lurnea", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93539000", + "longitude": "150.89673000" + }, + { + "id": "6107", + "name": "Macksville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.70780000", + "longitude": "152.92029000" + }, + { + "id": "6108", + "name": "Maclean", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.45810000", + "longitude": "153.19753000" + }, + { + "id": "6111", + "name": "Macmasters Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.49663000", + "longitude": "151.42215000" + }, + { + "id": "6113", + "name": "Macquarie Fields", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.99206000", + "longitude": "150.89307000" + }, + { + "id": "6114", + "name": "Macquarie Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.95111000", + "longitude": "151.64461000" + }, + { + "id": "6115", + "name": "Macquarie Links", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98454000", + "longitude": "150.87027000" + }, + { + "id": "6116", + "name": "Macquarie Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78105000", + "longitude": "151.12757000" + }, + { + "id": "6129", + "name": "Maitland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.73308000", + "longitude": "151.55740000" + }, + { + "id": "6131", + "name": "Maitland city centre", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.73263000", + "longitude": "151.55331000" + }, + { + "id": "6130", + "name": "Maitland Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.73333000", + "longitude": "151.55000000" + }, + { + "id": "6132", + "name": "Malabar", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96216000", + "longitude": "151.24796000" + }, + { + "id": "6139", + "name": "Malua Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.79382000", + "longitude": "150.22833000" + }, + { + "id": "6145", + "name": "Mangerton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.43667000", + "longitude": "150.87167000" + }, + { + "id": "6148", + "name": "Manilla", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.74748000", + "longitude": "150.71974000" + }, + { + "id": "6151", + "name": "Manly", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79798000", + "longitude": "151.28826000" + }, + { + "id": "6152", + "name": "Manly Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78457000", + "longitude": "151.26200000" + }, + { + "id": "6154", + "name": "Mannering Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.15810000", + "longitude": "151.53477000" + }, + { + "id": "6169", + "name": "Maraylya", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.59221000", + "longitude": "150.91979000" + }, + { + "id": "6170", + "name": "Marayong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74824000", + "longitude": "150.89272000" + }, + { + "id": "6174", + "name": "Mardi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.29368000", + "longitude": "151.40150000" + }, + { + "id": "6183", + "name": "Marks Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.05645000", + "longitude": "151.64955000" + }, + { + "id": "6190", + "name": "Maroubra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95000000", + "longitude": "151.23333000" + }, + { + "id": "6192", + "name": "Marrickville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90741000", + "longitude": "151.15546000" + }, + { + "id": "6194", + "name": "Marsfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77784000", + "longitude": "151.10574000" + }, + { + "id": "6196", + "name": "Marulan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.70836000", + "longitude": "150.00966000" + }, + { + "id": "6199", + "name": "Maryland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.87888000", + "longitude": "151.66143000" + }, + { + "id": "6200", + "name": "Maryville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.91121000", + "longitude": "151.75543000" + }, + { + "id": "6201", + "name": "Mascot", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92598000", + "longitude": "151.19347000" + }, + { + "id": "6203", + "name": "Matraville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96344000", + "longitude": "151.23195000" + }, + { + "id": "6208", + "name": "Mayfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.89793000", + "longitude": "151.73613000" + }, + { + "id": "6209", + "name": "Mayfield East", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90031000", + "longitude": "151.74972000" + }, + { + "id": "6210", + "name": "Mayfield West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.89195000", + "longitude": "151.72711000" + }, + { + "id": "6216", + "name": "McGraths Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.61551000", + "longitude": "150.83372000" + }, + { + "id": "6223", + "name": "McMahons Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84492000", + "longitude": "151.20307000" + }, + { + "id": "6226", + "name": "Meadowbank", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81668000", + "longitude": "151.08861000" + }, + { + "id": "6232", + "name": "Medowie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.74150000", + "longitude": "151.86760000" + }, + { + "id": "6237", + "name": "Melrose Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81491000", + "longitude": "151.07208000" + }, + { + "id": "6243", + "name": "Menai", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01667000", + "longitude": "151.01667000" + }, + { + "id": "6244", + "name": "Menangle", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.12675000", + "longitude": "150.73868000" + }, + { + "id": "6251", + "name": "Merewether", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.94801000", + "longitude": "151.74325000" + }, + { + "id": "6252", + "name": "Merewether Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.94733000", + "longitude": "151.73565000" + }, + { + "id": "6254", + "name": "Merimbula", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.88901000", + "longitude": "149.90961000" + }, + { + "id": "6261", + "name": "Merriwa", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.13922000", + "longitude": "150.35562000" + }, + { + "id": "6263", + "name": "Merrylands", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83333000", + "longitude": "150.98333000" + }, + { + "id": "6264", + "name": "Merrylands West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83269000", + "longitude": "150.96906000" + }, + { + "id": "6265", + "name": "Metford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.76497000", + "longitude": "151.60940000" + }, + { + "id": "6271", + "name": "Mid-Western Regional", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.60202000", + "longitude": "149.76748000" + }, + { + "id": "6272", + "name": "Middle Cove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79280000", + "longitude": "151.21248000" + }, + { + "id": "6279", + "name": "Middleton Grange", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91704000", + "longitude": "150.84186000" + }, + { + "id": "6292", + "name": "Miller", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92089000", + "longitude": "150.88469000" + }, + { + "id": "6293", + "name": "Millers Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85957000", + "longitude": "151.20406000" + }, + { + "id": "6300", + "name": "Millthorpe", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.44601000", + "longitude": "149.18539000" + }, + { + "id": "6301", + "name": "Milperra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93934000", + "longitude": "150.98148000" + }, + { + "id": "6302", + "name": "Milsons Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84600000", + "longitude": "151.21192000" + }, + { + "id": "6303", + "name": "Milton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.31644000", + "longitude": "150.43610000" + }, + { + "id": "6305", + "name": "Minchinbury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78724000", + "longitude": "150.82956000" + }, + { + "id": "6311", + "name": "Minto", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03333000", + "longitude": "150.85000000" + }, + { + "id": "6314", + "name": "Miranda", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03857000", + "longitude": "151.10005000" + }, + { + "id": "6324", + "name": "Mitchell", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.42732000", + "longitude": "149.55674000" + }, + { + "id": "6327", + "name": "Mittagong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.45002000", + "longitude": "150.44572000" + }, + { + "id": "6328", + "name": "Moama", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.10413000", + "longitude": "144.76080000" + }, + { + "id": "6339", + "name": "Mollymook", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.34107000", + "longitude": "150.46952000" + }, + { + "id": "6340", + "name": "Mollymook Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.32966000", + "longitude": "150.47173000" + }, + { + "id": "6341", + "name": "Molong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.09233000", + "longitude": "148.87002000" + }, + { + "id": "6342", + "name": "Mona Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.67757000", + "longitude": "151.30307000" + }, + { + "id": "6351", + "name": "Monterey", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97250000", + "longitude": "151.14810000" + }, + { + "id": "6360", + "name": "Moonbi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.01775000", + "longitude": "151.07062000" + }, + { + "id": "6361", + "name": "Moonee Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.20575000", + "longitude": "153.15293000" + }, + { + "id": "6370", + "name": "Moorebank", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94372000", + "longitude": "150.95657000" + }, + { + "id": "6380", + "name": "Moree", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.46278000", + "longitude": "149.84157000" + }, + { + "id": "6381", + "name": "Moree Plains", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.32131000", + "longitude": "149.58121000" + }, + { + "id": "6384", + "name": "Morisset", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.10801000", + "longitude": "151.48706000" + }, + { + "id": "6391", + "name": "Morpeth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.73333000", + "longitude": "151.63333000" + }, + { + "id": "6394", + "name": "Mortdale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96897000", + "longitude": "151.07231000" + }, + { + "id": "6396", + "name": "Mortlake", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84217000", + "longitude": "151.10719000" + }, + { + "id": "6397", + "name": "Moruya", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.91250000", + "longitude": "150.08144000" + }, + { + "id": "6399", + "name": "Mosman", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82845000", + "longitude": "151.24866000" + }, + { + "id": "6401", + "name": "Moss Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.55374000", + "longitude": "150.37115000" + }, + { + "id": "6405", + "name": "Mount Annan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05287000", + "longitude": "150.75984000" + }, + { + "id": "6406", + "name": "Mount Austin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.13684000", + "longitude": "147.35304000" + }, + { + "id": "6412", + "name": "Mount Colah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68333000", + "longitude": "151.11667000" + }, + { + "id": "6418", + "name": "Mount Druitt", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76667000", + "longitude": "150.81667000" + }, + { + "id": "6428", + "name": "Mount Hutton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.98329000", + "longitude": "151.67012000" + }, + { + "id": "6430", + "name": "Mount Keira", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.39678000", + "longitude": "150.85268000" + }, + { + "id": "6431", + "name": "Mount Kembla", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.42881000", + "longitude": "150.82161000" + }, + { + "id": "6432", + "name": "Mount Kuring-Gai", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.64197000", + "longitude": "151.12865000" + }, + { + "id": "6434", + "name": "Mount Lewis", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91750000", + "longitude": "151.04828000" + }, + { + "id": "6448", + "name": "Mount Ousley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.40213000", + "longitude": "150.88786000" + }, + { + "id": "6452", + "name": "Mount Pleasant", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.39531000", + "longitude": "150.86658000" + }, + { + "id": "6453", + "name": "Mount Pritchard", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90295000", + "longitude": "150.90465000" + }, + { + "id": "6456", + "name": "Mount Riverview", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73074000", + "longitude": "150.63532000" + }, + { + "id": "6457", + "name": "Mount Saint Thomas", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.44333000", + "longitude": "150.87222000" + }, + { + "id": "6461", + "name": "Mount Vernon", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86036000", + "longitude": "150.81007000" + }, + { + "id": "6463", + "name": "Mount Warrigal", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.54804000", + "longitude": "150.83752000" + }, + { + "id": "6469", + "name": "Mudgee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.59426000", + "longitude": "149.58710000" + }, + { + "id": "6475", + "name": "Mulgoa", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83800000", + "longitude": "150.64963000" + }, + { + "id": "6478", + "name": "Mullumbimby", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.55236000", + "longitude": "153.49956000" + }, + { + "id": "6479", + "name": "Mulwala", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.98536000", + "longitude": "146.00534000" + }, + { + "id": "6498", + "name": "Murrumbateman", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97199000", + "longitude": "149.02985000" + }, + { + "id": "6500", + "name": "Murrurundi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.76422000", + "longitude": "150.83575000" + }, + { + "id": "6502", + "name": "Murwillumbah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.32732000", + "longitude": "153.39339000" + }, + { + "id": "6503", + "name": "Muswellbrook", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.48935000", + "longitude": "150.69839000" + }, + { + "id": "6508", + "name": "Nabiac", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.09837000", + "longitude": "152.37627000" + }, + { + "id": "6514", + "name": "Nambucca", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.63333000", + "longitude": "152.98333000" + }, + { + "id": "6515", + "name": "Nambucca Heads", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.64318000", + "longitude": "153.00884000" + }, + { + "id": "6516", + "name": "Nambucca Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.70829000", + "longitude": "152.71024000" + }, + { + "id": "6517", + "name": "Nana Glen", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.13333000", + "longitude": "153.01667000" + }, + { + "id": "6525", + "name": "Narara", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.39593000", + "longitude": "151.33527000" + }, + { + "id": "6526", + "name": "Narellan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.04338000", + "longitude": "150.73236000" + }, + { + "id": "6527", + "name": "Narellan Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.04974000", + "longitude": "150.74392000" + }, + { + "id": "6529", + "name": "Naremburn", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81698000", + "longitude": "151.20079000" + }, + { + "id": "6530", + "name": "Narooma", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.21783000", + "longitude": "150.13247000" + }, + { + "id": "6531", + "name": "Narrabeen", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71277000", + "longitude": "151.29736000" + }, + { + "id": "6532", + "name": "Narrabri", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.32779000", + "longitude": "149.60242000" + }, + { + "id": "6534", + "name": "Narrandera", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.59107000", + "longitude": "146.53197000" + }, + { + "id": "6535", + "name": "Narrawallee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.31243000", + "longitude": "150.46351000" + }, + { + "id": "6536", + "name": "Narraweena", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75519000", + "longitude": "151.27659000" + }, + { + "id": "6541", + "name": "Narromine", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.23174000", + "longitude": "147.97591000" + }, + { + "id": "6542", + "name": "Narwee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94653000", + "longitude": "151.06919000" + }, + { + "id": "6549", + "name": "Nelson Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.72043000", + "longitude": "152.14398000" + }, + { + "id": "6553", + "name": "Neutral Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83784000", + "longitude": "151.21750000" + }, + { + "id": "6558", + "name": "New Lambton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.92838000", + "longitude": "151.70850000" + }, + { + "id": "6559", + "name": "New Lambton Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.92466000", + "longitude": "151.69364000" + }, + { + "id": "6563", + "name": "Newcastle", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.92953000", + "longitude": "151.78010000" + }, + { + "id": "6565", + "name": "Newcastle city centre", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.92885000", + "longitude": "151.77740000" + }, + { + "id": "6564", + "name": "Newcastle East", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.92771000", + "longitude": "151.78840000" + }, + { + "id": "6568", + "name": "Newington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83488000", + "longitude": "151.05703000" + }, + { + "id": "6572", + "name": "Newport", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.65639000", + "longitude": "151.31401000" + }, + { + "id": "6578", + "name": "Newtown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89835000", + "longitude": "151.17754000" + }, + { + "id": "6586", + "name": "Niagara Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.37638000", + "longitude": "151.34860000" + }, + { + "id": "6594", + "name": "Nimbin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.59545000", + "longitude": "153.22336000" + }, + { + "id": "6605", + "name": "Noraville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.26785000", + "longitude": "151.55352000" + }, + { + "id": "6609", + "name": "Normanhurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72370000", + "longitude": "151.09576000" + }, + { + "id": "6613", + "name": "North Albury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.05745000", + "longitude": "146.92995000" + }, + { + "id": "6614", + "name": "North Avoca", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.45608000", + "longitude": "151.43511000" + }, + { + "id": "6615", + "name": "North Balgowlah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78631000", + "longitude": "151.24801000" + }, + { + "id": "6618", + "name": "North Boambee Valley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.31295000", + "longitude": "153.06925000" + }, + { + "id": "6619", + "name": "North Bondi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88787000", + "longitude": "151.28075000" + }, + { + "id": "6625", + "name": "North Curl Curl", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76434000", + "longitude": "151.29727000" + }, + { + "id": "6626", + "name": "North Epping", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75944000", + "longitude": "151.09248000" + }, + { + "id": "6629", + "name": "North Gosford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.41400000", + "longitude": "151.35160000" + }, + { + "id": "6630", + "name": "North Haven", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.63680000", + "longitude": "152.81357000" + }, + { + "id": "6636", + "name": "North Lambton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90605000", + "longitude": "151.70574000" + }, + { + "id": "6639", + "name": "North Manly", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77561000", + "longitude": "151.26921000" + }, + { + "id": "6641", + "name": "North Narrabeen", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70935000", + "longitude": "151.29607000" + }, + { + "id": "6642", + "name": "North Nowra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85822000", + "longitude": "150.57479000" + }, + { + "id": "6643", + "name": "North Parramatta", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79351000", + "longitude": "151.00124000" + }, + { + "id": "6646", + "name": "North Richmond", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.58117000", + "longitude": "150.71942000" + }, + { + "id": "6647", + "name": "North Rocks", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77223000", + "longitude": "151.01718000" + }, + { + "id": "6648", + "name": "North Ryde", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79677000", + "longitude": "151.12436000" + }, + { + "id": "6649", + "name": "North St Marys", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75491000", + "longitude": "150.78435000" + }, + { + "id": "6650", + "name": "North Strathfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85693000", + "longitude": "151.09124000" + }, + { + "id": "6651", + "name": "North Sydney", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83422000", + "longitude": "151.21019000" + }, + { + "id": "6652", + "name": "North Tamworth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.07862000", + "longitude": "150.92219000" + }, + { + "id": "6654", + "name": "North Turramurra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71313000", + "longitude": "151.14638000" + }, + { + "id": "6655", + "name": "North Wahroonga", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70531000", + "longitude": "151.12278000" + }, + { + "id": "6658", + "name": "North Willoughby", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79563000", + "longitude": "151.20067000" + }, + { + "id": "6659", + "name": "North Wollongong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.40569000", + "longitude": "150.89763000" + }, + { + "id": "6663", + "name": "Northbridge", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81313000", + "longitude": "151.21728000" + }, + { + "id": "6672", + "name": "Northmead", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78378000", + "longitude": "150.99858000" + }, + { + "id": "6679", + "name": "Nowra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88422000", + "longitude": "150.60036000" + }, + { + "id": "6680", + "name": "Nowra Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92845000", + "longitude": "150.57243000" + }, + { + "id": "6689", + "name": "Nyngan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.56375000", + "longitude": "147.19373000" + }, + { + "id": "6693", + "name": "Oak Flats", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.56229000", + "longitude": "150.82193000" + }, + { + "id": "6695", + "name": "Oakdale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.07930000", + "longitude": "150.51320000" + }, + { + "id": "6701", + "name": "Oakhurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73883000", + "longitude": "150.83837000" + }, + { + "id": "6706", + "name": "Oakville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.61558000", + "longitude": "150.88006000" + }, + { + "id": "6707", + "name": "Oatlands", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79595000", + "longitude": "151.02712000" + }, + { + "id": "6708", + "name": "Oatley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98004000", + "longitude": "151.07201000" + }, + { + "id": "6709", + "name": "Oberon", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84531000", + "longitude": "149.81795000" + }, + { + "id": "6712", + "name": "Ocean Shores", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.50930000", + "longitude": "153.53760000" + }, + { + "id": "6714", + "name": "Old Bar", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.96940000", + "longitude": "152.58807000" + }, + { + "id": "6716", + "name": "Old Erowal Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.08460000", + "longitude": "150.64568000" + }, + { + "id": "6717", + "name": "Old Guildford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86429000", + "longitude": "150.98395000" + }, + { + "id": "6720", + "name": "Old Toongabbie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78763000", + "longitude": "150.96897000" + }, + { + "id": "6729", + "name": "Oran Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.00564000", + "longitude": "150.74032000" + }, + { + "id": "6731", + "name": "Orange", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.28397000", + "longitude": "149.10018000" + }, + { + "id": "6732", + "name": "Orange Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.32834000", + "longitude": "149.12294000" + }, + { + "id": "6733", + "name": "Orangeville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03108000", + "longitude": "150.60179000" + }, + { + "id": "6735", + "name": "Orchard Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78230000", + "longitude": "150.71088000" + }, + { + "id": "6745", + "name": "Ourimbah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.31424000", + "longitude": "151.33031000" + }, + { + "id": "6750", + "name": "Oxley Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77072000", + "longitude": "150.79502000" + }, + { + "id": "6751", + "name": "Oxley Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.06316000", + "longitude": "150.90060000" + }, + { + "id": "6752", + "name": "Oyster Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.00407000", + "longitude": "151.07588000" + }, + { + "id": "6757", + "name": "Paddington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88419000", + "longitude": "151.23151000" + }, + { + "id": "6759", + "name": "Padstow", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95687000", + "longitude": "151.03191000" + }, + { + "id": "6760", + "name": "Padstow Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96740000", + "longitude": "151.03991000" + }, + { + "id": "6762", + "name": "Pagewood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94137000", + "longitude": "151.21093000" + }, + { + "id": "6766", + "name": "Palm Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.59664000", + "longitude": "151.32384000" + }, + { + "id": "6773", + "name": "Panania", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95366000", + "longitude": "150.99733000" + }, + { + "id": "6794", + "name": "Parkes", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.82318000", + "longitude": "148.02514000" + }, + { + "id": "6797", + "name": "Parklea", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72439000", + "longitude": "150.91820000" + }, + { + "id": "6805", + "name": "Parramatta", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81248000", + "longitude": "151.00262000" + }, + { + "id": "6816", + "name": "Peak Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.72387000", + "longitude": "148.19052000" + }, + { + "id": "6817", + "name": "Peakhurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96288000", + "longitude": "151.05161000" + }, + { + "id": "6818", + "name": "Peakhurst Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97735000", + "longitude": "151.05557000" + }, + { + "id": "6826", + "name": "Pemulwuy", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82274000", + "longitude": "150.92395000" + }, + { + "id": "6827", + "name": "Pendle Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80402000", + "longitude": "150.95543000" + }, + { + "id": "6829", + "name": "Pennant Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73783000", + "longitude": "151.07216000" + }, + { + "id": "6832", + "name": "Penrith", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75000000", + "longitude": "150.70000000" + }, + { + "id": "6833", + "name": "Penrith Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75000000", + "longitude": "150.70000000" + }, + { + "id": "6834", + "name": "Penshurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96667000", + "longitude": "151.08333000" + }, + { + "id": "6844", + "name": "Petersham", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89460000", + "longitude": "151.15495000" + }, + { + "id": "6847", + "name": "Phillip", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.13333000", + "longitude": "150.85000000" + }, + { + "id": "6853", + "name": "Picnic Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98062000", + "longitude": "150.99661000" + }, + { + "id": "6854", + "name": "Picton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.16995000", + "longitude": "150.61168000" + }, + { + "id": "6862", + "name": "Pitt Town", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.58718000", + "longitude": "150.85857000" + }, + { + "id": "6869", + "name": "Plumpton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75184000", + "longitude": "150.83686000" + }, + { + "id": "6872", + "name": "Point Clare", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.44378000", + "longitude": "151.32732000" + }, + { + "id": "6874", + "name": "Point Frederick", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.44036000", + "longitude": "151.34322000" + }, + { + "id": "6876", + "name": "Point Piper", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86667000", + "longitude": "151.25000000" + }, + { + "id": "6878", + "name": "Pokolbin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.80000000", + "longitude": "151.28333000" + }, + { + "id": "6891", + "name": "Port Hacking", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.06791000", + "longitude": "151.12561000" + }, + { + "id": "6893", + "name": "Port Kembla", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.48180000", + "longitude": "150.90120000" + }, + { + "id": "6896", + "name": "Port Macquarie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.43084000", + "longitude": "152.90894000" + }, + { + "id": "6897", + "name": "Port Macquarie-Hastings", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.42106000", + "longitude": "152.51916000" + }, + { + "id": "6907", + "name": "Port Stephens Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.72855000", + "longitude": "151.89952000" + }, + { + "id": "6910", + "name": "Portland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.35709000", + "longitude": "149.98148000" + }, + { + "id": "6912", + "name": "Potts Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86701000", + "longitude": "151.22586000" + }, + { + "id": "6913", + "name": "Pottsville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.38740000", + "longitude": "153.55857000" + }, + { + "id": "6914", + "name": "Pottsville Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.38853000", + "longitude": "153.56564000" + }, + { + "id": "6916", + "name": "Prairiewood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86325000", + "longitude": "150.90521000" + }, + { + "id": "6918", + "name": "Prestons", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94185000", + "longitude": "150.87170000" + }, + { + "id": "6919", + "name": "Primbee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.50358000", + "longitude": "150.87950000" + }, + { + "id": "6923", + "name": "Prospect", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80154000", + "longitude": "150.91358000" + }, + { + "id": "6927", + "name": "Punchbowl", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92893000", + "longitude": "151.05111000" + }, + { + "id": "6928", + "name": "Putney", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82613000", + "longitude": "151.10630000" + }, + { + "id": "6929", + "name": "Pymble", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74386000", + "longitude": "151.14188000" + }, + { + "id": "6931", + "name": "Pyrmont", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86985000", + "longitude": "151.19402000" + }, + { + "id": "6933", + "name": "Quakers Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73333000", + "longitude": "150.88333000" + }, + { + "id": "6935", + "name": "Queanbeyan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.35493000", + "longitude": "149.23200000" + }, + { + "id": "6936", + "name": "Queanbeyan East", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.34625000", + "longitude": "149.24596000" + }, + { + "id": "6937", + "name": "Queanbeyan West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.35497000", + "longitude": "149.20412000" + }, + { + "id": "6939", + "name": "Queens Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89946000", + "longitude": "151.24724000" + }, + { + "id": "6941", + "name": "Queenscliff", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78278000", + "longitude": "151.28495000" + }, + { + "id": "6949", + "name": "Quirindi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.50763000", + "longitude": "150.67902000" + }, + { + "id": "6951", + "name": "Raby", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01846000", + "longitude": "150.81764000" + }, + { + "id": "6953", + "name": "Raglan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.41667000", + "longitude": "149.66667000" + }, + { + "id": "6956", + "name": "Ramsgate", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98220000", + "longitude": "151.14000000" + }, + { + "id": "6957", + "name": "Ramsgate Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98523000", + "longitude": "151.14634000" + }, + { + "id": "6958", + "name": "Randwick", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91667000", + "longitude": "151.25000000" + }, + { + "id": "6963", + "name": "Rankin Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.92516000", + "longitude": "151.68016000" + }, + { + "id": "6966", + "name": "Rathmines", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.03773000", + "longitude": "151.58443000" + }, + { + "id": "6972", + "name": "Raworth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.73333000", + "longitude": "151.61667000" + }, + { + "id": "6973", + "name": "Raymond Terrace", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.75952000", + "longitude": "151.75050000" + }, + { + "id": "6974", + "name": "Razorback", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.15237000", + "longitude": "150.65308000" + }, + { + "id": "6982", + "name": "Redfern", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89279000", + "longitude": "151.20415000" + }, + { + "id": "6983", + "name": "Redhead", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.01178000", + "longitude": "151.71142000" + }, + { + "id": "6990", + "name": "Regents Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88333000", + "longitude": "151.01667000" + }, + { + "id": "6999", + "name": "Revesby", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95000000", + "longitude": "151.01667000" + }, + { + "id": "7000", + "name": "Revesby Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96710000", + "longitude": "151.01841000" + }, + { + "id": "7003", + "name": "Rhodes", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82663000", + "longitude": "151.08810000" + }, + { + "id": "7006", + "name": "Richmond", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.59956000", + "longitude": "150.75142000" + }, + { + "id": "7011", + "name": "Richmond Valley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.02684000", + "longitude": "153.08625000" + }, + { + "id": "7025", + "name": "Riverstone", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68333000", + "longitude": "150.86667000" + }, + { + "id": "7029", + "name": "Riverview", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82465000", + "longitude": "151.16243000" + }, + { + "id": "7030", + "name": "Riverwood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94725000", + "longitude": "151.04973000" + }, + { + "id": "7034", + "name": "Robertson", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.58742000", + "longitude": "150.59116000" + }, + { + "id": "7042", + "name": "Rockdale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96611000", + "longitude": "151.14342000" + }, + { + "id": "7048", + "name": "Rodd Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86662000", + "longitude": "151.13995000" + }, + { + "id": "7055", + "name": "Rooty Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76667000", + "longitude": "150.83333000" + }, + { + "id": "7057", + "name": "Ropes Crossing", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73276000", + "longitude": "150.79104000" + }, + { + "id": "7059", + "name": "Rose Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86877000", + "longitude": "151.27060000" + }, + { + "id": "7065", + "name": "Rosehill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82009000", + "longitude": "151.02450000" + }, + { + "id": "7066", + "name": "Roselands", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93317000", + "longitude": "151.07320000" + }, + { + "id": "7067", + "name": "Rosemeadow", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.10414000", + "longitude": "150.79282000" + }, + { + "id": "7071", + "name": "Roseville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78333000", + "longitude": "151.18333000" + }, + { + "id": "7072", + "name": "Roseville Chase", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77852000", + "longitude": "151.19677000" + }, + { + "id": "7082", + "name": "Rouse Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68207000", + "longitude": "150.91540000" + }, + { + "id": "7088", + "name": "Rozelle", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86141000", + "longitude": "151.17050000" + }, + { + "id": "7092", + "name": "Ruse", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.06976000", + "longitude": "150.84168000" + }, + { + "id": "7093", + "name": "Rushcutters Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87480000", + "longitude": "151.22799000" + }, + { + "id": "7096", + "name": "Russell Lea", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85889000", + "longitude": "151.14111000" + }, + { + "id": "7097", + "name": "Russell Vale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.35542000", + "longitude": "150.89434000" + }, + { + "id": "7098", + "name": "Rutherford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.71667000", + "longitude": "151.53333000" + }, + { + "id": "7100", + "name": "Rydalmere", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81453000", + "longitude": "151.03751000" + }, + { + "id": "7101", + "name": "Ryde", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80149000", + "longitude": "151.11205000" + }, + { + "id": "7104", + "name": "Sadleir", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91713000", + "longitude": "150.89093000" + }, + { + "id": "7112", + "name": "Saint Ives", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72976000", + "longitude": "151.15977000" + }, + { + "id": "7116", + "name": "Saint Peters", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91667000", + "longitude": "151.18333000" + }, + { + "id": "7117", + "name": "Salamander Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.72253000", + "longitude": "152.07945000" + }, + { + "id": "7127", + "name": "Salt Ash", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.78333000", + "longitude": "151.91667000" + }, + { + "id": "7132", + "name": "San Remo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.21469000", + "longitude": "151.52102000" + }, + { + "id": "7133", + "name": "Sanctuary Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.10361000", + "longitude": "150.62667000" + }, + { + "id": "7138", + "name": "Sandringham", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.99447000", + "longitude": "151.13913000" + }, + { + "id": "7142", + "name": "Sandy Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.14681000", + "longitude": "153.19238000" + }, + { + "id": "7143", + "name": "Sans Souci", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.98990000", + "longitude": "151.13334000" + }, + { + "id": "7144", + "name": "Sapphire Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.22614000", + "longitude": "153.13628000" + }, + { + "id": "7145", + "name": "Saratoga", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.47564000", + "longitude": "151.35207000" + }, + { + "id": "7148", + "name": "Sawtell", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.36459000", + "longitude": "153.10141000" + }, + { + "id": "7153", + "name": "Schofields", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71667000", + "longitude": "150.86667000" + }, + { + "id": "7154", + "name": "Scone", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.05014000", + "longitude": "150.86893000" + }, + { + "id": "7167", + "name": "Seaforth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80145000", + "longitude": "151.23981000" + }, + { + "id": "7174", + "name": "Sefton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88773000", + "longitude": "151.01053000" + }, + { + "id": "7184", + "name": "Seven Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78333000", + "longitude": "150.93333000" + }, + { + "id": "7191", + "name": "Shalvey", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72687000", + "longitude": "150.80529000" + }, + { + "id": "7198", + "name": "Shell Cove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.58994000", + "longitude": "150.86203000" + }, + { + "id": "7200", + "name": "Shellharbour", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.58333000", + "longitude": "150.86667000" + }, + { + "id": "7201", + "name": "Shelly Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.36999000", + "longitude": "151.48522000" + }, + { + "id": "7205", + "name": "Shoal Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.72231000", + "longitude": "152.17498000" + }, + { + "id": "7206", + "name": "Shoalhaven Heads", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85086000", + "longitude": "150.74512000" + }, + { + "id": "7207", + "name": "Shoalhaven Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.14162000", + "longitude": "150.41295000" + }, + { + "id": "7211", + "name": "Shortland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.87883000", + "longitude": "151.69105000" + }, + { + "id": "7215", + "name": "Silverdale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91520000", + "longitude": "150.60960000" + }, + { + "id": "7216", + "name": "Silverwater", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83343000", + "longitude": "151.04731000" + }, + { + "id": "7219", + "name": "Singleton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.60547000", + "longitude": "150.91872000" + }, + { + "id": "7220", + "name": "Singleton Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.54160000", + "longitude": "151.16089000" + }, + { + "id": "7223", + "name": "Skennars Head", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.82888000", + "longitude": "153.60209000" + }, + { + "id": "7228", + "name": "Smithfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85000000", + "longitude": "150.93333000" + }, + { + "id": "7230", + "name": "Smiths Lake", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.38043000", + "longitude": "152.50337000" + }, + { + "id": "7237", + "name": "Soldiers Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.71050000", + "longitude": "152.06979000" + }, + { + "id": "7240", + "name": "Somersby", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.36667000", + "longitude": "151.28333000" + }, + { + "id": "7249", + "name": "South Albury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.08654000", + "longitude": "146.90905000" + }, + { + "id": "7250", + "name": "South Bathurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.43839000", + "longitude": "149.57203000" + }, + { + "id": "7251", + "name": "South Bowenfels", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.51667000", + "longitude": "150.11667000" + }, + { + "id": "7257", + "name": "South Coogee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93106000", + "longitude": "151.25599000" + }, + { + "id": "7261", + "name": "South Grafton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.70760000", + "longitude": "152.92627000" + }, + { + "id": "7262", + "name": "South Granville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85864000", + "longitude": "151.01066000" + }, + { + "id": "7266", + "name": "South Hurstville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.97756000", + "longitude": "151.10550000" + }, + { + "id": "7268", + "name": "South Kempsey", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.12302000", + "longitude": "152.83253000" + }, + { + "id": "7273", + "name": "South Lismore", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.81629000", + "longitude": "153.25619000" + }, + { + "id": "7278", + "name": "South Murwillumbah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.33895000", + "longitude": "153.40004000" + }, + { + "id": "7279", + "name": "South Nowra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90332000", + "longitude": "150.59827000" + }, + { + "id": "7280", + "name": "South Penrith", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77349000", + "longitude": "150.69466000" + }, + { + "id": "7283", + "name": "South Tamworth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.11000000", + "longitude": "150.92254000" + }, + { + "id": "7286", + "name": "South Turramurra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74941000", + "longitude": "151.11257000" + }, + { + "id": "7287", + "name": "South Wentworthville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.81850000", + "longitude": "150.96344000" + }, + { + "id": "7288", + "name": "South West Rocks", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.88553000", + "longitude": "153.04126000" + }, + { + "id": "7289", + "name": "South Windsor", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.61808000", + "longitude": "150.80443000" + }, + { + "id": "7302", + "name": "Speers Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.96383000", + "longitude": "151.62618000" + }, + { + "id": "7307", + "name": "Spring Farm", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.06851000", + "longitude": "150.71182000" + }, + { + "id": "7309", + "name": "Springdale Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.03095000", + "longitude": "146.94783000" + }, + { + "id": "7314", + "name": "Springvale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.16687000", + "longitude": "147.33058000" + }, + { + "id": "7317", + "name": "Springwood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70000000", + "longitude": "150.55000000" + }, + { + "id": "7320", + "name": "St Andrews", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.02243000", + "longitude": "150.82958000" + }, + { + "id": "7321", + "name": "St Clair", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79728000", + "longitude": "150.78470000" + }, + { + "id": "7327", + "name": "St Helens Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.10474000", + "longitude": "150.81368000" + }, + { + "id": "7328", + "name": "St Huberts Island", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.49562000", + "longitude": "151.34616000" + }, + { + "id": "7329", + "name": "St Ives Chase", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70381000", + "longitude": "151.16460000" + }, + { + "id": "7331", + "name": "St Johns Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88295000", + "longitude": "150.90182000" + }, + { + "id": "7334", + "name": "St Leonards", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.82344000", + "longitude": "151.19836000" + }, + { + "id": "7338", + "name": "St. Georges Basin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.08986000", + "longitude": "150.59801000" + }, + { + "id": "7341", + "name": "Stanhope Gardens", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72206000", + "longitude": "150.92597000" + }, + { + "id": "7342", + "name": "Stanmore", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89407000", + "longitude": "151.16424000" + }, + { + "id": "7344", + "name": "Stanwell Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.22610000", + "longitude": "150.98583000" + }, + { + "id": "7350", + "name": "Stockton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90908000", + "longitude": "151.78360000" + }, + { + "id": "7359", + "name": "Strathfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87978000", + "longitude": "151.07561000" + }, + { + "id": "7360", + "name": "Strathfield South", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89252000", + "longitude": "151.08334000" + }, + { + "id": "7373", + "name": "Suffolk Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.68810000", + "longitude": "153.60977000" + }, + { + "id": "7374", + "name": "Summer Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89146000", + "longitude": "151.13825000" + }, + { + "id": "7376", + "name": "Summerland Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.14091000", + "longitude": "151.56561000" + }, + { + "id": "7385", + "name": "Sunshine Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.74540000", + "longitude": "150.20792000" + }, + { + "id": "7392", + "name": "Surfside", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.69531000", + "longitude": "150.19949000" + }, + { + "id": "7395", + "name": "Surry Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88374000", + "longitude": "151.21282000" + }, + { + "id": "7396", + "name": "Sussex Inlet", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.15671000", + "longitude": "150.58533000" + }, + { + "id": "7397", + "name": "Sutherland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03100000", + "longitude": "151.05532000" + }, + { + "id": "7398", + "name": "Sutherland Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.07202000", + "longitude": "151.07712000" + }, + { + "id": "7399", + "name": "Sutton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.16667000", + "longitude": "149.25000000" + }, + { + "id": "7405", + "name": "Swansea", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.08765000", + "longitude": "151.63745000" + }, + { + "id": "7407", + "name": "Sydenham", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91669000", + "longitude": "151.16798000" + }, + { + "id": "7408", + "name": "Sydney", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86785000", + "longitude": "151.20732000" + }, + { + "id": "7409", + "name": "Sydney Central Business District", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86482000", + "longitude": "151.20773000" + }, + { + "id": "7410", + "name": "Sydney Olympic Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84983000", + "longitude": "151.06828000" + }, + { + "id": "7411", + "name": "Sylvania", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01242000", + "longitude": "151.09718000" + }, + { + "id": "7412", + "name": "Sylvania Waters", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01868000", + "longitude": "151.10860000" + }, + { + "id": "7413", + "name": "Table Top", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.96667000", + "longitude": "147.00000000" + }, + { + "id": "7414", + "name": "Tahmoor", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.22246000", + "longitude": "150.59467000" + }, + { + "id": "7421", + "name": "Tamarama", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89835000", + "longitude": "151.27059000" + }, + { + "id": "7425", + "name": "Tamworth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.09048000", + "longitude": "150.92905000" + }, + { + "id": "7426", + "name": "Tamworth Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.92204000", + "longitude": "150.81526000" + }, + { + "id": "7429", + "name": "Tanilba Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.74706000", + "longitude": "151.99714000" + }, + { + "id": "7437", + "name": "Taree", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91099000", + "longitude": "152.45387000" + }, + { + "id": "7438", + "name": "Taren Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01936000", + "longitude": "151.11826000" + }, + { + "id": "7443", + "name": "Tarrawanna", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.38152000", + "longitude": "150.88799000" + }, + { + "id": "7444", + "name": "Tarro", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.80000000", + "longitude": "151.66667000" + }, + { + "id": "7445", + "name": "Tascott", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.45017000", + "longitude": "151.31375000" + }, + { + "id": "7447", + "name": "Tathra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.73126000", + "longitude": "149.98328000" + }, + { + "id": "7449", + "name": "Tatton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.15990000", + "longitude": "147.35875000" + }, + { + "id": "7453", + "name": "Tea Gardens", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.66351000", + "longitude": "152.15404000" + }, + { + "id": "7457", + "name": "Telarah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.72876000", + "longitude": "151.53453000" + }, + { + "id": "7460", + "name": "Telopea", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79279000", + "longitude": "151.03858000" + }, + { + "id": "7461", + "name": "Temora", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.44834000", + "longitude": "147.53558000" + }, + { + "id": "7462", + "name": "Temora Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.38314000", + "longitude": "147.47917000" + }, + { + "id": "7463", + "name": "Tempe", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92335000", + "longitude": "151.16020000" + }, + { + "id": "7466", + "name": "Tenambit", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.73967000", + "longitude": "151.61293000" + }, + { + "id": "7470", + "name": "Tennyson Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83172000", + "longitude": "151.11682000" + }, + { + "id": "7471", + "name": "Tenterfield", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.04946000", + "longitude": "152.01952000" + }, + { + "id": "7472", + "name": "Tenterfield Municipality", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.06897000", + "longitude": "152.04803000" + }, + { + "id": "7473", + "name": "Teralba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.96667000", + "longitude": "151.60000000" + }, + { + "id": "7475", + "name": "Terranora", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.23832000", + "longitude": "153.50078000" + }, + { + "id": "7476", + "name": "Terrigal", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.44815000", + "longitude": "151.44665000" + }, + { + "id": "7477", + "name": "Terry Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68333000", + "longitude": "151.23333000" + }, + { + "id": "7482", + "name": "The Entrance", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.33876000", + "longitude": "151.49780000" + }, + { + "id": "7483", + "name": "The Entrance North", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.33573000", + "longitude": "151.50335000" + }, + { + "id": "7487", + "name": "The Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.93089000", + "longitude": "151.77835000" + }, + { + "id": "7488", + "name": "The Hills Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.59118000", + "longitude": "150.96100000" + }, + { + "id": "7489", + "name": "The Junction", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.93822000", + "longitude": "151.75909000" + }, + { + "id": "7490", + "name": "The Oaks", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.07995000", + "longitude": "150.56998000" + }, + { + "id": "7492", + "name": "The Ponds", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70228000", + "longitude": "150.91086000" + }, + { + "id": "7494", + "name": "The Rock", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.27302000", + "longitude": "147.11381000" + }, + { + "id": "7495", + "name": "The Rocks", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85923000", + "longitude": "151.20810000" + }, + { + "id": "7499", + "name": "Thirlmere", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.20455000", + "longitude": "150.56767000" + }, + { + "id": "7500", + "name": "Thirroul", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.31604000", + "longitude": "150.92142000" + }, + { + "id": "7506", + "name": "Thornleigh", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73228000", + "longitude": "151.07895000" + }, + { + "id": "7508", + "name": "Thornton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.78333000", + "longitude": "151.63333000" + }, + { + "id": "7510", + "name": "Thurgoona", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.03626000", + "longitude": "146.99609000" + }, + { + "id": "7513", + "name": "Tighes Hill", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90732000", + "longitude": "151.75090000" + }, + { + "id": "7518", + "name": "Tingira Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.99725000", + "longitude": "151.67021000" + }, + { + "id": "7519", + "name": "Tinonee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93634000", + "longitude": "152.41425000" + }, + { + "id": "7523", + "name": "Tocumwal", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.81150000", + "longitude": "145.56922000" + }, + { + "id": "7525", + "name": "Tolland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.14521000", + "longitude": "147.35162000" + }, + { + "id": "7527", + "name": "Tomakin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.82335000", + "longitude": "150.18794000" + }, + { + "id": "7528", + "name": "Tomerong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.05231000", + "longitude": "150.58650000" + }, + { + "id": "7533", + "name": "Toongabbie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.78333000", + "longitude": "150.95000000" + }, + { + "id": "7537", + "name": "Toormina", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.35384000", + "longitude": "153.08843000" + }, + { + "id": "7541", + "name": "Toronto", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.01357000", + "longitude": "151.59373000" + }, + { + "id": "7549", + "name": "Toukley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.26367000", + "longitude": "151.53841000" + }, + { + "id": "7553", + "name": "Towradgi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.38667000", + "longitude": "150.90278000" + }, + { + "id": "7555", + "name": "Trangie", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03147000", + "longitude": "147.98344000" + }, + { + "id": "7561", + "name": "Tregear", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74562000", + "longitude": "150.79294000" + }, + { + "id": "7572", + "name": "Tuggerawong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.28040000", + "longitude": "151.48044000" + }, + { + "id": "7576", + "name": "Tumbarumba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.77806000", + "longitude": "148.01172000" + }, + { + "id": "7577", + "name": "Tumbi Vmbi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.36667000", + "longitude": "151.45000000" + }, + { + "id": "7579", + "name": "Tumut", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.30642000", + "longitude": "148.21818000" + }, + { + "id": "7580", + "name": "Tuncurry", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.17443000", + "longitude": "152.49876000" + }, + { + "id": "7581", + "name": "Tura Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.86358000", + "longitude": "149.93027000" + }, + { + "id": "7584", + "name": "Tuross Head", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.05328000", + "longitude": "150.13322000" + }, + { + "id": "7585", + "name": "Turramurra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73342000", + "longitude": "151.12849000" + }, + { + "id": "7586", + "name": "Turrella", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93033000", + "longitude": "151.14209000" + }, + { + "id": "7587", + "name": "Turvey Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.12849000", + "longitude": "147.36264000" + }, + { + "id": "7589", + "name": "Tweed", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.34991000", + "longitude": "153.34652000" + }, + { + "id": "7590", + "name": "Tweed Heads", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.17671000", + "longitude": "153.54520000" + }, + { + "id": "7591", + "name": "Tweed Heads South", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.19517000", + "longitude": "153.53964000" + }, + { + "id": "7592", + "name": "Tweed Heads West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.18736000", + "longitude": "153.52278000" + }, + { + "id": "7597", + "name": "Ulladulla", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.35906000", + "longitude": "150.47247000" + }, + { + "id": "7598", + "name": "Ultimo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87722000", + "longitude": "151.19720000" + }, + { + "id": "7600", + "name": "Umina Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.52314000", + "longitude": "151.31325000" + }, + { + "id": "7601", + "name": "Unanderra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.45306000", + "longitude": "150.84746000" + }, + { + "id": "7610", + "name": "Upper Hunter Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.98126000", + "longitude": "150.69282000" + }, + { + "id": "7612", + "name": "Upper Lachlan Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.41867000", + "longitude": "149.53061000" + }, + { + "id": "7615", + "name": "Uralla", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.48548000", + "longitude": "151.35451000" + }, + { + "id": "7618", + "name": "Urunga", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.49701000", + "longitude": "153.01422000" + }, + { + "id": "7622", + "name": "Valentine", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.01504000", + "longitude": "151.64290000" + }, + { + "id": "7623", + "name": "Valla Beach", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.59259000", + "longitude": "153.01131000" + }, + { + "id": "7624", + "name": "Valley Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70000000", + "longitude": "150.58333000" + }, + { + "id": "7628", + "name": "Vaucluse", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85549000", + "longitude": "151.27754000" + }, + { + "id": "7637", + "name": "Villawood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88434000", + "longitude": "150.98027000" + }, + { + "id": "7640", + "name": "Vincentia", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.06825000", + "longitude": "150.67480000" + }, + { + "id": "7641", + "name": "Vineyard", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.64995000", + "longitude": "150.85259000" + }, + { + "id": "7646", + "name": "Voyager Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95871000", + "longitude": "150.97417000" + }, + { + "id": "7648", + "name": "Wadalba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.27230000", + "longitude": "151.46487000" + }, + { + "id": "7652", + "name": "Wagga Wagga", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.18587000", + "longitude": "147.35509000" + }, + { + "id": "7656", + "name": "Wahroonga", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71816000", + "longitude": "151.11561000" + }, + { + "id": "7659", + "name": "Waitara", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71092000", + "longitude": "151.10330000" + }, + { + "id": "7661", + "name": "Wakeley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87427000", + "longitude": "150.90976000" + }, + { + "id": "7663", + "name": "Walcha", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.19757000", + "longitude": "151.81854000" + }, + { + "id": "7664", + "name": "Walgett", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.79031000", + "longitude": "148.13393000" + }, + { + "id": "7669", + "name": "Wallacia", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86577000", + "longitude": "150.64021000" + }, + { + "id": "7670", + "name": "Wallalong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.69556000", + "longitude": "151.64957000" + }, + { + "id": "7673", + "name": "Wallerawang", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.41096000", + "longitude": "150.06456000" + }, + { + "id": "7676", + "name": "Wallsend", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90133000", + "longitude": "151.66432000" + }, + { + "id": "7677", + "name": "Wamberal", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.41554000", + "longitude": "151.44559000" + }, + { + "id": "7678", + "name": "Wamboin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.25073000", + "longitude": "149.33284000" + }, + { + "id": "7689", + "name": "Wangi Wangi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.07185000", + "longitude": "151.59840000" + }, + { + "id": "7696", + "name": "Warabrook", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.88885000", + "longitude": "151.71493000" + }, + { + "id": "7699", + "name": "Waratah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90667000", + "longitude": "151.72647000" + }, + { + "id": "7700", + "name": "Waratah West", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90003000", + "longitude": "151.71170000" + }, + { + "id": "7703", + "name": "Wareemba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85819000", + "longitude": "151.13085000" + }, + { + "id": "7704", + "name": "Warialda", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.54354000", + "longitude": "150.57542000" + }, + { + "id": "7705", + "name": "Warilla", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.55185000", + "longitude": "150.85831000" + }, + { + "id": "7708", + "name": "Warners Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.97251000", + "longitude": "151.65268000" + }, + { + "id": "7712", + "name": "Warragamba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.89191000", + "longitude": "150.60461000" + }, + { + "id": "7717", + "name": "Warrawee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72884000", + "longitude": "151.12051000" + }, + { + "id": "7718", + "name": "Warrawong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.48500000", + "longitude": "150.88833000" + }, + { + "id": "7719", + "name": "Warren", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.70224000", + "longitude": "147.83392000" + }, + { + "id": "7720", + "name": "Warren Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.29549000", + "longitude": "147.72853000" + }, + { + "id": "7721", + "name": "Warriewood", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68857000", + "longitude": "151.29534000" + }, + { + "id": "7722", + "name": "Warrimoo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71667000", + "longitude": "150.60000000" + }, + { + "id": "7724", + "name": "Warrumbungle Shire", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.45519000", + "longitude": "149.45377000" + }, + { + "id": "7727", + "name": "Warwick Farm", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.91291000", + "longitude": "150.93701000" + }, + { + "id": "7728", + "name": "Watanobbi", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.26772000", + "longitude": "151.42246000" + }, + { + "id": "7733", + "name": "Waterview Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.69775000", + "longitude": "152.83922000" + }, + { + "id": "7738", + "name": "Wattle Grove", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95443000", + "longitude": "150.94447000" + }, + { + "id": "7741", + "name": "Wattle Ponds", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.52026000", + "longitude": "151.19359000" + }, + { + "id": "7744", + "name": "Wauchope", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.45792000", + "longitude": "152.72617000" + }, + { + "id": "7747", + "name": "Waverley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90181000", + "longitude": "151.25599000" + }, + { + "id": "7749", + "name": "Waverton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83863000", + "longitude": "151.20046000" + }, + { + "id": "7751", + "name": "Weddin", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87903000", + "longitude": "148.01125000" + }, + { + "id": "7752", + "name": "Wee Waa", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.22660000", + "longitude": "149.44041000" + }, + { + "id": "7758", + "name": "Wellington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.55588000", + "longitude": "148.94508000" + }, + { + "id": "7763", + "name": "Wentworth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.67106000", + "longitude": "142.33675000" + }, + { + "id": "7764", + "name": "Wentworth Falls", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71033000", + "longitude": "150.37534000" + }, + { + "id": "7765", + "name": "Wentworth Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83080000", + "longitude": "151.07441000" + }, + { + "id": "7766", + "name": "Wentworthville", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80652000", + "longitude": "150.96785000" + }, + { + "id": "7769", + "name": "Werrington", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75920000", + "longitude": "150.75266000" + }, + { + "id": "7770", + "name": "Werrington County", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74650000", + "longitude": "150.73929000" + }, + { + "id": "7771", + "name": "Werrington Downs", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74206000", + "longitude": "150.72779000" + }, + { + "id": "7772", + "name": "Werris Creek", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.34908000", + "longitude": "150.64870000" + }, + { + "id": "7774", + "name": "West Albury", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.07979000", + "longitude": "146.89227000" + }, + { + "id": "7777", + "name": "West Ballina", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.86200000", + "longitude": "153.53291000" + }, + { + "id": "7778", + "name": "West Bathurst", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.40920000", + "longitude": "149.56324000" + }, + { + "id": "7787", + "name": "West Gosford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.42578000", + "longitude": "151.31701000" + }, + { + "id": "7788", + "name": "West Haven", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.63555000", + "longitude": "152.78378000" + }, + { + "id": "7791", + "name": "West Hoxton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93388000", + "longitude": "150.83234000" + }, + { + "id": "7792", + "name": "West Kempsey", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.05757000", + "longitude": "152.82794000" + }, + { + "id": "7801", + "name": "West Nowra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88593000", + "longitude": "150.58333000" + }, + { + "id": "7802", + "name": "West Pennant Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.74570000", + "longitude": "151.04764000" + }, + { + "id": "7804", + "name": "West Pymble", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.76667000", + "longitude": "151.13333000" + }, + { + "id": "7806", + "name": "West Ryde", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80543000", + "longitude": "151.07386000" + }, + { + "id": "7808", + "name": "West Tamworth", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.10236000", + "longitude": "150.91447000" + }, + { + "id": "7810", + "name": "West Wallsend", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.90000000", + "longitude": "151.58333000" + }, + { + "id": "7813", + "name": "West Wollongong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.42480000", + "longitude": "150.86417000" + }, + { + "id": "7815", + "name": "West Wyalong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92373000", + "longitude": "147.20473000" + }, + { + "id": "7820", + "name": "Westdale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.09052000", + "longitude": "150.85678000" + }, + { + "id": "7823", + "name": "Westleigh", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71176000", + "longitude": "151.07139000" + }, + { + "id": "7824", + "name": "Westmead", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80383000", + "longitude": "150.98768000" + }, + { + "id": "7829", + "name": "Wetherill Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84277000", + "longitude": "150.90061000" + }, + { + "id": "7830", + "name": "Whalan", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75697000", + "longitude": "150.80402000" + }, + { + "id": "7831", + "name": "Wheeler Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73119000", + "longitude": "151.28049000" + }, + { + "id": "7836", + "name": "Whitebridge", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.97436000", + "longitude": "151.71614000" + }, + { + "id": "7849", + "name": "Wickham", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.91923000", + "longitude": "151.75693000" + }, + { + "id": "7851", + "name": "Wilberforce", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.56256000", + "longitude": "150.83784000" + }, + { + "id": "7852", + "name": "Wiley Park", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92420000", + "longitude": "151.06737000" + }, + { + "id": "7861", + "name": "Williamtown", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.80638000", + "longitude": "151.84361000" + }, + { + "id": "7862", + "name": "Willmot", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.72534000", + "longitude": "150.79259000" + }, + { + "id": "7863", + "name": "Willoughby", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.80167000", + "longitude": "151.18782000" + }, + { + "id": "7864", + "name": "Willoughby East", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79844000", + "longitude": "151.20518000" + }, + { + "id": "7872", + "name": "Wilton", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.24053000", + "longitude": "150.69771000" + }, + { + "id": "7875", + "name": "Windale", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.99277000", + "longitude": "151.68167000" + }, + { + "id": "7876", + "name": "Windang", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.53333000", + "longitude": "150.86667000" + }, + { + "id": "7878", + "name": "Windradyne", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.40539000", + "longitude": "149.54507000" + }, + { + "id": "7881", + "name": "Windsor", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.61309000", + "longitude": "150.81416000" + }, + { + "id": "7882", + "name": "Windsor Downs", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.65857000", + "longitude": "150.81079000" + }, + { + "id": "7884", + "name": "Wingecarribee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.49091000", + "longitude": "150.35486000" + }, + { + "id": "7885", + "name": "Wingham", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.86676000", + "longitude": "152.36989000" + }, + { + "id": "7886", + "name": "Winmalee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.67847000", + "longitude": "150.61213000" + }, + { + "id": "7888", + "name": "Winston Hills", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.77645000", + "longitude": "150.98051000" + }, + { + "id": "7897", + "name": "Wolli Creek", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93133000", + "longitude": "151.15222000" + }, + { + "id": "7898", + "name": "Wollondilly", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.06958000", + "longitude": "150.46265000" + }, + { + "id": "7899", + "name": "Wollongbar", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.81820000", + "longitude": "153.39686000" + }, + { + "id": "7900", + "name": "Wollongong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.42400000", + "longitude": "150.89345000" + }, + { + "id": "7901", + "name": "Wollongong city centre", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.42790000", + "longitude": "150.89268000" + }, + { + "id": "7902", + "name": "Wollstonecraft", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83280000", + "longitude": "151.18981000" + }, + { + "id": "7912", + "name": "Woodberry", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.79311000", + "longitude": "151.67687000" + }, + { + "id": "7913", + "name": "Woodbine", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.04589000", + "longitude": "150.82146000" + }, + { + "id": "7916", + "name": "Woodcroft", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.75637000", + "longitude": "150.88071000" + }, + { + "id": "7920", + "name": "Woodford", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.73333000", + "longitude": "150.48333000" + }, + { + "id": "7922", + "name": "Woodpark", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.84137000", + "longitude": "150.96055000" + }, + { + "id": "7924", + "name": "Woodrising", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.98595000", + "longitude": "151.60657000" + }, + { + "id": "7935", + "name": "Woolgoolga", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.11058000", + "longitude": "153.20067000" + }, + { + "id": "7936", + "name": "Woollahra", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87901000", + "longitude": "151.24706000" + }, + { + "id": "7937", + "name": "Woolloomooloo", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87042000", + "longitude": "151.21968000" + }, + { + "id": "7939", + "name": "Woolooware", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.04583000", + "longitude": "151.14312000" + }, + { + "id": "7942", + "name": "Woongarrah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.24134000", + "longitude": "151.47563000" + }, + { + "id": "7943", + "name": "Woonona", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.34932000", + "longitude": "150.91443000" + }, + { + "id": "7951", + "name": "Woronora", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.02436000", + "longitude": "151.03862000" + }, + { + "id": "7952", + "name": "Woronora Heights", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03562000", + "longitude": "151.02734000" + }, + { + "id": "7953", + "name": "Worrigee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90000000", + "longitude": "150.63333000" + }, + { + "id": "7954", + "name": "Woy Woy", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.48433000", + "longitude": "151.32471000" + }, + { + "id": "7967", + "name": "Wyee", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.18252000", + "longitude": "151.48804000" + }, + { + "id": "7968", + "name": "Wyee Point", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.14585000", + "longitude": "151.50783000" + }, + { + "id": "7976", + "name": "Wyoming", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.40387000", + "longitude": "151.36254000" + }, + { + "id": "7977", + "name": "Wyong", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.28254000", + "longitude": "151.42327000" + }, + { + "id": "7978", + "name": "Wyongah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.27468000", + "longitude": "151.48898000" + }, + { + "id": "7981", + "name": "Yagoona", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90490000", + "longitude": "151.01996000" + }, + { + "id": "7989", + "name": "Yamba", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.43750000", + "longitude": "153.35914000" + }, + { + "id": "8006", + "name": "Yarravel", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.04295000", + "longitude": "152.76191000" + }, + { + "id": "8008", + "name": "Yarrawarrah", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05351000", + "longitude": "151.03563000" + }, + { + "id": "8011", + "name": "Yass", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.84036000", + "longitude": "148.90987000" + }, + { + "id": "8012", + "name": "Yass Valley", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92630000", + "longitude": "148.97240000" + }, + { + "id": "8016", + "name": "Yenda", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.24525000", + "longitude": "146.20273000" + }, + { + "id": "8017", + "name": "Yennora", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.86173000", + "longitude": "150.96865000" + }, + { + "id": "8021", + "name": "Yerrinbool", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.36884000", + "longitude": "150.53848000" + }, + { + "id": "8024", + "name": "Yoogali", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.29944000", + "longitude": "146.08443000" + }, + { + "id": "8028", + "name": "Young", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.31350000", + "longitude": "148.30107000" + }, + { + "id": "8030", + "name": "Yowie Bay", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05116000", + "longitude": "151.10228000" + }, + { + "id": "8033", + "name": "Zetland", + "state_id": 3909, + "state_code": "NSW", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.90748000", + "longitude": "151.20857000" + }, + { + "id": "3928", + "name": "Alawa", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.37954000", + "longitude": "130.87320000" + }, + { + "id": "3957", + "name": "Alice Springs", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.69748000", + "longitude": "133.88362000" + }, + { + "id": "3973", + "name": "Alyangula", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-13.85413000", + "longitude": "136.42129000" + }, + { + "id": "3989", + "name": "Anula", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.39125000", + "longitude": "130.89047000" + }, + { + "id": "3993", + "name": "Araluen", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.69601000", + "longitude": "133.85400000" + }, + { + "id": "4067", + "name": "Bakewell", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.49684000", + "longitude": "130.99344000" + }, + { + "id": "4121", + "name": "Barkly", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.54154000", + "longitude": "134.82364000" + }, + { + "id": "4194", + "name": "Bellamack", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.51707000", + "longitude": "130.98355000" + }, + { + "id": "4215", + "name": "Belyuen", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.53819000", + "longitude": "130.68317000" + }, + { + "id": "4241", + "name": "Berrimah", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.43507000", + "longitude": "130.92606000" + }, + { + "id": "4380", + "name": "Braitling", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.68005000", + "longitude": "133.86877000" + }, + { + "id": "4409", + "name": "Brinkin", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.37057000", + "longitude": "130.86799000" + }, + { + "id": "4651", + "name": "Central Desert", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.07203000", + "longitude": "133.49949000" + }, + { + "id": "4761", + "name": "Coconut Grove", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.39602000", + "longitude": "130.85186000" + }, + { + "id": "4814", + "name": "Coomalie", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-13.04322000", + "longitude": "131.08427000" + }, + { + "id": "4846", + "name": "Cossack", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-14.45551000", + "longitude": "132.17482000" + }, + { + "id": "4947", + "name": "Darwin", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.46113000", + "longitude": "130.84185000" + }, + { + "id": "4982", + "name": "Desert Springs", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.71554000", + "longitude": "133.88768000" + }, + { + "id": "5027", + "name": "Driver", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.48602000", + "longitude": "130.97539000" + }, + { + "id": "5048", + "name": "Durack", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.47308000", + "longitude": "130.97208000" + }, + { + "id": "5063", + "name": "East Arnhem", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.66175000", + "longitude": "135.82281000" + }, + { + "id": "5094", + "name": "East Side", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.69195000", + "longitude": "133.89320000" + }, + { + "id": "5216", + "name": "Fannie Bay", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.42275000", + "longitude": "130.83627000" + }, + { + "id": "5218", + "name": "Farrar", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.48028000", + "longitude": "130.99820000" + }, + { + "id": "5299", + "name": "Galiwinku", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.02811000", + "longitude": "135.56486000" + }, + { + "id": "5333", + "name": "Gillen", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.70915000", + "longitude": "133.86596000" + }, + { + "id": "5343", + "name": "Girraween", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.52528000", + "longitude": "131.09566000" + }, + { + "id": "5443", + "name": "Gray", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.49036000", + "longitude": "130.98228000" + }, + { + "id": "5482", + "name": "Gunbalanya", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.32474000", + "longitude": "133.05087000" + }, + { + "id": "5486", + "name": "Gunn", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.48765000", + "longitude": "130.99322000" + }, + { + "id": "5581", + "name": "Herbert", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.53414000", + "longitude": "131.16197000" + }, + { + "id": "5640", + "name": "Holtze", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.44850000", + "longitude": "131.00556000" + }, + { + "id": "5658", + "name": "Howard Springs", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.49576000", + "longitude": "131.04446000" + }, + { + "id": "5666", + "name": "Humpty Doo", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.58406000", + "longitude": "131.13674000" + }, + { + "id": "5712", + "name": "Jabiru", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.67049000", + "longitude": "132.83604000" + }, + { + "id": "5738", + "name": "Jingili", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.38895000", + "longitude": "130.87281000" + }, + { + "id": "5739", + "name": "Johnston", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.48764000", + "longitude": "131.01169000" + }, + { + "id": "5784", + "name": "Karama", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.40219000", + "longitude": "130.91600000" + }, + { + "id": "5797", + "name": "Katherine", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-14.65012000", + "longitude": "132.17414000" + }, + { + "id": "5798", + "name": "Katherine East", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-14.46597000", + "longitude": "132.28556000" + }, + { + "id": "5799", + "name": "Katherine South", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-14.46784000", + "longitude": "132.25848000" + }, + { + "id": "5975", + "name": "Larapinta", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.69303000", + "longitude": "133.83137000" + }, + { + "id": "5979", + "name": "Larrakeyah", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.45527000", + "longitude": "130.83172000" + }, + { + "id": "5995", + "name": "Leanyer", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.36667000", + "longitude": "130.90000000" + }, + { + "id": "6033", + "name": "Litchfield", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.50228000", + "longitude": "131.12785000" + }, + { + "id": "6084", + "name": "Ludmilla", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.42032000", + "longitude": "130.85506000" + }, + { + "id": "6094", + "name": "Lyons", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.35912000", + "longitude": "130.88852000" + }, + { + "id": "6096", + "name": "MacDonnell", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.42671000", + "longitude": "133.49982000" + }, + { + "id": "6133", + "name": "Malak", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.39288000", + "longitude": "130.90395000" + }, + { + "id": "6149", + "name": "Maningrida", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.04830000", + "longitude": "134.22941000" + }, + { + "id": "6191", + "name": "Marrara", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.40041000", + "longitude": "130.89290000" + }, + { + "id": "6287", + "name": "Milingimbi", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.10188000", + "longitude": "134.91901000" + }, + { + "id": "6297", + "name": "Millner", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.39186000", + "longitude": "130.86252000" + }, + { + "id": "6336", + "name": "Moil", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.38850000", + "longitude": "130.88088000" + }, + { + "id": "6403", + "name": "Moulden", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.50559000", + "longitude": "130.97313000" + }, + { + "id": "6472", + "name": "Muirhead", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.35863000", + "longitude": "130.89352000" + }, + { + "id": "6512", + "name": "Nakara", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.37054000", + "longitude": "130.87728000" + }, + { + "id": "6582", + "name": "Ngukurr", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-14.73081000", + "longitude": "134.73102000" + }, + { + "id": "6585", + "name": "Nhulunbuy", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.18165000", + "longitude": "136.77841000" + }, + { + "id": "6592", + "name": "Nightcliff", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.38299000", + "longitude": "130.85170000" + }, + { + "id": "6769", + "name": "Palmerston", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.49620000", + "longitude": "130.97797000" + }, + { + "id": "6784", + "name": "Parap", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.43054000", + "longitude": "130.84142000" + }, + { + "id": "6964", + "name": "Rapid Creek", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.38042000", + "longitude": "130.85919000" + }, + { + "id": "7056", + "name": "Roper Gulf", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-15.30564000", + "longitude": "134.97356000" + }, + { + "id": "7061", + "name": "Rosebery", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.51046000", + "longitude": "130.98780000" + }, + { + "id": "7075", + "name": "Ross", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.74424000", + "longitude": "133.90358000" + }, + { + "id": "7103", + "name": "Sadadeen", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.70399000", + "longitude": "133.90043000" + }, + { + "id": "7369", + "name": "Stuart Park", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.44860000", + "longitude": "130.84249000" + }, + { + "id": "7468", + "name": "Tennant Creek", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.64970000", + "longitude": "134.19147000" + }, + { + "id": "7485", + "name": "The Gap", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.71333000", + "longitude": "133.87386000" + }, + { + "id": "7521", + "name": "Tiwi", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.35876000", + "longitude": "130.87800000" + }, + { + "id": "7522", + "name": "Tiwi Islands", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-11.55324000", + "longitude": "130.78178000" + }, + { + "id": "7632", + "name": "Victoria Daly", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-15.92920000", + "longitude": "130.76166000" + }, + { + "id": "7643", + "name": "Virginia", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.51895000", + "longitude": "131.02844000" + }, + { + "id": "7649", + "name": "Wadeye", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-14.23834000", + "longitude": "129.52177000" + }, + { + "id": "7650", + "name": "Wagait", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.44161000", + "longitude": "130.75370000" + }, + { + "id": "7651", + "name": "Wagaman", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.38074000", + "longitude": "130.88538000" + }, + { + "id": "7690", + "name": "Wanguri", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.37129000", + "longitude": "130.88815000" + }, + { + "id": "7775", + "name": "West Arnhem", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.38723000", + "longitude": "133.37935000" + }, + { + "id": "7925", + "name": "Woodroffe", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.50173000", + "longitude": "130.98016000" + }, + { + "id": "7958", + "name": "Wulagi", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.38345000", + "longitude": "130.89543000" + }, + { + "id": "7963", + "name": "Wurrumiyanga", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-11.76082000", + "longitude": "130.62555000" + }, + { + "id": "8031", + "name": "Yulara", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.24060000", + "longitude": "130.98890000" + }, + { + "id": "8036", + "name": "Zuccoli", + "state_id": 3910, + "state_code": "NT", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.50727000", + "longitude": "131.00694000" + }, + { + "id": "3914", + "name": "Acacia Ridge", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58333000", + "longitude": "153.03333000" + }, + { + "id": "3922", + "name": "Agnes Water", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.21190000", + "longitude": "151.90350000" + }, + { + "id": "3925", + "name": "Airlie Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.26751000", + "longitude": "148.71471000" + }, + { + "id": "3927", + "name": "Aitkenvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.30142000", + "longitude": "146.77082000" + }, + { + "id": "3931", + "name": "Albany Creek", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.35364000", + "longitude": "152.96848000" + }, + { + "id": "3942", + "name": "Alderley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.42553000", + "longitude": "153.00102000" + }, + { + "id": "3943", + "name": "Aldershot", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.46312000", + "longitude": "152.66348000" + }, + { + "id": "3948", + "name": "Alexandra Headland", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.67154000", + "longitude": "153.10058000" + }, + { + "id": "3949", + "name": "Alexandra Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53221000", + "longitude": "153.22889000" + }, + { + "id": "3955", + "name": "Algester", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61279000", + "longitude": "153.03239000" + }, + { + "id": "3956", + "name": "Alice River", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.33437000", + "longitude": "146.61391000" + }, + { + "id": "3963", + "name": "Allenstown", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.39403000", + "longitude": "150.50393000" + }, + { + "id": "3964", + "name": "Alligator Creek", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.39176000", + "longitude": "146.93784000" + }, + { + "id": "3965", + "name": "Allora", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.03484000", + "longitude": "151.98058000" + }, + { + "id": "3969", + "name": "Alton Downs", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.30000000", + "longitude": "150.35000000" + }, + { + "id": "3977", + "name": "Andergrove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.08333000", + "longitude": "149.18333000" + }, + { + "id": "3985", + "name": "Annandale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.31503000", + "longitude": "146.79069000" + }, + { + "id": "3987", + "name": "Annerley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.51228000", + "longitude": "153.03248000" + }, + { + "id": "3988", + "name": "Anstead", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53781000", + "longitude": "152.86187000" + }, + { + "id": "3994", + "name": "Arana Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.39808000", + "longitude": "152.95797000" + }, + { + "id": "4008", + "name": "Aroona", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.78173000", + "longitude": "153.11652000" + }, + { + "id": "4010", + "name": "Arundel", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.93768000", + "longitude": "153.36302000" + }, + { + "id": "4011", + "name": "Ascot", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.43154000", + "longitude": "153.05800000" + }, + { + "id": "4024", + "name": "Ashgrove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.44552000", + "longitude": "152.99200000" + }, + { + "id": "4026", + "name": "Ashmore", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.98883000", + "longitude": "153.37647000" + }, + { + "id": "4031", + "name": "Aspley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.36667000", + "longitude": "153.01667000" + }, + { + "id": "4034", + "name": "Atherton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.26864000", + "longitude": "145.47522000" + }, + { + "id": "4041", + "name": "Auchenflower", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47443000", + "longitude": "152.99213000" + }, + { + "id": "4044", + "name": "Augustine Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66047000", + "longitude": "152.87896000" + }, + { + "id": "4045", + "name": "Aurukun", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-13.51263000", + "longitude": "141.82435000" + }, + { + "id": "4052", + "name": "Avenell Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.88960000", + "longitude": "152.36786000" + }, + { + "id": "4054", + "name": "Avoca", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.87822000", + "longitude": "152.30794000" + }, + { + "id": "4058", + "name": "Ayr", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.57393000", + "longitude": "147.40666000" + }, + { + "id": "4059", + "name": "Babinda", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.34390000", + "longitude": "145.92265000" + }, + { + "id": "4063", + "name": "Bahrs Scrub", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.73333000", + "longitude": "153.16667000" + }, + { + "id": "4065", + "name": "Bakers Creek", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.21990000", + "longitude": "149.14681000" + }, + { + "id": "4071", + "name": "Bald Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.32112000", + "longitude": "153.00857000" + }, + { + "id": "4087", + "name": "Balmoral", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.45341000", + "longitude": "153.06680000" + }, + { + "id": "4089", + "name": "Balonne Shire", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.28481000", + "longitude": "148.17933000" + }, + { + "id": "4093", + "name": "Bamaga", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-10.89197000", + "longitude": "142.38934000" + }, + { + "id": "4094", + "name": "Banana", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.80653000", + "longitude": "149.89838000" + }, + { + "id": "4100", + "name": "Banksia Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.04027000", + "longitude": "153.14390000" + }, + { + "id": "4106", + "name": "Banyo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.38236000", + "longitude": "153.07903000" + }, + { + "id": "4110", + "name": "Barcaldine", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.05203000", + "longitude": "145.43490000" + }, + { + "id": "4111", + "name": "Barcoo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.17292000", + "longitude": "142.46481000" + }, + { + "id": "4114", + "name": "Bardon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46100000", + "longitude": "152.97920000" + }, + { + "id": "4117", + "name": "Barellan Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.57196000", + "longitude": "152.84379000" + }, + { + "id": "4118", + "name": "Bargara", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.81476000", + "longitude": "152.46257000" + }, + { + "id": "4123", + "name": "Barney Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.84793000", + "longitude": "151.26577000" + }, + { + "id": "4144", + "name": "Battery Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.77878000", + "longitude": "153.12887000" + }, + { + "id": "4156", + "name": "Bayview Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.96229000", + "longitude": "145.72585000" + }, + { + "id": "4158", + "name": "Beachmere", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.12808000", + "longitude": "153.05243000" + }, + { + "id": "4163", + "name": "Beaconsfield", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.09121000", + "longitude": "149.16544000" + }, + { + "id": "4165", + "name": "Beaudesert", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.98691000", + "longitude": "152.99657000" + }, + { + "id": "4179", + "name": "Beenleigh", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.71137000", + "longitude": "153.20290000" + }, + { + "id": "4180", + "name": "Beerwah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.85881000", + "longitude": "152.96144000" + }, + { + "id": "4187", + "name": "Belgian Gardens", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.24507000", + "longitude": "146.79455000" + }, + { + "id": "4196", + "name": "Bellara", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.06392000", + "longitude": "153.14959000" + }, + { + "id": "4198", + "name": "Bellbird Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63674000", + "longitude": "152.88663000" + }, + { + "id": "4199", + "name": "Bellbowrie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55939000", + "longitude": "152.88278000" + }, + { + "id": "4206", + "name": "Bellmere", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.08441000", + "longitude": "152.89003000" + }, + { + "id": "4208", + "name": "Belmont", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.49882000", + "longitude": "153.13400000" + }, + { + "id": "4217", + "name": "Benaraby", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.00417000", + "longitude": "151.33410000" + }, + { + "id": "4221", + "name": "Benowa", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.00770000", + "longitude": "153.38583000" + }, + { + "id": "4226", + "name": "Bentley Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.00389000", + "longitude": "145.73819000" + }, + { + "id": "4242", + "name": "Berrinba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.65853000", + "longitude": "153.07888000" + }, + { + "id": "4244", + "name": "Berserker", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.35817000", + "longitude": "150.52042000" + }, + { + "id": "4258", + "name": "Biggera Waters", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.93239000", + "longitude": "153.40021000" + }, + { + "id": "4261", + "name": "Bilinga", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.16667000", + "longitude": "153.51667000" + }, + { + "id": "4263", + "name": "Biloela", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.39589000", + "longitude": "150.51504000" + }, + { + "id": "4269", + "name": "Birkdale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48333000", + "longitude": "153.21667000" + }, + { + "id": "4273", + "name": "Birtinya", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.74322000", + "longitude": "153.11913000" + }, + { + "id": "4277", + "name": "Black Mountain", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.39886000", + "longitude": "152.87561000" + }, + { + "id": "4278", + "name": "Black River", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.22517000", + "longitude": "146.61787000" + }, + { + "id": "4280", + "name": "Blackall", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.42327000", + "longitude": "145.46303000" + }, + { + "id": "4281", + "name": "Blackall Tambo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.78795000", + "longitude": "145.97279000" + }, + { + "id": "4290", + "name": "Blacks Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.05466000", + "longitude": "149.18971000" + }, + { + "id": "4295", + "name": "Blackwater", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.58351000", + "longitude": "148.87912000" + }, + { + "id": "4305", + "name": "Bli Bli", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.61724000", + "longitude": "153.03665000" + }, + { + "id": "4311", + "name": "Bluewater", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.18157000", + "longitude": "146.55820000" + }, + { + "id": "4319", + "name": "Bohle Plains", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.31365000", + "longitude": "146.69186000" + }, + { + "id": "4320", + "name": "Bokarina", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.73843000", + "longitude": "153.13049000" + }, + { + "id": "4329", + "name": "Bongaree", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.08367000", + "longitude": "153.15942000" + }, + { + "id": "4336", + "name": "Bonogin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.13930000", + "longitude": "153.35297000" + }, + { + "id": "4339", + "name": "Booie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.53677000", + "longitude": "151.94181000" + }, + { + "id": "4341", + "name": "Boonah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.99724000", + "longitude": "152.68108000" + }, + { + "id": "4342", + "name": "Boondall", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.35317000", + "longitude": "153.06092000" + }, + { + "id": "4345", + "name": "Booral", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.36048000", + "longitude": "152.90810000" + }, + { + "id": "4347", + "name": "Booval", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61328000", + "longitude": "152.78944000" + }, + { + "id": "4350", + "name": "Boronia Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.68855000", + "longitude": "153.01959000" + }, + { + "id": "4357", + "name": "Bouldercombe", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.57054000", + "longitude": "150.46951000" + }, + { + "id": "4358", + "name": "Boulia", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.27908000", + "longitude": "139.62534000" + }, + { + "id": "4362", + "name": "Bowen", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.01367000", + "longitude": "148.24754000" + }, + { + "id": "4363", + "name": "Bowen Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.44369000", + "longitude": "153.03728000" + }, + { + "id": "4372", + "name": "Boyne Island", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.94829000", + "longitude": "151.35336000" + }, + { + "id": "4375", + "name": "Bracken Ridge", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.31710000", + "longitude": "153.03097000" + }, + { + "id": "4381", + "name": "Brandon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.55389000", + "longitude": "147.35304000" + }, + { + "id": "4383", + "name": "Branyan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.91347000", + "longitude": "152.27251000" + }, + { + "id": "4384", + "name": "Brassall", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.59753000", + "longitude": "152.74755000" + }, + { + "id": "4385", + "name": "Bray Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.29246000", + "longitude": "152.96783000" + }, + { + "id": "4389", + "name": "Brendale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.32114000", + "longitude": "152.98393000" + }, + { + "id": "4394", + "name": "Bridgeman Downs", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.35538000", + "longitude": "152.99432000" + }, + { + "id": "4402", + "name": "Brighton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.29582000", + "longitude": "153.05721000" + }, + { + "id": "4410", + "name": "Brinsmead", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.89921000", + "longitude": "145.71554000" + }, + { + "id": "4411", + "name": "Brisbane", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46794000", + "longitude": "153.02809000" + }, + { + "id": "4412", + "name": "Broadbeach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.02782000", + "longitude": "153.43343000" + }, + { + "id": "4413", + "name": "Broadbeach Waters", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.03498000", + "longitude": "153.42502000" + }, + { + "id": "4426", + "name": "Brookfield", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.50000000", + "longitude": "152.90000000" + }, + { + "id": "4431", + "name": "Brookwater", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66128000", + "longitude": "152.89669000" + }, + { + "id": "4443", + "name": "Bucasia", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.03494000", + "longitude": "149.15726000" + }, + { + "id": "4444", + "name": "Bucca", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.86667000", + "longitude": "152.10000000" + }, + { + "id": "4445", + "name": "Buccan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.75000000", + "longitude": "153.13333000" + }, + { + "id": "4446", + "name": "Buddina", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.69565000", + "longitude": "153.13302000" + }, + { + "id": "4447", + "name": "Buderim", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.68443000", + "longitude": "153.05705000" + }, + { + "id": "4452", + "name": "Bulimba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.44990000", + "longitude": "153.05766000" + }, + { + "id": "4457", + "name": "Bulloo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.83079000", + "longitude": "142.91280000" + }, + { + "id": "4461", + "name": "Bundaberg", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.97305000", + "longitude": "151.98442000" + }, + { + "id": "4462", + "name": "Bundaberg East", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.85860000", + "longitude": "152.38003000" + }, + { + "id": "4463", + "name": "Bundaberg North", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.84914000", + "longitude": "152.34638000" + }, + { + "id": "4464", + "name": "Bundaberg South", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.87277000", + "longitude": "152.35986000" + }, + { + "id": "4465", + "name": "Bundaberg West", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.87265000", + "longitude": "152.33647000" + }, + { + "id": "4466", + "name": "Bundall", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.01111000", + "longitude": "153.40479000" + }, + { + "id": "4467", + "name": "Bundamba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60947000", + "longitude": "152.81133000" + }, + { + "id": "4471", + "name": "Bungalow", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.93855000", + "longitude": "145.75634000" + }, + { + "id": "4475", + "name": "Bunya", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.36940000", + "longitude": "152.94331000" + }, + { + "id": "4477", + "name": "Burbank", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55584000", + "longitude": "153.14701000" + }, + { + "id": "4478", + "name": "Burdekin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.84934000", + "longitude": "147.27239000" + }, + { + "id": "4479", + "name": "Burdell", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.25056000", + "longitude": "146.69877000" + }, + { + "id": "4480", + "name": "Burke", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.06461000", + "longitude": "139.03748000" + }, + { + "id": "4481", + "name": "Burleigh Heads", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.10000000", + "longitude": "153.45000000" + }, + { + "id": "4482", + "name": "Burleigh Waters", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.09975000", + "longitude": "153.42463000" + }, + { + "id": "4483", + "name": "Burnett Heads", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.76468000", + "longitude": "152.41270000" + }, + { + "id": "4488", + "name": "Burnside", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.63255000", + "longitude": "152.94063000" + }, + { + "id": "4491", + "name": "Burpengary", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.15746000", + "longitude": "152.95758000" + }, + { + "id": "4492", + "name": "Burpengary East", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.14447000", + "longitude": "152.99968000" + }, + { + "id": "4497", + "name": "Burrum Heads", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.18457000", + "longitude": "152.61263000" + }, + { + "id": "4504", + "name": "Bushland Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.19134000", + "longitude": "146.67682000" + }, + { + "id": "4515", + "name": "Cabarlah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.43333000", + "longitude": "152.00000000" + }, + { + "id": "4518", + "name": "Caboolture", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.08465000", + "longitude": "152.95110000" + }, + { + "id": "4519", + "name": "Caboolture South", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.09389000", + "longitude": "152.94874000" + }, + { + "id": "4524", + "name": "Cairns", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.90268000", + "longitude": "145.75287000" + }, + { + "id": "4525", + "name": "Cairns City", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.92069000", + "longitude": "145.77358000" + }, + { + "id": "4526", + "name": "Cairns North", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.90406000", + "longitude": "145.75703000" + }, + { + "id": "4528", + "name": "Calamvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.62329000", + "longitude": "153.04785000" + }, + { + "id": "4533", + "name": "Calliope", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.00705000", + "longitude": "151.20033000" + }, + { + "id": "4534", + "name": "Caloundra", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.80346000", + "longitude": "153.12195000" + }, + { + "id": "4535", + "name": "Caloundra West", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.80634000", + "longitude": "153.10894000" + }, + { + "id": "4539", + "name": "Cambooya", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.71454000", + "longitude": "151.86029000" + }, + { + "id": "4550", + "name": "Camira", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63461000", + "longitude": "152.92091000" + }, + { + "id": "4552", + "name": "Camp Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.49354000", + "longitude": "153.07629000" + }, + { + "id": "4553", + "name": "Camp Mountain", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.40000000", + "longitude": "152.88333000" + }, + { + "id": "4572", + "name": "Cannon Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47237000", + "longitude": "153.09475000" + }, + { + "id": "4573", + "name": "Cannonvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.27681000", + "longitude": "148.69759000" + }, + { + "id": "4578", + "name": "Canungra", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.01689000", + "longitude": "153.16525000" + }, + { + "id": "4579", + "name": "Capalaba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54333000", + "longitude": "153.20287000" + }, + { + "id": "4582", + "name": "Capella", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.08593000", + "longitude": "148.02206000" + }, + { + "id": "4583", + "name": "Caravonica", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.87063000", + "longitude": "145.68099000" + }, + { + "id": "4584", + "name": "Carbrook", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.68333000", + "longitude": "153.25000000" + }, + { + "id": "4590", + "name": "Cardwell", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.26693000", + "longitude": "146.02804000" + }, + { + "id": "4592", + "name": "Carina Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.50721000", + "longitude": "153.09126000" + }, + { + "id": "4593", + "name": "Carindale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.50578000", + "longitude": "153.10236000" + }, + { + "id": "4608", + "name": "Carpentaria", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.32216000", + "longitude": "141.35310000" + }, + { + "id": "4611", + "name": "Carrara", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.02151000", + "longitude": "153.36635000" + }, + { + "id": "4616", + "name": "Carseldine", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.34753000", + "longitude": "153.02307000" + }, + { + "id": "4622", + "name": "Cashmere", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.29767000", + "longitude": "152.90662000" + }, + { + "id": "4624", + "name": "Cassowary Coast", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.96785000", + "longitude": "145.96561000" + }, + { + "id": "4644", + "name": "Cedar Grove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.86667000", + "longitude": "152.98333000" + }, + { + "id": "4645", + "name": "Cedar Vale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.88923000", + "longitude": "153.02891000" + }, + { + "id": "4647", + "name": "Centenary Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58684000", + "longitude": "151.96249000" + }, + { + "id": "4654", + "name": "Central Highlands", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.06336000", + "longitude": "148.31958000" + }, + { + "id": "4658", + "name": "Chambers Flat", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.74811000", + "longitude": "153.07764000" + }, + { + "id": "4660", + "name": "Chandler", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.51398000", + "longitude": "153.14907000" + }, + { + "id": "4661", + "name": "Chapel Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.50264000", + "longitude": "152.95012000" + }, + { + "id": "4666", + "name": "Charleville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.40542000", + "longitude": "146.24274000" + }, + { + "id": "4670", + "name": "Charters Towers", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.20927000", + "longitude": "145.81645000" + }, + { + "id": "4671", + "name": "Charters Towers City", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.07774000", + "longitude": "146.26275000" + }, + { + "id": "4674", + "name": "Chatsworth", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.14398000", + "longitude": "152.61503000" + }, + { + "id": "4675", + "name": "Chelmer", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.51326000", + "longitude": "152.97524000" + }, + { + "id": "4680", + "name": "Cherbourg", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.28750000", + "longitude": "151.93279000" + }, + { + "id": "4681", + "name": "Chermside", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.38472000", + "longitude": "153.03062000" + }, + { + "id": "4682", + "name": "Chermside West", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.38383000", + "longitude": "153.01586000" + }, + { + "id": "4690", + "name": "Childers", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.23708000", + "longitude": "152.27876000" + }, + { + "id": "4692", + "name": "Chinchilla", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.73787000", + "longitude": "150.62970000" + }, + { + "id": "4703", + "name": "Churchill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.64233000", + "longitude": "152.75022000" + }, + { + "id": "4706", + "name": "Chuwar", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56620000", + "longitude": "152.77844000" + }, + { + "id": "4728", + "name": "Clayfield", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.41894000", + "longitude": "153.05818000" + }, + { + "id": "4732", + "name": "Clear Island Waters", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.05308000", + "longitude": "153.39815000" + }, + { + "id": "4735", + "name": "Clermont", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.82407000", + "longitude": "147.63635000" + }, + { + "id": "4737", + "name": "Cleveland", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.52677000", + "longitude": "153.26516000" + }, + { + "id": "4738", + "name": "Clifton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.93374000", + "longitude": "151.90660000" + }, + { + "id": "4739", + "name": "Clifton Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.76313000", + "longitude": "145.67167000" + }, + { + "id": "4742", + "name": "Clinton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.87518000", + "longitude": "151.21793000" + }, + { + "id": "4743", + "name": "Cloncurry", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.69889000", + "longitude": "140.27115000" + }, + { + "id": "4744", + "name": "Clontarf", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.25341000", + "longitude": "153.07835000" + }, + { + "id": "4762", + "name": "Coes Creek", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.64720000", + "longitude": "152.94943000" + }, + { + "id": "4776", + "name": "Collingwood Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61282000", + "longitude": "152.86008000" + }, + { + "id": "4777", + "name": "Collinsville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.55223000", + "longitude": "147.84399000" + }, + { + "id": "4789", + "name": "Condon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.32968000", + "longitude": "146.71663000" + }, + { + "id": "4796", + "name": "Cooee Bay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.14427000", + "longitude": "150.76113000" + }, + { + "id": "4800", + "name": "Cook Shire", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-13.68149000", + "longitude": "143.53156000" + }, + { + "id": "4802", + "name": "Cooktown", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-15.46570000", + "longitude": "145.24984000" + }, + { + "id": "4805", + "name": "Coolangatta", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.16944000", + "longitude": "153.53471000" + }, + { + "id": "4810", + "name": "Cooloola Cove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.98640000", + "longitude": "152.99355000" + }, + { + "id": "4812", + "name": "Coolum Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.52830000", + "longitude": "153.08809000" + }, + { + "id": "4815", + "name": "Coombabah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.91073000", + "longitude": "153.37093000" + }, + { + "id": "4817", + "name": "Coomera", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.84333000", + "longitude": "153.33901000" + }, + { + "id": "4818", + "name": "Coominya", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.39009000", + "longitude": "152.50060000" + }, + { + "id": "4821", + "name": "Coopers Plains", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56463000", + "longitude": "153.04067000" + }, + { + "id": "4822", + "name": "Cooran", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.33689000", + "longitude": "152.82246000" + }, + { + "id": "4824", + "name": "Cooroibah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.36316000", + "longitude": "152.98599000" + }, + { + "id": "4826", + "name": "Cooroy", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.41778000", + "longitude": "152.91149000" + }, + { + "id": "4827", + "name": "Coorparoo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.49325000", + "longitude": "153.05826000" + }, + { + "id": "4830", + "name": "Coppabella", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.94710000", + "longitude": "148.30050000" + }, + { + "id": "4833", + "name": "Coral Cove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.88309000", + "longitude": "152.48266000" + }, + { + "id": "4836", + "name": "Corinda", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54381000", + "longitude": "152.98215000" + }, + { + "id": "4840", + "name": "Cornubia", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66667000", + "longitude": "153.21667000" + }, + { + "id": "4847", + "name": "Cotswold Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.52241000", + "longitude": "151.89516000" + }, + { + "id": "4861", + "name": "Craiglie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.53789000", + "longitude": "145.46963000" + }, + { + "id": "4863", + "name": "Craignish", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.28258000", + "longitude": "152.72429000" + }, + { + "id": "4870", + "name": "Cranbrook", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.30553000", + "longitude": "146.75286000" + }, + { + "id": "4872", + "name": "Cranley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.51504000", + "longitude": "151.92300000" + }, + { + "id": "4879", + "name": "Crestmead", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.68759000", + "longitude": "153.08444000" + }, + { + "id": "4888", + "name": "Crows Nest", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.25993000", + "longitude": "152.05164000" + }, + { + "id": "4891", + "name": "Croydon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.51360000", + "longitude": "142.32249000" + }, + { + "id": "4905", + "name": "Cunnamulla", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.06766000", + "longitude": "145.68439000" + }, + { + "id": "4907", + "name": "Curra", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.06667000", + "longitude": "152.58333000" + }, + { + "id": "4908", + "name": "Currajong", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.27566000", + "longitude": "146.77918000" + }, + { + "id": "4912", + "name": "Currimundi", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.76925000", + "longitude": "153.12237000" + }, + { + "id": "4913", + "name": "Currumbin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.13649000", + "longitude": "153.48158000" + }, + { + "id": "4914", + "name": "Currumbin Valley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.20805000", + "longitude": "153.39424000" + }, + { + "id": "4915", + "name": "Currumbin Waters", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.15442000", + "longitude": "153.47282000" + }, + { + "id": "4920", + "name": "Daisy Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63026000", + "longitude": "153.15784000" + }, + { + "id": "4921", + "name": "Dakabin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.22594000", + "longitude": "152.99097000" + }, + { + "id": "4922", + "name": "Dalby", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.18169000", + "longitude": "151.26205000" + }, + { + "id": "4939", + "name": "Darling Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.59659000", + "longitude": "151.93045000" + }, + { + "id": "4946", + "name": "Darra", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56693000", + "longitude": "152.95395000" + }, + { + "id": "4953", + "name": "Dayboro", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.19632000", + "longitude": "152.82253000" + }, + { + "id": "5054", + "name": "D’Aguilar", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.98333000", + "longitude": "152.80000000" + }, + { + "id": "4956", + "name": "Deagon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.32788000", + "longitude": "153.06126000" + }, + { + "id": "4959", + "name": "Deception Bay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.19354000", + "longitude": "153.02631000" + }, + { + "id": "4961", + "name": "Deebing Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66719000", + "longitude": "152.74867000" + }, + { + "id": "4963", + "name": "Deeragun", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.24741000", + "longitude": "146.67570000" + }, + { + "id": "4966", + "name": "Delaneys Creek", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.00021000", + "longitude": "152.79553000" + }, + { + "id": "4976", + "name": "Depot Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.39024000", + "longitude": "150.52102000" + }, + { + "id": "4986", + "name": "Diamantina", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.57676000", + "longitude": "140.07163000" + }, + { + "id": "4990", + "name": "Dicky Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.78364000", + "longitude": "153.13766000" + }, + { + "id": "4991", + "name": "Diddillibah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.64166000", + "longitude": "153.04959000" + }, + { + "id": "4994", + "name": "Dimbulah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.14752000", + "longitude": "145.10969000" + }, + { + "id": "5008", + "name": "Doolandella", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61328000", + "longitude": "152.98547000" + }, + { + "id": "5009", + "name": "Doomadgee", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.63879000", + "longitude": "138.74359000" + }, + { + "id": "5010", + "name": "Doonan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.43964000", + "longitude": "152.99204000" + }, + { + "id": "5018", + "name": "Douglas", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.32394000", + "longitude": "146.75234000" + }, + { + "id": "5025", + "name": "Drayton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60011000", + "longitude": "151.90109000" + }, + { + "id": "5026", + "name": "Drewvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.64768000", + "longitude": "153.05458000" + }, + { + "id": "5043", + "name": "Dundowran Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.26934000", + "longitude": "152.76232000" + }, + { + "id": "5049", + "name": "Durack", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58947000", + "longitude": "152.98577000" + }, + { + "id": "5051", + "name": "Dutton Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.49662000", + "longitude": "153.02796000" + }, + { + "id": "5053", + "name": "Dysart", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.58825000", + "longitude": "148.34924000" + }, + { + "id": "5057", + "name": "Eagleby", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.68333000", + "longitude": "153.21667000" + }, + { + "id": "5060", + "name": "Earlville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.95078000", + "longitude": "145.73308000" + }, + { + "id": "5068", + "name": "East Brisbane", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48099000", + "longitude": "153.04401000" + }, + { + "id": "5079", + "name": "East Innisfail", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.53324000", + "longitude": "146.03487000" + }, + { + "id": "5080", + "name": "East Ipswich", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60637000", + "longitude": "152.77232000" + }, + { + "id": "5088", + "name": "East Mackay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.14979000", + "longitude": "149.19640000" + }, + { + "id": "5096", + "name": "East Toowoomba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.57086000", + "longitude": "151.97422000" + }, + { + "id": "5098", + "name": "Eastern Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.62849000", + "longitude": "152.77828000" + }, + { + "id": "5102", + "name": "Eatons Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.33920000", + "longitude": "152.95990000" + }, + { + "id": "5109", + "name": "Edens Landing", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.70270000", + "longitude": "153.16943000" + }, + { + "id": "5111", + "name": "Edge Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.90000000", + "longitude": "145.75000000" + }, + { + "id": "5117", + "name": "Edmonton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.01902000", + "longitude": "145.74443000" + }, + { + "id": "5121", + "name": "Eight Mile Plains", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58333000", + "longitude": "153.10000000" + }, + { + "id": "5122", + "name": "Eimeo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.03766000", + "longitude": "149.17630000" + }, + { + "id": "5123", + "name": "Elanora", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.13577000", + "longitude": "153.44931000" + }, + { + "id": "5128", + "name": "Eli Waters", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.27922000", + "longitude": "152.80910000" + }, + { + "id": "5129", + "name": "Elimbah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.01667000", + "longitude": "152.95000000" + }, + { + "id": "5140", + "name": "Ellen Grove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61529000", + "longitude": "152.94385000" + }, + { + "id": "5143", + "name": "Elliott Heads", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.91622000", + "longitude": "152.48988000" + }, + { + "id": "5151", + "name": "Emerald", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.52296000", + "longitude": "148.15784000" + }, + { + "id": "5156", + "name": "Emu Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.25680000", + "longitude": "150.82679000" + }, + { + "id": "5163", + "name": "Enoggera", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.42832000", + "longitude": "152.97467000" + }, + { + "id": "5174", + "name": "Esk", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.23895000", + "longitude": "152.42223000" + }, + { + "id": "5182", + "name": "Etheridge", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.56276000", + "longitude": "143.53832000" + }, + { + "id": "5185", + "name": "Eudlo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.72963000", + "longitude": "152.95395000" + }, + { + "id": "5188", + "name": "Eumundi", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.47737000", + "longitude": "152.95115000" + }, + { + "id": "5199", + "name": "Everton Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.38909000", + "longitude": "152.97126000" + }, + { + "id": "5200", + "name": "Everton Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.40732000", + "longitude": "152.98840000" + }, + { + "id": "5207", + "name": "Fairfield", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.50644000", + "longitude": "153.02479000" + }, + { + "id": "5228", + "name": "Fernvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.45475000", + "longitude": "152.65321000" + }, + { + "id": "5230", + "name": "Ferny Grove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.40080000", + "longitude": "152.93475000" + }, + { + "id": "5231", + "name": "Ferny Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.39594000", + "longitude": "152.93737000" + }, + { + "id": "5233", + "name": "Fig Tree Pocket", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.52784000", + "longitude": "152.96190000" + }, + { + "id": "5240", + "name": "Fitzgibbon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.33971000", + "longitude": "153.02921000" + }, + { + "id": "5249", + "name": "Flinders", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.89030000", + "longitude": "144.38814000" + }, + { + "id": "5253", + "name": "Flinders View", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.65046000", + "longitude": "152.77451000" + }, + { + "id": "5262", + "name": "Forest Glen", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.68864000", + "longitude": "153.00453000" + }, + { + "id": "5265", + "name": "Forest Lake", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.62563000", + "longitude": "152.96883000" + }, + { + "id": "5267", + "name": "Forestdale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66334000", + "longitude": "153.00383000" + }, + { + "id": "5275", + "name": "Fortitude Valley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.45706000", + "longitude": "153.03178000" + }, + { + "id": "5285", + "name": "Fraser Coast", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.34145000", + "longitude": "152.67024000" + }, + { + "id": "5291", + "name": "Frenchville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.34761000", + "longitude": "150.54450000" + }, + { + "id": "5293", + "name": "Freshwater", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.88333000", + "longitude": "145.71667000" + }, + { + "id": "5298", + "name": "Gailes", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61133000", + "longitude": "152.91320000" + }, + { + "id": "5302", + "name": "Garbutt", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.26602000", + "longitude": "146.78224000" + }, + { + "id": "5308", + "name": "Gatton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55873000", + "longitude": "152.27618000" + }, + { + "id": "5309", + "name": "Gaven", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.95651000", + "longitude": "153.33453000" + }, + { + "id": "5313", + "name": "Gayndah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.62522000", + "longitude": "151.61144000" + }, + { + "id": "5314", + "name": "Gaythorne", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.41667000", + "longitude": "152.98333000" + }, + { + "id": "5315", + "name": "Geebung", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.37246000", + "longitude": "153.04712000" + }, + { + "id": "5337", + "name": "Gilston", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.03333000", + "longitude": "153.30000000" + }, + { + "id": "5338", + "name": "Gin Gin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.99363000", + "longitude": "151.95808000" + }, + { + "id": "5347", + "name": "Gladstone", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.01869000", + "longitude": "151.65818000" + }, + { + "id": "5348", + "name": "Gladstone Central", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.84281000", + "longitude": "151.24887000" + }, + { + "id": "5352", + "name": "Glass House Mountains", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.89758000", + "longitude": "152.95319000" + }, + { + "id": "5355", + "name": "Glen Eden", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.89738000", + "longitude": "151.27133000" + }, + { + "id": "5370", + "name": "Gleneagle", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.93333000", + "longitude": "152.98333000" + }, + { + "id": "5376", + "name": "Glenella", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.11768000", + "longitude": "149.14453000" + }, + { + "id": "5391", + "name": "Glenvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56818000", + "longitude": "151.89340000" + }, + { + "id": "5392", + "name": "Glenview", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.76667000", + "longitude": "153.01667000" + }, + { + "id": "5400", + "name": "Gold Coast", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.00029000", + "longitude": "153.43088000" + }, + { + "id": "5402", + "name": "Golden Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.82177000", + "longitude": "153.11972000" + }, + { + "id": "5407", + "name": "Gooburrum", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.82312000", + "longitude": "152.33154000" + }, + { + "id": "5408", + "name": "Goodna", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61046000", + "longitude": "152.89896000" + }, + { + "id": "5415", + "name": "Goondiwindi", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.46221000", + "longitude": "150.31345000" + }, + { + "id": "5421", + "name": "Gordon Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.41899000", + "longitude": "153.02547000" + }, + { + "id": "5422", + "name": "Gordonvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.09959000", + "longitude": "145.78038000" + }, + { + "id": "5430", + "name": "Gowrie Junction", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48333000", + "longitude": "151.88333000" + }, + { + "id": "5432", + "name": "Gracemere", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.43792000", + "longitude": "150.45749000" + }, + { + "id": "5433", + "name": "Graceville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.52201000", + "longitude": "152.98222000" + }, + { + "id": "5436", + "name": "Grange", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.42251000", + "longitude": "153.01527000" + }, + { + "id": "5440", + "name": "Granville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.54486000", + "longitude": "152.73346000" + }, + { + "id": "5453", + "name": "Greenbank", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.71667000", + "longitude": "152.98333000" + }, + { + "id": "5459", + "name": "Greenslopes", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.50815000", + "longitude": "153.04951000" + }, + { + "id": "5470", + "name": "Griffin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.27149000", + "longitude": "153.03942000" + }, + { + "id": "5479", + "name": "Gulliver", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.28814000", + "longitude": "146.77691000" + }, + { + "id": "5481", + "name": "Gumdale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.49188000", + "longitude": "153.15315000" + }, + { + "id": "5495", + "name": "Gympie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.18979000", + "longitude": "152.66499000" + }, + { + "id": "5496", + "name": "Gympie Regional Council", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.18881000", + "longitude": "152.65868000" + }, + { + "id": "5513", + "name": "Hamilton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.43896000", + "longitude": "153.06287000" + }, + { + "id": "5526", + "name": "Harlaxton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53333000", + "longitude": "151.96667000" + }, + { + "id": "5532", + "name": "Harristown", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58333000", + "longitude": "151.93333000" + }, + { + "id": "5536", + "name": "Hatton Vale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56667000", + "longitude": "152.46667000" + }, + { + "id": "5546", + "name": "Hawthorne", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46696000", + "longitude": "153.05779000" + }, + { + "id": "5548", + "name": "Hay Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.29646000", + "longitude": "149.27368000" + }, + { + "id": "5555", + "name": "Healy", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.74596000", + "longitude": "139.50010000" + }, + { + "id": "5561", + "name": "Heathwood", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63449000", + "longitude": "152.98814000" + }, + { + "id": "5562", + "name": "Heatley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.29035000", + "longitude": "146.75355000" + }, + { + "id": "5572", + "name": "Helensvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.91828000", + "longitude": "153.33275000" + }, + { + "id": "5573", + "name": "Helidon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55316000", + "longitude": "152.12398000" + }, + { + "id": "5574", + "name": "Hemmant", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.44776000", + "longitude": "153.13174000" + }, + { + "id": "5575", + "name": "Hendra", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.41775000", + "longitude": "153.07025000" + }, + { + "id": "5583", + "name": "Heritage Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.68273000", + "longitude": "153.06082000" + }, + { + "id": "5584", + "name": "Hermit Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.28741000", + "longitude": "146.80043000" + }, + { + "id": "5587", + "name": "Herston", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.44453000", + "longitude": "153.01852000" + }, + { + "id": "5588", + "name": "Hervey Bay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.28762000", + "longitude": "152.76936000" + }, + { + "id": "5596", + "name": "Highfields", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46343000", + "longitude": "151.95386000" + }, + { + "id": "5599", + "name": "Highgate Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48912000", + "longitude": "153.01878000" + }, + { + "id": "5600", + "name": "Highland Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.01392000", + "longitude": "153.33312000" + }, + { + "id": "5602", + "name": "Highvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.37227000", + "longitude": "152.80195000" + }, + { + "id": "5608", + "name": "Hillcrest", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66857000", + "longitude": "153.02614000" + }, + { + "id": "5616", + "name": "Hinchinbrook", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.65840000", + "longitude": "146.12296000" + }, + { + "id": "5626", + "name": "Hodgson Vale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66518000", + "longitude": "151.93251000" + }, + { + "id": "5631", + "name": "Holland Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.51704000", + "longitude": "153.06744000" + }, + { + "id": "5632", + "name": "Holland Park West", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.52625000", + "longitude": "153.06046000" + }, + { + "id": "5633", + "name": "Holloways Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.84209000", + "longitude": "145.73922000" + }, + { + "id": "5634", + "name": "Hollywell", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.90076000", + "longitude": "153.39609000" + }, + { + "id": "5636", + "name": "Holmview", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.71631000", + "longitude": "153.17045000" + }, + { + "id": "5641", + "name": "Home Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.65921000", + "longitude": "147.41232000" + }, + { + "id": "5644", + "name": "Hope Island", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.87036000", + "longitude": "153.35164000" + }, + { + "id": "5645", + "name": "Hope Vale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-15.13588000", + "longitude": "145.19248000" + }, + { + "id": "5657", + "name": "Howard", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.31934000", + "longitude": "152.55986000" + }, + { + "id": "5662", + "name": "Hughenden", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.84399000", + "longitude": "144.20035000" + }, + { + "id": "5679", + "name": "Hyde Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.27691000", + "longitude": "146.79653000" + }, + { + "id": "5681", + "name": "Idalia", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.30682000", + "longitude": "146.81389000" + }, + { + "id": "5685", + "name": "Inala", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.59715000", + "longitude": "152.97432000" + }, + { + "id": "5688", + "name": "Indooroopilly", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.50302000", + "longitude": "152.97518000" + }, + { + "id": "5689", + "name": "Ingham", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.64552000", + "longitude": "146.16248000" + }, + { + "id": "5694", + "name": "Innes Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.86833000", + "longitude": "152.47992000" + }, + { + "id": "5695", + "name": "Innisfail", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.52209000", + "longitude": "146.03102000" + }, + { + "id": "5696", + "name": "Innisfail Estate", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.51830000", + "longitude": "146.04474000" + }, + { + "id": "5702", + "name": "Ipswich", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.67790000", + "longitude": "152.66188000" + }, + { + "id": "5706", + "name": "Isaac", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.24346000", + "longitude": "148.23672000" + }, + { + "id": "5715", + "name": "Jacobs Well", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.77992000", + "longitude": "153.36153000" + }, + { + "id": "5717", + "name": "Jamboree Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55634000", + "longitude": "152.93402000" + }, + { + "id": "5722", + "name": "Jandowae", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.78411000", + "longitude": "151.11240000" + }, + { + "id": "5726", + "name": "Jensen", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.24570000", + "longitude": "146.65289000" + }, + { + "id": "5733", + "name": "Jimboomba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.83118000", + "longitude": "153.02737000" + }, + { + "id": "5736", + "name": "Jindalee", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53446000", + "longitude": "152.93843000" + }, + { + "id": "5745", + "name": "Joyner", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.27613000", + "longitude": "152.94471000" + }, + { + "id": "5746", + "name": "Jubilee Pocket", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.28809000", + "longitude": "148.72938000" + }, + { + "id": "5747", + "name": "Julatten", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.60720000", + "longitude": "145.34118000" + }, + { + "id": "5756", + "name": "Kalbar", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.94169000", + "longitude": "152.62372000" + }, + { + "id": "5762", + "name": "Kalinga", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.40957000", + "longitude": "153.05061000" + }, + { + "id": "5763", + "name": "Kalkie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.84426000", + "longitude": "152.38532000" + }, + { + "id": "5764", + "name": "Kallangur", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.25204000", + "longitude": "152.99226000" + }, + { + "id": "5771", + "name": "Kamerunga", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.87321000", + "longitude": "145.70130000" + }, + { + "id": "5777", + "name": "Kangaroo Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47679000", + "longitude": "153.03670000" + }, + { + "id": "5778", + "name": "Kanimbla", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.92307000", + "longitude": "145.72158000" + }, + { + "id": "5783", + "name": "Karalee", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56485000", + "longitude": "152.82446000" + }, + { + "id": "5785", + "name": "Karana Downs", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54857000", + "longitude": "152.80728000" + }, + { + "id": "5795", + "name": "Karumba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.48691000", + "longitude": "140.84262000" + }, + { + "id": "5801", + "name": "Kawana", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.33933000", + "longitude": "150.50493000" + }, + { + "id": "5802", + "name": "Kawungan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.29879000", + "longitude": "152.84600000" + }, + { + "id": "5804", + "name": "Kearneys Spring", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60495000", + "longitude": "151.94098000" + }, + { + "id": "5806", + "name": "Kedron", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.40286000", + "longitude": "153.02969000" + }, + { + "id": "5819", + "name": "Kelso", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.38932000", + "longitude": "146.71912000" + }, + { + "id": "5820", + "name": "Kelvin Grove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.44819000", + "longitude": "153.01337000" + }, + { + "id": "5824", + "name": "Kenmore", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.50759000", + "longitude": "152.93879000" + }, + { + "id": "5825", + "name": "Kenmore Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.50420000", + "longitude": "152.93183000" + }, + { + "id": "5830", + "name": "Kensington Grove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53278000", + "longitude": "152.47205000" + }, + { + "id": "5837", + "name": "Keperra", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.41376000", + "longitude": "152.94703000" + }, + { + "id": "5838", + "name": "Kepnock", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.87606000", + "longitude": "152.37518000" + }, + { + "id": "5844", + "name": "Kewarra Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.78219000", + "longitude": "145.68455000" + }, + { + "id": "5854", + "name": "Kilcoy", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.94300000", + "longitude": "152.56545000" + }, + { + "id": "5863", + "name": "Kin Kora", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.87705000", + "longitude": "151.24722000" + }, + { + "id": "5866", + "name": "Kingaroy", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.53994000", + "longitude": "151.83730000" + }, + { + "id": "5870", + "name": "Kings Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.80166000", + "longitude": "153.14261000" + }, + { + "id": "5881", + "name": "Kingsthorpe", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47558000", + "longitude": "151.81409000" + }, + { + "id": "5885", + "name": "Kingston", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66667000", + "longitude": "153.11667000" + }, + { + "id": "5892", + "name": "Kippa-Ring", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.22586000", + "longitude": "153.08350000" + }, + { + "id": "5893", + "name": "Kirkwood", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.90327000", + "longitude": "151.23545000" + }, + { + "id": "5896", + "name": "Kirwan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.30323000", + "longitude": "146.72531000" + }, + { + "id": "5897", + "name": "Kleinton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.43333000", + "longitude": "151.95000000" + }, + { + "id": "5908", + "name": "Koongal", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.36887000", + "longitude": "150.54917000" + }, + { + "id": "5909", + "name": "Kooralbyn", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.07955000", + "longitude": "152.83974000" + }, + { + "id": "5919", + "name": "Kowanyama", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-15.27882000", + "longitude": "141.81287000" + }, + { + "id": "5922", + "name": "Kuluin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.65779000", + "longitude": "153.05608000" + }, + { + "id": "5924", + "name": "Kuraby", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60683000", + "longitude": "153.09367000" + }, + { + "id": "5925", + "name": "Kuranda", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.81978000", + "longitude": "145.63818000" + }, + { + "id": "5932", + "name": "Kurwongbah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.23250000", + "longitude": "152.97621000" + }, + { + "id": "5938", + "name": "Labrador", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.94402000", + "longitude": "153.39815000" + }, + { + "id": "5940", + "name": "Laidley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63278000", + "longitude": "152.39285000" + }, + { + "id": "5949", + "name": "Lake Macdonald", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.38482000", + "longitude": "152.93213000" + }, + { + "id": "5962", + "name": "Lammermoor", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.16076000", + "longitude": "150.76079000" + }, + { + "id": "5964", + "name": "Landsborough", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.80666000", + "longitude": "152.96095000" + }, + { + "id": "5991", + "name": "Lawnton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.28333000", + "longitude": "152.98333000" + }, + { + "id": "6001", + "name": "Leichhardt", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.62279000", + "longitude": "152.73373000" + }, + { + "id": "6038", + "name": "Little Mountain", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.78436000", + "longitude": "153.09218000" + }, + { + "id": "6046", + "name": "Lockhart River", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-13.01876000", + "longitude": "143.25024000" + }, + { + "id": "6050", + "name": "Lockyer Valley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.68139000", + "longitude": "152.23036000" + }, + { + "id": "6053", + "name": "Logan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.76294000", + "longitude": "153.04492000" + }, + { + "id": "6054", + "name": "Logan Central", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.64385000", + "longitude": "153.10725000" + }, + { + "id": "6055", + "name": "Logan City", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63917000", + "longitude": "153.10944000" + }, + { + "id": "6056", + "name": "Logan Reserve", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.72414000", + "longitude": "153.09002000" + }, + { + "id": "6057", + "name": "Logan Village", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.76832000", + "longitude": "153.10762000" + }, + { + "id": "6058", + "name": "Loganholme", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.68444000", + "longitude": "153.18640000" + }, + { + "id": "6059", + "name": "Loganlea", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.67535000", + "longitude": "153.13472000" + }, + { + "id": "6066", + "name": "Longreach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.87600000", + "longitude": "143.86708000" + }, + { + "id": "6071", + "name": "Lota", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46923000", + "longitude": "153.18580000" + }, + { + "id": "6073", + "name": "Lower Beechmont", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.04751000", + "longitude": "153.24572000" + }, + { + "id": "6079", + "name": "Lowood", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46555000", + "longitude": "152.57625000" + }, + { + "id": "6088", + "name": "Lutwyche", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.42275000", + "longitude": "153.03354000" + }, + { + "id": "6101", + "name": "Macgregor", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56490000", + "longitude": "153.06650000" + }, + { + "id": "6103", + "name": "Machans Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.85849000", + "longitude": "145.74468000" + }, + { + "id": "6104", + "name": "Mackay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.08189000", + "longitude": "149.04265000" + }, + { + "id": "6105", + "name": "Mackay City", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.14463000", + "longitude": "149.18678000" + }, + { + "id": "6106", + "name": "Mackenzie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54351000", + "longitude": "153.12057000" + }, + { + "id": "6109", + "name": "Macleay Island", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61089000", + "longitude": "153.35996000" + }, + { + "id": "6123", + "name": "Magnetic Island", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.15514000", + "longitude": "146.84850000" + }, + { + "id": "6127", + "name": "Main Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.97879000", + "longitude": "153.42660000" + }, + { + "id": "6134", + "name": "Malanda", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.35228000", + "longitude": "145.59528000" + }, + { + "id": "6136", + "name": "Maleny", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.76001000", + "longitude": "152.84926000" + }, + { + "id": "6146", + "name": "Mango Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.24349000", + "longitude": "153.02384000" + }, + { + "id": "6153", + "name": "Manly West", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47382000", + "longitude": "153.16641000" + }, + { + "id": "6159", + "name": "Manoora", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.91706000", + "longitude": "145.73665000" + }, + { + "id": "6160", + "name": "Mansfield", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53929000", + "longitude": "153.09895000" + }, + { + "id": "6163", + "name": "Manunda", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.91721000", + "longitude": "145.74920000" + }, + { + "id": "6164", + "name": "Mapleton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.62431000", + "longitude": "152.86784000" + }, + { + "id": "6165", + "name": "Mapoon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.10960000", + "longitude": "141.90216000" + }, + { + "id": "6168", + "name": "Maranoa", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.39289000", + "longitude": "148.43098000" + }, + { + "id": "6172", + "name": "Marcoola", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.58450000", + "longitude": "153.09465000" + }, + { + "id": "6175", + "name": "Mareeba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.99096000", + "longitude": "145.42306000" + }, + { + "id": "6178", + "name": "Margate", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.24761000", + "longitude": "153.09809000" + }, + { + "id": "6179", + "name": "Marian", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.14386000", + "longitude": "148.94209000" + }, + { + "id": "6187", + "name": "Maroochy River", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.57767000", + "longitude": "153.01884000" + }, + { + "id": "6188", + "name": "Maroochydore", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.66008000", + "longitude": "153.09953000" + }, + { + "id": "6193", + "name": "Marsden", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.67342000", + "longitude": "153.09732000" + }, + { + "id": "6198", + "name": "Maryborough", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.54073000", + "longitude": "152.70493000" + }, + { + "id": "6204", + "name": "Maudsland", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.95000000", + "longitude": "153.26667000" + }, + { + "id": "6215", + "name": "McDowall", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.38266000", + "longitude": "152.99194000" + }, + { + "id": "6219", + "name": "McKinlay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.59413000", + "longitude": "141.67448000" + }, + { + "id": "6227", + "name": "Meadowbrook", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66401000", + "longitude": "153.14465000" + }, + { + "id": "6249", + "name": "Menzies", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.71809000", + "longitude": "139.49717000" + }, + { + "id": "6253", + "name": "Meridan Plains", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.77351000", + "longitude": "153.06187000" + }, + { + "id": "6255", + "name": "Meringandan West", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.41612000", + "longitude": "151.88727000" + }, + { + "id": "6256", + "name": "Mermaid Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.04411000", + "longitude": "153.43472000" + }, + { + "id": "6257", + "name": "Mermaid Waters", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.04912000", + "longitude": "153.43081000" + }, + { + "id": "6260", + "name": "Merrimac", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.05085000", + "longitude": "153.37307000" + }, + { + "id": "6267", + "name": "Miami", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.07173000", + "longitude": "153.44158000" + }, + { + "id": "6274", + "name": "Middle Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55596000", + "longitude": "152.92223000" + }, + { + "id": "6275", + "name": "Middle Ridge", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60709000", + "longitude": "151.96688000" + }, + { + "id": "6277", + "name": "Middlemount", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.81226000", + "longitude": "148.69926000" + }, + { + "id": "6286", + "name": "Miles", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.65836000", + "longitude": "150.18822000" + }, + { + "id": "6290", + "name": "Millbank", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.87536000", + "longitude": "152.32217000" + }, + { + "id": "6296", + "name": "Millmerran", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.87913000", + "longitude": "151.27058000" + }, + { + "id": "6298", + "name": "Millstream", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.65318000", + "longitude": "145.41401000" + }, + { + "id": "6304", + "name": "Milton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47039000", + "longitude": "153.00312000" + }, + { + "id": "6307", + "name": "Minden", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55965000", + "longitude": "152.54493000" + }, + { + "id": "6312", + "name": "Minyama", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.69573000", + "longitude": "153.12353000" + }, + { + "id": "6315", + "name": "Mirani", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.15729000", + "longitude": "148.86217000" + }, + { + "id": "6318", + "name": "Mission Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.86885000", + "longitude": "146.10392000" + }, + { + "id": "6319", + "name": "Mission River", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.59509000", + "longitude": "141.95760000" + }, + { + "id": "6323", + "name": "Mitchell", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.48490000", + "longitude": "147.97420000" + }, + { + "id": "6326", + "name": "Mitchelton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.41667000", + "longitude": "152.96667000" + }, + { + "id": "6334", + "name": "Moffat Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.79048000", + "longitude": "153.13997000" + }, + { + "id": "6335", + "name": "Moggill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58333000", + "longitude": "152.86667000" + }, + { + "id": "6338", + "name": "Molendinar", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.97409000", + "longitude": "153.36069000" + }, + { + "id": "6347", + "name": "Monkland", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.21191000", + "longitude": "152.68245000" + }, + { + "id": "6353", + "name": "Monto", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.86477000", + "longitude": "151.12199000" + }, + { + "id": "6356", + "name": "Montville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.68333000", + "longitude": "152.88333000" + }, + { + "id": "6358", + "name": "Mooloolaba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.68164000", + "longitude": "153.11925000" + }, + { + "id": "6369", + "name": "Moore Park Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.71066000", + "longitude": "152.20905000" + }, + { + "id": "6371", + "name": "Mooroobool", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.93489000", + "longitude": "145.73137000" + }, + { + "id": "6373", + "name": "Moorooka", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53436000", + "longitude": "153.02460000" + }, + { + "id": "6376", + "name": "Moranbah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.00163000", + "longitude": "148.04661000" + }, + { + "id": "6378", + "name": "Morayfield", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.10876000", + "longitude": "152.94907000" + }, + { + "id": "6383", + "name": "Moreton Bay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.10731000", + "longitude": "152.92937000" + }, + { + "id": "6386", + "name": "Morningside", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46165000", + "longitude": "153.07511000" + }, + { + "id": "6388", + "name": "Mornington", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.68436000", + "longitude": "139.46682000" + }, + { + "id": "6402", + "name": "Mossman", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.46292000", + "longitude": "145.37144000" + }, + { + "id": "6414", + "name": "Mount Coolum", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.56581000", + "longitude": "153.09139000" + }, + { + "id": "6415", + "name": "Mount Cotton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63333000", + "longitude": "153.23333000" + }, + { + "id": "6416", + "name": "Mount Crosby", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53948000", + "longitude": "152.80583000" + }, + { + "id": "6423", + "name": "Mount Gravatt", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53333000", + "longitude": "153.08333000" + }, + { + "id": "6424", + "name": "Mount Gravatt East", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54050000", + "longitude": "153.08221000" + }, + { + "id": "6429", + "name": "Mount Isa", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.72523000", + "longitude": "139.49727000" + }, + { + "id": "6435", + "name": "Mount Lofty", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54628000", + "longitude": "151.97218000" + }, + { + "id": "6436", + "name": "Mount Louisa", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.27400000", + "longitude": "146.75091000" + }, + { + "id": "6437", + "name": "Mount Low", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.23209000", + "longitude": "146.66951000" + }, + { + "id": "6443", + "name": "Mount Morgan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.64532000", + "longitude": "150.38902000" + }, + { + "id": "6445", + "name": "Mount Nathan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.96430000", + "longitude": "153.27198000" + }, + { + "id": "6447", + "name": "Mount Ommaney", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54609000", + "longitude": "152.93219000" + }, + { + "id": "6451", + "name": "Mount Pleasant", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.11814000", + "longitude": "149.15965000" + }, + { + "id": "6458", + "name": "Mount Sheridan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.98608000", + "longitude": "145.73244000" + }, + { + "id": "6462", + "name": "Mount Warren Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.73109000", + "longitude": "153.20549000" + }, + { + "id": "6465", + "name": "Mountain Creek", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.70278000", + "longitude": "153.10133000" + }, + { + "id": "6466", + "name": "Moura", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.57220000", + "longitude": "149.96729000" + }, + { + "id": "6470", + "name": "Mudgeeraba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.08333000", + "longitude": "153.36667000" + }, + { + "id": "6471", + "name": "Mudjimba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.61497000", + "longitude": "153.09890000" + }, + { + "id": "6474", + "name": "Mulambin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.18755000", + "longitude": "150.78933000" + }, + { + "id": "6482", + "name": "Mundingburra", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.29851000", + "longitude": "146.79352000" + }, + { + "id": "6483", + "name": "Mundoolun", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.89940000", + "longitude": "153.07150000" + }, + { + "id": "6484", + "name": "Mundubbera", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.59266000", + "longitude": "151.30225000" + }, + { + "id": "6487", + "name": "Munruben", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.74635000", + "longitude": "153.03119000" + }, + { + "id": "6489", + "name": "Murarrie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46289000", + "longitude": "153.09809000" + }, + { + "id": "6492", + "name": "Murgon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.24170000", + "longitude": "151.94047000" + }, + { + "id": "6494", + "name": "Murray", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.31803000", + "longitude": "146.79494000" + }, + { + "id": "6497", + "name": "Murrumba Downs", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.26733000", + "longitude": "153.01053000" + }, + { + "id": "6501", + "name": "Murweh", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.13609000", + "longitude": "146.60410000" + }, + { + "id": "6513", + "name": "Nambour", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.62613000", + "longitude": "152.95941000" + }, + { + "id": "6518", + "name": "Nanango", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.67157000", + "longitude": "152.00211000" + }, + { + "id": "6520", + "name": "Nanum", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.64511000", + "longitude": "141.86221000" + }, + { + "id": "6521", + "name": "Napranum", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.55322000", + "longitude": "142.06558000" + }, + { + "id": "6524", + "name": "Narangba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.20338000", + "longitude": "152.95923000" + }, + { + "id": "6544", + "name": "Nathan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55888000", + "longitude": "153.06230000" + }, + { + "id": "6545", + "name": "Nebo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.68333000", + "longitude": "148.68333000" + }, + { + "id": "6548", + "name": "Nelly Bay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.15775000", + "longitude": "146.84977000" + }, + { + "id": "6550", + "name": "Nerang", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.98941000", + "longitude": "153.33633000" + }, + { + "id": "6554", + "name": "New Auckland", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.88359000", + "longitude": "151.23563000" + }, + { + "id": "6555", + "name": "New Beith", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.79359000", + "longitude": "152.88443000" + }, + { + "id": "6556", + "name": "New Farm", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46777000", + "longitude": "153.04834000" + }, + { + "id": "6570", + "name": "Newmarket", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.43534000", + "longitude": "153.00781000" + }, + { + "id": "6574", + "name": "Newport", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.20731000", + "longitude": "153.10135000" + }, + { + "id": "6576", + "name": "Newstead", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.45314000", + "longitude": "153.04183000" + }, + { + "id": "6579", + "name": "Newtown", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55602000", + "longitude": "151.93255000" + }, + { + "id": "6595", + "name": "Ninderry", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.54094000", + "longitude": "152.97520000" + }, + { + "id": "6596", + "name": "Ningi", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.06108000", + "longitude": "153.07883000" + }, + { + "id": "6601", + "name": "Nome", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.36245000", + "longitude": "146.94672000" + }, + { + "id": "6602", + "name": "Noosa Heads", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.39433000", + "longitude": "153.09010000" + }, + { + "id": "6603", + "name": "Noosaville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.40000000", + "longitude": "153.06667000" + }, + { + "id": "6607", + "name": "Norman Gardens", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.33044000", + "longitude": "150.52747000" + }, + { + "id": "6608", + "name": "Norman Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47916000", + "longitude": "153.06250000" + }, + { + "id": "6610", + "name": "Normanton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.67183000", + "longitude": "141.07721000" + }, + { + "id": "6620", + "name": "North Booval", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60392000", + "longitude": "152.79485000" + }, + { + "id": "6623", + "name": "North Burnett", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.24444000", + "longitude": "151.32301000" + }, + { + "id": "6633", + "name": "North Ipswich", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60286000", + "longitude": "152.76146000" + }, + { + "id": "6635", + "name": "North Lakes", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.22426000", + "longitude": "153.02075000" + }, + { + "id": "6637", + "name": "North Mackay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.12009000", + "longitude": "149.17941000" + }, + { + "id": "6638", + "name": "North Maclean", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.76759000", + "longitude": "153.01646000" + }, + { + "id": "6653", + "name": "North Toowoomba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54415000", + "longitude": "151.96117000" + }, + { + "id": "6656", + "name": "North Ward", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.24994000", + "longitude": "146.81477000" + }, + { + "id": "6669", + "name": "Northern Peninsula Area", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-10.97190000", + "longitude": "142.35364000" + }, + { + "id": "6673", + "name": "Norville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.89310000", + "longitude": "152.34089000" + }, + { + "id": "6681", + "name": "Nudgee", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.36910000", + "longitude": "153.08470000" + }, + { + "id": "6686", + "name": "Nundah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.40252000", + "longitude": "153.06165000" + }, + { + "id": "6698", + "name": "Oakey", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.43305000", + "longitude": "151.72063000" + }, + { + "id": "6700", + "name": "Oakhurst", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.51253000", + "longitude": "152.63583000" + }, + { + "id": "6722", + "name": "One Mile", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.62902000", + "longitude": "152.73768000" + }, + { + "id": "6727", + "name": "Oonoonba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.29684000", + "longitude": "146.82091000" + }, + { + "id": "6728", + "name": "Ooralea", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.17394000", + "longitude": "149.14797000" + }, + { + "id": "6737", + "name": "Ormeau", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.76791000", + "longitude": "153.24280000" + }, + { + "id": "6738", + "name": "Ormeau Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.79653000", + "longitude": "153.25670000" + }, + { + "id": "6739", + "name": "Ormiston", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.51667000", + "longitude": "153.25000000" + }, + { + "id": "6747", + "name": "Oxenford", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.89033000", + "longitude": "153.31309000" + }, + { + "id": "6748", + "name": "Oxley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55000000", + "longitude": "152.98333000" + }, + { + "id": "6754", + "name": "Pacific Paradise", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.61807000", + "longitude": "153.07781000" + }, + { + "id": "6755", + "name": "Pacific Pines", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.93994000", + "longitude": "153.31436000" + }, + { + "id": "6758", + "name": "Paddington", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.45939000", + "longitude": "152.99509000" + }, + { + "id": "6765", + "name": "Palm Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.11694000", + "longitude": "153.46584000" + }, + { + "id": "6767", + "name": "Palm Cove", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.75000000", + "longitude": "145.66667000" + }, + { + "id": "6768", + "name": "Palm Island", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.74893000", + "longitude": "146.60379000" + }, + { + "id": "6771", + "name": "Palmwoods", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.68584000", + "longitude": "152.96135000" + }, + { + "id": "6781", + "name": "Paradise Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.88663000", + "longitude": "153.39330000" + }, + { + "id": "6786", + "name": "Park Avenue", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.35327000", + "longitude": "150.51890000" + }, + { + "id": "6790", + "name": "Park Ridge", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.71667000", + "longitude": "153.03333000" + }, + { + "id": "6791", + "name": "Park Ridge South", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.72707000", + "longitude": "153.03320000" + }, + { + "id": "6795", + "name": "Parkhurst", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.30000000", + "longitude": "150.51667000" + }, + { + "id": "6796", + "name": "Parkinson", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.64340000", + "longitude": "153.02975000" + }, + { + "id": "6798", + "name": "Parkside", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.73770000", + "longitude": "139.48865000" + }, + { + "id": "6801", + "name": "Parkwood", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.95461000", + "longitude": "153.36304000" + }, + { + "id": "6804", + "name": "Paroo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.98742000", + "longitude": "145.71755000" + }, + { + "id": "6806", + "name": "Parramatta Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.92598000", + "longitude": "145.76643000" + }, + { + "id": "6807", + "name": "Parrearra", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.71152000", + "longitude": "153.12197000" + }, + { + "id": "6815", + "name": "Peachester", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.84551000", + "longitude": "152.88400000" + }, + { + "id": "6824", + "name": "Pelican Waters", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.83354000", + "longitude": "153.10013000" + }, + { + "id": "6836", + "name": "Peregian Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.48100000", + "longitude": "153.09600000" + }, + { + "id": "6837", + "name": "Peregian Springs", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.48801000", + "longitude": "153.07577000" + }, + { + "id": "6845", + "name": "Petrie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.26667000", + "longitude": "152.98333000" + }, + { + "id": "6846", + "name": "Petrie Terrace", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46298000", + "longitude": "153.01312000" + }, + { + "id": "6850", + "name": "Pialba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.28700000", + "longitude": "152.84369000" + }, + { + "id": "6855", + "name": "Pie Creek", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.22991000", + "longitude": "152.60774000" + }, + { + "id": "6856", + "name": "Pimlico", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.28172000", + "longitude": "146.78803000" + }, + { + "id": "6857", + "name": "Pimpama", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.81667000", + "longitude": "153.30000000" + }, + { + "id": "6858", + "name": "Pine Mountain", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55000000", + "longitude": "152.70000000" + }, + { + "id": "6861", + "name": "Pioneer", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.72032000", + "longitude": "139.50812000" + }, + { + "id": "6863", + "name": "Pittsworth", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.71638000", + "longitude": "151.63399000" + }, + { + "id": "6864", + "name": "Plainland", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56667000", + "longitude": "152.41667000" + }, + { + "id": "6877", + "name": "Point Vernon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.25727000", + "longitude": "152.81725000" + }, + { + "id": "6879", + "name": "Pomona", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.36685000", + "longitude": "152.85574000" + }, + { + "id": "6881", + "name": "Pormpuraaw", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-14.65705000", + "longitude": "141.83354000" + }, + { + "id": "6888", + "name": "Port Douglas", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.48383000", + "longitude": "145.46725000" + }, + { + "id": "6921", + "name": "Proserpine", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.40110000", + "longitude": "148.58020000" + }, + { + "id": "6926", + "name": "Pullenvale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.52283000", + "longitude": "152.88651000" + }, + { + "id": "6945", + "name": "Queenton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.07453000", + "longitude": "146.28170000" + }, + { + "id": "6946", + "name": "Quilpie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.15057000", + "longitude": "143.57936000" + }, + { + "id": "6952", + "name": "Raceview", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63472000", + "longitude": "152.77519000" + }, + { + "id": "6954", + "name": "Railway Estate", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.27570000", + "longitude": "146.81962000" + }, + { + "id": "6955", + "name": "Rainbow Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.90432000", + "longitude": "153.09174000" + }, + { + "id": "6960", + "name": "Rangeville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58318000", + "longitude": "151.97997000" + }, + { + "id": "6962", + "name": "Rangewood", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.31138000", + "longitude": "146.63877000" + }, + { + "id": "6965", + "name": "Rasmussen", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.35240000", + "longitude": "146.72280000" + }, + { + "id": "6968", + "name": "Ravenshoe", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.60901000", + "longitude": "145.48413000" + }, + { + "id": "6976", + "name": "Red Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.31667000", + "longitude": "148.50000000" + }, + { + "id": "6979", + "name": "Redbank", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60000000", + "longitude": "152.86667000" + }, + { + "id": "6980", + "name": "Redbank Plains", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.64613000", + "longitude": "152.85965000" + }, + { + "id": "6984", + "name": "Redland", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53791000", + "longitude": "153.24829000" + }, + { + "id": "6985", + "name": "Redland Bay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61130000", + "longitude": "153.30022000" + }, + { + "id": "6986", + "name": "Redlynch", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.92540000", + "longitude": "145.69559000" + }, + { + "id": "6988", + "name": "Reedy Creek", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.11243000", + "longitude": "153.39638000" + }, + { + "id": "6989", + "name": "Regency Downs", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53359000", + "longitude": "152.44049000" + }, + { + "id": "6991", + "name": "Regents Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.67664000", + "longitude": "153.04165000" + }, + { + "id": "7005", + "name": "Richlands", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.59616000", + "longitude": "152.95321000" + }, + { + "id": "7008", + "name": "Richmond", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.56967000", + "longitude": "142.91384000" + }, + { + "id": "7022", + "name": "River Heads", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.41551000", + "longitude": "152.91315000" + }, + { + "id": "7023", + "name": "Riverhills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55928000", + "longitude": "152.91106000" + }, + { + "id": "7028", + "name": "Riverview", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60000000", + "longitude": "152.85000000" + }, + { + "id": "7033", + "name": "Robertson", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56583000", + "longitude": "153.05738000" + }, + { + "id": "7035", + "name": "Robina", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.07071000", + "longitude": "153.39329000" + }, + { + "id": "7037", + "name": "Rochedale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56667000", + "longitude": "153.13333000" + }, + { + "id": "7038", + "name": "Rochedale South", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.59521000", + "longitude": "153.12332000" + }, + { + "id": "7043", + "name": "Rockhampton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.38032000", + "longitude": "150.50595000" + }, + { + "id": "7046", + "name": "Rocklea", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53917000", + "longitude": "153.00402000" + }, + { + "id": "7047", + "name": "Rockville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53611000", + "longitude": "151.93805000" + }, + { + "id": "7052", + "name": "Roma", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.56741000", + "longitude": "148.78751000" + }, + { + "id": "7068", + "name": "Rosemount", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.63030000", + "longitude": "152.99970000" + }, + { + "id": "7069", + "name": "Rosenthal Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.24013000", + "longitude": "152.01327000" + }, + { + "id": "7074", + "name": "Rosewood", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63350000", + "longitude": "152.58949000" + }, + { + "id": "7077", + "name": "Rosslea", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.29871000", + "longitude": "146.79824000" + }, + { + "id": "7081", + "name": "Rothwell", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.21433000", + "longitude": "153.04676000" + }, + { + "id": "7089", + "name": "Runaway Bay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.91386000", + "longitude": "153.39775000" + }, + { + "id": "7090", + "name": "Runcorn", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.59756000", + "longitude": "153.07699000" + }, + { + "id": "7091", + "name": "Rural View", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.06447000", + "longitude": "149.16460000" + }, + { + "id": "7095", + "name": "Russell Island", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.64867000", + "longitude": "153.38124000" + }, + { + "id": "7105", + "name": "Sadliers Crossing", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61251000", + "longitude": "152.74577000" + }, + { + "id": "7120", + "name": "Salisbury", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55145000", + "longitude": "153.03250000" + }, + { + "id": "7129", + "name": "Samford Valley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.37270000", + "longitude": "152.86699000" + }, + { + "id": "7135", + "name": "Sandgate", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.32198000", + "longitude": "153.06951000" + }, + { + "id": "7140", + "name": "Sandstone Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.08374000", + "longitude": "153.13235000" + }, + { + "id": "7146", + "name": "Sarina", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.41910000", + "longitude": "149.21677000" + }, + { + "id": "7150", + "name": "Scarborough", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.20118000", + "longitude": "153.10939000" + }, + { + "id": "7151", + "name": "Scarness", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.28405000", + "longitude": "152.85600000" + }, + { + "id": "7152", + "name": "Scenic Rim", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.04021000", + "longitude": "152.80688000" + }, + { + "id": "7183", + "name": "Seven Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48341000", + "longitude": "153.07474000" + }, + { + "id": "7186", + "name": "Seventeen Mile Rocks", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55070000", + "longitude": "152.95896000" + }, + { + "id": "7190", + "name": "Shailer Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.64980000", + "longitude": "153.17753000" + }, + { + "id": "7193", + "name": "Sharon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.87593000", + "longitude": "152.26994000" + }, + { + "id": "7197", + "name": "Sheldon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58436000", + "longitude": "153.20042000" + }, + { + "id": "7210", + "name": "Shorncliffe", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.32759000", + "longitude": "153.08161000" + }, + { + "id": "7212", + "name": "Silkstone", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.62126000", + "longitude": "152.78768000" + }, + { + "id": "7221", + "name": "Sinnamon Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54436000", + "longitude": "152.94890000" + }, + { + "id": "7222", + "name": "Sippy Downs", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.71793000", + "longitude": "153.05475000" + }, + { + "id": "7225", + "name": "Slacks Creek", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.65000000", + "longitude": "153.15000000" + }, + { + "id": "7226", + "name": "Slade Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.07500000", + "longitude": "149.22500000" + }, + { + "id": "7236", + "name": "Soldiers Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.70533000", + "longitude": "139.48988000" + }, + { + "id": "7241", + "name": "Somerset", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.01133000", + "longitude": "152.41521000" + }, + { + "id": "7253", + "name": "South Brisbane", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48034000", + "longitude": "153.02049000" + }, + { + "id": "7255", + "name": "South Burnett", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.40077000", + "longitude": "151.60166000" + }, + { + "id": "7260", + "name": "South Gladstone", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.86221000", + "longitude": "151.26801000" + }, + { + "id": "7270", + "name": "South Kolan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.93202000", + "longitude": "152.16790000" + }, + { + "id": "7274", + "name": "South Mackay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.16288000", + "longitude": "149.17751000" + }, + { + "id": "7275", + "name": "South Maclean", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.79245000", + "longitude": "153.01603000" + }, + { + "id": "7284", + "name": "South Toowoomba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.57101000", + "longitude": "151.94650000" + }, + { + "id": "7285", + "name": "South Townsville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.26618000", + "longitude": "146.83331000" + }, + { + "id": "7293", + "name": "Southern Downs", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.50265000", + "longitude": "151.92165000" + }, + { + "id": "7298", + "name": "Southport", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.96724000", + "longitude": "153.39796000" + }, + { + "id": "7299", + "name": "Southside", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.20997000", + "longitude": "152.64719000" + }, + { + "id": "7308", + "name": "Spring Hill", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.46141000", + "longitude": "153.02311000" + }, + { + "id": "7310", + "name": "Springfield", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.65365000", + "longitude": "152.91716000" + }, + { + "id": "7311", + "name": "Springfield Lakes", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66757000", + "longitude": "152.92488000" + }, + { + "id": "7312", + "name": "Springsure", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.11478000", + "longitude": "148.08849000" + }, + { + "id": "7316", + "name": "Springwood", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61183000", + "longitude": "153.12899000" + }, + { + "id": "7322", + "name": "St George", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.94763000", + "longitude": "148.60986000" + }, + { + "id": "7339", + "name": "Stafford", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.41044000", + "longitude": "153.01105000" + }, + { + "id": "7340", + "name": "Stafford Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.39354000", + "longitude": "153.01050000" + }, + { + "id": "7343", + "name": "Stanthorpe", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.65425000", + "longitude": "151.93388000" + }, + { + "id": "7364", + "name": "Strathpine", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.30414000", + "longitude": "152.98977000" + }, + { + "id": "7367", + "name": "Stretton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.62205000", + "longitude": "153.06609000" + }, + { + "id": "7368", + "name": "Stuart", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.34702000", + "longitude": "146.84378000" + }, + { + "id": "7377", + "name": "Sun Valley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.87516000", + "longitude": "151.25752000" + }, + { + "id": "7379", + "name": "Sunnybank", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58003000", + "longitude": "153.06064000" + }, + { + "id": "7380", + "name": "Sunnybank Hills", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61025000", + "longitude": "153.05388000" + }, + { + "id": "7381", + "name": "Sunrise Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.41646000", + "longitude": "153.10305000" + }, + { + "id": "7382", + "name": "Sunset", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.71026000", + "longitude": "139.50824000" + }, + { + "id": "7386", + "name": "Sunshine Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.40579000", + "longitude": "153.10779000" + }, + { + "id": "7387", + "name": "Sunshine Coast", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.56098000", + "longitude": "152.85113000" + }, + { + "id": "7391", + "name": "Surfers Paradise", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.00274000", + "longitude": "153.42999000" + }, + { + "id": "7400", + "name": "Svensson Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.88566000", + "longitude": "152.33183000" + }, + { + "id": "7415", + "name": "Taigum", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.34265000", + "longitude": "153.04444000" + }, + { + "id": "7417", + "name": "Tallai", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.06407000", + "longitude": "153.32589000" + }, + { + "id": "7419", + "name": "Tallebudgera", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.15000000", + "longitude": "153.43333000" + }, + { + "id": "7420", + "name": "Tallebudgera Valley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.19270000", + "longitude": "153.35489000" + }, + { + "id": "7422", + "name": "Tamborine", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.88333000", + "longitude": "153.13333000" + }, + { + "id": "7423", + "name": "Tamborine Mountain", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.96954000", + "longitude": "153.19937000" + }, + { + "id": "7427", + "name": "Tanah Merah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.67151000", + "longitude": "153.17019000" + }, + { + "id": "7428", + "name": "Tanawha", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.71981000", + "longitude": "153.03018000" + }, + { + "id": "7430", + "name": "Tannum Sands", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.94749000", + "longitude": "151.36749000" + }, + { + "id": "7434", + "name": "Tara", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.27613000", + "longitude": "150.45676000" + }, + { + "id": "7435", + "name": "Taranganba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.14435000", + "longitude": "150.75139000" + }, + { + "id": "7439", + "name": "Taringa", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.49061000", + "longitude": "152.97861000" + }, + { + "id": "7442", + "name": "Tarragindi", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.52713000", + "longitude": "153.04556000" + }, + { + "id": "7459", + "name": "Telina", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.88834000", + "longitude": "151.25379000" + }, + { + "id": "7467", + "name": "Teneriffe", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.45587000", + "longitude": "153.04696000" + }, + { + "id": "7478", + "name": "Tewantin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.39104000", + "longitude": "153.03432000" + }, + { + "id": "7479", + "name": "Thabeban", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.90000000", + "longitude": "152.35000000" + }, + { + "id": "7484", + "name": "The Gap", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.44187000", + "longitude": "152.93861000" + }, + { + "id": "7486", + "name": "The Gemfields", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.53014000", + "longitude": "147.79679000" + }, + { + "id": "7493", + "name": "The Range", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.39200000", + "longitude": "150.49624000" + }, + { + "id": "7504", + "name": "Thorneside", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48777000", + "longitude": "153.19821000" + }, + { + "id": "7505", + "name": "Thornlands", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55751000", + "longitude": "153.26481000" + }, + { + "id": "7511", + "name": "Thursday Island", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-10.58257000", + "longitude": "142.21949000" + }, + { + "id": "7512", + "name": "Tieri", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.03829000", + "longitude": "148.34463000" + }, + { + "id": "7515", + "name": "Tin Can Bay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.91914000", + "longitude": "153.00320000" + }, + { + "id": "7516", + "name": "Tinana", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.55196000", + "longitude": "152.66590000" + }, + { + "id": "7517", + "name": "Tingalpa", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47360000", + "longitude": "153.12704000" + }, + { + "id": "7520", + "name": "Tivoli", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.59278000", + "longitude": "152.76798000" + }, + { + "id": "7524", + "name": "Tolga", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.18557000", + "longitude": "145.47707000" + }, + { + "id": "7531", + "name": "Toogoolawah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.08661000", + "longitude": "152.37636000" + }, + { + "id": "7532", + "name": "Toogoom", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.25637000", + "longitude": "152.69025000" + }, + { + "id": "7539", + "name": "Toowong", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48333000", + "longitude": "152.98333000" + }, + { + "id": "7540", + "name": "Toowoomba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47958000", + "longitude": "151.47705000" + }, + { + "id": "7542", + "name": "Torquay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.28496000", + "longitude": "152.87886000" + }, + { + "id": "7547", + "name": "Torres", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-10.57928000", + "longitude": "142.22059000" + }, + { + "id": "7548", + "name": "Torres Strait Island Region", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-10.20141000", + "longitude": "142.27295000" + }, + { + "id": "7550", + "name": "Townsville", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.26639000", + "longitude": "146.80569000" + }, + { + "id": "7551", + "name": "Townview", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.73252000", + "longitude": "139.50482000" + }, + { + "id": "7565", + "name": "Trinity Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.78876000", + "longitude": "145.69682000" + }, + { + "id": "7567", + "name": "Trinity Park", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.80684000", + "longitude": "145.70549000" + }, + { + "id": "7570", + "name": "Trunding", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.63422000", + "longitude": "141.86963000" + }, + { + "id": "7573", + "name": "Tugun", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.15000000", + "longitude": "153.50000000" + }, + { + "id": "7575", + "name": "Tully", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.93264000", + "longitude": "145.92277000" + }, + { + "id": "7593", + "name": "Twin Waters", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.63422000", + "longitude": "153.08114000" + }, + { + "id": "7603", + "name": "Underwood", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60885000", + "longitude": "153.11130000" + }, + { + "id": "7607", + "name": "Upper Caboolture", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.11667000", + "longitude": "152.88333000" + }, + { + "id": "7608", + "name": "Upper Coomera", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.87683000", + "longitude": "153.28572000" + }, + { + "id": "7611", + "name": "Upper Kedron", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.41879000", + "longitude": "152.91777000" + }, + { + "id": "7613", + "name": "Upper Mount Gravatt", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.56128000", + "longitude": "153.08453000" + }, + { + "id": "7616", + "name": "Urangan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.29214000", + "longitude": "152.90535000" + }, + { + "id": "7617", + "name": "Urraween", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.29522000", + "longitude": "152.82206000" + }, + { + "id": "7626", + "name": "Varsity Lakes", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.08940000", + "longitude": "153.41220000" + }, + { + "id": "7635", + "name": "Victoria Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58329000", + "longitude": "153.31172000" + }, + { + "id": "7639", + "name": "Vincent", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.28341000", + "longitude": "146.76463000" + }, + { + "id": "7644", + "name": "Virginia", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.38333000", + "longitude": "153.06667000" + }, + { + "id": "7647", + "name": "Wacol", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.58333000", + "longitude": "152.93333000" + }, + { + "id": "7662", + "name": "Wakerley", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48300000", + "longitude": "153.15589000" + }, + { + "id": "7665", + "name": "Walkerston", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.16097000", + "longitude": "149.05814000" + }, + { + "id": "7666", + "name": "Walkervale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.88266000", + "longitude": "152.35886000" + }, + { + "id": "7675", + "name": "Walloon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60545000", + "longitude": "152.66429000" + }, + { + "id": "7679", + "name": "Wamuran", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.03909000", + "longitude": "152.86542000" + }, + { + "id": "7680", + "name": "Wandal", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.36878000", + "longitude": "150.49381000" + }, + { + "id": "7686", + "name": "Wandoan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.12285000", + "longitude": "149.96028000" + }, + { + "id": "7698", + "name": "Warana", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.72273000", + "longitude": "153.12688000" + }, + { + "id": "7707", + "name": "Warner", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.31222000", + "longitude": "152.94981000" + }, + { + "id": "7725", + "name": "Warwick", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.21901000", + "longitude": "152.03438000" + }, + { + "id": "7730", + "name": "Waterford West", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.69056000", + "longitude": "153.13319000" + }, + { + "id": "7746", + "name": "Wavell Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.39385000", + "longitude": "153.04698000" + }, + { + "id": "7754", + "name": "Weipa", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-12.63671000", + "longitude": "141.87555000" + }, + { + "id": "7756", + "name": "Wellesley Islands", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.63184000", + "longitude": "139.40140000" + }, + { + "id": "7759", + "name": "Wellington Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48333000", + "longitude": "153.25000000" + }, + { + "id": "7784", + "name": "West End", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.47923000", + "longitude": "153.00960000" + }, + { + "id": "7786", + "name": "West Gladstone", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.86123000", + "longitude": "151.24530000" + }, + { + "id": "7798", + "name": "West Mackay", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.15467000", + "longitude": "149.16181000" + }, + { + "id": "7805", + "name": "West Rockhampton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.37941000", + "longitude": "150.48175000" + }, + { + "id": "7814", + "name": "West Woombye", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.66644000", + "longitude": "152.92557000" + }, + { + "id": "7817", + "name": "Westbrook", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61667000", + "longitude": "151.86667000" + }, + { + "id": "7819", + "name": "Westcourt", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.80000000", + "longitude": "150.15000000" + }, + { + "id": "7821", + "name": "Western Downs", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.80665000", + "longitude": "150.38590000" + }, + { + "id": "7822", + "name": "Westlake", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54862000", + "longitude": "152.91276000" + }, + { + "id": "7835", + "name": "White Rock", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.97438000", + "longitude": "145.76330000" + }, + { + "id": "7838", + "name": "Whitfield", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.89508000", + "longitude": "145.73335000" + }, + { + "id": "7839", + "name": "Whitsunday", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.69780000", + "longitude": "148.01349000" + }, + { + "id": "7840", + "name": "Whitsundays", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.11943000", + "longitude": "148.91325000" + }, + { + "id": "7865", + "name": "Willow Vale", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.84499000", + "longitude": "153.26310000" + }, + { + "id": "7866", + "name": "Willowbank", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.68215000", + "longitude": "152.67407000" + }, + { + "id": "7869", + "name": "Wilsonton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.54312000", + "longitude": "151.91684000" + }, + { + "id": "7870", + "name": "Wilsonton Heights", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53227000", + "longitude": "151.92444000" + }, + { + "id": "7871", + "name": "Wilston", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.43218000", + "longitude": "153.01904000" + }, + { + "id": "7877", + "name": "Windaroo", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.74587000", + "longitude": "153.19339000" + }, + { + "id": "7880", + "name": "Windsor", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.43631000", + "longitude": "153.02882000" + }, + { + "id": "7887", + "name": "Winston", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.70374000", + "longitude": "139.49913000" + }, + { + "id": "7890", + "name": "Winton", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.50749000", + "longitude": "142.66199000" + }, + { + "id": "7891", + "name": "Wishart", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55448000", + "longitude": "153.10107000" + }, + { + "id": "7892", + "name": "Withcott", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.55408000", + "longitude": "152.02432000" + }, + { + "id": "7894", + "name": "Witta", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.70000000", + "longitude": "152.81667000" + }, + { + "id": "7903", + "name": "Wondai", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.31770000", + "longitude": "151.87242000" + }, + { + "id": "7904", + "name": "Wondunna", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.31758000", + "longitude": "152.85912000" + }, + { + "id": "7906", + "name": "Wongaling Beach", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.91327000", + "longitude": "146.09611000" + }, + { + "id": "7908", + "name": "Wongawallan", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.87553000", + "longitude": "153.22865000" + }, + { + "id": "7918", + "name": "Woodend", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.60554000", + "longitude": "152.75307000" + }, + { + "id": "7919", + "name": "Woodford", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.95291000", + "longitude": "152.77747000" + }, + { + "id": "7921", + "name": "Woodgate", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.10830000", + "longitude": "152.56254000" + }, + { + "id": "7923", + "name": "Woodridge", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.63333000", + "longitude": "153.10000000" + }, + { + "id": "7934", + "name": "Woody Point", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.25608000", + "longitude": "153.10427000" + }, + { + "id": "7938", + "name": "Woolloongabba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.48855000", + "longitude": "153.03655000" + }, + { + "id": "7940", + "name": "Wooloowin", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.42244000", + "longitude": "153.04204000" + }, + { + "id": "7941", + "name": "Woombye", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.66054000", + "longitude": "152.96947000" + }, + { + "id": "7944", + "name": "Woorabinda", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.15010000", + "longitude": "149.44977000" + }, + { + "id": "7946", + "name": "Woorim", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.06931000", + "longitude": "153.20427000" + }, + { + "id": "7949", + "name": "Woree", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.95000000", + "longitude": "145.75000000" + }, + { + "id": "7950", + "name": "Worongary", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.05000000", + "longitude": "153.35000000" + }, + { + "id": "7957", + "name": "Wujal Wujal", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-15.96904000", + "longitude": "145.31520000" + }, + { + "id": "7959", + "name": "Wulguru", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.32850000", + "longitude": "146.81842000" + }, + { + "id": "7960", + "name": "Wulkuraka", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.61429000", + "longitude": "152.72191000" + }, + { + "id": "7964", + "name": "Wurtulla", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.75648000", + "longitude": "153.12805000" + }, + { + "id": "7973", + "name": "Wynnum", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.44527000", + "longitude": "153.15813000" + }, + { + "id": "7974", + "name": "Wynnum West", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.45824000", + "longitude": "153.15319000" + }, + { + "id": "7979", + "name": "Wyreema", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.65583000", + "longitude": "151.85532000" + }, + { + "id": "7988", + "name": "Yamanto", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.66027000", + "longitude": "152.73863000" + }, + { + "id": "7991", + "name": "Yandina", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.56165000", + "longitude": "152.95595000" + }, + { + "id": "7994", + "name": "Yaroomba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.55126000", + "longitude": "153.09701000" + }, + { + "id": "7999", + "name": "Yarrabah", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.99463000", + "longitude": "145.88058000" + }, + { + "id": "8000", + "name": "Yarrabilba", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.80864000", + "longitude": "153.11163000" + }, + { + "id": "8004", + "name": "Yarraman", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.84167000", + "longitude": "151.98138000" + }, + { + "id": "8013", + "name": "Yatala", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.71667000", + "longitude": "153.21667000" + }, + { + "id": "8015", + "name": "Yeerongpilly", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.53097000", + "longitude": "153.00935000" + }, + { + "id": "8018", + "name": "Yeppoon", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.12683000", + "longitude": "150.74406000" + }, + { + "id": "8019", + "name": "Yeppoon city centre", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.12950000", + "longitude": "150.73639000" + }, + { + "id": "8020", + "name": "Yeronga", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.51571000", + "longitude": "153.01642000" + }, + { + "id": "8027", + "name": "Yorkeys Knob", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.80278000", + "longitude": "145.72083000" + }, + { + "id": "8032", + "name": "Yungaburra", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.27058000", + "longitude": "145.58335000" + }, + { + "id": "8034", + "name": "Zillmere", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.35591000", + "longitude": "153.04453000" + }, + { + "id": "8035", + "name": "Zilzie", + "state_id": 3905, + "state_code": "QLD", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.28867000", + "longitude": "150.79820000" + }, + { + "id": "3910", + "name": "Aberfoyle Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.07680000", + "longitude": "138.59163000" + }, + { + "id": "3919", + "name": "Adelaide", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92866000", + "longitude": "138.59863000" + }, + { + "id": "3921", + "name": "Adelaide city centre", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92873000", + "longitude": "138.60334000" + }, + { + "id": "3920", + "name": "Adelaide Hills", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90103000", + "longitude": "138.85457000" + }, + { + "id": "3933", + "name": "Albert Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87201000", + "longitude": "138.51966000" + }, + { + "id": "3935", + "name": "Alberton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85925000", + "longitude": "138.52138000" + }, + { + "id": "3944", + "name": "Aldgate", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.01667000", + "longitude": "138.73333000" + }, + { + "id": "3945", + "name": "Aldinga Beach", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.27826000", + "longitude": "138.45802000" + }, + { + "id": "3951", + "name": "Alexandrina", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.33769000", + "longitude": "138.83704000" + }, + { + "id": "3962", + "name": "Allenby Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89766000", + "longitude": "138.55425000" + }, + { + "id": "3976", + "name": "Anangu Pitjantjatjara", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.05797000", + "longitude": "131.37314000" + }, + { + "id": "3978", + "name": "Andrews Farm", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.67632000", + "longitude": "138.66197000" + }, + { + "id": "3979", + "name": "Angaston", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.50129000", + "longitude": "139.04625000" + }, + { + "id": "3980", + "name": "Angle Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85989000", + "longitude": "138.55798000" + }, + { + "id": "3981", + "name": "Angle Vale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.64098000", + "longitude": "138.64610000" + }, + { + "id": "4001", + "name": "Ardrossan", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.42217000", + "longitude": "137.91907000" + }, + { + "id": "4014", + "name": "Ascot Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99175000", + "longitude": "138.55768000" + }, + { + "id": "4023", + "name": "Ashford", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94859000", + "longitude": "138.57457000" + }, + { + "id": "4033", + "name": "Athelstone", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87019000", + "longitude": "138.69990000" + }, + { + "id": "4035", + "name": "Athol Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85608000", + "longitude": "138.54282000" + }, + { + "id": "4069", + "name": "Balaklava", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.14542000", + "longitude": "138.41148000" + }, + { + "id": "4077", + "name": "Balhannah", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99094000", + "longitude": "138.82565000" + }, + { + "id": "4102", + "name": "Banksia Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.81015000", + "longitude": "138.73570000" + }, + { + "id": "4122", + "name": "Barmera", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.25562000", + "longitude": "140.46147000" + }, + { + "id": "4126", + "name": "Barossa", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.61351000", + "longitude": "138.96169000" + }, + { + "id": "4130", + "name": "Barunga West", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.79484000", + "longitude": "137.92311000" + }, + { + "id": "4168", + "name": "Beaumont", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94899000", + "longitude": "138.66188000" + }, + { + "id": "4173", + "name": "Bedford Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02204000", + "longitude": "138.56815000" + }, + { + "id": "4183", + "name": "Belair", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99766000", + "longitude": "138.62077000" + }, + { + "id": "4202", + "name": "Bellevue Heights", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.03023000", + "longitude": "138.58314000" + }, + { + "id": "4236", + "name": "Berri", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.28107000", + "longitude": "140.59958000" + }, + { + "id": "4237", + "name": "Berri and Barmera", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.28788000", + "longitude": "140.49358000" + }, + { + "id": "4247", + "name": "Beulah Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91768000", + "longitude": "138.64522000" + }, + { + "id": "4250", + "name": "Beverley", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89512000", + "longitude": "138.54633000" + }, + { + "id": "4268", + "name": "Birdwood", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.81826000", + "longitude": "138.96478000" + }, + { + "id": "4270", + "name": "Birkenhead", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83685000", + "longitude": "138.49788000" + }, + { + "id": "4275", + "name": "Black Forest", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96028000", + "longitude": "138.57668000" + }, + { + "id": "4296", + "name": "Blackwood", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02139000", + "longitude": "138.61429000" + }, + { + "id": "4297", + "name": "Blair Athol", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85889000", + "longitude": "138.59656000" + }, + { + "id": "4301", + "name": "Blakeview", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.67566000", + "longitude": "138.71010000" + }, + { + "id": "4348", + "name": "Bordertown", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.30768000", + "longitude": "140.77167000" + }, + { + "id": "4378", + "name": "Brahma Lodge", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.77604000", + "longitude": "138.65306000" + }, + { + "id": "4397", + "name": "Bridgewater", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.01397000", + "longitude": "138.76648000" + }, + { + "id": "4401", + "name": "Brighton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.01820000", + "longitude": "138.52351000" + }, + { + "id": "4417", + "name": "Broadview", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87589000", + "longitude": "138.61498000" + }, + { + "id": "4422", + "name": "Brompton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89445000", + "longitude": "138.57820000" + }, + { + "id": "4428", + "name": "Brooklyn Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92847000", + "longitude": "138.53631000" + }, + { + "id": "4486", + "name": "Burnside", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93333000", + "longitude": "138.65000000" + }, + { + "id": "4493", + "name": "Burra", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.67171000", + "longitude": "138.92835000" + }, + { + "id": "4499", + "name": "Burton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.73339000", + "longitude": "138.60247000" + }, + { + "id": "4546", + "name": "Camden Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96857000", + "longitude": "138.53957000" + }, + { + "id": "4559", + "name": "Campbelltown", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88545000", + "longitude": "138.68546000" + }, + { + "id": "4646", + "name": "Ceduna", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.14736000", + "longitude": "133.86288000" + }, + { + "id": "4664", + "name": "Charles Sturt", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90067000", + "longitude": "138.53182000" + }, + { + "id": "4678", + "name": "Cheltenham", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86788000", + "longitude": "138.52336000" + }, + { + "id": "4701", + "name": "Christie Downs", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.12999000", + "longitude": "138.49633000" + }, + { + "id": "4702", + "name": "Christies Beach", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.13876000", + "longitude": "138.47232000" + }, + { + "id": "4713", + "name": "City of West Torrens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93133000", + "longitude": "138.55090000" + }, + { + "id": "4714", + "name": "Clapham", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98989000", + "longitude": "138.60158000" + }, + { + "id": "4715", + "name": "Clare", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83325000", + "longitude": "138.61064000" + }, + { + "id": "4716", + "name": "Clare and Gilbert Valleys", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01462000", + "longitude": "138.75340000" + }, + { + "id": "4721", + "name": "Clarence Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97539000", + "longitude": "138.57983000" + }, + { + "id": "4722", + "name": "Clarence Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96416000", + "longitude": "138.58060000" + }, + { + "id": "4733", + "name": "Clearview", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85735000", + "longitude": "138.61327000" + }, + { + "id": "4736", + "name": "Cleve", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.66078000", + "longitude": "136.28893000" + }, + { + "id": "4747", + "name": "Clovelly Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99951000", + "longitude": "138.57081000" + }, + { + "id": "4778", + "name": "Collinswood", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88730000", + "longitude": "138.61224000" + }, + { + "id": "4780", + "name": "Colonel Light Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98628000", + "longitude": "138.59746000" + }, + { + "id": "4794", + "name": "Coober Pedy", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.01415000", + "longitude": "134.75495000" + }, + { + "id": "4831", + "name": "Copper Coast", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.94287000", + "longitude": "137.71329000" + }, + { + "id": "4841", + "name": "Coromandel Valley", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.05000000", + "longitude": "138.61667000" + }, + { + "id": "4850", + "name": "Cowandilla", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93221000", + "longitude": "138.55931000" + }, + { + "id": "4852", + "name": "Cowell", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68227000", + "longitude": "136.92117000" + }, + { + "id": "4856", + "name": "Crafers", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00000000", + "longitude": "138.70000000" + }, + { + "id": "4857", + "name": "Crafers West", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99136000", + "longitude": "138.68205000" + }, + { + "id": "4858", + "name": "Craigburn Farm", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.04046000", + "longitude": "138.60490000" + }, + { + "id": "4862", + "name": "Craigmore", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.70064000", + "longitude": "138.70956000" + }, + { + "id": "4894", + "name": "Croydon Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88028000", + "longitude": "138.56779000" + }, + { + "id": "4896", + "name": "Crystal Brook", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.35256000", + "longitude": "138.20955000" + }, + { + "id": "4902", + "name": "Cumberland Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97204000", + "longitude": "138.58670000" + }, + { + "id": "4942", + "name": "Darlington", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.03151000", + "longitude": "138.55527000" + }, + { + "id": "4950", + "name": "Davoren Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.69063000", + "longitude": "138.66862000" + }, + { + "id": "4951", + "name": "Daw Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98975000", + "longitude": "138.58407000" + }, + { + "id": "4979", + "name": "Dernancourt", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86199000", + "longitude": "138.67658000" + }, + { + "id": "5020", + "name": "Dover Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02400000", + "longitude": "138.53695000" + }, + { + "id": "5037", + "name": "Dulwich", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93650000", + "longitude": "138.62720000" + }, + { + "id": "5104", + "name": "Echunga", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.10354000", + "longitude": "138.79588000" + }, + { + "id": "5107", + "name": "Eden Hills", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02110000", + "longitude": "138.59567000" + }, + { + "id": "5118", + "name": "Edwardstown", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98018000", + "longitude": "138.56940000" + }, + { + "id": "5131", + "name": "Elizabeth Downs", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.69982000", + "longitude": "138.69132000" + }, + { + "id": "5132", + "name": "Elizabeth East", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.72513000", + "longitude": "138.68214000" + }, + { + "id": "5133", + "name": "Elizabeth Grove", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.73528000", + "longitude": "138.66888000" + }, + { + "id": "5135", + "name": "Elizabeth North", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.70678000", + "longitude": "138.67609000" + }, + { + "id": "5136", + "name": "Elizabeth Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.70974000", + "longitude": "138.68604000" + }, + { + "id": "5137", + "name": "Elizabeth South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.73182000", + "longitude": "138.66192000" + }, + { + "id": "5138", + "name": "Elizabeth Vale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.74857000", + "longitude": "138.66819000" + }, + { + "id": "5144", + "name": "Elliston", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.53931000", + "longitude": "135.09514000" + }, + { + "id": "5158", + "name": "Encounter Bay", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.57419000", + "longitude": "138.60055000" + }, + { + "id": "5160", + "name": "Enfield", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85260000", + "longitude": "138.60255000" + }, + { + "id": "5168", + "name": "Erindale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92785000", + "longitude": "138.66313000" + }, + { + "id": "5181", + "name": "Ethelton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.84869000", + "longitude": "138.49103000" + }, + { + "id": "5192", + "name": "Evandale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90552000", + "longitude": "138.63542000" + }, + { + "id": "5194", + "name": "Evanston", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.61657000", + "longitude": "138.73369000" + }, + { + "id": "5195", + "name": "Evanston Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.62323000", + "longitude": "138.72166000" + }, + { + "id": "5196", + "name": "Evanston Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.62284000", + "longitude": "138.74123000" + }, + { + "id": "5198", + "name": "Everard Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95196000", + "longitude": "138.57481000" + }, + { + "id": "5201", + "name": "Exeter", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83994000", + "longitude": "138.48902000" + }, + { + "id": "5212", + "name": "Fairview Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.79998000", + "longitude": "138.72857000" + }, + { + "id": "5222", + "name": "Felixstow", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88902000", + "longitude": "138.64696000" + }, + { + "id": "5232", + "name": "Ferryden Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86616000", + "longitude": "138.56180000" + }, + { + "id": "5235", + "name": "Findon", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90000000", + "longitude": "138.53333000" + }, + { + "id": "5238", + "name": "Firle", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90459000", + "longitude": "138.65319000" + }, + { + "id": "5245", + "name": "Flagstaff Hill", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.04861000", + "longitude": "138.58285000" + }, + { + "id": "5251", + "name": "Flinders Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91026000", + "longitude": "138.54322000" + }, + { + "id": "5252", + "name": "Flinders Ranges", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.13341000", + "longitude": "138.33882000" + }, + { + "id": "5268", + "name": "Forestville", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94946000", + "longitude": "138.57845000" + }, + { + "id": "5279", + "name": "Franklin Harbour", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.60164000", + "longitude": "136.94148000" + }, + { + "id": "5287", + "name": "Freeling", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.45407000", + "longitude": "138.80868000" + }, + { + "id": "5294", + "name": "Fulham", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92737000", + "longitude": "138.51368000" + }, + { + "id": "5295", + "name": "Fulham Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91483000", + "longitude": "138.51324000" + }, + { + "id": "5296", + "name": "Fullarton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95100000", + "longitude": "138.62900000" + }, + { + "id": "5310", + "name": "Gawler", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.62109000", + "longitude": "138.73228000" + }, + { + "id": "5311", + "name": "Gawler East", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.59889000", + "longitude": "138.76320000" + }, + { + "id": "5312", + "name": "Gawler South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.60712000", + "longitude": "138.74445000" + }, + { + "id": "5331", + "name": "Gilberton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90051000", + "longitude": "138.61260000" + }, + { + "id": "5334", + "name": "Gilles Plains", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85000000", + "longitude": "138.65000000" + }, + { + "id": "5351", + "name": "Glandore", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96154000", + "longitude": "138.56832000" + }, + { + "id": "5363", + "name": "Glen Osmond", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95960000", + "longitude": "138.64873000" + }, + { + "id": "5365", + "name": "Glenalta", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00792000", + "longitude": "138.62592000" + }, + { + "id": "5371", + "name": "Glenelg", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98079000", + "longitude": "138.51500000" + }, + { + "id": "5373", + "name": "Glenelg East", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97640000", + "longitude": "138.52962000" + }, + { + "id": "5374", + "name": "Glenelg North", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96790000", + "longitude": "138.51751000" + }, + { + "id": "5375", + "name": "Glenelg South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98964000", + "longitude": "138.51425000" + }, + { + "id": "5381", + "name": "Glengowrie", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98708000", + "longitude": "138.53674000" + }, + { + "id": "5389", + "name": "Glenside", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94275000", + "longitude": "138.63375000" + }, + { + "id": "5390", + "name": "Glenunga", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95013000", + "longitude": "138.63841000" + }, + { + "id": "5396", + "name": "Glynde", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89605000", + "longitude": "138.65253000" + }, + { + "id": "5403", + "name": "Golden Grove", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.78333000", + "longitude": "138.73333000" + }, + { + "id": "5410", + "name": "Goodwood", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95092000", + "longitude": "138.59230000" + }, + { + "id": "5412", + "name": "Goolwa", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.50159000", + "longitude": "138.78191000" + }, + { + "id": "5413", + "name": "Goolwa Beach", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.50474000", + "longitude": "138.77320000" + }, + { + "id": "5431", + "name": "Goyder", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.71640000", + "longitude": "139.01655000" + }, + { + "id": "5435", + "name": "Grange", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90223000", + "longitude": "138.49022000" + }, + { + "id": "5437", + "name": "Grant", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83642000", + "longitude": "140.63316000" + }, + { + "id": "5452", + "name": "Greenacres", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86855000", + "longitude": "138.62800000" + }, + { + "id": "5457", + "name": "Greenock", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.45700000", + "longitude": "138.92719000" + }, + { + "id": "5464", + "name": "Greenwith", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.76565000", + "longitude": "138.71383000" + }, + { + "id": "5477", + "name": "Gulfview Heights", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.79545000", + "longitude": "138.66937000" + }, + { + "id": "5499", + "name": "Hackham", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.15514000", + "longitude": "138.52509000" + }, + { + "id": "5500", + "name": "Hackham West", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.14312000", + "longitude": "138.51442000" + }, + { + "id": "5504", + "name": "Hahndorf", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02863000", + "longitude": "138.80779000" + }, + { + "id": "5507", + "name": "Hallett Cove", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.07923000", + "longitude": "138.51460000" + }, + { + "id": "5519", + "name": "Hampstead Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87448000", + "longitude": "138.62881000" + }, + { + "id": "5525", + "name": "Happy Valley", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.08333000", + "longitude": "138.53333000" + }, + { + "id": "5542", + "name": "Hawthorn", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97384000", + "longitude": "138.60738000" + }, + { + "id": "5545", + "name": "Hawthorndene", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02229000", + "longitude": "138.63039000" + }, + { + "id": "5549", + "name": "Hayborough", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.53129000", + "longitude": "138.65037000" + }, + { + "id": "5553", + "name": "Hazelwood Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93947000", + "longitude": "138.65879000" + }, + { + "id": "5565", + "name": "Hectorville", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89157000", + "longitude": "138.65892000" + }, + { + "id": "5576", + "name": "Henley Beach", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92029000", + "longitude": "138.49442000" + }, + { + "id": "5577", + "name": "Henley Beach South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92591000", + "longitude": "138.49554000" + }, + { + "id": "5589", + "name": "Hewett", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.57801000", + "longitude": "138.75242000" + }, + { + "id": "5594", + "name": "Highbury", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85287000", + "longitude": "138.69750000" + }, + { + "id": "5598", + "name": "Highgate", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96177000", + "longitude": "138.62180000" + }, + { + "id": "5606", + "name": "Hillbank", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.73588000", + "longitude": "138.68723000" + }, + { + "id": "5607", + "name": "Hillcrest", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86252000", + "longitude": "138.64306000" + }, + { + "id": "5619", + "name": "Hindmarsh Island", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.51014000", + "longitude": "138.86762000" + }, + { + "id": "5628", + "name": "Holden Hill", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85161000", + "longitude": "138.67232000" + }, + { + "id": "5630", + "name": "Holdfast Bay", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00244000", + "longitude": "138.52318000" + }, + { + "id": "5646", + "name": "Hope Valley", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83333000", + "longitude": "138.70000000" + }, + { + "id": "5656", + "name": "Hove", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00814000", + "longitude": "138.52120000" + }, + { + "id": "5669", + "name": "Huntfield Heights", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.15452000", + "longitude": "138.51417000" + }, + { + "id": "5680", + "name": "Hyde Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95467000", + "longitude": "138.60107000" + }, + { + "id": "5690", + "name": "Ingle Farm", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83333000", + "longitude": "138.63333000" + }, + { + "id": "5718", + "name": "Jamestown", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.20531000", + "longitude": "138.60503000" + }, + { + "id": "5744", + "name": "Joslin", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89967000", + "longitude": "138.62655000" + }, + { + "id": "5753", + "name": "Kadina", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96495000", + "longitude": "137.71634000" + }, + { + "id": "5776", + "name": "Kangaroo Island", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.82390000", + "longitude": "137.33392000" + }, + { + "id": "5781", + "name": "Kapunda", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.33871000", + "longitude": "138.91644000" + }, + { + "id": "5791", + "name": "Karoonda East Murray", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92846000", + "longitude": "140.02484000" + }, + { + "id": "5813", + "name": "Keith", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.09910000", + "longitude": "140.35315000" + }, + { + "id": "5829", + "name": "Kensington Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92582000", + "longitude": "138.66145000" + }, + { + "id": "5831", + "name": "Kensington Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92022000", + "longitude": "138.65430000" + }, + { + "id": "5833", + "name": "Kent Town", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92155000", + "longitude": "138.62009000" + }, + { + "id": "5840", + "name": "Kersbrook", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.78305000", + "longitude": "138.85091000" + }, + { + "id": "5851", + "name": "Kidman Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91224000", + "longitude": "138.52693000" + }, + { + "id": "5853", + "name": "Kilburn", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85970000", + "longitude": "138.58559000" + }, + { + "id": "5855", + "name": "Kilkenny", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87914000", + "longitude": "138.55290000" + }, + { + "id": "5862", + "name": "Kimba", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.04817000", + "longitude": "136.31797000" + }, + { + "id": "5877", + "name": "Kingscote", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.65590000", + "longitude": "137.63930000" + }, + { + "id": "5883", + "name": "Kingston", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.64083000", + "longitude": "140.05093000" + }, + { + "id": "5888", + "name": "Kingston South East", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.83073000", + "longitude": "139.85220000" + }, + { + "id": "5898", + "name": "Klemzig", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87928000", + "longitude": "138.63562000" + }, + { + "id": "5929", + "name": "Kurralta Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95142000", + "longitude": "138.56702000" + }, + { + "id": "5977", + "name": "Largs Bay", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.82582000", + "longitude": "138.48619000" + }, + { + "id": "5978", + "name": "Largs North", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.82050000", + "longitude": "138.49241000" + }, + { + "id": "5994", + "name": "Leabrook", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92976000", + "longitude": "138.65862000" + }, + { + "id": "6018", + "name": "Lewiston", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.60449000", + "longitude": "138.59125000" + }, + { + "id": "6021", + "name": "Light", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.40981000", + "longitude": "138.84367000" + }, + { + "id": "6026", + "name": "Linden Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94347000", + "longitude": "138.64728000" + }, + { + "id": "6037", + "name": "Little Hampton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.04225000", + "longitude": "138.86423000" + }, + { + "id": "6044", + "name": "Lobethal", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90455000", + "longitude": "138.87477000" + }, + { + "id": "6047", + "name": "Lockleys", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92588000", + "longitude": "138.52803000" + }, + { + "id": "6075", + "name": "Lower Eyre Peninsula", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.48806000", + "longitude": "135.70114000" + }, + { + "id": "6077", + "name": "Lower Mitcham", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97731000", + "longitude": "138.60493000" + }, + { + "id": "6080", + "name": "Loxton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.45020000", + "longitude": "140.56908000" + }, + { + "id": "6081", + "name": "Loxton Waikerie", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.48161000", + "longitude": "140.28346000" + }, + { + "id": "6090", + "name": "Lyndoch", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.60124000", + "longitude": "138.89094000" + }, + { + "id": "6098", + "name": "Macclesfield", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.17182000", + "longitude": "138.83589000" + }, + { + "id": "6122", + "name": "Magill", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90911000", + "longitude": "138.67498000" + }, + { + "id": "6128", + "name": "Maitland", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.37386000", + "longitude": "137.67333000" + }, + { + "id": "6138", + "name": "Mallala", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.51035000", + "longitude": "138.42783000" + }, + { + "id": "6141", + "name": "Malvern", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95915000", + "longitude": "138.61254000" + }, + { + "id": "6157", + "name": "Manningham", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87776000", + "longitude": "138.62206000" + }, + { + "id": "6158", + "name": "Mannum", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91529000", + "longitude": "139.30325000" + }, + { + "id": "6162", + "name": "Mansfield Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85655000", + "longitude": "138.55186000" + }, + { + "id": "6166", + "name": "Maralinga Tjarutja", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.60092000", + "longitude": "130.84442000" + }, + { + "id": "6173", + "name": "Marden", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89569000", + "longitude": "138.63780000" + }, + { + "id": "6181", + "name": "Marino", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.04468000", + "longitude": "138.51236000" + }, + { + "id": "6182", + "name": "Marion", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.01322000", + "longitude": "138.55339000" + }, + { + "id": "6184", + "name": "Marleston", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94763000", + "longitude": "138.55957000" + }, + { + "id": "6202", + "name": "Maslin Beach", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.22595000", + "longitude": "138.47984000" + }, + { + "id": "6206", + "name": "Mawson Lakes", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.81589000", + "longitude": "138.60809000" + }, + { + "id": "6212", + "name": "Maylands", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91128000", + "longitude": "138.63671000" + }, + { + "id": "6213", + "name": "McCracken", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.53580000", + "longitude": "138.63121000" + }, + { + "id": "6221", + "name": "McLaren Flat", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.21667000", + "longitude": "138.58333000" + }, + { + "id": "6222", + "name": "McLaren Vale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.21895000", + "longitude": "138.54326000" + }, + { + "id": "6228", + "name": "Meadows", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.18021000", + "longitude": "138.76250000" + }, + { + "id": "6231", + "name": "Medindie", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89600000", + "longitude": "138.60500000" + }, + { + "id": "6238", + "name": "Melrose Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98328000", + "longitude": "138.57541000" + }, + { + "id": "6245", + "name": "Meningie", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.68637000", + "longitude": "139.34007000" + }, + { + "id": "6270", + "name": "Mid Murray", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.41566000", + "longitude": "139.41639000" + }, + { + "id": "6278", + "name": "Middleton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.51047000", + "longitude": "138.70377000" + }, + { + "id": "6285", + "name": "Mile End", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92654000", + "longitude": "138.57033000" + }, + { + "id": "6295", + "name": "Millicent", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.59389000", + "longitude": "140.34947000" + }, + { + "id": "6299", + "name": "Millswood", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95505000", + "longitude": "138.58888000" + }, + { + "id": "6310", + "name": "Minlaton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.77101000", + "longitude": "137.59576000" + }, + { + "id": "6321", + "name": "Mitcham", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00690000", + "longitude": "138.62218000" + }, + { + "id": "6325", + "name": "Mitchell Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.01031000", + "longitude": "138.56266000" + }, + { + "id": "6329", + "name": "Moana", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.19394000", + "longitude": "138.47614000" + }, + { + "id": "6330", + "name": "Modbury", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83333000", + "longitude": "138.68333000" + }, + { + "id": "6331", + "name": "Modbury Heights", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.80969000", + "longitude": "138.68544000" + }, + { + "id": "6332", + "name": "Modbury North", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.82848000", + "longitude": "138.67390000" + }, + { + "id": "6343", + "name": "Monash", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.23840000", + "longitude": "140.56131000" + }, + { + "id": "6364", + "name": "Moonta Bay", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.05000000", + "longitude": "137.56667000" + }, + { + "id": "6368", + "name": "Moorak", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86381000", + "longitude": "140.74263000" + }, + { + "id": "6392", + "name": "Morphett Vale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.13333000", + "longitude": "138.51667000" + }, + { + "id": "6393", + "name": "Morphettville", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98852000", + "longitude": "138.53979000" + }, + { + "id": "6408", + "name": "Mount Barker", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.06907000", + "longitude": "138.86936000" + }, + { + "id": "6413", + "name": "Mount Compass", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.34685000", + "longitude": "138.62032000" + }, + { + "id": "6422", + "name": "Mount Gambier", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82469000", + "longitude": "140.78191000" + }, + { + "id": "6454", + "name": "Mount Remarkable", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.71813000", + "longitude": "138.17130000" + }, + { + "id": "6485", + "name": "Munno Para", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.66792000", + "longitude": "138.70149000" + }, + { + "id": "6486", + "name": "Munno Para West", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.66464000", + "longitude": "138.68066000" + }, + { + "id": "6495", + "name": "Murray Bridge", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.20020000", + "longitude": "139.32090000" + }, + { + "id": "6505", + "name": "Mylor", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.04303000", + "longitude": "138.75900000" + }, + { + "id": "6506", + "name": "Myrtle Bank", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96057000", + "longitude": "138.63377000" + }, + { + "id": "6510", + "name": "Nailsworth", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88437000", + "longitude": "138.60619000" + }, + { + "id": "6511", + "name": "Nairne", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.03450000", + "longitude": "138.91154000" + }, + { + "id": "6522", + "name": "Naracoorte", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.95785000", + "longitude": "140.73830000" + }, + { + "id": "6523", + "name": "Naracoorte and Lucindale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.99542000", + "longitude": "140.52791000" + }, + { + "id": "6551", + "name": "Netherby", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97048000", + "longitude": "138.62503000" + }, + { + "id": "6552", + "name": "Netley", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94887000", + "longitude": "138.54983000" + }, + { + "id": "6577", + "name": "Newton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88207000", + "longitude": "138.68249000" + }, + { + "id": "6597", + "name": "Noarlunga Downs", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.15040000", + "longitude": "138.50395000" + }, + { + "id": "6611", + "name": "Normanville", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.44623000", + "longitude": "138.32130000" + }, + { + "id": "6612", + "name": "North Adelaide", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90733000", + "longitude": "138.59141000" + }, + { + "id": "6622", + "name": "North Brighton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00279000", + "longitude": "138.52211000" + }, + { + "id": "6631", + "name": "North Haven", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.78825000", + "longitude": "138.49162000" + }, + { + "id": "6645", + "name": "North Plympton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95769000", + "longitude": "138.55343000" + }, + { + "id": "6666", + "name": "Northern Areas", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.30074000", + "longitude": "138.47745000" + }, + { + "id": "6670", + "name": "Northfield", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.84979000", + "longitude": "138.62550000" + }, + { + "id": "6671", + "name": "Northgate", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85784000", + "longitude": "138.62908000" + }, + { + "id": "6675", + "name": "Norwood", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92730000", + "longitude": "138.62849000" + }, + { + "id": "6676", + "name": "Norwood Payneham St Peters", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90800000", + "longitude": "138.63556000" + }, + { + "id": "6678", + "name": "Novar Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96626000", + "longitude": "138.53256000" + }, + { + "id": "6688", + "name": "Nuriootpa", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.46825000", + "longitude": "138.99767000" + }, + { + "id": "6692", + "name": "O'Sullivan Beach", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.11879000", + "longitude": "138.47340000" + }, + { + "id": "6696", + "name": "Oakden", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85280000", + "longitude": "138.64330000" + }, + { + "id": "6702", + "name": "Oaklands Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00671000", + "longitude": "138.54457000" + }, + { + "id": "6753", + "name": "O’Halloran Hill", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.06667000", + "longitude": "138.55000000" + }, + { + "id": "6718", + "name": "Old Noarlunga", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.18209000", + "longitude": "138.50138000" + }, + { + "id": "6719", + "name": "Old Reynella", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.10353000", + "longitude": "138.53365000" + }, + { + "id": "6723", + "name": "One Tree Hill", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.70000000", + "longitude": "138.76667000" + }, + { + "id": "6724", + "name": "Onkaparinga", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.18680000", + "longitude": "138.57776000" + }, + { + "id": "6725", + "name": "Onkaparinga Hills", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.13514000", + "longitude": "138.56697000" + }, + { + "id": "6741", + "name": "Orroroo\/Carrieton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.53181000", + "longitude": "138.66470000" + }, + { + "id": "6742", + "name": "Osborne", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.79804000", + "longitude": "138.49796000" + }, + { + "id": "6744", + "name": "Ottoway", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.84756000", + "longitude": "138.53575000" + }, + { + "id": "6774", + "name": "Panorama", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99080000", + "longitude": "138.59948000" + }, + { + "id": "6776", + "name": "Para Hills", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.81210000", + "longitude": "138.65802000" + }, + { + "id": "6777", + "name": "Para Hills West", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.80474000", + "longitude": "138.64283000" + }, + { + "id": "6778", + "name": "Para Vista", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.82094000", + "longitude": "138.66111000" + }, + { + "id": "6780", + "name": "Paradise", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87361000", + "longitude": "138.66896000" + }, + { + "id": "6782", + "name": "Parafield Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.78254000", + "longitude": "138.61077000" + }, + { + "id": "6783", + "name": "Paralowie", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.75705000", + "longitude": "138.60819000" + }, + { + "id": "6785", + "name": "Paringa", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.17644000", + "longitude": "140.78579000" + }, + { + "id": "6788", + "name": "Park Holme", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99443000", + "longitude": "138.55318000" + }, + { + "id": "6799", + "name": "Parkside", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94512000", + "longitude": "138.61304000" + }, + { + "id": "6808", + "name": "Pasadena", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00274000", + "longitude": "138.58862000" + }, + { + "id": "6812", + "name": "Payneham", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89724000", + "longitude": "138.64064000" + }, + { + "id": "6813", + "name": "Payneham South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90481000", + "longitude": "138.64448000" + }, + { + "id": "6830", + "name": "Pennington", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85758000", + "longitude": "138.53160000" + }, + { + "id": "6831", + "name": "Penola", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.37520000", + "longitude": "140.83678000" + }, + { + "id": "6842", + "name": "Peterborough", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.84787000", + "longitude": "139.02608000" + }, + { + "id": "6843", + "name": "Peterhead", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83118000", + "longitude": "138.49892000" + }, + { + "id": "6866", + "name": "Playford", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.69419000", + "longitude": "138.64210000" + }, + { + "id": "6870", + "name": "Plympton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96200000", + "longitude": "138.55496000" + }, + { + "id": "6871", + "name": "Plympton Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98071000", + "longitude": "138.54918000" + }, + { + "id": "6880", + "name": "Pooraka", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.82471000", + "longitude": "138.62637000" + }, + { + "id": "6882", + "name": "Port Adelaide", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.84620000", + "longitude": "138.50302000" + }, + { + "id": "6883", + "name": "Port Adelaide Enfield", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.84803000", + "longitude": "138.50773000" + }, + { + "id": "6884", + "name": "Port Augusta", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.55530000", + "longitude": "137.71362000" + }, + { + "id": "6885", + "name": "Port Augusta West", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.48611000", + "longitude": "137.75833000" + }, + { + "id": "6886", + "name": "Port Broughton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.60070000", + "longitude": "137.93597000" + }, + { + "id": "6889", + "name": "Port Elliot", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.53017000", + "longitude": "138.67922000" + }, + { + "id": "6895", + "name": "Port Lincoln", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.72854000", + "longitude": "135.85748000" + }, + { + "id": "6899", + "name": "Port Noarlunga", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.14802000", + "longitude": "138.47099000" + }, + { + "id": "6900", + "name": "Port Noarlunga South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.17404000", + "longitude": "138.46859000" + }, + { + "id": "6902", + "name": "Port Pirie", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.19176000", + "longitude": "138.01746000" + }, + { + "id": "6903", + "name": "Port Pirie City and Dists", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.36513000", + "longitude": "138.10706000" + }, + { + "id": "6904", + "name": "Port Pirie South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.19797000", + "longitude": "138.01446000" + }, + { + "id": "6905", + "name": "Port Pirie West", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.17790000", + "longitude": "137.99850000" + }, + { + "id": "6908", + "name": "Port Willunga", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.26181000", + "longitude": "138.46436000" + }, + { + "id": "6922", + "name": "Prospect", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88457000", + "longitude": "138.60038000" + }, + { + "id": "6944", + "name": "Queenstown", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86091000", + "longitude": "138.51048000" + }, + { + "id": "6950", + "name": "Quorn", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.34676000", + "longitude": "138.04176000" + }, + { + "id": "6987", + "name": "Redwood Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.81155000", + "longitude": "138.70695000" + }, + { + "id": "6993", + "name": "Renmark", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.17702000", + "longitude": "140.74697000" + }, + { + "id": "6994", + "name": "Renmark Paringa", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.17485000", + "longitude": "140.74860000" + }, + { + "id": "6995", + "name": "Renmark West", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.16531000", + "longitude": "140.70970000" + }, + { + "id": "6996", + "name": "Renown Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89174000", + "longitude": "138.57729000" + }, + { + "id": "7001", + "name": "Reynella", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.09372000", + "longitude": "138.53082000" + }, + { + "id": "7002", + "name": "Reynella East", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.09197000", + "longitude": "138.55742000" + }, + { + "id": "7010", + "name": "Richmond", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94199000", + "longitude": "138.56322000" + }, + { + "id": "7012", + "name": "Ridgehaven", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.82126000", + "longitude": "138.70467000" + }, + { + "id": "7014", + "name": "Ridleyton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89280000", + "longitude": "138.57159000" + }, + { + "id": "7019", + "name": "Risdon Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.19661000", + "longitude": "137.99399000" + }, + { + "id": "7020", + "name": "Risdon Park South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.21104000", + "longitude": "137.99498000" + }, + { + "id": "7032", + "name": "Robe", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.18616000", + "longitude": "139.99003000" + }, + { + "id": "7060", + "name": "Rose Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93039000", + "longitude": "138.62825000" + }, + { + "id": "7073", + "name": "Rosewater", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85200000", + "longitude": "138.52158000" + }, + { + "id": "7078", + "name": "Rosslyn Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92194000", + "longitude": "138.67553000" + }, + { + "id": "7080", + "name": "Rostrevor", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89386000", + "longitude": "138.69183000" + }, + { + "id": "7085", + "name": "Roxby Downs", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.54892000", + "longitude": "136.88377000" + }, + { + "id": "7086", + "name": "Royal Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87415000", + "longitude": "138.51189000" + }, + { + "id": "7087", + "name": "Royston Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89757000", + "longitude": "138.63150000" + }, + { + "id": "7119", + "name": "Salisbury", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.76827000", + "longitude": "138.60831000" + }, + { + "id": "7121", + "name": "Salisbury Downs", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.76772000", + "longitude": "138.62210000" + }, + { + "id": "7122", + "name": "Salisbury East", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.79052000", + "longitude": "138.65450000" + }, + { + "id": "7123", + "name": "Salisbury Heights", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.76310000", + "longitude": "138.67591000" + }, + { + "id": "7124", + "name": "Salisbury North", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.74956000", + "longitude": "138.62060000" + }, + { + "id": "7125", + "name": "Salisbury Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.76155000", + "longitude": "138.67029000" + }, + { + "id": "7126", + "name": "Salisbury Plain", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.77265000", + "longitude": "138.66330000" + }, + { + "id": "7159", + "name": "Seacliff", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.03474000", + "longitude": "138.52288000" + }, + { + "id": "7160", + "name": "Seacliff Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02983000", + "longitude": "138.53129000" + }, + { + "id": "7161", + "name": "Seacombe Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02336000", + "longitude": "138.54580000" + }, + { + "id": "7162", + "name": "Seacombe Heights", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.03264000", + "longitude": "138.54584000" + }, + { + "id": "7164", + "name": "Seaford", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.18980000", + "longitude": "138.47589000" + }, + { + "id": "7165", + "name": "Seaford Meadows", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.17276000", + "longitude": "138.48790000" + }, + { + "id": "7166", + "name": "Seaford Rise", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.19296000", + "longitude": "138.48172000" + }, + { + "id": "7169", + "name": "Seaton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90000000", + "longitude": "138.51667000" + }, + { + "id": "7170", + "name": "Seaview Downs", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.03698000", + "longitude": "138.53796000" + }, + { + "id": "7175", + "name": "Sefton Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87405000", + "longitude": "138.60343000" + }, + { + "id": "7177", + "name": "Sellicks Beach", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.33869000", + "longitude": "138.44734000" + }, + { + "id": "7178", + "name": "Semaphore", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83934000", + "longitude": "138.48228000" + }, + { + "id": "7179", + "name": "Semaphore Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.85072000", + "longitude": "138.47889000" + }, + { + "id": "7180", + "name": "Semaphore South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.84975000", + "longitude": "138.47949000" + }, + { + "id": "7196", + "name": "Sheidow Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.07928000", + "longitude": "138.52738000" + }, + { + "id": "7227", + "name": "Smithfield", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.68333000", + "longitude": "138.68333000" + }, + { + "id": "7229", + "name": "Smithfield Plains", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.67643000", + "longitude": "138.67785000" + }, + { + "id": "7238", + "name": "Solomontown", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.18530000", + "longitude": "138.02364000" + }, + { + "id": "7243", + "name": "Somerton Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99705000", + "longitude": "138.52155000" + }, + { + "id": "7252", + "name": "South Brighton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02765000", + "longitude": "138.52798000" + }, + { + "id": "7282", + "name": "South Plympton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97682000", + "longitude": "138.55588000" + }, + { + "id": "7295", + "name": "Southern Mallee", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.36733000", + "longitude": "140.52030000" + }, + { + "id": "7318", + "name": "St Agnes", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83075000", + "longitude": "138.71074000" + }, + { + "id": "7324", + "name": "St Georges", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95200000", + "longitude": "138.64787000" + }, + { + "id": "7335", + "name": "St Marys", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00423000", + "longitude": "138.57983000" + }, + { + "id": "7336", + "name": "St Morris", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91107000", + "longitude": "138.65360000" + }, + { + "id": "7337", + "name": "St Peters", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90498000", + "longitude": "138.62255000" + }, + { + "id": "7346", + "name": "Stirling", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00220000", + "longitude": "138.71956000" + }, + { + "id": "7349", + "name": "Stirling North", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.47986000", + "longitude": "137.83804000" + }, + { + "id": "7353", + "name": "Stonyfell", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93422000", + "longitude": "138.67674000" + }, + { + "id": "7355", + "name": "Strathalbyn", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.25979000", + "longitude": "138.89247000" + }, + { + "id": "7366", + "name": "Streaky Bay", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.73808000", + "longitude": "134.55116000" + }, + { + "id": "7370", + "name": "Sturt", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02303000", + "longitude": "138.55476000" + }, + { + "id": "7393", + "name": "Surrey Downs", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.79951000", + "longitude": "138.71154000" + }, + { + "id": "7416", + "name": "Tailem Bend", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.25226000", + "longitude": "139.45546000" + }, + { + "id": "7431", + "name": "Tanunda", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.52336000", + "longitude": "138.95982000" + }, + { + "id": "7432", + "name": "Taperoo", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.80425000", + "longitude": "138.49593000" + }, + { + "id": "7448", + "name": "Tatiara", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.22232000", + "longitude": "140.50748000" + }, + { + "id": "7454", + "name": "Tea Tree Gully", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.80171000", + "longitude": "138.71994000" + }, + { + "id": "7469", + "name": "Tennyson", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88601000", + "longitude": "138.48588000" + }, + { + "id": "7481", + "name": "The Coorong", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.71844000", + "longitude": "139.70329000" + }, + { + "id": "7497", + "name": "Thebarton", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91667000", + "longitude": "138.56667000" + }, + { + "id": "7536", + "name": "Toorak Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93478000", + "longitude": "138.63639000" + }, + { + "id": "7545", + "name": "Torrens Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97607000", + "longitude": "138.61034000" + }, + { + "id": "7546", + "name": "Torrensville", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92046000", + "longitude": "138.56149000" + }, + { + "id": "7557", + "name": "Tranmere", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90550000", + "longitude": "138.66212000" + }, + { + "id": "7566", + "name": "Trinity Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91438000", + "longitude": "138.64141000" + }, + { + "id": "7568", + "name": "Trott Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.07576000", + "longitude": "138.54189000" + }, + { + "id": "7578", + "name": "Tumby Bay", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.19697000", + "longitude": "136.13649000" + }, + { + "id": "7588", + "name": "Tusmore", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93894000", + "longitude": "138.65059000" + }, + { + "id": "7595", + "name": "Two Wells", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.59327000", + "longitude": "138.51367000" + }, + { + "id": "7602", + "name": "Underdale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.91803000", + "longitude": "138.54704000" + }, + { + "id": "7604", + "name": "Unley", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95392000", + "longitude": "138.60798000" + }, + { + "id": "7605", + "name": "Unley Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.96388000", + "longitude": "138.60776000" + }, + { + "id": "7621", + "name": "Vale Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88604000", + "longitude": "138.62714000" + }, + { + "id": "7625", + "name": "Valley View", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83994000", + "longitude": "138.66072000" + }, + { + "id": "7631", + "name": "Victor Harbor", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.51605000", + "longitude": "138.54610000" + }, + { + "id": "7642", + "name": "Virginia", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.66630000", + "longitude": "138.56027000" + }, + { + "id": "7657", + "name": "Waikerie", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.18178000", + "longitude": "139.98552000" + }, + { + "id": "7660", + "name": "Wakefield", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.00743000", + "longitude": "138.39455000" + }, + { + "id": "7667", + "name": "Walkerville", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89443000", + "longitude": "138.61626000" + }, + { + "id": "7668", + "name": "Walkley Heights", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.83668000", + "longitude": "138.64368000" + }, + { + "id": "7672", + "name": "Wallaroo", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.93881000", + "longitude": "137.63365000" + }, + { + "id": "7711", + "name": "Warradale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99717000", + "longitude": "138.53155000" + }, + { + "id": "7731", + "name": "Waterloo Corner", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.71667000", + "longitude": "138.58333000" + }, + { + "id": "7740", + "name": "Wattle Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.92516000", + "longitude": "138.67501000" + }, + { + "id": "7742", + "name": "Wattle Range", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.50804000", + "longitude": "140.42114000" + }, + { + "id": "7750", + "name": "Wayville", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94468000", + "longitude": "138.59132000" + }, + { + "id": "7779", + "name": "West Beach", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.94597000", + "longitude": "138.50935000" + }, + { + "id": "7783", + "name": "West Croydon", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.89448000", + "longitude": "138.55931000" + }, + { + "id": "7789", + "name": "West Hindmarsh", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.90794000", + "longitude": "138.56412000" + }, + { + "id": "7793", + "name": "West Lakes", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87299000", + "longitude": "138.49458000" + }, + { + "id": "7794", + "name": "West Lakes Shore", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86010000", + "longitude": "138.48966000" + }, + { + "id": "7816", + "name": "Westbourne Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97165000", + "longitude": "138.59525000" + }, + { + "id": "7843", + "name": "Whyalla", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.04569000", + "longitude": "137.54468000" + }, + { + "id": "7844", + "name": "Whyalla Jenkins", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.02205000", + "longitude": "137.51269000" + }, + { + "id": "7845", + "name": "Whyalla Norrie", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.02903000", + "longitude": "137.53922000" + }, + { + "id": "7846", + "name": "Whyalla Playford", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.02788000", + "longitude": "137.56196000" + }, + { + "id": "7847", + "name": "Whyalla Stuart", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.02493000", + "longitude": "137.52471000" + }, + { + "id": "7854", + "name": "Willaston", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.58640000", + "longitude": "138.74124000" + }, + { + "id": "7859", + "name": "Williamstown", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.67210000", + "longitude": "138.89108000" + }, + { + "id": "7867", + "name": "Willunga", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.27127000", + "longitude": "138.55417000" + }, + { + "id": "7883", + "name": "Windsor Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86538000", + "longitude": "138.64703000" + }, + { + "id": "7915", + "name": "Woodcroft", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.10236000", + "longitude": "138.56292000" + }, + { + "id": "7926", + "name": "Woodside", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95433000", + "longitude": "138.87901000" + }, + { + "id": "7928", + "name": "Woodville", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87700000", + "longitude": "138.54291000" + }, + { + "id": "7929", + "name": "Woodville Gardens", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86788000", + "longitude": "138.54798000" + }, + { + "id": "7930", + "name": "Woodville North", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.87200000", + "longitude": "138.54309000" + }, + { + "id": "7931", + "name": "Woodville Park", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88696000", + "longitude": "138.54648000" + }, + { + "id": "7932", + "name": "Woodville South", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88186000", + "longitude": "138.53477000" + }, + { + "id": "7933", + "name": "Woodville West", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.88640000", + "longitude": "138.53095000" + }, + { + "id": "7956", + "name": "Wudinna", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.97747000", + "longitude": "135.39170000" + }, + { + "id": "7972", + "name": "Wynn Vale", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.79942000", + "longitude": "138.68714000" + }, + { + "id": "7993", + "name": "Yankalilla", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.49390000", + "longitude": "138.34225000" + }, + { + "id": "8026", + "name": "Yorke Peninsula", + "state_id": 3904, + "state_code": "SA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.70549000", + "longitude": "137.58179000" + }, + { + "id": "3916", + "name": "Acton Park", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.87932000", + "longitude": "147.48459000" + }, + { + "id": "4047", + "name": "Austins Ferry", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.76667000", + "longitude": "147.25000000" + }, + { + "id": "4062", + "name": "Bagdad", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.62968000", + "longitude": "147.22339000" + }, + { + "id": "4145", + "name": "Battery Point", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.88995000", + "longitude": "147.33324000" + }, + { + "id": "4160", + "name": "Beaconsfield", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.20227000", + "longitude": "146.81723000" + }, + { + "id": "4170", + "name": "Beauty Point", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.16216000", + "longitude": "146.82146000" + }, + { + "id": "4200", + "name": "Bellerive", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.87551000", + "longitude": "147.37030000" + }, + { + "id": "4239", + "name": "Berriedale", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.81667000", + "longitude": "147.25000000" + }, + { + "id": "4289", + "name": "Blackmans Bay", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.00311000", + "longitude": "147.31694000" + }, + { + "id": "4292", + "name": "Blackstone Heights", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.45977000", + "longitude": "147.08407000" + }, + { + "id": "4387", + "name": "Break O'Day", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.39069000", + "longitude": "147.97477000" + }, + { + "id": "4398", + "name": "Bridgewater", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.73719000", + "longitude": "147.22784000" + }, + { + "id": "4399", + "name": "Bridport", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.00046000", + "longitude": "147.39175000" + }, + { + "id": "4404", + "name": "Brighton", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.72673000", + "longitude": "147.24233000" + }, + { + "id": "4484", + "name": "Burnie", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.19650000", + "longitude": "145.81136000" + }, + { + "id": "4540", + "name": "Cambridge", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.83333000", + "longitude": "147.45000000" + }, + { + "id": "4649", + "name": "Central Coast", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.26999000", + "longitude": "146.05916000" + }, + { + "id": "4653", + "name": "Central Highlands", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.19653000", + "longitude": "146.63934000" + }, + { + "id": "4689", + "name": "Chigwell", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.80912000", + "longitude": "147.24480000" + }, + { + "id": "4707", + "name": "Circular Head", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.01991000", + "longitude": "145.08366000" + }, + { + "id": "4717", + "name": "Claremont", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.78333000", + "longitude": "147.25000000" + }, + { + "id": "4720", + "name": "Clarence", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.87369000", + "longitude": "147.44725000" + }, + { + "id": "4725", + "name": "Clarendon Vale", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.88988000", + "longitude": "147.44368000" + }, + { + "id": "4878", + "name": "Cressy", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.68561000", + "longitude": "147.07792000" + }, + { + "id": "4911", + "name": "Currie", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-39.92976000", + "longitude": "143.85385000" + }, + { + "id": "4917", + "name": "Cygnet", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.15333000", + "longitude": "147.07253000" + }, + { + "id": "4967", + "name": "Deloraine", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.52477000", + "longitude": "146.65701000" + }, + { + "id": "4981", + "name": "Derwent Valley", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.80383000", + "longitude": "146.52970000" + }, + { + "id": "4984", + "name": "Devonport", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.21296000", + "longitude": "146.32401000" + }, + { + "id": "4999", + "name": "Dodges Ferry", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.85315000", + "longitude": "147.62263000" + }, + { + "id": "5015", + "name": "Dorset", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.04789000", + "longitude": "147.73167000" + }, + { + "id": "5052", + "name": "Dynnyrne", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.90541000", + "longitude": "147.31576000" + }, + { + "id": "5073", + "name": "East Devonport", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.18792000", + "longitude": "146.38660000" + }, + { + "id": "5085", + "name": "East Launceston", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.43843000", + "longitude": "147.15101000" + }, + { + "id": "5191", + "name": "Evandale", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.56858000", + "longitude": "147.25271000" + }, + { + "id": "5250", + "name": "Flinders", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-40.03799000", + "longitude": "148.13965000" + }, + { + "id": "5277", + "name": "Franklin", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.08884000", + "longitude": "147.00906000" + }, + { + "id": "5297", + "name": "Gagebrook", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.74770000", + "longitude": "147.26984000" + }, + { + "id": "5319", + "name": "Geeveston", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.16337000", + "longitude": "146.92549000" + }, + { + "id": "5320", + "name": "Geilston Bay", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.82955000", + "longitude": "147.34630000" + }, + { + "id": "5324", + "name": "George Town", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.11982000", + "longitude": "147.01731000" + }, + { + "id": "5350", + "name": "Glamorgan\/Spring Bay", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.27832000", + "longitude": "147.96675000" + }, + { + "id": "5385", + "name": "Glenorchy", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.83188000", + "longitude": "147.22954000" + }, + { + "id": "5409", + "name": "Goodwood", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.82822000", + "longitude": "147.29301000" + }, + { + "id": "5438", + "name": "Granton", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.75149000", + "longitude": "147.22795000" + }, + { + "id": "5503", + "name": "Hadspen", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.50059000", + "longitude": "147.07359000" + }, + { + "id": "5582", + "name": "Herdsmans Cove", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.75066000", + "longitude": "147.26483000" + }, + { + "id": "5609", + "name": "Hillcrest", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.06324000", + "longitude": "145.89437000" + }, + { + "id": "5621", + "name": "Hobart", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.87936000", + "longitude": "147.32941000" + }, + { + "id": "5622", + "name": "Hobart city centre", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.88280000", + "longitude": "147.32582000" + }, + { + "id": "5660", + "name": "Howrah", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.88728000", + "longitude": "147.40554000" + }, + { + "id": "5673", + "name": "Huon Valley", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.29385000", + "longitude": "146.56555000" + }, + { + "id": "5674", + "name": "Huonville", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.03124000", + "longitude": "147.04813000" + }, + { + "id": "5700", + "name": "Invermay", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.42036000", + "longitude": "147.13358000" + }, + { + "id": "5835", + "name": "Kentish", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.46341000", + "longitude": "146.17726000" + }, + { + "id": "5865", + "name": "King Island", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-39.87215000", + "longitude": "143.99153000" + }, + { + "id": "5867", + "name": "Kingborough", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.97451000", + "longitude": "147.25113000" + }, + { + "id": "5872", + "name": "Kings Meadows", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.47041000", + "longitude": "147.16196000" + }, + { + "id": "5882", + "name": "Kingston", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.97638000", + "longitude": "147.30351000" + }, + { + "id": "5887", + "name": "Kingston Beach", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.98021000", + "longitude": "147.31941000" + }, + { + "id": "5982", + "name": "Latrobe", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.21551000", + "longitude": "146.40656000" + }, + { + "id": "5984", + "name": "Lauderdale", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.91364000", + "longitude": "147.48747000" + }, + { + "id": "5985", + "name": "Launceston", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.43876000", + "longitude": "147.13467000" + }, + { + "id": "5986", + "name": "Launceston city centre", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.43352000", + "longitude": "147.13780000" + }, + { + "id": "6000", + "name": "Legana", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.36572000", + "longitude": "147.04584000" + }, + { + "id": "6005", + "name": "Lenah Valley", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.87146000", + "longitude": "147.27514000" + }, + { + "id": "6028", + "name": "Lindisfarne", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.84837000", + "longitude": "147.36192000" + }, + { + "id": "6064", + "name": "Longford", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.60512000", + "longitude": "147.11887000" + }, + { + "id": "6087", + "name": "Lutana", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.83475000", + "longitude": "147.31152000" + }, + { + "id": "6177", + "name": "Margate", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.02814000", + "longitude": "147.26256000" + }, + { + "id": "6207", + "name": "Mayfield", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.38760000", + "longitude": "147.13052000" + }, + { + "id": "6229", + "name": "Meander Valley", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.64952000", + "longitude": "146.54572000" + }, + { + "id": "6268", + "name": "Miandetta", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.19550000", + "longitude": "146.35322000" + }, + { + "id": "6282", + "name": "Midway Point", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.79480000", + "longitude": "147.52883000" + }, + { + "id": "6350", + "name": "Montello", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.05762000", + "longitude": "145.89626000" + }, + { + "id": "6355", + "name": "Montrose", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.82895000", + "longitude": "147.24735000" + }, + { + "id": "6359", + "name": "Moonah", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.84617000", + "longitude": "147.30228000" + }, + { + "id": "6389", + "name": "Mornington", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.86267000", + "longitude": "147.39819000" + }, + { + "id": "6446", + "name": "Mount Nelson", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.92073000", + "longitude": "147.32069000" + }, + { + "id": "6459", + "name": "Mount Stuart", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.87157000", + "longitude": "147.30164000" + }, + { + "id": "6467", + "name": "Mowbray", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.40243000", + "longitude": "147.15059000" + }, + { + "id": "6560", + "name": "New Norfolk", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.78261000", + "longitude": "147.05870000" + }, + { + "id": "6561", + "name": "New Town", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.85758000", + "longitude": "147.30869000" + }, + { + "id": "6571", + "name": "Newnham", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.38969000", + "longitude": "147.11397000" + }, + { + "id": "6575", + "name": "Newstead", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.44108000", + "longitude": "147.16183000" + }, + { + "id": "6632", + "name": "North Hobart", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.87406000", + "longitude": "147.31597000" + }, + { + "id": "6668", + "name": "Northern Midlands", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.87988000", + "longitude": "147.45776000" + }, + { + "id": "6674", + "name": "Norwood", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.45920000", + "longitude": "147.18077000" + }, + { + "id": "6697", + "name": "Oakdowns", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.90178000", + "longitude": "147.45595000" + }, + { + "id": "6715", + "name": "Old Beach", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.77758000", + "longitude": "147.26659000" + }, + { + "id": "6787", + "name": "Park Grove", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.05478000", + "longitude": "145.88201000" + }, + { + "id": "6828", + "name": "Penguin", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.12258000", + "longitude": "146.07318000" + }, + { + "id": "6839", + "name": "Perth", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.57231000", + "longitude": "147.17096000" + }, + { + "id": "6906", + "name": "Port Sorell", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.16652000", + "longitude": "146.55283000" + }, + { + "id": "6924", + "name": "Prospect Vale", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.48100000", + "longitude": "147.10406000" + }, + { + "id": "6943", + "name": "Queenstown", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.08050000", + "longitude": "145.55646000" + }, + { + "id": "6959", + "name": "Ranelagh", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.00977000", + "longitude": "147.03764000" + }, + { + "id": "6970", + "name": "Ravenswood", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.41593000", + "longitude": "147.18250000" + }, + { + "id": "7009", + "name": "Richmond", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.73554000", + "longitude": "147.43833000" + }, + { + "id": "7021", + "name": "Risdon Vale", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.81242000", + "longitude": "147.35654000" + }, + { + "id": "7024", + "name": "Riverside", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.42105000", + "longitude": "147.05086000" + }, + { + "id": "7039", + "name": "Rocherlea", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.38083000", + "longitude": "147.15738000" + }, + { + "id": "7050", + "name": "Rokeby", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.89875000", + "longitude": "147.44917000" + }, + { + "id": "7053", + "name": "Romaine", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.09944000", + "longitude": "145.89376000" + }, + { + "id": "7070", + "name": "Rosetta", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.82105000", + "longitude": "147.25258000" + }, + { + "id": "7115", + "name": "Saint Leonards", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.45672000", + "longitude": "147.19952000" + }, + { + "id": "7134", + "name": "Sandford", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.93333000", + "longitude": "147.50000000" + }, + { + "id": "7141", + "name": "Sandy Bay", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.89449000", + "longitude": "147.32439000" + }, + { + "id": "7156", + "name": "Scottsdale", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.15780000", + "longitude": "147.51727000" + }, + { + "id": "7185", + "name": "Seven Mile Beach", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.85863000", + "longitude": "147.50532000" + }, + { + "id": "7194", + "name": "Shearwater", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.15673000", + "longitude": "146.53178000" + }, + { + "id": "7195", + "name": "Sheffield", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.39947000", + "longitude": "146.33897000" + }, + { + "id": "7209", + "name": "Shorewell Park", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.06990000", + "longitude": "145.87689000" + }, + { + "id": "7231", + "name": "Smithton", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-40.84587000", + "longitude": "145.12498000" + }, + { + "id": "7234", + "name": "Snug", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.06669000", + "longitude": "147.25468000" + }, + { + "id": "7242", + "name": "Somerset", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.04065000", + "longitude": "145.83055000" + }, + { + "id": "7246", + "name": "Sorell", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.78908000", + "longitude": "147.69488000" + }, + { + "id": "7265", + "name": "South Hobart", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.89459000", + "longitude": "147.30924000" + }, + { + "id": "7272", + "name": "South Launceston", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.45506000", + "longitude": "147.14556000" + }, + { + "id": "7296", + "name": "Southern Midlands", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.41785000", + "longitude": "147.43414000" + }, + { + "id": "7306", + "name": "Spreyton", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.23524000", + "longitude": "146.35108000" + }, + { + "id": "7326", + "name": "St Helens", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.32028000", + "longitude": "148.23889000" + }, + { + "id": "7375", + "name": "Summerhill", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.46747000", + "longitude": "147.12796000" + }, + { + "id": "7441", + "name": "Taroona", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.94520000", + "longitude": "147.34840000" + }, + { + "id": "7446", + "name": "Tasman Peninsula", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-43.16245000", + "longitude": "147.94739000" + }, + { + "id": "7556", + "name": "Tranmere", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.92179000", + "longitude": "147.41701000" + }, + { + "id": "7563", + "name": "Trevallyn", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.44246000", + "longitude": "147.10484000" + }, + { + "id": "7583", + "name": "Turners Beach", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.16060000", + "longitude": "146.23193000" + }, + { + "id": "7599", + "name": "Ulverstone", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.16026000", + "longitude": "146.18242000" + }, + { + "id": "7606", + "name": "Upper Burnie", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.07139000", + "longitude": "145.89960000" + }, + { + "id": "7701", + "name": "Waratah\/Wynyard", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.30709000", + "longitude": "145.45831000" + }, + { + "id": "7715", + "name": "Warrane", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.85546000", + "longitude": "147.38297000" + }, + { + "id": "7748", + "name": "Waverley", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.43602000", + "longitude": "147.18588000" + }, + { + "id": "7782", + "name": "West Coast", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.45246000", + "longitude": "145.52264000" + }, + { + "id": "7790", + "name": "West Hobart", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.87658000", + "longitude": "147.30688000" + }, + { + "id": "7796", + "name": "West Launceston", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.45092000", + "longitude": "147.13114000" + }, + { + "id": "7800", + "name": "West Moonah", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-42.84996000", + "longitude": "147.28181000" + }, + { + "id": "7807", + "name": "West Tamar", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.26441000", + "longitude": "146.89123000" + }, + { + "id": "7809", + "name": "West Ulverstone", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.14744000", + "longitude": "146.12670000" + }, + { + "id": "7818", + "name": "Westbury", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.52914000", + "longitude": "146.83914000" + }, + { + "id": "7975", + "name": "Wynyard", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-40.98970000", + "longitude": "145.72617000" + }, + { + "id": "8029", + "name": "Youngtown", + "state_id": 3908, + "state_code": "TAS", + "country_id": 14, + "country_code": "AU", + "latitude": "-41.48332000", + "longitude": "147.17067000" + }, + { + "id": "3904", + "name": "Abbotsford", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80000000", + "longitude": "145.00000000" + }, + { + "id": "3909", + "name": "Aberfeldie", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75959000", + "longitude": "144.89740000" + }, + { + "id": "3926", + "name": "Airport West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.72470000", + "longitude": "144.88126000" + }, + { + "id": "3929", + "name": "Albanvale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.74609000", + "longitude": "144.76856000" + }, + { + "id": "3934", + "name": "Albert Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.84107000", + "longitude": "144.95198000" + }, + { + "id": "3936", + "name": "Albion", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78017000", + "longitude": "144.81724000" + }, + { + "id": "3947", + "name": "Alexandra", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.19132000", + "longitude": "145.71120000" + }, + { + "id": "3954", + "name": "Alfredton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.56667000", + "longitude": "143.81667000" + }, + { + "id": "3960", + "name": "Allansford", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.38639000", + "longitude": "142.59431000" + }, + { + "id": "3966", + "name": "Alphington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78333000", + "longitude": "145.03333000" + }, + { + "id": "3967", + "name": "Alpine", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.83412000", + "longitude": "146.97936000" + }, + { + "id": "3970", + "name": "Altona", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86964000", + "longitude": "144.83036000" + }, + { + "id": "3971", + "name": "Altona Meadows", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88413000", + "longitude": "144.78367000" + }, + { + "id": "3972", + "name": "Altona North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83487000", + "longitude": "144.84735000" + }, + { + "id": "3982", + "name": "Anglesea", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.40730000", + "longitude": "144.18587000" + }, + { + "id": "3990", + "name": "Apollo Bay", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.75940000", + "longitude": "143.67219000" + }, + { + "id": "3996", + "name": "Ararat", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.48925000", + "longitude": "142.82239000" + }, + { + "id": "3999", + "name": "Ardeer", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.77586000", + "longitude": "144.80144000" + }, + { + "id": "4004", + "name": "Armadale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85544000", + "longitude": "145.02052000" + }, + { + "id": "4006", + "name": "Armstrong Creek", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.23121000", + "longitude": "144.37374000" + }, + { + "id": "4012", + "name": "Ascot", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.70000000", + "longitude": "144.33333000" + }, + { + "id": "4015", + "name": "Ascot Vale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.77988000", + "longitude": "144.92276000" + }, + { + "id": "4016", + "name": "Ashburton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86667000", + "longitude": "145.08333000" + }, + { + "id": "4028", + "name": "Ashwood", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86659000", + "longitude": "145.10553000" + }, + { + "id": "4029", + "name": "Aspendale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.02913000", + "longitude": "145.10266000" + }, + { + "id": "4030", + "name": "Aspendale Gardens", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.02277000", + "longitude": "145.11798000" + }, + { + "id": "4037", + "name": "Attwood", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.66955000", + "longitude": "144.88675000" + }, + { + "id": "4051", + "name": "Avenel", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.90088000", + "longitude": "145.23367000" + }, + { + "id": "4053", + "name": "Avoca", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.09044000", + "longitude": "143.47365000" + }, + { + "id": "4057", + "name": "Avondale Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76155000", + "longitude": "144.86261000" + }, + { + "id": "4060", + "name": "Bacchus Marsh", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.67268000", + "longitude": "144.43829000" + }, + { + "id": "4061", + "name": "Badger Creek", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70000000", + "longitude": "145.51667000" + }, + { + "id": "4064", + "name": "Bairnsdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82289000", + "longitude": "147.61041000" + }, + { + "id": "4068", + "name": "Balaclava", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86667000", + "longitude": "145.00000000" + }, + { + "id": "4079", + "name": "Ballan", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.59987000", + "longitude": "144.22890000" + }, + { + "id": "4080", + "name": "Ballarat", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.56622000", + "longitude": "143.84957000" + }, + { + "id": "4081", + "name": "Ballarat Central", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.56206000", + "longitude": "143.85082000" + }, + { + "id": "4082", + "name": "Ballarat East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.56667000", + "longitude": "143.86667000" + }, + { + "id": "4083", + "name": "Ballarat North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.51884000", + "longitude": "143.77284000" + }, + { + "id": "4088", + "name": "Balnarring", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.36667000", + "longitude": "145.13333000" + }, + { + "id": "4091", + "name": "Balwyn", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80914000", + "longitude": "145.07890000" + }, + { + "id": "4092", + "name": "Balwyn North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79086000", + "longitude": "145.09386000" + }, + { + "id": "4104", + "name": "Bannockburn", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.04894000", + "longitude": "144.16882000" + }, + { + "id": "4107", + "name": "Banyule", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73386000", + "longitude": "145.08576000" + }, + { + "id": "4109", + "name": "Baranduda", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.19114000", + "longitude": "146.95380000" + }, + { + "id": "4131", + "name": "Barwon Heads", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.27448000", + "longitude": "144.48853000" + }, + { + "id": "4133", + "name": "Bass Coast", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.48507000", + "longitude": "145.46390000" + }, + { + "id": "4147", + "name": "Baw Baw", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.96998000", + "longitude": "146.14404000" + }, + { + "id": "4148", + "name": "Baxter", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.20000000", + "longitude": "145.15000000" + }, + { + "id": "4152", + "name": "Bayside", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.93986000", + "longitude": "145.01932000" + }, + { + "id": "4153", + "name": "Bayswater", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85000000", + "longitude": "145.26667000" + }, + { + "id": "4155", + "name": "Bayswater North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82612000", + "longitude": "145.29831000" + }, + { + "id": "4161", + "name": "Beaconsfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.05000000", + "longitude": "145.36667000" + }, + { + "id": "4164", + "name": "Beaconsfield Upper", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.99415000", + "longitude": "145.41420000" + }, + { + "id": "4166", + "name": "Beaufort", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.42996000", + "longitude": "143.38347000" + }, + { + "id": "4167", + "name": "Beaumaris", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.98534000", + "longitude": "145.03361000" + }, + { + "id": "4176", + "name": "Beechworth", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.35828000", + "longitude": "146.68584000" + }, + { + "id": "4188", + "name": "Belgrave", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.91093000", + "longitude": "145.35359000" + }, + { + "id": "4189", + "name": "Belgrave Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.92624000", + "longitude": "145.34367000" + }, + { + "id": "4190", + "name": "Belgrave South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.93333000", + "longitude": "145.33333000" + }, + { + "id": "4191", + "name": "Bell Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.10793000", + "longitude": "144.33839000" + }, + { + "id": "4192", + "name": "Bell Post Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.09564000", + "longitude": "144.31968000" + }, + { + "id": "4204", + "name": "Bellfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75309000", + "longitude": "145.03848000" + }, + { + "id": "4210", + "name": "Belmont", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.17485000", + "longitude": "144.34276000" + }, + { + "id": "4216", + "name": "Benalla", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.59041000", + "longitude": "146.02812000" + }, + { + "id": "4218", + "name": "Bendigo", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.75818000", + "longitude": "144.28024000" + }, + { + "id": "4219", + "name": "Bendigo city centre", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.75698000", + "longitude": "144.27957000" + }, + { + "id": "4223", + "name": "Bentleigh", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.91806000", + "longitude": "145.03544000" + }, + { + "id": "4224", + "name": "Bentleigh East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.91928000", + "longitude": "145.05301000" + }, + { + "id": "4246", + "name": "Berwick", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.03333000", + "longitude": "145.35000000" + }, + { + "id": "4248", + "name": "Beveridge", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.48333000", + "longitude": "144.98333000" + }, + { + "id": "4274", + "name": "Bittern", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.33333000", + "longitude": "145.16667000" + }, + { + "id": "4276", + "name": "Black Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.55000000", + "longitude": "143.86667000" + }, + { + "id": "4279", + "name": "Black Rock", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.97357000", + "longitude": "145.01636000" + }, + { + "id": "4283", + "name": "Blackburn", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81901000", + "longitude": "145.15326000" + }, + { + "id": "4284", + "name": "Blackburn North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80931000", + "longitude": "145.15180000" + }, + { + "id": "4285", + "name": "Blackburn South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83975000", + "longitude": "145.15549000" + }, + { + "id": "4299", + "name": "Blairgowrie", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.36131000", + "longitude": "144.77955000" + }, + { + "id": "4307", + "name": "Blind Bight", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.21427000", + "longitude": "145.33770000" + }, + { + "id": "4325", + "name": "Bonbeach", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.06528000", + "longitude": "145.12278000" + }, + { + "id": "4349", + "name": "Boronia", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86667000", + "longitude": "145.28333000" + }, + { + "id": "4351", + "name": "Boroondara", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82640000", + "longitude": "145.05299000" + }, + { + "id": "4353", + "name": "Botanic Ridge", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13922000", + "longitude": "145.26841000" + }, + { + "id": "4368", + "name": "Box Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81887000", + "longitude": "145.12545000" + }, + { + "id": "4369", + "name": "Box Hill North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80266000", + "longitude": "145.12656000" + }, + { + "id": "4370", + "name": "Box Hill South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83236000", + "longitude": "145.12098000" + }, + { + "id": "4386", + "name": "Braybrook", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78671000", + "longitude": "144.85484000" + }, + { + "id": "4392", + "name": "Briagolong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.84356000", + "longitude": "147.07268000" + }, + { + "id": "4393", + "name": "Briar Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70631000", + "longitude": "145.12100000" + }, + { + "id": "4400", + "name": "Bright", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.72998000", + "longitude": "146.95978000" + }, + { + "id": "4403", + "name": "Brighton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90561000", + "longitude": "145.00279000" + }, + { + "id": "4405", + "name": "Brighton East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90232000", + "longitude": "145.01734000" + }, + { + "id": "4407", + "name": "Brimbank", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.74287000", + "longitude": "144.81644000" + }, + { + "id": "4414", + "name": "Broadford", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.20276000", + "longitude": "145.04837000" + }, + { + "id": "4416", + "name": "Broadmeadows", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.68015000", + "longitude": "144.91877000" + }, + { + "id": "4425", + "name": "Brookfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70080000", + "longitude": "144.56025000" + }, + { + "id": "4427", + "name": "Brooklyn", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81609000", + "longitude": "144.84150000" + }, + { + "id": "4435", + "name": "Brown Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.54654000", + "longitude": "143.91553000" + }, + { + "id": "4438", + "name": "Brunswick", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76667000", + "longitude": "144.96667000" + }, + { + "id": "4440", + "name": "Brunswick East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.77255000", + "longitude": "144.97241000" + }, + { + "id": "4442", + "name": "Brunswick West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76461000", + "longitude": "144.94383000" + }, + { + "id": "4455", + "name": "Bulleen", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76667000", + "longitude": "145.08333000" + }, + { + "id": "4459", + "name": "Buloke", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.84638000", + "longitude": "143.05201000" + }, + { + "id": "4470", + "name": "Bundoora", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.69825000", + "longitude": "145.05967000" + }, + { + "id": "4474", + "name": "Buninyong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.65019000", + "longitude": "143.88388000" + }, + { + "id": "4476", + "name": "Bunyip", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.09789000", + "longitude": "145.71606000" + }, + { + "id": "4487", + "name": "Burnside", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.74937000", + "longitude": "144.75301000" + }, + { + "id": "4489", + "name": "Burnside Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.72691000", + "longitude": "144.75225000" + }, + { + "id": "4500", + "name": "Burwood", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.84978000", + "longitude": "145.11901000" + }, + { + "id": "4502", + "name": "Burwood East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85000000", + "longitude": "145.15000000" + }, + { + "id": "4523", + "name": "Cairnlea", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75931000", + "longitude": "144.78781000" + }, + { + "id": "4529", + "name": "California Gully", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.72887000", + "longitude": "144.26089000" + }, + { + "id": "4537", + "name": "Camberwell", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.84205000", + "longitude": "145.06940000" + }, + { + "id": "4554", + "name": "Campaspe", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.32338000", + "longitude": "144.70844000" + }, + { + "id": "4556", + "name": "Campbellfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.66386000", + "longitude": "144.95953000" + }, + { + "id": "4557", + "name": "Campbells Creek", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.08665000", + "longitude": "144.20203000" + }, + { + "id": "4562", + "name": "Camperdown", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.23392000", + "longitude": "143.14983000" + }, + { + "id": "4565", + "name": "Canadian", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.57606000", + "longitude": "143.87742000" + }, + { + "id": "4575", + "name": "Canterbury", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82470000", + "longitude": "145.08476000" + }, + { + "id": "4580", + "name": "Cape Woolamai", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.54285000", + "longitude": "145.34407000" + }, + { + "id": "4588", + "name": "Cardinia", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.09508000", + "longitude": "145.56455000" + }, + { + "id": "4597", + "name": "Carisbrook", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.04808000", + "longitude": "143.81665000" + }, + { + "id": "4600", + "name": "Carlton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80000000", + "longitude": "144.96667000" + }, + { + "id": "4602", + "name": "Carlton North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78818000", + "longitude": "144.97014000" + }, + { + "id": "4605", + "name": "Carnegie", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89359000", + "longitude": "145.05534000" + }, + { + "id": "4607", + "name": "Caroline Springs", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.74124000", + "longitude": "144.73631000" + }, + { + "id": "4614", + "name": "Carrum", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.08333000", + "longitude": "145.13333000" + }, + { + "id": "4615", + "name": "Carrum Downs", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.09968000", + "longitude": "145.17248000" + }, + { + "id": "4620", + "name": "Casey", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.09519000", + "longitude": "145.32279000" + }, + { + "id": "4625", + "name": "Casterton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.58489000", + "longitude": "141.40297000" + }, + { + "id": "4629", + "name": "Castlemaine", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.06709000", + "longitude": "144.21684000" + }, + { + "id": "4637", + "name": "Caulfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88251000", + "longitude": "145.02288000" + }, + { + "id": "4638", + "name": "Caulfield East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88121000", + "longitude": "145.04208000" + }, + { + "id": "4639", + "name": "Caulfield North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.87390000", + "longitude": "145.02485000" + }, + { + "id": "4640", + "name": "Caulfield South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89562000", + "longitude": "145.02597000" + }, + { + "id": "4652", + "name": "Central Goldfields", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.97889000", + "longitude": "143.73857000" + }, + { + "id": "4656", + "name": "Chadstone", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88766000", + "longitude": "145.09519000" + }, + { + "id": "4667", + "name": "Charlton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.26437000", + "longitude": "143.34901000" + }, + { + "id": "4676", + "name": "Chelsea", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.05000000", + "longitude": "145.11667000" + }, + { + "id": "4677", + "name": "Chelsea Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.03333000", + "longitude": "145.13333000" + }, + { + "id": "4679", + "name": "Cheltenham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.96944000", + "longitude": "145.04806000" + }, + { + "id": "4685", + "name": "Chewton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.08137000", + "longitude": "144.25682000" + }, + { + "id": "4691", + "name": "Chiltern", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.15044000", + "longitude": "146.60843000" + }, + { + "id": "4696", + "name": "Chirnside Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73860000", + "longitude": "145.31431000" + }, + { + "id": "4704", + "name": "Churchill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.30776000", + "longitude": "146.41367000" + }, + { + "id": "4726", + "name": "Clarinda", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.94066000", + "longitude": "145.10238000" + }, + { + "id": "4730", + "name": "Clayton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.91667000", + "longitude": "145.11667000" + }, + { + "id": "4731", + "name": "Clayton South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.93333000", + "longitude": "145.11667000" + }, + { + "id": "4740", + "name": "Clifton Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79798000", + "longitude": "144.99533000" + }, + { + "id": "4741", + "name": "Clifton Springs", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.15670000", + "longitude": "144.55510000" + }, + { + "id": "4749", + "name": "Clunes", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.29473000", + "longitude": "143.78636000" + }, + { + "id": "4750", + "name": "Clyde", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13333000", + "longitude": "145.33333000" + }, + { + "id": "4751", + "name": "Clyde North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.11667000", + "longitude": "145.33333000" + }, + { + "id": "4755", + "name": "Cobden", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.32860000", + "longitude": "143.07484000" + }, + { + "id": "4756", + "name": "Cobram", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.92069000", + "longitude": "145.64066000" + }, + { + "id": "4757", + "name": "Coburg", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75000000", + "longitude": "144.96667000" + }, + { + "id": "4758", + "name": "Coburg North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.72867000", + "longitude": "144.96134000" + }, + { + "id": "4759", + "name": "Cockatoo", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.93677000", + "longitude": "145.49376000" + }, + { + "id": "4764", + "name": "Cohuna", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.80697000", + "longitude": "144.21886000" + }, + { + "id": "4765", + "name": "Colac", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.33900000", + "longitude": "143.58489000" + }, + { + "id": "4766", + "name": "Colac-Otway", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.43873000", + "longitude": "143.59669000" + }, + { + "id": "4767", + "name": "Coldstream", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.72490000", + "longitude": "145.37804000" + }, + { + "id": "4775", + "name": "Collingwood", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80253000", + "longitude": "144.98872000" + }, + { + "id": "4806", + "name": "Coolaroo", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.65675000", + "longitude": "144.93460000" + }, + { + "id": "4834", + "name": "Corangamite", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.21596000", + "longitude": "143.23542000" + }, + { + "id": "4838", + "name": "Corio", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.08333000", + "longitude": "144.38333000" + }, + { + "id": "4845", + "name": "Corryong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.19705000", + "longitude": "147.90256000" + }, + { + "id": "4853", + "name": "Cowes", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.45231000", + "longitude": "145.23865000" + }, + { + "id": "4860", + "name": "Craigieburn", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.60000000", + "longitude": "144.95000000" + }, + { + "id": "4864", + "name": "Cranbourne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.11342000", + "longitude": "145.28326000" + }, + { + "id": "4865", + "name": "Cranbourne East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.11531000", + "longitude": "145.29814000" + }, + { + "id": "4866", + "name": "Cranbourne North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.07758000", + "longitude": "145.29871000" + }, + { + "id": "4867", + "name": "Cranbourne South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13502000", + "longitude": "145.23958000" + }, + { + "id": "4868", + "name": "Cranbourne West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.09650000", + "longitude": "145.26707000" + }, + { + "id": "4874", + "name": "Cremorne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83180000", + "longitude": "144.99380000" + }, + { + "id": "4881", + "name": "Creswick", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.42404000", + "longitude": "143.89470000" + }, + { + "id": "4882", + "name": "Crib Point", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.35000000", + "longitude": "145.20000000" + }, + { + "id": "4890", + "name": "Croydon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80000000", + "longitude": "145.28333000" + }, + { + "id": "4892", + "name": "Croydon Hills", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.77651000", + "longitude": "145.26355000" + }, + { + "id": "4893", + "name": "Croydon North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76741000", + "longitude": "145.29073000" + }, + { + "id": "4895", + "name": "Croydon South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81232000", + "longitude": "145.26810000" + }, + { + "id": "4924", + "name": "Dallas", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.67083000", + "longitude": "144.93542000" + }, + { + "id": "4931", + "name": "Dandenong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.98333000", + "longitude": "145.20000000" + }, + { + "id": "4932", + "name": "Dandenong North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.96649000", + "longitude": "145.20810000" + }, + { + "id": "4936", + "name": "Darebin", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75153000", + "longitude": "145.02193000" + }, + { + "id": "4937", + "name": "Darley", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.65807000", + "longitude": "144.44344000" + }, + { + "id": "4954", + "name": "Daylesford", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.34113000", + "longitude": "144.14256000" + }, + { + "id": "4962", + "name": "Deer Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76722000", + "longitude": "144.76657000" + }, + { + "id": "4964", + "name": "Delacombe", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.58911000", + "longitude": "143.81472000" + }, + { + "id": "4965", + "name": "Delahey", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.71980000", + "longitude": "144.77732000" + }, + { + "id": "4975", + "name": "Dennington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.35519000", + "longitude": "142.43361000" + }, + { + "id": "4980", + "name": "Derrimut", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79238000", + "longitude": "144.76994000" + }, + { + "id": "4983", + "name": "Devon Meadows", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.16667000", + "longitude": "145.30000000" + }, + { + "id": "4987", + "name": "Diamond Creek", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.66667000", + "longitude": "145.15000000" + }, + { + "id": "4992", + "name": "Diggers Rest", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.62597000", + "longitude": "144.71881000" + }, + { + "id": "4993", + "name": "Dimboola", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.45616000", + "longitude": "142.03287000" + }, + { + "id": "4995", + "name": "Dingley Village", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.98270000", + "longitude": "145.13420000" + }, + { + "id": "4996", + "name": "Dinner Plain", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.02360000", + "longitude": "147.24124000" + }, + { + "id": "4998", + "name": "Docklands", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81490000", + "longitude": "144.95052000" + }, + { + "id": "5001", + "name": "Donald", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.36864000", + "longitude": "142.98106000" + }, + { + "id": "5002", + "name": "Doncaster", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78828000", + "longitude": "145.12373000" + }, + { + "id": "5003", + "name": "Doncaster East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78761000", + "longitude": "145.14888000" + }, + { + "id": "5007", + "name": "Donvale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78910000", + "longitude": "145.17488000" + }, + { + "id": "5013", + "name": "Doreen", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.60000000", + "longitude": "145.15000000" + }, + { + "id": "5022", + "name": "Doveton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.99346000", + "longitude": "145.23891000" + }, + { + "id": "5028", + "name": "Dromana", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.33375000", + "longitude": "144.96458000" + }, + { + "id": "5029", + "name": "Drouin", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13658000", + "longitude": "145.85838000" + }, + { + "id": "5032", + "name": "Drysdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.17237000", + "longitude": "144.56988000" + }, + { + "id": "5055", + "name": "Eagle Point", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90000000", + "longitude": "147.68333000" + }, + { + "id": "5058", + "name": "Eaglehawk", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.71611000", + "longitude": "144.25049000" + }, + { + "id": "5059", + "name": "Eaglemont", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76379000", + "longitude": "145.06380000" + }, + { + "id": "5064", + "name": "East Bairnsdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83426000", + "longitude": "147.65548000" + }, + { + "id": "5066", + "name": "East Bendigo", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.74157000", + "longitude": "144.31894000" + }, + { + "id": "5075", + "name": "East Geelong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.15568000", + "longitude": "144.37202000" + }, + { + "id": "5076", + "name": "East Gippsland", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.34564000", + "longitude": "148.58295000" + }, + { + "id": "5090", + "name": "East Melbourne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "144.98790000" + }, + { + "id": "5103", + "name": "Echuca", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.14057000", + "longitude": "144.75185000" + }, + { + "id": "5108", + "name": "Eden Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.48333000", + "longitude": "145.08333000" + }, + { + "id": "5115", + "name": "Edithvale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.03724000", + "longitude": "145.10974000" + }, + { + "id": "5142", + "name": "Elliminyt", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.37110000", + "longitude": "143.58003000" + }, + { + "id": "5145", + "name": "Elsternwick", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88639000", + "longitude": "145.00250000" + }, + { + "id": "5146", + "name": "Eltham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73333000", + "longitude": "145.15000000" + }, + { + "id": "5147", + "name": "Eltham North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70000000", + "longitude": "145.15000000" + }, + { + "id": "5148", + "name": "Elwood", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88214000", + "longitude": "144.98215000" + }, + { + "id": "5150", + "name": "Emerald", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.93167000", + "longitude": "145.44093000" + }, + { + "id": "5159", + "name": "Endeavour Hills", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.97695000", + "longitude": "145.25866000" + }, + { + "id": "5164", + "name": "Epping", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.65000000", + "longitude": "145.03333000" + }, + { + "id": "5166", + "name": "Epsom", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.71667000", + "longitude": "144.31667000" + }, + { + "id": "5177", + "name": "Essendon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.74981000", + "longitude": "144.91090000" + }, + { + "id": "5178", + "name": "Essendon North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.74225000", + "longitude": "144.90546000" + }, + { + "id": "5179", + "name": "Essendon West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75489000", + "longitude": "144.88338000" + }, + { + "id": "5187", + "name": "Eumemmerring", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.99780000", + "longitude": "145.24821000" + }, + { + "id": "5189", + "name": "Euroa", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.75555000", + "longitude": "145.57075000" + }, + { + "id": "5203", + "name": "Eynesbury", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80043000", + "longitude": "144.57458000" + }, + { + "id": "5205", + "name": "Fairfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.77977000", + "longitude": "145.01764000" + }, + { + "id": "5215", + "name": "Falls Creek", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.86535000", + "longitude": "147.27782000" + }, + { + "id": "5221", + "name": "Fawkner", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.71667000", + "longitude": "144.96667000" + }, + { + "id": "5227", + "name": "Ferntree Gully", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88461000", + "longitude": "145.29539000" + }, + { + "id": "5229", + "name": "Ferny Creek", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88333000", + "longitude": "145.33333000" + }, + { + "id": "5241", + "name": "Fitzroy", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79839000", + "longitude": "144.97833000" + }, + { + "id": "5243", + "name": "Fitzroy North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78862000", + "longitude": "144.97885000" + }, + { + "id": "5246", + "name": "Flemington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78825000", + "longitude": "144.93001000" + }, + { + "id": "5254", + "name": "Flora Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.78123000", + "longitude": "144.29562000" + }, + { + "id": "5259", + "name": "Footscray", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80000000", + "longitude": "144.90000000" + }, + { + "id": "5264", + "name": "Forest Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83333000", + "longitude": "145.18333000" + }, + { + "id": "5276", + "name": "Foster", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.65275000", + "longitude": "146.20073000" + }, + { + "id": "5280", + "name": "Frankston", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13402000", + "longitude": "145.16875000" + }, + { + "id": "5281", + "name": "Frankston East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13333000", + "longitude": "145.13333000" + }, + { + "id": "5282", + "name": "Frankston North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.12352000", + "longitude": "145.14836000" + }, + { + "id": "5283", + "name": "Frankston South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.16604000", + "longitude": "145.13643000" + }, + { + "id": "5301", + "name": "Gannawarra", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.73211000", + "longitude": "143.85316000" + }, + { + "id": "5305", + "name": "Garfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.08985000", + "longitude": "145.67502000" + }, + { + "id": "5316", + "name": "Geelong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.14711000", + "longitude": "144.36069000" + }, + { + "id": "5318", + "name": "Geelong city centre", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.14996000", + "longitude": "144.36176000" + }, + { + "id": "5317", + "name": "Geelong West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13888000", + "longitude": "144.34842000" + }, + { + "id": "5322", + "name": "Gembrook", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.95321000", + "longitude": "145.55536000" + }, + { + "id": "5345", + "name": "Gisborne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.48858000", + "longitude": "144.59421000" + }, + { + "id": "5349", + "name": "Gladstone Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.68742000", + "longitude": "144.88675000" + }, + { + "id": "5356", + "name": "Glen Eira", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89949000", + "longitude": "145.04099000" + }, + { + "id": "5358", + "name": "Glen Huntly", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89237000", + "longitude": "145.04135000" + }, + { + "id": "5362", + "name": "Glen Iris", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86667000", + "longitude": "145.06667000" + }, + { + "id": "5364", + "name": "Glen Waverley", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.87811000", + "longitude": "145.16476000" + }, + { + "id": "5372", + "name": "Glenelg", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89083000", + "longitude": "141.44238000" + }, + { + "id": "5377", + "name": "Glenferrie", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83333000", + "longitude": "145.05000000" + }, + { + "id": "5380", + "name": "Glengarry", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.11667000", + "longitude": "146.56667000" + }, + { + "id": "5387", + "name": "Glenroy", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70000000", + "longitude": "144.93333000" + }, + { + "id": "5404", + "name": "Golden Plains", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85231000", + "longitude": "143.86352000" + }, + { + "id": "5405", + "name": "Golden Point", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.57493000", + "longitude": "143.86870000" + }, + { + "id": "5406", + "name": "Golden Square", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.77265000", + "longitude": "144.25271000" + }, + { + "id": "5419", + "name": "Gordon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.58230000", + "longitude": "144.10925000" + }, + { + "id": "5428", + "name": "Gowanbrae", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70823000", + "longitude": "144.89079000" + }, + { + "id": "5445", + "name": "Greater Bendigo", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.72278000", + "longitude": "144.43974000" + }, + { + "id": "5446", + "name": "Greater Dandenong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.00112000", + "longitude": "145.19073000" + }, + { + "id": "5447", + "name": "Greater Geelong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.05182000", + "longitude": "144.46137000" + }, + { + "id": "5449", + "name": "Greater Shepparton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.42742000", + "longitude": "145.41519000" + }, + { + "id": "5458", + "name": "Greensborough", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70462000", + "longitude": "145.10302000" + }, + { + "id": "5460", + "name": "Greenvale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.63333000", + "longitude": "144.86667000" + }, + { + "id": "5474", + "name": "Grovedale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.20000000", + "longitude": "144.35000000" + }, + { + "id": "5501", + "name": "Haddon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.60000000", + "longitude": "143.71667000" + }, + { + "id": "5502", + "name": "Hadfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70728000", + "longitude": "144.94160000" + }, + { + "id": "5506", + "name": "Hallam", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.01667000", + "longitude": "145.26667000" + }, + { + "id": "5511", + "name": "Hamilton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.74425000", + "longitude": "142.02202000" + }, + { + "id": "5515", + "name": "Hamlyn Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.12108000", + "longitude": "144.32799000" + }, + { + "id": "5520", + "name": "Hampton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.95000000", + "longitude": "145.00000000" + }, + { + "id": "5521", + "name": "Hampton East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.93695000", + "longitude": "145.02863000" + }, + { + "id": "5522", + "name": "Hampton Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.03333000", + "longitude": "145.25000000" + }, + { + "id": "5535", + "name": "Hastings", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.30000000", + "longitude": "145.18333000" + }, + { + "id": "5537", + "name": "Haven", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.76072000", + "longitude": "142.19426000" + }, + { + "id": "5541", + "name": "Hawthorn", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81992000", + "longitude": "145.03580000" + }, + { + "id": "5543", + "name": "Hawthorn East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82484000", + "longitude": "145.04640000" + }, + { + "id": "5544", + "name": "Hawthorn South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83290000", + "longitude": "145.03670000" + }, + { + "id": "5552", + "name": "Hazelwood North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.26763000", + "longitude": "146.48286000" + }, + { + "id": "5554", + "name": "Healesville", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.65395000", + "longitude": "145.51718000" + }, + { + "id": "5557", + "name": "Heathcote", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.92214000", + "longitude": "144.70837000" + }, + { + "id": "5558", + "name": "Heatherton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.96667000", + "longitude": "145.10000000" + }, + { + "id": "5559", + "name": "Heathmont", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83333000", + "longitude": "145.25000000" + }, + { + "id": "5567", + "name": "Heidelberg", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75000000", + "longitude": "145.06667000" + }, + { + "id": "5568", + "name": "Heidelberg Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.74313000", + "longitude": "145.05695000" + }, + { + "id": "5569", + "name": "Heidelberg West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73922000", + "longitude": "145.04034000" + }, + { + "id": "5580", + "name": "Hepburn", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.31707000", + "longitude": "144.03355000" + }, + { + "id": "5586", + "name": "Herne Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13427000", + "longitude": "144.32406000" + }, + { + "id": "5590", + "name": "Heyfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.98130000", + "longitude": "146.78559000" + }, + { + "id": "5591", + "name": "Heywood", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13294000", + "longitude": "141.62949000" + }, + { + "id": "5595", + "name": "Highett", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.95000000", + "longitude": "145.05000000" + }, + { + "id": "5601", + "name": "Highton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.17058000", + "longitude": "144.31140000" + }, + { + "id": "5612", + "name": "Hillside", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.69047000", + "longitude": "144.74172000" + }, + { + "id": "5618", + "name": "Hindmarsh", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.03293000", + "longitude": "141.73282000" + }, + { + "id": "5620", + "name": "Hmas Cerberus", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.36491000", + "longitude": "145.20038000" + }, + { + "id": "5624", + "name": "Hobsons Bay", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85694000", + "longitude": "144.83347000" + }, + { + "id": "5647", + "name": "Hoppers Crossing", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88264000", + "longitude": "144.70030000" + }, + { + "id": "5652", + "name": "Horsham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.82857000", + "longitude": "142.11448000" + }, + { + "id": "5655", + "name": "Hotham Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.99298000", + "longitude": "147.15225000" + }, + { + "id": "5664", + "name": "Hughesdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90000000", + "longitude": "145.08333000" + }, + { + "id": "5665", + "name": "Hume", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.59717000", + "longitude": "144.80511000" + }, + { + "id": "5670", + "name": "Huntingdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90766000", + "longitude": "145.10847000" + }, + { + "id": "5672", + "name": "Huntly", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.66451000", + "longitude": "144.33382000" + }, + { + "id": "5676", + "name": "Hurstbridge", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.64157000", + "longitude": "145.19408000" + }, + { + "id": "5686", + "name": "Indented Head", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.14305000", + "longitude": "144.71343000" + }, + { + "id": "5687", + "name": "Indigo", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.20854000", + "longitude": "146.68628000" + }, + { + "id": "5698", + "name": "Inverleigh", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.10177000", + "longitude": "144.05132000" + }, + { + "id": "5699", + "name": "Inverloch", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.62659000", + "longitude": "145.72260000" + }, + { + "id": "5701", + "name": "Invermay Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.53063000", + "longitude": "143.85798000" + }, + { + "id": "5703", + "name": "Ironbark", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.75478000", + "longitude": "144.26378000" + }, + { + "id": "5705", + "name": "Irymple", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.23537000", + "longitude": "142.17101000" + }, + { + "id": "5710", + "name": "Ivanhoe", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76903000", + "longitude": "145.04308000" + }, + { + "id": "5711", + "name": "Ivanhoe East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.77340000", + "longitude": "145.06195000" + }, + { + "id": "5713", + "name": "Jacana", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.68778000", + "longitude": "144.91111000" + }, + { + "id": "5714", + "name": "Jackass Flat", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.71589000", + "longitude": "144.28597000" + }, + { + "id": "5720", + "name": "Jan Juc", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.34455000", + "longitude": "144.29518000" + }, + { + "id": "5749", + "name": "Junction Village", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13636000", + "longitude": "145.29684000" + }, + { + "id": "5751", + "name": "Junortoun", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.77106000", + "longitude": "144.36311000" + }, + { + "id": "5761", + "name": "Kalimna", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.87011000", + "longitude": "147.96664000" + }, + { + "id": "5766", + "name": "Kallista", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89815000", + "longitude": "145.38226000" + }, + { + "id": "5767", + "name": "Kalorama", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "145.36667000" + }, + { + "id": "5774", + "name": "Kangaroo Flat", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.80000000", + "longitude": "144.25000000" + }, + { + "id": "5775", + "name": "Kangaroo Ground", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.68919000", + "longitude": "145.23170000" + }, + { + "id": "5803", + "name": "Kealba", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73710000", + "longitude": "144.82830000" + }, + { + "id": "5807", + "name": "Keilor", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.71667000", + "longitude": "144.83333000" + }, + { + "id": "5808", + "name": "Keilor Downs", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.72337000", + "longitude": "144.80839000" + }, + { + "id": "5809", + "name": "Keilor East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73261000", + "longitude": "144.86504000" + }, + { + "id": "5810", + "name": "Keilor Lodge", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.69997000", + "longitude": "144.80332000" + }, + { + "id": "5811", + "name": "Keilor Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.72025000", + "longitude": "144.85422000" + }, + { + "id": "5826", + "name": "Kennington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.77128000", + "longitude": "144.30298000" + }, + { + "id": "5827", + "name": "Kensington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79188000", + "longitude": "144.93114000" + }, + { + "id": "5839", + "name": "Kerang", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.73489000", + "longitude": "143.92027000" + }, + { + "id": "5841", + "name": "Kew", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80639000", + "longitude": "145.03086000" + }, + { + "id": "5843", + "name": "Kew East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79758000", + "longitude": "145.05378000" + }, + { + "id": "5846", + "name": "Keysborough", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.99116000", + "longitude": "145.17385000" + }, + { + "id": "5847", + "name": "Kialla", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.44729000", + "longitude": "145.41422000" + }, + { + "id": "5859", + "name": "Kilmore", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.29577000", + "longitude": "144.95252000" + }, + { + "id": "5860", + "name": "Kilsyth", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80000000", + "longitude": "145.31667000" + }, + { + "id": "5861", + "name": "Kilsyth South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82033000", + "longitude": "145.31599000" + }, + { + "id": "5868", + "name": "Kinglake", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.53291000", + "longitude": "145.33964000" + }, + { + "id": "5869", + "name": "Kinglake West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.46667000", + "longitude": "145.23333000" + }, + { + "id": "5874", + "name": "Kings Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73397000", + "longitude": "144.77766000" + }, + { + "id": "5875", + "name": "Kingsbury", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.71406000", + "longitude": "145.03509000" + }, + { + "id": "5884", + "name": "Kingston", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.00450000", + "longitude": "145.09531000" + }, + { + "id": "5889", + "name": "Kingsville", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80819000", + "longitude": "144.87911000" + }, + { + "id": "5899", + "name": "Knox", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89895000", + "longitude": "145.26923000" + }, + { + "id": "5900", + "name": "Knoxfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88978000", + "longitude": "145.24962000" + }, + { + "id": "5905", + "name": "Koo-Wee-Rup", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.19941000", + "longitude": "145.49081000" + }, + { + "id": "5913", + "name": "Koroit", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.29180000", + "longitude": "142.36729000" + }, + { + "id": "5915", + "name": "Korumburra", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.43194000", + "longitude": "145.82355000" + }, + { + "id": "5931", + "name": "Kurunjang", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.67587000", + "longitude": "144.59690000" + }, + { + "id": "5934", + "name": "Kyabram", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.31335000", + "longitude": "145.05035000" + }, + { + "id": "5936", + "name": "Kyneton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.24444000", + "longitude": "144.45148000" + }, + { + "id": "5944", + "name": "Lake Gardens", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.54632000", + "longitude": "143.81653000" + }, + { + "id": "5952", + "name": "Lake Wendouree", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.54993000", + "longitude": "143.84730000" + }, + { + "id": "5956", + "name": "Lakes Entrance", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86679000", + "longitude": "148.00159000" + }, + { + "id": "5958", + "name": "Lalor", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.66667000", + "longitude": "145.01667000" + }, + { + "id": "5963", + "name": "Lancefield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.27733000", + "longitude": "144.73596000" + }, + { + "id": "5969", + "name": "Lang Lang", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.26605000", + "longitude": "145.56210000" + }, + { + "id": "5971", + "name": "Langwarrin", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.16667000", + "longitude": "145.16667000" + }, + { + "id": "5972", + "name": "Langwarrin South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.18947000", + "longitude": "145.19350000" + }, + { + "id": "5974", + "name": "Lara", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.02388000", + "longitude": "144.40617000" + }, + { + "id": "5983", + "name": "Latrobe", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.25379000", + "longitude": "146.46124000" + }, + { + "id": "5987", + "name": "Launching Place", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78058000", + "longitude": "145.56834000" + }, + { + "id": "5988", + "name": "Laverton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86201000", + "longitude": "144.76979000" + }, + { + "id": "6008", + "name": "Leongatha", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.47607000", + "longitude": "145.94685000" + }, + { + "id": "6010", + "name": "Leopold", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.19001000", + "longitude": "144.46825000" + }, + { + "id": "6024", + "name": "Lilydale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75000000", + "longitude": "145.35000000" + }, + { + "id": "6039", + "name": "Little River", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.96667000", + "longitude": "144.50000000" + }, + { + "id": "6051", + "name": "Loddon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.40406000", + "longitude": "143.82964000" + }, + { + "id": "6062", + "name": "Long Gully", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.74305000", + "longitude": "144.25788000" + }, + { + "id": "6065", + "name": "Longford", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.16237000", + "longitude": "147.08591000" + }, + { + "id": "6068", + "name": "Longwarry", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.11279000", + "longitude": "145.76849000" + }, + { + "id": "6070", + "name": "Lorne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.54043000", + "longitude": "143.97636000" + }, + { + "id": "6072", + "name": "Lovely Banks", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.06667000", + "longitude": "144.33333000" + }, + { + "id": "6078", + "name": "Lower Plenty", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73333000", + "longitude": "145.11667000" + }, + { + "id": "6082", + "name": "Lucknow", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "147.65000000" + }, + { + "id": "6089", + "name": "Lynbrook", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.05588000", + "longitude": "145.25615000" + }, + { + "id": "6095", + "name": "Lysterfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.93333000", + "longitude": "145.30000000" + }, + { + "id": "6099", + "name": "Macedon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.41963000", + "longitude": "144.56242000" + }, + { + "id": "6100", + "name": "Macedon Ranges", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.33343000", + "longitude": "144.61581000" + }, + { + "id": "6110", + "name": "Macleod", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73333000", + "longitude": "145.06667000" + }, + { + "id": "6117", + "name": "Maddingley", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.68518000", + "longitude": "144.43245000" + }, + { + "id": "6121", + "name": "Maffra", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.97132000", + "longitude": "146.98366000" + }, + { + "id": "6125", + "name": "Maiden Gully", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.75389000", + "longitude": "144.20789000" + }, + { + "id": "6126", + "name": "Maidstone", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78035000", + "longitude": "144.87353000" + }, + { + "id": "6135", + "name": "Maldon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.99570000", + "longitude": "144.06834000" + }, + { + "id": "6137", + "name": "Mallacoota", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.55896000", + "longitude": "149.75407000" + }, + { + "id": "6140", + "name": "Malvern", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86259000", + "longitude": "145.02811000" + }, + { + "id": "6142", + "name": "Malvern East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.87397000", + "longitude": "145.04253000" + }, + { + "id": "6147", + "name": "Manifold Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.13762000", + "longitude": "144.33369000" + }, + { + "id": "6156", + "name": "Manningham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75710000", + "longitude": "145.18053000" + }, + { + "id": "6161", + "name": "Mansfield", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.24130000", + "longitude": "146.14803000" + }, + { + "id": "6180", + "name": "Maribyrnong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79141000", + "longitude": "144.87786000" + }, + { + "id": "6186", + "name": "Marong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.73333000", + "longitude": "144.13333000" + }, + { + "id": "6189", + "name": "Maroondah", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80288000", + "longitude": "145.26603000" + }, + { + "id": "6197", + "name": "Maryborough", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.04562000", + "longitude": "143.73923000" + }, + { + "id": "6214", + "name": "McCrae", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.34972000", + "longitude": "144.92806000" + }, + { + "id": "6220", + "name": "McKinnon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.91667000", + "longitude": "145.05000000" + }, + { + "id": "6224", + "name": "Meadow Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.65117000", + "longitude": "144.91855000" + }, + { + "id": "6235", + "name": "Melbourne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81400000", + "longitude": "144.96332000" + }, + { + "id": "6236", + "name": "Melbourne City Centre", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81501000", + "longitude": "144.96657000" + }, + { + "id": "6239", + "name": "Melton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.68144000", + "longitude": "144.62292000" + }, + { + "id": "6240", + "name": "Melton South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70773000", + "longitude": "144.57493000" + }, + { + "id": "6241", + "name": "Melton West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.67852000", + "longitude": "144.56883000" + }, + { + "id": "6247", + "name": "Mentone", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.98333000", + "longitude": "145.06667000" + }, + { + "id": "6250", + "name": "Merbein", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.16802000", + "longitude": "142.06599000" + }, + { + "id": "6258", + "name": "Mernda", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.60075000", + "longitude": "145.09555000" + }, + { + "id": "6266", + "name": "Metung", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89154000", + "longitude": "147.85300000" + }, + { + "id": "6269", + "name": "Mickleham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.53664000", + "longitude": "144.90204000" + }, + { + "id": "6273", + "name": "Middle Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85116000", + "longitude": "144.96201000" + }, + { + "id": "6283", + "name": "Mildura", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.18551000", + "longitude": "142.16251000" + }, + { + "id": "6284", + "name": "Mildura Shire", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.86450000", + "longitude": "141.85232000" + }, + { + "id": "6288", + "name": "Mill Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.66667000", + "longitude": "145.06667000" + }, + { + "id": "6294", + "name": "Millgrove", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75527000", + "longitude": "145.65347000" + }, + { + "id": "6308", + "name": "Miners Rest", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.48080000", + "longitude": "143.80107000" + }, + { + "id": "6316", + "name": "Mirboo North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.40101000", + "longitude": "146.16135000" + }, + { + "id": "6320", + "name": "Mitcham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "145.20000000" + }, + { + "id": "6322", + "name": "Mitchell", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.17535000", + "longitude": "144.97999000" + }, + { + "id": "6333", + "name": "Moe", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.17828000", + "longitude": "146.26099000" + }, + { + "id": "6337", + "name": "Moira", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.05060000", + "longitude": "145.53815000" + }, + { + "id": "6344", + "name": "Monash", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89675000", + "longitude": "145.14714000" + }, + { + "id": "6346", + "name": "Monbulk", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.87427000", + "longitude": "145.42592000" + }, + { + "id": "6348", + "name": "Mont Albert", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81788000", + "longitude": "145.10799000" + }, + { + "id": "6349", + "name": "Mont Albert North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80043000", + "longitude": "145.10828000" + }, + { + "id": "6352", + "name": "Montmorency", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.71667000", + "longitude": "145.11667000" + }, + { + "id": "6354", + "name": "Montrose", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "145.35000000" + }, + { + "id": "6357", + "name": "Moolap", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.18333000", + "longitude": "144.43333000" + }, + { + "id": "6362", + "name": "Moonee Ponds", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76667000", + "longitude": "144.91667000" + }, + { + "id": "6363", + "name": "Moonee Valley", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.74941000", + "longitude": "144.89325000" + }, + { + "id": "6366", + "name": "Moorabbin", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.94146000", + "longitude": "145.05779000" + }, + { + "id": "6367", + "name": "Moorabool", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.63338000", + "longitude": "144.21946000" + }, + { + "id": "6372", + "name": "Moorooduc", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.21667000", + "longitude": "145.11667000" + }, + { + "id": "6374", + "name": "Mooroolbark", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78247000", + "longitude": "145.31682000" + }, + { + "id": "6375", + "name": "Mooroopna", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.40000000", + "longitude": "145.35000000" + }, + { + "id": "6379", + "name": "Mordialloc", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.00000000", + "longitude": "145.08333000" + }, + { + "id": "6382", + "name": "Moreland", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73557000", + "longitude": "144.93745000" + }, + { + "id": "6387", + "name": "Mornington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.21792000", + "longitude": "145.03876000" + }, + { + "id": "6390", + "name": "Mornington Peninsula", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.34004000", + "longitude": "145.05455000" + }, + { + "id": "6395", + "name": "Mortlake", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.08102000", + "longitude": "142.80827000" + }, + { + "id": "6398", + "name": "Morwell", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.23476000", + "longitude": "146.39499000" + }, + { + "id": "6404", + "name": "Mount Alexander", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.07607000", + "longitude": "144.18825000" + }, + { + "id": "6409", + "name": "Mount Buller", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.14595000", + "longitude": "146.43694000" + }, + { + "id": "6411", + "name": "Mount Clear", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.60000000", + "longitude": "143.88333000" + }, + { + "id": "6417", + "name": "Mount Dandenong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83333000", + "longitude": "145.36667000" + }, + { + "id": "6419", + "name": "Mount Duneed", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.24089000", + "longitude": "144.33748000" + }, + { + "id": "6420", + "name": "Mount Eliza", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.18333000", + "longitude": "145.08333000" + }, + { + "id": "6421", + "name": "Mount Evelyn", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78333000", + "longitude": "145.38333000" + }, + { + "id": "6426", + "name": "Mount Helen", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.62463000", + "longitude": "143.87890000" + }, + { + "id": "6438", + "name": "Mount Macedon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.40048000", + "longitude": "144.58412000" + }, + { + "id": "6441", + "name": "Mount Martha", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.26667000", + "longitude": "145.01667000" + }, + { + "id": "6449", + "name": "Mount Pleasant", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.58333000", + "longitude": "143.86667000" + }, + { + "id": "6464", + "name": "Mount Waverley", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.87709000", + "longitude": "145.12939000" + }, + { + "id": "6468", + "name": "Moyne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.18785000", + "longitude": "142.46217000" + }, + { + "id": "6476", + "name": "Mulgrave", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.92845000", + "longitude": "145.17708000" + }, + { + "id": "6496", + "name": "Murrindindi", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.28104000", + "longitude": "145.67437000" + }, + { + "id": "6499", + "name": "Murrumbeena", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90000000", + "longitude": "145.06667000" + }, + { + "id": "6507", + "name": "Myrtleford", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.56104000", + "longitude": "146.72371000" + }, + { + "id": "6509", + "name": "Nagambie", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.78515000", + "longitude": "145.15375000" + }, + { + "id": "6537", + "name": "Narre Warren", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.03333000", + "longitude": "145.30000000" + }, + { + "id": "6538", + "name": "Narre Warren North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.98333000", + "longitude": "145.31667000" + }, + { + "id": "6539", + "name": "Narre Warren South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.04369000", + "longitude": "145.29230000" + }, + { + "id": "6543", + "name": "Nathalia", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.05772000", + "longitude": "145.20406000" + }, + { + "id": "6547", + "name": "Neerim South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.01683000", + "longitude": "145.95447000" + }, + { + "id": "6557", + "name": "New Gisborne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.46065000", + "longitude": "144.59930000" + }, + { + "id": "6562", + "name": "Newborough", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.17171000", + "longitude": "146.29264000" + }, + { + "id": "6566", + "name": "Newcomb", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.16623000", + "longitude": "144.39429000" + }, + { + "id": "6567", + "name": "Newington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.55846000", + "longitude": "143.82485000" + }, + { + "id": "6573", + "name": "Newport", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.84427000", + "longitude": "144.88483000" + }, + { + "id": "6580", + "name": "Newtown", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.15391000", + "longitude": "144.33507000" + }, + { + "id": "6584", + "name": "Nhill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.33333000", + "longitude": "141.65006000" + }, + { + "id": "6588", + "name": "Nichols Point", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.21210000", + "longitude": "142.21443000" + }, + { + "id": "6589", + "name": "Nicholson", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "147.73333000" + }, + { + "id": "6591", + "name": "Niddrie", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73750000", + "longitude": "144.89212000" + }, + { + "id": "6593", + "name": "Nillumbik", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.61474000", + "longitude": "145.21706000" + }, + { + "id": "6598", + "name": "Noble Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.96667000", + "longitude": "145.16667000" + }, + { + "id": "6599", + "name": "Noble Park North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.94978000", + "longitude": "145.19257000" + }, + { + "id": "6606", + "name": "Norlane", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.10139000", + "longitude": "144.35417000" + }, + { + "id": "6617", + "name": "North Bendigo", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.74363000", + "longitude": "144.28791000" + }, + { + "id": "6621", + "name": "North Brighton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90694000", + "longitude": "145.00528000" + }, + { + "id": "6628", + "name": "North Geelong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.10953000", + "longitude": "144.35134000" + }, + { + "id": "6640", + "name": "North Melbourne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79798000", + "longitude": "144.94512000" + }, + { + "id": "6657", + "name": "North Warrandyte", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.72924000", + "longitude": "145.21574000" + }, + { + "id": "6660", + "name": "North Wonthaggi", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.57769000", + "longitude": "145.59302000" + }, + { + "id": "6665", + "name": "Northcote", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76667000", + "longitude": "145.00000000" + }, + { + "id": "6667", + "name": "Northern Grampians", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.84962000", + "longitude": "142.87303000" + }, + { + "id": "6677", + "name": "Notting Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90500000", + "longitude": "145.14270000" + }, + { + "id": "6684", + "name": "Numurkah", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.08846000", + "longitude": "145.44215000" + }, + { + "id": "6685", + "name": "Nunawading", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82043000", + "longitude": "145.17308000" + }, + { + "id": "6690", + "name": "Nyora", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.33364000", + "longitude": "145.67248000" + }, + { + "id": "6694", + "name": "Oak Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.71842000", + "longitude": "144.91945000" + }, + { + "id": "6703", + "name": "Oakleigh", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89809000", + "longitude": "145.08837000" + }, + { + "id": "6704", + "name": "Oakleigh East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90000000", + "longitude": "145.11667000" + }, + { + "id": "6705", + "name": "Oakleigh South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.92416000", + "longitude": "145.09146000" + }, + { + "id": "6710", + "name": "Ocean Grove", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.25772000", + "longitude": "144.51919000" + }, + { + "id": "6713", + "name": "Officer", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.05916000", + "longitude": "145.40947000" + }, + { + "id": "6721", + "name": "Olinda", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85000000", + "longitude": "145.36667000" + }, + { + "id": "6734", + "name": "Orbost", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.69644000", + "longitude": "148.45700000" + }, + { + "id": "6740", + "name": "Ormond", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90000000", + "longitude": "145.03333000" + }, + { + "id": "6746", + "name": "Ouyen", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.07087000", + "longitude": "142.32034000" + }, + { + "id": "6763", + "name": "Pakenham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.07018000", + "longitude": "145.47411000" + }, + { + "id": "6764", + "name": "Pakenham Upper", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.01667000", + "longitude": "145.51667000" + }, + { + "id": "6775", + "name": "Panton Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.64082000", + "longitude": "145.23991000" + }, + { + "id": "6789", + "name": "Park Orchards", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.77688000", + "longitude": "145.21463000" + }, + { + "id": "6792", + "name": "Parkdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.99187000", + "longitude": "145.08128000" + }, + { + "id": "6800", + "name": "Parkville", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78333000", + "longitude": "144.95000000" + }, + { + "id": "6809", + "name": "Pascoe Vale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73333000", + "longitude": "144.93333000" + }, + { + "id": "6810", + "name": "Pascoe Vale South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73973000", + "longitude": "144.94615000" + }, + { + "id": "6811", + "name": "Patterson Lakes", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.06934000", + "longitude": "145.14327000" + }, + { + "id": "6814", + "name": "Paynesville", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.91886000", + "longitude": "147.71944000" + }, + { + "id": "6821", + "name": "Pearcedale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.20300000", + "longitude": "145.23488000" + }, + { + "id": "6849", + "name": "Phillip Island", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.48349000", + "longitude": "145.23102000" + }, + { + "id": "6867", + "name": "Plenty", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.66667000", + "longitude": "145.11667000" + }, + { + "id": "6868", + "name": "Plumpton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.68701000", + "longitude": "144.69082000" + }, + { + "id": "6873", + "name": "Point Cook", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.91482000", + "longitude": "144.75088000" + }, + { + "id": "6875", + "name": "Point Lonsdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.28173000", + "longitude": "144.61055000" + }, + { + "id": "6890", + "name": "Port Fairy", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.38535000", + "longitude": "142.23710000" + }, + { + "id": "6898", + "name": "Port Melbourne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83961000", + "longitude": "144.94228000" + }, + { + "id": "6901", + "name": "Port Phillip", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85159000", + "longitude": "144.96992000" + }, + { + "id": "6909", + "name": "Portarlington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.11542000", + "longitude": "144.65559000" + }, + { + "id": "6911", + "name": "Portland", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.34620000", + "longitude": "141.60257000" + }, + { + "id": "6915", + "name": "Prahran", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85114000", + "longitude": "144.99318000" + }, + { + "id": "6917", + "name": "Preston", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75000000", + "longitude": "145.01667000" + }, + { + "id": "6920", + "name": "Princes Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78185000", + "longitude": "144.96656000" + }, + { + "id": "6925", + "name": "Puckapunyal", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.99493000", + "longitude": "145.04005000" + }, + { + "id": "6930", + "name": "Pyrenees", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.32756000", + "longitude": "143.36472000" + }, + { + "id": "6934", + "name": "Quarry Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.77646000", + "longitude": "144.28024000" + }, + { + "id": "6940", + "name": "Queenscliff", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.26789000", + "longitude": "144.66193000" + }, + { + "id": "6942", + "name": "Queenscliffe", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.26896000", + "longitude": "144.66248000" + }, + { + "id": "6967", + "name": "Ravenhall", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76552000", + "longitude": "144.75105000" + }, + { + "id": "6975", + "name": "Red Cliffs", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.30942000", + "longitude": "142.18971000" + }, + { + "id": "6978", + "name": "Redan", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.57649000", + "longitude": "143.83862000" + }, + { + "id": "6997", + "name": "Research", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70000000", + "longitude": "145.18333000" + }, + { + "id": "6998", + "name": "Reservoir", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.71667000", + "longitude": "145.00000000" + }, + { + "id": "7007", + "name": "Richmond", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81819000", + "longitude": "145.00176000" + }, + { + "id": "7015", + "name": "Ringwood", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "145.23333000" + }, + { + "id": "7016", + "name": "Ringwood East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "145.25000000" + }, + { + "id": "7017", + "name": "Ringwood North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80000000", + "longitude": "145.23333000" + }, + { + "id": "7018", + "name": "Ripponlea", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88333000", + "longitude": "145.00000000" + }, + { + "id": "7036", + "name": "Robinvale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.58356000", + "longitude": "142.77228000" + }, + { + "id": "7040", + "name": "Rochester", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.36352000", + "longitude": "144.70077000" + }, + { + "id": "7041", + "name": "Rockbank", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73353000", + "longitude": "144.67003000" + }, + { + "id": "7054", + "name": "Romsey", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.35075000", + "longitude": "144.74300000" + }, + { + "id": "7058", + "name": "Rosanna", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73895000", + "longitude": "145.06735000" + }, + { + "id": "7062", + "name": "Rosebud", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.35542000", + "longitude": "144.90680000" + }, + { + "id": "7063", + "name": "Rosebud West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.36444000", + "longitude": "144.87748000" + }, + { + "id": "7064", + "name": "Rosedale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.15452000", + "longitude": "146.78860000" + }, + { + "id": "7076", + "name": "Ross Creek", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.65000000", + "longitude": "143.75000000" + }, + { + "id": "7083", + "name": "Rowville", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.93333000", + "longitude": "145.23333000" + }, + { + "id": "7084", + "name": "Roxburgh Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.62581000", + "longitude": "144.92555000" + }, + { + "id": "7094", + "name": "Rushworth", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.58669000", + "longitude": "145.01750000" + }, + { + "id": "7099", + "name": "Rutherglen", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.05430000", + "longitude": "146.46212000" + }, + { + "id": "7102", + "name": "Rye", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.38528000", + "longitude": "144.81221000" + }, + { + "id": "7107", + "name": "Safety Beach", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.31535000", + "longitude": "145.00027000" + }, + { + "id": "7108", + "name": "Saint Albans", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73333000", + "longitude": "144.80000000" + }, + { + "id": "7109", + "name": "Saint Andrews", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.60151000", + "longitude": "145.27235000" + }, + { + "id": "7110", + "name": "Saint Andrews Beach", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.41410000", + "longitude": "144.82436000" + }, + { + "id": "7111", + "name": "Saint Helena", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70000000", + "longitude": "145.13333000" + }, + { + "id": "7113", + "name": "Saint Kilda", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86760000", + "longitude": "144.98099000" + }, + { + "id": "7114", + "name": "Saint Leonards", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.17051000", + "longitude": "144.71803000" + }, + { + "id": "7118", + "name": "Sale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.11095000", + "longitude": "147.06802000" + }, + { + "id": "7131", + "name": "San Remo", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.52547000", + "longitude": "145.37616000" + }, + { + "id": "7136", + "name": "Sandhurst", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.08100000", + "longitude": "145.20767000" + }, + { + "id": "7137", + "name": "Sandringham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.95218000", + "longitude": "145.01129000" + }, + { + "id": "7147", + "name": "Sassafras", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86667000", + "longitude": "145.35000000" + }, + { + "id": "7155", + "name": "Scoresby", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90000000", + "longitude": "145.23333000" + }, + { + "id": "7158", + "name": "Seabrook", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88092000", + "longitude": "144.75866000" + }, + { + "id": "7163", + "name": "Seaford", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.10000000", + "longitude": "145.13333000" + }, + { + "id": "7168", + "name": "Seaholme", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86400000", + "longitude": "144.84504000" + }, + { + "id": "7171", + "name": "Sebastopol", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.58532000", + "longitude": "143.83953000" + }, + { + "id": "7173", + "name": "Seddon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80607000", + "longitude": "144.89070000" + }, + { + "id": "7176", + "name": "Selby", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.91667000", + "longitude": "145.38333000" + }, + { + "id": "7187", + "name": "Seville", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79802000", + "longitude": "145.48763000" + }, + { + "id": "7189", + "name": "Seymour", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.02655000", + "longitude": "145.13924000" + }, + { + "id": "7203", + "name": "Shepparton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.38047000", + "longitude": "145.39867000" + }, + { + "id": "7204", + "name": "Shepparton East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.40156000", + "longitude": "145.47765000" + }, + { + "id": "7213", + "name": "Silvan", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "145.41667000" + }, + { + "id": "7224", + "name": "Skye", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.10505000", + "longitude": "145.21630000" + }, + { + "id": "7232", + "name": "Smythes Creek", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.60000000", + "longitude": "143.78333000" + }, + { + "id": "7233", + "name": "Smythesdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.64308000", + "longitude": "143.68617000" + }, + { + "id": "7235", + "name": "Soldiers Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.54962000", + "longitude": "143.85872000" + }, + { + "id": "7239", + "name": "Somers", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.38134000", + "longitude": "145.15898000" + }, + { + "id": "7244", + "name": "Somerville", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.21667000", + "longitude": "145.16667000" + }, + { + "id": "7247", + "name": "Sorrento", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.33958000", + "longitude": "144.74126000" + }, + { + "id": "7259", + "name": "South Gippsland", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.69897000", + "longitude": "146.06702000" + }, + { + "id": "7269", + "name": "South Kingsville", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83018000", + "longitude": "144.87090000" + }, + { + "id": "7276", + "name": "South Melbourne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83333000", + "longitude": "144.96667000" + }, + { + "id": "7277", + "name": "South Morang", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.65000000", + "longitude": "145.10000000" + }, + { + "id": "7290", + "name": "South Yarra", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83834000", + "longitude": "144.99149000" + }, + { + "id": "7292", + "name": "Southbank", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82280000", + "longitude": "144.96434000" + }, + { + "id": "7294", + "name": "Southern Grampians", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.52989000", + "longitude": "142.02533000" + }, + { + "id": "7305", + "name": "Spotswood", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82975000", + "longitude": "144.88516000" + }, + { + "id": "7313", + "name": "Springvale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.94853000", + "longitude": "145.15274000" + }, + { + "id": "7315", + "name": "Springvale South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.96667000", + "longitude": "145.15000000" + }, + { + "id": "7319", + "name": "St Albans Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.18802000", + "longitude": "144.39207000" + }, + { + "id": "7325", + "name": "St Helena", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.68988000", + "longitude": "145.12315000" + }, + { + "id": "7332", + "name": "St Kilda East", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86594000", + "longitude": "145.00018000" + }, + { + "id": "7333", + "name": "St Kilda West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85988000", + "longitude": "144.97108000" + }, + { + "id": "7345", + "name": "Stawell", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.05632000", + "longitude": "142.78088000" + }, + { + "id": "7352", + "name": "Stonnington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86130000", + "longitude": "145.03776000" + }, + { + "id": "7354", + "name": "Stratford", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.96340000", + "longitude": "147.08260000" + }, + { + "id": "7357", + "name": "Strathbogie", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.72402000", + "longitude": "145.32938000" + }, + { + "id": "7358", + "name": "Strathdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.76572000", + "longitude": "144.31548000" + }, + { + "id": "7361", + "name": "Strathfieldsaye", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.80667000", + "longitude": "144.35487000" + }, + { + "id": "7362", + "name": "Strathmerton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.92533000", + "longitude": "145.47865000" + }, + { + "id": "7363", + "name": "Strathmore", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73563000", + "longitude": "144.92065000" + }, + { + "id": "7378", + "name": "Sunbury", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.57742000", + "longitude": "144.72607000" + }, + { + "id": "7384", + "name": "Sunshine", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78333000", + "longitude": "144.83333000" + }, + { + "id": "7388", + "name": "Sunshine North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76987000", + "longitude": "144.82787000" + }, + { + "id": "7389", + "name": "Sunshine West", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79117000", + "longitude": "144.81637000" + }, + { + "id": "7390", + "name": "Surf Coast", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.33997000", + "longitude": "144.11530000" + }, + { + "id": "7394", + "name": "Surrey Hills", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "145.10000000" + }, + { + "id": "7402", + "name": "Swan Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.10061000", + "longitude": "143.16810000" + }, + { + "id": "7406", + "name": "Sydenham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70000000", + "longitude": "144.76667000" + }, + { + "id": "7418", + "name": "Tallangatta", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.21791000", + "longitude": "147.17699000" + }, + { + "id": "7440", + "name": "Tarneit", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83634000", + "longitude": "144.65952000" + }, + { + "id": "7450", + "name": "Tatura", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.43962000", + "longitude": "145.22994000" + }, + { + "id": "7451", + "name": "Taylors Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70988000", + "longitude": "144.75483000" + }, + { + "id": "7452", + "name": "Taylors Lakes", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.69863000", + "longitude": "144.78631000" + }, + { + "id": "7455", + "name": "Tecoma", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90303000", + "longitude": "145.34468000" + }, + { + "id": "7456", + "name": "Teesdale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.03333000", + "longitude": "144.05000000" + }, + { + "id": "7464", + "name": "Templestowe", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75405000", + "longitude": "145.14864000" + }, + { + "id": "7465", + "name": "Templestowe Lower", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76667000", + "longitude": "145.11667000" + }, + { + "id": "7474", + "name": "Terang", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.24084000", + "longitude": "142.92123000" + }, + { + "id": "7480", + "name": "The Basin", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85000000", + "longitude": "145.31667000" + }, + { + "id": "7491", + "name": "The Patch", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89187000", + "longitude": "145.40216000" + }, + { + "id": "7501", + "name": "Thomastown", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.68333000", + "longitude": "145.01667000" + }, + { + "id": "7502", + "name": "Thomson", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.16984000", + "longitude": "144.37890000" + }, + { + "id": "7503", + "name": "Thornbury", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75819000", + "longitude": "145.00583000" + }, + { + "id": "7514", + "name": "Timboon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.48434000", + "longitude": "142.98033000" + }, + { + "id": "7529", + "name": "Tongala", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.25466000", + "longitude": "144.95622000" + }, + { + "id": "7534", + "name": "Tooradin", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.21475000", + "longitude": "145.38325000" + }, + { + "id": "7535", + "name": "Toorak", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.84165000", + "longitude": "145.01438000" + }, + { + "id": "7538", + "name": "Tootgarook", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.37770000", + "longitude": "144.85015000" + }, + { + "id": "7543", + "name": "Torquay", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.33085000", + "longitude": "144.32638000" + }, + { + "id": "7552", + "name": "Towong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.36587000", + "longitude": "147.62717000" + }, + { + "id": "7554", + "name": "Trafalgar", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.20906000", + "longitude": "146.15347000" + }, + { + "id": "7558", + "name": "Traralgon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.19528000", + "longitude": "146.54150000" + }, + { + "id": "7559", + "name": "Travancore", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78076000", + "longitude": "144.93545000" + }, + { + "id": "7562", + "name": "Trentham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.38876000", + "longitude": "144.32164000" + }, + { + "id": "7569", + "name": "Truganina", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "144.75000000" + }, + { + "id": "7574", + "name": "Tullamarine", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.70128000", + "longitude": "144.88100000" + }, + { + "id": "7596", + "name": "Tyabb", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.25000000", + "longitude": "145.18333000" + }, + { + "id": "7614", + "name": "Upwey", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90000000", + "longitude": "145.33333000" + }, + { + "id": "7629", + "name": "Vermont", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.83616000", + "longitude": "145.19428000" + }, + { + "id": "7630", + "name": "Vermont South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85747000", + "longitude": "145.18270000" + }, + { + "id": "7636", + "name": "Viewbank", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73991000", + "longitude": "145.09323000" + }, + { + "id": "7655", + "name": "Wahgunyah", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.01178000", + "longitude": "146.39714000" + }, + { + "id": "7671", + "name": "Wallan", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.41625000", + "longitude": "144.97859000" + }, + { + "id": "7674", + "name": "Wallington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.22641000", + "longitude": "144.51199000" + }, + { + "id": "7681", + "name": "Wandana Heights", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.17577000", + "longitude": "144.30387000" + }, + { + "id": "7684", + "name": "Wandin North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78333000", + "longitude": "145.43333000" + }, + { + "id": "7687", + "name": "Wandong", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.37190000", + "longitude": "145.03207000" + }, + { + "id": "7688", + "name": "Wangaratta", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.61599000", + "longitude": "146.42839000" + }, + { + "id": "7694", + "name": "Wantirna", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85000000", + "longitude": "145.21667000" + }, + { + "id": "7695", + "name": "Wantirna South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.88333000", + "longitude": "145.21667000" + }, + { + "id": "7702", + "name": "Warburton", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75375000", + "longitude": "145.69037000" + }, + { + "id": "7710", + "name": "Warracknabeal", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.25326000", + "longitude": "142.39281000" + }, + { + "id": "7713", + "name": "Warragul", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.15912000", + "longitude": "145.93118000" + }, + { + "id": "7714", + "name": "Warrandyte", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75000000", + "longitude": "145.23333000" + }, + { + "id": "7716", + "name": "Warranwood", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.77555000", + "longitude": "145.24728000" + }, + { + "id": "7723", + "name": "Warrnambool", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.38176000", + "longitude": "142.48799000" + }, + { + "id": "7734", + "name": "Waterways", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.01478000", + "longitude": "145.13050000" + }, + { + "id": "7736", + "name": "Watsonia", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.71667000", + "longitude": "145.08333000" + }, + { + "id": "7737", + "name": "Watsonia North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.69981000", + "longitude": "145.08468000" + }, + { + "id": "7743", + "name": "Wattleglen", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.66667000", + "longitude": "145.18333000" + }, + { + "id": "7745", + "name": "Waurn Ponds", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.21667000", + "longitude": "144.28333000" + }, + { + "id": "7757", + "name": "Wellington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.03765000", + "longitude": "147.01697000" + }, + { + "id": "7762", + "name": "Wendouree", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.53078000", + "longitude": "143.82838000" + }, + { + "id": "7767", + "name": "Werribee", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90000000", + "longitude": "144.66667000" + }, + { + "id": "7768", + "name": "Werribee South", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.94750000", + "longitude": "144.71667000" + }, + { + "id": "7773", + "name": "Wesburn", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.76667000", + "longitude": "145.63333000" + }, + { + "id": "7785", + "name": "West Footscray", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.79746000", + "longitude": "144.87727000" + }, + { + "id": "7799", + "name": "West Melbourne", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81014000", + "longitude": "144.95000000" + }, + { + "id": "7811", + "name": "West Wimmera", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.59921000", + "longitude": "141.40038000" + }, + { + "id": "7812", + "name": "West Wodonga", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.12346000", + "longitude": "146.85193000" + }, + { + "id": "7825", + "name": "Westmeadows", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.67604000", + "longitude": "144.88701000" + }, + { + "id": "7832", + "name": "Wheelers Hill", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.90000000", + "longitude": "145.18333000" + }, + { + "id": "7834", + "name": "White Hills", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.72875000", + "longitude": "144.30525000" + }, + { + "id": "7837", + "name": "Whitehorse", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.82868000", + "longitude": "145.15432000" + }, + { + "id": "7841", + "name": "Whittington", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.18080000", + "longitude": "144.39322000" + }, + { + "id": "7842", + "name": "Whittlesea", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.55087000", + "longitude": "145.09375000" + }, + { + "id": "7857", + "name": "Williams Landing", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86190000", + "longitude": "144.74371000" + }, + { + "id": "7858", + "name": "Williamstown", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.86349000", + "longitude": "144.89900000" + }, + { + "id": "7860", + "name": "Williamstown North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85515000", + "longitude": "144.88259000" + }, + { + "id": "7874", + "name": "Winchelsea", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.24485000", + "longitude": "143.98322000" + }, + { + "id": "7879", + "name": "Windsor", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.85344000", + "longitude": "144.99241000" + }, + { + "id": "7895", + "name": "Wodonga", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.14469000", + "longitude": "146.88818000" + }, + { + "id": "7896", + "name": "Wollert", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.58333000", + "longitude": "145.03333000" + }, + { + "id": "7905", + "name": "Wonga Park", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.73333000", + "longitude": "145.26667000" + }, + { + "id": "7909", + "name": "Wonthaggi", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.60586000", + "longitude": "145.59355000" + }, + { + "id": "7917", + "name": "Woodend", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.35469000", + "longitude": "144.52902000" + }, + { + "id": "7945", + "name": "Woori Yallock", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78062000", + "longitude": "145.53819000" + }, + { + "id": "7962", + "name": "Wurruk", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.11667000", + "longitude": "147.03333000" + }, + { + "id": "7965", + "name": "Wy Yung", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80000000", + "longitude": "147.58333000" + }, + { + "id": "7969", + "name": "Wyndham", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89280000", + "longitude": "144.63573000" + }, + { + "id": "7970", + "name": "Wyndham Vale", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.89138000", + "longitude": "144.62368000" + }, + { + "id": "7980", + "name": "Yackandandah", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.31371000", + "longitude": "146.83958000" + }, + { + "id": "7984", + "name": "Yallambie", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.72515000", + "longitude": "145.09352000" + }, + { + "id": "7986", + "name": "Yallourn North", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.16053000", + "longitude": "146.36449000" + }, + { + "id": "7995", + "name": "Yarra", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.80178000", + "longitude": "144.99593000" + }, + { + "id": "7996", + "name": "Yarra Glen", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.65794000", + "longitude": "145.37416000" + }, + { + "id": "7997", + "name": "Yarra Junction", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.78192000", + "longitude": "145.61430000" + }, + { + "id": "7998", + "name": "Yarra Ranges", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.75006000", + "longitude": "145.73708000" + }, + { + "id": "8001", + "name": "Yarragon", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.20525000", + "longitude": "146.06079000" + }, + { + "id": "8003", + "name": "Yarram", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-38.56479000", + "longitude": "146.67557000" + }, + { + "id": "8005", + "name": "Yarrambat", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.63751000", + "longitude": "145.13486000" + }, + { + "id": "8007", + "name": "Yarraville", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.81667000", + "longitude": "144.90000000" + }, + { + "id": "8009", + "name": "Yarrawonga", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.01923000", + "longitude": "145.99973000" + }, + { + "id": "8010", + "name": "Yarriambiack", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-36.02618000", + "longitude": "142.40452000" + }, + { + "id": "8014", + "name": "Yea", + "state_id": 3903, + "state_code": "VIC", + "country_id": 14, + "country_code": "AU", + "latitude": "-37.21067000", + "longitude": "145.42755000" + }, + { + "id": "3902", + "name": "Abbey", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.66364000", + "longitude": "115.25635000" + }, + { + "id": "3930", + "name": "Albany", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.70990000", + "longitude": "118.12345000" + }, + { + "id": "3932", + "name": "Albany city centre", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02479000", + "longitude": "117.88472000" + }, + { + "id": "3946", + "name": "Alexander Heights", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.82758000", + "longitude": "115.86501000" + }, + { + "id": "3953", + "name": "Alfred Cove", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03316000", + "longitude": "115.81259000" + }, + { + "id": "3958", + "name": "Alkimos", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.63039000", + "longitude": "115.68638000" + }, + { + "id": "3992", + "name": "Applecross", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.01667000", + "longitude": "115.83333000" + }, + { + "id": "4000", + "name": "Ardross", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.02696000", + "longitude": "115.83548000" + }, + { + "id": "4003", + "name": "Armadale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.17887000", + "longitude": "116.12750000" + }, + { + "id": "4013", + "name": "Ascot", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93818000", + "longitude": "115.92258000" + }, + { + "id": "4017", + "name": "Ashburton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.27674000", + "longitude": "116.90057000" + }, + { + "id": "4019", + "name": "Ashby", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.73255000", + "longitude": "115.79768000" + }, + { + "id": "4021", + "name": "Ashfield", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91721000", + "longitude": "115.93796000" + }, + { + "id": "4036", + "name": "Attadale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.02489000", + "longitude": "115.80200000" + }, + { + "id": "4038", + "name": "Atwell", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.14346000", + "longitude": "115.86528000" + }, + { + "id": "4039", + "name": "Aubin Grove", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.16714000", + "longitude": "115.86264000" + }, + { + "id": "4042", + "name": "Augusta", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.31566000", + "longitude": "115.15922000" + }, + { + "id": "4043", + "name": "Augusta-Margaret River Shire", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.11520000", + "longitude": "115.32277000" + }, + { + "id": "4049", + "name": "Australind", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.27920000", + "longitude": "115.71504000" + }, + { + "id": "4050", + "name": "Aveley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.78132000", + "longitude": "115.98959000" + }, + { + "id": "4066", + "name": "Bakers Hill", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.74692000", + "longitude": "116.45866000" + }, + { + "id": "4070", + "name": "Balcatta", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.87501000", + "longitude": "115.82839000" + }, + { + "id": "4072", + "name": "Baldivis", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.32889000", + "longitude": "115.83047000" + }, + { + "id": "4073", + "name": "Balga", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.85497000", + "longitude": "115.83986000" + }, + { + "id": "4078", + "name": "Ballajura", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.84062000", + "longitude": "115.89549000" + }, + { + "id": "4097", + "name": "Banjup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.14179000", + "longitude": "115.88671000" + }, + { + "id": "4101", + "name": "Banksia Grove", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.69615000", + "longitude": "115.80501000" + }, + { + "id": "4135", + "name": "Bassendean", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.90584000", + "longitude": "115.94501000" + }, + { + "id": "4138", + "name": "Bateman", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.05547000", + "longitude": "115.84737000" + }, + { + "id": "4150", + "name": "Baynton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.75164000", + "longitude": "116.80139000" + }, + { + "id": "4151", + "name": "Bayonet Head", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.97305000", + "longitude": "117.93446000" + }, + { + "id": "4154", + "name": "Bayswater", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91181000", + "longitude": "115.90870000" + }, + { + "id": "4157", + "name": "Beachlands", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.78570000", + "longitude": "114.60192000" + }, + { + "id": "4162", + "name": "Beaconsfield", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.06748000", + "longitude": "115.76401000" + }, + { + "id": "4171", + "name": "Beckenham", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.02481000", + "longitude": "115.95989000" + }, + { + "id": "4172", + "name": "Bedford", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91132000", + "longitude": "115.88920000" + }, + { + "id": "4174", + "name": "Bedfordale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.17406000", + "longitude": "116.05040000" + }, + { + "id": "4175", + "name": "Beechboro", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.86515000", + "longitude": "115.93661000" + }, + { + "id": "4178", + "name": "Beeliar", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.13339000", + "longitude": "115.80637000" + }, + { + "id": "4185", + "name": "Beldon", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.77466000", + "longitude": "115.76270000" + }, + { + "id": "4201", + "name": "Bellevue", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.90116000", + "longitude": "116.02762000" + }, + { + "id": "4209", + "name": "Belmont", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95458000", + "longitude": "115.94218000" + }, + { + "id": "4220", + "name": "Bennett Springs", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.85941000", + "longitude": "115.94512000" + }, + { + "id": "4225", + "name": "Bentley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.00224000", + "longitude": "115.92473000" + }, + { + "id": "4229", + "name": "Beresford", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.75754000", + "longitude": "114.61965000" + }, + { + "id": "4245", + "name": "Bertram", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.24369000", + "longitude": "115.84572000" + }, + { + "id": "4249", + "name": "Beverley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.10839000", + "longitude": "116.92736000" + }, + { + "id": "4255", + "name": "Bibra Lake", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.09764000", + "longitude": "115.81921000" + }, + { + "id": "4256", + "name": "Bicton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.02778000", + "longitude": "115.78333000" + }, + { + "id": "4262", + "name": "Bilingurr", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.90909000", + "longitude": "122.22921000" + }, + { + "id": "4264", + "name": "Bindoon", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.38663000", + "longitude": "116.09664000" + }, + { + "id": "4266", + "name": "Binningup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.14830000", + "longitude": "115.69519000" + }, + { + "id": "4312", + "name": "Bluff Point", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.73740000", + "longitude": "114.62278000" + }, + { + "id": "4315", + "name": "Boddington", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.79195000", + "longitude": "116.41883000" + }, + { + "id": "4343", + "name": "Booragoon", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03945000", + "longitude": "115.83369000" + }, + { + "id": "4356", + "name": "Boulder", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.78204000", + "longitude": "121.49120000" + }, + { + "id": "4371", + "name": "Boyanup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.48295000", + "longitude": "115.72838000" + }, + { + "id": "4373", + "name": "Boyup Brook", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.88555000", + "longitude": "116.51885000" + }, + { + "id": "4374", + "name": "Brabham", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.82728000", + "longitude": "115.97417000" + }, + { + "id": "4390", + "name": "Brentwood", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.04347000", + "longitude": "115.85246000" + }, + { + "id": "4395", + "name": "Bridgetown", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.96242000", + "longitude": "116.13598000" + }, + { + "id": "4396", + "name": "Bridgetown-Greenbushes", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.99234000", + "longitude": "116.22502000" + }, + { + "id": "4418", + "name": "Broadwater", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.66304000", + "longitude": "115.28420000" + }, + { + "id": "4419", + "name": "Brockman", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.88126000", + "longitude": "113.65365000" + }, + { + "id": "4424", + "name": "Brookdale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.16696000", + "longitude": "116.00193000" + }, + { + "id": "4429", + "name": "Brookton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.35533000", + "longitude": "116.99994000" + }, + { + "id": "4432", + "name": "Broome", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.94041000", + "longitude": "122.64038000" + }, + { + "id": "4433", + "name": "Broomehill-Tambellup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.01320000", + "longitude": "117.65297000" + }, + { + "id": "4437", + "name": "Bruce Rock", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.96651000", + "longitude": "118.02385000" + }, + { + "id": "4439", + "name": "Brunswick", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.23240000", + "longitude": "115.86282000" + }, + { + "id": "4451", + "name": "Bulgarra", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.72584000", + "longitude": "116.85673000" + }, + { + "id": "4453", + "name": "Bull Creek", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.05625000", + "longitude": "115.86242000" + }, + { + "id": "4458", + "name": "Bullsbrook", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.66905000", + "longitude": "115.99990000" + }, + { + "id": "4460", + "name": "Bunbury", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.32711000", + "longitude": "115.64137000" + }, + { + "id": "4485", + "name": "Burns Beach", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.72060000", + "longitude": "115.72050000" + }, + { + "id": "4498", + "name": "Burswood", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95872000", + "longitude": "115.90396000" + }, + { + "id": "4505", + "name": "Busselton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68477000", + "longitude": "115.37080000" + }, + { + "id": "4506", + "name": "Busselton city cenre", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.65078000", + "longitude": "115.34932000" + }, + { + "id": "4507", + "name": "Butler", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.64298000", + "longitude": "115.70431000" + }, + { + "id": "4510", + "name": "Byford", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.22099000", + "longitude": "116.00900000" + }, + { + "id": "4516", + "name": "Cable Beach", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.96098000", + "longitude": "122.21269000" + }, + { + "id": "4530", + "name": "Calista", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.24100000", + "longitude": "115.79763000" + }, + { + "id": "4541", + "name": "Cambridge", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93542000", + "longitude": "115.79887000" + }, + { + "id": "4549", + "name": "Camillo", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.11292000", + "longitude": "116.00205000" + }, + { + "id": "4569", + "name": "Canning", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.04923000", + "longitude": "115.91943000" + }, + { + "id": "4570", + "name": "Canning Vale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.05799000", + "longitude": "115.91814000" + }, + { + "id": "4571", + "name": "Cannington", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.01625000", + "longitude": "115.93648000" + }, + { + "id": "4581", + "name": "Capel", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.52704000", + "longitude": "115.61813000" + }, + { + "id": "4589", + "name": "Cardup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.25802000", + "longitude": "115.98512000" + }, + { + "id": "4591", + "name": "Carey Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.34878000", + "longitude": "115.64930000" + }, + { + "id": "4594", + "name": "Carine", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.85230000", + "longitude": "115.78258000" + }, + { + "id": "4599", + "name": "Carlisle", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.97945000", + "longitude": "115.91808000" + }, + { + "id": "4603", + "name": "Carnamah", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.80411000", + "longitude": "115.59402000" + }, + { + "id": "4604", + "name": "Carnarvon", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.88258000", + "longitude": "113.65713000" + }, + { + "id": "4610", + "name": "Carramar", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.69023000", + "longitude": "115.77159000" + }, + { + "id": "4631", + "name": "Castletown", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.83237000", + "longitude": "121.91563000" + }, + { + "id": "4633", + "name": "Casuarina", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.24143000", + "longitude": "115.86980000" + }, + { + "id": "4641", + "name": "Caversham", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88333000", + "longitude": "115.96667000" + }, + { + "id": "4659", + "name": "Champion Lakes", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.11913000", + "longitude": "115.98617000" + }, + { + "id": "4663", + "name": "Chapman Valley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.27249000", + "longitude": "115.02794000" + }, + { + "id": "4686", + "name": "Chidlow", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.86094000", + "longitude": "116.27243000" + }, + { + "id": "4700", + "name": "Chittering", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.35829000", + "longitude": "116.05131000" + }, + { + "id": "4705", + "name": "Churchlands", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.92142000", + "longitude": "115.79322000" + }, + { + "id": "4709", + "name": "City Beach", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93440000", + "longitude": "115.76174000" + }, + { + "id": "4710", + "name": "City of Cockburn", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.10264000", + "longitude": "115.84431000" + }, + { + "id": "4711", + "name": "City of Perth", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.94978000", + "longitude": "115.85383000" + }, + { + "id": "4718", + "name": "Claremont", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.98127000", + "longitude": "115.77942000" + }, + { + "id": "4727", + "name": "Clarkson", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.68282000", + "longitude": "115.72470000" + }, + { + "id": "4748", + "name": "Cloverdale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.96281000", + "longitude": "115.94428000" + }, + { + "id": "4760", + "name": "Cockburn Central", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.12133000", + "longitude": "115.84776000" + }, + { + "id": "4773", + "name": "College Grove", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.37587000", + "longitude": "115.65906000" + }, + { + "id": "4774", + "name": "Collie", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.27353000", + "longitude": "116.16558000" + }, + { + "id": "4783", + "name": "Como", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.99119000", + "longitude": "115.86336000" + }, + { + "id": "4792", + "name": "Connolly", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.74864000", + "longitude": "115.75053000" + }, + { + "id": "4795", + "name": "Coodanup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.55187000", + "longitude": "115.75352000" + }, + { + "id": "4797", + "name": "Coogee", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.11934000", + "longitude": "115.76650000" + }, + { + "id": "4807", + "name": "Coolbellup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.08124000", + "longitude": "115.80606000" + }, + { + "id": "4808", + "name": "Coolbinia", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91470000", + "longitude": "115.84894000" + }, + { + "id": "4809", + "name": "Coolgardie", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.01438000", + "longitude": "121.20462000" + }, + { + "id": "4811", + "name": "Cooloongup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.31506000", + "longitude": "115.77772000" + }, + { + "id": "4825", + "name": "Coorow", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.97865000", + "longitude": "115.65613000" + }, + { + "id": "4843", + "name": "Corrigin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.37599000", + "longitude": "117.81023000" + }, + { + "id": "4848", + "name": "Cottesloe", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.99905000", + "longitude": "115.76089000" + }, + { + "id": "4851", + "name": "Cowaramup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85036000", + "longitude": "115.10379000" + }, + { + "id": "4859", + "name": "Craigie", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.78727000", + "longitude": "115.76989000" + }, + { + "id": "4869", + "name": "Cranbrook", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.33414000", + "longitude": "117.32898000" + }, + { + "id": "4873", + "name": "Crawley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.98418000", + "longitude": "115.81603000" + }, + { + "id": "4897", + "name": "Cuballing", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.74026000", + "longitude": "117.15497000" + }, + { + "id": "4898", + "name": "Cue", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.22633000", + "longitude": "118.00496000" + }, + { + "id": "4903", + "name": "Cunderdin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.61259000", + "longitude": "117.11803000" + }, + { + "id": "4909", + "name": "Currambine", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.73306000", + "longitude": "115.74766000" + }, + { + "id": "4919", + "name": "Daglish", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95177000", + "longitude": "115.80880000" + }, + { + "id": "4923", + "name": "Dalkeith", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.99517000", + "longitude": "115.79980000" + }, + { + "id": "4926", + "name": "Dalwallinu", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.12998000", + "longitude": "116.98401000" + }, + { + "id": "4927", + "name": "Dalyellup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.40844000", + "longitude": "115.61506000" + }, + { + "id": "4928", + "name": "Dampier", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.66275000", + "longitude": "116.71256000" + }, + { + "id": "4929", + "name": "Dampier Peninsula", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-16.93241000", + "longitude": "122.86559000" + }, + { + "id": "4930", + "name": "Dandaragan", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.54142000", + "longitude": "115.46132000" + }, + { + "id": "4934", + "name": "Darch", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.81255000", + "longitude": "115.84580000" + }, + { + "id": "4935", + "name": "Dardanup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.41611000", + "longitude": "115.87410000" + }, + { + "id": "4938", + "name": "Darling Downs", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.19442000", + "longitude": "115.99187000" + }, + { + "id": "4943", + "name": "Darlington", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91906000", + "longitude": "116.08120000" + }, + { + "id": "4952", + "name": "Dawesville", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.63229000", + "longitude": "115.62904000" + }, + { + "id": "4955", + "name": "Dayton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.85251000", + "longitude": "115.97494000" + }, + { + "id": "4968", + "name": "Denham", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.92679000", + "longitude": "113.53327000" + }, + { + "id": "4974", + "name": "Denmark", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.93473000", + "longitude": "117.37518000" + }, + { + "id": "4977", + "name": "Derby", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.30295000", + "longitude": "123.62864000" + }, + { + "id": "4978", + "name": "Derby-West Kimberley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.50447000", + "longitude": "125.28014000" + }, + { + "id": "4988", + "name": "Dianella", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88822000", + "longitude": "115.87186000" + }, + { + "id": "4997", + "name": "Djugun", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-17.95395000", + "longitude": "122.22792000" + }, + { + "id": "5004", + "name": "Dongara", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.25818000", + "longitude": "114.93276000" + }, + { + "id": "5005", + "name": "Donnybrook", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.57130000", + "longitude": "115.82446000" + }, + { + "id": "5006", + "name": "Donnybrook-Balingup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.70217000", + "longitude": "115.97778000" + }, + { + "id": "5017", + "name": "Doubleview", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.89627000", + "longitude": "115.78155000" + }, + { + "id": "5023", + "name": "Dowerin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.11328000", + "longitude": "117.10566000" + }, + { + "id": "5030", + "name": "Drummond Cove", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.67379000", + "longitude": "114.61280000" + }, + { + "id": "5035", + "name": "Dudley Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.55221000", + "longitude": "115.73100000" + }, + { + "id": "5039", + "name": "Dumbleyung Shire", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.21780000", + "longitude": "117.98750000" + }, + { + "id": "5040", + "name": "Duncraig", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.83291000", + "longitude": "115.77590000" + }, + { + "id": "5041", + "name": "Dundas", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.12502000", + "longitude": "124.50582000" + }, + { + "id": "5047", + "name": "Dunsborough", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.61476000", + "longitude": "115.10445000" + }, + { + "id": "5069", + "name": "East Bunbury", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.33619000", + "longitude": "115.66041000" + }, + { + "id": "5070", + "name": "East Cannington", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.00980000", + "longitude": "115.95503000" + }, + { + "id": "5071", + "name": "East Carnarvon", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.86397000", + "longitude": "113.67768000" + }, + { + "id": "5074", + "name": "East Fremantle", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03654000", + "longitude": "115.76714000" + }, + { + "id": "5091", + "name": "East Perth", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95872000", + "longitude": "115.87109000" + }, + { + "id": "5092", + "name": "East Pilbara", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.61331000", + "longitude": "123.71368000" + }, + { + "id": "5097", + "name": "East Victoria Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.98894000", + "longitude": "115.90388000" + }, + { + "id": "5101", + "name": "Eaton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.31664000", + "longitude": "115.70503000" + }, + { + "id": "5106", + "name": "Eden Hill", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88908000", + "longitude": "115.94675000" + }, + { + "id": "5113", + "name": "Edgewater", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.76547000", + "longitude": "115.78223000" + }, + { + "id": "5120", + "name": "Eglinton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.58677000", + "longitude": "115.68878000" + }, + { + "id": "5141", + "name": "Ellenbrook", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.76737000", + "longitude": "115.96936000" + }, + { + "id": "5149", + "name": "Embleton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.90355000", + "longitude": "115.90902000" + }, + { + "id": "5170", + "name": "Erskine", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.55717000", + "longitude": "115.70657000" + }, + { + "id": "5175", + "name": "Esperance", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85919000", + "longitude": "121.89164000" + }, + { + "id": "5176", + "name": "Esperance Shire", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.51970000", + "longitude": "122.15586000" + }, + { + "id": "5202", + "name": "Exmouth", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.03643000", + "longitude": "114.04358000" + }, + { + "id": "5214", + "name": "Falcon", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.58244000", + "longitude": "115.66199000" + }, + { + "id": "5226", + "name": "Ferndale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03494000", + "longitude": "115.92233000" + }, + { + "id": "5242", + "name": "Fitzroy Crossing", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.19714000", + "longitude": "125.56663000" + }, + { + "id": "5256", + "name": "Floreat", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93862000", + "longitude": "115.79211000" + }, + { + "id": "5271", + "name": "Forrestdale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.15520000", + "longitude": "115.93417000" + }, + { + "id": "5273", + "name": "Forrestfield", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.98277000", + "longitude": "116.00673000" + }, + { + "id": "5289", + "name": "Fremantle", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.05165000", + "longitude": "115.76379000" + }, + { + "id": "5303", + "name": "Garden Island", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.24264000", + "longitude": "115.69505000" + }, + { + "id": "5321", + "name": "Gelorup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.42425000", + "longitude": "115.64094000" + }, + { + "id": "5323", + "name": "Geographe", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.63974000", + "longitude": "115.38358000" + }, + { + "id": "5327", + "name": "Geraldton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.77897000", + "longitude": "114.61459000" + }, + { + "id": "5328", + "name": "Geraldton city centre", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.77754000", + "longitude": "114.61494000" + }, + { + "id": "5330", + "name": "Gidgegannup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.75441000", + "longitude": "116.18746000" + }, + { + "id": "5339", + "name": "Gingin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.18435000", + "longitude": "115.65944000" + }, + { + "id": "5344", + "name": "Girrawheen", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.84103000", + "longitude": "115.83978000" + }, + { + "id": "5357", + "name": "Glen Forrest", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91929000", + "longitude": "116.10726000" + }, + { + "id": "5361", + "name": "Glen Iris", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.33713000", + "longitude": "115.67430000" + }, + { + "id": "5368", + "name": "Glendalough", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91991000", + "longitude": "115.81945000" + }, + { + "id": "5397", + "name": "Gnangara", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.77612000", + "longitude": "115.86623000" + }, + { + "id": "5398", + "name": "Gnowangerup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.08658000", + "longitude": "118.29832000" + }, + { + "id": "5401", + "name": "Golden Bay", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.42505000", + "longitude": "115.76099000" + }, + { + "id": "5414", + "name": "Goomalling", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.23457000", + "longitude": "116.79142000" + }, + { + "id": "5417", + "name": "Gooseberry Hill", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95444000", + "longitude": "116.04920000" + }, + { + "id": "5425", + "name": "Gosnells", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.06763000", + "longitude": "116.00203000" + }, + { + "id": "5441", + "name": "Grasmere", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.01806000", + "longitude": "117.75556000" + }, + { + "id": "5455", + "name": "Greenfields", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.52429000", + "longitude": "115.76315000" + }, + { + "id": "5456", + "name": "Greenmount", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.90072000", + "longitude": "116.04950000" + }, + { + "id": "5465", + "name": "Greenwood", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.82723000", + "longitude": "115.80247000" + }, + { + "id": "5475", + "name": "Guildford", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.90000000", + "longitude": "115.96667000" + }, + { + "id": "5490", + "name": "Gwelup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.87163000", + "longitude": "115.79484000" + }, + { + "id": "5508", + "name": "Halls Creek", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-19.00069000", + "longitude": "127.45204000" + }, + { + "id": "5509", + "name": "Halls Head", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.54315000", + "longitude": "115.69665000" + }, + { + "id": "5510", + "name": "Hamersley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.84898000", + "longitude": "115.80757000" + }, + { + "id": "5514", + "name": "Hamilton Hill", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.08451000", + "longitude": "115.77946000" + }, + { + "id": "5517", + "name": "Hammond Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.16853000", + "longitude": "115.85040000" + }, + { + "id": "5523", + "name": "Hannans", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.71909000", + "longitude": "121.45480000" + }, + { + "id": "5530", + "name": "Harrisdale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.11084000", + "longitude": "115.93563000" + }, + { + "id": "5533", + "name": "Harvey", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.14976000", + "longitude": "115.93376000" + }, + { + "id": "5560", + "name": "Heathridge", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.76244000", + "longitude": "115.75895000" + }, + { + "id": "5570", + "name": "Helena Valley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91938000", + "longitude": "116.03982000" + }, + { + "id": "5578", + "name": "Henley Brook", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.81393000", + "longitude": "115.98807000" + }, + { + "id": "5585", + "name": "Herne Hill", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.82553000", + "longitude": "116.02270000" + }, + { + "id": "5593", + "name": "High Wycombe", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.94444000", + "longitude": "116.00340000" + }, + { + "id": "5597", + "name": "Highgate", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93971000", + "longitude": "115.87015000" + }, + { + "id": "5603", + "name": "Hilbert", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.17818000", + "longitude": "115.98490000" + }, + { + "id": "5605", + "name": "Hillarys", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.80698000", + "longitude": "115.74045000" + }, + { + "id": "5610", + "name": "Hillman", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.28327000", + "longitude": "115.76364000" + }, + { + "id": "5615", + "name": "Hilton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.06208000", + "longitude": "115.78049000" + }, + { + "id": "5625", + "name": "Hocking", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.77012000", + "longitude": "115.81832000" + }, + { + "id": "5671", + "name": "Huntingdale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.08318000", + "longitude": "115.96614000" + }, + { + "id": "5683", + "name": "Iluka", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.73554000", + "longitude": "115.73058000" + }, + { + "id": "5692", + "name": "Inglewood", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91663000", + "longitude": "115.87980000" + }, + { + "id": "5693", + "name": "Innaloo", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.89272000", + "longitude": "115.79508000" + }, + { + "id": "5704", + "name": "Irwin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.34192000", + "longitude": "115.04561000" + }, + { + "id": "5721", + "name": "Jandakot", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.10158000", + "longitude": "115.87083000" + }, + { + "id": "5723", + "name": "Jane Brook", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.86368000", + "longitude": "116.05039000" + }, + { + "id": "5725", + "name": "Jarrahdale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.33580000", + "longitude": "116.05951000" + }, + { + "id": "5729", + "name": "Jerramungup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.03050000", + "longitude": "119.11369000" + }, + { + "id": "5735", + "name": "Jindalee", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.64938000", + "longitude": "115.69496000" + }, + { + "id": "5740", + "name": "Jolimont", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.94564000", + "longitude": "115.80947000" + }, + { + "id": "5741", + "name": "Joondalup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.77962000", + "longitude": "115.76498000" + }, + { + "id": "5742", + "name": "Joondanna", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.90767000", + "longitude": "115.84233000" + }, + { + "id": "5752", + "name": "Jurien Bay", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.30591000", + "longitude": "115.03825000" + }, + { + "id": "5755", + "name": "Kalamunda", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.00398000", + "longitude": "116.13292000" + }, + { + "id": "5757", + "name": "Kalbarri", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.71050000", + "longitude": "114.16505000" + }, + { + "id": "5759", + "name": "Kalgoorlie", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.74614000", + "longitude": "121.47420000" + }, + { + "id": "5760", + "name": "Kalgoorlie\/Boulder", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.77632000", + "longitude": "124.92347000" + }, + { + "id": "5765", + "name": "Kallaroo", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.79098000", + "longitude": "115.75298000" + }, + { + "id": "5769", + "name": "Kambalda East", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.20550000", + "longitude": "121.67011000" + }, + { + "id": "5770", + "name": "Kambalda West", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.20169000", + "longitude": "121.63060000" + }, + { + "id": "5786", + "name": "Karawara", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.00860000", + "longitude": "115.88114000" + }, + { + "id": "5787", + "name": "Kardinya", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.06561000", + "longitude": "115.81483000" + }, + { + "id": "5790", + "name": "Karnup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.41894000", + "longitude": "115.79267000" + }, + { + "id": "5792", + "name": "Karratha", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.73765000", + "longitude": "116.84629000" + }, + { + "id": "5793", + "name": "Karrinyup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.87233000", + "longitude": "115.77684000" + }, + { + "id": "5796", + "name": "Katanning", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.62476000", + "longitude": "117.63965000" + }, + { + "id": "5814", + "name": "Kellerberrin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.57709000", + "longitude": "117.80561000" + }, + { + "id": "5817", + "name": "Kelmscott", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.12434000", + "longitude": "116.02590000" + }, + { + "id": "5832", + "name": "Kent Shire", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.53881000", + "longitude": "118.66993000" + }, + { + "id": "5836", + "name": "Kenwick", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03333000", + "longitude": "115.96667000" + }, + { + "id": "5845", + "name": "Kewdale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.97886000", + "longitude": "115.95159000" + }, + { + "id": "5850", + "name": "Kiara", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88156000", + "longitude": "115.93893000" + }, + { + "id": "5880", + "name": "Kingsley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.81036000", + "longitude": "115.80077000" + }, + { + "id": "5891", + "name": "Kinross", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.71868000", + "longitude": "115.73839000" + }, + { + "id": "5903", + "name": "Kojonup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.92546000", + "longitude": "117.03982000" + }, + { + "id": "5904", + "name": "Kondinin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.48431000", + "longitude": "119.02420000" + }, + { + "id": "5907", + "name": "Koondoola", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.84145000", + "longitude": "115.86654000" + }, + { + "id": "5910", + "name": "Koorda", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.60412000", + "longitude": "117.40736000" + }, + { + "id": "5921", + "name": "Kulin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.66096000", + "longitude": "118.57544000" + }, + { + "id": "5923", + "name": "Kununurra", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-15.77825000", + "longitude": "128.74208000" + }, + { + "id": "5933", + "name": "Kwinana", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.23391000", + "longitude": "115.82785000" + }, + { + "id": "5945", + "name": "Lake Grace", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.12910000", + "longitude": "119.42041000" + }, + { + "id": "5953", + "name": "Lakelands", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.47157000", + "longitude": "115.77291000" + }, + { + "id": "5961", + "name": "Lamington", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.73425000", + "longitude": "121.46163000" + }, + { + "id": "5965", + "name": "Landsdale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.80750000", + "longitude": "115.86599000" + }, + { + "id": "5970", + "name": "Langford", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.04092000", + "longitude": "115.94157000" + }, + { + "id": "5981", + "name": "Lathlain", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.96755000", + "longitude": "115.90631000" + }, + { + "id": "5989", + "name": "Laverton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.93793000", + "longitude": "125.27127000" + }, + { + "id": "5996", + "name": "Leda", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.26766000", + "longitude": "115.79930000" + }, + { + "id": "5997", + "name": "Leederville", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93628000", + "longitude": "115.84190000" + }, + { + "id": "5998", + "name": "Leeming", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.07511000", + "longitude": "115.86613000" + }, + { + "id": "6003", + "name": "Leinster", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.92028000", + "longitude": "120.69670000" + }, + { + "id": "6009", + "name": "Leonora", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.39424000", + "longitude": "121.25960000" + }, + { + "id": "6012", + "name": "Leschenault", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.24519000", + "longitude": "115.72510000" + }, + { + "id": "6013", + "name": "Lesmurdie", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.00199000", + "longitude": "116.04821000" + }, + { + "id": "6036", + "name": "Little Grove", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.06803000", + "longitude": "117.87197000" + }, + { + "id": "6048", + "name": "Lockridge", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88168000", + "longitude": "115.95031000" + }, + { + "id": "6049", + "name": "Lockyer", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00567000", + "longitude": "117.85875000" + }, + { + "id": "6074", + "name": "Lower Chittering", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.58333000", + "longitude": "116.11667000" + }, + { + "id": "6076", + "name": "Lower King", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.95778000", + "longitude": "117.93833000" + }, + { + "id": "6092", + "name": "Lynwood", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.04013000", + "longitude": "115.92888000" + }, + { + "id": "6118", + "name": "Maddington", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.05000000", + "longitude": "115.98333000" + }, + { + "id": "6119", + "name": "Madeley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.81110000", + "longitude": "115.82814000" + }, + { + "id": "6120", + "name": "Madora Bay", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.46951000", + "longitude": "115.75264000" + }, + { + "id": "6124", + "name": "Maida Vale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95187000", + "longitude": "116.02764000" + }, + { + "id": "6143", + "name": "Mandurah", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.52690000", + "longitude": "115.72170000" + }, + { + "id": "6144", + "name": "Mandurah city centre", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.52644000", + "longitude": "115.73361000" + }, + { + "id": "6150", + "name": "Manjimup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.59789000", + "longitude": "116.26566000" + }, + { + "id": "6155", + "name": "Manning", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.01594000", + "longitude": "115.86714000" + }, + { + "id": "6167", + "name": "Marangaroo", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.82711000", + "longitude": "115.83843000" + }, + { + "id": "6171", + "name": "Marble Bar", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.17067000", + "longitude": "119.74441000" + }, + { + "id": "6176", + "name": "Margaret River", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.95504000", + "longitude": "115.07599000" + }, + { + "id": "6185", + "name": "Marmion", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.84158000", + "longitude": "115.75692000" + }, + { + "id": "6195", + "name": "Martin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.07549000", + "longitude": "116.04536000" + }, + { + "id": "6211", + "name": "Maylands", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93097000", + "longitude": "115.89486000" + }, + { + "id": "6217", + "name": "McKail", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.98533000", + "longitude": "117.83010000" + }, + { + "id": "6225", + "name": "Meadow Springs", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.49718000", + "longitude": "115.75334000" + }, + { + "id": "6230", + "name": "Medina", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.23406000", + "longitude": "115.79901000" + }, + { + "id": "6233", + "name": "Meekatharra", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.30330000", + "longitude": "118.99974000" + }, + { + "id": "6242", + "name": "Melville", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.04325000", + "longitude": "115.83408000" + }, + { + "id": "6246", + "name": "Menora", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91889000", + "longitude": "115.86208000" + }, + { + "id": "6248", + "name": "Menzies", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.39176000", + "longitude": "123.71878000" + }, + { + "id": "6259", + "name": "Merredin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.46054000", + "longitude": "118.38509000" + }, + { + "id": "6262", + "name": "Merriwa", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.66494000", + "longitude": "115.71273000" + }, + { + "id": "6276", + "name": "Middle Swan", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.85000000", + "longitude": "116.01667000" + }, + { + "id": "6280", + "name": "Midland", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88909000", + "longitude": "116.01070000" + }, + { + "id": "6281", + "name": "Midvale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88881000", + "longitude": "116.03288000" + }, + { + "id": "6289", + "name": "Millars Well", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.74168000", + "longitude": "116.81731000" + }, + { + "id": "6291", + "name": "Millbridge", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.30617000", + "longitude": "115.73500000" + }, + { + "id": "6306", + "name": "Mindarie", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.68932000", + "longitude": "115.70698000" + }, + { + "id": "6309", + "name": "Mingenew", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.14515000", + "longitude": "115.50123000" + }, + { + "id": "6313", + "name": "Mira Mar", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.01517000", + "longitude": "117.90096000" + }, + { + "id": "6317", + "name": "Mirrabooka", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.85963000", + "longitude": "115.86587000" + }, + { + "id": "6365", + "name": "Moora", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.51218000", + "longitude": "116.20980000" + }, + { + "id": "6377", + "name": "Morawa", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.03545000", + "longitude": "116.05643000" + }, + { + "id": "6385", + "name": "Morley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88775000", + "longitude": "115.90990000" + }, + { + "id": "6400", + "name": "Mosman Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.01421000", + "longitude": "115.76613000" + }, + { + "id": "6407", + "name": "Mount Barker", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.63084000", + "longitude": "117.66606000" + }, + { + "id": "6410", + "name": "Mount Claremont", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.96177000", + "longitude": "115.78337000" + }, + { + "id": "6425", + "name": "Mount Hawthorn", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.92000000", + "longitude": "115.83509000" + }, + { + "id": "6427", + "name": "Mount Helena", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.87606000", + "longitude": "116.21025000" + }, + { + "id": "6433", + "name": "Mount Lawley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93439000", + "longitude": "115.87160000" + }, + { + "id": "6439", + "name": "Mount Magnet", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.29082000", + "longitude": "117.96655000" + }, + { + "id": "6440", + "name": "Mount Marshall", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.29376000", + "longitude": "118.00063000" + }, + { + "id": "6442", + "name": "Mount Melville", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.02216000", + "longitude": "117.87137000" + }, + { + "id": "6444", + "name": "Mount Nasura", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.13780000", + "longitude": "116.02473000" + }, + { + "id": "6450", + "name": "Mount Pleasant", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03974000", + "longitude": "115.84993000" + }, + { + "id": "6455", + "name": "Mount Richon", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.17349000", + "longitude": "116.02137000" + }, + { + "id": "6460", + "name": "Mount Tarcoola", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.79859000", + "longitude": "114.62530000" + }, + { + "id": "6473", + "name": "Mukinbudin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.63684000", + "longitude": "118.28648000" + }, + { + "id": "6477", + "name": "Mullaloo", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.77896000", + "longitude": "115.73676000" + }, + { + "id": "6480", + "name": "Mundaring", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88456000", + "longitude": "116.21551000" + }, + { + "id": "6481", + "name": "Mundijong", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.29217000", + "longitude": "115.98564000" + }, + { + "id": "6488", + "name": "Munster", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.13647000", + "longitude": "115.78302000" + }, + { + "id": "6490", + "name": "Murchison", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-27.00893000", + "longitude": "116.41205000" + }, + { + "id": "6491", + "name": "Murdoch", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.06987000", + "longitude": "115.83757000" + }, + { + "id": "6493", + "name": "Murray", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.62391000", + "longitude": "115.96538000" + }, + { + "id": "6504", + "name": "Myaree", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.04000000", + "longitude": "115.81761000" + }, + { + "id": "6519", + "name": "Nannup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.13466000", + "longitude": "115.67375000" + }, + { + "id": "6528", + "name": "Narembeen", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.02206000", + "longitude": "118.68990000" + }, + { + "id": "6540", + "name": "Narrogin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.93282000", + "longitude": "117.17763000" + }, + { + "id": "6546", + "name": "Nedlands", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.97994000", + "longitude": "115.79942000" + }, + { + "id": "6569", + "name": "Newman", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.35644000", + "longitude": "119.73553000" + }, + { + "id": "6581", + "name": "Ngaanyatjarraku", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.08871000", + "longitude": "126.83494000" + }, + { + "id": "6590", + "name": "Nickol", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.74558000", + "longitude": "116.79540000" + }, + { + "id": "6600", + "name": "Nollamara", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88016000", + "longitude": "115.84543000" + }, + { + "id": "6604", + "name": "Noranda", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.87333000", + "longitude": "115.89901000" + }, + { + "id": "6616", + "name": "North Beach", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.86298000", + "longitude": "115.75624000" + }, + { + "id": "6624", + "name": "North Coogee", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.09505000", + "longitude": "115.75972000" + }, + { + "id": "6627", + "name": "North Fremantle", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03333000", + "longitude": "115.75000000" + }, + { + "id": "6634", + "name": "North Lake", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.08190000", + "longitude": "115.83567000" + }, + { + "id": "6644", + "name": "North Perth", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.92724000", + "longitude": "115.85276000" + }, + { + "id": "6661", + "name": "Northam", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.69898000", + "longitude": "116.64964000" + }, + { + "id": "6662", + "name": "Northampton Shire", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.04956000", + "longitude": "114.49589000" + }, + { + "id": "6664", + "name": "Northbridge", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.94784000", + "longitude": "115.85881000" + }, + { + "id": "6682", + "name": "Nullagine", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.88972000", + "longitude": "120.11140000" + }, + { + "id": "6683", + "name": "Nulsen", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.85696000", + "longitude": "121.87499000" + }, + { + "id": "6687", + "name": "Nungarin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.13714000", + "longitude": "118.21768000" + }, + { + "id": "6699", + "name": "Oakford", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.20094000", + "longitude": "115.93391000" + }, + { + "id": "6711", + "name": "Ocean Reef", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.75871000", + "longitude": "115.73601000" + }, + { + "id": "6726", + "name": "Onslow", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.63764000", + "longitude": "115.11221000" + }, + { + "id": "6730", + "name": "Orana", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.99601000", + "longitude": "117.85925000" + }, + { + "id": "6736", + "name": "Orelia", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.23330000", + "longitude": "115.82227000" + }, + { + "id": "6743", + "name": "Osborne Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.90066000", + "longitude": "115.81083000" + }, + { + "id": "6756", + "name": "Padbury", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.80645000", + "longitude": "115.76880000" + }, + { + "id": "6772", + "name": "Palmyra", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.04502000", + "longitude": "115.78589000" + }, + { + "id": "6779", + "name": "Paraburdoo", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-23.20417000", + "longitude": "117.66973000" + }, + { + "id": "6793", + "name": "Parkerville", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.87472000", + "longitude": "116.13800000" + }, + { + "id": "6802", + "name": "Parkwood", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.04913000", + "longitude": "115.91838000" + }, + { + "id": "6803", + "name": "Parmelia", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.25784000", + "longitude": "115.82208000" + }, + { + "id": "6819", + "name": "Pearce", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.66667000", + "longitude": "116.01667000" + }, + { + "id": "6822", + "name": "Pearsall", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.78117000", + "longitude": "115.81823000" + }, + { + "id": "6823", + "name": "Pegs Creek", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.73830000", + "longitude": "116.83278000" + }, + { + "id": "6825", + "name": "Pemberton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.44311000", + "longitude": "116.03689000" + }, + { + "id": "6835", + "name": "Peppermint Grove", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.99885000", + "longitude": "115.76697000" + }, + { + "id": "6838", + "name": "Perenjori", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.39784000", + "longitude": "116.53543000" + }, + { + "id": "6840", + "name": "Perth", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95224000", + "longitude": "115.86140000" + }, + { + "id": "6841", + "name": "Perth city centre", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95289000", + "longitude": "115.85152000" + }, + { + "id": "6851", + "name": "Piara Waters", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.13344000", + "longitude": "115.91634000" + }, + { + "id": "6852", + "name": "Piccadilly", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.74280000", + "longitude": "121.46418000" + }, + { + "id": "6859", + "name": "Pingelly", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.53174000", + "longitude": "117.20004000" + }, + { + "id": "6860", + "name": "Pinjarra", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.62980000", + "longitude": "115.87351000" + }, + { + "id": "6865", + "name": "Plantagenet Shire", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-34.62508000", + "longitude": "117.59753000" + }, + { + "id": "6887", + "name": "Port Denison", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.27367000", + "longitude": "114.92068000" + }, + { + "id": "6892", + "name": "Port Hedland", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.79258000", + "longitude": "118.63264000" + }, + { + "id": "6894", + "name": "Port Kennedy", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.37342000", + "longitude": "115.75150000" + }, + { + "id": "6932", + "name": "Quairading", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.01462000", + "longitude": "117.39835000" + }, + { + "id": "6938", + "name": "Queens Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.00314000", + "longitude": "115.94621000" + }, + { + "id": "6947", + "name": "Quindalup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.63560000", + "longitude": "115.14899000" + }, + { + "id": "6948", + "name": "Quinns Rocks", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.67379000", + "longitude": "115.70372000" + }, + { + "id": "6961", + "name": "Rangeway", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.78665000", + "longitude": "114.63059000" + }, + { + "id": "6969", + "name": "Ravensthorpe", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.68375000", + "longitude": "120.15338000" + }, + { + "id": "6971", + "name": "Ravenswood", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.58240000", + "longitude": "115.83150000" + }, + { + "id": "6981", + "name": "Redcliffe", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93845000", + "longitude": "115.94645000" + }, + { + "id": "7013", + "name": "Ridgewood", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.66150000", + "longitude": "115.72261000" + }, + { + "id": "7026", + "name": "Riverton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03468000", + "longitude": "115.89856000" + }, + { + "id": "7027", + "name": "Rivervale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95546000", + "longitude": "115.91306000" + }, + { + "id": "7044", + "name": "Rockingham", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.28239000", + "longitude": "115.73238000" + }, + { + "id": "7045", + "name": "Rockingham city centre", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.28407000", + "longitude": "115.73540000" + }, + { + "id": "7049", + "name": "Roebuck", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.17130000", + "longitude": "122.50116000" + }, + { + "id": "7051", + "name": "Roleystone", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.11458000", + "longitude": "116.07060000" + }, + { + "id": "7079", + "name": "Rossmoyne", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.03965000", + "longitude": "115.86781000" + }, + { + "id": "7106", + "name": "Safety Bay", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.30463000", + "longitude": "115.74213000" + }, + { + "id": "7128", + "name": "Salter Point", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.02384000", + "longitude": "115.86582000" + }, + { + "id": "7130", + "name": "Samson", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.06996000", + "longitude": "115.79770000" + }, + { + "id": "7139", + "name": "Sandstone", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.42189000", + "longitude": "118.98846000" + }, + { + "id": "7149", + "name": "Scarborough", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.89578000", + "longitude": "115.76431000" + }, + { + "id": "7172", + "name": "Secret Harbour", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.40589000", + "longitude": "115.75852000" + }, + { + "id": "7181", + "name": "Serpentine", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.36051000", + "longitude": "115.97723000" + }, + { + "id": "7182", + "name": "Serpentine-Jarrahdale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.32452000", + "longitude": "116.04507000" + }, + { + "id": "7188", + "name": "Seville Grove", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.13645000", + "longitude": "115.98905000" + }, + { + "id": "7192", + "name": "Shark Bay", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-26.38916000", + "longitude": "114.21845000" + }, + { + "id": "7199", + "name": "Shelley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.02957000", + "longitude": "115.88664000" + }, + { + "id": "7202", + "name": "Shenton Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95575000", + "longitude": "115.79807000" + }, + { + "id": "7208", + "name": "Shoalwater", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.29088000", + "longitude": "115.71101000" + }, + { + "id": "7214", + "name": "Silver Sands", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.50857000", + "longitude": "115.73599000" + }, + { + "id": "7217", + "name": "Sinagra", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.74261000", + "longitude": "115.80633000" + }, + { + "id": "7218", + "name": "Singleton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.44403000", + "longitude": "115.75725000" + }, + { + "id": "7245", + "name": "Somerville", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.76979000", + "longitude": "121.45438000" + }, + { + "id": "7248", + "name": "Sorrento", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.82533000", + "longitude": "115.75248000" + }, + { + "id": "7254", + "name": "South Bunbury", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.34910000", + "longitude": "115.63359000" + }, + { + "id": "7256", + "name": "South Carnarvon", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.89348000", + "longitude": "113.65846000" + }, + { + "id": "7258", + "name": "South Fremantle", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.06907000", + "longitude": "115.75453000" + }, + { + "id": "7263", + "name": "South Guildford", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91220000", + "longitude": "115.96825000" + }, + { + "id": "7264", + "name": "South Hedland", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.40655000", + "longitude": "118.60069000" + }, + { + "id": "7267", + "name": "South Kalgoorlie", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.76507000", + "longitude": "121.47334000" + }, + { + "id": "7271", + "name": "South Lake", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.11125000", + "longitude": "115.83873000" + }, + { + "id": "7281", + "name": "South Perth", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.99884000", + "longitude": "115.87222000" + }, + { + "id": "7291", + "name": "South Yunderup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.58510000", + "longitude": "115.78015000" + }, + { + "id": "7297", + "name": "Southern River", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.10658000", + "longitude": "115.95896000" + }, + { + "id": "7300", + "name": "Spalding", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.73525000", + "longitude": "114.63651000" + }, + { + "id": "7301", + "name": "Spearwood", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.10534000", + "longitude": "115.77797000" + }, + { + "id": "7304", + "name": "Spencer Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00515000", + "longitude": "117.90005000" + }, + { + "id": "7323", + "name": "St George Ranges", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-18.98204000", + "longitude": "125.00873000" + }, + { + "id": "7330", + "name": "St James", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.00004000", + "longitude": "115.90980000" + }, + { + "id": "7347", + "name": "Stirling", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.87940000", + "longitude": "115.80929000" + }, + { + "id": "7351", + "name": "Stoneville", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.86667000", + "longitude": "121.76667000" + }, + { + "id": "7356", + "name": "Strathalbyn", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.75168000", + "longitude": "114.64576000" + }, + { + "id": "7365", + "name": "Stratton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.86828000", + "longitude": "116.04066000" + }, + { + "id": "7371", + "name": "Subiaco", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.95964000", + "longitude": "115.81564000" + }, + { + "id": "7372", + "name": "Success", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.14281000", + "longitude": "115.84999000" + }, + { + "id": "7383", + "name": "Sunset Beach", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.71907000", + "longitude": "114.62297000" + }, + { + "id": "7401", + "name": "Swan", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.77039000", + "longitude": "116.08746000" + }, + { + "id": "7403", + "name": "Swan View", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88333000", + "longitude": "116.05000000" + }, + { + "id": "7404", + "name": "Swanbourne", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.96878000", + "longitude": "115.76730000" + }, + { + "id": "7424", + "name": "Tammin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.60512000", + "longitude": "117.48306000" + }, + { + "id": "7433", + "name": "Tapping", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.71947000", + "longitude": "115.79559000" + }, + { + "id": "7436", + "name": "Tarcoola Beach", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.81001000", + "longitude": "114.62236000" + }, + { + "id": "7458", + "name": "Telfer", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-21.21169000", + "longitude": "123.26175000" + }, + { + "id": "7496", + "name": "The Vines", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.75492000", + "longitude": "116.00238000" + }, + { + "id": "7507", + "name": "Thornlie", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.06003000", + "longitude": "115.95500000" + }, + { + "id": "7509", + "name": "Three Springs", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-29.51386000", + "longitude": "115.63158000" + }, + { + "id": "7526", + "name": "Tom Price", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-22.69390000", + "longitude": "117.79310000" + }, + { + "id": "7530", + "name": "Toodyay", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.46991000", + "longitude": "116.38804000" + }, + { + "id": "7560", + "name": "Trayning", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.16681000", + "longitude": "117.83812000" + }, + { + "id": "7564", + "name": "Trigg", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.86939000", + "longitude": "115.75710000" + }, + { + "id": "7571", + "name": "Tuart Hill", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.89808000", + "longitude": "115.83495000" + }, + { + "id": "7594", + "name": "Two Rocks", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.49985000", + "longitude": "115.58737000" + }, + { + "id": "7609", + "name": "Upper Gascoyne", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-24.71935000", + "longitude": "116.33876000" + }, + { + "id": "7619", + "name": "Usher", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.37982000", + "longitude": "115.62920000" + }, + { + "id": "7620", + "name": "Utakarra", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.78333000", + "longitude": "114.65000000" + }, + { + "id": "7627", + "name": "Vasse", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.69337000", + "longitude": "115.26780000" + }, + { + "id": "7633", + "name": "Victoria Park", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.97651000", + "longitude": "115.90592000" + }, + { + "id": "7634", + "name": "Victoria Plains", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.01632000", + "longitude": "116.28546000" + }, + { + "id": "7638", + "name": "Vincent", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93138000", + "longitude": "115.85412000" + }, + { + "id": "7645", + "name": "Viveash", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.87861000", + "longitude": "115.99661000" + }, + { + "id": "7653", + "name": "Waggrakine", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.71883000", + "longitude": "114.63924000" + }, + { + "id": "7654", + "name": "Wagin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.27501000", + "longitude": "117.38554000" + }, + { + "id": "7658", + "name": "Waikiki", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.31606000", + "longitude": "115.75460000" + }, + { + "id": "7682", + "name": "Wandering", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.52589000", + "longitude": "116.56668000" + }, + { + "id": "7683", + "name": "Wandi", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.19430000", + "longitude": "115.87630000" + }, + { + "id": "7685", + "name": "Wandina", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.81938000", + "longitude": "114.63464000" + }, + { + "id": "7691", + "name": "Wannanup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.59946000", + "longitude": "115.64488000" + }, + { + "id": "7692", + "name": "Wanneroo", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.65293000", + "longitude": "115.72211000" + }, + { + "id": "7706", + "name": "Warnbro", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.34017000", + "longitude": "115.74730000" + }, + { + "id": "7709", + "name": "Waroona", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.84916000", + "longitude": "115.90429000" + }, + { + "id": "7726", + "name": "Warwick", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.83974000", + "longitude": "115.80855000" + }, + { + "id": "7729", + "name": "Waterford", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.01574000", + "longitude": "115.88662000" + }, + { + "id": "7732", + "name": "Watermans Bay", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.84915000", + "longitude": "115.75590000" + }, + { + "id": "7739", + "name": "Wattle Grove", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.00672000", + "longitude": "116.00046000" + }, + { + "id": "7755", + "name": "Wellard", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.26667000", + "longitude": "115.83333000" + }, + { + "id": "7760", + "name": "Wembley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.93308000", + "longitude": "115.81783000" + }, + { + "id": "7761", + "name": "Wembley Downs", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.91169000", + "longitude": "115.77358000" + }, + { + "id": "7776", + "name": "West Arthur", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.44057000", + "longitude": "116.68597000" + }, + { + "id": "7780", + "name": "West Beach", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.87464000", + "longitude": "121.89013000" + }, + { + "id": "7781", + "name": "West Busselton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.65792000", + "longitude": "115.32293000" + }, + { + "id": "7795", + "name": "West Lamington", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.74707000", + "longitude": "121.45248000" + }, + { + "id": "7797", + "name": "West Leederville", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.94141000", + "longitude": "115.83117000" + }, + { + "id": "7803", + "name": "West Perth", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.94896000", + "longitude": "115.84199000" + }, + { + "id": "7826", + "name": "Westminster", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.86744000", + "longitude": "115.83919000" + }, + { + "id": "7828", + "name": "Westonia", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.88436000", + "longitude": "118.72974000" + }, + { + "id": "7833", + "name": "White Gum Valley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.06031000", + "longitude": "115.77058000" + }, + { + "id": "7848", + "name": "Wickepin", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.82211000", + "longitude": "117.63996000" + }, + { + "id": "7850", + "name": "Wickham", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-20.67474000", + "longitude": "117.13784000" + }, + { + "id": "7853", + "name": "Willagee", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.05196000", + "longitude": "115.80533000" + }, + { + "id": "7855", + "name": "Willetton", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.05251000", + "longitude": "115.88782000" + }, + { + "id": "7856", + "name": "Williams", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.05217000", + "longitude": "116.70943000" + }, + { + "id": "7868", + "name": "Wilson", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.02058000", + "longitude": "115.91181000" + }, + { + "id": "7873", + "name": "Wiluna", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-25.36630000", + "longitude": "121.93243000" + }, + { + "id": "7889", + "name": "Winthrop", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.05216000", + "longitude": "115.82972000" + }, + { + "id": "7893", + "name": "Withers", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.36807000", + "longitude": "115.63050000" + }, + { + "id": "7907", + "name": "Wongan-Ballidu", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.73138000", + "longitude": "116.84854000" + }, + { + "id": "7910", + "name": "Wonthella", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.76689000", + "longitude": "114.63338000" + }, + { + "id": "7911", + "name": "Woodanilling", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.51937000", + "longitude": "117.33580000" + }, + { + "id": "7914", + "name": "Woodbridge", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88695000", + "longitude": "115.99196000" + }, + { + "id": "7927", + "name": "Woodvale", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.78928000", + "longitude": "115.79676000" + }, + { + "id": "7947", + "name": "Wooroloo", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.80380000", + "longitude": "116.31311000" + }, + { + "id": "7948", + "name": "Woorree", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.76677000", + "longitude": "114.65806000" + }, + { + "id": "7961", + "name": "Wundowie", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.76163000", + "longitude": "116.37990000" + }, + { + "id": "7966", + "name": "Wyalkatchem", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.19528000", + "longitude": "117.44682000" + }, + { + "id": "7971", + "name": "Wyndham-East Kimberley", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-15.51291000", + "longitude": "126.58779000" + }, + { + "id": "7982", + "name": "Yakamia", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-35.00392000", + "longitude": "117.87828000" + }, + { + "id": "7983", + "name": "Yalgoo", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-28.48787000", + "longitude": "117.15818000" + }, + { + "id": "7985", + "name": "Yallingup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.64592000", + "longitude": "115.03514000" + }, + { + "id": "7987", + "name": "Yalyalup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-33.67496000", + "longitude": "115.41449000" + }, + { + "id": "7990", + "name": "Yanchep", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.54678000", + "longitude": "115.63171000" + }, + { + "id": "7992", + "name": "Yangebup", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-32.12065000", + "longitude": "115.81623000" + }, + { + "id": "8022", + "name": "Yilgarn", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-30.90938000", + "longitude": "119.25881000" + }, + { + "id": "8023", + "name": "Yokine", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.90113000", + "longitude": "115.85319000" + }, + { + "id": "8025", + "name": "York", + "state_id": 3906, + "state_code": "WA", + "country_id": 14, + "country_code": "AU", + "latitude": "-31.88809000", + "longitude": "116.76780000" + }, + { + "id": "1657", + "name": "Andau", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.77441000", + "longitude": "17.03293000" + }, + { + "id": "1671", + "name": "Antau", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.77377000", + "longitude": "16.47984000" + }, + { + "id": "1673", + "name": "Apetlon", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.74394000", + "longitude": "16.83020000" + }, + { + "id": "1734", + "name": "Bad Sauerbrunn", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.77439000", + "longitude": "16.32841000" + }, + { + "id": "1737", + "name": "Bad Tatzmannsdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33126000", + "longitude": "16.23067000" + }, + { + "id": "1743", + "name": "Badersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "16.36667000" + }, + { + "id": "1765", + "name": "Bernstein", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "16.25000000" + }, + { + "id": "1787", + "name": "Bocksdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14256000", + "longitude": "16.17784000" + }, + { + "id": "1798", + "name": "Breitenbrunn", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.94452000", + "longitude": "16.73149000" + }, + { + "id": "1811", + "name": "Bruckneudorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "16.78333000" + }, + { + "id": "1839", + "name": "Deutsch Jahrndorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "17.10000000" + }, + { + "id": "1840", + "name": "Deutsch Kaltenbrunn", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.09455000", + "longitude": "16.13145000" + }, + { + "id": "1843", + "name": "Deutschkreutz", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60000000", + "longitude": "16.63333000" + }, + { + "id": "1859", + "name": "Donnerskirchen", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89425000", + "longitude": "16.64635000" + }, + { + "id": "1868", + "name": "Drassburg", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.74645000", + "longitude": "16.48679000" + }, + { + "id": "1888", + "name": "Eberau", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10764000", + "longitude": "16.46044000" + }, + { + "id": "1902", + "name": "Edelstal", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10000000", + "longitude": "16.98333000" + }, + { + "id": "1924", + "name": "Eisenstadt", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.84565000", + "longitude": "16.52327000" + }, + { + "id": "1925", + "name": "Eisenstadt Stadt", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.84450000", + "longitude": "16.52575000" + }, + { + "id": "1926", + "name": "Eisenstadt-Umgebung", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83333000", + "longitude": "16.58333000" + }, + { + "id": "1934", + "name": "Eltendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00870000", + "longitude": "16.20239000" + }, + { + "id": "2005", + "name": "Forchtenstein", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71161000", + "longitude": "16.34525000" + }, + { + "id": "2014", + "name": "Frauenkirchen", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83678000", + "longitude": "16.92581000" + }, + { + "id": "2064", + "name": "Gattendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "16.98333000" + }, + { + "id": "2197", + "name": "Güssing", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05936000", + "longitude": "16.32431000" + }, + { + "id": "2198", + "name": "Güttenbach", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15710000", + "longitude": "16.29230000" + }, + { + "id": "2104", + "name": "Gols", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89689000", + "longitude": "16.91113000" + }, + { + "id": "2111", + "name": "Grafenschachen", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36667000", + "longitude": "16.06667000" + }, + { + "id": "2141", + "name": "Grosshöflein", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83586000", + "longitude": "16.48035000" + }, + { + "id": "2142", + "name": "Grosspetersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23895000", + "longitude": "16.31783000" + }, + { + "id": "2203", + "name": "Hackerberg", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "16.11667000" + }, + { + "id": "2222", + "name": "Halbturn", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87019000", + "longitude": "16.97542000" + }, + { + "id": "2228", + "name": "Hannersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22895000", + "longitude": "16.38250000" + }, + { + "id": "2259", + "name": "Heiligenbrunn", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.02705000", + "longitude": "16.41688000" + }, + { + "id": "2263", + "name": "Heiligenkreuz im Lafnitztal", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "46.98917000", + "longitude": "16.26083000" + }, + { + "id": "2278", + "name": "Heugraben", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11783000", + "longitude": "16.19041000" + }, + { + "id": "2290", + "name": "Hirm", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.78652000", + "longitude": "16.45460000" + }, + { + "id": "2330", + "name": "Horitschon", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58729000", + "longitude": "16.54696000" + }, + { + "id": "2332", + "name": "Hornstein", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.88049000", + "longitude": "16.44447000" + }, + { + "id": "2351", + "name": "Illmitz", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.76148000", + "longitude": "16.80024000" + }, + { + "id": "2362", + "name": "Inzenhof", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01667000", + "longitude": "16.31667000" + }, + { + "id": "2370", + "name": "Jabing", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23880000", + "longitude": "16.27659000" + }, + { + "id": "2377", + "name": "Jennersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "46.93848000", + "longitude": "16.14158000" + }, + { + "id": "2381", + "name": "Jois", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96165000", + "longitude": "16.79604000" + }, + { + "id": "2390", + "name": "Kaisersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53741000", + "longitude": "16.39198000" + }, + { + "id": "2509", + "name": "Königsdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00000000", + "longitude": "16.16667000" + }, + { + "id": "2418", + "name": "Kemeten", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.24859000", + "longitude": "16.15213000" + }, + { + "id": "2442", + "name": "Kittsee", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09250000", + "longitude": "17.06389000" + }, + { + "id": "2454", + "name": "Kleinhöflein im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.84151000", + "longitude": "16.50413000" + }, + { + "id": "2456", + "name": "Kleinmürbisch", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03299000", + "longitude": "16.32448000" + }, + { + "id": "2460", + "name": "Klingenbach", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.75202000", + "longitude": "16.54069000" + }, + { + "id": "2467", + "name": "Kobersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.59572000", + "longitude": "16.39173000" + }, + { + "id": "2469", + "name": "Kohfidisch", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.17472000", + "longitude": "16.35701000" + }, + { + "id": "2487", + "name": "Krensdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.78552000", + "longitude": "16.41495000" + }, + { + "id": "2504", + "name": "Kukmirn", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07544000", + "longitude": "16.21033000" + }, + { + "id": "2523", + "name": "Lackenbach", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.59042000", + "longitude": "16.46533000" + }, + { + "id": "2524", + "name": "Lackendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58996000", + "longitude": "16.50404000" + }, + { + "id": "2568", + "name": "Leithaprodersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93348000", + "longitude": "16.47915000" + }, + { + "id": "2606", + "name": "Litzelsdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20826000", + "longitude": "16.17170000" + }, + { + "id": "2608", + "name": "Lockenhaus", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40753000", + "longitude": "16.41623000" + }, + { + "id": "2611", + "name": "Loipersbach im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69656000", + "longitude": "16.47919000" + }, + { + "id": "2614", + "name": "Loretto", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.91559000", + "longitude": "16.51790000" + }, + { + "id": "2622", + "name": "Lutzmannsburg", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46373000", + "longitude": "16.63665000" + }, + { + "id": "2631", + "name": "Mannersdorf an der Rabnitz", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42815000", + "longitude": "16.52678000" + }, + { + "id": "2654", + "name": "Mariasdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36580000", + "longitude": "16.23136000" + }, + { + "id": "2661", + "name": "Markt Allhau", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "16.08333000" + }, + { + "id": "2662", + "name": "Markt Neuhodis", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29565000", + "longitude": "16.39564000" + }, + { + "id": "2664", + "name": "Markt Sankt Martin", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56205000", + "longitude": "16.42508000" + }, + { + "id": "2666", + "name": "Marz", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71667000", + "longitude": "16.41667000" + }, + { + "id": "2669", + "name": "Mattersburg", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.73333000", + "longitude": "16.40000000" + }, + { + "id": "2745", + "name": "Mönchhof", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.88020000", + "longitude": "16.94126000" + }, + { + "id": "2748", + "name": "Mörbisch am See", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.75000000", + "longitude": "16.66667000" + }, + { + "id": "2759", + "name": "Mühlgraben", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "46.88972000", + "longitude": "16.04083000" + }, + { + "id": "2760", + "name": "Müllendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83943000", + "longitude": "16.46258000" + }, + { + "id": "2705", + "name": "Mischendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.19277000", + "longitude": "16.31444000" + }, + { + "id": "2718", + "name": "Mitterpullendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.49325000", + "longitude": "16.52129000" + }, + { + "id": "2722", + "name": "Mogersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94917000", + "longitude": "16.23222000" + }, + { + "id": "2730", + "name": "Moschendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05843000", + "longitude": "16.47728000" + }, + { + "id": "2776", + "name": "Neckenmarkt", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.59964000", + "longitude": "16.54670000" + }, + { + "id": "2787", + "name": "Neuberg im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16894000", + "longitude": "16.26054000" + }, + { + "id": "2790", + "name": "Neudörfl", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.79655000", + "longitude": "16.29770000" + }, + { + "id": "2792", + "name": "Neufeld an der Leitha", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.86558000", + "longitude": "16.37856000" + }, + { + "id": "2795", + "name": "Neuhaus am Klausenbach", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86667000", + "longitude": "16.03333000" + }, + { + "id": "2811", + "name": "Neusiedl am See", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.94901000", + "longitude": "16.84170000" + }, + { + "id": "2813", + "name": "Neustift an der Lafnitz", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36667000", + "longitude": "16.03333000" + }, + { + "id": "2814", + "name": "Neustift bei Güssing", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.02474000", + "longitude": "16.26041000" + }, + { + "id": "2816", + "name": "Neutal", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.54548000", + "longitude": "16.44619000" + }, + { + "id": "2819", + "name": "Nickelsdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.94056000", + "longitude": "17.06944000" + }, + { + "id": "2834", + "name": "Nikitsch", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53615000", + "longitude": "16.66017000" + }, + { + "id": "2848", + "name": "Oberdorf im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "16.21667000" + }, + { + "id": "2859", + "name": "Oberloisdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44736000", + "longitude": "16.50764000" + }, + { + "id": "2871", + "name": "Oberpullendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50352000", + "longitude": "16.50447000" + }, + { + "id": "2873", + "name": "Oberschützen", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35138000", + "longitude": "16.20732000" + }, + { + "id": "2884", + "name": "Oberwart", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28971000", + "longitude": "16.20595000" + }, + { + "id": "2896", + "name": "Oggau", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83333000", + "longitude": "16.66667000" + }, + { + "id": "2898", + "name": "Olbendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "16.20000000" + }, + { + "id": "2899", + "name": "Ollersdorf im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "16.16667000" + }, + { + "id": "2905", + "name": "Oslip", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.82906000", + "longitude": "16.61957000" + }, + { + "id": "2921", + "name": "Pama", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05000000", + "longitude": "17.03333000" + }, + { + "id": "2922", + "name": "Pamhagen", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70092000", + "longitude": "16.90779000" + }, + { + "id": "2924", + "name": "Parndorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99963000", + "longitude": "16.86049000" + }, + { + "id": "3109", + "name": "Pöttelsdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.75369000", + "longitude": "16.43864000" + }, + { + "id": "3111", + "name": "Pöttsching", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80445000", + "longitude": "16.37109000" + }, + { + "id": "2968", + "name": "Pilgersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44106000", + "longitude": "16.34920000" + }, + { + "id": "2972", + "name": "Pinkafeld", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36667000", + "longitude": "16.11667000" + }, + { + "id": "2975", + "name": "Piringsdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44826000", + "longitude": "16.41516000" + }, + { + "id": "2985", + "name": "Podersdorf am See", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85412000", + "longitude": "16.83706000" + }, + { + "id": "3005", + "name": "Politischer Bezirk Güssing", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10164000", + "longitude": "16.30363000" + }, + { + "id": "3013", + "name": "Politischer Bezirk Jennersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96667000", + "longitude": "16.15000000" + }, + { + "id": "3027", + "name": "Politischer Bezirk Mattersburg", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.73823000", + "longitude": "16.39486000" + }, + { + "id": "3034", + "name": "Politischer Bezirk Neusiedl am See", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.88853000", + "longitude": "16.92465000" + }, + { + "id": "3035", + "name": "Politischer Bezirk Oberpullendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50184000", + "longitude": "16.50593000" + }, + { + "id": "3036", + "name": "Politischer Bezirk Oberwart", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28854000", + "longitude": "16.20861000" + }, + { + "id": "3070", + "name": "Potzneusiedl", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04504000", + "longitude": "16.94770000" + }, + { + "id": "3098", + "name": "Purbach am Neusiedler See", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.91289000", + "longitude": "16.69561000" + }, + { + "id": "3129", + "name": "Raiding", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56581000", + "longitude": "16.53056000" + }, + { + "id": "3156", + "name": "Rechnitz", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30467000", + "longitude": "16.44095000" + }, + { + "id": "3190", + "name": "Riedlingsdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35000000", + "longitude": "16.13333000" + }, + { + "id": "3197", + "name": "Ritzing", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.61316000", + "longitude": "16.49546000" + }, + { + "id": "3198", + "name": "Rohr im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "16.16667000" + }, + { + "id": "3204", + "name": "Rohrbach bei Mattersburg", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70520000", + "longitude": "16.43005000" + }, + { + "id": "3213", + "name": "Rotenturm an der Pinka", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "16.25000000" + }, + { + "id": "3216", + "name": "Rudersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05000000", + "longitude": "16.11667000" + }, + { + "id": "3220", + "name": "Rust", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80122000", + "longitude": "16.67158000" + }, + { + "id": "3221", + "name": "Rust Stadt", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80174000", + "longitude": "16.67210000" + }, + { + "id": "3240", + "name": "Sankt Andrä am Zicksee", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.78410000", + "longitude": "16.94195000" + }, + { + "id": "3253", + "name": "Sankt Georgen am Leithagebirge", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85000000", + "longitude": "16.55000000" + }, + { + "id": "3297", + "name": "Sankt Margarethen im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80335000", + "longitude": "16.60875000" + }, + { + "id": "3305", + "name": "Sankt Martin an der Raab", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "46.92250000", + "longitude": "16.13611000" + }, + { + "id": "3309", + "name": "Sankt Michael im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12852000", + "longitude": "16.27148000" + }, + { + "id": "3353", + "name": "Schachendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26667000", + "longitude": "16.43333000" + }, + { + "id": "3357", + "name": "Schandorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.24183000", + "longitude": "16.42267000" + }, + { + "id": "3362", + "name": "Schattendorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70973000", + "longitude": "16.50979000" + }, + { + "id": "3424", + "name": "Schützen am Gebirge", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85233000", + "longitude": "16.62334000" + }, + { + "id": "3449", + "name": "Siegendorf im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.78098000", + "longitude": "16.54232000" + }, + { + "id": "3451", + "name": "Sieggraben", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.65128000", + "longitude": "16.37993000" + }, + { + "id": "3456", + "name": "Sigless", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.77533000", + "longitude": "16.39503000" + }, + { + "id": "3492", + "name": "Stadtschlaining", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31667000", + "longitude": "16.28333000" + }, + { + "id": "3509", + "name": "Stegersbach", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "16.16667000" + }, + { + "id": "3516", + "name": "Steinbrunn", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83333000", + "longitude": "16.41667000" + }, + { + "id": "3530", + "name": "Stinatz", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20266000", + "longitude": "16.13312000" + }, + { + "id": "3535", + "name": "Stoob", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.52845000", + "longitude": "16.47760000" + }, + { + "id": "3536", + "name": "Stotzing", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90688000", + "longitude": "16.54580000" + }, + { + "id": "3550", + "name": "Strem", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.04498000", + "longitude": "16.41426000" + }, + { + "id": "3568", + "name": "Tadten", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.76667000", + "longitude": "16.98333000" + }, + { + "id": "3605", + "name": "Tobaj", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "16.30000000" + }, + { + "id": "3615", + "name": "Trausdorf an der Wulka", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.81350000", + "longitude": "16.55760000" + }, + { + "id": "3630", + "name": "Tschanigraben", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01667000", + "longitude": "16.30000000" + }, + { + "id": "3652", + "name": "Unterfrauenhaid", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.57116000", + "longitude": "16.49885000" + }, + { + "id": "3654", + "name": "Unterkohlstätten", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "16.31667000" + }, + { + "id": "3666", + "name": "Unterwart", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "16.23333000" + }, + { + "id": "3737", + "name": "Wallern im Burgenland", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.72847000", + "longitude": "16.93706000" + }, + { + "id": "3859", + "name": "Wörterberg", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "16.10000000" + }, + { + "id": "3756", + "name": "Weichselbaum", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94250000", + "longitude": "16.18750000" + }, + { + "id": "3757", + "name": "Weiden am See", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.92532000", + "longitude": "16.86899000" + }, + { + "id": "3758", + "name": "Weiden bei Rechnitz", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "16.35000000" + }, + { + "id": "3767", + "name": "Weingraben", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51393000", + "longitude": "16.36375000" + }, + { + "id": "3791", + "name": "Weppersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.57954000", + "longitude": "16.42679000" + }, + { + "id": "3809", + "name": "Wiesen", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.73776000", + "longitude": "16.33798000" + }, + { + "id": "3810", + "name": "Wiesfleck", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38458000", + "longitude": "16.14552000" + }, + { + "id": "3823", + "name": "Wimpassing an der Leitha", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.91667000", + "longitude": "16.43333000" + }, + { + "id": "3826", + "name": "Winden am See", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "16.75000000" + }, + { + "id": "3838", + "name": "Wolfau", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "16.10000000" + }, + { + "id": "3850", + "name": "Wulkaprodersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.79753000", + "longitude": "16.50447000" + }, + { + "id": "3866", + "name": "Zagersdorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.76471000", + "longitude": "16.51382000" + }, + { + "id": "3887", + "name": "Zillingtal", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.81442000", + "longitude": "16.40928000" + }, + { + "id": "3890", + "name": "Zurndorf", + "state_id": 2062, + "state_code": "1", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98314000", + "longitude": "17.00315000" + }, + { + "id": "1646", + "name": "Althofen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87298000", + "longitude": "14.47449000" + }, + { + "id": "1668", + "name": "Annabichl", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.65000000", + "longitude": "14.31667000" + }, + { + "id": "1679", + "name": "Arnoldstein", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.54611000", + "longitude": "13.71000000" + }, + { + "id": "1681", + "name": "Arriach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72921000", + "longitude": "13.85046000" + }, + { + "id": "1706", + "name": "Auen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.59963000", + "longitude": "13.84389000" + }, + { + "id": "1733", + "name": "Bad Sankt Leonhard im Lavanttal", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96278000", + "longitude": "14.79167000" + }, + { + "id": "1746", + "name": "Baldramsdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80111000", + "longitude": "13.45333000" + }, + { + "id": "1755", + "name": "Berg im Drautal", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.74915000", + "longitude": "13.13536000" + }, + { + "id": "1781", + "name": "Bleiburg\/Pliberk", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.59000000", + "longitude": "14.79889000" + }, + { + "id": "1788", + "name": "Bodensdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.69111000", + "longitude": "13.97111000" + }, + { + "id": "1816", + "name": "Brückl", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75167000", + "longitude": "14.53667000" + }, + { + "id": "1871", + "name": "Döbriach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.78049000", + "longitude": "13.65738000" + }, + { + "id": "1833", + "name": "Dellach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.66175000", + "longitude": "13.07965000" + }, + { + "id": "1834", + "name": "Dellach im Drautal", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.73750000", + "longitude": "13.07833000" + }, + { + "id": "1838", + "name": "Deutsch Griffen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85606000", + "longitude": "14.07501000" + }, + { + "id": "1854", + "name": "Diex", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75000000", + "longitude": "14.60000000" + }, + { + "id": "1866", + "name": "Draschen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76909000", + "longitude": "14.06758000" + }, + { + "id": "1886", + "name": "Ebenthal", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.60806000", + "longitude": "14.36417000" + }, + { + "id": "1890", + "name": "Eberndorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.59139000", + "longitude": "14.64361000" + }, + { + "id": "1894", + "name": "Eberstein", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80806000", + "longitude": "14.56000000" + }, + { + "id": "1957", + "name": "Faak am See", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.56806000", + "longitude": "13.90972000" + }, + { + "id": "2033", + "name": "Föderlach I", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.59998000", + "longitude": "13.96128000" + }, + { + "id": "2036", + "name": "Fürnitz", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.56188000", + "longitude": "13.81732000" + }, + { + "id": "1966", + "name": "Feistritz an der Drau", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70157000", + "longitude": "13.66479000" + }, + { + "id": "1967", + "name": "Feistritz an der Gail", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.57750000", + "longitude": "13.60667000" + }, + { + "id": "1969", + "name": "Feistritz im Rosental", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.51667000", + "longitude": "14.16667000" + }, + { + "id": "1970", + "name": "Feistritz ob Bleiburg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.55000000", + "longitude": "14.76667000" + }, + { + "id": "1971", + "name": "Feld am See", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.77639000", + "longitude": "13.74778000" + }, + { + "id": "1976", + "name": "Feldkirchen in Kärnten", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72368000", + "longitude": "14.09580000" + }, + { + "id": "1980", + "name": "Ferlach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.52694000", + "longitude": "14.30194000" + }, + { + "id": "1981", + "name": "Ferndorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.73651000", + "longitude": "13.62661000" + }, + { + "id": "1988", + "name": "Finkenstein", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.56155000", + "longitude": "13.87086000" + }, + { + "id": "1989", + "name": "Finkenstein am Faaker See", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.57904000", + "longitude": "13.93496000" + }, + { + "id": "1997", + "name": "Flattach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.93861000", + "longitude": "13.13444000" + }, + { + "id": "2015", + "name": "Frauenstein", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81417000", + "longitude": "14.29417000" + }, + { + "id": "2021", + "name": "Fresach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.71556000", + "longitude": "13.69083000" + }, + { + "id": "2022", + "name": "Fresen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70516000", + "longitude": "14.04513000" + }, + { + "id": "2024", + "name": "Friesach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.95528000", + "longitude": "14.40583000" + }, + { + "id": "2043", + "name": "Gailitz", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.56083000", + "longitude": "13.70444000" + }, + { + "id": "2046", + "name": "Gallizien", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.55000000", + "longitude": "14.51667000" + }, + { + "id": "2083", + "name": "Glanegg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72259000", + "longitude": "14.19893000" + }, + { + "id": "2091", + "name": "Glödnitz", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87398000", + "longitude": "14.11915000" + }, + { + "id": "2088", + "name": "Globasnitz", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.55694000", + "longitude": "14.70278000" + }, + { + "id": "2093", + "name": "Gmünd", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.90722000", + "longitude": "13.52944000" + }, + { + "id": "2099", + "name": "Gnesau", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.77544000", + "longitude": "13.96251000" + }, + { + "id": "2113", + "name": "Grafenstein", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61393000", + "longitude": "14.46719000" + }, + { + "id": "2124", + "name": "Greifenburg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75027000", + "longitude": "13.17982000" + }, + { + "id": "2130", + "name": "Gries", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83160000", + "longitude": "14.85103000" + }, + { + "id": "2135", + "name": "Griffen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70444000", + "longitude": "14.73278000" + }, + { + "id": "2155", + "name": "Großkirchheim", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.97270000", + "longitude": "12.89589000" + }, + { + "id": "2178", + "name": "Gurk", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87389000", + "longitude": "14.29167000" + }, + { + "id": "2182", + "name": "Guttaring", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.88536000", + "longitude": "14.51071000" + }, + { + "id": "2344", + "name": "Hörtendorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.63333000", + "longitude": "14.40000000" + }, + { + "id": "2348", + "name": "Hüttenberg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94139000", + "longitude": "14.55000000" + }, + { + "id": "2258", + "name": "Heiligenblut", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03979000", + "longitude": "12.84345000" + }, + { + "id": "2271", + "name": "Hermagor", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.62722000", + "longitude": "13.36722000" + }, + { + "id": "2282", + "name": "Himmelberg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75667000", + "longitude": "14.03056000" + }, + { + "id": "2319", + "name": "Hohenthurn", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.55774000", + "longitude": "13.66038000" + }, + { + "id": "2367", + "name": "Irschen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75694000", + "longitude": "13.02528000" + }, + { + "id": "2402", + "name": "Kappel am Krappfeld", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83861000", + "longitude": "14.48639000" + }, + { + "id": "2514", + "name": "Kötschach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68167000", + "longitude": "13.00694000" + }, + { + "id": "2515", + "name": "Köttmannsdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.56139000", + "longitude": "14.23389000" + }, + { + "id": "2516", + "name": "Kühnsdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.62194000", + "longitude": "14.63639000" + }, + { + "id": "2420", + "name": "Keutschach am See", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.59306000", + "longitude": "14.18889000" + }, + { + "id": "2424", + "name": "Kirchbach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.64160000", + "longitude": "13.18454000" + }, + { + "id": "2446", + "name": "Klagenfurt am Wörthersee", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.63333000", + "longitude": "14.30000000" + }, + { + "id": "2449", + "name": "Klein Sankt Paul", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83611000", + "longitude": "14.54139000" + }, + { + "id": "2453", + "name": "Kleinedling", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81417000", + "longitude": "14.82778000" + }, + { + "id": "2500", + "name": "Krumpendorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.63333000", + "longitude": "14.21667000" + }, + { + "id": "2533", + "name": "Landskron", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61667000", + "longitude": "13.88333000" + }, + { + "id": "2553", + "name": "Launsdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.77056000", + "longitude": "14.45194000" + }, + { + "id": "2556", + "name": "Lavamünd", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.64019000", + "longitude": "14.94733000" + }, + { + "id": "2561", + "name": "Ledenitzen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.56639000", + "longitude": "13.96139000" + }, + { + "id": "2574", + "name": "Lendorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83528000", + "longitude": "13.43028000" + }, + { + "id": "2594", + "name": "Liebenfels", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.73778000", + "longitude": "14.28667000" + }, + { + "id": "2601", + "name": "Lind", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.62244000", + "longitude": "13.84715000" + }, + { + "id": "2618", + "name": "Ludmannsdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.54139000", + "longitude": "14.13425000" + }, + { + "id": "2646", + "name": "Maria Rain", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.55389000", + "longitude": "14.29556000" + }, + { + "id": "2647", + "name": "Maria Saal", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68083000", + "longitude": "14.34861000" + }, + { + "id": "2650", + "name": "Maria Wörth", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61639000", + "longitude": "14.16306000" + }, + { + "id": "2678", + "name": "Mautbrücken", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72037000", + "longitude": "14.19399000" + }, + { + "id": "2742", + "name": "Mölbling", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85000000", + "longitude": "14.43333000" + }, + { + "id": "2743", + "name": "Möllbrücke", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83639000", + "longitude": "13.37278000" + }, + { + "id": "2749", + "name": "Mörtschach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.92389000", + "longitude": "12.91778000" + }, + { + "id": "2755", + "name": "Mühldorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86028000", + "longitude": "13.35361000" + }, + { + "id": "2692", + "name": "Metnitz", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.98056000", + "longitude": "14.21667000" + }, + { + "id": "2696", + "name": "Micheldorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.91667000", + "longitude": "14.41667000" + }, + { + "id": "2702", + "name": "Millstatt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80417000", + "longitude": "13.58056000" + }, + { + "id": "2726", + "name": "Moosburg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.65750000", + "longitude": "14.17472000" + }, + { + "id": "2782", + "name": "Neu-Feffernitz", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68772000", + "longitude": "13.67914000" + }, + { + "id": "2794", + "name": "Neuhaus", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.63333000", + "longitude": "14.88333000" + }, + { + "id": "2823", + "name": "Niederdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61667000", + "longitude": "14.40000000" + }, + { + "id": "2849", + "name": "Oberdrauburg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.74306000", + "longitude": "12.97028000" + }, + { + "id": "2879", + "name": "Obervellach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.93667000", + "longitude": "13.20417000" + }, + { + "id": "2906", + "name": "Ossiach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.67435000", + "longitude": "13.98358000" + }, + { + "id": "2928", + "name": "Paternion", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.71417000", + "longitude": "13.63611000" + }, + { + "id": "3108", + "name": "Pörtschach am Wörthersee", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.63639000", + "longitude": "14.14639000" + }, + { + "id": "2986", + "name": "Poggersdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.65000000", + "longitude": "14.45000000" + }, + { + "id": "2998", + "name": "Politischer Bezirk Feldkirchen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72127000", + "longitude": "14.09683000" + }, + { + "id": "3008", + "name": "Politischer Bezirk Hermagor", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.63137000", + "longitude": "13.13246000" + }, + { + "id": "3016", + "name": "Politischer Bezirk Klagenfurt Land", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.56722000", + "longitude": "14.29295000" + }, + { + "id": "3044", + "name": "Politischer Bezirk Sankt Veit an der Glan", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83333000", + "longitude": "14.40000000" + }, + { + "id": "3048", + "name": "Politischer Bezirk Spittal an der Drau", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85000000", + "longitude": "13.33333000" + }, + { + "id": "3057", + "name": "Politischer Bezirk Völkermarkt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.59641000", + "longitude": "14.66664000" + }, + { + "id": "3054", + "name": "Politischer Bezirk Villach Land", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.65308000", + "longitude": "13.77287000" + }, + { + "id": "3061", + "name": "Politischer Bezirk Wolfsberg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83333000", + "longitude": "14.83333000" + }, + { + "id": "3078", + "name": "Preitenegg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94000000", + "longitude": "14.92583000" + }, + { + "id": "3081", + "name": "Priel", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.82758000", + "longitude": "14.83330000" + }, + { + "id": "3123", + "name": "Radenthein", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80056000", + "longitude": "13.71167000" + }, + { + "id": "3130", + "name": "Rain", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.60528000", + "longitude": "14.38611000" + }, + { + "id": "3137", + "name": "Rangersdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86001000", + "longitude": "12.94923000" + }, + { + "id": "3157", + "name": "Reding", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81667000", + "longitude": "14.85000000" + }, + { + "id": "3165", + "name": "Reichenfels", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00718000", + "longitude": "14.74425000" + }, + { + "id": "3178", + "name": "Rennweg am Katschberg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01667000", + "longitude": "13.61667000" + }, + { + "id": "3210", + "name": "Rosegg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.58833000", + "longitude": "14.01718000" + }, + { + "id": "3215", + "name": "Ruden", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.65833000", + "longitude": "14.77639000" + }, + { + "id": "3231", + "name": "Sachsenburg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.82917000", + "longitude": "13.35500000" + }, + { + "id": "3239", + "name": "Sankt Andrä", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76829000", + "longitude": "14.81991000" + }, + { + "id": "3279", + "name": "Sankt Leonhard", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.62528000", + "longitude": "13.85865000" + }, + { + "id": "3288", + "name": "Sankt Magdalen", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61667000", + "longitude": "13.88333000" + }, + { + "id": "3293", + "name": "Sankt Margareten im Rosental", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.54417000", + "longitude": "14.42444000" + }, + { + "id": "3301", + "name": "Sankt Martin", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61667000", + "longitude": "14.28333000" + }, + { + "id": "3319", + "name": "Sankt Paul im Levanttal", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70056000", + "longitude": "14.87556000" + }, + { + "id": "3320", + "name": "Sankt Peter", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.62978000", + "longitude": "14.34016000" + }, + { + "id": "3332", + "name": "Sankt Ruprecht", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.60000000", + "longitude": "14.31667000" + }, + { + "id": "3334", + "name": "Sankt Stefan", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80750000", + "longitude": "14.85167000" + }, + { + "id": "3343", + "name": "Sankt Veit an der Glan", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76806000", + "longitude": "14.36028000" + }, + { + "id": "3369", + "name": "Schiefling am See", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.60444000", + "longitude": "14.09750000" + }, + { + "id": "3374", + "name": "Schleben", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.62039000", + "longitude": "13.93301000" + }, + { + "id": "3428", + "name": "Seebach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61667000", + "longitude": "13.86667000" + }, + { + "id": "3430", + "name": "Seeboden", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81909000", + "longitude": "13.51430000" + }, + { + "id": "3439", + "name": "Seitenberg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.74801000", + "longitude": "14.08825000" + }, + { + "id": "3464", + "name": "Sittersdorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.54444000", + "longitude": "14.60583000" + }, + { + "id": "3479", + "name": "Spittal an der Drau", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80000000", + "longitude": "13.50000000" + }, + { + "id": "3483", + "name": "St. Agathen und Perau", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.60627000", + "longitude": "13.85615000" + }, + { + "id": "3484", + "name": "St. Georgen am Längsee", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.78061000", + "longitude": "14.43033000" + }, + { + "id": "3486", + "name": "St. Veiter Vorstadt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.63170000", + "longitude": "14.30579000" + }, + { + "id": "3496", + "name": "Stall", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.89056000", + "longitude": "13.03694000" + }, + { + "id": "3517", + "name": "Steindorf am Ossiacher See", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.69833000", + "longitude": "14.00917000" + }, + { + "id": "3519", + "name": "Steinfeld", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75812000", + "longitude": "13.24934000" + }, + { + "id": "3526", + "name": "Steuerberg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.78804000", + "longitude": "14.11290000" + }, + { + "id": "3532", + "name": "Stockenboi", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72611000", + "longitude": "13.52306000" + }, + { + "id": "3548", + "name": "Straßburg-Stadt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.89444000", + "longitude": "14.32861000" + }, + { + "id": "3618", + "name": "Trebesing", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.88639000", + "longitude": "13.51028000" + }, + { + "id": "3620", + "name": "Treibach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86667000", + "longitude": "14.46667000" + }, + { + "id": "3649", + "name": "Untere Fellach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.62504000", + "longitude": "13.82681000" + }, + { + "id": "3705", + "name": "Völkendorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.60806000", + "longitude": "13.83153000" + }, + { + "id": "3706", + "name": "Völkermarkt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.66222000", + "longitude": "14.63444000" + }, + { + "id": "3707", + "name": "Völkermarkter Vorstadt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.62418000", + "longitude": "14.32081000" + }, + { + "id": "3675", + "name": "Velden am Wörthersee", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61301000", + "longitude": "14.04130000" + }, + { + "id": "3684", + "name": "Viktring", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.59194000", + "longitude": "14.26917000" + }, + { + "id": "3685", + "name": "Viktringer Vorstadt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61773000", + "longitude": "14.30931000" + }, + { + "id": "3686", + "name": "Villach", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61028000", + "longitude": "13.85583000" + }, + { + "id": "3687", + "name": "Villach Stadt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.60900000", + "longitude": "13.85136000" + }, + { + "id": "3688", + "name": "Villach-Innere Stadt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61275000", + "longitude": "13.84638000" + }, + { + "id": "3689", + "name": "Villacher Vorstadt", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.62368000", + "longitude": "14.28892000" + }, + { + "id": "3721", + "name": "Waiern", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.73028000", + "longitude": "14.08194000" + }, + { + "id": "3744", + "name": "Warmbad-Judendorf", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.60126000", + "longitude": "13.82241000" + }, + { + "id": "3854", + "name": "Wölfnitz", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.66639000", + "longitude": "14.25806000" + }, + { + "id": "3776", + "name": "Weitensfeld", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.84743000", + "longitude": "14.19213000" + }, + { + "id": "3794", + "name": "Wernberg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.61667000", + "longitude": "13.93333000" + }, + { + "id": "3833", + "name": "Winklern", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87361000", + "longitude": "12.87472000" + }, + { + "id": "3842", + "name": "Wolfsberg", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.84056000", + "longitude": "14.84417000" + }, + { + "id": "3849", + "name": "Wudmath", + "state_id": 2057, + "state_code": "2", + "country_id": 15, + "country_code": "AT", + "latitude": "46.59634000", + "longitude": "13.98067000" + }, + { + "id": "1602", + "name": "Absdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40021000", + "longitude": "15.97874000" + }, + { + "id": "1606", + "name": "Achau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08026000", + "longitude": "16.38611000" + }, + { + "id": "1608", + "name": "Aderklaa", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28333000", + "longitude": "16.53333000" + }, + { + "id": "1614", + "name": "Aggsbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29404000", + "longitude": "15.40382000" + }, + { + "id": "1627", + "name": "Alland", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05829000", + "longitude": "16.07901000" + }, + { + "id": "1628", + "name": "Allentsteig", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.69725000", + "longitude": "15.32756000" + }, + { + "id": "1633", + "name": "Allhartsberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02633000", + "longitude": "14.79009000" + }, + { + "id": "1638", + "name": "Altenburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.64765000", + "longitude": "15.59295000" + }, + { + "id": "1639", + "name": "Altendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.65000000", + "longitude": "16.01667000" + }, + { + "id": "1641", + "name": "Altenmarkt an der Triesting", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01553000", + "longitude": "15.99661000" + }, + { + "id": "1647", + "name": "Altlengbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15355000", + "longitude": "15.92606000" + }, + { + "id": "1649", + "name": "Altlichtenwarth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.64442000", + "longitude": "16.79664000" + }, + { + "id": "1650", + "name": "Altmelon", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46222000", + "longitude": "14.96552000" + }, + { + "id": "1656", + "name": "Amstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.12290000", + "longitude": "14.87206000" + }, + { + "id": "1659", + "name": "Andlersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18333000", + "longitude": "16.66667000" + }, + { + "id": "1666", + "name": "Angern an der March", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.37778000", + "longitude": "16.82806000" + }, + { + "id": "1675", + "name": "Arbesbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.49337000", + "longitude": "14.95308000" + }, + { + "id": "1676", + "name": "Ardagger Stift", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15000000", + "longitude": "14.83333000" + }, + { + "id": "1689", + "name": "Aschbach Markt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07234000", + "longitude": "14.75395000" + }, + { + "id": "1690", + "name": "Aspang Markt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.55000000", + "longitude": "16.08333000" + }, + { + "id": "1691", + "name": "Asparn an der Zaya", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.58333000", + "longitude": "16.50000000" + }, + { + "id": "1692", + "name": "Asperhofen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24583000", + "longitude": "15.92606000" + }, + { + "id": "1699", + "name": "Atzenbrugg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29119000", + "longitude": "15.90614000" + }, + { + "id": "1703", + "name": "Au am Leithaberge", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.92296000", + "longitude": "16.55794000" + }, + { + "id": "1708", + "name": "Auersthal", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.37373000", + "longitude": "16.63596000" + }, + { + "id": "1718", + "name": "Bad Deutsch-Altenburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13425000", + "longitude": "16.90624000" + }, + { + "id": "1719", + "name": "Bad Erlach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.72722000", + "longitude": "16.21444000" + }, + { + "id": "1720", + "name": "Bad Fischau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83137000", + "longitude": "16.16707000" + }, + { + "id": "1731", + "name": "Bad Pirawarth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.45194000", + "longitude": "16.59833000" + }, + { + "id": "1736", + "name": "Bad Schönau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.49473000", + "longitude": "16.23410000" + }, + { + "id": "1738", + "name": "Bad Traunstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43850000", + "longitude": "15.11712000" + }, + { + "id": "1739", + "name": "Bad Vöslau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96533000", + "longitude": "16.21359000" + }, + { + "id": "1742", + "name": "Baden", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00543000", + "longitude": "16.23264000" + }, + { + "id": "1824", + "name": "Bärnkopf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.39046000", + "longitude": "15.00479000" + }, + { + "id": "1825", + "name": "Böheimkirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.19779000", + "longitude": "15.76178000" + }, + { + "id": "1752", + "name": "Behamberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "14.48333000" + }, + { + "id": "1753", + "name": "Berg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10147000", + "longitude": "17.03842000" + }, + { + "id": "1759", + "name": "Bergland", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15595000", + "longitude": "15.18553000" + }, + { + "id": "1761", + "name": "Berndorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.94567000", + "longitude": "16.10973000" + }, + { + "id": "1764", + "name": "Bernhardsthal", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.69158000", + "longitude": "16.86951000" + }, + { + "id": "1768", + "name": "Biberbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03006000", + "longitude": "14.70795000" + }, + { + "id": "1771", + "name": "Biedermannsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08393000", + "longitude": "16.34542000" + }, + { + "id": "1776", + "name": "Bisamberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33333000", + "longitude": "16.35000000" + }, + { + "id": "1778", + "name": "Bischofstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.12222000", + "longitude": "15.46909000" + }, + { + "id": "1782", + "name": "Blindenmarkt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.12749000", + "longitude": "14.98647000" + }, + { + "id": "1786", + "name": "Bockfließ", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36000000", + "longitude": "16.60389000" + }, + { + "id": "1796", + "name": "Breitenau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.73355000", + "longitude": "16.14338000" + }, + { + "id": "1801", + "name": "Breitenfurt bei Wien", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13333000", + "longitude": "16.15000000" + }, + { + "id": "1806", + "name": "Bromberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.66539000", + "longitude": "16.20990000" + }, + { + "id": "1809", + "name": "Bruck an der Leitha", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "16.76667000" + }, + { + "id": "1813", + "name": "Brunn am Gebirge", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10697000", + "longitude": "16.28466000" + }, + { + "id": "1814", + "name": "Brunn an der Schneebergbahn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.82376000", + "longitude": "16.15934000" + }, + { + "id": "1815", + "name": "Brunn an der Wild", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.69425000", + "longitude": "15.52008000" + }, + { + "id": "1818", + "name": "Buchbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69648000", + "longitude": "15.98425000" + }, + { + "id": "1877", + "name": "Dürnkrut", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.47315000", + "longitude": "16.85062000" + }, + { + "id": "1878", + "name": "Dürnstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.39582000", + "longitude": "15.51973000" + }, + { + "id": "1841", + "name": "Deutsch-Wagram", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29972000", + "longitude": "16.56667000" + }, + { + "id": "1855", + "name": "Dobersberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.91510000", + "longitude": "15.32188000" + }, + { + "id": "1864", + "name": "Dorfstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32573000", + "longitude": "14.98218000" + }, + { + "id": "1867", + "name": "Drasenhofen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.75000000", + "longitude": "16.65000000" + }, + { + "id": "1870", + "name": "Drösing", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.53900000", + "longitude": "16.90264000" + }, + { + "id": "1869", + "name": "Droß", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46393000", + "longitude": "15.57561000" + }, + { + "id": "1884", + "name": "Ebenfurth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87738000", + "longitude": "16.36731000" + }, + { + "id": "1887", + "name": "Ebenthal", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43333000", + "longitude": "16.78333000" + }, + { + "id": "1889", + "name": "Ebergassing", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04567000", + "longitude": "16.51709000" + }, + { + "id": "1895", + "name": "Ebreichsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95579000", + "longitude": "16.40705000" + }, + { + "id": "1897", + "name": "Echsenbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.71667000", + "longitude": "15.21667000" + }, + { + "id": "1898", + "name": "Eckartsau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14507000", + "longitude": "16.79737000" + }, + { + "id": "1904", + "name": "Edlitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.59797000", + "longitude": "16.14052000" + }, + { + "id": "1909", + "name": "Eggenburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.63892000", + "longitude": "15.81903000" + }, + { + "id": "1910", + "name": "Eggendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85809000", + "longitude": "16.32182000" + }, + { + "id": "1911", + "name": "Eggern", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.90829000", + "longitude": "15.14877000" + }, + { + "id": "1920", + "name": "Eichgraben", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.17204000", + "longitude": "15.98391000" + }, + { + "id": "1927", + "name": "Eisgarn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.91675000", + "longitude": "15.10320000" + }, + { + "id": "1935", + "name": "Emmersdorf an der Donau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24140000", + "longitude": "15.33721000" + }, + { + "id": "1938", + "name": "Engelhartstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18160000", + "longitude": "16.88367000" + }, + { + "id": "1941", + "name": "Ennsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21181000", + "longitude": "14.50290000" + }, + { + "id": "1942", + "name": "Enzenreith", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.66839000", + "longitude": "15.95249000" + }, + { + "id": "1943", + "name": "Enzersdorf an der Fischa", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08502000", + "longitude": "16.60832000" + }, + { + "id": "1944", + "name": "Enzersfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36338000", + "longitude": "16.42387000" + }, + { + "id": "1947", + "name": "Erlauf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18333000", + "longitude": "15.18333000" + }, + { + "id": "1948", + "name": "Ernstbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.53333000", + "longitude": "16.35000000" + }, + { + "id": "1949", + "name": "Ernsthofen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.12915000", + "longitude": "14.48058000" + }, + { + "id": "1950", + "name": "Erpersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34210000", + "longitude": "15.91747000" + }, + { + "id": "1952", + "name": "Ertl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97704000", + "longitude": "14.63134000" + }, + { + "id": "1954", + "name": "Eschenau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04825000", + "longitude": "15.56694000" + }, + { + "id": "1956", + "name": "Euratsfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08181000", + "longitude": "14.93154000" + }, + { + "id": "1960", + "name": "Falkenstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.71667000", + "longitude": "16.58333000" + }, + { + "id": "1961", + "name": "Fallbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.65000000", + "longitude": "16.41667000" + }, + { + "id": "1965", + "name": "Feistritz am Wechsel", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60000000", + "longitude": "16.05000000" + }, + { + "id": "1977", + "name": "Felixdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.88159000", + "longitude": "16.24208000" + }, + { + "id": "1978", + "name": "Fels am Wagram", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43333000", + "longitude": "15.81667000" + }, + { + "id": "1983", + "name": "Ferschnitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09419000", + "longitude": "14.98454000" + }, + { + "id": "1990", + "name": "Fischamend-Markt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11667000", + "longitude": "16.60000000" + }, + { + "id": "2009", + "name": "Frankenfels", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98234000", + "longitude": "15.32593000" + }, + { + "id": "2027", + "name": "Frohsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.73333000", + "longitude": "16.25000000" + }, + { + "id": "2029", + "name": "Furth an der Triesting", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97326000", + "longitude": "15.97326000" + }, + { + "id": "2030", + "name": "Furth bei Göttweig", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.37385000", + "longitude": "15.61408000" + }, + { + "id": "2038", + "name": "Gaaden", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05364000", + "longitude": "16.20003000" + }, + { + "id": "2041", + "name": "Gablitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22856000", + "longitude": "16.15437000" + }, + { + "id": "2044", + "name": "Gainfarn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96280000", + "longitude": "16.19368000" + }, + { + "id": "2052", + "name": "Gaming", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.92900000", + "longitude": "15.08818000" + }, + { + "id": "2058", + "name": "Gars am Kamp", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.58899000", + "longitude": "15.65363000" + }, + { + "id": "2063", + "name": "Gastern", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.89446000", + "longitude": "15.22027000" + }, + { + "id": "2065", + "name": "Gaubitsch", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.65000000", + "longitude": "16.38333000" + }, + { + "id": "2067", + "name": "Gaweinstal", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.48003000", + "longitude": "16.58790000" + }, + { + "id": "2183", + "name": "Gänserndorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33925000", + "longitude": "16.72016000" + }, + { + "id": "2185", + "name": "Göllersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.49357000", + "longitude": "16.11943000" + }, + { + "id": "2186", + "name": "Göpfritz an der Wild", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.72497000", + "longitude": "15.40236000" + }, + { + "id": "2191", + "name": "Göstling an der Ybbs", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80664000", + "longitude": "14.93797000" + }, + { + "id": "2193", + "name": "Götzendorf an der Leitha", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "16.58333000" + }, + { + "id": "2196", + "name": "Günselsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.94395000", + "longitude": "16.26062000" + }, + { + "id": "2069", + "name": "Gedersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43319000", + "longitude": "15.68865000" + }, + { + "id": "2073", + "name": "Geras", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.79725000", + "longitude": "15.67268000" + }, + { + "id": "2074", + "name": "Gerasdorf bei Wien", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29447000", + "longitude": "16.46765000" + }, + { + "id": "2075", + "name": "Gerersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20088000", + "longitude": "15.55613000" + }, + { + "id": "2078", + "name": "Gerolding", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25000000", + "longitude": "15.41667000" + }, + { + "id": "2080", + "name": "Gföhl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.51667000", + "longitude": "15.48333000" + }, + { + "id": "2081", + "name": "Gießhübl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09780000", + "longitude": "16.23479000" + }, + { + "id": "2087", + "name": "Glinzendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24605000", + "longitude": "16.64060000" + }, + { + "id": "2089", + "name": "Gloggnitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.67487000", + "longitude": "15.93893000" + }, + { + "id": "2094", + "name": "Gmünd", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.76830000", + "longitude": "14.98080000" + }, + { + "id": "2095", + "name": "Gnadendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.61667000", + "longitude": "16.40000000" + }, + { + "id": "2098", + "name": "Gneixendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43751000", + "longitude": "15.61810000" + }, + { + "id": "2110", + "name": "Grafenegg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43040000", + "longitude": "15.74907000" + }, + { + "id": "2112", + "name": "Grafenschlag", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.50000000", + "longitude": "15.16667000" + }, + { + "id": "2114", + "name": "Grafenwörth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40790000", + "longitude": "15.77826000" + }, + { + "id": "2118", + "name": "Gramatneusiedl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03040000", + "longitude": "16.48936000" + }, + { + "id": "2168", + "name": "Grünbach am Schneeberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.79747000", + "longitude": "15.98785000" + }, + { + "id": "2126", + "name": "Greinsfurth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10846000", + "longitude": "14.84390000" + }, + { + "id": "2129", + "name": "Gresten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98521000", + "longitude": "15.02552000" + }, + { + "id": "2136", + "name": "Grimmenstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.61635000", + "longitude": "16.12724000" + }, + { + "id": "2146", + "name": "Groß-Engersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35873000", + "longitude": "16.56610000" + }, + { + "id": "2147", + "name": "Groß-Enzersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20278000", + "longitude": "16.55083000" + }, + { + "id": "2148", + "name": "Groß-Gerungs", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.57422000", + "longitude": "14.95789000" + }, + { + "id": "2149", + "name": "Groß-Schweinbarth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.41472000", + "longitude": "16.63194000" + }, + { + "id": "2150", + "name": "Groß-Siegharts", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.79180000", + "longitude": "15.40429000" + }, + { + "id": "2152", + "name": "Großebersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36405000", + "longitude": "16.47076000" + }, + { + "id": "2153", + "name": "Großharras", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.66389000", + "longitude": "16.24556000" + }, + { + "id": "2154", + "name": "Großhofen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25834000", + "longitude": "16.61940000" + }, + { + "id": "2157", + "name": "Großkrut", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.64389000", + "longitude": "16.72361000" + }, + { + "id": "2159", + "name": "Großmugl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.49917000", + "longitude": "16.23056000" + }, + { + "id": "2160", + "name": "Großriedenthal", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.48333000", + "longitude": "15.86667000" + }, + { + "id": "2161", + "name": "Großrußbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.47412000", + "longitude": "16.41649000" + }, + { + "id": "2163", + "name": "Großweikersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.47123000", + "longitude": "15.98251000" + }, + { + "id": "2172", + "name": "Gugging", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.31385000", + "longitude": "16.24852000" + }, + { + "id": "2173", + "name": "Gumpoldskirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04538000", + "longitude": "16.27710000" + }, + { + "id": "2176", + "name": "Guntersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.65000000", + "longitude": "16.05000000" + }, + { + "id": "2177", + "name": "Guntramsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04687000", + "longitude": "16.31384000" + }, + { + "id": "2180", + "name": "Gutenbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36520000", + "longitude": "15.11899000" + }, + { + "id": "2181", + "name": "Gutenstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87600000", + "longitude": "15.88881000" + }, + { + "id": "2200", + "name": "Haag", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11362000", + "longitude": "14.56753000" + }, + { + "id": "2204", + "name": "Hadersdorf am Kamp", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.45000000", + "longitude": "15.71667000" + }, + { + "id": "2205", + "name": "Hadres", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.70965000", + "longitude": "16.13038000" + }, + { + "id": "2207", + "name": "Hafnerbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21667000", + "longitude": "15.48333000" + }, + { + "id": "2209", + "name": "Hagenbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33333000", + "longitude": "16.40000000" + }, + { + "id": "2213", + "name": "Haidershofen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07579000", + "longitude": "14.46131000" + }, + { + "id": "2216", + "name": "Hainburg an der Donau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14627000", + "longitude": "16.94504000" + }, + { + "id": "2218", + "name": "Hainfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03390000", + "longitude": "15.77414000" + }, + { + "id": "2230", + "name": "Hardegg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.85000000", + "longitude": "15.85000000" + }, + { + "id": "2231", + "name": "Haringsee", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.19270000", + "longitude": "16.78741000" + }, + { + "id": "2232", + "name": "Harland", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16162000", + "longitude": "15.63835000" + }, + { + "id": "2233", + "name": "Harmannsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.39724000", + "longitude": "16.37220000" + }, + { + "id": "2235", + "name": "Hart", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15320000", + "longitude": "15.61569000" + }, + { + "id": "2247", + "name": "Haugschlag", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.98333000", + "longitude": "15.05000000" + }, + { + "id": "2248", + "name": "Haugsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.70762000", + "longitude": "16.07656000" + }, + { + "id": "2249", + "name": "Haunoldstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20000000", + "longitude": "15.45000000" + }, + { + "id": "2252", + "name": "Hausbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.62602000", + "longitude": "16.82844000" + }, + { + "id": "2253", + "name": "Hauskirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.60000000", + "longitude": "16.76667000" + }, + { + "id": "2254", + "name": "Hausleiten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.38333000", + "longitude": "16.10000000" + }, + { + "id": "2256", + "name": "Hausmening", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07074000", + "longitude": "14.81438000" + }, + { + "id": "2339", + "name": "Höflein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06667000", + "longitude": "16.78333000" + }, + { + "id": "2340", + "name": "Höfling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05444000", + "longitude": "15.03672000" + }, + { + "id": "2346", + "name": "Hürm", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15601000", + "longitude": "15.41262000" + }, + { + "id": "2257", + "name": "Heidenreichstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.86667000", + "longitude": "15.11667000" + }, + { + "id": "2260", + "name": "Heiligeneich", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29964000", + "longitude": "15.89413000" + }, + { + "id": "2261", + "name": "Heiligenkreuz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05559000", + "longitude": "16.12493000" + }, + { + "id": "2270", + "name": "Hennersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11173000", + "longitude": "16.36311000" + }, + { + "id": "2273", + "name": "Hernstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89465000", + "longitude": "16.10561000" + }, + { + "id": "2274", + "name": "Herrnbaumgarten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.69606000", + "longitude": "16.68283000" + }, + { + "id": "2275", + "name": "Herzogenburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28137000", + "longitude": "15.69431000" + }, + { + "id": "2281", + "name": "Himberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08333000", + "longitude": "16.43333000" + }, + { + "id": "2285", + "name": "Hinterbrühl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08611000", + "longitude": "16.24809000" + }, + { + "id": "2287", + "name": "Hinterleiten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16513000", + "longitude": "15.96654000" + }, + { + "id": "2292", + "name": "Hirschbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.74329000", + "longitude": "15.12521000" + }, + { + "id": "2294", + "name": "Hirtenberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93095000", + "longitude": "16.17908000" + }, + { + "id": "2299", + "name": "Hochleithen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.45317000", + "longitude": "16.53090000" + }, + { + "id": "2302", + "name": "Hochwolkersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.66127000", + "longitude": "16.28072000" + }, + { + "id": "2305", + "name": "Hof am Leithaberge", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "16.58333000" + }, + { + "id": "2308", + "name": "Hofamt Priel", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.19581000", + "longitude": "15.07746000" + }, + { + "id": "2310", + "name": "Hofstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09711000", + "longitude": "15.51149000" + }, + { + "id": "2312", + "name": "Hohenau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.60420000", + "longitude": "16.90470000" + }, + { + "id": "2314", + "name": "Hohenberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90679000", + "longitude": "15.61998000" + }, + { + "id": "2315", + "name": "Hoheneich", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.77195000", + "longitude": "15.02857000" + }, + { + "id": "2317", + "name": "Hohenruppersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46439000", + "longitude": "16.65244000" + }, + { + "id": "2321", + "name": "Hollabrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.55000000", + "longitude": "16.08333000" + }, + { + "id": "2323", + "name": "Hollenstein an der Ybbs", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80305000", + "longitude": "14.77312000" + }, + { + "id": "2324", + "name": "Hollenthon", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58938000", + "longitude": "16.26131000" + }, + { + "id": "2331", + "name": "Horn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.66274000", + "longitude": "15.65663000" + }, + { + "id": "2333", + "name": "Hundsheim", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11749000", + "longitude": "16.93581000" + }, + { + "id": "2334", + "name": "Hutten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.17856000", + "longitude": "15.98579000" + }, + { + "id": "2372", + "name": "Jaidhof", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.53333000", + "longitude": "15.48333000" + }, + { + "id": "2374", + "name": "Japons", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.79250000", + "longitude": "15.56831000" + }, + { + "id": "2375", + "name": "Jedenspeigen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.49807000", + "longitude": "16.87225000" + }, + { + "id": "2394", + "name": "Kaltenleutgeben", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11646000", + "longitude": "16.19956000" + }, + { + "id": "2398", + "name": "Kapelln", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25817000", + "longitude": "15.75731000" + }, + { + "id": "2405", + "name": "Karlstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25920000", + "longitude": "15.56544000" + }, + { + "id": "2409", + "name": "Kasten bei Böheimkirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15320000", + "longitude": "15.77946000" + }, + { + "id": "2411", + "name": "Katzelsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.78055000", + "longitude": "16.26985000" + }, + { + "id": "2412", + "name": "Kaumberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02415000", + "longitude": "15.89842000" + }, + { + "id": "2414", + "name": "Kautzen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.93000000", + "longitude": "15.23932000" + }, + { + "id": "2510", + "name": "Königstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30198000", + "longitude": "16.14492000" + }, + { + "id": "2416", + "name": "Kematen an der Ybbs", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02541000", + "longitude": "14.76468000" + }, + { + "id": "2421", + "name": "Kierling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30997000", + "longitude": "16.27616000" + }, + { + "id": "2422", + "name": "Kilb", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10101000", + "longitude": "15.40850000" + }, + { + "id": "2426", + "name": "Kirchberg am Wagram", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43182000", + "longitude": "15.89692000" + }, + { + "id": "2427", + "name": "Kirchberg am Walde", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.72477000", + "longitude": "15.08826000" + }, + { + "id": "2428", + "name": "Kirchberg am Wechsel", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60738000", + "longitude": "15.99103000" + }, + { + "id": "2429", + "name": "Kirchberg an der Pielach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02690000", + "longitude": "15.42875000" + }, + { + "id": "2437", + "name": "Kirchschlag", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.39345000", + "longitude": "15.22285000" + }, + { + "id": "2439", + "name": "Kirchschlag in der Buckligen Welt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50000000", + "longitude": "16.28333000" + }, + { + "id": "2440", + "name": "Kirchstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18333000", + "longitude": "15.81667000" + }, + { + "id": "2441", + "name": "Kirnberg an der Mank", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07246000", + "longitude": "15.32232000" + }, + { + "id": "2448", + "name": "Klausen-Leopoldsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08771000", + "longitude": "16.01686000" + }, + { + "id": "2450", + "name": "Klein-Neusiedl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09379000", + "longitude": "16.60661000" + }, + { + "id": "2451", + "name": "Klein-Pöchlarn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21667000", + "longitude": "15.21667000" + }, + { + "id": "2459", + "name": "Kleinzell", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97993000", + "longitude": "15.73620000" + }, + { + "id": "2462", + "name": "Klosterneuburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30521000", + "longitude": "16.32522000" + }, + { + "id": "2476", + "name": "Korneuburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35000000", + "longitude": "16.33333000" + }, + { + "id": "2477", + "name": "Kottingbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95096000", + "longitude": "16.22715000" + }, + { + "id": "2483", + "name": "Krems an der Donau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40921000", + "longitude": "15.61415000" + }, + { + "id": "2484", + "name": "Krems an der Donau Stadt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.41040000", + "longitude": "15.60574000" + }, + { + "id": "2491", + "name": "Kritzendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32932000", + "longitude": "16.30011000" + }, + { + "id": "2495", + "name": "Krumau am Kamp", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.58879000", + "longitude": "15.44914000" + }, + { + "id": "2497", + "name": "Krumbach Markt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51667000", + "longitude": "16.18333000" + }, + { + "id": "2499", + "name": "Krumnussbaum", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20877000", + "longitude": "15.16212000" + }, + { + "id": "2517", + "name": "Laa an der Thaya", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.71667000", + "longitude": "16.38333000" + }, + { + "id": "2519", + "name": "Laab im Walde", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15486000", + "longitude": "16.17359000" + }, + { + "id": "2525", + "name": "Ladendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.53333000", + "longitude": "16.48333000" + }, + { + "id": "2531", + "name": "Landegg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90000000", + "longitude": "16.40000000" + }, + { + "id": "2535", + "name": "Langau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.83207000", + "longitude": "15.71560000" + }, + { + "id": "2539", + "name": "Langenlebarn-Oberaigen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33023000", + "longitude": "16.11059000" + }, + { + "id": "2540", + "name": "Langenlois", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46667000", + "longitude": "15.66667000" + }, + { + "id": "2541", + "name": "Langenrohr", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30489000", + "longitude": "16.01034000" + }, + { + "id": "2544", + "name": "Langenzersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30432000", + "longitude": "16.36143000" + }, + { + "id": "2546", + "name": "Langschlag", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.57448000", + "longitude": "14.88459000" + }, + { + "id": "2549", + "name": "Lanzendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11056000", + "longitude": "16.44500000" + }, + { + "id": "2550", + "name": "Lanzenkirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.73621000", + "longitude": "16.21985000" + }, + { + "id": "2551", + "name": "Lassee", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22479000", + "longitude": "16.82230000" + }, + { + "id": "2558", + "name": "Laxenburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06833000", + "longitude": "16.35607000" + }, + { + "id": "2563", + "name": "Leiben", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24628000", + "longitude": "15.27460000" + }, + { + "id": "2570", + "name": "Leitzersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.41918000", + "longitude": "16.24513000" + }, + { + "id": "2575", + "name": "Lengenfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.47187000", + "longitude": "15.59870000" + }, + { + "id": "2579", + "name": "Leobendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.38333000", + "longitude": "16.31667000" + }, + { + "id": "2580", + "name": "Leobersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.92796000", + "longitude": "16.21651000" + }, + { + "id": "2584", + "name": "Leopoldsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11557000", + "longitude": "16.39126000" + }, + { + "id": "2585", + "name": "Leopoldsdorf im Marchfelde", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22261000", + "longitude": "16.68858000" + }, + { + "id": "2586", + "name": "Lerchenfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.41234000", + "longitude": "15.63183000" + }, + { + "id": "2590", + "name": "Lichtenegg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60000000", + "longitude": "16.20000000" + }, + { + "id": "2592", + "name": "Lichtenwörth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.82756000", + "longitude": "16.29873000" + }, + { + "id": "2600", + "name": "Lilienfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01312000", + "longitude": "15.59664000" + }, + { + "id": "2605", + "name": "Litschau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.94409000", + "longitude": "15.04483000" + }, + { + "id": "2610", + "name": "Loich", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99578000", + "longitude": "15.40163000" + }, + { + "id": "2613", + "name": "Loosdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20000000", + "longitude": "15.40000000" + }, + { + "id": "2620", + "name": "Lunz am See", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.86120000", + "longitude": "15.02998000" + }, + { + "id": "2626", + "name": "Mailberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.67379000", + "longitude": "16.18132000" + }, + { + "id": "2628", + "name": "Maissau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.57300000", + "longitude": "15.83005000" + }, + { + "id": "2629", + "name": "Mank", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11024000", + "longitude": "15.33915000" + }, + { + "id": "2630", + "name": "Mannersdorf am Leithagebirge", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96667000", + "longitude": "16.60000000" + }, + { + "id": "2633", + "name": "Mannsdorf an der Donau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15200000", + "longitude": "16.66506000" + }, + { + "id": "2634", + "name": "Mannswörth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14547000", + "longitude": "16.51374000" + }, + { + "id": "2635", + "name": "Marbach an der Donau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21667000", + "longitude": "15.15000000" + }, + { + "id": "2636", + "name": "Marchegg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.26217000", + "longitude": "16.91045000" + }, + { + "id": "2638", + "name": "Margarethen am Moos", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03333000", + "longitude": "16.60000000" + }, + { + "id": "2640", + "name": "Maria Ellend", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10000000", + "longitude": "16.68333000" + }, + { + "id": "2641", + "name": "Maria Enzersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10000000", + "longitude": "16.28333000" + }, + { + "id": "2642", + "name": "Maria Laach am Jauerling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30412000", + "longitude": "15.34472000" + }, + { + "id": "2644", + "name": "Maria Lanzendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09923000", + "longitude": "16.41984000" + }, + { + "id": "2649", + "name": "Maria Taferl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22702000", + "longitude": "15.15954000" + }, + { + "id": "2651", + "name": "Maria-Anzbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.19012000", + "longitude": "15.93155000" + }, + { + "id": "2659", + "name": "Markersdorf an der Pielach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18333000", + "longitude": "15.50000000" + }, + { + "id": "2660", + "name": "Markgrafneusiedl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.26667000", + "longitude": "16.63333000" + }, + { + "id": "2663", + "name": "Markt Piesting", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87358000", + "longitude": "16.12510000" + }, + { + "id": "2665", + "name": "Martinsberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.37549000", + "longitude": "15.14997000" + }, + { + "id": "2672", + "name": "Matzen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40000000", + "longitude": "16.70000000" + }, + { + "id": "2673", + "name": "Matzendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89137000", + "longitude": "16.21393000" + }, + { + "id": "2674", + "name": "Mauer bei Amstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09643000", + "longitude": "14.80060000" + }, + { + "id": "2675", + "name": "Mauerbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24514000", + "longitude": "16.16793000" + }, + { + "id": "2679", + "name": "Mautern", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.39319000", + "longitude": "15.57793000" + }, + { + "id": "2740", + "name": "Mödling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08605000", + "longitude": "16.28921000" + }, + { + "id": "2744", + "name": "Möllersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02575000", + "longitude": "16.30508000" + }, + { + "id": "2746", + "name": "Mönichkirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51062000", + "longitude": "16.03425000" + }, + { + "id": "2756", + "name": "Mühldorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.37432000", + "longitude": "15.34672000" + }, + { + "id": "2761", + "name": "Münchendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03333000", + "longitude": "16.38333000" + }, + { + "id": "2688", + "name": "Melk", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22737000", + "longitude": "15.33186000" + }, + { + "id": "2698", + "name": "Michelhausen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29085000", + "longitude": "15.93893000" + }, + { + "id": "2701", + "name": "Miesenbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.84035000", + "longitude": "15.98236000" + }, + { + "id": "2706", + "name": "Mistelbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.57000000", + "longitude": "16.57667000" + }, + { + "id": "2708", + "name": "Mitterbach am Erlaufsee", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.81396000", + "longitude": "15.29537000" + }, + { + "id": "2716", + "name": "Mitterndorf an der Fischa", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99739000", + "longitude": "16.47357000" + }, + { + "id": "2725", + "name": "Moosbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "16.45000000" + }, + { + "id": "2731", + "name": "Muckendorf an der Donau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33183000", + "longitude": "16.15540000" + }, + { + "id": "2732", + "name": "Muggendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.91059000", + "longitude": "15.93533000" + }, + { + "id": "2839", + "name": "Nöchling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22433000", + "longitude": "14.98123000" + }, + { + "id": "2777", + "name": "Neidling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24005000", + "longitude": "15.55591000" + }, + { + "id": "2783", + "name": "Neu-Guntramsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06420000", + "longitude": "16.31573000" + }, + { + "id": "2789", + "name": "Neudorf bei Staatz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.72083000", + "longitude": "16.49139000" + }, + { + "id": "2793", + "name": "Neufurth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07894000", + "longitude": "14.81180000" + }, + { + "id": "2797", + "name": "Neuhofen an der Ybbs", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05795000", + "longitude": "14.85489000" + }, + { + "id": "2803", + "name": "Neulengbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.19745000", + "longitude": "15.90219000" + }, + { + "id": "2805", + "name": "Neumarkt an der Ybbs", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14103000", + "longitude": "15.05758000" + }, + { + "id": "2809", + "name": "Neunkirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.72096000", + "longitude": "16.08107000" + }, + { + "id": "2810", + "name": "Neusiedl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.88769000", + "longitude": "15.96313000" + }, + { + "id": "2812", + "name": "Neusiedl an der Zaya", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.59920000", + "longitude": "16.77990000" + }, + { + "id": "2824", + "name": "Niederhollabrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43333000", + "longitude": "16.30000000" + }, + { + "id": "2825", + "name": "Niederleis", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.55000000", + "longitude": "16.40000000" + }, + { + "id": "2843", + "name": "Ober-Grafendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15040000", + "longitude": "15.54531000" + }, + { + "id": "2854", + "name": "Oberhausen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.17690000", + "longitude": "16.58506000" + }, + { + "id": "2863", + "name": "Oberndorf an der Melk", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06386000", + "longitude": "15.22430000" + }, + { + "id": "2867", + "name": "Oberndorf in der Ebene", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27040000", + "longitude": "15.68985000" + }, + { + "id": "2874", + "name": "Obersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36667000", + "longitude": "16.51667000" + }, + { + "id": "2875", + "name": "Obersiebenbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.26537000", + "longitude": "16.71076000" + }, + { + "id": "2881", + "name": "Oberwagram", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20157000", + "longitude": "15.64917000" + }, + { + "id": "2882", + "name": "Oberwaltersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97567000", + "longitude": "16.32191000" + }, + { + "id": "2886", + "name": "Oberwölbling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.31719000", + "longitude": "15.59166000" + }, + { + "id": "2891", + "name": "Oehling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10000000", + "longitude": "14.80000000" + }, + { + "id": "2894", + "name": "Oeynhausen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98533000", + "longitude": "16.29187000" + }, + { + "id": "2901", + "name": "Opponitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87776000", + "longitude": "14.82283000" + }, + { + "id": "2904", + "name": "Orth an der Donau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14524000", + "longitude": "16.70089000" + }, + { + "id": "2910", + "name": "Ottenschlag", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.42393000", + "longitude": "15.21924000" + }, + { + "id": "2913", + "name": "Ottenthal", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.76100000", + "longitude": "16.57914000" + }, + { + "id": "2914", + "name": "Otterthal", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.61667000", + "longitude": "15.93333000" + }, + { + "id": "2923", + "name": "Parbasdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28333000", + "longitude": "16.60000000" + }, + { + "id": "2931", + "name": "Paudorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35416000", + "longitude": "15.61853000" + }, + { + "id": "2932", + "name": "Payerbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69209000", + "longitude": "15.86340000" + }, + { + "id": "3103", + "name": "Pöchlarn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20000000", + "longitude": "15.20000000" + }, + { + "id": "3104", + "name": "Pöggstall", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.31734000", + "longitude": "15.20405000" + }, + { + "id": "2935", + "name": "Penz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03333000", + "longitude": "14.48333000" + }, + { + "id": "2937", + "name": "Perchtoldsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11935000", + "longitude": "16.26607000" + }, + { + "id": "2940", + "name": "Pernegg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.73333000", + "longitude": "15.61667000" + }, + { + "id": "2942", + "name": "Pernersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.70000000", + "longitude": "16.01667000" + }, + { + "id": "2943", + "name": "Pernitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89759000", + "longitude": "15.96022000" + }, + { + "id": "2944", + "name": "Persenbeug", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18733000", + "longitude": "15.08809000" + }, + { + "id": "2947", + "name": "Petronell-Carnuntum", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11296000", + "longitude": "16.86582000" + }, + { + "id": "2951", + "name": "Petzenkirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14693000", + "longitude": "15.15465000" + }, + { + "id": "2955", + "name": "Pfaffstätten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01737000", + "longitude": "16.26354000" + }, + { + "id": "2970", + "name": "Pillichsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35000000", + "longitude": "16.53333000" + }, + { + "id": "2980", + "name": "Pitten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71667000", + "longitude": "16.18333000" + }, + { + "id": "2987", + "name": "Politischer Bezirk Amstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00000000", + "longitude": "14.76667000" + }, + { + "id": "2988", + "name": "Politischer Bezirk Baden", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97729000", + "longitude": "16.19845000" + }, + { + "id": "2992", + "name": "Politischer Bezirk Bruck an der Leitha", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06781000", + "longitude": "16.77284000" + }, + { + "id": "3004", + "name": "Politischer Bezirk Gänserndorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.39340000", + "longitude": "16.73892000" + }, + { + "id": "3001", + "name": "Politischer Bezirk Gmünd", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.74732000", + "longitude": "14.98166000" + }, + { + "id": "3009", + "name": "Politischer Bezirk Hollabrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.65286000", + "longitude": "15.99701000" + }, + { + "id": "3010", + "name": "Politischer Bezirk Horn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.71341000", + "longitude": "15.68712000" + }, + { + "id": "3017", + "name": "Politischer Bezirk Korneuburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.44343000", + "longitude": "16.24120000" + }, + { + "id": "3018", + "name": "Politischer Bezirk Krems", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46582000", + "longitude": "15.52093000" + }, + { + "id": "3025", + "name": "Politischer Bezirk Lilienfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.91667000", + "longitude": "15.60000000" + }, + { + "id": "3032", + "name": "Politischer Bezirk Mödling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08517000", + "longitude": "16.24118000" + }, + { + "id": "3028", + "name": "Politischer Bezirk Melk", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21314000", + "longitude": "15.24282000" + }, + { + "id": "3029", + "name": "Politischer Bezirk Mistelbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.59436000", + "longitude": "16.54730000" + }, + { + "id": "3033", + "name": "Politischer Bezirk Neunkirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69424000", + "longitude": "15.93783000" + }, + { + "id": "3043", + "name": "Politischer Bezirk Sankt Pölten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16905000", + "longitude": "15.66508000" + }, + { + "id": "3045", + "name": "Politischer Bezirk Scheibbs", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.92316000", + "longitude": "15.10376000" + }, + { + "id": "3052", + "name": "Politischer Bezirk Tulln", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30000000", + "longitude": "16.00000000" + }, + { + "id": "3058", + "name": "Politischer Bezirk Waidhofen an der Thaya", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.85925000", + "longitude": "15.35814000" + }, + { + "id": "3060", + "name": "Politischer Bezirk Wiener Neustadt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83203000", + "longitude": "16.14291000" + }, + { + "id": "3063", + "name": "Politischer Bezirk Zwettl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.57435000", + "longitude": "15.17159000" + }, + { + "id": "3066", + "name": "Pottenbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23333000", + "longitude": "15.70000000" + }, + { + "id": "3067", + "name": "Pottendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90000000", + "longitude": "16.38333000" + }, + { + "id": "3068", + "name": "Pottenstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95820000", + "longitude": "16.09480000" + }, + { + "id": "3069", + "name": "Pottschach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69856000", + "longitude": "16.00725000" + }, + { + "id": "3071", + "name": "Poysdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.66667000", + "longitude": "16.63333000" + }, + { + "id": "3079", + "name": "Prellenkirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07401000", + "longitude": "16.95233000" + }, + { + "id": "3080", + "name": "Pressbaum", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18333000", + "longitude": "16.08333000" + }, + { + "id": "3082", + "name": "Prigglitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70318000", + "longitude": "15.92794000" + }, + { + "id": "3083", + "name": "Prinzersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20000000", + "longitude": "15.51667000" + }, + { + "id": "3085", + "name": "Prottes", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.38680000", + "longitude": "16.73890000" + }, + { + "id": "3090", + "name": "Puchberg am Schneeberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.78709000", + "longitude": "15.91352000" + }, + { + "id": "3092", + "name": "Puchenstuben", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.92819000", + "longitude": "15.28748000" + }, + { + "id": "3096", + "name": "Pulkau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.70484000", + "longitude": "15.86031000" + }, + { + "id": "3099", + "name": "Purgstall", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05841000", + "longitude": "15.13478000" + }, + { + "id": "3100", + "name": "Purkersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20769000", + "longitude": "16.17539000" + }, + { + "id": "3102", + "name": "Pyhra", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15910000", + "longitude": "15.68624000" + }, + { + "id": "3116", + "name": "Raabs an der Thaya", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.85000000", + "longitude": "15.50000000" + }, + { + "id": "3117", + "name": "Raach am Hochgebirge", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.63333000", + "longitude": "15.93333000" + }, + { + "id": "3118", + "name": "Raasdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24657000", + "longitude": "16.56532000" + }, + { + "id": "3119", + "name": "Rabensburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.65000000", + "longitude": "16.90000000" + }, + { + "id": "3120", + "name": "Rabenstein an der Pielach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06535000", + "longitude": "15.46772000" + }, + { + "id": "3133", + "name": "Ramsau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00313000", + "longitude": "15.80332000" + }, + { + "id": "3136", + "name": "Randegg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01198000", + "longitude": "14.97334000" + }, + { + "id": "3141", + "name": "Rannersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.12772000", + "longitude": "16.46379000" + }, + { + "id": "3144", + "name": "Rappottenstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.52161000", + "longitude": "15.07925000" + }, + { + "id": "3146", + "name": "Rastenfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.57348000", + "longitude": "15.33176000" + }, + { + "id": "3151", + "name": "Ratzersdorf an der Traisen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22639000", + "longitude": "15.66629000" + }, + { + "id": "3152", + "name": "Rauchenwarth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08330000", + "longitude": "16.52794000" + }, + { + "id": "3154", + "name": "Ravelsbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.55000000", + "longitude": "15.85000000" + }, + { + "id": "3155", + "name": "Raxendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34108000", + "longitude": "15.27666000" + }, + { + "id": "3223", + "name": "Röhrenbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.65000000", + "longitude": "15.50000000" + }, + { + "id": "3225", + "name": "Röschitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.64312000", + "longitude": "15.81774000" + }, + { + "id": "3161", + "name": "Rehberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43114000", + "longitude": "15.58702000" + }, + { + "id": "3162", + "name": "Reichenau an der Rax", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69509000", + "longitude": "15.84572000" + }, + { + "id": "3170", + "name": "Reingers", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.96667000", + "longitude": "15.13333000" + }, + { + "id": "3171", + "name": "Reinsberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98567000", + "longitude": "15.07067000" + }, + { + "id": "3172", + "name": "Reisenberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99406000", + "longitude": "16.52018000" + }, + { + "id": "3181", + "name": "Retz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.75712000", + "longitude": "15.95485000" + }, + { + "id": "3199", + "name": "Rohr im Gebirge", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89471000", + "longitude": "15.73603000" + }, + { + "id": "3201", + "name": "Rohrau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06667000", + "longitude": "16.85000000" + }, + { + "id": "3202", + "name": "Rohrbach an der Gölsen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04699000", + "longitude": "15.74169000" + }, + { + "id": "3207", + "name": "Rohrendorf bei Krems", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.41935000", + "longitude": "15.65772000" + }, + { + "id": "3211", + "name": "Rosenau am Sonntagberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00778000", + "longitude": "14.73927000" + }, + { + "id": "3219", + "name": "Ruprechtshofen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13648000", + "longitude": "15.27675000" + }, + { + "id": "3233", + "name": "Sallingberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46667000", + "longitude": "15.23333000" + }, + { + "id": "3238", + "name": "Sankt Aegyd am Neuwalde", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85383000", + "longitude": "15.56969000" + }, + { + "id": "3242", + "name": "Sankt Andrä vor dem Hagenthale", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32202000", + "longitude": "16.20724000" + }, + { + "id": "3247", + "name": "Sankt Corona am Wechsel", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58333000", + "longitude": "16.00000000" + }, + { + "id": "3254", + "name": "Sankt Georgen am Ybbsfelde", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.12892000", + "longitude": "14.95364000" + }, + { + "id": "3256", + "name": "Sankt Georgen an der Leys", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03149000", + "longitude": "15.22722000" + }, + { + "id": "3281", + "name": "Sankt Leonhard am Forst", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14232000", + "longitude": "15.28464000" + }, + { + "id": "3282", + "name": "Sankt Leonhard am Hornerwald", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.60000000", + "longitude": "15.53333000" + }, + { + "id": "3295", + "name": "Sankt Margarethen an der Sierning", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15910000", + "longitude": "15.49055000" + }, + { + "id": "3304", + "name": "Sankt Martin am Ybbsfelde", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16425000", + "longitude": "15.02076000" + }, + { + "id": "3318", + "name": "Sankt Pantaleon", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21058000", + "longitude": "14.56804000" + }, + { + "id": "3329", + "name": "Sankt Pölten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20000000", + "longitude": "15.63333000" + }, + { + "id": "3330", + "name": "Sankt Pölten Stadt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20000000", + "longitude": "15.61667000" + }, + { + "id": "3326", + "name": "Sankt Peter in der Au Markt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04400000", + "longitude": "14.62182000" + }, + { + "id": "3341", + "name": "Sankt Valentin", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16667000", + "longitude": "14.51667000" + }, + { + "id": "3344", + "name": "Sankt Veit an der Gölsen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04320000", + "longitude": "15.66942000" + }, + { + "id": "3359", + "name": "Scharndorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09399000", + "longitude": "16.79883000" + }, + { + "id": "3416", + "name": "Schönau an der Triesting", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93452000", + "longitude": "16.25376000" + }, + { + "id": "3417", + "name": "Schönbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.45000000", + "longitude": "15.03333000" + }, + { + "id": "3421", + "name": "Schönkirchen-Reyersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35477000", + "longitude": "16.69115000" + }, + { + "id": "3366", + "name": "Scheibbs", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00474000", + "longitude": "15.16817000" + }, + { + "id": "3376", + "name": "Schleinbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.41667000", + "longitude": "16.46667000" + }, + { + "id": "3384", + "name": "Schottwien", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.65683000", + "longitude": "15.87250000" + }, + { + "id": "3385", + "name": "Schrattenbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.77902000", + "longitude": "15.99060000" + }, + { + "id": "3386", + "name": "Schrattenberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.72359000", + "longitude": "16.72201000" + }, + { + "id": "3387", + "name": "Schrattenthal", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.70000000", + "longitude": "15.90000000" + }, + { + "id": "3388", + "name": "Schrems", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.78333000", + "longitude": "15.06667000" + }, + { + "id": "3392", + "name": "Schwadorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06936000", + "longitude": "16.57957000" + }, + { + "id": "3397", + "name": "Schwarzau am Steinfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.73183000", + "longitude": "16.17094000" + }, + { + "id": "3398", + "name": "Schwarzau im Gebirge", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.81223000", + "longitude": "15.70581000" + }, + { + "id": "3400", + "name": "Schwarzenau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.74436000", + "longitude": "15.25838000" + }, + { + "id": "3401", + "name": "Schwarzenbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.63547000", + "longitude": "16.35109000" + }, + { + "id": "3402", + "name": "Schwarzenbach an der Pielach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93333000", + "longitude": "15.38333000" + }, + { + "id": "3405", + "name": "Schwechat", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13333000", + "longitude": "16.46667000" + }, + { + "id": "3406", + "name": "Schweiggers", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.66667000", + "longitude": "15.06667000" + }, + { + "id": "3429", + "name": "Seebenstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69936000", + "longitude": "16.14484000" + }, + { + "id": "3437", + "name": "Seibersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95858000", + "longitude": "16.51842000" + }, + { + "id": "3440", + "name": "Seitenstetten Markt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03333000", + "longitude": "14.65000000" + }, + { + "id": "3443", + "name": "Semmering", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.63347000", + "longitude": "15.82993000" + }, + { + "id": "3445", + "name": "Senftenberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43333000", + "longitude": "15.55000000" + }, + { + "id": "3447", + "name": "Seyring", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33333000", + "longitude": "16.48333000" + }, + { + "id": "3452", + "name": "Sieghartskirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25531000", + "longitude": "16.01223000" + }, + { + "id": "3453", + "name": "Sierndorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43024000", + "longitude": "16.16658000" + }, + { + "id": "3457", + "name": "Sigmundsherberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.68333000", + "longitude": "15.75000000" + }, + { + "id": "3465", + "name": "Sitzendorf an der Schmida", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.59841000", + "longitude": "15.94254000" + }, + { + "id": "3467", + "name": "Sollenau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89834000", + "longitude": "16.24833000" + }, + { + "id": "3468", + "name": "Sommerein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98333000", + "longitude": "16.65000000" + }, + { + "id": "3470", + "name": "Sonntagberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99561000", + "longitude": "14.76065000" + }, + { + "id": "3471", + "name": "Sooss", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98464000", + "longitude": "16.21737000" + }, + { + "id": "3472", + "name": "Spannberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46393000", + "longitude": "16.73647000" + }, + { + "id": "3476", + "name": "Spillern", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.38333000", + "longitude": "16.25000000" + }, + { + "id": "3480", + "name": "Spitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36560000", + "longitude": "15.41416000" + }, + { + "id": "3481", + "name": "Spratzern", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.17044000", + "longitude": "15.61844000" + }, + { + "id": "3487", + "name": "Staatz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.67617000", + "longitude": "16.48726000" + }, + { + "id": "3506", + "name": "Stattersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18333000", + "longitude": "15.63333000" + }, + { + "id": "3507", + "name": "Statzendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30752000", + "longitude": "15.64127000" + }, + { + "id": "3560", + "name": "Stössing", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.12267000", + "longitude": "15.81379000" + }, + { + "id": "3511", + "name": "Stein an der Donau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40163000", + "longitude": "15.58102000" + }, + { + "id": "3512", + "name": "Steinabrückl", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87053000", + "longitude": "16.20277000" + }, + { + "id": "3514", + "name": "Steinakirchen am Forst", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06965000", + "longitude": "15.04801000" + }, + { + "id": "3523", + "name": "Stephanshart", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15000000", + "longitude": "14.81667000" + }, + { + "id": "3524", + "name": "Stetteldorf am Wagram", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40815000", + "longitude": "16.01862000" + }, + { + "id": "3525", + "name": "Stetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36667000", + "longitude": "16.38333000" + }, + { + "id": "3533", + "name": "Stockerau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.38333000", + "longitude": "16.21667000" + }, + { + "id": "3534", + "name": "Stollhofen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35226000", + "longitude": "15.75963000" + }, + { + "id": "3539", + "name": "Strass", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46667000", + "longitude": "15.73333000" + }, + { + "id": "3544", + "name": "Strasshof an der Nordbahn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.31667000", + "longitude": "16.66667000" + }, + { + "id": "3546", + "name": "Stratzing", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.45000000", + "longitude": "15.60000000" + }, + { + "id": "3551", + "name": "Strengberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14685000", + "longitude": "14.65147000" + }, + { + "id": "3554", + "name": "Stronsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.65157000", + "longitude": "16.29890000" + }, + { + "id": "3573", + "name": "Tattendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "16.30000000" + }, + { + "id": "3638", + "name": "Türnitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93095000", + "longitude": "15.49295000" + }, + { + "id": "3579", + "name": "Teesdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "16.28333000" + }, + { + "id": "3584", + "name": "Ternitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71565000", + "longitude": "16.03575000" + }, + { + "id": "3590", + "name": "Thaya", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.85489000", + "longitude": "15.28902000" + }, + { + "id": "3591", + "name": "Theresienfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85000000", + "longitude": "16.23333000" + }, + { + "id": "3592", + "name": "Thomasberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56667000", + "longitude": "16.13333000" + }, + { + "id": "3598", + "name": "Tiefenbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53540000", + "longitude": "16.21346000" + }, + { + "id": "3609", + "name": "Traisen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03333000", + "longitude": "15.60000000" + }, + { + "id": "3610", + "name": "Traiskirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01485000", + "longitude": "16.29324000" + }, + { + "id": "3611", + "name": "Traismauer", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35000000", + "longitude": "15.73333000" + }, + { + "id": "3612", + "name": "Trattenbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60000000", + "longitude": "15.86667000" + }, + { + "id": "3616", + "name": "Trautmannsdorf an der Leitha", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02357000", + "longitude": "16.63266000" + }, + { + "id": "3621", + "name": "Tribuswinkel", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00623000", + "longitude": "16.27075000" + }, + { + "id": "3627", + "name": "Trumau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99348000", + "longitude": "16.34268000" + }, + { + "id": "3631", + "name": "Tulbing", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29336000", + "longitude": "16.12226000" + }, + { + "id": "3633", + "name": "Tulln", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32829000", + "longitude": "16.05858000" + }, + { + "id": "3634", + "name": "Tullnerbach-Lawies", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18912000", + "longitude": "16.09117000" + }, + { + "id": "3642", + "name": "Ulrichskirchen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40000000", + "longitude": "16.48333000" + }, + { + "id": "3660", + "name": "Untersiebenbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25000000", + "longitude": "16.73333000" + }, + { + "id": "3661", + "name": "Unterstinkenbrunn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.66770000", + "longitude": "16.34607000" + }, + { + "id": "3664", + "name": "Unterwagram", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21243000", + "longitude": "15.64951000" + }, + { + "id": "3665", + "name": "Unterwaltersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "16.41667000" + }, + { + "id": "3709", + "name": "Vösendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.12107000", + "longitude": "16.34036000" + }, + { + "id": "3676", + "name": "Velm", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03333000", + "longitude": "16.43333000" + }, + { + "id": "3680", + "name": "Viehofen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21667000", + "longitude": "15.61667000" + }, + { + "id": "3692", + "name": "Vitis", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.75964000", + "longitude": "15.18259000" + }, + { + "id": "3716", + "name": "Waidhofen an der Thaya", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.81667000", + "longitude": "15.28333000" + }, + { + "id": "3717", + "name": "Waidhofen an der Ybbs", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96004000", + "longitude": "14.77361000" + }, + { + "id": "3718", + "name": "Waidhofen an der Ybbs Stadt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95999000", + "longitude": "14.77438000" + }, + { + "id": "3719", + "name": "Waidmannsfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87042000", + "longitude": "15.98116000" + }, + { + "id": "3727", + "name": "Waldegg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.86852000", + "longitude": "16.05154000" + }, + { + "id": "3728", + "name": "Waldenstein", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.72845000", + "longitude": "15.01419000" + }, + { + "id": "3729", + "name": "Waldhausen", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.52183000", + "longitude": "15.26250000" + }, + { + "id": "3732", + "name": "Waldkirchen an der Thaya", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.93333000", + "longitude": "15.35000000" + }, + { + "id": "3738", + "name": "Wallsee", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16667000", + "longitude": "14.71667000" + }, + { + "id": "3739", + "name": "Walpersbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71667000", + "longitude": "16.23333000" + }, + { + "id": "3743", + "name": "Wang", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04538000", + "longitude": "15.02672000" + }, + { + "id": "3748", + "name": "Warth", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.65000000", + "longitude": "16.11667000" + }, + { + "id": "3750", + "name": "Wartmannstetten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69359000", + "longitude": "16.07506000" + }, + { + "id": "3855", + "name": "Wöllersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.86500000", + "longitude": "16.17119000" + }, + { + "id": "3856", + "name": "Wördern", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33400000", + "longitude": "16.21016000" + }, + { + "id": "3861", + "name": "Würflach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.77648000", + "longitude": "16.05463000" + }, + { + "id": "3862", + "name": "Würmla", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25497000", + "longitude": "15.86031000" + }, + { + "id": "3783", + "name": "Weißenkirchen in der Wachau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.39790000", + "longitude": "15.46931000" + }, + { + "id": "3759", + "name": "Weidling", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29100000", + "longitude": "16.30865000" + }, + { + "id": "3760", + "name": "Weigelsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "16.40000000" + }, + { + "id": "3761", + "name": "Weikendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34438000", + "longitude": "16.76651000" + }, + { + "id": "3762", + "name": "Weikersdorf am Steinfelde", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80612000", + "longitude": "16.14389000" + }, + { + "id": "3765", + "name": "Weinburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11351000", + "longitude": "15.53295000" + }, + { + "id": "3768", + "name": "Weinzierl am Walde", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43211000", + "longitude": "15.43210000" + }, + { + "id": "3769", + "name": "Weinzierl bei Krems", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40000000", + "longitude": "15.60000000" + }, + { + "id": "3772", + "name": "Weissenbach an der Triesting", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98211000", + "longitude": "16.03935000" + }, + { + "id": "3774", + "name": "Weistrach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05000000", + "longitude": "14.58333000" + }, + { + "id": "3775", + "name": "Weiten", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29564000", + "longitude": "15.26010000" + }, + { + "id": "3777", + "name": "Weitersfeld", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.78097000", + "longitude": "15.81345000" + }, + { + "id": "3779", + "name": "Weitra", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.70000000", + "longitude": "14.88333000" + }, + { + "id": "3803", + "name": "Wiener Neudorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08278000", + "longitude": "16.31384000" + }, + { + "id": "3804", + "name": "Wiener Neustadt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80485000", + "longitude": "16.23196000" + }, + { + "id": "3805", + "name": "Wiener Neustadt Stadt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80000000", + "longitude": "16.25000000" + }, + { + "id": "3806", + "name": "Wienersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00819000", + "longitude": "16.29169000" + }, + { + "id": "3808", + "name": "Wieselburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13333000", + "longitude": "15.13333000" + }, + { + "id": "3812", + "name": "Wiesmath", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.61667000", + "longitude": "16.28333000" + }, + { + "id": "3817", + "name": "Wilfersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.58333000", + "longitude": "16.63333000" + }, + { + "id": "3818", + "name": "Wilfleinsdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "16.71667000" + }, + { + "id": "3819", + "name": "Wilhelmsburg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10571000", + "longitude": "15.60539000" + }, + { + "id": "3820", + "name": "Willendorf am Steinfelde", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.78929000", + "longitude": "16.05686000" + }, + { + "id": "3824", + "name": "Wimpassing im Schwarzatale", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70295000", + "longitude": "16.03334000" + }, + { + "id": "3829", + "name": "Windhag", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97906000", + "longitude": "14.80245000" + }, + { + "id": "3830", + "name": "Windigsteig", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.76667000", + "longitude": "15.28333000" + }, + { + "id": "3832", + "name": "Winklarn", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09135000", + "longitude": "14.84819000" + }, + { + "id": "3835", + "name": "Winzendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.81154000", + "longitude": "16.11300000" + }, + { + "id": "3840", + "name": "Wolfpassing", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07785000", + "longitude": "15.06453000" + }, + { + "id": "3841", + "name": "Wolfsbach", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06667000", + "longitude": "14.66667000" + }, + { + "id": "3845", + "name": "Wolfsgraben", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15870000", + "longitude": "16.12098000" + }, + { + "id": "3846", + "name": "Wolfsthal", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13333000", + "longitude": "17.00000000" + }, + { + "id": "3848", + "name": "Wolkersdorf im Weinviertel", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.38333000", + "longitude": "16.51667000" + }, + { + "id": "3851", + "name": "Wullersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.62792000", + "longitude": "16.10089000" + }, + { + "id": "3863", + "name": "Ybbs an der Donau", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16667000", + "longitude": "15.08333000" + }, + { + "id": "3864", + "name": "Ybbsitz", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.94745000", + "longitude": "14.89180000" + }, + { + "id": "3865", + "name": "Ysper", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28865000", + "longitude": "15.06131000" + }, + { + "id": "3895", + "name": "Zöbern", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51459000", + "longitude": "16.13111000" + }, + { + "id": "3869", + "name": "Zeillern", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13029000", + "longitude": "14.80760000" + }, + { + "id": "3870", + "name": "Zeiselmauer", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32852000", + "longitude": "16.17565000" + }, + { + "id": "3877", + "name": "Zell-Arzberg", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95191000", + "longitude": "14.79322000" + }, + { + "id": "3878", + "name": "Zell-Markt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95878000", + "longitude": "14.78318000" + }, + { + "id": "3880", + "name": "Zellerndorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.69657000", + "longitude": "15.95841000" + }, + { + "id": "3885", + "name": "Ziersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.53030000", + "longitude": "15.92691000" + }, + { + "id": "3886", + "name": "Zillingdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85000000", + "longitude": "16.33333000" + }, + { + "id": "3889", + "name": "Zistersdorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.54252000", + "longitude": "16.76136000" + }, + { + "id": "3894", + "name": "Zwölfaxing", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10990000", + "longitude": "16.46267000" + }, + { + "id": "3891", + "name": "Zwentendorf", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34530000", + "longitude": "15.91026000" + }, + { + "id": "3892", + "name": "Zwettl Stadt", + "state_id": 2065, + "state_code": "3", + "country_id": 15, + "country_code": "AT", + "latitude": "48.60726000", + "longitude": "15.16714000" + }, + { + "id": "1603", + "name": "Abtenau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56373000", + "longitude": "13.34599000" + }, + { + "id": "1611", + "name": "Adnet", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69746000", + "longitude": "13.13115000" + }, + { + "id": "1644", + "name": "Altenmarkt im Pongau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "13.41667000" + }, + { + "id": "1663", + "name": "Anger", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15593000", + "longitude": "13.10592000" + }, + { + "id": "1667", + "name": "Anif", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.75000000", + "longitude": "13.06667000" + }, + { + "id": "1672", + "name": "Anthering", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.88333000", + "longitude": "13.01667000" + }, + { + "id": "1702", + "name": "Au", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70000000", + "longitude": "13.06667000" + }, + { + "id": "1722", + "name": "Bad Gastein", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11547000", + "longitude": "13.13467000" + }, + { + "id": "1726", + "name": "Bad Hofgastein", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.17274000", + "longitude": "13.09871000" + }, + { + "id": "1826", + "name": "Bürmoos", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98343000", + "longitude": "12.91786000" + }, + { + "id": "1758", + "name": "Bergheim", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83333000", + "longitude": "13.03333000" + }, + { + "id": "1763", + "name": "Berndorf bei Salzburg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99532000", + "longitude": "13.06146000" + }, + { + "id": "1777", + "name": "Bischofshofen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41667000", + "longitude": "13.21667000" + }, + { + "id": "1789", + "name": "Bramberg am Wildkogel", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26979000", + "longitude": "12.33850000" + }, + { + "id": "1808", + "name": "Bruck an der Großglocknerstraße", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28494000", + "longitude": "12.82310000" + }, + { + "id": "1821", + "name": "Burgfried", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.68004000", + "longitude": "13.11175000" + }, + { + "id": "1848", + "name": "Dienten am Hochkönig", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38324000", + "longitude": "13.00369000" + }, + { + "id": "1862", + "name": "Dorfbeuern", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "13.01667000" + }, + { + "id": "1863", + "name": "Dorfgastein", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.24172000", + "longitude": "13.10223000" + }, + { + "id": "1882", + "name": "Eben im Pongau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "13.40000000" + }, + { + "id": "1883", + "name": "Ebenau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.79073000", + "longitude": "13.17527000" + }, + { + "id": "1896", + "name": "Eching", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97263000", + "longitude": "12.88786000" + }, + { + "id": "1929", + "name": "Elixhausen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.86667000", + "longitude": "13.06667000" + }, + { + "id": "1933", + "name": "Elsbethen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.76464000", + "longitude": "13.08104000" + }, + { + "id": "1953", + "name": "Esch", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.84030000", + "longitude": "13.09223000" + }, + { + "id": "1955", + "name": "Eugendorf", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.86765000", + "longitude": "13.12609000" + }, + { + "id": "1958", + "name": "Faistenau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.77767000", + "longitude": "13.23393000" + }, + { + "id": "1986", + "name": "Filzmoos", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43333000", + "longitude": "13.51667000" + }, + { + "id": "1994", + "name": "Flachau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.34406000", + "longitude": "13.39148000" + }, + { + "id": "2007", + "name": "Forstau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.37842000", + "longitude": "13.55558000" + }, + { + "id": "2031", + "name": "Fuschl am See", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80000000", + "longitude": "13.30000000" + }, + { + "id": "2072", + "name": "Georgenberg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.63333000", + "longitude": "13.15000000" + }, + { + "id": "2082", + "name": "Glanegg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.75000000", + "longitude": "13.00000000" + }, + { + "id": "2084", + "name": "Glasenbach", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.76667000", + "longitude": "13.08333000" + }, + { + "id": "2103", + "name": "Golling an der Salzach", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60000000", + "longitude": "13.16667000" + }, + { + "id": "2166", + "name": "Grödig", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.73833000", + "longitude": "13.03730000" + }, + { + "id": "2139", + "name": "Grossarl", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23333000", + "longitude": "13.20000000" + }, + { + "id": "2140", + "name": "Grossgmain", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.72416000", + "longitude": "12.90851000" + }, + { + "id": "2202", + "name": "Habach", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.81753000", + "longitude": "13.16252000" + }, + { + "id": "2225", + "name": "Hallein", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.68333000", + "longitude": "13.10000000" + }, + { + "id": "2226", + "name": "Hallwang", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85000000", + "longitude": "13.08333000" + }, + { + "id": "2347", + "name": "Hüttau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41610000", + "longitude": "13.30775000" + }, + { + "id": "2349", + "name": "Hüttschlag", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.17635000", + "longitude": "13.23239000" + }, + { + "id": "2269", + "name": "Henndorf am Wallersee", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90000000", + "longitude": "13.18333000" + }, + { + "id": "2283", + "name": "Himmelreich", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80000000", + "longitude": "12.98333000" + }, + { + "id": "2286", + "name": "Hinterglemm", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.37685000", + "longitude": "12.59583000" + }, + { + "id": "2288", + "name": "Hintersee", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70000000", + "longitude": "13.28333000" + }, + { + "id": "2304", + "name": "Hof", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35000000", + "longitude": "13.31667000" + }, + { + "id": "2306", + "name": "Hof bei Salzburg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.81929000", + "longitude": "13.21488000" + }, + { + "id": "2325", + "name": "Hollersbach im Pinzgau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27658000", + "longitude": "12.42326000" + }, + { + "id": "2366", + "name": "Irrsdorf", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96667000", + "longitude": "13.28333000" + }, + { + "id": "2404", + "name": "Kaprun", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27239000", + "longitude": "12.75985000" + }, + { + "id": "2513", + "name": "Köstendorf", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "13.20000000" + }, + { + "id": "2452", + "name": "Kleinarl", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27725000", + "longitude": "13.31955000" + }, + { + "id": "2475", + "name": "Koppl", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80808000", + "longitude": "13.15561000" + }, + { + "id": "2489", + "name": "Krimml", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21799000", + "longitude": "12.17487000" + }, + { + "id": "2490", + "name": "Krispl", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71667000", + "longitude": "13.18333000" + }, + { + "id": "2502", + "name": "Kuchl", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.62647000", + "longitude": "13.14480000" + }, + { + "id": "2529", + "name": "Lamprechtshausen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99098000", + "longitude": "12.95481000" + }, + { + "id": "2562", + "name": "Lehen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87083000", + "longitude": "13.01722000" + }, + { + "id": "2572", + "name": "Lend", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29856000", + "longitude": "13.05176000" + }, + { + "id": "2576", + "name": "Lengfelden", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85000000", + "longitude": "13.05000000" + }, + { + "id": "2581", + "name": "Leogang", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43906000", + "longitude": "12.76109000" + }, + { + "id": "2609", + "name": "Lofer", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58475000", + "longitude": "12.69333000" + }, + { + "id": "2627", + "name": "Maishofen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36667000", + "longitude": "12.80000000" + }, + { + "id": "2639", + "name": "Maria Alm am Steinernen Meer", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40579000", + "longitude": "12.90121000" + }, + { + "id": "2653", + "name": "Mariapfarr", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15000000", + "longitude": "13.75000000" + }, + { + "id": "2671", + "name": "Mattsee", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96667000", + "longitude": "13.10000000" + }, + { + "id": "2681", + "name": "Mauterndorf", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13451000", + "longitude": "13.67884000" + }, + { + "id": "2752", + "name": "Mühlbach am Hochkönig", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.37746000", + "longitude": "13.12926000" + }, + { + "id": "2709", + "name": "Mitterberghütten", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "13.21667000" + }, + { + "id": "2712", + "name": "Mitterhofen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "12.80000000" + }, + { + "id": "2719", + "name": "Mittersill", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "12.48333000" + }, + { + "id": "2784", + "name": "Neualm", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.69336000", + "longitude": "13.08758000" + }, + { + "id": "2799", + "name": "Neukirchen am Großvenediger", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25046000", + "longitude": "12.27585000" + }, + { + "id": "2804", + "name": "Neumarkt am Wallersee", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "13.23333000" + }, + { + "id": "2820", + "name": "Niederalm", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.72872000", + "longitude": "13.06223000" + }, + { + "id": "2828", + "name": "Niedernsill", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "12.65000000" + }, + { + "id": "2838", + "name": "Nußdorf am Haunsberg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95944000", + "longitude": "13.00917000" + }, + { + "id": "2845", + "name": "Oberalm", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70000000", + "longitude": "13.10000000" + }, + { + "id": "2850", + "name": "Obergäu", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58955000", + "longitude": "13.17621000" + }, + { + "id": "2864", + "name": "Oberndorf bei Salzburg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "12.93333000" + }, + { + "id": "2878", + "name": "Obertrum am See", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93722000", + "longitude": "13.07722000" + }, + { + "id": "2957", + "name": "Pfarrwerfen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45729000", + "longitude": "13.20531000" + }, + { + "id": "2963", + "name": "Pichl", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "12.85000000" + }, + { + "id": "2967", + "name": "Piesendorf", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29077000", + "longitude": "12.71839000" + }, + { + "id": "2982", + "name": "Plainfeld", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83333000", + "longitude": "13.18333000" + }, + { + "id": "2983", + "name": "Plankenau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.32673000", + "longitude": "13.19282000" + }, + { + "id": "3006", + "name": "Politischer Bezirk Hallein", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60000000", + "longitude": "13.30000000" + }, + { + "id": "3041", + "name": "Politischer Bezirk Salzburg-Umgebung", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.84019000", + "longitude": "13.18799000" + }, + { + "id": "3042", + "name": "Politischer Bezirk Sankt Johann im Pongau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "13.30000000" + }, + { + "id": "3051", + "name": "Politischer Bezirk Tamsweg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15000000", + "longitude": "13.70000000" + }, + { + "id": "3062", + "name": "Politischer Bezirk Zell am See", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "12.70000000" + }, + { + "id": "3088", + "name": "Puch bei Hallein", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71536000", + "longitude": "13.09296000" + }, + { + "id": "3125", + "name": "Radstadt", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "13.45000000" + }, + { + "id": "3132", + "name": "Ramingstein", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07462000", + "longitude": "13.83642000" + }, + { + "id": "3153", + "name": "Rauris", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22656000", + "longitude": "12.99459000" + }, + { + "id": "3169", + "name": "Reinbach", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.34673000", + "longitude": "13.19072000" + }, + { + "id": "3173", + "name": "Reitberg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85269000", + "longitude": "13.15730000" + }, + { + "id": "3229", + "name": "Saalbach", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.39138000", + "longitude": "12.63642000" + }, + { + "id": "3230", + "name": "Saalfelden am Steinernen Meer", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42681000", + "longitude": "12.84800000" + }, + { + "id": "3234", + "name": "Salzburg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.79941000", + "longitude": "13.04399000" + }, + { + "id": "3235", + "name": "Salzburg Stadt", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80067000", + "longitude": "13.04532000" + }, + { + "id": "3241", + "name": "Sankt Andrä im Lungau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15000000", + "longitude": "13.78333000" + }, + { + "id": "3262", + "name": "Sankt Gilgen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.76667000", + "longitude": "13.36667000" + }, + { + "id": "3269", + "name": "Sankt Johann im Pongau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35000000", + "longitude": "13.20000000" + }, + { + "id": "3278", + "name": "Sankt Leonhard", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.72587000", + "longitude": "13.04577000" + }, + { + "id": "3298", + "name": "Sankt Margarethen im Lungau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07927000", + "longitude": "13.69613000" + }, + { + "id": "3306", + "name": "Sankt Martin bei Lofer", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56667000", + "longitude": "12.70000000" + }, + { + "id": "3310", + "name": "Sankt Michael im Lungau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10000000", + "longitude": "13.63333000" + }, + { + "id": "3345", + "name": "Sankt Veit im Pongau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33333000", + "longitude": "13.15000000" + }, + { + "id": "3364", + "name": "Scheffau am Tennengebirge", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58831000", + "longitude": "13.22020000" + }, + { + "id": "3375", + "name": "Schleedorf", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "13.15000000" + }, + { + "id": "3396", + "name": "Schwarzach im Pongau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.32048000", + "longitude": "13.15171000" + }, + { + "id": "3432", + "name": "Seeham", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96746000", + "longitude": "13.07699000" + }, + { + "id": "3433", + "name": "Seekirchen am Wallersee", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90000000", + "longitude": "13.13333000" + }, + { + "id": "3435", + "name": "Seewalchen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90000000", + "longitude": "13.13333000" + }, + { + "id": "3455", + "name": "Siezenheim", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.81529000", + "longitude": "12.99039000" + }, + { + "id": "3485", + "name": "St. Martin of Tennengebirge", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46500000", + "longitude": "13.37761000" + }, + { + "id": "3545", + "name": "Strasswalchen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97947000", + "longitude": "13.25535000" + }, + { + "id": "3553", + "name": "Strobl", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71667000", + "longitude": "13.48333000" + }, + { + "id": "3557", + "name": "Stuhlfelden", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28761000", + "longitude": "12.52755000" + }, + { + "id": "3570", + "name": "Tamsweg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12808000", + "longitude": "13.81102000" + }, + { + "id": "3575", + "name": "Taugl", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.64747000", + "longitude": "13.20282000" + }, + { + "id": "3577", + "name": "Taxach", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.72610000", + "longitude": "13.07184000" + }, + { + "id": "3578", + "name": "Taxenbach", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29116000", + "longitude": "12.96215000" + }, + { + "id": "3587", + "name": "Thalgau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.84142000", + "longitude": "13.25325000" + }, + { + "id": "3593", + "name": "Thomatal", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "13.75000000" + }, + { + "id": "3594", + "name": "Thumersbach", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.32952000", + "longitude": "12.81675000" + }, + { + "id": "3637", + "name": "Tweng", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "13.60000000" + }, + { + "id": "3646", + "name": "Unken", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.64966000", + "longitude": "12.72946000" + }, + { + "id": "3657", + "name": "Unternberg", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11269000", + "longitude": "13.74261000" + }, + { + "id": "3662", + "name": "Untertauern", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "13.50000000" + }, + { + "id": "3669", + "name": "Uttendorf", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "12.56667000" + }, + { + "id": "3678", + "name": "Viehhausen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.78333000", + "longitude": "12.98333000" + }, + { + "id": "3679", + "name": "Viehhofen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36667000", + "longitude": "12.73333000" + }, + { + "id": "3682", + "name": "Vigaun", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.66667000", + "longitude": "13.13333000" + }, + { + "id": "3711", + "name": "Wagnergraben", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02036000", + "longitude": "13.02395000" + }, + { + "id": "3713", + "name": "Wagrain", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33528000", + "longitude": "13.29889000" + }, + { + "id": "3723", + "name": "Walchen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28822000", + "longitude": "12.68739000" + }, + { + "id": "3726", + "name": "Wald im Pinzgau", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "12.23333000" + }, + { + "id": "3734", + "name": "Waldprechting", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90000000", + "longitude": "13.11667000" + }, + { + "id": "3740", + "name": "Wals", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.78333000", + "longitude": "12.96667000" + }, + { + "id": "3741", + "name": "Walserfeld", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.79222000", + "longitude": "12.98000000" + }, + { + "id": "3792", + "name": "Werfen", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.47585000", + "longitude": "13.19020000" + }, + { + "id": "3793", + "name": "Werfenweng", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46204000", + "longitude": "13.25582000" + }, + { + "id": "3868", + "name": "Zederhaus", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15570000", + "longitude": "13.50576000" + }, + { + "id": "3874", + "name": "Zell am See", + "state_id": 2061, + "state_code": "5", + "country_id": 15, + "country_code": "AT", + "latitude": "47.32556000", + "longitude": "12.79444000" + }, + { + "id": "1604", + "name": "Abtissendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.99583000", + "longitude": "15.45639000" + }, + { + "id": "1610", + "name": "Admont", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.57537000", + "longitude": "14.46075000" + }, + { + "id": "1613", + "name": "Aflenz Kurort", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.54211000", + "longitude": "15.23898000" + }, + { + "id": "1616", + "name": "Aibl", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68145000", + "longitude": "15.22619000" + }, + { + "id": "1618", + "name": "Aigen im Ennstal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51667000", + "longitude": "14.13333000" + }, + { + "id": "1624", + "name": "Albersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12166000", + "longitude": "15.69826000" + }, + { + "id": "1629", + "name": "Allerheiligen bei Wildon", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.91417000", + "longitude": "15.55444000" + }, + { + "id": "1631", + "name": "Allerheiligen im Mürztal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "15.40000000" + }, + { + "id": "1636", + "name": "Altaussee", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.63844000", + "longitude": "13.76278000" + }, + { + "id": "1642", + "name": "Altenmarkt bei Fürstenfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06638000", + "longitude": "16.04785000" + }, + { + "id": "1643", + "name": "Altenmarkt bei Sankt Gallen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.72327000", + "longitude": "14.64838000" + }, + { + "id": "1661", + "name": "Andritz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11387000", + "longitude": "15.42348000" + }, + { + "id": "1664", + "name": "Anger", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27422000", + "longitude": "15.69139000" + }, + { + "id": "1674", + "name": "Apfelberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "14.83333000" + }, + { + "id": "1677", + "name": "Ardning", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.59120000", + "longitude": "14.36372000" + }, + { + "id": "1678", + "name": "Arnfels", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.67639000", + "longitude": "15.40306000" + }, + { + "id": "1682", + "name": "Arzberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "15.51667000" + }, + { + "id": "1694", + "name": "Attendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00426000", + "longitude": "15.33897000" + }, + { + "id": "1707", + "name": "Auersbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01667000", + "longitude": "15.86667000" + }, + { + "id": "3899", + "name": "Übelbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22534000", + "longitude": "15.23615000" + }, + { + "id": "3901", + "name": "Übersbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.02318000", + "longitude": "16.05517000" + }, + { + "id": "3897", + "name": "Öblarn", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45938000", + "longitude": "13.99023000" + }, + { + "id": "1716", + "name": "Bad Aussee", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60998000", + "longitude": "13.78243000" + }, + { + "id": "1717", + "name": "Bad Blumau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "16.05000000" + }, + { + "id": "1721", + "name": "Bad Gams", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87111000", + "longitude": "15.22472000" + }, + { + "id": "1723", + "name": "Bad Gleichenberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87556000", + "longitude": "15.90861000" + }, + { + "id": "1732", + "name": "Bad Radkersburg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68806000", + "longitude": "15.98806000" + }, + { + "id": "1740", + "name": "Bad Waltersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16960000", + "longitude": "16.00870000" + }, + { + "id": "1744", + "name": "Baierdorf-Umgebung", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28511000", + "longitude": "15.71045000" + }, + { + "id": "1745", + "name": "Bairisch Kölldorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86667000", + "longitude": "15.93333000" + }, + { + "id": "1750", + "name": "Baumgarten bei Gnas", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.91667000", + "longitude": "15.76667000" + }, + { + "id": "1823", + "name": "Bärnbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07141000", + "longitude": "15.12792000" + }, + { + "id": "1762", + "name": "Berndorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41667000", + "longitude": "15.26667000" + }, + { + "id": "1772", + "name": "Bierbaum am Auersbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.82949000", + "longitude": "15.79237000" + }, + { + "id": "1775", + "name": "Birkfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35000000", + "longitude": "15.68333000" + }, + { + "id": "1780", + "name": "Blaindorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.17498000", + "longitude": "15.86795000" + }, + { + "id": "1799", + "name": "Breitenfeld am Tannenriegel", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85000000", + "longitude": "15.63333000" + }, + { + "id": "1800", + "name": "Breitenfeld an der Rittschein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03333000", + "longitude": "15.95000000" + }, + { + "id": "1803", + "name": "Bretstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33333000", + "longitude": "14.41667000" + }, + { + "id": "1810", + "name": "Bruck an der Mur", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41667000", + "longitude": "15.28333000" + }, + { + "id": "1812", + "name": "Brunn", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72944000", + "longitude": "15.30000000" + }, + { + "id": "1820", + "name": "Burgau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14268000", + "longitude": "16.09643000" + }, + { + "id": "1879", + "name": "Dürnstein in der Steiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.98833000", + "longitude": "14.39167000" + }, + { + "id": "1832", + "name": "Dechantskirchen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41667000", + "longitude": "16.01667000" + }, + { + "id": "1836", + "name": "Deuchendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46593000", + "longitude": "15.32172000" + }, + { + "id": "1837", + "name": "Deutsch Goritz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75083000", + "longitude": "15.82944000" + }, + { + "id": "1842", + "name": "Deutschfeistritz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.19852000", + "longitude": "15.33623000" + }, + { + "id": "1844", + "name": "Deutschlandsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81528000", + "longitude": "15.22222000" + }, + { + "id": "1846", + "name": "Diemlach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43610000", + "longitude": "15.27460000" + }, + { + "id": "1847", + "name": "Dienersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23979000", + "longitude": "15.90142000" + }, + { + "id": "1852", + "name": "Dietersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "14.66667000" + }, + { + "id": "1853", + "name": "Dietersdorf am Gnasbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80917000", + "longitude": "15.81167000" + }, + { + "id": "1857", + "name": "Donawitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36667000", + "longitude": "15.06667000" + }, + { + "id": "1858", + "name": "Donnersbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46139000", + "longitude": "14.12972000" + }, + { + "id": "1892", + "name": "Ebersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.19852000", + "longitude": "15.96219000" + }, + { + "id": "1899", + "name": "Edelsbach bei Feldbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.98944000", + "longitude": "15.83694000" + }, + { + "id": "1900", + "name": "Edelschrott", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.02156000", + "longitude": "15.05266000" + }, + { + "id": "1901", + "name": "Edelsgrub", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03333000", + "longitude": "15.60000000" + }, + { + "id": "1903", + "name": "Edelstauden", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.98333000", + "longitude": "15.61667000" + }, + { + "id": "1908", + "name": "Eggenberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07000000", + "longitude": "15.39871000" + }, + { + "id": "1912", + "name": "Eggersdorf bei Graz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12338000", + "longitude": "15.60084000" + }, + { + "id": "1914", + "name": "Ehrenhausen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72417000", + "longitude": "15.58667000" + }, + { + "id": "1916", + "name": "Eibiswald", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68667000", + "longitude": "15.24722000" + }, + { + "id": "1917", + "name": "Eichberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38188000", + "longitude": "15.97356000" + }, + { + "id": "1919", + "name": "Eichfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72528000", + "longitude": "15.76806000" + }, + { + "id": "1922", + "name": "Eisbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "15.26667000" + }, + { + "id": "1923", + "name": "Eisenerz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53333000", + "longitude": "14.88333000" + }, + { + "id": "1936", + "name": "Empersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.99892000", + "longitude": "15.59959000" + }, + { + "id": "1945", + "name": "Eppenstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12833000", + "longitude": "14.73750000" + }, + { + "id": "1959", + "name": "Falkenburg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50000000", + "longitude": "14.08333000" + }, + { + "id": "1962", + "name": "Farrach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "14.73333000" + }, + { + "id": "2037", + "name": "Fürstenfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05000000", + "longitude": "16.08333000" + }, + { + "id": "1964", + "name": "Fehring", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94000000", + "longitude": "16.00806000" + }, + { + "id": "1968", + "name": "Feistritz bei Knittelfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26802000", + "longitude": "14.89334000" + }, + { + "id": "1972", + "name": "Feldbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.95306000", + "longitude": "15.88833000" + }, + { + "id": "1975", + "name": "Feldkirchen bei Graz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01667000", + "longitude": "15.45000000" + }, + { + "id": "1982", + "name": "Fernitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.97389000", + "longitude": "15.50111000" + }, + { + "id": "1991", + "name": "Fischbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44234000", + "longitude": "15.64972000" + }, + { + "id": "1995", + "name": "Fladnitz im Raabtal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.99167000", + "longitude": "15.78528000" + }, + { + "id": "1996", + "name": "Flatschach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "14.75000000" + }, + { + "id": "2001", + "name": "Floing", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26356000", + "longitude": "15.74650000" + }, + { + "id": "2003", + "name": "Fohnsdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "14.68333000" + }, + { + "id": "2011", + "name": "Frannach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.91306000", + "longitude": "15.63361000" + }, + { + "id": "2013", + "name": "Frauenberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42855000", + "longitude": "15.34206000" + }, + { + "id": "2017", + "name": "Freidorf an der Laßnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81667000", + "longitude": "15.25000000" + }, + { + "id": "2018", + "name": "Freiland bei Deutschlandsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83333000", + "longitude": "15.13333000" + }, + { + "id": "2023", + "name": "Friedberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43333000", + "longitude": "16.05000000" + }, + { + "id": "2026", + "name": "Frohnleiten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26667000", + "longitude": "15.31667000" + }, + { + "id": "2039", + "name": "Gaal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27268000", + "longitude": "14.67003000" + }, + { + "id": "2040", + "name": "Gabersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.77722000", + "longitude": "15.58417000" + }, + { + "id": "2047", + "name": "Gallmannsegg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "15.06667000" + }, + { + "id": "2053", + "name": "Gamlitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72028000", + "longitude": "15.55333000" + }, + { + "id": "2055", + "name": "Gams bei Hieflau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.66667000", + "longitude": "14.78333000" + }, + { + "id": "2056", + "name": "Ganz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60000000", + "longitude": "15.68333000" + }, + { + "id": "2057", + "name": "Garanas", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76667000", + "longitude": "15.11667000" + }, + { + "id": "2061", + "name": "Gasen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "15.56667000" + }, + { + "id": "2187", + "name": "Göss", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35871000", + "longitude": "15.10015000" + }, + { + "id": "2188", + "name": "Gössenberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41667000", + "longitude": "13.81667000" + }, + { + "id": "2189", + "name": "Gössendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.99826000", + "longitude": "15.48556000" + }, + { + "id": "2190", + "name": "Gösting", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.09788000", + "longitude": "15.39777000" + }, + { + "id": "2192", + "name": "Göttelsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "15.60000000" + }, + { + "id": "2070", + "name": "Geidorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08393000", + "longitude": "15.44400000" + }, + { + "id": "2071", + "name": "Geistthal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "15.16667000" + }, + { + "id": "2079", + "name": "Gersdorf an der Feistritz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "15.85000000" + }, + { + "id": "2085", + "name": "Gleinstätten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75361000", + "longitude": "15.36972000" + }, + { + "id": "2086", + "name": "Gleisdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10559000", + "longitude": "15.71011000" + }, + { + "id": "2090", + "name": "Glojach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86667000", + "longitude": "15.66667000" + }, + { + "id": "2097", + "name": "Gnas", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87306000", + "longitude": "15.82528000" + }, + { + "id": "2100", + "name": "Gniebing", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96252000", + "longitude": "15.85645000" + }, + { + "id": "2106", + "name": "Gosdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72778000", + "longitude": "15.79250000" + }, + { + "id": "2107", + "name": "Gossendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.91076000", + "longitude": "15.93043000" + }, + { + "id": "2108", + "name": "Grabersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.84306000", + "longitude": "15.82472000" + }, + { + "id": "2109", + "name": "Grafendorf bei Hartberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.34028000", + "longitude": "15.99060000" + }, + { + "id": "2115", + "name": "Gralla", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81404000", + "longitude": "15.55510000" + }, + { + "id": "2119", + "name": "Grambach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01473000", + "longitude": "15.50407000" + }, + { + "id": "2120", + "name": "Gratkorn", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13333000", + "longitude": "15.35000000" + }, + { + "id": "2121", + "name": "Gratwein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "15.31667000" + }, + { + "id": "2122", + "name": "Graz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "15.45000000" + }, + { + "id": "2123", + "name": "Graz Stadt", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "15.43333000" + }, + { + "id": "2165", + "name": "Gröbming", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44272000", + "longitude": "13.90122000" + }, + { + "id": "2127", + "name": "Greisdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.92647000", + "longitude": "15.21906000" + }, + { + "id": "2128", + "name": "Gressenberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80000000", + "longitude": "15.11667000" + }, + { + "id": "2131", + "name": "Gries", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06236000", + "longitude": "15.42421000" + }, + { + "id": "2145", + "name": "Groß Sankt Florian", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.82444000", + "longitude": "15.31861000" + }, + { + "id": "2156", + "name": "Großklein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.73611000", + "longitude": "15.44444000" + }, + { + "id": "2158", + "name": "Großlobming", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "14.80000000" + }, + { + "id": "2162", + "name": "Großsölk", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41667000", + "longitude": "13.96667000" + }, + { + "id": "2144", + "name": "Grosssulz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94556000", + "longitude": "15.49028000" + }, + { + "id": "2174", + "name": "Gundersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.95000000", + "longitude": "15.23333000" + }, + { + "id": "2206", + "name": "Hafendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45653000", + "longitude": "15.31837000" + }, + { + "id": "2217", + "name": "Hainersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11506000", + "longitude": "15.94374000" + }, + { + "id": "2219", + "name": "Hainsdorf im Schwarzautal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83583000", + "longitude": "15.64139000" + }, + { + "id": "2221", + "name": "Halbenrain", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72194000", + "longitude": "15.94667000" + }, + { + "id": "2223", + "name": "Hall bei Admont", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58700000", + "longitude": "14.46372000" + }, + { + "id": "2236", + "name": "Hart bei Graz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.04311000", + "longitude": "15.51527000" + }, + { + "id": "2238", + "name": "Hartberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "15.96667000" + }, + { + "id": "2241", + "name": "Hartl", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "15.91667000" + }, + { + "id": "2242", + "name": "Hartmannsdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05461000", + "longitude": "15.83941000" + }, + { + "id": "2246", + "name": "Hatzendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.97686000", + "longitude": "16.00107000" + }, + { + "id": "2250", + "name": "Haus", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40997000", + "longitude": "13.76724000" + }, + { + "id": "2251", + "name": "Haus im Ennstal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41058000", + "longitude": "13.76759000" + }, + { + "id": "2255", + "name": "Hausmannstätten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.99111000", + "longitude": "15.51139000" + }, + { + "id": "2337", + "name": "Höf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13401000", + "longitude": "15.49092000" + }, + { + "id": "2341", + "name": "Hönigsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58038000", + "longitude": "15.64808000" + }, + { + "id": "2262", + "name": "Heiligenkreuz am Waasen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.95583000", + "longitude": "15.58806000" + }, + { + "id": "2264", + "name": "Heimschuh", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76000000", + "longitude": "15.49306000" + }, + { + "id": "2268", + "name": "Hengsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86667000", + "longitude": "15.43333000" + }, + { + "id": "2277", + "name": "Hetzendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "14.68333000" + }, + { + "id": "2279", + "name": "Hieflau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60639000", + "longitude": "14.74503000" + }, + { + "id": "2284", + "name": "Hinterberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36066000", + "longitude": "15.06951000" + }, + { + "id": "2291", + "name": "Hirnsdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.19167000", + "longitude": "15.82868000" + }, + { + "id": "2296", + "name": "Hitzendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03333000", + "longitude": "15.30000000" + }, + { + "id": "2301", + "name": "Hochtregist", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10000000", + "longitude": "15.13333000" + }, + { + "id": "2307", + "name": "Hof bei Straden", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80000000", + "longitude": "15.93333000" + }, + { + "id": "2311", + "name": "Hofstätten an der Raab", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "15.73333000" + }, + { + "id": "2313", + "name": "Hohenau an der Raab", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "15.55000000" + }, + { + "id": "2318", + "name": "Hohentauern", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43333000", + "longitude": "14.48333000" + }, + { + "id": "2322", + "name": "Hollenegg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.79147000", + "longitude": "15.21345000" + }, + { + "id": "2352", + "name": "Ilz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08649000", + "longitude": "15.92676000" + }, + { + "id": "2357", + "name": "Innere Stadt", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06650000", + "longitude": "15.44051000" + }, + { + "id": "2365", + "name": "Irdning", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50529000", + "longitude": "14.10155000" + }, + { + "id": "2371", + "name": "Jagerberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85361000", + "longitude": "15.73806000" + }, + { + "id": "2373", + "name": "Jakomini", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05441000", + "longitude": "15.44984000" + }, + { + "id": "2380", + "name": "Johnsbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53333000", + "longitude": "14.58333000" + }, + { + "id": "2382", + "name": "Judenburg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "14.66667000" + }, + { + "id": "2383", + "name": "Judendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "15.10000000" + }, + { + "id": "2385", + "name": "Kaibing", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "15.83333000" + }, + { + "id": "2386", + "name": "Kainach bei Voitsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13637000", + "longitude": "15.09530000" + }, + { + "id": "2387", + "name": "Kainbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "15.51667000" + }, + { + "id": "2388", + "name": "Kaindorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22537000", + "longitude": "15.91125000" + }, + { + "id": "2389", + "name": "Kaindorf an der Sulm", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.79248000", + "longitude": "15.53879000" + }, + { + "id": "2391", + "name": "Kalsdorf bei Graz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96528000", + "longitude": "15.48028000" + }, + { + "id": "2395", + "name": "Kalwang", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42678000", + "longitude": "14.75442000" + }, + { + "id": "2396", + "name": "Kammern im Liesingtal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.39245000", + "longitude": "14.90407000" + }, + { + "id": "2397", + "name": "Kapellen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.64784000", + "longitude": "15.62863000" + }, + { + "id": "2399", + "name": "Kapfenberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44458000", + "longitude": "15.29331000" + }, + { + "id": "2400", + "name": "Kapfenstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.88611000", + "longitude": "15.97167000" + }, + { + "id": "2508", + "name": "Köflach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "15.08333000" + }, + { + "id": "2423", + "name": "Kindberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50000000", + "longitude": "15.45000000" + }, + { + "id": "2425", + "name": "Kirchbach in Steiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.93167000", + "longitude": "15.66194000" + }, + { + "id": "2430", + "name": "Kirchberg an der Raab", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.98583000", + "longitude": "15.76694000" + }, + { + "id": "2436", + "name": "Kirchenviertel", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13124000", + "longitude": "15.34764000" + }, + { + "id": "2444", + "name": "Kitzeck im Sausal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.78072000", + "longitude": "15.45384000" + }, + { + "id": "2463", + "name": "Klöch", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76472000", + "longitude": "15.96556000" + }, + { + "id": "2455", + "name": "Kleinlobming", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14954000", + "longitude": "14.84875000" + }, + { + "id": "2457", + "name": "Kleinsöding", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00000000", + "longitude": "15.28333000" + }, + { + "id": "2458", + "name": "Kleinsölk", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.39444000", + "longitude": "13.93944000" + }, + { + "id": "2461", + "name": "Kloster", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.88333000", + "longitude": "15.08333000" + }, + { + "id": "2465", + "name": "Knittelfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "14.81667000" + }, + { + "id": "2466", + "name": "Kobenz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "14.85000000" + }, + { + "id": "2470", + "name": "Kohlberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.90000000", + "longitude": "15.78333000" + }, + { + "id": "2471", + "name": "Kohlschwarz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "15.11667000" + }, + { + "id": "2478", + "name": "Krakaudorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18131000", + "longitude": "14.02061000" + }, + { + "id": "2479", + "name": "Krakauhintermühlen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "13.98333000" + }, + { + "id": "2480", + "name": "Krakauschatten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "13.96667000" + }, + { + "id": "2482", + "name": "Kraubath an der Mur", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "14.93333000" + }, + { + "id": "2488", + "name": "Krieglach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.54728000", + "longitude": "15.56248000" + }, + { + "id": "2493", + "name": "Krottendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "15.63333000" + }, + { + "id": "2494", + "name": "Krottendorf bei Ligist", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01667000", + "longitude": "15.21667000" + }, + { + "id": "2498", + "name": "Krumegg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.02111000", + "longitude": "15.63139000" + }, + { + "id": "2501", + "name": "Krusdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83944000", + "longitude": "15.86083000" + }, + { + "id": "2505", + "name": "Kulm am Zirbitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05814000", + "longitude": "14.48702000" + }, + { + "id": "2506", + "name": "Kumberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16422000", + "longitude": "15.53261000" + }, + { + "id": "2522", + "name": "Labuch", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "15.66667000" + }, + { + "id": "2527", + "name": "Lafnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36792000", + "longitude": "16.01103000" + }, + { + "id": "2532", + "name": "Landl", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.65666000", + "longitude": "14.73189000" + }, + { + "id": "2534", + "name": "Lang", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83765000", + "longitude": "15.50471000" + }, + { + "id": "2536", + "name": "Langegg bei Graz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05000000", + "longitude": "15.63333000" + }, + { + "id": "2543", + "name": "Langenwang", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56667000", + "longitude": "15.61667000" + }, + { + "id": "2547", + "name": "Lannach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94611000", + "longitude": "15.33722000" + }, + { + "id": "2552", + "name": "Lassnitzhöhe", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "15.58333000" + }, + { + "id": "2624", + "name": "Lödersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.95861000", + "longitude": "15.94333000" + }, + { + "id": "2564", + "name": "Leibnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.78161000", + "longitude": "15.53836000" + }, + { + "id": "2566", + "name": "Leitendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36667000", + "longitude": "15.08333000" + }, + { + "id": "2567", + "name": "Leitersdorf im Raabtal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94182000", + "longitude": "15.93365000" + }, + { + "id": "2569", + "name": "Leitring", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76667000", + "longitude": "15.56667000" + }, + { + "id": "2573", + "name": "Lend", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08256000", + "longitude": "15.41589000" + }, + { + "id": "2578", + "name": "Leoben", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.37650000", + "longitude": "15.09144000" + }, + { + "id": "2589", + "name": "Leutschach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.66722000", + "longitude": "15.46889000" + }, + { + "id": "2593", + "name": "Liebenau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03333000", + "longitude": "15.46667000" + }, + { + "id": "2595", + "name": "Lieboch", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.97417000", + "longitude": "15.33750000" + }, + { + "id": "2597", + "name": "Liesingtal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.34597000", + "longitude": "15.01352000" + }, + { + "id": "2598", + "name": "Liezen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56667000", + "longitude": "14.23333000" + }, + { + "id": "2599", + "name": "Ligist", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.99389000", + "longitude": "15.21083000" + }, + { + "id": "2612", + "name": "Loipersdorf bei Fürstenfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00000000", + "longitude": "16.10000000" + }, + { + "id": "2625", + "name": "Maierdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.89250000", + "longitude": "15.84972000" + }, + { + "id": "2643", + "name": "Maria Lankowitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06220000", + "longitude": "15.06525000" + }, + { + "id": "2652", + "name": "Mariahof", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10000000", + "longitude": "14.40000000" + }, + { + "id": "2657", + "name": "Mariatrost", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10000000", + "longitude": "15.50000000" + }, + { + "id": "2658", + "name": "Mariazell", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.77306000", + "longitude": "15.31639000" + }, + { + "id": "2680", + "name": "Mautern in Steiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "14.83333000" + }, + { + "id": "2747", + "name": "Mönichwald", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44655000", + "longitude": "15.88275000" + }, + { + "id": "2757", + "name": "Mühldorf bei Feldbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.93861000", + "longitude": "15.90750000" + }, + { + "id": "2758", + "name": "Mühlen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03071000", + "longitude": "14.50848000" + }, + { + "id": "2765", + "name": "Mürzhofen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48333000", + "longitude": "15.38333000" + }, + { + "id": "2766", + "name": "Mürzsteg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.67556000", + "longitude": "15.49145000" + }, + { + "id": "2767", + "name": "Mürzzuschlag", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.60660000", + "longitude": "15.67226000" + }, + { + "id": "2689", + "name": "Mellach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.93333000", + "longitude": "15.51667000" + }, + { + "id": "2691", + "name": "Merkendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85722000", + "longitude": "15.90389000" + }, + { + "id": "2693", + "name": "Mettersdorf am Saßbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80583000", + "longitude": "15.71111000" + }, + { + "id": "2694", + "name": "Michaelerberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41083000", + "longitude": "13.89333000" + }, + { + "id": "2710", + "name": "Mitterdorf an der Raab", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "15.60000000" + }, + { + "id": "2711", + "name": "Mitterdorf im Mürztal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53333000", + "longitude": "15.51667000" + }, + { + "id": "2714", + "name": "Mitterlabill", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.88917000", + "longitude": "15.63556000" + }, + { + "id": "2717", + "name": "Mitterndorf im Steirischen Salzkammergut", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.55556000", + "longitude": "13.93187000" + }, + { + "id": "2721", + "name": "Modriach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.95000000", + "longitude": "15.05000000" + }, + { + "id": "2728", + "name": "Mooskirchen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.98167000", + "longitude": "15.27889000" + }, + { + "id": "2729", + "name": "Mortantsch", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20752000", + "longitude": "15.57954000" + }, + { + "id": "2735", + "name": "Murau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11056000", + "longitude": "14.16944000" + }, + { + "id": "2736", + "name": "Mureck", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70806000", + "longitude": "15.77472000" + }, + { + "id": "2769", + "name": "Naas", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25086000", + "longitude": "15.59449000" + }, + { + "id": "2780", + "name": "Nestelbach bei Graz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06053000", + "longitude": "15.61140000" + }, + { + "id": "2781", + "name": "Nestelbach im Ilztal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "15.86667000" + }, + { + "id": "2786", + "name": "Neuberg an der Mürz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.66423000", + "longitude": "15.57226000" + }, + { + "id": "2788", + "name": "Neudau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.17554000", + "longitude": "16.10184000" + }, + { + "id": "2808", + "name": "Neumarkt in Steiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07398000", + "longitude": "14.42728000" + }, + { + "id": "2817", + "name": "Neutillmitsch", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81667000", + "longitude": "15.53333000" + }, + { + "id": "2833", + "name": "Niederöblarn", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.47667000", + "longitude": "14.01937000" + }, + { + "id": "2829", + "name": "Niederschöckl", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15000000", + "longitude": "15.50000000" + }, + { + "id": "2832", + "name": "Niederwölz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15126000", + "longitude": "14.37479000" + }, + { + "id": "2835", + "name": "Niklasdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "15.15000000" + }, + { + "id": "2837", + "name": "Nitscha", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "15.75000000" + }, + { + "id": "2842", + "name": "Obdach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "14.68333000" + }, + { + "id": "2844", + "name": "Oberaich", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "15.21667000" + }, + { + "id": "2847", + "name": "Oberdorf am Hochegg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.97861000", + "longitude": "15.72167000" + }, + { + "id": "2851", + "name": "Oberhaag", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68690000", + "longitude": "15.33202000" + }, + { + "id": "2857", + "name": "Oberkurzheim", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23333000", + "longitude": "14.58333000" + }, + { + "id": "2870", + "name": "Oberpremstätten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.97444000", + "longitude": "15.40444000" + }, + { + "id": "2872", + "name": "Oberrettenbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15000000", + "longitude": "15.80000000" + }, + { + "id": "2876", + "name": "Oberstorcha", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96667000", + "longitude": "15.80000000" + }, + { + "id": "2880", + "name": "Obervogau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.74500000", + "longitude": "15.58472000" + }, + { + "id": "2887", + "name": "Oberwölz Stadt", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20117000", + "longitude": "14.28321000" + }, + { + "id": "2885", + "name": "Oberweg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15000000", + "longitude": "14.63333000" + }, + { + "id": "2888", + "name": "Oberzeiring", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "14.48333000" + }, + { + "id": "2900", + "name": "Oppenberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48333000", + "longitude": "14.26667000" + }, + { + "id": "2903", + "name": "Ortgraben", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45000000", + "longitude": "16.05000000" + }, + { + "id": "2908", + "name": "Osterwitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85943000", + "longitude": "15.08998000" + }, + { + "id": "2917", + "name": "Pack", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.97917000", + "longitude": "14.98417000" + }, + { + "id": "2918", + "name": "Paldau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94222000", + "longitude": "15.79583000" + }, + { + "id": "2919", + "name": "Palfau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70000000", + "longitude": "14.80000000" + }, + { + "id": "2925", + "name": "Parschlug", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48090000", + "longitude": "15.28645000" + }, + { + "id": "2927", + "name": "Passail", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "15.51667000" + }, + { + "id": "3105", + "name": "Pöllau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "15.83333000" + }, + { + "id": "3106", + "name": "Pöllauberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31667000", + "longitude": "15.85000000" + }, + { + "id": "3107", + "name": "Pöls", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "14.58333000" + }, + { + "id": "2933", + "name": "Peggau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "15.35000000" + }, + { + "id": "2936", + "name": "Perchau am Sattel", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10000000", + "longitude": "14.45000000" + }, + { + "id": "2939", + "name": "Perlsdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.91361000", + "longitude": "15.81417000" + }, + { + "id": "2941", + "name": "Pernegg an der Mur", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35979000", + "longitude": "15.34236000" + }, + { + "id": "2945", + "name": "Pertlstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94056000", + "longitude": "15.96167000" + }, + { + "id": "2962", + "name": "Piberegg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.09424000", + "longitude": "15.11658000" + }, + { + "id": "2965", + "name": "Pichling bei Köflach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.04785000", + "longitude": "15.07098000" + }, + { + "id": "2971", + "name": "Pinggau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44232000", + "longitude": "16.06713000" + }, + { + "id": "2974", + "name": "Pirching am Traubenberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.95000000", + "longitude": "15.60000000" + }, + { + "id": "2976", + "name": "Pirka", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00000000", + "longitude": "15.38333000" + }, + { + "id": "2977", + "name": "Pischelsdorf in der Steiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.17417000", + "longitude": "15.80572000" + }, + { + "id": "2978", + "name": "Pistorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76667000", + "longitude": "15.36667000" + }, + { + "id": "2979", + "name": "Pitschgau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70000000", + "longitude": "15.26667000" + }, + { + "id": "2993", + "name": "Politischer Bezirk Bruck-Mürzzuschlag", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41880000", + "longitude": "15.27512000" + }, + { + "id": "2994", + "name": "Politischer Bezirk Deutschlandsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75000000", + "longitude": "15.20000000" + }, + { + "id": "3002", + "name": "Politischer Bezirk Graz-Umgebung", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13860000", + "longitude": "15.38823000" + }, + { + "id": "3007", + "name": "Politischer Bezirk Hartberg-Fürstenfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27923000", + "longitude": "15.98373000" + }, + { + "id": "3021", + "name": "Politischer Bezirk Leibnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.79565000", + "longitude": "15.51849000" + }, + { + "id": "3022", + "name": "Politischer Bezirk Leoben", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41667000", + "longitude": "14.91667000" + }, + { + "id": "3024", + "name": "Politischer Bezirk Liezen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53521000", + "longitude": "14.34314000" + }, + { + "id": "3030", + "name": "Politischer Bezirk Murau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13333000", + "longitude": "14.20000000" + }, + { + "id": "3031", + "name": "Politischer Bezirk Murtal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16964000", + "longitude": "14.66469000" + }, + { + "id": "3050", + "name": "Politischer Bezirk Südoststeiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94089000", + "longitude": "15.88623000" + }, + { + "id": "3055", + "name": "Politischer Bezirk Voitsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05000000", + "longitude": "15.10000000" + }, + { + "id": "3059", + "name": "Politischer Bezirk Weiz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "15.65000000" + }, + { + "id": "3065", + "name": "Poppendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85611000", + "longitude": "15.85639000" + }, + { + "id": "3076", + "name": "Preding", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85861000", + "longitude": "15.40972000" + }, + { + "id": "3084", + "name": "Proleb", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "15.13333000" + }, + { + "id": "3086", + "name": "Pruggern", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42370000", + "longitude": "13.87625000" + }, + { + "id": "3089", + "name": "Puch bei Weiz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "15.71667000" + }, + { + "id": "3097", + "name": "Puntigam", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03333000", + "longitude": "15.43333000" + }, + { + "id": "3101", + "name": "Pusterwald", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30611000", + "longitude": "14.37556000" + }, + { + "id": "3114", + "name": "Raaba", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03333000", + "longitude": "15.50000000" + }, + { + "id": "3115", + "name": "Raabau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96278000", + "longitude": "15.91167000" + }, + { + "id": "3121", + "name": "Rabenwald", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "15.90000000" + }, + { + "id": "3122", + "name": "Rachau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "14.90000000" + }, + { + "id": "3128", + "name": "Ragnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83667000", + "longitude": "15.59278000" + }, + { + "id": "3134", + "name": "Ramsau am Dachstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42150000", + "longitude": "13.65545000" + }, + { + "id": "3139", + "name": "Raning", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85000000", + "longitude": "15.81667000" + }, + { + "id": "3143", + "name": "Ranten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15949000", + "longitude": "14.08349000" + }, + { + "id": "3145", + "name": "Rassach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86028000", + "longitude": "15.27000000" + }, + { + "id": "3147", + "name": "Ratsch an der Weinstraße", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68944000", + "longitude": "15.57111000" + }, + { + "id": "3148", + "name": "Ratschendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.74222000", + "longitude": "15.81583000" + }, + { + "id": "3149", + "name": "Ratten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48333000", + "longitude": "15.71667000" + }, + { + "id": "3226", + "name": "Röthelstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31667000", + "longitude": "15.36667000" + }, + { + "id": "3164", + "name": "Reichendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18922000", + "longitude": "15.76160000" + }, + { + "id": "3168", + "name": "Reifling", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13333000", + "longitude": "14.66667000" + }, + { + "id": "3179", + "name": "Rettenegg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.52694000", + "longitude": "15.78104000" + }, + { + "id": "3182", + "name": "Retznei", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.73333000", + "longitude": "15.56667000" + }, + { + "id": "3192", + "name": "Riegersburg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00000000", + "longitude": "15.93028000" + }, + { + "id": "3193", + "name": "Ries", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08315000", + "longitude": "15.48500000" + }, + { + "id": "3203", + "name": "Rohrbach an der Lafnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "16.00000000" + }, + { + "id": "3212", + "name": "Rosental an der Kainach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05192000", + "longitude": "15.12200000" + }, + { + "id": "3214", + "name": "Rottenmann", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51667000", + "longitude": "14.35000000" + }, + { + "id": "3232", + "name": "Salla", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10000000", + "longitude": "14.96667000" + }, + { + "id": "3243", + "name": "Sankt Anna am Aigen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83111000", + "longitude": "15.97139000" + }, + { + "id": "3245", + "name": "Sankt Bartholomä", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05457000", + "longitude": "15.25889000" + }, + { + "id": "3246", + "name": "Sankt Blasen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "14.30000000" + }, + { + "id": "3250", + "name": "Sankt Gallen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.68631000", + "longitude": "14.61705000" + }, + { + "id": "3257", + "name": "Sankt Georgen an der Stiefing", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87333000", + "longitude": "15.57972000" + }, + { + "id": "3260", + "name": "Sankt Georgen ob Judenburg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20744000", + "longitude": "14.49736000" + }, + { + "id": "3261", + "name": "Sankt Georgen ob Murau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10000000", + "longitude": "14.10000000" + }, + { + "id": "3264", + "name": "Sankt Ilgen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.55000000", + "longitude": "15.16667000" + }, + { + "id": "3265", + "name": "Sankt Jakob im Walde", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "15.78333000" + }, + { + "id": "3266", + "name": "Sankt Jakob-Breitenau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.39229000", + "longitude": "15.42970000" + }, + { + "id": "3267", + "name": "Sankt Johann am Tauern", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35000000", + "longitude": "14.46667000" + }, + { + "id": "3268", + "name": "Sankt Johann bei Herberstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "15.80000000" + }, + { + "id": "3270", + "name": "Sankt Johann im Saggautal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70389000", + "longitude": "15.40278000" + }, + { + "id": "3272", + "name": "Sankt Johann in der Haide", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28080000", + "longitude": "16.02579000" + }, + { + "id": "3273", + "name": "Sankt Josef (Weststeiermark)", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.90917000", + "longitude": "15.33639000" + }, + { + "id": "3274", + "name": "Sankt Katharein an der Laming", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.47069000", + "longitude": "15.16319000" + }, + { + "id": "3275", + "name": "Sankt Kathrein am Hauenstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48943000", + "longitude": "15.69414000" + }, + { + "id": "3276", + "name": "Sankt Kathrein am Offenegg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "15.58333000" + }, + { + "id": "3277", + "name": "Sankt Lambrecht", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "14.30000000" + }, + { + "id": "3280", + "name": "Sankt Leonhard", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06924000", + "longitude": "15.45784000" + }, + { + "id": "3284", + "name": "Sankt Lorenzen am Wechsel", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44153000", + "longitude": "15.95498000" + }, + { + "id": "3285", + "name": "Sankt Lorenzen bei Knittelfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25078000", + "longitude": "14.89549000" + }, + { + "id": "3286", + "name": "Sankt Lorenzen bei Scheifling", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14556000", + "longitude": "14.40583000" + }, + { + "id": "3287", + "name": "Sankt Lorenzen im Mürztal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48333000", + "longitude": "15.36667000" + }, + { + "id": "3289", + "name": "Sankt Marein bei Graz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01583000", + "longitude": "15.68389000" + }, + { + "id": "3290", + "name": "Sankt Marein bei Knittelfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27396000", + "longitude": "14.86085000" + }, + { + "id": "3291", + "name": "Sankt Marein bei Neumarkt", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06591000", + "longitude": "14.42908000" + }, + { + "id": "3292", + "name": "Sankt Marein im Mürztal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "15.36667000" + }, + { + "id": "3294", + "name": "Sankt Margarethen an der Raab", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05000000", + "longitude": "15.75000000" + }, + { + "id": "3296", + "name": "Sankt Margarethen bei Knittelfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "14.86667000" + }, + { + "id": "3300", + "name": "Sankt Martin", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44667000", + "longitude": "15.28490000" + }, + { + "id": "3303", + "name": "Sankt Martin am Grimming", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48873000", + "longitude": "13.98105000" + }, + { + "id": "3308", + "name": "Sankt Martin im Sulmtal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75611000", + "longitude": "15.29722000" + }, + { + "id": "3311", + "name": "Sankt Michael in Obersteiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33839000", + "longitude": "15.01784000" + }, + { + "id": "3312", + "name": "Sankt Nikolai im Sausal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.82111000", + "longitude": "15.45194000" + }, + { + "id": "3313", + "name": "Sankt Nikolai im Sölktal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31667000", + "longitude": "14.05000000" + }, + { + "id": "3314", + "name": "Sankt Nikolai ob Draßling", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80889000", + "longitude": "15.65083000" + }, + { + "id": "3316", + "name": "Sankt Oswald bei Plankenwarth", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08701000", + "longitude": "15.27703000" + }, + { + "id": "3317", + "name": "Sankt Oswald ob Eibiswald", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70833000", + "longitude": "15.14667000" + }, + { + "id": "3321", + "name": "Sankt Peter", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05000000", + "longitude": "15.46667000" + }, + { + "id": "3323", + "name": "Sankt Peter am Kammersberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18706000", + "longitude": "14.18464000" + }, + { + "id": "3324", + "name": "Sankt Peter am Ottersbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.79778000", + "longitude": "15.75917000" + }, + { + "id": "3325", + "name": "Sankt Peter im Sulmtal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75000000", + "longitude": "15.25000000" + }, + { + "id": "3327", + "name": "Sankt Peter ob Judenburg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18417000", + "longitude": "14.58639000" + }, + { + "id": "3328", + "name": "Sankt Peter-Freienstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "15.01667000" + }, + { + "id": "3331", + "name": "Sankt Radegund bei Graz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18172000", + "longitude": "15.49192000" + }, + { + "id": "3333", + "name": "Sankt Ruprecht an der Raab", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15336000", + "longitude": "15.66256000" + }, + { + "id": "3335", + "name": "Sankt Stefan im Rosental", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.90389000", + "longitude": "15.71000000" + }, + { + "id": "3336", + "name": "Sankt Stefan ob Leoben", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31672000", + "longitude": "14.97831000" + }, + { + "id": "3337", + "name": "Sankt Stefan ob Stainz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.92861000", + "longitude": "15.25889000" + }, + { + "id": "3339", + "name": "Sankt Ulrich am Waasen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.93333000", + "longitude": "15.53333000" + }, + { + "id": "3342", + "name": "Sankt Veit am Vogau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.74048000", + "longitude": "15.64217000" + }, + { + "id": "3564", + "name": "Söchau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03333000", + "longitude": "16.01667000" + }, + { + "id": "3565", + "name": "Södingberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10703000", + "longitude": "15.17169000" + }, + { + "id": "3352", + "name": "Schachen bei Vorau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38010000", + "longitude": "15.85816000" + }, + { + "id": "3412", + "name": "Schäffern", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.47771000", + "longitude": "16.10956000" + }, + { + "id": "3415", + "name": "Schöder", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "14.10000000" + }, + { + "id": "3367", + "name": "Scheifling", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15044000", + "longitude": "14.41278000" + }, + { + "id": "3371", + "name": "Schladming", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.39289000", + "longitude": "13.68699000" + }, + { + "id": "3389", + "name": "Schrems bei Frohnleiten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28109000", + "longitude": "15.35932000" + }, + { + "id": "3393", + "name": "Schwanberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75833000", + "longitude": "15.20833000" + }, + { + "id": "3399", + "name": "Schwarzau im Schwarzautal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87886000", + "longitude": "15.66421000" + }, + { + "id": "3425", + "name": "Sebersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18650000", + "longitude": "15.99360000" + }, + { + "id": "3426", + "name": "Seckau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26667000", + "longitude": "14.78333000" + }, + { + "id": "3436", + "name": "Seggauberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76667000", + "longitude": "15.51667000" + }, + { + "id": "3438", + "name": "Seiersberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00000000", + "longitude": "15.40000000" + }, + { + "id": "3442", + "name": "Selzthal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.54988000", + "longitude": "14.31201000" + }, + { + "id": "3444", + "name": "Semriach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "15.40000000" + }, + { + "id": "3450", + "name": "Siegersdorf bei Herberstein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "15.78333000" + }, + { + "id": "3462", + "name": "Sinabelkirchen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10200000", + "longitude": "15.82795000" + }, + { + "id": "3466", + "name": "Soboth", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68139000", + "longitude": "15.07833000" + }, + { + "id": "3473", + "name": "Spatenhof", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96250000", + "longitude": "15.36111000" + }, + { + "id": "3474", + "name": "Spielberg bei Knittelfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "14.78333000" + }, + { + "id": "3475", + "name": "Spielfeld", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70556000", + "longitude": "15.63722000" + }, + { + "id": "3478", + "name": "Spital am Semmering", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.61345000", + "longitude": "15.75096000" + }, + { + "id": "3488", + "name": "Stadl an der Mur", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "13.96667000" + }, + { + "id": "3493", + "name": "Stainach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53343000", + "longitude": "14.10872000" + }, + { + "id": "3494", + "name": "Stainz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.89444000", + "longitude": "15.26722000" + }, + { + "id": "3495", + "name": "Stainz bei Straden", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.82444000", + "longitude": "15.89222000" + }, + { + "id": "3498", + "name": "Stallhof", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.88333000", + "longitude": "15.28333000" + }, + { + "id": "3499", + "name": "Stallhofen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05000000", + "longitude": "15.21667000" + }, + { + "id": "3500", + "name": "Stambach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33333000", + "longitude": "15.93333000" + }, + { + "id": "3505", + "name": "Stattegg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13333000", + "longitude": "15.41667000" + }, + { + "id": "3510", + "name": "Stein", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.99778000", + "longitude": "16.08694000" + }, + { + "id": "3522", + "name": "Stenzengreith", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "15.51667000" + }, + { + "id": "3531", + "name": "Stiwoll", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10000000", + "longitude": "15.21667000" + }, + { + "id": "3547", + "name": "Straß in Steiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72722000", + "longitude": "15.62444000" + }, + { + "id": "3549", + "name": "Straßgang", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03333000", + "longitude": "15.40000000" + }, + { + "id": "3537", + "name": "Straden", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80917000", + "longitude": "15.86806000" + }, + { + "id": "3538", + "name": "Strallegg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41165000", + "longitude": "15.72534000" + }, + { + "id": "3542", + "name": "Strassengel", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11573000", + "longitude": "15.33288000" + }, + { + "id": "3555", + "name": "Stubenberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.24460000", + "longitude": "15.80027000" + }, + { + "id": "3556", + "name": "Studenzen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00583000", + "longitude": "15.75417000" + }, + { + "id": "3563", + "name": "Sulztal an der Weinstraße", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.68333000", + "longitude": "15.55000000" + }, + { + "id": "3576", + "name": "Tauplitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56005000", + "longitude": "14.01293000" + }, + { + "id": "3585", + "name": "Teufenbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12870000", + "longitude": "14.35913000" + }, + { + "id": "3586", + "name": "Thal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07644000", + "longitude": "15.36052000" + }, + { + "id": "3596", + "name": "Thörl", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51952000", + "longitude": "15.22276000" + }, + { + "id": "3600", + "name": "Tieschen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.78611000", + "longitude": "15.94222000" + }, + { + "id": "3601", + "name": "Tillmitsch", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81195000", + "longitude": "15.51679000" + }, + { + "id": "3602", + "name": "Tillmitsch Links der Laßnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80955000", + "longitude": "15.52394000" + }, + { + "id": "3606", + "name": "Traboch", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.37705000", + "longitude": "14.98647000" + }, + { + "id": "3608", + "name": "Trahütten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.82500000", + "longitude": "15.15694000" + }, + { + "id": "3617", + "name": "Trautmannsdorf in Oststeiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87530000", + "longitude": "15.88451000" + }, + { + "id": "3628", + "name": "Trössing", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81667000", + "longitude": "15.81667000" + }, + { + "id": "3619", + "name": "Treglwang", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.47458000", + "longitude": "14.59083000" + }, + { + "id": "3622", + "name": "Trieben", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48574000", + "longitude": "14.48744000" + }, + { + "id": "3623", + "name": "Triebendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "14.23333000" + }, + { + "id": "3626", + "name": "Trofaiach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42524000", + "longitude": "15.00681000" + }, + { + "id": "3635", + "name": "Turnau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.55776000", + "longitude": "15.33739000" + }, + { + "id": "3645", + "name": "Ungerdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "15.66667000" + }, + { + "id": "3647", + "name": "Unterauersbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86556000", + "longitude": "15.77028000" + }, + { + "id": "3648", + "name": "Unterbergla", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.80746000", + "longitude": "15.31516000" + }, + { + "id": "3651", + "name": "Unterfladnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "15.66667000" + }, + { + "id": "3655", + "name": "Unterlamm", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.97694000", + "longitude": "16.06389000" + }, + { + "id": "3659", + "name": "Unterpremstätten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96472000", + "longitude": "15.40417000" + }, + { + "id": "3667", + "name": "Utschtal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "15.20000000" + }, + { + "id": "3673", + "name": "Vasoldsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01634000", + "longitude": "15.55835000" + }, + { + "id": "3674", + "name": "Veitsch", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.57815000", + "longitude": "15.49450000" + }, + { + "id": "3693", + "name": "Vogau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.73187000", + "longitude": "15.60837000" + }, + { + "id": "3694", + "name": "Voitsberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.04445000", + "longitude": "15.15313000" + }, + { + "id": "3698", + "name": "Vorau", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40548000", + "longitude": "15.88754000" + }, + { + "id": "3701", + "name": "Vordernberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48809000", + "longitude": "14.99436000" + }, + { + "id": "3710", + "name": "Wagna", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.76682000", + "longitude": "15.55906000" + }, + { + "id": "3712", + "name": "Wagnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.98333000", + "longitude": "15.46667000" + }, + { + "id": "3725", + "name": "Wald am Schoberpaß", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44936000", + "longitude": "14.67567000" + }, + { + "id": "3742", + "name": "Waltendorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "15.46667000" + }, + { + "id": "3745", + "name": "Wartberg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.52717000", + "longitude": "15.48095000" + }, + { + "id": "3858", + "name": "Wörschach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.55000000", + "longitude": "14.15000000" + }, + { + "id": "3860", + "name": "Wörth an der Lafnitz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21368000", + "longitude": "16.08081000" + }, + { + "id": "3781", + "name": "Weißenbach bei Liezen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56667000", + "longitude": "14.21667000" + }, + { + "id": "3784", + "name": "Weißkirchen in Steiermark", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15000000", + "longitude": "14.73333000" + }, + { + "id": "3766", + "name": "Weinburg am Saßbach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75361000", + "longitude": "15.72111000" + }, + { + "id": "3780", + "name": "Weiz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "15.61667000" + }, + { + "id": "3795", + "name": "Werndorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.92417000", + "longitude": "15.49083000" + }, + { + "id": "3796", + "name": "Wernersdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.71592000", + "longitude": "15.20718000" + }, + { + "id": "3799", + "name": "Wettmannstätten", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83056000", + "longitude": "15.38722000" + }, + { + "id": "3800", + "name": "Wetzelsdorf", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05293000", + "longitude": "15.39923000" + }, + { + "id": "3807", + "name": "Wies", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72028000", + "longitude": "15.27194000" + }, + { + "id": "3813", + "name": "Wildalpen", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.65000000", + "longitude": "14.98333000" + }, + { + "id": "3815", + "name": "Wildon", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.88333000", + "longitude": "15.51667000" + }, + { + "id": "3834", + "name": "Winklern bei Oberwölz", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "14.23333000" + }, + { + "id": "3843", + "name": "Wolfsberg im Schwarzautal", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.84389000", + "longitude": "15.65889000" + }, + { + "id": "3852", + "name": "Wundschuh", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.92639000", + "longitude": "15.45111000" + }, + { + "id": "3881", + "name": "Zeltweg", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "14.75000000" + }, + { + "id": "3882", + "name": "Zerlach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.94593000", + "longitude": "15.65093000" + }, + { + "id": "3883", + "name": "Zettling", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "46.95220000", + "longitude": "15.43420000" + }, + { + "id": "3884", + "name": "Zeutschach", + "state_id": 2059, + "state_code": "6", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "14.36667000" + }, + { + "id": "1600", + "name": "Abfaltersbach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75715000", + "longitude": "12.52828000" + }, + { + "id": "1601", + "name": "Absam", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29572000", + "longitude": "11.50593000" + }, + { + "id": "1607", + "name": "Achenkirch", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.52659000", + "longitude": "11.70559000" + }, + { + "id": "1620", + "name": "Ainet", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.86603000", + "longitude": "12.68968000" + }, + { + "id": "1625", + "name": "Aldrans", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "11.45000000" + }, + { + "id": "1634", + "name": "Alpbach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.39878000", + "longitude": "11.94373000" + }, + { + "id": "1652", + "name": "Amlach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81639000", + "longitude": "12.76361000" + }, + { + "id": "1653", + "name": "Ampass", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26251000", + "longitude": "11.46226000" + }, + { + "id": "1655", + "name": "Amras", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "11.41667000" + }, + { + "id": "1662", + "name": "Angath", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50758000", + "longitude": "12.06513000" + }, + { + "id": "1665", + "name": "Angerberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50563000", + "longitude": "12.03119000" + }, + { + "id": "1669", + "name": "Anras", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.77389000", + "longitude": "12.56083000" + }, + { + "id": "1683", + "name": "Arzl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.43333000" + }, + { + "id": "1684", + "name": "Arzl im Pitztal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20712000", + "longitude": "10.76261000" + }, + { + "id": "1687", + "name": "Aschau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26667000", + "longitude": "11.90000000" + }, + { + "id": "1688", + "name": "Aschau im Zillertal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26613000", + "longitude": "11.89536000" + }, + { + "id": "1713", + "name": "Außervillgraten", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.78750000", + "longitude": "12.43139000" + }, + { + "id": "1709", + "name": "Aurach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41223000", + "longitude": "12.42734000" + }, + { + "id": "1714", + "name": "Axams", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23111000", + "longitude": "11.27892000" + }, + { + "id": "3898", + "name": "Ötztal-Bahnhof", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23333000", + "longitude": "10.85000000" + }, + { + "id": "1727", + "name": "Bad Häring", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51071000", + "longitude": "12.11912000" + }, + { + "id": "1748", + "name": "Barwies", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "10.96667000" + }, + { + "id": "1751", + "name": "Baumkirchen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "11.56667000" + }, + { + "id": "1766", + "name": "Berwang", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40807000", + "longitude": "10.74735000" + }, + { + "id": "1769", + "name": "Biberwier", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "10.90000000" + }, + { + "id": "1770", + "name": "Bichlbach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42033000", + "longitude": "10.79042000" + }, + { + "id": "1774", + "name": "Birgitz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23536000", + "longitude": "11.29922000" + }, + { + "id": "1791", + "name": "Brandenberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.49053000", + "longitude": "11.89459000" + }, + { + "id": "1797", + "name": "Breitenbach am Inn", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.47829000", + "longitude": "11.97372000" + }, + { + "id": "1802", + "name": "Breitenwang", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48713000", + "longitude": "10.73420000" + }, + { + "id": "1804", + "name": "Brixen im Thale", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45000000", + "longitude": "12.25000000" + }, + { + "id": "1805", + "name": "Brixlegg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42942000", + "longitude": "11.87794000" + }, + { + "id": "1807", + "name": "Bruck am Ziller", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38998000", + "longitude": "11.85124000" + }, + { + "id": "1817", + "name": "Buch in Tirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.37447000", + "longitude": "11.75400000" + }, + { + "id": "1872", + "name": "Dölsach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.82833000", + "longitude": "12.84528000" + }, + { + "id": "1831", + "name": "Debant", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.83333000", + "longitude": "12.81667000" + }, + { + "id": "1880", + "name": "Ebbs", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.63333000", + "longitude": "12.21667000" + }, + { + "id": "1881", + "name": "Eben am Achensee", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41380000", + "longitude": "11.76138000" + }, + { + "id": "1913", + "name": "Ehenbichl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "10.70000000" + }, + { + "id": "1915", + "name": "Ehrwald", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40000000", + "longitude": "10.91667000" + }, + { + "id": "1928", + "name": "Elbigenalp", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29041000", + "longitude": "10.43607000" + }, + { + "id": "1930", + "name": "Ellbögen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "11.45000000" + }, + { + "id": "1931", + "name": "Ellmau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51378000", + "longitude": "12.29937000" + }, + { + "id": "1932", + "name": "Elmen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.34039000", + "longitude": "10.54318000" + }, + { + "id": "1937", + "name": "Endach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56796000", + "longitude": "12.15603000" + }, + { + "id": "1946", + "name": "Erl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.68333000", + "longitude": "12.18333000" + }, + { + "id": "1951", + "name": "Erpfendorf", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58333000", + "longitude": "12.46667000" + }, + { + "id": "2034", + "name": "Fügen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.34700000", + "longitude": "11.84939000" + }, + { + "id": "2035", + "name": "Fügenberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35210000", + "longitude": "11.84173000" + }, + { + "id": "1979", + "name": "Fendels", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05390000", + "longitude": "10.67777000" + }, + { + "id": "1984", + "name": "Fieberbrunn", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.47626000", + "longitude": "12.54347000" + }, + { + "id": "1985", + "name": "Fiecht", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35000000", + "longitude": "11.70000000" + }, + { + "id": "1987", + "name": "Finkenberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15279000", + "longitude": "11.82212000" + }, + { + "id": "1993", + "name": "Fiss", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05714000", + "longitude": "10.61747000" + }, + { + "id": "1998", + "name": "Flaurling", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29143000", + "longitude": "11.12319000" + }, + { + "id": "1999", + "name": "Fliess", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "10.61667000" + }, + { + "id": "2000", + "name": "Flirsch", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15000000", + "longitude": "10.40000000" + }, + { + "id": "2004", + "name": "Forchach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41667000", + "longitude": "10.58333000" + }, + { + "id": "2025", + "name": "Fritzens", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30535000", + "longitude": "11.58950000" + }, + { + "id": "2028", + "name": "Fulpmes", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15202000", + "longitude": "11.34922000" + }, + { + "id": "2050", + "name": "Gallzein", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36807000", + "longitude": "11.77159000" + }, + { + "id": "2051", + "name": "Galtür", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96667000", + "longitude": "10.18333000" + }, + { + "id": "2194", + "name": "Götzens", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23606000", + "longitude": "11.31154000" + }, + { + "id": "2076", + "name": "Gerlos", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22464000", + "longitude": "12.03012000" + }, + { + "id": "2077", + "name": "Gerlosberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "11.93333000" + }, + { + "id": "2096", + "name": "Gnadenwald", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31667000", + "longitude": "11.56667000" + }, + { + "id": "2101", + "name": "Going", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51332000", + "longitude": "12.33164000" + }, + { + "id": "2116", + "name": "Gramais", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26667000", + "longitude": "10.53333000" + }, + { + "id": "2164", + "name": "Grän", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50000000", + "longitude": "10.55000000" + }, + { + "id": "2132", + "name": "Gries am Brenner", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.03849000", + "longitude": "11.48131000" + }, + { + "id": "2133", + "name": "Gries im Sellrain", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.19554000", + "longitude": "11.15619000" + }, + { + "id": "2137", + "name": "Grins", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14034000", + "longitude": "10.51409000" + }, + { + "id": "2138", + "name": "Grinzens", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22927000", + "longitude": "11.25318000" + }, + { + "id": "2170", + "name": "Gschnitz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.04469000", + "longitude": "11.35089000" + }, + { + "id": "2215", + "name": "Haiming", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "10.88333000" + }, + { + "id": "2220", + "name": "Hainzenberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21788000", + "longitude": "11.90034000" + }, + { + "id": "2224", + "name": "Hall in Tirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.51667000" + }, + { + "id": "2237", + "name": "Hart im Zillertal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35106000", + "longitude": "11.86476000" + }, + { + "id": "2245", + "name": "Hatting", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27870000", + "longitude": "11.16838000" + }, + { + "id": "2335", + "name": "Häselgehr", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31667000", + "longitude": "10.50000000" + }, + { + "id": "2338", + "name": "Höfen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "10.68333000" + }, + { + "id": "2345", + "name": "Hötting", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26815000", + "longitude": "11.36868000" + }, + { + "id": "2265", + "name": "Heinfels", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75000000", + "longitude": "12.45000000" + }, + { + "id": "2266", + "name": "Heiterwang", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45000000", + "longitude": "10.75000000" + }, + { + "id": "2289", + "name": "Hippach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20435000", + "longitude": "11.86523000" + }, + { + "id": "2298", + "name": "Hochfilzen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "12.61667000" + }, + { + "id": "2326", + "name": "Holzgau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26045000", + "longitude": "10.34419000" + }, + { + "id": "2328", + "name": "Hopfgarten im Brixental", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44980000", + "longitude": "12.15659000" + }, + { + "id": "2329", + "name": "Hopfgarten in Defereggen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.91917000", + "longitude": "12.53639000" + }, + { + "id": "2350", + "name": "Igls", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23127000", + "longitude": "11.41018000" + }, + { + "id": "2353", + "name": "Imst", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.24504000", + "longitude": "10.73974000" + }, + { + "id": "2354", + "name": "Imsterberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20517000", + "longitude": "10.69605000" + }, + { + "id": "2359", + "name": "Innervillgraten", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81194000", + "longitude": "12.37472000" + }, + { + "id": "2360", + "name": "Innsbruck", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26266000", + "longitude": "11.39454000" + }, + { + "id": "2361", + "name": "Innsbruck Stadt", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28433000", + "longitude": "11.37706000" + }, + { + "id": "2364", + "name": "Inzing", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27370000", + "longitude": "11.19751000" + }, + { + "id": "2368", + "name": "Ischgl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01257000", + "longitude": "10.29179000" + }, + { + "id": "2369", + "name": "Itter", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "12.13333000" + }, + { + "id": "2376", + "name": "Jenbach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.39173000", + "longitude": "11.77245000" + }, + { + "id": "2378", + "name": "Jerzens", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15120000", + "longitude": "10.74686000" + }, + { + "id": "2379", + "name": "Jochberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.37920000", + "longitude": "12.41807000" + }, + { + "id": "2384", + "name": "Jungholz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.57409000", + "longitude": "10.44723000" + }, + { + "id": "2393", + "name": "Kaltenbach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.86667000" + }, + { + "id": "2401", + "name": "Kapfing", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33333000", + "longitude": "11.85000000" + }, + { + "id": "2403", + "name": "Kappl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "10.38333000" + }, + { + "id": "2407", + "name": "Karrösten", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22540000", + "longitude": "10.76561000" + }, + { + "id": "2406", + "name": "Karres", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "10.78333000" + }, + { + "id": "2408", + "name": "Kartitsch", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.72889000", + "longitude": "12.50083000" + }, + { + "id": "2413", + "name": "Kauns", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07822000", + "longitude": "10.69219000" + }, + { + "id": "2512", + "name": "Kössen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.66990000", + "longitude": "12.40545000" + }, + { + "id": "2417", + "name": "Kematen in Tirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "11.26667000" + }, + { + "id": "2431", + "name": "Kirchberg in Tirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44539000", + "longitude": "12.31602000" + }, + { + "id": "2433", + "name": "Kirchbichl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51743000", + "longitude": "12.09629000" + }, + { + "id": "2435", + "name": "Kirchdorf in Tirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.55626000", + "longitude": "12.44511000" + }, + { + "id": "2443", + "name": "Kitzbühel", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44637000", + "longitude": "12.39215000" + }, + { + "id": "2472", + "name": "Kolsass", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "11.63333000" + }, + { + "id": "2473", + "name": "Kolsassberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28150000", + "longitude": "11.65289000" + }, + { + "id": "2481", + "name": "Kramsach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44312000", + "longitude": "11.87545000" + }, + { + "id": "2503", + "name": "Kufstein", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58333000", + "longitude": "12.16667000" + }, + { + "id": "2507", + "name": "Kundl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "11.98333000" + }, + { + "id": "2526", + "name": "Ladis", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07459000", + "longitude": "10.64949000" + }, + { + "id": "2530", + "name": "Landeck", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13988000", + "longitude": "10.56593000" + }, + { + "id": "2548", + "name": "Lans", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23833000", + "longitude": "11.43139000" + }, + { + "id": "2557", + "name": "Lavant", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.79889000", + "longitude": "12.83806000" + }, + { + "id": "2623", + "name": "Längenfeld", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.07398000", + "longitude": "10.96951000" + }, + { + "id": "2560", + "name": "Lechaschau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48804000", + "longitude": "10.70652000" + }, + { + "id": "2565", + "name": "Leisach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81250000", + "longitude": "12.74861000" + }, + { + "id": "2587", + "name": "Lermoos", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40358000", + "longitude": "10.88070000" + }, + { + "id": "2588", + "name": "Leutasch", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36890000", + "longitude": "11.14404000" + }, + { + "id": "2596", + "name": "Lienz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.82890000", + "longitude": "12.76903000" + }, + { + "id": "2655", + "name": "Mariastein", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.52772000", + "longitude": "12.05479000" + }, + { + "id": "2656", + "name": "Mariatal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44788000", + "longitude": "11.87210000" + }, + { + "id": "2667", + "name": "Matrei am Brenner", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12794000", + "longitude": "11.45176000" + }, + { + "id": "2668", + "name": "Matrei in Osttirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00000000", + "longitude": "12.53333000" + }, + { + "id": "2677", + "name": "Maurach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42124000", + "longitude": "11.75305000" + }, + { + "id": "2682", + "name": "Mayrhofen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "11.86667000" + }, + { + "id": "2750", + "name": "Mötz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "10.95000000" + }, + { + "id": "2751", + "name": "Mühlau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.40000000" + }, + { + "id": "2753", + "name": "Mühlbachl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13333000", + "longitude": "11.45000000" + }, + { + "id": "2762", + "name": "Münster", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42164000", + "longitude": "11.83356000" + }, + { + "id": "2683", + "name": "Medraz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14256000", + "longitude": "11.34287000" + }, + { + "id": "2699", + "name": "Mieders", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "11.38333000" + }, + { + "id": "2700", + "name": "Mieming", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "10.98333000" + }, + { + "id": "2703", + "name": "Mils bei Imst", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20616000", + "longitude": "10.67485000" + }, + { + "id": "2704", + "name": "Mils bei Solbad Hall", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.53333000" + }, + { + "id": "2715", + "name": "Mitterndorf", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.57728000", + "longitude": "12.16968000" + }, + { + "id": "2737", + "name": "Musau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53195000", + "longitude": "10.67339000" + }, + { + "id": "2738", + "name": "Mutters", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23333000", + "longitude": "11.38333000" + }, + { + "id": "2770", + "name": "Namlos", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35000000", + "longitude": "10.66667000" + }, + { + "id": "2771", + "name": "Nassereith", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31667000", + "longitude": "10.83333000" + }, + { + "id": "2773", + "name": "Natters", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23414000", + "longitude": "11.37342000" + }, + { + "id": "2774", + "name": "Nauders", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.88859000", + "longitude": "10.50126000" + }, + { + "id": "2779", + "name": "Nesselwängle", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48333000", + "longitude": "10.61667000" + }, + { + "id": "2815", + "name": "Neustift im Stubaital", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "11.31667000" + }, + { + "id": "2821", + "name": "Niederau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45000000", + "longitude": "12.08333000" + }, + { + "id": "2822", + "name": "Niederbreitenbach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53333000", + "longitude": "12.08333000" + }, + { + "id": "2826", + "name": "Niederndorf", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.65000000", + "longitude": "12.21667000" + }, + { + "id": "2836", + "name": "Nikolsdorf", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.78583000", + "longitude": "12.91333000" + }, + { + "id": "2846", + "name": "Oberau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44336000", + "longitude": "12.04891000" + }, + { + "id": "2856", + "name": "Oberhofen im Inntal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "11.08333000" + }, + { + "id": "2858", + "name": "Oberlienz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.84722000", + "longitude": "12.73139000" + }, + { + "id": "2860", + "name": "Obermieming", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "10.98333000" + }, + { + "id": "2861", + "name": "Obernberg am Brenner", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.01667000", + "longitude": "11.41667000" + }, + { + "id": "2866", + "name": "Oberndorf in Tirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50000000", + "longitude": "12.38333000" + }, + { + "id": "2869", + "name": "Oberperfuss", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.24451000", + "longitude": "11.24755000" + }, + { + "id": "2877", + "name": "Obertilliach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.71056000", + "longitude": "12.61444000" + }, + { + "id": "2889", + "name": "Obsteig", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "10.93333000" + }, + { + "id": "2893", + "name": "Oetz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "10.90000000" + }, + { + "id": "2929", + "name": "Patsch", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20527000", + "longitude": "11.41510000" + }, + { + "id": "2949", + "name": "Pettnau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29204000", + "longitude": "11.15962000" + }, + { + "id": "2950", + "name": "Pettneu", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14595000", + "longitude": "10.33655000" + }, + { + "id": "2953", + "name": "Pfaffenhofen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "11.08333000" + }, + { + "id": "2958", + "name": "Pflach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51667000", + "longitude": "10.71667000" + }, + { + "id": "2959", + "name": "Pfons", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14201000", + "longitude": "11.46071000" + }, + { + "id": "2960", + "name": "Pfunds", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96667000", + "longitude": "10.55000000" + }, + { + "id": "2961", + "name": "Pians", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13486000", + "longitude": "10.51237000" + }, + { + "id": "2969", + "name": "Pill", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.32352000", + "longitude": "11.68018000" + }, + { + "id": "3011", + "name": "Politischer Bezirk Imst", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "10.86667000" + }, + { + "id": "3012", + "name": "Politischer Bezirk Innsbruck Land", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "11.33333000" + }, + { + "id": "3015", + "name": "Politischer Bezirk Kitzbühel", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43333000", + "longitude": "12.38333000" + }, + { + "id": "3019", + "name": "Politischer Bezirk Kufstein", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50000000", + "longitude": "12.03333000" + }, + { + "id": "3020", + "name": "Politischer Bezirk Landeck", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12575000", + "longitude": "10.56679000" + }, + { + "id": "3023", + "name": "Politischer Bezirk Lienz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.90000000", + "longitude": "12.50000000" + }, + { + "id": "3038", + "name": "Politischer Bezirk Reutte", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41667000", + "longitude": "10.55000000" + }, + { + "id": "3046", + "name": "Politischer Bezirk Schwaz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26667000", + "longitude": "11.76667000" + }, + { + "id": "3064", + "name": "Polling in Tirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.15000000" + }, + { + "id": "3072", + "name": "Pradl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26539000", + "longitude": "11.41520000" + }, + { + "id": "3087", + "name": "Prutz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "10.66667000" + }, + { + "id": "3124", + "name": "Radfeld", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44806000", + "longitude": "11.91424000" + }, + { + "id": "3135", + "name": "Ramsau im Zillertal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20383000", + "longitude": "11.87545000" + }, + { + "id": "3138", + "name": "Ranggen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25727000", + "longitude": "11.21120000" + }, + { + "id": "3150", + "name": "Rattenberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43941000", + "longitude": "11.89407000" + }, + { + "id": "3175", + "name": "Reith bei Kitzbühel", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "12.35000000" + }, + { + "id": "3176", + "name": "Reith bei Seefeld", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "11.20000000" + }, + { + "id": "3177", + "name": "Reith im Alpbachtal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41694000", + "longitude": "11.87785000" + }, + { + "id": "3180", + "name": "Rettenschöss", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.65718000", + "longitude": "12.26872000" + }, + { + "id": "3184", + "name": "Reutte", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48333000", + "longitude": "10.71667000" + }, + { + "id": "3186", + "name": "Ried im Oberinntal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.05000000", + "longitude": "10.65000000" + }, + { + "id": "3188", + "name": "Ried im Zillertal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30000000", + "longitude": "11.86667000" + }, + { + "id": "3194", + "name": "Rietz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28593000", + "longitude": "11.03075000" + }, + { + "id": "3196", + "name": "Rinn", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "11.50000000" + }, + { + "id": "3206", + "name": "Rohrberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23333000", + "longitude": "11.91667000" + }, + { + "id": "3209", + "name": "Roppen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "10.81667000" + }, + { + "id": "3218", + "name": "Rum", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.45000000" + }, + { + "id": "3271", + "name": "Sankt Johann in Tirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.52330000", + "longitude": "12.42320000" + }, + { + "id": "3338", + "name": "Sankt Ulrich am Pillersee", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.52740000", + "longitude": "12.57239000" + }, + { + "id": "3346", + "name": "Sankt Veit in Defereggen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.92722000", + "longitude": "12.42972000" + }, + { + "id": "3351", + "name": "Sautens", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "10.86667000" + }, + { + "id": "3566", + "name": "Sölden", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.96667000", + "longitude": "11.00000000" + }, + { + "id": "3567", + "name": "Söll", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50378000", + "longitude": "12.19221000" + }, + { + "id": "3360", + "name": "Scharnitz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38899000", + "longitude": "11.26455000" + }, + { + "id": "3363", + "name": "Schattwald", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51427000", + "longitude": "10.46143000" + }, + { + "id": "3418", + "name": "Schönberg im Stubaital", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18333000", + "longitude": "11.41667000" + }, + { + "id": "3422", + "name": "Schönwies", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.19665000", + "longitude": "10.65742000" + }, + { + "id": "3365", + "name": "Scheffau am Wilden Kaiser", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.52943000", + "longitude": "12.25139000" + }, + { + "id": "3372", + "name": "Schlaiten", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.87944000", + "longitude": "12.65417000" + }, + { + "id": "3379", + "name": "Schlitters", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38045000", + "longitude": "11.83888000" + }, + { + "id": "3404", + "name": "Schwaz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35169000", + "longitude": "11.71014000" + }, + { + "id": "3408", + "name": "Schwendau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.19753000", + "longitude": "11.85897000" + }, + { + "id": "3409", + "name": "Schwendt", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.63182000", + "longitude": "12.39266000" + }, + { + "id": "3411", + "name": "Schwoich", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.54600000", + "longitude": "12.14049000" + }, + { + "id": "3427", + "name": "See", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "10.46667000" + }, + { + "id": "3431", + "name": "Seefeld in Tirol", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33016000", + "longitude": "11.18786000" + }, + { + "id": "3441", + "name": "Sellrain", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "11.21667000" + }, + { + "id": "3446", + "name": "Serfaus", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.04018000", + "longitude": "10.60339000" + }, + { + "id": "3459", + "name": "Sillian", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75278000", + "longitude": "12.42111000" + }, + { + "id": "3460", + "name": "Silz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26667000", + "longitude": "10.93333000" + }, + { + "id": "3463", + "name": "Sistrans", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23333000", + "longitude": "11.45000000" + }, + { + "id": "3482", + "name": "St Anton am Arlberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12750000", + "longitude": "10.26372000" + }, + { + "id": "3501", + "name": "Stams", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27603000", + "longitude": "10.98315000" + }, + { + "id": "3502", + "name": "Stans", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36667000", + "longitude": "11.71667000" + }, + { + "id": "3503", + "name": "Stanz bei Landeck", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14758000", + "longitude": "10.55340000" + }, + { + "id": "3504", + "name": "Stanzach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38333000", + "longitude": "10.56667000" + }, + { + "id": "3508", + "name": "Steeg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.24393000", + "longitude": "10.29436000" + }, + { + "id": "3513", + "name": "Steinach am Brenner", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "11.46667000" + }, + { + "id": "3540", + "name": "Strass im Zillertal", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.39556000", + "longitude": "11.81966000" + }, + { + "id": "3541", + "name": "Strassen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.75389000", + "longitude": "12.48417000" + }, + { + "id": "3552", + "name": "Strengen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12589000", + "longitude": "10.46199000" + }, + { + "id": "3558", + "name": "Stumm", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29052000", + "longitude": "11.88755000" + }, + { + "id": "3559", + "name": "Stummerberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.91667000" + }, + { + "id": "3571", + "name": "Tannheim", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.49934000", + "longitude": "10.51641000" + }, + { + "id": "3572", + "name": "Tarrenz", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26667000", + "longitude": "10.76667000" + }, + { + "id": "3580", + "name": "Telfes im Stubai", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "11.36667000" + }, + { + "id": "3581", + "name": "Telfs", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30707000", + "longitude": "11.06817000" + }, + { + "id": "3582", + "name": "Terfens", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.32355000", + "longitude": "11.64388000" + }, + { + "id": "3589", + "name": "Thaur", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29476000", + "longitude": "11.47529000" + }, + { + "id": "3595", + "name": "Thurn", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.85056000", + "longitude": "12.76861000" + }, + { + "id": "3604", + "name": "Tobadill", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12513000", + "longitude": "10.51404000" + }, + { + "id": "3624", + "name": "Trins", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "11.41667000" + }, + { + "id": "3625", + "name": "Tristach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.81611000", + "longitude": "12.78972000" + }, + { + "id": "3632", + "name": "Tulfes", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25806000", + "longitude": "11.53333000" + }, + { + "id": "3636", + "name": "Tux", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15559000", + "longitude": "11.72872000" + }, + { + "id": "3639", + "name": "Uderns", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31667000", + "longitude": "11.86667000" + }, + { + "id": "3643", + "name": "Umhausen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13503000", + "longitude": "10.92826000" + }, + { + "id": "3656", + "name": "Unterlangkampfen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.55000000", + "longitude": "12.10000000" + }, + { + "id": "3658", + "name": "Unterperfuss", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.26667000", + "longitude": "11.25000000" + }, + { + "id": "3663", + "name": "Untertilliach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "46.70346000", + "longitude": "12.67758000" + }, + { + "id": "3671", + "name": "Vals", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.04507000", + "longitude": "11.53281000" + }, + { + "id": "3708", + "name": "Völs", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "11.33333000" + }, + { + "id": "3690", + "name": "Vils", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.55000000", + "longitude": "10.63333000" + }, + { + "id": "3691", + "name": "Virgen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.00159000", + "longitude": "12.45661000" + }, + { + "id": "3696", + "name": "Voldöpp", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44469000", + "longitude": "11.88343000" + }, + { + "id": "3695", + "name": "Volders", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.56667000" + }, + { + "id": "3697", + "name": "Vomp", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33333000", + "longitude": "11.68333000" + }, + { + "id": "3700", + "name": "Vorderhornbach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.37009000", + "longitude": "10.53947000" + }, + { + "id": "3702", + "name": "Vorderthiersee", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58333000", + "longitude": "12.10000000" + }, + { + "id": "3720", + "name": "Waidring", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58333000", + "longitude": "12.56667000" + }, + { + "id": "3724", + "name": "Walchsee", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.65163000", + "longitude": "12.31868000" + }, + { + "id": "3751", + "name": "Wattenberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28333000", + "longitude": "11.60000000" + }, + { + "id": "3752", + "name": "Wattens", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29419000", + "longitude": "11.59070000" + }, + { + "id": "3853", + "name": "Wängle", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48658000", + "longitude": "10.68995000" + }, + { + "id": "3857", + "name": "Wörgl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48906000", + "longitude": "12.06174000" + }, + { + "id": "3753", + "name": "Weer", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30375000", + "longitude": "11.64498000" + }, + { + "id": "3754", + "name": "Weerberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29841000", + "longitude": "11.66592000" + }, + { + "id": "3770", + "name": "Weissach", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.57091000", + "longitude": "12.16255000" + }, + { + "id": "3771", + "name": "Weissenbach am Lech", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44162000", + "longitude": "10.64071000" + }, + { + "id": "3790", + "name": "Wenns", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "10.73333000" + }, + { + "id": "3798", + "name": "Westendorf", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43208000", + "longitude": "12.21406000" + }, + { + "id": "3811", + "name": "Wiesing", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40486000", + "longitude": "11.79708000" + }, + { + "id": "3814", + "name": "Wildermieming", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31667000", + "longitude": "11.01667000" + }, + { + "id": "3816", + "name": "Wildschönau", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.40619000", + "longitude": "12.03784000" + }, + { + "id": "3821", + "name": "Wilten", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25829000", + "longitude": "11.38808000" + }, + { + "id": "3867", + "name": "Zams", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15844000", + "longitude": "10.58970000" + }, + { + "id": "3896", + "name": "Zöblen", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50772000", + "longitude": "10.47971000" + }, + { + "id": "3871", + "name": "Zell", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58333000", + "longitude": "12.15000000" + }, + { + "id": "3875", + "name": "Zell am Ziller", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23333000", + "longitude": "11.88333000" + }, + { + "id": "3879", + "name": "Zellberg", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23333000", + "longitude": "11.85000000" + }, + { + "id": "3888", + "name": "Zirl", + "state_id": 2064, + "state_code": "7", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27410000", + "longitude": "11.23961000" + }, + { + "id": "1605", + "name": "Abwinden", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25903000", + "longitude": "14.42625000" + }, + { + "id": "1609", + "name": "Adlwang", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99245000", + "longitude": "14.21742000" + }, + { + "id": "1612", + "name": "Afiesl", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.58229000", + "longitude": "14.12777000" + }, + { + "id": "1615", + "name": "Ahorn", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.52382000", + "longitude": "14.17408000" + }, + { + "id": "1617", + "name": "Aichkirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10944000", + "longitude": "13.79158000" + }, + { + "id": "1619", + "name": "Aigen im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.64578000", + "longitude": "13.97109000" + }, + { + "id": "1621", + "name": "Aistersheim", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18680000", + "longitude": "13.74175000" + }, + { + "id": "1622", + "name": "Alberndorf in der Riedmark", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40607000", + "longitude": "14.41441000" + }, + { + "id": "1626", + "name": "Alkoven", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28753000", + "longitude": "14.10748000" + }, + { + "id": "1630", + "name": "Allerheiligen im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30215000", + "longitude": "14.65061000" + }, + { + "id": "1632", + "name": "Allhaming", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15246000", + "longitude": "14.17022000" + }, + { + "id": "1637", + "name": "Altenberg bei Linz", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.37284000", + "longitude": "14.35029000" + }, + { + "id": "1640", + "name": "Altenfelden", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.48555000", + "longitude": "13.96980000" + }, + { + "id": "1645", + "name": "Altheim", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25154000", + "longitude": "13.23406000" + }, + { + "id": "1648", + "name": "Altlichtenberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36001000", + "longitude": "14.25845000" + }, + { + "id": "1651", + "name": "Altmünster", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90219000", + "longitude": "13.76415000" + }, + { + "id": "1654", + "name": "Ampflwang", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08333000", + "longitude": "13.56667000" + }, + { + "id": "1660", + "name": "Andorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.37130000", + "longitude": "13.57412000" + }, + { + "id": "1670", + "name": "Ansfelden", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20969000", + "longitude": "14.29004000" + }, + { + "id": "1680", + "name": "Arnreit", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.52513000", + "longitude": "13.99487000" + }, + { + "id": "1685", + "name": "Aschach an der Donau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36458000", + "longitude": "14.02044000" + }, + { + "id": "1686", + "name": "Aschach an der Steyr", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01312000", + "longitude": "14.33544000" + }, + { + "id": "1693", + "name": "Asten", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21941000", + "longitude": "14.41784000" + }, + { + "id": "1695", + "name": "Attersee", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.91646000", + "longitude": "13.53953000" + }, + { + "id": "1696", + "name": "Attnang", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01667000", + "longitude": "13.71667000" + }, + { + "id": "1697", + "name": "Attnang-Puchheim", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00833000", + "longitude": "13.71667000" + }, + { + "id": "1698", + "name": "Atzbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08364000", + "longitude": "13.70347000" + }, + { + "id": "1700", + "name": "Atzesberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.53959000", + "longitude": "13.86936000" + }, + { + "id": "1704", + "name": "Au an der Traun", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18020000", + "longitude": "14.11248000" + }, + { + "id": "1705", + "name": "Audorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21810000", + "longitude": "14.27931000" + }, + { + "id": "1710", + "name": "Aurach am Hongar", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95182000", + "longitude": "13.67291000" + }, + { + "id": "1711", + "name": "Aurolzmünster", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24834000", + "longitude": "13.45533000" + }, + { + "id": "1715", + "name": "Bachmanning", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13104000", + "longitude": "13.79436000" + }, + { + "id": "1724", + "name": "Bad Goisern", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.64252000", + "longitude": "13.61609000" + }, + { + "id": "1725", + "name": "Bad Hall", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03832000", + "longitude": "14.20773000" + }, + { + "id": "1728", + "name": "Bad Ischl", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71109000", + "longitude": "13.61893000" + }, + { + "id": "1729", + "name": "Bad Kreuzen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.26737000", + "longitude": "14.80648000" + }, + { + "id": "1730", + "name": "Bad Leonfelden", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.52047000", + "longitude": "14.29459000" + }, + { + "id": "1735", + "name": "Bad Schallerbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22999000", + "longitude": "13.91925000" + }, + { + "id": "1741", + "name": "Bad Zell", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34906000", + "longitude": "14.66945000" + }, + { + "id": "1754", + "name": "Berg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29278000", + "longitude": "14.24778000" + }, + { + "id": "1756", + "name": "Bergern", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16752000", + "longitude": "14.11153000" + }, + { + "id": "1757", + "name": "Bergham", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28182000", + "longitude": "14.23141000" + }, + { + "id": "1760", + "name": "Bernardin", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16042000", + "longitude": "14.00834000" + }, + { + "id": "1792", + "name": "Brandln", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14510000", + "longitude": "13.99504000" + }, + { + "id": "1794", + "name": "Braunau am Inn", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25628000", + "longitude": "13.04343000" + }, + { + "id": "1793", + "name": "Braunau Neustadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24606000", + "longitude": "13.03583000" + }, + { + "id": "1819", + "name": "Buchkirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22427000", + "longitude": "14.02242000" + }, + { + "id": "1822", + "name": "Burgfried", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.51990000", + "longitude": "14.29570000" + }, + { + "id": "1873", + "name": "Dörfl", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01245000", + "longitude": "13.65472000" + }, + { + "id": "1876", + "name": "Dürnau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99710000", + "longitude": "13.64459000" + }, + { + "id": "1835", + "name": "Desselbrunn", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02145000", + "longitude": "13.77027000" + }, + { + "id": "1845", + "name": "Dickerldorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.17676000", + "longitude": "14.05705000" + }, + { + "id": "1849", + "name": "Diesseits", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29216000", + "longitude": "13.43546000" + }, + { + "id": "1850", + "name": "Dietach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09018000", + "longitude": "14.41647000" + }, + { + "id": "1851", + "name": "Dietachdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08364000", + "longitude": "14.42874000" + }, + { + "id": "1860", + "name": "Doppl", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24811000", + "longitude": "14.25416000" + }, + { + "id": "1885", + "name": "Ebensee", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.80716000", + "longitude": "13.77900000" + }, + { + "id": "1891", + "name": "Eberschwang", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15504000", + "longitude": "13.56194000" + }, + { + "id": "1893", + "name": "Eberstalzell", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04392000", + "longitude": "13.98319000" + }, + { + "id": "1905", + "name": "Edt bei Lambach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11667000", + "longitude": "13.88333000" + }, + { + "id": "1906", + "name": "Eferding", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30866000", + "longitude": "14.02233000" + }, + { + "id": "1921", + "name": "Eidenberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.39439000", + "longitude": "14.23313000" + }, + { + "id": "1939", + "name": "Engerwitzdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34507000", + "longitude": "14.44204000" + }, + { + "id": "1940", + "name": "Enns", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21346000", + "longitude": "14.47612000" + }, + { + "id": "1974", + "name": "Feldkirchen an der Donau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34524000", + "longitude": "14.05134000" + }, + { + "id": "1992", + "name": "Fisching", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22301000", + "longitude": "14.42771000" + }, + { + "id": "2006", + "name": "Fornach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02277000", + "longitude": "13.42941000" + }, + { + "id": "2008", + "name": "Frankenburg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06844000", + "longitude": "13.49065000" + }, + { + "id": "2010", + "name": "Frankenmarkt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98333000", + "longitude": "13.41667000" + }, + { + "id": "2019", + "name": "Freindorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22570000", + "longitude": "14.29510000" + }, + { + "id": "2020", + "name": "Freistadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.51103000", + "longitude": "14.50453000" + }, + { + "id": "2042", + "name": "Gaflenz", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89511000", + "longitude": "14.72477000" + }, + { + "id": "2048", + "name": "Gallneukirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35363000", + "longitude": "14.41604000" + }, + { + "id": "2049", + "name": "Gallspach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20992000", + "longitude": "13.80981000" + }, + { + "id": "2054", + "name": "Gampern", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98877000", + "longitude": "13.55430000" + }, + { + "id": "2059", + "name": "Garsten", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02240000", + "longitude": "14.40747000" + }, + { + "id": "2062", + "name": "Gaspoltshofen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14324000", + "longitude": "13.73643000" + }, + { + "id": "2066", + "name": "Gaumberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28085000", + "longitude": "14.26935000" + }, + { + "id": "2068", + "name": "Geboltskirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15338000", + "longitude": "13.63360000" + }, + { + "id": "2092", + "name": "Gmunden", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.91839000", + "longitude": "13.79933000" + }, + { + "id": "2102", + "name": "Goldwörth", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32664000", + "longitude": "14.10112000" + }, + { + "id": "2105", + "name": "Gosau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58417000", + "longitude": "13.53447000" + }, + { + "id": "2117", + "name": "Gramastetten", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.38028000", + "longitude": "14.19185000" + }, + { + "id": "2167", + "name": "Grünau im Almtal", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85493000", + "longitude": "13.95573000" + }, + { + "id": "2169", + "name": "Grünburg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97234000", + "longitude": "14.26472000" + }, + { + "id": "2125", + "name": "Grein", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22862000", + "longitude": "14.85884000" + }, + { + "id": "2134", + "name": "Grieskirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23333000", + "longitude": "13.83333000" + }, + { + "id": "2143", + "name": "Grossraming", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.88333000", + "longitude": "14.55000000" + }, + { + "id": "2171", + "name": "Gschwandt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93515000", + "longitude": "13.84569000" + }, + { + "id": "2175", + "name": "Gunskirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13333000", + "longitude": "13.95000000" + }, + { + "id": "2179", + "name": "Gutau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.41724000", + "longitude": "14.61285000" + }, + { + "id": "2199", + "name": "Haag", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27063000", + "longitude": "14.26875000" + }, + { + "id": "2201", + "name": "Haag am Hausruck", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18423000", + "longitude": "13.64373000" + }, + { + "id": "2208", + "name": "Hagenberg im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36788000", + "longitude": "14.51689000" + }, + { + "id": "2210", + "name": "Haibach im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.44429000", + "longitude": "14.34411000" + }, + { + "id": "2211", + "name": "Haid", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20477000", + "longitude": "14.25107000" + }, + { + "id": "2212", + "name": "Haiden", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71790000", + "longitude": "13.56906000" + }, + { + "id": "2214", + "name": "Haidl", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.17267000", + "longitude": "14.05297000" + }, + { + "id": "2227", + "name": "Handenberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13356000", + "longitude": "13.00751000" + }, + { + "id": "2234", + "name": "Hart", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.26526000", + "longitude": "14.25691000" + }, + { + "id": "2239", + "name": "Hartheim", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28079000", + "longitude": "14.11426000" + }, + { + "id": "2240", + "name": "Hartkirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.36349000", + "longitude": "14.00422000" + }, + { + "id": "2243", + "name": "Haselbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25308000", + "longitude": "13.05614000" + }, + { + "id": "2244", + "name": "Haslach an der Mühl", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.57570000", + "longitude": "14.03984000" + }, + { + "id": "2343", + "name": "Hörsching", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22627000", + "longitude": "14.17786000" + }, + { + "id": "2267", + "name": "Hellmonsödt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43333000", + "longitude": "14.30000000" + }, + { + "id": "2276", + "name": "Herzogsdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43011000", + "longitude": "14.11280000" + }, + { + "id": "2297", + "name": "Hochburg-Ach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13001000", + "longitude": "12.87735000" + }, + { + "id": "2300", + "name": "Hochpoint", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16139000", + "longitude": "14.03838000" + }, + { + "id": "2303", + "name": "Hof", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.86667000", + "longitude": "13.31667000" + }, + { + "id": "2309", + "name": "Hofkirchen im Traunkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14312000", + "longitude": "14.37776000" + }, + { + "id": "2327", + "name": "Holzhausen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22296000", + "longitude": "14.09683000" + }, + { + "id": "2358", + "name": "Innerschwand", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83333000", + "longitude": "13.40000000" + }, + { + "id": "2363", + "name": "Inzersdorf im Kremstal", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.92808000", + "longitude": "14.08104000" + }, + { + "id": "2392", + "name": "Kaltenbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70618000", + "longitude": "13.60914000" + }, + { + "id": "2410", + "name": "Katsdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.31791000", + "longitude": "14.47432000" + }, + { + "id": "2511", + "name": "Königswiesen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40453000", + "longitude": "14.83824000" + }, + { + "id": "2415", + "name": "Kematen an der Krems", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11150000", + "longitude": "14.19391000" + }, + { + "id": "2432", + "name": "Kirchberg ob der Donau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.44440000", + "longitude": "13.93805000" + }, + { + "id": "2434", + "name": "Kirchdorf an der Krems", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90558000", + "longitude": "14.12228000" + }, + { + "id": "2438", + "name": "Kirchschlag bei Linz", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.41149000", + "longitude": "14.27656000" + }, + { + "id": "2445", + "name": "Klaffer am Hochficht", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.69544000", + "longitude": "13.88131000" + }, + { + "id": "2474", + "name": "Kopfing im Innkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43991000", + "longitude": "13.65841000" + }, + { + "id": "2485", + "name": "Kremsdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20031000", + "longitude": "14.26249000" + }, + { + "id": "2486", + "name": "Kremsmünster", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05290000", + "longitude": "14.12919000" + }, + { + "id": "2492", + "name": "Kronstorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14324000", + "longitude": "14.46307000" + }, + { + "id": "2518", + "name": "Laab", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.26110000", + "longitude": "13.05418000" + }, + { + "id": "2520", + "name": "Laahen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.17192000", + "longitude": "14.00637000" + }, + { + "id": "2521", + "name": "Laakirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98188000", + "longitude": "13.82166000" + }, + { + "id": "2528", + "name": "Lambach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09276000", + "longitude": "13.87453000" + }, + { + "id": "2542", + "name": "Langenstein", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25200000", + "longitude": "14.47655000" + }, + { + "id": "2545", + "name": "Langholzfeld", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24297000", + "longitude": "14.24772000" + }, + { + "id": "2554", + "name": "Laussa", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "14.45000000" + }, + { + "id": "2571", + "name": "Lembach im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.49517000", + "longitude": "13.89513000" + }, + { + "id": "2577", + "name": "Lenzing", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.97326000", + "longitude": "13.60846000" + }, + { + "id": "2582", + "name": "Leonding", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27965000", + "longitude": "14.25330000" + }, + { + "id": "2583", + "name": "Leonstein", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89666000", + "longitude": "14.23124000" + }, + { + "id": "2591", + "name": "Lichtenegg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15000000", + "longitude": "14.00000000" + }, + { + "id": "2603", + "name": "Linz", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30639000", + "longitude": "14.28611000" + }, + { + "id": "2604", + "name": "Linz Stadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.30000000", + "longitude": "14.28333000" + }, + { + "id": "2616", + "name": "Losenstein", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.92428000", + "longitude": "14.43672000" + }, + { + "id": "2619", + "name": "Luftenberg an der Donau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27462000", + "longitude": "14.41303000" + }, + { + "id": "2632", + "name": "Manning", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08851000", + "longitude": "13.66682000" + }, + { + "id": "2637", + "name": "Marchtrenk", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.19275000", + "longitude": "14.11394000" + }, + { + "id": "2645", + "name": "Maria Neustift", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93333000", + "longitude": "14.60000000" + }, + { + "id": "2648", + "name": "Maria Schmolln", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13820000", + "longitude": "13.21981000" + }, + { + "id": "2670", + "name": "Mattighofen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10732000", + "longitude": "13.15081000" + }, + { + "id": "2676", + "name": "Mauerkirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.19173000", + "longitude": "13.13338000" + }, + { + "id": "2754", + "name": "Mühldorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.89689000", + "longitude": "13.95049000" + }, + { + "id": "2763", + "name": "Münzbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.26737000", + "longitude": "14.71009000" + }, + { + "id": "2764", + "name": "Münzkirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.48333000", + "longitude": "13.56667000" + }, + { + "id": "2684", + "name": "Meggenhofen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18017000", + "longitude": "13.79582000" + }, + { + "id": "2685", + "name": "Mehrnbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20809000", + "longitude": "13.43525000" + }, + { + "id": "2695", + "name": "Michaelnbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28788000", + "longitude": "13.83144000" + }, + { + "id": "2697", + "name": "Micheldorf in Oberösterreich", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87764000", + "longitude": "14.13357000" + }, + { + "id": "2713", + "name": "Mitterkirchen im Machland", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18795000", + "longitude": "14.69593000" + }, + { + "id": "2720", + "name": "Mittertreffling", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33868000", + "longitude": "14.36505000" + }, + { + "id": "2723", + "name": "Molln", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.88723000", + "longitude": "14.25819000" + }, + { + "id": "2724", + "name": "Mondsee", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85648000", + "longitude": "13.34908000" + }, + { + "id": "2727", + "name": "Moosdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04492000", + "longitude": "12.98902000" + }, + { + "id": "2733", + "name": "Munderfing", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07039000", + "longitude": "13.18162000" + }, + { + "id": "2768", + "name": "Naarn im Machlande", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22553000", + "longitude": "14.60838000" + }, + { + "id": "2772", + "name": "Natternbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.39730000", + "longitude": "13.74965000" + }, + { + "id": "2840", + "name": "Nöstlbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16660000", + "longitude": "14.24609000" + }, + { + "id": "2775", + "name": "Nebelberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.62854000", + "longitude": "13.84629000" + }, + { + "id": "2785", + "name": "Neubau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21901000", + "longitude": "14.19301000" + }, + { + "id": "2791", + "name": "Neue Heimat", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24565000", + "longitude": "13.04172000" + }, + { + "id": "2796", + "name": "Neuhofen an der Krems", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13866000", + "longitude": "14.22764000" + }, + { + "id": "2798", + "name": "Neukirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87502000", + "longitude": "13.71111000" + }, + { + "id": "2800", + "name": "Neukirchen am Walde", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.40584000", + "longitude": "13.78158000" + }, + { + "id": "2801", + "name": "Neukirchen an der Vöckla", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04053000", + "longitude": "13.53760000" + }, + { + "id": "2802", + "name": "Neukirchen bei Lambach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10000000", + "longitude": "13.81667000" + }, + { + "id": "2806", + "name": "Neumarkt im Hausruckkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27280000", + "longitude": "13.72836000" + }, + { + "id": "2807", + "name": "Neumarkt im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.42818000", + "longitude": "14.48444000" + }, + { + "id": "2818", + "name": "Neuzeug", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05000000", + "longitude": "14.33333000" + }, + { + "id": "2827", + "name": "Niederneukirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16093000", + "longitude": "14.33965000" + }, + { + "id": "2830", + "name": "Niederstraß", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01398000", + "longitude": "13.72956000" + }, + { + "id": "2831", + "name": "Niederthalheim", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09901000", + "longitude": "13.76870000" + }, + { + "id": "2852", + "name": "Oberhaid", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.17593000", + "longitude": "14.01495000" + }, + { + "id": "2853", + "name": "Oberhart", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18333000", + "longitude": "14.05000000" + }, + { + "id": "2855", + "name": "Oberhofen am Irrsee", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95000000", + "longitude": "13.30000000" + }, + { + "id": "2862", + "name": "Obernberg am Inn", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32133000", + "longitude": "13.33427000" + }, + { + "id": "2865", + "name": "Oberndorf bei Schwanenstadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05559000", + "longitude": "13.75677000" + }, + { + "id": "2868", + "name": "Oberneukirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46404000", + "longitude": "14.22275000" + }, + { + "id": "2883", + "name": "Oberwang", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.86667000", + "longitude": "13.43333000" + }, + { + "id": "2890", + "name": "Oedt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21335000", + "longitude": "14.21013000" + }, + { + "id": "2892", + "name": "Oepping", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.60284000", + "longitude": "13.94586000" + }, + { + "id": "2895", + "name": "Offenhausen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15000000", + "longitude": "13.83333000" + }, + { + "id": "2897", + "name": "Ohlsdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96073000", + "longitude": "13.79145000" + }, + { + "id": "2902", + "name": "Ort im Innkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.31654000", + "longitude": "13.43362000" + }, + { + "id": "2907", + "name": "Ostermiething", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04636000", + "longitude": "12.82937000" + }, + { + "id": "2911", + "name": "Ottenschlag im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46632000", + "longitude": "14.38471000" + }, + { + "id": "2912", + "name": "Ottensheim", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33246000", + "longitude": "14.17425000" + }, + { + "id": "2915", + "name": "Ottnang am Hausruck", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.09568000", + "longitude": "13.65841000" + }, + { + "id": "2916", + "name": "Pabneukirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32367000", + "longitude": "14.81747000" + }, + { + "id": "2920", + "name": "Palting", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01542000", + "longitude": "13.12712000" + }, + { + "id": "2926", + "name": "Pasching", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25931000", + "longitude": "14.20369000" + }, + { + "id": "2930", + "name": "Pattigham", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15521000", + "longitude": "13.48443000" + }, + { + "id": "3110", + "name": "Pötting", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28325000", + "longitude": "13.77059000" + }, + { + "id": "3112", + "name": "Pühret", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03488000", + "longitude": "13.72252000" + }, + { + "id": "2934", + "name": "Pennewang", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13333000", + "longitude": "13.85000000" + }, + { + "id": "2938", + "name": "Perg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25000000", + "longitude": "14.63333000" + }, + { + "id": "2946", + "name": "Perwang am Grabensee", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00692000", + "longitude": "13.08300000" + }, + { + "id": "2948", + "name": "Pettenbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.96016000", + "longitude": "14.01692000" + }, + { + "id": "2952", + "name": "Peuerbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34530000", + "longitude": "13.77205000" + }, + { + "id": "2954", + "name": "Pfaffing", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.01800000", + "longitude": "13.47507000" + }, + { + "id": "2956", + "name": "Pfarrkirchen bei Bad Hall", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03046000", + "longitude": "14.19914000" + }, + { + "id": "2964", + "name": "Pichl bei Wels", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18515000", + "longitude": "13.89882000" + }, + { + "id": "2966", + "name": "Pierbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34815000", + "longitude": "14.75575000" + }, + { + "id": "2973", + "name": "Pinsdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.92980000", + "longitude": "13.77068000" + }, + { + "id": "2981", + "name": "Pitzenberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07361000", + "longitude": "13.72484000" + }, + { + "id": "2984", + "name": "Plesching", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32099000", + "longitude": "14.33802000" + }, + { + "id": "2990", + "name": "Politischer Bezirk Braunau am Inn", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11203000", + "longitude": "13.08924000" + }, + { + "id": "2996", + "name": "Politischer Bezirk Eferding", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.32168000", + "longitude": "13.98453000" + }, + { + "id": "2999", + "name": "Politischer Bezirk Freistadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.47006000", + "longitude": "14.64844000" + }, + { + "id": "3000", + "name": "Politischer Bezirk Gmunden", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.75000000", + "longitude": "13.75000000" + }, + { + "id": "3003", + "name": "Politischer Bezirk Grieskirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.26667000", + "longitude": "13.80000000" + }, + { + "id": "3014", + "name": "Politischer Bezirk Kirchdorf an der Krems", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.84346000", + "longitude": "14.21346000" + }, + { + "id": "3026", + "name": "Politischer Bezirk Linz-Land", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16667000", + "longitude": "14.30000000" + }, + { + "id": "3037", + "name": "Politischer Bezirk Perg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25724000", + "longitude": "14.71796000" + }, + { + "id": "3039", + "name": "Politischer Bezirk Ried im Innkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23333000", + "longitude": "13.46667000" + }, + { + "id": "3040", + "name": "Politischer Bezirk Rohrbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.55739000", + "longitude": "13.96926000" + }, + { + "id": "3047", + "name": "Politischer Bezirk Schärding", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.43333000", + "longitude": "13.60000000" + }, + { + "id": "3049", + "name": "Politischer Bezirk Steyr-Land", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90000000", + "longitude": "14.46667000" + }, + { + "id": "3053", + "name": "Politischer Bezirk Urfahr-Umgebung", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.42512000", + "longitude": "14.27451000" + }, + { + "id": "3056", + "name": "Politischer Bezirk Vöcklabruck", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00313000", + "longitude": "13.65772000" + }, + { + "id": "3073", + "name": "Pram", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23536000", + "longitude": "13.60579000" + }, + { + "id": "3074", + "name": "Prambachkirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.31711000", + "longitude": "13.90449000" + }, + { + "id": "3075", + "name": "Pramet", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14295000", + "longitude": "13.48752000" + }, + { + "id": "3077", + "name": "Pregarten", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35488000", + "longitude": "14.53217000" + }, + { + "id": "3091", + "name": "Puchenau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.31214000", + "longitude": "14.23614000" + }, + { + "id": "3093", + "name": "Puchheim", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00000000", + "longitude": "13.71667000" + }, + { + "id": "3094", + "name": "Puchlkirchen am Trattberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04478000", + "longitude": "13.57198000" + }, + { + "id": "3095", + "name": "Pucking", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18886000", + "longitude": "14.18824000" + }, + { + "id": "3113", + "name": "Raab", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35243000", + "longitude": "13.64691000" + }, + { + "id": "3126", + "name": "Raffelstetten", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23759000", + "longitude": "14.40273000" + }, + { + "id": "3131", + "name": "Rainbach im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.55758000", + "longitude": "14.47449000" + }, + { + "id": "3142", + "name": "Ranshofen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23308000", + "longitude": "13.01571000" + }, + { + "id": "3228", + "name": "Rüstorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04326000", + "longitude": "13.78982000" + }, + { + "id": "3158", + "name": "Redleiten", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08138000", + "longitude": "13.46894000" + }, + { + "id": "3159", + "name": "Redlham", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02443000", + "longitude": "13.74738000" + }, + { + "id": "3160", + "name": "Regau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99078000", + "longitude": "13.68811000" + }, + { + "id": "3163", + "name": "Reichenau im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.45704000", + "longitude": "14.34875000" + }, + { + "id": "3166", + "name": "Reichenthal", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.54286000", + "longitude": "14.38471000" + }, + { + "id": "3167", + "name": "Reichraming", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.88333000", + "longitude": "14.45000000" + }, + { + "id": "3174", + "name": "Reiterndorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.70364000", + "longitude": "13.62914000" + }, + { + "id": "3185", + "name": "Ried im Innkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21123000", + "longitude": "13.48855000" + }, + { + "id": "3187", + "name": "Ried im Traunkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02581000", + "longitude": "14.07452000" + }, + { + "id": "3189", + "name": "Ried in der Riedmark", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27114000", + "longitude": "14.52796000" + }, + { + "id": "3200", + "name": "Rohr im Kremstal", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06864000", + "longitude": "14.19306000" + }, + { + "id": "3205", + "name": "Rohrbach in Oberösterreich", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.57275000", + "longitude": "13.98834000" + }, + { + "id": "3208", + "name": "Roitham", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02432000", + "longitude": "13.82166000" + }, + { + "id": "3217", + "name": "Rufling", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27839000", + "longitude": "14.21674000" + }, + { + "id": "3222", + "name": "Rutzenham", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06076000", + "longitude": "13.71883000" + }, + { + "id": "3236", + "name": "Sammersdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18091000", + "longitude": "14.16670000" + }, + { + "id": "3237", + "name": "Sankt Aegidi", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.47929000", + "longitude": "13.73737000" + }, + { + "id": "3248", + "name": "Sankt Dionysen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22439000", + "longitude": "14.25485000" + }, + { + "id": "3249", + "name": "Sankt Florian", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20568000", + "longitude": "14.37836000" + }, + { + "id": "3252", + "name": "Sankt Georgen am Fillmannsbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.12560000", + "longitude": "13.00811000" + }, + { + "id": "3255", + "name": "Sankt Georgen an der Gusen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27183000", + "longitude": "14.44951000" + }, + { + "id": "3258", + "name": "Sankt Georgen bei Obernberg am Inn", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29193000", + "longitude": "13.33320000" + }, + { + "id": "3259", + "name": "Sankt Georgen im Attergau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93595000", + "longitude": "13.48306000" + }, + { + "id": "3263", + "name": "Sankt Gotthard im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.38020000", + "longitude": "14.13185000" + }, + { + "id": "3283", + "name": "Sankt Lorenz", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83240000", + "longitude": "13.34839000" + }, + { + "id": "3299", + "name": "Sankt Marien", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14805000", + "longitude": "14.27759000" + }, + { + "id": "3302", + "name": "Sankt Martin", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23091000", + "longitude": "14.26781000" + }, + { + "id": "3307", + "name": "Sankt Martin im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.41553000", + "longitude": "14.03821000" + }, + { + "id": "3315", + "name": "Sankt Oswald bei Freistadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.50000000", + "longitude": "14.58333000" + }, + { + "id": "3322", + "name": "Sankt Peter am Hart", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25268000", + "longitude": "13.09613000" + }, + { + "id": "3340", + "name": "Sankt Ulrich bei Steyr", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.02116000", + "longitude": "14.43685000" + }, + { + "id": "3347", + "name": "Sankt Wolfgang im Salzkammergut", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.73932000", + "longitude": "13.44666000" + }, + { + "id": "3348", + "name": "Sarleinsbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.54525000", + "longitude": "13.90491000" + }, + { + "id": "3350", + "name": "Sattledt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07372000", + "longitude": "14.05478000" + }, + { + "id": "3354", + "name": "Schafwiesen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16667000", + "longitude": "14.06667000" + }, + { + "id": "3355", + "name": "Schalchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11924000", + "longitude": "13.15716000" + }, + { + "id": "3356", + "name": "Schalchham", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99825000", + "longitude": "13.67188000" + }, + { + "id": "3358", + "name": "Schardenberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.52058000", + "longitude": "13.49791000" + }, + { + "id": "3361", + "name": "Scharnstein", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90426000", + "longitude": "13.96135000" + }, + { + "id": "3413", + "name": "Schärding", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.45294000", + "longitude": "13.43722000" + }, + { + "id": "3414", + "name": "Schärding Vorstadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.45195000", + "longitude": "13.43946000" + }, + { + "id": "3419", + "name": "Schöndorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00167000", + "longitude": "13.65880000" + }, + { + "id": "3420", + "name": "Schönering", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29838000", + "longitude": "14.16103000" + }, + { + "id": "3423", + "name": "Schörfling", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.94544000", + "longitude": "13.60408000" + }, + { + "id": "3368", + "name": "Schenkenfelden", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.50273000", + "longitude": "14.36188000" + }, + { + "id": "3370", + "name": "Schildorn", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.14564000", + "longitude": "13.46314000" + }, + { + "id": "3373", + "name": "Schlatt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07177000", + "longitude": "13.78904000" + }, + { + "id": "3380", + "name": "Schlüsslberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21861000", + "longitude": "13.87161000" + }, + { + "id": "3377", + "name": "Schlierbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.93636000", + "longitude": "14.12018000" + }, + { + "id": "3394", + "name": "Schwanenstadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.05537000", + "longitude": "13.77505000" + }, + { + "id": "3407", + "name": "Schweinbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34033000", + "longitude": "14.42247000" + }, + { + "id": "3410", + "name": "Schwertberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27340000", + "longitude": "14.58474000" + }, + { + "id": "3434", + "name": "Seewalchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.95246000", + "longitude": "13.58382000" + }, + { + "id": "3454", + "name": "Sierning", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04343000", + "longitude": "14.30935000" + }, + { + "id": "3469", + "name": "Sonnberg im Mühlkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46080000", + "longitude": "14.31167000" + }, + { + "id": "3477", + "name": "Spital am Pyhrn", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.66487000", + "longitude": "14.34014000" + }, + { + "id": "3489", + "name": "Stadl-Hausruck", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08255000", + "longitude": "13.85213000" + }, + { + "id": "3490", + "name": "Stadl-Paura", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08333000", + "longitude": "13.86667000" + }, + { + "id": "3491", + "name": "Stadl-Traun", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07963000", + "longitude": "13.86140000" + }, + { + "id": "3515", + "name": "Steinbach am Attersee", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.83087000", + "longitude": "13.54613000" + }, + { + "id": "3518", + "name": "Steinerkirchen an der Traun", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.07911000", + "longitude": "13.95796000" + }, + { + "id": "3520", + "name": "Steinfeld", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.71254000", + "longitude": "13.63260000" + }, + { + "id": "3521", + "name": "Steinhaus", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11614000", + "longitude": "14.01890000" + }, + { + "id": "3527", + "name": "Steyr", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04274000", + "longitude": "14.42127000" + }, + { + "id": "3528", + "name": "Steyr Stadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.03333000", + "longitude": "14.41667000" + }, + { + "id": "3529", + "name": "Steyregg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28513000", + "longitude": "14.36995000" + }, + { + "id": "3543", + "name": "Strassham", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28348000", + "longitude": "14.14524000" + }, + { + "id": "3569", + "name": "Taiskirchen im Innkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.26468000", + "longitude": "13.57318000" + }, + { + "id": "3574", + "name": "Taufkirchen an der Trattnach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24731000", + "longitude": "13.74767000" + }, + { + "id": "3583", + "name": "Ternberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.94518000", + "longitude": "14.35870000" + }, + { + "id": "3588", + "name": "Thalheim bei Wels", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15000000", + "longitude": "14.03333000" + }, + { + "id": "3599", + "name": "Tiefgraben", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.87385000", + "longitude": "13.30591000" + }, + { + "id": "3603", + "name": "Timelkam", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00394000", + "longitude": "13.60760000" + }, + { + "id": "3607", + "name": "Tragwein", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33314000", + "longitude": "14.62237000" + }, + { + "id": "3613", + "name": "Traun", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22656000", + "longitude": "14.23459000" + }, + { + "id": "3614", + "name": "Traunkirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.84462000", + "longitude": "13.78939000" + }, + { + "id": "3640", + "name": "Ufer", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.24842000", + "longitude": "14.49977000" + }, + { + "id": "3641", + "name": "Ulrichsberg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.67498000", + "longitude": "13.91049000" + }, + { + "id": "3644", + "name": "Ungenach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.04756000", + "longitude": "13.61472000" + }, + { + "id": "3650", + "name": "Untereisenfeld", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16800000", + "longitude": "14.04100000" + }, + { + "id": "3653", + "name": "Unterjosefstal", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.29216000", + "longitude": "14.57525000" + }, + { + "id": "3668", + "name": "Uttendorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.15887000", + "longitude": "13.12180000" + }, + { + "id": "3670", + "name": "Utzenaich", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27622000", + "longitude": "13.46091000" + }, + { + "id": "3703", + "name": "Vöcklabruck", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00279000", + "longitude": "13.65652000" + }, + { + "id": "3704", + "name": "Vöcklamarkt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00250000", + "longitude": "13.48383000" + }, + { + "id": "3677", + "name": "Viechtwang", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.91531000", + "longitude": "13.96345000" + }, + { + "id": "3699", + "name": "Vorchdorf", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00388000", + "longitude": "13.92122000" + }, + { + "id": "3714", + "name": "Wagrain", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.00503000", + "longitude": "13.67163000" + }, + { + "id": "3715", + "name": "Wagram", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23828000", + "longitude": "14.22996000" + }, + { + "id": "3722", + "name": "Waizenkirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.33018000", + "longitude": "13.85754000" + }, + { + "id": "3730", + "name": "Walding", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.35209000", + "longitude": "14.15760000" + }, + { + "id": "3731", + "name": "Waldkirchen am Wesen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.44059000", + "longitude": "13.82174000" + }, + { + "id": "3733", + "name": "Waldneukirchen", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.99854000", + "longitude": "14.25879000" + }, + { + "id": "3735", + "name": "Waldzell", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.13562000", + "longitude": "13.42701000" + }, + { + "id": "3736", + "name": "Wallern an der Trattnach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23296000", + "longitude": "13.94620000" + }, + { + "id": "3746", + "name": "Wartberg an der Krems", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.98909000", + "longitude": "14.11863000" + }, + { + "id": "3747", + "name": "Wartberg ob der Aist", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.34792000", + "longitude": "14.50796000" + }, + { + "id": "3782", + "name": "Weißenkirchen im Attergau", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.94964000", + "longitude": "13.41843000" + }, + { + "id": "3755", + "name": "Weibern", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18333000", + "longitude": "13.70000000" + }, + { + "id": "3763", + "name": "Weilbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.27725000", + "longitude": "13.37165000" + }, + { + "id": "3773", + "name": "Weisskirchen an der Traun", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16202000", + "longitude": "14.12395000" + }, + { + "id": "3778", + "name": "Weitersfelden", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.47730000", + "longitude": "14.72546000" + }, + { + "id": "3785", + "name": "Wels", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16667000", + "longitude": "14.03333000" + }, + { + "id": "3786", + "name": "Wels Stadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16082000", + "longitude": "14.02164000" + }, + { + "id": "3787", + "name": "Wels-Land", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.11660000", + "longitude": "13.96637000" + }, + { + "id": "3788", + "name": "Wendling", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23182000", + "longitude": "13.66622000" + }, + { + "id": "3789", + "name": "Weng im Innkreis", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23508000", + "longitude": "13.17801000" + }, + { + "id": "3797", + "name": "Wernstein am Inn", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.50802000", + "longitude": "13.46100000" + }, + { + "id": "3801", + "name": "Weyer", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.85717000", + "longitude": "14.66409000" + }, + { + "id": "3802", + "name": "Weyregg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90294000", + "longitude": "13.57193000" + }, + { + "id": "3822", + "name": "Wimpassing", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16667000", + "longitude": "13.98333000" + }, + { + "id": "3825", + "name": "Wimsbach", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.06667000", + "longitude": "13.90000000" + }, + { + "id": "3827", + "name": "Windhaag bei Freistadt", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.58774000", + "longitude": "14.56186000" + }, + { + "id": "3828", + "name": "Windhaag bei Perg", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.28582000", + "longitude": "14.68091000" + }, + { + "id": "3831", + "name": "Windischgarsten", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.72223000", + "longitude": "14.32755000" + }, + { + "id": "3836", + "name": "Wippenham", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.22250000", + "longitude": "13.37920000" + }, + { + "id": "3837", + "name": "Wispl", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16488000", + "longitude": "13.99753000" + }, + { + "id": "3839", + "name": "Wolfern", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08278000", + "longitude": "14.37201000" + }, + { + "id": "3844", + "name": "Wolfsegg am Hausruck", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.10669000", + "longitude": "13.67274000" + }, + { + "id": "3872", + "name": "Zell am Moos", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "47.90000000", + "longitude": "13.31667000" + }, + { + "id": "3873", + "name": "Zell am Pettenfirst", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.08009000", + "longitude": "13.59936000" + }, + { + "id": "3876", + "name": "Zell an der Pram", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.31625000", + "longitude": "13.62923000" + }, + { + "id": "3893", + "name": "Zwettl an der Rodl", + "state_id": 2058, + "state_code": "4", + "country_id": 15, + "country_code": "AT", + "latitude": "48.46552000", + "longitude": "14.27133000" + }, + { + "id": "1856", + "name": "Donaustadt", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23330000", + "longitude": "16.46002000" + }, + { + "id": "1963", + "name": "Favoriten", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16116000", + "longitude": "16.38233000" + }, + { + "id": "2002", + "name": "Floridsdorf", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.25000000", + "longitude": "16.40000000" + }, + { + "id": "2272", + "name": "Hernals", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.23333000", + "longitude": "16.26667000" + }, + { + "id": "2280", + "name": "Hietzing", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18623000", + "longitude": "16.29650000" + }, + { + "id": "2356", + "name": "Innere Stadt", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20906000", + "longitude": "16.37135000" + }, + { + "id": "2686", + "name": "Meidling", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.16667000", + "longitude": "16.33333000" + }, + { + "id": "2909", + "name": "Ottakring", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.21667000", + "longitude": "16.30000000" + }, + { + "id": "3461", + "name": "Simmering", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.18333000", + "longitude": "16.43333000" + }, + { + "id": "3681", + "name": "Vienna", + "state_id": 2060, + "state_code": "9", + "country_id": 15, + "country_code": "AT", + "latitude": "48.20849000", + "longitude": "16.37208000" + }, + { + "id": "1623", + "name": "Alberschwende", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45025000", + "longitude": "9.83152000" + }, + { + "id": "1635", + "name": "Altach", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35000000", + "longitude": "9.65000000" + }, + { + "id": "1658", + "name": "Andelsbuch", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41167000", + "longitude": "9.89326000" + }, + { + "id": "1701", + "name": "Au", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.32176000", + "longitude": "9.98067000" + }, + { + "id": "1712", + "name": "Ausserbraz", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14875000", + "longitude": "9.90066000" + }, + { + "id": "3900", + "name": "Übersaxen", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25284000", + "longitude": "9.67080000" + }, + { + "id": "1747", + "name": "Bartholomäberg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "9.90000000" + }, + { + "id": "1749", + "name": "Batschuns", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28306000", + "longitude": "9.65000000" + }, + { + "id": "1827", + "name": "Bürs", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14972000", + "longitude": "9.80000000" + }, + { + "id": "1828", + "name": "Bürserberg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.14644000", + "longitude": "9.77736000" + }, + { + "id": "1767", + "name": "Bezau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38478000", + "longitude": "9.90139000" + }, + { + "id": "1773", + "name": "Bildstein", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45000000", + "longitude": "9.76667000" + }, + { + "id": "1779", + "name": "Bizau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36906000", + "longitude": "9.92839000" + }, + { + "id": "1783", + "name": "Blons", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22327000", + "longitude": "9.83414000" + }, + { + "id": "1784", + "name": "Bludenz", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15476000", + "longitude": "9.82255000" + }, + { + "id": "1785", + "name": "Bludesch", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "9.73306000" + }, + { + "id": "1790", + "name": "Brand", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.10083000", + "longitude": "9.73722000" + }, + { + "id": "1795", + "name": "Bregenz", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50311000", + "longitude": "9.74710000" + }, + { + "id": "1829", + "name": "Dalaas", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.12446000", + "longitude": "9.99104000" + }, + { + "id": "1830", + "name": "Damüls", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28034000", + "longitude": "9.89164000" + }, + { + "id": "1874", + "name": "Düns", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22353000", + "longitude": "9.71663000" + }, + { + "id": "1875", + "name": "Dünserberg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.22752000", + "longitude": "9.72372000" + }, + { + "id": "1861", + "name": "Doren", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.49278000", + "longitude": "9.87972000" + }, + { + "id": "1865", + "name": "Dornbirn", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41427000", + "longitude": "9.74195000" + }, + { + "id": "1907", + "name": "Egg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43154000", + "longitude": "9.89762000" + }, + { + "id": "1918", + "name": "Eichenberg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53333000", + "longitude": "9.78333000" + }, + { + "id": "1973", + "name": "Feldkirch", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23306000", + "longitude": "9.60000000" + }, + { + "id": "2012", + "name": "Frastanz", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21735000", + "longitude": "9.62995000" + }, + { + "id": "2016", + "name": "Fraxern", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31498000", + "longitude": "9.67391000" + }, + { + "id": "2032", + "name": "Fußach", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.47933000", + "longitude": "9.66278000" + }, + { + "id": "2045", + "name": "Gaißau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "9.60000000" + }, + { + "id": "2060", + "name": "Gaschurn", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "46.98584000", + "longitude": "10.02702000" + }, + { + "id": "2184", + "name": "Göfis", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.23356000", + "longitude": "9.63458000" + }, + { + "id": "2195", + "name": "Götzis", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33306000", + "longitude": "9.63306000" + }, + { + "id": "2151", + "name": "Großdorf", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.43361000", + "longitude": "9.91528000" + }, + { + "id": "2229", + "name": "Hard", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48306000", + "longitude": "9.68306000" + }, + { + "id": "2336", + "name": "Höchst", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45934000", + "longitude": "9.64050000" + }, + { + "id": "2342", + "name": "Hörbranz", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.55000000", + "longitude": "9.75000000" + }, + { + "id": "2293", + "name": "Hirschegg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.34813000", + "longitude": "10.17137000" + }, + { + "id": "2295", + "name": "Hittisau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45781000", + "longitude": "9.95962000" + }, + { + "id": "2316", + "name": "Hohenems", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.36667000", + "longitude": "9.68306000" + }, + { + "id": "2320", + "name": "Hohenweiler", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.58333000", + "longitude": "9.78333000" + }, + { + "id": "2355", + "name": "Innerbraz", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15000000", + "longitude": "9.91667000" + }, + { + "id": "2419", + "name": "Kennelbach", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48306000", + "longitude": "9.76667000" + }, + { + "id": "2447", + "name": "Klaus", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30913000", + "longitude": "9.64678000" + }, + { + "id": "2464", + "name": "Klösterle", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13333000", + "longitude": "10.08333000" + }, + { + "id": "2468", + "name": "Koblach", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.33306000", + "longitude": "9.60000000" + }, + { + "id": "2496", + "name": "Krumbach", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.48306000", + "longitude": "9.93583000" + }, + { + "id": "2537", + "name": "Langen", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.51667000", + "longitude": "9.81667000" + }, + { + "id": "2538", + "name": "Langenegg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46922000", + "longitude": "9.89744000" + }, + { + "id": "2555", + "name": "Lauterach", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.47572000", + "longitude": "9.72941000" + }, + { + "id": "2559", + "name": "Lech", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20797000", + "longitude": "10.14184000" + }, + { + "id": "2602", + "name": "Lingenau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.45033000", + "longitude": "9.92166000" + }, + { + "id": "2607", + "name": "Lochau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.53333000", + "longitude": "9.75000000" + }, + { + "id": "2615", + "name": "Lorüns", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13306000", + "longitude": "9.85000000" + }, + { + "id": "2617", + "name": "Ludesch", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "9.78306000" + }, + { + "id": "2621", + "name": "Lustenau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42642000", + "longitude": "9.65851000" + }, + { + "id": "2739", + "name": "Mäder", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35000000", + "longitude": "9.61667000" + }, + { + "id": "2741", + "name": "Möggers", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.56667000", + "longitude": "9.81667000" + }, + { + "id": "2687", + "name": "Meiningen", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29891000", + "longitude": "9.57862000" + }, + { + "id": "2690", + "name": "Mellau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35034000", + "longitude": "9.88149000" + }, + { + "id": "2707", + "name": "Mittelberg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35127000", + "longitude": "10.17197000" + }, + { + "id": "2734", + "name": "Muntlix", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28296000", + "longitude": "9.65939000" + }, + { + "id": "2841", + "name": "Nüziders", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.16667000", + "longitude": "9.80000000" + }, + { + "id": "2778", + "name": "Nenzing", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.18436000", + "longitude": "9.70539000" + }, + { + "id": "2989", + "name": "Politischer Bezirk Bludenz", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.15144000", + "longitude": "9.82452000" + }, + { + "id": "2991", + "name": "Politischer Bezirk Bregenz", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42069000", + "longitude": "9.91989000" + }, + { + "id": "2995", + "name": "Politischer Bezirk Dornbirn", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.38349000", + "longitude": "9.74940000" + }, + { + "id": "2997", + "name": "Politischer Bezirk Feldkirch", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25535000", + "longitude": "9.58360000" + }, + { + "id": "3127", + "name": "Raggal", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21082000", + "longitude": "9.83688000" + }, + { + "id": "3140", + "name": "Rankweil", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.27108000", + "longitude": "9.64308000" + }, + { + "id": "3224", + "name": "Röns", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "9.70000000" + }, + { + "id": "3227", + "name": "Röthis", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29332000", + "longitude": "9.65484000" + }, + { + "id": "3183", + "name": "Reuthe", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.37113000", + "longitude": "9.89481000" + }, + { + "id": "3191", + "name": "Riefensberg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.50137000", + "longitude": "9.95838000" + }, + { + "id": "3195", + "name": "Riezlern", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35778000", + "longitude": "10.18759000" + }, + { + "id": "3244", + "name": "Sankt Anton im Montafon", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.11667000", + "longitude": "9.86667000" + }, + { + "id": "3251", + "name": "Sankt Gallenkirch", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.02102000", + "longitude": "9.97335000" + }, + { + "id": "3349", + "name": "Satteins", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "9.66667000" + }, + { + "id": "3378", + "name": "Schlins", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "9.70000000" + }, + { + "id": "3381", + "name": "Schnepfau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.35206000", + "longitude": "9.94520000" + }, + { + "id": "3382", + "name": "Schnifis", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.21667000", + "longitude": "9.73306000" + }, + { + "id": "3383", + "name": "Schoppernau", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.31205000", + "longitude": "10.01646000" + }, + { + "id": "3391", + "name": "Schröcken", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25755000", + "longitude": "10.09197000" + }, + { + "id": "3390", + "name": "Schruns", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.06667000", + "longitude": "9.91667000" + }, + { + "id": "3395", + "name": "Schwarzach", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.44904000", + "longitude": "9.76213000" + }, + { + "id": "3403", + "name": "Schwarzenberg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.41415000", + "longitude": "9.85154000" + }, + { + "id": "3448", + "name": "Sibratsgfäll", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.42667000", + "longitude": "10.03806000" + }, + { + "id": "3458", + "name": "Silbertal", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.09368000", + "longitude": "9.98314000" + }, + { + "id": "3497", + "name": "Stallehr", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.13306000", + "longitude": "9.85000000" + }, + { + "id": "3561", + "name": "Sulz", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.28721000", + "longitude": "9.65183000" + }, + { + "id": "3562", + "name": "Sulzberg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.52178000", + "longitude": "9.91353000" + }, + { + "id": "3597", + "name": "Thüringen", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.20000000", + "longitude": "9.76667000" + }, + { + "id": "3629", + "name": "Tschagguns", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.08333000", + "longitude": "9.90000000" + }, + { + "id": "3672", + "name": "Vandans", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.09569000", + "longitude": "9.86525000" + }, + { + "id": "3683", + "name": "Viktorsberg", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.30092000", + "longitude": "9.67484000" + }, + { + "id": "3749", + "name": "Warth", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.25000000", + "longitude": "10.18333000" + }, + { + "id": "3764", + "name": "Weiler", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.29972000", + "longitude": "9.65000000" + }, + { + "id": "3847", + "name": "Wolfurt", + "state_id": 2063, + "state_code": "8", + "country_id": 15, + "country_code": "AT", + "latitude": "47.46667000", + "longitude": "9.75000000" + }, + { + "id": "8069", + "name": "Ceyranbatan", + "state_id": 540, + "state_code": "ABS", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.54194000", + "longitude": "49.66073000" + }, + { + "id": "8073", + "name": "Digah", + "state_id": 540, + "state_code": "ABS", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.49257000", + "longitude": "49.87477000" + }, + { + "id": "8085", + "name": "Gyuzdek", + "state_id": 540, + "state_code": "ABS", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.37444000", + "longitude": "49.68194000" + }, + { + "id": "8099", + "name": "Khirdalan", + "state_id": 540, + "state_code": "ABS", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.44808000", + "longitude": "49.75502000" + }, + { + "id": "8148", + "name": "Qobu", + "state_id": 540, + "state_code": "ABS", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.40472000", + "longitude": "49.71306000" + }, + { + "id": "8169", + "name": "Saray", + "state_id": 540, + "state_code": "ABS", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.53299000", + "longitude": "49.71681000" + }, + { + "id": "8049", + "name": "Ağdam", + "state_id": 559, + "state_code": "AGM", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.99096000", + "longitude": "46.92736000" + }, + { + "id": "8050", + "name": "Ağdaş", + "state_id": 553, + "state_code": "AGS", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.64699000", + "longitude": "47.47380000" + }, + { + "id": "8037", + "name": "Agdzhabedy", + "state_id": 577, + "state_code": "AGC", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.05015000", + "longitude": "47.45937000" + }, + { + "id": "8048", + "name": "Avşar", + "state_id": 577, + "state_code": "AGC", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.97389000", + "longitude": "47.42389000" + }, + { + "id": "8038", + "name": "Aghstafa", + "state_id": 543, + "state_code": "AGA", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.11889000", + "longitude": "45.45389000" + }, + { + "id": "8163", + "name": "Saloğlu", + "state_id": 543, + "state_code": "AGA", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.27524000", + "longitude": "45.35293000" + }, + { + "id": "8188", + "name": "Vurğun", + "state_id": 543, + "state_code": "AGA", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.09524000", + "longitude": "45.47111000" + }, + { + "id": "8039", + "name": "Aghsu", + "state_id": 547, + "state_code": "AGU", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.57028000", + "longitude": "48.40087000" + }, + { + "id": "8047", + "name": "Astara", + "state_id": 528, + "state_code": "AST", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.45598000", + "longitude": "48.87498000" + }, + { + "id": "8103", + "name": "Kizhaba", + "state_id": 528, + "state_code": "AST", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.53461000", + "longitude": "48.80546000" + }, + { + "id": "8042", + "name": "Amirdzhan", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.42639000", + "longitude": "49.98361000" + }, + { + "id": "8051", + "name": "Badamdar", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.34024000", + "longitude": "49.80450000" + }, + { + "id": "8053", + "name": "Bakıxanov", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.41894000", + "longitude": "49.96693000" + }, + { + "id": "8052", + "name": "Baku", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.37767000", + "longitude": "49.89201000" + }, + { + "id": "8054", + "name": "Balakhani", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.46344000", + "longitude": "49.91893000" + }, + { + "id": "8060", + "name": "Bilajari", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.44440000", + "longitude": "49.80566000" + }, + { + "id": "8061", + "name": "Bilajer", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.56441000", + "longitude": "50.04002000" + }, + { + "id": "8062", + "name": "Binagadi", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.46602000", + "longitude": "49.82783000" + }, + { + "id": "8063", + "name": "Biny Selo", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.45076000", + "longitude": "50.08686000" + }, + { + "id": "8066", + "name": "Buzovna", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.51903000", + "longitude": "50.11438000" + }, + { + "id": "8093", + "name": "Hövsan", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.37444000", + "longitude": "50.08528000" + }, + { + "id": "8100", + "name": "Khodzhi-Gasan", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.41293000", + "longitude": "49.76904000" + }, + { + "id": "8104", + "name": "Korgöz", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.30446000", + "longitude": "49.62360000" + }, + { + "id": "8111", + "name": "Lökbatan", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.32560000", + "longitude": "49.73376000" + }, + { + "id": "8116", + "name": "Maştağa", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.52983000", + "longitude": "50.00616000" + }, + { + "id": "8113", + "name": "Mardakan", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.49182000", + "longitude": "50.14292000" + }, + { + "id": "8121", + "name": "Nardaran", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.55611000", + "longitude": "50.00556000" + }, + { + "id": "8123", + "name": "Nizami Rayonu", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.40970000", + "longitude": "49.91926000" + }, + { + "id": "8131", + "name": "Pirallahı", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.47013000", + "longitude": "50.32476000" + }, + { + "id": "8134", + "name": "Puta", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.29667000", + "longitude": "49.66028000" + }, + { + "id": "8136", + "name": "Qala", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.44256000", + "longitude": "50.16759000" + }, + { + "id": "8142", + "name": "Qaraçuxur", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.39667000", + "longitude": "49.97361000" + }, + { + "id": "8149", + "name": "Qobustan", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.08238000", + "longitude": "49.41205000" + }, + { + "id": "8159", + "name": "Ramana", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.44222000", + "longitude": "49.98056000" + }, + { + "id": "8162", + "name": "Sabunçu", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.44250000", + "longitude": "49.94806000" + }, + { + "id": "8168", + "name": "Sanqaçal", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.16991000", + "longitude": "49.46394000" + }, + { + "id": "8184", + "name": "Türkan", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.36460000", + "longitude": "50.22075000" + }, + { + "id": "8197", + "name": "Yeni Suraxanı", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.43026000", + "longitude": "50.03598000" + }, + { + "id": "8201", + "name": "Zabrat", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.47746000", + "longitude": "49.94174000" + }, + { + "id": "8205", + "name": "Zyrya", + "state_id": 552, + "state_code": "BA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.36613000", + "longitude": "50.29198000" + }, + { + "id": "8058", + "name": "Belokany", + "state_id": 560, + "state_code": "BAL", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.72626000", + "longitude": "46.40478000" + }, + { + "id": "8135", + "name": "Qabaqçöl", + "state_id": 560, + "state_code": "BAL", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.75259000", + "longitude": "46.27052000" + }, + { + "id": "8055", + "name": "Barda", + "state_id": 569, + "state_code": "BAR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.37577000", + "longitude": "47.12619000" + }, + { + "id": "8167", + "name": "Samuxlu", + "state_id": 569, + "state_code": "BAR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.50833000", + "longitude": "47.16917000" + }, + { + "id": "8059", + "name": "Beylagan", + "state_id": 554, + "state_code": "BEY", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.77556000", + "longitude": "47.61861000" + }, + { + "id": "8064", + "name": "Birinci Aşıqlı", + "state_id": 554, + "state_code": "BEY", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.81917000", + "longitude": "47.67944000" + }, + { + "id": "8078", + "name": "Dünyamalılar", + "state_id": 554, + "state_code": "BEY", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.77278000", + "longitude": "47.75889000" + }, + { + "id": "8128", + "name": "Orjonikidze", + "state_id": 554, + "state_code": "BEY", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.63571000", + "longitude": "47.71199000" + }, + { + "id": "8200", + "name": "Yuxarı Aran", + "state_id": 554, + "state_code": "BEY", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.73361000", + "longitude": "47.65500000" + }, + { + "id": "8133", + "name": "Pushkino", + "state_id": 532, + "state_code": "BIL", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.45833000", + "longitude": "48.54500000" + }, + { + "id": "8187", + "name": "Verkhniy Dashkesan", + "state_id": 561, + "state_code": "DAS", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.49357000", + "longitude": "46.07175000" + }, + { + "id": "8199", + "name": "Yukhary-Dashkesan", + "state_id": 561, + "state_code": "DAS", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.52393000", + "longitude": "46.08186000" + }, + { + "id": "8080", + "name": "Fizuli", + "state_id": 527, + "state_code": "FUZ", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.60094000", + "longitude": "47.14529000" + }, + { + "id": "8092", + "name": "Horadiz", + "state_id": 527, + "state_code": "FUZ", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.45015000", + "longitude": "47.33496000" + }, + { + "id": "8081", + "name": "Ganja", + "state_id": 585, + "state_code": "GA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.68278000", + "longitude": "46.36056000" + }, + { + "id": "8045", + "name": "Arıqıran", + "state_id": 589, + "state_code": "GAD", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.53971000", + "longitude": "45.61414000" + }, + { + "id": "8044", + "name": "Arıqdam", + "state_id": 589, + "state_code": "GAD", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.59313000", + "longitude": "45.79900000" + }, + { + "id": "8067", + "name": "Böyük Qaramurad", + "state_id": 589, + "state_code": "GAD", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.57626000", + "longitude": "45.63727000" + }, + { + "id": "8105", + "name": "Kyadabek", + "state_id": 589, + "state_code": "GAD", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.57055000", + "longitude": "45.81229000" + }, + { + "id": "8124", + "name": "Novosaratovka", + "state_id": 589, + "state_code": "GAD", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.59811000", + "longitude": "45.60079000" + }, + { + "id": "8150", + "name": "Qobustan", + "state_id": 573, + "state_code": "QOB", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.53360000", + "longitude": "48.92819000" + }, + { + "id": "8084", + "name": "Goranboy", + "state_id": 551, + "state_code": "GOR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.61028000", + "longitude": "46.78972000" + }, + { + "id": "8158", + "name": "Qızılhacılı", + "state_id": 551, + "state_code": "GOR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.57362000", + "longitude": "46.84900000" + }, + { + "id": "8082", + "name": "Geoktschai", + "state_id": 531, + "state_code": "GOY", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.65055000", + "longitude": "47.74219000" + }, + { + "id": "8196", + "name": "Yelenendorf", + "state_id": 574, + "state_code": "GYG", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.58584000", + "longitude": "46.31890000" + }, + { + "id": "8088", + "name": "Hacıqabul", + "state_id": 571, + "state_code": "HAC", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.03874000", + "longitude": "48.94286000" + }, + { + "id": "8119", + "name": "Mughan", + "state_id": 571, + "state_code": "HAC", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.09902000", + "longitude": "48.81886000" + }, + { + "id": "8094", + "name": "Imishli", + "state_id": 544, + "state_code": "IMI", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.87095000", + "longitude": "48.05995000" + }, + { + "id": "8210", + "name": "İsmayıllı", + "state_id": 564, + "state_code": "ISM", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.78485000", + "longitude": "48.15141000" + }, + { + "id": "8056", + "name": "Basqal", + "state_id": 564, + "state_code": "ISM", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.75520000", + "longitude": "48.39104000" + }, + { + "id": "8096", + "name": "Jebrail", + "state_id": 570, + "state_code": "CAB", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.39917000", + "longitude": "47.02835000" + }, + { + "id": "8095", + "name": "Jalilabad", + "state_id": 578, + "state_code": "CAL", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.20963000", + "longitude": "48.49186000" + }, + { + "id": "8132", + "name": "Prishibinskoye", + "state_id": 578, + "state_code": "CAL", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.11998000", + "longitude": "48.59383000" + }, + { + "id": "8098", + "name": "Kerbakhiar", + "state_id": 525, + "state_code": "KAL", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.10984000", + "longitude": "46.04446000" + }, + { + "id": "8186", + "name": "Vank", + "state_id": 525, + "state_code": "KAL", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.05275000", + "longitude": "46.54419000" + }, + { + "id": "8189", + "name": "Xaçmaz", + "state_id": 590, + "state_code": "XAC", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.46426000", + "longitude": "48.80565000" + }, + { + "id": "8191", + "name": "Xudat", + "state_id": 590, + "state_code": "XAC", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.63052000", + "longitude": "48.68161000" + }, + { + "id": "8041", + "name": "Altıağac", + "state_id": 537, + "state_code": "XIZ", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.85785000", + "longitude": "48.93540000" + }, + { + "id": "8213", + "name": "Şuraabad", + "state_id": 537, + "state_code": "XIZ", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.81990000", + "longitude": "49.46774000" + }, + { + "id": "8101", + "name": "Khyzy", + "state_id": 537, + "state_code": "XIZ", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.90847000", + "longitude": "49.07481000" + }, + { + "id": "8102", + "name": "Kilyazi", + "state_id": 537, + "state_code": "XIZ", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.87392000", + "longitude": "49.34376000" + }, + { + "id": "8046", + "name": "Askyaran", + "state_id": 524, + "state_code": "XCI", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.93910000", + "longitude": "46.83161000" + }, + { + "id": "8190", + "name": "Xocalı", + "state_id": 524, + "state_code": "XCI", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.91297000", + "longitude": "46.79028000" + }, + { + "id": "8106", + "name": "Kyurdarmir", + "state_id": 549, + "state_code": "KUR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.34257000", + "longitude": "48.15649000" + }, + { + "id": "8109", + "name": "Laçın", + "state_id": 541, + "state_code": "LAC", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.59881000", + "longitude": "46.55045000" + }, + { + "id": "8090", + "name": "Haftoni", + "state_id": 558, + "state_code": "LA", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.76325000", + "longitude": "48.76223000" + }, + { + "id": "8108", + "name": "Lankaran", + "state_id": 558, + "state_code": "LA", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.75428000", + "longitude": "48.85062000" + }, + { + "id": "8110", + "name": "Lerik", + "state_id": 546, + "state_code": "LER", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.77388000", + "longitude": "48.41497000" + }, + { + "id": "8089", + "name": "Hadrut", + "state_id": 568, + "state_code": "XVD", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.52003000", + "longitude": "47.03190000" + }, + { + "id": "8125", + "name": "Novyy Karanlug", + "state_id": 568, + "state_code": "XVD", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.79496000", + "longitude": "47.11170000" + }, + { + "id": "8155", + "name": "Qırmızı Bazar", + "state_id": 568, + "state_code": "XVD", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.67669000", + "longitude": "46.95123000" + }, + { + "id": "8065", + "name": "Boradigah", + "state_id": 555, + "state_code": "MAS", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.93013000", + "longitude": "48.70920000" + }, + { + "id": "8115", + "name": "Masally", + "state_id": 555, + "state_code": "MAS", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.03532000", + "longitude": "48.66540000" + }, + { + "id": "8118", + "name": "Mingelchaur", + "state_id": 580, + "state_code": "MI", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.76395000", + "longitude": "47.05953000" + }, + { + "id": "8211", + "name": "Şahbuz", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.40722000", + "longitude": "45.57389000" + }, + { + "id": "8206", + "name": "Çalxanqala", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.44167000", + "longitude": "45.28333000" + }, + { + "id": "8068", + "name": "Cahri", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.34837000", + "longitude": "45.41557000" + }, + { + "id": "8071", + "name": "Culfa", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.95397000", + "longitude": "45.62961000" + }, + { + "id": "8072", + "name": "Deste", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.88375000", + "longitude": "45.90963000" + }, + { + "id": "8091", + "name": "Heydarabad", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.72286000", + "longitude": "44.84846000" + }, + { + "id": "8097", + "name": "Julfa Rayon", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.16667000", + "longitude": "45.66667000" + }, + { + "id": "8120", + "name": "Nakhchivan", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.20889000", + "longitude": "45.41222000" + }, + { + "id": "8129", + "name": "Oğlanqala", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.58694000", + "longitude": "45.04611000" + }, + { + "id": "8126", + "name": "Ordubad", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.90961000", + "longitude": "46.02274000" + }, + { + "id": "8127", + "name": "Ordubad Rayon", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.08333000", + "longitude": "45.91667000" + }, + { + "id": "8157", + "name": "Qıvraq", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.39939000", + "longitude": "45.11513000" + }, + { + "id": "8170", + "name": "Sedarak", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.71427000", + "longitude": "44.88455000" + }, + { + "id": "8172", + "name": "Shahbuz Rayon", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.41667000", + "longitude": "45.58333000" + }, + { + "id": "8175", + "name": "Sharur City", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.55298000", + "longitude": "44.97993000" + }, + { + "id": "8179", + "name": "Sumbatan-diza", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.94804000", + "longitude": "45.82572000" + }, + { + "id": "8181", + "name": "Tazakend", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.15459000", + "longitude": "45.44282000" + }, + { + "id": "8195", + "name": "Yaycı", + "state_id": 562, + "state_code": "NX", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.94052000", + "longitude": "45.73244000" + }, + { + "id": "8122", + "name": "Neftçala", + "state_id": 530, + "state_code": "NEF", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.37680000", + "longitude": "49.24700000" + }, + { + "id": "8171", + "name": "Severo-Vostotchnyi Bank", + "state_id": 530, + "state_code": "NEF", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.41117000", + "longitude": "49.24792000" + }, + { + "id": "8178", + "name": "Sovetabad", + "state_id": 530, + "state_code": "NEF", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.33667000", + "longitude": "49.21414000" + }, + { + "id": "8192", + "name": "Xıllı", + "state_id": 530, + "state_code": "NEF", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.43012000", + "longitude": "49.10166000" + }, + { + "id": "8130", + "name": "Oğuz", + "state_id": 556, + "state_code": "OGU", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.07128000", + "longitude": "47.46528000" + }, + { + "id": "8154", + "name": "Qutqashen", + "state_id": 542, + "state_code": "QAB", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.98247000", + "longitude": "47.84909000" + }, + { + "id": "8208", + "name": "Çinarlı", + "state_id": 526, + "state_code": "QAX", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.46965000", + "longitude": "46.91582000" + }, + { + "id": "8144", + "name": "Qax", + "state_id": 526, + "state_code": "QAX", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.41826000", + "longitude": "46.92043000" + }, + { + "id": "8145", + "name": "Qax İngiloy", + "state_id": 526, + "state_code": "QAX", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.42412000", + "longitude": "46.93859000" + }, + { + "id": "8146", + "name": "Qaxbaş", + "state_id": 526, + "state_code": "QAX", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.43254000", + "longitude": "46.96460000" + }, + { + "id": "8147", + "name": "Qazax", + "state_id": 521, + "state_code": "QAZ", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.09246000", + "longitude": "45.36561000" + }, + { + "id": "8087", + "name": "Hacıhüseynli", + "state_id": 563, + "state_code": "QBA", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.45639000", + "longitude": "48.64889000" + }, + { + "id": "8151", + "name": "Quba", + "state_id": 563, + "state_code": "QBA", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.36108000", + "longitude": "48.51341000" + }, + { + "id": "8152", + "name": "Qubadlı", + "state_id": 548, + "state_code": "QBI", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.34441000", + "longitude": "46.58183000" + }, + { + "id": "8153", + "name": "Qusar", + "state_id": 588, + "state_code": "QUS", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.42750000", + "longitude": "48.43020000" + }, + { + "id": "8165", + "name": "Samur", + "state_id": 588, + "state_code": "QUS", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.63671000", + "longitude": "48.43028000" + }, + { + "id": "8160", + "name": "Saatlı", + "state_id": 557, + "state_code": "SAT", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.93214000", + "longitude": "48.36892000" + }, + { + "id": "8214", + "name": "Əhmədbəyli", + "state_id": 557, + "state_code": "SAT", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.88074000", + "longitude": "48.39158000" + }, + { + "id": "8161", + "name": "Sabirabad", + "state_id": 565, + "state_code": "SAB", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.00869000", + "longitude": "48.47701000" + }, + { + "id": "8141", + "name": "Qaraçala", + "state_id": 545, + "state_code": "SAL", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.81614000", + "longitude": "48.93792000" + }, + { + "id": "8164", + "name": "Salyan", + "state_id": 545, + "state_code": "SAL", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.59621000", + "longitude": "48.98479000" + }, + { + "id": "8140", + "name": "Qarayeri", + "state_id": 536, + "state_code": "SMX", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.78674000", + "longitude": "46.31365000" + }, + { + "id": "8156", + "name": "Qırmızı Samux", + "state_id": 536, + "state_code": "SMX", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.93972000", + "longitude": "46.37889000" + }, + { + "id": "8166", + "name": "Samux", + "state_id": 536, + "state_code": "SMX", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.76485000", + "longitude": "46.40868000" + }, + { + "id": "8074", + "name": "Divichibazar", + "state_id": 591, + "state_code": "SBN", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.20117000", + "longitude": "48.98712000" + }, + { + "id": "8176", + "name": "Sheki", + "state_id": 518, + "state_code": "SA", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.19194000", + "longitude": "47.17056000" + }, + { + "id": "8057", + "name": "Baş Göynük", + "state_id": 586, + "state_code": "SAK", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.32582000", + "longitude": "47.11357000" + }, + { + "id": "8173", + "name": "Shamakhi", + "state_id": 529, + "state_code": "SMI", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.63141000", + "longitude": "48.64137000" + }, + { + "id": "8075", + "name": "Dolyar", + "state_id": 583, + "state_code": "SKR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.86278000", + "longitude": "46.03493000" + }, + { + "id": "8077", + "name": "Dzagam", + "state_id": 583, + "state_code": "SKR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.90330000", + "longitude": "45.88564000" + }, + { + "id": "8143", + "name": "Qasım İsmayılov", + "state_id": 583, + "state_code": "SKR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.81243000", + "longitude": "46.25938000" + }, + { + "id": "8174", + "name": "Shamkhor", + "state_id": 583, + "state_code": "SKR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.82975000", + "longitude": "46.01780000" + }, + { + "id": "8212", + "name": "Şirvan", + "state_id": 520, + "state_code": "SR", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.93778000", + "longitude": "48.92900000" + }, + { + "id": "8177", + "name": "Shushi", + "state_id": 592, + "state_code": "SUS", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.76006000", + "longitude": "46.74989000" + }, + { + "id": "8083", + "name": "Gilgilçay", + "state_id": 584, + "state_code": "SIY", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.13932000", + "longitude": "49.09038000" + }, + { + "id": "8107", + "name": "Kyzyl-Burun", + "state_id": 584, + "state_code": "SIY", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.07811000", + "longitude": "49.11564000" + }, + { + "id": "8070", + "name": "Corat", + "state_id": 582, + "state_code": "SM", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.57176000", + "longitude": "49.70509000" + }, + { + "id": "8086", + "name": "Hacı Zeynalabdin", + "state_id": 582, + "state_code": "SM", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.62333000", + "longitude": "49.55861000" + }, + { + "id": "8180", + "name": "Sumqayıt", + "state_id": 582, + "state_code": "SM", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.58972000", + "longitude": "49.66861000" + }, + { + "id": "8114", + "name": "Martakert", + "state_id": 519, + "state_code": "TAR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.21127000", + "longitude": "46.82135000" + }, + { + "id": "8182", + "name": "Terter", + "state_id": 519, + "state_code": "TAR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.34201000", + "longitude": "46.93161000" + }, + { + "id": "8207", + "name": "Çatax", + "state_id": 533, + "state_code": "TOV", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.72622000", + "longitude": "45.55919000" + }, + { + "id": "8209", + "name": "Çobansığnaq", + "state_id": 533, + "state_code": "TOV", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.75244000", + "longitude": "45.70645000" + }, + { + "id": "8076", + "name": "Dondar Quşçu", + "state_id": 533, + "state_code": "TOV", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.95390000", + "longitude": "45.61942000" + }, + { + "id": "8139", + "name": "Qaraxanlı", + "state_id": 533, + "state_code": "TOV", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.04358000", + "longitude": "45.65527000" + }, + { + "id": "8183", + "name": "Tovuz", + "state_id": 533, + "state_code": "TOV", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.99249000", + "longitude": "45.62838000" + }, + { + "id": "8193", + "name": "Yanıqlı", + "state_id": 533, + "state_code": "TOV", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.84320000", + "longitude": "45.68030000" + }, + { + "id": "8185", + "name": "Ujar", + "state_id": 539, + "state_code": "UCA", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.51902000", + "longitude": "47.65423000" + }, + { + "id": "8194", + "name": "Yardımlı", + "state_id": 550, + "state_code": "YAR", + "country_id": 16, + "country_code": "AZ", + "latitude": "38.90771000", + "longitude": "48.24052000" + }, + { + "id": "8198", + "name": "Yevlakh", + "state_id": 538, + "state_code": "YE", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.61832000", + "longitude": "47.15014000" + }, + { + "id": "8043", + "name": "Aran", + "state_id": 523, + "state_code": "YEV", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.62528000", + "longitude": "46.97556000" + }, + { + "id": "8138", + "name": "Qaramanlı", + "state_id": 523, + "state_code": "YEV", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.48135000", + "longitude": "46.99339000" + }, + { + "id": "8117", + "name": "Mincivan", + "state_id": 581, + "state_code": "ZAN", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.03023000", + "longitude": "46.72329000" + }, + { + "id": "8202", + "name": "Zangilan", + "state_id": 581, + "state_code": "ZAN", + "country_id": 16, + "country_code": "AZ", + "latitude": "39.08371000", + "longitude": "46.65988000" + }, + { + "id": "8040", + "name": "Aliabad", + "state_id": 566, + "state_code": "ZAQ", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.48290000", + "longitude": "46.63483000" + }, + { + "id": "8079", + "name": "Faldarlı", + "state_id": 566, + "state_code": "ZAQ", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.46868000", + "longitude": "46.51579000" + }, + { + "id": "8112", + "name": "Mamrux", + "state_id": 566, + "state_code": "ZAQ", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.54243000", + "longitude": "46.76700000" + }, + { + "id": "8137", + "name": "Qandax", + "state_id": 566, + "state_code": "ZAQ", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.47546000", + "longitude": "46.54128000" + }, + { + "id": "8203", + "name": "Zaqatala", + "state_id": 566, + "state_code": "ZAQ", + "country_id": 16, + "country_code": "AZ", + "latitude": "41.63160000", + "longitude": "46.64479000" + }, + { + "id": "8204", + "name": "Zardob", + "state_id": 576, + "state_code": "ZAR", + "country_id": 16, + "country_code": "AZ", + "latitude": "40.21840000", + "longitude": "47.71214000" + }, + { + "id": "15686", + "name": "Alice Town", + "state_id": 3629, + "state_code": "BI", + "country_id": 17, + "country_code": "BS", + "latitude": "25.72800000", + "longitude": "-79.29721000" + }, + { + "id": "15688", + "name": "Arthur’s Town", + "state_id": 3611, + "state_code": "CI", + "country_id": 17, + "country_code": "BS", + "latitude": "24.62240000", + "longitude": "-75.67151000" + }, + { + "id": "15699", + "name": "Marsh Harbour", + "state_id": 3603, + "state_code": "CO", + "country_id": 17, + "country_code": "BS", + "latitude": "26.54124000", + "longitude": "-77.06360000" + }, + { + "id": "15691", + "name": "Colonel Hill", + "state_id": 3621, + "state_code": "CK", + "country_id": 17, + "country_code": "BS", + "latitude": "22.75450000", + "longitude": "-74.20415000" + }, + { + "id": "15697", + "name": "High Rock", + "state_id": 3614, + "state_code": "EG", + "country_id": 17, + "country_code": "BS", + "latitude": "26.60999000", + "longitude": "-78.27863000" + }, + { + "id": "15696", + "name": "George Town", + "state_id": 3612, + "state_code": "EX", + "country_id": 17, + "country_code": "BS", + "latitude": "23.51616000", + "longitude": "-75.78665000" + }, + { + "id": "15695", + "name": "Freeport", + "state_id": 3626, + "state_code": "FP", + "country_id": 17, + "country_code": "BS", + "latitude": "26.53333000", + "longitude": "-78.70000000" + }, + { + "id": "15698", + "name": "Lucaya", + "state_id": 3626, + "state_code": "FP", + "country_id": 17, + "country_code": "BS", + "latitude": "26.53333000", + "longitude": "-78.66667000" + }, + { + "id": "15694", + "name": "Dunmore Town", + "state_id": 3613, + "state_code": "HI", + "country_id": 17, + "country_code": "BS", + "latitude": "25.50216000", + "longitude": "-76.63633000" + }, + { + "id": "15700", + "name": "Matthew Town", + "state_id": 3609, + "state_code": "IN", + "country_id": 17, + "country_code": "BS", + "latitude": "20.94982000", + "longitude": "-73.67346000" + }, + { + "id": "15689", + "name": "Clarence Town", + "state_id": 3610, + "state_code": "LI", + "country_id": 17, + "country_code": "BS", + "latitude": "23.10000000", + "longitude": "-74.98333000" + }, + { + "id": "15685", + "name": "Abraham’s Bay", + "state_id": 3633, + "state_code": "MG", + "country_id": 17, + "country_code": "BS", + "latitude": "22.36667000", + "longitude": "-72.96667000" + }, + { + "id": "15692", + "name": "Cooper’s Town", + "state_id": 3616, + "state_code": "NO", + "country_id": 17, + "country_code": "BS", + "latitude": "26.87137000", + "longitude": "-77.51131000" + }, + { + "id": "15687", + "name": "Andros Town", + "state_id": 3617, + "state_code": "NS", + "country_id": 17, + "country_code": "BS", + "latitude": "24.70502000", + "longitude": "-77.76912000" + }, + { + "id": "15702", + "name": "San Andros", + "state_id": 3617, + "state_code": "NS", + "country_id": 17, + "country_code": "BS", + "latitude": "25.06667000", + "longitude": "-78.05000000" + }, + { + "id": "15693", + "name": "Duncan Town", + "state_id": 3615, + "state_code": "RI", + "country_id": 17, + "country_code": "BS", + "latitude": "22.19083000", + "longitude": "-75.72583000" + }, + { + "id": "15701", + "name": "Port Nelson", + "state_id": 3600, + "state_code": "RC", + "country_id": 17, + "country_code": "BS", + "latitude": "23.64967000", + "longitude": "-74.84157000" + }, + { + "id": "15690", + "name": "Cockburn Town", + "state_id": 3627, + "state_code": "SS", + "country_id": 17, + "country_code": "BS", + "latitude": "24.05179000", + "longitude": "-74.53138000" + }, + { + "id": "15703", + "name": "Spanish Wells", + "state_id": 3630, + "state_code": "SW", + "country_id": 17, + "country_code": "BS", + "latitude": "25.54717000", + "longitude": "-76.76405000" + }, + { + "id": "15704", + "name": "West End", + "state_id": 3599, + "state_code": "WG", + "country_id": 17, + "country_code": "BS", + "latitude": "26.68711000", + "longitude": "-78.97702000" + }, + { + "id": "9757", + "name": "Jidd Ḩafş", + "state_id": 1992, + "state_code": "13", + "country_id": 18, + "country_code": "BH", + "latitude": "26.21861000", + "longitude": "50.54778000" + }, + { + "id": "9760", + "name": "Manama", + "state_id": 1992, + "state_code": "13", + "country_id": 18, + "country_code": "BH", + "latitude": "26.22787000", + "longitude": "50.58565000" + }, + { + "id": "9761", + "name": "Sitrah", + "state_id": 1992, + "state_code": "13", + "country_id": 18, + "country_code": "BH", + "latitude": "26.15472000", + "longitude": "50.62056000" + }, + { + "id": "9758", + "name": "Madīnat Ḩamad", + "state_id": 1996, + "state_code": "16", + "country_id": 18, + "country_code": "BH", + "latitude": "26.11528000", + "longitude": "50.50694000" + }, + { + "id": "9754", + "name": "Al Ḩadd", + "state_id": 1995, + "state_code": "15", + "country_id": 18, + "country_code": "BH", + "latitude": "26.24556000", + "longitude": "50.65417000" + }, + { + "id": "9753", + "name": "Al Muharraq", + "state_id": 1995, + "state_code": "15", + "country_id": 18, + "country_code": "BH", + "latitude": "26.25722000", + "longitude": "50.61194000" + }, + { + "id": "9755", + "name": "Ar Rifā‘", + "state_id": 1993, + "state_code": "14", + "country_id": 18, + "country_code": "BH", + "latitude": "26.13000000", + "longitude": "50.55500000" + }, + { + "id": "9756", + "name": "Dār Kulayb", + "state_id": 1993, + "state_code": "14", + "country_id": 18, + "country_code": "BH", + "latitude": "26.06861000", + "longitude": "50.50389000" + }, + { + "id": "9759", + "name": "Madīnat ‘Īsá", + "state_id": 1993, + "state_code": "14", + "country_id": 18, + "country_code": "BH", + "latitude": "26.17361000", + "longitude": "50.54778000" + }, + { + "id": "8459", + "name": "Barguna", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.13333000", + "longitude": "90.13333000" + }, + { + "id": "8460", + "name": "Barisal", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.80000000", + "longitude": "90.50000000" + }, + { + "id": "8461", + "name": "Barisāl", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.70497000", + "longitude": "90.37013000" + }, + { + "id": "8466", + "name": "Bhāndāria", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.48898000", + "longitude": "90.06273000" + }, + { + "id": "8465", + "name": "Bhola", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.36667000", + "longitude": "90.81667000" + }, + { + "id": "8471", + "name": "Burhānuddin", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.49518000", + "longitude": "90.72391000" + }, + { + "id": "8495", + "name": "Gaurnadi", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.97372000", + "longitude": "90.22376000" + }, + { + "id": "8505", + "name": "Jhalokati", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.60000000", + "longitude": "90.20000000" + }, + { + "id": "8526", + "name": "Lālmohan", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.33774000", + "longitude": "90.73708000" + }, + { + "id": "8532", + "name": "Mathba", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.28616000", + "longitude": "89.95883000" + }, + { + "id": "8535", + "name": "Mehendiganj", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.82257000", + "longitude": "90.52859000" + }, + { + "id": "8556", + "name": "Nālchiti", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.63696000", + "longitude": "90.27195000" + }, + { + "id": "8565", + "name": "Patuakhali", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.33333000", + "longitude": "90.33333000" + }, + { + "id": "8567", + "name": "Pirojpur", + "state_id": 818, + "state_code": "06", + "country_id": 19, + "country_code": "BD", + "latitude": "22.53671000", + "longitude": "90.00033000" + }, + { + "id": "8457", + "name": "Bandarban", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.00000000", + "longitude": "92.33333000" + }, + { + "id": "8473", + "name": "Bāndarban", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.19534000", + "longitude": "92.21946000" + }, + { + "id": "8468", + "name": "Bibir Hat", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.68347000", + "longitude": "91.79058000" + }, + { + "id": "8470", + "name": "Brahmanbaria", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.98333000", + "longitude": "91.16667000" + }, + { + "id": "8474", + "name": "Chandpur", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.25000000", + "longitude": "90.83333000" + }, + { + "id": "8478", + "name": "Chhāgalnāiya", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.02475000", + "longitude": "91.51091000" + }, + { + "id": "8481", + "name": "Chittagong", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.48750000", + "longitude": "91.96333000" + }, + { + "id": "8483", + "name": "Comilla", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.44170000", + "longitude": "91.00987000" + }, + { + "id": "8484", + "name": "Cox's Bazar", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "21.58389000", + "longitude": "92.01528000" + }, + { + "id": "8485", + "name": "Cox’s Bāzār", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "21.43973000", + "longitude": "92.00955000" + }, + { + "id": "8492", + "name": "Feni", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.96667000", + "longitude": "91.31667000" + }, + { + "id": "8499", + "name": "Hājīganj", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.25191000", + "longitude": "90.85508000" + }, + { + "id": "8512", + "name": "Khagrachhari", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.16667000", + "longitude": "91.90000000" + }, + { + "id": "8522", + "name": "Lakshmīpur", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.94430000", + "longitude": "90.83005000" + }, + { + "id": "8521", + "name": "Lakshmipur", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.91667000", + "longitude": "90.83333000" + }, + { + "id": "8525", + "name": "Lākshām", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.24018000", + "longitude": "91.12143000" + }, + { + "id": "8530", + "name": "Manikchari", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.83957000", + "longitude": "91.84128000" + }, + { + "id": "8543", + "name": "Nabīnagar", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.88791000", + "longitude": "90.96792000" + }, + { + "id": "8553", + "name": "Noakhali", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.75000000", + "longitude": "91.16667000" + }, + { + "id": "8564", + "name": "Patiya", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.29543000", + "longitude": "91.97900000" + }, + { + "id": "8576", + "name": "Rangamati", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.63333000", + "longitude": "92.20000000" + }, + { + "id": "8578", + "name": "Raojān", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.53511000", + "longitude": "91.91919000" + }, + { + "id": "8579", + "name": "Rāipur", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.03910000", + "longitude": "90.76808000" + }, + { + "id": "8581", + "name": "Rāmganj", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "23.10060000", + "longitude": "90.84989000" + }, + { + "id": "8584", + "name": "Sandwīp", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.51409000", + "longitude": "91.45491000" + }, + { + "id": "8597", + "name": "Sātkania", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "22.07639000", + "longitude": "92.04955000" + }, + { + "id": "8600", + "name": "Teknāf", + "state_id": 803, + "state_code": "B", + "country_id": 19, + "country_code": "BD", + "latitude": "20.85829000", + "longitude": "92.29773000" + }, + { + "id": "8454", + "name": "Azimpur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.72980000", + "longitude": "90.38540000" + }, + { + "id": "8472", + "name": "Bājitpur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.21623000", + "longitude": "90.95002000" + }, + { + "id": "8463", + "name": "Bhairab Bāzār", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.05240000", + "longitude": "90.97640000" + }, + { + "id": "8476", + "name": "Char Bhadrāsan", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.30916000", + "longitude": "90.22698000" + }, + { + "id": "8477", + "name": "Char Golora", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.82037000", + "longitude": "90.12175000" + }, + { + "id": "8486", + "name": "Dhaka", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.81093000", + "longitude": "90.36542000" + }, + { + "id": "8489", + "name": "Dohār", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.59311000", + "longitude": "90.14251000" + }, + { + "id": "8491", + "name": "Farīdpur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.60612000", + "longitude": "89.84064000" + }, + { + "id": "8490", + "name": "Faridpur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.59419000", + "longitude": "89.82147000" + }, + { + "id": "8496", + "name": "Gazipur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.20689000", + "longitude": "90.47241000" + }, + { + "id": "8497", + "name": "Gopalganj", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.16667000", + "longitude": "89.91667000" + }, + { + "id": "8508", + "name": "Joymontop", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.78789000", + "longitude": "90.16472000" + }, + { + "id": "8513", + "name": "Khanbaniara", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.78225000", + "longitude": "90.18382000" + }, + { + "id": "8515", + "name": "Kishoregonj", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.41667000", + "longitude": "90.95000000" + }, + { + "id": "8516", + "name": "Kishorganj", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.43944000", + "longitude": "90.78291000" + }, + { + "id": "8527", + "name": "Madaripur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.25000000", + "longitude": "90.20000000" + }, + { + "id": "8531", + "name": "Manikganj", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.86667000", + "longitude": "89.95000000" + }, + { + "id": "8542", + "name": "Mādārīpur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.17097000", + "longitude": "90.20935000" + }, + { + "id": "8537", + "name": "Mirzāpur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.10287000", + "longitude": "90.09841000" + }, + { + "id": "8540", + "name": "Munshiganj", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.55000000", + "longitude": "90.36667000" + }, + { + "id": "8547", + "name": "Narayanganj", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.75000000", + "longitude": "90.58333000" + }, + { + "id": "8548", + "name": "Narsingdi", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.92298000", + "longitude": "90.71768000" + }, + { + "id": "8555", + "name": "Nāgarpur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.05783000", + "longitude": "89.87696000" + }, + { + "id": "8557", + "name": "Nārāyanganj", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.61352000", + "longitude": "90.50298000" + }, + { + "id": "8559", + "name": "Paltan", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.73625000", + "longitude": "90.41426000" + }, + { + "id": "8562", + "name": "Parvez Ali", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.81741000", + "longitude": "90.11921000" + }, + { + "id": "8563", + "name": "Parvez Ali Hossain", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.78758000", + "longitude": "90.16487000" + }, + { + "id": "8570", + "name": "Pālang", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.21824000", + "longitude": "90.35076000" + }, + { + "id": "8573", + "name": "Rajbari", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.66667000", + "longitude": "89.55000000" + }, + { + "id": "8575", + "name": "Ramnagar", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.77720000", + "longitude": "90.17604000" + }, + { + "id": "8583", + "name": "Sakhipur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.31988000", + "longitude": "90.16943000" + }, + { + "id": "8588", + "name": "Sayani", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.79119000", + "longitude": "90.16972000" + }, + { + "id": "8589", + "name": "Shariatpur", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.25000000", + "longitude": "90.36667000" + }, + { + "id": "8594", + "name": "Sonārgaon", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.65000000", + "longitude": "90.61667000" + }, + { + "id": "8599", + "name": "Tangail", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.33853000", + "longitude": "89.98667000" + }, + { + "id": "8605", + "name": "Tāngāil", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "24.24984000", + "longitude": "89.91655000" + }, + { + "id": "8603", + "name": "Tungi", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "23.89154000", + "longitude": "90.40232000" + }, + { + "id": "8604", + "name": "Tungipāra", + "state_id": 771, + "state_code": "13", + "country_id": 19, + "country_code": "BD", + "latitude": "22.89983000", + "longitude": "89.90326000" + }, + { + "id": "8456", + "name": "Bagerhat", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "22.40000000", + "longitude": "89.75000000" + }, + { + "id": "8467", + "name": "Bhātpāra Abhaynagar", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.01472000", + "longitude": "89.43936000" + }, + { + "id": "8464", + "name": "Bherāmāra", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "24.02452000", + "longitude": "88.99234000" + }, + { + "id": "8482", + "name": "Chuadanga", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.63333000", + "longitude": "88.85000000" + }, + { + "id": "8504", + "name": "Jessore", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.08333000", + "longitude": "89.16667000" + }, + { + "id": "8506", + "name": "Jhenaidah", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.50000000", + "longitude": "89.16667000" + }, + { + "id": "8507", + "name": "Jhingergācha", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.11134000", + "longitude": "89.09061000" + }, + { + "id": "8520", + "name": "Kālīganj", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.40964000", + "longitude": "89.13801000" + }, + { + "id": "8519", + "name": "Kālia", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.04300000", + "longitude": "89.63094000" + }, + { + "id": "8511", + "name": "Kesabpur", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "22.90725000", + "longitude": "89.21954000" + }, + { + "id": "8514", + "name": "Khulna", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "22.50000000", + "longitude": "89.33333000" + }, + { + "id": "8518", + "name": "Kushtia", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.83333000", + "longitude": "88.91667000" + }, + { + "id": "8528", + "name": "Magura", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.43333000", + "longitude": "89.43333000" + }, + { + "id": "8536", + "name": "Meherpur", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.75000000", + "longitude": "88.70000000" + }, + { + "id": "8538", + "name": "Morrelgonj", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "22.45566000", + "longitude": "89.85584000" + }, + { + "id": "8546", + "name": "Narail", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.13333000", + "longitude": "89.60000000" + }, + { + "id": "8554", + "name": "Nowlamary", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.67346000", + "longitude": "88.98885000" + }, + { + "id": "8566", + "name": "Phultala", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "22.71673000", + "longitude": "89.51194000" + }, + { + "id": "8585", + "name": "Sarankhola", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "22.31006000", + "longitude": "89.79113000" + }, + { + "id": "8587", + "name": "Satkhira", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "22.35000000", + "longitude": "89.15000000" + }, + { + "id": "8598", + "name": "Sātkhira", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "22.70817000", + "longitude": "89.07185000" + }, + { + "id": "8606", + "name": "Ujalpur", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "23.80562000", + "longitude": "88.62444000" + }, + { + "id": "8607", + "name": "Uttar Char Fasson", + "state_id": 811, + "state_code": "27", + "country_id": 19, + "country_code": "BD", + "latitude": "22.22647000", + "longitude": "90.71275000" + }, + { + "id": "8493", + "name": "Gafargaon", + "state_id": 766, + "state_code": "34", + "country_id": 19, + "country_code": "BD", + "latitude": "24.43200000", + "longitude": "90.55850000" + }, + { + "id": "8502", + "name": "Jamalpur", + "state_id": 766, + "state_code": "34", + "country_id": 19, + "country_code": "BD", + "latitude": "25.00000000", + "longitude": "89.83333000" + }, + { + "id": "8503", + "name": "Jamālpur", + "state_id": 766, + "state_code": "34", + "country_id": 19, + "country_code": "BD", + "latitude": "24.91965000", + "longitude": "89.94812000" + }, + { + "id": "8539", + "name": "Muktāgācha", + "state_id": 766, + "state_code": "34", + "country_id": 19, + "country_code": "BD", + "latitude": "24.76484000", + "longitude": "90.25698000" + }, + { + "id": "8541", + "name": "Mymensingh", + "state_id": 766, + "state_code": "34", + "country_id": 19, + "country_code": "BD", + "latitude": "24.75000000", + "longitude": "90.40000000" + }, + { + "id": "8551", + "name": "Netrakona", + "state_id": 766, + "state_code": "34", + "country_id": 19, + "country_code": "BD", + "latitude": "24.86667000", + "longitude": "90.86667000" + }, + { + "id": "8586", + "name": "Sarishābāri", + "state_id": 766, + "state_code": "34", + "country_id": 19, + "country_code": "BD", + "latitude": "24.75127000", + "longitude": "89.83126000" + }, + { + "id": "8590", + "name": "Sherpur", + "state_id": 766, + "state_code": "34", + "country_id": 19, + "country_code": "BD", + "latitude": "25.08333000", + "longitude": "90.08333000" + }, + { + "id": "8462", + "name": "Bera", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.07821000", + "longitude": "89.63262000" + }, + { + "id": "8469", + "name": "Bogra", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.78333000", + "longitude": "89.35000000" + }, + { + "id": "8475", + "name": "Chapai Nababganj", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.68333000", + "longitude": "88.25000000" + }, + { + "id": "8500", + "name": "Ishurdi", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.12858000", + "longitude": "89.06573000" + }, + { + "id": "8509", + "name": "Joypur Hāt", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "25.10147000", + "longitude": "89.02734000" + }, + { + "id": "8510", + "name": "Joypurhat", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "25.08333000", + "longitude": "89.10000000" + }, + { + "id": "8529", + "name": "Mahasthangarh", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.96111000", + "longitude": "89.34278000" + }, + { + "id": "8545", + "name": "Naogaon", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.81180000", + "longitude": "88.94657000" + }, + { + "id": "8549", + "name": "Natore", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.35000000", + "longitude": "89.08333000" + }, + { + "id": "8550", + "name": "Nawābganj", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.59025000", + "longitude": "88.27444000" + }, + { + "id": "8558", + "name": "Pabna", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.00633000", + "longitude": "89.33533000" + }, + { + "id": "8569", + "name": "Pābna", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.00644000", + "longitude": "89.23720000" + }, + { + "id": "8571", + "name": "Pār Naogaon", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.80418000", + "longitude": "88.94875000" + }, + { + "id": "8568", + "name": "Puthia", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.36537000", + "longitude": "88.83431000" + }, + { + "id": "8574", + "name": "Rajshahi", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.36962000", + "longitude": "88.60748000" + }, + { + "id": "8580", + "name": "Rājshāhi", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.37400000", + "longitude": "88.60114000" + }, + { + "id": "8582", + "name": "Saidpur", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "25.77769000", + "longitude": "88.89169000" + }, + { + "id": "8592", + "name": "Shāhzādpur", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.17687000", + "longitude": "89.59880000" + }, + { + "id": "8591", + "name": "Shibganj", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "25.00146000", + "longitude": "89.32266000" + }, + { + "id": "8593", + "name": "Sirajganj", + "state_id": 813, + "state_code": "54", + "country_id": 19, + "country_code": "BD", + "latitude": "24.33333000", + "longitude": "89.61667000" + }, + { + "id": "8455", + "name": "Badarganj", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.67419000", + "longitude": "89.05377000" + }, + { + "id": "8480", + "name": "Chilmāri", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.55613000", + "longitude": "89.67097000" + }, + { + "id": "8487", + "name": "Dinajpur", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.61667000", + "longitude": "88.75000000" + }, + { + "id": "8488", + "name": "Dinājpur", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.62745000", + "longitude": "88.63779000" + }, + { + "id": "8494", + "name": "Gaibandha", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.25000000", + "longitude": "89.50000000" + }, + { + "id": "8517", + "name": "Kurigram", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.75000000", + "longitude": "89.66667000" + }, + { + "id": "8523", + "name": "Lalmonirhat", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.91719000", + "longitude": "89.44595000" + }, + { + "id": "8524", + "name": "Lalmonirhat District", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "26.00000000", + "longitude": "89.25000000" + }, + { + "id": "8544", + "name": "Nageswari", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.96817000", + "longitude": "89.69153000" + }, + { + "id": "8552", + "name": "Nilphamari Zila", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.96667000", + "longitude": "88.95000000" + }, + { + "id": "8560", + "name": "Panchagarh", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "26.33333000", + "longitude": "88.56667000" + }, + { + "id": "8561", + "name": "Parbatipur", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.66369000", + "longitude": "88.93093000" + }, + { + "id": "8572", + "name": "Pīrgaaj", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.85587000", + "longitude": "88.35943000" + }, + { + "id": "8577", + "name": "Rangpur", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.73333000", + "longitude": "89.25000000" + }, + { + "id": "8601", + "name": "Thakurgaon", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "25.96667000", + "longitude": "88.33333000" + }, + { + "id": "8602", + "name": "Thākurgaon", + "state_id": 759, + "state_code": "55", + "country_id": 19, + "country_code": "BD", + "latitude": "26.03097000", + "longitude": "88.46989000" + }, + { + "id": "8458", + "name": "Baniachang", + "state_id": 767, + "state_code": "60", + "country_id": 19, + "country_code": "BD", + "latitude": "24.51863000", + "longitude": "91.35787000" + }, + { + "id": "8479", + "name": "Chhātak", + "state_id": 767, + "state_code": "60", + "country_id": 19, + "country_code": "BD", + "latitude": "25.03852000", + "longitude": "91.66958000" + }, + { + "id": "8498", + "name": "Habiganj", + "state_id": 767, + "state_code": "60", + "country_id": 19, + "country_code": "BD", + "latitude": "24.43333000", + "longitude": "91.41667000" + }, + { + "id": "8501", + "name": "Jahedpur", + "state_id": 767, + "state_code": "60", + "country_id": 19, + "country_code": "BD", + "latitude": "24.83333000", + "longitude": "91.65000000" + }, + { + "id": "8533", + "name": "Maulavi Bāzār", + "state_id": 767, + "state_code": "60", + "country_id": 19, + "country_code": "BD", + "latitude": "24.48888000", + "longitude": "91.77075000" + }, + { + "id": "8534", + "name": "Maulvibazar", + "state_id": 767, + "state_code": "60", + "country_id": 19, + "country_code": "BD", + "latitude": "24.50000000", + "longitude": "91.83333000" + }, + { + "id": "8595", + "name": "Sunamganj", + "state_id": 767, + "state_code": "60", + "country_id": 19, + "country_code": "BD", + "latitude": "24.86667000", + "longitude": "91.41667000" + }, + { + "id": "8596", + "name": "Sylhet", + "state_id": 767, + "state_code": "60", + "country_id": 19, + "country_code": "BD", + "latitude": "24.91667000", + "longitude": "91.76667000" + }, + { + "id": "8452", + "name": "Oistins", + "state_id": 1228, + "state_code": "01", + "country_id": 20, + "country_code": "BB", + "latitude": "13.07067000", + "longitude": "-59.54637000" + }, + { + "id": "8450", + "name": "Greenland", + "state_id": 1229, + "state_code": "02", + "country_id": 20, + "country_code": "BB", + "latitude": "13.25808000", + "longitude": "-59.57763000" + }, + { + "id": "8451", + "name": "Holetown", + "state_id": 1224, + "state_code": "04", + "country_id": 20, + "country_code": "BB", + "latitude": "13.18672000", + "longitude": "-59.63808000" + }, + { + "id": "8447", + "name": "Bathsheba", + "state_id": 1223, + "state_code": "06", + "country_id": 20, + "country_code": "BB", + "latitude": "13.21133000", + "longitude": "-59.52596000" + }, + { + "id": "8448", + "name": "Bridgetown", + "state_id": 1230, + "state_code": "08", + "country_id": 20, + "country_code": "BB", + "latitude": "13.10732000", + "longitude": "-59.62021000" + }, + { + "id": "8453", + "name": "Speightstown", + "state_id": 1222, + "state_code": "09", + "country_id": 20, + "country_code": "BB", + "latitude": "13.25072000", + "longitude": "-59.64396000" + }, + { + "id": "8449", + "name": "Crane", + "state_id": 1220, + "state_code": "10", + "country_id": 20, + "country_code": "BB", + "latitude": "13.10487000", + "longitude": "-59.44861000" + }, + { + "id": "15805", + "name": "Antopal’", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.20380000", + "longitude": "24.78630000" + }, + { + "id": "15810", + "name": "Asnyezhytsy", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.18910000", + "longitude": "26.12990000" + }, + { + "id": "15820", + "name": "Baranovichi", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.13270000", + "longitude": "26.01390000" + }, + { + "id": "15821", + "name": "Baranovichskiy Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.16667000", + "longitude": "25.83333000" + }, + { + "id": "15833", + "name": "Brest", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.09755000", + "longitude": "23.68775000" + }, + { + "id": "15834", + "name": "Brestski Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.00000000", + "longitude": "23.75000000" + }, + { + "id": "15841", + "name": "Byaroza", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.53140000", + "longitude": "24.97860000" + }, + { + "id": "15843", + "name": "Byarozawski Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.50000000", + "longitude": "25.00000000" + }, + { + "id": "15844", + "name": "Byelaazyorsk", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.47310000", + "longitude": "25.17840000" + }, + { + "id": "15850", + "name": "Charnawchytsy", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.21948000", + "longitude": "23.74043000" + }, + { + "id": "15861", + "name": "Damachava", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "51.75000000", + "longitude": "23.60000000" + }, + { + "id": "15863", + "name": "Davyd-Haradok", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.05660000", + "longitude": "27.21610000" + }, + { + "id": "15868", + "name": "Drahichyn", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.18740000", + "longitude": "25.15970000" + }, + { + "id": "15869", + "name": "Drahichynski Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.16667000", + "longitude": "25.00000000" + }, + { + "id": "15884", + "name": "Hantsavichy", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.75800000", + "longitude": "26.43000000" + }, + { + "id": "15885", + "name": "Hantsavitski Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.66667000", + "longitude": "26.50000000" + }, + { + "id": "15888", + "name": "Haradzishcha", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.32470000", + "longitude": "26.01070000" + }, + { + "id": "15897", + "name": "Horad Baranavichy", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.13333000", + "longitude": "26.03333000" + }, + { + "id": "15898", + "name": "Horad Brest", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.10000000", + "longitude": "23.70000000" + }, + { + "id": "15909", + "name": "Ivanava", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.14510000", + "longitude": "25.53650000" + }, + { + "id": "15910", + "name": "Ivanawski Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.16667000", + "longitude": "25.58333000" + }, + { + "id": "15911", + "name": "Ivatsevichy", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.70900000", + "longitude": "25.34010000" + }, + { + "id": "15917", + "name": "Kamyanyets", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.40013000", + "longitude": "23.81000000" + }, + { + "id": "15918", + "name": "Kamyanyetski Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.41667000", + "longitude": "23.66667000" + }, + { + "id": "15919", + "name": "Kamyanyuki", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.55757000", + "longitude": "23.80525000" + }, + { + "id": "15942", + "name": "Kobryn", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.21380000", + "longitude": "24.35640000" + }, + { + "id": "15946", + "name": "Kosava", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.75830000", + "longitude": "25.15540000" + }, + { + "id": "15957", + "name": "Lahishyn", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.33900000", + "longitude": "25.98670000" + }, + { + "id": "15964", + "name": "Luninyets", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.24720000", + "longitude": "26.80470000" + }, + { + "id": "15965", + "name": "Lyakhavichy", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.03880000", + "longitude": "26.26560000" + }, + { + "id": "15982", + "name": "Malaryta", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "51.79050000", + "longitude": "24.07400000" + }, + { + "id": "15988", + "name": "Mikashevichy", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.21730000", + "longitude": "27.47600000" + }, + { + "id": "15993", + "name": "Motal’", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.31380000", + "longitude": "25.60720000" + }, + { + "id": "16010", + "name": "Nyakhachava", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.64400000", + "longitude": "25.20270000" + }, + { + "id": "16021", + "name": "Pinsk", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.12290000", + "longitude": "26.09510000" + }, + { + "id": "16027", + "name": "Pruzhanski Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.66667000", + "longitude": "24.58333000" + }, + { + "id": "16028", + "name": "Pruzhany", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.55600000", + "longitude": "24.45730000" + }, + { + "id": "16044", + "name": "Ruzhany", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.86322000", + "longitude": "24.89357000" + }, + { + "id": "16075", + "name": "Stolin", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "51.89115000", + "longitude": "26.84597000" + }, + { + "id": "16076", + "name": "Stolinski Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.00000000", + "longitude": "27.00000000" + }, + { + "id": "16089", + "name": "Tsyelyakhany", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.51750000", + "longitude": "25.84290000" + }, + { + "id": "16114", + "name": "Vysokaye", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.37091000", + "longitude": "23.37083000" + }, + { + "id": "16122", + "name": "Zhabinka", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.19840000", + "longitude": "24.01150000" + }, + { + "id": "16123", + "name": "Zhabinkawski Rayon", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "52.16667000", + "longitude": "24.08333000" + }, + { + "id": "16130", + "name": "Znamenka", + "state_id": 2959, + "state_code": "BR", + "country_id": 21, + "country_code": "BY", + "latitude": "51.88168000", + "longitude": "23.65545000" + }, + { + "id": "15804", + "name": "Aktsyabrski", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.64400000", + "longitude": "28.88010000" + }, + { + "id": "15829", + "name": "Brahin", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "51.78700000", + "longitude": "30.26770000" + }, + { + "id": "15830", + "name": "Brahinski Rayon", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "51.66667000", + "longitude": "30.33333000" + }, + { + "id": "15835", + "name": "Buda-Kashalyova", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.71790000", + "longitude": "30.57010000" + }, + { + "id": "15848", + "name": "Chachersk", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.91640000", + "longitude": "30.91790000" + }, + { + "id": "15849", + "name": "Chacherski Rayon", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.91667000", + "longitude": "31.08333000" + }, + { + "id": "15864", + "name": "Dobrush", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.40890000", + "longitude": "31.32370000" + }, + { + "id": "15867", + "name": "Dowsk", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "53.15710000", + "longitude": "30.46010000" + }, + { + "id": "15895", + "name": "Homyel'", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.43450000", + "longitude": "30.97540000" + }, + { + "id": "15896", + "name": "Homyel’ski Rayon", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.33333000", + "longitude": "31.00000000" + }, + { + "id": "15915", + "name": "Kalinkavichy", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.13230000", + "longitude": "29.32570000" + }, + { + "id": "15923", + "name": "Karanyowka", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.35060000", + "longitude": "31.11210000" + }, + { + "id": "15926", + "name": "Karma", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "53.13010000", + "longitude": "30.80160000" + }, + { + "id": "15929", + "name": "Kastsyukowka", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.53870000", + "longitude": "30.91730000" + }, + { + "id": "15930", + "name": "Khal’ch", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.56430000", + "longitude": "31.13640000" + }, + { + "id": "15936", + "name": "Khoyniki", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "51.89110000", + "longitude": "29.95520000" + }, + { + "id": "15962", + "name": "Loyew", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "51.94580000", + "longitude": "30.79530000" + }, + { + "id": "15967", + "name": "Lyel’chytski Rayon", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "51.83333000", + "longitude": "28.25000000" + }, + { + "id": "15968", + "name": "Lyel’chytsy", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "51.78620000", + "longitude": "28.32880000" + }, + { + "id": "15985", + "name": "Mazyr", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.04950000", + "longitude": "29.24560000" + }, + { + "id": "15986", + "name": "Mazyrski Rayon", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.00000000", + "longitude": "29.00000000" + }, + { + "id": "16002", + "name": "Narowlya", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "51.79610000", + "longitude": "29.50040000" + }, + { + "id": "16005", + "name": "Novaya Huta", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.10320000", + "longitude": "30.98370000" + }, + { + "id": "16017", + "name": "Parychy", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.80420000", + "longitude": "29.41760000" + }, + { + "id": "16020", + "name": "Peramoga", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.39730000", + "longitude": "31.07100000" + }, + { + "id": "16033", + "name": "Pyetrykaw", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.12890000", + "longitude": "28.49210000" + }, + { + "id": "16035", + "name": "Rahachow", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "53.09340000", + "longitude": "30.04950000" + }, + { + "id": "16036", + "name": "Rahachowski Rayon", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "53.16667000", + "longitude": "30.16667000" + }, + { + "id": "16041", + "name": "Rechytsa", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.36170000", + "longitude": "30.39160000" + }, + { + "id": "16049", + "name": "Sasnovy Bor", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.51940000", + "longitude": "29.59880000" + }, + { + "id": "16081", + "name": "Svyetlahorsk", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.63290000", + "longitude": "29.73890000" + }, + { + "id": "16090", + "name": "Turaw", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.06830000", + "longitude": "27.73500000" + }, + { + "id": "16098", + "name": "Vasilyevichy", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.25120000", + "longitude": "29.82880000" + }, + { + "id": "16112", + "name": "Vyetka", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.55910000", + "longitude": "31.17940000" + }, + { + "id": "16113", + "name": "Vyetkawski Rayon", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.66667000", + "longitude": "31.25000000" + }, + { + "id": "16116", + "name": "Yel’sk", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "51.81410000", + "longitude": "29.15220000" + }, + { + "id": "16127", + "name": "Zhlobin", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.89260000", + "longitude": "30.02400000" + }, + { + "id": "16128", + "name": "Zhlobinski Rayon", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.75000000", + "longitude": "29.83333000" + }, + { + "id": "16129", + "name": "Zhytkavichy", + "state_id": 2955, + "state_code": "HO", + "country_id": 21, + "country_code": "BY", + "latitude": "52.21680000", + "longitude": "27.85610000" + }, + { + "id": "15806", + "name": "Ashmyanski Rayon", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.41667000", + "longitude": "25.91667000" + }, + { + "id": "15807", + "name": "Ashmyany", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.42100000", + "longitude": "25.93600000" + }, + { + "id": "15812", + "name": "Astravyets", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.61378000", + "longitude": "25.95537000" + }, + { + "id": "15813", + "name": "Astravyetski Rayon", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.66667000", + "longitude": "26.00000000" + }, + { + "id": "15823", + "name": "Baruny", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.31710000", + "longitude": "26.13760000" + }, + { + "id": "15842", + "name": "Byarozawka", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.72406000", + "longitude": "25.49709000" + }, + { + "id": "15876", + "name": "Dyatlovo", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.46310000", + "longitude": "25.40680000" + }, + { + "id": "15882", + "name": "Grodnenskiy Rayon", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.66667000", + "longitude": "24.00000000" + }, + { + "id": "15883", + "name": "Hal’shany", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.25850000", + "longitude": "26.01440000" + }, + { + "id": "15899", + "name": "Horad Hrodna", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.68333000", + "longitude": "23.83333000" + }, + { + "id": "15905", + "name": "Hrodna", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.68840000", + "longitude": "23.82580000" + }, + { + "id": "15906", + "name": "Hyeranyony", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.11590000", + "longitude": "25.57730000" + }, + { + "id": "15908", + "name": "Indura", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.46050000", + "longitude": "23.88230000" + }, + { + "id": "15913", + "name": "Iwye", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.92990000", + "longitude": "25.77270000" + }, + { + "id": "15924", + "name": "Karelichy", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.56480000", + "longitude": "26.14060000" + }, + { + "id": "15925", + "name": "Karelitski Rayon", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.50000000", + "longitude": "26.25000000" + }, + { + "id": "15950", + "name": "Krasnosel’skiy", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.26450000", + "longitude": "24.43010000" + }, + { + "id": "15952", + "name": "Kreva", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.31180000", + "longitude": "26.29160000" + }, + { + "id": "15959", + "name": "Lida", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.88333000", + "longitude": "25.29972000" + }, + { + "id": "15960", + "name": "Lidski Rayon", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.66667000", + "longitude": "25.25000000" + }, + { + "id": "15977", + "name": "Lyubcha", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.75220000", + "longitude": "26.06030000" + }, + { + "id": "15990", + "name": "Mir", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.45440000", + "longitude": "26.46700000" + }, + { + "id": "15992", + "name": "Mosty", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.41220000", + "longitude": "24.53870000" + }, + { + "id": "16006", + "name": "Novogrudok", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.59420000", + "longitude": "25.81910000" + }, + { + "id": "16042", + "name": "Ross’", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.28451000", + "longitude": "24.40335000" + }, + { + "id": "16047", + "name": "Sapotskin", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.83290000", + "longitude": "23.65980000" + }, + { + "id": "16054", + "name": "Shchuchyn", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.60140000", + "longitude": "24.74650000" + }, + { + "id": "16055", + "name": "Shchuchynski Rayon", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.58333000", + "longitude": "24.66667000" + }, + { + "id": "16059", + "name": "Skidel’", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.59040000", + "longitude": "24.24780000" + }, + { + "id": "16062", + "name": "Slonim", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.08690000", + "longitude": "25.31630000" + }, + { + "id": "16066", + "name": "Smarhon’", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.47980000", + "longitude": "26.39570000" + }, + { + "id": "16069", + "name": "Soly", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.51301000", + "longitude": "26.19381000" + }, + { + "id": "16079", + "name": "Svislach", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.03474000", + "longitude": "24.09829000" + }, + { + "id": "16103", + "name": "Vishnyeva", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.71020000", + "longitude": "26.52280000" + }, + { + "id": "16106", + "name": "Volkovysk", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.15610000", + "longitude": "24.45130000" + }, + { + "id": "16107", + "name": "Voranava", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "54.14920000", + "longitude": "25.31120000" + }, + { + "id": "16108", + "name": "Vyalikaya Byerastavitsa", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.19600000", + "longitude": "24.01660000" + }, + { + "id": "16121", + "name": "Zel’va", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.15040000", + "longitude": "24.81530000" + }, + { + "id": "16124", + "name": "Zhaludok", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.59740000", + "longitude": "24.98280000" + }, + { + "id": "16126", + "name": "Zhirovichi", + "state_id": 2956, + "state_code": "HR", + "country_id": 21, + "country_code": "BY", + "latitude": "53.01310000", + "longitude": "25.34430000" + }, + { + "id": "15881", + "name": "Frunzyenski Rayon", + "state_id": 2958, + "state_code": "HM", + "country_id": 21, + "country_code": "BY", + "latitude": "53.90056000", + "longitude": "27.49500000" + }, + { + "id": "15927", + "name": "Kastrychnitski Rayon", + "state_id": 2958, + "state_code": "HM", + "country_id": 21, + "country_code": "BY", + "latitude": "53.85667000", + "longitude": "27.54139000" + }, + { + "id": "15969", + "name": "Lyeninski Rayon", + "state_id": 2958, + "state_code": "HM", + "country_id": 21, + "country_code": "BY", + "latitude": "53.85944000", + "longitude": "27.58778000" + }, + { + "id": "15984", + "name": "Maskowski Rayon", + "state_id": 2958, + "state_code": "HM", + "country_id": 21, + "country_code": "BY", + "latitude": "53.87417000", + "longitude": "27.50278000" + }, + { + "id": "15989", + "name": "Minsk", + "state_id": 2958, + "state_code": "HM", + "country_id": 21, + "country_code": "BY", + "latitude": "53.90000000", + "longitude": "27.56667000" + }, + { + "id": "16016", + "name": "Partyzanski Rayon", + "state_id": 2958, + "state_code": "HM", + "country_id": 21, + "country_code": "BY", + "latitude": "53.88028000", + "longitude": "27.67000000" + }, + { + "id": "16050", + "name": "Savyetski Rayon", + "state_id": 2958, + "state_code": "HM", + "country_id": 21, + "country_code": "BY", + "latitude": "53.91778000", + "longitude": "27.59417000" + }, + { + "id": "16087", + "name": "Tsentral’ny Rayon", + "state_id": 2958, + "state_code": "HM", + "country_id": 21, + "country_code": "BY", + "latitude": "53.91778000", + "longitude": "27.56333000" + }, + { + "id": "16120", + "name": "Zavodski Rayon", + "state_id": 2958, + "state_code": "HM", + "country_id": 21, + "country_code": "BY", + "latitude": "53.86194000", + "longitude": "27.66222000" + }, + { + "id": "15811", + "name": "Astrashytski Haradok", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.06510000", + "longitude": "27.69500000" + }, + { + "id": "15814", + "name": "Atolina", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.78170000", + "longitude": "27.43460000" + }, + { + "id": "15815", + "name": "Azyartso", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.83970000", + "longitude": "27.39170000" + }, + { + "id": "15819", + "name": "Bal’shavik", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.00360000", + "longitude": "27.56690000" + }, + { + "id": "15824", + "name": "Barysaw", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.22790000", + "longitude": "28.50500000" + }, + { + "id": "15825", + "name": "Barysawski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.33333000", + "longitude": "28.58333000" + }, + { + "id": "15826", + "name": "Blon’", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.52690000", + "longitude": "28.17320000" + }, + { + "id": "15827", + "name": "Bobr", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.34200000", + "longitude": "29.27360000" + }, + { + "id": "15828", + "name": "Borovlyany", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.00220000", + "longitude": "27.67540000" + }, + { + "id": "15840", + "name": "Byarezinski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.83333000", + "longitude": "29.00000000" + }, + { + "id": "15845", + "name": "Byerazino", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.83910000", + "longitude": "28.98790000" + }, + { + "id": "15855", + "name": "Chervyen’", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.70590000", + "longitude": "28.43130000" + }, + { + "id": "15856", + "name": "Chervyen’ski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.75000000", + "longitude": "28.50000000" + }, + { + "id": "15859", + "name": "Chyrvonaya Slabada", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "52.85220000", + "longitude": "27.16980000" + }, + { + "id": "15860", + "name": "Chyst’", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.26980000", + "longitude": "27.10670000" + }, + { + "id": "15871", + "name": "Druzhny", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.62380000", + "longitude": "27.89770000" + }, + { + "id": "15875", + "name": "Dukora", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.67860000", + "longitude": "27.94000000" + }, + { + "id": "15878", + "name": "Dzyarzhynsk", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.68320000", + "longitude": "27.13800000" + }, + { + "id": "15879", + "name": "Enyerhyetykaw", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.58710000", + "longitude": "27.05350000" + }, + { + "id": "15880", + "name": "Fanipol", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.74998000", + "longitude": "27.33338000" + }, + { + "id": "15889", + "name": "Haradzyeya", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.31210000", + "longitude": "26.53800000" + }, + { + "id": "15890", + "name": "Hatava", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.78290000", + "longitude": "27.64070000" + }, + { + "id": "15900", + "name": "Horad Smalyavichy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.02490000", + "longitude": "28.08940000" + }, + { + "id": "15901", + "name": "Horad Zhodzina", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.09850000", + "longitude": "28.33310000" + }, + { + "id": "15904", + "name": "Hotsk", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "52.52150000", + "longitude": "27.13850000" + }, + { + "id": "15907", + "name": "Il’ya", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.41670000", + "longitude": "27.29580000" + }, + { + "id": "15912", + "name": "Ivyanyets", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.88640000", + "longitude": "26.74320000" + }, + { + "id": "15916", + "name": "Kalodzishchy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.94400000", + "longitude": "27.78230000" + }, + { + "id": "15921", + "name": "Kapyl’", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.15160000", + "longitude": "27.09130000" + }, + { + "id": "15922", + "name": "Kapyl’ski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.16667000", + "longitude": "27.08333000" + }, + { + "id": "15931", + "name": "Khatsyezhyna", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.90940000", + "longitude": "27.30690000" + }, + { + "id": "15933", + "name": "Kholopenichi", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.51746000", + "longitude": "28.95645000" + }, + { + "id": "15940", + "name": "Klyetsk", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.06350000", + "longitude": "26.63210000" + }, + { + "id": "15941", + "name": "Klyetski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.00000000", + "longitude": "26.66667000" + }, + { + "id": "15945", + "name": "Korolëv Stan", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.98650000", + "longitude": "27.79820000" + }, + { + "id": "15949", + "name": "Krasnaye", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.24380000", + "longitude": "27.07580000" + }, + { + "id": "15954", + "name": "Krupki", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.31780000", + "longitude": "29.13740000" + }, + { + "id": "15956", + "name": "Kryvichy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.71320000", + "longitude": "27.28860000" + }, + { + "id": "15958", + "name": "Lahoysk", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.20640000", + "longitude": "27.85120000" + }, + { + "id": "15961", + "name": "Loshnitsa", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.27960000", + "longitude": "28.76490000" + }, + { + "id": "15963", + "name": "Luhavaya Slabada", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.78230000", + "longitude": "27.84340000" + }, + { + "id": "15966", + "name": "Lyasny", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.00720000", + "longitude": "27.69630000" + }, + { + "id": "15972", + "name": "Lyeskawka", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.00240000", + "longitude": "27.71080000" + }, + { + "id": "15976", + "name": "Lyuban’", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "52.79850000", + "longitude": "28.00480000" + }, + { + "id": "15978", + "name": "Machulishchy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.77880000", + "longitude": "27.59480000" + }, + { + "id": "15981", + "name": "Maladzyechna", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.31670000", + "longitude": "26.85400000" + }, + { + "id": "15983", + "name": "Mar’’ina Horka", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.50900000", + "longitude": "28.14700000" + }, + { + "id": "15987", + "name": "Michanovichi", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.73937000", + "longitude": "27.69276000" + }, + { + "id": "15995", + "name": "Myadzyel", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.87890000", + "longitude": "26.93710000" + }, + { + "id": "15996", + "name": "Myadzyel’ski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.83333000", + "longitude": "27.00000000" + }, + { + "id": "16001", + "name": "Narach", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.91020000", + "longitude": "26.70800000" + }, + { + "id": "16003", + "name": "Nasilava", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.30441000", + "longitude": "26.78209000" + }, + { + "id": "16008", + "name": "Novosel’ye", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.91620000", + "longitude": "27.20090000" + }, + { + "id": "16009", + "name": "Novy Svyerzhan’", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.45420000", + "longitude": "26.73010000" + }, + { + "id": "16011", + "name": "Nyasvizh", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.21890000", + "longitude": "26.67790000" + }, + { + "id": "16012", + "name": "Nyasvizhski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.25000000", + "longitude": "26.66667000" + }, + { + "id": "16022", + "name": "Plyeshchanitsy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.42350000", + "longitude": "27.83010000" + }, + { + "id": "16026", + "name": "Prawdzinski", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.52480000", + "longitude": "27.83030000" + }, + { + "id": "16029", + "name": "Pryvol’ny", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.79690000", + "longitude": "27.79670000" + }, + { + "id": "16030", + "name": "Pukhavichy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.52970000", + "longitude": "28.24670000" + }, + { + "id": "16031", + "name": "Pukhavichy Raion", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.50000000", + "longitude": "28.00000000" + }, + { + "id": "16032", + "name": "Pyatryshki", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.06860000", + "longitude": "27.21790000" + }, + { + "id": "16034", + "name": "Radashkovichy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.15540000", + "longitude": "27.24120000" + }, + { + "id": "16037", + "name": "Rakaw", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.96740000", + "longitude": "27.05620000" + }, + { + "id": "16043", + "name": "Rudzyensk", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.59830000", + "longitude": "27.86210000" + }, + { + "id": "16045", + "name": "Salihorsk", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "52.78760000", + "longitude": "27.54150000" + }, + { + "id": "16046", + "name": "Samakhvalavichy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.73960000", + "longitude": "27.50370000" + }, + { + "id": "16048", + "name": "Sarachy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "52.78670000", + "longitude": "28.01860000" + }, + { + "id": "16051", + "name": "Schomyslitsa", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.82110000", + "longitude": "27.45220000" + }, + { + "id": "16060", + "name": "Slabada", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.00870000", + "longitude": "27.88660000" + }, + { + "id": "16063", + "name": "Slutsk", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.02740000", + "longitude": "27.55970000" + }, + { + "id": "16064", + "name": "Slutski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.00000000", + "longitude": "27.66667000" + }, + { + "id": "16065", + "name": "Smalyavitski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.00000000", + "longitude": "28.16667000" + }, + { + "id": "16067", + "name": "Smilavichy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.74960000", + "longitude": "28.01150000" + }, + { + "id": "16068", + "name": "Snow", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.22010000", + "longitude": "26.40100000" + }, + { + "id": "16070", + "name": "Stan’kava", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.62920000", + "longitude": "27.22900000" + }, + { + "id": "16071", + "name": "Staradarozhski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.00000000", + "longitude": "28.16667000" + }, + { + "id": "16072", + "name": "Starobin", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "52.72670000", + "longitude": "27.46060000" + }, + { + "id": "16073", + "name": "Staryya Darohi", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.04020000", + "longitude": "28.26700000" + }, + { + "id": "16074", + "name": "Stawbtsowski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.58333000", + "longitude": "26.66667000" + }, + { + "id": "16077", + "name": "Stowbtsy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.47850000", + "longitude": "26.74340000" + }, + { + "id": "16078", + "name": "Svir", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.85170000", + "longitude": "26.39500000" + }, + { + "id": "16080", + "name": "Svislach", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.64040000", + "longitude": "27.91990000" + }, + { + "id": "16083", + "name": "Syenitsa", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.83130000", + "longitude": "27.53430000" + }, + { + "id": "16085", + "name": "Syomkava", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.01010000", + "longitude": "27.44100000" + }, + { + "id": "16088", + "name": "Tsimkavichy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.06720000", + "longitude": "26.99020000" + }, + { + "id": "16091", + "name": "Turets-Bayary", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.37850000", + "longitude": "26.65810000" + }, + { + "id": "16092", + "name": "Urechcha", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "52.94790000", + "longitude": "27.89300000" + }, + { + "id": "16094", + "name": "Usiazh", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.07598000", + "longitude": "28.00698000" + }, + { + "id": "16095", + "name": "Uzda", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.46270000", + "longitude": "27.21370000" + }, + { + "id": "16096", + "name": "Uzdzyenski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.41667000", + "longitude": "27.33333000" + }, + { + "id": "16097", + "name": "Valozhyn", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.08920000", + "longitude": "26.52660000" + }, + { + "id": "16101", + "name": "Vilyeyka", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.49140000", + "longitude": "26.91110000" + }, + { + "id": "16102", + "name": "Vilyeyski Rayon", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.50000000", + "longitude": "27.08333000" + }, + { + "id": "16109", + "name": "Vyaliki Trastsyanets", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.85100000", + "longitude": "27.71390000" + }, + { + "id": "16117", + "name": "Yubilyeyny", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.81910000", + "longitude": "27.52150000" + }, + { + "id": "16118", + "name": "Zamostochye", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.81980000", + "longitude": "27.86850000" + }, + { + "id": "16119", + "name": "Zaslawye", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.01140000", + "longitude": "27.26950000" + }, + { + "id": "16125", + "name": "Zhdanovichy", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "53.94320000", + "longitude": "27.42500000" + }, + { + "id": "16131", + "name": "Zyembin", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.35790000", + "longitude": "28.22070000" + }, + { + "id": "16132", + "name": "Октябрьский", + "state_id": 2957, + "state_code": "MI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.04059000", + "longitude": "28.19813000" + }, + { + "id": "15808", + "name": "Asipovichy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.30110000", + "longitude": "28.63860000" + }, + { + "id": "15809", + "name": "Asipovitski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.33333000", + "longitude": "28.75000000" + }, + { + "id": "15816", + "name": "Babruysk", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.13840000", + "longitude": "29.22140000" + }, + { + "id": "15817", + "name": "Babruyski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.08333000", + "longitude": "29.16667000" + }, + { + "id": "15836", + "name": "Buynichy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.85360000", + "longitude": "30.26710000" + }, + { + "id": "15838", + "name": "Byalynichy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.99940000", + "longitude": "29.71410000" + }, + { + "id": "15839", + "name": "Byalynitski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.00000000", + "longitude": "29.75000000" + }, + { + "id": "15847", + "name": "Bykhaw", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.52100000", + "longitude": "30.24540000" + }, + { + "id": "15853", + "name": "Chavuski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.83333000", + "longitude": "30.91667000" + }, + { + "id": "15854", + "name": "Chavusy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.80980000", + "longitude": "30.97170000" + }, + { + "id": "15857", + "name": "Cherykaw", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.56890000", + "longitude": "31.38310000" + }, + { + "id": "15858", + "name": "Cherykawski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.66667000", + "longitude": "31.33333000" + }, + { + "id": "15862", + "name": "Dashkawka", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.73520000", + "longitude": "30.26250000" + }, + { + "id": "15872", + "name": "Drybin", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.11920000", + "longitude": "31.09390000" + }, + { + "id": "15873", + "name": "Drybinski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.08333000", + "longitude": "31.00000000" + }, + { + "id": "15891", + "name": "Hlusha", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.08680000", + "longitude": "28.85670000" + }, + { + "id": "15892", + "name": "Hlusk", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "52.90300000", + "longitude": "28.68450000" + }, + { + "id": "15902", + "name": "Horatski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.33333000", + "longitude": "31.00000000" + }, + { + "id": "15903", + "name": "Horki", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.28620000", + "longitude": "30.98630000" + }, + { + "id": "15914", + "name": "Kadino", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.88389000", + "longitude": "30.52028000" + }, + { + "id": "15920", + "name": "Kamyennyya Lavy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.08980000", + "longitude": "30.29620000" + }, + { + "id": "15928", + "name": "Kastsyukovichy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.35250000", + "longitude": "32.05140000" + }, + { + "id": "15932", + "name": "Khodasy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.92660000", + "longitude": "31.47790000" + }, + { + "id": "15934", + "name": "Khotsimsk", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.40860000", + "longitude": "32.57800000" + }, + { + "id": "15935", + "name": "Khotsimski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.41667000", + "longitude": "32.50000000" + }, + { + "id": "15937", + "name": "Kirawsk", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.26930000", + "longitude": "29.47520000" + }, + { + "id": "15938", + "name": "Klichaw", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.49230000", + "longitude": "29.33560000" + }, + { + "id": "15939", + "name": "Klimavichy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.60790000", + "longitude": "31.95860000" + }, + { + "id": "15948", + "name": "Krasnapol’ski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.33333000", + "longitude": "31.41667000" + }, + { + "id": "15947", + "name": "Krasnapollye", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.33530000", + "longitude": "31.39990000" + }, + { + "id": "15951", + "name": "Krasnyy Bereg", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.32910000", + "longitude": "30.19290000" + }, + { + "id": "15953", + "name": "Kruhlaye", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.24970000", + "longitude": "29.79680000" + }, + { + "id": "15955", + "name": "Krychaw", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.71250000", + "longitude": "31.71700000" + }, + { + "id": "15979", + "name": "Mahilyow", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.91680000", + "longitude": "30.34490000" + }, + { + "id": "15980", + "name": "Mahilyowski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.83333000", + "longitude": "30.25000000" + }, + { + "id": "15994", + "name": "Mstsislaw", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.01850000", + "longitude": "31.72170000" + }, + { + "id": "15997", + "name": "Myazhysyatki", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.77760000", + "longitude": "30.17650000" + }, + { + "id": "16000", + "name": "Myshkavichy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.21720000", + "longitude": "29.51200000" + }, + { + "id": "16015", + "name": "Palykavichy Pyershyya", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.98540000", + "longitude": "30.36000000" + }, + { + "id": "16025", + "name": "Posëlok Voskhod", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.77660000", + "longitude": "30.34970000" + }, + { + "id": "16038", + "name": "Ramanavichy", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.86530000", + "longitude": "30.55970000" + }, + { + "id": "16056", + "name": "Shklow", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.21310000", + "longitude": "30.28770000" + }, + { + "id": "16057", + "name": "Shklowski Rayon", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "54.16667000", + "longitude": "30.33333000" + }, + { + "id": "16061", + "name": "Slawharad", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.44290000", + "longitude": "31.00140000" + }, + { + "id": "16099", + "name": "Veyno", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.83333000", + "longitude": "30.38333000" + }, + { + "id": "16104", + "name": "Vishow", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.98050000", + "longitude": "29.99250000" + }, + { + "id": "16115", + "name": "Yalizava", + "state_id": 2954, + "state_code": "MA", + "country_id": 21, + "country_code": "BY", + "latitude": "53.39940000", + "longitude": "29.00480000" + }, + { + "id": "15818", + "name": "Balbasava", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.42070000", + "longitude": "30.29090000" + }, + { + "id": "15822", + "name": "Baran’", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.47840000", + "longitude": "30.31590000" + }, + { + "id": "15831", + "name": "Braslaw", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.64130000", + "longitude": "27.04180000" + }, + { + "id": "15832", + "name": "Braslawski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.55972000", + "longitude": "27.00000000" + }, + { + "id": "15837", + "name": "Byahoml’", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.73160000", + "longitude": "28.05770000" + }, + { + "id": "15846", + "name": "Byeshankovitski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.00000000", + "longitude": "29.50000000" + }, + { + "id": "15851", + "name": "Chashniki", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.85840000", + "longitude": "29.16080000" + }, + { + "id": "15852", + "name": "Chashnitski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.75000000", + "longitude": "29.25000000" + }, + { + "id": "15865", + "name": "Dokshytski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.83333000", + "longitude": "27.91667000" + }, + { + "id": "15866", + "name": "Dokshytsy", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.89180000", + "longitude": "27.76670000" + }, + { + "id": "15870", + "name": "Druya", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.79060000", + "longitude": "27.45050000" + }, + { + "id": "15874", + "name": "Dubrowna", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.57160000", + "longitude": "30.69100000" + }, + { + "id": "15877", + "name": "Dzisna", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.56760000", + "longitude": "28.20760000" + }, + { + "id": "15886", + "name": "Haradok", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.46240000", + "longitude": "29.98450000" + }, + { + "id": "15887", + "name": "Haradotski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.66667000", + "longitude": "30.16667000" + }, + { + "id": "15893", + "name": "Hlybokaye", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.13840000", + "longitude": "27.69050000" + }, + { + "id": "15894", + "name": "Hlybotski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.16667000", + "longitude": "27.83333000" + }, + { + "id": "15943", + "name": "Kokhanava", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.46110000", + "longitude": "30.00180000" + }, + { + "id": "15944", + "name": "Konstantinovo", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.65930000", + "longitude": "29.26840000" + }, + { + "id": "15970", + "name": "Lyepyel’", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.88140000", + "longitude": "28.69900000" + }, + { + "id": "15971", + "name": "Lyepyel’ski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.83333000", + "longitude": "28.66667000" + }, + { + "id": "15973", + "name": "Lyntupy", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.05160000", + "longitude": "26.31030000" + }, + { + "id": "15974", + "name": "Lyozna", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.02470000", + "longitude": "30.79700000" + }, + { + "id": "15975", + "name": "Lyoznyenski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.00000000", + "longitude": "30.66667000" + }, + { + "id": "15991", + "name": "Mosar", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.22320000", + "longitude": "27.46090000" + }, + { + "id": "15998", + "name": "Myorski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.58333000", + "longitude": "27.83333000" + }, + { + "id": "15999", + "name": "Myory", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.62220000", + "longitude": "27.62810000" + }, + { + "id": "16004", + "name": "Navapolatsk", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.53180000", + "longitude": "28.59870000" + }, + { + "id": "16007", + "name": "Novolukoml’", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.66192000", + "longitude": "29.15016000" + }, + { + "id": "16013", + "name": "Orsha", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.50810000", + "longitude": "30.41720000" + }, + { + "id": "16014", + "name": "Osveya", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "56.01470000", + "longitude": "28.11049000" + }, + { + "id": "16018", + "name": "Pastavy", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.11676000", + "longitude": "26.83263000" + }, + { + "id": "16019", + "name": "Pastawski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.08333000", + "longitude": "26.91667000" + }, + { + "id": "16023", + "name": "Polatsk", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.48790000", + "longitude": "28.78560000" + }, + { + "id": "16024", + "name": "Polatski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.58333000", + "longitude": "29.00000000" + }, + { + "id": "16039", + "name": "Rasonski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.83333000", + "longitude": "28.91667000" + }, + { + "id": "16040", + "name": "Rasony", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.90580000", + "longitude": "28.81350000" + }, + { + "id": "16052", + "name": "Sharkawshchyna", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.36890000", + "longitude": "27.46860000" + }, + { + "id": "16053", + "name": "Sharkawshchynski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.41667000", + "longitude": "27.41667000" + }, + { + "id": "16058", + "name": "Shumilinski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.33333000", + "longitude": "29.50000000" + }, + { + "id": "16082", + "name": "Syanno", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.81080000", + "longitude": "29.70860000" + }, + { + "id": "16084", + "name": "Syennyenski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.83333000", + "longitude": "29.83333000" + }, + { + "id": "16086", + "name": "Talachyn", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "54.40870000", + "longitude": "29.69550000" + }, + { + "id": "16093", + "name": "Ushachy", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.17900000", + "longitude": "28.61580000" + }, + { + "id": "16100", + "name": "Vidzy", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.39450000", + "longitude": "26.63050000" + }, + { + "id": "16105", + "name": "Vitebsk", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.19040000", + "longitude": "30.20490000" + }, + { + "id": "16110", + "name": "Vyerkhnyadzvinsk", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.77770000", + "longitude": "27.93890000" + }, + { + "id": "16111", + "name": "Vyerkhnyadzvinski Rayon", + "state_id": 2960, + "state_code": "VI", + "country_id": 21, + "country_code": "BY", + "latitude": "55.75000000", + "longitude": "28.16667000" + }, + { + "id": "8693", + "name": "Brussels", + "state_id": 1376, + "state_code": "BRU", + "country_id": 22, + "country_code": "BE", + "latitude": "50.85045000", + "longitude": "4.34878000" + }, + { + "id": "8608", + "name": "Aalst", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.93604000", + "longitude": "4.03550000" + }, + { + "id": "8609", + "name": "Aalter", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09017000", + "longitude": "3.44693000" + }, + { + "id": "8610", + "name": "Aarschot", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.98715000", + "longitude": "4.83695000" + }, + { + "id": "8611", + "name": "Aartselaar", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.13412000", + "longitude": "4.38678000" + }, + { + "id": "8613", + "name": "Alken", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.87553000", + "longitude": "5.30558000" + }, + { + "id": "8614", + "name": "Alveringem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.01238000", + "longitude": "2.71117000" + }, + { + "id": "8623", + "name": "Antwerpen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.21989000", + "longitude": "4.40346000" + }, + { + "id": "8624", + "name": "Anzegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.83700000", + "longitude": "3.47786000" + }, + { + "id": "8625", + "name": "Ardooie", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.97570000", + "longitude": "3.19736000" + }, + { + "id": "8626", + "name": "Arendonk", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.32267000", + "longitude": "5.08289000" + }, + { + "id": "8628", + "name": "As", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00755000", + "longitude": "5.58453000" + }, + { + "id": "8629", + "name": "Asse", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.91011000", + "longitude": "4.19836000" + }, + { + "id": "8630", + "name": "Assenede", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.22598000", + "longitude": "3.75085000" + }, + { + "id": "8636", + "name": "Avelgem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.77618000", + "longitude": "3.44502000" + }, + { + "id": "8639", + "name": "Baarle-Hertog", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.40504000", + "longitude": "4.89226000" + }, + { + "id": "8641", + "name": "Balen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.16837000", + "longitude": "5.17027000" + }, + { + "id": "8648", + "name": "Beernem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.13981000", + "longitude": "3.33896000" + }, + { + "id": "8649", + "name": "Beerse", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.31927000", + "longitude": "4.85304000" + }, + { + "id": "8650", + "name": "Beersel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.76589000", + "longitude": "4.30020000" + }, + { + "id": "8651", + "name": "Begijnendijk", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.01942000", + "longitude": "4.78377000" + }, + { + "id": "8652", + "name": "Bekkevoort", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.94074000", + "longitude": "4.96900000" + }, + { + "id": "8654", + "name": "Beringen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.04954000", + "longitude": "5.22606000" + }, + { + "id": "8655", + "name": "Berlaar", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.11760000", + "longitude": "4.65835000" + }, + { + "id": "8656", + "name": "Berlare", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.03333000", + "longitude": "4.00000000" + }, + { + "id": "8659", + "name": "Bertem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.86403000", + "longitude": "4.62918000" + }, + { + "id": "8662", + "name": "Bever", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.91667000", + "longitude": "4.31667000" + }, + { + "id": "8663", + "name": "Beveren", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.21187000", + "longitude": "4.25633000" + }, + { + "id": "8665", + "name": "Bierbeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.82876000", + "longitude": "4.75949000" + }, + { + "id": "8666", + "name": "Bilzen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.87325000", + "longitude": "5.51840000" + }, + { + "id": "8669", + "name": "Blankenberge", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.31306000", + "longitude": "3.13227000" + }, + { + "id": "8671", + "name": "Bocholt", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.17337000", + "longitude": "5.57994000" + }, + { + "id": "8672", + "name": "Boechout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.15959000", + "longitude": "4.49195000" + }, + { + "id": "8673", + "name": "Bonheiden", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.02261000", + "longitude": "4.54714000" + }, + { + "id": "8674", + "name": "Boom", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09242000", + "longitude": "4.37170000" + }, + { + "id": "8675", + "name": "Boortmeerbeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.97929000", + "longitude": "4.57443000" + }, + { + "id": "8676", + "name": "Borgloon", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.80505000", + "longitude": "5.34366000" + }, + { + "id": "8677", + "name": "Bornem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09716000", + "longitude": "4.24364000" + }, + { + "id": "8678", + "name": "Borsbeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.19661000", + "longitude": "4.48543000" + }, + { + "id": "8681", + "name": "Boutersem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.83511000", + "longitude": "4.83450000" + }, + { + "id": "8686", + "name": "Brasschaat", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.29120000", + "longitude": "4.49182000" + }, + { + "id": "8687", + "name": "Brecht", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.35024000", + "longitude": "4.63829000" + }, + { + "id": "8688", + "name": "Bredene", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.23489000", + "longitude": "2.97559000" + }, + { + "id": "8689", + "name": "Bree", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.14152000", + "longitude": "5.59690000" + }, + { + "id": "8691", + "name": "Brugge", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.20892000", + "longitude": "3.22424000" + }, + { + "id": "8694", + "name": "Buggenhout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.01590000", + "longitude": "4.20173000" + }, + { + "id": "8718", + "name": "Damme", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.25147000", + "longitude": "3.28144000" + }, + { + "id": "8720", + "name": "De Haan", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.27261000", + "longitude": "3.03446000" + }, + { + "id": "8721", + "name": "De Panne", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09793000", + "longitude": "2.59368000" + }, + { + "id": "8722", + "name": "De Pinte", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.99339000", + "longitude": "3.64747000" + }, + { + "id": "8723", + "name": "Deerlijk", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.85337000", + "longitude": "3.35416000" + }, + { + "id": "8724", + "name": "Deinze", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.98175000", + "longitude": "3.53096000" + }, + { + "id": "8725", + "name": "Denderleeuw", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.88506000", + "longitude": "4.07601000" + }, + { + "id": "8726", + "name": "Dendermonde", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.02869000", + "longitude": "4.10106000" + }, + { + "id": "8727", + "name": "Dentergem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.96429000", + "longitude": "3.41617000" + }, + { + "id": "8728", + "name": "Dessel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.23855000", + "longitude": "5.11448000" + }, + { + "id": "8729", + "name": "Destelbergen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.05952000", + "longitude": "3.79899000" + }, + { + "id": "8730", + "name": "Deurne", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.22134000", + "longitude": "4.46595000" + }, + { + "id": "8731", + "name": "Diegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.89727000", + "longitude": "4.43354000" + }, + { + "id": "8732", + "name": "Diepenbeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.90769000", + "longitude": "5.41875000" + }, + { + "id": "8733", + "name": "Diest", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.98923000", + "longitude": "5.05062000" + }, + { + "id": "8734", + "name": "Diksmuide", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.03248000", + "longitude": "2.86384000" + }, + { + "id": "8735", + "name": "Dilbeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.84799000", + "longitude": "4.25972000" + }, + { + "id": "8741", + "name": "Drogenbos", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.78733000", + "longitude": "4.31471000" + }, + { + "id": "8742", + "name": "Duffel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09554000", + "longitude": "4.50903000" + }, + { + "id": "8744", + "name": "Edegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.15662000", + "longitude": "4.44504000" + }, + { + "id": "8745", + "name": "Eeklo", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.18703000", + "longitude": "3.55654000" + }, + { + "id": "8751", + "name": "Essen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.46791000", + "longitude": "4.46901000" + }, + { + "id": "8755", + "name": "Evergem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.11306000", + "longitude": "3.70976000" + }, + { + "id": "8773", + "name": "Galmaarden", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.75389000", + "longitude": "3.97121000" + }, + { + "id": "8774", + "name": "Gavere", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.92917000", + "longitude": "3.66184000" + }, + { + "id": "8776", + "name": "Geel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.16557000", + "longitude": "4.98917000" + }, + { + "id": "8778", + "name": "Geetbets", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.89431000", + "longitude": "5.11199000" + }, + { + "id": "8781", + "name": "Genk", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.96500000", + "longitude": "5.50082000" + }, + { + "id": "8782", + "name": "Gent", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.05000000", + "longitude": "3.71667000" + }, + { + "id": "8783", + "name": "Geraardsbergen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.77343000", + "longitude": "3.88223000" + }, + { + "id": "8786", + "name": "Gingelom", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.74792000", + "longitude": "5.13422000" + }, + { + "id": "8787", + "name": "Gistel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.15612000", + "longitude": "2.96387000" + }, + { + "id": "8788", + "name": "Glabbeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.87267000", + "longitude": "4.95615000" + }, + { + "id": "8789", + "name": "Gooik", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.79443000", + "longitude": "4.11378000" + }, + { + "id": "8792", + "name": "Grimbergen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.93409000", + "longitude": "4.37213000" + }, + { + "id": "8793", + "name": "Grobbendonk", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.19043000", + "longitude": "4.73562000" + }, + { + "id": "8794", + "name": "Haacht", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.97737000", + "longitude": "4.63777000" + }, + { + "id": "8795", + "name": "Haaltert", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.90634000", + "longitude": "4.00093000" + }, + { + "id": "8797", + "name": "Halen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.94837000", + "longitude": "5.11096000" + }, + { + "id": "8798", + "name": "Halle", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.73385000", + "longitude": "4.23454000" + }, + { + "id": "8799", + "name": "Hamme", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09822000", + "longitude": "4.13705000" + }, + { + "id": "8803", + "name": "Harelbeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.85343000", + "longitude": "3.30935000" + }, + { + "id": "8804", + "name": "Hasselt", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.93106000", + "longitude": "5.33781000" + }, + { + "id": "8807", + "name": "Heers", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.75383000", + "longitude": "5.30210000" + }, + { + "id": "8808", + "name": "Heist-op-den-Berg", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.07537000", + "longitude": "4.72827000" + }, + { + "id": "8809", + "name": "Helchteren", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.05591000", + "longitude": "5.38244000" + }, + { + "id": "8810", + "name": "Hemiksem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.14484000", + "longitude": "4.33874000" + }, + { + "id": "8813", + "name": "Herent", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.90861000", + "longitude": "4.67056000" + }, + { + "id": "8814", + "name": "Herentals", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.17655000", + "longitude": "4.83248000" + }, + { + "id": "8815", + "name": "Herenthout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.14010000", + "longitude": "4.75572000" + }, + { + "id": "8816", + "name": "Herk-de-Stad", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.94013000", + "longitude": "5.16636000" + }, + { + "id": "8817", + "name": "Herne", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.72423000", + "longitude": "4.03481000" + }, + { + "id": "8818", + "name": "Herselt", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.05159000", + "longitude": "4.88231000" + }, + { + "id": "8821", + "name": "Herzele", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.88681000", + "longitude": "3.89014000" + }, + { + "id": "8822", + "name": "Heusden", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.03664000", + "longitude": "5.28013000" + }, + { + "id": "8823", + "name": "Hoboken", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.17611000", + "longitude": "4.34844000" + }, + { + "id": "8824", + "name": "Hoegaarden", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.77560000", + "longitude": "4.88952000" + }, + { + "id": "8825", + "name": "Hoeilaart", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.76730000", + "longitude": "4.46835000" + }, + { + "id": "8826", + "name": "Hoeselt", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.84714000", + "longitude": "5.48767000" + }, + { + "id": "8827", + "name": "Holsbeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.92097000", + "longitude": "4.75747000" + }, + { + "id": "8828", + "name": "Hooglede", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.98333000", + "longitude": "3.08333000" + }, + { + "id": "8829", + "name": "Hoogstraten", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.40029000", + "longitude": "4.76034000" + }, + { + "id": "8832", + "name": "Houthalen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.03427000", + "longitude": "5.37429000" + }, + { + "id": "8833", + "name": "Houthulst", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.97824000", + "longitude": "2.95050000" + }, + { + "id": "8835", + "name": "Hove", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.15446000", + "longitude": "4.47070000" + }, + { + "id": "8836", + "name": "Huldenberg", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.78939000", + "longitude": "4.58310000" + }, + { + "id": "8837", + "name": "Hulshout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.07451000", + "longitude": "4.79081000" + }, + { + "id": "8840", + "name": "Ichtegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09572000", + "longitude": "3.01549000" + }, + { + "id": "8841", + "name": "Ieper", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.85114000", + "longitude": "2.88569000" + }, + { + "id": "8843", + "name": "Ingelmunster", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.92081000", + "longitude": "3.25571000" + }, + { + "id": "8845", + "name": "Izegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.91396000", + "longitude": "3.21378000" + }, + { + "id": "8846", + "name": "Jabbeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.18185000", + "longitude": "3.08935000" + }, + { + "id": "8851", + "name": "Kalmthout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.38442000", + "longitude": "4.47556000" + }, + { + "id": "8852", + "name": "Kampenhout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.94210000", + "longitude": "4.55103000" + }, + { + "id": "8853", + "name": "Kapelle-op-den-Bos", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00970000", + "longitude": "4.36303000" + }, + { + "id": "8854", + "name": "Kapellen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.31377000", + "longitude": "4.43539000" + }, + { + "id": "8855", + "name": "Kaprijke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.21720000", + "longitude": "3.61519000" + }, + { + "id": "8856", + "name": "Kasterlee", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.24118000", + "longitude": "4.96651000" + }, + { + "id": "8857", + "name": "Keerbergen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00295000", + "longitude": "4.63434000" + }, + { + "id": "8858", + "name": "Kinrooi", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.14543000", + "longitude": "5.74207000" + }, + { + "id": "8859", + "name": "Knesselare", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.13932000", + "longitude": "3.41282000" + }, + { + "id": "8860", + "name": "Knokke-Heist", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.35000000", + "longitude": "3.26667000" + }, + { + "id": "8861", + "name": "Koekelare", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09047000", + "longitude": "2.97830000" + }, + { + "id": "8862", + "name": "Koksijde", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.11642000", + "longitude": "2.63772000" + }, + { + "id": "8863", + "name": "Kontich", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.13213000", + "longitude": "4.44706000" + }, + { + "id": "8864", + "name": "Kortemark", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.02951000", + "longitude": "3.04112000" + }, + { + "id": "8865", + "name": "Kortenaken", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.90862000", + "longitude": "5.05968000" + }, + { + "id": "8866", + "name": "Kortenberg", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.88982000", + "longitude": "4.54353000" + }, + { + "id": "8867", + "name": "Kortessem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.85890000", + "longitude": "5.38974000" + }, + { + "id": "8868", + "name": "Kortrijk", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.82803000", + "longitude": "3.26487000" + }, + { + "id": "8869", + "name": "Kraainem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.86155000", + "longitude": "4.46946000" + }, + { + "id": "8870", + "name": "Kruibeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.17048000", + "longitude": "4.31444000" + }, + { + "id": "8871", + "name": "Kruishoutem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.90168000", + "longitude": "3.52588000" + }, + { + "id": "8872", + "name": "Kuurne", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.85143000", + "longitude": "3.28240000" + }, + { + "id": "8878", + "name": "Laarne", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.03078000", + "longitude": "3.85077000" + }, + { + "id": "8879", + "name": "Lanaken", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.89318000", + "longitude": "5.64680000" + }, + { + "id": "8880", + "name": "Landen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.75267000", + "longitude": "5.08200000" + }, + { + "id": "8881", + "name": "Lebbeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00464000", + "longitude": "4.13457000" + }, + { + "id": "8882", + "name": "Lede", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.96626000", + "longitude": "3.98594000" + }, + { + "id": "8883", + "name": "Ledeberg", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.03859000", + "longitude": "3.74458000" + }, + { + "id": "8884", + "name": "Ledegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.85785000", + "longitude": "3.12409000" + }, + { + "id": "8885", + "name": "Lendelede", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.88626000", + "longitude": "3.23747000" + }, + { + "id": "8887", + "name": "Leopoldsburg", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.11667000", + "longitude": "5.25000000" + }, + { + "id": "8889", + "name": "Leuven", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.87959000", + "longitude": "4.70093000" + }, + { + "id": "8891", + "name": "Lichtervelde", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.03333000", + "longitude": "3.15000000" + }, + { + "id": "8892", + "name": "Liedekerke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.86892000", + "longitude": "4.08743000" + }, + { + "id": "8893", + "name": "Lier", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.13128000", + "longitude": "4.57041000" + }, + { + "id": "8895", + "name": "Lille", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.24197000", + "longitude": "4.82313000" + }, + { + "id": "8898", + "name": "Linkebeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.76781000", + "longitude": "4.33688000" + }, + { + "id": "8899", + "name": "Lint", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.12707000", + "longitude": "4.49669000" + }, + { + "id": "8902", + "name": "Lochristi", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09644000", + "longitude": "3.83194000" + }, + { + "id": "8903", + "name": "Lokeren", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.10364000", + "longitude": "3.99339000" + }, + { + "id": "8904", + "name": "Lommel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.23074000", + "longitude": "5.31349000" + }, + { + "id": "8905", + "name": "Londerzeel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00468000", + "longitude": "4.30304000" + }, + { + "id": "8908", + "name": "Lovendegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.10168000", + "longitude": "3.61298000" + }, + { + "id": "8909", + "name": "Lubbeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.88278000", + "longitude": "4.83896000" + }, + { + "id": "8910", + "name": "Lummen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.98772000", + "longitude": "5.19121000" + }, + { + "id": "8912", + "name": "Maaseik", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09802000", + "longitude": "5.78379000" + }, + { + "id": "8913", + "name": "Maasmechelen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.96545000", + "longitude": "5.69452000" + }, + { + "id": "8914", + "name": "Machelen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.91061000", + "longitude": "4.44174000" + }, + { + "id": "8915", + "name": "Maldegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.20737000", + "longitude": "3.44511000" + }, + { + "id": "8922", + "name": "Mechelen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.02574000", + "longitude": "4.47762000" + }, + { + "id": "8923", + "name": "Meerhout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.13210000", + "longitude": "5.07842000" + }, + { + "id": "8924", + "name": "Meise", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.93934000", + "longitude": "4.32655000" + }, + { + "id": "8926", + "name": "Melle", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00232000", + "longitude": "3.80526000" + }, + { + "id": "8927", + "name": "Menen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.79722000", + "longitude": "3.12245000" + }, + { + "id": "8929", + "name": "Merchtem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.95129000", + "longitude": "4.23197000" + }, + { + "id": "8930", + "name": "Merelbeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.99447000", + "longitude": "3.74621000" + }, + { + "id": "8931", + "name": "Merksplas", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.35851000", + "longitude": "4.86513000" + }, + { + "id": "8934", + "name": "Meulebeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.95136000", + "longitude": "3.28804000" + }, + { + "id": "8935", + "name": "Middelkerke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.18532000", + "longitude": "2.82077000" + }, + { + "id": "8937", + "name": "Moerbeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.17409000", + "longitude": "3.93001000" + }, + { + "id": "8938", + "name": "Mol", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.19188000", + "longitude": "5.11662000" + }, + { + "id": "8943", + "name": "Moorslede", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.89190000", + "longitude": "3.06117000" + }, + { + "id": "8945", + "name": "Mortsel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.16697000", + "longitude": "4.45127000" + }, + { + "id": "8951", + "name": "Nazareth", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.95686000", + "longitude": "3.59425000" + }, + { + "id": "8952", + "name": "Neerpelt", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.22807000", + "longitude": "5.44270000" + }, + { + "id": "8954", + "name": "Nevele", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.03531000", + "longitude": "3.54574000" + }, + { + "id": "8955", + "name": "Niel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.11096000", + "longitude": "4.33428000" + }, + { + "id": "8956", + "name": "Nieuwerkerken", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.86380000", + "longitude": "5.19467000" + }, + { + "id": "8957", + "name": "Nieuwpoort", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.13008000", + "longitude": "2.75135000" + }, + { + "id": "8958", + "name": "Nijlen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.16096000", + "longitude": "4.67008000" + }, + { + "id": "8959", + "name": "Ninove", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.82776000", + "longitude": "4.02657000" + }, + { + "id": "8963", + "name": "Olen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.14391000", + "longitude": "4.85980000" + }, + { + "id": "8966", + "name": "Oostduinkerke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.11565000", + "longitude": "2.68217000" + }, + { + "id": "8967", + "name": "Oosterzele", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.95261000", + "longitude": "3.79826000" + }, + { + "id": "8968", + "name": "Oostkamp", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.15432000", + "longitude": "3.23128000" + }, + { + "id": "8969", + "name": "Oostmalle", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.30000000", + "longitude": "4.73333000" + }, + { + "id": "8970", + "name": "Oostrozebeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.92093000", + "longitude": "3.33799000" + }, + { + "id": "8971", + "name": "Opglabbeek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.04258000", + "longitude": "5.58346000" + }, + { + "id": "8972", + "name": "Opwijk", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.96724000", + "longitude": "4.18442000" + }, + { + "id": "8974", + "name": "Ostend", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.21551000", + "longitude": "2.92700000" + }, + { + "id": "8976", + "name": "Oud-Heverlee", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.83522000", + "longitude": "4.66421000" + }, + { + "id": "8977", + "name": "Oud-Turnhout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.31978000", + "longitude": "4.98410000" + }, + { + "id": "8978", + "name": "Oudenaarde", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.85168000", + "longitude": "3.60891000" + }, + { + "id": "8979", + "name": "Oudenburg", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.18489000", + "longitude": "3.00035000" + }, + { + "id": "8982", + "name": "Overijse", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.77436000", + "longitude": "4.53461000" + }, + { + "id": "8983", + "name": "Overpelt", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.21038000", + "longitude": "5.41557000" + }, + { + "id": "8986", + "name": "Peer", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.13030000", + "longitude": "5.45952000" + }, + { + "id": "8987", + "name": "Pepingen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.75922000", + "longitude": "4.15983000" + }, + { + "id": "8989", + "name": "Perre", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.88914000", + "longitude": "3.86098000" + }, + { + "id": "8992", + "name": "Pittem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.99279000", + "longitude": "3.26317000" + }, + { + "id": "8995", + "name": "Poperinge", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.85386000", + "longitude": "2.72659000" + }, + { + "id": "9002", + "name": "Provincie Antwerpen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.16558000", + "longitude": "4.83402000" + }, + { + "id": "9003", + "name": "Provincie Limburg", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00000000", + "longitude": "5.50000000" + }, + { + "id": "9004", + "name": "Provincie Oost-Vlaanderen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00000000", + "longitude": "3.75000000" + }, + { + "id": "9005", + "name": "Provincie Vlaams-Brabant", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.91667000", + "longitude": "4.58333000" + }, + { + "id": "9006", + "name": "Provincie West-Vlaanderen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00000000", + "longitude": "3.00000000" + }, + { + "id": "9007", + "name": "Putte", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.05337000", + "longitude": "4.63263000" + }, + { + "id": "9008", + "name": "Puurs", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.07409000", + "longitude": "4.28844000" + }, + { + "id": "9015", + "name": "Ranst", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.18983000", + "longitude": "4.56533000" + }, + { + "id": "9016", + "name": "Ravels", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.37274000", + "longitude": "4.99210000" + }, + { + "id": "9020", + "name": "Retie", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.26652000", + "longitude": "5.08242000" + }, + { + "id": "9021", + "name": "Riemst", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.80995000", + "longitude": "5.60131000" + }, + { + "id": "9022", + "name": "Rijkevorsel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.34795000", + "longitude": "4.76053000" + }, + { + "id": "9025", + "name": "Roeselare", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.94653000", + "longitude": "3.12269000" + }, + { + "id": "9027", + "name": "Ronse", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.74574000", + "longitude": "3.60050000" + }, + { + "id": "9028", + "name": "Rotselaar", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.95302000", + "longitude": "4.71665000" + }, + { + "id": "9030", + "name": "Ruiselede", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.04039000", + "longitude": "3.39416000" + }, + { + "id": "9032", + "name": "Rumst", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.08153000", + "longitude": "4.42217000" + }, + { + "id": "9039", + "name": "Schelle", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.12615000", + "longitude": "4.34114000" + }, + { + "id": "9040", + "name": "Schilde", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.24107000", + "longitude": "4.58336000" + }, + { + "id": "9041", + "name": "Schoten", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.25251000", + "longitude": "4.50268000" + }, + { + "id": "9045", + "name": "Sint-Amands", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.05645000", + "longitude": "4.20957000" + }, + { + "id": "9046", + "name": "Sint-Genesius-Rode", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.74645000", + "longitude": "4.35754000" + }, + { + "id": "9047", + "name": "Sint-Gillis-Waas", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.21914000", + "longitude": "4.12374000" + }, + { + "id": "9048", + "name": "Sint-Joris", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.87117000", + "longitude": "5.27200000" + }, + { + "id": "9049", + "name": "Sint-Katelijne-Waver", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.06691000", + "longitude": "4.53469000" + }, + { + "id": "9050", + "name": "Sint-Kruis", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.21399000", + "longitude": "3.24949000" + }, + { + "id": "9051", + "name": "Sint-Laureins", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.24202000", + "longitude": "3.52441000" + }, + { + "id": "9052", + "name": "Sint-Lievens-Houtem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.91970000", + "longitude": "3.86225000" + }, + { + "id": "9053", + "name": "Sint-Maria-Lierde", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.81867000", + "longitude": "3.84436000" + }, + { + "id": "9054", + "name": "Sint-Martens-Latem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.01459000", + "longitude": "3.63779000" + }, + { + "id": "9055", + "name": "Sint-Martens-Lennik", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.81158000", + "longitude": "4.16965000" + }, + { + "id": "9056", + "name": "Sint-Niklaas", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.16509000", + "longitude": "4.14370000" + }, + { + "id": "9057", + "name": "Sint-Pieters-Leeuw", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.77926000", + "longitude": "4.24355000" + }, + { + "id": "9058", + "name": "Sint-Pieters-Voeren", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.73863000", + "longitude": "5.82224000" + }, + { + "id": "9059", + "name": "Sint-Truiden", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.81679000", + "longitude": "5.18647000" + }, + { + "id": "9066", + "name": "Stabroek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.33189000", + "longitude": "4.37127000" + }, + { + "id": "9067", + "name": "Staden", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.97456000", + "longitude": "3.01469000" + }, + { + "id": "9069", + "name": "Steenokkerzeel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.91851000", + "longitude": "4.50989000" + }, + { + "id": "9070", + "name": "Stekene", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.20990000", + "longitude": "4.03651000" + }, + { + "id": "9073", + "name": "Temse", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.12794000", + "longitude": "4.21372000" + }, + { + "id": "9075", + "name": "Terkoest", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.89832000", + "longitude": "5.27623000" + }, + { + "id": "9076", + "name": "Ternat", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.86654000", + "longitude": "4.16682000" + }, + { + "id": "9077", + "name": "Tervuren", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.82372000", + "longitude": "4.51418000" + }, + { + "id": "9078", + "name": "Tessenderlo", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.06513000", + "longitude": "5.08856000" + }, + { + "id": "9081", + "name": "Tielt", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.99931000", + "longitude": "3.32707000" + }, + { + "id": "9082", + "name": "Tienen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.80745000", + "longitude": "4.93780000" + }, + { + "id": "9085", + "name": "Tongeren", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.78054000", + "longitude": "5.46484000" + }, + { + "id": "9086", + "name": "Torhout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.06560000", + "longitude": "3.10085000" + }, + { + "id": "9088", + "name": "Tremelo", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.99231000", + "longitude": "4.70807000" + }, + { + "id": "9092", + "name": "Turnhout", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.32254000", + "longitude": "4.94471000" + }, + { + "id": "9096", + "name": "Veurne", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.07316000", + "longitude": "2.66803000" + }, + { + "id": "9100", + "name": "Vilvoorde", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.92814000", + "longitude": "4.42938000" + }, + { + "id": "9103", + "name": "Vorselaar", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.20243000", + "longitude": "4.77259000" + }, + { + "id": "9104", + "name": "Vosselaar", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.30856000", + "longitude": "4.88960000" + }, + { + "id": "9105", + "name": "Waarschoot", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.15250000", + "longitude": "3.60500000" + }, + { + "id": "9106", + "name": "Waasmunster", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.10572000", + "longitude": "4.08573000" + }, + { + "id": "9107", + "name": "Wachtebeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.16852000", + "longitude": "3.87183000" + }, + { + "id": "9112", + "name": "Waregem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.88898000", + "longitude": "3.42756000" + }, + { + "id": "9118", + "name": "Wellen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.84096000", + "longitude": "5.33867000" + }, + { + "id": "9120", + "name": "Wemmel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.90812000", + "longitude": "4.30613000" + }, + { + "id": "9121", + "name": "Wenduine", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.29830000", + "longitude": "3.08213000" + }, + { + "id": "9122", + "name": "Wervik", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.78069000", + "longitude": "3.03854000" + }, + { + "id": "9123", + "name": "Westerlo", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.09049000", + "longitude": "4.91544000" + }, + { + "id": "9124", + "name": "Wetteren", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00526000", + "longitude": "3.88341000" + }, + { + "id": "9125", + "name": "Wevelgem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.80000000", + "longitude": "3.16667000" + }, + { + "id": "9126", + "name": "Wezembeek-Oppem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.83950000", + "longitude": "4.49427000" + }, + { + "id": "9127", + "name": "Wichelen", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.00526000", + "longitude": "3.97683000" + }, + { + "id": "9128", + "name": "Wielsbeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.90000000", + "longitude": "3.36667000" + }, + { + "id": "9129", + "name": "Wijnegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.22787000", + "longitude": "4.51895000" + }, + { + "id": "9130", + "name": "Willebroek", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.06041000", + "longitude": "4.36019000" + }, + { + "id": "9131", + "name": "Wingene", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.05782000", + "longitude": "3.27359000" + }, + { + "id": "9132", + "name": "Wommelgem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.20452000", + "longitude": "4.52250000" + }, + { + "id": "9133", + "name": "Wuustwezel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.39214000", + "longitude": "4.59546000" + }, + { + "id": "9135", + "name": "Zandhoven", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.21488000", + "longitude": "4.66164000" + }, + { + "id": "9136", + "name": "Zaventem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.88365000", + "longitude": "4.47298000" + }, + { + "id": "9137", + "name": "Zedelgem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.14236000", + "longitude": "3.13680000" + }, + { + "id": "9138", + "name": "Zeebrugge", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.32901000", + "longitude": "3.18188000" + }, + { + "id": "9139", + "name": "Zele", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.06566000", + "longitude": "4.04030000" + }, + { + "id": "9140", + "name": "Zelzate", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.18963000", + "longitude": "3.80777000" + }, + { + "id": "9141", + "name": "Zemst", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.98318000", + "longitude": "4.46079000" + }, + { + "id": "9142", + "name": "Zingem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.90409000", + "longitude": "3.65305000" + }, + { + "id": "9143", + "name": "Zoersel", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.26825000", + "longitude": "4.71296000" + }, + { + "id": "9144", + "name": "Zomergem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.11994000", + "longitude": "3.56496000" + }, + { + "id": "9145", + "name": "Zonhoven", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.99064000", + "longitude": "5.36819000" + }, + { + "id": "9146", + "name": "Zonnebeke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.87260000", + "longitude": "2.98725000" + }, + { + "id": "9147", + "name": "Zottegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.86955000", + "longitude": "3.81052000" + }, + { + "id": "9148", + "name": "Zoutleeuw", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.83316000", + "longitude": "5.10376000" + }, + { + "id": "9149", + "name": "Zuienkerke", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.26511000", + "longitude": "3.15506000" + }, + { + "id": "9150", + "name": "Zulte", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.91954000", + "longitude": "3.44859000" + }, + { + "id": "9151", + "name": "Zutendaal", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.93306000", + "longitude": "5.57530000" + }, + { + "id": "9152", + "name": "Zwevegem", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "50.81268000", + "longitude": "3.33848000" + }, + { + "id": "9153", + "name": "Zwijndrecht", + "state_id": 1373, + "state_code": "VLG", + "country_id": 22, + "country_code": "BE", + "latitude": "51.21979000", + "longitude": "4.32664000" + }, + { + "id": "8612", + "name": "Aiseau", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.41158000", + "longitude": "4.58671000" + }, + { + "id": "8615", + "name": "Amay", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.54829000", + "longitude": "5.30974000" + }, + { + "id": "8616", + "name": "Amblève", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.35357000", + "longitude": "6.17002000" + }, + { + "id": "8617", + "name": "Andenne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.48941000", + "longitude": "5.09513000" + }, + { + "id": "8618", + "name": "Anderlues", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.40704000", + "longitude": "4.27136000" + }, + { + "id": "8619", + "name": "Anhée", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.31039000", + "longitude": "4.87827000" + }, + { + "id": "8620", + "name": "Ans", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66230000", + "longitude": "5.52029000" + }, + { + "id": "8621", + "name": "Anthisnes", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.48323000", + "longitude": "5.51900000" + }, + { + "id": "8622", + "name": "Antoing", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.56765000", + "longitude": "3.44920000" + }, + { + "id": "8627", + "name": "Arlon", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.68333000", + "longitude": "5.81667000" + }, + { + "id": "8631", + "name": "Assesse", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.36934000", + "longitude": "5.02204000" + }, + { + "id": "8632", + "name": "Ath", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.62937000", + "longitude": "3.77801000" + }, + { + "id": "8633", + "name": "Attert", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.75035000", + "longitude": "5.78634000" + }, + { + "id": "8634", + "name": "Aubange", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.56652000", + "longitude": "5.80492000" + }, + { + "id": "8635", + "name": "Aubel", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.70189000", + "longitude": "5.85812000" + }, + { + "id": "8637", + "name": "Awans", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66774000", + "longitude": "5.46329000" + }, + { + "id": "8638", + "name": "Aywaille", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.47411000", + "longitude": "5.67684000" + }, + { + "id": "9154", + "name": "Écaussinnes-d’Enghien", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.56822000", + "longitude": "4.16580000" + }, + { + "id": "9155", + "name": "Éghezée", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.59076000", + "longitude": "4.91175000" + }, + { + "id": "9156", + "name": "Érezée", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.29292000", + "longitude": "5.55815000" + }, + { + "id": "9157", + "name": "Étalle", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.67385000", + "longitude": "5.60019000" + }, + { + "id": "8640", + "name": "Baelen", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.63131000", + "longitude": "5.97433000" + }, + { + "id": "8642", + "name": "Basse Lasne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.69503000", + "longitude": "4.49218000" + }, + { + "id": "8643", + "name": "Bassenge", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.75883000", + "longitude": "5.60989000" + }, + { + "id": "8644", + "name": "Bastogne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.00347000", + "longitude": "5.71844000" + }, + { + "id": "8645", + "name": "Beaumont", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.23699000", + "longitude": "4.23926000" + }, + { + "id": "8646", + "name": "Beauraing", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.11042000", + "longitude": "4.95554000" + }, + { + "id": "8647", + "name": "Beauvechain", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.78195000", + "longitude": "4.77180000" + }, + { + "id": "8653", + "name": "Beloeil", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.55047000", + "longitude": "3.73484000" + }, + { + "id": "8657", + "name": "Berloz", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.69829000", + "longitude": "5.21236000" + }, + { + "id": "8658", + "name": "Bernissart", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.47460000", + "longitude": "3.64961000" + }, + { + "id": "8660", + "name": "Bertogne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.08364000", + "longitude": "5.66689000" + }, + { + "id": "8661", + "name": "Bertrix", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.85596000", + "longitude": "5.25539000" + }, + { + "id": "8664", + "name": "Beyne-Heusay", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.62251000", + "longitude": "5.66508000" + }, + { + "id": "8668", + "name": "Bièvre", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.94085000", + "longitude": "5.01591000" + }, + { + "id": "8667", + "name": "Binche", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.41155000", + "longitude": "4.16469000" + }, + { + "id": "8670", + "name": "Blégny", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.67255000", + "longitude": "5.72508000" + }, + { + "id": "8679", + "name": "Bouillon", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.79324000", + "longitude": "5.06703000" + }, + { + "id": "8680", + "name": "Boussu", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.43417000", + "longitude": "3.79440000" + }, + { + "id": "8682", + "name": "Braine-l'Alleud", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.68363000", + "longitude": "4.36784000" + }, + { + "id": "8683", + "name": "Braine-le-Château", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.67990000", + "longitude": "4.27385000" + }, + { + "id": "8684", + "name": "Braine-le-Comte", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.60979000", + "longitude": "4.14658000" + }, + { + "id": "8685", + "name": "Braives", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.61745000", + "longitude": "5.13302000" + }, + { + "id": "8690", + "name": "Brugelette", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.59577000", + "longitude": "3.85363000" + }, + { + "id": "8692", + "name": "Brunehault", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.50524000", + "longitude": "4.43209000" + }, + { + "id": "8695", + "name": "Bullange", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.40731000", + "longitude": "6.25749000" + }, + { + "id": "8696", + "name": "Burdinne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.58454000", + "longitude": "5.07663000" + }, + { + "id": "8697", + "name": "Butgenbach", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.42689000", + "longitude": "6.20504000" + }, + { + "id": "8698", + "name": "Celles", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71229000", + "longitude": "3.45733000" + }, + { + "id": "8699", + "name": "Cerfontaine", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.17047000", + "longitude": "4.41028000" + }, + { + "id": "8700", + "name": "Chapelle-lez-Herlaimont", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.47130000", + "longitude": "4.28227000" + }, + { + "id": "8701", + "name": "Charleroi", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.41136000", + "longitude": "4.44448000" + }, + { + "id": "8702", + "name": "Chastre-Villeroux-Blanmont", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.60857000", + "longitude": "4.64198000" + }, + { + "id": "8703", + "name": "Chaudfontaine", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.58280000", + "longitude": "5.63410000" + }, + { + "id": "8704", + "name": "Chaumont-Gistoux", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.67753000", + "longitude": "4.72120000" + }, + { + "id": "8708", + "name": "Châtelet", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.40338000", + "longitude": "4.52826000" + }, + { + "id": "8707", + "name": "Chièvres", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.58787000", + "longitude": "3.80711000" + }, + { + "id": "8705", + "name": "Chimay", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.04856000", + "longitude": "4.31712000" + }, + { + "id": "8706", + "name": "Chiny", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.73833000", + "longitude": "5.34104000" + }, + { + "id": "8709", + "name": "Ciney", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.29449000", + "longitude": "5.10015000" + }, + { + "id": "8710", + "name": "Clavier", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.40069000", + "longitude": "5.35154000" + }, + { + "id": "8711", + "name": "Colfontaine", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.41410000", + "longitude": "3.85569000" + }, + { + "id": "8712", + "name": "Comblain-au-Pont", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.47488000", + "longitude": "5.57711000" + }, + { + "id": "8713", + "name": "Courcelles", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.46379000", + "longitude": "4.37470000" + }, + { + "id": "8714", + "name": "Court-Saint-Étienne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.63378000", + "longitude": "4.56851000" + }, + { + "id": "8715", + "name": "Couvin", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.05284000", + "longitude": "4.49495000" + }, + { + "id": "8716", + "name": "Crisnée", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71703000", + "longitude": "5.39802000" + }, + { + "id": "8717", + "name": "Dalhem", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71315000", + "longitude": "5.72774000" + }, + { + "id": "8719", + "name": "Daverdisse", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.02161000", + "longitude": "5.11811000" + }, + { + "id": "8736", + "name": "Dinant", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.25807000", + "longitude": "4.91166000" + }, + { + "id": "8737", + "name": "Dison", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.61004000", + "longitude": "5.85340000" + }, + { + "id": "8738", + "name": "Doische", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.13356000", + "longitude": "4.73545000" + }, + { + "id": "8739", + "name": "Donceel", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.64827000", + "longitude": "5.32000000" + }, + { + "id": "8740", + "name": "Dour", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.39583000", + "longitude": "3.77792000" + }, + { + "id": "8743", + "name": "Durbuy", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.35291000", + "longitude": "5.45631000" + }, + { + "id": "8746", + "name": "Ellezelles", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.73512000", + "longitude": "3.67985000" + }, + { + "id": "8747", + "name": "Enghien", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.68373000", + "longitude": "4.03284000" + }, + { + "id": "8748", + "name": "Engis", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.58156000", + "longitude": "5.39916000" + }, + { + "id": "8749", + "name": "Erquelinnes", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.30688000", + "longitude": "4.11129000" + }, + { + "id": "8750", + "name": "Esneux", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.53596000", + "longitude": "5.56775000" + }, + { + "id": "8752", + "name": "Estaimpuis", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.70485000", + "longitude": "3.26785000" + }, + { + "id": "8753", + "name": "Estinnes-au-Val", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.41016000", + "longitude": "4.10477000" + }, + { + "id": "8754", + "name": "Eupen", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.62790000", + "longitude": "6.03647000" + }, + { + "id": "8756", + "name": "Faimes", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66252000", + "longitude": "5.26005000" + }, + { + "id": "8757", + "name": "Farciennes", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.43006000", + "longitude": "4.54152000" + }, + { + "id": "8758", + "name": "Fauvillers", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.85116000", + "longitude": "5.66405000" + }, + { + "id": "8759", + "name": "Ferrières", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.40157000", + "longitude": "5.61092000" + }, + { + "id": "8760", + "name": "Fexhe-le-Haut-Clocher", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66540000", + "longitude": "5.39978000" + }, + { + "id": "8766", + "name": "Flémalle-Haute", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.59994000", + "longitude": "5.44471000" + }, + { + "id": "8767", + "name": "Fléron", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.61516000", + "longitude": "5.68062000" + }, + { + "id": "8761", + "name": "Fleurus", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.48351000", + "longitude": "4.55006000" + }, + { + "id": "8762", + "name": "Flobecq", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.73733000", + "longitude": "3.73876000" + }, + { + "id": "8763", + "name": "Floreffe", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.43452000", + "longitude": "4.75960000" + }, + { + "id": "8764", + "name": "Florennes", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.25127000", + "longitude": "4.60636000" + }, + { + "id": "8765", + "name": "Florenville", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.69983000", + "longitude": "5.30740000" + }, + { + "id": "8768", + "name": "Forville", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.57424000", + "longitude": "4.99861000" + }, + { + "id": "8769", + "name": "Fosses-la-Ville", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.39517000", + "longitude": "4.69623000" + }, + { + "id": "8770", + "name": "Frameries", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.40578000", + "longitude": "3.89603000" + }, + { + "id": "8771", + "name": "Frasnes-lez-Buissenal", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66783000", + "longitude": "3.62047000" + }, + { + "id": "8772", + "name": "Froidchapelle", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.15106000", + "longitude": "4.32742000" + }, + { + "id": "8775", + "name": "Gedinne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.98037000", + "longitude": "4.93674000" + }, + { + "id": "8777", + "name": "Geer", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66990000", + "longitude": "5.17364000" + }, + { + "id": "8779", + "name": "Gembloux", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.56149000", + "longitude": "4.69889000" + }, + { + "id": "8780", + "name": "Genappe", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.61173000", + "longitude": "4.45152000" + }, + { + "id": "8784", + "name": "Gerpinnes", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.33789000", + "longitude": "4.52731000" + }, + { + "id": "8785", + "name": "Gesves", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.40146000", + "longitude": "5.07457000" + }, + { + "id": "8790", + "name": "Gouvy", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.18600000", + "longitude": "5.93917000" + }, + { + "id": "8791", + "name": "Grez-Doiceau", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.73901000", + "longitude": "4.69829000" + }, + { + "id": "8796", + "name": "Habay-la-Vieille", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.72329000", + "longitude": "5.61999000" + }, + { + "id": "8800", + "name": "Hamoir", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.42675000", + "longitude": "5.53304000" + }, + { + "id": "8801", + "name": "Hamois", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.34020000", + "longitude": "5.15619000" + }, + { + "id": "8802", + "name": "Hannut", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.67142000", + "longitude": "5.07898000" + }, + { + "id": "8805", + "name": "Hastière-Lavaux", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.21849000", + "longitude": "4.82446000" + }, + { + "id": "8806", + "name": "Havelange", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.38931000", + "longitude": "5.23816000" + }, + { + "id": "8839", + "name": "Héron", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.54731000", + "longitude": "5.09774000" + }, + { + "id": "8811", + "name": "Hensies", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.43263000", + "longitude": "3.68411000" + }, + { + "id": "8812", + "name": "Herbeumont", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.78086000", + "longitude": "5.23580000" + }, + { + "id": "8819", + "name": "Herstal", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66415000", + "longitude": "5.62346000" + }, + { + "id": "8820", + "name": "Herve", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.64083000", + "longitude": "5.79353000" + }, + { + "id": "8830", + "name": "Hotton", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.26742000", + "longitude": "5.44609000" + }, + { + "id": "8831", + "name": "Houffalize", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.13235000", + "longitude": "5.78962000" + }, + { + "id": "8834", + "name": "Houyet", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.18619000", + "longitude": "5.00762000" + }, + { + "id": "8838", + "name": "Huy", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.51894000", + "longitude": "5.23284000" + }, + { + "id": "8842", + "name": "Incourt", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.69151000", + "longitude": "4.79816000" + }, + { + "id": "8844", + "name": "Ittre", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.64396000", + "longitude": "4.26476000" + }, + { + "id": "8847", + "name": "Jalhay", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.55876000", + "longitude": "5.96764000" + }, + { + "id": "8848", + "name": "Jodoigne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.72357000", + "longitude": "4.86914000" + }, + { + "id": "8849", + "name": "Juprelle", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.70760000", + "longitude": "5.53127000" + }, + { + "id": "8850", + "name": "Jurbise", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.53100000", + "longitude": "3.90942000" + }, + { + "id": "8873", + "name": "La Bruyère", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.39478000", + "longitude": "4.61444000" + }, + { + "id": "8874", + "name": "La Calamine", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71809000", + "longitude": "6.01107000" + }, + { + "id": "8875", + "name": "La Hulpe", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.73091000", + "longitude": "4.48577000" + }, + { + "id": "8876", + "name": "La Louvière", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.48657000", + "longitude": "4.18785000" + }, + { + "id": "8877", + "name": "La Roche-en-Ardenne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.18361000", + "longitude": "5.57547000" + }, + { + "id": "8911", + "name": "Léglise", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.79985000", + "longitude": "5.53652000" + }, + { + "id": "8886", + "name": "Lens", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.55696000", + "longitude": "3.89946000" + }, + { + "id": "8888", + "name": "Lessines", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71104000", + "longitude": "3.83579000" + }, + { + "id": "8900", + "name": "Liège", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.63373000", + "longitude": "5.56749000" + }, + { + "id": "8890", + "name": "Libin", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.98107000", + "longitude": "5.25612000" + }, + { + "id": "8894", + "name": "Lierneux", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.28477000", + "longitude": "5.79236000" + }, + { + "id": "8896", + "name": "Limbourg", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.61222000", + "longitude": "5.94120000" + }, + { + "id": "8897", + "name": "Lincent", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71222000", + "longitude": "5.03654000" + }, + { + "id": "8901", + "name": "Lobbes", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.35258000", + "longitude": "4.26716000" + }, + { + "id": "8906", + "name": "Lontzen", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.68126000", + "longitude": "6.00712000" + }, + { + "id": "8907", + "name": "Louvain-la-Neuve", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66829000", + "longitude": "4.61443000" + }, + { + "id": "8916", + "name": "Malmédy", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.42686000", + "longitude": "6.02794000" + }, + { + "id": "8917", + "name": "Manage", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.50312000", + "longitude": "4.23589000" + }, + { + "id": "8918", + "name": "Manhay", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.29219000", + "longitude": "5.67562000" + }, + { + "id": "8919", + "name": "Marche-en-Famenne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.22678000", + "longitude": "5.34416000" + }, + { + "id": "8920", + "name": "Marchin", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.46707000", + "longitude": "5.24280000" + }, + { + "id": "8921", + "name": "Martelange", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.83195000", + "longitude": "5.73655000" + }, + { + "id": "8925", + "name": "Meix-devant-Virton", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.60581000", + "longitude": "5.48045000" + }, + { + "id": "8928", + "name": "Merbes-le-Château", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.32449000", + "longitude": "4.16489000" + }, + { + "id": "8932", + "name": "Messancy", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.59201000", + "longitude": "5.81879000" + }, + { + "id": "8933", + "name": "Mettet", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.32119000", + "longitude": "4.66232000" + }, + { + "id": "8936", + "name": "Modave", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.44614000", + "longitude": "5.29532000" + }, + { + "id": "8939", + "name": "Momignies", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.02710000", + "longitude": "4.16519000" + }, + { + "id": "8940", + "name": "Mons", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.45413000", + "longitude": "3.95229000" + }, + { + "id": "8941", + "name": "Mons-lez-Liège", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.61667000", + "longitude": "5.46667000" + }, + { + "id": "8942", + "name": "Mont-Saint-Guibert", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.63427000", + "longitude": "4.61061000" + }, + { + "id": "8944", + "name": "Morlanwelz-Mariemont", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.45502000", + "longitude": "4.24519000" + }, + { + "id": "8946", + "name": "Mouscron", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.74497000", + "longitude": "3.20639000" + }, + { + "id": "8947", + "name": "Musson", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.55835000", + "longitude": "5.70525000" + }, + { + "id": "8948", + "name": "Namur", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.46690000", + "longitude": "4.86746000" + }, + { + "id": "8949", + "name": "Nandrin", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.50675000", + "longitude": "5.41905000" + }, + { + "id": "8950", + "name": "Nassogne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.12849000", + "longitude": "5.34274000" + }, + { + "id": "8953", + "name": "Neufchâteau", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.84074000", + "longitude": "5.43535000" + }, + { + "id": "8960", + "name": "Nivelles", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.59833000", + "longitude": "4.32848000" + }, + { + "id": "8961", + "name": "Noville-les-Bois", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.55702000", + "longitude": "4.98466000" + }, + { + "id": "8962", + "name": "Ohey", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.43570000", + "longitude": "5.12375000" + }, + { + "id": "8964", + "name": "Olne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.58994000", + "longitude": "5.74662000" + }, + { + "id": "8965", + "name": "Onhaye", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.24148000", + "longitude": "4.84069000" + }, + { + "id": "8973", + "name": "Oreye", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71749000", + "longitude": "5.34880000" + }, + { + "id": "8975", + "name": "Ottignies", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66535000", + "longitude": "4.56679000" + }, + { + "id": "8980", + "name": "Ouffet", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.43870000", + "longitude": "5.46570000" + }, + { + "id": "8981", + "name": "Oupeye", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71184000", + "longitude": "5.64680000" + }, + { + "id": "8984", + "name": "Paliseul", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.90395000", + "longitude": "5.13537000" + }, + { + "id": "9009", + "name": "Péruwelz", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.50819000", + "longitude": "3.59373000" + }, + { + "id": "8985", + "name": "Pecq", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.68619000", + "longitude": "3.33789000" + }, + { + "id": "8988", + "name": "Pepinster", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.57375000", + "longitude": "5.80490000" + }, + { + "id": "8990", + "name": "Perwez", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.62426000", + "longitude": "4.81354000" + }, + { + "id": "8991", + "name": "Philippeville", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.19612000", + "longitude": "4.54374000" + }, + { + "id": "8993", + "name": "Plombières", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.73656000", + "longitude": "5.95922000" + }, + { + "id": "8994", + "name": "Pont-à-Celles", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.50518000", + "longitude": "4.36887000" + }, + { + "id": "8996", + "name": "Profondeville", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.37581000", + "longitude": "4.86506000" + }, + { + "id": "8997", + "name": "Province de Liège", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.63427000", + "longitude": "5.56543000" + }, + { + "id": "8998", + "name": "Province de Namur", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.33333000", + "longitude": "4.83333000" + }, + { + "id": "8999", + "name": "Province du Brabant Wallon", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.75000000", + "longitude": "4.58333000" + }, + { + "id": "9000", + "name": "Province du Hainaut", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.50000000", + "longitude": "3.83333000" + }, + { + "id": "9001", + "name": "Province du Luxembourg", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.00000000", + "longitude": "5.50000000" + }, + { + "id": "9010", + "name": "Quaregnon", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.44067000", + "longitude": "3.86530000" + }, + { + "id": "9012", + "name": "Quévy-le-Petit", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.36879000", + "longitude": "3.93602000" + }, + { + "id": "9011", + "name": "Quiévrain", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.40737000", + "longitude": "3.68351000" + }, + { + "id": "9013", + "name": "Raeren", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66720000", + "longitude": "6.11535000" + }, + { + "id": "9014", + "name": "Ramillies", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.63395000", + "longitude": "4.90119000" + }, + { + "id": "9017", + "name": "Rebecq-Rognon", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.65147000", + "longitude": "4.10683000" + }, + { + "id": "9018", + "name": "Remicourt", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.68069000", + "longitude": "5.32785000" + }, + { + "id": "9019", + "name": "Rendeux", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.23423000", + "longitude": "5.50414000" + }, + { + "id": "9023", + "name": "Rixensart", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71229000", + "longitude": "4.52529000" + }, + { + "id": "9024", + "name": "Rochefort", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.16310000", + "longitude": "5.22160000" + }, + { + "id": "9026", + "name": "Roeulx", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.50365000", + "longitude": "4.11163000" + }, + { + "id": "9029", + "name": "Rouvroy", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.53771000", + "longitude": "5.49031000" + }, + { + "id": "9031", + "name": "Rumes", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.55450000", + "longitude": "3.30535000" + }, + { + "id": "9033", + "name": "Saint-Ghislain", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.44816000", + "longitude": "3.81886000" + }, + { + "id": "9034", + "name": "Saint-Hubert", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.02668000", + "longitude": "5.37401000" + }, + { + "id": "9035", + "name": "Saint-Léger", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.61196000", + "longitude": "5.65688000" + }, + { + "id": "9036", + "name": "Saint-Nicolas", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.62837000", + "longitude": "5.53243000" + }, + { + "id": "9037", + "name": "Saint-Vith", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.28146000", + "longitude": "6.12724000" + }, + { + "id": "9038", + "name": "Sainte-Ode", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.01723000", + "longitude": "5.51926000" + }, + { + "id": "9042", + "name": "Seneffe", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.53135000", + "longitude": "4.26301000" + }, + { + "id": "9043", + "name": "Seraing", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.58362000", + "longitude": "5.50115000" + }, + { + "id": "9044", + "name": "Silly", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.64877000", + "longitude": "3.92363000" + }, + { + "id": "9060", + "name": "Soignies", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.57904000", + "longitude": "4.07129000" + }, + { + "id": "9061", + "name": "Sombreffe", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.52865000", + "longitude": "4.60087000" + }, + { + "id": "9062", + "name": "Somme-Leuze", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.33699000", + "longitude": "5.36705000" + }, + { + "id": "9063", + "name": "Soumagne", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.61385000", + "longitude": "5.74679000" + }, + { + "id": "9064", + "name": "Spa", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.48375000", + "longitude": "5.86674000" + }, + { + "id": "9065", + "name": "Sprimont", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.50922000", + "longitude": "5.65950000" + }, + { + "id": "9068", + "name": "Stavelot", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.39500000", + "longitude": "5.93124000" + }, + { + "id": "9071", + "name": "Stoumont", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.40667000", + "longitude": "5.80838000" + }, + { + "id": "9072", + "name": "Tellin", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.08038000", + "longitude": "5.21638000" + }, + { + "id": "9074", + "name": "Tenneville", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.09501000", + "longitude": "5.52895000" + }, + { + "id": "9079", + "name": "Theux", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.53323000", + "longitude": "5.81245000" + }, + { + "id": "9080", + "name": "Thuin", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.33933000", + "longitude": "4.28604000" + }, + { + "id": "9083", + "name": "Tinlot", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.47493000", + "longitude": "5.37755000" + }, + { + "id": "9084", + "name": "Tintigny", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.68326000", + "longitude": "5.51349000" + }, + { + "id": "9087", + "name": "Tournai", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.60715000", + "longitude": "3.38932000" + }, + { + "id": "9089", + "name": "Trois-Ponts", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.37128000", + "longitude": "5.87146000" + }, + { + "id": "9090", + "name": "Trooz", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.57026000", + "longitude": "5.69521000" + }, + { + "id": "9091", + "name": "Tubize", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.69059000", + "longitude": "4.20090000" + }, + { + "id": "9093", + "name": "Vaux-sur-Sûre", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.91100000", + "longitude": "5.57848000" + }, + { + "id": "9094", + "name": "Verlaine", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.60743000", + "longitude": "5.31740000" + }, + { + "id": "9095", + "name": "Verviers", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.58907000", + "longitude": "5.86241000" + }, + { + "id": "9097", + "name": "Vielsalm", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.28407000", + "longitude": "5.91502000" + }, + { + "id": "9098", + "name": "Villers-la-Ville", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.56667000", + "longitude": "4.51667000" + }, + { + "id": "9099", + "name": "Villers-le-Bouillet", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.57708000", + "longitude": "5.25945000" + }, + { + "id": "9101", + "name": "Virton", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "49.56824000", + "longitude": "5.53259000" + }, + { + "id": "9102", + "name": "Visé", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.73760000", + "longitude": "5.69907000" + }, + { + "id": "9108", + "name": "Waimes", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.41488000", + "longitude": "6.11207000" + }, + { + "id": "9109", + "name": "Walcourt", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.25401000", + "longitude": "4.43796000" + }, + { + "id": "9110", + "name": "Walhain-Saint-Paul", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.62627000", + "longitude": "4.69837000" + }, + { + "id": "9111", + "name": "Wanze", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.53907000", + "longitude": "5.20846000" + }, + { + "id": "9113", + "name": "Waremme", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.69760000", + "longitude": "5.25524000" + }, + { + "id": "9114", + "name": "Wasseiges", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.62186000", + "longitude": "5.00528000" + }, + { + "id": "9115", + "name": "Waterloo", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71469000", + "longitude": "4.39910000" + }, + { + "id": "9116", + "name": "Wavre", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.71717000", + "longitude": "4.60138000" + }, + { + "id": "9117", + "name": "Welkenraedt", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.66050000", + "longitude": "5.97034000" + }, + { + "id": "9119", + "name": "Wellin", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.08133000", + "longitude": "5.11413000" + }, + { + "id": "9134", + "name": "Yvoir", + "state_id": 1380, + "state_code": "WAL", + "country_id": 22, + "country_code": "BE", + "latitude": "50.32790000", + "longitude": "4.88059000" + }, + { + "id": "16133", + "name": "Belize City", + "state_id": 264, + "state_code": "BZ", + "country_id": 23, + "country_code": "BZ", + "latitude": "17.49952000", + "longitude": "-88.19756000" + }, + { + "id": "16143", + "name": "San Pedro", + "state_id": 264, + "state_code": "BZ", + "country_id": 23, + "country_code": "BZ", + "latitude": "17.91598000", + "longitude": "-87.96590000" + }, + { + "id": "16134", + "name": "Belmopan", + "state_id": 269, + "state_code": "CY", + "country_id": 23, + "country_code": "BZ", + "latitude": "17.25000000", + "longitude": "-88.76667000" + }, + { + "id": "16135", + "name": "Benque Viejo el Carmen", + "state_id": 269, + "state_code": "CY", + "country_id": 23, + "country_code": "BZ", + "latitude": "17.07500000", + "longitude": "-89.13917000" + }, + { + "id": "16142", + "name": "San Ignacio", + "state_id": 269, + "state_code": "CY", + "country_id": 23, + "country_code": "BZ", + "latitude": "17.15880000", + "longitude": "-89.06960000" + }, + { + "id": "16145", + "name": "Valley of Peace", + "state_id": 269, + "state_code": "CY", + "country_id": 23, + "country_code": "BZ", + "latitude": "17.33472000", + "longitude": "-88.83472000" + }, + { + "id": "16136", + "name": "Corozal", + "state_id": 266, + "state_code": "CZL", + "country_id": 23, + "country_code": "BZ", + "latitude": "18.39375000", + "longitude": "-88.38849000" + }, + { + "id": "16138", + "name": "Hopelchén", + "state_id": 268, + "state_code": "OW", + "country_id": 23, + "country_code": "BZ", + "latitude": "17.80000000", + "longitude": "-89.10000000" + }, + { + "id": "16139", + "name": "Orange Walk", + "state_id": 268, + "state_code": "OW", + "country_id": 23, + "country_code": "BZ", + "latitude": "18.08124000", + "longitude": "-88.56328000" + }, + { + "id": "16144", + "name": "Shipyard", + "state_id": 268, + "state_code": "OW", + "country_id": 23, + "country_code": "BZ", + "latitude": "17.89382000", + "longitude": "-88.65452000" + }, + { + "id": "16137", + "name": "Dangriga", + "state_id": 265, + "state_code": "SC", + "country_id": 23, + "country_code": "BZ", + "latitude": "16.96970000", + "longitude": "-88.23313000" + }, + { + "id": "16140", + "name": "Placencia", + "state_id": 265, + "state_code": "SC", + "country_id": 23, + "country_code": "BZ", + "latitude": "16.51419000", + "longitude": "-88.36647000" + }, + { + "id": "16141", + "name": "Punta Gorda", + "state_id": 267, + "state_code": "TOL", + "country_id": 23, + "country_code": "BZ", + "latitude": "16.09835000", + "longitude": "-88.80970000" + }, + { + "id": "9782", + "name": "Banikoara", + "state_id": 3077, + "state_code": "AL", + "country_id": 24, + "country_code": "BJ", + "latitude": "11.29845000", + "longitude": "2.43856000" + }, + { + "id": "9800", + "name": "Kandi", + "state_id": 3077, + "state_code": "AL", + "country_id": 24, + "country_code": "BJ", + "latitude": "11.13417000", + "longitude": "2.93861000" + }, + { + "id": "9803", + "name": "Malanville", + "state_id": 3077, + "state_code": "AL", + "country_id": 24, + "country_code": "BJ", + "latitude": "11.86819000", + "longitude": "3.38327000" + }, + { + "id": "9797", + "name": "Guilmaro", + "state_id": 3076, + "state_code": "AK", + "country_id": 24, + "country_code": "BJ", + "latitude": "10.56583000", + "longitude": "1.72444000" + }, + { + "id": "9804", + "name": "Natitingou", + "state_id": 3076, + "state_code": "AK", + "country_id": 24, + "country_code": "BJ", + "latitude": "10.30416000", + "longitude": "1.37962000" + }, + { + "id": "9814", + "name": "Tanguiéta", + "state_id": 3076, + "state_code": "AK", + "country_id": 24, + "country_code": "BJ", + "latitude": "10.62118000", + "longitude": "1.26651000" + }, + { + "id": "9813", + "name": "Tanguieta", + "state_id": 3076, + "state_code": "AK", + "country_id": 24, + "country_code": "BJ", + "latitude": "11.03621000", + "longitude": "1.41757000" + }, + { + "id": "9780", + "name": "Abomey-Calavi", + "state_id": 3079, + "state_code": "AQ", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.44852000", + "longitude": "2.35566000" + }, + { + "id": "9781", + "name": "Allada", + "state_id": 3079, + "state_code": "AQ", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.66547000", + "longitude": "2.15138000" + }, + { + "id": "9799", + "name": "Hévié", + "state_id": 3079, + "state_code": "AQ", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.41667000", + "longitude": "2.25000000" + }, + { + "id": "9798", + "name": "Hinvi", + "state_id": 3079, + "state_code": "AQ", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.76667000", + "longitude": "2.16667000" + }, + { + "id": "9806", + "name": "Ouidah", + "state_id": 3079, + "state_code": "AQ", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.36307000", + "longitude": "2.08506000" + }, + { + "id": "9786", + "name": "Bétérou", + "state_id": 3078, + "state_code": "BO", + "country_id": 24, + "country_code": "BJ", + "latitude": "9.19916000", + "longitude": "2.25855000" + }, + { + "id": "9784", + "name": "Bembèrèkè", + "state_id": 3078, + "state_code": "BO", + "country_id": 24, + "country_code": "BJ", + "latitude": "10.22827000", + "longitude": "2.66335000" + }, + { + "id": "9805", + "name": "Nikki", + "state_id": 3078, + "state_code": "BO", + "country_id": 24, + "country_code": "BJ", + "latitude": "9.94009000", + "longitude": "3.21075000" + }, + { + "id": "9807", + "name": "Parakou", + "state_id": 3078, + "state_code": "BO", + "country_id": 24, + "country_code": "BJ", + "latitude": "9.33716000", + "longitude": "2.63031000" + }, + { + "id": "9815", + "name": "Tchaourou", + "state_id": 3078, + "state_code": "BO", + "country_id": 24, + "country_code": "BJ", + "latitude": "8.88649000", + "longitude": "2.59753000" + }, + { + "id": "9790", + "name": "Comé", + "state_id": 3070, + "state_code": "CO", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.40764000", + "longitude": "1.88198000" + }, + { + "id": "9793", + "name": "Dassa-Zoumé", + "state_id": 3070, + "state_code": "CO", + "country_id": 24, + "country_code": "BJ", + "latitude": "7.75000000", + "longitude": "2.18333000" + }, + { + "id": "9811", + "name": "Savalou", + "state_id": 3070, + "state_code": "CO", + "country_id": 24, + "country_code": "BJ", + "latitude": "7.92807000", + "longitude": "1.97558000" + }, + { + "id": "9812", + "name": "Savé", + "state_id": 3070, + "state_code": "CO", + "country_id": 24, + "country_code": "BJ", + "latitude": "8.03424000", + "longitude": "2.48660000" + }, + { + "id": "9783", + "name": "Bassila", + "state_id": 3072, + "state_code": "DO", + "country_id": 24, + "country_code": "BJ", + "latitude": "9.00814000", + "longitude": "1.66540000" + }, + { + "id": "9789", + "name": "Commune of Djougou", + "state_id": 3072, + "state_code": "DO", + "country_id": 24, + "country_code": "BJ", + "latitude": "9.64300000", + "longitude": "1.89600000" + }, + { + "id": "9795", + "name": "Djougou", + "state_id": 3072, + "state_code": "DO", + "country_id": 24, + "country_code": "BJ", + "latitude": "9.70853000", + "longitude": "1.66598000" + }, + { + "id": "9794", + "name": "Djakotomey", + "state_id": 3071, + "state_code": "KO", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.90000000", + "longitude": "1.71667000" + }, + { + "id": "9796", + "name": "Dogbo", + "state_id": 3071, + "state_code": "KO", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.79911000", + "longitude": "1.78073000" + }, + { + "id": "9791", + "name": "Cotonou", + "state_id": 3081, + "state_code": "LI", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.36536000", + "longitude": "2.41833000" + }, + { + "id": "9788", + "name": "Commune of Athieme", + "state_id": 3075, + "state_code": "MO", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.56924000", + "longitude": "1.70259000" + }, + { + "id": "9802", + "name": "Lokossa", + "state_id": 3075, + "state_code": "MO", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.63869000", + "longitude": "1.71674000" + }, + { + "id": "9809", + "name": "Porto-Novo", + "state_id": 3080, + "state_code": "OU", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.49646000", + "longitude": "2.60359000" + }, + { + "id": "9801", + "name": "Kétou", + "state_id": 3074, + "state_code": "PL", + "country_id": 24, + "country_code": "BJ", + "latitude": "7.36332000", + "longitude": "2.59978000" + }, + { + "id": "9808", + "name": "Pobé", + "state_id": 3074, + "state_code": "PL", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.98008000", + "longitude": "2.66490000" + }, + { + "id": "9810", + "name": "Sakété", + "state_id": 3074, + "state_code": "PL", + "country_id": 24, + "country_code": "BJ", + "latitude": "6.73618000", + "longitude": "2.65866000" + }, + { + "id": "9779", + "name": "Abomey", + "state_id": 3073, + "state_code": "ZO", + "country_id": 24, + "country_code": "BJ", + "latitude": "7.18286000", + "longitude": "1.99119000" + }, + { + "id": "9785", + "name": "Bohicon", + "state_id": 3073, + "state_code": "ZO", + "country_id": 24, + "country_code": "BJ", + "latitude": "7.17826000", + "longitude": "2.06670000" + }, + { + "id": "9787", + "name": "Commune of Agbangnizoun", + "state_id": 3073, + "state_code": "ZO", + "country_id": 24, + "country_code": "BJ", + "latitude": "7.07600000", + "longitude": "1.96100000" + }, + { + "id": "9792", + "name": "Cové", + "state_id": 3073, + "state_code": "ZO", + "country_id": 24, + "country_code": "BJ", + "latitude": "7.22097000", + "longitude": "2.34017000" + }, + { + "id": "15709", + "name": "Jakar", + "state_id": 240, + "state_code": "33", + "country_id": 26, + "country_code": "BT", + "latitude": "27.54918000", + "longitude": "90.75250000" + }, + { + "id": "15706", + "name": "Daphu", + "state_id": 239, + "state_code": "12", + "country_id": 26, + "country_code": "BT", + "latitude": "26.96667000", + "longitude": "89.38333000" + }, + { + "id": "15716", + "name": "Phuntsholing", + "state_id": 239, + "state_code": "12", + "country_id": 26, + "country_code": "BT", + "latitude": "26.85164000", + "longitude": "89.38837000" + }, + { + "id": "15726", + "name": "Tsimasham", + "state_id": 239, + "state_code": "12", + "country_id": 26, + "country_code": "BT", + "latitude": "27.09890000", + "longitude": "89.53604000" + }, + { + "id": "15705", + "name": "Daga", + "state_id": 238, + "state_code": "22", + "country_id": 26, + "country_code": "BT", + "latitude": "27.07529000", + "longitude": "89.87688000" + }, + { + "id": "15728", + "name": "Wangdue Phodrang", + "state_id": 238, + "state_code": "22", + "country_id": 26, + "country_code": "BT", + "latitude": "27.48615000", + "longitude": "89.89915000" + }, + { + "id": "15707", + "name": "Gasa", + "state_id": 229, + "state_code": "GA", + "country_id": 26, + "country_code": "BT", + "latitude": "27.90372000", + "longitude": "89.72689000" + }, + { + "id": "15708", + "name": "Ha", + "state_id": 232, + "state_code": "13", + "country_id": 26, + "country_code": "BT", + "latitude": "27.38747000", + "longitude": "89.28074000" + }, + { + "id": "15710", + "name": "Lhuentse", + "state_id": 234, + "state_code": "44", + "country_id": 26, + "country_code": "BT", + "latitude": "27.66787000", + "longitude": "91.18393000" + }, + { + "id": "15711", + "name": "Mongar", + "state_id": 242, + "state_code": "42", + "country_id": 26, + "country_code": "BT", + "latitude": "27.27471000", + "longitude": "91.23963000" + }, + { + "id": "15714", + "name": "Paro", + "state_id": 237, + "state_code": "11", + "country_id": 26, + "country_code": "BT", + "latitude": "27.43050000", + "longitude": "89.41334000" + }, + { + "id": "15715", + "name": "Pemagatshel", + "state_id": 244, + "state_code": "43", + "country_id": 26, + "country_code": "BT", + "latitude": "27.03795000", + "longitude": "91.40305000" + }, + { + "id": "15712", + "name": "Pajo", + "state_id": 235, + "state_code": "23", + "country_id": 26, + "country_code": "BT", + "latitude": "27.53333000", + "longitude": "89.88333000" + }, + { + "id": "15717", + "name": "Punākha", + "state_id": 235, + "state_code": "23", + "country_id": 26, + "country_code": "BT", + "latitude": "27.59137000", + "longitude": "89.87743000" + }, + { + "id": "15718", + "name": "Samdrup Jongkhar", + "state_id": 243, + "state_code": "45", + "country_id": 26, + "country_code": "BT", + "latitude": "26.80069000", + "longitude": "91.50519000" + }, + { + "id": "15719", + "name": "Samtse", + "state_id": 246, + "state_code": "14", + "country_id": 26, + "country_code": "BT", + "latitude": "26.89903000", + "longitude": "89.09951000" + }, + { + "id": "15720", + "name": "Sarpang", + "state_id": 247, + "state_code": "31", + "country_id": 26, + "country_code": "BT", + "latitude": "26.86395000", + "longitude": "90.26745000" + }, + { + "id": "15722", + "name": "Thimphu", + "state_id": 241, + "state_code": "15", + "country_id": 26, + "country_code": "BT", + "latitude": "27.46609000", + "longitude": "89.64191000" + }, + { + "id": "15724", + "name": "Trashigang", + "state_id": 236, + "state_code": "41", + "country_id": 26, + "country_code": "BT", + "latitude": "27.33310000", + "longitude": "91.55424000" + }, + { + "id": "15725", + "name": "Trongsa", + "state_id": 230, + "state_code": "21", + "country_id": 26, + "country_code": "BT", + "latitude": "27.50260000", + "longitude": "90.50716000" + }, + { + "id": "15727", + "name": "Tsirang", + "state_id": 230, + "state_code": "21", + "country_id": 26, + "country_code": "BT", + "latitude": "27.02190000", + "longitude": "90.12291000" + }, + { + "id": "15723", + "name": "Trashi Yangtse", + "state_id": 231, + "state_code": "24", + "country_id": 26, + "country_code": "BT", + "latitude": "27.61160000", + "longitude": "91.49800000" + }, + { + "id": "15713", + "name": "Panbang", + "state_id": 233, + "state_code": "34", + "country_id": 26, + "country_code": "BT", + "latitude": "26.86667000", + "longitude": "90.98333000" + }, + { + "id": "15721", + "name": "Shemgang", + "state_id": 233, + "state_code": "34", + "country_id": 26, + "country_code": "BT", + "latitude": "27.21689000", + "longitude": "90.65793000" + }, + { + "id": "9867", + "name": "Guayaramerín", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-10.82580000", + "longitude": "-65.35810000" + }, + { + "id": "9920", + "name": "Provincia Cercado", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-14.50000000", + "longitude": "-64.33333000" + }, + { + "id": "9932", + "name": "Provincia General José Ballivián", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-14.00000000", + "longitude": "-67.08333000" + }, + { + "id": "9941", + "name": "Provincia Iténez", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-13.41667000", + "longitude": "-63.50000000" + }, + { + "id": "9949", + "name": "Provincia Mamoré", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-13.00000000", + "longitude": "-64.91667000" + }, + { + "id": "9953", + "name": "Provincia Marbán", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.66667000", + "longitude": "-64.33333000" + }, + { + "id": "9956", + "name": "Provincia Moxos", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.16667000", + "longitude": "-65.50000000" + }, + { + "id": "9990", + "name": "Provincia Vaca Diez", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-11.66667000", + "longitude": "-66.00000000" + }, + { + "id": "9994", + "name": "Provincia Yacuma", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-13.50000000", + "longitude": "-66.00000000" + }, + { + "id": "10005", + "name": "Reyes", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-14.29520000", + "longitude": "-67.33624000" + }, + { + "id": "10006", + "name": "Riberalta", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-11.00654000", + "longitude": "-66.06312000" + }, + { + "id": "10008", + "name": "Rurrenabaque", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-14.44125000", + "longitude": "-67.52781000" + }, + { + "id": "10011", + "name": "San Borja", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-14.81667000", + "longitude": "-66.85000000" + }, + { + "id": "10020", + "name": "San Ramón", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-13.28333000", + "longitude": "-64.71667000" + }, + { + "id": "10021", + "name": "Santa Ana de Yacuma", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-13.74406000", + "longitude": "-65.42688000" + }, + { + "id": "10025", + "name": "Santa Rosa", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-14.16667000", + "longitude": "-66.88333000" + }, + { + "id": "10041", + "name": "Trinidad", + "state_id": 3375, + "state_code": "B", + "country_id": 27, + "country_code": "BO", + "latitude": "-14.83333000", + "longitude": "-64.90000000" + }, + { + "id": "9839", + "name": "Camargo", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.64064000", + "longitude": "-65.20893000" + }, + { + "id": "9887", + "name": "Monteagudo", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.79989000", + "longitude": "-63.95461000" + }, + { + "id": "9892", + "name": "Padilla", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.30878000", + "longitude": "-64.30273000" + }, + { + "id": "9909", + "name": "Provincia Azurduy", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.00000000", + "longitude": "-64.50000000" + }, + { + "id": "9911", + "name": "Provincia Belisario Boeto", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.91667000", + "longitude": "-64.33333000" + }, + { + "id": "9936", + "name": "Provincia Hernando Siles", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.16667000", + "longitude": "-64.25000000" + }, + { + "id": "9947", + "name": "Provincia Luis Calvo", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.66667000", + "longitude": "-63.50000000" + }, + { + "id": "9962", + "name": "Provincia Nor Cinti", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.33333000", + "longitude": "-65.00000000" + }, + { + "id": "9966", + "name": "Provincia Oropeza", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.66667000", + "longitude": "-65.16667000" + }, + { + "id": "9983", + "name": "Provincia Sud Cinti", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.91667000", + "longitude": "-64.91667000" + }, + { + "id": "9987", + "name": "Provincia Tomina", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.50000000", + "longitude": "-64.16667000" + }, + { + "id": "9995", + "name": "Provincia Yamparáez", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.16667000", + "longitude": "-64.91667000" + }, + { + "id": "9996", + "name": "Provincia Zudáñez", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.91667000", + "longitude": "-64.83333000" + }, + { + "id": "10031", + "name": "Sucre", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.03332000", + "longitude": "-65.26274000" + }, + { + "id": "10033", + "name": "Tarabuco", + "state_id": 3382, + "state_code": "H", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.18168000", + "longitude": "-64.91517000" + }, + { + "id": "9827", + "name": "Aiquile", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.20408000", + "longitude": "-65.18068000" + }, + { + "id": "9829", + "name": "Arani", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.56854000", + "longitude": "-65.76883000" + }, + { + "id": "9836", + "name": "Bolivar", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.96667000", + "longitude": "-66.53333000" + }, + { + "id": "9841", + "name": "Capinota", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.71113000", + "longitude": "-66.26082000" + }, + { + "id": "9845", + "name": "Chimoré", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.99417000", + "longitude": "-65.15330000" + }, + { + "id": "9847", + "name": "Cliza", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.58777000", + "longitude": "-65.93253000" + }, + { + "id": "9849", + "name": "Cochabamba", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.38950000", + "longitude": "-66.15680000" + }, + { + "id": "9850", + "name": "Colchani", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.31667000", + "longitude": "-66.71667000" + }, + { + "id": "9852", + "name": "Colomi", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.35000000", + "longitude": "-65.86667000" + }, + { + "id": "9871", + "name": "Independencia", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.08389000", + "longitude": "-66.81804000" + }, + { + "id": "9872", + "name": "Irpa Irpa", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.71667000", + "longitude": "-66.26667000" + }, + { + "id": "9886", + "name": "Mizque", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.94101000", + "longitude": "-65.34016000" + }, + { + "id": "9902", + "name": "Provincia Arani", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.50000000", + "longitude": "-65.50000000" + }, + { + "id": "9905", + "name": "Provincia Arque", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.75000000", + "longitude": "-66.66667000" + }, + { + "id": "9908", + "name": "Provincia Ayopaya", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.50000000", + "longitude": "-66.58333000" + }, + { + "id": "9913", + "name": "Provincia Campero", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.33333000", + "longitude": "-65.00000000" + }, + { + "id": "9914", + "name": "Provincia Capinota", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.83333000", + "longitude": "-66.16667000" + }, + { + "id": "9916", + "name": "Provincia Carrasco", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.50000000", + "longitude": "-65.00000000" + }, + { + "id": "9918", + "name": "Provincia Cercado", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.33333000", + "longitude": "-66.16667000" + }, + { + "id": "9921", + "name": "Provincia Chaparé", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.50000000", + "longitude": "-65.50000000" + }, + { + "id": "9927", + "name": "Provincia Esteban Arce", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.66667000", + "longitude": "-66.00000000" + }, + { + "id": "9933", + "name": "Provincia Germán Jordán", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.58333000", + "longitude": "-65.91667000" + }, + { + "id": "9954", + "name": "Provincia Mizque", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.90655000", + "longitude": "-65.39440000" + }, + { + "id": "9971", + "name": "Provincia Punata", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.50000000", + "longitude": "-65.91667000" + }, + { + "id": "9973", + "name": "Provincia Quillacollo", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.50000000", + "longitude": "-66.50000000" + }, + { + "id": "9986", + "name": "Provincia Tapacarí", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.51146000", + "longitude": "-66.61965000" + }, + { + "id": "10002", + "name": "Punata", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.54234000", + "longitude": "-65.83472000" + }, + { + "id": "10003", + "name": "Quillacollo", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.39228000", + "longitude": "-66.27838000" + }, + { + "id": "10009", + "name": "Sacaba", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.39799000", + "longitude": "-66.03825000" + }, + { + "id": "10029", + "name": "Sipe Sipe", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.45000000", + "longitude": "-66.38333000" + }, + { + "id": "10034", + "name": "Tarata", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.60898000", + "longitude": "-66.02135000" + }, + { + "id": "10037", + "name": "Tiquipaya", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.33801000", + "longitude": "-66.21579000" + }, + { + "id": "10038", + "name": "Tiraque Province", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.33333000", + "longitude": "-65.91667000" + }, + { + "id": "10039", + "name": "Totora", + "state_id": 3381, + "state_code": "C", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.72662000", + "longitude": "-65.19320000" + }, + { + "id": "9826", + "name": "Achacachi", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.05000000", + "longitude": "-68.68333000" + }, + { + "id": "9828", + "name": "Amarete", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.23675000", + "longitude": "-68.98462000" + }, + { + "id": "9833", + "name": "Batallas", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.30000000", + "longitude": "-68.53333000" + }, + { + "id": "9842", + "name": "Caranavi", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.83652000", + "longitude": "-67.56901000" + }, + { + "id": "9846", + "name": "Chulumani", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.40855000", + "longitude": "-67.52940000" + }, + { + "id": "9854", + "name": "Colquiri", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.38918000", + "longitude": "-67.12671000" + }, + { + "id": "9857", + "name": "Coripata", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.30000000", + "longitude": "-67.60000000" + }, + { + "id": "9858", + "name": "Coroico", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.19386000", + "longitude": "-67.72998000" + }, + { + "id": "9860", + "name": "Curahuara de Carangas", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.86667000", + "longitude": "-68.43333000" + }, + { + "id": "9863", + "name": "Eucaliptus", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.58333000", + "longitude": "-67.51667000" + }, + { + "id": "9865", + "name": "Guanay", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.49756000", + "longitude": "-67.88332000" + }, + { + "id": "9869", + "name": "Huarina", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.20000000", + "longitude": "-68.63333000" + }, + { + "id": "9870", + "name": "Huatajata", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.20000000", + "longitude": "-68.68333000" + }, + { + "id": "9874", + "name": "José Manuel Pando", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.18970000", + "longitude": "-67.72664000" + }, + { + "id": "9876", + "name": "La Paz", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.50000000", + "longitude": "-68.15000000" + }, + { + "id": "9877", + "name": "Lahuachaca", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.37054000", + "longitude": "-67.67501000" + }, + { + "id": "9884", + "name": "Mapiri", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.25000000", + "longitude": "-68.16667000" + }, + { + "id": "9894", + "name": "Patacamaya", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.23580000", + "longitude": "-67.92169000" + }, + { + "id": "9904", + "name": "Provincia Aroma", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.50000000", + "longitude": "-68.00000000" + }, + { + "id": "9910", + "name": "Provincia Bautista Saavedra", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.00000000", + "longitude": "-68.91667000" + }, + { + "id": "9912", + "name": "Provincia Camacho", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.50000000", + "longitude": "-69.00000000" + }, + { + "id": "9929", + "name": "Provincia Franz Tamayo", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-14.50000000", + "longitude": "-68.33333000" + }, + { + "id": "9935", + "name": "Provincia Gualberto Villarroel", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.58333000", + "longitude": "-68.00000000" + }, + { + "id": "9938", + "name": "Provincia Ingavi", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.83333000", + "longitude": "-68.66667000" + }, + { + "id": "9939", + "name": "Provincia Inquisivi", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.00000000", + "longitude": "-67.08333000" + }, + { + "id": "9940", + "name": "Provincia Iturralde", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-13.00000000", + "longitude": "-68.00000000" + }, + { + "id": "9943", + "name": "Provincia Larecaja", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.50000000", + "longitude": "-68.33333000" + }, + { + "id": "9945", + "name": "Provincia Loayza", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.00000000", + "longitude": "-67.66667000" + }, + { + "id": "9946", + "name": "Provincia Los Andes", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.33333000", + "longitude": "-68.50000000" + }, + { + "id": "9950", + "name": "Provincia Manco Kapac", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.00000000", + "longitude": "-69.16667000" + }, + { + "id": "9958", + "name": "Provincia Muñecas", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.33333000", + "longitude": "-68.66667000" + }, + { + "id": "9957", + "name": "Provincia Murillo", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.33333000", + "longitude": "-68.00000000" + }, + { + "id": "9964", + "name": "Provincia Nor Yungas", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.00000000", + "longitude": "-67.50000000" + }, + { + "id": "9965", + "name": "Provincia Omasuyos", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.91667000", + "longitude": "-68.83333000" + }, + { + "id": "9968", + "name": "Provincia Pacajes", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.50000000", + "longitude": "-69.00000000" + }, + { + "id": "9985", + "name": "Provincia Sud Yungas", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.50000000", + "longitude": "-67.50000000" + }, + { + "id": "10004", + "name": "Quime", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.98333000", + "longitude": "-67.21667000" + }, + { + "id": "10017", + "name": "San Pablo", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.21667000", + "longitude": "-68.83333000" + }, + { + "id": "10019", + "name": "San Pedro", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.23717000", + "longitude": "-68.85063000" + }, + { + "id": "10030", + "name": "Sorata", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.77305000", + "longitude": "-68.64973000" + }, + { + "id": "10036", + "name": "Tiahuanaco", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.55228000", + "longitude": "-68.67953000" + }, + { + "id": "10049", + "name": "Viloco", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.95000000", + "longitude": "-67.55000000" + }, + { + "id": "10052", + "name": "Yumani", + "state_id": 3380, + "state_code": "L", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.03574000", + "longitude": "-69.14843000" + }, + { + "id": "9843", + "name": "Challapata", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.90208000", + "longitude": "-66.77048000" + }, + { + "id": "9868", + "name": "Huanuni", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.28900000", + "longitude": "-66.83583000" + }, + { + "id": "9879", + "name": "Litoral de Atacama", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.76071000", + "longitude": "-68.24295000" + }, + { + "id": "9882", + "name": "Machacamarca", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.17251000", + "longitude": "-67.02099000" + }, + { + "id": "9889", + "name": "Nor Carangas Province", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.83750000", + "longitude": "-67.94330000" + }, + { + "id": "9891", + "name": "Oruro", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.98333000", + "longitude": "-67.15000000" + }, + { + "id": "9896", + "name": "Poopó", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.38026000", + "longitude": "-66.96695000" + }, + { + "id": "9906", + "name": "Provincia Avaroa", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.00000000", + "longitude": "-66.66667000" + }, + { + "id": "9915", + "name": "Provincia Carangas", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.33333000", + "longitude": "-67.75000000" + }, + { + "id": "9917", + "name": "Provincia Cercado", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.91667000", + "longitude": "-67.08333000" + }, + { + "id": "9942", + "name": "Provincia Ladislao Cabrera", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.50000000", + "longitude": "-67.66667000" + }, + { + "id": "9969", + "name": "Provincia Pantaleón Dalence", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.33333000", + "longitude": "-66.91667000" + }, + { + "id": "9970", + "name": "Provincia Poopó", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.50000000", + "longitude": "-66.91667000" + }, + { + "id": "9976", + "name": "Provincia Sabaya", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.00000000", + "longitude": "-68.58333000" + }, + { + "id": "9977", + "name": "Provincia Sajama", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.20000000", + "longitude": "-68.55000000" + }, + { + "id": "9978", + "name": "Provincia San Pedro de Totora", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.83333000", + "longitude": "-68.20000000" + }, + { + "id": "9981", + "name": "Provincia Saucari", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.25000000", + "longitude": "-67.41667000" + }, + { + "id": "9988", + "name": "Provincia Tomás Barron", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.83333000", + "longitude": "-68.25000000" + }, + { + "id": "10000", + "name": "Puerto de Mejillones", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.99266000", + "longitude": "-68.68446000" + }, + { + "id": "10028", + "name": "Sebastian Pagador Province", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.21667000", + "longitude": "-66.21667000" + }, + { + "id": "10032", + "name": "Sud Carangas Province", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.50000000", + "longitude": "-68.25000000" + }, + { + "id": "10040", + "name": "Totoral", + "state_id": 3376, + "state_code": "O", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.49587000", + "longitude": "-66.87380000" + }, + { + "id": "9848", + "name": "Cobija", + "state_id": 3379, + "state_code": "N", + "country_id": 27, + "country_code": "BO", + "latitude": "-11.02671000", + "longitude": "-68.76918000" + }, + { + "id": "9899", + "name": "Provincia Abuná", + "state_id": 3379, + "state_code": "N", + "country_id": 27, + "country_code": "BO", + "latitude": "-10.50000000", + "longitude": "-66.50000000" + }, + { + "id": "9931", + "name": "Provincia General Federico Román", + "state_id": 3379, + "state_code": "N", + "country_id": 27, + "country_code": "BO", + "latitude": "-10.33333000", + "longitude": "-65.88333000" + }, + { + "id": "9948", + "name": "Provincia Madre de Dios", + "state_id": 3379, + "state_code": "N", + "country_id": 27, + "country_code": "BO", + "latitude": "-11.58333000", + "longitude": "-67.00000000" + }, + { + "id": "9952", + "name": "Provincia Manuripi", + "state_id": 3379, + "state_code": "N", + "country_id": 27, + "country_code": "BO", + "latitude": "-11.33333000", + "longitude": "-67.50000000" + }, + { + "id": "9960", + "name": "Provincia Nicolás Suárez", + "state_id": 3379, + "state_code": "N", + "country_id": 27, + "country_code": "BO", + "latitude": "-11.33333000", + "longitude": "-68.50000000" + }, + { + "id": "9832", + "name": "Atocha", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.93515000", + "longitude": "-66.22139000" + }, + { + "id": "9835", + "name": "Betanzos", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.55293000", + "longitude": "-65.45395000" + }, + { + "id": "9851", + "name": "Colchani", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.30000000", + "longitude": "-66.93333000" + }, + { + "id": "9853", + "name": "Colquechaca", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.70031000", + "longitude": "-66.00397000" + }, + { + "id": "9861", + "name": "Enrique Baldivieso", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.38323000", + "longitude": "-67.60368000" + }, + { + "id": "9880", + "name": "Llallagua", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.42426000", + "longitude": "-66.58388000" + }, + { + "id": "9898", + "name": "Potosí", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.58361000", + "longitude": "-65.75306000" + }, + { + "id": "9900", + "name": "Provincia Alonzo de Ibáñez", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.50000000", + "longitude": "-66.33333000" + }, + { + "id": "9922", + "name": "Provincia Charcas", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.33333000", + "longitude": "-65.83333000" + }, + { + "id": "9923", + "name": "Provincia Chayanta", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.91667000", + "longitude": "-66.00000000" + }, + { + "id": "9926", + "name": "Provincia Daniel Campos", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.25000000", + "longitude": "-68.25000000" + }, + { + "id": "9930", + "name": "Provincia General Bilbao", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.08333000", + "longitude": "-66.00000000" + }, + { + "id": "9944", + "name": "Provincia Linares", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.83333000", + "longitude": "-65.50000000" + }, + { + "id": "9955", + "name": "Provincia Modesto Omiste", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.91667000", + "longitude": "-65.58333000" + }, + { + "id": "9961", + "name": "Provincia Nor Chichas", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.66667000", + "longitude": "-66.00000000" + }, + { + "id": "9963", + "name": "Provincia Nor Lípez", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.50000000", + "longitude": "-67.83333000" + }, + { + "id": "9972", + "name": "Provincia Quijarro", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.00000000", + "longitude": "-66.33333000" + }, + { + "id": "9974", + "name": "Provincia Rafael Bustillo", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.33333000", + "longitude": "-66.50000000" + }, + { + "id": "9975", + "name": "Provincia Saavedra", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.25000000", + "longitude": "-65.50000000" + }, + { + "id": "9982", + "name": "Provincia Sud Chichas", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.50000000", + "longitude": "-66.00000000" + }, + { + "id": "9984", + "name": "Provincia Sud Lípez", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-22.00000000", + "longitude": "-67.50000000" + }, + { + "id": "9989", + "name": "Provincia Tomás Frías", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.33333000", + "longitude": "-66.00000000" + }, + { + "id": "10022", + "name": "Santa Bárbara", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.91667000", + "longitude": "-66.05000000" + }, + { + "id": "10042", + "name": "Tupiza", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.44345000", + "longitude": "-65.71875000" + }, + { + "id": "10044", + "name": "Uyuni", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.45967000", + "longitude": "-66.82503000" + }, + { + "id": "10048", + "name": "Villazón", + "state_id": 3383, + "state_code": "P", + "country_id": 27, + "country_code": "BO", + "latitude": "-22.08659000", + "longitude": "-65.59422000" + }, + { + "id": "9825", + "name": "Abapó", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.88279000", + "longitude": "-63.38026000" + }, + { + "id": "9830", + "name": "Ascención de Guarayos", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.89299000", + "longitude": "-63.18855000" + }, + { + "id": "9831", + "name": "Ascensión", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.70000000", + "longitude": "-63.08333000" + }, + { + "id": "9837", + "name": "Boyuibe", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.43227000", + "longitude": "-63.28147000" + }, + { + "id": "9838", + "name": "Buena Vista", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.45830000", + "longitude": "-63.67126000" + }, + { + "id": "9840", + "name": "Camiri", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-20.03849000", + "longitude": "-63.51833000" + }, + { + "id": "9844", + "name": "Charagua", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.79151000", + "longitude": "-63.19864000" + }, + { + "id": "9855", + "name": "Comarapa", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.91537000", + "longitude": "-64.53163000" + }, + { + "id": "9856", + "name": "Concepción", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.43333000", + "longitude": "-60.90000000" + }, + { + "id": "9859", + "name": "Cotoca", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.81667000", + "longitude": "-63.05000000" + }, + { + "id": "9864", + "name": "German Busch", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.77317000", + "longitude": "-63.19087000" + }, + { + "id": "9866", + "name": "Guarayos", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.82132000", + "longitude": "-63.24280000" + }, + { + "id": "9873", + "name": "Jorochito", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.05514000", + "longitude": "-63.42821000" + }, + { + "id": "9875", + "name": "La Bélgica", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.55000000", + "longitude": "-63.21667000" + }, + { + "id": "9878", + "name": "Limoncito", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.03104000", + "longitude": "-63.40523000" + }, + { + "id": "9881", + "name": "Los Negros", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.73333000", + "longitude": "-63.43333000" + }, + { + "id": "9883", + "name": "Mairana", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.11919000", + "longitude": "-63.95965000" + }, + { + "id": "9885", + "name": "Mineros", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.11876000", + "longitude": "-63.23100000" + }, + { + "id": "9888", + "name": "Montero", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.33866000", + "longitude": "-63.25050000" + }, + { + "id": "9890", + "name": "Okinawa Número Uno", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.23333000", + "longitude": "-62.81667000" + }, + { + "id": "9893", + "name": "Pailón", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.65000000", + "longitude": "-62.75000000" + }, + { + "id": "9895", + "name": "Paurito", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.88333000", + "longitude": "-62.96667000" + }, + { + "id": "9897", + "name": "Portachuelo", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.35168000", + "longitude": "-63.39282000" + }, + { + "id": "9901", + "name": "Provincia Andrés Ibáñez", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.75000000", + "longitude": "-63.25000000" + }, + { + "id": "9997", + "name": "Provincia Ángel Sandoval", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.50000000", + "longitude": "-58.50000000" + }, + { + "id": "9998", + "name": "Provincia Ñuflo de Chávez", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.91667000", + "longitude": "-62.50000000" + }, + { + "id": "9924", + "name": "Provincia Chiquitos", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.00000000", + "longitude": "-60.00000000" + }, + { + "id": "9925", + "name": "Provincia Cordillera", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-19.00000000", + "longitude": "-61.50000000" + }, + { + "id": "9928", + "name": "Provincia Florida", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.00000000", + "longitude": "-63.91667000" + }, + { + "id": "9937", + "name": "Provincia Ichilo", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.00000000", + "longitude": "-64.00000000" + }, + { + "id": "9951", + "name": "Provincia Manuel María Caballero", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.83333000", + "longitude": "-64.41667000" + }, + { + "id": "9979", + "name": "Provincia Santiesteban", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.50000000", + "longitude": "-63.50000000" + }, + { + "id": "9980", + "name": "Provincia Sara", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.83333000", + "longitude": "-63.91667000" + }, + { + "id": "9991", + "name": "Provincia Vallegrande", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.50000000", + "longitude": "-64.16667000" + }, + { + "id": "9992", + "name": "Provincia Velasco", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.50000000", + "longitude": "-61.00000000" + }, + { + "id": "9993", + "name": "Provincia Warnes", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.33333000", + "longitude": "-63.00000000" + }, + { + "id": "9999", + "name": "Puerto Quijarro", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.78333000", + "longitude": "-57.76667000" + }, + { + "id": "10001", + "name": "Puesto de Pailas", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.65000000", + "longitude": "-62.80000000" + }, + { + "id": "10007", + "name": "Roboré", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.33473000", + "longitude": "-59.76142000" + }, + { + "id": "10010", + "name": "Samaipata", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.18005000", + "longitude": "-63.87552000" + }, + { + "id": "10012", + "name": "San Carlos", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.40000000", + "longitude": "-63.75000000" + }, + { + "id": "10013", + "name": "San Ignacio de Velasco", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.36667000", + "longitude": "-60.95000000" + }, + { + "id": "10014", + "name": "San Juan del Surutú", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.48333000", + "longitude": "-63.70000000" + }, + { + "id": "10015", + "name": "San Julian", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.78333000", + "longitude": "-62.86667000" + }, + { + "id": "10016", + "name": "San Matías", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-16.36667000", + "longitude": "-58.40000000" + }, + { + "id": "10018", + "name": "San Pedro", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.28333000", + "longitude": "-59.81667000" + }, + { + "id": "10023", + "name": "Santa Cruz de la Sierra", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.78629000", + "longitude": "-63.18117000" + }, + { + "id": "10024", + "name": "Santa Rita", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.96667000", + "longitude": "-63.35000000" + }, + { + "id": "10026", + "name": "Santa Rosa del Sara", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.10916000", + "longitude": "-63.59514000" + }, + { + "id": "10027", + "name": "Santiago del Torno", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.98674000", + "longitude": "-63.38118000" + }, + { + "id": "10043", + "name": "Urubichá", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-15.39286000", + "longitude": "-62.94661000" + }, + { + "id": "10045", + "name": "Vallegrande", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-18.48923000", + "longitude": "-64.10609000" + }, + { + "id": "10046", + "name": "Villa Yapacaní", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.40000000", + "longitude": "-63.83333000" + }, + { + "id": "10050", + "name": "Warnes", + "state_id": 3377, + "state_code": "S", + "country_id": 27, + "country_code": "BO", + "latitude": "-17.51630000", + "longitude": "-63.16778000" + }, + { + "id": "9834", + "name": "Bermejo", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-22.73206000", + "longitude": "-64.33724000" + }, + { + "id": "9862", + "name": "Entre Ríos", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.52661000", + "longitude": "-64.17299000" + }, + { + "id": "9903", + "name": "Provincia Arce", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-22.16667000", + "longitude": "-64.33333000" + }, + { + "id": "9907", + "name": "Provincia Avilez", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.66667000", + "longitude": "-65.00000000" + }, + { + "id": "9919", + "name": "Provincia Cercado", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.58333000", + "longitude": "-64.58333000" + }, + { + "id": "9934", + "name": "Provincia Gran Chaco", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.66667000", + "longitude": "-63.00000000" + }, + { + "id": "9959", + "name": "Provincia Méndez", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.16667000", + "longitude": "-64.91667000" + }, + { + "id": "9967", + "name": "Provincia O’Connor", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.58333000", + "longitude": "-64.16667000" + }, + { + "id": "10035", + "name": "Tarija", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.53549000", + "longitude": "-64.72956000" + }, + { + "id": "10047", + "name": "Villamontes", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-21.26235000", + "longitude": "-63.46903000" + }, + { + "id": "10051", + "name": "Yacuiba", + "state_id": 3378, + "state_code": "T", + "country_id": 27, + "country_code": "BO", + "latitude": "-22.01643000", + "longitude": "-63.67753000" + }, + { + "id": "8233", + "name": "Brčko", + "state_id": 460, + "state_code": "BRC", + "country_id": 28, + "country_code": "BA", + "latitude": "44.86995000", + "longitude": "18.81012000" + }, + { + "id": "8230", + "name": "Brka", + "state_id": 460, + "state_code": "BRC", + "country_id": 28, + "country_code": "BA", + "latitude": "44.82837000", + "longitude": "18.72420000" + }, + { + "id": "8438", + "name": "Šerići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.46674000", + "longitude": "18.56370000" + }, + { + "id": "8440", + "name": "Široki Brijeg", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.38290000", + "longitude": "17.59416000" + }, + { + "id": "8441", + "name": "Šturlić", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.06389000", + "longitude": "15.77806000" + }, + { + "id": "8442", + "name": "Šumatac", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.09743000", + "longitude": "15.85818000" + }, + { + "id": "8443", + "name": "Željezno Polje", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.39875000", + "longitude": "17.94103000" + }, + { + "id": "8444", + "name": "Žepče", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.42667000", + "longitude": "18.03778000" + }, + { + "id": "8445", + "name": "Živinice", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.44929000", + "longitude": "18.64978000" + }, + { + "id": "8431", + "name": "Čapljina", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.12139000", + "longitude": "17.68444000" + }, + { + "id": "8433", + "name": "Čelić", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.72524000", + "longitude": "18.81474000" + }, + { + "id": "8435", + "name": "Čitluk", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.22861000", + "longitude": "17.70083000" + }, + { + "id": "8429", + "name": "Ćoralići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.00694000", + "longitude": "15.87194000" + }, + { + "id": "8217", + "name": "Banovići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.40596000", + "longitude": "18.52648000" + }, + { + "id": "8218", + "name": "Barice", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.54065000", + "longitude": "18.48069000" + }, + { + "id": "8219", + "name": "Bihać", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.81694000", + "longitude": "15.87083000" + }, + { + "id": "8220", + "name": "Bijela", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.60871000", + "longitude": "17.95078000" + }, + { + "id": "8222", + "name": "Bila", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.78265000", + "longitude": "16.92676000" + }, + { + "id": "8224", + "name": "Blagaj", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.25892000", + "longitude": "17.88815000" + }, + { + "id": "8226", + "name": "Bosanska Krupa", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.88250000", + "longitude": "16.15139000" + }, + { + "id": "8227", + "name": "Bosanski Petrovac", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.55537000", + "longitude": "16.36897000" + }, + { + "id": "8228", + "name": "Bosansko Grahovo", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.17944000", + "longitude": "16.36389000" + }, + { + "id": "8229", + "name": "Breza", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.01862000", + "longitude": "18.26063000" + }, + { + "id": "8236", + "name": "Bužim", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.05361000", + "longitude": "16.03254000" + }, + { + "id": "8234", + "name": "Bugojno", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.05722000", + "longitude": "17.45083000" + }, + { + "id": "8235", + "name": "Busovača", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.09769000", + "longitude": "17.87830000" + }, + { + "id": "8237", + "name": "Cazin", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.96694000", + "longitude": "15.94306000" + }, + { + "id": "8238", + "name": "Cim", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.35401000", + "longitude": "17.78045000" + }, + { + "id": "8239", + "name": "Crnići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.13156000", + "longitude": "17.86452000" + }, + { + "id": "8241", + "name": "Divičani", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.36682000", + "longitude": "17.32678000" + }, + { + "id": "8243", + "name": "Dobrinje", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.05008000", + "longitude": "18.11958000" + }, + { + "id": "8245", + "name": "Domaljevac", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.06110000", + "longitude": "18.58612000" + }, + { + "id": "8246", + "name": "Donja Dubica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.07559000", + "longitude": "18.41023000" + }, + { + "id": "8247", + "name": "Donja Mahala", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.04327000", + "longitude": "18.66996000" + }, + { + "id": "8248", + "name": "Donja Međiđa", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.80235000", + "longitude": "18.40477000" + }, + { + "id": "8249", + "name": "Donji Vakuf", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.14361000", + "longitude": "17.40000000" + }, + { + "id": "8250", + "name": "Drežnica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.52891000", + "longitude": "17.28120000" + }, + { + "id": "8251", + "name": "Drinovci", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.35454000", + "longitude": "17.32536000" + }, + { + "id": "8252", + "name": "Drvar", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.37389000", + "longitude": "16.38083000" + }, + { + "id": "8253", + "name": "Dubrave Donje", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.48060000", + "longitude": "18.69709000" + }, + { + "id": "8254", + "name": "Dubrave Gornje", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.47229000", + "longitude": "18.72685000" + }, + { + "id": "8255", + "name": "Dubravica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.44131000", + "longitude": "18.11883000" + }, + { + "id": "8257", + "name": "Fojnica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.95952000", + "longitude": "17.90288000" + }, + { + "id": "8260", + "name": "Glamoč", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.04583000", + "longitude": "16.84861000" + }, + { + "id": "8261", + "name": "Gnojnica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.62058000", + "longitude": "18.44684000" + }, + { + "id": "8262", + "name": "Goražde", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.66795000", + "longitude": "18.97564000" + }, + { + "id": "8263", + "name": "Gorica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.41833000", + "longitude": "17.28500000" + }, + { + "id": "8264", + "name": "Gornja Breza", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.03758000", + "longitude": "18.24564000" + }, + { + "id": "8265", + "name": "Gornja Koprivna", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.01091000", + "longitude": "15.95487000" + }, + { + "id": "8266", + "name": "Gornja Tuzla", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.55659000", + "longitude": "18.76159000" + }, + { + "id": "8268", + "name": "Gornje Živinice", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.42921000", + "longitude": "18.61667000" + }, + { + "id": "8267", + "name": "Gornje Moštre", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.01911000", + "longitude": "18.15477000" + }, + { + "id": "8269", + "name": "Gornji Vakuf", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.93806000", + "longitude": "17.58833000" + }, + { + "id": "8270", + "name": "Gostovići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.41124000", + "longitude": "18.17029000" + }, + { + "id": "8273", + "name": "Gračanica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.73333000", + "longitude": "18.28333000" + }, + { + "id": "8271", + "name": "Gradačac", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.87851000", + "longitude": "18.42764000" + }, + { + "id": "8274", + "name": "Gromiljak", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.96668000", + "longitude": "18.05504000" + }, + { + "id": "8275", + "name": "Grude", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.37208000", + "longitude": "17.41449000" + }, + { + "id": "8276", + "name": "Hadžići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.82222000", + "longitude": "18.20667000" + }, + { + "id": "8277", + "name": "Hercegovačko-Neretvanski Kanton", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.45722000", + "longitude": "17.81250000" + }, + { + "id": "8279", + "name": "Hotonj", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.89341000", + "longitude": "18.37751000" + }, + { + "id": "8281", + "name": "Ilići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.34765000", + "longitude": "17.76848000" + }, + { + "id": "8280", + "name": "Ilijaš", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.95128000", + "longitude": "18.27128000" + }, + { + "id": "8283", + "name": "Izačić", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.87485000", + "longitude": "15.78256000" + }, + { + "id": "8284", + "name": "Jablanica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.66028000", + "longitude": "17.76167000" + }, + { + "id": "8285", + "name": "Jajce", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.34203000", + "longitude": "17.27059000" + }, + { + "id": "8287", + "name": "Jelah", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.65400000", + "longitude": "17.95897000" + }, + { + "id": "8288", + "name": "Jezerski", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.98172000", + "longitude": "16.09447000" + }, + { + "id": "8293", + "name": "Kačuni", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.06433000", + "longitude": "17.93894000" + }, + { + "id": "8289", + "name": "Kakanj", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.13311000", + "longitude": "18.12292000" + }, + { + "id": "8291", + "name": "Kanton Sarajevo", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.84333000", + "longitude": "18.24222000" + }, + { + "id": "8292", + "name": "Karadaglije", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.57065000", + "longitude": "18.01775000" + }, + { + "id": "8294", + "name": "Kiseljak", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.48904000", + "longitude": "18.56982000" + }, + { + "id": "8295", + "name": "Kladanj", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.22669000", + "longitude": "18.69274000" + }, + { + "id": "8296", + "name": "Ključ", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.53251000", + "longitude": "16.77682000" + }, + { + "id": "8306", + "name": "Kočerin", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.39005000", + "longitude": "17.48552000" + }, + { + "id": "8299", + "name": "Kobilja Glava", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.88188000", + "longitude": "18.38864000" + }, + { + "id": "8300", + "name": "Konjic", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.65126000", + "longitude": "17.96082000" + }, + { + "id": "8304", + "name": "Kovači", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.44874000", + "longitude": "18.20521000" + }, + { + "id": "8310", + "name": "Liješnica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.49497000", + "longitude": "18.07644000" + }, + { + "id": "8311", + "name": "Livno", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.82695000", + "longitude": "17.00746000" + }, + { + "id": "8313", + "name": "Ljubuški", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.19694000", + "longitude": "17.54500000" + }, + { + "id": "8314", + "name": "Lokvine", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.20466000", + "longitude": "17.85665000" + }, + { + "id": "8316", + "name": "Lukavac", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.54245000", + "longitude": "18.52618000" + }, + { + "id": "8317", + "name": "Lukavica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.76452000", + "longitude": "18.16887000" + }, + { + "id": "8318", + "name": "Maglaj", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.54771000", + "longitude": "18.10003000" + }, + { + "id": "8320", + "name": "Mahala", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.01194000", + "longitude": "18.25528000" + }, + { + "id": "8321", + "name": "Mala Kladuša", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.13443000", + "longitude": "15.85217000" + }, + { + "id": "8322", + "name": "Malešići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.73824000", + "longitude": "18.27335000" + }, + { + "id": "8327", + "name": "Mionica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.86646000", + "longitude": "18.46603000" + }, + { + "id": "8329", + "name": "Mostar", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.34333000", + "longitude": "17.80806000" + }, + { + "id": "8330", + "name": "Mramor", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.59234000", + "longitude": "18.56458000" + }, + { + "id": "8332", + "name": "Neum", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "42.92333000", + "longitude": "17.61556000" + }, + { + "id": "8336", + "name": "Novi Šeher", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.51031000", + "longitude": "18.02624000" + }, + { + "id": "8335", + "name": "Novi Travnik", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.17133000", + "longitude": "17.65816000" + }, + { + "id": "8338", + "name": "Odžak", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.02461000", + "longitude": "18.32107000" + }, + { + "id": "8339", + "name": "Olovo", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.12770000", + "longitude": "18.58065000" + }, + { + "id": "8340", + "name": "Omanjska", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.69831000", + "longitude": "17.95757000" + }, + { + "id": "8345", + "name": "Orašac", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.63039000", + "longitude": "16.07443000" + }, + { + "id": "8346", + "name": "Orašje", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.03366000", + "longitude": "18.69334000" + }, + { + "id": "8344", + "name": "Orahovica Donja", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.65345000", + "longitude": "18.36951000" + }, + { + "id": "8347", + "name": "Orguz", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.77414000", + "longitude": "16.86329000" + }, + { + "id": "8348", + "name": "Ostrožac", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.90866000", + "longitude": "15.94045000" + }, + { + "id": "8349", + "name": "Otoka", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.96000000", + "longitude": "16.17917000" + }, + { + "id": "8351", + "name": "Pajić Polje", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.97583000", + "longitude": "17.52750000" + }, + { + "id": "8353", + "name": "Pazarić", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.78882000", + "longitude": "18.16049000" + }, + { + "id": "8356", + "name": "Peći", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.63139000", + "longitude": "16.78250000" + }, + { + "id": "8357", + "name": "Pećigrad", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.05444000", + "longitude": "15.89694000" + }, + { + "id": "8359", + "name": "Pjanići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.98568000", + "longitude": "15.82304000" + }, + { + "id": "8361", + "name": "Podhum", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.72295000", + "longitude": "16.99887000" + }, + { + "id": "8362", + "name": "Podzvizd", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.17417000", + "longitude": "15.87361000" + }, + { + "id": "8363", + "name": "Polje", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.88014000", + "longitude": "18.07452000" + }, + { + "id": "8364", + "name": "Polje-Bijela", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.63299000", + "longitude": "17.97216000" + }, + { + "id": "8366", + "name": "Potoci", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.40953000", + "longitude": "17.87855000" + }, + { + "id": "8370", + "name": "Prozor", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.82222000", + "longitude": "17.60917000" + }, + { + "id": "8371", + "name": "Puračić", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.54562000", + "longitude": "18.47865000" + }, + { + "id": "8372", + "name": "Radišići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.22302000", + "longitude": "17.54056000" + }, + { + "id": "8373", + "name": "Rodoč", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.31453000", + "longitude": "17.80290000" + }, + { + "id": "8376", + "name": "Rumboci", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.83154000", + "longitude": "17.50273000" + }, + { + "id": "8377", + "name": "Sanica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.61354000", + "longitude": "16.64062000" + }, + { + "id": "8378", + "name": "Sanski Most", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.76670000", + "longitude": "16.66700000" + }, + { + "id": "8379", + "name": "Sapna", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.50380000", + "longitude": "18.99818000" + }, + { + "id": "8380", + "name": "Sarajevo", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.84864000", + "longitude": "18.35644000" + }, + { + "id": "8381", + "name": "Skokovi", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.03139000", + "longitude": "15.91444000" + }, + { + "id": "8382", + "name": "Sladna", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.72897000", + "longitude": "18.42575000" + }, + { + "id": "8384", + "name": "Solina", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.56226000", + "longitude": "18.69322000" + }, + { + "id": "8387", + "name": "Srebrenik", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.70819000", + "longitude": "18.48834000" + }, + { + "id": "8390", + "name": "Stijena", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.93630000", + "longitude": "16.02224000" + }, + { + "id": "8391", + "name": "Stjepan-Polje", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.71634000", + "longitude": "18.25783000" + }, + { + "id": "8392", + "name": "Stolac", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.08400000", + "longitude": "17.95995000" + }, + { + "id": "8394", + "name": "Tasovčići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.11333000", + "longitude": "17.72000000" + }, + { + "id": "8396", + "name": "Tešanj", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.61191000", + "longitude": "17.98552000" + }, + { + "id": "8397", + "name": "Tešanjka", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.67228000", + "longitude": "18.01109000" + }, + { + "id": "8398", + "name": "Todorovo", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.08833000", + "longitude": "15.93083000" + }, + { + "id": "8399", + "name": "Tojšići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.50133000", + "longitude": "18.78523000" + }, + { + "id": "8400", + "name": "Tomislavgrad", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.71849000", + "longitude": "17.22515000" + }, + { + "id": "8401", + "name": "Travnik", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.22637000", + "longitude": "17.66583000" + }, + { + "id": "8404", + "name": "Tržačka Raštela", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.97597000", + "longitude": "15.78489000" + }, + { + "id": "8405", + "name": "Turbe", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.24352000", + "longitude": "17.57499000" + }, + { + "id": "8406", + "name": "Tuzla", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.53842000", + "longitude": "18.66709000" + }, + { + "id": "8408", + "name": "Ustikolina", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.58338000", + "longitude": "18.79106000" + }, + { + "id": "8409", + "name": "Vareš", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.16444000", + "longitude": "18.32833000" + }, + { + "id": "8410", + "name": "Varoška Rijeka", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.08936000", + "longitude": "16.01906000" + }, + { + "id": "8411", + "name": "Velagići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.55618000", + "longitude": "16.73349000" + }, + { + "id": "8412", + "name": "Velika Kladuša", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.18497000", + "longitude": "15.80579000" + }, + { + "id": "8414", + "name": "Vidoši", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.77139000", + "longitude": "17.02833000" + }, + { + "id": "8415", + "name": "Visoko", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.98889000", + "longitude": "18.17806000" + }, + { + "id": "8416", + "name": "Vitez", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.15424000", + "longitude": "17.79009000" + }, + { + "id": "8417", + "name": "Vitina", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.23750000", + "longitude": "17.48389000" + }, + { + "id": "8420", + "name": "Vogošća", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.90225000", + "longitude": "18.34438000" + }, + { + "id": "8421", + "name": "Voljevac", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.87873000", + "longitude": "17.65861000" + }, + { + "id": "8422", + "name": "Vrnograč", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.16369000", + "longitude": "15.95444000" + }, + { + "id": "8423", + "name": "Vukovije Donje", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.46209000", + "longitude": "18.74941000" + }, + { + "id": "8424", + "name": "Zabrišće", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "43.79224000", + "longitude": "16.94224000" + }, + { + "id": "8425", + "name": "Zavidovići", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.44583000", + "longitude": "18.14972000" + }, + { + "id": "8426", + "name": "Zborište", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "45.14593000", + "longitude": "16.01728000" + }, + { + "id": "8427", + "name": "Zenica", + "state_id": 467, + "state_code": "BIH", + "country_id": 28, + "country_code": "BA", + "latitude": "44.20169000", + "longitude": "17.90397000" + }, + { + "id": "8436", + "name": "Šamac", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.05987000", + "longitude": "18.46756000" + }, + { + "id": "8437", + "name": "Šekovići", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.29896000", + "longitude": "18.85532000" + }, + { + "id": "8439", + "name": "Šipovo", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.28237000", + "longitude": "17.08597000" + }, + { + "id": "8446", + "name": "Živinice", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.54765000", + "longitude": "17.37357000" + }, + { + "id": "8430", + "name": "Čajniče", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.55712000", + "longitude": "19.07186000" + }, + { + "id": "8434", + "name": "Čečava", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.67961000", + "longitude": "17.75780000" + }, + { + "id": "8432", + "name": "Čelinac", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.72453000", + "longitude": "17.32431000" + }, + { + "id": "8215", + "name": "Balatun", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.86332000", + "longitude": "19.33931000" + }, + { + "id": "8216", + "name": "Banja Luka", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.77842000", + "longitude": "17.19386000" + }, + { + "id": "8221", + "name": "Bijeljina", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.76583000", + "longitude": "19.15083000" + }, + { + "id": "8223", + "name": "Bileća", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "42.87645000", + "longitude": "18.42967000" + }, + { + "id": "8225", + "name": "Blatnica", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.48677000", + "longitude": "17.82278000" + }, + { + "id": "8231", + "name": "Brod", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.13747000", + "longitude": "17.98722000" + }, + { + "id": "8232", + "name": "Bronzani Majdan", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.79237000", + "longitude": "16.94039000" + }, + { + "id": "8240", + "name": "Derventa", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.97839000", + "longitude": "17.90779000" + }, + { + "id": "8242", + "name": "Doboj", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.75944000", + "longitude": "18.06500000" + }, + { + "id": "8244", + "name": "Dobrljin", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.15106000", + "longitude": "16.47869000" + }, + { + "id": "8256", + "name": "Dvorovi", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.80753000", + "longitude": "19.25999000" + }, + { + "id": "8258", + "name": "Foča", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.50646000", + "longitude": "18.77854000" + }, + { + "id": "8259", + "name": "Gacko", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.16722000", + "longitude": "18.53528000" + }, + { + "id": "8272", + "name": "Gradiška", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.14484000", + "longitude": "17.25453000" + }, + { + "id": "8278", + "name": "Hiseti", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.76111000", + "longitude": "17.17944000" + }, + { + "id": "8282", + "name": "Istočni Mostar", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.42056000", + "longitude": "18.00833000" + }, + { + "id": "8286", + "name": "Janja", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.66554000", + "longitude": "19.24691000" + }, + { + "id": "8290", + "name": "Kalenderovci Donji", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.94673000", + "longitude": "17.83785000" + }, + { + "id": "8297", + "name": "Kneževo", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.49071000", + "longitude": "17.38161000" + }, + { + "id": "8298", + "name": "Knežica", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.10548000", + "longitude": "16.67668000" + }, + { + "id": "8301", + "name": "Koran", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.81038000", + "longitude": "18.56999000" + }, + { + "id": "8302", + "name": "Kostajnica", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.21956000", + "longitude": "16.53929000" + }, + { + "id": "8303", + "name": "Kotor Varoš", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.61831000", + "longitude": "17.37204000" + }, + { + "id": "8305", + "name": "Kozarska Dubica", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.17667000", + "longitude": "16.80944000" + }, + { + "id": "8307", + "name": "Krupa na Vrbasu", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.61875000", + "longitude": "17.14351000" + }, + { + "id": "8308", + "name": "Laktaši", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.90857000", + "longitude": "17.30135000" + }, + { + "id": "8309", + "name": "Lamovita", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.92018000", + "longitude": "16.89933000" + }, + { + "id": "8312", + "name": "Ljubinje", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "42.95120000", + "longitude": "18.08702000" + }, + { + "id": "8315", + "name": "Lopare", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.63498000", + "longitude": "18.84340000" + }, + { + "id": "8319", + "name": "Maglajani", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.94975000", + "longitude": "17.35014000" + }, + { + "id": "8323", + "name": "Marićka", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.86801000", + "longitude": "16.85510000" + }, + { + "id": "8324", + "name": "Maslovare", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.56594000", + "longitude": "17.53216000" + }, + { + "id": "8325", + "name": "Mejdan - Obilićevo", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.76324000", + "longitude": "17.19012000" + }, + { + "id": "8326", + "name": "Milići", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.17016000", + "longitude": "19.09195000" + }, + { + "id": "8328", + "name": "Modriča", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.95444000", + "longitude": "18.30361000" + }, + { + "id": "8331", + "name": "Mrkonjić Grad", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.41729000", + "longitude": "17.08288000" + }, + { + "id": "8333", + "name": "Nevesinje", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.25861000", + "longitude": "18.11333000" + }, + { + "id": "8334", + "name": "Novi Grad", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.04643000", + "longitude": "16.37782000" + }, + { + "id": "8350", + "name": "Oštra Luka", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.99724000", + "longitude": "18.58464000" + }, + { + "id": "8337", + "name": "Obudovac", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.95215000", + "longitude": "18.59869000" + }, + { + "id": "8341", + "name": "Omarska", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.89170000", + "longitude": "16.89814000" + }, + { + "id": "8342", + "name": "Opština Oštra Luka", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.73278000", + "longitude": "16.82861000" + }, + { + "id": "8343", + "name": "Opština Višegrad", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.72167000", + "longitude": "19.31361000" + }, + { + "id": "8352", + "name": "Pale", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.81664000", + "longitude": "18.56949000" + }, + { + "id": "8354", + "name": "Pelagićevo", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.90105000", + "longitude": "18.59185000" + }, + { + "id": "8355", + "name": "Petkovci", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.46849000", + "longitude": "19.07466000" + }, + { + "id": "8358", + "name": "Piskavica", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.86717000", + "longitude": "16.97464000" + }, + { + "id": "8360", + "name": "Podbrdo", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.44189000", + "longitude": "17.01495000" + }, + { + "id": "8365", + "name": "Popovi", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.76547000", + "longitude": "19.28667000" + }, + { + "id": "8367", + "name": "Pribinić", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.61010000", + "longitude": "17.68981000" + }, + { + "id": "8368", + "name": "Priboj", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.60233000", + "longitude": "18.93165000" + }, + { + "id": "8369", + "name": "Prijedor", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.97991000", + "longitude": "16.71401000" + }, + { + "id": "8374", + "name": "Rogatica", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.79894000", + "longitude": "19.00363000" + }, + { + "id": "8375", + "name": "Rudo", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.61781000", + "longitude": "19.36719000" + }, + { + "id": "8383", + "name": "Sokolac", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.93817000", + "longitude": "18.80079000" + }, + { + "id": "8385", + "name": "Srbac", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.09730000", + "longitude": "17.52331000" + }, + { + "id": "8386", + "name": "Srebrenica", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.10748000", + "longitude": "19.29669000" + }, + { + "id": "8388", + "name": "Stanari", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.74475000", + "longitude": "17.82714000" + }, + { + "id": "8389", + "name": "Starcevica", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.75708000", + "longitude": "17.21178000" + }, + { + "id": "8393", + "name": "Svodna", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "45.03770000", + "longitude": "16.54019000" + }, + { + "id": "8395", + "name": "Teslić", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.60639000", + "longitude": "17.85972000" + }, + { + "id": "8402", + "name": "Trebinje", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "42.71197000", + "longitude": "18.34362000" + }, + { + "id": "8403", + "name": "Trn", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.85829000", + "longitude": "17.23583000" + }, + { + "id": "8407", + "name": "Ugljevik", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.66361000", + "longitude": "19.02028000" + }, + { + "id": "8413", + "name": "Velika Obarska", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.80461000", + "longitude": "19.16183000" + }, + { + "id": "8418", + "name": "Višegrad", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "43.78260000", + "longitude": "19.29256000" + }, + { + "id": "8419", + "name": "Vlasenica", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.18183000", + "longitude": "18.94096000" + }, + { + "id": "8428", + "name": "Zvornik", + "state_id": 470, + "state_code": "SRP", + "country_id": 28, + "country_code": "BA", + "latitude": "44.38605000", + "longitude": "19.10247000" + }, + { + "id": "15738", + "name": "Gobojango", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-21.83270000", + "longitude": "28.72882000" + }, + { + "id": "15739", + "name": "Gweta", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.18333000", + "longitude": "25.23333000" + }, + { + "id": "15742", + "name": "Kalamare", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.93369000", + "longitude": "26.57032000" + }, + { + "id": "15750", + "name": "Letlhakane", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-21.41494000", + "longitude": "25.59263000" + }, + { + "id": "15752", + "name": "Letsheng", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.66384000", + "longitude": "27.22390000" + }, + { + "id": "15753", + "name": "Maapi", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.75785000", + "longitude": "27.35001000" + }, + { + "id": "15754", + "name": "Machaneng", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.18621000", + "longitude": "27.48856000" + }, + { + "id": "15755", + "name": "Mahalapye", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.10407000", + "longitude": "26.81421000" + }, + { + "id": "15757", + "name": "Makobeng", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.99637000", + "longitude": "27.66766000" + }, + { + "id": "15758", + "name": "Makwata", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.28333000", + "longitude": "27.30000000" + }, + { + "id": "15761", + "name": "Mathakola", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.72125000", + "longitude": "27.31057000" + }, + { + "id": "15762", + "name": "Mathambgwane", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.99075000", + "longitude": "27.33158000" + }, + { + "id": "15763", + "name": "Mathathane", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.26875000", + "longitude": "28.74946000" + }, + { + "id": "15765", + "name": "Maunatlala", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.59701000", + "longitude": "27.63006000" + }, + { + "id": "15770", + "name": "Mogapi", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.32301000", + "longitude": "27.83492000" + }, + { + "id": "15772", + "name": "Moijabana", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.43333000", + "longitude": "26.41667000" + }, + { + "id": "15774", + "name": "Mookane", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.68805000", + "longitude": "26.65948000" + }, + { + "id": "15775", + "name": "Mopipi", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-21.18333000", + "longitude": "24.88333000" + }, + { + "id": "15776", + "name": "Mosetse", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.75000000", + "longitude": "26.65000000" + }, + { + "id": "15778", + "name": "Nata", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.21667000", + "longitude": "26.18333000" + }, + { + "id": "15781", + "name": "Orapa", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-21.31150000", + "longitude": "25.37642000" + }, + { + "id": "15783", + "name": "Palapye", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.54605000", + "longitude": "27.12507000" + }, + { + "id": "15786", + "name": "Pilikwe", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.79904000", + "longitude": "27.19376000" + }, + { + "id": "15787", + "name": "Rakops", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-21.02257000", + "longitude": "24.36052000" + }, + { + "id": "15788", + "name": "Ramokgonami", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.86450000", + "longitude": "27.42391000" + }, + { + "id": "15790", + "name": "Ratholo", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.72454000", + "longitude": "27.57199000" + }, + { + "id": "15792", + "name": "Sefophe", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.18333000", + "longitude": "27.96667000" + }, + { + "id": "15795", + "name": "Serowe", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.38754000", + "longitude": "26.71077000" + }, + { + "id": "15797", + "name": "Sua", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.05000000", + "longitude": "26.20000000" + }, + { + "id": "15798", + "name": "Tamasane", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-22.41840000", + "longitude": "27.40127000" + }, + { + "id": "15800", + "name": "Tobane", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-21.95000000", + "longitude": "27.90000000" + }, + { + "id": "15801", + "name": "Tonota", + "state_id": 3067, + "state_code": "CE", + "country_id": 29, + "country_code": "BW", + "latitude": "-21.44236000", + "longitude": "27.46153000" + }, + { + "id": "15731", + "name": "Dekar", + "state_id": 3061, + "state_code": "GH", + "country_id": 29, + "country_code": "BW", + "latitude": "-21.53333000", + "longitude": "21.93333000" + }, + { + "id": "15737", + "name": "Ghanzi", + "state_id": 3061, + "state_code": "GH", + "country_id": 29, + "country_code": "BW", + "latitude": "-21.69785000", + "longitude": "21.64581000" + }, + { + "id": "15740", + "name": "Hukuntsi", + "state_id": 3066, + "state_code": "KG", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.99880000", + "longitude": "21.77962000" + }, + { + "id": "15743", + "name": "Kang", + "state_id": 3066, + "state_code": "KG", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.67518000", + "longitude": "22.78762000" + }, + { + "id": "15748", + "name": "Lehututu", + "state_id": 3066, + "state_code": "KG", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.96667000", + "longitude": "21.86667000" + }, + { + "id": "15759", + "name": "Manyana", + "state_id": 3066, + "state_code": "KG", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.40000000", + "longitude": "21.71667000" + }, + { + "id": "15802", + "name": "Tshabong", + "state_id": 3066, + "state_code": "KG", + "country_id": 29, + "country_code": "BW", + "latitude": "-26.05000000", + "longitude": "22.45000000" + }, + { + "id": "15803", + "name": "Werda", + "state_id": 3066, + "state_code": "KG", + "country_id": 29, + "country_code": "BW", + "latitude": "-25.26667000", + "longitude": "23.28333000" + }, + { + "id": "15729", + "name": "Bokaa", + "state_id": 3062, + "state_code": "KL", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.45000000", + "longitude": "26.01667000" + }, + { + "id": "15767", + "name": "Mmathubudukwane", + "state_id": 3062, + "state_code": "KL", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.60000000", + "longitude": "26.43333000" + }, + { + "id": "15769", + "name": "Mochudi", + "state_id": 3062, + "state_code": "KL", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.41667000", + "longitude": "26.15000000" + }, + { + "id": "15785", + "name": "Pilane", + "state_id": 3062, + "state_code": "KL", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.45000000", + "longitude": "26.13333000" + }, + { + "id": "15730", + "name": "Botlhapatlou", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.02591000", + "longitude": "25.48976000" + }, + { + "id": "15733", + "name": "Dutlwe", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.98333000", + "longitude": "23.90000000" + }, + { + "id": "15734", + "name": "Gabane", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.66667000", + "longitude": "25.78222000" + }, + { + "id": "15736", + "name": "Gaphatshwe", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.57389000", + "longitude": "25.83417000" + }, + { + "id": "15746", + "name": "Khudumelapye", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-23.88333000", + "longitude": "24.75000000" + }, + { + "id": "15749", + "name": "Lenchwe Le Tau", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.38333000", + "longitude": "25.85000000" + }, + { + "id": "15751", + "name": "Letlhakeng", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.09442000", + "longitude": "25.02977000" + }, + { + "id": "15766", + "name": "Metsemotlhaba", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.55139000", + "longitude": "25.80306000" + }, + { + "id": "15768", + "name": "Mmopone", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.56694000", + "longitude": "25.87417000" + }, + { + "id": "15771", + "name": "Mogoditshane", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.62694000", + "longitude": "25.86556000" + }, + { + "id": "15773", + "name": "Molepolole", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.40659000", + "longitude": "25.49508000" + }, + { + "id": "15779", + "name": "Nkoyaphiri", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.63222000", + "longitude": "25.83139000" + }, + { + "id": "15799", + "name": "Thamaga", + "state_id": 3069, + "state_code": "KW", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.67014000", + "longitude": "25.53975000" + }, + { + "id": "15732", + "name": "Dukwe", + "state_id": 3068, + "state_code": "NE", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.58333000", + "longitude": "26.41667000" + }, + { + "id": "15756", + "name": "Makaleng", + "state_id": 3068, + "state_code": "NE", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.90000000", + "longitude": "27.28333000" + }, + { + "id": "15760", + "name": "Masunga", + "state_id": 3068, + "state_code": "NE", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.62455000", + "longitude": "27.44875000" + }, + { + "id": "15791", + "name": "Sebina", + "state_id": 3068, + "state_code": "NE", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.86667000", + "longitude": "27.25000000" + }, + { + "id": "15764", + "name": "Maun", + "state_id": 3065, + "state_code": "NW", + "country_id": 29, + "country_code": "BW", + "latitude": "-19.98333000", + "longitude": "23.41667000" + }, + { + "id": "15780", + "name": "Nokaneng", + "state_id": 3065, + "state_code": "NW", + "country_id": 29, + "country_code": "BW", + "latitude": "-19.66667000", + "longitude": "22.26667000" + }, + { + "id": "15784", + "name": "Pandamatenga", + "state_id": 3065, + "state_code": "NW", + "country_id": 29, + "country_code": "BW", + "latitude": "-18.52779000", + "longitude": "25.62698000" + }, + { + "id": "15793", + "name": "Sehithwa", + "state_id": 3065, + "state_code": "NW", + "country_id": 29, + "country_code": "BW", + "latitude": "-20.46667000", + "longitude": "22.71667000" + }, + { + "id": "15796", + "name": "Shakawe", + "state_id": 3065, + "state_code": "NW", + "country_id": 29, + "country_code": "BW", + "latitude": "-18.36536000", + "longitude": "21.84219000" + }, + { + "id": "15735", + "name": "Gaborone", + "state_id": 3064, + "state_code": "SE", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.76234000", + "longitude": "25.79950000" + }, + { + "id": "15741", + "name": "Janeng", + "state_id": 3064, + "state_code": "SE", + "country_id": 29, + "country_code": "BW", + "latitude": "-25.41667000", + "longitude": "25.55000000" + }, + { + "id": "15747", + "name": "Kopong", + "state_id": 3064, + "state_code": "SE", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.48333000", + "longitude": "25.88333000" + }, + { + "id": "15782", + "name": "Otse", + "state_id": 3064, + "state_code": "SE", + "country_id": 29, + "country_code": "BW", + "latitude": "-25.01667000", + "longitude": "25.73333000" + }, + { + "id": "15789", + "name": "Ramotswa", + "state_id": 3064, + "state_code": "SE", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.87158000", + "longitude": "25.86989000" + }, + { + "id": "15744", + "name": "Kanye", + "state_id": 3063, + "state_code": "SO", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.96675000", + "longitude": "25.33273000" + }, + { + "id": "15745", + "name": "Khakhea", + "state_id": 3063, + "state_code": "SO", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.68954000", + "longitude": "23.49403000" + }, + { + "id": "15777", + "name": "Mosopa", + "state_id": 3063, + "state_code": "SO", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.77180000", + "longitude": "25.42156000" + }, + { + "id": "15794", + "name": "Sekoma", + "state_id": 3063, + "state_code": "SO", + "country_id": 29, + "country_code": "BW", + "latitude": "-24.40000000", + "longitude": "23.88333000" + }, + { + "id": "10078", + "name": "Acrelândia", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.98045000", + "longitude": "-66.84388000" + }, + { + "id": "10428", + "name": "Assis Brasil", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.88334000", + "longitude": "-70.01314000" + }, + { + "id": "10774", + "name": "Brasiléia", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.01611000", + "longitude": "-68.74806000" + }, + { + "id": "10819", + "name": "Bujari", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.57859000", + "longitude": "-68.17197000" + }, + { + "id": "11091", + "name": "Capixaba", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.48782000", + "longitude": "-67.84831000" + }, + { + "id": "11498", + "name": "Cruzeiro do Sul", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.62759000", + "longitude": "-72.67756000" + }, + { + "id": "11713", + "name": "Epitaciolândia", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.93542000", + "longitude": "-68.44411000" + }, + { + "id": "11788", + "name": "Feijó", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.16540000", + "longitude": "-70.35486000" + }, + { + "id": "12647", + "name": "Jordão", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.09166000", + "longitude": "-71.84069000" + }, + { + "id": "12954", + "name": "Manoel Urbano", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.83889000", + "longitude": "-69.25972000" + }, + { + "id": "13001", + "name": "Marechal Thaumaturgo", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.94111000", + "longitude": "-72.79167000" + }, + { + "id": "13291", + "name": "Mâncio Lima", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.61417000", + "longitude": "-72.89583000" + }, + { + "id": "13945", + "name": "Plácido de Castro", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.33528000", + "longitude": "-67.18556000" + }, + { + "id": "13993", + "name": "Porto Acre", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.65038000", + "longitude": "-67.77733000" + }, + { + "id": "14022", + "name": "Porto Walter", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.26861000", + "longitude": "-72.74389000" + }, + { + "id": "14263", + "name": "Rio Branco", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.97472000", + "longitude": "-67.81000000" + }, + { + "id": "14333", + "name": "Rodrigues Alves", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.85286000", + "longitude": "-73.23613000" + }, + { + "id": "14547", + "name": "Santa Rosa do Purus", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.47730000", + "longitude": "-70.39032000" + }, + { + "id": "14692", + "name": "Sena Madureira", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.06341000", + "longitude": "-68.67245000" + }, + { + "id": "14700", + "name": "Senador Guiomard", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.14970000", + "longitude": "-67.73741000" + }, + { + "id": "15253", + "name": "Tarauacá", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.16139000", + "longitude": "-70.76556000" + }, + { + "id": "15637", + "name": "Xapuri", + "state_id": 2012, + "state_code": "AC", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.59663000", + "longitude": "-68.64891000" + }, + { + "id": "10227", + "name": "Anadia", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.67495000", + "longitude": "-36.33790000" + }, + { + "id": "10337", + "name": "Arapiraca", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.74380000", + "longitude": "-36.59315000" + }, + { + "id": "10434", + "name": "Atalaia", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.50194000", + "longitude": "-36.02278000" + }, + { + "id": "15652", + "name": "Água Branca", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.26988000", + "longitude": "-37.91917000" + }, + { + "id": "10527", + "name": "Barra de Santo Antônio", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.40472000", + "longitude": "-35.50722000" + }, + { + "id": "10529", + "name": "Barra de São Miguel", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.81230000", + "longitude": "-35.96087000" + }, + { + "id": "10581", + "name": "Batalha", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.73256000", + "longitude": "-37.08877000" + }, + { + "id": "10616", + "name": "Belém", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.54424000", + "longitude": "-36.50196000" + }, + { + "id": "10609", + "name": "Belo Monte", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.80521000", + "longitude": "-37.19157000" + }, + { + "id": "10677", + "name": "Boca da Mata", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.64651000", + "longitude": "-36.14134000" + }, + { + "id": "10767", + "name": "Branquinha", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.21168000", + "longitude": "-36.08956000" + }, + { + "id": "10883", + "name": "Cacimbinhas", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.40028000", + "longitude": "-36.99028000" + }, + { + "id": "10919", + "name": "Cajueiro", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.71667000", + "longitude": "-36.45000000" + }, + { + "id": "10957", + "name": "Campestre", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.89393000", + "longitude": "-35.53237000" + }, + { + "id": "10976", + "name": "Campo Alegre", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.78194000", + "longitude": "-36.35083000" + }, + { + "id": "10990", + "name": "Campo Grande", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.94997000", + "longitude": "-36.75593000" + }, + { + "id": "11024", + "name": "Canapi", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.17327000", + "longitude": "-37.51985000" + }, + { + "id": "11066", + "name": "Capela", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.39342000", + "longitude": "-36.12390000" + }, + { + "id": "11160", + "name": "Carneiros", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.46467000", + "longitude": "-37.35559000" + }, + { + "id": "11287", + "name": "Chã Preta", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.22921000", + "longitude": "-36.33049000" + }, + { + "id": "11317", + "name": "Coité do Nóia", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.62616000", + "longitude": "-36.60044000" + }, + { + "id": "11336", + "name": "Colônia Leopoldina", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.94183000", + "longitude": "-35.76005000" + }, + { + "id": "11394", + "name": "Coqueiro Seco", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.64656000", + "longitude": "-35.80938000" + }, + { + "id": "11445", + "name": "Coruripe", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.12556000", + "longitude": "-36.17556000" + }, + { + "id": "11464", + "name": "Craíbas", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.60115000", + "longitude": "-36.80273000" + }, + { + "id": "11569", + "name": "Delmiro Gouveia", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.38861000", + "longitude": "-37.99917000" + }, + { + "id": "11619", + "name": "Dois Riachos", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.39250000", + "longitude": "-37.10056000" + }, + { + "id": "11752", + "name": "Estrela de Alagoas", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.39858000", + "longitude": "-36.76219000" + }, + { + "id": "11789", + "name": "Feira Grande", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.92470000", + "longitude": "-36.66953000" + }, + { + "id": "11799", + "name": "Feliz Deserto", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.29080000", + "longitude": "-36.35367000" + }, + { + "id": "11824", + "name": "Flexeiras", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.20061000", + "longitude": "-35.78000000" + }, + { + "id": "11945", + "name": "Girau do Ponciano", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.88417000", + "longitude": "-36.82889000" + }, + { + "id": "12123", + "name": "Ibateguara", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.97250000", + "longitude": "-35.93944000" + }, + { + "id": "12177", + "name": "Igaci", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.53694000", + "longitude": "-36.63361000" + }, + { + "id": "12193", + "name": "Igreja Nova", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.16660000", + "longitude": "-36.61724000" + }, + { + "id": "12249", + "name": "Inhapi", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.22139000", + "longitude": "-37.74861000" + }, + { + "id": "12522", + "name": "Jacaré dos Homens", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.67278000", + "longitude": "-37.22275000" + }, + { + "id": "12535", + "name": "Jacuípe", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.87722000", + "longitude": "-35.45885000" + }, + { + "id": "12566", + "name": "Japaratinga", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.09900000", + "longitude": "-35.29631000" + }, + { + "id": "12582", + "name": "Jaramataia", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.65053000", + "longitude": "-36.96036000" + }, + { + "id": "12618", + "name": "Jequiá da Praia", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.91151000", + "longitude": "-36.09896000" + }, + { + "id": "12637", + "name": "Joaquim Gomes", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.10352000", + "longitude": "-35.73739000" + }, + { + "id": "12686", + "name": "Jundiá", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.93472000", + "longitude": "-35.57361000" + }, + { + "id": "12688", + "name": "Junqueiro", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.88524000", + "longitude": "-36.45640000" + }, + { + "id": "12749", + "name": "Lagoa da Canoa", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.82972000", + "longitude": "-36.73778000" + }, + { + "id": "12832", + "name": "Limoeiro de Anadia", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.72685000", + "longitude": "-36.45407000" + }, + { + "id": "12896", + "name": "Maceió", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.66583000", + "longitude": "-35.73528000" + }, + { + "id": "12921", + "name": "Major Isidoro", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.53222000", + "longitude": "-36.98500000" + }, + { + "id": "12961", + "name": "Mar Vermelho", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.49247000", + "longitude": "-36.35042000" + }, + { + "id": "12973", + "name": "Maragogi", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.01222000", + "longitude": "-35.22250000" + }, + { + "id": "12985", + "name": "Maravilha", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.22305000", + "longitude": "-37.37936000" + }, + { + "id": "12999", + "name": "Marechal Deodoro", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.71028000", + "longitude": "-35.89500000" + }, + { + "id": "13011", + "name": "Maribondo", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.57722000", + "longitude": "-36.30528000" + }, + { + "id": "13046", + "name": "Mata Grande", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.98543000", + "longitude": "-37.76150000" + }, + { + "id": "13073", + "name": "Matriz de Camaragibe", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.15167000", + "longitude": "-35.53333000" + }, + { + "id": "13106", + "name": "Messias", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.38333000", + "longitude": "-35.84167000" + }, + { + "id": "13121", + "name": "Minador do Negrão", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.30528000", + "longitude": "-36.86472000" + }, + { + "id": "13217", + "name": "Monteirópolis", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.62019000", + "longitude": "-37.29350000" + }, + { + "id": "13280", + "name": "Murici", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.29835000", + "longitude": "-35.89999000" + }, + { + "id": "13468", + "name": "Novo Lino", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.88091000", + "longitude": "-35.61948000" + }, + { + "id": "13497", + "name": "Olho d'Água das Flores", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.54034000", + "longitude": "-37.25214000" + }, + { + "id": "13498", + "name": "Olho d'Água do Casado", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.45648000", + "longitude": "-37.83496000" + }, + { + "id": "13495", + "name": "Olho d'Água Grande", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.05622000", + "longitude": "-36.79522000" + }, + { + "id": "13510", + "name": "Olivença", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.51861000", + "longitude": "-37.19056000" + }, + { + "id": "13539", + "name": "Ouro Branco", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.12895000", + "longitude": "-37.37367000" + }, + { + "id": "13575", + "name": "Palestina", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.67504000", + "longitude": "-37.33100000" + }, + { + "id": "13594", + "name": "Palmeira dos Índios", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.40902000", + "longitude": "-36.60651000" + }, + { + "id": "13671", + "name": "Pariconha", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.22039000", + "longitude": "-38.01670000" + }, + { + "id": "13674", + "name": "Paripueira", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.42940000", + "longitude": "-35.58979000" + }, + { + "id": "13697", + "name": "Passo de Camaragibe", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.29865000", + "longitude": "-35.42788000" + }, + { + "id": "13734", + "name": "Paulo Jacinto", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.36843000", + "longitude": "-36.39294000" + }, + { + "id": "14119", + "name": "Pão de Açúcar", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.68353000", + "longitude": "-37.45431000" + }, + { + "id": "13795", + "name": "Penedo", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.24448000", + "longitude": "-36.46992000" + }, + { + "id": "13827", + "name": "Piaçabuçu", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.40556000", + "longitude": "-36.43444000" + }, + { + "id": "13837", + "name": "Pilar", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.61752000", + "longitude": "-36.06323000" + }, + { + "id": "13852", + "name": "Pindoba", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.47492000", + "longitude": "-36.30343000" + }, + { + "id": "13897", + "name": "Piranhas", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.54806000", + "longitude": "-37.74529000" + }, + { + "id": "14051", + "name": "Poço das Trincheiras", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.31250000", + "longitude": "-37.28556000" + }, + { + "id": "14001", + "name": "Porto Calvo", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.04500000", + "longitude": "-35.39833000" + }, + { + "id": "14026", + "name": "Porto de Pedras", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.11562000", + "longitude": "-35.39158000" + }, + { + "id": "14014", + "name": "Porto Real do Colégio", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.10538000", + "longitude": "-36.72695000" + }, + { + "id": "14136", + "name": "Quebrangulo", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.31889000", + "longitude": "-36.47111000" + }, + { + "id": "14279", + "name": "Rio Largo", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.47833000", + "longitude": "-35.85333000" + }, + { + "id": "14356", + "name": "Roteiro", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.85906000", + "longitude": "-35.98311000" + }, + { + "id": "14495", + "name": "Santa Luzia do Norte", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.61082000", + "longitude": "-35.82917000" + }, + { + "id": "14582", + "name": "Santana do Ipanema", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.37833000", + "longitude": "-37.24528000" + }, + { + "id": "14589", + "name": "Santana do Mundaú", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.16806000", + "longitude": "-36.22222000" + }, + { + "id": "14673", + "name": "Satuba", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.56333000", + "longitude": "-35.82444000" + }, + { + "id": "14850", + "name": "São Brás", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.12409000", + "longitude": "-36.85043000" + }, + { + "id": "14944", + "name": "São José da Laje", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.00972000", + "longitude": "-36.05833000" + }, + { + "id": "14947", + "name": "São José da Tapera", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.55833000", + "longitude": "-37.38111000" + }, + { + "id": "15067", + "name": "São Luís do Quitunde", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.31833000", + "longitude": "-35.56111000" + }, + { + "id": "15097", + "name": "São Miguel dos Campos", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.78111000", + "longitude": "-36.09361000" + }, + { + "id": "15098", + "name": "São Miguel dos Milagres", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.25423000", + "longitude": "-35.38419000" + }, + { + "id": "15136", + "name": "São Sebastião", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.96698000", + "longitude": "-36.55280000" + }, + { + "id": "14706", + "name": "Senador Rui Palmeira", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.33827000", + "longitude": "-37.55968000" + }, + { + "id": "15221", + "name": "Tanque d'Arca", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.56069000", + "longitude": "-36.40824000" + }, + { + "id": "15243", + "name": "Taquarana", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.64342000", + "longitude": "-36.49419000" + }, + { + "id": "15282", + "name": "Teotônio Vilela", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.99012000", + "longitude": "-36.43273000" + }, + { + "id": "15347", + "name": "Traipu", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.89240000", + "longitude": "-36.97849000" + }, + { + "id": "15463", + "name": "União dos Palmares", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.13251000", + "longitude": "-36.08182000" + }, + { + "id": "15606", + "name": "Viçosa", + "state_id": 2007, + "state_code": "AL", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.36022000", + "longitude": "-36.32095000" + }, + { + "id": "10204", + "name": "Amapá", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "1.85706000", + "longitude": "-50.84374000" + }, + { + "id": "10933", + "name": "Calçoene", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "2.36098000", + "longitude": "-51.45285000" + }, + { + "id": "11541", + "name": "Cutias", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "0.99713000", + "longitude": "-50.52041000" + }, + { + "id": "11812", + "name": "Ferreira Gomes", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "0.91012000", + "longitude": "-51.35442000" + }, + { + "id": "12462", + "name": "Itaubal", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "0.57732000", + "longitude": "-50.67833000" + }, + { + "id": "12798", + "name": "Laranjal do Jari", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "0.93828000", + "longitude": "-53.22949000" + }, + { + "id": "12887", + "name": "Macapá", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "0.03889000", + "longitude": "-51.06639000" + }, + { + "id": "13088", + "name": "Mazagão", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.11500000", + "longitude": "-51.28944000" + }, + { + "id": "13492", + "name": "Oiapoque", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "2.70795000", + "longitude": "-52.16963000" + }, + { + "id": "13751", + "name": "Pedra Branca do Amapari", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "1.14843000", + "longitude": "-52.40118000" + }, + { + "id": "14008", + "name": "Porto Grande", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "0.56553000", + "longitude": "-51.71181000" + }, + { + "id": "14058", + "name": "Pracuúba", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "1.67076000", + "longitude": "-51.24490000" + }, + { + "id": "14568", + "name": "Santana", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.05833000", + "longitude": "-51.18167000" + }, + { + "id": "14739", + "name": "Serra do Navio", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "1.65803000", + "longitude": "-52.28195000" + }, + { + "id": "15255", + "name": "Tartarugalzinho", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "1.26300000", + "longitude": "-51.10973000" + }, + { + "id": "15602", + "name": "Vitória do Jari", + "state_id": 1999, + "state_code": "AP", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.95653000", + "longitude": "-52.03443000" + }, + { + "id": "10191", + "name": "Alvarães", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.22083000", + "longitude": "-64.80417000" + }, + { + "id": "10212", + "name": "Amaturá", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.38926000", + "longitude": "-68.22698000" + }, + { + "id": "10233", + "name": "Anamã", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.47990000", + "longitude": "-61.71689000" + }, + { + "id": "10266", + "name": "Anori", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.77278000", + "longitude": "-61.64417000" + }, + { + "id": "10303", + "name": "Apuí", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.78922000", + "longitude": "-59.34104000" + }, + { + "id": "10436", + "name": "Atalaia do Norte", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.66448000", + "longitude": "-71.82776000" + }, + { + "id": "10454", + "name": "Autazes", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.57972000", + "longitude": "-59.13056000" + }, + { + "id": "10513", + "name": "Barcelos", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.97357000", + "longitude": "-62.92690000" + }, + { + "id": "10553", + "name": "Barreirinha", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.79333000", + "longitude": "-57.07000000" + }, + { + "id": "10626", + "name": "Benjamin Constant", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.37555000", + "longitude": "-70.03179000" + }, + { + "id": "10641", + "name": "Beruri", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.34371000", + "longitude": "-61.75126000" + }, + { + "id": "10674", + "name": "Boa Vista do Ramos", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.15779000", + "longitude": "-57.90517000" + }, + { + "id": "10678", + "name": "Boca do Acre", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.75222000", + "longitude": "-67.39778000" + }, + { + "id": "10749", + "name": "Borba", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.39143000", + "longitude": "-59.58864000" + }, + { + "id": "10841", + "name": "Caapiranga", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.12981000", + "longitude": "-61.74406000" + }, + { + "id": "11059", + "name": "Canutama", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.53389000", + "longitude": "-64.38306000" + }, + { + "id": "11111", + "name": "Carauari", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.88278000", + "longitude": "-66.89583000" + }, + { + "id": "11125", + "name": "Careiro", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.78706000", + "longitude": "-60.34790000" + }, + { + "id": "11126", + "name": "Careiro da Várzea", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.19695000", + "longitude": "-59.82674000" + }, + { + "id": "11304", + "name": "Coari", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.08500000", + "longitude": "-63.14139000" + }, + { + "id": "11313", + "name": "Codajás", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.83667000", + "longitude": "-62.05694000" + }, + { + "id": "11676", + "name": "Eirunepé", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.66028000", + "longitude": "-69.87361000" + }, + { + "id": "11711", + "name": "Envira", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.30000000", + "longitude": "-70.21667000" + }, + { + "id": "11848", + "name": "Fonte Boa", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.51389000", + "longitude": "-66.09167000" + }, + { + "id": "12018", + "name": "Guajará", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.96667000", + "longitude": "-57.66667000" + }, + { + "id": "12110", + "name": "Humaitá", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.51651000", + "longitude": "-63.03105000" + }, + { + "id": "12281", + "name": "Ipixuna", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.11910000", + "longitude": "-71.37590000" + }, + { + "id": "12306", + "name": "Iranduba", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.28472000", + "longitude": "-60.18611000" + }, + { + "id": "12342", + "name": "Itacoatiara", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.13435000", + "longitude": "-58.43353000" + }, + { + "id": "12378", + "name": "Itamarati", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.76472000", + "longitude": "-68.03926000" + }, + { + "id": "12421", + "name": "Itapiranga", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.51600000", + "longitude": "-58.55730000" + }, + { + "id": "12575", + "name": "Japurá", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.55349000", + "longitude": "-68.24526000" + }, + { + "id": "12703", + "name": "Juruá", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.27526000", + "longitude": "-66.24211000" + }, + { + "id": "12710", + "name": "Jutaí", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.18333000", + "longitude": "-68.90000000" + }, + { + "id": "12883", + "name": "Lábrea", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.18437000", + "longitude": "-66.07500000" + }, + { + "id": "12936", + "name": "Manacapuru", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.29972000", + "longitude": "-60.62056000" + }, + { + "id": "12937", + "name": "Manaquiri", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.31667000", + "longitude": "-60.35000000" + }, + { + "id": "12939", + "name": "Manaus", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.04361000", + "longitude": "-60.01282000" + }, + { + "id": "12951", + "name": "Manicoré", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.80917000", + "longitude": "-61.30028000" + }, + { + "id": "12988", + "name": "Maraã", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.82403000", + "longitude": "-65.35883000" + }, + { + "id": "13085", + "name": "Maués", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.38361000", + "longitude": "-57.71861000" + }, + { + "id": "13321", + "name": "Nhamundá", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.18611000", + "longitude": "-56.71306000" + }, + { + "id": "13413", + "name": "Nova Olinda do Norte", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.89174000", + "longitude": "-59.09542000" + }, + { + "id": "13451", + "name": "Novo Airão", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.98386000", + "longitude": "-61.78513000" + }, + { + "id": "13453", + "name": "Novo Aripuanã", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.12056000", + "longitude": "-60.37972000" + }, + { + "id": "13672", + "name": "Parintins", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.62833000", + "longitude": "-56.73583000" + }, + { + "id": "13720", + "name": "Pauini", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.71361000", + "longitude": "-66.97639000" + }, + { + "id": "14082", + "name": "Presidente Figueiredo", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.28344000", + "longitude": "-59.98317000" + }, + { + "id": "14293", + "name": "Rio Preto da Eva", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.69795000", + "longitude": "-59.70172000" + }, + { + "id": "14483", + "name": "Santa Isabel do Rio Negro", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.41389000", + "longitude": "-65.01917000" + }, + { + "id": "14628", + "name": "Santo Antônio do Içá", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.10222000", + "longitude": "-67.93972000" + }, + { + "id": "14909", + "name": "São Gabriel da Cachoeira", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.11810000", + "longitude": "-67.08527000" + }, + { + "id": "15103", + "name": "São Paulo de Olivença", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.37833000", + "longitude": "-68.87250000" + }, + { + "id": "15153", + "name": "São Sebastião do Uatumã", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.93197000", + "longitude": "-58.74216000" + }, + { + "id": "14780", + "name": "Silves", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.76846000", + "longitude": "-58.62751000" + }, + { + "id": "15184", + "name": "Tabatinga", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.96298000", + "longitude": "-69.60265000" + }, + { + "id": "15225", + "name": "Tapauá", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.21423000", + "longitude": "-65.69985000" + }, + { + "id": "15264", + "name": "Tefé", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.36841000", + "longitude": "-64.72054000" + }, + { + "id": "15336", + "name": "Tonantins", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.87306000", + "longitude": "-67.80222000" + }, + { + "id": "15423", + "name": "Uarini", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.14736000", + "longitude": "-65.42036000" + }, + { + "id": "15475", + "name": "Urucará", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.53639000", + "longitude": "-57.76000000" + }, + { + "id": "15477", + "name": "Urucurituba", + "state_id": 2004, + "state_code": "AM", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.12845000", + "longitude": "-58.15856000" + }, + { + "id": "10061", + "name": "Abaíra", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.32129000", + "longitude": "-41.69759000" + }, + { + "id": "10059", + "name": "Abaré", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.80961000", + "longitude": "-39.27062000" + }, + { + "id": "10069", + "name": "Acajutiba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.60682000", + "longitude": "-38.03594000" + }, + { + "id": "10084", + "name": "Adustina", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.48227000", + "longitude": "-37.98446000" + }, + { + "id": "10103", + "name": "Aiquara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.11135000", + "longitude": "-39.87641000" + }, + { + "id": "10113", + "name": "Alagoinhas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.00580000", + "longitude": "-38.36146000" + }, + { + "id": "10118", + "name": "Alcobaça", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.46365000", + "longitude": "-39.37401000" + }, + { + "id": "10139", + "name": "Almadina", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.67608000", + "longitude": "-39.69066000" + }, + { + "id": "10211", + "name": "Amargosa", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.04970000", + "longitude": "-39.60720000" + }, + { + "id": "10223", + "name": "Amélia Rodrigues", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.38975000", + "longitude": "-38.75153000" + }, + { + "id": "10224", + "name": "América Dourada", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.46940000", + "longitude": "-41.47335000" + }, + { + "id": "10228", + "name": "Anagé", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.66168000", + "longitude": "-41.14703000" + }, + { + "id": "10242", + "name": "Andaraí", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.84167000", + "longitude": "-41.27679000" + }, + { + "id": "10244", + "name": "Andorinha", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.22216000", + "longitude": "-39.86387000" + }, + { + "id": "10253", + "name": "Angical", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.96280000", + "longitude": "-44.74980000" + }, + { + "id": "10258", + "name": "Anguera", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.18221000", + "longitude": "-39.21384000" + }, + { + "id": "10268", + "name": "Antas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.42138000", + "longitude": "-38.30341000" + }, + { + "id": "10272", + "name": "Antônio Cardoso", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.38641000", + "longitude": "-39.14549000" + }, + { + "id": "10276", + "name": "Antônio Gonçalves", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.62282000", + "longitude": "-40.40933000" + }, + { + "id": "10298", + "name": "Aporá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.75439000", + "longitude": "-38.22784000" + }, + { + "id": "10300", + "name": "Apuarema", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.83005000", + "longitude": "-39.73444000" + }, + { + "id": "10374", + "name": "Araçás", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.14681000", + "longitude": "-38.17233000" + }, + { + "id": "10310", + "name": "Aracatu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.39011000", + "longitude": "-41.36331000" + }, + { + "id": "10311", + "name": "Araci", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.13564000", + "longitude": "-39.07003000" + }, + { + "id": "10330", + "name": "Aramari", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.04618000", + "longitude": "-38.55762000" + }, + { + "id": "10359", + "name": "Arataca", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.24607000", + "longitude": "-39.42481000" + }, + { + "id": "10362", + "name": "Aratuípe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.09363000", + "longitude": "-39.08259000" + }, + { + "id": "10447", + "name": "Aurelino Leal", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.36310000", + "longitude": "-39.47961000" + }, + { + "id": "15659", + "name": "Água Fria", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.74762000", + "longitude": "-38.73497000" + }, + { + "id": "15682", + "name": "Érico Cardoso", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.43695000", + "longitude": "-42.10325000" + }, + { + "id": "10475", + "name": "Baianópolis", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.48331000", + "longitude": "-44.53105000" + }, + { + "id": "10476", + "name": "Baixa Grande", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.97735000", + "longitude": "-40.17993000" + }, + { + "id": "10504", + "name": "Banzaê", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.61578000", + "longitude": "-38.62688000" + }, + { + "id": "10515", + "name": "Barra", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.08944000", + "longitude": "-43.14167000" + }, + { + "id": "10523", + "name": "Barra da Estiva", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.62611000", + "longitude": "-41.32694000" + }, + { + "id": "10533", + "name": "Barra do Choça", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.01024000", + "longitude": "-40.66731000" + }, + { + "id": "10538", + "name": "Barra do Mendes", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.16094000", + "longitude": "-42.03542000" + }, + { + "id": "10544", + "name": "Barra do Rocha", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.07510000", + "longitude": "-39.59068000" + }, + { + "id": "10551", + "name": "Barreiras", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.15278000", + "longitude": "-44.99000000" + }, + { + "id": "10560", + "name": "Barro Alto", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.76083000", + "longitude": "-41.91167000" + }, + { + "id": "10563", + "name": "Barro Preto", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.75795000", + "longitude": "-39.40711000" + }, + { + "id": "10564", + "name": "Barrocas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.60190000", + "longitude": "-39.12267000" + }, + { + "id": "10592", + "name": "Beira Rio", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.25438000", + "longitude": "-42.75529000" + }, + { + "id": "10604", + "name": "Belmonte", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.86126000", + "longitude": "-38.87982000" + }, + { + "id": "10606", + "name": "Belo Campo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.87419000", + "longitude": "-41.22671000" + }, + { + "id": "10654", + "name": "Biritinga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.67075000", + "longitude": "-38.78931000" + }, + { + "id": "10663", + "name": "Boa Nova", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.36412000", + "longitude": "-40.22378000" + }, + { + "id": "10676", + "name": "Boa Vista do Tupim", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.87313000", + "longitude": "-40.62823000" + }, + { + "id": "10703", + "name": "Bom Jesus da Lapa", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.25500000", + "longitude": "-43.41806000" + }, + { + "id": "10705", + "name": "Bom Jesus da Serra", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.38380000", + "longitude": "-40.53982000" + }, + { + "id": "10735", + "name": "Boninal", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.80363000", + "longitude": "-41.68338000" + }, + { + "id": "10739", + "name": "Bonito", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.00488000", + "longitude": "-41.31779000" + }, + { + "id": "10747", + "name": "Boquira", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.82306000", + "longitude": "-42.73056000" + }, + { + "id": "10760", + "name": "Botuporã", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.29549000", + "longitude": "-42.52593000" + }, + { + "id": "10800", + "name": "Brejões", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.07059000", + "longitude": "-39.82099000" + }, + { + "id": "10798", + "name": "Brejolândia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.41237000", + "longitude": "-43.92822000" + }, + { + "id": "10808", + "name": "Brotas de Macaúbas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.10605000", + "longitude": "-42.51108000" + }, + { + "id": "10810", + "name": "Brumado", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.20361000", + "longitude": "-41.66528000" + }, + { + "id": "10817", + "name": "Buerarema", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.95944000", + "longitude": "-39.29972000" + }, + { + "id": "10832", + "name": "Buritirama", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.57081000", + "longitude": "-43.68863000" + }, + { + "id": "10844", + "name": "Caatiba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.97610000", + "longitude": "-40.39048000" + }, + { + "id": "11225", + "name": "Caém", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.14182000", + "longitude": "-40.29142000" + }, + { + "id": "10846", + "name": "Cabaceiras do Paraguaçu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.55423000", + "longitude": "-39.19596000" + }, + { + "id": "10861", + "name": "Cachoeira", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.60139000", + "longitude": "-38.96576000" + }, + { + "id": "10887", + "name": "Caculé", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.38829000", + "longitude": "-42.41516000" + }, + { + "id": "10888", + "name": "Caetanos", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.29234000", + "longitude": "-41.01004000" + }, + { + "id": "10890", + "name": "Caetité", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.97883000", + "longitude": "-42.49334000" + }, + { + "id": "10893", + "name": "Cafarnaum", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.69361000", + "longitude": "-41.46833000" + }, + { + "id": "10905", + "name": "Cairu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.52662000", + "longitude": "-38.94814000" + }, + { + "id": "10927", + "name": "Caldeirão Grande", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.04347000", + "longitude": "-40.29515000" + }, + { + "id": "10943", + "name": "Camaçari", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.69750000", + "longitude": "-38.32417000" + }, + { + "id": "10934", + "name": "Camacan", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.42769000", + "longitude": "-39.50818000" + }, + { + "id": "10937", + "name": "Camamu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.94472000", + "longitude": "-39.10389000" + }, + { + "id": "10979", + "name": "Campo Alegre de Lourdes", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.50097000", + "longitude": "-42.98275000" + }, + { + "id": "10988", + "name": "Campo Formoso", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.50750000", + "longitude": "-40.32139000" + }, + { + "id": "11025", + "name": "Canarana", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.68472000", + "longitude": "-41.76889000" + }, + { + "id": "11029", + "name": "Canavieiras", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.67500000", + "longitude": "-38.94722000" + }, + { + "id": "11060", + "name": "Canápolis", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.12516000", + "longitude": "-44.25095000" + }, + { + "id": "11032", + "name": "Candeal", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.89504000", + "longitude": "-39.20390000" + }, + { + "id": "11033", + "name": "Candeias", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.65569000", + "longitude": "-38.48700000" + }, + { + "id": "11037", + "name": "Candiba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.46972000", + "longitude": "-42.87386000" + }, + { + "id": "11051", + "name": "Cansanção", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.73105000", + "longitude": "-39.47418000" + }, + { + "id": "11057", + "name": "Canudos", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.87981000", + "longitude": "-39.14723000" + }, + { + "id": "11070", + "name": "Capela do Alto Alegre", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.61838000", + "longitude": "-39.83227000" + }, + { + "id": "11075", + "name": "Capim Grosso", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.38111000", + "longitude": "-40.01278000" + }, + { + "id": "11116", + "name": "Caraíbas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.60631000", + "longitude": "-41.25763000" + }, + { + "id": "11112", + "name": "Caravelas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.65842000", + "longitude": "-39.35989000" + }, + { + "id": "11121", + "name": "Cardeal da Silva", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.99798000", + "longitude": "-37.92468000" + }, + { + "id": "11131", + "name": "Carinhanha", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.30472000", + "longitude": "-43.76500000" + }, + { + "id": "11173", + "name": "Casa Nova", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.10439000", + "longitude": "-41.15736000" + }, + { + "id": "11192", + "name": "Castro Alves", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.74937000", + "longitude": "-39.37691000" + }, + { + "id": "11204", + "name": "Catolândia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.29613000", + "longitude": "-44.67528000" + }, + { + "id": "11206", + "name": "Catu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.35306000", + "longitude": "-38.37889000" + }, + { + "id": "11209", + "name": "Caturama", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.18601000", + "longitude": "-42.30250000" + }, + { + "id": "11549", + "name": "Cândido Sales", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.46082000", + "longitude": "-41.16353000" + }, + { + "id": "11552", + "name": "Cícero Dantas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.60000000", + "longitude": "-38.38333000" + }, + { + "id": "11238", + "name": "Central", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.15424000", + "longitude": "-42.08146000" + }, + { + "id": "11280", + "name": "Chorrochó", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.30550000", + "longitude": "-39.15652000" + }, + { + "id": "11295", + "name": "Cipó", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.09972000", + "longitude": "-38.51361000" + }, + { + "id": "11303", + "name": "Coaraci", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.64083000", + "longitude": "-39.55111000" + }, + { + "id": "11312", + "name": "Cocos", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.59438000", + "longitude": "-45.27960000" + }, + { + "id": "11348", + "name": "Conceição da Feira", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.50583000", + "longitude": "-38.99861000" + }, + { + "id": "11353", + "name": "Conceição do Almeida", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.77944000", + "longitude": "-39.17000000" + }, + { + "id": "11357", + "name": "Conceição do Coité", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.56389000", + "longitude": "-39.28278000" + }, + { + "id": "11358", + "name": "Conceição do Jacuípe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.31667000", + "longitude": "-38.76667000" + }, + { + "id": "11372", + "name": "Conde", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.81361000", + "longitude": "-37.61056000" + }, + { + "id": "11373", + "name": "Condeúba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.93275000", + "longitude": "-42.00693000" + }, + { + "id": "11391", + "name": "Contendas do Sincorá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.79599000", + "longitude": "-41.05002000" + }, + { + "id": "11397", + "name": "Coração de Maria", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.23333000", + "longitude": "-38.75000000" + }, + { + "id": "11400", + "name": "Cordeiros", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.99846000", + "longitude": "-41.89749000" + }, + { + "id": "11408", + "name": "Coribe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.72337000", + "longitude": "-44.43538000" + }, + { + "id": "11423", + "name": "Coronel João Sá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.38878000", + "longitude": "-37.94281000" + }, + { + "id": "11436", + "name": "Correntina", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.34333000", + "longitude": "-44.63667000" + }, + { + "id": "11451", + "name": "Cotegipe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.58844000", + "longitude": "-44.17000000" + }, + { + "id": "11463", + "name": "Cravolândia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.47018000", + "longitude": "-39.75493000" + }, + { + "id": "11482", + "name": "Crisópolis", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.45532000", + "longitude": "-38.13933000" + }, + { + "id": "11480", + "name": "Cristópolis", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.21789000", + "longitude": "-44.24987000" + }, + { + "id": "11491", + "name": "Cruz das Almas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.67000000", + "longitude": "-39.10194000" + }, + { + "id": "11521", + "name": "Curaçá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.99028000", + "longitude": "-39.90944000" + }, + { + "id": "11671", + "name": "Dário Meira", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.42340000", + "longitude": "-39.95935000" + }, + { + "id": "11591", + "name": "Dias d'Ávila", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.60625000", + "longitude": "-38.33717000" + }, + { + "id": "11623", + "name": "Dom Basílio", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.79717000", + "longitude": "-41.70877000" + }, + { + "id": "11631", + "name": "Dom Macedo Costa", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.93379000", + "longitude": "-39.14621000" + }, + { + "id": "11685", + "name": "Elísio Medrado", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.95431000", + "longitude": "-39.50579000" + }, + { + "id": "11696", + "name": "Encruzilhada", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.56839000", + "longitude": "-40.90789000" + }, + { + "id": "11705", + "name": "Entre Rios", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.94194000", + "longitude": "-38.08444000" + }, + { + "id": "11737", + "name": "Esplanada", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.79611000", + "longitude": "-37.94500000" + }, + { + "id": "11759", + "name": "Euclides da Cunha", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.50750000", + "longitude": "-39.01583000" + }, + { + "id": "11763", + "name": "Eunápolis", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.37750000", + "longitude": "-39.58028000" + }, + { + "id": "11907", + "name": "Fátima", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.54600000", + "longitude": "-38.22367000" + }, + { + "id": "11793", + "name": "Feira da Mata", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.13203000", + "longitude": "-44.25281000" + }, + { + "id": "11794", + "name": "Feira de Santana", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.26667000", + "longitude": "-38.96667000" + }, + { + "id": "11821", + "name": "Filadélfia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.76635000", + "longitude": "-40.20555000" + }, + { + "id": "11822", + "name": "Firmino Alves", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.91360000", + "longitude": "-39.91192000" + }, + { + "id": "11836", + "name": "Floresta Azul", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.84450000", + "longitude": "-39.75503000" + }, + { + "id": "11855", + "name": "Formosa do Rio Preto", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.04833000", + "longitude": "-45.19306000" + }, + { + "id": "11918", + "name": "Gandu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.74389000", + "longitude": "-39.48667000" + }, + { + "id": "11930", + "name": "Gavião", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.48891000", + "longitude": "-39.77412000" + }, + { + "id": "11941", + "name": "Gentio do Ouro", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.36279000", + "longitude": "-42.54827000" + }, + { + "id": "11950", + "name": "Glória", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.11097000", + "longitude": "-38.40655000" + }, + { + "id": "11972", + "name": "Gongogi", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.29995000", + "longitude": "-39.60138000" + }, + { + "id": "11987", + "name": "Governador Mangabeira", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.57719000", + "longitude": "-39.03115000" + }, + { + "id": "12021", + "name": "Guajeru", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.57881000", + "longitude": "-42.03986000" + }, + { + "id": "12024", + "name": "Guanambi", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.22333000", + "longitude": "-42.78139000" + }, + { + "id": "12057", + "name": "Guaratinga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.58564000", + "longitude": "-39.78189000" + }, + { + "id": "12095", + "name": "Heliópolis", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.72863000", + "longitude": "-38.25490000" + }, + { + "id": "12119", + "name": "Iaçu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.76722000", + "longitude": "-40.21167000" + }, + { + "id": "12131", + "name": "Ibiassucê", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.20285000", + "longitude": "-42.30214000" + }, + { + "id": "12134", + "name": "Ibicaraí", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.86500000", + "longitude": "-39.58750000" + }, + { + "id": "12136", + "name": "Ibicoara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.37664000", + "longitude": "-41.34081000" + }, + { + "id": "12138", + "name": "Ibicuí", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.84167000", + "longitude": "-39.98667000" + }, + { + "id": "12140", + "name": "Ibipeba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.64083000", + "longitude": "-42.01111000" + }, + { + "id": "12141", + "name": "Ibipitanga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.88655000", + "longitude": "-42.37115000" + }, + { + "id": "12143", + "name": "Ibiquera", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.57265000", + "longitude": "-40.84158000" + }, + { + "id": "12149", + "name": "Ibirapitanga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.16417000", + "longitude": "-39.37361000" + }, + { + "id": "12151", + "name": "Ibirapuã", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.75567000", + "longitude": "-39.97365000" + }, + { + "id": "12153", + "name": "Ibirataia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.06694000", + "longitude": "-39.64056000" + }, + { + "id": "12158", + "name": "Ibitiara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.56582000", + "longitude": "-42.38990000" + }, + { + "id": "12161", + "name": "Ibititá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.69354000", + "longitude": "-41.84148000" + }, + { + "id": "12166", + "name": "Ibotirama", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.18528000", + "longitude": "-43.22056000" + }, + { + "id": "12171", + "name": "Ichu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.70344000", + "longitude": "-39.18722000" + }, + { + "id": "12178", + "name": "Igaporã", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.89064000", + "longitude": "-42.76046000" + }, + { + "id": "12192", + "name": "Igrapiúna", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.85607000", + "longitude": "-39.19363000" + }, + { + "id": "12203", + "name": "Iguaí", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.75639000", + "longitude": "-40.08917000" + }, + { + "id": "12214", + "name": "Ilhéus", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.79364000", + "longitude": "-39.03949000" + }, + { + "id": "12247", + "name": "Inhambupe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.78444000", + "longitude": "-38.35306000" + }, + { + "id": "12268", + "name": "Ipecaetá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.33777000", + "longitude": "-39.32835000" + }, + { + "id": "12272", + "name": "Ipiaú", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.13449000", + "longitude": "-39.73948000" + }, + { + "id": "12280", + "name": "Ipirá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.15833000", + "longitude": "-39.73722000" + }, + { + "id": "12297", + "name": "Ipupiara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.76946000", + "longitude": "-42.43301000" + }, + { + "id": "12304", + "name": "Irajuba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.17999000", + "longitude": "-39.99530000" + }, + { + "id": "12305", + "name": "Iramaia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.54627000", + "longitude": "-40.82834000" + }, + { + "id": "12310", + "name": "Iraquara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.28624000", + "longitude": "-41.59153000" + }, + { + "id": "12311", + "name": "Irará", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.05000000", + "longitude": "-38.76667000" + }, + { + "id": "12317", + "name": "Irecê", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.30417000", + "longitude": "-41.85583000" + }, + { + "id": "12328", + "name": "Itabela", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.71635000", + "longitude": "-39.57325000" + }, + { + "id": "12329", + "name": "Itaberaba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.52750000", + "longitude": "-40.30694000" + }, + { + "id": "12337", + "name": "Itabuna", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.78556000", + "longitude": "-39.28028000" + }, + { + "id": "12341", + "name": "Itacaré", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.27890000", + "longitude": "-38.99584000" + }, + { + "id": "12346", + "name": "Itaeté", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.08598000", + "longitude": "-41.02566000" + }, + { + "id": "12347", + "name": "Itagi", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.16278000", + "longitude": "-40.00611000" + }, + { + "id": "12348", + "name": "Itagibá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.28361000", + "longitude": "-39.84278000" + }, + { + "id": "12349", + "name": "Itagimirim", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.13473000", + "longitude": "-39.81646000" + }, + { + "id": "12356", + "name": "Itaguaçu da Bahia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.64259000", + "longitude": "-42.21083000" + }, + { + "id": "12369", + "name": "Itaju do Colônia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.15505000", + "longitude": "-39.71598000" + }, + { + "id": "12371", + "name": "Itajuípe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.67806000", + "longitude": "-39.37500000" + }, + { + "id": "12376", + "name": "Itamaraju", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.03917000", + "longitude": "-39.53111000" + }, + { + "id": "12380", + "name": "Itamari", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.78590000", + "longitude": "-39.68416000" + }, + { + "id": "12383", + "name": "Itambé", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.24500000", + "longitude": "-40.62444000" + }, + { + "id": "12389", + "name": "Itanagra", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.30982000", + "longitude": "-38.11328000" + }, + { + "id": "12394", + "name": "Itanhém", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.16639000", + "longitude": "-40.33000000" + }, + { + "id": "12402", + "name": "Itaparica", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.90598000", + "longitude": "-38.66383000" + }, + { + "id": "12441", + "name": "Itapé", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.91851000", + "longitude": "-39.48637000" + }, + { + "id": "12403", + "name": "Itapebi", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.88751000", + "longitude": "-39.68792000" + }, + { + "id": "12413", + "name": "Itapetinga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.24889000", + "longitude": "-40.24778000" + }, + { + "id": "12418", + "name": "Itapicuru", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.31667000", + "longitude": "-38.23333000" + }, + { + "id": "12427", + "name": "Itapitanga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.46369000", + "longitude": "-39.62565000" + }, + { + "id": "12443", + "name": "Itaquara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.44720000", + "longitude": "-39.91030000" + }, + { + "id": "12448", + "name": "Itarantim", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.65972000", + "longitude": "-40.06556000" + }, + { + "id": "12458", + "name": "Itatim", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.62835000", + "longitude": "-39.68234000" + }, + { + "id": "12479", + "name": "Itiúba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.79357000", + "longitude": "-39.80381000" + }, + { + "id": "12478", + "name": "Itiruçu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.53167000", + "longitude": "-40.15028000" + }, + { + "id": "12481", + "name": "Itororó", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.11694000", + "longitude": "-40.07028000" + }, + { + "id": "12483", + "name": "Ituaçu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.81333000", + "longitude": "-41.29667000" + }, + { + "id": "12484", + "name": "Ituberá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.73538000", + "longitude": "-39.14785000" + }, + { + "id": "12497", + "name": "Iuiu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.65015000", + "longitude": "-43.64870000" + }, + { + "id": "12510", + "name": "Jaborandi", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.03850000", + "longitude": "-45.18408000" + }, + { + "id": "12517", + "name": "Jacaraci", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.83523000", + "longitude": "-42.40112000" + }, + { + "id": "12527", + "name": "Jacobina", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.18143000", + "longitude": "-40.51372000" + }, + { + "id": "12537", + "name": "Jaguaquara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.53056000", + "longitude": "-39.97083000" + }, + { + "id": "12538", + "name": "Jaguarari", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.26389000", + "longitude": "-40.19583000" + }, + { + "id": "12545", + "name": "Jaguaripe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.12834000", + "longitude": "-39.01339000" + }, + { + "id": "12559", + "name": "Jandaíra", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.61099000", + "longitude": "-37.61845000" + }, + { + "id": "12619", + "name": "Jequié", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.85875000", + "longitude": "-40.08512000" + }, + { + "id": "12620", + "name": "Jeremoabo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.92088000", + "longitude": "-38.72629000" + }, + { + "id": "12632", + "name": "Jiquiriçá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.31081000", + "longitude": "-39.58091000" + }, + { + "id": "12633", + "name": "Jitaúna", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.01274000", + "longitude": "-39.89833000" + }, + { + "id": "12661", + "name": "João Dourado", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.14883000", + "longitude": "-41.40438000" + }, + { + "id": "12673", + "name": "Juazeiro", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.39679000", + "longitude": "-40.23381000" + }, + { + "id": "12678", + "name": "Jucuruçu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.84832000", + "longitude": "-40.08414000" + }, + { + "id": "12705", + "name": "Jussara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.96408000", + "longitude": "-41.85572000" + }, + { + "id": "12708", + "name": "Jussari", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.15451000", + "longitude": "-39.51559000" + }, + { + "id": "12709", + "name": "Jussiape", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.48810000", + "longitude": "-41.62335000" + }, + { + "id": "12724", + "name": "Lafaiete Coutinho", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.62029000", + "longitude": "-40.20444000" + }, + { + "id": "12742", + "name": "Lagoa Real", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.10985000", + "longitude": "-42.21697000" + }, + { + "id": "12773", + "name": "Laje", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.18708000", + "longitude": "-40.97076000" + }, + { + "id": "12783", + "name": "Lajedão", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.57112000", + "longitude": "-40.31123000" + }, + { + "id": "12780", + "name": "Lajedinho", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.42698000", + "longitude": "-41.15097000" + }, + { + "id": "12782", + "name": "Lajedo do Tabocal", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.37125000", + "longitude": "-40.23004000" + }, + { + "id": "12787", + "name": "Lamarão", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.77625000", + "longitude": "-38.90341000" + }, + { + "id": "12793", + "name": "Lapão", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.38333000", + "longitude": "-41.83194000" + }, + { + "id": "12806", + "name": "Lauro de Freitas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.89444000", + "longitude": "-38.32722000" + }, + { + "id": "12817", + "name": "Lençóis", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.47259000", + "longitude": "-41.30815000" + }, + { + "id": "12825", + "name": "Licínio de Almeida", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.70644000", + "longitude": "-42.50442000" + }, + { + "id": "12843", + "name": "Livramento de Nossa Senhora", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.80680000", + "longitude": "-41.99709000" + }, + { + "id": "12844", + "name": "Livramento do Brumado", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.65145000", + "longitude": "-41.84564000" + }, + { + "id": "12881", + "name": "Luís Eduardo Magalhães", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.23208000", + "longitude": "-46.11460000" + }, + { + "id": "12894", + "name": "Macaúbas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.01944000", + "longitude": "-42.69861000" + }, + { + "id": "12884", + "name": "Macajuba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.14371000", + "longitude": "-40.30199000" + }, + { + "id": "12888", + "name": "Macarani", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.55700000", + "longitude": "-40.39049000" + }, + { + "id": "12904", + "name": "Macururé", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.28091000", + "longitude": "-38.91463000" + }, + { + "id": "12907", + "name": "Madre de Deus", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.74083000", + "longitude": "-38.62083000" + }, + { + "id": "12909", + "name": "Maetinga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.66530000", + "longitude": "-41.49055000" + }, + { + "id": "12915", + "name": "Maiquinique", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.69897000", + "longitude": "-40.26411000" + }, + { + "id": "12916", + "name": "Mairi", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.71139000", + "longitude": "-40.14889000" + }, + { + "id": "12925", + "name": "Malhada", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.19145000", + "longitude": "-43.63151000" + }, + { + "id": "12926", + "name": "Malhada de Pedras", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.27766000", + "longitude": "-41.89207000" + }, + { + "id": "12956", + "name": "Manoel Vitorino", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.00487000", + "longitude": "-40.48008000" + }, + { + "id": "12957", + "name": "Mansidão", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.20780000", + "longitude": "-44.14109000" + }, + { + "id": "12989", + "name": "Maraú", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.10395000", + "longitude": "-39.01490000" + }, + { + "id": "12972", + "name": "Maracás", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.44111000", + "longitude": "-40.43083000" + }, + { + "id": "12974", + "name": "Maragogipe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.77778000", + "longitude": "-38.91944000" + }, + { + "id": "12994", + "name": "Marcionílio Souza", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.11581000", + "longitude": "-40.62915000" + }, + { + "id": "13040", + "name": "Mascote", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.56306000", + "longitude": "-39.30250000" + }, + { + "id": "13049", + "name": "Mata de São João", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.53028000", + "longitude": "-38.29917000" + }, + { + "id": "13059", + "name": "Matina", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.89342000", + "longitude": "-42.98279000" + }, + { + "id": "13091", + "name": "Medeiros Neto", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.37389000", + "longitude": "-40.22056000" + }, + { + "id": "13110", + "name": "Miguel Calmon", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.42889000", + "longitude": "-40.59500000" + }, + { + "id": "13115", + "name": "Milagres", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.95591000", + "longitude": "-39.81783000" + }, + { + "id": "13143", + "name": "Mirangaba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.80362000", + "longitude": "-40.67056000" + }, + { + "id": "13145", + "name": "Mirante", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.18613000", + "longitude": "-40.78310000" + }, + { + "id": "13208", + "name": "Monte Santo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.43778000", + "longitude": "-39.33278000" + }, + { + "id": "13234", + "name": "Morpará", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.75265000", + "longitude": "-43.09133000" + }, + { + "id": "13248", + "name": "Morro do Chapéu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.54852000", + "longitude": "-41.15804000" + }, + { + "id": "13252", + "name": "Mortugaba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.98480000", + "longitude": "-42.40555000" + }, + { + "id": "13261", + "name": "Mucugê", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.14869000", + "longitude": "-41.51742000" + }, + { + "id": "13262", + "name": "Mucuri", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.08639000", + "longitude": "-39.55083000" + }, + { + "id": "13268", + "name": "Mulungu do Morro", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.00797000", + "longitude": "-41.42582000" + }, + { + "id": "13269", + "name": "Mundo Novo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.85889000", + "longitude": "-40.47250000" + }, + { + "id": "13274", + "name": "Muniz Ferreira", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.00146000", + "longitude": "-39.10601000" + }, + { + "id": "13277", + "name": "Muquém do São Francisco", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.19886000", + "longitude": "-43.51311000" + }, + { + "id": "13283", + "name": "Muritiba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.91667000", + "longitude": "-39.25000000" + }, + { + "id": "13287", + "name": "Mutuípe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.22861000", + "longitude": "-39.50472000" + }, + { + "id": "13311", + "name": "Nazaré", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.95002000", + "longitude": "-38.97869000" + }, + { + "id": "13324", + "name": "Nilo Peçanha", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.64812000", + "longitude": "-39.23876000" + }, + { + "id": "13334", + "name": "Nordestina", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.89685000", + "longitude": "-39.45141000" + }, + { + "id": "13363", + "name": "Nova Canaã", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.84621000", + "longitude": "-40.17826000" + }, + { + "id": "13381", + "name": "Nova Fátima", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.56608000", + "longitude": "-39.58609000" + }, + { + "id": "13388", + "name": "Nova Ibiá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.86230000", + "longitude": "-39.58877000" + }, + { + "id": "13395", + "name": "Nova Itarana", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.04028000", + "longitude": "-40.00784000" + }, + { + "id": "13425", + "name": "Nova Redenção", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.87403000", + "longitude": "-41.12335000" + }, + { + "id": "13437", + "name": "Nova Soure", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.23333000", + "longitude": "-38.48333000" + }, + { + "id": "13447", + "name": "Nova Viçosa", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.89194000", + "longitude": "-39.37194000" + }, + { + "id": "13461", + "name": "Novo Horizonte", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.87886000", + "longitude": "-42.13834000" + }, + { + "id": "13481", + "name": "Novo Triunfo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.34787000", + "longitude": "-38.40211000" + }, + { + "id": "13504", + "name": "Olindina", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.36667000", + "longitude": "-38.33333000" + }, + { + "id": "13509", + "name": "Oliveira dos Brejinhos", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.31694000", + "longitude": "-42.89611000" + }, + { + "id": "13536", + "name": "Ouriçangas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.00343000", + "longitude": "-38.65208000" + }, + { + "id": "13551", + "name": "Ourolândia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.83804000", + "longitude": "-41.02839000" + }, + { + "id": "13588", + "name": "Palmas de Monte Alto", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.26722000", + "longitude": "-43.16194000" + }, + { + "id": "13597", + "name": "Palmeiras", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.51485000", + "longitude": "-41.57707000" + }, + { + "id": "13634", + "name": "Paramirim", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.44250000", + "longitude": "-42.23889000" + }, + { + "id": "13653", + "name": "Paratinga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.69056000", + "longitude": "-43.18417000" + }, + { + "id": "13673", + "name": "Paripiranga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.68750000", + "longitude": "-37.86167000" + }, + { + "id": "13714", + "name": "Pau Brasil", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.46417000", + "longitude": "-39.65111000" + }, + { + "id": "13731", + "name": "Paulo Afonso", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.55234000", + "longitude": "-38.16905000" + }, + { + "id": "14120", + "name": "Pé de Serra", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.88974000", + "longitude": "-39.61937000" + }, + { + "id": "13786", + "name": "Pedrão", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.13311000", + "longitude": "-38.60621000" + }, + { + "id": "13773", + "name": "Pedro Alexandre", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.97693000", + "longitude": "-37.91489000" + }, + { + "id": "13825", + "name": "Piatã", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.12099000", + "longitude": "-41.89093000" + }, + { + "id": "13840", + "name": "Pilão Arcado", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.00201000", + "longitude": "-43.39371000" + }, + { + "id": "13851", + "name": "Pindaí", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.52319000", + "longitude": "-42.67822000" + }, + { + "id": "13853", + "name": "Pindobaçu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.74167000", + "longitude": "-40.36083000" + }, + { + "id": "13875", + "name": "Pintadas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.92312000", + "longitude": "-39.97782000" + }, + { + "id": "13911", + "name": "Piraí do Norte", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.84971000", + "longitude": "-39.39208000" + }, + { + "id": "13918", + "name": "Piripá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.92617000", + "longitude": "-41.75304000" + }, + { + "id": "13919", + "name": "Piritiba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.73028000", + "longitude": "-40.55528000" + }, + { + "id": "13936", + "name": "Planaltino", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.27349000", + "longitude": "-40.22316000" + }, + { + "id": "13937", + "name": "Planalto", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.72862000", + "longitude": "-40.38025000" + }, + { + "id": "14056", + "name": "Poções", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.52972000", + "longitude": "-40.36528000" + }, + { + "id": "13949", + "name": "Pojuca", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.36588000", + "longitude": "-38.24332000" + }, + { + "id": "13977", + "name": "Ponto Novo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.86278000", + "longitude": "-40.13361000" + }, + { + "id": "14017", + "name": "Porto Seguro", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.44972000", + "longitude": "-39.06472000" + }, + { + "id": "14031", + "name": "Posto da Mata", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.88828000", + "longitude": "-39.85593000" + }, + { + "id": "14034", + "name": "Potiraguá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.70117000", + "longitude": "-39.76689000" + }, + { + "id": "14059", + "name": "Prado", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.31655000", + "longitude": "-39.23355000" + }, + { + "id": "14080", + "name": "Presidente Dutra", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.29503000", + "longitude": "-41.98563000" + }, + { + "id": "14086", + "name": "Presidente Jânio Quadros", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.82942000", + "longitude": "-41.78616000" + }, + { + "id": "14097", + "name": "Presidente Tancredo Neves", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.46145000", + "longitude": "-39.42126000" + }, + { + "id": "14139", + "name": "Queimadas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.97833000", + "longitude": "-39.62639000" + }, + { + "id": "14148", + "name": "Quijingue", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.75250000", + "longitude": "-39.20917000" + }, + { + "id": "14160", + "name": "Quixabeira", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.41345000", + "longitude": "-40.13302000" + }, + { + "id": "14167", + "name": "Rafael Jambeiro", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.50087000", + "longitude": "-39.50915000" + }, + { + "id": "14193", + "name": "Remanso", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.54115000", + "longitude": "-42.36956000" + }, + { + "id": "14207", + "name": "Retirolândia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.47733000", + "longitude": "-39.40649000" + }, + { + "id": "14222", + "name": "Riachão das Neves", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.74611000", + "longitude": "-44.91000000" + }, + { + "id": "14225", + "name": "Riachão do Jacuípe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.80694000", + "longitude": "-39.38556000" + }, + { + "id": "14213", + "name": "Riacho de Santana", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.60917000", + "longitude": "-42.93889000" + }, + { + "id": "14232", + "name": "Ribeira do Amparo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.00558000", + "longitude": "-38.38732000" + }, + { + "id": "14234", + "name": "Ribeira do Pombal", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.83444000", + "longitude": "-38.53583000" + }, + { + "id": "14248", + "name": "Ribeirão do Largo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.38558000", + "longitude": "-40.65886000" + }, + { + "id": "14308", + "name": "Rio de Contas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.62169000", + "longitude": "-41.68702000" + }, + { + "id": "14310", + "name": "Rio do Antônio", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.22674000", + "longitude": "-42.16613000" + }, + { + "id": "14314", + "name": "Rio do Pires", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.11134000", + "longitude": "-42.17747000" + }, + { + "id": "14295", + "name": "Rio Real", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.48472000", + "longitude": "-37.93278000" + }, + { + "id": "14331", + "name": "Rodelas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.21767000", + "longitude": "-38.64607000" + }, + { + "id": "14364", + "name": "Ruy Barbosa", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.28389000", + "longitude": "-40.49389000" + }, + { + "id": "14678", + "name": "Saúde", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.84463000", + "longitude": "-40.37510000" + }, + { + "id": "14388", + "name": "Salinas da Margarida", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.90667000", + "longitude": "-38.78043000" + }, + { + "id": "14404", + "name": "Salvador", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.97111000", + "longitude": "-38.51083000" + }, + { + "id": "14422", + "name": "Santa Bárbara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.91770000", + "longitude": "-38.99206000" + }, + { + "id": "14421", + "name": "Santa Brígida", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.67904000", + "longitude": "-38.11371000" + }, + { + "id": "14441", + "name": "Santa Cruz Cabrália", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.27806000", + "longitude": "-39.02472000" + }, + { + "id": "14445", + "name": "Santa Cruz da Vitória", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.90311000", + "longitude": "-39.79148000" + }, + { + "id": "14476", + "name": "Santa Inês", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.29222000", + "longitude": "-39.81889000" + }, + { + "id": "14492", + "name": "Santa Luzia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.46388000", + "longitude": "-39.27671000" + }, + { + "id": "14507", + "name": "Santa Maria da Vitória", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.38814000", + "longitude": "-44.19868000" + }, + { + "id": "14528", + "name": "Santa Rita de Cássia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.02715000", + "longitude": "-44.59582000" + }, + { + "id": "14557", + "name": "Santa Terezinha", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.67120000", + "longitude": "-39.55082000" + }, + { + "id": "14567", + "name": "Santaluz", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.25583000", + "longitude": "-39.37472000" + }, + { + "id": "14569", + "name": "Santana", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.46667000", + "longitude": "-41.80000000" + }, + { + "id": "14597", + "name": "Santanópolis", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.02416000", + "longitude": "-38.88007000" + }, + { + "id": "14603", + "name": "Santo Amaro", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.54667000", + "longitude": "-38.71194000" + }, + { + "id": "14617", + "name": "Santo Antônio de Jesus", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.96889000", + "longitude": "-39.26139000" + }, + { + "id": "14646", + "name": "Santo Estêvão", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.43028000", + "longitude": "-39.25139000" + }, + { + "id": "14656", + "name": "Sapeaçu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.77200000", + "longitude": "-39.23848000" + }, + { + "id": "14675", + "name": "Saubara", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.73750000", + "longitude": "-38.76861000" + }, + { + "id": "14830", + "name": "Sátiro Dias", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.63166000", + "longitude": "-38.48886000" + }, + { + "id": "14860", + "name": "São Desidério", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.36333000", + "longitude": "-44.97333000" + }, + { + "id": "14863", + "name": "São Domingos", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.48464000", + "longitude": "-39.59916000" + }, + { + "id": "14899", + "name": "São Félix", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.67807000", + "longitude": "-38.99979000" + }, + { + "id": "14903", + "name": "São Félix do Coribe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.41471000", + "longitude": "-43.98138000" + }, + { + "id": "14875", + "name": "São Felipe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.83860000", + "longitude": "-41.39174000" + }, + { + "id": "14891", + "name": "São Francisco do Conde", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.64556000", + "longitude": "-38.63335000" + }, + { + "id": "14907", + "name": "São Gabriel", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.95576000", + "longitude": "-41.55411000" + }, + { + "id": "14926", + "name": "São Gonçalo dos Campos", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.43333000", + "longitude": "-38.96667000" + }, + { + "id": "14949", + "name": "São José da Vitória", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.07185000", + "longitude": "-39.35016000" + }, + { + "id": "14976", + "name": "São José do Jacuípe", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.46833000", + "longitude": "-39.90377000" + }, + { + "id": "15082", + "name": "São Miguel das Matas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.04308000", + "longitude": "-39.43403000" + }, + { + "id": "15149", + "name": "São Sebastião do Passé", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.51250000", + "longitude": "-38.49528000" + }, + { + "id": "15180", + "name": "Sítio do Mato", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.00385000", + "longitude": "-43.54537000" + }, + { + "id": "15181", + "name": "Sítio do Quinto", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.34321000", + "longitude": "-38.07346000" + }, + { + "id": "14680", + "name": "Seabra", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.41713000", + "longitude": "-41.77049000" + }, + { + "id": "14684", + "name": "Sebastião Laranjeiras", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.56848000", + "longitude": "-43.13729000" + }, + { + "id": "14710", + "name": "Senhor do Bonfim", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.46139000", + "longitude": "-40.18944000" + }, + { + "id": "14715", + "name": "Sento Sé", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.21251000", + "longitude": "-41.57947000" + }, + { + "id": "14740", + "name": "Serra do Ramalho", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.41101000", + "longitude": "-43.77849000" + }, + { + "id": "14727", + "name": "Serra Dourada", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.91499000", + "longitude": "-43.79600000" + }, + { + "id": "14732", + "name": "Serra Preta", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.06913000", + "longitude": "-39.30050000" + }, + { + "id": "14751", + "name": "Serrinha", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.66417000", + "longitude": "-39.00750000" + }, + { + "id": "14756", + "name": "Serrolândia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.54018000", + "longitude": "-40.24783000" + }, + { + "id": "14789", + "name": "Simões Filho", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.78444000", + "longitude": "-38.40389000" + }, + { + "id": "14795", + "name": "Sobradinho", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.83333000", + "longitude": "-39.10000000" + }, + { + "id": "14816", + "name": "Souto Soares", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.94603000", + "longitude": "-41.94815000" + }, + { + "id": "15188", + "name": "Tabocas do Brejo Velho", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.36943000", + "longitude": "-44.08362000" + }, + { + "id": "15219", + "name": "Tanhaçu", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.07010000", + "longitude": "-41.13506000" + }, + { + "id": "15220", + "name": "Tanque Novo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.58365000", + "longitude": "-42.54311000" + }, + { + "id": "15223", + "name": "Tanquinho", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.95674000", + "longitude": "-39.09608000" + }, + { + "id": "15231", + "name": "Taperoá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.56959000", + "longitude": "-39.22020000" + }, + { + "id": "15235", + "name": "Tapiramutá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.84722000", + "longitude": "-40.79139000" + }, + { + "id": "15267", + "name": "Teixeira de Freitas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.42402000", + "longitude": "-39.78697000" + }, + { + "id": "15278", + "name": "Teodoro Sampaio", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.26547000", + "longitude": "-38.61211000" + }, + { + "id": "15280", + "name": "Teofilândia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.53412000", + "longitude": "-38.94519000" + }, + { + "id": "15281", + "name": "Teolândia", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.57031000", + "longitude": "-39.46492000" + }, + { + "id": "15292", + "name": "Terra Nova", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.38537000", + "longitude": "-38.61874000" + }, + { + "id": "15353", + "name": "Tremedal", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.90080000", + "longitude": "-41.32339000" + }, + { + "id": "15386", + "name": "Tucano", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.99427000", + "longitude": "-38.86249000" + }, + { + "id": "15424", + "name": "Uauá", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.84143000", + "longitude": "-39.23025000" + }, + { + "id": "15432", + "name": "Ubaíra", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.28700000", + "longitude": "-39.69347000" + }, + { + "id": "15425", + "name": "Ubaitaba", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.31250000", + "longitude": "-39.32333000" + }, + { + "id": "15430", + "name": "Ubatã", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.05629000", + "longitude": "-39.52278000" + }, + { + "id": "15440", + "name": "Uibaí", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.39060000", + "longitude": "-42.15615000" + }, + { + "id": "15447", + "name": "Umburanas", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.50860000", + "longitude": "-41.17419000" + }, + { + "id": "15452", + "name": "Una", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.16451000", + "longitude": "-39.20568000" + }, + { + "id": "15465", + "name": "Urandi", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.73400000", + "longitude": "-42.66544000" + }, + { + "id": "15486", + "name": "Uruçuca", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.59306000", + "longitude": "-39.28444000" + }, + { + "id": "15489", + "name": "Utinga", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.04274000", + "longitude": "-41.19475000" + }, + { + "id": "15499", + "name": "Valença", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.37213000", + "longitude": "-39.24002000" + }, + { + "id": "15497", + "name": "Valente", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.43393000", + "longitude": "-39.48472000" + }, + { + "id": "15522", + "name": "Varzedo", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.99662000", + "longitude": "-39.37091000" + }, + { + "id": "15622", + "name": "Várzea da Roça", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.53905000", + "longitude": "-40.07647000" + }, + { + "id": "15623", + "name": "Várzea do Poço", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.53021000", + "longitude": "-40.30918000" + }, + { + "id": "15619", + "name": "Várzea Nova", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.05523000", + "longitude": "-41.23230000" + }, + { + "id": "15533", + "name": "Vera Cruz", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.02550000", + "longitude": "-38.70906000" + }, + { + "id": "15541", + "name": "Vereda", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.14998000", + "longitude": "-40.04873000" + }, + { + "id": "15599", + "name": "Vitória da Conquista", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.27953000", + "longitude": "-40.96575000" + }, + { + "id": "15624", + "name": "Wagner", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.25930000", + "longitude": "-41.22095000" + }, + { + "id": "15626", + "name": "Wanderley", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.76500000", + "longitude": "-43.99378000" + }, + { + "id": "15630", + "name": "Wenceslau Guimarães", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.61819000", + "longitude": "-39.58092000" + }, + { + "id": "15642", + "name": "Xique Xique", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.82294000", + "longitude": "-42.72815000" + }, + { + "id": "15643", + "name": "Xique-Xique", + "state_id": 2002, + "state_code": "BA", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.83393000", + "longitude": "-42.56320000" + }, + { + "id": "10058", + "name": "Abaiara", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.33642000", + "longitude": "-39.06129000" + }, + { + "id": "10071", + "name": "Acaraú", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.95424000", + "longitude": "-40.08597000" + }, + { + "id": "10070", + "name": "Acarape", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.20565000", + "longitude": "-38.69160000" + }, + { + "id": "10076", + "name": "Acopiara", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.11312000", + "longitude": "-39.51756000" + }, + { + "id": "10104", + "name": "Aiuaba", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.58896000", + "longitude": "-40.23948000" + }, + { + "id": "10120", + "name": "Alcântaras", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.58733000", + "longitude": "-40.55517000" + }, + { + "id": "10156", + "name": "Altaneira", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.98737000", + "longitude": "-39.72740000" + }, + { + "id": "10183", + "name": "Alto Santo", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.52410000", + "longitude": "-38.20916000" + }, + { + "id": "10216", + "name": "Amontada", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.27941000", + "longitude": "-39.80582000" + }, + { + "id": "10270", + "name": "Antonina do Norte", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.73622000", + "longitude": "-39.97882000" + }, + { + "id": "10302", + "name": "Apuiarés", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.95004000", + "longitude": "-39.30373000" + }, + { + "id": "10306", + "name": "Aquiraz", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.90157000", + "longitude": "-38.39127000" + }, + { + "id": "10309", + "name": "Aracati", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.56513000", + "longitude": "-37.76688000" + }, + { + "id": "10313", + "name": "Aracoiaba", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.49045000", + "longitude": "-38.67765000" + }, + { + "id": "10351", + "name": "Ararendá", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.77058000", + "longitude": "-40.75389000" + }, + { + "id": "10354", + "name": "Araripe", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.20462000", + "longitude": "-40.11426000" + }, + { + "id": "10361", + "name": "Aratuba", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.41898000", + "longitude": "-39.04818000" + }, + { + "id": "10403", + "name": "Arneiroz", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.23607000", + "longitude": "-40.09400000" + }, + { + "id": "10425", + "name": "Assaré", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.89746000", + "longitude": "-39.82906000" + }, + { + "id": "10450", + "name": "Aurora", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.00011000", + "longitude": "-38.97042000" + }, + { + "id": "10478", + "name": "Baixio", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.70726000", + "longitude": "-38.75748000" + }, + { + "id": "10494", + "name": "Banabuiú", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.23555000", + "longitude": "-38.87457000" + }, + { + "id": "10508", + "name": "Barbalha", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.43604000", + "longitude": "-39.35273000" + }, + { + "id": "10550", + "name": "Barreira", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.37049000", + "longitude": "-38.61021000" + }, + { + "id": "10559", + "name": "Barro", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.13537000", + "longitude": "-38.73373000" + }, + { + "id": "10566", + "name": "Barroquinha", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.01889000", + "longitude": "-41.13611000" + }, + { + "id": "10585", + "name": "Baturité", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.37308000", + "longitude": "-38.85915000" + }, + { + "id": "10591", + "name": "Beberibe", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.17972000", + "longitude": "-38.13056000" + }, + { + "id": "10593", + "name": "Bela Cruz", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.05056000", + "longitude": "-40.16778000" + }, + { + "id": "10666", + "name": "Boa Viagem", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.02536000", + "longitude": "-39.84169000" + }, + { + "id": "10792", + "name": "Brejo Santo", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.62229000", + "longitude": "-38.88195000" + }, + { + "id": "10953", + "name": "Camocim", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.90222000", + "longitude": "-40.84111000" + }, + { + "id": "11015", + "name": "Campos Sales", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.92527000", + "longitude": "-40.22188000" + }, + { + "id": "11046", + "name": "Canindé", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.40473000", + "longitude": "-39.41746000" + }, + { + "id": "11079", + "name": "Capistrano", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.46230000", + "longitude": "-38.92072000" + }, + { + "id": "11136", + "name": "Cariús", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.65619000", + "longitude": "-39.47496000" + }, + { + "id": "11129", + "name": "Caridade", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.20100000", + "longitude": "-39.14149000" + }, + { + "id": "11135", + "name": "Cariré", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.93586000", + "longitude": "-40.54679000" + }, + { + "id": "11134", + "name": "Caririaçu", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.04170000", + "longitude": "-39.25423000" + }, + { + "id": "11155", + "name": "Carnaubal", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.12097000", + "longitude": "-41.01368000" + }, + { + "id": "11177", + "name": "Cascavel", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.27004000", + "longitude": "-38.27377000" + }, + { + "id": "11198", + "name": "Catarina", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.25016000", + "longitude": "-39.94870000" + }, + { + "id": "11208", + "name": "Catunda", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.60469000", + "longitude": "-40.18630000" + }, + { + "id": "11214", + "name": "Caucaia", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.73611000", + "longitude": "-38.65306000" + }, + { + "id": "11230", + "name": "Cedro", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.59104000", + "longitude": "-39.12042000" + }, + { + "id": "11273", + "name": "Chaval", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.07497000", + "longitude": "-41.23723000" + }, + { + "id": "11281", + "name": "Choró", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.77277000", + "longitude": "-39.17779000" + }, + { + "id": "11279", + "name": "Chorozinho", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.29181000", + "longitude": "-38.48895000" + }, + { + "id": "11405", + "name": "Coreaú", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.68827000", + "longitude": "-40.72725000" + }, + { + "id": "11460", + "name": "Crateús", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.25084000", + "longitude": "-40.74335000" + }, + { + "id": "11461", + "name": "Crato", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.14714000", + "longitude": "-39.47132000" + }, + { + "id": "11485", + "name": "Croatá", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.39092000", + "longitude": "-40.86795000" + }, + { + "id": "11488", + "name": "Cruz", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.89619000", + "longitude": "-40.33573000" + }, + { + "id": "11574", + "name": "Deputado Irapuan Pinheiro", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.88737000", + "longitude": "-39.25923000" + }, + { + "id": "11717", + "name": "Ererê", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.99731000", + "longitude": "-38.31180000" + }, + { + "id": "11764", + "name": "Eusébio", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.86950000", + "longitude": "-38.45545000" + }, + { + "id": "11775", + "name": "Farias Brito", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.88662000", + "longitude": "-39.53406000" + }, + { + "id": "11861", + "name": "Forquilha", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.83354000", + "longitude": "-40.23431000" + }, + { + "id": "11863", + "name": "Fortaleza", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.71722000", + "longitude": "-38.54306000" + }, + { + "id": "11868", + "name": "Fortim", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.44714000", + "longitude": "-37.85289000" + }, + { + "id": "11888", + "name": "Frecheirinha", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.72816000", + "longitude": "-40.82027000" + }, + { + "id": "11939", + "name": "General Sampaio", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.05016000", + "longitude": "-39.44451000" + }, + { + "id": "12003", + "name": "Graça", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.06621000", + "longitude": "-40.79501000" + }, + { + "id": "11998", + "name": "Granja", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.12028000", + "longitude": "-40.82611000" + }, + { + "id": "11999", + "name": "Granjeiro", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.91745000", + "longitude": "-39.27944000" + }, + { + "id": "12005", + "name": "Groaíras", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.92113000", + "longitude": "-40.37696000" + }, + { + "id": "12017", + "name": "Guaiúba", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.03972000", + "longitude": "-38.63722000" + }, + { + "id": "12039", + "name": "Guaraciaba do Norte", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.16694000", + "longitude": "-40.74750000" + }, + { + "id": "12041", + "name": "Guaramiranga", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.22177000", + "longitude": "-38.96451000" + }, + { + "id": "12101", + "name": "Hidrolândia", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.40806000", + "longitude": "-40.43778000" + }, + { + "id": "12105", + "name": "Horizonte", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.11458000", + "longitude": "-38.51498000" + }, + { + "id": "12122", + "name": "Ibaretama", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.75045000", + "longitude": "-38.66571000" + }, + { + "id": "12129", + "name": "Ibiapina", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.93574000", + "longitude": "-40.92758000" + }, + { + "id": "12137", + "name": "Ibicuitinga", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.96187000", + "longitude": "-38.52019000" + }, + { + "id": "12167", + "name": "Icapuí", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.72337000", + "longitude": "-37.41335000" + }, + { + "id": "12174", + "name": "Icó", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.35186000", + "longitude": "-38.75674000" + }, + { + "id": "12201", + "name": "Iguatu", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.35550000", + "longitude": "-39.27683000" + }, + { + "id": "12234", + "name": "Independência", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.47187000", + "longitude": "-40.32314000" + }, + { + "id": "12263", + "name": "Ipaporanga", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.84741000", + "longitude": "-40.81027000" + }, + { + "id": "12265", + "name": "Ipaumirim", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.80882000", + "longitude": "-38.73227000" + }, + { + "id": "12288", + "name": "Ipu", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.34934000", + "longitude": "-40.65931000" + }, + { + "id": "12293", + "name": "Ipueiras", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.62127000", + "longitude": "-40.82192000" + }, + { + "id": "12300", + "name": "Iracema", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.81274000", + "longitude": "-38.35285000" + }, + { + "id": "12314", + "name": "Irauçuba", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.74611000", + "longitude": "-39.78333000" + }, + { + "id": "12364", + "name": "Itaiçaba", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.70171000", + "longitude": "-37.82908000" + }, + { + "id": "12362", + "name": "Itaitinga", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.96944000", + "longitude": "-38.52806000" + }, + { + "id": "12400", + "name": "Itapagé", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.68667000", + "longitude": "-39.58611000" + }, + { + "id": "12401", + "name": "Itapajé", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.73339000", + "longitude": "-39.56508000" + }, + { + "id": "12428", + "name": "Itapiúna", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.61918000", + "longitude": "-38.93130000" + }, + { + "id": "12419", + "name": "Itapipoca", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.49444000", + "longitude": "-39.57861000" + }, + { + "id": "12450", + "name": "Itarema", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.08336000", + "longitude": "-39.89698000" + }, + { + "id": "12460", + "name": "Itatira", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.56784000", + "longitude": "-39.57820000" + }, + { + "id": "12540", + "name": "Jaguaretama", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.48330000", + "longitude": "-38.75595000" + }, + { + "id": "12543", + "name": "Jaguaribara", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.65027000", + "longitude": "-38.51031000" + }, + { + "id": "12544", + "name": "Jaguaribe", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.97256000", + "longitude": "-38.68571000" + }, + { + "id": "12547", + "name": "Jaguaruana", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.81405000", + "longitude": "-37.79248000" + }, + { + "id": "12584", + "name": "Jardim", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.63821000", + "longitude": "-39.24037000" + }, + { + "id": "12601", + "name": "Jati", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.70470000", + "longitude": "-38.94361000" + }, + { + "id": "12631", + "name": "Jijoca de Jericoacoara", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.87137000", + "longitude": "-40.49161000" + }, + { + "id": "12674", + "name": "Juazeiro do Norte", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.21306000", + "longitude": "-39.31528000" + }, + { + "id": "12714", + "name": "Juá dos Vieiras", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.53333000", + "longitude": "-41.30000000" + }, + { + "id": "12679", + "name": "Jucás", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.44677000", + "longitude": "-39.62005000" + }, + { + "id": "12809", + "name": "Lavras da Mangabeira", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.75333000", + "longitude": "-38.96444000" + }, + { + "id": "12834", + "name": "Limoeiro do Norte", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.17406000", + "longitude": "-38.02656000" + }, + { + "id": "12905", + "name": "Madalena", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.87622000", + "longitude": "-39.47587000" + }, + { + "id": "12968", + "name": "Maracanaú", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.87667000", + "longitude": "-38.62556000" + }, + { + "id": "12977", + "name": "Maranguape", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.99581000", + "longitude": "-38.72969000" + }, + { + "id": "12995", + "name": "Marco", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.18943000", + "longitude": "-40.26283000" + }, + { + "id": "13034", + "name": "Martinópole", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.19761000", + "longitude": "-40.60948000" + }, + { + "id": "13041", + "name": "Massapê", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.50912000", + "longitude": "-40.36655000" + }, + { + "id": "13082", + "name": "Mauriti", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.38806000", + "longitude": "-38.63645000" + }, + { + "id": "13103", + "name": "Meruoca", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.58604000", + "longitude": "-40.46730000" + }, + { + "id": "13114", + "name": "Milagres", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.26057000", + "longitude": "-38.96244000" + }, + { + "id": "13117", + "name": "Milhã", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.66904000", + "longitude": "-39.22525000" + }, + { + "id": "13154", + "name": "Miraíma", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.56511000", + "longitude": "-39.90390000" + }, + { + "id": "13158", + "name": "Missão Velha", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.23707000", + "longitude": "-39.11196000" + }, + { + "id": "13172", + "name": "Mombaça", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.79217000", + "longitude": "-39.77985000" + }, + { + "id": "13180", + "name": "Monsenhor Tabosa", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.96764000", + "longitude": "-40.06725000" + }, + { + "id": "13229", + "name": "Moraújo", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.46006000", + "longitude": "-40.69958000" + }, + { + "id": "13227", + "name": "Morada Nova", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.10667000", + "longitude": "-38.37250000" + }, + { + "id": "13236", + "name": "Morrinhos", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.28421000", + "longitude": "-40.09125000" + }, + { + "id": "13260", + "name": "Mucambo", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.90780000", + "longitude": "-40.76944000" + }, + { + "id": "13267", + "name": "Mulungu", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.30636000", + "longitude": "-38.98955000" + }, + { + "id": "13411", + "name": "Nova Olinda", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.08567000", + "longitude": "-39.67195000" + }, + { + "id": "13430", + "name": "Nova Russas", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.72277000", + "longitude": "-40.59553000" + }, + { + "id": "13471", + "name": "Novo Oriente", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.58278000", + "longitude": "-40.74014000" + }, + { + "id": "13488", + "name": "Ocara", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.49083000", + "longitude": "-38.59667000" + }, + { + "id": "13526", + "name": "Orós", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.25502000", + "longitude": "-38.96761000" + }, + { + "id": "13555", + "name": "Pacajus", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.17250000", + "longitude": "-38.46056000" + }, + { + "id": "13557", + "name": "Pacatuba", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.97623000", + "longitude": "-38.62922000" + }, + { + "id": "13559", + "name": "Pacoti", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.19575000", + "longitude": "-38.90252000" + }, + { + "id": "13560", + "name": "Pacujá", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.96747000", + "longitude": "-40.67686000" + }, + { + "id": "13579", + "name": "Palhano", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.66056000", + "longitude": "-38.04453000" + }, + { + "id": "13609", + "name": "Palmácia", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.12964000", + "longitude": "-38.84258000" + }, + { + "id": "13625", + "name": "Paracuru", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.41000000", + "longitude": "-39.03056000" + }, + { + "id": "13631", + "name": "Paraipaba", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.43944000", + "longitude": "-39.14833000" + }, + { + "id": "13633", + "name": "Parambu", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.25405000", + "longitude": "-40.60876000" + }, + { + "id": "13635", + "name": "Paramoti", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.14739000", + "longitude": "-39.36219000" + }, + { + "id": "13749", + "name": "Pedra Branca", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.49336000", + "longitude": "-39.85259000" + }, + { + "id": "13792", + "name": "Penaforte", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.80046000", + "longitude": "-39.04704000" + }, + { + "id": "13797", + "name": "Pentecoste", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.85116000", + "longitude": "-39.19850000" + }, + { + "id": "13807", + "name": "Pereiro", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.04085000", + "longitude": "-38.48892000" + }, + { + "id": "13856", + "name": "Pindoretama", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.06156000", + "longitude": "-38.29450000" + }, + { + "id": "13881", + "name": "Piquet Carneiro", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.86038000", + "longitude": "-39.45580000" + }, + { + "id": "13915", + "name": "Pires Ferreira", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.25485000", + "longitude": "-40.59869000" + }, + { + "id": "13981", + "name": "Poranga", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.76103000", + "longitude": "-40.93222000" + }, + { + "id": "13987", + "name": "Porteiras", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.59509000", + "longitude": "-39.07443000" + }, + { + "id": "14032", + "name": "Potengi", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.03279000", + "longitude": "-40.04012000" + }, + { + "id": "14036", + "name": "Potiretama", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.75401000", + "longitude": "-38.18249000" + }, + { + "id": "14157", + "name": "Quiterianópolis", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.88995000", + "longitude": "-40.72808000" + }, + { + "id": "14161", + "name": "Quixadá", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.97056000", + "longitude": "-39.01812000" + }, + { + "id": "14162", + "name": "Quixelô", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.15064000", + "longitude": "-39.11702000" + }, + { + "id": "14163", + "name": "Quixeramobim", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.13424000", + "longitude": "-39.33459000" + }, + { + "id": "14164", + "name": "Quixeré", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.07417000", + "longitude": "-37.98861000" + }, + { + "id": "14183", + "name": "Redenção", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.22583000", + "longitude": "-38.73056000" + }, + { + "id": "14196", + "name": "Reriutaba", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.13835000", + "longitude": "-40.61603000" + }, + { + "id": "14363", + "name": "Russas", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.83990000", + "longitude": "-38.19597000" + }, + { + "id": "14369", + "name": "Saboeiro", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.47813000", + "longitude": "-39.88569000" + }, + { + "id": "14390", + "name": "Salitre", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.13795000", + "longitude": "-40.28978000" + }, + { + "id": "14522", + "name": "Santa Quitéria", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.33194000", + "longitude": "-40.15667000" + }, + { + "id": "14577", + "name": "Santana do Acaraú", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.46056000", + "longitude": "-40.21222000" + }, + { + "id": "14579", + "name": "Santana do Cariri", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.17968000", + "longitude": "-39.78451000" + }, + { + "id": "14831", + "name": "São Benedito", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.04957000", + "longitude": "-40.94585000" + }, + { + "id": "14918", + "name": "São Gonçalo do Amarante", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.60722000", + "longitude": "-38.96833000" + }, + { + "id": "15031", + "name": "São João do Jaguaribe", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.31884000", + "longitude": "-38.26878000" + }, + { + "id": "15048", + "name": "São João dos Inhamuns", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.00000000", + "longitude": "-40.28333000" + }, + { + "id": "15066", + "name": "São Luís do Curu", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.64119000", + "longitude": "-39.24877000" + }, + { + "id": "14705", + "name": "Senador Pompeu", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.58806000", + "longitude": "-39.37167000" + }, + { + "id": "14708", + "name": "Senador Sá", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.27654000", + "longitude": "-40.44418000" + }, + { + "id": "14798", + "name": "Sobral", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.85932000", + "longitude": "-40.04376000" + }, + { + "id": "14806", + "name": "Solonópole", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.87073000", + "longitude": "-39.01210000" + }, + { + "id": "15192", + "name": "Tabuleiro do Norte", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.29109000", + "longitude": "-38.07247000" + }, + { + "id": "15212", + "name": "Tamboril", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.83222000", + "longitude": "-40.32056000" + }, + { + "id": "15254", + "name": "Tarrafas", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.73736000", + "longitude": "-39.72329000" + }, + { + "id": "15261", + "name": "Tauá", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.90848000", + "longitude": "-40.27279000" + }, + { + "id": "15271", + "name": "Tejuçuoca", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.93547000", + "longitude": "-39.64972000" + }, + { + "id": "15303", + "name": "Tianguá", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.67295000", + "longitude": "-40.99014000" + }, + { + "id": "15348", + "name": "Trairi", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.33156000", + "longitude": "-39.38032000" + }, + { + "id": "15415", + "name": "Tururu", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.53335000", + "longitude": "-39.37556000" + }, + { + "id": "15426", + "name": "Ubajara", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.84020000", + "longitude": "-40.93422000" + }, + { + "id": "15444", + "name": "Umari", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.60924000", + "longitude": "-38.71952000" + }, + { + "id": "15450", + "name": "Umirim", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.70599000", + "longitude": "-39.39689000" + }, + { + "id": "15474", + "name": "Uruburetama", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.62829000", + "longitude": "-39.54760000" + }, + { + "id": "15480", + "name": "Uruoca", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.31983000", + "longitude": "-40.72170000" + }, + { + "id": "15518", + "name": "Varjota", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.19444000", + "longitude": "-40.47667000" + }, + { + "id": "15615", + "name": "Várzea Alegre", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.35000000", + "longitude": "-40.38333000" + }, + { + "id": "15608", + "name": "Viçosa do Ceará", + "state_id": 2016, + "state_code": "CE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.56222000", + "longitude": "-41.09222000" + }, + { + "id": "10087", + "name": "Afonso Cláudio", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.10512000", + "longitude": "-41.12422000" + }, + { + "id": "10123", + "name": "Alegre", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.70897000", + "longitude": "-41.51937000" + }, + { + "id": "10131", + "name": "Alfredo Chaves", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.54245000", + "longitude": "-40.82368000" + }, + { + "id": "10182", + "name": "Alto Rio Novo", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.03248000", + "longitude": "-40.99144000" + }, + { + "id": "10240", + "name": "Anchieta", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73420000", + "longitude": "-40.70056000" + }, + { + "id": "10292", + "name": "Apiacá", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.08025000", + "longitude": "-41.56100000" + }, + { + "id": "10314", + "name": "Aracruz", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.81952000", + "longitude": "-40.19097000" + }, + { + "id": "10441", + "name": "Atílio Vivacqua", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.95472000", + "longitude": "-41.19096000" + }, + { + "id": "15658", + "name": "Água Doce do Norte", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.50646000", + "longitude": "-40.99190000" + }, + { + "id": "15676", + "name": "Águia Branca", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.98306000", + "longitude": "-40.74028000" + }, + { + "id": "10479", + "name": "Baixo Guandu", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.51889000", + "longitude": "-41.01583000" + }, + { + "id": "10528", + "name": "Barra de São Francisco", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.75500000", + "longitude": "-40.89083000" + }, + { + "id": "10657", + "name": "Boa Esperança", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.54000000", + "longitude": "-40.29583000" + }, + { + "id": "10712", + "name": "Bom Jesus do Norte", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.08831000", + "longitude": "-41.63939000" + }, + { + "id": "10784", + "name": "Brejetuba", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.15621000", + "longitude": "-41.30650000" + }, + { + "id": "10879", + "name": "Cachoeiro de Itapemirim", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.84889000", + "longitude": "-41.11278000" + }, + { + "id": "11127", + "name": "Cariacica", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.30050000", + "longitude": "-40.46919000" + }, + { + "id": "11187", + "name": "Castelo", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.60361000", + "longitude": "-41.18472000" + }, + { + "id": "11320", + "name": "Colatina", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.53944000", + "longitude": "-40.63056000" + }, + { + "id": "11346", + "name": "Conceição da Barra", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.58540000", + "longitude": "-39.73618000" + }, + { + "id": "11356", + "name": "Conceição do Castelo", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.36226000", + "longitude": "-41.26622000" + }, + { + "id": "11602", + "name": "Divino de São Lourenço", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.59751000", + "longitude": "-41.72185000" + }, + { + "id": "11637", + "name": "Domingos Martins", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.36333000", + "longitude": "-40.65917000" + }, + { + "id": "11646", + "name": "Dores do Rio Preto", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.63511000", + "longitude": "-41.81208000" + }, + { + "id": "11673", + "name": "Ecoporanga", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.37333000", + "longitude": "-40.83056000" + }, + { + "id": "11904", + "name": "Fundão", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.98985000", + "longitude": "-40.31579000" + }, + { + "id": "11985", + "name": "Governador Lindenberg", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.20034000", + "longitude": "-40.49510000" + }, + { + "id": "12075", + "name": "Guaçuí", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.76804000", + "longitude": "-41.71116000" + }, + { + "id": "12051", + "name": "Guarapari", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.67182000", + "longitude": "-40.50196000" + }, + { + "id": "12507", + "name": "Iúna", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.34583000", + "longitude": "-41.53583000" + }, + { + "id": "12124", + "name": "Ibatiba", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.23389000", + "longitude": "-41.51056000" + }, + { + "id": "12154", + "name": "Ibiraçu", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.83194000", + "longitude": "-40.36972000" + }, + { + "id": "12160", + "name": "Ibitirama", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.51148000", + "longitude": "-41.66962000" + }, + { + "id": "12172", + "name": "Iconha", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.74759000", + "longitude": "-40.86570000" + }, + { + "id": "12321", + "name": "Irupi", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.34528000", + "longitude": "-41.64111000" + }, + { + "id": "12355", + "name": "Itaguaçu", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.80194000", + "longitude": "-40.85556000" + }, + { + "id": "12409", + "name": "Itapemirim", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.01111000", + "longitude": "-40.83389000" + }, + { + "id": "12447", + "name": "Itarana", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.87389000", + "longitude": "-40.87528000" + }, + { + "id": "12550", + "name": "Jaguaré", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.99187000", + "longitude": "-39.97521000" + }, + { + "id": "12624", + "name": "Jerônimo Monteiro", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.81243000", + "longitude": "-41.39536000" + }, + { + "id": "12628", + "name": "Jetibá", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.02069000", + "longitude": "-40.68145000" + }, + { + "id": "12664", + "name": "João Neiva", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.75750000", + "longitude": "-40.38556000" + }, + { + "id": "12794", + "name": "Laranja da Terra", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.89889000", + "longitude": "-41.05667000" + }, + { + "id": "12840", + "name": "Linhares", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.39111000", + "longitude": "-40.07222000" + }, + { + "id": "12959", + "name": "Mantenópolis", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.86250000", + "longitude": "-41.12278000" + }, + { + "id": "12982", + "name": "Marataízes", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.09480000", + "longitude": "-40.89904000" + }, + { + "id": "12981", + "name": "Marataizes", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.04333000", + "longitude": "-40.82444000" + }, + { + "id": "13000", + "name": "Marechal Floriano", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.41278000", + "longitude": "-40.68306000" + }, + { + "id": "13016", + "name": "Marilândia", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.42199000", + "longitude": "-40.52021000" + }, + { + "id": "13120", + "name": "Mimoso do Sul", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.10474000", + "longitude": "-41.37566000" + }, + { + "id": "13183", + "name": "Montanha", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.12694000", + "longitude": "-40.36333000" + }, + { + "id": "13263", + "name": "Mucurici", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.09333000", + "longitude": "-40.51583000" + }, + { + "id": "13275", + "name": "Muniz Freire", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.46417000", + "longitude": "-41.41306000" + }, + { + "id": "13276", + "name": "Muqui", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.91522000", + "longitude": "-41.30089000" + }, + { + "id": "13446", + "name": "Nova Venécia", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.71056000", + "longitude": "-40.40056000" + }, + { + "id": "13614", + "name": "Pancas", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.22500000", + "longitude": "-40.85139000" + }, + { + "id": "13775", + "name": "Pedro Canário", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.20359000", + "longitude": "-40.03155000" + }, + { + "id": "13931", + "name": "Piúma", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.83106000", + "longitude": "-40.72932000" + }, + { + "id": "13872", + "name": "Pinheiros", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.34486000", + "longitude": "-40.20984000" + }, + { + "id": "13975", + "name": "Ponto Belo", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.25222000", + "longitude": "-40.49863000" + }, + { + "id": "14087", + "name": "Presidente Kennedy", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.14995000", + "longitude": "-41.07293000" + }, + { + "id": "14259", + "name": "Rio Bananal", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.26500000", + "longitude": "-40.33333000" + }, + { + "id": "14286", + "name": "Rio Novo do Sul", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.78326000", + "longitude": "-40.93976000" + }, + { + "id": "14487", + "name": "Santa Leopoldina", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.10056000", + "longitude": "-40.52972000" + }, + { + "id": "14510", + "name": "Santa Maria de Jetibá", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.02745000", + "longitude": "-40.74336000" + }, + { + "id": "14551", + "name": "Santa Teresa", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.93556000", + "longitude": "-40.60028000" + }, + { + "id": "14872", + "name": "São Domingos do Norte", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.12970000", + "longitude": "-40.55454000" + }, + { + "id": "14910", + "name": "São Gabriel da Palha", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.97356000", + "longitude": "-40.52522000" + }, + { + "id": "14964", + "name": "São José do Calçado", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.98599000", + "longitude": "-41.66419000" + }, + { + "id": "15075", + "name": "São Mateus", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.72011000", + "longitude": "-39.85891000" + }, + { + "id": "15133", + "name": "São Roque do Canaã", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.73027000", + "longitude": "-40.67143000" + }, + { + "id": "14721", + "name": "Serra", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.10822000", + "longitude": "-40.30186000" + }, + { + "id": "14810", + "name": "Sooretama", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.08218000", + "longitude": "-40.14134000" + }, + { + "id": "15509", + "name": "Vargem Alta", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.64727000", + "longitude": "-41.00855000" + }, + { + "id": "15526", + "name": "Venda Nova do Imigrante", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.38487000", + "longitude": "-41.13539000" + }, + { + "id": "15553", + "name": "Viana", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.36757000", + "longitude": "-40.51413000" + }, + { + "id": "15574", + "name": "Vila Pavão", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.61186000", + "longitude": "-40.65163000" + }, + { + "id": "15577", + "name": "Vila Valério", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.97995000", + "longitude": "-40.36633000" + }, + { + "id": "15578", + "name": "Vila Velha", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.32972000", + "longitude": "-40.29250000" + }, + { + "id": "15597", + "name": "Vitória", + "state_id": 2018, + "state_code": "ES", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.31944000", + "longitude": "-40.33778000" + }, + { + "id": "10776", + "name": "Brasília", + "state_id": 2017, + "state_code": "DF", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.77972000", + "longitude": "-47.92972000" + }, + { + "id": "13934", + "name": "Planaltina", + "state_id": 2017, + "state_code": "DF", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.61791000", + "longitude": "-47.64874000" + }, + { + "id": "10053", + "name": "Abadia de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.77762000", + "longitude": "-49.46841000" + }, + { + "id": "10055", + "name": "Abadiânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.22632000", + "longitude": "-48.62681000" + }, + { + "id": "10079", + "name": "Acreúna", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.43605000", + "longitude": "-50.26696000" + }, + { + "id": "10081", + "name": "Adelândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.38577000", + "longitude": "-50.18846000" + }, + { + "id": "10129", + "name": "Alexânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.14926000", + "longitude": "-48.45973000" + }, + { + "id": "10146", + "name": "Aloândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.69411000", + "longitude": "-49.44985000" + }, + { + "id": "10171", + "name": "Alto Horizonte", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.20236000", + "longitude": "-49.43500000" + }, + { + "id": "10178", + "name": "Alto Paraíso de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.18198000", + "longitude": "-47.45902000" + }, + { + "id": "10199", + "name": "Alvorada do Norte", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.52424000", + "longitude": "-46.64133000" + }, + { + "id": "10208", + "name": "Amaralina", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.81390000", + "longitude": "-49.63205000" + }, + { + "id": "10214", + "name": "Americano do Brasil", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.26498000", + "longitude": "-49.99408000" + }, + { + "id": "10217", + "name": "Amorinópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.63420000", + "longitude": "-51.09852000" + }, + { + "id": "10282", + "name": "Anápolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.32667000", + "longitude": "-48.95278000" + }, + { + "id": "10260", + "name": "Anhanguera", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.31505000", + "longitude": "-48.22190000" + }, + { + "id": "10263", + "name": "Anicuns", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.38582000", + "longitude": "-49.97942000" + }, + { + "id": "10287", + "name": "Aparecida de Goiânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.82333000", + "longitude": "-49.24389000" + }, + { + "id": "10288", + "name": "Aparecida do Rio Doce", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.22963000", + "longitude": "-51.24140000" + }, + { + "id": "10299", + "name": "Aporé", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.74325000", + "longitude": "-52.06942000" + }, + { + "id": "10372", + "name": "Araçu", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.38304000", + "longitude": "-49.70782000" + }, + { + "id": "10315", + "name": "Aragarças", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.94743000", + "longitude": "-52.08069000" + }, + { + "id": "10316", + "name": "Aragoiânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.95418000", + "longitude": "-49.40598000" + }, + { + "id": "10323", + "name": "Araguapaz", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.12986000", + "longitude": "-50.49840000" + }, + { + "id": "10391", + "name": "Arenópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.36096000", + "longitude": "-51.60464000" + }, + { + "id": "10418", + "name": "Aruanã", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.81020000", + "longitude": "-50.94501000" + }, + { + "id": "10449", + "name": "Aurilândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.67681000", + "longitude": "-50.52582000" + }, + { + "id": "10460", + "name": "Avelinópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.49121000", + "longitude": "-49.76368000" + }, + { + "id": "15660", + "name": "Água Fria de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.96056000", + "longitude": "-47.84963000" + }, + { + "id": "15661", + "name": "Água Limpa", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.07999000", + "longitude": "-48.79951000" + }, + { + "id": "15668", + "name": "Águas Lindas de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.76613000", + "longitude": "-48.28611000" + }, + { + "id": "10483", + "name": "Baliza", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.36672000", + "longitude": "-52.43611000" + }, + { + "id": "10561", + "name": "Barro Alto", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.91276000", + "longitude": "-48.87739000" + }, + { + "id": "10596", + "name": "Bela Vista de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.97278000", + "longitude": "-48.95333000" + }, + { + "id": "10696", + "name": "Bom Jardim de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.27033000", + "longitude": "-52.05682000" + }, + { + "id": "10707", + "name": "Bom Jesus de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.19213000", + "longitude": "-49.89536000" + }, + { + "id": "10742", + "name": "Bonópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.57725000", + "longitude": "-49.89702000" + }, + { + "id": "10733", + "name": "Bonfinópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.59726000", + "longitude": "-49.01486000" + }, + { + "id": "10778", + "name": "Brazabrantes", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.37909000", + "longitude": "-49.38445000" + }, + { + "id": "10803", + "name": "Britânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.21115000", + "longitude": "-51.14785000" + }, + { + "id": "10824", + "name": "Buriti Alegre", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.14000000", + "longitude": "-49.04028000" + }, + { + "id": "10826", + "name": "Buriti de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.16439000", + "longitude": "-50.42918000" + }, + { + "id": "10831", + "name": "Buritinópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.40974000", + "longitude": "-46.31759000" + }, + { + "id": "11224", + "name": "Caçu", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.55667000", + "longitude": "-51.13083000" + }, + { + "id": "10848", + "name": "Cabeceiras", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.73747000", + "longitude": "-47.03428000" + }, + { + "id": "10862", + "name": "Cachoeira Alta", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.54284000", + "longitude": "-50.98208000" + }, + { + "id": "10868", + "name": "Cachoeira de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.72507000", + "longitude": "-50.68613000" + }, + { + "id": "10864", + "name": "Cachoeira Dourada", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.49516000", + "longitude": "-49.65104000" + }, + { + "id": "10900", + "name": "Caiapônia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.95987000", + "longitude": "-51.79148000" + }, + { + "id": "10925", + "name": "Caldas Novas", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.73126000", + "longitude": "-48.65479000" + }, + { + "id": "10926", + "name": "Caldazinha", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.74858000", + "longitude": "-49.00064000" + }, + { + "id": "10960", + "name": "Campestre de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.78337000", + "longitude": "-49.70958000" + }, + { + "id": "10973", + "name": "Campinaçu", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.86371000", + "longitude": "-48.56754000" + }, + { + "id": "10974", + "name": "Campinorte", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.04500000", + "longitude": "-48.97524000" + }, + { + "id": "10978", + "name": "Campo Alegre de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.67336000", + "longitude": "-47.77801000" + }, + { + "id": "10995", + "name": "Campo Limpo de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.30048000", + "longitude": "-49.09041000" + }, + { + "id": "11009", + "name": "Campos Belos", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.03667000", + "longitude": "-46.77167000" + }, + { + "id": "11016", + "name": "Campos Verdes", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.19022000", + "longitude": "-49.65835000" + }, + { + "id": "11149", + "name": "Carmo do Rio Verde", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.35361000", + "longitude": "-49.70750000" + }, + { + "id": "11189", + "name": "Castelândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.15581000", + "longitude": "-50.34000000" + }, + { + "id": "11194", + "name": "Catalão", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.16583000", + "longitude": "-47.94639000" + }, + { + "id": "11210", + "name": "Caturaí", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.46981000", + "longitude": "-49.59556000" + }, + { + "id": "11215", + "name": "Cavalcante", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.79750000", + "longitude": "-47.45833000" + }, + { + "id": "11557", + "name": "Córrego do Ouro", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.39566000", + "longitude": "-50.57320000" + }, + { + "id": "11245", + "name": "Ceres", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.27350000", + "longitude": "-49.64455000" + }, + { + "id": "11257", + "name": "Cezarina", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.11818000", + "longitude": "-49.72995000" + }, + { + "id": "11266", + "name": "Chapadão do Céu", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.37043000", + "longitude": "-52.56560000" + }, + { + "id": "11291", + "name": "Cidade Ocidental", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.16178000", + "longitude": "-47.79998000" + }, + { + "id": "11311", + "name": "Cocalzinho de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.65900000", + "longitude": "-48.57595000" + }, + { + "id": "11324", + "name": "Colinas do Sul", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.01221000", + "longitude": "-48.05124000" + }, + { + "id": "11440", + "name": "Corumbaíba", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.16664000", + "longitude": "-48.53205000" + }, + { + "id": "11443", + "name": "Corumbá de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.92190000", + "longitude": "-48.62979000" + }, + { + "id": "11471", + "name": "Cristalina", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.76769000", + "longitude": "-47.61530000" + }, + { + "id": "11475", + "name": "Cristianópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.19669000", + "longitude": "-48.68114000" + }, + { + "id": "11483", + "name": "Crixás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.54889000", + "longitude": "-49.96917000" + }, + { + "id": "11486", + "name": "Cromínia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.24762000", + "longitude": "-49.32979000" + }, + { + "id": "11512", + "name": "Cumari", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.31597000", + "longitude": "-48.16375000" + }, + { + "id": "11559", + "name": "Damianópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.54949000", + "longitude": "-46.19367000" + }, + { + "id": "11561", + "name": "Damolândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.25109000", + "longitude": "-49.34505000" + }, + { + "id": "11566", + "name": "Davinópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.13603000", + "longitude": "-47.57750000" + }, + { + "id": "11596", + "name": "Diorama", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.22318000", + "longitude": "-51.34971000" + }, + { + "id": "11607", + "name": "Divinópolis de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.22378000", + "longitude": "-46.52704000" + }, + { + "id": "11661", + "name": "Doverlândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.87767000", + "longitude": "-52.49917000" + }, + { + "id": "11675", + "name": "Edéia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.33833000", + "longitude": "-49.93139000" + }, + { + "id": "11674", + "name": "Edealina", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.43990000", + "longitude": "-49.73319000" + }, + { + "id": "11755", + "name": "Estrela do Norte", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.78262000", + "longitude": "-49.10026000" + }, + { + "id": "11772", + "name": "Faina", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.43697000", + "longitude": "-50.39151000" + }, + { + "id": "11785", + "name": "Fazenda Nova", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.12866000", + "longitude": "-50.92604000" + }, + { + "id": "11823", + "name": "Firminópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.58194000", + "longitude": "-50.30500000" + }, + { + "id": "11832", + "name": "Flores de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.59003000", + "longitude": "-46.87853000" + }, + { + "id": "11852", + "name": "Formosa", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.53722000", + "longitude": "-47.33444000" + }, + { + "id": "11858", + "name": "Formoso", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.70339000", + "longitude": "-48.87538000" + }, + { + "id": "11916", + "name": "Gameleira de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.43131000", + "longitude": "-48.67456000" + }, + { + "id": "11963", + "name": "Goianápolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.53041000", + "longitude": "-49.08769000" + }, + { + "id": "11964", + "name": "Goianésia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.31750000", + "longitude": "-49.11750000" + }, + { + "id": "11958", + "name": "Goiandira", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.10979000", + "longitude": "-48.14934000" + }, + { + "id": "11960", + "name": "Goianira", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.49611000", + "longitude": "-49.42639000" + }, + { + "id": "11967", + "name": "Goiatuba", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.01250000", + "longitude": "-49.35472000" + }, + { + "id": "11970", + "name": "Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.93444000", + "longitude": "-50.14028000" + }, + { + "id": "11971", + "name": "Goiânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.67861000", + "longitude": "-49.25389000" + }, + { + "id": "11977", + "name": "Gouvelândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.50777000", + "longitude": "-50.17554000" + }, + { + "id": "12033", + "name": "Guapó", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.83056000", + "longitude": "-49.53194000" + }, + { + "id": "12062", + "name": "Guaraíta", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.65961000", + "longitude": "-50.06663000" + }, + { + "id": "12046", + "name": "Guarani de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.88485000", + "longitude": "-46.50711000" + }, + { + "id": "12067", + "name": "Guarinos", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.69976000", + "longitude": "-49.73100000" + }, + { + "id": "12093", + "name": "Heitoraí", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.73416000", + "longitude": "-49.83108000" + }, + { + "id": "12102", + "name": "Hidrolândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.96222000", + "longitude": "-49.22806000" + }, + { + "id": "12100", + "name": "Hidrolina", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.75739000", + "longitude": "-49.35965000" + }, + { + "id": "12114", + "name": "Iaciara", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.09583000", + "longitude": "-46.63167000" + }, + { + "id": "12227", + "name": "Inaciolândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.49889000", + "longitude": "-49.90164000" + }, + { + "id": "12240", + "name": "Indiara", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.18504000", + "longitude": "-49.96826000" + }, + { + "id": "12253", + "name": "Inhumas", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.35778000", + "longitude": "-49.49611000" + }, + { + "id": "12260", + "name": "Ipameri", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.72194000", + "longitude": "-48.15972000" + }, + { + "id": "12276", + "name": "Ipiranga de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.16876000", + "longitude": "-49.65047000" + }, + { + "id": "12285", + "name": "Iporá", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.45543000", + "longitude": "-51.15977000" + }, + { + "id": "12323", + "name": "Israelândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.35776000", + "longitude": "-50.89499000" + }, + { + "id": "12330", + "name": "Itaberaí", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.02028000", + "longitude": "-49.81028000" + }, + { + "id": "12352", + "name": "Itaguari", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.91179000", + "longitude": "-49.61834000" + }, + { + "id": "12353", + "name": "Itaguaru", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.76944000", + "longitude": "-49.60042000" + }, + { + "id": "12373", + "name": "Itajá", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.11554000", + "longitude": "-51.24473000" + }, + { + "id": "12398", + "name": "Itapaci", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.95083000", + "longitude": "-49.54944000" + }, + { + "id": "12423", + "name": "Itapirapuã", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.82333000", + "longitude": "-50.61333000" + }, + { + "id": "12438", + "name": "Itapuranga", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.56944000", + "longitude": "-49.93481000" + }, + { + "id": "12452", + "name": "Itarumã", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.87992000", + "longitude": "-51.32023000" + }, + { + "id": "12464", + "name": "Itauçu", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.21434000", + "longitude": "-49.60066000" + }, + { + "id": "12487", + "name": "Itumbiara", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.41917000", + "longitude": "-49.21528000" + }, + { + "id": "12503", + "name": "Ivolândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.68830000", + "longitude": "-50.92660000" + }, + { + "id": "12556", + "name": "Jandaia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.12900000", + "longitude": "-50.19476000" + }, + { + "id": "12580", + "name": "Jaraguá", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.75694000", + "longitude": "-49.33444000" + }, + { + "id": "12598", + "name": "Jataí", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.85829000", + "longitude": "-51.70531000" + }, + { + "id": "12605", + "name": "Jaupaci", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.16749000", + "longitude": "-51.10168000" + }, + { + "id": "12627", + "name": "Jesúpolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.96458000", + "longitude": "-49.39461000" + }, + { + "id": "12656", + "name": "Joviânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.78422000", + "longitude": "-49.58440000" + }, + { + "id": "12707", + "name": "Jussara", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.58295000", + "longitude": "-51.32970000" + }, + { + "id": "12745", + "name": "Lagoa Santa", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.21207000", + "longitude": "-51.25891000" + }, + { + "id": "12821", + "name": "Leopoldo de Bulhões", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.58142000", + "longitude": "-48.90604000" + }, + { + "id": "12877", + "name": "Luziânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.25250000", + "longitude": "-47.95028000" + }, + { + "id": "12919", + "name": "Mairipotaba", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.32688000", + "longitude": "-49.50788000" + }, + { + "id": "12932", + "name": "Mambaí", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.44220000", + "longitude": "-46.05807000" + }, + { + "id": "12963", + "name": "Mara Rosa", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.01285000", + "longitude": "-49.39507000" + }, + { + "id": "13038", + "name": "Marzagão", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.99103000", + "longitude": "-48.68316000" + }, + { + "id": "13072", + "name": "Matrinchã", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.33819000", + "longitude": "-50.82655000" + }, + { + "id": "13080", + "name": "Maurilândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.05037000", + "longitude": "-50.32935000" + }, + { + "id": "13119", + "name": "Mimoso de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.04832000", + "longitude": "-48.34448000" + }, + { + "id": "13124", + "name": "Minaçu", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.42682000", + "longitude": "-48.38780000" + }, + { + "id": "13126", + "name": "Mineiros", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.56944000", + "longitude": "-52.55111000" + }, + { + "id": "13168", + "name": "Moiporá", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.50172000", + "longitude": "-50.76811000" + }, + { + "id": "13188", + "name": "Monte Alegre de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.26150000", + "longitude": "-46.84266000" + }, + { + "id": "13221", + "name": "Montes Claros de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.96248000", + "longitude": "-51.50601000" + }, + { + "id": "13223", + "name": "Montividiu", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.25815000", + "longitude": "-51.15739000" + }, + { + "id": "13224", + "name": "Montividiu do Norte", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.09232000", + "longitude": "-48.74161000" + }, + { + "id": "13237", + "name": "Morrinhos", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.79922000", + "longitude": "-49.09225000" + }, + { + "id": "13240", + "name": "Morro Agudo de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.32310000", + "longitude": "-50.01578000" + }, + { + "id": "13255", + "name": "Mossâmedes", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.16495000", + "longitude": "-50.17004000" + }, + { + "id": "13258", + "name": "Mozarlândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.74472000", + "longitude": "-50.57056000" + }, + { + "id": "13271", + "name": "Mundo Novo", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.71649000", + "longitude": "-50.23715000" + }, + { + "id": "13286", + "name": "Mutunópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.70257000", + "longitude": "-49.29995000" + }, + { + "id": "13316", + "name": "Nazário", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.58010000", + "longitude": "-49.86543000" + }, + { + "id": "13318", + "name": "Nerópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.43883000", + "longitude": "-49.18117000" + }, + { + "id": "13330", + "name": "Niquelândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.47389000", + "longitude": "-48.45972000" + }, + { + "id": "13349", + "name": "Nova América", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.05098000", + "longitude": "-49.92499000" + }, + { + "id": "13354", + "name": "Nova Aurora", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.10107000", + "longitude": "-48.27661000" + }, + { + "id": "13370", + "name": "Nova Crixás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.27678000", + "longitude": "-50.57649000" + }, + { + "id": "13383", + "name": "Nova Glória", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.06360000", + "longitude": "-49.48353000" + }, + { + "id": "13390", + "name": "Nova Iguaçu de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.29731000", + "longitude": "-49.31188000" + }, + { + "id": "13427", + "name": "Nova Roma", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.84078000", + "longitude": "-47.00832000" + }, + { + "id": "13445", + "name": "Nova Veneza", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.35456000", + "longitude": "-49.30001000" + }, + { + "id": "13455", + "name": "Novo Brasil", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.04806000", + "longitude": "-50.63638000" + }, + { + "id": "13458", + "name": "Novo Gama", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.12535000", + "longitude": "-48.07041000" + }, + { + "id": "13474", + "name": "Novo Planalto", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.38362000", + "longitude": "-49.76104000" + }, + { + "id": "13519", + "name": "Orizona", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.03139000", + "longitude": "-48.29583000" + }, + { + "id": "13547", + "name": "Ouro Verde de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.23604000", + "longitude": "-49.22771000" + }, + { + "id": "13553", + "name": "Ouvidor", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.20107000", + "longitude": "-47.71513000" + }, + { + "id": "13561", + "name": "Padre Bernardo", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.16595000", + "longitude": "-48.28281000" + }, + { + "id": "13577", + "name": "Palestina de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.72854000", + "longitude": "-51.45851000" + }, + { + "id": "13598", + "name": "Palmeiras de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.80500000", + "longitude": "-49.92583000" + }, + { + "id": "13603", + "name": "Palmelo", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.31937000", + "longitude": "-48.39429000" + }, + { + "id": "13604", + "name": "Palminópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.83157000", + "longitude": "-50.24267000" + }, + { + "id": "13613", + "name": "Panamá", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.20132000", + "longitude": "-49.38890000" + }, + { + "id": "13666", + "name": "Paraúna", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.94778000", + "longitude": "-50.44861000" + }, + { + "id": "13638", + "name": "Paranaiguara", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.77492000", + "longitude": "-50.61841000" + }, + { + "id": "13813", + "name": "Perolândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.52861000", + "longitude": "-52.06417000" + }, + { + "id": "13818", + "name": "Petrolina de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.09500000", + "longitude": "-49.33806000" + }, + { + "id": "13838", + "name": "Pilar de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.52999000", + "longitude": "-49.51094000" + }, + { + "id": "13884", + "name": "Piracanjuba", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.30278000", + "longitude": "-49.01667000" + }, + { + "id": "13896", + "name": "Piranhas", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.42694000", + "longitude": "-51.82222000" + }, + { + "id": "13914", + "name": "Pirenópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.85072000", + "longitude": "-48.96087000" + }, + { + "id": "13916", + "name": "Pires do Rio", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.29972000", + "longitude": "-48.27944000" + }, + { + "id": "13933", + "name": "Planaltina", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.45278000", + "longitude": "-47.61417000" + }, + { + "id": "13963", + "name": "Pontalina", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.52500000", + "longitude": "-49.44722000" + }, + { + "id": "13983", + "name": "Porangatu", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.44083000", + "longitude": "-49.14861000" + }, + { + "id": "13989", + "name": "Porteirão", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.90236000", + "longitude": "-50.15667000" + }, + { + "id": "13991", + "name": "Portelândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.35610000", + "longitude": "-52.67861000" + }, + { + "id": "14030", + "name": "Posse", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.09306000", + "longitude": "-46.36944000" + }, + { + "id": "14108", + "name": "Professor Jamil", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.29408000", + "longitude": "-49.25572000" + }, + { + "id": "14154", + "name": "Quirinópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.44833000", + "longitude": "-50.45167000" + }, + { + "id": "14227", + "name": "Rialma", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.31500000", + "longitude": "-49.58444000" + }, + { + "id": "14228", + "name": "Rianápolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.47467000", + "longitude": "-49.44786000" + }, + { + "id": "14294", + "name": "Rio Quente", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.81769000", + "longitude": "-48.80202000" + }, + { + "id": "14300", + "name": "Rio Verde", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.71888000", + "longitude": "-51.04215000" + }, + { + "id": "14358", + "name": "Rubiataba", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.16444000", + "longitude": "-49.80333000" + }, + { + "id": "14411", + "name": "Sanclerlândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.28223000", + "longitude": "-50.37210000" + }, + { + "id": "14425", + "name": "Santa Bárbara de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.60228000", + "longitude": "-49.68624000" + }, + { + "id": "14447", + "name": "Santa Cruz de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.45147000", + "longitude": "-48.57101000" + }, + { + "id": "14465", + "name": "Santa Fé de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.62304000", + "longitude": "-51.13850000" + }, + { + "id": "14474", + "name": "Santa Helena de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.80542000", + "longitude": "-50.53885000" + }, + { + "id": "14481", + "name": "Santa Isabel", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.26996000", + "longitude": "-49.37797000" + }, + { + "id": "14532", + "name": "Santa Rita do Araguaia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.23294000", + "longitude": "-53.07676000" + }, + { + "id": "14534", + "name": "Santa Rita do Novo Destino", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.82658000", + "longitude": "-49.05935000" + }, + { + "id": "14542", + "name": "Santa Rosa de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.06989000", + "longitude": "-49.48147000" + }, + { + "id": "14554", + "name": "Santa Tereza de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.55111000", + "longitude": "-48.99503000" + }, + { + "id": "14561", + "name": "Santa Terezinha de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.31049000", + "longitude": "-49.71445000" + }, + { + "id": "14612", + "name": "Santo Antônio da Barra", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.51225000", + "longitude": "-50.63068000" + }, + { + "id": "14616", + "name": "Santo Antônio de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.50007000", + "longitude": "-49.31097000" + }, + { + "id": "14625", + "name": "Santo Antônio do Descoberto", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.08073000", + "longitude": "-48.29596000" + }, + { + "id": "14861", + "name": "São Domingos", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.39833000", + "longitude": "-46.31833000" + }, + { + "id": "14885", + "name": "São Francisco de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.95223000", + "longitude": "-49.24888000" + }, + { + "id": "15005", + "name": "São João d'Aliança", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.42907000", + "longitude": "-47.41407000" + }, + { + "id": "15012", + "name": "São João da Paraúna", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.82392000", + "longitude": "-50.35316000" + }, + { + "id": "15065", + "name": "São Luís de Montes Belos", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.52500000", + "longitude": "-50.37222000" + }, + { + "id": "15061", + "name": "São Luiz do Norte", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.89284000", + "longitude": "-49.28212000" + }, + { + "id": "15087", + "name": "São Miguel do Araguaia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.27500000", + "longitude": "-50.16278000" + }, + { + "id": "15094", + "name": "São Miguel do Passa Quatro", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.99955000", + "longitude": "-48.66188000" + }, + { + "id": "15100", + "name": "São Patrício", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.34426000", + "longitude": "-49.83291000" + }, + { + "id": "15157", + "name": "São Simão", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.01080000", + "longitude": "-50.60612000" + }, + { + "id": "15179", + "name": "Sítio d'Abadia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.75201000", + "longitude": "-46.27003000" + }, + { + "id": "14695", + "name": "Senador Canedo", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.70806000", + "longitude": "-49.09306000" + }, + { + "id": "14747", + "name": "Serranópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.27044000", + "longitude": "-52.24749000" + }, + { + "id": "14782", + "name": "Silvânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.65889000", + "longitude": "-48.60806000" + }, + { + "id": "14783", + "name": "Simolândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.43819000", + "longitude": "-46.59232000" + }, + { + "id": "15242", + "name": "Taquaral de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.05820000", + "longitude": "-49.59040000" + }, + { + "id": "15285", + "name": "Teresina de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.73244000", + "longitude": "-47.25266000" + }, + { + "id": "15288", + "name": "Terezópolis de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.42797000", + "longitude": "-49.07425000" + }, + { + "id": "15382", + "name": "Três Ranchos", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.36835000", + "longitude": "-47.79850000" + }, + { + "id": "15358", + "name": "Trindade", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.64944000", + "longitude": "-49.48889000" + }, + { + "id": "15367", + "name": "Trombas", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.40409000", + "longitude": "-48.77287000" + }, + { + "id": "15421", + "name": "Turvânia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.55807000", + "longitude": "-50.16909000" + }, + { + "id": "15417", + "name": "Turvelândia", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.79588000", + "longitude": "-50.29695000" + }, + { + "id": "15441", + "name": "Uirapuru", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.14128000", + "longitude": "-49.93396000" + }, + { + "id": "15472", + "name": "Uruaçu", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.42245000", + "longitude": "-49.06374000" + }, + { + "id": "15469", + "name": "Uruana", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.56368000", + "longitude": "-49.64028000" + }, + { + "id": "15485", + "name": "Urutaí", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.41664000", + "longitude": "-48.19794000" + }, + { + "id": "15504", + "name": "Valparaíso de Goiás", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.09899000", + "longitude": "-47.98813000" + }, + { + "id": "15519", + "name": "Varjão", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.07758000", + "longitude": "-49.62111000" + }, + { + "id": "15554", + "name": "Vianópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.85286000", + "longitude": "-48.45647000" + }, + { + "id": "15557", + "name": "Vicentinópolis", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.70714000", + "longitude": "-49.90768000" + }, + { + "id": "15566", + "name": "Vila Boa", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.97912000", + "longitude": "-47.09259000" + }, + { + "id": "15575", + "name": "Vila Propício", + "state_id": 2000, + "state_code": "GO", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.20221000", + "longitude": "-48.77569000" + }, + { + "id": "10463", + "name": "Açailândia", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.69214000", + "longitude": "-47.34302000" + }, + { + "id": "10088", + "name": "Afonso Cunha", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.21479000", + "longitude": "-43.29743000" + }, + { + "id": "10119", + "name": "Alcântara", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.32768000", + "longitude": "-44.50617000" + }, + { + "id": "10121", + "name": "Aldeias Altas", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.58522000", + "longitude": "-43.46277000" + }, + { + "id": "10154", + "name": "Altamira do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.14072000", + "longitude": "-45.46154000" + }, + { + "id": "10162", + "name": "Alto Alegre do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.20288000", + "longitude": "-44.41966000" + }, + { + "id": "10163", + "name": "Alto Alegre do Pindaré", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.83592000", + "longitude": "-46.03871000" + }, + { + "id": "10179", + "name": "Alto Parnaíba", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.53480000", + "longitude": "-46.13899000" + }, + { + "id": "10205", + "name": "Amapá do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.69470000", + "longitude": "-45.92994000" + }, + { + "id": "10210", + "name": "Amarante do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.56939000", + "longitude": "-46.64105000" + }, + { + "id": "10230", + "name": "Anajatuba", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.27409000", + "longitude": "-44.53278000" + }, + { + "id": "10237", + "name": "Anapurus", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.56073000", + "longitude": "-43.04307000" + }, + { + "id": "10295", + "name": "Apicum-Açu", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.48035000", + "longitude": "-45.08540000" + }, + { + "id": "10321", + "name": "Araguanã", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.04178000", + "longitude": "-45.75874000" + }, + { + "id": "10328", + "name": "Araioses", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.89792000", + "longitude": "-42.02298000" + }, + { + "id": "10332", + "name": "Arame", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.03155000", + "longitude": "-45.86324000" + }, + { + "id": "10352", + "name": "Arari", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.45361000", + "longitude": "-44.78000000" + }, + { + "id": "10440", + "name": "Atins", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.57017000", + "longitude": "-42.74229000" + }, + { + "id": "10461", + "name": "Axixá", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.84586000", + "longitude": "-44.10516000" + }, + { + "id": "15657", + "name": "Água Doce do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.91251000", + "longitude": "-42.14125000" + }, + { + "id": "10467", + "name": "Bacabal", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.29167000", + "longitude": "-44.79167000" + }, + { + "id": "10468", + "name": "Bacabeira", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.86866000", + "longitude": "-44.34505000" + }, + { + "id": "10469", + "name": "Bacuri", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.65142000", + "longitude": "-45.21995000" + }, + { + "id": "10470", + "name": "Bacurituba", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.64645000", + "longitude": "-44.65477000" + }, + { + "id": "10492", + "name": "Balsas", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.53250000", + "longitude": "-46.03556000" + }, + { + "id": "10574", + "name": "Barão de Grajaú", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.62978000", + "longitude": "-43.20317000" + }, + { + "id": "10534", + "name": "Barra do Corda", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.50556000", + "longitude": "-45.24333000" + }, + { + "id": "10554", + "name": "Barreirinhas", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.75136000", + "longitude": "-42.83432000" + }, + { + "id": "10598", + "name": "Bela Vista do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.79140000", + "longitude": "-45.29546000" + }, + { + "id": "10613", + "name": "Belágua", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.08799000", + "longitude": "-43.45673000" + }, + { + "id": "10623", + "name": "Benedito Leite", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.10697000", + "longitude": "-44.58763000" + }, + { + "id": "10631", + "name": "Bequimão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.44889000", + "longitude": "-44.78250000" + }, + { + "id": "10637", + "name": "Bernardo do Mearim", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.67175000", + "longitude": "-44.64279000" + }, + { + "id": "10672", + "name": "Boa Vista do Gurupi", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.73082000", + "longitude": "-46.19635000" + }, + { + "id": "10693", + "name": "Bom Jardim", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.77409000", + "longitude": "-46.21707000" + }, + { + "id": "10706", + "name": "Bom Jesus das Selvas", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.51333000", + "longitude": "-46.60686000" + }, + { + "id": "10718", + "name": "Bom Lugar", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.34667000", + "longitude": "-45.02098000" + }, + { + "id": "10788", + "name": "Brejo", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.68444000", + "longitude": "-42.75028000" + }, + { + "id": "10794", + "name": "Brejo de Areia", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.32450000", + "longitude": "-45.53970000" + }, + { + "id": "10823", + "name": "Buriti", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.94799000", + "longitude": "-42.85810000" + }, + { + "id": "10825", + "name": "Buriti Bravo", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.83722000", + "longitude": "-43.83361000" + }, + { + "id": "10830", + "name": "Buriticupu", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.51967000", + "longitude": "-46.37712000" + }, + { + "id": "10833", + "name": "Buritirana", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.59248000", + "longitude": "-46.99721000" + }, + { + "id": "10865", + "name": "Cachoeira Grande", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.12007000", + "longitude": "-43.93132000" + }, + { + "id": "10912", + "name": "Cajapió", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.86374000", + "longitude": "-44.57287000" + }, + { + "id": "10913", + "name": "Cajari", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.38514000", + "longitude": "-45.02197000" + }, + { + "id": "10961", + "name": "Campestre do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.15156000", + "longitude": "-47.23427000" + }, + { + "id": "11055", + "name": "Cantanhede", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.63333000", + "longitude": "-44.37667000" + }, + { + "id": "11077", + "name": "Capinzal do Norte", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.74767000", + "longitude": "-44.25167000" + }, + { + "id": "11161", + "name": "Carolina", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.33561000", + "longitude": "-47.46218000" + }, + { + "id": "11167", + "name": "Carutapera", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.18025000", + "longitude": "-45.95966000" + }, + { + "id": "11218", + "name": "Caxias", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.85889000", + "longitude": "-43.35611000" + }, + { + "id": "11546", + "name": "Cândido Mendes", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.44667000", + "longitude": "-45.71667000" + }, + { + "id": "11228", + "name": "Cedral", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.96086000", + "longitude": "-44.57424000" + }, + { + "id": "11240", + "name": "Central do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.25521000", + "longitude": "-44.84104000" + }, + { + "id": "11243", + "name": "Centro do Guilherme", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.28072000", + "longitude": "-46.07349000" + }, + { + "id": "11242", + "name": "Centro Novo do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.31669000", + "longitude": "-46.79364000" + }, + { + "id": "11265", + "name": "Chapadinha", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.74167000", + "longitude": "-43.36028000" + }, + { + "id": "11292", + "name": "Cidelândia", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.05234000", + "longitude": "-47.86857000" + }, + { + "id": "11314", + "name": "Codó", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.45528000", + "longitude": "-43.88556000" + }, + { + "id": "11315", + "name": "Coelho Neto", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.25667000", + "longitude": "-43.01278000" + }, + { + "id": "11322", + "name": "Colinas", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.02583000", + "longitude": "-44.24917000" + }, + { + "id": "11359", + "name": "Conceição do Lago-Açu", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.73591000", + "longitude": "-44.79669000" + }, + { + "id": "11413", + "name": "Coroatá", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.13000000", + "longitude": "-44.12417000" + }, + { + "id": "11535", + "name": "Cururupu", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.82833000", + "longitude": "-44.86833000" + }, + { + "id": "11565", + "name": "Davinópolis", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.57008000", + "longitude": "-47.30640000" + }, + { + "id": "11633", + "name": "Dom Pedro", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.03749000", + "longitude": "-44.43857000" + }, + { + "id": "11668", + "name": "Duque Bacelar", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.11143000", + "longitude": "-43.03176000" + }, + { + "id": "11730", + "name": "Esperantinópolis", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.86667000", + "longitude": "-44.70833000" + }, + { + "id": "11747", + "name": "Estreito", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.78333000", + "longitude": "-43.25000000" + }, + { + "id": "11792", + "name": "Feira Nova do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.99561000", + "longitude": "-46.64999000" + }, + { + "id": "11804", + "name": "Fernando Falcão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.35293000", + "longitude": "-45.32810000" + }, + { + "id": "11853", + "name": "Formosa da Serra Negra", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.69535000", + "longitude": "-46.19540000" + }, + { + "id": "11866", + "name": "Fortaleza dos Nogueiras", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.86722000", + "longitude": "-46.02100000" + }, + { + "id": "11869", + "name": "Fortuna", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.73333000", + "longitude": "-44.15833000" + }, + { + "id": "11954", + "name": "Godofredo Viana", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.27605000", + "longitude": "-45.76550000" + }, + { + "id": "11975", + "name": "Gonçalves Dias", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.15671000", + "longitude": "-44.28658000" + }, + { + "id": "11978", + "name": "Governador Archer", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.98399000", + "longitude": "-44.20513000" + }, + { + "id": "11982", + "name": "Governador Edison Lobão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.74311000", + "longitude": "-47.32545000" + }, + { + "id": "11983", + "name": "Governador Eugênio Barros", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.42581000", + "longitude": "-43.88031000" + }, + { + "id": "11986", + "name": "Governador Luiz Rocha", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.52826000", + "longitude": "-44.11154000" + }, + { + "id": "11988", + "name": "Governador Newton Bello", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.36796000", + "longitude": "-45.65707000" + }, + { + "id": "11989", + "name": "Governador Nunes Freire", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.00992000", + "longitude": "-45.84278000" + }, + { + "id": "12004", + "name": "Graça Aranha", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.44492000", + "longitude": "-44.25169000" + }, + { + "id": "11992", + "name": "Grajaú", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.81944000", + "longitude": "-46.13861000" + }, + { + "id": "12082", + "name": "Guimarães", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.11990000", + "longitude": "-44.63479000" + }, + { + "id": "12112", + "name": "Humberto de Campos", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.59833000", + "longitude": "-43.46111000" + }, + { + "id": "12170", + "name": "Icatu", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.77583000", + "longitude": "-44.06583000" + }, + { + "id": "12185", + "name": "Igarapé do Meio", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.72514000", + "longitude": "-45.10975000" + }, + { + "id": "12183", + "name": "Igarapé Grande", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.64974000", + "longitude": "-44.83905000" + }, + { + "id": "12226", + "name": "Imperatriz", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.52639000", + "longitude": "-47.49167000" + }, + { + "id": "12359", + "name": "Itaipava do Grajaú", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.22087000", + "longitude": "-45.78512000" + }, + { + "id": "12406", + "name": "Itapecuru Mirim", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.39250000", + "longitude": "-44.35861000" + }, + { + "id": "12474", + "name": "Itinga do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.52832000", + "longitude": "-47.48859000" + }, + { + "id": "12603", + "name": "Jatobá", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.86233000", + "longitude": "-44.26917000" + }, + { + "id": "12613", + "name": "Jenipapo dos Vieiras", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.50699000", + "longitude": "-45.54241000" + }, + { + "id": "12662", + "name": "João Lisboa", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.22723000", + "longitude": "-47.18260000" + }, + { + "id": "12648", + "name": "Joselândia", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.00747000", + "longitude": "-44.73158000" + }, + { + "id": "12682", + "name": "Junco do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.94176000", + "longitude": "-46.11711000" + }, + { + "id": "12729", + "name": "Lago da Pedra", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.28674000", + "longitude": "-45.23824000" + }, + { + "id": "12730", + "name": "Lago do Junco", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.47033000", + "longitude": "-44.91005000" + }, + { + "id": "12731", + "name": "Lago dos Rodrigues", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.61099000", + "longitude": "-44.97837000" + }, + { + "id": "12728", + "name": "Lago Verde", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.99073000", + "longitude": "-44.88312000" + }, + { + "id": "12760", + "name": "Lagoa do Mato", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.95535000", + "longitude": "-43.63105000" + }, + { + "id": "12740", + "name": "Lagoa Grande do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.93168000", + "longitude": "-45.34950000" + }, + { + "id": "12778", + "name": "Lajeado Novo", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.10634000", + "longitude": "-46.90224000" + }, + { + "id": "12827", + "name": "Lima Campos", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.55295000", + "longitude": "-44.47986000" + }, + { + "id": "12853", + "name": "Loreto", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.11921000", + "longitude": "-45.23138000" + }, + { + "id": "12880", + "name": "Luís Domingues", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.26964000", + "longitude": "-45.83792000" + }, + { + "id": "12912", + "name": "Magalhães de Almeida", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.32329000", + "longitude": "-42.12855000" + }, + { + "id": "12970", + "name": "Maracaçumé", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.04278000", + "longitude": "-45.95917000" + }, + { + "id": "12976", + "name": "Marajá do Sena", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.70009000", + "longitude": "-45.63144000" + }, + { + "id": "12978", + "name": "Maranhãozinho", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.45247000", + "longitude": "-45.98846000" + }, + { + "id": "13047", + "name": "Mata Roma", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.58219000", + "longitude": "-43.23178000" + }, + { + "id": "13078", + "name": "Matões", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.41542000", + "longitude": "-43.40049000" + }, + { + "id": "13079", + "name": "Matões do Norte", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.77876000", + "longitude": "-44.40753000" + }, + { + "id": "13060", + "name": "Matinha", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.10056000", + "longitude": "-45.03361000" + }, + { + "id": "13116", + "name": "Milagres do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.50554000", + "longitude": "-42.86468000" + }, + { + "id": "13134", + "name": "Mirador", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.47266000", + "longitude": "-45.11312000" + }, + { + "id": "13139", + "name": "Miranda do Norte", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.53142000", + "longitude": "-44.52685000" + }, + { + "id": "13156", + "name": "Mirinzal", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.04774000", + "longitude": "-44.77403000" + }, + { + "id": "13225", + "name": "Monção", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.53292000", + "longitude": "-45.30690000" + }, + { + "id": "13219", + "name": "Montes Altos", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.83333000", + "longitude": "-47.06667000" + }, + { + "id": "13251", + "name": "Morros", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.96159000", + "longitude": "-43.87725000" + }, + { + "id": "13326", + "name": "Nina Rodrigues", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.46375000", + "longitude": "-43.77165000" + }, + { + "id": "13369", + "name": "Nova Colinas", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.26656000", + "longitude": "-46.29184000" + }, + { + "id": "13392", + "name": "Nova Iorque", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.74961000", + "longitude": "-44.03977000" + }, + { + "id": "13412", + "name": "Nova Olinda do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.84498000", + "longitude": "-45.92010000" + }, + { + "id": "13496", + "name": "Olho d'Água das Cunhãs", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.02629000", + "longitude": "-45.04831000" + }, + { + "id": "13503", + "name": "Olinda Nova do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.99757000", + "longitude": "-44.96574000" + }, + { + "id": "13742", + "name": "Paço do Lumiar", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.48019000", + "longitude": "-44.11054000" + }, + { + "id": "13601", + "name": "Palmeirândia", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.65916000", + "longitude": "-45.06713000" + }, + { + "id": "13629", + "name": "Paraibano", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.40952000", + "longitude": "-43.84714000" + }, + { + "id": "13681", + "name": "Parnarama", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.52914000", + "longitude": "-43.60353000" + }, + { + "id": "13693", + "name": "Passagem Franca", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.10747000", + "longitude": "-43.75355000" + }, + { + "id": "13702", + "name": "Pastos Bons", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.76600000", + "longitude": "-44.24234000" + }, + { + "id": "13724", + "name": "Paulino Neves", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.88588000", + "longitude": "-42.58808000" + }, + { + "id": "13736", + "name": "Paulo Ramos", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.44876000", + "longitude": "-45.23758000" + }, + { + "id": "13768", + "name": "Pedreiras", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.58272000", + "longitude": "-44.59924000" + }, + { + "id": "13785", + "name": "Pedro do Rosário", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.97390000", + "longitude": "-45.45250000" + }, + { + "id": "13793", + "name": "Penalva", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.29417000", + "longitude": "-45.17361000" + }, + { + "id": "13808", + "name": "Peri Mirim", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.54231000", + "longitude": "-44.93384000" + }, + { + "id": "13811", + "name": "Peritoró", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.44047000", + "longitude": "-44.28178000" + }, + { + "id": "13849", + "name": "Pindaré Mirim", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.60833000", + "longitude": "-45.34333000" + }, + { + "id": "13850", + "name": "Pindaré-Mirim", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.62515000", + "longitude": "-45.39384000" + }, + { + "id": "13868", + "name": "Pinheiro", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.69907000", + "longitude": "-45.12244000" + }, + { + "id": "13879", + "name": "Pio XII", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.89451000", + "longitude": "-45.16617000" + }, + { + "id": "13898", + "name": "Pirapemas", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.77957000", + "longitude": "-44.27746000" + }, + { + "id": "14055", + "name": "Poção de Pedras", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.78496000", + "longitude": "-44.91232000" + }, + { + "id": "14007", + "name": "Porto Franco", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.34635000", + "longitude": "-47.07258000" + }, + { + "id": "14016", + "name": "Porto Rico do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.85517000", + "longitude": "-44.60930000" + }, + { + "id": "14079", + "name": "Presidente Dutra", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.30484000", + "longitude": "-44.50508000" + }, + { + "id": "14084", + "name": "Presidente Juscelino", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.08609000", + "longitude": "-44.07739000" + }, + { + "id": "14092", + "name": "Presidente Médici", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.38729000", + "longitude": "-45.84126000" + }, + { + "id": "14096", + "name": "Presidente Sarney", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.62072000", + "longitude": "-45.43931000" + }, + { + "id": "14098", + "name": "Presidente Vargas", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.42385000", + "longitude": "-44.01015000" + }, + { + "id": "14104", + "name": "Primeira Cruz", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.65082000", + "longitude": "-43.32895000" + }, + { + "id": "14174", + "name": "Raposa", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.51667000", + "longitude": "-44.18333000" + }, + { + "id": "14220", + "name": "Riachão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.36194000", + "longitude": "-46.61722000" + }, + { + "id": "14229", + "name": "Ribamar Fiquene", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.93436000", + "longitude": "-47.29792000" + }, + { + "id": "14350", + "name": "Rosário", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.96001000", + "longitude": "-44.17429000" + }, + { + "id": "14408", + "name": "Sambaíba", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.61486000", + "longitude": "-45.67749000" + }, + { + "id": "14463", + "name": "Santa Filomena do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.48267000", + "longitude": "-44.55176000" + }, + { + "id": "14470", + "name": "Santa Helena", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.42660000", + "longitude": "-45.38362000" + }, + { + "id": "14477", + "name": "Santa Inês", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.75659000", + "longitude": "-45.40393000" + }, + { + "id": "14491", + "name": "Santa Luzia", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.18778000", + "longitude": "-45.87797000" + }, + { + "id": "14496", + "name": "Santa Luzia do Paruá", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.54684000", + "longitude": "-45.75943000" + }, + { + "id": "14523", + "name": "Santa Quitéria do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.30241000", + "longitude": "-42.95484000" + }, + { + "id": "14524", + "name": "Santa Rita", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.16346000", + "longitude": "-44.32883000" + }, + { + "id": "14587", + "name": "Santana do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.13508000", + "longitude": "-42.74876000" + }, + { + "id": "14606", + "name": "Santo Amaro do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.62026000", + "longitude": "-43.16505000" + }, + { + "id": "14642", + "name": "Santo Antônio dos Lopes", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.82567000", + "longitude": "-44.47506000" + }, + { + "id": "14674", + "name": "Satubinha", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.84804000", + "longitude": "-45.25543000" + }, + { + "id": "14832", + "name": "São Benedito do Rio Preto", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.33098000", + "longitude": "-43.74036000" + }, + { + "id": "14835", + "name": "São Bento", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.69583000", + "longitude": "-44.82139000" + }, + { + "id": "14845", + "name": "São Bernardo", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.43614000", + "longitude": "-42.40555000" + }, + { + "id": "14868", + "name": "São Domingos do Azeitão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.85798000", + "longitude": "-44.58281000" + }, + { + "id": "14871", + "name": "São Domingos do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.57583000", + "longitude": "-44.38528000" + }, + { + "id": "14900", + "name": "São Félix de Balsas", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.94884000", + "longitude": "-44.83461000" + }, + { + "id": "14890", + "name": "São Francisco do Brejão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.13880000", + "longitude": "-47.34887000" + }, + { + "id": "14894", + "name": "São Francisco do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.23353000", + "longitude": "-42.95249000" + }, + { + "id": "15000", + "name": "São João Batista", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.95528000", + "longitude": "-44.80694000" + }, + { + "id": "15028", + "name": "São João do Carú", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.55923000", + "longitude": "-46.39242000" + }, + { + "id": "15037", + "name": "São João do Paraíso", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.40174000", + "longitude": "-46.88929000" + }, + { + "id": "15044", + "name": "São João do Soter", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.96497000", + "longitude": "-43.73953000" + }, + { + "id": "15049", + "name": "São João dos Patos", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.49500000", + "longitude": "-43.70222000" + }, + { + "id": "14957", + "name": "São José de Ribamar", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.56194000", + "longitude": "-44.05417000" + }, + { + "id": "14992", + "name": "São José dos Basílios", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.05917000", + "longitude": "-44.59458000" + }, + { + "id": "15063", + "name": "São Luís", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.52972000", + "longitude": "-44.30278000" + }, + { + "id": "15064", + "name": "São Luís Gonzaga do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.37871000", + "longitude": "-44.71595000" + }, + { + "id": "15076", + "name": "São Mateus do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.04167000", + "longitude": "-44.47500000" + }, + { + "id": "15112", + "name": "São Pedro da Água Branca", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.16149000", + "longitude": "-48.36104000" + }, + { + "id": "15123", + "name": "São Pedro dos Crentes", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.81958000", + "longitude": "-46.70736000" + }, + { + "id": "15127", + "name": "São Raimundo das Mangabeiras", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.02194000", + "longitude": "-45.48111000" + }, + { + "id": "15128", + "name": "São Raimundo do Doca Bezerra", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.11025000", + "longitude": "-45.06894000" + }, + { + "id": "15129", + "name": "São Roberto", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.98137000", + "longitude": "-44.99100000" + }, + { + "id": "15170", + "name": "São Vicente Ferrer", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.87717000", + "longitude": "-44.93960000" + }, + { + "id": "15176", + "name": "Sítio Novo", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.15590000", + "longitude": "-46.67216000" + }, + { + "id": "14693", + "name": "Senador Alexandre Costa", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.29207000", + "longitude": "-43.87491000" + }, + { + "id": "14703", + "name": "Senador La Rocque", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.42661000", + "longitude": "-47.17194000" + }, + { + "id": "14745", + "name": "Serrano do Maranhão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.85659000", + "longitude": "-45.08514000" + }, + { + "id": "14818", + "name": "Sucupira do Norte", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.46683000", + "longitude": "-44.28011000" + }, + { + "id": "14819", + "name": "Sucupira do Riachão", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.46791000", + "longitude": "-43.49722000" + }, + { + "id": "15258", + "name": "Tasso Fragoso", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.28599000", + "longitude": "-45.85295000" + }, + { + "id": "15313", + "name": "Timbiras", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.19692000", + "longitude": "-43.82569000" + }, + { + "id": "15318", + "name": "Timon", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.19778000", + "longitude": "-42.88047000" + }, + { + "id": "15366", + "name": "Trizidela do Vale", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.52222000", + "longitude": "-44.61751000" + }, + { + "id": "15390", + "name": "Tufilândia", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.76611000", + "longitude": "-45.55606000" + }, + { + "id": "15396", + "name": "Tuntum", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.60041000", + "longitude": "-44.85537000" + }, + { + "id": "15410", + "name": "Turiaçu", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.66333000", + "longitude": "-45.37167000" + }, + { + "id": "15411", + "name": "Turilândia", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.12411000", + "longitude": "-45.34721000" + }, + { + "id": "15422", + "name": "Tutóia", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.76194000", + "longitude": "-42.27444000" + }, + { + "id": "15467", + "name": "Urbano Santos", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.37970000", + "longitude": "-43.38142000" + }, + { + "id": "15512", + "name": "Vargem Grande", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.60095000", + "longitude": "-43.85169000" + }, + { + "id": "15552", + "name": "Viana", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.19698000", + "longitude": "-45.00551000" + }, + { + "id": "15573", + "name": "Vila Nova dos Martírios", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.06154000", + "longitude": "-48.06797000" + }, + { + "id": "15603", + "name": "Vitória do Mearim", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.46222000", + "longitude": "-44.87056000" + }, + { + "id": "15596", + "name": "Vitorino Freire", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.21879000", + "longitude": "-45.31980000" + }, + { + "id": "15647", + "name": "Zé Doca", + "state_id": 2015, + "state_code": "MA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.22589000", + "longitude": "-46.05729000" + }, + { + "id": "10077", + "name": "Acorizal", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.17336000", + "longitude": "-56.30434000" + }, + { + "id": "10150", + "name": "Alta Floresta", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.87556000", + "longitude": "-56.08611000" + }, + { + "id": "10165", + "name": "Alto Araguaia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.48438000", + "longitude": "-53.40594000" + }, + { + "id": "10167", + "name": "Alto Boa Vista", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.82825000", + "longitude": "-51.74596000" + }, + { + "id": "10170", + "name": "Alto Garças", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.81961000", + "longitude": "-53.62461000" + }, + { + "id": "10174", + "name": "Alto Paraguai", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.76851000", + "longitude": "-56.72113000" + }, + { + "id": "10184", + "name": "Alto Taquari", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.76618000", + "longitude": "-53.28010000" + }, + { + "id": "10293", + "name": "Apiacás", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.03962000", + "longitude": "-57.75949000" + }, + { + "id": "10319", + "name": "Araguaiana", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.73389000", + "longitude": "-51.83139000" + }, + { + "id": "10320", + "name": "Araguainha", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.78427000", + "longitude": "-53.07981000" + }, + { + "id": "10343", + "name": "Araputanga", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.17477000", + "longitude": "-58.49729000" + }, + { + "id": "10390", + "name": "Arenápolis", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.45028000", + "longitude": "-56.84611000" + }, + { + "id": "10395", + "name": "Aripuanã", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.16667000", + "longitude": "-60.63333000" + }, + { + "id": "15649", + "name": "Água Boa", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.13584000", + "longitude": "-52.49093000" + }, + { + "id": "10575", + "name": "Barão de Melgaço", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.19444000", + "longitude": "-55.96750000" + }, + { + "id": "10531", + "name": "Barra do Bugres", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.07250000", + "longitude": "-57.18111000" + }, + { + "id": "10535", + "name": "Barra do Garças", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.89000000", + "longitude": "-52.25667000" + }, + { + "id": "10709", + "name": "Bom Jesus do Araguaia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.27879000", + "longitude": "-51.75156000" + }, + { + "id": "10775", + "name": "Brasnorte", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.24899000", + "longitude": "-58.00289000" + }, + { + "id": "10975", + "name": "Campinápolis", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.30712000", + "longitude": "-53.15586000" + }, + { + "id": "11001", + "name": "Campo Novo do Parecis", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.62657000", + "longitude": "-58.02125000" + }, + { + "id": "11004", + "name": "Campo Verde", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.37926000", + "longitude": "-54.92950000" + }, + { + "id": "11017", + "name": "Campos de Júlio", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.63297000", + "longitude": "-59.17849000" + }, + { + "id": "11022", + "name": "CanaBrava do Norte", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.18113000", + "longitude": "-51.86378000" + }, + { + "id": "11026", + "name": "Canarana", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.17747000", + "longitude": "-52.37104000" + }, + { + "id": "11137", + "name": "Carlinda", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.03792000", + "longitude": "-55.85086000" + }, + { + "id": "11185", + "name": "Castanheira", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.87932000", + "longitude": "-58.65100000" + }, + { + "id": "11542", + "name": "Cáceres", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.42263000", + "longitude": "-57.71082000" + }, + { + "id": "11264", + "name": "Chapada dos Guimarães", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.02015000", + "longitude": "-55.53735000" + }, + { + "id": "11301", + "name": "Cláudia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.45086000", + "longitude": "-54.99828000" + }, + { + "id": "11310", + "name": "Cocalinho", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.80273000", + "longitude": "-51.15344000" + }, + { + "id": "11333", + "name": "Colíder", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.56333000", + "longitude": "-55.44573000" + }, + { + "id": "11327", + "name": "Colniza", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.29188000", + "longitude": "-60.30457000" + }, + { + "id": "11343", + "name": "Comodoro", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.32583000", + "longitude": "-59.82145000" + }, + { + "id": "11376", + "name": "Confresa", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.30959000", + "longitude": "-51.73651000" + }, + { + "id": "11383", + "name": "Conquista D'oeste", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.61506000", + "longitude": "-59.26741000" + }, + { + "id": "11454", + "name": "Cotriguaçu", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.50334000", + "longitude": "-58.79134000" + }, + { + "id": "11507", + "name": "Cuiabá", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.41924000", + "longitude": "-55.89023000" + }, + { + "id": "11539", + "name": "Curvelândia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.63715000", + "longitude": "-57.84548000" + }, + { + "id": "11572", + "name": "Denise", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.75742000", + "longitude": "-56.95115000" + }, + { + "id": "11589", + "name": "Diamantino", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.02239000", + "longitude": "-56.77742000" + }, + { + "id": "11622", + "name": "Dom Aquino", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.72098000", + "longitude": "-54.83043000" + }, + { + "id": "11800", + "name": "Feliz Natal", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.93599000", + "longitude": "-54.23925000" + }, + { + "id": "11819", + "name": "Figueirópolis d'Oeste", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.48700000", + "longitude": "-58.69723000" + }, + { + "id": "11932", + "name": "Gaúcha do Norte", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.99365000", + "longitude": "-53.52264000" + }, + { + "id": "11935", + "name": "General Carneiro", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.51539000", + "longitude": "-53.29790000" + }, + { + "id": "11951", + "name": "Glória d'Oeste", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.91309000", + "longitude": "-58.30449000" + }, + { + "id": "12049", + "name": "Guarantã do Norte", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.75597000", + "longitude": "-54.72890000" + }, + { + "id": "12083", + "name": "Guiratinga", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.34534000", + "longitude": "-53.76177000" + }, + { + "id": "12242", + "name": "Indiavaí", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.31484000", + "longitude": "-58.62960000" + }, + { + "id": "12277", + "name": "Ipiranga do Norte", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.24000000", + "longitude": "-56.14000000" + }, + { + "id": "12470", + "name": "Itaúba", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.09537000", + "longitude": "-55.58848000" + }, + { + "id": "12391", + "name": "Itanhangá", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.17000000", + "longitude": "-56.68000000" + }, + { + "id": "12475", + "name": "Itiquira", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.39441000", + "longitude": "-54.76988000" + }, + { + "id": "12524", + "name": "Jaciara", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.96528000", + "longitude": "-54.96833000" + }, + { + "id": "12562", + "name": "Jangada", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.33758000", + "longitude": "-56.54282000" + }, + { + "id": "12606", + "name": "Jauru", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.32452000", + "longitude": "-58.84580000" + }, + { + "id": "12668", + "name": "Juara", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.09828000", + "longitude": "-57.49159000" + }, + { + "id": "12715", + "name": "Juína", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.40329000", + "longitude": "-59.50810000" + }, + { + "id": "12701", + "name": "Juruena", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.28992000", + "longitude": "-58.65303000" + }, + { + "id": "12704", + "name": "Juscimeira", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.20525000", + "longitude": "-54.88029000" + }, + { + "id": "12789", + "name": "Lambari d'Oeste", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.65457000", + "longitude": "-57.78813000" + }, + { + "id": "12856", + "name": "Lucas", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.33333000", + "longitude": "-55.93333000" + }, + { + "id": "12857", + "name": "Lucas do Rio Verde", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.04098000", + "longitude": "-56.15577000" + }, + { + "id": "12860", + "name": "Luciara", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.01415000", + "longitude": "-50.94299000" + }, + { + "id": "12993", + "name": "Marcelândia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.00372000", + "longitude": "-54.13318000" + }, + { + "id": "13074", + "name": "Matupá", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.01532000", + "longitude": "-54.35496000" + }, + { + "id": "13150", + "name": "Mirassol d'Oeste", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.63523000", + "longitude": "-58.00508000" + }, + { + "id": "13332", + "name": "Nobres", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.72028000", + "longitude": "-56.32750000" + }, + { + "id": "13335", + "name": "Nortelândia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.45472000", + "longitude": "-56.80278000" + }, + { + "id": "13342", + "name": "Nossa Senhora do Livramento", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.93447000", + "longitude": "-56.54590000" + }, + { + "id": "13355", + "name": "Nova Bandeirantes", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.68571000", + "longitude": "-58.01840000" + }, + { + "id": "13359", + "name": "Nova Brasilândia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.75742000", + "longitude": "-55.10534000" + }, + { + "id": "13365", + "name": "Nova Canaã do Norte", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.71987000", + "longitude": "-56.03436000" + }, + { + "id": "13385", + "name": "Nova Guarita", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.28525000", + "longitude": "-55.33730000" + }, + { + "id": "13396", + "name": "Nova Lacerda", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.26732000", + "longitude": "-59.79280000" + }, + { + "id": "13402", + "name": "Nova Marilândia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.31258000", + "longitude": "-57.26088000" + }, + { + "id": "13403", + "name": "Nova Maringá", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.98384000", + "longitude": "-57.19167000" + }, + { + "id": "13404", + "name": "Nova Monte Verde", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.99743000", + "longitude": "-57.29768000" + }, + { + "id": "13405", + "name": "Nova Mutum", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.58906000", + "longitude": "-56.15193000" + }, + { + "id": "13407", + "name": "Nova Nazaré", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.14648000", + "longitude": "-51.79821000" + }, + { + "id": "13414", + "name": "Nova Olímpia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.79722000", + "longitude": "-57.28806000" + }, + { + "id": "13432", + "name": "Nova Santa Helena", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.92036000", + "longitude": "-54.90636000" + }, + { + "id": "13441", + "name": "Nova Ubiratã", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.68233000", + "longitude": "-54.47729000" + }, + { + "id": "13448", + "name": "Nova Xavantina", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.66463000", + "longitude": "-52.35558000" + }, + { + "id": "13463", + "name": "Novo Horizonte do Norte", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.37917000", + "longitude": "-57.28359000" + }, + { + "id": "13470", + "name": "Novo Mundo", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.83661000", + "longitude": "-55.31349000" + }, + { + "id": "13478", + "name": "Novo Santo Antônio", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.32606000", + "longitude": "-50.91431000" + }, + { + "id": "13479", + "name": "Novo São Joaquim", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.09570000", + "longitude": "-53.29575000" + }, + { + "id": "13646", + "name": "Paranaíta", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.56371000", + "longitude": "-56.76536000" + }, + { + "id": "13643", + "name": "Paranatinga", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.34326000", + "longitude": "-54.01552000" + }, + { + "id": "13757", + "name": "Pedra Preta", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.76381000", + "longitude": "-54.16343000" + }, + { + "id": "13789", + "name": "Peixoto de Azevedo", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.14722000", + "longitude": "-53.58639000" + }, + { + "id": "13942", + "name": "Planalto da Serra", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.56524000", + "longitude": "-54.67771000" + }, + { + "id": "13947", + "name": "Poconé", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.25667000", + "longitude": "-56.62278000" + }, + { + "id": "13961", + "name": "Pontal do Araguaia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.96755000", + "longitude": "-52.75421000" + }, + { + "id": "13969", + "name": "Ponte Branca", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.65050000", + "longitude": "-52.90238000" + }, + { + "id": "13974", + "name": "Pontes e Lacerda", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.22611000", + "longitude": "-59.33528000" + }, + { + "id": "13995", + "name": "Porto Alegre do Norte", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.85081000", + "longitude": "-51.76934000" + }, + { + "id": "14028", + "name": "Porto dos Gaúchos", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.76043000", + "longitude": "-56.85721000" + }, + { + "id": "14002", + "name": "Porto Esperidião", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.88622000", + "longitude": "-58.97107000" + }, + { + "id": "14003", + "name": "Porto Estrela", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.51966000", + "longitude": "-57.22942000" + }, + { + "id": "14042", + "name": "Poxoréo", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.83722000", + "longitude": "-54.38917000" + }, + { + "id": "14043", + "name": "Poxoréu", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.75635000", + "longitude": "-54.11866000" + }, + { + "id": "14103", + "name": "Primavera do Leste", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.14064000", + "longitude": "-54.19501000" + }, + { + "id": "14145", + "name": "Querência", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.32120000", + "longitude": "-52.54760000" + }, + { + "id": "14200", + "name": "Reserva do Cabaçal", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.92946000", + "longitude": "-58.45849000" + }, + { + "id": "14239", + "name": "Ribeirão Cascalheira", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.73516000", + "longitude": "-51.71456000" + }, + { + "id": "14252", + "name": "Ribeirãozinho", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.50143000", + "longitude": "-52.75910000" + }, + { + "id": "14264", + "name": "Rio Branco", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.31117000", + "longitude": "-58.12450000" + }, + { + "id": "14343", + "name": "Rondolândia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.27573000", + "longitude": "-61.06224000" + }, + { + "id": "14346", + "name": "Rondonópolis", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.47083000", + "longitude": "-54.63556000" + }, + { + "id": "14351", + "name": "Rosário Oeste", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.83611000", + "longitude": "-56.42750000" + }, + { + "id": "14400", + "name": "Salto do Céu", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.13439000", + "longitude": "-57.95902000" + }, + { + "id": "14431", + "name": "Santa Carmem", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.90602000", + "longitude": "-54.80769000" + }, + { + "id": "14457", + "name": "Santa Cruz do Xingu", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.15595000", + "longitude": "-52.49799000" + }, + { + "id": "14539", + "name": "Santa Rita do Trivelato", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.71416000", + "longitude": "-55.40171000" + }, + { + "id": "14560", + "name": "Santa Terezinha", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.39138000", + "longitude": "-50.83261000" + }, + { + "id": "14602", + "name": "Santo Afonso", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.46134000", + "longitude": "-57.38575000" + }, + { + "id": "14631", + "name": "Santo Antônio do Leste", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.82454000", + "longitude": "-53.74136000" + }, + { + "id": "14632", + "name": "Santo Antônio do Leverger", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.78576000", + "longitude": "-55.31327000" + }, + { + "id": "14657", + "name": "Sapezal", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.16448000", + "longitude": "-58.68788000" + }, + { + "id": "14902", + "name": "São Félix do Araguaia", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.44230000", + "longitude": "-52.13916000" + }, + { + "id": "14982", + "name": "São José do Povo", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.44547000", + "longitude": "-54.28499000" + }, + { + "id": "14983", + "name": "São José do Rio Claro", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.52704000", + "longitude": "-56.85065000" + }, + { + "id": "14990", + "name": "São José do Xingu", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.72794000", + "longitude": "-52.62112000" + }, + { + "id": "14996", + "name": "São José dos Quatro Marcos", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.56664000", + "longitude": "-58.29717000" + }, + { + "id": "15109", + "name": "São Pedro da Cipa", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.95162000", + "longitude": "-54.77958000" + }, + { + "id": "14731", + "name": "Serra Nova Dourada", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.02901000", + "longitude": "-51.33412000" + }, + { + "id": "14791", + "name": "Sinop", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.86417000", + "longitude": "-55.50250000" + }, + { + "id": "14812", + "name": "Sorriso", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.68167000", + "longitude": "-55.69953000" + }, + { + "id": "15182", + "name": "Tabaporã", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.05295000", + "longitude": "-56.64189000" + }, + { + "id": "15217", + "name": "Tangará da Serra", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.52323000", + "longitude": "-58.09862000" + }, + { + "id": "15239", + "name": "Tapurah", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.74260000", + "longitude": "-56.46149000" + }, + { + "id": "15293", + "name": "Terra Nova do Norte", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.49541000", + "longitude": "-54.95547000" + }, + { + "id": "15299", + "name": "Tesouro", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.94904000", + "longitude": "-53.43342000" + }, + { + "id": "15338", + "name": "Torixoréu", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.27591000", + "longitude": "-52.88117000" + }, + { + "id": "15462", + "name": "União do Sul", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.47198000", + "longitude": "-54.18806000" + }, + { + "id": "15493", + "name": "Vale de São Domingos", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.97590000", + "longitude": "-58.96377000" + }, + { + "id": "15618", + "name": "Várzea Grande", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.56582000", + "longitude": "-56.24391000" + }, + { + "id": "15531", + "name": "Vera", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.46612000", + "longitude": "-55.34810000" + }, + { + "id": "15565", + "name": "Vila Bela da Santíssima Trindade", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.89148000", + "longitude": "-60.05777000" + }, + { + "id": "15576", + "name": "Vila Rica", + "state_id": 2011, + "state_code": "MT", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.13413000", + "longitude": "-51.41369000" + }, + { + "id": "10117", + "name": "Alcinópolis", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.19955000", + "longitude": "-53.75814000" + }, + { + "id": "10202", + "name": "Amambai", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.12710000", + "longitude": "-54.95790000" + }, + { + "id": "10238", + "name": "Anastácio", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.76269000", + "longitude": "-55.73052000" + }, + { + "id": "10239", + "name": "Anaurilândia", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.14199000", + "longitude": "-52.72011000" + }, + { + "id": "10259", + "name": "Angélica", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.02780000", + "longitude": "-53.86668000" + }, + { + "id": "10277", + "name": "Antônio João", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.20114000", + "longitude": "-55.93897000" + }, + { + "id": "10290", + "name": "Aparecida do Taboado", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.00909000", + "longitude": "-51.34632000" + }, + { + "id": "10305", + "name": "Aquidauana", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.45790000", + "longitude": "-55.83801000" + }, + { + "id": "10329", + "name": "Aral Moreira", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.90946000", + "longitude": "-55.37007000" + }, + { + "id": "15654", + "name": "Água Clara", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.89787000", + "longitude": "-52.95089000" + }, + { + "id": "10501", + "name": "Bandeirantes", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.80863000", + "longitude": "-54.33095000" + }, + { + "id": "10579", + "name": "Bataguassu", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.78550000", + "longitude": "-52.56542000" + }, + { + "id": "10580", + "name": "Bataiporã", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.29528000", + "longitude": "-53.27111000" + }, + { + "id": "10584", + "name": "Batayporã", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.46496000", + "longitude": "-53.17683000" + }, + { + "id": "10594", + "name": "Bela Vista", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.10889000", + "longitude": "-56.52111000" + }, + { + "id": "10686", + "name": "Bodoquena", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.48226000", + "longitude": "-56.65893000" + }, + { + "id": "10737", + "name": "Bonito", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.12111000", + "longitude": "-56.48194000" + }, + { + "id": "10770", + "name": "Brasilândia", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.11993000", + "longitude": "-52.43829000" + }, + { + "id": "10843", + "name": "Caarapó", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.63417000", + "longitude": "-54.82222000" + }, + { + "id": "10939", + "name": "Camapuã", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.05769000", + "longitude": "-53.85781000" + }, + { + "id": "10989", + "name": "Campo Grande", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.44278000", + "longitude": "-54.64639000" + }, + { + "id": "11003", + "name": "Campo Verde", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.41667000", + "longitude": "-54.06667000" + }, + { + "id": "11102", + "name": "Caracol", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.96712000", + "longitude": "-57.12672000" + }, + { + "id": "11183", + "name": "Cassilândia", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.11333000", + "longitude": "-51.73417000" + }, + { + "id": "11268", + "name": "Chapadão do Sul", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.06696000", + "longitude": "-52.74056000" + }, + { + "id": "11407", + "name": "Corguinho", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.81861000", + "longitude": "-55.00199000" + }, + { + "id": "11429", + "name": "Coronel Sapucaia", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.33759000", + "longitude": "-55.38899000" + }, + { + "id": "11442", + "name": "Corumbá", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.00917000", + "longitude": "-57.65333000" + }, + { + "id": "11449", + "name": "Costa Rica", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.63739000", + "longitude": "-53.27361000" + }, + { + "id": "11458", + "name": "Coxim", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.50667000", + "longitude": "-54.76000000" + }, + { + "id": "11573", + "name": "Deodápolis", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.08040000", + "longitude": "-54.20322000" + }, + { + "id": "11616", + "name": "Dois Irmãos do Buriti", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.57189000", + "longitude": "-55.36839000" + }, + { + "id": "11651", + "name": "Douradina", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.98525000", + "longitude": "-54.58145000" + }, + { + "id": "11654", + "name": "Dourados", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.22111000", + "longitude": "-54.80556000" + }, + { + "id": "11677", + "name": "Eldorado", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.78694000", + "longitude": "-54.28361000" + }, + { + "id": "11908", + "name": "Fátima do Sul", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.34424000", + "longitude": "-54.37064000" + }, + { + "id": "11817", + "name": "Figueirão", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.67500000", + "longitude": "-53.64250000" + }, + { + "id": "11952", + "name": "Glória de Dourados", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.48388000", + "longitude": "-54.09006000" + }, + { + "id": "12079", + "name": "Guia Lopes da Laguna", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.61081000", + "longitude": "-55.93458000" + }, + { + "id": "12200", + "name": "Iguatemi", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.42596000", + "longitude": "-54.55844000" + }, + { + "id": "12255", + "name": "Inocência", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.67150000", + "longitude": "-52.04393000" + }, + { + "id": "12433", + "name": "Itaporã", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.92184000", + "longitude": "-54.81409000" + }, + { + "id": "12445", + "name": "Itaquiraí", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.47080000", + "longitude": "-54.19281000" + }, + { + "id": "12502", + "name": "Ivinhema", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.38076000", + "longitude": "-53.75565000" + }, + { + "id": "12574", + "name": "Japorã", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.79410000", + "longitude": "-54.54402000" + }, + { + "id": "12579", + "name": "Jaraguari", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.27238000", + "longitude": "-54.23743000" + }, + { + "id": "12583", + "name": "Jardim", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.48028000", + "longitude": "-56.13806000" + }, + { + "id": "12600", + "name": "Jateí", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73989000", + "longitude": "-53.81496000" + }, + { + "id": "12711", + "name": "Juti", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.85356000", + "longitude": "-54.52155000" + }, + { + "id": "12723", + "name": "Ladário", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.10505000", + "longitude": "-57.58416000" + }, + { + "id": "12772", + "name": "Laguna Carapã", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.71043000", + "longitude": "-55.08248000" + }, + { + "id": "12966", + "name": "Maracaju", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.61444000", + "longitude": "-55.16833000" + }, + { + "id": "13138", + "name": "Miranda", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.24056000", + "longitude": "-56.37833000" + }, + { + "id": "13270", + "name": "Mundo Novo", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.92628000", + "longitude": "-54.25746000" + }, + { + "id": "13307", + "name": "Naviraí", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.06500000", + "longitude": "-54.19056000" + }, + { + "id": "13328", + "name": "Nioaque", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.18151000", + "longitude": "-55.75856000" + }, + { + "id": "13348", + "name": "Nova Alvorada do Sul", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.48079000", + "longitude": "-54.15260000" + }, + { + "id": "13351", + "name": "Nova Andradina", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.88205000", + "longitude": "-53.46637000" + }, + { + "id": "13465", + "name": "Novo Horizonte do Sul", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.63068000", + "longitude": "-53.73643000" + }, + { + "id": "13661", + "name": "Paraíso das Águas", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.01750000", + "longitude": "-53.01222000" + }, + { + "id": "13645", + "name": "Paranaíba", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.67722000", + "longitude": "-51.19083000" + }, + { + "id": "13647", + "name": "Paranhos", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.89278000", + "longitude": "-55.43111000" + }, + { + "id": "14123", + "name": "Pôrto Barra do Ivinheima", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.96667000", + "longitude": "-53.66667000" + }, + { + "id": "13776", + "name": "Pedro Gomes", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.83882000", + "longitude": "-54.12943000" + }, + { + "id": "13958", + "name": "Ponta Porã", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.53611000", + "longitude": "-55.72556000" + }, + { + "id": "14011", + "name": "Porto Murtinho", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.69889000", + "longitude": "-57.88250000" + }, + { + "id": "14230", + "name": "Ribas do Rio Pardo", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.44306000", + "longitude": "-53.75917000" + }, + { + "id": "14267", + "name": "Rio Brilhante", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.80194000", + "longitude": "-54.54639000" + }, + { + "id": "14284", + "name": "Rio Negro", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.44620000", + "longitude": "-54.97947000" + }, + { + "id": "14301", + "name": "Rio Verde de Mato Grosso", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.91806000", + "longitude": "-54.84417000" + }, + { + "id": "14326", + "name": "Rochedo", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.98799000", + "longitude": "-54.78184000" + }, + { + "id": "14535", + "name": "Santa Rita do Pardo", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.35479000", + "longitude": "-52.69315000" + }, + { + "id": "14911", + "name": "São Gabriel do Oeste", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.13170000", + "longitude": "-54.44865000" + }, + { + "id": "14690", + "name": "Selvíria", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.24958000", + "longitude": "-51.83228000" + }, + { + "id": "14766", + "name": "Sete Quedas", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.88066000", + "longitude": "-55.02727000" + }, + { + "id": "14773", + "name": "Sidrolândia", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.93194000", + "longitude": "-54.96139000" + }, + { + "id": "14809", + "name": "Sonora", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.67403000", + "longitude": "-54.45326000" + }, + { + "id": "15197", + "name": "Tacuru", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.68722000", + "longitude": "-54.91099000" + }, + { + "id": "15250", + "name": "Taquarussu", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73419000", + "longitude": "-53.48002000" + }, + { + "id": "15283", + "name": "Terenos", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.42068000", + "longitude": "-55.10602000" + }, + { + "id": "15377", + "name": "Três Lagoas", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.37964000", + "longitude": "-52.25961000" + }, + { + "id": "15556", + "name": "Vicentina", + "state_id": 2010, + "state_code": "MS", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.49155000", + "longitude": "-54.46183000" + }, + { + "id": "10465", + "name": "Açucena", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.07306000", + "longitude": "-42.54639000" + }, + { + "id": "10054", + "name": "Abadia dos Dourados", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.36347000", + "longitude": "-47.46997000" + }, + { + "id": "10057", + "name": "Abaeté", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.11099000", + "longitude": "-45.43051000" + }, + { + "id": "10065", + "name": "Abre Campo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.27265000", + "longitude": "-42.43908000" + }, + { + "id": "10068", + "name": "Acaiaca", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.40360000", + "longitude": "-43.10077000" + }, + { + "id": "10095", + "name": "Aguanil", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.96959000", + "longitude": "-45.41717000" + }, + { + "id": "10102", + "name": "Aimorés", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.62552000", + "longitude": "-41.20955000" + }, + { + "id": "10105", + "name": "Aiuruoca", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.94703000", + "longitude": "-44.64779000" + }, + { + "id": "10107", + "name": "Alagoa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.18147000", + "longitude": "-44.66024000" + }, + { + "id": "10201", + "name": "Além Paraíba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.80936000", + "longitude": "-42.75740000" + }, + { + "id": "10115", + "name": "Albertina", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.19908000", + "longitude": "-46.62076000" + }, + { + "id": "10130", + "name": "Alfenas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.39287000", + "longitude": "-45.99521000" + }, + { + "id": "10133", + "name": "Alfredo Vasconcelos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.14240000", + "longitude": "-43.71114000" + }, + { + "id": "10142", + "name": "Almenara", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.10053000", + "longitude": "-40.71006000" + }, + { + "id": "10147", + "name": "Alpercata", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.98379000", + "longitude": "-42.00135000" + }, + { + "id": "10149", + "name": "Alpinópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.81822000", + "longitude": "-46.37937000" + }, + { + "id": "10157", + "name": "Alterosa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.21904000", + "longitude": "-46.18694000" + }, + { + "id": "10168", + "name": "Alto Caparaó", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.44669000", + "longitude": "-41.87096000" + }, + { + "id": "10172", + "name": "Alto Jequitibá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.43703000", + "longitude": "-41.95113000" + }, + { + "id": "10181", + "name": "Alto Rio Doce", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.01929000", + "longitude": "-43.40538000" + }, + { + "id": "10190", + "name": "Alvarenga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.39870000", + "longitude": "-41.68138000" + }, + { + "id": "10193", + "name": "Alvinópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.12078000", + "longitude": "-43.15399000" + }, + { + "id": "10197", + "name": "Alvorada de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.79532000", + "longitude": "-43.37002000" + }, + { + "id": "10220", + "name": "Amparo da Serra", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.52383000", + "longitude": "-42.79878000" + }, + { + "id": "10245", + "name": "Andradas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.06984000", + "longitude": "-46.57230000" + }, + { + "id": "10247", + "name": "Andrelândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.71132000", + "longitude": "-44.27912000" + }, + { + "id": "10252", + "name": "Angelândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.72394000", + "longitude": "-42.26234000" + }, + { + "id": "10273", + "name": "Antônio Carlos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.40838000", + "longitude": "-43.76937000" + }, + { + "id": "10275", + "name": "Antônio Dias", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.56225000", + "longitude": "-42.88855000" + }, + { + "id": "10281", + "name": "Antônio Prado de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.02658000", + "longitude": "-42.15497000" + }, + { + "id": "10369", + "name": "Araçaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.24200000", + "longitude": "-44.22429000" + }, + { + "id": "10373", + "name": "Araçuaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.90822000", + "longitude": "-41.98596000" + }, + { + "id": "10375", + "name": "Araújos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.87542000", + "longitude": "-45.15682000" + }, + { + "id": "10312", + "name": "Aracitaba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.35243000", + "longitude": "-43.40862000" + }, + { + "id": "10324", + "name": "Araguari", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.64722000", + "longitude": "-48.18722000" + }, + { + "id": "10335", + "name": "Arantina", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.89632000", + "longitude": "-44.22633000" + }, + { + "id": "10339", + "name": "Araponga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.66607000", + "longitude": "-42.51113000" + }, + { + "id": "10341", + "name": "Araporã", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.49061000", + "longitude": "-49.13761000" + }, + { + "id": "10344", + "name": "Arapuá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.03065000", + "longitude": "-46.09585000" + }, + { + "id": "10365", + "name": "Araxá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.59333000", + "longitude": "-46.94056000" + }, + { + "id": "10376", + "name": "Arceburgo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.36655000", + "longitude": "-46.94472000" + }, + { + "id": "10378", + "name": "Arcos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.24351000", + "longitude": "-45.56760000" + }, + { + "id": "10380", + "name": "Areado", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.33401000", + "longitude": "-46.16798000" + }, + { + "id": "10392", + "name": "Argirita", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.63912000", + "longitude": "-42.82857000" + }, + { + "id": "10393", + "name": "Aricanduva", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.85789000", + "longitude": "-42.59791000" + }, + { + "id": "10394", + "name": "Arinos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.80332000", + "longitude": "-45.94198000" + }, + { + "id": "10432", + "name": "Astolfo Dutra", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.30413000", + "longitude": "-42.88194000" + }, + { + "id": "10438", + "name": "Ataléia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.18353000", + "longitude": "-41.16721000" + }, + { + "id": "10446", + "name": "Augusto de Lima", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.10720000", + "longitude": "-44.16792000" + }, + { + "id": "15650", + "name": "Água Boa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.06423000", + "longitude": "-42.23027000" + }, + { + "id": "15655", + "name": "Água Comprida", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.99124000", + "longitude": "-48.11035000" + }, + { + "id": "15666", + "name": "Águas Formosas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.08222000", + "longitude": "-40.93583000" + }, + { + "id": "15670", + "name": "Águas Vermelhas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.74722000", + "longitude": "-41.46000000" + }, + { + "id": "10472", + "name": "Baependi", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.97623000", + "longitude": "-44.85558000" + }, + { + "id": "10482", + "name": "Baldim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.23659000", + "longitude": "-43.84684000" + }, + { + "id": "10493", + "name": "Bambuí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.10451000", + "longitude": "-45.98743000" + }, + { + "id": "10497", + "name": "Bandeira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.88042000", + "longitude": "-40.59969000" + }, + { + "id": "10498", + "name": "Bandeira do Sul", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.72907000", + "longitude": "-46.38283000" + }, + { + "id": "10572", + "name": "Barão de Cocais", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.87980000", + "longitude": "-43.49476000" + }, + { + "id": "10576", + "name": "Barão de Monte Alto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.26536000", + "longitude": "-42.27886000" + }, + { + "id": "10507", + "name": "Barbacena", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.25031000", + "longitude": "-43.84171000" + }, + { + "id": "10519", + "name": "Barra Longa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.27861000", + "longitude": "-43.07170000" + }, + { + "id": "10555", + "name": "Barreiro do Jaíba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.61532000", + "longitude": "-43.59187000" + }, + { + "id": "10568", + "name": "Barroso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.17886000", + "longitude": "-43.95708000" + }, + { + "id": "10597", + "name": "Bela Vista de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.80136000", + "longitude": "-43.10273000" + }, + { + "id": "10603", + "name": "Belmiro Braga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.96440000", + "longitude": "-43.45933000" + }, + { + "id": "10607", + "name": "Belo Horizonte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.92083000", + "longitude": "-43.93778000" + }, + { + "id": "10610", + "name": "Belo Oriente", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.25558000", + "longitude": "-42.44289000" + }, + { + "id": "10611", + "name": "Belo Vale", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.41584000", + "longitude": "-44.06470000" + }, + { + "id": "10632", + "name": "Berilo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.86340000", + "longitude": "-42.48889000" + }, + { + "id": "10633", + "name": "Berizal", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.67761000", + "longitude": "-41.77137000" + }, + { + "id": "10640", + "name": "Bertópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.95442000", + "longitude": "-40.56435000" + }, + { + "id": "10642", + "name": "Betim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.96778000", + "longitude": "-44.19833000" + }, + { + "id": "10646", + "name": "Bias Fortes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.63008000", + "longitude": "-43.75508000" + }, + { + "id": "10647", + "name": "Bicas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.73237000", + "longitude": "-43.10454000" + }, + { + "id": "10650", + "name": "Biquinhas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.76231000", + "longitude": "-45.54853000" + }, + { + "id": "10658", + "name": "Boa Esperança", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.08132000", + "longitude": "-45.62433000" + }, + { + "id": "10683", + "name": "Bocaiúva", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.38916000", + "longitude": "-43.83571000" + }, + { + "id": "10681", + "name": "Bocaina de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.23436000", + "longitude": "-44.49342000" + }, + { + "id": "10691", + "name": "Bom Despacho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.69145000", + "longitude": "-45.25297000" + }, + { + "id": "10697", + "name": "Bom Jardim de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.94390000", + "longitude": "-44.12193000" + }, + { + "id": "10704", + "name": "Bom Jesus da Penha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.99902000", + "longitude": "-46.54769000" + }, + { + "id": "10708", + "name": "Bom Jesus do Amparo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.71668000", + "longitude": "-43.46840000" + }, + { + "id": "10710", + "name": "Bom Jesus do Galho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.71687000", + "longitude": "-42.37558000" + }, + { + "id": "10722", + "name": "Bom Repouso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.44963000", + "longitude": "-46.18632000" + }, + { + "id": "10726", + "name": "Bom Sucesso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.03029000", + "longitude": "-44.79501000" + }, + { + "id": "10731", + "name": "Bonfim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.31591000", + "longitude": "-44.20740000" + }, + { + "id": "10734", + "name": "Bonfinópolis de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.54416000", + "longitude": "-46.13266000" + }, + { + "id": "10740", + "name": "Bonito de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.91015000", + "longitude": "-44.88471000" + }, + { + "id": "10752", + "name": "Borda da Mata", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.25106000", + "longitude": "-46.16707000" + }, + { + "id": "10757", + "name": "Botelhos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.64903000", + "longitude": "-46.42831000" + }, + { + "id": "10759", + "name": "Botumirim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.90950000", + "longitude": "-43.00848000" + }, + { + "id": "10783", + "name": "Braúnas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.02181000", + "longitude": "-42.71399000" + }, + { + "id": "10777", + "name": "Brasília de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.25246000", + "longitude": "-44.45712000" + }, + { + "id": "10771", + "name": "Brasilândia de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.93061000", + "longitude": "-45.96385000" + }, + { + "id": "10779", + "name": "Brazópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.48169000", + "longitude": "-45.62802000" + }, + { + "id": "10813", + "name": "Brás Pires", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.87837000", + "longitude": "-43.22442000" + }, + { + "id": "10809", + "name": "Brumadinho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.20447000", + "longitude": "-44.15388000" + }, + { + "id": "10816", + "name": "Buenópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.87455000", + "longitude": "-44.02374000" + }, + { + "id": "10814", + "name": "Bueno Brandão", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.50459000", + "longitude": "-46.35271000" + }, + { + "id": "10818", + "name": "Bugre", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.36701000", + "longitude": "-42.30815000" + }, + { + "id": "10835", + "name": "Buritis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.41389000", + "longitude": "-46.55470000" + }, + { + "id": "10837", + "name": "Buritizeiro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.40582000", + "longitude": "-45.30446000" + }, + { + "id": "10847", + "name": "Cabeceira Grande", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.06178000", + "longitude": "-47.17573000" + }, + { + "id": "10854", + "name": "Cabo Verde", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.48702000", + "longitude": "-46.37999000" + }, + { + "id": "10867", + "name": "Cachoeira da Prata", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.51865000", + "longitude": "-44.46250000" + }, + { + "id": "10869", + "name": "Cachoeira de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.35563000", + "longitude": "-45.79447000" + }, + { + "id": "10870", + "name": "Cachoeira de Pajeú", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.97163000", + "longitude": "-41.49303000" + }, + { + "id": "10863", + "name": "Cachoeira Dourada", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.59094000", + "longitude": "-49.47013000" + }, + { + "id": "10889", + "name": "Caetanópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.33473000", + "longitude": "-44.41002000" + }, + { + "id": "10891", + "name": "Caeté", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.87017000", + "longitude": "-43.65060000" + }, + { + "id": "10899", + "name": "Caiana", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73080000", + "longitude": "-41.90016000" + }, + { + "id": "10921", + "name": "Cajuri", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.78744000", + "longitude": "-42.76259000" + }, + { + "id": "10923", + "name": "Caldas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.88671000", + "longitude": "-46.35924000" + }, + { + "id": "10935", + "name": "Camacho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.64216000", + "longitude": "-45.14334000" + }, + { + "id": "10938", + "name": "Camanducaia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.75528000", + "longitude": "-46.14472000" + }, + { + "id": "10950", + "name": "Cambuí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.58243000", + "longitude": "-46.06121000" + }, + { + "id": "10949", + "name": "Cambuquira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.85379000", + "longitude": "-45.27170000" + }, + { + "id": "10956", + "name": "Campanário", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.27490000", + "longitude": "-41.73907000" + }, + { + "id": "10955", + "name": "Campanha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.81412000", + "longitude": "-45.39753000" + }, + { + "id": "10958", + "name": "Campestre", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.73436000", + "longitude": "-46.22571000" + }, + { + "id": "10964", + "name": "Campina Verde", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.46113000", + "longitude": "-49.73967000" + }, + { + "id": "10981", + "name": "Campo Azul", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.52161000", + "longitude": "-44.80679000" + }, + { + "id": "10982", + "name": "Campo Belo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.89722000", + "longitude": "-45.27722000" + }, + { + "id": "11006", + "name": "Campo do Meio", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.12604000", + "longitude": "-45.79572000" + }, + { + "id": "10987", + "name": "Campo Florido", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.69262000", + "longitude": "-48.65664000" + }, + { + "id": "11008", + "name": "Campos Altos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.63694000", + "longitude": "-46.19815000" + }, + { + "id": "11011", + "name": "Campos Gerais", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.23500000", + "longitude": "-45.75861000" + }, + { + "id": "11021", + "name": "Cana Verde", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.02062000", + "longitude": "-45.18335000" + }, + { + "id": "11030", + "name": "Canaã", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.66128000", + "longitude": "-42.63787000" + }, + { + "id": "11061", + "name": "Canápolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.77777000", + "longitude": "-49.27579000" + }, + { + "id": "11034", + "name": "Candeias", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73894000", + "longitude": "-45.28719000" + }, + { + "id": "11053", + "name": "Cantagalo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.51033000", + "longitude": "-42.64980000" + }, + { + "id": "11064", + "name": "Caparaó", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.52613000", + "longitude": "-41.90220000" + }, + { + "id": "11067", + "name": "Capela Nova", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.91843000", + "longitude": "-43.61587000" + }, + { + "id": "11071", + "name": "Capelinha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.69167000", + "longitude": "-42.50214000" + }, + { + "id": "11072", + "name": "Capetinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.65301000", + "longitude": "-47.01826000" + }, + { + "id": "11074", + "name": "Capim Branco", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.57826000", + "longitude": "-44.16662000" + }, + { + "id": "11078", + "name": "Capinópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.69222000", + "longitude": "-49.57943000" + }, + { + "id": "11081", + "name": "Capitão Andrade", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.04293000", + "longitude": "-41.82608000" + }, + { + "id": "11082", + "name": "Capitão Enéas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.05629000", + "longitude": "-43.67470000" + }, + { + "id": "11087", + "name": "Capitólio", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.61528000", + "longitude": "-46.05000000" + }, + { + "id": "11093", + "name": "Caputira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.18512000", + "longitude": "-42.25284000" + }, + { + "id": "11115", + "name": "Caraí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.18089000", + "longitude": "-41.54964000" + }, + { + "id": "11105", + "name": "Caranaíba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.88526000", + "longitude": "-43.71231000" + }, + { + "id": "11106", + "name": "Carandaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.98840000", + "longitude": "-43.83413000" + }, + { + "id": "11107", + "name": "Carangola", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.70784000", + "longitude": "-42.10486000" + }, + { + "id": "11110", + "name": "Caratinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.68877000", + "longitude": "-41.88778000" + }, + { + "id": "11120", + "name": "Carbonita", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.47884000", + "longitude": "-43.04885000" + }, + { + "id": "11124", + "name": "Careaçu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.07964000", + "longitude": "-45.66541000" + }, + { + "id": "11139", + "name": "Carlos Chagas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.67817000", + "longitude": "-40.88519000" + }, + { + "id": "11151", + "name": "Carmésia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.06534000", + "longitude": "-43.18402000" + }, + { + "id": "11153", + "name": "Carmópolis de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.54914000", + "longitude": "-44.64527000" + }, + { + "id": "11143", + "name": "Carmo da Cachoeira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.43323000", + "longitude": "-45.18036000" + }, + { + "id": "11144", + "name": "Carmo da Mata", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.56847000", + "longitude": "-44.88516000" + }, + { + "id": "11145", + "name": "Carmo de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.08863000", + "longitude": "-45.14949000" + }, + { + "id": "11146", + "name": "Carmo do Cajuru", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.18782000", + "longitude": "-44.71399000" + }, + { + "id": "11147", + "name": "Carmo do Paranaíba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.87335000", + "longitude": "-46.14425000" + }, + { + "id": "11148", + "name": "Carmo do Rio Claro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.97974000", + "longitude": "-46.10445000" + }, + { + "id": "11159", + "name": "Carneirinho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.71424000", + "longitude": "-50.80874000" + }, + { + "id": "11163", + "name": "Carrancas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.49589000", + "longitude": "-44.61042000" + }, + { + "id": "11169", + "name": "Carvalhópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.77488000", + "longitude": "-45.82688000" + }, + { + "id": "11168", + "name": "Carvalhos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.03096000", + "longitude": "-44.47544000" + }, + { + "id": "11172", + "name": "Casa Grande", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.84072000", + "longitude": "-43.93951000" + }, + { + "id": "11175", + "name": "Cascalho Rico", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.54617000", + "longitude": "-47.85132000" + }, + { + "id": "11193", + "name": "Cataguases", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.34548000", + "longitude": "-42.64976000" + }, + { + "id": "11199", + "name": "Catas Altas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.07049000", + "longitude": "-43.42197000" + }, + { + "id": "11200", + "name": "Catas Altas da Noruega", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.68094000", + "longitude": "-43.49780000" + }, + { + "id": "11207", + "name": "Catuji", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.36328000", + "longitude": "-41.48183000" + }, + { + "id": "11212", + "name": "Catuti", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.32360000", + "longitude": "-43.11391000" + }, + { + "id": "11216", + "name": "Caxambu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.97722000", + "longitude": "-44.93250000" + }, + { + "id": "11543", + "name": "Cássia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.59294000", + "longitude": "-46.91761000" + }, + { + "id": "11553", + "name": "Córrego Danta", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.81349000", + "longitude": "-45.96149000" + }, + { + "id": "11556", + "name": "Córrego do Bom Jesus", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.62998000", + "longitude": "-45.99681000" + }, + { + "id": "11554", + "name": "Córrego Fundo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.45029000", + "longitude": "-45.53592000" + }, + { + "id": "11555", + "name": "Córrego Novo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.82874000", + "longitude": "-42.44214000" + }, + { + "id": "11558", + "name": "Cônego Marinho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.98755000", + "longitude": "-44.60965000" + }, + { + "id": "11233", + "name": "Cedro do Abaeté", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.11465000", + "longitude": "-45.70070000" + }, + { + "id": "11239", + "name": "Central de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.76784000", + "longitude": "-41.28963000" + }, + { + "id": "11241", + "name": "Centralina", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.60922000", + "longitude": "-49.16062000" + }, + { + "id": "11258", + "name": "Chalé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.03354000", + "longitude": "-41.67809000" + }, + { + "id": "11263", + "name": "Chapada do Norte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.16293000", + "longitude": "-42.37718000" + }, + { + "id": "11260", + "name": "Chapada Gaúcha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.57934000", + "longitude": "-45.41242000" + }, + { + "id": "11285", + "name": "Chácara", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.67919000", + "longitude": "-43.21835000" + }, + { + "id": "11276", + "name": "Chiador", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.97253000", + "longitude": "-43.00735000" + }, + { + "id": "11294", + "name": "Cipotânea", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.93027000", + "longitude": "-43.36547000" + }, + { + "id": "11297", + "name": "Claraval", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.35681000", + "longitude": "-47.25241000" + }, + { + "id": "11298", + "name": "Claro dos Poções", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.09679000", + "longitude": "-44.23300000" + }, + { + "id": "11302", + "name": "Cláudio", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.39006000", + "longitude": "-44.79135000" + }, + { + "id": "11316", + "name": "Coimbra", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.84494000", + "longitude": "-42.79834000" + }, + { + "id": "11332", + "name": "Coluna", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.26842000", + "longitude": "-42.82813000" + }, + { + "id": "11340", + "name": "Comendador Gomes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.65330000", + "longitude": "-49.08738000" + }, + { + "id": "11342", + "name": "Comercinho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.28896000", + "longitude": "-41.77346000" + }, + { + "id": "11345", + "name": "Conceição da Aparecida", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.10120000", + "longitude": "-46.22626000" + }, + { + "id": "11347", + "name": "Conceição da Barra de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.14228000", + "longitude": "-44.48863000" + }, + { + "id": "11349", + "name": "Conceição das Alagoas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.95627000", + "longitude": "-48.30510000" + }, + { + "id": "11350", + "name": "Conceição das Pedras", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.13866000", + "longitude": "-45.42694000" + }, + { + "id": "11351", + "name": "Conceição de Ipanema", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.91781000", + "longitude": "-41.70024000" + }, + { + "id": "11360", + "name": "Conceição do Mato Dentro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.90010000", + "longitude": "-43.50229000" + }, + { + "id": "11361", + "name": "Conceição do Pará", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.78550000", + "longitude": "-44.87016000" + }, + { + "id": "11362", + "name": "Conceição do Rio Verde", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.90132000", + "longitude": "-45.07975000" + }, + { + "id": "11364", + "name": "Conceição dos Ouros", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.45037000", + "longitude": "-45.77976000" + }, + { + "id": "11375", + "name": "Confins", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.65686000", + "longitude": "-43.98131000" + }, + { + "id": "11378", + "name": "Congonhal", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.13543000", + "longitude": "-46.03992000" + }, + { + "id": "11379", + "name": "Congonhas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.50525000", + "longitude": "-43.85880000" + }, + { + "id": "11380", + "name": "Congonhas do Norte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.88604000", + "longitude": "-43.69620000" + }, + { + "id": "11382", + "name": "Conquista", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.86841000", + "longitude": "-47.63352000" + }, + { + "id": "11384", + "name": "Conselheiro Lafaiete", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.66028000", + "longitude": "-43.78611000" + }, + { + "id": "11386", + "name": "Conselheiro Pena", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.17411000", + "longitude": "-41.45800000" + }, + { + "id": "11387", + "name": "Consolação", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.54002000", + "longitude": "-45.90414000" + }, + { + "id": "11389", + "name": "Contagem", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.93167000", + "longitude": "-44.05361000" + }, + { + "id": "11392", + "name": "Coqueiral", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.17947000", + "longitude": "-45.43619000" + }, + { + "id": "11396", + "name": "Coração de Jesus", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.68619000", + "longitude": "-44.36279000" + }, + { + "id": "11403", + "name": "Cordisburgo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.09925000", + "longitude": "-44.16458000" + }, + { + "id": "11404", + "name": "Cordislândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.78750000", + "longitude": "-45.67156000" + }, + { + "id": "11409", + "name": "Corinto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.35246000", + "longitude": "-44.60589000" + }, + { + "id": "11411", + "name": "Coroaci", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.61187000", + "longitude": "-42.25835000" + }, + { + "id": "11414", + "name": "Coromandel", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.40456000", + "longitude": "-47.15161000" + }, + { + "id": "11419", + "name": "Coronel Fabriciano", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.51861000", + "longitude": "-42.62889000" + }, + { + "id": "11426", + "name": "Coronel Murta", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.58925000", + "longitude": "-42.19742000" + }, + { + "id": "11427", + "name": "Coronel Pacheco", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.60865000", + "longitude": "-43.29006000" + }, + { + "id": "11431", + "name": "Coronel Xavier Chaves", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.02869000", + "longitude": "-44.20221000" + }, + { + "id": "11456", + "name": "Couto de Magalhães de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.11856000", + "longitude": "-43.41813000" + }, + { + "id": "11481", + "name": "Crisólita", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.24147000", + "longitude": "-40.97498000" + }, + { + "id": "11467", + "name": "Cristais", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.80957000", + "longitude": "-45.52448000" + }, + { + "id": "11479", + "name": "Cristália", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.72547000", + "longitude": "-42.81870000" + }, + { + "id": "11474", + "name": "Cristiano Otoni", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.83688000", + "longitude": "-43.82931000" + }, + { + "id": "11476", + "name": "Cristina", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.21592000", + "longitude": "-45.28820000" + }, + { + "id": "11487", + "name": "Crucilândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.40660000", + "longitude": "-44.35991000" + }, + { + "id": "11504", + "name": "Cruzília", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.73596000", + "longitude": "-44.79827000" + }, + { + "id": "11495", + "name": "Cruzeiro da Fortaleza", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.96712000", + "longitude": "-46.65779000" + }, + { + "id": "11519", + "name": "Cuparaque", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.99664000", + "longitude": "-41.13368000" + }, + { + "id": "11532", + "name": "Curral de Dentro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.84632000", + "longitude": "-41.75405000" + }, + { + "id": "11538", + "name": "Curvelo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.78525000", + "longitude": "-44.41599000" + }, + { + "id": "11563", + "name": "Datas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.48073000", + "longitude": "-43.65216000" + }, + { + "id": "11567", + "name": "Delfim Moreira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.51165000", + "longitude": "-45.28972000" + }, + { + "id": "11568", + "name": "Delfinópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.34248000", + "longitude": "-46.83952000" + }, + { + "id": "11570", + "name": "Delta", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.93414000", + "longitude": "-47.80435000" + }, + { + "id": "11578", + "name": "Descoberto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.45167000", + "longitude": "-42.97128000" + }, + { + "id": "11580", + "name": "Desterro de Entre Rios", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.64186000", + "longitude": "-44.28135000" + }, + { + "id": "11581", + "name": "Desterro do Melo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.14290000", + "longitude": "-43.52011000" + }, + { + "id": "11588", + "name": "Diamantina", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.97795000", + "longitude": "-43.60415000" + }, + { + "id": "11593", + "name": "Diogo de Vasconcelos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.47593000", + "longitude": "-43.19094000" + }, + { + "id": "11594", + "name": "Dionísio", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.83679000", + "longitude": "-42.68817000" + }, + { + "id": "11605", + "name": "Divinésia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.99465000", + "longitude": "-42.99513000" + }, + { + "id": "11606", + "name": "Divinópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.14355000", + "longitude": "-44.89065000" + }, + { + "id": "11600", + "name": "Divino", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.58996000", + "longitude": "-42.17550000" + }, + { + "id": "11601", + "name": "Divino das Laranjeiras", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.77778000", + "longitude": "-41.47972000" + }, + { + "id": "11604", + "name": "Divinolândia de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.77559000", + "longitude": "-42.57075000" + }, + { + "id": "11609", + "name": "Divisa Alegre", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.69447000", + "longitude": "-41.39107000" + }, + { + "id": "11610", + "name": "Divisa Nova", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.52382000", + "longitude": "-46.24417000" + }, + { + "id": "11611", + "name": "Divisópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.76740000", + "longitude": "-40.92393000" + }, + { + "id": "11624", + "name": "Dom Bosco", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.81133000", + "longitude": "-46.28457000" + }, + { + "id": "11625", + "name": "Dom Cavati", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.38835000", + "longitude": "-42.09365000" + }, + { + "id": "11630", + "name": "Dom Joaquim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.92927000", + "longitude": "-43.26602000" + }, + { + "id": "11635", + "name": "Dom Silvério", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.12728000", + "longitude": "-42.94651000" + }, + { + "id": "11636", + "name": "Dom Viçoso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.23185000", + "longitude": "-45.14880000" + }, + { + "id": "11640", + "name": "Dona Eusébia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.32337000", + "longitude": "-42.80829000" + }, + { + "id": "11643", + "name": "Dores de Campos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.11373000", + "longitude": "-43.99358000" + }, + { + "id": "11644", + "name": "Dores de Guanhães", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.04398000", + "longitude": "-42.92816000" + }, + { + "id": "11645", + "name": "Dores do Indaiá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.47427000", + "longitude": "-45.54046000" + }, + { + "id": "11647", + "name": "Dores do Turvo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.02779000", + "longitude": "-43.16365000" + }, + { + "id": "11648", + "name": "Doresópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.29693000", + "longitude": "-45.86864000" + }, + { + "id": "11653", + "name": "Douradoquara", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.44204000", + "longitude": "-47.61478000" + }, + { + "id": "11670", + "name": "Durandé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.15179000", + "longitude": "-41.78240000" + }, + { + "id": "11686", + "name": "Elói Mendes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.60067000", + "longitude": "-45.59466000" + }, + { + "id": "11699", + "name": "Engenheiro Caldas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.11350000", + "longitude": "-42.01786000" + }, + { + "id": "11701", + "name": "Engenheiro Navarro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.30933000", + "longitude": "-44.03465000" + }, + { + "id": "11704", + "name": "Entre Folhas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.65964000", + "longitude": "-42.24102000" + }, + { + "id": "11707", + "name": "Entre Rios de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.70275000", + "longitude": "-44.10687000" + }, + { + "id": "11723", + "name": "Ervália", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.84684000", + "longitude": "-42.61968000" + }, + { + "id": "11726", + "name": "Esmeraldas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.76250000", + "longitude": "-44.31389000" + }, + { + "id": "11740", + "name": "Espírito Santo do Dourado", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.00600000", + "longitude": "-45.99000000" + }, + { + "id": "11727", + "name": "Espera Feliz", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.59349000", + "longitude": "-41.91981000" + }, + { + "id": "11736", + "name": "Espinosa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.85978000", + "longitude": "-42.99177000" + }, + { + "id": "11745", + "name": "Estiva", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.45283000", + "longitude": "-46.02238000" + }, + { + "id": "11749", + "name": "Estrela Dalva", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.69328000", + "longitude": "-42.46834000" + }, + { + "id": "11753", + "name": "Estrela do Indaiá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.58083000", + "longitude": "-45.81189000" + }, + { + "id": "11756", + "name": "Estrela do Sul", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.72229000", + "longitude": "-47.69732000" + }, + { + "id": "11761", + "name": "Eugenópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.99897000", + "longitude": "-42.24618000" + }, + { + "id": "11765", + "name": "Ewbank da Câmara", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.57233000", + "longitude": "-43.55342000" + }, + { + "id": "11767", + "name": "Extrema", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.82650000", + "longitude": "-46.28351000" + }, + { + "id": "11773", + "name": "Fama", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.46845000", + "longitude": "-45.82005000" + }, + { + "id": "11774", + "name": "Faria Lemos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.78262000", + "longitude": "-42.02787000" + }, + { + "id": "11801", + "name": "Felício dos Santos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.15506000", + "longitude": "-43.24046000" + }, + { + "id": "11796", + "name": "Felisburgo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.66153000", + "longitude": "-40.71814000" + }, + { + "id": "11797", + "name": "Felixlândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.69406000", + "longitude": "-44.91938000" + }, + { + "id": "11803", + "name": "Fernandes Tourinho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.10298000", + "longitude": "-42.09459000" + }, + { + "id": "11814", + "name": "Ferros", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.23796000", + "longitude": "-42.97023000" + }, + { + "id": "11815", + "name": "Fervedouro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.68788000", + "longitude": "-42.34214000" + }, + { + "id": "11839", + "name": "Florestal", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.86521000", + "longitude": "-44.44251000" + }, + { + "id": "11850", + "name": "Formiga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.46444000", + "longitude": "-45.42639000" + }, + { + "id": "11857", + "name": "Formoso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.14747000", + "longitude": "-46.09371000" + }, + { + "id": "11864", + "name": "Fortaleza de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.88169000", + "longitude": "-46.77437000" + }, + { + "id": "11870", + "name": "Fortuna de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.54845000", + "longitude": "-44.50230000" + }, + { + "id": "11886", + "name": "Franciscópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.00982000", + "longitude": "-41.98437000" + }, + { + "id": "11878", + "name": "Francisco Badaró", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.95297000", + "longitude": "-42.28055000" + }, + { + "id": "11881", + "name": "Francisco Dumont", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.39766000", + "longitude": "-44.21775000" + }, + { + "id": "11885", + "name": "Francisco Sá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.47583000", + "longitude": "-43.48833000" + }, + { + "id": "11891", + "name": "Frei Gaspar", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.14006000", + "longitude": "-41.49292000" + }, + { + "id": "11892", + "name": "Frei Inocêncio", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.51403000", + "longitude": "-41.87101000" + }, + { + "id": "11893", + "name": "Frei Lagonegro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.14293000", + "longitude": "-42.76064000" + }, + { + "id": "11898", + "name": "Fronteira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.22276000", + "longitude": "-49.17640000" + }, + { + "id": "11899", + "name": "Fronteira dos Vales", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.89172000", + "longitude": "-40.83008000" + }, + { + "id": "11901", + "name": "Fruta de Leite", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.16212000", + "longitude": "-42.52859000" + }, + { + "id": "11902", + "name": "Frutal", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.02472000", + "longitude": "-48.94056000" + }, + { + "id": "11905", + "name": "Funilândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.35187000", + "longitude": "-44.08205000" + }, + { + "id": "11912", + "name": "Galiléia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.86897000", + "longitude": "-41.52503000" + }, + { + "id": "11917", + "name": "Gameleiras", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.97096000", + "longitude": "-43.30610000" + }, + { + "id": "11947", + "name": "Glaucilândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.89532000", + "longitude": "-43.66081000" + }, + { + "id": "11956", + "name": "Goiabeira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.02964000", + "longitude": "-41.22725000" + }, + { + "id": "11962", + "name": "Goianá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.56063000", + "longitude": "-43.18511000" + }, + { + "id": "11974", + "name": "Gonçalves", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.67479000", + "longitude": "-45.83780000" + }, + { + "id": "11973", + "name": "Gonzaga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.87874000", + "longitude": "-42.49507000" + }, + { + "id": "11976", + "name": "Gouveia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.53580000", + "longitude": "-43.85363000" + }, + { + "id": "11990", + "name": "Governador Valadares", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.85111000", + "longitude": "-41.94944000" + }, + { + "id": "12008", + "name": "Grão Mogol", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.49009000", + "longitude": "-42.96535000" + }, + { + "id": "12007", + "name": "Grupiara", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.47962000", + "longitude": "-47.77141000" + }, + { + "id": "12025", + "name": "Guanhães", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.85705000", + "longitude": "-42.80520000" + }, + { + "id": "12032", + "name": "Guapé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.77404000", + "longitude": "-45.89935000" + }, + { + "id": "12037", + "name": "Guaraciaba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.56919000", + "longitude": "-43.01146000" + }, + { + "id": "12040", + "name": "Guaraciama", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.08074000", + "longitude": "-43.60308000" + }, + { + "id": "12050", + "name": "Guaranésia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.28820000", + "longitude": "-46.82229000" + }, + { + "id": "12043", + "name": "Guarani", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.35038000", + "longitude": "-43.05888000" + }, + { + "id": "12056", + "name": "Guarará", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.75802000", + "longitude": "-43.02469000" + }, + { + "id": "12063", + "name": "Guarda-Mor", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.76393000", + "longitude": "-47.14784000" + }, + { + "id": "12074", + "name": "Guaxupé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.29181000", + "longitude": "-46.68110000" + }, + { + "id": "12080", + "name": "Guidoval", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.17678000", + "longitude": "-42.79015000" + }, + { + "id": "12081", + "name": "Guimarânia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.81689000", + "longitude": "-46.73553000" + }, + { + "id": "12084", + "name": "Guiricema", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.01294000", + "longitude": "-42.69893000" + }, + { + "id": "12085", + "name": "Gurinhatã", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.06643000", + "longitude": "-49.86875000" + }, + { + "id": "12094", + "name": "Heliodora", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.04159000", + "longitude": "-45.54430000" + }, + { + "id": "12116", + "name": "Iapu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.35090000", + "longitude": "-42.23727000" + }, + { + "id": "12127", + "name": "Ibertioga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.45140000", + "longitude": "-43.94316000" + }, + { + "id": "12133", + "name": "Ibiaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.81004000", + "longitude": "-44.79235000" + }, + { + "id": "12164", + "name": "Ibiá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.54368000", + "longitude": "-46.61732000" + }, + { + "id": "12144", + "name": "Ibiracatu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.66695000", + "longitude": "-44.13281000" + }, + { + "id": "12145", + "name": "Ibiraci", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.40137000", + "longitude": "-47.14267000" + }, + { + "id": "12155", + "name": "Ibirité", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.02194000", + "longitude": "-44.05889000" + }, + { + "id": "12162", + "name": "Ibitiúra de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.06721000", + "longitude": "-46.40735000" + }, + { + "id": "12163", + "name": "Ibituruna", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.16363000", + "longitude": "-44.77552000" + }, + { + "id": "12168", + "name": "Icaraí de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.22108000", + "longitude": "-44.85922000" + }, + { + "id": "12181", + "name": "Igarapé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.05423000", + "longitude": "-44.31636000" + }, + { + "id": "12189", + "name": "Igaratinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.96011000", + "longitude": "-44.72106000" + }, + { + "id": "12199", + "name": "Iguatama", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.14528000", + "longitude": "-45.74194000" + }, + { + "id": "12204", + "name": "Ijaci", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.18351000", + "longitude": "-44.92240000" + }, + { + "id": "12215", + "name": "Ilicínea", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.93023000", + "longitude": "-45.81821000" + }, + { + "id": "12224", + "name": "Imbé de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.61863000", + "longitude": "-41.96773000" + }, + { + "id": "12230", + "name": "Inconfidentes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.34042000", + "longitude": "-46.28495000" + }, + { + "id": "12231", + "name": "Indaiabira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.57633000", + "longitude": "-42.15728000" + }, + { + "id": "12237", + "name": "Indianópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.97216000", + "longitude": "-47.88555000" + }, + { + "id": "12244", + "name": "Ingaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.41317000", + "longitude": "-44.93685000" + }, + { + "id": "12251", + "name": "Inhaúma", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.49972000", + "longitude": "-44.42415000" + }, + { + "id": "12250", + "name": "Inhapim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.48349000", + "longitude": "-42.10953000" + }, + { + "id": "12254", + "name": "Inimutaba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.71149000", + "longitude": "-44.27571000" + }, + { + "id": "12259", + "name": "Ipaba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.40560000", + "longitude": "-42.36072000" + }, + { + "id": "12261", + "name": "Ipanema", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.75724000", + "longitude": "-41.76801000" + }, + { + "id": "12264", + "name": "Ipatinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.46833000", + "longitude": "-42.53667000" + }, + { + "id": "12271", + "name": "Ipiaçu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.70679000", + "longitude": "-49.91749000" + }, + { + "id": "12295", + "name": "Ipuiúna", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.00732000", + "longitude": "-46.12468000" + }, + { + "id": "12316", + "name": "Iraí de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.06330000", + "longitude": "-47.43698000" + }, + { + "id": "12469", + "name": "Itaú de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.71790000", + "longitude": "-46.77932000" + }, + { + "id": "12471", + "name": "Itaúna", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.07440000", + "longitude": "-44.58626000" + }, + { + "id": "12333", + "name": "Itabira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.61917000", + "longitude": "-43.22694000" + }, + { + "id": "12334", + "name": "Itabirinha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.52982000", + "longitude": "-41.25370000" + }, + { + "id": "12335", + "name": "Itabirito", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.23843000", + "longitude": "-43.78016000" + }, + { + "id": "12339", + "name": "Itacambira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.88654000", + "longitude": "-43.30766000" + }, + { + "id": "12340", + "name": "Itacarambi", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.10222000", + "longitude": "-44.09194000" + }, + { + "id": "12351", + "name": "Itaguara", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.37868000", + "longitude": "-44.54609000" + }, + { + "id": "12361", + "name": "Itaipé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.42738000", + "longitude": "-41.65509000" + }, + { + "id": "12370", + "name": "Itajubá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.42051000", + "longitude": "-45.42137000" + }, + { + "id": "12377", + "name": "Itamarandiba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.85429000", + "longitude": "-42.89409000" + }, + { + "id": "12379", + "name": "Itamarati de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.41883000", + "longitude": "-42.83387000" + }, + { + "id": "12381", + "name": "Itambacuri", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.18510000", + "longitude": "-41.88894000" + }, + { + "id": "12386", + "name": "Itambé do Mato Dentro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.40318000", + "longitude": "-43.34103000" + }, + { + "id": "12387", + "name": "Itamogi", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.08608000", + "longitude": "-47.05061000" + }, + { + "id": "12388", + "name": "Itamonte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.28733000", + "longitude": "-44.75274000" + }, + { + "id": "12390", + "name": "Itanhandu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.29583000", + "longitude": "-44.93472000" + }, + { + "id": "12393", + "name": "Itanhomi", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.15484000", + "longitude": "-41.83333000" + }, + { + "id": "12395", + "name": "Itaobim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.56326000", + "longitude": "-41.53486000" + }, + { + "id": "12399", + "name": "Itapagipe", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.75086000", + "longitude": "-49.42853000" + }, + { + "id": "12404", + "name": "Itapecerica", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.45398000", + "longitude": "-45.08814000" + }, + { + "id": "12415", + "name": "Itapeva", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.69829000", + "longitude": "-46.21291000" + }, + { + "id": "12455", + "name": "Itatiaiuçu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.22155000", + "longitude": "-44.46588000" + }, + { + "id": "12465", + "name": "Itaverava", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.70813000", + "longitude": "-43.59276000" + }, + { + "id": "12473", + "name": "Itinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.60721000", + "longitude": "-41.83181000" + }, + { + "id": "12485", + "name": "Itueta", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.37775000", + "longitude": "-41.09757000" + }, + { + "id": "12486", + "name": "Ituiutaba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.01507000", + "longitude": "-49.55042000" + }, + { + "id": "12488", + "name": "Itumirim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.28468000", + "longitude": "-44.83316000" + }, + { + "id": "12492", + "name": "Iturama", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.69460000", + "longitude": "-50.38219000" + }, + { + "id": "12493", + "name": "Itutinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.34817000", + "longitude": "-44.72387000" + }, + { + "id": "12608", + "name": "Jaíba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.21645000", + "longitude": "-43.67032000" + }, + { + "id": "12516", + "name": "Jaboticatubas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.41909000", + "longitude": "-43.74554000" + }, + { + "id": "12525", + "name": "Jacinto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.19209000", + "longitude": "-40.33175000" + }, + { + "id": "12534", + "name": "Jacuí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.01103000", + "longitude": "-46.71842000" + }, + { + "id": "12533", + "name": "Jacutinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.29632000", + "longitude": "-46.61044000" + }, + { + "id": "12539", + "name": "Jaguaraçu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.63591000", + "longitude": "-42.71705000" + }, + { + "id": "12554", + "name": "Jampruca", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.47226000", + "longitude": "-41.75735000" + }, + { + "id": "12555", + "name": "Janaúba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.77877000", + "longitude": "-43.36757000" + }, + { + "id": "12564", + "name": "Januária", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.32133000", + "longitude": "-45.20135000" + }, + { + "id": "12568", + "name": "Japaraíba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.12931000", + "longitude": "-45.53733000" + }, + { + "id": "12573", + "name": "Japonvar", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.94720000", + "longitude": "-44.34835000" + }, + { + "id": "12611", + "name": "Jeceaba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.55578000", + "longitude": "-44.03107000" + }, + { + "id": "12612", + "name": "Jenipapo de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.18727000", + "longitude": "-42.21222000" + }, + { + "id": "12614", + "name": "Jequeri", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.48079000", + "longitude": "-42.61567000" + }, + { + "id": "12615", + "name": "Jequitaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.16894000", + "longitude": "-44.46191000" + }, + { + "id": "12616", + "name": "Jequitibá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.21472000", + "longitude": "-44.03049000" + }, + { + "id": "12617", + "name": "Jequitinhonha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.40683000", + "longitude": "-41.05778000" + }, + { + "id": "12625", + "name": "Jesuânia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.00846000", + "longitude": "-45.28235000" + }, + { + "id": "12642", + "name": "Joaíma", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.80375000", + "longitude": "-41.01105000" + }, + { + "id": "12634", + "name": "Joanésia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.20319000", + "longitude": "-42.70665000" + }, + { + "id": "12636", + "name": "Joaquim Felício", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.62324000", + "longitude": "-44.09366000" + }, + { + "id": "12663", + "name": "João Monlevade", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.83861000", + "longitude": "-43.15561000" + }, + { + "id": "12666", + "name": "João Pinheiro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.55732000", + "longitude": "-45.97307000" + }, + { + "id": "12646", + "name": "Jordânia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.87487000", + "longitude": "-40.30532000" + }, + { + "id": "12652", + "name": "José Gonçalves de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.90496000", + "longitude": "-42.66905000" + }, + { + "id": "12653", + "name": "José Raydan", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.26371000", + "longitude": "-42.46528000" + }, + { + "id": "12649", + "name": "Josenópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.55307000", + "longitude": "-42.51701000" + }, + { + "id": "12671", + "name": "Juatuba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.95194000", + "longitude": "-44.34278000" + }, + { + "id": "12680", + "name": "Juiz de Fora", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.76417000", + "longitude": "-43.35028000" + }, + { + "id": "12694", + "name": "Juramento", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.83343000", + "longitude": "-43.58833000" + }, + { + "id": "12700", + "name": "Juruaia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.22649000", + "longitude": "-46.51449000" + }, + { + "id": "12712", + "name": "Juvenília", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.39930000", + "longitude": "-43.95055000" + }, + { + "id": "12722", + "name": "Ladainha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.64365000", + "longitude": "-41.83262000" + }, + { + "id": "12725", + "name": "Lagamar", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.97706000", + "longitude": "-46.70095000" + }, + { + "id": "12751", + "name": "Lagoa da Prata", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.99802000", + "longitude": "-45.49952000" + }, + { + "id": "12766", + "name": "Lagoa dos Patos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.01433000", + "longitude": "-44.66633000" + }, + { + "id": "12736", + "name": "Lagoa Dourada", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.91034000", + "longitude": "-44.06512000" + }, + { + "id": "12737", + "name": "Lagoa Formosa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.76494000", + "longitude": "-46.29006000" + }, + { + "id": "12739", + "name": "Lagoa Grande", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.74523000", + "longitude": "-46.53558000" + }, + { + "id": "12744", + "name": "Lagoa Santa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.62683000", + "longitude": "-43.87993000" + }, + { + "id": "12786", + "name": "Lajinha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.12411000", + "longitude": "-41.61531000" + }, + { + "id": "12788", + "name": "Lambari", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.98590000", + "longitude": "-45.35167000" + }, + { + "id": "12790", + "name": "Lamim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.77481000", + "longitude": "-43.48487000" + }, + { + "id": "12795", + "name": "Laranjal", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.35920000", + "longitude": "-42.45663000" + }, + { + "id": "12801", + "name": "Lassance", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.91014000", + "longitude": "-44.70859000" + }, + { + "id": "12808", + "name": "Lavras", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.26738000", + "longitude": "-45.04190000" + }, + { + "id": "12813", + "name": "Leandro Ferreira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.67492000", + "longitude": "-45.06134000" + }, + { + "id": "12816", + "name": "Leme do Prado", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.05253000", + "longitude": "-42.74591000" + }, + { + "id": "12820", + "name": "Leopoldina", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.53489000", + "longitude": "-42.64473000" + }, + { + "id": "12824", + "name": "Liberdade", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.01634000", + "longitude": "-44.34756000" + }, + { + "id": "12828", + "name": "Lima Duarte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.79037000", + "longitude": "-43.89583000" + }, + { + "id": "12830", + "name": "Limeira do Oeste", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.38786000", + "longitude": "-50.61280000" + }, + { + "id": "12850", + "name": "Lontra", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.83942000", + "longitude": "-44.27821000" + }, + { + "id": "12863", + "name": "Luisburgo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.44641000", + "longitude": "-42.07286000" + }, + { + "id": "12864", + "name": "Luislândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.19922000", + "longitude": "-44.60969000" + }, + { + "id": "12868", + "name": "Luminárias", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.51526000", + "longitude": "-44.92617000" + }, + { + "id": "12873", + "name": "Luz", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.84190000", + "longitude": "-45.67539000" + }, + { + "id": "12897", + "name": "Machacalis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.08810000", + "longitude": "-40.71826000" + }, + { + "id": "12900", + "name": "Machado", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.69549000", + "longitude": "-45.88809000" + }, + { + "id": "12908", + "name": "Madre de Deus de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.48464000", + "longitude": "-44.33264000" + }, + { + "id": "12924", + "name": "Malacacheta", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.83800000", + "longitude": "-42.08895000" + }, + { + "id": "12934", + "name": "Mamonas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.03302000", + "longitude": "-42.94513000" + }, + { + "id": "12946", + "name": "Manga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.65871000", + "longitude": "-44.12621000" + }, + { + "id": "12949", + "name": "Manhuaçu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.18647000", + "longitude": "-42.08653000" + }, + { + "id": "12950", + "name": "Manhumirim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.34755000", + "longitude": "-41.93559000" + }, + { + "id": "12958", + "name": "Mantena", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.68550000", + "longitude": "-41.10755000" + }, + { + "id": "12962", + "name": "Mar de Espanha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.87597000", + "longitude": "-43.02192000" + }, + { + "id": "12987", + "name": "Maravilhas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.51232000", + "longitude": "-44.67995000" + }, + { + "id": "13005", + "name": "Maria da Fé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.32718000", + "longitude": "-45.31720000" + }, + { + "id": "13007", + "name": "Mariana", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.37778000", + "longitude": "-43.41611000" + }, + { + "id": "13013", + "name": "Marilac", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.49516000", + "longitude": "-42.06556000" + }, + { + "id": "13021", + "name": "Maripá de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.70096000", + "longitude": "-42.95929000" + }, + { + "id": "13026", + "name": "Marliéria", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.69241000", + "longitude": "-42.62724000" + }, + { + "id": "13028", + "name": "Marmelópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.45970000", + "longitude": "-45.16973000" + }, + { + "id": "13031", + "name": "Martinho Campos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.42013000", + "longitude": "-45.17974000" + }, + { + "id": "13033", + "name": "Martins Soares", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.25994000", + "longitude": "-41.83980000" + }, + { + "id": "13048", + "name": "Mata Verde", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.76794000", + "longitude": "-40.69882000" + }, + { + "id": "13053", + "name": "Materlândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.44658000", + "longitude": "-43.01437000" + }, + { + "id": "13054", + "name": "Mateus Leme", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.01630000", + "longitude": "-44.43422000" + }, + { + "id": "13055", + "name": "Mathias Lobato", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.60479000", + "longitude": "-41.96192000" + }, + { + "id": "13056", + "name": "Matias Barbosa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.87484000", + "longitude": "-43.30507000" + }, + { + "id": "13057", + "name": "Matias Cardoso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.84562000", + "longitude": "-43.69791000" + }, + { + "id": "13063", + "name": "Matipó", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.30226000", + "longitude": "-42.31613000" + }, + { + "id": "13069", + "name": "Mato Verde", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.42884000", + "longitude": "-42.87463000" + }, + { + "id": "13071", + "name": "Matozinhos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.52070000", + "longitude": "-44.05031000" + }, + { + "id": "13076", + "name": "Matutina", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.19364000", + "longitude": "-45.99564000" + }, + { + "id": "13290", + "name": "Mário Campos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.07230000", + "longitude": "-44.17602000" + }, + { + "id": "13090", + "name": "Medeiros", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.01139000", + "longitude": "-46.35800000" + }, + { + "id": "13094", + "name": "Medina", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.30152000", + "longitude": "-41.53818000" + }, + { + "id": "13098", + "name": "Mendes Pimentel", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.62642000", + "longitude": "-41.34871000" + }, + { + "id": "13101", + "name": "Mercês", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.18716000", + "longitude": "-43.33657000" + }, + { + "id": "13105", + "name": "Mesquita", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.24964000", + "longitude": "-42.61603000" + }, + { + "id": "13122", + "name": "Minas Novas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.35500000", + "longitude": "-42.40892000" + }, + { + "id": "13125", + "name": "Minduri", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.66835000", + "longitude": "-44.59475000" + }, + { + "id": "13153", + "name": "Miraí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.14581000", + "longitude": "-42.60077000" + }, + { + "id": "13130", + "name": "Mirabela", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.27910000", + "longitude": "-44.16713000" + }, + { + "id": "13136", + "name": "Miradouro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.85191000", + "longitude": "-42.38714000" + }, + { + "id": "13152", + "name": "Miravânia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.75285000", + "longitude": "-44.42057000" + }, + { + "id": "13162", + "name": "Moeda", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.33273000", + "longitude": "-44.01660000" + }, + { + "id": "13163", + "name": "Moema", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.84295000", + "longitude": "-45.42119000" + }, + { + "id": "13176", + "name": "Monjolos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.37562000", + "longitude": "-44.02596000" + }, + { + "id": "13179", + "name": "Monsenhor Paulo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.72267000", + "longitude": "-45.46795000" + }, + { + "id": "13182", + "name": "Montalvânia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.41086000", + "longitude": "-44.44214000" + }, + { + "id": "13189", + "name": "Monte Alegre de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.81882000", + "longitude": "-48.91823000" + }, + { + "id": "13196", + "name": "Monte Azul", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.21266000", + "longitude": "-43.02334000" + }, + { + "id": "13198", + "name": "Monte Belo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.32001000", + "longitude": "-46.33519000" + }, + { + "id": "13201", + "name": "Monte Carmelo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.63960000", + "longitude": "-47.49788000" + }, + { + "id": "13204", + "name": "Monte Formoso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.87599000", + "longitude": "-41.27134000" + }, + { + "id": "13209", + "name": "Monte Santo de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.20428000", + "longitude": "-46.95403000" + }, + { + "id": "13211", + "name": "Monte Sião", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.43134000", + "longitude": "-46.56796000" + }, + { + "id": "13212", + "name": "Monte Verde", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.86417000", + "longitude": "-46.03500000" + }, + { + "id": "13220", + "name": "Montes Claros", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.58789000", + "longitude": "-43.89995000" + }, + { + "id": "13222", + "name": "Montezuma", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.19248000", + "longitude": "-42.48132000" + }, + { + "id": "13228", + "name": "Morada Nova de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.56612000", + "longitude": "-45.47222000" + }, + { + "id": "13247", + "name": "Morro da Garça", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.61746000", + "longitude": "-44.63238000" + }, + { + "id": "13250", + "name": "Morro do Pilar", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.23372000", + "longitude": "-43.40140000" + }, + { + "id": "13272", + "name": "Munhoz", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.62898000", + "longitude": "-46.30889000" + }, + { + "id": "13278", + "name": "Muriaé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.13056000", + "longitude": "-42.36639000" + }, + { + "id": "13285", + "name": "Mutum", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.92677000", + "longitude": "-41.44835000" + }, + { + "id": "13288", + "name": "Muzambinho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.35240000", + "longitude": "-46.51842000" + }, + { + "id": "13294", + "name": "Nacip Raydan", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.47447000", + "longitude": "-42.17506000" + }, + { + "id": "13296", + "name": "Nanuque", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.73565000", + "longitude": "-40.44441000" + }, + { + "id": "13297", + "name": "Naque", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.18321000", + "longitude": "-42.33843000" + }, + { + "id": "13300", + "name": "Natalândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.56307000", + "longitude": "-46.51392000" + }, + { + "id": "13305", + "name": "Natércia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.13227000", + "longitude": "-45.49689000" + }, + { + "id": "13308", + "name": "Nazareno", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.20793000", + "longitude": "-44.60851000" + }, + { + "id": "13317", + "name": "Nepomuceno", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.24027000", + "longitude": "-45.24015000" + }, + { + "id": "13327", + "name": "Ninheira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.42231000", + "longitude": "-41.65775000" + }, + { + "id": "13357", + "name": "Nova Belém", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.49977000", + "longitude": "-41.11879000" + }, + { + "id": "13372", + "name": "Nova Era", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.70970000", + "longitude": "-43.01401000" + }, + { + "id": "13398", + "name": "Nova Lima", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.98556000", + "longitude": "-43.84667000" + }, + { + "id": "13406", + "name": "Nova Módica", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.45009000", + "longitude": "-41.51304000" + }, + { + "id": "13419", + "name": "Nova Ponte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.28646000", + "longitude": "-47.71367000" + }, + { + "id": "13420", + "name": "Nova Porteirinha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.71578000", + "longitude": "-43.28155000" + }, + { + "id": "13426", + "name": "Nova Resende", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.09898000", + "longitude": "-46.41684000" + }, + { + "id": "13436", + "name": "Nova Serrana", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.84529000", + "longitude": "-44.97669000" + }, + { + "id": "13443", + "name": "Nova União", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.64356000", + "longitude": "-43.57796000" + }, + { + "id": "13457", + "name": "Novo Cruzeiro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.39233000", + "longitude": "-41.96978000" + }, + { + "id": "13472", + "name": "Novo Oriente de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.25169000", + "longitude": "-41.22927000" + }, + { + "id": "13483", + "name": "Novorizonte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.01733000", + "longitude": "-42.38889000" + }, + { + "id": "13493", + "name": "Olaria", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.90638000", + "longitude": "-43.96851000" + }, + { + "id": "13512", + "name": "Olímpio Noronha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.08551000", + "longitude": "-45.28730000" + }, + { + "id": "13501", + "name": "Olhos-d'Água", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.48888000", + "longitude": "-43.54347000" + }, + { + "id": "13506", + "name": "Oliveira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73820000", + "longitude": "-44.71612000" + }, + { + "id": "13507", + "name": "Oliveira Fortes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.33869000", + "longitude": "-43.51985000" + }, + { + "id": "13514", + "name": "Onça de Pitangui", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.71041000", + "longitude": "-44.74654000" + }, + { + "id": "13515", + "name": "Oratórios", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.43729000", + "longitude": "-42.79741000" + }, + { + "id": "13520", + "name": "Orizânia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.50549000", + "longitude": "-42.21156000" + }, + { + "id": "13540", + "name": "Ouro Branco", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.52994000", + "longitude": "-43.69422000" + }, + { + "id": "13541", + "name": "Ouro Fino", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.25689000", + "longitude": "-46.37384000" + }, + { + "id": "13542", + "name": "Ouro Preto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.39304000", + "longitude": "-43.64191000" + }, + { + "id": "13548", + "name": "Ouro Verde de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.03431000", + "longitude": "-41.29473000" + }, + { + "id": "13562", + "name": "Padre Carvalho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.26316000", + "longitude": "-42.60251000" + }, + { + "id": "13564", + "name": "Padre Paraíso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.06100000", + "longitude": "-41.53826000" + }, + { + "id": "13566", + "name": "Pai Pedro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.32734000", + "longitude": "-43.19505000" + }, + { + "id": "13569", + "name": "Paineiras", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.91817000", + "longitude": "-45.53737000" + }, + { + "id": "13571", + "name": "Pains", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.37374000", + "longitude": "-45.73139000" + }, + { + "id": "13572", + "name": "Paiva", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.28809000", + "longitude": "-43.41715000" + }, + { + "id": "13581", + "name": "Palma", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.43106000", + "longitude": "-42.32065000" + }, + { + "id": "13610", + "name": "Palmópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.77843000", + "longitude": "-40.37475000" + }, + { + "id": "13620", + "name": "Papagaios", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.39686000", + "longitude": "-44.69502000" + }, + { + "id": "13624", + "name": "Paracatu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.13285000", + "longitude": "-46.88258000" + }, + { + "id": "13627", + "name": "Paraguaçu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.58081000", + "longitude": "-45.74296000" + }, + { + "id": "13632", + "name": "Paraisópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.57668000", + "longitude": "-45.84583000" + }, + { + "id": "13650", + "name": "Paraopeba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.27228000", + "longitude": "-44.45274000" + }, + { + "id": "13684", + "name": "Pará de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.82122000", + "longitude": "-44.61286000" + }, + { + "id": "13685", + "name": "Passa Quatro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.40871000", + "longitude": "-44.95994000" + }, + { + "id": "13687", + "name": "Passa Tempo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.64350000", + "longitude": "-44.49857000" + }, + { + "id": "13689", + "name": "Passa-Vinte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.17877000", + "longitude": "-44.26002000" + }, + { + "id": "13690", + "name": "Passabém", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.35651000", + "longitude": "-43.18735000" + }, + { + "id": "13700", + "name": "Passos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.71889000", + "longitude": "-46.60972000" + }, + { + "id": "13703", + "name": "Patis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.05798000", + "longitude": "-44.11137000" + }, + { + "id": "13707", + "name": "Patos de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.57889000", + "longitude": "-46.51806000" + }, + { + "id": "13709", + "name": "Patrocínio", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.01305000", + "longitude": "-47.06790000" + }, + { + "id": "13711", + "name": "Patrocínio do Muriaé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.16714000", + "longitude": "-42.25572000" + }, + { + "id": "13721", + "name": "Paula Cândido", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.86034000", + "longitude": "-42.98154000" + }, + { + "id": "13729", + "name": "Paulistas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.43393000", + "longitude": "-42.86603000" + }, + { + "id": "13741", + "name": "Pavão", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.46780000", + "longitude": "-41.07743000" + }, + { + "id": "13822", + "name": "Peçanha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.54540000", + "longitude": "-42.49385000" + }, + { + "id": "13746", + "name": "Pedra Azul", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.96404000", + "longitude": "-41.22145000" + }, + { + "id": "13748", + "name": "Pedra Bonita", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.46665000", + "longitude": "-42.37756000" + }, + { + "id": "13758", + "name": "Pedra do Anta", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.59796000", + "longitude": "-42.71247000" + }, + { + "id": "13759", + "name": "Pedra do Indaiá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.28200000", + "longitude": "-45.21859000" + }, + { + "id": "13752", + "name": "Pedra Dourada", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.82636000", + "longitude": "-42.15154000" + }, + { + "id": "13760", + "name": "Pedralva", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.25067000", + "longitude": "-45.45324000" + }, + { + "id": "13765", + "name": "Pedras de Maria da Cruz", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.63347000", + "longitude": "-44.30841000" + }, + { + "id": "13771", + "name": "Pedrinópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.19064000", + "longitude": "-47.50212000" + }, + { + "id": "13779", + "name": "Pedro Leopoldo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.64468000", + "longitude": "-44.03938000" + }, + { + "id": "13782", + "name": "Pedro Teixeira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.72800000", + "longitude": "-43.72046000" + }, + { + "id": "13799", + "name": "Pequeri", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.81623000", + "longitude": "-43.14007000" + }, + { + "id": "13800", + "name": "Pequi", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.61044000", + "longitude": "-44.63355000" + }, + { + "id": "13804", + "name": "Perdões", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.07090000", + "longitude": "-45.06710000" + }, + { + "id": "13802", + "name": "Perdigão", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.92135000", + "longitude": "-45.08070000" + }, + { + "id": "13803", + "name": "Perdizes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.36522000", + "longitude": "-47.15986000" + }, + { + "id": "13809", + "name": "Periquito", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.04695000", + "longitude": "-42.21606000" + }, + { + "id": "13815", + "name": "Pescador", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.32119000", + "longitude": "-41.55163000" + }, + { + "id": "13826", + "name": "Piau", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.50206000", + "longitude": "-43.31473000" + }, + { + "id": "13832", + "name": "Piedade de Caratinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.75899000", + "longitude": "-42.03936000" + }, + { + "id": "13833", + "name": "Piedade de Ponte Nova", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.24410000", + "longitude": "-42.71587000" + }, + { + "id": "13834", + "name": "Piedade do Rio Grande", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.50287000", + "longitude": "-44.16154000" + }, + { + "id": "13835", + "name": "Piedade dos Gerais", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.48078000", + "longitude": "-44.25310000" + }, + { + "id": "13844", + "name": "Pimenta", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.48505000", + "longitude": "-45.83344000" + }, + { + "id": "13857", + "name": "Pingo-d'Água", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.73720000", + "longitude": "-42.42838000" + }, + { + "id": "13877", + "name": "Pintópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.01120000", + "longitude": "-45.21931000" + }, + { + "id": "13913", + "name": "Piraúba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.26468000", + "longitude": "-43.01397000" + }, + { + "id": "13885", + "name": "Piracema", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.51921000", + "longitude": "-44.41751000" + }, + { + "id": "13889", + "name": "Pirajuba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.94073000", + "longitude": "-48.70306000" + }, + { + "id": "13892", + "name": "Piranga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.62892000", + "longitude": "-43.28354000" + }, + { + "id": "13895", + "name": "Piranguçu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.56347000", + "longitude": "-45.51039000" + }, + { + "id": "13894", + "name": "Piranguinho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.34876000", + "longitude": "-45.59462000" + }, + { + "id": "13899", + "name": "Pirapetinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.66797000", + "longitude": "-42.36515000" + }, + { + "id": "13900", + "name": "Pirapora", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.41957000", + "longitude": "-44.85974000" + }, + { + "id": "13924", + "name": "Pitangui", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.57287000", + "longitude": "-44.87568000" + }, + { + "id": "13928", + "name": "Piuí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.46528000", + "longitude": "-45.95806000" + }, + { + "id": "13927", + "name": "Piumhi", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.43261000", + "longitude": "-46.06077000" + }, + { + "id": "13943", + "name": "Planura", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.06924000", + "longitude": "-48.67523000" + }, + { + "id": "14047", + "name": "Poço Fundo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.82067000", + "longitude": "-45.98826000" + }, + { + "id": "14053", + "name": "Poços de Caldas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.79340000", + "longitude": "-46.53571000" + }, + { + "id": "13948", + "name": "Pocrane", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.57501000", + "longitude": "-41.56271000" + }, + { + "id": "13955", + "name": "Pompéu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.14952000", + "longitude": "-44.91485000" + }, + { + "id": "13970", + "name": "Ponte Nova", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.40703000", + "longitude": "-42.92058000" + }, + { + "id": "13976", + "name": "Ponto Chique", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.63769000", + "longitude": "-44.93803000" + }, + { + "id": "13978", + "name": "Ponto dos Volantes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.85440000", + "longitude": "-41.46344000" + }, + { + "id": "13988", + "name": "Porteirinha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.68690000", + "longitude": "-43.14041000" + }, + { + "id": "14006", + "name": "Porto Firme", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.66732000", + "longitude": "-43.06871000" + }, + { + "id": "14037", + "name": "Poté", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.79279000", + "longitude": "-41.76522000" + }, + { + "id": "14038", + "name": "Pouso Alegre", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.23000000", + "longitude": "-45.93639000" + }, + { + "id": "14039", + "name": "Pouso Alto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.17957000", + "longitude": "-44.95271000" + }, + { + "id": "14061", + "name": "Prados", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.10761000", + "longitude": "-44.06479000" + }, + { + "id": "14069", + "name": "Prata", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.37346000", + "longitude": "-48.94362000" + }, + { + "id": "14072", + "name": "Pratápolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.78572000", + "longitude": "-46.84447000" + }, + { + "id": "14071", + "name": "Pratinha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.74704000", + "longitude": "-46.42881000" + }, + { + "id": "14076", + "name": "Presidente Bernardes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.77329000", + "longitude": "-43.16210000" + }, + { + "id": "14085", + "name": "Presidente Juscelino", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.73883000", + "longitude": "-44.07767000" + }, + { + "id": "14089", + "name": "Presidente Kubitschek", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.64982000", + "longitude": "-43.57979000" + }, + { + "id": "14094", + "name": "Presidente Olegário", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.16191000", + "longitude": "-46.40629000" + }, + { + "id": "14113", + "name": "Prudente de Morais", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.46809000", + "longitude": "-44.11363000" + }, + { + "id": "14127", + "name": "Quartel Geral", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.28715000", + "longitude": "-45.58434000" + }, + { + "id": "14144", + "name": "Queluzito", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73147000", + "longitude": "-43.89355000" + }, + { + "id": "14175", + "name": "Raposos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.97619000", + "longitude": "-43.79018000" + }, + { + "id": "14176", + "name": "Raul Soares", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.01424000", + "longitude": "-42.40893000" + }, + { + "id": "14180", + "name": "Recreio", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.52854000", + "longitude": "-42.44327000" + }, + { + "id": "14187", + "name": "Reduto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.22867000", + "longitude": "-41.94273000" + }, + { + "id": "14198", + "name": "Resende Costa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.84128000", + "longitude": "-44.28110000" + }, + { + "id": "14203", + "name": "Resplendor", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.20265000", + "longitude": "-41.14336000" + }, + { + "id": "14204", + "name": "Ressaquinha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.09458000", + "longitude": "-43.78435000" + }, + { + "id": "14209", + "name": "Riachinho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.24455000", + "longitude": "-45.89421000" + }, + { + "id": "14217", + "name": "Riacho dos Machados", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.06608000", + "longitude": "-42.97549000" + }, + { + "id": "14247", + "name": "Ribeirão das Neves", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.76694000", + "longitude": "-44.08667000" + }, + { + "id": "14245", + "name": "Ribeirão Vermelho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.15385000", + "longitude": "-45.07881000" + }, + { + "id": "14257", + "name": "Rio Acima", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.11704000", + "longitude": "-43.76542000" + }, + { + "id": "14268", + "name": "Rio Casca", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.12888000", + "longitude": "-42.66076000" + }, + { + "id": "14315", + "name": "Rio do Prado", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.68344000", + "longitude": "-40.56002000" + }, + { + "id": "14272", + "name": "Rio Doce", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.20614000", + "longitude": "-42.89246000" + }, + { + "id": "14273", + "name": "Rio Espera", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.85358000", + "longitude": "-43.52051000" + }, + { + "id": "14280", + "name": "Rio Manso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.24916000", + "longitude": "-44.34028000" + }, + { + "id": "14285", + "name": "Rio Novo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.47241000", + "longitude": "-43.15069000" + }, + { + "id": "14287", + "name": "Rio Paranaíba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.19894000", + "longitude": "-46.29215000" + }, + { + "id": "14289", + "name": "Rio Pardo de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.73003000", + "longitude": "-42.57320000" + }, + { + "id": "14290", + "name": "Rio Piracicaba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.97486000", + "longitude": "-43.16111000" + }, + { + "id": "14291", + "name": "Rio Pomba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.25409000", + "longitude": "-43.17161000" + }, + { + "id": "14292", + "name": "Rio Preto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.04485000", + "longitude": "-43.86975000" + }, + { + "id": "14302", + "name": "Rio Vermelho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.26867000", + "longitude": "-43.07424000" + }, + { + "id": "14323", + "name": "Ritápolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.99288000", + "longitude": "-44.37052000" + }, + { + "id": "14327", + "name": "Rochedo de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.64268000", + "longitude": "-43.03311000" + }, + { + "id": "14330", + "name": "Rodeiro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.21255000", + "longitude": "-42.84086000" + }, + { + "id": "14338", + "name": "Romaria", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.89336000", + "longitude": "-47.58130000" + }, + { + "id": "14352", + "name": "Rosário da Limeira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.98600000", + "longitude": "-42.51507000" + }, + { + "id": "14357", + "name": "Rubelita", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.34214000", + "longitude": "-42.22800000" + }, + { + "id": "14359", + "name": "Rubim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.45147000", + "longitude": "-40.49301000" + }, + { + "id": "14366", + "name": "Sabará", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.85393000", + "longitude": "-43.78326000" + }, + { + "id": "14368", + "name": "Sabinópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.64885000", + "longitude": "-43.06554000" + }, + { + "id": "14372", + "name": "Sacramento", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.88039000", + "longitude": "-47.22600000" + }, + { + "id": "14387", + "name": "Salinas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.11853000", + "longitude": "-42.17403000" + }, + { + "id": "14398", + "name": "Salto da Divisa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.08589000", + "longitude": "-40.04463000" + }, + { + "id": "14423", + "name": "Santa Bárbara", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.02361000", + "longitude": "-43.44495000" + }, + { + "id": "14426", + "name": "Santa Bárbara do Leste", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.94064000", + "longitude": "-42.10329000" + }, + { + "id": "14427", + "name": "Santa Bárbara do Monte Verde", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.97690000", + "longitude": "-43.69324000" + }, + { + "id": "14430", + "name": "Santa Bárbara do Tugúrio", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.23902000", + "longitude": "-43.52380000" + }, + { + "id": "14448", + "name": "Santa Cruz de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.12001000", + "longitude": "-44.21369000" + }, + { + "id": "14450", + "name": "Santa Cruz de Salinas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.06175000", + "longitude": "-41.79919000" + }, + { + "id": "14453", + "name": "Santa Cruz do Escalvado", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.23339000", + "longitude": "-42.82110000" + }, + { + "id": "14459", + "name": "Santa Efigênia de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.86234000", + "longitude": "-42.40032000" + }, + { + "id": "14466", + "name": "Santa Fé de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.68124000", + "longitude": "-45.59725000" + }, + { + "id": "14475", + "name": "Santa Helena de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.90289000", + "longitude": "-40.66215000" + }, + { + "id": "14486", + "name": "Santa Juliana", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.35572000", + "longitude": "-47.53705000" + }, + { + "id": "14490", + "name": "Santa Luzia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.76972000", + "longitude": "-43.85139000" + }, + { + "id": "14500", + "name": "Santa Margarida", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.43571000", + "longitude": "-42.27056000" + }, + { + "id": "14509", + "name": "Santa Maria de Itabira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.43588000", + "longitude": "-43.06843000" + }, + { + "id": "14515", + "name": "Santa Maria do Salto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.30440000", + "longitude": "-40.11096000" + }, + { + "id": "14516", + "name": "Santa Maria do Suaçuí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.25258000", + "longitude": "-42.33882000" + }, + { + "id": "14527", + "name": "Santa Rita de Caldas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.01936000", + "longitude": "-46.27369000" + }, + { + "id": "14529", + "name": "Santa Rita de Ibitipoca", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.56153000", + "longitude": "-43.95797000" + }, + { + "id": "14530", + "name": "Santa Rita de Jacutinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.10905000", + "longitude": "-44.10325000" + }, + { + "id": "14531", + "name": "Santa Rita de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.86922000", + "longitude": "-42.12700000" + }, + { + "id": "14533", + "name": "Santa Rita do Itueto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.41798000", + "longitude": "-41.40277000" + }, + { + "id": "14537", + "name": "Santa Rita do Sapucaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.25623000", + "longitude": "-45.67459000" + }, + { + "id": "14541", + "name": "Santa Rosa da Serra", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.53874000", + "longitude": "-45.98000000" + }, + { + "id": "14565", + "name": "Santa Vitória", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.09193000", + "longitude": "-50.29906000" + }, + { + "id": "14572", + "name": "Santana da Vargem", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.26761000", + "longitude": "-45.48969000" + }, + { + "id": "14573", + "name": "Santana de Cataguases", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.28322000", + "longitude": "-42.56580000" + }, + { + "id": "14576", + "name": "Santana de Pirapama", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.90777000", + "longitude": "-43.92702000" + }, + { + "id": "14580", + "name": "Santana do Deserto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.94535000", + "longitude": "-43.17445000" + }, + { + "id": "14581", + "name": "Santana do Garambéu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.64675000", + "longitude": "-44.06937000" + }, + { + "id": "14584", + "name": "Santana do Jacaré", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.88867000", + "longitude": "-45.07914000" + }, + { + "id": "14586", + "name": "Santana do Manhuaçu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.05562000", + "longitude": "-41.89770000" + }, + { + "id": "14590", + "name": "Santana do Paraíso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.38010000", + "longitude": "-42.54068000" + }, + { + "id": "14592", + "name": "Santana do Riacho", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.18420000", + "longitude": "-43.68380000" + }, + { + "id": "14596", + "name": "Santana dos Montes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.79856000", + "longitude": "-43.64577000" + }, + { + "id": "14621", + "name": "Santo Antônio do Amparo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.91660000", + "longitude": "-44.95511000" + }, + { + "id": "14623", + "name": "Santo Antônio do Aventureiro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.74424000", + "longitude": "-42.81100000" + }, + { + "id": "14626", + "name": "Santo Antônio do Grama", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.32329000", + "longitude": "-42.61551000" + }, + { + "id": "14627", + "name": "Santo Antônio do Itambé", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.49169000", + "longitude": "-43.26278000" + }, + { + "id": "14629", + "name": "Santo Antônio do Jacinto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.50934000", + "longitude": "-40.27997000" + }, + { + "id": "14633", + "name": "Santo Antônio do Monte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.07993000", + "longitude": "-45.30587000" + }, + { + "id": "14638", + "name": "Santo Antônio do Retiro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.30144000", + "longitude": "-42.64417000" + }, + { + "id": "14639", + "name": "Santo Antônio do Rio Abaixo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.25051000", + "longitude": "-43.25300000" + }, + { + "id": "14649", + "name": "Santo Hipólito", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.38378000", + "longitude": "-44.17728000" + }, + { + "id": "14654", + "name": "Santos Dumont", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.46453000", + "longitude": "-43.52573000" + }, + { + "id": "14664", + "name": "Sapucaí-Mirim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.79166000", + "longitude": "-45.84222000" + }, + { + "id": "14670", + "name": "Sardoá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.77353000", + "longitude": "-42.40303000" + }, + { + "id": "14672", + "name": "Sarzedo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.04463000", + "longitude": "-44.13442000" + }, + { + "id": "14837", + "name": "São Bento Abade", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.55981000", + "longitude": "-45.06653000" + }, + { + "id": "14851", + "name": "São Brás do Suaçuí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.62195000", + "longitude": "-43.96923000" + }, + { + "id": "14866", + "name": "São Domingos das Dores", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.51985000", + "longitude": "-42.03401000" + }, + { + "id": "14873", + "name": "São Domingos do Prata", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.89785000", + "longitude": "-42.88422000" + }, + { + "id": "14901", + "name": "São Félix de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.55894000", + "longitude": "-41.44459000" + }, + { + "id": "14882", + "name": "São Francisco", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.88365000", + "longitude": "-44.84306000" + }, + { + "id": "14888", + "name": "São Francisco de Paula", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.71868000", + "longitude": "-44.99234000" + }, + { + "id": "14889", + "name": "São Francisco de Sales", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.77179000", + "longitude": "-49.81040000" + }, + { + "id": "14892", + "name": "São Francisco do Glória", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.78528000", + "longitude": "-42.28488000" + }, + { + "id": "14912", + "name": "São Geraldo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.90833000", + "longitude": "-42.82833000" + }, + { + "id": "14913", + "name": "São Geraldo da Piedade", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.91396000", + "longitude": "-42.31056000" + }, + { + "id": "14915", + "name": "São Geraldo do Baixio", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.91798000", + "longitude": "-41.36253000" + }, + { + "id": "14917", + "name": "São Gonçalo do Abaeté", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.23315000", + "longitude": "-45.61317000" + }, + { + "id": "14921", + "name": "São Gonçalo do Pará", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.97290000", + "longitude": "-44.84024000" + }, + { + "id": "14923", + "name": "São Gonçalo do Rio Abaixo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.81182000", + "longitude": "-43.32838000" + }, + { + "id": "14924", + "name": "São Gonçalo do Rio Preto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.07630000", + "longitude": "-43.35534000" + }, + { + "id": "14925", + "name": "São Gonçalo do Sapucaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.91053000", + "longitude": "-45.60119000" + }, + { + "id": "14927", + "name": "São Gotardo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.31111000", + "longitude": "-46.04889000" + }, + { + "id": "14932", + "name": "São Joaquim de Bicas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.05781000", + "longitude": "-44.24979000" + }, + { + "id": "15002", + "name": "São João Batista do Glória", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.53122000", + "longitude": "-46.44580000" + }, + { + "id": "15010", + "name": "São João da Lagoa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.87872000", + "longitude": "-44.34205000" + }, + { + "id": "15011", + "name": "São João da Mata", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.93521000", + "longitude": "-45.93300000" + }, + { + "id": "15014", + "name": "São João da Ponte", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.90314000", + "longitude": "-43.83053000" + }, + { + "id": "15019", + "name": "São João das Missões", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-14.88665000", + "longitude": "-44.21265000" + }, + { + "id": "15023", + "name": "São João del Rei", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.25033000", + "longitude": "-44.24481000" + }, + { + "id": "15032", + "name": "São João do Manhuaçu", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.38351000", + "longitude": "-42.15632000" + }, + { + "id": "15033", + "name": "São João do Manteninha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.73950000", + "longitude": "-41.15749000" + }, + { + "id": "15035", + "name": "São João do Oriente", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.34848000", + "longitude": "-42.17407000" + }, + { + "id": "15036", + "name": "São João do Pacuí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.53392000", + "longitude": "-44.54062000" + }, + { + "id": "15038", + "name": "São João do Paraíso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.37652000", + "longitude": "-41.95693000" + }, + { + "id": "15003", + "name": "São João Evangelista", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.50849000", + "longitude": "-42.78221000" + }, + { + "id": "15004", + "name": "São João Nepomuceno", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.58615000", + "longitude": "-43.01503000" + }, + { + "id": "14939", + "name": "São José da Barra", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.75050000", + "longitude": "-46.28526000" + }, + { + "id": "14945", + "name": "São José da Lapa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.69017000", + "longitude": "-43.99106000" + }, + { + "id": "14946", + "name": "São José da Safira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.33059000", + "longitude": "-42.10391000" + }, + { + "id": "14948", + "name": "São José da Varginha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.68910000", + "longitude": "-44.55308000" + }, + { + "id": "14959", + "name": "São José do Alegre", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.34058000", + "longitude": "-45.52023000" + }, + { + "id": "14969", + "name": "São José do Divino", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.40103000", + "longitude": "-41.37248000" + }, + { + "id": "14971", + "name": "São José do Goiabal", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.92360000", + "longitude": "-42.69184000" + }, + { + "id": "14975", + "name": "São José do Jacuri", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.25160000", + "longitude": "-42.67396000" + }, + { + "id": "14977", + "name": "São José do Mantimento", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.02453000", + "longitude": "-41.76334000" + }, + { + "id": "15052", + "name": "São Lourenço", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.11746000", + "longitude": "-45.03226000" + }, + { + "id": "15086", + "name": "São Miguel do Anta", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73482000", + "longitude": "-42.69789000" + }, + { + "id": "15111", + "name": "São Pedro da União", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.11290000", + "longitude": "-46.64760000" + }, + { + "id": "15120", + "name": "São Pedro do Suaçuí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.35451000", + "longitude": "-42.59570000" + }, + { + "id": "15124", + "name": "São Pedro dos Ferros", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.06522000", + "longitude": "-42.56304000" + }, + { + "id": "15130", + "name": "São Romão", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.35912000", + "longitude": "-45.46775000" + }, + { + "id": "15132", + "name": "São Roque de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.16741000", + "longitude": "-46.47292000" + }, + { + "id": "15138", + "name": "São Sebastião da Bela Vista", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.16425000", + "longitude": "-45.78515000" + }, + { + "id": "15141", + "name": "São Sebastião da Vargem Alegre", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.02882000", + "longitude": "-42.59877000" + }, + { + "id": "15144", + "name": "São Sebastião do Anta", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.51787000", + "longitude": "-41.93921000" + }, + { + "id": "15146", + "name": "São Sebastião do Maranhão", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.06833000", + "longitude": "-42.53730000" + }, + { + "id": "15147", + "name": "São Sebastião do Oeste", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.24378000", + "longitude": "-45.04068000" + }, + { + "id": "15148", + "name": "São Sebastião do Paraíso", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.91694000", + "longitude": "-46.99139000" + }, + { + "id": "15150", + "name": "São Sebastião do Rio Preto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.29918000", + "longitude": "-43.22996000" + }, + { + "id": "15151", + "name": "São Sebastião do Rio Verde", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.21276000", + "longitude": "-45.02049000" + }, + { + "id": "15158", + "name": "São Thomé das Letras", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.73939000", + "longitude": "-44.96812000" + }, + { + "id": "15159", + "name": "São Tiago", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.93607000", + "longitude": "-44.55961000" + }, + { + "id": "15160", + "name": "São Tomás de Aquino", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.80317000", + "longitude": "-47.13081000" + }, + { + "id": "15172", + "name": "São Vicente de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.67023000", + "longitude": "-44.46650000" + }, + { + "id": "14691", + "name": "Sem-Peixe", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.07337000", + "longitude": "-42.81556000" + }, + { + "id": "14694", + "name": "Senador Amaral", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.55358000", + "longitude": "-46.22421000" + }, + { + "id": "14696", + "name": "Senador Cortes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.76164000", + "longitude": "-42.91138000" + }, + { + "id": "14698", + "name": "Senador Firmino", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.89680000", + "longitude": "-43.11033000" + }, + { + "id": "14701", + "name": "Senador José Bento", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.15837000", + "longitude": "-46.14282000" + }, + { + "id": "14704", + "name": "Senador Modestino Gonçalves", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.91341000", + "longitude": "-43.21328000" + }, + { + "id": "14711", + "name": "Senhora de Oliveira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.80180000", + "longitude": "-43.34536000" + }, + { + "id": "14712", + "name": "Senhora do Porto", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.90274000", + "longitude": "-43.08578000" + }, + { + "id": "14713", + "name": "Senhora dos Remédios", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.02878000", + "longitude": "-43.59680000" + }, + { + "id": "14717", + "name": "Sericita", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.49536000", + "longitude": "-42.45991000" + }, + { + "id": "14719", + "name": "Seritinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.91887000", + "longitude": "-44.46300000" + }, + { + "id": "14724", + "name": "Serra Azul de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.38225000", + "longitude": "-43.20251000" + }, + { + "id": "14736", + "name": "Serra da Saudade", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.38394000", + "longitude": "-45.80002000" + }, + { + "id": "14741", + "name": "Serra do Salitre", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.14990000", + "longitude": "-46.65307000" + }, + { + "id": "14742", + "name": "Serra dos Aimorés", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.75022000", + "longitude": "-40.27113000" + }, + { + "id": "14748", + "name": "Serranópolis de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.89984000", + "longitude": "-42.85134000" + }, + { + "id": "14744", + "name": "Serrania", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.55510000", + "longitude": "-46.10712000" + }, + { + "id": "14746", + "name": "Serranos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.82389000", + "longitude": "-44.54236000" + }, + { + "id": "14755", + "name": "Serro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.52041000", + "longitude": "-43.38075000" + }, + { + "id": "14765", + "name": "Sete Lagoas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.46583000", + "longitude": "-44.24667000" + }, + { + "id": "14768", + "name": "Setubinha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.66692000", + "longitude": "-42.19505000" + }, + { + "id": "14779", + "name": "Silveirânia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.14447000", + "longitude": "-43.19826000" + }, + { + "id": "14781", + "name": "Silvianópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.05297000", + "longitude": "-45.81579000" + }, + { + "id": "14787", + "name": "Simão Pereira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.96631000", + "longitude": "-43.29030000" + }, + { + "id": "14784", + "name": "Simonésia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.99894000", + "longitude": "-41.98726000" + }, + { + "id": "14799", + "name": "Sobrália", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.21309000", + "longitude": "-42.14818000" + }, + { + "id": "14804", + "name": "Soledade de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.02216000", + "longitude": "-45.04271000" + }, + { + "id": "15191", + "name": "Tabuleiro", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.35779000", + "longitude": "-43.24828000" + }, + { + "id": "15202", + "name": "Taiobeiras", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.83800000", + "longitude": "-42.09039000" + }, + { + "id": "15224", + "name": "Taparuba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.72752000", + "longitude": "-41.60277000" + }, + { + "id": "15233", + "name": "Tapira", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.93370000", + "longitude": "-46.91795000" + }, + { + "id": "15237", + "name": "Tapiraí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.87272000", + "longitude": "-46.13291000" + }, + { + "id": "15244", + "name": "Taquaraçu de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.63354000", + "longitude": "-43.69161000" + }, + { + "id": "15256", + "name": "Tarumirim", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.30041000", + "longitude": "-41.91984000" + }, + { + "id": "15301", + "name": "Teófilo Otoni", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.67910000", + "longitude": "-41.33738000" + }, + { + "id": "15268", + "name": "Teixeiras", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.63003000", + "longitude": "-42.85443000" + }, + { + "id": "15319", + "name": "Timóteo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.58106000", + "longitude": "-42.64953000" + }, + { + "id": "15321", + "name": "Tiradentes", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.11854000", + "longitude": "-44.16072000" + }, + { + "id": "15323", + "name": "Tiros", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.85727000", + "longitude": "-45.84049000" + }, + { + "id": "15325", + "name": "Tocantins", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.18115000", + "longitude": "-43.02555000" + }, + { + "id": "15328", + "name": "Tocos do Moji", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.35665000", + "longitude": "-46.14951000" + }, + { + "id": "15330", + "name": "Toledo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.70569000", + "longitude": "-46.39041000" + }, + { + "id": "15333", + "name": "Tombos", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.88046000", + "longitude": "-42.06821000" + }, + { + "id": "15373", + "name": "Três Corações", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.70260000", + "longitude": "-45.21421000" + }, + { + "id": "15378", + "name": "Três Marias", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.28891000", + "longitude": "-45.02559000" + }, + { + "id": "15381", + "name": "Três Pontas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.40521000", + "longitude": "-45.49443000" + }, + { + "id": "15392", + "name": "Tumiritinga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.02399000", + "longitude": "-41.72297000" + }, + { + "id": "15398", + "name": "Tupaciguara", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.59222000", + "longitude": "-48.70500000" + }, + { + "id": "15413", + "name": "Turmalina", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.25347000", + "longitude": "-42.83041000" + }, + { + "id": "15420", + "name": "Turvolândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.87243000", + "longitude": "-45.80089000" + }, + { + "id": "15431", + "name": "Ubaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.38337000", + "longitude": "-44.85525000" + }, + { + "id": "15427", + "name": "Ubaporanga", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.66187000", + "longitude": "-42.05903000" + }, + { + "id": "15438", + "name": "Ubá", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.12000000", + "longitude": "-42.94278000" + }, + { + "id": "15433", + "name": "Uberaba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.54826000", + "longitude": "-47.94144000" + }, + { + "id": "15434", + "name": "Uberlândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.02333000", + "longitude": "-48.33477000" + }, + { + "id": "15448", + "name": "Umburatiba", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.25657000", + "longitude": "-40.66878000" + }, + { + "id": "15453", + "name": "Unaí", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.58634000", + "longitude": "-46.77009000" + }, + { + "id": "15460", + "name": "União de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.34087000", + "longitude": "-50.35738000" + }, + { + "id": "15470", + "name": "Uruana de Minas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.07488000", + "longitude": "-46.33829000" + }, + { + "id": "15478", + "name": "Urucânia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.32243000", + "longitude": "-42.71972000" + }, + { + "id": "15476", + "name": "Urucuia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.01822000", + "longitude": "-45.61731000" + }, + { + "id": "15508", + "name": "Vargem Alegre", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.60085000", + "longitude": "-42.32330000" + }, + { + "id": "15510", + "name": "Vargem Bonita", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.40556000", + "longitude": "-46.31426000" + }, + { + "id": "15514", + "name": "Vargem Grande do Rio Pardo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.34182000", + "longitude": "-42.30107000" + }, + { + "id": "15517", + "name": "Varginha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.55139000", + "longitude": "-45.43028000" + }, + { + "id": "15520", + "name": "Varjão de MInas", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.45617000", + "longitude": "-45.89854000" + }, + { + "id": "15523", + "name": "Varzelândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.65541000", + "longitude": "-43.92043000" + }, + { + "id": "15525", + "name": "Vazante", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.78783000", + "longitude": "-46.79546000" + }, + { + "id": "15621", + "name": "Várzea da Palma", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.46025000", + "longitude": "-44.74043000" + }, + { + "id": "15547", + "name": "Veríssimo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.59178000", + "longitude": "-48.35893000" + }, + { + "id": "15540", + "name": "Verdelândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-15.54677000", + "longitude": "-43.68013000" + }, + { + "id": "15542", + "name": "Veredinha", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-17.50571000", + "longitude": "-42.74858000" + }, + { + "id": "15543", + "name": "Vermelho Novo", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.03087000", + "longitude": "-42.27068000" + }, + { + "id": "15548", + "name": "Vespasiano", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.69194000", + "longitude": "-43.92333000" + }, + { + "id": "15607", + "name": "Viçosa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73527000", + "longitude": "-42.89525000" + }, + { + "id": "15562", + "name": "Vieiras", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.90888000", + "longitude": "-42.28015000" + }, + { + "id": "15585", + "name": "Virgínia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.35515000", + "longitude": "-45.11577000" + }, + { + "id": "15582", + "name": "Virgem da Lapa", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-16.71637000", + "longitude": "-42.34853000" + }, + { + "id": "15583", + "name": "Virginópolis", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.81508000", + "longitude": "-42.66943000" + }, + { + "id": "15584", + "name": "Virgolândia", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-18.44284000", + "longitude": "-42.30736000" + }, + { + "id": "15587", + "name": "Visconde do Rio Branco", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.99510000", + "longitude": "-42.85289000" + }, + { + "id": "15609", + "name": "Volta Grande", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.75298000", + "longitude": "-42.57357000" + }, + { + "id": "15628", + "name": "Wenceslau Braz", + "state_id": 1998, + "state_code": "MG", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.53974000", + "longitude": "-45.40214000" + }, + { + "id": "10100", + "name": "Aguiar", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.07620000", + "longitude": "-38.24255000" + }, + { + "id": "10108", + "name": "Alagoa Grande", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.07831000", + "longitude": "-35.59525000" + }, + { + "id": "10109", + "name": "Alagoa Nova", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.04733000", + "longitude": "-35.75397000" + }, + { + "id": "10110", + "name": "Alagoinha", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.96256000", + "longitude": "-35.51465000" + }, + { + "id": "10116", + "name": "Alcantil", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.69816000", + "longitude": "-36.06604000" + }, + { + "id": "10135", + "name": "Algodão de Jandaíra", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.86987000", + "longitude": "-35.97724000" + }, + { + "id": "10136", + "name": "Alhandra", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.35043000", + "longitude": "-34.92835000" + }, + { + "id": "10219", + "name": "Amparo", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.55889000", + "longitude": "-37.03372000" + }, + { + "id": "10284", + "name": "Aparecida", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.80925000", + "longitude": "-38.07182000" + }, + { + "id": "10366", + "name": "Araçagi", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.85419000", + "longitude": "-35.36047000" + }, + { + "id": "10347", + "name": "Arara", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.82833000", + "longitude": "-35.75833000" + }, + { + "id": "10357", + "name": "Araruna", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.55833000", + "longitude": "-35.74167000" + }, + { + "id": "10383", + "name": "Areia", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.94723000", + "longitude": "-35.66927000" + }, + { + "id": "10386", + "name": "Areia de Baraúnas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.11328000", + "longitude": "-36.97177000" + }, + { + "id": "10387", + "name": "Areial", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.04397000", + "longitude": "-35.92622000" + }, + { + "id": "10405", + "name": "Aroeiras", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.52057000", + "longitude": "-35.69927000" + }, + { + "id": "10430", + "name": "Assunção", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.07371000", + "longitude": "-36.69894000" + }, + { + "id": "15653", + "name": "Água Branca", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.46957000", + "longitude": "-37.66100000" + }, + { + "id": "10589", + "name": "Baía da Traição", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.66287000", + "longitude": "-34.97272000" + }, + { + "id": "10496", + "name": "Bananeiras", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.75000000", + "longitude": "-35.63333000" + }, + { + "id": "10505", + "name": "Baraúna", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.61853000", + "longitude": "-36.26964000" + }, + { + "id": "10525", + "name": "Barra de Santa Rosa", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.79042000", + "longitude": "-36.00175000" + }, + { + "id": "10526", + "name": "Barra de Santana", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.59054000", + "longitude": "-35.98824000" + }, + { + "id": "10530", + "name": "Barra de São Miguel", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.71640000", + "longitude": "-36.25481000" + }, + { + "id": "10587", + "name": "Bayeux", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.12136000", + "longitude": "-34.91725000" + }, + { + "id": "10614", + "name": "Belém", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.69167000", + "longitude": "-35.53333000" + }, + { + "id": "10619", + "name": "Belém do Brejo do Cruz", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.18861000", + "longitude": "-37.53583000" + }, + { + "id": "10634", + "name": "Bernardino Batista", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.47656000", + "longitude": "-38.56998000" + }, + { + "id": "10664", + "name": "Boa Ventura", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.45676000", + "longitude": "-38.17678000" + }, + { + "id": "10667", + "name": "Boa Vista", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.26995000", + "longitude": "-36.15741000" + }, + { + "id": "10700", + "name": "Bom Jesus", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.81845000", + "longitude": "-38.62549000" + }, + { + "id": "10725", + "name": "Bom Sucesso", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.47349000", + "longitude": "-37.95770000" + }, + { + "id": "10741", + "name": "Bonito de Santa Fé", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.28940000", + "longitude": "-38.47977000" + }, + { + "id": "10743", + "name": "Boqueirão", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.48237000", + "longitude": "-36.13422000" + }, + { + "id": "10751", + "name": "Borborema", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.79913000", + "longitude": "-35.62094000" + }, + { + "id": "10795", + "name": "Brejo do Cruz", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.32578000", + "longitude": "-37.49716000" + }, + { + "id": "10797", + "name": "Brejo dos Santos", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.39546000", + "longitude": "-37.86070000" + }, + { + "id": "10842", + "name": "Caaporã", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.51556000", + "longitude": "-34.90833000" + }, + { + "id": "10845", + "name": "Cabaceiras", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.50856000", + "longitude": "-36.33351000" + }, + { + "id": "10850", + "name": "Cabedelo", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.98111000", + "longitude": "-34.83389000" + }, + { + "id": "10874", + "name": "Cachoeira dos Índios", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.94486000", + "longitude": "-38.69902000" + }, + { + "id": "10880", + "name": "Cacimba de Areia", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.13451000", + "longitude": "-37.15370000" + }, + { + "id": "10881", + "name": "Cacimba de Dentro", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.64167000", + "longitude": "-35.79000000" + }, + { + "id": "10882", + "name": "Cacimbas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.23180000", + "longitude": "-37.09984000" + }, + { + "id": "10907", + "name": "Caiçara", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.59631000", + "longitude": "-35.39497000" + }, + { + "id": "10915", + "name": "Cajazeiras", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.89028000", + "longitude": "-38.55528000" + }, + { + "id": "10917", + "name": "Cajazeirinhas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.94633000", + "longitude": "-37.81454000" + }, + { + "id": "10924", + "name": "Caldas Brandão", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.15105000", + "longitude": "-35.34870000" + }, + { + "id": "10936", + "name": "Camalaú", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.92695000", + "longitude": "-36.74211000" + }, + { + "id": "10962", + "name": "Campina Grande", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.23056000", + "longitude": "-35.88111000" + }, + { + "id": "11073", + "name": "Capim", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.89150000", + "longitude": "-35.18300000" + }, + { + "id": "11118", + "name": "Caraúbas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.79092000", + "longitude": "-36.50278000" + }, + { + "id": "11164", + "name": "Carrapateira", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.02919000", + "longitude": "-38.32951000" + }, + { + "id": "11182", + "name": "Casserengue", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.78130000", + "longitude": "-35.81676000" + }, + { + "id": "11203", + "name": "Catingueira", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.13699000", + "longitude": "-37.59654000" + }, + { + "id": "11205", + "name": "Catolé do Rocha", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.34389000", + "longitude": "-37.74667000" + }, + { + "id": "11211", + "name": "Caturité", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.41991000", + "longitude": "-36.04194000" + }, + { + "id": "11344", + "name": "Conceição", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.49917000", + "longitude": "-38.51375000" + }, + { + "id": "11370", + "name": "Condado", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.85244000", + "longitude": "-37.61864000" + }, + { + "id": "11371", + "name": "Conde", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.25972000", + "longitude": "-34.90750000" + }, + { + "id": "11377", + "name": "Congo", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.79578000", + "longitude": "-36.63487000" + }, + { + "id": "11406", + "name": "Coremas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.01444000", + "longitude": "-37.94583000" + }, + { + "id": "11459", + "name": "Coxixola", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.66749000", + "longitude": "-36.61824000" + }, + { + "id": "11492", + "name": "Cruz do Espírito Santo", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.14000000", + "longitude": "-35.08639000" + }, + { + "id": "11505", + "name": "Cubati", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.86116000", + "longitude": "-36.33415000" + }, + { + "id": "11509", + "name": "Cuité", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.48361000", + "longitude": "-36.15361000" + }, + { + "id": "11510", + "name": "Cuité de Mamanguape", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.89788000", + "longitude": "-35.26042000" + }, + { + "id": "11508", + "name": "Cuitegi", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.90639000", + "longitude": "-35.53423000" + }, + { + "id": "11531", + "name": "Curral de Cima", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.72359000", + "longitude": "-35.28596000" + }, + { + "id": "11530", + "name": "Curral Velho", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.55796000", + "longitude": "-38.19847000" + }, + { + "id": "11560", + "name": "Damião", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.67843000", + "longitude": "-35.92205000" + }, + { + "id": "11579", + "name": "Desterro", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.29056000", + "longitude": "-37.09389000" + }, + { + "id": "11584", + "name": "Diamante", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.41004000", + "longitude": "-38.30873000" + }, + { + "id": "11642", + "name": "Dona Inês", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.61354000", + "longitude": "-35.62654000" + }, + { + "id": "11665", + "name": "Duas Estradas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.71946000", + "longitude": "-35.39737000" + }, + { + "id": "11687", + "name": "Emas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.12680000", + "longitude": "-37.73881000" + }, + { + "id": "11731", + "name": "Esperança", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.99864000", + "longitude": "-35.90777000" + }, + { + "id": "11770", + "name": "Fagundes", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.35500000", + "longitude": "-35.77500000" + }, + { + "id": "11894", + "name": "Frei Martinho", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.44605000", + "longitude": "-36.48061000" + }, + { + "id": "11911", + "name": "Gado Bravo", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.59984000", + "longitude": "-35.81967000" + }, + { + "id": "12034", + "name": "Guarabira", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.85472000", + "longitude": "-35.49000000" + }, + { + "id": "12086", + "name": "Gurinhém", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.12389000", + "longitude": "-35.42444000" + }, + { + "id": "12087", + "name": "Gurjão", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.26100000", + "longitude": "-36.50008000" + }, + { + "id": "12130", + "name": "Ibiara", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.48251000", + "longitude": "-38.38051000" + }, + { + "id": "12179", + "name": "Igaracy", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.13856000", + "longitude": "-38.13526000" + }, + { + "id": "12217", + "name": "Imaculada", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.38972000", + "longitude": "-37.50917000" + }, + { + "id": "12245", + "name": "Ingá", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.25441000", + "longitude": "-35.62897000" + }, + { + "id": "12325", + "name": "Itabaiana", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.32861000", + "longitude": "-35.33250000" + }, + { + "id": "12430", + "name": "Itaporanga", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.30035000", + "longitude": "-38.25159000" + }, + { + "id": "12432", + "name": "Itapororoca", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.81152000", + "longitude": "-35.24478000" + }, + { + "id": "12461", + "name": "Itatuba", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.37500000", + "longitude": "-35.62833000" + }, + { + "id": "12518", + "name": "Jacaraú", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.61222000", + "longitude": "-35.29278000" + }, + { + "id": "12621", + "name": "Jericó", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.50746000", + "longitude": "-37.80665000" + }, + { + "id": "12665", + "name": "João Pessoa", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.11500000", + "longitude": "-34.86306000" + }, + { + "id": "12643", + "name": "Joca Claudino", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.48432000", + "longitude": "-38.46407000" + }, + { + "id": "12669", + "name": "Juarez Távora", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.15975000", + "longitude": "-35.57160000" + }, + { + "id": "12672", + "name": "Juazeirinho", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.99463000", + "longitude": "-36.60213000" + }, + { + "id": "12713", + "name": "Juàzeirinho", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.81667000", + "longitude": "-38.05000000" + }, + { + "id": "12683", + "name": "Junco do Seridó", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.97843000", + "longitude": "-36.72769000" + }, + { + "id": "12698", + "name": "Juripiranga", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.35000000", + "longitude": "-35.22087000" + }, + { + "id": "12699", + "name": "Juru", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.49131000", + "longitude": "-37.78854000" + }, + { + "id": "12733", + "name": "Lagoa", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.59521000", + "longitude": "-37.84991000" + }, + { + "id": "12752", + "name": "Lagoa de Dentro", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.68308000", + "longitude": "-35.35907000" + }, + { + "id": "12746", + "name": "Lagoa Seca", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.17083000", + "longitude": "-35.85361000" + }, + { + "id": "12802", + "name": "Lastro", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.53740000", + "longitude": "-38.18946000" + }, + { + "id": "12842", + "name": "Livramento", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.34008000", + "longitude": "-36.93209000" + }, + { + "id": "12848", + "name": "Logradouro", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.55268000", + "longitude": "-35.42864000" + }, + { + "id": "12858", + "name": "Lucena", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.92461000", + "longitude": "-34.90267000" + }, + { + "id": "12930", + "name": "Malta", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.90400000", + "longitude": "-37.51251000" + }, + { + "id": "12931", + "name": "Mamanguape", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.83861000", + "longitude": "-35.12611000" + }, + { + "id": "12940", + "name": "Manaíra", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.70611000", + "longitude": "-38.15444000" + }, + { + "id": "12990", + "name": "Marcação", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.74717000", + "longitude": "-34.99103000" + }, + { + "id": "13003", + "name": "Mari", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.07138000", + "longitude": "-35.30258000" + }, + { + "id": "13023", + "name": "Marizópolis", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.82133000", + "longitude": "-38.33496000" + }, + { + "id": "13043", + "name": "Massaranduba", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.20476000", + "longitude": "-35.78379000" + }, + { + "id": "13050", + "name": "Mataraca", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.55476000", + "longitude": "-35.03690000" + }, + { + "id": "13061", + "name": "Matinhas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.12428000", + "longitude": "-35.76070000" + }, + { + "id": "13065", + "name": "Mato Grosso", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.54728000", + "longitude": "-37.75067000" + }, + { + "id": "13075", + "name": "Maturéia", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.27175000", + "longitude": "-37.33940000" + }, + { + "id": "13292", + "name": "Mãe d'Água", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.21990000", + "longitude": "-37.45284000" + }, + { + "id": "13164", + "name": "Mogeiro", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.29944000", + "longitude": "-35.47944000" + }, + { + "id": "13181", + "name": "Montadas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.08947000", + "longitude": "-35.90300000" + }, + { + "id": "13205", + "name": "Monte Horebe", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.20792000", + "longitude": "-38.52503000" + }, + { + "id": "13215", + "name": "Monteiro", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.91637000", + "longitude": "-37.17496000" + }, + { + "id": "13266", + "name": "Mulungu", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.02444000", + "longitude": "-35.46194000" + }, + { + "id": "13304", + "name": "Natuba", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.64139000", + "longitude": "-35.55000000" + }, + { + "id": "13309", + "name": "Nazarezinho", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.91991000", + "longitude": "-38.32592000" + }, + { + "id": "13379", + "name": "Nova Floresta", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.48792000", + "longitude": "-36.20101000" + }, + { + "id": "13410", + "name": "Nova Olinda", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.45231000", + "longitude": "-38.01122000" + }, + { + "id": "13417", + "name": "Nova Palmeira", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.67346000", + "longitude": "-36.44186000" + }, + { + "id": "13494", + "name": "Olho d'Água", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.26106000", + "longitude": "-37.73242000" + }, + { + "id": "13505", + "name": "Olivedos", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.99403000", + "longitude": "-36.23822000" + }, + { + "id": "13544", + "name": "Ouro Velho", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.60554000", + "longitude": "-37.13565000" + }, + { + "id": "13652", + "name": "Parari", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.31136000", + "longitude": "-36.67699000" + }, + { + "id": "13692", + "name": "Passagem", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.11889000", + "longitude": "-37.03671000" + }, + { + "id": "13706", + "name": "Patos", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.02444000", + "longitude": "-37.28000000" + }, + { + "id": "13726", + "name": "Paulista", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.59504000", + "longitude": "-37.60966000" + }, + { + "id": "13750", + "name": "Pedra Branca", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.46068000", + "longitude": "-38.07996000" + }, + { + "id": "13754", + "name": "Pedra Lavrada", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.78024000", + "longitude": "-36.44200000" + }, + { + "id": "13764", + "name": "Pedras de Fogo", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.40194000", + "longitude": "-35.11639000" + }, + { + "id": "13781", + "name": "Pedro Régis", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.67047000", + "longitude": "-35.31031000" + }, + { + "id": "13824", + "name": "Piancó", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.19806000", + "longitude": "-37.92917000" + }, + { + "id": "13830", + "name": "Picuí", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.51056000", + "longitude": "-36.34694000" + }, + { + "id": "13836", + "name": "Pilar", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.25739000", + "longitude": "-35.26971000" + }, + { + "id": "13841", + "name": "Pilões", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.89446000", + "longitude": "-35.59432000" + }, + { + "id": "13843", + "name": "Pilõezinhos", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.85269000", + "longitude": "-35.54455000" + }, + { + "id": "13920", + "name": "Pirpirituba", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.78000000", + "longitude": "-35.49861000" + }, + { + "id": "13925", + "name": "Pitimbu", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.41381000", + "longitude": "-34.83686000" + }, + { + "id": "14046", + "name": "Poço Dantas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.38792000", + "longitude": "-38.53359000" + }, + { + "id": "14052", + "name": "Poço de José de Moura", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.59957000", + "longitude": "-38.50574000" + }, + { + "id": "13946", + "name": "Pocinhos", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.07667000", + "longitude": "-36.06111000" + }, + { + "id": "13951", + "name": "Pombal", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.77028000", + "longitude": "-37.80167000" + }, + { + "id": "14068", + "name": "Prata", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.71250000", + "longitude": "-37.09411000" + }, + { + "id": "14107", + "name": "Princesa Isabel", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.73667000", + "longitude": "-37.99333000" + }, + { + "id": "14118", + "name": "Puxinanã", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.16111000", + "longitude": "-35.96056000" + }, + { + "id": "14140", + "name": "Queimadas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.42696000", + "longitude": "-35.89774000" + }, + { + "id": "14158", + "name": "Quixaba", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.05081000", + "longitude": "-37.11783000" + }, + { + "id": "14194", + "name": "Remígio", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.94646000", + "longitude": "-35.78039000" + }, + { + "id": "14221", + "name": "Riachão", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.55515000", + "longitude": "-35.62324000" + }, + { + "id": "14223", + "name": "Riachão do Bacamarte", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.26337000", + "longitude": "-35.67518000" + }, + { + "id": "14226", + "name": "Riachão do Poço", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.17041000", + "longitude": "-35.30300000" + }, + { + "id": "14215", + "name": "Riacho de Santo Antônio", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.66143000", + "longitude": "-36.13551000" + }, + { + "id": "14216", + "name": "Riacho dos Cavalos", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.47140000", + "longitude": "-37.64024000" + }, + { + "id": "14299", + "name": "Rio Tinto", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.79673000", + "longitude": "-35.03715000" + }, + { + "id": "14382", + "name": "Salgadinho", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.08934000", + "longitude": "-36.86318000" + }, + { + "id": "14385", + "name": "Salgado de São Félix", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.35694000", + "longitude": "-35.44056000" + }, + { + "id": "14433", + "name": "Santa Cecília", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.72027000", + "longitude": "-35.93681000" + }, + { + "id": "14440", + "name": "Santa Cruz", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.54542000", + "longitude": "-38.04968000" + }, + { + "id": "14471", + "name": "Santa Helena", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.72745000", + "longitude": "-38.59506000" + }, + { + "id": "14478", + "name": "Santa Inês", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.68334000", + "longitude": "-38.59346000" + }, + { + "id": "14489", + "name": "Santa Luzia", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.87222000", + "longitude": "-36.91861000" + }, + { + "id": "14525", + "name": "Santa Rita", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.10437000", + "longitude": "-34.97387000" + }, + { + "id": "14552", + "name": "Santa Teresinha", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.12089000", + "longitude": "-37.49654000" + }, + { + "id": "14574", + "name": "Santana de Mangueira", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.66593000", + "longitude": "-38.35848000" + }, + { + "id": "14595", + "name": "Santana dos Garrotes", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.38163000", + "longitude": "-37.95386000" + }, + { + "id": "14608", + "name": "Santo André", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.24178000", + "longitude": "-36.61460000" + }, + { + "id": "14665", + "name": "Sapé", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.07937000", + "longitude": "-35.21734000" + }, + { + "id": "14834", + "name": "São Bentinho", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.88452000", + "longitude": "-37.75898000" + }, + { + "id": "14836", + "name": "São Bento", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.47344000", + "longitude": "-37.47144000" + }, + { + "id": "14862", + "name": "São Domingos", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.80733000", + "longitude": "-37.91657000" + }, + { + "id": "14870", + "name": "São Domingos do Cariri", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.56749000", + "longitude": "-36.36393000" + }, + { + "id": "14879", + "name": "São Francisco", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.63302000", + "longitude": "-38.03780000" + }, + { + "id": "15027", + "name": "São João do Cariri", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.48465000", + "longitude": "-36.48602000" + }, + { + "id": "15042", + "name": "São João do Rio do Peixe", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.71851000", + "longitude": "-38.42942000" + }, + { + "id": "15046", + "name": "São João do Tigre", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.10906000", + "longitude": "-36.79766000" + }, + { + "id": "14943", + "name": "São José da Lagoa Tapada", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.94245000", + "longitude": "-38.09393000" + }, + { + "id": "14952", + "name": "São José de Caiana", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.25916000", + "longitude": "-38.34483000" + }, + { + "id": "14953", + "name": "São José de Espinharas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.80244000", + "longitude": "-37.38224000" + }, + { + "id": "14955", + "name": "São José de Piranhas", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.12056000", + "longitude": "-38.50194000" + }, + { + "id": "14956", + "name": "São José de Princesa", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.70649000", + "longitude": "-38.08465000" + }, + { + "id": "14962", + "name": "São José do Bonfim", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.13715000", + "longitude": "-37.31607000" + }, + { + "id": "14963", + "name": "São José do Brejo do Cruz", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.23731000", + "longitude": "-37.37932000" + }, + { + "id": "14986", + "name": "São José do Sabugi", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.82784000", + "longitude": "-36.80335000" + }, + { + "id": "14994", + "name": "São José dos Cordeiros", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.41638000", + "longitude": "-36.84773000" + }, + { + "id": "14997", + "name": "São José dos Ramos", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.25103000", + "longitude": "-35.37410000" + }, + { + "id": "15068", + "name": "São Mamede", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.92111000", + "longitude": "-37.09131000" + }, + { + "id": "15084", + "name": "São Miguel de Taipu", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.21706000", + "longitude": "-35.20175000" + }, + { + "id": "15142", + "name": "São Sebastião de Lagoa de Roça", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.08497000", + "longitude": "-35.84445000" + }, + { + "id": "15154", + "name": "São Sebastião do Umbuzeiro", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.15690000", + "longitude": "-37.02220000" + }, + { + "id": "15173", + "name": "São Vicente do Seridó", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.88683000", + "longitude": "-36.42652000" + }, + { + "id": "14725", + "name": "Serra Branca", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.53333000", + "longitude": "-38.26667000" + }, + { + "id": "14735", + "name": "Serra da Raiz", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.69703000", + "longitude": "-35.43579000" + }, + { + "id": "14728", + "name": "Serra Grande", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.25090000", + "longitude": "-38.39588000" + }, + { + "id": "14733", + "name": "Serra Redonda", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.15665000", + "longitude": "-35.67628000" + }, + { + "id": "14750", + "name": "Serraria", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.86365000", + "longitude": "-35.66926000" + }, + { + "id": "14763", + "name": "Sertãozinho", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.73939000", + "longitude": "-35.41628000" + }, + { + "id": "14797", + "name": "Sobrado", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.16887000", + "longitude": "-35.23251000" + }, + { + "id": "14807", + "name": "Solânea", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.73321000", + "longitude": "-35.69495000" + }, + { + "id": "14802", + "name": "Soledade", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.05722000", + "longitude": "-36.36278000" + }, + { + "id": "14813", + "name": "Sossêgo", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.67592000", + "longitude": "-36.17875000" + }, + { + "id": "14815", + "name": "Sousa", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.73098000", + "longitude": "-38.18614000" + }, + { + "id": "14825", + "name": "Sumé", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.67167000", + "longitude": "-36.88000000" + }, + { + "id": "15196", + "name": "Tacima", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.53805000", + "longitude": "-35.52277000" + }, + { + "id": "15230", + "name": "Taperoá", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.16870000", + "longitude": "-36.79197000" + }, + { + "id": "15262", + "name": "Tavares", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.61418000", + "longitude": "-37.87959000" + }, + { + "id": "15265", + "name": "Teixeira", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.24821000", + "longitude": "-37.27523000" + }, + { + "id": "15277", + "name": "Tenório", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.97568000", + "longitude": "-36.62216000" + }, + { + "id": "15362", + "name": "Triunfo", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.58475000", + "longitude": "-38.57827000" + }, + { + "id": "15442", + "name": "Uiraúna", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.49650000", + "longitude": "-38.38015000" + }, + { + "id": "15449", + "name": "Umbuzeiro", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.67111000", + "longitude": "-35.73927000" + }, + { + "id": "15613", + "name": "Várzea", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.80276000", + "longitude": "-37.03707000" + }, + { + "id": "15563", + "name": "Vieirópolis", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.55838000", + "longitude": "-38.27091000" + }, + { + "id": "15593", + "name": "Vista Serrana", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.74167000", + "longitude": "-37.57597000" + }, + { + "id": "15644", + "name": "Zabelê", + "state_id": 2005, + "state_code": "PB", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.07634000", + "longitude": "-37.05635000" + }, + { + "id": "10060", + "name": "Abatiá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.29903000", + "longitude": "-50.32176000" + }, + { + "id": "10083", + "name": "Adrianópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.76632000", + "longitude": "-48.79998000" + }, + { + "id": "10099", + "name": "Agudos do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.04616000", + "longitude": "-49.31186000" + }, + { + "id": "10144", + "name": "Almirante Tamandaré", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.32472000", + "longitude": "-49.31000000" + }, + { + "id": "10155", + "name": "Altamira do Paraná", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.81257000", + "longitude": "-52.70740000" + }, + { + "id": "10187", + "name": "Altãnia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.87444000", + "longitude": "-53.90167000" + }, + { + "id": "10188", + "name": "Altônia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.88648000", + "longitude": "-53.96852000" + }, + { + "id": "10177", + "name": "Alto Paraíso", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.55498000", + "longitude": "-53.80770000" + }, + { + "id": "10175", + "name": "Alto Paraná", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.06783000", + "longitude": "-52.31196000" + }, + { + "id": "10180", + "name": "Alto Piquiri", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.12973000", + "longitude": "-53.34661000" + }, + { + "id": "10200", + "name": "Alvorada do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.80928000", + "longitude": "-51.27421000" + }, + { + "id": "10203", + "name": "Amaporã", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.13633000", + "longitude": "-52.83810000" + }, + { + "id": "10222", + "name": "Ampére", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.91242000", + "longitude": "-53.49366000" + }, + { + "id": "10229", + "name": "Anahy", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.66517000", + "longitude": "-53.13229000" + }, + { + "id": "10243", + "name": "Andirá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.03931000", + "longitude": "-50.27404000" + }, + { + "id": "10279", + "name": "Antônio Olinto", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.96435000", + "longitude": "-50.12992000" + }, + { + "id": "10269", + "name": "Antonina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.28425000", + "longitude": "-48.72037000" + }, + { + "id": "10301", + "name": "Apucarana", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.56159000", + "longitude": "-51.45358000" + }, + { + "id": "10340", + "name": "Arapongas", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.41944000", + "longitude": "-51.42444000" + }, + { + "id": "10342", + "name": "Arapoti", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.06902000", + "longitude": "-50.03733000" + }, + { + "id": "10345", + "name": "Arapuã", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.31991000", + "longitude": "-51.81138000" + }, + { + "id": "10358", + "name": "Araruna", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.97219000", + "longitude": "-52.59131000" + }, + { + "id": "10363", + "name": "Araucária", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.59306000", + "longitude": "-49.41028000" + }, + { + "id": "10398", + "name": "Ariranha do Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.35185000", + "longitude": "-51.53194000" + }, + { + "id": "10426", + "name": "Assaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.37333000", + "longitude": "-50.84139000" + }, + { + "id": "10429", + "name": "Assis Chateaubriand", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.40824000", + "longitude": "-53.53328000" + }, + { + "id": "10433", + "name": "Astorga", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.24011000", + "longitude": "-51.69541000" + }, + { + "id": "10435", + "name": "Atalaia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.12728000", + "longitude": "-52.04286000" + }, + { + "id": "15681", + "name": "Ângulo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.21625000", + "longitude": "-51.93851000" + }, + { + "id": "10491", + "name": "Balsa Nova", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.52151000", + "longitude": "-49.67738000" + }, + { + "id": "10500", + "name": "Bandeirantes", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.15516000", + "longitude": "-50.33873000" + }, + { + "id": "10510", + "name": "Barbosa Ferraz", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.06134000", + "longitude": "-52.05494000" + }, + { + "id": "10537", + "name": "Barra do Jacaré", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.11066000", + "longitude": "-50.15719000" + }, + { + "id": "10547", + "name": "Barracão", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.24009000", + "longitude": "-53.52586000" + }, + { + "id": "10595", + "name": "Bela Vista da Caroba", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.87398000", + "longitude": "-53.62755000" + }, + { + "id": "10599", + "name": "Bela Vista do Paraíso", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.99667000", + "longitude": "-51.19056000" + }, + { + "id": "10655", + "name": "Bituruna", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.18538000", + "longitude": "-51.54497000" + }, + { + "id": "10659", + "name": "Boa Esperança", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.24372000", + "longitude": "-52.73574000" + }, + { + "id": "10660", + "name": "Boa Esperança do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.63520000", + "longitude": "-53.22621000" + }, + { + "id": "10665", + "name": "Boa Ventura de São Roque", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.84082000", + "longitude": "-51.55638000" + }, + { + "id": "10668", + "name": "Boa Vista da Aparecida", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.43709000", + "longitude": "-53.41293000" + }, + { + "id": "10684", + "name": "Bocaiúva do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.10040000", + "longitude": "-48.87116000" + }, + { + "id": "10714", + "name": "Bom Jesus do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.15280000", + "longitude": "-53.54963000" + }, + { + "id": "10727", + "name": "Bom Sucesso", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.69506000", + "longitude": "-51.81945000" + }, + { + "id": "10729", + "name": "Bom Sucesso do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.08239000", + "longitude": "-52.85103000" + }, + { + "id": "10754", + "name": "Borrazópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.93931000", + "longitude": "-51.60141000" + }, + { + "id": "10764", + "name": "Braganey", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.79019000", + "longitude": "-53.08864000" + }, + { + "id": "10772", + "name": "Brasilândia do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.21682000", + "longitude": "-53.57250000" + }, + { + "id": "10894", + "name": "Cafeara", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.79980000", + "longitude": "-51.71428000" + }, + { + "id": "10896", + "name": "Cafelândia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.69297000", + "longitude": "-53.35090000" + }, + { + "id": "10897", + "name": "Cafezal do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.95645000", + "longitude": "-53.60910000" + }, + { + "id": "10929", + "name": "Califórnia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.66340000", + "longitude": "-51.32824000" + }, + { + "id": "10944", + "name": "Cambará", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.00420000", + "longitude": "-50.08819000" + }, + { + "id": "10951", + "name": "Cambé", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.27583000", + "longitude": "-51.27833000" + }, + { + "id": "10946", + "name": "Cambira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.63164000", + "longitude": "-51.56671000" + }, + { + "id": "10965", + "name": "Campina da Lagoa", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.60154000", + "longitude": "-52.78545000" + }, + { + "id": "10968", + "name": "Campina do Simão", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.08478000", + "longitude": "-51.78423000" + }, + { + "id": "10963", + "name": "Campina Grande do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.30556000", + "longitude": "-49.05528000" + }, + { + "id": "10985", + "name": "Campo Bonito", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.88808000", + "longitude": "-53.01009000" + }, + { + "id": "11007", + "name": "Campo do Tenente", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.95791000", + "longitude": "-49.65936000" + }, + { + "id": "10992", + "name": "Campo Largo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.45955000", + "longitude": "-49.53014000" + }, + { + "id": "10996", + "name": "Campo Magro", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.26822000", + "longitude": "-49.47580000" + }, + { + "id": "10998", + "name": "Campo Mourão", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.04309000", + "longitude": "-52.37929000" + }, + { + "id": "11039", + "name": "Candói", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.51315000", + "longitude": "-52.02243000" + }, + { + "id": "11054", + "name": "Cantagalo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.29530000", + "longitude": "-52.15269000" + }, + { + "id": "11063", + "name": "Capanema", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.61839000", + "longitude": "-53.79262000" + }, + { + "id": "11084", + "name": "Capitão Leônidas Marques", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.47998000", + "longitude": "-53.58797000" + }, + { + "id": "11104", + "name": "Carambeí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.95260000", + "longitude": "-50.11590000" + }, + { + "id": "11141", + "name": "Carlópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.44971000", + "longitude": "-49.70142000" + }, + { + "id": "11176", + "name": "Cascavel", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.95583000", + "longitude": "-53.45528000" + }, + { + "id": "11191", + "name": "Castro", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.83040000", + "longitude": "-49.85535000" + }, + { + "id": "11196", + "name": "Catanduvas", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.26047000", + "longitude": "-53.17016000" + }, + { + "id": "11550", + "name": "Cândido de Abreu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.56694000", + "longitude": "-51.33333000" + }, + { + "id": "11551", + "name": "Céu Azul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.29831000", + "longitude": "-53.74848000" + }, + { + "id": "11237", + "name": "Centenário do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.82111000", + "longitude": "-51.59528000" + }, + { + "id": "11249", + "name": "Cerro Azul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.85878000", + "longitude": "-49.29561000" + }, + { + "id": "11278", + "name": "Chopinzinho", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.81428000", + "longitude": "-52.45682000" + }, + { + "id": "11289", + "name": "Cianorte", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.66333000", + "longitude": "-52.60500000" + }, + { + "id": "11290", + "name": "Cidade Gaúcha", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.36535000", + "longitude": "-52.97466000" + }, + { + "id": "11300", + "name": "Clevelândia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.39583000", + "longitude": "-52.47083000" + }, + { + "id": "11328", + "name": "Colombo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.30126000", + "longitude": "-49.16965000" + }, + { + "id": "11329", + "name": "Colorado", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.83750000", + "longitude": "-51.97306000" + }, + { + "id": "11381", + "name": "Congonhinhas", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.62943000", + "longitude": "-50.49858000" + }, + { + "id": "11385", + "name": "Conselheiro Mairinck", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.58771000", + "longitude": "-50.11629000" + }, + { + "id": "11390", + "name": "Contenda", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.71409000", + "longitude": "-49.50798000" + }, + { + "id": "11398", + "name": "Corbélia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.79889000", + "longitude": "-53.30667000" + }, + { + "id": "11410", + "name": "Cornélio Procópio", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.18111000", + "longitude": "-50.64667000" + }, + { + "id": "11417", + "name": "Coronel Domingos Soares", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.18290000", + "longitude": "-51.97777000" + }, + { + "id": "11430", + "name": "Coronel Vivida", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.97972000", + "longitude": "-52.56778000" + }, + { + "id": "11439", + "name": "Corumbataí do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.12007000", + "longitude": "-52.14622000" + }, + { + "id": "11490", + "name": "Cruz Machado", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.91086000", + "longitude": "-51.22563000" + }, + { + "id": "11496", + "name": "Cruzeiro do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.60303000", + "longitude": "-53.12736000" + }, + { + "id": "11497", + "name": "Cruzeiro do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.78500000", + "longitude": "-53.07333000" + }, + { + "id": "11499", + "name": "Cruzeiro do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.97418000", + "longitude": "-52.15969000" + }, + { + "id": "11502", + "name": "Cruzmaltina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.02357000", + "longitude": "-51.48481000" + }, + { + "id": "11526", + "name": "Curiúva", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.00386000", + "longitude": "-50.46541000" + }, + { + "id": "11524", + "name": "Curitiba", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.42778000", + "longitude": "-49.27306000" + }, + { + "id": "11585", + "name": "Diamante d'Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.94559000", + "longitude": "-54.10349000" + }, + { + "id": "11586", + "name": "Diamante do Norte", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.63752000", + "longitude": "-52.87280000" + }, + { + "id": "11587", + "name": "Diamante do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.98680000", + "longitude": "-52.70134000" + }, + { + "id": "11620", + "name": "Dois Vizinhos", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.73361000", + "longitude": "-53.05722000" + }, + { + "id": "11650", + "name": "Douradina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.34040000", + "longitude": "-53.27489000" + }, + { + "id": "11655", + "name": "Doutor Camargo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.56158000", + "longitude": "-52.22341000" + }, + { + "id": "11660", + "name": "Doutor Ulysses", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.63500000", + "longitude": "-49.40020000" + }, + { + "id": "11712", + "name": "Enéas Marques", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.86454000", + "longitude": "-53.15902000" + }, + { + "id": "11698", + "name": "Engenheiro Beltrão", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.79722000", + "longitude": "-52.26917000" + }, + { + "id": "11708", + "name": "Entre Rios do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.70408000", + "longitude": "-54.21562000" + }, + { + "id": "11732", + "name": "Esperança Nova", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.71008000", + "longitude": "-53.79362000" + }, + { + "id": "11734", + "name": "Espigão Alto do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.35011000", + "longitude": "-52.77923000" + }, + { + "id": "11777", + "name": "Farol", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.10348000", + "longitude": "-52.66314000" + }, + { + "id": "11781", + "name": "Faxinal", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.00028000", + "longitude": "-51.31944000" + }, + { + "id": "11786", + "name": "Fazenda Rio Grande", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.66466000", + "longitude": "-49.30426000" + }, + { + "id": "11909", + "name": "Fênix", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.90551000", + "longitude": "-52.03998000" + }, + { + "id": "11802", + "name": "Fernandes Pinheiro", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.44403000", + "longitude": "-50.51811000" + }, + { + "id": "11816", + "name": "Figueira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.86125000", + "longitude": "-50.42076000" + }, + { + "id": "11846", + "name": "Flórida", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.11265000", + "longitude": "-51.97861000" + }, + { + "id": "11825", + "name": "Flor da Serra do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.23081000", + "longitude": "-53.30368000" + }, + { + "id": "11828", + "name": "Floraí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.32830000", + "longitude": "-52.32422000" + }, + { + "id": "11835", + "name": "Floresta", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.63014000", + "longitude": "-52.07630000" + }, + { + "id": "11840", + "name": "Florestópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.86333000", + "longitude": "-51.38722000" + }, + { + "id": "11854", + "name": "Formosa do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.30836000", + "longitude": "-53.32776000" + }, + { + "id": "11871", + "name": "Foz do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.54778000", + "longitude": "-54.58806000" + }, + { + "id": "11872", + "name": "Foz do Jordão", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.69523000", + "longitude": "-52.06075000" + }, + { + "id": "11876", + "name": "Francisco Alves", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.06510000", + "longitude": "-53.88444000" + }, + { + "id": "11879", + "name": "Francisco Beltrão", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.08111000", + "longitude": "-53.05500000" + }, + { + "id": "11934", + "name": "General Carneiro", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.43749000", + "longitude": "-51.40075000" + }, + { + "id": "11955", + "name": "Godoy Moreira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.14813000", + "longitude": "-51.91555000" + }, + { + "id": "11968", + "name": "Goioerê", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.18868000", + "longitude": "-53.09916000" + }, + { + "id": "11969", + "name": "Goioxim", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.09533000", + "longitude": "-52.00812000" + }, + { + "id": "11996", + "name": "Grandes Rios", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.18645000", + "longitude": "-51.43460000" + }, + { + "id": "12078", + "name": "Guaíra", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.26175000", + "longitude": "-54.23821000" + }, + { + "id": "12015", + "name": "Guairaçá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.90548000", + "longitude": "-52.74878000" + }, + { + "id": "12023", + "name": "Guamiranga", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.15028000", + "longitude": "-50.86182000" + }, + { + "id": "12029", + "name": "Guapirama", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.46840000", + "longitude": "-50.09128000" + }, + { + "id": "12030", + "name": "Guaporema", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.31022000", + "longitude": "-52.82479000" + }, + { + "id": "12036", + "name": "Guaraci", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.97343000", + "longitude": "-51.69739000" + }, + { + "id": "12047", + "name": "Guaraniaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.10083000", + "longitude": "-52.87806000" + }, + { + "id": "12052", + "name": "Guarapuava", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.39048000", + "longitude": "-51.46541000" + }, + { + "id": "12053", + "name": "Guaraqueçaba", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.15156000", + "longitude": "-48.35949000" + }, + { + "id": "12059", + "name": "Guaratuba", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.88278000", + "longitude": "-48.57472000" + }, + { + "id": "12104", + "name": "Honório Serpa", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.13779000", + "longitude": "-52.39614000" + }, + { + "id": "12120", + "name": "Ibaiti", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.84861000", + "longitude": "-50.18778000" + }, + { + "id": "12126", + "name": "Ibema", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.16493000", + "longitude": "-53.01268000" + }, + { + "id": "12142", + "name": "Ibiporã", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.26917000", + "longitude": "-51.04806000" + }, + { + "id": "12169", + "name": "Icaraíma", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.37235000", + "longitude": "-53.59492000" + }, + { + "id": "12198", + "name": "Iguaraçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.23375000", + "longitude": "-51.85341000" + }, + { + "id": "12202", + "name": "Iguatu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.68784000", + "longitude": "-53.08691000" + }, + { + "id": "12219", + "name": "Imbaú", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.44336000", + "longitude": "-50.73882000" + }, + { + "id": "12221", + "name": "Imbituva", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.23000000", + "longitude": "-50.60444000" + }, + { + "id": "12229", + "name": "Inajá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.71509000", + "longitude": "-52.24126000" + }, + { + "id": "12256", + "name": "Inácio Martins", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.64000000", + "longitude": "-51.22000000" + }, + { + "id": "12238", + "name": "Indianópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.47975000", + "longitude": "-52.64153000" + }, + { + "id": "12275", + "name": "Ipiranga", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.01590000", + "longitude": "-50.55475000" + }, + { + "id": "12286", + "name": "Iporã", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.04512000", + "longitude": "-53.71983000" + }, + { + "id": "12301", + "name": "Iracema do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.43665000", + "longitude": "-53.33842000" + }, + { + "id": "12312", + "name": "Irati", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.46722000", + "longitude": "-50.65111000" + }, + { + "id": "12318", + "name": "Iretama", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.34412000", + "longitude": "-52.10655000" + }, + { + "id": "12472", + "name": "Itaúna do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73684000", + "longitude": "-52.89236000" + }, + { + "id": "12350", + "name": "Itaguajé", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.66099000", + "longitude": "-51.98288000" + }, + { + "id": "12360", + "name": "Itaipulândia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.16335000", + "longitude": "-54.34354000" + }, + { + "id": "12382", + "name": "Itambaracá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.98385000", + "longitude": "-50.42715000" + }, + { + "id": "12384", + "name": "Itambé", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.68805000", + "longitude": "-52.01227000" + }, + { + "id": "12407", + "name": "Itapejara d'Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.97797000", + "longitude": "-52.82583000" + }, + { + "id": "12411", + "name": "Itaperuçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.22000000", + "longitude": "-49.34778000" + }, + { + "id": "12501", + "name": "Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.99384000", + "longitude": "-50.86192000" + }, + { + "id": "12498", + "name": "Ivaiporã", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.28230000", + "longitude": "-51.63284000" + }, + { + "id": "12500", + "name": "Ivaté", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.33716000", + "longitude": "-53.42407000" + }, + { + "id": "12499", + "name": "Ivatuba", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.59716000", + "longitude": "-52.19434000" + }, + { + "id": "12513", + "name": "Jaboti", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.69532000", + "longitude": "-50.07376000" + }, + { + "id": "12520", + "name": "Jacarezinho", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.19072000", + "longitude": "-49.95410000" + }, + { + "id": "12536", + "name": "Jaguapitã", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.07631000", + "longitude": "-51.58296000" + }, + { + "id": "12542", + "name": "Jaguariaíva", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.24423000", + "longitude": "-49.70932000" + }, + { + "id": "12557", + "name": "Jandaia do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.60306000", + "longitude": "-51.64333000" + }, + { + "id": "12563", + "name": "Janiópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.08843000", + "longitude": "-52.80294000" + }, + { + "id": "12571", + "name": "Japira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.69047000", + "longitude": "-50.18011000" + }, + { + "id": "12576", + "name": "Japurá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.41860000", + "longitude": "-52.56220000" + }, + { + "id": "12585", + "name": "Jardim Alegre", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.21451000", + "longitude": "-51.72270000" + }, + { + "id": "12586", + "name": "Jardim Olinda", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.56938000", + "longitude": "-52.06520000" + }, + { + "id": "12597", + "name": "Jataizinho", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.25417000", + "longitude": "-50.98000000" + }, + { + "id": "12626", + "name": "Jesuítas", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.41301000", + "longitude": "-53.41344000" + }, + { + "id": "12640", + "name": "Joaquim Távora", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.42218000", + "longitude": "-49.90251000" + }, + { + "id": "12685", + "name": "Jundiaí do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.47919000", + "longitude": "-50.18065000" + }, + { + "id": "12695", + "name": "Juranda", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.41323000", + "longitude": "-52.82730000" + }, + { + "id": "12706", + "name": "Jussara", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.62121000", + "longitude": "-52.47084000" + }, + { + "id": "12720", + "name": "Kaloré", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.86713000", + "longitude": "-51.68029000" + }, + { + "id": "12792", + "name": "Lapa", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.76972000", + "longitude": "-49.71583000" + }, + { + "id": "12796", + "name": "Laranjal", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.92573000", + "longitude": "-52.45952000" + }, + { + "id": "12800", + "name": "Laranjeiras do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.40778000", + "longitude": "-52.41611000" + }, + { + "id": "12822", + "name": "Leópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.02502000", + "longitude": "-50.72558000" + }, + { + "id": "12826", + "name": "Lidianópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.08135000", + "longitude": "-51.64406000" + }, + { + "id": "12835", + "name": "Lindoeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.26796000", + "longitude": "-53.56870000" + }, + { + "id": "12846", + "name": "Loanda", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.92306000", + "longitude": "-53.13722000" + }, + { + "id": "12847", + "name": "Lobato", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.96387000", + "longitude": "-52.00714000" + }, + { + "id": "12849", + "name": "Londrina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.31028000", + "longitude": "-51.16278000" + }, + { + "id": "12866", + "name": "Luiziana", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.34081000", + "longitude": "-52.27043000" + }, + { + "id": "12869", + "name": "Lunardelli", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.07214000", + "longitude": "-51.76003000" + }, + { + "id": "12870", + "name": "Lupionópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73847000", + "longitude": "-51.68386000" + }, + { + "id": "12929", + "name": "Mallet", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.90209000", + "longitude": "-50.83050000" + }, + { + "id": "12933", + "name": "Mamborê", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.40607000", + "longitude": "-52.61692000" + }, + { + "id": "12942", + "name": "Mandaguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.34722000", + "longitude": "-52.09528000" + }, + { + "id": "12941", + "name": "Mandaguari", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.54750000", + "longitude": "-51.67083000" + }, + { + "id": "12943", + "name": "Mandirituba", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.84677000", + "longitude": "-49.32704000" + }, + { + "id": "12945", + "name": "Manfrinópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.10011000", + "longitude": "-53.35828000" + }, + { + "id": "12948", + "name": "Mangueirinha", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.03649000", + "longitude": "-52.22257000" + }, + { + "id": "12953", + "name": "Manoel Ribas", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.52402000", + "longitude": "-51.63111000" + }, + { + "id": "12998", + "name": "Marechal Cândido Rondon", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.55611000", + "longitude": "-54.05667000" + }, + { + "id": "13004", + "name": "Maria Helena", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.55348000", + "longitude": "-53.23153000" + }, + { + "id": "13006", + "name": "Marialva", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.48500000", + "longitude": "-51.79167000" + }, + { + "id": "13025", + "name": "Mariópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.31630000", + "longitude": "-52.57421000" + }, + { + "id": "13017", + "name": "Marilândia do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.74380000", + "longitude": "-51.29410000" + }, + { + "id": "13014", + "name": "Marilena", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.72742000", + "longitude": "-53.08170000" + }, + { + "id": "13015", + "name": "Mariluz", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.06183000", + "longitude": "-53.22984000" + }, + { + "id": "13018", + "name": "Maringá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.42528000", + "longitude": "-51.93861000" + }, + { + "id": "13020", + "name": "Maripá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.46267000", + "longitude": "-53.80179000" + }, + { + "id": "13027", + "name": "Marmeleiro", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.23791000", + "longitude": "-53.09751000" + }, + { + "id": "13030", + "name": "Marquinho", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.10570000", + "longitude": "-52.25677000" + }, + { + "id": "13037", + "name": "Marumbi", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.76658000", + "longitude": "-51.66062000" + }, + { + "id": "13052", + "name": "Matelândia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.24083000", + "longitude": "-53.99639000" + }, + { + "id": "13062", + "name": "Matinhos", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.76114000", + "longitude": "-48.57290000" + }, + { + "id": "13068", + "name": "Mato Rico", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.70689000", + "longitude": "-52.24085000" + }, + { + "id": "13084", + "name": "Mauá da Serra", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.91107000", + "longitude": "-51.18026000" + }, + { + "id": "13092", + "name": "Medianeira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.29528000", + "longitude": "-54.09389000" + }, + { + "id": "13100", + "name": "Mercedes", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.42600000", + "longitude": "-54.17683000" + }, + { + "id": "13135", + "name": "Mirador", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.21282000", + "longitude": "-52.75351000" + }, + { + "id": "13148", + "name": "Miraselva", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.97660000", + "longitude": "-51.47042000" + }, + { + "id": "13157", + "name": "Missal", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.11125000", + "longitude": "-54.25786000" + }, + { + "id": "13231", + "name": "Moreira Sales", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.06222000", + "longitude": "-53.00694000" + }, + { + "id": "13235", + "name": "Morretes", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.53075000", + "longitude": "-48.87427000" + }, + { + "id": "13273", + "name": "Munhoz de Melo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.11288000", + "longitude": "-51.73192000" + }, + { + "id": "13339", + "name": "Nossa Senhora das Graças", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.93036000", + "longitude": "-51.80240000" + }, + { + "id": "13346", + "name": "Nova Aliança do Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.18670000", + "longitude": "-52.62571000" + }, + { + "id": "13350", + "name": "Nova América da Colina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.33377000", + "longitude": "-50.69624000" + }, + { + "id": "13353", + "name": "Nova Aurora", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.86667000", + "longitude": "-52.56667000" + }, + { + "id": "13367", + "name": "Nova Cantu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.65652000", + "longitude": "-52.56315000" + }, + { + "id": "13374", + "name": "Nova Esperança", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.18311000", + "longitude": "-52.25446000" + }, + { + "id": "13376", + "name": "Nova Esperança do Sudoeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.88851000", + "longitude": "-53.26030000" + }, + { + "id": "13382", + "name": "Nova Fátima", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.39579000", + "longitude": "-50.53565000" + }, + { + "id": "13397", + "name": "Nova Laranjeiras", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.21942000", + "longitude": "-52.57752000" + }, + { + "id": "13399", + "name": "Nova Londrina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.76583000", + "longitude": "-52.98500000" + }, + { + "id": "13415", + "name": "Nova Olímpia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.43206000", + "longitude": "-53.03895000" + }, + { + "id": "13422", + "name": "Nova Prata do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.60849000", + "longitude": "-53.38052000" + }, + { + "id": "13431", + "name": "Nova Santa Bárbara", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.60238000", + "longitude": "-50.75450000" + }, + { + "id": "13435", + "name": "Nova Santa Rosa", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.44687000", + "longitude": "-53.99553000" + }, + { + "id": "13438", + "name": "Nova Tebas", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.43082000", + "longitude": "-51.94584000" + }, + { + "id": "13466", + "name": "Novo Itacolomi", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.77560000", + "longitude": "-51.53874000" + }, + { + "id": "13525", + "name": "Ortigueira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.20833000", + "longitude": "-50.94944000" + }, + { + "id": "13535", + "name": "Ourizona", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.48358000", + "longitude": "-52.24274000" + }, + { + "id": "13549", + "name": "Ouro Verde do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.79690000", + "longitude": "-53.93681000" + }, + { + "id": "13573", + "name": "Paiçandu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.45750000", + "longitude": "-52.04861000" + }, + { + "id": "13586", + "name": "Palmas", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.48417000", + "longitude": "-51.99056000" + }, + { + "id": "13589", + "name": "Palmeira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.42944000", + "longitude": "-50.00639000" + }, + { + "id": "13606", + "name": "Palmital", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.84260000", + "longitude": "-52.25370000" + }, + { + "id": "13611", + "name": "Palotina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.28389000", + "longitude": "-53.84000000" + }, + { + "id": "13662", + "name": "Paraíso do Norte", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.25410000", + "longitude": "-52.63634000" + }, + { + "id": "13636", + "name": "Paranacity", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.84648000", + "longitude": "-52.13457000" + }, + { + "id": "13637", + "name": "Paranaguá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.51626000", + "longitude": "-48.52537000" + }, + { + "id": "13640", + "name": "Paranapoema", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.65624000", + "longitude": "-52.07598000" + }, + { + "id": "13644", + "name": "Paranavaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.07306000", + "longitude": "-52.46528000" + }, + { + "id": "13704", + "name": "Pato Bragado", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.64323000", + "longitude": "-54.22745000" + }, + { + "id": "13705", + "name": "Pato Branco", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.22861000", + "longitude": "-52.67056000" + }, + { + "id": "13722", + "name": "Paula Freitas", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.17808000", + "longitude": "-50.84807000" + }, + { + "id": "13733", + "name": "Paulo Frontin", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.04279000", + "longitude": "-50.74770000" + }, + { + "id": "14121", + "name": "Pérola", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.84076000", + "longitude": "-53.70733000" + }, + { + "id": "14122", + "name": "Pérola d'Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.84683000", + "longitude": "-53.75640000" + }, + { + "id": "13743", + "name": "Peabiru", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.91278000", + "longitude": "-52.34306000" + }, + { + "id": "13812", + "name": "Perobal", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.97015000", + "longitude": "-53.32376000" + }, + { + "id": "13930", + "name": "Piên", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.08649000", + "longitude": "-49.45641000" + }, + { + "id": "13858", + "name": "Pinhais", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.44472000", + "longitude": "-49.19250000" + }, + { + "id": "13862", + "name": "Pinhal de São Bento", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.00683000", + "longitude": "-53.48906000" + }, + { + "id": "13865", + "name": "Pinhalão", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.92456000", + "longitude": "-50.05444000" + }, + { + "id": "13873", + "name": "Pinhão", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.69556000", + "longitude": "-51.65972000" + }, + { + "id": "13912", + "name": "Piraí do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.52611000", + "longitude": "-49.94861000" + }, + { + "id": "13904", + "name": "Piraquara", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.44227000", + "longitude": "-49.06795000" + }, + { + "id": "13921", + "name": "Pitanga", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.75722000", + "longitude": "-51.76139000" + }, + { + "id": "13922", + "name": "Pitangueiras", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.19194000", + "longitude": "-51.56836000" + }, + { + "id": "13935", + "name": "Planaltina do Paraná", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.09388000", + "longitude": "-52.92823000" + }, + { + "id": "13938", + "name": "Planalto", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.72679000", + "longitude": "-53.72859000" + }, + { + "id": "13957", + "name": "Ponta Grossa", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.09500000", + "longitude": "-50.16194000" + }, + { + "id": "13962", + "name": "Pontal do Paraná", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.67361000", + "longitude": "-48.51111000" + }, + { + "id": "13985", + "name": "Porecatu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.75583000", + "longitude": "-51.37917000" + }, + { + "id": "13998", + "name": "Porto Amazonas", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.53897000", + "longitude": "-49.90183000" + }, + { + "id": "13999", + "name": "Porto Barreiro", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.58093000", + "longitude": "-52.39206000" + }, + { + "id": "14015", + "name": "Porto Rico", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.82902000", + "longitude": "-53.31785000" + }, + { + "id": "14021", + "name": "Porto Vitória", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.25338000", + "longitude": "-51.24188000" + }, + { + "id": "14060", + "name": "Prado Ferreira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.02439000", + "longitude": "-51.37909000" + }, + { + "id": "14067", + "name": "Pranchita", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.96586000", + "longitude": "-53.69675000" + }, + { + "id": "14078", + "name": "Presidente Castelo Branco", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.26207000", + "longitude": "-52.14511000" + }, + { + "id": "14105", + "name": "Primeiro de Maio", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.87095000", + "longitude": "-51.08897000" + }, + { + "id": "14114", + "name": "Prudentópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.21306000", + "longitude": "-50.97778000" + }, + { + "id": "14128", + "name": "Quarto Centenário", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.29608000", + "longitude": "-53.11994000" + }, + { + "id": "14129", + "name": "Quatiguá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.55499000", + "longitude": "-49.91985000" + }, + { + "id": "14132", + "name": "Quatro Barras", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.36556000", + "longitude": "-49.07694000" + }, + { + "id": "14134", + "name": "Quatro Pontes", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.50435000", + "longitude": "-54.00566000" + }, + { + "id": "14137", + "name": "Quedas do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.43169000", + "longitude": "-52.98265000" + }, + { + "id": "14146", + "name": "Querência do Norte", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.10147000", + "longitude": "-53.56278000" + }, + { + "id": "14150", + "name": "Quinta do Sol", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.79814000", + "longitude": "-52.15746000" + }, + { + "id": "14156", + "name": "Quitandinha", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.90132000", + "longitude": "-49.50522000" + }, + { + "id": "14169", + "name": "Ramilândia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.09153000", + "longitude": "-54.00622000" + }, + { + "id": "14171", + "name": "Rancho Alegre", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.05892000", + "longitude": "-50.91888000" + }, + { + "id": "14172", + "name": "Rancho Alegre d'Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.30404000", + "longitude": "-52.98349000" + }, + { + "id": "14177", + "name": "Realeza", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.67431000", + "longitude": "-53.54659000" + }, + { + "id": "14178", + "name": "Rebouças", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.68296000", + "longitude": "-50.63115000" + }, + { + "id": "14195", + "name": "Renascença", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.21457000", + "longitude": "-52.93431000" + }, + { + "id": "14199", + "name": "Reserva", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.57312000", + "longitude": "-50.93141000" + }, + { + "id": "14201", + "name": "Reserva do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.84778000", + "longitude": "-51.94646000" + }, + { + "id": "14240", + "name": "Ribeirão Claro", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.29564000", + "longitude": "-49.78622000" + }, + { + "id": "14249", + "name": "Ribeirão do Pinhal", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.38629000", + "longitude": "-50.43197000" + }, + { + "id": "14258", + "name": "Rio Azul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.74072000", + "longitude": "-50.73497000" + }, + { + "id": "14260", + "name": "Rio Bom", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.80220000", + "longitude": "-51.44616000" + }, + { + "id": "14262", + "name": "Rio Bonito do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.54822000", + "longitude": "-52.62154000" + }, + { + "id": "14265", + "name": "Rio Branco do Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.35602000", + "longitude": "-51.34215000" + }, + { + "id": "14266", + "name": "Rio Branco do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.19000000", + "longitude": "-49.31417000" + }, + { + "id": "14283", + "name": "Rio Negro", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.09001000", + "longitude": "-49.71582000" + }, + { + "id": "14337", + "name": "Rolândia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.30972000", + "longitude": "-51.36917000" + }, + { + "id": "14340", + "name": "Roncador", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.56358000", + "longitude": "-52.22448000" + }, + { + "id": "14344", + "name": "Rondon", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.47457000", + "longitude": "-52.84502000" + }, + { + "id": "14354", + "name": "Rosário do Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.30569000", + "longitude": "-51.22024000" + }, + { + "id": "14370", + "name": "Sabáudia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.36584000", + "longitude": "-51.60539000" + }, + { + "id": "14384", + "name": "Salgado Filho", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.12101000", + "longitude": "-53.43938000" + }, + { + "id": "14401", + "name": "Salto do Itararé", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.61939000", + "longitude": "-49.68219000" + }, + { + "id": "14403", + "name": "Salto do Lontra", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.77035000", + "longitude": "-53.29978000" + }, + { + "id": "14419", + "name": "Santa Amélia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.26039000", + "longitude": "-50.41329000" + }, + { + "id": "14434", + "name": "Santa Cecília do Pavão", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.54436000", + "longitude": "-50.82283000" + }, + { + "id": "14449", + "name": "Santa Cruz de Monte Castelo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.14407000", + "longitude": "-53.36640000" + }, + { + "id": "14464", + "name": "Santa Fé", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.03990000", + "longitude": "-51.81359000" + }, + { + "id": "14472", + "name": "Santa Helena", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.90689000", + "longitude": "-54.28722000" + }, + { + "id": "14479", + "name": "Santa Inês", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.68740000", + "longitude": "-51.89746000" + }, + { + "id": "14482", + "name": "Santa Isabel do Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.13820000", + "longitude": "-53.25909000" + }, + { + "id": "14484", + "name": "Santa Izabel do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.77567000", + "longitude": "-53.41047000" + }, + { + "id": "14499", + "name": "Santa Lúcia", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.41465000", + "longitude": "-53.55213000" + }, + { + "id": "14513", + "name": "Santa Maria do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.92004000", + "longitude": "-51.96628000" + }, + { + "id": "14518", + "name": "Santa Mariana", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.04831000", + "longitude": "-50.52939000" + }, + { + "id": "14521", + "name": "Santa Mônica", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.16554000", + "longitude": "-53.11244000" + }, + { + "id": "14555", + "name": "Santa Tereza do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.04438000", + "longitude": "-53.61939000" + }, + { + "id": "14562", + "name": "Santa Terezinha de Itaipu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.41349000", + "longitude": "-54.42251000" + }, + { + "id": "14583", + "name": "Santana do Itararé", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.73441000", + "longitude": "-49.61942000" + }, + { + "id": "14614", + "name": "Santo Antônio da Platina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.29500000", + "longitude": "-50.07722000" + }, + { + "id": "14624", + "name": "Santo Antônio do Caiuá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.69373000", + "longitude": "-52.30897000" + }, + { + "id": "14635", + "name": "Santo Antônio do Paraíso", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.56361000", + "longitude": "-50.61940000" + }, + { + "id": "14640", + "name": "Santo Antônio do Sudoeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.07361000", + "longitude": "-53.72528000" + }, + { + "id": "14650", + "name": "Santo Inácio", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.72365000", + "longitude": "-51.80606000" + }, + { + "id": "14659", + "name": "Sapopema", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.87746000", + "longitude": "-50.61022000" + }, + { + "id": "14668", + "name": "Sarandi", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.44361000", + "longitude": "-51.87389000" + }, + { + "id": "14676", + "name": "Saudade do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.70473000", + "longitude": "-52.60816000" + }, + { + "id": "14857", + "name": "São Carlos do Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.35478000", + "longitude": "-52.52074000" + }, + { + "id": "14929", + "name": "São Jerônimo da Serra", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.68708000", + "longitude": "-50.78987000" + }, + { + "id": "14998", + "name": "São João", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.78385000", + "longitude": "-52.80418000" + }, + { + "id": "15026", + "name": "São João do Caiuá", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.82937000", + "longitude": "-52.28543000" + }, + { + "id": "15030", + "name": "São João do Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.97916000", + "longitude": "-51.88263000" + }, + { + "id": "15047", + "name": "São João do Triunfo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.70410000", + "longitude": "-50.26243000" + }, + { + "id": "14935", + "name": "São Jorge d'Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.66317000", + "longitude": "-52.94857000" + }, + { + "id": "14936", + "name": "São Jorge do Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.43841000", + "longitude": "-52.30359000" + }, + { + "id": "14937", + "name": "São Jorge do Patrocínio", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.74952000", + "longitude": "-53.88553000" + }, + { + "id": "14941", + "name": "São José da Boa Vista", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.96483000", + "longitude": "-49.65190000" + }, + { + "id": "14951", + "name": "São José das Palmeiras", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.83457000", + "longitude": "-54.12721000" + }, + { + "id": "14995", + "name": "São José dos Pinhais", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.53020000", + "longitude": "-49.20836000" + }, + { + "id": "15069", + "name": "São Manoel do Paraná", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.38356000", + "longitude": "-52.58889000" + }, + { + "id": "15077", + "name": "São Mateus do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.87417000", + "longitude": "-50.38278000" + }, + { + "id": "15092", + "name": "São Miguel do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.34806000", + "longitude": "-54.23778000" + }, + { + "id": "15116", + "name": "São Pedro do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.90931000", + "longitude": "-53.88765000" + }, + { + "id": "15117", + "name": "São Pedro do Ivaí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.83342000", + "longitude": "-51.86952000" + }, + { + "id": "15118", + "name": "São Pedro do Paraná", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.76847000", + "longitude": "-53.16580000" + }, + { + "id": "15137", + "name": "São Sebastião da Amoreira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.45392000", + "longitude": "-50.71309000" + }, + { + "id": "15162", + "name": "São Tomé", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.52364000", + "longitude": "-52.51400000" + }, + { + "id": "14709", + "name": "Sengés", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.11335000", + "longitude": "-49.46315000" + }, + { + "id": "14749", + "name": "Serranópolis do Iguaçu", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.47001000", + "longitude": "-54.01644000" + }, + { + "id": "14758", + "name": "Sertanópolis", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.05861000", + "longitude": "-51.03639000" + }, + { + "id": "14757", + "name": "Sertaneja", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.95832000", + "longitude": "-50.88804000" + }, + { + "id": "14792", + "name": "Siqueira Campos", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.68889000", + "longitude": "-49.83389000" + }, + { + "id": "14822", + "name": "Sulina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.67144000", + "longitude": "-52.68373000" + }, + { + "id": "15209", + "name": "Tamarana", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.82556000", + "longitude": "-51.04683000" + }, + { + "id": "15211", + "name": "Tamboara", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.19886000", + "longitude": "-52.46715000" + }, + { + "id": "15226", + "name": "Tapejara", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.62534000", + "longitude": "-52.91113000" + }, + { + "id": "15234", + "name": "Tapira", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.30639000", + "longitude": "-53.13632000" + }, + { + "id": "15266", + "name": "Teixeira Soares", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.27813000", + "longitude": "-50.43158000" + }, + { + "id": "15273", + "name": "Telêmaco Borba", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.22442000", + "longitude": "-50.54151000" + }, + { + "id": "15290", + "name": "Terra Boa", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.67940000", + "longitude": "-52.34426000" + }, + { + "id": "15294", + "name": "Terra Rica", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73272000", + "longitude": "-52.68457000" + }, + { + "id": "15295", + "name": "Terra Roxa", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.22292000", + "longitude": "-54.09087000" + }, + { + "id": "15304", + "name": "Tibagi", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.65805000", + "longitude": "-50.51861000" + }, + { + "id": "15310", + "name": "Tijucas do Sul", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.89852000", + "longitude": "-49.11779000" + }, + { + "id": "15329", + "name": "Toledo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.71361000", + "longitude": "-53.74306000" + }, + { + "id": "15332", + "name": "Tomazina", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.77655000", + "longitude": "-49.95552000" + }, + { + "id": "15371", + "name": "Três Barras do Paraná", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.42222000", + "longitude": "-53.23148000" + }, + { + "id": "15394", + "name": "Tunas do Paraná", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.96753000", + "longitude": "-48.86604000" + }, + { + "id": "15395", + "name": "Tuneiras do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.90168000", + "longitude": "-52.83572000" + }, + { + "id": "15409", + "name": "Tupãssi", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.63318000", + "longitude": "-53.49207000" + }, + { + "id": "15418", + "name": "Turvo", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.97002000", + "longitude": "-51.50860000" + }, + { + "id": "15436", + "name": "Ubiratã", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.50395000", + "longitude": "-53.01934000" + }, + { + "id": "15451", + "name": "Umuarama", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.76639000", + "longitude": "-53.32500000" + }, + { + "id": "15459", + "name": "União da Vitória", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.09211000", + "longitude": "-51.11212000" + }, + { + "id": "15454", + "name": "Uniflor", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.06016000", + "longitude": "-52.09077000" + }, + { + "id": "15466", + "name": "Uraí", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.19291000", + "longitude": "-50.79419000" + }, + { + "id": "15528", + "name": "Ventania", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.14204000", + "longitude": "-50.22365000" + }, + { + "id": "15536", + "name": "Vera Cruz do Oeste", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.94088000", + "longitude": "-53.92809000" + }, + { + "id": "15546", + "name": "Verê", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.85329000", + "longitude": "-52.95920000" + }, + { + "id": "15586", + "name": "Virmond", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.43010000", + "longitude": "-52.23673000" + }, + { + "id": "15595", + "name": "Vitorino", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.24047000", + "longitude": "-52.81976000" + }, + { + "id": "15629", + "name": "Wenceslau Braz", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.88811000", + "longitude": "-49.79148000" + }, + { + "id": "15634", + "name": "Xambrê", + "state_id": 2022, + "state_code": "PR", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.73853000", + "longitude": "-53.60400000" + }, + { + "id": "10056", + "name": "Abaetetuba", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.71806000", + "longitude": "-48.88250000" + }, + { + "id": "10063", + "name": "Abel Figueiredo", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.94378000", + "longitude": "-48.42275000" + }, + { + "id": "10073", + "name": "Acará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.96083000", + "longitude": "-48.19667000" + }, + { + "id": "10090", + "name": "Afuá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.15667000", + "longitude": "-50.38667000" + }, + { + "id": "10127", + "name": "Alenquer", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.85422000", + "longitude": "-54.94506000" + }, + { + "id": "10141", + "name": "Almeirim", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "0.47621000", + "longitude": "-53.87297000" + }, + { + "id": "10153", + "name": "Altamira", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.20333000", + "longitude": "-52.20639000" + }, + { + "id": "10231", + "name": "Anajás", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.86015000", + "longitude": "-50.03970000" + }, + { + "id": "10234", + "name": "Ananindeua", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.34611000", + "longitude": "-48.38287000" + }, + { + "id": "10236", + "name": "Anapu", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.88583000", + "longitude": "-51.33796000" + }, + { + "id": "10443", + "name": "Augusto Corrêa", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.02167000", + "longitude": "-46.63500000" + }, + { + "id": "10452", + "name": "Aurora do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.30323000", + "longitude": "-47.75621000" + }, + { + "id": "10458", + "name": "Aveiro", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.66721000", + "longitude": "-56.01637000" + }, + { + "id": "15648", + "name": "Água Azul do Norte", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.63125000", + "longitude": "-50.62146000" + }, + { + "id": "15683", + "name": "Óbidos", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "0.13240000", + "longitude": "-55.82386000" + }, + { + "id": "10473", + "name": "Bagre", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.40166000", + "longitude": "-50.16628000" + }, + { + "id": "10480", + "name": "Baião", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.79056000", + "longitude": "-49.67167000" + }, + { + "id": "10503", + "name": "Bannach", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.46864000", + "longitude": "-50.65904000" + }, + { + "id": "10511", + "name": "Barcarena", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.54656000", + "longitude": "-48.63248000" + }, + { + "id": "10615", + "name": "Belém", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.45583000", + "longitude": "-48.50444000" + }, + { + "id": "10612", + "name": "Belterra", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.01258000", + "longitude": "-54.99128000" + }, + { + "id": "10625", + "name": "Benevides", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.36139000", + "longitude": "-48.24472000" + }, + { + "id": "10716", + "name": "Bom Jesus do Tocantins", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.99184000", + "longitude": "-48.82370000" + }, + { + "id": "10738", + "name": "Bonito", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.42927000", + "longitude": "-47.33735000" + }, + { + "id": "10765", + "name": "Bragança", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.96813000", + "longitude": "-46.73377000" + }, + { + "id": "10768", + "name": "Brasil Novo", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.33767000", + "longitude": "-52.57451000" + }, + { + "id": "10791", + "name": "Brejo Grande do Araguaia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.74369000", + "longitude": "-48.45573000" + }, + { + "id": "10801", + "name": "Breu Branco", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.73348000", + "longitude": "-49.37122000" + }, + { + "id": "10802", + "name": "Breves", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.68222000", + "longitude": "-50.48028000" + }, + { + "id": "10820", + "name": "Bujaru", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.51500000", + "longitude": "-48.04472000" + }, + { + "id": "10871", + "name": "Cachoeira do Arari", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.84609000", + "longitude": "-48.93118000" + }, + { + "id": "10872", + "name": "Cachoeira do Piriá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.94037000", + "longitude": "-46.46914000" + }, + { + "id": "10952", + "name": "Cametá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.29582000", + "longitude": "-49.49213000" + }, + { + "id": "11031", + "name": "Canaã dos Carajás", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.49873000", + "longitude": "-50.09334000" + }, + { + "id": "11062", + "name": "Capanema", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.19583000", + "longitude": "-47.18083000" + }, + { + "id": "11085", + "name": "Capitão Poço", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.74639000", + "longitude": "-47.05944000" + }, + { + "id": "11184", + "name": "Castanhal", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.27231000", + "longitude": "-47.85627000" + }, + { + "id": "11275", + "name": "Chaves", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.06289000", + "longitude": "-49.64787000" + }, + { + "id": "11319", + "name": "Colares", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.90894000", + "longitude": "-48.25340000" + }, + { + "id": "11368", + "name": "Concórdia do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.86154000", + "longitude": "-47.96322000" + }, + { + "id": "11354", + "name": "Conceição do Araguaia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.26441000", + "longitude": "-49.26982000" + }, + { + "id": "11514", + "name": "Cumaru do Norte", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.39144000", + "longitude": "-51.24084000" + }, + { + "id": "11523", + "name": "Curionópolis", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.18137000", + "longitude": "-49.66441000" + }, + { + "id": "11533", + "name": "Curralinho", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.58236000", + "longitude": "-49.98697000" + }, + { + "id": "11536", + "name": "Curuá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.73821000", + "longitude": "-55.11492000" + }, + { + "id": "11537", + "name": "Curuçá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.69787000", + "longitude": "-47.86755000" + }, + { + "id": "11626", + "name": "Dom Eliseu", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.08267000", + "longitude": "-47.89052000" + }, + { + "id": "11679", + "name": "Eldorado do Carajás", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.10586000", + "longitude": "-49.30329000" + }, + { + "id": "11776", + "name": "Faro", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.11536000", + "longitude": "-57.77412000" + }, + { + "id": "11837", + "name": "Floresta do Araguaia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.57944000", + "longitude": "-49.52862000" + }, + { + "id": "11923", + "name": "Garrafão do Norte", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.21516000", + "longitude": "-47.11722000" + }, + { + "id": "11965", + "name": "Goianésia do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.94920000", + "longitude": "-48.87355000" + }, + { + "id": "12089", + "name": "Gurupá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.16555000", + "longitude": "-51.62743000" + }, + { + "id": "12182", + "name": "Igarapé Açu", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.12889000", + "longitude": "-47.62000000" + }, + { + "id": "12184", + "name": "Igarapé Miri", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.97500000", + "longitude": "-48.95972000" + }, + { + "id": "12186", + "name": "Igarapé-Açu", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.14164000", + "longitude": "-47.51366000" + }, + { + "id": "12187", + "name": "Igarapé-Miri", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.07705000", + "longitude": "-49.14772000" + }, + { + "id": "12248", + "name": "Inhangapi", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.46284000", + "longitude": "-47.94974000" + }, + { + "id": "12282", + "name": "Ipixuna do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.98149000", + "longitude": "-48.11946000" + }, + { + "id": "12320", + "name": "Irituia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.77048000", + "longitude": "-47.42145000" + }, + { + "id": "12363", + "name": "Itaituba", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.86018000", + "longitude": "-56.23176000" + }, + { + "id": "12490", + "name": "Itupiranga", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.23295000", + "longitude": "-49.94952000" + }, + { + "id": "12519", + "name": "Jacareacanga", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.22222000", + "longitude": "-57.75278000" + }, + { + "id": "12530", + "name": "Jacundá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.56883000", + "longitude": "-49.22284000" + }, + { + "id": "12702", + "name": "Juruti", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.33065000", + "longitude": "-56.02742000" + }, + { + "id": "12833", + "name": "Limoeiro do Ajuru", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.89647000", + "longitude": "-49.51015000" + }, + { + "id": "12911", + "name": "Magalhães Barata", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.81838000", + "longitude": "-47.62990000" + }, + { + "id": "12964", + "name": "Marabá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.38146000", + "longitude": "-49.13232000" + }, + { + "id": "12969", + "name": "Maracanã", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.75819000", + "longitude": "-47.48755000" + }, + { + "id": "12979", + "name": "Marapanim", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.84063000", + "longitude": "-47.70897000" + }, + { + "id": "13022", + "name": "Marituba", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.37399000", + "longitude": "-48.31420000" + }, + { + "id": "13293", + "name": "Mãe do Rio", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.98328000", + "longitude": "-47.51572000" + }, + { + "id": "13093", + "name": "Medicilândia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.15674000", + "longitude": "-53.17769000" + }, + { + "id": "13096", + "name": "Melgaço", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.66163000", + "longitude": "-51.05884000" + }, + { + "id": "13159", + "name": "Mocajuba", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.58417000", + "longitude": "-49.50722000" + }, + { + "id": "13170", + "name": "Moju", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.88389000", + "longitude": "-48.76889000" + }, + { + "id": "13171", + "name": "Mojuí Dos Campos", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.07044000", + "longitude": "-54.57515000" + }, + { + "id": "13187", + "name": "Monte Alegre", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.00082000", + "longitude": "-54.08102000" + }, + { + "id": "13259", + "name": "Muaná", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.52833000", + "longitude": "-49.21667000" + }, + { + "id": "13375", + "name": "Nova Esperança do Piriá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.45364000", + "longitude": "-46.97384000" + }, + { + "id": "13393", + "name": "Nova Ipixuna", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.98779000", + "longitude": "-49.19861000" + }, + { + "id": "13439", + "name": "Nova Timboteua", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.12059000", + "longitude": "-47.42089000" + }, + { + "id": "13475", + "name": "Novo Progresso", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.75396000", + "longitude": "-55.51343000" + }, + { + "id": "13476", + "name": "Novo Repartimento", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.70032000", + "longitude": "-50.52220000" + }, + { + "id": "13491", + "name": "Oeiras do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.00306000", + "longitude": "-49.85444000" + }, + { + "id": "13518", + "name": "Oriximiná", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.76556000", + "longitude": "-55.86611000" + }, + { + "id": "13552", + "name": "Ourém", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.55194000", + "longitude": "-47.11444000" + }, + { + "id": "13533", + "name": "Ourilândia do Norte", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.59565000", + "longitude": "-51.43201000" + }, + { + "id": "13556", + "name": "Pacajá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.70172000", + "longitude": "-50.77844000" + }, + { + "id": "13578", + "name": "Palestina do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.97518000", + "longitude": "-48.38544000" + }, + { + "id": "13626", + "name": "Paragominas", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.96667000", + "longitude": "-47.48333000" + }, + { + "id": "13655", + "name": "Parauapebas", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.18558000", + "longitude": "-50.55474000" + }, + { + "id": "13717", + "name": "Pau d'Arco", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.73913000", + "longitude": "-50.14638000" + }, + { + "id": "13788", + "name": "Peixe-Boi", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.10168000", + "longitude": "-47.27259000" + }, + { + "id": "13929", + "name": "Piçarra", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.47338000", + "longitude": "-48.95039000" + }, + { + "id": "13932", + "name": "Placas", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.97715000", + "longitude": "-54.52418000" + }, + { + "id": "13959", + "name": "Ponta de Pedras", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.05304000", + "longitude": "-49.15491000" + }, + { + "id": "13990", + "name": "Portel", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.93556000", + "longitude": "-50.82111000" + }, + { + "id": "14025", + "name": "Porto de Moz", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.74833000", + "longitude": "-52.23833000" + }, + { + "id": "14066", + "name": "Prainha", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.20147000", + "longitude": "-53.49329000" + }, + { + "id": "14100", + "name": "Primavera", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.94947000", + "longitude": "-47.11040000" + }, + { + "id": "14130", + "name": "Quatipuru", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.82554000", + "longitude": "-47.01043000" + }, + { + "id": "14184", + "name": "Redenção", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.06010000", + "longitude": "-50.18116000" + }, + { + "id": "14281", + "name": "Rio Maria", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.40968000", + "longitude": "-49.82886000" + }, + { + "id": "14345", + "name": "Rondon do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.43977000", + "longitude": "-48.59233000" + }, + { + "id": "14362", + "name": "Rurópolis", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.18795000", + "longitude": "-55.18406000" + }, + { + "id": "14389", + "name": "Salinópolis", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.61361000", + "longitude": "-47.35611000" + }, + { + "id": "14407", + "name": "Salvaterra", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.78848000", + "longitude": "-48.61953000" + }, + { + "id": "14428", + "name": "Santa Bárbara do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.19832000", + "longitude": "-48.25095000" + }, + { + "id": "14451", + "name": "Santa Cruz do Arari", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.59603000", + "longitude": "-49.29289000" + }, + { + "id": "14485", + "name": "Santa Izabel do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.37975000", + "longitude": "-48.12221000" + }, + { + "id": "14497", + "name": "Santa Luzia do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.65750000", + "longitude": "-46.92715000" + }, + { + "id": "14508", + "name": "Santa Maria das Barreiras", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.63667000", + "longitude": "-50.26578000" + }, + { + "id": "14514", + "name": "Santa Maria do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.35028000", + "longitude": "-47.57556000" + }, + { + "id": "14578", + "name": "Santana do Araguaia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.13867000", + "longitude": "-50.67300000" + }, + { + "id": "14598", + "name": "Santarém", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.44306000", + "longitude": "-54.70833000" + }, + { + "id": "14599", + "name": "Santarém Novo", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.88782000", + "longitude": "-47.36301000" + }, + { + "id": "14641", + "name": "Santo Antônio do Tauá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.15194000", + "longitude": "-48.12944000" + }, + { + "id": "14661", + "name": "Sapucaia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.84790000", + "longitude": "-49.50056000" + }, + { + "id": "14852", + "name": "São Caetano de Odivelas", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.75000000", + "longitude": "-48.02000000" + }, + { + "id": "14867", + "name": "São Domingos do Araguaia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.71930000", + "longitude": "-48.72755000" + }, + { + "id": "14869", + "name": "São Domingos do Capim", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.87163000", + "longitude": "-47.77837000" + }, + { + "id": "14906", + "name": "São Félix do Xingu", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.64472000", + "longitude": "-51.99500000" + }, + { + "id": "14896", + "name": "São Francisco do Pará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.14641000", + "longitude": "-47.75713000" + }, + { + "id": "14914", + "name": "São Geraldo do Araguaia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.40056000", + "longitude": "-48.55500000" + }, + { + "id": "15013", + "name": "São João da Ponta", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.85361000", + "longitude": "-47.97803000" + }, + { + "id": "15022", + "name": "São João de Pirabas", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.77472000", + "longitude": "-47.17722000" + }, + { + "id": "15024", + "name": "São João do Araguaia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.44300000", + "longitude": "-48.74932000" + }, + { + "id": "15090", + "name": "São Miguel do Guamá", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.62667000", + "longitude": "-47.48333000" + }, + { + "id": "15139", + "name": "São Sebastião da Boa Vista", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.47873000", + "longitude": "-49.62629000" + }, + { + "id": "14702", + "name": "Senador José Porfírio", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.59083000", + "longitude": "-51.95417000" + }, + { + "id": "14814", + "name": "Soure", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.71667000", + "longitude": "-48.52333000" + }, + { + "id": "15201", + "name": "Tailândia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.87235000", + "longitude": "-48.75748000" + }, + { + "id": "15289", + "name": "Terra Alta", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.99306000", + "longitude": "-47.84447000" + }, + { + "id": "15297", + "name": "Terra Santa", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.10417000", + "longitude": "-56.48694000" + }, + { + "id": "15334", + "name": "Tomé Açu", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.41889000", + "longitude": "-48.15222000" + }, + { + "id": "15335", + "name": "Tomé-Açu", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.62132000", + "longitude": "-48.24098000" + }, + { + "id": "15345", + "name": "Tracuateua", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.98894000", + "longitude": "-46.93973000" + }, + { + "id": "15349", + "name": "Trairão", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.10250000", + "longitude": "-55.95821000" + }, + { + "id": "15387", + "name": "Tucumã", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.83470000", + "longitude": "-51.44562000" + }, + { + "id": "15389", + "name": "Tucuruí", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.76585000", + "longitude": "-49.67923000" + }, + { + "id": "15443", + "name": "Ulianópolis", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.81225000", + "longitude": "-47.50094000" + }, + { + "id": "15471", + "name": "Uruará", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.63212000", + "longitude": "-53.78023000" + }, + { + "id": "15564", + "name": "Vigia", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-0.85833000", + "longitude": "-48.14167000" + }, + { + "id": "15588", + "name": "Viseu", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-1.19667000", + "longitude": "-46.14000000" + }, + { + "id": "15604", + "name": "Vitória do Xingu", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.22032000", + "longitude": "-51.88508000" + }, + { + "id": "15641", + "name": "Xinguara", + "state_id": 2009, + "state_code": "PA", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.84897000", + "longitude": "-49.25573000" + }, + { + "id": "10066", + "name": "Abreu e Lima", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.86865000", + "longitude": "-35.08171000" + }, + { + "id": "10085", + "name": "Afogados da Ingazeira", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.72298000", + "longitude": "-37.61781000" + }, + { + "id": "10089", + "name": "Afrânio", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.62589000", + "longitude": "-41.05768000" + }, + { + "id": "10091", + "name": "Agrestina", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.45191000", + "longitude": "-35.93238000" + }, + { + "id": "10111", + "name": "Alagoinha", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.53497000", + "longitude": "-36.75607000" + }, + { + "id": "10137", + "name": "Aliança", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.59698000", + "longitude": "-35.16536000" + }, + { + "id": "10158", + "name": "Altinho", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.45151000", + "longitude": "-36.08155000" + }, + { + "id": "10206", + "name": "Amaraji", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.37192000", + "longitude": "-35.48991000" + }, + { + "id": "10250", + "name": "Angelim", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.89154000", + "longitude": "-36.27674000" + }, + { + "id": "10370", + "name": "Araçoiaba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.79387000", + "longitude": "-35.07645000" + }, + { + "id": "10355", + "name": "Araripina", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.57611000", + "longitude": "-40.49833000" + }, + { + "id": "10379", + "name": "Arcoverde", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.41889000", + "longitude": "-37.05389000" + }, + { + "id": "15663", + "name": "Água Preta", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.70750000", + "longitude": "-35.53056000" + }, + { + "id": "15665", + "name": "Águas Belas", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.11139000", + "longitude": "-37.12306000" + }, + { + "id": "10524", + "name": "Barra de Guabiraba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.39450000", + "longitude": "-35.62054000" + }, + { + "id": "10556", + "name": "Barreiros", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.81833000", + "longitude": "-35.18639000" + }, + { + "id": "10617", + "name": "Belém de Maria", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.57849000", + "longitude": "-35.82495000" + }, + { + "id": "10618", + "name": "Belém de São Francisco", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.75389000", + "longitude": "-38.96583000" + }, + { + "id": "10621", + "name": "Belém do São Francisco", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.53386000", + "longitude": "-38.98166000" + }, + { + "id": "10608", + "name": "Belo Jardim", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.33556000", + "longitude": "-36.42417000" + }, + { + "id": "10643", + "name": "Betânia", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.28789000", + "longitude": "-37.97622000" + }, + { + "id": "10645", + "name": "Bezerros", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.23333000", + "longitude": "-35.79694000" + }, + { + "id": "10685", + "name": "Bodocó", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.78881000", + "longitude": "-39.95255000" + }, + { + "id": "10690", + "name": "Bom Conselho", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.16972000", + "longitude": "-36.67972000" + }, + { + "id": "10692", + "name": "Bom Jardim", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.79583000", + "longitude": "-35.58722000" + }, + { + "id": "10736", + "name": "Bonito", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.47028000", + "longitude": "-35.72861000" + }, + { + "id": "10799", + "name": "Brejão", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.03600000", + "longitude": "-36.56056000" + }, + { + "id": "10786", + "name": "Brejinho", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.34462000", + "longitude": "-37.33463000" + }, + { + "id": "10793", + "name": "Brejo da Madre de Deus", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.14583000", + "longitude": "-36.37111000" + }, + { + "id": "10839", + "name": "Buíque", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.62306000", + "longitude": "-37.15583000" + }, + { + "id": "10815", + "name": "Buenos Aires", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.72000000", + "longitude": "-35.32000000" + }, + { + "id": "10852", + "name": "Cabo", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.28333000", + "longitude": "-35.03333000" + }, + { + "id": "10855", + "name": "Cabo de Santo Agostinho", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.27727000", + "longitude": "-35.09090000" + }, + { + "id": "10857", + "name": "Cabrobó", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.51417000", + "longitude": "-39.31000000" + }, + { + "id": "10876", + "name": "Cachoeirinha", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.48639000", + "longitude": "-36.23306000" + }, + { + "id": "10892", + "name": "Caetés", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.77306000", + "longitude": "-36.62250000" + }, + { + "id": "10932", + "name": "Calçado", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.73580000", + "longitude": "-36.33149000" + }, + { + "id": "10931", + "name": "Calumbi", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.01910000", + "longitude": "-38.09799000" + }, + { + "id": "10941", + "name": "Camaragibe", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.98780000", + "longitude": "-34.99136000" + }, + { + "id": "10954", + "name": "Camocim de São Félix", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.35861000", + "longitude": "-35.76194000" + }, + { + "id": "11020", + "name": "Camutanga", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.43515000", + "longitude": "-35.30172000" + }, + { + "id": "11045", + "name": "Canhotinho", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.88222000", + "longitude": "-36.19111000" + }, + { + "id": "11092", + "name": "Capoeiras", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.73472000", + "longitude": "-36.62667000" + }, + { + "id": "11157", + "name": "Carnaíba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.70000000", + "longitude": "-37.66667000" + }, + { + "id": "11156", + "name": "Carnaubeira da Penha", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.42648000", + "longitude": "-38.76523000" + }, + { + "id": "11162", + "name": "Carpina", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.85083000", + "longitude": "-35.25472000" + }, + { + "id": "11166", + "name": "Caruaru", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.17924000", + "longitude": "-36.02794000" + }, + { + "id": "11181", + "name": "Casinhas", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.75811000", + "longitude": "-35.69922000" + }, + { + "id": "11201", + "name": "Catende", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.66667000", + "longitude": "-35.71667000" + }, + { + "id": "11231", + "name": "Cedro", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.71879000", + "longitude": "-39.23334000" + }, + { + "id": "11288", + "name": "Chã de Alegria", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.99013000", + "longitude": "-35.18974000" + }, + { + "id": "11286", + "name": "Chã Grande", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.23833000", + "longitude": "-35.46167000" + }, + { + "id": "11335", + "name": "Colônia Leopoldina", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.90889000", + "longitude": "-35.72500000" + }, + { + "id": "11369", + "name": "Condado", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.58583000", + "longitude": "-35.10583000" + }, + { + "id": "11435", + "name": "Correntes", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.13378000", + "longitude": "-36.32033000" + }, + { + "id": "11437", + "name": "Cortês", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.44254000", + "longitude": "-35.53378000" + }, + { + "id": "11513", + "name": "Cumaru", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.00611000", + "longitude": "-35.69722000" + }, + { + "id": "11520", + "name": "Cupira", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.61667000", + "longitude": "-35.95000000" + }, + { + "id": "11540", + "name": "Custódia", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.12882000", + "longitude": "-37.66208000" + }, + { + "id": "11649", + "name": "Dormentes", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.43020000", + "longitude": "-40.59717000" + }, + { + "id": "11724", + "name": "Escada", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.35917000", + "longitude": "-35.22361000" + }, + { + "id": "11769", + "name": "Exu", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.51194000", + "longitude": "-39.72417000" + }, + { + "id": "11790", + "name": "Feira Nova", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.93474000", + "longitude": "-35.39248000" + }, + { + "id": "11807", + "name": "Fernando de Noronha", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.85071000", + "longitude": "-32.41997000" + }, + { + "id": "11808", + "name": "Fernando de Noronha (Distrito Estadual)", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.84028000", + "longitude": "-32.41083000" + }, + { + "id": "11813", + "name": "Ferreiros", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.48644000", + "longitude": "-35.19997000" + }, + { + "id": "11830", + "name": "Flores", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.86806000", + "longitude": "-37.97472000" + }, + { + "id": "11834", + "name": "Floresta", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.60111000", + "longitude": "-38.56861000" + }, + { + "id": "11895", + "name": "Frei Miguelinho", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.94208000", + "longitude": "-35.89073000" + }, + { + "id": "11915", + "name": "Gameleira", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.58444000", + "longitude": "-35.38667000" + }, + { + "id": "11919", + "name": "Garanhuns", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.88202000", + "longitude": "-36.50216000" + }, + { + "id": "11953", + "name": "Glória do Goitá", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.03865000", + "longitude": "-35.34006000" + }, + { + "id": "11957", + "name": "Goiana", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.56056000", + "longitude": "-35.00250000" + }, + { + "id": "11997", + "name": "Granito", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.74380000", + "longitude": "-39.64021000" + }, + { + "id": "12002", + "name": "Gravatá", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.20111000", + "longitude": "-35.56472000" + }, + { + "id": "12011", + "name": "Guabiraba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.41667000", + "longitude": "-35.66667000" + }, + { + "id": "12118", + "name": "Iati", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.19129000", + "longitude": "-36.94946000" + }, + { + "id": "12139", + "name": "Ibimirim", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.54056000", + "longitude": "-37.69028000" + }, + { + "id": "12147", + "name": "Ibirajuba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.61290000", + "longitude": "-36.15399000" + }, + { + "id": "12188", + "name": "Igarassu", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.83417000", + "longitude": "-34.90639000" + }, + { + "id": "12197", + "name": "Iguaracy", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.84183000", + "longitude": "-37.40822000" + }, + { + "id": "12211", + "name": "Ilha de Itamaracá", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.74665000", + "longitude": "-34.84728000" + }, + { + "id": "12228", + "name": "Inajá", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.78778000", + "longitude": "-37.78853000" + }, + { + "id": "12243", + "name": "Ingazeira", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.71728000", + "longitude": "-37.42461000" + }, + { + "id": "12283", + "name": "Ipojuca", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.39889000", + "longitude": "-35.06389000" + }, + { + "id": "12290", + "name": "Ipubi", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.65194000", + "longitude": "-40.14889000" + }, + { + "id": "12467", + "name": "Itaíba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.94750000", + "longitude": "-37.42278000" + }, + { + "id": "12344", + "name": "Itacuruba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.76952000", + "longitude": "-38.71917000" + }, + { + "id": "12375", + "name": "Itamaracá", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.74778000", + "longitude": "-34.82556000" + }, + { + "id": "12385", + "name": "Itambé", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.44733000", + "longitude": "-35.17356000" + }, + { + "id": "12412", + "name": "Itapetim", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.39642000", + "longitude": "-37.13113000" + }, + { + "id": "12426", + "name": "Itapissuma", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.77639000", + "longitude": "-34.89222000" + }, + { + "id": "12446", + "name": "Itaquitinga", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.66778000", + "longitude": "-35.10167000" + }, + { + "id": "12508", + "name": "Jaboatão", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.18028000", + "longitude": "-35.00139000" + }, + { + "id": "12509", + "name": "Jaboatão dos Guararapes", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.14568000", + "longitude": "-34.97381000" + }, + { + "id": "12577", + "name": "Jaqueira", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.73880000", + "longitude": "-35.79850000" + }, + { + "id": "12599", + "name": "Jataúba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.05299000", + "longitude": "-36.57103000" + }, + { + "id": "12602", + "name": "Jatobá", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.18306000", + "longitude": "-38.26889000" + }, + { + "id": "12638", + "name": "Joaquim Nabuco", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.62444000", + "longitude": "-35.53333000" + }, + { + "id": "12657", + "name": "João Alfredo", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.85583000", + "longitude": "-35.58833000" + }, + { + "id": "12676", + "name": "Jucati", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.75067000", + "longitude": "-36.47750000" + }, + { + "id": "12690", + "name": "Jupi", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.71547000", + "longitude": "-36.39397000" + }, + { + "id": "12697", + "name": "Jurema", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.78579000", + "longitude": "-36.13364000" + }, + { + "id": "12753", + "name": "Lagoa de Itaenga", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.90293000", + "longitude": "-35.29323000" + }, + { + "id": "12758", + "name": "Lagoa do Carro", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.85419000", + "longitude": "-35.33637000" + }, + { + "id": "12759", + "name": "Lagoa do Itaenga", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.93611000", + "longitude": "-35.29028000" + }, + { + "id": "12761", + "name": "Lagoa do Ouro", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.16636000", + "longitude": "-36.48221000" + }, + { + "id": "12765", + "name": "Lagoa dos Gatos", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.67965000", + "longitude": "-35.88979000" + }, + { + "id": "12738", + "name": "Lagoa Grande", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.78698000", + "longitude": "-40.25356000" + }, + { + "id": "12781", + "name": "Lajedo", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.66361000", + "longitude": "-36.32000000" + }, + { + "id": "12831", + "name": "Limoeiro", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.85092000", + "longitude": "-35.44512000" + }, + { + "id": "12886", + "name": "Macaparana", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.52866000", + "longitude": "-35.44430000" + }, + { + "id": "12901", + "name": "Machados", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.71477000", + "longitude": "-35.51882000" + }, + { + "id": "12938", + "name": "Manari", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.88175000", + "longitude": "-37.58760000" + }, + { + "id": "12975", + "name": "Maraial", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.78250000", + "longitude": "-35.80889000" + }, + { + "id": "13140", + "name": "Mirandiba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.13454000", + "longitude": "-38.74089000" + }, + { + "id": "13230", + "name": "Moreilândia", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.63092000", + "longitude": "-39.52167000" + }, + { + "id": "13232", + "name": "Moreno", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.11861000", + "longitude": "-35.09222000" + }, + { + "id": "13313", + "name": "Nazaré da Mata", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.74167000", + "longitude": "-35.22778000" + }, + { + "id": "13502", + "name": "Olinda", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.00889000", + "longitude": "-34.85528000" + }, + { + "id": "13523", + "name": "Orobó", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.74500000", + "longitude": "-35.60222000" + }, + { + "id": "13524", + "name": "Orocó", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.49405000", + "longitude": "-39.57790000" + }, + { + "id": "13532", + "name": "Ouricuri", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.88250000", + "longitude": "-40.08167000" + }, + { + "id": "13583", + "name": "Palmares", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.68333000", + "longitude": "-35.59167000" + }, + { + "id": "13600", + "name": "Palmeirina", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.02961000", + "longitude": "-36.24198000" + }, + { + "id": "13615", + "name": "Panelas", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.66651000", + "longitude": "-36.04783000" + }, + { + "id": "13642", + "name": "Paranatama", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.89811000", + "longitude": "-36.68199000" + }, + { + "id": "13679", + "name": "Parnamirim", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.09056000", + "longitude": "-39.57833000" + }, + { + "id": "13695", + "name": "Passira", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.99500000", + "longitude": "-35.58056000" + }, + { + "id": "13719", + "name": "Paudalho", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.94302000", + "longitude": "-35.13559000" + }, + { + "id": "13725", + "name": "Paulista", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.94083000", + "longitude": "-34.87306000" + }, + { + "id": "13745", + "name": "Pedra", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.49694000", + "longitude": "-36.94083000" + }, + { + "id": "13816", + "name": "Pesqueira", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.35778000", + "longitude": "-36.69639000" + }, + { + "id": "13819", + "name": "Petrolândia", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.84265000", + "longitude": "-38.30348000" + }, + { + "id": "13817", + "name": "Petrolina", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.39861000", + "longitude": "-40.50083000" + }, + { + "id": "14054", + "name": "Poção", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.21385000", + "longitude": "-36.72266000" + }, + { + "id": "13952", + "name": "Pombos", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.22536000", + "longitude": "-35.41692000" + }, + { + "id": "14101", + "name": "Primavera", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.33678000", + "longitude": "-35.37539000" + }, + { + "id": "14153", + "name": "Quipapá", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.82778000", + "longitude": "-36.01167000" + }, + { + "id": "14159", + "name": "Quixaba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.72105000", + "longitude": "-37.87276000" + }, + { + "id": "14179", + "name": "Recife", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.05389000", + "longitude": "-34.88111000" + }, + { + "id": "14212", + "name": "Riacho das Almas", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.05397000", + "longitude": "-35.82633000" + }, + { + "id": "14236", + "name": "Ribeirão", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.50755000", + "longitude": "-35.39342000" + }, + { + "id": "14274", + "name": "Rio Formoso", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.66877000", + "longitude": "-35.16277000" + }, + { + "id": "14375", + "name": "Sairé", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.30128000", + "longitude": "-35.68372000" + }, + { + "id": "14381", + "name": "Salgadinho", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.92406000", + "longitude": "-35.59677000" + }, + { + "id": "14386", + "name": "Salgueiro", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.07417000", + "longitude": "-39.11917000" + }, + { + "id": "14392", + "name": "Saloá", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.06487000", + "longitude": "-36.76158000" + }, + { + "id": "14415", + "name": "Sanharó", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.29191000", + "longitude": "-36.52169000" + }, + { + "id": "14439", + "name": "Santa Cruz", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.30615000", + "longitude": "-40.31890000" + }, + { + "id": "14442", + "name": "Santa Cruz da Baixa Verde", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.84821000", + "longitude": "-38.15341000" + }, + { + "id": "14452", + "name": "Santa Cruz do Capibaribe", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.95750000", + "longitude": "-36.20472000" + }, + { + "id": "14462", + "name": "Santa Filomena", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.28797000", + "longitude": "-40.59304000" + }, + { + "id": "14505", + "name": "Santa Maria da Boa Vista", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.80778000", + "longitude": "-39.82556000" + }, + { + "id": "14511", + "name": "Santa Maria do Cambucá", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.81441000", + "longitude": "-35.88175000" + }, + { + "id": "14558", + "name": "Santa Terezinha", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.42664000", + "longitude": "-37.44422000" + }, + { + "id": "14833", + "name": "São Benedito do Sul", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.77212000", + "longitude": "-35.90168000" + }, + { + "id": "14843", + "name": "São Bento do Una", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.53733000", + "longitude": "-36.48122000" + }, + { + "id": "14854", + "name": "São Caitano", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.33931000", + "longitude": "-36.16156000" + }, + { + "id": "14933", + "name": "São Joaquim do Monte", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.43250000", + "longitude": "-35.80444000" + }, + { + "id": "14999", + "name": "São João", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.86322000", + "longitude": "-36.39102000" + }, + { + "id": "14942", + "name": "São José da Coroa Grande", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.89778000", + "longitude": "-35.14778000" + }, + { + "id": "14961", + "name": "São José do Belmonte", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.86139000", + "longitude": "-38.75972000" + }, + { + "id": "14970", + "name": "São José do Egito", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.47889000", + "longitude": "-37.27444000" + }, + { + "id": "15053", + "name": "São Lourenço da Mata", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.00222000", + "longitude": "-35.01833000" + }, + { + "id": "15171", + "name": "São Vicente Férrer", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.60222000", + "longitude": "-35.50216000" + }, + { + "id": "14734", + "name": "Serra Talhada", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.99194000", + "longitude": "-38.29833000" + }, + { + "id": "14754", + "name": "Serrita", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.84008000", + "longitude": "-39.40812000" + }, + { + "id": "14759", + "name": "Sertânia", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.07361000", + "longitude": "-37.26444000" + }, + { + "id": "14793", + "name": "Sirinhaém", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.59083000", + "longitude": "-35.11611000" + }, + { + "id": "14805", + "name": "Solidão", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.59117000", + "longitude": "-37.65945000" + }, + { + "id": "14826", + "name": "Surubim", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.83306000", + "longitude": "-35.75472000" + }, + { + "id": "15187", + "name": "Tabira", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.59075000", + "longitude": "-37.49202000" + }, + { + "id": "15193", + "name": "Tacaimbó", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.32284000", + "longitude": "-36.24711000" + }, + { + "id": "15194", + "name": "Tacaratu", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.95680000", + "longitude": "-38.07649000" + }, + { + "id": "15208", + "name": "Tamandaré", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.74874000", + "longitude": "-35.13941000" + }, + { + "id": "15247", + "name": "Taquaritinga do Norte", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.84571000", + "longitude": "-36.12633000" + }, + { + "id": "15287", + "name": "Terezinha", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.08773000", + "longitude": "-36.61210000" + }, + { + "id": "15291", + "name": "Terra Nova", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.16981000", + "longitude": "-39.39098000" + }, + { + "id": "15311", + "name": "Timbaúba", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.53194000", + "longitude": "-35.35625000" + }, + { + "id": "15337", + "name": "Toritama", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.99823000", + "longitude": "-36.06332000" + }, + { + "id": "15346", + "name": "Tracunhaém", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.72460000", + "longitude": "-35.15480000" + }, + { + "id": "15360", + "name": "Trindade", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.78327000", + "longitude": "-40.33408000" + }, + { + "id": "15363", + "name": "Triunfo", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.84766000", + "longitude": "-38.05176000" + }, + { + "id": "15399", + "name": "Tupanatinga", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.67328000", + "longitude": "-37.34532000" + }, + { + "id": "15404", + "name": "Tuparetama", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.71335000", + "longitude": "-37.24523000" + }, + { + "id": "15529", + "name": "Venturosa", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.60330000", + "longitude": "-36.79818000" + }, + { + "id": "15539", + "name": "Verdejante", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.98470000", + "longitude": "-38.99816000" + }, + { + "id": "15544", + "name": "Vertente do Lério", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.78986000", + "longitude": "-35.80318000" + }, + { + "id": "15545", + "name": "Vertentes", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.90936000", + "longitude": "-35.97775000" + }, + { + "id": "15559", + "name": "Vicência", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.65645000", + "longitude": "-35.39117000" + }, + { + "id": "15601", + "name": "Vitória de Santo Antão", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.11806000", + "longitude": "-35.29139000" + }, + { + "id": "15640", + "name": "Xexéu", + "state_id": 2006, + "state_code": "PE", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.86469000", + "longitude": "-35.64275000" + }, + { + "id": "10074", + "name": "Acauã", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.31552000", + "longitude": "-40.91283000" + }, + { + "id": "10092", + "name": "Agricolândia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.74819000", + "longitude": "-42.67458000" + }, + { + "id": "10112", + "name": "Alagoinha do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.98016000", + "longitude": "-40.91814000" + }, + { + "id": "10125", + "name": "Alegrete do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.16226000", + "longitude": "-40.82488000" + }, + { + "id": "10173", + "name": "Alto Longá", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.40788000", + "longitude": "-42.06612000" + }, + { + "id": "10186", + "name": "Altos", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.03806000", + "longitude": "-42.46000000" + }, + { + "id": "10198", + "name": "Alvorada do Gurguéia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.38553000", + "longitude": "-43.83237000" + }, + { + "id": "10209", + "name": "Amarante", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.37020000", + "longitude": "-42.78806000" + }, + { + "id": "10283", + "name": "Anísio de Abreu", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.24779000", + "longitude": "-43.05238000" + }, + { + "id": "10254", + "name": "Angical do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.09884000", + "longitude": "-42.72022000" + }, + { + "id": "10271", + "name": "Antônio Almeida", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.12211000", + "longitude": "-44.25307000" + }, + { + "id": "10404", + "name": "Aroazes", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.20348000", + "longitude": "-41.86926000" + }, + { + "id": "10406", + "name": "Aroeiras do Itaim", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.27000000", + "longitude": "-41.56000000" + }, + { + "id": "10407", + "name": "Arraial", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.62721000", + "longitude": "-42.49393000" + }, + { + "id": "10431", + "name": "Assunção do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.85575000", + "longitude": "-40.94796000" + }, + { + "id": "10459", + "name": "Avelino Lopes", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.11463000", + "longitude": "-43.89286000" + }, + { + "id": "15651", + "name": "Água Branca", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.89222000", + "longitude": "-42.63611000" + }, + { + "id": "10477", + "name": "Baixa Grande do Ribeiro", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.69171000", + "longitude": "-45.12583000" + }, + { + "id": "10522", + "name": "Barra d'Alcântara", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.54095000", + "longitude": "-42.11504000" + }, + { + "id": "10549", + "name": "Barras", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.24444000", + "longitude": "-42.29444000" + }, + { + "id": "10552", + "name": "Barreiras do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.99042000", + "longitude": "-45.69329000" + }, + { + "id": "10562", + "name": "Barro Duro", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.85063000", + "longitude": "-42.45878000" + }, + { + "id": "10582", + "name": "Batalha", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.99736000", + "longitude": "-42.10645000" + }, + { + "id": "10600", + "name": "Bela Vista do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.91606000", + "longitude": "-41.90091000" + }, + { + "id": "10620", + "name": "Belém do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.40657000", + "longitude": "-40.98873000" + }, + { + "id": "10622", + "name": "Beneditinos", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.45000000", + "longitude": "-42.36667000" + }, + { + "id": "10639", + "name": "Bertolínia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.75477000", + "longitude": "-43.79588000" + }, + { + "id": "10644", + "name": "Betânia do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.06430000", + "longitude": "-40.85924000" + }, + { + "id": "10662", + "name": "Boa Hora", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.35576000", + "longitude": "-42.14109000" + }, + { + "id": "10679", + "name": "Bocaina", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.89508000", + "longitude": "-41.32746000" + }, + { + "id": "10698", + "name": "Bom Jesus", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.07444000", + "longitude": "-44.35861000" + }, + { + "id": "10720", + "name": "Bom Princípio do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.23751000", + "longitude": "-41.64572000" + }, + { + "id": "10732", + "name": "Bonfim do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.16462000", + "longitude": "-42.88253000" + }, + { + "id": "10745", + "name": "Boqueirão do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.56650000", + "longitude": "-42.13601000" + }, + { + "id": "10769", + "name": "Brasileira", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.13325000", + "longitude": "-41.58774000" + }, + { + "id": "10796", + "name": "Brejo do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.26858000", + "longitude": "-42.78801000" + }, + { + "id": "10828", + "name": "Buriti dos Lopes", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.17500000", + "longitude": "-41.86694000" + }, + { + "id": "10829", + "name": "Buriti dos Montes", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.20888000", + "longitude": "-41.25078000" + }, + { + "id": "10849", + "name": "Cabeceiras do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.43347000", + "longitude": "-42.23060000" + }, + { + "id": "10916", + "name": "Cajazeiras do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.78182000", + "longitude": "-42.39243000" + }, + { + "id": "10920", + "name": "Cajueiro da Praia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.98747000", + "longitude": "-41.35439000" + }, + { + "id": "10928", + "name": "Caldeirão Grande do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.34361000", + "longitude": "-40.58774000" + }, + { + "id": "10971", + "name": "Campinas do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.67905000", + "longitude": "-41.87938000" + }, + { + "id": "10980", + "name": "Campo Alegre do Fidalgo", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.31452000", + "longitude": "-41.79184000" + }, + { + "id": "10991", + "name": "Campo Grande do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.22070000", + "longitude": "-41.04511000" + }, + { + "id": "10993", + "name": "Campo Largo do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.85518000", + "longitude": "-42.60317000" + }, + { + "id": "10997", + "name": "Campo Maior", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.82778000", + "longitude": "-42.16861000" + }, + { + "id": "11028", + "name": "Canavieira", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.50756000", + "longitude": "-43.68630000" + }, + { + "id": "11056", + "name": "Canto do Buriti", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.11000000", + "longitude": "-42.94444000" + }, + { + "id": "11086", + "name": "Capitão de Campos", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.47203000", + "longitude": "-41.88512000" + }, + { + "id": "11083", + "name": "Capitão Gervásio Oliveira", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.52938000", + "longitude": "-41.90126000" + }, + { + "id": "11119", + "name": "Caraúbas do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.53699000", + "longitude": "-41.84588000" + }, + { + "id": "11101", + "name": "Caracol", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.34943000", + "longitude": "-43.27078000" + }, + { + "id": "11130", + "name": "Caridade do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.70139000", + "longitude": "-40.89597000" + }, + { + "id": "11188", + "name": "Castelo do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.21580000", + "longitude": "-41.55735000" + }, + { + "id": "11220", + "name": "Caxingó", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.40863000", + "longitude": "-41.88771000" + }, + { + "id": "11306", + "name": "Cocal", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.43751000", + "longitude": "-41.54594000" + }, + { + "id": "11307", + "name": "Cocal de Telha", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.64857000", + "longitude": "-41.99568000" + }, + { + "id": "11309", + "name": "Cocal dos Alves", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.57383000", + "longitude": "-41.45183000" + }, + { + "id": "11318", + "name": "Coivaras", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.11661000", + "longitude": "-42.26583000" + }, + { + "id": "11337", + "name": "Colônia do Gurguéia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.14465000", + "longitude": "-43.77459000" + }, + { + "id": "11338", + "name": "Colônia do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.22638000", + "longitude": "-42.21262000" + }, + { + "id": "11355", + "name": "Conceição do Canindé", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.98695000", + "longitude": "-41.57544000" + }, + { + "id": "11421", + "name": "Coronel José Dias", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.07216000", + "longitude": "-42.27241000" + }, + { + "id": "11434", + "name": "Corrente", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.47219000", + "longitude": "-45.04691000" + }, + { + "id": "11473", + "name": "Cristalândia do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.82007000", + "longitude": "-45.11052000" + }, + { + "id": "11477", + "name": "Cristino Castro", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.69043000", + "longitude": "-44.04806000" + }, + { + "id": "11522", + "name": "Curimatá", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.86209000", + "longitude": "-44.38994000" + }, + { + "id": "11527", + "name": "Currais", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.73985000", + "longitude": "-44.86466000" + }, + { + "id": "11529", + "name": "Curral Novo do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.88978000", + "longitude": "-40.76427000" + }, + { + "id": "11534", + "name": "Curralinhos", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.58488000", + "longitude": "-42.86082000" + }, + { + "id": "11571", + "name": "Demerval Lobão", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.35833000", + "longitude": "-42.67639000" + }, + { + "id": "11598", + "name": "Dirceu Arcoverde", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.33230000", + "longitude": "-42.43422000" + }, + { + "id": "11627", + "name": "Dom Expedito Lopes", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.95806000", + "longitude": "-41.71629000" + }, + { + "id": "11629", + "name": "Dom Inocêncio", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.88480000", + "longitude": "-41.72000000" + }, + { + "id": "11638", + "name": "Domingos Mourão", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.19141000", + "longitude": "-41.34833000" + }, + { + "id": "11681", + "name": "Elesbão Veloso", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.19359000", + "longitude": "-42.16607000" + }, + { + "id": "11683", + "name": "Eliseu Martins", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.90155000", + "longitude": "-43.77769000" + }, + { + "id": "11729", + "name": "Esperantina", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.84898000", + "longitude": "-42.17102000" + }, + { + "id": "11780", + "name": "Fartura do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.52033000", + "longitude": "-42.78927000" + }, + { + "id": "11833", + "name": "Flores do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.64121000", + "longitude": "-42.84551000" + }, + { + "id": "11838", + "name": "Floresta do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.47628000", + "longitude": "-41.84428000" + }, + { + "id": "11841", + "name": "Floriano", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.76694000", + "longitude": "-43.02250000" + }, + { + "id": "11875", + "name": "Francinópolis", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.41032000", + "longitude": "-42.24638000" + }, + { + "id": "11877", + "name": "Francisco Ayres", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.69130000", + "longitude": "-42.69202000" + }, + { + "id": "11882", + "name": "Francisco Macedo", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.35845000", + "longitude": "-40.77056000" + }, + { + "id": "11884", + "name": "Francisco Santos", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.10293000", + "longitude": "-41.14500000" + }, + { + "id": "11900", + "name": "Fronteiras", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.01250000", + "longitude": "-40.56213000" + }, + { + "id": "11933", + "name": "Geminiano", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.16595000", + "longitude": "-41.38802000" + }, + { + "id": "11944", + "name": "Gilbués", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.72737000", + "longitude": "-45.52017000" + }, + { + "id": "12013", + "name": "Guadalupe", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.82297000", + "longitude": "-43.77762000" + }, + { + "id": "12066", + "name": "Guaribas", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.28870000", + "longitude": "-43.58188000" + }, + { + "id": "12108", + "name": "Hugo Napoleão", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.03293000", + "longitude": "-42.46773000" + }, + { + "id": "12208", + "name": "Ilha Grande", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.84022000", + "longitude": "-41.82881000" + }, + { + "id": "12252", + "name": "Inhuma", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.66187000", + "longitude": "-41.68135000" + }, + { + "id": "12278", + "name": "Ipiranga do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.84634000", + "longitude": "-41.74687000" + }, + { + "id": "12292", + "name": "Ipueiras", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.03333000", + "longitude": "-40.45000000" + }, + { + "id": "12322", + "name": "Isaías Coelho", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.54521000", + "longitude": "-41.64289000" + }, + { + "id": "12358", + "name": "Itainópolis", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.45524000", + "longitude": "-41.54165000" + }, + { + "id": "12463", + "name": "Itaueira", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.60333000", + "longitude": "-43.02556000" + }, + { + "id": "12528", + "name": "Jacobina do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.96488000", + "longitude": "-41.17396000" + }, + { + "id": "12551", + "name": "Jaicós", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.45645000", + "longitude": "-41.22016000" + }, + { + "id": "12590", + "name": "Jardim do Mulato", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.15734000", + "longitude": "-42.47763000" + }, + { + "id": "12604", + "name": "Jatobá do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.80296000", + "longitude": "-41.89545000" + }, + { + "id": "12717", + "name": "Júlio Borges", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.51580000", + "longitude": "-44.19178000" + }, + { + "id": "12623", + "name": "Jerumenha", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.09885000", + "longitude": "-43.54675000" + }, + { + "id": "12639", + "name": "Joaquim Pires", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.53692000", + "longitude": "-42.07750000" + }, + { + "id": "12658", + "name": "João Costa", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.54315000", + "longitude": "-42.41513000" + }, + { + "id": "12644", + "name": "Joca Marques", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.54211000", + "longitude": "-42.43579000" + }, + { + "id": "12655", + "name": "José de Freitas", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.72992000", + "longitude": "-42.61373000" + }, + { + "id": "12675", + "name": "Juazeiro do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.02486000", + "longitude": "-41.52841000" + }, + { + "id": "12696", + "name": "Jurema", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.29862000", + "longitude": "-43.15301000" + }, + { + "id": "12734", + "name": "Lagoa Alegre", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.49510000", + "longitude": "-42.56555000" + }, + { + "id": "12755", + "name": "Lagoa de São Francisco", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.35468000", + "longitude": "-41.59168000" + }, + { + "id": "12757", + "name": "Lagoa do Barro do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.73535000", + "longitude": "-41.54813000" + }, + { + "id": "12762", + "name": "Lagoa do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.47513000", + "longitude": "-42.54814000" + }, + { + "id": "12763", + "name": "Lagoa do Sítio", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.51918000", + "longitude": "-41.42058000" + }, + { + "id": "12769", + "name": "Lagoinha do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.80702000", + "longitude": "-42.62796000" + }, + { + "id": "12791", + "name": "Landri Sales", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.23268000", + "longitude": "-43.86456000" + }, + { + "id": "12879", + "name": "Luís Correia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.03117000", + "longitude": "-41.51665000" + }, + { + "id": "12875", + "name": "Luzilândia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.60743000", + "longitude": "-42.36456000" + }, + { + "id": "12906", + "name": "Madeiro", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.54658000", + "longitude": "-42.51114000" + }, + { + "id": "12952", + "name": "Manoel Emídio", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.16469000", + "longitude": "-43.83360000" + }, + { + "id": "12996", + "name": "Marcolândia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.40891000", + "longitude": "-40.74945000" + }, + { + "id": "12997", + "name": "Marcos Parente", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.05412000", + "longitude": "-43.91664000" + }, + { + "id": "13042", + "name": "Massapê do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.53879000", + "longitude": "-41.01755000" + }, + { + "id": "13058", + "name": "Matias Olímpio", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.68774000", + "longitude": "-42.60695000" + }, + { + "id": "13109", + "name": "Miguel Alves", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.15790000", + "longitude": "-42.77263000" + }, + { + "id": "13111", + "name": "Miguel Leão", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.72867000", + "longitude": "-42.68942000" + }, + { + "id": "13118", + "name": "Milton Brandão", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.74021000", + "longitude": "-41.59457000" + }, + { + "id": "13177", + "name": "Monsenhor Gil", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.64162000", + "longitude": "-42.54879000" + }, + { + "id": "13178", + "name": "Monsenhor Hipólito", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.94982000", + "longitude": "-41.03155000" + }, + { + "id": "13191", + "name": "Monte Alegre do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.74213000", + "longitude": "-44.98266000" + }, + { + "id": "13241", + "name": "Morro Cabeça no Tempo", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.87713000", + "longitude": "-43.90657000" + }, + { + "id": "13249", + "name": "Morro do Chapéu do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.68694000", + "longitude": "-42.22185000" + }, + { + "id": "13281", + "name": "Murici dos Portelas", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.36504000", + "longitude": "-42.00218000" + }, + { + "id": "13314", + "name": "Nazaré do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.03279000", + "longitude": "-42.73216000" + }, + { + "id": "13315", + "name": "Nazária", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.44546000", + "longitude": "-42.86840000" + }, + { + "id": "13341", + "name": "Nossa Senhora de Nazaré", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.63841000", + "longitude": "-42.19017000" + }, + { + "id": "13344", + "name": "Nossa Senhora dos Remédios", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.05765000", + "longitude": "-42.60651000" + }, + { + "id": "13433", + "name": "Nova Santa Rita", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.11204000", + "longitude": "-42.01361000" + }, + { + "id": "13473", + "name": "Novo Oriente do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.55034000", + "longitude": "-41.98555000" + }, + { + "id": "13477", + "name": "Novo Santo Antônio", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.32848000", + "longitude": "-41.96256000" + }, + { + "id": "13490", + "name": "Oeiras", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.90686000", + "longitude": "-42.17529000" + }, + { + "id": "13499", + "name": "Olho d'Água do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.84854000", + "longitude": "-42.53937000" + }, + { + "id": "13563", + "name": "Padre Marcos", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.36533000", + "longitude": "-40.93416000" + }, + { + "id": "13565", + "name": "Paes Landim", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.77461000", + "longitude": "-42.35087000" + }, + { + "id": "13574", + "name": "Pajeú do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.05364000", + "longitude": "-42.86625000" + }, + { + "id": "13593", + "name": "Palmeira do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.51549000", + "longitude": "-44.43642000" + }, + { + "id": "13595", + "name": "Palmeirais", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.78548000", + "longitude": "-43.02434000" + }, + { + "id": "13622", + "name": "Paquetá", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.10746000", + "longitude": "-41.64719000" + }, + { + "id": "13682", + "name": "Parnaíba", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-2.92278000", + "longitude": "-41.73536000" + }, + { + "id": "13678", + "name": "Parnaguá", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.12155000", + "longitude": "-44.56012000" + }, + { + "id": "13694", + "name": "Passagem Franca do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.82734000", + "longitude": "-42.40584000" + }, + { + "id": "13708", + "name": "Patos do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.60918000", + "longitude": "-41.29464000" + }, + { + "id": "13715", + "name": "Pau D'arco do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.24511000", + "longitude": "-42.45473000" + }, + { + "id": "13728", + "name": "Paulistana", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.22526000", + "longitude": "-41.22746000" + }, + { + "id": "13740", + "name": "Pavussu", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.88646000", + "longitude": "-43.19694000" + }, + { + "id": "13777", + "name": "Pedro II", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.49028000", + "longitude": "-41.39962000" + }, + { + "id": "13778", + "name": "Pedro Laurentino", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.11766000", + "longitude": "-42.23542000" + }, + { + "id": "13829", + "name": "Picos", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.10697000", + "longitude": "-41.51271000" + }, + { + "id": "13846", + "name": "Pimenteiras", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.24528000", + "longitude": "-41.41917000" + }, + { + "id": "13878", + "name": "Pio IX", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.86982000", + "longitude": "-40.59717000" + }, + { + "id": "13887", + "name": "Piracuruca", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.86656000", + "longitude": "-41.74153000" + }, + { + "id": "13917", + "name": "Piripiri", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.39488000", + "longitude": "-41.78819000" + }, + { + "id": "13992", + "name": "Porto", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.94558000", + "longitude": "-42.68879000" + }, + { + "id": "13996", + "name": "Porto Alegre do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.95931000", + "longitude": "-44.07411000" + }, + { + "id": "14070", + "name": "Prata do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.71099000", + "longitude": "-42.15331000" + }, + { + "id": "14138", + "name": "Queimada Nova", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.53997000", + "longitude": "-41.24753000" + }, + { + "id": "14186", + "name": "Redenção do Gurguéia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.58205000", + "longitude": "-44.53802000" + }, + { + "id": "14188", + "name": "Regeneração", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.27844000", + "longitude": "-42.48165000" + }, + { + "id": "14210", + "name": "Riacho Frio", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.83660000", + "longitude": "-44.67899000" + }, + { + "id": "14233", + "name": "Ribeira do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.09706000", + "longitude": "-42.57609000" + }, + { + "id": "14235", + "name": "Ribeiro Gonçalves", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.08721000", + "longitude": "-45.47197000" + }, + { + "id": "14278", + "name": "Rio Grande do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.86062000", + "longitude": "-43.14551000" + }, + { + "id": "14454", + "name": "Santa Cruz do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.26490000", + "longitude": "-41.76380000" + }, + { + "id": "14458", + "name": "Santa Cruz dos Milagres", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.83227000", + "longitude": "-41.95795000" + }, + { + "id": "14461", + "name": "Santa Filomena", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.89582000", + "longitude": "-45.66715000" + }, + { + "id": "14488", + "name": "Santa Luz", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.97437000", + "longitude": "-44.27778000" + }, + { + "id": "14546", + "name": "Santa Rosa do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.82877000", + "longitude": "-42.24627000" + }, + { + "id": "14591", + "name": "Santana do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.95247000", + "longitude": "-41.46185000" + }, + { + "id": "14618", + "name": "Santo Antônio de Lisboa", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.87642000", + "longitude": "-41.18103000" + }, + { + "id": "14643", + "name": "Santo Antônio dos Milagres", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.05399000", + "longitude": "-42.70083000" + }, + { + "id": "14651", + "name": "Santo Inácio do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.46906000", + "longitude": "-41.91794000" + }, + { + "id": "14849", + "name": "São Braz do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.97380000", + "longitude": "-42.97568000" + }, + { + "id": "14904", + "name": "São Félix do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.88422000", + "longitude": "-42.10830000" + }, + { + "id": "14884", + "name": "São Francisco de Assis do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.12334000", + "longitude": "-41.48056000" + }, + { + "id": "14897", + "name": "São Francisco do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.16899000", + "longitude": "-42.55086000" + }, + { + "id": "14920", + "name": "São Gonçalo do Gurguéia", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.07630000", + "longitude": "-45.42387000" + }, + { + "id": "14922", + "name": "São Gonçalo do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.02033000", + "longitude": "-42.67020000" + }, + { + "id": "15008", + "name": "São João da Canabrava", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.72756000", + "longitude": "-41.38226000" + }, + { + "id": "15009", + "name": "São João da Fronteira", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.09363000", + "longitude": "-41.21552000" + }, + { + "id": "15015", + "name": "São João da Serra", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.44173000", + "longitude": "-41.85793000" + }, + { + "id": "15017", + "name": "São João da Varjota", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.94733000", + "longitude": "-41.92917000" + }, + { + "id": "15025", + "name": "São João do Arraial", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.80325000", + "longitude": "-42.46973000" + }, + { + "id": "15040", + "name": "São João do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.27575000", + "longitude": "-42.34005000" + }, + { + "id": "14968", + "name": "São José do Divino", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-3.74297000", + "longitude": "-41.90119000" + }, + { + "id": "14980", + "name": "São José do Peixe", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.49544000", + "longitude": "-42.49355000" + }, + { + "id": "14981", + "name": "São José do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.84096000", + "longitude": "-41.51702000" + }, + { + "id": "15050", + "name": "São Julião", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.05987000", + "longitude": "-40.79725000" + }, + { + "id": "15056", + "name": "São Lourenço do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.13336000", + "longitude": "-42.40297000" + }, + { + "id": "15059", + "name": "São Luis do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.77801000", + "longitude": "-41.27650000" + }, + { + "id": "15080", + "name": "São Miguel da Baixa Grande", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.81791000", + "longitude": "-42.27077000" + }, + { + "id": "15088", + "name": "São Miguel do Fidalgo", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.59935000", + "longitude": "-42.38796000" + }, + { + "id": "15095", + "name": "São Miguel do Tapuio", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.70486000", + "longitude": "-41.61634000" + }, + { + "id": "15119", + "name": "São Pedro do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.82135000", + "longitude": "-42.77168000" + }, + { + "id": "15126", + "name": "São Raimundo Nonato", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.05220000", + "longitude": "-42.60836000" + }, + { + "id": "14683", + "name": "Sebastião Barros", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.59755000", + "longitude": "-44.83609000" + }, + { + "id": "14685", + "name": "Sebastião Leal", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.51324000", + "longitude": "-44.02545000" + }, + { + "id": "14774", + "name": "Sigefredo Pacheco", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.79886000", + "longitude": "-41.78459000" + }, + { + "id": "14788", + "name": "Simões", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.59889000", + "longitude": "-40.81778000" + }, + { + "id": "14785", + "name": "Simplício Mendes", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.85389000", + "longitude": "-41.91028000" + }, + { + "id": "14801", + "name": "Socorro do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.89820000", + "longitude": "-42.50745000" + }, + { + "id": "14827", + "name": "Sussuapara", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.00335000", + "longitude": "-41.39182000" + }, + { + "id": "15213", + "name": "Tamboril do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.40278000", + "longitude": "-43.09084000" + }, + { + "id": "15222", + "name": "Tanque do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.69614000", + "longitude": "-42.18310000" + }, + { + "id": "15284", + "name": "Teresina", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.10252000", + "longitude": "-42.74070000" + }, + { + "id": "15456", + "name": "União", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.59646000", + "longitude": "-42.86468000" + }, + { + "id": "15487", + "name": "Uruçuí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.34206000", + "longitude": "-44.58334000" + }, + { + "id": "15501", + "name": "Valença do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.27870000", + "longitude": "-41.81385000" + }, + { + "id": "15616", + "name": "Várzea Branca", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.34411000", + "longitude": "-42.95158000" + }, + { + "id": "15617", + "name": "Várzea Grande", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.56374000", + "longitude": "-42.17729000" + }, + { + "id": "15537", + "name": "Vera Mendes", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.55480000", + "longitude": "-41.50596000" + }, + { + "id": "15571", + "name": "Vila Nova do Piauí", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.18671000", + "longitude": "-40.93621000" + }, + { + "id": "15625", + "name": "Wall Ferraz", + "state_id": 2008, + "state_code": "PI", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.29532000", + "longitude": "-41.83730000" + }, + { + "id": "10257", + "name": "Angra dos Reis", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.00667000", + "longitude": "-44.31806000" + }, + { + "id": "10291", + "name": "Aperibé", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.64148000", + "longitude": "-42.12753000" + }, + { + "id": "10356", + "name": "Araruama", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.87278000", + "longitude": "-42.34306000" + }, + { + "id": "10381", + "name": "Areal", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.23056000", + "longitude": "-43.10556000" + }, + { + "id": "10401", + "name": "Armação de Búzios", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.74694000", + "longitude": "-41.88167000" + }, + { + "id": "10402", + "name": "Armação dos Búzios", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.76948000", + "longitude": "-41.90965000" + }, + { + "id": "10408", + "name": "Arraial do Cabo", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.95505000", + "longitude": "-42.06098000" + }, + { + "id": "10540", + "name": "Barra do Piraí", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.47000000", + "longitude": "-43.82556000" + }, + { + "id": "10520", + "name": "Barra Mansa", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.54417000", + "longitude": "-44.17139000" + }, + { + "id": "10602", + "name": "Belford Roxo", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.76417000", + "longitude": "-43.39944000" + }, + { + "id": "10694", + "name": "Bom Jardim", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.17871000", + "longitude": "-42.33515000" + }, + { + "id": "10711", + "name": "Bom Jesus do Itabapoana", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.13389000", + "longitude": "-41.67972000" + }, + { + "id": "10853", + "name": "Cabo Frio", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.88717000", + "longitude": "-42.02622000" + }, + { + "id": "10875", + "name": "Cachoeiras de Macacu", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.46250000", + "longitude": "-42.65306000" + }, + { + "id": "10948", + "name": "Cambuci", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.57528000", + "longitude": "-41.91111000" + }, + { + "id": "11019", + "name": "Campos dos Goytacazes", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.75227000", + "longitude": "-41.33044000" + }, + { + "id": "11052", + "name": "Cantagalo", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.98111000", + "longitude": "-42.36806000" + }, + { + "id": "11108", + "name": "Carapebus", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.22429000", + "longitude": "-41.61306000" + }, + { + "id": "11123", + "name": "Cardoso Moreira", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.51166000", + "longitude": "-41.46121000" + }, + { + "id": "11142", + "name": "Carmo", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.89966000", + "longitude": "-42.53760000" + }, + { + "id": "11180", + "name": "Casimiro de Abreu", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.48056000", + "longitude": "-42.20417000" + }, + { + "id": "11341", + "name": "Comendador Levy Gasparian", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.03655000", + "longitude": "-43.25312000" + }, + { + "id": "11352", + "name": "Conceição de Macabu", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.12612000", + "longitude": "-41.85341000" + }, + { + "id": "11399", + "name": "Cordeiro", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.02861000", + "longitude": "-42.36083000" + }, + { + "id": "11664", + "name": "Duas Barras", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.07281000", + "longitude": "-42.52467000" + }, + { + "id": "11669", + "name": "Duque de Caxias", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.78556000", + "longitude": "-43.31167000" + }, + { + "id": "11702", + "name": "Engenheiro Paulo de Frontin", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.54807000", + "longitude": "-43.67270000" + }, + { + "id": "12028", + "name": "Guapimirim", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.58914000", + "longitude": "-42.97530000" + }, + { + "id": "12195", + "name": "Iguaba Grande", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.83917000", + "longitude": "-42.22889000" + }, + { + "id": "12207", + "name": "Ilha Grande", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.15236000", + "longitude": "-44.23164000" + }, + { + "id": "12336", + "name": "Itaboraí", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.74444000", + "longitude": "-42.85944000" + }, + { + "id": "12357", + "name": "Itaguaí", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.85222000", + "longitude": "-43.77528000" + }, + { + "id": "12374", + "name": "Italva", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.38401000", + "longitude": "-41.66728000" + }, + { + "id": "12397", + "name": "Itaocara", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.77006000", + "longitude": "-42.07488000" + }, + { + "id": "12410", + "name": "Itaperuna", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.20500000", + "longitude": "-41.88778000" + }, + { + "id": "12454", + "name": "Itatiaia", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.41099000", + "longitude": "-44.57621000" + }, + { + "id": "12569", + "name": "Japeri", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.64306000", + "longitude": "-43.65333000" + }, + { + "id": "12774", + "name": "Laje do Muriaé", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.23762000", + "longitude": "-42.13269000" + }, + { + "id": "12892", + "name": "Macaé", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.38484000", + "longitude": "-41.78324000" + }, + { + "id": "12903", + "name": "Macuco", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.02427000", + "longitude": "-42.27369000" + }, + { + "id": "12914", + "name": "Magé", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.63490000", + "longitude": "-43.12056000" + }, + { + "id": "12947", + "name": "Mangaratiba", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.95972000", + "longitude": "-44.04056000" + }, + { + "id": "13012", + "name": "Maricá", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.91630000", + "longitude": "-42.82203000" + }, + { + "id": "13097", + "name": "Mendes", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.54316000", + "longitude": "-43.74899000" + }, + { + "id": "13104", + "name": "Mesquita", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.78993000", + "longitude": "-43.45966000" + }, + { + "id": "13112", + "name": "Miguel Pereira", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.45389000", + "longitude": "-43.46889000" + }, + { + "id": "13132", + "name": "Miracema", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.37442000", + "longitude": "-42.15048000" + }, + { + "id": "13301", + "name": "Natividade", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.04222000", + "longitude": "-41.97333000" + }, + { + "id": "13325", + "name": "Nilópolis", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.82106000", + "longitude": "-43.42703000" + }, + { + "id": "13331", + "name": "Niterói", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.91715000", + "longitude": "-43.08391000" + }, + { + "id": "13380", + "name": "Nova Friburgo", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.28194000", + "longitude": "-42.53111000" + }, + { + "id": "13389", + "name": "Nova Iguaçu", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.75917000", + "longitude": "-43.45111000" + }, + { + "id": "13658", + "name": "Paraíba do Sul", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.15847000", + "longitude": "-43.29321000" + }, + { + "id": "13623", + "name": "Paracambi", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.60829000", + "longitude": "-43.70840000" + }, + { + "id": "13654", + "name": "Paraty", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.21778000", + "longitude": "-44.71306000" + }, + { + "id": "13713", + "name": "Paty do Alferes", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.42861000", + "longitude": "-43.41861000" + }, + { + "id": "13821", + "name": "Petrópolis", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.38219000", + "longitude": "-43.15909000" + }, + { + "id": "13866", + "name": "Pinheiral", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.51278000", + "longitude": "-44.00056000" + }, + { + "id": "13910", + "name": "Piraí", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.62917000", + "longitude": "-43.89806000" + }, + { + "id": "13984", + "name": "Porciúncula", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.96278000", + "longitude": "-42.04083000" + }, + { + "id": "14013", + "name": "Porto Real", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.41972000", + "longitude": "-44.29028000" + }, + { + "id": "14131", + "name": "Quatis", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.40722000", + "longitude": "-44.25806000" + }, + { + "id": "14141", + "name": "Queimados", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.71611000", + "longitude": "-43.55528000" + }, + { + "id": "14155", + "name": "Quissamã", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.09574000", + "longitude": "-41.39137000" + }, + { + "id": "14197", + "name": "Resende", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.46889000", + "longitude": "-44.44667000" + }, + { + "id": "14261", + "name": "Rio Bonito", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.74390000", + "longitude": "-42.61916000" + }, + { + "id": "14270", + "name": "Rio Claro", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.77976000", + "longitude": "-44.07721000" + }, + { + "id": "14305", + "name": "Rio das Flores", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.16104000", + "longitude": "-43.57579000" + }, + { + "id": "14306", + "name": "Rio das Ostras", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.52694000", + "longitude": "-41.94500000" + }, + { + "id": "14309", + "name": "Rio de Janeiro", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.92008000", + "longitude": "-43.33069000" + }, + { + "id": "14504", + "name": "Santa Maria Madalena", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.95791000", + "longitude": "-41.90903000" + }, + { + "id": "14620", + "name": "Santo Antônio de Pádua", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.57245000", + "longitude": "-42.21090000" + }, + { + "id": "14662", + "name": "Sapucaia", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.04085000", + "longitude": "-42.81392000" + }, + { + "id": "14666", + "name": "Saquarema", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.92000000", + "longitude": "-42.51028000" + }, + { + "id": "14878", + "name": "São Fidélis", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.64611000", + "longitude": "-41.74694000" + }, + { + "id": "14886", + "name": "São Francisco de Itabapoana", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.38002000", + "longitude": "-41.14905000" + }, + { + "id": "14916", + "name": "São Gonçalo", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.82694000", + "longitude": "-43.05389000" + }, + { + "id": "15006", + "name": "São João da Barra", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.64028000", + "longitude": "-41.05111000" + }, + { + "id": "15021", + "name": "São João de Meriti", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.80389000", + "longitude": "-43.37222000" + }, + { + "id": "14958", + "name": "São José de Ubá", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.37831000", + "longitude": "-41.95256000" + }, + { + "id": "14989", + "name": "São José do Vale do Rio Preto", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.17062000", + "longitude": "-42.91651000" + }, + { + "id": "15105", + "name": "São Pedro", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.42313000", + "longitude": "-42.96612000" + }, + { + "id": "15108", + "name": "São Pedro da Aldeia", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.83917000", + "longitude": "-42.10278000" + }, + { + "id": "15143", + "name": "São Sebastião do Alto", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.86591000", + "longitude": "-42.09585000" + }, + { + "id": "14720", + "name": "Seropédica", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73876000", + "longitude": "-43.70855000" + }, + { + "id": "14775", + "name": "Silva Jardim", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.65083000", + "longitude": "-42.39167000" + }, + { + "id": "14824", + "name": "Sumidouro", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.13179000", + "longitude": "-42.66127000" + }, + { + "id": "15218", + "name": "Tanguá", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.79184000", + "longitude": "-42.71941000" + }, + { + "id": "15286", + "name": "Teresópolis", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.31349000", + "longitude": "-42.87414000" + }, + { + "id": "15350", + "name": "Trajano de Moraes", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.15204000", + "longitude": "-42.18834000" + }, + { + "id": "15383", + "name": "Três Rios", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.12121000", + "longitude": "-43.06617000" + }, + { + "id": "15500", + "name": "Valença", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.24020000", + "longitude": "-43.87843000" + }, + { + "id": "15521", + "name": "Varre-Sai", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.89839000", + "longitude": "-41.81982000" + }, + { + "id": "15524", + "name": "Vassouras", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.35995000", + "longitude": "-43.59809000" + }, + { + "id": "15610", + "name": "Volta Redonda", + "state_id": 1997, + "state_code": "RJ", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.52306000", + "longitude": "-44.10417000" + }, + { + "id": "10464", + "name": "Açu", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.57667000", + "longitude": "-36.90861000" + }, + { + "id": "10072", + "name": "Acari", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.38547000", + "longitude": "-36.63908000" + }, + { + "id": "10086", + "name": "Afonso Bezerra", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.43183000", + "longitude": "-36.65619000" + }, + { + "id": "10128", + "name": "Alexandria", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.39998000", + "longitude": "-37.96862000" + }, + { + "id": "10143", + "name": "Almino Afonso", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.16686000", + "longitude": "-37.77116000" + }, + { + "id": "10185", + "name": "Alto do Rodrigues", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.34902000", + "longitude": "-36.79683000" + }, + { + "id": "10256", + "name": "Angicos", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.67403000", + "longitude": "-36.54881000" + }, + { + "id": "10278", + "name": "Antônio Martins", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.20609000", + "longitude": "-37.92136000" + }, + { + "id": "10297", + "name": "Apodi", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.66690000", + "longitude": "-37.92339000" + }, + { + "id": "10422", + "name": "Arês", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.19444000", + "longitude": "-35.16028000" + }, + { + "id": "10384", + "name": "Areia Branca", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.95611000", + "longitude": "-37.13694000" + }, + { + "id": "10445", + "name": "Augusto Severo", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.90516000", + "longitude": "-37.30121000" + }, + { + "id": "15662", + "name": "Água Nova", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.21312000", + "longitude": "-38.30634000" + }, + { + "id": "10588", + "name": "Baía Formosa", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.43006000", + "longitude": "-35.05050000" + }, + { + "id": "10506", + "name": "Baraúna", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.97189000", + "longitude": "-37.52234000" + }, + { + "id": "10512", + "name": "Barcelona", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.94268000", + "longitude": "-35.92019000" + }, + { + "id": "10628", + "name": "Bento Fernandes", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.63426000", + "longitude": "-35.81702000" + }, + { + "id": "10687", + "name": "Bodó", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.93390000", + "longitude": "-36.39716000" + }, + { + "id": "10699", + "name": "Bom Jesus", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.00882000", + "longitude": "-35.58384000" + }, + { + "id": "10785", + "name": "Brejinho", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.19083000", + "longitude": "-35.35667000" + }, + { + "id": "10909", + "name": "Caiçara do Norte", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.17530000", + "longitude": "-36.08369000" + }, + { + "id": "10910", + "name": "Caiçara do Rio do Vento", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.80605000", + "longitude": "-36.02549000" + }, + { + "id": "10903", + "name": "Caicó", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.45833000", + "longitude": "-37.09778000" + }, + { + "id": "11002", + "name": "Campo Redondo", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.24582000", + "longitude": "-36.21969000" + }, + { + "id": "11042", + "name": "Canguaretama", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.38000000", + "longitude": "-35.12889000" + }, + { + "id": "11117", + "name": "Caraúbas", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.79250000", + "longitude": "-37.55667000" + }, + { + "id": "11158", + "name": "Carnaúba dos Dantas", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.56162000", + "longitude": "-36.52903000" + }, + { + "id": "11154", + "name": "Carnaubais", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.26459000", + "longitude": "-36.79459000" + }, + { + "id": "11226", + "name": "Ceará Mirim", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.63444000", + "longitude": "-35.42556000" + }, + { + "id": "11227", + "name": "Ceará-Mirim", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.55046000", + "longitude": "-35.37667000" + }, + { + "id": "11251", + "name": "Cerro Corá", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.04556000", + "longitude": "-36.34583000" + }, + { + "id": "11418", + "name": "Coronel Ezequiel", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.31992000", + "longitude": "-36.22997000" + }, + { + "id": "11422", + "name": "Coronel João Pessoa", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.26217000", + "longitude": "-38.41730000" + }, + { + "id": "11501", + "name": "Cruzeta", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.32021000", + "longitude": "-36.84725000" + }, + { + "id": "11528", + "name": "Currais Novos", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.21399000", + "longitude": "-36.48400000" + }, + { + "id": "11659", + "name": "Doutor Severiano", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.11208000", + "longitude": "-38.39660000" + }, + { + "id": "11695", + "name": "Encanto", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.11638000", + "longitude": "-38.31133000" + }, + { + "id": "11714", + "name": "Equador", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.88585000", + "longitude": "-36.66174000" + }, + { + "id": "11739", + "name": "Espírito Santo", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.28385000", + "longitude": "-35.32578000" + }, + { + "id": "11768", + "name": "Extremoz", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.69421000", + "longitude": "-35.25248000" + }, + { + "id": "11795", + "name": "Felipe Guerra", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.53917000", + "longitude": "-37.64271000" + }, + { + "id": "11805", + "name": "Fernando Pedroza", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.72020000", + "longitude": "-36.39743000" + }, + { + "id": "11844", + "name": "Florânia", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.15287000", + "longitude": "-36.80058000" + }, + { + "id": "11880", + "name": "Francisco Dantas", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.01644000", + "longitude": "-38.12624000" + }, + { + "id": "11903", + "name": "Frutuoso Gomes", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.16261000", + "longitude": "-37.84430000" + }, + { + "id": "11913", + "name": "Galinhos", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.12167000", + "longitude": "-36.26313000" + }, + { + "id": "11959", + "name": "Goianinha", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.26977000", + "longitude": "-35.18265000" + }, + { + "id": "11980", + "name": "Governador Dix Sept Rosado", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.45889000", + "longitude": "-37.52083000" + }, + { + "id": "11981", + "name": "Governador Dix-Sept Rosado", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.40874000", + "longitude": "-37.51194000" + }, + { + "id": "12006", + "name": "Grossos", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.95242000", + "longitude": "-37.20023000" + }, + { + "id": "12022", + "name": "Guamaré", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.13423000", + "longitude": "-36.31854000" + }, + { + "id": "12175", + "name": "Ielmo Marinho", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.76778000", + "longitude": "-35.52812000" + }, + { + "id": "12262", + "name": "Ipanguaçu", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.49833000", + "longitude": "-36.85500000" + }, + { + "id": "12291", + "name": "Ipueira", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.78038000", + "longitude": "-37.14971000" + }, + { + "id": "12468", + "name": "Itaú", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.84190000", + "longitude": "-37.92490000" + }, + { + "id": "12372", + "name": "Itajá", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.69944000", + "longitude": "-36.79373000" + }, + { + "id": "12607", + "name": "Jaçanã", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.41673000", + "longitude": "-36.19402000" + }, + { + "id": "12558", + "name": "Jandaíra", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.37894000", + "longitude": "-36.09833000" + }, + { + "id": "12561", + "name": "Janduís", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.93587000", + "longitude": "-37.51496000" + }, + { + "id": "12565", + "name": "Januário Cicco", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.15714000", + "longitude": "-35.61758000" + }, + { + "id": "12570", + "name": "Japi", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.43798000", + "longitude": "-35.92194000" + }, + { + "id": "12588", + "name": "Jardim de Angicos", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.63861000", + "longitude": "-35.95027000" + }, + { + "id": "12589", + "name": "Jardim de Piranhas", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.37861000", + "longitude": "-37.35194000" + }, + { + "id": "12591", + "name": "Jardim do Seridó", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.58444000", + "longitude": "-36.77444000" + }, + { + "id": "12659", + "name": "João Câmara", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.56075000", + "longitude": "-35.81502000" + }, + { + "id": "12660", + "name": "João Dias", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.28506000", + "longitude": "-37.79365000" + }, + { + "id": "12654", + "name": "José da Penha", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.32865000", + "longitude": "-38.32030000" + }, + { + "id": "12677", + "name": "Jucurutu", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.03389000", + "longitude": "-37.02028000" + }, + { + "id": "12687", + "name": "Jundiá", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.25532000", + "longitude": "-35.34358000" + }, + { + "id": "12748", + "name": "Lagoa d'Anta", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.37037000", + "longitude": "-35.63637000" + }, + { + "id": "12754", + "name": "Lagoa de Pedras", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.16608000", + "longitude": "-35.45319000" + }, + { + "id": "12756", + "name": "Lagoa de Velhos", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.00816000", + "longitude": "-35.82312000" + }, + { + "id": "12741", + "name": "Lagoa Nova", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.11020000", + "longitude": "-36.54607000" + }, + { + "id": "12743", + "name": "Lagoa Salgada", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.12321000", + "longitude": "-35.49513000" + }, + { + "id": "12784", + "name": "Lajes", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.78338000", + "longitude": "-36.17286000" + }, + { + "id": "12785", + "name": "Lajes Pintadas", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.12734000", + "longitude": "-36.12516000" + }, + { + "id": "12882", + "name": "Luís Gomes", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.38626000", + "longitude": "-38.41895000" + }, + { + "id": "12861", + "name": "Lucrécia", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.10358000", + "longitude": "-37.82437000" + }, + { + "id": "12893", + "name": "Macaíba", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.94094000", + "longitude": "-35.39833000" + }, + { + "id": "12890", + "name": "Macau", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.11500000", + "longitude": "-36.63444000" + }, + { + "id": "12922", + "name": "Major Sales", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.40617000", + "longitude": "-38.30965000" + }, + { + "id": "12992", + "name": "Marcelino Vieira", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.32176000", + "longitude": "-38.14275000" + }, + { + "id": "13032", + "name": "Martins", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.09212000", + "longitude": "-37.92472000" + }, + { + "id": "13086", + "name": "Maxaranguape", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.46874000", + "longitude": "-35.35657000" + }, + { + "id": "13107", + "name": "Messias Targino", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.08097000", + "longitude": "-37.48508000" + }, + { + "id": "13184", + "name": "Montanhas", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.48583000", + "longitude": "-35.28750000" + }, + { + "id": "13186", + "name": "Monte Alegre", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.88972000", + "longitude": "-36.30139000" + }, + { + "id": "13213", + "name": "Monte das Gameleiras", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.43448000", + "longitude": "-35.79888000" + }, + { + "id": "13254", + "name": "Mossoró", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.18750000", + "longitude": "-37.34417000" + }, + { + "id": "13299", + "name": "Natal", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.81010000", + "longitude": "-35.22674000" + }, + { + "id": "13487", + "name": "Nísia Floresta", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.09111000", + "longitude": "-35.20861000" + }, + { + "id": "13371", + "name": "Nova Cruz", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.46807000", + "longitude": "-35.45455000" + }, + { + "id": "13500", + "name": "Olho-d'Água do Borges", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.99658000", + "longitude": "-37.73631000" + }, + { + "id": "13538", + "name": "Ouro Branco", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.65601000", + "longitude": "-36.91455000" + }, + { + "id": "13665", + "name": "Paraú", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.73216000", + "longitude": "-37.13664000" + }, + { + "id": "13648", + "name": "Paraná", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.44702000", + "longitude": "-38.29980000" + }, + { + "id": "13656", + "name": "Parazinho", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.27717000", + "longitude": "-35.93239000" + }, + { + "id": "13670", + "name": "Parelhas", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.68778000", + "longitude": "-36.65750000" + }, + { + "id": "13680", + "name": "Parnamirim", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.92446000", + "longitude": "-35.20566000" + }, + { + "id": "13688", + "name": "Passa e Fica", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.45302000", + "longitude": "-35.62625000" + }, + { + "id": "13691", + "name": "Passagem", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.27254000", + "longitude": "-35.39534000" + }, + { + "id": "13712", + "name": "Patu", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.12305000", + "longitude": "-37.62573000" + }, + { + "id": "13718", + "name": "Pau dos Ferros", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.11628000", + "longitude": "-38.19653000" + }, + { + "id": "13753", + "name": "Pedra Grande", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.09384000", + "longitude": "-35.85092000" + }, + { + "id": "13756", + "name": "Pedra Preta", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.52791000", + "longitude": "-36.07481000" + }, + { + "id": "13774", + "name": "Pedro Avelino", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.44022000", + "longitude": "-36.34590000" + }, + { + "id": "13783", + "name": "Pedro Velho", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.43917000", + "longitude": "-35.22139000" + }, + { + "id": "13794", + "name": "Pendências", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.26000000", + "longitude": "-36.72222000" + }, + { + "id": "13842", + "name": "Pilões", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.28833000", + "longitude": "-38.01911000" + }, + { + "id": "14045", + "name": "Poço Branco", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.62278000", + "longitude": "-35.66278000" + }, + { + "id": "13986", + "name": "Portalegre", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.00548000", + "longitude": "-38.00212000" + }, + { + "id": "14027", + "name": "Porto do Mangue", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.07778000", + "longitude": "-36.78375000" + }, + { + "id": "14116", + "name": "Pureza", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.42517000", + "longitude": "-35.59285000" + }, + { + "id": "14165", + "name": "Rafael Fernandes", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.19713000", + "longitude": "-38.19794000" + }, + { + "id": "14166", + "name": "Rafael Godeiro", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.04885000", + "longitude": "-37.73693000" + }, + { + "id": "14211", + "name": "Riacho da Cruz", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.92628000", + "longitude": "-37.97556000" + }, + { + "id": "14214", + "name": "Riacho de Santana", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.28279000", + "longitude": "-38.33135000" + }, + { + "id": "14219", + "name": "Riachuelo", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.83598000", + "longitude": "-35.88131000" + }, + { + "id": "14312", + "name": "Rio do Fogo", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.38232000", + "longitude": "-35.38379000" + }, + { + "id": "14332", + "name": "Rodolfo Fernandes", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.85656000", + "longitude": "-38.09336000" + }, + { + "id": "14365", + "name": "Ruy Barbosa", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.88561000", + "longitude": "-35.91551000" + }, + { + "id": "14438", + "name": "Santa Cruz", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.22944000", + "longitude": "-36.02278000" + }, + { + "id": "14503", + "name": "Santa Maria", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.84531000", + "longitude": "-35.71995000" + }, + { + "id": "14588", + "name": "Santana do Matos", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.95750000", + "longitude": "-36.65556000" + }, + { + "id": "14593", + "name": "Santana do Seridó", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.75207000", + "longitude": "-36.76599000" + }, + { + "id": "14610", + "name": "Santo Antônio", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.31056000", + "longitude": "-35.47889000" + }, + { + "id": "14838", + "name": "São Bento do Norte", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.14414000", + "longitude": "-35.98910000" + }, + { + "id": "14842", + "name": "São Bento do Trairí", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.39968000", + "longitude": "-36.05920000" + }, + { + "id": "14877", + "name": "São Fernando", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.29726000", + "longitude": "-37.13895000" + }, + { + "id": "14895", + "name": "São Francisco do Oeste", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.96836000", + "longitude": "-38.16251000" + }, + { + "id": "14919", + "name": "São Gonçalo do Amarante", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.77241000", + "longitude": "-35.33245000" + }, + { + "id": "15043", + "name": "São João do Sabugi", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.69650000", + "longitude": "-37.15433000" + }, + { + "id": "14954", + "name": "São José de Mipibu", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.04284000", + "longitude": "-35.30608000" + }, + { + "id": "14965", + "name": "São José do Campestre", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.31556000", + "longitude": "-35.71389000" + }, + { + "id": "14987", + "name": "São José do Seridó", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.50251000", + "longitude": "-36.85104000" + }, + { + "id": "15078", + "name": "São Miguel", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.46667000", + "longitude": "-35.36667000" + }, + { + "id": "15089", + "name": "São Miguel do Gostoso", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.18658000", + "longitude": "-35.71303000" + }, + { + "id": "15104", + "name": "São Paulo do Potengi", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.88988000", + "longitude": "-35.75325000" + }, + { + "id": "15107", + "name": "São Pedro", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.85598000", + "longitude": "-35.62554000" + }, + { + "id": "15125", + "name": "São Rafael", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.85664000", + "longitude": "-36.89520000" + }, + { + "id": "15161", + "name": "São Tomé", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.97250000", + "longitude": "-36.07528000" + }, + { + "id": "15169", + "name": "São Vicente", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.22380000", + "longitude": "-36.65694000" + }, + { + "id": "15177", + "name": "Sítio Novo", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.12604000", + "longitude": "-35.97108000" + }, + { + "id": "14697", + "name": "Senador Elói de Souza", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.04008000", + "longitude": "-35.65731000" + }, + { + "id": "14699", + "name": "Senador Georgino Avelino", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.14835000", + "longitude": "-35.13347000" + }, + { + "id": "14726", + "name": "Serra Caiada", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.14234000", + "longitude": "-35.66845000" + }, + { + "id": "14737", + "name": "Serra de São Bento", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.43702000", + "longitude": "-35.71194000" + }, + { + "id": "14738", + "name": "Serra do Mel", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.12203000", + "longitude": "-37.03121000" + }, + { + "id": "14730", + "name": "Serra Negra do Norte", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.57598000", + "longitude": "-37.39418000" + }, + { + "id": "14752", + "name": "Serrinha", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.25327000", + "longitude": "-35.59475000" + }, + { + "id": "14753", + "name": "Serrinha dos Pintos", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.15256000", + "longitude": "-37.98860000" + }, + { + "id": "14769", + "name": "Severiano Melo", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.77722000", + "longitude": "-37.95778000" + }, + { + "id": "15189", + "name": "Taboleiro Grande", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.92608000", + "longitude": "-38.05352000" + }, + { + "id": "15204", + "name": "Taipu", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.51936000", + "longitude": "-35.58130000" + }, + { + "id": "15215", + "name": "Tangará", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.23847000", + "longitude": "-35.79625000" + }, + { + "id": "15274", + "name": "Tenente Ananias", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.46946000", + "longitude": "-38.16177000" + }, + { + "id": "15275", + "name": "Tenente Laurentino Cruz", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.14845000", + "longitude": "-36.72240000" + }, + { + "id": "15305", + "name": "Tibau", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-4.91150000", + "longitude": "-37.31347000" + }, + { + "id": "15306", + "name": "Tibau do Sul", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.18641000", + "longitude": "-35.09050000" + }, + { + "id": "15312", + "name": "Timbaúba dos Batistas", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.48262000", + "longitude": "-37.23278000" + }, + { + "id": "15343", + "name": "Touros", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.26111000", + "longitude": "-35.60459000" + }, + { + "id": "15365", + "name": "Triunfo Potiguar", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.94356000", + "longitude": "-37.13994000" + }, + { + "id": "15445", + "name": "Umarizal", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.00593000", + "longitude": "-37.80698000" + }, + { + "id": "15464", + "name": "Upanema", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.69921000", + "longitude": "-37.26798000" + }, + { + "id": "15614", + "name": "Várzea", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.35146000", + "longitude": "-35.36839000" + }, + { + "id": "15527", + "name": "Venha-Ver", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.34075000", + "longitude": "-38.53731000" + }, + { + "id": "15532", + "name": "Vera Cruz", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.03261000", + "longitude": "-35.44416000" + }, + { + "id": "15605", + "name": "Viçosa", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.99110000", + "longitude": "-37.96495000" + }, + { + "id": "15567", + "name": "Vila Flor", + "state_id": 2019, + "state_code": "RN", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.29375000", + "longitude": "-35.08453000" + }, + { + "id": "10075", + "name": "Aceguá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.64597000", + "longitude": "-54.10715000" + }, + { + "id": "10097", + "name": "Agudo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.62631000", + "longitude": "-53.22404000" + }, + { + "id": "10106", + "name": "Ajuricaba", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.20723000", + "longitude": "-53.74458000" + }, + { + "id": "10122", + "name": "Alecrim", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.65897000", + "longitude": "-54.75943000" + }, + { + "id": "10124", + "name": "Alegrete", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.78306000", + "longitude": "-55.79194000" + }, + { + "id": "10126", + "name": "Alegria", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.79967000", + "longitude": "-54.05855000" + }, + { + "id": "10145", + "name": "Almirante Tamandaré do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.15104000", + "longitude": "-52.91142000" + }, + { + "id": "10148", + "name": "Alpestre", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.22135000", + "longitude": "-53.05749000" + }, + { + "id": "10161", + "name": "Alto Alegre", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.79752000", + "longitude": "-52.98177000" + }, + { + "id": "10169", + "name": "Alto Feliz", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.36438000", + "longitude": "-51.30068000" + }, + { + "id": "10195", + "name": "Alvorada", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.98897000", + "longitude": "-51.03717000" + }, + { + "id": "10207", + "name": "Amaral Ferrador", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.80769000", + "longitude": "-52.29964000" + }, + { + "id": "10215", + "name": "Ametista do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.36698000", + "longitude": "-53.18701000" + }, + { + "id": "10248", + "name": "André da Rocha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.58832000", + "longitude": "-51.49976000" + }, + { + "id": "10267", + "name": "Anta Gorda", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.96836000", + "longitude": "-51.97107000" + }, + { + "id": "10280", + "name": "Antônio Prado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.87322000", + "longitude": "-51.31744000" + }, + { + "id": "10331", + "name": "Arambaré", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.91331000", + "longitude": "-51.55614000" + }, + { + "id": "10353", + "name": "Araricá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.64987000", + "longitude": "-50.93350000" + }, + { + "id": "10360", + "name": "Aratiba", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.37708000", + "longitude": "-52.29009000" + }, + { + "id": "10412", + "name": "Arroio do Meio", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.40111000", + "longitude": "-51.94500000" + }, + { + "id": "10413", + "name": "Arroio do Padre", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.43927000", + "longitude": "-52.39642000" + }, + { + "id": "10414", + "name": "Arroio do Sal", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.52930000", + "longitude": "-49.89148000" + }, + { + "id": "10415", + "name": "Arroio do Tigre", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.26209000", + "longitude": "-53.06060000" + }, + { + "id": "10416", + "name": "Arroio dos Ratos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.07722000", + "longitude": "-51.72917000" + }, + { + "id": "10410", + "name": "Arroio Grande", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-32.17945000", + "longitude": "-52.86652000" + }, + { + "id": "10421", + "name": "Arvorezinha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.86971000", + "longitude": "-52.19631000" + }, + { + "id": "10444", + "name": "Augusto Pestana", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.54034000", + "longitude": "-53.97927000" + }, + { + "id": "15664", + "name": "Água Santa", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.18543000", + "longitude": "-52.01286000" + }, + { + "id": "15680", + "name": "Áurea", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.69538000", + "longitude": "-52.06560000" + }, + { + "id": "10474", + "name": "Bagé", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.33139000", + "longitude": "-54.10694000" + }, + { + "id": "10488", + "name": "Balneário Pinhal", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.21275000", + "longitude": "-50.29309000" + }, + { + "id": "10570", + "name": "Barão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.39636000", + "longitude": "-51.54620000" + }, + { + "id": "10573", + "name": "Barão de Cotegipe", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.55108000", + "longitude": "-52.44751000" + }, + { + "id": "10577", + "name": "Barão do Triunfo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.39257000", + "longitude": "-51.79493000" + }, + { + "id": "10536", + "name": "Barra do Guarita", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.21739000", + "longitude": "-53.76461000" + }, + { + "id": "10541", + "name": "Barra do Quaraí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.17445000", + "longitude": "-57.31007000" + }, + { + "id": "10542", + "name": "Barra do Ribeiro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.34435000", + "longitude": "-51.36125000" + }, + { + "id": "10543", + "name": "Barra do Rio Azul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.39848000", + "longitude": "-52.40887000" + }, + { + "id": "10518", + "name": "Barra Funda", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.91562000", + "longitude": "-53.03286000" + }, + { + "id": "10548", + "name": "Barracão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.73726000", + "longitude": "-51.44229000" + }, + { + "id": "10567", + "name": "Barros Cassal", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.13534000", + "longitude": "-52.57508000" + }, + { + "id": "10627", + "name": "Benjamin Constant do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.48726000", + "longitude": "-52.65470000" + }, + { + "id": "10629", + "name": "Bento Gonçalves", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.09958000", + "longitude": "-51.54344000" + }, + { + "id": "10669", + "name": "Boa Vista das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.69239000", + "longitude": "-53.35253000" + }, + { + "id": "10670", + "name": "Boa Vista do Buricá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.68021000", + "longitude": "-54.10928000" + }, + { + "id": "10671", + "name": "Boa Vista do Cadeado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.62211000", + "longitude": "-53.81616000" + }, + { + "id": "10673", + "name": "Boa Vista do Incra", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.84193000", + "longitude": "-53.45649000" + }, + { + "id": "10675", + "name": "Boa Vista do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.34197000", + "longitude": "-51.68079000" + }, + { + "id": "10701", + "name": "Bom Jesus", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.59981000", + "longitude": "-50.46197000" + }, + { + "id": "10719", + "name": "Bom Princípio", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.46171000", + "longitude": "-51.36405000" + }, + { + "id": "10721", + "name": "Bom Progresso", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.54223000", + "longitude": "-53.82889000" + }, + { + "id": "10724", + "name": "Bom Retiro do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.63558000", + "longitude": "-51.91097000" + }, + { + "id": "10744", + "name": "Boqueirão do Leão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.31252000", + "longitude": "-52.39841000" + }, + { + "id": "10756", + "name": "Bossoroca", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.67113000", + "longitude": "-54.96188000" + }, + { + "id": "10762", + "name": "Bozano", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.36580000", + "longitude": "-53.76893000" + }, + { + "id": "10763", + "name": "Braga", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.57218000", + "longitude": "-53.76214000" + }, + { + "id": "10804", + "name": "Brochier", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.55754000", + "longitude": "-51.59193000" + }, + { + "id": "10838", + "name": "Butiá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.11972000", + "longitude": "-51.96222000" + }, + { + "id": "11223", + "name": "Caçapava do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.61002000", + "longitude": "-53.47227000" + }, + { + "id": "10860", + "name": "Cacequi", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.88361000", + "longitude": "-54.82500000" + }, + { + "id": "10873", + "name": "Cachoeira do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.20808000", + "longitude": "-52.97067000" + }, + { + "id": "10877", + "name": "Cachoeirinha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.95111000", + "longitude": "-51.09389000" + }, + { + "id": "10884", + "name": "Cacique Doble", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.81730000", + "longitude": "-51.68271000" + }, + { + "id": "10908", + "name": "Caiçara", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.24828000", + "longitude": "-53.45824000" + }, + { + "id": "10901", + "name": "Caibaté", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.30429000", + "longitude": "-54.65585000" + }, + { + "id": "10940", + "name": "Camaquã", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.91965000", + "longitude": "-51.85302000" + }, + { + "id": "10942", + "name": "Camargo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.61437000", + "longitude": "-52.21986000" + }, + { + "id": "10945", + "name": "Cambará do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.06727000", + "longitude": "-50.11848000" + }, + { + "id": "10959", + "name": "Campestre da Serra", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.70645000", + "longitude": "-51.11921000" + }, + { + "id": "10966", + "name": "Campina das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.98729000", + "longitude": "-54.83020000" + }, + { + "id": "10972", + "name": "Campinas do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.70629000", + "longitude": "-52.63937000" + }, + { + "id": "10984", + "name": "Campo Bom", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.66716000", + "longitude": "-51.05054000" + }, + { + "id": "10999", + "name": "Campo Novo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.67313000", + "longitude": "-53.81745000" + }, + { + "id": "11010", + "name": "Campos Borges", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.89387000", + "longitude": "-53.02543000" + }, + { + "id": "11036", + "name": "Candelária", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.71623000", + "longitude": "-52.80968000" + }, + { + "id": "11038", + "name": "Candiota", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.49089000", + "longitude": "-53.70274000" + }, + { + "id": "11040", + "name": "Canela", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.34715000", + "longitude": "-50.77536000" + }, + { + "id": "11043", + "name": "Canguçu", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.39500000", + "longitude": "-52.67556000" + }, + { + "id": "11049", + "name": "Canoas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.91778000", + "longitude": "-51.18361000" + }, + { + "id": "11058", + "name": "Canudos do Vale", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.32055000", + "longitude": "-52.22476000" + }, + { + "id": "11097", + "name": "Capão Bonito do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.17432000", + "longitude": "-51.42298000" + }, + { + "id": "11098", + "name": "Capão da Canoa", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.66118000", + "longitude": "-50.01422000" + }, + { + "id": "11099", + "name": "Capão do Cipó", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.94987000", + "longitude": "-54.60368000" + }, + { + "id": "11100", + "name": "Capão do Leão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.84324000", + "longitude": "-52.55323000" + }, + { + "id": "11068", + "name": "Capela de Santana", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.71236000", + "longitude": "-51.38078000" + }, + { + "id": "11080", + "name": "Capitão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.28020000", + "longitude": "-51.98317000" + }, + { + "id": "11090", + "name": "Capivari do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.17289000", + "longitude": "-50.48702000" + }, + { + "id": "11114", + "name": "Caraá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.77397000", + "longitude": "-50.35369000" + }, + { + "id": "11113", + "name": "Carazinho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.28389000", + "longitude": "-52.78639000" + }, + { + "id": "11138", + "name": "Carlos Barbosa", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.29750000", + "longitude": "-51.50361000" + }, + { + "id": "11140", + "name": "Carlos Gomes", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.71183000", + "longitude": "-51.90645000" + }, + { + "id": "11174", + "name": "Casca", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.57590000", + "longitude": "-51.91980000" + }, + { + "id": "11179", + "name": "Caseiros", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.23222000", + "longitude": "-51.78157000" + }, + { + "id": "11213", + "name": "Catuípe", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.19806000", + "longitude": "-54.05868000" + }, + { + "id": "11219", + "name": "Caxias do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.16806000", + "longitude": "-51.17944000" + }, + { + "id": "11545", + "name": "Cândido Godói", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.89509000", + "longitude": "-54.74128000" + }, + { + "id": "11236", + "name": "Centenário", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.78654000", + "longitude": "-52.00905000" + }, + { + "id": "11248", + "name": "Cerrito", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.73952000", + "longitude": "-52.78378000" + }, + { + "id": "11250", + "name": "Cerro Branco", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.63374000", + "longitude": "-52.98725000" + }, + { + "id": "11252", + "name": "Cerro Grande", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.62261000", + "longitude": "-53.16028000" + }, + { + "id": "11253", + "name": "Cerro Grande do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.58623000", + "longitude": "-51.74239000" + }, + { + "id": "11254", + "name": "Cerro Largo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.13490000", + "longitude": "-54.73667000" + }, + { + "id": "11259", + "name": "Chapada", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.10434000", + "longitude": "-53.08861000" + }, + { + "id": "11271", + "name": "Charqueadas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.95472000", + "longitude": "-51.62528000" + }, + { + "id": "11272", + "name": "Charrua", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.94543000", + "longitude": "-51.99053000" + }, + { + "id": "11277", + "name": "Chiapetta", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.97630000", + "longitude": "-53.92051000" + }, + { + "id": "11284", + "name": "Chuí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-33.69111000", + "longitude": "-53.45667000" + }, + { + "id": "11283", + "name": "Chuvisca", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.77649000", + "longitude": "-52.00221000" + }, + { + "id": "11293", + "name": "Cidreira", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.09103000", + "longitude": "-50.26938000" + }, + { + "id": "11296", + "name": "Ciríaco", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.37066000", + "longitude": "-51.91242000" + }, + { + "id": "11323", + "name": "Colinas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.39282000", + "longitude": "-51.86831000" + }, + { + "id": "11330", + "name": "Colorado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.48320000", + "longitude": "-52.99088000" + }, + { + "id": "11374", + "name": "Condor", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.19261000", + "longitude": "-53.49261000" + }, + { + "id": "11388", + "name": "Constantina", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.70625000", + "longitude": "-53.00221000" + }, + { + "id": "11393", + "name": "Coqueiro Baixo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.17479000", + "longitude": "-52.10209000" + }, + { + "id": "11395", + "name": "Coqueiros do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.13683000", + "longitude": "-52.76136000" + }, + { + "id": "11415", + "name": "Coronel Barros", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.39445000", + "longitude": "-54.06367000" + }, + { + "id": "11416", + "name": "Coronel Bicaco", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.79949000", + "longitude": "-53.65310000" + }, + { + "id": "11428", + "name": "Coronel Pilar", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.25977000", + "longitude": "-51.71821000" + }, + { + "id": "11453", + "name": "Cotiporã", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.00719000", + "longitude": "-51.69528000" + }, + { + "id": "11457", + "name": "Coxilha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.10327000", + "longitude": "-52.36576000" + }, + { + "id": "11466", + "name": "Crissiumal", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.48087000", + "longitude": "-54.14173000" + }, + { + "id": "11469", + "name": "Cristal", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.02454000", + "longitude": "-52.02929000" + }, + { + "id": "11470", + "name": "Cristal do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.42515000", + "longitude": "-53.24362000" + }, + { + "id": "11489", + "name": "Cruz Alta", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.64397000", + "longitude": "-53.60633000" + }, + { + "id": "11493", + "name": "Cruzaltense", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.64105000", + "longitude": "-52.63264000" + }, + { + "id": "11500", + "name": "Cruzeiro do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.56709000", + "longitude": "-52.03042000" + }, + { + "id": "11564", + "name": "David Canabarro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.41776000", + "longitude": "-51.81680000" + }, + { + "id": "11575", + "name": "Derrubadas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.25025000", + "longitude": "-53.88415000" + }, + { + "id": "11582", + "name": "Dezesseis de Novembro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.19125000", + "longitude": "-55.07548000" + }, + { + "id": "11592", + "name": "Dilermando de Aguiar", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.80603000", + "longitude": "-54.15398000" + }, + { + "id": "11614", + "name": "Dois Irmãos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.61158000", + "longitude": "-51.09333000" + }, + { + "id": "11615", + "name": "Dois Irmãos das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.68117000", + "longitude": "-53.51477000" + }, + { + "id": "11618", + "name": "Dois Lajeados", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.97092000", + "longitude": "-51.84970000" + }, + { + "id": "11628", + "name": "Dom Feliciano", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.61390000", + "longitude": "-52.19315000" + }, + { + "id": "11632", + "name": "Dom Pedrito", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.98278000", + "longitude": "-54.67306000" + }, + { + "id": "11634", + "name": "Dom Pedro de Alcântara", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.35681000", + "longitude": "-49.87288000" + }, + { + "id": "11641", + "name": "Dona Francisca", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.58683000", + "longitude": "-53.33964000" + }, + { + "id": "11656", + "name": "Doutor Maurício Cardoso", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.49540000", + "longitude": "-54.36400000" + }, + { + "id": "11658", + "name": "Doutor Ricardo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.10117000", + "longitude": "-51.97440000" + }, + { + "id": "11680", + "name": "Eldorado do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.08896000", + "longitude": "-51.53400000" + }, + { + "id": "11694", + "name": "Encantado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.23611000", + "longitude": "-51.86972000" + }, + { + "id": "11697", + "name": "Encruzilhada do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.60368000", + "longitude": "-52.68280000" + }, + { + "id": "11703", + "name": "Engenho Velho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.67698000", + "longitude": "-52.91040000" + }, + { + "id": "11709", + "name": "Entre Rios do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.50821000", + "longitude": "-52.72855000" + }, + { + "id": "11710", + "name": "Entre-Ijuís", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.46066000", + "longitude": "-54.30321000" + }, + { + "id": "11715", + "name": "Erebango", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.82558000", + "longitude": "-52.31909000" + }, + { + "id": "11716", + "name": "Erechim", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.63461000", + "longitude": "-52.27540000" + }, + { + "id": "11719", + "name": "Ernestina", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.42323000", + "longitude": "-52.57365000" + }, + { + "id": "11720", + "name": "Erval Grande", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.36138000", + "longitude": "-52.57486000" + }, + { + "id": "11721", + "name": "Erval Seco", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.49433000", + "longitude": "-53.52792000" + }, + { + "id": "11725", + "name": "Esmeralda", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.98347000", + "longitude": "-51.19413000" + }, + { + "id": "11733", + "name": "Esperança do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.32100000", + "longitude": "-54.01108000" + }, + { + "id": "11738", + "name": "Espumoso", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.72472000", + "longitude": "-52.84972000" + }, + { + "id": "11743", + "name": "Estação", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.93562000", + "longitude": "-52.29516000" + }, + { + "id": "11758", + "name": "Estância Velha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.64833000", + "longitude": "-51.17389000" + }, + { + "id": "11744", + "name": "Esteio", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.86139000", + "longitude": "-51.17917000" + }, + { + "id": "11748", + "name": "Estrela", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.06111000", + "longitude": "-50.93833000" + }, + { + "id": "11750", + "name": "Estrela Velha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.22360000", + "longitude": "-53.17076000" + }, + { + "id": "11762", + "name": "Eugênio de Castro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.57179000", + "longitude": "-54.26582000" + }, + { + "id": "11771", + "name": "Fagundes Varela", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.88133000", + "longitude": "-51.72861000" + }, + { + "id": "11778", + "name": "Farroupilha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.22500000", + "longitude": "-51.34778000" + }, + { + "id": "11782", + "name": "Faxinal do Soturno", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.57197000", + "longitude": "-53.47332000" + }, + { + "id": "11784", + "name": "Faxinalzinho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.37178000", + "longitude": "-52.66899000" + }, + { + "id": "11787", + "name": "Fazenda Vilanova", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.59817000", + "longitude": "-51.84244000" + }, + { + "id": "11798", + "name": "Feliz", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.45459000", + "longitude": "-51.27775000" + }, + { + "id": "11831", + "name": "Flores da Cunha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.02889000", + "longitude": "-51.18167000" + }, + { + "id": "11842", + "name": "Floriano Peixoto", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.85241000", + "longitude": "-52.03361000" + }, + { + "id": "11849", + "name": "Fontoura Xavier", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.01054000", + "longitude": "-52.36771000" + }, + { + "id": "11851", + "name": "Formigueiro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.96944000", + "longitude": "-53.46743000" + }, + { + "id": "11860", + "name": "Forquetinha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.39695000", + "longitude": "-52.11762000" + }, + { + "id": "11867", + "name": "Fortaleza dos Valos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.91268000", + "longitude": "-53.33891000" + }, + { + "id": "11889", + "name": "Frederico Westphalen", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.35917000", + "longitude": "-53.39444000" + }, + { + "id": "11921", + "name": "Garibaldi", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.25611000", + "longitude": "-51.53361000" + }, + { + "id": "11924", + "name": "Garruchos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.25602000", + "longitude": "-55.51556000" + }, + { + "id": "11929", + "name": "Gaurama", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.61693000", + "longitude": "-52.10405000" + }, + { + "id": "11936", + "name": "General Câmara", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.83922000", + "longitude": "-51.94718000" + }, + { + "id": "11940", + "name": "Gentil", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.38797000", + "longitude": "-52.04926000" + }, + { + "id": "11943", + "name": "Getúlio Vargas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.87411000", + "longitude": "-52.16526000" + }, + { + "id": "11946", + "name": "Giruá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.01046000", + "longitude": "-54.30456000" + }, + { + "id": "11949", + "name": "Glorinha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.85685000", + "longitude": "-50.75086000" + }, + { + "id": "11993", + "name": "Gramado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.36252000", + "longitude": "-50.90318000" + }, + { + "id": "11995", + "name": "Gramado dos Loureiros", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.45441000", + "longitude": "-52.91705000" + }, + { + "id": "11994", + "name": "Gramado Xavier", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.28655000", + "longitude": "-52.61202000" + }, + { + "id": "12001", + "name": "Gravataí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.94218000", + "longitude": "-50.99278000" + }, + { + "id": "12076", + "name": "Guaíba", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.11389000", + "longitude": "-51.32500000" + }, + { + "id": "12010", + "name": "Guabiju", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.58817000", + "longitude": "-51.64765000" + }, + { + "id": "12031", + "name": "Guaporé", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.84191000", + "longitude": "-51.91880000" + }, + { + "id": "12045", + "name": "Guarani das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.15071000", + "longitude": "-54.60026000" + }, + { + "id": "12092", + "name": "Harmonia", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.54904000", + "longitude": "-51.42357000" + }, + { + "id": "12097", + "name": "Herval", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-32.02361000", + "longitude": "-53.39556000" + }, + { + "id": "12099", + "name": "Herveiras", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.43864000", + "longitude": "-52.67366000" + }, + { + "id": "12106", + "name": "Horizontina", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.62583000", + "longitude": "-54.30778000" + }, + { + "id": "12109", + "name": "Hulha Negra", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.57199000", + "longitude": "-53.86271000" + }, + { + "id": "12111", + "name": "Humaitá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.58561000", + "longitude": "-53.99627000" + }, + { + "id": "12121", + "name": "Ibarama", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.40889000", + "longitude": "-53.18252000" + }, + { + "id": "12132", + "name": "Ibiaçá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.10474000", + "longitude": "-51.80283000" + }, + { + "id": "12146", + "name": "Ibiraiaras", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.38729000", + "longitude": "-51.62710000" + }, + { + "id": "12150", + "name": "Ibirapuitã", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.61696000", + "longitude": "-52.47077000" + }, + { + "id": "12156", + "name": "Ibirubá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.62750000", + "longitude": "-53.08972000" + }, + { + "id": "12194", + "name": "Igrejinha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.57444000", + "longitude": "-50.79028000" + }, + { + "id": "12205", + "name": "Ijuí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.38778000", + "longitude": "-53.91472000" + }, + { + "id": "12216", + "name": "Ilópolis", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.91690000", + "longitude": "-52.14813000" + }, + { + "id": "12223", + "name": "Imbé", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.92719000", + "longitude": "-50.12826000" + }, + { + "id": "12225", + "name": "Imigrante", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.34023000", + "longitude": "-51.75667000" + }, + { + "id": "12235", + "name": "Independência", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.89333000", + "longitude": "-54.19784000" + }, + { + "id": "12246", + "name": "Inhacorá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.91435000", + "longitude": "-54.03786000" + }, + { + "id": "12299", + "name": "Ipê", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.71616000", + "longitude": "-51.27787000" + }, + { + "id": "12279", + "name": "Ipiranga do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.94208000", + "longitude": "-52.43068000" + }, + { + "id": "12315", + "name": "Iraí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.27078000", + "longitude": "-53.23696000" + }, + { + "id": "12324", + "name": "Itaara", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.56305000", + "longitude": "-53.74584000" + }, + { + "id": "12345", + "name": "Itacurubi", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.78540000", + "longitude": "-55.26568000" + }, + { + "id": "12436", + "name": "Itapuca", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.77178000", + "longitude": "-52.20012000" + }, + { + "id": "12444", + "name": "Itaqui", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.12528000", + "longitude": "-56.55306000" + }, + { + "id": "12453", + "name": "Itati", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.42840000", + "longitude": "-50.17775000" + }, + { + "id": "12457", + "name": "Itatiba do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.36303000", + "longitude": "-52.49074000" + }, + { + "id": "12504", + "name": "Ivorá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.50743000", + "longitude": "-53.56819000" + }, + { + "id": "12505", + "name": "Ivoti", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.59111000", + "longitude": "-51.16056000" + }, + { + "id": "12514", + "name": "Jaboticaba", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.60969000", + "longitude": "-53.27016000" + }, + { + "id": "12529", + "name": "Jacuizinho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.03095000", + "longitude": "-53.06796000" + }, + { + "id": "12532", + "name": "Jacutinga", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.77469000", + "longitude": "-52.52224000" + }, + { + "id": "12549", + "name": "Jaguarão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-32.56611000", + "longitude": "-53.37583000" + }, + { + "id": "12541", + "name": "Jaguari", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.45245000", + "longitude": "-54.64626000" + }, + { + "id": "12578", + "name": "Jaquirana", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.93470000", + "longitude": "-50.36430000" + }, + { + "id": "12594", + "name": "Jari", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.28796000", + "longitude": "-54.29784000" + }, + { + "id": "12716", + "name": "Jóia", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.72932000", + "longitude": "-54.12253000" + }, + { + "id": "12719", + "name": "Júlio de Castilhos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.26449000", + "longitude": "-53.62459000" + }, + { + "id": "12735", + "name": "Lagoa Bonita do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.49396000", + "longitude": "-53.03470000" + }, + { + "id": "12767", + "name": "Lagoa dos Três Cantos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.56607000", + "longitude": "-52.84650000" + }, + { + "id": "12747", + "name": "Lagoa Vermelha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.21995000", + "longitude": "-51.47225000" + }, + { + "id": "12770", + "name": "Lagoão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.25902000", + "longitude": "-52.76687000" + }, + { + "id": "12775", + "name": "Lajeado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.46694000", + "longitude": "-51.96139000" + }, + { + "id": "12779", + "name": "Lajeado do Bugre", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.70327000", + "longitude": "-53.20742000" + }, + { + "id": "12810", + "name": "Lavras do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.84980000", + "longitude": "-54.02830000" + }, + { + "id": "12823", + "name": "Liberato Salzano", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.53845000", + "longitude": "-53.07401000" + }, + { + "id": "12836", + "name": "Lindolfo Collor", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.57482000", + "longitude": "-51.22786000" + }, + { + "id": "12839", + "name": "Linha Nova", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.45535000", + "longitude": "-51.21876000" + }, + { + "id": "13089", + "name": "Maçambará", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.05822000", + "longitude": "-55.61102000" + }, + { + "id": "12898", + "name": "Machadinho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.59183000", + "longitude": "-51.68758000" + }, + { + "id": "12935", + "name": "Mampituba", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.26145000", + "longitude": "-50.01070000" + }, + { + "id": "12955", + "name": "Manoel Viana", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.40696000", + "longitude": "-55.56870000" + }, + { + "id": "12960", + "name": "Maquiné", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.57608000", + "longitude": "-50.25993000" + }, + { + "id": "12983", + "name": "Maratá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.54921000", + "longitude": "-51.55693000" + }, + { + "id": "12984", + "name": "Marau", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.44217000", + "longitude": "-52.27411000" + }, + { + "id": "12991", + "name": "Marcelino Ramos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.47851000", + "longitude": "-51.95065000" + }, + { + "id": "13008", + "name": "Mariana Pimentel", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.30220000", + "longitude": "-51.58133000" + }, + { + "id": "13009", + "name": "Mariano Moro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.35013000", + "longitude": "-52.18363000" + }, + { + "id": "13029", + "name": "Marques de Souza", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.27327000", + "longitude": "-52.15720000" + }, + { + "id": "13045", + "name": "Mata", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.54895000", + "longitude": "-54.44545000" + }, + { + "id": "13064", + "name": "Mato Castelhano", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.27248000", + "longitude": "-52.17628000" + }, + { + "id": "13066", + "name": "Mato Leitão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.51457000", + "longitude": "-52.13856000" + }, + { + "id": "13067", + "name": "Mato Queimado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.25680000", + "longitude": "-54.67109000" + }, + { + "id": "13087", + "name": "Maximiliano de Almeida", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.58802000", + "longitude": "-51.80358000" + }, + { + "id": "13123", + "name": "Minas do Leão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.07189000", + "longitude": "-52.11996000" + }, + { + "id": "13137", + "name": "Miraguaí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.48658000", + "longitude": "-53.75549000" + }, + { + "id": "13185", + "name": "Montauri", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.66498000", + "longitude": "-52.05388000" + }, + { + "id": "13193", + "name": "Monte Alegre dos Campos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.70177000", + "longitude": "-50.80405000" + }, + { + "id": "13199", + "name": "Monte Belo do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.13180000", + "longitude": "-51.64287000" + }, + { + "id": "13218", + "name": "Montenegro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.68861000", + "longitude": "-51.46111000" + }, + { + "id": "13233", + "name": "Mormaço", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.69004000", + "longitude": "-52.66928000" + }, + { + "id": "13238", + "name": "Morrinhos do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.34362000", + "longitude": "-49.96435000" + }, + { + "id": "13243", + "name": "Morro Redondo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.63833000", + "longitude": "-52.63569000" + }, + { + "id": "13244", + "name": "Morro Reuter", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.51567000", + "longitude": "-51.01861000" + }, + { + "id": "13256", + "name": "Mostardas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.92226000", + "longitude": "-50.85421000" + }, + { + "id": "13289", + "name": "Muçum", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.14017000", + "longitude": "-51.82330000" + }, + { + "id": "13264", + "name": "Muitos Capões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.43447000", + "longitude": "-51.24691000" + }, + { + "id": "13265", + "name": "Muliterno", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.31235000", + "longitude": "-51.78652000" + }, + { + "id": "13485", + "name": "Não Me Toque", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.45917000", + "longitude": "-52.82083000" + }, + { + "id": "13486", + "name": "Não-Me-Toque", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.47423000", + "longitude": "-52.80396000" + }, + { + "id": "13323", + "name": "Nicolau Vergueiro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.52442000", + "longitude": "-52.44444000" + }, + { + "id": "13333", + "name": "Nonoai", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.36903000", + "longitude": "-52.87590000" + }, + { + "id": "13347", + "name": "Nova Alvorada", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.70497000", + "longitude": "-52.16616000" + }, + { + "id": "13352", + "name": "Nova Araçá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.64411000", + "longitude": "-51.73489000" + }, + { + "id": "13356", + "name": "Nova Bassano", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.70293000", + "longitude": "-51.80542000" + }, + { + "id": "13358", + "name": "Nova Boa Vista", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.00887000", + "longitude": "-52.98206000" + }, + { + "id": "13361", + "name": "Nova Bréscia", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.20206000", + "longitude": "-52.04822000" + }, + { + "id": "13366", + "name": "Nova Candelária", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.59344000", + "longitude": "-54.12172000" + }, + { + "id": "13377", + "name": "Nova Esperança do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.39225000", + "longitude": "-54.83460000" + }, + { + "id": "13387", + "name": "Nova Hartz", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.59640000", + "longitude": "-50.90836000" + }, + { + "id": "13416", + "name": "Nova Palma", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.40710000", + "longitude": "-53.43240000" + }, + { + "id": "13423", + "name": "Nova Pádua", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.01222000", + "longitude": "-51.31451000" + }, + { + "id": "13418", + "name": "Nova Petrópolis", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.37639000", + "longitude": "-51.11444000" + }, + { + "id": "13421", + "name": "Nova Prata", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.78389000", + "longitude": "-51.61000000" + }, + { + "id": "13424", + "name": "Nova Ramada", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.09297000", + "longitude": "-53.69502000" + }, + { + "id": "13428", + "name": "Nova Roma do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.99091000", + "longitude": "-51.41443000" + }, + { + "id": "13434", + "name": "Nova Santa Rita", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.83265000", + "longitude": "-51.27431000" + }, + { + "id": "13454", + "name": "Novo Barreiro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.89154000", + "longitude": "-53.11220000" + }, + { + "id": "13456", + "name": "Novo Cabrais", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.76161000", + "longitude": "-52.98402000" + }, + { + "id": "13459", + "name": "Novo Hamburgo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.67833000", + "longitude": "-51.13056000" + }, + { + "id": "13469", + "name": "Novo Machado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.55482000", + "longitude": "-54.53613000" + }, + { + "id": "13480", + "name": "Novo Tiradentes", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.55948000", + "longitude": "-53.15567000" + }, + { + "id": "13482", + "name": "Novo Xingu", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.74556000", + "longitude": "-53.04043000" + }, + { + "id": "13530", + "name": "Osório", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.89454000", + "longitude": "-50.23467000" + }, + { + "id": "13568", + "name": "Paim Filho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.72984000", + "longitude": "-51.78102000" + }, + { + "id": "13585", + "name": "Palmares do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.25778000", + "longitude": "-50.50972000" + }, + { + "id": "13592", + "name": "Palmeira das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.89944000", + "longitude": "-53.31361000" + }, + { + "id": "13607", + "name": "Palmitinho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.32268000", + "longitude": "-53.59220000" + }, + { + "id": "13612", + "name": "Panambi", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.29250000", + "longitude": "-53.50167000" + }, + { + "id": "13618", + "name": "Pantano Grande", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.25817000", + "longitude": "-52.34168000" + }, + { + "id": "13657", + "name": "Paraí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.59575000", + "longitude": "-51.79731000" + }, + { + "id": "13663", + "name": "Paraíso do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.72404000", + "longitude": "-53.11162000" + }, + { + "id": "13668", + "name": "Pareci Novo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.61153000", + "longitude": "-51.42691000" + }, + { + "id": "13683", + "name": "Parobé", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.62861000", + "longitude": "-50.83472000" + }, + { + "id": "13686", + "name": "Passa Sete", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.43060000", + "longitude": "-52.86514000" + }, + { + "id": "13699", + "name": "Passo do Sobrado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.73133000", + "longitude": "-52.23175000" + }, + { + "id": "13696", + "name": "Passo Fundo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.26278000", + "longitude": "-52.40667000" + }, + { + "id": "13732", + "name": "Paulo Bento", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.73673000", + "longitude": "-52.39667000" + }, + { + "id": "13739", + "name": "Paverama", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.59556000", + "longitude": "-51.72344000" + }, + { + "id": "13762", + "name": "Pedras Altas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.83276000", + "longitude": "-53.63272000" + }, + { + "id": "13780", + "name": "Pedro Osório", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.95760000", + "longitude": "-52.89419000" + }, + { + "id": "13790", + "name": "Pejuçara", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.45442000", + "longitude": "-53.61044000" + }, + { + "id": "13791", + "name": "Pelotas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.76997000", + "longitude": "-52.34101000" + }, + { + "id": "13828", + "name": "Picada Café", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.44757000", + "longitude": "-51.11522000" + }, + { + "id": "13859", + "name": "Pinhal", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.52636000", + "longitude": "-53.23425000" + }, + { + "id": "13861", + "name": "Pinhal da Serra", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.88164000", + "longitude": "-51.22450000" + }, + { + "id": "13860", + "name": "Pinhal Grande", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.27075000", + "longitude": "-53.34587000" + }, + { + "id": "13867", + "name": "Pinheirinho do Vale", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.22637000", + "longitude": "-53.63352000" + }, + { + "id": "13869", + "name": "Pinheiro Machado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.57833000", + "longitude": "-53.38111000" + }, + { + "id": "13871", + "name": "Pinheiros", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.78333000", + "longitude": "-52.73333000" + }, + { + "id": "13876", + "name": "Pinto Bandeira", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.09289000", + "longitude": "-51.46180000" + }, + { + "id": "13903", + "name": "Pirapó", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.05287000", + "longitude": "-55.23460000" + }, + { + "id": "13907", + "name": "Piratini", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.41655000", + "longitude": "-53.11163000" + }, + { + "id": "13940", + "name": "Planalto", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.34391000", + "longitude": "-53.08947000" + }, + { + "id": "14050", + "name": "Poço das Antas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.45339000", + "longitude": "-51.66969000" + }, + { + "id": "13979", + "name": "Pontão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.04977000", + "longitude": "-52.63740000" + }, + { + "id": "13971", + "name": "Ponte Preta", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.67688000", + "longitude": "-52.51736000" + }, + { + "id": "14029", + "name": "Portão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.70746000", + "longitude": "-51.23572000" + }, + { + "id": "13994", + "name": "Porto Alegre", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.03283000", + "longitude": "-51.23019000" + }, + { + "id": "14009", + "name": "Porto Lucena", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.84663000", + "longitude": "-54.96059000" + }, + { + "id": "14010", + "name": "Porto Mauá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.59808000", + "longitude": "-54.65773000" + }, + { + "id": "14020", + "name": "Porto Vera Cruz", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.76244000", + "longitude": "-54.90094000" + }, + { + "id": "14023", + "name": "Porto Xavier", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.93317000", + "longitude": "-55.15422000" + }, + { + "id": "14040", + "name": "Pouso Novo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.16777000", + "longitude": "-52.22165000" + }, + { + "id": "14090", + "name": "Presidente Lucena", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.52778000", + "longitude": "-51.19285000" + }, + { + "id": "14109", + "name": "Progresso", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.22873000", + "longitude": "-52.30960000" + }, + { + "id": "14112", + "name": "Protásio Alves", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.74413000", + "longitude": "-51.49620000" + }, + { + "id": "14117", + "name": "Putinga", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.04776000", + "longitude": "-52.16503000" + }, + { + "id": "14126", + "name": "Quaraí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.38750000", + "longitude": "-56.45139000" + }, + { + "id": "14133", + "name": "Quatro Irmãos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.81251000", + "longitude": "-52.46069000" + }, + { + "id": "14147", + "name": "Quevedos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.30670000", + "longitude": "-54.07002000" + }, + { + "id": "14152", + "name": "Quinze de Novembro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.74442000", + "longitude": "-53.11648000" + }, + { + "id": "14182", + "name": "Redentora", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.56833000", + "longitude": "-53.60924000" + }, + { + "id": "14192", + "name": "Relvado", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.12666000", + "longitude": "-52.05393000" + }, + { + "id": "14206", + "name": "Restinga Sêca", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.82715000", + "longitude": "-53.34008000" + }, + { + "id": "14319", + "name": "Rio dos Índios", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.25523000", + "longitude": "-52.87641000" + }, + { + "id": "14276", + "name": "Rio Grande", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-32.07811000", + "longitude": "-52.35014000" + }, + { + "id": "14288", + "name": "Rio Pardo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.98972000", + "longitude": "-52.37806000" + }, + { + "id": "14321", + "name": "Riozinho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.59847000", + "longitude": "-50.39225000" + }, + { + "id": "14325", + "name": "Roca Sales", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.22637000", + "longitude": "-51.82440000" + }, + { + "id": "14329", + "name": "Rodeio Bonito", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.46968000", + "longitude": "-53.17038000" + }, + { + "id": "14334", + "name": "Rolador", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.27096000", + "longitude": "-54.85608000" + }, + { + "id": "14335", + "name": "Rolante", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.65056000", + "longitude": "-50.57583000" + }, + { + "id": "14341", + "name": "Ronda Alta", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.82614000", + "longitude": "-52.72873000" + }, + { + "id": "14342", + "name": "Rondinha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.83287000", + "longitude": "-52.91661000" + }, + { + "id": "14347", + "name": "Roque Gonzales", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.05673000", + "longitude": "-55.12048000" + }, + { + "id": "14355", + "name": "Rosário do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.25833000", + "longitude": "-54.91417000" + }, + { + "id": "14373", + "name": "Sagrada Família", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.71478000", + "longitude": "-53.12850000" + }, + { + "id": "14376", + "name": "Saldanha Marinho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.38701000", + "longitude": "-53.09584000" + }, + { + "id": "14402", + "name": "Salto do Jacuí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.04212000", + "longitude": "-53.16909000" + }, + { + "id": "14405", + "name": "Salvador das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.07697000", + "longitude": "-54.82880000" + }, + { + "id": "14406", + "name": "Salvador do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.48006000", + "longitude": "-51.51407000" + }, + { + "id": "14410", + "name": "Sananduva", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.94972000", + "longitude": "-51.80667000" + }, + { + "id": "14416", + "name": "Sant'Ana do Livramento", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.78069000", + "longitude": "-55.48158000" + }, + { + "id": "14429", + "name": "Santa Bárbara do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.37429000", + "longitude": "-53.25738000" + }, + { + "id": "14435", + "name": "Santa Cecília do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.17256000", + "longitude": "-51.92401000" + }, + { + "id": "14437", + "name": "Santa Clara do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.45575000", + "longitude": "-52.14362000" + }, + { + "id": "14456", + "name": "Santa Cruz do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.71750000", + "longitude": "-52.42583000" + }, + { + "id": "14501", + "name": "Santa Margarida do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.36744000", + "longitude": "-54.10999000" + }, + { + "id": "14502", + "name": "Santa Maria", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.68417000", + "longitude": "-53.80694000" + }, + { + "id": "14512", + "name": "Santa Maria do Herval", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.47954000", + "longitude": "-50.98806000" + }, + { + "id": "14540", + "name": "Santa Rosa", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.87083000", + "longitude": "-54.48139000" + }, + { + "id": "14553", + "name": "Santa Tereza", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.15063000", + "longitude": "-51.72160000" + }, + { + "id": "14566", + "name": "Santa Vitória do Palmar", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-33.51889000", + "longitude": "-53.36806000" + }, + { + "id": "14570", + "name": "Santana da Boa Vista", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.76195000", + "longitude": "-53.18297000" + }, + { + "id": "14585", + "name": "Santana do Livramento", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.89083000", + "longitude": "-55.53278000" + }, + { + "id": "14600", + "name": "Santiago", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.11368000", + "longitude": "-54.73359000" + }, + { + "id": "14613", + "name": "Santo Antônio da Patrulha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.82214000", + "longitude": "-50.56024000" + }, + { + "id": "14615", + "name": "Santo Antônio das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.47797000", + "longitude": "-55.40876000" + }, + { + "id": "14634", + "name": "Santo Antônio do Palma", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.48630000", + "longitude": "-52.01930000" + }, + { + "id": "14637", + "name": "Santo Antônio do Planalto", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.38607000", + "longitude": "-52.66579000" + }, + { + "id": "14644", + "name": "Santo Augusto", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.85083000", + "longitude": "-53.77722000" + }, + { + "id": "14652", + "name": "Santo Ângelo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.29917000", + "longitude": "-54.26306000" + }, + { + "id": "14645", + "name": "Santo Cristo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.78844000", + "longitude": "-54.70378000" + }, + { + "id": "14648", + "name": "Santo Expedito do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.92306000", + "longitude": "-51.67042000" + }, + { + "id": "14658", + "name": "Sapiranga", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.63806000", + "longitude": "-51.00694000" + }, + { + "id": "14660", + "name": "Sapucaia", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.83333000", + "longitude": "-51.15000000" + }, + { + "id": "14663", + "name": "Sapucaia do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.81826000", + "longitude": "-51.15527000" + }, + { + "id": "14667", + "name": "Sarandi", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.94389000", + "longitude": "-52.92306000" + }, + { + "id": "14848", + "name": "São Borja", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.66056000", + "longitude": "-56.00444000" + }, + { + "id": "14874", + "name": "São Domingos do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.54446000", + "longitude": "-51.87330000" + }, + { + "id": "14883", + "name": "São Francisco de Assis", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.55028000", + "longitude": "-55.13111000" + }, + { + "id": "14887", + "name": "São Francisco de Paula", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.24246000", + "longitude": "-50.44928000" + }, + { + "id": "14908", + "name": "São Gabriel", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.33369000", + "longitude": "-54.33029000" + }, + { + "id": "14928", + "name": "São Jerônimo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.95917000", + "longitude": "-51.72222000" + }, + { + "id": "15016", + "name": "São João da Urtiga", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.79677000", + "longitude": "-51.83882000" + }, + { + "id": "15041", + "name": "São João do Polêsine", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.64559000", + "longitude": "-53.47291000" + }, + { + "id": "14934", + "name": "São Jorge", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.49890000", + "longitude": "-51.73076000" + }, + { + "id": "14950", + "name": "São José das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.79738000", + "longitude": "-53.12963000" + }, + { + "id": "14972", + "name": "São José do Herval", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.06441000", + "longitude": "-52.27281000" + }, + { + "id": "14973", + "name": "São José do Hortêncio", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.54364000", + "longitude": "-51.24977000" + }, + { + "id": "14974", + "name": "São José do Inhacorá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.73525000", + "longitude": "-54.12155000" + }, + { + "id": "14978", + "name": "São José do Norte", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.80089000", + "longitude": "-51.76198000" + }, + { + "id": "14979", + "name": "São José do Ouro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.75580000", + "longitude": "-51.55722000" + }, + { + "id": "14988", + "name": "São José do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.54416000", + "longitude": "-51.49254000" + }, + { + "id": "14991", + "name": "São José dos Ausentes", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.68307000", + "longitude": "-49.94674000" + }, + { + "id": "15051", + "name": "São Leopoldo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.76028000", + "longitude": "-51.14722000" + }, + { + "id": "15057", + "name": "São Lourenço do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.36528000", + "longitude": "-51.97833000" + }, + { + "id": "15060", + "name": "São Luiz Gonzaga", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.40833000", + "longitude": "-54.96083000" + }, + { + "id": "15071", + "name": "São Marcos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.96872000", + "longitude": "-51.04900000" + }, + { + "id": "15072", + "name": "São Martinho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.72779000", + "longitude": "-53.96611000" + }, + { + "id": "15074", + "name": "São Martinho da Serra", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.45793000", + "longitude": "-53.88452000" + }, + { + "id": "15083", + "name": "São Miguel das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.72430000", + "longitude": "-54.50818000" + }, + { + "id": "15099", + "name": "São Nicolau", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.22363000", + "longitude": "-55.25589000" + }, + { + "id": "15102", + "name": "São Paulo das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.96215000", + "longitude": "-54.95513000" + }, + { + "id": "15110", + "name": "São Pedro da Serra", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.42131000", + "longitude": "-51.51442000" + }, + { + "id": "15113", + "name": "São Pedro das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.79277000", + "longitude": "-53.24444000" + }, + { + "id": "15115", + "name": "São Pedro do Butiá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.15561000", + "longitude": "-54.90336000" + }, + { + "id": "15121", + "name": "São Pedro do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.62056000", + "longitude": "-54.17889000" + }, + { + "id": "15145", + "name": "São Sebastião do Caí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.58667000", + "longitude": "-51.37556000" + }, + { + "id": "15155", + "name": "São Sepé", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.16056000", + "longitude": "-53.56528000" + }, + { + "id": "15166", + "name": "São Valério do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.81235000", + "longitude": "-53.92050000" + }, + { + "id": "15163", + "name": "São Valentim", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.55106000", + "longitude": "-52.58722000" + }, + { + "id": "15164", + "name": "São Valentim do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.06303000", + "longitude": "-51.73687000" + }, + { + "id": "15167", + "name": "São Vendelino", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.38319000", + "longitude": "-51.37289000" + }, + { + "id": "15174", + "name": "São Vicente do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.71725000", + "longitude": "-54.76241000" + }, + { + "id": "15175", + "name": "Sério", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.40642000", + "longitude": "-52.24358000" + }, + { + "id": "14686", + "name": "Seberi", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.50884000", + "longitude": "-53.36482000" + }, + { + "id": "14687", + "name": "Sede Nova", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.64490000", + "longitude": "-53.96149000" + }, + { + "id": "14688", + "name": "Segredo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.29705000", + "longitude": "-52.92281000" + }, + { + "id": "14689", + "name": "Selbach", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.67641000", + "longitude": "-52.98236000" + }, + { + "id": "14707", + "name": "Senador Salgado Filho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.02951000", + "longitude": "-54.52396000" + }, + { + "id": "14714", + "name": "Sentinela do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.60341000", + "longitude": "-51.62096000" + }, + { + "id": "14716", + "name": "Serafina Corrêa", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.69115000", + "longitude": "-51.92671000" + }, + { + "id": "14760", + "name": "Sertão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.00412000", + "longitude": "-52.35664000" + }, + { + "id": "14761", + "name": "Sertão Santana", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.49105000", + "longitude": "-51.66541000" + }, + { + "id": "14767", + "name": "Sete de Setembro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.12546000", + "longitude": "-54.47905000" + }, + { + "id": "14770", + "name": "Severiano de Almeida", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.40649000", + "longitude": "-52.10747000" + }, + { + "id": "14777", + "name": "Silveira Martins", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.63635000", + "longitude": "-53.54609000" + }, + { + "id": "14790", + "name": "Sinimbu", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.41512000", + "longitude": "-52.60499000" + }, + { + "id": "14796", + "name": "Sobradinho", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.41325000", + "longitude": "-53.02018000" + }, + { + "id": "14803", + "name": "Soledade", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.84047000", + "longitude": "-52.51015000" + }, + { + "id": "15186", + "name": "Tabaí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.66719000", + "longitude": "-51.72796000" + }, + { + "id": "15227", + "name": "Tapejara", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.06426000", + "longitude": "-52.00823000" + }, + { + "id": "15229", + "name": "Tapera", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.66758000", + "longitude": "-52.86620000" + }, + { + "id": "15232", + "name": "Tapes", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.67333000", + "longitude": "-51.39583000" + }, + { + "id": "15240", + "name": "Taquara", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.66336000", + "longitude": "-50.76365000" + }, + { + "id": "15245", + "name": "Taquari", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.79972000", + "longitude": "-51.86444000" + }, + { + "id": "15251", + "name": "Taquaruçu do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.40719000", + "longitude": "-53.49914000" + }, + { + "id": "15263", + "name": "Tavares", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.27291000", + "longitude": "-51.07758000" + }, + { + "id": "15276", + "name": "Tenente Portela", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.36291000", + "longitude": "-53.77115000" + }, + { + "id": "15298", + "name": "Terra de Areia", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.58443000", + "longitude": "-50.06135000" + }, + { + "id": "15300", + "name": "Teutônia", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.46814000", + "longitude": "-51.77144000" + }, + { + "id": "15320", + "name": "Tio Hugo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.58180000", + "longitude": "-52.59736000" + }, + { + "id": "15322", + "name": "Tiradentes do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.38183000", + "longitude": "-54.11303000" + }, + { + "id": "15339", + "name": "Toropi", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.47869000", + "longitude": "-54.29307000" + }, + { + "id": "15341", + "name": "Torres", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.29667000", + "longitude": "-49.81982000" + }, + { + "id": "15351", + "name": "Tramandaí", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.03977000", + "longitude": "-50.23016000" + }, + { + "id": "15352", + "name": "Travesseiro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.28808000", + "longitude": "-52.09974000" + }, + { + "id": "15369", + "name": "Três Arroios", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.48222000", + "longitude": "-52.18370000" + }, + { + "id": "15372", + "name": "Três Cachoeiras", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.47525000", + "longitude": "-49.98487000" + }, + { + "id": "15374", + "name": "Três Coroas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.46604000", + "longitude": "-50.77684000" + }, + { + "id": "15384", + "name": "Três de Maio", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.73449000", + "longitude": "-54.26018000" + }, + { + "id": "15375", + "name": "Três Forquilhas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.43246000", + "longitude": "-50.08341000" + }, + { + "id": "15379", + "name": "Três Palmeiras", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.61276000", + "longitude": "-52.86635000" + }, + { + "id": "15380", + "name": "Três Passos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.43083000", + "longitude": "-53.92238000" + }, + { + "id": "15361", + "name": "Trindade do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.52679000", + "longitude": "-52.91351000" + }, + { + "id": "15364", + "name": "Triunfo", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.82246000", + "longitude": "-51.56027000" + }, + { + "id": "15388", + "name": "Tucunduva", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.64923000", + "longitude": "-54.43972000" + }, + { + "id": "15393", + "name": "Tunas", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.10586000", + "longitude": "-52.89867000" + }, + { + "id": "15400", + "name": "Tupanci do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.92640000", + "longitude": "-51.54450000" + }, + { + "id": "15401", + "name": "Tupanciretã", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.02190000", + "longitude": "-53.97471000" + }, + { + "id": "15402", + "name": "Tupandi", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.48000000", + "longitude": "-51.43044000" + }, + { + "id": "15403", + "name": "Tuparendi", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.68918000", + "longitude": "-54.55912000" + }, + { + "id": "15416", + "name": "Turuçu", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-31.52317000", + "longitude": "-52.12870000" + }, + { + "id": "15437", + "name": "Ubiretama", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.05186000", + "longitude": "-54.66252000" + }, + { + "id": "15458", + "name": "União da Serra", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.78526000", + "longitude": "-52.03971000" + }, + { + "id": "15455", + "name": "Unistalda", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.08248000", + "longitude": "-55.19194000" + }, + { + "id": "15479", + "name": "Uruguaiana", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.82797000", + "longitude": "-56.63224000" + }, + { + "id": "15490", + "name": "Vacaria", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.41223000", + "longitude": "-50.94431000" + }, + { + "id": "15496", + "name": "Vale do Sol", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.58160000", + "longitude": "-52.68161000" + }, + { + "id": "15491", + "name": "Vale Real", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.34986000", + "longitude": "-51.23013000" + }, + { + "id": "15492", + "name": "Vale Verde", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.83509000", + "longitude": "-52.10562000" + }, + { + "id": "15505", + "name": "Vanini", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.48831000", + "longitude": "-51.83316000" + }, + { + "id": "15530", + "name": "Venâncio Aires", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.54206000", + "longitude": "-52.21959000" + }, + { + "id": "15534", + "name": "Vera Cruz", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.77275000", + "longitude": "-52.52818000" + }, + { + "id": "15538", + "name": "Veranópolis", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.97791000", + "longitude": "-51.55656000" + }, + { + "id": "15549", + "name": "Vespasiano Corrêa", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.07064000", + "longitude": "-51.86646000" + }, + { + "id": "15550", + "name": "Viadutos", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.57743000", + "longitude": "-51.98735000" + }, + { + "id": "15551", + "name": "Viamão", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.08111000", + "longitude": "-51.02333000" + }, + { + "id": "15555", + "name": "Vicente Dutra", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.17975000", + "longitude": "-53.39966000" + }, + { + "id": "15558", + "name": "Victor Graeff", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.54502000", + "longitude": "-52.68069000" + }, + { + "id": "15568", + "name": "Vila Flores", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.86838000", + "longitude": "-51.52935000" + }, + { + "id": "15569", + "name": "Vila Lângaro", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.12778000", + "longitude": "-52.14152000" + }, + { + "id": "15570", + "name": "Vila Maria", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.55505000", + "longitude": "-52.16380000" + }, + { + "id": "15572", + "name": "Vila Nova do Sul", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-30.33711000", + "longitude": "-53.88004000" + }, + { + "id": "15589", + "name": "Vista Alegre", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.31083000", + "longitude": "-53.51572000" + }, + { + "id": "15591", + "name": "Vista Alegre do Prata", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.83075000", + "longitude": "-51.79221000" + }, + { + "id": "15592", + "name": "Vista Gaúcha", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.26738000", + "longitude": "-53.69737000" + }, + { + "id": "15600", + "name": "Vitória das Missões", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.35473000", + "longitude": "-54.48174000" + }, + { + "id": "15631", + "name": "Westfália", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.42302000", + "longitude": "-51.75617000" + }, + { + "id": "15635", + "name": "Xangri-lá", + "state_id": 2001, + "state_code": "RS", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.81049000", + "longitude": "-50.09223000" + }, + { + "id": "10151", + "name": "Alta Floresta d'Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.47107000", + "longitude": "-62.13705000" + }, + { + "id": "10164", + "name": "Alto Alegre dos Parecis", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.75601000", + "longitude": "-61.97971000" + }, + { + "id": "10176", + "name": "Alto Paraíso", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.65996000", + "longitude": "-63.58719000" + }, + { + "id": "10196", + "name": "Alvorada d'Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.29925000", + "longitude": "-62.50152000" + }, + { + "id": "10396", + "name": "Ariquemes", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.91333000", + "longitude": "-63.04083000" + }, + { + "id": "10834", + "name": "Buritis", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.09215000", + "longitude": "-63.96964000" + }, + { + "id": "10851", + "name": "Cabixi", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.51083000", + "longitude": "-60.60257000" + }, + { + "id": "10859", + "name": "Cacaulândia", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.32583000", + "longitude": "-63.14953000" + }, + { + "id": "10885", + "name": "Cacoal", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.43861000", + "longitude": "-61.44722000" + }, + { + "id": "11000", + "name": "Campo Novo de Rondônia", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.48146000", + "longitude": "-63.85192000" + }, + { + "id": "11035", + "name": "Candeias do Jamari", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.94512000", + "longitude": "-63.35731000" + }, + { + "id": "11186", + "name": "Castanheiras", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.42661000", + "longitude": "-61.88918000" + }, + { + "id": "11244", + "name": "Cerejeiras", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.18319000", + "longitude": "-61.47518000" + }, + { + "id": "11282", + "name": "Chupinguaia", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.67240000", + "longitude": "-60.92622000" + }, + { + "id": "11331", + "name": "Colorado do Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.08252000", + "longitude": "-60.49419000" + }, + { + "id": "11441", + "name": "Corumbiara", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.87592000", + "longitude": "-61.11993000" + }, + { + "id": "11448", + "name": "Costa Marques", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.06168000", + "longitude": "-64.07323000" + }, + { + "id": "11511", + "name": "Cujubim", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.97819000", + "longitude": "-62.44252000" + }, + { + "id": "11735", + "name": "Espigão d'Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.46622000", + "longitude": "-60.69924000" + }, + { + "id": "11766", + "name": "Extrema", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.77136000", + "longitude": "-66.35583000" + }, + { + "id": "11984", + "name": "Governador Jorge Teixeira", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.78462000", + "longitude": "-63.04433000" + }, + { + "id": "12019", + "name": "Guajará Mirim", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.78356000", + "longitude": "-65.33552000" + }, + { + "id": "12020", + "name": "Guajará-Mirim", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.33108000", + "longitude": "-64.44095000" + }, + { + "id": "12439", + "name": "Itapuã do Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.03389000", + "longitude": "-63.23215000" + }, + { + "id": "12596", + "name": "Jaru", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.43889000", + "longitude": "-62.46639000" + }, + { + "id": "12629", + "name": "Ji Paraná", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.88528000", + "longitude": "-61.95167000" + }, + { + "id": "12630", + "name": "Ji-Paraná", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.83398000", + "longitude": "-61.96014000" + }, + { + "id": "12899", + "name": "Machadinho d'Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.23953000", + "longitude": "-62.11241000" + }, + { + "id": "13128", + "name": "Ministro Andreazza", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.16029000", + "longitude": "-61.56897000" + }, + { + "id": "13146", + "name": "Mirante da Serra", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.13706000", + "longitude": "-62.86154000" + }, + { + "id": "13207", + "name": "Monte Negro", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.30450000", + "longitude": "-63.35402000" + }, + { + "id": "13360", + "name": "Nova Brasilândia d'Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.49111000", + "longitude": "-62.16495000" + }, + { + "id": "13401", + "name": "Nova Mamoré", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.53837000", + "longitude": "-64.49429000" + }, + { + "id": "13442", + "name": "Nova União", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.94938000", + "longitude": "-62.51087000" + }, + { + "id": "13464", + "name": "Novo Horizonte do Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.70769000", + "longitude": "-62.07989000" + }, + { + "id": "13543", + "name": "Ouro Preto do Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.74806000", + "longitude": "-62.21583000" + }, + { + "id": "13669", + "name": "Parecis", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.28659000", + "longitude": "-61.31662000" + }, + { + "id": "14124", + "name": "Pôsto Fiscal Rolim de Moura", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.08271000", + "longitude": "-62.27726000" + }, + { + "id": "13845", + "name": "Pimenta Bueno", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.67250000", + "longitude": "-61.19361000" + }, + { + "id": "13847", + "name": "Pimenteiras do Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.01273000", + "longitude": "-61.73762000" + }, + { + "id": "14019", + "name": "Porto Velho", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.20787000", + "longitude": "-64.31064000" + }, + { + "id": "14091", + "name": "Presidente Médici", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.18523000", + "longitude": "-61.94072000" + }, + { + "id": "14102", + "name": "Primavera de Rondônia", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.92939000", + "longitude": "-61.30611000" + }, + { + "id": "14271", + "name": "Rio Crespo", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.71880000", + "longitude": "-62.74641000" + }, + { + "id": "14336", + "name": "Rolim de Moura", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.75260000", + "longitude": "-61.78967000" + }, + { + "id": "14493", + "name": "Santa Luzia d'Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.10467000", + "longitude": "-61.79440000" + }, + { + "id": "14876", + "name": "São Felipe d'Oeste", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.89774000", + "longitude": "-61.47739000" + }, + { + "id": "14893", + "name": "São Francisco do Guaporé", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.38313000", + "longitude": "-63.12648000" + }, + { + "id": "15091", + "name": "São Miguel do Guaporé", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.70783000", + "longitude": "-62.93532000" + }, + { + "id": "14718", + "name": "Seringueiras", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.92491000", + "longitude": "-63.18938000" + }, + { + "id": "15269", + "name": "Teixeirópolis", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.99266000", + "longitude": "-62.24735000" + }, + { + "id": "15302", + "name": "Theobroma", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.10159000", + "longitude": "-62.28094000" + }, + { + "id": "15482", + "name": "Urupá", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.07917000", + "longitude": "-62.38127000" + }, + { + "id": "15494", + "name": "Vale do Anari", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.73244000", + "longitude": "-61.93919000" + }, + { + "id": "15495", + "name": "Vale do Paraíso", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.20652000", + "longitude": "-62.06993000" + }, + { + "id": "15579", + "name": "Vilhena", + "state_id": 2013, + "state_code": "RO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.02062000", + "longitude": "-60.27526000" + }, + { + "id": "10062", + "name": "Abdon Batista", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.58981000", + "longitude": "-51.04023000" + }, + { + "id": "10064", + "name": "Abelardo Luz", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.59825000", + "longitude": "-52.22321000" + }, + { + "id": "10093", + "name": "Agrolândia", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.46387000", + "longitude": "-49.83759000" + }, + { + "id": "10094", + "name": "Agronômica", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.31658000", + "longitude": "-49.73117000" + }, + { + "id": "10134", + "name": "Alfredo Wagner", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.70481000", + "longitude": "-49.34069000" + }, + { + "id": "10166", + "name": "Alto Bela Vista", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.40999000", + "longitude": "-51.93145000" + }, + { + "id": "10241", + "name": "Anchieta", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.52666000", + "longitude": "-53.35459000" + }, + { + "id": "10251", + "name": "Angelina", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.53450000", + "longitude": "-49.08558000" + }, + { + "id": "10264", + "name": "Anita Garibaldi", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.72616000", + "longitude": "-51.05838000" + }, + { + "id": "10265", + "name": "Anitápolis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.90194000", + "longitude": "-49.12861000" + }, + { + "id": "10274", + "name": "Antônio Carlos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.49807000", + "longitude": "-48.83918000" + }, + { + "id": "10296", + "name": "Apiúna", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.10736000", + "longitude": "-49.38129000" + }, + { + "id": "10307", + "name": "Arabutã", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.14142000", + "longitude": "-52.18125000" + }, + { + "id": "10346", + "name": "Araquari", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.46833000", + "longitude": "-48.80083000" + }, + { + "id": "10348", + "name": "Araranguá", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.93954000", + "longitude": "-49.51119000" + }, + { + "id": "10400", + "name": "Armação", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.74963000", + "longitude": "-48.50713000" + }, + { + "id": "10399", + "name": "Armazém", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.22409000", + "longitude": "-49.00779000" + }, + { + "id": "10411", + "name": "Arroio Trinta", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.91617000", + "longitude": "-51.34527000" + }, + { + "id": "10420", + "name": "Arvoredo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.06908000", + "longitude": "-52.44892000" + }, + { + "id": "10423", + "name": "Ascurra", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.98578000", + "longitude": "-49.37084000" + }, + { + "id": "10437", + "name": "Atalanta", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.44296000", + "longitude": "-49.76089000" + }, + { + "id": "10451", + "name": "Aurora", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.33930000", + "longitude": "-49.57823000" + }, + { + "id": "15656", + "name": "Água Doce", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.79693000", + "longitude": "-51.63639000" + }, + { + "id": "15672", + "name": "Águas de Chapecó", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.07229000", + "longitude": "-52.96389000" + }, + { + "id": "15667", + "name": "Águas Frias", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.85757000", + "longitude": "-52.85062000" + }, + { + "id": "15669", + "name": "Águas Mornas", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.74227000", + "longitude": "-48.92023000" + }, + { + "id": "10484", + "name": "Balneário Arroio do Silva", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.00699000", + "longitude": "-49.47849000" + }, + { + "id": "10485", + "name": "Balneário Barra do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.41890000", + "longitude": "-48.65147000" + }, + { + "id": "10486", + "name": "Balneário Camboriú", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.99056000", + "longitude": "-48.63472000" + }, + { + "id": "10487", + "name": "Balneário Gaivota", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.13006000", + "longitude": "-49.61187000" + }, + { + "id": "10489", + "name": "Balneário Piçarras", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.75580000", + "longitude": "-48.76000000" + }, + { + "id": "10490", + "name": "Balneário Rincão", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.82679000", + "longitude": "-49.25425000" + }, + { + "id": "10499", + "name": "Bandeirante", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.76857000", + "longitude": "-53.64907000" + }, + { + "id": "10517", + "name": "Barra Bonita", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.68537000", + "longitude": "-53.41393000" + }, + { + "id": "10521", + "name": "Barra Velha", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.63222000", + "longitude": "-48.68472000" + }, + { + "id": "10601", + "name": "Bela Vista do Toldo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.45944000", + "longitude": "-50.51061000" + }, + { + "id": "10605", + "name": "Belmonte", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.85317000", + "longitude": "-53.61399000" + }, + { + "id": "10624", + "name": "Benedito Novo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.78592000", + "longitude": "-49.43603000" + }, + { + "id": "10648", + "name": "Biguaçu", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.49417000", + "longitude": "-48.65556000" + }, + { + "id": "10656", + "name": "Blumenau", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.91944000", + "longitude": "-49.06611000" + }, + { + "id": "10682", + "name": "Bocaina do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.73891000", + "longitude": "-49.91707000" + }, + { + "id": "10695", + "name": "Bom Jardim da Serra", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.36743000", + "longitude": "-49.64216000" + }, + { + "id": "10702", + "name": "Bom Jesus", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.74082000", + "longitude": "-52.39184000" + }, + { + "id": "10713", + "name": "Bom Jesus do Oeste", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.69047000", + "longitude": "-53.09669000" + }, + { + "id": "10723", + "name": "Bom Retiro", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.76046000", + "longitude": "-49.61964000" + }, + { + "id": "10730", + "name": "Bombinhas", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.17876000", + "longitude": "-48.50195000" + }, + { + "id": "10761", + "name": "Botuverá", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.20456000", + "longitude": "-49.11175000" + }, + { + "id": "10780", + "name": "Braço do Norte", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.27500000", + "longitude": "-49.16556000" + }, + { + "id": "10781", + "name": "Braço do Trombudo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.37888000", + "longitude": "-49.91379000" + }, + { + "id": "10811", + "name": "Brunópolis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.34781000", + "longitude": "-50.83631000" + }, + { + "id": "10812", + "name": "Brusque", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.09795000", + "longitude": "-48.91281000" + }, + { + "id": "11221", + "name": "Caçador", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.77528000", + "longitude": "-51.01500000" + }, + { + "id": "10902", + "name": "Caibi", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.03422000", + "longitude": "-53.27842000" + }, + { + "id": "10930", + "name": "Calmon", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.64037000", + "longitude": "-51.02439000" + }, + { + "id": "10947", + "name": "Camboriú", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.07562000", + "longitude": "-48.71530000" + }, + { + "id": "10969", + "name": "Campinas", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.59444000", + "longitude": "-48.60694000" + }, + { + "id": "10977", + "name": "Campo Alegre", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.08532000", + "longitude": "-49.18746000" + }, + { + "id": "10983", + "name": "Campo Belo do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.83940000", + "longitude": "-50.76583000" + }, + { + "id": "10986", + "name": "Campo Erê", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.45834000", + "longitude": "-53.18257000" + }, + { + "id": "11013", + "name": "Campos Novos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.40167000", + "longitude": "-51.22500000" + }, + { + "id": "11041", + "name": "Canelinha", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.24874000", + "longitude": "-48.78781000" + }, + { + "id": "11050", + "name": "Canoinhas", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.17722000", + "longitude": "-50.39000000" + }, + { + "id": "11095", + "name": "Capão Alto", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.06834000", + "longitude": "-50.62921000" + }, + { + "id": "11076", + "name": "Capinzal", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.34361000", + "longitude": "-51.61194000" + }, + { + "id": "11089", + "name": "Capivari de Baixo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.45237000", + "longitude": "-48.95364000" + }, + { + "id": "11128", + "name": "Carianos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.66088000", + "longitude": "-48.54318000" + }, + { + "id": "11170", + "name": "Carvoeira", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.59898000", + "longitude": "-48.52618000" + }, + { + "id": "11197", + "name": "Catanduvas", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.05390000", + "longitude": "-51.72395000" + }, + { + "id": "11217", + "name": "Caxambu do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.13095000", + "longitude": "-52.91856000" + }, + { + "id": "11234", + "name": "Celso Ramos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.63444000", + "longitude": "-51.33639000" + }, + { + "id": "11255", + "name": "Cerro Negro", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.77270000", + "longitude": "-50.94035000" + }, + { + "id": "11267", + "name": "Chapadão do Lageado", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.58487000", + "longitude": "-49.55644000" + }, + { + "id": "11269", + "name": "Chapecó", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.09639000", + "longitude": "-52.61833000" + }, + { + "id": "11305", + "name": "Cocal", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.60321000", + "longitude": "-49.32767000" + }, + { + "id": "11308", + "name": "Cocal do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.59988000", + "longitude": "-49.32582000" + }, + { + "id": "11367", + "name": "Concórdia", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.22936000", + "longitude": "-52.00106000" + }, + { + "id": "11402", + "name": "Cordilheira Alta", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.97554000", + "longitude": "-52.63305000" + }, + { + "id": "11420", + "name": "Coronel Freitas", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.89431000", + "longitude": "-52.76329000" + }, + { + "id": "11425", + "name": "Coronel Martins", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.54773000", + "longitude": "-52.67392000" + }, + { + "id": "11432", + "name": "Corrego Grande", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.60141000", + "longitude": "-48.50593000" + }, + { + "id": "11433", + "name": "Correia Pinto", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.58472000", + "longitude": "-50.36111000" + }, + { + "id": "11444", + "name": "Corupá", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.42528000", + "longitude": "-49.24306000" + }, + { + "id": "11450", + "name": "Costeira do Pirajubae", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.63586000", + "longitude": "-48.52120000" + }, + { + "id": "11465", + "name": "Criciúma", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.67750000", + "longitude": "-49.36972000" + }, + { + "id": "11517", + "name": "Cunha Porã", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.86612000", + "longitude": "-53.21020000" + }, + { + "id": "11518", + "name": "Cunhataí", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.97742000", + "longitude": "-53.10785000" + }, + { + "id": "11525", + "name": "Curitibanos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.27414000", + "longitude": "-50.60962000" + }, + { + "id": "11577", + "name": "Descanso", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.87384000", + "longitude": "-53.48415000" + }, + { + "id": "11595", + "name": "Dionísio Cerqueira", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.33340000", + "longitude": "-53.53403000" + }, + { + "id": "11639", + "name": "Dona Emma", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.97694000", + "longitude": "-49.81076000" + }, + { + "id": "11657", + "name": "Doutor Pedrinho", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.71142000", + "longitude": "-49.55827000" + }, + { + "id": "11706", + "name": "Entre Rios", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.73140000", + "longitude": "-52.59697000" + }, + { + "id": "11718", + "name": "Ermo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.97440000", + "longitude": "-49.64940000" + }, + { + "id": "11722", + "name": "Erval Velho", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.29027000", + "longitude": "-51.38648000" + }, + { + "id": "11783", + "name": "Faxinal dos Guedes", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.83150000", + "longitude": "-52.26214000" + }, + { + "id": "11826", + "name": "Flor do Sertão", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.75638000", + "longitude": "-53.33675000" + }, + { + "id": "11843", + "name": "Florianópolis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.59667000", + "longitude": "-48.54917000" + }, + { + "id": "11856", + "name": "Formosa do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.64697000", + "longitude": "-52.80427000" + }, + { + "id": "11862", + "name": "Forquilhinha", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.74750000", + "longitude": "-49.47222000" + }, + { + "id": "11873", + "name": "Fraiburgo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.04790000", + "longitude": "-50.80694000" + }, + { + "id": "11890", + "name": "Freguesia do Ribeirao da Ilha", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.71773000", + "longitude": "-48.56266000" + }, + { + "id": "11897", + "name": "Frei Rogério", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.21783000", + "longitude": "-50.77022000" + }, + { + "id": "11914", + "name": "Galvão", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.45882000", + "longitude": "-52.68535000" + }, + { + "id": "11922", + "name": "Garopaba", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.02744000", + "longitude": "-48.61450000" + }, + { + "id": "11925", + "name": "Garuva", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.06047000", + "longitude": "-48.87082000" + }, + { + "id": "11927", + "name": "Gaspar", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.93139000", + "longitude": "-48.95889000" + }, + { + "id": "11979", + "name": "Governador Celso Ramos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.37201000", + "longitude": "-48.57908000" + }, + { + "id": "12000", + "name": "Gravatal", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.31534000", + "longitude": "-49.04351000" + }, + { + "id": "12009", + "name": "Grão Pará", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.13580000", + "longitude": "-49.31612000" + }, + { + "id": "12012", + "name": "Guabiruba", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.11189000", + "longitude": "-49.02215000" + }, + { + "id": "12038", + "name": "Guaraciaba", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.57386000", + "longitude": "-53.59786000" + }, + { + "id": "12042", + "name": "Guaramirim", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.47306000", + "longitude": "-49.00278000" + }, + { + "id": "12069", + "name": "Guarujá do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.40561000", + "longitude": "-53.47207000" + }, + { + "id": "12072", + "name": "Guatambú", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.11045000", + "longitude": "-52.78938000" + }, + { + "id": "12098", + "name": "Herval d'Oeste", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.20408000", + "longitude": "-51.42029000" + }, + { + "id": "12506", + "name": "Içara", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.71333000", + "longitude": "-49.30000000" + }, + { + "id": "12128", + "name": "Ibiam", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.20944000", + "longitude": "-51.22230000" + }, + { + "id": "12135", + "name": "Ibicaré", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.09743000", + "longitude": "-51.37144000" + }, + { + "id": "12148", + "name": "Ibirama", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.05694000", + "longitude": "-49.51778000" + }, + { + "id": "12213", + "name": "Ilhota", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.85404000", + "longitude": "-48.88648000" + }, + { + "id": "12218", + "name": "Imaruí", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.19624000", + "longitude": "-48.82316000" + }, + { + "id": "12220", + "name": "Imbituba", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.24000000", + "longitude": "-48.67028000" + }, + { + "id": "12222", + "name": "Imbuia", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.51118000", + "longitude": "-49.40656000" + }, + { + "id": "12232", + "name": "Indaial", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.89778000", + "longitude": "-49.23167000" + }, + { + "id": "12258", + "name": "Iomerê", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.98588000", + "longitude": "-51.26049000" + }, + { + "id": "12274", + "name": "Ipira", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.38715000", + "longitude": "-51.79708000" + }, + { + "id": "12287", + "name": "Iporã do Oeste", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.99157000", + "longitude": "-53.49023000" + }, + { + "id": "12289", + "name": "Ipuaçu", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.67076000", + "longitude": "-52.48261000" + }, + { + "id": "12296", + "name": "Ipumirim", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.04778000", + "longitude": "-52.14024000" + }, + { + "id": "12302", + "name": "Iraceminha", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.85495000", + "longitude": "-53.31848000" + }, + { + "id": "12307", + "name": "Irani", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.03626000", + "longitude": "-51.91783000" + }, + { + "id": "12313", + "name": "Irati", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.64113000", + "longitude": "-52.89959000" + }, + { + "id": "12319", + "name": "Irineópolis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.33324000", + "longitude": "-50.78333000" + }, + { + "id": "12343", + "name": "Itacorubi", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.58315000", + "longitude": "-48.49503000" + }, + { + "id": "12365", + "name": "Itaiópolis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.47612000", + "longitude": "-49.90456000" + }, + { + "id": "12366", + "name": "Itajaí", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.90778000", + "longitude": "-48.66194000" + }, + { + "id": "12408", + "name": "Itapema", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.10715000", + "longitude": "-48.62440000" + }, + { + "id": "12422", + "name": "Itapiranga", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.10055000", + "longitude": "-53.72164000" + }, + { + "id": "12435", + "name": "Itapoá", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.04546000", + "longitude": "-48.66869000" + }, + { + "id": "12495", + "name": "Itá", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.24410000", + "longitude": "-52.33213000" + }, + { + "id": "12491", + "name": "Ituporanga", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.48272000", + "longitude": "-49.49128000" + }, + { + "id": "12512", + "name": "Jaborá", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.12846000", + "longitude": "-51.79869000" + }, + { + "id": "12526", + "name": "Jacinto Machado", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.01184000", + "longitude": "-49.88785000" + }, + { + "id": "12548", + "name": "Jaguaruna", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.62145000", + "longitude": "-49.02529000" + }, + { + "id": "12581", + "name": "Jaraguá do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.48611000", + "longitude": "-49.06667000" + }, + { + "id": "12593", + "name": "Jardinópolis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.73553000", + "longitude": "-52.89460000" + }, + { + "id": "12641", + "name": "Joaçaba", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.17806000", + "longitude": "-51.50472000" + }, + { + "id": "12645", + "name": "Joinville", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.30444000", + "longitude": "-48.84556000" + }, + { + "id": "12650", + "name": "José Boiteux", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.83852000", + "longitude": "-49.64618000" + }, + { + "id": "12691", + "name": "Jupiá", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.41103000", + "longitude": "-52.73097000" + }, + { + "id": "12721", + "name": "Lacerdópolis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.25354000", + "longitude": "-51.58504000" + }, + { + "id": "12727", + "name": "Lages", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.81611000", + "longitude": "-50.32611000" + }, + { + "id": "12732", + "name": "Lagoa", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.60491000", + "longitude": "-48.46713000" + }, + { + "id": "12771", + "name": "Laguna", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.48250000", + "longitude": "-48.78083000" + }, + { + "id": "12777", + "name": "Lajeado Grande", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.85054000", + "longitude": "-52.54065000" + }, + { + "id": "12803", + "name": "Laurentino", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.20853000", + "longitude": "-49.73411000" + }, + { + "id": "12805", + "name": "Lauro Müller", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.38538000", + "longitude": "-49.46723000" + }, + { + "id": "12804", + "name": "Lauro Muller", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.39278000", + "longitude": "-49.39667000" + }, + { + "id": "12814", + "name": "Lebon Régis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.88524000", + "longitude": "-50.67811000" + }, + { + "id": "12819", + "name": "Leoberto Leal", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.48804000", + "longitude": "-49.25121000" + }, + { + "id": "12838", + "name": "Lindóia do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.03246000", + "longitude": "-52.04059000" + }, + { + "id": "12851", + "name": "Lontras", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.17928000", + "longitude": "-49.49924000" + }, + { + "id": "12865", + "name": "Luiz Alves", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.73625000", + "longitude": "-48.88531000" + }, + { + "id": "12874", + "name": "Luzerna", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.07656000", + "longitude": "-51.49348000" + }, + { + "id": "12902", + "name": "Macieira", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.81070000", + "longitude": "-51.34343000" + }, + { + "id": "12910", + "name": "Mafra", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.11139000", + "longitude": "-49.80528000" + }, + { + "id": "12920", + "name": "Major Gercino", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.42331000", + "longitude": "-49.05744000" + }, + { + "id": "12923", + "name": "Major Vieira", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.49482000", + "longitude": "-50.32712000" + }, + { + "id": "12967", + "name": "Maracajá", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.85185000", + "longitude": "-49.46443000" + }, + { + "id": "12986", + "name": "Maravilha", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.75798000", + "longitude": "-53.18283000" + }, + { + "id": "13002", + "name": "Marema", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.79773000", + "longitude": "-52.62047000" + }, + { + "id": "13044", + "name": "Massaranduba", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.61983000", + "longitude": "-48.98214000" + }, + { + "id": "13070", + "name": "Matos Costa", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.48360000", + "longitude": "-51.16293000" + }, + { + "id": "13095", + "name": "Meleiro", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.85788000", + "longitude": "-49.59973000" + }, + { + "id": "13155", + "name": "Mirim Doce", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.17316000", + "longitude": "-50.18872000" + }, + { + "id": "13161", + "name": "Modelo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.77290000", + "longitude": "-53.05042000" + }, + { + "id": "13174", + "name": "Mondaí", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.08404000", + "longitude": "-53.43972000" + }, + { + "id": "13200", + "name": "Monte Carlo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.18677000", + "longitude": "-50.92110000" + }, + { + "id": "13203", + "name": "Monte Castelo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.61655000", + "longitude": "-50.28851000" + }, + { + "id": "13245", + "name": "Morro da Cruz", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.58490000", + "longitude": "-48.53562000" + }, + { + "id": "13246", + "name": "Morro da Fumaça", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.65083000", + "longitude": "-49.21000000" + }, + { + "id": "13242", + "name": "Morro Grande", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.72547000", + "longitude": "-49.74789000" + }, + { + "id": "13306", + "name": "Navegantes", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.89889000", + "longitude": "-48.65417000" + }, + { + "id": "13373", + "name": "Nova Erechim", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.91297000", + "longitude": "-52.89851000" + }, + { + "id": "13394", + "name": "Nova Itaberaba", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.93156000", + "longitude": "-52.84006000" + }, + { + "id": "13440", + "name": "Nova Trento", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.30470000", + "longitude": "-49.04260000" + }, + { + "id": "13444", + "name": "Nova Veneza", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.70447000", + "longitude": "-49.58779000" + }, + { + "id": "13462", + "name": "Novo Horizonte", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.49656000", + "longitude": "-52.78100000" + }, + { + "id": "13521", + "name": "Orleans", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.30008000", + "longitude": "-49.35423000" + }, + { + "id": "13531", + "name": "Otacílio Costa", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.48306000", + "longitude": "-50.12194000" + }, + { + "id": "13537", + "name": "Ouro", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.28699000", + "longitude": "-51.68164000" + }, + { + "id": "13546", + "name": "Ouro Verde", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.73257000", + "longitude": "-52.27153000" + }, + { + "id": "13567", + "name": "Paial", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.20297000", + "longitude": "-52.47551000" + }, + { + "id": "13570", + "name": "Painel", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.97471000", + "longitude": "-50.05976000" + }, + { + "id": "13580", + "name": "Palhoça", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.64528000", + "longitude": "-48.66778000" + }, + { + "id": "13582", + "name": "Palma Sola", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.39154000", + "longitude": "-53.33171000" + }, + { + "id": "13590", + "name": "Palmeira", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.55649000", + "longitude": "-50.16497000" + }, + { + "id": "13608", + "name": "Palmitos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.08066000", + "longitude": "-53.17812000" + }, + { + "id": "13617", + "name": "Pantanal", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.60985000", + "longitude": "-48.51648000" + }, + { + "id": "13619", + "name": "Pantano do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.77972000", + "longitude": "-48.50861000" + }, + { + "id": "13621", + "name": "Papanduva", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.47628000", + "longitude": "-50.17467000" + }, + { + "id": "13660", + "name": "Paraíso", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.66872000", + "longitude": "-53.68550000" + }, + { + "id": "13698", + "name": "Passo de Torres", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.29393000", + "longitude": "-49.74094000" + }, + { + "id": "13701", + "name": "Passos Maia", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.70774000", + "longitude": "-51.94716000" + }, + { + "id": "13735", + "name": "Paulo Lopes", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.94684000", + "longitude": "-48.74058000" + }, + { + "id": "13763", + "name": "Pedras Grandes", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.48270000", + "longitude": "-49.22027000" + }, + { + "id": "13796", + "name": "Penha", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.80226000", + "longitude": "-48.62710000" + }, + { + "id": "13810", + "name": "Peritiba", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.34845000", + "longitude": "-51.88687000" + }, + { + "id": "13820", + "name": "Petrolândia", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.53735000", + "longitude": "-49.67274000" + }, + { + "id": "13864", + "name": "Pinhalzinho", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.81930000", + "longitude": "-52.97639000" + }, + { + "id": "13870", + "name": "Pinheiro Preto", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.05458000", + "longitude": "-51.22708000" + }, + { + "id": "13909", + "name": "Piratuba", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.45623000", + "longitude": "-51.77474000" + }, + { + "id": "13941", + "name": "Planalto Alegre", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.07348000", + "longitude": "-52.85503000" + }, + { + "id": "13953", + "name": "Pomerode", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.72404000", + "longitude": "-49.16897000" + }, + { + "id": "13965", + "name": "Ponte Alta", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.42574000", + "longitude": "-50.29365000" + }, + { + "id": "13967", + "name": "Ponte Alta do Norte", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.18129000", + "longitude": "-50.43580000" + }, + { + "id": "13972", + "name": "Ponte Serrada", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.86053000", + "longitude": "-51.91066000" + }, + { + "id": "14000", + "name": "Porto Belo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.15778000", + "longitude": "-48.55306000" + }, + { + "id": "14018", + "name": "Porto União", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.23806000", + "longitude": "-51.07833000" + }, + { + "id": "14041", + "name": "Pouso Redondo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.30394000", + "longitude": "-49.98473000" + }, + { + "id": "14064", + "name": "Praia Grande", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.20318000", + "longitude": "-50.03412000" + }, + { + "id": "14077", + "name": "Presidente Castello Branco", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.23647000", + "longitude": "-51.77999000" + }, + { + "id": "14083", + "name": "Presidente Getúlio", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.06188000", + "longitude": "-49.71403000" + }, + { + "id": "14093", + "name": "Presidente Nereu", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.26320000", + "longitude": "-49.32267000" + }, + { + "id": "14106", + "name": "Princesa", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.43219000", + "longitude": "-53.62477000" + }, + { + "id": "14149", + "name": "Quilombo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.72644000", + "longitude": "-52.67673000" + }, + { + "id": "14173", + "name": "Rancho Queimado", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.70731000", + "longitude": "-49.07164000" + }, + { + "id": "14202", + "name": "Residencia Moacir PU5BHV", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.90967000", + "longitude": "-49.36547000" + }, + { + "id": "14246", + "name": "Ribeirão da Ilha", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.69934000", + "longitude": "-48.53219000" + }, + { + "id": "14304", + "name": "Rio das Antas", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.90733000", + "longitude": "-51.02961000" + }, + { + "id": "14311", + "name": "Rio do Campo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.86090000", + "longitude": "-50.11202000" + }, + { + "id": "14313", + "name": "Rio do Oeste", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.14870000", + "longitude": "-49.84549000" + }, + { + "id": "14316", + "name": "Rio do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.21417000", + "longitude": "-49.64306000" + }, + { + "id": "14318", + "name": "Rio dos Cedros", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.61087000", + "longitude": "-49.37226000" + }, + { + "id": "14275", + "name": "Rio Fortuna", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.08443000", + "longitude": "-49.20120000" + }, + { + "id": "14282", + "name": "Rio Negrinho", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.25444000", + "longitude": "-49.51833000" + }, + { + "id": "14296", + "name": "Rio Rufino", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.95567000", + "longitude": "-49.77920000" + }, + { + "id": "14298", + "name": "Rio Tavares", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.64529000", + "longitude": "-48.47486000" + }, + { + "id": "14322", + "name": "Riqueza", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.98193000", + "longitude": "-53.33956000" + }, + { + "id": "14328", + "name": "Rodeio", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.92278000", + "longitude": "-49.36639000" + }, + { + "id": "14339", + "name": "Romelândia", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.67239000", + "longitude": "-53.31093000" + }, + { + "id": "14371", + "name": "Saco dos Limoes", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.60864000", + "longitude": "-48.53605000" + }, + { + "id": "14380", + "name": "Salete", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.93760000", + "longitude": "-49.99718000" + }, + { + "id": "14394", + "name": "Saltinho", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.58366000", + "longitude": "-53.02568000" + }, + { + "id": "14397", + "name": "Salto Veloso", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.90818000", + "longitude": "-51.41468000" + }, + { + "id": "14414", + "name": "Sangão", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.67007000", + "longitude": "-49.12209000" + }, + { + "id": "14432", + "name": "Santa Cecília", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.96083000", + "longitude": "-50.42694000" + }, + { + "id": "14473", + "name": "Santa Helena", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.92350000", + "longitude": "-53.60898000" + }, + { + "id": "14520", + "name": "Santa Monica", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.59137000", + "longitude": "-48.50756000" + }, + { + "id": "14544", + "name": "Santa Rosa de Lima", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.01252000", + "longitude": "-49.18941000" + }, + { + "id": "14548", + "name": "Santa Rosa do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.09751000", + "longitude": "-49.73510000" + }, + { + "id": "14559", + "name": "Santa Terezinha", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.66961000", + "longitude": "-50.01340000" + }, + { + "id": "14563", + "name": "Santa Terezinha do Progresso", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.59871000", + "longitude": "-53.18418000" + }, + { + "id": "14601", + "name": "Santiago do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.63060000", + "longitude": "-52.67466000" + }, + { + "id": "14604", + "name": "Santo Amaro da Imperatriz", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.68806000", + "longitude": "-48.77861000" + }, + { + "id": "14677", + "name": "Saudades", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.87900000", + "longitude": "-53.04038000" + }, + { + "id": "14840", + "name": "São Bento do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.25028000", + "longitude": "-49.37861000" + }, + { + "id": "14844", + "name": "São Bernardino", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.46259000", + "longitude": "-52.96921000" + }, + { + "id": "14847", + "name": "São Bonifácio", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.95656000", + "longitude": "-48.93970000" + }, + { + "id": "14856", + "name": "São Carlos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.04450000", + "longitude": "-53.03549000" + }, + { + "id": "14859", + "name": "São Cristóvão do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.26707000", + "longitude": "-50.37731000" + }, + { + "id": "14864", + "name": "São Domingos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.56428000", + "longitude": "-52.55695000" + }, + { + "id": "14898", + "name": "São Francisco do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.24333000", + "longitude": "-48.63806000" + }, + { + "id": "14930", + "name": "São Joaquim", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.29389000", + "longitude": "-49.93167000" + }, + { + "id": "15001", + "name": "São João Batista", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.27611000", + "longitude": "-48.84944000" + }, + { + "id": "15029", + "name": "São João do Itaperiú", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.60265000", + "longitude": "-48.80051000" + }, + { + "id": "15034", + "name": "São João do Oeste", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.08310000", + "longitude": "-53.59218000" + }, + { + "id": "15045", + "name": "São João do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.20713000", + "longitude": "-49.85103000" + }, + { + "id": "14938", + "name": "São José", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.21171000", + "longitude": "-49.16320000" + }, + { + "id": "14966", + "name": "São José do Cedro", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.48127000", + "longitude": "-53.56285000" + }, + { + "id": "14967", + "name": "São José do Cerrito", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.60401000", + "longitude": "-50.65663000" + }, + { + "id": "15055", + "name": "São Lourenço do Oeste", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.35917000", + "longitude": "-52.85111000" + }, + { + "id": "15058", + "name": "São Ludgero", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.34254000", + "longitude": "-49.17537000" + }, + { + "id": "15073", + "name": "São Martinho", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.10511000", + "longitude": "-48.98564000" + }, + { + "id": "15081", + "name": "São Miguel da Boa Vista", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.68603000", + "longitude": "-53.25718000" + }, + { + "id": "15093", + "name": "São Miguel do Oeste", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.71868000", + "longitude": "-53.51940000" + }, + { + "id": "15114", + "name": "São Pedro de Alcântara", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.57276000", + "longitude": "-48.83917000" + }, + { + "id": "14679", + "name": "Schroeder", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.41250000", + "longitude": "-49.07306000" + }, + { + "id": "14681", + "name": "Seara", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.14478000", + "longitude": "-52.34857000" + }, + { + "id": "14722", + "name": "Serra Alta", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.70236000", + "longitude": "-53.01399000" + }, + { + "id": "14772", + "name": "Siderópolis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.59778000", + "longitude": "-49.42444000" + }, + { + "id": "14808", + "name": "Sombrio", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-29.11389000", + "longitude": "-49.61667000" + }, + { + "id": "14821", + "name": "Sul Brasil", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.70686000", + "longitude": "-52.94355000" + }, + { + "id": "15205", + "name": "Taió", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.08902000", + "longitude": "-50.09933000" + }, + { + "id": "15216", + "name": "Tangará", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.12587000", + "longitude": "-51.09938000" + }, + { + "id": "15228", + "name": "Tapera", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.68528000", + "longitude": "-48.55124000" + }, + { + "id": "15308", + "name": "Tigrinhos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.66573000", + "longitude": "-53.16125000" + }, + { + "id": "15309", + "name": "Tijucas", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.24701000", + "longitude": "-48.71619000" + }, + { + "id": "15315", + "name": "Timbé do Sul", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.79089000", + "longitude": "-49.89509000" + }, + { + "id": "15316", + "name": "Timbó", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.82056000", + "longitude": "-49.28734000" + }, + { + "id": "15317", + "name": "Timbó Grande", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.62458000", + "longitude": "-50.63553000" + }, + { + "id": "15370", + "name": "Três Barras", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.16511000", + "longitude": "-50.27142000" + }, + { + "id": "15355", + "name": "Treviso", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.49941000", + "longitude": "-49.50360000" + }, + { + "id": "15357", + "name": "Treze de Maio", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.53919000", + "longitude": "-49.14504000" + }, + { + "id": "15356", + "name": "Treze Tílias", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.95726000", + "longitude": "-51.43183000" + }, + { + "id": "15359", + "name": "Trindade", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.58612000", + "longitude": "-48.52335000" + }, + { + "id": "15368", + "name": "Trombudo Central", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.30803000", + "longitude": "-49.81251000" + }, + { + "id": "15385", + "name": "Tubarão", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.46667000", + "longitude": "-49.00694000" + }, + { + "id": "15397", + "name": "Tunápolis", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.99245000", + "longitude": "-53.65618000" + }, + { + "id": "15419", + "name": "Turvo", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.89831000", + "longitude": "-49.68268000" + }, + { + "id": "15461", + "name": "União do Oeste", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.79980000", + "longitude": "-52.89258000" + }, + { + "id": "15473", + "name": "Urubici", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.04998000", + "longitude": "-49.57417000" + }, + { + "id": "15481", + "name": "Urupema", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.04160000", + "longitude": "-49.92971000" + }, + { + "id": "15484", + "name": "Urussanga", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-28.47460000", + "longitude": "-49.31252000" + }, + { + "id": "15516", + "name": "Vargeão", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.84426000", + "longitude": "-52.15332000" + }, + { + "id": "15507", + "name": "Vargem", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.45675000", + "longitude": "-50.95789000" + }, + { + "id": "15511", + "name": "Vargem Bonita", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.93296000", + "longitude": "-51.74642000" + }, + { + "id": "15560", + "name": "Vidal Ramos", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.38973000", + "longitude": "-49.33820000" + }, + { + "id": "15561", + "name": "Videira", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.03437000", + "longitude": "-51.10156000" + }, + { + "id": "15594", + "name": "Vitor Meireles", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.82672000", + "longitude": "-49.85522000" + }, + { + "id": "15632", + "name": "Witmarsum", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.95010000", + "longitude": "-49.85590000" + }, + { + "id": "15636", + "name": "Xanxerê", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.86668000", + "longitude": "-52.41490000" + }, + { + "id": "15638", + "name": "Xavantina", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.98819000", + "longitude": "-52.32905000" + }, + { + "id": "15639", + "name": "Xaxim", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-26.98685000", + "longitude": "-52.51611000" + }, + { + "id": "15646", + "name": "Zortéa", + "state_id": 2014, + "state_code": "SC", + "country_id": 31, + "country_code": "BR", + "latitude": "-27.49740000", + "longitude": "-51.50863000" + }, + { + "id": "10080", + "name": "Adamantina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.59136000", + "longitude": "-51.06669000" + }, + { + "id": "10082", + "name": "Adolfo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.28535000", + "longitude": "-49.65497000" + }, + { + "id": "10096", + "name": "Aguaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.02590000", + "longitude": "-47.06702000" + }, + { + "id": "10098", + "name": "Agudos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.58942000", + "longitude": "-49.16164000" + }, + { + "id": "10114", + "name": "Alambari", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.53745000", + "longitude": "-47.86273000" + }, + { + "id": "10132", + "name": "Alfredo Marcondes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.92954000", + "longitude": "-51.39519000" + }, + { + "id": "10152", + "name": "Altair", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.53889000", + "longitude": "-49.10219000" + }, + { + "id": "10159", + "name": "Altinópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.00412000", + "longitude": "-47.39795000" + }, + { + "id": "10160", + "name": "Alto Alegre", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.63149000", + "longitude": "-50.19601000" + }, + { + "id": "10189", + "name": "Alumínio", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.52259000", + "longitude": "-47.28373000" + }, + { + "id": "10192", + "name": "Alvinlândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.45669000", + "longitude": "-49.76243000" + }, + { + "id": "10225", + "name": "Américo Brasiliense", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.71797000", + "longitude": "-48.01568000" + }, + { + "id": "10226", + "name": "Américo de Campos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.27453000", + "longitude": "-49.75539000" + }, + { + "id": "10213", + "name": "Americana", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.71408000", + "longitude": "-47.29009000" + }, + { + "id": "10218", + "name": "Amparo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.70111000", + "longitude": "-46.76444000" + }, + { + "id": "10232", + "name": "Analândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.12002000", + "longitude": "-47.68938000" + }, + { + "id": "10246", + "name": "Andradina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.86545000", + "longitude": "-51.31567000" + }, + { + "id": "10249", + "name": "Angatuba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.47450000", + "longitude": "-48.42565000" + }, + { + "id": "10261", + "name": "Anhembi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.83293000", + "longitude": "-48.16384000" + }, + { + "id": "10262", + "name": "Anhumas", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.34571000", + "longitude": "-51.42761000" + }, + { + "id": "10285", + "name": "Aparecida", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.90434000", + "longitude": "-45.23562000" + }, + { + "id": "10286", + "name": "Aparecida d'Oeste", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.48414000", + "longitude": "-50.91883000" + }, + { + "id": "10294", + "name": "Apiaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.39767000", + "longitude": "-48.82237000" + }, + { + "id": "10367", + "name": "Araçariguama", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.42294000", + "longitude": "-47.07816000" + }, + { + "id": "10368", + "name": "Araçatuba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.14986000", + "longitude": "-50.57470000" + }, + { + "id": "10371", + "name": "Araçoiaba da Serra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.56602000", + "longitude": "-47.66733000" + }, + { + "id": "10333", + "name": "Aramina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.16724000", + "longitude": "-47.82645000" + }, + { + "id": "10334", + "name": "Arandu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.17065000", + "longitude": "-49.05861000" + }, + { + "id": "10336", + "name": "Arapeí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.66504000", + "longitude": "-44.43858000" + }, + { + "id": "10349", + "name": "Araraquara", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.79444000", + "longitude": "-48.17556000" + }, + { + "id": "10350", + "name": "Araras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.35694000", + "longitude": "-47.38417000" + }, + { + "id": "10377", + "name": "Arco-Íris", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.74342000", + "longitude": "-50.42979000" + }, + { + "id": "10382", + "name": "Arealva", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.06881000", + "longitude": "-48.99294000" + }, + { + "id": "10388", + "name": "Areias", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.66811000", + "longitude": "-44.71651000" + }, + { + "id": "10389", + "name": "Areiópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.60627000", + "longitude": "-48.65273000" + }, + { + "id": "10397", + "name": "Ariranha", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.17685000", + "longitude": "-48.77771000" + }, + { + "id": "10417", + "name": "Artur Nogueira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.57306000", + "longitude": "-47.17250000" + }, + { + "id": "10419", + "name": "Arujá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.39611000", + "longitude": "-46.32083000" + }, + { + "id": "10424", + "name": "Aspásia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.18385000", + "longitude": "-50.73117000" + }, + { + "id": "10427", + "name": "Assis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.66167000", + "longitude": "-50.41222000" + }, + { + "id": "10439", + "name": "Atibaia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.13099000", + "longitude": "-46.58896000" + }, + { + "id": "10448", + "name": "Auriflama", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.68556000", + "longitude": "-50.55472000" + }, + { + "id": "10457", + "name": "Avaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.17789000", + "longitude": "-49.30511000" + }, + { + "id": "10455", + "name": "Avanhandava", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.46596000", + "longitude": "-49.94791000" + }, + { + "id": "10456", + "name": "Avaré", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.03402000", + "longitude": "-48.88802000" + }, + { + "id": "15671", + "name": "Águas da Prata", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.91623000", + "longitude": "-46.68666000" + }, + { + "id": "15673", + "name": "Águas de Lindóia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.47639000", + "longitude": "-46.63278000" + }, + { + "id": "15674", + "name": "Águas de Santa Bárbara", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.85764000", + "longitude": "-49.25362000" + }, + { + "id": "15675", + "name": "Águas de São Pedro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.60238000", + "longitude": "-47.87481000" + }, + { + "id": "15677", + "name": "Álvares Florence", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.27757000", + "longitude": "-49.91405000" + }, + { + "id": "15678", + "name": "Álvares Machado", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.07944000", + "longitude": "-51.47194000" + }, + { + "id": "15679", + "name": "Álvaro de Carvalho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.08676000", + "longitude": "-49.73512000" + }, + { + "id": "15684", + "name": "Óleo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.94964000", + "longitude": "-49.38996000" + }, + { + "id": "10471", + "name": "Bady Bassitt", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.91806000", + "longitude": "-49.44528000" + }, + { + "id": "10481", + "name": "Balbinos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.90089000", + "longitude": "-49.33509000" + }, + { + "id": "10495", + "name": "Bananal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73751000", + "longitude": "-44.33413000" + }, + { + "id": "10571", + "name": "Barão de Antonina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.57097000", + "longitude": "-49.56660000" + }, + { + "id": "10509", + "name": "Barbosa", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.29619000", + "longitude": "-49.92293000" + }, + { + "id": "10514", + "name": "Bariri", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.07444000", + "longitude": "-48.74028000" + }, + { + "id": "10516", + "name": "Barra Bonita", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.49472000", + "longitude": "-48.55806000" + }, + { + "id": "10532", + "name": "Barra do Chapéu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.44047000", + "longitude": "-49.08615000" + }, + { + "id": "10545", + "name": "Barra do Turvo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.89045000", + "longitude": "-48.40790000" + }, + { + "id": "10557", + "name": "Barretos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.55722000", + "longitude": "-48.56778000" + }, + { + "id": "10558", + "name": "Barrinha", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.19361000", + "longitude": "-48.16389000" + }, + { + "id": "10569", + "name": "Barueri", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.51056000", + "longitude": "-46.87611000" + }, + { + "id": "10578", + "name": "Bastos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.92194000", + "longitude": "-50.73389000" + }, + { + "id": "10583", + "name": "Batatais", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.83515000", + "longitude": "-47.56742000" + }, + { + "id": "10586", + "name": "Bauru", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.31472000", + "longitude": "-49.06056000" + }, + { + "id": "10840", + "name": "Bálsamo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.70239000", + "longitude": "-49.55045000" + }, + { + "id": "10590", + "name": "Bebedouro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.94944000", + "longitude": "-48.47917000" + }, + { + "id": "10630", + "name": "Bento de Abreu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.34057000", + "longitude": "-50.86542000" + }, + { + "id": "10635", + "name": "Bernardino de Campos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.02698000", + "longitude": "-49.49277000" + }, + { + "id": "10638", + "name": "Bertioga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.85444000", + "longitude": "-46.13861000" + }, + { + "id": "10649", + "name": "Bilac", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.42076000", + "longitude": "-50.47862000" + }, + { + "id": "10651", + "name": "Birigui", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.28861000", + "longitude": "-50.34000000" + }, + { + "id": "10652", + "name": "Biritiba Mirim", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.57250000", + "longitude": "-46.03861000" + }, + { + "id": "10653", + "name": "Biritiba-Mirim", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.62009000", + "longitude": "-46.01938000" + }, + { + "id": "10661", + "name": "Boa Esperança do Sul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.99250000", + "longitude": "-48.39083000" + }, + { + "id": "10680", + "name": "Bocaina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.09830000", + "longitude": "-48.51952000" + }, + { + "id": "10688", + "name": "Bofete", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.12244000", + "longitude": "-48.28058000" + }, + { + "id": "10689", + "name": "Boituva", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.28333000", + "longitude": "-47.67222000" + }, + { + "id": "10717", + "name": "Bom Jesus dos Perdões", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.13500000", + "longitude": "-46.46528000" + }, + { + "id": "10728", + "name": "Bom Sucesso de Itararé", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.31225000", + "longitude": "-49.16700000" + }, + { + "id": "10748", + "name": "Boracéia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.19306000", + "longitude": "-48.77889000" + }, + { + "id": "10755", + "name": "Borá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.23881000", + "longitude": "-50.49252000" + }, + { + "id": "10750", + "name": "Borborema", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.61972000", + "longitude": "-49.07361000" + }, + { + "id": "10753", + "name": "Borebi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.67635000", + "longitude": "-48.98476000" + }, + { + "id": "10758", + "name": "Botucatu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.88583000", + "longitude": "-48.44500000" + }, + { + "id": "10782", + "name": "Braúna", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.56582000", + "longitude": "-50.35227000" + }, + { + "id": "10766", + "name": "Bragança Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.95270000", + "longitude": "-46.54418000" + }, + { + "id": "10789", + "name": "Brejo Alegre", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.17757000", + "longitude": "-50.21805000" + }, + { + "id": "10806", + "name": "Brodósqui", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.99139000", + "longitude": "-47.65861000" + }, + { + "id": "10805", + "name": "Brodowski", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.05060000", + "longitude": "-47.61728000" + }, + { + "id": "10807", + "name": "Brotas", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.27942000", + "longitude": "-48.08744000" + }, + { + "id": "10821", + "name": "Buri", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.79750000", + "longitude": "-48.59278000" + }, + { + "id": "10822", + "name": "Buritama", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.06611000", + "longitude": "-50.14722000" + }, + { + "id": "10836", + "name": "Buritizal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.21345000", + "longitude": "-47.70776000" + }, + { + "id": "11222", + "name": "Caçapava", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.10083000", + "longitude": "-45.70694000" + }, + { + "id": "10858", + "name": "Cabrália Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.49155000", + "longitude": "-49.38637000" + }, + { + "id": "10856", + "name": "Cabreúva", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.30750000", + "longitude": "-47.13278000" + }, + { + "id": "10866", + "name": "Cachoeira Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.70115000", + "longitude": "-44.99229000" + }, + { + "id": "10886", + "name": "Caconde", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.52944000", + "longitude": "-46.64389000" + }, + { + "id": "10895", + "name": "Cafelândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.74295000", + "longitude": "-49.57061000" + }, + { + "id": "10898", + "name": "Caiabu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.93822000", + "longitude": "-51.23232000" + }, + { + "id": "10904", + "name": "Caieiras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.36417000", + "longitude": "-46.74056000" + }, + { + "id": "10906", + "name": "Caiuá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.76518000", + "longitude": "-51.95903000" + }, + { + "id": "10911", + "name": "Cajamar", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.35193000", + "longitude": "-46.88129000" + }, + { + "id": "10914", + "name": "Cajati", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.73611000", + "longitude": "-48.12278000" + }, + { + "id": "10918", + "name": "Cajobi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.88622000", + "longitude": "-48.85175000" + }, + { + "id": "10922", + "name": "Cajuru", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.27528000", + "longitude": "-47.30417000" + }, + { + "id": "10967", + "name": "Campina do Monte Alegre", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.61364000", + "longitude": "-48.45388000" + }, + { + "id": "10970", + "name": "Campinas", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.90556000", + "longitude": "-47.06083000" + }, + { + "id": "10994", + "name": "Campo Limpo Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.21599000", + "longitude": "-46.75842000" + }, + { + "id": "11018", + "name": "Campos do Jordão", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73944000", + "longitude": "-45.59139000" + }, + { + "id": "11014", + "name": "Campos Novos Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.62889000", + "longitude": "-50.01282000" + }, + { + "id": "11023", + "name": "Cananéia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-25.01472000", + "longitude": "-47.92667000" + }, + { + "id": "11027", + "name": "Canas", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73999000", + "longitude": "-45.03208000" + }, + { + "id": "11048", + "name": "Canitar", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.01421000", + "longitude": "-49.78705000" + }, + { + "id": "11094", + "name": "Capâo Bonito", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.00583000", + "longitude": "-48.34944000" + }, + { + "id": "11096", + "name": "Capão Bonito", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.06183000", + "longitude": "-48.29520000" + }, + { + "id": "11069", + "name": "Capela do Alto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.47056000", + "longitude": "-47.73472000" + }, + { + "id": "11088", + "name": "Capivari", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.99500000", + "longitude": "-47.50778000" + }, + { + "id": "11103", + "name": "Caraguatatuba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.62028000", + "longitude": "-45.41306000" + }, + { + "id": "11109", + "name": "Carapicuíba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.55339000", + "longitude": "-46.84852000" + }, + { + "id": "11122", + "name": "Cardoso", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.08194000", + "longitude": "-49.91417000" + }, + { + "id": "11171", + "name": "Casa Branca", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.81396000", + "longitude": "-47.08264000" + }, + { + "id": "11190", + "name": "Castilho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.87222000", + "longitude": "-51.48750000" + }, + { + "id": "11195", + "name": "Catanduva", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.13778000", + "longitude": "-48.97278000" + }, + { + "id": "11202", + "name": "Catiguá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.06536000", + "longitude": "-49.04977000" + }, + { + "id": "11544", + "name": "Cássia dos Coqueiros", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.25917000", + "longitude": "-47.13783000" + }, + { + "id": "11547", + "name": "Cândido Mota", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.74639000", + "longitude": "-50.38694000" + }, + { + "id": "11548", + "name": "Cândido Rodrigues", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.34194000", + "longitude": "-48.63294000" + }, + { + "id": "11229", + "name": "Cedral", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.90742000", + "longitude": "-49.25495000" + }, + { + "id": "11246", + "name": "Cerqueira César", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.03556000", + "longitude": "-49.16611000" + }, + { + "id": "11247", + "name": "Cerquilho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.16500000", + "longitude": "-47.74361000" + }, + { + "id": "11256", + "name": "Cesário Lange", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.21195000", + "longitude": "-47.88465000" + }, + { + "id": "11270", + "name": "Charqueada", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.53724000", + "longitude": "-47.73770000" + }, + { + "id": "11274", + "name": "Chavantes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.03889000", + "longitude": "-49.70944000" + }, + { + "id": "11299", + "name": "Clementina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.57634000", + "longitude": "-50.46202000" + }, + { + "id": "11334", + "name": "Colômbia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.29302000", + "longitude": "-48.72328000" + }, + { + "id": "11321", + "name": "Colina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.75233000", + "longitude": "-48.58162000" + }, + { + "id": "11365", + "name": "Conchal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.34611000", + "longitude": "-47.13620000" + }, + { + "id": "11366", + "name": "Conchas", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.01528000", + "longitude": "-48.01056000" + }, + { + "id": "11401", + "name": "Cordeirópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.48194000", + "longitude": "-47.45667000" + }, + { + "id": "11412", + "name": "Coroados", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.37115000", + "longitude": "-50.31271000" + }, + { + "id": "11424", + "name": "Coronel Macedo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.62092000", + "longitude": "-49.30305000" + }, + { + "id": "11438", + "name": "Corumbataí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.21698000", + "longitude": "-47.59961000" + }, + { + "id": "11447", + "name": "Cosmópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.64583000", + "longitude": "-47.19611000" + }, + { + "id": "11446", + "name": "Cosmorama", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.40934000", + "longitude": "-49.74905000" + }, + { + "id": "11452", + "name": "Cotia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.60389000", + "longitude": "-46.91917000" + }, + { + "id": "11462", + "name": "Cravinhos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.34028000", + "longitude": "-47.72944000" + }, + { + "id": "11468", + "name": "Cristais Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.36538000", + "longitude": "-47.37300000" + }, + { + "id": "11503", + "name": "Cruzália", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73707000", + "longitude": "-50.75793000" + }, + { + "id": "11494", + "name": "Cruzeiro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.57316000", + "longitude": "-44.97108000" + }, + { + "id": "11506", + "name": "Cubatão", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.89500000", + "longitude": "-46.42528000" + }, + { + "id": "11516", + "name": "Cunha", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.07444000", + "longitude": "-44.95972000" + }, + { + "id": "11576", + "name": "Descalvado", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.90389000", + "longitude": "-47.61944000" + }, + { + "id": "11583", + "name": "Diadema", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.68611000", + "longitude": "-46.62278000" + }, + { + "id": "11597", + "name": "Dirce Reis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.45591000", + "longitude": "-50.62798000" + }, + { + "id": "11603", + "name": "Divinolândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.66459000", + "longitude": "-46.70450000" + }, + { + "id": "11612", + "name": "Dobrada", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.51531000", + "longitude": "-48.37033000" + }, + { + "id": "11613", + "name": "Dois Córregos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.36611000", + "longitude": "-48.38028000" + }, + { + "id": "11621", + "name": "Dolcinópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.11666000", + "longitude": "-50.52771000" + }, + { + "id": "11652", + "name": "Dourado", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.11665000", + "longitude": "-48.35204000" + }, + { + "id": "11662", + "name": "Dracena", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.57936000", + "longitude": "-51.59598000" + }, + { + "id": "11663", + "name": "Duartina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.41444000", + "longitude": "-49.40389000" + }, + { + "id": "11667", + "name": "Dumont", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.24438000", + "longitude": "-47.99598000" + }, + { + "id": "11672", + "name": "Echaporã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.41080000", + "longitude": "-50.18262000" + }, + { + "id": "11678", + "name": "Eldorado", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.50057000", + "longitude": "-48.25601000" + }, + { + "id": "11682", + "name": "Elias Fausto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.05880000", + "longitude": "-47.38776000" + }, + { + "id": "11684", + "name": "Elisiário", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.15517000", + "longitude": "-49.09106000" + }, + { + "id": "11688", + "name": "Embaúba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.94301000", + "longitude": "-48.85819000" + }, + { + "id": "11689", + "name": "Embu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.64889000", + "longitude": "-46.85222000" + }, + { + "id": "11691", + "name": "Embu das Artes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.64664000", + "longitude": "-46.85386000" + }, + { + "id": "11690", + "name": "Embu Guaçu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.83222000", + "longitude": "-46.81139000" + }, + { + "id": "11692", + "name": "Embu-Guaçu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.85336000", + "longitude": "-46.83957000" + }, + { + "id": "11693", + "name": "Emilianópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.78179000", + "longitude": "-51.47959000" + }, + { + "id": "11700", + "name": "Engenheiro Coelho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.48904000", + "longitude": "-47.17256000" + }, + { + "id": "11741", + "name": "Espírito Santo do Pinhal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.18900000", + "longitude": "-46.78421000" + }, + { + "id": "11742", + "name": "Espírito Santo do Turvo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.66810000", + "longitude": "-49.42175000" + }, + { + "id": "11746", + "name": "Estiva Gerbi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.22052000", + "longitude": "-46.93878000" + }, + { + "id": "11751", + "name": "Estrela d'Oeste", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.27767000", + "longitude": "-50.40807000" + }, + { + "id": "11754", + "name": "Estrela do Norte", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.47843000", + "longitude": "-51.67954000" + }, + { + "id": "11760", + "name": "Euclides da Cunha Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.51710000", + "longitude": "-52.59099000" + }, + { + "id": "11779", + "name": "Fartura", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.38833000", + "longitude": "-49.51000000" + }, + { + "id": "11809", + "name": "Fernandópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.28389000", + "longitude": "-50.24639000" + }, + { + "id": "11806", + "name": "Fernando Prestes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.30945000", + "longitude": "-48.69583000" + }, + { + "id": "11810", + "name": "Fernão", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.37381000", + "longitude": "-49.55434000" + }, + { + "id": "11811", + "name": "Ferraz de Vasconcelos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.56153000", + "longitude": "-46.37490000" + }, + { + "id": "11847", + "name": "Flórida Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.54193000", + "longitude": "-51.18066000" + }, + { + "id": "11827", + "name": "Flora Rica", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.70103000", + "longitude": "-51.37786000" + }, + { + "id": "11845", + "name": "Florínea", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.87222000", + "longitude": "-50.68979000" + }, + { + "id": "11829", + "name": "Floreal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.65394000", + "longitude": "-50.15844000" + }, + { + "id": "11874", + "name": "Franca", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.53861000", + "longitude": "-47.40083000" + }, + { + "id": "11883", + "name": "Francisco Morato", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.26924000", + "longitude": "-46.70889000" + }, + { + "id": "11887", + "name": "Franco da Rocha", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.30277000", + "longitude": "-46.73089000" + }, + { + "id": "11910", + "name": "Gabriel Monteiro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.49989000", + "longitude": "-50.56997000" + }, + { + "id": "11926", + "name": "Garça", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.21056000", + "longitude": "-49.65611000" + }, + { + "id": "11928", + "name": "Gastão Vidigal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.80633000", + "longitude": "-50.19238000" + }, + { + "id": "11931", + "name": "Gavião Peixoto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.80879000", + "longitude": "-48.46904000" + }, + { + "id": "12091", + "name": "Gália", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.34323000", + "longitude": "-49.57865000" + }, + { + "id": "11938", + "name": "General Salgado", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.64833000", + "longitude": "-50.36056000" + }, + { + "id": "11942", + "name": "Getulina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.76343000", + "longitude": "-50.06225000" + }, + { + "id": "11948", + "name": "Glicério", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.31866000", + "longitude": "-50.17782000" + }, + { + "id": "12077", + "name": "Guaíra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.31833000", + "longitude": "-48.31056000" + }, + { + "id": "12016", + "name": "Guaiçara", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.55410000", + "longitude": "-49.76263000" + }, + { + "id": "12014", + "name": "Guaimbê", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.86204000", + "longitude": "-49.84959000" + }, + { + "id": "12027", + "name": "Guapiaçu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.79500000", + "longitude": "-49.22028000" + }, + { + "id": "12026", + "name": "Guapiara", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.21726000", + "longitude": "-48.54523000" + }, + { + "id": "12060", + "name": "Guaraçaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.10820000", + "longitude": "-51.30124000" + }, + { + "id": "12035", + "name": "Guaraci", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.41648000", + "longitude": "-49.00521000" + }, + { + "id": "12044", + "name": "Guarani d'Oeste", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.07032000", + "longitude": "-50.36292000" + }, + { + "id": "12048", + "name": "Guarantã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.92281000", + "longitude": "-49.58519000" + }, + { + "id": "12054", + "name": "Guararapes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.26083000", + "longitude": "-50.64278000" + }, + { + "id": "12055", + "name": "Guararema", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.41500000", + "longitude": "-46.03500000" + }, + { + "id": "12058", + "name": "Guaratinguetá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.81639000", + "longitude": "-45.19250000" + }, + { + "id": "12071", + "name": "Guará", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.42833000", + "longitude": "-47.82417000" + }, + { + "id": "12064", + "name": "Guareí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.37338000", + "longitude": "-48.22466000" + }, + { + "id": "12065", + "name": "Guariba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.39568000", + "longitude": "-48.20427000" + }, + { + "id": "12068", + "name": "Guarujá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.99306000", + "longitude": "-46.25639000" + }, + { + "id": "12070", + "name": "Guarulhos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.46278000", + "longitude": "-46.53333000" + }, + { + "id": "12073", + "name": "Guatapará", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.47231000", + "longitude": "-47.99142000" + }, + { + "id": "12090", + "name": "Guzolândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.62040000", + "longitude": "-50.71925000" + }, + { + "id": "12096", + "name": "Herculândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.96198000", + "longitude": "-50.38482000" + }, + { + "id": "12103", + "name": "Holambra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.63825000", + "longitude": "-47.06501000" + }, + { + "id": "12107", + "name": "Hortolândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.85833000", + "longitude": "-47.22000000" + }, + { + "id": "12113", + "name": "Iacanga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.90745000", + "longitude": "-49.05917000" + }, + { + "id": "12115", + "name": "Iacri", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.77798000", + "longitude": "-50.61517000" + }, + { + "id": "12117", + "name": "Iaras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.83679000", + "longitude": "-49.10928000" + }, + { + "id": "12125", + "name": "Ibaté", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.95472000", + "longitude": "-47.99667000" + }, + { + "id": "12165", + "name": "Ibiúna", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.65639000", + "longitude": "-47.22250000" + }, + { + "id": "12152", + "name": "Ibirarema", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.80911000", + "longitude": "-50.07816000" + }, + { + "id": "12157", + "name": "Ibirá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.08880000", + "longitude": "-49.21879000" + }, + { + "id": "12159", + "name": "Ibitinga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.75778000", + "longitude": "-48.82889000" + }, + { + "id": "12173", + "name": "Icém", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.38003000", + "longitude": "-49.20507000" + }, + { + "id": "12176", + "name": "Iepê", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.65726000", + "longitude": "-51.04385000" + }, + { + "id": "12191", + "name": "Igaraçu do Tietê", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.50917000", + "longitude": "-48.55778000" + }, + { + "id": "12180", + "name": "Igarapava", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.03833000", + "longitude": "-47.74694000" + }, + { + "id": "12190", + "name": "Igaratá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.12994000", + "longitude": "-46.14647000" + }, + { + "id": "12196", + "name": "Iguape", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.70806000", + "longitude": "-47.55528000" + }, + { + "id": "12206", + "name": "Ilha Comprida", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.87792000", + "longitude": "-47.74757000" + }, + { + "id": "12209", + "name": "Ilha Solteira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.43278000", + "longitude": "-51.34250000" + }, + { + "id": "12212", + "name": "Ilhabela", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.77806000", + "longitude": "-45.35806000" + }, + { + "id": "12257", + "name": "Inúbia Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.72002000", + "longitude": "-50.94738000" + }, + { + "id": "12233", + "name": "Indaiatuba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.08842000", + "longitude": "-47.21190000" + }, + { + "id": "12236", + "name": "Indiana", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.12587000", + "longitude": "-51.26047000" + }, + { + "id": "12239", + "name": "Indiaporã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.95987000", + "longitude": "-50.24419000" + }, + { + "id": "12267", + "name": "Ipauçu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.05667000", + "longitude": "-49.62639000" + }, + { + "id": "12266", + "name": "Ipaussu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.08202000", + "longitude": "-49.60370000" + }, + { + "id": "12270", + "name": "Ipeúna", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.44376000", + "longitude": "-47.69449000" + }, + { + "id": "12269", + "name": "Iperó", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.35028000", + "longitude": "-47.68861000" + }, + { + "id": "12273", + "name": "Ipiguá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.63984000", + "longitude": "-49.39781000" + }, + { + "id": "12284", + "name": "Iporanga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.50438000", + "longitude": "-48.55248000" + }, + { + "id": "12298", + "name": "Ipuã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.43806000", + "longitude": "-48.01222000" + }, + { + "id": "12303", + "name": "Iracemápolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.58056000", + "longitude": "-47.51861000" + }, + { + "id": "12309", + "name": "Irapuã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.25013000", + "longitude": "-49.40247000" + }, + { + "id": "12308", + "name": "Irapuru", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.44903000", + "longitude": "-51.33959000" + }, + { + "id": "12466", + "name": "Itaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.41778000", + "longitude": "-49.09056000" + }, + { + "id": "12331", + "name": "Itaberá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.86194000", + "longitude": "-49.13722000" + }, + { + "id": "12367", + "name": "Itajobi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.31806000", + "longitude": "-49.05444000" + }, + { + "id": "12368", + "name": "Itaju", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.92879000", + "longitude": "-48.78312000" + }, + { + "id": "12392", + "name": "Itanhaém", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.18306000", + "longitude": "-46.78889000" + }, + { + "id": "12396", + "name": "Itaoca", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.61155000", + "longitude": "-48.84390000" + }, + { + "id": "12405", + "name": "Itapecerica da Serra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.71694000", + "longitude": "-46.84917000" + }, + { + "id": "12414", + "name": "Itapetininga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.59167000", + "longitude": "-48.05306000" + }, + { + "id": "12416", + "name": "Itapeva", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.94696000", + "longitude": "-48.83835000" + }, + { + "id": "12417", + "name": "Itapevi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.54889000", + "longitude": "-46.93417000" + }, + { + "id": "12420", + "name": "Itapira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.43611000", + "longitude": "-46.82167000" + }, + { + "id": "12424", + "name": "Itapirapuã Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.55985000", + "longitude": "-49.22435000" + }, + { + "id": "12429", + "name": "Itaporanga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.70778000", + "longitude": "-49.48972000" + }, + { + "id": "12440", + "name": "Itapuí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.23333000", + "longitude": "-48.71917000" + }, + { + "id": "12437", + "name": "Itapura", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.59626000", + "longitude": "-51.42537000" + }, + { + "id": "12442", + "name": "Itaquaquecetuba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.45806000", + "longitude": "-46.32917000" + }, + { + "id": "12449", + "name": "Itararé", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.11250000", + "longitude": "-49.33167000" + }, + { + "id": "12451", + "name": "Itariri", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.28880000", + "longitude": "-47.13325000" + }, + { + "id": "12456", + "name": "Itatiba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.00583000", + "longitude": "-46.83889000" + }, + { + "id": "12459", + "name": "Itatinga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.10167000", + "longitude": "-48.61583000" + }, + { + "id": "12496", + "name": "Itápolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.59556000", + "longitude": "-48.81278000" + }, + { + "id": "12476", + "name": "Itirapina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.25278000", + "longitude": "-47.82278000" + }, + { + "id": "12477", + "name": "Itirapuã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.65755000", + "longitude": "-47.16859000" + }, + { + "id": "12480", + "name": "Itobi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.74902000", + "longitude": "-46.93051000" + }, + { + "id": "12482", + "name": "Itu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.26417000", + "longitude": "-47.29917000" + }, + { + "id": "12489", + "name": "Itupeva", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.15306000", + "longitude": "-47.05778000" + }, + { + "id": "12494", + "name": "Ituverava", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.33944000", + "longitude": "-47.78056000" + }, + { + "id": "12609", + "name": "Jaú", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.29639000", + "longitude": "-48.55778000" + }, + { + "id": "12511", + "name": "Jaborandi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.66618000", + "longitude": "-48.40164000" + }, + { + "id": "12515", + "name": "Jaboticabal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.25472000", + "longitude": "-48.32222000" + }, + { + "id": "12521", + "name": "Jacareí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.30528000", + "longitude": "-45.96583000" + }, + { + "id": "12523", + "name": "Jaci", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.94747000", + "longitude": "-49.57606000" + }, + { + "id": "12531", + "name": "Jacupiranga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.69250000", + "longitude": "-48.00222000" + }, + { + "id": "12546", + "name": "Jaguariúna", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.70556000", + "longitude": "-46.98583000" + }, + { + "id": "12552", + "name": "Jales", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.26889000", + "longitude": "-50.54583000" + }, + { + "id": "12553", + "name": "Jambeiro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.28154000", + "longitude": "-45.71217000" + }, + { + "id": "12560", + "name": "Jandira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.54082000", + "longitude": "-46.89571000" + }, + { + "id": "12587", + "name": "Jardim Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.56675000", + "longitude": "-46.66439000" + }, + { + "id": "12592", + "name": "Jardinópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.01778000", + "longitude": "-47.76389000" + }, + { + "id": "12595", + "name": "Jarinu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.10139000", + "longitude": "-46.72833000" + }, + { + "id": "12718", + "name": "Júlio Mesquita", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.97689000", + "longitude": "-49.78623000" + }, + { + "id": "12622", + "name": "Jeriquara", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.33455000", + "longitude": "-47.57121000" + }, + { + "id": "12635", + "name": "Joanópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.93028000", + "longitude": "-46.27556000" + }, + { + "id": "12667", + "name": "João Ramalho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.24440000", + "longitude": "-50.78747000" + }, + { + "id": "12651", + "name": "José Bonifácio", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.08986000", + "longitude": "-49.77293000" + }, + { + "id": "12681", + "name": "Jumirim", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.10825000", + "longitude": "-47.79820000" + }, + { + "id": "12684", + "name": "Jundiaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.18639000", + "longitude": "-46.88417000" + }, + { + "id": "12689", + "name": "Junqueirópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.51472000", + "longitude": "-51.43361000" + }, + { + "id": "12693", + "name": "Juquiá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.32083000", + "longitude": "-47.63472000" + }, + { + "id": "12692", + "name": "Juquitiba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.95860000", + "longitude": "-47.01366000" + }, + { + "id": "12768", + "name": "Lagoinha", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.08443000", + "longitude": "-45.19973000" + }, + { + "id": "12797", + "name": "Laranjal Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.04972000", + "longitude": "-47.83667000" + }, + { + "id": "12812", + "name": "Lavínia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.17069000", + "longitude": "-51.05184000" + }, + { + "id": "12811", + "name": "Lavrinhas", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.51707000", + "longitude": "-44.88055000" + }, + { + "id": "12815", + "name": "Leme", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.18556000", + "longitude": "-47.39028000" + }, + { + "id": "12818", + "name": "Lençóis Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.59861000", + "longitude": "-48.80028000" + }, + { + "id": "12829", + "name": "Limeira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.56472000", + "longitude": "-47.40167000" + }, + { + "id": "12837", + "name": "Lindóia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.51250000", + "longitude": "-46.65352000" + }, + { + "id": "12841", + "name": "Lins", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.67861000", + "longitude": "-49.74250000" + }, + { + "id": "12852", + "name": "Lorena", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73083000", + "longitude": "-45.12472000" + }, + { + "id": "12854", + "name": "Lourdes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.94345000", + "longitude": "-50.23799000" + }, + { + "id": "12855", + "name": "Louveira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.08252000", + "longitude": "-46.93308000" + }, + { + "id": "12878", + "name": "Luís Antônio", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.55997000", + "longitude": "-47.81156000" + }, + { + "id": "12862", + "name": "Lucélia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.72028000", + "longitude": "-51.01889000" + }, + { + "id": "12859", + "name": "Lucianópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.48385000", + "longitude": "-49.54507000" + }, + { + "id": "12867", + "name": "Luiziânia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.68237000", + "longitude": "-50.35305000" + }, + { + "id": "12871", + "name": "Lupércio", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.42771000", + "longitude": "-49.81232000" + }, + { + "id": "12872", + "name": "Lutécia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.30652000", + "longitude": "-50.37817000" + }, + { + "id": "12889", + "name": "Macatuba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.50222000", + "longitude": "-48.71139000" + }, + { + "id": "12891", + "name": "Macaubal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.86271000", + "longitude": "-49.98530000" + }, + { + "id": "12895", + "name": "Macedônia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.08825000", + "longitude": "-50.17318000" + }, + { + "id": "12913", + "name": "Magda", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.57602000", + "longitude": "-50.22413000" + }, + { + "id": "12917", + "name": "Mairinque", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.54583000", + "longitude": "-47.18333000" + }, + { + "id": "12918", + "name": "Mairiporã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.31861000", + "longitude": "-46.58667000" + }, + { + "id": "12944", + "name": "Manduri", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.05388000", + "longitude": "-49.30262000" + }, + { + "id": "12965", + "name": "Marabá Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.11727000", + "longitude": "-52.05131000" + }, + { + "id": "12971", + "name": "Maracaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.61056000", + "longitude": "-50.66722000" + }, + { + "id": "12980", + "name": "Marapoama", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.25761000", + "longitude": "-49.14859000" + }, + { + "id": "13039", + "name": "Marília", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.21389000", + "longitude": "-49.94583000" + }, + { + "id": "13024", + "name": "Mariápolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.77944000", + "longitude": "-51.16754000" + }, + { + "id": "13019", + "name": "Marinópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.48780000", + "longitude": "-50.83467000" + }, + { + "id": "13035", + "name": "Martinópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.14583000", + "longitude": "-51.17083000" + }, + { + "id": "13077", + "name": "Matão", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.59547000", + "longitude": "-48.45033000" + }, + { + "id": "13083", + "name": "Mauá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.66364000", + "longitude": "-46.44656000" + }, + { + "id": "13099", + "name": "Mendonça", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.19620000", + "longitude": "-49.56427000" + }, + { + "id": "13102", + "name": "Meridiano", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.41766000", + "longitude": "-50.20536000" + }, + { + "id": "13108", + "name": "Mesópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.95808000", + "longitude": "-50.60938000" + }, + { + "id": "13113", + "name": "Miguelópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.17944000", + "longitude": "-48.03194000" + }, + { + "id": "13127", + "name": "Mineiros do Tietê", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.44860000", + "longitude": "-48.44074000" + }, + { + "id": "13129", + "name": "Mira Estrela", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.97244000", + "longitude": "-50.13043000" + }, + { + "id": "13131", + "name": "Miracatu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.28139000", + "longitude": "-47.45972000" + }, + { + "id": "13142", + "name": "Mirandópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.12459000", + "longitude": "-51.15123000" + }, + { + "id": "13141", + "name": "Mirandopólis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.13361000", + "longitude": "-51.10167000" + }, + { + "id": "13147", + "name": "Mirante do Paranapanema", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.29194000", + "longitude": "-51.90639000" + }, + { + "id": "13149", + "name": "Mirassol", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.84158000", + "longitude": "-49.50879000" + }, + { + "id": "13151", + "name": "Mirassolândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.59295000", + "longitude": "-49.48426000" + }, + { + "id": "13160", + "name": "Mococa", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.46778000", + "longitude": "-47.00472000" + }, + { + "id": "13167", + "name": "Mogi das Cruzes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.56813000", + "longitude": "-46.18770000" + }, + { + "id": "13165", + "name": "Mogi Guaçu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.36770000", + "longitude": "-46.94552000" + }, + { + "id": "13166", + "name": "Mogi Mirim", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.43194000", + "longitude": "-46.95778000" + }, + { + "id": "13173", + "name": "Mombuca", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.95107000", + "longitude": "-47.60238000" + }, + { + "id": "13226", + "name": "Monções", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.86875000", + "longitude": "-50.08331000" + }, + { + "id": "13175", + "name": "Mongaguá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.09306000", + "longitude": "-46.62083000" + }, + { + "id": "13192", + "name": "Monte Alegre do Sul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.71002000", + "longitude": "-46.67181000" + }, + { + "id": "13194", + "name": "Monte Alto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.26111000", + "longitude": "-48.49639000" + }, + { + "id": "13195", + "name": "Monte Aprazível", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.77250000", + "longitude": "-49.71417000" + }, + { + "id": "13197", + "name": "Monte Azul Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.90722000", + "longitude": "-48.64139000" + }, + { + "id": "13202", + "name": "Monte Castelo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.22773000", + "longitude": "-51.57141000" + }, + { + "id": "13206", + "name": "Monte Mor", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.94667000", + "longitude": "-47.31583000" + }, + { + "id": "13216", + "name": "Monteiro Lobato", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.93300000", + "longitude": "-45.80525000" + }, + { + "id": "13239", + "name": "Morro Agudo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73139000", + "longitude": "-48.05778000" + }, + { + "id": "13253", + "name": "Morungaba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.88318000", + "longitude": "-46.78699000" + }, + { + "id": "13257", + "name": "Motuca", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.48936000", + "longitude": "-48.15669000" + }, + { + "id": "13284", + "name": "Murutinga do Sul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.99638000", + "longitude": "-51.30376000" + }, + { + "id": "13295", + "name": "Nantes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.60334000", + "longitude": "-51.20840000" + }, + { + "id": "13298", + "name": "Narandiba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.53395000", + "longitude": "-51.50976000" + }, + { + "id": "13303", + "name": "Natividade da Serra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.39447000", + "longitude": "-45.39368000" + }, + { + "id": "13312", + "name": "Nazaré Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.18203000", + "longitude": "-46.36202000" + }, + { + "id": "13319", + "name": "Neves Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.87439000", + "longitude": "-49.64850000" + }, + { + "id": "13322", + "name": "Nhandeara", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.68970000", + "longitude": "-50.04070000" + }, + { + "id": "13329", + "name": "Nipoã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.89366000", + "longitude": "-49.78133000" + }, + { + "id": "13345", + "name": "Nova Aliança", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.06591000", + "longitude": "-49.52593000" + }, + { + "id": "13362", + "name": "Nova Campina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.20918000", + "longitude": "-48.98456000" + }, + { + "id": "13364", + "name": "Nova Canaã Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.37020000", + "longitude": "-50.90616000" + }, + { + "id": "13368", + "name": "Nova Castilho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.78530000", + "longitude": "-50.34957000" + }, + { + "id": "13378", + "name": "Nova Europa", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.79214000", + "longitude": "-48.56880000" + }, + { + "id": "13384", + "name": "Nova Granada", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.53389000", + "longitude": "-49.31417000" + }, + { + "id": "13386", + "name": "Nova Guataporanga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.31898000", + "longitude": "-51.64323000" + }, + { + "id": "13391", + "name": "Nova Independência", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.15481000", + "longitude": "-51.52759000" + }, + { + "id": "13400", + "name": "Nova Luzitânia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.87304000", + "longitude": "-50.24297000" + }, + { + "id": "13408", + "name": "Nova Odessa", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.77750000", + "longitude": "-47.29583000" + }, + { + "id": "13449", + "name": "Novais", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.97660000", + "longitude": "-48.90985000" + }, + { + "id": "13460", + "name": "Novo Horizonte", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.46806000", + "longitude": "-49.22083000" + }, + { + "id": "13484", + "name": "Nuporanga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73095000", + "longitude": "-47.75177000" + }, + { + "id": "13489", + "name": "Ocauçu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.43034000", + "longitude": "-49.95170000" + }, + { + "id": "13511", + "name": "Olímpia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.73722000", + "longitude": "-48.91472000" + }, + { + "id": "13513", + "name": "Onda Verde", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.61043000", + "longitude": "-49.24474000" + }, + { + "id": "13516", + "name": "Oriente", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.15005000", + "longitude": "-50.09676000" + }, + { + "id": "13517", + "name": "Orindiúva", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.22235000", + "longitude": "-49.37594000" + }, + { + "id": "13522", + "name": "Orlândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.72028000", + "longitude": "-47.88667000" + }, + { + "id": "13527", + "name": "Osasco", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.53250000", + "longitude": "-46.79167000" + }, + { + "id": "13528", + "name": "Oscar Bressane", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.29031000", + "longitude": "-50.25646000" + }, + { + "id": "13529", + "name": "Osvaldo Cruz", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.67502000", + "longitude": "-50.84203000" + }, + { + "id": "13534", + "name": "Ourinhos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.97889000", + "longitude": "-49.87056000" + }, + { + "id": "13545", + "name": "Ouro Verde", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.52766000", + "longitude": "-51.75119000" + }, + { + "id": "13550", + "name": "Ouroeste", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.93760000", + "longitude": "-50.41455000" + }, + { + "id": "13554", + "name": "Pacaembu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.56222000", + "longitude": "-51.26056000" + }, + { + "id": "13576", + "name": "Palestina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.29911000", + "longitude": "-49.52000000" + }, + { + "id": "13584", + "name": "Palmares Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.10148000", + "longitude": "-48.82032000" + }, + { + "id": "13591", + "name": "Palmeira d'Oeste", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.45046000", + "longitude": "-50.75181000" + }, + { + "id": "13605", + "name": "Palmital", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.78889000", + "longitude": "-50.21750000" + }, + { + "id": "13616", + "name": "Panorama", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.35639000", + "longitude": "-51.85972000" + }, + { + "id": "13659", + "name": "Paraíso", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.01639000", + "longitude": "-48.77361000" + }, + { + "id": "13628", + "name": "Paraguaçu Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.41278000", + "longitude": "-50.57583000" + }, + { + "id": "13630", + "name": "Paraibuna", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.48123000", + "longitude": "-45.63778000" + }, + { + "id": "13639", + "name": "Paranapanema", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.38630000", + "longitude": "-48.72441000" + }, + { + "id": "13641", + "name": "Paranapuã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.05940000", + "longitude": "-50.59676000" + }, + { + "id": "13651", + "name": "Parapuã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.84482000", + "longitude": "-50.83410000" + }, + { + "id": "13667", + "name": "Pardinho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.08987000", + "longitude": "-48.38420000" + }, + { + "id": "13675", + "name": "Pariquera Açu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.71500000", + "longitude": "-47.88111000" + }, + { + "id": "13676", + "name": "Pariquera-Açu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.66388000", + "longitude": "-47.84553000" + }, + { + "id": "13677", + "name": "Parisi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.26554000", + "longitude": "-50.03904000" + }, + { + "id": "13710", + "name": "Patrocínio Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.68707000", + "longitude": "-47.28437000" + }, + { + "id": "13738", + "name": "Paulínia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.76111000", + "longitude": "-47.15417000" + }, + { + "id": "13723", + "name": "Paulicéia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.17172000", + "longitude": "-51.75418000" + }, + { + "id": "13727", + "name": "Paulista Flórida", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.60000000", + "longitude": "-51.20000000" + }, + { + "id": "13730", + "name": "Paulistânia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.57816000", + "longitude": "-49.29587000" + }, + { + "id": "13737", + "name": "Paulo de Faria", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.09639000", + "longitude": "-49.48849000" + }, + { + "id": "13744", + "name": "Pederneiras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.35167000", + "longitude": "-48.77500000" + }, + { + "id": "13747", + "name": "Pedra Bela", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.76397000", + "longitude": "-46.43708000" + }, + { + "id": "13761", + "name": "Pedranópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.19986000", + "longitude": "-50.08987000" + }, + { + "id": "13766", + "name": "Pedregulho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.25694000", + "longitude": "-47.47667000" + }, + { + "id": "13767", + "name": "Pedreira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.74194000", + "longitude": "-46.90139000" + }, + { + "id": "13770", + "name": "Pedrinhas Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.80731000", + "longitude": "-50.82055000" + }, + { + "id": "13784", + "name": "Pedro de Toledo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.17020000", + "longitude": "-47.17239000" + }, + { + "id": "13798", + "name": "Penápolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.41972000", + "longitude": "-50.07750000" + }, + { + "id": "13805", + "name": "Pereira Barreto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.63833000", + "longitude": "-51.10917000" + }, + { + "id": "13806", + "name": "Pereiras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.12150000", + "longitude": "-47.97614000" + }, + { + "id": "13814", + "name": "Peruíbe", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.32000000", + "longitude": "-46.99833000" + }, + { + "id": "13823", + "name": "Piacatu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.57301000", + "longitude": "-50.65835000" + }, + { + "id": "13831", + "name": "Piedade", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.71194000", + "longitude": "-47.42778000" + }, + { + "id": "13839", + "name": "Pilar do Sul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.81306000", + "longitude": "-47.71639000" + }, + { + "id": "13848", + "name": "Pindamonhangaba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.92389000", + "longitude": "-45.46167000" + }, + { + "id": "13854", + "name": "Pindorama", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.18583000", + "longitude": "-48.90722000" + }, + { + "id": "13863", + "name": "Pinhalzinho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.78213000", + "longitude": "-46.57177000" + }, + { + "id": "13880", + "name": "Piquerobi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.84262000", + "longitude": "-51.74581000" + }, + { + "id": "13882", + "name": "Piquete", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.61361000", + "longitude": "-45.17611000" + }, + { + "id": "13883", + "name": "Piracaia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.05389000", + "longitude": "-46.35806000" + }, + { + "id": "13886", + "name": "Piracicaba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.71579000", + "longitude": "-47.77297000" + }, + { + "id": "13888", + "name": "Piraju", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.19361000", + "longitude": "-49.38389000" + }, + { + "id": "13890", + "name": "Pirajuí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.99861000", + "longitude": "-49.45722000" + }, + { + "id": "13893", + "name": "Pirangi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.08566000", + "longitude": "-48.67186000" + }, + { + "id": "13901", + "name": "Pirapora do Bom Jesus", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.37201000", + "longitude": "-46.97798000" + }, + { + "id": "13902", + "name": "Pirapozinho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.27528000", + "longitude": "-51.50000000" + }, + { + "id": "13906", + "name": "Pirassununga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.99611000", + "longitude": "-47.42583000" + }, + { + "id": "13908", + "name": "Piratininga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.42279000", + "longitude": "-49.19329000" + }, + { + "id": "13923", + "name": "Pitangueiras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.01395000", + "longitude": "-48.26197000" + }, + { + "id": "13939", + "name": "Planalto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.00411000", + "longitude": "-49.93965000" + }, + { + "id": "13944", + "name": "Platina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.62809000", + "longitude": "-50.22211000" + }, + { + "id": "14044", + "name": "Poá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.53459000", + "longitude": "-46.34662000" + }, + { + "id": "13950", + "name": "Poloni", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.72938000", + "longitude": "-49.81550000" + }, + { + "id": "13954", + "name": "Pompéia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.10861000", + "longitude": "-50.17167000" + }, + { + "id": "13956", + "name": "Pongaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.73364000", + "longitude": "-49.36396000" + }, + { + "id": "13960", + "name": "Pontal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.02250000", + "longitude": "-48.03722000" + }, + { + "id": "13964", + "name": "Pontalinda", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.46316000", + "longitude": "-50.52208000" + }, + { + "id": "13973", + "name": "Pontes Gestal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.17009000", + "longitude": "-49.75902000" + }, + { + "id": "13980", + "name": "Populina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.92212000", + "longitude": "-50.51727000" + }, + { + "id": "13982", + "name": "Porangaba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.17583000", + "longitude": "-48.12500000" + }, + { + "id": "14004", + "name": "Porto Feliz", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.21472000", + "longitude": "-47.52389000" + }, + { + "id": "14005", + "name": "Porto Ferreira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.85389000", + "longitude": "-47.47917000" + }, + { + "id": "14033", + "name": "Potim", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.82497000", + "longitude": "-45.30614000" + }, + { + "id": "14035", + "name": "Potirendaba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.10737000", + "longitude": "-49.39808000" + }, + { + "id": "14057", + "name": "Pracinha", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.84003000", + "longitude": "-51.08033000" + }, + { + "id": "14062", + "name": "Pradópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.35944000", + "longitude": "-48.06556000" + }, + { + "id": "14063", + "name": "Praia Grande", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.00583000", + "longitude": "-46.40278000" + }, + { + "id": "14073", + "name": "Pratânia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.81737000", + "longitude": "-48.68698000" + }, + { + "id": "14074", + "name": "Presidente Alves", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.10947000", + "longitude": "-49.40588000" + }, + { + "id": "14075", + "name": "Presidente Bernardes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.00611000", + "longitude": "-51.55306000" + }, + { + "id": "14081", + "name": "Presidente Epitácio", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.76333000", + "longitude": "-52.11556000" + }, + { + "id": "14095", + "name": "Presidente Prudente", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.12556000", + "longitude": "-51.38889000" + }, + { + "id": "14099", + "name": "Presidente Venceslau", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.87611000", + "longitude": "-51.84389000" + }, + { + "id": "14110", + "name": "Promissão", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.53667000", + "longitude": "-49.85806000" + }, + { + "id": "14125", + "name": "Quadra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.30027000", + "longitude": "-48.04264000" + }, + { + "id": "14135", + "name": "Quatá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.24750000", + "longitude": "-50.69833000" + }, + { + "id": "14142", + "name": "Queiroz", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.79287000", + "longitude": "-50.23587000" + }, + { + "id": "14143", + "name": "Queluz", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.51320000", + "longitude": "-44.78091000" + }, + { + "id": "14151", + "name": "Quintana", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.09720000", + "longitude": "-50.37082000" + }, + { + "id": "14168", + "name": "Rafard", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.03281000", + "longitude": "-47.58676000" + }, + { + "id": "14170", + "name": "Rancharia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.22917000", + "longitude": "-50.89306000" + }, + { + "id": "14185", + "name": "Redenção da Serra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.25672000", + "longitude": "-45.50200000" + }, + { + "id": "14189", + "name": "Regente Feijó", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.22139000", + "longitude": "-51.30278000" + }, + { + "id": "14190", + "name": "Reginópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.87493000", + "longitude": "-49.19025000" + }, + { + "id": "14191", + "name": "Registro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.48750000", + "longitude": "-47.84361000" + }, + { + "id": "14205", + "name": "Restinga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.67652000", + "longitude": "-47.52058000" + }, + { + "id": "14231", + "name": "Ribeira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.61113000", + "longitude": "-49.03616000" + }, + { + "id": "14237", + "name": "Ribeirão Bonito", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.06667000", + "longitude": "-48.17611000" + }, + { + "id": "14238", + "name": "Ribeirão Branco", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.22083000", + "longitude": "-48.76556000" + }, + { + "id": "14241", + "name": "Ribeirão Corrente", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.44247000", + "longitude": "-47.57152000" + }, + { + "id": "14250", + "name": "Ribeirão do Sul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.74112000", + "longitude": "-49.94632000" + }, + { + "id": "14251", + "name": "Ribeirão dos Índios", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.78470000", + "longitude": "-51.57840000" + }, + { + "id": "14242", + "name": "Ribeirão Grande", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.17568000", + "longitude": "-48.34008000" + }, + { + "id": "14243", + "name": "Ribeirão Pires", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.70411000", + "longitude": "-46.39991000" + }, + { + "id": "14244", + "name": "Ribeirão Preto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.17750000", + "longitude": "-47.81028000" + }, + { + "id": "14254", + "name": "Rifaina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.07816000", + "longitude": "-47.43839000" + }, + { + "id": "14256", + "name": "Rinópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.66311000", + "longitude": "-50.72038000" + }, + { + "id": "14255", + "name": "Rincão", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.57394000", + "longitude": "-47.99687000" + }, + { + "id": "14269", + "name": "Rio Claro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.41139000", + "longitude": "-47.56139000" + }, + { + "id": "14307", + "name": "Rio das Pedras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.84082000", + "longitude": "-47.59724000" + }, + { + "id": "14277", + "name": "Rio Grande da Serra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.73345000", + "longitude": "-46.37351000" + }, + { + "id": "14320", + "name": "Riolândia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-19.98083000", + "longitude": "-49.68194000" + }, + { + "id": "14324", + "name": "Riversul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.84439000", + "longitude": "-49.44354000" + }, + { + "id": "14348", + "name": "Rosana", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.49250000", + "longitude": "-52.81942000" + }, + { + "id": "14349", + "name": "Roseira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.93295000", + "longitude": "-45.29982000" + }, + { + "id": "14361", + "name": "Rubiácea", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.36114000", + "longitude": "-50.78593000" + }, + { + "id": "14360", + "name": "Rubinéia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.24994000", + "longitude": "-51.01836000" + }, + { + "id": "14367", + "name": "Sabino", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.47970000", + "longitude": "-49.57650000" + }, + { + "id": "14374", + "name": "Sagres", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.86529000", + "longitude": "-51.00502000" + }, + { + "id": "14377", + "name": "Sales", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.33848000", + "longitude": "-49.51847000" + }, + { + "id": "14378", + "name": "Sales Oliveira", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.83364000", + "longitude": "-47.84079000" + }, + { + "id": "14379", + "name": "Salesópolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.58753000", + "longitude": "-45.84743000" + }, + { + "id": "14391", + "name": "Salmourão", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.58291000", + "longitude": "-50.87491000" + }, + { + "id": "14393", + "name": "Saltinho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.86275000", + "longitude": "-47.72668000" + }, + { + "id": "14395", + "name": "Salto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.20083000", + "longitude": "-47.28694000" + }, + { + "id": "14399", + "name": "Salto de Pirapora", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.64889000", + "longitude": "-47.57333000" + }, + { + "id": "14396", + "name": "Salto Grande", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.87363000", + "longitude": "-49.96190000" + }, + { + "id": "14413", + "name": "Sandovalina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.45478000", + "longitude": "-51.85322000" + }, + { + "id": "14417", + "name": "Santa Adélia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.24278000", + "longitude": "-48.80417000" + }, + { + "id": "14418", + "name": "Santa Albertina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.03496000", + "longitude": "-50.71776000" + }, + { + "id": "14424", + "name": "Santa Bárbara d'Oeste", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.75361000", + "longitude": "-47.41361000" + }, + { + "id": "14420", + "name": "Santa Branca", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.39667000", + "longitude": "-45.88389000" + }, + { + "id": "14436", + "name": "Santa Clara d'Oeste", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.07534000", + "longitude": "-50.89870000" + }, + { + "id": "14443", + "name": "Santa Cruz da Conceição", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.12608000", + "longitude": "-47.49276000" + }, + { + "id": "14444", + "name": "Santa Cruz da Esperança", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.26170000", + "longitude": "-47.44749000" + }, + { + "id": "14446", + "name": "Santa Cruz das Palmeiras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.82694000", + "longitude": "-47.24861000" + }, + { + "id": "14455", + "name": "Santa Cruz do Rio Pardo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.89889000", + "longitude": "-49.63250000" + }, + { + "id": "14460", + "name": "Santa Ernestina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.45303000", + "longitude": "-48.37797000" + }, + { + "id": "14468", + "name": "Santa Fé do Sul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.21111000", + "longitude": "-50.92583000" + }, + { + "id": "14469", + "name": "Santa Gertrudes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.45667000", + "longitude": "-47.53028000" + }, + { + "id": "14480", + "name": "Santa Isabel", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.29440000", + "longitude": "-46.24151000" + }, + { + "id": "14498", + "name": "Santa Lúcia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.66472000", + "longitude": "-48.08283000" + }, + { + "id": "14506", + "name": "Santa Maria da Serra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.53752000", + "longitude": "-48.14455000" + }, + { + "id": "14519", + "name": "Santa Mercedes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.31829000", + "longitude": "-51.74637000" + }, + { + "id": "14526", + "name": "Santa Rita d'Oeste", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.08064000", + "longitude": "-50.81371000" + }, + { + "id": "14536", + "name": "Santa Rita do Passa Quatro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.71028000", + "longitude": "-47.47806000" + }, + { + "id": "14545", + "name": "Santa Rosa de Viterbo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.47278000", + "longitude": "-47.36306000" + }, + { + "id": "14550", + "name": "Santa Salete", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.27360000", + "longitude": "-50.72826000" + }, + { + "id": "14571", + "name": "Santana da Ponte Pensa", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.25649000", + "longitude": "-50.79852000" + }, + { + "id": "14575", + "name": "Santana de Parnaíba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.44417000", + "longitude": "-46.91778000" + }, + { + "id": "14655", + "name": "Santópolis do Aguapeí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.67058000", + "longitude": "-50.52029000" + }, + { + "id": "14607", + "name": "Santo Anastácio", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.01522000", + "longitude": "-51.70097000" + }, + { + "id": "14609", + "name": "Santo André", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.71057000", + "longitude": "-46.50460000" + }, + { + "id": "14611", + "name": "Santo Antônio da Alegria", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.09238000", + "longitude": "-47.20360000" + }, + { + "id": "14619", + "name": "Santo Antônio de Posse", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.60611000", + "longitude": "-46.91944000" + }, + { + "id": "14622", + "name": "Santo Antônio do Aracanguá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.85619000", + "longitude": "-50.53106000" + }, + { + "id": "14630", + "name": "Santo Antônio do Jardim", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.12625000", + "longitude": "-46.67237000" + }, + { + "id": "14636", + "name": "Santo Antônio do Pinhal", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.82143000", + "longitude": "-45.69968000" + }, + { + "id": "14647", + "name": "Santo Expedito", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.82978000", + "longitude": "-51.36993000" + }, + { + "id": "14653", + "name": "Santos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.85663000", + "longitude": "-46.27055000" + }, + { + "id": "14669", + "name": "Sarapuí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.65898000", + "longitude": "-47.77095000" + }, + { + "id": "14671", + "name": "Sarutaiá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.25823000", + "longitude": "-49.48372000" + }, + { + "id": "14839", + "name": "São Bento do Sapucaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.67091000", + "longitude": "-45.68394000" + }, + { + "id": "14846", + "name": "São Bernardo do Campo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.69389000", + "longitude": "-46.56500000" + }, + { + "id": "14853", + "name": "São Caetano do Sul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.62429000", + "longitude": "-46.56241000" + }, + { + "id": "14855", + "name": "São Carlos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.01750000", + "longitude": "-47.89083000" + }, + { + "id": "14881", + "name": "São Francisco", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.36457000", + "longitude": "-50.67463000" + }, + { + "id": "14931", + "name": "São Joaquim da Barra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.58139000", + "longitude": "-47.85472000" + }, + { + "id": "15007", + "name": "São João da Boa Vista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.96917000", + "longitude": "-46.79806000" + }, + { + "id": "15018", + "name": "São João das Duas Pontes", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.41912000", + "longitude": "-50.38960000" + }, + { + "id": "15020", + "name": "São João de Iracema", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.51199000", + "longitude": "-50.36102000" + }, + { + "id": "15039", + "name": "São João do Pau d'Alho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.20519000", + "longitude": "-51.66857000" + }, + { + "id": "14940", + "name": "São José da Bela Vista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.59934000", + "longitude": "-47.62940000" + }, + { + "id": "14960", + "name": "São José do Barreiro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73717000", + "longitude": "-44.58545000" + }, + { + "id": "14984", + "name": "São José do Rio Pardo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.59556000", + "longitude": "-46.88861000" + }, + { + "id": "14985", + "name": "São José do Rio Preto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.81972000", + "longitude": "-49.37944000" + }, + { + "id": "14993", + "name": "São José dos Campos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.17944000", + "longitude": "-45.88694000" + }, + { + "id": "15054", + "name": "São Lourenço da Serra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.84783000", + "longitude": "-46.93930000" + }, + { + "id": "15062", + "name": "São Luiz do Paraitinga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.26061000", + "longitude": "-45.22724000" + }, + { + "id": "15070", + "name": "São Manuel", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73111000", + "longitude": "-48.57056000" + }, + { + "id": "15079", + "name": "São Miguel Arcanjo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.93766000", + "longitude": "-47.99988000" + }, + { + "id": "15101", + "name": "São Paulo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.54750000", + "longitude": "-46.63611000" + }, + { + "id": "15106", + "name": "São Pedro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.55963000", + "longitude": "-47.90443000" + }, + { + "id": "15122", + "name": "São Pedro do Turvo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.69638000", + "longitude": "-49.74295000" + }, + { + "id": "15131", + "name": "São Roque", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.54011000", + "longitude": "-47.11280000" + }, + { + "id": "15135", + "name": "São Sebastião", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.76000000", + "longitude": "-45.40972000" + }, + { + "id": "15140", + "name": "São Sebastião da Grama", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.74730000", + "longitude": "-46.75934000" + }, + { + "id": "15156", + "name": "São Simão", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.47917000", + "longitude": "-47.55083000" + }, + { + "id": "15168", + "name": "São Vicente", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.96506000", + "longitude": "-46.49683000" + }, + { + "id": "14682", + "name": "Sebastianópolis do Sul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.61558000", + "longitude": "-49.90753000" + }, + { + "id": "14723", + "name": "Serra Azul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.28755000", + "longitude": "-47.53885000" + }, + { + "id": "14729", + "name": "Serra Negra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.61222000", + "longitude": "-46.70056000" + }, + { + "id": "14743", + "name": "Serrana", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.21139000", + "longitude": "-47.59556000" + }, + { + "id": "14762", + "name": "Sertãozinho", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.13778000", + "longitude": "-47.99028000" + }, + { + "id": "14764", + "name": "Sete Barras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.27723000", + "longitude": "-47.95013000" + }, + { + "id": "14771", + "name": "Severínia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.78066000", + "longitude": "-48.79037000" + }, + { + "id": "14778", + "name": "Silveiras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.73649000", + "longitude": "-44.84778000" + }, + { + "id": "14800", + "name": "Socorro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.59139000", + "longitude": "-46.52889000" + }, + { + "id": "14811", + "name": "Sorocaba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.50167000", + "longitude": "-47.45806000" + }, + { + "id": "14820", + "name": "Sud Mennucci", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.61860000", + "longitude": "-50.88011000" + }, + { + "id": "14823", + "name": "Sumaré", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.82194000", + "longitude": "-47.26694000" + }, + { + "id": "14829", + "name": "Suzanápolis", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.51030000", + "longitude": "-51.07079000" + }, + { + "id": "14828", + "name": "Suzano", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.54250000", + "longitude": "-46.31083000" + }, + { + "id": "15183", + "name": "Tabapuã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.92377000", + "longitude": "-49.02475000" + }, + { + "id": "15185", + "name": "Tabatinga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.74210000", + "longitude": "-48.64589000" + }, + { + "id": "15190", + "name": "Taboão da Serra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.62611000", + "longitude": "-46.79167000" + }, + { + "id": "15195", + "name": "Taciba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.49676000", + "longitude": "-51.33241000" + }, + { + "id": "15199", + "name": "Taguaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.48512000", + "longitude": "-49.40781000" + }, + { + "id": "15200", + "name": "Taiaçu", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.13217000", + "longitude": "-48.53092000" + }, + { + "id": "15206", + "name": "Taiúva", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.12737000", + "longitude": "-48.42696000" + }, + { + "id": "15210", + "name": "Tambaú", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.58688000", + "longitude": "-47.22761000" + }, + { + "id": "15214", + "name": "Tanabi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.50212000", + "longitude": "-49.64584000" + }, + { + "id": "15238", + "name": "Tapiraí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-24.01487000", + "longitude": "-47.62583000" + }, + { + "id": "15236", + "name": "Tapiratiba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.44656000", + "longitude": "-46.73214000" + }, + { + "id": "15241", + "name": "Taquaral", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.06760000", + "longitude": "-48.39336000" + }, + { + "id": "15246", + "name": "Taquaritinga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.43270000", + "longitude": "-48.54735000" + }, + { + "id": "15248", + "name": "Taquarituba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.52998000", + "longitude": "-49.21441000" + }, + { + "id": "15249", + "name": "Taquarivaí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.95095000", + "longitude": "-48.67524000" + }, + { + "id": "15252", + "name": "Tarabai", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.35043000", + "longitude": "-51.62019000" + }, + { + "id": "15257", + "name": "Tarumã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.76111000", + "longitude": "-50.60332000" + }, + { + "id": "15259", + "name": "Tatuí", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.35556000", + "longitude": "-47.85694000" + }, + { + "id": "15260", + "name": "Taubaté", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.02639000", + "longitude": "-45.55528000" + }, + { + "id": "15270", + "name": "Tejupá", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.35231000", + "longitude": "-49.30721000" + }, + { + "id": "15279", + "name": "Teodoro Sampaio", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.41617000", + "longitude": "-52.36402000" + }, + { + "id": "15296", + "name": "Terra Roxa", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.76175000", + "longitude": "-48.36899000" + }, + { + "id": "15307", + "name": "Tietê", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.04197000", + "longitude": "-47.71430000" + }, + { + "id": "15314", + "name": "Timburi", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.19265000", + "longitude": "-49.61224000" + }, + { + "id": "15340", + "name": "Torre de Pedra", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.24640000", + "longitude": "-48.21328000" + }, + { + "id": "15342", + "name": "Torrinha", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.47144000", + "longitude": "-48.15338000" + }, + { + "id": "15344", + "name": "Trabiju", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.03023000", + "longitude": "-48.36861000" + }, + { + "id": "15376", + "name": "Três Fronteiras", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.29093000", + "longitude": "-50.87027000" + }, + { + "id": "15354", + "name": "Tremembé", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.92410000", + "longitude": "-45.61503000" + }, + { + "id": "15391", + "name": "Tuiuti", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.84505000", + "longitude": "-46.69618000" + }, + { + "id": "15408", + "name": "Tupã", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.95443000", + "longitude": "-50.53493000" + }, + { + "id": "15405", + "name": "Tupi Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.38916000", + "longitude": "-51.58294000" + }, + { + "id": "15412", + "name": "Turiúba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.94735000", + "longitude": "-50.09803000" + }, + { + "id": "15414", + "name": "Turmalina", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.05953000", + "longitude": "-50.45595000" + }, + { + "id": "15428", + "name": "Ubarana", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.22036000", + "longitude": "-49.72981000" + }, + { + "id": "15429", + "name": "Ubatuba", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.43389000", + "longitude": "-45.07111000" + }, + { + "id": "15435", + "name": "Ubirajara", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.55131000", + "longitude": "-49.66278000" + }, + { + "id": "15439", + "name": "Uchoa", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.91850000", + "longitude": "-49.13654000" + }, + { + "id": "15457", + "name": "União Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.88795000", + "longitude": "-49.89135000" + }, + { + "id": "15488", + "name": "Urânia", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.20908000", + "longitude": "-50.66093000" + }, + { + "id": "15468", + "name": "Uru", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.76519000", + "longitude": "-49.29720000" + }, + { + "id": "15483", + "name": "Urupês", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.18413000", + "longitude": "-49.28069000" + }, + { + "id": "15498", + "name": "Valentim Gentil", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.43138000", + "longitude": "-50.12129000" + }, + { + "id": "15502", + "name": "Valinhos", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.97056000", + "longitude": "-46.99583000" + }, + { + "id": "15503", + "name": "Valparaíso", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.21512000", + "longitude": "-50.94698000" + }, + { + "id": "15506", + "name": "Vargem", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.89117000", + "longitude": "-46.41556000" + }, + { + "id": "15515", + "name": "Vargem Grande do Sul", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.87152000", + "longitude": "-46.89073000" + }, + { + "id": "15513", + "name": "Vargem Grande Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.62856000", + "longitude": "-47.01914000" + }, + { + "id": "15620", + "name": "Várzea Paulista", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.21139000", + "longitude": "-46.82833000" + }, + { + "id": "15535", + "name": "Vera Cruz", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-22.23340000", + "longitude": "-49.83281000" + }, + { + "id": "15580", + "name": "Vinhedo", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.05397000", + "longitude": "-46.98135000" + }, + { + "id": "15581", + "name": "Viradouro", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.87625000", + "longitude": "-48.31479000" + }, + { + "id": "15590", + "name": "Vista Alegre do Alto", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.18019000", + "longitude": "-48.65482000" + }, + { + "id": "15598", + "name": "Vitória Brasil", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.19354000", + "longitude": "-50.47940000" + }, + { + "id": "15611", + "name": "Votorantim", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-23.54667000", + "longitude": "-47.43778000" + }, + { + "id": "15612", + "name": "Votuporanga", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-20.48010000", + "longitude": "-50.01266000" + }, + { + "id": "15645", + "name": "Zacarias", + "state_id": 2021, + "state_code": "SP", + "country_id": 31, + "country_code": "BR", + "latitude": "-21.11651000", + "longitude": "-50.06154000" + }, + { + "id": "10221", + "name": "Amparo de São Francisco", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.13736000", + "longitude": "-36.92219000" + }, + { + "id": "10304", + "name": "Aquidabã", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.31619000", + "longitude": "-37.10451000" + }, + { + "id": "10308", + "name": "Aracaju", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.98232000", + "longitude": "-37.10333000" + }, + { + "id": "10364", + "name": "Arauá", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.26222000", + "longitude": "-37.61972000" + }, + { + "id": "10385", + "name": "Areia Branca", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.75778000", + "longitude": "-37.31528000" + }, + { + "id": "10546", + "name": "Barra dos Coqueiros", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.90889000", + "longitude": "-37.03861000" + }, + { + "id": "10746", + "name": "Boquim", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.14694000", + "longitude": "-37.62056000" + }, + { + "id": "10790", + "name": "Brejo Grande", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.49241000", + "longitude": "-36.45883000" + }, + { + "id": "11005", + "name": "Campo do Brito", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.73333000", + "longitude": "-37.49333000" + }, + { + "id": "11044", + "name": "Canhoba", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.14847000", + "longitude": "-37.00031000" + }, + { + "id": "11047", + "name": "Canindé de São Francisco", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.66000000", + "longitude": "-37.78944000" + }, + { + "id": "11065", + "name": "Capela", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.50333000", + "longitude": "-37.05278000" + }, + { + "id": "11132", + "name": "Carira", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.36555000", + "longitude": "-37.74990000" + }, + { + "id": "11152", + "name": "Carmópolis", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.66710000", + "longitude": "-36.95751000" + }, + { + "id": "11232", + "name": "Cedro de São João", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.28046000", + "longitude": "-36.88830000" + }, + { + "id": "11478", + "name": "Cristinápolis", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.47556000", + "longitude": "-37.75528000" + }, + { + "id": "11515", + "name": "Cumbe", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.34959000", + "longitude": "-37.17665000" + }, + { + "id": "11599", + "name": "Divina Pastora", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.67935000", + "longitude": "-37.16817000" + }, + { + "id": "11757", + "name": "Estância", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.23831000", + "longitude": "-37.42046000" + }, + { + "id": "11791", + "name": "Feira Nova", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.31724000", + "longitude": "-37.33850000" + }, + { + "id": "11896", + "name": "Frei Paulo", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.52224000", + "longitude": "-37.58028000" + }, + { + "id": "11920", + "name": "Gararu", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.96750000", + "longitude": "-37.08333000" + }, + { + "id": "11937", + "name": "General Maynard", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.69412000", + "longitude": "-36.98304000" + }, + { + "id": "11991", + "name": "Gracho Cardoso", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.23500000", + "longitude": "-37.20389000" + }, + { + "id": "12210", + "name": "Ilha das Flores", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.44455000", + "longitude": "-36.56429000" + }, + { + "id": "12241", + "name": "Indiaroba", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.51917000", + "longitude": "-37.51167000" + }, + { + "id": "12326", + "name": "Itabaiana", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.68500000", + "longitude": "-37.42528000" + }, + { + "id": "12327", + "name": "Itabaianinha", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.26994000", + "longitude": "-37.79205000" + }, + { + "id": "12332", + "name": "Itabi", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.10882000", + "longitude": "-37.20004000" + }, + { + "id": "12431", + "name": "Itaporanga d'Ajuda", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.07087000", + "longitude": "-37.33296000" + }, + { + "id": "12567", + "name": "Japaratuba", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.59333000", + "longitude": "-36.94028000" + }, + { + "id": "12572", + "name": "Japoatã", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.34667000", + "longitude": "-36.80111000" + }, + { + "id": "12726", + "name": "Lagarto", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.89844000", + "longitude": "-37.67993000" + }, + { + "id": "12799", + "name": "Laranjeiras", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.80700000", + "longitude": "-37.16896000" + }, + { + "id": "12885", + "name": "Macambira", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.68545000", + "longitude": "-37.60003000" + }, + { + "id": "12927", + "name": "Malhada dos Bois", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.32806000", + "longitude": "-36.93573000" + }, + { + "id": "12928", + "name": "Malhador", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.65778000", + "longitude": "-37.30472000" + }, + { + "id": "13036", + "name": "Maruim", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.73750000", + "longitude": "-37.08167000" + }, + { + "id": "13169", + "name": "Moita Bonita", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.57750000", + "longitude": "-37.34278000" + }, + { + "id": "13190", + "name": "Monte Alegre de Sergipe", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.07263000", + "longitude": "-37.60470000" + }, + { + "id": "13279", + "name": "Muribeca", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.38925000", + "longitude": "-36.97628000" + }, + { + "id": "13320", + "name": "Neópolis", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.35698000", + "longitude": "-36.66870000" + }, + { + "id": "13336", + "name": "Nossa Senhora Aparecida", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.29846000", + "longitude": "-37.48812000" + }, + { + "id": "13337", + "name": "Nossa Senhora da Glória", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.19293000", + "longitude": "-37.53292000" + }, + { + "id": "13338", + "name": "Nossa Senhora das Dores", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.45356000", + "longitude": "-37.24677000" + }, + { + "id": "13340", + "name": "Nossa Senhora de Lourdes", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.10241000", + "longitude": "-37.02768000" + }, + { + "id": "13343", + "name": "Nossa Senhora do Socorro", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.85500000", + "longitude": "-37.12611000" + }, + { + "id": "13558", + "name": "Pacatuba", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.49466000", + "longitude": "-36.60382000" + }, + { + "id": "13755", + "name": "Pedra Mole", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.66490000", + "longitude": "-37.68505000" + }, + { + "id": "13769", + "name": "Pedrinhas", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.21666000", + "longitude": "-37.65664000" + }, + { + "id": "13874", + "name": "Pinhão", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.57105000", + "longitude": "-37.78582000" + }, + { + "id": "13891", + "name": "Pirambu", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.69075000", + "longitude": "-36.84859000" + }, + { + "id": "14048", + "name": "Poço Redondo", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.88033000", + "longitude": "-37.77612000" + }, + { + "id": "14049", + "name": "Poço Verde", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.81636000", + "longitude": "-38.15053000" + }, + { + "id": "14024", + "name": "Porto da Folha", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.98927000", + "longitude": "-37.48059000" + }, + { + "id": "14111", + "name": "Propriá", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.25379000", + "longitude": "-36.78579000" + }, + { + "id": "14224", + "name": "Riachão do Dantas", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.01281000", + "longitude": "-37.78679000" + }, + { + "id": "14218", + "name": "Riachuelo", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.71605000", + "longitude": "-37.22502000" + }, + { + "id": "14253", + "name": "Ribeirópolis", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.52176000", + "longitude": "-37.37833000" + }, + { + "id": "14353", + "name": "Rosário do Catete", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.68551000", + "longitude": "-37.03447000" + }, + { + "id": "14383", + "name": "Salgado", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.03194000", + "longitude": "-37.47500000" + }, + { + "id": "14494", + "name": "Santa Luzia do Itanhy", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.36149000", + "longitude": "-37.47848000" + }, + { + "id": "14543", + "name": "Santa Rosa de Lima", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.63139000", + "longitude": "-37.22866000" + }, + { + "id": "14594", + "name": "Santana do São Francisco", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.27648000", + "longitude": "-36.63314000" + }, + { + "id": "14605", + "name": "Santo Amaro das Brotas", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.78889000", + "longitude": "-37.05444000" + }, + { + "id": "14858", + "name": "São Cristóvão", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.01472000", + "longitude": "-37.20639000" + }, + { + "id": "14865", + "name": "São Domingos", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.78191000", + "longitude": "-37.56218000" + }, + { + "id": "14880", + "name": "São Francisco", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.33062000", + "longitude": "-36.86390000" + }, + { + "id": "15085", + "name": "São Miguel do Aleixo", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.36859000", + "longitude": "-37.35856000" + }, + { + "id": "14786", + "name": "Simão Dias", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.71163000", + "longitude": "-37.77142000" + }, + { + "id": "14794", + "name": "Siriri", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.58724000", + "longitude": "-37.12123000" + }, + { + "id": "15272", + "name": "Telha", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.17943000", + "longitude": "-36.86754000" + }, + { + "id": "15324", + "name": "Tobias Barreto", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.07792000", + "longitude": "-38.02178000" + }, + { + "id": "15331", + "name": "Tomar do Geru", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.37415000", + "longitude": "-37.87537000" + }, + { + "id": "15446", + "name": "Umbaúba", + "state_id": 2003, + "state_code": "SE", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.40045000", + "longitude": "-37.66270000" + }, + { + "id": "10067", + "name": "Abreulândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.43672000", + "longitude": "-49.31733000" + }, + { + "id": "10101", + "name": "Aguiarnópolis", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.48176000", + "longitude": "-47.51435000" + }, + { + "id": "10138", + "name": "Aliança do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.32864000", + "longitude": "-48.95855000" + }, + { + "id": "10140", + "name": "Almas", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.43527000", + "longitude": "-47.23635000" + }, + { + "id": "10194", + "name": "Alvorada", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.48000000", + "longitude": "-49.12472000" + }, + { + "id": "10235", + "name": "Ananás", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.14621000", + "longitude": "-48.21505000" + }, + { + "id": "10255", + "name": "Angico", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.34335000", + "longitude": "-47.93112000" + }, + { + "id": "10289", + "name": "Aparecida do Rio Negro", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.06183000", + "longitude": "-47.96514000" + }, + { + "id": "10317", + "name": "Aragominas", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.89259000", + "longitude": "-48.61589000" + }, + { + "id": "10326", + "name": "Araguaçu", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.72579000", + "longitude": "-49.74942000" + }, + { + "id": "10327", + "name": "Araguaína", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.31139000", + "longitude": "-48.62113000" + }, + { + "id": "10318", + "name": "Araguacema", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.91352000", + "longitude": "-49.40915000" + }, + { + "id": "10322", + "name": "Araguanã", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.76634000", + "longitude": "-48.52702000" + }, + { + "id": "10325", + "name": "Araguatins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.64071000", + "longitude": "-48.08859000" + }, + { + "id": "10338", + "name": "Arapoema", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.71941000", + "longitude": "-49.03285000" + }, + { + "id": "10409", + "name": "Arraias", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.84110000", + "longitude": "-46.90868000" + }, + { + "id": "10442", + "name": "Augustinópolis", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.51080000", + "longitude": "-47.91538000" + }, + { + "id": "10453", + "name": "Aurora do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.61624000", + "longitude": "-46.44441000" + }, + { + "id": "10462", + "name": "Axixá do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.64850000", + "longitude": "-47.77278000" + }, + { + "id": "10466", + "name": "Babaçulândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.20516000", + "longitude": "-47.76821000" + }, + { + "id": "10502", + "name": "Bandeirantes do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.00418000", + "longitude": "-48.68223000" + }, + { + "id": "10539", + "name": "Barra do Ouro", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.75845000", + "longitude": "-47.58781000" + }, + { + "id": "10565", + "name": "Barrolândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.84999000", + "longitude": "-48.83437000" + }, + { + "id": "10636", + "name": "Bernardo Sayão", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.97377000", + "longitude": "-48.98609000" + }, + { + "id": "10715", + "name": "Bom Jesus do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.01838000", + "longitude": "-47.86969000" + }, + { + "id": "10773", + "name": "Brasilândia do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.26045000", + "longitude": "-48.43450000" + }, + { + "id": "10787", + "name": "Brejinho de Nazaré", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.01872000", + "longitude": "-48.64695000" + }, + { + "id": "10827", + "name": "Buriti do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.37057000", + "longitude": "-48.13476000" + }, + { + "id": "10878", + "name": "Cachoeirinha", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.09807000", + "longitude": "-47.87888000" + }, + { + "id": "11012", + "name": "Campos Lindos", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.22553000", + "longitude": "-46.84507000" + }, + { + "id": "11133", + "name": "Cariri do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.94500000", + "longitude": "-49.20796000" + }, + { + "id": "11150", + "name": "Carmolândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.03001000", + "longitude": "-48.35627000" + }, + { + "id": "11165", + "name": "Carrasco Bonito", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.31027000", + "longitude": "-48.03360000" + }, + { + "id": "11178", + "name": "Caseara", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.45982000", + "longitude": "-49.83604000" + }, + { + "id": "11235", + "name": "Centenário", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.15331000", + "longitude": "-47.44772000" + }, + { + "id": "11261", + "name": "Chapada da Natividade", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.54159000", + "longitude": "-47.88094000" + }, + { + "id": "11262", + "name": "Chapada de Areia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.14838000", + "longitude": "-49.19998000" + }, + { + "id": "11325", + "name": "Colinas do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.09451000", + "longitude": "-48.52143000" + }, + { + "id": "11326", + "name": "Colméia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.87655000", + "longitude": "-48.75788000" + }, + { + "id": "11339", + "name": "Combinado", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.82321000", + "longitude": "-46.53424000" + }, + { + "id": "11363", + "name": "Conceição do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.09878000", + "longitude": "-47.27047000" + }, + { + "id": "11455", + "name": "Couto Magalhães", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.50138000", + "longitude": "-49.17287000" + }, + { + "id": "11472", + "name": "Cristalândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.62568000", + "longitude": "-49.36863000" + }, + { + "id": "11484", + "name": "Crixás do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.16426000", + "longitude": "-49.07254000" + }, + { + "id": "11562", + "name": "Darcinópolis", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.76072000", + "longitude": "-47.75687000" + }, + { + "id": "11590", + "name": "Dianópolis", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.69578000", + "longitude": "-46.73544000" + }, + { + "id": "11608", + "name": "Divinópolis do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.65731000", + "longitude": "-49.38737000" + }, + { + "id": "11617", + "name": "Dois Irmãos do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.29074000", + "longitude": "-49.15573000" + }, + { + "id": "11666", + "name": "Dueré", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.35537000", + "longitude": "-49.46137000" + }, + { + "id": "11728", + "name": "Esperantina", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.30432000", + "longitude": "-48.54762000" + }, + { + "id": "11906", + "name": "Fátima", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.81953000", + "longitude": "-48.86757000" + }, + { + "id": "11818", + "name": "Figueirópolis", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.26857000", + "longitude": "-49.28976000" + }, + { + "id": "11820", + "name": "Filadélfia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.48804000", + "longitude": "-47.85623000" + }, + { + "id": "11859", + "name": "Formoso do Araguaia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.95898000", + "longitude": "-50.09809000" + }, + { + "id": "11865", + "name": "Fortaleza do Tabocão", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.08805000", + "longitude": "-48.55638000" + }, + { + "id": "11961", + "name": "Goianorte", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.83664000", + "longitude": "-48.99356000" + }, + { + "id": "11966", + "name": "Goiatins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.04432000", + "longitude": "-47.47183000" + }, + { + "id": "12061", + "name": "Guaraí", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.70233000", + "longitude": "-48.40251000" + }, + { + "id": "12088", + "name": "Gurupi", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.72917000", + "longitude": "-49.06861000" + }, + { + "id": "12294", + "name": "Ipueiras", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.15847000", + "longitude": "-48.37886000" + }, + { + "id": "12338", + "name": "Itacajá", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.55538000", + "longitude": "-47.62201000" + }, + { + "id": "12354", + "name": "Itaguatins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.81408000", + "longitude": "-47.65425000" + }, + { + "id": "12425", + "name": "Itapiratins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.35820000", + "longitude": "-47.99703000" + }, + { + "id": "12434", + "name": "Itaporã do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.50178000", + "longitude": "-48.75214000" + }, + { + "id": "12610", + "name": "Jaú do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.83943000", + "longitude": "-48.63203000" + }, + { + "id": "12670", + "name": "Juarina", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.10180000", + "longitude": "-49.07995000" + }, + { + "id": "12750", + "name": "Lagoa da Confusão", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.99307000", + "longitude": "-49.93702000" + }, + { + "id": "12764", + "name": "Lagoa do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.33721000", + "longitude": "-47.48133000" + }, + { + "id": "12776", + "name": "Lajeado", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.86927000", + "longitude": "-48.28058000" + }, + { + "id": "12807", + "name": "Lavandeira", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.83658000", + "longitude": "-46.39307000" + }, + { + "id": "12845", + "name": "Lizarda", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.52341000", + "longitude": "-46.97679000" + }, + { + "id": "12876", + "name": "Luzinópolis", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.20636000", + "longitude": "-47.83045000" + }, + { + "id": "13010", + "name": "Marianópolis do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.81443000", + "longitude": "-49.71607000" + }, + { + "id": "13051", + "name": "Mateiros", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.41802000", + "longitude": "-46.48380000" + }, + { + "id": "13081", + "name": "Maurilândia do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.98609000", + "longitude": "-47.57986000" + }, + { + "id": "13133", + "name": "Miracema do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.76855000", + "longitude": "-48.58348000" + }, + { + "id": "13144", + "name": "Miranorte", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.39114000", + "longitude": "-48.66598000" + }, + { + "id": "13214", + "name": "Monte do Carmo", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.72034000", + "longitude": "-48.01807000" + }, + { + "id": "13210", + "name": "Monte Santo do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.00972000", + "longitude": "-49.12747000" + }, + { + "id": "13282", + "name": "Muricilândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.98598000", + "longitude": "-48.79167000" + }, + { + "id": "13302", + "name": "Natividade", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.75889000", + "longitude": "-47.64485000" + }, + { + "id": "13310", + "name": "Nazaré", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.31311000", + "longitude": "-47.78944000" + }, + { + "id": "13409", + "name": "Nova Olinda", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.68973000", + "longitude": "-48.28152000" + }, + { + "id": "13429", + "name": "Nova Rosalândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.56285000", + "longitude": "-48.97053000" + }, + { + "id": "13450", + "name": "Novo Acordo", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.15197000", + "longitude": "-47.47165000" + }, + { + "id": "13452", + "name": "Novo Alegre", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.87311000", + "longitude": "-46.56936000" + }, + { + "id": "13467", + "name": "Novo Jardim", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.75148000", + "longitude": "-46.54138000" + }, + { + "id": "13508", + "name": "Oliveira de Fátima", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.67053000", + "longitude": "-48.90783000" + }, + { + "id": "13587", + "name": "Palmas", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.16745000", + "longitude": "-48.32766000" + }, + { + "id": "13596", + "name": "Palmeirante", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.86937000", + "longitude": "-48.17585000" + }, + { + "id": "13599", + "name": "Palmeiras do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.61304000", + "longitude": "-47.66259000" + }, + { + "id": "13602", + "name": "Palmeirópolis", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-13.06026000", + "longitude": "-48.38866000" + }, + { + "id": "13664", + "name": "Paraíso do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.23212000", + "longitude": "-48.88032000" + }, + { + "id": "13649", + "name": "Paranã", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.73875000", + "longitude": "-47.94338000" + }, + { + "id": "13716", + "name": "Pau d'Arco", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.55877000", + "longitude": "-48.93697000" + }, + { + "id": "13772", + "name": "Pedro Afonso", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.20623000", + "longitude": "-47.97805000" + }, + { + "id": "13787", + "name": "Peixe", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.99612000", + "longitude": "-48.53284000" + }, + { + "id": "13801", + "name": "Pequizeiro", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.40977000", + "longitude": "-48.94148000" + }, + { + "id": "13855", + "name": "Pindorama do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.13233000", + "longitude": "-47.56170000" + }, + { + "id": "13905", + "name": "Piraquê", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.68862000", + "longitude": "-48.23711000" + }, + { + "id": "13926", + "name": "Pium", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.07399000", + "longitude": "-49.69857000" + }, + { + "id": "13966", + "name": "Ponte Alta do Bom Jesus", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.09696000", + "longitude": "-46.62629000" + }, + { + "id": "13968", + "name": "Ponte Alta do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.78604000", + "longitude": "-47.18130000" + }, + { + "id": "13997", + "name": "Porto Alegre do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.53239000", + "longitude": "-47.03453000" + }, + { + "id": "14012", + "name": "Porto Nacional", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.52826000", + "longitude": "-48.47443000" + }, + { + "id": "14065", + "name": "Praia Norte", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.46958000", + "longitude": "-47.79732000" + }, + { + "id": "14088", + "name": "Presidente Kennedy", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.48264000", + "longitude": "-48.44075000" + }, + { + "id": "14115", + "name": "Pugmil", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.42875000", + "longitude": "-48.85558000" + }, + { + "id": "14181", + "name": "Recursolândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.66852000", + "longitude": "-47.07333000" + }, + { + "id": "14208", + "name": "Riachinho", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.46034000", + "longitude": "-48.13618000" + }, + { + "id": "14303", + "name": "Rio da Conceição", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.36815000", + "longitude": "-46.77445000" + }, + { + "id": "14317", + "name": "Rio dos Bois", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.20901000", + "longitude": "-48.44308000" + }, + { + "id": "14297", + "name": "Rio Sono", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.64479000", + "longitude": "-47.38387000" + }, + { + "id": "14409", + "name": "Sampaio", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.36587000", + "longitude": "-47.91898000" + }, + { + "id": "14412", + "name": "Sandolândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.40743000", + "longitude": "-49.85491000" + }, + { + "id": "14467", + "name": "Santa Fé do Araguaia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-7.10746000", + "longitude": "-48.95580000" + }, + { + "id": "14517", + "name": "Santa Maria do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.81566000", + "longitude": "-47.85337000" + }, + { + "id": "14538", + "name": "Santa Rita do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.97360000", + "longitude": "-49.37112000" + }, + { + "id": "14549", + "name": "Santa Rosa do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.38278000", + "longitude": "-48.07295000" + }, + { + "id": "14556", + "name": "Santa Tereza do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.29980000", + "longitude": "-47.72597000" + }, + { + "id": "14564", + "name": "Santa Terezinha do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.48040000", + "longitude": "-47.70055000" + }, + { + "id": "14841", + "name": "São Bento do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.95028000", + "longitude": "-47.99630000" + }, + { + "id": "14905", + "name": "São Félix do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-10.06488000", + "longitude": "-46.72778000" + }, + { + "id": "15096", + "name": "São Miguel do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.53458000", + "longitude": "-47.60820000" + }, + { + "id": "15134", + "name": "São Salvador do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.54945000", + "longitude": "-48.40184000" + }, + { + "id": "15152", + "name": "São Sebastião do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.25181000", + "longitude": "-48.34602000" + }, + { + "id": "15165", + "name": "São Valério", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.86029000", + "longitude": "-48.13995000" + }, + { + "id": "15178", + "name": "Sítio Novo do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-5.62990000", + "longitude": "-47.68644000" + }, + { + "id": "14776", + "name": "Silvanópolis", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-11.11343000", + "longitude": "-48.22341000" + }, + { + "id": "14817", + "name": "Sucupira", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.01900000", + "longitude": "-48.84477000" + }, + { + "id": "15198", + "name": "Taguatinga", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.38568000", + "longitude": "-46.57110000" + }, + { + "id": "15203", + "name": "Taipas do Tocantins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.15677000", + "longitude": "-47.03342000" + }, + { + "id": "15207", + "name": "Talismã", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-12.67795000", + "longitude": "-49.07863000" + }, + { + "id": "15327", + "name": "Tocantínia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-9.56440000", + "longitude": "-48.18709000" + }, + { + "id": "15326", + "name": "Tocantinópolis", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.26254000", + "longitude": "-47.55767000" + }, + { + "id": "15406", + "name": "Tupirama", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.91920000", + "longitude": "-48.27661000" + }, + { + "id": "15407", + "name": "Tupiratins", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-8.38578000", + "longitude": "-48.22299000" + }, + { + "id": "15627", + "name": "Wanderlândia", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.79803000", + "longitude": "-48.00415000" + }, + { + "id": "15633", + "name": "Xambioá", + "state_id": 2020, + "state_code": "TO", + "country_id": 31, + "country_code": "BR", + "latitude": "-6.59413000", + "longitude": "-48.43142000" + }, + { + "id": "9820", + "name": "Kuala Belait", + "state_id": 1217, + "state_code": "BE", + "country_id": 33, + "country_code": "BN", + "latitude": "4.58361000", + "longitude": "114.23120000" + }, + { + "id": "9823", + "name": "Seria", + "state_id": 1217, + "state_code": "BE", + "country_id": 33, + "country_code": "BN", + "latitude": "4.60637000", + "longitude": "114.32476000" + }, + { + "id": "9816", + "name": "Bandar Seri Begawan", + "state_id": 1216, + "state_code": "BM", + "country_id": 33, + "country_code": "BN", + "latitude": "4.89035000", + "longitude": "114.94006000" + }, + { + "id": "9818", + "name": "Berakas A", + "state_id": 1216, + "state_code": "BM", + "country_id": 33, + "country_code": "BN", + "latitude": "4.97032000", + "longitude": "114.92989000" + }, + { + "id": "9819", + "name": "Kapok", + "state_id": 1216, + "state_code": "BM", + "country_id": 33, + "country_code": "BN", + "latitude": "5.02447000", + "longitude": "115.04664000" + }, + { + "id": "9821", + "name": "Mentiri", + "state_id": 1216, + "state_code": "BM", + "country_id": 33, + "country_code": "BN", + "latitude": "4.97058000", + "longitude": "115.02078000" + }, + { + "id": "9822", + "name": "Serasa", + "state_id": 1216, + "state_code": "BM", + "country_id": 33, + "country_code": "BN", + "latitude": "5.01718000", + "longitude": "115.05841000" + }, + { + "id": "9817", + "name": "Bangar", + "state_id": 1218, + "state_code": "TE", + "country_id": 33, + "country_code": "BN", + "latitude": "4.70861000", + "longitude": "115.07167000" + }, + { + "id": "9824", + "name": "Tutong", + "state_id": 1219, + "state_code": "TU", + "country_id": 33, + "country_code": "BN", + "latitude": "4.80278000", + "longitude": "114.64917000" + }, + { + "id": "9265", + "name": "Bansko", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.83830000", + "longitude": "23.48851000" + }, + { + "id": "9270", + "name": "Belitsa", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.95694000", + "longitude": "23.57250000" + }, + { + "id": "9275", + "name": "Blagoevgrad", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "42.01667000", + "longitude": "23.10000000" + }, + { + "id": "9329", + "name": "Garmen", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.60000000", + "longitude": "23.81667000" + }, + { + "id": "9335", + "name": "Gotse Delchev", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.56667000", + "longitude": "23.73333000" + }, + { + "id": "9341", + "name": "Hadzhidimovo", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.52222000", + "longitude": "23.86861000" + }, + { + "id": "9368", + "name": "Kolarovo", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.36385000", + "longitude": "23.10669000" + }, + { + "id": "9374", + "name": "Kresna", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.73333000", + "longitude": "23.15000000" + }, + { + "id": "9422", + "name": "Obshtina Bansko", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.80000000", + "longitude": "23.60000000" + }, + { + "id": "9425", + "name": "Obshtina Belitsa", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "42.01667000", + "longitude": "23.58333000" + }, + { + "id": "9429", + "name": "Obshtina Blagoevgrad", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "42.01667000", + "longitude": "23.16667000" + }, + { + "id": "9476", + "name": "Obshtina Garmen", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.70000000", + "longitude": "23.85000000" + }, + { + "id": "9482", + "name": "Obshtina Gotse Delchev", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.63333000", + "longitude": "23.68333000" + }, + { + "id": "9511", + "name": "Obshtina Kresna", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.76667000", + "longitude": "23.23333000" + }, + { + "id": "9555", + "name": "Obshtina Petrich", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.45000000", + "longitude": "23.16667000" + }, + { + "id": "9571", + "name": "Obshtina Razlog", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.95000000", + "longitude": "23.46667000" + }, + { + "id": "9582", + "name": "Obshtina Sandanski", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.56667000", + "longitude": "23.45000000" + }, + { + "id": "9584", + "name": "Obshtina Satovcha", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.59848000", + "longitude": "24.00781000" + }, + { + "id": "9589", + "name": "Obshtina Simitli", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.88333000", + "longitude": "23.16667000" + }, + { + "id": "9603", + "name": "Obshtina Strumyani", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.63333000", + "longitude": "23.20000000" + }, + { + "id": "9633", + "name": "Obshtina Yakoruda", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "42.08333000", + "longitude": "23.70000000" + }, + { + "id": "9653", + "name": "Petrich", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.39846000", + "longitude": "23.20702000" + }, + { + "id": "9670", + "name": "Razlog", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.88630000", + "longitude": "23.46714000" + }, + { + "id": "9681", + "name": "Sandanski", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.56667000", + "longitude": "23.28333000" + }, + { + "id": "9686", + "name": "Satovcha", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.61667000", + "longitude": "23.98333000" + }, + { + "id": "9694", + "name": "Simitli", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.88333000", + "longitude": "23.11667000" + }, + { + "id": "9705", + "name": "Stara Kresna", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.80000000", + "longitude": "23.18333000" + }, + { + "id": "9711", + "name": "Strumyani", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "41.63333000", + "longitude": "23.20000000" + }, + { + "id": "9745", + "name": "Yakoruda", + "state_id": 4699, + "state_code": "01", + "country_id": 34, + "country_code": "BG", + "latitude": "42.02528000", + "longitude": "23.68417000" + }, + { + "id": "9250", + "name": "Aheloy", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.64987000", + "longitude": "27.64838000" + }, + { + "id": "9251", + "name": "Ahtopol", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.09768000", + "longitude": "27.93961000" + }, + { + "id": "9261", + "name": "Aytos", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.70000000", + "longitude": "27.25000000" + }, + { + "id": "9266", + "name": "Bata", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.73802000", + "longitude": "27.49643000" + }, + { + "id": "9292", + "name": "Burgas", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.50606000", + "longitude": "27.46781000" + }, + { + "id": "9299", + "name": "Chernomorets", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.44408000", + "longitude": "27.63902000" + }, + { + "id": "9353", + "name": "Kameno", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.57084000", + "longitude": "27.29875000" + }, + { + "id": "9356", + "name": "Karnobat", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.65000000", + "longitude": "26.98333000" + }, + { + "id": "9363", + "name": "Kiten", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.23424000", + "longitude": "27.77490000" + }, + { + "id": "9397", + "name": "Malko Tarnovo", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "41.97958000", + "longitude": "27.52477000" + }, + { + "id": "9406", + "name": "Nesebar", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.65921000", + "longitude": "27.73602000" + }, + { + "id": "9419", + "name": "Obshtina Aytos", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.70000000", + "longitude": "27.25000000" + }, + { + "id": "9442", + "name": "Obshtina Burgas", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.50000000", + "longitude": "27.46667000" + }, + { + "id": "9495", + "name": "Obshtina Kameno", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.51667000", + "longitude": "27.18333000" + }, + { + "id": "9498", + "name": "Obshtina Karnobat", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.65000000", + "longitude": "26.98333000" + }, + { + "id": "9529", + "name": "Obshtina Malko Tarnovo", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.08333000", + "longitude": "27.53333000" + }, + { + "id": "9538", + "name": "Obshtina Nesebar", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.78333000", + "longitude": "27.73333000" + }, + { + "id": "9560", + "name": "Obshtina Pomorie", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.73333000", + "longitude": "27.55000000" + }, + { + "id": "9564", + "name": "Obshtina Primorsko", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.25000000", + "longitude": "27.63333000" + }, + { + "id": "9596", + "name": "Obshtina Sozopol", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.31123000", + "longitude": "27.51733000" + }, + { + "id": "9605", + "name": "Obshtina Sungurlare", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.83333000", + "longitude": "26.83333000" + }, + { + "id": "9640", + "name": "Obzor", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.81998000", + "longitude": "27.88007000" + }, + { + "id": "9658", + "name": "Pomorie", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.56326000", + "longitude": "27.62986000" + }, + { + "id": "9662", + "name": "Primorsko", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.26791000", + "longitude": "27.75611000" + }, + { + "id": "9668", + "name": "Ravda", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.64185000", + "longitude": "27.67713000" + }, + { + "id": "9674", + "name": "Ruen", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.80000000", + "longitude": "27.28333000" + }, + { + "id": "9683", + "name": "Sarafovo", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.56079000", + "longitude": "27.52195000" + }, + { + "id": "9702", + "name": "Sozopol", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.41801000", + "longitude": "27.69560000" + }, + { + "id": "9703", + "name": "Sredets", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.34747000", + "longitude": "27.17898000" + }, + { + "id": "9713", + "name": "Sungurlare", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.76667000", + "longitude": "26.78333000" + }, + { + "id": "9715", + "name": "Sveti Vlas", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.71360000", + "longitude": "27.75867000" + }, + { + "id": "9728", + "name": "Tsarevo", + "state_id": 4715, + "state_code": "02", + "country_id": 34, + "country_code": "BG", + "latitude": "42.16955000", + "longitude": "27.84541000" + }, + { + "id": "9262", + "name": "Balchik", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.42166000", + "longitude": "28.15848000" + }, + { + "id": "9310", + "name": "Dobrich", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.56667000", + "longitude": "27.83333000" + }, + { + "id": "9330", + "name": "General Toshevo", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.70123000", + "longitude": "28.03787000" + }, + { + "id": "9357", + "name": "Kavarna", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.43601000", + "longitude": "28.33953000" + }, + { + "id": "9378", + "name": "Krushari", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.81675000", + "longitude": "27.75552000" + }, + { + "id": "9420", + "name": "Obshtina Balchik", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.50000000", + "longitude": "28.13333000" + }, + { + "id": "9457", + "name": "Obshtina Dobrich", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.57763000", + "longitude": "27.80628000" + }, + { + "id": "9458", + "name": "Obshtina Dobrich-Selska", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.63333000", + "longitude": "27.73333000" + }, + { + "id": "9477", + "name": "Obshtina General Toshevo", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.73333000", + "longitude": "28.08333000" + }, + { + "id": "9499", + "name": "Obshtina Kavarna", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.50000000", + "longitude": "28.38333000" + }, + { + "id": "9514", + "name": "Obshtina Krushari", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.88333000", + "longitude": "27.75000000" + }, + { + "id": "9587", + "name": "Obshtina Shabla", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.61667000", + "longitude": "28.51667000" + }, + { + "id": "9611", + "name": "Obshtina Tervel", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.75000000", + "longitude": "27.40000000" + }, + { + "id": "9690", + "name": "Shabla", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.53983000", + "longitude": "28.53429000" + }, + { + "id": "9720", + "name": "Tervel", + "state_id": 4718, + "state_code": "08", + "country_id": 34, + "country_code": "BG", + "latitude": "43.74789000", + "longitude": "27.40911000" + }, + { + "id": "9318", + "name": "Dryanovo", + "state_id": 4693, + "state_code": "07", + "country_id": 34, + "country_code": "BG", + "latitude": "42.97897000", + "longitude": "25.47850000" + }, + { + "id": "9328", + "name": "Gabrovo", + "state_id": 4693, + "state_code": "07", + "country_id": 34, + "country_code": "BG", + "latitude": "42.87472000", + "longitude": "25.33417000" + }, + { + "id": "9465", + "name": "Obshtina Dryanovo", + "state_id": 4693, + "state_code": "07", + "country_id": 34, + "country_code": "BG", + "latitude": "43.00000000", + "longitude": "25.46667000" + }, + { + "id": "9474", + "name": "Obshtina Gabrovo", + "state_id": 4693, + "state_code": "07", + "country_id": 34, + "country_code": "BG", + "latitude": "42.90000000", + "longitude": "25.30000000" + }, + { + "id": "9586", + "name": "Obshtina Sevlievo", + "state_id": 4693, + "state_code": "07", + "country_id": 34, + "country_code": "BG", + "latitude": "43.01667000", + "longitude": "25.10000000" + }, + { + "id": "9615", + "name": "Obshtina Tryavna", + "state_id": 4693, + "state_code": "07", + "country_id": 34, + "country_code": "BG", + "latitude": "42.85000000", + "longitude": "25.55000000" + }, + { + "id": "9689", + "name": "Sevlievo", + "state_id": 4693, + "state_code": "07", + "country_id": 34, + "country_code": "BG", + "latitude": "43.02583000", + "longitude": "25.11361000" + }, + { + "id": "9726", + "name": "Tryavna", + "state_id": 4693, + "state_code": "07", + "country_id": 34, + "country_code": "BG", + "latitude": "42.86667000", + "longitude": "25.50000000" + }, + { + "id": "9308", + "name": "Dimitrovgrad", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "42.05000000", + "longitude": "25.60000000" + }, + { + "id": "9342", + "name": "Harmanli", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.93333000", + "longitude": "25.90000000" + }, + { + "id": "9343", + "name": "Haskovo", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.93415000", + "longitude": "25.55557000" + }, + { + "id": "9350", + "name": "Ivaylovgrad", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.52672000", + "longitude": "26.12490000" + }, + { + "id": "9392", + "name": "Lyubimets", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.83333000", + "longitude": "26.08333000" + }, + { + "id": "9394", + "name": "Madzharovo", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.63461000", + "longitude": "25.86439000" + }, + { + "id": "9401", + "name": "Mineralni Bani", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.91667000", + "longitude": "25.35000000" + }, + { + "id": "9455", + "name": "Obshtina Dimitrovgrad", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "42.05000000", + "longitude": "25.60000000" + }, + { + "id": "9486", + "name": "Obshtina Harmanli", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.93333000", + "longitude": "25.98333000" + }, + { + "id": "9487", + "name": "Obshtina Haskovo", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.88333000", + "longitude": "25.61667000" + }, + { + "id": "9493", + "name": "Obshtina Ivaylovgrad", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.48333000", + "longitude": "26.00000000" + }, + { + "id": "9527", + "name": "Obshtina Madzharovo", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.68333000", + "longitude": "25.90000000" + }, + { + "id": "9532", + "name": "Obshtina Mineralni Bani", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.90000000", + "longitude": "25.33333000" + }, + { + "id": "9598", + "name": "Obshtina Stambolovo", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.73333000", + "longitude": "25.70000000" + }, + { + "id": "9607", + "name": "Obshtina Svilengrad", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.86667000", + "longitude": "26.31667000" + }, + { + "id": "9613", + "name": "Obshtina Topolovgrad", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "42.08333000", + "longitude": "26.33333000" + }, + { + "id": "9693", + "name": "Simeonovgrad", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "42.03333000", + "longitude": "25.83333000" + }, + { + "id": "9716", + "name": "Svilengrad", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "41.76667000", + "longitude": "26.20000000" + }, + { + "id": "9722", + "name": "Topolovgrad", + "state_id": 4704, + "state_code": "26", + "country_id": 34, + "country_code": "BG", + "latitude": "42.08333000", + "longitude": "26.33333000" + }, + { + "id": "9257", + "name": "Ardino", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.58333000", + "longitude": "25.13333000" + }, + { + "id": "9323", + "name": "Dzhebel", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.49566000", + "longitude": "25.30363000" + }, + { + "id": "9354", + "name": "Kardzhali", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.65000000", + "longitude": "25.36667000" + }, + { + "id": "9362", + "name": "Kirkovo", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.32715000", + "longitude": "25.36379000" + }, + { + "id": "9377", + "name": "Krumovgrad", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.47127000", + "longitude": "25.65485000" + }, + { + "id": "9416", + "name": "Obshtina Ardino", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.60000000", + "longitude": "25.15000000" + }, + { + "id": "9448", + "name": "Obshtina Chernoochene", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.78333000", + "longitude": "25.25000000" + }, + { + "id": "9469", + "name": "Obshtina Dzhebel", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.50000000", + "longitude": "25.26667000" + }, + { + "id": "9496", + "name": "Obshtina Kardzhali", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.68333000", + "longitude": "25.43333000" + }, + { + "id": "9502", + "name": "Obshtina Kirkovo", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.35816000", + "longitude": "25.33731000" + }, + { + "id": "9535", + "name": "Obshtina Momchilgrad", + "state_id": 4702, + "state_code": "09", + "country_id": 34, + "country_code": "BG", + "latitude": "41.53333000", + "longitude": "25.50000000" + }, + { + "id": "9276", + "name": "Boboshevo", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.15296000", + "longitude": "23.00146000" + }, + { + "id": "9277", + "name": "Bobov Dol", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.36256000", + "longitude": "23.00324000" + }, + { + "id": "9321", + "name": "Dupnitsa", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.26667000", + "longitude": "23.11667000" + }, + { + "id": "9367", + "name": "Kocherinovo", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.08439000", + "longitude": "23.05710000" + }, + { + "id": "9381", + "name": "Kyustendil", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.28389000", + "longitude": "22.69111000" + }, + { + "id": "9407", + "name": "Nevestino", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.25551000", + "longitude": "22.85175000" + }, + { + "id": "9430", + "name": "Obshtina Boboshevo", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.18333000", + "longitude": "23.02731000" + }, + { + "id": "9431", + "name": "Obshtina Bobov Dol", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.31667000", + "longitude": "22.98333000" + }, + { + "id": "9467", + "name": "Obshtina Dupnitsa", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.28333000", + "longitude": "23.15000000" + }, + { + "id": "9504", + "name": "Obshtina Kocherinovo", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.09909000", + "longitude": "23.02942000" + }, + { + "id": "9518", + "name": "Obshtina Kyustendil", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.28333000", + "longitude": "22.68333000" + }, + { + "id": "9539", + "name": "Obshtina Nevestino", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.16667000", + "longitude": "22.83333000" + }, + { + "id": "9572", + "name": "Obshtina Rila", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.15000000", + "longitude": "23.31667000" + }, + { + "id": "9583", + "name": "Obshtina Sapareva Banya", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.28333000", + "longitude": "23.31667000" + }, + { + "id": "9614", + "name": "Obshtina Treklyano", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.55000000", + "longitude": "22.60000000" + }, + { + "id": "9671", + "name": "Rila", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.13333000", + "longitude": "23.13333000" + }, + { + "id": "9682", + "name": "Sapareva Banya", + "state_id": 4703, + "state_code": "10", + "country_id": 34, + "country_code": "BG", + "latitude": "42.28333000", + "longitude": "23.26667000" + }, + { + "id": "9256", + "name": "Apriltsi", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "42.84142000", + "longitude": "24.91759000" + }, + { + "id": "9385", + "name": "Letnitsa", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "43.31167000", + "longitude": "25.07333000" + }, + { + "id": "9388", + "name": "Lovech", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "43.13333000", + "longitude": "24.71667000" + }, + { + "id": "9390", + "name": "Lukovit", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "43.20000000", + "longitude": "24.16667000" + }, + { + "id": "9523", + "name": "Obshtina Lovech", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "43.16667000", + "longitude": "24.80000000" + }, + { + "id": "9612", + "name": "Obshtina Teteven", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "42.91667000", + "longitude": "24.26667000" + }, + { + "id": "9621", + "name": "Obshtina Ugarchin", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "43.10000000", + "longitude": "24.41667000" + }, + { + "id": "9721", + "name": "Teteven", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "42.91667000", + "longitude": "24.26667000" + }, + { + "id": "9725", + "name": "Troyan", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "42.89427000", + "longitude": "24.71589000" + }, + { + "id": "9732", + "name": "Ugarchin", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "43.10000000", + "longitude": "24.41667000" + }, + { + "id": "9743", + "name": "Yablanitsa", + "state_id": 4710, + "state_code": "11", + "country_id": 34, + "country_code": "BG", + "latitude": "43.03139000", + "longitude": "24.11278000" + }, + { + "id": "9274", + "name": "Berkovitsa", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.23581000", + "longitude": "23.12738000" + }, + { + "id": "9283", + "name": "Boychinovtsi", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.47222000", + "longitude": "23.33583000" + }, + { + "id": "9290", + "name": "Brusartsi", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.66075000", + "longitude": "23.06732000" + }, + { + "id": "9301", + "name": "Chiprovtsi", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.38417000", + "longitude": "22.88083000" + }, + { + "id": "9387", + "name": "Lom", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.82106000", + "longitude": "23.23677000" + }, + { + "id": "9398", + "name": "Medkovets", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.62403000", + "longitude": "23.16876000" + }, + { + "id": "9404", + "name": "Montana", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.41250000", + "longitude": "23.22500000" + }, + { + "id": "9437", + "name": "Obshtina Boychinovtsi", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.53333000", + "longitude": "23.43333000" + }, + { + "id": "9450", + "name": "Obshtina Chiprovtsi", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.41667000", + "longitude": "22.90000000" + }, + { + "id": "9478", + "name": "Obshtina Georgi Damyanovo", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.35000000", + "longitude": "23.00000000" + }, + { + "id": "9522", + "name": "Obshtina Lom", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.81667000", + "longitude": "23.23333000" + }, + { + "id": "9536", + "name": "Obshtina Montana", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.46667000", + "longitude": "23.20000000" + }, + { + "id": "9622", + "name": "Obshtina Valchedram", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.71667000", + "longitude": "23.51667000" + }, + { + "id": "9625", + "name": "Obshtina Varshets", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.21667000", + "longitude": "23.33333000" + }, + { + "id": "9632", + "name": "Obshtina Yakimovo", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.63333000", + "longitude": "23.33333000" + }, + { + "id": "9733", + "name": "Valchedram", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.69281000", + "longitude": "23.44518000" + }, + { + "id": "9736", + "name": "Varshets", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.19356000", + "longitude": "23.28680000" + }, + { + "id": "9744", + "name": "Yakimovo", + "state_id": 4696, + "state_code": "12", + "country_id": 34, + "country_code": "BG", + "latitude": "43.63472000", + "longitude": "23.35350000" + }, + { + "id": "9267", + "name": "Batak", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "41.94225000", + "longitude": "24.21843000" + }, + { + "id": "9273", + "name": "Belovo", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.21239000", + "longitude": "24.02081000" + }, + { + "id": "9286", + "name": "Bratsigovo", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.01667000", + "longitude": "24.36667000" + }, + { + "id": "9384", + "name": "Lesichovo", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.35626000", + "longitude": "24.11190000" + }, + { + "id": "9423", + "name": "Obshtina Batak", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "41.86667000", + "longitude": "24.21667000" + }, + { + "id": "9428", + "name": "Obshtina Belovo", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.20000000", + "longitude": "23.93333000" + }, + { + "id": "9440", + "name": "Obshtina Bratsigovo", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.00000000", + "longitude": "24.40000000" + }, + { + "id": "9520", + "name": "Obshtina Lesichovo", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.36667000", + "longitude": "24.15000000" + }, + { + "id": "9547", + "name": "Obshtina Panagyurishte", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.50000000", + "longitude": "24.16667000" + }, + { + "id": "9551", + "name": "Obshtina Pazardzhik", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.20000000", + "longitude": "24.33333000" + }, + { + "id": "9554", + "name": "Obshtina Peshtera", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.03333000", + "longitude": "24.30000000" + }, + { + "id": "9568", + "name": "Obshtina Rakitovo", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "41.99965000", + "longitude": "24.10877000" + }, + { + "id": "9585", + "name": "Obshtina Septemvri", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.26667000", + "longitude": "24.13333000" + }, + { + "id": "9602", + "name": "Obshtina Strelcha", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.46667000", + "longitude": "24.36667000" + }, + { + "id": "9627", + "name": "Obshtina Velingrad", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "41.96667000", + "longitude": "23.93333000" + }, + { + "id": "9644", + "name": "Panagyurishte", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.49518000", + "longitude": "24.19021000" + }, + { + "id": "9649", + "name": "Pazardzhik", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.20000000", + "longitude": "24.33333000" + }, + { + "id": "9652", + "name": "Peshtera", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.03372000", + "longitude": "24.29995000" + }, + { + "id": "9666", + "name": "Rakitovo", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "41.99012000", + "longitude": "24.08730000" + }, + { + "id": "9684", + "name": "Sarnitsa", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "41.73835000", + "longitude": "24.02435000" + }, + { + "id": "9685", + "name": "Sarnitsa Obshtina", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "41.73333000", + "longitude": "24.03333000" + }, + { + "id": "9688", + "name": "Septemvri", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.21138000", + "longitude": "24.12946000" + }, + { + "id": "9710", + "name": "Strelcha", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.50000000", + "longitude": "24.31667000" + }, + { + "id": "9738", + "name": "Velingrad", + "state_id": 4712, + "state_code": "13", + "country_id": 34, + "country_code": "BG", + "latitude": "42.02754000", + "longitude": "23.99155000" + }, + { + "id": "9268", + "name": "Batanovtsi", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.59692000", + "longitude": "22.95634000" + }, + { + "id": "9288", + "name": "Breznik", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.74085000", + "longitude": "22.90723000" + }, + { + "id": "9509", + "name": "Obshtina Kovachevtsi", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.55000000", + "longitude": "22.83333000" + }, + { + "id": "9552", + "name": "Obshtina Pernik", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.61667000", + "longitude": "23.08333000" + }, + { + "id": "9567", + "name": "Obshtina Radomir", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.46667000", + "longitude": "23.01667000" + }, + { + "id": "9636", + "name": "Obshtina Zemen", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.55067000", + "longitude": "22.71440000" + }, + { + "id": "9650", + "name": "Pernik", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.60000000", + "longitude": "23.03333000" + }, + { + "id": "9665", + "name": "Radomir", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.54565000", + "longitude": "22.96553000" + }, + { + "id": "9724", + "name": "Tran", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.83528000", + "longitude": "22.65167000" + }, + { + "id": "9748", + "name": "Zemen", + "state_id": 4695, + "state_code": "14", + "country_id": 34, + "country_code": "BG", + "latitude": "42.47889000", + "longitude": "22.74917000" + }, + { + "id": "9269", + "name": "Belene", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.64594000", + "longitude": "25.12627000" + }, + { + "id": "9300", + "name": "Cherven Bryag", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.26667000", + "longitude": "24.10000000" + }, + { + "id": "9312", + "name": "Dolna Mitropolia", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.46667000", + "longitude": "24.53333000" + }, + { + "id": "9314", + "name": "Dolni Dabnik", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.40000000", + "longitude": "24.43333000" + }, + { + "id": "9337", + "name": "Gulyantsi", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.64109000", + "longitude": "24.69368000" + }, + { + "id": "9347", + "name": "Iskar", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.45000000", + "longitude": "24.26667000" + }, + { + "id": "9366", + "name": "Knezha", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.50000000", + "longitude": "24.08333000" + }, + { + "id": "9372", + "name": "Koynare", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.35000000", + "longitude": "24.13333000" + }, + { + "id": "9386", + "name": "Levski", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.36667000", + "longitude": "25.13333000" + }, + { + "id": "9409", + "name": "Nikopol", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.70528000", + "longitude": "24.89521000" + }, + { + "id": "9424", + "name": "Obshtina Belene", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.63333000", + "longitude": "25.13333000" + }, + { + "id": "9449", + "name": "Obshtina Cherven Bryag", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.33333000", + "longitude": "24.13333000" + }, + { + "id": "9460", + "name": "Obshtina Dolna Mitropolia", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.58333000", + "longitude": "24.41667000" + }, + { + "id": "9462", + "name": "Obshtina Dolni Dabnik", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.36667000", + "longitude": "24.41667000" + }, + { + "id": "9484", + "name": "Obshtina Gulyantsi", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.68333000", + "longitude": "24.65000000" + }, + { + "id": "9490", + "name": "Obshtina Iskar", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.50000000", + "longitude": "24.28333000" + }, + { + "id": "9503", + "name": "Obshtina Knezha", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.50000000", + "longitude": "24.11667000" + }, + { + "id": "9521", + "name": "Obshtina Levski", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.43333000", + "longitude": "25.10000000" + }, + { + "id": "9541", + "name": "Obshtina Nikopol", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.60000000", + "longitude": "24.93333000" + }, + { + "id": "9557", + "name": "Obshtina Pleven", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.40000000", + "longitude": "24.70000000" + }, + { + "id": "9562", + "name": "Obshtina Pordim", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.38333000", + "longitude": "24.90000000" + }, + { + "id": "9655", + "name": "Pleven", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.41667000", + "longitude": "24.61667000" + }, + { + "id": "9660", + "name": "Pordim", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.38333000", + "longitude": "24.85000000" + }, + { + "id": "9696", + "name": "Slavyanovo", + "state_id": 4706, + "state_code": "15", + "country_id": 34, + "country_code": "BG", + "latitude": "43.46667000", + "longitude": "24.86667000" + }, + { + "id": "9259", + "name": "Asenovgrad", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.01667000", + "longitude": "24.86667000" + }, + { + "id": "9289", + "name": "Brezovo", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.35000000", + "longitude": "25.08333000" + }, + { + "id": "9345", + "name": "Hisarya", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.50000000", + "longitude": "24.70000000" + }, + { + "id": "9351", + "name": "Kalofer", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.61667000", + "longitude": "24.98333000" + }, + { + "id": "9352", + "name": "Kaloyanovo", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.35000000", + "longitude": "24.73333000" + }, + { + "id": "9355", + "name": "Karlovo", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.63333000", + "longitude": "24.80000000" + }, + { + "id": "9365", + "name": "Klisura", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.70000000", + "longitude": "24.45000000" + }, + { + "id": "9375", + "name": "Krichim", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.05000000", + "longitude": "24.46667000" + }, + { + "id": "9383", + "name": "Laki", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "41.85000000", + "longitude": "24.81667000" + }, + { + "id": "9417", + "name": "Obshtina Asenovgrad", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "41.95000000", + "longitude": "24.96667000" + }, + { + "id": "9489", + "name": "Obshtina Hisarya", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.50000000", + "longitude": "24.60000000" + }, + { + "id": "9494", + "name": "Obshtina Kaloyanovo", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.38333000", + "longitude": "24.81667000" + }, + { + "id": "9497", + "name": "Obshtina Karlovo", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.68333000", + "longitude": "24.66667000" + }, + { + "id": "9512", + "name": "Obshtina Krichim", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.00439000", + "longitude": "24.47235000" + }, + { + "id": "9516", + "name": "Obshtina Kuklen", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.03725000", + "longitude": "24.77949000" + }, + { + "id": "9519", + "name": "Obshtina Laki", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "41.81667000", + "longitude": "24.85000000" + }, + { + "id": "9530", + "name": "Obshtina Maritsa", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.23333000", + "longitude": "24.80000000" + }, + { + "id": "9548", + "name": "Obshtina Parvomay", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.03333000", + "longitude": "25.20000000" + }, + { + "id": "9553", + "name": "Obshtina Perushtitsa", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.06667000", + "longitude": "24.55000000" + }, + { + "id": "9558", + "name": "Obshtina Plovdiv", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.15000000", + "longitude": "24.75000000" + }, + { + "id": "9569", + "name": "Obshtina Rakovski", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.26667000", + "longitude": "24.98333000" + }, + { + "id": "9573", + "name": "Obshtina Rodopi", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.03333000", + "longitude": "24.68333000" + }, + { + "id": "9578", + "name": "Obshtina Sadovo", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.13333000", + "longitude": "25.00000000" + }, + { + "id": "9579", + "name": "Obshtina Saedinenie", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.31667000", + "longitude": "24.58333000" + }, + { + "id": "9595", + "name": "Obshtina Sopot", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.65214000", + "longitude": "24.74310000" + }, + { + "id": "9597", + "name": "Obshtina Stamboliyski", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.11667000", + "longitude": "24.51667000" + }, + { + "id": "9645", + "name": "Parvomay", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.10000000", + "longitude": "25.21667000" + }, + { + "id": "9651", + "name": "Perushtitsa", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.05000000", + "longitude": "24.55000000" + }, + { + "id": "9656", + "name": "Plovdiv", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.15000000", + "longitude": "24.75000000" + }, + { + "id": "9667", + "name": "Rakovski", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.27408000", + "longitude": "24.94083000" + }, + { + "id": "9677", + "name": "Sadovo", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.13178000", + "longitude": "24.93999000" + }, + { + "id": "9678", + "name": "Saedinenie", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.26667000", + "longitude": "24.55000000" + }, + { + "id": "9704", + "name": "Stamboliyski", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "42.13333000", + "longitude": "24.53333000" + }, + { + "id": "9723", + "name": "Topolovo", + "state_id": 4701, + "state_code": "16", + "country_id": 34, + "country_code": "BG", + "latitude": "41.90000000", + "longitude": "25.00000000" + }, + { + "id": "9348", + "name": "Isperih", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.71667000", + "longitude": "26.83333000" + }, + { + "id": "9379", + "name": "Kubrat", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.79658000", + "longitude": "26.50063000" + }, + { + "id": "9389", + "name": "Loznitsa", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.36667000", + "longitude": "26.60000000" + }, + { + "id": "9399", + "name": "Medovene", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.76667000", + "longitude": "26.51667000" + }, + { + "id": "9491", + "name": "Obshtina Isperih", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.71667000", + "longitude": "26.83333000" + }, + { + "id": "9515", + "name": "Obshtina Kubrat", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.86667000", + "longitude": "26.48333000" + }, + { + "id": "9524", + "name": "Obshtina Loznitsa", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.41667000", + "longitude": "26.58333000" + }, + { + "id": "9570", + "name": "Obshtina Razgrad", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.53333000", + "longitude": "26.51667000" + }, + { + "id": "9581", + "name": "Obshtina Samuil", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.60000000", + "longitude": "26.80000000" + }, + { + "id": "9616", + "name": "Obshtina Tsar Kaloyan", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.60000000", + "longitude": "26.21667000" + }, + { + "id": "9635", + "name": "Obshtina Zavet", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.76667000", + "longitude": "26.68333000" + }, + { + "id": "9669", + "name": "Razgrad", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.53333000", + "longitude": "26.51667000" + }, + { + "id": "9680", + "name": "Samuil", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.51667000", + "longitude": "26.75000000" + }, + { + "id": "9727", + "name": "Tsar Kaloyan", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.61667000", + "longitude": "26.25000000" + }, + { + "id": "9747", + "name": "Zavet", + "state_id": 4698, + "state_code": "17", + "country_id": 34, + "country_code": "BG", + "latitude": "43.76036000", + "longitude": "26.68063000" + }, + { + "id": "9281", + "name": "Borovo", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.50086000", + "longitude": "25.80992000" + }, + { + "id": "9322", + "name": "Dve Mogili", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.59258000", + "longitude": "25.87486000" + }, + { + "id": "9349", + "name": "Ivanovo", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.68568000", + "longitude": "25.95565000" + }, + { + "id": "9435", + "name": "Obshtina Borovo", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.60000000", + "longitude": "25.80000000" + }, + { + "id": "9443", + "name": "Obshtina Byala", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.41667000", + "longitude": "25.83333000" + }, + { + "id": "9468", + "name": "Obshtina Dve Mogili", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.51667000", + "longitude": "25.96667000" + }, + { + "id": "9492", + "name": "Obshtina Ivanovo", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.70000000", + "longitude": "25.98333000" + }, + { + "id": "9576", + "name": "Obshtina Ruse", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.85000000", + "longitude": "26.08333000" + }, + { + "id": "9593", + "name": "Obshtina Slivo Pole", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.96667000", + "longitude": "26.30000000" + }, + { + "id": "9617", + "name": "Obshtina Tsenovo", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.58333000", + "longitude": "25.61667000" + }, + { + "id": "9628", + "name": "Obshtina Vetovo", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.71667000", + "longitude": "26.33333000" + }, + { + "id": "9675", + "name": "Ruse", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.84872000", + "longitude": "25.95340000" + }, + { + "id": "9687", + "name": "Senovo", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.65000000", + "longitude": "26.36667000" + }, + { + "id": "9699", + "name": "Slivo Pole", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.94248000", + "longitude": "26.20464000" + }, + { + "id": "9729", + "name": "Tsenovo", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.53588000", + "longitude": "25.65764000" + }, + { + "id": "9739", + "name": "Vetovo", + "state_id": 4713, + "state_code": "18", + "country_id": 34, + "country_code": "BG", + "latitude": "43.70000000", + "longitude": "26.26667000" + }, + { + "id": "9253", + "name": "Alfatar", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "43.94525000", + "longitude": "27.28751000" + }, + { + "id": "9319", + "name": "Dulovo", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "43.81667000", + "longitude": "27.15000000" + }, + { + "id": "9331", + "name": "Glavinitsa", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "43.91667000", + "longitude": "26.83333000" + }, + { + "id": "9358", + "name": "Kaynardzha", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "43.99278000", + "longitude": "27.50713000" + }, + { + "id": "9413", + "name": "Obshtina Alfatar", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "43.90000000", + "longitude": "27.33333000" + }, + { + "id": "9466", + "name": "Obshtina Dulovo", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "43.81667000", + "longitude": "27.08333000" + }, + { + "id": "9479", + "name": "Obshtina Glavinitsa", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "43.95000000", + "longitude": "26.85000000" + }, + { + "id": "9500", + "name": "Obshtina Kaynardzha", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "43.95000000", + "longitude": "27.53333000" + }, + { + "id": "9588", + "name": "Obshtina Silistra", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "44.03333000", + "longitude": "27.20000000" + }, + { + "id": "9590", + "name": "Obshtina Sitovo", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "44.01667000", + "longitude": "27.00000000" + }, + { + "id": "9619", + "name": "Obshtina Tutrakan", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "44.00000000", + "longitude": "26.60000000" + }, + { + "id": "9692", + "name": "Silistra", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "44.11710000", + "longitude": "27.26056000" + }, + { + "id": "9695", + "name": "Sitovo", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "44.02730000", + "longitude": "27.01982000" + }, + { + "id": "9730", + "name": "Tutrakan", + "state_id": 4708, + "state_code": "19", + "country_id": 34, + "country_code": "BG", + "latitude": "44.04906000", + "longitude": "26.61206000" + }, + { + "id": "9360", + "name": "Kermen", + "state_id": 4700, + "state_code": "20", + "country_id": 34, + "country_code": "BG", + "latitude": "42.50000000", + "longitude": "26.25000000" + }, + { + "id": "9371", + "name": "Kotel", + "state_id": 4700, + "state_code": "20", + "country_id": 34, + "country_code": "BG", + "latitude": "42.88333000", + "longitude": "26.45000000" + }, + { + "id": "9410", + "name": "Nova Zagora", + "state_id": 4700, + "state_code": "20", + "country_id": 34, + "country_code": "BG", + "latitude": "42.48333000", + "longitude": "26.01667000" + }, + { + "id": "9508", + "name": "Obshtina Kotel", + "state_id": 4700, + "state_code": "20", + "country_id": 34, + "country_code": "BG", + "latitude": "42.88333000", + "longitude": "26.45000000" + }, + { + "id": "9542", + "name": "Obshtina Nova Zagora", + "state_id": 4700, + "state_code": "20", + "country_id": 34, + "country_code": "BG", + "latitude": "42.45000000", + "longitude": "26.05000000" + }, + { + "id": "9591", + "name": "Obshtina Sliven", + "state_id": 4700, + "state_code": "20", + "country_id": 34, + "country_code": "BG", + "latitude": "42.66667000", + "longitude": "26.31667000" + }, + { + "id": "9620", + "name": "Obshtina Tvarditsa", + "state_id": 4700, + "state_code": "20", + "country_id": 34, + "country_code": "BG", + "latitude": "42.73333000", + "longitude": "26.00000000" + }, + { + "id": "9697", + "name": "Sliven", + "state_id": 4700, + "state_code": "20", + "country_id": 34, + "country_code": "BG", + "latitude": "42.68583000", + "longitude": "26.32917000" + }, + { + "id": "9731", + "name": "Tvarditsa", + "state_id": 4700, + "state_code": "20", + "country_id": 34, + "country_code": "BG", + "latitude": "42.70000000", + "longitude": "25.90000000" + }, + { + "id": "9264", + "name": "Banite", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.61667000", + "longitude": "25.01667000" + }, + { + "id": "9279", + "name": "Borino", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.68408000", + "longitude": "24.29300000" + }, + { + "id": "9298", + "name": "Chepelare", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.73333000", + "longitude": "24.68333000" + }, + { + "id": "9306", + "name": "Devin", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.74327000", + "longitude": "24.40003000" + }, + { + "id": "9315", + "name": "Dospat", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.64462000", + "longitude": "24.15857000" + }, + { + "id": "9339", + "name": "Gyovren", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.66326000", + "longitude": "24.37557000" + }, + { + "id": "9393", + "name": "Madan", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.49869000", + "longitude": "24.93973000" + }, + { + "id": "9405", + "name": "Nedelino", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.45602000", + "longitude": "25.08008000" + }, + { + "id": "9421", + "name": "Obshtina Banite", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.70000000", + "longitude": "25.00000000" + }, + { + "id": "9433", + "name": "Obshtina Borino", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.64834000", + "longitude": "24.31694000" + }, + { + "id": "9447", + "name": "Obshtina Chepelare", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.80000000", + "longitude": "24.68333000" + }, + { + "id": "9453", + "name": "Obshtina Devin", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.74346000", + "longitude": "24.40192000" + }, + { + "id": "9463", + "name": "Obshtina Dospat", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.63228000", + "longitude": "24.18765000" + }, + { + "id": "9526", + "name": "Obshtina Madan", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.53333000", + "longitude": "24.96667000" + }, + { + "id": "9537", + "name": "Obshtina Nedelino", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.46894000", + "longitude": "25.09481000" + }, + { + "id": "9575", + "name": "Obshtina Rudozem", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.45439000", + "longitude": "24.83690000" + }, + { + "id": "9594", + "name": "Obshtina Smolyan", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.57516000", + "longitude": "24.71302000" + }, + { + "id": "9639", + "name": "Obshtina Zlatograd", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.40028000", + "longitude": "25.04591000" + }, + { + "id": "9673", + "name": "Rudozem", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.48751000", + "longitude": "24.84945000" + }, + { + "id": "9700", + "name": "Smolyan", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.57439000", + "longitude": "24.71204000" + }, + { + "id": "9752", + "name": "Zlatograd", + "state_id": 4694, + "state_code": "21", + "country_id": 34, + "country_code": "BG", + "latitude": "41.37950000", + "longitude": "25.09605000" + }, + { + "id": "9291", + "name": "Buhovo", + "state_id": 4705, + "state_code": "22", + "country_id": 34, + "country_code": "BG", + "latitude": "42.76667000", + "longitude": "23.56667000" + }, + { + "id": "9701", + "name": "Sofia", + "state_id": 4705, + "state_code": "22", + "country_id": 34, + "country_code": "BG", + "latitude": "42.69751000", + "longitude": "23.32415000" + }, + { + "id": "9707", + "name": "Stolichna Obshtina", + "state_id": 4705, + "state_code": "22", + "country_id": 34, + "country_code": "BG", + "latitude": "42.68647000", + "longitude": "23.30561000" + }, + { + "id": "9254", + "name": "Anton", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.75000000", + "longitude": "24.28333000" + }, + { + "id": "9282", + "name": "Botevgrad", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.90000000", + "longitude": "23.78333000" + }, + { + "id": "9285", + "name": "Bozhurishte", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.75000000", + "longitude": "23.20000000" + }, + { + "id": "9296", + "name": "Chavdar", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.65000000", + "longitude": "24.05000000" + }, + { + "id": "9297", + "name": "Chelopech", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.70000000", + "longitude": "24.08333000" + }, + { + "id": "9311", + "name": "Dolna Banya", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.30000000", + "longitude": "23.76667000" + }, + { + "id": "9316", + "name": "Dragoman", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.92191000", + "longitude": "22.93109000" + }, + { + "id": "9326", + "name": "Elin Pelin", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.66667000", + "longitude": "23.60000000" + }, + { + "id": "9327", + "name": "Etropole", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.83333000", + "longitude": "24.00000000" + }, + { + "id": "9332", + "name": "Godech", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "43.01682000", + "longitude": "23.04852000" + }, + { + "id": "9333", + "name": "Gorna Malina", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.68333000", + "longitude": "23.70000000" + }, + { + "id": "9346", + "name": "Ihtiman", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.43333000", + "longitude": "23.81667000" + }, + { + "id": "9369", + "name": "Koprivshtitsa", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.63333000", + "longitude": "24.35000000" + }, + { + "id": "9370", + "name": "Kostinbrod", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.81667000", + "longitude": "23.21667000" + }, + { + "id": "9382", + "name": "Lakatnik", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "43.05000000", + "longitude": "23.40000000" + }, + { + "id": "9402", + "name": "Mirkovo", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.70000000", + "longitude": "23.98333000" + }, + { + "id": "9414", + "name": "Obshtina Anton", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.76667000", + "longitude": "24.30000000" + }, + { + "id": "9436", + "name": "Obshtina Botevgrad", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.95000000", + "longitude": "23.75000000" + }, + { + "id": "9439", + "name": "Obshtina Bozhurishte", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.78333000", + "longitude": "23.11667000" + }, + { + "id": "9445", + "name": "Obshtina Chavdar", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.61667000", + "longitude": "24.08333000" + }, + { + "id": "9446", + "name": "Obshtina Chelopech", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.71667000", + "longitude": "24.06667000" + }, + { + "id": "9459", + "name": "Obshtina Dolna Banya", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.30000000", + "longitude": "23.76667000" + }, + { + "id": "9464", + "name": "Obshtina Dragoman", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.93333000", + "longitude": "22.93333000" + }, + { + "id": "9472", + "name": "Obshtina Elin Pelin", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.66667000", + "longitude": "23.60000000" + }, + { + "id": "9473", + "name": "Obshtina Etropole", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.85000000", + "longitude": "24.03333000" + }, + { + "id": "9480", + "name": "Obshtina Gorna Malina", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.71667000", + "longitude": "23.80000000" + }, + { + "id": "9505", + "name": "Obshtina Koprivshtitsa", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.61667000", + "longitude": "24.38333000" + }, + { + "id": "9506", + "name": "Obshtina Kostenets", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.30000000", + "longitude": "23.86667000" + }, + { + "id": "9507", + "name": "Obshtina Kostinbrod", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.88333000", + "longitude": "23.20000000" + }, + { + "id": "9533", + "name": "Obshtina Mirkovo", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.66667000", + "longitude": "23.96667000" + }, + { + "id": "9556", + "name": "Obshtina Pirdop", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.70000000", + "longitude": "24.23333000" + }, + { + "id": "9563", + "name": "Obshtina Pravets", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.96667000", + "longitude": "23.98333000" + }, + { + "id": "9580", + "name": "Obshtina Samokov", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.33333000", + "longitude": "23.55000000" + }, + { + "id": "9592", + "name": "Obshtina Slivnitsa", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.85000000", + "longitude": "22.98333000" + }, + { + "id": "9609", + "name": "Obshtina Svoge", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "43.00000000", + "longitude": "23.40000000" + }, + { + "id": "9638", + "name": "Obshtina Zlatitsa", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.70000000", + "longitude": "24.13333000" + }, + { + "id": "9654", + "name": "Pirdop", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.70000000", + "longitude": "24.18333000" + }, + { + "id": "9661", + "name": "Pravets", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.88333000", + "longitude": "23.91667000" + }, + { + "id": "9679", + "name": "Samokov", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.33700000", + "longitude": "23.55280000" + }, + { + "id": "9698", + "name": "Slivnitsa", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.85182000", + "longitude": "23.03792000" + }, + { + "id": "9718", + "name": "Svoge", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.96667000", + "longitude": "23.35000000" + }, + { + "id": "9750", + "name": "Zlatitsa", + "state_id": 4719, + "state_code": "23", + "country_id": 34, + "country_code": "BG", + "latitude": "42.71667000", + "longitude": "24.13333000" + }, + { + "id": "9258", + "name": "Asen", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.65000000", + "longitude": "25.20000000" + }, + { + "id": "9302", + "name": "Chirpan", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.20000000", + "longitude": "25.33333000" + }, + { + "id": "9340", + "name": "Gŭlŭbovo", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.13333000", + "longitude": "25.85000000" + }, + { + "id": "9338", + "name": "Gurkovo", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.66667000", + "longitude": "25.80000000" + }, + { + "id": "9359", + "name": "Kazanlak", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.61667000", + "longitude": "25.40000000" + }, + { + "id": "9395", + "name": "Maglizh", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.60000000", + "longitude": "25.55000000" + }, + { + "id": "9408", + "name": "Nikolaevo", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.63333000", + "longitude": "25.80000000" + }, + { + "id": "9441", + "name": "Obshtina Bratya Daskalovi", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.30000000", + "longitude": "25.21667000" + }, + { + "id": "9451", + "name": "Obshtina Chirpan", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.23333000", + "longitude": "25.38333000" + }, + { + "id": "9475", + "name": "Obshtina Galabovo", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.15000000", + "longitude": "25.96667000" + }, + { + "id": "9485", + "name": "Obshtina Gurkovo", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.71667000", + "longitude": "25.80000000" + }, + { + "id": "9501", + "name": "Obshtina Kazanlŭk", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.61943000", + "longitude": "25.39885000" + }, + { + "id": "9528", + "name": "Obshtina Maglizh", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.63333000", + "longitude": "25.61667000" + }, + { + "id": "9540", + "name": "Obshtina Nikolaevo", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.60000000", + "longitude": "25.78333000" + }, + { + "id": "9545", + "name": "Obshtina Opan", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.21667000", + "longitude": "25.70000000" + }, + { + "id": "9549", + "name": "Obshtina Pavel Banya", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.63333000", + "longitude": "25.13333000" + }, + { + "id": "9566", + "name": "Obshtina Radnevo", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.30000000", + "longitude": "25.93333000" + }, + { + "id": "9599", + "name": "Obshtina Stara Zagora", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.41667000", + "longitude": "25.63333000" + }, + { + "id": "9647", + "name": "Pavel Banya", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.60000000", + "longitude": "25.20000000" + }, + { + "id": "9664", + "name": "Radnevo", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.30000000", + "longitude": "25.93333000" + }, + { + "id": "9691", + "name": "Shipka", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.71667000", + "longitude": "25.33333000" + }, + { + "id": "9706", + "name": "Stara Zagora", + "state_id": 4707, + "state_code": "24", + "country_id": 34, + "country_code": "BG", + "latitude": "42.43278000", + "longitude": "25.64194000" + }, + { + "id": "9255", + "name": "Antonovo", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.15000000", + "longitude": "26.16667000" + }, + { + "id": "9415", + "name": "Obshtina Antonovo", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.11667000", + "longitude": "26.20000000" + }, + { + "id": "9543", + "name": "Obshtina Omurtag", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.08333000", + "longitude": "26.48333000" + }, + { + "id": "9544", + "name": "Obshtina Opaka", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.46667000", + "longitude": "26.15000000" + }, + { + "id": "9561", + "name": "Obshtina Popovo", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.35000000", + "longitude": "26.23333000" + }, + { + "id": "9610", + "name": "Obshtina Targovishte", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.25000000", + "longitude": "26.56667000" + }, + { + "id": "9641", + "name": "Omurtag", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.10000000", + "longitude": "26.41667000" + }, + { + "id": "9642", + "name": "Opaka", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.45000000", + "longitude": "26.16667000" + }, + { + "id": "9659", + "name": "Popovo", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.35000000", + "longitude": "26.23333000" + }, + { + "id": "9719", + "name": "Targovishte", + "state_id": 4714, + "state_code": "25", + "country_id": 34, + "country_code": "BG", + "latitude": "43.25120000", + "longitude": "26.57215000" + }, + { + "id": "9252", + "name": "Aksakovo", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.25615000", + "longitude": "27.82105000" + }, + { + "id": "9260", + "name": "Asparuhovo", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.18067000", + "longitude": "27.88823000" + }, + { + "id": "9263", + "name": "Balgarevo", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.40296000", + "longitude": "28.41189000" + }, + { + "id": "9272", + "name": "Beloslav", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.18960000", + "longitude": "27.70429000" + }, + { + "id": "9293", + "name": "Byala", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "42.87426000", + "longitude": "27.88865000" + }, + { + "id": "9304", + "name": "Dalgopol", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.05000000", + "longitude": "27.35000000" + }, + { + "id": "9307", + "name": "Devnya", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.22222000", + "longitude": "27.56944000" + }, + { + "id": "9313", + "name": "Dolni Chiflik", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "42.99296000", + "longitude": "27.71596000" + }, + { + "id": "9364", + "name": "Kiten", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.08333000", + "longitude": "27.31667000" + }, + { + "id": "9412", + "name": "Obshtina Aksakovo", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.31667000", + "longitude": "27.85000000" + }, + { + "id": "9418", + "name": "Obshtina Avren", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.10000000", + "longitude": "27.71667000" + }, + { + "id": "9427", + "name": "Obshtina Beloslav", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.20000000", + "longitude": "27.73333000" + }, + { + "id": "9444", + "name": "Obshtina Byala", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "42.88333000", + "longitude": "27.81667000" + }, + { + "id": "9452", + "name": "Obshtina Dalgopol", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.05000000", + "longitude": "27.35000000" + }, + { + "id": "9454", + "name": "Obshtina Devnya", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.22056000", + "longitude": "27.60052000" + }, + { + "id": "9461", + "name": "Obshtina Dolni Chiflik", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "42.96667000", + "longitude": "27.68333000" + }, + { + "id": "9565", + "name": "Obshtina Provadia", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.18333000", + "longitude": "27.40000000" + }, + { + "id": "9606", + "name": "Obshtina Suvorovo", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.33333000", + "longitude": "27.65000000" + }, + { + "id": "9623", + "name": "Obshtina Valchidol", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.45000000", + "longitude": "27.50000000" + }, + { + "id": "9624", + "name": "Obshtina Varna", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.21667000", + "longitude": "27.91667000" + }, + { + "id": "9629", + "name": "Obshtina Vetrino", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.31667000", + "longitude": "27.43333000" + }, + { + "id": "9663", + "name": "Provadia", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.18333000", + "longitude": "27.43333000" + }, + { + "id": "9714", + "name": "Suvorovo", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.33058000", + "longitude": "27.59908000" + }, + { + "id": "9734", + "name": "Valchidol", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.40000000", + "longitude": "27.55000000" + }, + { + "id": "9735", + "name": "Varna", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.21667000", + "longitude": "27.91667000" + }, + { + "id": "9740", + "name": "Vetrino", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.31667000", + "longitude": "27.43333000" + }, + { + "id": "9751", + "name": "Zlatni Pyasatsi", + "state_id": 4717, + "state_code": "03", + "country_id": 34, + "country_code": "BG", + "latitude": "43.28500000", + "longitude": "28.04180000" + }, + { + "id": "9294", + "name": "Byala Cherkva", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.20000000", + "longitude": "25.30000000" + }, + { + "id": "9305", + "name": "Debelets", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.03333000", + "longitude": "25.61667000" + }, + { + "id": "9324", + "name": "Elena", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "42.93333000", + "longitude": "25.88333000" + }, + { + "id": "9334", + "name": "Gorna Oryahovitsa", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.12778000", + "longitude": "25.70167000" + }, + { + "id": "9361", + "name": "Kilifarevo", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "42.98333000", + "longitude": "25.63333000" + }, + { + "id": "9391", + "name": "Lyaskovets", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.11111000", + "longitude": "25.72833000" + }, + { + "id": "9470", + "name": "Obshtina Elena", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "42.91667000", + "longitude": "25.95000000" + }, + { + "id": "9481", + "name": "Obshtina Gorna Oryahovitsa", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.21667000", + "longitude": "25.75000000" + }, + { + "id": "9525", + "name": "Obshtina Lyaskovets", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.13333000", + "longitude": "25.85000000" + }, + { + "id": "9550", + "name": "Obshtina Pavlikeni", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.28333000", + "longitude": "25.35000000" + }, + { + "id": "9559", + "name": "Obshtina Polski Trambesh", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.35000000", + "longitude": "25.58333000" + }, + { + "id": "9601", + "name": "Obshtina Strazhitsa", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.26667000", + "longitude": "25.98333000" + }, + { + "id": "9604", + "name": "Obshtina Suhindol", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.16667000", + "longitude": "25.20000000" + }, + { + "id": "9608", + "name": "Obshtina Svishtov", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.53333000", + "longitude": "25.35000000" + }, + { + "id": "9626", + "name": "Obshtina Veliko Tŭrnovo", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.08241000", + "longitude": "25.63202000" + }, + { + "id": "9637", + "name": "Obshtina Zlataritsa", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.06667000", + "longitude": "25.98333000" + }, + { + "id": "9646", + "name": "Parvomaytsi", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.15000000", + "longitude": "25.65000000" + }, + { + "id": "9648", + "name": "Pavlikeni", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.24278000", + "longitude": "25.32194000" + }, + { + "id": "9657", + "name": "Polski Trambesh", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.37233000", + "longitude": "25.63525000" + }, + { + "id": "9709", + "name": "Strazhitsa", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.23333000", + "longitude": "25.96667000" + }, + { + "id": "9712", + "name": "Suhindol", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.19167000", + "longitude": "25.18111000" + }, + { + "id": "9717", + "name": "Svishtov", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.61875000", + "longitude": "25.35033000" + }, + { + "id": "9737", + "name": "Veliko Tŭrnovo", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.08124000", + "longitude": "25.62904000" + }, + { + "id": "9749", + "name": "Zlataritsa", + "state_id": 4709, + "state_code": "04", + "country_id": 34, + "country_code": "BG", + "latitude": "43.05000000", + "longitude": "25.90000000" + }, + { + "id": "9271", + "name": "Belogradchik", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.62722000", + "longitude": "22.68361000" + }, + { + "id": "9284", + "name": "Boynitsa", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.95650000", + "longitude": "22.53255000" + }, + { + "id": "9287", + "name": "Bregovo", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "44.15167000", + "longitude": "22.64250000" + }, + { + "id": "9303", + "name": "Chuprene", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.51806000", + "longitude": "22.66611000" + }, + { + "id": "9309", + "name": "Dimovo", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.74167000", + "longitude": "22.72694000" + }, + { + "id": "9317", + "name": "Drenovets", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.69134000", + "longitude": "22.97365000" + }, + { + "id": "9320", + "name": "Dunavtsi", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.92111000", + "longitude": "22.82111000" + }, + { + "id": "9336", + "name": "Gramada", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.83738000", + "longitude": "22.65279000" + }, + { + "id": "9380", + "name": "Kula", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.88833000", + "longitude": "22.52139000" + }, + { + "id": "9396", + "name": "Makresh", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.76794000", + "longitude": "22.66406000" + }, + { + "id": "9411", + "name": "Novo Selo", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "44.16214000", + "longitude": "22.78376000" + }, + { + "id": "9426", + "name": "Obshtina Belogradchik", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.65000000", + "longitude": "22.60000000" + }, + { + "id": "9438", + "name": "Obshtina Boynitsa", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "44.00000000", + "longitude": "22.55000000" + }, + { + "id": "9456", + "name": "Obshtina Dimovo", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.75000000", + "longitude": "22.81667000" + }, + { + "id": "9483", + "name": "Obshtina Gramada", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.83333000", + "longitude": "22.65000000" + }, + { + "id": "9517", + "name": "Obshtina Kula", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.90000000", + "longitude": "22.56667000" + }, + { + "id": "9577", + "name": "Obshtina Ruzhintsi", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.65000000", + "longitude": "22.90000000" + }, + { + "id": "9630", + "name": "Obshtina Vidin", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "44.00000000", + "longitude": "22.83333000" + }, + { + "id": "9676", + "name": "Ruzhintsi", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.62179000", + "longitude": "22.83286000" + }, + { + "id": "9741", + "name": "Vidin", + "state_id": 4697, + "state_code": "05", + "country_id": 34, + "country_code": "BG", + "latitude": "43.99159000", + "longitude": "22.88236000" + }, + { + "id": "9280", + "name": "Borovan", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.43333000", + "longitude": "23.75000000" + }, + { + "id": "9295", + "name": "Byala Slatina", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.46667000", + "longitude": "23.93333000" + }, + { + "id": "9344", + "name": "Hayredin", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.60193000", + "longitude": "23.66135000" + }, + { + "id": "9373", + "name": "Kozloduy", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.77864000", + "longitude": "23.72058000" + }, + { + "id": "9376", + "name": "Krivodol", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.37444000", + "longitude": "23.48444000" + }, + { + "id": "9400", + "name": "Mezdra", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.15000000", + "longitude": "23.70000000" + }, + { + "id": "9403", + "name": "Mizia", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.68623000", + "longitude": "23.85371000" + }, + { + "id": "9434", + "name": "Obshtina Borovan", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.43333000", + "longitude": "23.75000000" + }, + { + "id": "9488", + "name": "Obshtina Hayredin", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.58333000", + "longitude": "23.66667000" + }, + { + "id": "9510", + "name": "Obshtina Kozloduy", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.71667000", + "longitude": "23.73333000" + }, + { + "id": "9513", + "name": "Obshtina Krivodol", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.38333000", + "longitude": "23.48333000" + }, + { + "id": "9531", + "name": "Obshtina Mezdra", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.13333000", + "longitude": "23.73333000" + }, + { + "id": "9534", + "name": "Obshtina Mizia", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.63333000", + "longitude": "23.85000000" + }, + { + "id": "9546", + "name": "Obshtina Oryahovo", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.69038000", + "longitude": "23.98643000" + }, + { + "id": "9574", + "name": "Obshtina Roman", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.15000000", + "longitude": "23.91667000" + }, + { + "id": "9631", + "name": "Obshtina Vratsa", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.28333000", + "longitude": "23.60000000" + }, + { + "id": "9643", + "name": "Oryahovo", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.73618000", + "longitude": "23.96052000" + }, + { + "id": "9672", + "name": "Roman", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.15000000", + "longitude": "23.91667000" + }, + { + "id": "9742", + "name": "Vratsa", + "state_id": 4711, + "state_code": "06", + "country_id": 34, + "country_code": "BG", + "latitude": "43.21000000", + "longitude": "23.56250000" + }, + { + "id": "9278", + "name": "Bolyarovo", + "state_id": 4716, + "state_code": "28", + "country_id": 34, + "country_code": "BG", + "latitude": "42.14962000", + "longitude": "26.81116000" + }, + { + "id": "9325", + "name": "Elhovo", + "state_id": 4716, + "state_code": "28", + "country_id": 34, + "country_code": "BG", + "latitude": "42.16667000", + "longitude": "26.56667000" + }, + { + "id": "9432", + "name": "Obshtina Bolyarovo", + "state_id": 4716, + "state_code": "28", + "country_id": 34, + "country_code": "BG", + "latitude": "42.15000000", + "longitude": "26.85000000" + }, + { + "id": "9471", + "name": "Obshtina Elhovo", + "state_id": 4716, + "state_code": "28", + "country_id": 34, + "country_code": "BG", + "latitude": "42.11667000", + "longitude": "26.61667000" + }, + { + "id": "9600", + "name": "Obshtina Straldzha", + "state_id": 4716, + "state_code": "28", + "country_id": 34, + "country_code": "BG", + "latitude": "42.48333000", + "longitude": "26.78333000" + }, + { + "id": "9618", + "name": "Obshtina Tundzha", + "state_id": 4716, + "state_code": "28", + "country_id": 34, + "country_code": "BG", + "latitude": "42.35000000", + "longitude": "26.45000000" + }, + { + "id": "9634", + "name": "Obshtina Yambol", + "state_id": 4716, + "state_code": "28", + "country_id": 34, + "country_code": "BG", + "latitude": "42.48333000", + "longitude": "26.50000000" + }, + { + "id": "9708", + "name": "Straldzha", + "state_id": 4716, + "state_code": "28", + "country_id": 34, + "country_code": "BG", + "latitude": "42.60000000", + "longitude": "26.68333000" + }, + { + "id": "9746", + "name": "Yambol", + "state_id": 4716, + "state_code": "28", + "country_id": 34, + "country_code": "BG", + "latitude": "42.48333000", + "longitude": "26.50000000" + }, + { + "id": "9159", + "name": "Barani", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "13.16910000", + "longitude": "-3.88990000" + }, + { + "id": "9164", + "name": "Boromo", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "11.74542000", + "longitude": "-2.93006000" + }, + { + "id": "9172", + "name": "Dédougou", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "12.46338000", + "longitude": "-3.46075000" + }, + { + "id": "9192", + "name": "Nouna", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "12.72939000", + "longitude": "-3.86305000" + }, + { + "id": "9203", + "name": "Province de la Kossi", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "12.91667000", + "longitude": "-3.83333000" + }, + { + "id": "9208", + "name": "Province des Balé", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "11.71667000", + "longitude": "-3.05000000" + }, + { + "id": "9209", + "name": "Province des Banwa", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "12.16667000", + "longitude": "-4.16667000" + }, + { + "id": "9221", + "name": "Province du Mouhoun", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "12.25000000", + "longitude": "-3.41667000" + }, + { + "id": "9223", + "name": "Province du Nayala", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "12.66667000", + "longitude": "-3.00000000" + }, + { + "id": "9230", + "name": "Province du Sourou", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "13.25000000", + "longitude": "-3.00000000" + }, + { + "id": "9239", + "name": "Salanso", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "12.17423000", + "longitude": "-4.08477000" + }, + { + "id": "9244", + "name": "Toma", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "12.75844000", + "longitude": "-2.89879000" + }, + { + "id": "9245", + "name": "Tougan", + "state_id": 3138, + "state_code": "01", + "country_id": 35, + "country_code": "BF", + "latitude": "13.07250000", + "longitude": "-3.06940000" + }, + { + "id": "9158", + "name": "Banfora", + "state_id": 3153, + "state_code": "02", + "country_id": 35, + "country_code": "BF", + "latitude": "10.63333000", + "longitude": "-4.76667000" + }, + { + "id": "9200", + "name": "Province de la Comoé", + "state_id": 3153, + "state_code": "02", + "country_id": 35, + "country_code": "BF", + "latitude": "10.33333000", + "longitude": "-4.41667000" + }, + { + "id": "9204", + "name": "Province de la Léraba", + "state_id": 3153, + "state_code": "02", + "country_id": 35, + "country_code": "BF", + "latitude": "10.66667000", + "longitude": "-5.20000000" + }, + { + "id": "9241", + "name": "Sindou", + "state_id": 3153, + "state_code": "02", + "country_id": 35, + "country_code": "BF", + "latitude": "10.66667000", + "longitude": "-5.16667000" + }, + { + "id": "9181", + "name": "Kadiogo Province", + "state_id": 3136, + "state_code": "03", + "country_id": 35, + "country_code": "BF", + "latitude": "12.33333000", + "longitude": "-1.50000000" + }, + { + "id": "9193", + "name": "Ouagadougou", + "state_id": 3136, + "state_code": "03", + "country_id": 35, + "country_code": "BF", + "latitude": "12.36566000", + "longitude": "-1.53388000" + }, + { + "id": "9174", + "name": "Garango", + "state_id": 3162, + "state_code": "04", + "country_id": 35, + "country_code": "BF", + "latitude": "11.80000000", + "longitude": "-0.55056000" + }, + { + "id": "9187", + "name": "Koupéla", + "state_id": 3162, + "state_code": "04", + "country_id": 35, + "country_code": "BF", + "latitude": "12.17864000", + "longitude": "-0.35103000" + }, + { + "id": "9188", + "name": "Kouritenga Province", + "state_id": 3162, + "state_code": "04", + "country_id": 35, + "country_code": "BF", + "latitude": "12.20000000", + "longitude": "-0.30000000" + }, + { + "id": "9195", + "name": "Ouargaye", + "state_id": 3162, + "state_code": "04", + "country_id": 35, + "country_code": "BF", + "latitude": "11.50202000", + "longitude": "0.05886000" + }, + { + "id": "9211", + "name": "Province du Boulgou", + "state_id": 3162, + "state_code": "04", + "country_id": 35, + "country_code": "BF", + "latitude": "11.50000000", + "longitude": "-0.41667000" + }, + { + "id": "9217", + "name": "Province du Koulpélogo", + "state_id": 3162, + "state_code": "04", + "country_id": 35, + "country_code": "BF", + "latitude": "11.41667000", + "longitude": "0.16667000" + }, + { + "id": "9242", + "name": "Tenkodogo", + "state_id": 3162, + "state_code": "04", + "country_id": 35, + "country_code": "BF", + "latitude": "11.78000000", + "longitude": "-0.36972000" + }, + { + "id": "9165", + "name": "Boulsa", + "state_id": 3127, + "state_code": "05", + "country_id": 35, + "country_code": "BF", + "latitude": "12.66664000", + "longitude": "-0.57469000" + }, + { + "id": "9182", + "name": "Kaya", + "state_id": 3127, + "state_code": "05", + "country_id": 35, + "country_code": "BF", + "latitude": "13.09167000", + "longitude": "-1.08444000" + }, + { + "id": "9185", + "name": "Kongoussi", + "state_id": 3127, + "state_code": "05", + "country_id": 35, + "country_code": "BF", + "latitude": "13.32583000", + "longitude": "-1.53472000" + }, + { + "id": "9210", + "name": "Province du Bam", + "state_id": 3127, + "state_code": "05", + "country_id": 35, + "country_code": "BF", + "latitude": "13.46667000", + "longitude": "-1.58333000" + }, + { + "id": "9222", + "name": "Province du Namentenga", + "state_id": 3127, + "state_code": "05", + "country_id": 35, + "country_code": "BF", + "latitude": "13.25000000", + "longitude": "-0.50000000" + }, + { + "id": "9228", + "name": "Province du Sanmatenga", + "state_id": 3127, + "state_code": "05", + "country_id": 35, + "country_code": "BF", + "latitude": "13.25000000", + "longitude": "-1.08333000" + }, + { + "id": "9178", + "name": "Goulouré", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "12.23484000", + "longitude": "-1.93394000" + }, + { + "id": "9183", + "name": "Kokologo", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "12.19392000", + "longitude": "-1.87687000" + }, + { + "id": "9186", + "name": "Koudougou", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "12.25263000", + "longitude": "-2.36272000" + }, + { + "id": "9189", + "name": "Léo", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "11.10033000", + "longitude": "-2.10654000" + }, + { + "id": "9198", + "name": "Pitmoaga", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "12.24564000", + "longitude": "-1.88148000" + }, + { + "id": "9205", + "name": "Province de la Sissili", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "11.33333000", + "longitude": "-2.25000000" + }, + { + "id": "9212", + "name": "Province du Boulkiemdé", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "12.33333000", + "longitude": "-2.16667000" + }, + { + "id": "9227", + "name": "Province du Sanguié", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "12.16667000", + "longitude": "-2.66667000" + }, + { + "id": "9235", + "name": "Province du Ziro", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "11.58333000", + "longitude": "-1.91667000" + }, + { + "id": "9238", + "name": "Réo", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "12.31963000", + "longitude": "-2.47094000" + }, + { + "id": "9240", + "name": "Sapouy", + "state_id": 3115, + "state_code": "06", + "country_id": 35, + "country_code": "BF", + "latitude": "11.55444000", + "longitude": "-1.77361000" + }, + { + "id": "9161", + "name": "Bazega Province", + "state_id": 3149, + "state_code": "07", + "country_id": 35, + "country_code": "BF", + "latitude": "11.91667000", + "longitude": "-1.50000000" + }, + { + "id": "9184", + "name": "Kombissiri", + "state_id": 3149, + "state_code": "07", + "country_id": 35, + "country_code": "BF", + "latitude": "12.06884000", + "longitude": "-1.33644000" + }, + { + "id": "9190", + "name": "Manga", + "state_id": 3149, + "state_code": "07", + "country_id": 35, + "country_code": "BF", + "latitude": "11.66361000", + "longitude": "-1.07306000" + }, + { + "id": "9191", + "name": "Nahouri Province", + "state_id": 3149, + "state_code": "07", + "country_id": 35, + "country_code": "BF", + "latitude": "11.25000000", + "longitude": "-1.25000000" + }, + { + "id": "9237", + "name": "Pô", + "state_id": 3149, + "state_code": "07", + "country_id": 35, + "country_code": "BF", + "latitude": "11.16972000", + "longitude": "-1.14500000" + }, + { + "id": "9249", + "name": "Zoundweogo Province", + "state_id": 3149, + "state_code": "07", + "country_id": 35, + "country_code": "BF", + "latitude": "11.58333000", + "longitude": "-1.00000000" + }, + { + "id": "9163", + "name": "Bogandé", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "12.97040000", + "longitude": "-0.14953000" + }, + { + "id": "9168", + "name": "Diapaga", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "12.07305000", + "longitude": "1.78838000" + }, + { + "id": "9173", + "name": "Fada N'gourma", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "12.06157000", + "longitude": "0.35843000" + }, + { + "id": "9175", + "name": "Gayéri", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "12.64824000", + "longitude": "0.49314000" + }, + { + "id": "9176", + "name": "Gnagna Province", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "12.91880000", + "longitude": "0.03920000" + }, + { + "id": "9197", + "name": "Pama", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "11.24972000", + "longitude": "0.70750000" + }, + { + "id": "9201", + "name": "Province de la Komandjoari", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "12.66667000", + "longitude": "0.66667000" + }, + { + "id": "9202", + "name": "Province de la Kompienga", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "11.41667000", + "longitude": "0.91667000" + }, + { + "id": "9206", + "name": "Province de la Tapoa", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "12.00000000", + "longitude": "1.75000000" + }, + { + "id": "9214", + "name": "Province du Gourma", + "state_id": 3158, + "state_code": "08", + "country_id": 35, + "country_code": "BF", + "latitude": "12.08333000", + "longitude": "0.50000000" + }, + { + "id": "9162", + "name": "Bobo-Dioulasso", + "state_id": 3165, + "state_code": "09", + "country_id": 35, + "country_code": "BF", + "latitude": "11.17715000", + "longitude": "-4.29790000" + }, + { + "id": "9180", + "name": "Houndé", + "state_id": 3165, + "state_code": "09", + "country_id": 35, + "country_code": "BF", + "latitude": "11.50000000", + "longitude": "-3.51667000" + }, + { + "id": "9215", + "name": "Province du Houet", + "state_id": 3165, + "state_code": "09", + "country_id": 35, + "country_code": "BF", + "latitude": "11.33333000", + "longitude": "-4.25000000" + }, + { + "id": "9219", + "name": "Province du Kénédougou", + "state_id": 3165, + "state_code": "09", + "country_id": 35, + "country_code": "BF", + "latitude": "11.41667000", + "longitude": "-5.00000000" + }, + { + "id": "9232", + "name": "Province du Tuy", + "state_id": 3165, + "state_code": "09", + "country_id": 35, + "country_code": "BF", + "latitude": "11.41667000", + "longitude": "-3.41667000" + }, + { + "id": "9179", + "name": "Gourcy", + "state_id": 3164, + "state_code": "10", + "country_id": 35, + "country_code": "BF", + "latitude": "13.20776000", + "longitude": "-2.35893000" + }, + { + "id": "9194", + "name": "Ouahigouya", + "state_id": 3164, + "state_code": "10", + "country_id": 35, + "country_code": "BF", + "latitude": "13.58278000", + "longitude": "-2.42158000" + }, + { + "id": "9220", + "name": "Province du Loroum", + "state_id": 3164, + "state_code": "10", + "country_id": 35, + "country_code": "BF", + "latitude": "13.91667000", + "longitude": "-2.16667000" + }, + { + "id": "9225", + "name": "Province du Passoré", + "state_id": 3164, + "state_code": "10", + "country_id": 35, + "country_code": "BF", + "latitude": "12.91667000", + "longitude": "-2.16667000" + }, + { + "id": "9234", + "name": "Province du Yatenga", + "state_id": 3164, + "state_code": "10", + "country_id": 35, + "country_code": "BF", + "latitude": "13.58333000", + "longitude": "-2.41667000" + }, + { + "id": "9236", + "name": "Province du Zondoma", + "state_id": 3164, + "state_code": "10", + "country_id": 35, + "country_code": "BF", + "latitude": "13.18333000", + "longitude": "-2.36667000" + }, + { + "id": "9243", + "name": "Titao", + "state_id": 3164, + "state_code": "10", + "country_id": 35, + "country_code": "BF", + "latitude": "13.76667000", + "longitude": "-2.06667000" + }, + { + "id": "9246", + "name": "Yako", + "state_id": 3164, + "state_code": "10", + "country_id": 35, + "country_code": "BF", + "latitude": "12.95910000", + "longitude": "-2.26075000" + }, + { + "id": "9166", + "name": "Boussé", + "state_id": 3125, + "state_code": "11", + "country_id": 35, + "country_code": "BF", + "latitude": "12.66121000", + "longitude": "-1.89515000" + }, + { + "id": "9196", + "name": "Oubritenga", + "state_id": 3125, + "state_code": "11", + "country_id": 35, + "country_code": "BF", + "latitude": "12.66667000", + "longitude": "-1.33333000" + }, + { + "id": "9213", + "name": "Province du Ganzourgou", + "state_id": 3125, + "state_code": "11", + "country_id": 35, + "country_code": "BF", + "latitude": "12.26667000", + "longitude": "-0.76667000" + }, + { + "id": "9218", + "name": "Province du Kourwéogo", + "state_id": 3125, + "state_code": "11", + "country_id": 35, + "country_code": "BF", + "latitude": "12.58333000", + "longitude": "-1.76667000" + }, + { + "id": "9247", + "name": "Ziniaré", + "state_id": 3125, + "state_code": "11", + "country_id": 35, + "country_code": "BF", + "latitude": "12.58186000", + "longitude": "-1.29710000" + }, + { + "id": "9248", + "name": "Zorgo", + "state_id": 3125, + "state_code": "11", + "country_id": 35, + "country_code": "BF", + "latitude": "12.24922000", + "longitude": "-0.61527000" + }, + { + "id": "9170", + "name": "Djibo", + "state_id": 3114, + "state_code": "12", + "country_id": 35, + "country_code": "BF", + "latitude": "14.09940000", + "longitude": "-1.62554000" + }, + { + "id": "9171", + "name": "Dori", + "state_id": 3114, + "state_code": "12", + "country_id": 35, + "country_code": "BF", + "latitude": "14.03540000", + "longitude": "-0.03450000" + }, + { + "id": "9177", + "name": "Gorom-Gorom", + "state_id": 3114, + "state_code": "12", + "country_id": 35, + "country_code": "BF", + "latitude": "14.44290000", + "longitude": "-0.23468000" + }, + { + "id": "9207", + "name": "Province de l’Oudalan", + "state_id": 3114, + "state_code": "12", + "country_id": 35, + "country_code": "BF", + "latitude": "14.66667000", + "longitude": "-0.33333000" + }, + { + "id": "9231", + "name": "Province du Séno", + "state_id": 3114, + "state_code": "12", + "country_id": 35, + "country_code": "BF", + "latitude": "13.96400000", + "longitude": "0.01200000" + }, + { + "id": "9229", + "name": "Province du Soum", + "state_id": 3114, + "state_code": "12", + "country_id": 35, + "country_code": "BF", + "latitude": "14.33333000", + "longitude": "-1.25000000" + }, + { + "id": "9233", + "name": "Province du Yagha", + "state_id": 3114, + "state_code": "12", + "country_id": 35, + "country_code": "BF", + "latitude": "13.41667000", + "longitude": "0.58333000" + }, + { + "id": "9160", + "name": "Batié", + "state_id": 3140, + "state_code": "13", + "country_id": 35, + "country_code": "BF", + "latitude": "9.88333000", + "longitude": "-2.91667000" + }, + { + "id": "9167", + "name": "Dano", + "state_id": 3140, + "state_code": "13", + "country_id": 35, + "country_code": "BF", + "latitude": "11.14640000", + "longitude": "-3.05784000" + }, + { + "id": "9169", + "name": "Diébougou", + "state_id": 3140, + "state_code": "13", + "country_id": 35, + "country_code": "BF", + "latitude": "10.96209000", + "longitude": "-3.24967000" + }, + { + "id": "9199", + "name": "Province de la Bougouriba", + "state_id": 3140, + "state_code": "13", + "country_id": 35, + "country_code": "BF", + "latitude": "10.83333000", + "longitude": "-3.41667000" + }, + { + "id": "9216", + "name": "Province du Ioba", + "state_id": 3140, + "state_code": "13", + "country_id": 35, + "country_code": "BF", + "latitude": "11.08333000", + "longitude": "-3.08333000" + }, + { + "id": "9224", + "name": "Province du Noumbièl", + "state_id": 3140, + "state_code": "13", + "country_id": 35, + "country_code": "BF", + "latitude": "9.83333000", + "longitude": "-3.00000000" + }, + { + "id": "9226", + "name": "Province du Poni", + "state_id": 3140, + "state_code": "13", + "country_id": 35, + "country_code": "BF", + "latitude": "10.25000000", + "longitude": "-3.41667000" + }, + { + "id": "9762", + "name": "Bubanza", + "state_id": 3196, + "state_code": "BB", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.08040000", + "longitude": "29.39100000" + }, + { + "id": "9763", + "name": "Bujumbura", + "state_id": 3198, + "state_code": "BM", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.38193000", + "longitude": "29.36142000" + }, + { + "id": "9764", + "name": "Bururi", + "state_id": 3202, + "state_code": "BR", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.94877000", + "longitude": "29.62438000" + }, + { + "id": "9765", + "name": "Cankuzo", + "state_id": 3201, + "state_code": "CA", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.21860000", + "longitude": "30.55280000" + }, + { + "id": "9766", + "name": "Cibitoke", + "state_id": 3190, + "state_code": "CI", + "country_id": 36, + "country_code": "BI", + "latitude": "-2.88690000", + "longitude": "29.12480000" + }, + { + "id": "9767", + "name": "Gitega", + "state_id": 3197, + "state_code": "GI", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.42708000", + "longitude": "29.92463000" + }, + { + "id": "9768", + "name": "Karuzi", + "state_id": 3194, + "state_code": "KR", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.10139000", + "longitude": "30.16278000" + }, + { + "id": "9769", + "name": "Kayanza", + "state_id": 3192, + "state_code": "KY", + "country_id": 36, + "country_code": "BI", + "latitude": "-2.92210000", + "longitude": "29.62930000" + }, + { + "id": "9770", + "name": "Kirundo", + "state_id": 3195, + "state_code": "KI", + "country_id": 36, + "country_code": "BI", + "latitude": "-2.58450000", + "longitude": "30.09590000" + }, + { + "id": "9771", + "name": "Makamba", + "state_id": 3188, + "state_code": "MA", + "country_id": 36, + "country_code": "BI", + "latitude": "-4.13480000", + "longitude": "29.80400000" + }, + { + "id": "9772", + "name": "Muramvya", + "state_id": 3193, + "state_code": "MU", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.26820000", + "longitude": "29.60790000" + }, + { + "id": "9773", + "name": "Muyinga", + "state_id": 3186, + "state_code": "MY", + "country_id": 36, + "country_code": "BI", + "latitude": "-2.84510000", + "longitude": "30.34140000" + }, + { + "id": "9774", + "name": "Mwaro", + "state_id": 3187, + "state_code": "MW", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.51128000", + "longitude": "29.70334000" + }, + { + "id": "9775", + "name": "Ngozi", + "state_id": 3199, + "state_code": "NG", + "country_id": 36, + "country_code": "BI", + "latitude": "-2.90750000", + "longitude": "29.83060000" + }, + { + "id": "9776", + "name": "Rumonge", + "state_id": 3185, + "state_code": "RM", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.97360000", + "longitude": "29.43860000" + }, + { + "id": "9777", + "name": "Rutana", + "state_id": 3189, + "state_code": "RT", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.92790000", + "longitude": "29.99200000" + }, + { + "id": "9778", + "name": "Ruyigi", + "state_id": 3191, + "state_code": "RY", + "country_id": 36, + "country_code": "BI", + "latitude": "-3.47639000", + "longitude": "30.24861000" + }, + { + "id": "64967", + "name": "Mongkol Borei", + "state_id": 3984, + "state_code": "1", + "country_id": 37, + "country_code": "KH", + "latitude": "13.45531000", + "longitude": "102.99186000" + }, + { + "id": "64969", + "name": "Paoy Paet", + "state_id": 3984, + "state_code": "1", + "country_id": 37, + "country_code": "KH", + "latitude": "13.65805000", + "longitude": "102.56365000" + }, + { + "id": "64981", + "name": "Sisophon", + "state_id": 3984, + "state_code": "1", + "country_id": 37, + "country_code": "KH", + "latitude": "13.58588000", + "longitude": "102.97369000" + }, + { + "id": "65009", + "name": "Srŏk Malai", + "state_id": 3984, + "state_code": "1", + "country_id": 37, + "country_code": "KH", + "latitude": "13.49902000", + "longitude": "102.60164000" + }, + { + "id": "65022", + "name": "Srŏk Svay Chék", + "state_id": 3984, + "state_code": "1", + "country_id": 37, + "country_code": "KH", + "latitude": "13.81305000", + "longitude": "102.95269000" + }, + { + "id": "64940", + "name": "Battambang", + "state_id": 3976, + "state_code": "2", + "country_id": 37, + "country_code": "KH", + "latitude": "13.10271000", + "longitude": "103.19822000" + }, + { + "id": "65028", + "name": "Srŏk Âk Phnŭm", + "state_id": 3976, + "state_code": "2", + "country_id": 37, + "country_code": "KH", + "latitude": "13.23621000", + "longitude": "103.45894000" + }, + { + "id": "64988", + "name": "Srŏk Banăn", + "state_id": 3976, + "state_code": "2", + "country_id": 37, + "country_code": "KH", + "latitude": "12.97067000", + "longitude": "103.04742000" + }, + { + "id": "64995", + "name": "Srŏk Bâvĭl", + "state_id": 3976, + "state_code": "2", + "country_id": 37, + "country_code": "KH", + "latitude": "13.23601000", + "longitude": "102.82910000" + }, + { + "id": "65017", + "name": "Srŏk Rotanak Mondol", + "state_id": 3976, + "state_code": "2", + "country_id": 37, + "country_code": "KH", + "latitude": "12.84048000", + "longitude": "102.88700000" + }, + { + "id": "64941", + "name": "Cheung Prey", + "state_id": 3991, + "state_code": "3", + "country_id": 37, + "country_code": "KH", + "latitude": "12.10000000", + "longitude": "105.07000000" + }, + { + "id": "64944", + "name": "Kampong Cham", + "state_id": 3991, + "state_code": "3", + "country_id": 37, + "country_code": "KH", + "latitude": "11.98000000", + "longitude": "105.44500000" + }, + { + "id": "64990", + "name": "Srŏk Bathéay", + "state_id": 3991, + "state_code": "3", + "country_id": 37, + "country_code": "KH", + "latitude": "12.02986000", + "longitude": "104.93171000" + }, + { + "id": "64939", + "name": "Baribour", + "state_id": 3979, + "state_code": "4", + "country_id": 37, + "country_code": "KH", + "latitude": "12.43000000", + "longitude": "104.47000000" + }, + { + "id": "64945", + "name": "Kampong Chhnang", + "state_id": 3979, + "state_code": "4", + "country_id": 37, + "country_code": "KH", + "latitude": "12.26000000", + "longitude": "104.67000000" + }, + { + "id": "64974", + "name": "Rolea B'ier", + "state_id": 3979, + "state_code": "4", + "country_id": 37, + "country_code": "KH", + "latitude": "12.21000000", + "longitude": "104.61000000" + }, + { + "id": "64997", + "name": "Srŏk Chol Kiri", + "state_id": 3979, + "state_code": "4", + "country_id": 37, + "country_code": "KH", + "latitude": "12.15861000", + "longitude": "104.82287000" + }, + { + "id": "65019", + "name": "Srŏk Sameakki Mean Chey", + "state_id": 3979, + "state_code": "4", + "country_id": 37, + "country_code": "KH", + "latitude": "11.86788000", + "longitude": "104.55549000" + }, + { + "id": "64946", + "name": "Kampong Speu", + "state_id": 3988, + "state_code": "5", + "country_id": 37, + "country_code": "KH", + "latitude": "11.45332000", + "longitude": "104.52085000" + }, + { + "id": "64962", + "name": "Krŏng Chbar Mon", + "state_id": 3988, + "state_code": "5", + "country_id": 37, + "country_code": "KH", + "latitude": "11.47091000", + "longitude": "104.50655000" + }, + { + "id": "65032", + "name": "Srŏk Ŏdŏngk", + "state_id": 3988, + "state_code": "5", + "country_id": 37, + "country_code": "KH", + "latitude": "11.66845000", + "longitude": "104.61224000" + }, + { + "id": "64989", + "name": "Srŏk Basedth", + "state_id": 3988, + "state_code": "5", + "country_id": 37, + "country_code": "KH", + "latitude": "11.18432000", + "longitude": "104.53584000" + }, + { + "id": "65008", + "name": "Srŏk Kông Pĭsei", + "state_id": 3988, + "state_code": "5", + "country_id": 37, + "country_code": "KH", + "latitude": "11.31648000", + "longitude": "104.65992000" + }, + { + "id": "64935", + "name": "Angkor Chey", + "state_id": 3981, + "state_code": "7", + "country_id": 37, + "country_code": "KH", + "latitude": "10.76667000", + "longitude": "104.65000000" + }, + { + "id": "64938", + "name": "Banteay Meas", + "state_id": 3981, + "state_code": "7", + "country_id": 37, + "country_code": "KH", + "latitude": "10.61667000", + "longitude": "104.53333000" + }, + { + "id": "64942", + "name": "Chhouk District", + "state_id": 3981, + "state_code": "7", + "country_id": 37, + "country_code": "KH", + "latitude": "10.81667000", + "longitude": "104.45000000" + }, + { + "id": "64943", + "name": "Kampong Bay", + "state_id": 3981, + "state_code": "7", + "country_id": 37, + "country_code": "KH", + "latitude": "10.59554000", + "longitude": "104.17136000" + }, + { + "id": "64947", + "name": "Kampong Tranch", + "state_id": 3981, + "state_code": "7", + "country_id": 37, + "country_code": "KH", + "latitude": "10.55000000", + "longitude": "104.46667000" + }, + { + "id": "64948", + "name": "Kampot", + "state_id": 3981, + "state_code": "7", + "country_id": 37, + "country_code": "KH", + "latitude": "10.61041000", + "longitude": "104.18145000" + }, + { + "id": "64998", + "name": "Srŏk Chŭm Kiri", + "state_id": 3981, + "state_code": "7", + "country_id": 37, + "country_code": "KH", + "latitude": "11.00540000", + "longitude": "104.44207000" + }, + { + "id": "65001", + "name": "Srŏk Dângtóng", + "state_id": 3981, + "state_code": "7", + "country_id": 37, + "country_code": "KH", + "latitude": "10.70733000", + "longitude": "104.42229000" + }, + { + "id": "64986", + "name": "Srok Tuek Chhou", + "state_id": 3981, + "state_code": "7", + "country_id": 37, + "country_code": "KH", + "latitude": "10.74557000", + "longitude": "104.11013000" + }, + { + "id": "64965", + "name": "Krŏng Ta Khmau", + "state_id": 3983, + "state_code": "8", + "country_id": 37, + "country_code": "KH", + "latitude": "11.45474000", + "longitude": "104.94350000" + }, + { + "id": "65003", + "name": "Srŏk Khsăch Kândal", + "state_id": 3983, + "state_code": "8", + "country_id": 37, + "country_code": "KH", + "latitude": "11.69224000", + "longitude": "105.03732000" + }, + { + "id": "65037", + "name": "Ta Khmau", + "state_id": 3983, + "state_code": "8", + "country_id": 37, + "country_code": "KH", + "latitude": "11.48333000", + "longitude": "104.95000000" + }, + { + "id": "64961", + "name": "Krong Kep", + "state_id": 3978, + "state_code": "23", + "country_id": 37, + "country_code": "KH", + "latitude": "10.48291000", + "longitude": "104.31672000" + }, + { + "id": "65000", + "name": "Srŏk Dâmnăk Châng’aeur", + "state_id": 3978, + "state_code": "23", + "country_id": 37, + "country_code": "KH", + "latitude": "10.53394000", + "longitude": "104.34855000" + }, + { + "id": "64957", + "name": "Koh Kong", + "state_id": 3982, + "state_code": "9", + "country_id": 37, + "country_code": "KH", + "latitude": "11.61531000", + "longitude": "102.98380000" + }, + { + "id": "64982", + "name": "Smach Mean Chey", + "state_id": 3982, + "state_code": "9", + "country_id": 37, + "country_code": "KH", + "latitude": "11.54665000", + "longitude": "103.03569000" + }, + { + "id": "64984", + "name": "Srae Ambel", + "state_id": 3982, + "state_code": "9", + "country_id": 37, + "country_code": "KH", + "latitude": "11.10968000", + "longitude": "103.76226000" + }, + { + "id": "64991", + "name": "Srŏk Batum Sakôr", + "state_id": 3982, + "state_code": "9", + "country_id": 37, + "country_code": "KH", + "latitude": "11.11465000", + "longitude": "103.38993000" + }, + { + "id": "65011", + "name": "Srŏk Môndôl Seima", + "state_id": 3982, + "state_code": "9", + "country_id": 37, + "country_code": "KH", + "latitude": "11.81292000", + "longitude": "103.01159000" + }, + { + "id": "64958", + "name": "Kracheh", + "state_id": 3986, + "state_code": "10", + "country_id": 37, + "country_code": "KH", + "latitude": "12.57000000", + "longitude": "106.20000000" + }, + { + "id": "64960", + "name": "Kratié", + "state_id": 3986, + "state_code": "10", + "country_id": 37, + "country_code": "KH", + "latitude": "12.48811000", + "longitude": "106.01879000" + }, + { + "id": "64983", + "name": "Snuol", + "state_id": 3986, + "state_code": "10", + "country_id": 37, + "country_code": "KH", + "latitude": "12.19373000", + "longitude": "106.47361000" + }, + { + "id": "64964", + "name": "Krŏng Sênmônoŭrôm", + "state_id": 3985, + "state_code": "11", + "country_id": 37, + "country_code": "KH", + "latitude": "12.50480000", + "longitude": "107.15525000" + }, + { + "id": "64978", + "name": "Sen Monorom", + "state_id": 3985, + "state_code": "11", + "country_id": 37, + "country_code": "KH", + "latitude": "12.45583000", + "longitude": "107.18811000" + }, + { + "id": "65002", + "name": "Srŏk Kaev Seima", + "state_id": 3985, + "state_code": "11", + "country_id": 37, + "country_code": "KH", + "latitude": "12.41722000", + "longitude": "106.77025000" + }, + { + "id": "65014", + "name": "Srŏk Pech Chreada", + "state_id": 3985, + "state_code": "11", + "country_id": 37, + "country_code": "KH", + "latitude": "12.72780000", + "longitude": "107.09480000" + }, + { + "id": "64976", + "name": "Samraong", + "state_id": 3987, + "state_code": "22", + "country_id": 37, + "country_code": "KH", + "latitude": "14.18175000", + "longitude": "103.51761000" + }, + { + "id": "64994", + "name": "Srŏk Bântéay Âmpĭl", + "state_id": 3987, + "state_code": "22", + "country_id": 37, + "country_code": "KH", + "latitude": "14.18590000", + "longitude": "103.25925000" + }, + { + "id": "65023", + "name": "Srŏk Sâmraông", + "state_id": 3987, + "state_code": "22", + "country_id": 37, + "country_code": "KH", + "latitude": "14.25039000", + "longitude": "103.62739000" + }, + { + "id": "65026", + "name": "Srŏk Trâpeăng Prasat", + "state_id": 3987, + "state_code": "22", + "country_id": 37, + "country_code": "KH", + "latitude": "14.25809000", + "longitude": "104.30835000" + }, + { + "id": "64956", + "name": "Khan Sala Krau", + "state_id": 3980, + "state_code": "24", + "country_id": 37, + "country_code": "KH", + "latitude": "12.97984000", + "longitude": "102.63957000" + }, + { + "id": "64968", + "name": "Pailin", + "state_id": 3980, + "state_code": "24", + "country_id": 37, + "country_code": "KH", + "latitude": "12.84895000", + "longitude": "102.60928000" + }, + { + "id": "64949", + "name": "Khan 7 Makara", + "state_id": 3994, + "state_code": "12", + "country_id": 37, + "country_code": "KH", + "latitude": "11.56254000", + "longitude": "104.91405000" + }, + { + "id": "64950", + "name": "Khan Châmkar Mon", + "state_id": 3994, + "state_code": "12", + "country_id": 37, + "country_code": "KH", + "latitude": "11.54390000", + "longitude": "104.92175000" + }, + { + "id": "64952", + "name": "Khan Dângkaô", + "state_id": 3994, + "state_code": "12", + "country_id": 37, + "country_code": "KH", + "latitude": "11.52457000", + "longitude": "104.83944000" + }, + { + "id": "64951", + "name": "Khan Duŏn Pénh", + "state_id": 3994, + "state_code": "12", + "country_id": 37, + "country_code": "KH", + "latitude": "11.57561000", + "longitude": "104.92025000" + }, + { + "id": "64953", + "name": "Khan Méan Chey", + "state_id": 3994, + "state_code": "12", + "country_id": 37, + "country_code": "KH", + "latitude": "11.51976000", + "longitude": "104.95467000" + }, + { + "id": "64954", + "name": "Khan Russey Keo", + "state_id": 3994, + "state_code": "12", + "country_id": 37, + "country_code": "KH", + "latitude": "11.61946000", + "longitude": "104.90990000" + }, + { + "id": "64955", + "name": "Khan Saen Sokh", + "state_id": 3994, + "state_code": "12", + "country_id": 37, + "country_code": "KH", + "latitude": "11.61289000", + "longitude": "104.86078000" + }, + { + "id": "64970", + "name": "Phnom Penh", + "state_id": 3994, + "state_code": "12", + "country_id": 37, + "country_code": "KH", + "latitude": "11.56245000", + "longitude": "104.91601000" + }, + { + "id": "64977", + "name": "Sangkom Thmei", + "state_id": 3973, + "state_code": "13", + "country_id": 37, + "country_code": "KH", + "latitude": "13.47395000", + "longitude": "104.77051000" + }, + { + "id": "64999", + "name": "Srŏk Ch’êh Sên", + "state_id": 3973, + "state_code": "13", + "country_id": 37, + "country_code": "KH", + "latitude": "13.58215000", + "longitude": "105.34533000" + }, + { + "id": "64996", + "name": "Srŏk Chhêb", + "state_id": 3973, + "state_code": "13", + "country_id": 37, + "country_code": "KH", + "latitude": "13.91077000", + "longitude": "105.46180000" + }, + { + "id": "65005", + "name": "Srŏk Kulén", + "state_id": 3973, + "state_code": "13", + "country_id": 37, + "country_code": "KH", + "latitude": "13.78597000", + "longitude": "104.61052000" + }, + { + "id": "65018", + "name": "Srŏk Rôviĕng", + "state_id": 3973, + "state_code": "13", + "country_id": 37, + "country_code": "KH", + "latitude": "13.35105000", + "longitude": "105.09956000" + }, + { + "id": "65025", + "name": "Srŏk Tbêng Méanchey", + "state_id": 3973, + "state_code": "13", + "country_id": 37, + "country_code": "KH", + "latitude": "13.78622000", + "longitude": "105.01586000" + }, + { + "id": "65039", + "name": "Tbeng Meanchey", + "state_id": 3973, + "state_code": "13", + "country_id": 37, + "country_code": "KH", + "latitude": "13.80731000", + "longitude": "104.98046000" + }, + { + "id": "64972", + "name": "Prey Veng", + "state_id": 3974, + "state_code": "14", + "country_id": 37, + "country_code": "KH", + "latitude": "11.48682000", + "longitude": "105.32533000" + }, + { + "id": "65006", + "name": "Srŏk Kâmpóng Léav", + "state_id": 3974, + "state_code": "14", + "country_id": 37, + "country_code": "KH", + "latitude": "11.50970000", + "longitude": "105.30110000" + }, + { + "id": "65010", + "name": "Srŏk Mésang", + "state_id": 3974, + "state_code": "14", + "country_id": 37, + "country_code": "KH", + "latitude": "11.35528000", + "longitude": "105.57235000" + }, + { + "id": "65016", + "name": "Srŏk Preăh Sdéch", + "state_id": 3974, + "state_code": "14", + "country_id": 37, + "country_code": "KH", + "latitude": "11.08690000", + "longitude": "105.37497000" + }, + { + "id": "64936", + "name": "Bakan", + "state_id": 3977, + "state_code": "15", + "country_id": 37, + "country_code": "KH", + "latitude": "12.78000000", + "longitude": "103.79000000" + }, + { + "id": "64959", + "name": "Krakor", + "state_id": 3977, + "state_code": "15", + "country_id": 37, + "country_code": "KH", + "latitude": "12.48000000", + "longitude": "104.19000000" + }, + { + "id": "64973", + "name": "Pursat", + "state_id": 3977, + "state_code": "15", + "country_id": 37, + "country_code": "KH", + "latitude": "12.53878000", + "longitude": "103.91920000" + }, + { + "id": "64975", + "name": "Sampov Meas", + "state_id": 3977, + "state_code": "15", + "country_id": 37, + "country_code": "KH", + "latitude": "12.47055000", + "longitude": "103.91817000" + }, + { + "id": "65007", + "name": "Srŏk Kândiĕng", + "state_id": 3977, + "state_code": "15", + "country_id": 37, + "country_code": "KH", + "latitude": "12.71245000", + "longitude": "104.02592000" + }, + { + "id": "65027", + "name": "Srŏk Véal Vêng", + "state_id": 3977, + "state_code": "15", + "country_id": 37, + "country_code": "KH", + "latitude": "12.24230000", + "longitude": "103.13444000" + }, + { + "id": "64937", + "name": "Banlung", + "state_id": 3990, + "state_code": "16", + "country_id": 37, + "country_code": "KH", + "latitude": "13.73939000", + "longitude": "106.98727000" + }, + { + "id": "64966", + "name": "Lumphat", + "state_id": 3990, + "state_code": "16", + "country_id": 37, + "country_code": "KH", + "latitude": "13.49146000", + "longitude": "106.98022000" + }, + { + "id": "65029", + "name": "Srŏk Ândong Méas", + "state_id": 3990, + "state_code": "16", + "country_id": 37, + "country_code": "KH", + "latitude": "13.93352000", + "longitude": "107.31155000" + }, + { + "id": "64987", + "name": "Srŏk Ban Lŭng", + "state_id": 3990, + "state_code": "16", + "country_id": 37, + "country_code": "KH", + "latitude": "13.68200000", + "longitude": "107.03025000" + }, + { + "id": "64993", + "name": "Srŏk Bâ Kêv", + "state_id": 3990, + "state_code": "16", + "country_id": 37, + "country_code": "KH", + "latitude": "13.70749000", + "longitude": "107.19442000" + }, + { + "id": "65004", + "name": "Srŏk Koun Mom", + "state_id": 3990, + "state_code": "16", + "country_id": 37, + "country_code": "KH", + "latitude": "13.51772000", + "longitude": "106.75142000" + }, + { + "id": "65012", + "name": "Srŏk Ou Chum", + "state_id": 3990, + "state_code": "16", + "country_id": 37, + "country_code": "KH", + "latitude": "13.84069000", + "longitude": "107.03469000" + }, + { + "id": "65013", + "name": "Srŏk Ou Ya Dav", + "state_id": 3990, + "state_code": "16", + "country_id": 37, + "country_code": "KH", + "latitude": "13.54328000", + "longitude": "107.44636000" + }, + { + "id": "65024", + "name": "Srŏk Ta Vêng", + "state_id": 3990, + "state_code": "16", + "country_id": 37, + "country_code": "KH", + "latitude": "14.29192000", + "longitude": "107.24031000" + }, + { + "id": "64979", + "name": "Siem Reap", + "state_id": 3992, + "state_code": "17", + "country_id": 37, + "country_code": "KH", + "latitude": "13.36179000", + "longitude": "103.86056000" + }, + { + "id": "65031", + "name": "Srŏk Ângkôr Thum", + "state_id": 3992, + "state_code": "17", + "country_id": 37, + "country_code": "KH", + "latitude": "13.57881000", + "longitude": "103.85645000" + }, + { + "id": "65015", + "name": "Srŏk Prasat Bakong", + "state_id": 3992, + "state_code": "17", + "country_id": 37, + "country_code": "KH", + "latitude": "13.21031000", + "longitude": "103.97689000" + }, + { + "id": "65035", + "name": "Svay Leu", + "state_id": 3992, + "state_code": "17", + "country_id": 37, + "country_code": "KH", + "latitude": "13.69168000", + "longitude": "104.27446000" + }, + { + "id": "65040", + "name": "Varin", + "state_id": 3992, + "state_code": "17", + "country_id": 37, + "country_code": "KH", + "latitude": "13.83574000", + "longitude": "103.89968000" + }, + { + "id": "64980", + "name": "Sihanoukville", + "state_id": 3989, + "state_code": "18", + "country_id": 37, + "country_code": "KH", + "latitude": "10.60932000", + "longitude": "103.52958000" + }, + { + "id": "64985", + "name": "Srok Stueng Hav", + "state_id": 3989, + "state_code": "18", + "country_id": 37, + "country_code": "KH", + "latitude": "10.85249000", + "longitude": "103.74016000" + }, + { + "id": "65020", + "name": "Srŏk Srêsén", + "state_id": 3993, + "state_code": "19", + "country_id": 37, + "country_code": "KH", + "latitude": "13.60530000", + "longitude": "106.35819000" + }, + { + "id": "65033", + "name": "Stueng Traeng", + "state_id": 3993, + "state_code": "19", + "country_id": 37, + "country_code": "KH", + "latitude": "13.65000000", + "longitude": "106.07000000" + }, + { + "id": "65034", + "name": "Stung Treng", + "state_id": 3993, + "state_code": "19", + "country_id": 37, + "country_code": "KH", + "latitude": "13.52586000", + "longitude": "105.96830000" + }, + { + "id": "65021", + "name": "Srŏk Svay Chrŭm", + "state_id": 3972, + "state_code": "20", + "country_id": 37, + "country_code": "KH", + "latitude": "11.11160000", + "longitude": "105.69814000" + }, + { + "id": "65036", + "name": "Svay Rieng", + "state_id": 3972, + "state_code": "20", + "country_id": 37, + "country_code": "KH", + "latitude": "11.08785000", + "longitude": "105.79935000" + }, + { + "id": "64963", + "name": "Krŏng Doun Kaev", + "state_id": 3975, + "state_code": "21", + "country_id": 37, + "country_code": "KH", + "latitude": "10.99459000", + "longitude": "104.79550000" + }, + { + "id": "64971", + "name": "Phumĭ Véal Srê", + "state_id": 3975, + "state_code": "21", + "country_id": 37, + "country_code": "KH", + "latitude": "10.98081000", + "longitude": "104.77828000" + }, + { + "id": "65030", + "name": "Srŏk Ângkôr Borei", + "state_id": 3975, + "state_code": "21", + "country_id": 37, + "country_code": "KH", + "latitude": "10.99291000", + "longitude": "104.95177000" + }, + { + "id": "64992", + "name": "Srŏk Borei Cholsar", + "state_id": 3975, + "state_code": "21", + "country_id": 37, + "country_code": "KH", + "latitude": "10.81414000", + "longitude": "104.98994000" + }, + { + "id": "65038", + "name": "Takeo", + "state_id": 3975, + "state_code": "21", + "country_id": 37, + "country_code": "KH", + "latitude": "10.99081000", + "longitude": "104.78498000" + }, + { + "id": "19148", + "name": "Bankim", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "6.08303000", + "longitude": "11.49050000" + }, + { + "id": "19150", + "name": "Banyo", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "6.75000000", + "longitude": "11.81667000" + }, + { + "id": "19162", + "name": "Bélel", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "7.05000000", + "longitude": "14.43333000" + }, + { + "id": "19168", + "name": "Djohong", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "6.83333000", + "longitude": "14.70000000" + }, + { + "id": "19187", + "name": "Kontcha", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "7.96667000", + "longitude": "12.23333000" + }, + { + "id": "19203", + "name": "Mayo-Banyo", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "6.58138000", + "longitude": "11.73522000" + }, + { + "id": "19218", + "name": "Meïganga", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "6.51667000", + "longitude": "14.30000000" + }, + { + "id": "19236", + "name": "Ngaoundéré", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "7.32765000", + "longitude": "13.58472000" + }, + { + "id": "19256", + "name": "Somié", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "6.45843000", + "longitude": "11.43299000" + }, + { + "id": "19258", + "name": "Tibati", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "6.46504000", + "longitude": "12.62843000" + }, + { + "id": "19259", + "name": "Tignère", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "7.36667000", + "longitude": "12.65000000" + }, + { + "id": "19262", + "name": "Vina", + "state_id": 2663, + "state_code": "AD", + "country_id": 38, + "country_code": "CM", + "latitude": "7.16365000", + "longitude": "13.72711000" + }, + { + "id": "19134", + "name": "Akono", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.50000000", + "longitude": "11.33333000" + }, + { + "id": "19135", + "name": "Akonolinga", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.76667000", + "longitude": "12.25000000" + }, + { + "id": "19270", + "name": "Évodoula", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.08333000", + "longitude": "11.20000000" + }, + { + "id": "19139", + "name": "Bafia", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.75000000", + "longitude": "11.23333000" + }, + { + "id": "19174", + "name": "Eséka", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.65000000", + "longitude": "10.76667000" + }, + { + "id": "19173", + "name": "Essé", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.10000000", + "longitude": "11.90000000" + }, + { + "id": "19208", + "name": "Mbalmayo", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.51667000", + "longitude": "11.50000000" + }, + { + "id": "19209", + "name": "Mbam-Et-Inoubou", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.73754000", + "longitude": "10.96972000" + }, + { + "id": "19210", + "name": "Mbandjok", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.45000000", + "longitude": "11.90000000" + }, + { + "id": "19213", + "name": "Mbankomo", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.78333000", + "longitude": "11.38333000" + }, + { + "id": "19216", + "name": "Mefou-et-Akono", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.58706000", + "longitude": "11.36089000" + }, + { + "id": "19219", + "name": "Mfoundi", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.86670000", + "longitude": "11.51670000" + }, + { + "id": "19221", + "name": "Minta", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.58333000", + "longitude": "12.80000000" + }, + { + "id": "19231", + "name": "Nanga Eboko", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.68333000", + "longitude": "12.36667000" + }, + { + "id": "19233", + "name": "Ndikiniméki", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.76667000", + "longitude": "10.83333000" + }, + { + "id": "19237", + "name": "Ngomedzap", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.25000000", + "longitude": "11.20000000" + }, + { + "id": "19238", + "name": "Ngoro", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.95000000", + "longitude": "11.38333000" + }, + { + "id": "19243", + "name": "Nkoteng", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.51667000", + "longitude": "12.03333000" + }, + { + "id": "19245", + "name": "Ntui", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.45000000", + "longitude": "11.63333000" + }, + { + "id": "19246", + "name": "Obala", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.16667000", + "longitude": "11.53333000" + }, + { + "id": "19247", + "name": "Okoa", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.98333000", + "longitude": "11.60000000" + }, + { + "id": "19248", + "name": "Okola", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.01667000", + "longitude": "11.38333000" + }, + { + "id": "19249", + "name": "Ombésa", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.60000000", + "longitude": "11.25000000" + }, + { + "id": "19254", + "name": "Saa", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "4.36667000", + "longitude": "11.45000000" + }, + { + "id": "19266", + "name": "Yaoundé", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "3.86667000", + "longitude": "11.51667000" + }, + { + "id": "19268", + "name": "Yoko", + "state_id": 2660, + "state_code": "CE", + "country_id": 38, + "country_code": "CM", + "latitude": "5.53333000", + "longitude": "12.31667000" + }, + { + "id": "19132", + "name": "Abong Mbang", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "3.98333000", + "longitude": "13.18333000" + }, + { + "id": "19152", + "name": "Batouri", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "4.43333000", + "longitude": "14.36667000" + }, + { + "id": "19161", + "name": "Bélabo", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "4.93333000", + "longitude": "13.30000000" + }, + { + "id": "19163", + "name": "Bétaré Oya", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "5.60000000", + "longitude": "14.08333000" + }, + { + "id": "19156", + "name": "Bertoua", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "4.57728000", + "longitude": "13.68459000" + }, + { + "id": "19166", + "name": "Dimako", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "4.38333000", + "longitude": "13.56667000" + }, + { + "id": "19170", + "name": "Doumé", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "4.23333000", + "longitude": "13.45000000" + }, + { + "id": "19182", + "name": "Garoua Boulaï", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "5.88333000", + "longitude": "14.55000000" + }, + { + "id": "19211", + "name": "Mbang", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "4.58333000", + "longitude": "13.33333000" + }, + { + "id": "19232", + "name": "Ndelele", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "4.04065000", + "longitude": "14.92501000" + }, + { + "id": "19267", + "name": "Yokadouma", + "state_id": 2661, + "state_code": "ES", + "country_id": 38, + "country_code": "CM", + "latitude": "3.51667000", + "longitude": "15.05000000" + }, + { + "id": "19157", + "name": "Bogo", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "10.73360000", + "longitude": "14.60928000" + }, + { + "id": "19186", + "name": "Kaélé", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "10.10917000", + "longitude": "14.45083000" + }, + { + "id": "19189", + "name": "Kousséri", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "12.07689000", + "longitude": "15.03063000" + }, + { + "id": "19190", + "name": "Koza", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "10.86846000", + "longitude": "13.88205000" + }, + { + "id": "19199", + "name": "Makary", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "12.57535000", + "longitude": "14.45483000" + }, + { + "id": "19202", + "name": "Maroua", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "10.59095000", + "longitude": "14.31593000" + }, + { + "id": "19206", + "name": "Mayo-Sava", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "11.10682000", + "longitude": "14.20560000" + }, + { + "id": "19207", + "name": "Mayo-Tsanaga", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "10.58221000", + "longitude": "13.79351000" + }, + { + "id": "19220", + "name": "Mindif", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "10.39757000", + "longitude": "14.43626000" + }, + { + "id": "19223", + "name": "Mokolo", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "10.74244000", + "longitude": "13.80227000" + }, + { + "id": "19224", + "name": "Mora", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "11.04611000", + "longitude": "14.14011000" + }, + { + "id": "19265", + "name": "Yagoua", + "state_id": 2656, + "state_code": "EN", + "country_id": 38, + "country_code": "CM", + "latitude": "10.34107000", + "longitude": "15.23288000" + }, + { + "id": "19158", + "name": "Bonabéri", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.07142000", + "longitude": "9.68177000" + }, + { + "id": "19164", + "name": "Diang", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.25000000", + "longitude": "10.01667000" + }, + { + "id": "19165", + "name": "Dibombari", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.17870000", + "longitude": "9.65610000" + }, + { + "id": "19167", + "name": "Dizangué", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "3.76667000", + "longitude": "9.98333000" + }, + { + "id": "19169", + "name": "Douala", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.04827000", + "longitude": "9.70428000" + }, + { + "id": "19172", + "name": "Edéa", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "3.80000000", + "longitude": "10.13333000" + }, + { + "id": "19198", + "name": "Loum", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.71820000", + "longitude": "9.73510000" + }, + { + "id": "19201", + "name": "Manjo", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.84280000", + "longitude": "9.82170000" + }, + { + "id": "19212", + "name": "Mbanga", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.50160000", + "longitude": "9.56710000" + }, + { + "id": "19217", + "name": "Melong", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "5.12181000", + "longitude": "9.96143000" + }, + { + "id": "19225", + "name": "Mouanko", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "3.63972000", + "longitude": "9.77694000" + }, + { + "id": "19234", + "name": "Ndom", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.49780000", + "longitude": "9.56280000" + }, + { + "id": "19235", + "name": "Ngambé", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.23343000", + "longitude": "10.61532000" + }, + { + "id": "19242", + "name": "Nkongsamba", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.95470000", + "longitude": "9.94040000" + }, + { + "id": "19250", + "name": "Penja", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.63911000", + "longitude": "9.67987000" + }, + { + "id": "19264", + "name": "Yabassi", + "state_id": 2662, + "state_code": "LT", + "country_id": 38, + "country_code": "CM", + "latitude": "4.45697000", + "longitude": "9.96822000" + }, + { + "id": "19176", + "name": "Faro Department", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "8.25014000", + "longitude": "12.87829000" + }, + { + "id": "19181", + "name": "Garoua", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "9.30143000", + "longitude": "13.39771000" + }, + { + "id": "19183", + "name": "Guider", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "9.93330000", + "longitude": "13.94671000" + }, + { + "id": "19194", + "name": "Lagdo", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "9.05828000", + "longitude": "13.66605000" + }, + { + "id": "19204", + "name": "Mayo-Louti", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "9.96577000", + "longitude": "13.72738000" + }, + { + "id": "19205", + "name": "Mayo-Rey", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "8.12630000", + "longitude": "14.61456000" + }, + { + "id": "19251", + "name": "Pitoa", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "9.38390000", + "longitude": "13.50231000" + }, + { + "id": "19252", + "name": "Poli", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "8.47560000", + "longitude": "13.24097000" + }, + { + "id": "19253", + "name": "Rey Bouba", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "8.67240000", + "longitude": "14.17860000" + }, + { + "id": "19257", + "name": "Tcholliré", + "state_id": 2665, + "state_code": "NO", + "country_id": 38, + "country_code": "CM", + "latitude": "8.40220000", + "longitude": "14.16980000" + }, + { + "id": "19137", + "name": "Babanki", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.11667000", + "longitude": "10.25000000" + }, + { + "id": "19141", + "name": "Bali", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "5.88737000", + "longitude": "10.01176000" + }, + { + "id": "19142", + "name": "Bamenda", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "5.95970000", + "longitude": "10.14597000" + }, + { + "id": "19151", + "name": "Batibo", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "5.83580000", + "longitude": "9.85530000" + }, + { + "id": "19155", + "name": "Belo", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.13333000", + "longitude": "10.25000000" + }, + { + "id": "19159", + "name": "Boyo", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.36365000", + "longitude": "10.35540000" + }, + { + "id": "19180", + "name": "Fundong", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.25000000", + "longitude": "10.26667000" + }, + { + "id": "19185", + "name": "Jakiri", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.10000000", + "longitude": "10.65000000" + }, + { + "id": "19193", + "name": "Kumbo", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.20000000", + "longitude": "10.66667000" + }, + { + "id": "19214", + "name": "Mbengwi", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.01667000", + "longitude": "10.00000000" + }, + { + "id": "19222", + "name": "Mme-Bafumen", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.33333000", + "longitude": "10.23333000" + }, + { + "id": "19241", + "name": "Njinikom", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.23333000", + "longitude": "10.28333000" + }, + { + "id": "19263", + "name": "Wum", + "state_id": 2657, + "state_code": "NW", + "country_id": 38, + "country_code": "CM", + "latitude": "6.38333000", + "longitude": "10.06667000" + }, + { + "id": "19133", + "name": "Akom II", + "state_id": 2659, + "state_code": "SU", + "country_id": 38, + "country_code": "CM", + "latitude": "2.78333000", + "longitude": "10.56667000" + }, + { + "id": "19136", + "name": "Ambam", + "state_id": 2659, + "state_code": "SU", + "country_id": 38, + "country_code": "CM", + "latitude": "2.38333000", + "longitude": "11.28333000" + }, + { + "id": "19269", + "name": "Ébolowa", + "state_id": 2659, + "state_code": "SU", + "country_id": 38, + "country_code": "CM", + "latitude": "2.90000000", + "longitude": "11.15000000" + }, + { + "id": "19191", + "name": "Kribi", + "state_id": 2659, + "state_code": "SU", + "country_id": 38, + "country_code": "CM", + "latitude": "2.93725000", + "longitude": "9.90765000" + }, + { + "id": "19197", + "name": "Lolodorf", + "state_id": 2659, + "state_code": "SU", + "country_id": 38, + "country_code": "CM", + "latitude": "3.23333000", + "longitude": "10.73333000" + }, + { + "id": "19229", + "name": "Mvangué", + "state_id": 2659, + "state_code": "SU", + "country_id": 38, + "country_code": "CM", + "latitude": "2.96667000", + "longitude": "11.51667000" + }, + { + "id": "19230", + "name": "Mvila", + "state_id": 2659, + "state_code": "SU", + "country_id": 38, + "country_code": "CM", + "latitude": "2.79796000", + "longitude": "11.39434000" + }, + { + "id": "19255", + "name": "Sangmélima", + "state_id": 2659, + "state_code": "SU", + "country_id": 38, + "country_code": "CM", + "latitude": "2.93333000", + "longitude": "11.98333000" + }, + { + "id": "19144", + "name": "Bamusso", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.45910000", + "longitude": "8.90270000" + }, + { + "id": "19154", + "name": "Bekondo", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.68190000", + "longitude": "9.32140000" + }, + { + "id": "19160", + "name": "Buea", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.15342000", + "longitude": "9.24231000" + }, + { + "id": "19175", + "name": "Fako Division", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.16667000", + "longitude": "9.16667000" + }, + { + "id": "19177", + "name": "Fontem", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "5.46850000", + "longitude": "9.88180000" + }, + { + "id": "19192", + "name": "Kumba", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.63630000", + "longitude": "9.44690000" + }, + { + "id": "19195", + "name": "Lebialem", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "5.56043000", + "longitude": "9.92316000" + }, + { + "id": "19196", + "name": "Limbe", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.02356000", + "longitude": "9.20607000" + }, + { + "id": "19200", + "name": "Mamfe", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "5.75132000", + "longitude": "9.31370000" + }, + { + "id": "19226", + "name": "Mundemba", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.94790000", + "longitude": "8.87240000" + }, + { + "id": "19227", + "name": "Mutengene", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.09130000", + "longitude": "9.31440000" + }, + { + "id": "19228", + "name": "Muyuka", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.28980000", + "longitude": "9.41030000" + }, + { + "id": "19240", + "name": "Nguti", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "5.32990000", + "longitude": "9.41850000" + }, + { + "id": "19260", + "name": "Tiko", + "state_id": 2658, + "state_code": "SW", + "country_id": 38, + "country_code": "CM", + "latitude": "4.07500000", + "longitude": "9.36005000" + }, + { + "id": "19138", + "name": "Bafang", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.15705000", + "longitude": "10.17710000" + }, + { + "id": "19140", + "name": "Bafoussam", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.47775000", + "longitude": "10.41759000" + }, + { + "id": "19143", + "name": "Bamendjou", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.38988000", + "longitude": "10.33014000" + }, + { + "id": "19145", + "name": "Bana", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.14655000", + "longitude": "10.27545000" + }, + { + "id": "19146", + "name": "Bandjoun", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.37568000", + "longitude": "10.41326000" + }, + { + "id": "19147", + "name": "Bangangté", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.14079000", + "longitude": "10.52535000" + }, + { + "id": "19149", + "name": "Bansoa", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.44836000", + "longitude": "10.31355000" + }, + { + "id": "19153", + "name": "Bazou", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.06001000", + "longitude": "10.46751000" + }, + { + "id": "19171", + "name": "Dschang", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.44397000", + "longitude": "10.05332000" + }, + { + "id": "19178", + "name": "Foumban", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.72662000", + "longitude": "10.89865000" + }, + { + "id": "19179", + "name": "Foumbot", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.50803000", + "longitude": "10.63250000" + }, + { + "id": "19184", + "name": "Hauts-Plateaux", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.29632000", + "longitude": "10.34314000" + }, + { + "id": "19188", + "name": "Koung-Khi", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.33848000", + "longitude": "10.47453000" + }, + { + "id": "19215", + "name": "Mbouda", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.62611000", + "longitude": "10.25421000" + }, + { + "id": "19239", + "name": "Ngou", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.19685000", + "longitude": "10.38595000" + }, + { + "id": "19244", + "name": "Noun", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "5.64123000", + "longitude": "10.91840000" + }, + { + "id": "19261", + "name": "Tonga", + "state_id": 2664, + "state_code": "OU", + "country_id": 38, + "country_code": "CM", + "latitude": "4.96667000", + "longitude": "10.70000000" + }, + { + "id": "16151", + "name": "Airdrie", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.30011000", + "longitude": "-114.03528000" + }, + { + "id": "16178", + "name": "Athabasca", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.71687000", + "longitude": "-113.28537000" + }, + { + "id": "16190", + "name": "Banff", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.17622000", + "longitude": "-115.56982000" + }, + { + "id": "16192", + "name": "Barrhead", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.13345000", + "longitude": "-114.40211000" + }, + { + "id": "16196", + "name": "Bassano", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.78342000", + "longitude": "-112.46854000" + }, + { + "id": "16204", + "name": "Beaumont", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.35013000", + "longitude": "-113.41871000" + }, + { + "id": "16207", + "name": "Beaverlodge", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.21664000", + "longitude": "-119.43605000" + }, + { + "id": "16219", + "name": "Black Diamond", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.70011000", + "longitude": "-114.23530000" + }, + { + "id": "16220", + "name": "Blackfalds", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.38342000", + "longitude": "-113.78530000" + }, + { + "id": "16226", + "name": "Bon Accord", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.83345000", + "longitude": "-113.41872000" + }, + { + "id": "16229", + "name": "Bonnyville", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.26684000", + "longitude": "-110.73505000" + }, + { + "id": "16234", + "name": "Bow Island", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.86676000", + "longitude": "-111.36843000" + }, + { + "id": "16245", + "name": "Brooks", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.58341000", + "longitude": "-111.88509000" + }, + { + "id": "16259", + "name": "Calgary", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.05011000", + "longitude": "-114.08529000" + }, + { + "id": "16260", + "name": "Calmar", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.26683000", + "longitude": "-113.81874000" + }, + { + "id": "16265", + "name": "Camrose", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.01684000", + "longitude": "-112.83525000" + }, + { + "id": "16267", + "name": "Canmore", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.08335000", + "longitude": "-115.35206000" + }, + { + "id": "16277", + "name": "Cardston", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.19998000", + "longitude": "-113.30190000" + }, + { + "id": "16284", + "name": "Carstairs", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.56681000", + "longitude": "-114.10200000" + }, + { + "id": "16305", + "name": "Chestermere", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.03341000", + "longitude": "-113.81867000" + }, + { + "id": "16314", + "name": "Claresholm", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.03332000", + "longitude": "-113.58524000" + }, + { + "id": "16316", + "name": "Coaldale", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.71670000", + "longitude": "-112.61854000" + }, + { + "id": "16317", + "name": "Coalhurst", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.74640000", + "longitude": "-112.93246000" + }, + { + "id": "16320", + "name": "Cochrane", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.18341000", + "longitude": "-114.46871000" + }, + { + "id": "16323", + "name": "Cold Lake", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.46525000", + "longitude": "-110.18154000" + }, + { + "id": "16349", + "name": "Crossfield", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.43341000", + "longitude": "-114.03528000" + }, + { + "id": "16371", + "name": "Devon", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.36683000", + "longitude": "-113.73533000" + }, + { + "id": "16372", + "name": "Didsbury", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.66681000", + "longitude": "-114.13529000" + }, + { + "id": "16383", + "name": "Drayton Valley", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.21682000", + "longitude": "-114.98544000" + }, + { + "id": "16396", + "name": "Edmonton", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.55014000", + "longitude": "-113.46871000" + }, + { + "id": "16398", + "name": "Edson", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.58345000", + "longitude": "-116.43559000" + }, + { + "id": "16399", + "name": "Elk Point", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.90017000", + "longitude": "-110.90170000" + }, + { + "id": "16413", + "name": "Fairview", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "56.06675000", + "longitude": "-118.38606000" + }, + { + "id": "16415", + "name": "Falher", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.73339000", + "longitude": "-117.20262000" + }, + { + "id": "16429", + "name": "Fort Macleod", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.71671000", + "longitude": "-113.41857000" + }, + { + "id": "16430", + "name": "Fort McMurray", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "56.72676000", + "longitude": "-111.38103000" + }, + { + "id": "16433", + "name": "Fort Saskatchewan", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.71684000", + "longitude": "-113.21870000" + }, + { + "id": "16438", + "name": "Fox Creek", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.40007000", + "longitude": "-116.80238000" + }, + { + "id": "16450", + "name": "Gibbons", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.83345000", + "longitude": "-113.33531000" + }, + { + "id": "16463", + "name": "Grand Centre", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.41628000", + "longitude": "-110.21304000" + }, + { + "id": "16466", + "name": "Grande Cache", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.88335000", + "longitude": "-119.13585000" + }, + { + "id": "16467", + "name": "Grande Prairie", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.16667000", + "longitude": "-118.80271000" + }, + { + "id": "16476", + "name": "Grimshaw", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "56.18339000", + "longitude": "-117.60270000" + }, + { + "id": "16488", + "name": "Hanna", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.63343000", + "longitude": "-111.90181000" + }, + { + "id": "16502", + "name": "Heritage Pointe", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.84213000", + "longitude": "-114.00493000" + }, + { + "id": "16503", + "name": "High Level", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "58.51688000", + "longitude": "-117.13605000" + }, + { + "id": "16504", + "name": "High Prairie", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.43340000", + "longitude": "-116.48580000" + }, + { + "id": "16505", + "name": "High River", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.58341000", + "longitude": "-113.86867000" + }, + { + "id": "16506", + "name": "Hinton", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.40009000", + "longitude": "-117.58567000" + }, + { + "id": "16526", + "name": "Irricana", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.32372000", + "longitude": "-113.60475000" + }, + { + "id": "16528", + "name": "Jasper Park Lodge", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.88633000", + "longitude": "-118.05625000" + }, + { + "id": "16543", + "name": "Killam", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.78344000", + "longitude": "-111.85175000" + }, + { + "id": "16575", + "name": "Lac La Biche", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.76690000", + "longitude": "-111.96861000" + }, + { + "id": "16585", + "name": "Lacombe", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.46681000", + "longitude": "-113.73530000" + }, + { + "id": "16592", + "name": "Lamont", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.76686000", + "longitude": "-112.80195000" + }, + { + "id": "16602", + "name": "Larkspur", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.47942000", + "longitude": "-113.38142000" + }, + { + "id": "16603", + "name": "Laurel", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.44667000", + "longitude": "-113.38197000" + }, + { + "id": "16610", + "name": "Leduc", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.26682000", + "longitude": "-113.55201000" + }, + { + "id": "16614", + "name": "Lethbridge", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.69999000", + "longitude": "-112.81856000" + }, + { + "id": "16625", + "name": "Lloydminster", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.27237000", + "longitude": "-110.02256000" + }, + { + "id": "16645", + "name": "Magrath", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.41668000", + "longitude": "-112.86856000" + }, + { + "id": "16653", + "name": "Manning", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "56.91683000", + "longitude": "-117.61945000" + }, + { + "id": "16654", + "name": "Mannville", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.33764000", + "longitude": "-111.17750000" + }, + { + "id": "16657", + "name": "Maple Ridge", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.50172000", + "longitude": "-113.36274000" + }, + { + "id": "16671", + "name": "Mayerthorpe", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.95015000", + "longitude": "-115.13547000" + }, + { + "id": "16675", + "name": "Medicine Hat", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.03928000", + "longitude": "-110.67661000" + }, + { + "id": "16689", + "name": "Mill Woods Town Centre", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.45639000", + "longitude": "-113.42751000" + }, + { + "id": "16691", + "name": "Millet", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.10013000", + "longitude": "-113.46870000" + }, + { + "id": "16719", + "name": "Morinville", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.80014000", + "longitude": "-113.65203000" + }, + { + "id": "16729", + "name": "Nanton", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.35008000", + "longitude": "-113.76866000" + }, + { + "id": "16774", + "name": "Okotoks", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.72885000", + "longitude": "-113.98281000" + }, + { + "id": "16775", + "name": "Olds", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.78341000", + "longitude": "-114.10199000" + }, + { + "id": "16803", + "name": "Peace River", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "56.23715000", + "longitude": "-117.29176000" + }, + { + "id": "16810", + "name": "Penhold", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.13342000", + "longitude": "-113.86870000" + }, + { + "id": "16820", + "name": "Picture Butte", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.88330000", + "longitude": "-112.78516000" + }, + { + "id": "16824", + "name": "Pincher Creek", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.48328000", + "longitude": "-113.95195000" + }, + { + "id": "16834", + "name": "Ponoka", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.67680000", + "longitude": "-113.58147000" + }, + { + "id": "16861", + "name": "Provost", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.35014000", + "longitude": "-110.26828000" + }, + { + "id": "16871", + "name": "Raymond", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.44998000", + "longitude": "-112.65185000" + }, + { + "id": "16873", + "name": "Red Deer", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.26682000", + "longitude": "-113.80200000" + }, + { + "id": "16889", + "name": "Rideau Park", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.47899000", + "longitude": "-113.50470000" + }, + { + "id": "16892", + "name": "Rimbey", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.63340000", + "longitude": "-114.23532000" + }, + { + "id": "16901", + "name": "Rocky Mountain House", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.36683000", + "longitude": "-114.91880000" + }, + { + "id": "17029", + "name": "Sexsmith", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.34998000", + "longitude": "-118.78602000" + }, + { + "id": "17040", + "name": "Sherwood Park", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.51684000", + "longitude": "-113.31870000" + }, + { + "id": "17044", + "name": "Silver Berry", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.45787000", + "longitude": "-113.38170000" + }, + { + "id": "17049", + "name": "Slave Lake", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.28344000", + "longitude": "-114.76896000" + }, + { + "id": "17052", + "name": "Smoky Lake", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.11687000", + "longitude": "-112.46863000" + }, + { + "id": "17061", + "name": "Spirit River", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.78327000", + "longitude": "-118.83607000" + }, + { + "id": "17062", + "name": "Springbrook", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.17920000", + "longitude": "-113.87981000" + }, + { + "id": "17065", + "name": "Spruce Grove", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.53344000", + "longitude": "-113.91874000" + }, + { + "id": "17068", + "name": "St. Albert", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.63344000", + "longitude": "-113.63533000" + }, + { + "id": "17078", + "name": "Stettler", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.31683000", + "longitude": "-112.71861000" + }, + { + "id": "17082", + "name": "Stony Plain", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.53343000", + "longitude": "-114.00205000" + }, + { + "id": "17084", + "name": "Strathmore", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.05011000", + "longitude": "-113.38523000" + }, + { + "id": "17088", + "name": "Sundre", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.80010000", + "longitude": "-114.63532000" + }, + { + "id": "17092", + "name": "Swan Hills", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.71681000", + "longitude": "-115.40226000" + }, + { + "id": "17097", + "name": "Sylvan Lake", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.31100000", + "longitude": "-114.08375000" + }, + { + "id": "17098", + "name": "Taber", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.78703000", + "longitude": "-112.14603000" + }, + { + "id": "17099", + "name": "Tamarack", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.46441000", + "longitude": "-113.36235000" + }, + { + "id": "17110", + "name": "Three Hills", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.70012000", + "longitude": "-113.26863000" + }, + { + "id": "17118", + "name": "Tofield", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.36684000", + "longitude": "-112.66862000" + }, + { + "id": "17131", + "name": "Two Hills", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.71686000", + "longitude": "-111.75181000" + }, + { + "id": "17143", + "name": "Valleyview", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.06673000", + "longitude": "-117.28585000" + }, + { + "id": "17151", + "name": "Vegreville", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.50015000", + "longitude": "-112.05182000" + }, + { + "id": "17154", + "name": "Vermilion", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.35409000", + "longitude": "-110.85849000" + }, + { + "id": "17158", + "name": "Viking", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.10014000", + "longitude": "-111.76844000" + }, + { + "id": "17163", + "name": "Vulcan", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.40008000", + "longitude": "-113.25189000" + }, + { + "id": "17166", + "name": "Wainwright", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.83482000", + "longitude": "-110.85342000" + }, + { + "id": "17187", + "name": "Wembley", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.14995000", + "longitude": "-119.13602000" + }, + { + "id": "17194", + "name": "Westlake", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.22228000", + "longitude": "-118.80415000" + }, + { + "id": "17195", + "name": "Westlock", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.15016000", + "longitude": "-113.86876000" + }, + { + "id": "17197", + "name": "Wetaskiwin", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.96683000", + "longitude": "-113.36869000" + }, + { + "id": "17203", + "name": "Whitecourt", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.15015000", + "longitude": "-115.68548000" + }, + { + "id": "17205", + "name": "Wild Rose", + "state_id": 872, + "state_code": "AB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.47080000", + "longitude": "-113.38119000" + }, + { + "id": "16146", + "name": "Abbotsford", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.05798000", + "longitude": "-122.25257000" + }, + { + "id": "16150", + "name": "Agassiz", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.23298000", + "longitude": "-121.76926000" + }, + { + "id": "16155", + "name": "Aldergrove", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.05801000", + "longitude": "-122.47087000" + }, + { + "id": "16156", + "name": "Aldergrove East", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.05593000", + "longitude": "-122.42299000" + }, + { + "id": "16169", + "name": "Anmore", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.31637000", + "longitude": "-122.85263000" + }, + { + "id": "16172", + "name": "Arbutus Ridge", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.24966000", + "longitude": "-123.16934000" + }, + { + "id": "16173", + "name": "Armstrong", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.44979000", + "longitude": "-119.20235000" + }, + { + "id": "16176", + "name": "Ashcroft", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.72372000", + "longitude": "-121.28207000" + }, + { + "id": "16194", + "name": "Barrière", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "51.18308000", + "longitude": "-120.11920000" + }, + { + "id": "16235", + "name": "Bowen Island", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.38470000", + "longitude": "-123.33622000" + }, + { + "id": "16253", + "name": "Burnaby", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.26636000", + "longitude": "-122.95263000" + }, + { + "id": "16254", + "name": "Burns Lake", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "54.22972000", + "longitude": "-125.76084000" + }, + { + "id": "16257", + "name": "Cache Creek", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.81011000", + "longitude": "-121.32460000" + }, + { + "id": "16263", + "name": "Campbell River", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.01634000", + "longitude": "-125.24459000" + }, + { + "id": "16286", + "name": "Castlegar", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.32317000", + "longitude": "-117.65831000" + }, + { + "id": "16288", + "name": "Cedar", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.11633000", + "longitude": "-123.85270000" + }, + { + "id": "16289", + "name": "Central Coast Regional District", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "52.16638000", + "longitude": "-127.00323000" + }, + { + "id": "16298", + "name": "Chase", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.81650000", + "longitude": "-119.68571000" + }, + { + "id": "16302", + "name": "Chemainus", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.91633000", + "longitude": "-123.71937000" + }, + { + "id": "16306", + "name": "Chetwynd", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "55.69988000", + "longitude": "-121.63627000" + }, + { + "id": "16308", + "name": "Chilliwack", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.16638000", + "longitude": "-121.95257000" + }, + { + "id": "16326", + "name": "Colwood", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.43293000", + "longitude": "-123.48591000" + }, + { + "id": "16334", + "name": "Coombs", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.29963000", + "longitude": "-124.41946000" + }, + { + "id": "16335", + "name": "Coquitlam", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.28460000", + "longitude": "-122.78217000" + }, + { + "id": "16341", + "name": "Courtenay", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.68657000", + "longitude": "-124.99360000" + }, + { + "id": "16344", + "name": "Cowichan Bay", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.73366000", + "longitude": "-123.61739000" + }, + { + "id": "16346", + "name": "Cranbrook", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.49991000", + "longitude": "-115.76879000" + }, + { + "id": "16347", + "name": "Creston", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.09987000", + "longitude": "-116.50211000" + }, + { + "id": "16350", + "name": "Cumberland", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.61634000", + "longitude": "-125.03613000" + }, + { + "id": "16359", + "name": "Dawson Creek", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "55.75984000", + "longitude": "-120.24030000" + }, + { + "id": "16366", + "name": "Delta", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.14399000", + "longitude": "-122.90680000" + }, + { + "id": "16367", + "name": "Denman Island", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.53294000", + "longitude": "-124.81950000" + }, + { + "id": "16368", + "name": "Denman Island Trust Area", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.55189000", + "longitude": "-124.79881000" + }, + { + "id": "16386", + "name": "Duck Lake", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.00880000", + "longitude": "-119.39672000" + }, + { + "id": "16387", + "name": "Duncan", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.78293000", + "longitude": "-123.70266000" + }, + { + "id": "16394", + "name": "East Wellington", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.17385000", + "longitude": "-124.01745000" + }, + { + "id": "16400", + "name": "Elkford", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.05007000", + "longitude": "-114.88540000" + }, + { + "id": "16402", + "name": "Ellison", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.93307000", + "longitude": "-119.36907000" + }, + { + "id": "16404", + "name": "Enderby", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.54980000", + "longitude": "-119.15234000" + }, + { + "id": "16414", + "name": "Fairwinds", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.27588000", + "longitude": "-124.12782000" + }, + { + "id": "16421", + "name": "Fernie", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.49996000", + "longitude": "-115.06871000" + }, + { + "id": "16432", + "name": "Fort Nelson", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "58.80533000", + "longitude": "-122.70020000" + }, + { + "id": "16435", + "name": "Fort St. John", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "56.24988000", + "longitude": "-120.85292000" + }, + { + "id": "16440", + "name": "Fraser Valley Regional District", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.58299000", + "longitude": "-121.83587000" + }, + { + "id": "16442", + "name": "French Creek", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.34123000", + "longitude": "-124.35541000" + }, + { + "id": "16443", + "name": "Fruitvale", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.11654000", + "longitude": "-117.55222000" + }, + { + "id": "16451", + "name": "Gibsons", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.39539000", + "longitude": "-123.50555000" + }, + { + "id": "16458", + "name": "Golden", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "51.29995000", + "longitude": "-116.96890000" + }, + { + "id": "16465", + "name": "Grand Forks", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.03309000", + "longitude": "-118.43560000" + }, + { + "id": "16487", + "name": "Hanceville", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "51.91922000", + "longitude": "-123.04458000" + }, + { + "id": "16507", + "name": "Hope", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.38299000", + "longitude": "-121.44144000" + }, + { + "id": "16508", + "name": "Hornby Island", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.53448000", + "longitude": "-124.66923000" + }, + { + "id": "16510", + "name": "Houston", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "54.39976000", + "longitude": "-126.67008000" + }, + { + "id": "16523", + "name": "Invermere", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.51666000", + "longitude": "-116.03538000" + }, + { + "id": "16531", + "name": "Kamloops", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.66648000", + "longitude": "-120.31920000" + }, + { + "id": "16536", + "name": "Kelowna", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.88307000", + "longitude": "-119.48568000" + }, + { + "id": "16545", + "name": "Kimberley", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.67071000", + "longitude": "-115.97760000" + }, + { + "id": "16554", + "name": "Kitimat", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "54.05244000", + "longitude": "-128.65342000" + }, + { + "id": "16586", + "name": "Ladner", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.08938000", + "longitude": "-123.08241000" + }, + { + "id": "16587", + "name": "Ladysmith", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.99016000", + "longitude": "-123.81699000" + }, + { + "id": "16588", + "name": "Lake Cowichan", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.82495000", + "longitude": "-124.05461000" + }, + { + "id": "16595", + "name": "Langford", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.44963000", + "longitude": "-123.50261000" + }, + { + "id": "16597", + "name": "Langley", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.10107000", + "longitude": "-122.65883000" + }, + { + "id": "16616", + "name": "Lillooet", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.68560000", + "longitude": "-121.94200000" + }, + { + "id": "16621", + "name": "Lions Bay", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.45218000", + "longitude": "-123.23760000" + }, + { + "id": "16626", + "name": "Logan Lake", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.49976000", + "longitude": "-120.80253000" + }, + { + "id": "16635", + "name": "Lumby", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.24979000", + "longitude": "-118.96904000" + }, + { + "id": "16641", + "name": "Mackenzie", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "55.33637000", + "longitude": "-123.09374000" + }, + { + "id": "16656", + "name": "Maple Ridge", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.21939000", + "longitude": "-122.60193000" + }, + { + "id": "16681", + "name": "Merritt", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.11225000", + "longitude": "-120.79420000" + }, + { + "id": "16684", + "name": "Metchosin", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.38293000", + "longitude": "-123.53591000" + }, + { + "id": "16685", + "name": "Metro Vancouver Regional District", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.33296000", + "longitude": "-123.00264000" + }, + { + "id": "16696", + "name": "Mission", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.13298000", + "longitude": "-122.30258000" + }, + { + "id": "16727", + "name": "Nakusp", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.24987000", + "longitude": "-117.80226000" + }, + { + "id": "16728", + "name": "Nanaimo", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.16638000", + "longitude": "-123.94003000" + }, + { + "id": "16735", + "name": "Nelson", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.49985000", + "longitude": "-117.28553000" + }, + { + "id": "16742", + "name": "New Westminster", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.20678000", + "longitude": "-122.91092000" + }, + { + "id": "16757", + "name": "North Cowichan", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.84133000", + "longitude": "-123.68596000" + }, + { + "id": "16758", + "name": "North Oyster\/Yellow Point", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.04807000", + "longitude": "-123.83395000" + }, + { + "id": "16760", + "name": "North Saanich", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.66634000", + "longitude": "-123.41933000" + }, + { + "id": "16761", + "name": "North Vancouver", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.31636000", + "longitude": "-123.06934000" + }, + { + "id": "16769", + "name": "Oak Bay", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.44964000", + "longitude": "-123.30260000" + }, + { + "id": "16772", + "name": "Okanagan", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.36386000", + "longitude": "-119.34997000" + }, + { + "id": "16773", + "name": "Okanagan Falls", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.35000000", + "longitude": "-119.56667000" + }, + { + "id": "16776", + "name": "Oliver", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.18306000", + "longitude": "-119.55240000" + }, + { + "id": "16784", + "name": "Osoyoos", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.03306000", + "longitude": "-119.45237000" + }, + { + "id": "16798", + "name": "Parksville", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.31947000", + "longitude": "-124.31575000" + }, + { + "id": "16804", + "name": "Peace River Regional District", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "56.66650000", + "longitude": "-122.75302000" + }, + { + "id": "16805", + "name": "Peachland", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.76647000", + "longitude": "-119.73568000" + }, + { + "id": "16808", + "name": "Pemberton", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.31641000", + "longitude": "-122.80273000" + }, + { + "id": "16811", + "name": "Penticton", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.48062000", + "longitude": "-119.58584000" + }, + { + "id": "16826", + "name": "Pitt Meadows", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.22119000", + "longitude": "-122.68965000" + }, + { + "id": "16837", + "name": "Port Alberni", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.24133000", + "longitude": "-124.80280000" + }, + { + "id": "16839", + "name": "Port Coquitlam", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.26637000", + "longitude": "-122.76932000" + }, + { + "id": "16842", + "name": "Port McNeill", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.58716000", + "longitude": "-127.08053000" + }, + { + "id": "16843", + "name": "Port Moody", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.28124000", + "longitude": "-122.82457000" + }, + { + "id": "16851", + "name": "Powell River", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.83278000", + "longitude": "-124.52368000" + }, + { + "id": "16856", + "name": "Prince George", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "53.91660000", + "longitude": "-122.75301000" + }, + { + "id": "16857", + "name": "Prince Rupert", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "54.31507000", + "longitude": "-130.32098000" + }, + { + "id": "16858", + "name": "Princeton", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.45802000", + "longitude": "-120.51076000" + }, + { + "id": "16863", + "name": "Puntledge", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.66168000", + "longitude": "-125.05686000" + }, + { + "id": "16865", + "name": "Quesnel", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "52.97842000", + "longitude": "-122.49310000" + }, + { + "id": "16877", + "name": "Regional District of Alberni-Clayoquot", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.24962000", + "longitude": "-125.33615000" + }, + { + "id": "16878", + "name": "Regional District of Central Okanagan", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.99978000", + "longitude": "-119.41908000" + }, + { + "id": "16882", + "name": "Revelstoke", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.99712000", + "longitude": "-118.19530000" + }, + { + "id": "16885", + "name": "Richmond", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.17003000", + "longitude": "-123.13683000" + }, + { + "id": "16904", + "name": "Rossland", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.08313000", + "longitude": "-117.80224000" + }, + { + "id": "16908", + "name": "Royston", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.64703000", + "longitude": "-124.94670000" + }, + { + "id": "17016", + "name": "Salmo", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.19986000", + "longitude": "-117.26890000" + }, + { + "id": "17017", + "name": "Salmon Arm", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.69980000", + "longitude": "-119.30237000" + }, + { + "id": "17018", + "name": "Salt Spring Island", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.81852000", + "longitude": "-123.49061000" + }, + { + "id": "17019", + "name": "Saltair", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.94963000", + "longitude": "-123.76939000" + }, + { + "id": "17025", + "name": "Sechelt", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.47512000", + "longitude": "-123.75903000" + }, + { + "id": "17043", + "name": "Sicamous", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.83312000", + "longitude": "-118.98565000" + }, + { + "id": "17047", + "name": "Six Mile", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.45767000", + "longitude": "-123.46088000" + }, + { + "id": "17050", + "name": "Smithers", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "54.78036000", + "longitude": "-127.17428000" + }, + { + "id": "17053", + "name": "Sooke", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.37463000", + "longitude": "-123.72762000" + }, + { + "id": "17058", + "name": "South Pender Harbour", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.62202000", + "longitude": "-124.02484000" + }, + { + "id": "17060", + "name": "Sparwood", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.73332000", + "longitude": "-114.88532000" + }, + { + "id": "17086", + "name": "Summerland", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.59977000", + "longitude": "-119.66911000" + }, + { + "id": "17089", + "name": "Surrey", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.10635000", + "longitude": "-122.82509000" + }, + { + "id": "17102", + "name": "Terrace", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "54.51634000", + "longitude": "-128.60345000" + }, + { + "id": "17119", + "name": "Tofino", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.15314000", + "longitude": "-125.90744000" + }, + { + "id": "17125", + "name": "Trail", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.09983000", + "longitude": "-117.70223000" + }, + { + "id": "17128", + "name": "Tsawwassen", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.01667000", + "longitude": "-123.08333000" + }, + { + "id": "17129", + "name": "Tumbler Ridge", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "55.13027000", + "longitude": "-120.99415000" + }, + { + "id": "17133", + "name": "Ucluelet", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.94153000", + "longitude": "-125.54635000" + }, + { + "id": "17145", + "name": "Vancouver", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.24966000", + "longitude": "-123.11934000" + }, + { + "id": "17146", + "name": "Vanderhoof", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "54.01657000", + "longitude": "-124.01982000" + }, + { + "id": "17155", + "name": "Vernon", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.26729000", + "longitude": "-119.27337000" + }, + { + "id": "17156", + "name": "Victoria", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.43590000", + "longitude": "-123.35155000" + }, + { + "id": "17168", + "name": "Walnut Grove", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.16473000", + "longitude": "-122.64042000" + }, + { + "id": "17183", + "name": "Welcome Beach", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.47959000", + "longitude": "-123.89239000" + }, + { + "id": "17189", + "name": "West End", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.28333000", + "longitude": "-123.13333000" + }, + { + "id": "17190", + "name": "West Kelowna", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.86250000", + "longitude": "-119.58333000" + }, + { + "id": "17193", + "name": "West Vancouver", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.36672000", + "longitude": "-123.16652000" + }, + { + "id": "17200", + "name": "Whistler", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.11817000", + "longitude": "-122.95396000" + }, + { + "id": "17202", + "name": "White Rock", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.01636000", + "longitude": "-122.80260000" + }, + { + "id": "17207", + "name": "Williams Lake", + "state_id": 875, + "state_code": "BC", + "country_id": 39, + "country_code": "CA", + "latitude": "52.14153000", + "longitude": "-122.14451000" + }, + { + "id": "16160", + "name": "Altona", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.10469000", + "longitude": "-97.55961000" + }, + { + "id": "16206", + "name": "Beausejour", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.06220000", + "longitude": "-96.51669000" + }, + { + "id": "16225", + "name": "Boissevain", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.23062000", + "longitude": "-100.05586000" + }, + { + "id": "16238", + "name": "Brandon", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.84692000", + "longitude": "-99.95306000" + }, + { + "id": "16275", + "name": "Carberry", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.86893000", + "longitude": "-99.36021000" + }, + { + "id": "16283", + "name": "Carman", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.49920000", + "longitude": "-98.00156000" + }, + { + "id": "16348", + "name": "Cross Lake 19A", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.65135000", + "longitude": "-97.76848000" + }, + { + "id": "16356", + "name": "Dauphin", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.14941000", + "longitude": "-100.05023000" + }, + { + "id": "16360", + "name": "De Salaberry", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.39999000", + "longitude": "-97.00894000" + }, + { + "id": "16364", + "name": "Deloraine", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.19082000", + "longitude": "-100.49477000" + }, + { + "id": "16422", + "name": "Flin Flon", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "54.76703000", + "longitude": "-101.87433000" + }, + { + "id": "16452", + "name": "Gimli", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.63362000", + "longitude": "-96.99066000" + }, + { + "id": "16477", + "name": "Grunthal", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.40668000", + "longitude": "-96.85873000" + }, + { + "id": "16500", + "name": "Headingley", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.87530000", + "longitude": "-97.40896000" + }, + { + "id": "16518", + "name": "Ile des Chênes", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.71060000", + "longitude": "-96.98893000" + }, + { + "id": "16544", + "name": "Killarney", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.18332000", + "longitude": "-99.66364000" + }, + { + "id": "16563", + "name": "La Broquerie", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.51688000", + "longitude": "-96.50029000" + }, + { + "id": "16576", + "name": "Lac du Bonnet", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.25360000", + "longitude": "-96.06116000" + }, + { + "id": "16593", + "name": "Landmark", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.67169000", + "longitude": "-96.82232000" + }, + { + "id": "16629", + "name": "Lorette", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.73919000", + "longitude": "-96.87232000" + }, + { + "id": "16677", + "name": "Melita", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.26811000", + "longitude": "-100.99669000" + }, + { + "id": "16693", + "name": "Minnedosa", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.24532000", + "longitude": "-99.84364000" + }, + { + "id": "16714", + "name": "Moose Lake", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.20559000", + "longitude": "-95.30629000" + }, + { + "id": "16717", + "name": "Morden", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.19190000", + "longitude": "-98.10136000" + }, + { + "id": "16720", + "name": "Morris", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.35499000", + "longitude": "-97.36567000" + }, + { + "id": "16734", + "name": "Neepawa", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.22892000", + "longitude": "-99.46642000" + }, + { + "id": "16749", + "name": "Niverville", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.60559000", + "longitude": "-97.04234000" + }, + { + "id": "16848", + "name": "Portage la Prairie", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.97282000", + "longitude": "-98.29263000" + }, + { + "id": "16894", + "name": "Rivers", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.03081000", + "longitude": "-100.24029000" + }, + { + "id": "16898", + "name": "Roblin", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "51.22999000", + "longitude": "-101.35650000" + }, + { + "id": "17026", + "name": "Selkirk", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.14360000", + "longitude": "-96.88452000" + }, + { + "id": "17041", + "name": "Shilo", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.80509000", + "longitude": "-99.63175000" + }, + { + "id": "17056", + "name": "Souris", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.61720000", + "longitude": "-100.26120000" + }, + { + "id": "17067", + "name": "St. Adolphe", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.67440000", + "longitude": "-97.11124000" + }, + { + "id": "17075", + "name": "Steinbach", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.52579000", + "longitude": "-96.68451000" + }, + { + "id": "17080", + "name": "Stonewall", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "50.13441000", + "longitude": "-97.32676000" + }, + { + "id": "17093", + "name": "Swan River", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "52.10580000", + "longitude": "-101.26759000" + }, + { + "id": "17105", + "name": "The Pas", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "53.82509000", + "longitude": "-101.25413000" + }, + { + "id": "17108", + "name": "Thompson", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "55.74350000", + "longitude": "-97.85579000" + }, + { + "id": "17161", + "name": "Virden", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.85080000", + "longitude": "-100.93262000" + }, + { + "id": "17192", + "name": "West St. Paul", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.99940000", + "longitude": "-97.16284000" + }, + { + "id": "17214", + "name": "Winkler", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.18170000", + "longitude": "-97.94104000" + }, + { + "id": "17215", + "name": "Winnipeg", + "state_id": 867, + "state_code": "MB", + "country_id": 39, + "country_code": "CA", + "latitude": "49.88440000", + "longitude": "-97.14704000" + }, + { + "id": "16184", + "name": "Baie Ste. Anne", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "47.05231000", + "longitude": "-64.95355000" + }, + { + "id": "16198", + "name": "Bathurst", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "47.61814000", + "longitude": "-65.65112000" + }, + { + "id": "16232", + "name": "Bouctouche", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.46844000", + "longitude": "-64.73905000" + }, + { + "id": "16264", + "name": "Campbellton", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "48.00751000", + "longitude": "-66.67272000" + }, + { + "id": "16373", + "name": "Dieppe", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.07844000", + "longitude": "-64.68735000" + }, + { + "id": "16397", + "name": "Edmundston", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "47.37370000", + "longitude": "-68.32512000" + }, + { + "id": "16423", + "name": "Florenceville-Bristol", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.44353000", + "longitude": "-67.61536000" + }, + { + "id": "16441", + "name": "Fredericton", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.94541000", + "longitude": "-66.66558000" + }, + { + "id": "16444", + "name": "Fundy Bay", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "44.74100000", + "longitude": "-66.76041000" + }, + { + "id": "16468", + "name": "Grande-Digue", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.30014000", + "longitude": "-64.56546000" + }, + { + "id": "16471", + "name": "Greater Lakeburn", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.07651000", + "longitude": "-64.66818000" + }, + { + "id": "16486", + "name": "Hampton", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.52876000", + "longitude": "-65.85354000" + }, + { + "id": "16493", + "name": "Harrison Brook", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "47.21304000", + "longitude": "-67.92847000" + }, + { + "id": "16542", + "name": "Keswick Ridge", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.00011000", + "longitude": "-66.88218000" + }, + { + "id": "16618", + "name": "Lincoln", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.90012000", + "longitude": "-66.58218000" + }, + { + "id": "16638", + "name": "Lutes Mountain", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.13544000", + "longitude": "-64.90504000" + }, + { + "id": "16672", + "name": "McEwen", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.14520000", + "longitude": "-64.78615000" + }, + { + "id": "16695", + "name": "Miramichi", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "47.02895000", + "longitude": "-65.50186000" + }, + { + "id": "16700", + "name": "Moncton", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.09454000", + "longitude": "-64.79650000" + }, + { + "id": "16726", + "name": "Nackawic", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.99666000", + "longitude": "-67.24028000" + }, + { + "id": "16741", + "name": "New Maryland", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.87932000", + "longitude": "-66.66828000" + }, + { + "id": "16750", + "name": "Noonan", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.96682000", + "longitude": "-66.53218000" + }, + { + "id": "16781", + "name": "Oromocto", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.83512000", + "longitude": "-66.47917000" + }, + { + "id": "16884", + "name": "Richibucto", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.68073000", + "longitude": "-64.88044000" + }, + { + "id": "16910", + "name": "Sackville", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.91875000", + "longitude": "-64.38455000" + }, + { + "id": "16913", + "name": "Saint Andrews", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.07370000", + "longitude": "-67.05312000" + }, + { + "id": "16914", + "name": "Saint John", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.27271000", + "longitude": "-66.06766000" + }, + { + "id": "16921", + "name": "Saint-Antoine", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.36294000", + "longitude": "-64.74985000" + }, + { + "id": "16967", + "name": "Saint-Léonard", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "47.16317000", + "longitude": "-67.92460000" + }, + { + "id": "17014", + "name": "Salisbury", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.03905000", + "longitude": "-65.04628000" + }, + { + "id": "17034", + "name": "Shediac", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.21981000", + "longitude": "-64.54107000" + }, + { + "id": "17035", + "name": "Shediac Bridge-Shediac River", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "46.26886000", + "longitude": "-64.60047000" + }, + { + "id": "17042", + "name": "Shippagan", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "47.74424000", + "longitude": "-64.70804000" + }, + { + "id": "17074", + "name": "Starlight Village", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.88308000", + "longitude": "-66.76905000" + }, + { + "id": "17090", + "name": "Sussex", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.72266000", + "longitude": "-65.50663000" + }, + { + "id": "17124", + "name": "Tracadie-Sheila", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "47.51444000", + "longitude": "-64.91806000" + }, + { + "id": "17186", + "name": "Wells", + "state_id": 868, + "state_code": "NB", + "country_id": 39, + "country_code": "CA", + "latitude": "45.39274000", + "longitude": "-65.92313000" + }, + { + "id": "16199", + "name": "Bay Roberts", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.59989000", + "longitude": "-53.26478000" + }, + { + "id": "16200", + "name": "Bay St. George South", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "48.22781000", + "longitude": "-58.84162000" + }, + { + "id": "16228", + "name": "Bonavista", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "48.64989000", + "longitude": "-53.11474000" + }, + { + "id": "16230", + "name": "Botwood", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "49.14994000", + "longitude": "-55.34819000" + }, + { + "id": "16251", + "name": "Burgeo", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.61668000", + "longitude": "-57.61516000" + }, + { + "id": "16276", + "name": "Carbonear", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.73319000", + "longitude": "-53.21478000" + }, + { + "id": "16287", + "name": "Catalina", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "48.51659000", + "longitude": "-53.08135000" + }, + { + "id": "16294", + "name": "Channel-Port aux Basques", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.57286000", + "longitude": "-59.13808000" + }, + { + "id": "16313", + "name": "Clarenville-Shoal Harbour", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "48.18050000", + "longitude": "-53.96982000" + }, + { + "id": "16327", + "name": "Conception Bay South", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.49989000", + "longitude": "-52.99806000" + }, + { + "id": "16336", + "name": "Corner Brook", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "48.95001000", + "longitude": "-57.95202000" + }, + { + "id": "16362", + "name": "Deer Lake", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "49.16671000", + "longitude": "-57.43163000" + }, + { + "id": "16425", + "name": "Fogo Island", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "49.71649000", + "longitude": "-54.16981000" + }, + { + "id": "16445", + "name": "Gambo", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "48.78320000", + "longitude": "-54.21482000" + }, + { + "id": "16460", + "name": "Goulds", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.45532000", + "longitude": "-52.77552000" + }, + { + "id": "16462", + "name": "Grand Bank", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.09995000", + "longitude": "-55.76504000" + }, + { + "id": "16464", + "name": "Grand Falls-Windsor", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "48.93324000", + "longitude": "-55.66492000" + }, + { + "id": "16491", + "name": "Happy Valley-Goose Bay", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "53.30380000", + "longitude": "-60.32576000" + }, + { + "id": "16492", + "name": "Harbour Breton", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.48325000", + "longitude": "-55.79833000" + }, + { + "id": "16574", + "name": "Labrador City", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "52.94626000", + "longitude": "-66.91137000" + }, + { + "id": "16615", + "name": "Lewisporte", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "49.24993000", + "longitude": "-55.04816000" + }, + { + "id": "16664", + "name": "Marystown", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.16663000", + "longitude": "-55.14829000" + }, + { + "id": "16724", + "name": "Mount Pearl", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.51659000", + "longitude": "-52.78135000" + }, + { + "id": "16802", + "name": "Pasadena", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "49.01671000", + "longitude": "-57.59837000" + }, + { + "id": "17063", + "name": "Springdale", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "49.49995000", + "longitude": "-56.06492000" + }, + { + "id": "17069", + "name": "St. Anthony", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "51.37039000", + "longitude": "-55.59743000" + }, + { + "id": "17072", + "name": "St. John's", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.56494000", + "longitude": "-52.70931000" + }, + { + "id": "17076", + "name": "Stephenville", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "48.55001000", + "longitude": "-58.58180000" + }, + { + "id": "17077", + "name": "Stephenville Crossing", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "48.50001000", + "longitude": "-58.43180000" + }, + { + "id": "17120", + "name": "Torbay", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.66659000", + "longitude": "-52.73135000" + }, + { + "id": "17135", + "name": "Upper Island Cove", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.64989000", + "longitude": "-53.21478000" + }, + { + "id": "17164", + "name": "Wabana", + "state_id": 877, + "state_code": "NL", + "country_id": 39, + "country_code": "CA", + "latitude": "47.63319000", + "longitude": "-52.94806000" + }, + { + "id": "16209", + "name": "Behchokǫ̀", + "state_id": 878, + "state_code": "NT", + "country_id": 39, + "country_code": "CA", + "latitude": "62.80250000", + "longitude": "-116.04639000" + }, + { + "id": "16431", + "name": "Fort McPherson", + "state_id": 878, + "state_code": "NT", + "country_id": 39, + "country_code": "CA", + "latitude": "67.43863000", + "longitude": "-134.88543000" + }, + { + "id": "16434", + "name": "Fort Smith", + "state_id": 878, + "state_code": "NT", + "country_id": 39, + "country_code": "CA", + "latitude": "60.00439000", + "longitude": "-111.88871000" + }, + { + "id": "16498", + "name": "Hay River", + "state_id": 878, + "state_code": "NT", + "country_id": 39, + "country_code": "CA", + "latitude": "60.81555000", + "longitude": "-115.79993000" + }, + { + "id": "16522", + "name": "Inuvik", + "state_id": 878, + "state_code": "NT", + "country_id": 39, + "country_code": "CA", + "latitude": "68.34986000", + "longitude": "-133.72181000" + }, + { + "id": "16753", + "name": "Norman Wells", + "state_id": 878, + "state_code": "NT", + "country_id": 39, + "country_code": "CA", + "latitude": "65.28201000", + "longitude": "-126.83290000" + }, + { + "id": "17221", + "name": "Yellowknife", + "state_id": 878, + "state_code": "NT", + "country_id": 39, + "country_code": "CA", + "latitude": "62.45411000", + "longitude": "-114.37248000" + }, + { + "id": "16161", + "name": "Amherst", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.83345000", + "longitude": "-64.19874000" + }, + { + "id": "16170", + "name": "Annapolis County", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.58345000", + "longitude": "-65.16551000" + }, + { + "id": "16171", + "name": "Antigonish", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.61685000", + "longitude": "-61.99858000" + }, + { + "id": "16216", + "name": "Berwick", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.05015000", + "longitude": "-64.73208000" + }, + { + "id": "16242", + "name": "Bridgewater", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.37856000", + "longitude": "-64.51882000" + }, + { + "id": "16272", + "name": "Cape Breton County", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "46.00014000", + "longitude": "-60.31516000" + }, + { + "id": "16304", + "name": "Chester", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.54225000", + "longitude": "-64.23891000" + }, + { + "id": "16322", + "name": "Colchester", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.33345000", + "longitude": "-63.24868000" + }, + { + "id": "16324", + "name": "Cole Harbour", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.67244000", + "longitude": "-63.47506000" + }, + { + "id": "16342", + "name": "Cow Bay", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.63141000", + "longitude": "-63.43218000" + }, + { + "id": "16355", + "name": "Dartmouth", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.67134000", + "longitude": "-63.57719000" + }, + { + "id": "16374", + "name": "Digby", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.62188000", + "longitude": "-65.75860000" + }, + { + "id": "16375", + "name": "Digby County", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.36685000", + "longitude": "-65.69884000" + }, + { + "id": "16406", + "name": "English Corner", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.73345000", + "longitude": "-63.78201000" + }, + { + "id": "16407", + "name": "Eskasoni 3", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.94522000", + "longitude": "-60.61617000" + }, + { + "id": "16416", + "name": "Fall River", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.81685000", + "longitude": "-63.61540000" + }, + { + "id": "16454", + "name": "Glace Bay", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "46.19695000", + "longitude": "-59.95698000" + }, + { + "id": "16475", + "name": "Greenwood", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.97413000", + "longitude": "-64.93169000" + }, + { + "id": "16482", + "name": "Halifax", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.64533000", + "longitude": "-63.57239000" + }, + { + "id": "16490", + "name": "Hantsport", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.06685000", + "longitude": "-64.16544000" + }, + { + "id": "16499", + "name": "Hayes Subdivision", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.05519000", + "longitude": "-64.58795000" + }, + { + "id": "16539", + "name": "Kentville", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.07710000", + "longitude": "-64.49605000" + }, + { + "id": "16589", + "name": "Lake Echo", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.73345000", + "longitude": "-63.38198000" + }, + { + "id": "16600", + "name": "Lantz", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.98345000", + "longitude": "-63.48199000" + }, + { + "id": "16632", + "name": "Lower Sackville", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.77599000", + "longitude": "-63.67865000" + }, + { + "id": "16637", + "name": "Lunenburg", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.37847000", + "longitude": "-64.31658000" + }, + { + "id": "16686", + "name": "Middleton", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.94284000", + "longitude": "-65.07022000" + }, + { + "id": "16739", + "name": "New Glasgow", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.58344000", + "longitude": "-62.64863000" + }, + { + "id": "16791", + "name": "Oxford", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.73345000", + "longitude": "-63.86542000" + }, + { + "id": "16799", + "name": "Parrsboro", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.40567000", + "longitude": "-64.32585000" + }, + { + "id": "16818", + "name": "Pictou", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.67875000", + "longitude": "-62.70936000" + }, + { + "id": "16819", + "name": "Pictou County", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.50015000", + "longitude": "-62.58193000" + }, + { + "id": "16840", + "name": "Port Hawkesbury", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.61685000", + "longitude": "-61.34853000" + }, + { + "id": "16846", + "name": "Port Williams", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.10015000", + "longitude": "-64.41546000" + }, + { + "id": "16859", + "name": "Princeville", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.76684000", + "longitude": "-61.29853000" + }, + { + "id": "17037", + "name": "Shelburne", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "43.76325000", + "longitude": "-65.32355000" + }, + { + "id": "17064", + "name": "Springhill", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.65015000", + "longitude": "-64.04873000" + }, + { + "id": "17095", + "name": "Sydney", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "46.13510000", + "longitude": "-60.18310000" + }, + { + "id": "17096", + "name": "Sydney Mines", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "46.23669000", + "longitude": "-60.21767000" + }, + { + "id": "17127", + "name": "Truro", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.36685000", + "longitude": "-63.26538000" + }, + { + "id": "17211", + "name": "Windsor", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "44.98345000", + "longitude": "-64.13204000" + }, + { + "id": "17216", + "name": "Wolfville", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "45.08345000", + "longitude": "-64.36546000" + }, + { + "id": "17220", + "name": "Yarmouth", + "state_id": 874, + "state_code": "NS", + "country_id": 39, + "country_code": "CA", + "latitude": "43.83345000", + "longitude": "-66.11557000" + }, + { + "id": "16315", + "name": "Clyde River", + "state_id": 876, + "state_code": "NU", + "country_id": 39, + "country_code": "CA", + "latitude": "70.47233000", + "longitude": "-68.58987000" + }, + { + "id": "16453", + "name": "Gjoa Haven", + "state_id": 876, + "state_code": "NU", + "country_id": 39, + "country_code": "CA", + "latitude": "68.62602000", + "longitude": "-95.87836000" + }, + { + "id": "16524", + "name": "Iqaluit", + "state_id": 876, + "state_code": "NU", + "country_id": 39, + "country_code": "CA", + "latitude": "63.74697000", + "longitude": "-68.51727000" + }, + { + "id": "16555", + "name": "Kugluktuk", + "state_id": 876, + "state_code": "NU", + "country_id": 39, + "country_code": "CA", + "latitude": "67.82743000", + "longitude": "-115.09649000" + }, + { + "id": "16793", + "name": "Pangnirtung", + "state_id": 876, + "state_code": "NU", + "country_id": 39, + "country_code": "CA", + "latitude": "66.14642000", + "longitude": "-65.69996000" + }, + { + "id": "16869", + "name": "Rankin Inlet", + "state_id": 876, + "state_code": "NU", + "country_id": 39, + "country_code": "CA", + "latitude": "62.80906000", + "longitude": "-92.08534000" + }, + { + "id": "16152", + "name": "Ajax", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.85012000", + "longitude": "-79.03288000" + }, + { + "id": "16157", + "name": "Algoma", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "47.88364000", + "longitude": "-84.42406000" + }, + { + "id": "16158", + "name": "Alliston", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.15011000", + "longitude": "-79.86635000" + }, + { + "id": "16162", + "name": "Amherstburg", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.10009000", + "longitude": "-83.09985000" + }, + { + "id": "16163", + "name": "Amigo Beach", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.70011000", + "longitude": "-79.39963000" + }, + { + "id": "16166", + "name": "Ancaster", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.21806000", + "longitude": "-79.98716000" + }, + { + "id": "16168", + "name": "Angus", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.31681000", + "longitude": "-79.88295000" + }, + { + "id": "16174", + "name": "Arnprior", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.43341000", + "longitude": "-76.34939000" + }, + { + "id": "16179", + "name": "Atikokan", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.75667000", + "longitude": "-91.62409000" + }, + { + "id": "16180", + "name": "Attawapiskat", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "52.92774000", + "longitude": "-82.41669000" + }, + { + "id": "16181", + "name": "Aurora", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.00011000", + "longitude": "-79.46632000" + }, + { + "id": "16182", + "name": "Aylmer", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.76679000", + "longitude": "-80.98302000" + }, + { + "id": "16183", + "name": "Azilda", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.55008000", + "longitude": "-81.09975000" + }, + { + "id": "16188", + "name": "Ballantrae", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.03342000", + "longitude": "-79.29960000" + }, + { + "id": "16189", + "name": "Bancroft", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.05752000", + "longitude": "-77.85702000" + }, + { + "id": "16193", + "name": "Barrie", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.40011000", + "longitude": "-79.66634000" + }, + { + "id": "16197", + "name": "Bath", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.18342000", + "longitude": "-76.78273000" + }, + { + "id": "16211", + "name": "Belleville", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.16682000", + "longitude": "-77.38277000" + }, + { + "id": "16212", + "name": "Bells Corners", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.31588000", + "longitude": "-75.83012000" + }, + { + "id": "16213", + "name": "Belmont", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.88339000", + "longitude": "-81.08303000" + }, + { + "id": "16218", + "name": "Binbrook", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.12135000", + "longitude": "-79.81104000" + }, + { + "id": "16222", + "name": "Bluewater", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.46679000", + "longitude": "-81.59977000" + }, + { + "id": "16233", + "name": "Bourget", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.43340000", + "longitude": "-75.14930000" + }, + { + "id": "16236", + "name": "Bracebridge", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.03341000", + "longitude": "-79.31633000" + }, + { + "id": "16237", + "name": "Brampton", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.68341000", + "longitude": "-79.76633000" + }, + { + "id": "16239", + "name": "Brant", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.13340000", + "longitude": "-80.34967000" + }, + { + "id": "16240", + "name": "Brantford", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.13340000", + "longitude": "-80.26636000" + }, + { + "id": "16243", + "name": "Brockville", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.59132000", + "longitude": "-75.68705000" + }, + { + "id": "16248", + "name": "Brussels", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.73339000", + "longitude": "-81.24975000" + }, + { + "id": "16250", + "name": "Burford", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.10292000", + "longitude": "-80.42869000" + }, + { + "id": "16252", + "name": "Burlington", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.38621000", + "longitude": "-79.83713000" + }, + { + "id": "16261", + "name": "Cambridge", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.36010000", + "longitude": "-80.31269000" + }, + { + "id": "16262", + "name": "Camlachie", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.03596000", + "longitude": "-82.16160000" + }, + { + "id": "16274", + "name": "Capreol", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.70626000", + "longitude": "-80.92109000" + }, + { + "id": "16280", + "name": "Carleton Place", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.13341000", + "longitude": "-76.14938000" + }, + { + "id": "16285", + "name": "Casselman", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.31680000", + "longitude": "-75.08260000" + }, + { + "id": "16299", + "name": "Chatham", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.41224000", + "longitude": "-82.18494000" + }, + { + "id": "16300", + "name": "Chatham-Kent", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.40009000", + "longitude": "-82.18310000" + }, + { + "id": "16312", + "name": "Clarence-Rockland", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.55010000", + "longitude": "-75.29101000" + }, + { + "id": "16319", + "name": "Cobourg", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.95977000", + "longitude": "-78.16515000" + }, + { + "id": "16321", + "name": "Cochrane District", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "50.00022000", + "longitude": "-82.99979000" + }, + { + "id": "16325", + "name": "Collingwood", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.48340000", + "longitude": "-80.21638000" + }, + { + "id": "16328", + "name": "Concord", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.80011000", + "longitude": "-79.48291000" + }, + { + "id": "16329", + "name": "Constance Bay", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.50011000", + "longitude": "-76.08267000" + }, + { + "id": "16333", + "name": "Cookstown", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.18341000", + "longitude": "-79.69964000" + }, + { + "id": "16337", + "name": "Cornwall", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.01809000", + "longitude": "-74.72815000" + }, + { + "id": "16339", + "name": "Corunna", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.88338000", + "longitude": "-82.43313000" + }, + { + "id": "16361", + "name": "Deep River", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.10012000", + "longitude": "-77.49949000" + }, + { + "id": "16363", + "name": "Delaware", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.91679000", + "longitude": "-81.41646000" + }, + { + "id": "16369", + "name": "Deseronto", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.20012000", + "longitude": "-77.04944000" + }, + { + "id": "16380", + "name": "Dorchester", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.98339000", + "longitude": "-81.06643000" + }, + { + "id": "16382", + "name": "Dowling", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.59111000", + "longitude": "-81.33917000" + }, + { + "id": "16385", + "name": "Dryden", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "49.78334000", + "longitude": "-92.75032000" + }, + { + "id": "16389", + "name": "Durham", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.20012000", + "longitude": "-78.99957000" + }, + { + "id": "16390", + "name": "Ear Falls", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "50.63955000", + "longitude": "-93.23526000" + }, + { + "id": "16393", + "name": "East Gwillimbury", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.10087000", + "longitude": "-79.43785000" + }, + { + "id": "16395", + "name": "East York", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.69053000", + "longitude": "-79.32794000" + }, + { + "id": "16401", + "name": "Elliot Lake", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.38336000", + "longitude": "-82.63315000" + }, + { + "id": "16403", + "name": "Elmvale", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.58340000", + "longitude": "-79.86636000" + }, + { + "id": "16405", + "name": "Englehart", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "47.81686000", + "longitude": "-79.86640000" + }, + { + "id": "16408", + "name": "Espanola", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.25837000", + "longitude": "-81.76649000" + }, + { + "id": "16409", + "name": "Essex", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.17509000", + "longitude": "-82.82483000" + }, + { + "id": "16412", + "name": "Etobicoke", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.65421000", + "longitude": "-79.56711000" + }, + { + "id": "16427", + "name": "Fort Erie", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.90012000", + "longitude": "-78.93286000" + }, + { + "id": "16428", + "name": "Fort Frances", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.61667000", + "longitude": "-93.40030000" + }, + { + "id": "16446", + "name": "Gananoque", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.33342000", + "longitude": "-76.16607000" + }, + { + "id": "16455", + "name": "Glencoe", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.75009000", + "longitude": "-81.71648000" + }, + { + "id": "16457", + "name": "Goderich", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.74171000", + "longitude": "-81.71339000" + }, + { + "id": "16459", + "name": "Golden", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "51.05917000", + "longitude": "-93.73568000" + }, + { + "id": "16470", + "name": "Gravenhurst", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.91681000", + "longitude": "-79.36633000" + }, + { + "id": "16472", + "name": "Greater Napanee", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.25012000", + "longitude": "-76.94944000" + }, + { + "id": "16473", + "name": "Greater Sudbury", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.49000000", + "longitude": "-80.99001000" + }, + { + "id": "16474", + "name": "Greenstone", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "49.73343000", + "longitude": "-87.16668000" + }, + { + "id": "16478", + "name": "Guelph", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.54594000", + "longitude": "-80.25599000" + }, + { + "id": "16480", + "name": "Haldimand County", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.98341000", + "longitude": "-79.86633000" + }, + { + "id": "16481", + "name": "Haliburton Village", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.05154000", + "longitude": "-78.52245000" + }, + { + "id": "16483", + "name": "Halton", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.50011000", + "longitude": "-79.88294000" + }, + { + "id": "16484", + "name": "Hamilton", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.25011000", + "longitude": "-79.84963000" + }, + { + "id": "16489", + "name": "Hanover", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.15009000", + "longitude": "-81.03303000" + }, + { + "id": "16494", + "name": "Harriston", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.90009000", + "longitude": "-80.88302000" + }, + { + "id": "16497", + "name": "Hawkesbury", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.60009000", + "longitude": "-74.61595000" + }, + { + "id": "16501", + "name": "Hearst", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "49.68351000", + "longitude": "-83.66654000" + }, + { + "id": "16509", + "name": "Hornepayne", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "49.21451000", + "longitude": "-84.77617000" + }, + { + "id": "16515", + "name": "Huntsville", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.33341000", + "longitude": "-79.21632000" + }, + { + "id": "16516", + "name": "Huron East", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.61679000", + "longitude": "-81.29975000" + }, + { + "id": "16520", + "name": "Ingersoll", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.03339000", + "longitude": "-80.88302000" + }, + { + "id": "16521", + "name": "Innisfil", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.30011000", + "longitude": "-79.64964000" + }, + { + "id": "16525", + "name": "Iroquois Falls", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.76688000", + "longitude": "-80.68307000" + }, + { + "id": "16527", + "name": "Jarvis", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.88341000", + "longitude": "-80.09965000" + }, + { + "id": "16533", + "name": "Kanata", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.30010000", + "longitude": "-75.91606000" + }, + { + "id": "16534", + "name": "Kapuskasing", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "49.41694000", + "longitude": "-82.43308000" + }, + { + "id": "16535", + "name": "Kawartha Lakes", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.58342000", + "longitude": "-78.83288000" + }, + { + "id": "16537", + "name": "Kenora", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "49.76741000", + "longitude": "-94.48985000" + }, + { + "id": "16541", + "name": "Keswick", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.25011000", + "longitude": "-79.46632000" + }, + { + "id": "16546", + "name": "Kincardine", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.18339000", + "longitude": "-81.63307000" + }, + { + "id": "16548", + "name": "King", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.96514000", + "longitude": "-79.59011000" + }, + { + "id": "16550", + "name": "Kingston", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.22976000", + "longitude": "-76.48098000" + }, + { + "id": "16552", + "name": "Kirkland Lake", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.14461000", + "longitude": "-80.03767000" + }, + { + "id": "16553", + "name": "Kitchener", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.42537000", + "longitude": "-80.51120000" + }, + { + "id": "16560", + "name": "L'Orignal", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.61980000", + "longitude": "-74.69150000" + }, + { + "id": "16590", + "name": "Lakefield", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.43342000", + "longitude": "-78.26623000" + }, + { + "id": "16591", + "name": "Lambton Shores", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.16678000", + "longitude": "-81.93309000" + }, + { + "id": "16601", + "name": "Lappe", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.56680000", + "longitude": "-89.35013000" + }, + { + "id": "16607", + "name": "Leamington", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.05009000", + "longitude": "-82.59981000" + }, + { + "id": "16617", + "name": "Limoges", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.33340000", + "longitude": "-75.24931000" + }, + { + "id": "16619", + "name": "Lindsay", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.35012000", + "longitude": "-78.73286000" + }, + { + "id": "16622", + "name": "Listowel", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.73340000", + "longitude": "-80.94973000" + }, + { + "id": "16623", + "name": "Little Current", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.97927000", + "longitude": "-81.92480000" + }, + { + "id": "16624", + "name": "Lively", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.43338000", + "longitude": "-81.14975000" + }, + { + "id": "16627", + "name": "London", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.98339000", + "longitude": "-81.23304000" + }, + { + "id": "16633", + "name": "Lucan", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.18339000", + "longitude": "-81.39976000" + }, + { + "id": "16643", + "name": "Madoc", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.50842000", + "longitude": "-77.47448000" + }, + { + "id": "16650", + "name": "Manitoulin District", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.75007000", + "longitude": "-82.49985000" + }, + { + "id": "16651", + "name": "Manitouwadge", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "49.12152000", + "longitude": "-85.84030000" + }, + { + "id": "16658", + "name": "Marathon", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.75010000", + "longitude": "-86.43322000" + }, + { + "id": "16661", + "name": "Markdale", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.31680000", + "longitude": "-80.64971000" + }, + { + "id": "16662", + "name": "Markham", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.86682000", + "longitude": "-79.26630000" + }, + { + "id": "16669", + "name": "Mattawa", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.31681000", + "longitude": "-78.69957000" + }, + { + "id": "16674", + "name": "Meaford", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.60725000", + "longitude": "-80.61081000" + }, + { + "id": "16683", + "name": "Metcalfe", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.23340000", + "longitude": "-75.46603000" + }, + { + "id": "16687", + "name": "Midland", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.75010000", + "longitude": "-79.88296000" + }, + { + "id": "16688", + "name": "Mildmay", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.05009000", + "longitude": "-81.11644000" + }, + { + "id": "16690", + "name": "Millbrook", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.15012000", + "longitude": "-78.44954000" + }, + { + "id": "16692", + "name": "Milton", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.51681000", + "longitude": "-79.88294000" + }, + { + "id": "16697", + "name": "Mississauga", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.57890000", + "longitude": "-79.65830000" + }, + { + "id": "16698", + "name": "Mississauga Beach", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.26682000", + "longitude": "-79.08287000" + }, + { + "id": "16712", + "name": "Moose Factory", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "51.26689000", + "longitude": "-80.61624000" + }, + { + "id": "16716", + "name": "Moosonee", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "51.27931000", + "longitude": "-80.63450000" + }, + { + "id": "16721", + "name": "Morrisburg", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.90010000", + "longitude": "-75.18261000" + }, + { + "id": "16722", + "name": "Mount Albert", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.13341000", + "longitude": "-79.31630000" + }, + { + "id": "16723", + "name": "Mount Brydges", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.90009000", + "longitude": "-81.48306000" + }, + { + "id": "16730", + "name": "Napanee", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.25012000", + "longitude": "-76.94944000" + }, + { + "id": "16731", + "name": "Napanee Downtown", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.24832000", + "longitude": "-76.95069000" + }, + { + "id": "16733", + "name": "Neebing", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.16680000", + "longitude": "-89.41683000" + }, + { + "id": "16736", + "name": "Nepean", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.35215000", + "longitude": "-75.73975000" + }, + { + "id": "16740", + "name": "New Hamburg", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.38339000", + "longitude": "-80.69970000" + }, + { + "id": "16744", + "name": "Newmarket", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.05011000", + "longitude": "-79.46631000" + }, + { + "id": "16745", + "name": "Niagara Falls", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.10012000", + "longitude": "-79.06627000" + }, + { + "id": "16748", + "name": "Nipissing District", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.00010000", + "longitude": "-78.99959000" + }, + { + "id": "16752", + "name": "Norfolk County", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.83340000", + "longitude": "-80.38297000" + }, + { + "id": "16756", + "name": "North Bay", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.31680000", + "longitude": "-79.46633000" + }, + { + "id": "16759", + "name": "North Perth", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.72510000", + "longitude": "-80.96723000" + }, + { + "id": "16762", + "name": "North York", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.76681000", + "longitude": "-79.41630000" + }, + { + "id": "16763", + "name": "Norwood", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.38342000", + "longitude": "-77.98281000" + }, + { + "id": "16770", + "name": "Oakville", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.45011000", + "longitude": "-79.68292000" + }, + { + "id": "16777", + "name": "Omemee", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.29897000", + "longitude": "-78.55989000" + }, + { + "id": "16778", + "name": "Orangeville", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.91680000", + "longitude": "-80.09967000" + }, + { + "id": "16779", + "name": "Orillia", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.60868000", + "longitude": "-79.42068000" + }, + { + "id": "16782", + "name": "Osgoode", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.14887000", + "longitude": "-75.59778000" + }, + { + "id": "16783", + "name": "Oshawa", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.90012000", + "longitude": "-78.84957000" + }, + { + "id": "16785", + "name": "Ottawa", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.41117000", + "longitude": "-75.69812000" + }, + { + "id": "16789", + "name": "Owen Sound", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.56717000", + "longitude": "-80.94349000" + }, + { + "id": "16792", + "name": "Paisley", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.30641000", + "longitude": "-81.27265000" + }, + { + "id": "16796", + "name": "Paris", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.20000000", + "longitude": "-80.38333000" + }, + { + "id": "16797", + "name": "Parkhill", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.15993000", + "longitude": "-81.68464000" + }, + { + "id": "16800", + "name": "Parry Sound", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.34732000", + "longitude": "-80.03527000" + }, + { + "id": "16801", + "name": "Parry Sound District", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.75011000", + "longitude": "-79.83297000" + }, + { + "id": "16806", + "name": "Peel", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.75011000", + "longitude": "-79.78293000" + }, + { + "id": "16809", + "name": "Pembroke", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.81681000", + "longitude": "-77.11616000" + }, + { + "id": "16812", + "name": "Perth", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.90011000", + "longitude": "-76.24939000" + }, + { + "id": "16813", + "name": "Petawawa", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.89452000", + "longitude": "-77.28007000" + }, + { + "id": "16814", + "name": "Peterborough", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.30012000", + "longitude": "-78.31623000" + }, + { + "id": "16815", + "name": "Petrolia", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.86678000", + "longitude": "-82.14981000" + }, + { + "id": "16816", + "name": "Pickering", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.90012000", + "longitude": "-79.13289000" + }, + { + "id": "16817", + "name": "Picton", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.00012000", + "longitude": "-77.13275000" + }, + { + "id": "16827", + "name": "Plantagenet", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.53260000", + "longitude": "-74.99369000" + }, + { + "id": "16828", + "name": "Plattsville", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.30010000", + "longitude": "-80.61639000" + }, + { + "id": "16838", + "name": "Port Colborne", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.90012000", + "longitude": "-79.23288000" + }, + { + "id": "16841", + "name": "Port Hope", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.01682000", + "longitude": "-78.39953000" + }, + { + "id": "16844", + "name": "Port Rowan", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.61680000", + "longitude": "-80.46638000" + }, + { + "id": "16845", + "name": "Port Stanley", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.66679000", + "longitude": "-81.21644000" + }, + { + "id": "16850", + "name": "Powassan", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.03340000", + "longitude": "-79.34961000" + }, + { + "id": "16853", + "name": "Prescott", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.71681000", + "longitude": "-75.51604000" + }, + { + "id": "16855", + "name": "Prince Edward", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.00012000", + "longitude": "-77.24946000" + }, + { + "id": "16864", + "name": "Queenswood Heights", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.47083000", + "longitude": "-75.50556000" + }, + { + "id": "16866", + "name": "Quinte West", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.18342000", + "longitude": "-77.56618000" + }, + { + "id": "16868", + "name": "Rainy River District", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.49981000", + "longitude": "-92.50031000" + }, + { + "id": "16872", + "name": "Rayside-Balfour", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.60873000", + "longitude": "-81.20763000" + }, + { + "id": "16874", + "name": "Red Lake", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "51.01678000", + "longitude": "-93.82736000" + }, + { + "id": "16879", + "name": "Regional Municipality of Waterloo", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.50010000", + "longitude": "-80.49969000" + }, + { + "id": "16880", + "name": "Renfrew", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.46681000", + "longitude": "-76.68272000" + }, + { + "id": "16887", + "name": "Richmond", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.18340000", + "longitude": "-75.83266000" + }, + { + "id": "16888", + "name": "Richmond Hill", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.87111000", + "longitude": "-79.43725000" + }, + { + "id": "16890", + "name": "Ridgetown", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.43339000", + "longitude": "-81.89978000" + }, + { + "id": "16900", + "name": "Rockwood", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.61899000", + "longitude": "-80.14441000" + }, + { + "id": "16909", + "name": "Russell", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.25010000", + "longitude": "-75.36602000" + }, + { + "id": "17020", + "name": "Sarnia", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.97866000", + "longitude": "-82.40407000" + }, + { + "id": "17022", + "name": "Sault Ste. Marie", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.51677000", + "longitude": "-84.33325000" + }, + { + "id": "17023", + "name": "Scarborough", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.77223000", + "longitude": "-79.25666000" + }, + { + "id": "17024", + "name": "Seaforth", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.55009000", + "longitude": "-81.39976000" + }, + { + "id": "17036", + "name": "Shelburne", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.07870000", + "longitude": "-80.20408000" + }, + { + "id": "17045", + "name": "Simcoe", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.83340000", + "longitude": "-80.29967000" + }, + { + "id": "17046", + "name": "Sioux Lookout", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "50.06676000", + "longitude": "-91.98358000" + }, + { + "id": "17048", + "name": "Skatepark", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.25122000", + "longitude": "-76.94424000" + }, + { + "id": "17051", + "name": "Smiths Falls", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.90452000", + "longitude": "-76.02333000" + }, + { + "id": "17057", + "name": "South Huron", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.31679000", + "longitude": "-81.51647000" + }, + { + "id": "17059", + "name": "South River", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.83340000", + "longitude": "-79.38293000" + }, + { + "id": "17070", + "name": "St. Catharines", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.17126000", + "longitude": "-79.24267000" + }, + { + "id": "17071", + "name": "St. George", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.24495000", + "longitude": "-80.25144000" + }, + { + "id": "17073", + "name": "St. Thomas", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.77361000", + "longitude": "-81.18038000" + }, + { + "id": "17079", + "name": "Stirling", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.30012000", + "longitude": "-77.54948000" + }, + { + "id": "17081", + "name": "Stoney Point", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.26681000", + "longitude": "-79.53292000" + }, + { + "id": "17083", + "name": "Stratford", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.36679000", + "longitude": "-80.94972000" + }, + { + "id": "17085", + "name": "Sudbury", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "47.16679000", + "longitude": "-81.99980000" + }, + { + "id": "17100", + "name": "Tavistock", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.31679000", + "longitude": "-80.83302000" + }, + { + "id": "17101", + "name": "Temiskaming Shores", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "47.49376000", + "longitude": "-79.71529000" + }, + { + "id": "17106", + "name": "Thessalon", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.25006000", + "longitude": "-83.56660000" + }, + { + "id": "17109", + "name": "Thorold", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.11682000", + "longitude": "-79.19958000" + }, + { + "id": "17111", + "name": "Thunder Bay", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.38202000", + "longitude": "-89.25018000" + }, + { + "id": "17112", + "name": "Thunder Bay District", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "49.50011000", + "longitude": "-88.50004000" + }, + { + "id": "17114", + "name": "Timiskaming District", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "47.75016000", + "longitude": "-80.33303000" + }, + { + "id": "17115", + "name": "Timmins", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "48.46686000", + "longitude": "-81.33312000" + }, + { + "id": "17117", + "name": "Tobermory", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.25007000", + "longitude": "-81.66647000" + }, + { + "id": "17121", + "name": "Toronto", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.70011000", + "longitude": "-79.41630000" + }, + { + "id": "17122", + "name": "Toronto county", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.69655000", + "longitude": "-79.42909000" + }, + { + "id": "17123", + "name": "Tottenham", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.02437000", + "longitude": "-79.80553000" + }, + { + "id": "17130", + "name": "Tweed", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.47512000", + "longitude": "-77.31616000" + }, + { + "id": "17136", + "name": "Uxbridge", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.10012000", + "longitude": "-79.11628000" + }, + { + "id": "17142", + "name": "Valley East", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "46.66773000", + "longitude": "-81.00028000" + }, + { + "id": "17147", + "name": "Vanier", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.43990000", + "longitude": "-75.66498000" + }, + { + "id": "17150", + "name": "Vaughan", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.83610000", + "longitude": "-79.49827000" + }, + { + "id": "17160", + "name": "Vineland", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.15012000", + "longitude": "-79.39960000" + }, + { + "id": "17162", + "name": "Virgil", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.21682000", + "longitude": "-79.13288000" + }, + { + "id": "17169", + "name": "Walpole Island", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.61520000", + "longitude": "-82.51398000" + }, + { + "id": "17172", + "name": "Wasaga Beach", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.51680000", + "longitude": "-80.01637000" + }, + { + "id": "17175", + "name": "Waterford", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.93340000", + "longitude": "-80.28296000" + }, + { + "id": "17176", + "name": "Waterloo", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.46680000", + "longitude": "-80.51639000" + }, + { + "id": "17178", + "name": "Watford", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.95008000", + "longitude": "-81.88309000" + }, + { + "id": "17181", + "name": "Wawa", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "47.98877000", + "longitude": "-84.77411000" + }, + { + "id": "17184", + "name": "Welland", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.98342000", + "longitude": "-79.24958000" + }, + { + "id": "17185", + "name": "Wellesley", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.47691000", + "longitude": "-80.76209000" + }, + { + "id": "17188", + "name": "Wendover", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.57275000", + "longitude": "-75.12757000" + }, + { + "id": "17191", + "name": "West Lorne", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.60009000", + "longitude": "-81.59976000" + }, + { + "id": "17208", + "name": "Willowdale", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.76672000", + "longitude": "-79.39909000" + }, + { + "id": "17209", + "name": "Winchester", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "45.08340000", + "longitude": "-75.34933000" + }, + { + "id": "17212", + "name": "Windsor", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "42.30008000", + "longitude": "-83.01654000" + }, + { + "id": "17213", + "name": "Wingham", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.88793000", + "longitude": "-81.31145000" + }, + { + "id": "17217", + "name": "Woodstock", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "43.13339000", + "longitude": "-80.74970000" + }, + { + "id": "17222", + "name": "York", + "state_id": 866, + "state_code": "ON", + "country_id": 39, + "country_code": "CA", + "latitude": "44.00011000", + "longitude": "-79.46632000" + }, + { + "id": "16154", + "name": "Alberton", + "state_id": 871, + "state_code": "PE", + "country_id": 39, + "country_code": "CA", + "latitude": "46.81685000", + "longitude": "-64.06542000" + }, + { + "id": "16210", + "name": "Belfast", + "state_id": 871, + "state_code": "PE", + "country_id": 39, + "country_code": "CA", + "latitude": "46.08341000", + "longitude": "-62.88197000" + }, + { + "id": "16297", + "name": "Charlottetown", + "state_id": 871, + "state_code": "PE", + "country_id": 39, + "country_code": "CA", + "latitude": "46.23899000", + "longitude": "-63.13414000" + }, + { + "id": "16338", + "name": "Cornwall", + "state_id": 871, + "state_code": "PE", + "country_id": 39, + "country_code": "CA", + "latitude": "46.22652000", + "longitude": "-63.21809000" + }, + { + "id": "16417", + "name": "Fallingbrook", + "state_id": 871, + "state_code": "PE", + "country_id": 39, + "country_code": "CA", + "latitude": "45.47558000", + "longitude": "-75.48401000" + }, + { + "id": "16538", + "name": "Kensington", + "state_id": 871, + "state_code": "PE", + "country_id": 39, + "country_code": "CA", + "latitude": "46.43343000", + "longitude": "-63.64871000" + }, + { + "id": "16707", + "name": "Montague", + "state_id": 871, + "state_code": "PE", + "country_id": 39, + "country_code": "CA", + "latitude": "46.16681000", + "longitude": "-62.64866000" + }, + { + "id": "17055", + "name": "Souris", + "state_id": 871, + "state_code": "PE", + "country_id": 39, + "country_code": "CA", + "latitude": "46.35010000", + "longitude": "-62.24862000" + }, + { + "id": "17087", + "name": "Summerside", + "state_id": 871, + "state_code": "PE", + "country_id": 39, + "country_code": "CA", + "latitude": "46.39593000", + "longitude": "-63.78762000" + }, + { + "id": "16147", + "name": "Abitibi-Témiscamingue", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.10018000", + "longitude": "-77.78280000" + }, + { + "id": "16148", + "name": "Acton Vale", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.65007000", + "longitude": "-72.56582000" + }, + { + "id": "16149", + "name": "Adstock", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.05007000", + "longitude": "-71.08235000" + }, + { + "id": "16153", + "name": "Albanel", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.88324000", + "longitude": "-72.44867000" + }, + { + "id": "16159", + "name": "Alma", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.55009000", + "longitude": "-71.64910000" + }, + { + "id": "16164", + "name": "Amos", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.56688000", + "longitude": "-78.11624000" + }, + { + "id": "16165", + "name": "Amqui", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.46382000", + "longitude": "-67.43134000" + }, + { + "id": "16167", + "name": "Ange-Gardien", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.35008000", + "longitude": "-72.93244000" + }, + { + "id": "16175", + "name": "Asbestos", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.76678000", + "longitude": "-71.93240000" + }, + { + "id": "16185", + "name": "Baie-Comeau", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.21679000", + "longitude": "-68.14894000" + }, + { + "id": "16186", + "name": "Baie-D'Urfé", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.41397000", + "longitude": "-73.91586000" + }, + { + "id": "16187", + "name": "Baie-Saint-Paul", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.44109000", + "longitude": "-70.49858000" + }, + { + "id": "16191", + "name": "Barraute", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.43349000", + "longitude": "-77.63279000" + }, + { + "id": "16195", + "name": "Bas-Saint-Laurent", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.05030000", + "longitude": "-68.02266000" + }, + { + "id": "16255", + "name": "Bécancour", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.34106000", + "longitude": "-72.43224000" + }, + { + "id": "16201", + "name": "Beaconsfield", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.43341000", + "longitude": "-73.86586000" + }, + { + "id": "16202", + "name": "Beauceville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.21785000", + "longitude": "-70.77873000" + }, + { + "id": "16203", + "name": "Beauharnois", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.31341000", + "longitude": "-73.87250000" + }, + { + "id": "16205", + "name": "Beaupré", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.04428000", + "longitude": "-70.89529000" + }, + { + "id": "16208", + "name": "Bedford", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.11678000", + "longitude": "-72.98244000" + }, + { + "id": "16214", + "name": "Beloeil", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.56839000", + "longitude": "-73.20568000" + }, + { + "id": "16215", + "name": "Berthierville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.08336000", + "longitude": "-73.18245000" + }, + { + "id": "16221", + "name": "Blainville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.66678000", + "longitude": "-73.88249000" + }, + { + "id": "16223", + "name": "Bois-des-Filion", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.66678000", + "longitude": "-73.74918000" + }, + { + "id": "16224", + "name": "Boisbriand", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.61678000", + "longitude": "-73.83249000" + }, + { + "id": "16227", + "name": "Bonaventure", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.04573000", + "longitude": "-65.49259000" + }, + { + "id": "16231", + "name": "Boucherville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.59104000", + "longitude": "-73.43605000" + }, + { + "id": "16241", + "name": "Breakeyville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.68037000", + "longitude": "-71.22327000" + }, + { + "id": "16244", + "name": "Bromont", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.31678000", + "longitude": "-72.64912000" + }, + { + "id": "16246", + "name": "Brossard", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.45008000", + "longitude": "-73.46583000" + }, + { + "id": "16247", + "name": "Brownsburg-Chatham", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.68342000", + "longitude": "-74.41590000" + }, + { + "id": "16249", + "name": "Buckingham", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.58563000", + "longitude": "-75.42080000" + }, + { + "id": "16256", + "name": "Cabano", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.68065000", + "longitude": "-68.87810000" + }, + { + "id": "16258", + "name": "Cacouna", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.91657000", + "longitude": "-69.50054000" + }, + { + "id": "16266", + "name": "Candiac", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.38338000", + "longitude": "-73.51587000" + }, + { + "id": "16269", + "name": "Cantley", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.56680000", + "longitude": "-75.78265000" + }, + { + "id": "16270", + "name": "Cap-Chat", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.10009000", + "longitude": "-66.68212000" + }, + { + "id": "16271", + "name": "Cap-Santé", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.67159000", + "longitude": "-71.78812000" + }, + { + "id": "16273", + "name": "Capitale-Nationale", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.37600000", + "longitude": "-71.12337000" + }, + { + "id": "16278", + "name": "Carignan", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.45008000", + "longitude": "-73.29916000" + }, + { + "id": "16279", + "name": "Carleton", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.09838000", + "longitude": "-66.10036000" + }, + { + "id": "16281", + "name": "Carleton-sur-Mer", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.10749000", + "longitude": "-66.12800000" + }, + { + "id": "16351", + "name": "Côte-Nord", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.86683000", + "longitude": "-65.81541000" + }, + { + "id": "16352", + "name": "Côte-Saint-Luc", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.46536000", + "longitude": "-73.66585000" + }, + { + "id": "16290", + "name": "Centre-du-Québec", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.01985000", + "longitude": "-71.98242000" + }, + { + "id": "16291", + "name": "Chambly", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.45008000", + "longitude": "-73.28246000" + }, + { + "id": "16292", + "name": "Chambord", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.43339000", + "longitude": "-72.06583000" + }, + { + "id": "16293", + "name": "Chandler", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.34935000", + "longitude": "-64.67926000" + }, + { + "id": "16295", + "name": "Chapais", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.78344000", + "longitude": "-74.84919000" + }, + { + "id": "16296", + "name": "Charlemagne", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.71678000", + "longitude": "-73.48247000" + }, + { + "id": "16301", + "name": "Chaudière-Appalaches", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.55500000", + "longitude": "-70.83080000" + }, + { + "id": "16310", + "name": "Château-Richer", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.96031000", + "longitude": "-71.03219000" + }, + { + "id": "16311", + "name": "Châteauguay", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.38338000", + "longitude": "-73.74919000" + }, + { + "id": "16303", + "name": "Chertsey", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.07109000", + "longitude": "-73.89095000" + }, + { + "id": "16307", + "name": "Chibougamau", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.91684000", + "longitude": "-74.36586000" + }, + { + "id": "16309", + "name": "Chute-aux-Outardes", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.11679000", + "longitude": "-68.39896000" + }, + { + "id": "16318", + "name": "Coaticook", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.13339000", + "longitude": "-71.79907000" + }, + { + "id": "16330", + "name": "Contrecoeur", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.85008000", + "longitude": "-73.23245000" + }, + { + "id": "16331", + "name": "Cookshire", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.41536000", + "longitude": "-71.62962000" + }, + { + "id": "16332", + "name": "Cookshire-Eaton", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.41675000", + "longitude": "-71.63240000" + }, + { + "id": "16340", + "name": "Coteau-du-Lac", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.30008000", + "longitude": "-74.18253000" + }, + { + "id": "16343", + "name": "Cowansville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.20008000", + "longitude": "-72.74913000" + }, + { + "id": "16345", + "name": "Crabtree", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.96677000", + "longitude": "-73.46586000" + }, + { + "id": "16354", + "name": "Danville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.78337000", + "longitude": "-72.01580000" + }, + { + "id": "16357", + "name": "Daveluyville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.20006000", + "longitude": "-72.13239000" + }, + { + "id": "16365", + "name": "Delson", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.36678000", + "longitude": "-73.54917000" + }, + { + "id": "16370", + "name": "Deux-Montagnes", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.53455000", + "longitude": "-73.90168000" + }, + { + "id": "16376", + "name": "Disraeli", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.90007000", + "longitude": "-71.34907000" + }, + { + "id": "16377", + "name": "Dolbeau-Mistassini", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.87860000", + "longitude": "-72.23142000" + }, + { + "id": "16378", + "name": "Dollard-Des Ormeaux", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.49452000", + "longitude": "-73.82419000" + }, + { + "id": "16379", + "name": "Donnacona", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.68042000", + "longitude": "-71.72390000" + }, + { + "id": "16381", + "name": "Dorval", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.44730000", + "longitude": "-73.75335000" + }, + { + "id": "16384", + "name": "Drummondville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.88336000", + "longitude": "-72.48241000" + }, + { + "id": "16388", + "name": "Dunham", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.13338000", + "longitude": "-72.79913000" + }, + { + "id": "16391", + "name": "East Angus", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.48338000", + "longitude": "-71.66577000" + }, + { + "id": "16392", + "name": "East Broughton", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.21358000", + "longitude": "-71.07674000" + }, + { + "id": "16418", + "name": "Farnham", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.28338000", + "longitude": "-72.98244000" + }, + { + "id": "16419", + "name": "Ferme-Neuve", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.70011000", + "longitude": "-75.44929000" + }, + { + "id": "16420", + "name": "Fermont", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "52.78345000", + "longitude": "-67.08204000" + }, + { + "id": "16426", + "name": "Forestville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.73808000", + "longitude": "-69.08478000" + }, + { + "id": "16436", + "name": "Fort-Coulonge", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.85011000", + "longitude": "-76.73272000" + }, + { + "id": "16437", + "name": "Fossambault-sur-le-Lac", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.87662000", + "longitude": "-71.61541000" + }, + { + "id": "16439", + "name": "Franklin", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.03338000", + "longitude": "-73.91591000" + }, + { + "id": "16447", + "name": "Gaspé", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.83341000", + "longitude": "-64.48194000" + }, + { + "id": "16448", + "name": "Gaspésie-Îles-de-la-Madeleine", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.87555000", + "longitude": "-65.40710000" + }, + { + "id": "16449", + "name": "Gatineau", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.47723000", + "longitude": "-75.70164000" + }, + { + "id": "16456", + "name": "Godefroy", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "51.75012000", + "longitude": "-68.08213000" + }, + { + "id": "16461", + "name": "Granby", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.40008000", + "longitude": "-72.73243000" + }, + { + "id": "16485", + "name": "Hampstead", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.48064000", + "longitude": "-73.66307000" + }, + { + "id": "16495", + "name": "Hauterive", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.19572000", + "longitude": "-68.25813000" + }, + { + "id": "16496", + "name": "Havre-Saint-Pierre", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.24342000", + "longitude": "-63.60264000" + }, + { + "id": "16517", + "name": "Hérouxville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.66617000", + "longitude": "-72.62512000" + }, + { + "id": "16511", + "name": "Hudson", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.45008000", + "longitude": "-74.14922000" + }, + { + "id": "16514", + "name": "Huntingdon", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.08339000", + "longitude": "-74.16593000" + }, + { + "id": "16529", + "name": "Joliette", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.01640000", + "longitude": "-73.42360000" + }, + { + "id": "16530", + "name": "Jonquière", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.41648000", + "longitude": "-71.24884000" + }, + { + "id": "16549", + "name": "Kingsey Falls", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.85007000", + "longitude": "-72.06580000" + }, + { + "id": "16551", + "name": "Kirkland", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.45008000", + "longitude": "-73.86586000" + }, + { + "id": "16556", + "name": "L'Ancienne-Lorette", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.79392000", + "longitude": "-71.35191000" + }, + { + "id": "16557", + "name": "L'Ange-Gardien", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.91976000", + "longitude": "-71.08253000" + }, + { + "id": "16558", + "name": "L'Ascension-de-Notre-Seigneur", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.68339000", + "longitude": "-71.66580000" + }, + { + "id": "16559", + "name": "L'Assomption", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.82318000", + "longitude": "-73.42940000" + }, + { + "id": "16562", + "name": "L'Île-Perrot", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.38338000", + "longitude": "-73.94920000" + }, + { + "id": "16561", + "name": "L'Épiphanie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.85008000", + "longitude": "-73.48246000" + }, + { + "id": "16564", + "name": "La Conception", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.15009000", + "longitude": "-74.69925000" + }, + { + "id": "16565", + "name": "La Haute-Saint-Charles", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.89028000", + "longitude": "-71.37222000" + }, + { + "id": "16566", + "name": "La Malbaie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.65400000", + "longitude": "-70.15268000" + }, + { + "id": "16567", + "name": "La Minerve", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.25009000", + "longitude": "-74.93257000" + }, + { + "id": "16568", + "name": "La Pocatière", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.36733000", + "longitude": "-70.03484000" + }, + { + "id": "16569", + "name": "La Prairie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.41678000", + "longitude": "-73.49917000" + }, + { + "id": "16571", + "name": "La Sarre", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.80019000", + "longitude": "-79.19964000" + }, + { + "id": "16572", + "name": "La Tuque", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.43337000", + "longitude": "-72.78240000" + }, + { + "id": "16573", + "name": "Labelle", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.28339000", + "longitude": "-74.73255000" + }, + { + "id": "16577", + "name": "Lac-Alouette", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.81698000", + "longitude": "-73.95920000" + }, + { + "id": "16578", + "name": "Lac-Brome", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.21678000", + "longitude": "-72.51581000" + }, + { + "id": "16579", + "name": "Lac-Connelly", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.89788000", + "longitude": "-73.97230000" + }, + { + "id": "16580", + "name": "Lac-Lapierre", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.89837000", + "longitude": "-73.77308000" + }, + { + "id": "16581", + "name": "Lac-Mégantic", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.58338000", + "longitude": "-70.88234000" + }, + { + "id": "16582", + "name": "Lac-Simon", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.15699000", + "longitude": "-74.74129000" + }, + { + "id": "16583", + "name": "Lachute", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.65008000", + "longitude": "-74.33253000" + }, + { + "id": "16584", + "name": "Lacolle", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.08338000", + "longitude": "-73.36585000" + }, + { + "id": "16599", + "name": "Lanoraie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.96677000", + "longitude": "-73.21585000" + }, + { + "id": "16604", + "name": "Laval", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.56995000", + "longitude": "-73.69200000" + }, + { + "id": "16605", + "name": "Lavaltrie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.88338000", + "longitude": "-73.28245000" + }, + { + "id": "16639", + "name": "Lévis", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.80326000", + "longitude": "-71.17793000" + }, + { + "id": "16606", + "name": "Le Bic", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.37549000", + "longitude": "-68.69415000" + }, + { + "id": "17224", + "name": "le Plateau", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.43514000", + "longitude": "-75.78030000" + }, + { + "id": "16608", + "name": "Lebel-sur-Quévillon", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.05018000", + "longitude": "-76.98273000" + }, + { + "id": "16609", + "name": "Leblanc", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.26683000", + "longitude": "-74.34914000" + }, + { + "id": "16612", + "name": "Les Cèdres", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.30008000", + "longitude": "-74.04922000" + }, + { + "id": "16611", + "name": "Les Coteaux", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.28338000", + "longitude": "-74.23254000" + }, + { + "id": "16613", + "name": "Les Escoumins", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.35191000", + "longitude": "-69.40724000" + }, + { + "id": "16620", + "name": "Linière", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.00007000", + "longitude": "-70.41572000" + }, + { + "id": "16628", + "name": "Longueuil", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.53121000", + "longitude": "-73.51806000" + }, + { + "id": "16630", + "name": "Lorraine", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.68338000", + "longitude": "-73.78249000" + }, + { + "id": "16631", + "name": "Louiseville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.25594000", + "longitude": "-72.94145000" + }, + { + "id": "16634", + "name": "Luceville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.54498000", + "longitude": "-68.39658000" + }, + { + "id": "16640", + "name": "Macamic", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.75018000", + "longitude": "-78.99962000" + }, + { + "id": "16644", + "name": "Magog", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.26678000", + "longitude": "-72.14909000" + }, + { + "id": "16646", + "name": "Malartic", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.13348000", + "longitude": "-78.13283000" + }, + { + "id": "16647", + "name": "Maliotenam", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.21119000", + "longitude": "-66.18164000" + }, + { + "id": "16648", + "name": "Manawan", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.22029000", + "longitude": "-74.38606000" + }, + { + "id": "16649", + "name": "Mandeville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.36677000", + "longitude": "-73.34915000" + }, + { + "id": "16652", + "name": "Maniwaki", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.38341000", + "longitude": "-75.96605000" + }, + { + "id": "16659", + "name": "Maria", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.17490000", + "longitude": "-65.98595000" + }, + { + "id": "16660", + "name": "Marieville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.43338000", + "longitude": "-73.16585000" + }, + { + "id": "16665", + "name": "Mascouche", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.74965000", + "longitude": "-73.59956000" + }, + { + "id": "16666", + "name": "Maskinongé", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.22860000", + "longitude": "-73.01917000" + }, + { + "id": "16667", + "name": "Matagami", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.75018000", + "longitude": "-77.63277000" + }, + { + "id": "16668", + "name": "Matane", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.82857000", + "longitude": "-67.52197000" + }, + { + "id": "16670", + "name": "Mauricie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.55009000", + "longitude": "-73.41583000" + }, + { + "id": "16725", + "name": "Métabetchouan", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.36679000", + "longitude": "-72.01583000" + }, + { + "id": "16678", + "name": "Melocheville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.31726000", + "longitude": "-73.93710000" + }, + { + "id": "16680", + "name": "Mercier", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.31678000", + "longitude": "-73.74919000" + }, + { + "id": "16682", + "name": "Metabetchouan-Lac-a-la-Croix", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.41000000", + "longitude": "-71.78000000" + }, + { + "id": "16694", + "name": "Mirabel", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.65008000", + "longitude": "-74.08251000" + }, + { + "id": "16699", + "name": "Mistissini", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.41667000", + "longitude": "-73.88333000" + }, + { + "id": "16701", + "name": "Mont-Joli", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.58388000", + "longitude": "-68.19214000" + }, + { + "id": "16702", + "name": "Mont-Laurier", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.55011000", + "longitude": "-75.49930000" + }, + { + "id": "16703", + "name": "Mont-Royal", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.51675000", + "longitude": "-73.64918000" + }, + { + "id": "16704", + "name": "Mont-Saint-Grégoire", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.33338000", + "longitude": "-73.16585000" + }, + { + "id": "16705", + "name": "Mont-Saint-Hilaire", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.56515000", + "longitude": "-73.18680000" + }, + { + "id": "16706", + "name": "Mont-Tremblant", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.21274000", + "longitude": "-74.58438000" + }, + { + "id": "16708", + "name": "Montmagny", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.98043000", + "longitude": "-70.55493000" + }, + { + "id": "16709", + "name": "Montréal", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.50008000", + "longitude": "-73.68248000" + }, + { + "id": "16710", + "name": "Montréal-Est", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.63202000", + "longitude": "-73.50750000" + }, + { + "id": "16711", + "name": "Montréal-Ouest", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.45286000", + "longitude": "-73.64918000" + }, + { + "id": "16718", + "name": "Morin-Heights", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.90009000", + "longitude": "-74.24922000" + }, + { + "id": "16732", + "name": "Napierville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.18648000", + "longitude": "-73.40468000" + }, + { + "id": "16737", + "name": "Neuville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.69823000", + "longitude": "-71.58275000" + }, + { + "id": "16738", + "name": "New Carlisle", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.00956000", + "longitude": "-65.33621000" + }, + { + "id": "16743", + "name": "New-Richmond", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.16059000", + "longitude": "-65.85823000" + }, + { + "id": "16746", + "name": "Nicolet", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.21676000", + "longitude": "-72.61582000" + }, + { + "id": "16751", + "name": "Nord-du-Québec", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "51.96200000", + "longitude": "-74.89610000" + }, + { + "id": "16754", + "name": "Normandin", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.83328000", + "longitude": "-72.53209000" + }, + { + "id": "16764", + "name": "Notre-Dame-de-Grâce", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.47675000", + "longitude": "-73.61432000" + }, + { + "id": "16765", + "name": "Notre-Dame-de-l'Île-Perrot", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.36678000", + "longitude": "-73.93250000" + }, + { + "id": "16766", + "name": "Notre-Dame-des-Prairies", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.05007000", + "longitude": "-73.43245000" + }, + { + "id": "16767", + "name": "Notre-Dame-du-Lac", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.75012000", + "longitude": "-79.04961000" + }, + { + "id": "16768", + "name": "Notre-Dame-du-Mont-Carmel", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.01680000", + "longitude": "-75.08259000" + }, + { + "id": "16771", + "name": "Oka", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.46489000", + "longitude": "-74.08892000" + }, + { + "id": "16780", + "name": "Ormstown", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.13338000", + "longitude": "-73.99922000" + }, + { + "id": "16786", + "name": "Otterburn Park", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.53338000", + "longitude": "-73.21585000" + }, + { + "id": "16787", + "name": "Outaouais", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.26681000", + "longitude": "-76.31606000" + }, + { + "id": "16794", + "name": "Papineauville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.61680000", + "longitude": "-75.01599000" + }, + { + "id": "16795", + "name": "Parc-Boutin", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.29209000", + "longitude": "-73.26154000" + }, + { + "id": "16821", + "name": "Piedmont", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.90008000", + "longitude": "-74.13251000" + }, + { + "id": "16822", + "name": "Pierreville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.07034000", + "longitude": "-72.81125000" + }, + { + "id": "16825", + "name": "Pincourt", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.38338000", + "longitude": "-73.98250000" + }, + { + "id": "16829", + "name": "Plessisville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.21856000", + "longitude": "-71.76201000" + }, + { + "id": "16830", + "name": "Pohénégamook", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.46315000", + "longitude": "-69.22666000" + }, + { + "id": "16831", + "name": "Pointe-Calumet", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.50008000", + "longitude": "-73.96590000" + }, + { + "id": "16832", + "name": "Pointe-Claire", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.44868000", + "longitude": "-73.81669000" + }, + { + "id": "16833", + "name": "Pointe-du-Lac", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.50009000", + "longitude": "-71.78241000" + }, + { + "id": "16835", + "name": "Pont Rouge", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.88332000", + "longitude": "-72.08247000" + }, + { + "id": "16836", + "name": "Pont-Rouge", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.75468000", + "longitude": "-71.69566000" + }, + { + "id": "16847", + "name": "Port-Cartier", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.03339000", + "longitude": "-66.86545000" + }, + { + "id": "16849", + "name": "Portneuf", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.69058000", + "longitude": "-71.89011000" + }, + { + "id": "16862", + "name": "Prévost", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.86678000", + "longitude": "-74.08251000" + }, + { + "id": "16860", + "name": "Princeville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.17163000", + "longitude": "-71.87462000" + }, + { + "id": "16867", + "name": "Québec", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.81228000", + "longitude": "-71.21454000" + }, + { + "id": "16870", + "name": "Rawdon", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.05007000", + "longitude": "-73.71587000" + }, + { + "id": "16881", + "name": "Repentigny", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.74222000", + "longitude": "-73.45008000" + }, + { + "id": "16883", + "name": "Richelieu", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.44336000", + "longitude": "-73.24602000" + }, + { + "id": "16886", + "name": "Richmond", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.66677000", + "longitude": "-72.14910000" + }, + { + "id": "16891", + "name": "Rigaud", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.47927000", + "longitude": "-74.30238000" + }, + { + "id": "16893", + "name": "Rimouski", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.44879000", + "longitude": "-68.52396000" + }, + { + "id": "16896", + "name": "Rivière-du-Loup", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.82699000", + "longitude": "-69.54243000" + }, + { + "id": "16895", + "name": "Rivière-Rouge", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.41679000", + "longitude": "-74.86596000" + }, + { + "id": "16897", + "name": "Roberval", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.51680000", + "longitude": "-72.23244000" + }, + { + "id": "16899", + "name": "Rock Forest", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.35699000", + "longitude": "-71.99676000" + }, + { + "id": "16902", + "name": "Rosemère", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.63338000", + "longitude": "-73.79919000" + }, + { + "id": "16906", + "name": "Rougemont", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.43338000", + "longitude": "-73.04914000" + }, + { + "id": "16907", + "name": "Rouyn-Noranda", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.23656000", + "longitude": "-79.02311000" + }, + { + "id": "16911", + "name": "Sacré-Coeur", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.22970000", + "longitude": "-69.80061000" + }, + { + "id": "16912", + "name": "Saguenay", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.41675000", + "longitude": "-71.06573000" + }, + { + "id": "16915", + "name": "Saint-Adolphe-d'Howard", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.96679000", + "longitude": "-74.33253000" + }, + { + "id": "16916", + "name": "Saint-Alexandre", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.50010000", + "longitude": "-75.74935000" + }, + { + "id": "16917", + "name": "Saint-Amable", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.65008000", + "longitude": "-73.29916000" + }, + { + "id": "16918", + "name": "Saint-Ambroise", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.55009000", + "longitude": "-71.33238000" + }, + { + "id": "16919", + "name": "Saint-André-Avellin", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.71680000", + "longitude": "-75.06599000" + }, + { + "id": "16920", + "name": "Saint-Anselme", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.62922000", + "longitude": "-70.97340000" + }, + { + "id": "16922", + "name": "Saint-Antoine-de-Tilly", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.66346000", + "longitude": "-71.57335000" + }, + { + "id": "16923", + "name": "Saint-Augustin", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "51.22602000", + "longitude": "-58.65017000" + }, + { + "id": "16924", + "name": "Saint-Augustin-de-Desmaures", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.74064000", + "longitude": "-71.45131000" + }, + { + "id": "16992", + "name": "Saint-Édouard", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.23338000", + "longitude": "-73.51588000" + }, + { + "id": "16993", + "name": "Saint-Éphrem-de-Beauce", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.06677000", + "longitude": "-70.94905000" + }, + { + "id": "16925", + "name": "Saint-Barnabé-Sud", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.72977000", + "longitude": "-72.92244000" + }, + { + "id": "16926", + "name": "Saint-Basile-le-Grand", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.53338000", + "longitude": "-73.28246000" + }, + { + "id": "16927", + "name": "Saint-Boniface", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.50011000", + "longitude": "-75.98264000" + }, + { + "id": "16928", + "name": "Saint-Bruno", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.46679000", + "longitude": "-71.64910000" + }, + { + "id": "16929", + "name": "Saint-Bruno-de-Guigues", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.46685000", + "longitude": "-79.43296000" + }, + { + "id": "16930", + "name": "Saint-Bruno-de-Montarville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.53341000", + "longitude": "-73.34916000" + }, + { + "id": "16931", + "name": "Saint-Canut", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.71502000", + "longitude": "-74.08376000" + }, + { + "id": "16935", + "name": "Saint-Césaire", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.41678000", + "longitude": "-72.99914000" + }, + { + "id": "16936", + "name": "Saint-Côme--Linière", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.06677000", + "longitude": "-70.51573000" + }, + { + "id": "16932", + "name": "Saint-Charles", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.70288000", + "longitude": "-73.55417000" + }, + { + "id": "16933", + "name": "Saint-Constant", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.36678000", + "longitude": "-73.56588000" + }, + { + "id": "16934", + "name": "Saint-Cyrille-de-Wendover", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.93336000", + "longitude": "-72.43241000" + }, + { + "id": "16937", + "name": "Saint-Damase", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.53341000", + "longitude": "-72.99914000" + }, + { + "id": "16938", + "name": "Saint-Denis-sur-Richelieu", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.78338000", + "longitude": "-73.14915000" + }, + { + "id": "16939", + "name": "Saint-Donat-de-Montcalm", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.31868000", + "longitude": "-74.22171000" + }, + { + "id": "16940", + "name": "Saint-Elzéar", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.60338000", + "longitude": "-73.72698000" + }, + { + "id": "16941", + "name": "Saint-Eustache", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.56500000", + "longitude": "-73.90554000" + }, + { + "id": "16942", + "name": "Saint-Félicien", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.65007000", + "longitude": "-72.44906000" + }, + { + "id": "16943", + "name": "Saint-Félix-de-Valois", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.16977000", + "longitude": "-73.42525000" + }, + { + "id": "16944", + "name": "Saint-Gabriel", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.30007000", + "longitude": "-73.38245000" + }, + { + "id": "16947", + "name": "Saint-Gédéon", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.50009000", + "longitude": "-71.76581000" + }, + { + "id": "16945", + "name": "Saint-Georges", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.11353000", + "longitude": "-70.66526000" + }, + { + "id": "16946", + "name": "Saint-Germain-de-Grantham", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.83337000", + "longitude": "-72.56582000" + }, + { + "id": "16948", + "name": "Saint-Henri", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.69314000", + "longitude": "-71.06927000" + }, + { + "id": "16949", + "name": "Saint-Hippolyte", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.93338000", + "longitude": "-74.01590000" + }, + { + "id": "16950", + "name": "Saint-Honoré", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.53338000", + "longitude": "-71.08236000" + }, + { + "id": "16951", + "name": "Saint-Hyacinthe", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.63076000", + "longitude": "-72.95699000" + }, + { + "id": "16952", + "name": "Saint-Isidore", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.43345000", + "longitude": "-79.29965000" + }, + { + "id": "16953", + "name": "Saint-Jacques-le-Mineur", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.28338000", + "longitude": "-73.41587000" + }, + { + "id": "16960", + "name": "Saint-Jérôme", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.78036000", + "longitude": "-74.00365000" + }, + { + "id": "16954", + "name": "Saint-Jean-Baptiste", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.38060000", + "longitude": "-74.01210000" + }, + { + "id": "16955", + "name": "Saint-Jean-sur-Richelieu", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.30713000", + "longitude": "-73.26259000" + }, + { + "id": "16956", + "name": "Saint-Joseph", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.95817000", + "longitude": "-73.22025000" + }, + { + "id": "16957", + "name": "Saint-Joseph-de-Beauce", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.30000000", + "longitude": "-70.86667000" + }, + { + "id": "16958", + "name": "Saint-Joseph-de-Coleraine", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.96677000", + "longitude": "-71.36577000" + }, + { + "id": "16959", + "name": "Saint-Joseph-du-Lac", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.53338000", + "longitude": "-73.99920000" + }, + { + "id": "16961", + "name": "Saint-Lambert-de-Lauzon", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.58624000", + "longitude": "-71.20892000" + }, + { + "id": "16962", + "name": "Saint-Laurent", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.50008000", + "longitude": "-73.66585000" + }, + { + "id": "16963", + "name": "Saint-Lazare", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.40008000", + "longitude": "-74.13256000" + }, + { + "id": "16966", + "name": "Saint-Léonard", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.58773000", + "longitude": "-73.59501000" + }, + { + "id": "16968", + "name": "Saint-Léonard-d'Aston", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.10006000", + "longitude": "-72.36580000" + }, + { + "id": "16964", + "name": "Saint-Liboire", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.65068000", + "longitude": "-72.76348000" + }, + { + "id": "16965", + "name": "Saint-Lin-Laurentides", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.85008000", + "longitude": "-73.76588000" + }, + { + "id": "16969", + "name": "Saint-Marc-des-Carrières", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.68335000", + "longitude": "-72.04910000" + }, + { + "id": "16970", + "name": "Saint-Mathieu", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.31678000", + "longitude": "-73.51587000" + }, + { + "id": "16971", + "name": "Saint-Michel", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.56758000", + "longitude": "-73.62168000" + }, + { + "id": "16972", + "name": "Saint-Michel-des-Saints", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.67702000", + "longitude": "-73.91881000" + }, + { + "id": "16973", + "name": "Saint-Nazaire", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.58944000", + "longitude": "-71.55247000" + }, + { + "id": "16974", + "name": "Saint-Norbert", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.16949000", + "longitude": "-73.31494000" + }, + { + "id": "16975", + "name": "Saint-Pacôme", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.40457000", + "longitude": "-69.95025000" + }, + { + "id": "16976", + "name": "Saint-Pascal", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.51813000", + "longitude": "-69.80301000" + }, + { + "id": "16977", + "name": "Saint-Philippe-de-La Prairie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.35723000", + "longitude": "-73.47706000" + }, + { + "id": "16978", + "name": "Saint-Pie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.50277000", + "longitude": "-72.90890000" + }, + { + "id": "16979", + "name": "Saint-Pierre-les-Becquets", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.50005000", + "longitude": "-72.19910000" + }, + { + "id": "16980", + "name": "Saint-Prime", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.58339000", + "longitude": "-72.33244000" + }, + { + "id": "16981", + "name": "Saint-Raphaël", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.25011000", + "longitude": "-76.01605000" + }, + { + "id": "16982", + "name": "Saint-Raymond", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.46698000", + "longitude": "-73.60948000" + }, + { + "id": "16983", + "name": "Saint-Rémi", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.26678000", + "longitude": "-73.61588000" + }, + { + "id": "16984", + "name": "Saint-Rémi-de-Tingwick", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.86677000", + "longitude": "-71.81581000" + }, + { + "id": "16985", + "name": "Saint-Sauveur", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.88686000", + "longitude": "-74.17943000" + }, + { + "id": "16986", + "name": "Saint-Sauveur-des-Monts", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.90008000", + "longitude": "-74.16591000" + }, + { + "id": "16987", + "name": "Saint-Siméon", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.84431000", + "longitude": "-69.87837000" + }, + { + "id": "16988", + "name": "Saint-Thomas", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.01677000", + "longitude": "-73.34915000" + }, + { + "id": "16989", + "name": "Saint-Tite", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.73336000", + "longitude": "-72.56581000" + }, + { + "id": "16990", + "name": "Saint-Victor", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.61118000", + "longitude": "-73.51527000" + }, + { + "id": "16991", + "name": "Saint-Zotique", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.25009000", + "longitude": "-74.24924000" + }, + { + "id": "16994", + "name": "Sainte Catherine de la Jacques Cartier", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.85244000", + "longitude": "-71.62056000" + }, + { + "id": "16995", + "name": "Sainte-Adèle", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.95008000", + "longitude": "-74.13251000" + }, + { + "id": "16996", + "name": "Sainte-Agathe-des-Monts", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.05009000", + "longitude": "-74.28252000" + }, + { + "id": "16997", + "name": "Sainte-Anne-de-Bellevue", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.40618000", + "longitude": "-73.94560000" + }, + { + "id": "16998", + "name": "Sainte-Anne-des-Monts", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.12402000", + "longitude": "-66.49243000" + }, + { + "id": "16999", + "name": "Sainte-Anne-des-Plaines", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.76468000", + "longitude": "-73.81156000" + }, + { + "id": "17012", + "name": "Sainte-Élisabeth", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.09502000", + "longitude": "-73.35176000" + }, + { + "id": "17000", + "name": "Sainte-Béatrix", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.20007000", + "longitude": "-73.61587000" + }, + { + "id": "17001", + "name": "Sainte-Catherine", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.40008000", + "longitude": "-73.58248000" + }, + { + "id": "17002", + "name": "Sainte-Croix", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.13368000", + "longitude": "-72.80083000" + }, + { + "id": "17003", + "name": "Sainte-Julie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.58338000", + "longitude": "-73.33246000" + }, + { + "id": "17004", + "name": "Sainte-Julienne", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.96677000", + "longitude": "-73.71587000" + }, + { + "id": "17005", + "name": "Sainte-Madeleine", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.60008000", + "longitude": "-73.09914000" + }, + { + "id": "17006", + "name": "Sainte-Marie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.43401000", + "longitude": "-71.01168000" + }, + { + "id": "17007", + "name": "Sainte-Marthe-sur-le-Lac", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.53338000", + "longitude": "-73.93250000" + }, + { + "id": "17008", + "name": "Sainte-Martine", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.25008000", + "longitude": "-73.79919000" + }, + { + "id": "17009", + "name": "Sainte-Sophie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.81678000", + "longitude": "-73.89919000" + }, + { + "id": "17010", + "name": "Sainte-Thècle", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.81676000", + "longitude": "-72.49911000" + }, + { + "id": "17011", + "name": "Sainte-Thérèse", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.63922000", + "longitude": "-73.82757000" + }, + { + "id": "17013", + "name": "Salaberry-de-Valleyfield", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.25008000", + "longitude": "-74.13253000" + }, + { + "id": "17015", + "name": "Salluit", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "62.20411000", + "longitude": "-75.64344000" + }, + { + "id": "17027", + "name": "Senneterre", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.39302000", + "longitude": "-77.23951000" + }, + { + "id": "17028", + "name": "Sept-Îles", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "50.20011000", + "longitude": "-66.38208000" + }, + { + "id": "17030", + "name": "Shannon", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.88026000", + "longitude": "-71.51464000" + }, + { + "id": "17032", + "name": "Shawinigan", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.56675000", + "longitude": "-72.74913000" + }, + { + "id": "17033", + "name": "Shawville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.60011000", + "longitude": "-76.48270000" + }, + { + "id": "17039", + "name": "Sherbrooke", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.40008000", + "longitude": "-71.89908000" + }, + { + "id": "17054", + "name": "Sorel-Tracy", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.04178000", + "longitude": "-73.11358000" + }, + { + "id": "17066", + "name": "St-Jean-Port-Joli", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.21418000", + "longitude": "-70.26969000" + }, + { + "id": "17091", + "name": "Sutton", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.10008000", + "longitude": "-72.61582000" + }, + { + "id": "17132", + "name": "Témiscaming", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.72122000", + "longitude": "-79.09712000" + }, + { + "id": "17103", + "name": "Terrasse-des-Pins", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.86449000", + "longitude": "-74.06627000" + }, + { + "id": "17104", + "name": "Terrebonne", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.70004000", + "longitude": "-73.64732000" + }, + { + "id": "17107", + "name": "Thetford-Mines", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.09371000", + "longitude": "-71.30539000" + }, + { + "id": "17113", + "name": "Thurso", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.60010000", + "longitude": "-75.24931000" + }, + { + "id": "17126", + "name": "Trois-Rivières", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.34515000", + "longitude": "-72.54770000" + }, + { + "id": "17139", + "name": "Val-d'Or", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "48.09740000", + "longitude": "-77.79737000" + }, + { + "id": "17137", + "name": "Val-David", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.03338000", + "longitude": "-74.21592000" + }, + { + "id": "17140", + "name": "Val-des-Monts", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.65010000", + "longitude": "-75.66604000" + }, + { + "id": "17138", + "name": "Val-Morin", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.00008000", + "longitude": "-74.18251000" + }, + { + "id": "17141", + "name": "Valcourt", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.50008000", + "longitude": "-72.31581000" + }, + { + "id": "17144", + "name": "Vallée-Jonction", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.37441000", + "longitude": "-70.91881000" + }, + { + "id": "17148", + "name": "Varennes", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.68338000", + "longitude": "-73.43246000" + }, + { + "id": "17149", + "name": "Vaudreuil-Dorion", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.40008000", + "longitude": "-74.03251000" + }, + { + "id": "17152", + "name": "Venise-en-Québec", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.08338000", + "longitude": "-73.13245000" + }, + { + "id": "17153", + "name": "Verchères", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.78338000", + "longitude": "-73.34916000" + }, + { + "id": "17157", + "name": "Victoriaville", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.05007000", + "longitude": "-71.96579000" + }, + { + "id": "17159", + "name": "Ville-Marie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.33345000", + "longitude": "-79.43297000" + }, + { + "id": "17167", + "name": "Wakefield", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.66680000", + "longitude": "-75.83265000" + }, + { + "id": "17171", + "name": "Warwick", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.95007000", + "longitude": "-71.98240000" + }, + { + "id": "17173", + "name": "Waskaganish", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "51.48333000", + "longitude": "-78.75000000" + }, + { + "id": "17174", + "name": "Waswanipi", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "49.73346000", + "longitude": "-76.16604000" + }, + { + "id": "17177", + "name": "Waterloo", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.35008000", + "longitude": "-72.51582000" + }, + { + "id": "17182", + "name": "Weedon Centre", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.70802000", + "longitude": "-71.45986000" + }, + { + "id": "17196", + "name": "Westmount", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.48341000", + "longitude": "-73.59918000" + }, + { + "id": "17199", + "name": "Weymontachie", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "47.89940000", + "longitude": "-73.77720000" + }, + { + "id": "17210", + "name": "Windsor", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "45.56678000", + "longitude": "-71.99909000" + }, + { + "id": "17219", + "name": "Yamachiche", + "state_id": 873, + "state_code": "QC", + "country_id": 39, + "country_code": "CA", + "latitude": "46.26676000", + "longitude": "-72.83243000" + }, + { + "id": "16177", + "name": "Assiniboia", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "49.63336000", + "longitude": "-105.98446000" + }, + { + "id": "16217", + "name": "Biggar", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.06680000", + "longitude": "-108.00135000" + }, + { + "id": "16268", + "name": "Canora", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.63328000", + "longitude": "-102.43425000" + }, + { + "id": "16282", + "name": "Carlyle", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "49.63334000", + "longitude": "-102.26765000" + }, + { + "id": "16353", + "name": "Dalmeny", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.33339000", + "longitude": "-106.76792000" + }, + { + "id": "16410", + "name": "Esterhazy", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.65001000", + "longitude": "-102.08426000" + }, + { + "id": "16411", + "name": "Estevan", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "49.13337000", + "longitude": "-102.98422000" + }, + { + "id": "16424", + "name": "Foam Lake", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.65001000", + "longitude": "-103.53431000" + }, + { + "id": "16469", + "name": "Gravelbourg", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "49.88336000", + "longitude": "-106.55122000" + }, + { + "id": "16512", + "name": "Hudson Bay", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.85003000", + "longitude": "-102.38425000" + }, + { + "id": "16513", + "name": "Humboldt", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.20005000", + "longitude": "-105.12550000" + }, + { + "id": "16519", + "name": "Indian Head", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.53336000", + "longitude": "-103.66775000" + }, + { + "id": "16532", + "name": "Kamsack", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.56668000", + "longitude": "-101.90093000" + }, + { + "id": "16540", + "name": "Kerrobert", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.91682000", + "longitude": "-109.13479000" + }, + { + "id": "16547", + "name": "Kindersley", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.46681000", + "longitude": "-109.16818000" + }, + { + "id": "16570", + "name": "La Ronge", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "55.10013000", + "longitude": "-105.28422000" + }, + { + "id": "16594", + "name": "Langenburg", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.84999000", + "longitude": "-101.71763000" + }, + { + "id": "16596", + "name": "Langham", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.36680000", + "longitude": "-106.96793000" + }, + { + "id": "16598", + "name": "Lanigan", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.85006000", + "longitude": "-105.03443000" + }, + { + "id": "16636", + "name": "Lumsden", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.65009000", + "longitude": "-104.86783000" + }, + { + "id": "16642", + "name": "Macklin", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.33344000", + "longitude": "-109.93484000" + }, + { + "id": "16655", + "name": "Maple Creek", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "49.91678000", + "longitude": "-109.48481000" + }, + { + "id": "16663", + "name": "Martensville", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.28339000", + "longitude": "-106.66792000" + }, + { + "id": "16673", + "name": "Meadow Lake", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "54.13348000", + "longitude": "-108.43471000" + }, + { + "id": "16676", + "name": "Melfort", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.86673000", + "longitude": "-104.61768000" + }, + { + "id": "16679", + "name": "Melville", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.91671000", + "longitude": "-102.80099000" + }, + { + "id": "16713", + "name": "Moose Jaw", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.40005000", + "longitude": "-105.53445000" + }, + { + "id": "16715", + "name": "Moosomin", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.13332000", + "longitude": "-101.66766000" + }, + { + "id": "16747", + "name": "Nipawin", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "53.36678000", + "longitude": "-104.00092000" + }, + { + "id": "16755", + "name": "North Battleford", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.77972000", + "longitude": "-108.29670000" + }, + { + "id": "16788", + "name": "Outlook", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.50008000", + "longitude": "-107.05128000" + }, + { + "id": "16790", + "name": "Oxbow", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "49.23335000", + "longitude": "-102.16760000" + }, + { + "id": "16807", + "name": "Pelican Narrows", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "55.16685000", + "longitude": "-102.93410000" + }, + { + "id": "16823", + "name": "Pilot Butte", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.46678000", + "longitude": "-104.41778000" + }, + { + "id": "16852", + "name": "Preeceville", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.94998000", + "longitude": "-102.66766000" + }, + { + "id": "16854", + "name": "Prince Albert", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "53.20008000", + "longitude": "-105.76772000" + }, + { + "id": "16875", + "name": "Regina", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.45008000", + "longitude": "-104.61780000" + }, + { + "id": "16876", + "name": "Regina Beach", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.78338000", + "longitude": "-105.00112000" + }, + { + "id": "16903", + "name": "Rosetown", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.55010000", + "longitude": "-108.00136000" + }, + { + "id": "16905", + "name": "Rosthern", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.66679000", + "longitude": "-106.33446000" + }, + { + "id": "17021", + "name": "Saskatoon", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.13238000", + "longitude": "-106.66892000" + }, + { + "id": "17031", + "name": "Shaunavon", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "49.65005000", + "longitude": "-108.41810000" + }, + { + "id": "17038", + "name": "Shellbrook", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "53.21679000", + "longitude": "-106.40109000" + }, + { + "id": "17094", + "name": "Swift Current", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.28337000", + "longitude": "-107.80135000" + }, + { + "id": "17116", + "name": "Tisdale", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.85002000", + "longitude": "-104.05096000" + }, + { + "id": "17134", + "name": "Unity", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.45014000", + "longitude": "-109.16816000" + }, + { + "id": "17165", + "name": "Wadena", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.94999000", + "longitude": "-103.80102000" + }, + { + "id": "17170", + "name": "Warman", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.31679000", + "longitude": "-106.56791000" + }, + { + "id": "17179", + "name": "Watrous", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.66677000", + "longitude": "-105.46788000" + }, + { + "id": "17198", + "name": "Weyburn", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "49.66675000", + "longitude": "-103.85109000" + }, + { + "id": "17201", + "name": "White City", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "50.43338000", + "longitude": "-104.36778000" + }, + { + "id": "17206", + "name": "Wilkie", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "52.41683000", + "longitude": "-108.70142000" + }, + { + "id": "17218", + "name": "Wynyard", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.76674000", + "longitude": "-104.18436000" + }, + { + "id": "17223", + "name": "Yorkton", + "state_id": 870, + "state_code": "SK", + "country_id": 39, + "country_code": "CA", + "latitude": "51.21670000", + "longitude": "-102.46766000" + }, + { + "id": "16358", + "name": "Dawson City", + "state_id": 869, + "state_code": "YT", + "country_id": 39, + "country_code": "CA", + "latitude": "64.06013000", + "longitude": "-139.43328000" + }, + { + "id": "16479", + "name": "Haines Junction", + "state_id": 869, + "state_code": "YT", + "country_id": 39, + "country_code": "CA", + "latitude": "60.75216000", + "longitude": "-137.51082000" + }, + { + "id": "17180", + "name": "Watson Lake", + "state_id": 869, + "state_code": "YT", + "country_id": 39, + "country_code": "CA", + "latitude": "60.06349000", + "longitude": "-128.70893000" + }, + { + "id": "17204", + "name": "Whitehorse", + "state_id": 869, + "state_code": "YT", + "country_id": 39, + "country_code": "CA", + "latitude": "60.71611000", + "longitude": "-135.05375000" + }, + { + "id": "22003", + "name": "Sal Rei", + "state_id": 2999, + "state_code": "BV", + "country_id": 40, + "country_code": "CV", + "latitude": "16.17611000", + "longitude": "-22.91722000" + }, + { + "id": "21995", + "name": "Nova Sintra", + "state_id": 2996, + "state_code": "BR", + "country_id": 40, + "country_code": "CV", + "latitude": "14.87139000", + "longitude": "-24.69556000" + }, + { + "id": "22010", + "name": "Vila do Maio", + "state_id": 2991, + "state_code": "MA", + "country_id": 40, + "country_code": "CV", + "latitude": "15.13823000", + "longitude": "-23.21158000" + }, + { + "id": "21992", + "name": "Igreja", + "state_id": 2987, + "state_code": "MO", + "country_id": 40, + "country_code": "CV", + "latitude": "15.03389000", + "longitude": "-24.32500000" + }, + { + "id": "21997", + "name": "Pombas", + "state_id": 2997, + "state_code": "PA", + "country_id": 40, + "country_code": "CV", + "latitude": "17.15026000", + "longitude": "-25.02007000" + }, + { + "id": "21999", + "name": "Porto Novo", + "state_id": 2989, + "state_code": "PN", + "country_id": 40, + "country_code": "CV", + "latitude": "17.01969000", + "longitude": "-25.06471000" + }, + { + "id": "22000", + "name": "Praia", + "state_id": 2988, + "state_code": "PR", + "country_id": 40, + "country_code": "CV", + "latitude": "14.93152000", + "longitude": "-23.51254000" + }, + { + "id": "22001", + "name": "Ribeira Brava", + "state_id": 2982, + "state_code": "RB", + "country_id": 40, + "country_code": "CV", + "latitude": "16.61583000", + "longitude": "-24.29833000" + }, + { + "id": "21998", + "name": "Ponta do Sol", + "state_id": 3002, + "state_code": "RG", + "country_id": 40, + "country_code": "CV", + "latitude": "17.20171000", + "longitude": "-25.09217000" + }, + { + "id": "22002", + "name": "Ribeira Grande", + "state_id": 3002, + "state_code": "RG", + "country_id": 40, + "country_code": "CV", + "latitude": "17.18250000", + "longitude": "-25.06500000" + }, + { + "id": "21989", + "name": "Cidade Velha", + "state_id": 2984, + "state_code": "RS", + "country_id": 40, + "country_code": "CV", + "latitude": "14.91531000", + "longitude": "-23.60527000" + }, + { + "id": "21991", + "name": "Espargos", + "state_id": 2998, + "state_code": "SL", + "country_id": 40, + "country_code": "CV", + "latitude": "16.75524000", + "longitude": "-22.94460000" + }, + { + "id": "22005", + "name": "Santa Maria", + "state_id": 2998, + "state_code": "SL", + "country_id": 40, + "country_code": "CV", + "latitude": "16.59796000", + "longitude": "-22.90509000" + }, + { + "id": "21987", + "name": "Assomada", + "state_id": 2985, + "state_code": "CA", + "country_id": 40, + "country_code": "CV", + "latitude": "15.10000000", + "longitude": "-23.68333000" + }, + { + "id": "21990", + "name": "Cova Figueira", + "state_id": 2995, + "state_code": "CF", + "country_id": 40, + "country_code": "CV", + "latitude": "14.89054000", + "longitude": "-24.29343000" + }, + { + "id": "21996", + "name": "Pedra Badejo", + "state_id": 3004, + "state_code": "CR", + "country_id": 40, + "country_code": "CV", + "latitude": "15.13750000", + "longitude": "-23.53083000" + }, + { + "id": "22004", + "name": "Santa Cruz", + "state_id": 3004, + "state_code": "CR", + "country_id": 40, + "country_code": "CV", + "latitude": "15.13333000", + "longitude": "-23.56667000" + }, + { + "id": "22006", + "name": "São Domingos", + "state_id": 2986, + "state_code": "SD", + "country_id": 40, + "country_code": "CV", + "latitude": "15.02438000", + "longitude": "-23.56250000" + }, + { + "id": "22007", + "name": "São Filipe", + "state_id": 3000, + "state_code": "SF", + "country_id": 40, + "country_code": "CV", + "latitude": "14.89610000", + "longitude": "-24.49556000" + }, + { + "id": "21993", + "name": "João Teves", + "state_id": 2993, + "state_code": "SO", + "country_id": 40, + "country_code": "CV", + "latitude": "15.06694000", + "longitude": "-23.58917000" + }, + { + "id": "21988", + "name": "Calheta", + "state_id": 2990, + "state_code": "SM", + "country_id": 40, + "country_code": "CV", + "latitude": "15.18613000", + "longitude": "-23.59228000" + }, + { + "id": "21994", + "name": "Mindelo", + "state_id": 3001, + "state_code": "SV", + "country_id": 40, + "country_code": "CV", + "latitude": "16.89014000", + "longitude": "-24.98042000" + }, + { + "id": "22008", + "name": "Tarrafal", + "state_id": 2983, + "state_code": "TA", + "country_id": 40, + "country_code": "CV", + "latitude": "15.27881000", + "longitude": "-23.75192000" + }, + { + "id": "22009", + "name": "Tarrafal de São Nicolau", + "state_id": 3003, + "state_code": "TS", + "country_id": 40, + "country_code": "CV", + "latitude": "16.56622000", + "longitude": "-24.35793000" + }, + { + "id": "17296", + "name": "Bamingui", + "state_id": 1259, + "state_code": "BB", + "country_id": 42, + "country_code": "CF", + "latitude": "7.88897000", + "longitude": "20.04875000" + }, + { + "id": "17329", + "name": "Ndélé", + "state_id": 1259, + "state_code": "BB", + "country_id": 42, + "country_code": "CF", + "latitude": "8.74287000", + "longitude": "20.89108000" + }, + { + "id": "17298", + "name": "Bangui", + "state_id": 1262, + "state_code": "BGF", + "country_id": 42, + "country_code": "CF", + "latitude": "4.36122000", + "longitude": "18.55496000" + }, + { + "id": "17294", + "name": "Alindao", + "state_id": 1264, + "state_code": "BK", + "country_id": 42, + "country_code": "CF", + "latitude": "5.02667000", + "longitude": "21.20876000" + }, + { + "id": "17323", + "name": "Kembé", + "state_id": 1264, + "state_code": "BK", + "country_id": 42, + "country_code": "CF", + "latitude": "4.62275000", + "longitude": "21.88645000" + }, + { + "id": "17327", + "name": "Mobaye", + "state_id": 1264, + "state_code": "BK", + "country_id": 42, + "country_code": "CF", + "latitude": "4.31902000", + "longitude": "21.17861000" + }, + { + "id": "17331", + "name": "Obo", + "state_id": 1258, + "state_code": "HM", + "country_id": 42, + "country_code": "CF", + "latitude": "5.39586000", + "longitude": "26.49211000" + }, + { + "id": "17338", + "name": "Zemio", + "state_id": 1258, + "state_code": "HM", + "country_id": 42, + "country_code": "CF", + "latitude": "5.03144000", + "longitude": "25.13614000" + }, + { + "id": "17313", + "name": "Bria", + "state_id": 1268, + "state_code": "HK", + "country_id": 42, + "country_code": "CF", + "latitude": "6.54233000", + "longitude": "21.98633000" + }, + { + "id": "17332", + "name": "Ouadda", + "state_id": 1268, + "state_code": "HK", + "country_id": 42, + "country_code": "CF", + "latitude": "8.07771000", + "longitude": "22.40075000" + }, + { + "id": "17337", + "name": "Sibut", + "state_id": 1263, + "state_code": "KG", + "country_id": 42, + "country_code": "CF", + "latitude": "5.71801000", + "longitude": "19.07389000" + }, + { + "id": "17307", + "name": "Boda", + "state_id": 1256, + "state_code": "LB", + "country_id": 42, + "country_code": "CF", + "latitude": "4.31887000", + "longitude": "17.46953000" + }, + { + "id": "17308", + "name": "Boganangone", + "state_id": 1256, + "state_code": "LB", + "country_id": 42, + "country_code": "CF", + "latitude": "4.73558000", + "longitude": "17.14047000" + }, + { + "id": "17326", + "name": "Mbaïki", + "state_id": 1256, + "state_code": "LB", + "country_id": 42, + "country_code": "CF", + "latitude": "3.86781000", + "longitude": "17.98923000" + }, + { + "id": "17325", + "name": "Mbaiki", + "state_id": 1256, + "state_code": "LB", + "country_id": 42, + "country_code": "CF", + "latitude": "3.97145000", + "longitude": "17.93352000" + }, + { + "id": "17328", + "name": "Mongoumba", + "state_id": 1256, + "state_code": "LB", + "country_id": 42, + "country_code": "CF", + "latitude": "3.64153000", + "longitude": "18.59364000" + }, + { + "id": "17302", + "name": "Berbérati", + "state_id": 1257, + "state_code": "HS", + "country_id": 42, + "country_code": "CF", + "latitude": "4.26116000", + "longitude": "15.79216000" + }, + { + "id": "17301", + "name": "Berberati", + "state_id": 1257, + "state_code": "HS", + "country_id": 42, + "country_code": "CF", + "latitude": "4.31211000", + "longitude": "15.88948000" + }, + { + "id": "17314", + "name": "Carnot", + "state_id": 1257, + "state_code": "HS", + "country_id": 42, + "country_code": "CF", + "latitude": "4.94273000", + "longitude": "15.87735000" + }, + { + "id": "17317", + "name": "Gamboula", + "state_id": 1257, + "state_code": "HS", + "country_id": 42, + "country_code": "CF", + "latitude": "4.11775000", + "longitude": "15.13926000" + }, + { + "id": "17297", + "name": "Bangassou", + "state_id": 1266, + "state_code": "MB", + "country_id": 42, + "country_code": "CF", + "latitude": "4.74132000", + "longitude": "22.81838000" + }, + { + "id": "17316", + "name": "Gambo", + "state_id": 1266, + "state_code": "MB", + "country_id": 42, + "country_code": "CF", + "latitude": "4.64816000", + "longitude": "22.26331000" + }, + { + "id": "17334", + "name": "Ouango", + "state_id": 1266, + "state_code": "MB", + "country_id": 42, + "country_code": "CF", + "latitude": "4.31325000", + "longitude": "22.55524000" + }, + { + "id": "17336", + "name": "Rafai", + "state_id": 1266, + "state_code": "MB", + "country_id": 42, + "country_code": "CF", + "latitude": "5.81012000", + "longitude": "24.20305000" + }, + { + "id": "17321", + "name": "Kaga Bandoro", + "state_id": 1253, + "state_code": "KB", + "country_id": 42, + "country_code": "CF", + "latitude": "6.98961000", + "longitude": "19.18744000" + }, + { + "id": "17322", + "name": "Kaga-Bandoro", + "state_id": 1253, + "state_code": "KB", + "country_id": 42, + "country_code": "CF", + "latitude": "7.23774000", + "longitude": "19.21819000" + }, + { + "id": "17299", + "name": "Baoro", + "state_id": 1260, + "state_code": "NM", + "country_id": 42, + "country_code": "CF", + "latitude": "5.66667000", + "longitude": "15.96667000" + }, + { + "id": "17310", + "name": "Bouar", + "state_id": 1260, + "state_code": "NM", + "country_id": 42, + "country_code": "CF", + "latitude": "5.93404000", + "longitude": "15.59599000" + }, + { + "id": "17303", + "name": "Bimbo", + "state_id": 1255, + "state_code": "MP", + "country_id": 42, + "country_code": "CF", + "latitude": "4.25671000", + "longitude": "18.41583000" + }, + { + "id": "17305", + "name": "Boali", + "state_id": 1255, + "state_code": "MP", + "country_id": 42, + "country_code": "CF", + "latitude": "4.80048000", + "longitude": "18.12747000" + }, + { + "id": "17315", + "name": "Damara", + "state_id": 1255, + "state_code": "MP", + "country_id": 42, + "country_code": "CF", + "latitude": "4.96075000", + "longitude": "18.70350000" + }, + { + "id": "17295", + "name": "Bambari", + "state_id": 1265, + "state_code": "UK", + "country_id": 42, + "country_code": "CF", + "latitude": "5.76795000", + "longitude": "20.67565000" + }, + { + "id": "17318", + "name": "Grimari", + "state_id": 1265, + "state_code": "UK", + "country_id": 42, + "country_code": "CF", + "latitude": "5.73549000", + "longitude": "19.91209000" + }, + { + "id": "17319", + "name": "Ippy", + "state_id": 1265, + "state_code": "UK", + "country_id": 42, + "country_code": "CF", + "latitude": "6.26793000", + "longitude": "21.22468000" + }, + { + "id": "17324", + "name": "Kouango", + "state_id": 1265, + "state_code": "UK", + "country_id": 42, + "country_code": "CF", + "latitude": "4.99337000", + "longitude": "19.96186000" + }, + { + "id": "17300", + "name": "Batangafo", + "state_id": 1254, + "state_code": "AC", + "country_id": 42, + "country_code": "CF", + "latitude": "7.30082000", + "longitude": "18.28330000" + }, + { + "id": "17309", + "name": "Bossangoa", + "state_id": 1254, + "state_code": "AC", + "country_id": 42, + "country_code": "CF", + "latitude": "6.49263000", + "longitude": "17.45518000" + }, + { + "id": "17311", + "name": "Bouca", + "state_id": 1254, + "state_code": "AC", + "country_id": 42, + "country_code": "CF", + "latitude": "6.50734000", + "longitude": "18.27670000" + }, + { + "id": "17320", + "name": "Kabo", + "state_id": 1254, + "state_code": "AC", + "country_id": 42, + "country_code": "CF", + "latitude": "7.69937000", + "longitude": "18.62903000" + }, + { + "id": "17306", + "name": "Bocaranga", + "state_id": 1267, + "state_code": "OP", + "country_id": 42, + "country_code": "CF", + "latitude": "6.76546000", + "longitude": "15.77873000" + }, + { + "id": "17312", + "name": "Bozoum", + "state_id": 1267, + "state_code": "OP", + "country_id": 42, + "country_code": "CF", + "latitude": "6.31933000", + "longitude": "16.37992000" + }, + { + "id": "17335", + "name": "Paoua", + "state_id": 1267, + "state_code": "OP", + "country_id": 42, + "country_code": "CF", + "latitude": "7.24269000", + "longitude": "16.44059000" + }, + { + "id": "17330", + "name": "Nola", + "state_id": 1252, + "state_code": "SE", + "country_id": 42, + "country_code": "CF", + "latitude": "3.52494000", + "longitude": "16.04583000" + }, + { + "id": "17304", + "name": "Birao", + "state_id": 1261, + "state_code": "VK", + "country_id": 42, + "country_code": "CF", + "latitude": "10.28488000", + "longitude": "22.78818000" + }, + { + "id": "17333", + "name": "Ouanda-Djallé", + "state_id": 1261, + "state_code": "VK", + "country_id": 42, + "country_code": "CF", + "latitude": "9.05877000", + "longitude": "22.42741000" + }, + { + "id": "105152", + "name": "Moussoro", + "state_id": 3583, + "state_code": "BG", + "country_id": 43, + "country_code": "TD", + "latitude": "13.64143000", + "longitude": "16.48941000" + }, + { + "id": "105120", + "name": "Ati", + "state_id": 3590, + "state_code": "BA", + "country_id": 43, + "country_code": "TD", + "latitude": "13.21540000", + "longitude": "18.33530000" + }, + { + "id": "105154", + "name": "Oum Hadjer", + "state_id": 3590, + "state_code": "BA", + "country_id": 43, + "country_code": "TD", + "latitude": "13.29540000", + "longitude": "19.69660000" + }, + { + "id": "105133", + "name": "Faya-Largeau", + "state_id": 3574, + "state_code": "BO", + "country_id": 43, + "country_code": "TD", + "latitude": "17.92570000", + "longitude": "19.10428000" + }, + { + "id": "105132", + "name": "Fada", + "state_id": 3584, + "state_code": "EO", + "country_id": 43, + "country_code": "TD", + "latitude": "17.18535000", + "longitude": "21.58114000" + }, + { + "id": "105124", + "name": "Bitkine", + "state_id": 3576, + "state_code": "GR", + "country_id": 43, + "country_code": "TD", + "latitude": "11.98010000", + "longitude": "18.21380000" + }, + { + "id": "105149", + "name": "Melfi", + "state_id": 3576, + "state_code": "GR", + "country_id": 43, + "country_code": "TD", + "latitude": "11.05980000", + "longitude": "17.93550000" + }, + { + "id": "105150", + "name": "Mongo", + "state_id": 3576, + "state_code": "GR", + "country_id": 43, + "country_code": "TD", + "latitude": "12.18441000", + "longitude": "18.69303000" + }, + { + "id": "105125", + "name": "Bokoro", + "state_id": 3573, + "state_code": "HL", + "country_id": 43, + "country_code": "TD", + "latitude": "12.37813000", + "longitude": "17.05876000" + }, + { + "id": "105146", + "name": "Massaguet", + "state_id": 3573, + "state_code": "HL", + "country_id": 43, + "country_code": "TD", + "latitude": "12.47554000", + "longitude": "15.43647000" + }, + { + "id": "105147", + "name": "Massakory", + "state_id": 3573, + "state_code": "HL", + "country_id": 43, + "country_code": "TD", + "latitude": "12.99600000", + "longitude": "15.72927000" + }, + { + "id": "105145", + "name": "Mao", + "state_id": 3588, + "state_code": "KA", + "country_id": 43, + "country_code": "TD", + "latitude": "14.12116000", + "longitude": "15.31030000" + }, + { + "id": "105126", + "name": "Bol", + "state_id": 3577, + "state_code": "LC", + "country_id": 43, + "country_code": "TD", + "latitude": "13.46706000", + "longitude": "14.71363000" + }, + { + "id": "105122", + "name": "Beïnamar", + "state_id": 3585, + "state_code": "LO", + "country_id": 43, + "country_code": "TD", + "latitude": "8.66980000", + "longitude": "15.38130000" + }, + { + "id": "105121", + "name": "Benoy", + "state_id": 3585, + "state_code": "LO", + "country_id": 43, + "country_code": "TD", + "latitude": "8.98327000", + "longitude": "16.31991000" + }, + { + "id": "105143", + "name": "Lac Wey", + "state_id": 3585, + "state_code": "LO", + "country_id": 43, + "country_code": "TD", + "latitude": "8.70502000", + "longitude": "15.98303000" + }, + { + "id": "105151", + "name": "Moundou", + "state_id": 3585, + "state_code": "LO", + "country_id": 43, + "country_code": "TD", + "latitude": "8.56667000", + "longitude": "16.08333000" + }, + { + "id": "105129", + "name": "Bébédja", + "state_id": 3591, + "state_code": "LR", + "country_id": 43, + "country_code": "TD", + "latitude": "8.67610000", + "longitude": "16.56600000" + }, + { + "id": "105128", + "name": "Béboto", + "state_id": 3591, + "state_code": "LR", + "country_id": 43, + "country_code": "TD", + "latitude": "8.26681000", + "longitude": "16.93898000" + }, + { + "id": "105131", + "name": "Doba", + "state_id": 3591, + "state_code": "LR", + "country_id": 43, + "country_code": "TD", + "latitude": "8.65000000", + "longitude": "16.85000000" + }, + { + "id": "105134", + "name": "Goundi", + "state_id": 3589, + "state_code": "MA", + "country_id": 43, + "country_code": "TD", + "latitude": "9.36267000", + "longitude": "17.36597000" + }, + { + "id": "105141", + "name": "Koumra", + "state_id": 3589, + "state_code": "MA", + "country_id": 43, + "country_code": "TD", + "latitude": "8.91256000", + "longitude": "17.55392000" + }, + { + "id": "105153", + "name": "Moïssala", + "state_id": 3589, + "state_code": "MA", + "country_id": 43, + "country_code": "TD", + "latitude": "8.34040000", + "longitude": "17.76630000" + }, + { + "id": "105127", + "name": "Bongor", + "state_id": 3580, + "state_code": "ME", + "country_id": 43, + "country_code": "TD", + "latitude": "10.28056000", + "longitude": "15.37222000" + }, + { + "id": "105135", + "name": "Gounou Gaya", + "state_id": 3580, + "state_code": "ME", + "country_id": 43, + "country_code": "TD", + "latitude": "9.62940000", + "longitude": "15.51320000" + }, + { + "id": "105138", + "name": "Guelendeng", + "state_id": 3580, + "state_code": "ME", + "country_id": 43, + "country_code": "TD", + "latitude": "10.91762000", + "longitude": "15.55011000" + }, + { + "id": "105148", + "name": "Mboursou Léré", + "state_id": 3571, + "state_code": "MO", + "country_id": 43, + "country_code": "TD", + "latitude": "9.76390000", + "longitude": "14.15390000" + }, + { + "id": "105155", + "name": "Pala", + "state_id": 3571, + "state_code": "MO", + "country_id": 43, + "country_code": "TD", + "latitude": "9.36420000", + "longitude": "14.90460000" + }, + { + "id": "105142", + "name": "Kyabé", + "state_id": 3570, + "state_code": "MC", + "country_id": 43, + "country_code": "TD", + "latitude": "9.45149000", + "longitude": "18.94493000" + }, + { + "id": "105156", + "name": "Sarh", + "state_id": 3570, + "state_code": "MC", + "country_id": 43, + "country_code": "TD", + "latitude": "9.14290000", + "longitude": "18.39230000" + }, + { + "id": "105116", + "name": "Abéché", + "state_id": 3582, + "state_code": "OD", + "country_id": 43, + "country_code": "TD", + "latitude": "13.82916000", + "longitude": "20.83240000" + }, + { + "id": "105117", + "name": "Adré", + "state_id": 3582, + "state_code": "OD", + "country_id": 43, + "country_code": "TD", + "latitude": "13.46648000", + "longitude": "22.19875000" + }, + { + "id": "105137", + "name": "Goz Béïda", + "state_id": 3582, + "state_code": "OD", + "country_id": 43, + "country_code": "TD", + "latitude": "13.94563000", + "longitude": "20.54680000" + }, + { + "id": "105118", + "name": "Am Timan", + "state_id": 3592, + "state_code": "SA", + "country_id": 43, + "country_code": "TD", + "latitude": "11.02970000", + "longitude": "20.28270000" + }, + { + "id": "105136", + "name": "Goz Beïda", + "state_id": 3572, + "state_code": "SI", + "country_id": 43, + "country_code": "TD", + "latitude": "12.22484000", + "longitude": "21.41034000" + }, + { + "id": "105130", + "name": "Béré", + "state_id": 3579, + "state_code": "TA", + "country_id": 43, + "country_code": "TD", + "latitude": "9.32020000", + "longitude": "16.15520000" + }, + { + "id": "105140", + "name": "Kelo", + "state_id": 3579, + "state_code": "TA", + "country_id": 43, + "country_code": "TD", + "latitude": "9.30859000", + "longitude": "15.80658000" + }, + { + "id": "105144", + "name": "Laï", + "state_id": 3579, + "state_code": "TA", + "country_id": 43, + "country_code": "TD", + "latitude": "9.39720000", + "longitude": "16.30066000" + }, + { + "id": "105119", + "name": "Aozou", + "state_id": 3587, + "state_code": "TI", + "country_id": 43, + "country_code": "TD", + "latitude": "21.83750000", + "longitude": "17.42750000" + }, + { + "id": "105123", + "name": "Biltine", + "state_id": 3581, + "state_code": "WF", + "country_id": 43, + "country_code": "TD", + "latitude": "14.52791000", + "longitude": "20.92749000" + }, + { + "id": "105139", + "name": "Iriba", + "state_id": 3581, + "state_code": "WF", + "country_id": 43, + "country_code": "TD", + "latitude": "15.11667000", + "longitude": "22.25000000" + }, + { + "id": "18946", + "name": "Antofagasta", + "state_id": 2832, + "state_code": "AN", + "country_id": 44, + "country_code": "CL", + "latitude": "-23.65236000", + "longitude": "-70.39540000" + }, + { + "id": "18952", + "name": "Calama", + "state_id": 2832, + "state_code": "AN", + "country_id": 44, + "country_code": "CL", + "latitude": "-22.45667000", + "longitude": "-68.92371000" + }, + { + "id": "19033", + "name": "Provincia de Antofagasta", + "state_id": 2832, + "state_code": "AN", + "country_id": 44, + "country_code": "CL", + "latitude": "-24.31122000", + "longitude": "-69.57084000" + }, + { + "id": "19051", + "name": "Provincia de El Loa", + "state_id": 2832, + "state_code": "AN", + "country_id": 44, + "country_code": "CL", + "latitude": "-22.96764000", + "longitude": "-68.18716000" + }, + { + "id": "19074", + "name": "Provincia de Tocopilla", + "state_id": 2832, + "state_code": "AN", + "country_id": 44, + "country_code": "CL", + "latitude": "-22.02949000", + "longitude": "-69.64006000" + }, + { + "id": "19107", + "name": "San Pedro de Atacama", + "state_id": 2832, + "state_code": "AN", + "country_id": 44, + "country_code": "CL", + "latitude": "-22.91110000", + "longitude": "-68.20113000" + }, + { + "id": "19115", + "name": "Taltal", + "state_id": 2832, + "state_code": "AN", + "country_id": 44, + "country_code": "CL", + "latitude": "-25.40713000", + "longitude": "-70.48554000" + }, + { + "id": "19118", + "name": "Tocopilla", + "state_id": 2832, + "state_code": "AN", + "country_id": 44, + "country_code": "CL", + "latitude": "-22.09198000", + "longitude": "-70.19792000" + }, + { + "id": "18945", + "name": "Angol", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.79519000", + "longitude": "-72.71636000" + }, + { + "id": "18954", + "name": "Carahue", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.71122000", + "longitude": "-73.16101000" + }, + { + "id": "18969", + "name": "Collipulli", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.95453000", + "longitude": "-72.43438000" + }, + { + "id": "18983", + "name": "Freire", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.95252000", + "longitude": "-72.62653000" + }, + { + "id": "19000", + "name": "Lautaro", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.53066000", + "longitude": "-72.43652000" + }, + { + "id": "19006", + "name": "Loncoche", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-39.36708000", + "longitude": "-72.63087000" + }, + { + "id": "19017", + "name": "Nueva Imperial", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.74451000", + "longitude": "-72.95025000" + }, + { + "id": "19027", + "name": "Pitrufquén", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.98635000", + "longitude": "-72.63721000" + }, + { + "id": "19040", + "name": "Provincia de Cautín", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.94719000", + "longitude": "-72.36198000" + }, + { + "id": "19062", + "name": "Provincia de Malleco", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.23591000", + "longitude": "-72.13034000" + }, + { + "id": "19080", + "name": "Pucón", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-39.28223000", + "longitude": "-71.95427000" + }, + { + "id": "19116", + "name": "Temuco", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.73965000", + "longitude": "-72.59842000" + }, + { + "id": "19120", + "name": "Traiguén", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.24960000", + "longitude": "-72.67027000" + }, + { + "id": "19124", + "name": "Victoria", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.23291000", + "longitude": "-72.33292000" + }, + { + "id": "19126", + "name": "Vilcún", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-38.66875000", + "longitude": "-72.22565000" + }, + { + "id": "19129", + "name": "Villarrica", + "state_id": 2826, + "state_code": "AR", + "country_id": 44, + "country_code": "CL", + "latitude": "-39.28569000", + "longitude": "-72.22790000" + }, + { + "id": "18948", + "name": "Arica", + "state_id": 2829, + "state_code": "AP", + "country_id": 44, + "country_code": "CL", + "latitude": "-18.47460000", + "longitude": "-70.29792000" + }, + { + "id": "19035", + "name": "Provincia de Arica", + "state_id": 2829, + "state_code": "AP", + "country_id": 44, + "country_code": "CL", + "latitude": "-18.70643000", + "longitude": "-69.85607000" + }, + { + "id": "19067", + "name": "Provincia de Parinacota", + "state_id": 2829, + "state_code": "AP", + "country_id": 44, + "country_code": "CL", + "latitude": "-18.19804000", + "longitude": "-69.57161000" + }, + { + "id": "18972", + "name": "Copiapó", + "state_id": 2823, + "state_code": "AT", + "country_id": 44, + "country_code": "CL", + "latitude": "-27.36679000", + "longitude": "-70.33140000" + }, + { + "id": "18981", + "name": "Diego de Almagro", + "state_id": 2823, + "state_code": "AT", + "country_id": 44, + "country_code": "CL", + "latitude": "-26.36667000", + "longitude": "-70.05000000" + }, + { + "id": "19042", + "name": "Provincia de Chañaral", + "state_id": 2823, + "state_code": "AT", + "country_id": 44, + "country_code": "CL", + "latitude": "-26.32515000", + "longitude": "-69.48751000" + }, + { + "id": "19047", + "name": "Provincia de Copiapó", + "state_id": 2823, + "state_code": "AT", + "country_id": 44, + "country_code": "CL", + "latitude": "-27.56347000", + "longitude": "-70.00063000" + }, + { + "id": "19053", + "name": "Provincia de Huasco", + "state_id": 2823, + "state_code": "AT", + "country_id": 44, + "country_code": "CL", + "latitude": "-28.68428000", + "longitude": "-70.51474000" + }, + { + "id": "19122", + "name": "Vallenar", + "state_id": 2823, + "state_code": "AT", + "country_id": 44, + "country_code": "CL", + "latitude": "-28.57617000", + "longitude": "-70.75938000" + }, + { + "id": "18962", + "name": "Chile Chico", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-46.54100000", + "longitude": "-71.72375000" + }, + { + "id": "18966", + "name": "Cochrane", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-47.25570000", + "longitude": "-72.56950000" + }, + { + "id": "18976", + "name": "Coyhaique", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-45.57524000", + "longitude": "-72.06619000" + }, + { + "id": "18991", + "name": "La Junta", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-43.97434000", + "longitude": "-72.40554000" + }, + { + "id": "19030", + "name": "Provincia Capitán Prat", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-47.97550000", + "longitude": "-73.54155000" + }, + { + "id": "19032", + "name": "Provincia de Aisén", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-45.35626000", + "longitude": "-72.57322000" + }, + { + "id": "19049", + "name": "Provincia de Coyhaique", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-45.63037000", + "longitude": "-72.32025000" + }, + { + "id": "19031", + "name": "Provincia General Carrera", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-46.63435000", + "longitude": "-72.31476000" + }, + { + "id": "19082", + "name": "Puerto Aysén", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-45.40303000", + "longitude": "-72.69184000" + }, + { + "id": "19083", + "name": "Puerto Chacabuco", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-45.46667000", + "longitude": "-72.81667000" + }, + { + "id": "19084", + "name": "Puerto Cisnes", + "state_id": 2828, + "state_code": "AI", + "country_id": 44, + "country_code": "CL", + "latitude": "-44.74736000", + "longitude": "-72.69695000" + }, + { + "id": "18950", + "name": "Bulnes", + "state_id": 2831, + "state_code": "NB", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.74232000", + "longitude": "-72.29854000" + }, + { + "id": "18963", + "name": "Chillán", + "state_id": 2831, + "state_code": "NB", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.60664000", + "longitude": "-72.10344000" + }, + { + "id": "18967", + "name": "Coihueco", + "state_id": 2831, + "state_code": "NB", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.62785000", + "longitude": "-71.83068000" + }, + { + "id": "19094", + "name": "Quirihue", + "state_id": 2831, + "state_code": "NB", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.27998000", + "longitude": "-72.54118000" + }, + { + "id": "19103", + "name": "San Carlos", + "state_id": 2831, + "state_code": "NB", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.42477000", + "longitude": "-71.95800000" + }, + { + "id": "18947", + "name": "Arauco", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.24630000", + "longitude": "-73.31752000" + }, + { + "id": "18958", + "name": "Cañete", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.80128000", + "longitude": "-73.39616000" + }, + { + "id": "18951", + "name": "Cabrero", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.03394000", + "longitude": "-72.40468000" + }, + { + "id": "18961", + "name": "Chiguayante", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.92560000", + "longitude": "-73.02841000" + }, + { + "id": "18970", + "name": "Concepción", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.82699000", + "longitude": "-73.04977000" + }, + { + "id": "18974", + "name": "Coronel", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.03386000", + "longitude": "-73.14019000" + }, + { + "id": "18977", + "name": "Curanilahue", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.47793000", + "longitude": "-73.34495000" + }, + { + "id": "18996", + "name": "Laja", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.28415000", + "longitude": "-72.71105000" + }, + { + "id": "19001", + "name": "Lebu", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.60825000", + "longitude": "-73.65356000" + }, + { + "id": "19009", + "name": "Los Ángeles", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.46973000", + "longitude": "-72.35366000" + }, + { + "id": "19010", + "name": "Lota", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.08994000", + "longitude": "-73.15770000" + }, + { + "id": "19015", + "name": "Mulchén", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.71893000", + "longitude": "-72.24099000" + }, + { + "id": "19016", + "name": "Nacimiento", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.50253000", + "longitude": "-72.67307000" + }, + { + "id": "19024", + "name": "Penco", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.74075000", + "longitude": "-72.99528000" + }, + { + "id": "19034", + "name": "Provincia de Arauco", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.74174000", + "longitude": "-73.35799000" + }, + { + "id": "19036", + "name": "Provincia de Biobío", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.59511000", + "longitude": "-71.89553000" + }, + { + "id": "19046", + "name": "Provincia de Concepción", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.95773000", + "longitude": "-72.89674000" + }, + { + "id": "19114", + "name": "Talcahuano", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.72494000", + "longitude": "-73.11684000" + }, + { + "id": "19119", + "name": "Tomé", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.61756000", + "longitude": "-72.95593000" + }, + { + "id": "19131", + "name": "Yumbel", + "state_id": 2827, + "state_code": "BI", + "country_id": 44, + "country_code": "CL", + "latitude": "-37.09820000", + "longitude": "-72.56084000" + }, + { + "id": "18973", + "name": "Coquimbo", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-29.95332000", + "longitude": "-71.33947000" + }, + { + "id": "18988", + "name": "Illapel", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-31.63349000", + "longitude": "-71.16967000" + }, + { + "id": "18994", + "name": "La Serena", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-29.90453000", + "longitude": "-71.24894000" + }, + { + "id": "19014", + "name": "Monte Patria", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-30.69496000", + "longitude": "-70.95770000" + }, + { + "id": "19019", + "name": "Ovalle", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-30.60106000", + "longitude": "-71.19901000" + }, + { + "id": "19044", + "name": "Provincia de Choapa", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-31.71090000", + "longitude": "-70.99263000" + }, + { + "id": "19052", + "name": "Provincia de Elqui", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-29.73588000", + "longitude": "-70.64455000" + }, + { + "id": "19056", + "name": "Provincia de Limarí", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-30.75000000", + "longitude": "-71.00000000" + }, + { + "id": "19099", + "name": "Salamanca", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-31.77922000", + "longitude": "-70.96389000" + }, + { + "id": "19125", + "name": "Vicuña", + "state_id": 2825, + "state_code": "CO", + "country_id": 44, + "country_code": "CL", + "latitude": "-30.03541000", + "longitude": "-70.71274000" + }, + { + "id": "18944", + "name": "Ancud", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-41.87070000", + "longitude": "-73.81622000" + }, + { + "id": "18953", + "name": "Calbuco", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-41.77338000", + "longitude": "-73.13049000" + }, + { + "id": "18956", + "name": "Castro", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-42.47210000", + "longitude": "-73.77319000" + }, + { + "id": "18959", + "name": "Chaitén", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-42.91596000", + "longitude": "-72.70632000" + }, + { + "id": "18965", + "name": "Chonchi", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-42.62387000", + "longitude": "-73.77500000" + }, + { + "id": "18980", + "name": "Dalcahue", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-42.37845000", + "longitude": "-73.65011000" + }, + { + "id": "18984", + "name": "Futaleufú", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-43.18492000", + "longitude": "-71.86722000" + }, + { + "id": "18990", + "name": "La Ensenada", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-41.20746000", + "longitude": "-72.53840000" + }, + { + "id": "19018", + "name": "Osorno", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-40.57395000", + "longitude": "-73.13348000" + }, + { + "id": "19021", + "name": "Palena", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-43.61876000", + "longitude": "-71.80434000" + }, + { + "id": "19043", + "name": "Provincia de Chiloé", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-42.57471000", + "longitude": "-73.96062000" + }, + { + "id": "19058", + "name": "Provincia de Llanquihue", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-41.34285000", + "longitude": "-72.65800000" + }, + { + "id": "19065", + "name": "Provincia de Osorno", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-40.77939000", + "longitude": "-72.95299000" + }, + { + "id": "19066", + "name": "Provincia de Palena", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-43.16212000", + "longitude": "-72.47818000" + }, + { + "id": "19085", + "name": "Puerto Montt", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-41.46930000", + "longitude": "-72.94237000" + }, + { + "id": "19087", + "name": "Puerto Varas", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-41.31946000", + "longitude": "-72.98538000" + }, + { + "id": "19089", + "name": "Purranque", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-40.91305000", + "longitude": "-73.15913000" + }, + { + "id": "19091", + "name": "Quellón", + "state_id": 2835, + "state_code": "LL", + "country_id": 44, + "country_code": "CL", + "latitude": "-43.11819000", + "longitude": "-73.61661000" + }, + { + "id": "18975", + "name": "Corral", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-39.88730000", + "longitude": "-73.43101000" + }, + { + "id": "18995", + "name": "La Unión", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-40.29313000", + "longitude": "-73.08167000" + }, + { + "id": "18998", + "name": "Las Animas", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-39.80867000", + "longitude": "-73.21821000" + }, + { + "id": "18999", + "name": "Las Gaviotas", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-39.86653000", + "longitude": "-73.18834000" + }, + { + "id": "19022", + "name": "Panguipulli", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-39.64355000", + "longitude": "-72.33269000" + }, + { + "id": "19075", + "name": "Provincia de Valdivia", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-39.80273000", + "longitude": "-72.54690000" + }, + { + "id": "19078", + "name": "Provincia del Ranco", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-40.13689000", + "longitude": "-72.37793000" + }, + { + "id": "19090", + "name": "Puyehue", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-40.65944000", + "longitude": "-72.60172000" + }, + { + "id": "19098", + "name": "Río Bueno", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-40.33494000", + "longitude": "-72.95564000" + }, + { + "id": "19121", + "name": "Valdivia", + "state_id": 2834, + "state_code": "LR", + "country_id": 44, + "country_code": "CL", + "latitude": "-39.81422000", + "longitude": "-73.24589000" + }, + { + "id": "18979", + "name": "Cámeron", + "state_id": 2836, + "state_code": "MA", + "country_id": 44, + "country_code": "CL", + "latitude": "-53.63988000", + "longitude": "-69.64693000" + }, + { + "id": "19028", + "name": "Porvenir", + "state_id": 2836, + "state_code": "MA", + "country_id": 44, + "country_code": "CL", + "latitude": "-53.29600000", + "longitude": "-70.36629000" + }, + { + "id": "19029", + "name": "Provincia Antártica Chilena", + "state_id": 2836, + "state_code": "MA", + "country_id": 44, + "country_code": "CL", + "latitude": "-55.02250000", + "longitude": "-69.22781000" + }, + { + "id": "19077", + "name": "Provincia de Última Esperanza", + "state_id": 2836, + "state_code": "MA", + "country_id": 44, + "country_code": "CL", + "latitude": "-50.75000000", + "longitude": "-74.00000000" + }, + { + "id": "19060", + "name": "Provincia de Magallanes", + "state_id": 2836, + "state_code": "MA", + "country_id": 44, + "country_code": "CL", + "latitude": "-52.91667000", + "longitude": "-71.08333000" + }, + { + "id": "19073", + "name": "Provincia de Tierra del Fuego", + "state_id": 2836, + "state_code": "MA", + "country_id": 44, + "country_code": "CL", + "latitude": "-53.66083000", + "longitude": "-69.45173000" + }, + { + "id": "19086", + "name": "Puerto Natales", + "state_id": 2836, + "state_code": "MA", + "country_id": 44, + "country_code": "CL", + "latitude": "-51.72987000", + "longitude": "-72.50603000" + }, + { + "id": "19088", + "name": "Punta Arenas", + "state_id": 2836, + "state_code": "MA", + "country_id": 44, + "country_code": "CL", + "latitude": "-53.15483000", + "longitude": "-70.91129000" + }, + { + "id": "18957", + "name": "Cauquenes", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.96710000", + "longitude": "-72.32248000" + }, + { + "id": "18968", + "name": "Colbún", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.69494000", + "longitude": "-71.40568000" + }, + { + "id": "18971", + "name": "Constitución", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.33321000", + "longitude": "-72.41156000" + }, + { + "id": "18978", + "name": "Curicó", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.98279000", + "longitude": "-71.23943000" + }, + { + "id": "19003", + "name": "Linares", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.84667000", + "longitude": "-71.59308000" + }, + { + "id": "19007", + "name": "Longaví", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.96496000", + "longitude": "-71.68360000" + }, + { + "id": "19013", + "name": "Molina", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.11428000", + "longitude": "-71.28232000" + }, + { + "id": "19023", + "name": "Parral", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.14311000", + "longitude": "-71.82605000" + }, + { + "id": "19039", + "name": "Provincia de Cauquenes", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.96828000", + "longitude": "-72.32918000" + }, + { + "id": "19050", + "name": "Provincia de Curicó", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.04932000", + "longitude": "-71.09148000" + }, + { + "id": "19057", + "name": "Provincia de Linares", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-36.02955000", + "longitude": "-71.43099000" + }, + { + "id": "19072", + "name": "Provincia de Talca", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.43780000", + "longitude": "-71.35326000" + }, + { + "id": "19096", + "name": "Rauco", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.92546000", + "longitude": "-71.31722000" + }, + { + "id": "19104", + "name": "San Clemente", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.53777000", + "longitude": "-71.48700000" + }, + { + "id": "19106", + "name": "San Javier", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.59520000", + "longitude": "-71.72924000" + }, + { + "id": "19113", + "name": "Talca", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-35.42640000", + "longitude": "-71.65542000" + }, + { + "id": "19117", + "name": "Teno", + "state_id": 2833, + "state_code": "ML", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.87055000", + "longitude": "-71.16219000" + }, + { + "id": "18964", + "name": "Chimbarongo", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.71247000", + "longitude": "-71.04340000" + }, + { + "id": "18985", + "name": "Graneros", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.06863000", + "longitude": "-70.72747000" + }, + { + "id": "19011", + "name": "Machalí", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.18082000", + "longitude": "-70.64933000" + }, + { + "id": "19037", + "name": "Provincia de Cachapoal", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.29987000", + "longitude": "-70.72061000" + }, + { + "id": "19038", + "name": "Provincia de Cardenal Caro", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.38651000", + "longitude": "-71.94500000" + }, + { + "id": "19045", + "name": "Provincia de Colchagua", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.69485000", + "longitude": "-71.07606000" + }, + { + "id": "19095", + "name": "Rancagua", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.17083000", + "longitude": "-70.74444000" + }, + { + "id": "19097", + "name": "Rengo", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.40639000", + "longitude": "-70.85834000" + }, + { + "id": "19108", + "name": "San Vicente", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.43333000", + "longitude": "-71.08333000" + }, + { + "id": "19109", + "name": "San Vicente de Tagua Tagua", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.43859000", + "longitude": "-71.07751000" + }, + { + "id": "19110", + "name": "Santa Cruz", + "state_id": 2838, + "state_code": "LI", + "country_id": 44, + "country_code": "CL", + "latitude": "-34.63881000", + "longitude": "-71.36576000" + }, + { + "id": "18949", + "name": "Buin", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.73257000", + "longitude": "-70.74281000" + }, + { + "id": "18960", + "name": "Chicureo Abajo", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.28379000", + "longitude": "-70.65333000" + }, + { + "id": "18982", + "name": "El Monte", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.67969000", + "longitude": "-70.98482000" + }, + { + "id": "18993", + "name": "La Pintana", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.58331000", + "longitude": "-70.63419000" + }, + { + "id": "18997", + "name": "Lampa", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.28630000", + "longitude": "-70.87561000" + }, + { + "id": "19005", + "name": "Lo Prado", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.44430000", + "longitude": "-70.72552000" + }, + { + "id": "19012", + "name": "Melipilla", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.68909000", + "longitude": "-71.21528000" + }, + { + "id": "19020", + "name": "Paine", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.80796000", + "longitude": "-70.74109000" + }, + { + "id": "19026", + "name": "Peñaflor", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.60627000", + "longitude": "-70.87649000" + }, + { + "id": "19041", + "name": "Provincia de Chacabuco", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.15940000", + "longitude": "-70.81650000" + }, + { + "id": "19048", + "name": "Provincia de Cordillera", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.67921000", + "longitude": "-70.54665000" + }, + { + "id": "19061", + "name": "Provincia de Maipo", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.83333000", + "longitude": "-70.75000000" + }, + { + "id": "19064", + "name": "Provincia de Melipilla", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.75000000", + "longitude": "-71.16667000" + }, + { + "id": "19070", + "name": "Provincia de Santiago", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.33333000", + "longitude": "-70.66667000" + }, + { + "id": "19071", + "name": "Provincia de Talagante", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.66667000", + "longitude": "-70.91667000" + }, + { + "id": "19081", + "name": "Puente Alto", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.61169000", + "longitude": "-70.57577000" + }, + { + "id": "19102", + "name": "San Bernardo", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.59217000", + "longitude": "-70.69960000" + }, + { + "id": "19111", + "name": "Santiago", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.45694000", + "longitude": "-70.64827000" + }, + { + "id": "19112", + "name": "Talagante", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.66386000", + "longitude": "-70.92734000" + }, + { + "id": "19128", + "name": "Villa Presidente Frei, Ñuñoa, Santiago, Chile", + "state_id": 2824, + "state_code": "RM", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.46069000", + "longitude": "-70.58024000" + }, + { + "id": "18989", + "name": "Iquique", + "state_id": 2837, + "state_code": "TA", + "country_id": 44, + "country_code": "CL", + "latitude": "-20.21326000", + "longitude": "-70.15027000" + }, + { + "id": "19054", + "name": "Provincia de Iquique", + "state_id": 2837, + "state_code": "TA", + "country_id": 44, + "country_code": "CL", + "latitude": "-20.24158000", + "longitude": "-70.08728000" + }, + { + "id": "19079", + "name": "Provincia del Tamarugal", + "state_id": 2837, + "state_code": "TA", + "country_id": 44, + "country_code": "CL", + "latitude": "-20.26445000", + "longitude": "-69.81606000" + }, + { + "id": "18955", + "name": "Cartagena", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.55384000", + "longitude": "-71.60761000" + }, + { + "id": "18986", + "name": "Hacienda La Calera", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.78333000", + "longitude": "-71.21667000" + }, + { + "id": "18987", + "name": "Hanga Roa", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-27.15474000", + "longitude": "-109.43241000" + }, + { + "id": "18992", + "name": "La Ligua", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.45242000", + "longitude": "-71.23106000" + }, + { + "id": "19002", + "name": "Limache", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.01667000", + "longitude": "-71.26667000" + }, + { + "id": "19004", + "name": "Llaillay", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.84043000", + "longitude": "-70.95623000" + }, + { + "id": "19008", + "name": "Los Andes", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.83369000", + "longitude": "-70.59827000" + }, + { + "id": "19025", + "name": "Petorca Province", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.33333000", + "longitude": "-71.00000000" + }, + { + "id": "19055", + "name": "Provincia de Isla de Pascua", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-27.11048000", + "longitude": "-109.29749000" + }, + { + "id": "19059", + "name": "Provincia de Los Andes", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.82556000", + "longitude": "-70.33518000" + }, + { + "id": "19063", + "name": "Provincia de Marga Marga", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.04378000", + "longitude": "-71.39465000" + }, + { + "id": "19068", + "name": "Provincia de Quillota", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.80753000", + "longitude": "-71.17957000" + }, + { + "id": "19069", + "name": "Provincia de San Felipe de Aconcagua", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.60401000", + "longitude": "-70.65930000" + }, + { + "id": "19076", + "name": "Provincia de Valparaíso", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.06105000", + "longitude": "-71.59241000" + }, + { + "id": "19092", + "name": "Quillota", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.88341000", + "longitude": "-71.24882000" + }, + { + "id": "19093", + "name": "Quilpué", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.04752000", + "longitude": "-71.44249000" + }, + { + "id": "19100", + "name": "San Antonio", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.59473000", + "longitude": "-71.60746000" + }, + { + "id": "19101", + "name": "San Antonio Province", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.58333000", + "longitude": "-71.50000000" + }, + { + "id": "19105", + "name": "San Felipe", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-32.74976000", + "longitude": "-70.72584000" + }, + { + "id": "19123", + "name": "Valparaíso", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.03600000", + "longitude": "-71.62963000" + }, + { + "id": "19130", + "name": "Viña del Mar", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.02457000", + "longitude": "-71.55183000" + }, + { + "id": "19127", + "name": "Villa Alemana", + "state_id": 2830, + "state_code": "VS", + "country_id": 44, + "country_code": "CL", + "latitude": "-33.04222000", + "longitude": "-71.37333000" + }, + { + "id": "19284", + "name": "Anqing", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "30.51365000", + "longitude": "117.04723000" + }, + { + "id": "19285", + "name": "Anqing Shi", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "30.66266000", + "longitude": "116.55911000" + }, + { + "id": "19338", + "name": "Bengbu", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.94083000", + "longitude": "117.36083000" + }, + { + "id": "19351", + "name": "Bozhou", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "33.87722000", + "longitude": "115.77028000" + }, + { + "id": "19380", + "name": "Chaohu", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.60000000", + "longitude": "117.86667000" + }, + { + "id": "19401", + "name": "Chizhou", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "30.66134000", + "longitude": "117.47783000" + }, + { + "id": "19402", + "name": "Chizhou Shi", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "30.30431000", + "longitude": "117.41388000" + }, + { + "id": "19410", + "name": "Chuzhou", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.32194000", + "longitude": "118.29778000" + }, + { + "id": "19411", + "name": "Chuzhou Shi", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.60084000", + "longitude": "118.08813000" + }, + { + "id": "19435", + "name": "Datong", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.62082000", + "longitude": "117.06319000" + }, + { + "id": "19525", + "name": "Fuyang", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.90000000", + "longitude": "115.81667000" + }, + { + "id": "19527", + "name": "Fuyang Shi", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.93718000", + "longitude": "115.70778000" + }, + { + "id": "19579", + "name": "Gushu", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.56055000", + "longitude": "118.48147000" + }, + { + "id": "19607", + "name": "Hefei", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.86389000", + "longitude": "117.28083000" + }, + { + "id": "19608", + "name": "Hefei Shi", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.94665000", + "longitude": "117.27805000" + }, + { + "id": "19636", + "name": "Huaibei", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "33.97444000", + "longitude": "116.79167000" + }, + { + "id": "19640", + "name": "Huainan", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.62639000", + "longitude": "116.99694000" + }, + { + "id": "19641", + "name": "Huainan Shi", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.73824000", + "longitude": "116.78813000" + }, + { + "id": "19642", + "name": "Huaiyuan Chengguanzhen", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.95893000", + "longitude": "117.16566000" + }, + { + "id": "19656", + "name": "Huangshan", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "29.71139000", + "longitude": "118.31250000" + }, + { + "id": "19657", + "name": "Huangshan Shi", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "29.89195000", + "longitude": "118.10553000" + }, + { + "id": "19685", + "name": "Huoqiu Chengguanzhen", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.35473000", + "longitude": "116.29390000" + }, + { + "id": "19721", + "name": "Jieshou", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "33.26338000", + "longitude": "115.36108000" + }, + { + "id": "19895", + "name": "Lu’an", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.73561000", + "longitude": "116.51688000" + }, + { + "id": "19880", + "name": "Lucheng", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.23357000", + "longitude": "117.28057000" + }, + { + "id": "19914", + "name": "Mengcheng Chengguanzhen", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "33.26611000", + "longitude": "116.56605000" + }, + { + "id": "19919", + "name": "Mingguang", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.78017000", + "longitude": "117.96378000" + }, + { + "id": "20144", + "name": "Suixi", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "33.89067000", + "longitude": "116.77473000" + }, + { + "id": "20149", + "name": "Suzhou", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "33.63611000", + "longitude": "116.97889000" + }, + { + "id": "20151", + "name": "Suzhou Shi", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "33.86970000", + "longitude": "117.20569000" + }, + { + "id": "20173", + "name": "Tangzhai", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "34.43278000", + "longitude": "116.59111000" + }, + { + "id": "20229", + "name": "Wucheng", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "29.60077000", + "longitude": "118.17495000" + }, + { + "id": "20234", + "name": "Wuhu", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.33728000", + "longitude": "118.37351000" + }, + { + "id": "20236", + "name": "Wusong", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "30.95000000", + "longitude": "117.78333000" + }, + { + "id": "20241", + "name": "Wuyang", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.99250000", + "longitude": "116.24722000" + }, + { + "id": "20330", + "name": "Xuanzhou", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "30.95250000", + "longitude": "118.75528000" + }, + { + "id": "20380", + "name": "Yingshang Chengguanzhen", + "state_id": 2251, + "state_code": "AH", + "country_id": 45, + "country_code": "CN", + "latitude": "32.62945000", + "longitude": "116.27013000" + }, + { + "id": "19332", + "name": "Beijing", + "state_id": 2257, + "state_code": "BJ", + "country_id": 45, + "country_code": "CN", + "latitude": "39.90750000", + "longitude": "116.39723000" + }, + { + "id": "19370", + "name": "Changping", + "state_id": 2257, + "state_code": "BJ", + "country_id": 45, + "country_code": "CN", + "latitude": "40.21612000", + "longitude": "116.23471000" + }, + { + "id": "19439", + "name": "Daxing", + "state_id": 2257, + "state_code": "BJ", + "country_id": 45, + "country_code": "CN", + "latitude": "39.74025000", + "longitude": "116.32693000" + }, + { + "id": "19499", + "name": "Fangshan", + "state_id": 2257, + "state_code": "BJ", + "country_id": 45, + "country_code": "CN", + "latitude": "39.68699000", + "longitude": "115.99658000" + }, + { + "id": "19817", + "name": "Liangxiang", + "state_id": 2257, + "state_code": "BJ", + "country_id": 45, + "country_code": "CN", + "latitude": "39.73598000", + "longitude": "116.13295000" + }, + { + "id": "19916", + "name": "Mentougou", + "state_id": 2257, + "state_code": "BJ", + "country_id": 45, + "country_code": "CN", + "latitude": "39.93819000", + "longitude": "116.09307000" + }, + { + "id": "20126", + "name": "Shunyi", + "state_id": 2257, + "state_code": "BJ", + "country_id": 45, + "country_code": "CN", + "latitude": "40.12175000", + "longitude": "116.64783000" + }, + { + "id": "20197", + "name": "Tongzhou", + "state_id": 2257, + "state_code": "BJ", + "country_id": 45, + "country_code": "CN", + "latitude": "39.90395000", + "longitude": "116.66183000" + }, + { + "id": "19327", + "name": "Beibei", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.82739000", + "longitude": "106.43645000" + }, + { + "id": "19356", + "name": "Caijia", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.90889000", + "longitude": "106.34040000" + }, + { + "id": "19404", + "name": "Chongqing", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.56278000", + "longitude": "106.55278000" + }, + { + "id": "19479", + "name": "Dongxi", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.76139000", + "longitude": "106.66111000" + }, + { + "id": "19521", + "name": "Fuling", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.70600000", + "longitude": "107.39575000" + }, + { + "id": "19536", + "name": "Ganshui", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.74222000", + "longitude": "106.71111000" + }, + { + "id": "19577", + "name": "Guofuchang", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.85000000", + "longitude": "106.60139000" + }, + { + "id": "19604", + "name": "Hechuan", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.99228000", + "longitude": "106.26461000" + }, + { + "id": "19724", + "name": "Jijiang", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.28993000", + "longitude": "106.25001000" + }, + { + "id": "19815", + "name": "Liangping District", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.67409000", + "longitude": "107.79380000" + }, + { + "id": "19991", + "name": "Puhechang", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.95250000", + "longitude": "106.83111000" + }, + { + "id": "20084", + "name": "Shapingba District", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.54166000", + "longitude": "106.45547000" + }, + { + "id": "20095", + "name": "Shijiaochang", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.92444000", + "longitude": "106.75611000" + }, + { + "id": "20211", + "name": "Wanxian", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.81544000", + "longitude": "108.37089000" + }, + { + "id": "20212", + "name": "Wanzhou District", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.70576000", + "longitude": "108.40202000" + }, + { + "id": "20385", + "name": "Yongchuan", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.35376000", + "longitude": "105.89392000" + }, + { + "id": "20395", + "name": "Yudong", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.38500000", + "longitude": "106.51944000" + }, + { + "id": "20412", + "name": "Yuzhong District", + "state_id": 2271, + "state_code": "CQ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.55208000", + "longitude": "106.53814000" + }, + { + "id": "19296", + "name": "Badu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.81028000", + "longitude": "119.56417000" + }, + { + "id": "19301", + "name": "Baiqi", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.88244000", + "longitude": "118.70869000" + }, + { + "id": "19310", + "name": "Baiyun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.03648000", + "longitude": "118.90622000" + }, + { + "id": "19334", + "name": "Beishancun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.43732000", + "longitude": "119.63372000" + }, + { + "id": "19371", + "name": "Changqiao", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.82139000", + "longitude": "118.84361000" + }, + { + "id": "19391", + "name": "Chengmen", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.99339000", + "longitude": "119.36136000" + }, + { + "id": "19400", + "name": "Chixi", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.91111000", + "longitude": "119.48306000" + }, + { + "id": "19405", + "name": "Chongru", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.95111000", + "longitude": "119.92528000" + }, + { + "id": "19414", + "name": "Dadeng", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.54386000", + "longitude": "118.32753000" + }, + { + "id": "19417", + "name": "Daixi", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.81250000", + "longitude": "119.11417000" + }, + { + "id": "19427", + "name": "Danyang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.35102000", + "longitude": "119.48030000" + }, + { + "id": "19429", + "name": "Daqiao", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.61500000", + "longitude": "118.90639000" + }, + { + "id": "19444", + "name": "Dazuo", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.88616000", + "longitude": "118.96433000" + }, + { + "id": "19457", + "name": "Dinghaicun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.28022000", + "longitude": "119.78964000" + }, + { + "id": "19459", + "name": "Dingtoucun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.83977000", + "longitude": "119.66111000" + }, + { + "id": "19462", + "name": "Dongchongcun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.54001000", + "longitude": "119.83257000" + }, + { + "id": "19464", + "name": "Dongdai", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.24366000", + "longitude": "119.61566000" + }, + { + "id": "19469", + "name": "Donghu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.23453000", + "longitude": "119.51430000" + }, + { + "id": "19471", + "name": "Dongling", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.98271000", + "longitude": "118.89790000" + }, + { + "id": "19482", + "name": "Dongyuan", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.91738000", + "longitude": "118.75236000" + }, + { + "id": "19502", + "name": "Feiluan", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.56250000", + "longitude": "119.59750000" + }, + { + "id": "19508", + "name": "Fengpu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.68276000", + "longitude": "118.76006000" + }, + { + "id": "19512", + "name": "Fengzhou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.95762000", + "longitude": "118.53365000" + }, + { + "id": "19532", + "name": "Fu’an", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.06372000", + "longitude": "119.65280000" + }, + { + "id": "19517", + "name": "Fuding", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.32734000", + "longitude": "120.21399000" + }, + { + "id": "19522", + "name": "Fuqing", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.72500000", + "longitude": "119.37944000" + }, + { + "id": "19531", + "name": "Fuzhou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.06139000", + "longitude": "119.30611000" + }, + { + "id": "19537", + "name": "Gantang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.92000000", + "longitude": "119.63333000" + }, + { + "id": "19566", + "name": "Guantou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.13593000", + "longitude": "119.56162000" + }, + { + "id": "19568", + "name": "Gufeng", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.90833000", + "longitude": "118.98194000" + }, + { + "id": "19618", + "name": "Hetang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.66276000", + "longitude": "119.11062000" + }, + { + "id": "19628", + "name": "Hongtang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.07056000", + "longitude": "119.23083000" + }, + { + "id": "19629", + "name": "Hongyang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.52861000", + "longitude": "119.46250000" + }, + { + "id": "19632", + "name": "Houyu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.05958000", + "longitude": "119.53502000" + }, + { + "id": "19643", + "name": "Huai’an", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.09899000", + "longitude": "119.22171000" + }, + { + "id": "19659", + "name": "Huangtian", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.43851000", + "longitude": "118.62398000" + }, + { + "id": "19686", + "name": "Huotong", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.84972000", + "longitude": "119.41806000" + }, + { + "id": "19709", + "name": "Jian’ou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.04694000", + "longitude": "118.32528000" + }, + { + "id": "19697", + "name": "Jiangkou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.48694000", + "longitude": "119.19834000" + }, + { + "id": "19706", + "name": "Jianjiang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.54972000", + "longitude": "119.75500000" + }, + { + "id": "19732", + "name": "Jingfeng", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.97441000", + "longitude": "118.96486000" + }, + { + "id": "19744", + "name": "Jinjiang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.81978000", + "longitude": "118.57415000" + }, + { + "id": "19746", + "name": "Jinjing", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.57500000", + "longitude": "118.59722000" + }, + { + "id": "19755", + "name": "Jitoucun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.47681000", + "longitude": "119.60517000" + }, + { + "id": "19777", + "name": "Kengyuan", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.33964000", + "longitude": "119.76476000" + }, + { + "id": "19778", + "name": "Kerencun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.58213000", + "longitude": "118.66046000" + }, + { + "id": "19780", + "name": "Kuai’an", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.03417000", + "longitude": "119.41639000" + }, + { + "id": "19820", + "name": "Lianhecun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.58932000", + "longitude": "118.33903000" + }, + { + "id": "19862", + "name": "Liuwudiancun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.56923000", + "longitude": "118.19064000" + }, + { + "id": "19870", + "name": "Longmen", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.95972000", + "longitude": "118.08889000" + }, + { + "id": "19875", + "name": "Longyan", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.10722000", + "longitude": "117.02250000" + }, + { + "id": "19886", + "name": "Luoqiao", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.47265000", + "longitude": "119.00392000" + }, + { + "id": "19890", + "name": "Luoyang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.95938000", + "longitude": "118.68300000" + }, + { + "id": "19892", + "name": "Luxia", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.93000000", + "longitude": "118.80722000" + }, + { + "id": "19907", + "name": "Maping", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.68722000", + "longitude": "118.55278000" + }, + { + "id": "19911", + "name": "Meipu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.21120000", + "longitude": "118.89561000" + }, + { + "id": "19924", + "name": "Min’an", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.04962000", + "longitude": "119.49964000" + }, + { + "id": "19947", + "name": "Nanping", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.64500000", + "longitude": "118.17361000" + }, + { + "id": "19955", + "name": "Neikeng", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.78544000", + "longitude": "118.46037000" + }, + { + "id": "19960", + "name": "Ningde", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.66167000", + "longitude": "119.52278000" + }, + { + "id": "19971", + "name": "Pandu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.23639000", + "longitude": "119.45026000" + }, + { + "id": "19990", + "name": "Pucheng", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.92333000", + "longitude": "118.53333000" + }, + { + "id": "19998", + "name": "Putian", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.43944000", + "longitude": "119.01028000" + }, + { + "id": "20012", + "name": "Qibu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.50750000", + "longitude": "119.54500000" + }, + { + "id": "20013", + "name": "Qidu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.76528000", + "longitude": "119.54722000" + }, + { + "id": "20036", + "name": "Quanzhou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.91389000", + "longitude": "118.58583000" + }, + { + "id": "20043", + "name": "Rong’an", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.12472000", + "longitude": "119.12139000" + }, + { + "id": "20055", + "name": "Sanming", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.24861000", + "longitude": "117.61861000" + }, + { + "id": "20061", + "name": "Shajiang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.78250000", + "longitude": "119.96694000" + }, + { + "id": "20064", + "name": "Shangjie", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.08679000", + "longitude": "119.18494000" + }, + { + "id": "20078", + "name": "Shanxia", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.93802000", + "longitude": "118.88170000" + }, + { + "id": "20079", + "name": "Shanyang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.67019000", + "longitude": "119.20509000" + }, + { + "id": "20081", + "name": "Shaowu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.34089000", + "longitude": "117.48310000" + }, + { + "id": "20098", + "name": "Shijing", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.61956000", + "longitude": "118.42437000" + }, + { + "id": "20102", + "name": "Shima", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.44647000", + "longitude": "117.81216000" + }, + { + "id": "20113", + "name": "Shoushan", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.96444000", + "longitude": "119.16167000" + }, + { + "id": "20118", + "name": "Shuangxi", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.02248000", + "longitude": "119.04140000" + }, + { + "id": "20121", + "name": "Shuangzhu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.63114000", + "longitude": "118.64570000" + }, + { + "id": "20124", + "name": "Shuikou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.38360000", + "longitude": "118.73027000" + }, + { + "id": "20169", + "name": "Tangkou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.95417000", + "longitude": "119.01278000" + }, + { + "id": "20174", + "name": "Tantou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.03033000", + "longitude": "119.59739000" + }, + { + "id": "20177", + "name": "Tatou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.61732000", + "longitude": "118.52672000" + }, + { + "id": "20186", + "name": "Tingjiang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.07401000", + "longitude": "119.50574000" + }, + { + "id": "20202", + "name": "Tuzhai", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.98301000", + "longitude": "118.83194000" + }, + { + "id": "20227", + "name": "Wubao", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.59589000", + "longitude": "118.55359000" + }, + { + "id": "20243", + "name": "Wuyishan", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.75995000", + "longitude": "118.03066000" + }, + { + "id": "20244", + "name": "Wuyucun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.33551000", + "longitude": "118.14489000" + }, + { + "id": "20248", + "name": "Xiabaishi", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.81528000", + "longitude": "119.67917000" + }, + { + "id": "20249", + "name": "Xiahu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.61056000", + "longitude": "119.94833000" + }, + { + "id": "20252", + "name": "Xiamen", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.47979000", + "longitude": "118.08187000" + }, + { + "id": "20253", + "name": "Xiancun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.93861000", + "longitude": "119.36028000" + }, + { + "id": "20259", + "name": "Xiangyun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.97111000", + "longitude": "118.16028000" + }, + { + "id": "20279", + "name": "Xibing", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.98139000", + "longitude": "119.72472000" + }, + { + "id": "20286", + "name": "Xiling", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.81444000", + "longitude": "119.04722000" + }, + { + "id": "20287", + "name": "Ximei", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.98773000", + "longitude": "118.38580000" + }, + { + "id": "20288", + "name": "Xinan", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.72000000", + "longitude": "119.85556000" + }, + { + "id": "20292", + "name": "Xindian", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.61006000", + "longitude": "118.24068000" + }, + { + "id": "20337", + "name": "Yakou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.67194000", + "longitude": "118.63722000" + }, + { + "id": "20343", + "name": "Yanghou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.64083000", + "longitude": "118.50806000" + }, + { + "id": "20348", + "name": "Yangzhong", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.70556000", + "longitude": "119.37444000" + }, + { + "id": "20357", + "name": "Yantian", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.85333000", + "longitude": "119.85750000" + }, + { + "id": "20377", + "name": "Yingdu", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.97167000", + "longitude": "118.24417000" + }, + { + "id": "20379", + "name": "Yinglin", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.63222000", + "longitude": "118.58056000" + }, + { + "id": "20387", + "name": "Yongning", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.68000000", + "longitude": "118.69000000" + }, + { + "id": "20404", + "name": "Yushan", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.90863000", + "longitude": "118.56713000" + }, + { + "id": "20425", + "name": "Zhangwan", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.71139000", + "longitude": "119.59194000" + }, + { + "id": "20428", + "name": "Zhangzhou", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.51333000", + "longitude": "117.65556000" + }, + { + "id": "20440", + "name": "Zhenhaicun", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "24.25894000", + "longitude": "118.09186000" + }, + { + "id": "20450", + "name": "Zhongfang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.60083000", + "longitude": "119.42583000" + }, + { + "id": "20472", + "name": "Zhuoyang", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.63003000", + "longitude": "119.02150000" + }, + { + "id": "20473", + "name": "Zhuqi", + "state_id": 2248, + "state_code": "FJ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.14860000", + "longitude": "119.10216000" + }, + { + "id": "19309", + "name": "Baiyin", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "36.54696000", + "longitude": "104.17023000" + }, + { + "id": "19330", + "name": "Beidao", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "34.56861000", + "longitude": "105.89333000" + }, + { + "id": "19460", + "name": "Dingxi Shi", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "35.03710000", + "longitude": "104.38623000" + }, + { + "id": "19622", + "name": "Hezuo", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "34.98556000", + "longitude": "102.90944000" + }, + { + "id": "19716", + "name": "Jiayuguan", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "39.81121000", + "longitude": "98.28618000" + }, + { + "id": "19728", + "name": "Jinchang", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "38.50062000", + "longitude": "102.19379000" + }, + { + "id": "19758", + "name": "Jiuquan", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "39.74318000", + "longitude": "98.51736000" + }, + { + "id": "19803", + "name": "Lanzhou", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "36.05701000", + "longitude": "103.83987000" + }, + { + "id": "19806", + "name": "Laojunmiao", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "39.83333000", + "longitude": "97.73333000" + }, + { + "id": "19854", + "name": "Linxia Chengguanzhen", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "35.60028000", + "longitude": "103.20639000" + }, + { + "id": "19855", + "name": "Linxia Huizu Zizhizhou", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "35.66597000", + "longitude": "103.24080000" + }, + { + "id": "19871", + "name": "Longnan Shi", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "33.53451000", + "longitude": "105.34947000" + }, + { + "id": "19908", + "name": "Mawu", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "34.42639000", + "longitude": "104.91472000" + }, + { + "id": "19980", + "name": "Pingliang", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "35.53917000", + "longitude": "106.68611000" + }, + { + "id": "20015", + "name": "Qincheng", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "34.58028000", + "longitude": "105.72722000" + }, + { + "id": "20026", + "name": "Qingyang Shi", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "36.23598000", + "longitude": "107.58113000" + }, + { + "id": "20181", + "name": "Tianshui", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "34.57952000", + "longitude": "105.74238000" + }, + { + "id": "20237", + "name": "Wuwei", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "37.92672000", + "longitude": "102.63202000" + }, + { + "id": "20426", + "name": "Zhangye", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "38.93417000", + "longitude": "100.45167000" + }, + { + "id": "20427", + "name": "Zhangye Shi", + "state_id": 2275, + "state_code": "GS", + "country_id": 45, + "country_code": "CN", + "latitude": "39.12183000", + "longitude": "99.92495000" + }, + { + "id": "19278", + "name": "Anbu", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.44895000", + "longitude": "116.68092000" + }, + { + "id": "19383", + "name": "Chaozhou", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.65396000", + "longitude": "116.62262000" + }, + { + "id": "19389", + "name": "Chenghua", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.46132000", + "longitude": "116.77007000" + }, + { + "id": "19422", + "name": "Daliang", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.84067000", + "longitude": "113.25030000" + }, + { + "id": "19426", + "name": "Danshui", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.79840000", + "longitude": "114.46716000" + }, + { + "id": "19432", + "name": "Dasha", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.11037000", + "longitude": "113.44180000" + }, + { + "id": "19467", + "name": "Dongguan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.01797000", + "longitude": "113.74866000" + }, + { + "id": "19468", + "name": "Donghai", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.94593000", + "longitude": "115.64204000" + }, + { + "id": "19483", + "name": "Ducheng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.24212000", + "longitude": "111.52840000" + }, + { + "id": "19490", + "name": "Encheng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.18659000", + "longitude": "112.30424000" + }, + { + "id": "19514", + "name": "Foshan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.02677000", + "longitude": "113.13148000" + }, + { + "id": "19515", + "name": "Foshan Shi", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.02264000", + "longitude": "112.96302000" + }, + { + "id": "19546", + "name": "Gaoyao", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.02432000", + "longitude": "112.44555000" + }, + { + "id": "19550", + "name": "Gaozhou", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "21.93924000", + "longitude": "110.84607000" + }, + { + "id": "19562", + "name": "Guangzhou", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.11667000", + "longitude": "113.25000000" + }, + { + "id": "19563", + "name": "Guangzhou Shi", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.37327000", + "longitude": "113.51219000" + }, + { + "id": "19586", + "name": "Haikuotiankong", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.52881000", + "longitude": "113.93990000" + }, + { + "id": "19590", + "name": "Haimen", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.19346000", + "longitude": "116.61219000" + }, + { + "id": "19617", + "name": "Hepo", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.43077000", + "longitude": "115.82991000" + }, + { + "id": "19620", + "name": "Heyuan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.73333000", + "longitude": "114.68333000" + }, + { + "id": "19637", + "name": "Huaicheng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.91952000", + "longitude": "112.17629000" + }, + { + "id": "19646", + "name": "Huanggang", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.67704000", + "longitude": "116.99961000" + }, + { + "id": "19669", + "name": "Huazhou", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "21.63333000", + "longitude": "110.58333000" + }, + { + "id": "19672", + "name": "Huicheng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.03845000", + "longitude": "116.28988000" + }, + { + "id": "19675", + "name": "Huizhou", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.11147000", + "longitude": "114.41523000" + }, + { + "id": "19681", + "name": "Humen", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.81899000", + "longitude": "113.67306000" + }, + { + "id": "19699", + "name": "Jiangmen", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.58333000", + "longitude": "113.08333000" + }, + { + "id": "19717", + "name": "Jiazi", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.87932000", + "longitude": "116.07318000" + }, + { + "id": "19720", + "name": "Jieshi", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.81027000", + "longitude": "115.83058000" + }, + { + "id": "19723", + "name": "Jieyang", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.54180000", + "longitude": "116.36581000" + }, + { + "id": "19807", + "name": "Lecheng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "25.12800000", + "longitude": "113.35041000" + }, + { + "id": "19821", + "name": "Lianjiang", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "21.64673000", + "longitude": "110.28172000" + }, + { + "id": "19826", + "name": "Lianzhou", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "24.78186000", + "longitude": "112.37120000" + }, + { + "id": "19833", + "name": "Licheng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.29549000", + "longitude": "113.82465000" + }, + { + "id": "19879", + "name": "Lubu", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.17233000", + "longitude": "112.28298000" + }, + { + "id": "19881", + "name": "Luocheng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.76953000", + "longitude": "111.56882000" + }, + { + "id": "19888", + "name": "Luoyang", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.16244000", + "longitude": "114.27342000" + }, + { + "id": "19898", + "name": "Maba", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "24.68413000", + "longitude": "113.59839000" + }, + { + "id": "19904", + "name": "Maoming", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "21.65000000", + "longitude": "110.90000000" + }, + { + "id": "19913", + "name": "Meizhou", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "24.28859000", + "longitude": "116.11768000" + }, + { + "id": "19939", + "name": "Nanfeng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.72695000", + "longitude": "111.79723000" + }, + { + "id": "19982", + "name": "Pingshan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.99376000", + "longitude": "114.71311000" + }, + { + "id": "19996", + "name": "Puning", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.31072000", + "longitude": "116.16869000" + }, + { + "id": "20027", + "name": "Qingyuan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.70000000", + "longitude": "113.03333000" + }, + { + "id": "20057", + "name": "Sanshui", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.15486000", + "longitude": "112.89161000" + }, + { + "id": "20076", + "name": "Shantou", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.36814000", + "longitude": "116.71479000" + }, + { + "id": "20077", + "name": "Shanwei", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.78199000", + "longitude": "115.34750000" + }, + { + "id": "20080", + "name": "Shaoguan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "24.80000000", + "longitude": "113.58333000" + }, + { + "id": "20083", + "name": "Shaping", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.77019000", + "longitude": "112.95776000" + }, + { + "id": "20091", + "name": "Shenzhen", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.55653000", + "longitude": "113.98590000" + }, + { + "id": "20101", + "name": "Shilong", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.11444000", + "longitude": "113.84722000" + }, + { + "id": "20103", + "name": "Shiqi", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.51682000", + "longitude": "113.38521000" + }, + { + "id": "20105", + "name": "Shiqiao", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.94640000", + "longitude": "113.35769000" + }, + { + "id": "20107", + "name": "Shiwan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.00107000", + "longitude": "113.07700000" + }, + { + "id": "20108", + "name": "Shixing", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "24.94824000", + "longitude": "114.06572000" + }, + { + "id": "20160", + "name": "Taishan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.25135000", + "longitude": "112.77990000" + }, + { + "id": "20170", + "name": "Tangping", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.03177000", + "longitude": "111.93537000" + }, + { + "id": "20230", + "name": "Wuchuan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "21.45713000", + "longitude": "110.76591000" + }, + { + "id": "20296", + "name": "Xingning", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "24.14830000", + "longitude": "115.72272000" + }, + { + "id": "20299", + "name": "Xinhui", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.45600000", + "longitude": "113.04820000" + }, + { + "id": "20312", + "name": "Xinyi", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.37303000", + "longitude": "110.94746000" + }, + { + "id": "20319", + "name": "Xiongzhou", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "25.11667000", + "longitude": "114.30000000" + }, + { + "id": "20333", + "name": "Xucheng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "20.32917000", + "longitude": "110.16712000" + }, + { + "id": "20341", + "name": "Yangchun", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.16667000", + "longitude": "111.78333000" + }, + { + "id": "20344", + "name": "Yangjiang", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "21.85563000", + "longitude": "111.96272000" + }, + { + "id": "20375", + "name": "Yingcheng", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "24.16588000", + "longitude": "113.41267000" + }, + { + "id": "20401", + "name": "Yunfu", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.92833000", + "longitude": "112.03954000" + }, + { + "id": "20429", + "name": "Zhanjiang", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "21.28145000", + "longitude": "110.34271000" + }, + { + "id": "20433", + "name": "Zhaoqing", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "23.04893000", + "longitude": "112.46091000" + }, + { + "id": "20451", + "name": "Zhongshan", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "21.31992000", + "longitude": "110.57230000" + }, + { + "id": "20452", + "name": "Zhongshan Prefecture", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.55358000", + "longitude": "113.37550000" + }, + { + "id": "20466", + "name": "Zhuhai", + "state_id": 2279, + "state_code": "GD", + "country_id": 45, + "country_code": "CN", + "latitude": "22.27694000", + "longitude": "113.56778000" + }, + { + "id": "19295", + "name": "Babu", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "24.41667000", + "longitude": "111.51667000" + }, + { + "id": "19299", + "name": "Baihe", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "22.13430000", + "longitude": "107.23200000" + }, + { + "id": "19303", + "name": "Baise City", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "23.89972000", + "longitude": "106.61333000" + }, + { + "id": "19304", + "name": "Baise Shi", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "23.90000000", + "longitude": "106.61667000" + }, + { + "id": "19331", + "name": "Beihai", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "21.48333000", + "longitude": "109.10000000" + }, + { + "id": "19407", + "name": "Chongzuo Shi", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "22.46541000", + "longitude": "107.39622000" + }, + { + "id": "19441", + "name": "Dazhai", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "25.80980000", + "longitude": "110.15000000" + }, + { + "id": "19498", + "name": "Fangchenggang Shi", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "21.93580000", + "longitude": "107.95932000" + }, + { + "id": "19569", + "name": "Guigang", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "23.09639000", + "longitude": "109.60917000" + }, + { + "id": "19570", + "name": "Guilin", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "25.28194000", + "longitude": "110.28639000" + }, + { + "id": "19571", + "name": "Guilin Shi", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "25.28333000", + "longitude": "110.28333000" + }, + { + "id": "19572", + "name": "Guiping", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "23.39336000", + "longitude": "110.07437000" + }, + { + "id": "19603", + "name": "Hechi Shi", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "24.70000000", + "longitude": "108.03000000" + }, + { + "id": "19743", + "name": "Jinji", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "23.22806000", + "longitude": "110.82611000" + }, + { + "id": "19789", + "name": "Laibin", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "23.70000000", + "longitude": "109.26667000" + }, + { + "id": "19827", + "name": "Lianzhou", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "21.66621000", + "longitude": "109.20116000" + }, + { + "id": "19840", + "name": "Lingcheng", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "22.70722000", + "longitude": "110.34917000" + }, + { + "id": "19863", + "name": "Liuzhou Shi", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "24.31667000", + "longitude": "109.40000000" + }, + { + "id": "19887", + "name": "Luorong", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "24.40583000", + "longitude": "109.60861000" + }, + { + "id": "19938", + "name": "Nandu", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "22.85250000", + "longitude": "110.82333000" + }, + { + "id": "19945", + "name": "Nanning", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "22.81667000", + "longitude": "108.31667000" + }, + { + "id": "19981", + "name": "Pingnan", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "23.54218000", + "longitude": "110.38946000" + }, + { + "id": "19995", + "name": "Pumiao", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "22.75867000", + "longitude": "108.48111000" + }, + { + "id": "20031", + "name": "Qinzhou", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "21.97296000", + "longitude": "108.62612000" + }, + { + "id": "20247", + "name": "Wuzhou", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "23.48333000", + "longitude": "111.31667000" + }, + { + "id": "20346", + "name": "Yangshuo", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "24.78081000", + "longitude": "110.48967000" + }, + { + "id": "20361", + "name": "Yashan", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "22.19750000", + "longitude": "109.94194000" + }, + { + "id": "20398", + "name": "Yulin", + "state_id": 2278, + "state_code": "GX", + "country_id": 45, + "country_code": "CN", + "latitude": "22.63333000", + "longitude": "110.15000000" + }, + { + "id": "19288", + "name": "Anshun", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.25000000", + "longitude": "105.93333000" + }, + { + "id": "19292", + "name": "Aoshi", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.40167000", + "longitude": "109.07111000" + }, + { + "id": "19297", + "name": "Bahuang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.71806000", + "longitude": "109.01889000" + }, + { + "id": "19307", + "name": "Baishi", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.97361000", + "longitude": "109.44333000" + }, + { + "id": "19313", + "name": "Bangdong", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.97556000", + "longitude": "109.18583000" + }, + { + "id": "19337", + "name": "Benchu", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.77111000", + "longitude": "109.29056000" + }, + { + "id": "19341", + "name": "Bijie", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.30193000", + "longitude": "105.28627000" + }, + { + "id": "19360", + "name": "Chadian", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.58194000", + "longitude": "109.13278000" + }, + { + "id": "19373", + "name": "Changsha", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.68778000", + "longitude": "105.98972000" + }, + { + "id": "19408", + "name": "Chumi", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.23361000", + "longitude": "106.83278000" + }, + { + "id": "19412", + "name": "Dabachang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.74250000", + "longitude": "108.34333000" + }, + { + "id": "19431", + "name": "Darong", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.78500000", + "longitude": "108.86400000" + }, + { + "id": "19484", + "name": "Dundong", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.01190000", + "longitude": "109.14100000" + }, + { + "id": "19487", + "name": "Duyun", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.26667000", + "longitude": "107.51667000" + }, + { + "id": "19542", + "name": "Gaoniang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.84250000", + "longitude": "109.17889000" + }, + { + "id": "19545", + "name": "Gaowu", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.56250000", + "longitude": "108.90800000" + }, + { + "id": "19549", + "name": "Gaozeng", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.80167000", + "longitude": "108.93750000" + }, + { + "id": "19558", + "name": "Guandu", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.56833000", + "longitude": "106.10255000" + }, + { + "id": "19575", + "name": "Guiyang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.58333000", + "longitude": "106.71667000" + }, + { + "id": "19630", + "name": "Hongzhou", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.12583000", + "longitude": "109.40889000" + }, + { + "id": "19666", + "name": "Huaqiu", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.11665000", + "longitude": "106.60225000" + }, + { + "id": "19800", + "name": "Lantian", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.02500000", + "longitude": "109.29472000" + }, + { + "id": "19813", + "name": "Liangcunchang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.40667000", + "longitude": "106.42444000" + }, + { + "id": "19861", + "name": "Liupanshui", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.59444000", + "longitude": "104.83333000" + }, + { + "id": "19869", + "name": "Longlisuo", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.41417000", + "longitude": "109.10222000" + }, + { + "id": "19877", + "name": "Loushanguan", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.13680000", + "longitude": "106.82200000" + }, + { + "id": "19906", + "name": "Maoping", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.73694000", + "longitude": "109.22111000" + }, + { + "id": "19970", + "name": "Ouyang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.41910000", + "longitude": "109.21600000" + }, + { + "id": "19979", + "name": "Pingjiang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.97056000", + "longitude": "108.39528000" + }, + { + "id": "20007", + "name": "Qiandongnan Miao and Dong Autonomous Prefecture", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.57380000", + "longitude": "108.59914000" + }, + { + "id": "20009", + "name": "Qianxinan Bouyeizu Miaozu Zizhizhou", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.38808000", + "longitude": "105.38740000" + }, + { + "id": "20014", + "name": "Qimeng", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.48472000", + "longitude": "108.99944000" + }, + { + "id": "20019", + "name": "Qinglang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.12472000", + "longitude": "108.73278000" + }, + { + "id": "20046", + "name": "Runsong", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.87000000", + "longitude": "109.09700000" + }, + { + "id": "20051", + "name": "Sanchahe", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.49528000", + "longitude": "106.42833000" + }, + { + "id": "20053", + "name": "Sangmu", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.21528000", + "longitude": "106.26889000" + }, + { + "id": "20104", + "name": "Shiqian", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.52250000", + "longitude": "108.22806000" + }, + { + "id": "20134", + "name": "Songkan", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.54972000", + "longitude": "106.85972000" + }, + { + "id": "20185", + "name": "Tingdong", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.82444000", + "longitude": "108.61250000" + }, + { + "id": "20189", + "name": "Tonggu", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.57222000", + "longitude": "109.30944000" + }, + { + "id": "20193", + "name": "Tongren", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.71722000", + "longitude": "109.18528000" + }, + { + "id": "20194", + "name": "Tongren Diqu", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.74188000", + "longitude": "109.19312000" + }, + { + "id": "20216", + "name": "Weining", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.85000000", + "longitude": "104.23333000" + }, + { + "id": "20224", + "name": "Wenshui", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.45056000", + "longitude": "106.52667000" + }, + { + "id": "20250", + "name": "Xiajiang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.75556000", + "longitude": "108.69194000" + }, + { + "id": "20276", + "name": "Xiaoweizhai", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.19028000", + "longitude": "107.51250000" + }, + { + "id": "20315", + "name": "Xinzhan", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.38833000", + "longitude": "106.85667000" + }, + { + "id": "20321", + "name": "Xishan", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "25.68528000", + "longitude": "108.96389000" + }, + { + "id": "20334", + "name": "Xujiaba", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.88472000", + "longitude": "108.11361000" + }, + { + "id": "20347", + "name": "Yangtou", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.68944000", + "longitude": "109.41389000" + }, + { + "id": "20390", + "name": "Youyupu", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.55170000", + "longitude": "109.13500000" + }, + { + "id": "20448", + "name": "Zhongchao", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "26.13750000", + "longitude": "109.22000000" + }, + { + "id": "20468", + "name": "Zhujiachang", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.35750000", + "longitude": "108.93833000" + }, + { + "id": "20483", + "name": "Zunyi", + "state_id": 2261, + "state_code": "GZ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.68667000", + "longitude": "106.90722000" + }, + { + "id": "19321", + "name": "Basuo", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "19.09390000", + "longitude": "108.65456000" + }, + { + "id": "19406", + "name": "Chongshan", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "18.78229000", + "longitude": "109.50130000" + }, + { + "id": "19415", + "name": "Dadonghai", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "18.22056000", + "longitude": "109.51028000" + }, + { + "id": "19584", + "name": "Haikou", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "20.04583000", + "longitude": "110.34167000" + }, + { + "id": "19745", + "name": "Jinjiang", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "19.72878000", + "longitude": "110.00851000" + }, + { + "id": "19837", + "name": "Lincheng", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "19.90778000", + "longitude": "109.68583000" + }, + { + "id": "19932", + "name": "Nada", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "19.52257000", + "longitude": "109.57860000" + }, + { + "id": "20032", + "name": "Qionghai", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "19.24250000", + "longitude": "110.46417000" + }, + { + "id": "20034", + "name": "Qiongshan", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "20.00583000", + "longitude": "110.35417000" + }, + { + "id": "20056", + "name": "Sansha", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "16.83387000", + "longitude": "112.33435000" + }, + { + "id": "20058", + "name": "Sanya", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "18.24306000", + "longitude": "109.50500000" + }, + { + "id": "20209", + "name": "Wanning", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "18.79931000", + "longitude": "110.38410000" + }, + { + "id": "20217", + "name": "Wenchang", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "19.61570000", + "longitude": "110.74894000" + }, + { + "id": "20325", + "name": "Xiuying", + "state_id": 2273, + "state_code": "HI", + "country_id": 45, + "country_code": "CN", + "latitude": "20.00073000", + "longitude": "110.29359000" + }, + { + "id": "19314", + "name": "Baoding", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "38.85111000", + "longitude": "115.49028000" + }, + { + "id": "19329", + "name": "Beidaihehaibin", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.82222000", + "longitude": "119.51806000" + }, + { + "id": "19349", + "name": "Botou", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "38.06667000", + "longitude": "116.56660000" + }, + { + "id": "19357", + "name": "Cangzhou", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "38.31667000", + "longitude": "116.86667000" + }, + { + "id": "19358", + "name": "Cangzhou Shi", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "38.31000000", + "longitude": "116.86000000" + }, + { + "id": "19368", + "name": "Changli", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.70417000", + "longitude": "119.15056000" + }, + { + "id": "19385", + "name": "Chengde", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "40.95190000", + "longitude": "117.95883000" + }, + { + "id": "19386", + "name": "Chengde Prefecture", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "40.97000000", + "longitude": "117.93000000" + }, + { + "id": "19461", + "name": "Dingzhou", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "38.51306000", + "longitude": "114.99556000" + }, + { + "id": "19509", + "name": "Fengrun", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.83333000", + "longitude": "118.11667000" + }, + { + "id": "19581", + "name": "Guye", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.73054000", + "longitude": "118.44085000" + }, + { + "id": "19597", + "name": "Handan", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "36.60056000", + "longitude": "114.46778000" + }, + { + "id": "19605", + "name": "Hecun", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "36.53333000", + "longitude": "114.11111000" + }, + { + "id": "19614", + "name": "Hengshui", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "37.73222000", + "longitude": "115.70111000" + }, + { + "id": "19794", + "name": "Langfang", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.50972000", + "longitude": "116.69472000" + }, + { + "id": "19795", + "name": "Langfang Shi", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.51667000", + "longitude": "116.68333000" + }, + { + "id": "19851", + "name": "Linshui", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "36.42472000", + "longitude": "114.20472000" + }, + { + "id": "19853", + "name": "Linxi", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.71183000", + "longitude": "118.44954000" + }, + { + "id": "19878", + "name": "Luancheng", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "37.87917000", + "longitude": "114.65167000" + }, + { + "id": "19940", + "name": "Nangong", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "37.35806000", + "longitude": "115.37444000" + }, + { + "id": "19976", + "name": "Pengcheng", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "36.43111000", + "longitude": "114.17000000" + }, + { + "id": "20029", + "name": "Qinhuangdao", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.93167000", + "longitude": "119.58833000" + }, + { + "id": "20040", + "name": "Renqiu", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "38.69889000", + "longitude": "116.09361000" + }, + { + "id": "20060", + "name": "Shahecheng", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "36.93833000", + "longitude": "114.50583000" + }, + { + "id": "20071", + "name": "Shanhaiguan", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "40.00250000", + "longitude": "119.74889000" + }, + { + "id": "20096", + "name": "Shijiazhuang", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "38.04139000", + "longitude": "114.47861000" + }, + { + "id": "20097", + "name": "Shijiazhuang Shi", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "38.04000000", + "longitude": "114.47000000" + }, + { + "id": "20135", + "name": "Songling", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "40.29303000", + "longitude": "118.26908000" + }, + { + "id": "20168", + "name": "Tangjiazhuang", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.74326000", + "longitude": "118.45099000" + }, + { + "id": "20171", + "name": "Tangshan", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.63333000", + "longitude": "118.18333000" + }, + { + "id": "20172", + "name": "Tangshan Shi", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.63000000", + "longitude": "118.18000000" + }, + { + "id": "20178", + "name": "Tianchang", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "37.99806000", + "longitude": "114.01556000" + }, + { + "id": "20297", + "name": "Xingtai", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "37.06306000", + "longitude": "114.49417000" + }, + { + "id": "20301", + "name": "Xinji", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "37.90278000", + "longitude": "115.20361000" + }, + { + "id": "20422", + "name": "Zhangjiakou", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "40.81000000", + "longitude": "114.87944000" + }, + { + "id": "20423", + "name": "Zhangjiakou Shi", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "40.83333000", + "longitude": "114.93333000" + }, + { + "id": "20424", + "name": "Zhangjiakou Shi Xuanhua Qu", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "40.61028000", + "longitude": "115.04472000" + }, + { + "id": "20432", + "name": "Zhaogezhuang", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "39.76538000", + "longitude": "118.41191000" + }, + { + "id": "20482", + "name": "Zunhua", + "state_id": 2280, + "state_code": "HE", + "country_id": 45, + "country_code": "CN", + "latitude": "40.17917000", + "longitude": "117.95861000" + }, + { + "id": "19272", + "name": "Acheng", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.54545000", + "longitude": "126.97703000" + }, + { + "id": "19279", + "name": "Anda", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.40202000", + "longitude": "125.31454000" + }, + { + "id": "19302", + "name": "Baiquan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.60605000", + "longitude": "126.08481000" + }, + { + "id": "19312", + "name": "Bamiantong", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.91738000", + "longitude": "130.52000000" + }, + { + "id": "19316", + "name": "Baoqing", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.33167000", + "longitude": "132.21111000" + }, + { + "id": "19317", + "name": "Baoshan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.55861000", + "longitude": "131.42444000" + }, + { + "id": "19322", + "name": "Bayan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.07556000", + "longitude": "127.39840000" + }, + { + "id": "19336", + "name": "Bei’an", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "48.26667000", + "longitude": "126.60000000" + }, + { + "id": "19344", + "name": "Binzhou", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.75281000", + "longitude": "127.47986000" + }, + { + "id": "19347", + "name": "Boli", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.75279000", + "longitude": "130.57211000" + }, + { + "id": "19361", + "name": "Chaihe", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.75980000", + "longitude": "129.67826000" + }, + { + "id": "19397", + "name": "Chengzihe", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.33333000", + "longitude": "131.06667000" + }, + { + "id": "19430", + "name": "Daqing", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.58333000", + "longitude": "125.00000000" + }, + { + "id": "19473", + "name": "Dongning", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.06219000", + "longitude": "131.12075000" + }, + { + "id": "19480", + "name": "Dongxing", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.36088000", + "longitude": "130.78679000" + }, + { + "id": "19503", + "name": "Fendou", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.64142000", + "longitude": "124.86283000" + }, + { + "id": "19511", + "name": "Fengxiang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.57549000", + "longitude": "130.82306000" + }, + { + "id": "19518", + "name": "Fujin", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.26000000", + "longitude": "132.03222000" + }, + { + "id": "19520", + "name": "Fuli", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.72167000", + "longitude": "131.13944000" + }, + { + "id": "19528", + "name": "Fuyu", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.79756000", + "longitude": "124.45731000" + }, + { + "id": "19530", + "name": "Fuyuan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "48.36306000", + "longitude": "134.28917000" + }, + { + "id": "19535", + "name": "Gannan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.91472000", + "longitude": "123.50306000" + }, + { + "id": "19588", + "name": "Hailin", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.57149000", + "longitude": "129.38539000" + }, + { + "id": "19589", + "name": "Hailun", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.45650000", + "longitude": "126.95368000" + }, + { + "id": "19601", + "name": "Harbin", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.75000000", + "longitude": "126.65000000" + }, + { + "id": "19609", + "name": "Hegang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.35118000", + "longitude": "130.30012000" + }, + { + "id": "19610", + "name": "Heihe", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "50.24413000", + "longitude": "127.49016000" + }, + { + "id": "19624", + "name": "Honggang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.40124000", + "longitude": "124.88322000" + }, + { + "id": "19645", + "name": "Huanan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.22070000", + "longitude": "130.52500000" + }, + { + "id": "19676", + "name": "Hulan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.98333000", + "longitude": "126.60000000" + }, + { + "id": "19677", + "name": "Hulan Ergi", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.20417000", + "longitude": "123.63333000" + }, + { + "id": "19694", + "name": "Jiamusi", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.79927000", + "longitude": "130.31633000" + }, + { + "id": "19718", + "name": "Jidong", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.21667000", + "longitude": "131.08333000" + }, + { + "id": "19760", + "name": "Jixi", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.30109000", + "longitude": "130.95718000" + }, + { + "id": "19797", + "name": "Langxiang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.94985000", + "longitude": "128.86849000" + }, + { + "id": "19802", + "name": "Lanxi", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.25785000", + "longitude": "126.28269000" + }, + { + "id": "19819", + "name": "Lianhe", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.13333000", + "longitude": "129.27426000" + }, + { + "id": "19841", + "name": "Lingdong", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.56694000", + "longitude": "131.14528000" + }, + { + "id": "19847", + "name": "Linkou", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.28606000", + "longitude": "130.26151000" + }, + { + "id": "19865", + "name": "Longfeng", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.53168000", + "longitude": "125.10380000" + }, + { + "id": "19867", + "name": "Longjiang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.33072000", + "longitude": "123.17816000" + }, + { + "id": "19921", + "name": "Mingshui", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.18150000", + "longitude": "125.90027000" + }, + { + "id": "19925", + "name": "Mishan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.55000000", + "longitude": "131.88333000" + }, + { + "id": "19929", + "name": "Mudanjiang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.58333000", + "longitude": "129.60000000" + }, + { + "id": "19953", + "name": "Nehe", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "48.48333000", + "longitude": "124.83333000" + }, + { + "id": "19956", + "name": "Nenjiang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "49.17414000", + "longitude": "125.21774000" + }, + { + "id": "19958", + "name": "Nianzishan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.51667000", + "longitude": "122.88333000" + }, + { + "id": "19964", + "name": "Ning’an", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.34395000", + "longitude": "129.46556000" + }, + { + "id": "20017", + "name": "Qinggang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.68469000", + "longitude": "126.10595000" + }, + { + "id": "20035", + "name": "Qiqihar", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.34088000", + "longitude": "123.96045000" + }, + { + "id": "20070", + "name": "Shangzhi", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.21406000", + "longitude": "127.97426000" + }, + { + "id": "20072", + "name": "Shanhecun", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.71131000", + "longitude": "128.58029000" + }, + { + "id": "20114", + "name": "Shuangcheng", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.35000000", + "longitude": "126.28333000" + }, + { + "id": "20120", + "name": "Shuangyashan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.63611000", + "longitude": "131.15389000" + }, + { + "id": "20140", + "name": "Suifenhe", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.39982000", + "longitude": "131.14775000" + }, + { + "id": "20141", + "name": "Suihua", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.63954000", + "longitude": "126.99508000" + }, + { + "id": "20142", + "name": "Suileng", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.24805000", + "longitude": "127.09535000" + }, + { + "id": "20154", + "name": "Tahe", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "52.33333000", + "longitude": "124.73333000" + }, + { + "id": "20156", + "name": "Taihecun", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.76347000", + "longitude": "130.85048000" + }, + { + "id": "20157", + "name": "Taikang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.86135000", + "longitude": "124.44200000" + }, + { + "id": "20158", + "name": "Tailai", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.38909000", + "longitude": "123.41371000" + }, + { + "id": "20182", + "name": "Tieli", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.98043000", + "longitude": "128.04497000" + }, + { + "id": "20207", + "name": "Wangkui", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.83283000", + "longitude": "126.47768000" + }, + { + "id": "20228", + "name": "Wuchang", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.91428000", + "longitude": "127.15001000" + }, + { + "id": "20304", + "name": "Xinqing", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "48.28701000", + "longitude": "129.52337000" + }, + { + "id": "20370", + "name": "Yichun", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.72143000", + "longitude": "128.87529000" + }, + { + "id": "20372", + "name": "Yilan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.31618000", + "longitude": "129.55455000" + }, + { + "id": "20389", + "name": "Youhao", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "47.85306000", + "longitude": "128.83565000" + }, + { + "id": "20431", + "name": "Zhaodong", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "46.06771000", + "longitude": "125.98263000" + }, + { + "id": "20436", + "name": "Zhaoyuan", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.50000000", + "longitude": "125.13333000" + }, + { + "id": "20437", + "name": "Zhaozhou", + "state_id": 2265, + "state_code": "HL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.68333000", + "longitude": "125.31667000" + }, + { + "id": "19290", + "name": "Anyang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "36.09600000", + "longitude": "114.38278000" + }, + { + "id": "19291", + "name": "Anyang Shi", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "36.13639000", + "longitude": "114.33667000" + }, + { + "id": "19342", + "name": "Binhe", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "32.68833000", + "longitude": "112.82750000" + }, + { + "id": "19388", + "name": "Chengguan", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.45861000", + "longitude": "113.79778000" + }, + { + "id": "19390", + "name": "Chengjiao", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.40495000", + "longitude": "114.06043000" + }, + { + "id": "19428", + "name": "Daokou", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.56389000", + "longitude": "114.50583000" + }, + { + "id": "19456", + "name": "Dingcheng", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "32.12722000", + "longitude": "115.03944000" + }, + { + "id": "19594", + "name": "Hancheng", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "32.51861000", + "longitude": "112.35222000" + }, + { + "id": "19602", + "name": "Hebi", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.89917000", + "longitude": "114.19250000" + }, + { + "id": "19638", + "name": "Huaidian", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.43333000", + "longitude": "115.03333000" + }, + { + "id": "19670", + "name": "Huazhou", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "32.68222000", + "longitude": "112.08194000" + }, + { + "id": "19671", + "name": "Huichang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.90376000", + "longitude": "112.78426000" + }, + { + "id": "19708", + "name": "Jianshe", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.21750000", + "longitude": "113.76889000" + }, + { + "id": "19712", + "name": "Jiaozuo", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.23972000", + "longitude": "113.23306000" + }, + { + "id": "19754", + "name": "Jishui", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.73333000", + "longitude": "115.40000000" + }, + { + "id": "19761", + "name": "Jiyuan", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.09000000", + "longitude": "112.58000000" + }, + { + "id": "19766", + "name": "Kaifeng", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.79860000", + "longitude": "114.30742000" + }, + { + "id": "19769", + "name": "Kaiyuan", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "36.06813000", + "longitude": "113.82209000" + }, + { + "id": "19839", + "name": "Lingbao Chengguanzhen", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.51972000", + "longitude": "110.86444000" + }, + { + "id": "19883", + "name": "Luohe", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.56394000", + "longitude": "114.04272000" + }, + { + "id": "19884", + "name": "Luohe Shi", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.68806000", + "longitude": "113.91306000" + }, + { + "id": "19889", + "name": "Luoyang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.68361000", + "longitude": "112.45361000" + }, + { + "id": "19918", + "name": "Minggang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "32.45861000", + "longitude": "114.04861000" + }, + { + "id": "19950", + "name": "Nanyang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "32.99472000", + "longitude": "112.53278000" + }, + { + "id": "19977", + "name": "Pingdingshan", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.73847000", + "longitude": "113.30119000" + }, + { + "id": "20000", + "name": "Puyang Chengguanzhen", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.70506000", + "longitude": "115.01409000" + }, + { + "id": "20001", + "name": "Puyang Shi", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.81333000", + "longitude": "115.15500000" + }, + { + "id": "20021", + "name": "Qingping", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.53656000", + "longitude": "113.37526000" + }, + { + "id": "20045", + "name": "Runing", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.00111000", + "longitude": "114.35417000" + }, + { + "id": "20048", + "name": "Ruzhou", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.16167000", + "longitude": "112.82972000" + }, + { + "id": "20066", + "name": "Shangqiu", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.45000000", + "longitude": "115.65000000" + }, + { + "id": "20137", + "name": "Songyang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.45528000", + "longitude": "113.02806000" + }, + { + "id": "20147", + "name": "Suohe", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.78722000", + "longitude": "113.35806000" + }, + { + "id": "20166", + "name": "Tanbei", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.08806000", + "longitude": "112.93944000" + }, + { + "id": "20205", + "name": "Wacheng", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.78333000", + "longitude": "114.51667000" + }, + { + "id": "20254", + "name": "Xiangcheng Chengguanzhen", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.84703000", + "longitude": "113.47780000" + }, + { + "id": "20289", + "name": "Xincheng", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.63333000", + "longitude": "115.18333000" + }, + { + "id": "20298", + "name": "Xinhualu", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.39633000", + "longitude": "113.72466000" + }, + { + "id": "20308", + "name": "Xinxiang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.19033000", + "longitude": "113.80151000" + }, + { + "id": "20309", + "name": "Xinxiang Shi", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.30861000", + "longitude": "114.05111000" + }, + { + "id": "20311", + "name": "Xinyang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "32.12278000", + "longitude": "114.06556000" + }, + { + "id": "20327", + "name": "Xixiang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.16278000", + "longitude": "112.86500000" + }, + { + "id": "20331", + "name": "Xuchang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.03189000", + "longitude": "113.86299000" + }, + { + "id": "20332", + "name": "Xuchang Shi", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.14778000", + "longitude": "113.71472000" + }, + { + "id": "20338", + "name": "Yakou", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.29649000", + "longitude": "113.52351000" + }, + { + "id": "20354", + "name": "Yanshi Chengguanzhen", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.71601000", + "longitude": "112.79568000" + }, + { + "id": "20371", + "name": "Yigou", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "35.81139000", + "longitude": "114.31667000" + }, + { + "id": "20373", + "name": "Yima", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.73806000", + "longitude": "111.88389000" + }, + { + "id": "20376", + "name": "Yingchuan", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.16278000", + "longitude": "113.46389000" + }, + { + "id": "20403", + "name": "Yunyang", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.44743000", + "longitude": "112.71422000" + }, + { + "id": "20439", + "name": "Zhengzhou", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.75778000", + "longitude": "113.64861000" + }, + { + "id": "20460", + "name": "Zhoukou", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "33.63333000", + "longitude": "114.63333000" + }, + { + "id": "20470", + "name": "Zhumadian", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "32.97944000", + "longitude": "114.02944000" + }, + { + "id": "20471", + "name": "Zhumadian Shi", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "32.99417000", + "longitude": "114.06167000" + }, + { + "id": "20480", + "name": "Zijinglu", + "state_id": 2259, + "state_code": "HA", + "country_id": 45, + "country_code": "CN", + "latitude": "34.76000000", + "longitude": "112.97139000" + }, + { + "id": "19282", + "name": "Anlu", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.25750000", + "longitude": "113.67833000" + }, + { + "id": "19353", + "name": "Buhe", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.28757000", + "longitude": "112.22979000" + }, + { + "id": "19355", + "name": "Caidian", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.58333000", + "longitude": "114.03333000" + }, + { + "id": "19359", + "name": "Caohe", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.22970000", + "longitude": "115.43346000" + }, + { + "id": "19396", + "name": "Chengzhong", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.94454000", + "longitude": "113.55284000" + }, + { + "id": "19425", + "name": "Danjiangkou", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "32.54278000", + "longitude": "111.50861000" + }, + { + "id": "19440", + "name": "Daye", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.08333000", + "longitude": "114.95000000" + }, + { + "id": "19486", + "name": "Duobao", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.67000000", + "longitude": "112.68952000" + }, + { + "id": "19491", + "name": "Enshi", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.30000000", + "longitude": "109.48333000" + }, + { + "id": "19492", + "name": "Enshi Tujiazu Miaozu Zizhizhou", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.19810000", + "longitude": "109.67555000" + }, + { + "id": "19495", + "name": "Ezhou", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.40000000", + "longitude": "114.83333000" + }, + { + "id": "19496", + "name": "Ezhou Shi", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.48832000", + "longitude": "114.77979000" + }, + { + "id": "19507", + "name": "Fengkou", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.08268000", + "longitude": "113.33346000" + }, + { + "id": "19560", + "name": "Guangshui", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.61990000", + "longitude": "113.99780000" + }, + { + "id": "19567", + "name": "Gucheng Chengguanzhen", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "32.26604000", + "longitude": "111.63476000" + }, + { + "id": "19596", + "name": "Hanchuan", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.65000000", + "longitude": "113.76667000" + }, + { + "id": "19647", + "name": "Huanggang", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.45143000", + "longitude": "114.87035000" + }, + { + "id": "19651", + "name": "Huangmei", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.19235000", + "longitude": "116.02496000" + }, + { + "id": "19654", + "name": "Huangpi", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.88453000", + "longitude": "114.37789000" + }, + { + "id": "19658", + "name": "Huangshi", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.24706000", + "longitude": "115.04814000" + }, + { + "id": "19663", + "name": "Huangzhou", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.45000000", + "longitude": "114.80000000" + }, + { + "id": "19735", + "name": "Jingling", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.65000000", + "longitude": "113.10000000" + }, + { + "id": "19736", + "name": "Jingmen", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.03361000", + "longitude": "112.20472000" + }, + { + "id": "19737", + "name": "Jingmen Shi", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.11244000", + "longitude": "112.64310000" + }, + { + "id": "19738", + "name": "Jingzhou", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.35028000", + "longitude": "112.19028000" + }, + { + "id": "19805", + "name": "Laohekou", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "32.38583000", + "longitude": "111.66778000" + }, + { + "id": "19834", + "name": "Lichuan", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.30000000", + "longitude": "108.85000000" + }, + { + "id": "19900", + "name": "Macheng", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.18013000", + "longitude": "115.02213000" + }, + { + "id": "19951", + "name": "Nanzhang Chengguanzhen", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.78394000", + "longitude": "111.82752000" + }, + { + "id": "19997", + "name": "Puqi", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "29.71667000", + "longitude": "113.88333000" + }, + { + "id": "20008", + "name": "Qianjiang", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.42100000", + "longitude": "112.89190000" + }, + { + "id": "20022", + "name": "Qingquan", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.45113000", + "longitude": "115.25593000" + }, + { + "id": "20085", + "name": "Shashi", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.30722000", + "longitude": "112.24472000" + }, + { + "id": "20089", + "name": "Shennongjia", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.58339000", + "longitude": "110.49720000" + }, + { + "id": "20109", + "name": "Shiyan", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "32.64750000", + "longitude": "110.77806000" + }, + { + "id": "20145", + "name": "Suizhou", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.71111000", + "longitude": "113.36306000" + }, + { + "id": "20233", + "name": "Wuhan", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.58333000", + "longitude": "114.26667000" + }, + { + "id": "20240", + "name": "Wuxue", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "29.85058000", + "longitude": "115.55250000" + }, + { + "id": "20258", + "name": "Xiangyang", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "32.04220000", + "longitude": "112.14479000" + }, + { + "id": "20261", + "name": "Xianning", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "29.84347000", + "longitude": "114.32201000" + }, + { + "id": "20262", + "name": "Xianning Prefecture", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "29.66609000", + "longitude": "114.26389000" + }, + { + "id": "20266", + "name": "Xiantao", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.37080000", + "longitude": "113.44294000" + }, + { + "id": "20269", + "name": "Xiaogan", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.92689000", + "longitude": "113.92221000" + }, + { + "id": "20282", + "name": "Xihe", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.68635000", + "longitude": "113.46585000" + }, + { + "id": "20290", + "name": "Xindi", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "29.81667000", + "longitude": "113.46667000" + }, + { + "id": "20305", + "name": "Xinshi", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.04704000", + "longitude": "113.14098000" + }, + { + "id": "20317", + "name": "Xinzhou", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.86667000", + "longitude": "114.80000000" + }, + { + "id": "20323", + "name": "Xiulin", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "29.71667000", + "longitude": "112.40000000" + }, + { + "id": "20366", + "name": "Yichang", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.71444000", + "longitude": "111.28472000" + }, + { + "id": "20367", + "name": "Yicheng", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.70472000", + "longitude": "112.25611000" + }, + { + "id": "20402", + "name": "Yunmeng Chengguanzhen", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.06251000", + "longitude": "113.76545000" + }, + { + "id": "20414", + "name": "Zaoyang", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "32.12722000", + "longitude": "112.75417000" + }, + { + "id": "20445", + "name": "Zhicheng", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.29556000", + "longitude": "111.50472000" + }, + { + "id": "20446", + "name": "Zhijiang", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "30.42139000", + "longitude": "111.75333000" + }, + { + "id": "20455", + "name": "Zhongxiang", + "state_id": 2274, + "state_code": "HB", + "country_id": 45, + "country_code": "CN", + "latitude": "31.16611000", + "longitude": "112.58306000" + }, + { + "id": "19280", + "name": "Anjiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.31944000", + "longitude": "110.10306000" + }, + { + "id": "19283", + "name": "Anping", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.86639000", + "longitude": "110.11611000" + }, + { + "id": "19289", + "name": "Anxiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "29.40000000", + "longitude": "112.15000000" + }, + { + "id": "19305", + "name": "Baisha", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.52222000", + "longitude": "110.93111000" + }, + { + "id": "19345", + "name": "Biyong", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.18722000", + "longitude": "109.51000000" + }, + { + "id": "19346", + "name": "Bojia", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.46722000", + "longitude": "111.96806000" + }, + { + "id": "19350", + "name": "Boyang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.21167000", + "longitude": "109.52056000" + }, + { + "id": "19352", + "name": "Bozhou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.37889000", + "longitude": "109.27778000" + }, + { + "id": "19364", + "name": "Changde", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "29.04638000", + "longitude": "111.67830000" + }, + { + "id": "19374", + "name": "Changsha", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.19874000", + "longitude": "112.97087000" + }, + { + "id": "19375", + "name": "Changsha Shi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.14582000", + "longitude": "113.22967000" + }, + { + "id": "19384", + "name": "Chatian", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.80222000", + "longitude": "109.37361000" + }, + { + "id": "19398", + "name": "Chenzhou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "25.80000000", + "longitude": "113.03333000" + }, + { + "id": "19413", + "name": "Dabaozi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.69556000", + "longitude": "109.44778000" + }, + { + "id": "19445", + "name": "Dehang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.30710000", + "longitude": "109.79668000" + }, + { + "id": "19449", + "name": "Dengjiapu", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.90444000", + "longitude": "110.92000000" + }, + { + "id": "19451", + "name": "Dengyuantai", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.68806000", + "longitude": "110.54222000" + }, + { + "id": "19474", + "name": "Dongshan Dongzuxiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.59500000", + "longitude": "109.89667000" + }, + { + "id": "19506", + "name": "Fenghuang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.93557000", + "longitude": "109.59961000" + }, + { + "id": "19534", + "name": "Gangdong", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.91694000", + "longitude": "110.83417000" + }, + { + "id": "19544", + "name": "Gaoqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.63361000", + "longitude": "110.90000000" + }, + { + "id": "19547", + "name": "Gaoyi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.95944000", + "longitude": "110.01556000" + }, + { + "id": "19565", + "name": "Guankou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.15861000", + "longitude": "113.62709000" + }, + { + "id": "19613", + "name": "Hengbanqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.17167000", + "longitude": "110.86528000" + }, + { + "id": "19615", + "name": "Hengyang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.88946000", + "longitude": "112.61888000" + }, + { + "id": "19619", + "name": "Hexiangqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.22028000", + "longitude": "110.96333000" + }, + { + "id": "19626", + "name": "Hongjiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.11000000", + "longitude": "109.99556000" + }, + { + "id": "19627", + "name": "Hongqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.76837000", + "longitude": "112.10814000" + }, + { + "id": "19639", + "name": "Huaihua", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.56337000", + "longitude": "110.00404000" + }, + { + "id": "19648", + "name": "Huangjinjing", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.58563000", + "longitude": "110.89133000" + }, + { + "id": "19649", + "name": "Huanglong", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.54139000", + "longitude": "110.93444000" + }, + { + "id": "19650", + "name": "Huangmaoyuan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.40417000", + "longitude": "110.47472000" + }, + { + "id": "19655", + "name": "Huangqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.02194000", + "longitude": "110.84056000" + }, + { + "id": "19660", + "name": "Huangtukuang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.91528000", + "longitude": "110.40778000" + }, + { + "id": "19661", + "name": "Huangxikou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.71889000", + "longitude": "110.38500000" + }, + { + "id": "19665", + "name": "Huaqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.70806000", + "longitude": "110.14194000" + }, + { + "id": "19668", + "name": "Huayuan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.91361000", + "longitude": "110.53583000" + }, + { + "id": "19684", + "name": "Huomachong", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.88333000", + "longitude": "110.23000000" + }, + { + "id": "19696", + "name": "Jiangfang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.50158000", + "longitude": "110.34640000" + }, + { + "id": "19698", + "name": "Jiangkouxu", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.69417000", + "longitude": "109.73583000" + }, + { + "id": "19700", + "name": "Jiangshi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.12333000", + "longitude": "109.73778000" + }, + { + "id": "19739", + "name": "Jinhe", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.71694000", + "longitude": "109.60472000" + }, + { + "id": "19748", + "name": "Jinshi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "29.60487000", + "longitude": "111.87012000" + }, + { + "id": "19749", + "name": "Jinshiqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.58425000", + "longitude": "110.93634000" + }, + { + "id": "19799", + "name": "Lanli", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.88694000", + "longitude": "109.91861000" + }, + { + "id": "19808", + "name": "Leiyang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.40238000", + "longitude": "112.85908000" + }, + { + "id": "19809", + "name": "Lengshuijiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.68806000", + "longitude": "111.42944000" + }, + { + "id": "19810", + "name": "Lengshuitan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.41110000", + "longitude": "111.59559000" + }, + { + "id": "19818", + "name": "Liangyaping", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.71833000", + "longitude": "110.67083000" + }, + { + "id": "19824", + "name": "Lianyuan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.68833000", + "longitude": "111.66417000" + }, + { + "id": "19846", + "name": "Linkou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.24806000", + "longitude": "109.86361000" + }, + { + "id": "19859", + "name": "Liuduzhai", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.36611000", + "longitude": "110.93500000" + }, + { + "id": "19864", + "name": "Lixiqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.79472000", + "longitude": "110.41806000" + }, + { + "id": "19873", + "name": "Longtan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.41139000", + "longitude": "110.53639000" + }, + { + "id": "19874", + "name": "Longtou’an", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.67028000", + "longitude": "110.33611000" + }, + { + "id": "19876", + "name": "Loudi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.73444000", + "longitude": "111.99444000" + }, + { + "id": "19885", + "name": "Luojiu", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.51583000", + "longitude": "109.80889000" + }, + { + "id": "19893", + "name": "Luyang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.62389000", + "longitude": "110.09889000" + }, + { + "id": "19909", + "name": "Ma’an", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.97750000", + "longitude": "110.72111000" + }, + { + "id": "19902", + "name": "Malin", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.45500000", + "longitude": "110.64167000" + }, + { + "id": "19905", + "name": "Maoping", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.51972000", + "longitude": "110.41194000" + }, + { + "id": "19944", + "name": "Nanmuping", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.31111000", + "longitude": "109.67861000" + }, + { + "id": "19952", + "name": "Nanzhou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "29.35955000", + "longitude": "112.40243000" + }, + { + "id": "19989", + "name": "Prefecture of Chenzhou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "25.84347000", + "longitude": "113.05378000" + }, + { + "id": "19993", + "name": "Pukou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.52222000", + "longitude": "109.55583000" + }, + { + "id": "20002", + "name": "Puzi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.98639000", + "longitude": "109.77639000" + }, + { + "id": "20006", + "name": "Qiancheng", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.18501000", + "longitude": "109.76543000" + }, + { + "id": "20010", + "name": "Qianzhou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.31925000", + "longitude": "109.73346000" + }, + { + "id": "20011", + "name": "Qiaojiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.93722000", + "longitude": "110.67639000" + }, + { + "id": "20018", + "name": "Qingjiangqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.60444000", + "longitude": "110.98528000" + }, + { + "id": "20024", + "name": "Qingxi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.43114000", + "longitude": "110.35489000" + }, + { + "id": "20033", + "name": "Qionghu", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.84061000", + "longitude": "112.37399000" + }, + { + "id": "20047", + "name": "Ruoshui", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.00194000", + "longitude": "109.96667000" + }, + { + "id": "20065", + "name": "Shangmei", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.74278000", + "longitude": "111.29556000" + }, + { + "id": "20073", + "name": "Shanmen", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.22500000", + "longitude": "110.69278000" + }, + { + "id": "20094", + "name": "Shijiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.08194000", + "longitude": "110.79333000" + }, + { + "id": "20116", + "name": "Shuangjiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.15467000", + "longitude": "109.71380000" + }, + { + "id": "20117", + "name": "Shuangxi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.22833000", + "longitude": "109.85583000" + }, + { + "id": "20122", + "name": "Shuiche", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.68694000", + "longitude": "110.99972000" + }, + { + "id": "20123", + "name": "Shuidatian", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.85222000", + "longitude": "109.60472000" + }, + { + "id": "20128", + "name": "Simenqian", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.48722000", + "longitude": "110.88611000" + }, + { + "id": "20167", + "name": "Tangjiafang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.84000000", + "longitude": "110.36472000" + }, + { + "id": "20175", + "name": "Tanwan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.96639000", + "longitude": "110.15028000" + }, + { + "id": "20196", + "name": "Tongwan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.58111000", + "longitude": "110.27722000" + }, + { + "id": "20199", + "name": "Tuokou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.12472000", + "longitude": "109.62472000" + }, + { + "id": "20210", + "name": "Wantouqiao", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.84111000", + "longitude": "110.61944000" + }, + { + "id": "20225", + "name": "Wenxing", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.68208000", + "longitude": "112.87864000" + }, + { + "id": "20235", + "name": "Wulingyuan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "29.34936000", + "longitude": "110.54407000" + }, + { + "id": "20238", + "name": "Wuxi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.58440000", + "longitude": "111.85900000" + }, + { + "id": "20242", + "name": "Wuyang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.74278000", + "longitude": "110.32833000" + }, + { + "id": "20255", + "name": "Xiangtan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.85000000", + "longitude": "112.90000000" + }, + { + "id": "20256", + "name": "Xiangxi Tujiazu Miaozu Zizhizhou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.70573000", + "longitude": "109.73329000" + }, + { + "id": "20257", + "name": "Xiangxiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.73333000", + "longitude": "112.53333000" + }, + { + "id": "20264", + "name": "Xianrenwan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.75444000", + "longitude": "110.32972000" + }, + { + "id": "20267", + "name": "Xianxi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.33472000", + "longitude": "109.64306000" + }, + { + "id": "20270", + "name": "Xiaohenglong", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.60500000", + "longitude": "110.51694000" + }, + { + "id": "20272", + "name": "Xiaolongmen", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.80194000", + "longitude": "110.16056000" + }, + { + "id": "20273", + "name": "Xiaoshajiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.52139000", + "longitude": "110.74806000" + }, + { + "id": "20322", + "name": "Xishan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.66667000", + "longitude": "113.50000000" + }, + { + "id": "20326", + "name": "Xixi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.69375000", + "longitude": "110.95333000" + }, + { + "id": "20328", + "name": "Xiyan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.61639000", + "longitude": "110.47361000" + }, + { + "id": "20353", + "name": "Yanmen", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.85500000", + "longitude": "109.74028000" + }, + { + "id": "20360", + "name": "Yaoshi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.29306000", + "longitude": "110.78917000" + }, + { + "id": "20363", + "name": "Yatunpu", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.15500000", + "longitude": "109.62667000" + }, + { + "id": "20384", + "name": "Yiyang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.58917000", + "longitude": "112.32833000" + }, + { + "id": "20386", + "name": "Yongfeng", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.42829000", + "longitude": "112.18338000" + }, + { + "id": "20388", + "name": "Yongzhou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.44014000", + "longitude": "111.60290000" + }, + { + "id": "20396", + "name": "Yueyang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "29.37455000", + "longitude": "113.09481000" + }, + { + "id": "20397", + "name": "Yueyang Shi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "29.32472000", + "longitude": "113.30200000" + }, + { + "id": "20408", + "name": "Yutan", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "28.25831000", + "longitude": "112.56048000" + }, + { + "id": "20418", + "name": "Zhaishi Miaozu Dongzuxiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.50083000", + "longitude": "110.04444000" + }, + { + "id": "20421", + "name": "Zhangjiajie", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "29.12944000", + "longitude": "110.47833000" + }, + { + "id": "20449", + "name": "Zhongfang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.41139000", + "longitude": "109.93194000" + }, + { + "id": "20457", + "name": "Zhongzhai", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.19528000", + "longitude": "109.26861000" + }, + { + "id": "20474", + "name": "Zhushi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.08778000", + "longitude": "110.67694000" + }, + { + "id": "20475", + "name": "Zhuzhou", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.83333000", + "longitude": "113.15000000" + }, + { + "id": "20476", + "name": "Zhuzhou Shi", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.82450000", + "longitude": "113.08228000" + }, + { + "id": "20477", + "name": "Zhuzhoujiang Miaozuxiang", + "state_id": 2258, + "state_code": "HN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.67528000", + "longitude": "110.07194000" + }, + { + "id": "19318", + "name": "Baotou", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "40.65222000", + "longitude": "109.82222000" + }, + { + "id": "19323", + "name": "Bayan Nur", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "40.74143000", + "longitude": "107.38599000" + }, + { + "id": "19324", + "name": "Bayannur Shi", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "41.56958000", + "longitude": "107.49485000" + }, + { + "id": "19328", + "name": "Beichengqu", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "40.43944000", + "longitude": "113.15361000" + }, + { + "id": "19399", + "name": "Chifeng", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "42.26833000", + "longitude": "118.96361000" + }, + { + "id": "19475", + "name": "Dongsheng", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "39.81609000", + "longitude": "109.97763000" + }, + { + "id": "19497", + "name": "E’erguna", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "50.22362000", + "longitude": "120.17092000" + }, + { + "id": "19494", + "name": "Erenhot", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "43.64750000", + "longitude": "111.97667000" + }, + { + "id": "19553", + "name": "Genhe", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "50.78333000", + "longitude": "121.51667000" + }, + { + "id": "19587", + "name": "Hailar", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "49.20000000", + "longitude": "119.70000000" + }, + { + "id": "19623", + "name": "Hohhot", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "40.81056000", + "longitude": "111.65222000" + }, + { + "id": "19680", + "name": "Hulunbuir Region", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "49.70989000", + "longitude": "121.72176000" + }, + { + "id": "19691", + "name": "Jalai Nur", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "49.45000000", + "longitude": "117.70000000" + }, + { + "id": "19692", + "name": "Jiagedaqi", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "50.41667000", + "longitude": "124.11667000" + }, + { + "id": "19742", + "name": "Jining", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "41.02750000", + "longitude": "113.10583000" + }, + { + "id": "19903", + "name": "Manzhouli", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "49.60000000", + "longitude": "117.43333000" + }, + { + "id": "19928", + "name": "Mositai", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "45.53538000", + "longitude": "119.66698000" + }, + { + "id": "19931", + "name": "Mujiayingzi", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "42.11667000", + "longitude": "118.78333000" + }, + { + "id": "19967", + "name": "Ordos", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "39.60860000", + "longitude": "109.78157000" + }, + { + "id": "19968", + "name": "Ordos Shi", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "39.46142000", + "longitude": "108.80946000" + }, + { + "id": "19969", + "name": "Oroqen Zizhiqi", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "50.56667000", + "longitude": "123.71667000" + }, + { + "id": "19986", + "name": "Pingzhuang", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "42.03722000", + "longitude": "119.28889000" + }, + { + "id": "20050", + "name": "Salaqi", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "40.54139000", + "longitude": "110.51083000" + }, + { + "id": "20092", + "name": "Shiguai", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "40.70583000", + "longitude": "110.28556000" + }, + { + "id": "20192", + "name": "Tongliao", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "43.61250000", + "longitude": "122.26528000" + }, + { + "id": "20203", + "name": "Ulanhot", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "46.08333000", + "longitude": "122.08333000" + }, + { + "id": "20220", + "name": "Wenquan", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "47.17560000", + "longitude": "119.94809000" + }, + { + "id": "20231", + "name": "Wuda", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "39.49944000", + "longitude": "106.71167000" + }, + { + "id": "20232", + "name": "Wuhai", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "39.68442000", + "longitude": "106.81583000" + }, + { + "id": "20284", + "name": "Xilin Gol Meng", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "44.85493000", + "longitude": "115.72789000" + }, + { + "id": "20285", + "name": "Xilin Hot", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "43.96667000", + "longitude": "116.03333000" + }, + { + "id": "20336", + "name": "Yakeshi", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "49.28333000", + "longitude": "120.73333000" + }, + { + "id": "20419", + "name": "Zhalantun", + "state_id": 2269, + "state_code": "NM", + "country_id": 45, + "country_code": "CN", + "latitude": "48.00945000", + "longitude": "122.73651000" + }, + { + "id": "19367", + "name": "Changleng", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "28.70000000", + "longitude": "115.81667000" + }, + { + "id": "19513", + "name": "Fenyi", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "27.81117000", + "longitude": "114.66805000" + }, + { + "id": "19538", + "name": "Ganzhou", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "25.84664000", + "longitude": "114.93260000" + }, + { + "id": "19539", + "name": "Ganzhou Shi", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "25.70387000", + "longitude": "115.34822000" + }, + { + "id": "19574", + "name": "Guixi", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "28.28857000", + "longitude": "117.21329000" + }, + { + "id": "19701", + "name": "Jianguang", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "28.19377000", + "longitude": "115.78360000" + }, + { + "id": "19762", + "name": "Ji’an", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "27.11716000", + "longitude": "114.97927000" + }, + { + "id": "19730", + "name": "Jingdezhen", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "29.29470000", + "longitude": "117.20789000" + }, + { + "id": "19731", + "name": "Jingdezhen Shi", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "29.31682000", + "longitude": "117.24688000" + }, + { + "id": "19756", + "name": "Jiujiang", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "29.70475000", + "longitude": "116.00206000" + }, + { + "id": "19935", + "name": "Nanchang", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "28.68396000", + "longitude": "115.85306000" + }, + { + "id": "19983", + "name": "Pingxiang", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "27.61672000", + "longitude": "113.85353000" + }, + { + "id": "19988", + "name": "Poyang", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "28.99242000", + "longitude": "116.66754000" + }, + { + "id": "20067", + "name": "Shangrao", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "28.45179000", + "longitude": "117.94287000" + }, + { + "id": "20313", + "name": "Xinyu", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "27.80429000", + "longitude": "114.93335000" + }, + { + "id": "20369", + "name": "Yichun", + "state_id": 2256, + "state_code": "JX", + "country_id": 45, + "country_code": "CN", + "latitude": "27.83333000", + "longitude": "114.40000000" + }, + { + "id": "19298", + "name": "Baicheng", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.60746000", + "longitude": "122.82076000" + }, + { + "id": "19306", + "name": "Baishan", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "41.93853000", + "longitude": "126.41965000" + }, + { + "id": "19308", + "name": "Baishishan", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.58333000", + "longitude": "127.56667000" + }, + { + "id": "19363", + "name": "Changchun", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.88000000", + "longitude": "125.32278000" + }, + { + "id": "19369", + "name": "Changling", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.26532000", + "longitude": "124.00045000" + }, + { + "id": "19381", + "name": "Chaoyang", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.66223000", + "longitude": "126.02630000" + }, + { + "id": "19418", + "name": "Dalai", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.50000000", + "longitude": "124.30000000" + }, + { + "id": "19434", + "name": "Dashitou", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.30667000", + "longitude": "128.51139000" + }, + { + "id": "19447", + "name": "Dehui", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.53333000", + "longitude": "125.70000000" + }, + { + "id": "19466", + "name": "Dongfeng", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.64031000", + "longitude": "125.51176000" + }, + { + "id": "19485", + "name": "Dunhua", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.37250000", + "longitude": "128.24250000" + }, + { + "id": "19493", + "name": "Erdaojiang", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "41.77639000", + "longitude": "126.03194000" + }, + { + "id": "19529", + "name": "Fuyu", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.18333000", + "longitude": "124.81667000" + }, + { + "id": "19557", + "name": "Gongzhuling", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.50075000", + "longitude": "124.81979000" + }, + { + "id": "19559", + "name": "Guangming", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.33333000", + "longitude": "122.78333000" + }, + { + "id": "19612", + "name": "Helong", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.53974000", + "longitude": "128.99722000" + }, + { + "id": "19616", + "name": "Hepingjie", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.05972000", + "longitude": "126.91583000" + }, + { + "id": "19634", + "name": "Huadian", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.96333000", + "longitude": "126.74778000" + }, + { + "id": "19653", + "name": "Huangnihe", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.55833000", + "longitude": "128.02389000" + }, + { + "id": "19674", + "name": "Huinan", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.62250000", + "longitude": "126.26139000" + }, + { + "id": "19682", + "name": "Hunchun", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.86750000", + "longitude": "130.35806000" + }, + { + "id": "19763", + "name": "Ji’an", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "41.12349000", + "longitude": "126.17631000" + }, + { + "id": "19725", + "name": "Jilin", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.85083000", + "longitude": "126.56028000" + }, + { + "id": "19753", + "name": "Jishu", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.31667000", + "longitude": "126.80000000" + }, + { + "id": "19759", + "name": "Jiutai", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.15250000", + "longitude": "125.83278000" + }, + { + "id": "19768", + "name": "Kaitong", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.81351000", + "longitude": "123.15000000" + }, + { + "id": "19830", + "name": "Liaoyuan", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.90361000", + "longitude": "125.13583000" + }, + { + "id": "19845", + "name": "Linjiang", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "41.80694000", + "longitude": "126.90778000" + }, + { + "id": "19857", + "name": "Lishu", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.30472000", + "longitude": "124.32778000" + }, + { + "id": "19860", + "name": "Liuhe", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.24007000", + "longitude": "125.71717000" + }, + { + "id": "19868", + "name": "Longjing", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.77139000", + "longitude": "129.42333000" + }, + { + "id": "19910", + "name": "Meihekou", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.52722000", + "longitude": "125.67528000" + }, + { + "id": "19922", + "name": "Mingyue", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.10694000", + "longitude": "128.92167000" + }, + { + "id": "19923", + "name": "Minzhu", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.72145000", + "longitude": "127.33401000" + }, + { + "id": "19974", + "name": "Panshi", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.94222000", + "longitude": "126.05611000" + }, + { + "id": "20052", + "name": "Sanchazi", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.08167000", + "longitude": "126.60028000" + }, + { + "id": "20119", + "name": "Shuangyang", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.52417000", + "longitude": "125.67361000" + }, + { + "id": "20125", + "name": "Shulan", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.41667000", + "longitude": "126.95000000" + }, + { + "id": "20129", + "name": "Siping", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.16143000", + "longitude": "124.37785000" + }, + { + "id": "20133", + "name": "Songjianghe", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.18590000", + "longitude": "127.47895000" + }, + { + "id": "20138", + "name": "Songyuan", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.12902000", + "longitude": "124.82769000" + }, + { + "id": "20190", + "name": "Tonghua", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "41.71972000", + "longitude": "125.92639000" + }, + { + "id": "20191", + "name": "Tonghua Shi", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.12389000", + "longitude": "125.84833000" + }, + { + "id": "20198", + "name": "Tumen", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.96611000", + "longitude": "129.84250000" + }, + { + "id": "20208", + "name": "Wangqing", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.32179000", + "longitude": "129.76342000" + }, + { + "id": "20295", + "name": "Xinglongshan", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.95611000", + "longitude": "125.46611000" + }, + { + "id": "20339", + "name": "Yanbian Chaoxianzu Zizhizhou", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.12583000", + "longitude": "129.12833000" + }, + { + "id": "20350", + "name": "Yanji", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "42.90750000", + "longitude": "129.50778000" + }, + { + "id": "20358", + "name": "Yantongshan", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.29194000", + "longitude": "126.00944000" + }, + { + "id": "20406", + "name": "Yushu", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "44.80000000", + "longitude": "126.53333000" + }, + { + "id": "20438", + "name": "Zhengjiatun", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "43.50639000", + "longitude": "123.50639000" + }, + { + "id": "20442", + "name": "Zhenlai", + "state_id": 2253, + "state_code": "JL", + "country_id": 45, + "country_code": "CN", + "latitude": "45.84955000", + "longitude": "123.29730000" + }, + { + "id": "19287", + "name": "Anshan", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.12361000", + "longitude": "122.99000000" + }, + { + "id": "19333", + "name": "Beipiao", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.79194000", + "longitude": "120.77917000" + }, + { + "id": "19339", + "name": "Benxi", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.28861000", + "longitude": "123.76500000" + }, + { + "id": "19377", + "name": "Changtu", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "42.77884000", + "longitude": "124.09545000" + }, + { + "id": "19382", + "name": "Chaoyang", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.57028000", + "longitude": "120.45861000" + }, + { + "id": "19421", + "name": "Dalian", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "38.91222000", + "longitude": "121.60222000" + }, + { + "id": "19423", + "name": "Dalianwan", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "39.02861000", + "longitude": "121.69500000" + }, + { + "id": "19424", + "name": "Dandong", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.12917000", + "longitude": "124.39472000" + }, + { + "id": "19433", + "name": "Dashiqiao", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.63732000", + "longitude": "122.50251000" + }, + { + "id": "19472", + "name": "Dongling", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.81444000", + "longitude": "123.57583000" + }, + { + "id": "19504", + "name": "Fengcheng", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.45361000", + "longitude": "124.07167000" + }, + { + "id": "19523", + "name": "Fushun", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.88669000", + "longitude": "123.94363000" + }, + { + "id": "19524", + "name": "Fuxin", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "42.01556000", + "longitude": "121.65889000" + }, + { + "id": "19533", + "name": "Gaizhou", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.39417000", + "longitude": "122.36861000" + }, + { + "id": "19556", + "name": "Gongchangling", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.11667000", + "longitude": "123.45000000" + }, + { + "id": "19583", + "name": "Haicheng", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.85158000", + "longitude": "122.74754000" + }, + { + "id": "19611", + "name": "Heishan", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.68917000", + "longitude": "122.11278000" + }, + { + "id": "19664", + "name": "Huanren", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.26472000", + "longitude": "125.36667000" + }, + { + "id": "19678", + "name": "Huludao", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.75243000", + "longitude": "120.83552000" + }, + { + "id": "19679", + "name": "Huludao Shi", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.74528000", + "longitude": "120.21972000" + }, + { + "id": "19687", + "name": "Hushitai", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.94175000", + "longitude": "123.50266000" + }, + { + "id": "19752", + "name": "Jinzhou", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.10778000", + "longitude": "121.14167000" + }, + { + "id": "19757", + "name": "Jiupu", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.06667000", + "longitude": "122.95000000" + }, + { + "id": "19771", + "name": "Kaiyuan", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "42.53306000", + "longitude": "124.04028000" + }, + { + "id": "19781", + "name": "Kuandian", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.72861000", + "longitude": "124.78472000" + }, + { + "id": "19796", + "name": "Langtoucun", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.04068000", + "longitude": "124.33525000" + }, + { + "id": "19897", + "name": "Lüshun", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "38.80000000", + "longitude": "121.26667000" + }, + { + "id": "19823", + "name": "Lianshan", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.76432000", + "longitude": "120.85327000" + }, + { + "id": "19829", + "name": "Liaoyang", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.27194000", + "longitude": "123.17306000" + }, + { + "id": "19831", + "name": "Liaozhong", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.50611000", + "longitude": "122.72417000" + }, + { + "id": "19842", + "name": "Linghai", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.16528000", + "longitude": "121.36667000" + }, + { + "id": "19843", + "name": "Lingyuan", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.24000000", + "longitude": "119.40111000" + }, + { + "id": "19946", + "name": "Nanpiao", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.09822000", + "longitude": "120.74792000" + }, + { + "id": "19948", + "name": "Nantai", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.92410000", + "longitude": "122.80437000" + }, + { + "id": "19972", + "name": "Panjin Shi", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.13167000", + "longitude": "121.99361000" + }, + { + "id": "19973", + "name": "Panshan", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.18806000", + "longitude": "122.04944000" + }, + { + "id": "19994", + "name": "Pulandian", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "39.39528000", + "longitude": "121.96694000" + }, + { + "id": "20090", + "name": "Shenyang", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.79222000", + "longitude": "123.43278000" + }, + { + "id": "20146", + "name": "Sujiatun", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.65917000", + "longitude": "123.33917000" + }, + { + "id": "20183", + "name": "Tieling", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "42.29306000", + "longitude": "123.84139000" + }, + { + "id": "20184", + "name": "Tieling Shi", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "42.62583000", + "longitude": "124.32361000" + }, + { + "id": "20206", + "name": "Wafangdian", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "39.61833000", + "longitude": "122.00806000" + }, + { + "id": "20275", + "name": "Xiaoshi", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.29711000", + "longitude": "124.12092000" + }, + { + "id": "20281", + "name": "Xifeng", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "42.73722000", + "longitude": "124.72222000" + }, + { + "id": "20293", + "name": "Xingcheng", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.61667000", + "longitude": "120.71667000" + }, + { + "id": "20302", + "name": "Xinmin", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.99083000", + "longitude": "122.82528000" + }, + { + "id": "20310", + "name": "Xinxing", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "39.86694000", + "longitude": "124.12304000" + }, + { + "id": "20324", + "name": "Xiuyan", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.29278000", + "longitude": "123.27444000" + }, + { + "id": "20364", + "name": "Yebaishou", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "41.39750000", + "longitude": "119.64083000" + }, + { + "id": "20378", + "name": "Yingkou", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "40.63897000", + "longitude": "122.24762000" + }, + { + "id": "20464", + "name": "Zhuanghe", + "state_id": 2268, + "state_code": "LN", + "country_id": 45, + "country_code": "CN", + "latitude": "39.70083000", + "longitude": "122.99111000" + }, + { + "id": "19438", + "name": "Dawukou", + "state_id": 2262, + "state_code": "NX", + "country_id": 45, + "country_code": "CN", + "latitude": "39.04194000", + "longitude": "106.39583000" + }, + { + "id": "19476", + "name": "Dongta", + "state_id": 2262, + "state_code": "NX", + "country_id": 45, + "country_code": "CN", + "latitude": "38.08140000", + "longitude": "106.34444000" + }, + { + "id": "20106", + "name": "Shitanjing", + "state_id": 2262, + "state_code": "NX", + "country_id": 45, + "country_code": "CN", + "latitude": "39.23417000", + "longitude": "106.34389000" + }, + { + "id": "20111", + "name": "Shizuishan", + "state_id": 2262, + "state_code": "NX", + "country_id": 45, + "country_code": "CN", + "latitude": "39.23333000", + "longitude": "106.76944000" + }, + { + "id": "20246", + "name": "Wuzhong", + "state_id": 2262, + "state_code": "NX", + "country_id": 45, + "country_code": "CN", + "latitude": "37.98670000", + "longitude": "106.20100000" + }, + { + "id": "20374", + "name": "Yinchuan", + "state_id": 2262, + "state_code": "NX", + "country_id": 45, + "country_code": "CN", + "latitude": "38.46806000", + "longitude": "106.27306000" + }, + { + "id": "20454", + "name": "Zhongwei", + "state_id": 2262, + "state_code": "NX", + "country_id": 45, + "country_code": "CN", + "latitude": "37.51129000", + "longitude": "105.19067000" + }, + { + "id": "19448", + "name": "Delingha", + "state_id": 2270, + "state_code": "QH", + "country_id": 45, + "country_code": "CN", + "latitude": "37.37600000", + "longitude": "97.37457000" + }, + { + "id": "19554", + "name": "Golmud", + "state_id": 2270, + "state_code": "QH", + "country_id": 45, + "country_code": "CN", + "latitude": "36.40672000", + "longitude": "94.90061000" + }, + { + "id": "19555", + "name": "Golog Tibetan Autonomous Prefecture", + "state_id": 2270, + "state_code": "QH", + "country_id": 45, + "country_code": "CN", + "latitude": "34.08595000", + "longitude": "99.55181000" + }, + { + "id": "19582", + "name": "Haibei Tibetan Autonomous Prefecture", + "state_id": 2270, + "state_code": "QH", + "country_id": 45, + "country_code": "CN", + "latitude": "37.71919000", + "longitude": "100.45656000" + }, + { + "id": "19652", + "name": "Huangnan Zangzu Zizhizhou", + "state_id": 2270, + "state_code": "QH", + "country_id": 45, + "country_code": "CN", + "latitude": "35.06316000", + "longitude": "101.65149000" + }, + { + "id": "20300", + "name": "Xining", + "state_id": 2270, + "state_code": "QH", + "country_id": 45, + "country_code": "CN", + "latitude": "36.62554000", + "longitude": "101.75739000" + }, + { + "id": "20320", + "name": "Xireg", + "state_id": 2270, + "state_code": "QH", + "country_id": 45, + "country_code": "CN", + "latitude": "36.91866000", + "longitude": "98.44463000" + }, + { + "id": "20407", + "name": "Yushu Zangzu Zizhizhou", + "state_id": 2270, + "state_code": "QH", + "country_id": 45, + "country_code": "CN", + "latitude": "34.39802000", + "longitude": "94.19021000" + }, + { + "id": "19281", + "name": "Ankang", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "32.68000000", + "longitude": "109.01722000" + }, + { + "id": "19315", + "name": "Baoji Shi", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "34.36944000", + "longitude": "107.13635000" + }, + { + "id": "19578", + "name": "Guozhen", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "34.36591000", + "longitude": "107.35904000" + }, + { + "id": "19595", + "name": "Hancheng", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "35.46028000", + "longitude": "110.42917000" + }, + { + "id": "19600", + "name": "Hanzhong", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "33.07507000", + "longitude": "107.02214000" + }, + { + "id": "19667", + "name": "Huayin", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "34.56528000", + "longitude": "110.06639000" + }, + { + "id": "19852", + "name": "Lintong", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "34.37803000", + "longitude": "109.20892000" + }, + { + "id": "20188", + "name": "Tongchuanshi", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "35.07474000", + "longitude": "109.08495000" + }, + { + "id": "20215", + "name": "Weinan", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "34.50355000", + "longitude": "109.50891000" + }, + { + "id": "20268", + "name": "Xianyang", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "34.33778000", + "longitude": "108.70261000" + }, + { + "id": "20329", + "name": "Xi’an", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "34.25833000", + "longitude": "108.92861000" + }, + { + "id": "20352", + "name": "Yanliang", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "34.65918000", + "longitude": "109.22921000" + }, + { + "id": "20399", + "name": "Yulinshi", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "38.29181000", + "longitude": "109.73753000" + }, + { + "id": "20410", + "name": "Yuxia", + "state_id": 2272, + "state_code": "SN", + "country_id": 45, + "country_code": "CN", + "latitude": "34.06153000", + "longitude": "108.62905000" + }, + { + "id": "19286", + "name": "Anqiu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.43417000", + "longitude": "119.19250000" + }, + { + "id": "19335", + "name": "Beizhai", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.21972000", + "longitude": "120.52889000" + }, + { + "id": "19340", + "name": "Bianzhuang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "34.84861000", + "longitude": "118.04472000" + }, + { + "id": "19343", + "name": "Binzhou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.36667000", + "longitude": "118.01667000" + }, + { + "id": "19348", + "name": "Boshan", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.48333000", + "longitude": "117.83333000" + }, + { + "id": "19372", + "name": "Changqing", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.55750000", + "longitude": "116.72722000" + }, + { + "id": "19392", + "name": "Chengqu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.91060000", + "longitude": "121.52504000" + }, + { + "id": "19393", + "name": "Chengtangcun", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.08357000", + "longitude": "117.19071000" + }, + { + "id": "19395", + "name": "Chengyang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.57944000", + "longitude": "118.83278000" + }, + { + "id": "19450", + "name": "Dengying", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.13889000", + "longitude": "120.57417000" + }, + { + "id": "19452", + "name": "Dengzhou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.80822000", + "longitude": "120.75908000" + }, + { + "id": "19455", + "name": "Dezhou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.45127000", + "longitude": "116.31046000" + }, + { + "id": "19458", + "name": "Dingtao", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.07436000", + "longitude": "115.56582000" + }, + { + "id": "19463", + "name": "Dongcun", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.77667000", + "longitude": "121.15972000" + }, + { + "id": "19465", + "name": "Dongdu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.85000000", + "longitude": "117.70000000" + }, + { + "id": "19501", + "name": "Feicheng", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.24861000", + "longitude": "116.76583000" + }, + { + "id": "19541", + "name": "Gaomi", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.38333000", + "longitude": "119.75278000" + }, + { + "id": "19599", + "name": "Hanting", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.77083000", + "longitude": "119.21083000" + }, + { + "id": "19621", + "name": "Heze", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.23929000", + "longitude": "115.47358000" + }, + { + "id": "19693", + "name": "Jiamaying", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.20806000", + "longitude": "115.95000000" + }, + { + "id": "19711", + "name": "Jiaozhou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.28389000", + "longitude": "120.00333000" + }, + { + "id": "19719", + "name": "Jiehu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.54278000", + "longitude": "118.45500000" + }, + { + "id": "19726", + "name": "Jimo", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.38972000", + "longitude": "120.46222000" + }, + { + "id": "19727", + "name": "Jinan", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.66833000", + "longitude": "116.99722000" + }, + { + "id": "19741", + "name": "Jining", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.40500000", + "longitude": "116.58139000" + }, + { + "id": "19765", + "name": "Juye", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.39472000", + "longitude": "116.08833000" + }, + { + "id": "19782", + "name": "Kuiju", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.85361000", + "longitude": "119.39083000" + }, + { + "id": "19787", + "name": "Kutao", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.14500000", + "longitude": "120.48778000" + }, + { + "id": "19790", + "name": "Laiwu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.19278000", + "longitude": "117.65694000" + }, + { + "id": "19791", + "name": "Laixi", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.85917000", + "longitude": "120.52694000" + }, + { + "id": "19792", + "name": "Laiyang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.97583000", + "longitude": "120.71361000" + }, + { + "id": "19793", + "name": "Laizhou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.18073000", + "longitude": "119.94217000" + }, + { + "id": "19804", + "name": "Laocheng", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.14278000", + "longitude": "115.88833000" + }, + { + "id": "19828", + "name": "Liaocheng", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.45596000", + "longitude": "115.97766000" + }, + { + "id": "19850", + "name": "Linqu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.51556000", + "longitude": "118.53972000" + }, + { + "id": "19856", + "name": "Linyi", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.06306000", + "longitude": "118.34278000" + }, + { + "id": "19866", + "name": "Longgang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.65181000", + "longitude": "120.33063000" + }, + { + "id": "19915", + "name": "Mengyin", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.70694000", + "longitude": "117.92639000" + }, + { + "id": "19920", + "name": "Mingshui", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.71667000", + "longitude": "117.50000000" + }, + { + "id": "19927", + "name": "Mizhou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.99472000", + "longitude": "119.39750000" + }, + { + "id": "19937", + "name": "Nanding", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.74833000", + "longitude": "118.05583000" + }, + { + "id": "19943", + "name": "Nanma", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.18478000", + "longitude": "118.15486000" + }, + { + "id": "19962", + "name": "Ninghai", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.38422000", + "longitude": "121.60859000" + }, + { + "id": "19963", + "name": "Ningyang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.76417000", + "longitude": "116.79139000" + }, + { + "id": "19978", + "name": "Pingdu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.78444000", + "longitude": "119.94639000" + }, + { + "id": "19984", + "name": "Pingyi", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.50056000", + "longitude": "117.63083000" + }, + { + "id": "19985", + "name": "Pingyin", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.28306000", + "longitude": "116.44528000" + }, + { + "id": "20016", + "name": "Qingdao", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.06488000", + "longitude": "120.38042000" + }, + { + "id": "20020", + "name": "Qingnian", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.84032000", + "longitude": "115.71183000" + }, + { + "id": "20023", + "name": "Qingshancun", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.15415000", + "longitude": "120.68240000" + }, + { + "id": "20025", + "name": "Qingyang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.49583000", + "longitude": "121.25806000" + }, + { + "id": "20028", + "name": "Qingzhou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.69667000", + "longitude": "118.47972000" + }, + { + "id": "20037", + "name": "Qufu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.59667000", + "longitude": "116.99111000" + }, + { + "id": "20042", + "name": "Rizhao", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.42750000", + "longitude": "119.45528000" + }, + { + "id": "20062", + "name": "Shancheng", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "34.79528000", + "longitude": "116.08167000" + }, + { + "id": "20075", + "name": "Shanting", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.07528000", + "longitude": "117.45778000" + }, + { + "id": "20086", + "name": "Shazikou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.11500000", + "longitude": "120.53722000" + }, + { + "id": "20087", + "name": "Shengli", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.46271000", + "longitude": "118.49165000" + }, + { + "id": "20099", + "name": "Shilaorencun", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.09723000", + "longitude": "120.48910000" + }, + { + "id": "20110", + "name": "Shizilu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.17111000", + "longitude": "118.82889000" + }, + { + "id": "20112", + "name": "Shouguang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.88000000", + "longitude": "118.73750000" + }, + { + "id": "20131", + "name": "Sishui", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.64889000", + "longitude": "117.27583000" + }, + { + "id": "20148", + "name": "Suozhen", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.95389000", + "longitude": "118.10472000" + }, + { + "id": "20165", + "name": "Tai’an", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.18528000", + "longitude": "117.12000000" + }, + { + "id": "20176", + "name": "Taozhuang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "34.85000000", + "longitude": "117.33333000" + }, + { + "id": "20179", + "name": "Tianfu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.19723000", + "longitude": "122.05228000" + }, + { + "id": "20213", + "name": "Weifang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.71000000", + "longitude": "119.10194000" + }, + { + "id": "20214", + "name": "Weihai", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.50914000", + "longitude": "122.11356000" + }, + { + "id": "20223", + "name": "Wenshang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.72750000", + "longitude": "116.49611000" + }, + { + "id": "20277", + "name": "Xiazhen", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "34.80222000", + "longitude": "117.11167000" + }, + { + "id": "20278", + "name": "Xiazhuang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "34.91611000", + "longitude": "118.63889000" + }, + { + "id": "20283", + "name": "Xiliguantun", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.07833000", + "longitude": "115.94139000" + }, + { + "id": "20291", + "name": "Xindian", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.79750000", + "longitude": "118.29444000" + }, + { + "id": "20306", + "name": "Xintai", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.90056000", + "longitude": "117.75194000" + }, + { + "id": "20342", + "name": "Yanggu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.11056000", + "longitude": "115.77528000" + }, + { + "id": "20355", + "name": "Yanta", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.24111000", + "longitude": "115.66722000" + }, + { + "id": "20356", + "name": "Yantai", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.47649000", + "longitude": "121.44081000" + }, + { + "id": "20359", + "name": "Yanzhou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.55278000", + "longitude": "116.82861000" + }, + { + "id": "20362", + "name": "Yatou", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.15660000", + "longitude": "122.43762000" + }, + { + "id": "20381", + "name": "Yinzhu", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.87861000", + "longitude": "119.97528000" + }, + { + "id": "20382", + "name": "Yishui", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.78472000", + "longitude": "118.62806000" + }, + { + "id": "20393", + "name": "Yucheng", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "34.92889000", + "longitude": "116.46528000" + }, + { + "id": "20415", + "name": "Zaozhuang", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "34.86472000", + "longitude": "117.55417000" + }, + { + "id": "20435", + "name": "Zhaoyuan", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.36497000", + "longitude": "120.40997000" + }, + { + "id": "20458", + "name": "Zhoucheng", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.91222000", + "longitude": "116.31167000" + }, + { + "id": "20459", + "name": "Zhoucun", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.81667000", + "longitude": "117.81667000" + }, + { + "id": "20463", + "name": "Zhu Cheng City", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.99502000", + "longitude": "119.40259000" + }, + { + "id": "20465", + "name": "Zhuangyuan", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "37.30553000", + "longitude": "120.82747000" + }, + { + "id": "20478", + "name": "Zibo", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "36.79056000", + "longitude": "118.06333000" + }, + { + "id": "20481", + "name": "Zoucheng", + "state_id": 2252, + "state_code": "SD", + "country_id": 45, + "country_code": "CN", + "latitude": "35.40056000", + "longitude": "116.96556000" + }, + { + "id": "20063", + "name": "Shanghai", + "state_id": 2249, + "state_code": "SH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.22222000", + "longitude": "121.45806000" + }, + { + "id": "20132", + "name": "Songjiang", + "state_id": 2249, + "state_code": "SH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.03595000", + "longitude": "121.21460000" + }, + { + "id": "20417", + "name": "Zhabei", + "state_id": 2249, + "state_code": "SH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.25861000", + "longitude": "121.45972000" + }, + { + "id": "20469", + "name": "Zhujiajiao", + "state_id": 2249, + "state_code": "SH", + "country_id": 45, + "country_code": "CN", + "latitude": "31.10757000", + "longitude": "121.05696000" + }, + { + "id": "19378", + "name": "Changzhi", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "36.18389000", + "longitude": "113.10528000" + }, + { + "id": "19436", + "name": "Datong", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "40.09361000", + "longitude": "113.29139000" + }, + { + "id": "19437", + "name": "Datong Shi", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "40.10484000", + "longitude": "113.63334000" + }, + { + "id": "19580", + "name": "Gutao", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "37.20250000", + "longitude": "112.17806000" + }, + { + "id": "19722", + "name": "Jiexiu", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "37.02444000", + "longitude": "111.91250000" + }, + { + "id": "19729", + "name": "Jincheng", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "35.50222000", + "longitude": "112.83278000" + }, + { + "id": "19751", + "name": "Jinzhong Shi", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "37.43597000", + "longitude": "113.08783000" + }, + { + "id": "19896", + "name": "Lüliang", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "37.73563000", + "longitude": "111.30538000" + }, + { + "id": "19838", + "name": "Linfen", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "36.08889000", + "longitude": "111.51889000" + }, + { + "id": "20127", + "name": "Shuozhou", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "39.31583000", + "longitude": "112.42250000" + }, + { + "id": "20162", + "name": "Taiyuan", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "37.86944000", + "longitude": "112.56028000" + }, + { + "id": "20307", + "name": "Xintian", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "35.61358000", + "longitude": "111.35660000" + }, + { + "id": "20316", + "name": "Xinzhi", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "36.49889000", + "longitude": "111.70472000" + }, + { + "id": "20318", + "name": "Xinzhou", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "38.40917000", + "longitude": "112.73333000" + }, + { + "id": "20345", + "name": "Yangquan", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "37.85750000", + "longitude": "113.56333000" + }, + { + "id": "20391", + "name": "Yuanping", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "38.71528000", + "longitude": "112.75750000" + }, + { + "id": "20394", + "name": "Yuci", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "37.68028000", + "longitude": "112.73194000" + }, + { + "id": "20400", + "name": "Yuncheng", + "state_id": 2254, + "state_code": "SX", + "country_id": 45, + "country_code": "CN", + "latitude": "35.02306000", + "longitude": "110.99278000" + }, + { + "id": "19271", + "name": "Aba Zangzu Qiangzu Zizhizhou", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "32.41875000", + "longitude": "102.63664000" + }, + { + "id": "19320", + "name": "Barkam", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.90059000", + "longitude": "102.22092000" + }, + { + "id": "19326", + "name": "Bazhong Shi", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "32.04025000", + "longitude": "107.06230000" + }, + { + "id": "19362", + "name": "Changchi", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "32.16377000", + "longitude": "106.65814000" + }, + { + "id": "19387", + "name": "Chengdu", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.66667000", + "longitude": "104.06667000" + }, + { + "id": "19403", + "name": "Chonglong", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "29.78062000", + "longitude": "104.85224000" + }, + { + "id": "19416", + "name": "Dadukou", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "26.54790000", + "longitude": "101.70539000" + }, + { + "id": "19443", + "name": "Dazhou", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.21592000", + "longitude": "107.50092000" + }, + { + "id": "19454", + "name": "Deyang", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.13019000", + "longitude": "104.38198000" + }, + { + "id": "19478", + "name": "Dongxi", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "32.06577000", + "longitude": "106.24843000" + }, + { + "id": "19500", + "name": "Fangting", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.12766000", + "longitude": "104.16649000" + }, + { + "id": "19516", + "name": "Fubao", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "28.76905000", + "longitude": "106.07667000" + }, + { + "id": "19543", + "name": "Gaoping", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.77576000", + "longitude": "106.10294000" + }, + { + "id": "19551", + "name": "Garzê Zangzu Zizhizhou", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.02407000", + "longitude": "100.40553000" + }, + { + "id": "19564", + "name": "Guang’an", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.47413000", + "longitude": "106.63696000" + }, + { + "id": "19561", + "name": "Guangyuan", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "32.44201000", + "longitude": "105.82300000" + }, + { + "id": "19695", + "name": "Jiancheng", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.39097000", + "longitude": "104.54912000" + }, + { + "id": "19704", + "name": "Jiangyou", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.76667000", + "longitude": "104.71667000" + }, + { + "id": "19707", + "name": "Jiannan", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.34355000", + "longitude": "104.19588000" + }, + { + "id": "19772", + "name": "Kangding", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.00222000", + "longitude": "101.95690000" + }, + { + "id": "19798", + "name": "Langzhong", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.55037000", + "longitude": "105.99381000" + }, + { + "id": "19811", + "name": "Leshan", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "29.56227000", + "longitude": "103.76386000" + }, + { + "id": "19816", + "name": "Liangshan Yizu Zizhizhou", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "27.87644000", + "longitude": "102.10180000" + }, + { + "id": "19849", + "name": "Linqiong", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.41587000", + "longitude": "103.46089000" + }, + { + "id": "19882", + "name": "Luocheng", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.98021000", + "longitude": "104.28081000" + }, + { + "id": "19894", + "name": "Luzhou", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "28.89030000", + "longitude": "105.42575000" + }, + { + "id": "19912", + "name": "Meishan Shi", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.03000000", + "longitude": "104.04000000" + }, + { + "id": "19917", + "name": "Mianyang", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.46784000", + "longitude": "104.68168000" + }, + { + "id": "19936", + "name": "Nanchong", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.79508000", + "longitude": "106.08473000" + }, + { + "id": "19942", + "name": "Nanlong", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.35333000", + "longitude": "106.06309000" + }, + { + "id": "19954", + "name": "Neijiang", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "29.58354000", + "longitude": "105.06216000" + }, + { + "id": "19975", + "name": "Panzhihua", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "26.58509000", + "longitude": "101.71276000" + }, + { + "id": "19992", + "name": "Puji", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "32.23908000", + "longitude": "106.45478000" + }, + { + "id": "20115", + "name": "Shuanghejiedao", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.37448000", + "longitude": "106.77266000" + }, + { + "id": "20143", + "name": "Suining", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.50802000", + "longitude": "105.57332000" + }, + { + "id": "20155", + "name": "Taihe", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.87123000", + "longitude": "105.38454000" + }, + { + "id": "20159", + "name": "Taiping", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "28.14083000", + "longitude": "106.03771000" + }, + { + "id": "20180", + "name": "Tianpeng", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.98664000", + "longitude": "103.93933000" + }, + { + "id": "20187", + "name": "Tongchuan", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.09407000", + "longitude": "105.08731000" + }, + { + "id": "20251", + "name": "Xialiang", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "32.07673000", + "longitude": "106.77151000" + }, + { + "id": "20265", + "name": "Xiantan", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "28.81859000", + "longitude": "106.19270000" + }, + { + "id": "20280", + "name": "Xichang", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "27.89642000", + "longitude": "102.26341000" + }, + { + "id": "20335", + "name": "Xunchang", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "28.45433000", + "longitude": "104.71498000" + }, + { + "id": "20351", + "name": "Yanjiang", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "30.12108000", + "longitude": "104.64811000" + }, + { + "id": "20365", + "name": "Yibin", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "28.76667000", + "longitude": "104.62383000" + }, + { + "id": "20392", + "name": "Yucheng", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "29.98521000", + "longitude": "102.99900000" + }, + { + "id": "20416", + "name": "Zengjia", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "32.61957000", + "longitude": "106.10118000" + }, + { + "id": "20447", + "name": "Zhongba", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "31.77819000", + "longitude": "104.73932000" + }, + { + "id": "20479", + "name": "Zigong", + "state_id": 2277, + "state_code": "SC", + "country_id": 45, + "country_code": "CN", + "latitude": "29.34162000", + "longitude": "104.77689000" + }, + { + "id": "19319", + "name": "Baoying", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.22917000", + "longitude": "119.30917000" + }, + { + "id": "19376", + "name": "Changshu City", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.64615000", + "longitude": "120.74221000" + }, + { + "id": "19379", + "name": "Changzhou", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.77359000", + "longitude": "119.95401000" + }, + { + "id": "19394", + "name": "Chengxiang", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.44778000", + "longitude": "121.09389000" + }, + { + "id": "19442", + "name": "Dazhong", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.19973000", + "longitude": "120.45780000" + }, + { + "id": "19470", + "name": "Dongkan", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.99972000", + "longitude": "119.83083000" + }, + { + "id": "19477", + "name": "Dongtai", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.85231000", + "longitude": "120.30947000" + }, + { + "id": "19510", + "name": "Fengxian", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "34.70388000", + "longitude": "116.58717000" + }, + { + "id": "19540", + "name": "Gaogou", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "34.01750000", + "longitude": "119.18861000" + }, + { + "id": "19548", + "name": "Gaoyou", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.78933000", + "longitude": "119.44182000" + }, + { + "id": "19573", + "name": "Guiren", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.66972000", + "longitude": "118.18889000" + }, + { + "id": "19592", + "name": "Haizhou", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "34.58167000", + "longitude": "119.12889000" + }, + { + "id": "19606", + "name": "Hede", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.77220000", + "longitude": "120.26176000" + }, + { + "id": "19635", + "name": "Huai'an", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.58861000", + "longitude": "119.01917000" + }, + { + "id": "19644", + "name": "Huai’an Shi", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.31162000", + "longitude": "119.04559000" + }, + { + "id": "19673", + "name": "Huilong", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.81111000", + "longitude": "121.65500000" + }, + { + "id": "19688", + "name": "Hutang", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.53429000", + "longitude": "119.49000000" + }, + { + "id": "19702", + "name": "Jiangyan", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.50611000", + "longitude": "120.14278000" + }, + { + "id": "19703", + "name": "Jiangyin", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.91102000", + "longitude": "120.26302000" + }, + { + "id": "19734", + "name": "Jingjiang", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.01417000", + "longitude": "120.26250000" + }, + { + "id": "19747", + "name": "Jinsha", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.08982000", + "longitude": "121.07355000" + }, + { + "id": "19764", + "name": "Juegang", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.31737000", + "longitude": "121.18552000" + }, + { + "id": "19784", + "name": "Kunshan", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.37762000", + "longitude": "120.95431000" + }, + { + "id": "19825", + "name": "Lianyungang Shi", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "34.54844000", + "longitude": "119.11228000" + }, + { + "id": "19832", + "name": "Licheng", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.42813000", + "longitude": "119.48353000" + }, + { + "id": "19930", + "name": "Mudu", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.25597000", + "longitude": "120.51857000" + }, + { + "id": "19941", + "name": "Nanjing", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.06167000", + "longitude": "118.77778000" + }, + { + "id": "19949", + "name": "Nantong", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.03028000", + "longitude": "120.87472000" + }, + { + "id": "19987", + "name": "Pizhou", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "34.31139000", + "longitude": "117.95028000" + }, + { + "id": "20030", + "name": "Qinnan", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.25306000", + "longitude": "119.91333000" + }, + { + "id": "20044", + "name": "Rucheng", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.38833000", + "longitude": "120.55528000" + }, + { + "id": "20054", + "name": "Sanmao", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.23931000", + "longitude": "119.81536000" + }, + { + "id": "20136", + "name": "Songling", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.19330000", + "longitude": "120.71758000" + }, + { + "id": "20139", + "name": "Suicheng", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.89630000", + "longitude": "117.93307000" + }, + { + "id": "20150", + "name": "Suzhou", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.30408000", + "longitude": "120.59538000" + }, + { + "id": "20161", + "name": "Taixing", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.16667000", + "longitude": "120.01361000" + }, + { + "id": "20163", + "name": "Taizhou", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.49069000", + "longitude": "119.90812000" + }, + { + "id": "20195", + "name": "Tongshan", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "34.18045000", + "longitude": "117.15707000" + }, + { + "id": "20239", + "name": "Wuxi", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.56887000", + "longitude": "120.28857000" + }, + { + "id": "20263", + "name": "Xiannü", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.42806000", + "longitude": "119.56048000" + }, + { + "id": "20271", + "name": "Xiaolingwei", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.03244000", + "longitude": "118.85400000" + }, + { + "id": "20294", + "name": "Xinghua", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.93917000", + "longitude": "119.83417000" + }, + { + "id": "20303", + "name": "Xinpu", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "34.59972000", + "longitude": "119.15944000" + }, + { + "id": "20340", + "name": "Yancheng", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.35750000", + "longitude": "120.15730000" + }, + { + "id": "20349", + "name": "Yangzhou", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.39722000", + "longitude": "119.43583000" + }, + { + "id": "20368", + "name": "Yicheng", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.36059000", + "longitude": "119.82016000" + }, + { + "id": "20405", + "name": "Yushan", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.67748000", + "longitude": "120.80134000" + }, + { + "id": "20420", + "name": "Zhangjiagang", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.86500000", + "longitude": "120.53889000" + }, + { + "id": "20441", + "name": "Zhenjiang", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.21086000", + "longitude": "119.45508000" + }, + { + "id": "20443", + "name": "Zhenzhou", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "32.28034000", + "longitude": "119.16999000" + }, + { + "id": "20456", + "name": "Zhongxing", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "33.70389000", + "longitude": "118.67917000" + }, + { + "id": "20462", + "name": "Zhouzhuang", + "state_id": 2255, + "state_code": "TW", + "country_id": 45, + "country_code": "CN", + "latitude": "31.11788000", + "longitude": "120.84427000" + }, + { + "id": "19354", + "name": "Burang", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.29559000", + "longitude": "81.17511000" + }, + { + "id": "19488", + "name": "Dêqên", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.96178000", + "longitude": "90.71875000" + }, + { + "id": "19705", + "name": "Jiangzi", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.92026000", + "longitude": "89.59956000" + }, + { + "id": "19812", + "name": "Lhasa", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.65000000", + "longitude": "91.10000000" + }, + { + "id": "19933", + "name": "Nagqu", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "31.47678000", + "longitude": "92.05729000" + }, + { + "id": "19934", + "name": "Nagqu Diqu", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "32.66357000", + "longitude": "88.93146000" + }, + { + "id": "19957", + "name": "Ngari Diqu", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "33.21836000", + "longitude": "82.57507000" + }, + { + "id": "19966", + "name": "Nyingchi Prefecture", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.60092000", + "longitude": "94.42406000" + }, + { + "id": "20003", + "name": "Qamdo", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "31.13040000", + "longitude": "97.17982000" + }, + { + "id": "20004", + "name": "Qamdo Shi", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "31.58370000", + "longitude": "97.22304000" + }, + { + "id": "20041", + "name": "Rikaze", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.25000000", + "longitude": "88.88333000" + }, + { + "id": "20049", + "name": "Saga", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.32367000", + "longitude": "85.22601000" + }, + { + "id": "20074", + "name": "Shannan Diqu", + "state_id": 2264, + "state_code": "XZ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.55630000", + "longitude": "92.55684000" + }, + { + "id": "19273", + "name": "Ailan Mubage", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "43.90845000", + "longitude": "81.33299000" + }, + { + "id": "19274", + "name": "Aksu", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "41.18418000", + "longitude": "80.27921000" + }, + { + "id": "19275", + "name": "Aksu Diqu", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "40.55689000", + "longitude": "81.84629000" + }, + { + "id": "19276", + "name": "Altay", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "47.84864000", + "longitude": "88.13361000" + }, + { + "id": "19277", + "name": "Altay Diqu", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "47.86667000", + "longitude": "88.11667000" + }, + { + "id": "19293", + "name": "Aral", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "40.54184000", + "longitude": "81.26566000" + }, + { + "id": "19294", + "name": "Aykol", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "40.95759000", + "longitude": "80.13574000" + }, + { + "id": "20484", + "name": "Ürümqi", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "43.80096000", + "longitude": "87.60046000" + }, + { + "id": "19300", + "name": "Baijiantan", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "45.69298000", + "longitude": "85.13942000" + }, + { + "id": "19311", + "name": "Baluntaicun", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "42.66842000", + "longitude": "86.32424000" + }, + { + "id": "19325", + "name": "Bayingolin Mongol Zizhizhou", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "41.73333000", + "longitude": "86.15000000" + }, + { + "id": "19365", + "name": "Changji", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "44.00782000", + "longitude": "87.30461000" + }, + { + "id": "19366", + "name": "Changji Huizu Zizhizhou", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "44.01667000", + "longitude": "87.31667000" + }, + { + "id": "19519", + "name": "Fukang", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "44.15874000", + "longitude": "87.97418000" + }, + { + "id": "19593", + "name": "Hami", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "42.83393000", + "longitude": "93.50601000" + }, + { + "id": "19631", + "name": "Hotan", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "37.10750000", + "longitude": "79.93548000" + }, + { + "id": "19633", + "name": "Hoxtolgay", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "46.51872000", + "longitude": "86.00214000" + }, + { + "id": "19683", + "name": "Huocheng", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "44.05305000", + "longitude": "80.87173000" + }, + { + "id": "19690", + "name": "Ili Kazak Zizhizhou", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "43.31211000", + "longitude": "82.27102000" + }, + { + "id": "19773", + "name": "Karamay", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "45.58473000", + "longitude": "84.88724000" + }, + { + "id": "19774", + "name": "Karamay Shi", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "45.49989000", + "longitude": "84.91683000" + }, + { + "id": "19775", + "name": "Kashgar", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "39.47066000", + "longitude": "75.98951000" + }, + { + "id": "19776", + "name": "Kaxgar Diqu", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "39.47543000", + "longitude": "75.98968000" + }, + { + "id": "19779", + "name": "Korla", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "41.76055000", + "longitude": "86.15231000" + }, + { + "id": "19786", + "name": "Kuqa", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "41.71707000", + "longitude": "82.93064000" + }, + { + "id": "19788", + "name": "Kuytun", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "44.42707000", + "longitude": "84.90069000" + }, + { + "id": "20005", + "name": "Qapqal", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "43.80194000", + "longitude": "81.08722000" + }, + { + "id": "20059", + "name": "Shache", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "38.41667000", + "longitude": "77.24056000" + }, + { + "id": "20093", + "name": "Shihezi", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "44.30230000", + "longitude": "86.03694000" + }, + { + "id": "20130", + "name": "Sishilichengzi", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "41.96194000", + "longitude": "86.47667000" + }, + { + "id": "20152", + "name": "Tacheng", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "46.74535000", + "longitude": "82.95847000" + }, + { + "id": "20153", + "name": "Tacheng Diqu", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "46.75000000", + "longitude": "82.95000000" + }, + { + "id": "20200", + "name": "Turpan", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "42.94769000", + "longitude": "89.17886000" + }, + { + "id": "20201", + "name": "Turpan Diqu", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "42.93333000", + "longitude": "89.16667000" + }, + { + "id": "20204", + "name": "Urumqi Shi", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "43.80000000", + "longitude": "87.58333000" + }, + { + "id": "20314", + "name": "Xinyuan", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "43.42649000", + "longitude": "83.24959000" + }, + { + "id": "20413", + "name": "Zangguy", + "state_id": 2263, + "state_code": "XJ", + "country_id": 45, + "country_code": "CN", + "latitude": "37.28333000", + "longitude": "78.76667000" + }, + { + "id": "19409", + "name": "Chuxiong Yizu Zizhizhou", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "25.43204000", + "longitude": "101.70479000" + }, + { + "id": "19419", + "name": "Dali", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "25.58474000", + "longitude": "100.21229000" + }, + { + "id": "19420", + "name": "Dali Baizu Zizhizhou", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "25.68548000", + "longitude": "100.13104000" + }, + { + "id": "19489", + "name": "Dêqên Tibetan Autonomous Prefecture", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.91694000", + "longitude": "99.54841000" + }, + { + "id": "19446", + "name": "Dehong Daizu Jingpozu Zizhizhou", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "24.66347000", + "longitude": "98.03964000" + }, + { + "id": "19552", + "name": "Gejiu", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "23.36085000", + "longitude": "103.15372000" + }, + { + "id": "19585", + "name": "Haikou", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "24.77985000", + "longitude": "102.57548000" + }, + { + "id": "19625", + "name": "Honghe Hanizu Yizu Zizhizhou", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "23.51675000", + "longitude": "102.97389000" + }, + { + "id": "19733", + "name": "Jinghong", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "21.99102000", + "longitude": "100.73409000" + }, + { + "id": "19767", + "name": "Kaihua", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "23.36950000", + "longitude": "104.27721000" + }, + { + "id": "19770", + "name": "Kaiyuan", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "23.69767000", + "longitude": "103.30372000" + }, + { + "id": "19783", + "name": "Kunming", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "25.03889000", + "longitude": "102.71833000" + }, + { + "id": "19822", + "name": "Lianran", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "24.92271000", + "longitude": "102.48496000" + }, + { + "id": "19835", + "name": "Lijiang", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.86879000", + "longitude": "100.22072000" + }, + { + "id": "19836", + "name": "Lincang Shi", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "23.94803000", + "longitude": "99.55124000" + }, + { + "id": "19872", + "name": "Longquan", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "24.67193000", + "longitude": "102.16130000" + }, + { + "id": "19899", + "name": "Mabai", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "23.01279000", + "longitude": "104.45081000" + }, + { + "id": "19901", + "name": "Majie", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "25.03190000", + "longitude": "102.63800000" + }, + { + "id": "19926", + "name": "Miyang", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "24.40417000", + "longitude": "103.44278000" + }, + { + "id": "19965", + "name": "Nujiang Lisuzu Zizhizhou", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "26.61738000", + "longitude": "99.14062000" + }, + { + "id": "20038", + "name": "Qujing", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "25.48333000", + "longitude": "103.78333000" + }, + { + "id": "20068", + "name": "Shangri-La", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.82511000", + "longitude": "99.70779000" + }, + { + "id": "20100", + "name": "Shilin", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "24.81878000", + "longitude": "103.33237000" + }, + { + "id": "20218", + "name": "Wenlan", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "23.36002000", + "longitude": "103.43684000" + }, + { + "id": "20221", + "name": "Wenshan City", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "23.36306000", + "longitude": "104.25047000" + }, + { + "id": "20222", + "name": "Wenshan Zhuangzu Miaozu Zizhizhou", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "23.65130000", + "longitude": "104.70830000" + }, + { + "id": "20409", + "name": "Yuxi", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "24.35500000", + "longitude": "102.54222000" + }, + { + "id": "20434", + "name": "Zhaotong", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "27.31667000", + "longitude": "103.71667000" + }, + { + "id": "20453", + "name": "Zhongshu", + "state_id": 2260, + "state_code": "YN", + "country_id": 45, + "country_code": "CN", + "latitude": "24.51667000", + "longitude": "103.76667000" + }, + { + "id": "19453", + "name": "Deqing", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.54485000", + "longitude": "119.95990000" + }, + { + "id": "19481", + "name": "Dongyang", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.26778000", + "longitude": "120.22528000" + }, + { + "id": "19505", + "name": "Fenghua", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.65628000", + "longitude": "121.40640000" + }, + { + "id": "19526", + "name": "Fuyang", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.05333000", + "longitude": "119.95194000" + }, + { + "id": "19576", + "name": "Guli", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.88162000", + "longitude": "120.03308000" + }, + { + "id": "19591", + "name": "Haining", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.53629000", + "longitude": "120.68638000" + }, + { + "id": "19598", + "name": "Hangzhou", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.29365000", + "longitude": "120.16142000" + }, + { + "id": "19662", + "name": "Huangyan", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.65010000", + "longitude": "121.26591000" + }, + { + "id": "19689", + "name": "Huzhou", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.87030000", + "longitude": "120.09330000" + }, + { + "id": "19710", + "name": "Jiaojiang", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.69844000", + "longitude": "121.47331000" + }, + { + "id": "19713", + "name": "Jiashan", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.84918000", + "longitude": "120.92583000" + }, + { + "id": "19714", + "name": "Jiaxing", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.75220000", + "longitude": "120.75000000" + }, + { + "id": "19715", + "name": "Jiaxing Shi", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.77070000", + "longitude": "120.75238000" + }, + { + "id": "19740", + "name": "Jinhua", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.10678000", + "longitude": "119.64421000" + }, + { + "id": "19750", + "name": "Jinxiang", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.43265000", + "longitude": "120.60625000" + }, + { + "id": "19785", + "name": "Kunyang", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.66583000", + "longitude": "120.56583000" + }, + { + "id": "19801", + "name": "Lanxi", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.21588000", + "longitude": "119.47156000" + }, + { + "id": "19814", + "name": "Lianghu", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.99152000", + "longitude": "120.89845000" + }, + { + "id": "19844", + "name": "Linhai", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.85535000", + "longitude": "121.14470000" + }, + { + "id": "19848", + "name": "Linping", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.42250000", + "longitude": "120.29722000" + }, + { + "id": "19858", + "name": "Lishui", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.46042000", + "longitude": "119.91029000" + }, + { + "id": "19891", + "name": "Luqiao", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.58023000", + "longitude": "121.37491000" + }, + { + "id": "19959", + "name": "Ningbo", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.87819000", + "longitude": "121.54945000" + }, + { + "id": "19961", + "name": "Ninghai", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.28917000", + "longitude": "121.42472000" + }, + { + "id": "19999", + "name": "Puyang", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.45679000", + "longitude": "119.88872000" + }, + { + "id": "20039", + "name": "Quzhou", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.95944000", + "longitude": "118.86861000" + }, + { + "id": "20069", + "name": "Shangyu", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.01556000", + "longitude": "120.87111000" + }, + { + "id": "20082", + "name": "Shaoxing", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.00237000", + "longitude": "120.57864000" + }, + { + "id": "20088", + "name": "Shenjiamen", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.95763000", + "longitude": "122.29802000" + }, + { + "id": "20164", + "name": "Taizhou", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.66266000", + "longitude": "121.43312000" + }, + { + "id": "20219", + "name": "Wenling", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.37524000", + "longitude": "121.38416000" + }, + { + "id": "20226", + "name": "Wenzhou", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "27.99942000", + "longitude": "120.66682000" + }, + { + "id": "20245", + "name": "Wuzhen", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.74536000", + "longitude": "120.48510000" + }, + { + "id": "20260", + "name": "Xianju", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "28.85470000", + "longitude": "120.73168000" + }, + { + "id": "20274", + "name": "Xiaoshan", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.16746000", + "longitude": "120.25883000" + }, + { + "id": "20383", + "name": "Yiwu", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.31506000", + "longitude": "120.07676000" + }, + { + "id": "20411", + "name": "Yuyao", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "30.05000000", + "longitude": "121.14944000" + }, + { + "id": "20430", + "name": "Zhaobaoshan", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.96950000", + "longitude": "121.68753000" + }, + { + "id": "20444", + "name": "Zhicheng", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "31.00751000", + "longitude": "119.90851000" + }, + { + "id": "20461", + "name": "Zhoushan", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.98869000", + "longitude": "122.20488000" + }, + { + "id": "20467", + "name": "Zhuji", + "state_id": 2247, + "state_code": "ZJ", + "country_id": 45, + "country_code": "CN", + "latitude": "29.71877000", + "longitude": "120.24233000" + }, + { + "id": "20807", + "name": "El Encanto", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-1.56261000", + "longitude": "-73.25684000" + }, + { + "id": "20977", + "name": "La Chorrera", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-1.48894000", + "longitude": "-72.72935000" + }, + { + "id": "20998", + "name": "La Pedrera", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-1.65596000", + "longitude": "-70.22186000" + }, + { + "id": "21014", + "name": "La Victoria", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-0.18311000", + "longitude": "-71.03760000" + }, + { + "id": "21027", + "name": "Leticia", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-4.21528000", + "longitude": "-69.94056000" + }, + { + "id": "21086", + "name": "Miriti - Paraná", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-0.81858000", + "longitude": "-70.78925000" + }, + { + "id": "21231", + "name": "Puerto Alegría", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-0.96886000", + "longitude": "-73.74962000" + }, + { + "id": "21232", + "name": "Puerto Arica", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-1.90677000", + "longitude": "-71.14653000" + }, + { + "id": "21249", + "name": "Puerto Nariño", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-3.78889000", + "longitude": "-70.35584000" + }, + { + "id": "21256", + "name": "Puerto Santander", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-1.09870000", + "longitude": "-71.93911000" + }, + { + "id": "21512", + "name": "Tarapacá", + "state_id": 2895, + "state_code": "AMA", + "country_id": 48, + "country_code": "CO", + "latitude": "-2.88544000", + "longitude": "-69.77692000" + }, + { + "id": "20485", + "name": "Abejorral", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.78928000", + "longitude": "-75.42725000" + }, + { + "id": "20487", + "name": "Abriaquí", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.63148000", + "longitude": "-76.06444000" + }, + { + "id": "20504", + "name": "Alejandría", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.36667000", + "longitude": "-75.08333000" + }, + { + "id": "20512", + "name": "Amagá", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.04001000", + "longitude": "-75.70315000" + }, + { + "id": "20513", + "name": "Amalfi", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.91016000", + "longitude": "-75.07764000" + }, + { + "id": "20520", + "name": "Andes", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.66974000", + "longitude": "-75.89905000" + }, + { + "id": "20521", + "name": "Angelópolis", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.12228000", + "longitude": "-75.71432000" + }, + { + "id": "20522", + "name": "Angostura", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.87120000", + "longitude": "-75.35947000" + }, + { + "id": "20527", + "name": "Anza", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.33333000", + "longitude": "-75.91667000" + }, + { + "id": "20529", + "name": "Apartadó", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.88299000", + "longitude": "-76.62587000" + }, + { + "id": "20541", + "name": "Arboletes", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "8.85051000", + "longitude": "-76.42694000" + }, + { + "id": "20544", + "name": "Argelia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.73127000", + "longitude": "-75.14257000" + }, + { + "id": "20551", + "name": "Armenia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.17554000", + "longitude": "-75.81230000" + }, + { + "id": "20566", + "name": "Barbosa", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.43809000", + "longitude": "-75.33136000" + }, + { + "id": "20579", + "name": "Bello", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.36160000", + "longitude": "-75.58728000" + }, + { + "id": "20580", + "name": "Belmira", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.60508000", + "longitude": "-75.66619000" + }, + { + "id": "20588", + "name": "Betania", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.73571000", + "longitude": "-75.98964000" + }, + { + "id": "20589", + "name": "Betulia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.11284000", + "longitude": "-75.98378000" + }, + { + "id": "20602", + "name": "Briceño", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.05001000", + "longitude": "-75.50903000" + }, + { + "id": "20613", + "name": "Buriticá", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.80549000", + "longitude": "-75.92093000" + }, + { + "id": "20667", + "name": "Cañasgordas", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.80951000", + "longitude": "-76.03954000" + }, + { + "id": "20621", + "name": "Caicedo", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.42805000", + "longitude": "-75.99715000" + }, + { + "id": "20631", + "name": "Caldas", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.09106000", + "longitude": "-75.63569000" + }, + { + "id": "20638", + "name": "Campamento", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.03910000", + "longitude": "-75.28938000" + }, + { + "id": "20649", + "name": "Caracolí", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.40920000", + "longitude": "-74.75715000" + }, + { + "id": "20650", + "name": "Caramanta", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.54144000", + "longitude": "-75.66961000" + }, + { + "id": "20652", + "name": "Carepa", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.75849000", + "longitude": "-76.65255000" + }, + { + "id": "20656", + "name": "Carmen de Viboral", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.08236000", + "longitude": "-75.33509000" + }, + { + "id": "20658", + "name": "Carolina", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.74807000", + "longitude": "-75.32131000" + }, + { + "id": "20666", + "name": "Caucasia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.98654000", + "longitude": "-75.19349000" + }, + { + "id": "20763", + "name": "Cáceres", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.68252000", + "longitude": "-75.22481000" + }, + { + "id": "20683", + "name": "Chigorodó", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.66638000", + "longitude": "-76.68106000" + }, + { + "id": "20710", + "name": "Cisneros", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.54507000", + "longitude": "-75.09415000" + }, + { + "id": "20711", + "name": "Ciudad Bolívar", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.85389000", + "longitude": "-76.02528000" + }, + { + "id": "20716", + "name": "Cocorná", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.00579000", + "longitude": "-75.16984000" + }, + { + "id": "20724", + "name": "Concepción", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.39408000", + "longitude": "-75.25830000" + }, + { + "id": "20727", + "name": "Concordia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.04639000", + "longitude": "-75.90705000" + }, + { + "id": "20735", + "name": "Copacabana", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.36230000", + "longitude": "-75.49922000" + }, + { + "id": "20747", + "name": "Cruces de Anorí", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.18333000", + "longitude": "-75.06667000" + }, + { + "id": "20773", + "name": "Dabeiba", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.03367000", + "longitude": "-76.34161000" + }, + { + "id": "20780", + "name": "Don Matías", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.50559000", + "longitude": "-75.36645000" + }, + { + "id": "20781", + "name": "Donmatías", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.48569000", + "longitude": "-75.39496000" + }, + { + "id": "20785", + "name": "Ebéjico", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.32598000", + "longitude": "-75.76835000" + }, + { + "id": "20786", + "name": "El Bagre", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.60347000", + "longitude": "-74.80951000" + }, + { + "id": "20798", + "name": "El Carmen de Viboral", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.97810000", + "longitude": "-75.26322000" + }, + { + "id": "20828", + "name": "El Santuario", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.13568000", + "longitude": "-75.25705000" + }, + { + "id": "20839", + "name": "Entrerríos", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.56540000", + "longitude": "-75.51690000" + }, + { + "id": "20838", + "name": "Entrerrios", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.58333000", + "longitude": "-75.58333000" + }, + { + "id": "20840", + "name": "Envigado", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.17591000", + "longitude": "-75.59174000" + }, + { + "id": "20859", + "name": "Fredonia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.89239000", + "longitude": "-75.68546000" + }, + { + "id": "20861", + "name": "Frontino", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.77133000", + "longitude": "-76.13324000" + }, + { + "id": "20931", + "name": "Gómez Plata", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.68178000", + "longitude": "-75.21907000" + }, + { + "id": "20885", + "name": "Giraldo", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.66667000", + "longitude": "-75.95346000" + }, + { + "id": "20888", + "name": "Girardota", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.36789000", + "longitude": "-75.46231000" + }, + { + "id": "20893", + "name": "Granada", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.14353000", + "longitude": "-75.18532000" + }, + { + "id": "20901", + "name": "Guadalupe", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.81449000", + "longitude": "-75.24063000" + }, + { + "id": "20913", + "name": "Guarne", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.28345000", + "longitude": "-75.44363000" + }, + { + "id": "20915", + "name": "Guatapé", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.25548000", + "longitude": "-75.16432000" + }, + { + "id": "20939", + "name": "Heliconia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.20831000", + "longitude": "-75.73565000" + }, + { + "id": "20942", + "name": "Hispania", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.79925000", + "longitude": "-75.90718000" + }, + { + "id": "20954", + "name": "Itagüí", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.18461000", + "longitude": "-75.59913000" + }, + { + "id": "20953", + "name": "Itagui", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.17874000", + "longitude": "-75.63117000" + }, + { + "id": "20955", + "name": "Ituango", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.17117000", + "longitude": "-75.76404000" + }, + { + "id": "20959", + "name": "Jardín", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.59038000", + "longitude": "-75.81846000" + }, + { + "id": "20961", + "name": "Jericó", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.79211000", + "longitude": "-75.78601000" + }, + { + "id": "20974", + "name": "La Ceja", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.00000000", + "longitude": "-75.43311000" + }, + { + "id": "20983", + "name": "La Estrella", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.14239000", + "longitude": "-75.65257000" + }, + { + "id": "21000", + "name": "La Pintada", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.74867000", + "longitude": "-75.60626000" + }, + { + "id": "21009", + "name": "La Unión", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.94642000", + "longitude": "-75.35917000" + }, + { + "id": "21028", + "name": "Liborina", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.67790000", + "longitude": "-75.81218000" + }, + { + "id": "21044", + "name": "Maceo", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.55196000", + "longitude": "-74.78741000" + }, + { + "id": "21066", + "name": "Marinilla", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.19609000", + "longitude": "-75.30313000" + }, + { + "id": "21074", + "name": "Medellín", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.25184000", + "longitude": "-75.56359000" + }, + { + "id": "21097", + "name": "Montebello", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.93703000", + "longitude": "-75.52741000" + }, + { + "id": "21117", + "name": "Municipio de San Pedro de los Milagros", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.46538000", + "longitude": "-75.56452000" + }, + { + "id": "21120", + "name": "Murindó", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.84698000", + "longitude": "-76.71544000" + }, + { + "id": "21121", + "name": "Mutatá", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.24407000", + "longitude": "-76.43564000" + }, + { + "id": "21126", + "name": "Nariño", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.60893000", + "longitude": "-75.17656000" + }, + { + "id": "21129", + "name": "Nechí", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "8.09419000", + "longitude": "-74.77573000" + }, + { + "id": "21130", + "name": "Necoclí", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "8.42627000", + "longitude": "-76.78926000" + }, + { + "id": "21149", + "name": "Olaya", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.62773000", + "longitude": "-75.81270000" + }, + { + "id": "21197", + "name": "Peñol", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.23434000", + "longitude": "-75.22573000" + }, + { + "id": "21194", + "name": "Peque", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.02123000", + "longitude": "-75.90926000" + }, + { + "id": "21227", + "name": "Pueblorrico", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.80000000", + "longitude": "-75.85000000" + }, + { + "id": "21234", + "name": "Puerto Berrío", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.50749000", + "longitude": "-74.52271000" + }, + { + "id": "21248", + "name": "Puerto Nare", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.19167000", + "longitude": "-74.58670000" + }, + { + "id": "21258", + "name": "Puerto Triunfo", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.87259000", + "longitude": "-74.64050000" + }, + { + "id": "21281", + "name": "Remedios", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.02835000", + "longitude": "-74.69379000" + }, + { + "id": "21286", + "name": "Retiro", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.05906000", + "longitude": "-75.51488000" + }, + { + "id": "21293", + "name": "Rionegro", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.16667000", + "longitude": "-75.41667000" + }, + { + "id": "21311", + "name": "Sabanalarga", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.84893000", + "longitude": "-75.81711000" + }, + { + "id": "21314", + "name": "Sabaneta", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.15153000", + "longitude": "-75.61657000" + }, + { + "id": "21323", + "name": "Salgar", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.96711000", + "longitude": "-75.98747000" + }, + { + "id": "21330", + "name": "San Andrés", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.90333000", + "longitude": "-75.68250000" + }, + { + "id": "21334", + "name": "San Andrés de Cuerquía", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.91667000", + "longitude": "-75.66667000" + }, + { + "id": "21345", + "name": "San Carlos", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.79177000", + "longitude": "-74.77316000" + }, + { + "id": "21357", + "name": "San Francisco", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.11667000", + "longitude": "-75.98333000" + }, + { + "id": "21362", + "name": "San Jerónimo", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.44139000", + "longitude": "-75.70783000" + }, + { + "id": "21366", + "name": "San José de la Montaña", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.82205000", + "longitude": "-75.69757000" + }, + { + "id": "21376", + "name": "San Juan de Urabá", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "8.75924000", + "longitude": "-76.52969000" + }, + { + "id": "21396", + "name": "San Pedro", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.46135000", + "longitude": "-75.55778000" + }, + { + "id": "21399", + "name": "San Pedro de Uraba", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "8.42291000", + "longitude": "-76.31747000" + }, + { + "id": "21400", + "name": "San Pedro de Urabá", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "8.27515000", + "longitude": "-76.37641000" + }, + { + "id": "21402", + "name": "San Rafael", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.31234000", + "longitude": "-75.02426000" + }, + { + "id": "21403", + "name": "San Roque", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.48511000", + "longitude": "-75.01960000" + }, + { + "id": "21406", + "name": "San Vicente", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.28535000", + "longitude": "-75.33385000" + }, + { + "id": "21407", + "name": "San Vicente Ferrer", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.32237000", + "longitude": "-75.33020000" + }, + { + "id": "21414", + "name": "Santa Bárbara", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.88937000", + "longitude": "-75.58255000" + }, + { + "id": "21417", + "name": "Santa Fe de Antioquia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.55687000", + "longitude": "-75.82806000" + }, + { + "id": "21425", + "name": "Santa Rosa de Osos", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.64738000", + "longitude": "-75.46031000" + }, + { + "id": "21432", + "name": "Santafé de Antioquia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.55000000", + "longitude": "-75.90000000" + }, + { + "id": "21439", + "name": "Santo Domingo", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.47282000", + "longitude": "-75.16547000" + }, + { + "id": "21441", + "name": "Santuario", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.13833000", + "longitude": "-75.26417000" + }, + { + "id": "21449", + "name": "Segovia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.28132000", + "longitude": "-74.64273000" + }, + { + "id": "21475", + "name": "Sonsón", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.71062000", + "longitude": "-75.31069000" + }, + { + "id": "21474", + "name": "Sonson", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.75000000", + "longitude": "-75.00000000" + }, + { + "id": "21476", + "name": "Sopetrán", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.52271000", + "longitude": "-75.74608000" + }, + { + "id": "21513", + "name": "Tarazá", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.58358000", + "longitude": "-75.40068000" + }, + { + "id": "21514", + "name": "Tarso", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.86467000", + "longitude": "-75.82192000" + }, + { + "id": "21562", + "name": "Támesis", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.66462000", + "longitude": "-75.71339000" + }, + { + "id": "21532", + "name": "Titiribí", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.06276000", + "longitude": "-75.79370000" + }, + { + "id": "21537", + "name": "Toledo", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.01306000", + "longitude": "-75.69528000" + }, + { + "id": "21557", + "name": "Turbo", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "8.09263000", + "longitude": "-76.72822000" + }, + { + "id": "21572", + "name": "Uramita", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.89944000", + "longitude": "-76.17417000" + }, + { + "id": "21574", + "name": "Urrao", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.31696000", + "longitude": "-76.13420000" + }, + { + "id": "21577", + "name": "Valdivia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.29382000", + "longitude": "-75.39190000" + }, + { + "id": "21584", + "name": "Valparaíso", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.61500000", + "longitude": "-75.62422000" + }, + { + "id": "21585", + "name": "Vegachí", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.76141000", + "longitude": "-74.79473000" + }, + { + "id": "21588", + "name": "Venecia", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "5.95417000", + "longitude": "-75.79904000" + }, + { + "id": "21595", + "name": "Vigía del Fuerte", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.58933000", + "longitude": "-76.89599000" + }, + { + "id": "21621", + "name": "Yalí", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.70257000", + "longitude": "-74.79018000" + }, + { + "id": "21622", + "name": "Yarumal", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.98532000", + "longitude": "-75.45402000" + }, + { + "id": "21624", + "name": "Yolombó", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.66569000", + "longitude": "-74.99120000" + }, + { + "id": "21625", + "name": "Yondó", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "6.90738000", + "longitude": "-74.17686000" + }, + { + "id": "21632", + "name": "Zaragoza", + "state_id": 2890, + "state_code": "ANT", + "country_id": 48, + "country_code": "CO", + "latitude": "7.48971000", + "longitude": "-74.86919000" + }, + { + "id": "20536", + "name": "Arauca", + "state_id": 2881, + "state_code": "ARA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.08471000", + "longitude": "-70.75908000" + }, + { + "id": "20537", + "name": "Arauquita", + "state_id": 2881, + "state_code": "ARA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.02917000", + "longitude": "-71.42806000" + }, + { + "id": "20746", + "name": "Cravo Norte", + "state_id": 2881, + "state_code": "ARA", + "country_id": 48, + "country_code": "CO", + "latitude": "6.30173000", + "longitude": "-70.20415000" + }, + { + "id": "20856", + "name": "Fortul", + "state_id": 2881, + "state_code": "ARA", + "country_id": 48, + "country_code": "CO", + "latitude": "6.74611000", + "longitude": "-71.85667000" + }, + { + "id": "21253", + "name": "Puerto Rondón", + "state_id": 2881, + "state_code": "ARA", + "country_id": 48, + "country_code": "CO", + "latitude": "6.28048000", + "longitude": "-71.10000000" + }, + { + "id": "21444", + "name": "Saravena", + "state_id": 2881, + "state_code": "ARA", + "country_id": 48, + "country_code": "CO", + "latitude": "6.96319000", + "longitude": "-71.88230000" + }, + { + "id": "21508", + "name": "Tame", + "state_id": 2881, + "state_code": "ARA", + "country_id": 48, + "country_code": "CO", + "latitude": "6.46065000", + "longitude": "-71.73618000" + }, + { + "id": "21111", + "name": "Mountain", + "state_id": 2900, + "state_code": "SAP", + "country_id": 48, + "country_code": "CO", + "latitude": "13.36667000", + "longitude": "-81.36667000" + }, + { + "id": "21224", + "name": "Providencia", + "state_id": 2900, + "state_code": "SAP", + "country_id": 48, + "country_code": "CO", + "latitude": "13.38479000", + "longitude": "-81.37468000" + }, + { + "id": "21331", + "name": "San Andrés", + "state_id": 2900, + "state_code": "SAP", + "country_id": 48, + "country_code": "CO", + "latitude": "12.58317000", + "longitude": "-81.70636000" + }, + { + "id": "20564", + "name": "Baranoa", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.79497000", + "longitude": "-74.92073000" + }, + { + "id": "20574", + "name": "Barranquilla", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.96854000", + "longitude": "-74.78132000" + }, + { + "id": "20640", + "name": "Campo de la Cruz", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.37844000", + "longitude": "-74.90258000" + }, + { + "id": "20643", + "name": "Candelaria", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.47387000", + "longitude": "-74.88581000" + }, + { + "id": "20876", + "name": "Galapa", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.89790000", + "longitude": "-74.88700000" + }, + { + "id": "20966", + "name": "Juan de Acosta", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.82930000", + "longitude": "-75.03346000" + }, + { + "id": "21038", + "name": "Luruaco", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.61712000", + "longitude": "-75.15146000" + }, + { + "id": "21053", + "name": "Malambo", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.85953000", + "longitude": "-74.77386000" + }, + { + "id": "21055", + "name": "Manatí", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.46402000", + "longitude": "-74.98220000" + }, + { + "id": "21171", + "name": "Palmar de Varela", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.74055000", + "longitude": "-74.75443000" + }, + { + "id": "21208", + "name": "Piojó", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.74846000", + "longitude": "-75.10776000" + }, + { + "id": "21217", + "name": "Polonuevo", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.77697000", + "longitude": "-74.85344000" + }, + { + "id": "21218", + "name": "Ponedera", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.64297000", + "longitude": "-74.75393000" + }, + { + "id": "21238", + "name": "Puerto Colombia", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "11.00854000", + "longitude": "-74.90887000" + }, + { + "id": "21283", + "name": "Repelón", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.50937000", + "longitude": "-75.12830000" + }, + { + "id": "21309", + "name": "Sabanagrande", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.80077000", + "longitude": "-74.77051000" + }, + { + "id": "21312", + "name": "Sabanalarga", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.61636000", + "longitude": "-74.95717000" + }, + { + "id": "21420", + "name": "Santa Lucía", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.32420000", + "longitude": "-74.96017000" + }, + { + "id": "21440", + "name": "Santo Tomás", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.75773000", + "longitude": "-74.75451000" + }, + { + "id": "21472", + "name": "Soledad", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.89986000", + "longitude": "-74.78787000" + }, + { + "id": "21485", + "name": "Suan", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.30214000", + "longitude": "-74.91934000" + }, + { + "id": "21550", + "name": "Tubará", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.87562000", + "longitude": "-74.97873000" + }, + { + "id": "21576", + "name": "Usiacurí", + "state_id": 2880, + "state_code": "ATL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.74313000", + "longitude": "-74.97604000" + }, + { + "id": "20490", + "name": "Achí", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.56950000", + "longitude": "-74.55715000" + }, + { + "id": "20510", + "name": "Altos del Rosario", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.79162000", + "longitude": "-74.16556000" + }, + { + "id": "20543", + "name": "Arenal", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.45928000", + "longitude": "-73.94331000" + }, + { + "id": "20549", + "name": "Arjona", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.17594000", + "longitude": "-75.35884000" + }, + { + "id": "20554", + "name": "Arroyohondo", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.25220000", + "longitude": "-75.01980000" + }, + { + "id": "20573", + "name": "Barranco de Loba", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.94597000", + "longitude": "-74.10647000" + }, + { + "id": "20628", + "name": "Calamar", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.23377000", + "longitude": "-74.94240000" + }, + { + "id": "20645", + "name": "Cantagallo", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "7.37926000", + "longitude": "-73.91550000" + }, + { + "id": "20659", + "name": "Cartagena", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.39972000", + "longitude": "-75.51444000" + }, + { + "id": "20770", + "name": "Córdoba", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.55149000", + "longitude": "-74.89800000" + }, + { + "id": "20707", + "name": "Cicuco", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.27756000", + "longitude": "-74.64312000" + }, + { + "id": "20715", + "name": "Clemencia", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.56645000", + "longitude": "-75.32499000" + }, + { + "id": "20796", + "name": "El Carmen de Bolívar", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.71740000", + "longitude": "-75.12023000" + }, + { + "id": "20810", + "name": "El Guamo", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.01753000", + "longitude": "-74.93483000" + }, + { + "id": "20818", + "name": "El Peñón", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.98691000", + "longitude": "-73.94697000" + }, + { + "id": "20935", + "name": "Hatillo de Loba", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.95635000", + "longitude": "-74.07819000" + }, + { + "id": "21048", + "name": "Magangué", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.24202000", + "longitude": "-74.75467000" + }, + { + "id": "21050", + "name": "Mahates", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.23293000", + "longitude": "-75.18985000" + }, + { + "id": "21072", + "name": "María la Baja", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.98320000", + "longitude": "-75.30155000" + }, + { + "id": "21065", + "name": "Margarita", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.06325000", + "longitude": "-74.28134000" + }, + { + "id": "21093", + "name": "Mompós", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.13990000", + "longitude": "-74.54513000" + }, + { + "id": "21098", + "name": "Montecristo", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.29710000", + "longitude": "-74.47330000" + }, + { + "id": "21104", + "name": "Morales", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.27520000", + "longitude": "-73.86884000" + }, + { + "id": "21114", + "name": "Municipio de Cartagena de Indias", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.50743000", + "longitude": "-75.45430000" + }, + { + "id": "21116", + "name": "Municipio de María la Baja", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.99228000", + "longitude": "-75.34364000" + }, + { + "id": "21138", + "name": "Norosí", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.52692000", + "longitude": "-74.03736000" + }, + { + "id": "21207", + "name": "Pinillos", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.91925000", + "longitude": "-74.46771000" + }, + { + "id": "21306", + "name": "Río Viejo", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.58740000", + "longitude": "-73.83901000" + }, + { + "id": "21280", + "name": "Regidor", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.72229000", + "longitude": "-73.84891000" + }, + { + "id": "21350", + "name": "San Cristóbal", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.87809000", + "longitude": "-75.25248000" + }, + { + "id": "21353", + "name": "San Estanislao", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.39833000", + "longitude": "-75.15111000" + }, + { + "id": "21355", + "name": "San Fernando", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.27972000", + "longitude": "-74.53389000" + }, + { + "id": "21360", + "name": "San Jacinto", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.83906000", + "longitude": "-75.11043000" + }, + { + "id": "21361", + "name": "San Jacinto del Cauca", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.23729000", + "longitude": "-74.66782000" + }, + { + "id": "21372", + "name": "San Juan Nepomuceno", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.94976000", + "longitude": "-75.07426000" + }, + { + "id": "21386", + "name": "San Martín de Loba", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.88214000", + "longitude": "-74.00353000" + }, + { + "id": "21393", + "name": "San Pablo", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.05154000", + "longitude": "-75.26775000" + }, + { + "id": "21416", + "name": "Santa Catalina", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.60448000", + "longitude": "-75.29555000" + }, + { + "id": "21423", + "name": "Santa Rosa", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.47312000", + "longitude": "-75.36160000" + }, + { + "id": "21427", + "name": "Santa Rosa del Sur", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "7.96444000", + "longitude": "-74.05444000" + }, + { + "id": "21460", + "name": "Simití", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "7.81632000", + "longitude": "-73.97922000" + }, + { + "id": "21477", + "name": "Soplaviento", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.33176000", + "longitude": "-75.11853000" + }, + { + "id": "21505", + "name": "Talaigua Nuevo", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.30347000", + "longitude": "-74.56477000" + }, + { + "id": "21506", + "name": "Talaigua Viejo", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.31206000", + "longitude": "-74.58544000" + }, + { + "id": "21531", + "name": "Tiquisio", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "8.55666000", + "longitude": "-74.26355000" + }, + { + "id": "21555", + "name": "Turbaco", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.35707000", + "longitude": "-75.38044000" + }, + { + "id": "21556", + "name": "Turbaná", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.27169000", + "longitude": "-75.44222000" + }, + { + "id": "21609", + "name": "Villanueva", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "10.44759000", + "longitude": "-75.26574000" + }, + { + "id": "21629", + "name": "Zambrano", + "state_id": 2893, + "state_code": "BOL", + "country_id": 48, + "country_code": "CO", + "latitude": "9.74823000", + "longitude": "-74.88487000" + }, + { + "id": "20507", + "name": "Almeida", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "4.97083000", + "longitude": "-73.37972000" + }, + { + "id": "20532", + "name": "Aquitania", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.40341000", + "longitude": "-72.90192000" + }, + { + "id": "20542", + "name": "Arcabuco", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.75463000", + "longitude": "-73.43669000" + }, + { + "id": "21639", + "name": "Úmbita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.22041000", + "longitude": "-73.45695000" + }, + { + "id": "20583", + "name": "Belén", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.98892000", + "longitude": "-72.91254000" + }, + { + "id": "20587", + "name": "Berbeo", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.22760000", + "longitude": "-73.12527000" + }, + { + "id": "20591", + "name": "Betéitiva", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.91102000", + "longitude": "-72.80926000" + }, + { + "id": "20593", + "name": "Boavita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.33031000", + "longitude": "-72.58505000" + }, + { + "id": "20600", + "name": "Boyacá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.45371000", + "longitude": "-73.36250000" + }, + { + "id": "20601", + "name": "Briceño", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.68822000", + "longitude": "-73.91784000" + }, + { + "id": "20609", + "name": "Buenavista", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.50000000", + "longitude": "-73.96667000" + }, + { + "id": "20614", + "name": "Busbanzá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.83047000", + "longitude": "-72.88419000" + }, + { + "id": "20632", + "name": "Caldas", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.57830000", + "longitude": "-73.88066000" + }, + { + "id": "20641", + "name": "Campohermoso", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "4.97733000", + "longitude": "-73.16714000" + }, + { + "id": "20768", + "name": "Cómbita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.68760000", + "longitude": "-73.32942000" + }, + { + "id": "20670", + "name": "Cerinza", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.93649000", + "longitude": "-72.99127000" + }, + { + "id": "20706", + "name": "Chíquiza", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.60412000", + "longitude": "-73.48518000" + }, + { + "id": "20687", + "name": "Chinavita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.17915000", + "longitude": "-73.37147000" + }, + { + "id": "20693", + "name": "Chiquinquirá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.61363000", + "longitude": "-73.83848000" + }, + { + "id": "20695", + "name": "Chiscas", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.55642000", + "longitude": "-72.50378000" + }, + { + "id": "20696", + "name": "Chita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.07788000", + "longitude": "-72.46774000" + }, + { + "id": "20698", + "name": "Chitaraque", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.96167000", + "longitude": "-73.45761000" + }, + { + "id": "20699", + "name": "Chivatá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.55823000", + "longitude": "-73.28198000" + }, + { + "id": "20701", + "name": "Chivor", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "4.88556000", + "longitude": "-73.36889000" + }, + { + "id": "20714", + "name": "Ciénega", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.40867000", + "longitude": "-73.29572000" + }, + { + "id": "20723", + "name": "Combita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.63333000", + "longitude": "-73.31667000" + }, + { + "id": "20736", + "name": "Coper", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.47681000", + "longitude": "-74.04416000" + }, + { + "id": "20740", + "name": "Corrales", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.82497000", + "longitude": "-72.84539000" + }, + { + "id": "20743", + "name": "Covarachía", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.50563000", + "longitude": "-72.73310000" + }, + { + "id": "20762", + "name": "Cuítiva", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.58007000", + "longitude": "-72.96687000" + }, + { + "id": "20750", + "name": "Cubará", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "7.00578000", + "longitude": "-72.10568000" + }, + { + "id": "20751", + "name": "Cucaita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.54373000", + "longitude": "-73.45433000" + }, + { + "id": "20783", + "name": "Duitama", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.82450000", + "longitude": "-73.03408000" + }, + { + "id": "20802", + "name": "El Cocuy", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.32839000", + "longitude": "-72.43577000" + }, + { + "id": "20808", + "name": "El Espino", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.50812000", + "longitude": "-72.48036000" + }, + { + "id": "20846", + "name": "Firavitoba", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.66885000", + "longitude": "-72.99289000" + }, + { + "id": "20850", + "name": "Floresta", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.85903000", + "longitude": "-72.92511000" + }, + { + "id": "20873", + "name": "Gachantivá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.74417000", + "longitude": "-73.54253000" + }, + { + "id": "20882", + "name": "Gameza", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.80313000", + "longitude": "-72.73721000" + }, + { + "id": "20883", + "name": "Garagoa", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.08236000", + "longitude": "-73.36334000" + }, + { + "id": "20928", + "name": "Gámeza", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.80263000", + "longitude": "-72.80586000" + }, + { + "id": "20933", + "name": "Güicán", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.46554000", + "longitude": "-72.41539000" + }, + { + "id": "20896", + "name": "Guacamayas", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.44599000", + "longitude": "-72.51676000" + }, + { + "id": "20918", + "name": "Guateque", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.00619000", + "longitude": "-73.47274000" + }, + { + "id": "20924", + "name": "Guayatá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "4.96417000", + "longitude": "-73.48750000" + }, + { + "id": "20956", + "name": "Iza", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.61203000", + "longitude": "-72.97930000" + }, + { + "id": "20960", + "name": "Jenesano", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.38541000", + "longitude": "-73.36364000" + }, + { + "id": "20962", + "name": "Jericó", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.14577000", + "longitude": "-72.58598000" + }, + { + "id": "20973", + "name": "La Capilla", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.08076000", + "longitude": "-73.48076000" + }, + { + "id": "21010", + "name": "La Uvita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.24262000", + "longitude": "-72.56448000" + }, + { + "id": "21015", + "name": "La Victoria", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.52278000", + "longitude": "-74.23280000" + }, + { + "id": "21018", + "name": "Labranzagrande", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.56223000", + "longitude": "-72.57499000" + }, + { + "id": "21042", + "name": "Macanal", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "4.95050000", + "longitude": "-73.32029000" + }, + { + "id": "21067", + "name": "Maripí", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.55194000", + "longitude": "-74.00861000" + }, + { + "id": "21084", + "name": "Miraflores", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.12216000", + "longitude": "-73.21212000" + }, + { + "id": "21094", + "name": "Mongua", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.75084000", + "longitude": "-72.80339000" + }, + { + "id": "21095", + "name": "Monguí", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.69752000", + "longitude": "-72.83359000" + }, + { + "id": "21096", + "name": "Moniquirá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.84315000", + "longitude": "-73.57775000" + }, + { + "id": "21110", + "name": "Motavita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.57655000", + "longitude": "-73.36696000" + }, + { + "id": "21123", + "name": "Muzo", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.53528000", + "longitude": "-74.10778000" + }, + { + "id": "21135", + "name": "Nobsa", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.76978000", + "longitude": "-72.94099000" + }, + { + "id": "21140", + "name": "Nuevo Colón", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.35368000", + "longitude": "-73.45660000" + }, + { + "id": "21148", + "name": "Oicatá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.59548000", + "longitude": "-73.30820000" + }, + { + "id": "21156", + "name": "Otanche", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.77534000", + "longitude": "-74.20315000" + }, + { + "id": "21158", + "name": "Pachavita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.13969000", + "longitude": "-73.39739000" + }, + { + "id": "21166", + "name": "Paipa", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.78013000", + "longitude": "-73.11708000" + }, + { + "id": "21168", + "name": "Pajarito", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.34751000", + "longitude": "-72.72075000" + }, + { + "id": "21180", + "name": "Panqueba", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.44533000", + "longitude": "-72.46268000" + }, + { + "id": "21186", + "name": "Pauna", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.65861000", + "longitude": "-73.98250000" + }, + { + "id": "21187", + "name": "Paya", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.62492000", + "longitude": "-72.42345000" + }, + { + "id": "21190", + "name": "Paz de Río", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.00219000", + "longitude": "-72.78857000" + }, + { + "id": "21268", + "name": "Páez", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.10112000", + "longitude": "-73.05123000" + }, + { + "id": "21196", + "name": "Pesca", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.50213000", + "longitude": "-73.08794000" + }, + { + "id": "21209", + "name": "Pisba", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.72396000", + "longitude": "-72.48646000" + }, + { + "id": "21236", + "name": "Puerto Boyacá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.97214000", + "longitude": "-74.46349000" + }, + { + "id": "21276", + "name": "Quípama", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.51940000", + "longitude": "-74.17765000" + }, + { + "id": "21278", + "name": "Ramiriquí", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.40020000", + "longitude": "-73.33544000" + }, + { + "id": "21303", + "name": "Ráquira", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.53793000", + "longitude": "-73.63201000" + }, + { + "id": "21300", + "name": "Rondón", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.38173000", + "longitude": "-73.19683000" + }, + { + "id": "21315", + "name": "Saboyá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.69636000", + "longitude": "-73.76932000" + }, + { + "id": "21324", + "name": "Samacá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.49273000", + "longitude": "-73.48537000" + }, + { + "id": "21352", + "name": "San Eduardo", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.22396000", + "longitude": "-73.07696000" + }, + { + "id": "21368", + "name": "San José de Pare", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.01746000", + "longitude": "-73.54703000" + }, + { + "id": "21380", + "name": "San Luis de Gaceno", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "4.82052000", + "longitude": "-73.16851000" + }, + { + "id": "21387", + "name": "San Mateo", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.37704000", + "longitude": "-72.57797000" + }, + { + "id": "21390", + "name": "San Miguel de Sema", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.51847000", + "longitude": "-73.72238000" + }, + { + "id": "21394", + "name": "San Pablo de Borbur", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.66638000", + "longitude": "-74.13723000" + }, + { + "id": "21422", + "name": "Santa María", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "4.82282000", + "longitude": "-73.25373000" + }, + { + "id": "21426", + "name": "Santa Rosa de Viterbo", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.87401000", + "longitude": "-72.98217000" + }, + { + "id": "21430", + "name": "Santa Sofía", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.70213000", + "longitude": "-73.62976000" + }, + { + "id": "21433", + "name": "Santana", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.04464000", + "longitude": "-73.51107000" + }, + { + "id": "21447", + "name": "Sativanorte", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.13156000", + "longitude": "-72.70895000" + }, + { + "id": "21448", + "name": "Sativasur", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.08959000", + "longitude": "-72.72432000" + }, + { + "id": "21502", + "name": "Sáchica", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.58453000", + "longitude": "-73.54184000" + }, + { + "id": "21452", + "name": "Siachoque", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.51238000", + "longitude": "-73.24436000" + }, + { + "id": "21465", + "name": "Soatá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.29966000", + "longitude": "-72.72422000" + }, + { + "id": "21466", + "name": "Socha", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.92926000", + "longitude": "-72.70072000" + }, + { + "id": "21467", + "name": "Socha Viejo", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.98170000", + "longitude": "-72.71503000" + }, + { + "id": "21469", + "name": "Socotá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.04028000", + "longitude": "-72.63509000" + }, + { + "id": "21470", + "name": "Sogamoso", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.71434000", + "longitude": "-72.93391000" + }, + { + "id": "21473", + "name": "Somondoco", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "4.98495000", + "longitude": "-73.43238000" + }, + { + "id": "21479", + "name": "Sora", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.56514000", + "longitude": "-73.45017000" + }, + { + "id": "21480", + "name": "Soracá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.50055000", + "longitude": "-73.33299000" + }, + { + "id": "21481", + "name": "Sotaquirá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.76483000", + "longitude": "-73.24758000" + }, + { + "id": "21495", + "name": "Susacón", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.22978000", + "longitude": "-72.69010000" + }, + { + "id": "21496", + "name": "Sutamarchán", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.61538000", + "longitude": "-73.61701000" + }, + { + "id": "21498", + "name": "Sutatenza", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.02311000", + "longitude": "-73.45230000" + }, + { + "id": "21515", + "name": "Tasco", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.91044000", + "longitude": "-72.78001000" + }, + { + "id": "21563", + "name": "Tópaga", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.75979000", + "longitude": "-72.82583000" + }, + { + "id": "21521", + "name": "Tenza", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.07664000", + "longitude": "-73.42077000" + }, + { + "id": "21523", + "name": "Tibaná", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.31728000", + "longitude": "-73.39655000" + }, + { + "id": "21524", + "name": "Tibasosa", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.74722000", + "longitude": "-73.01091000" + }, + { + "id": "21529", + "name": "Tinjacá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.57916000", + "longitude": "-73.64486000" + }, + { + "id": "21530", + "name": "Tipacoque", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.42031000", + "longitude": "-72.69184000" + }, + { + "id": "21533", + "name": "Toca", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.56393000", + "longitude": "-73.18398000" + }, + { + "id": "21536", + "name": "Togüí", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.93462000", + "longitude": "-73.51297000" + }, + { + "id": "21545", + "name": "Tota", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.55833000", + "longitude": "-72.98757000" + }, + { + "id": "21553", + "name": "Tunja", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.53528000", + "longitude": "-73.36778000" + }, + { + "id": "21554", + "name": "Tununguá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.72967000", + "longitude": "-73.94137000" + }, + { + "id": "21558", + "name": "Turmequé", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.32360000", + "longitude": "-73.49067000" + }, + { + "id": "21559", + "name": "Tuta", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.68966000", + "longitude": "-73.22779000" + }, + { + "id": "21560", + "name": "Tutazá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "6.03228000", + "longitude": "-72.85639000" + }, + { + "id": "21568", + "name": "Umbita", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.18411000", + "longitude": "-73.48341000" + }, + { + "id": "21589", + "name": "Ventaquemada", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.35987000", + "longitude": "-73.55032000" + }, + { + "id": "21598", + "name": "Villa de Leyva", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.67061000", + "longitude": "-73.51554000" + }, + { + "id": "21615", + "name": "Viracachá", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.43637000", + "longitude": "-73.29606000" + }, + { + "id": "21634", + "name": "Zetaquira", + "state_id": 2903, + "state_code": "BOY", + "country_id": 48, + "country_code": "CO", + "latitude": "5.25824000", + "longitude": "-73.18275000" + }, + { + "id": "20494", + "name": "Aguadas", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.61161000", + "longitude": "-75.45624000" + }, + { + "id": "20525", + "name": "Anserma", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.20427000", + "longitude": "-75.79167000" + }, + { + "id": "20534", + "name": "Aranzazu", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.25519000", + "longitude": "-75.50984000" + }, + { + "id": "20576", + "name": "Belalcázar", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.99528000", + "longitude": "-75.81278000" + }, + { + "id": "20688", + "name": "Chinchiná", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.97522000", + "longitude": "-75.70416000" + }, + { + "id": "20844", + "name": "Filadelfia", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.29606000", + "longitude": "-75.56120000" + }, + { + "id": "20981", + "name": "La Dorada", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.53333000", + "longitude": "-74.70000000" + }, + { + "id": "20992", + "name": "La Merced", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.38060000", + "longitude": "-75.58842000" + }, + { + "id": "21059", + "name": "Manizales", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.06889000", + "longitude": "-75.51738000" + }, + { + "id": "21061", + "name": "Manzanares", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.23305000", + "longitude": "-75.15168000" + }, + { + "id": "21068", + "name": "Marmato", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.47554000", + "longitude": "-75.59710000" + }, + { + "id": "21069", + "name": "Marquetalia", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.29069000", + "longitude": "-75.08028000" + }, + { + "id": "21071", + "name": "Marulanda", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.28393000", + "longitude": "-75.26016000" + }, + { + "id": "21131", + "name": "Neira", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.17534000", + "longitude": "-75.52405000" + }, + { + "id": "21137", + "name": "Norcasia", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.57535000", + "longitude": "-74.88831000" + }, + { + "id": "21169", + "name": "Palestina", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.04571000", + "longitude": "-75.69552000" + }, + { + "id": "21267", + "name": "Pácora", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.50631000", + "longitude": "-75.49054000" + }, + { + "id": "21193", + "name": "Pensilvania", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.38840000", + "longitude": "-75.20420000" + }, + { + "id": "21294", + "name": "Riosucio", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.42164000", + "longitude": "-75.70318000" + }, + { + "id": "21296", + "name": "Risaralda", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.11237000", + "longitude": "-75.75861000" + }, + { + "id": "21319", + "name": "Salamina", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.37014000", + "longitude": "-75.41548000" + }, + { + "id": "21326", + "name": "Samaná", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.54061000", + "longitude": "-74.99346000" + }, + { + "id": "21364", + "name": "San José", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.08221000", + "longitude": "-75.79107000" + }, + { + "id": "21492", + "name": "Supía", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.45303000", + "longitude": "-75.65072000" + }, + { + "id": "21594", + "name": "Victoria", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.45666000", + "longitude": "-74.84061000" + }, + { + "id": "21605", + "name": "Villamaría", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.95078000", + "longitude": "-75.43680000" + }, + { + "id": "21617", + "name": "Viterbo", + "state_id": 2887, + "state_code": "CAL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.06242000", + "longitude": "-75.87159000" + }, + { + "id": "20499", + "name": "Albania", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.26325000", + "longitude": "-75.95366000" + }, + { + "id": "20586", + "name": "Belén de los Andaquíes", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.41828000", + "longitude": "-75.87753000" + }, + { + "id": "20584", + "name": "Belén de Los Andaquies", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.41667000", + "longitude": "-75.91667000" + }, + { + "id": "20660", + "name": "Cartagena del Chairá", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.33488000", + "longitude": "-74.84289000" + }, + { + "id": "20759", + "name": "Curillo", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.03327000", + "longitude": "-75.91907000" + }, + { + "id": "20805", + "name": "El Doncello", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.67817000", + "longitude": "-75.28466000" + }, + { + "id": "20815", + "name": "El Paujíl", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.57006000", + "longitude": "-75.32863000" + }, + { + "id": "20814", + "name": "El Paujil", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.57085000", + "longitude": "-75.31403000" + }, + { + "id": "20849", + "name": "Florencia", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.71619000", + "longitude": "-75.59624000" + }, + { + "id": "20994", + "name": "La Montañita", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.46389000", + "longitude": "-75.30363000" + }, + { + "id": "21082", + "name": "Milán", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.29034000", + "longitude": "-75.50757000" + }, + { + "id": "21105", + "name": "Morelia", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.48747000", + "longitude": "-75.72581000" + }, + { + "id": "21251", + "name": "Puerto Rico", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.90999000", + "longitude": "-75.15931000" + }, + { + "id": "21369", + "name": "San José del Fragua", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.30780000", + "longitude": "-76.16554000" + }, + { + "id": "21471", + "name": "Solano", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "0.22842000", + "longitude": "-73.27597000" + }, + { + "id": "21583", + "name": "Valparaíso", + "state_id": 2891, + "state_code": "CAQ", + "country_id": 48, + "country_code": "CO", + "latitude": "1.19403000", + "longitude": "-75.70746000" + }, + { + "id": "20495", + "name": "Aguazul", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.17282000", + "longitude": "-72.54706000" + }, + { + "id": "20677", + "name": "Chameza", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.19237000", + "longitude": "-72.88952000" + }, + { + "id": "20704", + "name": "Chámeza", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.21421000", + "longitude": "-72.86948000" + }, + { + "id": "20937", + "name": "Hato Corozal", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "6.16278000", + "longitude": "-70.99694000" + }, + { + "id": "21062", + "name": "Maní", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.81638000", + "longitude": "-72.27946000" + }, + { + "id": "21101", + "name": "Monterrey", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.82015000", + "longitude": "-72.87901000" + }, + { + "id": "21113", + "name": "Municipio Hato Corozal", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "6.15676000", + "longitude": "-71.76372000" + }, + { + "id": "21141", + "name": "Nunchía", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.63589000", + "longitude": "-72.19543000" + }, + { + "id": "21153", + "name": "Orocué", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.79035000", + "longitude": "-71.33917000" + }, + { + "id": "21220", + "name": "Pore", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.72792000", + "longitude": "-71.99266000" + }, + { + "id": "21279", + "name": "Recetor", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.22947000", + "longitude": "-72.76099000" + }, + { + "id": "21310", + "name": "Sabanalarga", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.85430000", + "longitude": "-73.04003000" + }, + { + "id": "21381", + "name": "San Luis de Palenque", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.42139000", + "longitude": "-71.73167000" + }, + { + "id": "21501", + "name": "Sácama", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "6.09908000", + "longitude": "-72.24880000" + }, + { + "id": "21516", + "name": "Tauramena", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.01789000", + "longitude": "-72.74675000" + }, + { + "id": "21561", + "name": "Támara", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.82998000", + "longitude": "-72.16286000" + }, + { + "id": "21548", + "name": "Trinidad", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.34778000", + "longitude": "-71.20194000" + }, + { + "id": "21607", + "name": "Villanueva", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.28333000", + "longitude": "-71.96667000" + }, + { + "id": "21626", + "name": "Yopal", + "state_id": 2892, + "state_code": "CAS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.33775000", + "longitude": "-72.39586000" + }, + { + "id": "20506", + "name": "Almaguer", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "1.91472000", + "longitude": "-76.85482000" + }, + { + "id": "20545", + "name": "Argelia", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.31728000", + "longitude": "-77.25700000" + }, + { + "id": "20562", + "name": "Balboa", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.08436000", + "longitude": "-77.20781000" + }, + { + "id": "20577", + "name": "Belalcázar", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.64644000", + "longitude": "-75.97269000" + }, + { + "id": "20599", + "name": "Bolívar", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "1.84670000", + "longitude": "-76.98292000" + }, + { + "id": "20610", + "name": "Buenos Aires", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "3.04825000", + "longitude": "-76.63066000" + }, + { + "id": "20625", + "name": "Cajibío", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.62271000", + "longitude": "-76.57039000" + }, + { + "id": "20633", + "name": "Caldono", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.79739000", + "longitude": "-76.48316000" + }, + { + "id": "20637", + "name": "Caloto", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "3.03586000", + "longitude": "-76.40788000" + }, + { + "id": "20737", + "name": "Corinto", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "3.13598000", + "longitude": "-76.20646000" + }, + { + "id": "20788", + "name": "El Bordo", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.11696000", + "longitude": "-76.98214000" + }, + { + "id": "20831", + "name": "El Tambo", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.45199000", + "longitude": "-76.81029000" + }, + { + "id": "20848", + "name": "Florencia", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "1.68318000", + "longitude": "-77.07331000" + }, + { + "id": "20911", + "name": "Guapí", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.57082000", + "longitude": "-77.88542000" + }, + { + "id": "20909", + "name": "Guapi", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.55210000", + "longitude": "-77.87865000" + }, + { + "id": "20948", + "name": "Inzá", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.55452000", + "longitude": "-76.06722000" + }, + { + "id": "20957", + "name": "Jambaló", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.85065000", + "longitude": "-76.32506000" + }, + { + "id": "21003", + "name": "La Sierra", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.19665000", + "longitude": "-76.78590000" + }, + { + "id": "21011", + "name": "La Vega", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.06201000", + "longitude": "-76.76808000" + }, + { + "id": "21041", + "name": "López", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.43333000", + "longitude": "-76.80000000" + }, + { + "id": "21080", + "name": "Mercaderes", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "1.80175000", + "longitude": "-77.17032000" + }, + { + "id": "21085", + "name": "Miranda", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "3.23773000", + "longitude": "-76.22093000" + }, + { + "id": "21103", + "name": "Morales", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.75446000", + "longitude": "-76.62791000" + }, + { + "id": "21115", + "name": "Municipio de López de Micay", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "3.00000000", + "longitude": "-77.25000000" + }, + { + "id": "21161", + "name": "Padilla", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "3.22038000", + "longitude": "-76.31385000" + }, + { + "id": "21163", + "name": "Paez", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.75000000", + "longitude": "-76.00000000" + }, + { + "id": "21167", + "name": "Paispamba", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.25462000", + "longitude": "-76.61086000" + }, + { + "id": "21185", + "name": "Patía", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.14018000", + "longitude": "-77.01744000" + }, + { + "id": "21203", + "name": "Piendamó", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.70214000", + "longitude": "-76.59736000" + }, + { + "id": "21202", + "name": "Piendamo", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.63918000", + "longitude": "-76.53055000" + }, + { + "id": "21219", + "name": "Popayán", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.43823000", + "longitude": "-76.61316000" + }, + { + "id": "21257", + "name": "Puerto Tejada", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "3.23393000", + "longitude": "-76.41935000" + }, + { + "id": "21263", + "name": "Puracé", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.33851000", + "longitude": "-76.38759000" + }, + { + "id": "21301", + "name": "Rosas", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.26093000", + "longitude": "-76.73986000" + }, + { + "id": "21404", + "name": "San Sebastián", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "1.91667000", + "longitude": "-76.66667000" + }, + { + "id": "21434", + "name": "Santander de Quilichao", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "3.00945000", + "longitude": "-76.48494000" + }, + { + "id": "21457", + "name": "Silvia", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.61557000", + "longitude": "-76.38261000" + }, + { + "id": "21482", + "name": "Sotara", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.25000000", + "longitude": "-76.58333000" + }, + { + "id": "21499", + "name": "Suárez", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.95395000", + "longitude": "-76.69644000" + }, + { + "id": "21489", + "name": "Sucre", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.06182000", + "longitude": "-76.91438000" + }, + { + "id": "21528", + "name": "Timbiquí", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.77170000", + "longitude": "-77.66536000" + }, + { + "id": "21543", + "name": "Toribío", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.95481000", + "longitude": "-76.26839000" + }, + { + "id": "21542", + "name": "Toribio", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "3.00000000", + "longitude": "-76.16667000" + }, + { + "id": "21546", + "name": "Totoró", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.50518000", + "longitude": "-76.39254000" + }, + { + "id": "21597", + "name": "Villa Rica", + "state_id": 2884, + "state_code": "CAU", + "country_id": 48, + "country_code": "CO", + "latitude": "2.51420000", + "longitude": "-76.84939000" + }, + { + "id": "20558", + "name": "Ayapel", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.31372000", + "longitude": "-75.13982000" + }, + { + "id": "20608", + "name": "Buenavista", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.04963000", + "longitude": "-76.00280000" + }, + { + "id": "20642", + "name": "Canalete", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.67611000", + "longitude": "-76.20417000" + }, + { + "id": "20669", + "name": "Cereté", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.88479000", + "longitude": "-75.79052000" + }, + { + "id": "20686", + "name": "Chimá", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.14893000", + "longitude": "-75.62841000" + }, + { + "id": "20690", + "name": "Chinú", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.03869000", + "longitude": "-75.34273000" + }, + { + "id": "20713", + "name": "Ciénaga de Oro", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.83581000", + "longitude": "-75.60425000" + }, + { + "id": "20742", + "name": "Cotorra", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.03886000", + "longitude": "-75.78969000" + }, + { + "id": "20970", + "name": "La Apartada", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.04787000", + "longitude": "-75.30097000" + }, + { + "id": "21031", + "name": "Lorica", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.23648000", + "longitude": "-75.81350000" + }, + { + "id": "21033", + "name": "Los Córdobas", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.89403000", + "longitude": "-76.35455000" + }, + { + "id": "21112", + "name": "Moñitos", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.22615000", + "longitude": "-76.13594000" + }, + { + "id": "21092", + "name": "Momil", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.23767000", + "longitude": "-75.67489000" + }, + { + "id": "21099", + "name": "Montelíbano", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "7.97917000", + "longitude": "-75.42020000" + }, + { + "id": "21102", + "name": "Montería", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.74798000", + "longitude": "-75.88143000" + }, + { + "id": "21213", + "name": "Planeta Rica", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.41150000", + "longitude": "-75.58508000" + }, + { + "id": "21225", + "name": "Pueblo Nuevo", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.24110000", + "longitude": "-74.95815000" + }, + { + "id": "21241", + "name": "Puerto Escondido", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.99453000", + "longitude": "-76.19351000" + }, + { + "id": "21245", + "name": "Puerto Libertador", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "7.68181000", + "longitude": "-75.78312000" + }, + { + "id": "21265", + "name": "Purísima", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.24955000", + "longitude": "-75.71181000" + }, + { + "id": "21266", + "name": "Purísima de la Concepción", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.23657000", + "longitude": "-75.72191000" + }, + { + "id": "21316", + "name": "Sahagún", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.94617000", + "longitude": "-75.44275000" + }, + { + "id": "21333", + "name": "San Andrés Sotavento", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.12183000", + "longitude": "-75.51627000" + }, + { + "id": "21335", + "name": "San Antero", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.37410000", + "longitude": "-75.75891000" + }, + { + "id": "21343", + "name": "San Bernardo del Viento", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "9.35330000", + "longitude": "-75.95244000" + }, + { + "id": "21346", + "name": "San Carlos", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.79577000", + "longitude": "-75.69947000" + }, + { + "id": "21401", + "name": "San Pelayo", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.95833000", + "longitude": "-75.83627000" + }, + { + "id": "21527", + "name": "Tierralta", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "7.87863000", + "longitude": "-76.21307000" + }, + { + "id": "21578", + "name": "Valencia", + "state_id": 2898, + "state_code": "COR", + "country_id": 48, + "country_code": "CO", + "latitude": "8.23350000", + "longitude": "-76.21428000" + }, + { + "id": "20492", + "name": "Aguachica", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "8.30844000", + "longitude": "-73.61660000" + }, + { + "id": "20496", + "name": "Agustín Codazzi", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "10.03672000", + "longitude": "-73.23558000" + }, + { + "id": "20547", + "name": "Ariguaní", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "10.25000000", + "longitude": "-74.00000000" + }, + { + "id": "20555", + "name": "Astrea", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "9.49828000", + "longitude": "-73.97591000" + }, + { + "id": "20575", + "name": "Becerril", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "9.70413000", + "longitude": "-73.27930000" + }, + { + "id": "20685", + "name": "Chimichagua", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "9.25778000", + "longitude": "-73.81228000" + }, + { + "id": "20694", + "name": "Chiriguaná", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "9.36238000", + "longitude": "-73.60313000" + }, + { + "id": "20761", + "name": "Curumaní", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "9.19992000", + "longitude": "-73.54274000" + }, + { + "id": "20804", + "name": "El Copey", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "10.15031000", + "longitude": "-73.96140000" + }, + { + "id": "20813", + "name": "El Paso", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "9.65724000", + "longitude": "-73.74685000" + }, + { + "id": "20880", + "name": "Gamarra", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "8.32969000", + "longitude": "-73.71773000" + }, + { + "id": "20890", + "name": "González", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "8.36735000", + "longitude": "-73.40032000" + }, + { + "id": "20985", + "name": "La Gloria", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "8.61160000", + "longitude": "-73.63045000" + }, + { + "id": "20987", + "name": "La Jagua de Ibirico", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "9.56228000", + "longitude": "-73.33405000" + }, + { + "id": "20997", + "name": "La Paz", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "10.10487000", + "longitude": "-73.22056000" + }, + { + "id": "21057", + "name": "Manaure", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "10.40138000", + "longitude": "-72.93102000" + }, + { + "id": "21058", + "name": "Manaure Balcón del Cesar", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "10.39278000", + "longitude": "-73.03250000" + }, + { + "id": "21164", + "name": "Pailitas", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "8.95652000", + "longitude": "-73.62548000" + }, + { + "id": "21192", + "name": "Pelaya", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "8.68819000", + "longitude": "-73.66451000" + }, + { + "id": "21307", + "name": "Río de Oro", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "8.17879000", + "longitude": "-73.51218000" + }, + { + "id": "21328", + "name": "San Alberto", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "7.76107000", + "longitude": "-73.39220000" + }, + { + "id": "21351", + "name": "San Diego", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "10.33623000", + "longitude": "-73.18203000" + }, + { + "id": "21384", + "name": "San Martín", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "8.00151000", + "longitude": "-73.51126000" + }, + { + "id": "21507", + "name": "Tamalameque", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "8.86422000", + "longitude": "-73.78106000" + }, + { + "id": "21582", + "name": "Valledupar", + "state_id": 2899, + "state_code": "CES", + "country_id": 48, + "country_code": "CO", + "latitude": "10.46314000", + "longitude": "-73.25322000" + }, + { + "id": "20489", + "name": "Acandí", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "8.51158000", + "longitude": "-77.27719000" + }, + { + "id": "20509", + "name": "Alto Baudo", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.60464000", + "longitude": "-77.06975000" + }, + { + "id": "20557", + "name": "Atrato", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.57362000", + "longitude": "-76.64063000" + }, + { + "id": "20559", + "name": "Bagadó", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.41164000", + "longitude": "-76.41520000" + }, + { + "id": "20560", + "name": "Bahía Solano", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "6.22520000", + "longitude": "-77.39147000" + }, + { + "id": "20561", + "name": "Bajo Baudó", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "4.90181000", + "longitude": "-77.22771000" + }, + { + "id": "20578", + "name": "Bellavista", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "6.55645000", + "longitude": "-76.88389000" + }, + { + "id": "20596", + "name": "Bojaya", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "6.50000000", + "longitude": "-77.10000000" + }, + { + "id": "20657", + "name": "Carmen del Darien", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "7.03639000", + "longitude": "-76.95222000" + }, + { + "id": "20767", + "name": "Cértegui", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.37073000", + "longitude": "-76.60440000" + }, + { + "id": "20728", + "name": "Condoto", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.09351000", + "longitude": "-76.64973000" + }, + { + "id": "20791", + "name": "El Cantón de San Pablo", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.33889000", + "longitude": "-76.73139000" + }, + { + "id": "20792", + "name": "El Cantón del San Pablo", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.35989000", + "longitude": "-76.77280000" + }, + { + "id": "20794", + "name": "El Carmen", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.88778000", + "longitude": "-75.16417000" + }, + { + "id": "20795", + "name": "El Carmen de Atrato", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.83333000", + "longitude": "-76.25000000" + }, + { + "id": "20811", + "name": "El Litoral del San Juan", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "4.25070000", + "longitude": "-76.96926000" + }, + { + "id": "20952", + "name": "Istmina", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.16054000", + "longitude": "-76.68397000" + }, + { + "id": "20969", + "name": "Juradó", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "7.10421000", + "longitude": "-77.76200000" + }, + { + "id": "21030", + "name": "Lloró", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.49605000", + "longitude": "-76.54945000" + }, + { + "id": "21076", + "name": "Medio Atrato", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.99500000", + "longitude": "-76.78250000" + }, + { + "id": "21077", + "name": "Medio Baudó", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.05000000", + "longitude": "-77.05000000" + }, + { + "id": "21078", + "name": "Medio San Juan", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.09278000", + "longitude": "-76.69528000" + }, + { + "id": "21143", + "name": "Nóvita", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "4.95511000", + "longitude": "-76.60526000" + }, + { + "id": "21142", + "name": "Nuquí", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.71250000", + "longitude": "-77.27083000" + }, + { + "id": "21198", + "name": "Pie de Pató", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.51604000", + "longitude": "-76.97449000" + }, + { + "id": "21211", + "name": "Pizarro", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "4.95334000", + "longitude": "-77.36598000" + }, + { + "id": "21272", + "name": "Quibdó", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.76075000", + "longitude": "-76.83701000" + }, + { + "id": "21304", + "name": "Río Iro", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.18333000", + "longitude": "-76.48330000" + }, + { + "id": "21305", + "name": "Río Quito", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.51667000", + "longitude": "-76.75000000" + }, + { + "id": "21295", + "name": "Riosucio", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "7.41667000", + "longitude": "-77.16667000" + }, + { + "id": "21371", + "name": "San José del Palmar", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "4.89616000", + "longitude": "-76.23422000" + }, + { + "id": "21418", + "name": "Santa Genoveva de Docordó", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "4.25875000", + "longitude": "-77.36516000" + }, + { + "id": "21462", + "name": "Sipí", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "4.65374000", + "longitude": "-76.64442000" + }, + { + "id": "21504", + "name": "Tadó", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.26598000", + "longitude": "-76.56487000" + }, + { + "id": "21570", + "name": "Unguía", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "8.04364000", + "longitude": "-77.09137000" + }, + { + "id": "21571", + "name": "Unión Panamericana", + "state_id": 2876, + "state_code": "CHO", + "country_id": 48, + "country_code": "CO", + "latitude": "5.28139000", + "longitude": "-76.63000000" + }, + { + "id": "20491", + "name": "Agua de Dios", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.37648000", + "longitude": "-74.66995000" + }, + { + "id": "20501", + "name": "Albán", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.89432000", + "longitude": "-74.44388000" + }, + { + "id": "20516", + "name": "Anapoima", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.55099000", + "longitude": "-74.53517000" + }, + { + "id": "20523", + "name": "Anolaima", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.83362000", + "longitude": "-74.49950000" + }, + { + "id": "20530", + "name": "Apulo", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.51952000", + "longitude": "-74.59293000" + }, + { + "id": "20538", + "name": "Arbeláez", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.21251000", + "longitude": "-74.41464000" + }, + { + "id": "21640", + "name": "Útica", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.16977000", + "longitude": "-74.50134000" + }, + { + "id": "20581", + "name": "Beltrán", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.71947000", + "longitude": "-74.75660000" + }, + { + "id": "20592", + "name": "Bituima", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.87252000", + "longitude": "-74.53925000" + }, + { + "id": "20595", + "name": "Bojacá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.73176000", + "longitude": "-74.34129000" + }, + { + "id": "20615", + "name": "Cabrera", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "3.98598000", + "longitude": "-74.48283000" + }, + { + "id": "20619", + "name": "Cachipay", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.26667000", + "longitude": "-74.56667000" + }, + { + "id": "20626", + "name": "Cajicá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.91857000", + "longitude": "-74.02799000" + }, + { + "id": "20646", + "name": "Caparrapí", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.34644000", + "longitude": "-74.49147000" + }, + { + "id": "20648", + "name": "Caqueza", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.38708000", + "longitude": "-73.95722000" + }, + { + "id": "20655", + "name": "Carmen de Carupa", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.34862000", + "longitude": "-73.90168000" + }, + { + "id": "20766", + "name": "Cáqueza", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.40569000", + "longitude": "-73.94683000" + }, + { + "id": "20675", + "name": "Chaguaní", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.94829000", + "longitude": "-74.59392000" + }, + { + "id": "20705", + "name": "Chía", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.84452000", + "longitude": "-74.05848000" + }, + { + "id": "20691", + "name": "Chipaque", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.44250000", + "longitude": "-74.04417000" + }, + { + "id": "20702", + "name": "Choachí", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.52897000", + "longitude": "-73.92273000" + }, + { + "id": "20703", + "name": "Chocontá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.14468000", + "longitude": "-73.68578000" + }, + { + "id": "20718", + "name": "Cogua", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.06051000", + "longitude": "-73.97925000" + }, + { + "id": "20741", + "name": "Cota", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.80938000", + "longitude": "-74.09800000" + }, + { + "id": "20752", + "name": "Cucunubá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.24958000", + "longitude": "-73.76610000" + }, + { + "id": "20803", + "name": "El Colegio", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.56047000", + "longitude": "-74.42614000" + }, + { + "id": "20817", + "name": "El Peñón", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.25264000", + "longitude": "-74.29069000" + }, + { + "id": "20826", + "name": "El Rosal", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.85314000", + "longitude": "-74.25996000" + }, + { + "id": "20842", + "name": "Facatativá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.81367000", + "longitude": "-74.35453000" + }, + { + "id": "20868", + "name": "Fómeque", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.48797000", + "longitude": "-73.89749000" + }, + { + "id": "20869", + "name": "Fúquene", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.41988000", + "longitude": "-73.76997000" + }, + { + "id": "20854", + "name": "Fomeque", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.52806000", + "longitude": "-73.78879000" + }, + { + "id": "20857", + "name": "Fosca", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.33916000", + "longitude": "-73.93852000" + }, + { + "id": "20866", + "name": "Funza", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.71638000", + "longitude": "-74.21195000" + }, + { + "id": "20867", + "name": "Fusagasugá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.33646000", + "longitude": "-74.36378000" + }, + { + "id": "20870", + "name": "Gachala", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.66667000", + "longitude": "-73.50000000" + }, + { + "id": "20871", + "name": "Gachalá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.69244000", + "longitude": "-73.52042000" + }, + { + "id": "20872", + "name": "Gachancipá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.99111000", + "longitude": "-73.87154000" + }, + { + "id": "20874", + "name": "Gachetá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.87104000", + "longitude": "-73.61730000" + }, + { + "id": "20879", + "name": "Gama", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.76288000", + "longitude": "-73.61091000" + }, + { + "id": "20886", + "name": "Girardot", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.31802000", + "longitude": "-74.83504000" + }, + { + "id": "20887", + "name": "Girardot City", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.30079000", + "longitude": "-74.80754000" + }, + { + "id": "20892", + "name": "Granada", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.06667000", + "longitude": "-74.56667000" + }, + { + "id": "20898", + "name": "Guachetá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.38425000", + "longitude": "-73.68617000" + }, + { + "id": "20903", + "name": "Guaduas", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.07430000", + "longitude": "-74.59854000" + }, + { + "id": "20914", + "name": "Guasca", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.86601000", + "longitude": "-73.87748000" + }, + { + "id": "20916", + "name": "Guataquí", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.51573000", + "longitude": "-74.78935000" + }, + { + "id": "20917", + "name": "Guatavita", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.93658000", + "longitude": "-73.83314000" + }, + { + "id": "20922", + "name": "Guayabal de Síquima", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.87739000", + "longitude": "-74.46744000" + }, + { + "id": "20921", + "name": "Guayabal de Siquima", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.87881000", + "longitude": "-74.48306000" + }, + { + "id": "20923", + "name": "Guayabetal", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.21472000", + "longitude": "-73.81719000" + }, + { + "id": "20925", + "name": "Gutiérrez", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.18486000", + "longitude": "-74.01168000" + }, + { + "id": "20963", + "name": "Jerusalén", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.56309000", + "longitude": "-74.69519000" + }, + { + "id": "20968", + "name": "Junín", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.70725000", + "longitude": "-73.69549000" + }, + { + "id": "20972", + "name": "La Calera", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.68678000", + "longitude": "-73.93590000" + }, + { + "id": "20993", + "name": "La Mesa", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.65374000", + "longitude": "-74.47316000" + }, + { + "id": "20995", + "name": "La Palma", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.31732000", + "longitude": "-74.43003000" + }, + { + "id": "20999", + "name": "La Peña", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.19847000", + "longitude": "-74.39368000" + }, + { + "id": "21012", + "name": "La Vega", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.97382000", + "longitude": "-74.34476000" + }, + { + "id": "21026", + "name": "Lenguazaque", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.30711000", + "longitude": "-73.71152000" + }, + { + "id": "21045", + "name": "Macheta", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.08333000", + "longitude": "-73.61667000" + }, + { + "id": "21046", + "name": "Machetá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.08154000", + "longitude": "-73.60761000" + }, + { + "id": "21047", + "name": "Madrid", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.75564000", + "longitude": "-74.27708000" + }, + { + "id": "21060", + "name": "Manta", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.95720000", + "longitude": "-73.58583000" + }, + { + "id": "21075", + "name": "Medina", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.51005000", + "longitude": "-73.34982000" + }, + { + "id": "21109", + "name": "Mosquera", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.68935000", + "longitude": "-74.23599000" + }, + { + "id": "21127", + "name": "Nariño", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.39913000", + "longitude": "-74.82239000" + }, + { + "id": "21132", + "name": "Nemocón", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.06767000", + "longitude": "-73.87769000" + }, + { + "id": "21133", + "name": "Nilo", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.30604000", + "longitude": "-74.62083000" + }, + { + "id": "21134", + "name": "Nimaima", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.12614000", + "longitude": "-74.38495000" + }, + { + "id": "21136", + "name": "Nocaima", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.06696000", + "longitude": "-74.38439000" + }, + { + "id": "21159", + "name": "Pacho", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.13278000", + "longitude": "-74.15977000" + }, + { + "id": "21165", + "name": "Paime", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.37054000", + "longitude": "-74.15219000" + }, + { + "id": "21179", + "name": "Pandi", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.18032000", + "longitude": "-74.47099000" + }, + { + "id": "21182", + "name": "Paratebueno", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.37575000", + "longitude": "-73.21547000" + }, + { + "id": "21183", + "name": "Pasca", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.30722000", + "longitude": "-74.30056000" + }, + { + "id": "21235", + "name": "Puerto Bogotá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.19994000", + "longitude": "-74.72733000" + }, + { + "id": "21254", + "name": "Puerto Salgar", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.61892000", + "longitude": "-74.58483000" + }, + { + "id": "21261", + "name": "Pulí", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.68116000", + "longitude": "-74.71406000" + }, + { + "id": "21270", + "name": "Quebradanegra", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.08262000", + "longitude": "-74.52117000" + }, + { + "id": "21271", + "name": "Quetame", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.33234000", + "longitude": "-73.86141000" + }, + { + "id": "21275", + "name": "Quipile", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.74517000", + "longitude": "-74.53378000" + }, + { + "id": "21287", + "name": "Ricaurte", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.28075000", + "longitude": "-74.76469000" + }, + { + "id": "21338", + "name": "San Antonio del Tequendama", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.61667000", + "longitude": "-74.35000000" + }, + { + "id": "21342", + "name": "San Bernardo", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.12956000", + "longitude": "-74.35903000" + }, + { + "id": "21348", + "name": "San Cayetano", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.31693000", + "longitude": "-74.07141000" + }, + { + "id": "21358", + "name": "San Francisco", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.96335000", + "longitude": "-74.26613000" + }, + { + "id": "21375", + "name": "San Juan de Río Seco", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.83077000", + "longitude": "-74.68248000" + }, + { + "id": "21446", + "name": "Sasaima", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.96705000", + "longitude": "-74.43512000" + }, + { + "id": "21450", + "name": "Sesquilé", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.04463000", + "longitude": "-73.79724000" + }, + { + "id": "21453", + "name": "Sibaté", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.49154000", + "longitude": "-74.25957000" + }, + { + "id": "21456", + "name": "Silvania", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.40367000", + "longitude": "-74.38670000" + }, + { + "id": "21459", + "name": "Simijaca", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.50415000", + "longitude": "-73.86944000" + }, + { + "id": "21464", + "name": "Soacha", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.57937000", + "longitude": "-74.21682000" + }, + { + "id": "21478", + "name": "Sopó", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.90750000", + "longitude": "-73.93840000" + }, + { + "id": "21486", + "name": "Subachoque", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.92614000", + "longitude": "-74.17299000" + }, + { + "id": "21490", + "name": "Suesca", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.10289000", + "longitude": "-73.79845000" + }, + { + "id": "21491", + "name": "Supatá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.06097000", + "longitude": "-74.23721000" + }, + { + "id": "21494", + "name": "Susa", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.42700000", + "longitude": "-73.84786000" + }, + { + "id": "21497", + "name": "Sutatausa", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.24779000", + "longitude": "-73.85238000" + }, + { + "id": "21503", + "name": "Tabio", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.91726000", + "longitude": "-74.09364000" + }, + { + "id": "21517", + "name": "Tausa", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.19903000", + "longitude": "-73.89128000" + }, + { + "id": "21518", + "name": "Tena", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.66001000", + "longitude": "-74.39258000" + }, + { + "id": "21520", + "name": "Tenjo", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.87270000", + "longitude": "-74.14435000" + }, + { + "id": "21522", + "name": "Tibacuy", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.30606000", + "longitude": "-74.51639000" + }, + { + "id": "21525", + "name": "Tibirita", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.05227000", + "longitude": "-73.50459000" + }, + { + "id": "21534", + "name": "Tocaima", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.46073000", + "longitude": "-74.65722000" + }, + { + "id": "21535", + "name": "Tocancipá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.96531000", + "longitude": "-73.91301000" + }, + { + "id": "21541", + "name": "Topaipí", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.33457000", + "longitude": "-74.30292000" + }, + { + "id": "21565", + "name": "Ubalá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.74778000", + "longitude": "-72.53694000" + }, + { + "id": "21566", + "name": "Ubaque", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.48667000", + "longitude": "-73.93748000" + }, + { + "id": "21569", + "name": "Une", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.30691000", + "longitude": "-74.07104000" + }, + { + "id": "21587", + "name": "Venecia", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.08808000", + "longitude": "-74.47746000" + }, + { + "id": "21590", + "name": "Vergara", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.13600000", + "longitude": "-74.31539000" + }, + { + "id": "21593", + "name": "Vianí", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.89579000", + "longitude": "-74.55398000" + }, + { + "id": "21600", + "name": "Villa de San Diego de Ubaté", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.30933000", + "longitude": "-73.81575000" + }, + { + "id": "21599", + "name": "Villa de San Diego de Ubate", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.31544000", + "longitude": "-73.82045000" + }, + { + "id": "21603", + "name": "Villagómez", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.27372000", + "longitude": "-74.19614000" + }, + { + "id": "21610", + "name": "Villapinzón", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.21617000", + "longitude": "-73.59490000" + }, + { + "id": "21613", + "name": "Villeta", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.00008000", + "longitude": "-74.50498000" + }, + { + "id": "21614", + "name": "Viotá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.43713000", + "longitude": "-74.52157000" + }, + { + "id": "21619", + "name": "Yacopí", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.45948000", + "longitude": "-74.33823000" + }, + { + "id": "21635", + "name": "Zipacón", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "4.75881000", + "longitude": "-74.38017000" + }, + { + "id": "21636", + "name": "Zipaquirá", + "state_id": 2875, + "state_code": "CUN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.02208000", + "longitude": "-74.00481000" + }, + { + "id": "20572", + "name": "Barranco Minas", + "state_id": 2882, + "state_code": "GUA", + "country_id": 48, + "country_code": "CO", + "latitude": "3.09899000", + "longitude": "-69.58297000" + }, + { + "id": "20618", + "name": "Cacahual", + "state_id": 2882, + "state_code": "GUA", + "country_id": 48, + "country_code": "CO", + "latitude": "3.32533000", + "longitude": "-67.62397000" + }, + { + "id": "20949", + "name": "Inírida", + "state_id": 2882, + "state_code": "GUA", + "country_id": 48, + "country_code": "CO", + "latitude": "3.86528000", + "longitude": "-67.92389000" + }, + { + "id": "20986", + "name": "La Guadalupe", + "state_id": 2882, + "state_code": "GUA", + "country_id": 48, + "country_code": "CO", + "latitude": "1.39579000", + "longitude": "-67.00150000" + }, + { + "id": "21063", + "name": "Mapiripana", + "state_id": 2882, + "state_code": "GUA", + "country_id": 48, + "country_code": "CO", + "latitude": "2.81003000", + "longitude": "-70.28568000" + }, + { + "id": "21106", + "name": "Morichal", + "state_id": 2882, + "state_code": "GUA", + "country_id": 48, + "country_code": "CO", + "latitude": "2.42980000", + "longitude": "-69.83284000" + }, + { + "id": "21178", + "name": "Pana Pana", + "state_id": 2882, + "state_code": "GUA", + "country_id": 48, + "country_code": "CO", + "latitude": "1.96249000", + "longitude": "-69.12600000" + }, + { + "id": "21239", + "name": "Puerto Colombia", + "state_id": 2882, + "state_code": "GUA", + "country_id": 48, + "country_code": "CO", + "latitude": "2.43903000", + "longitude": "-68.16419000" + }, + { + "id": "21354", + "name": "San Felipe", + "state_id": 2882, + "state_code": "GUA", + "country_id": 48, + "country_code": "CO", + "latitude": "2.14321000", + "longitude": "-67.34122000" + }, + { + "id": "20627", + "name": "Calamar", + "state_id": 2888, + "state_code": "GUV", + "country_id": 48, + "country_code": "CO", + "latitude": "1.95960000", + "longitude": "-72.65315000" + }, + { + "id": "20823", + "name": "El Retorno", + "state_id": 2888, + "state_code": "GUV", + "country_id": 48, + "country_code": "CO", + "latitude": "2.33022000", + "longitude": "-72.62765000" + }, + { + "id": "21083", + "name": "Miraflores", + "state_id": 2888, + "state_code": "GUV", + "country_id": 48, + "country_code": "CO", + "latitude": "1.33667000", + "longitude": "-71.95111000" + }, + { + "id": "21370", + "name": "San José del Guaviare", + "state_id": 2888, + "state_code": "GUV", + "country_id": 48, + "country_code": "CO", + "latitude": "2.57286000", + "longitude": "-72.64591000" + }, + { + "id": "20498", + "name": "Albania", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "11.16099000", + "longitude": "-72.59238000" + }, + { + "id": "20571", + "name": "Barrancas", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.97180000", + "longitude": "-72.69115000" + }, + { + "id": "20776", + "name": "Dibulla", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "11.27251000", + "longitude": "-73.30911000" + }, + { + "id": "20777", + "name": "Distracción", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.89784000", + "longitude": "-72.88666000" + }, + { + "id": "20812", + "name": "El Molino", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.65296000", + "longitude": "-72.92461000" + }, + { + "id": "20855", + "name": "Fonseca", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.82966000", + "longitude": "-72.79778000" + }, + { + "id": "20938", + "name": "Hatonuevo", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "11.06940000", + "longitude": "-72.76690000" + }, + { + "id": "20988", + "name": "La Jagua del Pilar", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.51061000", + "longitude": "-73.07178000" + }, + { + "id": "21051", + "name": "Maicao", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "11.37837000", + "longitude": "-72.23950000" + }, + { + "id": "21056", + "name": "Manaure", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "11.77505000", + "longitude": "-72.44447000" + }, + { + "id": "21291", + "name": "Riohacha", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "11.54444000", + "longitude": "-72.90722000" + }, + { + "id": "21377", + "name": "San Juan del Cesar", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.77107000", + "longitude": "-73.00314000" + }, + { + "id": "21573", + "name": "Uribia", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "12.02638000", + "longitude": "-71.74887000" + }, + { + "id": "21575", + "name": "Urumita", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.55894000", + "longitude": "-73.01232000" + }, + { + "id": "21608", + "name": "Villanueva", + "state_id": 2889, + "state_code": "LAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.58333000", + "longitude": "-72.96077000" + }, + { + "id": "20505", + "name": "Algarrobo", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.18553000", + "longitude": "-74.06158000" + }, + { + "id": "20533", + "name": "Aracataca", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.59181000", + "longitude": "-74.18983000" + }, + { + "id": "20548", + "name": "Ariguaní", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.89383000", + "longitude": "-74.13583000" + }, + { + "id": "20606", + "name": "Buenavista", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.21433000", + "longitude": "-74.31363000" + }, + { + "id": "20673", + "name": "Cerro de San Antonio", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.32585000", + "longitude": "-74.86933000" + }, + { + "id": "20672", + "name": "Cerro San Antonio", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.29063000", + "longitude": "-74.82173000" + }, + { + "id": "20681", + "name": "Chibolo", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.08250000", + "longitude": "-74.50696000" + }, + { + "id": "20700", + "name": "Chivolo", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.02502000", + "longitude": "-74.62279000" + }, + { + "id": "20712", + "name": "Ciénaga", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.83333000", + "longitude": "-74.08333000" + }, + { + "id": "20726", + "name": "Concordia", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.83545000", + "longitude": "-74.45548000" + }, + { + "id": "20787", + "name": "El Banco", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.00114000", + "longitude": "-73.97581000" + }, + { + "id": "20821", + "name": "El Piñón", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.40283000", + "longitude": "-74.82415000" + }, + { + "id": "20820", + "name": "El Piñon", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.33333000", + "longitude": "-74.66667000" + }, + { + "id": "20824", + "name": "El Retén", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.61135000", + "longitude": "-74.26824000" + }, + { + "id": "20864", + "name": "Fundación", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.52066000", + "longitude": "-74.18504000" + }, + { + "id": "20907", + "name": "Guamal", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.14334000", + "longitude": "-74.22384000" + }, + { + "id": "21139", + "name": "Nueva Granada", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.80168000", + "longitude": "-74.39304000" + }, + { + "id": "21191", + "name": "Pedraza", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.18739000", + "longitude": "-74.91504000" + }, + { + "id": "21205", + "name": "Pijiño del Carmen", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.32908000", + "longitude": "-74.45302000" + }, + { + "id": "21210", + "name": "Pivijay", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.46167000", + "longitude": "-74.61621000" + }, + { + "id": "21214", + "name": "Plato", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.77267000", + "longitude": "-74.74548000" + }, + { + "id": "21228", + "name": "Puebloviejo", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.84239000", + "longitude": "-74.38538000" + }, + { + "id": "21282", + "name": "Remolino", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.65048000", + "longitude": "-74.58442000" + }, + { + "id": "21313", + "name": "Sabanas de San Angel", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.11072000", + "longitude": "-74.26007000" + }, + { + "id": "21318", + "name": "Salamina", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.49027000", + "longitude": "-74.79463000" + }, + { + "id": "21336", + "name": "San Antonio", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.93303000", + "longitude": "-74.69346000" + }, + { + "id": "21409", + "name": "San Zenón", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.32686000", + "longitude": "-74.32914000" + }, + { + "id": "21411", + "name": "Santa Ana", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.51484000", + "longitude": "-74.34330000" + }, + { + "id": "21415", + "name": "Santa Bárbara de Pinto", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.52107000", + "longitude": "-74.64912000" + }, + { + "id": "21421", + "name": "Santa Marta", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "11.24348000", + "longitude": "-74.20835000" + }, + { + "id": "21463", + "name": "Sitionuevo", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.77737000", + "longitude": "-74.72049000" + }, + { + "id": "21519", + "name": "Tenerife", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "9.93201000", + "longitude": "-74.73465000" + }, + { + "id": "21631", + "name": "Zapayán", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.11846000", + "longitude": "-74.69143000" + }, + { + "id": "21637", + "name": "Zona Bananera", + "state_id": 2886, + "state_code": "MAG", + "country_id": 48, + "country_code": "CO", + "latitude": "10.76417000", + "longitude": "-74.15722000" + }, + { + "id": "20488", + "name": "Acacías", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.98695000", + "longitude": "-73.75797000" + }, + { + "id": "20569", + "name": "Barranca de Upía", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "4.56963000", + "longitude": "-72.96676000" + }, + { + "id": "20617", + "name": "Cabuyaro", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "4.28170000", + "longitude": "-72.79399000" + }, + { + "id": "20665", + "name": "Castilla la Nueva", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.82722000", + "longitude": "-73.68831000" + }, + { + "id": "20749", + "name": "Cubarral", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.79536000", + "longitude": "-73.84063000" + }, + { + "id": "20754", + "name": "Cumaral", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "4.23814000", + "longitude": "-73.34101000" + }, + { + "id": "20790", + "name": "El Calvario", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "4.35426000", + "longitude": "-73.74431000" + }, + { + "id": "20799", + "name": "El Castillo", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.56363000", + "longitude": "-73.79488000" + }, + { + "id": "20863", + "name": "Fuente de Oro", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.46263000", + "longitude": "-73.62162000" + }, + { + "id": "20894", + "name": "Granada", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.54625000", + "longitude": "-73.70687000" + }, + { + "id": "20906", + "name": "Guamal", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.88043000", + "longitude": "-73.76566000" + }, + { + "id": "20990", + "name": "La Macarena", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "2.00702000", + "longitude": "-74.07320000" + }, + { + "id": "21025", + "name": "Lejanías", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.52762000", + "longitude": "-74.02335000" + }, + { + "id": "21064", + "name": "Mapiripán", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "2.89115000", + "longitude": "-72.13328000" + }, + { + "id": "21081", + "name": "Mesetas", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.38463000", + "longitude": "-74.04424000" + }, + { + "id": "21240", + "name": "Puerto Concordia", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "2.62206000", + "longitude": "-72.75724000" + }, + { + "id": "21242", + "name": "Puerto Gaitán", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "4.31328000", + "longitude": "-72.08157000" + }, + { + "id": "21247", + "name": "Puerto López", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "4.04426000", + "longitude": "-72.65731000" + }, + { + "id": "21246", + "name": "Puerto Lleras", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.21794000", + "longitude": "-73.23215000" + }, + { + "id": "21252", + "name": "Puerto Rico", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "2.78273000", + "longitude": "-73.13956000" + }, + { + "id": "21260", + "name": "Puerto Yuca", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "2.93833000", + "longitude": "-73.20833000" + }, + { + "id": "21284", + "name": "Restrepo", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "4.25833000", + "longitude": "-73.56142000" + }, + { + "id": "21347", + "name": "San Carlos de Guaroa", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.71161000", + "longitude": "-73.24344000" + }, + { + "id": "21373", + "name": "San Juan de Arama", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.29034000", + "longitude": "-73.82065000" + }, + { + "id": "21385", + "name": "San Martín", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.50819000", + "longitude": "-73.03975000" + }, + { + "id": "21612", + "name": "Villavicencio", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "4.07424000", + "longitude": "-73.49150000" + }, + { + "id": "21616", + "name": "Vistahermosa", + "state_id": 2878, + "state_code": "MET", + "country_id": 48, + "country_code": "CO", + "latitude": "3.12428000", + "longitude": "-73.75156000" + }, + { + "id": "20500", + "name": "Albán", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.47050000", + "longitude": "-77.06846000" + }, + { + "id": "20503", + "name": "Aldana", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.88283000", + "longitude": "-77.70103000" + }, + { + "id": "20517", + "name": "Ancuya", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.26330000", + "longitude": "-77.51376000" + }, + { + "id": "20518", + "name": "Ancuyá", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.26538000", + "longitude": "-77.53258000" + }, + { + "id": "20539", + "name": "Arboleda", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.49830000", + "longitude": "-77.13613000" + }, + { + "id": "20565", + "name": "Barbacoas", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.67154000", + "longitude": "-78.13978000" + }, + { + "id": "20582", + "name": "Belén", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.59477000", + "longitude": "-77.05408000" + }, + { + "id": "20611", + "name": "Buesaco", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.38364000", + "longitude": "-77.15622000" + }, + { + "id": "20653", + "name": "Carlosama", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.86292000", + "longitude": "-77.72734000" + }, + { + "id": "20662", + "name": "Cartago", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.55151000", + "longitude": "-77.11948000" + }, + { + "id": "20769", + "name": "Córdoba", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.85362000", + "longitude": "-77.51817000" + }, + { + "id": "20674", + "name": "Chachagüí", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.35943000", + "longitude": "-77.28367000" + }, + { + "id": "20722", + "name": "Colón", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.62850000", + "longitude": "-77.02927000" + }, + { + "id": "20730", + "name": "Consaca", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.20841000", + "longitude": "-77.46323000" + }, + { + "id": "20731", + "name": "Consacá", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.20805000", + "longitude": "-77.46548000" + }, + { + "id": "20732", + "name": "Contadero", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.93072000", + "longitude": "-77.53333000" + }, + { + "id": "20748", + "name": "Cuaspud", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.87570000", + "longitude": "-77.73640000" + }, + { + "id": "20756", + "name": "Cumbal", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.90875000", + "longitude": "-77.79145000" + }, + { + "id": "20757", + "name": "Cumbitara", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.64786000", + "longitude": "-77.57819000" + }, + { + "id": "20801", + "name": "El Charco", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "2.47926000", + "longitude": "-78.10972000" + }, + { + "id": "20816", + "name": "El Peñol", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.45365000", + "longitude": "-77.44017000" + }, + { + "id": "20827", + "name": "El Rosario", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.84593000", + "longitude": "-77.40620000" + }, + { + "id": "20829", + "name": "El Tablón", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.42717000", + "longitude": "-77.09693000" + }, + { + "id": "20830", + "name": "El Tablón de Gómez", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.41201000", + "longitude": "-76.98526000" + }, + { + "id": "20832", + "name": "El Tambo", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.43049000", + "longitude": "-77.38326000" + }, + { + "id": "20858", + "name": "Francisco Pizarro", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "2.14713000", + "longitude": "-78.58883000" + }, + { + "id": "20865", + "name": "Funes", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.00075000", + "longitude": "-77.44918000" + }, + { + "id": "20929", + "name": "Génova", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.64367000", + "longitude": "-77.01924000" + }, + { + "id": "20899", + "name": "Guachucal", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.96093000", + "longitude": "-77.73161000" + }, + { + "id": "20904", + "name": "Guaitarilla", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.13103000", + "longitude": "-77.54815000" + }, + { + "id": "20905", + "name": "Gualmatán", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.91992000", + "longitude": "-77.56738000" + }, + { + "id": "20946", + "name": "Iles", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.97040000", + "longitude": "-77.52146000" + }, + { + "id": "20947", + "name": "Imués", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.05516000", + "longitude": "-77.49669000" + }, + { + "id": "20950", + "name": "Ipiales", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.82501000", + "longitude": "-77.63966000" + }, + { + "id": "20951", + "name": "Iscuandé", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "2.45065000", + "longitude": "-77.97998000" + }, + { + "id": "20978", + "name": "La Cruz", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.60221000", + "longitude": "-76.97130000" + }, + { + "id": "20984", + "name": "La Florida", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.35693000", + "longitude": "-77.41271000" + }, + { + "id": "20989", + "name": "La Llanada", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.47310000", + "longitude": "-77.58024000" + }, + { + "id": "21005", + "name": "La Tola", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "2.39949000", + "longitude": "-78.18923000" + }, + { + "id": "21008", + "name": "La Unión", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.60450000", + "longitude": "-77.13152000" + }, + { + "id": "21024", + "name": "Leiva", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.93497000", + "longitude": "-77.30634000" + }, + { + "id": "21029", + "name": "Linares", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.35078000", + "longitude": "-77.52339000" + }, + { + "id": "21032", + "name": "Los Andes", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.62831000", + "longitude": "-77.67959000" + }, + { + "id": "21049", + "name": "Magüi", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.90504000", + "longitude": "-78.04916000" + }, + { + "id": "21054", + "name": "Mallama", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.15887000", + "longitude": "-77.84688000" + }, + { + "id": "21108", + "name": "Mosquera", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "2.49139000", + "longitude": "-78.44307000" + }, + { + "id": "21125", + "name": "Nariño", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.28995000", + "longitude": "-77.35721000" + }, + { + "id": "21150", + "name": "Olaya Herrera", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.24803000", + "longitude": "-77.49085000" + }, + { + "id": "21155", + "name": "Ospina", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.02962000", + "longitude": "-77.55252000" + }, + { + "id": "21184", + "name": "Pasto", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.21467000", + "longitude": "-77.27865000" + }, + { + "id": "21189", + "name": "Payán", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.76645000", + "longitude": "-78.18326000" + }, + { + "id": "21200", + "name": "Piedrancha", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.14109000", + "longitude": "-77.86479000" + }, + { + "id": "21216", + "name": "Policarpa", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.62843000", + "longitude": "-77.45956000" + }, + { + "id": "21221", + "name": "Potosí", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.80739000", + "longitude": "-77.57216000" + }, + { + "id": "21230", + "name": "Puerres", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.19374000", + "longitude": "-77.26661000" + }, + { + "id": "21262", + "name": "Pupiales", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "0.87136000", + "longitude": "-77.64027000" + }, + { + "id": "21288", + "name": "Ricaurte", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.21474000", + "longitude": "-77.99801000" + }, + { + "id": "21297", + "name": "Roberto Payán", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.91757000", + "longitude": "-78.38191000" + }, + { + "id": "21317", + "name": "Salahonda", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "2.04060000", + "longitude": "-78.65877000" + }, + { + "id": "21325", + "name": "Samaniego", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.33849000", + "longitude": "-77.59570000" + }, + { + "id": "21329", + "name": "San Andres de Tumaco", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.63766000", + "longitude": "-78.61218000" + }, + { + "id": "21341", + "name": "San Bernardo", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.51525000", + "longitude": "-77.04679000" + }, + { + "id": "21365", + "name": "San José", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.69659000", + "longitude": "-78.24482000" + }, + { + "id": "21378", + "name": "San Lorenzo", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.55731000", + "longitude": "-77.24599000" + }, + { + "id": "21392", + "name": "San Pablo", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.67250000", + "longitude": "-77.01389000" + }, + { + "id": "21398", + "name": "San Pedro de Cartago", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.55533000", + "longitude": "-77.12984000" + }, + { + "id": "21410", + "name": "Sandoná", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.28626000", + "longitude": "-77.46921000" + }, + { + "id": "21413", + "name": "Santa Bárbara", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "2.30185000", + "longitude": "-77.91487000" + }, + { + "id": "21431", + "name": "Santacruz", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.52090000", + "longitude": "-77.26206000" + }, + { + "id": "21443", + "name": "Sapuyes", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.03728000", + "longitude": "-77.62094000" + }, + { + "id": "21483", + "name": "Sotomayor", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.49474000", + "longitude": "-77.52136000" + }, + { + "id": "21509", + "name": "Taminango", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.57032000", + "longitude": "-77.28043000" + }, + { + "id": "21510", + "name": "Tangua", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.09189000", + "longitude": "-77.38645000" + }, + { + "id": "21564", + "name": "Túquerres", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.08647000", + "longitude": "-77.61858000" + }, + { + "id": "21552", + "name": "Tumaco", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.79112000", + "longitude": "-78.79275000" + }, + { + "id": "21620", + "name": "Yacuanquer", + "state_id": 2897, + "state_code": "NAR", + "country_id": 48, + "country_code": "CO", + "latitude": "1.11577000", + "longitude": "-77.40169000" + }, + { + "id": "20486", + "name": "Abrego", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.00000000", + "longitude": "-73.20000000" + }, + { + "id": "20540", + "name": "Arboledas", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.63494000", + "longitude": "-72.86050000" + }, + { + "id": "21638", + "name": "Ábrego", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.08065000", + "longitude": "-73.22054000" + }, + { + "id": "20594", + "name": "Bochalema", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.60217000", + "longitude": "-72.68839000" + }, + { + "id": "20604", + "name": "Bucarasica", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.04096000", + "longitude": "-72.86538000" + }, + { + "id": "20620", + "name": "Cachirá", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.75000000", + "longitude": "-73.16667000" + }, + { + "id": "20764", + "name": "Cáchira", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.74104000", + "longitude": "-73.04830000" + }, + { + "id": "20765", + "name": "Cácota", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.26787000", + "longitude": "-72.64197000" + }, + { + "id": "20772", + "name": "Cúcuta", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.89391000", + "longitude": "-72.50782000" + }, + { + "id": "20689", + "name": "Chinácota", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.60731000", + "longitude": "-72.60108000" + }, + { + "id": "20697", + "name": "Chitagá", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.13781000", + "longitude": "-72.66456000" + }, + { + "id": "20734", + "name": "Convención", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.82242000", + "longitude": "-73.22850000" + }, + { + "id": "20753", + "name": "Cucutilla", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.53941000", + "longitude": "-72.77238000" + }, + { + "id": "20784", + "name": "Durania", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.71307000", + "longitude": "-72.65759000" + }, + { + "id": "20793", + "name": "El Carmen", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.51064000", + "longitude": "-73.44776000" + }, + { + "id": "20833", + "name": "El Tarra", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.57562000", + "longitude": "-73.09489000" + }, + { + "id": "20834", + "name": "El Zulia", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.93248000", + "longitude": "-72.60125000" + }, + { + "id": "20891", + "name": "Gramalote", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.88752000", + "longitude": "-72.79749000" + }, + { + "id": "20934", + "name": "Hacarí", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.32333000", + "longitude": "-73.14889000" + }, + { + "id": "20940", + "name": "Herrán", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.50611000", + "longitude": "-72.48332000" + }, + { + "id": "20982", + "name": "La Esperanza", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.21043000", + "longitude": "-72.46399000" + }, + { + "id": "21001", + "name": "La Playa", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.25833000", + "longitude": "-73.19222000" + }, + { + "id": "21017", + "name": "Labateca", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.24558000", + "longitude": "-72.55286000" + }, + { + "id": "21035", + "name": "Los Patios", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.83793000", + "longitude": "-72.50370000" + }, + { + "id": "21037", + "name": "Lourdes", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.96774000", + "longitude": "-72.84519000" + }, + { + "id": "21122", + "name": "Mutiscua", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.29810000", + "longitude": "-72.79879000" + }, + { + "id": "21146", + "name": "Ocaña", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.23773000", + "longitude": "-73.35604000" + }, + { + "id": "21176", + "name": "Pamplona", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.37565000", + "longitude": "-72.64795000" + }, + { + "id": "21177", + "name": "Pamplonita", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.45814000", + "longitude": "-72.65965000" + }, + { + "id": "21255", + "name": "Puerto Santander", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.36361000", + "longitude": "-72.40630000" + }, + { + "id": "21277", + "name": "Ragonvalia", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.57749000", + "longitude": "-72.47574000" + }, + { + "id": "21320", + "name": "Salazar", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.78249000", + "longitude": "-72.85741000" + }, + { + "id": "21344", + "name": "San Calixto", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.40210000", + "longitude": "-73.20737000" + }, + { + "id": "21349", + "name": "San Cayetano", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.84771000", + "longitude": "-72.61014000" + }, + { + "id": "21436", + "name": "Santiago", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.86930000", + "longitude": "-72.73753000" + }, + { + "id": "21445", + "name": "Sardinata", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.08289000", + "longitude": "-72.80071000" + }, + { + "id": "21455", + "name": "Silos", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.20524000", + "longitude": "-72.75639000" + }, + { + "id": "21526", + "name": "Tibú", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "8.63895000", + "longitude": "-72.73583000" + }, + { + "id": "21538", + "name": "Toledo", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.30984000", + "longitude": "-72.48295000" + }, + { + "id": "21601", + "name": "Villa del Rosario", + "state_id": 2877, + "state_code": "NSA", + "country_id": 48, + "country_code": "CO", + "latitude": "7.75816000", + "longitude": "-72.48182000" + }, + { + "id": "20721", + "name": "Colón", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "1.19034000", + "longitude": "-76.97369000" + }, + { + "id": "20980", + "name": "La Dorada", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "0.34314000", + "longitude": "-76.91124000" + }, + { + "id": "21023", + "name": "Leguízamo", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "0.05683000", + "longitude": "-75.05832000" + }, + { + "id": "21089", + "name": "Mocoa", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "1.15284000", + "longitude": "-76.65208000" + }, + { + "id": "21152", + "name": "Orito", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "0.66749000", + "longitude": "-76.87297000" + }, + { + "id": "21233", + "name": "Puerto Asís", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "0.50514000", + "longitude": "-76.49571000" + }, + { + "id": "21243", + "name": "Puerto Guzmán", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "0.97028000", + "longitude": "-76.58583000" + }, + { + "id": "21244", + "name": "Puerto Leguízamo", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "-0.19337000", + "longitude": "-74.78189000" + }, + { + "id": "21356", + "name": "San Francisco", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "1.17644000", + "longitude": "-76.87838000" + }, + { + "id": "21389", + "name": "San Miguel", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "0.34300000", + "longitude": "-76.91000000" + }, + { + "id": "21435", + "name": "Santiago", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "1.14844000", + "longitude": "-77.00450000" + }, + { + "id": "21454", + "name": "Sibundoy", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "1.20296000", + "longitude": "-76.92275000" + }, + { + "id": "21581", + "name": "Valle del Guamuez", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "0.45250000", + "longitude": "-76.91917000" + }, + { + "id": "21602", + "name": "Villagarzón", + "state_id": 2896, + "state_code": "PUT", + "country_id": 48, + "country_code": "CO", + "latitude": "0.89663000", + "longitude": "-76.72794000" + }, + { + "id": "20550", + "name": "Armenia", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.53307000", + "longitude": "-75.70438000" + }, + { + "id": "20607", + "name": "Buenavista", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.35969000", + "longitude": "-75.73888000" + }, + { + "id": "20629", + "name": "Calarca", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.50000000", + "longitude": "-75.63333000" + }, + { + "id": "20630", + "name": "Calarcá", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.52949000", + "longitude": "-75.64091000" + }, + { + "id": "20771", + "name": "Córdoba", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.38055000", + "longitude": "-75.66685000" + }, + { + "id": "20709", + "name": "Circasia", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.59940000", + "longitude": "-75.68536000" + }, + { + "id": "20845", + "name": "Filandia", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.67525000", + "longitude": "-75.67142000" + }, + { + "id": "20930", + "name": "Génova", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.22743000", + "longitude": "-75.75480000" + }, + { + "id": "21004", + "name": "La Tebaida", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.43353000", + "longitude": "-75.81476000" + }, + { + "id": "21100", + "name": "Montenegro", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.52676000", + "longitude": "-75.82265000" + }, + { + "id": "21204", + "name": "Pijao", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.33350000", + "longitude": "-75.70463000" + }, + { + "id": "21273", + "name": "Quimbaya", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.59342000", + "longitude": "-75.83758000" + }, + { + "id": "21322", + "name": "Salento", + "state_id": 2874, + "state_code": "QUI", + "country_id": 48, + "country_code": "CO", + "latitude": "4.63643000", + "longitude": "-75.56740000" + }, + { + "id": "20524", + "name": "Anserma", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.33278000", + "longitude": "-75.79111000" + }, + { + "id": "20531", + "name": "Apía", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.10658000", + "longitude": "-75.94244000" + }, + { + "id": "20563", + "name": "Balboa", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.92284000", + "longitude": "-75.94030000" + }, + { + "id": "20585", + "name": "Belén de Umbría", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.20087000", + "longitude": "-75.86865000" + }, + { + "id": "20782", + "name": "Dosquebradas", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.83916000", + "longitude": "-75.66727000" + }, + { + "id": "20926", + "name": "Guática", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.31569000", + "longitude": "-75.79826000" + }, + { + "id": "20975", + "name": "La Celia", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.00332000", + "longitude": "-76.00355000" + }, + { + "id": "20991", + "name": "La Merced", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.40194000", + "longitude": "-75.88472000" + }, + { + "id": "21016", + "name": "La Virginia", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.89972000", + "longitude": "-75.88250000" + }, + { + "id": "21070", + "name": "Marsella", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.95238000", + "longitude": "-75.75265000" + }, + { + "id": "21087", + "name": "Mistrató", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.29622000", + "longitude": "-75.88390000" + }, + { + "id": "21195", + "name": "Pereira", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.76896000", + "longitude": "-75.72222000" + }, + { + "id": "21226", + "name": "Pueblo Rico", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.29453000", + "longitude": "-76.06702000" + }, + { + "id": "21274", + "name": "Quinchía", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.33957000", + "longitude": "-75.73018000" + }, + { + "id": "21424", + "name": "Santa Rosa de Cabal", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "4.86806000", + "longitude": "-75.62139000" + }, + { + "id": "21442", + "name": "Santuario", + "state_id": 2879, + "state_code": "RIS", + "country_id": 48, + "country_code": "CO", + "latitude": "5.05321000", + "longitude": "-75.99060000" + }, + { + "id": "20493", + "name": "Aguada", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.16019000", + "longitude": "-73.52747000" + }, + { + "id": "20497", + "name": "Albania", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.75894000", + "longitude": "-73.91376000" + }, + { + "id": "20535", + "name": "Aratoca", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.69432000", + "longitude": "-73.01868000" + }, + { + "id": "20567", + "name": "Barbosa", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.93168000", + "longitude": "-73.61507000" + }, + { + "id": "20568", + "name": "Barichara", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.63572000", + "longitude": "-73.22282000" + }, + { + "id": "20570", + "name": "Barrancabermeja", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.06528000", + "longitude": "-73.85472000" + }, + { + "id": "20590", + "name": "Betulia", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.90069000", + "longitude": "-73.28347000" + }, + { + "id": "20597", + "name": "Bolívar", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.98930000", + "longitude": "-73.77058000" + }, + { + "id": "20603", + "name": "Bucaramanga", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.12539000", + "longitude": "-73.11980000" + }, + { + "id": "20616", + "name": "Cabrera", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.56443000", + "longitude": "-73.26768000" + }, + { + "id": "20635", + "name": "California", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.34340000", + "longitude": "-72.95815000" + }, + { + "id": "20647", + "name": "Capitanejo", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.52881000", + "longitude": "-72.69595000" + }, + { + "id": "20651", + "name": "Carcasí", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.62711000", + "longitude": "-72.62625000" + }, + { + "id": "20668", + "name": "Cepitá", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.75427000", + "longitude": "-72.97440000" + }, + { + "id": "20671", + "name": "Cerrito", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.84315000", + "longitude": "-72.69404000" + }, + { + "id": "20679", + "name": "Charalá", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.17513000", + "longitude": "-73.17587000" + }, + { + "id": "20680", + "name": "Charta", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.28025000", + "longitude": "-72.96782000" + }, + { + "id": "20684", + "name": "Chima", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.36289000", + "longitude": "-73.42534000" + }, + { + "id": "20692", + "name": "Chipatá", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.06196000", + "longitude": "-73.63718000" + }, + { + "id": "20708", + "name": "Cimitarra", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.31419000", + "longitude": "-73.94968000" + }, + { + "id": "20725", + "name": "Concepción", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.76619000", + "longitude": "-72.69400000" + }, + { + "id": "20729", + "name": "Confines", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.34875000", + "longitude": "-73.20990000" + }, + { + "id": "20733", + "name": "Contratación", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.29005000", + "longitude": "-73.47354000" + }, + { + "id": "20738", + "name": "Coromoro", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.29461000", + "longitude": "-73.04022000" + }, + { + "id": "20760", + "name": "Curití", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.60519000", + "longitude": "-73.06809000" + }, + { + "id": "20797", + "name": "El Carmen de Chucurí", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.69736000", + "longitude": "-73.51117000" + }, + { + "id": "20809", + "name": "El Guacamayo", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.24856000", + "longitude": "-73.52957000" + }, + { + "id": "20819", + "name": "El Peñón", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.09900000", + "longitude": "-73.92835000" + }, + { + "id": "20822", + "name": "El Playón", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.47131000", + "longitude": "-73.20310000" + }, + { + "id": "20836", + "name": "Encino", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.13735000", + "longitude": "-73.09847000" + }, + { + "id": "20837", + "name": "Enciso", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.64651000", + "longitude": "-72.70709000" + }, + { + "id": "20853", + "name": "Florián", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.80487000", + "longitude": "-73.97029000" + }, + { + "id": "20852", + "name": "Floridablanca", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.06315000", + "longitude": "-73.08586000" + }, + { + "id": "20878", + "name": "Galán", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.66271000", + "longitude": "-73.34233000" + }, + { + "id": "20881", + "name": "Gambita", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.90273000", + "longitude": "-73.36788000" + }, + { + "id": "20927", + "name": "Gámbita", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.94597000", + "longitude": "-73.34435000" + }, + { + "id": "20932", + "name": "Güepsa", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.02505000", + "longitude": "-73.57313000" + }, + { + "id": "20889", + "name": "Girón", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.06820000", + "longitude": "-73.16981000" + }, + { + "id": "20895", + "name": "Guaca", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.87621000", + "longitude": "-72.85594000" + }, + { + "id": "20902", + "name": "Guadalupe", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.24640000", + "longitude": "-73.41833000" + }, + { + "id": "20910", + "name": "Guapotá", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.30697000", + "longitude": "-73.32848000" + }, + { + "id": "20919", + "name": "Guavatá", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.95502000", + "longitude": "-73.70018000" + }, + { + "id": "20936", + "name": "Hato", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.56113000", + "longitude": "-73.35895000" + }, + { + "id": "20964", + "name": "Jesús María", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.87715000", + "longitude": "-73.78097000" + }, + { + "id": "20965", + "name": "Jordán", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.69857000", + "longitude": "-73.10966000" + }, + { + "id": "20971", + "name": "La Belleza", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.86371000", + "longitude": "-73.96167000" + }, + { + "id": "20996", + "name": "La Paz", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.17848000", + "longitude": "-73.58948000" + }, + { + "id": "21019", + "name": "Landázuri", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.21826000", + "longitude": "-73.81121000" + }, + { + "id": "21022", + "name": "Lebríja", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.19714000", + "longitude": "-73.31566000" + }, + { + "id": "21021", + "name": "Lebrija", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.11317000", + "longitude": "-73.21780000" + }, + { + "id": "21036", + "name": "Los Santos", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.79734000", + "longitude": "-73.12490000" + }, + { + "id": "21043", + "name": "Macaravita", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.50567000", + "longitude": "-72.59299000" + }, + { + "id": "21073", + "name": "Matanza", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.35605000", + "longitude": "-73.05303000" + }, + { + "id": "21124", + "name": "Málaga", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.69903000", + "longitude": "-72.73233000" + }, + { + "id": "21090", + "name": "Mogotes", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.47559000", + "longitude": "-72.97046000" + }, + { + "id": "21091", + "name": "Molagavita", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.67315000", + "longitude": "-72.80875000" + }, + { + "id": "21145", + "name": "Ocamonte", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.34001000", + "longitude": "-73.12205000" + }, + { + "id": "21147", + "name": "Oiba", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.26387000", + "longitude": "-73.29876000" + }, + { + "id": "21151", + "name": "Onzaga", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.34434000", + "longitude": "-72.81726000" + }, + { + "id": "21170", + "name": "Palmar", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.49740000", + "longitude": "-73.30740000" + }, + { + "id": "21172", + "name": "Palmas del Socorro", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.40756000", + "longitude": "-73.28824000" + }, + { + "id": "21269", + "name": "Páramo", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.43750000", + "longitude": "-73.18027000" + }, + { + "id": "21199", + "name": "Piedecuesta", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.97443000", + "longitude": "-73.02284000" + }, + { + "id": "21206", + "name": "Pinchote", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.53226000", + "longitude": "-73.17309000" + }, + { + "id": "21229", + "name": "Puente Nacional", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.87739000", + "longitude": "-73.67810000" + }, + { + "id": "21250", + "name": "Puerto Parra", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.65149000", + "longitude": "-74.05734000" + }, + { + "id": "21259", + "name": "Puerto Wilches", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.34828000", + "longitude": "-73.89601000" + }, + { + "id": "21292", + "name": "Rionegro", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.50000000", + "longitude": "-73.33333000" + }, + { + "id": "21308", + "name": "Sabana de Torres", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.39150000", + "longitude": "-73.49574000" + }, + { + "id": "21332", + "name": "San Andrés", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.81148000", + "longitude": "-72.84929000" + }, + { + "id": "21339", + "name": "San Benito", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.10206000", + "longitude": "-73.53753000" + }, + { + "id": "21359", + "name": "San Gil", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.55952000", + "longitude": "-73.13637000" + }, + { + "id": "21363", + "name": "San Joaquín", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.46554000", + "longitude": "-72.84852000" + }, + { + "id": "21367", + "name": "San José de Miranda", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.63051000", + "longitude": "-72.73155000" + }, + { + "id": "21388", + "name": "San Miguel", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.57583000", + "longitude": "-72.64591000" + }, + { + "id": "21408", + "name": "San Vicente de Chucurí", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.88100000", + "longitude": "-73.40977000" + }, + { + "id": "21412", + "name": "Santa Bárbara", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.99022000", + "longitude": "-72.90700000" + }, + { + "id": "21458", + "name": "Simacota", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.44290000", + "longitude": "-73.33688000" + }, + { + "id": "21468", + "name": "Socorro", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.45647000", + "longitude": "-73.25502000" + }, + { + "id": "21484", + "name": "Suaita", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.08221000", + "longitude": "-73.37008000" + }, + { + "id": "21488", + "name": "Sucre", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "5.96995000", + "longitude": "-73.96629000" + }, + { + "id": "21493", + "name": "Suratá", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.36633000", + "longitude": "-72.98361000" + }, + { + "id": "21540", + "name": "Tona", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.15727000", + "longitude": "-72.96559000" + }, + { + "id": "21579", + "name": "Valle de San José", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.41984000", + "longitude": "-73.12946000" + }, + { + "id": "21618", + "name": "Vélez", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.23274000", + "longitude": "-73.72582000" + }, + { + "id": "21592", + "name": "Vetas", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "7.30911000", + "longitude": "-72.87122000" + }, + { + "id": "21606", + "name": "Villanueva", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.67169000", + "longitude": "-73.17421000" + }, + { + "id": "21630", + "name": "Zapatoca", + "state_id": 2901, + "state_code": "SAN", + "country_id": 48, + "country_code": "CO", + "latitude": "6.81532000", + "longitude": "-73.26768000" + }, + { + "id": "20623", + "name": "Caimito", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "8.78834000", + "longitude": "-75.13583000" + }, + { + "id": "20676", + "name": "Chalán", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.54765000", + "longitude": "-75.31128000" + }, + { + "id": "20720", + "name": "Colosó", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.49477000", + "longitude": "-75.35271000" + }, + { + "id": "20719", + "name": "Coloso", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.51176000", + "longitude": "-75.36233000" + }, + { + "id": "20739", + "name": "Corozal", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.31847000", + "longitude": "-75.29330000" + }, + { + "id": "20744", + "name": "Coveñas", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.40254000", + "longitude": "-75.68029000" + }, + { + "id": "20825", + "name": "El Roble", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.10193000", + "longitude": "-75.19508000" + }, + { + "id": "20877", + "name": "Galeras", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.16095000", + "longitude": "-75.04811000" + }, + { + "id": "20912", + "name": "Guaranda", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "8.46746000", + "longitude": "-74.53617000" + }, + { + "id": "21007", + "name": "La Unión", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "8.84965000", + "longitude": "-75.27942000" + }, + { + "id": "21034", + "name": "Los Palmitos", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.37899000", + "longitude": "-75.26769000" + }, + { + "id": "21052", + "name": "Majagual", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "8.53500000", + "longitude": "-74.71499000" + }, + { + "id": "21107", + "name": "Morroa", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.33348000", + "longitude": "-75.30542000" + }, + { + "id": "21157", + "name": "Ovejas", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.54083000", + "longitude": "-75.18333000" + }, + { + "id": "21174", + "name": "Palmito", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.33667000", + "longitude": "-75.56333000" + }, + { + "id": "21327", + "name": "Sampués", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.18361000", + "longitude": "-75.38167000" + }, + { + "id": "21340", + "name": "San Benito Abad", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "8.78833000", + "longitude": "-74.95666000" + }, + { + "id": "21374", + "name": "San Juan de Betulia", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.27345000", + "longitude": "-75.24103000" + }, + { + "id": "21382", + "name": "San Luis de Sincé", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.24391000", + "longitude": "-75.14675000" + }, + { + "id": "21383", + "name": "San Marcos", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "8.58333000", + "longitude": "-75.16667000" + }, + { + "id": "21391", + "name": "San Onofre", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.73586000", + "longitude": "-75.52626000" + }, + { + "id": "21395", + "name": "San Pedro", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.39560000", + "longitude": "-75.06476000" + }, + { + "id": "21438", + "name": "Santiago de Tolú", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.52392000", + "longitude": "-75.58139000" + }, + { + "id": "21461", + "name": "Sincelejo", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.30472000", + "longitude": "-75.39778000" + }, + { + "id": "21487", + "name": "Sucre", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "8.81136000", + "longitude": "-74.72084000" + }, + { + "id": "21539", + "name": "Tolú Viejo", + "state_id": 2902, + "state_code": "SUC", + "country_id": 48, + "country_code": "CO", + "latitude": "9.45082000", + "longitude": "-75.43864000" + }, + { + "id": "20508", + "name": "Alpujarra", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.39222000", + "longitude": "-74.93271000" + }, + { + "id": "20511", + "name": "Alvarado", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.58826000", + "longitude": "-74.97810000" + }, + { + "id": "20514", + "name": "Ambalema", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.78405000", + "longitude": "-74.76268000" + }, + { + "id": "20515", + "name": "Anaime", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.39639000", + "longitude": "-75.44500000" + }, + { + "id": "20528", + "name": "Anzoátegui", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.62232000", + "longitude": "-75.18046000" + }, + { + "id": "20552", + "name": "Armero", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.98873000", + "longitude": "-74.88130000" + }, + { + "id": "20553", + "name": "Armero-Guyabal", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.96701000", + "longitude": "-74.90294000" + }, + { + "id": "20556", + "name": "Ataco", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.59147000", + "longitude": "-75.38178000" + }, + { + "id": "20624", + "name": "Cajamarca", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.41667000", + "longitude": "-75.50000000" + }, + { + "id": "20639", + "name": "Campo Alegre", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.18917000", + "longitude": "-75.70361000" + }, + { + "id": "20654", + "name": "Carmen de Apicalá", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.14725000", + "longitude": "-74.72014000" + }, + { + "id": "20664", + "name": "Casabianca", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.07959000", + "longitude": "-75.12059000" + }, + { + "id": "20678", + "name": "Chaparral", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.75000000", + "longitude": "-75.58333000" + }, + { + "id": "20682", + "name": "Chicoral", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.21536000", + "longitude": "-74.98189000" + }, + { + "id": "20717", + "name": "Coello", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.37330000", + "longitude": "-74.88655000" + }, + { + "id": "20745", + "name": "Coyaima", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.72781000", + "longitude": "-75.17397000" + }, + { + "id": "20758", + "name": "Cunday", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.00284000", + "longitude": "-74.69295000" + }, + { + "id": "20778", + "name": "Doima", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.42692000", + "longitude": "-74.97548000" + }, + { + "id": "20779", + "name": "Dolores", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.60534000", + "longitude": "-74.80585000" + }, + { + "id": "20841", + "name": "Espinal", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.14924000", + "longitude": "-74.88429000" + }, + { + "id": "20843", + "name": "Falan", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.12383000", + "longitude": "-74.95181000" + }, + { + "id": "20847", + "name": "Flandes", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.25000000", + "longitude": "-74.83333000" + }, + { + "id": "20862", + "name": "Frías", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.02973000", + "longitude": "-75.00860000" + }, + { + "id": "20860", + "name": "Fresno", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.15264000", + "longitude": "-75.03624000" + }, + { + "id": "20875", + "name": "Gaitania", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.15000000", + "longitude": "-75.81667000" + }, + { + "id": "20908", + "name": "Guamo", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.07457000", + "longitude": "-74.97689000" + }, + { + "id": "20920", + "name": "Guayabal", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.03103000", + "longitude": "-74.88683000" + }, + { + "id": "20941", + "name": "Herveo", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.08004000", + "longitude": "-75.17556000" + }, + { + "id": "20943", + "name": "Honda", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.20856000", + "longitude": "-74.73584000" + }, + { + "id": "20944", + "name": "Ibagué", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.43889000", + "longitude": "-75.23222000" + }, + { + "id": "20945", + "name": "Icononzo", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.17698000", + "longitude": "-74.53254000" + }, + { + "id": "20967", + "name": "Junín", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.78333000", + "longitude": "-75.01667000" + }, + { + "id": "20976", + "name": "La Chamba", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.02649000", + "longitude": "-74.86844000" + }, + { + "id": "21020", + "name": "Laureles", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.25917000", + "longitude": "-75.32250000" + }, + { + "id": "21039", + "name": "Lérida", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.86242000", + "longitude": "-74.90977000" + }, + { + "id": "21040", + "name": "Líbano", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.83560000", + "longitude": "-75.10834000" + }, + { + "id": "21079", + "name": "Melgar", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.20475000", + "longitude": "-74.64075000" + }, + { + "id": "21118", + "name": "Municipio de San Sebastián de Mariquita", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.24269000", + "longitude": "-74.90772000" + }, + { + "id": "21119", + "name": "Murillo", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.87393000", + "longitude": "-75.17151000" + }, + { + "id": "21128", + "name": "Natagaima", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.55212000", + "longitude": "-75.11345000" + }, + { + "id": "21154", + "name": "Ortega", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.94514000", + "longitude": "-75.27245000" + }, + { + "id": "21162", + "name": "Padua", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.13429000", + "longitude": "-75.14001000" + }, + { + "id": "21175", + "name": "Palocabildo", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.11705000", + "longitude": "-75.01732000" + }, + { + "id": "21188", + "name": "Payandé", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.29750000", + "longitude": "-75.09667000" + }, + { + "id": "21201", + "name": "Piedras", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.50000000", + "longitude": "-74.91667000" + }, + { + "id": "21212", + "name": "Planadas", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.10326000", + "longitude": "-75.81680000" + }, + { + "id": "21215", + "name": "Playarrica", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.05694000", + "longitude": "-75.41028000" + }, + { + "id": "21223", + "name": "Prado", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.73219000", + "longitude": "-74.86494000" + }, + { + "id": "21264", + "name": "Purificación", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.85871000", + "longitude": "-74.93129000" + }, + { + "id": "21289", + "name": "Rioblanco", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.50000000", + "longitude": "-75.83333000" + }, + { + "id": "21299", + "name": "Roncesvalles", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.01080000", + "longitude": "-75.60493000" + }, + { + "id": "21302", + "name": "Rovira", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.21222000", + "longitude": "-75.34210000" + }, + { + "id": "21321", + "name": "Saldaña", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.92923000", + "longitude": "-75.01517000" + }, + { + "id": "21337", + "name": "San Antonio", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.95664000", + "longitude": "-75.50000000" + }, + { + "id": "21379", + "name": "San Luis", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.16667000", + "longitude": "-75.08333000" + }, + { + "id": "21405", + "name": "San Sebastián de Mariquita", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "5.19889000", + "longitude": "-74.89295000" + }, + { + "id": "21419", + "name": "Santa Isabel", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.72626000", + "longitude": "-75.22391000" + }, + { + "id": "21437", + "name": "Santiago Pérez", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.39806000", + "longitude": "-75.60500000" + }, + { + "id": "21500", + "name": "Suárez", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.04897000", + "longitude": "-74.81821000" + }, + { + "id": "21547", + "name": "Tres Esquinas", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.86512000", + "longitude": "-74.70906000" + }, + { + "id": "21580", + "name": "Valle de San Juan", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.19869000", + "longitude": "-75.11733000" + }, + { + "id": "21586", + "name": "Venadillo", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.69177000", + "longitude": "-74.93669000" + }, + { + "id": "21604", + "name": "Villahermosa", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "4.96503000", + "longitude": "-75.15650000" + }, + { + "id": "21611", + "name": "Villarrica", + "state_id": 2883, + "state_code": "TOL", + "country_id": 48, + "country_code": "CO", + "latitude": "3.83099000", + "longitude": "-74.65258000" + }, + { + "id": "20502", + "name": "Alcalá", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.67458000", + "longitude": "-75.77188000" + }, + { + "id": "20519", + "name": "Andalucía", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.14035000", + "longitude": "-76.14739000" + }, + { + "id": "20526", + "name": "Ansermanuevo", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.79722000", + "longitude": "-75.99500000" + }, + { + "id": "20546", + "name": "Argelia", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.72904000", + "longitude": "-76.11637000" + }, + { + "id": "20598", + "name": "Bolívar", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.37710000", + "longitude": "-76.34870000" + }, + { + "id": "20605", + "name": "Buenaventura", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.88010000", + "longitude": "-77.03116000" + }, + { + "id": "20612", + "name": "Bugalagrande", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.21207000", + "longitude": "-76.15564000" + }, + { + "id": "20622", + "name": "Caicedonia", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.33240000", + "longitude": "-75.82665000" + }, + { + "id": "20634", + "name": "Cali", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.41033000", + "longitude": "-76.58097000" + }, + { + "id": "20636", + "name": "Calima", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.92511000", + "longitude": "-76.62654000" + }, + { + "id": "20644", + "name": "Candelaria", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.38367000", + "longitude": "-76.42466000" + }, + { + "id": "20661", + "name": "Cartago", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.74639000", + "longitude": "-75.91167000" + }, + { + "id": "20774", + "name": "Dagua", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.65685000", + "longitude": "-76.68859000" + }, + { + "id": "20775", + "name": "Darien", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.93135000", + "longitude": "-76.48481000" + }, + { + "id": "20835", + "name": "El Águila", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.91946000", + "longitude": "-76.05680000" + }, + { + "id": "20789", + "name": "El Cairo", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.74889000", + "longitude": "-76.24443000" + }, + { + "id": "20800", + "name": "El Cerrito", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.64273000", + "longitude": "-76.20960000" + }, + { + "id": "20806", + "name": "El Dovio", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.50790000", + "longitude": "-76.23619000" + }, + { + "id": "20851", + "name": "Florida", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.30940000", + "longitude": "-76.18989000" + }, + { + "id": "20884", + "name": "Ginebra", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.74296000", + "longitude": "-76.19412000" + }, + { + "id": "20897", + "name": "Guacarí", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.76383000", + "longitude": "-76.33292000" + }, + { + "id": "20900", + "name": "Guadalajara de Buga", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.90089000", + "longitude": "-76.29783000" + }, + { + "id": "20958", + "name": "Jamundí", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.26074000", + "longitude": "-76.53499000" + }, + { + "id": "20979", + "name": "La Cumbre", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.72250000", + "longitude": "-76.02083000" + }, + { + "id": "21006", + "name": "La Unión", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.53282000", + "longitude": "-76.10318000" + }, + { + "id": "21013", + "name": "La Victoria", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.52483000", + "longitude": "-76.03921000" + }, + { + "id": "21144", + "name": "Obando", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.59590000", + "longitude": "-75.94879000" + }, + { + "id": "21173", + "name": "Palmira", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.53969000", + "longitude": "-76.22607000" + }, + { + "id": "21222", + "name": "Pradera", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.42793000", + "longitude": "-76.17159000" + }, + { + "id": "21285", + "name": "Restrepo", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.82203000", + "longitude": "-76.52242000" + }, + { + "id": "21290", + "name": "Riofrío", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.15710000", + "longitude": "-76.28852000" + }, + { + "id": "21298", + "name": "Roldanillo", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.41256000", + "longitude": "-76.15457000" + }, + { + "id": "21397", + "name": "San Pedro", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.99936000", + "longitude": "-76.26123000" + }, + { + "id": "21451", + "name": "Sevilla", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.19345000", + "longitude": "-75.88829000" + }, + { + "id": "21544", + "name": "Toro", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.61167000", + "longitude": "-76.08139000" + }, + { + "id": "21549", + "name": "Trujillo", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.23696000", + "longitude": "-76.34730000" + }, + { + "id": "21551", + "name": "Tuluá", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.08466000", + "longitude": "-76.19536000" + }, + { + "id": "21567", + "name": "Ulloa", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.70745000", + "longitude": "-75.77781000" + }, + { + "id": "21591", + "name": "Versalles", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.66335000", + "longitude": "-76.24649000" + }, + { + "id": "21596", + "name": "Vijes", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.73283000", + "longitude": "-76.49363000" + }, + { + "id": "21627", + "name": "Yotoco", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.86048000", + "longitude": "-76.38364000" + }, + { + "id": "21628", + "name": "Yumbo", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "3.58234000", + "longitude": "-76.49146000" + }, + { + "id": "21633", + "name": "Zarzal", + "state_id": 2904, + "state_code": "VAC", + "country_id": 48, + "country_code": "CO", + "latitude": "4.39462000", + "longitude": "-76.07150000" + }, + { + "id": "20663", + "name": "Caruru", + "state_id": 2885, + "state_code": "VAU", + "country_id": 48, + "country_code": "CO", + "latitude": "1.02081000", + "longitude": "-71.33788000" + }, + { + "id": "21088", + "name": "Mitú", + "state_id": 2885, + "state_code": "VAU", + "country_id": 48, + "country_code": "CO", + "latitude": "1.25778000", + "longitude": "-70.23472000" + }, + { + "id": "21160", + "name": "Pacoa", + "state_id": 2885, + "state_code": "VAU", + "country_id": 48, + "country_code": "CO", + "latitude": "0.15636000", + "longitude": "-70.89274000" + }, + { + "id": "21181", + "name": "Papunaua", + "state_id": 2885, + "state_code": "VAU", + "country_id": 48, + "country_code": "CO", + "latitude": "1.68335000", + "longitude": "-70.70968000" + }, + { + "id": "21511", + "name": "Taraira", + "state_id": 2885, + "state_code": "VAU", + "country_id": 48, + "country_code": "CO", + "latitude": "-0.74835000", + "longitude": "-69.89662000" + }, + { + "id": "21623", + "name": "Yavaraté", + "state_id": 2885, + "state_code": "VAU", + "country_id": 48, + "country_code": "CO", + "latitude": "0.82828000", + "longitude": "-69.62959000" + }, + { + "id": "20755", + "name": "Cumaribo", + "state_id": 2894, + "state_code": "VID", + "country_id": 48, + "country_code": "CO", + "latitude": "4.44552000", + "longitude": "-69.79897000" + }, + { + "id": "21002", + "name": "La Primavera", + "state_id": 2894, + "state_code": "VID", + "country_id": 48, + "country_code": "CO", + "latitude": "5.49056000", + "longitude": "-70.40917000" + }, + { + "id": "21237", + "name": "Puerto Carreño", + "state_id": 2894, + "state_code": "VID", + "country_id": 48, + "country_code": "CO", + "latitude": "6.18903000", + "longitude": "-67.48588000" + }, + { + "id": "21429", + "name": "Santa Rosalía", + "state_id": 2894, + "state_code": "VID", + "country_id": 48, + "country_code": "CO", + "latitude": "5.02169000", + "longitude": "-70.65985000" + }, + { + "id": "21428", + "name": "Santa Rosalia", + "state_id": 2894, + "state_code": "VID", + "country_id": 48, + "country_code": "CO", + "latitude": "5.13356000", + "longitude": "-70.86233000" + }, + { + "id": "65079", + "name": "Adda-Douéni", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.29250000", + "longitude": "44.49722000" + }, + { + "id": "65080", + "name": "Antsahé", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.35639000", + "longitude": "44.52250000" + }, + { + "id": "65081", + "name": "Assimpao", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.23306000", + "longitude": "44.31972000" + }, + { + "id": "65084", + "name": "Bambao", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.20325000", + "longitude": "44.51638000" + }, + { + "id": "65085", + "name": "Bandajou", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.19167000", + "longitude": "44.28694000" + }, + { + "id": "65086", + "name": "Barakani", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.13861000", + "longitude": "44.43026000" + }, + { + "id": "65087", + "name": "Bimbini", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.18833000", + "longitude": "44.23556000" + }, + { + "id": "65088", + "name": "Boungouéni", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.20556000", + "longitude": "44.29944000" + }, + { + "id": "65090", + "name": "Chandra", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.19500000", + "longitude": "44.46472000" + }, + { + "id": "65093", + "name": "Chironkamba", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.19111000", + "longitude": "44.35250000" + }, + { + "id": "65094", + "name": "Chitrouni", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.18583000", + "longitude": "44.33556000" + }, + { + "id": "65096", + "name": "Daji", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.32583000", + "longitude": "44.48861000" + }, + { + "id": "65099", + "name": "Domoni", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.25694000", + "longitude": "44.53194000" + }, + { + "id": "65102", + "name": "Dziani", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.18333000", + "longitude": "44.48333000" + }, + { + "id": "65105", + "name": "Hajoho", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.12434000", + "longitude": "44.48881000" + }, + { + "id": "65107", + "name": "Harembo", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.15108000", + "longitude": "44.49828000" + }, + { + "id": "65113", + "name": "Kangani", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.32102000", + "longitude": "44.47270000" + }, + { + "id": "65114", + "name": "Kavani", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.19194000", + "longitude": "44.26944000" + }, + { + "id": "65115", + "name": "Koki", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.17139000", + "longitude": "44.44167000" + }, + { + "id": "65116", + "name": "Koni-Djodjo", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.22972000", + "longitude": "44.48167000" + }, + { + "id": "65117", + "name": "Koni-Ngani", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.21583000", + "longitude": "44.48000000" + }, + { + "id": "65119", + "name": "Kyo", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.33222000", + "longitude": "44.51917000" + }, + { + "id": "65120", + "name": "Limbi", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.23944000", + "longitude": "44.50528000" + }, + { + "id": "65121", + "name": "Lingoni", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.25583000", + "longitude": "44.41833000" + }, + { + "id": "65123", + "name": "Magnassini-Nindri", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.27806000", + "longitude": "44.41583000" + }, + { + "id": "65125", + "name": "Maraharé", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.23083000", + "longitude": "44.31333000" + }, + { + "id": "65128", + "name": "Mirontsi", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.15667000", + "longitude": "44.40806000" + }, + { + "id": "65131", + "name": "Mjamaoué", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.19361000", + "longitude": "44.31000000" + }, + { + "id": "65132", + "name": "Mjimandra", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.19167000", + "longitude": "44.37028000" + }, + { + "id": "65136", + "name": "Moutsamoudou", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.16672000", + "longitude": "44.39944000" + }, + { + "id": "65137", + "name": "Moya", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.30967000", + "longitude": "44.43685000" + }, + { + "id": "65138", + "name": "Mramani", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.34639000", + "longitude": "44.52861000" + }, + { + "id": "65139", + "name": "Mrémani", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.30833000", + "longitude": "44.49861000" + }, + { + "id": "65147", + "name": "Ongoni", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.17028000", + "longitude": "44.50694000" + }, + { + "id": "65149", + "name": "Ouani", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.13554000", + "longitude": "44.42493000" + }, + { + "id": "65154", + "name": "Ouzini", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.26722000", + "longitude": "44.47972000" + }, + { + "id": "65155", + "name": "Pajé", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.16972000", + "longitude": "44.38806000" + }, + { + "id": "65156", + "name": "Patsi", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.15556000", + "longitude": "44.43722000" + }, + { + "id": "65158", + "name": "Sima", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.19556000", + "longitude": "44.27667000" + }, + { + "id": "65162", + "name": "Tsimbeo", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.20583000", + "longitude": "44.46472000" + }, + { + "id": "65165", + "name": "Vouani", + "state_id": 2821, + "state_code": "A", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.24417000", + "longitude": "44.37444000" + }, + { + "id": "65082", + "name": "Bahani", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.63972000", + "longitude": "43.28417000" + }, + { + "id": "65083", + "name": "Bambadjani", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.47861000", + "longitude": "43.37722000" + }, + { + "id": "65089", + "name": "Bouni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.48694000", + "longitude": "43.38833000" + }, + { + "id": "65091", + "name": "Chezani", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.43140000", + "longitude": "43.39625000" + }, + { + "id": "65092", + "name": "Chindini", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.92328000", + "longitude": "43.49109000" + }, + { + "id": "65095", + "name": "Chouani", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.82330000", + "longitude": "43.29429000" + }, + { + "id": "65097", + "name": "Dembéni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.87361000", + "longitude": "43.39778000" + }, + { + "id": "65100", + "name": "Douniani", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.42111000", + "longitude": "43.28889000" + }, + { + "id": "65101", + "name": "Dzahadjou", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.85287000", + "longitude": "43.34987000" + }, + { + "id": "65104", + "name": "Foumbouni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.86537000", + "longitude": "43.49529000" + }, + { + "id": "65106", + "name": "Hantsindzi", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.43178000", + "longitude": "43.41102000" + }, + { + "id": "65109", + "name": "Héroumbili", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.54389000", + "longitude": "43.37972000" + }, + { + "id": "65110", + "name": "Itsandra", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.67111000", + "longitude": "43.25472000" + }, + { + "id": "65111", + "name": "Itsandzéni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.47278000", + "longitude": "43.38444000" + }, + { + "id": "65112", + "name": "Ivouani", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.39157000", + "longitude": "43.39454000" + }, + { + "id": "65118", + "name": "Koua", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.42083000", + "longitude": "43.27639000" + }, + { + "id": "65122", + "name": "Madjeouéni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.82167000", + "longitude": "43.27806000" + }, + { + "id": "65124", + "name": "Mandza", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.41806000", + "longitude": "43.29528000" + }, + { + "id": "65126", + "name": "Mavingouni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.71639000", + "longitude": "43.25250000" + }, + { + "id": "65127", + "name": "Mbéni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.50139000", + "longitude": "43.37750000" + }, + { + "id": "65129", + "name": "Mitsamiouli", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.38472000", + "longitude": "43.28444000" + }, + { + "id": "65130", + "name": "Mitsoudjé", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.81209000", + "longitude": "43.28043000" + }, + { + "id": "65133", + "name": "Mnoungou", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.51778000", + "longitude": "43.37389000" + }, + { + "id": "65134", + "name": "Mohoro", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.82701000", + "longitude": "43.45436000" + }, + { + "id": "65135", + "name": "Moroni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.70216000", + "longitude": "43.25506000" + }, + { + "id": "65141", + "name": "Mtsamdou", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.60694000", + "longitude": "43.38056000" + }, + { + "id": "65142", + "name": "Mvouni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.71611000", + "longitude": "43.26472000" + }, + { + "id": "65144", + "name": "Nioumamilima", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.85461000", + "longitude": "43.44607000" + }, + { + "id": "65145", + "name": "Ntsaouéni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.46583000", + "longitude": "43.26278000" + }, + { + "id": "65146", + "name": "Ntsoudjini", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.65972000", + "longitude": "43.26139000" + }, + { + "id": "65150", + "name": "Ouellah", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.39028000", + "longitude": "43.33194000" + }, + { + "id": "65151", + "name": "Ouhozi", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.40500000", + "longitude": "43.28222000" + }, + { + "id": "65152", + "name": "Ourovéni", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.91375000", + "longitude": "43.49804000" + }, + { + "id": "65153", + "name": "Oussivo", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.58500000", + "longitude": "43.26722000" + }, + { + "id": "65157", + "name": "Salimani", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.81150000", + "longitude": "43.26823000" + }, + { + "id": "65160", + "name": "Séléa", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.78444000", + "longitude": "43.26083000" + }, + { + "id": "65159", + "name": "Singani", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.84784000", + "longitude": "43.31731000" + }, + { + "id": "65161", + "name": "Tsidjé", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.69806000", + "longitude": "43.26194000" + }, + { + "id": "65163", + "name": "Vanadjou", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.60750000", + "longitude": "43.27611000" + }, + { + "id": "65164", + "name": "Vanambouani", + "state_id": 2822, + "state_code": "G", + "country_id": 49, + "country_code": "KM", + "latitude": "-11.61139000", + "longitude": "43.25306000" + }, + { + "id": "65098", + "name": "Djoyézi", + "state_id": 2820, + "state_code": "M", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.30587000", + "longitude": "43.77425000" + }, + { + "id": "65103", + "name": "Fomboni", + "state_id": 2820, + "state_code": "M", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.28759000", + "longitude": "43.74344000" + }, + { + "id": "65108", + "name": "Hoani", + "state_id": 2820, + "state_code": "M", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.25083000", + "longitude": "43.67472000" + }, + { + "id": "65140", + "name": "Mtakoudja", + "state_id": 2820, + "state_code": "M", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.26111000", + "longitude": "43.70361000" + }, + { + "id": "65143", + "name": "Nioumachoua", + "state_id": 2820, + "state_code": "M", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.36139000", + "longitude": "43.71528000" + }, + { + "id": "65148", + "name": "Ouanani", + "state_id": 2820, + "state_code": "M", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.33750000", + "longitude": "43.79750000" + }, + { + "id": "65166", + "name": "Ziroudani", + "state_id": 2820, + "state_code": "M", + "country_id": 49, + "country_code": "KM", + "latitude": "-12.33250000", + "longitude": "43.77750000" + }, + { + "id": "17345", + "name": "Kayes", + "state_id": 2866, + "state_code": "11", + "country_id": 50, + "country_code": "CG", + "latitude": "-4.20493000", + "longitude": "13.28608000" + }, + { + "id": "17348", + "name": "Madingou", + "state_id": 2866, + "state_code": "11", + "country_id": 50, + "country_code": "CG", + "latitude": "-4.15361000", + "longitude": "13.55000000" + }, + { + "id": "17339", + "name": "Brazzaville", + "state_id": 2870, + "state_code": "BZV", + "country_id": 50, + "country_code": "CG", + "latitude": "-4.26613000", + "longitude": "15.28318000" + }, + { + "id": "17349", + "name": "Makoua", + "state_id": 2864, + "state_code": "8", + "country_id": 50, + "country_code": "CG", + "latitude": "0.00694000", + "longitude": "15.63333000" + }, + { + "id": "17352", + "name": "Owando", + "state_id": 2864, + "state_code": "8", + "country_id": 50, + "country_code": "CG", + "latitude": "-0.48193000", + "longitude": "15.89988000" + }, + { + "id": "17342", + "name": "Ewo", + "state_id": 2869, + "state_code": "15", + "country_id": 50, + "country_code": "CG", + "latitude": "-0.87250000", + "longitude": "14.82056000" + }, + { + "id": "17354", + "name": "Sibiti", + "state_id": 2868, + "state_code": "2", + "country_id": 50, + "country_code": "CG", + "latitude": "-3.68192000", + "longitude": "13.34985000" + }, + { + "id": "17344", + "name": "Impfondo", + "state_id": 2865, + "state_code": "7", + "country_id": 50, + "country_code": "CG", + "latitude": "1.61804000", + "longitude": "18.05981000" + }, + { + "id": "17341", + "name": "Dolisie", + "state_id": 2872, + "state_code": "9", + "country_id": 50, + "country_code": "CG", + "latitude": "-4.19834000", + "longitude": "12.66664000" + }, + { + "id": "17350", + "name": "Mossendjo", + "state_id": 2872, + "state_code": "9", + "country_id": 50, + "country_code": "CG", + "latitude": "-2.94968000", + "longitude": "12.70423000" + }, + { + "id": "17340", + "name": "Djambala", + "state_id": 2862, + "state_code": "14", + "country_id": 50, + "country_code": "CG", + "latitude": "-2.54472000", + "longitude": "14.75333000" + }, + { + "id": "17343", + "name": "Gamboma", + "state_id": 2862, + "state_code": "14", + "country_id": 50, + "country_code": "CG", + "latitude": "-1.87639000", + "longitude": "15.86444000" + }, + { + "id": "17347", + "name": "Loandjili", + "state_id": 2863, + "state_code": "16", + "country_id": 50, + "country_code": "CG", + "latitude": "-4.75611000", + "longitude": "11.85778000" + }, + { + "id": "17353", + "name": "Pointe-Noire", + "state_id": 2863, + "state_code": "16", + "country_id": 50, + "country_code": "CG", + "latitude": "-4.77609000", + "longitude": "11.86352000" + }, + { + "id": "17346", + "name": "Kinkala", + "state_id": 2873, + "state_code": "12", + "country_id": 50, + "country_code": "CG", + "latitude": "-4.36139000", + "longitude": "14.76444000" + }, + { + "id": "17351", + "name": "Ouésso", + "state_id": 2871, + "state_code": "13", + "country_id": 50, + "country_code": "CG", + "latitude": "1.61361000", + "longitude": "16.05167000" + }, + { + "id": "17355", + "name": "Sémbé", + "state_id": 2871, + "state_code": "13", + "country_id": 50, + "country_code": "CG", + "latitude": "1.64806000", + "longitude": "14.58056000" + }, + { + "id": "17245", + "name": "Gemena", + "state_id": 2744, + "state_code": "EQ", + "country_id": 51, + "country_code": "CD", + "latitude": "3.25651000", + "longitude": "19.77234000" + }, + { + "id": "17269", + "name": "Lisala", + "state_id": 2744, + "state_code": "EQ", + "country_id": 51, + "country_code": "CD", + "latitude": "2.15127000", + "longitude": "21.51672000" + }, + { + "id": "17274", + "name": "Lukolela", + "state_id": 2744, + "state_code": "EQ", + "country_id": 51, + "country_code": "CD", + "latitude": "-1.06046000", + "longitude": "17.18210000" + }, + { + "id": "17279", + "name": "Mbandaka", + "state_id": 2744, + "state_code": "EQ", + "country_id": 51, + "country_code": "CD", + "latitude": "0.04865000", + "longitude": "18.26034000" + }, + { + "id": "17231", + "name": "Boma", + "state_id": 2746, + "state_code": "BC", + "country_id": 51, + "country_code": "CD", + "latitude": "-5.85098000", + "longitude": "13.05364000" + }, + { + "id": "17258", + "name": "Kasangulu", + "state_id": 2746, + "state_code": "BC", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.58330000", + "longitude": "15.16554000" + }, + { + "id": "17278", + "name": "Matadi", + "state_id": 2746, + "state_code": "BC", + "country_id": 51, + "country_code": "CD", + "latitude": "-5.83861000", + "longitude": "13.46306000" + }, + { + "id": "17280", + "name": "Mbanza-Ngungu", + "state_id": 2746, + "state_code": "BC", + "country_id": 51, + "country_code": "CD", + "latitude": "-5.25837000", + "longitude": "14.85838000" + }, + { + "id": "17282", + "name": "Moanda", + "state_id": 2746, + "state_code": "BC", + "country_id": 51, + "country_code": "CD", + "latitude": "-5.92753000", + "longitude": "12.37148000" + }, + { + "id": "17288", + "name": "Tshela", + "state_id": 2746, + "state_code": "BC", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.99707000", + "longitude": "12.94840000" + }, + { + "id": "17225", + "name": "Aketi", + "state_id": 2753, + "state_code": "BU", + "country_id": 51, + "country_code": "CD", + "latitude": "2.73877000", + "longitude": "23.78326000" + }, + { + "id": "17232", + "name": "Bondo", + "state_id": 2753, + "state_code": "BU", + "country_id": 51, + "country_code": "CD", + "latitude": "3.81461000", + "longitude": "23.68665000" + }, + { + "id": "17241", + "name": "Buta", + "state_id": 2753, + "state_code": "BU", + "country_id": 51, + "country_code": "CD", + "latitude": "2.78582000", + "longitude": "24.72997000" + }, + { + "id": "17247", + "name": "Haut Katanga", + "state_id": 2750, + "state_code": "HK", + "country_id": 51, + "country_code": "CD", + "latitude": "-10.46044000", + "longitude": "27.94322000" + }, + { + "id": "17255", + "name": "Kambove", + "state_id": 2750, + "state_code": "HK", + "country_id": 51, + "country_code": "CD", + "latitude": "-10.87352000", + "longitude": "26.59746000" + }, + { + "id": "17264", + "name": "Kipushi", + "state_id": 2750, + "state_code": "HK", + "country_id": 51, + "country_code": "CD", + "latitude": "-11.76097000", + "longitude": "27.25135000" + }, + { + "id": "17268", + "name": "Likasi", + "state_id": 2750, + "state_code": "HK", + "country_id": 51, + "country_code": "CD", + "latitude": "-10.98303000", + "longitude": "26.73840000" + }, + { + "id": "17272", + "name": "Lubumbashi", + "state_id": 2750, + "state_code": "HK", + "country_id": 51, + "country_code": "CD", + "latitude": "-11.66089000", + "longitude": "27.47938000" + }, + { + "id": "17235", + "name": "Bukama", + "state_id": 2758, + "state_code": "HL", + "country_id": 51, + "country_code": "CD", + "latitude": "-9.20443000", + "longitude": "25.85475000" + }, + { + "id": "17256", + "name": "Kamina", + "state_id": 2758, + "state_code": "HL", + "country_id": 51, + "country_code": "CD", + "latitude": "-8.73508000", + "longitude": "24.99798000" + }, + { + "id": "17250", + "name": "Isiro", + "state_id": 2734, + "state_code": "HU", + "country_id": 51, + "country_code": "CD", + "latitude": "2.77391000", + "longitude": "27.61603000" + }, + { + "id": "17291", + "name": "Wamba", + "state_id": 2734, + "state_code": "HU", + "country_id": 51, + "country_code": "CD", + "latitude": "2.14838000", + "longitude": "27.99466000" + }, + { + "id": "17292", + "name": "Watsa", + "state_id": 2734, + "state_code": "HU", + "country_id": 51, + "country_code": "CD", + "latitude": "3.03716000", + "longitude": "29.53551000" + }, + { + "id": "17239", + "name": "Bunia", + "state_id": 2751, + "state_code": "IT", + "country_id": 51, + "country_code": "CD", + "latitude": "1.55941000", + "longitude": "30.25224000" + }, + { + "id": "17248", + "name": "Ilebo", + "state_id": 2757, + "state_code": "KS", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.33111000", + "longitude": "20.58638000" + }, + { + "id": "17273", + "name": "Luebo", + "state_id": 2757, + "state_code": "KS", + "country_id": 51, + "country_code": "CD", + "latitude": "-5.35218000", + "longitude": "21.42192000" + }, + { + "id": "17284", + "name": "Mweka", + "state_id": 2757, + "state_code": "KS", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.85187000", + "longitude": "21.55950000" + }, + { + "id": "17289", + "name": "Tshikapa", + "state_id": 2757, + "state_code": "KS", + "country_id": 51, + "country_code": "CD", + "latitude": "-6.41621000", + "longitude": "20.79995000" + }, + { + "id": "17243", + "name": "Gandajika", + "state_id": 2735, + "state_code": "KE", + "country_id": 51, + "country_code": "CD", + "latitude": "-6.74504000", + "longitude": "23.95328000" + }, + { + "id": "17253", + "name": "Kabinda", + "state_id": 2735, + "state_code": "KE", + "country_id": 51, + "country_code": "CD", + "latitude": "-6.13791000", + "longitude": "24.48179000" + }, + { + "id": "17281", + "name": "Mbuji-Mayi", + "state_id": 2735, + "state_code": "KE", + "country_id": 51, + "country_code": "CD", + "latitude": "-6.13603000", + "longitude": "23.58979000" + }, + { + "id": "17263", + "name": "Kinshasa", + "state_id": 2741, + "state_code": "KN", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.32758000", + "longitude": "15.31357000" + }, + { + "id": "17277", + "name": "Masina", + "state_id": 2741, + "state_code": "KN", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.38361000", + "longitude": "15.39139000" + }, + { + "id": "17260", + "name": "Kasongo-Lunda", + "state_id": 2740, + "state_code": "KG", + "country_id": 51, + "country_code": "CD", + "latitude": "-6.47833000", + "longitude": "16.81735000" + }, + { + "id": "17226", + "name": "Bandundu", + "state_id": 2759, + "state_code": "KL", + "country_id": 51, + "country_code": "CD", + "latitude": "-3.31687000", + "longitude": "17.38063000" + }, + { + "id": "17237", + "name": "Bulungu", + "state_id": 2759, + "state_code": "KL", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.54437000", + "longitude": "18.60364000" + }, + { + "id": "17261", + "name": "Kikwit", + "state_id": 2759, + "state_code": "KL", + "country_id": 51, + "country_code": "CD", + "latitude": "-5.04098000", + "longitude": "18.81619000" + }, + { + "id": "17276", + "name": "Mangai", + "state_id": 2759, + "state_code": "KL", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.02328000", + "longitude": "19.53385000" + }, + { + "id": "17271", + "name": "Lubao", + "state_id": 2747, + "state_code": "LO", + "country_id": 51, + "country_code": "CD", + "latitude": "-5.38771000", + "longitude": "25.74885000" + }, + { + "id": "17285", + "name": "Mwene-Ditu", + "state_id": 2747, + "state_code": "LO", + "country_id": 51, + "country_code": "CD", + "latitude": "-7.00906000", + "longitude": "23.45278000" + }, + { + "id": "17230", + "name": "Bolobo", + "state_id": 2755, + "state_code": "MN", + "country_id": 51, + "country_code": "CD", + "latitude": "-2.15800000", + "longitude": "16.23249000" + }, + { + "id": "17249", + "name": "Inongo", + "state_id": 2755, + "state_code": "MN", + "country_id": 51, + "country_code": "CD", + "latitude": "-1.92750000", + "longitude": "18.28810000" + }, + { + "id": "17283", + "name": "Mushie", + "state_id": 2755, + "state_code": "MN", + "country_id": 51, + "country_code": "CD", + "latitude": "-3.01728000", + "longitude": "16.92238000" + }, + { + "id": "17286", + "name": "Nioki", + "state_id": 2755, + "state_code": "MN", + "country_id": 51, + "country_code": "CD", + "latitude": "-2.72037000", + "longitude": "17.69001000" + }, + { + "id": "17257", + "name": "Kampene", + "state_id": 2745, + "state_code": "MA", + "country_id": 51, + "country_code": "CD", + "latitude": "-3.59678000", + "longitude": "26.66715000" + }, + { + "id": "17259", + "name": "Kasongo", + "state_id": 2745, + "state_code": "MA", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.42741000", + "longitude": "26.66656000" + }, + { + "id": "17262", + "name": "Kindu", + "state_id": 2745, + "state_code": "MA", + "country_id": 51, + "country_code": "CD", + "latitude": "-2.94373000", + "longitude": "25.92237000" + }, + { + "id": "17238", + "name": "Bumba", + "state_id": 2752, + "state_code": "MO", + "country_id": 51, + "country_code": "CD", + "latitude": "2.18771000", + "longitude": "22.46827000" + }, + { + "id": "17234", + "name": "Bosobolo", + "state_id": 2739, + "state_code": "NU", + "country_id": 51, + "country_code": "CD", + "latitude": "4.18980000", + "longitude": "19.88330000" + }, + { + "id": "17240", + "name": "Businga", + "state_id": 2739, + "state_code": "NU", + "country_id": 51, + "country_code": "CD", + "latitude": "3.33863000", + "longitude": "20.88577000" + }, + { + "id": "17244", + "name": "Gbadolite", + "state_id": 2739, + "state_code": "NU", + "country_id": 51, + "country_code": "CD", + "latitude": "4.27900000", + "longitude": "21.00284000" + }, + { + "id": "17228", + "name": "Beni", + "state_id": 2749, + "state_code": "NK", + "country_id": 51, + "country_code": "CD", + "latitude": "0.49113000", + "longitude": "29.47306000" + }, + { + "id": "17242", + "name": "Butembo", + "state_id": 2749, + "state_code": "NK", + "country_id": 51, + "country_code": "CD", + "latitude": "0.14164000", + "longitude": "29.29117000" + }, + { + "id": "17246", + "name": "Goma", + "state_id": 2749, + "state_code": "NK", + "country_id": 51, + "country_code": "CD", + "latitude": "-1.67409000", + "longitude": "29.22845000" + }, + { + "id": "17287", + "name": "Sake", + "state_id": 2749, + "state_code": "NK", + "country_id": 51, + "country_code": "CD", + "latitude": "-1.57386000", + "longitude": "29.04339000" + }, + { + "id": "17270", + "name": "Lodja", + "state_id": 2743, + "state_code": "SA", + "country_id": 51, + "country_code": "CD", + "latitude": "-3.52105000", + "longitude": "23.60050000" + }, + { + "id": "17275", + "name": "Lusambo", + "state_id": 2743, + "state_code": "SA", + "country_id": 51, + "country_code": "CD", + "latitude": "-4.97503000", + "longitude": "23.44391000" + }, + { + "id": "17236", + "name": "Bukavu", + "state_id": 2738, + "state_code": "SK", + "country_id": 51, + "country_code": "CD", + "latitude": "-2.49077000", + "longitude": "28.84281000" + }, + { + "id": "17252", + "name": "Kabare", + "state_id": 2738, + "state_code": "SK", + "country_id": 51, + "country_code": "CD", + "latitude": "-2.49682000", + "longitude": "28.79081000" + }, + { + "id": "17290", + "name": "Uvira", + "state_id": 2738, + "state_code": "SK", + "country_id": 51, + "country_code": "CD", + "latitude": "-3.39534000", + "longitude": "29.13779000" + }, + { + "id": "17233", + "name": "Bongandanga", + "state_id": 2748, + "state_code": "SU", + "country_id": 51, + "country_code": "CD", + "latitude": "1.50695000", + "longitude": "21.07260000" + }, + { + "id": "17267", + "name": "Libenge", + "state_id": 2748, + "state_code": "SU", + "country_id": 51, + "country_code": "CD", + "latitude": "3.65332000", + "longitude": "18.63566000" + }, + { + "id": "17251", + "name": "Kabalo", + "state_id": 2733, + "state_code": "TA", + "country_id": 51, + "country_code": "CD", + "latitude": "-6.05255000", + "longitude": "26.91430000" + }, + { + "id": "17254", + "name": "Kalemie", + "state_id": 2733, + "state_code": "TA", + "country_id": 51, + "country_code": "CD", + "latitude": "-5.94749000", + "longitude": "29.19471000" + }, + { + "id": "17266", + "name": "Kongolo", + "state_id": 2733, + "state_code": "TA", + "country_id": 51, + "country_code": "CD", + "latitude": "-5.38532000", + "longitude": "27.00029000" + }, + { + "id": "17227", + "name": "Basoko", + "state_id": 2756, + "state_code": "TO", + "country_id": 51, + "country_code": "CD", + "latitude": "1.23909000", + "longitude": "23.61598000" + }, + { + "id": "17265", + "name": "Kisangani", + "state_id": 2756, + "state_code": "TO", + "country_id": 51, + "country_code": "CD", + "latitude": "0.51528000", + "longitude": "25.19099000" + }, + { + "id": "17293", + "name": "Yangambi", + "state_id": 2756, + "state_code": "TO", + "country_id": 51, + "country_code": "CD", + "latitude": "0.76755000", + "longitude": "24.43973000" + }, + { + "id": "17229", + "name": "Boende", + "state_id": 2732, + "state_code": "TU", + "country_id": 51, + "country_code": "CD", + "latitude": "-0.28163000", + "longitude": "20.88053000" + }, + { + "id": "21643", + "name": "Alajuela", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.01625000", + "longitude": "-84.21163000" + }, + { + "id": "21647", + "name": "Atenas", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "9.98333000", + "longitude": "-84.38333000" + }, + { + "id": "21653", + "name": "Bijagua", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.73279000", + "longitude": "-85.05676000" + }, + { + "id": "21658", + "name": "Carrillos", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.02918000", + "longitude": "-84.27403000" + }, + { + "id": "21672", + "name": "Desamparados", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "9.94727000", + "longitude": "-84.50626000" + }, + { + "id": "21678", + "name": "Esquipulas", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.05676000", + "longitude": "-84.42337000" + }, + { + "id": "21685", + "name": "Grecia", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.06892000", + "longitude": "-84.31458000" + }, + { + "id": "21687", + "name": "Guatuso", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.66667000", + "longitude": "-84.83333000" + }, + { + "id": "21698", + "name": "La Fortuna", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.47089000", + "longitude": "-84.64535000" + }, + { + "id": "21705", + "name": "Los Chiles", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.86667000", + "longitude": "-84.66667000" + }, + { + "id": "21715", + "name": "Naranjo", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.11667000", + "longitude": "-84.40000000" + }, + { + "id": "21719", + "name": "Orotina", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "9.90000000", + "longitude": "-84.56667000" + }, + { + "id": "21722", + "name": "Palmares", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.03333000", + "longitude": "-84.43333000" + }, + { + "id": "21729", + "name": "Pital", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.45056000", + "longitude": "-84.27406000" + }, + { + "id": "21733", + "name": "Poás", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.08333000", + "longitude": "-84.23333000" + }, + { + "id": "21732", + "name": "Pocosol", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.36667000", + "longitude": "-84.61667000" + }, + { + "id": "21739", + "name": "Quesada", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.32381000", + "longitude": "-84.42714000" + }, + { + "id": "21741", + "name": "Río Segundo", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.24138000", + "longitude": "-84.27933000" + }, + { + "id": "21742", + "name": "Sabanilla", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.07404000", + "longitude": "-84.21551000" + }, + { + "id": "21747", + "name": "San Carlos", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.58333000", + "longitude": "-84.41667000" + }, + { + "id": "21755", + "name": "San José", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.95173000", + "longitude": "-85.13610000" + }, + { + "id": "21758", + "name": "San Juan", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.10248000", + "longitude": "-84.31694000" + }, + { + "id": "21761", + "name": "San Mateo", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "9.95000000", + "longitude": "-84.51667000" + }, + { + "id": "21766", + "name": "San Rafael", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.06403000", + "longitude": "-84.47281000" + }, + { + "id": "21770", + "name": "San Ramón", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.08718000", + "longitude": "-84.47044000" + }, + { + "id": "21777", + "name": "Santiago", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.02275000", + "longitude": "-84.44420000" + }, + { + "id": "21795", + "name": "Upala", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.85000000", + "longitude": "-85.16667000" + }, + { + "id": "21796", + "name": "Valverde Vega", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.18721000", + "longitude": "-84.30290000" + }, + { + "id": "21798", + "name": "Zarcero", + "state_id": 1215, + "state_code": "A", + "country_id": 53, + "country_code": "CR", + "latitude": "10.20000000", + "longitude": "-84.40000000" + }, + { + "id": "21641", + "name": "Abangares", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.21667000", + "longitude": "-85.00000000" + }, + { + "id": "21648", + "name": "Bagaces", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.50000000", + "longitude": "-85.25000000" + }, + { + "id": "21651", + "name": "Belén", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.40789000", + "longitude": "-85.58836000" + }, + { + "id": "21660", + "name": "Cañas", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.48005000", + "longitude": "-85.11349000" + }, + { + "id": "21657", + "name": "Carrillo", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.41667000", + "longitude": "-85.58333000" + }, + { + "id": "21680", + "name": "Fortuna", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.67384000", + "longitude": "-85.19984000" + }, + { + "id": "21691", + "name": "Hojancha", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "9.96667000", + "longitude": "-85.41667000" + }, + { + "id": "21695", + "name": "Juntas", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.28089000", + "longitude": "-84.95951000" + }, + { + "id": "21697", + "name": "La Cruz", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "11.00000000", + "longitude": "-85.58333000" + }, + { + "id": "21702", + "name": "Liberia", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.63504000", + "longitude": "-85.43772000" + }, + { + "id": "21714", + "name": "Nandayure", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "9.91667000", + "longitude": "-85.28333000" + }, + { + "id": "21716", + "name": "Nicoya", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.08333000", + "longitude": "-85.50000000" + }, + { + "id": "21776", + "name": "Santa Cruz", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.25000000", + "longitude": "-85.66667000" + }, + { + "id": "21781", + "name": "Sardinal", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.51674000", + "longitude": "-85.64748000" + }, + { + "id": "21784", + "name": "Sámara", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "9.88147000", + "longitude": "-85.52809000" + }, + { + "id": "21789", + "name": "Tilarán", + "state_id": 1209, + "state_code": "G", + "country_id": 53, + "country_code": "CR", + "latitude": "10.45878000", + "longitude": "-84.97513000" + }, + { + "id": "21799", + "name": "Ángeles", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "9.99591000", + "longitude": "-84.05126000" + }, + { + "id": "21649", + "name": "Barva", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.08333000", + "longitude": "-84.10000000" + }, + { + "id": "21652", + "name": "Belén", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "9.98333000", + "longitude": "-84.16667000" + }, + { + "id": "21679", + "name": "Flores", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.00000000", + "longitude": "-84.15000000" + }, + { + "id": "21690", + "name": "Heredia", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.00236000", + "longitude": "-84.11651000" + }, + { + "id": "21696", + "name": "La Asunción", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "9.97961000", + "longitude": "-84.17281000" + }, + { + "id": "21704", + "name": "Llorente", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "9.99844000", + "longitude": "-84.15448000" + }, + { + "id": "21708", + "name": "Mercedes", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.00695000", + "longitude": "-84.13396000" + }, + { + "id": "21746", + "name": "San Antonio", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "9.98333000", + "longitude": "-84.18333000" + }, + { + "id": "21750", + "name": "San Francisco", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "9.99299000", + "longitude": "-84.12934000" + }, + { + "id": "21753", + "name": "San Isidro", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.03333000", + "longitude": "-84.03333000" + }, + { + "id": "21754", + "name": "San Josecito", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.01667000", + "longitude": "-84.10000000" + }, + { + "id": "21763", + "name": "San Pablo", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.00000000", + "longitude": "-84.08333000" + }, + { + "id": "21767", + "name": "San Rafael", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.05000000", + "longitude": "-84.06667000" + }, + { + "id": "21775", + "name": "Santa Bárbara", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.08333000", + "longitude": "-84.15000000" + }, + { + "id": "21779", + "name": "Santo Domingo", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.06389000", + "longitude": "-84.15499000" + }, + { + "id": "21780", + "name": "Sarapiquí", + "state_id": 1212, + "state_code": "H", + "country_id": 53, + "country_code": "CR", + "latitude": "10.50000000", + "longitude": "-84.00000000" + }, + { + "id": "21650", + "name": "Batán", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "10.08354000", + "longitude": "-83.33413000" + }, + { + "id": "21688", + "name": "Guácimo", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "10.20000000", + "longitude": "-83.66667000" + }, + { + "id": "21689", + "name": "Guápiles", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "10.21682000", + "longitude": "-83.78483000" + }, + { + "id": "21703", + "name": "Limón", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "9.99074000", + "longitude": "-83.03596000" + }, + { + "id": "21706", + "name": "Matina", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "10.00000000", + "longitude": "-83.25000000" + }, + { + "id": "21730", + "name": "Pococí", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "10.50000000", + "longitude": "-83.63333000" + }, + { + "id": "21731", + "name": "Pocora", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "10.17185000", + "longitude": "-83.60439000" + }, + { + "id": "21740", + "name": "Roxana", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "10.26712000", + "longitude": "-83.75110000" + }, + { + "id": "21782", + "name": "Siquirres", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "10.11667000", + "longitude": "-83.50000000" + }, + { + "id": "21783", + "name": "Sixaola", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "9.52766000", + "longitude": "-82.62185000" + }, + { + "id": "21785", + "name": "Talamanca", + "state_id": 1213, + "state_code": "L", + "country_id": 53, + "country_code": "CR", + "latitude": "9.50000000", + "longitude": "-83.08333000" + }, + { + "id": "21645", + "name": "Alvarado", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.93333000", + "longitude": "-83.80000000" + }, + { + "id": "21659", + "name": "Cartago", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.86444000", + "longitude": "-83.91944000" + }, + { + "id": "21665", + "name": "Concepción", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.93333000", + "longitude": "-84.00000000" + }, + { + "id": "21668", + "name": "Cot", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.89449000", + "longitude": "-83.87302000" + }, + { + "id": "21675", + "name": "El Guarco", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.75000000", + "longitude": "-83.91667000" + }, + { + "id": "21694", + "name": "Jiménez", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.75000000", + "longitude": "-83.68333000" + }, + { + "id": "21699", + "name": "La Suiza", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.85065000", + "longitude": "-83.61690000" + }, + { + "id": "21700", + "name": "La Unión", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.91667000", + "longitude": "-83.98333000" + }, + { + "id": "21717", + "name": "Oreamuno", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "10.00000000", + "longitude": "-83.83333000" + }, + { + "id": "21718", + "name": "Orosí", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.79617000", + "longitude": "-83.85383000" + }, + { + "id": "21721", + "name": "Pacayas", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.80709000", + "longitude": "-84.04764000" + }, + { + "id": "21725", + "name": "Paraíso", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.75000000", + "longitude": "-83.80000000" + }, + { + "id": "21728", + "name": "Pejibaye", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.81135000", + "longitude": "-83.70336000" + }, + { + "id": "21748", + "name": "San Diego", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.89898000", + "longitude": "-84.00287000" + }, + { + "id": "21790", + "name": "Tobosi", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.83837000", + "longitude": "-83.98391000" + }, + { + "id": "21791", + "name": "Tres Ríos", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.90644000", + "longitude": "-83.98760000" + }, + { + "id": "21792", + "name": "Tucurrique", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.85336000", + "longitude": "-83.72273000" + }, + { + "id": "21793", + "name": "Turrialba", + "state_id": 1211, + "state_code": "C", + "country_id": 53, + "country_code": "CR", + "latitude": "9.80000000", + "longitude": "-83.53333000" + }, + { + "id": "21654", + "name": "Buenos Aires", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "9.11667000", + "longitude": "-83.25000000" + }, + { + "id": "21656", + "name": "Canoas", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "8.53305000", + "longitude": "-82.83844000" + }, + { + "id": "21661", + "name": "Chacarita", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "9.98424000", + "longitude": "-84.77892000" + }, + { + "id": "21662", + "name": "Ciudad Cortés", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "8.95988000", + "longitude": "-83.52381000" + }, + { + "id": "21666", + "name": "Corredor", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "8.64002000", + "longitude": "-82.94600000" + }, + { + "id": "21667", + "name": "Corredores", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "8.58333000", + "longitude": "-82.91667000" + }, + { + "id": "21669", + "name": "Coto Brus", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "8.88333000", + "longitude": "-82.96667000" + }, + { + "id": "21677", + "name": "Esparza", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "10.00000000", + "longitude": "-84.66667000" + }, + { + "id": "21681", + "name": "Garabito", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "9.61903000", + "longitude": "-84.62013000" + }, + { + "id": "21683", + "name": "Golfito", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "8.60000000", + "longitude": "-83.12000000" + }, + { + "id": "21693", + "name": "Jacó", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "9.61497000", + "longitude": "-84.62975000" + }, + { + "id": "21709", + "name": "Miramar", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "10.09250000", + "longitude": "-84.72978000" + }, + { + "id": "21711", + "name": "Montes de Oro", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "10.10000000", + "longitude": "-84.75000000" + }, + { + "id": "21720", + "name": "Osa", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "8.83333000", + "longitude": "-83.50000000" + }, + { + "id": "21724", + "name": "Paquera", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "9.82005000", + "longitude": "-84.93513000" + }, + { + "id": "21726", + "name": "Parrita", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "9.55000000", + "longitude": "-84.33333000" + }, + { + "id": "21734", + "name": "Puntarenas", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "9.97625000", + "longitude": "-84.83836000" + }, + { + "id": "21738", + "name": "Quepos", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "9.43187000", + "longitude": "-84.16141000" + }, + { + "id": "21773", + "name": "San Vito", + "state_id": 1210, + "state_code": "P", + "country_id": 53, + "country_code": "CR", + "latitude": "8.82079000", + "longitude": "-82.97092000" + }, + { + "id": "21642", + "name": "Acosta", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.80000000", + "longitude": "-84.20000000" + }, + { + "id": "21644", + "name": "Alajuelita", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.90000000", + "longitude": "-84.10000000" + }, + { + "id": "21646", + "name": "Aserrí", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.86667000", + "longitude": "-84.10000000" + }, + { + "id": "21655", + "name": "Calle Blancos", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.95000000", + "longitude": "-84.06667000" + }, + { + "id": "21664", + "name": "Colón", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.91491000", + "longitude": "-84.24170000" + }, + { + "id": "21663", + "name": "Colima", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.95091000", + "longitude": "-84.08503000" + }, + { + "id": "21670", + "name": "Curridabat", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.91667000", + "longitude": "-84.03333000" + }, + { + "id": "21671", + "name": "Daniel Flores", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.33554000", + "longitude": "-83.66940000" + }, + { + "id": "21673", + "name": "Desamparados", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.90000000", + "longitude": "-84.06667000" + }, + { + "id": "21674", + "name": "Dota", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.65000000", + "longitude": "-83.95000000" + }, + { + "id": "21676", + "name": "Escazú", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.93333000", + "longitude": "-84.13333000" + }, + { + "id": "21682", + "name": "Goicoechea", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.94848000", + "longitude": "-84.06365000" + }, + { + "id": "21684", + "name": "Granadilla", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.93491000", + "longitude": "-84.01688000" + }, + { + "id": "21686", + "name": "Guadalupe", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.94805000", + "longitude": "-84.05665000" + }, + { + "id": "21692", + "name": "Ipís", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.96745000", + "longitude": "-84.01326000" + }, + { + "id": "21701", + "name": "León Cortés", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.68300000", + "longitude": "-84.04781000" + }, + { + "id": "21707", + "name": "Mercedes", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.26270000", + "longitude": "-83.58202000" + }, + { + "id": "21710", + "name": "Montes de Oca", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.93960000", + "longitude": "-84.03013000" + }, + { + "id": "21712", + "name": "Mora", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.91667000", + "longitude": "-84.25000000" + }, + { + "id": "21713", + "name": "Moravia", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "10.04000000", + "longitude": "-84.00000000" + }, + { + "id": "21723", + "name": "Palmichal", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.83778000", + "longitude": "-84.20478000" + }, + { + "id": "21727", + "name": "Patarrá", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.88071000", + "longitude": "-84.03501000" + }, + { + "id": "21737", + "name": "Pérez Zeledón", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.35473000", + "longitude": "-83.63484000" + }, + { + "id": "21735", + "name": "Puriscal", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.75000000", + "longitude": "-84.41667000" + }, + { + "id": "21736", + "name": "Purral", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.95808000", + "longitude": "-84.03050000" + }, + { + "id": "21743", + "name": "Sabanilla", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.94522000", + "longitude": "-84.03927000" + }, + { + "id": "21744", + "name": "Salitral", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.91163000", + "longitude": "-84.17835000" + }, + { + "id": "21745", + "name": "Salitrillos", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.85259000", + "longitude": "-84.09062000" + }, + { + "id": "21749", + "name": "San Felipe", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.90488000", + "longitude": "-84.10551000" + }, + { + "id": "21751", + "name": "San Ignacio", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.79853000", + "longitude": "-84.16173000" + }, + { + "id": "21752", + "name": "San Isidro", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.36740000", + "longitude": "-83.69713000" + }, + { + "id": "21756", + "name": "San José", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.93333000", + "longitude": "-84.08333000" + }, + { + "id": "21757", + "name": "San Juan", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.95974000", + "longitude": "-84.08165000" + }, + { + "id": "21759", + "name": "San Juan de Dios", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.87730000", + "longitude": "-84.08470000" + }, + { + "id": "21760", + "name": "San Marcos", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.66010000", + "longitude": "-84.02026000" + }, + { + "id": "21762", + "name": "San Miguel", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.87121000", + "longitude": "-84.06084000" + }, + { + "id": "21764", + "name": "San Pedro", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.92829000", + "longitude": "-84.05074000" + }, + { + "id": "21765", + "name": "San Rafael", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.92787000", + "longitude": "-84.13722000" + }, + { + "id": "21768", + "name": "San Rafael Abajo", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.83100000", + "longitude": "-84.29008000" + }, + { + "id": "21769", + "name": "San Rafael Arriba", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.87556000", + "longitude": "-84.07661000" + }, + { + "id": "21771", + "name": "San Vicente", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.96016000", + "longitude": "-84.04762000" + }, + { + "id": "21772", + "name": "San Vicente de Moravia", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.96164000", + "longitude": "-84.04880000" + }, + { + "id": "21774", + "name": "Santa Ana", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.93260000", + "longitude": "-84.18255000" + }, + { + "id": "21778", + "name": "Santiago", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.84636000", + "longitude": "-84.31428000" + }, + { + "id": "21786", + "name": "Tarrazú", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.65965000", + "longitude": "-84.02138000" + }, + { + "id": "21787", + "name": "Tejar", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.74622000", + "longitude": "-84.23368000" + }, + { + "id": "21788", + "name": "Tibás", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.96667000", + "longitude": "-84.08333000" + }, + { + "id": "21794", + "name": "Turrubares", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "9.75000000", + "longitude": "-84.50000000" + }, + { + "id": "21797", + "name": "Vázquez de Coronado", + "state_id": 1214, + "state_code": "SJ", + "country_id": 53, + "country_code": "CR", + "latitude": "10.06000000", + "longitude": "-84.00000000" + }, + { + "id": "18860", + "name": "Abidjan", + "state_id": 2634, + "state_code": "AB", + "country_id": 54, + "country_code": "CI", + "latitude": "5.30966000", + "longitude": "-4.01266000" + }, + { + "id": "18861", + "name": "Abobo", + "state_id": 2634, + "state_code": "AB", + "country_id": 54, + "country_code": "CI", + "latitude": "5.41613000", + "longitude": "-4.01590000" + }, + { + "id": "18870", + "name": "Anyama", + "state_id": 2634, + "state_code": "AB", + "country_id": 54, + "country_code": "CI", + "latitude": "5.49462000", + "longitude": "-4.05183000" + }, + { + "id": "18876", + "name": "Bingerville", + "state_id": 2634, + "state_code": "AB", + "country_id": 54, + "country_code": "CI", + "latitude": "5.35581000", + "longitude": "-3.88537000" + }, + { + "id": "18901", + "name": "Gbôklé", + "state_id": 2643, + "state_code": "BS", + "country_id": 54, + "country_code": "CI", + "latitude": "4.95712000", + "longitude": "-6.09372000" + }, + { + "id": "18924", + "name": "Nawa", + "state_id": 2643, + "state_code": "BS", + "country_id": 54, + "country_code": "CI", + "latitude": "5.80112000", + "longitude": "-6.60313000" + }, + { + "id": "18928", + "name": "San-Pédro", + "state_id": 2643, + "state_code": "BS", + "country_id": 54, + "country_code": "CI", + "latitude": "4.76768000", + "longitude": "-6.65033000" + }, + { + "id": "18929", + "name": "Sassandra", + "state_id": 2643, + "state_code": "BS", + "country_id": 54, + "country_code": "CI", + "latitude": "4.95384000", + "longitude": "-6.08531000" + }, + { + "id": "18933", + "name": "Tabou", + "state_id": 2643, + "state_code": "BS", + "country_id": 54, + "country_code": "CI", + "latitude": "4.42295000", + "longitude": "-7.35280000" + }, + { + "id": "18859", + "name": "Abengourou", + "state_id": 2654, + "state_code": "CM", + "country_id": 54, + "country_code": "CI", + "latitude": "6.72972000", + "longitude": "-3.49639000" + }, + { + "id": "18862", + "name": "Aboisso", + "state_id": 2654, + "state_code": "CM", + "country_id": 54, + "country_code": "CI", + "latitude": "5.46779000", + "longitude": "-3.20711000" + }, + { + "id": "18863", + "name": "Adiaké", + "state_id": 2654, + "state_code": "CM", + "country_id": 54, + "country_code": "CI", + "latitude": "5.28634000", + "longitude": "-3.30403000" + }, + { + "id": "18867", + "name": "Agnibilékrou", + "state_id": 2654, + "state_code": "CM", + "country_id": 54, + "country_code": "CI", + "latitude": "7.13113000", + "longitude": "-3.20415000" + }, + { + "id": "18872", + "name": "Ayamé", + "state_id": 2654, + "state_code": "CM", + "country_id": 54, + "country_code": "CI", + "latitude": "5.60520000", + "longitude": "-3.15709000" + }, + { + "id": "18880", + "name": "Bonoua", + "state_id": 2654, + "state_code": "CM", + "country_id": 54, + "country_code": "CI", + "latitude": "5.27247000", + "longitude": "-3.59625000" + }, + { + "id": "18903", + "name": "Grand-Bassam", + "state_id": 2654, + "state_code": "CM", + "country_id": 54, + "country_code": "CI", + "latitude": "5.21180000", + "longitude": "-3.73884000" + }, + { + "id": "18913", + "name": "Indénié-Djuablin", + "state_id": 2654, + "state_code": "CM", + "country_id": 54, + "country_code": "CI", + "latitude": "6.74434000", + "longitude": "-3.49400000" + }, + { + "id": "18931", + "name": "Sud-Comoé", + "state_id": 2654, + "state_code": "CM", + "country_id": 54, + "country_code": "CI", + "latitude": "5.49961000", + "longitude": "-3.24080000" + }, + { + "id": "18898", + "name": "Folon", + "state_id": 2644, + "state_code": "DN", + "country_id": 54, + "country_code": "CI", + "latitude": "9.81241000", + "longitude": "-7.51894000" + }, + { + "id": "18915", + "name": "Kabadougou", + "state_id": 2644, + "state_code": "DN", + "country_id": 54, + "country_code": "CI", + "latitude": "9.60571000", + "longitude": "-7.43774000" + }, + { + "id": "18925", + "name": "Odienné", + "state_id": 2644, + "state_code": "DN", + "country_id": 54, + "country_code": "CI", + "latitude": "9.50511000", + "longitude": "-7.56433000" + }, + { + "id": "18874", + "name": "Bangolo", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "7.01232000", + "longitude": "-7.48639000" + }, + { + "id": "18875", + "name": "Biankouma", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "7.73909000", + "longitude": "-7.61377000" + }, + { + "id": "18889", + "name": "Cavally", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "6.56343000", + "longitude": "-7.92526000" + }, + { + "id": "18893", + "name": "Danané", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "7.25957000", + "longitude": "-8.15498000" + }, + { + "id": "18897", + "name": "Duekoué", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "6.74202000", + "longitude": "-7.34918000" + }, + { + "id": "18908", + "name": "Guémon", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "7.09300000", + "longitude": "-7.17785000" + }, + { + "id": "18907", + "name": "Guiglo", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "6.54368000", + "longitude": "-7.49350000" + }, + { + "id": "18919", + "name": "Man", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "7.41251000", + "longitude": "-7.55383000" + }, + { + "id": "18936", + "name": "Tonkpi", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "7.56785000", + "longitude": "-7.60941000" + }, + { + "id": "18938", + "name": "Toulépleu Gueré", + "state_id": 2645, + "state_code": "06", + "country_id": 54, + "country_code": "CI", + "latitude": "6.57395000", + "longitude": "-8.42592000" + }, + { + "id": "18896", + "name": "Divo", + "state_id": 2651, + "state_code": "GD", + "country_id": 54, + "country_code": "CI", + "latitude": "5.83739000", + "longitude": "-5.35723000" + }, + { + "id": "18899", + "name": "Gagnoa", + "state_id": 2651, + "state_code": "GD", + "country_id": 54, + "country_code": "CI", + "latitude": "6.13193000", + "longitude": "-5.95060000" + }, + { + "id": "18909", + "name": "Gôh", + "state_id": 2651, + "state_code": "GD", + "country_id": 54, + "country_code": "CI", + "latitude": "6.14459000", + "longitude": "-5.92644000" + }, + { + "id": "18906", + "name": "Guibéroua", + "state_id": 2651, + "state_code": "GD", + "country_id": 54, + "country_code": "CI", + "latitude": "6.23869000", + "longitude": "-6.17147000" + }, + { + "id": "18917", + "name": "Lakota", + "state_id": 2651, + "state_code": "GD", + "country_id": 54, + "country_code": "CI", + "latitude": "5.84752000", + "longitude": "-5.68200000" + }, + { + "id": "18918", + "name": "Lôh-Djiboua", + "state_id": 2651, + "state_code": "GD", + "country_id": 54, + "country_code": "CI", + "latitude": "5.82483000", + "longitude": "-5.47668000" + }, + { + "id": "18926", + "name": "Oumé", + "state_id": 2651, + "state_code": "GD", + "country_id": 54, + "country_code": "CI", + "latitude": "6.38309000", + "longitude": "-5.41759000" + }, + { + "id": "18871", + "name": "Arrah", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "6.67342000", + "longitude": "-3.96938000" + }, + { + "id": "18886", + "name": "Bélier", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "7.02582000", + "longitude": "-5.06744000" + }, + { + "id": "18877", + "name": "Bocanda", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "7.06264000", + "longitude": "-4.49948000" + }, + { + "id": "18879", + "name": "Bongouanou", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "6.65175000", + "longitude": "-4.20406000" + }, + { + "id": "18894", + "name": "Daoukro", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "7.05910000", + "longitude": "-3.96310000" + }, + { + "id": "18895", + "name": "Dimbokro", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "6.64678000", + "longitude": "-4.70519000" + }, + { + "id": "18912", + "name": "Iffou", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "7.11509000", + "longitude": "-3.95027000" + }, + { + "id": "18922", + "name": "Moronou", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "6.66830000", + "longitude": "-4.13155000" + }, + { + "id": "18923", + "name": "N'Zi", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "6.82803000", + "longitude": "-4.58130000" + }, + { + "id": "18939", + "name": "Toumodi", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "6.55799000", + "longitude": "-5.01769000" + }, + { + "id": "18942", + "name": "Yamoussoukro", + "state_id": 2640, + "state_code": "07", + "country_id": 54, + "country_code": "CI", + "latitude": "6.82055000", + "longitude": "-5.27674000" + }, + { + "id": "18864", + "name": "Adzopé", + "state_id": 2639, + "state_code": "01", + "country_id": 54, + "country_code": "CI", + "latitude": "6.10694000", + "longitude": "-3.86194000" + }, + { + "id": "18865", + "name": "Affery", + "state_id": 2639, + "state_code": "01", + "country_id": 54, + "country_code": "CI", + "latitude": "6.32035000", + "longitude": "-3.95235000" + }, + { + "id": "18866", + "name": "Agboville", + "state_id": 2639, + "state_code": "01", + "country_id": 54, + "country_code": "CI", + "latitude": "5.92801000", + "longitude": "-4.21319000" + }, + { + "id": "18868", + "name": "Agnéby-Tiassa", + "state_id": 2639, + "state_code": "01", + "country_id": 54, + "country_code": "CI", + "latitude": "5.79488000", + "longitude": "-4.37187000" + }, + { + "id": "18869", + "name": "Akoupé", + "state_id": 2639, + "state_code": "01", + "country_id": 54, + "country_code": "CI", + "latitude": "6.38423000", + "longitude": "-3.88759000" + }, + { + "id": "18891", + "name": "Dabou", + "state_id": 2639, + "state_code": "01", + "country_id": 54, + "country_code": "CI", + "latitude": "5.32556000", + "longitude": "-4.37685000" + }, + { + "id": "18904", + "name": "Grand-Lahou", + "state_id": 2639, + "state_code": "01", + "country_id": 54, + "country_code": "CI", + "latitude": "5.25068000", + "longitude": "-5.00333000" + }, + { + "id": "18905", + "name": "Grands-Ponts", + "state_id": 2639, + "state_code": "01", + "country_id": 54, + "country_code": "CI", + "latitude": "5.30487000", + "longitude": "-4.39247000" + }, + { + "id": "18935", + "name": "Tiassalé", + "state_id": 2639, + "state_code": "01", + "country_id": 54, + "country_code": "CI", + "latitude": "5.89839000", + "longitude": "-4.82293000" + }, + { + "id": "18882", + "name": "Bouaflé", + "state_id": 2648, + "state_code": "SM", + "country_id": 54, + "country_code": "CI", + "latitude": "6.99041000", + "longitude": "-5.74420000" + }, + { + "id": "18892", + "name": "Daloa", + "state_id": 2648, + "state_code": "SM", + "country_id": 54, + "country_code": "CI", + "latitude": "6.87735000", + "longitude": "-6.45022000" + }, + { + "id": "18911", + "name": "Haut-Sassandra", + "state_id": 2648, + "state_code": "SM", + "country_id": 54, + "country_code": "CI", + "latitude": "6.66961000", + "longitude": "-6.50116000" + }, + { + "id": "18914", + "name": "Issia", + "state_id": 2648, + "state_code": "SM", + "country_id": 54, + "country_code": "CI", + "latitude": "6.49224000", + "longitude": "-6.58558000" + }, + { + "id": "18921", + "name": "Marahoué", + "state_id": 2648, + "state_code": "SM", + "country_id": 54, + "country_code": "CI", + "latitude": "7.03252000", + "longitude": "-5.80215000" + }, + { + "id": "18940", + "name": "Vavoua", + "state_id": 2648, + "state_code": "SM", + "country_id": 54, + "country_code": "CI", + "latitude": "7.38194000", + "longitude": "-6.47778000" + }, + { + "id": "18943", + "name": "Zuénoula", + "state_id": 2648, + "state_code": "SM", + "country_id": 54, + "country_code": "CI", + "latitude": "7.43027000", + "longitude": "-6.05054000" + }, + { + "id": "18887", + "name": "Béoumi", + "state_id": 2647, + "state_code": "04", + "country_id": 54, + "country_code": "CI", + "latitude": "7.67395000", + "longitude": "-5.58085000" + }, + { + "id": "18881", + "name": "Botro", + "state_id": 2647, + "state_code": "04", + "country_id": 54, + "country_code": "CI", + "latitude": "7.85249000", + "longitude": "-5.31063000" + }, + { + "id": "18883", + "name": "Bouaké", + "state_id": 2647, + "state_code": "04", + "country_id": 54, + "country_code": "CI", + "latitude": "7.69385000", + "longitude": "-5.03031000" + }, + { + "id": "18890", + "name": "Dabakala", + "state_id": 2647, + "state_code": "04", + "country_id": 54, + "country_code": "CI", + "latitude": "8.36321000", + "longitude": "-4.42863000" + }, + { + "id": "18900", + "name": "Gbêkê", + "state_id": 2647, + "state_code": "04", + "country_id": 54, + "country_code": "CI", + "latitude": "7.70271000", + "longitude": "-5.28511000" + }, + { + "id": "18910", + "name": "Hambol", + "state_id": 2647, + "state_code": "04", + "country_id": 54, + "country_code": "CI", + "latitude": "8.30368000", + "longitude": "-5.15396000" + }, + { + "id": "18916", + "name": "Katiola", + "state_id": 2647, + "state_code": "04", + "country_id": 54, + "country_code": "CI", + "latitude": "8.13728000", + "longitude": "-5.10095000" + }, + { + "id": "18927", + "name": "Sakassou", + "state_id": 2647, + "state_code": "04", + "country_id": 54, + "country_code": "CI", + "latitude": "7.45462000", + "longitude": "-5.29263000" + }, + { + "id": "18873", + "name": "Bafing", + "state_id": 2650, + "state_code": "WR", + "country_id": 54, + "country_code": "CI", + "latitude": "8.40611000", + "longitude": "-7.58048000" + }, + { + "id": "18888", + "name": "Béré", + "state_id": 2650, + "state_code": "WR", + "country_id": 54, + "country_code": "CI", + "latitude": "8.18952000", + "longitude": "-6.17157000" + }, + { + "id": "18920", + "name": "Mankono", + "state_id": 2650, + "state_code": "WR", + "country_id": 54, + "country_code": "CI", + "latitude": "8.05861000", + "longitude": "-6.18972000" + }, + { + "id": "18932", + "name": "Séguéla", + "state_id": 2650, + "state_code": "WR", + "country_id": 54, + "country_code": "CI", + "latitude": "7.96111000", + "longitude": "-6.67306000" + }, + { + "id": "18937", + "name": "Touba", + "state_id": 2650, + "state_code": "WR", + "country_id": 54, + "country_code": "CI", + "latitude": "8.28333000", + "longitude": "-7.68333000" + }, + { + "id": "18941", + "name": "Worodougou", + "state_id": 2650, + "state_code": "WR", + "country_id": 54, + "country_code": "CI", + "latitude": "8.16482000", + "longitude": "-6.66595000" + }, + { + "id": "18878", + "name": "Bondoukou", + "state_id": 2641, + "state_code": "ZZ", + "country_id": 54, + "country_code": "CI", + "latitude": "8.04020000", + "longitude": "-2.80003000" + }, + { + "id": "18884", + "name": "Bouna", + "state_id": 2641, + "state_code": "ZZ", + "country_id": 54, + "country_code": "CI", + "latitude": "9.26927000", + "longitude": "-2.99510000" + }, + { + "id": "18885", + "name": "Bounkani", + "state_id": 2641, + "state_code": "ZZ", + "country_id": 54, + "country_code": "CI", + "latitude": "9.47841000", + "longitude": "-3.31238000" + }, + { + "id": "18902", + "name": "Gontougo", + "state_id": 2641, + "state_code": "ZZ", + "country_id": 54, + "country_code": "CI", + "latitude": "7.87132000", + "longitude": "-3.07068000" + }, + { + "id": "18930", + "name": "Sinfra", + "state_id": 2641, + "state_code": "ZZ", + "country_id": 54, + "country_code": "CI", + "latitude": "6.62103000", + "longitude": "-5.91144000" + }, + { + "id": "18934", + "name": "Tanda", + "state_id": 2641, + "state_code": "ZZ", + "country_id": 54, + "country_code": "CI", + "latitude": "7.80335000", + "longitude": "-3.16832000" + }, + { + "id": "55030", + "name": "Šibenik", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.72722000", + "longitude": "15.90583000" + }, + { + "id": "54424", + "name": "Brodarica", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.68000000", + "longitude": "15.91972000" + }, + { + "id": "54468", + "name": "Drniš", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.86250000", + "longitude": "16.15556000" + }, + { + "id": "54572", + "name": "Grad Šibenik", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.73576000", + "longitude": "15.89602000" + }, + { + "id": "54512", + "name": "Grad Drniš", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.83333000", + "longitude": "16.16667000" + }, + { + "id": "54646", + "name": "Kistanje", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.98278000", + "longitude": "15.96500000" + }, + { + "id": "54652", + "name": "Knin", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "44.04063000", + "longitude": "16.19662000" + }, + { + "id": "54745", + "name": "Murter", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.82043000", + "longitude": "15.58988000" + }, + { + "id": "54746", + "name": "Murter-Kornati", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.80959000", + "longitude": "15.60024000" + }, + { + "id": "54808", + "name": "Pirovac", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.81917000", + "longitude": "15.67278000" + }, + { + "id": "54839", + "name": "Primošten", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.58632000", + "longitude": "15.92302000" + }, + { + "id": "54843", + "name": "Promina", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.95798000", + "longitude": "16.09737000" + }, + { + "id": "54864", + "name": "Rogoznica", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.52472000", + "longitude": "15.97000000" + }, + { + "id": "54865", + "name": "Rogoznica Općina", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.53620000", + "longitude": "15.97086000" + }, + { + "id": "54894", + "name": "Skradin", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.82028000", + "longitude": "15.92361000" + }, + { + "id": "54936", + "name": "Tisno", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.80417000", + "longitude": "15.64333000" + }, + { + "id": "54940", + "name": "Tribunj", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.75547000", + "longitude": "15.74444000" + }, + { + "id": "54981", + "name": "Vodice", + "state_id": 730, + "state_code": "15", + "country_id": 55, + "country_code": "HR", + "latitude": "43.76083000", + "longitude": "15.78278000" + }, + { + "id": "55025", + "name": "Đulovac", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66588000", + "longitude": "17.42981000" + }, + { + "id": "55028", + "name": "Šandrovac", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.90556000", + "longitude": "17.02111000" + }, + { + "id": "55038", + "name": "Ždralovi", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.87639000", + "longitude": "16.87500000" + }, + { + "id": "55017", + "name": "Čazma", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.74818000", + "longitude": "16.61390000" + }, + { + "id": "54404", + "name": "Bjelovar", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.89861000", + "longitude": "16.84889000" + }, + { + "id": "54418", + "name": "Brezovac", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.86750000", + "longitude": "16.84083000" + }, + { + "id": "54449", + "name": "Daruvar", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.59056000", + "longitude": "17.22500000" + }, + { + "id": "54453", + "name": "Dežanovac", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.57056000", + "longitude": "17.08667000" + }, + { + "id": "54489", + "name": "Garešnica", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.57444000", + "longitude": "16.94139000" + }, + { + "id": "54571", + "name": "Grad Čazma", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.75000000", + "longitude": "16.61667000" + }, + { + "id": "54505", + "name": "Grad Bjelovar", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.90172000", + "longitude": "16.84522000" + }, + { + "id": "54508", + "name": "Grad Daruvar", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.60000000", + "longitude": "17.23333000" + }, + { + "id": "54515", + "name": "Grad Garešnica", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.56667000", + "longitude": "16.93333000" + }, + { + "id": "54517", + "name": "Grad Grubišno Polje", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70000000", + "longitude": "17.16667000" + }, + { + "id": "54588", + "name": "Grubišno Polje", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70214000", + "longitude": "17.17268000" + }, + { + "id": "54589", + "name": "Gudovac", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.88028000", + "longitude": "16.78083000" + }, + { + "id": "54593", + "name": "Hercegovac", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.65861000", + "longitude": "17.01361000" + }, + { + "id": "54607", + "name": "Ivanska", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.77889000", + "longitude": "16.81194000" + }, + { + "id": "54630", + "name": "Kapela", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.98543000", + "longitude": "16.85174000" + }, + { + "id": "54658", + "name": "Končanica", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.63611000", + "longitude": "17.16639000" + }, + { + "id": "54831", + "name": "Predavac", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.93583000", + "longitude": "16.78333000" + }, + { + "id": "54869", + "name": "Rovišće", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.94472000", + "longitude": "16.73500000" + }, + { + "id": "54886", + "name": "Severin", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.84152000", + "longitude": "16.96950000" + }, + { + "id": "54891", + "name": "Sirač", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.52333000", + "longitude": "17.25500000" + }, + { + "id": "54960", + "name": "Velika Pisanica", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.80160000", + "longitude": "17.06551000" + }, + { + "id": "54962", + "name": "Veliki Grđevac", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "45.75028000", + "longitude": "17.04750000" + }, + { + "id": "55013", + "name": "Zrinski Topolovac", + "state_id": 734, + "state_code": "07", + "country_id": 55, + "country_code": "HR", + "latitude": "46.02120000", + "longitude": "16.75509000" + }, + { + "id": "54387", + "name": "Batrina", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.18944000", + "longitude": "17.66639000" + }, + { + "id": "54425", + "name": "Brodski Varoš", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.18111000", + "longitude": "17.97861000" + }, + { + "id": "54434", + "name": "Bukovlje", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.18528000", + "longitude": "18.07000000" + }, + { + "id": "54441", + "name": "Cernik", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.28861000", + "longitude": "17.38194000" + }, + { + "id": "54450", + "name": "Davor", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.11528000", + "longitude": "17.51639000" + }, + { + "id": "54460", + "name": "Donji Andrijevci", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.18833000", + "longitude": "18.29972000" + }, + { + "id": "54490", + "name": "Garčin", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.18278000", + "longitude": "18.18306000" + }, + { + "id": "54498", + "name": "Gornji Bogićevci", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.25572000", + "longitude": "17.23454000" + }, + { + "id": "54534", + "name": "Grad Nova Gradiška", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.26667000", + "longitude": "17.40000000" + }, + { + "id": "54551", + "name": "Grad Slavonski Brod", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.16267000", + "longitude": "18.03062000" + }, + { + "id": "54590", + "name": "Gundinci", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.15833000", + "longitude": "18.49139000" + }, + { + "id": "54661", + "name": "Korenica", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.22472000", + "longitude": "18.16556000" + }, + { + "id": "54672", + "name": "Kruševica", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.07750000", + "longitude": "18.48278000" + }, + { + "id": "54708", + "name": "Lužani", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.16806000", + "longitude": "17.70694000" + }, + { + "id": "54757", + "name": "Nova Gradiška", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.25500000", + "longitude": "17.38306000" + }, + { + "id": "54774", + "name": "Okučani", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.26034000", + "longitude": "17.19925000" + }, + { + "id": "54778", + "name": "Oprisavci", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.15111000", + "longitude": "18.22972000" + }, + { + "id": "54790", + "name": "Oriovac", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.16611000", + "longitude": "17.76000000" + }, + { + "id": "54819", + "name": "Podvinje", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.19028000", + "longitude": "18.02694000" + }, + { + "id": "54862", + "name": "Rešetari", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.26232000", + "longitude": "17.42346000" + }, + { + "id": "54874", + "name": "Ruščica", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.14667000", + "longitude": "18.07944000" + }, + { + "id": "54887", + "name": "Sibinj", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.19167000", + "longitude": "17.90806000" + }, + { + "id": "54889", + "name": "Sikirevci", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.10889000", + "longitude": "18.46444000" + }, + { + "id": "54897", + "name": "Slavonski Brod", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.16028000", + "longitude": "18.01556000" + }, + { + "id": "54899", + "name": "Slobodnica", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.16222000", + "longitude": "17.93278000" + }, + { + "id": "54910", + "name": "Stari Perkovci", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.21750000", + "longitude": "18.34861000" + }, + { + "id": "54957", + "name": "Velika Kopanica", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.15611000", + "longitude": "18.39306000" + }, + { + "id": "54995", + "name": "Vrpolje", + "state_id": 737, + "state_code": "12", + "country_id": 55, + "country_code": "HR", + "latitude": "45.21056000", + "longitude": "18.40556000" + }, + { + "id": "55041", + "name": "Žrnovo", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.95111000", + "longitude": "17.11417000" + }, + { + "id": "55042", + "name": "Župa dubrovačka", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.62683000", + "longitude": "18.19475000" + }, + { + "id": "55022", + "name": "Čibača", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.62889000", + "longitude": "18.17111000" + }, + { + "id": "54437", + "name": "Cavtat", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.58111000", + "longitude": "18.21806000" + }, + { + "id": "54471", + "name": "Dubrovačko primorje", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.78988000", + "longitude": "17.86240000" + }, + { + "id": "54513", + "name": "Grad Dubrovnik", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.64861000", + "longitude": "18.09397000" + }, + { + "id": "54525", + "name": "Grad Korčula", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.95693000", + "longitude": "17.13181000" + }, + { + "id": "54544", + "name": "Grad Ploče", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "43.06667000", + "longitude": "17.43333000" + }, + { + "id": "54653", + "name": "Komin", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "43.04083000", + "longitude": "17.53694000" + }, + { + "id": "54656", + "name": "Konavle", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.54010000", + "longitude": "18.33944000" + }, + { + "id": "54662", + "name": "Korčula", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.96038000", + "longitude": "17.13525000" + }, + { + "id": "54684", + "name": "Lastovo", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.76757000", + "longitude": "16.89708000" + }, + { + "id": "54704", + "name": "Lumbarda", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.92278000", + "longitude": "17.16722000" + }, + { + "id": "54728", + "name": "Metković", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "43.05417000", + "longitude": "17.64833000" + }, + { + "id": "54736", + "name": "Mljet", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.74439000", + "longitude": "17.53645000" + }, + { + "id": "54737", + "name": "Mokošica", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.67556000", + "longitude": "18.09028000" + }, + { + "id": "54785", + "name": "Općina Lastovo", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.75000000", + "longitude": "16.90000000" + }, + { + "id": "54780", + "name": "Opuzen", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "43.01528000", + "longitude": "17.56556000" + }, + { + "id": "54787", + "name": "Orebić", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.98556000", + "longitude": "17.17472000" + }, + { + "id": "54813", + "name": "Podgora", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.84861000", + "longitude": "17.83639000" + }, + { + "id": "54821", + "name": "Pojezerje", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "43.15741000", + "longitude": "17.45152000" + }, + { + "id": "54898", + "name": "Slivno", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.95864000", + "longitude": "17.54431000" + }, + { + "id": "54900", + "name": "Smokvica", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.93056000", + "longitude": "16.89639000" + }, + { + "id": "54914", + "name": "Ston", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.83861000", + "longitude": "17.69639000" + }, + { + "id": "54954", + "name": "Vela Luka", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "42.96333000", + "longitude": "16.72250000" + }, + { + "id": "55007", + "name": "Zažablje", + "state_id": 728, + "state_code": "19", + "country_id": 55, + "country_code": "HR", + "latitude": "43.01113000", + "longitude": "17.65683000" + }, + { + "id": "55039", + "name": "Žminj", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.14278000", + "longitude": "13.90889000" + }, + { + "id": "54384", + "name": "Bale", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.04056000", + "longitude": "13.78361000" + }, + { + "id": "54385", + "name": "Bale-Valle", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.04089000", + "longitude": "13.78565000" + }, + { + "id": "54426", + "name": "Brtonigla", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.38139000", + "longitude": "13.62944000" + }, + { + "id": "54427", + "name": "Brtonigla-Verteneglio", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.37918000", + "longitude": "13.62554000" + }, + { + "id": "54432", + "name": "Buje", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.41000000", + "longitude": "13.66194000" + }, + { + "id": "54433", + "name": "Buje-Buie", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.40790000", + "longitude": "13.65914000" + }, + { + "id": "54436", + "name": "Buzet", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.40944000", + "longitude": "13.96667000" + }, + { + "id": "54479", + "name": "Fažana", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.92750000", + "longitude": "13.80361000" + }, + { + "id": "54480", + "name": "Fažana-Fasana", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.92822000", + "longitude": "13.80548000" + }, + { + "id": "54483", + "name": "Funtana", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.17472000", + "longitude": "13.60500000" + }, + { + "id": "54484", + "name": "Funtana-Fontane", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.17483000", + "longitude": "13.60627000" + }, + { + "id": "54487", + "name": "Galižana", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.93167000", + "longitude": "13.86861000" + }, + { + "id": "54506", + "name": "Grad Buzet", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.41667000", + "longitude": "13.96667000" + }, + { + "id": "54530", + "name": "Grad Labin", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.08333000", + "longitude": "14.13333000" + }, + { + "id": "54542", + "name": "Grad Pazin", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.23333000", + "longitude": "13.93333000" + }, + { + "id": "54585", + "name": "Grožnjan", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.37889000", + "longitude": "13.72389000" + }, + { + "id": "54586", + "name": "Grožnjan-Grisignana", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.37728000", + "longitude": "13.72145000" + }, + { + "id": "54644", + "name": "Kaštelir-Labinci", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.30277000", + "longitude": "13.68841000" + }, + { + "id": "54629", + "name": "Kanfanar", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.12194000", + "longitude": "13.83917000" + }, + { + "id": "54634", + "name": "Karojba", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.30083000", + "longitude": "13.82306000" + }, + { + "id": "54681", + "name": "Labin", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.09500000", + "longitude": "14.11972000" + }, + { + "id": "54691", + "name": "Ližnjan", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.82833000", + "longitude": "13.95694000" + }, + { + "id": "54692", + "name": "Ližnjan-Lisignano", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.82765000", + "longitude": "13.96028000" + }, + { + "id": "54706", + "name": "Lupoglav", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.35204000", + "longitude": "14.10846000" + }, + { + "id": "54722", + "name": "Marčana", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.95528000", + "longitude": "13.95389000" + }, + { + "id": "54727", + "name": "Medulin", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.82250000", + "longitude": "13.93500000" + }, + { + "id": "54739", + "name": "Motovun", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33667000", + "longitude": "13.82861000" + }, + { + "id": "54740", + "name": "Motovun-Montona", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33633000", + "longitude": "13.82977000" + }, + { + "id": "54761", + "name": "Novigrad", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.31500000", + "longitude": "13.55806000" + }, + { + "id": "54763", + "name": "Novigrad-Cittanova", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.31669000", + "longitude": "13.56155000" + }, + { + "id": "54784", + "name": "Općina Lanišće", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.43520000", + "longitude": "14.08196000" + }, + { + "id": "54779", + "name": "Oprtalj-Portole", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.38226000", + "longitude": "13.82406000" + }, + { + "id": "54800", + "name": "Pazin", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.24028000", + "longitude": "13.93667000" + }, + { + "id": "54826", + "name": "Poreč", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.22567000", + "longitude": "13.59511000" + }, + { + "id": "54827", + "name": "Poreč-Parenzo", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.22717000", + "longitude": "13.59653000" + }, + { + "id": "54844", + "name": "Pula", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.86833000", + "longitude": "13.84806000" + }, + { + "id": "54845", + "name": "Pula-Pola", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.86711000", + "longitude": "13.84882000" + }, + { + "id": "54855", + "name": "Raša", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.08028000", + "longitude": "14.07889000" + }, + { + "id": "54850", + "name": "Rabac", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.07944000", + "longitude": "14.15750000" + }, + { + "id": "54867", + "name": "Rovinj", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.08000000", + "longitude": "13.64000000" + }, + { + "id": "54868", + "name": "Rovinj-Rovigno", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.08190000", + "longitude": "13.63970000" + }, + { + "id": "54925", + "name": "Sveta Nedelja", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.14932000", + "longitude": "14.09889000" + }, + { + "id": "54931", + "name": "Sveti Lovreč", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.17770000", + "longitude": "13.74317000" + }, + { + "id": "54933", + "name": "Tar", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.30083000", + "longitude": "13.62528000" + }, + { + "id": "54934", + "name": "Tar-Vabriga-Torre Abrega", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.29946000", + "longitude": "13.62489000" + }, + { + "id": "54949", + "name": "Umag", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.43139000", + "longitude": "13.52389000" + }, + { + "id": "54950", + "name": "Umag-Umago", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.43462000", + "longitude": "13.52589000" + }, + { + "id": "54951", + "name": "Valbandon", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.91879000", + "longitude": "13.81344000" + }, + { + "id": "54977", + "name": "Višnjan-Visignano", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.27614000", + "longitude": "13.72128000" + }, + { + "id": "54979", + "name": "Vižinada-Visinada", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33126000", + "longitude": "13.75943000" + }, + { + "id": "54967", + "name": "Vinež", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.09806000", + "longitude": "14.10694000" + }, + { + "id": "54982", + "name": "Vodnjan", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.95944000", + "longitude": "13.85167000" + }, + { + "id": "54983", + "name": "Vodnjan-Dignano", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "44.96187000", + "longitude": "13.85041000" + }, + { + "id": "54996", + "name": "Vrsar", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.14917000", + "longitude": "13.60528000" + }, + { + "id": "54997", + "name": "Vrsar-Orsera", + "state_id": 743, + "state_code": "18", + "country_id": 55, + "country_code": "HR", + "latitude": "45.15074000", + "longitude": "13.60558000" + }, + { + "id": "55024", + "name": "Đelekovec", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.24989000", + "longitude": "16.87011000" + }, + { + "id": "55027", + "name": "Đurđevac", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.03972000", + "longitude": "17.07168000" + }, + { + "id": "54469", + "name": "Drnje", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.20694000", + "longitude": "16.91694000" + }, + { + "id": "54481", + "name": "Ferdinandovac", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.05000000", + "longitude": "17.20000000" + }, + { + "id": "54492", + "name": "Gola", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.19583000", + "longitude": "17.05806000" + }, + { + "id": "54496", + "name": "Gornja Rijeka", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.10977000", + "longitude": "16.39079000" + }, + { + "id": "54524", + "name": "Grad Koprivnica", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.16667000", + "longitude": "16.83333000" + }, + { + "id": "54527", + "name": "Grad Križevci", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.03333000", + "longitude": "16.56667000" + }, + { + "id": "54594", + "name": "Hlebine", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.15694000", + "longitude": "16.96278000" + }, + { + "id": "54626", + "name": "Kalinovac", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.02944000", + "longitude": "17.11556000" + }, + { + "id": "54660", + "name": "Koprivnički Ivanec", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.19907000", + "longitude": "16.81629000" + }, + { + "id": "54659", + "name": "Koprivnica", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.16278000", + "longitude": "16.82750000" + }, + { + "id": "54670", + "name": "Križevci", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.02194000", + "longitude": "16.54250000" + }, + { + "id": "54685", + "name": "Legrad", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.29750000", + "longitude": "16.85667000" + }, + { + "id": "54738", + "name": "Molve", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.10917000", + "longitude": "17.03167000" + }, + { + "id": "54765", + "name": "Novo Virje", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.09834000", + "longitude": "17.15215000" + }, + { + "id": "54803", + "name": "Peteranec", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.19222000", + "longitude": "16.89167000" + }, + { + "id": "54854", + "name": "Rasinja", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.18389000", + "longitude": "16.70667000" + }, + { + "id": "54857", + "name": "Reka", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.13028000", + "longitude": "16.76694000" + }, + { + "id": "54888", + "name": "Sigetec", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.18833000", + "longitude": "16.93583000" + }, + { + "id": "54972", + "name": "Virje", + "state_id": 742, + "state_code": "06", + "country_id": 55, + "country_code": "HR", + "latitude": "46.06722000", + "longitude": "16.99000000" + }, + { + "id": "55026", + "name": "Đurmanec", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.19708000", + "longitude": "15.83786000" + }, + { + "id": "54390", + "name": "Bedekovčina", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.04111000", + "longitude": "15.99639000" + }, + { + "id": "54430", + "name": "Budinščina", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.12785000", + "longitude": "16.20415000" + }, + { + "id": "54510", + "name": "Grad Donja Stubica", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "45.97955000", + "longitude": "15.97069000" + }, + { + "id": "54523", + "name": "Grad Klanjec", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.04977000", + "longitude": "15.74615000" + }, + { + "id": "54526", + "name": "Grad Krapina", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.15968000", + "longitude": "15.87258000" + }, + { + "id": "54566", + "name": "Grad Zabok", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.02808000", + "longitude": "15.90855000" + }, + { + "id": "54568", + "name": "Grad Zlatar", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.09198000", + "longitude": "16.07695000" + }, + { + "id": "54622", + "name": "Jesenje", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.20724000", + "longitude": "15.88194000" + }, + { + "id": "54648", + "name": "Klanjec", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.04982000", + "longitude": "15.74418000" + }, + { + "id": "54657", + "name": "Konjščina", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.05435000", + "longitude": "16.17763000" + }, + { + "id": "54667", + "name": "Krapina", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.16083000", + "longitude": "15.87889000" + }, + { + "id": "54674", + "name": "Kumrovec", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.07750000", + "longitude": "15.67556000" + }, + { + "id": "54725", + "name": "Mače", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.09472000", + "longitude": "16.03528000" + }, + { + "id": "54714", + "name": "Marija Bistrica", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.00611000", + "longitude": "16.11111000" + }, + { + "id": "54731", + "name": "Mihovljan", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.13306000", + "longitude": "15.97222000" + }, + { + "id": "54791", + "name": "Oroslavje", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "45.99672000", + "longitude": "15.91507000" + }, + { + "id": "54832", + "name": "Pregrada", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.16417000", + "longitude": "15.75083000" + }, + { + "id": "54851", + "name": "Radoboj", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.16639000", + "longitude": "15.92361000" + }, + { + "id": "54918", + "name": "Stubičke Toplice", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "45.97585000", + "longitude": "15.93238000" + }, + { + "id": "54930", + "name": "Sveti Križ Začretje", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.08224000", + "longitude": "15.90704000" + }, + { + "id": "55001", + "name": "Zabok", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.02944000", + "longitude": "15.91500000" + }, + { + "id": "55010", + "name": "Zlatar", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.09417000", + "longitude": "16.07083000" + }, + { + "id": "55011", + "name": "Zlatar Bistrica", + "state_id": 729, + "state_code": "02", + "country_id": 55, + "country_code": "HR", + "latitude": "46.04788000", + "longitude": "16.08527000" + }, + { + "id": "54422", + "name": "Brinje", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "45.00250000", + "longitude": "15.13389000" + }, + { + "id": "54501", + "name": "Gospić", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "44.54611000", + "longitude": "15.37472000" + }, + { + "id": "54633", + "name": "Karlobag", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "44.52750000", + "longitude": "15.07389000" + }, + { + "id": "54690", + "name": "Lički Osik", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "44.60389000", + "longitude": "15.42472000" + }, + { + "id": "54758", + "name": "Novalja", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "44.55778000", + "longitude": "14.88667000" + }, + { + "id": "54796", + "name": "Otočac", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "44.86944000", + "longitude": "15.23750000" + }, + { + "id": "54802", + "name": "Perušić", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "44.64944000", + "longitude": "15.38333000" + }, + { + "id": "54812", + "name": "Plitvička Jezera", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "44.88053000", + "longitude": "15.62123000" + }, + { + "id": "54824", + "name": "Popovača", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "44.63917000", + "longitude": "15.17917000" + }, + { + "id": "54884", + "name": "Senj", + "state_id": 731, + "state_code": "09", + "country_id": 55, + "country_code": "HR", + "latitude": "44.98944000", + "longitude": "14.90583000" + }, + { + "id": "55029", + "name": "Šenkovec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.40889000", + "longitude": "16.42167000" + }, + { + "id": "55015", + "name": "Čakovec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.38444000", + "longitude": "16.43389000" + }, + { + "id": "54392", + "name": "Belica", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.40417000", + "longitude": "16.51833000" + }, + { + "id": "54451", + "name": "Dekanovec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.44861000", + "longitude": "16.58472000" + }, + { + "id": "54455", + "name": "Domašinec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.43250000", + "longitude": "16.60000000" + }, + { + "id": "54493", + "name": "Goričan", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.38417000", + "longitude": "16.68083000" + }, + { + "id": "54570", + "name": "Grad Čakovec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.38583000", + "longitude": "16.43333000" + }, + { + "id": "54595", + "name": "Hodošan", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.39528000", + "longitude": "16.64389000" + }, + { + "id": "54606", + "name": "Ivanovec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.36833000", + "longitude": "16.47667000" + }, + { + "id": "54663", + "name": "Kotoriba", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.35500000", + "longitude": "16.81806000" + }, + { + "id": "54675", + "name": "Kuršanec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.33028000", + "longitude": "16.40167000" + }, + { + "id": "54697", + "name": "Lopatinec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.43333000", + "longitude": "16.38333000" + }, + { + "id": "54726", + "name": "Mačkovec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.42417000", + "longitude": "16.43361000" + }, + { + "id": "54711", + "name": "Mala Subotica", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.37616000", + "longitude": "16.52893000" + }, + { + "id": "54730", + "name": "Mihovljan", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.40861000", + "longitude": "16.44806000" + }, + { + "id": "54744", + "name": "Mursko Središće", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.50944000", + "longitude": "16.44111000" + }, + { + "id": "54749", + "name": "Nedelišće", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.37583000", + "longitude": "16.38750000" + }, + { + "id": "54764", + "name": "Novo Selo Rok", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.42839000", + "longitude": "16.46215000" + }, + { + "id": "54788", + "name": "Orehovica", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.33167000", + "longitude": "16.50694000" + }, + { + "id": "54801", + "name": "Peklenica", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.49528000", + "longitude": "16.47611000" + }, + { + "id": "54818", + "name": "Podturen", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.46472000", + "longitude": "16.54306000" + }, + { + "id": "54834", + "name": "Prelog", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.33500000", + "longitude": "16.61556000" + }, + { + "id": "54836", + "name": "Pribislavec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.39250000", + "longitude": "16.48250000" + }, + { + "id": "54915", + "name": "Strahoninec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.36889000", + "longitude": "16.41500000" + }, + { + "id": "54929", + "name": "Sveti Juraj na Bregu", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.42853000", + "longitude": "16.38525000" + }, + { + "id": "54988", + "name": "Vratišinec", + "state_id": 726, + "state_code": "20", + "country_id": 55, + "country_code": "HR", + "latitude": "46.47806000", + "longitude": "16.45778000" + }, + { + "id": "54381", + "name": "Antunovac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.49083000", + "longitude": "18.67500000" + }, + { + "id": "55023", + "name": "Đakovo", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.30833000", + "longitude": "18.41056000" + }, + { + "id": "55014", + "name": "Đurđenovac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.54333000", + "longitude": "18.04583000" + }, + { + "id": "55031", + "name": "Široko Polje", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.40528000", + "longitude": "18.47250000" + }, + { + "id": "55034", + "name": "Šodolovci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.40000000", + "longitude": "18.62028000" + }, + { + "id": "55020", + "name": "Čeminac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.68639000", + "longitude": "18.66750000" + }, + { + "id": "55021", + "name": "Čepin", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.52361000", + "longitude": "18.56333000" + }, + { + "id": "54391", + "name": "Beli Manastir", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.77000000", + "longitude": "18.60361000" + }, + { + "id": "54393", + "name": "Belišće", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.68028000", + "longitude": "18.40583000" + }, + { + "id": "54398", + "name": "Bijelo Brdo", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.51722000", + "longitude": "18.87083000" + }, + { + "id": "54399", + "name": "Bilje", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.60694000", + "longitude": "18.74389000" + }, + { + "id": "54402", + "name": "Bistrinci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.69167000", + "longitude": "18.39861000" + }, + { + "id": "54403", + "name": "Bizovac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.59278000", + "longitude": "18.45889000" + }, + { + "id": "54421", + "name": "Brijest", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.52056000", + "longitude": "18.67194000" + }, + { + "id": "54431", + "name": "Budrovci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.27111000", + "longitude": "18.44861000" + }, + { + "id": "54447", + "name": "Dalj", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.48438000", + "longitude": "18.98610000" + }, + { + "id": "54448", + "name": "Darda", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.62806000", + "longitude": "18.69972000" + }, + { + "id": "54461", + "name": "Donji Miholjac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.76083000", + "longitude": "18.16722000" + }, + { + "id": "54464", + "name": "Draž", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.84222000", + "longitude": "18.78861000" + }, + { + "id": "54476", + "name": "Erdut", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.52639000", + "longitude": "19.06028000" + }, + { + "id": "54477", + "name": "Ernestinovo", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.45194000", + "longitude": "18.65917000" + }, + { + "id": "54482", + "name": "Feričanci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.52889000", + "longitude": "17.97583000" + }, + { + "id": "54494", + "name": "Gorjani", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.39889000", + "longitude": "18.37222000" + }, + { + "id": "54503", + "name": "Grad Beli Manastir", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.77219000", + "longitude": "18.61084000" + }, + { + "id": "54511", + "name": "Grad Donji Miholjac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.75000000", + "longitude": "18.16667000" + }, + { + "id": "54533", + "name": "Grad Našice", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.50000000", + "longitude": "18.10000000" + }, + { + "id": "54540", + "name": "Grad Osijek", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.58333000", + "longitude": "18.66667000" + }, + { + "id": "54556", + "name": "Grad Valpovo", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66667000", + "longitude": "18.41667000" + }, + { + "id": "54610", + "name": "Jagodnjak", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.69917000", + "longitude": "18.57694000" + }, + { + "id": "54619", + "name": "Jelisavac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.52889000", + "longitude": "18.15611000" + }, + { + "id": "54624", + "name": "Josipovac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.58278000", + "longitude": "18.58139000" + }, + { + "id": "54632", + "name": "Karanac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.76056000", + "longitude": "18.68444000" + }, + { + "id": "54651", + "name": "Kneževi Vinogradi", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.75028000", + "longitude": "18.73306000" + }, + { + "id": "54664", + "name": "Koška", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.54528000", + "longitude": "18.28583000" + }, + { + "id": "54680", + "name": "Kuševac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.34778000", + "longitude": "18.42889000" + }, + { + "id": "54682", + "name": "Ladimirevci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.62556000", + "longitude": "18.44861000" + }, + { + "id": "54683", + "name": "Laslovo", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.41500000", + "longitude": "18.69611000" + }, + { + "id": "54709", + "name": "Magadenovac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66159000", + "longitude": "18.18679000" + }, + { + "id": "54715", + "name": "Marijanci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66645000", + "longitude": "18.29284000" + }, + { + "id": "54717", + "name": "Marjanci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66694000", + "longitude": "18.29222000" + }, + { + "id": "54718", + "name": "Markovac Našički", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.49389000", + "longitude": "18.12556000" + }, + { + "id": "54720", + "name": "Martin", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.49222000", + "longitude": "18.06667000" + }, + { + "id": "54748", + "name": "Našice", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.48861000", + "longitude": "18.08778000" + }, + { + "id": "54792", + "name": "Osijek", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.55111000", + "longitude": "18.69389000" + }, + { + "id": "54804", + "name": "Petlovac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.75833000", + "longitude": "18.52806000" + }, + { + "id": "54806", + "name": "Petrijevci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.61278000", + "longitude": "18.53528000" + }, + { + "id": "54810", + "name": "Piškorevci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.25528000", + "longitude": "18.40417000" + }, + { + "id": "54814", + "name": "Podgorač", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.45861000", + "longitude": "18.22278000" + }, + { + "id": "54816", + "name": "Podravska Moslavina", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.78456000", + "longitude": "17.98410000" + }, + { + "id": "54877", + "name": "Sarvaš", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.52722000", + "longitude": "18.83750000" + }, + { + "id": "54878", + "name": "Satnica Đakovačka", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.35367000", + "longitude": "18.37729000" + }, + { + "id": "54883", + "name": "Semeljci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.36056000", + "longitude": "18.54361000" + }, + { + "id": "54916", + "name": "Strizivojna", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.22611000", + "longitude": "18.42389000" + }, + { + "id": "54935", + "name": "Tenja", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.49806000", + "longitude": "18.74722000" + }, + { + "id": "54952", + "name": "Valpovo", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66083000", + "longitude": "18.41861000" + }, + { + "id": "54963", + "name": "Velimirovac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.52361000", + "longitude": "18.10944000" + }, + { + "id": "54975", + "name": "Viškovci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.34500000", + "longitude": "18.46222000" + }, + { + "id": "54978", + "name": "Višnjevac", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.56861000", + "longitude": "18.61389000" + }, + { + "id": "54966", + "name": "Viljevo", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.75139000", + "longitude": "18.06306000" + }, + { + "id": "54980", + "name": "Vladislavci", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.45944000", + "longitude": "18.57417000" + }, + { + "id": "54999", + "name": "Vuka", + "state_id": 740, + "state_code": "14", + "country_id": 55, + "country_code": "HR", + "latitude": "45.43389000", + "longitude": "18.50500000" + }, + { + "id": "54415", + "name": "Brestovac", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33056000", + "longitude": "17.59694000" + }, + { + "id": "54541", + "name": "Grad Pakrac", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.43333000", + "longitude": "17.20000000" + }, + { + "id": "54545", + "name": "Grad Požega", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33333000", + "longitude": "17.66667000" + }, + { + "id": "54612", + "name": "Jakšić", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.35765000", + "longitude": "17.76502000" + }, + { + "id": "54631", + "name": "Kaptol", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.43472000", + "longitude": "17.72611000" + }, + { + "id": "54677", + "name": "Kutjevo", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.42611000", + "longitude": "17.88250000" + }, + { + "id": "54688", + "name": "Lipik", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.41139000", + "longitude": "17.15222000" + }, + { + "id": "54799", + "name": "Pakrac", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.43639000", + "longitude": "17.18889000" + }, + { + "id": "54811", + "name": "Pleternica", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.28861000", + "longitude": "17.80639000" + }, + { + "id": "54830", + "name": "Požega", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.34028000", + "longitude": "17.68528000" + }, + { + "id": "54955", + "name": "Velika", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.45444000", + "longitude": "17.66139000" + }, + { + "id": "54964", + "name": "Vidovci", + "state_id": 724, + "state_code": "11", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33250000", + "longitude": "17.71472000" + }, + { + "id": "55033", + "name": "Škrljevo", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.32053000", + "longitude": "14.53268000" + }, + { + "id": "55016", + "name": "Čavle", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.35194000", + "longitude": "14.48389000" + }, + { + "id": "54388", + "name": "Baška", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "44.97028000", + "longitude": "14.75333000" + }, + { + "id": "54383", + "name": "Bakar", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.30861000", + "longitude": "14.53028000" + }, + { + "id": "54386", + "name": "Banjol", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "44.75000000", + "longitude": "14.78333000" + }, + { + "id": "54420", + "name": "Bribir", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.16111000", + "longitude": "14.76472000" + }, + { + "id": "54435", + "name": "Buzdohanj", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.34528000", + "longitude": "14.48833000" + }, + { + "id": "54442", + "name": "Cernik", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.34361000", + "longitude": "14.50222000" + }, + { + "id": "54444", + "name": "Cres", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "44.96111000", + "longitude": "14.40840000" + }, + { + "id": "54445", + "name": "Crikvenica", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.17722000", + "longitude": "14.69278000" + }, + { + "id": "54452", + "name": "Delnice", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.40083000", + "longitude": "14.79972000" + }, + { + "id": "54465", + "name": "Dražice", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.39083000", + "longitude": "14.47028000" + }, + { + "id": "54466", + "name": "Drenova", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.35000000", + "longitude": "14.43028000" + }, + { + "id": "54485", + "name": "Fužine", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.30528000", + "longitude": "14.71556000" + }, + { + "id": "54569", + "name": "Grad Čabar", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.58333000", + "longitude": "14.58333000" + }, + { + "id": "54507", + "name": "Grad Crikvenica", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.16667000", + "longitude": "14.70000000" + }, + { + "id": "54509", + "name": "Grad Delnice", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.39806000", + "longitude": "14.80111000" + }, + { + "id": "54528", + "name": "Grad Krk", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.02829000", + "longitude": "14.57233000" + }, + { + "id": "54538", + "name": "Grad Opatija", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33333000", + "longitude": "14.26667000" + }, + { + "id": "54546", + "name": "Grad Rijeka", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.32693000", + "longitude": "14.43758000" + }, + { + "id": "54563", + "name": "Grad Vrbovsko", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.37542000", + "longitude": "15.07856000" + }, + { + "id": "54598", + "name": "Hreljin", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.28250000", + "longitude": "14.59917000" + }, + { + "id": "54609", + "name": "Jadranovo", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.23111000", + "longitude": "14.61833000" + }, + { + "id": "54628", + "name": "Kampor", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "44.77500000", + "longitude": "14.71861000" + }, + { + "id": "54635", + "name": "Kastav", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.37528000", + "longitude": "14.34861000" + }, + { + "id": "54647", + "name": "Klana", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.44694000", + "longitude": "14.37694000" + }, + { + "id": "54666", + "name": "Kraljevica", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.27395000", + "longitude": "14.56830000" + }, + { + "id": "54668", + "name": "Krasica", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.30972000", + "longitude": "14.55556000" + }, + { + "id": "54671", + "name": "Krk", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.02744000", + "longitude": "14.57542000" + }, + { + "id": "54696", + "name": "Lopar", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "44.83250000", + "longitude": "14.73028000" + }, + { + "id": "54699", + "name": "Lovran", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.29194000", + "longitude": "14.27417000" + }, + { + "id": "54712", + "name": "Mali Lošinj", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "44.53056000", + "longitude": "14.46861000" + }, + { + "id": "54713", + "name": "Malinska-Dubašnica", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.12277000", + "longitude": "14.52873000" + }, + { + "id": "54723", + "name": "Marčelji", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.39611000", + "longitude": "14.38944000" + }, + { + "id": "54716", + "name": "Marinići", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.36500000", + "longitude": "14.39389000" + }, + { + "id": "54724", + "name": "Matulji", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.36167000", + "longitude": "14.32500000" + }, + { + "id": "54729", + "name": "Mihotići", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.36125000", + "longitude": "14.30553000" + }, + { + "id": "54743", + "name": "Mrkopalj", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.31556000", + "longitude": "14.85528000" + }, + { + "id": "54755", + "name": "Njivice", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.15806000", + "longitude": "14.53861000" + }, + { + "id": "54759", + "name": "Novi Vinodolski", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.12806000", + "longitude": "14.78889000" + }, + { + "id": "54776", + "name": "Omišalj", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.21134000", + "longitude": "14.55495000" + }, + { + "id": "54777", + "name": "Opatija", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33771000", + "longitude": "14.30515000" + }, + { + "id": "54815", + "name": "Podhum", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.38722000", + "longitude": "14.47944000" + }, + { + "id": "54846", + "name": "Punat", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.01472000", + "longitude": "14.62889000" + }, + { + "id": "54849", + "name": "Rab", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "44.75769000", + "longitude": "14.75906000" + }, + { + "id": "54863", + "name": "Rijeka", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.32673000", + "longitude": "14.44241000" + }, + { + "id": "54870", + "name": "Rubeši", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.36694000", + "longitude": "14.34806000" + }, + { + "id": "54882", + "name": "Selce", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.15639000", + "longitude": "14.72111000" + }, + { + "id": "54893", + "name": "Skrad", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.42778000", + "longitude": "14.91111000" + }, + { + "id": "54924", + "name": "Supetarska Draga", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "44.79750000", + "longitude": "14.72472000" + }, + { + "id": "54976", + "name": "Viškovo", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.37572000", + "longitude": "14.38400000" + }, + { + "id": "54970", + "name": "Vinodolska općina", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.22219000", + "longitude": "14.68941000" + }, + { + "id": "54990", + "name": "Vrbnik", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.07583000", + "longitude": "14.67250000" + }, + { + "id": "54992", + "name": "Vrbovsko", + "state_id": 735, + "state_code": "08", + "country_id": 55, + "country_code": "HR", + "latitude": "45.36861000", + "longitude": "15.07833000" + }, + { + "id": "54429", + "name": "Budaševo", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.47472000", + "longitude": "16.43667000" + }, + { + "id": "54475", + "name": "Dvor", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.07306000", + "longitude": "16.37083000" + }, + { + "id": "54491", + "name": "Glina", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33806000", + "longitude": "16.08806000" + }, + { + "id": "54516", + "name": "Grad Glina", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33333000", + "longitude": "16.10000000" + }, + { + "id": "54518", + "name": "Grad Hrvatska Kostajnica", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.25000000", + "longitude": "16.56667000" + }, + { + "id": "54529", + "name": "Grad Kutina", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.50000000", + "longitude": "16.75000000" + }, + { + "id": "54536", + "name": "Grad Novska", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33333000", + "longitude": "17.00000000" + }, + { + "id": "54543", + "name": "Grad Petrinja", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.43333000", + "longitude": "16.26667000" + }, + { + "id": "54549", + "name": "Grad Sisak", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.50000000", + "longitude": "16.36667000" + }, + { + "id": "54592", + "name": "Gvozd", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.35305000", + "longitude": "15.86563000" + }, + { + "id": "54600", + "name": "Hrvatska Kostajnica", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.23167000", + "longitude": "16.53917000" + }, + { + "id": "54676", + "name": "Kutina", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.47500000", + "longitude": "16.78194000" + }, + { + "id": "54686", + "name": "Lekenik", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.58556000", + "longitude": "16.21139000" + }, + { + "id": "54689", + "name": "Lipovljani", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.39667000", + "longitude": "16.88972000" + }, + { + "id": "54721", + "name": "Martinska Ves", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.58670000", + "longitude": "16.37465000" + }, + { + "id": "54768", + "name": "Novska", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.34056000", + "longitude": "16.97694000" + }, + { + "id": "54782", + "name": "Općina Dvor", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.10000000", + "longitude": "16.30000000" + }, + { + "id": "54783", + "name": "Općina Gvozd", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33333000", + "longitude": "15.90000000" + }, + { + "id": "54807", + "name": "Petrinja", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.43750000", + "longitude": "16.29000000" + }, + { + "id": "54825", + "name": "Popovača", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.56972000", + "longitude": "16.62500000" + }, + { + "id": "54859", + "name": "Repušnica", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.49278000", + "longitude": "16.73083000" + }, + { + "id": "54892", + "name": "Sisak", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.46611000", + "longitude": "16.37833000" + }, + { + "id": "54922", + "name": "Sunja", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.36850000", + "longitude": "16.56702000" + }, + { + "id": "54984", + "name": "Voloder", + "state_id": 733, + "state_code": "03", + "country_id": 55, + "country_code": "HR", + "latitude": "45.54806000", + "longitude": "16.67889000" + }, + { + "id": "55035", + "name": "Šolta", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.38714000", + "longitude": "16.28865000" + }, + { + "id": "55040", + "name": "Žrnovnica", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.52111000", + "longitude": "16.55917000" + }, + { + "id": "54389", + "name": "Baška Voda", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.35694000", + "longitude": "16.95028000" + }, + { + "id": "54407", + "name": "Bol", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.26194000", + "longitude": "16.65500000" + }, + { + "id": "54414", + "name": "Brela", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.36889000", + "longitude": "16.93417000" + }, + { + "id": "54423", + "name": "Brnaze", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.68000000", + "longitude": "16.64972000" + }, + { + "id": "54454", + "name": "Dicmo", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.63678000", + "longitude": "16.58978000" + }, + { + "id": "54463", + "name": "Donji Vinjani", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.44613000", + "longitude": "17.24064000" + }, + { + "id": "54474", + "name": "Duće", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.44278000", + "longitude": "16.66833000" + }, + { + "id": "54472", + "name": "Dugi Rat Općina", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.44923000", + "longitude": "16.64738000" + }, + { + "id": "54473", + "name": "Dugopolje", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.58056000", + "longitude": "16.60278000" + }, + { + "id": "54486", + "name": "Gala", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.71500000", + "longitude": "16.72694000" + }, + { + "id": "54502", + "name": "Grabovci", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.49278000", + "longitude": "17.20111000" + }, + { + "id": "54519", + "name": "Grad Hvar", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.17263000", + "longitude": "16.44550000" + }, + { + "id": "54520", + "name": "Grad Imotski", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.43333000", + "longitude": "17.16667000" + }, + { + "id": "54532", + "name": "Grad Makarska", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.30000000", + "longitude": "17.03333000" + }, + { + "id": "54537", + "name": "Grad Omiš", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.46667000", + "longitude": "16.70000000" + }, + { + "id": "54548", + "name": "Grad Sinj", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.72285000", + "longitude": "16.65819000" + }, + { + "id": "54552", + "name": "Grad Split", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.50000000", + "longitude": "16.50000000" + }, + { + "id": "54553", + "name": "Grad Supetar", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.38444000", + "longitude": "16.55528000" + }, + { + "id": "54555", + "name": "Grad Trogir", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.52061000", + "longitude": "16.25144000" + }, + { + "id": "54561", + "name": "Grad Vis", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.05315000", + "longitude": "16.18698000" + }, + { + "id": "54564", + "name": "Grad Vrgorac", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.20000000", + "longitude": "17.36667000" + }, + { + "id": "54574", + "name": "Gradac", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.10583000", + "longitude": "17.34167000" + }, + { + "id": "54584", + "name": "Greda", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.61528000", + "longitude": "16.69361000" + }, + { + "id": "54587", + "name": "Grubine", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.42986000", + "longitude": "17.16292000" + }, + { + "id": "54599", + "name": "Hrvace", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.76333000", + "longitude": "16.61500000" + }, + { + "id": "54601", + "name": "Hvar", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.17250000", + "longitude": "16.44278000" + }, + { + "id": "54603", + "name": "Imotski", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.44667000", + "longitude": "17.21667000" + }, + { + "id": "54620", + "name": "Jelsa", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.16139000", + "longitude": "16.69306000" + }, + { + "id": "54621", + "name": "Jesenice", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.46158000", + "longitude": "16.60197000" + }, + { + "id": "54642", + "name": "Kaštel Štafilić", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.55000000", + "longitude": "16.33333000" + }, + { + "id": "54637", + "name": "Kaštel Gomilica", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.55000000", + "longitude": "16.40000000" + }, + { + "id": "54638", + "name": "Kaštel Kambelovac", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.55000000", + "longitude": "16.38333000" + }, + { + "id": "54639", + "name": "Kaštel Lukšić", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.55528000", + "longitude": "16.36750000" + }, + { + "id": "54640", + "name": "Kaštel Novi", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.55000000", + "longitude": "16.33333000" + }, + { + "id": "54641", + "name": "Kaštel Stari", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.55000000", + "longitude": "16.35000000" + }, + { + "id": "54643", + "name": "Kaštela", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.53865000", + "longitude": "16.30740000" + }, + { + "id": "54627", + "name": "Kamen", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.51417000", + "longitude": "16.51472000" + }, + { + "id": "54650", + "name": "Klis", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.55944000", + "longitude": "16.51944000" + }, + { + "id": "54665", + "name": "Košute", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.63083000", + "longitude": "16.69500000" + }, + { + "id": "54654", + "name": "Komiža", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.04306000", + "longitude": "16.09306000" + }, + { + "id": "54694", + "name": "Lokvičići", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.46428000", + "longitude": "17.09142000" + }, + { + "id": "54700", + "name": "Lovreć", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.48761000", + "longitude": "16.98632000" + }, + { + "id": "54710", + "name": "Makarska", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.29694000", + "longitude": "17.01778000" + }, + { + "id": "54733", + "name": "Milna", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.32667000", + "longitude": "16.45083000" + }, + { + "id": "54742", + "name": "Mravince", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.53333000", + "longitude": "16.52194000" + }, + { + "id": "54747", + "name": "Muć", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.69328000", + "longitude": "16.47267000" + }, + { + "id": "54752", + "name": "Nerežišća", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.32959000", + "longitude": "16.57743000" + }, + { + "id": "54772", + "name": "Okrug", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.49638000", + "longitude": "16.26732000" + }, + { + "id": "54773", + "name": "Okrug Gornji", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.49473000", + "longitude": "16.26531000" + }, + { + "id": "54775", + "name": "Omiš", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.44472000", + "longitude": "16.68861000" + }, + { + "id": "54795", + "name": "Otok", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.68661000", + "longitude": "16.73488000" + }, + { + "id": "54817", + "name": "Podstrana", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.48668000", + "longitude": "16.55013000" + }, + { + "id": "54829", + "name": "Postira", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.37551000", + "longitude": "16.63091000" + }, + { + "id": "54842", + "name": "Proložac", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.46690000", + "longitude": "17.15507000" + }, + { + "id": "54847", + "name": "Pučišća", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.34778000", + "longitude": "16.73389000" + }, + { + "id": "54872", + "name": "Runović", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.37667000", + "longitude": "17.23667000" + }, + { + "id": "54873", + "name": "Runovići", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.38704000", + "longitude": "17.23892000" + }, + { + "id": "54879", + "name": "Seget", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.54305000", + "longitude": "16.21222000" + }, + { + "id": "54880", + "name": "Seget Vranjica", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.50999000", + "longitude": "16.18704000" + }, + { + "id": "54881", + "name": "Selca", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.29722000", + "longitude": "16.85083000" + }, + { + "id": "54890", + "name": "Sinj", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.70361000", + "longitude": "16.63944000" + }, + { + "id": "54896", + "name": "Slatine", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.49944000", + "longitude": "16.33333000" + }, + { + "id": "54901", + "name": "Solin", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.54320000", + "longitude": "16.49314000" + }, + { + "id": "54904", + "name": "Split", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.50891000", + "longitude": "16.43915000" + }, + { + "id": "54906", + "name": "Srinjine", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.48333000", + "longitude": "16.60000000" + }, + { + "id": "54907", + "name": "Stari Grad", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.18472000", + "longitude": "16.59528000" + }, + { + "id": "54913", + "name": "Stobreč", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.50250000", + "longitude": "16.52222000" + }, + { + "id": "54923", + "name": "Supetar", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.38417000", + "longitude": "16.55083000" + }, + { + "id": "54941", + "name": "Trilj", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.61833000", + "longitude": "16.72417000" + }, + { + "id": "54942", + "name": "Trogir", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.51250000", + "longitude": "16.25167000" + }, + { + "id": "54946", + "name": "Tučepi", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.27222000", + "longitude": "17.05444000" + }, + { + "id": "54945", + "name": "Turjaci", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.65000000", + "longitude": "16.66917000" + }, + { + "id": "54961", + "name": "Veliki Drvenik", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.45000000", + "longitude": "16.15000000" + }, + { + "id": "54974", + "name": "Vis", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.06194000", + "longitude": "16.18306000" + }, + { + "id": "54987", + "name": "Vranjic", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.53333000", + "longitude": "16.46667000" + }, + { + "id": "54993", + "name": "Vrgorac", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.20583000", + "longitude": "17.37111000" + }, + { + "id": "54994", + "name": "Vrlika", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.91098000", + "longitude": "16.39933000" + }, + { + "id": "55005", + "name": "Zagvozd", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.39750000", + "longitude": "17.05694000" + }, + { + "id": "55012", + "name": "Zmijavci", + "state_id": 725, + "state_code": "17", + "country_id": 55, + "country_code": "HR", + "latitude": "43.41083000", + "longitude": "17.20556000" + }, + { + "id": "54395", + "name": "Beretinec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.25000000", + "longitude": "16.30000000" + }, + { + "id": "54417", + "name": "Breznički Hum", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.10722000", + "longitude": "16.27667000" + }, + { + "id": "54416", + "name": "Breznica", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.07111000", + "longitude": "16.27111000" + }, + { + "id": "54443", + "name": "Cestica", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.37167000", + "longitude": "16.12528000" + }, + { + "id": "54459", + "name": "Donje Ladanje", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.30000000", + "longitude": "16.16667000" + }, + { + "id": "54497", + "name": "Gornje Vratno", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.35917000", + "longitude": "16.15444000" + }, + { + "id": "54500", + "name": "Gornji Kneginec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.25051000", + "longitude": "16.37555000" + }, + { + "id": "54521", + "name": "Grad Ivanec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.23333000", + "longitude": "16.13333000" + }, + { + "id": "54531", + "name": "Grad Ludbreg", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.25000000", + "longitude": "16.63333000" + }, + { + "id": "54535", + "name": "Grad Novi Marof", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.16667000", + "longitude": "16.33333000" + }, + { + "id": "54557", + "name": "Grad Varaždin", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.30354000", + "longitude": "16.33444000" + }, + { + "id": "54597", + "name": "Hrašćica", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.32494000", + "longitude": "16.29427000" + }, + { + "id": "54604", + "name": "Ivanec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.22306000", + "longitude": "16.12000000" + }, + { + "id": "54614", + "name": "Jalžabet", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.26083000", + "longitude": "16.47500000" + }, + { + "id": "54613", + "name": "Jalkovec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.28083000", + "longitude": "16.31972000" + }, + { + "id": "54649", + "name": "Klenovnik", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.27028000", + "longitude": "16.07000000" + }, + { + "id": "54678", + "name": "Kućan Marof", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.28944000", + "longitude": "16.37222000" + }, + { + "id": "54687", + "name": "Lepoglava", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.21056000", + "longitude": "16.03556000" + }, + { + "id": "54693", + "name": "Ljubešćica", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.16667000", + "longitude": "16.38333000" + }, + { + "id": "54701", + "name": "Ludbreg", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.25194000", + "longitude": "16.61472000" + }, + { + "id": "54750", + "name": "Nedeljanec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.28778000", + "longitude": "16.28333000" + }, + { + "id": "54805", + "name": "Petrijanec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.34917000", + "longitude": "16.22500000" + }, + { + "id": "54858", + "name": "Remetinec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.18528000", + "longitude": "16.32778000" + }, + { + "id": "54905", + "name": "Sračinec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.32944000", + "longitude": "16.27889000" + }, + { + "id": "54932", + "name": "Sveti Đurđ", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.28331000", + "longitude": "16.60438000" + }, + { + "id": "54947", + "name": "Tužno", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.25667000", + "longitude": "16.23500000" + }, + { + "id": "54953", + "name": "Varaždin", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.30444000", + "longitude": "16.33778000" + }, + { + "id": "54965", + "name": "Vidovec", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.28333000", + "longitude": "16.24111000" + }, + { + "id": "54968", + "name": "Vinica", + "state_id": 739, + "state_code": "05", + "country_id": 55, + "country_code": "HR", + "latitude": "46.33611000", + "longitude": "16.14944000" + }, + { + "id": "55036", + "name": "Špišić Bukovica", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.85740000", + "longitude": "17.30089000" + }, + { + "id": "55018", + "name": "Čačinci", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.60389000", + "longitude": "17.87028000" + }, + { + "id": "55019", + "name": "Čađavica", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.74417000", + "longitude": "17.85472000" + }, + { + "id": "54446", + "name": "Crnac", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.69611000", + "longitude": "17.93722000" + }, + { + "id": "54539", + "name": "Grad Orahovica", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.53333000", + "longitude": "17.90000000" + }, + { + "id": "54550", + "name": "Grad Slatina", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70000000", + "longitude": "17.70000000" + }, + { + "id": "54560", + "name": "Grad Virovitica", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.83167000", + "longitude": "17.38483000" + }, + { + "id": "54576", + "name": "Gradina", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.85423000", + "longitude": "17.51109000" + }, + { + "id": "54732", + "name": "Mikleuš", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.61861000", + "longitude": "17.80389000" + }, + { + "id": "54756", + "name": "Nova Bukovica", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66472000", + "longitude": "17.76694000" + }, + { + "id": "54786", + "name": "Orahovica", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.54000000", + "longitude": "17.88472000" + }, + { + "id": "54809", + "name": "Pitomača", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.95056000", + "longitude": "17.22944000" + }, + { + "id": "54861", + "name": "Rezovac", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.78333000", + "longitude": "17.41667000" + }, + { + "id": "54895", + "name": "Slatina", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70333000", + "longitude": "17.70278000" + }, + { + "id": "54903", + "name": "Sopje", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.80111000", + "longitude": "17.74250000" + }, + { + "id": "54920", + "name": "Suhopolje", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.79972000", + "longitude": "17.49917000" + }, + { + "id": "54973", + "name": "Virovitica", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.83194000", + "longitude": "17.38389000" + }, + { + "id": "54985", + "name": "Voćin", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.61778000", + "longitude": "17.54778000" + }, + { + "id": "55008", + "name": "Zdenci", + "state_id": 732, + "state_code": "10", + "country_id": 55, + "country_code": "HR", + "latitude": "45.58917000", + "longitude": "17.95028000" + }, + { + "id": "54380", + "name": "Andrijaševci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.22472000", + "longitude": "18.73806000" + }, + { + "id": "55037", + "name": "Štitar", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.09556000", + "longitude": "18.64028000" + }, + { + "id": "55043", + "name": "Županja", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.07750000", + "longitude": "18.69750000" + }, + { + "id": "54382", + "name": "Babina Greda", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.11722000", + "longitude": "18.53694000" + }, + { + "id": "54410", + "name": "Bošnjaci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.05028000", + "longitude": "18.75556000" + }, + { + "id": "54405", + "name": "Bobota", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.42111000", + "longitude": "18.85389000" + }, + { + "id": "54406", + "name": "Bogdanovci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.34083000", + "longitude": "18.93083000" + }, + { + "id": "54408", + "name": "Borovo", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.37639000", + "longitude": "18.96694000" + }, + { + "id": "54409", + "name": "Borovo Selo", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.40528000", + "longitude": "18.97583000" + }, + { + "id": "54428", + "name": "Bršadin", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.36278000", + "longitude": "18.91111000" + }, + { + "id": "54439", + "name": "Cerić", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.31139000", + "longitude": "18.85611000" + }, + { + "id": "54440", + "name": "Cerna", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.18194000", + "longitude": "18.68944000" + }, + { + "id": "54467", + "name": "Drenovci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "44.91944000", + "longitude": "18.90284000" + }, + { + "id": "54573", + "name": "Grad Županja", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.07231000", + "longitude": "18.69513000" + }, + { + "id": "54559", + "name": "Grad Vinkovci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.28044000", + "longitude": "18.80482000" + }, + { + "id": "54565", + "name": "Grad Vukovar", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33333000", + "longitude": "19.00000000" + }, + { + "id": "54578", + "name": "Gradište", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.14806000", + "longitude": "18.70667000" + }, + { + "id": "54591", + "name": "Gunja", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "44.88000000", + "longitude": "18.85333000" + }, + { + "id": "54602", + "name": "Ilok", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.22222000", + "longitude": "19.37694000" + }, + { + "id": "54605", + "name": "Ivankovo", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.28861000", + "longitude": "18.68389000" + }, + { + "id": "54616", + "name": "Jarmina", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.31806000", + "longitude": "18.72917000" + }, + { + "id": "54655", + "name": "Komletinci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.14972000", + "longitude": "18.94917000" + }, + { + "id": "54698", + "name": "Lovas", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.22639000", + "longitude": "19.17111000" + }, + { + "id": "54719", + "name": "Markušica", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.37389000", + "longitude": "18.70583000" + }, + { + "id": "54734", + "name": "Mirkovci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.26972000", + "longitude": "18.85111000" + }, + { + "id": "54751", + "name": "Negoslavci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.27944000", + "longitude": "18.99667000" + }, + { + "id": "54753", + "name": "Nijemci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.14028000", + "longitude": "19.03556000" + }, + { + "id": "54769", + "name": "Nuštar", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.33250000", + "longitude": "18.84139000" + }, + { + "id": "54794", + "name": "Otok", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.14667000", + "longitude": "18.88389000" + }, + { + "id": "54840", + "name": "Privlaka", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.19472000", + "longitude": "18.83750000" + }, + { + "id": "54860", + "name": "Retkovci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.23333000", + "longitude": "18.65306000" + }, + { + "id": "54866", + "name": "Rokovci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.23111000", + "longitude": "18.74389000" + }, + { + "id": "54902", + "name": "Soljani", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "44.95028000", + "longitude": "18.97028000" + }, + { + "id": "54909", + "name": "Stari Jankovci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.26194000", + "longitude": "18.91444000" + }, + { + "id": "54938", + "name": "Tordinci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.37028000", + "longitude": "18.79500000" + }, + { + "id": "54939", + "name": "Tovarnik", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.16500000", + "longitude": "19.15194000" + }, + { + "id": "54943", + "name": "Trpinja", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.41917000", + "longitude": "18.89917000" + }, + { + "id": "54969", + "name": "Vinkovci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.28833000", + "longitude": "18.80472000" + }, + { + "id": "54986", + "name": "Vođinci", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.27556000", + "longitude": "18.60972000" + }, + { + "id": "54989", + "name": "Vrbanja", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "44.98079000", + "longitude": "18.92717000" + }, + { + "id": "55000", + "name": "Vukovar", + "state_id": 741, + "state_code": "16", + "country_id": 55, + "country_code": "HR", + "latitude": "45.35161000", + "longitude": "19.00225000" + }, + { + "id": "55032", + "name": "Škabrnja", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.08949000", + "longitude": "15.45146000" + }, + { + "id": "54394", + "name": "Benkovac", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.03444000", + "longitude": "15.61278000" + }, + { + "id": "54397", + "name": "Bibinje", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.07324000", + "longitude": "15.28288000" + }, + { + "id": "54400", + "name": "Biograd na Moru", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "43.94333000", + "longitude": "15.45194000" + }, + { + "id": "54488", + "name": "Galovac", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.07139000", + "longitude": "15.39333000" + }, + { + "id": "54499", + "name": "Gornji Karin", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.13598000", + "longitude": "15.63423000" + }, + { + "id": "54582", + "name": "Gračac", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.29916000", + "longitude": "15.84752000" + }, + { + "id": "54504", + "name": "Grad Biograd na Moru", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "43.93333000", + "longitude": "15.43333000" + }, + { + "id": "54617", + "name": "Jasenice", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.22969000", + "longitude": "15.57514000" + }, + { + "id": "54625", + "name": "Kali", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.06278000", + "longitude": "15.20556000" + }, + { + "id": "54673", + "name": "Kruševo", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.18333000", + "longitude": "15.65000000" + }, + { + "id": "54754", + "name": "Nin", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.24139000", + "longitude": "15.17833000" + }, + { + "id": "54762", + "name": "Novigrad Općina", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.19417000", + "longitude": "15.55667000" + }, + { + "id": "54770", + "name": "Obrovac", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.20056000", + "longitude": "15.68222000" + }, + { + "id": "54793", + "name": "Osljak", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.07667000", + "longitude": "15.20722000" + }, + { + "id": "54797", + "name": "Pag", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.44500000", + "longitude": "15.05750000" + }, + { + "id": "54798", + "name": "Pakoštane", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "43.91222000", + "longitude": "15.50889000" + }, + { + "id": "54822", + "name": "Polača", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.01833000", + "longitude": "15.51750000" + }, + { + "id": "54823", + "name": "Poličnik", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.17806000", + "longitude": "15.37556000" + }, + { + "id": "54828", + "name": "Posedarje", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.21361000", + "longitude": "15.47667000" + }, + { + "id": "54833", + "name": "Preko", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.08111000", + "longitude": "15.18750000" + }, + { + "id": "54837", + "name": "Pridraga", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.16667000", + "longitude": "15.56667000" + }, + { + "id": "54841", + "name": "Privlaka", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.26667000", + "longitude": "15.13333000" + }, + { + "id": "54856", + "name": "Ražanac", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.28194000", + "longitude": "15.34806000" + }, + { + "id": "54875", + "name": "Sali", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "43.93972000", + "longitude": "15.16333000" + }, + { + "id": "54908", + "name": "Stari Grad", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.43000000", + "longitude": "15.06222000" + }, + { + "id": "54911", + "name": "Starigrad", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.29601000", + "longitude": "15.43865000" + }, + { + "id": "54921", + "name": "Sukošan", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.04696000", + "longitude": "15.31391000" + }, + { + "id": "54928", + "name": "Sveti Filip i Jakov", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "43.96472000", + "longitude": "15.43000000" + }, + { + "id": "54937", + "name": "Tkon", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "43.91996000", + "longitude": "15.41639000" + }, + { + "id": "54944", + "name": "Turanj", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "43.97111000", + "longitude": "15.41139000" + }, + { + "id": "54948", + "name": "Ugljan", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.13083000", + "longitude": "15.10306000" + }, + { + "id": "54971", + "name": "Vir", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.29995000", + "longitude": "15.08663000" + }, + { + "id": "54998", + "name": "Vrsi", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.26472000", + "longitude": "15.23250000" + }, + { + "id": "55002", + "name": "Zadar", + "state_id": 727, + "state_code": "13", + "country_id": 55, + "country_code": "HR", + "latitude": "44.11972000", + "longitude": "15.24222000" + }, + { + "id": "54419", + "name": "Brezovica", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.72919000", + "longitude": "15.91069000" + }, + { + "id": "54438", + "name": "Centar", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.81313000", + "longitude": "15.97753000" + }, + { + "id": "54470", + "name": "Dubrava", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.83361000", + "longitude": "16.06361000" + }, + { + "id": "54579", + "name": "Gradska četvrt Donji grad", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.80834000", + "longitude": "15.96949000" + }, + { + "id": "54580", + "name": "Gradska četvrt Gornji Grad - Medvescak", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.82820000", + "longitude": "15.97938000" + }, + { + "id": "54581", + "name": "Gradska četvrt Podsljeme", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.86097000", + "longitude": "15.97996000" + }, + { + "id": "54596", + "name": "Horvati", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70000000", + "longitude": "15.81667000" + }, + { + "id": "54615", + "name": "Jankomir", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.79167000", + "longitude": "15.90000000" + }, + { + "id": "54623", + "name": "Ježdovec", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.78333000", + "longitude": "15.85000000" + }, + { + "id": "54636", + "name": "Kašina", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.91134000", + "longitude": "16.12436000" + }, + { + "id": "54707", + "name": "Lučko", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.76111000", + "longitude": "15.87028000" + }, + { + "id": "54760", + "name": "Novi Zagreb", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.78333000", + "longitude": "15.98333000" + }, + { + "id": "54771", + "name": "Odra", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.72979000", + "longitude": "15.99240000" + }, + { + "id": "54885", + "name": "Sesvete", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.83333000", + "longitude": "16.13333000" + }, + { + "id": "54912", + "name": "Stenjevec", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.80846000", + "longitude": "15.88245000" + }, + { + "id": "54917", + "name": "Strmec", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70843000", + "longitude": "15.91674000" + }, + { + "id": "55003", + "name": "Zadvorsko", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.71978000", + "longitude": "15.90880000" + }, + { + "id": "55004", + "name": "Zagreb", + "state_id": 738, + "state_code": "21", + "country_id": 55, + "country_code": "HR", + "latitude": "45.81444000", + "longitude": "15.97798000" + }, + { + "id": "54396", + "name": "Bestovje", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.80833000", + "longitude": "15.81667000" + }, + { + "id": "54401", + "name": "Bistra", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.90657000", + "longitude": "15.85087000" + }, + { + "id": "54411", + "name": "Brckovljani", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.83333000", + "longitude": "16.30000000" + }, + { + "id": "54412", + "name": "Brdovec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.86666000", + "longitude": "15.77102000" + }, + { + "id": "54413", + "name": "Bregana", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.84013000", + "longitude": "15.68792000" + }, + { + "id": "54456", + "name": "Donja Bistra", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.90778000", + "longitude": "15.85444000" + }, + { + "id": "54457", + "name": "Donja Lomnica", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.71194000", + "longitude": "16.02694000" + }, + { + "id": "54458", + "name": "Donja Zdenčina", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66667000", + "longitude": "15.76667000" + }, + { + "id": "54462", + "name": "Donji Stupnik", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.73971000", + "longitude": "15.85975000" + }, + { + "id": "54478", + "name": "Farkaševac", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.87899000", + "longitude": "16.63467000" + }, + { + "id": "54495", + "name": "Gornja Bistra", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.91667000", + "longitude": "15.90000000" + }, + { + "id": "54583", + "name": "Gračec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.83333000", + "longitude": "16.31667000" + }, + { + "id": "54514", + "name": "Grad Dugo Selo", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.80900000", + "longitude": "16.24123000" + }, + { + "id": "54522", + "name": "Grad Jastrebarsko", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66667000", + "longitude": "15.66667000" + }, + { + "id": "54547", + "name": "Grad Samobor", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.80000000", + "longitude": "15.70000000" + }, + { + "id": "54554", + "name": "Grad Sveti Ivan Zelina", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.96667000", + "longitude": "16.25000000" + }, + { + "id": "54558", + "name": "Grad Velika Gorica", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70000000", + "longitude": "16.08333000" + }, + { + "id": "54562", + "name": "Grad Vrbovec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.86667000", + "longitude": "16.43333000" + }, + { + "id": "54567", + "name": "Grad Zaprešić", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.86667000", + "longitude": "15.80000000" + }, + { + "id": "54575", + "name": "Gradec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.91111000", + "longitude": "16.48278000" + }, + { + "id": "54577", + "name": "Gradići", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70000000", + "longitude": "16.05000000" + }, + { + "id": "54608", + "name": "Jablanovec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.87583000", + "longitude": "15.85361000" + }, + { + "id": "54611", + "name": "Jakovlje", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.93611000", + "longitude": "15.85559000" + }, + { + "id": "54618", + "name": "Jastrebarsko", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66833000", + "longitude": "15.64861000" + }, + { + "id": "54645", + "name": "Kerestinec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.77010000", + "longitude": "15.80864000" + }, + { + "id": "54669", + "name": "Križ", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66500000", + "longitude": "16.52333000" + }, + { + "id": "54679", + "name": "Kuče", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.67694000", + "longitude": "16.14500000" + }, + { + "id": "54695", + "name": "Lonjica", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.85500000", + "longitude": "16.33000000" + }, + { + "id": "54702", + "name": "Luka", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.95795000", + "longitude": "15.81954000" + }, + { + "id": "54703", + "name": "Lukavec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70444000", + "longitude": "15.99000000" + }, + { + "id": "54705", + "name": "Lupoglav", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.79639000", + "longitude": "16.34639000" + }, + { + "id": "54735", + "name": "Mičevec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.75000000", + "longitude": "16.06667000" + }, + { + "id": "54741", + "name": "Mraclin", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.66667000", + "longitude": "16.09556000" + }, + { + "id": "54766", + "name": "Novo Čiče", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.70000000", + "longitude": "16.11667000" + }, + { + "id": "54767", + "name": "Novoselec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.65250000", + "longitude": "16.53639000" + }, + { + "id": "54781", + "name": "Općina Dubrava", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.83759000", + "longitude": "16.53683000" + }, + { + "id": "54789", + "name": "Orešje", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.81618000", + "longitude": "15.80246000" + }, + { + "id": "54820", + "name": "Pojatno", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.90500000", + "longitude": "15.80056000" + }, + { + "id": "54835", + "name": "Preseka", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.97456000", + "longitude": "16.38697000" + }, + { + "id": "54838", + "name": "Prigorje Brdovečko", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.87944000", + "longitude": "15.73806000" + }, + { + "id": "54848", + "name": "Pušća", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.91567000", + "longitude": "15.78049000" + }, + { + "id": "54852", + "name": "Rakitje", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.79389000", + "longitude": "15.82222000" + }, + { + "id": "54853", + "name": "Rakov Potok", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.73806000", + "longitude": "15.79722000" + }, + { + "id": "54871", + "name": "Rude", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.76667000", + "longitude": "15.66667000" + }, + { + "id": "54876", + "name": "Samobor", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.80306000", + "longitude": "15.71806000" + }, + { + "id": "54919", + "name": "Stupnik", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.75314000", + "longitude": "15.84078000" + }, + { + "id": "54926", + "name": "Sveta Nedelja", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.79617000", + "longitude": "15.77971000" + }, + { + "id": "54927", + "name": "Sveta Nedjelja", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.79833000", + "longitude": "15.78056000" + }, + { + "id": "54956", + "name": "Velika Gorica", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.71250000", + "longitude": "16.07556000" + }, + { + "id": "54958", + "name": "Velika Mlaka", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.73639000", + "longitude": "16.03111000" + }, + { + "id": "54959", + "name": "Velika Ostrna", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.78752000", + "longitude": "16.28139000" + }, + { + "id": "54991", + "name": "Vrbovec", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.88333000", + "longitude": "16.42167000" + }, + { + "id": "55006", + "name": "Zaprešić", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.85639000", + "longitude": "15.80778000" + }, + { + "id": "55009", + "name": "Zdenci Brdovečki", + "state_id": 736, + "state_code": "01", + "country_id": 55, + "country_code": "HR", + "latitude": "45.86667000", + "longitude": "15.75000000" + }, + { + "id": "21804", + "name": "Alquízar", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.80517000", + "longitude": "-82.58392000" + }, + { + "id": "21807", + "name": "Artemisa", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.81667000", + "longitude": "-82.75944000" + }, + { + "id": "21808", + "name": "Bahía Honda", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.90332000", + "longitude": "-83.15994000" + }, + { + "id": "21814", + "name": "Bauta", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.98226000", + "longitude": "-82.54719000" + }, + { + "id": "21820", + "name": "Cabañas", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.97944000", + "longitude": "-82.92214000" + }, + { + "id": "21828", + "name": "Candelaria", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.74057000", + "longitude": "-82.95912000" + }, + { + "id": "21865", + "name": "Güira de Melena", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.79613000", + "longitude": "-82.50667000" + }, + { + "id": "21858", + "name": "Guanajay", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.92639000", + "longitude": "-82.68750000" + }, + { + "id": "21895", + "name": "Mariel", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.98931000", + "longitude": "-82.75376000" + }, + { + "id": "21904", + "name": "Municipio de Artemisa", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.77383000", + "longitude": "-82.80419000" + }, + { + "id": "21906", + "name": "Municipio de Bauta", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.96957000", + "longitude": "-82.49997000" + }, + { + "id": "21914", + "name": "Municipio de Guanajay", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.89215000", + "longitude": "-82.70873000" + }, + { + "id": "21923", + "name": "Municipio de Mariel", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.96515000", + "longitude": "-82.80324000" + }, + { + "id": "21931", + "name": "Municipio de San Cristóbal", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.71446000", + "longitude": "-83.04561000" + }, + { + "id": "21959", + "name": "San Antonio de los Baños", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.89018000", + "longitude": "-82.50099000" + }, + { + "id": "21960", + "name": "San Cristobal", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.71658000", + "longitude": "-83.05647000" + }, + { + "id": "21976", + "name": "Soroa", + "state_id": 283, + "state_code": "15", + "country_id": 56, + "country_code": "CU", + "latitude": "22.80000000", + "longitude": "-83.01667000" + }, + { + "id": "21825", + "name": "Camagüey", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.38083000", + "longitude": "-77.91694000" + }, + { + "id": "21848", + "name": "El Caney", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.30000000", + "longitude": "-78.48333000" + }, + { + "id": "21851", + "name": "Esmeralda", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.85139000", + "longitude": "-78.11725000" + }, + { + "id": "21854", + "name": "Florida", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.52536000", + "longitude": "-78.22579000" + }, + { + "id": "21863", + "name": "Guáimaro", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.05222000", + "longitude": "-77.34990000" + }, + { + "id": "21876", + "name": "Jimaguayú", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.24224000", + "longitude": "-77.82625000" + }, + { + "id": "21899", + "name": "Minas", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.48802000", + "longitude": "-77.61033000" + }, + { + "id": "21913", + "name": "Municipio de Florida", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.46582000", + "longitude": "-78.34848000" + }, + { + "id": "21928", + "name": "Municipio de Nuevitas", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.55000000", + "longitude": "-77.26667000" + }, + { + "id": "21938", + "name": "Nuevitas", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.54585000", + "longitude": "-77.26504000" + }, + { + "id": "21971", + "name": "Santa Cruz del Sur", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "20.71633000", + "longitude": "-77.99816000" + }, + { + "id": "21975", + "name": "Sibanicú", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.23631000", + "longitude": "-77.52561000" + }, + { + "id": "21982", + "name": "Vertientes", + "state_id": 286, + "state_code": "09", + "country_id": 56, + "country_code": "CU", + "latitude": "21.25817000", + "longitude": "-78.14979000" + }, + { + "id": "21811", + "name": "Baraguá", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "21.68216000", + "longitude": "-78.62567000" + }, + { + "id": "21832", + "name": "Chambas", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "22.19534000", + "longitude": "-78.91230000" + }, + { + "id": "21833", + "name": "Ciego de Ávila", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "21.84000000", + "longitude": "-78.76194000" + }, + { + "id": "21836", + "name": "Ciro Redondo", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "22.01921000", + "longitude": "-78.70365000" + }, + { + "id": "21853", + "name": "Florencia", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "22.14610000", + "longitude": "-78.97328000" + }, + { + "id": "21902", + "name": "Morón", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "22.10774000", + "longitude": "-78.62667000" + }, + { + "id": "21909", + "name": "Municipio de Ciego de Ávila", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "21.85000000", + "longitude": "-78.76667000" + }, + { + "id": "21926", + "name": "Municipio de Morón", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "22.29980000", + "longitude": "-78.56875000" + }, + { + "id": "21945", + "name": "Primero de Enero", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "21.94501000", + "longitude": "-78.43130000" + }, + { + "id": "21981", + "name": "Venezuela", + "state_id": 282, + "state_code": "08", + "country_id": 56, + "country_code": "CU", + "latitude": "21.73748000", + "longitude": "-78.79336000" + }, + { + "id": "21800", + "name": "Abreus", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.27797000", + "longitude": "-80.56931000" + }, + { + "id": "21801", + "name": "Aguada de Pasajeros", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.38520000", + "longitude": "-80.84792000" + }, + { + "id": "21834", + "name": "Cienfuegos", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.14957000", + "longitude": "-80.44662000" + }, + { + "id": "21843", + "name": "Cruces", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.34203000", + "longitude": "-80.27021000" + }, + { + "id": "21845", + "name": "Cumanayagua", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.15247000", + "longitude": "-80.20354000" + }, + { + "id": "21883", + "name": "Lajas", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.41479000", + "longitude": "-80.29310000" + }, + { + "id": "21903", + "name": "Municipio de Abreus", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.19229000", + "longitude": "-80.71465000" + }, + { + "id": "21910", + "name": "Municipio de Cienfuegos", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.15000000", + "longitude": "-80.45000000" + }, + { + "id": "21940", + "name": "Palmira", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.24126000", + "longitude": "-80.39110000" + }, + { + "id": "21953", + "name": "Rodas", + "state_id": 287, + "state_code": "06", + "country_id": 56, + "country_code": "CU", + "latitude": "22.34184000", + "longitude": "-80.55596000" + }, + { + "id": "21812", + "name": "Bartolomé Masó", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.16635000", + "longitude": "-76.94291000" + }, + { + "id": "21815", + "name": "Bayamo", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.37417000", + "longitude": "-76.64361000" + }, + { + "id": "21827", + "name": "Campechuela", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.23329000", + "longitude": "-77.27990000" + }, + { + "id": "21829", + "name": "Cauto Cristo", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.55709000", + "longitude": "-76.47270000" + }, + { + "id": "21862", + "name": "Guisa", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.25494000", + "longitude": "-76.53930000" + }, + { + "id": "21875", + "name": "Jiguaní", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.36785000", + "longitude": "-76.42741000" + }, + { + "id": "21894", + "name": "Manzanillo", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.34173000", + "longitude": "-77.12126000" + }, + { + "id": "21898", + "name": "Media Luna", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.14298000", + "longitude": "-77.43532000" + }, + { + "id": "21907", + "name": "Municipio de Bayamo", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.42511000", + "longitude": "-76.68614000" + }, + { + "id": "21922", + "name": "Municipio de Manzanillo", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.24732000", + "longitude": "-77.10273000" + }, + { + "id": "21927", + "name": "Municipio de Niquero", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "19.93912000", + "longitude": "-77.57085000" + }, + { + "id": "21936", + "name": "Niquero", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.04698000", + "longitude": "-77.58089000" + }, + { + "id": "21954", + "name": "Río Cauto", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.55971000", + "longitude": "-76.91673000" + }, + { + "id": "21985", + "name": "Yara", + "state_id": 275, + "state_code": "12", + "country_id": 56, + "country_code": "CU", + "latitude": "20.27465000", + "longitude": "-76.95132000" + }, + { + "id": "21810", + "name": "Baracoa", + "state_id": 285, + "state_code": "14", + "country_id": 56, + "country_code": "CU", + "latitude": "20.34711000", + "longitude": "-74.49624000" + }, + { + "id": "21860", + "name": "Guantánamo", + "state_id": 285, + "state_code": "14", + "country_id": 56, + "country_code": "CU", + "latitude": "20.14444000", + "longitude": "-75.20917000" + }, + { + "id": "21889", + "name": "Maisí", + "state_id": 285, + "state_code": "14", + "country_id": 56, + "country_code": "CU", + "latitude": "20.24673000", + "longitude": "-74.15181000" + }, + { + "id": "21916", + "name": "Municipio de Guantánamo", + "state_id": 285, + "state_code": "14", + "country_id": 56, + "country_code": "CU", + "latitude": "20.26723000", + "longitude": "-75.15546000" + }, + { + "id": "21955", + "name": "Río Guayabal de Yateras", + "state_id": 285, + "state_code": "14", + "country_id": 56, + "country_code": "CU", + "latitude": "20.36667000", + "longitude": "-75.01667000" + }, + { + "id": "21958", + "name": "San Antonio del Sur", + "state_id": 285, + "state_code": "14", + "country_id": 56, + "country_code": "CU", + "latitude": "20.05564000", + "longitude": "-74.80750000" + }, + { + "id": "21803", + "name": "Alamar", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.15794000", + "longitude": "-82.27837000" + }, + { + "id": "21806", + "name": "Arroyo Naranjo", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.03677000", + "longitude": "-82.36937000" + }, + { + "id": "21818", + "name": "Boyeros", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.00720000", + "longitude": "-82.40170000" + }, + { + "id": "21830", + "name": "Centro Habana", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.13833000", + "longitude": "-82.36417000" + }, + { + "id": "21831", + "name": "Cerro", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.10861000", + "longitude": "-82.37778000" + }, + { + "id": "21847", + "name": "Diez de Octubre", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.08810000", + "longitude": "-82.35970000" + }, + { + "id": "21857", + "name": "Guanabacoa", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.12360000", + "longitude": "-82.30082000" + }, + { + "id": "21866", + "name": "Habana del Este", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.15917000", + "longitude": "-82.33056000" + }, + { + "id": "21867", + "name": "Havana", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.13302000", + "longitude": "-82.38304000" + }, + { + "id": "21880", + "name": "La Habana Vieja", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.13028000", + "longitude": "-82.35306000" + }, + { + "id": "21952", + "name": "Regla", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.12500000", + "longitude": "-82.33194000" + }, + { + "id": "21966", + "name": "San Miguel del Padrón", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "23.06639000", + "longitude": "-82.29472000" + }, + { + "id": "21973", + "name": "Santiago de las Vegas", + "state_id": 272, + "state_code": "03", + "country_id": 56, + "country_code": "CU", + "latitude": "22.97000000", + "longitude": "-82.38694000" + }, + { + "id": "21809", + "name": "Banes", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.96116000", + "longitude": "-75.72200000" + }, + { + "id": "21821", + "name": "Cacocum", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.73775000", + "longitude": "-76.32574000" + }, + { + "id": "21844", + "name": "Cueto", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.64855000", + "longitude": "-75.92967000" + }, + { + "id": "21856", + "name": "Gibara", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "21.10988000", + "longitude": "-76.13145000" + }, + { + "id": "21868", + "name": "Holguín", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.88722000", + "longitude": "-76.26306000" + }, + { + "id": "21877", + "name": "Jobabo", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.96917000", + "longitude": "-76.29944000" + }, + { + "id": "21901", + "name": "Moa", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.65776000", + "longitude": "-74.95075000" + }, + { + "id": "21905", + "name": "Municipio de Banes", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.98008000", + "longitude": "-75.74933000" + }, + { + "id": "21918", + "name": "Municipio de Holguín", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.91192000", + "longitude": "-76.27057000" + }, + { + "id": "21956", + "name": "Sagua de Tánamo", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.58269000", + "longitude": "-75.24116000" + }, + { + "id": "21962", + "name": "San Germán", + "state_id": 279, + "state_code": "11", + "country_id": 56, + "country_code": "CU", + "latitude": "20.60009000", + "longitude": "-76.13364000" + }, + { + "id": "21937", + "name": "Nueva Gerona", + "state_id": 278, + "state_code": "99", + "country_id": 56, + "country_code": "CU", + "latitude": "21.88667000", + "longitude": "-82.80556000" + }, + { + "id": "21805", + "name": "Amancio", + "state_id": 281, + "state_code": "10", + "country_id": 56, + "country_code": "CU", + "latitude": "20.81914000", + "longitude": "-77.57958000" + }, + { + "id": "21837", + "name": "Colombia", + "state_id": 281, + "state_code": "10", + "country_id": 56, + "country_code": "CU", + "latitude": "20.98812000", + "longitude": "-77.42598000" + }, + { + "id": "21874", + "name": "Jesús Menéndez", + "state_id": 281, + "state_code": "10", + "country_id": 56, + "country_code": "CU", + "latitude": "21.16139000", + "longitude": "-76.47919000" + }, + { + "id": "21878", + "name": "Jobabo", + "state_id": 281, + "state_code": "10", + "country_id": 56, + "country_code": "CU", + "latitude": "20.90748000", + "longitude": "-77.28194000" + }, + { + "id": "21884", + "name": "Las Tunas", + "state_id": 281, + "state_code": "10", + "country_id": 56, + "country_code": "CU", + "latitude": "20.96167000", + "longitude": "-76.95111000" + }, + { + "id": "21890", + "name": "Manatí", + "state_id": 281, + "state_code": "10", + "country_id": 56, + "country_code": "CU", + "latitude": "21.31070000", + "longitude": "-76.93403000" + }, + { + "id": "21947", + "name": "Puerto Padre", + "state_id": 281, + "state_code": "10", + "country_id": 56, + "country_code": "CU", + "latitude": "21.19517000", + "longitude": "-76.60358000" + }, + { + "id": "21802", + "name": "Alacranes", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.76719000", + "longitude": "-81.56803000" + }, + { + "id": "21817", + "name": "Bolondrón", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.76307000", + "longitude": "-81.44780000" + }, + { + "id": "21824", + "name": "Calimete", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.53420000", + "longitude": "-80.91105000" + }, + { + "id": "21846", + "name": "Cárdenas", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "23.03661000", + "longitude": "-81.20596000" + }, + { + "id": "21838", + "name": "Colón", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.72064000", + "longitude": "-80.90492000" + }, + { + "id": "21870", + "name": "Jagüey Grande", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.52694000", + "longitude": "-81.12861000" + }, + { + "id": "21879", + "name": "Jovellanos", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.80375000", + "longitude": "-81.19127000" + }, + { + "id": "21885", + "name": "Limonar", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.95035000", + "longitude": "-81.41059000" + }, + { + "id": "21886", + "name": "Los Arabos", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.72969000", + "longitude": "-80.72081000" + }, + { + "id": "21891", + "name": "Manguito", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.58733000", + "longitude": "-80.91451000" + }, + { + "id": "21896", + "name": "Martí", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.94714000", + "longitude": "-80.91902000" + }, + { + "id": "21897", + "name": "Matanzas", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "23.04111000", + "longitude": "-81.57750000" + }, + { + "id": "21912", + "name": "Municipio de Cárdenas", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.98978000", + "longitude": "-81.23520000" + }, + { + "id": "21924", + "name": "Municipio de Matanzas", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "23.05000000", + "longitude": "-81.58333000" + }, + { + "id": "21941", + "name": "Pedro Betancourt", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.72709000", + "longitude": "-81.28963000" + }, + { + "id": "21942", + "name": "Perico", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.76987000", + "longitude": "-81.01830000" + }, + { + "id": "21979", + "name": "Unión de Reyes", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "22.79505000", + "longitude": "-81.53617000" + }, + { + "id": "21980", + "name": "Varadero", + "state_id": 284, + "state_code": "04", + "country_id": 56, + "country_code": "CU", + "latitude": "23.15678000", + "longitude": "-81.24441000" + }, + { + "id": "21813", + "name": "Batabanó", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.71794000", + "longitude": "-82.28965000" + }, + { + "id": "21816", + "name": "Bejucal", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.92861000", + "longitude": "-82.38861000" + }, + { + "id": "21864", + "name": "Güines", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.83727000", + "longitude": "-82.02641000" + }, + { + "id": "21871", + "name": "Jamaica", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.97559000", + "longitude": "-82.16852000" + }, + { + "id": "21872", + "name": "Jaruco", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "23.04419000", + "longitude": "-82.00919000" + }, + { + "id": "21881", + "name": "La Salud", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.87199000", + "longitude": "-82.42328000" + }, + { + "id": "21888", + "name": "Madruga", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.91000000", + "longitude": "-81.85639000" + }, + { + "id": "21917", + "name": "Municipio de Güines", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.78712000", + "longitude": "-82.01602000" + }, + { + "id": "21925", + "name": "Municipio de Melena del Sur", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.78821000", + "longitude": "-82.15113000" + }, + { + "id": "21949", + "name": "Quivicán", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.82313000", + "longitude": "-82.35558000" + }, + { + "id": "21963", + "name": "San José de las Lajas", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.96139000", + "longitude": "-82.15111000" + }, + { + "id": "21967", + "name": "San Nicolás de Bari", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "22.78444000", + "longitude": "-81.91333000" + }, + { + "id": "21970", + "name": "Santa Cruz del Norte", + "state_id": 276, + "state_code": "16", + "country_id": 56, + "country_code": "CU", + "latitude": "23.15424000", + "longitude": "-81.92556000" + }, + { + "id": "21840", + "name": "Consolación del Sur", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.50419000", + "longitude": "-83.51442000" + }, + { + "id": "21859", + "name": "Guane", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.20179000", + "longitude": "-84.08484000" + }, + { + "id": "21887", + "name": "Los Palacios", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.58882000", + "longitude": "-83.24671000" + }, + { + "id": "21893", + "name": "Mantua", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.29058000", + "longitude": "-84.28599000" + }, + { + "id": "21900", + "name": "Minas de Matahambre", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.58691000", + "longitude": "-83.94551000" + }, + { + "id": "21911", + "name": "Municipio de Consolación del Sur", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.44095000", + "longitude": "-83.41985000" + }, + { + "id": "21915", + "name": "Municipio de Guane", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.24591000", + "longitude": "-84.03660000" + }, + { + "id": "21920", + "name": "Municipio de La Palma", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.75000000", + "longitude": "-83.55000000" + }, + { + "id": "21921", + "name": "Municipio de Los Palacios", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.58333000", + "longitude": "-83.25000000" + }, + { + "id": "21943", + "name": "Pinar del Río", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.41667000", + "longitude": "-83.69667000" + }, + { + "id": "21946", + "name": "Puerto Esperanza", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.77041000", + "longitude": "-83.73138000" + }, + { + "id": "21961", + "name": "San Diego de Los Baños", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.64667000", + "longitude": "-83.36972000" + }, + { + "id": "21965", + "name": "San Luis", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.27898000", + "longitude": "-83.75956000" + }, + { + "id": "21983", + "name": "Viñales", + "state_id": 277, + "state_code": "01", + "country_id": 56, + "country_code": "CU", + "latitude": "22.61892000", + "longitude": "-83.70694000" + }, + { + "id": "21819", + "name": "Cabaiguán", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "22.07874000", + "longitude": "-79.49726000" + }, + { + "id": "21839", + "name": "Condado", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.87670000", + "longitude": "-79.84014000" + }, + { + "id": "21855", + "name": "Fomento", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "22.10475000", + "longitude": "-79.72141000" + }, + { + "id": "21861", + "name": "Guayos", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "22.04956000", + "longitude": "-79.46106000" + }, + { + "id": "21873", + "name": "Jatibonico", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.94333000", + "longitude": "-79.16906000" + }, + { + "id": "21882", + "name": "La Sierpe", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.77241000", + "longitude": "-79.26832000" + }, + { + "id": "21908", + "name": "Municipio de Cabaiguán", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "22.08333000", + "longitude": "-79.50000000" + }, + { + "id": "21919", + "name": "Municipio de Jatibonico", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.93333000", + "longitude": "-79.16667000" + }, + { + "id": "21932", + "name": "Municipio de Sancti Spíritus", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.82176000", + "longitude": "-79.51036000" + }, + { + "id": "21935", + "name": "Municipio de Trinidad", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.83195000", + "longitude": "-79.88362000" + }, + { + "id": "21968", + "name": "Sancti Spíritus", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.92972000", + "longitude": "-79.44250000" + }, + { + "id": "21977", + "name": "Topes de Collantes", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.91524000", + "longitude": "-80.01929000" + }, + { + "id": "21978", + "name": "Trinidad", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.80224000", + "longitude": "-79.98467000" + }, + { + "id": "21984", + "name": "Yaguajay", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "22.32691000", + "longitude": "-79.23567000" + }, + { + "id": "21986", + "name": "Zaza del Medio", + "state_id": 274, + "state_code": "07", + "country_id": 56, + "country_code": "CU", + "latitude": "21.99712000", + "longitude": "-79.36678000" + }, + { + "id": "21841", + "name": "Contramaestre", + "state_id": 273, + "state_code": "13", + "country_id": 56, + "country_code": "CU", + "latitude": "20.29879000", + "longitude": "-76.24511000" + }, + { + "id": "21849", + "name": "El Cobre", + "state_id": 273, + "state_code": "13", + "country_id": 56, + "country_code": "CU", + "latitude": "20.04850000", + "longitude": "-75.94579000" + }, + { + "id": "21929", + "name": "Municipio de Palma Soriano", + "state_id": 273, + "state_code": "13", + "country_id": 56, + "country_code": "CU", + "latitude": "20.20897000", + "longitude": "-76.05776000" + }, + { + "id": "21934", + "name": "Municipio de Santiago de Cuba", + "state_id": 273, + "state_code": "13", + "country_id": 56, + "country_code": "CU", + "latitude": "20.00617000", + "longitude": "-75.70816000" + }, + { + "id": "21939", + "name": "Palma Soriano", + "state_id": 273, + "state_code": "13", + "country_id": 56, + "country_code": "CU", + "latitude": "20.21130000", + "longitude": "-75.99362000" + }, + { + "id": "21964", + "name": "San Luis", + "state_id": 273, + "state_code": "13", + "country_id": 56, + "country_code": "CU", + "latitude": "20.18809000", + "longitude": "-75.85031000" + }, + { + "id": "21972", + "name": "Santiago de Cuba", + "state_id": 273, + "state_code": "13", + "country_id": 56, + "country_code": "CU", + "latitude": "20.02083000", + "longitude": "-75.82667000" + }, + { + "id": "21822", + "name": "Caibarién", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.51996000", + "longitude": "-79.46599000" + }, + { + "id": "21823", + "name": "Calabazar de Sagua", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.64515000", + "longitude": "-79.89510000" + }, + { + "id": "21826", + "name": "Camajuaní", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.48333000", + "longitude": "-79.75000000" + }, + { + "id": "21835", + "name": "Cifuentes", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.64930000", + "longitude": "-80.04935000" + }, + { + "id": "21842", + "name": "Corralillo", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.98212000", + "longitude": "-80.58556000" + }, + { + "id": "21850", + "name": "Encrucijada", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.61802000", + "longitude": "-79.86603000" + }, + { + "id": "21852", + "name": "Esperanza", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.44680000", + "longitude": "-80.09711000" + }, + { + "id": "21869", + "name": "Isabela de Sagua", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.93924000", + "longitude": "-80.01185000" + }, + { + "id": "21892", + "name": "Manicaragua", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.15021000", + "longitude": "-79.97867000" + }, + { + "id": "21930", + "name": "Municipio de Placetas", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.22248000", + "longitude": "-79.74268000" + }, + { + "id": "21933", + "name": "Municipio de Santa Clara", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.40000000", + "longitude": "-79.96667000" + }, + { + "id": "21944", + "name": "Placetas", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.31184000", + "longitude": "-79.65440000" + }, + { + "id": "21948", + "name": "Quemado de Güines", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.78816000", + "longitude": "-80.25226000" + }, + { + "id": "21950", + "name": "Rancho Veloz", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.88042000", + "longitude": "-80.39098000" + }, + { + "id": "21951", + "name": "Ranchuelo", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.37266000", + "longitude": "-80.15046000" + }, + { + "id": "21957", + "name": "Sagua la Grande", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.80667000", + "longitude": "-80.07556000" + }, + { + "id": "21969", + "name": "Santa Clara", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.40694000", + "longitude": "-79.96472000" + }, + { + "id": "21974", + "name": "Santo Domingo", + "state_id": 280, + "state_code": "05", + "country_id": 56, + "country_code": "CU", + "latitude": "22.58677000", + "longitude": "-80.24261000" + }, + { + "id": "22011", + "name": "Acherítou", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.10022000", + "longitude": "33.86155000" + }, + { + "id": "22014", + "name": "Ammochostos Municipality", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.11755000", + "longitude": "33.94335000" + }, + { + "id": "22020", + "name": "Avgórou", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.03615000", + "longitude": "33.83918000" + }, + { + "id": "22021", + "name": "Ayia Napa", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "34.98213000", + "longitude": "34.00183000" + }, + { + "id": "22102", + "name": "Áchna", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.05515000", + "longitude": "33.78388000" + }, + { + "id": "22023", + "name": "Derýneia", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.06484000", + "longitude": "33.96083000" + }, + { + "id": "22029", + "name": "Famagusta", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.12054000", + "longitude": "33.93894000" + }, + { + "id": "22030", + "name": "Frénaros", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.04121000", + "longitude": "33.92242000" + }, + { + "id": "22052", + "name": "Lefkónoiko", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.25980000", + "longitude": "33.73189000" + }, + { + "id": "22054", + "name": "Leonárisso", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.46892000", + "longitude": "34.13886000" + }, + { + "id": "22056", + "name": "Liopétri", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.00885000", + "longitude": "33.89256000" + }, + { + "id": "22072", + "name": "Paralímni", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.03945000", + "longitude": "33.98181000" + }, + { + "id": "22078", + "name": "Protaras", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.01250000", + "longitude": "34.05833000" + }, + { + "id": "22090", + "name": "Rizokárpaso", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.59719000", + "longitude": "34.37916000" + }, + { + "id": "22095", + "name": "Tríkomo", + "state_id": 749, + "state_code": "04", + "country_id": 57, + "country_code": "CY", + "latitude": "35.28628000", + "longitude": "33.89167000" + }, + { + "id": "22045", + "name": "Kyrenia", + "state_id": 744, + "state_code": "06", + "country_id": 57, + "country_code": "CY", + "latitude": "35.33634000", + "longitude": "33.31729000" + }, + { + "id": "22046", + "name": "Kyrenia Municipality", + "state_id": 744, + "state_code": "06", + "country_id": 57, + "country_code": "CY", + "latitude": "35.33672000", + "longitude": "33.31504000" + }, + { + "id": "22059", + "name": "Lápithos", + "state_id": 744, + "state_code": "06", + "country_id": 57, + "country_code": "CY", + "latitude": "35.33823000", + "longitude": "33.17368000" + }, + { + "id": "22015", + "name": "Aradíppou", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.95151000", + "longitude": "33.59199000" + }, + { + "id": "22019", + "name": "Athíenou", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "35.06180000", + "longitude": "33.54156000" + }, + { + "id": "22104", + "name": "Ágios Týchon", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.72606000", + "longitude": "33.13872000" + }, + { + "id": "22024", + "name": "Dhromolaxia", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.87551000", + "longitude": "33.58684000" + }, + { + "id": "22049", + "name": "Kíti", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.84696000", + "longitude": "33.57344000" + }, + { + "id": "22050", + "name": "Kórnos", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.92396000", + "longitude": "33.39764000" + }, + { + "id": "22039", + "name": "Kofínou", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.82449000", + "longitude": "33.39130000" + }, + { + "id": "22042", + "name": "Kolossi", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.66865000", + "longitude": "32.93375000" + }, + { + "id": "22051", + "name": "Larnaca", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.92291000", + "longitude": "33.62330000" + }, + { + "id": "22057", + "name": "Livádia", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.95118000", + "longitude": "33.62658000" + }, + { + "id": "22062", + "name": "Meneou", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.86114000", + "longitude": "33.59516000" + }, + { + "id": "22064", + "name": "Mosfilotí", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.95256000", + "longitude": "33.42511000" + }, + { + "id": "22087", + "name": "Pérgamos", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "35.04167000", + "longitude": "33.70833000" + }, + { + "id": "22089", + "name": "Pýla", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "35.01237000", + "longitude": "33.69188000" + }, + { + "id": "22076", + "name": "Perivólia", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.83355000", + "longitude": "33.58196000" + }, + { + "id": "22079", + "name": "Psevdás", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.94653000", + "longitude": "33.46277000" + }, + { + "id": "22093", + "name": "Tersefánou", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.85411000", + "longitude": "33.54746000" + }, + { + "id": "22094", + "name": "Troúlloi", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "35.03203000", + "longitude": "33.61501000" + }, + { + "id": "22099", + "name": "Voróklini", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.98600000", + "longitude": "33.65387000" + }, + { + "id": "22100", + "name": "Xylofágou", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "34.97743000", + "longitude": "33.84894000" + }, + { + "id": "22101", + "name": "Xylotymbou", + "state_id": 747, + "state_code": "03", + "country_id": 57, + "country_code": "CY", + "latitude": "35.01720000", + "longitude": "33.74245000" + }, + { + "id": "22103", + "name": "Ágios Tomás", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.71158000", + "longitude": "32.73129000" + }, + { + "id": "22105", + "name": "Ýpsonas", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.68797000", + "longitude": "32.96191000" + }, + { + "id": "22028", + "name": "Erími", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.67766000", + "longitude": "32.91815000" + }, + { + "id": "22031", + "name": "Germasógeia", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.72207000", + "longitude": "33.08254000" + }, + { + "id": "22044", + "name": "Kyperoúnta", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.93815000", + "longitude": "32.97551000" + }, + { + "id": "22053", + "name": "Lemesós", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.69218000", + "longitude": "33.02854000" + }, + { + "id": "22055", + "name": "Limassol", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.68406000", + "longitude": "33.03794000" + }, + { + "id": "22065", + "name": "Mouttagiáka", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.72022000", + "longitude": "33.10066000" + }, + { + "id": "22073", + "name": "Parekklisha", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.74583000", + "longitude": "33.15833000" + }, + { + "id": "22082", + "name": "Páchna", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.77874000", + "longitude": "32.79355000" + }, + { + "id": "22084", + "name": "Páno Polemídia", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.70559000", + "longitude": "32.99269000" + }, + { + "id": "22074", + "name": "Peléndri", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.89597000", + "longitude": "32.96817000" + }, + { + "id": "22077", + "name": "Pissoúri", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.66942000", + "longitude": "32.70132000" + }, + { + "id": "22081", + "name": "Pyrgos", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.74167000", + "longitude": "33.18333000" + }, + { + "id": "22092", + "name": "Soúni-Zanakiá", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.73570000", + "longitude": "32.88437000" + }, + { + "id": "22091", + "name": "Sotíra", + "state_id": 748, + "state_code": "02", + "country_id": 57, + "country_code": "CY", + "latitude": "34.71189000", + "longitude": "32.86340000" + }, + { + "id": "22012", + "name": "Akáki", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.13341000", + "longitude": "33.12873000" + }, + { + "id": "22013", + "name": "Alámpra", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "34.98898000", + "longitude": "33.39887000" + }, + { + "id": "22016", + "name": "Aredioú", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.04844000", + "longitude": "33.19610000" + }, + { + "id": "22018", + "name": "Astromerítis", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.14096000", + "longitude": "33.03793000" + }, + { + "id": "22025", + "name": "Dáli", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.02294000", + "longitude": "33.42195000" + }, + { + "id": "22027", + "name": "Ergátes", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.05365000", + "longitude": "33.24292000" + }, + { + "id": "22035", + "name": "Géri", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.10560000", + "longitude": "33.41977000" + }, + { + "id": "22036", + "name": "Kakopetriá", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "34.98768000", + "longitude": "32.90468000" + }, + { + "id": "22047", + "name": "Káto Defterá", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.08489000", + "longitude": "33.27558000" + }, + { + "id": "22048", + "name": "Káto Pýrgos", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.17897000", + "longitude": "32.68600000" + }, + { + "id": "22038", + "name": "Klírou", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.02004000", + "longitude": "33.17806000" + }, + { + "id": "22040", + "name": "Kokkinotrimithiá", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.15303000", + "longitude": "33.19966000" + }, + { + "id": "22060", + "name": "Léfka", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.11199000", + "longitude": "32.84997000" + }, + { + "id": "22061", + "name": "Lýmpia", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "34.99889000", + "longitude": "33.46175000" + }, + { + "id": "22058", + "name": "Lythrodóntas", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "34.95105000", + "longitude": "33.29777000" + }, + { + "id": "22066", + "name": "Mámmari", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.17604000", + "longitude": "33.20435000" + }, + { + "id": "22067", + "name": "Méniko", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.10945000", + "longitude": "33.14474000" + }, + { + "id": "22068", + "name": "Mórfou", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.19869000", + "longitude": "32.99338000" + }, + { + "id": "22069", + "name": "Nicosia", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.17531000", + "longitude": "33.36420000" + }, + { + "id": "22070", + "name": "Nicosia Municipality", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.16944000", + "longitude": "33.36081000" + }, + { + "id": "22083", + "name": "Páno Defterá", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.07778000", + "longitude": "33.26584000" + }, + { + "id": "22086", + "name": "Péra", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.03350000", + "longitude": "33.25413000" + }, + { + "id": "22075", + "name": "Peristeróna", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.12928000", + "longitude": "33.07858000" + }, + { + "id": "22080", + "name": "Psimolofou", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.06250000", + "longitude": "33.26250000" + }, + { + "id": "22097", + "name": "Tséri", + "state_id": 745, + "state_code": "01", + "country_id": 57, + "country_code": "CY", + "latitude": "35.07307000", + "longitude": "33.32344000" + }, + { + "id": "22017", + "name": "Argáka", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "35.06646000", + "longitude": "32.49446000" + }, + { + "id": "22022", + "name": "Chlórakas", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.79768000", + "longitude": "32.41207000" + }, + { + "id": "22026", + "name": "Emba", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.80700000", + "longitude": "32.42406000" + }, + { + "id": "22033", + "name": "Geroskípou (quarter)", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.76190000", + "longitude": "32.45135000" + }, + { + "id": "22034", + "name": "Geroskípou Municipality", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.75142000", + "longitude": "32.45449000" + }, + { + "id": "22032", + "name": "Geroskipou", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.75498000", + "longitude": "32.45155000" + }, + { + "id": "22037", + "name": "Kissonerga", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.82279000", + "longitude": "32.40131000" + }, + { + "id": "22041", + "name": "Koloni", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.75228000", + "longitude": "32.46487000" + }, + { + "id": "22043", + "name": "Konia", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.78516000", + "longitude": "32.45900000" + }, + { + "id": "22063", + "name": "Mesógi", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.81577000", + "longitude": "32.45542000" + }, + { + "id": "22071", + "name": "Paphos", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.77679000", + "longitude": "32.42451000" + }, + { + "id": "22085", + "name": "Pégeia", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.88341000", + "longitude": "32.38166000" + }, + { + "id": "22088", + "name": "Pólis", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "35.03534000", + "longitude": "32.42575000" + }, + { + "id": "22098", + "name": "Tála", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.83745000", + "longitude": "32.43272000" + }, + { + "id": "22096", + "name": "Tsáda", + "state_id": 746, + "state_code": "05", + "country_id": 57, + "country_code": "CY", + "latitude": "34.83801000", + "longitude": "32.47547000" + }, + { + "id": "23361", + "name": "Úštěk", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.58474000", + "longitude": "14.34332000" + }, + { + "id": "23353", + "name": "Údlice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.44060000", + "longitude": "13.45738000" + }, + { + "id": "23418", + "name": "Šluknov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "51.00369000", + "longitude": "14.45258000" + }, + { + "id": "23430", + "name": "Štětí", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.45298000", + "longitude": "14.37421000" + }, + { + "id": "23439", + "name": "Žatec", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.32717000", + "longitude": "13.54577000" + }, + { + "id": "23452", + "name": "Žitenice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.55528000", + "longitude": "14.15665000" + }, + { + "id": "23399", + "name": "Čížkovice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.48418000", + "longitude": "14.02839000" + }, + { + "id": "23377", + "name": "Černčice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.36138000", + "longitude": "13.84521000" + }, + { + "id": "23383", + "name": "Česká Kamenice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.79780000", + "longitude": "14.41767000" + }, + { + "id": "23400", + "name": "Řehlovice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.60712000", + "longitude": "13.95412000" + }, + { + "id": "22192", + "name": "Bílina", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.54854000", + "longitude": "13.77535000" + }, + { + "id": "22193", + "name": "Bílina Kyselka", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.55000000", + "longitude": "13.76667000" + }, + { + "id": "22207", + "name": "Březno", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.40185000", + "longitude": "13.42118000" + }, + { + "id": "22128", + "name": "Bečov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.44972000", + "longitude": "13.71784000" + }, + { + "id": "22117", + "name": "Bechlín", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.41615000", + "longitude": "14.34092000" + }, + { + "id": "22122", + "name": "Benešov nad Ploučnicí", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.74159000", + "longitude": "14.31239000" + }, + { + "id": "22143", + "name": "Bohušovice nad Ohří", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.49316000", + "longitude": "14.15048000" + }, + { + "id": "22163", + "name": "Braňany", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.54295000", + "longitude": "13.70017000" + }, + { + "id": "22177", + "name": "Budyně nad Ohří", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.40427000", + "longitude": "14.12591000" + }, + { + "id": "22183", + "name": "Bystřany", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.62867000", + "longitude": "13.86419000" + }, + { + "id": "22216", + "name": "Chabařovice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.67318000", + "longitude": "13.94184000" + }, + { + "id": "22244", + "name": "Chřibská", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.86079000", + "longitude": "14.48444000" + }, + { + "id": "22220", + "name": "Chlumec", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.69972000", + "longitude": "13.93964000" + }, + { + "id": "22226", + "name": "Chomutov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.46048000", + "longitude": "13.41779000" + }, + { + "id": "22322", + "name": "Děčín", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.78215000", + "longitude": "14.21478000" + }, + { + "id": "22258", + "name": "Dobroměřice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.37009000", + "longitude": "13.79473000" + }, + { + "id": "22288", + "name": "Dolní Podluží", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.87988000", + "longitude": "14.59503000" + }, + { + "id": "22289", + "name": "Dolní Poustevna", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.98251000", + "longitude": "14.28684000" + }, + { + "id": "22315", + "name": "Dubí", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.68558000", + "longitude": "13.78561000" + }, + { + "id": "22317", + "name": "Duchcov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.60376000", + "longitude": "13.74621000" + }, + { + "id": "22409", + "name": "Hošťka", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.48859000", + "longitude": "14.33500000" + }, + { + "id": "22381", + "name": "Horní Jiřetín", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.57309000", + "longitude": "13.54717000" + }, + { + "id": "22400", + "name": "Hostomice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.58770000", + "longitude": "13.80803000" + }, + { + "id": "22419", + "name": "Hrob", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.65919000", + "longitude": "13.72676000" + }, + { + "id": "22485", + "name": "Jílové", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.76082000", + "longitude": "14.10383000" + }, + { + "id": "22482", + "name": "Jiříkov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.99514000", + "longitude": "14.56910000" + }, + { + "id": "22477", + "name": "Jirkov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.49979000", + "longitude": "13.44769000" + }, + { + "id": "22487", + "name": "Kadaň", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.38333000", + "longitude": "13.26667000" + }, + { + "id": "22586", + "name": "Křešice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.52259000", + "longitude": "14.21450000" + }, + { + "id": "22519", + "name": "Klášterec nad Ohří", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.38860000", + "longitude": "13.18342000" + }, + { + "id": "22550", + "name": "Košťany", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.65507000", + "longitude": "13.75554000" + }, + { + "id": "22546", + "name": "Kovářská", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.43821000", + "longitude": "13.05388000" + }, + { + "id": "22568", + "name": "Krásná Lípa", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.48378000", + "longitude": "13.35750000" + }, + { + "id": "22563", + "name": "Krupka", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.68449000", + "longitude": "13.85815000" + }, + { + "id": "22564", + "name": "Kryry", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.17437000", + "longitude": "13.42660000" + }, + { + "id": "22596", + "name": "Lenešice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.37516000", + "longitude": "13.76590000" + }, + { + "id": "22613", + "name": "Liběšice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.56886000", + "longitude": "14.28906000" + }, + { + "id": "22608", + "name": "Libochovice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.40626000", + "longitude": "14.04439000" + }, + { + "id": "22609", + "name": "Libouchec", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.75854000", + "longitude": "14.04071000" + }, + { + "id": "22623", + "name": "Litoměřice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.53348000", + "longitude": "14.13180000" + }, + { + "id": "22625", + "name": "Litvínov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.60420000", + "longitude": "13.61812000" + }, + { + "id": "22631", + "name": "Lom u Mostu", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.59328000", + "longitude": "13.65729000" + }, + { + "id": "22637", + "name": "Louny", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.35699000", + "longitude": "13.79667000" + }, + { + "id": "22641", + "name": "Lovosice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.51504000", + "longitude": "14.05103000" + }, + { + "id": "22643", + "name": "Lubenec", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13207000", + "longitude": "13.31319000" + }, + { + "id": "22735", + "name": "Měcholupy", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.26666000", + "longitude": "13.53737000" + }, + { + "id": "22683", + "name": "Meziboři", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.62115000", + "longitude": "13.59870000" + }, + { + "id": "22687", + "name": "Mikulášovice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.96507000", + "longitude": "14.36368000" + }, + { + "id": "22725", + "name": "Most", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.50301000", + "longitude": "13.63617000" + }, + { + "id": "22770", + "name": "Novosedlice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.65633000", + "longitude": "13.82304000" + }, + { + "id": "22802", + "name": "Obrnice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.50498000", + "longitude": "13.69540000" + }, + { + "id": "22874", + "name": "Okres Ústí nad Labem", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66667000", + "longitude": "14.05000000" + }, + { + "id": "22813", + "name": "Okres Chomutov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.41667000", + "longitude": "13.33333000" + }, + { + "id": "22816", + "name": "Okres Děčín", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.82905000", + "longitude": "14.34325000" + }, + { + "id": "22834", + "name": "Okres Litoměřice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.50000000", + "longitude": "14.16667000" + }, + { + "id": "22835", + "name": "Okres Louny", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.33333000", + "longitude": "13.66667000" + }, + { + "id": "22837", + "name": "Okres Most", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.55000000", + "longitude": "13.63333000" + }, + { + "id": "22865", + "name": "Okres Teplice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.63333000", + "longitude": "13.83333000" + }, + { + "id": "22897", + "name": "Osek", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.62115000", + "longitude": "13.69274000" + }, + { + "id": "22927", + "name": "Perštejn", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.38166000", + "longitude": "13.11020000" + }, + { + "id": "22926", + "name": "Peruc", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.34250000", + "longitude": "13.95986000" + }, + { + "id": "22944", + "name": "Podbořany", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.22937000", + "longitude": "13.41192000" + }, + { + "id": "22949", + "name": "Polepy", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.50563000", + "longitude": "14.26447000" + }, + { + "id": "22957", + "name": "Postoloprty", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.35979000", + "longitude": "13.70291000" + }, + { + "id": "22962", + "name": "Povrly", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.67276000", + "longitude": "14.16033000" + }, + { + "id": "22976", + "name": "Proboštov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66773000", + "longitude": "13.83601000" + }, + { + "id": "23014", + "name": "Radonice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.29803000", + "longitude": "13.28464000" + }, + { + "id": "23038", + "name": "Roudnice nad Labem", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.42528000", + "longitude": "14.26175000" + }, + { + "id": "23050", + "name": "Rumburk", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.95151000", + "longitude": "14.55699000" + }, + { + "id": "23104", + "name": "Staré Křečany", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.95044000", + "longitude": "14.49617000" + }, + { + "id": "23198", + "name": "Třebenice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.47632000", + "longitude": "13.99005000" + }, + { + "id": "23160", + "name": "Teplice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.64040000", + "longitude": "13.82451000" + }, + { + "id": "23162", + "name": "Terezín", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.51100000", + "longitude": "14.15055000" + }, + { + "id": "23175", + "name": "Trmice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.64286000", + "longitude": "13.99449000" + }, + { + "id": "23223", + "name": "Varnsdorf", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.91154000", + "longitude": "14.61824000" + }, + { + "id": "23225", + "name": "Vejprty", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.49232000", + "longitude": "13.03212000" + }, + { + "id": "23227", + "name": "Velemín", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.53898000", + "longitude": "13.97675000" + }, + { + "id": "23237", + "name": "Velké Březno", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66270000", + "longitude": "14.14174000" + }, + { + "id": "23255", + "name": "Velký Šenov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.99078000", + "longitude": "14.37428000" + }, + { + "id": "23260", + "name": "Verneřice", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66114000", + "longitude": "14.30114000" + }, + { + "id": "23269", + "name": "Vilémov", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.99054000", + "longitude": "14.33531000" + }, + { + "id": "23302", + "name": "Vroutek", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.17999000", + "longitude": "13.37986000" + }, + { + "id": "23322", + "name": "Zabrušany", + "state_id": 4576, + "state_code": "42", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.60495000", + "longitude": "13.78748000" + }, + { + "id": "23360", + "name": "Úvaly", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.07394000", + "longitude": "14.73080000" + }, + { + "id": "23413", + "name": "Šestajovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10845000", + "longitude": "14.68013000" + }, + { + "id": "23426", + "name": "Štěchovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.85109000", + "longitude": "14.40543000" + }, + { + "id": "23458", + "name": "Žďár", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.54366000", + "longitude": "15.08034000" + }, + { + "id": "23441", + "name": "Žebrák", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.87574000", + "longitude": "13.89735000" + }, + { + "id": "23453", + "name": "Žiželice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13192000", + "longitude": "15.39320000" + }, + { + "id": "23454", + "name": "Žleby", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.88958000", + "longitude": "15.48853000" + }, + { + "id": "23398", + "name": "Čáslav", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91099000", + "longitude": "15.38972000" + }, + { + "id": "23364", + "name": "Čechtice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.62403000", + "longitude": "15.04824000" + }, + { + "id": "23369", + "name": "Čelákovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16038000", + "longitude": "14.75005000" + }, + { + "id": "23382", + "name": "Čerčany", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.85293000", + "longitude": "14.70299000" + }, + { + "id": "23372", + "name": "Černošice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96008000", + "longitude": "14.31979000" + }, + { + "id": "23380", + "name": "Červené Pečky", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.97822000", + "longitude": "15.20856000" + }, + { + "id": "23391", + "name": "Český Brod", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.07420000", + "longitude": "14.86081000" + }, + { + "id": "23406", + "name": "Říčany", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99168000", + "longitude": "14.65427000" + }, + { + "id": "23405", + "name": "Řež", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.17734000", + "longitude": "14.35733000" + }, + { + "id": "23403", + "name": "Řevničov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.18489000", + "longitude": "13.80823000" + }, + { + "id": "23402", + "name": "Řevnice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91395000", + "longitude": "14.23589000" + }, + { + "id": "22112", + "name": "Bakov nad Jizerou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.48230000", + "longitude": "14.94149000" + }, + { + "id": "22202", + "name": "Bělá pod Bezdězem", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.50121000", + "longitude": "14.80418000" + }, + { + "id": "22206", + "name": "Březnice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55763000", + "longitude": "13.95063000" + }, + { + "id": "22124", + "name": "Benátky nad Jizerou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.29085000", + "longitude": "14.82343000" + }, + { + "id": "22121", + "name": "Benešov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78162000", + "longitude": "14.68697000" + }, + { + "id": "22126", + "name": "Beroun", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96382000", + "longitude": "14.07200000" + }, + { + "id": "22141", + "name": "Bohutín", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.65551000", + "longitude": "13.94389000" + }, + { + "id": "22158", + "name": "Brandýs nad Labem-Stará Boleslav", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.18709000", + "longitude": "14.66326000" + }, + { + "id": "22160", + "name": "Brandýsek", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.18923000", + "longitude": "14.16199000" + }, + { + "id": "22181", + "name": "Buštěhrad", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.15594000", + "longitude": "14.18897000" + }, + { + "id": "22189", + "name": "Byšice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.31044000", + "longitude": "14.61136000" + }, + { + "id": "22185", + "name": "Bystřice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.73213000", + "longitude": "14.66740000" + }, + { + "id": "22246", + "name": "Církvice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94560000", + "longitude": "15.33505000" + }, + { + "id": "22247", + "name": "Cítov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.37225000", + "longitude": "14.39813000" + }, + { + "id": "22215", + "name": "Cerhenice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.07127000", + "longitude": "15.07203000" + }, + { + "id": "22241", + "name": "Chyňava", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.02736000", + "longitude": "14.07398000" + }, + { + "id": "22251", + "name": "Davle", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89218000", + "longitude": "14.40037000" + }, + { + "id": "22255", + "name": "Divišov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78849000", + "longitude": "14.87579000" + }, + { + "id": "22266", + "name": "Dobříš", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78113000", + "longitude": "14.16717000" + }, + { + "id": "22264", + "name": "Dobřichovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92749000", + "longitude": "14.27469000" + }, + { + "id": "22260", + "name": "Dobrovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.36933000", + "longitude": "14.96233000" + }, + { + "id": "22268", + "name": "Doksy", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.11900000", + "longitude": "14.04782000" + }, + { + "id": "22278", + "name": "Dolní Břežany", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96321000", + "longitude": "14.45850000" + }, + { + "id": "22273", + "name": "Dolní Beřkovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.39313000", + "longitude": "14.45024000" + }, + { + "id": "22276", + "name": "Dolní Bousov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.43825000", + "longitude": "15.12812000" + }, + { + "id": "22441", + "name": "Hýskov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99072000", + "longitude": "14.05055000" + }, + { + "id": "22442", + "name": "Hřebeč", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13595000", + "longitude": "14.16446000" + }, + { + "id": "22408", + "name": "Hořovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83597000", + "longitude": "13.90268000" + }, + { + "id": "22386", + "name": "Horní Počaply", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.42440000", + "longitude": "14.38993000" + }, + { + "id": "22395", + "name": "Horoměřice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13173000", + "longitude": "14.33879000" + }, + { + "id": "22399", + "name": "Hostivice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08158000", + "longitude": "14.25856000" + }, + { + "id": "22401", + "name": "Hostomice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.82526000", + "longitude": "14.04560000" + }, + { + "id": "22405", + "name": "Hovorčovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.17866000", + "longitude": "14.51789000" + }, + { + "id": "22415", + "name": "Hradištko", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86828000", + "longitude": "14.40935000" + }, + { + "id": "22432", + "name": "Hudlice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96096000", + "longitude": "13.97063000" + }, + { + "id": "22486", + "name": "Jílové u Prahy", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89545000", + "longitude": "14.49333000" + }, + { + "id": "22465", + "name": "Jeneč", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08730000", + "longitude": "14.21482000" + }, + { + "id": "22466", + "name": "Jesenice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96814000", + "longitude": "14.51350000" + }, + { + "id": "22474", + "name": "Jince", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78624000", + "longitude": "13.97867000" + }, + { + "id": "22478", + "name": "Jirny", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.11578000", + "longitude": "14.69923000" + }, + { + "id": "22505", + "name": "Kačice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16261000", + "longitude": "13.98815000" + }, + { + "id": "22489", + "name": "Kamenice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90151000", + "longitude": "14.58242000" + }, + { + "id": "22492", + "name": "Kamenné Žehrovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12697000", + "longitude": "14.01809000" + }, + { + "id": "22493", + "name": "Kamenný Přívoz", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86299000", + "longitude": "14.50339000" + }, + { + "id": "22587", + "name": "Křinec", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.26449000", + "longitude": "15.13782000" + }, + { + "id": "22510", + "name": "Kladno", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.14734000", + "longitude": "14.10285000" + }, + { + "id": "22513", + "name": "Klecany", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.17599000", + "longitude": "14.41148000" + }, + { + "id": "22517", + "name": "Klobuky", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.29401000", + "longitude": "13.98748000" + }, + { + "id": "22522", + "name": "Kněžmost", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.48917000", + "longitude": "15.03829000" + }, + { + "id": "22529", + "name": "Kolín", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.02806000", + "longitude": "15.19980000" + }, + { + "id": "22531", + "name": "Komárov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.80650000", + "longitude": "13.85636000" + }, + { + "id": "22536", + "name": "Kosmonosy", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.43850000", + "longitude": "14.93000000" + }, + { + "id": "22537", + "name": "Kosova Hora", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.65414000", + "longitude": "14.47173000" + }, + { + "id": "22541", + "name": "Kostelec nad Černými Lesy", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99403000", + "longitude": "14.85922000" + }, + { + "id": "22539", + "name": "Kostelec nad Labem", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.22653000", + "longitude": "14.58552000" + }, + { + "id": "22544", + "name": "Kouřim", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00306000", + "longitude": "14.97703000" + }, + { + "id": "22555", + "name": "Kralupy nad Vltavou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.24107000", + "longitude": "14.31149000" + }, + { + "id": "22566", + "name": "Králův Dvůr", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94981000", + "longitude": "14.03445000" + }, + { + "id": "22567", + "name": "Krásná Hora nad Vltavou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.60461000", + "longitude": "14.27742000" + }, + { + "id": "22576", + "name": "Kutná Hora", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94839000", + "longitude": "15.26816000" + }, + { + "id": "22661", + "name": "Lány", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12471000", + "longitude": "13.95041000" + }, + { + "id": "22665", + "name": "Líbeznice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.19198000", + "longitude": "14.49357000" + }, + { + "id": "22612", + "name": "Libčice nad Vltavou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.19778000", + "longitude": "14.36385000" + }, + { + "id": "22607", + "name": "Libiš", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.27417000", + "longitude": "14.50240000" + }, + { + "id": "22606", + "name": "Libice nad Cidlinou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12677000", + "longitude": "15.17820000" + }, + { + "id": "22610", + "name": "Libušín", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16819000", + "longitude": "14.05458000" + }, + { + "id": "22628", + "name": "Lochovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.85318000", + "longitude": "13.98126000" + }, + { + "id": "22629", + "name": "Loděnice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99486000", + "longitude": "14.15785000" + }, + { + "id": "22638", + "name": "Loučeň", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.28537000", + "longitude": "15.02049000" + }, + { + "id": "22654", + "name": "Luštěnice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.32296000", + "longitude": "14.93667000" + }, + { + "id": "22656", + "name": "Lužec nad Vltavou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.32138000", + "longitude": "14.40022000" + }, + { + "id": "22658", + "name": "Lužná", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12377000", + "longitude": "13.77004000" + }, + { + "id": "22660", + "name": "Lysá nad Labem", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.20143000", + "longitude": "14.83281000" + }, + { + "id": "22748", + "name": "Mšeno", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.43809000", + "longitude": "14.63250000" + }, + { + "id": "22747", + "name": "Měšice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.19799000", + "longitude": "14.51992000" + }, + { + "id": "22736", + "name": "Mělník", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.35050000", + "longitude": "14.47411000" + }, + { + "id": "22738", + "name": "Městec Králové", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.20718000", + "longitude": "15.29758000" + }, + { + "id": "22693", + "name": "Milín", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63192000", + "longitude": "14.04600000" + }, + { + "id": "22691", + "name": "Milovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.22596000", + "longitude": "14.88863000" + }, + { + "id": "22701", + "name": "Mladá Boleslav", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.41135000", + "longitude": "14.90318000" + }, + { + "id": "22707", + "name": "Mníšek pod Brdy", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86650000", + "longitude": "14.26176000" + }, + { + "id": "22704", + "name": "Mnichovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93601000", + "longitude": "14.70907000" + }, + { + "id": "22705", + "name": "Mnichovo Hradiště", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.52720000", + "longitude": "14.97134000" + }, + { + "id": "22732", + "name": "Mukařov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99115000", + "longitude": "14.74155000" + }, + { + "id": "22751", + "name": "Načeradec", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.61018000", + "longitude": "14.90633000" + }, + { + "id": "22756", + "name": "Nehvizdy", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13056000", + "longitude": "14.72993000" + }, + { + "id": "22758", + "name": "Nelahozeves", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.26148000", + "longitude": "14.29881000" + }, + { + "id": "22760", + "name": "Neratovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.25926000", + "longitude": "14.51759000" + }, + { + "id": "22763", + "name": "Netvořice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.81569000", + "longitude": "14.51827000" + }, + { + "id": "22764", + "name": "Neveklov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75373000", + "longitude": "14.53291000" + }, + { + "id": "22768", + "name": "Nižbor", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99995000", + "longitude": "14.00237000" + }, + { + "id": "22782", + "name": "Nové Strašecí", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.15272000", + "longitude": "13.90043000" + }, + { + "id": "22789", + "name": "Nový Knín", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78800000", + "longitude": "14.29355000" + }, + { + "id": "22791", + "name": "Nymburk", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.18605000", + "longitude": "15.04167000" + }, + { + "id": "22801", + "name": "Obecnice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71615000", + "longitude": "13.94731000" + }, + { + "id": "22803", + "name": "Odolena Voda", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.23341000", + "longitude": "14.41078000" + }, + { + "id": "22806", + "name": "Okres Benešov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66667000", + "longitude": "14.75000000" + }, + { + "id": "22807", + "name": "Okres Beroun", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83333000", + "longitude": "14.08333000" + }, + { + "id": "22828", + "name": "Okres Kladno", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16667000", + "longitude": "14.16667000" + }, + { + "id": "22830", + "name": "Okres Kolín", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00000000", + "longitude": "15.00000000" + }, + { + "id": "22832", + "name": "Okres Kutná Hora", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83333000", + "longitude": "15.25000000" + }, + { + "id": "22838", + "name": "Okres Mělník", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.33333000", + "longitude": "14.50000000" + }, + { + "id": "22836", + "name": "Okres Mladá Boleslav", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.41667000", + "longitude": "14.91667000" + }, + { + "id": "22840", + "name": "Okres Nymburk", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16667000", + "longitude": "15.16667000" + }, + { + "id": "22856", + "name": "Okres Příbram", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66667000", + "longitude": "14.16667000" + }, + { + "id": "22851", + "name": "Okres Praha-východ", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.11768000", + "longitude": "14.70836000" + }, + { + "id": "22852", + "name": "Okres Praha-západ", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83333000", + "longitude": "14.33333000" + }, + { + "id": "22857", + "name": "Okres Rakovník", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10000000", + "longitude": "13.70000000" + }, + { + "id": "22889", + "name": "Ondřejov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90461000", + "longitude": "14.78420000" + }, + { + "id": "22922", + "name": "Pavlíkov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.05599000", + "longitude": "13.73636000" + }, + { + "id": "23008", + "name": "Příbram", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.68988000", + "longitude": "14.01043000" + }, + { + "id": "23002", + "name": "Přerov nad Labem", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16027000", + "longitude": "14.82502000" + }, + { + "id": "22923", + "name": "Pchery", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.19378000", + "longitude": "14.11782000" + }, + { + "id": "22932", + "name": "Pečky", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.09043000", + "longitude": "15.03017000" + }, + { + "id": "22929", + "name": "Petrovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55426000", + "longitude": "14.33737000" + }, + { + "id": "22939", + "name": "Plaňany", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.05010000", + "longitude": "15.02944000" + }, + { + "id": "22966", + "name": "Poříčany", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10806000", + "longitude": "14.91818000" + }, + { + "id": "22967", + "name": "Poříčí nad Sázavou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83895000", + "longitude": "14.67446000" + }, + { + "id": "22947", + "name": "Poděbrady", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.14242000", + "longitude": "15.11881000" + }, + { + "id": "22958", + "name": "Postupice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72798000", + "longitude": "14.77722000" + }, + { + "id": "22986", + "name": "Průhonice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99962000", + "longitude": "14.55017000" + }, + { + "id": "22987", + "name": "Psáry", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93622000", + "longitude": "14.51276000" + }, + { + "id": "22991", + "name": "Pyšely", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.87678000", + "longitude": "14.67713000" + }, + { + "id": "23019", + "name": "Rakovník", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10370000", + "longitude": "13.73340000" + }, + { + "id": "23044", + "name": "Rožďalovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.30476000", + "longitude": "15.16962000" + }, + { + "id": "23042", + "name": "Rožmitál pod Třemšínem", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.60196000", + "longitude": "13.86430000" + }, + { + "id": "23041", + "name": "Roztoky", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.15841000", + "longitude": "14.39760000" + }, + { + "id": "23047", + "name": "Rudná", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.03502000", + "longitude": "14.23435000" + }, + { + "id": "23059", + "name": "Sadská", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13596000", + "longitude": "14.98633000" + }, + { + "id": "23154", + "name": "Sázava", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.87164000", + "longitude": "14.89674000" + }, + { + "id": "23066", + "name": "Sedlčany", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66057000", + "longitude": "14.42664000" + }, + { + "id": "23062", + "name": "Sedlec", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96391000", + "longitude": "15.28846000" + }, + { + "id": "23077", + "name": "Slaný", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.23046000", + "longitude": "14.08693000" + }, + { + "id": "23085", + "name": "Smečno", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.18844000", + "longitude": "14.04037000" + }, + { + "id": "23100", + "name": "Stará Huť", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78225000", + "longitude": "14.19735000" + }, + { + "id": "23112", + "name": "Starý Kolín", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00977000", + "longitude": "15.29388000" + }, + { + "id": "23117", + "name": "Stochov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.14631000", + "longitude": "13.96345000" + }, + { + "id": "23121", + "name": "Strančice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94811000", + "longitude": "14.67745000" + }, + { + "id": "23140", + "name": "Suchdol", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.95247000", + "longitude": "15.16651000" + }, + { + "id": "23192", + "name": "Týnec nad Labem", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.04202000", + "longitude": "15.35836000" + }, + { + "id": "23193", + "name": "Týnec nad Sázavou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83348000", + "longitude": "14.58983000" + }, + { + "id": "23199", + "name": "Třebotov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.97244000", + "longitude": "14.29127000" + }, + { + "id": "23165", + "name": "Tišice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.26980000", + "longitude": "14.55411000" + }, + { + "id": "23174", + "name": "Trhový Štěpánov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71147000", + "longitude": "15.01356000" + }, + { + "id": "23183", + "name": "Tuchlovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13803000", + "longitude": "13.99115000" + }, + { + "id": "23184", + "name": "Tuchoměřice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13543000", + "longitude": "14.28218000" + }, + { + "id": "23209", + "name": "Uhlířské Janovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.88019000", + "longitude": "15.06481000" + }, + { + "id": "23210", + "name": "Unhošť", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08535000", + "longitude": "14.13007000" + }, + { + "id": "23318", + "name": "Všenory", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92883000", + "longitude": "14.30392000" + }, + { + "id": "23321", + "name": "Všetaty", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.28187000", + "longitude": "14.59297000" + }, + { + "id": "23229", + "name": "Velim", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.05965000", + "longitude": "15.10711000" + }, + { + "id": "23232", + "name": "Velká Dobrá", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10964000", + "longitude": "14.06980000" + }, + { + "id": "23249", + "name": "Velké Přílepy", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16050000", + "longitude": "14.31447000" + }, + { + "id": "23247", + "name": "Velké Popovice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92252000", + "longitude": "14.63934000" + }, + { + "id": "23252", + "name": "Velký Osek", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.09867000", + "longitude": "15.18629000" + }, + { + "id": "23256", + "name": "Veltruby", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.07059000", + "longitude": "15.18454000" + }, + { + "id": "23257", + "name": "Veltrusy", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.27046000", + "longitude": "14.32857000" + }, + { + "id": "23258", + "name": "Velvary", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.28152000", + "longitude": "14.23616000" + }, + { + "id": "23263", + "name": "Vestec", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.98050000", + "longitude": "14.50487000" + }, + { + "id": "23272", + "name": "Vinařice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.17585000", + "longitude": "14.09106000" + }, + { + "id": "23281", + "name": "Vlašim", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.70632000", + "longitude": "14.89881000" + }, + { + "id": "23290", + "name": "Votice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.64013000", + "longitude": "14.63809000" + }, + { + "id": "23293", + "name": "Vrané nad Vltavou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93585000", + "longitude": "14.37706000" + }, + { + "id": "23301", + "name": "Vrdy", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92153000", + "longitude": "15.47243000" + }, + { + "id": "23324", + "name": "Zaječov", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77435000", + "longitude": "13.84072000" + }, + { + "id": "23351", + "name": "Zásmuky", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.95470000", + "longitude": "15.03058000" + }, + { + "id": "23331", + "name": "Zbraslavice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.81179000", + "longitude": "15.18319000" + }, + { + "id": "23334", + "name": "Zdiby", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16799000", + "longitude": "14.45118000" + }, + { + "id": "23335", + "name": "Zdice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91207000", + "longitude": "13.97747000" + }, + { + "id": "23338", + "name": "Zeleneč", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13362000", + "longitude": "14.66070000" + }, + { + "id": "23342", + "name": "Zlonice", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.28750000", + "longitude": "14.09214000" + }, + { + "id": "23345", + "name": "Zruč nad Sázavou", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.74010000", + "longitude": "15.10606000" + }, + { + "id": "23347", + "name": "Zvole", + "state_id": 4554, + "state_code": "20", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93466000", + "longitude": "14.41769000" + }, + { + "id": "22109", + "name": "Albrechtice nad Orlicí", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13979000", + "longitude": "16.06437000" + }, + { + "id": "23357", + "name": "Úpice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.51237000", + "longitude": "16.01607000" + }, + { + "id": "23419", + "name": "Špindlerův Mlýn", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.72615000", + "longitude": "15.60944000" + }, + { + "id": "23436", + "name": "Žacléř", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66329000", + "longitude": "15.91063000" + }, + { + "id": "23443", + "name": "Železnice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.47274000", + "longitude": "15.38459000" + }, + { + "id": "23362", + "name": "Častolovice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12910000", + "longitude": "16.18128000" + }, + { + "id": "23370", + "name": "Černilov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.26265000", + "longitude": "15.92254000" + }, + { + "id": "23374", + "name": "Černožice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.31863000", + "longitude": "15.87403000" + }, + { + "id": "23381", + "name": "Červený Kostelec", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.47626000", + "longitude": "16.09289000" + }, + { + "id": "23385", + "name": "Česká Skalice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.39467000", + "longitude": "16.04276000" + }, + { + "id": "23389", + "name": "České Meziříčí", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.28680000", + "longitude": "16.04428000" + }, + { + "id": "22198", + "name": "Bílá Třemešná", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.44465000", + "longitude": "15.74101000" + }, + { + "id": "22148", + "name": "Borohrádek", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.09777000", + "longitude": "16.09326000" + }, + { + "id": "22169", + "name": "Broumov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.58566000", + "longitude": "16.33181000" + }, + { + "id": "22221", + "name": "Chlumec nad Cidlinou", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.15440000", + "longitude": "15.46026000" + }, + { + "id": "22261", + "name": "Dobruška", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.29201000", + "longitude": "16.16001000" + }, + { + "id": "22298", + "name": "Dolní Černilov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.26110000", + "longitude": "15.96107000" + }, + { + "id": "22306", + "name": "Doudleby nad Orlicí", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10742000", + "longitude": "16.26131000" + }, + { + "id": "22319", + "name": "Dvůr Králové nad Labem", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.43172000", + "longitude": "15.81402000" + }, + { + "id": "22407", + "name": "Hořice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.36609000", + "longitude": "15.63183000" + }, + { + "id": "22398", + "name": "Hostinné", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.54066000", + "longitude": "15.72334000" + }, + { + "id": "22412", + "name": "Hradec Králové", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.20923000", + "longitude": "15.83277000" + }, + { + "id": "22422", + "name": "Hronov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.47968000", + "longitude": "16.18230000" + }, + { + "id": "22456", + "name": "Jaroměř", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.35620000", + "longitude": "15.92136000" + }, + { + "id": "22481", + "name": "Jičín", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.43723000", + "longitude": "15.35162000" + }, + { + "id": "22533", + "name": "Kopidlno", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.33085000", + "longitude": "15.27029000" + }, + { + "id": "22540", + "name": "Kostelec nad Orlicí", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12267000", + "longitude": "16.21319000" + }, + { + "id": "22579", + "name": "Kvasiny", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.21250000", + "longitude": "16.26323000" + }, + { + "id": "22663", + "name": "Lázně Bělohrad", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.42874000", + "longitude": "15.58269000" + }, + { + "id": "22611", + "name": "Libáň", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.37542000", + "longitude": "15.21684000" + }, + { + "id": "22668", + "name": "Machov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.49927000", + "longitude": "16.27690000" + }, + { + "id": "22673", + "name": "Malé Svatoňovice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.53395000", + "longitude": "16.04978000" + }, + { + "id": "22684", + "name": "Meziměstí", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.62461000", + "longitude": "16.24207000" + }, + { + "id": "22703", + "name": "Mladé Buky", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.60643000", + "longitude": "15.83348000" + }, + { + "id": "22726", + "name": "Mostek", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.48623000", + "longitude": "15.69622000" + }, + { + "id": "22792", + "name": "Náchod", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.41670000", + "longitude": "16.16289000" + }, + { + "id": "22752", + "name": "Nechanice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.23737000", + "longitude": "15.63276000" + }, + { + "id": "22774", + "name": "Nová Paka", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.49449000", + "longitude": "15.51503000" + }, + { + "id": "22779", + "name": "Nové Město nad Metují", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.34456000", + "longitude": "16.15147000" + }, + { + "id": "22786", + "name": "Nový Bydžov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.24150000", + "longitude": "15.49082000" + }, + { + "id": "22820", + "name": "Okres Hradec Králové", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.25000000", + "longitude": "15.66667000" + }, + { + "id": "22825", + "name": "Okres Jičín", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.41667000", + "longitude": "15.41667000" + }, + { + "id": "22841", + "name": "Okres Náchod", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.41667000", + "longitude": "16.16667000" + }, + { + "id": "22859", + "name": "Okres Rychnov nad Kněžnou", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.23333000", + "longitude": "16.28333000" + }, + { + "id": "22866", + "name": "Okres Trutnov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.58333000", + "longitude": "15.83333000" + }, + { + "id": "22894", + "name": "Opočno", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.26742000", + "longitude": "16.11480000" + }, + { + "id": "22906", + "name": "Ostroměř", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.37246000", + "longitude": "15.54949000" + }, + { + "id": "22998", + "name": "Předměřice nad Labem", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.25633000", + "longitude": "15.81556000" + }, + { + "id": "22924", + "name": "Pecka", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.48034000", + "longitude": "15.60822000" + }, + { + "id": "22933", + "name": "Pilníkov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.53247000", + "longitude": "15.82020000" + }, + { + "id": "22951", + "name": "Police nad Metují", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.53687000", + "longitude": "16.23350000" + }, + { + "id": "22983", + "name": "Provodov-Šonov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.38711000", + "longitude": "16.10797000" + }, + { + "id": "23016", + "name": "Radvanice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.56745000", + "longitude": "16.06172000" + }, + { + "id": "23031", + "name": "Rokytnice v Orlických Horách", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16473000", + "longitude": "16.46567000" + }, + { + "id": "23045", + "name": "Rtyně v Podkrkonoší", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.50523000", + "longitude": "16.07187000" + }, + { + "id": "23048", + "name": "Rudník", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.59517000", + "longitude": "15.73362000" + }, + { + "id": "23053", + "name": "Rychnov nad Kněžnou", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16284000", + "longitude": "16.27488000" + }, + { + "id": "23075", + "name": "Skuhrov nad Bělou", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.22946000", + "longitude": "16.29230000" + }, + { + "id": "23087", + "name": "Smiřice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.29978000", + "longitude": "15.86508000" + }, + { + "id": "23086", + "name": "Smidary", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.29146000", + "longitude": "15.47725000" + }, + { + "id": "23090", + "name": "Sobotka", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.46741000", + "longitude": "15.17619000" + }, + { + "id": "23095", + "name": "Solnice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.20366000", + "longitude": "16.23762000" + }, + { + "id": "23101", + "name": "Stará Paka", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.51032000", + "longitude": "15.49444000" + }, + { + "id": "23109", + "name": "Staré Nechanice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.24298000", + "longitude": "15.61787000" + }, + { + "id": "23136", + "name": "Stěžery", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.21572000", + "longitude": "15.74831000" + }, + { + "id": "23151", + "name": "Svoboda nad Úpou", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.62596000", + "longitude": "15.81648000" + }, + { + "id": "23194", + "name": "Týniště nad Orlicí", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.15136000", + "longitude": "16.07770000" + }, + { + "id": "23197", + "name": "Třebechovice pod Orebem", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.20097000", + "longitude": "15.99223000" + }, + { + "id": "23161", + "name": "Teplice nad Metují", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.59332000", + "longitude": "16.17026000" + }, + { + "id": "23181", + "name": "Trutnov", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.56101000", + "longitude": "15.91270000" + }, + { + "id": "23219", + "name": "Valdice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.45501000", + "longitude": "15.38488000" + }, + { + "id": "23222", + "name": "Vamberk", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.11756000", + "longitude": "16.29067000" + }, + { + "id": "23320", + "name": "Všestary", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.25660000", + "longitude": "15.75983000" + }, + { + "id": "23248", + "name": "Velké Poříčí", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.46177000", + "longitude": "16.18931000" + }, + { + "id": "23250", + "name": "Velké Svatoňovice", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.53164000", + "longitude": "16.02853000" + }, + { + "id": "23300", + "name": "Vrchlabí", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.62697000", + "longitude": "15.60937000" + }, + { + "id": "23323", + "name": "Zadní Mostek", + "state_id": 4614, + "state_code": "52", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.49670000", + "longitude": "15.69804000" + }, + { + "id": "22110", + "name": "Aš", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.22387000", + "longitude": "12.19499000" + }, + { + "id": "22106", + "name": "Abertamy", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.36874000", + "longitude": "12.81826000" + }, + { + "id": "23456", + "name": "Žlutice", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.09192000", + "longitude": "13.16297000" + }, + { + "id": "22209", + "name": "Březová", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.14557000", + "longitude": "12.64996000" + }, + { + "id": "22137", + "name": "Bochov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.14872000", + "longitude": "13.05227000" + }, + { + "id": "22178", + "name": "Bukovany", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16632000", + "longitude": "12.57265000" + }, + { + "id": "22217", + "name": "Cheb", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.07963000", + "longitude": "12.37392000" + }, + { + "id": "22224", + "name": "Chodov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.24018000", + "longitude": "12.74551000" + }, + { + "id": "22248", + "name": "Dalovice", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.24779000", + "longitude": "12.89581000" + }, + { + "id": "22299", + "name": "Dolní Žandov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.01794000", + "longitude": "12.55101000" + }, + { + "id": "22292", + "name": "Dolní Rychnov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16462000", + "longitude": "12.64507000" + }, + { + "id": "22326", + "name": "Františkovy Lázně", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12033000", + "longitude": "12.35174000" + }, + { + "id": "22337", + "name": "Habartov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.18297000", + "longitude": "12.55054000" + }, + { + "id": "22346", + "name": "Hazlov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.15634000", + "longitude": "12.27238000" + }, + { + "id": "22388", + "name": "Horní Slavkov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13863000", + "longitude": "12.80758000" + }, + { + "id": "22416", + "name": "Hranice", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.30459000", + "longitude": "12.17577000" + }, + { + "id": "22425", + "name": "Hroznětín", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.30940000", + "longitude": "12.87180000" + }, + { + "id": "22484", + "name": "Jáchymov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.35846000", + "longitude": "12.93465000" + }, + { + "id": "22498", + "name": "Karlovy Vary", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.23271000", + "longitude": "12.87117000" + }, + { + "id": "22518", + "name": "Klášter", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96762000", + "longitude": "12.87623000" + }, + { + "id": "22556", + "name": "Kraslice", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.32372000", + "longitude": "12.51747000" + }, + { + "id": "22581", + "name": "Kynšperk nad Ohří", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.11893000", + "longitude": "12.53027000" + }, + { + "id": "22664", + "name": "Lázně Kynžvart", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.01058000", + "longitude": "12.62474000" + }, + { + "id": "22630", + "name": "Loket", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.18600000", + "longitude": "12.75405000" + }, + { + "id": "22633", + "name": "Lomnice", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.21174000", + "longitude": "12.63267000" + }, + { + "id": "22644", + "name": "Luby", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.25248000", + "longitude": "12.40595000" + }, + { + "id": "22676", + "name": "Mariánské Lázně", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96459000", + "longitude": "12.70118000" + }, + { + "id": "22740", + "name": "Město", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.97997000", + "longitude": "12.86432000" + }, + { + "id": "22681", + "name": "Merklín", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.32808000", + "longitude": "12.86350000" + }, + { + "id": "22757", + "name": "Nejdek", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.32242000", + "longitude": "12.72936000" + }, + { + "id": "22775", + "name": "Nová Role", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.27092000", + "longitude": "12.78422000" + }, + { + "id": "22781", + "name": "Nové Sedlo", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.20647000", + "longitude": "12.73800000" + }, + { + "id": "22812", + "name": "Okres Cheb", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08333000", + "longitude": "12.50000000" + }, + { + "id": "22826", + "name": "Okres Karlovy Vary", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16667000", + "longitude": "13.00000000" + }, + { + "id": "22861", + "name": "Okres Sokolov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.21667000", + "longitude": "12.63333000" + }, + { + "id": "22887", + "name": "Oloví", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.25113000", + "longitude": "12.55877000" + }, + { + "id": "22907", + "name": "Ostrov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.30592000", + "longitude": "12.93907000" + }, + { + "id": "22940", + "name": "Plesná", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.22070000", + "longitude": "12.34669000" + }, + { + "id": "23036", + "name": "Rotava", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.29627000", + "longitude": "12.57341000" + }, + { + "id": "23058", + "name": "Sadov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.26711000", + "longitude": "12.89708000" + }, + { + "id": "23073", + "name": "Skalná", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.17030000", + "longitude": "12.36144000" + }, + { + "id": "23094", + "name": "Sokolov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.18130000", + "longitude": "12.64010000" + }, + { + "id": "23147", + "name": "Svatava", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.19223000", + "longitude": "12.62524000" + }, + { + "id": "23170", + "name": "Toužim", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.06049000", + "longitude": "12.98506000" + }, + { + "id": "23233", + "name": "Velká Hleďsebe", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96151000", + "longitude": "12.66763000" + }, + { + "id": "23274", + "name": "Vintířov", + "state_id": 4581, + "state_code": "41", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.23382000", + "longitude": "12.71748000" + }, + { + "id": "23438", + "name": "Žandov", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.71394000", + "longitude": "14.39623000" + }, + { + "id": "23445", + "name": "Železný Brod", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.64274000", + "longitude": "15.25408000" + }, + { + "id": "23384", + "name": "Česká Lípa", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.68551000", + "longitude": "14.53764000" + }, + { + "id": "23392", + "name": "Český Dub", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66054000", + "longitude": "14.99617000" + }, + { + "id": "22120", + "name": "Benecko", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66633000", + "longitude": "15.54816000" + }, + { + "id": "22165", + "name": "Brniště", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.72919000", + "longitude": "14.70338000" + }, + { + "id": "22232", + "name": "Chrastava", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.81693000", + "longitude": "14.96884000" + }, + { + "id": "22245", + "name": "Cvikov", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.77668000", + "longitude": "14.63298000" + }, + { + "id": "22254", + "name": "Desná", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.75987000", + "longitude": "15.30284000" + }, + { + "id": "22269", + "name": "Doksy", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.56471000", + "longitude": "14.65553000" + }, + { + "id": "22314", + "name": "Dubá", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.54034000", + "longitude": "14.54023000" + }, + { + "id": "22332", + "name": "Frýdlant", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.92139000", + "longitude": "15.07974000" + }, + { + "id": "22342", + "name": "Harrachov", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.77209000", + "longitude": "15.43141000" + }, + { + "id": "22348", + "name": "Hejnice", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.87720000", + "longitude": "15.18168000" + }, + { + "id": "22362", + "name": "Hodkovice nad Mohelkou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66586000", + "longitude": "15.08985000" + }, + { + "id": "22377", + "name": "Horní Branná", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.60826000", + "longitude": "15.57146000" + }, + { + "id": "22431", + "name": "Hrádek nad Nisou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.85279000", + "longitude": "14.84455000" + }, + { + "id": "22445", + "name": "Jablonec nad Jizerou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.70347000", + "longitude": "15.42959000" + }, + { + "id": "22446", + "name": "Jablonec nad Nisou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.72431000", + "longitude": "15.17108000" + }, + { + "id": "22448", + "name": "Jablonné v Podještědí", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.76528000", + "longitude": "14.76052000" + }, + { + "id": "22453", + "name": "Janov nad Nisou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.77204000", + "longitude": "15.16913000" + }, + { + "id": "22472", + "name": "Jilemnice", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.60890000", + "longitude": "15.50653000" + }, + { + "id": "22483", + "name": "Josefův Důl", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.78191000", + "longitude": "15.23146000" + }, + { + "id": "22491", + "name": "Kamenický Šenov", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.77359000", + "longitude": "14.47287000" + }, + { + "id": "22551", + "name": "Košťálov", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.57165000", + "longitude": "15.40403000" + }, + { + "id": "22549", + "name": "Kořenov", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.75926000", + "longitude": "15.36532000" + }, + { + "id": "22604", + "name": "Liberec", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.76711000", + "longitude": "15.05619000" + }, + { + "id": "22635", + "name": "Lomnice nad Popelkou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.53062000", + "longitude": "15.37341000" + }, + { + "id": "22652", + "name": "Lučany nad Nisou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.74136000", + "longitude": "15.22046000" + }, + { + "id": "22671", + "name": "Malá Skála", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.64631000", + "longitude": "15.19543000" + }, + { + "id": "22694", + "name": "Mimoň", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.65869000", + "longitude": "14.72474000" + }, + { + "id": "22706", + "name": "Mníšek", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.83163000", + "longitude": "15.05630000" + }, + { + "id": "22780", + "name": "Nové Město pod Smrkem", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.92491000", + "longitude": "15.22943000" + }, + { + "id": "22785", + "name": "Nový Bor", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.75761000", + "longitude": "14.55555000" + }, + { + "id": "22805", + "name": "Ohrazenice", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.59765000", + "longitude": "15.12596000" + }, + { + "id": "22876", + "name": "Okres Česká Lípa", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66667000", + "longitude": "14.66667000" + }, + { + "id": "22821", + "name": "Okres Jablonec nad Nisou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.75000000", + "longitude": "15.25000000" + }, + { + "id": "22833", + "name": "Okres Liberec", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.83333000", + "longitude": "15.08333000" + }, + { + "id": "22860", + "name": "Okres Semily", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.61667000", + "longitude": "15.41667000" + }, + { + "id": "22899", + "name": "Osečná", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.69489000", + "longitude": "14.92138000" + }, + { + "id": "22996", + "name": "Pěnčín", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.68769000", + "longitude": "15.23593000" + }, + { + "id": "23010", + "name": "Příšovice", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.57813000", + "longitude": "15.08390000" + }, + { + "id": "22938", + "name": "Plavy", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.70324000", + "longitude": "15.31736000" + }, + { + "id": "22955", + "name": "Poniklá", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.66152000", + "longitude": "15.46329000" + }, + { + "id": "23022", + "name": "Raspenava", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.90415000", + "longitude": "15.11465000" + }, + { + "id": "23030", + "name": "Rokytnice nad Jizerou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.72561000", + "longitude": "15.43357000" + }, + { + "id": "23040", + "name": "Rovensko pod Troskami", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.53532000", + "longitude": "15.25941000" + }, + { + "id": "23067", + "name": "Semily", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.60191000", + "longitude": "15.33552000" + }, + { + "id": "23089", + "name": "Smržovka", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.73820000", + "longitude": "15.24639000" + }, + { + "id": "23127", + "name": "Stráž nad Nisou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.79099000", + "longitude": "15.02683000" + }, + { + "id": "23128", + "name": "Stráž pod Ralskem", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.70280000", + "longitude": "14.80102000" + }, + { + "id": "23132", + "name": "Studenec", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.55344000", + "longitude": "15.54936000" + }, + { + "id": "23156", + "name": "Tanvald", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.73735000", + "longitude": "15.30585000" + }, + { + "id": "23186", + "name": "Turnov", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.58356000", + "longitude": "15.15186000" + }, + { + "id": "23220", + "name": "Valdice", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.58350000", + "longitude": "15.41248000" + }, + { + "id": "23238", + "name": "Velké Hamry", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.71373000", + "longitude": "15.31539000" + }, + { + "id": "23276", + "name": "Višňova", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.96663000", + "longitude": "15.02495000" + }, + { + "id": "23306", + "name": "Vysoké nad Jizerou", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.68559000", + "longitude": "15.40152000" + }, + { + "id": "23350", + "name": "Zákupy", + "state_id": 4601, + "state_code": "51", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.68475000", + "longitude": "14.64522000" + }, + { + "id": "22108", + "name": "Albrechtice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78645000", + "longitude": "18.52444000" + }, + { + "id": "23412", + "name": "Šenov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79315000", + "longitude": "18.37607000" + }, + { + "id": "23415", + "name": "Šilheřovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92602000", + "longitude": "18.27017000" + }, + { + "id": "23423", + "name": "Štítina", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91487000", + "longitude": "18.01245000" + }, + { + "id": "23428", + "name": "Štěpánkovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.95738000", + "longitude": "18.03741000" + }, + { + "id": "23422", + "name": "Štramberk", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59181000", + "longitude": "18.11741000" + }, + { + "id": "23367", + "name": "Čeladná", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.54873000", + "longitude": "18.33759000" + }, + { + "id": "23395", + "name": "Český Těšín", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.74613000", + "longitude": "18.62613000" + }, + { + "id": "23401", + "name": "Řepiště", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.73338000", + "longitude": "18.31707000" + }, + { + "id": "22116", + "name": "Baška", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.64584000", + "longitude": "18.37233000" + }, + { + "id": "22113", + "name": "Bartošovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66884000", + "longitude": "18.05461000" + }, + { + "id": "22194", + "name": "Bílovec", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75639000", + "longitude": "18.01581000" + }, + { + "id": "22210", + "name": "Březová", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79158000", + "longitude": "17.86556000" + }, + { + "id": "22214", + "name": "Břidličná", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91167000", + "longitude": "17.37107000" + }, + { + "id": "22139", + "name": "Bohumín", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90411000", + "longitude": "18.35755000" + }, + { + "id": "22140", + "name": "Bohuslavice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94232000", + "longitude": "18.12866000" + }, + { + "id": "22145", + "name": "Bolatice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.95172000", + "longitude": "18.08358000" + }, + { + "id": "22161", + "name": "Brantice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.06351000", + "longitude": "17.62911000" + }, + { + "id": "22173", + "name": "Brušperk", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.70010000", + "longitude": "18.22210000" + }, + { + "id": "22171", + "name": "Brumovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.01530000", + "longitude": "17.74958000" + }, + { + "id": "22172", + "name": "Bruntál", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.98844000", + "longitude": "17.46470000" + }, + { + "id": "22176", + "name": "Budišov nad Budišovkou", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79511000", + "longitude": "17.62969000" + }, + { + "id": "22179", + "name": "Bukovec", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55114000", + "longitude": "18.82683000" + }, + { + "id": "22186", + "name": "Bystřice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63657000", + "longitude": "18.72038000" + }, + { + "id": "22218", + "name": "Chlebičov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.95942000", + "longitude": "17.96748000" + }, + { + "id": "22229", + "name": "Chotěbuz", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.76849000", + "longitude": "18.56912000" + }, + { + "id": "22237", + "name": "Chuchelná", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.98664000", + "longitude": "18.11656000" + }, + { + "id": "22250", + "name": "Darkovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93592000", + "longitude": "18.22213000" + }, + { + "id": "22321", + "name": "Dětmarovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89412000", + "longitude": "18.46079000" + }, + { + "id": "22257", + "name": "Dobratice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66039000", + "longitude": "18.49226000" + }, + { + "id": "22262", + "name": "Dobrá", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.67383000", + "longitude": "18.41393000" + }, + { + "id": "22300", + "name": "Dolní Životice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89732000", + "longitude": "17.77969000" + }, + { + "id": "22271", + "name": "Dolní Benešov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92101000", + "longitude": "18.10835000" + }, + { + "id": "22284", + "name": "Dolní Lhota", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84236000", + "longitude": "18.09241000" + }, + { + "id": "22286", + "name": "Dolní Lutyně", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89876000", + "longitude": "18.42815000" + }, + { + "id": "22304", + "name": "Doubrava", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.85873000", + "longitude": "18.48018000" + }, + { + "id": "22318", + "name": "Dvorce", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83332000", + "longitude": "17.54762000" + }, + { + "id": "22331", + "name": "Frýdek-Místek", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.68333000", + "longitude": "18.35000000" + }, + { + "id": "22333", + "name": "Frýdlant nad Ostravicí", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59280000", + "longitude": "18.35967000" + }, + { + "id": "22327", + "name": "Frenštát pod Radhoštěm", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.54835000", + "longitude": "18.21078000" + }, + { + "id": "22329", + "name": "Fryčovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66677000", + "longitude": "18.22321000" + }, + { + "id": "22334", + "name": "Fulnek", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71238000", + "longitude": "17.90319000" + }, + { + "id": "22347", + "name": "Hať", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94644000", + "longitude": "18.23931000" + }, + { + "id": "22345", + "name": "Havířov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77984000", + "longitude": "18.43688000" + }, + { + "id": "22440", + "name": "Háj ve Slezsku", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89856000", + "longitude": "18.09540000" + }, + { + "id": "22358", + "name": "Hlučín", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89795000", + "longitude": "18.19196000" + }, + { + "id": "22361", + "name": "Hněvošice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00299000", + "longitude": "18.00829000" + }, + { + "id": "22359", + "name": "Hnojník", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.68250000", + "longitude": "18.54143000" + }, + { + "id": "22366", + "name": "Hodslavice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.53856000", + "longitude": "18.02367000" + }, + { + "id": "22367", + "name": "Holasovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99843000", + "longitude": "17.80847000" + }, + { + "id": "22374", + "name": "Horní Benešov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96682000", + "longitude": "17.60262000" + }, + { + "id": "22376", + "name": "Horní Bludovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.74965000", + "longitude": "18.43677000" + }, + { + "id": "22384", + "name": "Horní Město", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90845000", + "longitude": "17.21112000" + }, + { + "id": "22391", + "name": "Horní Suchá", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79780000", + "longitude": "18.48189000" + }, + { + "id": "22392", + "name": "Horní Těrlicko", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75177000", + "longitude": "18.48290000" + }, + { + "id": "22411", + "name": "Hrabyně", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.88249000", + "longitude": "18.05483000" + }, + { + "id": "22413", + "name": "Hradec nad Moravici", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.87042000", + "longitude": "17.87843000" + }, + { + "id": "22429", + "name": "Hrádek", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.61661000", + "longitude": "18.73720000" + }, + { + "id": "22433", + "name": "Hukvaldy", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.62381000", + "longitude": "18.22189000" + }, + { + "id": "22449", + "name": "Jablunkov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.57672000", + "longitude": "18.76458000" + }, + { + "id": "22451", + "name": "Jakartovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91510000", + "longitude": "17.68400000" + }, + { + "id": "22454", + "name": "Janovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.62141000", + "longitude": "18.40602000" + }, + { + "id": "22468", + "name": "Jeseník nad Odrou", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.61194000", + "longitude": "17.90526000" + }, + { + "id": "22475", + "name": "Jindřichov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.25184000", + "longitude": "17.51903000" + }, + { + "id": "22480", + "name": "Jistebník", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75400000", + "longitude": "18.13063000" + }, + { + "id": "22497", + "name": "Karlovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10564000", + "longitude": "17.44563000" + }, + { + "id": "22501", + "name": "Karviná", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.85400000", + "longitude": "18.54169000" + }, + { + "id": "22515", + "name": "Klimkovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78809000", + "longitude": "18.12585000" + }, + { + "id": "22524", + "name": "Kobeřice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.98548000", + "longitude": "18.05212000" + }, + { + "id": "22530", + "name": "Komorní Lhotka", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.65811000", + "longitude": "18.52777000" + }, + { + "id": "22534", + "name": "Kopřivnice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59947000", + "longitude": "18.14480000" + }, + { + "id": "22547", + "name": "Kozlovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59040000", + "longitude": "18.25656000" + }, + { + "id": "22548", + "name": "Kozmice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91280000", + "longitude": "18.15584000" + }, + { + "id": "22557", + "name": "Kravaře", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93203000", + "longitude": "18.00472000" + }, + { + "id": "22558", + "name": "Krmelín", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72914000", + "longitude": "18.23541000" + }, + { + "id": "22559", + "name": "Krnov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08967000", + "longitude": "17.70385000" + }, + { + "id": "22572", + "name": "Kunčice pod Ondřejníkem", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55070000", + "longitude": "18.26113000" + }, + { + "id": "22571", + "name": "Kunín", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63377000", + "longitude": "17.98965000" + }, + { + "id": "22614", + "name": "Lichnov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00786000", + "longitude": "17.62640000" + }, + { + "id": "22615", + "name": "Lichnov (o. Nový Jičín)", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.56423000", + "longitude": "18.16898000" + }, + { + "id": "22653", + "name": "Lučina", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72082000", + "longitude": "18.44776000" + }, + { + "id": "22645", + "name": "Ludgeřovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89042000", + "longitude": "18.24008000" + }, + { + "id": "22677", + "name": "Markvartovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90595000", + "longitude": "18.23602000" + }, + { + "id": "22741", + "name": "Město Albrechtice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16294000", + "longitude": "17.57481000" + }, + { + "id": "22682", + "name": "Metylovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.60666000", + "longitude": "18.33911000" + }, + { + "id": "22692", + "name": "Milíkov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.58565000", + "longitude": "18.71943000" + }, + { + "id": "22730", + "name": "Mořkov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.53684000", + "longitude": "18.05968000" + }, + { + "id": "22713", + "name": "Mokré Lazce", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90462000", + "longitude": "18.02954000" + }, + { + "id": "22724", + "name": "Morávka", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59607000", + "longitude": "18.52471000" + }, + { + "id": "22728", + "name": "Mosty u Jablunkova", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.52737000", + "longitude": "18.75417000" + }, + { + "id": "22796", + "name": "Návsí u Jablunkova", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.58720000", + "longitude": "18.75907000" + }, + { + "id": "22797", + "name": "Nýdek", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.65609000", + "longitude": "18.75687000" + }, + { + "id": "22788", + "name": "Nový Jičín", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59438000", + "longitude": "18.01028000" + }, + { + "id": "22804", + "name": "Odry", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66255000", + "longitude": "17.83084000" + }, + { + "id": "22810", + "name": "Okres Bruntál", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00000000", + "longitude": "17.41667000" + }, + { + "id": "22817", + "name": "Okres Frýdek-Místek", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.58333000", + "longitude": "18.50000000" + }, + { + "id": "22827", + "name": "Okres Karviná", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83333000", + "longitude": "18.50000000" + }, + { + "id": "22839", + "name": "Okres Nový Jičín", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66667000", + "longitude": "18.00000000" + }, + { + "id": "22843", + "name": "Okres Opava", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83333000", + "longitude": "17.91667000" + }, + { + "id": "22844", + "name": "Okres Ostrava-město", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83333000", + "longitude": "18.25000000" + }, + { + "id": "22884", + "name": "Oldřišov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99130000", + "longitude": "17.96074000" + }, + { + "id": "22892", + "name": "Opava", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93866000", + "longitude": "17.90257000" + }, + { + "id": "22895", + "name": "Orlová", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84527000", + "longitude": "18.43011000" + }, + { + "id": "22902", + "name": "Osoblaha", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.27517000", + "longitude": "17.71523000" + }, + { + "id": "22904", + "name": "Ostrava", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83465000", + "longitude": "18.28204000" + }, + { + "id": "22905", + "name": "Ostravice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.53510000", + "longitude": "18.39164000" + }, + { + "id": "22913", + "name": "Otice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91684000", + "longitude": "17.86982000" + }, + { + "id": "22918", + "name": "Palkovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63467000", + "longitude": "18.31508000" + }, + { + "id": "22921", + "name": "Paskov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.73179000", + "longitude": "18.29037000" + }, + { + "id": "22995", + "name": "Píšť", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.97857000", + "longitude": "18.19349000" + }, + { + "id": "22992", + "name": "Písek", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55924000", + "longitude": "18.80231000" + }, + { + "id": "23007", + "name": "Příbor", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.64094000", + "longitude": "18.14499000" + }, + { + "id": "22931", + "name": "Petřvald", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83100000", + "longitude": "18.38940000" + }, + { + "id": "22930", + "name": "Petrovice u Karviné", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89587000", + "longitude": "18.54779000" + }, + { + "id": "22975", + "name": "Pražmo", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.60876000", + "longitude": "18.48617000" + }, + { + "id": "22990", + "name": "Pustá Polom", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84917000", + "longitude": "17.99790000" + }, + { + "id": "23026", + "name": "Raškovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.61975000", + "longitude": "18.47286000" + }, + { + "id": "23057", + "name": "Rýmařov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93183000", + "longitude": "17.27177000" + }, + { + "id": "23033", + "name": "Ropice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.70536000", + "longitude": "18.61345000" + }, + { + "id": "23052", + "name": "Rybí", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.60073000", + "longitude": "18.07592000" + }, + { + "id": "23054", + "name": "Rychvald", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86625000", + "longitude": "18.37626000" + }, + { + "id": "23064", + "name": "Sedliště", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71836000", + "longitude": "18.36869000" + }, + { + "id": "23065", + "name": "Sedlnice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.65770000", + "longitude": "18.08690000" + }, + { + "id": "23081", + "name": "Slavkov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92180000", + "longitude": "17.83641000" + }, + { + "id": "23116", + "name": "Staříč", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.68594000", + "longitude": "18.27281000" + }, + { + "id": "23102", + "name": "Stará Ves nad Ondřejnicí", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72775000", + "longitude": "18.18850000" + }, + { + "id": "23105", + "name": "Staré Město", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66992000", + "longitude": "18.36349000" + }, + { + "id": "23110", + "name": "Starý Bohumín", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91690000", + "longitude": "18.33619000" + }, + { + "id": "23111", + "name": "Starý Jičín", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.57686000", + "longitude": "17.96169000" + }, + { + "id": "23135", + "name": "Stěbořice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93708000", + "longitude": "17.80547000" + }, + { + "id": "23119", + "name": "Stonava", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.81691000", + "longitude": "18.52518000" + }, + { + "id": "23134", + "name": "Studénka", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72342000", + "longitude": "18.07853000" + }, + { + "id": "23148", + "name": "Sviadnov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.68926000", + "longitude": "18.32762000" + }, + { + "id": "23205", + "name": "Třinec", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.67763000", + "longitude": "18.67078000" + }, + { + "id": "23164", + "name": "Tichá", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.56999000", + "longitude": "18.22148000" + }, + { + "id": "23177", + "name": "Trojanovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.52039000", + "longitude": "18.23800000" + }, + { + "id": "23310", + "name": "Václavovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75531000", + "longitude": "18.37220000" + }, + { + "id": "23312", + "name": "Vítkov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77445000", + "longitude": "17.74941000" + }, + { + "id": "23316", + "name": "Vřesina", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.82418000", + "longitude": "18.12569000" + }, + { + "id": "23265", + "name": "Veřovice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.53916000", + "longitude": "18.11425000" + }, + { + "id": "23234", + "name": "Velká Polom", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86359000", + "longitude": "18.09331000" + }, + { + "id": "23239", + "name": "Velké Heraltice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.97493000", + "longitude": "17.72879000" + }, + { + "id": "23240", + "name": "Velké Hoštice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93609000", + "longitude": "17.97380000" + }, + { + "id": "23259", + "name": "Vendryně", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66662000", + "longitude": "18.71307000" + }, + { + "id": "23283", + "name": "Vlčnov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.57866000", + "longitude": "17.95458000" + }, + { + "id": "23294", + "name": "Vratimov", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.76995000", + "longitude": "18.31015000" + }, + { + "id": "23296", + "name": "Vrbice", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.88333000", + "longitude": "18.31667000" + }, + { + "id": "23297", + "name": "Vrbno pod Pradědem", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12095000", + "longitude": "17.38316000" + }, + { + "id": "23352", + "name": "Zátor", + "state_id": 4600, + "state_code": "80", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.03413000", + "longitude": "17.59296000" + }, + { + "id": "23355", + "name": "Újezd", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.76397000", + "longitude": "17.18040000" + }, + { + "id": "23358", + "name": "Úsov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79831000", + "longitude": "17.01055000" + }, + { + "id": "23425", + "name": "Štíty", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96122000", + "longitude": "16.76576000" + }, + { + "id": "23429", + "name": "Štěpánov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.68404000", + "longitude": "17.22041000" + }, + { + "id": "23420", + "name": "Šternberk", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.73044000", + "longitude": "17.29889000" + }, + { + "id": "23432", + "name": "Šumperk", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96528000", + "longitude": "16.97061000" + }, + { + "id": "23457", + "name": "Žulová", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.30933000", + "longitude": "17.09871000" + }, + { + "id": "23368", + "name": "Čelechovice na Hané", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.51626000", + "longitude": "17.09379000" + }, + { + "id": "23378", + "name": "Červenka", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72068000", + "longitude": "17.07773000" + }, + { + "id": "23387", + "name": "Česká Ves", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.25736000", + "longitude": "17.22805000" + }, + { + "id": "22197", + "name": "Bílá Lhota", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.70953000", + "longitude": "16.97507000" + }, + { + "id": "22200", + "name": "Bělotín", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59120000", + "longitude": "17.80654000" + }, + { + "id": "22119", + "name": "Bedihošť", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.44826000", + "longitude": "17.16643000" + }, + { + "id": "22133", + "name": "Bludov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94080000", + "longitude": "16.92849000" + }, + { + "id": "22142", + "name": "Bohuňovice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66301000", + "longitude": "17.28693000" + }, + { + "id": "22153", + "name": "Bouzov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.70426000", + "longitude": "16.89288000" + }, + { + "id": "22168", + "name": "Brodek u Přerova", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.48419000", + "longitude": "17.33825000" + }, + { + "id": "22323", + "name": "Dřevohostice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.42594000", + "longitude": "17.59204000" + }, + { + "id": "22270", + "name": "Dolany", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.64987000", + "longitude": "17.32240000" + }, + { + "id": "22295", + "name": "Dolní Újezd", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.54597000", + "longitude": "17.53547000" + }, + { + "id": "22274", + "name": "Dolní Bohdíkov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00996000", + "longitude": "16.90433000" + }, + { + "id": "22294", + "name": "Dolní Studénky", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93506000", + "longitude": "16.97107000" + }, + { + "id": "22301", + "name": "Doloplazy", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.56876000", + "longitude": "17.41393000" + }, + { + "id": "22307", + "name": "Drahanovice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.57856000", + "longitude": "17.07701000" + }, + { + "id": "22311", + "name": "Dub nad Moravou", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.48249000", + "longitude": "17.27723000" + }, + { + "id": "22312", + "name": "Dubicko", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.82806000", + "longitude": "16.96266000" + }, + { + "id": "22336", + "name": "Grygov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.53841000", + "longitude": "17.30887000" + }, + { + "id": "22341", + "name": "Hanušovice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08049000", + "longitude": "16.93641000" + }, + { + "id": "22356", + "name": "Hlubočky", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.61783000", + "longitude": "17.39436000" + }, + { + "id": "22360", + "name": "Hněvotín", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.57205000", + "longitude": "17.17954000" + }, + { + "id": "22373", + "name": "Horka nad Moravou", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.64009000", + "longitude": "17.21070000" + }, + { + "id": "22394", + "name": "Horní Štěpánov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.54901000", + "longitude": "16.79078000" + }, + { + "id": "22383", + "name": "Horní Moštěnice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.41213000", + "longitude": "17.45879000" + }, + { + "id": "22417", + "name": "Hranice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.54796000", + "longitude": "17.73469000" + }, + { + "id": "22438", + "name": "Hustopeče Nad Bečvou", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.53053000", + "longitude": "17.86994000" + }, + { + "id": "22461", + "name": "Javorník", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.39077000", + "longitude": "17.00272000" + }, + { + "id": "22467", + "name": "Jeseník", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.22937000", + "longitude": "17.20464000" + }, + { + "id": "22526", + "name": "Kojetín", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.35179000", + "longitude": "17.30207000" + }, + { + "id": "22527", + "name": "Kokory", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.49482000", + "longitude": "17.37544000" + }, + { + "id": "22532", + "name": "Konice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59030000", + "longitude": "16.88911000" + }, + { + "id": "22538", + "name": "Kostelec na Hané", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.51398000", + "longitude": "17.05824000" + }, + { + "id": "22553", + "name": "Kralice na Hané", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.46296000", + "longitude": "17.18048000" + }, + { + "id": "22602", + "name": "Leština", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86879000", + "longitude": "16.92748000" + }, + { + "id": "22617", + "name": "Lipník nad Bečvou", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.52721000", + "longitude": "17.58594000" + }, + { + "id": "22624", + "name": "Litovel", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.70121000", + "longitude": "17.07615000" + }, + { + "id": "22642", + "name": "Loštice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.74470000", + "longitude": "16.92892000" + }, + { + "id": "22639", + "name": "Loučná nad Desnou", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.07433000", + "longitude": "17.09052000" + }, + { + "id": "22651", + "name": "Lutín", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55845000", + "longitude": "17.13572000" + }, + { + "id": "22669", + "name": "Majetín", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.49808000", + "longitude": "17.33314000" + }, + { + "id": "22743", + "name": "Město Libavá", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72162000", + "longitude": "17.52013000" + }, + { + "id": "22679", + "name": "Medlov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78754000", + "longitude": "17.06261000" + }, + { + "id": "22686", + "name": "Mikulovice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.29854000", + "longitude": "17.32155000" + }, + { + "id": "22710", + "name": "Mohelnice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77698000", + "longitude": "16.91946000" + }, + { + "id": "22716", + "name": "Moravičany", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75694000", + "longitude": "16.96042000" + }, + { + "id": "22720", + "name": "Moravský Beroun", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79374000", + "longitude": "17.44212000" + }, + { + "id": "22727", + "name": "Mostkovice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47215000", + "longitude": "17.05212000" + }, + { + "id": "22793", + "name": "Náklo", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.65462000", + "longitude": "17.12969000" + }, + { + "id": "22794", + "name": "Náměšť na Hané", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.60213000", + "longitude": "17.06539000" + }, + { + "id": "22800", + "name": "Němčice nad Hanou", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.34181000", + "longitude": "17.20596000" + }, + { + "id": "22765", + "name": "Nezamyslice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.32543000", + "longitude": "17.17326000" + }, + { + "id": "22790", + "name": "Nový Malín", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94262000", + "longitude": "17.03191000" + }, + { + "id": "22879", + "name": "Okres Šumperk", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00000000", + "longitude": "17.00000000" + }, + { + "id": "22822", + "name": "Okres Jeseník", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.25000000", + "longitude": "17.16667000" + }, + { + "id": "22842", + "name": "Okres Olomouc", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66667000", + "longitude": "17.25000000" + }, + { + "id": "22855", + "name": "Okres Přerov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50000000", + "longitude": "17.55000000" + }, + { + "id": "22853", + "name": "Okres Prostějov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50000000", + "longitude": "17.03333000" + }, + { + "id": "22888", + "name": "Olšany", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.96509000", + "longitude": "16.85894000" + }, + { + "id": "22886", + "name": "Olomouc", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59552000", + "longitude": "17.25175000" + }, + { + "id": "22898", + "name": "Osek nad Bečvou", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.51121000", + "longitude": "17.52829000" + }, + { + "id": "22900", + "name": "Oskava", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89523000", + "longitude": "17.13214000" + }, + { + "id": "22912", + "name": "Otaslavice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.38833000", + "longitude": "17.07108000" + }, + { + "id": "22920", + "name": "Paseka", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79644000", + "longitude": "17.22276000" + }, + { + "id": "22994", + "name": "Písečná", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.27303000", + "longitude": "17.25373000" + }, + { + "id": "23006", + "name": "Přáslavice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.58568000", + "longitude": "17.38209000" + }, + { + "id": "23009", + "name": "Příkazy", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.64360000", + "longitude": "17.14337000" + }, + { + "id": "23000", + "name": "Přemyslovice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55637000", + "longitude": "16.95581000" + }, + { + "id": "23001", + "name": "Přerov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.45511000", + "longitude": "17.45090000" + }, + { + "id": "22941", + "name": "Plumlov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.46614000", + "longitude": "17.01502000" + }, + { + "id": "22960", + "name": "Postřelmov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90756000", + "longitude": "16.91226000" + }, + { + "id": "22961", + "name": "Potštát", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63693000", + "longitude": "17.65174000" + }, + { + "id": "22979", + "name": "Prostějov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47188000", + "longitude": "17.11184000" + }, + { + "id": "22981", + "name": "Protivanov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.48351000", + "longitude": "16.83594000" + }, + { + "id": "22988", + "name": "Ptení", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.51163000", + "longitude": "16.96110000" + }, + { + "id": "23015", + "name": "Radslavice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47817000", + "longitude": "17.51656000" + }, + { + "id": "23021", + "name": "Rapotín", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.01094000", + "longitude": "17.03121000" + }, + { + "id": "23029", + "name": "Rokytnice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.46592000", + "longitude": "17.39120000" + }, + { + "id": "23046", + "name": "Ruda nad Moravou", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.98100000", + "longitude": "16.87782000" + }, + { + "id": "23060", + "name": "Samotíšky", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63042000", + "longitude": "17.32807000" + }, + { + "id": "23068", + "name": "Senice na Hané", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.62401000", + "longitude": "17.08578000" + }, + { + "id": "23074", + "name": "Skrbeň", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.64115000", + "longitude": "17.17650000" + }, + { + "id": "23078", + "name": "Slatinice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.56155000", + "longitude": "17.09992000" + }, + { + "id": "23088", + "name": "Smržice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50569000", + "longitude": "17.10698000" + }, + { + "id": "23091", + "name": "Sobotín", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.01039000", + "longitude": "17.09129000" + }, + { + "id": "23108", + "name": "Staré Město", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.16174000", + "longitude": "16.94734000" + }, + { + "id": "23130", + "name": "Strážná", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83104000", + "longitude": "17.13275000" + }, + { + "id": "23144", + "name": "Sudkov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91903000", + "longitude": "16.94516000" + }, + { + "id": "23196", + "name": "Těšetice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59317000", + "longitude": "17.12607000" + }, + { + "id": "23171", + "name": "Tovačov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.43083000", + "longitude": "17.28795000" + }, + { + "id": "23182", + "name": "Tršice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.54237000", + "longitude": "17.42483000" + }, + { + "id": "23178", + "name": "Troubelice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.81731000", + "longitude": "17.08100000" + }, + { + "id": "23179", + "name": "Troubky", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.43215000", + "longitude": "17.34914000" + }, + { + "id": "23211", + "name": "Uničov", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77092000", + "longitude": "17.12144000" + }, + { + "id": "23212", + "name": "Určice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.43045000", + "longitude": "17.07291000" + }, + { + "id": "23311", + "name": "Vápenná", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.28338000", + "longitude": "17.09762000" + }, + { + "id": "23314", + "name": "Věrovany", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.46109000", + "longitude": "17.28795000" + }, + { + "id": "23230", + "name": "Velká Bystřice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59480000", + "longitude": "17.36544000" + }, + { + "id": "23242", + "name": "Velké Losiny", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.03197000", + "longitude": "17.04058000" + }, + { + "id": "23254", + "name": "Velký Újezd", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.57858000", + "longitude": "17.48347000" + }, + { + "id": "23253", + "name": "Velký Týnec", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.54994000", + "longitude": "17.33359000" + }, + { + "id": "23266", + "name": "Vidnava", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.37234000", + "longitude": "17.18626000" + }, + { + "id": "23268", + "name": "Vikýřovice", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.97792000", + "longitude": "17.01234000" + }, + { + "id": "23299", + "name": "Vrbátky", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50805000", + "longitude": "17.19994000" + }, + { + "id": "23348", + "name": "Zábřeh", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.88260000", + "longitude": "16.87223000" + }, + { + "id": "23339", + "name": "Zlaté Hory", + "state_id": 4589, + "state_code": "71", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.26380000", + "longitude": "17.39602000" + }, + { + "id": "23359", + "name": "Ústí nad Orlicí", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.97387000", + "longitude": "16.39361000" + }, + { + "id": "23437", + "name": "Žamberk", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08601000", + "longitude": "16.46738000" + }, + { + "id": "23379", + "name": "Červená Voda", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.04029000", + "longitude": "16.74268000" + }, + { + "id": "23386", + "name": "Česká Třebová", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90436000", + "longitude": "16.44413000" + }, + { + "id": "23404", + "name": "Řečany nad Labem", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.03589000", + "longitude": "15.47735000" + }, + { + "id": "22199", + "name": "Býšť", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13243000", + "longitude": "15.91116000" + }, + { + "id": "22212", + "name": "Březová nad Svitavou", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.64418000", + "longitude": "16.51799000" + }, + { + "id": "22159", + "name": "Brandýs nad Orlicí", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00194000", + "longitude": "16.28528000" + }, + { + "id": "22167", + "name": "Brněnec", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.62735000", + "longitude": "16.52202000" + }, + { + "id": "22184", + "name": "Bystřec", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.01168000", + "longitude": "16.61900000" + }, + { + "id": "22182", + "name": "Bystré", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.62846000", + "longitude": "16.34679000" + }, + { + "id": "22223", + "name": "Choceň", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00161000", + "longitude": "16.22303000" + }, + { + "id": "22231", + "name": "Chrast", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90205000", + "longitude": "15.93396000" + }, + { + "id": "22234", + "name": "Chroustovice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.95553000", + "longitude": "15.99143000" + }, + { + "id": "22235", + "name": "Chrudim", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.95109000", + "longitude": "15.79558000" + }, + { + "id": "22238", + "name": "Chvaletice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.03443000", + "longitude": "15.41846000" + }, + { + "id": "22253", + "name": "Dašice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.02844000", + "longitude": "15.91244000" + }, + { + "id": "22256", + "name": "Dlouhá Třebová", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94040000", + "longitude": "16.42329000" + }, + { + "id": "22296", + "name": "Dolní Újezd", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.82562000", + "longitude": "16.25461000" + }, + { + "id": "22297", + "name": "Dolní Čermná", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.97954000", + "longitude": "16.56475000" + }, + { + "id": "22280", + "name": "Dolní Dobrouč", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99273000", + "longitude": "16.49766000" + }, + { + "id": "22291", + "name": "Dolní Roveň", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.02927000", + "longitude": "15.96774000" + }, + { + "id": "22293", + "name": "Dolní Sloupnice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92721000", + "longitude": "16.29401000" + }, + { + "id": "22352", + "name": "Heřmanův Městec", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.94707000", + "longitude": "15.66492000" + }, + { + "id": "22353", + "name": "Hlinsko", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.76213000", + "longitude": "15.90756000" + }, + { + "id": "22369", + "name": "Holice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.06601000", + "longitude": "15.98590000" + }, + { + "id": "22393", + "name": "Horní Čermná", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.97053000", + "longitude": "16.60772000" + }, + { + "id": "22380", + "name": "Horní Jelení", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.04901000", + "longitude": "16.08396000" + }, + { + "id": "22389", + "name": "Horní Sloupnice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92138000", + "longitude": "16.33948000" + }, + { + "id": "22414", + "name": "Hradec nad Svitavou", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71143000", + "longitude": "16.48058000" + }, + { + "id": "22420", + "name": "Hrochův Týnec", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.95946000", + "longitude": "15.91054000" + }, + { + "id": "22447", + "name": "Jablonné nad Orlicí", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.02964000", + "longitude": "16.60059000" + }, + { + "id": "22457", + "name": "Jaroměřice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.62556000", + "longitude": "16.75185000" + }, + { + "id": "22462", + "name": "Jedlová", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66100000", + "longitude": "16.30608000" + }, + { + "id": "22470", + "name": "Jevíčko", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63220000", + "longitude": "16.71125000" + }, + { + "id": "22565", + "name": "Králíky", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08384000", + "longitude": "16.76054000" + }, + { + "id": "22561", + "name": "Krouna", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77240000", + "longitude": "16.02674000" + }, + { + "id": "22573", + "name": "Kunčina", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79455000", + "longitude": "16.62763000" + }, + { + "id": "22570", + "name": "Kunvald", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12927000", + "longitude": "16.49996000" + }, + { + "id": "22590", + "name": "Lanškroun", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91217000", + "longitude": "16.61190000" + }, + { + "id": "22662", + "name": "Lázně Bohdaneč", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.07560000", + "longitude": "15.67978000" + }, + { + "id": "22597", + "name": "Letohrad", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.03580000", + "longitude": "16.49879000" + }, + { + "id": "22622", + "name": "Litomyšl", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86809000", + "longitude": "16.31298000" + }, + { + "id": "22655", + "name": "Luže", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89341000", + "longitude": "16.02850000" + }, + { + "id": "22649", + "name": "Lukavice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.06029000", + "longitude": "16.48207000" + }, + { + "id": "22739", + "name": "Městečko Trnávka", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.70926000", + "longitude": "16.72744000" + }, + { + "id": "22700", + "name": "Miřetice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84126000", + "longitude": "15.88472000" + }, + { + "id": "22714", + "name": "Moravany", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00095000", + "longitude": "15.94071000" + }, + { + "id": "22718", + "name": "Moravská Třebová", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75793000", + "longitude": "16.66426000" + }, + { + "id": "22750", + "name": "Nasavrky", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84450000", + "longitude": "15.80461000" + }, + { + "id": "22875", + "name": "Okres Ústí nad Orlicí", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.00000000", + "longitude": "16.53333000" + }, + { + "id": "22814", + "name": "Okres Chrudim", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83333000", + "longitude": "15.83333000" + }, + { + "id": "22845", + "name": "Okres Pardubice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08333000", + "longitude": "15.75000000" + }, + { + "id": "22863", + "name": "Okres Svitavy", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.73333000", + "longitude": "16.50000000" + }, + { + "id": "22890", + "name": "Opatov", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.82500000", + "longitude": "16.50458000" + }, + { + "id": "22891", + "name": "Opatovice nad Labem", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.14541000", + "longitude": "15.79045000" + }, + { + "id": "22911", + "name": "Osík", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84355000", + "longitude": "16.28467000" + }, + { + "id": "22919", + "name": "Pardubice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.04075000", + "longitude": "15.77659000" + }, + { + "id": "22999", + "name": "Přelouč", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.03985000", + "longitude": "15.56031000" + }, + { + "id": "22952", + "name": "Polička", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71465000", + "longitude": "16.26543000" + }, + { + "id": "22954", + "name": "Pomezí", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71026000", + "longitude": "16.31729000" + }, + { + "id": "22969", + "name": "Prachovice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89379000", + "longitude": "15.62872000" + }, + { + "id": "22978", + "name": "Proseč", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.80590000", + "longitude": "16.11621000" + }, + { + "id": "23011", + "name": "Radiměř", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.69850000", + "longitude": "16.44070000" + }, + { + "id": "23032", + "name": "Ronov nad Doubravou", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.88825000", + "longitude": "15.53144000" + }, + { + "id": "23034", + "name": "Rosice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92226000", + "longitude": "15.95127000" + }, + { + "id": "23051", + "name": "Rybitví", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.06015000", + "longitude": "15.70472000" + }, + { + "id": "23072", + "name": "Seč", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84694000", + "longitude": "15.65643000" + }, + { + "id": "23070", + "name": "Sezemice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.06651000", + "longitude": "15.85270000" + }, + { + "id": "23076", + "name": "Skuteč", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84347000", + "longitude": "15.99655000" + }, + { + "id": "23079", + "name": "Slatiňany", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.92110000", + "longitude": "15.81377000" + }, + { + "id": "23103", + "name": "Staré Hradiště", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.06540000", + "longitude": "15.77885000" + }, + { + "id": "23149", + "name": "Svitavy", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75594000", + "longitude": "16.46829000" + }, + { + "id": "23202", + "name": "Třemošnice", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86912000", + "longitude": "15.58002000" + }, + { + "id": "23305", + "name": "Vysoké Mýto", + "state_id": 4588, + "state_code": "53", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.95320000", + "longitude": "16.16169000" + }, + { + "id": "23434", + "name": "Šťáhlavy", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.67555000", + "longitude": "13.50394000" + }, + { + "id": "23427", + "name": "Štěnovice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.67051000", + "longitude": "13.39963000" + }, + { + "id": "23433", + "name": "Švihov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.48136000", + "longitude": "13.28417000" + }, + { + "id": "23444", + "name": "Železná Ruda", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.13743000", + "longitude": "13.23520000" + }, + { + "id": "23450", + "name": "Žihle", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.04491000", + "longitude": "13.37502000" + }, + { + "id": "23373", + "name": "Černošín", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.81613000", + "longitude": "12.88381000" + }, + { + "id": "22201", + "name": "Bělá nad Radbuzou", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59115000", + "longitude": "12.71761000" + }, + { + "id": "22203", + "name": "Břasy", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.83700000", + "longitude": "13.57833000" + }, + { + "id": "22127", + "name": "Bezdružice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.90724000", + "longitude": "12.97110000" + }, + { + "id": "22135", + "name": "Blížejov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50000000", + "longitude": "12.98926000" + }, + { + "id": "22132", + "name": "Blovice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.58220000", + "longitude": "13.54009000" + }, + { + "id": "22146", + "name": "Bor", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71159000", + "longitude": "12.77516000" + }, + { + "id": "22222", + "name": "Chlumčany", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63256000", + "longitude": "13.31323000" + }, + { + "id": "22225", + "name": "Chodová Planá", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89321000", + "longitude": "12.73014000" + }, + { + "id": "22230", + "name": "Chotěšov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.65408000", + "longitude": "13.20271000" + }, + { + "id": "22236", + "name": "Chrást", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79320000", + "longitude": "13.49358000" + }, + { + "id": "22320", + "name": "Dýšina", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77735000", + "longitude": "13.49150000" + }, + { + "id": "22263", + "name": "Dobřany", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.65482000", + "longitude": "13.29307000" + }, + { + "id": "22265", + "name": "Dobřív", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71566000", + "longitude": "13.68681000" + }, + { + "id": "22303", + "name": "Domažlice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.44049000", + "longitude": "12.92976000" + }, + { + "id": "22343", + "name": "Hartmanice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.16948000", + "longitude": "13.45455000" + }, + { + "id": "22351", + "name": "Heřmanova Huť", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.70679000", + "longitude": "13.10069000" + }, + { + "id": "22371", + "name": "Holýšov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.59361000", + "longitude": "13.10129000" + }, + { + "id": "22370", + "name": "Holoubkov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77598000", + "longitude": "13.69246000" + }, + { + "id": "22372", + "name": "Horažďovice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.32069000", + "longitude": "13.70100000" + }, + { + "id": "22396", + "name": "Horšovský Týn", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.52965000", + "longitude": "12.94405000" + }, + { + "id": "22378", + "name": "Horní Bříza", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84012000", + "longitude": "13.35558000" + }, + { + "id": "22402", + "name": "Hostouň", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55971000", + "longitude": "12.77147000" + }, + { + "id": "22430", + "name": "Hrádek", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71316000", + "longitude": "13.65296000" + }, + { + "id": "22421", + "name": "Hromnice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84907000", + "longitude": "13.44146000" + }, + { + "id": "22455", + "name": "Janovice nad Úhlavou", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.34515000", + "longitude": "13.21813000" + }, + { + "id": "22506", + "name": "Kašperské Hory", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14289000", + "longitude": "13.55616000" + }, + { + "id": "22502", + "name": "Kasejovice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.46270000", + "longitude": "13.74060000" + }, + { + "id": "22504", + "name": "Kaznějov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.89313000", + "longitude": "13.38295000" + }, + { + "id": "22508", + "name": "Kdyně", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.39077000", + "longitude": "13.03968000" + }, + { + "id": "22511", + "name": "Kladruby", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71498000", + "longitude": "12.98232000" + }, + { + "id": "22512", + "name": "Klatovy", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.39552000", + "longitude": "13.29505000" + }, + { + "id": "22514", + "name": "Klenčí pod Čerchovem", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.43484000", + "longitude": "12.81473000" + }, + { + "id": "22552", + "name": "Kožlany", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99389000", + "longitude": "13.54107000" + }, + { + "id": "22528", + "name": "Kolinec", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29895000", + "longitude": "13.43900000" + }, + { + "id": "22543", + "name": "Kout na Šumavě", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.40255000", + "longitude": "13.00208000" + }, + { + "id": "22554", + "name": "Kralovice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.98192000", + "longitude": "13.48747000" + }, + { + "id": "22666", + "name": "Líně", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.69472000", + "longitude": "13.25693000" + }, + { + "id": "22675", + "name": "Manětín", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.99177000", + "longitude": "13.23319000" + }, + { + "id": "22734", + "name": "Mýto", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78904000", + "longitude": "13.73461000" + }, + { + "id": "22745", + "name": "Měčín", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.48009000", + "longitude": "13.40289000" + }, + { + "id": "22744", + "name": "Město Touškov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77587000", + "longitude": "13.25108000" + }, + { + "id": "22678", + "name": "Meclov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50556000", + "longitude": "12.88082000" + }, + { + "id": "22680", + "name": "Merklín", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.56043000", + "longitude": "13.19790000" + }, + { + "id": "22698", + "name": "Mirošov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.68782000", + "longitude": "13.65807000" + }, + { + "id": "22731", + "name": "Mrákov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.40314000", + "longitude": "12.95120000" + }, + { + "id": "22799", + "name": "Nýřany", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71145000", + "longitude": "13.21185000" + }, + { + "id": "22798", + "name": "Nýrsko", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29387000", + "longitude": "13.14353000" + }, + { + "id": "22759", + "name": "Nepomuk", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.48616000", + "longitude": "13.58225000" + }, + { + "id": "22766", + "name": "Nezvěstice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.64043000", + "longitude": "13.51962000" + }, + { + "id": "22815", + "name": "Okres Domažlice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50000000", + "longitude": "12.91667000" + }, + { + "id": "22829", + "name": "Okres Klatovy", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.25000000", + "longitude": "13.41667000" + }, + { + "id": "22847", + "name": "Okres Plzeň-jih", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.58333000", + "longitude": "13.50000000" + }, + { + "id": "22848", + "name": "Okres Plzeň-město", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75000000", + "longitude": "13.36667000" + }, + { + "id": "22849", + "name": "Okres Plzeň-sever", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.91667000", + "longitude": "13.25000000" + }, + { + "id": "22858", + "name": "Okres Rokycany", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.78333000", + "longitude": "13.66667000" + }, + { + "id": "22864", + "name": "Okres Tachov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.76667000", + "longitude": "12.75000000" + }, + { + "id": "22896", + "name": "Osek", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.77594000", + "longitude": "13.59060000" + }, + { + "id": "23003", + "name": "Přeštice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.57298000", + "longitude": "13.33350000" + }, + { + "id": "23005", + "name": "Přimda", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.67488000", + "longitude": "12.67366000" + }, + { + "id": "22934", + "name": "Pilsen", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.74747000", + "longitude": "13.37759000" + }, + { + "id": "22935", + "name": "Planá", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86816000", + "longitude": "12.74378000" + }, + { + "id": "22937", + "name": "Plasy", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.93449000", + "longitude": "13.39035000" + }, + { + "id": "22942", + "name": "Plánice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.38993000", + "longitude": "13.47106000" + }, + { + "id": "22943", + "name": "Poběžovice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.51029000", + "longitude": "12.80261000" + }, + { + "id": "22959", + "name": "Postřekov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.45827000", + "longitude": "12.80678000" + }, + { + "id": "23012", + "name": "Radnice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.85677000", + "longitude": "13.60570000" + }, + { + "id": "23028", + "name": "Rokycany", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.74270000", + "longitude": "13.59459000" + }, + { + "id": "23097", + "name": "Spálené Poříčí", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.61371000", + "longitude": "13.60556000" + }, + { + "id": "23114", + "name": "Staňkov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55348000", + "longitude": "13.06976000" + }, + { + "id": "23113", + "name": "Starý Plzenec", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.69768000", + "longitude": "13.47350000" + }, + { + "id": "23138", + "name": "Stříbro", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75565000", + "longitude": "12.99700000" + }, + { + "id": "23118", + "name": "Stod", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63909000", + "longitude": "13.16474000" + }, + { + "id": "23122", + "name": "Strašice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.73552000", + "longitude": "13.75755000" + }, + { + "id": "23126", + "name": "Stráž", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66878000", + "longitude": "12.77546000" + }, + { + "id": "23131", + "name": "Strážov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.30326000", + "longitude": "13.24623000" + }, + { + "id": "23146", + "name": "Sušice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.23106000", + "longitude": "13.52018000" + }, + { + "id": "23155", + "name": "Tachov", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.79528000", + "longitude": "12.63365000" + }, + { + "id": "23203", + "name": "Třemošná", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.81584000", + "longitude": "13.39499000" + }, + { + "id": "23168", + "name": "Tlučná", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72425000", + "longitude": "13.23534000" + }, + { + "id": "23319", + "name": "Všeruby", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.84167000", + "longitude": "13.22943000" + }, + { + "id": "23224", + "name": "Vejprnice", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72988000", + "longitude": "13.27628000" + }, + { + "id": "23333", + "name": "Zbůch", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.67840000", + "longitude": "13.22564000" + }, + { + "id": "23328", + "name": "Zbiroh", + "state_id": 4608, + "state_code": "324", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.86024000", + "longitude": "13.77262000" + }, + { + "id": "23376", + "name": "Černý Most", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10475000", + "longitude": "14.57974000" + }, + { + "id": "22162", + "name": "Braník", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.03498000", + "longitude": "14.41518000" + }, + { + "id": "22290", + "name": "Dolní Počernice", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08760000", + "longitude": "14.57199000" + }, + { + "id": "22363", + "name": "Hodkovičky", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.02346000", + "longitude": "14.41415000" + }, + { + "id": "22387", + "name": "Horní Počernice", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.11210000", + "longitude": "14.61036000" + }, + { + "id": "22397", + "name": "Hostavice", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.09283000", + "longitude": "14.55822000" + }, + { + "id": "22499", + "name": "Karlín", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.09272000", + "longitude": "14.44711000" + }, + { + "id": "22507", + "name": "Kbely", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13333000", + "longitude": "14.55000000" + }, + { + "id": "22600", + "name": "Letňany", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.13333000", + "longitude": "14.51667000" + }, + { + "id": "22605", + "name": "Libeň", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10819000", + "longitude": "14.47457000" + }, + { + "id": "22672", + "name": "Malá Strana", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08774000", + "longitude": "14.40449000" + }, + { + "id": "22708", + "name": "Modřany", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.01116000", + "longitude": "14.40960000" + }, + { + "id": "22970", + "name": "Prague", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08804000", + "longitude": "14.42076000" + }, + { + "id": "22971", + "name": "Praha 1", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08802000", + "longitude": "14.42166000" + }, + { + "id": "22972", + "name": "Praha 16", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.98357000", + "longitude": "14.36110000" + }, + { + "id": "22973", + "name": "Praha 20", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.11568000", + "longitude": "14.61122000" + }, + { + "id": "22974", + "name": "Praha 21", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.07521000", + "longitude": "14.66898000" + }, + { + "id": "22977", + "name": "Prosek", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.11525000", + "longitude": "14.50685000" + }, + { + "id": "23061", + "name": "Satalice", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12484000", + "longitude": "14.57191000" + }, + { + "id": "23106", + "name": "Staré Město", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.08700000", + "longitude": "14.42024000" + }, + { + "id": "23139", + "name": "Střížkov", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.12674000", + "longitude": "14.49363000" + }, + { + "id": "23304", + "name": "Vysehrad", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.06509000", + "longitude": "14.41711000" + }, + { + "id": "23307", + "name": "Vysočany", + "state_id": 4598, + "state_code": "10", + "country_id": 58, + "country_code": "CZ", + "latitude": "50.10938000", + "longitude": "14.51667000" + }, + { + "id": "23414", + "name": "Ševětín", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.10005000", + "longitude": "14.57220000" + }, + { + "id": "23388", + "name": "České Budějovice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.97447000", + "longitude": "14.47434000" + }, + { + "id": "23390", + "name": "České Velenice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.76851000", + "longitude": "14.96368000" + }, + { + "id": "23393", + "name": "Český Krumlov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.81091000", + "longitude": "14.31521000" + }, + { + "id": "23394", + "name": "Český Rudolec", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.06835000", + "longitude": "15.32437000" + }, + { + "id": "23396", + "name": "Čimelice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.46557000", + "longitude": "14.06922000" + }, + { + "id": "23397", + "name": "Čkyně", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.11503000", + "longitude": "13.82906000" + }, + { + "id": "22115", + "name": "Bavorov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.12184000", + "longitude": "14.07893000" + }, + { + "id": "22118", + "name": "Bechyně", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29523000", + "longitude": "14.46810000" + }, + { + "id": "22123", + "name": "Benešov nad Černou", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.72940000", + "longitude": "14.62737000" + }, + { + "id": "22125", + "name": "Bernartice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.36889000", + "longitude": "14.38101000" + }, + { + "id": "22130", + "name": "Blatná", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.42489000", + "longitude": "13.88176000" + }, + { + "id": "22147", + "name": "Borek", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.02339000", + "longitude": "14.50088000" + }, + { + "id": "22149", + "name": "Borovany", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.89860000", + "longitude": "14.64227000" + }, + { + "id": "22150", + "name": "Borová Lada", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98983000", + "longitude": "13.65986000" + }, + { + "id": "22164", + "name": "Brloh", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.92987000", + "longitude": "14.21857000" + }, + { + "id": "22243", + "name": "Chýnov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.40677000", + "longitude": "14.81122000" + }, + { + "id": "22219", + "name": "Chlum u Třeboně", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.96235000", + "longitude": "14.92799000" + }, + { + "id": "22227", + "name": "Chotoviny", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47803000", + "longitude": "14.67695000" + }, + { + "id": "22240", + "name": "Chvalšiny", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.85401000", + "longitude": "14.21114000" + }, + { + "id": "22242", + "name": "Chyšky", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.52346000", + "longitude": "14.42757000" + }, + { + "id": "22252", + "name": "Dačice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08154000", + "longitude": "15.43727000" + }, + { + "id": "22324", + "name": "Dřiteň", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14280000", + "longitude": "14.34596000" + }, + { + "id": "22277", + "name": "Dolní Bukovsko", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.17086000", + "longitude": "14.58127000" + }, + { + "id": "22282", + "name": "Dolní Dvořiště", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.65642000", + "longitude": "14.45221000" + }, + { + "id": "22313", + "name": "Dubné", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.97619000", + "longitude": "14.36038000" + }, + { + "id": "22328", + "name": "Frymburk", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.66094000", + "longitude": "14.16564000" + }, + { + "id": "22355", + "name": "Hluboká nad Vltavou", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.05225000", + "longitude": "14.43427000" + }, + { + "id": "22385", + "name": "Horní Planá", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.76736000", + "longitude": "14.03257000" + }, + { + "id": "22390", + "name": "Horní Stropnice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.76124000", + "longitude": "14.73502000" + }, + { + "id": "22418", + "name": "Hrdějovice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01893000", + "longitude": "14.47857000" + }, + { + "id": "22436", + "name": "Husinec", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.05496000", + "longitude": "13.98697000" + }, + { + "id": "22460", + "name": "Jarošov nad Nežárkou", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.18989000", + "longitude": "15.06734000" + }, + { + "id": "22476", + "name": "Jindřichův Hradec", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14404000", + "longitude": "15.00301000" + }, + { + "id": "22479", + "name": "Jistebnice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.48553000", + "longitude": "14.52760000" + }, + { + "id": "22494", + "name": "Kamenný Újezd", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.89753000", + "longitude": "14.44638000" + }, + { + "id": "22495", + "name": "Kaplice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.73881000", + "longitude": "14.49449000" + }, + { + "id": "22496", + "name": "Kardašova Řečice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.18478000", + "longitude": "14.85315000" + }, + { + "id": "22503", + "name": "Katovice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.27348000", + "longitude": "13.83035000" + }, + { + "id": "22582", + "name": "Kájov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.81082000", + "longitude": "14.25859000" + }, + { + "id": "22583", + "name": "Křemže", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90497000", + "longitude": "14.30568000" + }, + { + "id": "22545", + "name": "Kovářov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.51760000", + "longitude": "14.27809000" + }, + { + "id": "22575", + "name": "Kunžak", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.12119000", + "longitude": "15.19028000" + }, + { + "id": "22592", + "name": "Ledenice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.93329000", + "longitude": "14.61886000" + }, + { + "id": "22603", + "name": "Lhenice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.99479000", + "longitude": "14.14980000" + }, + { + "id": "22627", + "name": "Lišov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01597000", + "longitude": "14.60838000" + }, + { + "id": "22626", + "name": "Litvínovice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.96207000", + "longitude": "14.45146000" + }, + { + "id": "22634", + "name": "Lomnice nad Lužnicí", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08468000", + "longitude": "14.71727000" + }, + { + "id": "22640", + "name": "Loučovice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.62019000", + "longitude": "14.25747000" + }, + { + "id": "22674", + "name": "Malšice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.36391000", + "longitude": "14.57868000" + }, + { + "id": "22670", + "name": "Malonty", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.68611000", + "longitude": "14.57678000" + }, + { + "id": "22689", + "name": "Milevsko", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.45089000", + "longitude": "14.36000000" + }, + { + "id": "22696", + "name": "Mirotice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.42908000", + "longitude": "14.03697000" + }, + { + "id": "22697", + "name": "Mirovice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.51555000", + "longitude": "14.03582000" + }, + { + "id": "22702", + "name": "Mladá Vožice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.53313000", + "longitude": "14.80857000" + }, + { + "id": "22762", + "name": "Netolice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.04930000", + "longitude": "14.19700000" + }, + { + "id": "22772", + "name": "Nová Bystřice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01926000", + "longitude": "15.10316000" + }, + { + "id": "22776", + "name": "Nová Včelnice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.23935000", + "longitude": "15.07260000" + }, + { + "id": "22777", + "name": "Nové Hrady", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.78963000", + "longitude": "14.77839000" + }, + { + "id": "22877", + "name": "Okres České Budějovice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.00000000", + "longitude": "14.50000000" + }, + { + "id": "22878", + "name": "Okres Český Krumlov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.75000000", + "longitude": "14.33333000" + }, + { + "id": "22824", + "name": "Okres Jindřichův Hradec", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08333000", + "longitude": "15.16667000" + }, + { + "id": "22854", + "name": "Okres Písek", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.40000000", + "longitude": "14.20000000" + }, + { + "id": "22850", + "name": "Okres Prachatice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.00000000", + "longitude": "13.86667000" + }, + { + "id": "22862", + "name": "Okres Strakonice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.26667000", + "longitude": "13.90000000" + }, + { + "id": "22867", + "name": "Okres Tábor", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.41667000", + "longitude": "14.66667000" + }, + { + "id": "22893", + "name": "Opařany", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.39678000", + "longitude": "14.48137000" + }, + { + "id": "22993", + "name": "Písek", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.30880000", + "longitude": "14.14750000" + }, + { + "id": "22936", + "name": "Planá nad Lužnicí", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.35444000", + "longitude": "14.70147000" + }, + { + "id": "22968", + "name": "Prachatice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01292000", + "longitude": "13.99752000" + }, + { + "id": "22982", + "name": "Protivín", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.19949000", + "longitude": "14.21717000" + }, + { + "id": "23013", + "name": "Radomyšl", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.31634000", + "longitude": "13.93024000" + }, + { + "id": "23049", + "name": "Rudolfov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.99339000", + "longitude": "14.54179000" + }, + { + "id": "23063", + "name": "Sedlice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.77401000", + "longitude": "14.39115000" + }, + { + "id": "23069", + "name": "Sepekov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.42865000", + "longitude": "14.41815000" + }, + { + "id": "23071", + "name": "Sezimovo Ústí", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.38519000", + "longitude": "14.68480000" + }, + { + "id": "23083", + "name": "Slavonice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.99753000", + "longitude": "15.35154000" + }, + { + "id": "23092", + "name": "Soběslav", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.25993000", + "longitude": "14.71861000" + }, + { + "id": "23098", + "name": "Srubec", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.94806000", + "longitude": "14.54131000" + }, + { + "id": "23099", + "name": "Stachy", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.10179000", + "longitude": "13.66659000" + }, + { + "id": "23120", + "name": "Strakonice", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.26141000", + "longitude": "13.90237000" + }, + { + "id": "23123", + "name": "Strmilov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.15846000", + "longitude": "15.19934000" + }, + { + "id": "23124", + "name": "Strunkovice nad Blanicí", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08402000", + "longitude": "14.05522000" + }, + { + "id": "23133", + "name": "Studená", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.18516000", + "longitude": "15.28688000" + }, + { + "id": "23141", + "name": "Suchdol nad Lužnicí", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.89000000", + "longitude": "14.87720000" + }, + { + "id": "23189", + "name": "Tábor", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.41441000", + "longitude": "14.65780000" + }, + { + "id": "23190", + "name": "Týn nad Vltavou", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.22340000", + "longitude": "14.42057000" + }, + { + "id": "23200", + "name": "Třeboň", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.00364000", + "longitude": "14.77065000" + }, + { + "id": "23173", + "name": "Trhové Sviny", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.84231000", + "longitude": "14.63924000" + }, + { + "id": "23214", + "name": "Vacov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.13686000", + "longitude": "13.72911000" + }, + { + "id": "23313", + "name": "Včelná", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.92373000", + "longitude": "14.45383000" + }, + { + "id": "23315", + "name": "Větřní", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.77425000", + "longitude": "14.28616000" + }, + { + "id": "23228", + "name": "Velešín", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.82949000", + "longitude": "14.46252000" + }, + { + "id": "23261", + "name": "Veselí nad Lužnicí", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.18430000", + "longitude": "14.69734000" + }, + { + "id": "23271", + "name": "Vimperk", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.05857000", + "longitude": "13.78286000" + }, + { + "id": "23279", + "name": "Vlachovo Březí", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08135000", + "longitude": "13.95842000" + }, + { + "id": "23286", + "name": "Vodňany", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14789000", + "longitude": "14.17513000" + }, + { + "id": "23288", + "name": "Volary", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90881000", + "longitude": "13.88657000" + }, + { + "id": "23289", + "name": "Volyně", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.16578000", + "longitude": "13.88624000" + }, + { + "id": "23309", + "name": "Vyšší Brod", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.61598000", + "longitude": "14.31183000" + }, + { + "id": "23337", + "name": "Zdíkov", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08456000", + "longitude": "13.69738000" + }, + { + "id": "23341", + "name": "Zliv", + "state_id": 4639, + "state_code": "31", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.06608000", + "longitude": "14.36613000" + }, + { + "id": "22107", + "name": "Adamov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.30162000", + "longitude": "16.65253000" + }, + { + "id": "23356", + "name": "Únanov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90082000", + "longitude": "16.06351000" + }, + { + "id": "23408", + "name": "Šakvice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.89746000", + "longitude": "16.71424000" + }, + { + "id": "23409", + "name": "Šanov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.80089000", + "longitude": "16.37858000" + }, + { + "id": "23410", + "name": "Šardice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.96403000", + "longitude": "17.02812000" + }, + { + "id": "23411", + "name": "Šatov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.79317000", + "longitude": "16.00992000" + }, + { + "id": "23416", + "name": "Šitbořice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01433000", + "longitude": "16.77975000" + }, + { + "id": "23417", + "name": "Šlapanice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.16863000", + "longitude": "16.72731000" + }, + { + "id": "23435", + "name": "Žabčice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01160000", + "longitude": "16.60257000" + }, + { + "id": "23440", + "name": "Ždánice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.06729000", + "longitude": "17.02751000" + }, + { + "id": "23446", + "name": "Želešice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.11689000", + "longitude": "16.58137000" + }, + { + "id": "23448", + "name": "Žeravice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.02288000", + "longitude": "17.23726000" + }, + { + "id": "23449", + "name": "Židlochovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.03952000", + "longitude": "16.61881000" + }, + { + "id": "23363", + "name": "Čebín", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.31324000", + "longitude": "16.47791000" + }, + { + "id": "23366", + "name": "Čejč", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.94653000", + "longitude": "16.96511000" + }, + { + "id": "23365", + "name": "Čejkovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90592000", + "longitude": "16.94230000" + }, + { + "id": "23375", + "name": "Černá Hora", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.41361000", + "longitude": "16.58140000" + }, + { + "id": "23407", + "name": "Říčany", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.21497000", + "longitude": "16.39362000" + }, + { + "id": "22196", + "name": "Bílovice nad Svitavou", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.24708000", + "longitude": "16.67247000" + }, + { + "id": "22204", + "name": "Břeclav", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.75897000", + "longitude": "16.88203000" + }, + { + "id": "22213", + "name": "Březí", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.81928000", + "longitude": "16.56748000" + }, + { + "id": "22131", + "name": "Blažovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.16569000", + "longitude": "16.78611000" + }, + { + "id": "22129", + "name": "Blansko", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.36304000", + "longitude": "16.64446000" + }, + { + "id": "22136", + "name": "Blížkovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.99976000", + "longitude": "15.83482000" + }, + { + "id": "22134", + "name": "Blučina", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.05497000", + "longitude": "16.64450000" + }, + { + "id": "22156", + "name": "Bošovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.05351000", + "longitude": "16.83676000" + }, + { + "id": "22157", + "name": "Božice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.83687000", + "longitude": "16.28875000" + }, + { + "id": "22154", + "name": "Bořetice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.91302000", + "longitude": "16.85306000" + }, + { + "id": "22155", + "name": "Bořitov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.42504000", + "longitude": "16.59119000" + }, + { + "id": "22152", + "name": "Boskovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.48751000", + "longitude": "16.65997000" + }, + { + "id": "22166", + "name": "Brno", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.19522000", + "longitude": "16.60796000" + }, + { + "id": "22180", + "name": "Bučovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14896000", + "longitude": "17.00191000" + }, + { + "id": "22190", + "name": "Bzenec", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.97336000", + "longitude": "17.26685000" + }, + { + "id": "22249", + "name": "Dambořice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.03828000", + "longitude": "16.91757000" + }, + { + "id": "22267", + "name": "Dobšice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.84834000", + "longitude": "16.08218000" + }, + { + "id": "22275", + "name": "Dolní Bojanovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.85861000", + "longitude": "17.02859000" + }, + { + "id": "22281", + "name": "Dolní Dunajovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.85447000", + "longitude": "16.59283000" + }, + { + "id": "22283", + "name": "Dolní Kounice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.07011000", + "longitude": "16.46492000" + }, + { + "id": "22285", + "name": "Dolní Loućky", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.36099000", + "longitude": "16.35871000" + }, + { + "id": "22302", + "name": "Domanín", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.00167000", + "longitude": "17.28476000" + }, + { + "id": "22305", + "name": "Doubravice nad Svitavou", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.43664000", + "longitude": "16.62937000" + }, + { + "id": "22310", + "name": "Drásov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.33183000", + "longitude": "16.47798000" + }, + { + "id": "22308", + "name": "Drnholec", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.85746000", + "longitude": "16.48586000" + }, + { + "id": "22309", + "name": "Drnovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.27630000", + "longitude": "16.95146000" + }, + { + "id": "22316", + "name": "Dubňany", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.91694000", + "longitude": "17.09004000" + }, + { + "id": "22350", + "name": "Hevlín", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.75209000", + "longitude": "16.38131000" + }, + { + "id": "22354", + "name": "Hlohovec", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.77399000", + "longitude": "16.76230000" + }, + { + "id": "22365", + "name": "Hodonín", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.84893000", + "longitude": "17.13244000" + }, + { + "id": "22364", + "name": "Hodonice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.83680000", + "longitude": "16.16337000" + }, + { + "id": "22403", + "name": "Hostěradice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.95006000", + "longitude": "16.25931000" + }, + { + "id": "22404", + "name": "Hovorany", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.95493000", + "longitude": "16.99346000" + }, + { + "id": "22424", + "name": "Hroznová Lhota", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90784000", + "longitude": "17.41697000" + }, + { + "id": "22426", + "name": "Hrušky", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.79272000", + "longitude": "16.97404000" + }, + { + "id": "22427", + "name": "Hrušovany nad Jevišovkou", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.82991000", + "longitude": "16.40271000" + }, + { + "id": "22428", + "name": "Hrušovany u Brna", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.03863000", + "longitude": "16.59429000" + }, + { + "id": "22437", + "name": "Hustopeče", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.94085000", + "longitude": "16.73762000" + }, + { + "id": "22444", + "name": "Ivančice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.10144000", + "longitude": "16.37752000" + }, + { + "id": "22443", + "name": "Ivanovice na Hané", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.30542000", + "longitude": "17.09343000" + }, + { + "id": "22459", + "name": "Jaroslavice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.75657000", + "longitude": "16.23351000" + }, + { + "id": "22463", + "name": "Jedovnice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.34453000", + "longitude": "16.75595000" + }, + { + "id": "22469", + "name": "Jevišovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98736000", + "longitude": "15.98992000" + }, + { + "id": "22584", + "name": "Křenovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14216000", + "longitude": "16.82932000" + }, + { + "id": "22585", + "name": "Křepice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.99986000", + "longitude": "16.71989000" + }, + { + "id": "22516", + "name": "Klobouky", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.99609000", + "longitude": "16.86298000" + }, + { + "id": "22520", + "name": "Kněždub", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.88666000", + "longitude": "17.39546000" + }, + { + "id": "22525", + "name": "Kobylí", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.93286000", + "longitude": "16.89159000" + }, + { + "id": "22542", + "name": "Kostice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.74685000", + "longitude": "16.97869000" + }, + { + "id": "22562", + "name": "Krumvíř", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98901000", + "longitude": "16.91027000" + }, + { + "id": "22577", + "name": "Kuřim", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29852000", + "longitude": "16.53144000" + }, + { + "id": "22574", + "name": "Kunštát", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50645000", + "longitude": "16.51722000" + }, + { + "id": "22580", + "name": "Kyjov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01018000", + "longitude": "17.12253000" + }, + { + "id": "22591", + "name": "Lanžhot", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.72443000", + "longitude": "16.96695000" + }, + { + "id": "22594", + "name": "Lednice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.79992000", + "longitude": "16.80339000" + }, + { + "id": "22595", + "name": "Lelekovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29144000", + "longitude": "16.57874000" + }, + { + "id": "22598", + "name": "Letonice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.17726000", + "longitude": "16.95913000" + }, + { + "id": "22599", + "name": "Letovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.54709000", + "longitude": "16.57357000" + }, + { + "id": "22621", + "name": "Lipůvka", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.33933000", + "longitude": "16.55313000" + }, + { + "id": "22618", + "name": "Lipov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90495000", + "longitude": "17.46171000" + }, + { + "id": "22619", + "name": "Lipovec", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.38394000", + "longitude": "16.80583000" + }, + { + "id": "22632", + "name": "Lomnice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.40462000", + "longitude": "16.41359000" + }, + { + "id": "22636", + "name": "Louka", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.91517000", + "longitude": "17.48927000" + }, + { + "id": "22657", + "name": "Lužice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.84098000", + "longitude": "17.07104000" + }, + { + "id": "22659", + "name": "Lysice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.45160000", + "longitude": "16.53716000" + }, + { + "id": "22737", + "name": "Měnín", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08240000", + "longitude": "16.69424000" + }, + { + "id": "22742", + "name": "Město Brno", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.19954000", + "longitude": "16.60755000" + }, + { + "id": "22688", + "name": "Mikulčice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.81643000", + "longitude": "17.05107000" + }, + { + "id": "22685", + "name": "Mikulov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.80556000", + "longitude": "16.63780000" + }, + { + "id": "22690", + "name": "Milotice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.95528000", + "longitude": "17.14241000" + }, + { + "id": "22695", + "name": "Miroslav", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.94767000", + "longitude": "16.31252000" + }, + { + "id": "22709", + "name": "Modřice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.11928000", + "longitude": "16.60446000" + }, + { + "id": "22712", + "name": "Mokrá Hora", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.26176000", + "longitude": "16.59107000" + }, + { + "id": "22715", + "name": "Moravany", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14780000", + "longitude": "16.58026000" + }, + { + "id": "22717", + "name": "Moravská Nová Ves", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.80304000", + "longitude": "17.01371000" + }, + { + "id": "22723", + "name": "Moravský Žižkov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.83285000", + "longitude": "16.93140000" + }, + { + "id": "22721", + "name": "Moravský Krumlov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.04893000", + "longitude": "16.31169000" + }, + { + "id": "22722", + "name": "Moravský Písek", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.99016000", + "longitude": "17.33269000" + }, + { + "id": "22729", + "name": "Moutnice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.04924000", + "longitude": "16.73741000" + }, + { + "id": "22733", + "name": "Mutěnice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90413000", + "longitude": "17.02917000" + }, + { + "id": "22755", + "name": "Nedvědice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.45702000", + "longitude": "16.33406000" + }, + { + "id": "22761", + "name": "Nesovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.15111000", + "longitude": "17.08095000" + }, + { + "id": "22769", + "name": "Nosislav", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01380000", + "longitude": "16.65431000" + }, + { + "id": "22771", + "name": "Novosedly", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.83704000", + "longitude": "16.49273000" + }, + { + "id": "22916", + "name": "Ořechov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.11118000", + "longitude": "16.52329000" + }, + { + "id": "22811", + "name": "Okres Břeclav", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.75958000", + "longitude": "16.87260000" + }, + { + "id": "22808", + "name": "Okres Blansko", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.37399000", + "longitude": "16.64360000" + }, + { + "id": "22809", + "name": "Okres Brno-venkov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.16667000", + "longitude": "16.50000000" + }, + { + "id": "22819", + "name": "Okres Hodonín", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.86471000", + "longitude": "17.13284000" + }, + { + "id": "22871", + "name": "Okres Vyškov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.27844000", + "longitude": "16.99362000" + }, + { + "id": "22873", + "name": "Okres Znojmo", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.86200000", + "longitude": "16.06270000" + }, + { + "id": "22883", + "name": "Olbramovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98480000", + "longitude": "16.40239000" + }, + { + "id": "22885", + "name": "Olešnice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55755000", + "longitude": "16.42169000" + }, + { + "id": "22901", + "name": "Oslavany", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.12335000", + "longitude": "16.33653000" + }, + { + "id": "22903", + "name": "Ostopovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.16100000", + "longitude": "16.54548000" + }, + { + "id": "22908", + "name": "Ostrov u Macochy", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.38236000", + "longitude": "16.76268000" + }, + { + "id": "22914", + "name": "Otnice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08642000", + "longitude": "16.81443000" + }, + { + "id": "22997", + "name": "Předklášteří", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.35253000", + "longitude": "16.40241000" + }, + { + "id": "22928", + "name": "Petrov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.88196000", + "longitude": "17.27810000" + }, + { + "id": "22945", + "name": "Podivín", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.82554000", + "longitude": "16.84822000" + }, + { + "id": "22946", + "name": "Podolí", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.19042000", + "longitude": "16.72084000" + }, + { + "id": "22948", + "name": "Pohořelice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98119000", + "longitude": "16.52445000" + }, + { + "id": "22964", + "name": "Pozořice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.20976000", + "longitude": "16.79074000" + }, + { + "id": "22985", + "name": "Prušánky", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.82840000", + "longitude": "16.98068000" + }, + { + "id": "22989", + "name": "Pustiměř", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.32251000", + "longitude": "17.02792000" + }, + { + "id": "23017", + "name": "Rajhrad", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.09021000", + "longitude": "16.60388000" + }, + { + "id": "23018", + "name": "Rajhradice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.09203000", + "longitude": "16.62933000" + }, + { + "id": "23020", + "name": "Rakvice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.85811000", + "longitude": "16.81330000" + }, + { + "id": "23025", + "name": "Ratíškovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.92002000", + "longitude": "17.16561000" + }, + { + "id": "23056", + "name": "Ráječko", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.39393000", + "longitude": "16.64497000" + }, + { + "id": "23055", + "name": "Rájec-Jestřebí", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.41094000", + "longitude": "16.63902000" + }, + { + "id": "23027", + "name": "Rohatec", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.88040000", + "longitude": "17.18330000" + }, + { + "id": "23035", + "name": "Rosice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.18232000", + "longitude": "16.38787000" + }, + { + "id": "23039", + "name": "Rousínov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.20128000", + "longitude": "16.88215000" + }, + { + "id": "23082", + "name": "Slavkov u Brna", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.15325000", + "longitude": "16.87649000" + }, + { + "id": "23093", + "name": "Sokolnice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.11392000", + "longitude": "16.72156000" + }, + { + "id": "23137", + "name": "Střelice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.15221000", + "longitude": "16.50399000" + }, + { + "id": "23129", + "name": "Strážnice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90102000", + "longitude": "17.31680000" + }, + { + "id": "23142", + "name": "Suchohrdly", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.86822000", + "longitude": "16.09471000" + }, + { + "id": "23145", + "name": "Sudoměřice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.86723000", + "longitude": "17.25676000" + }, + { + "id": "23150", + "name": "Svitávka", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50178000", + "longitude": "16.59793000" + }, + { + "id": "23157", + "name": "Tasovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.83610000", + "longitude": "16.15558000" + }, + { + "id": "23191", + "name": "Týnec", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.77943000", + "longitude": "17.01322000" + }, + { + "id": "23195", + "name": "Těšany", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.03956000", + "longitude": "16.77003000" + }, + { + "id": "23158", + "name": "Telnice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.10187000", + "longitude": "16.71774000" + }, + { + "id": "23166", + "name": "Tišnov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.34872000", + "longitude": "16.42438000" + }, + { + "id": "23180", + "name": "Troubsko", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.16951000", + "longitude": "16.51078000" + }, + { + "id": "23187", + "name": "Tvarožná", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.19177000", + "longitude": "16.77146000" + }, + { + "id": "23188", + "name": "Tvrdonice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.76048000", + "longitude": "16.99446000" + }, + { + "id": "23213", + "name": "Vacenovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.94510000", + "longitude": "17.17404000" + }, + { + "id": "23221", + "name": "Valtice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.74069000", + "longitude": "16.75499000" + }, + { + "id": "23235", + "name": "Velká nad Veličkou", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.88257000", + "longitude": "17.52060000" + }, + { + "id": "23236", + "name": "Velké Bílovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.84929000", + "longitude": "16.89227000" + }, + { + "id": "23244", + "name": "Velké Němčice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.99168000", + "longitude": "16.67208000" + }, + { + "id": "23245", + "name": "Velké Opatovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.61237000", + "longitude": "16.67947000" + }, + { + "id": "23246", + "name": "Velké Pavlovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90469000", + "longitude": "16.81605000" + }, + { + "id": "23262", + "name": "Veselí nad Moravou", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.95363000", + "longitude": "17.37648000" + }, + { + "id": "23264", + "name": "Veverská Bítýška", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.27591000", + "longitude": "16.43686000" + }, + { + "id": "23277", + "name": "Višňové", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98241000", + "longitude": "16.15025000" + }, + { + "id": "23273", + "name": "Viničné Šumice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.21358000", + "longitude": "16.82541000" + }, + { + "id": "23282", + "name": "Vlkoš", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98960000", + "longitude": "17.16356000" + }, + { + "id": "23285", + "name": "Vnorovy", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.93096000", + "longitude": "17.35050000" + }, + { + "id": "23287", + "name": "Vojkovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.05138000", + "longitude": "16.60820000" + }, + { + "id": "23291", + "name": "Vracov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.97523000", + "longitude": "17.21100000" + }, + { + "id": "23292", + "name": "Vranovice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.96600000", + "longitude": "16.60660000" + }, + { + "id": "23295", + "name": "Vrbice", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.91508000", + "longitude": "16.89779000" + }, + { + "id": "23298", + "name": "Vrbovec", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.79978000", + "longitude": "16.10061000" + }, + { + "id": "23308", + "name": "Vyškov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.27747000", + "longitude": "16.99897000" + }, + { + "id": "23325", + "name": "Zaječí", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.87295000", + "longitude": "16.76646000" + }, + { + "id": "23326", + "name": "Zastávka", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.18800000", + "longitude": "16.36310000" + }, + { + "id": "23332", + "name": "Zbýšov", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.15524000", + "longitude": "16.34951000" + }, + { + "id": "23330", + "name": "Zbraslav", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.22155000", + "longitude": "16.29415000" + }, + { + "id": "23344", + "name": "Znojmo", + "state_id": 4602, + "state_code": "64", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.85550000", + "longitude": "16.04880000" + }, + { + "id": "23421", + "name": "Štoky", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50249000", + "longitude": "15.58863000" + }, + { + "id": "23459", + "name": "Žďár nad Sázavou", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.56263000", + "longitude": "15.93924000" + }, + { + "id": "23460", + "name": "Žďár nad Sázavou Druhy", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.58726000", + "longitude": "15.93215000" + }, + { + "id": "23442", + "name": "Želetava", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14187000", + "longitude": "15.67300000" + }, + { + "id": "23447", + "name": "Želiv", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.52984000", + "longitude": "15.22181000" + }, + { + "id": "23451", + "name": "Žirovnice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.25318000", + "longitude": "15.18824000" + }, + { + "id": "23371", + "name": "Černovice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.37265000", + "longitude": "14.96089000" + }, + { + "id": "22114", + "name": "Batelov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.31425000", + "longitude": "15.39465000" + }, + { + "id": "22138", + "name": "Bohdalov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47921000", + "longitude": "15.87582000" + }, + { + "id": "22170", + "name": "Brtnice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.30695000", + "longitude": "15.67642000" + }, + { + "id": "22175", + "name": "Budišov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.27138000", + "longitude": "16.00383000" + }, + { + "id": "22187", + "name": "Bystřice nad Pernštejnem", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.52295000", + "longitude": "16.26147000" + }, + { + "id": "22228", + "name": "Chotěboř", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.72072000", + "longitude": "15.67018000" + }, + { + "id": "22259", + "name": "Dobronín", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47833000", + "longitude": "15.64992000" + }, + { + "id": "22279", + "name": "Dolní Cerekev", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.34449000", + "longitude": "15.45655000" + }, + { + "id": "22335", + "name": "Golčův Jeníkov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.81626000", + "longitude": "15.47686000" + }, + { + "id": "22338", + "name": "Habry", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.75603000", + "longitude": "15.48486000" + }, + { + "id": "22344", + "name": "Havlíčkův Brod", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.60690000", + "longitude": "15.57937000" + }, + { + "id": "22349", + "name": "Herálec", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.68891000", + "longitude": "15.99431000" + }, + { + "id": "22379", + "name": "Horní Cerekev", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.32026000", + "longitude": "15.32769000" + }, + { + "id": "22423", + "name": "Hrotovice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.10770000", + "longitude": "16.06067000" + }, + { + "id": "22435", + "name": "Humpolec", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.54152000", + "longitude": "15.35932000" + }, + { + "id": "22458", + "name": "Jaroměřice nad Rokytnou", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.09408000", + "longitude": "15.89331000" + }, + { + "id": "22464", + "name": "Jemnice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01898000", + "longitude": "15.56994000" + }, + { + "id": "22471", + "name": "Jihlava", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.39610000", + "longitude": "15.59124000" + }, + { + "id": "22473", + "name": "Jimramov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.63719000", + "longitude": "16.22632000" + }, + { + "id": "22488", + "name": "Kamenice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.36659000", + "longitude": "15.78023000" + }, + { + "id": "22490", + "name": "Kamenice nad Lipou", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.30303000", + "longitude": "15.07519000" + }, + { + "id": "22589", + "name": "Křížová", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.68841000", + "longitude": "15.85207000" + }, + { + "id": "22588", + "name": "Křižanov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.38858000", + "longitude": "16.10960000" + }, + { + "id": "22521", + "name": "Kněžice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.27078000", + "longitude": "15.67216000" + }, + { + "id": "22667", + "name": "Lípa", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.55418000", + "longitude": "15.54465000" + }, + { + "id": "22593", + "name": "Ledeč nad Sázavou", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.69517000", + "longitude": "15.27772000" + }, + { + "id": "22647", + "name": "Luka nad Jihlavou", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.37403000", + "longitude": "15.70194000" + }, + { + "id": "22648", + "name": "Lukavec", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.56541000", + "longitude": "14.99041000" + }, + { + "id": "22746", + "name": "Měřín", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.39321000", + "longitude": "15.88381000" + }, + { + "id": "22711", + "name": "Mohelno", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.11412000", + "longitude": "16.19022000" + }, + { + "id": "22719", + "name": "Moravské Budějovice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.05209000", + "longitude": "15.80864000" + }, + { + "id": "22795", + "name": "Náměšť nad Oslavou", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.20726000", + "longitude": "16.15849000" + }, + { + "id": "22773", + "name": "Nová Cerekev", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.41723000", + "longitude": "15.11675000" + }, + { + "id": "22778", + "name": "Nové Město na Moravě", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.56144000", + "longitude": "16.07418000" + }, + { + "id": "22783", + "name": "Nové Syrovice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01763000", + "longitude": "15.77345000" + }, + { + "id": "22784", + "name": "Nové Veselí", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.51976000", + "longitude": "15.90853000" + }, + { + "id": "22882", + "name": "Okříšky", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.24539000", + "longitude": "15.76959000" + }, + { + "id": "22880", + "name": "Okres Žďár nad Sázavou", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.50000000", + "longitude": "16.03333000" + }, + { + "id": "22818", + "name": "Okres Havlíčkův Brod", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66667000", + "longitude": "15.58333000" + }, + { + "id": "22823", + "name": "Okres Jihlava", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.33333000", + "longitude": "15.58333000" + }, + { + "id": "22846", + "name": "Okres Pelhřimov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.41667000", + "longitude": "15.16667000" + }, + { + "id": "22868", + "name": "Okres Třebíč", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.13333000", + "longitude": "15.93333000" + }, + { + "id": "22881", + "name": "Okrouhlice", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.62991000", + "longitude": "15.49083000" + }, + { + "id": "22917", + "name": "Pacov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47076000", + "longitude": "15.00168000" + }, + { + "id": "23004", + "name": "Přibyslav", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.57684000", + "longitude": "15.73855000" + }, + { + "id": "22925", + "name": "Pelhřimov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.43134000", + "longitude": "15.22336000" + }, + { + "id": "22965", + "name": "Počátky", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.26020000", + "longitude": "15.24022000" + }, + { + "id": "22953", + "name": "Polná", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.48700000", + "longitude": "15.71881000" + }, + { + "id": "23037", + "name": "Rouchovany", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.07036000", + "longitude": "16.10760000" + }, + { + "id": "23115", + "name": "Stařeč", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.19783000", + "longitude": "15.82791000" + }, + { + "id": "23153", + "name": "Světlá nad Sázavou", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.66801000", + "longitude": "15.40393000" + }, + { + "id": "23152", + "name": "Svratka", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.71066000", + "longitude": "16.03214000" + }, + { + "id": "23204", + "name": "Třešť", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29092000", + "longitude": "15.48211000" + }, + { + "id": "23201", + "name": "Třebíč", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.21492000", + "longitude": "15.88166000" + }, + { + "id": "23159", + "name": "Telč", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.18418000", + "longitude": "15.45275000" + }, + { + "id": "23231", + "name": "Velká Bíteš", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.28838000", + "longitude": "16.22742000" + }, + { + "id": "23243", + "name": "Velké Meziříčí", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.35522000", + "longitude": "16.01224000" + }, + { + "id": "23251", + "name": "Velký Beranov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.40504000", + "longitude": "15.66700000" + }, + { + "id": "23270", + "name": "Vilémov", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.81566000", + "longitude": "15.53584000" + }, + { + "id": "23280", + "name": "Vladislav", + "state_id": 4575, + "state_code": "63", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.21017000", + "longitude": "15.98830000" + }, + { + "id": "23354", + "name": "Újezd", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.16809000", + "longitude": "17.90610000" + }, + { + "id": "23424", + "name": "Štítná nad Vláří", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.06881000", + "longitude": "17.98274000" + }, + { + "id": "23431", + "name": "Šumice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.02858000", + "longitude": "17.72205000" + }, + { + "id": "23455", + "name": "Žlutava", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.19976000", + "longitude": "17.49037000" + }, + { + "id": "22111", + "name": "Babice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.12167000", + "longitude": "17.48075000" + }, + { + "id": "22191", + "name": "Bánov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98801000", + "longitude": "17.71752000" + }, + { + "id": "22195", + "name": "Bílovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.09965000", + "longitude": "17.54961000" + }, + { + "id": "22205", + "name": "Březnice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.18643000", + "longitude": "17.66277000" + }, + { + "id": "22208", + "name": "Březolupy", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.12138000", + "longitude": "17.58034000" + }, + { + "id": "22211", + "name": "Březová", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.92543000", + "longitude": "17.73986000" + }, + { + "id": "22144", + "name": "Bojkovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.03864000", + "longitude": "17.81487000" + }, + { + "id": "22151", + "name": "Boršice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.06254000", + "longitude": "17.35084000" + }, + { + "id": "22174", + "name": "Buchlovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08627000", + "longitude": "17.33852000" + }, + { + "id": "22188", + "name": "Bystřice pod Hostýnem", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.39924000", + "longitude": "17.67401000" + }, + { + "id": "22233", + "name": "Chropyně", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.35644000", + "longitude": "17.36451000" + }, + { + "id": "22239", + "name": "Chvalčov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.38918000", + "longitude": "17.71149000" + }, + { + "id": "22272", + "name": "Dolní Bečva", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.45498000", + "longitude": "18.19419000" + }, + { + "id": "22287", + "name": "Dolní Němčí", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.96837000", + "longitude": "17.58585000" + }, + { + "id": "22325", + "name": "Francova Lhota", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.20174000", + "longitude": "18.11175000" + }, + { + "id": "22330", + "name": "Fryšták", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.28520000", + "longitude": "17.68346000" + }, + { + "id": "22339", + "name": "Halenkov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.31740000", + "longitude": "18.14749000" + }, + { + "id": "22340", + "name": "Halenkovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.17102000", + "longitude": "17.47156000" + }, + { + "id": "22357", + "name": "Hluk", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98805000", + "longitude": "17.52744000" + }, + { + "id": "22410", + "name": "Hošťálková", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.35467000", + "longitude": "17.86944000" + }, + { + "id": "22368", + "name": "Holešov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.33331000", + "longitude": "17.57832000" + }, + { + "id": "22375", + "name": "Horní Bečva", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.43216000", + "longitude": "18.28859000" + }, + { + "id": "22382", + "name": "Horní Lideč", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.18121000", + "longitude": "18.06099000" + }, + { + "id": "22406", + "name": "Hovězí", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.30365000", + "longitude": "18.06062000" + }, + { + "id": "22434", + "name": "Hulín", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.31689000", + "longitude": "17.46374000" + }, + { + "id": "22439", + "name": "Hvozdná", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.24848000", + "longitude": "17.75163000" + }, + { + "id": "22450", + "name": "Jablůnka", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.38355000", + "longitude": "17.95021000" + }, + { + "id": "22452", + "name": "Jalubí", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.11626000", + "longitude": "17.42788000" + }, + { + "id": "22500", + "name": "Karolinka", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.35128000", + "longitude": "18.24006000" + }, + { + "id": "22509", + "name": "Kelč", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47844000", + "longitude": "17.81533000" + }, + { + "id": "22523", + "name": "Kněžpole", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.09855000", + "longitude": "17.51671000" + }, + { + "id": "22535", + "name": "Koryčany", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.10639000", + "longitude": "17.16433000" + }, + { + "id": "22560", + "name": "Kroměříž", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29785000", + "longitude": "17.39312000" + }, + { + "id": "22569", + "name": "Kunovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.04499000", + "longitude": "17.47011000" + }, + { + "id": "22578", + "name": "Kvasice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.24223000", + "longitude": "17.46974000" + }, + { + "id": "22601", + "name": "Lešná", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.52055000", + "longitude": "17.93004000" + }, + { + "id": "22616", + "name": "Lidečko", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.20303000", + "longitude": "18.05130000" + }, + { + "id": "22620", + "name": "Liptál", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29051000", + "longitude": "17.92177000" + }, + { + "id": "22646", + "name": "Luhačovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.09982000", + "longitude": "17.75747000" + }, + { + "id": "22650", + "name": "Lukov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29027000", + "longitude": "17.72959000" + }, + { + "id": "22699", + "name": "Mistřice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08668000", + "longitude": "17.53597000" + }, + { + "id": "22749", + "name": "Napajedla", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.17156000", + "longitude": "17.51194000" + }, + { + "id": "22754", + "name": "Nedašov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.10778000", + "longitude": "18.07036000" + }, + { + "id": "22753", + "name": "Nedakonice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.03159000", + "longitude": "17.38141000" + }, + { + "id": "22767", + "name": "Nivnice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.97465000", + "longitude": "17.64757000" + }, + { + "id": "22787", + "name": "Nový Hrozenkov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.33697000", + "longitude": "18.19793000" + }, + { + "id": "22831", + "name": "Okres Kroměříž", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.33333000", + "longitude": "17.50000000" + }, + { + "id": "22869", + "name": "Okres Uherské Hradiště", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.01667000", + "longitude": "17.55000000" + }, + { + "id": "22870", + "name": "Okres Vsetín", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.36667000", + "longitude": "18.08333000" + }, + { + "id": "22872", + "name": "Okres Zlín", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.21667000", + "longitude": "17.78333000" + }, + { + "id": "22909", + "name": "Ostrožská Lhota", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.97559000", + "longitude": "17.46751000" + }, + { + "id": "22910", + "name": "Ostrožská Nová Ves", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.00434000", + "longitude": "17.43632000" + }, + { + "id": "22915", + "name": "Otrokovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.20934000", + "longitude": "17.53944000" + }, + { + "id": "22950", + "name": "Polešovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.03390000", + "longitude": "17.34064000" + }, + { + "id": "22956", + "name": "Popovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.05255000", + "longitude": "17.52712000" + }, + { + "id": "22963", + "name": "Pozlovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.12921000", + "longitude": "17.76925000" + }, + { + "id": "22980", + "name": "Prostřední Bečva", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.43609000", + "longitude": "18.25200000" + }, + { + "id": "22984", + "name": "Prusinovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.37898000", + "longitude": "17.58710000" + }, + { + "id": "23023", + "name": "Rataje", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.27130000", + "longitude": "17.33555000" + }, + { + "id": "23024", + "name": "Ratiboř", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.36769000", + "longitude": "17.91499000" + }, + { + "id": "23043", + "name": "Rožnov pod Radhoštěm", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.45853000", + "longitude": "18.14302000" + }, + { + "id": "23080", + "name": "Slavičín", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08799000", + "longitude": "17.87349000" + }, + { + "id": "23084", + "name": "Slušovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.24782000", + "longitude": "17.80150000" + }, + { + "id": "23096", + "name": "Spytihněv", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14115000", + "longitude": "17.49808000" + }, + { + "id": "23107", + "name": "Staré Město", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.07515000", + "longitude": "17.43338000" + }, + { + "id": "23125", + "name": "Strání", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.90216000", + "longitude": "17.70671000" + }, + { + "id": "23143", + "name": "Suchá Loz", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.97001000", + "longitude": "17.71379000" + }, + { + "id": "23163", + "name": "Tečovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.22107000", + "longitude": "17.58733000" + }, + { + "id": "23167", + "name": "Tlumačov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.25351000", + "longitude": "17.49559000" + }, + { + "id": "23169", + "name": "Topolná", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.12187000", + "longitude": "17.54434000" + }, + { + "id": "23172", + "name": "Traplice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.13088000", + "longitude": "17.43622000" + }, + { + "id": "23176", + "name": "Trnava", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.29603000", + "longitude": "17.84191000" + }, + { + "id": "23185", + "name": "Tupesy", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.08427000", + "longitude": "17.36983000" + }, + { + "id": "23206", + "name": "Uherské Hradiště", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.06975000", + "longitude": "17.45969000" + }, + { + "id": "23207", + "name": "Uherský Brod", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.02513000", + "longitude": "17.64715000" + }, + { + "id": "23208", + "name": "Uherský Ostroh", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "48.98556000", + "longitude": "17.38984000" + }, + { + "id": "23215", + "name": "Valašská Bystřice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.41507000", + "longitude": "18.10977000" + }, + { + "id": "23216", + "name": "Valašská Polanka", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.26215000", + "longitude": "17.99667000" + }, + { + "id": "23217", + "name": "Valašské Klobouky", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.14064000", + "longitude": "18.00760000" + }, + { + "id": "23218", + "name": "Valašské Meziříčí", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47181000", + "longitude": "17.97113000" + }, + { + "id": "23317", + "name": "Všemina", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.28100000", + "longitude": "17.87682000" + }, + { + "id": "23226", + "name": "Velehrad", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.10543000", + "longitude": "17.39426000" + }, + { + "id": "23241", + "name": "Velké Karlovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.36064000", + "longitude": "18.28355000" + }, + { + "id": "23267", + "name": "Vidče", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.44151000", + "longitude": "18.09473000" + }, + { + "id": "23275", + "name": "Vizovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.22287000", + "longitude": "17.85455000" + }, + { + "id": "23278", + "name": "Vlachovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.12377000", + "longitude": "17.94001000" + }, + { + "id": "23284", + "name": "Vlčnov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.00990000", + "longitude": "17.58183000" + }, + { + "id": "23303", + "name": "Vsetín", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.33871000", + "longitude": "17.99619000" + }, + { + "id": "23327", + "name": "Zašová", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.47410000", + "longitude": "18.04436000" + }, + { + "id": "23349", + "name": "Záhorovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.02266000", + "longitude": "17.77922000" + }, + { + "id": "23329", + "name": "Zborovice", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.24889000", + "longitude": "17.28464000" + }, + { + "id": "23336", + "name": "Zdounky", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.22771000", + "longitude": "17.31899000" + }, + { + "id": "23343", + "name": "Zlín", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.22645000", + "longitude": "17.67065000" + }, + { + "id": "23340", + "name": "Zlechov", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.07396000", + "longitude": "17.37938000" + }, + { + "id": "23346", + "name": "Zubří", + "state_id": 4563, + "state_code": "724", + "country_id": 58, + "country_code": "CZ", + "latitude": "49.46603000", + "longitude": "18.09249000" + }, + { + "id": "30577", + "name": "Albertslund", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.65691000", + "longitude": "12.36381000" + }, + { + "id": "30578", + "name": "Albertslund Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.68022000", + "longitude": "12.34797000" + }, + { + "id": "30579", + "name": "Allerød Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.85856000", + "longitude": "12.32558000" + }, + { + "id": "31000", + "name": "Ølstykke", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.79567000", + "longitude": "12.15509000" + }, + { + "id": "30990", + "name": "Åkirkeby", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.07080000", + "longitude": "14.91978000" + }, + { + "id": "30589", + "name": "Ballerup", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.73165000", + "longitude": "12.36328000" + }, + { + "id": "30590", + "name": "Ballerup Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.73248000", + "longitude": "12.35793000" + }, + { + "id": "30595", + "name": "Birkerød", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.84759000", + "longitude": "12.42791000" + }, + { + "id": "30598", + "name": "Blovstrød", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.87038000", + "longitude": "12.38640000" + }, + { + "id": "30601", + "name": "Bornholm Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.12386000", + "longitude": "14.91115000" + }, + { + "id": "30610", + "name": "Brøndby Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.64290000", + "longitude": "12.41101000" + }, + { + "id": "30616", + "name": "Charlottenlund", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75238000", + "longitude": "12.57450000" + }, + { + "id": "30619", + "name": "Christiansø", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.31982000", + "longitude": "15.18783000" + }, + { + "id": "30618", + "name": "Christianshavn", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.67383000", + "longitude": "12.59541000" + }, + { + "id": "30620", + "name": "Copenhagen", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.67594000", + "longitude": "12.56553000" + }, + { + "id": "30622", + "name": "Dragør", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.59280000", + "longitude": "12.67221000" + }, + { + "id": "30623", + "name": "Dragør Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.58233000", + "longitude": "12.62756000" + }, + { + "id": "30627", + "name": "Egedal Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75556000", + "longitude": "12.22778000" + }, + { + "id": "30633", + "name": "Espergærde", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.99464000", + "longitude": "12.54733000" + }, + { + "id": "30638", + "name": "Farum", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.80858000", + "longitude": "12.36066000" + }, + { + "id": "30645", + "name": "Fløng", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.66212000", + "longitude": "12.18698000" + }, + { + "id": "30648", + "name": "Fredensborg", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.97558000", + "longitude": "12.40314000" + }, + { + "id": "30649", + "name": "Fredensborg Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.95000000", + "longitude": "12.45000000" + }, + { + "id": "30652", + "name": "Frederiksberg", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.67938000", + "longitude": "12.53463000" + }, + { + "id": "30654", + "name": "Frederiksberg Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.67856000", + "longitude": "12.52216000" + }, + { + "id": "30657", + "name": "Frederikssund", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.83956000", + "longitude": "12.06896000" + }, + { + "id": "30658", + "name": "Frederikssund Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.80957000", + "longitude": "12.04038000" + }, + { + "id": "30659", + "name": "Frederiksværk", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.97073000", + "longitude": "12.02250000" + }, + { + "id": "30662", + "name": "Furesø Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.78333000", + "longitude": "12.34167000" + }, + { + "id": "30664", + "name": "Ganløse", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.79124000", + "longitude": "12.26421000" + }, + { + "id": "30665", + "name": "Gentofte Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75000000", + "longitude": "12.55000000" + }, + { + "id": "30666", + "name": "Gilleleje", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "56.12196000", + "longitude": "12.31056000" + }, + { + "id": "30670", + "name": "Gladsaxe Municipality", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.76667000", + "longitude": "12.43333000" + }, + { + "id": "30672", + "name": "Glostrup", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.66660000", + "longitude": "12.40377000" + }, + { + "id": "30673", + "name": "Glostrup Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.68188000", + "longitude": "12.41018000" + }, + { + "id": "30681", + "name": "Græsted", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "56.06558000", + "longitude": "12.28512000" + }, + { + "id": "30678", + "name": "Gribskov Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "56.05833000", + "longitude": "12.24167000" + }, + { + "id": "30691", + "name": "Halsnæs Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.96765000", + "longitude": "11.94214000" + }, + { + "id": "30736", + "name": "Høje-Taastrup Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.65643000", + "longitude": "12.24854000" + }, + { + "id": "30739", + "name": "Hørsholm", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.88098000", + "longitude": "12.50111000" + }, + { + "id": "30740", + "name": "Hørsholm Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.88759000", + "longitude": "12.48566000" + }, + { + "id": "30700", + "name": "Hellebæk", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "56.06823000", + "longitude": "12.55782000" + }, + { + "id": "30702", + "name": "Helsingør", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "56.03606000", + "longitude": "12.61360000" + }, + { + "id": "30703", + "name": "Helsingør Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "56.05000000", + "longitude": "12.50000000" + }, + { + "id": "30701", + "name": "Helsinge", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "56.02283000", + "longitude": "12.19752000" + }, + { + "id": "30704", + "name": "Herlev Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.73317000", + "longitude": "12.43106000" + }, + { + "id": "30707", + "name": "Hillerød", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.92791000", + "longitude": "12.30081000" + }, + { + "id": "30708", + "name": "Hillerød Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.92319000", + "longitude": "12.23794000" + }, + { + "id": "30722", + "name": "Hornbæk", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "56.09027000", + "longitude": "12.45693000" + }, + { + "id": "30727", + "name": "Humlebæk", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.96180000", + "longitude": "12.53410000" + }, + { + "id": "30728", + "name": "Hundested", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.96397000", + "longitude": "11.85044000" + }, + { + "id": "30731", + "name": "Hvidovre", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.65719000", + "longitude": "12.47364000" + }, + { + "id": "30732", + "name": "Hvidovre Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.63166000", + "longitude": "12.46615000" + }, + { + "id": "30745", + "name": "Ishøj", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.61543000", + "longitude": "12.35182000" + }, + { + "id": "30746", + "name": "Ishøj Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.62299000", + "longitude": "12.30567000" + }, + { + "id": "30752", + "name": "Jægerspris", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.85248000", + "longitude": "11.98565000" + }, + { + "id": "30770", + "name": "København", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.67110000", + "longitude": "12.56529000" + }, + { + "id": "30762", + "name": "Kokkedal", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.91179000", + "longitude": "12.49952000" + }, + { + "id": "30766", + "name": "Kongens Lyngby", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.77044000", + "longitude": "12.50378000" + }, + { + "id": "30780", + "name": "Lillerød", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.87496000", + "longitude": "12.34579000" + }, + { + "id": "30782", + "name": "Liseleje", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "56.01295000", + "longitude": "11.96544000" + }, + { + "id": "30785", + "name": "Lyngby-Tårbæk Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.78456000", + "longitude": "12.50508000" + }, + { + "id": "30786", + "name": "Lynge", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.83941000", + "longitude": "12.27725000" + }, + { + "id": "30803", + "name": "Måløv", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75528000", + "longitude": "12.32327000" + }, + { + "id": "30823", + "name": "Nødebo", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.97877000", + "longitude": "12.34685000" + }, + { + "id": "30808", + "name": "Nexø", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.06067000", + "longitude": "15.13058000" + }, + { + "id": "30810", + "name": "Nivå", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.93405000", + "longitude": "12.50485000" + }, + { + "id": "30857", + "name": "Rødovre", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.68062000", + "longitude": "12.45373000" + }, + { + "id": "30858", + "name": "Rødovre Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.68852000", + "longitude": "12.44834000" + }, + { + "id": "30861", + "name": "Rønne", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.10091000", + "longitude": "14.70664000" + }, + { + "id": "30849", + "name": "Rudersdal Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.82500000", + "longitude": "12.49167000" + }, + { + "id": "30880", + "name": "Skævinge", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.90785000", + "longitude": "12.15036000" + }, + { + "id": "30874", + "name": "Skibby", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75122000", + "longitude": "11.96083000" + }, + { + "id": "30884", + "name": "Slangerup", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.85000000", + "longitude": "12.18333000" + }, + { + "id": "30885", + "name": "Smørumnedre", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.74232000", + "longitude": "12.30276000" + }, + { + "id": "30896", + "name": "Stavnsholt", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.81479000", + "longitude": "12.40545000" + }, + { + "id": "30900", + "name": "Stenløse", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.76828000", + "longitude": "12.19723000" + }, + { + "id": "30930", + "name": "Taastrup", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.65006000", + "longitude": "12.30160000" + }, + { + "id": "30946", + "name": "Tårnby", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.63030000", + "longitude": "12.60035000" + }, + { + "id": "30947", + "name": "Tårnby Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.60391000", + "longitude": "12.59599000" + }, + { + "id": "30944", + "name": "Trørød", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.83946000", + "longitude": "12.54432000" + }, + { + "id": "30957", + "name": "Vallensbæk", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.62199000", + "longitude": "12.38511000" + }, + { + "id": "30958", + "name": "Vallensbæk Kommune", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.63128000", + "longitude": "12.37369000" + }, + { + "id": "30960", + "name": "Vanløse", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.68361000", + "longitude": "12.48713000" + }, + { + "id": "30988", + "name": "Værløse", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.78251000", + "longitude": "12.36856000" + }, + { + "id": "30967", + "name": "Veksø", + "state_id": 1530, + "state_code": "84", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75473000", + "longitude": "12.23837000" + }, + { + "id": "30580", + "name": "Allingåbro", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.46432000", + "longitude": "10.31957000" + }, + { + "id": "30585", + "name": "Assentoft", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.44210000", + "longitude": "10.15170000" + }, + { + "id": "30587", + "name": "Auning", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.43079000", + "longitude": "10.37818000" + }, + { + "id": "30588", + "name": "Avlum", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.26539000", + "longitude": "8.79256000" + }, + { + "id": "30993", + "name": "Århus", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.15674000", + "longitude": "10.21076000" + }, + { + "id": "30994", + "name": "Århus Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.16317000", + "longitude": "10.16897000" + }, + { + "id": "30591", + "name": "Beder", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.06025000", + "longitude": "10.21179000" + }, + { + "id": "30596", + "name": "Bjerringbro", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.37797000", + "longitude": "9.66065000" + }, + { + "id": "30600", + "name": "Bording Kirkeby", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.16871000", + "longitude": "9.24384000" + }, + { + "id": "30604", + "name": "Brande", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.94316000", + "longitude": "9.12798000" + }, + { + "id": "30609", + "name": "Brædstrup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.97153000", + "longitude": "9.61129000" + }, + { + "id": "30626", + "name": "Ebeltoft", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.19442000", + "longitude": "10.68210000" + }, + { + "id": "30639", + "name": "Favrskov Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.31667000", + "longitude": "9.94000000" + }, + { + "id": "30647", + "name": "Framlev", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.15664000", + "longitude": "10.01318000" + }, + { + "id": "30663", + "name": "Galten", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.15902000", + "longitude": "9.91691000" + }, + { + "id": "30669", + "name": "Gjellerup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.14616000", + "longitude": "9.05467000" + }, + { + "id": "30675", + "name": "Grenaa", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.41578000", + "longitude": "10.87825000" + }, + { + "id": "30688", + "name": "Hadsten", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.32819000", + "longitude": "10.04931000" + }, + { + "id": "30692", + "name": "Hammel", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.25762000", + "longitude": "9.86316000" + }, + { + "id": "30693", + "name": "Hammerum", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.13361000", + "longitude": "9.06121000" + }, + { + "id": "30695", + "name": "Harboøre", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.61752000", + "longitude": "8.18069000" + }, + { + "id": "30738", + "name": "Hørning", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.08701000", + "longitude": "10.03716000" + }, + { + "id": "30698", + "name": "Hedensted", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.77043000", + "longitude": "9.70110000" + }, + { + "id": "30699", + "name": "Hedensted Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.79680000", + "longitude": "9.74400000" + }, + { + "id": "30705", + "name": "Herning", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.13615000", + "longitude": "8.97662000" + }, + { + "id": "30706", + "name": "Herning Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.14997000", + "longitude": "8.89712000" + }, + { + "id": "30709", + "name": "Hinnerup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.26608000", + "longitude": "10.06299000" + }, + { + "id": "30712", + "name": "Hjortshøj", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.24811000", + "longitude": "10.26533000" + }, + { + "id": "30719", + "name": "Holstebro", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.36009000", + "longitude": "8.61607000" + }, + { + "id": "30720", + "name": "Holstebro Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.35916000", + "longitude": "8.59631000" + }, + { + "id": "30723", + "name": "Hornslet", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.31550000", + "longitude": "10.32041000" + }, + { + "id": "30724", + "name": "Hornsyld", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75621000", + "longitude": "9.85643000" + }, + { + "id": "30725", + "name": "Horsens", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.86066000", + "longitude": "9.85034000" + }, + { + "id": "30726", + "name": "Horsens Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.92740000", + "longitude": "9.77377000" + }, + { + "id": "30730", + "name": "Hvide Sande", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.99866000", + "longitude": "8.12605000" + }, + { + "id": "30743", + "name": "Ikast", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.13883000", + "longitude": "9.15768000" + }, + { + "id": "30744", + "name": "Ikast-Brande Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.98333000", + "longitude": "9.21667000" + }, + { + "id": "30749", + "name": "Juelsminde", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.70876000", + "longitude": "10.01668000" + }, + { + "id": "30755", + "name": "Karup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.30673000", + "longitude": "9.16835000" + }, + { + "id": "30758", + "name": "Kibæk", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.03170000", + "longitude": "8.85697000" + }, + { + "id": "30760", + "name": "Kjellerup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.28581000", + "longitude": "9.43528000" + }, + { + "id": "30765", + "name": "Kolt", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.10845000", + "longitude": "10.06986000" + }, + { + "id": "30775", + "name": "Langå", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.39026000", + "longitude": "9.89486000" + }, + { + "id": "30790", + "name": "Løgten", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.27459000", + "longitude": "10.31181000" + }, + { + "id": "30778", + "name": "Lemvig", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.54856000", + "longitude": "8.31019000" + }, + { + "id": "30779", + "name": "Lemvig Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.49136000", + "longitude": "8.29927000" + }, + { + "id": "30781", + "name": "Lind", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.10600000", + "longitude": "8.97915000" + }, + { + "id": "30787", + "name": "Lystrup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.23750000", + "longitude": "10.23778000" + }, + { + "id": "30794", + "name": "Malling", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.03632000", + "longitude": "10.19632000" + }, + { + "id": "30804", + "name": "Mårslet", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.06690000", + "longitude": "10.16112000" + }, + { + "id": "30813", + "name": "Norddjurs Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.44124000", + "longitude": "10.76660000" + }, + { + "id": "30827", + "name": "Odder", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.97313000", + "longitude": "10.15300000" + }, + { + "id": "30828", + "name": "Odder Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.92967000", + "longitude": "10.15304000" + }, + { + "id": "30838", + "name": "Randers", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.46070000", + "longitude": "10.03639000" + }, + { + "id": "30839", + "name": "Randers Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.51561000", + "longitude": "10.06901000" + }, + { + "id": "30860", + "name": "Rønde", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.30145000", + "longitude": "10.47505000" + }, + { + "id": "30843", + "name": "Ringkøbing", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.09006000", + "longitude": "8.24402000" + }, + { + "id": "30844", + "name": "Ringkøbing-Skjern Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.01000000", + "longitude": "8.39667000" + }, + { + "id": "30851", + "name": "Ry", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.09038000", + "longitude": "9.76505000" + }, + { + "id": "30852", + "name": "Ryomgård", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.38430000", + "longitude": "10.50295000" + }, + { + "id": "30863", + "name": "Sabro", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.21333000", + "longitude": "10.03441000" + }, + { + "id": "30865", + "name": "Samsø Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.85245000", + "longitude": "10.60045000" + }, + { + "id": "30925", + "name": "Søften", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.23801000", + "longitude": "10.08510000" + }, + { + "id": "30867", + "name": "Silkeborg", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.16970000", + "longitude": "9.54508000" + }, + { + "id": "30868", + "name": "Silkeborg Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.17495000", + "longitude": "9.54666000" + }, + { + "id": "30872", + "name": "Skanderborg", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.03434000", + "longitude": "9.93177000" + }, + { + "id": "30873", + "name": "Skanderborg Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.07956000", + "longitude": "9.89868000" + }, + { + "id": "30875", + "name": "Skive", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.56699000", + "longitude": "9.02707000" + }, + { + "id": "30876", + "name": "Skive Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.64478000", + "longitude": "8.97660000" + }, + { + "id": "30877", + "name": "Skjern", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.95000000", + "longitude": "8.50000000" + }, + { + "id": "30878", + "name": "Skovby", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.15672000", + "longitude": "9.94523000" + }, + { + "id": "30886", + "name": "Snejbjerg", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.13291000", + "longitude": "8.90353000" + }, + { + "id": "30888", + "name": "Solbjerg", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.04271000", + "longitude": "10.08631000" + }, + { + "id": "30894", + "name": "Spentrup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.53703000", + "longitude": "10.03792000" + }, + { + "id": "30897", + "name": "Stavtrup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.13124000", + "longitude": "10.11987000" + }, + { + "id": "30903", + "name": "Stilling", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.06224000", + "longitude": "9.98822000" + }, + { + "id": "30904", + "name": "Stoholm", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.48454000", + "longitude": "9.14617000" + }, + { + "id": "30909", + "name": "Struer", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.49205000", + "longitude": "8.59397000" + }, + { + "id": "30910", + "name": "Struer Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.46667000", + "longitude": "8.58333000" + }, + { + "id": "30915", + "name": "Sunds", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.20743000", + "longitude": "9.01386000" + }, + { + "id": "30917", + "name": "Svejbæk", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.13255000", + "longitude": "9.63289000" + }, + { + "id": "30923", + "name": "Syddjurs Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.31250000", + "longitude": "10.52083000" + }, + { + "id": "30931", + "name": "Tarm", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.90861000", + "longitude": "8.53041000" + }, + { + "id": "30952", + "name": "Tørring", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "55.85000000", + "longitude": "9.48333000" + }, + { + "id": "30936", + "name": "Thyborøn", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.69846000", + "longitude": "8.21238000" + }, + { + "id": "30942", + "name": "Tranbjerg", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.09519000", + "longitude": "10.13605000" + }, + { + "id": "30943", + "name": "Trige", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.25291000", + "longitude": "10.14840000" + }, + { + "id": "30953", + "name": "Ulfborg", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.26725000", + "longitude": "8.32167000" + }, + { + "id": "30955", + "name": "Ulstrup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.38994000", + "longitude": "9.79354000" + }, + { + "id": "30972", + "name": "Viborg", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.45319000", + "longitude": "9.40201000" + }, + { + "id": "30973", + "name": "Viborg Kommune", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.45000000", + "longitude": "9.36667000" + }, + { + "id": "30975", + "name": "Videbæk", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.08760000", + "longitude": "8.62852000" + }, + { + "id": "30976", + "name": "Vildbjerg", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.20000000", + "longitude": "8.76667000" + }, + { + "id": "30978", + "name": "Vinderup", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.48176000", + "longitude": "8.77991000" + }, + { + "id": "30981", + "name": "Virklund", + "state_id": 1531, + "state_code": "82", + "country_id": 59, + "country_code": "DK", + "latitude": "56.13218000", + "longitude": "9.55582000" + }, + { + "id": "30575", + "name": "Aalborg", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.04800000", + "longitude": "9.91870000" + }, + { + "id": "30576", + "name": "Aars", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.80399000", + "longitude": "9.51441000" + }, + { + "id": "30581", + "name": "Arden", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.76899000", + "longitude": "9.86184000" + }, + { + "id": "30989", + "name": "Åbybro", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.16249000", + "longitude": "9.72996000" + }, + { + "id": "30991", + "name": "Ålborg Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.00000000", + "longitude": "9.95000000" + }, + { + "id": "30992", + "name": "Ålestrup", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.69470000", + "longitude": "9.49336000" + }, + { + "id": "30611", + "name": "Brønderslev", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.27021000", + "longitude": "9.94102000" + }, + { + "id": "30612", + "name": "Brønderslev Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.23506000", + "longitude": "10.10061000" + }, + { + "id": "30608", + "name": "Brovst", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.09750000", + "longitude": "9.52264000" + }, + { + "id": "30624", + "name": "Dronninglund", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.16035000", + "longitude": "10.29287000" + }, + { + "id": "30637", + "name": "Farsø", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.77276000", + "longitude": "9.33925000" + }, + { + "id": "30644", + "name": "Fjerritslev", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.08822000", + "longitude": "9.26622000" + }, + { + "id": "30655", + "name": "Frederikshavn", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.44073000", + "longitude": "10.53661000" + }, + { + "id": "30656", + "name": "Frederikshavn Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.43347000", + "longitude": "10.42507000" + }, + { + "id": "30660", + "name": "Frejlev", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.00623000", + "longitude": "9.81711000" + }, + { + "id": "30667", + "name": "Gistrup", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.99430000", + "longitude": "9.99085000" + }, + { + "id": "30689", + "name": "Hadsund", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.71482000", + "longitude": "10.11682000" + }, + { + "id": "30690", + "name": "Hals", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.99609000", + "longitude": "10.30807000" + }, + { + "id": "30694", + "name": "Hanstholm", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.11667000", + "longitude": "8.61667000" + }, + { + "id": "30710", + "name": "Hirtshals", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.58812000", + "longitude": "9.95922000" + }, + { + "id": "30711", + "name": "Hjallerup", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.16466000", + "longitude": "10.14571000" + }, + { + "id": "30713", + "name": "Hjørring", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.46417000", + "longitude": "9.98229000" + }, + { + "id": "30714", + "name": "Hjørring Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.45682000", + "longitude": "10.05859000" + }, + { + "id": "30715", + "name": "Hobro", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.64306000", + "longitude": "9.79029000" + }, + { + "id": "30729", + "name": "Hurup", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.74944000", + "longitude": "8.41953000" + }, + { + "id": "30747", + "name": "Jammerbugt Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.14583000", + "longitude": "9.56250000" + }, + { + "id": "30769", + "name": "Kås", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.19774000", + "longitude": "9.67173000" + }, + { + "id": "30761", + "name": "Klarup", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.01194000", + "longitude": "10.05617000" + }, + { + "id": "30788", + "name": "Læso Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.26774000", + "longitude": "11.02265000" + }, + { + "id": "30789", + "name": "Løgstør", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.96245000", + "longitude": "9.25830000" + }, + { + "id": "30793", + "name": "Løkken", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.37047000", + "longitude": "9.71466000" + }, + { + "id": "30795", + "name": "Mariager", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.64985000", + "longitude": "9.97515000" + }, + { + "id": "30796", + "name": "Mariagerfjord Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.69722000", + "longitude": "9.84722000" + }, + { + "id": "30801", + "name": "Morsø Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.79622000", + "longitude": "8.73272000" + }, + { + "id": "30826", + "name": "Nørresundby", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.05877000", + "longitude": "9.92284000" + }, + { + "id": "30809", + "name": "Nibe", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.98150000", + "longitude": "9.63917000" + }, + { + "id": "30818", + "name": "Nykøbing Mors", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.79334000", + "longitude": "8.85282000" + }, + { + "id": "30836", + "name": "Pandrup", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.22147000", + "longitude": "9.67569000" + }, + { + "id": "30840", + "name": "Rebild Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.80556000", + "longitude": "9.77778000" + }, + { + "id": "30924", + "name": "Sæby", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.33188000", + "longitude": "10.52251000" + }, + { + "id": "30869", + "name": "Sindal", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.47117000", + "longitude": "10.20312000" + }, + { + "id": "30871", + "name": "Skagen", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.72093000", + "longitude": "10.58394000" + }, + { + "id": "30881", + "name": "Skørping", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.83626000", + "longitude": "9.89255000" + }, + { + "id": "30913", + "name": "Støvring", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.88536000", + "longitude": "9.83839000" + }, + { + "id": "30906", + "name": "Storvorde", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.00392000", + "longitude": "10.10125000" + }, + { + "id": "30907", + "name": "Strandby", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.49150000", + "longitude": "10.49609000" + }, + { + "id": "30920", + "name": "Svenstrup", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.97230000", + "longitude": "9.84806000" + }, + { + "id": "30948", + "name": "Tårs", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.38333000", + "longitude": "10.11667000" + }, + { + "id": "30933", + "name": "Thisted", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.95523000", + "longitude": "8.69491000" + }, + { + "id": "30934", + "name": "Thisted Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.00397000", + "longitude": "8.61834000" + }, + { + "id": "30956", + "name": "Vadum", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.11790000", + "longitude": "9.85700000" + }, + { + "id": "30968", + "name": "Vestbjerg", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.13166000", + "longitude": "9.95942000" + }, + { + "id": "30969", + "name": "Vester Hassing", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.06767000", + "longitude": "10.12558000" + }, + { + "id": "30971", + "name": "Vesthimmerland Kommune", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "56.80000000", + "longitude": "9.37083000" + }, + { + "id": "30983", + "name": "Vodskov", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.10854000", + "longitude": "10.02215000" + }, + { + "id": "30987", + "name": "Vrå", + "state_id": 1532, + "state_code": "81", + "country_id": 59, + "country_code": "DK", + "latitude": "57.35370000", + "longitude": "9.94176000" + }, + { + "id": "30573", + "name": "Aabenraa", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.04434000", + "longitude": "9.41741000" + }, + { + "id": "30574", + "name": "Aabenraa Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.98980000", + "longitude": "9.31282000" + }, + { + "id": "30583", + "name": "Assens", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.27023000", + "longitude": "9.90081000" + }, + { + "id": "30584", + "name": "Assens Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.29958000", + "longitude": "10.07952000" + }, + { + "id": "30586", + "name": "Augustenborg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.95201000", + "longitude": "9.87216000" + }, + { + "id": "30999", + "name": "Ølgod", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.80682000", + "longitude": "8.62859000" + }, + { + "id": "30997", + "name": "Ærø Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.85833000", + "longitude": "10.43333000" + }, + { + "id": "30998", + "name": "Ærøskøbing", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.88803000", + "longitude": "10.41117000" + }, + { + "id": "30995", + "name": "Årslev", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.30353000", + "longitude": "10.46428000" + }, + { + "id": "30996", + "name": "Årup", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.37315000", + "longitude": "10.04131000" + }, + { + "id": "30615", + "name": "Børkop", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.64195000", + "longitude": "9.64958000" + }, + { + "id": "30592", + "name": "Bellinge", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.33535000", + "longitude": "10.32045000" + }, + { + "id": "30593", + "name": "Billund", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.73349000", + "longitude": "9.10785000" + }, + { + "id": "30594", + "name": "Billund Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.73079000", + "longitude": "8.96844000" + }, + { + "id": "30599", + "name": "Bogense", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.56691000", + "longitude": "10.08863000" + }, + { + "id": "30603", + "name": "Bramming", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.46946000", + "longitude": "8.70007000" + }, + { + "id": "30613", + "name": "Brørup", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.48194000", + "longitude": "9.01756000" + }, + { + "id": "30605", + "name": "Brejning", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.66594000", + "longitude": "9.67217000" + }, + { + "id": "30606", + "name": "Brenderup", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.48407000", + "longitude": "9.97908000" + }, + { + "id": "30607", + "name": "Broager", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.88940000", + "longitude": "9.67465000" + }, + { + "id": "30614", + "name": "Bullerup", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.42686000", + "longitude": "10.47137000" + }, + { + "id": "30617", + "name": "Christiansfeld", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.35817000", + "longitude": "9.48701000" + }, + { + "id": "30625", + "name": "Dybbøl", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.91079000", + "longitude": "9.73601000" + }, + { + "id": "30628", + "name": "Egtved", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.61613000", + "longitude": "9.30763000" + }, + { + "id": "30629", + "name": "Ejby", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.43010000", + "longitude": "9.92973000" + }, + { + "id": "30631", + "name": "Esbjerg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.47028000", + "longitude": "8.45187000" + }, + { + "id": "30632", + "name": "Esbjerg Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.46893000", + "longitude": "8.46222000" + }, + { + "id": "30634", + "name": "Faaborg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.09510000", + "longitude": "10.24226000" + }, + { + "id": "30635", + "name": "Faaborg-Midtfyn Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.22667000", + "longitude": "10.40667000" + }, + { + "id": "30636", + "name": "Fanø Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.41667000", + "longitude": "8.41667000" + }, + { + "id": "30650", + "name": "Fredericia", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.56568000", + "longitude": "9.75257000" + }, + { + "id": "30651", + "name": "Fredericia Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.57271000", + "longitude": "9.69489000" + }, + { + "id": "30668", + "name": "Give", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.84523000", + "longitude": "9.23769000" + }, + { + "id": "30671", + "name": "Glamsbjerg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.27237000", + "longitude": "10.10483000" + }, + { + "id": "30674", + "name": "Gram", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.28948000", + "longitude": "9.04913000" + }, + { + "id": "30680", + "name": "Gråsten", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.91918000", + "longitude": "9.59523000" + }, + { + "id": "30679", + "name": "Grindsted", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75726000", + "longitude": "8.92750000" + }, + { + "id": "30682", + "name": "Guderup", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.98978000", + "longitude": "9.87174000" + }, + { + "id": "30686", + "name": "Haderslev", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.24943000", + "longitude": "9.48771000" + }, + { + "id": "30687", + "name": "Haderslev Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.24441000", + "longitude": "9.32261000" + }, + { + "id": "30733", + "name": "Hårby", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.22357000", + "longitude": "10.12268000" + }, + { + "id": "30735", + "name": "Højby", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.33177000", + "longitude": "10.43725000" + }, + { + "id": "30741", + "name": "Høruphav", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.91017000", + "longitude": "9.89872000" + }, + { + "id": "30721", + "name": "Holsted", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.51086000", + "longitude": "8.91872000" + }, + { + "id": "30748", + "name": "Jelling", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75588000", + "longitude": "9.42580000" + }, + { + "id": "30756", + "name": "Kerteminde", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.44903000", + "longitude": "10.65769000" + }, + { + "id": "30757", + "name": "Kerteminde Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.45498000", + "longitude": "10.62220000" + }, + { + "id": "30763", + "name": "Kolding", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.49040000", + "longitude": "9.47216000" + }, + { + "id": "30764", + "name": "Kolding Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.45006000", + "longitude": "9.45807000" + }, + { + "id": "30768", + "name": "Kruså", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.85097000", + "longitude": "9.40129000" + }, + { + "id": "30773", + "name": "Langeland Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.90000000", + "longitude": "10.77222000" + }, + { + "id": "30774", + "name": "Langeskov", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.35655000", + "longitude": "10.58447000" + }, + { + "id": "30791", + "name": "Løgumkloster", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.05941000", + "longitude": "8.95508000" + }, + { + "id": "30792", + "name": "Løjt Kirkeby", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.08959000", + "longitude": "9.46084000" + }, + { + "id": "30784", + "name": "Lunderskov", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.48375000", + "longitude": "9.29917000" + }, + { + "id": "30798", + "name": "Marstal", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.85621000", + "longitude": "10.51726000" + }, + { + "id": "30799", + "name": "Middelfart", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.50591000", + "longitude": "9.73054000" + }, + { + "id": "30800", + "name": "Middelfart Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.45782000", + "longitude": "9.88100000" + }, + { + "id": "30802", + "name": "Munkebo", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.45553000", + "longitude": "10.55433000" + }, + { + "id": "30825", + "name": "Nørre Åby", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.46107000", + "longitude": "9.87940000" + }, + { + "id": "30806", + "name": "Neder Holluf", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.36451000", + "longitude": "10.44824000" + }, + { + "id": "30811", + "name": "Nordborg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.05732000", + "longitude": "9.74080000" + }, + { + "id": "30812", + "name": "Nordby", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.44603000", + "longitude": "8.39786000" + }, + { + "id": "30814", + "name": "Nordfyns Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.52222000", + "longitude": "10.22222000" + }, + { + "id": "30815", + "name": "Nyborg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.31274000", + "longitude": "10.78964000" + }, + { + "id": "30816", + "name": "Nyborg Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.29473000", + "longitude": "10.70310000" + }, + { + "id": "30829", + "name": "Odense", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.39594000", + "longitude": "10.38831000" + }, + { + "id": "30830", + "name": "Odense Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.39570000", + "longitude": "10.37761000" + }, + { + "id": "30832", + "name": "Oksbøl", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.62680000", + "longitude": "8.28757000" + }, + { + "id": "30834", + "name": "Otterup", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.51527000", + "longitude": "10.39756000" + }, + { + "id": "30835", + "name": "Padborg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.82657000", + "longitude": "9.36247000" + }, + { + "id": "30855", + "name": "Rødding", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.36569000", + "longitude": "9.06316000" + }, + { + "id": "30856", + "name": "Rødekro", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.07076000", + "longitude": "9.33531000" + }, + { + "id": "30841", + "name": "Ribe", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.33051000", + "longitude": "8.76966000" + }, + { + "id": "30842", + "name": "Ringe", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.23828000", + "longitude": "10.47860000" + }, + { + "id": "30850", + "name": "Rudkøbing", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.93639000", + "longitude": "10.71019000" + }, + { + "id": "30926", + "name": "Sønder Bjert", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.45272000", + "longitude": "9.56741000" + }, + { + "id": "30927", + "name": "Sønderborg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.90896000", + "longitude": "9.78917000" + }, + { + "id": "30928", + "name": "Sønderborg Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.91667000", + "longitude": "9.80000000" + }, + { + "id": "30929", + "name": "Søndersø", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.48526000", + "longitude": "10.25540000" + }, + { + "id": "30866", + "name": "Seden", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.42648000", + "longitude": "10.44265000" + }, + { + "id": "30870", + "name": "Skaerbaek", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.15735000", + "longitude": "8.76901000" + }, + { + "id": "30887", + "name": "Snoghøj", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.52253000", + "longitude": "9.72125000" + }, + { + "id": "30895", + "name": "Starup", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.24097000", + "longitude": "9.53503000" + }, + { + "id": "30902", + "name": "Stige", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.43941000", + "longitude": "10.40940000" + }, + { + "id": "30908", + "name": "Strib", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.54021000", + "longitude": "9.76748000" + }, + { + "id": "30918", + "name": "Svendborg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.05982000", + "longitude": "10.60677000" + }, + { + "id": "30919", + "name": "Svendborg Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.08410000", + "longitude": "10.61391000" + }, + { + "id": "30932", + "name": "Taulov", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.54582000", + "longitude": "9.61553000" + }, + { + "id": "30950", + "name": "Tønder", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.93306000", + "longitude": "8.86674000" + }, + { + "id": "30951", + "name": "Tønder Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.07304000", + "longitude": "8.87214000" + }, + { + "id": "30935", + "name": "Thurø By", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.04740000", + "longitude": "10.66385000" + }, + { + "id": "30937", + "name": "Tinglev", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "54.93788000", + "longitude": "9.25547000" + }, + { + "id": "30938", + "name": "Tjæreborg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.46457000", + "longitude": "8.57968000" + }, + { + "id": "30939", + "name": "Toftlund", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.18858000", + "longitude": "9.06925000" + }, + { + "id": "30940", + "name": "Tommerup", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.31952000", + "longitude": "10.20659000" + }, + { + "id": "30941", + "name": "Tommerup Stationsby", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.34535000", + "longitude": "10.17594000" + }, + { + "id": "30954", + "name": "Ullerslev", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.36172000", + "longitude": "10.65190000" + }, + { + "id": "30959", + "name": "Vamdrup", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.42764000", + "longitude": "9.28435000" + }, + { + "id": "30961", + "name": "Varde", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.62112000", + "longitude": "8.48069000" + }, + { + "id": "30962", + "name": "Varde Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.61667000", + "longitude": "8.50000000" + }, + { + "id": "30963", + "name": "Vejen", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.48117000", + "longitude": "9.13795000" + }, + { + "id": "30964", + "name": "Vejen Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.46312000", + "longitude": "9.05004000" + }, + { + "id": "30965", + "name": "Vejle", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.70927000", + "longitude": "9.53570000" + }, + { + "id": "30966", + "name": "Vejle Kommune", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.74874000", + "longitude": "9.40421000" + }, + { + "id": "30970", + "name": "Vester-Skerninge", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.07322000", + "longitude": "10.45536000" + }, + { + "id": "30977", + "name": "Vindeby", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.04489000", + "longitude": "10.61309000" + }, + { + "id": "30982", + "name": "Vissenbjerg", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.38482000", + "longitude": "10.13784000" + }, + { + "id": "30984", + "name": "Vojens", + "state_id": 1529, + "state_code": "83", + "country_id": 59, + "country_code": "DK", + "latitude": "55.24639000", + "longitude": "9.30603000" + }, + { + "id": "30582", + "name": "Asnæs", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.81229000", + "longitude": "11.50129000" + }, + { + "id": "31001", + "name": "Ørslev", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.04356000", + "longitude": "11.96792000" + }, + { + "id": "30597", + "name": "Bjæverskov", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.45756000", + "longitude": "12.03651000" + }, + { + "id": "30602", + "name": "Borup", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.49472000", + "longitude": "11.97584000" + }, + { + "id": "30621", + "name": "Dianalund", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.53133000", + "longitude": "11.49250000" + }, + { + "id": "30630", + "name": "Ejby", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.48580000", + "longitude": "12.08171000" + }, + { + "id": "30640", + "name": "Faxe", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.25561000", + "longitude": "12.11926000" + }, + { + "id": "30641", + "name": "Faxe Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.29444000", + "longitude": "12.06111000" + }, + { + "id": "30642", + "name": "Faxe Ladeplads", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.21981000", + "longitude": "12.17013000" + }, + { + "id": "30643", + "name": "Fensmark", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.27919000", + "longitude": "11.80382000" + }, + { + "id": "30646", + "name": "Forlev", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.37445000", + "longitude": "11.25966000" + }, + { + "id": "30653", + "name": "Frederiksberg", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.41618000", + "longitude": "11.56934000" + }, + { + "id": "30661", + "name": "Fuglebjerg", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.30604000", + "longitude": "11.54766000" + }, + { + "id": "30685", + "name": "Gørlev", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.53926000", + "longitude": "11.22708000" + }, + { + "id": "30676", + "name": "Greve", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.58333000", + "longitude": "12.30000000" + }, + { + "id": "30677", + "name": "Greve Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.58770000", + "longitude": "12.25060000" + }, + { + "id": "30683", + "name": "Guldborgsund Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.76944000", + "longitude": "11.83611000" + }, + { + "id": "30684", + "name": "Gundsømagle", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.73565000", + "longitude": "12.15158000" + }, + { + "id": "30696", + "name": "Haslev", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.32346000", + "longitude": "11.96389000" + }, + { + "id": "30697", + "name": "Havdrup", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.54481000", + "longitude": "12.12392000" + }, + { + "id": "30734", + "name": "Hårlev", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.34936000", + "longitude": "12.23382000" + }, + { + "id": "30737", + "name": "Høng", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.50736000", + "longitude": "11.28873000" + }, + { + "id": "30742", + "name": "Hørve", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75292000", + "longitude": "11.45298000" + }, + { + "id": "30716", + "name": "Holbæk", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.71750000", + "longitude": "11.71279000" + }, + { + "id": "30717", + "name": "Holbæk Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.65919000", + "longitude": "11.62049000" + }, + { + "id": "30718", + "name": "Holeby", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.71148000", + "longitude": "11.46416000" + }, + { + "id": "30750", + "name": "Jyderup", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.66399000", + "longitude": "11.42029000" + }, + { + "id": "30751", + "name": "Jyllinge", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.75295000", + "longitude": "12.10315000" + }, + { + "id": "30753", + "name": "Kalundborg", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.67954000", + "longitude": "11.08864000" + }, + { + "id": "30754", + "name": "Kalundborg Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.63545000", + "longitude": "11.19993000" + }, + { + "id": "30771", + "name": "Køge", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.45802000", + "longitude": "12.18214000" + }, + { + "id": "30772", + "name": "Køge Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.45668000", + "longitude": "12.07332000" + }, + { + "id": "30759", + "name": "Kirke Hvalsø", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.59170000", + "longitude": "11.86253000" + }, + { + "id": "30767", + "name": "Korsør", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.32993000", + "longitude": "11.13857000" + }, + { + "id": "30776", + "name": "Lejre", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.60461000", + "longitude": "11.97477000" + }, + { + "id": "30777", + "name": "Lejre Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.63375000", + "longitude": "11.92234000" + }, + { + "id": "30783", + "name": "Lolland Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.80238000", + "longitude": "11.29524000" + }, + { + "id": "30797", + "name": "Maribo", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.77662000", + "longitude": "11.50017000" + }, + { + "id": "30805", + "name": "Nakskov", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.83038000", + "longitude": "11.13567000" + }, + { + "id": "30821", + "name": "Næstved", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.22992000", + "longitude": "11.76092000" + }, + { + "id": "30822", + "name": "Næstved Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.25855000", + "longitude": "11.74615000" + }, + { + "id": "30824", + "name": "Nørre Alslev", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.89784000", + "longitude": "11.88414000" + }, + { + "id": "30807", + "name": "Neder Vindinge", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.03211000", + "longitude": "11.88356000" + }, + { + "id": "30817", + "name": "Nykøbing Falster", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.76906000", + "longitude": "11.87425000" + }, + { + "id": "30819", + "name": "Nykøbing Sjælland", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.92491000", + "longitude": "11.67109000" + }, + { + "id": "30820", + "name": "Nyråd", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.00511000", + "longitude": "11.96060000" + }, + { + "id": "30831", + "name": "Odsherred Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.88333000", + "longitude": "11.59444000" + }, + { + "id": "30833", + "name": "Osted", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.56228000", + "longitude": "11.95786000" + }, + { + "id": "30837", + "name": "Præstø", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.12374000", + "longitude": "12.04477000" + }, + { + "id": "30853", + "name": "Rødby", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.69495000", + "longitude": "11.38885000" + }, + { + "id": "30854", + "name": "Rødbyhavn", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.65944000", + "longitude": "11.35504000" + }, + { + "id": "30859", + "name": "Rødvig", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.25540000", + "longitude": "12.37936000" + }, + { + "id": "30862", + "name": "Rønnede", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.25710000", + "longitude": "12.02125000" + }, + { + "id": "30845", + "name": "Ringsted", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.44260000", + "longitude": "11.79011000" + }, + { + "id": "30846", + "name": "Ringsted Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.44721000", + "longitude": "11.81720000" + }, + { + "id": "30847", + "name": "Roskilde", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.64152000", + "longitude": "12.08035000" + }, + { + "id": "30848", + "name": "Roskilde Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.65000000", + "longitude": "12.10000000" + }, + { + "id": "30864", + "name": "Sakskøbing", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.79970000", + "longitude": "11.62599000" + }, + { + "id": "30879", + "name": "Skælskør", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.25058000", + "longitude": "11.29352000" + }, + { + "id": "30882", + "name": "Slagelse", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.40276000", + "longitude": "11.35459000" + }, + { + "id": "30883", + "name": "Slagelse Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.34546000", + "longitude": "11.33390000" + }, + { + "id": "30889", + "name": "Solrød", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.53628000", + "longitude": "12.18270000" + }, + { + "id": "30890", + "name": "Solrød Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.53553000", + "longitude": "12.17337000" + }, + { + "id": "30891", + "name": "Solrød Strand", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.53285000", + "longitude": "12.22227000" + }, + { + "id": "30892", + "name": "Sorø", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.43184000", + "longitude": "11.55547000" + }, + { + "id": "30893", + "name": "Sorø Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.48268000", + "longitude": "11.55693000" + }, + { + "id": "30898", + "name": "Stege", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.98704000", + "longitude": "12.28461000" + }, + { + "id": "30899", + "name": "Stenlille", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.53888000", + "longitude": "11.59120000" + }, + { + "id": "30901", + "name": "Stevns Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.33373000", + "longitude": "12.30692000" + }, + { + "id": "30905", + "name": "Store Heddinge", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.30965000", + "longitude": "12.38885000" + }, + { + "id": "30911", + "name": "Strøby Egede", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.41382000", + "longitude": "12.24502000" + }, + { + "id": "30912", + "name": "Stubbekøbing", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.88875000", + "longitude": "12.04102000" + }, + { + "id": "30914", + "name": "Sundby", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "54.76711000", + "longitude": "11.84979000" + }, + { + "id": "30916", + "name": "Svebølle", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.65183000", + "longitude": "11.28658000" + }, + { + "id": "30921", + "name": "Svinninge", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.72111000", + "longitude": "11.46547000" + }, + { + "id": "30922", + "name": "Svogerslev", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.63423000", + "longitude": "12.01465000" + }, + { + "id": "30949", + "name": "Tølløse", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.61250000", + "longitude": "11.77034000" + }, + { + "id": "30945", + "name": "Tune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.59287000", + "longitude": "12.16968000" + }, + { + "id": "30974", + "name": "Viby", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.54872000", + "longitude": "12.02391000" + }, + { + "id": "30979", + "name": "Vindinge", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.62298000", + "longitude": "12.13870000" + }, + { + "id": "30980", + "name": "Vipperød", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.66768000", + "longitude": "11.73967000" + }, + { + "id": "30985", + "name": "Vordingborg", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.00801000", + "longitude": "11.91057000" + }, + { + "id": "30986", + "name": "Vordingborg Kommune", + "state_id": 1528, + "state_code": "85", + "country_id": 59, + "country_code": "DK", + "latitude": "55.01383000", + "longitude": "12.10008000" + }, + { + "id": "30561", + "name": "'Ali Sabieh", + "state_id": 2933, + "state_code": "AS", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.15583000", + "longitude": "42.71250000" + }, + { + "id": "30567", + "name": "Goubétto", + "state_id": 2933, + "state_code": "AS", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.42389000", + "longitude": "43.00028000" + }, + { + "id": "30569", + "name": "Holhol", + "state_id": 2933, + "state_code": "AS", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.31028000", + "longitude": "42.92944000" + }, + { + "id": "30563", + "name": "Arta", + "state_id": 2932, + "state_code": "AR", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.52639000", + "longitude": "42.85194000" + }, + { + "id": "30564", + "name": "Dikhil", + "state_id": 2930, + "state_code": "DI", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.10454000", + "longitude": "42.36971000" + }, + { + "id": "30568", + "name": "Gâlâfi", + "state_id": 2930, + "state_code": "DI", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.71583000", + "longitude": "41.83611000" + }, + { + "id": "30565", + "name": "Djibouti", + "state_id": 2929, + "state_code": "DJ", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.58901000", + "longitude": "43.14503000" + }, + { + "id": "30570", + "name": "Loyada", + "state_id": 2929, + "state_code": "DJ", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.46111000", + "longitude": "43.25278000" + }, + { + "id": "30562", + "name": "Alaïli Ḏaḏḏa‘", + "state_id": 2928, + "state_code": "OB", + "country_id": 60, + "country_code": "DJ", + "latitude": "12.42167000", + "longitude": "42.89556000" + }, + { + "id": "30571", + "name": "Obock", + "state_id": 2928, + "state_code": "OB", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.96693000", + "longitude": "43.28835000" + }, + { + "id": "30566", + "name": "Dorra", + "state_id": 2931, + "state_code": "TA", + "country_id": 60, + "country_code": "DJ", + "latitude": "12.15028000", + "longitude": "42.47624000" + }, + { + "id": "30572", + "name": "Tadjourah", + "state_id": 2931, + "state_code": "TA", + "country_id": 60, + "country_code": "DJ", + "latitude": "11.78778000", + "longitude": "42.88222000" + }, + { + "id": "31003", + "name": "Calibishie", + "state_id": 4082, + "state_code": "02", + "country_id": 61, + "country_code": "DM", + "latitude": "15.59297000", + "longitude": "-61.34901000" + }, + { + "id": "31008", + "name": "Marigot", + "state_id": 4082, + "state_code": "02", + "country_id": 61, + "country_code": "DM", + "latitude": "15.53886000", + "longitude": "-61.28375000" + }, + { + "id": "31017", + "name": "Wesley", + "state_id": 4082, + "state_code": "02", + "country_id": 61, + "country_code": "DM", + "latitude": "15.56667000", + "longitude": "-61.31667000" + }, + { + "id": "31018", + "name": "Woodford Hill", + "state_id": 4082, + "state_code": "02", + "country_id": 61, + "country_code": "DM", + "latitude": "15.58093000", + "longitude": "-61.33149000" + }, + { + "id": "31004", + "name": "Castle Bruce", + "state_id": 4078, + "state_code": "03", + "country_id": 61, + "country_code": "DM", + "latitude": "15.44397000", + "longitude": "-61.25723000" + }, + { + "id": "31012", + "name": "Rosalie", + "state_id": 4078, + "state_code": "03", + "country_id": 61, + "country_code": "DM", + "latitude": "15.36667000", + "longitude": "-61.26667000" + }, + { + "id": "31013", + "name": "Roseau", + "state_id": 4079, + "state_code": "04", + "country_id": 61, + "country_code": "DM", + "latitude": "15.30174000", + "longitude": "-61.38808000" + }, + { + "id": "31011", + "name": "Portsmouth", + "state_id": 4076, + "state_code": "05", + "country_id": 61, + "country_code": "DM", + "latitude": "15.58333000", + "longitude": "-61.46667000" + }, + { + "id": "31014", + "name": "Saint Joseph", + "state_id": 4085, + "state_code": "06", + "country_id": 61, + "country_code": "DM", + "latitude": "15.40000000", + "longitude": "-61.43333000" + }, + { + "id": "31015", + "name": "Salisbury", + "state_id": 4085, + "state_code": "06", + "country_id": 61, + "country_code": "DM", + "latitude": "15.43689000", + "longitude": "-61.43637000" + }, + { + "id": "31009", + "name": "Pointe Michel", + "state_id": 4083, + "state_code": "07", + "country_id": 61, + "country_code": "DM", + "latitude": "15.25976000", + "longitude": "-61.37452000" + }, + { + "id": "31016", + "name": "Soufrière", + "state_id": 4077, + "state_code": "08", + "country_id": 61, + "country_code": "DM", + "latitude": "15.23374000", + "longitude": "-61.35881000" + }, + { + "id": "31002", + "name": "Berekua", + "state_id": 4080, + "state_code": "09", + "country_id": 61, + "country_code": "DM", + "latitude": "15.23333000", + "longitude": "-61.31667000" + }, + { + "id": "31006", + "name": "La Plaine", + "state_id": 4080, + "state_code": "09", + "country_id": 61, + "country_code": "DM", + "latitude": "15.32768000", + "longitude": "-61.24753000" + }, + { + "id": "31007", + "name": "Mahaut", + "state_id": 4084, + "state_code": "10", + "country_id": 61, + "country_code": "DM", + "latitude": "15.36357000", + "longitude": "-61.39701000" + }, + { + "id": "31010", + "name": "Pont Cassé", + "state_id": 4084, + "state_code": "10", + "country_id": 61, + "country_code": "DM", + "latitude": "15.36667000", + "longitude": "-61.35000000" + }, + { + "id": "31005", + "name": "Colihaut", + "state_id": 4081, + "state_code": "11", + "country_id": 61, + "country_code": "DM", + "latitude": "15.48478000", + "longitude": "-61.46215000" + }, + { + "id": "31024", + "name": "Azua", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.45319000", + "longitude": "-70.73490000" + }, + { + "id": "31060", + "name": "El Guayabal", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.74960000", + "longitude": "-70.83690000" + }, + { + "id": "31070", + "name": "Estebanía", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.45770000", + "longitude": "-70.64350000" + }, + { + "id": "31111", + "name": "Las Charcas", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.45026000", + "longitude": "-70.61724000" + }, + { + "id": "31142", + "name": "Padre Las Casas", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.75000000", + "longitude": "-70.88333000" + }, + { + "id": "31144", + "name": "Palmar de Ocoa", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.29656000", + "longitude": "-70.58635000" + }, + { + "id": "31153", + "name": "Peralta", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.58164000", + "longitude": "-70.77029000" + }, + { + "id": "31160", + "name": "Pueblo Viejo", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.40000000", + "longitude": "-70.76765000" + }, + { + "id": "31174", + "name": "Sabana Yegua", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.71667000", + "longitude": "-71.01667000" + }, + { + "id": "31207", + "name": "Tábara Arriba", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.56999000", + "longitude": "-70.87978000" + }, + { + "id": "31222", + "name": "Villarpando", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.65860000", + "longitude": "-71.03916000" + }, + { + "id": "31225", + "name": "Yayas de Viajama", + "state_id": 4114, + "state_code": "02", + "country_id": 62, + "country_code": "DO", + "latitude": "18.60710000", + "longitude": "-70.92753000" + }, + { + "id": "31061", + "name": "El Palmar", + "state_id": 4105, + "state_code": "03", + "country_id": 62, + "country_code": "DO", + "latitude": "18.41139000", + "longitude": "-71.24558000" + }, + { + "id": "31074", + "name": "Galván", + "state_id": 4105, + "state_code": "03", + "country_id": 62, + "country_code": "DO", + "latitude": "18.50228000", + "longitude": "-71.34271000" + }, + { + "id": "31109", + "name": "La Uvilla", + "state_id": 4105, + "state_code": "03", + "country_id": 62, + "country_code": "DO", + "latitude": "18.36186000", + "longitude": "-71.21046000" + }, + { + "id": "31122", + "name": "Los Ríos", + "state_id": 4105, + "state_code": "03", + "country_id": 62, + "country_code": "DO", + "latitude": "18.52131000", + "longitude": "-71.59106000" + }, + { + "id": "31138", + "name": "Neiba", + "state_id": 4105, + "state_code": "03", + "country_id": 62, + "country_code": "DO", + "latitude": "18.48137000", + "longitude": "-71.41965000" + }, + { + "id": "31203", + "name": "Tamayo", + "state_id": 4105, + "state_code": "03", + "country_id": 62, + "country_code": "DO", + "latitude": "18.50000000", + "longitude": "-71.16667000" + }, + { + "id": "31218", + "name": "Villa Jaragua", + "state_id": 4105, + "state_code": "03", + "country_id": 62, + "country_code": "DO", + "latitude": "18.49077000", + "longitude": "-71.48377000" + }, + { + "id": "31036", + "name": "Cabral", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.19991000", + "longitude": "-71.24660000" + }, + { + "id": "31038", + "name": "Cachón", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.24833000", + "longitude": "-71.18912000" + }, + { + "id": "31041", + "name": "Canoa", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.35499000", + "longitude": "-71.15851000" + }, + { + "id": "31062", + "name": "El Peñón", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.29643000", + "longitude": "-71.18410000" + }, + { + "id": "31066", + "name": "Enriquillo", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "17.91667000", + "longitude": "-71.25000000" + }, + { + "id": "31073", + "name": "Fundación", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.28668000", + "longitude": "-71.18147000" + }, + { + "id": "31090", + "name": "Jaquimeyes", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.31173000", + "longitude": "-71.16145000" + }, + { + "id": "31104", + "name": "La Ciénaga", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.06858000", + "longitude": "-71.10651000" + }, + { + "id": "31115", + "name": "Las Salinas", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.27485000", + "longitude": "-71.31596000" + }, + { + "id": "31145", + "name": "Paraíso", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.02652000", + "longitude": "-71.20889000" + }, + { + "id": "31154", + "name": "Pescadería", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.26766000", + "longitude": "-71.16612000" + }, + { + "id": "31158", + "name": "Polo", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.07873000", + "longitude": "-71.28723000" + }, + { + "id": "31194", + "name": "Santa Cruz de Barahona", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.20854000", + "longitude": "-71.10077000" + }, + { + "id": "31210", + "name": "Vicente Noble", + "state_id": 4090, + "state_code": "04", + "country_id": 62, + "country_code": "DO", + "latitude": "18.38443000", + "longitude": "-71.18009000" + }, + { + "id": "31053", + "name": "Dajabón", + "state_id": 4107, + "state_code": "05", + "country_id": 62, + "country_code": "DO", + "latitude": "19.54878000", + "longitude": "-71.70829000" + }, + { + "id": "31063", + "name": "El Pino", + "state_id": 4107, + "state_code": "05", + "country_id": 62, + "country_code": "DO", + "latitude": "19.43537000", + "longitude": "-71.47540000" + }, + { + "id": "31118", + "name": "Loma de Cabrera", + "state_id": 4107, + "state_code": "05", + "country_id": 62, + "country_code": "DO", + "latitude": "19.41667000", + "longitude": "-71.58333000" + }, + { + "id": "31146", + "name": "Partido", + "state_id": 4107, + "state_code": "05", + "country_id": 62, + "country_code": "DO", + "latitude": "19.48403000", + "longitude": "-71.54730000" + }, + { + "id": "31165", + "name": "Restauración", + "state_id": 4107, + "state_code": "05", + "country_id": 62, + "country_code": "DO", + "latitude": "19.31532000", + "longitude": "-71.69239000" + }, + { + "id": "31029", + "name": "Bella Vista", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.45539000", + "longitude": "-69.94540000" + }, + { + "id": "31047", + "name": "Ciudad Nueva", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.46707000", + "longitude": "-69.89339000" + }, + { + "id": "31051", + "name": "Cristo Rey", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.50000000", + "longitude": "-69.93333000" + }, + { + "id": "31067", + "name": "Ensanche Luperón", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.50000000", + "longitude": "-69.90000000" + }, + { + "id": "31101", + "name": "La Agustina", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.50000000", + "longitude": "-69.93333000" + }, + { + "id": "31107", + "name": "La Julia", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.46667000", + "longitude": "-69.93333000" + }, + { + "id": "31182", + "name": "San Carlos", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.48333000", + "longitude": "-69.90000000" + }, + { + "id": "31197", + "name": "Santo Domingo", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.47186000", + "longitude": "-69.89232000" + }, + { + "id": "31213", + "name": "Villa Consuelo", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.48333000", + "longitude": "-69.90000000" + }, + { + "id": "31215", + "name": "Villa Francisca", + "state_id": 4095, + "state_code": "01", + "country_id": 62, + "country_code": "DO", + "latitude": "18.48278000", + "longitude": "-69.88914000" + }, + { + "id": "31019", + "name": "Agua Santa del Yuna", + "state_id": 4113, + "state_code": "06", + "country_id": 62, + "country_code": "DO", + "latitude": "19.15072000", + "longitude": "-69.80069000" + }, + { + "id": "31022", + "name": "Arenoso", + "state_id": 4113, + "state_code": "06", + "country_id": 62, + "country_code": "DO", + "latitude": "19.18732000", + "longitude": "-69.85917000" + }, + { + "id": "31043", + "name": "Castillo", + "state_id": 4113, + "state_code": "06", + "country_id": 62, + "country_code": "DO", + "latitude": "19.25000000", + "longitude": "-70.00000000" + }, + { + "id": "31086", + "name": "Hostos", + "state_id": 4113, + "state_code": "06", + "country_id": 62, + "country_code": "DO", + "latitude": "19.18043000", + "longitude": "-70.02046000" + }, + { + "id": "31112", + "name": "Las Guáranas", + "state_id": 4113, + "state_code": "06", + "country_id": 62, + "country_code": "DO", + "latitude": "19.19310000", + "longitude": "-70.20835000" + }, + { + "id": "31156", + "name": "Pimentel", + "state_id": 4113, + "state_code": "06", + "country_id": 62, + "country_code": "DO", + "latitude": "19.21667000", + "longitude": "-70.16667000" + }, + { + "id": "31185", + "name": "San Francisco de Macorís", + "state_id": 4113, + "state_code": "06", + "country_id": 62, + "country_code": "DO", + "latitude": "19.30099000", + "longitude": "-70.25259000" + }, + { + "id": "31219", + "name": "Villa Riva", + "state_id": 4113, + "state_code": "06", + "country_id": 62, + "country_code": "DO", + "latitude": "19.15051000", + "longitude": "-69.88370000" + }, + { + "id": "31131", + "name": "Miches", + "state_id": 4086, + "state_code": "08", + "country_id": 62, + "country_code": "DO", + "latitude": "18.98364000", + "longitude": "-69.04760000" + }, + { + "id": "31151", + "name": "Pedro Sánchez", + "state_id": 4086, + "state_code": "08", + "country_id": 62, + "country_code": "DO", + "latitude": "18.86375000", + "longitude": "-69.10868000" + }, + { + "id": "31195", + "name": "Santa Cruz de El Seibo", + "state_id": 4086, + "state_code": "08", + "country_id": 62, + "country_code": "DO", + "latitude": "18.76559000", + "longitude": "-69.03886000" + }, + { + "id": "31044", + "name": "Cayetano Germosén", + "state_id": 4102, + "state_code": "09", + "country_id": 62, + "country_code": "DO", + "latitude": "19.34285000", + "longitude": "-70.47573000" + }, + { + "id": "31075", + "name": "Gaspar Hernández", + "state_id": 4102, + "state_code": "09", + "country_id": 62, + "country_code": "DO", + "latitude": "19.62748000", + "longitude": "-70.27772000" + }, + { + "id": "31089", + "name": "Jamao al Norte", + "state_id": 4102, + "state_code": "09", + "country_id": 62, + "country_code": "DO", + "latitude": "19.63552000", + "longitude": "-70.44664000" + }, + { + "id": "31095", + "name": "Joba Arriba", + "state_id": 4102, + "state_code": "09", + "country_id": 62, + "country_code": "DO", + "latitude": "19.56667000", + "longitude": "-70.26667000" + }, + { + "id": "31097", + "name": "Juan López Abajo", + "state_id": 4102, + "state_code": "09", + "country_id": 62, + "country_code": "DO", + "latitude": "19.43333000", + "longitude": "-70.50000000" + }, + { + "id": "31132", + "name": "Moca", + "state_id": 4102, + "state_code": "09", + "country_id": 62, + "country_code": "DO", + "latitude": "19.50000000", + "longitude": "-70.50000000" + }, + { + "id": "31193", + "name": "San Víctor Arriba", + "state_id": 4102, + "state_code": "09", + "country_id": 62, + "country_code": "DO", + "latitude": "19.47741000", + "longitude": "-70.53585000" + }, + { + "id": "31209", + "name": "Veragua Arriba", + "state_id": 4102, + "state_code": "09", + "country_id": 62, + "country_code": "DO", + "latitude": "19.58333000", + "longitude": "-70.33333000" + }, + { + "id": "31065", + "name": "El Valle", + "state_id": 4106, + "state_code": "30", + "country_id": 62, + "country_code": "DO", + "latitude": "18.93333000", + "longitude": "-69.38333000" + }, + { + "id": "31080", + "name": "Guayabo Dulce", + "state_id": 4106, + "state_code": "30", + "country_id": 62, + "country_code": "DO", + "latitude": "18.65000000", + "longitude": "-69.28333000" + }, + { + "id": "31084", + "name": "Hato Mayor del Rey", + "state_id": 4106, + "state_code": "30", + "country_id": 62, + "country_code": "DO", + "latitude": "18.76278000", + "longitude": "-69.25681000" + }, + { + "id": "31175", + "name": "Sabana de la Mar", + "state_id": 4106, + "state_code": "30", + "country_id": 62, + "country_code": "DO", + "latitude": "19.03333000", + "longitude": "-69.41667000" + }, + { + "id": "31178", + "name": "Salcedo", + "state_id": 4089, + "state_code": "19", + "country_id": 62, + "country_code": "DO", + "latitude": "19.41667000", + "longitude": "-70.38333000" + }, + { + "id": "31179", + "name": "Salsipuedes", + "state_id": 4089, + "state_code": "19", + "country_id": 62, + "country_code": "DO", + "latitude": "19.40552000", + "longitude": "-70.37985000" + }, + { + "id": "31205", + "name": "Tenares", + "state_id": 4089, + "state_code": "19", + "country_id": 62, + "country_code": "DO", + "latitude": "19.37439000", + "longitude": "-70.35087000" + }, + { + "id": "31220", + "name": "Villa Tapia", + "state_id": 4089, + "state_code": "19", + "country_id": 62, + "country_code": "DO", + "latitude": "19.30084000", + "longitude": "-70.42199000" + }, + { + "id": "31052", + "name": "Cristóbal", + "state_id": 4097, + "state_code": "10", + "country_id": 62, + "country_code": "DO", + "latitude": "18.29405000", + "longitude": "-71.29298000" + }, + { + "id": "31055", + "name": "Duvergé", + "state_id": 4097, + "state_code": "10", + "country_id": 62, + "country_code": "DO", + "latitude": "18.31634000", + "longitude": "-71.59451000" + }, + { + "id": "31079", + "name": "Guayabal", + "state_id": 4097, + "state_code": "10", + "country_id": 62, + "country_code": "DO", + "latitude": "18.59810000", + "longitude": "-71.64184000" + }, + { + "id": "31094", + "name": "Jimaní", + "state_id": 4097, + "state_code": "10", + "country_id": 62, + "country_code": "DO", + "latitude": "18.49169000", + "longitude": "-71.85022000" + }, + { + "id": "31105", + "name": "La Descubierta", + "state_id": 4097, + "state_code": "10", + "country_id": 62, + "country_code": "DO", + "latitude": "18.57053000", + "longitude": "-71.72967000" + }, + { + "id": "31130", + "name": "Mella", + "state_id": 4097, + "state_code": "10", + "country_id": 62, + "country_code": "DO", + "latitude": "18.35871000", + "longitude": "-71.41716000" + }, + { + "id": "31159", + "name": "Postrer Río", + "state_id": 4097, + "state_code": "10", + "country_id": 62, + "country_code": "DO", + "latitude": "18.54374000", + "longitude": "-71.63561000" + }, + { + "id": "31032", + "name": "Boca de Yuma", + "state_id": 4109, + "state_code": "11", + "country_id": 62, + "country_code": "DO", + "latitude": "18.37825000", + "longitude": "-68.60900000" + }, + { + "id": "31085", + "name": "Higüey", + "state_id": 4109, + "state_code": "11", + "country_id": 62, + "country_code": "DO", + "latitude": "18.70000000", + "longitude": "-68.66667000" + }, + { + "id": "31140", + "name": "Otra Banda", + "state_id": 4109, + "state_code": "11", + "country_id": 62, + "country_code": "DO", + "latitude": "18.65017000", + "longitude": "-68.66281000" + }, + { + "id": "31162", + "name": "Punta Cana", + "state_id": 4109, + "state_code": "11", + "country_id": 62, + "country_code": "DO", + "latitude": "18.58182000", + "longitude": "-68.40431000" + }, + { + "id": "31180", + "name": "Salvaleón de Higüey", + "state_id": 4109, + "state_code": "11", + "country_id": 62, + "country_code": "DO", + "latitude": "18.61501000", + "longitude": "-68.70798000" + }, + { + "id": "31192", + "name": "San Rafael del Yuma", + "state_id": 4109, + "state_code": "11", + "country_id": 62, + "country_code": "DO", + "latitude": "18.42993000", + "longitude": "-68.67390000" + }, + { + "id": "31081", + "name": "Guaymate", + "state_id": 4087, + "state_code": "12", + "country_id": 62, + "country_code": "DO", + "latitude": "18.58793000", + "longitude": "-68.97867000" + }, + { + "id": "31108", + "name": "La Romana", + "state_id": 4087, + "state_code": "12", + "country_id": 62, + "country_code": "DO", + "latitude": "18.42733000", + "longitude": "-68.97285000" + }, + { + "id": "31048", + "name": "Concepción de La Vega", + "state_id": 4116, + "state_code": "13", + "country_id": 62, + "country_code": "DO", + "latitude": "19.22207000", + "longitude": "-70.52956000" + }, + { + "id": "31049", + "name": "Constanza", + "state_id": 4116, + "state_code": "13", + "country_id": 62, + "country_code": "DO", + "latitude": "18.90919000", + "longitude": "-70.74499000" + }, + { + "id": "31091", + "name": "Jarabacoa", + "state_id": 4116, + "state_code": "13", + "country_id": 62, + "country_code": "DO", + "latitude": "19.11683000", + "longitude": "-70.63595000" + }, + { + "id": "31093", + "name": "Jima Abajo", + "state_id": 4116, + "state_code": "13", + "country_id": 62, + "country_code": "DO", + "latitude": "19.13292000", + "longitude": "-70.37607000" + }, + { + "id": "31169", + "name": "Río Verde Arriba", + "state_id": 4116, + "state_code": "13", + "country_id": 62, + "country_code": "DO", + "latitude": "19.31583000", + "longitude": "-70.56643000" + }, + { + "id": "31166", + "name": "Rincón", + "state_id": 4116, + "state_code": "13", + "country_id": 62, + "country_code": "DO", + "latitude": "19.11938000", + "longitude": "-70.40632000" + }, + { + "id": "31206", + "name": "Tireo Arriba", + "state_id": 4116, + "state_code": "13", + "country_id": 62, + "country_code": "DO", + "latitude": "18.93537000", + "longitude": "-70.68850000" + }, + { + "id": "31023", + "name": "Arroyo Salado", + "state_id": 4094, + "state_code": "14", + "country_id": 62, + "country_code": "DO", + "latitude": "19.50000000", + "longitude": "-69.90000000" + }, + { + "id": "31037", + "name": "Cabrera", + "state_id": 4094, + "state_code": "14", + "country_id": 62, + "country_code": "DO", + "latitude": "19.64260000", + "longitude": "-69.90489000" + }, + { + "id": "31059", + "name": "El Factor", + "state_id": 4094, + "state_code": "14", + "country_id": 62, + "country_code": "DO", + "latitude": "19.31834000", + "longitude": "-69.88827000" + }, + { + "id": "31106", + "name": "La Entrada", + "state_id": 4094, + "state_code": "14", + "country_id": 62, + "country_code": "DO", + "latitude": "19.55367000", + "longitude": "-69.90762000" + }, + { + "id": "31137", + "name": "Nagua", + "state_id": 4094, + "state_code": "14", + "country_id": 62, + "country_code": "DO", + "latitude": "19.38320000", + "longitude": "-69.84740000" + }, + { + "id": "31168", + "name": "Río San Juan", + "state_id": 4094, + "state_code": "14", + "country_id": 62, + "country_code": "DO", + "latitude": "19.55022000", + "longitude": "-70.07703000" + }, + { + "id": "31034", + "name": "Bonao", + "state_id": 4099, + "state_code": "28", + "country_id": 62, + "country_code": "DO", + "latitude": "18.91667000", + "longitude": "-70.46667000" + }, + { + "id": "31096", + "name": "Juan Adrián", + "state_id": 4099, + "state_code": "28", + "country_id": 62, + "country_code": "DO", + "latitude": "18.76365000", + "longitude": "-70.33732000" + }, + { + "id": "31124", + "name": "Maimón", + "state_id": 4099, + "state_code": "28", + "country_id": 62, + "country_code": "DO", + "latitude": "18.88333000", + "longitude": "-70.30000000" + }, + { + "id": "31155", + "name": "Piedra Blanca", + "state_id": 4099, + "state_code": "28", + "country_id": 62, + "country_code": "DO", + "latitude": "18.84431000", + "longitude": "-70.31688000" + }, + { + "id": "31176", + "name": "Sabana del Puerto", + "state_id": 4099, + "state_code": "28", + "country_id": 62, + "country_code": "DO", + "latitude": "19.06667000", + "longitude": "-70.41667000" + }, + { + "id": "31040", + "name": "Cana Chapetón", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.60703000", + "longitude": "-71.25734000" + }, + { + "id": "31042", + "name": "Castañuelas", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.71387000", + "longitude": "-71.49876000" + }, + { + "id": "31082", + "name": "Guayubín", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.61667000", + "longitude": "-71.33333000" + }, + { + "id": "31083", + "name": "Hatillo Palma", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.66256000", + "longitude": "-71.19406000" + }, + { + "id": "31114", + "name": "Las Matas de Santa Cruz", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.67119000", + "longitude": "-71.50471000" + }, + { + "id": "31134", + "name": "Monte Cristi", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.83333000", + "longitude": "-71.61667000" + }, + { + "id": "31152", + "name": "Pepillo Salcedo", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.66667000", + "longitude": "-71.66667000" + }, + { + "id": "31184", + "name": "San Fernando de Monte Cristi", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.84826000", + "longitude": "-71.64597000" + }, + { + "id": "31214", + "name": "Villa Elisa", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.68560000", + "longitude": "-71.27007000" + }, + { + "id": "31221", + "name": "Villa Vásquez", + "state_id": 4115, + "state_code": "15", + "country_id": 62, + "country_code": "DO", + "latitude": "19.80791000", + "longitude": "-71.44000000" + }, + { + "id": "31028", + "name": "Bayaguana", + "state_id": 4111, + "state_code": "29", + "country_id": 62, + "country_code": "DO", + "latitude": "18.78333000", + "longitude": "-69.60000000" + }, + { + "id": "31054", + "name": "Don Juan", + "state_id": 4111, + "state_code": "29", + "country_id": 62, + "country_code": "DO", + "latitude": "18.82774000", + "longitude": "-69.94629000" + }, + { + "id": "31068", + "name": "Esperalvillo", + "state_id": 4111, + "state_code": "29", + "country_id": 62, + "country_code": "DO", + "latitude": "18.81509000", + "longitude": "-70.03557000" + }, + { + "id": "31076", + "name": "Gonzalo", + "state_id": 4111, + "state_code": "29", + "country_id": 62, + "country_code": "DO", + "latitude": "18.95147000", + "longitude": "-69.75114000" + }, + { + "id": "31119", + "name": "Los Botados", + "state_id": 4111, + "state_code": "29", + "country_id": 62, + "country_code": "DO", + "latitude": "18.73226000", + "longitude": "-69.99536000" + }, + { + "id": "31126", + "name": "Majagual", + "state_id": 4111, + "state_code": "29", + "country_id": 62, + "country_code": "DO", + "latitude": "19.04134000", + "longitude": "-69.83616000" + }, + { + "id": "31136", + "name": "Monte Plata", + "state_id": 4111, + "state_code": "29", + "country_id": 62, + "country_code": "DO", + "latitude": "18.80700000", + "longitude": "-69.78399000" + }, + { + "id": "31171", + "name": "Sabana Grande de Boyá", + "state_id": 4111, + "state_code": "29", + "country_id": 62, + "country_code": "DO", + "latitude": "18.94498000", + "longitude": "-69.79331000" + }, + { + "id": "31224", + "name": "Yamasá", + "state_id": 4111, + "state_code": "29", + "country_id": 62, + "country_code": "DO", + "latitude": "18.77315000", + "longitude": "-70.02583000" + }, + { + "id": "31099", + "name": "Juancho", + "state_id": 4101, + "state_code": "16", + "country_id": 62, + "country_code": "DO", + "latitude": "17.85782000", + "longitude": "-71.29311000" + }, + { + "id": "31141", + "name": "Oviedo", + "state_id": 4101, + "state_code": "16", + "country_id": 62, + "country_code": "DO", + "latitude": "17.80136000", + "longitude": "-71.40100000" + }, + { + "id": "31148", + "name": "Pedernales", + "state_id": 4101, + "state_code": "16", + "country_id": 62, + "country_code": "DO", + "latitude": "18.08333000", + "longitude": "-71.60000000" + }, + { + "id": "31027", + "name": "Baní", + "state_id": 4096, + "state_code": "17", + "country_id": 62, + "country_code": "DO", + "latitude": "18.27964000", + "longitude": "-70.33185000" + }, + { + "id": "31128", + "name": "Matanzas", + "state_id": 4096, + "state_code": "17", + "country_id": 62, + "country_code": "DO", + "latitude": "18.24297000", + "longitude": "-70.41768000" + }, + { + "id": "31139", + "name": "Nizao", + "state_id": 4096, + "state_code": "17", + "country_id": 62, + "country_code": "DO", + "latitude": "18.24697000", + "longitude": "-70.21053000" + }, + { + "id": "31147", + "name": "Paya", + "state_id": 4096, + "state_code": "17", + "country_id": 62, + "country_code": "DO", + "latitude": "18.26196000", + "longitude": "-70.29560000" + }, + { + "id": "31157", + "name": "Pizarrete", + "state_id": 4096, + "state_code": "17", + "country_id": 62, + "country_code": "DO", + "latitude": "18.29935000", + "longitude": "-70.22648000" + }, + { + "id": "31170", + "name": "Sabana Buey", + "state_id": 4096, + "state_code": "17", + "country_id": 62, + "country_code": "DO", + "latitude": "18.27351000", + "longitude": "-70.52352000" + }, + { + "id": "31020", + "name": "Altamira", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.70000000", + "longitude": "-70.83333000" + }, + { + "id": "31035", + "name": "Cabarete", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.74982000", + "longitude": "-70.40829000" + }, + { + "id": "31071", + "name": "Estero Hondo", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.82712000", + "longitude": "-71.17411000" + }, + { + "id": "31077", + "name": "Guananico", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.72693000", + "longitude": "-70.92294000" + }, + { + "id": "31087", + "name": "Imbert", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.75371000", + "longitude": "-70.82906000" + }, + { + "id": "31120", + "name": "Los Hidalgos", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.73333000", + "longitude": "-71.03333000" + }, + { + "id": "31123", + "name": "Luperón", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.89131000", + "longitude": "-70.96204000" + }, + { + "id": "31135", + "name": "Monte Llano", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.73460000", + "longitude": "-70.59915000" + }, + { + "id": "31161", + "name": "Puerto Plata", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.75119000", + "longitude": "-70.70251000" + }, + { + "id": "31167", + "name": "Río Grande", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.66667000", + "longitude": "-70.76667000" + }, + { + "id": "31201", + "name": "Sosúa", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.75220000", + "longitude": "-70.51995000" + }, + { + "id": "31217", + "name": "Villa Isabela", + "state_id": 4092, + "state_code": "18", + "country_id": 62, + "country_code": "DO", + "latitude": "19.81564000", + "longitude": "-71.06056000" + }, + { + "id": "31116", + "name": "Las Terrenas", + "state_id": 4103, + "state_code": "20", + "country_id": 62, + "country_code": "DO", + "latitude": "19.31102000", + "longitude": "-69.54280000" + }, + { + "id": "31181", + "name": "Samaná", + "state_id": 4103, + "state_code": "20", + "country_id": 62, + "country_code": "DO", + "latitude": "19.20561000", + "longitude": "-69.33685000" + }, + { + "id": "31202", + "name": "Sánchez", + "state_id": 4103, + "state_code": "20", + "country_id": 62, + "country_code": "DO", + "latitude": "19.22810000", + "longitude": "-69.61370000" + }, + { + "id": "31026", + "name": "Bajos de Haina", + "state_id": 4091, + "state_code": "21", + "country_id": 62, + "country_code": "DO", + "latitude": "18.41667000", + "longitude": "-70.03333000" + }, + { + "id": "31039", + "name": "Cambita Garabitos", + "state_id": 4091, + "state_code": "21", + "country_id": 62, + "country_code": "DO", + "latitude": "18.50000000", + "longitude": "-70.23333000" + }, + { + "id": "31056", + "name": "El Cacao", + "state_id": 4091, + "state_code": "21", + "country_id": 62, + "country_code": "DO", + "latitude": "18.52719000", + "longitude": "-70.29585000" + }, + { + "id": "31057", + "name": "El Carril", + "state_id": 4091, + "state_code": "21", + "country_id": 62, + "country_code": "DO", + "latitude": "18.44905000", + "longitude": "-70.02785000" + }, + { + "id": "31172", + "name": "Sabana Grande de Palenque", + "state_id": 4091, + "state_code": "21", + "country_id": 62, + "country_code": "DO", + "latitude": "18.26256000", + "longitude": "-70.14821000" + }, + { + "id": "31183", + "name": "San Cristóbal", + "state_id": 4091, + "state_code": "21", + "country_id": 62, + "country_code": "DO", + "latitude": "18.41667000", + "longitude": "-70.13333000" + }, + { + "id": "31186", + "name": "San Gregorio de Nigua", + "state_id": 4091, + "state_code": "21", + "country_id": 62, + "country_code": "DO", + "latitude": "18.38333000", + "longitude": "-70.08333000" + }, + { + "id": "31211", + "name": "Villa Altagracia", + "state_id": 4091, + "state_code": "21", + "country_id": 62, + "country_code": "DO", + "latitude": "18.63333000", + "longitude": "-70.25000000" + }, + { + "id": "31223", + "name": "Yaguate", + "state_id": 4091, + "state_code": "21", + "country_id": 62, + "country_code": "DO", + "latitude": "18.33333000", + "longitude": "-70.18333000" + }, + { + "id": "31189", + "name": "San José de Ocoa", + "state_id": 4112, + "state_code": "31", + "country_id": 62, + "country_code": "DO", + "latitude": "18.54661000", + "longitude": "-70.50631000" + }, + { + "id": "31033", + "name": "Bohechío", + "state_id": 4098, + "state_code": "22", + "country_id": 62, + "country_code": "DO", + "latitude": "18.77515000", + "longitude": "-70.98889000" + }, + { + "id": "31045", + "name": "Cercado Abajo", + "state_id": 4098, + "state_code": "22", + "country_id": 62, + "country_code": "DO", + "latitude": "18.72681000", + "longitude": "-71.51742000" + }, + { + "id": "31058", + "name": "El Cercado", + "state_id": 4098, + "state_code": "22", + "country_id": 62, + "country_code": "DO", + "latitude": "18.70000000", + "longitude": "-71.46667000" + }, + { + "id": "31098", + "name": "Juan de Herrera", + "state_id": 4098, + "state_code": "22", + "country_id": 62, + "country_code": "DO", + "latitude": "18.87402000", + "longitude": "-71.23830000" + }, + { + "id": "31113", + "name": "Las Matas de Farfán", + "state_id": 4098, + "state_code": "22", + "country_id": 62, + "country_code": "DO", + "latitude": "18.91667000", + "longitude": "-71.50000000" + }, + { + "id": "31129", + "name": "Matayaya", + "state_id": 4098, + "state_code": "22", + "country_id": 62, + "country_code": "DO", + "latitude": "18.89036000", + "longitude": "-71.59459000" + }, + { + "id": "31149", + "name": "Pedro Corto", + "state_id": 4098, + "state_code": "22", + "country_id": 62, + "country_code": "DO", + "latitude": "18.84856000", + "longitude": "-71.41041000" + }, + { + "id": "31190", + "name": "San Juan de la Maguana", + "state_id": 4098, + "state_code": "22", + "country_id": 62, + "country_code": "DO", + "latitude": "18.80588000", + "longitude": "-71.22991000" + }, + { + "id": "31208", + "name": "Vallejuelo", + "state_id": 4098, + "state_code": "22", + "country_id": 62, + "country_code": "DO", + "latitude": "18.65354000", + "longitude": "-71.33431000" + }, + { + "id": "31064", + "name": "El Puerto", + "state_id": 4110, + "state_code": "23", + "country_id": 62, + "country_code": "DO", + "latitude": "18.78333000", + "longitude": "-69.46667000" + }, + { + "id": "31121", + "name": "Los Llanos", + "state_id": 4110, + "state_code": "23", + "country_id": 62, + "country_code": "DO", + "latitude": "18.62035000", + "longitude": "-69.49581000" + }, + { + "id": "31163", + "name": "Quisqueya", + "state_id": 4110, + "state_code": "23", + "country_id": 62, + "country_code": "DO", + "latitude": "18.55542000", + "longitude": "-69.40814000" + }, + { + "id": "31164", + "name": "Ramón Santana", + "state_id": 4110, + "state_code": "23", + "country_id": 62, + "country_code": "DO", + "latitude": "18.54224000", + "longitude": "-69.17979000" + }, + { + "id": "31191", + "name": "San Pedro de Macorís", + "state_id": 4110, + "state_code": "23", + "country_id": 62, + "country_code": "DO", + "latitude": "18.45390000", + "longitude": "-69.30864000" + }, + { + "id": "31025", + "name": "Baitoa", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.32512000", + "longitude": "-70.70357000" + }, + { + "id": "31030", + "name": "Bisonó", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.58333000", + "longitude": "-70.86667000" + }, + { + "id": "31100", + "name": "Juncalito Abajo", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.21990000", + "longitude": "-70.81905000" + }, + { + "id": "31102", + "name": "La Canela", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.47341000", + "longitude": "-70.81629000" + }, + { + "id": "31117", + "name": "Licey al Medio", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.45000000", + "longitude": "-70.60000000" + }, + { + "id": "31143", + "name": "Palmar Arriba", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.53957000", + "longitude": "-70.73826000" + }, + { + "id": "31150", + "name": "Pedro García", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.59202000", + "longitude": "-70.65256000" + }, + { + "id": "31173", + "name": "Sabana Iglesia", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.32114000", + "longitude": "-70.75992000" + }, + { + "id": "31188", + "name": "San José de Las Matas", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.33915000", + "longitude": "-70.93819000" + }, + { + "id": "31196", + "name": "Santiago de los Caballeros", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.45170000", + "longitude": "-70.69703000" + }, + { + "id": "31200", + "name": "Santo Tomás de Jánico", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.23528000", + "longitude": "-70.79515000" + }, + { + "id": "31204", + "name": "Tamboril", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.48538000", + "longitude": "-70.61104000" + }, + { + "id": "31212", + "name": "Villa Bisonó", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.56378000", + "longitude": "-70.87582000" + }, + { + "id": "31216", + "name": "Villa González", + "state_id": 4108, + "state_code": "25", + "country_id": 62, + "country_code": "DO", + "latitude": "19.54057000", + "longitude": "-70.78853000" + }, + { + "id": "31133", + "name": "Monción", + "state_id": 4100, + "state_code": "26", + "country_id": 62, + "country_code": "DO", + "latitude": "19.46667000", + "longitude": "-71.16667000" + }, + { + "id": "31177", + "name": "Sabaneta", + "state_id": 4100, + "state_code": "26", + "country_id": 62, + "country_code": "DO", + "latitude": "19.47793000", + "longitude": "-71.34125000" + }, + { + "id": "31187", + "name": "San Ignacio de Sabaneta", + "state_id": 4100, + "state_code": "26", + "country_id": 62, + "country_code": "DO", + "latitude": "19.38333000", + "longitude": "-71.35000000" + }, + { + "id": "31031", + "name": "Boca Chica", + "state_id": 4093, + "state_code": "32", + "country_id": 62, + "country_code": "DO", + "latitude": "18.45000000", + "longitude": "-69.60000000" + }, + { + "id": "31198", + "name": "Santo Domingo Este", + "state_id": 4093, + "state_code": "32", + "country_id": 62, + "country_code": "DO", + "latitude": "18.48847000", + "longitude": "-69.85707000" + }, + { + "id": "31199", + "name": "Santo Domingo Oeste", + "state_id": 4093, + "state_code": "32", + "country_id": 62, + "country_code": "DO", + "latitude": "18.50000000", + "longitude": "-70.00000000" + }, + { + "id": "31046", + "name": "Cevicos", + "state_id": 4088, + "state_code": "24", + "country_id": 62, + "country_code": "DO", + "latitude": "19.00449000", + "longitude": "-69.97896000" + }, + { + "id": "31050", + "name": "Cotuí", + "state_id": 4088, + "state_code": "24", + "country_id": 62, + "country_code": "DO", + "latitude": "19.05272000", + "longitude": "-70.14939000" + }, + { + "id": "31072", + "name": "Fantino", + "state_id": 4088, + "state_code": "24", + "country_id": 62, + "country_code": "DO", + "latitude": "19.11667000", + "longitude": "-70.30000000" + }, + { + "id": "31021", + "name": "Amina", + "state_id": 4104, + "state_code": "27", + "country_id": 62, + "country_code": "DO", + "latitude": "19.54813000", + "longitude": "-70.99599000" + }, + { + "id": "31069", + "name": "Esperanza", + "state_id": 4104, + "state_code": "27", + "country_id": 62, + "country_code": "DO", + "latitude": "19.62379000", + "longitude": "-70.97141000" + }, + { + "id": "31078", + "name": "Guatapanal", + "state_id": 4104, + "state_code": "27", + "country_id": 62, + "country_code": "DO", + "latitude": "19.50705000", + "longitude": "-70.91713000" + }, + { + "id": "31088", + "name": "Jaibón", + "state_id": 4104, + "state_code": "27", + "country_id": 62, + "country_code": "DO", + "latitude": "19.61169000", + "longitude": "-71.14847000" + }, + { + "id": "31092", + "name": "Jicomé", + "state_id": 4104, + "state_code": "27", + "country_id": 62, + "country_code": "DO", + "latitude": "19.64955000", + "longitude": "-70.94927000" + }, + { + "id": "31103", + "name": "La Caya", + "state_id": 4104, + "state_code": "27", + "country_id": 62, + "country_code": "DO", + "latitude": "19.69981000", + "longitude": "-71.12084000" + }, + { + "id": "31110", + "name": "Laguna Salada", + "state_id": 4104, + "state_code": "27", + "country_id": 62, + "country_code": "DO", + "latitude": "19.70000000", + "longitude": "-71.13333000" + }, + { + "id": "31125", + "name": "Maizal", + "state_id": 4104, + "state_code": "27", + "country_id": 62, + "country_code": "DO", + "latitude": "19.63655000", + "longitude": "-71.02734000" + }, + { + "id": "31127", + "name": "Mao", + "state_id": 4104, + "state_code": "27", + "country_id": 62, + "country_code": "DO", + "latitude": "19.55186000", + "longitude": "-71.07813000" + }, + { + "id": "106830", + "name": "Aileu", + "state_id": 4520, + "state_code": "AL", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.72806000", + "longitude": "125.56639000" + }, + { + "id": "106854", + "name": "Lequidoe", + "state_id": 4520, + "state_code": "AL", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.69139000", + "longitude": "125.63611000" + }, + { + "id": "106868", + "name": "Remexio", + "state_id": 4520, + "state_code": "AL", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.61667000", + "longitude": "125.66667000" + }, + { + "id": "106831", + "name": "Ainaro", + "state_id": 4518, + "state_code": "AN", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.99241000", + "longitude": "125.50816000" + }, + { + "id": "106846", + "name": "Hato-Udo", + "state_id": 4518, + "state_code": "AN", + "country_id": 63, + "country_code": "TL", + "latitude": "-9.12036000", + "longitude": "125.58935000" + }, + { + "id": "106834", + "name": "Baguia", + "state_id": 4521, + "state_code": "BA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.62787000", + "longitude": "126.65743000" + }, + { + "id": "106836", + "name": "Baucau", + "state_id": 4521, + "state_code": "BA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.46667000", + "longitude": "126.45000000" + }, + { + "id": "106837", + "name": "Baukau", + "state_id": 4521, + "state_code": "BA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.47572000", + "longitude": "126.45633000" + }, + { + "id": "106852", + "name": "Laga", + "state_id": 4521, + "state_code": "BA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.47411000", + "longitude": "126.59228000" + }, + { + "id": "106866", + "name": "Quelicai", + "state_id": 4521, + "state_code": "BA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.60135000", + "longitude": "126.55904000" + }, + { + "id": "106877", + "name": "Vemasse", + "state_id": 4521, + "state_code": "BA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.51036000", + "longitude": "126.20823000" + }, + { + "id": "106878", + "name": "Venilale", + "state_id": 4521, + "state_code": "BA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.64306000", + "longitude": "126.37833000" + }, + { + "id": "106859", + "name": "Maliana", + "state_id": 4525, + "state_code": "BO", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.99167000", + "longitude": "125.21972000" + }, + { + "id": "106843", + "name": "Fatumean", + "state_id": 4522, + "state_code": "CO", + "country_id": 63, + "country_code": "TL", + "latitude": "-9.22917000", + "longitude": "125.03583000" + }, + { + "id": "106844", + "name": "Fohorem", + "state_id": 4522, + "state_code": "CO", + "country_id": 63, + "country_code": "TL", + "latitude": "-9.28361000", + "longitude": "125.08944000" + }, + { + "id": "106863", + "name": "Maucatar", + "state_id": 4522, + "state_code": "CO", + "country_id": 63, + "country_code": "TL", + "latitude": "-9.21772000", + "longitude": "125.22981000" + }, + { + "id": "106871", + "name": "Suai", + "state_id": 4522, + "state_code": "CO", + "country_id": 63, + "country_code": "TL", + "latitude": "-9.30000000", + "longitude": "125.25000000" + }, + { + "id": "106872", + "name": "Tilomar", + "state_id": 4522, + "state_code": "CO", + "country_id": 63, + "country_code": "TL", + "latitude": "-9.34182000", + "longitude": "125.10887000" + }, + { + "id": "106833", + "name": "Atauro Island", + "state_id": 4524, + "state_code": "DI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.26785000", + "longitude": "125.59699000" + }, + { + "id": "106839", + "name": "Cristo Rei", + "state_id": 4524, + "state_code": "DI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.52047000", + "longitude": "125.60837000" + }, + { + "id": "106840", + "name": "Dili", + "state_id": 4524, + "state_code": "DI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.55861000", + "longitude": "125.57361000" + }, + { + "id": "106864", + "name": "Metinaro", + "state_id": 4524, + "state_code": "DI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.53007000", + "longitude": "125.74163000" + }, + { + "id": "106841", + "name": "Ermera Villa", + "state_id": 4516, + "state_code": "ER", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.75222000", + "longitude": "125.39694000" + }, + { + "id": "106845", + "name": "Gleno", + "state_id": 4516, + "state_code": "ER", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.72389000", + "longitude": "125.43611000" + }, + { + "id": "106847", + "name": "Hatulia", + "state_id": 4516, + "state_code": "ER", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.81667000", + "longitude": "125.31667000" + }, + { + "id": "106855", + "name": "Letefoho", + "state_id": 4516, + "state_code": "ER", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.83444000", + "longitude": "125.42639000" + }, + { + "id": "106867", + "name": "Railaco", + "state_id": 4516, + "state_code": "ER", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.67237000", + "longitude": "125.42546000" + }, + { + "id": "106848", + "name": "Iliomar", + "state_id": 4523, + "state_code": "LA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.70917000", + "longitude": "126.82833000" + }, + { + "id": "106853", + "name": "Lautem", + "state_id": 4523, + "state_code": "LA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.36514000", + "longitude": "126.90389000" + }, + { + "id": "106857", + "name": "Lospalos", + "state_id": 4523, + "state_code": "LA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.52167000", + "longitude": "126.99833000" + }, + { + "id": "106858", + "name": "Luro", + "state_id": 4523, + "state_code": "LA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.54359000", + "longitude": "126.83003000" + }, + { + "id": "106874", + "name": "Tutuala", + "state_id": 4523, + "state_code": "LA", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.39597000", + "longitude": "127.25923000" + }, + { + "id": "106838", + "name": "Bazartete", + "state_id": 4515, + "state_code": "LI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.62464000", + "longitude": "125.38168000" + }, + { + "id": "106856", + "name": "Likisá", + "state_id": 4515, + "state_code": "LI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.58750000", + "longitude": "125.34194000" + }, + { + "id": "106862", + "name": "Maubara", + "state_id": 4515, + "state_code": "LI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.61194000", + "longitude": "125.20611000" + }, + { + "id": "106835", + "name": "Barique", + "state_id": 4517, + "state_code": "MT", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.85472000", + "longitude": "126.06556000" + }, + { + "id": "106849", + "name": "Laclo", + "state_id": 4517, + "state_code": "MT", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.55000000", + "longitude": "125.91667000" + }, + { + "id": "106850", + "name": "Laclubar", + "state_id": 4517, + "state_code": "MT", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.74975000", + "longitude": "125.91186000" + }, + { + "id": "106860", + "name": "Manatuto", + "state_id": 4517, + "state_code": "MT", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.52207000", + "longitude": "126.01516000" + }, + { + "id": "106861", + "name": "Manatutu", + "state_id": 4517, + "state_code": "MT", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.51139000", + "longitude": "126.01306000" + }, + { + "id": "106870", + "name": "Soibada", + "state_id": 4517, + "state_code": "MT", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.86000000", + "longitude": "125.94000000" + }, + { + "id": "106832", + "name": "Alas", + "state_id": 4519, + "state_code": "MF", + "country_id": 63, + "country_code": "TL", + "latitude": "-9.02730000", + "longitude": "125.78680000" + }, + { + "id": "106842", + "name": "Fatuberliu", + "state_id": 4519, + "state_code": "MF", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.94790000", + "longitude": "125.86633000" + }, + { + "id": "106869", + "name": "Same", + "state_id": 4519, + "state_code": "MF", + "country_id": 63, + "country_code": "TL", + "latitude": "-9.00000000", + "longitude": "125.65000000" + }, + { + "id": "106873", + "name": "Turiscai", + "state_id": 4519, + "state_code": "MF", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.82371000", + "longitude": "125.70454000" + }, + { + "id": "106851", + "name": "Lacluta", + "state_id": 4514, + "state_code": "VI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.80000000", + "longitude": "126.13333000" + }, + { + "id": "106865", + "name": "Ossu", + "state_id": 4514, + "state_code": "VI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.73477000", + "longitude": "126.38324000" + }, + { + "id": "106875", + "name": "Uatocarabau", + "state_id": 4514, + "state_code": "VI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.75658000", + "longitude": "126.68060000" + }, + { + "id": "106876", + "name": "Uatolari", + "state_id": 4514, + "state_code": "VI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.76277000", + "longitude": "126.57353000" + }, + { + "id": "106879", + "name": "Viqueque", + "state_id": 4514, + "state_code": "VI", + "country_id": 63, + "country_code": "TL", + "latitude": "-8.85908000", + "longitude": "126.36972000" + }, + { + "id": "31493", + "name": "Cantón San Fernando", + "state_id": 2923, + "state_code": "A", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.13349000", + "longitude": "-79.26893000" + }, + { + "id": "31501", + "name": "Cuenca", + "state_id": 2923, + "state_code": "A", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.90055000", + "longitude": "-79.00453000" + }, + { + "id": "31507", + "name": "Gualaceo", + "state_id": 2923, + "state_code": "A", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.89264000", + "longitude": "-78.77814000" + }, + { + "id": "31519", + "name": "La Unión", + "state_id": 2923, + "state_code": "A", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.85000000", + "longitude": "-78.78333000" + }, + { + "id": "31521", + "name": "Llacao", + "state_id": 2923, + "state_code": "A", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.86667000", + "longitude": "-78.88333000" + }, + { + "id": "31535", + "name": "Nulti", + "state_id": 2923, + "state_code": "A", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.91667000", + "longitude": "-78.85000000" + }, + { + "id": "31510", + "name": "Guaranda", + "state_id": 2920, + "state_code": "B", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.59263000", + "longitude": "-79.00098000" + }, + { + "id": "31569", + "name": "San Miguel", + "state_id": 2920, + "state_code": "B", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.70884000", + "longitude": "-79.04311000" + }, + { + "id": "31484", + "name": "Azogues", + "state_id": 2917, + "state_code": "F", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.73969000", + "longitude": "-78.84860000" + }, + { + "id": "31496", + "name": "Cañar", + "state_id": 2917, + "state_code": "F", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.56062000", + "longitude": "-78.93940000" + }, + { + "id": "31518", + "name": "La Troncal", + "state_id": 2917, + "state_code": "F", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.42355000", + "longitude": "-79.33977000" + }, + { + "id": "31503", + "name": "El Ángel", + "state_id": 2915, + "state_code": "C", + "country_id": 64, + "country_code": "EC", + "latitude": "0.62279000", + "longitude": "-77.94003000" + }, + { + "id": "31567", + "name": "San Gabriel", + "state_id": 2915, + "state_code": "C", + "country_id": 64, + "country_code": "EC", + "latitude": "0.59318000", + "longitude": "-77.83078000" + }, + { + "id": "31583", + "name": "Tulcán", + "state_id": 2915, + "state_code": "C", + "country_id": 64, + "country_code": "EC", + "latitude": "0.81187000", + "longitude": "-77.71727000" + }, + { + "id": "31479", + "name": "Alausí", + "state_id": 2925, + "state_code": "H", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.20329000", + "longitude": "-78.84714000" + }, + { + "id": "31509", + "name": "Guano", + "state_id": 2925, + "state_code": "H", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.60789000", + "longitude": "-78.63105000" + }, + { + "id": "31562", + "name": "Riobamba", + "state_id": 2925, + "state_code": "H", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.67098000", + "longitude": "-78.64712000" + }, + { + "id": "31517", + "name": "La Maná", + "state_id": 2921, + "state_code": "X", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.94094000", + "longitude": "-79.22506000" + }, + { + "id": "31520", + "name": "Latacunga", + "state_id": 2921, + "state_code": "X", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.93521000", + "longitude": "-78.61554000" + }, + { + "id": "31556", + "name": "Pujilí", + "state_id": 2921, + "state_code": "X", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.95759000", + "longitude": "-78.69636000" + }, + { + "id": "31570", + "name": "San Miguel de Salcedo", + "state_id": 2921, + "state_code": "X", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.04547000", + "longitude": "-78.59063000" + }, + { + "id": "31578", + "name": "Saquisilí", + "state_id": 2921, + "state_code": "X", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.83990000", + "longitude": "-78.66700000" + }, + { + "id": "31512", + "name": "Huaquillas", + "state_id": 2924, + "state_code": "O", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.47523000", + "longitude": "-80.23084000" + }, + { + "id": "31526", + "name": "Machala", + "state_id": 2924, + "state_code": "O", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.25861000", + "longitude": "-79.96053000" + }, + { + "id": "31542", + "name": "Pasaje", + "state_id": 2924, + "state_code": "O", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.32561000", + "longitude": "-79.80697000" + }, + { + "id": "31547", + "name": "Piñas", + "state_id": 2924, + "state_code": "O", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.68107000", + "longitude": "-79.68083000" + }, + { + "id": "31549", + "name": "Portovelo", + "state_id": 2924, + "state_code": "O", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.72145000", + "longitude": "-79.62187000" + }, + { + "id": "31553", + "name": "Puerto Bolívar", + "state_id": 2924, + "state_code": "O", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.26649000", + "longitude": "-79.99749000" + }, + { + "id": "31576", + "name": "Santa Rosa", + "state_id": 2924, + "state_code": "O", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.44882000", + "longitude": "-79.95952000" + }, + { + "id": "31592", + "name": "Zaruma", + "state_id": 2924, + "state_code": "O", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.69132000", + "longitude": "-79.61174000" + }, + { + "id": "31505", + "name": "Esmeraldas", + "state_id": 2922, + "state_code": "E", + "country_id": 64, + "country_code": "EC", + "latitude": "0.95920000", + "longitude": "-79.65397000" + }, + { + "id": "31531", + "name": "Muisne", + "state_id": 2922, + "state_code": "E", + "country_id": 64, + "country_code": "EC", + "latitude": "0.61129000", + "longitude": "-80.01863000" + }, + { + "id": "31541", + "name": "Pampanal de Bolívar", + "state_id": 2922, + "state_code": "E", + "country_id": 64, + "country_code": "EC", + "latitude": "1.35251000", + "longitude": "-78.89360000" + }, + { + "id": "31561", + "name": "Rio Verde", + "state_id": 2922, + "state_code": "E", + "country_id": 64, + "country_code": "EC", + "latitude": "1.06235000", + "longitude": "-79.39939000" + }, + { + "id": "31564", + "name": "Rosa Zarate", + "state_id": 2922, + "state_code": "E", + "country_id": 64, + "country_code": "EC", + "latitude": "0.32779000", + "longitude": "-79.47407000" + }, + { + "id": "31568", + "name": "San Lorenzo de Esmeraldas", + "state_id": 2922, + "state_code": "E", + "country_id": 64, + "country_code": "EC", + "latitude": "1.28626000", + "longitude": "-78.83514000" + }, + { + "id": "31585", + "name": "Valdez", + "state_id": 2922, + "state_code": "E", + "country_id": 64, + "country_code": "EC", + "latitude": "1.24917000", + "longitude": "-78.98306000" + }, + { + "id": "31551", + "name": "Puerto Ayora", + "state_id": 2905, + "state_code": "W", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.74018000", + "longitude": "-90.31380000" + }, + { + "id": "31552", + "name": "Puerto Baquerizo Moreno", + "state_id": 2905, + "state_code": "W", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.90172000", + "longitude": "-89.61021000" + }, + { + "id": "31555", + "name": "Puerto Villamil", + "state_id": 2905, + "state_code": "W", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.95542000", + "longitude": "-90.96654000" + }, + { + "id": "31480", + "name": "Alfredo Baquerizo Moreno", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.91667000", + "longitude": "-79.51667000" + }, + { + "id": "31488", + "name": "Baláo", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.91100000", + "longitude": "-79.81441000" + }, + { + "id": "31487", + "name": "Balzar", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.36501000", + "longitude": "-79.90494000" + }, + { + "id": "31498", + "name": "Colimes", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.54553000", + "longitude": "-80.01165000" + }, + { + "id": "31499", + "name": "Coronel Marcelino Maridueña", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.20924000", + "longitude": "-79.43248000" + }, + { + "id": "31502", + "name": "El Triunfo", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.93333000", + "longitude": "-79.96667000" + }, + { + "id": "31504", + "name": "Eloy Alfaro", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.17579000", + "longitude": "-79.85519000" + }, + { + "id": "31511", + "name": "Guayaquil", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.19616000", + "longitude": "-79.88621000" + }, + { + "id": "31516", + "name": "La Libertad", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.23300000", + "longitude": "-80.91039000" + }, + { + "id": "31522", + "name": "Lomas de Sargentillo", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.88333000", + "longitude": "-80.08333000" + }, + { + "id": "31528", + "name": "Milagro", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.13404000", + "longitude": "-79.59415000" + }, + { + "id": "31532", + "name": "Naranjal", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.67364000", + "longitude": "-79.61830000" + }, + { + "id": "31533", + "name": "Naranjito", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.16671000", + "longitude": "-79.46540000" + }, + { + "id": "31539", + "name": "Palestina", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.93709000", + "longitude": "-79.71396000" + }, + { + "id": "31544", + "name": "Pedro Carbo", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.81563000", + "longitude": "-80.23309000" + }, + { + "id": "31548", + "name": "Playas", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.63199000", + "longitude": "-80.38808000" + }, + { + "id": "31566", + "name": "Samborondón", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.96276000", + "longitude": "-79.72402000" + }, + { + "id": "31575", + "name": "Santa Lucía", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.18333000", + "longitude": "-80.00000000" + }, + { + "id": "31586", + "name": "Velasco Ibarra", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.04376000", + "longitude": "-79.63837000" + }, + { + "id": "31589", + "name": "Yaguachi Nuevo", + "state_id": 2914, + "state_code": "G", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.09680000", + "longitude": "-79.69485000" + }, + { + "id": "31483", + "name": "Atuntaqui", + "state_id": 2911, + "state_code": "I", + "country_id": 64, + "country_code": "EC", + "latitude": "0.33247000", + "longitude": "-78.21371000" + }, + { + "id": "31500", + "name": "Cotacachi", + "state_id": 2911, + "state_code": "I", + "country_id": 64, + "country_code": "EC", + "latitude": "0.30107000", + "longitude": "-78.26428000" + }, + { + "id": "31513", + "name": "Ibarra", + "state_id": 2911, + "state_code": "I", + "country_id": 64, + "country_code": "EC", + "latitude": "0.35171000", + "longitude": "-78.12233000" + }, + { + "id": "31536", + "name": "Otavalo", + "state_id": 2911, + "state_code": "I", + "country_id": 64, + "country_code": "EC", + "latitude": "0.23457000", + "longitude": "-78.26248000" + }, + { + "id": "31546", + "name": "Pimampiro", + "state_id": 2911, + "state_code": "I", + "country_id": 64, + "country_code": "EC", + "latitude": "0.39116000", + "longitude": "-77.94068000" + }, + { + "id": "31485", + "name": "Babahoyo", + "state_id": 2910, + "state_code": "R", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.80217000", + "longitude": "-79.53443000" + }, + { + "id": "31494", + "name": "Catarama", + "state_id": 2910, + "state_code": "R", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.57504000", + "longitude": "-79.45998000" + }, + { + "id": "31529", + "name": "Montalvo", + "state_id": 2910, + "state_code": "R", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.79008000", + "longitude": "-79.28759000" + }, + { + "id": "31538", + "name": "Palenque", + "state_id": 2910, + "state_code": "R", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.43795000", + "longitude": "-79.75647000" + }, + { + "id": "31559", + "name": "Quevedo", + "state_id": 2910, + "state_code": "R", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.02863000", + "longitude": "-79.46352000" + }, + { + "id": "31587", + "name": "Ventanas", + "state_id": 2910, + "state_code": "R", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.44158000", + "longitude": "-79.45943000" + }, + { + "id": "31588", + "name": "Vinces", + "state_id": 2910, + "state_code": "R", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.55611000", + "longitude": "-79.75191000" + }, + { + "id": "31486", + "name": "Bahía de Caráquez", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.59792000", + "longitude": "-80.42367000" + }, + { + "id": "31491", + "name": "Calceta", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.84582000", + "longitude": "-80.16389000" + }, + { + "id": "31492", + "name": "Cantón Portoviejo", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.05000000", + "longitude": "-80.45000000" + }, + { + "id": "31497", + "name": "Chone", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.69819000", + "longitude": "-80.09361000" + }, + { + "id": "31514", + "name": "Jipijapa", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.34872000", + "longitude": "-80.57875000" + }, + { + "id": "31515", + "name": "Junín", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.92777000", + "longitude": "-80.20583000" + }, + { + "id": "31527", + "name": "Manta", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.96212000", + "longitude": "-80.71271000" + }, + { + "id": "31530", + "name": "Montecristi", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.04576000", + "longitude": "-80.65889000" + }, + { + "id": "31537", + "name": "Paján", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.55238000", + "longitude": "-80.42958000" + }, + { + "id": "31543", + "name": "Pedernales", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "0.07167000", + "longitude": "-80.05250000" + }, + { + "id": "31550", + "name": "Portoviejo", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.05458000", + "longitude": "-80.45445000" + }, + { + "id": "31563", + "name": "Rocafuerte", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.92360000", + "longitude": "-80.44946000" + }, + { + "id": "31571", + "name": "San Vicente", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.60435000", + "longitude": "-80.40267000" + }, + { + "id": "31573", + "name": "Santa Ana", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.20726000", + "longitude": "-80.37132000" + }, + { + "id": "31579", + "name": "Sucre", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.27974000", + "longitude": "-80.41885000" + }, + { + "id": "31582", + "name": "Tosagua", + "state_id": 2913, + "state_code": "M", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.78679000", + "longitude": "-80.23473000" + }, + { + "id": "31508", + "name": "Gualaquiza", + "state_id": 2918, + "state_code": "S", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.40359000", + "longitude": "-78.58166000" + }, + { + "id": "31524", + "name": "Macas", + "state_id": 2918, + "state_code": "S", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.30868000", + "longitude": "-78.11135000" + }, + { + "id": "31540", + "name": "Palora", + "state_id": 2918, + "state_code": "S", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.70131000", + "longitude": "-77.96516000" + }, + { + "id": "31580", + "name": "Sucúa", + "state_id": 2918, + "state_code": "S", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.45866000", + "longitude": "-78.17171000" + }, + { + "id": "31482", + "name": "Archidona", + "state_id": 2916, + "state_code": "N", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.90950000", + "longitude": "-77.80772000" + }, + { + "id": "31581", + "name": "Tena", + "state_id": 2916, + "state_code": "N", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.99380000", + "longitude": "-77.81286000" + }, + { + "id": "31490", + "name": "Boca Suno", + "state_id": 2926, + "state_code": "D", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.69832000", + "longitude": "-77.14083000" + }, + { + "id": "31506", + "name": "Francisco de Orellana Canton", + "state_id": 2926, + "state_code": "D", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.46667000", + "longitude": "-76.96667000" + }, + { + "id": "31523", + "name": "Loreto Canton", + "state_id": 2926, + "state_code": "D", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.69487000", + "longitude": "-77.30255000" + }, + { + "id": "31554", + "name": "Puerto Francisco de Orellana", + "state_id": 2926, + "state_code": "D", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.46645000", + "longitude": "-76.98719000" + }, + { + "id": "31557", + "name": "Puyo", + "state_id": 2907, + "state_code": "Y", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.48369000", + "longitude": "-78.00257000" + }, + { + "id": "31495", + "name": "Cayambe", + "state_id": 2927, + "state_code": "P", + "country_id": 64, + "country_code": "EC", + "latitude": "0.04084000", + "longitude": "-78.14524000" + }, + { + "id": "31525", + "name": "Machachi", + "state_id": 2927, + "state_code": "P", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.51011000", + "longitude": "-78.56712000" + }, + { + "id": "31560", + "name": "Quito", + "state_id": 2927, + "state_code": "P", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.22985000", + "longitude": "-78.52495000" + }, + { + "id": "31572", + "name": "Sangolquí", + "state_id": 2927, + "state_code": "P", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.33405000", + "longitude": "-78.45217000" + }, + { + "id": "31584", + "name": "Tutamandahostel", + "state_id": 2927, + "state_code": "P", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.19727000", + "longitude": "-78.49750000" + }, + { + "id": "31565", + "name": "Salinas", + "state_id": 2912, + "state_code": "SE", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.21452000", + "longitude": "-80.95151000" + }, + { + "id": "31574", + "name": "Santa Elena", + "state_id": 2912, + "state_code": "SE", + "country_id": 64, + "country_code": "EC", + "latitude": "-2.22622000", + "longitude": "-80.85873000" + }, + { + "id": "31577", + "name": "Santo Domingo de los Colorados", + "state_id": 2919, + "state_code": "SD", + "country_id": 64, + "country_code": "EC", + "latitude": "-0.25305000", + "longitude": "-79.17536000" + }, + { + "id": "31534", + "name": "Nueva Loja", + "state_id": 2906, + "state_code": "U", + "country_id": 64, + "country_code": "EC", + "latitude": "0.08600000", + "longitude": "-76.89528000" + }, + { + "id": "31481", + "name": "Ambato", + "state_id": 2908, + "state_code": "T", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.24908000", + "longitude": "-78.61675000" + }, + { + "id": "31489", + "name": "Baños", + "state_id": 2908, + "state_code": "T", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.39699000", + "longitude": "-78.42289000" + }, + { + "id": "31558", + "name": "Píllaro", + "state_id": 2908, + "state_code": "T", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.17414000", + "longitude": "-78.54676000" + }, + { + "id": "31545", + "name": "Pelileo", + "state_id": 2908, + "state_code": "T", + "country_id": 64, + "country_code": "EC", + "latitude": "-1.32990000", + "longitude": "-78.54341000" + }, + { + "id": "31590", + "name": "Yantzaza", + "state_id": 2909, + "state_code": "Z", + "country_id": 64, + "country_code": "EC", + "latitude": "-3.83261000", + "longitude": "-78.76076000" + }, + { + "id": "31591", + "name": "Zamora", + "state_id": 2909, + "state_code": "Z", + "country_id": 64, + "country_code": "EC", + "latitude": "-4.06685000", + "longitude": "-78.95488000" + }, + { + "id": "31787", + "name": "Alexandria", + "state_id": 3235, + "state_code": "ALX", + "country_id": 65, + "country_code": "EG", + "latitude": "31.20176000", + "longitude": "29.91582000" + }, + { + "id": "31756", + "name": "Abu Simbel", + "state_id": 3225, + "state_code": "ASN", + "country_id": 65, + "country_code": "EG", + "latitude": "22.34570000", + "longitude": "31.61624000" + }, + { + "id": "31791", + "name": "Aswan", + "state_id": 3225, + "state_code": "ASN", + "country_id": 65, + "country_code": "EG", + "latitude": "24.09082000", + "longitude": "32.89942000" + }, + { + "id": "31819", + "name": "Idfū", + "state_id": 3225, + "state_code": "ASN", + "country_id": 65, + "country_code": "EG", + "latitude": "24.97916000", + "longitude": "32.87722000" + }, + { + "id": "31829", + "name": "Kawm Umbū", + "state_id": 3225, + "state_code": "ASN", + "country_id": 65, + "country_code": "EG", + "latitude": "24.47669000", + "longitude": "32.94626000" + }, + { + "id": "31758", + "name": "Abū Tīj", + "state_id": 3236, + "state_code": "AST", + "country_id": 65, + "country_code": "EG", + "latitude": "27.04411000", + "longitude": "31.31897000" + }, + { + "id": "31755", + "name": "Abnūb", + "state_id": 3236, + "state_code": "AST", + "country_id": 65, + "country_code": "EG", + "latitude": "27.26960000", + "longitude": "31.15105000" + }, + { + "id": "31764", + "name": "Al Badārī", + "state_id": 3236, + "state_code": "AST", + "country_id": 65, + "country_code": "EG", + "latitude": "26.99257000", + "longitude": "31.41554000" + }, + { + "id": "31781", + "name": "Al Qūşīyah", + "state_id": 3236, + "state_code": "AST", + "country_id": 65, + "country_code": "EG", + "latitude": "27.44020000", + "longitude": "30.81841000" + }, + { + "id": "31792", + "name": "Asyūţ", + "state_id": 3236, + "state_code": "AST", + "country_id": 65, + "country_code": "EG", + "latitude": "27.18096000", + "longitude": "31.18368000" + }, + { + "id": "31807", + "name": "Dayrūţ", + "state_id": 3236, + "state_code": "AST", + "country_id": 65, + "country_code": "EG", + "latitude": "27.55602000", + "longitude": "30.80764000" + }, + { + "id": "31836", + "name": "Manfalūţ", + "state_id": 3236, + "state_code": "AST", + "country_id": 65, + "country_code": "EG", + "latitude": "27.31040000", + "longitude": "30.97004000" + }, + { + "id": "31759", + "name": "Abū al Maţāmīr", + "state_id": 3241, + "state_code": "BH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.91018000", + "longitude": "30.17438000" + }, + { + "id": "31760", + "name": "Ad Dilinjāt", + "state_id": 3241, + "state_code": "BH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.82796000", + "longitude": "30.53552000" + }, + { + "id": "31879", + "name": "Ḩawsh ‘Īsá", + "state_id": 3241, + "state_code": "BH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.91280000", + "longitude": "30.29019000" + }, + { + "id": "31804", + "name": "Damanhūr", + "state_id": 3241, + "state_code": "BH", + "country_id": 65, + "country_code": "EG", + "latitude": "31.03408000", + "longitude": "30.46823000" + }, + { + "id": "31820", + "name": "Idkū", + "state_id": 3241, + "state_code": "BH", + "country_id": 65, + "country_code": "EG", + "latitude": "31.30730000", + "longitude": "30.29810000" + }, + { + "id": "31826", + "name": "Kafr ad Dawwār", + "state_id": 3241, + "state_code": "BH", + "country_id": 65, + "country_code": "EG", + "latitude": "31.13379000", + "longitude": "30.12969000" + }, + { + "id": "31830", + "name": "Kawm Ḩamādah", + "state_id": 3241, + "state_code": "BH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.76128000", + "longitude": "30.69972000" + }, + { + "id": "31857", + "name": "Rosetta", + "state_id": 3241, + "state_code": "BH", + "country_id": 65, + "country_code": "EG", + "latitude": "31.39951000", + "longitude": "30.41718000" + }, + { + "id": "31768", + "name": "Al Fashn", + "state_id": 3230, + "state_code": "BNS", + "country_id": 65, + "country_code": "EG", + "latitude": "28.82431000", + "longitude": "30.89948000" + }, + { + "id": "31798", + "name": "Banī Suwayf", + "state_id": 3230, + "state_code": "BNS", + "country_id": 65, + "country_code": "EG", + "latitude": "29.07441000", + "longitude": "31.09785000" + }, + { + "id": "31801", + "name": "Būsh", + "state_id": 3230, + "state_code": "BNS", + "country_id": 65, + "country_code": "EG", + "latitude": "29.14816000", + "longitude": "31.12733000" + }, + { + "id": "31869", + "name": "Sumusţā as Sulţānī", + "state_id": 3230, + "state_code": "BNS", + "country_id": 65, + "country_code": "EG", + "latitude": "28.91667000", + "longitude": "30.85000000" + }, + { + "id": "31878", + "name": "Ḩalwān", + "state_id": 3223, + "state_code": "C", + "country_id": 65, + "country_code": "EG", + "latitude": "29.84144000", + "longitude": "31.30084000" + }, + { + "id": "31802", + "name": "Cairo", + "state_id": 3223, + "state_code": "C", + "country_id": 65, + "country_code": "EG", + "latitude": "30.06263000", + "longitude": "31.24967000" + }, + { + "id": "31848", + "name": "New Cairo", + "state_id": 3223, + "state_code": "C", + "country_id": 65, + "country_code": "EG", + "latitude": "30.03000000", + "longitude": "31.47000000" + }, + { + "id": "31762", + "name": "Ajā", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "30.94162000", + "longitude": "31.29039000" + }, + { + "id": "31770", + "name": "Al Jammālīyah", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.18065000", + "longitude": "31.86497000" + }, + { + "id": "31776", + "name": "Al Maţarīyah", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.18287000", + "longitude": "32.03108000" + }, + { + "id": "31775", + "name": "Al Manşūrah", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.03637000", + "longitude": "31.38069000" + }, + { + "id": "31774", + "name": "Al Manzalah", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.15823000", + "longitude": "31.93600000" + }, + { + "id": "31876", + "name": "Ţalkhā", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.05390000", + "longitude": "31.37787000" + }, + { + "id": "31880", + "name": "‘Izbat al Burj", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.50840000", + "longitude": "31.84106000" + }, + { + "id": "31800", + "name": "Bilqās", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.21452000", + "longitude": "31.35798000" + }, + { + "id": "31808", + "name": "Dikirnis", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.08898000", + "longitude": "31.59478000" + }, + { + "id": "31844", + "name": "Minyat an Naşr", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.12624000", + "longitude": "31.64313000" + }, + { + "id": "31865", + "name": "Shirbīn", + "state_id": 3245, + "state_code": "DK", + "country_id": 65, + "country_code": "EG", + "latitude": "31.19688000", + "longitude": "31.52430000" + }, + { + "id": "31794", + "name": "Az Zarqā", + "state_id": 3224, + "state_code": "DT", + "country_id": 65, + "country_code": "EG", + "latitude": "31.20864000", + "longitude": "31.63528000" + }, + { + "id": "31805", + "name": "Damietta", + "state_id": 3224, + "state_code": "DT", + "country_id": 65, + "country_code": "EG", + "latitude": "31.41648000", + "longitude": "31.81332000" + }, + { + "id": "31815", + "name": "Fāraskūr", + "state_id": 3224, + "state_code": "DT", + "country_id": 65, + "country_code": "EG", + "latitude": "31.32977000", + "longitude": "31.71507000" + }, + { + "id": "31769", + "name": "Al Fayyūm", + "state_id": 3238, + "state_code": "FYM", + "country_id": 65, + "country_code": "EG", + "latitude": "29.30995000", + "longitude": "30.84180000" + }, + { + "id": "31782", + "name": "Al Wāsiţah", + "state_id": 3238, + "state_code": "FYM", + "country_id": 65, + "country_code": "EG", + "latitude": "29.33778000", + "longitude": "31.20556000" + }, + { + "id": "31877", + "name": "Ţāmiyah", + "state_id": 3238, + "state_code": "FYM", + "country_id": 65, + "country_code": "EG", + "latitude": "29.47639000", + "longitude": "30.96119000" + }, + { + "id": "31823", + "name": "Iţsā", + "state_id": 3238, + "state_code": "FYM", + "country_id": 65, + "country_code": "EG", + "latitude": "29.23760000", + "longitude": "30.78944000" + }, + { + "id": "31818", + "name": "Ibshawāy", + "state_id": 3238, + "state_code": "FYM", + "country_id": 65, + "country_code": "EG", + "latitude": "29.35896000", + "longitude": "30.68061000" + }, + { + "id": "31777", + "name": "Al Maḩallah al Kubrá", + "state_id": 3234, + "state_code": "GH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.97063000", + "longitude": "31.16690000" + }, + { + "id": "31799", + "name": "Basyūn", + "state_id": 3234, + "state_code": "GH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.93976000", + "longitude": "30.81338000" + }, + { + "id": "31828", + "name": "Kafr az Zayyāt", + "state_id": 3234, + "state_code": "GH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.82480000", + "longitude": "30.81805000" + }, + { + "id": "31855", + "name": "Quţūr", + "state_id": 3234, + "state_code": "GH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.97225000", + "longitude": "30.95614000" + }, + { + "id": "31860", + "name": "Samannūd", + "state_id": 3234, + "state_code": "GH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.96160000", + "longitude": "31.24069000" + }, + { + "id": "31872", + "name": "Tanda", + "state_id": 3234, + "state_code": "GH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.78847000", + "longitude": "31.00192000" + }, + { + "id": "31874", + "name": "Zefta", + "state_id": 3234, + "state_code": "GH", + "country_id": 65, + "country_code": "EG", + "latitude": "30.71420000", + "longitude": "31.24425000" + }, + { + "id": "31795", + "name": "Aş Şaff", + "state_id": 3239, + "state_code": "GZ", + "country_id": 65, + "country_code": "EG", + "latitude": "29.56472000", + "longitude": "31.28111000" + }, + { + "id": "31783", + "name": "Al Ḩawāmidīyah", + "state_id": 3239, + "state_code": "GZ", + "country_id": 65, + "country_code": "EG", + "latitude": "29.90000000", + "longitude": "31.25000000" + }, + { + "id": "31786", + "name": "Al ‘Ayyāţ", + "state_id": 3239, + "state_code": "GZ", + "country_id": 65, + "country_code": "EG", + "latitude": "29.61972000", + "longitude": "31.25750000" + }, + { + "id": "31766", + "name": "Al Bawīţī", + "state_id": 3239, + "state_code": "GZ", + "country_id": 65, + "country_code": "EG", + "latitude": "28.34919000", + "longitude": "28.86591000" + }, + { + "id": "31793", + "name": "Awsīm", + "state_id": 3239, + "state_code": "GZ", + "country_id": 65, + "country_code": "EG", + "latitude": "30.12303000", + "longitude": "31.13571000" + }, + { + "id": "31816", + "name": "Giza", + "state_id": 3239, + "state_code": "GZ", + "country_id": 65, + "country_code": "EG", + "latitude": "30.00808000", + "longitude": "31.21093000" + }, + { + "id": "31833", + "name": "Madīnat Sittah Uktūbar", + "state_id": 3239, + "state_code": "GZ", + "country_id": 65, + "country_code": "EG", + "latitude": "29.81667000", + "longitude": "31.05000000" + }, + { + "id": "31821", + "name": "Ismailia", + "state_id": 3244, + "state_code": "IS", + "country_id": 65, + "country_code": "EG", + "latitude": "30.60427000", + "longitude": "32.27225000" + }, + { + "id": "31784", + "name": "Al Ḩāmūl", + "state_id": 3222, + "state_code": "KFS", + "country_id": 65, + "country_code": "EG", + "latitude": "31.31146000", + "longitude": "31.14766000" + }, + { + "id": "31810", + "name": "Disūq", + "state_id": 3222, + "state_code": "KFS", + "country_id": 65, + "country_code": "EG", + "latitude": "31.13259000", + "longitude": "30.64784000" + }, + { + "id": "31814", + "name": "Fuwwah", + "state_id": 3222, + "state_code": "KFS", + "country_id": 65, + "country_code": "EG", + "latitude": "31.20365000", + "longitude": "30.54908000" + }, + { + "id": "31827", + "name": "Kafr ash Shaykh", + "state_id": 3222, + "state_code": "KFS", + "country_id": 65, + "country_code": "EG", + "latitude": "31.11174000", + "longitude": "30.93991000" + }, + { + "id": "31837", + "name": "Markaz Disūq", + "state_id": 3222, + "state_code": "KFS", + "country_id": 65, + "country_code": "EG", + "latitude": "31.14590000", + "longitude": "30.71609000" + }, + { + "id": "31845", + "name": "Munshāt ‘Alī Āghā", + "state_id": 3222, + "state_code": "KFS", + "country_id": 65, + "country_code": "EG", + "latitude": "31.15791000", + "longitude": "30.70177000" + }, + { + "id": "31870", + "name": "Sīdī Sālim", + "state_id": 3222, + "state_code": "KFS", + "country_id": 65, + "country_code": "EG", + "latitude": "31.27133000", + "longitude": "30.78617000" + }, + { + "id": "31832", + "name": "Luxor", + "state_id": 3242, + "state_code": "LX", + "country_id": 65, + "country_code": "EG", + "latitude": "25.69893000", + "longitude": "32.64210000" + }, + { + "id": "31840", + "name": "Markaz al Uqşur", + "state_id": 3242, + "state_code": "LX", + "country_id": 65, + "country_code": "EG", + "latitude": "25.62986000", + "longitude": "32.59017000" + }, + { + "id": "31785", + "name": "Al ‘Alamayn", + "state_id": 3231, + "state_code": "MT", + "country_id": 65, + "country_code": "EG", + "latitude": "30.83007000", + "longitude": "28.95502000" + }, + { + "id": "31843", + "name": "Mersa Matruh", + "state_id": 3231, + "state_code": "MT", + "country_id": 65, + "country_code": "EG", + "latitude": "31.35290000", + "longitude": "27.23725000" + }, + { + "id": "31866", + "name": "Siwa Oasis", + "state_id": 3231, + "state_code": "MT", + "country_id": 65, + "country_code": "EG", + "latitude": "29.20320000", + "longitude": "25.51965000" + }, + { + "id": "31757", + "name": "Abū Qurqāş", + "state_id": 3243, + "state_code": "MN", + "country_id": 65, + "country_code": "EG", + "latitude": "27.93120000", + "longitude": "30.83841000" + }, + { + "id": "31778", + "name": "Al Minyā", + "state_id": 3243, + "state_code": "MN", + "country_id": 65, + "country_code": "EG", + "latitude": "28.10988000", + "longitude": "30.75030000" + }, + { + "id": "31797", + "name": "Banī Mazār", + "state_id": 3243, + "state_code": "MN", + "country_id": 65, + "country_code": "EG", + "latitude": "28.50360000", + "longitude": "30.80040000" + }, + { + "id": "31806", + "name": "Dayr Mawās", + "state_id": 3243, + "state_code": "MN", + "country_id": 65, + "country_code": "EG", + "latitude": "27.64176000", + "longitude": "30.84662000" + }, + { + "id": "31842", + "name": "Maţāy", + "state_id": 3243, + "state_code": "MN", + "country_id": 65, + "country_code": "EG", + "latitude": "28.41899000", + "longitude": "30.77924000" + }, + { + "id": "31835", + "name": "Mallawī", + "state_id": 3243, + "state_code": "MN", + "country_id": 65, + "country_code": "EG", + "latitude": "27.73140000", + "longitude": "30.84165000" + }, + { + "id": "31861", + "name": "Samālūţ", + "state_id": 3243, + "state_code": "MN", + "country_id": 65, + "country_code": "EG", + "latitude": "28.31214000", + "longitude": "30.71007000" + }, + { + "id": "31767", + "name": "Al Bājūr", + "state_id": 3228, + "state_code": "MNF", + "country_id": 65, + "country_code": "EG", + "latitude": "30.43046000", + "longitude": "31.03679000" + }, + { + "id": "31789", + "name": "Ash Shuhadā’", + "state_id": 3228, + "state_code": "MNF", + "country_id": 65, + "country_code": "EG", + "latitude": "30.59683000", + "longitude": "30.89931000" + }, + { + "id": "31790", + "name": "Ashmūn", + "state_id": 3228, + "state_code": "MNF", + "country_id": 65, + "country_code": "EG", + "latitude": "30.29735000", + "longitude": "30.97641000" + }, + { + "id": "31846", + "name": "Munūf", + "state_id": 3228, + "state_code": "MNF", + "country_id": 65, + "country_code": "EG", + "latitude": "30.46597000", + "longitude": "30.93199000" + }, + { + "id": "31854", + "name": "Quwaysinā", + "state_id": 3228, + "state_code": "MNF", + "country_id": 65, + "country_code": "EG", + "latitude": "30.56482000", + "longitude": "31.15777000" + }, + { + "id": "31863", + "name": "Shibīn al Kawm", + "state_id": 3228, + "state_code": "MNF", + "country_id": 65, + "country_code": "EG", + "latitude": "30.55258000", + "longitude": "31.00904000" + }, + { + "id": "31871", + "name": "Talā", + "state_id": 3228, + "state_code": "MNF", + "country_id": 65, + "country_code": "EG", + "latitude": "30.67980000", + "longitude": "30.94364000" + }, + { + "id": "31772", + "name": "Al Khārijah", + "state_id": 3246, + "state_code": "WAD", + "country_id": 65, + "country_code": "EG", + "latitude": "25.45141000", + "longitude": "30.54635000" + }, + { + "id": "31852", + "name": "Qaşr al Farāfirah", + "state_id": 3246, + "state_code": "WAD", + "country_id": 65, + "country_code": "EG", + "latitude": "27.05680000", + "longitude": "27.96979000" + }, + { + "id": "31788", + "name": "Arish", + "state_id": 3227, + "state_code": "SIN", + "country_id": 65, + "country_code": "EG", + "latitude": "31.13159000", + "longitude": "33.79844000" + }, + { + "id": "31850", + "name": "Port Said", + "state_id": 3229, + "state_code": "PTS", + "country_id": 65, + "country_code": "EG", + "latitude": "31.25654000", + "longitude": "32.28411000" + }, + { + "id": "31771", + "name": "Al Khānkah", + "state_id": 3232, + "state_code": "KB", + "country_id": 65, + "country_code": "EG", + "latitude": "30.21035000", + "longitude": "31.36812000" + }, + { + "id": "31779", + "name": "Al Qanāţir al Khayrīyah", + "state_id": 3232, + "state_code": "KB", + "country_id": 65, + "country_code": "EG", + "latitude": "30.19327000", + "longitude": "31.13703000" + }, + { + "id": "31796", + "name": "Banhā", + "state_id": 3232, + "state_code": "KB", + "country_id": 65, + "country_code": "EG", + "latitude": "30.45977000", + "longitude": "31.18420000" + }, + { + "id": "31851", + "name": "Qalyūb", + "state_id": 3232, + "state_code": "KB", + "country_id": 65, + "country_code": "EG", + "latitude": "30.17922000", + "longitude": "31.20560000" + }, + { + "id": "31864", + "name": "Shibīn al Qanāṭir", + "state_id": 3232, + "state_code": "KB", + "country_id": 65, + "country_code": "EG", + "latitude": "30.31269000", + "longitude": "31.32018000" + }, + { + "id": "31873", + "name": "Toukh", + "state_id": 3232, + "state_code": "KB", + "country_id": 65, + "country_code": "EG", + "latitude": "30.35487000", + "longitude": "31.20105000" + }, + { + "id": "31809", + "name": "Dishnā", + "state_id": 3247, + "state_code": "KN", + "country_id": 65, + "country_code": "EG", + "latitude": "26.12467000", + "longitude": "32.47598000" + }, + { + "id": "31813", + "name": "Farshūţ", + "state_id": 3247, + "state_code": "KN", + "country_id": 65, + "country_code": "EG", + "latitude": "26.05494000", + "longitude": "32.16329000" + }, + { + "id": "31822", + "name": "Isnā", + "state_id": 3247, + "state_code": "KN", + "country_id": 65, + "country_code": "EG", + "latitude": "25.29336000", + "longitude": "32.55402000" + }, + { + "id": "31831", + "name": "Kousa", + "state_id": 3247, + "state_code": "KN", + "country_id": 65, + "country_code": "EG", + "latitude": "25.91407000", + "longitude": "32.76362000" + }, + { + "id": "31847", + "name": "Naja' Ḥammādī", + "state_id": 3247, + "state_code": "KN", + "country_id": 65, + "country_code": "EG", + "latitude": "26.04949000", + "longitude": "32.24142000" + }, + { + "id": "31853", + "name": "Qinā", + "state_id": 3247, + "state_code": "KN", + "country_id": 65, + "country_code": "EG", + "latitude": "26.16418000", + "longitude": "32.72671000" + }, + { + "id": "31780", + "name": "Al Quşayr", + "state_id": 3240, + "state_code": "BA", + "country_id": 65, + "country_code": "EG", + "latitude": "26.10426000", + "longitude": "34.27793000" + }, + { + "id": "31811", + "name": "El Gouna", + "state_id": 3240, + "state_code": "BA", + "country_id": 65, + "country_code": "EG", + "latitude": "27.39417000", + "longitude": "33.67825000" + }, + { + "id": "31817", + "name": "Hurghada", + "state_id": 3240, + "state_code": "BA", + "country_id": 65, + "country_code": "EG", + "latitude": "27.25738000", + "longitude": "33.81291000" + }, + { + "id": "31834", + "name": "Makadi Bay", + "state_id": 3240, + "state_code": "BA", + "country_id": 65, + "country_code": "EG", + "latitude": "26.99123000", + "longitude": "33.89952000" + }, + { + "id": "31841", + "name": "Marsa Alam", + "state_id": 3240, + "state_code": "BA", + "country_id": 65, + "country_code": "EG", + "latitude": "25.06305000", + "longitude": "34.89005000" + }, + { + "id": "31856", + "name": "Ras Gharib", + "state_id": 3240, + "state_code": "BA", + "country_id": 65, + "country_code": "EG", + "latitude": "28.35831000", + "longitude": "33.07829000" + }, + { + "id": "31858", + "name": "Safaga", + "state_id": 3240, + "state_code": "BA", + "country_id": 65, + "country_code": "EG", + "latitude": "26.74906000", + "longitude": "33.93891000" + }, + { + "id": "31763", + "name": "Akhmīm", + "state_id": 3226, + "state_code": "SHG", + "country_id": 65, + "country_code": "EG", + "latitude": "26.56217000", + "longitude": "31.74503000" + }, + { + "id": "31765", + "name": "Al Balyanā", + "state_id": 3226, + "state_code": "SHG", + "country_id": 65, + "country_code": "EG", + "latitude": "26.23568000", + "longitude": "32.00347000" + }, + { + "id": "31773", + "name": "Al Manshāh", + "state_id": 3226, + "state_code": "SHG", + "country_id": 65, + "country_code": "EG", + "latitude": "26.47686000", + "longitude": "31.80350000" + }, + { + "id": "31875", + "name": "Ţahţā", + "state_id": 3226, + "state_code": "SHG", + "country_id": 65, + "country_code": "EG", + "latitude": "26.76930000", + "longitude": "31.50214000" + }, + { + "id": "31824", + "name": "Jirjā", + "state_id": 3226, + "state_code": "SHG", + "country_id": 65, + "country_code": "EG", + "latitude": "26.33826000", + "longitude": "31.89161000" + }, + { + "id": "31825", + "name": "Juhaynah", + "state_id": 3226, + "state_code": "SHG", + "country_id": 65, + "country_code": "EG", + "latitude": "26.67319000", + "longitude": "31.49760000" + }, + { + "id": "31838", + "name": "Markaz Jirjā", + "state_id": 3226, + "state_code": "SHG", + "country_id": 65, + "country_code": "EG", + "latitude": "26.30683000", + "longitude": "31.84574000" + }, + { + "id": "31839", + "name": "Markaz Sūhāj", + "state_id": 3226, + "state_code": "SHG", + "country_id": 65, + "country_code": "EG", + "latitude": "26.53948000", + "longitude": "31.67524000" + }, + { + "id": "31867", + "name": "Sohag", + "state_id": 3226, + "state_code": "SHG", + "country_id": 65, + "country_code": "EG", + "latitude": "26.55695000", + "longitude": "31.69478000" + }, + { + "id": "31803", + "name": "Dahab", + "state_id": 3237, + "state_code": "JS", + "country_id": 65, + "country_code": "EG", + "latitude": "28.48208000", + "longitude": "34.49505000" + }, + { + "id": "31812", + "name": "El-Tor", + "state_id": 3237, + "state_code": "JS", + "country_id": 65, + "country_code": "EG", + "latitude": "28.24168000", + "longitude": "33.62220000" + }, + { + "id": "31849", + "name": "Nuwaybi‘a", + "state_id": 3237, + "state_code": "JS", + "country_id": 65, + "country_code": "EG", + "latitude": "29.04681000", + "longitude": "34.66340000" + }, + { + "id": "31859", + "name": "Saint Catherine", + "state_id": 3237, + "state_code": "JS", + "country_id": 65, + "country_code": "EG", + "latitude": "28.56191000", + "longitude": "33.94934000" + }, + { + "id": "31862", + "name": "Sharm el-Sheikh", + "state_id": 3237, + "state_code": "JS", + "country_id": 65, + "country_code": "EG", + "latitude": "27.91582000", + "longitude": "34.32995000" + }, + { + "id": "31761", + "name": "Ain Sukhna", + "state_id": 3233, + "state_code": "SUZ", + "country_id": 65, + "country_code": "EG", + "latitude": "29.60018000", + "longitude": "32.31671000" + }, + { + "id": "31868", + "name": "Suez", + "state_id": 3233, + "state_code": "SUZ", + "country_id": 65, + "country_code": "EG", + "latitude": "29.97371000", + "longitude": "32.52627000" + }, + { + "id": "104842", + "name": "Ahuachapán", + "state_id": 4139, + "state_code": "AH", + "country_id": 66, + "country_code": "SV", + "latitude": "13.92139000", + "longitude": "-89.84500000" + }, + { + "id": "104848", + "name": "Atiquizaya", + "state_id": 4139, + "state_code": "AH", + "country_id": 66, + "country_code": "SV", + "latitude": "13.97694000", + "longitude": "-89.75250000" + }, + { + "id": "104863", + "name": "Concepción de Ataco", + "state_id": 4139, + "state_code": "AH", + "country_id": 66, + "country_code": "SV", + "latitude": "13.87028000", + "longitude": "-89.84861000" + }, + { + "id": "104873", + "name": "Guaymango", + "state_id": 4139, + "state_code": "AH", + "country_id": 66, + "country_code": "SV", + "latitude": "13.75028000", + "longitude": "-89.84222000" + }, + { + "id": "104883", + "name": "Jujutla", + "state_id": 4139, + "state_code": "AH", + "country_id": 66, + "country_code": "SV", + "latitude": "13.78694000", + "longitude": "-89.85722000" + }, + { + "id": "104906", + "name": "San Francisco Menéndez", + "state_id": 4139, + "state_code": "AH", + "country_id": 66, + "country_code": "SV", + "latitude": "13.84306000", + "longitude": "-90.01583000" + }, + { + "id": "104931", + "name": "Tacuba", + "state_id": 4139, + "state_code": "AH", + "country_id": 66, + "country_code": "SV", + "latitude": "13.90111000", + "longitude": "-89.92972000" + }, + { + "id": "104924", + "name": "Sensuntepeque", + "state_id": 4132, + "state_code": "CA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.86667000", + "longitude": "-88.63333000" + }, + { + "id": "104937", + "name": "Victoria", + "state_id": 4132, + "state_code": "CA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.95000000", + "longitude": "-88.63333000" + }, + { + "id": "104853", + "name": "Chalatenango", + "state_id": 4131, + "state_code": "CH", + "country_id": 66, + "country_code": "SV", + "latitude": "14.03333000", + "longitude": "-88.93333000" + }, + { + "id": "104891", + "name": "Nueva Concepción", + "state_id": 4131, + "state_code": "CH", + "country_id": 66, + "country_code": "SV", + "latitude": "14.13333000", + "longitude": "-89.30000000" + }, + { + "id": "104861", + "name": "Cojutepeque", + "state_id": 4137, + "state_code": "CU", + "country_id": 66, + "country_code": "SV", + "latitude": "13.71667000", + "longitude": "-88.93333000" + }, + { + "id": "104909", + "name": "San Martín", + "state_id": 4137, + "state_code": "CU", + "country_id": 66, + "country_code": "SV", + "latitude": "13.78333000", + "longitude": "-88.91667000" + }, + { + "id": "104930", + "name": "Suchitoto", + "state_id": 4137, + "state_code": "CU", + "country_id": 66, + "country_code": "SV", + "latitude": "13.93806000", + "longitude": "-89.02778000" + }, + { + "id": "104932", + "name": "Tecoluca", + "state_id": 4137, + "state_code": "CU", + "country_id": 66, + "country_code": "SV", + "latitude": "13.78917000", + "longitude": "-89.00528000" + }, + { + "id": "104933", + "name": "Tenancingo", + "state_id": 4137, + "state_code": "CU", + "country_id": 66, + "country_code": "SV", + "latitude": "13.83333000", + "longitude": "-88.98333000" + }, + { + "id": "104844", + "name": "Antiguo Cuscatlán", + "state_id": 4134, + "state_code": "LI", + "country_id": 66, + "country_code": "SV", + "latitude": "13.66492000", + "longitude": "-89.25319000" + }, + { + "id": "104858", + "name": "Ciudad Arce", + "state_id": 4134, + "state_code": "LI", + "country_id": 66, + "country_code": "SV", + "latitude": "13.84028000", + "longitude": "-89.44722000" + }, + { + "id": "104884", + "name": "La Libertad", + "state_id": 4134, + "state_code": "LI", + "country_id": 66, + "country_code": "SV", + "latitude": "13.48833000", + "longitude": "-89.32222000" + }, + { + "id": "104894", + "name": "Nuevo Cuscatlán", + "state_id": 4134, + "state_code": "LI", + "country_id": 66, + "country_code": "SV", + "latitude": "13.64861000", + "longitude": "-89.26528000" + }, + { + "id": "104900", + "name": "Quezaltepeque", + "state_id": 4134, + "state_code": "LI", + "country_id": 66, + "country_code": "SV", + "latitude": "13.83124000", + "longitude": "-89.27221000" + }, + { + "id": "104907", + "name": "San Juan Opico", + "state_id": 4134, + "state_code": "LI", + "country_id": 66, + "country_code": "SV", + "latitude": "13.87611000", + "longitude": "-89.35972000" + }, + { + "id": "104911", + "name": "San Pablo Tacachico", + "state_id": 4134, + "state_code": "LI", + "country_id": 66, + "country_code": "SV", + "latitude": "13.97556000", + "longitude": "-89.34000000" + }, + { + "id": "104920", + "name": "Santa Tecla", + "state_id": 4134, + "state_code": "LI", + "country_id": 66, + "country_code": "SV", + "latitude": "13.67694000", + "longitude": "-89.27972000" + }, + { + "id": "104939", + "name": "Zaragoza", + "state_id": 4134, + "state_code": "LI", + "country_id": 66, + "country_code": "SV", + "latitude": "13.58944000", + "longitude": "-89.28889000" + }, + { + "id": "104870", + "name": "El Rosario", + "state_id": 4136, + "state_code": "PA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.49778000", + "longitude": "-89.02972000" + }, + { + "id": "104895", + "name": "Olocuilta", + "state_id": 4136, + "state_code": "PA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.56972000", + "longitude": "-89.11722000" + }, + { + "id": "104912", + "name": "San Pedro Masahuat", + "state_id": 4136, + "state_code": "PA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.54361000", + "longitude": "-89.03861000" + }, + { + "id": "104921", + "name": "Santiago Nonualco", + "state_id": 4136, + "state_code": "PA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.51667000", + "longitude": "-88.95000000" + }, + { + "id": "104938", + "name": "Zacatecoluca", + "state_id": 4136, + "state_code": "PA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.50000000", + "longitude": "-88.86667000" + }, + { + "id": "104843", + "name": "Anamorós", + "state_id": 4138, + "state_code": "UN", + "country_id": 66, + "country_code": "SV", + "latitude": "13.74056000", + "longitude": "-87.87361000" + }, + { + "id": "104864", + "name": "Conchagua", + "state_id": 4138, + "state_code": "UN", + "country_id": 66, + "country_code": "SV", + "latitude": "13.30778000", + "longitude": "-87.86472000" + }, + { + "id": "104876", + "name": "Intipucá", + "state_id": 4138, + "state_code": "UN", + "country_id": 66, + "country_code": "SV", + "latitude": "13.19694000", + "longitude": "-88.05444000" + }, + { + "id": "104885", + "name": "La Unión", + "state_id": 4138, + "state_code": "UN", + "country_id": 66, + "country_code": "SV", + "latitude": "13.33694000", + "longitude": "-87.84389000" + }, + { + "id": "104892", + "name": "Nueva Esparta", + "state_id": 4138, + "state_code": "UN", + "country_id": 66, + "country_code": "SV", + "latitude": "13.78361000", + "longitude": "-87.83861000" + }, + { + "id": "104898", + "name": "Pasaquina", + "state_id": 4138, + "state_code": "UN", + "country_id": 66, + "country_code": "SV", + "latitude": "13.58444000", + "longitude": "-87.84111000" + }, + { + "id": "104903", + "name": "San Alejo", + "state_id": 4138, + "state_code": "UN", + "country_id": 66, + "country_code": "SV", + "latitude": "13.43139000", + "longitude": "-87.96306000" + }, + { + "id": "104919", + "name": "Santa Rosa de Lima", + "state_id": 4138, + "state_code": "UN", + "country_id": 66, + "country_code": "SV", + "latitude": "13.62472000", + "longitude": "-87.89361000" + }, + { + "id": "104851", + "name": "Cacaopera", + "state_id": 4130, + "state_code": "MO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.76667000", + "longitude": "-88.08333000" + }, + { + "id": "104865", + "name": "Corinto", + "state_id": 4130, + "state_code": "MO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.81083000", + "longitude": "-87.97139000" + }, + { + "id": "104872", + "name": "Guatajiagua", + "state_id": 4130, + "state_code": "MO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.66667000", + "longitude": "-88.20000000" + }, + { + "id": "104879", + "name": "Jocoro", + "state_id": 4130, + "state_code": "MO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.61667000", + "longitude": "-88.01667000" + }, + { + "id": "104905", + "name": "San Francisco", + "state_id": 4130, + "state_code": "MO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.70000000", + "longitude": "-88.10000000" + }, + { + "id": "104926", + "name": "Sociedad", + "state_id": 4130, + "state_code": "MO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.70000000", + "longitude": "-88.01667000" + }, + { + "id": "104855", + "name": "Chapeltique", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.63333000", + "longitude": "-88.26667000" + }, + { + "id": "104856", + "name": "Chinameca", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.50000000", + "longitude": "-88.35000000" + }, + { + "id": "104857", + "name": "Chirilagua", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.22028000", + "longitude": "-88.13861000" + }, + { + "id": "104859", + "name": "Ciudad Barrios", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.76667000", + "longitude": "-88.26667000" + }, + { + "id": "104871", + "name": "El Tránsito", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.35000000", + "longitude": "-88.35000000" + }, + { + "id": "104886", + "name": "Lolotique", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.55000000", + "longitude": "-88.35000000" + }, + { + "id": "104889", + "name": "Moncagua", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.53333000", + "longitude": "-88.25000000" + }, + { + "id": "104893", + "name": "Nueva Guadalupe", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.53333000", + "longitude": "-88.35000000" + }, + { + "id": "104910", + "name": "San Miguel", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.48333000", + "longitude": "-88.18333000" + }, + { + "id": "104913", + "name": "San Rafael Oriente", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.38333000", + "longitude": "-88.35000000" + }, + { + "id": "104925", + "name": "Sesori", + "state_id": 4135, + "state_code": "SM", + "country_id": 66, + "country_code": "SV", + "latitude": "13.71667000", + "longitude": "-88.36667000" + }, + { + "id": "104841", + "name": "Aguilares", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.95722000", + "longitude": "-89.18972000" + }, + { + "id": "104846", + "name": "Apopa", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.80722000", + "longitude": "-89.17917000" + }, + { + "id": "104849", + "name": "Ayutuxtepeque", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.74556000", + "longitude": "-89.20639000" + }, + { + "id": "104866", + "name": "Cuscatancingo", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.73611000", + "longitude": "-89.18139000" + }, + { + "id": "104867", + "name": "Delgado", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.72417000", + "longitude": "-89.17028000" + }, + { + "id": "104869", + "name": "El Paisnal", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.97361000", + "longitude": "-89.21861000" + }, + { + "id": "104874", + "name": "Guazapa", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.87694000", + "longitude": "-89.17306000" + }, + { + "id": "104875", + "name": "Ilopango", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.70167000", + "longitude": "-89.10944000" + }, + { + "id": "104887", + "name": "Mejicanos", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.74028000", + "longitude": "-89.21306000" + }, + { + "id": "104897", + "name": "Panchimalco", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.61278000", + "longitude": "-89.18000000" + }, + { + "id": "104901", + "name": "Rosario de Mora", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.57528000", + "longitude": "-89.20889000" + }, + { + "id": "104908", + "name": "San Marcos", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.65889000", + "longitude": "-89.18306000" + }, + { + "id": "104914", + "name": "San Salvador", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.68935000", + "longitude": "-89.18718000" + }, + { + "id": "104923", + "name": "Santo Tomás", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.64083000", + "longitude": "-89.13333000" + }, + { + "id": "104929", + "name": "Soyapango", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.71024000", + "longitude": "-89.13989000" + }, + { + "id": "104935", + "name": "Tonacatepeque", + "state_id": 4133, + "state_code": "SS", + "country_id": 66, + "country_code": "SV", + "latitude": "13.78111000", + "longitude": "-89.11861000" + }, + { + "id": "104845", + "name": "Apastepeque", + "state_id": 4127, + "state_code": "SV", + "country_id": 66, + "country_code": "SV", + "latitude": "13.66667000", + "longitude": "-88.78333000" + }, + { + "id": "104915", + "name": "San Sebastián", + "state_id": 4127, + "state_code": "SV", + "country_id": 66, + "country_code": "SV", + "latitude": "13.73333000", + "longitude": "-88.83333000" + }, + { + "id": "104916", + "name": "San Vicente", + "state_id": 4127, + "state_code": "SV", + "country_id": 66, + "country_code": "SV", + "latitude": "13.63333000", + "longitude": "-88.80000000" + }, + { + "id": "104852", + "name": "Candelaria de La Frontera", + "state_id": 4128, + "state_code": "SA", + "country_id": 66, + "country_code": "SV", + "latitude": "14.11667000", + "longitude": "-89.65000000" + }, + { + "id": "104854", + "name": "Chalchuapa", + "state_id": 4128, + "state_code": "SA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.98667000", + "longitude": "-89.68111000" + }, + { + "id": "104860", + "name": "Coatepeque", + "state_id": 4128, + "state_code": "SA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.92861000", + "longitude": "-89.50417000" + }, + { + "id": "104868", + "name": "El Congo", + "state_id": 4128, + "state_code": "SA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.90889000", + "longitude": "-89.49583000" + }, + { + "id": "104888", + "name": "Metapán", + "state_id": 4128, + "state_code": "SA", + "country_id": 66, + "country_code": "SV", + "latitude": "14.33333000", + "longitude": "-89.45000000" + }, + { + "id": "104917", + "name": "Santa Ana", + "state_id": 4128, + "state_code": "SA", + "country_id": 66, + "country_code": "SV", + "latitude": "13.99417000", + "longitude": "-89.55972000" + }, + { + "id": "104934", + "name": "Texistepeque", + "state_id": 4128, + "state_code": "SA", + "country_id": 66, + "country_code": "SV", + "latitude": "14.13333000", + "longitude": "-89.50000000" + }, + { + "id": "104840", + "name": "Acajutla", + "state_id": 4140, + "state_code": "SO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.59278000", + "longitude": "-89.82750000" + }, + { + "id": "104847", + "name": "Armenia", + "state_id": 4140, + "state_code": "SO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.74361000", + "longitude": "-89.49889000" + }, + { + "id": "104877", + "name": "Izalco", + "state_id": 4140, + "state_code": "SO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.74472000", + "longitude": "-89.67306000" + }, + { + "id": "104880", + "name": "Juayúa", + "state_id": 4140, + "state_code": "SO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.84139000", + "longitude": "-89.74556000" + }, + { + "id": "104890", + "name": "Nahuizalco", + "state_id": 4140, + "state_code": "SO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.77750000", + "longitude": "-89.73667000" + }, + { + "id": "104904", + "name": "San Antonio del Monte", + "state_id": 4140, + "state_code": "SO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.71639000", + "longitude": "-89.73833000" + }, + { + "id": "104927", + "name": "Sonsonate", + "state_id": 4140, + "state_code": "SO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.71889000", + "longitude": "-89.72417000" + }, + { + "id": "104928", + "name": "Sonzacate", + "state_id": 4140, + "state_code": "SO", + "country_id": 66, + "country_code": "SV", + "latitude": "13.73417000", + "longitude": "-89.71472000" + }, + { + "id": "104850", + "name": "Berlín", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.50000000", + "longitude": "-88.53333000" + }, + { + "id": "104862", + "name": "Concepción Batres", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.35000000", + "longitude": "-88.36667000" + }, + { + "id": "104878", + "name": "Jiquilisco", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.31667000", + "longitude": "-88.58333000" + }, + { + "id": "104881", + "name": "Jucuapa", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.51667000", + "longitude": "-88.38333000" + }, + { + "id": "104882", + "name": "Jucuarán", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.25389000", + "longitude": "-88.24778000" + }, + { + "id": "104896", + "name": "Ozatlán", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.38333000", + "longitude": "-88.50000000" + }, + { + "id": "104899", + "name": "Puerto El Triunfo", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.28333000", + "longitude": "-88.55000000" + }, + { + "id": "104902", + "name": "San Agustín", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.43333000", + "longitude": "-88.60000000" + }, + { + "id": "104918", + "name": "Santa Elena", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.38333000", + "longitude": "-88.41667000" + }, + { + "id": "104922", + "name": "Santiago de María", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.48333000", + "longitude": "-88.46667000" + }, + { + "id": "104936", + "name": "Usulután", + "state_id": 4129, + "state_code": "US", + "country_id": 66, + "country_code": "SV", + "latitude": "13.35000000", + "longitude": "-88.45000000" + }, + { + "id": "52397", + "name": "San Antonio de Palé", + "state_id": 3444, + "state_code": "AN", + "country_id": 67, + "country_code": "GQ", + "latitude": "-1.40680000", + "longitude": "5.63178000" + }, + { + "id": "52387", + "name": "Malabo", + "state_id": 3446, + "state_code": "BN", + "country_id": 67, + "country_code": "GQ", + "latitude": "3.75578000", + "longitude": "8.78166000" + }, + { + "id": "52395", + "name": "Rebola", + "state_id": 3446, + "state_code": "BN", + "country_id": 67, + "country_code": "GQ", + "latitude": "3.71667000", + "longitude": "8.83333000" + }, + { + "id": "52398", + "name": "Santiago de Baney", + "state_id": 3446, + "state_code": "BN", + "country_id": 67, + "country_code": "GQ", + "latitude": "3.69920000", + "longitude": "8.90840000" + }, + { + "id": "52385", + "name": "Luba", + "state_id": 3443, + "state_code": "BS", + "country_id": 67, + "country_code": "GQ", + "latitude": "3.45683000", + "longitude": "8.55465000" + }, + { + "id": "52376", + "name": "Acurenam", + "state_id": 3445, + "state_code": "CS", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.03225000", + "longitude": "10.64882000" + }, + { + "id": "52380", + "name": "Bicurga", + "state_id": 3445, + "state_code": "CS", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.58113000", + "longitude": "10.46716000" + }, + { + "id": "52384", + "name": "Evinayong", + "state_id": 3445, + "state_code": "CS", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.43677000", + "longitude": "10.55124000" + }, + { + "id": "52383", + "name": "Ebebiyin", + "state_id": 3439, + "state_code": "KN", + "country_id": 67, + "country_code": "GQ", + "latitude": "2.15106000", + "longitude": "11.33528000" + }, + { + "id": "52390", + "name": "Mikomeseng", + "state_id": 3439, + "state_code": "KN", + "country_id": 67, + "country_code": "GQ", + "latitude": "2.13609000", + "longitude": "10.61322000" + }, + { + "id": "52392", + "name": "Ncue", + "state_id": 3439, + "state_code": "KN", + "country_id": 67, + "country_code": "GQ", + "latitude": "2.01643000", + "longitude": "10.47066000" + }, + { + "id": "52393", + "name": "Nsang", + "state_id": 3439, + "state_code": "KN", + "country_id": 67, + "country_code": "GQ", + "latitude": "2.02475000", + "longitude": "10.94599000" + }, + { + "id": "52379", + "name": "Bata", + "state_id": 3441, + "state_code": "LI", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.86391000", + "longitude": "9.76582000" + }, + { + "id": "52381", + "name": "Bitica", + "state_id": 3441, + "state_code": "LI", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.42610000", + "longitude": "9.62316000" + }, + { + "id": "52382", + "name": "Cogo", + "state_id": 3441, + "state_code": "LI", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.08425000", + "longitude": "9.69300000" + }, + { + "id": "52386", + "name": "Machinda", + "state_id": 3441, + "state_code": "LI", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.88262000", + "longitude": "9.95133000" + }, + { + "id": "52388", + "name": "Mbini", + "state_id": 3441, + "state_code": "LI", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.58267000", + "longitude": "9.61478000" + }, + { + "id": "52396", + "name": "Río Campo", + "state_id": 3441, + "state_code": "LI", + "country_id": 67, + "country_code": "GQ", + "latitude": "2.33812000", + "longitude": "9.82212000" + }, + { + "id": "52378", + "name": "Añisoc", + "state_id": 3440, + "state_code": "WN", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.86580000", + "longitude": "10.76892000" + }, + { + "id": "52375", + "name": "Aconibe", + "state_id": 3440, + "state_code": "WN", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.29683000", + "longitude": "10.93691000" + }, + { + "id": "52377", + "name": "Ayene", + "state_id": 3440, + "state_code": "WN", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.85592000", + "longitude": "10.68994000" + }, + { + "id": "52389", + "name": "Mengomeyén", + "state_id": 3440, + "state_code": "WN", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.69439000", + "longitude": "11.03422000" + }, + { + "id": "52391", + "name": "Mongomo", + "state_id": 3440, + "state_code": "WN", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.62742000", + "longitude": "11.31346000" + }, + { + "id": "52394", + "name": "Nsok", + "state_id": 3440, + "state_code": "WN", + "country_id": 67, + "country_code": "GQ", + "latitude": "1.12985000", + "longitude": "11.26603000" + }, + { + "id": "31888", + "name": "Keren", + "state_id": 3425, + "state_code": "AN", + "country_id": 68, + "country_code": "ER", + "latitude": "15.77792000", + "longitude": "38.45107000" + }, + { + "id": "31881", + "name": "Adi Keyh", + "state_id": 3427, + "state_code": "DU", + "country_id": 68, + "country_code": "ER", + "latitude": "14.84444000", + "longitude": "39.37722000" + }, + { + "id": "31886", + "name": "Dek’emhāre", + "state_id": 3427, + "state_code": "DU", + "country_id": 68, + "country_code": "ER", + "latitude": "15.07000000", + "longitude": "39.04750000" + }, + { + "id": "31890", + "name": "Mendefera", + "state_id": 3427, + "state_code": "DU", + "country_id": 68, + "country_code": "ER", + "latitude": "14.88722000", + "longitude": "38.81528000" + }, + { + "id": "31882", + "name": "Ak’ordat", + "state_id": 3428, + "state_code": "GB", + "country_id": 68, + "country_code": "ER", + "latitude": "15.54798000", + "longitude": "37.88291000" + }, + { + "id": "31885", + "name": "Barentu", + "state_id": 3428, + "state_code": "GB", + "country_id": 68, + "country_code": "ER", + "latitude": "15.10582000", + "longitude": "37.59067000" + }, + { + "id": "31891", + "name": "Teseney", + "state_id": 3428, + "state_code": "GB", + "country_id": 68, + "country_code": "ER", + "latitude": "15.11000000", + "longitude": "36.65750000" + }, + { + "id": "31883", + "name": "Asmara", + "state_id": 3426, + "state_code": "MA", + "country_id": 68, + "country_code": "ER", + "latitude": "15.33805000", + "longitude": "38.93184000" + }, + { + "id": "31889", + "name": "Massawa", + "state_id": 3424, + "state_code": "SK", + "country_id": 68, + "country_code": "ER", + "latitude": "15.60811000", + "longitude": "39.47455000" + }, + { + "id": "31884", + "name": "Assab", + "state_id": 3429, + "state_code": "DK", + "country_id": 68, + "country_code": "ER", + "latitude": "13.00917000", + "longitude": "42.73944000" + }, + { + "id": "31887", + "name": "Edd", + "state_id": 3429, + "state_code": "DK", + "country_id": 68, + "country_code": "ER", + "latitude": "13.93088000", + "longitude": "41.69380000" + }, + { + "id": "31595", + "name": "Anija vald", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.27644000", + "longitude": "25.48168000" + }, + { + "id": "31598", + "name": "Aruküla", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.36686000", + "longitude": "25.07618000" + }, + { + "id": "31602", + "name": "Haabneeme", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.51358000", + "longitude": "24.82225000" + }, + { + "id": "31607", + "name": "Harku", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.38641000", + "longitude": "24.57176000" + }, + { + "id": "31608", + "name": "Harku vald", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.39157000", + "longitude": "24.46206000" + }, + { + "id": "31618", + "name": "Jüri", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.35417000", + "longitude": "24.89417000" + }, + { + "id": "31613", + "name": "Jõelähtme vald", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.43996000", + "longitude": "25.13535000" + }, + { + "id": "31626", + "name": "Kehra", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.33611000", + "longitude": "25.32111000" + }, + { + "id": "31629", + "name": "Keila", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.30361000", + "longitude": "24.41306000" + }, + { + "id": "31631", + "name": "Kiili", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.30775000", + "longitude": "24.83776000" + }, + { + "id": "31632", + "name": "Kiili vald", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.29672000", + "longitude": "24.85292000" + }, + { + "id": "31640", + "name": "Kose", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.46001000", + "longitude": "24.87824000" + }, + { + "id": "31644", + "name": "Kuusalu", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.44389000", + "longitude": "25.44139000" + }, + { + "id": "31647", + "name": "Laagri", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.35083000", + "longitude": "24.61418000" + }, + { + "id": "31651", + "name": "Loksa", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.57639000", + "longitude": "25.72139000" + }, + { + "id": "31652", + "name": "Loksa linn", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.57844000", + "longitude": "25.71667000" + }, + { + "id": "31653", + "name": "Loo", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.43123000", + "longitude": "24.94949000" + }, + { + "id": "31658", + "name": "Maardu", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.46529000", + "longitude": "24.98215000" + }, + { + "id": "31659", + "name": "Maardu linn", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.46385000", + "longitude": "24.97350000" + }, + { + "id": "31676", + "name": "Paldiski", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.35667000", + "longitude": "24.05306000" + }, + { + "id": "31678", + "name": "Pringi", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.53459000", + "longitude": "24.79726000" + }, + { + "id": "31688", + "name": "Raasiku", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.36639000", + "longitude": "25.18306000" + }, + { + "id": "31689", + "name": "Rae vald", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.33202000", + "longitude": "24.93932000" + }, + { + "id": "31695", + "name": "Riisipere", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.11417000", + "longitude": "24.31056000" + }, + { + "id": "31698", + "name": "Rummu", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.53528000", + "longitude": "24.79972000" + }, + { + "id": "31704", + "name": "Saku", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.30354000", + "longitude": "24.66382000" + }, + { + "id": "31705", + "name": "Saku vald", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.28069000", + "longitude": "24.71649000" + }, + { + "id": "31706", + "name": "Saue", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.32258000", + "longitude": "24.54967000" + }, + { + "id": "31707", + "name": "Saue vald", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.29255000", + "longitude": "24.52503000" + }, + { + "id": "31714", + "name": "Tabasalu", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.42607000", + "longitude": "24.55330000" + }, + { + "id": "31716", + "name": "Tallinn", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.43696000", + "longitude": "24.75353000" + }, + { + "id": "31727", + "name": "Turba", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.08306000", + "longitude": "24.22500000" + }, + { + "id": "31734", + "name": "Vaida", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.28546000", + "longitude": "24.97897000" + }, + { + "id": "31737", + "name": "Viimsi", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.50502000", + "longitude": "24.84807000" + }, + { + "id": "31738", + "name": "Viimsi vald", + "state_id": 3567, + "state_code": "37", + "country_id": 69, + "country_code": "EE", + "latitude": "59.50204000", + "longitude": "24.84833000" + }, + { + "id": "31645", + "name": "Kärdla", + "state_id": 3555, + "state_code": "39", + "country_id": 69, + "country_code": "EE", + "latitude": "58.99778000", + "longitude": "22.74917000" + }, + { + "id": "31610", + "name": "Iisaku", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.10139000", + "longitude": "27.30806000" + }, + { + "id": "31616", + "name": "Jõhvi", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.35917000", + "longitude": "27.42111000" + }, + { + "id": "31617", + "name": "Jõhvi vald", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.35653000", + "longitude": "27.39304000" + }, + { + "id": "31634", + "name": "Kiviõli", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.35306000", + "longitude": "26.97111000" + }, + { + "id": "31638", + "name": "Kohtla-Järve", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.39861000", + "longitude": "27.27306000" + }, + { + "id": "31639", + "name": "Kohtla-Nõmme", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.35167000", + "longitude": "27.17500000" + }, + { + "id": "31657", + "name": "Lüganuse vald", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.39262000", + "longitude": "27.07641000" + }, + { + "id": "31665", + "name": "Narva", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.37722000", + "longitude": "28.19028000" + }, + { + "id": "31666", + "name": "Narva-Jõesuu", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.45889000", + "longitude": "28.04083000" + }, + { + "id": "31667", + "name": "Narva-Jõesuu linn", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.44127000", + "longitude": "28.02142000" + }, + { + "id": "31687", + "name": "Püssi", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.36000000", + "longitude": "27.04972000" + }, + { + "id": "31709", + "name": "Sillamäe", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.39697000", + "longitude": "27.76331000" + }, + { + "id": "31724", + "name": "Toila", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.42127000", + "longitude": "27.50807000" + }, + { + "id": "31745", + "name": "Voka", + "state_id": 3569, + "state_code": "44", + "country_id": 69, + "country_code": "EE", + "latitude": "59.40776000", + "longitude": "27.58263000" + }, + { + "id": "31611", + "name": "Järva-Jaani", + "state_id": 3566, + "state_code": "51", + "country_id": 69, + "country_code": "EE", + "latitude": "59.03861000", + "longitude": "25.88639000" + }, + { + "id": "31635", + "name": "Koeru", + "state_id": 3566, + "state_code": "51", + "country_id": 69, + "country_code": "EE", + "latitude": "58.96306000", + "longitude": "26.03083000" + }, + { + "id": "31672", + "name": "Paide", + "state_id": 3566, + "state_code": "51", + "country_id": 69, + "country_code": "EE", + "latitude": "58.88556000", + "longitude": "25.55722000" + }, + { + "id": "31673", + "name": "Paide linn", + "state_id": 3566, + "state_code": "51", + "country_id": 69, + "country_code": "EE", + "latitude": "58.88504000", + "longitude": "25.56021000" + }, + { + "id": "31712", + "name": "Särevere", + "state_id": 3566, + "state_code": "51", + "country_id": 69, + "country_code": "EE", + "latitude": "58.79000000", + "longitude": "25.42806000" + }, + { + "id": "31729", + "name": "Türi", + "state_id": 3566, + "state_code": "51", + "country_id": 69, + "country_code": "EE", + "latitude": "58.80861000", + "longitude": "25.43250000" + }, + { + "id": "31730", + "name": "Türi vald", + "state_id": 3566, + "state_code": "51", + "country_id": 69, + "country_code": "EE", + "latitude": "58.74143000", + "longitude": "25.46443000" + }, + { + "id": "31614", + "name": "Jõgeva", + "state_id": 3565, + "state_code": "49", + "country_id": 69, + "country_code": "EE", + "latitude": "58.74667000", + "longitude": "26.39389000" + }, + { + "id": "31615", + "name": "Jõgeva vald", + "state_id": 3565, + "state_code": "49", + "country_id": 69, + "country_code": "EE", + "latitude": "58.78732000", + "longitude": "26.38122000" + }, + { + "id": "31661", + "name": "Mustvee", + "state_id": 3565, + "state_code": "49", + "country_id": 69, + "country_code": "EE", + "latitude": "58.84861000", + "longitude": "26.93972000" + }, + { + "id": "31683", + "name": "Põltsamaa", + "state_id": 3565, + "state_code": "49", + "country_id": 69, + "country_code": "EE", + "latitude": "58.65250000", + "longitude": "25.97056000" + }, + { + "id": "31684", + "name": "Põltsamaa vald", + "state_id": 3565, + "state_code": "49", + "country_id": 69, + "country_code": "EE", + "latitude": "58.64067000", + "longitude": "26.00957000" + }, + { + "id": "31603", + "name": "Haapsalu", + "state_id": 3568, + "state_code": "57", + "country_id": 69, + "country_code": "EE", + "latitude": "58.94306000", + "longitude": "23.54139000" + }, + { + "id": "31604", + "name": "Haapsalu linn", + "state_id": 3568, + "state_code": "57", + "country_id": 69, + "country_code": "EE", + "latitude": "58.93580000", + "longitude": "23.53005000" + }, + { + "id": "31609", + "name": "Hullo", + "state_id": 3568, + "state_code": "57", + "country_id": 69, + "country_code": "EE", + "latitude": "58.99004000", + "longitude": "23.24441000" + }, + { + "id": "31656", + "name": "Lääne-Nigula vald", + "state_id": 3568, + "state_code": "57", + "country_id": 69, + "country_code": "EE", + "latitude": "58.96045000", + "longitude": "23.74489000" + }, + { + "id": "31715", + "name": "Taebla", + "state_id": 3568, + "state_code": "57", + "country_id": 69, + "country_code": "EE", + "latitude": "58.95389000", + "longitude": "23.75222000" + }, + { + "id": "31731", + "name": "Uuemõisa", + "state_id": 3568, + "state_code": "57", + "country_id": 69, + "country_code": "EE", + "latitude": "58.93944000", + "longitude": "23.58944000" + }, + { + "id": "31746", + "name": "Vormsi vald", + "state_id": 3568, + "state_code": "57", + "country_id": 69, + "country_code": "EE", + "latitude": "58.99986000", + "longitude": "23.23408000" + }, + { + "id": "31599", + "name": "Aseri", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.45056000", + "longitude": "26.86750000" + }, + { + "id": "31605", + "name": "Haljala", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.43361000", + "longitude": "26.26139000" + }, + { + "id": "31606", + "name": "Haljala vald", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.45427000", + "longitude": "26.22015000" + }, + { + "id": "31619", + "name": "Kadrina", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.33472000", + "longitude": "26.14500000" + }, + { + "id": "31620", + "name": "Kadrina vald", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.37463000", + "longitude": "26.04150000" + }, + { + "id": "31641", + "name": "Kunda", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.49861000", + "longitude": "26.52611000" + }, + { + "id": "31675", + "name": "Pajusti", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.27444000", + "longitude": "26.42333000" + }, + { + "id": "31690", + "name": "Rakke", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "58.98167000", + "longitude": "26.25444000" + }, + { + "id": "31691", + "name": "Rakvere", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.34639000", + "longitude": "26.35583000" + }, + { + "id": "31692", + "name": "Rakvere vald", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.32457000", + "longitude": "26.29757000" + }, + { + "id": "31713", + "name": "Sõmeru", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.36111000", + "longitude": "26.43750000" + }, + { + "id": "31717", + "name": "Tamsalu", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.15861000", + "longitude": "26.11528000" + }, + { + "id": "31718", + "name": "Tapa", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.26056000", + "longitude": "25.95861000" + }, + { + "id": "31719", + "name": "Tapa vald", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.23821000", + "longitude": "25.84572000" + }, + { + "id": "31733", + "name": "Vaiatu", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.35556000", + "longitude": "25.99528000" + }, + { + "id": "31747", + "name": "Väike-Maarja", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.12639000", + "longitude": "26.25000000" + }, + { + "id": "31748", + "name": "Väike-Maarja vald", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.06556000", + "longitude": "26.31417000" + }, + { + "id": "31742", + "name": "Vinni", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.29583000", + "longitude": "26.43222000" + }, + { + "id": "31743", + "name": "Vinni vald", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.23744000", + "longitude": "26.62261000" + }, + { + "id": "31744", + "name": "Viru-Nigula vald", + "state_id": 3564, + "state_code": "59", + "country_id": 69, + "country_code": "EE", + "latitude": "59.46387000", + "longitude": "26.58585000" + }, + { + "id": "31600", + "name": "Audru", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.40861000", + "longitude": "24.37389000" + }, + { + "id": "31630", + "name": "Kihnu vald", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.13000000", + "longitude": "23.99002000" + }, + { + "id": "31633", + "name": "Kilingi-Nõmme", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.15028000", + "longitude": "24.96417000" + }, + { + "id": "31648", + "name": "Lihula", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.68139000", + "longitude": "23.84528000" + }, + { + "id": "31650", + "name": "Linaküla", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.13722000", + "longitude": "23.97444000" + }, + { + "id": "31674", + "name": "Paikuse", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.37917000", + "longitude": "24.63444000" + }, + { + "id": "31680", + "name": "Pärnu", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.38588000", + "longitude": "24.49711000" + }, + { + "id": "31681", + "name": "Pärnu linn", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.37901000", + "longitude": "24.52784000" + }, + { + "id": "31682", + "name": "Pärnu-Jaagupi", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.61052000", + "longitude": "24.50689000" + }, + { + "id": "31703", + "name": "Saarde vald", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.13802000", + "longitude": "24.95564000" + }, + { + "id": "31708", + "name": "Sauga", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.42720000", + "longitude": "24.49496000" + }, + { + "id": "31710", + "name": "Sindi", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.40056000", + "longitude": "24.66750000" + }, + { + "id": "31725", + "name": "Tootsi", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.57806000", + "longitude": "24.79250000" + }, + { + "id": "31726", + "name": "Tori vald", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.48663000", + "longitude": "24.88961000" + }, + { + "id": "31732", + "name": "Uulu", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.28361000", + "longitude": "24.58722000" + }, + { + "id": "31749", + "name": "Vändra", + "state_id": 3562, + "state_code": "67", + "country_id": 69, + "country_code": "EE", + "latitude": "58.64806000", + "longitude": "25.03611000" + }, + { + "id": "31623", + "name": "Kanepi", + "state_id": 3563, + "state_code": "65", + "country_id": 69, + "country_code": "EE", + "latitude": "57.98306000", + "longitude": "26.75639000" + }, + { + "id": "31624", + "name": "Kanepi vald", + "state_id": 3563, + "state_code": "65", + "country_id": 69, + "country_code": "EE", + "latitude": "57.98058000", + "longitude": "26.76151000" + }, + { + "id": "31685", + "name": "Põlva", + "state_id": 3563, + "state_code": "65", + "country_id": 69, + "country_code": "EE", + "latitude": "58.06028000", + "longitude": "27.06944000" + }, + { + "id": "31686", + "name": "Põlva vald", + "state_id": 3563, + "state_code": "65", + "country_id": 69, + "country_code": "EE", + "latitude": "58.08368000", + "longitude": "26.98242000" + }, + { + "id": "31699", + "name": "Räpina", + "state_id": 3563, + "state_code": "65", + "country_id": 69, + "country_code": "EE", + "latitude": "58.09806000", + "longitude": "27.46361000" + }, + { + "id": "31700", + "name": "Räpina vald", + "state_id": 3563, + "state_code": "65", + "country_id": 69, + "country_code": "EE", + "latitude": "58.10777000", + "longitude": "27.38580000" + }, + { + "id": "31612", + "name": "Järvakandi", + "state_id": 3559, + "state_code": "70", + "country_id": 69, + "country_code": "EE", + "latitude": "58.77889000", + "longitude": "24.82583000" + }, + { + "id": "31627", + "name": "Kehtna", + "state_id": 3559, + "state_code": "70", + "country_id": 69, + "country_code": "EE", + "latitude": "58.93028000", + "longitude": "24.87806000" + }, + { + "id": "31628", + "name": "Kehtna vald", + "state_id": 3559, + "state_code": "70", + "country_id": 69, + "country_code": "EE", + "latitude": "58.84274000", + "longitude": "24.89002000" + }, + { + "id": "31636", + "name": "Kohila", + "state_id": 3559, + "state_code": "70", + "country_id": 69, + "country_code": "EE", + "latitude": "59.16806000", + "longitude": "24.75750000" + }, + { + "id": "31637", + "name": "Kohila vald", + "state_id": 3559, + "state_code": "70", + "country_id": 69, + "country_code": "EE", + "latitude": "59.15283000", + "longitude": "24.73337000" + }, + { + "id": "31662", + "name": "Märjamaa", + "state_id": 3559, + "state_code": "70", + "country_id": 69, + "country_code": "EE", + "latitude": "58.90389000", + "longitude": "24.43056000" + }, + { + "id": "31663", + "name": "Märjamaa vald", + "state_id": 3559, + "state_code": "70", + "country_id": 69, + "country_code": "EE", + "latitude": "58.90262000", + "longitude": "24.39423000" + }, + { + "id": "31693", + "name": "Rapla", + "state_id": 3559, + "state_code": "70", + "country_id": 69, + "country_code": "EE", + "latitude": "59.00722000", + "longitude": "24.79278000" + }, + { + "id": "31694", + "name": "Rapla vald", + "state_id": 3559, + "state_code": "70", + "country_id": 69, + "country_code": "EE", + "latitude": "59.03309000", + "longitude": "24.71793000" + }, + { + "id": "31643", + "name": "Kuressaare", + "state_id": 3561, + "state_code": "74", + "country_id": 69, + "country_code": "EE", + "latitude": "58.24806000", + "longitude": "22.50389000" + }, + { + "id": "31649", + "name": "Liiva", + "state_id": 3561, + "state_code": "74", + "country_id": 69, + "country_code": "EE", + "latitude": "58.60194000", + "longitude": "23.24694000" + }, + { + "id": "31660", + "name": "Muhu vald", + "state_id": 3561, + "state_code": "74", + "country_id": 69, + "country_code": "EE", + "latitude": "58.58486000", + "longitude": "23.25609000" + }, + { + "id": "31670", + "name": "Orissaare", + "state_id": 3561, + "state_code": "74", + "country_id": 69, + "country_code": "EE", + "latitude": "58.55917000", + "longitude": "23.08262000" + }, + { + "id": "31696", + "name": "Ruhnu", + "state_id": 3561, + "state_code": "74", + "country_id": 69, + "country_code": "EE", + "latitude": "57.80028000", + "longitude": "23.24833000" + }, + { + "id": "31697", + "name": "Ruhnu vald", + "state_id": 3561, + "state_code": "74", + "country_id": 69, + "country_code": "EE", + "latitude": "57.80309000", + "longitude": "23.24250000" + }, + { + "id": "31723", + "name": "Tehumardi", + "state_id": 3561, + "state_code": "74", + "country_id": 69, + "country_code": "EE", + "latitude": "58.18027000", + "longitude": "22.24646000" + }, + { + "id": "31594", + "name": "Alatskivi", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.59806000", + "longitude": "27.13361000" + }, + { + "id": "31754", + "name": "Ülenurme", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.31620000", + "longitude": "26.72517000" + }, + { + "id": "31601", + "name": "Elva", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.22250000", + "longitude": "26.42111000" + }, + { + "id": "31621", + "name": "Kallaste", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.66312000", + "longitude": "27.16164000" + }, + { + "id": "31622", + "name": "Kambja vald", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.20255000", + "longitude": "26.68996000" + }, + { + "id": "31646", + "name": "Kõrveküla", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.42417000", + "longitude": "26.78222000" + }, + { + "id": "31642", + "name": "Kurepalu", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.31861000", + "longitude": "26.84083000" + }, + { + "id": "31654", + "name": "Luunja", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.35583000", + "longitude": "26.88083000" + }, + { + "id": "31655", + "name": "Luunja vald", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.39178000", + "longitude": "26.95574000" + }, + { + "id": "31668", + "name": "Nõo", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.27556000", + "longitude": "26.53750000" + }, + { + "id": "31669", + "name": "Nõo vald", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.24199000", + "longitude": "26.52499000" + }, + { + "id": "31677", + "name": "Peipsiääre vald", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.51559000", + "longitude": "27.18444000" + }, + { + "id": "31679", + "name": "Puhja", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.34194000", + "longitude": "26.31472000" + }, + { + "id": "31720", + "name": "Tartu", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.38062000", + "longitude": "26.72509000" + }, + { + "id": "31721", + "name": "Tartu linn", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.37498000", + "longitude": "26.73256000" + }, + { + "id": "31722", + "name": "Tartu vald", + "state_id": 3557, + "state_code": "78", + "country_id": 69, + "country_code": "EE", + "latitude": "58.47800000", + "longitude": "26.74956000" + }, + { + "id": "31671", + "name": "Otepää vald", + "state_id": 3558, + "state_code": "82", + "country_id": 69, + "country_code": "EE", + "latitude": "58.02177000", + "longitude": "26.45306000" + }, + { + "id": "31728", + "name": "Tõrva", + "state_id": 3558, + "state_code": "82", + "country_id": 69, + "country_code": "EE", + "latitude": "58.00278000", + "longitude": "25.93500000" + }, + { + "id": "31735", + "name": "Valga", + "state_id": 3558, + "state_code": "82", + "country_id": 69, + "country_code": "EE", + "latitude": "57.77781000", + "longitude": "26.04730000" + }, + { + "id": "31596", + "name": "Antsla", + "state_id": 3560, + "state_code": "86", + "country_id": 69, + "country_code": "EE", + "latitude": "57.82556000", + "longitude": "26.54056000" + }, + { + "id": "31597", + "name": "Antsla vald", + "state_id": 3560, + "state_code": "86", + "country_id": 69, + "country_code": "EE", + "latitude": "57.77738000", + "longitude": "26.59520000" + }, + { + "id": "31701", + "name": "Rõuge", + "state_id": 3560, + "state_code": "86", + "country_id": 69, + "country_code": "EE", + "latitude": "57.72778000", + "longitude": "26.90972000" + }, + { + "id": "31702", + "name": "Rõuge vald", + "state_id": 3560, + "state_code": "86", + "country_id": 69, + "country_code": "EE", + "latitude": "57.72780000", + "longitude": "26.88033000" + }, + { + "id": "31736", + "name": "Vana-Antsla", + "state_id": 3560, + "state_code": "86", + "country_id": 69, + "country_code": "EE", + "latitude": "57.86611000", + "longitude": "26.53222000" + }, + { + "id": "31750", + "name": "Värska", + "state_id": 3560, + "state_code": "86", + "country_id": 69, + "country_code": "EE", + "latitude": "57.95806000", + "longitude": "27.63806000" + }, + { + "id": "31752", + "name": "Võru", + "state_id": 3560, + "state_code": "86", + "country_id": 69, + "country_code": "EE", + "latitude": "57.83389000", + "longitude": "27.01944000" + }, + { + "id": "31753", + "name": "Võru vald", + "state_id": 3560, + "state_code": "86", + "country_id": 69, + "country_code": "EE", + "latitude": "57.86618000", + "longitude": "26.97418000" + }, + { + "id": "31593", + "name": "Abja-Paluoja", + "state_id": 3556, + "state_code": "84", + "country_id": 69, + "country_code": "EE", + "latitude": "58.12528000", + "longitude": "25.34972000" + }, + { + "id": "31625", + "name": "Karksi-Nuia", + "state_id": 3556, + "state_code": "84", + "country_id": 69, + "country_code": "EE", + "latitude": "58.10333000", + "longitude": "25.56278000" + }, + { + "id": "31664", + "name": "Mõisaküla", + "state_id": 3556, + "state_code": "84", + "country_id": 69, + "country_code": "EE", + "latitude": "58.09222000", + "longitude": "25.18639000" + }, + { + "id": "31711", + "name": "Suure-Jaani", + "state_id": 3556, + "state_code": "84", + "country_id": 69, + "country_code": "EE", + "latitude": "58.53611000", + "longitude": "25.47056000" + }, + { + "id": "31751", + "name": "Võhma", + "state_id": 3556, + "state_code": "84", + "country_id": 69, + "country_code": "EE", + "latitude": "58.62833000", + "longitude": "25.54833000" + }, + { + "id": "31739", + "name": "Viiratsi", + "state_id": 3556, + "state_code": "84", + "country_id": 69, + "country_code": "EE", + "latitude": "58.36000000", + "longitude": "25.63722000" + }, + { + "id": "31740", + "name": "Viljandi", + "state_id": 3556, + "state_code": "84", + "country_id": 69, + "country_code": "EE", + "latitude": "58.36389000", + "longitude": "25.59000000" + }, + { + "id": "31741", + "name": "Viljandi vald", + "state_id": 3556, + "state_code": "84", + "country_id": 69, + "country_code": "EE", + "latitude": "58.36392000", + "longitude": "25.49103000" + }, + { + "id": "38587", + "name": "Addis Ababa", + "state_id": 11, + "state_code": "AA", + "country_id": 70, + "country_code": "ET", + "latitude": "9.02497000", + "longitude": "38.74689000" + }, + { + "id": "38589", + "name": "Administrative Zone 2", + "state_id": 6, + "state_code": "AF", + "country_id": 70, + "country_code": "ET", + "latitude": "13.68513000", + "longitude": "40.05615000" + }, + { + "id": "38590", + "name": "Administrative Zone 3", + "state_id": 6, + "state_code": "AF", + "country_id": 70, + "country_code": "ET", + "latitude": "10.00902000", + "longitude": "40.47394000" + }, + { + "id": "38595", + "name": "Asaita", + "state_id": 6, + "state_code": "AF", + "country_id": 70, + "country_code": "ET", + "latitude": "11.56838000", + "longitude": "41.43869000" + }, + { + "id": "38729", + "name": "Āwash", + "state_id": 6, + "state_code": "AF", + "country_id": 70, + "country_code": "ET", + "latitude": "8.98333000", + "longitude": "40.16667000" + }, + { + "id": "38624", + "name": "Dubti", + "state_id": 6, + "state_code": "AF", + "country_id": 70, + "country_code": "ET", + "latitude": "11.73292000", + "longitude": "41.08200000" + }, + { + "id": "38637", + "name": "Gewanē", + "state_id": 6, + "state_code": "AF", + "country_id": 70, + "country_code": "ET", + "latitude": "10.16658000", + "longitude": "40.64689000" + }, + { + "id": "38691", + "name": "Semera", + "state_id": 6, + "state_code": "AF", + "country_id": 70, + "country_code": "ET", + "latitude": "11.79342000", + "longitude": "41.00578000" + }, + { + "id": "38585", + "name": "Abomsa", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "9.98333000", + "longitude": "39.98333000" + }, + { + "id": "38586", + "name": "Addiet Canna", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.26667000", + "longitude": "37.48333000" + }, + { + "id": "38722", + "name": "Ādīs Zemen", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "12.11667000", + "longitude": "37.78333000" + }, + { + "id": "38598", + "name": "Bahir Dar", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.59364000", + "longitude": "37.39077000" + }, + { + "id": "38600", + "name": "Batī", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.19152000", + "longitude": "40.01675000" + }, + { + "id": "38604", + "name": "Bichena", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "10.45000000", + "longitude": "38.20000000" + }, + { + "id": "38608", + "name": "Burē", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "10.70000000", + "longitude": "37.06667000" + }, + { + "id": "38610", + "name": "Dabat", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "12.98417000", + "longitude": "37.76500000" + }, + { + "id": "38611", + "name": "Debark’", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "13.15611000", + "longitude": "37.89806000" + }, + { + "id": "38612", + "name": "Debre Birhan", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "9.67954000", + "longitude": "39.53262000" + }, + { + "id": "38613", + "name": "Debre Mark’os", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "10.35000000", + "longitude": "37.73333000" + }, + { + "id": "38614", + "name": "Debre Sīna", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "9.84752000", + "longitude": "39.76027000" + }, + { + "id": "38615", + "name": "Debre Tabor", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.85000000", + "longitude": "38.01667000" + }, + { + "id": "38616", + "name": "Debre Werk’", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "10.66667000", + "longitude": "38.16667000" + }, + { + "id": "38619", + "name": "Dejen", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "10.16667000", + "longitude": "38.13333000" + }, + { + "id": "38621", + "name": "Desē", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.13333000", + "longitude": "39.63333000" + }, + { + "id": "38631", + "name": "Finote Selam", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "10.70000000", + "longitude": "37.26667000" + }, + { + "id": "38642", + "name": "Gondar", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "12.60000000", + "longitude": "37.46667000" + }, + { + "id": "38664", + "name": "Kemisē", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "10.71668000", + "longitude": "39.86997000" + }, + { + "id": "38667", + "name": "Kombolcha", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.08155000", + "longitude": "39.74339000" + }, + { + "id": "38671", + "name": "Lalībela", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "12.03219000", + "longitude": "39.04756000" + }, + { + "id": "38686", + "name": "North Shewa Zone", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "9.76900000", + "longitude": "39.66800000" + }, + { + "id": "38688", + "name": "North Wollo Zone", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.92000000", + "longitude": "39.10000000" + }, + { + "id": "38689", + "name": "Robīt", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "12.01667000", + "longitude": "39.63333000" + }, + { + "id": "38701", + "name": "South Gondar Zone", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.83850000", + "longitude": "38.09954000" + }, + { + "id": "38702", + "name": "South Wollo Zone", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.00000000", + "longitude": "39.25000000" + }, + { + "id": "38708", + "name": "Wag Hemra Zone", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "12.76500000", + "longitude": "38.84300000" + }, + { + "id": "38712", + "name": "Were Īlu", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "10.58964000", + "longitude": "39.43767000" + }, + { + "id": "38713", + "name": "Werota", + "state_id": 3, + "state_code": "AM", + "country_id": 70, + "country_code": "ET", + "latitude": "11.91667000", + "longitude": "37.70000000" + }, + { + "id": "38596", + "name": "Asosa", + "state_id": 9, + "state_code": "BE", + "country_id": 70, + "country_code": "ET", + "latitude": "10.00000000", + "longitude": "34.50000000" + }, + { + "id": "38728", + "name": "Āsosa", + "state_id": 9, + "state_code": "BE", + "country_id": 70, + "country_code": "ET", + "latitude": "10.06667000", + "longitude": "34.53333000" + }, + { + "id": "38679", + "name": "Metekel", + "state_id": 9, + "state_code": "BE", + "country_id": 70, + "country_code": "ET", + "latitude": "10.42673000", + "longitude": "35.71975000" + }, + { + "id": "38622", + "name": "Dire Dawa", + "state_id": 8, + "state_code": "DD", + "country_id": 70, + "country_code": "ET", + "latitude": "9.59306000", + "longitude": "41.86611000" + }, + { + "id": "38588", + "name": "Administrative Zone 1", + "state_id": 10, + "state_code": "GA", + "country_id": 70, + "country_code": "ET", + "latitude": "8.14699000", + "longitude": "33.97335000" + }, + { + "id": "38632", + "name": "Gambēla", + "state_id": 10, + "state_code": "GA", + "country_id": 70, + "country_code": "ET", + "latitude": "8.25000000", + "longitude": "34.58333000" + }, + { + "id": "38650", + "name": "Harar", + "state_id": 7, + "state_code": "HA", + "country_id": 70, + "country_code": "ET", + "latitude": "9.31387000", + "longitude": "42.11815000" + }, + { + "id": "38594", + "name": "Arsi Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.50000000", + "longitude": "39.50000000" + }, + { + "id": "38723", + "name": "Ādīs ‘Alem", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.03333000", + "longitude": "38.40000000" + }, + { + "id": "38724", + "name": "Āgaro", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.85000000", + "longitude": "36.65000000" + }, + { + "id": "38726", + "name": "Āsasa", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.10000000", + "longitude": "39.20000000" + }, + { + "id": "38727", + "name": "Āsbe Teferī", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.08569000", + "longitude": "40.86708000" + }, + { + "id": "38602", + "name": "Bedēsa", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.90000000", + "longitude": "40.78333000" + }, + { + "id": "38601", + "name": "Bedelē", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.45600000", + "longitude": "36.35302000" + }, + { + "id": "38605", + "name": "Bishoftu", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.75225000", + "longitude": "38.97846000" + }, + { + "id": "38617", + "name": "Deder", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.31168000", + "longitude": "41.44301000" + }, + { + "id": "38620", + "name": "Dembī Dolo", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.53333000", + "longitude": "34.80000000" + }, + { + "id": "38623", + "name": "Dodola", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "6.98333000", + "longitude": "39.18333000" + }, + { + "id": "38626", + "name": "East Harerghe Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.70114000", + "longitude": "42.00241000" + }, + { + "id": "38627", + "name": "East Shewa Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.21353000", + "longitude": "38.84809000" + }, + { + "id": "38628", + "name": "East Wellega Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.51928000", + "longitude": "36.75762000" + }, + { + "id": "38630", + "name": "Fichē", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.80000000", + "longitude": "38.73333000" + }, + { + "id": "38646", + "name": "Gēdo", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.01667000", + "longitude": "37.45000000" + }, + { + "id": "38633", + "name": "Gebre Guracha", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.80000000", + "longitude": "38.40000000" + }, + { + "id": "38635", + "name": "Gelemso", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.81667000", + "longitude": "40.51667000" + }, + { + "id": "38636", + "name": "Genet", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.06667000", + "longitude": "38.50000000" + }, + { + "id": "38638", + "name": "Gimbi", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.17031000", + "longitude": "35.83491000" + }, + { + "id": "38639", + "name": "Ginir", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.13952000", + "longitude": "40.71083000" + }, + { + "id": "38640", + "name": "Goba", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.01667000", + "longitude": "39.98333000" + }, + { + "id": "38643", + "name": "Gorē", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.15000000", + "longitude": "35.53333000" + }, + { + "id": "38644", + "name": "Guji Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "5.58800000", + "longitude": "39.06700000" + }, + { + "id": "38649", + "name": "Hagere Maryam", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "5.63418000", + "longitude": "38.23603000" + }, + { + "id": "38654", + "name": "Hāgere Hiywet", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.98333000", + "longitude": "37.85000000" + }, + { + "id": "38656", + "name": "Hīrna", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.21667000", + "longitude": "41.10000000" + }, + { + "id": "38653", + "name": "Huruta", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.15000000", + "longitude": "39.35000000" + }, + { + "id": "38657", + "name": "Illubabor Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.27526000", + "longitude": "35.75596000" + }, + { + "id": "38660", + "name": "Jimma", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.67344000", + "longitude": "36.83441000" + }, + { + "id": "38661", + "name": "Jimma Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.66667000", + "longitude": "37.00000000" + }, + { + "id": "38665", + "name": "Kibre Mengist", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "5.88333000", + "longitude": "38.98333000" + }, + { + "id": "38666", + "name": "Kofelē", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.06667000", + "longitude": "38.78333000" + }, + { + "id": "38682", + "name": "Mēga", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "4.05000000", + "longitude": "38.30000000" + }, + { + "id": "38677", + "name": "Mendī", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.80000000", + "longitude": "35.10000000" + }, + { + "id": "38678", + "name": "Metahāra", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.90000000", + "longitude": "39.91667000" + }, + { + "id": "38680", + "name": "Metu", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.30000000", + "longitude": "35.58333000" + }, + { + "id": "38681", + "name": "Mojo", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.58679000", + "longitude": "39.12111000" + }, + { + "id": "38684", + "name": "Nazrēt", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.55000000", + "longitude": "39.26667000" + }, + { + "id": "38685", + "name": "Nejo", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.50000000", + "longitude": "35.50000000" + }, + { + "id": "38687", + "name": "North Shewa Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.66915000", + "longitude": "38.81240000" + }, + { + "id": "38690", + "name": "Sebeta", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.91667000", + "longitude": "38.61667000" + }, + { + "id": "38692", + "name": "Sendafa", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.15203000", + "longitude": "39.02335000" + }, + { + "id": "38693", + "name": "Shakiso", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "5.76494000", + "longitude": "38.91006000" + }, + { + "id": "38694", + "name": "Shambu", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.56667000", + "longitude": "37.10000000" + }, + { + "id": "38695", + "name": "Shashemenē", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.20000000", + "longitude": "38.60000000" + }, + { + "id": "38699", + "name": "Sirre", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.31667000", + "longitude": "39.48333000" + }, + { + "id": "38706", + "name": "Tulu Bolo", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.66667000", + "longitude": "38.21667000" + }, + { + "id": "38709", + "name": "Waliso", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.53417000", + "longitude": "37.96515000" + }, + { + "id": "38711", + "name": "Wenjī", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.45000000", + "longitude": "39.28333000" + }, + { + "id": "38714", + "name": "West Harerghe Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "8.67245000", + "longitude": "40.84885000" + }, + { + "id": "38715", + "name": "West Wellega Zone", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "9.17283000", + "longitude": "35.05279000" + }, + { + "id": "38717", + "name": "Yabēlo", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "4.88333000", + "longitude": "38.08333000" + }, + { + "id": "38720", + "name": "Ziway", + "state_id": 5, + "state_code": "OR", + "country_id": 70, + "country_code": "ET", + "latitude": "7.93333000", + "longitude": "38.71667000" + }, + { + "id": "38591", + "name": "Afder Zone", + "state_id": 2, + "state_code": "SO", + "country_id": 70, + "country_code": "ET", + "latitude": "5.25000000", + "longitude": "43.00000000" + }, + { + "id": "38618", + "name": "Degehabur Zone", + "state_id": 2, + "state_code": "SO", + "country_id": 70, + "country_code": "ET", + "latitude": "8.25000000", + "longitude": "43.75000000" + }, + { + "id": "38641", + "name": "Gode Zone", + "state_id": 2, + "state_code": "SO", + "country_id": 70, + "country_code": "ET", + "latitude": "6.00000000", + "longitude": "43.75000000" + }, + { + "id": "38659", + "name": "Jijiga", + "state_id": 2, + "state_code": "SO", + "country_id": 70, + "country_code": "ET", + "latitude": "9.35000000", + "longitude": "42.80000000" + }, + { + "id": "38673", + "name": "Liben zone", + "state_id": 2, + "state_code": "SO", + "country_id": 70, + "country_code": "ET", + "latitude": "4.75000000", + "longitude": "40.50000000" + }, + { + "id": "38697", + "name": "Shinile Zone", + "state_id": 2, + "state_code": "SO", + "country_id": 70, + "country_code": "ET", + "latitude": "10.17097000", + "longitude": "41.83748000" + }, + { + "id": "38592", + "name": "Alaba Special Wereda", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.45347000", + "longitude": "38.21189000" + }, + { + "id": "38593", + "name": "Arba Minch", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.03333000", + "longitude": "37.55000000" + }, + { + "id": "38725", + "name": "Āreka", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.06667000", + "longitude": "37.70000000" + }, + { + "id": "38599", + "name": "Bako", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "5.78333000", + "longitude": "36.56667000" + }, + { + "id": "38603", + "name": "Bench Maji Zone", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.45994000", + "longitude": "35.30549000" + }, + { + "id": "38606", + "name": "Bodītī", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.96667000", + "longitude": "37.86667000" + }, + { + "id": "38607", + "name": "Bonga", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.28333000", + "longitude": "36.23333000" + }, + { + "id": "38609", + "name": "Butajīra", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "8.11667000", + "longitude": "38.36667000" + }, + { + "id": "38625", + "name": "Dīla", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.41667000", + "longitude": "38.31667000" + }, + { + "id": "38629", + "name": "Felege Neway", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.30000000", + "longitude": "36.88333000" + }, + { + "id": "38647", + "name": "Gīdolē", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "5.65000000", + "longitude": "37.36667000" + }, + { + "id": "38634", + "name": "Gedeo Zone", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.12727000", + "longitude": "38.27716000" + }, + { + "id": "38645", + "name": "Guraghe Zone", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "8.25000000", + "longitude": "38.00000000" + }, + { + "id": "38648", + "name": "Hadiya Zone", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.50000000", + "longitude": "37.75000000" + }, + { + "id": "38651", + "name": "Hawassa", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.06205000", + "longitude": "38.47635000" + }, + { + "id": "38655", + "name": "Hāgere Selam", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.48333000", + "longitude": "38.51667000" + }, + { + "id": "38652", + "name": "Hosa’ina", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.54978000", + "longitude": "37.85374000" + }, + { + "id": "38662", + "name": "Jinka", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "5.65000000", + "longitude": "36.65000000" + }, + { + "id": "38670", + "name": "K’olīto", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.31667000", + "longitude": "38.08333000" + }, + { + "id": "38663", + "name": "Kembata Alaba Tembaro Zone", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.27039000", + "longitude": "37.77887000" + }, + { + "id": "38668", + "name": "Konso", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "5.25000000", + "longitude": "37.48333000" + }, + { + "id": "38672", + "name": "Leku", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.87309000", + "longitude": "38.44425000" + }, + { + "id": "38674", + "name": "Lobuni", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "4.83333000", + "longitude": "36.10000000" + }, + { + "id": "38683", + "name": "Mīzan Teferī", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.99865000", + "longitude": "35.58879000" + }, + { + "id": "38696", + "name": "Sheka Zone", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.56166000", + "longitude": "35.40174000" + }, + { + "id": "38698", + "name": "Sidama Zone", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.71800000", + "longitude": "38.44800000" + }, + { + "id": "38700", + "name": "Sodo", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.86000000", + "longitude": "37.76159000" + }, + { + "id": "38705", + "name": "Tippi", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.20000000", + "longitude": "35.45000000" + }, + { + "id": "38707", + "name": "Turmi", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "4.96667000", + "longitude": "36.48333000" + }, + { + "id": "38710", + "name": "Wendo", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.60000000", + "longitude": "38.41667000" + }, + { + "id": "38716", + "name": "Wolayita Zone", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.84312000", + "longitude": "37.70051000" + }, + { + "id": "38718", + "name": "Yem", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "7.83333000", + "longitude": "37.50000000" + }, + { + "id": "38719", + "name": "Yirga ‘Alem", + "state_id": 1, + "state_code": "SN", + "country_id": 70, + "country_code": "ET", + "latitude": "6.75000000", + "longitude": "38.41667000" + }, + { + "id": "38597", + "name": "Axum", + "state_id": 4, + "state_code": "TI", + "country_id": 70, + "country_code": "ET", + "latitude": "14.12109000", + "longitude": "38.72337000" + }, + { + "id": "38721", + "name": "Ādīgrat", + "state_id": 4, + "state_code": "TI", + "country_id": 70, + "country_code": "ET", + "latitude": "14.27700000", + "longitude": "39.46200000" + }, + { + "id": "38658", + "name": "Inda Silasē", + "state_id": 4, + "state_code": "TI", + "country_id": 70, + "country_code": "ET", + "latitude": "14.10307000", + "longitude": "38.28289000" + }, + { + "id": "38669", + "name": "Korem", + "state_id": 4, + "state_code": "TI", + "country_id": 70, + "country_code": "ET", + "latitude": "12.50583000", + "longitude": "39.52278000" + }, + { + "id": "38675", + "name": "Maych’ew", + "state_id": 4, + "state_code": "TI", + "country_id": 70, + "country_code": "ET", + "latitude": "12.78750000", + "longitude": "39.54222000" + }, + { + "id": "38676", + "name": "Mek'ele", + "state_id": 4, + "state_code": "TI", + "country_id": 70, + "country_code": "ET", + "latitude": "13.49667000", + "longitude": "39.47528000" + }, + { + "id": "38703", + "name": "Southeastern Tigray Zone", + "state_id": 4, + "state_code": "TI", + "country_id": 70, + "country_code": "ET", + "latitude": "13.24797000", + "longitude": "39.53156000" + }, + { + "id": "38704", + "name": "Southern Tigray Zone", + "state_id": 4, + "state_code": "TI", + "country_id": 70, + "country_code": "ET", + "latitude": "12.96033000", + "longitude": "39.52831000" + }, + { + "id": "39145", + "name": "Naitasiri Province", + "state_id": 1929, + "state_code": "C", + "country_id": 73, + "country_code": "FJ", + "latitude": "-17.83333000", + "longitude": "178.25000000" + }, + { + "id": "39146", + "name": "Namosi Province", + "state_id": 1929, + "state_code": "C", + "country_id": 73, + "country_code": "FJ", + "latitude": "-18.05000000", + "longitude": "178.13333000" + }, + { + "id": "39149", + "name": "Rewa Province", + "state_id": 1929, + "state_code": "C", + "country_id": 73, + "country_code": "FJ", + "latitude": "-18.08333000", + "longitude": "178.33333000" + }, + { + "id": "39150", + "name": "Serua Province", + "state_id": 1929, + "state_code": "C", + "country_id": 73, + "country_code": "FJ", + "latitude": "-18.16667000", + "longitude": "178.00000000" + }, + { + "id": "39151", + "name": "Suva", + "state_id": 1929, + "state_code": "C", + "country_id": 73, + "country_code": "FJ", + "latitude": "-18.14161000", + "longitude": "178.44149000" + }, + { + "id": "39152", + "name": "Tailevu Province", + "state_id": 1929, + "state_code": "C", + "country_id": 73, + "country_code": "FJ", + "latitude": "-17.83333000", + "longitude": "178.50000000" + }, + { + "id": "39137", + "name": "Kadavu Province", + "state_id": 1932, + "state_code": "E", + "country_id": 73, + "country_code": "FJ", + "latitude": "-18.99331000", + "longitude": "178.22021000" + }, + { + "id": "39139", + "name": "Lau Province", + "state_id": 1932, + "state_code": "E", + "country_id": 73, + "country_code": "FJ", + "latitude": "-18.20488000", + "longitude": "-178.79251000" + }, + { + "id": "39141", + "name": "Levuka", + "state_id": 1932, + "state_code": "E", + "country_id": 73, + "country_code": "FJ", + "latitude": "-18.06667000", + "longitude": "179.31667000" + }, + { + "id": "39142", + "name": "Lomaiviti Province", + "state_id": 1932, + "state_code": "E", + "country_id": 73, + "country_code": "FJ", + "latitude": "-17.66667000", + "longitude": "178.80000000" + }, + { + "id": "39135", + "name": "Bua Province", + "state_id": 1921, + "state_code": "N", + "country_id": 73, + "country_code": "FJ", + "latitude": "-16.83333000", + "longitude": "178.75000000" + }, + { + "id": "39136", + "name": "Cakaudrove Province", + "state_id": 1921, + "state_code": "N", + "country_id": 73, + "country_code": "FJ", + "latitude": "-16.66667000", + "longitude": "179.41667000" + }, + { + "id": "39138", + "name": "Labasa", + "state_id": 1921, + "state_code": "N", + "country_id": 73, + "country_code": "FJ", + "latitude": "-16.43320000", + "longitude": "179.36451000" + }, + { + "id": "39143", + "name": "Macuata Province", + "state_id": 1921, + "state_code": "N", + "country_id": 73, + "country_code": "FJ", + "latitude": "-16.50000000", + "longitude": "179.25000000" + }, + { + "id": "39133", + "name": "Ba", + "state_id": 1923, + "state_code": "W", + "country_id": 73, + "country_code": "FJ", + "latitude": "-17.53430000", + "longitude": "177.67407000" + }, + { + "id": "39134", + "name": "Ba Province", + "state_id": 1923, + "state_code": "W", + "country_id": 73, + "country_code": "FJ", + "latitude": "-17.66667000", + "longitude": "177.66667000" + }, + { + "id": "39140", + "name": "Lautoka", + "state_id": 1923, + "state_code": "W", + "country_id": 73, + "country_code": "FJ", + "latitude": "-17.61686000", + "longitude": "177.45049000" + }, + { + "id": "39144", + "name": "Nadi", + "state_id": 1923, + "state_code": "W", + "country_id": 73, + "country_code": "FJ", + "latitude": "-17.80309000", + "longitude": "177.41617000" + }, + { + "id": "39147", + "name": "Nandronga and Navosa Province", + "state_id": 1923, + "state_code": "W", + "country_id": 73, + "country_code": "FJ", + "latitude": "-18.00000000", + "longitude": "177.66667000" + }, + { + "id": "39148", + "name": "Ra Province", + "state_id": 1923, + "state_code": "W", + "country_id": 73, + "country_code": "FJ", + "latitude": "-17.50000000", + "longitude": "178.16667000" + }, + { + "id": "39132", + "name": "Äänekoski", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.60000000", + "longitude": "25.73333000" + }, + { + "id": "38760", + "name": "Hankasalmi", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.38333000", + "longitude": "26.43333000" + }, + { + "id": "38809", + "name": "Jämsä", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "61.86420000", + "longitude": "25.19002000" + }, + { + "id": "38810", + "name": "Jämsänkoski", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "61.91900000", + "longitude": "25.17011000" + }, + { + "id": "38801", + "name": "Joutsa", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "61.73333000", + "longitude": "26.11667000" + }, + { + "id": "38807", + "name": "Jyväskylä", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.24147000", + "longitude": "25.72088000" + }, + { + "id": "38823", + "name": "Kannonkoski", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.96667000", + "longitude": "25.25000000" + }, + { + "id": "38831", + "name": "Karstula", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.86667000", + "longitude": "24.78333000" + }, + { + "id": "38849", + "name": "Keuruu", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.26667000", + "longitude": "24.70000000" + }, + { + "id": "38855", + "name": "Kinnula", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "63.38333000", + "longitude": "24.95000000" + }, + { + "id": "38862", + "name": "Kivijärvi", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "63.11984000", + "longitude": "25.07835000" + }, + { + "id": "38866", + "name": "Konnevesi", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.61667000", + "longitude": "26.31667000" + }, + { + "id": "38868", + "name": "Korpilahti", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.01667000", + "longitude": "25.55000000" + }, + { + "id": "38878", + "name": "Kuhmoinen", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "61.56667000", + "longitude": "25.18333000" + }, + { + "id": "38887", + "name": "Kyyjärvi", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "63.03333000", + "longitude": "24.56667000" + }, + { + "id": "38903", + "name": "Laukaa", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.41407000", + "longitude": "25.95194000" + }, + { + "id": "38907", + "name": "Leivonmäki", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "61.91198000", + "longitude": "26.12796000" + }, + { + "id": "38921", + "name": "Luhanka", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "61.79682000", + "longitude": "25.70457000" + }, + { + "id": "38939", + "name": "Multia", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.41667000", + "longitude": "24.78333000" + }, + { + "id": "38942", + "name": "Muurame", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.13333000", + "longitude": "25.66667000" + }, + { + "id": "38982", + "name": "Petäjävesi", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.25000000", + "longitude": "25.20000000" + }, + { + "id": "38985", + "name": "Pihtipudas", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "63.38333000", + "longitude": "25.56667000" + }, + { + "id": "39008", + "name": "Pylkönmäki", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.66667000", + "longitude": "24.80000000" + }, + { + "id": "39035", + "name": "Saarijärvi", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.70486000", + "longitude": "25.25396000" + }, + { + "id": "39066", + "name": "Säynätsalo", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.14025000", + "longitude": "25.76948000" + }, + { + "id": "39058", + "name": "Sumiainen", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.65736000", + "longitude": "26.04642000" + }, + { + "id": "39059", + "name": "Suolahti", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.56421000", + "longitude": "25.85363000" + }, + { + "id": "39079", + "name": "Toivakka", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.10000000", + "longitude": "26.08333000" + }, + { + "id": "39092", + "name": "Uurainen", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "62.50000000", + "longitude": "25.45000000" + }, + { + "id": "39110", + "name": "Viitasaari", + "state_id": 1511, + "state_code": "08", + "country_id": 74, + "country_code": "FI", + "latitude": "63.06667000", + "longitude": "25.86667000" + }, + { + "id": "38758", + "name": "Halsua", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.46667000", + "longitude": "24.16667000" + }, + { + "id": "38824", + "name": "Kannus", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.90000000", + "longitude": "23.90000000" + }, + { + "id": "38838", + "name": "Kaustinen", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.54878000", + "longitude": "23.68845000" + }, + { + "id": "38888", + "name": "Kälviä", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.86067000", + "longitude": "23.45289000" + }, + { + "id": "38864", + "name": "Kokkola", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.85414000", + "longitude": "23.58562000" + }, + { + "id": "38911", + "name": "Lestijärvi", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.53333000", + "longitude": "24.65000000" + }, + { + "id": "38918", + "name": "Lohtaja", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "64.02472000", + "longitude": "23.50482000" + }, + { + "id": "38977", + "name": "Perho", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.21667000", + "longitude": "24.41667000" + }, + { + "id": "39078", + "name": "Toholampi", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.76667000", + "longitude": "24.25000000" + }, + { + "id": "39088", + "name": "Ullava", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.60000000", + "longitude": "24.08333000" + }, + { + "id": "39106", + "name": "Veteli", + "state_id": 1494, + "state_code": "07", + "country_id": 74, + "country_code": "FI", + "latitude": "63.47839000", + "longitude": "23.78285000" + }, + { + "id": "38732", + "name": "Alastaro", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.95000000", + "longitude": "22.85000000" + }, + { + "id": "38738", + "name": "Askainen", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.56667000", + "longitude": "21.86667000" + }, + { + "id": "38740", + "name": "Aura", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.64710000", + "longitude": "22.58755000" + }, + { + "id": "38742", + "name": "Dragsfjärd", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.06667000", + "longitude": "22.48333000" + }, + { + "id": "38757", + "name": "Halikko", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.40000000", + "longitude": "23.08333000" + }, + { + "id": "38775", + "name": "Houtskär", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.22284000", + "longitude": "21.37218000" + }, + { + "id": "38790", + "name": "Iniö", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.40000000", + "longitude": "21.40000000" + }, + { + "id": "38814", + "name": "Kaarina", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.40724000", + "longitude": "22.36904000" + }, + { + "id": "38827", + "name": "Karinainen", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.66667000", + "longitude": "22.76667000" + }, + { + "id": "38851", + "name": "Kiikala", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.46667000", + "longitude": "23.56667000" + }, + { + "id": "38854", + "name": "Kimito", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.16047000", + "longitude": "22.72900000" + }, + { + "id": "38857", + "name": "Kisko", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.23333000", + "longitude": "23.48333000" + }, + { + "id": "38884", + "name": "Kustavi", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.54529000", + "longitude": "21.35880000" + }, + { + "id": "38886", + "name": "Kuusjoki", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.51667000", + "longitude": "23.20000000" + }, + { + "id": "38894", + "name": "Laitila", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.87575000", + "longitude": "21.69765000" + }, + { + "id": "38909", + "name": "Lemu", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.56667000", + "longitude": "21.96667000" + }, + { + "id": "38913", + "name": "Lieto", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.51032000", + "longitude": "22.46176000" + }, + { + "id": "38928", + "name": "Marttila", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.58333000", + "longitude": "22.90000000" + }, + { + "id": "38929", + "name": "Masku", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.57082000", + "longitude": "22.09883000" + }, + { + "id": "38930", + "name": "Mellilä", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.76667000", + "longitude": "22.95000000" + }, + { + "id": "38934", + "name": "Merimasku", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.48333000", + "longitude": "21.86667000" + }, + { + "id": "38936", + "name": "Mietoinen", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.63333000", + "longitude": "21.93333000" + }, + { + "id": "38943", + "name": "Muurla", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.35000000", + "longitude": "23.28333000" + }, + { + "id": "38944", + "name": "Mynämäki", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.67915000", + "longitude": "21.99274000" + }, + { + "id": "38948", + "name": "Naantali", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.46744000", + "longitude": "22.02428000" + }, + { + "id": "38949", + "name": "Nagu", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.19375000", + "longitude": "21.90972000" + }, + { + "id": "38955", + "name": "Nousiainen", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.60416000", + "longitude": "22.07926000" + }, + { + "id": "38963", + "name": "Oripää", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.85000000", + "longitude": "22.68333000" + }, + { + "id": "38970", + "name": "Paimio", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.45671000", + "longitude": "22.68694000" + }, + { + "id": "38972", + "name": "Pargas", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.30672000", + "longitude": "22.30097000" + }, + { + "id": "39009", + "name": "Pöytyä", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.76667000", + "longitude": "22.66667000" + }, + { + "id": "38978", + "name": "Perniö", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.20000000", + "longitude": "23.13333000" + }, + { + "id": "38980", + "name": "Pertteli", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.43333000", + "longitude": "23.26667000" + }, + { + "id": "38986", + "name": "Piikkiö", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.42481000", + "longitude": "22.51601000" + }, + { + "id": "39006", + "name": "Pyhäranta", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.95000000", + "longitude": "21.45000000" + }, + { + "id": "39012", + "name": "Raisio", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.48592000", + "longitude": "22.16895000" + }, + { + "id": "39030", + "name": "Rusko", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.53333000", + "longitude": "22.21667000" + }, + { + "id": "39032", + "name": "Rymättylä", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.37658000", + "longitude": "21.94184000" + }, + { + "id": "39037", + "name": "Salo", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.38333000", + "longitude": "23.13333000" + }, + { + "id": "39039", + "name": "Sauvo", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.34306000", + "longitude": "22.69642000" + }, + { + "id": "39065", + "name": "Särkisalo", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.11389000", + "longitude": "22.95000000" + }, + { + "id": "39054", + "name": "Somero", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.61667000", + "longitude": "23.53333000" + }, + { + "id": "39060", + "name": "Suomusjärvi", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.35000000", + "longitude": "23.65000000" + }, + { + "id": "39069", + "name": "Taivassalo", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.56085000", + "longitude": "21.61639000" + }, + { + "id": "39071", + "name": "Tarvasjoki", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.58333000", + "longitude": "22.73333000" + }, + { + "id": "39081", + "name": "Turku", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.45148000", + "longitude": "22.26869000" + }, + { + "id": "39093", + "name": "Uusikaupunki", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.80043000", + "longitude": "21.40841000" + }, + { + "id": "39096", + "name": "Vahto", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.60000000", + "longitude": "22.30000000" + }, + { + "id": "39118", + "name": "Västanfjärd", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.05000000", + "longitude": "22.68333000" + }, + { + "id": "39119", + "name": "Väståboland", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.29972000", + "longitude": "22.30040000" + }, + { + "id": "39102", + "name": "Vehmaa", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.68333000", + "longitude": "21.66667000" + }, + { + "id": "39104", + "name": "Velkua", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.46667000", + "longitude": "21.66667000" + }, + { + "id": "39128", + "name": "Yläne", + "state_id": 1507, + "state_code": "19", + "country_id": 74, + "country_code": "FI", + "latitude": "60.88333000", + "longitude": "22.41667000" + }, + { + "id": "38778", + "name": "Hyrynsalmi", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.66667000", + "longitude": "28.53333000" + }, + { + "id": "38816", + "name": "Kajaani", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.22728000", + "longitude": "27.72846000" + }, + { + "id": "38877", + "name": "Kuhmo", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.13333000", + "longitude": "29.51667000" + }, + { + "id": "38971", + "name": "Paltamo", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.41667000", + "longitude": "27.83333000" + }, + { + "id": "38999", + "name": "Puolanka", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.86667000", + "longitude": "27.66667000" + }, + { + "id": "39025", + "name": "Ristijärvi", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.50000000", + "longitude": "28.21667000" + }, + { + "id": "39056", + "name": "Sotkamo", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.13333000", + "longitude": "28.41667000" + }, + { + "id": "39061", + "name": "Suomussalmi", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.88685000", + "longitude": "28.90778000" + }, + { + "id": "39094", + "name": "Vaala", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.56667000", + "longitude": "26.83333000" + }, + { + "id": "39114", + "name": "Vuokatti", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.14466000", + "longitude": "28.28196000" + }, + { + "id": "39115", + "name": "Vuolijoki", + "state_id": 1496, + "state_code": "05", + "country_id": 74, + "country_code": "FI", + "latitude": "64.18538000", + "longitude": "26.99547000" + }, + { + "id": "38735", + "name": "Anjala", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.68333000", + "longitude": "26.83333000" + }, + { + "id": "38744", + "name": "Elimäki", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.71667000", + "longitude": "26.46667000" + }, + { + "id": "38759", + "name": "Hamina", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.56974000", + "longitude": "27.19794000" + }, + { + "id": "38784", + "name": "Iitti", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.89488000", + "longitude": "26.33869000" + }, + { + "id": "38794", + "name": "Jaala", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "61.05251000", + "longitude": "26.48117000" + }, + { + "id": "38825", + "name": "Karhula", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.52156000", + "longitude": "26.93125000" + }, + { + "id": "38872", + "name": "Kotka", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.46640000", + "longitude": "26.94582000" + }, + { + "id": "38874", + "name": "Kouvola", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.86667000", + "longitude": "26.70000000" + }, + { + "id": "38935", + "name": "Miehikkälä", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.66667000", + "longitude": "27.70000000" + }, + { + "id": "39001", + "name": "Pyhtää", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.49349000", + "longitude": "26.54346000" + }, + { + "id": "39112", + "name": "Virojoki", + "state_id": 1512, + "state_code": "09", + "country_id": 74, + "country_code": "FI", + "latitude": "60.57940000", + "longitude": "27.70354000" + }, + { + "id": "38747", + "name": "Enontekiö", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "68.38573000", + "longitude": "23.63215000" + }, + { + "id": "38788", + "name": "Inari", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "68.90596000", + "longitude": "27.02881000" + }, + { + "id": "38793", + "name": "Ivalo", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "68.65986000", + "longitude": "27.53891000" + }, + { + "id": "38841", + "name": "Kemi", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "65.73641000", + "longitude": "24.56371000" + }, + { + "id": "38842", + "name": "Kemijärvi", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "66.71309000", + "longitude": "27.43056000" + }, + { + "id": "38843", + "name": "Keminmaa", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "65.80158000", + "longitude": "24.54483000" + }, + { + "id": "38859", + "name": "Kittilä", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "67.66474000", + "longitude": "24.89356000" + }, + { + "id": "38865", + "name": "Kolari", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "67.33047000", + "longitude": "23.77785000" + }, + { + "id": "38941", + "name": "Muonio", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "67.95000000", + "longitude": "23.70000000" + }, + { + "id": "38975", + "name": "Pelkosenniemi", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "67.11083000", + "longitude": "27.51056000" + }, + { + "id": "38976", + "name": "Pello", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "66.77364000", + "longitude": "23.96255000" + }, + { + "id": "38994", + "name": "Posio", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "66.10856000", + "longitude": "28.17186000" + }, + { + "id": "39004", + "name": "Pyhäjärvi", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "67.07010000", + "longitude": "27.21763000" + }, + { + "id": "39015", + "name": "Ranua", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "65.91667000", + "longitude": "26.53333000" + }, + { + "id": "39027", + "name": "Rovaniemi", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "66.50000000", + "longitude": "25.71667000" + }, + { + "id": "39036", + "name": "Salla", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "66.83333000", + "longitude": "28.66667000" + }, + { + "id": "39043", + "name": "Savukoski", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "67.29250000", + "longitude": "28.15806000" + }, + { + "id": "39050", + "name": "Simo", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "65.66667000", + "longitude": "25.05000000" + }, + { + "id": "39052", + "name": "Sodankylä", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "67.41667000", + "longitude": "26.60000000" + }, + { + "id": "39075", + "name": "Tervola", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "66.08333000", + "longitude": "24.80000000" + }, + { + "id": "39080", + "name": "Tornio", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "65.84811000", + "longitude": "24.14662000" + }, + { + "id": "39091", + "name": "Utsjoki", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "69.90864000", + "longitude": "27.02843000" + }, + { + "id": "39125", + "name": "Ylitornio", + "state_id": 1500, + "state_code": "LL", + "country_id": 74, + "country_code": "FI", + "latitude": "66.30893000", + "longitude": "23.67734000" + }, + { + "id": "38745", + "name": "Eno", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.80511000", + "longitude": "30.15422000" + }, + { + "id": "38786", + "name": "Ilomantsi", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.67162000", + "longitude": "30.93276000" + }, + { + "id": "38798", + "name": "Joensuu", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.60118000", + "longitude": "29.76316000" + }, + { + "id": "38805", + "name": "Juuka", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "63.23333000", + "longitude": "29.25000000" + }, + { + "id": "38848", + "name": "Kesälahti", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "61.89752000", + "longitude": "29.83494000" + }, + { + "id": "38850", + "name": "Kiihtelysvaara", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.49525000", + "longitude": "30.25081000" + }, + { + "id": "38858", + "name": "Kitee", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.10000000", + "longitude": "30.15000000" + }, + { + "id": "38867", + "name": "Kontiolahti", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.76023000", + "longitude": "29.84711000" + }, + { + "id": "38912", + "name": "Lieksa", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "63.31667000", + "longitude": "30.01667000" + }, + { + "id": "38916", + "name": "Liperi", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.53333000", + "longitude": "29.36667000" + }, + { + "id": "38957", + "name": "Nurmes", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "63.54205000", + "longitude": "29.13965000" + }, + { + "id": "38968", + "name": "Outokumpu", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.72685000", + "longitude": "29.01592000" + }, + { + "id": "38989", + "name": "Polvijärvi", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.85000000", + "longitude": "29.36667000" + }, + { + "id": "39007", + "name": "Pyhäselkä", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.43333000", + "longitude": "29.96667000" + }, + { + "id": "39033", + "name": "Rääkkylä", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.31667000", + "longitude": "29.61667000" + }, + { + "id": "39077", + "name": "Tohmajärvi", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.18333000", + "longitude": "30.38333000" + }, + { + "id": "39083", + "name": "Tuupovaara", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "62.48372000", + "longitude": "30.62731000" + }, + { + "id": "39097", + "name": "Valtimo", + "state_id": 1504, + "state_code": "13", + "country_id": 74, + "country_code": "FI", + "latitude": "63.66667000", + "longitude": "28.80000000" + }, + { + "id": "38733", + "name": "Alavieska", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.16667000", + "longitude": "24.30000000" + }, + { + "id": "38754", + "name": "Haapajärvi", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "63.75000000", + "longitude": "25.33333000" + }, + { + "id": "38755", + "name": "Haapavesi", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.13333000", + "longitude": "25.36667000" + }, + { + "id": "38756", + "name": "Hailuoto", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.00900000", + "longitude": "24.71385000" + }, + { + "id": "38765", + "name": "Haukipudas", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.17654000", + "longitude": "25.35233000" + }, + { + "id": "38772", + "name": "Himanka", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.06218000", + "longitude": "23.65447000" + }, + { + "id": "38782", + "name": "Ii", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.31735000", + "longitude": "25.37310000" + }, + { + "id": "38817", + "name": "Kalajoki", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.25000000", + "longitude": "23.95000000" + }, + { + "id": "38890", + "name": "Kärsämäki", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "63.96667000", + "longitude": "25.76667000" + }, + { + "id": "38844", + "name": "Kempele", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.91314000", + "longitude": "25.50339000" + }, + { + "id": "38847", + "name": "Kestilä", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.35002000", + "longitude": "26.27921000" + }, + { + "id": "38852", + "name": "Kiiminki", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.13139000", + "longitude": "25.79744000" + }, + { + "id": "38879", + "name": "Kuivaniemi", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.57847000", + "longitude": "25.18814000" + }, + { + "id": "38885", + "name": "Kuusamo", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.96667000", + "longitude": "29.18333000" + }, + { + "id": "38915", + "name": "Liminka", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.80985000", + "longitude": "25.41545000" + }, + { + "id": "38922", + "name": "Lumijoki", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.83744000", + "longitude": "25.18607000" + }, + { + "id": "38932", + "name": "Merijärvi", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.30000000", + "longitude": "24.45000000" + }, + { + "id": "38938", + "name": "Muhos", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.80798000", + "longitude": "25.99314000" + }, + { + "id": "38953", + "name": "Nivala", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "63.91667000", + "longitude": "24.96667000" + }, + { + "id": "38965", + "name": "Oulainen", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.26667000", + "longitude": "24.80000000" + }, + { + "id": "38966", + "name": "Oulu", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.01236000", + "longitude": "25.46816000" + }, + { + "id": "38967", + "name": "Oulunsalo", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.93456000", + "longitude": "25.41121000" + }, + { + "id": "38987", + "name": "Piippola", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.16667000", + "longitude": "25.96667000" + }, + { + "id": "38995", + "name": "Pudasjärvi", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.38333000", + "longitude": "26.91667000" + }, + { + "id": "38997", + "name": "Pulkkila", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.26667000", + "longitude": "25.86667000" + }, + { + "id": "39003", + "name": "Pyhäjärvi", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "63.66667000", + "longitude": "25.90000000" + }, + { + "id": "39002", + "name": "Pyhäjoki", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.46667000", + "longitude": "24.23333000" + }, + { + "id": "39005", + "name": "Pyhäntä", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.10000000", + "longitude": "26.31667000" + }, + { + "id": "39010", + "name": "Raahe", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.68333000", + "longitude": "24.48333000" + }, + { + "id": "39014", + "name": "Rantsila", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.50613000", + "longitude": "25.66449000" + }, + { + "id": "39020", + "name": "Reisjärvi", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "63.61667000", + "longitude": "24.90000000" + }, + { + "id": "39031", + "name": "Ruukki", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.66667000", + "longitude": "25.10000000" + }, + { + "id": "39046", + "name": "Sievi", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "63.90000000", + "longitude": "24.50000000" + }, + { + "id": "39048", + "name": "Siikajoki", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.81455000", + "longitude": "24.75924000" + }, + { + "id": "39068", + "name": "Taivalkoski", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.56667000", + "longitude": "28.25000000" + }, + { + "id": "39086", + "name": "Tyrnävä", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.76469000", + "longitude": "25.65230000" + }, + { + "id": "39090", + "name": "Utajärvi", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.75000000", + "longitude": "26.38333000" + }, + { + "id": "39108", + "name": "Vihanti", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.48472000", + "longitude": "24.99157000" + }, + { + "id": "39121", + "name": "Yli-Ii", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.37181000", + "longitude": "25.84580000" + }, + { + "id": "39123", + "name": "Ylikiiminki", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "65.08333000", + "longitude": "26.25000000" + }, + { + "id": "39126", + "name": "Ylivieska", + "state_id": 1505, + "state_code": "14", + "country_id": 74, + "country_code": "FI", + "latitude": "64.08333000", + "longitude": "24.55000000" + }, + { + "id": "38771", + "name": "Hietalahti", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.08480000", + "longitude": "21.61716000" + }, + { + "id": "38792", + "name": "Isokyrö", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.01172000", + "longitude": "22.33332000" + }, + { + "id": "38795", + "name": "Jakobstad", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.67486000", + "longitude": "22.70256000" + }, + { + "id": "38834", + "name": "Kaskinen", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "62.38444000", + "longitude": "21.22331000" + }, + { + "id": "38869", + "name": "Korsholm", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.11418000", + "longitude": "21.68216000" + }, + { + "id": "38870", + "name": "Korsnäs", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "62.78333000", + "longitude": "21.20000000" + }, + { + "id": "38875", + "name": "Kristinestad", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "62.27429000", + "longitude": "21.37596000" + }, + { + "id": "38876", + "name": "Kronoby", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.72859000", + "longitude": "23.03387000" + }, + { + "id": "38893", + "name": "Laihia", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "62.97609000", + "longitude": "22.01143000" + }, + { + "id": "38902", + "name": "Larsmo", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.75388000", + "longitude": "22.74728000" + }, + { + "id": "38927", + "name": "Malax", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "62.94225000", + "longitude": "21.57311000" + }, + { + "id": "38960", + "name": "Nykarleby", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.52277000", + "longitude": "22.53073000" + }, + { + "id": "38961", + "name": "Oravais", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.30135000", + "longitude": "22.37821000" + }, + { + "id": "38974", + "name": "Pedersöre", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.65000000", + "longitude": "22.68333000" + }, + { + "id": "39022", + "name": "Replot", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.22882000", + "longitude": "21.41691000" + }, + { + "id": "39026", + "name": "Ristinummi", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.09192000", + "longitude": "21.72297000" + }, + { + "id": "39072", + "name": "Teeriniemi", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.09705000", + "longitude": "21.69590000" + }, + { + "id": "39095", + "name": "Vaasa", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.09600000", + "longitude": "21.61577000" + }, + { + "id": "39117", + "name": "Vähäkyrö", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.05635000", + "longitude": "22.10584000" + }, + { + "id": "39120", + "name": "Vörå", + "state_id": 1508, + "state_code": "12", + "country_id": 74, + "country_code": "FI", + "latitude": "63.13607000", + "longitude": "22.25223000" + }, + { + "id": "38736", + "name": "Artjärvi", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "60.74544000", + "longitude": "26.07084000" + }, + { + "id": "38737", + "name": "Asikkala", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "61.21667000", + "longitude": "25.50000000" + }, + { + "id": "38741", + "name": "Auttoinen", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "61.29901000", + "longitude": "25.08887000" + }, + { + "id": "38763", + "name": "Hartola", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "61.58333000", + "longitude": "26.01667000" + }, + { + "id": "38780", + "name": "Hämeenkoski", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "61.02222000", + "longitude": "25.15417000" + }, + { + "id": "38768", + "name": "Heinola", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "61.20564000", + "longitude": "26.03811000" + }, + { + "id": "38774", + "name": "Hollola", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "61.05000000", + "longitude": "25.43333000" + }, + { + "id": "38892", + "name": "Lahti", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "60.98267000", + "longitude": "25.66151000" + }, + { + "id": "38951", + "name": "Nastola", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "60.95000000", + "longitude": "25.93333000" + }, + { + "id": "38962", + "name": "Orimattila", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "60.80487000", + "longitude": "25.72964000" + }, + { + "id": "38969", + "name": "Padasjoki", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "61.35000000", + "longitude": "25.28333000" + }, + { + "id": "39063", + "name": "Sysmä", + "state_id": 1502, + "state_code": "16", + "country_id": 74, + "country_code": "FI", + "latitude": "61.50000000", + "longitude": "25.68333000" + }, + { + "id": "38783", + "name": "Iisalmi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.55915000", + "longitude": "27.19067000" + }, + { + "id": "38803", + "name": "Juankoski", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.06667000", + "longitude": "28.35000000" + }, + { + "id": "38815", + "name": "Kaavi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.98333000", + "longitude": "28.50000000" + }, + { + "id": "38820", + "name": "Kangaslampi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.29563000", + "longitude": "28.25289000" + }, + { + "id": "38832", + "name": "Karttula", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.89630000", + "longitude": "26.97045000" + }, + { + "id": "38839", + "name": "Keitele", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.18333000", + "longitude": "26.36667000" + }, + { + "id": "38861", + "name": "Kiuruvesi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.65000000", + "longitude": "26.61667000" + }, + { + "id": "38881", + "name": "Kuopio", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.89238000", + "longitude": "27.67703000" + }, + { + "id": "38897", + "name": "Lapinlahti", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.36667000", + "longitude": "27.40000000" + }, + { + "id": "38910", + "name": "Leppävirta", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.49009000", + "longitude": "27.78262000" + }, + { + "id": "38926", + "name": "Maaninka", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.15523000", + "longitude": "27.29939000" + }, + { + "id": "38952", + "name": "Nilsiä", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.20746000", + "longitude": "28.08222000" + }, + { + "id": "38984", + "name": "Pielavesi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.23333000", + "longitude": "26.75000000" + }, + { + "id": "39017", + "name": "Rautalampi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.63333000", + "longitude": "26.83333000" + }, + { + "id": "39018", + "name": "Rautavaara", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.48333000", + "longitude": "28.30000000" + }, + { + "id": "39049", + "name": "Siilinjärvi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.08333000", + "longitude": "27.66667000" + }, + { + "id": "39055", + "name": "Sonkajärvi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.66667000", + "longitude": "27.51667000" + }, + { + "id": "39062", + "name": "Suonenjoki", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.61667000", + "longitude": "27.13333000" + }, + { + "id": "39074", + "name": "Tervo", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.95000000", + "longitude": "26.75000000" + }, + { + "id": "39084", + "name": "Tuusniemi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.81667000", + "longitude": "28.50000000" + }, + { + "id": "39100", + "name": "Varkaus", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.31533000", + "longitude": "27.87300000" + }, + { + "id": "39101", + "name": "Varpaisjärvi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.35932000", + "longitude": "27.75506000" + }, + { + "id": "39103", + "name": "Vehmersalmi", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.76101000", + "longitude": "28.02853000" + }, + { + "id": "39105", + "name": "Vesanto", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "62.93333000", + "longitude": "26.41667000" + }, + { + "id": "39107", + "name": "Vieremä", + "state_id": 1506, + "state_code": "11", + "country_id": 74, + "country_code": "FI", + "latitude": "63.75000000", + "longitude": "27.01667000" + }, + { + "id": "38749", + "name": "Eura", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.13333000", + "longitude": "22.13333000" + }, + { + "id": "38750", + "name": "Eurajoki", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.20000000", + "longitude": "21.73333000" + }, + { + "id": "38762", + "name": "Harjavalta", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.31667000", + "longitude": "22.13333000" + }, + { + "id": "38776", + "name": "Huittinen", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.18333000", + "longitude": "22.70000000" + }, + { + "id": "38808", + "name": "Jämijärvi", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.81667000", + "longitude": "22.70000000" + }, + { + "id": "38822", + "name": "Kankaanpää", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.80000000", + "longitude": "22.41667000" + }, + { + "id": "38833", + "name": "Karvia", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "62.13333000", + "longitude": "22.56667000" + }, + { + "id": "38891", + "name": "Köyliö", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.11910000", + "longitude": "22.30976000" + }, + { + "id": "38860", + "name": "Kiukainen", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.21667000", + "longitude": "22.08333000" + }, + { + "id": "38863", + "name": "Kokemäki", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.25647000", + "longitude": "22.35643000" + }, + { + "id": "38880", + "name": "Kullaa", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.46998000", + "longitude": "22.16145000" + }, + { + "id": "38900", + "name": "Lappi", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.10000000", + "longitude": "21.83333000" + }, + { + "id": "38905", + "name": "Lavia", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.60000000", + "longitude": "22.60000000" + }, + { + "id": "38925", + "name": "Längelmäki", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.65000000", + "longitude": "22.10000000" + }, + { + "id": "38924", + "name": "Luvia", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.36375000", + "longitude": "21.62556000" + }, + { + "id": "38933", + "name": "Merikarvia", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.85839000", + "longitude": "21.50035000" + }, + { + "id": "38950", + "name": "Nakkila", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.36667000", + "longitude": "22.00000000" + }, + { + "id": "38954", + "name": "Noormarkku", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.59274000", + "longitude": "21.86846000" + }, + { + "id": "38990", + "name": "Pomarkku", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.69348000", + "longitude": "22.00862000" + }, + { + "id": "38991", + "name": "Pori", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.48333000", + "longitude": "21.78333000" + }, + { + "id": "39016", + "name": "Rauma", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.12724000", + "longitude": "21.51127000" + }, + { + "id": "39064", + "name": "Säkylä", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.03333000", + "longitude": "22.33333000" + }, + { + "id": "39047", + "name": "Siikainen", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.87703000", + "longitude": "21.81945000" + }, + { + "id": "39089", + "name": "Ulvila", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.42844000", + "longitude": "21.87103000" + }, + { + "id": "39098", + "name": "Vampula", + "state_id": 1501, + "state_code": "17", + "country_id": 74, + "country_code": "FI", + "latitude": "61.01667000", + "longitude": "22.70000000" + }, + { + "id": "38787", + "name": "Imatra", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.17185000", + "longitude": "28.75242000" + }, + { + "id": "38802", + "name": "Joutseno", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.11796000", + "longitude": "28.50763000" + }, + { + "id": "38899", + "name": "Lappeenranta", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.05871000", + "longitude": "28.18871000" + }, + { + "id": "38908", + "name": "Lemi", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.06244000", + "longitude": "27.80571000" + }, + { + "id": "38923", + "name": "Luumäki", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "60.92618000", + "longitude": "27.58135000" + }, + { + "id": "38956", + "name": "Nuijamaa", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "60.96011000", + "longitude": "28.55104000" + }, + { + "id": "38973", + "name": "Parikkala", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.55000000", + "longitude": "29.50000000" + }, + { + "id": "39019", + "name": "Rautjärvi", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.43333000", + "longitude": "29.35000000" + }, + { + "id": "39028", + "name": "Ruokolahti", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.28333000", + "longitude": "28.83333000" + }, + { + "id": "39034", + "name": "Saari", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.65000000", + "longitude": "29.75000000" + }, + { + "id": "39040", + "name": "Savitaipale", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.20000000", + "longitude": "27.70000000" + }, + { + "id": "39067", + "name": "Taipalsaari", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "61.15000000", + "longitude": "28.05000000" + }, + { + "id": "39127", + "name": "Ylämaa", + "state_id": 1497, + "state_code": "02", + "country_id": 74, + "country_code": "FI", + "latitude": "60.80000000", + "longitude": "28.00000000" + }, + { + "id": "38730", + "name": "Alahärmä", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "63.23333000", + "longitude": "22.85000000" + }, + { + "id": "38731", + "name": "Alajärvi", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "63.00000000", + "longitude": "23.81667000" + }, + { + "id": "38734", + "name": "Alavus", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.58333000", + "longitude": "23.61667000" + }, + { + "id": "39130", + "name": "Ähtäri", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.55403000", + "longitude": "24.06186000" + }, + { + "id": "39131", + "name": "Älajärvi", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "63.00027000", + "longitude": "23.81586000" + }, + { + "id": "38751", + "name": "Evijärvi", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "63.36667000", + "longitude": "23.48333000" + }, + { + "id": "38785", + "name": "Ilmajoki", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.73333000", + "longitude": "22.56667000" + }, + { + "id": "38791", + "name": "Isojoki", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.11319000", + "longitude": "21.95884000" + }, + { + "id": "38796", + "name": "Jalasjärvi", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.50000000", + "longitude": "22.75000000" + }, + { + "id": "38804", + "name": "Jurva", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.68333000", + "longitude": "21.98333000" + }, + { + "id": "38826", + "name": "Karijoki", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.30851000", + "longitude": "21.70856000" + }, + { + "id": "38835", + "name": "Kauhajoki", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.43333000", + "longitude": "22.18333000" + }, + { + "id": "38836", + "name": "Kauhava", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "63.10299000", + "longitude": "23.07129000" + }, + { + "id": "38871", + "name": "Kortesjärvi", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "63.30000000", + "longitude": "23.16667000" + }, + { + "id": "38882", + "name": "Kuortane", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.80000000", + "longitude": "23.50000000" + }, + { + "id": "38883", + "name": "Kurikka", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.61667000", + "longitude": "22.41667000" + }, + { + "id": "38898", + "name": "Lappajärvi", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "63.20000000", + "longitude": "23.63333000" + }, + { + "id": "38901", + "name": "Lapua", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.96927000", + "longitude": "23.00880000" + }, + { + "id": "38906", + "name": "Lehtimäki", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.78333000", + "longitude": "23.91667000" + }, + { + "id": "38959", + "name": "Nurmo", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.82870000", + "longitude": "22.90990000" + }, + { + "id": "39044", + "name": "Seinäjoki", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.79446000", + "longitude": "22.82822000" + }, + { + "id": "39053", + "name": "Soini", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.86667000", + "longitude": "24.21667000" + }, + { + "id": "39087", + "name": "Töysä", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.62803000", + "longitude": "23.81828000" + }, + { + "id": "39076", + "name": "Teuva", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.48190000", + "longitude": "21.74156000" + }, + { + "id": "39111", + "name": "Vimpeli", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "63.16187000", + "longitude": "23.81922000" + }, + { + "id": "39122", + "name": "Ylihärmä", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "63.15000000", + "longitude": "22.78333000" + }, + { + "id": "39124", + "name": "Ylistaro", + "state_id": 1498, + "state_code": "03", + "country_id": 74, + "country_code": "FI", + "latitude": "62.93958000", + "longitude": "22.51306000" + }, + { + "id": "38746", + "name": "Enonkoski", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "62.08333000", + "longitude": "28.93333000" + }, + { + "id": "38766", + "name": "Haukivuori", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "62.01753000", + "longitude": "27.21906000" + }, + { + "id": "38769", + "name": "Heinävesi", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "62.43333000", + "longitude": "28.60000000" + }, + { + "id": "38773", + "name": "Hirvensalmi", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.63333000", + "longitude": "26.80000000" + }, + { + "id": "38811", + "name": "Jäppilä", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "62.37899000", + "longitude": "27.43372000" + }, + { + "id": "38800", + "name": "Joroinen", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "62.17823000", + "longitude": "27.83165000" + }, + { + "id": "38806", + "name": "Juva", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.90000000", + "longitude": "27.85000000" + }, + { + "id": "38821", + "name": "Kangasniemi", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.99357000", + "longitude": "26.64785000" + }, + { + "id": "38846", + "name": "Kerimäki", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.91069000", + "longitude": "29.28228000" + }, + { + "id": "38947", + "name": "Mäntyharju", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.41667000", + "longitude": "26.88333000" + }, + { + "id": "38937", + "name": "Mikkeli", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.68857000", + "longitude": "27.27227000" + }, + { + "id": "38981", + "name": "Pertunmaa", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.50000000", + "longitude": "26.48333000" + }, + { + "id": "38983", + "name": "Pieksämäki", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "62.30000000", + "longitude": "27.13333000" + }, + { + "id": "38998", + "name": "Punkaharju", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.75883000", + "longitude": "29.38843000" + }, + { + "id": "39000", + "name": "Puumala", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.52728000", + "longitude": "28.17495000" + }, + { + "id": "39013", + "name": "Rantasalmi", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "62.06667000", + "longitude": "28.30000000" + }, + { + "id": "39024", + "name": "Ristiina", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.50579000", + "longitude": "27.24643000" + }, + { + "id": "39041", + "name": "Savonlinna", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.86990000", + "longitude": "28.87999000" + }, + { + "id": "39042", + "name": "Savonranta", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "62.18333000", + "longitude": "29.20000000" + }, + { + "id": "39057", + "name": "Sulkava", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "61.78691000", + "longitude": "28.37299000" + }, + { + "id": "39113", + "name": "Virtasalmi", + "state_id": 1495, + "state_code": "04", + "country_id": 74, + "country_code": "FI", + "latitude": "62.12695000", + "longitude": "27.46276000" + }, + { + "id": "38752", + "name": "Forssa", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.81462000", + "longitude": "23.62146000" + }, + { + "id": "38764", + "name": "Hauho", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "61.17255000", + "longitude": "24.56303000" + }, + { + "id": "38767", + "name": "Hausjärvi", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.78333000", + "longitude": "24.93333000" + }, + { + "id": "38781", + "name": "Hämeenlinna", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.99596000", + "longitude": "24.46434000" + }, + { + "id": "38777", + "name": "Humppila", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.93333000", + "longitude": "23.36667000" + }, + { + "id": "38797", + "name": "Janakkala", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.90000000", + "longitude": "24.60000000" + }, + { + "id": "38799", + "name": "Jokioinen", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.80162000", + "longitude": "23.48004000" + }, + { + "id": "38819", + "name": "Kalvola", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "61.10081000", + "longitude": "24.12177000" + }, + { + "id": "38895", + "name": "Lammi", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "61.08333000", + "longitude": "25.01667000" + }, + { + "id": "38919", + "name": "Loppi", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.71667000", + "longitude": "24.45000000" + }, + { + "id": "39021", + "name": "Renko", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.89563000", + "longitude": "24.28785000" + }, + { + "id": "39023", + "name": "Riihimäki", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.73769000", + "longitude": "24.77726000" + }, + { + "id": "39070", + "name": "Tammela", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.81035000", + "longitude": "23.76823000" + }, + { + "id": "39073", + "name": "Tervakoski", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.81412000", + "longitude": "24.62594000" + }, + { + "id": "39082", + "name": "Tuulos", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "61.15000000", + "longitude": "24.80000000" + }, + { + "id": "39129", + "name": "Ypäjä", + "state_id": 1493, + "state_code": "06", + "country_id": 74, + "country_code": "FI", + "latitude": "60.80000000", + "longitude": "23.28333000" + }, + { + "id": "38739", + "name": "Askola", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.53333000", + "longitude": "25.60000000" + }, + { + "id": "38743", + "name": "Ekenäs", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "59.97359000", + "longitude": "23.43389000" + }, + { + "id": "38748", + "name": "Espoo", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.20520000", + "longitude": "24.65220000" + }, + { + "id": "38753", + "name": "Gumböle", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.21948000", + "longitude": "24.61684000" + }, + { + "id": "38761", + "name": "Hanko", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "59.83333000", + "longitude": "22.95000000" + }, + { + "id": "38770", + "name": "Helsinki", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.16952000", + "longitude": "24.93545000" + }, + { + "id": "38779", + "name": "Hyvinge", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.63333000", + "longitude": "24.86667000" + }, + { + "id": "38789", + "name": "Ingå", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.04587000", + "longitude": "24.00459000" + }, + { + "id": "38812", + "name": "Järvenpää", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.47369000", + "longitude": "25.08992000" + }, + { + "id": "38813", + "name": "Kaarela", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.25174000", + "longitude": "24.88111000" + }, + { + "id": "38818", + "name": "Kallio", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.18427000", + "longitude": "24.95034000" + }, + { + "id": "38828", + "name": "Karis", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.07178000", + "longitude": "23.66163000" + }, + { + "id": "38829", + "name": "Karjalohja", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.24015000", + "longitude": "23.71789000" + }, + { + "id": "38830", + "name": "Karkkila", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.53418000", + "longitude": "24.20977000" + }, + { + "id": "38837", + "name": "Kauniainen", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.21209000", + "longitude": "24.72756000" + }, + { + "id": "38889", + "name": "Kärkölä", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.61292000", + "longitude": "23.94196000" + }, + { + "id": "38840", + "name": "Kellokoski", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.53271000", + "longitude": "25.10917000" + }, + { + "id": "38845", + "name": "Kerava", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.40338000", + "longitude": "25.10500000" + }, + { + "id": "38853", + "name": "Kilo", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.21746000", + "longitude": "24.78151000" + }, + { + "id": "38856", + "name": "Kirkkonummi", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.12381000", + "longitude": "24.43853000" + }, + { + "id": "38873", + "name": "Koukkuniemi", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.15261000", + "longitude": "24.76467000" + }, + { + "id": "38896", + "name": "Lapinjärvi", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.62443000", + "longitude": "26.19720000" + }, + { + "id": "38904", + "name": "Lauttasaari", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.15896000", + "longitude": "24.86797000" + }, + { + "id": "38914", + "name": "Liljendal", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.57346000", + "longitude": "26.05257000" + }, + { + "id": "38917", + "name": "Lohja", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.24859000", + "longitude": "24.06534000" + }, + { + "id": "38920", + "name": "Lovisa", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.45659000", + "longitude": "26.22505000" + }, + { + "id": "38946", + "name": "Mäntsälä", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.63333000", + "longitude": "25.31667000" + }, + { + "id": "38931", + "name": "Mellunkylä", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.23355000", + "longitude": "25.09947000" + }, + { + "id": "38940", + "name": "Munkkiniemi", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.19861000", + "longitude": "24.87772000" + }, + { + "id": "38945", + "name": "Myrskylä", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.66965000", + "longitude": "25.84750000" + }, + { + "id": "38958", + "name": "Nurmijärvi", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.46407000", + "longitude": "24.80730000" + }, + { + "id": "38964", + "name": "Otaniemi", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.18395000", + "longitude": "24.82786000" + }, + { + "id": "38979", + "name": "Pernå", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.44869000", + "longitude": "26.03187000" + }, + { + "id": "38988", + "name": "Pohja", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.09626000", + "longitude": "23.52757000" + }, + { + "id": "38992", + "name": "Pornainen", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.47581000", + "longitude": "25.37490000" + }, + { + "id": "38993", + "name": "Porvoo", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.39233000", + "longitude": "25.66507000" + }, + { + "id": "38996", + "name": "Pukkila", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.65000000", + "longitude": "25.56667000" + }, + { + "id": "39011", + "name": "Raaseporin", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.00273000", + "longitude": "23.55499000" + }, + { + "id": "39029", + "name": "Ruotsinpyhtää", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.52680000", + "longitude": "26.46203000" + }, + { + "id": "39038", + "name": "Sammatti", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.31991000", + "longitude": "23.82085000" + }, + { + "id": "39045", + "name": "Sibbo", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.37752000", + "longitude": "25.26906000" + }, + { + "id": "39051", + "name": "Siuntio", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.13862000", + "longitude": "24.22715000" + }, + { + "id": "39085", + "name": "Tuusula", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.40368000", + "longitude": "25.02638000" + }, + { + "id": "39099", + "name": "Vantaa", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.29414000", + "longitude": "25.04099000" + }, + { + "id": "39109", + "name": "Vihti", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.41699000", + "longitude": "24.31965000" + }, + { + "id": "39116", + "name": "Vuosaari", + "state_id": 1510, + "state_code": "18", + "country_id": 74, + "country_code": "FI", + "latitude": "60.20963000", + "longitude": "25.14195000" + }, + { + "id": "39243", + "name": "Abondance", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.27874000", + "longitude": "6.72105000" + }, + { + "id": "39246", + "name": "Abrest", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.09859000", + "longitude": "3.44461000" + }, + { + "id": "39273", + "name": "Aigueblanche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.50455000", + "longitude": "6.50184000" + }, + { + "id": "39275", + "name": "Aigueperse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02255000", + "longitude": "3.20228000" + }, + { + "id": "39285", + "name": "Aime", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55559000", + "longitude": "6.65042000" + }, + { + "id": "39286", + "name": "Ainay-le-Château", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71125000", + "longitude": "2.69238000" + }, + { + "id": "39291", + "name": "Aiton", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56123000", + "longitude": "6.25955000" + }, + { + "id": "39295", + "name": "Aix-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69173000", + "longitude": "5.90863000" + }, + { + "id": "39301", + "name": "Alba-la-Romaine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55537000", + "longitude": "4.59846000" + }, + { + "id": "39302", + "name": "Albens", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.78786000", + "longitude": "5.94528000" + }, + { + "id": "39304", + "name": "Albertville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67452000", + "longitude": "6.39061000" + }, + { + "id": "39307", + "name": "Albigny-sur-Saône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86667000", + "longitude": "4.83333000" + }, + { + "id": "39309", + "name": "Alby-sur-Chéran", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81667000", + "longitude": "6.01667000" + }, + { + "id": "39315", + "name": "Alissas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.71253000", + "longitude": "4.62936000" + }, + { + "id": "39316", + "name": "Alixan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.97426000", + "longitude": "5.02850000" + }, + { + "id": "39319", + "name": "Allan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.49713000", + "longitude": "4.79068000" + }, + { + "id": "39320", + "name": "Allanche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22907000", + "longitude": "2.93449000" + }, + { + "id": "39333", + "name": "Allègre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.19959000", + "longitude": "3.71174000" + }, + { + "id": "39325", + "name": "Allevard", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39449000", + "longitude": "6.07519000" + }, + { + "id": "39326", + "name": "Allex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.76765000", + "longitude": "4.89837000" + }, + { + "id": "39328", + "name": "Allières-et-Risset", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.09934000", + "longitude": "5.67924000" + }, + { + "id": "39327", + "name": "Allinges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33547000", + "longitude": "6.46350000" + }, + { + "id": "39331", + "name": "Allonzier-la-Caille", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.00117000", + "longitude": "6.11865000" + }, + { + "id": "39344", + "name": "Amancy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07294000", + "longitude": "6.32890000" + }, + { + "id": "39360", + "name": "Ambérieu-en-Bugey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95932000", + "longitude": "5.35160000" + }, + { + "id": "39361", + "name": "Ambérieux-en-Dombes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99894000", + "longitude": "4.90126000" + }, + { + "id": "39349", + "name": "Ambert", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54944000", + "longitude": "3.74164000" + }, + { + "id": "39350", + "name": "Ambierle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10558000", + "longitude": "3.89323000" + }, + { + "id": "39358", + "name": "Ambronay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.00467000", + "longitude": "5.36273000" + }, + { + "id": "39369", + "name": "Amplepuis", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.97260000", + "longitude": "4.33030000" + }, + { + "id": "39370", + "name": "Ampuis", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48925000", + "longitude": "4.81001000" + }, + { + "id": "39375", + "name": "Ancône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.58107000", + "longitude": "4.72711000" + }, + { + "id": "39376", + "name": "Andance", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.24059000", + "longitude": "4.79916000" + }, + { + "id": "39377", + "name": "Andancette", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.24858000", + "longitude": "4.80860000" + }, + { + "id": "39391", + "name": "Andrézieux-Bouthéon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52625000", + "longitude": "4.26021000" + }, + { + "id": "39414", + "name": "Annecy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90878000", + "longitude": "6.12565000" + }, + { + "id": "39415", + "name": "Annecy-le-Vieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91971000", + "longitude": "6.14393000" + }, + { + "id": "39416", + "name": "Annemasse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.19439000", + "longitude": "6.23775000" + }, + { + "id": "39420", + "name": "Anneyron", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.27220000", + "longitude": "4.88626000" + }, + { + "id": "39423", + "name": "Annonay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.23992000", + "longitude": "4.67070000" + }, + { + "id": "39428", + "name": "Anse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.93553000", + "longitude": "4.71933000" + }, + { + "id": "39431", + "name": "Anthy-sur-Léman", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35534000", + "longitude": "6.42735000" + }, + { + "id": "39440", + "name": "Aoste", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59423000", + "longitude": "5.60712000" + }, + { + "id": "39441", + "name": "Aouste-sur-Sye", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.71813000", + "longitude": "5.05422000" + }, + { + "id": "39444", + "name": "Apprieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39591000", + "longitude": "5.49993000" + }, + { + "id": "39537", + "name": "Arâches-la-Frasse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.04297000", + "longitude": "6.63145000" + }, + { + "id": "39448", + "name": "Arbent", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29221000", + "longitude": "5.67890000" + }, + { + "id": "39460", + "name": "Archamps", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13195000", + "longitude": "6.12551000" + }, + { + "id": "39471", + "name": "Arenthon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10697000", + "longitude": "6.33316000" + }, + { + "id": "39487", + "name": "Arlanc", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.41389000", + "longitude": "3.72528000" + }, + { + "id": "39496", + "name": "Armoy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35079000", + "longitude": "6.51703000" + }, + { + "id": "39500", + "name": "Arnas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02361000", + "longitude": "4.70830000" + }, + { + "id": "39507", + "name": "Arpajon-sur-Cère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.90391000", + "longitude": "2.45664000" + }, + { + "id": "39514", + "name": "Ars-sur-Formans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99491000", + "longitude": "4.81986000" + }, + { + "id": "39519", + "name": "Artas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53717000", + "longitude": "5.16352000" + }, + { + "id": "39520", + "name": "Artemare", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87441000", + "longitude": "5.69366000" + }, + { + "id": "39522", + "name": "Arthaz-Pont-Notre-Dame", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15941000", + "longitude": "6.26598000" + }, + { + "id": "39563", + "name": "Attignat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.28562000", + "longitude": "5.16164000" + }, + { + "id": "39569", + "name": "Aubenas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.61975000", + "longitude": "4.39033000" + }, + { + "id": "39572", + "name": "Auberives-sur-Varèze", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.42080000", + "longitude": "4.81914000" + }, + { + "id": "39585", + "name": "Aubière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75082000", + "longitude": "3.11078000" + }, + { + "id": "39607", + "name": "Aulnat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79929000", + "longitude": "3.16743000" + }, + { + "id": "39624", + "name": "Aurec-sur-Loire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.36908000", + "longitude": "4.20161000" + }, + { + "id": "39630", + "name": "Aurillac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.92539000", + "longitude": "2.43983000" + }, + { + "id": "39637", + "name": "Autrans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.17605000", + "longitude": "5.54271000" + }, + { + "id": "39650", + "name": "Auzat-la-Combelle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45224000", + "longitude": "3.31825000" + }, + { + "id": "39659", + "name": "Aveize", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68243000", + "longitude": "4.47786000" + }, + { + "id": "39660", + "name": "Aveizieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56500000", + "longitude": "4.37071000" + }, + { + "id": "39663", + "name": "Avermes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58774000", + "longitude": "3.30720000" + }, + { + "id": "39685", + "name": "Aydat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66022000", + "longitude": "2.97316000" + }, + { + "id": "39690", + "name": "Ayse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08135000", + "longitude": "6.44550000" + }, + { + "id": "48036", + "name": "Ébreuil", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.11548000", + "longitude": "3.08677000" + }, + { + "id": "48038", + "name": "Échalas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55203000", + "longitude": "4.71544000" + }, + { + "id": "48039", + "name": "Échenevex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30923000", + "longitude": "6.03963000" + }, + { + "id": "48042", + "name": "Échirolles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14603000", + "longitude": "5.71441000" + }, + { + "id": "48056", + "name": "Écully", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77437000", + "longitude": "4.77758000" + }, + { + "id": "48069", + "name": "Épagny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.93584000", + "longitude": "6.08302000" + }, + { + "id": "48082", + "name": "Épinouze", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.31003000", + "longitude": "4.92936000" + }, + { + "id": "48106", + "name": "Étoile-sur-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83883000", + "longitude": "4.89050000" + }, + { + "id": "48109", + "name": "Étrembières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.17923000", + "longitude": "6.22725000" + }, + { + "id": "48118", + "name": "Évian-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.40111000", + "longitude": "6.58793000" + }, + { + "id": "48120", + "name": "Évires", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03783000", + "longitude": "6.22453000" + }, + { + "id": "39734", + "name": "Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.00956000", + "longitude": "3.77503000" + }, + { + "id": "39744", + "name": "Balan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83416000", + "longitude": "5.09930000" + }, + { + "id": "39748", + "name": "Balbigny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81913000", + "longitude": "4.19030000" + }, + { + "id": "39751", + "name": "Ballaison", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29842000", + "longitude": "6.32765000" + }, + { + "id": "39773", + "name": "Barberaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56179000", + "longitude": "5.94306000" + }, + { + "id": "39776", + "name": "Barby", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56810000", + "longitude": "5.97966000" + }, + { + "id": "39791", + "name": "Barraux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43176000", + "longitude": "5.97964000" + }, + { + "id": "39796", + "name": "Bas-en-Basset", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30599000", + "longitude": "4.10912000" + }, + { + "id": "39800", + "name": "Bassens", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.57555000", + "longitude": "5.93900000" + }, + { + "id": "40409", + "name": "Bâgé-la-Ville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31567000", + "longitude": "4.94086000" + }, + { + "id": "40421", + "name": "Béligneux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86775000", + "longitude": "5.12747000" + }, + { + "id": "39840", + "name": "Beauchastel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.82587000", + "longitude": "4.80305000" + }, + { + "id": "39843", + "name": "Beaucroissant", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34276000", + "longitude": "5.47102000" + }, + { + "id": "39846", + "name": "Beaufort", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71915000", + "longitude": "6.57331000" + }, + { + "id": "39849", + "name": "Beaujeu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15428000", + "longitude": "4.58826000" + }, + { + "id": "39856", + "name": "Beaulon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60156000", + "longitude": "3.67314000" + }, + { + "id": "39859", + "name": "Beaumont", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75165000", + "longitude": "3.08294000" + }, + { + "id": "39870", + "name": "Beaumont-lès-Valence", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.86203000", + "longitude": "4.94309000" + }, + { + "id": "39862", + "name": "Beaumont-Monteux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01980000", + "longitude": "4.91883000" + }, + { + "id": "39882", + "name": "Beaurepaire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33658000", + "longitude": "5.04878000" + }, + { + "id": "39885", + "name": "Beausemblant", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21706000", + "longitude": "4.83241000" + }, + { + "id": "39891", + "name": "Beauvallon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85593000", + "longitude": "4.90756000" + }, + { + "id": "39892", + "name": "Beauvoir-de-Marc", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52009000", + "longitude": "5.07906000" + }, + { + "id": "39897", + "name": "Beauzac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25913000", + "longitude": "4.09874000" + }, + { + "id": "39911", + "name": "Belle-Plagne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.50932000", + "longitude": "6.70685000" + }, + { + "id": "39914", + "name": "Bellegarde-en-Forez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64469000", + "longitude": "4.29721000" + }, + { + "id": "39915", + "name": "Bellegarde-sur-Valserine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10787000", + "longitude": "5.82421000" + }, + { + "id": "39916", + "name": "Bellenaves", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20045000", + "longitude": "3.07995000" + }, + { + "id": "39919", + "name": "Bellerive-sur-Allier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.11652000", + "longitude": "3.40406000" + }, + { + "id": "39921", + "name": "Bellevaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25875000", + "longitude": "6.53351000" + }, + { + "id": "39922", + "name": "Belleville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10867000", + "longitude": "4.74920000" + }, + { + "id": "39927", + "name": "Belley", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75917000", + "longitude": "5.68813000" + }, + { + "id": "39928", + "name": "Bellignat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.24237000", + "longitude": "5.62843000" + }, + { + "id": "39932", + "name": "Belmont-de-la-Loire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16596000", + "longitude": "4.34737000" + }, + { + "id": "39955", + "name": "Bernin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.26772000", + "longitude": "5.86457000" + }, + { + "id": "39975", + "name": "Bessay-sur-Allier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.44199000", + "longitude": "3.36257000" + }, + { + "id": "39976", + "name": "Besse-et-Saint-Anastaise", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.51667000", + "longitude": "2.93333000" + }, + { + "id": "39978", + "name": "Bessenay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77661000", + "longitude": "4.55441000" + }, + { + "id": "40000", + "name": "Beynost", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83569000", + "longitude": "4.99910000" + }, + { + "id": "40020", + "name": "Bilieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.44809000", + "longitude": "5.54268000" + }, + { + "id": "40021", + "name": "Billom", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72267000", + "longitude": "3.33869000" + }, + { + "id": "40028", + "name": "Biol", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.49140000", + "longitude": "5.38550000" + }, + { + "id": "40036", + "name": "Biviers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.23333000", + "longitude": "5.80000000" + }, + { + "id": "40042", + "name": "Blacé", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03152000", + "longitude": "4.64448000" + }, + { + "id": "40056", + "name": "Blanzat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82975000", + "longitude": "3.07794000" + }, + { + "id": "40061", + "name": "Blavozy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.05720000", + "longitude": "3.97993000" + }, + { + "id": "40245", + "name": "Boëge", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20711000", + "longitude": "6.40428000" + }, + { + "id": "40246", + "name": "Boën-sur-Lignon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75114000", + "longitude": "4.00725000" + }, + { + "id": "40117", + "name": "Bonne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.17207000", + "longitude": "6.32443000" + }, + { + "id": "40118", + "name": "Bonnefamille", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59956000", + "longitude": "5.12489000" + }, + { + "id": "40126", + "name": "Bonneville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08020000", + "longitude": "6.40726000" + }, + { + "id": "40131", + "name": "Bons-en-Chablais", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26486000", + "longitude": "6.37129000" + }, + { + "id": "40132", + "name": "Bonson", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52291000", + "longitude": "4.21270000" + }, + { + "id": "40168", + "name": "Boulieu-lès-Annonay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.27065000", + "longitude": "4.66645000" + }, + { + "id": "40179", + "name": "Bourbon-l’Archambault", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58324000", + "longitude": "3.05652000" + }, + { + "id": "40187", + "name": "Bourg-Argental", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.29899000", + "longitude": "4.56830000" + }, + { + "id": "40191", + "name": "Bourg-de-Péage", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03151000", + "longitude": "5.04993000" + }, + { + "id": "40192", + "name": "Bourg-de-Thizy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03371000", + "longitude": "4.29904000" + }, + { + "id": "40194", + "name": "Bourg-en-Bresse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20574000", + "longitude": "5.22580000" + }, + { + "id": "40196", + "name": "Bourg-lès-Valence", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.94703000", + "longitude": "4.89463000" + }, + { + "id": "40189", + "name": "Bourg-Saint-Andéol", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.37338000", + "longitude": "4.64413000" + }, + { + "id": "40190", + "name": "Bourg-Saint-Maurice", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61463000", + "longitude": "6.76845000" + }, + { + "id": "40204", + "name": "Bourgoin-Jallieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58611000", + "longitude": "5.27361000" + }, + { + "id": "40210", + "name": "Bournoncle-Saint-Pierre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34351000", + "longitude": "3.31830000" + }, + { + "id": "40226", + "name": "Bouvesse-Quirieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79310000", + "longitude": "5.41496000" + }, + { + "id": "40242", + "name": "Bozel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.44288000", + "longitude": "6.64896000" + }, + { + "id": "40262", + "name": "Brassac-les-Mines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.41407000", + "longitude": "3.32900000" + }, + { + "id": "40363", + "name": "Brézins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35213000", + "longitude": "5.30539000" + }, + { + "id": "40330", + "name": "Brié-et-Angonnes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12418000", + "longitude": "5.78374000" + }, + { + "id": "40309", + "name": "Briennon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15127000", + "longitude": "4.07690000" + }, + { + "id": "40312", + "name": "Brignais", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67383000", + "longitude": "4.75418000" + }, + { + "id": "40316", + "name": "Brindas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72111000", + "longitude": "4.69349000" + }, + { + "id": "40321", + "name": "Brioude", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.29419000", + "longitude": "3.38423000" + }, + { + "id": "40325", + "name": "Brison-Saint-Innocent", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72440000", + "longitude": "5.88895000" + }, + { + "id": "40328", + "name": "Brives-Charensac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04780000", + "longitude": "3.92878000" + }, + { + "id": "40337", + "name": "Broût-Vernet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18756000", + "longitude": "3.27324000" + }, + { + "id": "40332", + "name": "Bron", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73865000", + "longitude": "4.91303000" + }, + { + "id": "40341", + "name": "Brugheas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07676000", + "longitude": "3.36780000" + }, + { + "id": "40375", + "name": "Buellas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.21110000", + "longitude": "5.13220000" + }, + { + "id": "40379", + "name": "Buis-les-Baronnies", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.27647000", + "longitude": "5.27187000" + }, + { + "id": "40383", + "name": "Bully", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85113000", + "longitude": "4.58328000" + }, + { + "id": "40400", + "name": "Bussières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83570000", + "longitude": "4.27123000" + }, + { + "id": "40404", + "name": "Buxières-les-Mines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.46807000", + "longitude": "2.95994000" + }, + { + "id": "40465", + "name": "Cailloux-sur-Fontaines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85259000", + "longitude": "4.87473000" + }, + { + "id": "40477", + "name": "Caluire-et-Cuire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79462000", + "longitude": "4.84640000" + }, + { + "id": "40516", + "name": "Cantal", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13985000", + "longitude": "2.64947000" + }, + { + "id": "41389", + "name": "Cébazat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83140000", + "longitude": "3.09992000" + }, + { + "id": "41397", + "name": "Cérilly", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.61791000", + "longitude": "2.82080000" + }, + { + "id": "40634", + "name": "Celles-sur-Durolle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85829000", + "longitude": "3.63540000" + }, + { + "id": "40636", + "name": "Cellieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.51866000", + "longitude": "4.54332000" + }, + { + "id": "40655", + "name": "Certines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13244000", + "longitude": "5.26525000" + }, + { + "id": "40659", + "name": "Cessieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56371000", + "longitude": "5.37607000" + }, + { + "id": "40662", + "name": "Cessy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.32032000", + "longitude": "6.07477000" + }, + { + "id": "40665", + "name": "Ceyrat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73265000", + "longitude": "3.06323000" + }, + { + "id": "40667", + "name": "Ceyzériat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18126000", + "longitude": "5.31977000" + }, + { + "id": "40669", + "name": "Chabeuil", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.89843000", + "longitude": "5.01438000" + }, + { + "id": "40671", + "name": "Chabreloche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87900000", + "longitude": "3.69664000" + }, + { + "id": "40674", + "name": "Chadrac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06181000", + "longitude": "3.90261000" + }, + { + "id": "40686", + "name": "Chalamont", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99734000", + "longitude": "5.16865000" + }, + { + "id": "40688", + "name": "Chaleins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03165000", + "longitude": "4.80789000" + }, + { + "id": "40694", + "name": "Challes-les-Eaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54685000", + "longitude": "5.98098000" + }, + { + "id": "40695", + "name": "Challex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18458000", + "longitude": "5.97639000" + }, + { + "id": "40700", + "name": "Chamagnieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68249000", + "longitude": "5.16947000" + }, + { + "id": "40701", + "name": "Chamalières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77364000", + "longitude": "3.06703000" + }, + { + "id": "40713", + "name": "Chambéry", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56628000", + "longitude": "5.92079000" + }, + { + "id": "40714", + "name": "Chambœuf", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58333000", + "longitude": "4.31667000" + }, + { + "id": "40717", + "name": "Chamonix-Mont-Blanc", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92375000", + "longitude": "6.86933000" + }, + { + "id": "40718", + "name": "Champ-sur-Drac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06940000", + "longitude": "5.73151000" + }, + { + "id": "40719", + "name": "Champagnac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35660000", + "longitude": "2.39942000" + }, + { + "id": "40721", + "name": "Champagne-au-Mont-d’Or", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79475000", + "longitude": "4.79079000" + }, + { + "id": "40725", + "name": "Champagnier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11155000", + "longitude": "5.72716000" + }, + { + "id": "40732", + "name": "Champdieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64533000", + "longitude": "4.04705000" + }, + { + "id": "40733", + "name": "Champeix", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58863000", + "longitude": "3.12878000" + }, + { + "id": "40738", + "name": "Champier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45540000", + "longitude": "5.29237000" + }, + { + "id": "40749", + "name": "Champs-sur-Tarentaine-Marchal", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40000000", + "longitude": "2.56667000" + }, + { + "id": "40756", + "name": "Chanas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.31881000", + "longitude": "4.81849000" + }, + { + "id": "40760", + "name": "Chandon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14925000", + "longitude": "4.21393000" + }, + { + "id": "40765", + "name": "Chanonat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69299000", + "longitude": "3.09351000" + }, + { + "id": "40766", + "name": "Chanos-Curson", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06057000", + "longitude": "4.92381000" + }, + { + "id": "40769", + "name": "Chantelle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.23806000", + "longitude": "3.15318000" + }, + { + "id": "40781", + "name": "Chapareillan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.46513000", + "longitude": "5.99171000" + }, + { + "id": "40782", + "name": "Chapdes-Beaufort", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89277000", + "longitude": "2.86362000" + }, + { + "id": "40784", + "name": "Chaponnay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62762000", + "longitude": "4.93615000" + }, + { + "id": "40785", + "name": "Chaponost", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71020000", + "longitude": "4.74221000" + }, + { + "id": "40786", + "name": "Chappes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86848000", + "longitude": "3.22068000" + }, + { + "id": "40788", + "name": "Charantonnay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53705000", + "longitude": "5.11005000" + }, + { + "id": "40789", + "name": "Charavines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.42891000", + "longitude": "5.51492000" + }, + { + "id": "40790", + "name": "Charbonnières-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.78053000", + "longitude": "4.74637000" + }, + { + "id": "40791", + "name": "Charbonnières-les-Varennes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90786000", + "longitude": "2.99976000" + }, + { + "id": "40793", + "name": "Charentay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08897000", + "longitude": "4.67921000" + }, + { + "id": "40803", + "name": "Charlieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16202000", + "longitude": "4.17228000" + }, + { + "id": "40804", + "name": "Charly", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64887000", + "longitude": "4.79461000" + }, + { + "id": "40808", + "name": "Charmes-sur-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.86367000", + "longitude": "4.83533000" + }, + { + "id": "40809", + "name": "Charnay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89058000", + "longitude": "4.66821000" + }, + { + "id": "40813", + "name": "Charnècles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34398000", + "longitude": "5.52799000" + }, + { + "id": "40822", + "name": "Charvieu-Chavagneux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75000000", + "longitude": "5.15000000" + }, + { + "id": "40824", + "name": "Chassagny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60670000", + "longitude": "4.73214000" + }, + { + "id": "40825", + "name": "Chasse-sur-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.57850000", + "longitude": "4.80985000" + }, + { + "id": "40826", + "name": "Chasselay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87440000", + "longitude": "4.77237000" + }, + { + "id": "40829", + "name": "Chassieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74584000", + "longitude": "4.97088000" + }, + { + "id": "40832", + "name": "Chatte", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14248000", + "longitude": "5.28224000" + }, + { + "id": "40833", + "name": "Chatuzange-le-Goubet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.00359000", + "longitude": "5.09079000" + }, + { + "id": "40836", + "name": "Chaudes-Aigues", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85455000", + "longitude": "3.00406000" + }, + { + "id": "40851", + "name": "Chauriat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75127000", + "longitude": "3.27895000" + }, + { + "id": "40857", + "name": "Chavanay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.41647000", + "longitude": "4.72602000" + }, + { + "id": "40858", + "name": "Chavanod", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89005000", + "longitude": "6.03928000" + }, + { + "id": "40859", + "name": "Chavanoz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76846000", + "longitude": "5.18808000" + }, + { + "id": "40865", + "name": "Chazelles-sur-Lyon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63779000", + "longitude": "4.38890000" + }, + { + "id": "40866", + "name": "Chazey-sur-Ain", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89300000", + "longitude": "5.25352000" + }, + { + "id": "40931", + "name": "Châbons", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.44282000", + "longitude": "5.42542000" + }, + { + "id": "40938", + "name": "Château-Gaillard", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.97239000", + "longitude": "5.30436000" + }, + { + "id": "40955", + "name": "Châteaugay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85117000", + "longitude": "3.08482000" + }, + { + "id": "40959", + "name": "Châteauneuf", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52457000", + "longitude": "4.64044000" + }, + { + "id": "40962", + "name": "Châteauneuf-de-Galaure", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22977000", + "longitude": "4.95777000" + }, + { + "id": "40965", + "name": "Châteauneuf-du-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.48906000", + "longitude": "4.71706000" + }, + { + "id": "40973", + "name": "Châteauneuf-sur-Isère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01667000", + "longitude": "4.93333000" + }, + { + "id": "40980", + "name": "Châtel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26495000", + "longitude": "6.84030000" + }, + { + "id": "40981", + "name": "Châtel-Guyon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92258000", + "longitude": "3.06423000" + }, + { + "id": "40991", + "name": "Châtillon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80091000", + "longitude": "5.84352000" + }, + { + "id": "40995", + "name": "Châtillon-en-Michaille", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14320000", + "longitude": "5.79950000" + }, + { + "id": "40997", + "name": "Châtillon-la-Palud", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.97171000", + "longitude": "5.25290000" + }, + { + "id": "40999", + "name": "Châtillon-sur-Chalaronne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.11834000", + "longitude": "4.95656000" + }, + { + "id": "41001", + "name": "Châtillon-sur-Cluses", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08765000", + "longitude": "6.58041000" + }, + { + "id": "41007", + "name": "Châtonnay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48734000", + "longitude": "5.21168000" + }, + { + "id": "40876", + "name": "Chens-sur-Léman", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.32459000", + "longitude": "6.27075000" + }, + { + "id": "40888", + "name": "Chessy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88716000", + "longitude": "4.62339000" + }, + { + "id": "40903", + "name": "Chevry", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.28136000", + "longitude": "6.03873000" + }, + { + "id": "40908", + "name": "Chilly", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99185000", + "longitude": "5.95477000" + }, + { + "id": "40910", + "name": "Chimilin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.57490000", + "longitude": "5.59569000" + }, + { + "id": "40911", + "name": "Chindrieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81948000", + "longitude": "5.85024000" + }, + { + "id": "40914", + "name": "Chirens", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.41024000", + "longitude": "5.55634000" + }, + { + "id": "40920", + "name": "Choisy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99359000", + "longitude": "6.05866000" + }, + { + "id": "40925", + "name": "Chomérac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.70752000", + "longitude": "4.66164000" + }, + { + "id": "40930", + "name": "Chuzelles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58481000", + "longitude": "4.87703000" + }, + { + "id": "41030", + "name": "Civens", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77964000", + "longitude": "4.25170000" + }, + { + "id": "41033", + "name": "Civrieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92086000", + "longitude": "4.88249000" + }, + { + "id": "41038", + "name": "Claix", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11994000", + "longitude": "5.67292000" + }, + { + "id": "41073", + "name": "Clérieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.07591000", + "longitude": "4.95983000" + }, + { + "id": "41049", + "name": "Clermont-Ferrand", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77969000", + "longitude": "3.08682000" + }, + { + "id": "41059", + "name": "Clonas-sur-Varèze", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.41382000", + "longitude": "4.79077000" + }, + { + "id": "41064", + "name": "Cluses", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06251000", + "longitude": "6.57497000" + }, + { + "id": "41081", + "name": "Cognin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55952000", + "longitude": "5.89113000" + }, + { + "id": "41082", + "name": "Cogny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.98747000", + "longitude": "4.62475000" + }, + { + "id": "41086", + "name": "Coise", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52822000", + "longitude": "6.14389000" + }, + { + "id": "41088", + "name": "Coligny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.38252000", + "longitude": "5.34554000" + }, + { + "id": "41093", + "name": "Collonges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13819000", + "longitude": "5.90506000" + }, + { + "id": "41094", + "name": "Collonges-sous-Salève", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14160000", + "longitude": "6.15372000" + }, + { + "id": "41098", + "name": "Colombe", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40024000", + "longitude": "5.45441000" + }, + { + "id": "41109", + "name": "Combloux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89790000", + "longitude": "6.64420000" + }, + { + "id": "41113", + "name": "Combronde", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.98099000", + "longitude": "3.08807000" + }, + { + "id": "41117", + "name": "Commelle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.00086000", + "longitude": "4.05794000" + }, + { + "id": "41118", + "name": "Commentry", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.28876000", + "longitude": "2.74163000" + }, + { + "id": "41122", + "name": "Communay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60442000", + "longitude": "4.83488000" + }, + { + "id": "41130", + "name": "Condat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34093000", + "longitude": "2.75791000" + }, + { + "id": "41134", + "name": "Condrieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.46300000", + "longitude": "4.76765000" + }, + { + "id": "41154", + "name": "Contamine-sur-Arve", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14223000", + "longitude": "6.33215000" + }, + { + "id": "41162", + "name": "Corbas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66798000", + "longitude": "4.90198000" + }, + { + "id": "41166", + "name": "Corbelin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60733000", + "longitude": "5.54261000" + }, + { + "id": "41175", + "name": "Cordon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92099000", + "longitude": "6.60536000" + }, + { + "id": "41176", + "name": "Corenc", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21889000", + "longitude": "5.76497000" + }, + { + "id": "41186", + "name": "Cornas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96382000", + "longitude": "4.84839000" + }, + { + "id": "41192", + "name": "Cornier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.09304000", + "longitude": "6.29895000" + }, + { + "id": "41213", + "name": "Coublevie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35856000", + "longitude": "5.61146000" + }, + { + "id": "41214", + "name": "Coubon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.99731000", + "longitude": "3.91783000" + }, + { + "id": "41247", + "name": "Courchevel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.41538000", + "longitude": "6.63643000" + }, + { + "id": "41255", + "name": "Cournon-d’Auvergne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74123000", + "longitude": "3.19643000" + }, + { + "id": "41259", + "name": "Courpière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75689000", + "longitude": "3.54216000" + }, + { + "id": "41262", + "name": "Cours-la-Ville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10000000", + "longitude": "4.31667000" + }, + { + "id": "41273", + "name": "Courzieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74270000", + "longitude": "4.57084000" + }, + { + "id": "41282", + "name": "Coutouvre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07303000", + "longitude": "4.20535000" + }, + { + "id": "41285", + "name": "Coux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.73484000", + "longitude": "4.62057000" + }, + { + "id": "41287", + "name": "Couzon-au-Mont-d’Or", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84436000", + "longitude": "4.82883000" + }, + { + "id": "41295", + "name": "Cran-Gevrier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90000000", + "longitude": "6.10000000" + }, + { + "id": "41297", + "name": "Cranves-Sales", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18799000", + "longitude": "6.29903000" + }, + { + "id": "41299", + "name": "Craponne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74526000", + "longitude": "4.72322000" + }, + { + "id": "41300", + "name": "Craponne-sur-Arzon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33092000", + "longitude": "3.84817000" + }, + { + "id": "41347", + "name": "Crémieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72557000", + "longitude": "5.24911000" + }, + { + "id": "41309", + "name": "Crest", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.72639000", + "longitude": "5.01517000" + }, + { + "id": "41313", + "name": "Creuzier-le-Vieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16253000", + "longitude": "3.43311000" + }, + { + "id": "41315", + "name": "Creys-Mépieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73333000", + "longitude": "5.48333000" + }, + { + "id": "41326", + "name": "Crolles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.27724000", + "longitude": "5.87837000" + }, + { + "id": "41330", + "name": "Crottet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.27602000", + "longitude": "4.89388000" + }, + { + "id": "41335", + "name": "Cruas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.65706000", + "longitude": "4.76293000" + }, + { + "id": "41336", + "name": "Cruet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52890000", + "longitude": "6.09220000" + }, + { + "id": "41337", + "name": "Cruseilles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02980000", + "longitude": "6.10831000" + }, + { + "id": "41355", + "name": "Cublize", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.01810000", + "longitude": "4.37738000" + }, + { + "id": "41370", + "name": "Cuisiat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30021000", + "longitude": "5.38809000" + }, + { + "id": "41371", + "name": "Culhat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86259000", + "longitude": "3.33676000" + }, + { + "id": "41372", + "name": "Culoz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84886000", + "longitude": "5.78537000" + }, + { + "id": "41374", + "name": "Cunlhat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63198000", + "longitude": "3.55927000" + }, + { + "id": "41377", + "name": "Curtin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64353000", + "longitude": "5.48982000" + }, + { + "id": "41380", + "name": "Cussac-sur-Loire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.98807000", + "longitude": "3.88416000" + }, + { + "id": "41381", + "name": "Cusset", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13452000", + "longitude": "3.45639000" + }, + { + "id": "41383", + "name": "Cusy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76603000", + "longitude": "6.02825000" + }, + { + "id": "41387", + "name": "Cuzieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60764000", + "longitude": "4.25761000" + }, + { + "id": "41404", + "name": "Dagneux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85140000", + "longitude": "5.07780000" + }, + { + "id": "41407", + "name": "Dallet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77047000", + "longitude": "3.23875000" + }, + { + "id": "41432", + "name": "Dardilly", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80558000", + "longitude": "4.75319000" + }, + { + "id": "41442", + "name": "Davézieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25520000", + "longitude": "4.70744000" + }, + { + "id": "41600", + "name": "Décines-Charpieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76873000", + "longitude": "4.95883000" + }, + { + "id": "41608", + "name": "Département de l'Ain", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16667000", + "longitude": "5.33333000" + }, + { + "id": "41610", + "name": "Département de l'Allier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.50000000", + "longitude": "3.00000000" + }, + { + "id": "41611", + "name": "Département de l'Ardèche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.66667000", + "longitude": "4.33333000" + }, + { + "id": "41620", + "name": "Département de l'Isère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.16667000", + "longitude": "5.83333000" + }, + { + "id": "41627", + "name": "Département de la Drôme", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.69971000", + "longitude": "5.16521000" + }, + { + "id": "41630", + "name": "Département de la Loire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.47169000", + "longitude": "4.43298000" + }, + { + "id": "41643", + "name": "Département du Puy-de-Dôme", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70549000", + "longitude": "3.14600000" + }, + { + "id": "41644", + "name": "Département du Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89126000", + "longitude": "4.53039000" + }, + { + "id": "41648", + "name": "Désaignes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.99466000", + "longitude": "4.51695000" + }, + { + "id": "41649", + "name": "Désertines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35456000", + "longitude": "2.61924000" + }, + { + "id": "41452", + "name": "Denicé", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.00158000", + "longitude": "4.64555000" + }, + { + "id": "41499", + "name": "Diémoz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59099000", + "longitude": "5.08884000" + }, + { + "id": "41466", + "name": "Die", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.75360000", + "longitude": "5.37033000" + }, + { + "id": "41473", + "name": "Dieulefit", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.52563000", + "longitude": "5.06180000" + }, + { + "id": "41485", + "name": "Dingy-Saint-Clair", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90664000", + "longitude": "6.22554000" + }, + { + "id": "41489", + "name": "Diou", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53432000", + "longitude": "3.74453000" + }, + { + "id": "41497", + "name": "Divonne-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35710000", + "longitude": "6.13494000" + }, + { + "id": "41506", + "name": "Dolomieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60540000", + "longitude": "5.48571000" + }, + { + "id": "41511", + "name": "Domancy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91205000", + "longitude": "6.65271000" + }, + { + "id": "41512", + "name": "Domarin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58662000", + "longitude": "5.24599000" + }, + { + "id": "41526", + "name": "Domène", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20289000", + "longitude": "5.83335000" + }, + { + "id": "41527", + "name": "Domérat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.36036000", + "longitude": "2.53455000" + }, + { + "id": "41515", + "name": "Domessin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54739000", + "longitude": "5.70495000" + }, + { + "id": "41522", + "name": "Dompierre-sur-Besbre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.52214000", + "longitude": "3.68106000" + }, + { + "id": "41524", + "name": "Dompierre-sur-Veyle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07108000", + "longitude": "5.20232000" + }, + { + "id": "41537", + "name": "Donzère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.44246000", + "longitude": "4.71134000" + }, + { + "id": "41543", + "name": "Dortan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31973000", + "longitude": "5.66028000" + }, + { + "id": "41557", + "name": "Doussard", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77512000", + "longitude": "6.22553000" + }, + { + "id": "41558", + "name": "Douvaine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30544000", + "longitude": "6.30375000" + }, + { + "id": "41563", + "name": "Doyet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33558000", + "longitude": "2.79718000" + }, + { + "id": "41580", + "name": "Drumettaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66136000", + "longitude": "5.92191000" + }, + { + "id": "41591", + "name": "Dunières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21558000", + "longitude": "4.34471000" + }, + { + "id": "41597", + "name": "Durtol", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79621000", + "longitude": "3.05156000" + }, + { + "id": "41675", + "name": "Ennezat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89772000", + "longitude": "3.22348000" + }, + { + "id": "41682", + "name": "Entre-Deux-Guiers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43061000", + "longitude": "5.75209000" + }, + { + "id": "41684", + "name": "Enval", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89921000", + "longitude": "3.04981000" + }, + { + "id": "41713", + "name": "Escoutoux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81942000", + "longitude": "3.56336000" + }, + { + "id": "41717", + "name": "Espaly-Saint-Marcel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04790000", + "longitude": "3.86557000" + }, + { + "id": "41735", + "name": "Estivareilles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.42526000", + "longitude": "2.61872000" + }, + { + "id": "41736", + "name": "Estrablin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.51546000", + "longitude": "4.96173000" + }, + { + "id": "41740", + "name": "Etaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06835000", + "longitude": "6.29533000" + }, + { + "id": "41744", + "name": "Eurre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.75825000", + "longitude": "4.98843000" + }, + { + "id": "41751", + "name": "Eybens", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14771000", + "longitude": "5.75014000" + }, + { + "id": "41759", + "name": "Eyzin-Pinet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.47377000", + "longitude": "4.99845000" + }, + { + "id": "41772", + "name": "Fareins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.01913000", + "longitude": "4.76136000" + }, + { + "id": "41775", + "name": "Farnay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.49622000", + "longitude": "4.58311000" + }, + { + "id": "41782", + "name": "Faverges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75116000", + "longitude": "6.29151000" + }, + { + "id": "41783", + "name": "Faverges-de-la-Tour", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59068000", + "longitude": "5.52136000" + }, + { + "id": "42002", + "name": "Félines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.31668000", + "longitude": "4.72836000" + }, + { + "id": "42008", + "name": "Féternes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35582000", + "longitude": "6.54829000" + }, + { + "id": "41793", + "name": "Feigères", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.11228000", + "longitude": "6.07937000" + }, + { + "id": "41794", + "name": "Feillens", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33426000", + "longitude": "4.89146000" + }, + { + "id": "41801", + "name": "Ferney-Voltaire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25858000", + "longitude": "6.11063000" + }, + { + "id": "41814", + "name": "Feurs", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73337000", + "longitude": "4.22755000" + }, + { + "id": "41816", + "name": "Feyzin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67287000", + "longitude": "4.85894000" + }, + { + "id": "41820", + "name": "Fillinges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15944000", + "longitude": "6.34237000" + }, + { + "id": "41824", + "name": "Firminy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.38956000", + "longitude": "4.28860000" + }, + { + "id": "41826", + "name": "Fitilieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54744000", + "longitude": "5.56194000" + }, + { + "id": "41830", + "name": "Flaviac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.74777000", + "longitude": "4.67434000" + }, + { + "id": "41842", + "name": "Fleurie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.19219000", + "longitude": "4.69747000" + }, + { + "id": "41843", + "name": "Fleurieu-sur-Saône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86095000", + "longitude": "4.84633000" + }, + { + "id": "41866", + "name": "Foissiat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.37150000", + "longitude": "5.17525000" + }, + { + "id": "41876", + "name": "Fontaine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.19275000", + "longitude": "5.68821000" + }, + { + "id": "41889", + "name": "Fontaines-Saint-Martin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84420000", + "longitude": "4.85305000" + }, + { + "id": "41890", + "name": "Fontaines-sur-Saône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83572000", + "longitude": "4.84490000" + }, + { + "id": "41891", + "name": "Fontanil-Cornillon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25280000", + "longitude": "5.66308000" + }, + { + "id": "41892", + "name": "Fontannes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30149000", + "longitude": "3.76366000" + }, + { + "id": "41944", + "name": "Fraisses", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.38838000", + "longitude": "4.26373000" + }, + { + "id": "41946", + "name": "Francheleins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07440000", + "longitude": "4.80920000" + }, + { + "id": "41947", + "name": "Francheville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73637000", + "longitude": "4.76358000" + }, + { + "id": "41950", + "name": "Frangy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02000000", + "longitude": "5.93220000" + }, + { + "id": "41952", + "name": "Frans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99291000", + "longitude": "4.77820000" + }, + { + "id": "41967", + "name": "Froges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.27377000", + "longitude": "5.92098000" + }, + { + "id": "41974", + "name": "Frontenex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63335000", + "longitude": "6.31168000" + }, + { + "id": "41977", + "name": "Frontonas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64487000", + "longitude": "5.19701000" + }, + { + "id": "42016", + "name": "Gaillard", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18530000", + "longitude": "6.20693000" + }, + { + "id": "42030", + "name": "Gannat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.09987000", + "longitude": "3.19842000" + }, + { + "id": "42297", + "name": "Génissieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.08413000", + "longitude": "5.08133000" + }, + { + "id": "42059", + "name": "Gelles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76947000", + "longitude": "2.76309000" + }, + { + "id": "42061", + "name": "Genas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73131000", + "longitude": "5.00211000" + }, + { + "id": "42062", + "name": "Genay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89681000", + "longitude": "4.84091000" + }, + { + "id": "42077", + "name": "Gerzat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82581000", + "longitude": "3.14473000" + }, + { + "id": "42083", + "name": "Gex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33323000", + "longitude": "6.05766000" + }, + { + "id": "42111", + "name": "Gières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.17997000", + "longitude": "5.78935000" + }, + { + "id": "42095", + "name": "Gillonnay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39251000", + "longitude": "5.29413000" + }, + { + "id": "42096", + "name": "Gilly-sur-Isère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65917000", + "longitude": "6.35096000" + }, + { + "id": "42108", + "name": "Givors", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59063000", + "longitude": "4.76878000" + }, + { + "id": "42113", + "name": "Gleizé", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.98916000", + "longitude": "4.69708000" + }, + { + "id": "42123", + "name": "Goncelin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34428000", + "longitude": "5.97896000" + }, + { + "id": "42179", + "name": "Grandris", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03780000", + "longitude": "4.47526000" + }, + { + "id": "42182", + "name": "Grane", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.73255000", + "longitude": "4.92203000" + }, + { + "id": "42235", + "name": "Grésy-sur-Aix", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72311000", + "longitude": "5.92522000" + }, + { + "id": "42236", + "name": "Grésy-sur-Isère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59898000", + "longitude": "6.25358000" + }, + { + "id": "42237", + "name": "Grézieu-la-Varenne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74736000", + "longitude": "4.69037000" + }, + { + "id": "42197", + "name": "Grenay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66347000", + "longitude": "5.08031000" + }, + { + "id": "42200", + "name": "Grenoble", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.17869000", + "longitude": "5.71479000" + }, + { + "id": "42217", + "name": "Grièges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25619000", + "longitude": "4.84856000" + }, + { + "id": "42208", + "name": "Grignan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.41967000", + "longitude": "4.90785000" + }, + { + "id": "42210", + "name": "Grignon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65122000", + "longitude": "6.37795000" + }, + { + "id": "42211", + "name": "Grigny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60843000", + "longitude": "4.78976000" + }, + { + "id": "42219", + "name": "Groissiat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.22213000", + "longitude": "5.60775000" + }, + { + "id": "42220", + "name": "Groisy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.01008000", + "longitude": "6.16983000" + }, + { + "id": "42229", + "name": "Gruffy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.78897000", + "longitude": "6.05648000" + }, + { + "id": "42286", + "name": "Guéreins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10346000", + "longitude": "4.77275000" + }, + { + "id": "42259", + "name": "Guilherand-Granges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.93278000", + "longitude": "4.87372000" + }, + { + "id": "42343", + "name": "Haute-Loire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11001000", + "longitude": "3.83940000" + }, + { + "id": "42345", + "name": "Haute-Rivoire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71559000", + "longitude": "4.39633000" + }, + { + "id": "42346", + "name": "Haute-Savoie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06143000", + "longitude": "6.45374000" + }, + { + "id": "42349", + "name": "Hauterive", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08834000", + "longitude": "3.44626000" + }, + { + "id": "42350", + "name": "Hauterives", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25565000", + "longitude": "5.01904000" + }, + { + "id": "42352", + "name": "Hauteville-Lompnes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.97794000", + "longitude": "5.60114000" + }, + { + "id": "42372", + "name": "Herbeys", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14012000", + "longitude": "5.79289000" + }, + { + "id": "42393", + "name": "Heyrieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63186000", + "longitude": "5.06284000" + }, + { + "id": "42405", + "name": "Hières-sur-Amby", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79654000", + "longitude": "5.29333000" + }, + { + "id": "42436", + "name": "Huez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.08240000", + "longitude": "6.05878000" + }, + { + "id": "42443", + "name": "Huriel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.37299000", + "longitude": "2.47679000" + }, + { + "id": "42493", + "name": "Irigny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67313000", + "longitude": "4.82243000" + }, + { + "id": "42505", + "name": "Issoire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54422000", + "longitude": "3.24901000" + }, + { + "id": "42519", + "name": "Izeaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33473000", + "longitude": "5.42486000" + }, + { + "id": "42520", + "name": "Izernore", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.21352000", + "longitude": "5.55200000" + }, + { + "id": "42522", + "name": "Jacob-Bellecombette", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55763000", + "longitude": "5.91484000" + }, + { + "id": "42525", + "name": "Janneyrias", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75221000", + "longitude": "5.11277000" + }, + { + "id": "42531", + "name": "Jardin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.49638000", + "longitude": "4.90847000" + }, + { + "id": "42535", + "name": "Jarrie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11732000", + "longitude": "5.75957000" + }, + { + "id": "42538", + "name": "Jassans-Riottier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.98134000", + "longitude": "4.76140000" + }, + { + "id": "42539", + "name": "Jasseron", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.21316000", + "longitude": "5.32579000" + }, + { + "id": "42540", + "name": "Jaujac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.63695000", + "longitude": "4.25638000" + }, + { + "id": "42551", + "name": "Job", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61607000", + "longitude": "3.74542000" + }, + { + "id": "42555", + "name": "Jonage", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79638000", + "longitude": "5.04664000" + }, + { + "id": "42561", + "name": "Jons", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80823000", + "longitude": "5.08070000" + }, + { + "id": "42563", + "name": "Jonzieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.31355000", + "longitude": "4.36158000" + }, + { + "id": "42580", + "name": "Joyeuse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.47951000", + "longitude": "4.23778000" + }, + { + "id": "42588", + "name": "Jujurieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.04122000", + "longitude": "5.40855000" + }, + { + "id": "42595", + "name": "Jussac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.98764000", + "longitude": "2.42308000" + }, + { + "id": "42631", + "name": "La Balme-de-Sillingy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.96890000", + "longitude": "6.04187000" + }, + { + "id": "42658", + "name": "La Bâthie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62829000", + "longitude": "6.44900000" + }, + { + "id": "42659", + "name": "La Bâtie-Montgascon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.57745000", + "longitude": "5.52873000" + }, + { + "id": "42661", + "name": "La Bégude-de-Mazenc", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.54298000", + "longitude": "4.93403000" + }, + { + "id": "42642", + "name": "La Biolle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75846000", + "longitude": "5.92866000" + }, + { + "id": "42645", + "name": "La Boisse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84278000", + "longitude": "5.03639000" + }, + { + "id": "42650", + "name": "La Bourboule", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58829000", + "longitude": "2.73920000" + }, + { + "id": "42654", + "name": "La Bridoire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52504000", + "longitude": "5.74073000" + }, + { + "id": "42657", + "name": "La Buisse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34644000", + "longitude": "5.61435000" + }, + { + "id": "42726", + "name": "La Côte-Saint-André", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39447000", + "longitude": "5.25908000" + }, + { + "id": "42676", + "name": "La Chambre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35862000", + "longitude": "6.29978000" + }, + { + "id": "42692", + "name": "La Chapelle-de-la-Tour", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58484000", + "longitude": "5.46360000" + }, + { + "id": "42710", + "name": "La Clusaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90675000", + "longitude": "6.43445000" + }, + { + "id": "42754", + "name": "La Fouillouse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.50462000", + "longitude": "4.31524000" + }, + { + "id": "42762", + "name": "La Garde-Adhémar", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.39699000", + "longitude": "4.75759000" + }, + { + "id": "42771", + "name": "La Grand-Croix", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.50383000", + "longitude": "4.55915000" + }, + { + "id": "42808", + "name": "La Monnerie-le-Montel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87106000", + "longitude": "3.60110000" + }, + { + "id": "42817", + "name": "La Motte-d’Aveillans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96015000", + "longitude": "5.74409000" + }, + { + "id": "42815", + "name": "La Motte-Saint-Martin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95131000", + "longitude": "5.71814000" + }, + { + "id": "42816", + "name": "La Motte-Servolex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59702000", + "longitude": "5.86724000" + }, + { + "id": "42818", + "name": "La Mulatière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72818000", + "longitude": "4.81213000" + }, + { + "id": "42819", + "name": "La Mure", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.90145000", + "longitude": "5.78874000" + }, + { + "id": "42820", + "name": "La Murette", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37891000", + "longitude": "5.54200000" + }, + { + "id": "42825", + "name": "La Pacaudière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.17879000", + "longitude": "3.86252000" + }, + { + "id": "42841", + "name": "La Ravoire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56266000", + "longitude": "5.95826000" + }, + { + "id": "42845", + "name": "La Ricamarie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40536000", + "longitude": "4.36944000" + }, + { + "id": "42850", + "name": "La Roche-Blanche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70062000", + "longitude": "3.12629000" + }, + { + "id": "42856", + "name": "La Roche-de-Glun", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01336000", + "longitude": "4.84488000" + }, + { + "id": "42858", + "name": "La Roche-sur-Foron", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07111000", + "longitude": "6.30450000" + }, + { + "id": "42862", + "name": "La Rochette", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45758000", + "longitude": "6.11356000" + }, + { + "id": "42881", + "name": "La Séauve-sur-Semène", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.29554000", + "longitude": "4.25023000" + }, + { + "id": "42883", + "name": "La Talaudière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.47603000", + "longitude": "4.42607000" + }, + { + "id": "42885", + "name": "La Terrasse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.32052000", + "longitude": "5.92761000" + }, + { + "id": "42889", + "name": "La Tour", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13312000", + "longitude": "6.43109000" + }, + { + "id": "42890", + "name": "La Tour-de-Salvagny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81374000", + "longitude": "4.71670000" + }, + { + "id": "42892", + "name": "La Tour-du-Pin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56600000", + "longitude": "5.44487000" + }, + { + "id": "42893", + "name": "La Tour-en-Jarez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48347000", + "longitude": "4.39064000" + }, + { + "id": "42900", + "name": "La Tronche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20507000", + "longitude": "5.74629000" + }, + { + "id": "42908", + "name": "La Verpillière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63417000", + "longitude": "5.14560000" + }, + { + "id": "42918", + "name": "La Voulte-sur-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.79958000", + "longitude": "4.77925000" + }, + { + "id": "42940", + "name": "Labégude", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.64496000", + "longitude": "4.36939000" + }, + { + "id": "42933", + "name": "Lablachère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.46355000", + "longitude": "4.21439000" + }, + { + "id": "42946", + "name": "Lachapelle-sous-Aubenas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.56421000", + "longitude": "4.36393000" + }, + { + "id": "42957", + "name": "Lagnieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90237000", + "longitude": "5.34399000" + }, + { + "id": "42972", + "name": "Laiz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25054000", + "longitude": "4.88955000" + }, + { + "id": "42974", + "name": "Lalevade-d’Ardèche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.64780000", + "longitude": "4.32303000" + }, + { + "id": "42984", + "name": "Lamastre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.98672000", + "longitude": "4.57975000" + }, + { + "id": "42996", + "name": "Lamure-sur-Azergues", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06255000", + "longitude": "4.49195000" + }, + { + "id": "42998", + "name": "Lancrans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.12729000", + "longitude": "5.83277000" + }, + { + "id": "43021", + "name": "Langeac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.10028000", + "longitude": "3.49420000" + }, + { + "id": "43039", + "name": "Lanobre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43889000", + "longitude": "2.53443000" + }, + { + "id": "43045", + "name": "Lans-en-Vercors", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12852000", + "longitude": "5.58599000" + }, + { + "id": "43051", + "name": "Lantriac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.00050000", + "longitude": "4.00444000" + }, + { + "id": "43058", + "name": "Lapalisse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.24835000", + "longitude": "3.63605000" + }, + { + "id": "43063", + "name": "Lapte", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18593000", + "longitude": "4.21699000" + }, + { + "id": "43066", + "name": "Larajasse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61399000", + "longitude": "4.50113000" + }, + { + "id": "43070", + "name": "Larequille", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25189000", + "longitude": "2.70163000" + }, + { + "id": "43071", + "name": "Largentière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.54272000", + "longitude": "4.29342000" + }, + { + "id": "43078", + "name": "Laroquebrou", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96855000", + "longitude": "2.19158000" + }, + { + "id": "43080", + "name": "Larringes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.36919000", + "longitude": "6.57125000" + }, + { + "id": "43100", + "name": "Laussonne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96990000", + "longitude": "4.05204000" + }, + { + "id": "43112", + "name": "Lavault-Sainte-Anne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30999000", + "longitude": "2.60027000" + }, + { + "id": "43117", + "name": "Lavilledieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.57545000", + "longitude": "4.45314000" + }, + { + "id": "43700", + "name": "Lézigneux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56589000", + "longitude": "4.06542000" + }, + { + "id": "43709", + "name": "L’Étrat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48610000", + "longitude": "4.37586000" + }, + { + "id": "43705", + "name": "L’Isle-d’Abeau", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61960000", + "longitude": "5.22466000" + }, + { + "id": "43133", + "name": "Le Bois-d'Oingt", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91718000", + "longitude": "4.58259000" + }, + { + "id": "43137", + "name": "Le Bourg-d’Oisans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.05483000", + "longitude": "6.03366000" + }, + { + "id": "43139", + "name": "Le Bourget-du-Lac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65362000", + "longitude": "5.85490000" + }, + { + "id": "43145", + "name": "Le Breuil-sur-Couze", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.46860000", + "longitude": "3.26310000" + }, + { + "id": "43159", + "name": "Le Cendre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72240000", + "longitude": "3.18711000" + }, + { + "id": "43160", + "name": "Le Chambon-Feugerolles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39145000", + "longitude": "4.32149000" + }, + { + "id": "43161", + "name": "Le Chambon-sur-Lignon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06097000", + "longitude": "4.30241000" + }, + { + "id": "43163", + "name": "Le Champ-près-Froges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.28045000", + "longitude": "5.93977000" + }, + { + "id": "43166", + "name": "Le Cheylard", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.90623000", + "longitude": "4.42406000" + }, + { + "id": "43167", + "name": "Le Cheylas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37064000", + "longitude": "5.99277000" + }, + { + "id": "43171", + "name": "Le Coteau", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.01919000", + "longitude": "4.09230000" + }, + { + "id": "43174", + "name": "Le Crest", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68666000", + "longitude": "3.12735000" + }, + { + "id": "43179", + "name": "Le Donjon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35058000", + "longitude": "3.79269000" + }, + { + "id": "43194", + "name": "Le Grand-Bornand", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94211000", + "longitude": "6.43077000" + }, + { + "id": "43196", + "name": "Le Grand-Lemps", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39646000", + "longitude": "5.42010000" + }, + { + "id": "43202", + "name": "Le Gua", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01667000", + "longitude": "5.61667000" + }, + { + "id": "43224", + "name": "Le Mayet-de-Montagne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07091000", + "longitude": "3.66665000" + }, + { + "id": "43235", + "name": "Le Monastier-sur-Gazeille", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.93333000", + "longitude": "4.00000000" + }, + { + "id": "43288", + "name": "Le Péage-de-Roussillon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37380000", + "longitude": "4.79727000" + }, + { + "id": "43252", + "name": "Le Perréon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06316000", + "longitude": "4.60045000" + }, + { + "id": "43258", + "name": "Le Pin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45582000", + "longitude": "5.50497000" + }, + { + "id": "43273", + "name": "Le Pont-de-Beauvoisin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53694000", + "longitude": "5.67333000" + }, + { + "id": "43274", + "name": "Le Pont-de-Claix", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12321000", + "longitude": "5.69782000" + }, + { + "id": "43282", + "name": "Le Pouzin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.75173000", + "longitude": "4.74798000" + }, + { + "id": "43287", + "name": "Le Puy-en-Velay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04366000", + "longitude": "3.88523000" + }, + { + "id": "43299", + "name": "Le Sappey-en-Chartreuse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.26235000", + "longitude": "5.77476000" + }, + { + "id": "43307", + "name": "Le Teil", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.54531000", + "longitude": "4.68223000" + }, + { + "id": "43322", + "name": "Le Touvet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35909000", + "longitude": "5.95283000" + }, + { + "id": "43331", + "name": "Le Versoud", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21988000", + "longitude": "5.86502000" + }, + { + "id": "43348", + "name": "Lempdes-sur-Allagnon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.38333000", + "longitude": "3.28333000" + }, + { + "id": "43351", + "name": "Lent", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.12027000", + "longitude": "5.19352000" + }, + { + "id": "43352", + "name": "Lentigny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99391000", + "longitude": "3.97918000" + }, + { + "id": "43353", + "name": "Lentilly", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81873000", + "longitude": "4.66304000" + }, + { + "id": "43355", + "name": "Les Abrets", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54466000", + "longitude": "5.58021000" + }, + { + "id": "43359", + "name": "Les Allues", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43255000", + "longitude": "6.55558000" + }, + { + "id": "43361", + "name": "Les Ancizes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92524000", + "longitude": "2.81265000" + }, + { + "id": "43369", + "name": "Les Avenières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63632000", + "longitude": "5.56144000" + }, + { + "id": "43434", + "name": "Les Échelles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.44058000", + "longitude": "5.74866000" + }, + { + "id": "43382", + "name": "Les Côtes-d'Arey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45640000", + "longitude": "4.86660000" + }, + { + "id": "43377", + "name": "Les Chères", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88960000", + "longitude": "4.74261000" + }, + { + "id": "43380", + "name": "Les Contamines-Montjoie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82164000", + "longitude": "6.72865000" + }, + { + "id": "43383", + "name": "Les Deux Alpes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01160000", + "longitude": "6.12548000" + }, + { + "id": "43390", + "name": "Les Gets", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15522000", + "longitude": "6.66492000" + }, + { + "id": "43396", + "name": "Les Houches", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89267000", + "longitude": "6.80637000" + }, + { + "id": "43405", + "name": "Les Marches", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.50042000", + "longitude": "6.00381000" + }, + { + "id": "43406", + "name": "Les Martres-d'Artière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83333000", + "longitude": "3.26667000" + }, + { + "id": "43424", + "name": "Les Roches-de-Condrieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45281000", + "longitude": "4.76718000" + }, + { + "id": "43433", + "name": "Les Vans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.40522000", + "longitude": "4.13198000" + }, + { + "id": "43458", + "name": "Leyment", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92390000", + "longitude": "5.29241000" + }, + { + "id": "43461", + "name": "Lezoux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82689000", + "longitude": "3.37924000" + }, + { + "id": "43467", + "name": "Liergues", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.97138000", + "longitude": "4.66231000" + }, + { + "id": "43488", + "name": "Limas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.97558000", + "longitude": "4.70550000" + }, + { + "id": "43494", + "name": "Limonest", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83702000", + "longitude": "4.77188000" + }, + { + "id": "43511", + "name": "Lissieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86487000", + "longitude": "4.74221000" + }, + { + "id": "43517", + "name": "Livet-et-Gavet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.10782000", + "longitude": "5.93333000" + }, + { + "id": "43519", + "name": "Livron-sur-Drôme", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.77689000", + "longitude": "4.84180000" + }, + { + "id": "43541", + "name": "Loire-sur-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55000000", + "longitude": "4.80000000" + }, + { + "id": "43544", + "name": "Loisin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29227000", + "longitude": "6.31010000" + }, + { + "id": "43584", + "name": "Lorette", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.51105000", + "longitude": "4.58242000" + }, + { + "id": "43589", + "name": "Loriol-sur-Drôme", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.74703000", + "longitude": "4.81719000" + }, + { + "id": "43622", + "name": "Lovagny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90377000", + "longitude": "6.03281000" + }, + { + "id": "43624", + "name": "Loyettes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77663000", + "longitude": "5.20687000" + }, + { + "id": "43625", + "name": "Lozanne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85733000", + "longitude": "4.68070000" + }, + { + "id": "43633", + "name": "Lucenay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91274000", + "longitude": "4.70287000" + }, + { + "id": "43636", + "name": "Lucinges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.19181000", + "longitude": "6.31511000" + }, + { + "id": "43643", + "name": "Lugrin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.40208000", + "longitude": "6.65283000" + }, + { + "id": "43646", + "name": "Lumbin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30954000", + "longitude": "5.91505000" + }, + { + "id": "43658", + "name": "Lurcy-Lévis", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.72981000", + "longitude": "2.93829000" + }, + { + "id": "43662", + "name": "Lusigny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58776000", + "longitude": "3.49142000" + }, + { + "id": "43673", + "name": "Luzinay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58996000", + "longitude": "4.95891000" + }, + { + "id": "43677", + "name": "Lyaud", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33972000", + "longitude": "6.52595000" + }, + { + "id": "43678", + "name": "Lyon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74846000", + "longitude": "4.84671000" + }, + { + "id": "43710", + "name": "Mably", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06484000", + "longitude": "4.06014000" + }, + { + "id": "43715", + "name": "Maclas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.36289000", + "longitude": "4.68200000" + }, + { + "id": "43720", + "name": "Magland", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02064000", + "longitude": "6.62089000" + }, + { + "id": "43750", + "name": "Malataverne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.48525000", + "longitude": "4.75326000" + }, + { + "id": "43761", + "name": "Malintrat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81509000", + "longitude": "3.18603000" + }, + { + "id": "43762", + "name": "Malissard", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.89969000", + "longitude": "4.95384000" + }, + { + "id": "43787", + "name": "Manzat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.96160000", + "longitude": "2.94140000" + }, + { + "id": "43788", + "name": "Manziat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.36125000", + "longitude": "4.90580000" + }, + { + "id": "43795", + "name": "Marboz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.34290000", + "longitude": "5.25722000" + }, + { + "id": "43797", + "name": "Marcellaz-Albanais", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87546000", + "longitude": "5.99880000" + }, + { + "id": "43806", + "name": "Marcilly-le-Châtel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69590000", + "longitude": "4.03082000" + }, + { + "id": "43822", + "name": "Marennes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62089000", + "longitude": "4.91236000" + }, + { + "id": "43833", + "name": "Margencel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.34140000", + "longitude": "6.41416000" + }, + { + "id": "43839", + "name": "Marignier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.09014000", + "longitude": "6.50004000" + }, + { + "id": "43845", + "name": "Marin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.37941000", + "longitude": "6.52559000" + }, + { + "id": "43847", + "name": "Maringues", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92164000", + "longitude": "3.33029000" + }, + { + "id": "43852", + "name": "Marlhes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.28307000", + "longitude": "4.39616000" + }, + { + "id": "43862", + "name": "Marnaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06356000", + "longitude": "6.52653000" + }, + { + "id": "43877", + "name": "Marsac-en-Livradois", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.47886000", + "longitude": "3.72783000" + }, + { + "id": "43880", + "name": "Marsanne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.64204000", + "longitude": "4.87529000" + }, + { + "id": "43881", + "name": "Marsat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87645000", + "longitude": "3.08173000" + }, + { + "id": "43910", + "name": "Marthod", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72714000", + "longitude": "6.40299000" + }, + { + "id": "43912", + "name": "Martignat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20972000", + "longitude": "5.61049000" + }, + { + "id": "43933", + "name": "Massiac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25146000", + "longitude": "3.19735000" + }, + { + "id": "43934", + "name": "Massieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90984000", + "longitude": "4.83265000" + }, + { + "id": "43935", + "name": "Massongy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31807000", + "longitude": "6.33148000" + }, + { + "id": "43944", + "name": "Maubec", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56739000", + "longitude": "5.26371000" + }, + { + "id": "43956", + "name": "Mauriac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21899000", + "longitude": "2.33353000" + }, + { + "id": "43958", + "name": "Maurs", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.71065000", + "longitude": "2.19797000" + }, + { + "id": "43960", + "name": "Mauves", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03833000", + "longitude": "4.82934000" + }, + { + "id": "43966", + "name": "Maxilly-sur-Léman", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.39828000", + "longitude": "6.63113000" + }, + { + "id": "43974", + "name": "Mazet-Saint-Voy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04696000", + "longitude": "4.24414000" + }, + { + "id": "44452", + "name": "Mâcot-la-Plagne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55000000", + "longitude": "6.66667000" + }, + { + "id": "44454", + "name": "Méaudre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13020000", + "longitude": "5.52853000" + }, + { + "id": "44467", + "name": "Ménétrol", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87155000", + "longitude": "3.12422000" + }, + { + "id": "44470", + "name": "Méribel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.41497000", + "longitude": "6.56500000" + }, + { + "id": "44477", + "name": "Méry", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64139000", + "longitude": "5.93550000" + }, + { + "id": "44492", + "name": "Mézériat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.23701000", + "longitude": "5.04615000" + }, + { + "id": "43984", + "name": "Megève", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85687000", + "longitude": "6.61775000" + }, + { + "id": "43989", + "name": "Meillonnas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.24367000", + "longitude": "5.35019000" + }, + { + "id": "44004", + "name": "Mens", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.81557000", + "longitude": "5.75146000" + }, + { + "id": "44006", + "name": "Menthon-Saint-Bernard", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85995000", + "longitude": "6.19552000" + }, + { + "id": "44011", + "name": "Mercurol-Veaunes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.07437000", + "longitude": "4.89279000" + }, + { + "id": "44012", + "name": "Mercury", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67452000", + "longitude": "6.33688000" + }, + { + "id": "44035", + "name": "Messeix", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61702000", + "longitude": "2.54157000" + }, + { + "id": "44036", + "name": "Messery", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35036000", + "longitude": "6.29099000" + }, + { + "id": "44038", + "name": "Messimy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69816000", + "longitude": "4.67429000" + }, + { + "id": "44040", + "name": "Metz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.93343000", + "longitude": "6.10973000" + }, + { + "id": "44053", + "name": "Meximieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90823000", + "longitude": "5.19920000" + }, + { + "id": "44056", + "name": "Meylan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20978000", + "longitude": "5.77762000" + }, + { + "id": "44063", + "name": "Meysse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.61028000", + "longitude": "4.72306000" + }, + { + "id": "44064", + "name": "Meythet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91836000", + "longitude": "6.09422000" + }, + { + "id": "44065", + "name": "Meyzieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76637000", + "longitude": "5.00277000" + }, + { + "id": "44066", + "name": "Mezel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75508000", + "longitude": "3.24225000" + }, + { + "id": "44067", + "name": "Mieussy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13369000", + "longitude": "6.52416000" + }, + { + "id": "44075", + "name": "Millery", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63232000", + "longitude": "4.78207000" + }, + { + "id": "44083", + "name": "Mionnay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89824000", + "longitude": "4.92808000" + }, + { + "id": "44084", + "name": "Mions", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66302000", + "longitude": "4.95292000" + }, + { + "id": "44086", + "name": "Mirabel-aux-Baronnies", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.31002000", + "longitude": "5.09962000" + }, + { + "id": "44095", + "name": "Mirefleurs", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69319000", + "longitude": "3.22370000" + }, + { + "id": "44100", + "name": "Miribel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82580000", + "longitude": "4.95440000" + }, + { + "id": "44101", + "name": "Miribel-les-Échelles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43155000", + "longitude": "5.70810000" + }, + { + "id": "44105", + "name": "Misérieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.97433000", + "longitude": "4.81340000" + }, + { + "id": "44428", + "name": "Moûtiers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48459000", + "longitude": "6.53146000" + }, + { + "id": "44109", + "name": "Modane", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20032000", + "longitude": "6.66871000" + }, + { + "id": "44111", + "name": "Moidieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.51680000", + "longitude": "5.00749000" + }, + { + "id": "44113", + "name": "Moirans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33140000", + "longitude": "5.55432000" + }, + { + "id": "44122", + "name": "Molinet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.46576000", + "longitude": "3.93589000" + }, + { + "id": "44143", + "name": "Monistrol-sur-Loire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.29263000", + "longitude": "4.17233000" + }, + { + "id": "44145", + "name": "Monnetier-Mornex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16030000", + "longitude": "6.20667000" + }, + { + "id": "44160", + "name": "Mont-de-Lans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03626000", + "longitude": "6.13141000" + }, + { + "id": "44155", + "name": "Mont-Dore", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.57641000", + "longitude": "2.80889000" + }, + { + "id": "44159", + "name": "Mont-Saxonnex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.05080000", + "longitude": "6.47429000" + }, + { + "id": "44166", + "name": "Montagnat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16761000", + "longitude": "5.28791000" + }, + { + "id": "44168", + "name": "Montagny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62801000", + "longitude": "4.74778000" + }, + { + "id": "44171", + "name": "Montaigut", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61499000", + "longitude": "3.44896000" + }, + { + "id": "44173", + "name": "Montalieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81245000", + "longitude": "5.40221000" + }, + { + "id": "44175", + "name": "Montanay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87908000", + "longitude": "4.86308000" + }, + { + "id": "44334", + "name": "Montéléger", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85296000", + "longitude": "4.93598000" + }, + { + "id": "44332", + "name": "Montélier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.93441000", + "longitude": "5.03126000" + }, + { + "id": "44333", + "name": "Montélimar", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55468000", + "longitude": "4.75469000" + }, + { + "id": "44199", + "name": "Montbonnot-Saint-Martin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22537000", + "longitude": "5.80170000" + }, + { + "id": "44200", + "name": "Montboucher-sur-Jabron", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55050000", + "longitude": "4.80200000" + }, + { + "id": "44201", + "name": "Montbrison", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60752000", + "longitude": "4.06525000" + }, + { + "id": "44233", + "name": "Montfaucon-en-Velay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18561000", + "longitude": "4.31376000" + }, + { + "id": "44237", + "name": "Montferrat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48481000", + "longitude": "5.59020000" + }, + { + "id": "44277", + "name": "Montluçon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.34015000", + "longitude": "2.60254000" + }, + { + "id": "44276", + "name": "Montluel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85190000", + "longitude": "5.05780000" + }, + { + "id": "44281", + "name": "Montmarault", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31738000", + "longitude": "2.95472000" + }, + { + "id": "44291", + "name": "Montmélian", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.50509000", + "longitude": "6.05634000" + }, + { + "id": "44283", + "name": "Montmerle-sur-Saône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08333000", + "longitude": "4.76667000" + }, + { + "id": "44284", + "name": "Montmeyran", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83389000", + "longitude": "4.97181000" + }, + { + "id": "44295", + "name": "Montoison", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.79608000", + "longitude": "4.94118000" + }, + { + "id": "44325", + "name": "Montréal-la-Cluse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18333000", + "longitude": "5.58333000" + }, + { + "id": "44316", + "name": "Montrevel-en-Bresse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33527000", + "longitude": "5.12269000" + }, + { + "id": "44320", + "name": "Montrond-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64374000", + "longitude": "4.23752000" + }, + { + "id": "44321", + "name": "Montrottier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79010000", + "longitude": "4.46660000" + }, + { + "id": "44329", + "name": "Montségur-sur-Lauzon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.36098000", + "longitude": "4.85468000" + }, + { + "id": "44340", + "name": "Morancé", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89815000", + "longitude": "4.70051000" + }, + { + "id": "44348", + "name": "Morestel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67900000", + "longitude": "5.46479000" + }, + { + "id": "44361", + "name": "Mornant", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61885000", + "longitude": "4.67231000" + }, + { + "id": "44377", + "name": "Morzine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18149000", + "longitude": "6.70664000" + }, + { + "id": "44394", + "name": "Moulins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.56459000", + "longitude": "3.33243000" + }, + { + "id": "44405", + "name": "Mours-Saint-Eusèbe", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06513000", + "longitude": "5.05776000" + }, + { + "id": "44415", + "name": "Mouxy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68399000", + "longitude": "5.93538000" + }, + { + "id": "44421", + "name": "Moye", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87566000", + "longitude": "5.91289000" + }, + { + "id": "44425", + "name": "Mozac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89393000", + "longitude": "3.09512000" + }, + { + "id": "44439", + "name": "Murat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11011000", + "longitude": "2.86859000" + }, + { + "id": "44512", + "name": "Nantua", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15343000", + "longitude": "5.60601000" + }, + { + "id": "44519", + "name": "Naucelles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95898000", + "longitude": "2.41884000" + }, + { + "id": "44695", + "name": "Néris-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.28688000", + "longitude": "2.65869000" + }, + { + "id": "44549", + "name": "Neuilly-le-Réal", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.46413000", + "longitude": "3.43197000" + }, + { + "id": "44555", + "name": "Neulise", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89811000", + "longitude": "4.18134000" + }, + { + "id": "44558", + "name": "Neussargues", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12826000", + "longitude": "2.97627000" + }, + { + "id": "44581", + "name": "Neuvéglise", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.92809000", + "longitude": "2.98328000" + }, + { + "id": "44559", + "name": "Neuvecelle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.39502000", + "longitude": "6.61257000" + }, + { + "id": "44568", + "name": "Neuville-les-Dames", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16230000", + "longitude": "5.00667000" + }, + { + "id": "44569", + "name": "Neuville-sur-Ain", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07144000", + "longitude": "5.37491000" + }, + { + "id": "44573", + "name": "Neuville-sur-Saône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87615000", + "longitude": "4.84099000" + }, + { + "id": "44574", + "name": "Neuvy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.56191000", + "longitude": "3.29038000" + }, + { + "id": "44586", + "name": "Neydens", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.12162000", + "longitude": "6.10436000" + }, + { + "id": "44605", + "name": "Niévroz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82576000", + "longitude": "5.06108000" + }, + { + "id": "44604", + "name": "Nivolas-Vermelle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55885000", + "longitude": "5.30578000" + }, + { + "id": "44620", + "name": "Nohanent", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80815000", + "longitude": "3.05507000" + }, + { + "id": "44625", + "name": "Noirétable", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81671000", + "longitude": "3.76247000" + }, + { + "id": "44653", + "name": "Notre-Dame-de-Mésage", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06241000", + "longitude": "5.75880000" + }, + { + "id": "44665", + "name": "Novalaise", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59480000", + "longitude": "5.77767000" + }, + { + "id": "44674", + "name": "Noyarey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.24421000", + "longitude": "5.63366000" + }, + { + "id": "44690", + "name": "Nyons", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.36082000", + "longitude": "5.14052000" + }, + { + "id": "44756", + "name": "Orcet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70355000", + "longitude": "3.16884000" + }, + { + "id": "44760", + "name": "Orcines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.78246000", + "longitude": "3.01234000" + }, + { + "id": "44775", + "name": "Orléat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86059000", + "longitude": "3.42083000" + }, + { + "id": "44772", + "name": "Orliénas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65886000", + "longitude": "4.71832000" + }, + { + "id": "44781", + "name": "Ornex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.27270000", + "longitude": "6.09982000" + }, + { + "id": "44801", + "name": "Ouches", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.01582000", + "longitude": "3.98828000" + }, + { + "id": "44807", + "name": "Oullins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71404000", + "longitude": "4.80755000" + }, + { + "id": "44819", + "name": "Oyonnax", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25917000", + "longitude": "5.65727000" + }, + { + "id": "44820", + "name": "Oytier-Saint-Oblas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55757000", + "longitude": "5.03083000" + }, + { + "id": "44842", + "name": "Panissières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79185000", + "longitude": "4.34163000" + }, + { + "id": "44863", + "name": "Paslières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92889000", + "longitude": "3.49736000" + }, + { + "id": "44865", + "name": "Passy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92341000", + "longitude": "6.69562000" + }, + { + "id": "44870", + "name": "Paulhaguet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20795000", + "longitude": "3.51331000" + }, + { + "id": "45347", + "name": "Pélussin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.41951000", + "longitude": "4.68365000" + }, + { + "id": "45354", + "name": "Pérignat-lès-Sarliève", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73657000", + "longitude": "3.13960000" + }, + { + "id": "45355", + "name": "Pérignat-sur-Allier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72843000", + "longitude": "3.23184000" + }, + { + "id": "45356", + "name": "Périgneux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.44077000", + "longitude": "4.15569000" + }, + { + "id": "45361", + "name": "Péron", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.19053000", + "longitude": "5.92524000" + }, + { + "id": "45362", + "name": "Péronnas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18338000", + "longitude": "5.21052000" + }, + { + "id": "45364", + "name": "Pérouges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90440000", + "longitude": "5.17695000" + }, + { + "id": "44878", + "name": "Peaugres", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.28651000", + "longitude": "4.72845000" + }, + { + "id": "44884", + "name": "Peillonnex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.12861000", + "longitude": "6.37715000" + }, + { + "id": "44901", + "name": "Perreux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.04004000", + "longitude": "4.12663000" + }, + { + "id": "44903", + "name": "Perrignier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30558000", + "longitude": "6.43928000" + }, + { + "id": "44908", + "name": "Pers-Jussy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10594000", + "longitude": "6.26955000" + }, + { + "id": "44912", + "name": "Peschadoires", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82622000", + "longitude": "3.49255000" + }, + { + "id": "44933", + "name": "Peyrins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.09331000", + "longitude": "5.04513000" + }, + { + "id": "44950", + "name": "Pierre-Bénite", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70359000", + "longitude": "4.82424000" + }, + { + "id": "44951", + "name": "Pierre-Châtel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95735000", + "longitude": "5.77454000" + }, + { + "id": "44958", + "name": "Pierrefort", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.92175000", + "longitude": "2.83811000" + }, + { + "id": "44959", + "name": "Pierrelatte", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.37549000", + "longitude": "4.70314000" + }, + { + "id": "44975", + "name": "Pionsat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10963000", + "longitude": "2.69319000" + }, + { + "id": "45004", + "name": "Plauzat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62157000", + "longitude": "3.14896000" + }, + { + "id": "45005", + "name": "Pleaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13479000", + "longitude": "2.22652000" + }, + { + "id": "45135", + "name": "Poisat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.15852000", + "longitude": "5.76051000" + }, + { + "id": "45137", + "name": "Poisy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92142000", + "longitude": "6.06356000" + }, + { + "id": "45141", + "name": "Polignac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.07090000", + "longitude": "3.86031000" + }, + { + "id": "45144", + "name": "Polliat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.24849000", + "longitude": "5.12658000" + }, + { + "id": "45145", + "name": "Pollionnay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76459000", + "longitude": "4.66112000" + }, + { + "id": "45146", + "name": "Polminhac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95177000", + "longitude": "2.57751000" + }, + { + "id": "45152", + "name": "Pommiers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95540000", + "longitude": "4.69251000" + }, + { + "id": "45161", + "name": "Poncin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08531000", + "longitude": "5.41120000" + }, + { + "id": "45195", + "name": "Pont-Évêque", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53217000", + "longitude": "4.90922000" + }, + { + "id": "45187", + "name": "Pont-d’Ain", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.05583000", + "longitude": "5.33974000" + }, + { + "id": "45178", + "name": "Pont-de-Chéruy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75344000", + "longitude": "5.17245000" + }, + { + "id": "45183", + "name": "Pont-de-Vaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43326000", + "longitude": "4.94473000" + }, + { + "id": "45184", + "name": "Pont-de-Veyle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26166000", + "longitude": "4.88612000" + }, + { + "id": "45186", + "name": "Pont-du-Château", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79830000", + "longitude": "3.24839000" + }, + { + "id": "45188", + "name": "Pont-en-Royans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06250000", + "longitude": "5.34094000" + }, + { + "id": "45175", + "name": "Pont-Salomon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33777000", + "longitude": "4.24781000" + }, + { + "id": "45204", + "name": "Pontcharra", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43588000", + "longitude": "6.01782000" + }, + { + "id": "45205", + "name": "Pontcharra-sur-Turdine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87413000", + "longitude": "4.48989000" + }, + { + "id": "45221", + "name": "Porcieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83416000", + "longitude": "5.40168000" + }, + { + "id": "45240", + "name": "Portes-lès-Valence", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.87585000", + "longitude": "4.87415000" + }, + { + "id": "45255", + "name": "Pouilly-lès-Feurs", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79760000", + "longitude": "4.23289000" + }, + { + "id": "45254", + "name": "Pouilly-les-Nonains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.04508000", + "longitude": "3.98247000" + }, + { + "id": "45256", + "name": "Pouilly-sous-Charlieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14551000", + "longitude": "4.11287000" + }, + { + "id": "45275", + "name": "Pragoulin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.05425000", + "longitude": "3.39346000" + }, + { + "id": "45280", + "name": "Praz-sur-Arly", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83731000", + "longitude": "6.57259000" + }, + { + "id": "45305", + "name": "Précieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58702000", + "longitude": "4.15152000" + }, + { + "id": "45311", + "name": "Prémilhat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31341000", + "longitude": "2.53559000" + }, + { + "id": "45285", + "name": "Priay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.00183000", + "longitude": "5.28684000" + }, + { + "id": "45287", + "name": "Pringy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94622000", + "longitude": "6.12608000" + }, + { + "id": "45291", + "name": "Privas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.73500000", + "longitude": "4.59918000" + }, + { + "id": "45313", + "name": "Publier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.38773000", + "longitude": "6.54356000" + }, + { + "id": "45331", + "name": "Pusignan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75558000", + "longitude": "5.06722000" + }, + { + "id": "45335", + "name": "Puy-Guillaume", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.96036000", + "longitude": "3.47405000" + }, + { + "id": "45394", + "name": "Quincié-en-Beaujolais", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.11898000", + "longitude": "4.61635000" + }, + { + "id": "45393", + "name": "Quincieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91374000", + "longitude": "4.77698000" + }, + { + "id": "45399", + "name": "Quinssaines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.32721000", + "longitude": "2.51040000" + }, + { + "id": "45400", + "name": "Quintenas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18892000", + "longitude": "4.68743000" + }, + { + "id": "45427", + "name": "Randan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.01767000", + "longitude": "3.35478000" + }, + { + "id": "45687", + "name": "Régny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99087000", + "longitude": "4.21655000" + }, + { + "id": "45448", + "name": "Reignier-Ésery", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13333000", + "longitude": "6.26667000" + }, + { + "id": "45456", + "name": "Renage", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33346000", + "longitude": "5.48881000" + }, + { + "id": "45457", + "name": "Renaison", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.04955000", + "longitude": "3.92440000" + }, + { + "id": "45462", + "name": "Replonges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30098000", + "longitude": "4.88317000" + }, + { + "id": "45470", + "name": "Retournac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20390000", + "longitude": "4.03330000" + }, + { + "id": "45474", + "name": "Revel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18618000", + "longitude": "5.87208000" + }, + { + "id": "45476", + "name": "Reventin-Vaugris", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.46638000", + "longitude": "4.84244000" + }, + { + "id": "45481", + "name": "Reyrieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.93577000", + "longitude": "4.81453000" + }, + { + "id": "45512", + "name": "Rillieux-la-Pape", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81667000", + "longitude": "4.90000000" + }, + { + "id": "45516", + "name": "Riom", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89362000", + "longitude": "3.11264000" + }, + { + "id": "45517", + "name": "Riom-ès-Montagnes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.28206000", + "longitude": "2.65973000" + }, + { + "id": "45520", + "name": "Riorges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.04378000", + "longitude": "4.04255000" + }, + { + "id": "45521", + "name": "Riotord", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.23159000", + "longitude": "4.40208000" + }, + { + "id": "45526", + "name": "Rive-de-Gier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52755000", + "longitude": "4.61589000" + }, + { + "id": "45529", + "name": "Rives", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35326000", + "longitude": "5.50084000" + }, + { + "id": "45535", + "name": "Roanne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03624000", + "longitude": "4.06802000" + }, + { + "id": "45539", + "name": "Roche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58723000", + "longitude": "5.16223000" + }, + { + "id": "45540", + "name": "Roche-la-Molière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43088000", + "longitude": "4.32820000" + }, + { + "id": "45547", + "name": "Rochegude", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.24414000", + "longitude": "4.82719000" + }, + { + "id": "45548", + "name": "Rochemaure", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.58747000", + "longitude": "4.70391000" + }, + { + "id": "45551", + "name": "Rochetaillée-sur-Saône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85000000", + "longitude": "4.85000000" + }, + { + "id": "45563", + "name": "Roiffieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22655000", + "longitude": "4.65441000" + }, + { + "id": "45569", + "name": "Romagnat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72955000", + "longitude": "3.10061000" + }, + { + "id": "45570", + "name": "Romagnieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.57061000", + "longitude": "5.64096000" + }, + { + "id": "45574", + "name": "Romans-sur-Isère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04960000", + "longitude": "5.06602000" + }, + { + "id": "45602", + "name": "Rosières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13287000", + "longitude": "3.98826000" + }, + { + "id": "45639", + "name": "Roussillon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37388000", + "longitude": "4.81496000" + }, + { + "id": "45646", + "name": "Royat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76497000", + "longitude": "3.05013000" + }, + { + "id": "45647", + "name": "Roybon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25851000", + "longitude": "5.24502000" + }, + { + "id": "45653", + "name": "Rozier-en-Donzy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80069000", + "longitude": "4.27736000" + }, + { + "id": "45672", + "name": "Rumilly", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86116000", + "longitude": "5.94513000" + }, + { + "id": "45676", + "name": "Ruoms", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.45294000", + "longitude": "4.34202000" + }, + { + "id": "45681", + "name": "Ruy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58640000", + "longitude": "5.32143000" + }, + { + "id": "45702", + "name": "Sablons", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.32104000", + "longitude": "4.77449000" + }, + { + "id": "45716", + "name": "Sail-sous-Couzan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73482000", + "longitude": "3.96898000" + }, + { + "id": "45721", + "name": "Sain-Bel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81017000", + "longitude": "4.59797000" + }, + { + "id": "45731", + "name": "Saint-Agrève", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01003000", + "longitude": "4.39612000" + }, + { + "id": "45737", + "name": "Saint-Alban-de-Roche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59490000", + "longitude": "5.22630000" + }, + { + "id": "45736", + "name": "Saint-Alban-Leysse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58333000", + "longitude": "5.95000000" + }, + { + "id": "45748", + "name": "Saint-Amant-Tallende", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66900000", + "longitude": "3.10788000" + }, + { + "id": "45769", + "name": "Saint-Andéol-le-Château", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58597000", + "longitude": "4.69504000" + }, + { + "id": "45757", + "name": "Saint-André-de-Corcy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92590000", + "longitude": "4.95166000" + }, + { + "id": "45763", + "name": "Saint-André-le-Gaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54546000", + "longitude": "5.52886000" + }, + { + "id": "45764", + "name": "Saint-André-le-Puy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64763000", + "longitude": "4.25887000" + }, + { + "id": "45768", + "name": "Saint-André-sur-Vieux-Jonc", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15855000", + "longitude": "5.14776000" + }, + { + "id": "45773", + "name": "Saint-Antoine-l'Abbaye", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.16667000", + "longitude": "5.21667000" + }, + { + "id": "45796", + "name": "Saint-Aupre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40296000", + "longitude": "5.66682000" + }, + { + "id": "46635", + "name": "Saint-Égrève", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.23313000", + "longitude": "5.68154000" + }, + { + "id": "46638", + "name": "Saint-Éloy-les-Mines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16051000", + "longitude": "2.83379000" + }, + { + "id": "46641", + "name": "Saint-Étienne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43389000", + "longitude": "4.39000000" + }, + { + "id": "46645", + "name": "Saint-Étienne-de-Crossey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.38027000", + "longitude": "5.64365000" + }, + { + "id": "46646", + "name": "Saint-Étienne-de-Fontbellon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.60077000", + "longitude": "4.38635000" + }, + { + "id": "46649", + "name": "Saint-Étienne-de-Saint-Geoirs", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33909000", + "longitude": "5.34650000" + }, + { + "id": "46651", + "name": "Saint-Étienne-des-Oullières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06731000", + "longitude": "4.64945000" + }, + { + "id": "46653", + "name": "Saint-Étienne-du-Bois", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.28990000", + "longitude": "5.29471000" + }, + { + "id": "46658", + "name": "Saint-Étienne-sur-Chalaronne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14778000", + "longitude": "4.87129000" + }, + { + "id": "45801", + "name": "Saint-Baldoph", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53120000", + "longitude": "5.95217000" + }, + { + "id": "45804", + "name": "Saint-Barthélemy-de-Vals", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.16938000", + "longitude": "4.87160000" + }, + { + "id": "45835", + "name": "Saint-Béron", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.50308000", + "longitude": "5.72790000" + }, + { + "id": "45808", + "name": "Saint-Beauzire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84964000", + "longitude": "3.17947000" + }, + { + "id": "45815", + "name": "Saint-Bon-Tarentaise", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43373000", + "longitude": "6.63686000" + }, + { + "id": "45816", + "name": "Saint-Bonnet-de-Mure", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69042000", + "longitude": "5.02912000" + }, + { + "id": "45818", + "name": "Saint-Bonnet-le-Château", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.42402000", + "longitude": "4.06706000" + }, + { + "id": "45819", + "name": "Saint-Bonnet-les-Oules", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54946000", + "longitude": "4.32522000" + }, + { + "id": "45820", + "name": "Saint-Bonnet-près-Riom", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92972000", + "longitude": "3.11310000" + }, + { + "id": "45841", + "name": "Saint-Cassien", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35710000", + "longitude": "5.54793000" + }, + { + "id": "45843", + "name": "Saint-Cergues", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.23005000", + "longitude": "6.31924000" + }, + { + "id": "45844", + "name": "Saint-Cernin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.05850000", + "longitude": "2.42081000" + }, + { + "id": "45847", + "name": "Saint-Chamond", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.47590000", + "longitude": "4.51294000" + }, + { + "id": "45850", + "name": "Saint-Chef", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63585000", + "longitude": "5.36465000" + }, + { + "id": "45852", + "name": "Saint-Christo-en-Jarez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54508000", + "longitude": "4.48826000" + }, + { + "id": "45863", + "name": "Saint-Clair-de-la-Tour", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.57345000", + "longitude": "5.47741000" + }, + { + "id": "45864", + "name": "Saint-Clair-du-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.44186000", + "longitude": "4.77123000" + }, + { + "id": "45879", + "name": "Saint-Cyprien", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53450000", + "longitude": "4.23428000" + }, + { + "id": "45882", + "name": "Saint-Cyr", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25183000", + "longitude": "4.73045000" + }, + { + "id": "45891", + "name": "Saint-Cyr-sur-le-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.51585000", + "longitude": "4.85250000" + }, + { + "id": "45888", + "name": "Saint-Cyr-sur-Menthon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.27502000", + "longitude": "4.97246000" + }, + { + "id": "45895", + "name": "Saint-Denis-de-Cabanne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.17249000", + "longitude": "4.21447000" + }, + { + "id": "45899", + "name": "Saint-Denis-en-Bugey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94963000", + "longitude": "5.32773000" + }, + { + "id": "45903", + "name": "Saint-Denis-lès-Bourg", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20217000", + "longitude": "5.18924000" + }, + { + "id": "45907", + "name": "Saint-Didier-de-Formans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95969000", + "longitude": "4.78406000" + }, + { + "id": "45908", + "name": "Saint-Didier-de-la-Tour", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55755000", + "longitude": "5.48026000" + }, + { + "id": "45909", + "name": "Saint-Didier-en-Velay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30265000", + "longitude": "4.27514000" + }, + { + "id": "45910", + "name": "Saint-Didier-sous-Riverie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59627000", + "longitude": "4.60650000" + }, + { + "id": "45911", + "name": "Saint-Didier-sur-Chalaronne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.17714000", + "longitude": "4.81626000" + }, + { + "id": "45925", + "name": "Saint-Etienne-de-Cuines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35000000", + "longitude": "6.28333000" + }, + { + "id": "45945", + "name": "Saint-Félicien", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.08600000", + "longitude": "4.62738000" + }, + { + "id": "45947", + "name": "Saint-Félix", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80269000", + "longitude": "5.97714000" + }, + { + "id": "45938", + "name": "Saint-Flour", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03374000", + "longitude": "3.09297000" + }, + { + "id": "45940", + "name": "Saint-Fons", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70875000", + "longitude": "4.85325000" + }, + { + "id": "45941", + "name": "Saint-Forgeux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85895000", + "longitude": "4.47480000" + }, + { + "id": "45943", + "name": "Saint-François", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.41537000", + "longitude": "3.90542000" + }, + { + "id": "45949", + "name": "Saint-Galmier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59787000", + "longitude": "4.31086000" + }, + { + "id": "46045", + "name": "Saint-Gérand-le-Puy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25790000", + "longitude": "3.51210000" + }, + { + "id": "45969", + "name": "Saint-Genès-Champanelle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72037000", + "longitude": "3.01883000" + }, + { + "id": "45955", + "name": "Saint-Genest-Lerpt", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.44347000", + "longitude": "4.33968000" + }, + { + "id": "45956", + "name": "Saint-Genest-Malifaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34064000", + "longitude": "4.41652000" + }, + { + "id": "45959", + "name": "Saint-Genis-Laval", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69542000", + "longitude": "4.79316000" + }, + { + "id": "45962", + "name": "Saint-Genis-les-Ollières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75710000", + "longitude": "4.72625000" + }, + { + "id": "45960", + "name": "Saint-Genis-Pouilly", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.24356000", + "longitude": "6.02119000" + }, + { + "id": "45963", + "name": "Saint-Genix-sur-Guiers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59864000", + "longitude": "5.63559000" + }, + { + "id": "45970", + "name": "Saint-Geoire-en-Valdaine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45668000", + "longitude": "5.63515000" + }, + { + "id": "45973", + "name": "Saint-Georges-de-Commiers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04546000", + "longitude": "5.70628000" + }, + { + "id": "45976", + "name": "Saint-Georges-de-Mons", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.93941000", + "longitude": "2.83866000" + }, + { + "id": "45980", + "name": "Saint-Georges-de-Reneins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06185000", + "longitude": "4.72169000" + }, + { + "id": "45972", + "name": "Saint-Georges-Haute-Ville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55701000", + "longitude": "4.09801000" + }, + { + "id": "45985", + "name": "Saint-Georges-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.86100000", + "longitude": "4.80924000" + }, + { + "id": "45987", + "name": "Saint-Georges-sur-Allier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71015000", + "longitude": "3.24261000" + }, + { + "id": "46006", + "name": "Saint-Germain-des-Fossés", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20682000", + "longitude": "3.43374000" + }, + { + "id": "45995", + "name": "Saint-Germain-Laprade", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03862000", + "longitude": "3.97004000" + }, + { + "id": "45997", + "name": "Saint-Germain-Laval", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83249000", + "longitude": "4.01444000" + }, + { + "id": "45998", + "name": "Saint-Germain-Lembron", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45793000", + "longitude": "3.23973000" + }, + { + "id": "45999", + "name": "Saint-Germain-Lespinasse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10342000", + "longitude": "3.96503000" + }, + { + "id": "46000", + "name": "Saint-Germain-Nuelles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85242000", + "longitude": "4.61182000" + }, + { + "id": "46026", + "name": "Saint-Gervais-d’Auvergne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02916000", + "longitude": "2.81901000" + }, + { + "id": "46029", + "name": "Saint-Gervais-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89126000", + "longitude": "6.71678000" + }, + { + "id": "46072", + "name": "Saint-Héand", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52740000", + "longitude": "4.37077000" + }, + { + "id": "46050", + "name": "Saint-Hilaire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30000000", + "longitude": "5.88333000" + }, + { + "id": "46061", + "name": "Saint-Hilaire-de-la-Côte", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39162000", + "longitude": "5.31590000" + }, + { + "id": "46064", + "name": "Saint-Hilaire-du-Rosier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.09942000", + "longitude": "5.24946000" + }, + { + "id": "46074", + "name": "Saint-Ismier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25227000", + "longitude": "5.83073000" + }, + { + "id": "46083", + "name": "Saint-Jean-Bonnefonds", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45609000", + "longitude": "4.44223000" + }, + { + "id": "46112", + "name": "Saint-Jean-d’Aulps", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.23438000", + "longitude": "6.65327000" + }, + { + "id": "46088", + "name": "Saint-Jean-de-Bournay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.50093000", + "longitude": "5.13818000" + }, + { + "id": "46091", + "name": "Saint-Jean-de-Gonville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.21298000", + "longitude": "5.95047000" + }, + { + "id": "46095", + "name": "Saint-Jean-de-Maurienne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.27534000", + "longitude": "6.35293000" + }, + { + "id": "46096", + "name": "Saint-Jean-de-Moirans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34506000", + "longitude": "5.58536000" + }, + { + "id": "46098", + "name": "Saint-Jean-de-Muzols", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.08179000", + "longitude": "4.81396000" + }, + { + "id": "46099", + "name": "Saint-Jean-de-Niost", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83333000", + "longitude": "5.21667000" + }, + { + "id": "46101", + "name": "Saint-Jean-de-Sixt", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92312000", + "longitude": "6.41180000" + }, + { + "id": "46102", + "name": "Saint-Jean-de-Soudain", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56770000", + "longitude": "5.42880000" + }, + { + "id": "46114", + "name": "Saint-Jean-en-Royans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01968000", + "longitude": "5.29223000" + }, + { + "id": "46117", + "name": "Saint-Jean-le-Vieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03005000", + "longitude": "5.38798000" + }, + { + "id": "46121", + "name": "Saint-Jean-sur-Veyle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25902000", + "longitude": "4.91712000" + }, + { + "id": "46123", + "name": "Saint-Jeoire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13733000", + "longitude": "6.46172000" + }, + { + "id": "46125", + "name": "Saint-Jorioz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83074000", + "longitude": "6.15792000" + }, + { + "id": "46127", + "name": "Saint-Joseph", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55757000", + "longitude": "4.62076000" + }, + { + "id": "46129", + "name": "Saint-Joseph-de-Rivière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37572000", + "longitude": "5.69643000" + }, + { + "id": "46137", + "name": "Saint-Julien-Chapteuil", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03486000", + "longitude": "4.06110000" + }, + { + "id": "46144", + "name": "Saint-Julien-en-Genevois", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14434000", + "longitude": "6.08256000" + }, + { + "id": "46145", + "name": "Saint-Julien-en-Saint-Alban", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.75417000", + "longitude": "4.69678000" + }, + { + "id": "46138", + "name": "Saint-Julien-Molin-Molette", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.32148000", + "longitude": "4.61692000" + }, + { + "id": "46154", + "name": "Saint-Just-Chaleyssin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59421000", + "longitude": "4.99852000" + }, + { + "id": "46159", + "name": "Saint-Just-d'Ardèche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.30000000", + "longitude": "4.61667000" + }, + { + "id": "46160", + "name": "Saint-Just-de-Claix", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.07562000", + "longitude": "5.28309000" + }, + { + "id": "46162", + "name": "Saint-Just-en-Chevalet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91477000", + "longitude": "3.84234000" + }, + { + "id": "46163", + "name": "Saint-Just-la-Pendue", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89423000", + "longitude": "4.24129000" + }, + { + "id": "46156", + "name": "Saint-Just-Malmont", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33932000", + "longitude": "4.31275000" + }, + { + "id": "46157", + "name": "Saint-Just-Saint-Rambert", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.49973000", + "longitude": "4.24141000" + }, + { + "id": "46171", + "name": "Saint-Lattier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.08815000", + "longitude": "5.20352000" + }, + { + "id": "46176", + "name": "Saint-Laurent-de-Chamousset", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73827000", + "longitude": "4.46415000" + }, + { + "id": "46177", + "name": "Saint-Laurent-de-Mure", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68563000", + "longitude": "5.04484000" + }, + { + "id": "46183", + "name": "Saint-Laurent-du-Pape", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.82328000", + "longitude": "4.76679000" + }, + { + "id": "46184", + "name": "Saint-Laurent-du-Pont", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39240000", + "longitude": "5.73312000" + }, + { + "id": "46187", + "name": "Saint-Laurent-en-Royans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.02653000", + "longitude": "5.32669000" + }, + { + "id": "46189", + "name": "Saint-Laurent-sur-Saône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30532000", + "longitude": "4.84119000" + }, + { + "id": "46219", + "name": "Saint-Léger-sur-Roanne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.04174000", + "longitude": "3.99644000" + }, + { + "id": "46233", + "name": "Saint-Mamet-la-Salvetat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85813000", + "longitude": "2.30688000" + }, + { + "id": "46245", + "name": "Saint-Marcel-d'Ardèche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.32726000", + "longitude": "4.61769000" + }, + { + "id": "46246", + "name": "Saint-Marcel-lès-Annonay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.28613000", + "longitude": "4.62616000" + }, + { + "id": "46247", + "name": "Saint-Marcel-lès-Sauzet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.59752000", + "longitude": "4.80541000" + }, + { + "id": "46248", + "name": "Saint-Marcel-lès-Valence", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.97132000", + "longitude": "4.95316000" + }, + { + "id": "46250", + "name": "Saint-Marcellin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14914000", + "longitude": "5.31673000" + }, + { + "id": "46251", + "name": "Saint-Marcellin-en-Forez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.49676000", + "longitude": "4.17233000" + }, + { + "id": "46260", + "name": "Saint-Martin-Bellevue", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.96262000", + "longitude": "6.15763000" + }, + { + "id": "46295", + "name": "Saint-Martin-d’Hères", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.17870000", + "longitude": "5.76281000" + }, + { + "id": "46268", + "name": "Saint-Martin-de-Belleville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.38175000", + "longitude": "6.50519000" + }, + { + "id": "46279", + "name": "Saint-Martin-de-Valamas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.93718000", + "longitude": "4.36865000" + }, + { + "id": "46287", + "name": "Saint-Martin-du-Frêne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13591000", + "longitude": "5.55049000" + }, + { + "id": "46289", + "name": "Saint-Martin-du-Mont", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.09800000", + "longitude": "5.31706000" + }, + { + "id": "46298", + "name": "Saint-Martin-en-Haut", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65984000", + "longitude": "4.56180000" + }, + { + "id": "46299", + "name": "Saint-Martin-la-Plaine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54635000", + "longitude": "4.59749000" + }, + { + "id": "46301", + "name": "Saint-Martin-le-Vinoux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20297000", + "longitude": "5.71630000" + }, + { + "id": "46313", + "name": "Saint-Maurice-de-Beynost", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83440000", + "longitude": "4.97750000" + }, + { + "id": "46314", + "name": "Saint-Maurice-de-Gourdans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82248000", + "longitude": "5.19450000" + }, + { + "id": "46315", + "name": "Saint-Maurice-de-Lignon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22430000", + "longitude": "4.13880000" + }, + { + "id": "46316", + "name": "Saint-Maurice-en-Gourgois", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40127000", + "longitude": "4.18253000" + }, + { + "id": "46319", + "name": "Saint-Maurice-sur-Dargoire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58224000", + "longitude": "4.63120000" + }, + { + "id": "46337", + "name": "Saint-Michel-de-Maurienne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22011000", + "longitude": "6.46868000" + }, + { + "id": "46361", + "name": "Saint-Nazaire-les-Eymes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.24921000", + "longitude": "5.85254000" + }, + { + "id": "46370", + "name": "Saint-Nizier-sous-Charlieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15290000", + "longitude": "4.12399000" + }, + { + "id": "46384", + "name": "Saint-Ours", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85024000", + "longitude": "2.89163000" + }, + { + "id": "46388", + "name": "Saint-Pal-de-Mons", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.24634000", + "longitude": "4.27416000" + }, + { + "id": "46402", + "name": "Saint-Paul", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39840000", + "longitude": "4.22617000" + }, + { + "id": "46408", + "name": "Saint-Paul-de-Varax", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.09692000", + "longitude": "5.12959000" + }, + { + "id": "46409", + "name": "Saint-Paul-de-Varces", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.07175000", + "longitude": "5.64247000" + }, + { + "id": "46411", + "name": "Saint-Paul-des-Landes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.94356000", + "longitude": "2.31439000" + }, + { + "id": "46412", + "name": "Saint-Paul-en-Chablais", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.37958000", + "longitude": "6.62483000" + }, + { + "id": "46414", + "name": "Saint-Paul-en-Jarez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48512000", + "longitude": "4.57113000" + }, + { + "id": "46417", + "name": "Saint-Paul-lès-Romans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06725000", + "longitude": "5.13213000" + }, + { + "id": "46405", + "name": "Saint-Paul-Trois-Châteaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.34594000", + "longitude": "4.76356000" + }, + { + "id": "46419", + "name": "Saint-Paulien", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13629000", + "longitude": "3.81290000" + }, + { + "id": "46482", + "name": "Saint-Péray", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.94866000", + "longitude": "4.84510000" + }, + { + "id": "46431", + "name": "Saint-Pierre-de-Bœuf", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.36667000", + "longitude": "4.75000000" + }, + { + "id": "46432", + "name": "Saint-Pierre-de-Chandieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64625000", + "longitude": "5.01481000" + }, + { + "id": "46448", + "name": "Saint-Pierre-la-Palud", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79092000", + "longitude": "4.61177000" + }, + { + "id": "46462", + "name": "Saint-Pourçain-sur-Sioule", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30748000", + "longitude": "3.28931000" + }, + { + "id": "46464", + "name": "Saint-Priest", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69651000", + "longitude": "4.94385000" + }, + { + "id": "46466", + "name": "Saint-Priest-en-Jarez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.47390000", + "longitude": "4.37678000" + }, + { + "id": "46468", + "name": "Saint-Privat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.62859000", + "longitude": "4.41489000" + }, + { + "id": "46486", + "name": "Saint-Quentin-Fallavier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64335000", + "longitude": "5.11266000" + }, + { + "id": "46491", + "name": "Saint-Quentin-sur-Isère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.27843000", + "longitude": "5.54463000" + }, + { + "id": "46493", + "name": "Saint-Rambert-en-Bugey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94734000", + "longitude": "5.43630000" + }, + { + "id": "46510", + "name": "Saint-Rémy-de-Maurienne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40000000", + "longitude": "6.26667000" + }, + { + "id": "46513", + "name": "Saint-Rémy-en-Rollat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18330000", + "longitude": "3.39106000" + }, + { + "id": "46516", + "name": "Saint-Rémy-sur-Durolle", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88815000", + "longitude": "3.59257000" + }, + { + "id": "46496", + "name": "Saint-Restitut", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.32446000", + "longitude": "4.79282000" + }, + { + "id": "46501", + "name": "Saint-Romain-de-Jalionas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75677000", + "longitude": "5.21741000" + }, + { + "id": "46502", + "name": "Saint-Romain-de-Popey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84725000", + "longitude": "4.53118000" + }, + { + "id": "46503", + "name": "Saint-Romain-en-Gal", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53255000", + "longitude": "4.86190000" + }, + { + "id": "46504", + "name": "Saint-Romain-la-Motte", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08150000", + "longitude": "3.99076000" + }, + { + "id": "46505", + "name": "Saint-Romain-le-Puy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55837000", + "longitude": "4.12296000" + }, + { + "id": "46507", + "name": "Saint-Romans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11278000", + "longitude": "5.32239000" + }, + { + "id": "46521", + "name": "Saint-Saturnin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65956000", + "longitude": "3.09232000" + }, + { + "id": "46527", + "name": "Saint-Sauves-d'Auvergne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60000000", + "longitude": "2.68333000" + }, + { + "id": "46529", + "name": "Saint-Sauveur", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.15335000", + "longitude": "5.35280000" + }, + { + "id": "46534", + "name": "Saint-Sauveur-de-Montagut", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.82142000", + "longitude": "4.57993000" + }, + { + "id": "46537", + "name": "Saint-Sauveur-en-Rue", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.26981000", + "longitude": "4.49512000" + }, + { + "id": "46540", + "name": "Saint-Savin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62776000", + "longitude": "5.30856000" + }, + { + "id": "46548", + "name": "Saint-Sernin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.57147000", + "longitude": "4.39186000" + }, + { + "id": "46554", + "name": "Saint-Siméon-de-Bressieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33850000", + "longitude": "5.26591000" + }, + { + "id": "46553", + "name": "Saint-Simon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96320000", + "longitude": "2.48994000" + }, + { + "id": "46555", + "name": "Saint-Sorlin-en-Bugey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88576000", + "longitude": "5.36688000" + }, + { + "id": "46556", + "name": "Saint-Sorlin-en-Valloire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.28774000", + "longitude": "4.94903000" + }, + { + "id": "46575", + "name": "Saint-Symphorien-de-Lay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94772000", + "longitude": "4.21318000" + }, + { + "id": "46576", + "name": "Saint-Symphorien-sur-Coise", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63220000", + "longitude": "4.45709000" + }, + { + "id": "46585", + "name": "Saint-Trivier-de-Courtes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.45980000", + "longitude": "5.07762000" + }, + { + "id": "46586", + "name": "Saint-Trivier-sur-Moignans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07233000", + "longitude": "4.89721000" + }, + { + "id": "46594", + "name": "Saint-Uze", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18409000", + "longitude": "4.86000000" + }, + { + "id": "46599", + "name": "Saint-Vallier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.17154000", + "longitude": "4.81758000" + }, + { + "id": "46624", + "name": "Saint-Vérand", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.17344000", + "longitude": "5.33261000" + }, + { + "id": "46607", + "name": "Saint-Victor", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.39506000", + "longitude": "2.60819000" + }, + { + "id": "46608", + "name": "Saint-Victor-de-Cessieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54113000", + "longitude": "5.39098000" + }, + { + "id": "46613", + "name": "Saint-Vincent-de-Mercuze", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37215000", + "longitude": "5.95424000" + }, + { + "id": "46629", + "name": "Saint-Yorre", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06598000", + "longitude": "3.46430000" + }, + { + "id": "46669", + "name": "Sainte-Colombe", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52531000", + "longitude": "4.86664000" + }, + { + "id": "46671", + "name": "Sainte-Consorce", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77585000", + "longitude": "4.69033000" + }, + { + "id": "46677", + "name": "Sainte-Euphémie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.97101000", + "longitude": "4.79853000" + }, + { + "id": "46680", + "name": "Sainte-Florine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40519000", + "longitude": "3.31732000" + }, + { + "id": "46685", + "name": "Sainte-Foy-lès-Lyon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73375000", + "longitude": "4.80259000" + }, + { + "id": "46686", + "name": "Sainte-Foy-l’Argentière", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70823000", + "longitude": "4.47025000" + }, + { + "id": "46699", + "name": "Sainte-Hélène-sur-Isère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61434000", + "longitude": "6.32052000" + }, + { + "id": "46726", + "name": "Sainte-Sigolène", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.24329000", + "longitude": "4.23343000" + }, + { + "id": "46740", + "name": "Salagnon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66863000", + "longitude": "5.36325000" + }, + { + "id": "46741", + "name": "Salaise-sur-Sanne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35126000", + "longitude": "4.81070000" + }, + { + "id": "46746", + "name": "Sales", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87441000", + "longitude": "5.95996000" + }, + { + "id": "46756", + "name": "Salins-les-Thermes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.47169000", + "longitude": "6.53051000" + }, + { + "id": "46757", + "name": "Sallanches", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94423000", + "longitude": "6.63162000" + }, + { + "id": "46776", + "name": "Samoëns", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08282000", + "longitude": "6.72647000" + }, + { + "id": "46791", + "name": "Sansac-de-Marmiesse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.88376000", + "longitude": "2.34768000" + }, + { + "id": "46810", + "name": "Sarras", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18679000", + "longitude": "4.80004000" + }, + { + "id": "46825", + "name": "Sassenage", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21266000", + "longitude": "5.66290000" + }, + { + "id": "46827", + "name": "Sathonay-Camp", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82462000", + "longitude": "4.87453000" + }, + { + "id": "46828", + "name": "Sathonay-Village", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83337000", + "longitude": "4.87821000" + }, + { + "id": "46829", + "name": "Satillieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.15041000", + "longitude": "4.61410000" + }, + { + "id": "46830", + "name": "Satolas-et-Bonce", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69368000", + "longitude": "5.13032000" + }, + { + "id": "46836", + "name": "Saugues", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96008000", + "longitude": "3.54737000" + }, + { + "id": "46838", + "name": "Saulce-sur-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.70430000", + "longitude": "4.80061000" + }, + { + "id": "46845", + "name": "Sault-Brénaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86132000", + "longitude": "5.39954000" + }, + { + "id": "46860", + "name": "Sauverny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31514000", + "longitude": "6.11827000" + }, + { + "id": "46867", + "name": "Sauxillanges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55109000", + "longitude": "3.37147000" + }, + { + "id": "46868", + "name": "Sauzet", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.60397000", + "longitude": "4.82091000" + }, + { + "id": "46870", + "name": "Savasse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.60428000", + "longitude": "4.77653000" + }, + { + "id": "46875", + "name": "Savigneux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61670000", + "longitude": "4.08330000" + }, + { + "id": "46876", + "name": "Savigny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81595000", + "longitude": "4.57410000" + }, + { + "id": "46886", + "name": "Savoie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.46805000", + "longitude": "6.48547000" + }, + { + "id": "46889", + "name": "Sayat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82640000", + "longitude": "3.05250000" + }, + { + "id": "47134", + "name": "Séez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62368000", + "longitude": "6.80149000" + }, + { + "id": "47135", + "name": "Ségny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29571000", + "longitude": "6.07257000" + }, + { + "id": "47147", + "name": "Sérézin-du-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62871000", + "longitude": "4.82400000" + }, + { + "id": "46905", + "name": "Sciez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33251000", + "longitude": "6.38413000" + }, + { + "id": "46906", + "name": "Scionzier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.06010000", + "longitude": "6.55271000" + }, + { + "id": "46950", + "name": "Septème", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55294000", + "longitude": "5.00596000" + }, + { + "id": "46955", + "name": "Sergy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25069000", + "longitude": "6.00183000" + }, + { + "id": "46959", + "name": "Sermérieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66995000", + "longitude": "5.41110000" + }, + { + "id": "46961", + "name": "Serpaize", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55824000", + "longitude": "4.91764000" + }, + { + "id": "46969", + "name": "Serrières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.31799000", + "longitude": "4.76327000" + }, + { + "id": "46970", + "name": "Serrières-de-Briord", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80706000", + "longitude": "5.44795000" + }, + { + "id": "46971", + "name": "Servas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13317000", + "longitude": "5.16510000" + }, + { + "id": "46981", + "name": "Sevrier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86442000", + "longitude": "6.13990000" + }, + { + "id": "46983", + "name": "Seynod", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88549000", + "longitude": "6.08831000" + }, + { + "id": "46985", + "name": "Seyssinet-Pariset", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.17675000", + "longitude": "5.69387000" + }, + { + "id": "46986", + "name": "Seyssins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.16224000", + "longitude": "5.68673000" + }, + { + "id": "46987", + "name": "Seyssuel", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55826000", + "longitude": "4.84313000" + }, + { + "id": "46995", + "name": "Sillans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34261000", + "longitude": "5.38864000" + }, + { + "id": "46997", + "name": "Sillingy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94781000", + "longitude": "6.04415000" + }, + { + "id": "47001", + "name": "Simandres", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61955000", + "longitude": "4.87314000" + }, + { + "id": "47022", + "name": "Solaize", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63970000", + "longitude": "4.84038000" + }, + { + "id": "47029", + "name": "Solignac-sur-Loire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96833000", + "longitude": "3.88635000" + }, + { + "id": "47039", + "name": "Sonnay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35809000", + "longitude": "4.90479000" + }, + { + "id": "47040", + "name": "Sonnaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61765000", + "longitude": "5.91505000" + }, + { + "id": "47043", + "name": "Sorbiers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.49111000", + "longitude": "4.44163000" + }, + { + "id": "47060", + "name": "Soucieu-en-Jarrest", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67771000", + "longitude": "4.70379000" + }, + { + "id": "47082", + "name": "Sourcieux-les-Mines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80606000", + "longitude": "4.62254000" + }, + { + "id": "47089", + "name": "Souvigny", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53480000", + "longitude": "3.19205000" + }, + { + "id": "47091", + "name": "Soyons", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.88914000", + "longitude": "4.85026000" + }, + { + "id": "47124", + "name": "Sury-le-Comtal", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53735000", + "longitude": "4.18573000" + }, + { + "id": "47127", + "name": "Suze-la-Rousse", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.28761000", + "longitude": "4.84161000" + }, + { + "id": "47157", + "name": "Tain-l’Hermitage", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06672000", + "longitude": "4.85590000" + }, + { + "id": "47165", + "name": "Tallende", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67040000", + "longitude": "3.12460000" + }, + { + "id": "47166", + "name": "Talloires", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84098000", + "longitude": "6.21374000" + }, + { + "id": "47168", + "name": "Taluyers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63973000", + "longitude": "4.72203000" + }, + { + "id": "47170", + "name": "Taninges", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10883000", + "longitude": "6.59231000" + }, + { + "id": "47175", + "name": "Tarare", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89614000", + "longitude": "4.43300000" + }, + { + "id": "47183", + "name": "Tassin-la-Demi-Lune", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75499000", + "longitude": "4.78812000" + }, + { + "id": "47185", + "name": "Taulignan", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.44419000", + "longitude": "4.97057000" + }, + { + "id": "47199", + "name": "Tenay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91884000", + "longitude": "5.50797000" + }, + { + "id": "47200", + "name": "Tence", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11423000", + "longitude": "4.29097000" + }, + { + "id": "47201", + "name": "Tencin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.31105000", + "longitude": "5.95752000" + }, + { + "id": "47208", + "name": "Ternay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60234000", + "longitude": "4.81064000" + }, + { + "id": "47275", + "name": "Thônes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88123000", + "longitude": "6.32572000" + }, + { + "id": "47222", + "name": "Theizé", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.93963000", + "longitude": "4.61634000" + }, + { + "id": "47224", + "name": "Theys", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30132000", + "longitude": "5.99848000" + }, + { + "id": "47228", + "name": "Thiers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85654000", + "longitude": "3.54758000" + }, + { + "id": "47233", + "name": "Thil", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81368000", + "longitude": "5.02323000" + }, + { + "id": "47242", + "name": "Thizy-les-Bourgs", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02995000", + "longitude": "4.31299000" + }, + { + "id": "47243", + "name": "Thoiry", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.23762000", + "longitude": "5.98111000" + }, + { + "id": "47245", + "name": "Thoissey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.17222000", + "longitude": "4.80251000" + }, + { + "id": "47247", + "name": "Thonon-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.37049000", + "longitude": "6.47985000" + }, + { + "id": "47248", + "name": "Thorens-Glières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99510000", + "longitude": "6.24557000" + }, + { + "id": "47257", + "name": "Thuellin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63964000", + "longitude": "5.50840000" + }, + { + "id": "47258", + "name": "Thueyts", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.67628000", + "longitude": "4.22146000" + }, + { + "id": "47262", + "name": "Thurins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68179000", + "longitude": "4.64079000" + }, + { + "id": "47265", + "name": "Thyez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08249000", + "longitude": "6.53777000" + }, + { + "id": "47279", + "name": "Tignes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.49604000", + "longitude": "6.92463000" + }, + { + "id": "47280", + "name": "Tignieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75164000", + "longitude": "5.18911000" + }, + { + "id": "47306", + "name": "Tossiat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13965000", + "longitude": "5.31158000" + }, + { + "id": "47310", + "name": "Toulaud", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.89773000", + "longitude": "4.81639000" + }, + { + "id": "47313", + "name": "Toulon-sur-Allier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.51845000", + "longitude": "3.35989000" + }, + { + "id": "47328", + "name": "Tournon-sur-Rhône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06667000", + "longitude": "4.83333000" + }, + { + "id": "47340", + "name": "Toussieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65443000", + "longitude": "4.98495000" + }, + { + "id": "47346", + "name": "Tramoyes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87599000", + "longitude": "4.96502000" + }, + { + "id": "47406", + "name": "Trévol", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.62924000", + "longitude": "3.30599000" + }, + { + "id": "47408", + "name": "Trévoux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94281000", + "longitude": "4.77143000" + }, + { + "id": "47353", + "name": "Treffort-Cuisiat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26667000", + "longitude": "5.36667000" + }, + { + "id": "47359", + "name": "Trept", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68742000", + "longitude": "5.31843000" + }, + { + "id": "47363", + "name": "Tresserve", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67610000", + "longitude": "5.89906000" + }, + { + "id": "47412", + "name": "Tulette", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.28656000", + "longitude": "4.93122000" + }, + { + "id": "47414", + "name": "Tullins", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30239000", + "longitude": "5.49077000" + }, + { + "id": "47424", + "name": "Ugine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75571000", + "longitude": "6.41503000" + }, + { + "id": "47427", + "name": "Unieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40395000", + "longitude": "4.27094000" + }, + { + "id": "47429", + "name": "Upie", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.80250000", + "longitude": "4.97673000" + }, + { + "id": "47441", + "name": "Usson-en-Forez", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39174000", + "longitude": "3.94142000" + }, + { + "id": "47461", + "name": "Val Thorens", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.29777000", + "longitude": "6.58377000" + }, + { + "id": "47465", + "name": "Val-d’Isère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45142000", + "longitude": "6.97455000" + }, + { + "id": "47471", + "name": "Valence", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.92560000", + "longitude": "4.90956000" + }, + { + "id": "47475", + "name": "Valencin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61109000", + "longitude": "5.02935000" + }, + { + "id": "47486", + "name": "Valleiry", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.11106000", + "longitude": "5.97037000" + }, + { + "id": "47491", + "name": "Vallières", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90043000", + "longitude": "5.93863000" + }, + { + "id": "47492", + "name": "Valloire", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.16542000", + "longitude": "6.42998000" + }, + { + "id": "47494", + "name": "Vallon-en-Sully", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53629000", + "longitude": "2.60804000" + }, + { + "id": "47493", + "name": "Vallon-Pont-d’Arc", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.40685000", + "longitude": "4.39374000" + }, + { + "id": "47501", + "name": "Vals-les-Bains", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.66561000", + "longitude": "4.36615000" + }, + { + "id": "47502", + "name": "Vals-près-le-Puy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03155000", + "longitude": "3.87787000" + }, + { + "id": "47514", + "name": "Varennes-sur-Allier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31318000", + "longitude": "3.40147000" + }, + { + "id": "47533", + "name": "Vaugneray", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73791000", + "longitude": "4.65645000" + }, + { + "id": "47537", + "name": "Vaulnaveys-le-Bas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.10020000", + "longitude": "5.82532000" + }, + { + "id": "47538", + "name": "Vaulnaveys-le-Haut", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12524000", + "longitude": "5.81723000" + }, + { + "id": "47541", + "name": "Vaulx-en-Velin", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.78693000", + "longitude": "4.92510000" + }, + { + "id": "47539", + "name": "Vaulx-Milieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61329000", + "longitude": "5.18371000" + }, + { + "id": "47545", + "name": "Vaux-en-Bugey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92671000", + "longitude": "5.35141000" + }, + { + "id": "47926", + "name": "Vénissieux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69706000", + "longitude": "4.88593000" + }, + { + "id": "47931", + "name": "Vétraz-Monthoux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.17430000", + "longitude": "6.25852000" + }, + { + "id": "47552", + "name": "Veauche", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56326000", + "longitude": "4.29192000" + }, + { + "id": "47556", + "name": "Veigy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26787000", + "longitude": "6.26304000" + }, + { + "id": "47567", + "name": "Vendat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16387000", + "longitude": "3.35366000" + }, + { + "id": "47599", + "name": "Vergongheon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37107000", + "longitude": "3.31981000" + }, + { + "id": "47608", + "name": "Vernaison", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64781000", + "longitude": "4.81140000" + }, + { + "id": "47617", + "name": "Vernioz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.42672000", + "longitude": "4.88267000" + }, + { + "id": "47620", + "name": "Vernosc-lès-Annonay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21596000", + "longitude": "4.71310000" + }, + { + "id": "47625", + "name": "Vernoux-en-Vivarais", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.89577000", + "longitude": "4.64524000" + }, + { + "id": "47634", + "name": "Versonnex", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92914000", + "longitude": "5.92586000" + }, + { + "id": "47639", + "name": "Vertaizon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76983000", + "longitude": "3.28650000" + }, + { + "id": "47649", + "name": "Vesseaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.65152000", + "longitude": "4.44025000" + }, + { + "id": "47651", + "name": "Veurey-Voroize", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.27268000", + "longitude": "5.61372000" + }, + { + "id": "47654", + "name": "Veyras", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.73518000", + "longitude": "4.56254000" + }, + { + "id": "47655", + "name": "Veyre-Monton", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66866000", + "longitude": "3.17144000" + }, + { + "id": "47656", + "name": "Veyrier-du-Lac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88234000", + "longitude": "6.17709000" + }, + { + "id": "47666", + "name": "Vic-le-Comte", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64296000", + "longitude": "3.24607000" + }, + { + "id": "47668", + "name": "Vic-sur-Cère", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.98011000", + "longitude": "2.62505000" + }, + { + "id": "47670", + "name": "Vichy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.12709000", + "longitude": "3.42577000" + }, + { + "id": "47675", + "name": "Vieille-Brioude", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.26470000", + "longitude": "3.40479000" + }, + { + "id": "47682", + "name": "Vienne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52569000", + "longitude": "4.87484000" + }, + { + "id": "47692", + "name": "Vif", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.05654000", + "longitude": "5.67204000" + }, + { + "id": "47710", + "name": "Villard-Bonnot", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.23460000", + "longitude": "5.88323000" + }, + { + "id": "47711", + "name": "Villard-de-Lans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.07156000", + "longitude": "5.55637000" + }, + { + "id": "47712", + "name": "Villargondran", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.26427000", + "longitude": "6.37668000" + }, + { + "id": "47713", + "name": "Villars", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.46785000", + "longitude": "4.35539000" + }, + { + "id": "47714", + "name": "Villars-les-Dombes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.00208000", + "longitude": "5.03248000" + }, + { + "id": "47716", + "name": "Villaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95127000", + "longitude": "6.19447000" + }, + { + "id": "47718", + "name": "Ville-la-Grand", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20300000", + "longitude": "6.25010000" + }, + { + "id": "47719", + "name": "Ville-sous-Anjou", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37274000", + "longitude": "4.85081000" + }, + { + "id": "47724", + "name": "Villebois", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84822000", + "longitude": "5.43310000" + }, + { + "id": "47726", + "name": "Villebret", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26683000", + "longitude": "2.63862000" + }, + { + "id": "47734", + "name": "Villefontaine", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61278000", + "longitude": "5.15058000" + }, + { + "id": "47738", + "name": "Villefranche-d’Allier", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.39652000", + "longitude": "2.85717000" + }, + { + "id": "47741", + "name": "Villefranche-sur-Saône", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.98967000", + "longitude": "4.71961000" + }, + { + "id": "47751", + "name": "Villemoirieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71884000", + "longitude": "5.22586000" + }, + { + "id": "47759", + "name": "Villeneuve", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02096000", + "longitude": "4.83591000" + }, + { + "id": "47767", + "name": "Villeneuve-de-Berg", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55699000", + "longitude": "4.50215000" + }, + { + "id": "47793", + "name": "Villerest", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99539000", + "longitude": "4.03463000" + }, + { + "id": "47794", + "name": "Villereversure", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18521000", + "longitude": "5.38262000" + }, + { + "id": "47817", + "name": "Villette-de-Vienne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59049000", + "longitude": "4.91528000" + }, + { + "id": "47818", + "name": "Villeurbanne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76601000", + "longitude": "4.87950000" + }, + { + "id": "47822", + "name": "Villevocance", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22481000", + "longitude": "4.58827000" + }, + { + "id": "47836", + "name": "Villié-Morgon", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16227000", + "longitude": "4.68069000" + }, + { + "id": "47838", + "name": "Vimines", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54640000", + "longitude": "5.86523000" + }, + { + "id": "47843", + "name": "Vinay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20832000", + "longitude": "5.40646000" + }, + { + "id": "47850", + "name": "Vinsobres", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.33328000", + "longitude": "5.06204000" + }, + { + "id": "47853", + "name": "Violay", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85335000", + "longitude": "4.35951000" + }, + { + "id": "47861", + "name": "Viriat", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25484000", + "longitude": "5.21567000" + }, + { + "id": "47862", + "name": "Virieu", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48404000", + "longitude": "5.47586000" + }, + { + "id": "47863", + "name": "Virieu-le-Grand", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84766000", + "longitude": "5.65146000" + }, + { + "id": "47864", + "name": "Viriville", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.31579000", + "longitude": "5.20376000" + }, + { + "id": "47866", + "name": "Viry", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.11291000", + "longitude": "6.03808000" + }, + { + "id": "47879", + "name": "Viuz-en-Sallaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14673000", + "longitude": "6.40781000" + }, + { + "id": "47880", + "name": "Viuz-la-Chiésaz", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81203000", + "longitude": "6.06645000" + }, + { + "id": "47882", + "name": "Viviers", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.48280000", + "longitude": "4.68895000" + }, + { + "id": "47883", + "name": "Viviers-du-Lac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65000000", + "longitude": "5.90000000" + }, + { + "id": "47889", + "name": "Vizille", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.07819000", + "longitude": "5.77074000" + }, + { + "id": "47890", + "name": "Voglans", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61868000", + "longitude": "5.88798000" + }, + { + "id": "47892", + "name": "Voiron", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.36471000", + "longitude": "5.58560000" + }, + { + "id": "47899", + "name": "Volvic", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87196000", + "longitude": "3.03832000" + }, + { + "id": "47901", + "name": "Vonnas", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.21727000", + "longitude": "4.99246000" + }, + { + "id": "47902", + "name": "Voreppe", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.29484000", + "longitude": "5.63192000" + }, + { + "id": "47903", + "name": "Vorey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18638000", + "longitude": "3.90991000" + }, + { + "id": "47905", + "name": "Vougy", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10435000", + "longitude": "4.11771000" + }, + { + "id": "47912", + "name": "Vourey", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.32180000", + "longitude": "5.51931000" + }, + { + "id": "47913", + "name": "Vourles", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65878000", + "longitude": "4.77325000" + }, + { + "id": "48002", + "name": "Ydes", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34722000", + "longitude": "2.43727000" + }, + { + "id": "48003", + "name": "Yenne", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70420000", + "longitude": "5.75795000" + }, + { + "id": "48009", + "name": "Youx", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14467000", + "longitude": "2.79903000" + }, + { + "id": "48011", + "name": "Yssingeaux", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14282000", + "longitude": "4.12372000" + }, + { + "id": "48012", + "name": "Ytrac", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91200000", + "longitude": "2.36248000" + }, + { + "id": "48021", + "name": "Yzeure", + "state_id": 4798, + "state_code": "ARA", + "country_id": 75, + "country_code": "FR", + "latitude": "46.56596000", + "longitude": "3.35446000" + }, + { + "id": "39239", + "name": "Ableiges", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08932000", + "longitude": "1.98154000" + }, + { + "id": "39240", + "name": "Ablis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51720000", + "longitude": "1.83624000" + }, + { + "id": "39242", + "name": "Ablon-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72732000", + "longitude": "2.42686000" + }, + { + "id": "39252", + "name": "Achères", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96115000", + "longitude": "2.06882000" + }, + { + "id": "39253", + "name": "Achères-la-Forêt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35458000", + "longitude": "2.57035000" + }, + { + "id": "39311", + "name": "Alfortville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80575000", + "longitude": "2.42040000" + }, + { + "id": "39383", + "name": "Andilly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00935000", + "longitude": "2.30240000" + }, + { + "id": "39390", + "name": "Andrésy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98235000", + "longitude": "2.05687000" + }, + { + "id": "39397", + "name": "Angerville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31354000", + "longitude": "1.99935000" + }, + { + "id": "39399", + "name": "Angervilliers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59263000", + "longitude": "2.06541000" + }, + { + "id": "39419", + "name": "Annet-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92669000", + "longitude": "2.71959000" + }, + { + "id": "39435", + "name": "Antony", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75329000", + "longitude": "2.29668000" + }, + { + "id": "39451", + "name": "Arbonne-la-Forêt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41405000", + "longitude": "2.56677000" + }, + { + "id": "39465", + "name": "Arcueil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79993000", + "longitude": "2.33256000" + }, + { + "id": "39481", + "name": "Argenteuil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94788000", + "longitude": "2.24744000" + }, + { + "id": "39494", + "name": "Armentières-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97775000", + "longitude": "3.02073000" + }, + { + "id": "39503", + "name": "Arnouville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98333000", + "longitude": "2.41667000" + }, + { + "id": "39506", + "name": "Arpajon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58875000", + "longitude": "2.24672000" + }, + { + "id": "39543", + "name": "Asnières-sur-Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13369000", + "longitude": "2.35551000" + }, + { + "id": "39544", + "name": "Asnières-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91667000", + "longitude": "2.28333000" + }, + { + "id": "39557", + "name": "Athis-Mons", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70522000", + "longitude": "2.39147000" + }, + { + "id": "39560", + "name": "Attainville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05779000", + "longitude": "2.34497000" + }, + { + "id": "39571", + "name": "Aubergenville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95996000", + "longitude": "1.85467000" + }, + { + "id": "39574", + "name": "Aubervilliers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91667000", + "longitude": "2.38333000" + }, + { + "id": "39602", + "name": "Auffargis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70049000", + "longitude": "1.88696000" + }, + { + "id": "39609", + "name": "Aulnay-sous-Bois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93814000", + "longitude": "2.49402000" + }, + { + "id": "39610", + "name": "Aulnay-sur-Mauldre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92950000", + "longitude": "1.84113000" + }, + { + "id": "39640", + "name": "Auvers-Saint-Georges", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49276000", + "longitude": "2.22045000" + }, + { + "id": "39642", + "name": "Auvers-sur-Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07158000", + "longitude": "2.16978000" + }, + { + "id": "39676", + "name": "Avon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40219000", + "longitude": "2.72022000" + }, + { + "id": "48047", + "name": "Écouen", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02062000", + "longitude": "2.38309000" + }, + { + "id": "48054", + "name": "Écuelles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35636000", + "longitude": "2.82335000" + }, + { + "id": "48058", + "name": "Égly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57828000", + "longitude": "2.22417000" + }, + { + "id": "48059", + "name": "Égreville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17606000", + "longitude": "2.87278000" + }, + { + "id": "48063", + "name": "Élancourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78421000", + "longitude": "1.95520000" + }, + { + "id": "48066", + "name": "Émerainville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81276000", + "longitude": "2.62139000" + }, + { + "id": "48085", + "name": "Épône", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95476000", + "longitude": "1.82233000" + }, + { + "id": "48079", + "name": "Épinay-sous-Sénart", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68970000", + "longitude": "2.51186000" + }, + { + "id": "48080", + "name": "Épinay-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67338000", + "longitude": "2.31074000" + }, + { + "id": "48081", + "name": "Épinay-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95350000", + "longitude": "2.31514000" + }, + { + "id": "48089", + "name": "Éragny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01667000", + "longitude": "2.10000000" + }, + { + "id": "48095", + "name": "Étampes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43507000", + "longitude": "2.16233000" + }, + { + "id": "48103", + "name": "Étiolles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63248000", + "longitude": "2.48226000" + }, + { + "id": "48113", + "name": "Étréchy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49465000", + "longitude": "2.19489000" + }, + { + "id": "48125", + "name": "Évry", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63280000", + "longitude": "2.44049000" + }, + { + "id": "48126", + "name": "Ézanville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02794000", + "longitude": "2.36787000" + }, + { + "id": "39708", + "name": "Bagneaux-sur-Loing", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23310000", + "longitude": "2.70675000" + }, + { + "id": "39709", + "name": "Bagneux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79565000", + "longitude": "2.30796000" + }, + { + "id": "39711", + "name": "Bagnolet", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86667000", + "longitude": "2.41667000" + }, + { + "id": "39724", + "name": "Baillet-en-France", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06187000", + "longitude": "2.29880000" + }, + { + "id": "39729", + "name": "Bailly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84168000", + "longitude": "2.07673000" + }, + { + "id": "39730", + "name": "Bailly-Carrois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58029000", + "longitude": "2.99047000" + }, + { + "id": "39731", + "name": "Bailly-Romainvilliers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84729000", + "longitude": "2.82352000" + }, + { + "id": "39750", + "name": "Ballainvilliers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67481000", + "longitude": "2.30057000" + }, + { + "id": "39753", + "name": "Ballancourt-sur-Essonne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52525000", + "longitude": "2.38604000" + }, + { + "id": "39775", + "name": "Barbizon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44346000", + "longitude": "2.60313000" + }, + { + "id": "39812", + "name": "Baulne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49303000", + "longitude": "2.36230000" + }, + { + "id": "39825", + "name": "Bazainville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80435000", + "longitude": "1.66732000" + }, + { + "id": "39829", + "name": "Bazemont", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92726000", + "longitude": "1.86651000" + }, + { + "id": "39838", + "name": "Beauchamp", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01667000", + "longitude": "2.20000000" + }, + { + "id": "39865", + "name": "Beaumont-du-Gâtinais", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13860000", + "longitude": "2.47913000" + }, + { + "id": "39872", + "name": "Beaumont-sur-Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14232000", + "longitude": "2.28705000" + }, + { + "id": "39930", + "name": "Belloy-en-France", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08837000", + "longitude": "2.37159000" + }, + { + "id": "39940", + "name": "Bennecourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04148000", + "longitude": "1.55469000" + }, + { + "id": "39953", + "name": "Bernes-sur-Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16128000", + "longitude": "2.30000000" + }, + { + "id": "39974", + "name": "Bessancourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03765000", + "longitude": "2.20936000" + }, + { + "id": "39999", + "name": "Beynes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85626000", + "longitude": "1.87261000" + }, + { + "id": "40002", + "name": "Bezons", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92426000", + "longitude": "2.21280000" + }, + { + "id": "40040", + "name": "Bièvres", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75772000", + "longitude": "2.21881000" + }, + { + "id": "40077", + "name": "Bobigny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90982000", + "longitude": "2.45012000" + }, + { + "id": "40084", + "name": "Bois-Colombes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91936000", + "longitude": "2.27485000" + }, + { + "id": "40089", + "name": "Bois-d’Arcy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79966000", + "longitude": "2.02325000" + }, + { + "id": "40090", + "name": "Bois-le-Roi", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47348000", + "longitude": "2.70464000" + }, + { + "id": "40097", + "name": "Boissise-le-Roi", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52479000", + "longitude": "2.56971000" + }, + { + "id": "40099", + "name": "Boissy-le-Châtel", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82073000", + "longitude": "3.13651000" + }, + { + "id": "40100", + "name": "Boissy-le-Cutté", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47020000", + "longitude": "2.28326000" + }, + { + "id": "40098", + "name": "Boissy-Saint-Léger", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75149000", + "longitude": "2.51163000" + }, + { + "id": "40101", + "name": "Boissy-sous-Saint-Yon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55379000", + "longitude": "2.21212000" + }, + { + "id": "40111", + "name": "Bondoufle", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61294000", + "longitude": "2.37775000" + }, + { + "id": "40113", + "name": "Bondy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90180000", + "longitude": "2.48931000" + }, + { + "id": "40119", + "name": "Bonnelles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61816000", + "longitude": "2.02922000" + }, + { + "id": "40123", + "name": "Bonneuil-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76950000", + "longitude": "2.47930000" + }, + { + "id": "40128", + "name": "Bonnières-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03525000", + "longitude": "1.57830000" + }, + { + "id": "40147", + "name": "Bouafle", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96463000", + "longitude": "1.90120000" + }, + { + "id": "40153", + "name": "Bouffémont", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04377000", + "longitude": "2.29796000" + }, + { + "id": "40155", + "name": "Bougival", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86223000", + "longitude": "2.14148000" + }, + { + "id": "40166", + "name": "Bouleurs", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88181000", + "longitude": "2.90728000" + }, + { + "id": "40172", + "name": "Boulogne-Billancourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83545000", + "longitude": "2.24128000" + }, + { + "id": "40177", + "name": "Bouray-sur-Juine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51981000", + "longitude": "2.30001000" + }, + { + "id": "40195", + "name": "Bourg-la-Reine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77888000", + "longitude": "2.31781000" + }, + { + "id": "40212", + "name": "Bourron-Marlotte", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34051000", + "longitude": "2.70041000" + }, + { + "id": "40221", + "name": "Boussy-Saint-Antoine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69101000", + "longitude": "2.53060000" + }, + { + "id": "40224", + "name": "Boutigny-sur-Essonne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43333000", + "longitude": "2.38333000" + }, + { + "id": "40268", + "name": "Bray-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41371000", + "longitude": "3.23852000" + }, + { + "id": "40360", + "name": "Brétigny-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61135000", + "longitude": "2.30593000" + }, + { + "id": "40361", + "name": "Bréval", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94545000", + "longitude": "1.53309000" + }, + { + "id": "40296", + "name": "Breuillet", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57064000", + "longitude": "2.17424000" + }, + { + "id": "40306", + "name": "Brie-Comte-Robert", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69247000", + "longitude": "2.61090000" + }, + { + "id": "40315", + "name": "Briis-sous-Forges", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62399000", + "longitude": "2.12112000" + }, + { + "id": "40335", + "name": "Brou-sur-Chantereine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88333000", + "longitude": "2.63333000" + }, + { + "id": "40346", + "name": "Brunoy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69420000", + "longitude": "2.49223000" + }, + { + "id": "40350", + "name": "Bruyères-le-Châtel", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58868000", + "longitude": "2.18991000" + }, + { + "id": "40351", + "name": "Bruyères-sur-Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15756000", + "longitude": "2.32577000" + }, + { + "id": "40353", + "name": "Bry-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83811000", + "longitude": "2.52488000" + }, + { + "id": "40368", + "name": "Buc", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77627000", + "longitude": "2.12577000" + }, + { + "id": "40369", + "name": "Buchelay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97926000", + "longitude": "1.67026000" + }, + { + "id": "40381", + "name": "Bullion", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62285000", + "longitude": "1.99024000" + }, + { + "id": "40386", + "name": "Bures-sur-Yvette", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69981000", + "longitude": "2.17064000" + }, + { + "id": "40401", + "name": "Bussy-Saint-Georges", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84099000", + "longitude": "2.70165000" + }, + { + "id": "40402", + "name": "Butry-sur-Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08837000", + "longitude": "2.19916000" + }, + { + "id": "40449", + "name": "Cachan", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79632000", + "longitude": "2.33661000" + }, + { + "id": "40513", + "name": "Cannes-Écluse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36303000", + "longitude": "2.98748000" + }, + { + "id": "40559", + "name": "Carrières-sous-Poissy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94952000", + "longitude": "2.04068000" + }, + { + "id": "40560", + "name": "Carrières-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90687000", + "longitude": "2.17920000" + }, + { + "id": "41390", + "name": "Cély", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45959000", + "longitude": "2.53245000" + }, + { + "id": "40646", + "name": "Cergy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03645000", + "longitude": "2.07613000" + }, + { + "id": "40647", + "name": "Cergy-Pontoise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03894000", + "longitude": "2.07805000" + }, + { + "id": "40651", + "name": "Cernay-la-Ville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67324000", + "longitude": "1.97422000" + }, + { + "id": "40653", + "name": "Cerny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47796000", + "longitude": "2.32815000" + }, + { + "id": "40660", + "name": "Cesson", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56204000", + "longitude": "2.60816000" + }, + { + "id": "40680", + "name": "Chailly-en-Bière", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46701000", + "longitude": "2.60785000" + }, + { + "id": "40681", + "name": "Chailly-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79006000", + "longitude": "3.12453000" + }, + { + "id": "40689", + "name": "Chalifert", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88993000", + "longitude": "2.77339000" + }, + { + "id": "40697", + "name": "Chalo-Saint-Mars", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42328000", + "longitude": "2.06491000" + }, + { + "id": "40703", + "name": "Chamarande", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51715000", + "longitude": "2.21710000" + }, + { + "id": "40709", + "name": "Chambourcy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90655000", + "longitude": "2.04100000" + }, + { + "id": "40716", + "name": "Chamigny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97242000", + "longitude": "3.15165000" + }, + { + "id": "40722", + "name": "Champagne-sur-Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14052000", + "longitude": "2.24233000" + }, + { + "id": "40723", + "name": "Champagne-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39794000", + "longitude": "2.79785000" + }, + { + "id": "40730", + "name": "Champcueil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51594000", + "longitude": "2.44674000" + }, + { + "id": "40742", + "name": "Champigny-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81642000", + "longitude": "2.49366000" + }, + { + "id": "40744", + "name": "Champlan", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70823000", + "longitude": "2.27975000" + }, + { + "id": "40748", + "name": "Champs-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85000000", + "longitude": "2.60000000" + }, + { + "id": "40761", + "name": "Changis-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95816000", + "longitude": "3.02191000" + }, + { + "id": "40771", + "name": "Chanteloup-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85478000", + "longitude": "2.73929000" + }, + { + "id": "40772", + "name": "Chanteloup-les-Vignes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97614000", + "longitude": "2.03261000" + }, + { + "id": "40783", + "name": "Chapet", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96667000", + "longitude": "1.93333000" + }, + { + "id": "40798", + "name": "Charenton-le-Pont", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82209000", + "longitude": "2.41217000" + }, + { + "id": "40812", + "name": "Charny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97098000", + "longitude": "2.76121000" + }, + { + "id": "40818", + "name": "Chars", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16032000", + "longitude": "1.93669000" + }, + { + "id": "40821", + "name": "Chartrettes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48808000", + "longitude": "2.70083000" + }, + { + "id": "40831", + "name": "Chatou", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88980000", + "longitude": "2.15863000" + }, + { + "id": "40835", + "name": "Chauconin-Neufmontiers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96667000", + "longitude": "2.85000000" + }, + { + "id": "40842", + "name": "Chaumes-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66853000", + "longitude": "2.84015000" + }, + { + "id": "40847", + "name": "Chaumontel", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12470000", + "longitude": "2.43237000" + }, + { + "id": "40861", + "name": "Chavenay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85437000", + "longitude": "1.99163000" + }, + { + "id": "40863", + "name": "Chaville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80565000", + "longitude": "2.18864000" + }, + { + "id": "40941", + "name": "Château-Landon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14721000", + "longitude": "2.69754000" + }, + { + "id": "40954", + "name": "Châteaufort", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73584000", + "longitude": "2.09054000" + }, + { + "id": "40986", + "name": "Châtenay-Malabry", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76507000", + "longitude": "2.26655000" + }, + { + "id": "40987", + "name": "Châtenay-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41839000", + "longitude": "3.09474000" + }, + { + "id": "40992", + "name": "Châtillon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80240000", + "longitude": "2.29346000" + }, + { + "id": "40869", + "name": "Chelles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88109000", + "longitude": "2.59295000" + }, + { + "id": "40874", + "name": "Chennevières-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79702000", + "longitude": "2.54046000" + }, + { + "id": "40875", + "name": "Chenoise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61462000", + "longitude": "3.19459000" + }, + { + "id": "40879", + "name": "Cheptainville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55090000", + "longitude": "2.27665000" + }, + { + "id": "40889", + "name": "Chessy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88333000", + "longitude": "2.76667000" + }, + { + "id": "40894", + "name": "Chevannes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53259000", + "longitude": "2.44388000" + }, + { + "id": "40900", + "name": "Chevilly-Larue", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76476000", + "longitude": "2.35030000" + }, + { + "id": "40901", + "name": "Chevreuse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70662000", + "longitude": "2.03329000" + }, + { + "id": "40904", + "name": "Chevry-Cossigny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72465000", + "longitude": "2.66106000" + }, + { + "id": "40909", + "name": "Chilly-Mazarin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71489000", + "longitude": "2.31638000" + }, + { + "id": "40922", + "name": "Choisy-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75867000", + "longitude": "3.21705000" + }, + { + "id": "40923", + "name": "Choisy-le-Roi", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76846000", + "longitude": "2.41874000" + }, + { + "id": "41039", + "name": "Clamart", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80299000", + "longitude": "2.26692000" + }, + { + "id": "41046", + "name": "Claye-Souilly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94492000", + "longitude": "2.68566000" + }, + { + "id": "41052", + "name": "Clichy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90018000", + "longitude": "2.30952000" + }, + { + "id": "41053", + "name": "Clichy-sous-Bois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91020000", + "longitude": "2.55323000" + }, + { + "id": "41084", + "name": "Coignières", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75010000", + "longitude": "1.92082000" + }, + { + "id": "41095", + "name": "Collégien", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83571000", + "longitude": "2.67365000" + }, + { + "id": "41100", + "name": "Colombes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91882000", + "longitude": "2.25404000" + }, + { + "id": "41115", + "name": "Combs-la-Ville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66497000", + "longitude": "2.56957000" + }, + { + "id": "41129", + "name": "Conches-sur-Gondoire", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85624000", + "longitude": "2.71783000" + }, + { + "id": "41135", + "name": "Condé-Sainte-Libiaire", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89695000", + "longitude": "2.83904000" + }, + { + "id": "41139", + "name": "Condé-sur-Vesgre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74199000", + "longitude": "1.66069000" + }, + { + "id": "41142", + "name": "Conflans-Sainte-Honorine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00158000", + "longitude": "2.09694000" + }, + { + "id": "41145", + "name": "Congis-sur-Thérouanne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00000000", + "longitude": "2.98333000" + }, + { + "id": "41164", + "name": "Corbeil-Essonnes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60603000", + "longitude": "2.48757000" + }, + { + "id": "41170", + "name": "Corbreuse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50065000", + "longitude": "1.95913000" + }, + { + "id": "41180", + "name": "Cormeilles-en-Parisis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97111000", + "longitude": "2.20491000" + }, + { + "id": "41212", + "name": "Coubert", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67186000", + "longitude": "2.69733000" + }, + { + "id": "41215", + "name": "Coubron", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91667000", + "longitude": "2.58333000" + }, + { + "id": "41226", + "name": "Couilly-Pont-aux-Dames", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88473000", + "longitude": "2.85677000" + }, + { + "id": "41235", + "name": "Coulommiers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81451000", + "longitude": "3.08498000" + }, + { + "id": "41239", + "name": "Coupvray", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89289000", + "longitude": "2.79670000" + }, + { + "id": "41241", + "name": "Courbevoie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89672000", + "longitude": "2.25666000" + }, + { + "id": "41249", + "name": "Courcouronnes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61429000", + "longitude": "2.40762000" + }, + { + "id": "41251", + "name": "Courdimanche", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03513000", + "longitude": "2.00096000" + }, + { + "id": "41258", + "name": "Courpalay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64947000", + "longitude": "2.96116000" + }, + { + "id": "41271", + "name": "Courtry", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91906000", + "longitude": "2.60431000" + }, + { + "id": "41344", + "name": "Crégy-lès-Meaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97648000", + "longitude": "2.87483000" + }, + { + "id": "41351", + "name": "Créteil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79266000", + "longitude": "2.46569000" + }, + { + "id": "41307", + "name": "Crespières", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88317000", + "longitude": "1.92151000" + }, + { + "id": "41323", + "name": "Croissy-Beaubourg", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82830000", + "longitude": "2.66964000" + }, + { + "id": "41324", + "name": "Croissy-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87925000", + "longitude": "2.13836000" + }, + { + "id": "41327", + "name": "Crosne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71921000", + "longitude": "2.45728000" + }, + { + "id": "41333", + "name": "Crouy-sur-Ourcq", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08980000", + "longitude": "3.07530000" + }, + { + "id": "41415", + "name": "Dammarie-les-Lys", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51667000", + "longitude": "2.65000000" + }, + { + "id": "41416", + "name": "Dammartin-en-Goële", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05423000", + "longitude": "2.67777000" + }, + { + "id": "41420", + "name": "Dampierre-en-Yvelines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70000000", + "longitude": "1.98333000" + }, + { + "id": "41423", + "name": "Dampmart", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88854000", + "longitude": "2.74095000" + }, + { + "id": "41616", + "name": "Département de l'Essonne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50000000", + "longitude": "2.25000000" + }, + { + "id": "41646", + "name": "Département du Val-d’Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07891000", + "longitude": "2.17673000" + }, + { + "id": "41459", + "name": "Deuil-la-Barre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97674000", + "longitude": "2.32722000" + }, + { + "id": "41521", + "name": "Domont", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02782000", + "longitude": "2.32638000" + }, + { + "id": "41532", + "name": "Donnemarie-Dontilly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47719000", + "longitude": "3.13162000" + }, + { + "id": "41551", + "name": "Doue", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86641000", + "longitude": "3.16269000" + }, + { + "id": "41554", + "name": "Dourdan", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52772000", + "longitude": "2.01113000" + }, + { + "id": "41568", + "name": "Drancy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92578000", + "longitude": "2.44533000" + }, + { + "id": "41570", + "name": "Draveil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68466000", + "longitude": "2.41418000" + }, + { + "id": "41586", + "name": "Dugny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95371000", + "longitude": "2.41734000" + }, + { + "id": "41651", + "name": "Eaubonne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99712000", + "longitude": "2.28249000" + }, + { + "id": "41658", + "name": "Ecquevilly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95192000", + "longitude": "1.92338000" + }, + { + "id": "41669", + "name": "Enghien-les-Bains", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96667000", + "longitude": "2.31667000" + }, + { + "id": "41672", + "name": "Ennery", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07505000", + "longitude": "2.10599000" + }, + { + "id": "41696", + "name": "Ermont", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99004000", + "longitude": "2.25804000" + }, + { + "id": "41704", + "name": "Esbly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90520000", + "longitude": "2.81235000" + }, + { + "id": "41773", + "name": "Faremoutiers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79962000", + "longitude": "2.99607000" + }, + { + "id": "41786", + "name": "Favières", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76324000", + "longitude": "2.77470000" + }, + { + "id": "42007", + "name": "Férolles-Attilly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73184000", + "longitude": "2.63088000" + }, + { + "id": "41806", + "name": "Ferrières-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82352000", + "longitude": "2.70664000" + }, + { + "id": "41810", + "name": "Feucherolles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87002000", + "longitude": "1.97402000" + }, + { + "id": "41847", + "name": "Fleury-Mérogis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63730000", + "longitude": "2.36378000" + }, + { + "id": "41854", + "name": "Flins-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96523000", + "longitude": "1.87314000" + }, + { + "id": "41870", + "name": "Follainville-Dennemont", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02194000", + "longitude": "1.71331000" + }, + { + "id": "41887", + "name": "Fontainebleau", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40908000", + "longitude": "2.70177000" + }, + { + "id": "41896", + "name": "Fontenay-aux-Roses", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79325000", + "longitude": "2.29275000" + }, + { + "id": "41897", + "name": "Fontenay-en-Parisis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05371000", + "longitude": "2.45156000" + }, + { + "id": "41901", + "name": "Fontenay-lès-Briis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61962000", + "longitude": "2.15276000" + }, + { + "id": "41899", + "name": "Fontenay-le-Fleury", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81253000", + "longitude": "2.04863000" + }, + { + "id": "41902", + "name": "Fontenay-sous-Bois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85442000", + "longitude": "2.48268000" + }, + { + "id": "41895", + "name": "Fontenay-Trésigny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70647000", + "longitude": "2.87047000" + }, + { + "id": "41912", + "name": "Forges-les-Bains", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62942000", + "longitude": "2.10264000" + }, + { + "id": "41920", + "name": "Fosses", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09808000", + "longitude": "2.50957000" + }, + { + "id": "41939", + "name": "Fourqueux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88693000", + "longitude": "2.06367000" + }, + { + "id": "41949", + "name": "Franconville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98333000", + "longitude": "2.23333000" + }, + { + "id": "41987", + "name": "Frépillon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05216000", + "longitude": "2.20528000" + }, + { + "id": "41956", + "name": "Freneuse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04832000", + "longitude": "1.60168000" + }, + { + "id": "41958", + "name": "Fresnes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75568000", + "longitude": "2.32241000" + }, + { + "id": "41990", + "name": "Fublaines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93816000", + "longitude": "2.93655000" + }, + { + "id": "42012", + "name": "Gagny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88333000", + "longitude": "2.53333000" + }, + { + "id": "42023", + "name": "Galluis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79657000", + "longitude": "1.79414000" + }, + { + "id": "42025", + "name": "Gambais", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77351000", + "longitude": "1.67196000" + }, + { + "id": "42032", + "name": "Garancières", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82271000", + "longitude": "1.75512000" + }, + { + "id": "42034", + "name": "Garches", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84226000", + "longitude": "2.18232000" + }, + { + "id": "42042", + "name": "Gargenville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98802000", + "longitude": "1.81176000" + }, + { + "id": "42043", + "name": "Garges-lès-Gonesse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96791000", + "longitude": "2.39781000" + }, + { + "id": "42056", + "name": "Gazeran", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63264000", + "longitude": "1.77149000" + }, + { + "id": "42068", + "name": "Gennevilliers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93333000", + "longitude": "2.30000000" + }, + { + "id": "42070", + "name": "Gentilly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81294000", + "longitude": "2.34170000" + }, + { + "id": "42089", + "name": "Gif-sur-Yvette", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68333000", + "longitude": "2.13333000" + }, + { + "id": "42120", + "name": "Gometz-la-Ville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67219000", + "longitude": "2.12868000" + }, + { + "id": "42121", + "name": "Gometz-le-Châtel", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67837000", + "longitude": "2.13792000" + }, + { + "id": "42129", + "name": "Gonesse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98693000", + "longitude": "2.44892000" + }, + { + "id": "42142", + "name": "Gouaix", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48539000", + "longitude": "3.29336000" + }, + { + "id": "42153", + "name": "Gournay-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86223000", + "longitude": "2.58452000" + }, + { + "id": "42154", + "name": "Goussainville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01367000", + "longitude": "2.46595000" + }, + { + "id": "42155", + "name": "Gouvernes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86007000", + "longitude": "2.69074000" + }, + { + "id": "42202", + "name": "Gretz-Armainvilliers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74120000", + "longitude": "2.73105000" + }, + { + "id": "42204", + "name": "Grez-sur-Loing", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31754000", + "longitude": "2.68848000" + }, + { + "id": "42212", + "name": "Grigny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65412000", + "longitude": "2.39343000" + }, + { + "id": "42216", + "name": "Grisy-Suisnes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68538000", + "longitude": "2.66781000" + }, + { + "id": "42226", + "name": "Groslay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98561000", + "longitude": "2.34736000" + }, + { + "id": "42285", + "name": "Guérard", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82086000", + "longitude": "2.95969000" + }, + { + "id": "42244", + "name": "Guermantes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85303000", + "longitude": "2.70495000" + }, + { + "id": "42246", + "name": "Guerville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94388000", + "longitude": "1.73429000" + }, + { + "id": "42256", + "name": "Guignes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63333000", + "longitude": "2.80000000" + }, + { + "id": "42276", + "name": "Guyancourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77334000", + "longitude": "2.07393000" + }, + { + "id": "42327", + "name": "Hardricourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00779000", + "longitude": "1.89389000" + }, + { + "id": "42356", + "name": "Hauts-de-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85000000", + "longitude": "2.19293000" + }, + { + "id": "42458", + "name": "Héricy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44848000", + "longitude": "2.76445000" + }, + { + "id": "42375", + "name": "Herblay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98994000", + "longitude": "2.16990000" + }, + { + "id": "42424", + "name": "Houdan", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79044000", + "longitude": "1.60007000" + }, + { + "id": "42426", + "name": "Houilles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92161000", + "longitude": "2.19263000" + }, + { + "id": "42474", + "name": "Igny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74437000", + "longitude": "2.22428000" + }, + { + "id": "42506", + "name": "Issou", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98994000", + "longitude": "1.79292000" + }, + { + "id": "42508", + "name": "Issy-les-Moulineaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82104000", + "longitude": "2.27718000" + }, + { + "id": "42514", + "name": "Itteville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51536000", + "longitude": "2.34377000" + }, + { + "id": "42517", + "name": "Ivry-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81568000", + "longitude": "2.38487000" + }, + { + "id": "42528", + "name": "Janville-sur-Juine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51352000", + "longitude": "2.27064000" + }, + { + "id": "42554", + "name": "Joinville-le-Pont", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82538000", + "longitude": "2.47458000" + }, + { + "id": "42565", + "name": "Jouarre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92661000", + "longitude": "3.13168000" + }, + { + "id": "42566", + "name": "Jouars-Pontchartrain", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78888000", + "longitude": "1.89898000" + }, + { + "id": "42574", + "name": "Jouy-en-Josas", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75909000", + "longitude": "2.16966000" + }, + { + "id": "42575", + "name": "Jouy-le-Châtel", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66651000", + "longitude": "3.13036000" + }, + { + "id": "42576", + "name": "Jouy-le-Moutier", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01068000", + "longitude": "2.04028000" + }, + { + "id": "42578", + "name": "Jouy-sur-Morin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79500000", + "longitude": "3.27238000" + }, + { + "id": "42587", + "name": "Juilly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01375000", + "longitude": "2.70563000" + }, + { + "id": "42601", + "name": "Juvisy-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68333000", + "longitude": "2.38333000" + }, + { + "id": "42602", + "name": "Juziers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99137000", + "longitude": "1.84760000" + }, + { + "id": "42626", + "name": "L'Haÿ-les-Roses", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78333000", + "longitude": "2.33333000" + }, + { + "id": "42672", + "name": "La Celle-Saint-Cloud", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85029000", + "longitude": "2.14523000" + }, + { + "id": "42673", + "name": "La Celle-sur-Morin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81146000", + "longitude": "2.96921000" + }, + { + "id": "42679", + "name": "La Chapelle-Gauthier", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54947000", + "longitude": "2.89776000" + }, + { + "id": "42698", + "name": "La Chapelle-la-Reine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31813000", + "longitude": "2.57152000" + }, + { + "id": "42699", + "name": "La Chapelle-sur-Crécy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85879000", + "longitude": "2.92597000" + }, + { + "id": "42716", + "name": "La Courneuve", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92805000", + "longitude": "2.39627000" + }, + { + "id": "42728", + "name": "La Defense", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89198000", + "longitude": "2.23881000" + }, + { + "id": "42736", + "name": "La Ferté-Alais", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48306000", + "longitude": "2.34802000" + }, + { + "id": "42738", + "name": "La Ferté-Gaucher", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78310000", + "longitude": "3.30678000" + }, + { + "id": "42743", + "name": "La Ferté-sous-Jouarre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95140000", + "longitude": "3.12724000" + }, + { + "id": "42758", + "name": "La Frette-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98057000", + "longitude": "2.17866000" + }, + { + "id": "42764", + "name": "La Garenne-Colombes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90472000", + "longitude": "2.24690000" + }, + { + "id": "42773", + "name": "La Grande-Paroisse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38682000", + "longitude": "2.90157000" + }, + { + "id": "42783", + "name": "La Houssaye-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75381000", + "longitude": "2.86552000" + }, + { + "id": "42824", + "name": "La Norville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58243000", + "longitude": "2.26180000" + }, + { + "id": "42839", + "name": "La Queue-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78520000", + "longitude": "2.58112000" + }, + { + "id": "42840", + "name": "La Queue-les-Yvelines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80000000", + "longitude": "1.76667000" + }, + { + "id": "42863", + "name": "La Rochette", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50882000", + "longitude": "2.66357000" + }, + { + "id": "42910", + "name": "La Verrière", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75200000", + "longitude": "1.94649000" + }, + { + "id": "42914", + "name": "La Ville-du-Bois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65521000", + "longitude": "2.26833000" + }, + { + "id": "42959", + "name": "Lagny-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86667000", + "longitude": "2.71667000" + }, + { + "id": "43069", + "name": "Lardy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51847000", + "longitude": "2.27360000" + }, + { + "id": "43692", + "name": "Lésigny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74374000", + "longitude": "2.61518000" + }, + { + "id": "43694", + "name": "Lévis-Saint-Nom", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71667000", + "longitude": "1.95000000" + }, + { + "id": "43708", + "name": "L’Étang-la-Ville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86954000", + "longitude": "2.05732000" + }, + { + "id": "43703", + "name": "L’Isle-Adam", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10744000", + "longitude": "2.22818000" + }, + { + "id": "43131", + "name": "Le Blanc-Mesnil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93872000", + "longitude": "2.46138000" + }, + { + "id": "43138", + "name": "Le Bourget", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93405000", + "longitude": "2.43584000" + }, + { + "id": "43169", + "name": "Le Châtelet-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50695000", + "longitude": "2.79163000" + }, + { + "id": "43165", + "name": "Le Chesnay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82220000", + "longitude": "2.12213000" + }, + { + "id": "43173", + "name": "Le Coudray-Montceaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56376000", + "longitude": "2.50013000" + }, + { + "id": "43208", + "name": "Le Kremlin-Bicêtre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81471000", + "longitude": "2.36073000" + }, + { + "id": "43239", + "name": "Le Mée-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53157000", + "longitude": "2.62829000" + }, + { + "id": "43230", + "name": "Le Mesnil-le-Roi", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93825000", + "longitude": "2.12554000" + }, + { + "id": "43227", + "name": "Le Mesnil-Saint-Denis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74485000", + "longitude": "1.95594000" + }, + { + "id": "43247", + "name": "Le Pecq", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89317000", + "longitude": "2.10371000" + }, + { + "id": "43249", + "name": "Le Perray-en-Yvelines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69441000", + "longitude": "1.85643000" + }, + { + "id": "43250", + "name": "Le Perreux-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85000000", + "longitude": "2.50000000" + }, + { + "id": "43257", + "name": "Le Pin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91523000", + "longitude": "2.62841000" + }, + { + "id": "43264", + "name": "Le Plessis-Bouchard", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00000000", + "longitude": "2.23333000" + }, + { + "id": "43268", + "name": "Le Plessis-Pâté", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61078000", + "longitude": "2.32318000" + }, + { + "id": "43269", + "name": "Le Plessis-Robinson", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78889000", + "longitude": "2.27078000" + }, + { + "id": "43270", + "name": "Le Plessis-Trévise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81074000", + "longitude": "2.57363000" + }, + { + "id": "43277", + "name": "Le Port-Marly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89016000", + "longitude": "2.11139000" + }, + { + "id": "43284", + "name": "Le Pré-Saint-Gervais", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88549000", + "longitude": "2.40422000" + }, + { + "id": "43291", + "name": "Le Raincy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89916000", + "longitude": "2.52298000" + }, + { + "id": "43312", + "name": "Le Thillay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00659000", + "longitude": "2.47218000" + }, + { + "id": "43327", + "name": "Le Val-Saint-Germain", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56601000", + "longitude": "2.06471000" + }, + { + "id": "43337", + "name": "Le Vésinet", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89281000", + "longitude": "2.13308000" + }, + { + "id": "43360", + "name": "Les Alluets-le-Roi", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91379000", + "longitude": "1.91810000" + }, + { + "id": "43378", + "name": "Les Clayes-sous-Bois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82206000", + "longitude": "1.98677000" + }, + { + "id": "43386", + "name": "Les Essarts-le-Roi", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71673000", + "longitude": "1.90089000" + }, + { + "id": "43398", + "name": "Les Lilas", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87992000", + "longitude": "2.42057000" + }, + { + "id": "43401", + "name": "Les Loges-en-Josas", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76377000", + "longitude": "2.14002000" + }, + { + "id": "43409", + "name": "Les Molières", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67306000", + "longitude": "2.06959000" + }, + { + "id": "43412", + "name": "Les Mureaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99173000", + "longitude": "1.90972000" + }, + { + "id": "43418", + "name": "Les Pavillons-sous-Bois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90683000", + "longitude": "2.50648000" + }, + { + "id": "43432", + "name": "Les Ulis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68167000", + "longitude": "2.16944000" + }, + { + "id": "43446", + "name": "Leudeville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56591000", + "longitude": "2.32676000" + }, + { + "id": "43447", + "name": "Leuville-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61730000", + "longitude": "2.26685000" + }, + { + "id": "43449", + "name": "Levallois-Perret", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89389000", + "longitude": "2.28864000" + }, + { + "id": "43472", + "name": "Lieusaint", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63476000", + "longitude": "2.54806000" + }, + { + "id": "43489", + "name": "Limay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99553000", + "longitude": "1.74081000" + }, + { + "id": "43490", + "name": "Limeil-Brévannes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74480000", + "longitude": "2.48705000" + }, + { + "id": "43492", + "name": "Limetz-Villez", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06667000", + "longitude": "1.55000000" + }, + { + "id": "43495", + "name": "Limours", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64625000", + "longitude": "2.07688000" + }, + { + "id": "43500", + "name": "Linas", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63041000", + "longitude": "2.26266000" + }, + { + "id": "43510", + "name": "Lisses", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60222000", + "longitude": "2.42245000" + }, + { + "id": "43516", + "name": "Liverdy-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69987000", + "longitude": "2.77606000" + }, + { + "id": "43520", + "name": "Livry-Gargan", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91930000", + "longitude": "2.54305000" + }, + { + "id": "43521", + "name": "Livry-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51771000", + "longitude": "2.67879000" + }, + { + "id": "43523", + "name": "Lizy-sur-Ourcq", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02454000", + "longitude": "3.02178000" + }, + { + "id": "43538", + "name": "Lognes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83541000", + "longitude": "2.62998000" + }, + { + "id": "43561", + "name": "Longjumeau", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69503000", + "longitude": "2.30735000" + }, + { + "id": "43563", + "name": "Longnes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92002000", + "longitude": "1.58705000" + }, + { + "id": "43565", + "name": "Longperrier", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04844000", + "longitude": "2.66571000" + }, + { + "id": "43566", + "name": "Longpont-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64171000", + "longitude": "2.29278000" + }, + { + "id": "43572", + "name": "Longueville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51503000", + "longitude": "3.24677000" + }, + { + "id": "43594", + "name": "Lorrez-le-Bocage-Préaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23333000", + "longitude": "2.90000000" + }, + { + "id": "43611", + "name": "Louveciennes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86115000", + "longitude": "2.11463000" + }, + { + "id": "43618", + "name": "Louvres", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04460000", + "longitude": "2.50479000" + }, + { + "id": "43649", + "name": "Lumigny-Nesles-Ormeaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73333000", + "longitude": "2.95000000" + }, + { + "id": "43671", + "name": "Luzarches", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11319000", + "longitude": "2.42230000" + }, + { + "id": "43716", + "name": "Maffliers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07758000", + "longitude": "2.30768000" + }, + { + "id": "43723", + "name": "Magnanville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96798000", + "longitude": "1.67842000" + }, + { + "id": "43726", + "name": "Magny-en-Vexin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15515000", + "longitude": "1.78669000" + }, + { + "id": "43728", + "name": "Magny-le-Hongre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86325000", + "longitude": "2.81546000" + }, + { + "id": "43729", + "name": "Magny-les-Hameaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74345000", + "longitude": "2.06154000" + }, + { + "id": "43737", + "name": "Maincy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54977000", + "longitude": "2.70017000" + }, + { + "id": "43743", + "name": "Maisons-Alfort", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81171000", + "longitude": "2.43945000" + }, + { + "id": "43744", + "name": "Maisons-Laffitte", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95264000", + "longitude": "2.14521000" + }, + { + "id": "43745", + "name": "Maisse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39525000", + "longitude": "2.37902000" + }, + { + "id": "43748", + "name": "Malakoff", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81999000", + "longitude": "2.29998000" + }, + { + "id": "43775", + "name": "Mandres-les-Roses", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70198000", + "longitude": "2.54662000" + }, + { + "id": "43784", + "name": "Mantes-la-Jolie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99048000", + "longitude": "1.71670000" + }, + { + "id": "43785", + "name": "Mantes-la-Ville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97374000", + "longitude": "1.70253000" + }, + { + "id": "43815", + "name": "Marcoussis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64026000", + "longitude": "2.23858000" + }, + { + "id": "43820", + "name": "Mareil-Marly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88213000", + "longitude": "2.07351000" + }, + { + "id": "43821", + "name": "Mareil-sur-Mauldre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89521000", + "longitude": "1.86870000" + }, + { + "id": "43827", + "name": "Mareuil-lès-Meaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92648000", + "longitude": "2.86134000" + }, + { + "id": "43834", + "name": "Margency", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00000000", + "longitude": "2.30000000" + }, + { + "id": "43846", + "name": "Marines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14485000", + "longitude": "1.98226000" + }, + { + "id": "43850", + "name": "Marles-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72783000", + "longitude": "2.88003000" + }, + { + "id": "43855", + "name": "Marly-la-Ville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08201000", + "longitude": "2.50347000" + }, + { + "id": "43856", + "name": "Marly-le-Roi", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86667000", + "longitude": "2.08333000" + }, + { + "id": "43864", + "name": "Marnes-la-Coquette", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82732000", + "longitude": "2.17151000" + }, + { + "id": "43866", + "name": "Marolles-en-Hurepoix", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56232000", + "longitude": "2.29885000" + }, + { + "id": "43868", + "name": "Marolles-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38662000", + "longitude": "3.03562000" + }, + { + "id": "43923", + "name": "Mary-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01591000", + "longitude": "3.02788000" + }, + { + "id": "43936", + "name": "Massy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72692000", + "longitude": "2.28301000" + }, + { + "id": "43948", + "name": "Maule", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91056000", + "longitude": "1.85264000" + }, + { + "id": "43952", + "name": "Maurecourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99614000", + "longitude": "2.06155000" + }, + { + "id": "43955", + "name": "Maurepas", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76486000", + "longitude": "1.92923000" + }, + { + "id": "44457", + "name": "Médan", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95539000", + "longitude": "1.99494000" + }, + { + "id": "44480", + "name": "Méré", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78445000", + "longitude": "1.81247000" + }, + { + "id": "44482", + "name": "Méréville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31476000", + "longitude": "2.08609000" + }, + { + "id": "44472", + "name": "Mériel", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07614000", + "longitude": "2.21054000" + }, + { + "id": "44478", + "name": "Méry-sur-Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05876000", + "longitude": "2.19113000" + }, + { + "id": "44490", + "name": "Mézières-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96128000", + "longitude": "1.79245000" + }, + { + "id": "44491", + "name": "Mézy-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00000000", + "longitude": "1.88333000" + }, + { + "id": "43983", + "name": "Meaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96014000", + "longitude": "2.87885000" + }, + { + "id": "43998", + "name": "Melun", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54570000", + "longitude": "2.65356000" + }, + { + "id": "44001", + "name": "Mennecy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56903000", + "longitude": "2.44384000" + }, + { + "id": "44008", + "name": "Menucourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02841000", + "longitude": "1.98046000" + }, + { + "id": "44045", + "name": "Meudon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81381000", + "longitude": "2.23500000" + }, + { + "id": "44046", + "name": "Meulan-en-Yvelines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00768000", + "longitude": "1.90602000" + }, + { + "id": "44076", + "name": "Milly-la-Forêt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40400000", + "longitude": "2.47015000" + }, + { + "id": "44106", + "name": "Mitry-Mory", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98333000", + "longitude": "2.61667000" + }, + { + "id": "44112", + "name": "Moigny-sur-École", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43262000", + "longitude": "2.45802000" + }, + { + "id": "44116", + "name": "Moisenay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56266000", + "longitude": "2.73527000" + }, + { + "id": "44119", + "name": "Moisselles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05000000", + "longitude": "2.33597000" + }, + { + "id": "44120", + "name": "Moissy-Cramayel", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62605000", + "longitude": "2.60125000" + }, + { + "id": "44335", + "name": "Montévrain", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87415000", + "longitude": "2.75114000" + }, + { + "id": "44210", + "name": "Montcourt-Fromonville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30672000", + "longitude": "2.70460000" + }, + { + "id": "44222", + "name": "Montereau-Fault-Yonne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38333000", + "longitude": "2.95000000" + }, + { + "id": "44228", + "name": "Montesson", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90924000", + "longitude": "2.13754000" + }, + { + "id": "44235", + "name": "Montfermeil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89820000", + "longitude": "2.57913000" + }, + { + "id": "44246", + "name": "Montgeron", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70543000", + "longitude": "2.45039000" + }, + { + "id": "44251", + "name": "Monthyon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00753000", + "longitude": "2.82610000" + }, + { + "id": "44261", + "name": "Montigny-lès-Cormeilles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98201000", + "longitude": "2.20035000" + }, + { + "id": "44260", + "name": "Montigny-le-Bretonneux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76636000", + "longitude": "2.03405000" + }, + { + "id": "44257", + "name": "Montigny-Lencoup", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45162000", + "longitude": "3.06503000" + }, + { + "id": "44263", + "name": "Montigny-sur-Loing", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33575000", + "longitude": "2.74423000" + }, + { + "id": "44271", + "name": "Montlhéry", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64004000", + "longitude": "2.27465000" + }, + { + "id": "44273", + "name": "Montlignon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00636000", + "longitude": "2.28705000" + }, + { + "id": "44279", + "name": "Montmagny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97338000", + "longitude": "2.34688000" + }, + { + "id": "44287", + "name": "Montmorency", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98826000", + "longitude": "2.34340000" + }, + { + "id": "44307", + "name": "Montreuil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86415000", + "longitude": "2.44322000" + }, + { + "id": "44322", + "name": "Montrouge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81620000", + "longitude": "2.31393000" + }, + { + "id": "44323", + "name": "Montry", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88409000", + "longitude": "2.82915000" + }, + { + "id": "44328", + "name": "Montsoult", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06942000", + "longitude": "2.31966000" + }, + { + "id": "44338", + "name": "Morainvilliers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92902000", + "longitude": "1.93621000" + }, + { + "id": "44341", + "name": "Morangis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70383000", + "longitude": "2.33908000" + }, + { + "id": "44349", + "name": "Moret-sur-Loing", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37239000", + "longitude": "2.81713000" + }, + { + "id": "44354", + "name": "Morigny-Champigny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44685000", + "longitude": "2.18351000" + }, + { + "id": "44358", + "name": "Mormant", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60901000", + "longitude": "2.89025000" + }, + { + "id": "44365", + "name": "Morsang-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66181000", + "longitude": "2.35338000" + }, + { + "id": "44373", + "name": "Mortcerf", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78879000", + "longitude": "2.91692000" + }, + { + "id": "44403", + "name": "Mouroux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82263000", + "longitude": "3.03879000" + }, + { + "id": "44404", + "name": "Mours", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13077000", + "longitude": "2.26761000" + }, + { + "id": "44408", + "name": "Moussy-le-Neuf", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06427000", + "longitude": "2.60252000" + }, + { + "id": "44409", + "name": "Moussy-le-Vieux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04712000", + "longitude": "2.62493000" + }, + { + "id": "44502", + "name": "Nandy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58301000", + "longitude": "2.56292000" + }, + { + "id": "44503", + "name": "Nangis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55535000", + "longitude": "3.01306000" + }, + { + "id": "44505", + "name": "Nanterre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89198000", + "longitude": "2.20675000" + }, + { + "id": "44510", + "name": "Nanteuil-lès-Meaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92940000", + "longitude": "2.89594000" + }, + { + "id": "44528", + "name": "Neauphle-le-Château", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81418000", + "longitude": "1.90567000" + }, + { + "id": "44529", + "name": "Nemours", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27511000", + "longitude": "2.69078000" + }, + { + "id": "44535", + "name": "Nesles-la-Vallée", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13202000", + "longitude": "2.17099000" + }, + { + "id": "44545", + "name": "Neufmoutiers-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76882000", + "longitude": "2.83156000" + }, + { + "id": "44546", + "name": "Neuilly-Plaisance", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86342000", + "longitude": "2.50600000" + }, + { + "id": "44552", + "name": "Neuilly-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85373000", + "longitude": "2.54903000" + }, + { + "id": "44553", + "name": "Neuilly-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88460000", + "longitude": "2.26965000" + }, + { + "id": "44571", + "name": "Neuville-sur-Oise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01667000", + "longitude": "2.06667000" + }, + { + "id": "44615", + "name": "Nogent-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83669000", + "longitude": "2.48255000" + }, + { + "id": "44626", + "name": "Noiseau", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77589000", + "longitude": "2.54892000" + }, + { + "id": "44627", + "name": "Noisiel", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84868000", + "longitude": "2.62435000" + }, + { + "id": "44628", + "name": "Noisy-le-Grand", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84979000", + "longitude": "2.56266000" + }, + { + "id": "44629", + "name": "Noisy-le-Roi", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84445000", + "longitude": "2.06345000" + }, + { + "id": "44630", + "name": "Noisy-le-Sec", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89148000", + "longitude": "2.46451000" + }, + { + "id": "44631", + "name": "Noisy-sur-École", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36701000", + "longitude": "2.50804000" + }, + { + "id": "44681", + "name": "Nozay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65921000", + "longitude": "2.24151000" + }, + { + "id": "44725", + "name": "Oinville-sur-Montcient", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02722000", + "longitude": "1.84928000" + }, + { + "id": "44729", + "name": "Oissery", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07047000", + "longitude": "2.81819000" + }, + { + "id": "44734", + "name": "Ollainville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59081000", + "longitude": "2.21936000" + }, + { + "id": "44762", + "name": "Orgerus", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83851000", + "longitude": "1.70132000" + }, + { + "id": "44763", + "name": "Orgeval", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92162000", + "longitude": "1.97790000" + }, + { + "id": "44773", + "name": "Orly", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74792000", + "longitude": "2.39253000" + }, + { + "id": "44777", + "name": "Ormesson-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78630000", + "longitude": "2.54471000" + }, + { + "id": "44778", + "name": "Ormoy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57489000", + "longitude": "2.45206000" + }, + { + "id": "44784", + "name": "Orsay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69572000", + "longitude": "2.18727000" + }, + { + "id": "44789", + "name": "Osny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07010000", + "longitude": "2.06277000" + }, + { + "id": "44796", + "name": "Othis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07387000", + "longitude": "2.67502000" + }, + { + "id": "44821", + "name": "Ozoir-la-Ferrière", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76699000", + "longitude": "2.66871000" + }, + { + "id": "44822", + "name": "Ozouer-le-Voulgis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66012000", + "longitude": "2.77409000" + }, + { + "id": "44832", + "name": "Palaiseau", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71828000", + "longitude": "2.24980000" + }, + { + "id": "44845", + "name": "Pantin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89437000", + "longitude": "2.40935000" + }, + { + "id": "44847", + "name": "Paray-Vieille-Poste", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71402000", + "longitude": "2.36283000" + }, + { + "id": "44856", + "name": "Paris", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85340000", + "longitude": "2.34860000" + }, + { + "id": "44857", + "name": "Parmain", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11247000", + "longitude": "2.21487000" + }, + { + "id": "45358", + "name": "Périgny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69656000", + "longitude": "2.55537000" + }, + { + "id": "44909", + "name": "Persan", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15335000", + "longitude": "2.27218000" + }, + { + "id": "44910", + "name": "Perthes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47821000", + "longitude": "2.55509000" + }, + { + "id": "44955", + "name": "Pierrefitte-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96691000", + "longitude": "2.36104000" + }, + { + "id": "44960", + "name": "Pierrelaye", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02110000", + "longitude": "2.15481000" + }, + { + "id": "44995", + "name": "Plaisir", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82319000", + "longitude": "1.95410000" + }, + { + "id": "45136", + "name": "Poissy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92902000", + "longitude": "2.04952000" + }, + { + "id": "45151", + "name": "Pommeuse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81667000", + "longitude": "3.01667000" + }, + { + "id": "45158", + "name": "Pomponne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88130000", + "longitude": "2.68232000" + }, + { + "id": "45202", + "name": "Pontault-Combault", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79813000", + "longitude": "2.60676000" + }, + { + "id": "45203", + "name": "Pontcarré", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79772000", + "longitude": "2.70508000" + }, + { + "id": "45210", + "name": "Ponthierry", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53366000", + "longitude": "2.54419000" + }, + { + "id": "45213", + "name": "Pontoise", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05000000", + "longitude": "2.10000000" + }, + { + "id": "45220", + "name": "Porcheville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97254000", + "longitude": "1.77973000" + }, + { + "id": "45283", + "name": "Presles-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71527000", + "longitude": "2.74112000" + }, + { + "id": "45288", + "name": "Pringy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51815000", + "longitude": "2.56333000" + }, + { + "id": "45298", + "name": "Provins", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55897000", + "longitude": "3.29939000" + }, + { + "id": "45321", + "name": "Puiseux-en-France", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05552000", + "longitude": "2.50035000" + }, + { + "id": "45332", + "name": "Pussay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34908000", + "longitude": "1.99182000" + }, + { + "id": "45334", + "name": "Puteaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88341000", + "longitude": "2.23894000" + }, + { + "id": "45396", + "name": "Quincy-sous-Sénart", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67294000", + "longitude": "2.53419000" + }, + { + "id": "45395", + "name": "Quincy-Voisins", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90114000", + "longitude": "2.87559000" + }, + { + "id": "45423", + "name": "Rambouillet", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64374000", + "longitude": "1.82992000" + }, + { + "id": "45439", + "name": "Rebais", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84721000", + "longitude": "3.23232000" + }, + { + "id": "45524", + "name": "Ris-Orangis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65110000", + "longitude": "2.41406000" + }, + { + "id": "45552", + "name": "Rocquencourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83783000", + "longitude": "2.10228000" + }, + { + "id": "45565", + "name": "Roissy-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79159000", + "longitude": "2.64747000" + }, + { + "id": "45566", + "name": "Roissy-en-France", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00443000", + "longitude": "2.51703000" + }, + { + "id": "45573", + "name": "Romainville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88540000", + "longitude": "2.43482000" + }, + { + "id": "45606", + "name": "Rosny-sous-Bois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87017000", + "longitude": "2.49910000" + }, + { + "id": "45607", + "name": "Rosny-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99808000", + "longitude": "1.63130000" + }, + { + "id": "45652", + "name": "Rozay-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68333000", + "longitude": "2.95816000" + }, + { + "id": "45658", + "name": "Rubelles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55327000", + "longitude": "2.67593000" + }, + { + "id": "45660", + "name": "Rueil-Malmaison", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87650000", + "longitude": "2.18967000" + }, + { + "id": "45675", + "name": "Rungis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74607000", + "longitude": "2.35275000" + }, + { + "id": "46891", + "name": "Saâcy-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96210000", + "longitude": "3.21083000" + }, + { + "id": "45707", + "name": "Saclas", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35845000", + "longitude": "2.12349000" + }, + { + "id": "45708", + "name": "Saclay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73260000", + "longitude": "2.16923000" + }, + { + "id": "45713", + "name": "Sagy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04988000", + "longitude": "1.95216000" + }, + { + "id": "45777", + "name": "Saint-Arnoult-en-Yvelines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57111000", + "longitude": "1.93950000" + }, + { + "id": "45793", + "name": "Saint-Augustin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78333000", + "longitude": "3.03016000" + }, + { + "id": "45828", + "name": "Saint-Brice-sous-Forêt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00132000", + "longitude": "2.35361000" + }, + { + "id": "45860", + "name": "Saint-Chéron", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55433000", + "longitude": "2.12403000" + }, + { + "id": "45868", + "name": "Saint-Cloud", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84598000", + "longitude": "2.20289000" + }, + { + "id": "45885", + "name": "Saint-Cyr-l’École", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79865000", + "longitude": "2.06814000" + }, + { + "id": "45886", + "name": "Saint-Cyr-sous-Dourdan", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56667000", + "longitude": "2.03333000" + }, + { + "id": "45890", + "name": "Saint-Cyr-sur-Morin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90664000", + "longitude": "3.18016000" + }, + { + "id": "45894", + "name": "Saint-Denis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93564000", + "longitude": "2.35387000" + }, + { + "id": "45930", + "name": "Saint-Fargeau-Ponthierry", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55713000", + "longitude": "2.52840000" + }, + { + "id": "46005", + "name": "Saint-Germain-de-la-Grange", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83436000", + "longitude": "1.89884000" + }, + { + "id": "46015", + "name": "Saint-Germain-en-Laye", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89643000", + "longitude": "2.09040000" + }, + { + "id": "45996", + "name": "Saint-Germain-Laval", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39968000", + "longitude": "2.99781000" + }, + { + "id": "46018", + "name": "Saint-Germain-lès-Arpajon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59733000", + "longitude": "2.26481000" + }, + { + "id": "46019", + "name": "Saint-Germain-lès-Corbeil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62211000", + "longitude": "2.48775000" + }, + { + "id": "46022", + "name": "Saint-Germain-sur-Morin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88257000", + "longitude": "2.85127000" + }, + { + "id": "46041", + "name": "Saint-Gratien", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97350000", + "longitude": "2.28729000" + }, + { + "id": "46118", + "name": "Saint-Jean-les-Deux-Jumeaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95140000", + "longitude": "3.01959000" + }, + { + "id": "46214", + "name": "Saint-Léger-en-Yvelines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72173000", + "longitude": "1.76638000" + }, + { + "id": "46193", + "name": "Saint-Leu-la-Forêt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01667000", + "longitude": "2.25000000" + }, + { + "id": "46234", + "name": "Saint-Mammès", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38458000", + "longitude": "2.81578000" + }, + { + "id": "46236", + "name": "Saint-Mandé", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83864000", + "longitude": "2.41579000" + }, + { + "id": "46252", + "name": "Saint-Mard", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03701000", + "longitude": "2.69645000" + }, + { + "id": "46290", + "name": "Saint-Martin-du-Tertre", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10743000", + "longitude": "2.34533000" + }, + { + "id": "46310", + "name": "Saint-Maur-des-Fossés", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79395000", + "longitude": "2.49323000" + }, + { + "id": "46311", + "name": "Saint-Maurice", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82182000", + "longitude": "2.42716000" + }, + { + "id": "46312", + "name": "Saint-Maurice-Montcouronne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58288000", + "longitude": "2.12504000" + }, + { + "id": "46341", + "name": "Saint-Michel-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63479000", + "longitude": "2.30831000" + }, + { + "id": "46372", + "name": "Saint-Nom-la-Bretêche", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85942000", + "longitude": "2.02233000" + }, + { + "id": "46376", + "name": "Saint-Ouen", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90654000", + "longitude": "2.33339000" + }, + { + "id": "46383", + "name": "Saint-Ouen-l’Aumône", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04353000", + "longitude": "2.12134000" + }, + { + "id": "46400", + "name": "Saint-Pathus", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07136000", + "longitude": "2.79886000" + }, + { + "id": "46441", + "name": "Saint-Pierre-du-Perray", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61064000", + "longitude": "2.49429000" + }, + { + "id": "46451", + "name": "Saint-Pierre-lès-Nemours", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26733000", + "longitude": "2.67966000" + }, + { + "id": "46472", + "name": "Saint-Prix", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01667000", + "longitude": "2.26667000" + }, + { + "id": "46489", + "name": "Saint-Quentin-en-Yvelines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77186000", + "longitude": "2.01891000" + }, + { + "id": "46514", + "name": "Saint-Rémy-lès-Chevreuse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70708000", + "longitude": "2.07692000" + }, + { + "id": "46539", + "name": "Saint-Sauveur-sur-École", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49750000", + "longitude": "2.54711000" + }, + { + "id": "46558", + "name": "Saint-Soupplets", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03866000", + "longitude": "2.80723000" + }, + { + "id": "46579", + "name": "Saint-Thibault-des-Vignes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87111000", + "longitude": "2.68041000" + }, + { + "id": "46623", + "name": "Saint-Vrain", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54302000", + "longitude": "2.33331000" + }, + { + "id": "46626", + "name": "Saint-Witz", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09100000", + "longitude": "2.57122000" + }, + { + "id": "46668", + "name": "Sainte-Colombe", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53047000", + "longitude": "3.25517000" + }, + { + "id": "46693", + "name": "Sainte-Geneviève-des-Bois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64682000", + "longitude": "2.31965000" + }, + { + "id": "46736", + "name": "Saintry-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59640000", + "longitude": "2.49515000" + }, + { + "id": "46737", + "name": "Saints", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76066000", + "longitude": "3.04645000" + }, + { + "id": "46754", + "name": "Salins", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42156000", + "longitude": "3.02130000" + }, + { + "id": "46773", + "name": "Sammeron", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94721000", + "longitude": "3.08333000" + }, + { + "id": "46774", + "name": "Samois-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45251000", + "longitude": "2.75040000" + }, + { + "id": "46775", + "name": "Samoreau", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42946000", + "longitude": "2.75587000" + }, + { + "id": "46790", + "name": "Sannois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96667000", + "longitude": "2.25000000" + }, + { + "id": "46798", + "name": "Santeny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72730000", + "longitude": "2.57346000" + }, + { + "id": "46803", + "name": "Sarcelles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99739000", + "longitude": "2.37821000" + }, + { + "id": "46822", + "name": "Sartrouville", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94820000", + "longitude": "2.19169000" + }, + { + "id": "46848", + "name": "Saulx-les-Chartreux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69062000", + "longitude": "2.26727000" + }, + { + "id": "46880", + "name": "Savigny-le-Temple", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57409000", + "longitude": "2.58287000" + }, + { + "id": "46883", + "name": "Savigny-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67677000", + "longitude": "2.34835000" + }, + { + "id": "47130", + "name": "Sèvres", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82292000", + "longitude": "2.21757000" + }, + { + "id": "46895", + "name": "Sceaux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77644000", + "longitude": "2.29026000" + }, + { + "id": "46927", + "name": "Seine-et-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64599000", + "longitude": "2.95905000" + }, + { + "id": "46925", + "name": "Seine-Port", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55743000", + "longitude": "2.55316000" + }, + { + "id": "46926", + "name": "Seine-Saint-Denis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91421000", + "longitude": "2.47604000" + }, + { + "id": "46948", + "name": "Septeuil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89245000", + "longitude": "1.68357000" + }, + { + "id": "46953", + "name": "Seraincourt", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03573000", + "longitude": "1.86703000" + }, + { + "id": "46968", + "name": "Serris", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84528000", + "longitude": "2.78611000" + }, + { + "id": "46973", + "name": "Servon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71662000", + "longitude": "2.58737000" + }, + { + "id": "46977", + "name": "Seugy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12182000", + "longitude": "2.39377000" + }, + { + "id": "46979", + "name": "Sevran", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94472000", + "longitude": "2.52746000" + }, + { + "id": "47016", + "name": "Soignolles-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65350000", + "longitude": "2.69968000" + }, + { + "id": "47019", + "name": "Soisy-sous-Montmorency", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98813000", + "longitude": "2.30156000" + }, + { + "id": "47021", + "name": "Soisy-sur-École", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47637000", + "longitude": "2.49301000" + }, + { + "id": "47020", + "name": "Soisy-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64875000", + "longitude": "2.45223000" + }, + { + "id": "47023", + "name": "Solers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65919000", + "longitude": "2.71617000" + }, + { + "id": "47037", + "name": "Sonchamp", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57590000", + "longitude": "1.87753000" + }, + { + "id": "47079", + "name": "Souppes-sur-Loing", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18297000", + "longitude": "2.73521000" + }, + { + "id": "47084", + "name": "Sourdun", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53688000", + "longitude": "3.35200000" + }, + { + "id": "47098", + "name": "Stains", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95000000", + "longitude": "2.38333000" + }, + { + "id": "47111", + "name": "Sucy-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76872000", + "longitude": "2.53474000" + }, + { + "id": "47120", + "name": "Suresnes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87143000", + "longitude": "2.22929000" + }, + { + "id": "47123", + "name": "Survilliers", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09712000", + "longitude": "2.54449000" + }, + { + "id": "47153", + "name": "Tacoignières", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83619000", + "longitude": "1.67501000" + }, + { + "id": "47192", + "name": "Taverny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02542000", + "longitude": "2.21691000" + }, + { + "id": "47225", + "name": "Thiais", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76496000", + "longitude": "2.39610000" + }, + { + "id": "47240", + "name": "Thiverval-Grignon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84964000", + "longitude": "1.91729000" + }, + { + "id": "47244", + "name": "Thoiry", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86715000", + "longitude": "1.79760000" + }, + { + "id": "47246", + "name": "Thomery", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40723000", + "longitude": "2.78852000" + }, + { + "id": "47249", + "name": "Thorigny-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88689000", + "longitude": "2.71806000" + }, + { + "id": "47278", + "name": "Tigery", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64257000", + "longitude": "2.50779000" + }, + { + "id": "47299", + "name": "Torcy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85064000", + "longitude": "2.65078000" + }, + { + "id": "47318", + "name": "Touquin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73498000", + "longitude": "3.01222000" + }, + { + "id": "47322", + "name": "Tournan-en-Brie", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74146000", + "longitude": "2.77200000" + }, + { + "id": "47349", + "name": "Trappes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77413000", + "longitude": "2.01781000" + }, + { + "id": "47358", + "name": "Tremblay-en-France", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94956000", + "longitude": "2.56840000" + }, + { + "id": "47371", + "name": "Triel-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97818000", + "longitude": "2.00743000" + }, + { + "id": "47375", + "name": "Trilport", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95685000", + "longitude": "2.95076000" + }, + { + "id": "47437", + "name": "Us", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10000000", + "longitude": "1.96667000" + }, + { + "id": "47457", + "name": "Vaires-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87649000", + "longitude": "2.63982000" + }, + { + "id": "47462", + "name": "Val-de-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78149000", + "longitude": "2.49331000" + }, + { + "id": "47478", + "name": "Valenton", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74527000", + "longitude": "2.46467000" + }, + { + "id": "47495", + "name": "Valmondois", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09730000", + "longitude": "2.18996000" + }, + { + "id": "47505", + "name": "Vanves", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82345000", + "longitude": "2.29025000" + }, + { + "id": "47510", + "name": "Varennes-Jarcy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67914000", + "longitude": "2.56152000" + }, + { + "id": "47516", + "name": "Varennes-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37304000", + "longitude": "2.92571000" + }, + { + "id": "47521", + "name": "Varreddes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00305000", + "longitude": "2.92788000" + }, + { + "id": "47530", + "name": "Vaucresson", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84078000", + "longitude": "2.15652000" + }, + { + "id": "47534", + "name": "Vaugrigneuse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60263000", + "longitude": "2.12218000" + }, + { + "id": "47535", + "name": "Vauhallan", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73354000", + "longitude": "2.20277000" + }, + { + "id": "47536", + "name": "Vaujours", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93022000", + "longitude": "2.57110000" + }, + { + "id": "47543", + "name": "Vauréal", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03333000", + "longitude": "2.03333000" + }, + { + "id": "47546", + "name": "Vaux-le-Pénil", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52803000", + "longitude": "2.69165000" + }, + { + "id": "47548", + "name": "Vaux-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01271000", + "longitude": "1.96942000" + }, + { + "id": "47924", + "name": "Vélizy-Villacoublay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78198000", + "longitude": "2.19395000" + }, + { + "id": "47925", + "name": "Vémars", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06942000", + "longitude": "2.56643000" + }, + { + "id": "47583", + "name": "Veneux-les-Sablons", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37872000", + "longitude": "2.79499000" + }, + { + "id": "47614", + "name": "Verneuil-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97388000", + "longitude": "1.96480000" + }, + { + "id": "47621", + "name": "Vernou-la-Celle-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38789000", + "longitude": "2.84718000" + }, + { + "id": "47623", + "name": "Vernouillet", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97146000", + "longitude": "1.98082000" + }, + { + "id": "47630", + "name": "Verrières-le-Buisson", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74565000", + "longitude": "2.26796000" + }, + { + "id": "47632", + "name": "Versailles", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80359000", + "longitude": "2.13424000" + }, + { + "id": "47637", + "name": "Vert-le-Grand", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57172000", + "longitude": "2.35777000" + }, + { + "id": "47638", + "name": "Vert-le-Petit", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55163000", + "longitude": "2.36526000" + }, + { + "id": "47635", + "name": "Vert-Saint-Denis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56818000", + "longitude": "2.62007000" + }, + { + "id": "47660", + "name": "Viarmes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13082000", + "longitude": "2.37074000" + }, + { + "id": "47697", + "name": "Vigneux-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70291000", + "longitude": "2.41357000" + }, + { + "id": "47701", + "name": "Vigny", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07902000", + "longitude": "1.92806000" + }, + { + "id": "47705", + "name": "Villabé", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58949000", + "longitude": "2.45096000" + }, + { + "id": "47717", + "name": "Ville-d’Avray", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82358000", + "longitude": "2.19311000" + }, + { + "id": "47725", + "name": "Villebon-sur-Yvette", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70594000", + "longitude": "2.24019000" + }, + { + "id": "47727", + "name": "Villecresnes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72002000", + "longitude": "2.53940000" + }, + { + "id": "47745", + "name": "Villejuif", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79390000", + "longitude": "2.35992000" + }, + { + "id": "47746", + "name": "Villejust", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68304000", + "longitude": "2.23610000" + }, + { + "id": "47752", + "name": "Villemoisson-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66632000", + "longitude": "2.33657000" + }, + { + "id": "47754", + "name": "Villemomble", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88333000", + "longitude": "2.50000000" + }, + { + "id": "47773", + "name": "Villeneuve-la-Garenne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93935000", + "longitude": "2.31478000" + }, + { + "id": "47776", + "name": "Villeneuve-le-Comte", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81413000", + "longitude": "2.82953000" + }, + { + "id": "47777", + "name": "Villeneuve-le-Roi", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73684000", + "longitude": "2.40081000" + }, + { + "id": "47763", + "name": "Villeneuve-Saint-Georges", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73219000", + "longitude": "2.44925000" + }, + { + "id": "47783", + "name": "Villeneuve-sur-Bellot", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86203000", + "longitude": "3.34143000" + }, + { + "id": "47786", + "name": "Villennes-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94137000", + "longitude": "1.99137000" + }, + { + "id": "47788", + "name": "Villenoy", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94112000", + "longitude": "2.86020000" + }, + { + "id": "47789", + "name": "Villeparisis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94208000", + "longitude": "2.61463000" + }, + { + "id": "47790", + "name": "Villepinte", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96203000", + "longitude": "2.53253000" + }, + { + "id": "47792", + "name": "Villepreux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82815000", + "longitude": "1.99760000" + }, + { + "id": "47815", + "name": "Villetaneuse", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95833000", + "longitude": "2.34167000" + }, + { + "id": "47819", + "name": "Villevaudé", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91751000", + "longitude": "2.65228000" + }, + { + "id": "47830", + "name": "Villiers-le-Bâcle", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72819000", + "longitude": "2.11925000" + }, + { + "id": "47829", + "name": "Villiers-le-Bel", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00875000", + "longitude": "2.39819000" + }, + { + "id": "47825", + "name": "Villiers-Saint-Fréderic", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81667000", + "longitude": "1.88333000" + }, + { + "id": "47826", + "name": "Villiers-Saint-Georges", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64998000", + "longitude": "3.40754000" + }, + { + "id": "47833", + "name": "Villiers-sur-Marne", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83100000", + "longitude": "2.54844000" + }, + { + "id": "47834", + "name": "Villiers-sur-Morin", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86099000", + "longitude": "2.87773000" + }, + { + "id": "47835", + "name": "Villiers-sur-Orge", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65953000", + "longitude": "2.30002000" + }, + { + "id": "47844", + "name": "Vincennes", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84860000", + "longitude": "2.43769000" + }, + { + "id": "47865", + "name": "Viroflay", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80078000", + "longitude": "2.16181000" + }, + { + "id": "47867", + "name": "Viry-Châtillon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67211000", + "longitude": "2.39318000" + }, + { + "id": "47875", + "name": "Vitry-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78716000", + "longitude": "2.40332000" + }, + { + "id": "47893", + "name": "Voisenon", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57170000", + "longitude": "2.66480000" + }, + { + "id": "47894", + "name": "Voisins-le-Bretonneux", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75793000", + "longitude": "2.05137000" + }, + { + "id": "47908", + "name": "Voulangis", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85252000", + "longitude": "2.89558000" + }, + { + "id": "47909", + "name": "Voulx", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28204000", + "longitude": "2.96747000" + }, + { + "id": "47922", + "name": "Vulaines-sur-Seine", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43186000", + "longitude": "2.76476000" + }, + { + "id": "47985", + "name": "Wissous", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73352000", + "longitude": "2.32338000" + }, + { + "id": "48004", + "name": "Yerres", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71785000", + "longitude": "2.49338000" + }, + { + "id": "48014", + "name": "Yvelines", + "state_id": 4796, + "state_code": "IDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80546000", + "longitude": "1.85696000" + }, + { + "id": "39267", + "name": "Ahuy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36944000", + "longitude": "5.02089000" + }, + { + "id": "39280", + "name": "Aillant-sur-Tholon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87426000", + "longitude": "3.35049000" + }, + { + "id": "39281", + "name": "Aillevillers-et-Lyaumont", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92033000", + "longitude": "6.33775000" + }, + { + "id": "39290", + "name": "Aiserey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.17229000", + "longitude": "5.16260000" + }, + { + "id": "39373", + "name": "Ancy-le-Franc", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.77586000", + "longitude": "4.16361000" + }, + { + "id": "39379", + "name": "Andelnans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60267000", + "longitude": "6.86621000" + }, + { + "id": "39443", + "name": "Appoigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87467000", + "longitude": "3.52524000" + }, + { + "id": "39449", + "name": "Arbois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.90311000", + "longitude": "5.77454000" + }, + { + "id": "39452", + "name": "Arbouans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49944000", + "longitude": "6.79505000" + }, + { + "id": "39454", + "name": "Arc-et-Senans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.03127000", + "longitude": "5.77027000" + }, + { + "id": "39455", + "name": "Arc-lès-Gray", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.45701000", + "longitude": "5.58547000" + }, + { + "id": "39456", + "name": "Arc-sur-Tille", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34349000", + "longitude": "5.18666000" + }, + { + "id": "39459", + "name": "Arcey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52258000", + "longitude": "6.66222000" + }, + { + "id": "39486", + "name": "Arinthod", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.39339000", + "longitude": "5.56616000" + }, + { + "id": "39501", + "name": "Arnay-le-Duc", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13202000", + "longitude": "4.48595000" + }, + { + "id": "39598", + "name": "Audincourt", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48327000", + "longitude": "6.85341000" + }, + { + "id": "39606", + "name": "Augy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76640000", + "longitude": "3.61051000" + }, + { + "id": "39639", + "name": "Autun", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.95104000", + "longitude": "4.29869000" + }, + { + "id": "39644", + "name": "Auxerre", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79960000", + "longitude": "3.57033000" + }, + { + "id": "39646", + "name": "Auxon-Dessous", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.30000000", + "longitude": "5.95000000" + }, + { + "id": "39647", + "name": "Auxonne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19255000", + "longitude": "5.38726000" + }, + { + "id": "39648", + "name": "Auxy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.94940000", + "longitude": "4.40440000" + }, + { + "id": "39656", + "name": "Avallon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49002000", + "longitude": "3.90832000" + }, + { + "id": "39657", + "name": "Avanne-Aveney", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20000000", + "longitude": "5.96667000" + }, + { + "id": "48040", + "name": "Échenoz-la-Méline", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60086000", + "longitude": "6.13544000" + }, + { + "id": "48044", + "name": "École-Valentin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26667000", + "longitude": "5.98333000" + }, + { + "id": "48055", + "name": "Écuisses", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.75631000", + "longitude": "4.53845000" + }, + { + "id": "48060", + "name": "Égriselles-le-Bocage", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12103000", + "longitude": "3.18233000" + }, + { + "id": "48075", + "name": "Épervans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.75247000", + "longitude": "4.89930000" + }, + { + "id": "48077", + "name": "Épinac", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98333000", + "longitude": "4.51667000" + }, + { + "id": "48094", + "name": "Étalans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.15125000", + "longitude": "6.27315000" + }, + { + "id": "48097", + "name": "Étang-sur-Arroux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86560000", + "longitude": "4.18988000" + }, + { + "id": "48115", + "name": "Étupes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50525000", + "longitude": "6.87075000" + }, + { + "id": "39793", + "name": "Bart", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48861000", + "longitude": "6.77090000" + }, + { + "id": "39814", + "name": "Baume-les-Dames", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35295000", + "longitude": "6.36117000" + }, + { + "id": "39817", + "name": "Bavans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48528000", + "longitude": "6.73324000" + }, + { + "id": "39820", + "name": "Bavilliers", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62235000", + "longitude": "6.83543000" + }, + { + "id": "39841", + "name": "Beaucourt", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48878000", + "longitude": "6.92214000" + }, + { + "id": "39874", + "name": "Beaune", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.02413000", + "longitude": "4.83887000" + }, + { + "id": "39904", + "name": "Belfort", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64218000", + "longitude": "6.85385000" + }, + { + "id": "39917", + "name": "Belleneuve", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36224000", + "longitude": "5.26393000" + }, + { + "id": "39971", + "name": "Besançon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.24878000", + "longitude": "6.01815000" + }, + { + "id": "39984", + "name": "Bethoncourt", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53512000", + "longitude": "6.80504000" + }, + { + "id": "39989", + "name": "Beure", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20690000", + "longitude": "6.00548000" + }, + { + "id": "40052", + "name": "Blamont", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38513000", + "longitude": "6.84800000" + }, + { + "id": "40057", + "name": "Blanzy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.70012000", + "longitude": "4.38833000" + }, + { + "id": "40072", + "name": "Bléneau", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70000000", + "longitude": "2.95000000" + }, + { + "id": "40065", + "name": "Bletterans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74673000", + "longitude": "5.45444000" + }, + { + "id": "40067", + "name": "Bligny-lès-Beaune", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98631000", + "longitude": "4.82620000" + }, + { + "id": "40088", + "name": "Bois-d’Amont", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53280000", + "longitude": "6.13750000" + }, + { + "id": "40178", + "name": "Bourbon-Lancy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.62214000", + "longitude": "3.76953000" + }, + { + "id": "40211", + "name": "Bourogne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56307000", + "longitude": "6.91654000" + }, + { + "id": "40219", + "name": "Boussières", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.15866000", + "longitude": "5.90314000" + }, + { + "id": "40254", + "name": "Branges", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64441000", + "longitude": "5.18465000" + }, + { + "id": "40270", + "name": "Brazey-en-Plaine", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13784000", + "longitude": "5.21538000" + }, + { + "id": "40310", + "name": "Brienon-sur-Armançon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99009000", + "longitude": "3.61628000" + }, + { + "id": "40405", + "name": "Buxy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71369000", + "longitude": "4.70427000" + }, + { + "id": "41400", + "name": "Cézy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99265000", + "longitude": "3.34067000" + }, + { + "id": "40642", + "name": "Cercy-la-Tour", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86203000", + "longitude": "3.64652000" + }, + { + "id": "40670", + "name": "Chablis", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81386000", + "longitude": "3.79835000" + }, + { + "id": "40675", + "name": "Chagny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.90953000", + "longitude": "4.75190000" + }, + { + "id": "40696", + "name": "Challuy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.94971000", + "longitude": "3.14807000" + }, + { + "id": "40698", + "name": "Chalon-sur-Saône", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.78112000", + "longitude": "4.85372000" + }, + { + "id": "40724", + "name": "Champagney", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70504000", + "longitude": "6.68173000" + }, + { + "id": "40726", + "name": "Champagnole", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74452000", + "longitude": "5.91354000" + }, + { + "id": "40736", + "name": "Champforgeuil", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81857000", + "longitude": "4.83357000" + }, + { + "id": "40739", + "name": "Champignelles", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.78009000", + "longitude": "3.07457000" + }, + { + "id": "40741", + "name": "Champigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31667000", + "longitude": "3.13333000" + }, + { + "id": "40745", + "name": "Champlitte", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61667000", + "longitude": "5.51667000" + }, + { + "id": "40746", + "name": "Champlitte-la-Ville", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61333000", + "longitude": "5.53191000" + }, + { + "id": "40750", + "name": "Champs-sur-Yonne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73333000", + "longitude": "3.60000000" + }, + { + "id": "40754", + "name": "Champvans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10466000", + "longitude": "5.43760000" + }, + { + "id": "40773", + "name": "Chantenay-Saint-Imbert", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73333000", + "longitude": "3.18333000" + }, + { + "id": "40792", + "name": "Charbuy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82282000", + "longitude": "3.46617000" + }, + { + "id": "40810", + "name": "Charnay-lès-Mâcon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30751000", + "longitude": "4.78479000" + }, + { + "id": "40811", + "name": "Charny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88661000", + "longitude": "3.09583000" + }, + { + "id": "40814", + "name": "Charolles", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43451000", + "longitude": "4.27527000" + }, + { + "id": "40815", + "name": "Charquemont", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21417000", + "longitude": "6.81980000" + }, + { + "id": "40839", + "name": "Chauffailles", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20726000", + "longitude": "4.33932000" + }, + { + "id": "40840", + "name": "Chaulgnes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12889000", + "longitude": "3.10348000" + }, + { + "id": "40852", + "name": "Chaussin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96612000", + "longitude": "5.40791000" + }, + { + "id": "40934", + "name": "Châlonvillars", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64055000", + "longitude": "6.78407000" + }, + { + "id": "40937", + "name": "Château-Chinon(Ville)", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06667000", + "longitude": "3.93333000" + }, + { + "id": "40989", + "name": "Châtenois-les-Forges", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55875000", + "longitude": "6.84871000" + }, + { + "id": "40990", + "name": "Châtenoy-le-Royal", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79797000", + "longitude": "4.81190000" + }, + { + "id": "40994", + "name": "Châtillon-en-Bazois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.05464000", + "longitude": "3.65893000" + }, + { + "id": "40998", + "name": "Châtillon-le-Duc", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.30486000", + "longitude": "6.00792000" + }, + { + "id": "41005", + "name": "Châtillon-sur-Seine", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85851000", + "longitude": "4.57375000" + }, + { + "id": "41009", + "name": "Chèvremont", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62912000", + "longitude": "6.92056000" + }, + { + "id": "41016", + "name": "Chéroy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20076000", + "longitude": "3.00011000" + }, + { + "id": "40870", + "name": "Chemaudin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22392000", + "longitude": "5.89419000" + }, + { + "id": "40878", + "name": "Chenôve", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29323000", + "longitude": "5.00457000" + }, + { + "id": "40877", + "name": "Cheny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95166000", + "longitude": "3.53340000" + }, + { + "id": "40896", + "name": "Chevigny-Saint-Sauveur", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29908000", + "longitude": "5.13367000" + }, + { + "id": "40919", + "name": "Choisey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06389000", + "longitude": "5.45911000" + }, + { + "id": "41027", + "name": "Ciry-le-Noble", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60607000", + "longitude": "4.29869000" + }, + { + "id": "41037", + "name": "Clairvaux-les-Lacs", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.57473000", + "longitude": "5.74825000" + }, + { + "id": "41040", + "name": "Clamecy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46017000", + "longitude": "3.51940000" + }, + { + "id": "41051", + "name": "Clerval", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39167000", + "longitude": "6.49925000" + }, + { + "id": "41063", + "name": "Cluny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43318000", + "longitude": "4.65845000" + }, + { + "id": "41102", + "name": "Colombier-Fontaine", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.45224000", + "longitude": "6.69010000" + }, + { + "id": "41167", + "name": "Corbenay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89275000", + "longitude": "6.33047000" + }, + { + "id": "41169", + "name": "Corbigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25678000", + "longitude": "3.68285000" + }, + { + "id": "41199", + "name": "Corpeau", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.92917000", + "longitude": "4.75226000" + }, + { + "id": "41208", + "name": "Cosne-Cours-sur-Loire", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41101000", + "longitude": "2.92528000" + }, + { + "id": "41216", + "name": "Couches", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86667000", + "longitude": "4.56667000" + }, + { + "id": "41217", + "name": "Couchey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25991000", + "longitude": "4.98257000" + }, + { + "id": "41229", + "name": "Coulanges-lès-Nevers", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.00509000", + "longitude": "3.18756000" + }, + { + "id": "41244", + "name": "Courcelles-lès-Montbéliard", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50113000", + "longitude": "6.78461000" + }, + { + "id": "41253", + "name": "Courlon-sur-Yonne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33927000", + "longitude": "3.16660000" + }, + { + "id": "41275", + "name": "Cousance", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53324000", + "longitude": "5.39214000" + }, + { + "id": "41280", + "name": "Couternon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33333000", + "longitude": "5.15000000" + }, + { + "id": "41301", + "name": "Cravanche", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65346000", + "longitude": "6.83197000" + }, + { + "id": "41353", + "name": "Crêches-sur-Saône", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.24475000", + "longitude": "4.78678000" + }, + { + "id": "41321", + "name": "Crissey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81652000", + "longitude": "4.88185000" + }, + { + "id": "41368", + "name": "Cuiseaux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.49473000", + "longitude": "5.38931000" + }, + { + "id": "41369", + "name": "Cuisery", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.55696000", + "longitude": "4.99797000" + }, + { + "id": "41376", + "name": "Curgy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98714000", + "longitude": "4.38452000" + }, + { + "id": "41406", + "name": "Daix", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35081000", + "longitude": "5.00052000" + }, + { + "id": "41417", + "name": "Damparis", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.07556000", + "longitude": "5.41398000" + }, + { + "id": "41418", + "name": "Dampierre", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.15498000", + "longitude": "5.74167000" + }, + { + "id": "41421", + "name": "Dampierre-les-Bois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50639000", + "longitude": "6.91279000" + }, + { + "id": "41422", + "name": "Dampierre-sur-Salon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55719000", + "longitude": "5.67970000" + }, + { + "id": "41424", + "name": "Damprichard", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.24413000", + "longitude": "6.88121000" + }, + { + "id": "41427", + "name": "Danjoutin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61822000", + "longitude": "6.86204000" + }, + { + "id": "41429", + "name": "Dannemarie-sur-Crête", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20488000", + "longitude": "5.87018000" + }, + { + "id": "41438", + "name": "Dasle", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.47843000", + "longitude": "6.89728000" + }, + { + "id": "41623", + "name": "Département de l'Yonne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91667000", + "longitude": "3.75000000" + }, + { + "id": "41626", + "name": "Département de la Côte-d'Or", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50000000", + "longitude": "4.83333000" + }, + { + "id": "41629", + "name": "Département de la Haute-Saône", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67625000", + "longitude": "6.10066000" + }, + { + "id": "41632", + "name": "Département de la Nièvre", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11695000", + "longitude": "3.49192000" + }, + { + "id": "41607", + "name": "Département de Saône-et-Loire", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.63646000", + "longitude": "4.58819000" + }, + { + "id": "41447", + "name": "Decize", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82852000", + "longitude": "3.46192000" + }, + { + "id": "41448", + "name": "Delle", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50797000", + "longitude": "6.99975000" + }, + { + "id": "41449", + "name": "Demigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93048000", + "longitude": "4.83381000" + }, + { + "id": "41460", + "name": "Devecey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32169000", + "longitude": "6.01900000" + }, + { + "id": "41476", + "name": "Diges", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72862000", + "longitude": "3.39786000" + }, + { + "id": "41479", + "name": "Digoin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48124000", + "longitude": "3.97946000" + }, + { + "id": "41481", + "name": "Dijon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31667000", + "longitude": "5.01667000" + }, + { + "id": "41504", + "name": "Dole", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09225000", + "longitude": "5.48966000" + }, + { + "id": "41536", + "name": "Donzy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.37066000", + "longitude": "3.12548000" + }, + { + "id": "41542", + "name": "Dornes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71600000", + "longitude": "3.35343000" + }, + { + "id": "41547", + "name": "Doubs", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19967000", + "longitude": "6.43487000" + }, + { + "id": "41565", + "name": "Dracy-le-Fort", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79750000", + "longitude": "4.76215000" + }, + { + "id": "41725", + "name": "Essert", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63342000", + "longitude": "6.81702000" + }, + { + "id": "41749", + "name": "Exincourt", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49465000", + "longitude": "6.83169000" + }, + { + "id": "41784", + "name": "Faverney", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76713000", + "longitude": "6.10428000" + }, + { + "id": "42003", + "name": "Fénay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23185000", + "longitude": "5.06211000" + }, + { + "id": "41807", + "name": "Fesches-le-Châtel", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52415000", + "longitude": "6.90535000" + }, + { + "id": "41841", + "name": "Fleurey-sur-Ouche", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31182000", + "longitude": "4.85911000" + }, + { + "id": "41848", + "name": "Fleury-la-Vallée", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86672000", + "longitude": "3.44908000" + }, + { + "id": "41857", + "name": "Flogny-la-Chapelle", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95000000", + "longitude": "3.86667000" + }, + { + "id": "41884", + "name": "Fontaine-lès-Dijon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34238000", + "longitude": "5.02007000" + }, + { + "id": "41885", + "name": "Fontaine-lès-Luxeuil", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85592000", + "longitude": "6.33482000" + }, + { + "id": "41888", + "name": "Fontaines", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84905000", + "longitude": "4.77036000" + }, + { + "id": "41922", + "name": "Foucherans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.08094000", + "longitude": "5.45503000" + }, + { + "id": "41925", + "name": "Fougerolles", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88542000", + "longitude": "6.40454000" + }, + { + "id": "41934", + "name": "Fourchambault", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.01667000", + "longitude": "3.08333000" + }, + { + "id": "41942", + "name": "Frahier-et-Chatebier", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66667000", + "longitude": "6.75000000" + }, + { + "id": "41943", + "name": "Fraisans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14857000", + "longitude": "5.76051000" + }, + { + "id": "41951", + "name": "Franois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23055000", + "longitude": "5.92869000" + }, + { + "id": "41953", + "name": "Frasne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.85641000", + "longitude": "6.15940000" + }, + { + "id": "41968", + "name": "Froideconche", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82121000", + "longitude": "6.41523000" + }, + { + "id": "41979", + "name": "Frotey-lès-Vesoul", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62078000", + "longitude": "6.18831000" + }, + { + "id": "42035", + "name": "Garchizy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.04786000", + "longitude": "3.09625000" + }, + { + "id": "42295", + "name": "Génelard", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58119000", + "longitude": "4.23619000" + }, + { + "id": "42066", + "name": "Genlis", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.24203000", + "longitude": "5.22415000" + }, + { + "id": "42074", + "name": "Gergy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.87557000", + "longitude": "4.94527000" + }, + { + "id": "42082", + "name": "Gevrey-Chambertin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22614000", + "longitude": "4.96806000" + }, + { + "id": "42094", + "name": "Gilley", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.04740000", + "longitude": "6.48257000" + }, + { + "id": "42101", + "name": "Giromagny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74272000", + "longitude": "6.82733000" + }, + { + "id": "42110", + "name": "Givry", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.78202000", + "longitude": "4.74262000" + }, + { + "id": "42171", + "name": "Grand-Charmont", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52674000", + "longitude": "6.82604000" + }, + { + "id": "42177", + "name": "Grandfontaine", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19763000", + "longitude": "5.90079000" + }, + { + "id": "42180", + "name": "Grandvillars", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53929000", + "longitude": "6.97100000" + }, + { + "id": "42192", + "name": "Gray", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44575000", + "longitude": "5.59215000" + }, + { + "id": "42193", + "name": "Gray-la-Ville", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43932000", + "longitude": "5.57252000" + }, + { + "id": "42222", + "name": "Gron", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15967000", + "longitude": "3.26345000" + }, + { + "id": "42288", + "name": "Guérigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.08703000", + "longitude": "3.20182000" + }, + { + "id": "42248", + "name": "Gueugnon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60357000", + "longitude": "4.06286000" + }, + { + "id": "42275", + "name": "Gurgy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86712000", + "longitude": "3.56341000" + }, + { + "id": "42292", + "name": "Gy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40588000", + "longitude": "5.81226000" + }, + { + "id": "42353", + "name": "Hauteville-lès-Dijon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36602000", + "longitude": "4.99375000" + }, + { + "id": "42457", + "name": "Héricourt", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.57305000", + "longitude": "6.76139000" + }, + { + "id": "42459", + "name": "Hérimoncourt", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44284000", + "longitude": "6.88242000" + }, + { + "id": "42463", + "name": "Héry", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90146000", + "longitude": "3.62868000" + }, + { + "id": "42444", + "name": "Hurigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.34722000", + "longitude": "4.79676000" + }, + { + "id": "42484", + "name": "Imphy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93619000", + "longitude": "3.26037000" + }, + { + "id": "42497", + "name": "Is-sur-Tille", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52670000", + "longitude": "5.10649000" + }, + { + "id": "42552", + "name": "Joigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98288000", + "longitude": "3.40096000" + }, + { + "id": "42556", + "name": "Joncherey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52895000", + "longitude": "7.00323000" + }, + { + "id": "42569", + "name": "Jougne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.76291000", + "longitude": "6.38838000" + }, + { + "id": "42571", + "name": "Joux-la-Ville", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62241000", + "longitude": "3.86217000" + }, + { + "id": "42593", + "name": "Jura", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73431000", + "longitude": "5.72349000" + }, + { + "id": "42596", + "name": "Jussey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82536000", + "longitude": "5.90193000" + }, + { + "id": "42691", + "name": "La Chapelle-de-Guinchay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20841000", + "longitude": "4.76245000" + }, + { + "id": "42702", + "name": "La Charité-sur-Loire", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18333000", + "longitude": "3.01667000" + }, + { + "id": "42709", + "name": "La Clayette", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29002000", + "longitude": "4.30422000" + }, + { + "id": "42711", + "name": "La Cluse-et-Mijoux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88333000", + "longitude": "6.38333000" + }, + { + "id": "42796", + "name": "La Machine", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.89226000", + "longitude": "3.46426000" + }, + { + "id": "42814", + "name": "La Motte-Saint-Jean", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.49594000", + "longitude": "3.96396000" + }, + { + "id": "42855", + "name": "La Roche-Vineuse", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.34524000", + "longitude": "4.72023000" + }, + { + "id": "42951", + "name": "Ladoix-Serrigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06667000", + "longitude": "4.88333000" + }, + { + "id": "42982", + "name": "Lamarche-sur-Saône", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26946000", + "longitude": "5.38589000" + }, + { + "id": "43074", + "name": "Laroche-Saint-Cydroine", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96801000", + "longitude": "3.48467000" + }, + { + "id": "43110", + "name": "Lavans-lès-Saint-Claude", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.38484000", + "longitude": "5.78172000" + }, + { + "id": "43144", + "name": "Le Breuil", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.80654000", + "longitude": "4.46953000" + }, + { + "id": "43175", + "name": "Le Creusot", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.80714000", + "longitude": "4.41632000" + }, + { + "id": "43298", + "name": "Le Russey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.16055000", + "longitude": "6.72912000" + }, + { + "id": "43354", + "name": "Lepuix", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76050000", + "longitude": "6.81434000" + }, + { + "id": "43387", + "name": "Les Fins", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.07764000", + "longitude": "6.63002000" + }, + { + "id": "43389", + "name": "Les Fourgs", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83455000", + "longitude": "6.39953000" + }, + { + "id": "43426", + "name": "Les Rousses", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48412000", + "longitude": "6.06330000" + }, + { + "id": "43452", + "name": "Levier", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.95302000", + "longitude": "6.12059000" + }, + { + "id": "43479", + "name": "Ligny-le-Châtel", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90022000", + "longitude": "3.75760000" + }, + { + "id": "43553", + "name": "Longchamp", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25973000", + "longitude": "5.28694000" + }, + { + "id": "43554", + "name": "Longchaumois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.46228000", + "longitude": "5.93052000" + }, + { + "id": "43555", + "name": "Longecourt-en-Plaine", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19783000", + "longitude": "5.14956000" + }, + { + "id": "43574", + "name": "Longvic", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28754000", + "longitude": "5.06341000" + }, + { + "id": "43577", + "name": "Lons-le-Saunier", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67535000", + "longitude": "5.55575000" + }, + { + "id": "43591", + "name": "Lormes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28964000", + "longitude": "3.81714000" + }, + { + "id": "43596", + "name": "Losne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09850000", + "longitude": "5.26216000" + }, + { + "id": "43603", + "name": "Louhans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.62637000", + "longitude": "5.22468000" + }, + { + "id": "43634", + "name": "Lucenay-lès-Aix", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.70274000", + "longitude": "3.48308000" + }, + { + "id": "43659", + "name": "Lure", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68294000", + "longitude": "6.49658000" + }, + { + "id": "43668", + "name": "Luxeuil-les-Bains", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81710000", + "longitude": "6.36500000" + }, + { + "id": "43674", + "name": "Luzy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79011000", + "longitude": "3.97036000" + }, + { + "id": "43982", + "name": "Maîche", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25160000", + "longitude": "6.80309000" + }, + { + "id": "43724", + "name": "Magny-Cours", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88333000", + "longitude": "3.15000000" + }, + { + "id": "43725", + "name": "Magny-Vernois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66997000", + "longitude": "6.47545000" + }, + { + "id": "43735", + "name": "Maillot", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17557000", + "longitude": "3.30784000" + }, + { + "id": "43753", + "name": "Malay-le-Grand", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17589000", + "longitude": "3.34189000" + }, + { + "id": "43770", + "name": "Mamirolle", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19857000", + "longitude": "6.15924000" + }, + { + "id": "43774", + "name": "Mandeure", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44921000", + "longitude": "6.80762000" + }, + { + "id": "43802", + "name": "Marcigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.27627000", + "longitude": "4.03957000" + }, + { + "id": "43808", + "name": "Marcilly-sur-Tille", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.51700000", + "longitude": "5.12979000" + }, + { + "id": "43857", + "name": "Marmagne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83666000", + "longitude": "4.35892000" + }, + { + "id": "43861", + "name": "Marnay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29088000", + "longitude": "5.77277000" + }, + { + "id": "43879", + "name": "Marsannay-la-Côte", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27095000", + "longitude": "4.98895000" + }, + { + "id": "43925", + "name": "Marzy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98125000", + "longitude": "3.09352000" + }, + { + "id": "43938", + "name": "Mathay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43905000", + "longitude": "6.78487000" + }, + { + "id": "43941", + "name": "Matour", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30654000", + "longitude": "4.48178000" + }, + { + "id": "44451", + "name": "Mâcon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31407000", + "longitude": "4.82823000" + }, + { + "id": "44461", + "name": "Mélisey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75229000", + "longitude": "6.58014000" + }, + { + "id": "44487", + "name": "Méziré", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53336000", + "longitude": "6.92072000" + }, + { + "id": "43996", + "name": "Mellecey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81084000", + "longitude": "4.72822000" + }, + { + "id": "44010", + "name": "Mercurey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84035000", + "longitude": "4.71743000" + }, + { + "id": "44021", + "name": "Mervans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79923000", + "longitude": "5.18430000" + }, + { + "id": "44037", + "name": "Messigny-et-Vantoux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40666000", + "longitude": "5.01715000" + }, + { + "id": "44050", + "name": "Meursault", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97822000", + "longitude": "4.76952000" + }, + { + "id": "44068", + "name": "Migennes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96548000", + "longitude": "3.51787000" + }, + { + "id": "44093", + "name": "Mirebeau-sur-Bèze", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39828000", + "longitude": "5.32093000" + }, + { + "id": "44103", + "name": "Miserey-Salines", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28638000", + "longitude": "5.97387000" + }, + { + "id": "44114", + "name": "Moirans-en-Montagne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43381000", + "longitude": "5.72643000" + }, + { + "id": "44336", + "name": "Monéteau", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84923000", + "longitude": "3.58178000" + }, + { + "id": "44163", + "name": "Mont-sous-Vaudrey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97874000", + "longitude": "5.60295000" + }, + { + "id": "44190", + "name": "Montbard", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62294000", + "longitude": "4.33700000" + }, + { + "id": "44204", + "name": "Montbéliard", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50957000", + "longitude": "6.79823000" + }, + { + "id": "44206", + "name": "Montceau-les-Mines", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.66667000", + "longitude": "4.36667000" + }, + { + "id": "44207", + "name": "Montcenis", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.78785000", + "longitude": "4.38738000" + }, + { + "id": "44208", + "name": "Montchanin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74964000", + "longitude": "4.47070000" + }, + { + "id": "44220", + "name": "Montenois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49222000", + "longitude": "6.66561000" + }, + { + "id": "44230", + "name": "Montfaucon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23562000", + "longitude": "6.08162000" + }, + { + "id": "44236", + "name": "Montferrand-le-Château", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.17536000", + "longitude": "5.91534000" + }, + { + "id": "44270", + "name": "Montlebon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.03778000", + "longitude": "6.61111000" + }, + { + "id": "44289", + "name": "Montmorot", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67541000", + "longitude": "5.52283000" + }, + { + "id": "44302", + "name": "Montpont-en-Bresse", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.55630000", + "longitude": "5.16459000" + }, + { + "id": "44314", + "name": "Montreux-Château", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61003000", + "longitude": "6.99923000" + }, + { + "id": "44344", + "name": "Morbier", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53693000", + "longitude": "6.01532000" + }, + { + "id": "44351", + "name": "Morez", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.52540000", + "longitude": "6.02589000" + }, + { + "id": "44364", + "name": "Morre", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22595000", + "longitude": "6.07512000" + }, + { + "id": "44374", + "name": "Morteau", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.05784000", + "longitude": "6.60716000" + }, + { + "id": "44376", + "name": "Morvillars", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54854000", + "longitude": "6.93450000" + }, + { + "id": "44383", + "name": "Mouchard", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97259000", + "longitude": "5.79626000" + }, + { + "id": "44395", + "name": "Moulins-Engilbert", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98821000", + "longitude": "3.81084000" + }, + { + "id": "44500", + "name": "Nancray", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.24536000", + "longitude": "6.18283000" + }, + { + "id": "44523", + "name": "Navenne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60873000", + "longitude": "6.16176000" + }, + { + "id": "44550", + "name": "Neuilly-lès-Dijon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27943000", + "longitude": "5.10645000" + }, + { + "id": "44577", + "name": "Neuvy-Sautour", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04190000", + "longitude": "3.79472000" + }, + { + "id": "44580", + "name": "Neuvy-sur-Loire", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52323000", + "longitude": "2.88333000" + }, + { + "id": "44583", + "name": "Nevers", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98956000", + "longitude": "3.15900000" + }, + { + "id": "44622", + "name": "Noidans-lès-Vesoul", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61299000", + "longitude": "6.12571000" + }, + { + "id": "44633", + "name": "Nolay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.95202000", + "longitude": "4.63405000" + }, + { + "id": "44637", + "name": "Nommay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53780000", + "longitude": "6.84219000" + }, + { + "id": "44667", + "name": "Novillars", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28465000", + "longitude": "6.12878000" + }, + { + "id": "44688", + "name": "Nuits-Saint-Georges", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13683000", + "longitude": "4.94900000" + }, + { + "id": "44718", + "name": "Offemont", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66278000", + "longitude": "6.87764000" + }, + { + "id": "44757", + "name": "Orchamps", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14751000", + "longitude": "5.65873000" + }, + { + "id": "44758", + "name": "Orchamps-Vennes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13042000", + "longitude": "6.52468000" + }, + { + "id": "44761", + "name": "Orgelet", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.52096000", + "longitude": "5.61049000" + }, + { + "id": "44780", + "name": "Ornans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10749000", + "longitude": "6.14306000" + }, + { + "id": "44804", + "name": "Ouges", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26164000", + "longitude": "5.07395000" + }, + { + "id": "44808", + "name": "Ouroux-sur-Saône", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.72147000", + "longitude": "4.95262000" + }, + { + "id": "44837", + "name": "Palinges", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.55357000", + "longitude": "4.21964000" + }, + { + "id": "44848", + "name": "Paray-le-Monial", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.45457000", + "longitude": "4.11584000" + }, + { + "id": "44858", + "name": "Paron", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17888000", + "longitude": "3.25075000" + }, + { + "id": "44888", + "name": "Pelousey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27538000", + "longitude": "5.92263000" + }, + { + "id": "44900", + "name": "Perrecy-les-Forges", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.61453000", + "longitude": "4.21380000" + }, + { + "id": "44904", + "name": "Perrigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.66744000", + "longitude": "5.58456000" + }, + { + "id": "44905", + "name": "Perrigny-lès-Dijon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26648000", + "longitude": "5.00628000" + }, + { + "id": "44913", + "name": "Pesmes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28008000", + "longitude": "5.56698000" + }, + { + "id": "44917", + "name": "Petit-Noir", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93333000", + "longitude": "5.33333000" + }, + { + "id": "44952", + "name": "Pierre-de-Bresse", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88333000", + "longitude": "5.25000000" + }, + { + "id": "44957", + "name": "Pierrefontaine-les-Varans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21601000", + "longitude": "6.54030000" + }, + { + "id": "44977", + "name": "Pirey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26136000", + "longitude": "5.96466000" + }, + { + "id": "44998", + "name": "Plancher-Bas", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71977000", + "longitude": "6.73041000" + }, + { + "id": "44999", + "name": "Plancher-les-Mines", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76150000", + "longitude": "6.74308000" + }, + { + "id": "45037", + "name": "Plombières-lès-Dijon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33333000", + "longitude": "4.96667000" + }, + { + "id": "45142", + "name": "Poligny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83712000", + "longitude": "5.70505000" + }, + { + "id": "45181", + "name": "Pont-de-Roide", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38738000", + "longitude": "6.76840000" + }, + { + "id": "45193", + "name": "Pont-sur-Yonne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28297000", + "longitude": "3.20198000" + }, + { + "id": "45200", + "name": "Pontailler-sur-Saône", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.30455000", + "longitude": "5.41479000" + }, + { + "id": "45201", + "name": "Pontarlier", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.90347000", + "longitude": "6.35542000" + }, + { + "id": "45237", + "name": "Port-sur-Saône", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68774000", + "longitude": "6.05011000" + }, + { + "id": "45250", + "name": "Pougues-les-Eaux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.07518000", + "longitude": "3.10150000" + }, + { + "id": "45251", + "name": "Pouilley-les-Vignes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25770000", + "longitude": "5.93581000" + }, + { + "id": "45253", + "name": "Pouilly-en-Auxois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26238000", + "longitude": "4.55583000" + }, + { + "id": "45257", + "name": "Pouilly-sur-Loire", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28377000", + "longitude": "2.95442000" + }, + { + "id": "45265", + "name": "Pourrain", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75615000", + "longitude": "3.41193000" + }, + { + "id": "45309", + "name": "Prémery", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.16952000", + "longitude": "3.32743000" + }, + { + "id": "45290", + "name": "Prissé", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.32130000", + "longitude": "4.74469000" + }, + { + "id": "45330", + "name": "Pusey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65243000", + "longitude": "6.12615000" + }, + { + "id": "45380", + "name": "Quetigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31667000", + "longitude": "5.11667000" + }, + { + "id": "45392", + "name": "Quincey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61165000", + "longitude": "6.18556000" + }, + { + "id": "45397", + "name": "Quingey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10250000", + "longitude": "5.88312000" + }, + { + "id": "45435", + "name": "Ravières", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73475000", + "longitude": "4.22777000" + }, + { + "id": "45522", + "name": "Rioz", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42521000", + "longitude": "6.06598000" + }, + { + "id": "45541", + "name": "Roche-lez-Beaupré", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28333000", + "longitude": "6.11667000" + }, + { + "id": "45576", + "name": "Romanèche-Thorins", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18402000", + "longitude": "4.74242000" + }, + { + "id": "45578", + "name": "Romenay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.50208000", + "longitude": "5.06904000" + }, + { + "id": "45583", + "name": "Ronchamp", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70063000", + "longitude": "6.63591000" + }, + { + "id": "45622", + "name": "Rougemont", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48211000", + "longitude": "6.35574000" + }, + { + "id": "45623", + "name": "Rougemont-le-Château", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73532000", + "longitude": "6.96690000" + }, + { + "id": "45631", + "name": "Roulans", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31553000", + "longitude": "6.22901000" + }, + { + "id": "45649", + "name": "Roye", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66995000", + "longitude": "6.54139000" + }, + { + "id": "45664", + "name": "Ruffey-lès-Echirey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36667000", + "longitude": "5.08333000" + }, + { + "id": "45669", + "name": "Rully", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.87499000", + "longitude": "4.74322000" + }, + { + "id": "46893", + "name": "Saône", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22311000", + "longitude": "6.11682000" + }, + { + "id": "45712", + "name": "Sagy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60129000", + "longitude": "5.31045000" + }, + { + "id": "45743", + "name": "Saint-Amand-en-Puisaye", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52913000", + "longitude": "3.07400000" + }, + { + "id": "45752", + "name": "Saint-Amour", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43638000", + "longitude": "5.34416000" + }, + { + "id": "45774", + "name": "Saint-Apollinaire", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33333000", + "longitude": "5.08333000" + }, + { + "id": "45780", + "name": "Saint-Aubin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.03336000", + "longitude": "5.32666000" + }, + { + "id": "46636", + "name": "Saint-Éloi", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97342000", + "longitude": "3.22228000" + }, + { + "id": "45809", + "name": "Saint-Benin-d’Azy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99914000", + "longitude": "3.39267000" + }, + { + "id": "45813", + "name": "Saint-Berain-sous-Sanvignes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.70678000", + "longitude": "4.29405000" + }, + { + "id": "45831", + "name": "Saint-Bris-le-Vineux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74396000", + "longitude": "3.64922000" + }, + { + "id": "45866", + "name": "Saint-Claude", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.38679000", + "longitude": "5.86473000" + }, + { + "id": "45870", + "name": "Saint-Clément", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21724000", + "longitude": "3.29609000" + }, + { + "id": "45928", + "name": "Saint-Eusèbe", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71346000", + "longitude": "4.46203000" + }, + { + "id": "45929", + "name": "Saint-Fargeau", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64133000", + "longitude": "3.07066000" + }, + { + "id": "45937", + "name": "Saint-Florentin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00057000", + "longitude": "3.72489000" + }, + { + "id": "45957", + "name": "Saint-Gengoux-le-National", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.61476000", + "longitude": "4.66261000" + }, + { + "id": "45988", + "name": "Saint-Georges-sur-Baulche", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80039000", + "longitude": "3.53144000" + }, + { + "id": "45993", + "name": "Saint-Germain", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72496000", + "longitude": "6.53117000" + }, + { + "id": "46009", + "name": "Saint-Germain-du-Bois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.75287000", + "longitude": "5.24530000" + }, + { + "id": "46011", + "name": "Saint-Germain-du-Plain", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.69938000", + "longitude": "4.98510000" + }, + { + "id": "46069", + "name": "Saint-Hippolyte", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31880000", + "longitude": "6.81617000" + }, + { + "id": "46093", + "name": "Saint-Jean-de-Losne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10247000", + "longitude": "5.26556000" + }, + { + "id": "46134", + "name": "Saint-Julien", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40029000", + "longitude": "5.14163000" + }, + { + "id": "46142", + "name": "Saint-Julien-du-Sault", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03188000", + "longitude": "3.29556000" + }, + { + "id": "46186", + "name": "Saint-Laurent-en-Grandvaux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58333000", + "longitude": "5.95000000" + }, + { + "id": "46212", + "name": "Saint-Léger-des-Vignes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84063000", + "longitude": "3.45488000" + }, + { + "id": "46218", + "name": "Saint-Léger-sur-Dheune", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84548000", + "longitude": "4.63607000" + }, + { + "id": "46192", + "name": "Saint-Leu", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73060000", + "longitude": "4.50083000" + }, + { + "id": "46201", + "name": "Saint-Loup-sur-Semouse", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88345000", + "longitude": "6.27530000" + }, + { + "id": "46206", + "name": "Saint-Lupicin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.40034000", + "longitude": "5.79220000" + }, + { + "id": "46243", + "name": "Saint-Marcel", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.77371000", + "longitude": "4.89205000" + }, + { + "id": "46259", + "name": "Saint-Martin-Belle-Roche", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.38312000", + "longitude": "4.85539000" + }, + { + "id": "46291", + "name": "Saint-Martin-du-Tertre", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21659000", + "longitude": "3.26151000" + }, + { + "id": "46296", + "name": "Saint-Martin-en-Bresse", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81725000", + "longitude": "5.06027000" + }, + { + "id": "46396", + "name": "Saint-Parize-le-Châtel", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.85447000", + "longitude": "3.18267000" + }, + { + "id": "46449", + "name": "Saint-Pierre-le-Moûtier", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79277000", + "longitude": "3.11657000" + }, + { + "id": "46508", + "name": "Saint-Rémy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.76334000", + "longitude": "4.83928000" + }, + { + "id": "46530", + "name": "Saint-Sauveur", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80530000", + "longitude": "6.38583000" + }, + { + "id": "46549", + "name": "Saint-Sernin-du-Bois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84074000", + "longitude": "4.43271000" + }, + { + "id": "46592", + "name": "Saint-Usage", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11009000", + "longitude": "5.26044000" + }, + { + "id": "46593", + "name": "Saint-Usuge", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67900000", + "longitude": "5.25089000" + }, + { + "id": "46601", + "name": "Saint-Valérien", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17805000", + "longitude": "3.09523000" + }, + { + "id": "46598", + "name": "Saint-Vallier", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64107000", + "longitude": "4.37107000" + }, + { + "id": "46619", + "name": "Saint-Vit", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18333000", + "longitude": "5.81667000" + }, + { + "id": "46628", + "name": "Saint-Yan", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.41147000", + "longitude": "4.03876000" + }, + { + "id": "46730", + "name": "Sainte-Suzanne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50017000", + "longitude": "6.76775000" + }, + { + "id": "46742", + "name": "Salbert", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66959000", + "longitude": "6.81269000" + }, + { + "id": "46755", + "name": "Salins-les-Bains", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.94663000", + "longitude": "5.87763000" + }, + { + "id": "46784", + "name": "Sancé", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33926000", + "longitude": "4.83049000" + }, + { + "id": "46782", + "name": "Sancey-le-Grand", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29489000", + "longitude": "6.58287000" + }, + { + "id": "46800", + "name": "Sanvignes-les-Mines", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.66444000", + "longitude": "4.29188000" + }, + { + "id": "46826", + "name": "Sassenay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83074000", + "longitude": "4.92523000" + }, + { + "id": "46841", + "name": "Saulieu", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28023000", + "longitude": "4.22857000" + }, + { + "id": "46866", + "name": "Sauvigny-les-Bois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96676000", + "longitude": "3.27190000" + }, + { + "id": "46881", + "name": "Savigny-lès-Beaune", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06357000", + "longitude": "4.81821000" + }, + { + "id": "46896", + "name": "Scey-sur-Saône-et-Saint-Albin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66398000", + "longitude": "5.97451000" + }, + { + "id": "46918", + "name": "Seignelay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90542000", + "longitude": "3.60136000" + }, + { + "id": "46932", + "name": "Seloncourt", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.45989000", + "longitude": "6.85535000" + }, + { + "id": "46933", + "name": "Selongey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.58846000", + "longitude": "5.18483000" + }, + { + "id": "46938", + "name": "Semur-en-Auxois", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48333000", + "longitude": "4.33333000" + }, + { + "id": "46942", + "name": "Sennecey-lès-Dijon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28984000", + "longitude": "5.10485000" + }, + { + "id": "46941", + "name": "Sennecey-le-Grand", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64137000", + "longitude": "4.86707000" + }, + { + "id": "46945", + "name": "Sens", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19738000", + "longitude": "3.28328000" + }, + { + "id": "46954", + "name": "Sergines", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34203000", + "longitude": "3.26213000" + }, + { + "id": "46958", + "name": "Sermoise-sur-Loire", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.95000000", + "longitude": "3.18333000" + }, + { + "id": "46965", + "name": "Serre-les-Sapins", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25000000", + "longitude": "5.93333000" + }, + { + "id": "46978", + "name": "Seurre", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99923000", + "longitude": "5.15138000" + }, + { + "id": "46980", + "name": "Sevrey", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73825000", + "longitude": "4.84030000" + }, + { + "id": "47000", + "name": "Simandre", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.62364000", + "longitude": "4.98777000" + }, + { + "id": "47014", + "name": "Sochaux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50808000", + "longitude": "6.82748000" + }, + { + "id": "47049", + "name": "Sornay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.63023000", + "longitude": "5.17999000" + }, + { + "id": "47061", + "name": "Soucy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24956000", + "longitude": "3.32385000" + }, + { + "id": "47156", + "name": "Taillecourt", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49521000", + "longitude": "6.85442000" + }, + { + "id": "47161", + "name": "Talant", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33693000", + "longitude": "5.00888000" + }, + { + "id": "47171", + "name": "Tanlay", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84488000", + "longitude": "4.08504000" + }, + { + "id": "47190", + "name": "Tavaux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.03376000", + "longitude": "5.40500000" + }, + { + "id": "47210", + "name": "Territoire de Belfort", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63578000", + "longitude": "6.88843000" + }, + { + "id": "47238", + "name": "Thise", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28486000", + "longitude": "6.08127000" + }, + { + "id": "47250", + "name": "Thorigny-sur-Oreuse", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29297000", + "longitude": "3.40128000" + }, + { + "id": "47297", + "name": "Tonnerre", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85628000", + "longitude": "3.97369000" + }, + { + "id": "47300", + "name": "Torcy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.76857000", + "longitude": "4.45333000" + }, + { + "id": "47307", + "name": "Toucy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73602000", + "longitude": "3.29502000" + }, + { + "id": "47314", + "name": "Toulon-sur-Arroux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.69345000", + "longitude": "4.13869000" + }, + { + "id": "47329", + "name": "Tournus", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.56758000", + "longitude": "4.90574000" + }, + { + "id": "47436", + "name": "Urzy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.04877000", + "longitude": "3.20295000" + }, + { + "id": "47460", + "name": "Vaivre-et-Montoille", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63021000", + "longitude": "6.10362000" + }, + { + "id": "47468", + "name": "Valdahon", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.15000000", + "longitude": "6.35000000" + }, + { + "id": "47469", + "name": "Valdoie", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67041000", + "longitude": "6.84203000" + }, + { + "id": "47477", + "name": "Valentigney", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46388000", + "longitude": "6.83168000" + }, + { + "id": "47482", + "name": "Valfin-lès-Saint-Claude", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43758000", + "longitude": "5.85513000" + }, + { + "id": "47513", + "name": "Varennes-le-Grand", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71868000", + "longitude": "4.86872000" + }, + { + "id": "47511", + "name": "Varennes-Saint-Sauveur", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48226000", + "longitude": "5.24349000" + }, + { + "id": "47512", + "name": "Varennes-Vauzelles", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.01678000", + "longitude": "3.14037000" + }, + { + "id": "47519", + "name": "Varois-et-Chaignot", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35059000", + "longitude": "5.12838000" + }, + { + "id": "47523", + "name": "Varzy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35810000", + "longitude": "3.38619000" + }, + { + "id": "47930", + "name": "Véron", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12853000", + "longitude": "3.30773000" + }, + { + "id": "47559", + "name": "Velars-sur-Ouche", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31960000", + "longitude": "4.90594000" + }, + { + "id": "47563", + "name": "Venarey-les-Laumes", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54202000", + "longitude": "4.46022000" + }, + { + "id": "47586", + "name": "Venoy", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80518000", + "longitude": "3.63695000" + }, + { + "id": "47592", + "name": "Vercel-Villedieu-le-Camp", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18318000", + "longitude": "6.40082000" + }, + { + "id": "47595", + "name": "Verdun-sur-le-Doubs", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.89692000", + "longitude": "5.02127000" + }, + { + "id": "47598", + "name": "Vergigny", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97059000", + "longitude": "3.71861000" + }, + { + "id": "47605", + "name": "Vermenton", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66459000", + "longitude": "3.73501000" + }, + { + "id": "47648", + "name": "Vesoul", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62604000", + "longitude": "6.14251000" + }, + { + "id": "47689", + "name": "Vieux-Charmont", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52190000", + "longitude": "6.83738000" + }, + { + "id": "47723", + "name": "Villeblevin", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32446000", + "longitude": "3.08038000" + }, + { + "id": "47774", + "name": "Villeneuve-la-Guyard", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34093000", + "longitude": "3.06176000" + }, + { + "id": "47785", + "name": "Villeneuve-sur-Yonne", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08247000", + "longitude": "3.29688000" + }, + { + "id": "47805", + "name": "Villers-le-Lac", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06319000", + "longitude": "6.66699000" + }, + { + "id": "47811", + "name": "Villersexel", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55070000", + "longitude": "6.43273000" + }, + { + "id": "47848", + "name": "Vinneuf", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34795000", + "longitude": "3.14013000" + }, + { + "id": "47860", + "name": "Virey-le-Grand", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83333000", + "longitude": "4.86667000" + }, + { + "id": "47877", + "name": "Vitteaux", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39732000", + "longitude": "4.54190000" + }, + { + "id": "47907", + "name": "Voujeaucourt", + "state_id": 4825, + "state_code": "BFC", + "country_id": 75, + "country_code": "FR", + "latitude": "47.47513000", + "longitude": "6.77431000" + }, + { + "id": "39254", + "name": "Acigné", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13333000", + "longitude": "-1.53704000" + }, + { + "id": "39318", + "name": "Allaire", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63752000", + "longitude": "-2.16324000" + }, + { + "id": "39345", + "name": "Amanlis", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00752000", + "longitude": "-1.47677000" + }, + { + "id": "39356", + "name": "Ambon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55367000", + "longitude": "-2.55512000" + }, + { + "id": "39436", + "name": "Antrain", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46031000", + "longitude": "-1.48354000" + }, + { + "id": "39485", + "name": "Argentré-du-Plessis", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05697000", + "longitude": "-1.14601000" + }, + { + "id": "39510", + "name": "Arradon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62709000", + "longitude": "-2.82150000" + }, + { + "id": "39534", + "name": "Arzano", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90136000", + "longitude": "-3.44032000" + }, + { + "id": "39536", + "name": "Arzon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54852000", + "longitude": "-2.88989000" + }, + { + "id": "39597", + "name": "Audierne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01640000", + "longitude": "-4.53838000" + }, + { + "id": "39604", + "name": "Augan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91943000", + "longitude": "-2.27905000" + }, + { + "id": "39623", + "name": "Auray", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67025000", + "longitude": "-2.99183000" + }, + { + "id": "48090", + "name": "Étables-sur-Mer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63333000", + "longitude": "-2.83333000" + }, + { + "id": "48101", + "name": "Étel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65614000", + "longitude": "-3.20018000" + }, + { + "id": "48108", + "name": "Étrelles", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06031000", + "longitude": "-1.19402000" + }, + { + "id": "48121", + "name": "Évran", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37987000", + "longitude": "-1.98076000" + }, + { + "id": "39703", + "name": "Baden", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61734000", + "longitude": "-2.91987000" + }, + { + "id": "39716", + "name": "Baguer-Morvan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52531000", + "longitude": "-1.77332000" + }, + { + "id": "39717", + "name": "Baguer-Pican", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55253000", + "longitude": "-1.69837000" + }, + { + "id": "39732", + "name": "Bain-de-Bretagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84418000", + "longitude": "-1.68486000" + }, + { + "id": "39736", + "name": "Bains-sur-Oust", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70362000", + "longitude": "-2.07047000" + }, + { + "id": "39738", + "name": "Bais", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00959000", + "longitude": "-1.28983000" + }, + { + "id": "39747", + "name": "Balazé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.16797000", + "longitude": "-1.19157000" + }, + { + "id": "39760", + "name": "Bannalec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93229000", + "longitude": "-3.69759000" + }, + { + "id": "39808", + "name": "Baud", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87474000", + "longitude": "-3.01760000" + }, + { + "id": "39813", + "name": "Baulon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98590000", + "longitude": "-1.93114000" + }, + { + "id": "39834", + "name": "Bazouges-la-Pérouse", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42606000", + "longitude": "-1.57431000" + }, + { + "id": "40415", + "name": "Bédée", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17953000", + "longitude": "-1.94477000" + }, + { + "id": "40417", + "name": "Béganne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59670000", + "longitude": "-2.24162000" + }, + { + "id": "40418", + "name": "Bégard", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62754000", + "longitude": "-3.30067000" + }, + { + "id": "40425", + "name": "Bénodet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87531000", + "longitude": "-4.10580000" + }, + { + "id": "39844", + "name": "Beaucé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33890000", + "longitude": "-1.15804000" + }, + { + "id": "39900", + "name": "Beignon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97200000", + "longitude": "-2.16933000" + }, + { + "id": "39910", + "name": "Belle-Isle-en-Terre", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54478000", + "longitude": "-3.39500000" + }, + { + "id": "39937", + "name": "Belz", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67506000", + "longitude": "-3.16800000" + }, + { + "id": "39958", + "name": "Berné", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99470000", + "longitude": "-3.39421000" + }, + { + "id": "39961", + "name": "Berric", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63326000", + "longitude": "-2.52250000" + }, + { + "id": "39962", + "name": "Berrien", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40278000", + "longitude": "-3.75266000" + }, + { + "id": "39987", + "name": "Betton", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18048000", + "longitude": "-1.63829000" + }, + { + "id": "39994", + "name": "Beuzec-Cap-Sizun", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07567000", + "longitude": "-4.51200000" + }, + { + "id": "40016", + "name": "Bignan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87935000", + "longitude": "-2.77153000" + }, + { + "id": "40026", + "name": "Binic", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60074000", + "longitude": "-2.82602000" + }, + { + "id": "40078", + "name": "Bodilis", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52978000", + "longitude": "-4.11567000" + }, + { + "id": "40082", + "name": "Bohars", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42983000", + "longitude": "-4.51292000" + }, + { + "id": "40092", + "name": "Boisgervilly", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.16692000", + "longitude": "-2.06426000" + }, + { + "id": "40120", + "name": "Bonnemain", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46652000", + "longitude": "-1.76774000" + }, + { + "id": "40182", + "name": "Bourbriac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47384000", + "longitude": "-3.18758000" + }, + { + "id": "40188", + "name": "Bourg-Blanc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49867000", + "longitude": "-4.50406000" + }, + { + "id": "40193", + "name": "Bourg-des-Comptes", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92934000", + "longitude": "-1.74534000" + }, + { + "id": "40198", + "name": "Bourgbarré", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99515000", + "longitude": "-1.61419000" + }, + { + "id": "40253", + "name": "Brandérion", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79412000", + "longitude": "-3.19474000" + }, + { + "id": "40260", + "name": "Brasparts", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30167000", + "longitude": "-3.95516000" + }, + { + "id": "40354", + "name": "Bréal-sous-Montfort", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04876000", + "longitude": "-1.86438000" + }, + { + "id": "40357", + "name": "Brécé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10839000", + "longitude": "-1.48086000" + }, + { + "id": "40359", + "name": "Bréhand", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40333000", + "longitude": "-2.57412000" + }, + { + "id": "40272", + "name": "Brech", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72134000", + "longitude": "-2.99862000" + }, + { + "id": "40279", + "name": "Brest", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39029000", + "longitude": "-4.48628000" + }, + { + "id": "40280", + "name": "Breteil", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14534000", + "longitude": "-1.89886000" + }, + { + "id": "40307", + "name": "Briec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10167000", + "longitude": "-3.99833000" + }, + { + "id": "40333", + "name": "Broons", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31748000", + "longitude": "-2.25952000" + }, + { + "id": "40352", + "name": "Bruz", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02420000", + "longitude": "-1.74591000" + }, + { + "id": "40367", + "name": "Bubry", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96336000", + "longitude": "-3.17108000" + }, + { + "id": "40452", + "name": "Caden", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63124000", + "longitude": "-2.28704000" + }, + { + "id": "40471", + "name": "Callac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40292000", + "longitude": "-3.42800000" + }, + { + "id": "40482", + "name": "Camaret-sur-Mer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27497000", + "longitude": "-4.59615000" + }, + { + "id": "40495", + "name": "Camors", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84739000", + "longitude": "-2.99981000" + }, + { + "id": "40503", + "name": "Campénéac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95733000", + "longitude": "-2.29277000" + }, + { + "id": "40504", + "name": "Cancale", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67601000", + "longitude": "-1.85231000" + }, + { + "id": "40535", + "name": "Carantec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66811000", + "longitude": "-3.91545000" + }, + { + "id": "40542", + "name": "Carentoir", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81667000", + "longitude": "-2.13333000" + }, + { + "id": "40544", + "name": "Carhaix-Plouguer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27594000", + "longitude": "-3.57326000" + }, + { + "id": "40550", + "name": "Carnac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.58351000", + "longitude": "-3.07884000" + }, + { + "id": "40553", + "name": "Caro", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86429000", + "longitude": "-2.31924000" + }, + { + "id": "40573", + "name": "Cast", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15712000", + "longitude": "-4.13889000" + }, + { + "id": "40601", + "name": "Caudan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80877000", + "longitude": "-3.34250000" + }, + { + "id": "40606", + "name": "Caulnes", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28804000", + "longitude": "-2.15518000" + }, + { + "id": "40619", + "name": "Cavan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67242000", + "longitude": "-3.34606000" + }, + { + "id": "40661", + "name": "Cesson-Sévigné", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12120000", + "longitude": "-1.60300000" + }, + { + "id": "40770", + "name": "Chanteloup", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96574000", + "longitude": "-1.61517000" + }, + { + "id": "40774", + "name": "Chantepie", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08885000", + "longitude": "-1.61524000" + }, + { + "id": "40820", + "name": "Chartres-de-Bretagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03924000", + "longitude": "-1.70533000" + }, + { + "id": "40823", + "name": "Chasné-sur-Illet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24247000", + "longitude": "-1.56138000" + }, + { + "id": "40855", + "name": "Chavagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05438000", + "longitude": "-1.78571000" + }, + { + "id": "40951", + "name": "Châteaubourg", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11119000", + "longitude": "-1.40019000" + }, + { + "id": "40956", + "name": "Châteaugiron", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04629000", + "longitude": "-1.50438000" + }, + { + "id": "40957", + "name": "Châteaulin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19677000", + "longitude": "-4.09008000" + }, + { + "id": "40966", + "name": "Châteauneuf-d’Ille-et-Vilaine", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56083000", + "longitude": "-1.92838000" + }, + { + "id": "40963", + "name": "Châteauneuf-du-Faou", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18755000", + "longitude": "-3.81789000" + }, + { + "id": "40996", + "name": "Châtillon-en-Vendelais", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22409000", + "longitude": "-1.17695000" + }, + { + "id": "41004", + "name": "Châtillon-sur-Seiche", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03448000", + "longitude": "-1.67114000" + }, + { + "id": "40884", + "name": "Cherrueix", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60629000", + "longitude": "-1.70405000" + }, + { + "id": "40891", + "name": "Chevaigné", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21153000", + "longitude": "-1.62933000" + }, + { + "id": "41024", + "name": "Cintré", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10504000", + "longitude": "-1.87162000" + }, + { + "id": "41067", + "name": "Cléden-Poher", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23644000", + "longitude": "-3.66911000" + }, + { + "id": "41068", + "name": "Cléder", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66300000", + "longitude": "-4.10200000" + }, + { + "id": "41070", + "name": "Cléguérec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12577000", + "longitude": "-3.07162000" + }, + { + "id": "41069", + "name": "Cléguer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85407000", + "longitude": "-3.38219000" + }, + { + "id": "41057", + "name": "Clohars-Carnoët", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79606000", + "longitude": "-3.58502000" + }, + { + "id": "41058", + "name": "Clohars-Fouesnant", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89657000", + "longitude": "-4.06396000" + }, + { + "id": "41291", + "name": "Coësmes", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88325000", + "longitude": "-1.44074000" + }, + { + "id": "41292", + "name": "Coëtmieux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49117000", + "longitude": "-2.60067000" + }, + { + "id": "41107", + "name": "Colpo", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81778000", + "longitude": "-2.81002000" + }, + { + "id": "41110", + "name": "Combourg", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41267000", + "longitude": "-1.74424000" + }, + { + "id": "41112", + "name": "Combrit", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88734000", + "longitude": "-4.15817000" + }, + { + "id": "41127", + "name": "Concarneau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87502000", + "longitude": "-3.92245000" + }, + { + "id": "41160", + "name": "Coray", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05934000", + "longitude": "-3.83056000" + }, + { + "id": "41177", + "name": "Corlay", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31725000", + "longitude": "-3.05733000" + }, + { + "id": "41200", + "name": "Corps-Nuds", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97915000", + "longitude": "-1.58409000" + }, + { + "id": "41204", + "name": "Corseul", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48180000", + "longitude": "-2.16947000" + }, + { + "id": "41294", + "name": "Crach", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61700000", + "longitude": "-3.00170000" + }, + { + "id": "41343", + "name": "Crédin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03462000", + "longitude": "-2.76630000" + }, + { + "id": "41346", + "name": "Créhen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54546000", + "longitude": "-2.21307000" + }, + { + "id": "41314", + "name": "Crevin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93333000", + "longitude": "-1.66667000" + }, + { + "id": "41334", + "name": "Crozon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24643000", + "longitude": "-4.48993000" + }, + { + "id": "41412", + "name": "Damgan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.51799000", + "longitude": "-2.57698000" + }, + { + "id": "41431", + "name": "Daoulas", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36089000", + "longitude": "-4.25977000" + }, + { + "id": "41604", + "name": "Département d'Ille-et-Vilaine", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.16667000", + "longitude": "-1.50000000" + }, + { + "id": "41635", + "name": "Département des Côtes-d’Armor", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34295000", + "longitude": "-2.78216000" + }, + { + "id": "41640", + "name": "Département du Finistère", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25224000", + "longitude": "-3.99263000" + }, + { + "id": "41482", + "name": "Dinan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45551000", + "longitude": "-2.05019000" + }, + { + "id": "41483", + "name": "Dinard", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63143000", + "longitude": "-2.06144000" + }, + { + "id": "41488", + "name": "Dinéault", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21922000", + "longitude": "-4.16411000" + }, + { + "id": "41486", + "name": "Dingé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35702000", + "longitude": "-1.71489000" + }, + { + "id": "41491", + "name": "Dirinon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39775000", + "longitude": "-4.27017000" + }, + { + "id": "41503", + "name": "Dol-de-Bretagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54765000", + "longitude": "-1.75018000" + }, + { + "id": "41509", + "name": "Domagné", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07081000", + "longitude": "-1.39291000" + }, + { + "id": "41510", + "name": "Domalain", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99617000", + "longitude": "-1.24250000" + }, + { + "id": "41546", + "name": "Douarnenez", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09542000", + "longitude": "-4.32904000" + }, + { + "id": "41659", + "name": "Edern", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10000000", + "longitude": "-3.98333000" + }, + { + "id": "41663", + "name": "Elliant", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99417000", + "longitude": "-3.88966000" + }, + { + "id": "41665", + "name": "Elven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73230000", + "longitude": "-2.58956000" + }, + { + "id": "41687", + "name": "Epiniac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50000000", + "longitude": "-1.70000000" + }, + { + "id": "41690", + "name": "Erbrée", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09745000", + "longitude": "-1.12479000" + }, + { + "id": "41692", + "name": "Ercé-en-Lamée", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83048000", + "longitude": "-1.55867000" + }, + { + "id": "41693", + "name": "Ercé-près-Liffré", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25454000", + "longitude": "-1.51560000" + }, + { + "id": "41694", + "name": "Erdeven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64210000", + "longitude": "-3.15706000" + }, + { + "id": "41695", + "name": "Ergué-Gabéric", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99562000", + "longitude": "-4.02223000" + }, + { + "id": "41700", + "name": "Erquy", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63186000", + "longitude": "-2.46280000" + }, + { + "id": "41722", + "name": "Esquibien", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02506000", + "longitude": "-4.56139000" + }, + { + "id": "42004", + "name": "Férel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48203000", + "longitude": "-2.34227000" + }, + { + "id": "41923", + "name": "Fouesnant", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89187000", + "longitude": "-4.01484000" + }, + { + "id": "41927", + "name": "Fougères", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35185000", + "longitude": "-1.19989000" + }, + { + "id": "41928", + "name": "Fouillard", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15820000", + "longitude": "-1.57915000" + }, + { + "id": "41983", + "name": "Fréhel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63333000", + "longitude": "-2.36667000" + }, + { + "id": "42057", + "name": "Gaël", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13209000", + "longitude": "-2.22267000" + }, + { + "id": "42301", + "name": "Gévezé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21933000", + "longitude": "-1.78952000" + }, + { + "id": "42079", + "name": "Gestel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80361000", + "longitude": "-3.44245000" + }, + { + "id": "42114", + "name": "Glomel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22300000", + "longitude": "-3.39696000" + }, + { + "id": "42141", + "name": "Gosné", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24674000", + "longitude": "-1.46558000" + }, + { + "id": "42143", + "name": "Gouarec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22725000", + "longitude": "-3.17994000" + }, + { + "id": "42161", + "name": "Gouézec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.16911000", + "longitude": "-3.97277000" + }, + { + "id": "42145", + "name": "Goudelin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60375000", + "longitude": "-3.01842000" + }, + { + "id": "42146", + "name": "Gouesnach", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91040000", + "longitude": "-4.11450000" + }, + { + "id": "42147", + "name": "Gouesnou", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45267000", + "longitude": "-4.46456000" + }, + { + "id": "42151", + "name": "Gourin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13866000", + "longitude": "-3.60755000" + }, + { + "id": "42162", + "name": "Goven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00638000", + "longitude": "-1.84629000" + }, + { + "id": "42170", + "name": "Grand-Champ", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75804000", + "longitude": "-2.84635000" + }, + { + "id": "42174", + "name": "Grand-Fougeray", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72390000", + "longitude": "-1.73210000" + }, + { + "id": "42232", + "name": "Grâces", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55651000", + "longitude": "-3.18533000" + }, + { + "id": "42221", + "name": "Groix", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63887000", + "longitude": "-3.45430000" + }, + { + "id": "42278", + "name": "Guégon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93707000", + "longitude": "-2.56450000" + }, + { + "id": "42281", + "name": "Guémené-sur-Scorff", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06667000", + "longitude": "-3.20000000" + }, + { + "id": "42283", + "name": "Guénin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90757000", + "longitude": "-2.97941000" + }, + { + "id": "42240", + "name": "Guengat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04193000", + "longitude": "-4.20470000" + }, + { + "id": "42242", + "name": "Guer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90619000", + "longitude": "-2.12314000" + }, + { + "id": "42243", + "name": "Guerlesquin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51758000", + "longitude": "-3.58583000" + }, + { + "id": "42245", + "name": "Guern", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02964000", + "longitude": "-3.09145000" + }, + { + "id": "42252", + "name": "Guichen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96762000", + "longitude": "-1.79534000" + }, + { + "id": "42253", + "name": "Guiclan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54967000", + "longitude": "-3.96211000" + }, + { + "id": "42254", + "name": "Guidel-Plage", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76768000", + "longitude": "-3.52180000" + }, + { + "id": "42255", + "name": "Guignen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92009000", + "longitude": "-1.86161000" + }, + { + "id": "42258", + "name": "Guilers", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42545000", + "longitude": "-4.55801000" + }, + { + "id": "42260", + "name": "Guillac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91096000", + "longitude": "-2.46571000" + }, + { + "id": "42262", + "name": "Guilliers", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04286000", + "longitude": "-2.40562000" + }, + { + "id": "42263", + "name": "Guilvinec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79861000", + "longitude": "-4.28111000" + }, + { + "id": "42264", + "name": "Guingamp", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56251000", + "longitude": "-3.15096000" + }, + { + "id": "42265", + "name": "Guipavas", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43522000", + "longitude": "-4.39722000" + }, + { + "id": "42266", + "name": "Guipel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29937000", + "longitude": "-1.71866000" + }, + { + "id": "42267", + "name": "Guipry", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82637000", + "longitude": "-1.84218000" + }, + { + "id": "42269", + "name": "Guiscriff", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04944000", + "longitude": "-3.64356000" + }, + { + "id": "42271", + "name": "Guissény", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63292000", + "longitude": "-4.40884000" + }, + { + "id": "42324", + "name": "Hanvec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32692000", + "longitude": "-4.15951000" + }, + { + "id": "42449", + "name": "Hédé-Bazouges", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30000000", + "longitude": "-1.80000000" + }, + { + "id": "42452", + "name": "Hénanbihen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56072000", + "longitude": "-2.37602000" + }, + { + "id": "42454", + "name": "Hénon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38433000", + "longitude": "-2.68334000" + }, + { + "id": "42466", + "name": "Hôpital-Camfrout", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32789000", + "longitude": "-4.24155000" + }, + { + "id": "42368", + "name": "Hennebont", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80512000", + "longitude": "-3.27337000" + }, + { + "id": "42370", + "name": "Henvic", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63256000", + "longitude": "-3.92623000" + }, + { + "id": "42395", + "name": "Hillion", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51429000", + "longitude": "-2.66634000" + }, + { + "id": "42400", + "name": "Hirel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60502000", + "longitude": "-1.80224000" + }, + { + "id": "42435", + "name": "Huelgoat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36111000", + "longitude": "-3.74578000" + }, + { + "id": "42471", + "name": "Iffendic", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12981000", + "longitude": "-2.03486000" + }, + { + "id": "42490", + "name": "Inguiniel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97658000", + "longitude": "-3.28072000" + }, + { + "id": "42495", + "name": "Irodouër", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24932000", + "longitude": "-1.94959000" + }, + { + "id": "42496", + "name": "Irvillac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37011000", + "longitude": "-4.21223000" + }, + { + "id": "42529", + "name": "Janzé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95915000", + "longitude": "-1.49829000" + }, + { + "id": "42544", + "name": "Javené", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31933000", + "longitude": "-1.21630000" + }, + { + "id": "42564", + "name": "Josselin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95720000", + "longitude": "-2.54713000" + }, + { + "id": "42581", + "name": "Jugon-les-Lacs", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41667000", + "longitude": "-2.33333000" + }, + { + "id": "42608", + "name": "Kerlouan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64500000", + "longitude": "-4.36556000" + }, + { + "id": "42609", + "name": "Kernilis", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57075000", + "longitude": "-4.41800000" + }, + { + "id": "42610", + "name": "Kersaint-Plabennec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47166000", + "longitude": "-4.37233000" + }, + { + "id": "42612", + "name": "Kervignac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76289000", + "longitude": "-3.23778000" + }, + { + "id": "42652", + "name": "La Bouëxière", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18333000", + "longitude": "-1.43333000" + }, + { + "id": "42651", + "name": "La Boussac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51260000", + "longitude": "-1.66088000" + }, + { + "id": "42693", + "name": "La Chapelle-des-Fougeretz", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17705000", + "longitude": "-1.73143000" + }, + { + "id": "42681", + "name": "La Chapelle-Janson", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34775000", + "longitude": "-1.10209000" + }, + { + "id": "42690", + "name": "La Chapelle-Thouarault", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12486000", + "longitude": "-1.86619000" + }, + { + "id": "42731", + "name": "La Dominelais", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76229000", + "longitude": "-1.68819000" + }, + { + "id": "42751", + "name": "La Forêt-Fouesnant", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91010000", + "longitude": "-3.97858000" + }, + { + "id": "42750", + "name": "La Forest-Landerneau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42589000", + "longitude": "-4.31578000" + }, + { + "id": "42757", + "name": "La Fresnais", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59478000", + "longitude": "-1.84186000" + }, + { + "id": "42760", + "name": "La Gacilly", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76562000", + "longitude": "-2.13220000" + }, + { + "id": "42770", + "name": "La Gouesnière", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60467000", + "longitude": "-1.89400000" + }, + { + "id": "42775", + "name": "La Guerche-de-Bretagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94112000", + "longitude": "-1.22869000" + }, + { + "id": "42821", + "name": "La Méaugon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49933000", + "longitude": "-2.83850000" + }, + { + "id": "42823", + "name": "La Mézière", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21829000", + "longitude": "-1.75514000" + }, + { + "id": "42812", + "name": "La Motte", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23381000", + "longitude": "-2.73271000" + }, + { + "id": "42846", + "name": "La Richardais", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60641000", + "longitude": "-2.03639000" + }, + { + "id": "42852", + "name": "La Roche-Derrien", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74627000", + "longitude": "-3.26142000" + }, + { + "id": "42853", + "name": "La Roche-Maurice", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47455000", + "longitude": "-4.20211000" + }, + { + "id": "42899", + "name": "La Trinité-sur-Mer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.58680000", + "longitude": "-3.02994000" + }, + { + "id": "42919", + "name": "La Vraie-Croix", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68954000", + "longitude": "-2.54274000" + }, + { + "id": "42970", + "name": "Laillé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97848000", + "longitude": "-1.71676000" + }, + { + "id": "42985", + "name": "Lamballe", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46762000", + "longitude": "-2.51436000" + }, + { + "id": "42993", + "name": "Lampaul-Guimiliau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49156000", + "longitude": "-4.04144000" + }, + { + "id": "42994", + "name": "Lampaul-Plouarzel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44727000", + "longitude": "-4.76045000" + }, + { + "id": "42997", + "name": "Lancieux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60767000", + "longitude": "-2.15030000" + }, + { + "id": "43000", + "name": "Landaul", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74785000", + "longitude": "-3.07694000" + }, + { + "id": "43015", + "name": "Landéan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41253000", + "longitude": "-1.15245000" + }, + { + "id": "43016", + "name": "Landéda", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58733000", + "longitude": "-4.57100000" + }, + { + "id": "43017", + "name": "Landéhen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43022000", + "longitude": "-2.53999000" + }, + { + "id": "43018", + "name": "Landévant", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76499000", + "longitude": "-3.12221000" + }, + { + "id": "43001", + "name": "Landeleau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22734000", + "longitude": "-3.72850000" + }, + { + "id": "43003", + "name": "Landerneau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45252000", + "longitude": "-4.25252000" + }, + { + "id": "43007", + "name": "Landivisiau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50784000", + "longitude": "-4.06833000" + }, + { + "id": "43011", + "name": "Landrévarzec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09177000", + "longitude": "-4.06044000" + }, + { + "id": "43013", + "name": "Landudec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99983000", + "longitude": "-4.33641000" + }, + { + "id": "43014", + "name": "Landunvez", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53466000", + "longitude": "-4.72545000" + }, + { + "id": "43019", + "name": "Lanester", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76132000", + "longitude": "-3.33965000" + }, + { + "id": "43024", + "name": "Langoat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75061000", + "longitude": "-3.28121000" + }, + { + "id": "43027", + "name": "Langon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72057000", + "longitude": "-1.85010000" + }, + { + "id": "43029", + "name": "Langonnet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10511000", + "longitude": "-3.49356000" + }, + { + "id": "43032", + "name": "Langueux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49500000", + "longitude": "-2.71850000" + }, + { + "id": "43033", + "name": "Languidic", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83266000", + "longitude": "-3.15821000" + }, + { + "id": "43034", + "name": "Lanmeur", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64733000", + "longitude": "-3.71645000" + }, + { + "id": "43036", + "name": "Lannilis", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57091000", + "longitude": "-4.52233000" + }, + { + "id": "43037", + "name": "Lannion", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73255000", + "longitude": "-3.45542000" + }, + { + "id": "43041", + "name": "Lanouée", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00225000", + "longitude": "-2.58157000" + }, + { + "id": "43043", + "name": "Lanrivoaré", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47310000", + "longitude": "-4.63870000" + }, + { + "id": "43044", + "name": "Lanrodec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51622000", + "longitude": "-3.03122000" + }, + { + "id": "43048", + "name": "Lantic", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60641000", + "longitude": "-2.88200000" + }, + { + "id": "43052", + "name": "Lanvallay", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45543000", + "longitude": "-2.02803000" + }, + { + "id": "43054", + "name": "Lanvénégen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99811000", + "longitude": "-3.54134000" + }, + { + "id": "43055", + "name": "Lanvéoc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28799000", + "longitude": "-4.46277000" + }, + { + "id": "43053", + "name": "Lanvollon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63117000", + "longitude": "-2.98641000" + }, + { + "id": "43072", + "name": "Larmor-Baden", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.58341000", + "longitude": "-2.89440000" + }, + { + "id": "43073", + "name": "Larmor-Plage", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70646000", + "longitude": "-3.38339000" + }, + { + "id": "43088", + "name": "Lassy", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97829000", + "longitude": "-1.87190000" + }, + { + "id": "43682", + "name": "Lécousse", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36458000", + "longitude": "-1.21289000" + }, + { + "id": "43686", + "name": "Léhon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44432000", + "longitude": "-2.04578000" + }, + { + "id": "43696", + "name": "Lézardrieux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78510000", + "longitude": "-3.10588000" + }, + { + "id": "43134", + "name": "Le Bono", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64129000", + "longitude": "-2.94902000" + }, + { + "id": "43170", + "name": "Le Conquet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36053000", + "longitude": "-4.77086000" + }, + { + "id": "43182", + "name": "Le Drennec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53475000", + "longitude": "-4.37008000" + }, + { + "id": "43183", + "name": "Le Faou", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29456000", + "longitude": "-4.17927000" + }, + { + "id": "43184", + "name": "Le Faouët", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03299000", + "longitude": "-3.49048000" + }, + { + "id": "43192", + "name": "Le Fœil", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43333000", + "longitude": "-2.91667000" + }, + { + "id": "43189", + "name": "Le Folgoët", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56359000", + "longitude": "-4.33641000" + }, + { + "id": "43233", + "name": "Le Minihic-sur-Rance", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57835000", + "longitude": "-2.00876000" + }, + { + "id": "43243", + "name": "Le Palais", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34590000", + "longitude": "-3.15488000" + }, + { + "id": "43253", + "name": "Le Pertre", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03373000", + "longitude": "-1.03735000" + }, + { + "id": "43293", + "name": "Le Relecq-Kerhuon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40691000", + "longitude": "-4.39359000" + }, + { + "id": "43295", + "name": "Le Rheu", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10228000", + "longitude": "-1.79733000" + }, + { + "id": "43302", + "name": "Le Sourn", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04262000", + "longitude": "-2.98790000" + }, + { + "id": "43311", + "name": "Le Theil-de-Bretagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91950000", + "longitude": "-1.42975000" + }, + { + "id": "43325", + "name": "Le Trévoux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89478000", + "longitude": "-3.64080000" + }, + { + "id": "43333", + "name": "Le Vieux-Marché", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60000000", + "longitude": "-3.45000000" + }, + { + "id": "43336", + "name": "Le Vivier-sur-Mer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60169000", + "longitude": "-1.77303000" + }, + { + "id": "43375", + "name": "Les Champs-Géraux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41647000", + "longitude": "-1.97087000" + }, + { + "id": "43437", + "name": "Lesneven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57233000", + "longitude": "-4.32133000" + }, + { + "id": "43474", + "name": "Liffré", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21324000", + "longitude": "-1.50838000" + }, + { + "id": "43491", + "name": "Limerzel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63619000", + "longitude": "-2.35448000" + }, + { + "id": "43522", + "name": "Livré-sur-Changeon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21937000", + "longitude": "-1.34438000" + }, + { + "id": "43528", + "name": "Locmariaquer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56915000", + "longitude": "-2.94468000" + }, + { + "id": "43529", + "name": "Locminé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88619000", + "longitude": "-2.83536000" + }, + { + "id": "43530", + "name": "Locmiquélic", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72499000", + "longitude": "-3.34153000" + }, + { + "id": "43531", + "name": "Locoal-Mendon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70520000", + "longitude": "-3.10796000" + }, + { + "id": "43534", + "name": "Locquémeau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72474000", + "longitude": "-3.56275000" + }, + { + "id": "43533", + "name": "Locquirec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69243000", + "longitude": "-3.64554000" + }, + { + "id": "43535", + "name": "Loctudy", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83333000", + "longitude": "-4.16667000" + }, + { + "id": "43539", + "name": "Logonna-Daoulas", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32308000", + "longitude": "-4.29675000" + }, + { + "id": "43583", + "name": "Lopérec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27734000", + "longitude": "-4.04756000" + }, + { + "id": "43582", + "name": "Loperhet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37725000", + "longitude": "-4.30608000" + }, + { + "id": "43587", + "name": "Lorient", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74589000", + "longitude": "-3.36643000" + }, + { + "id": "43598", + "name": "Louannec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79423000", + "longitude": "-3.41200000" + }, + { + "id": "43599", + "name": "Louargat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56576000", + "longitude": "-3.33750000" + }, + { + "id": "43602", + "name": "Loudéac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17826000", + "longitude": "-2.75433000" + }, + { + "id": "43616", + "name": "Louvigné-de-Bais", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04898000", + "longitude": "-1.33091000" + }, + { + "id": "43617", + "name": "Louvigné-du-Désert", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48047000", + "longitude": "-1.12537000" + }, + { + "id": "43623", + "name": "Loyat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98933000", + "longitude": "-2.38344000" + }, + { + "id": "43645", + "name": "Luitré", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28247000", + "longitude": "-1.11866000" + }, + { + "id": "43981", + "name": "Maël-Carhaix", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28444000", + "longitude": "-3.42322000" + }, + { + "id": "43749", + "name": "Malansac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67724000", + "longitude": "-2.29543000" + }, + { + "id": "43757", + "name": "Malestroit", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80934000", + "longitude": "-2.38457000" + }, + { + "id": "43758", + "name": "Malguénac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08008000", + "longitude": "-3.05248000" + }, + { + "id": "43914", + "name": "Martigné-Ferchaud", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82934000", + "longitude": "-1.31911000" + }, + { + "id": "43924", + "name": "Marzan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54069000", + "longitude": "-2.32466000" + }, + { + "id": "43940", + "name": "Matignon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59627000", + "longitude": "-2.29125000" + }, + { + "id": "43951", + "name": "Maure-de-Bretagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89239000", + "longitude": "-1.99104000" + }, + { + "id": "43957", + "name": "Mauron", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08257000", + "longitude": "-2.28477000" + }, + { + "id": "43965", + "name": "Maxent", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98333000", + "longitude": "-2.03333000" + }, + { + "id": "44459", + "name": "Médréac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26703000", + "longitude": "-2.06618000" + }, + { + "id": "44466", + "name": "Ménéac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13972000", + "longitude": "-2.46134000" + }, + { + "id": "44493", + "name": "Mûr-de-Bretagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20000000", + "longitude": "-2.98333000" + }, + { + "id": "43988", + "name": "Meillac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41174000", + "longitude": "-1.81378000" + }, + { + "id": "43992", + "name": "Melesse", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21771000", + "longitude": "-1.69496000" + }, + { + "id": "43993", + "name": "Melgven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90626000", + "longitude": "-3.83518000" + }, + { + "id": "43994", + "name": "Mellac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90345000", + "longitude": "-3.57675000" + }, + { + "id": "43997", + "name": "Melrand", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98002000", + "longitude": "-3.10941000" + }, + { + "id": "44015", + "name": "Merdrignac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19372000", + "longitude": "-2.41533000" + }, + { + "id": "44016", + "name": "Merlevenez", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73563000", + "longitude": "-3.23047000" + }, + { + "id": "44028", + "name": "Meslan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99502000", + "longitude": "-3.43285000" + }, + { + "id": "44032", + "name": "Messac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82399000", + "longitude": "-1.81085000" + }, + { + "id": "44044", + "name": "Meucon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71648000", + "longitude": "-2.76170000" + }, + { + "id": "44072", + "name": "Milizac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46667000", + "longitude": "-4.56667000" + }, + { + "id": "44081", + "name": "Miniac-Morvan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51477000", + "longitude": "-1.89955000" + }, + { + "id": "44082", + "name": "Minihy-Tréguier", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77746000", + "longitude": "-3.22883000" + }, + { + "id": "44427", + "name": "Moëlan-sur-Mer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81418000", + "longitude": "-3.62892000" + }, + { + "id": "44121", + "name": "Molac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73011000", + "longitude": "-2.43484000" + }, + { + "id": "44184", + "name": "Montauban-de-Bretagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19933000", + "longitude": "-2.04476000" + }, + { + "id": "44221", + "name": "Monterblanc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74211000", + "longitude": "-2.67950000" + }, + { + "id": "44223", + "name": "Monterfil", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06733000", + "longitude": "-1.97905000" + }, + { + "id": "44242", + "name": "Montfort-sur-Meu", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13542000", + "longitude": "-1.95201000" + }, + { + "id": "44245", + "name": "Montgermont", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15592000", + "longitude": "-1.71464000" + }, + { + "id": "44311", + "name": "Montreuil-le-Gast", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24647000", + "longitude": "-1.72498000" + }, + { + "id": "44312", + "name": "Montreuil-sous-Pérouse", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15176000", + "longitude": "-1.23946000" + }, + { + "id": "44313", + "name": "Montreuil-sur-Ille", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30788000", + "longitude": "-1.66880000" + }, + { + "id": "44378", + "name": "Moréac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91967000", + "longitude": "-2.81934000" + }, + { + "id": "44345", + "name": "Morbihan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84765000", + "longitude": "-2.77760000" + }, + { + "id": "44347", + "name": "Mordelles", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07571000", + "longitude": "-1.84286000" + }, + { + "id": "44357", + "name": "Morlaix", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57742000", + "longitude": "-3.82788000" + }, + { + "id": "44410", + "name": "Moustoir-Ac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85461000", + "longitude": "-2.83481000" + }, + { + "id": "44450", + "name": "Muzillac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55451000", + "longitude": "-2.48041000" + }, + { + "id": "44498", + "name": "Naizin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98993000", + "longitude": "-2.83287000" + }, + { + "id": "44697", + "name": "Névez", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81924000", + "longitude": "-3.79225000" + }, + { + "id": "44556", + "name": "Neulliac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12836000", + "longitude": "-2.98289000" + }, + { + "id": "44603", + "name": "Nivillac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53371000", + "longitude": "-2.28298000" + }, + { + "id": "44647", + "name": "Nostang", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74870000", + "longitude": "-3.18639000" + }, + { + "id": "44662", + "name": "Nouvoitou", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04105000", + "longitude": "-1.54714000" + }, + { + "id": "44669", + "name": "Noyal-Muzillac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59169000", + "longitude": "-2.45557000" + }, + { + "id": "44670", + "name": "Noyal-Pontivy", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06667000", + "longitude": "-2.88333000" + }, + { + "id": "44671", + "name": "Noyal-sur-Vilaine", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11219000", + "longitude": "-1.52333000" + }, + { + "id": "44766", + "name": "Orgères", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99886000", + "longitude": "-1.66781000" + }, + { + "id": "44791", + "name": "Ossé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05542000", + "longitude": "-1.45029000" + }, + { + "id": "44823", + "name": "Pabu", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58608000", + "longitude": "-3.13608000" + }, + { + "id": "44825", + "name": "Pacé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14848000", + "longitude": "-1.77327000" + }, + { + "id": "44829", + "name": "Paimpol", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77841000", + "longitude": "-3.04375000" + }, + { + "id": "44830", + "name": "Paimpont", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01809000", + "longitude": "-2.17105000" + }, + { + "id": "44841", + "name": "Pancé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88181000", + "longitude": "-1.65953000" + }, + { + "id": "44854", + "name": "Parigné", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42727000", + "longitude": "-1.19210000" + }, + { + "id": "45342", + "name": "Péaule", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.57972000", + "longitude": "-2.35601000" + }, + { + "id": "45344", + "name": "Pédernec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59682000", + "longitude": "-3.26948000" + }, + { + "id": "45348", + "name": "Pénestin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48226000", + "longitude": "-2.47275000" + }, + { + "id": "44881", + "name": "Peillac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71391000", + "longitude": "-2.21971000" + }, + { + "id": "44890", + "name": "Pencran", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43333000", + "longitude": "-4.23333000" + }, + { + "id": "44894", + "name": "Penvénan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81182000", + "longitude": "-3.29550000" + }, + { + "id": "44906", + "name": "Perros-Guirec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81454000", + "longitude": "-3.43963000" + }, + { + "id": "44976", + "name": "Pipriac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80953000", + "longitude": "-1.94638000" + }, + { + "id": "44980", + "name": "Piré-sur-Seiche", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00958000", + "longitude": "-1.42909000" + }, + { + "id": "44987", + "name": "Plabennec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50244000", + "longitude": "-4.42656000" + }, + { + "id": "44990", + "name": "Plaine-Haute", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44442000", + "longitude": "-2.85416000" + }, + { + "id": "44992", + "name": "Plaintel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40733000", + "longitude": "-2.81733000" + }, + { + "id": "45000", + "name": "Plancoët", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52199000", + "longitude": "-2.23540000" + }, + { + "id": "45001", + "name": "Planguenoual", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53300000", + "longitude": "-2.57642000" + }, + { + "id": "45003", + "name": "Plaudren", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.77868000", + "longitude": "-2.69331000" + }, + { + "id": "45116", + "name": "Pléchâtel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89496000", + "longitude": "-1.74876000" + }, + { + "id": "45118", + "name": "Plédéliac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45000000", + "longitude": "-2.38333000" + }, + { + "id": "45117", + "name": "Plédran", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44600000", + "longitude": "-2.74667000" + }, + { + "id": "45119", + "name": "Pléguien", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63525000", + "longitude": "-2.94001000" + }, + { + "id": "45120", + "name": "Pléhédel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69645000", + "longitude": "-3.00833000" + }, + { + "id": "45121", + "name": "Plélan-le-Grand", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00124000", + "longitude": "-2.09914000" + }, + { + "id": "45122", + "name": "Plélan-le-Petit", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43157000", + "longitude": "-2.21740000" + }, + { + "id": "45123", + "name": "Plélo", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55534000", + "longitude": "-2.94634000" + }, + { + "id": "45124", + "name": "Plémet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17601000", + "longitude": "-2.59325000" + }, + { + "id": "45125", + "name": "Plémy", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33644000", + "longitude": "-2.68244000" + }, + { + "id": "45127", + "name": "Plénée-Jugon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36462000", + "longitude": "-2.40036000" + }, + { + "id": "45126", + "name": "Pléneuf-Val-André", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59300000", + "longitude": "-2.54675000" + }, + { + "id": "45128", + "name": "Plérin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54249000", + "longitude": "-2.77983000" + }, + { + "id": "45129", + "name": "Plœuc-sur-Lié", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35000000", + "longitude": "-2.75000000" + }, + { + "id": "45006", + "name": "Pleine-Fougères", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53308000", + "longitude": "-1.56534000" + }, + { + "id": "45007", + "name": "Plerguer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52676000", + "longitude": "-1.84769000" + }, + { + "id": "45008", + "name": "Plescop", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69726000", + "longitude": "-2.80560000" + }, + { + "id": "45009", + "name": "Pleslin-Trigavou", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53333000", + "longitude": "-2.06667000" + }, + { + "id": "45010", + "name": "Plessala", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27642000", + "longitude": "-2.61876000" + }, + { + "id": "45012", + "name": "Plestan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42266000", + "longitude": "-2.44777000" + }, + { + "id": "45013", + "name": "Plestin-les-Grèves", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65844000", + "longitude": "-3.63056000" + }, + { + "id": "45014", + "name": "Pleubian", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84267000", + "longitude": "-3.13900000" + }, + { + "id": "45015", + "name": "Pleucadeuc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75876000", + "longitude": "-2.37362000" + }, + { + "id": "45016", + "name": "Pleudaniel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76644000", + "longitude": "-3.14033000" + }, + { + "id": "45017", + "name": "Pleudihen-sur-Rance", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51667000", + "longitude": "-1.96667000" + }, + { + "id": "45018", + "name": "Pleugriffet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98594000", + "longitude": "-2.68454000" + }, + { + "id": "45019", + "name": "Pleugueneuc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39735000", + "longitude": "-1.90301000" + }, + { + "id": "45021", + "name": "Pleumeleuc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18438000", + "longitude": "-1.91962000" + }, + { + "id": "45022", + "name": "Pleumeur-Bodou", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76667000", + "longitude": "-3.51667000" + }, + { + "id": "45023", + "name": "Pleumeur-Gautier", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80044000", + "longitude": "-3.15578000" + }, + { + "id": "45024", + "name": "Pleurtuit", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57858000", + "longitude": "-2.05805000" + }, + { + "id": "45025", + "name": "Pleuven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90000000", + "longitude": "-4.03333000" + }, + { + "id": "45026", + "name": "Pleyben", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23333000", + "longitude": "-3.96667000" + }, + { + "id": "45027", + "name": "Pleyber-Christ", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50000000", + "longitude": "-3.86667000" + }, + { + "id": "45100", + "name": "Ploërdut", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08742000", + "longitude": "-3.28550000" + }, + { + "id": "45101", + "name": "Ploërmel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93172000", + "longitude": "-2.39781000" + }, + { + "id": "45102", + "name": "Ploëzal", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71534000", + "longitude": "-3.20333000" + }, + { + "id": "45028", + "name": "Plobannalec-Lesconil", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81667000", + "longitude": "-4.21667000" + }, + { + "id": "45030", + "name": "Ploemel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65153000", + "longitude": "-3.07030000" + }, + { + "id": "45031", + "name": "Ploemeur", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73333000", + "longitude": "-3.43333000" + }, + { + "id": "45032", + "name": "Ploeren", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65713000", + "longitude": "-2.86397000" + }, + { + "id": "45033", + "name": "Plogastel-Saint-Germain", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98333000", + "longitude": "-4.26667000" + }, + { + "id": "45034", + "name": "Plogoff", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03700000", + "longitude": "-4.66606000" + }, + { + "id": "45035", + "name": "Plogonnec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08333000", + "longitude": "-4.18333000" + }, + { + "id": "45038", + "name": "Plomelin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93333000", + "longitude": "-4.15000000" + }, + { + "id": "45039", + "name": "Plomeur", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83333000", + "longitude": "-4.28333000" + }, + { + "id": "45040", + "name": "Plomodiern", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18333000", + "longitude": "-4.23333000" + }, + { + "id": "45041", + "name": "Plonéis", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01667000", + "longitude": "-4.21667000" + }, + { + "id": "45042", + "name": "Plonéour-Lanvern", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90000000", + "longitude": "-4.28333000" + }, + { + "id": "45044", + "name": "Plonévez-du-Faou", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25000000", + "longitude": "-3.83333000" + }, + { + "id": "45043", + "name": "Plonévez-Porzay", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10000000", + "longitude": "-4.21667000" + }, + { + "id": "45045", + "name": "Plouagat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53611000", + "longitude": "-2.99956000" + }, + { + "id": "45046", + "name": "Plouaret", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61667000", + "longitude": "-3.46667000" + }, + { + "id": "45047", + "name": "Plouarzel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43333000", + "longitude": "-4.73333000" + }, + { + "id": "45048", + "name": "Plouasne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30081000", + "longitude": "-2.00698000" + }, + { + "id": "45049", + "name": "Plouay", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91444000", + "longitude": "-3.33384000" + }, + { + "id": "45094", + "name": "Plouédern", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48333000", + "longitude": "-4.25000000" + }, + { + "id": "45095", + "name": "Plouénan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63333000", + "longitude": "-4.00000000" + }, + { + "id": "45096", + "name": "Plouézec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75122000", + "longitude": "-2.98467000" + }, + { + "id": "45097", + "name": "Plouëc-du-Trieux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68333000", + "longitude": "-3.20000000" + }, + { + "id": "45098", + "name": "Plouër-sur-Rance", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52669000", + "longitude": "-2.00298000" + }, + { + "id": "45050", + "name": "Ploubalay", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58109000", + "longitude": "-2.14069000" + }, + { + "id": "45051", + "name": "Ploubazlanec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80000000", + "longitude": "-3.03333000" + }, + { + "id": "45052", + "name": "Ploubezre", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70000000", + "longitude": "-3.45000000" + }, + { + "id": "45053", + "name": "Ploudalmézeau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53333000", + "longitude": "-4.65000000" + }, + { + "id": "45054", + "name": "Ploudaniel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53333000", + "longitude": "-4.31667000" + }, + { + "id": "45055", + "name": "Plouescat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66667000", + "longitude": "-4.16667000" + }, + { + "id": "45056", + "name": "Plouezoc'h", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63333000", + "longitude": "-3.81667000" + }, + { + "id": "45057", + "name": "Ploufragan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49141000", + "longitude": "-2.79458000" + }, + { + "id": "45058", + "name": "Plougasnou", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70000000", + "longitude": "-3.80000000" + }, + { + "id": "45059", + "name": "Plougastel-Daoulas", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36667000", + "longitude": "-4.36667000" + }, + { + "id": "45060", + "name": "Plougonvelin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34059000", + "longitude": "-4.71846000" + }, + { + "id": "45061", + "name": "Plougonven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51667000", + "longitude": "-3.71667000" + }, + { + "id": "45062", + "name": "Plougoulm", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66667000", + "longitude": "-4.05000000" + }, + { + "id": "45063", + "name": "Plougoumelen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65070000", + "longitude": "-2.91716000" + }, + { + "id": "45064", + "name": "Plougourvest", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55000000", + "longitude": "-4.08333000" + }, + { + "id": "45065", + "name": "Plougrescant", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84026000", + "longitude": "-3.22886000" + }, + { + "id": "45066", + "name": "Plouguenast", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28208000", + "longitude": "-2.70443000" + }, + { + "id": "45068", + "name": "Plouguernével", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23940000", + "longitude": "-3.25071000" + }, + { + "id": "45067", + "name": "Plouguerneau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60000000", + "longitude": "-4.50000000" + }, + { + "id": "45069", + "name": "Plouguiel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79742000", + "longitude": "-3.23883000" + }, + { + "id": "45070", + "name": "Plouguin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53333000", + "longitude": "-4.60000000" + }, + { + "id": "45071", + "name": "Plouha", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67650000", + "longitude": "-2.92842000" + }, + { + "id": "45072", + "name": "Plouharnel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59804000", + "longitude": "-3.11274000" + }, + { + "id": "45073", + "name": "Plouhinec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01667000", + "longitude": "-4.48333000" + }, + { + "id": "45074", + "name": "Plouider", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61667000", + "longitude": "-4.30000000" + }, + { + "id": "45075", + "name": "Plouigneau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56667000", + "longitude": "-3.70000000" + }, + { + "id": "45076", + "name": "Plouisy", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57817000", + "longitude": "-3.18434000" + }, + { + "id": "45077", + "name": "Ploumagoar", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54509000", + "longitude": "-3.13233000" + }, + { + "id": "45078", + "name": "Ploumilliau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68333000", + "longitude": "-3.51667000" + }, + { + "id": "45079", + "name": "Ploumoguer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40000000", + "longitude": "-4.71667000" + }, + { + "id": "45080", + "name": "Plounéour-Ménez", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45000000", + "longitude": "-3.88333000" + }, + { + "id": "45081", + "name": "Plounéour-Trez", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65000000", + "longitude": "-4.31667000" + }, + { + "id": "45086", + "name": "Plounévézel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30000000", + "longitude": "-3.60000000" + }, + { + "id": "45082", + "name": "Plounéventer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51667000", + "longitude": "-4.21667000" + }, + { + "id": "45083", + "name": "Plounévez-Lochrist", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61667000", + "longitude": "-4.21667000" + }, + { + "id": "45084", + "name": "Plounévez-Moëdec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56667000", + "longitude": "-3.45000000" + }, + { + "id": "45085", + "name": "Plounévez-Quintin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28333000", + "longitude": "-3.23333000" + }, + { + "id": "45087", + "name": "Plouray", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14580000", + "longitude": "-3.38671000" + }, + { + "id": "45088", + "name": "Plourin-lès-Morlaix", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53333000", + "longitude": "-3.78333000" + }, + { + "id": "45089", + "name": "Plourivo", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74550000", + "longitude": "-3.07075000" + }, + { + "id": "45090", + "name": "Plouvien", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53333000", + "longitude": "-4.45000000" + }, + { + "id": "45091", + "name": "Plouvorn", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58333000", + "longitude": "-4.03333000" + }, + { + "id": "45092", + "name": "Plouzané", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38333000", + "longitude": "-4.61667000" + }, + { + "id": "45093", + "name": "Plouzévédé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60000000", + "longitude": "-4.11667000" + }, + { + "id": "45099", + "name": "Plozévet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98333000", + "longitude": "-4.41667000" + }, + { + "id": "45103", + "name": "Pluduno", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53110000", + "longitude": "-2.26848000" + }, + { + "id": "45104", + "name": "Pluguffan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98333000", + "longitude": "-4.18333000" + }, + { + "id": "45105", + "name": "Pluherlin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69632000", + "longitude": "-2.36349000" + }, + { + "id": "45106", + "name": "Plumaugat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25479000", + "longitude": "-2.23843000" + }, + { + "id": "45111", + "name": "Pluméliau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95769000", + "longitude": "-2.97494000" + }, + { + "id": "45107", + "name": "Plumelec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83754000", + "longitude": "-2.63987000" + }, + { + "id": "45108", + "name": "Plumelin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86036000", + "longitude": "-2.88754000" + }, + { + "id": "45109", + "name": "Plumergat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74134000", + "longitude": "-2.91501000" + }, + { + "id": "45110", + "name": "Plumieux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10303000", + "longitude": "-2.58382000" + }, + { + "id": "45112", + "name": "Pluneret", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67525000", + "longitude": "-2.95782000" + }, + { + "id": "45113", + "name": "Plurien", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62559000", + "longitude": "-2.40423000" + }, + { + "id": "45114", + "name": "Pluvigner", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.77627000", + "longitude": "-3.01013000" + }, + { + "id": "45115", + "name": "Pluzunet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64076000", + "longitude": "-3.37113000" + }, + { + "id": "45130", + "name": "Pocé-les-Bois", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11626000", + "longitude": "-1.25168000" + }, + { + "id": "45148", + "name": "Pommeret", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46378000", + "longitude": "-2.62689000" + }, + { + "id": "45149", + "name": "Pommerit-Jaudy", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73058000", + "longitude": "-3.24208000" + }, + { + "id": "45150", + "name": "Pommerit-le-Vicomte", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61989000", + "longitude": "-3.09000000" + }, + { + "id": "45165", + "name": "Pont-Aven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85000000", + "longitude": "-3.75000000" + }, + { + "id": "45166", + "name": "Pont-Croix", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04088000", + "longitude": "-4.48714000" + }, + { + "id": "45189", + "name": "Pont-l’Abbé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86667000", + "longitude": "-4.21667000" + }, + { + "id": "45176", + "name": "Pont-Scorff", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83343000", + "longitude": "-3.40251000" + }, + { + "id": "45211", + "name": "Pontivy", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06862000", + "longitude": "-2.96280000" + }, + { + "id": "45217", + "name": "Pontrieux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70111000", + "longitude": "-3.15967000" + }, + { + "id": "45222", + "name": "Pordic", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57051000", + "longitude": "-2.81783000" + }, + { + "id": "45225", + "name": "Porspoder", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50000000", + "longitude": "-4.76667000" + }, + { + "id": "45228", + "name": "Port-Louis", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70704000", + "longitude": "-3.35484000" + }, + { + "id": "45259", + "name": "Pouldergat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05000000", + "longitude": "-4.33333000" + }, + { + "id": "45260", + "name": "Pouldreuzic", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95000000", + "longitude": "-4.36667000" + }, + { + "id": "45262", + "name": "Poullan-sur-Mer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08333000", + "longitude": "-4.41667000" + }, + { + "id": "45263", + "name": "Poullaouen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33333000", + "longitude": "-3.65000000" + }, + { + "id": "45277", + "name": "Prat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67677000", + "longitude": "-3.29707000" + }, + { + "id": "45293", + "name": "Priziac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06667000", + "longitude": "-3.41667000" + }, + { + "id": "45406", + "name": "Québriac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34444000", + "longitude": "-1.82723000" + }, + { + "id": "45407", + "name": "Quédillac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24904000", + "longitude": "-2.14241000" + }, + { + "id": "45408", + "name": "Quéménéven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11667000", + "longitude": "-4.11667000" + }, + { + "id": "45409", + "name": "Quéven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.78333000", + "longitude": "-3.41667000" + }, + { + "id": "45410", + "name": "Quévert", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46402000", + "longitude": "-2.08745000" + }, + { + "id": "45373", + "name": "Quemper-Guézennec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70378000", + "longitude": "-3.10522000" + }, + { + "id": "45376", + "name": "Querrien", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96667000", + "longitude": "-3.53333000" + }, + { + "id": "45378", + "name": "Quessoy", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42208000", + "longitude": "-2.66089000" + }, + { + "id": "45379", + "name": "Questembert", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66296000", + "longitude": "-2.45220000" + }, + { + "id": "45384", + "name": "Quiberon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48412000", + "longitude": "-3.11963000" + }, + { + "id": "45389", + "name": "Quimper", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00000000", + "longitude": "-4.10000000" + }, + { + "id": "45390", + "name": "Quimperlé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86667000", + "longitude": "-3.55000000" + }, + { + "id": "45401", + "name": "Quintin", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40342000", + "longitude": "-2.91050000" + }, + { + "id": "45403", + "name": "Quistinic", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90410000", + "longitude": "-3.13400000" + }, + { + "id": "45429", + "name": "Rannée", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92383000", + "longitude": "-1.24124000" + }, + { + "id": "45685", + "name": "Rédené", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85000000", + "longitude": "-3.46667000" + }, + { + "id": "45688", + "name": "Réguiny", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97649000", + "longitude": "-2.74478000" + }, + { + "id": "45438", + "name": "Rd pt des Chataigniers, Rte de Milizac, Guilers, Finistère, France", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43387000", + "longitude": "-4.56809000" + }, + { + "id": "45443", + "name": "Redon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65141000", + "longitude": "-2.08481000" + }, + { + "id": "45460", + "name": "Rennes", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11198000", + "longitude": "-1.67429000" + }, + { + "id": "45468", + "name": "Retiers", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91392000", + "longitude": "-1.37967000" + }, + { + "id": "45488", + "name": "Riantec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71093000", + "longitude": "-3.31629000" + }, + { + "id": "45499", + "name": "Riec-sur-Belon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83333000", + "longitude": "-3.70000000" + }, + { + "id": "45504", + "name": "Rieux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59781000", + "longitude": "-2.10828000" + }, + { + "id": "45561", + "name": "Rohan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06833000", + "longitude": "-2.75120000" + }, + { + "id": "45572", + "name": "Romagné", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34019000", + "longitude": "-1.27751000" + }, + { + "id": "45581", + "name": "Romillé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21619000", + "longitude": "-1.89229000" + }, + { + "id": "45598", + "name": "Roscanvel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31520000", + "longitude": "-4.54937000" + }, + { + "id": "45599", + "name": "Roscoff", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72381000", + "longitude": "-3.98709000" + }, + { + "id": "45608", + "name": "Rospez", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72940000", + "longitude": "-3.38364000" + }, + { + "id": "45609", + "name": "Rosporden", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96667000", + "longitude": "-3.83333000" + }, + { + "id": "45611", + "name": "Rostrenen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23696000", + "longitude": "-3.31442000" + }, + { + "id": "45650", + "name": "Roz-Landrieux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54337000", + "longitude": "-1.81586000" + }, + { + "id": "45651", + "name": "Roz-sur-Couesnon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58867000", + "longitude": "-1.59213000" + }, + { + "id": "45665", + "name": "Ruffiac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81866000", + "longitude": "-2.28238000" + }, + { + "id": "45728", + "name": "Saint-Agathon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55867000", + "longitude": "-3.10525000" + }, + { + "id": "45734", + "name": "Saint-Alban", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55630000", + "longitude": "-2.54013000" + }, + { + "id": "45775", + "name": "Saint-Armel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01305000", + "longitude": "-1.59152000" + }, + { + "id": "45786", + "name": "Saint-Aubin-du-Cormier", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25843000", + "longitude": "-1.40252000" + }, + { + "id": "45799", + "name": "Saint-Avé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69085000", + "longitude": "-2.74648000" + }, + { + "id": "46656", + "name": "Saint-Étienne-en-Coglès", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40172000", + "longitude": "-1.32812000" + }, + { + "id": "46659", + "name": "Saint-Évarzec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93333000", + "longitude": "-4.01667000" + }, + { + "id": "45802", + "name": "Saint-Barnabé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13712000", + "longitude": "-2.70483000" + }, + { + "id": "45822", + "name": "Saint-Brandan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39008000", + "longitude": "-2.86875000" + }, + { + "id": "45824", + "name": "Saint-Briac-sur-Mer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62189000", + "longitude": "-2.13435000" + }, + { + "id": "45827", + "name": "Saint-Brice-en-Coglès", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41157000", + "longitude": "-1.37019000" + }, + { + "id": "45830", + "name": "Saint-Brieuc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51513000", + "longitude": "-2.76838000" + }, + { + "id": "45833", + "name": "Saint-Broladre", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58677000", + "longitude": "-1.65769000" + }, + { + "id": "45839", + "name": "Saint-Caradec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19429000", + "longitude": "-2.84386000" + }, + { + "id": "45840", + "name": "Saint-Carreuc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39889000", + "longitude": "-2.73056000" + }, + { + "id": "45842", + "name": "Saint-Cast-le-Guildo", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63028000", + "longitude": "-2.25777000" + }, + { + "id": "45876", + "name": "Saint-Coulomb", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67465000", + "longitude": "-1.91092000" + }, + { + "id": "45906", + "name": "Saint-Didier", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09506000", + "longitude": "-1.37276000" + }, + { + "id": "45914", + "name": "Saint-Dolay", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54476000", + "longitude": "-2.15466000" + }, + { + "id": "45915", + "name": "Saint-Domineuc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37191000", + "longitude": "-1.87544000" + }, + { + "id": "45916", + "name": "Saint-Donan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46958000", + "longitude": "-2.88442000" + }, + { + "id": "45921", + "name": "Saint-Erblon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01895000", + "longitude": "-1.65162000" + }, + { + "id": "45979", + "name": "Saint-Georges-de-Reintembault", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50744000", + "longitude": "-1.24328000" + }, + { + "id": "46014", + "name": "Saint-Germain-en-Coglès", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40531000", + "longitude": "-1.26369000" + }, + { + "id": "46032", + "name": "Saint-Gildas-de-Rhuys", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50060000", + "longitude": "-2.83825000" + }, + { + "id": "46035", + "name": "Saint-Gilles", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15381000", + "longitude": "-1.82477000" + }, + { + "id": "46040", + "name": "Saint-Gonnery", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12465000", + "longitude": "-2.81848000" + }, + { + "id": "46042", + "name": "Saint-Grégoire", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15085000", + "longitude": "-1.68706000" + }, + { + "id": "46073", + "name": "Saint-Hélen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47002000", + "longitude": "-1.95894000" + }, + { + "id": "46075", + "name": "Saint-Jacques-de-la-Lande", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06514000", + "longitude": "-1.72086000" + }, + { + "id": "46077", + "name": "Saint-Jacut-les-Pins", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68581000", + "longitude": "-2.21514000" + }, + { + "id": "46084", + "name": "Saint-Jean-Brévelay", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84497000", + "longitude": "-2.72231000" + }, + { + "id": "46115", + "name": "Saint-Jean-la-Poterie", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63581000", + "longitude": "-2.12420000" + }, + { + "id": "46119", + "name": "Saint-Jean-sur-Couesnon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29013000", + "longitude": "-1.36835000" + }, + { + "id": "46131", + "name": "Saint-Jouan-des-Guérets", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59932000", + "longitude": "-1.97372000" + }, + { + "id": "46135", + "name": "Saint-Julien", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45142000", + "longitude": "-2.81250000" + }, + { + "id": "46152", + "name": "Saint-Just", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76581000", + "longitude": "-1.96096000" + }, + { + "id": "46205", + "name": "Saint-Lunaire", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63811000", + "longitude": "-2.11392000" + }, + { + "id": "46229", + "name": "Saint-Malo", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64720000", + "longitude": "-2.00883000" + }, + { + "id": "46240", + "name": "Saint-Marc-le-Blanc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36498000", + "longitude": "-1.40938000" + }, + { + "id": "46284", + "name": "Saint-Martin-des-Champs", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58333000", + "longitude": "-3.83333000" + }, + { + "id": "46304", + "name": "Saint-Martin-sur-Oust", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74600000", + "longitude": "-2.25343000" + }, + { + "id": "46351", + "name": "Saint-Médard-sur-Ille", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27202000", + "longitude": "-1.65968000" + }, + { + "id": "46352", + "name": "Saint-Méen-le-Grand", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18971000", + "longitude": "-2.19486000" + }, + { + "id": "46353", + "name": "Saint-Méloir-des-Ondes", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63790000", + "longitude": "-1.90448000" + }, + { + "id": "46368", + "name": "Saint-Nicolas-du-Pélem", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31222000", + "longitude": "-3.16465000" + }, + { + "id": "46371", + "name": "Saint-Nolff", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70365000", + "longitude": "-2.65209000" + }, + { + "id": "46380", + "name": "Saint-Ouen-des-Alleux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32805000", + "longitude": "-1.42590000" + }, + { + "id": "46386", + "name": "Saint-Pabu", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56667000", + "longitude": "-4.60000000" + }, + { + "id": "46477", + "name": "Saint-Père", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58727000", + "longitude": "-1.92413000" + }, + { + "id": "46422", + "name": "Saint-Perreux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66952000", + "longitude": "-2.10809000" + }, + { + "id": "46426", + "name": "Saint-Philibert", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.58821000", + "longitude": "-2.99978000" + }, + { + "id": "46433", + "name": "Saint-Pierre-de-Plesguen", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44638000", + "longitude": "-1.91278000" + }, + { + "id": "46430", + "name": "Saint-Pierre-Quiberon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52061000", + "longitude": "-3.13084000" + }, + { + "id": "46455", + "name": "Saint-Pol-de-Léon", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68333000", + "longitude": "-3.98333000" + }, + { + "id": "46483", + "name": "Saint-Quay-Perros", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78333000", + "longitude": "-3.45000000" + }, + { + "id": "46484", + "name": "Saint-Quay-Portrieux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64992000", + "longitude": "-2.83059000" + }, + { + "id": "46495", + "name": "Saint-Renan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43333000", + "longitude": "-4.61667000" + }, + { + "id": "46517", + "name": "Saint-Samson-sur-Rance", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49252000", + "longitude": "-2.02865000" + }, + { + "id": "46535", + "name": "Saint-Sauveur-des-Landes", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34278000", + "longitude": "-1.31248000" + }, + { + "id": "46547", + "name": "Saint-Senoux", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90552000", + "longitude": "-1.78819000" + }, + { + "id": "46565", + "name": "Saint-Sulpice-la-Forêt", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21667000", + "longitude": "-1.57972000" + }, + { + "id": "46584", + "name": "Saint-Thégonnec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51667000", + "longitude": "-3.95000000" + }, + { + "id": "46581", + "name": "Saint-Thonan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48333000", + "longitude": "-4.33333000" + }, + { + "id": "46582", + "name": "Saint-Thurial", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02924000", + "longitude": "-1.93181000" + }, + { + "id": "46583", + "name": "Saint-Thuriau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01667000", + "longitude": "-2.95000000" + }, + { + "id": "46591", + "name": "Saint-Urbain", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40000000", + "longitude": "-4.23333000" + }, + { + "id": "46618", + "name": "Saint-Vincent-sur-Oust", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70010000", + "longitude": "-2.14657000" + }, + { + "id": "46632", + "name": "Saint-Yvi", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96667000", + "longitude": "-3.93333000" + }, + { + "id": "46664", + "name": "Sainte-Anne-d'Auray", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70000000", + "longitude": "-2.95000000" + }, + { + "id": "46698", + "name": "Sainte-Hélène", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71976000", + "longitude": "-3.20359000" + }, + { + "id": "46707", + "name": "Sainte-Marie", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69429000", + "longitude": "-2.00190000" + }, + { + "id": "46797", + "name": "Santec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70000000", + "longitude": "-4.03333000" + }, + { + "id": "46824", + "name": "Sarzeau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52772000", + "longitude": "-2.76933000" + }, + { + "id": "47140", + "name": "Séné", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61900000", + "longitude": "-2.73700000" + }, + { + "id": "47142", + "name": "Sérent", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82333000", + "longitude": "-2.50571000" + }, + { + "id": "47148", + "name": "Sévignac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33297000", + "longitude": "-2.33915000" + }, + { + "id": "46894", + "name": "Scaër", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03333000", + "longitude": "-3.70000000" + }, + { + "id": "46946", + "name": "Sens-de-Bretagne", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33245000", + "longitude": "-1.53535000" + }, + { + "id": "46974", + "name": "Servon-sur-Vilaine", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12114000", + "longitude": "-1.45971000" + }, + { + "id": "46988", + "name": "Sibiril", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66667000", + "longitude": "-4.06667000" + }, + { + "id": "47011", + "name": "Sixt-sur-Aff", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.77648000", + "longitude": "-2.07867000" + }, + { + "id": "47012", + "name": "Sizun", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40000000", + "longitude": "-4.08333000" + }, + { + "id": "47096", + "name": "Spézet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20000000", + "longitude": "-3.71667000" + }, + { + "id": "47115", + "name": "Sulniac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67375000", + "longitude": "-2.57136000" + }, + { + "id": "47125", + "name": "Surzur", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.57850000", + "longitude": "-2.62892000" + }, + { + "id": "47154", + "name": "Taden", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47530000", + "longitude": "-2.01946000" + }, + { + "id": "47163", + "name": "Talensac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10847000", + "longitude": "-1.92829000" + }, + { + "id": "47186", + "name": "Taulé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60000000", + "longitude": "-3.90000000" + }, + { + "id": "47187", + "name": "Taupont", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95961000", + "longitude": "-2.43933000" + }, + { + "id": "47195", + "name": "Telgruc-sur-Mer", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23333000", + "longitude": "-4.35000000" + }, + { + "id": "47221", + "name": "Theix", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62916000", + "longitude": "-2.65186000" + }, + { + "id": "47290", + "name": "Tinténiac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32860000", + "longitude": "-1.83630000" + }, + { + "id": "47298", + "name": "Tonquédec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66886000", + "longitude": "-3.39712000" + }, + { + "id": "47301", + "name": "Torcé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06120000", + "longitude": "-1.26708000" + }, + { + "id": "47390", + "name": "Trébeurden", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76667000", + "longitude": "-3.56667000" + }, + { + "id": "47391", + "name": "Trédarzec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78583000", + "longitude": "-3.20100000" + }, + { + "id": "47392", + "name": "Trédrez-Locquémeau", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70000000", + "longitude": "-3.56667000" + }, + { + "id": "47393", + "name": "Trégastel", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81667000", + "longitude": "-3.50000000" + }, + { + "id": "47394", + "name": "Tréguier", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78333000", + "longitude": "-3.23333000" + }, + { + "id": "47395", + "name": "Trégunc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85000000", + "longitude": "-3.85000000" + }, + { + "id": "47400", + "name": "Trélévern", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81071000", + "longitude": "-3.37141000" + }, + { + "id": "47398", + "name": "Trélivan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43198000", + "longitude": "-2.11748000" + }, + { + "id": "47404", + "name": "Tréméven", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90000000", + "longitude": "-3.53333000" + }, + { + "id": "47403", + "name": "Trémuson", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52325000", + "longitude": "-2.84833000" + }, + { + "id": "47409", + "name": "Trévé", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21147000", + "longitude": "-2.79317000" + }, + { + "id": "47407", + "name": "Trévou-Tréguignec", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81869000", + "longitude": "-3.34132000" + }, + { + "id": "47351", + "name": "Treffiagat", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81667000", + "longitude": "-4.26667000" + }, + { + "id": "47352", + "name": "Treffléan", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68163000", + "longitude": "-2.61287000" + }, + { + "id": "47357", + "name": "Tremblay", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42216000", + "longitude": "-1.47555000" + }, + { + "id": "47360", + "name": "Tresbœuf", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88333000", + "longitude": "-1.55000000" + }, + { + "id": "47504", + "name": "Vannes", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65790000", + "longitude": "-2.75574000" + }, + { + "id": "47607", + "name": "Vern-sur-Seiche", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04514000", + "longitude": "-1.60057000" + }, + { + "id": "47657", + "name": "Vezin-le-Coquet", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11857000", + "longitude": "-1.75466000" + }, + { + "id": "47698", + "name": "Vignoc", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24842000", + "longitude": "-1.78169000" + }, + { + "id": "47876", + "name": "Vitré", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11776000", + "longitude": "-1.20577000" + }, + { + "id": "48006", + "name": "Yffiniac", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48428000", + "longitude": "-2.67647000" + }, + { + "id": "48017", + "name": "Yvignac-la-Tour", + "state_id": 4807, + "state_code": "BRE", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35000000", + "longitude": "-2.18333000" + }, + { + "id": "39237", + "name": "Abilly", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93333000", + "longitude": "0.73333000" + }, + { + "id": "39244", + "name": "Abondant", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78590000", + "longitude": "1.44006000" + }, + { + "id": "39279", + "name": "Aigurande", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43397000", + "longitude": "1.83026000" + }, + { + "id": "39351", + "name": "Ambillou", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.45100000", + "longitude": "0.44730000" + }, + { + "id": "39355", + "name": "Amboise", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41249000", + "longitude": "0.98266000" + }, + { + "id": "39365", + "name": "Amilly", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97281000", + "longitude": "2.77186000" + }, + { + "id": "39394", + "name": "Anet", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85642000", + "longitude": "1.43981000" + }, + { + "id": "39467", + "name": "Ardentes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74191000", + "longitude": "1.83428000" + }, + { + "id": "39478", + "name": "Argent-sur-Sauldre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55847000", + "longitude": "2.44410000" + }, + { + "id": "39483", + "name": "Argenton-sur-Creuse", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58997000", + "longitude": "1.51981000" + }, + { + "id": "39492", + "name": "Armenonville-les-Gâtineaux", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54365000", + "longitude": "1.64750000" + }, + { + "id": "39512", + "name": "Arrou", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09768000", + "longitude": "1.12851000" + }, + { + "id": "39518", + "name": "Artannes-sur-Indre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27451000", + "longitude": "0.60036000" + }, + { + "id": "39521", + "name": "Artenay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08246000", + "longitude": "1.88098000" + }, + { + "id": "39524", + "name": "Arthon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.69361000", + "longitude": "1.69857000" + }, + { + "id": "39541", + "name": "Aschères-le-Marché", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11008000", + "longitude": "2.00725000" + }, + { + "id": "39559", + "name": "Athée-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32023000", + "longitude": "0.91659000" + }, + { + "id": "39582", + "name": "Aubigny-sur-Nère", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48819000", + "longitude": "2.43895000" + }, + { + "id": "39618", + "name": "Aunay-sous-Auneau", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44140000", + "longitude": "1.81094000" + }, + { + "id": "39620", + "name": "Auneau", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46361000", + "longitude": "1.77263000" + }, + { + "id": "39636", + "name": "Authon-du-Perche", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19615000", + "longitude": "0.89189000" + }, + { + "id": "39638", + "name": "Autry-le-Châtel", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59886000", + "longitude": "2.60200000" + }, + { + "id": "39654", + "name": "Auzouer-en-Touraine", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54230000", + "longitude": "0.92067000" + }, + { + "id": "39675", + "name": "Avoine", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20533000", + "longitude": "0.18253000" + }, + { + "id": "39677", + "name": "Avord", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.03514000", + "longitude": "2.65295000" + }, + { + "id": "39693", + "name": "Azay-le-Ferron", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.85097000", + "longitude": "1.07084000" + }, + { + "id": "39694", + "name": "Azay-le-Rideau", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26405000", + "longitude": "0.47132000" + }, + { + "id": "39695", + "name": "Azay-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34966000", + "longitude": "0.84562000" + }, + { + "id": "39698", + "name": "Azé", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85141000", + "longitude": "0.99829000" + }, + { + "id": "48053", + "name": "Écueillé", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.08462000", + "longitude": "1.34668000" + }, + { + "id": "48062", + "name": "Éguzon-Chantôme", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.45000000", + "longitude": "1.58333000" + }, + { + "id": "48074", + "name": "Épernon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61031000", + "longitude": "1.67218000" + }, + { + "id": "48076", + "name": "Épieds-en-Beauce", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95066000", + "longitude": "1.61732000" + }, + { + "id": "39723", + "name": "Bailleau-l’Évêque", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48960000", + "longitude": "1.39665000" + }, + { + "id": "39722", + "name": "Bailleau-le-Pin", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36698000", + "longitude": "1.32948000" + }, + { + "id": "39752", + "name": "Ballan-Miré", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34057000", + "longitude": "0.61466000" + }, + { + "id": "39786", + "name": "Barjouville", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41002000", + "longitude": "1.47639000" + }, + { + "id": "39809", + "name": "Baugy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.08181000", + "longitude": "2.72848000" + }, + { + "id": "39811", + "name": "Baule", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81084000", + "longitude": "1.67259000" + }, + { + "id": "39832", + "name": "Bazoches-les-Gallerandes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.16540000", + "longitude": "2.04319000" + }, + { + "id": "40422", + "name": "Bélâbre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.55121000", + "longitude": "1.15791000" + }, + { + "id": "40435", + "name": "Béville-le-Comte", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43558000", + "longitude": "1.71305000" + }, + { + "id": "40438", + "name": "Bû", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79705000", + "longitude": "1.49702000" + }, + { + "id": "39848", + "name": "Beaugency", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.78019000", + "longitude": "1.62705000" + }, + { + "id": "39851", + "name": "Beaulieu-lès-Loches", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12526000", + "longitude": "1.01585000" + }, + { + "id": "39867", + "name": "Beaumont-en-Véron", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19397000", + "longitude": "0.18436000" + }, + { + "id": "39868", + "name": "Beaumont-la-Ronce", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56948000", + "longitude": "0.67017000" + }, + { + "id": "39875", + "name": "Beaune-la-Rolande", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07124000", + "longitude": "2.43140000" + }, + { + "id": "39912", + "name": "Bellegarde", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98333000", + "longitude": "2.43333000" + }, + { + "id": "39924", + "name": "Belleville-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50000000", + "longitude": "2.85000000" + }, + { + "id": "40053", + "name": "Blancafort", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53219000", + "longitude": "2.52981000" + }, + { + "id": "40076", + "name": "Bléré", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32738000", + "longitude": "0.99186000" + }, + { + "id": "40069", + "name": "Blois", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59432000", + "longitude": "1.32912000" + }, + { + "id": "40083", + "name": "Boigny-sur-Bionne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93333000", + "longitude": "2.01667000" + }, + { + "id": "40091", + "name": "Boiscommun", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03576000", + "longitude": "2.38333000" + }, + { + "id": "40124", + "name": "Bonneval", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18312000", + "longitude": "1.38524000" + }, + { + "id": "40129", + "name": "Bonny-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56172000", + "longitude": "2.83933000" + }, + { + "id": "40170", + "name": "Boulleret", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42419000", + "longitude": "2.87343000" + }, + { + "id": "40199", + "name": "Bourges", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.08333000", + "longitude": "2.40000000" + }, + { + "id": "40206", + "name": "Bourgueil", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28333000", + "longitude": "0.16612000" + }, + { + "id": "40237", + "name": "Bouzy-la-Forêt", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85120000", + "longitude": "2.37773000" + }, + { + "id": "40241", + "name": "Boynes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11822000", + "longitude": "2.36006000" + }, + { + "id": "40247", + "name": "Bracieux", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54895000", + "longitude": "1.54120000" + }, + { + "id": "40267", + "name": "Bray-en-Val", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82856000", + "longitude": "2.36644000" + }, + { + "id": "40299", + "name": "Brezolles", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69033000", + "longitude": "1.07404000" + }, + { + "id": "40301", + "name": "Briare", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63343000", + "longitude": "2.74380000" + }, + { + "id": "40304", + "name": "Bricy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99847000", + "longitude": "1.77937000" + }, + { + "id": "40317", + "name": "Brinon-sur-Sauldre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56600000", + "longitude": "2.25647000" + }, + { + "id": "40334", + "name": "Brou", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21719000", + "longitude": "1.16539000" + }, + { + "id": "40406", + "name": "Buzançais", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88877000", + "longitude": "1.41950000" + }, + { + "id": "40508", + "name": "Candé-sur-Beuvron", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49499000", + "longitude": "1.25937000" + }, + { + "id": "40511", + "name": "Cangey", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46718000", + "longitude": "1.06051000" + }, + { + "id": "40635", + "name": "Cellettes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52758000", + "longitude": "1.38102000" + }, + { + "id": "40640", + "name": "Cepoy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04795000", + "longitude": "2.73782000" + }, + { + "id": "40643", + "name": "Cerdon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63571000", + "longitude": "2.36277000" + }, + { + "id": "40644", + "name": "Cerelles", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50168000", + "longitude": "0.68333000" + }, + { + "id": "40672", + "name": "Chabris", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25343000", + "longitude": "1.65181000" + }, + { + "id": "40676", + "name": "Chaillac", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43382000", + "longitude": "1.29889000" + }, + { + "id": "40678", + "name": "Chailles", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54160000", + "longitude": "1.31220000" + }, + { + "id": "40683", + "name": "Chaingy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88326000", + "longitude": "1.77059000" + }, + { + "id": "40710", + "name": "Chambourg-sur-Indre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18159000", + "longitude": "0.96863000" + }, + { + "id": "40711", + "name": "Chambray-lès-Tours", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33537000", + "longitude": "0.70286000" + }, + { + "id": "40737", + "name": "Champhol", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46813000", + "longitude": "1.50281000" + }, + { + "id": "40757", + "name": "Chanceaux-sur-Choisille", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.47145000", + "longitude": "0.70539000" + }, + { + "id": "40762", + "name": "Changy-les-Bois", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85793000", + "longitude": "2.68543000" + }, + { + "id": "40778", + "name": "Chantôme", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.41067000", + "longitude": "1.55590000" + }, + { + "id": "40767", + "name": "Chanteau", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96651000", + "longitude": "1.97129000" + }, + { + "id": "40796", + "name": "Charentilly", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46981000", + "longitude": "0.60903000" + }, + { + "id": "40797", + "name": "Charenton-du-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73007000", + "longitude": "2.64438000" + }, + { + "id": "40799", + "name": "Chargé", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43270000", + "longitude": "1.03037000" + }, + { + "id": "40819", + "name": "Chartres", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44685000", + "longitude": "1.48925000" + }, + { + "id": "40837", + "name": "Chaudon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66276000", + "longitude": "1.49670000" + }, + { + "id": "40845", + "name": "Chaumont-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48108000", + "longitude": "1.18929000" + }, + { + "id": "40846", + "name": "Chaumont-sur-Tharonne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61039000", + "longitude": "1.90514000" + }, + { + "id": "40932", + "name": "Châlette-sur-Loing", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01337000", + "longitude": "2.73587000" + }, + { + "id": "40936", + "name": "Chârost", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99390000", + "longitude": "2.11639000" + }, + { + "id": "40949", + "name": "Château-la-Vallière", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54665000", + "longitude": "0.32458000" + }, + { + "id": "40943", + "name": "Château-Renard", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93333000", + "longitude": "2.93333000" + }, + { + "id": "40944", + "name": "Château-Renault", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59188000", + "longitude": "0.91143000" + }, + { + "id": "40953", + "name": "Châteaudun", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07086000", + "longitude": "1.33783000" + }, + { + "id": "40958", + "name": "Châteaumeillant", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.56219000", + "longitude": "2.19515000" + }, + { + "id": "40967", + "name": "Châteauneuf-en-Thymerais", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58112000", + "longitude": "1.24085000" + }, + { + "id": "40972", + "name": "Châteauneuf-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.85778000", + "longitude": "2.31710000" + }, + { + "id": "40974", + "name": "Châteauneuf-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86575000", + "longitude": "2.21903000" + }, + { + "id": "40978", + "name": "Châteauroux", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81248000", + "longitude": "1.69362000" + }, + { + "id": "40993", + "name": "Châtillon-Coligny", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82266000", + "longitude": "2.84563000" + }, + { + "id": "41000", + "name": "Châtillon-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27571000", + "longitude": "1.49424000" + }, + { + "id": "41002", + "name": "Châtillon-sur-Indre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98735000", + "longitude": "1.17218000" + }, + { + "id": "41008", + "name": "Châtres-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26505000", + "longitude": "1.90591000" + }, + { + "id": "41010", + "name": "Chécy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89402000", + "longitude": "2.02304000" + }, + { + "id": "40868", + "name": "Cheillé", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26114000", + "longitude": "0.40553000" + }, + { + "id": "40880", + "name": "Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11304000", + "longitude": "2.50983000" + }, + { + "id": "40882", + "name": "Cherisy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75000000", + "longitude": "1.43333000" + }, + { + "id": "40895", + "name": "Cheverny", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50079000", + "longitude": "1.45951000" + }, + { + "id": "40898", + "name": "Chevillon-sur-Huillard", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96197000", + "longitude": "2.62601000" + }, + { + "id": "40899", + "name": "Chevilly", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02973000", + "longitude": "1.87402000" + }, + { + "id": "40907", + "name": "Chilleurs-aux-Bois", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07220000", + "longitude": "2.13540000" + }, + { + "id": "40912", + "name": "Chinon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.16701000", + "longitude": "0.24284000" + }, + { + "id": "40916", + "name": "Chissay-en-Touraine", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33747000", + "longitude": "1.13362000" + }, + { + "id": "40917", + "name": "Chitenay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49753000", + "longitude": "1.37139000" + }, + { + "id": "40928", + "name": "Chouzé-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23673000", + "longitude": "0.12364000" + }, + { + "id": "40927", + "name": "Chouzy-sur-Cisse", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52576000", + "longitude": "1.24661000" + }, + { + "id": "41021", + "name": "Cinq-Mars-la-Pile", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34638000", + "longitude": "0.45873000" + }, + { + "id": "41032", + "name": "Civray-de-Touraine", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33253000", + "longitude": "1.04952000" + }, + { + "id": "41075", + "name": "Cléré-les-Pins", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42550000", + "longitude": "0.38963000" + }, + { + "id": "41074", + "name": "Cléry-Saint-André", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82218000", + "longitude": "1.75091000" + }, + { + "id": "41055", + "name": "Clion", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.94085000", + "longitude": "1.23214000" + }, + { + "id": "41061", + "name": "Cloyes-sur-le-Loir", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99726000", + "longitude": "1.23711000" + }, + { + "id": "41062", + "name": "Cluis", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.54486000", + "longitude": "1.74933000" + }, + { + "id": "41156", + "name": "Contres", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41754000", + "longitude": "1.42849000" + }, + { + "id": "41165", + "name": "Corbeilles", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07201000", + "longitude": "2.55030000" + }, + { + "id": "41182", + "name": "Cormeray", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49195000", + "longitude": "1.40610000" + }, + { + "id": "41183", + "name": "Cormery", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26812000", + "longitude": "0.83583000" + }, + { + "id": "41201", + "name": "Corquilleroy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04212000", + "longitude": "2.70382000" + }, + { + "id": "41231", + "name": "Coullons", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62105000", + "longitude": "2.49258000" + }, + { + "id": "41234", + "name": "Coulombs", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65253000", + "longitude": "1.54646000" + }, + { + "id": "41240", + "name": "Cour-Cheverny", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.51033000", + "longitude": "1.45583000" + }, + { + "id": "41263", + "name": "Cours-les-Barres", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.02513000", + "longitude": "3.03167000" + }, + { + "id": "41268", + "name": "Courtenay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03901000", + "longitude": "3.05851000" + }, + { + "id": "41272", + "name": "Courville-sur-Eure", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44899000", + "longitude": "1.24085000" + }, + { + "id": "41361", + "name": "Cuffy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96275000", + "longitude": "3.05238000" + }, + { + "id": "41403", + "name": "Dadonville", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15776000", + "longitude": "2.27150000" + }, + { + "id": "41414", + "name": "Dammarie", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34314000", + "longitude": "1.49444000" + }, + { + "id": "41419", + "name": "Dampierre-en-Burly", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76143000", + "longitude": "2.51962000" + }, + { + "id": "41437", + "name": "Darvoy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85839000", + "longitude": "2.10033000" + }, + { + "id": "41602", + "name": "Déols", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82934000", + "longitude": "1.70428000" + }, + { + "id": "41603", + "name": "Département d'Eure-et-Loir", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50000000", + "longitude": "1.50000000" + }, + { + "id": "41605", + "name": "Département d'Indre-et-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25000000", + "longitude": "0.75000000" + }, + { + "id": "41619", + "name": "Département de l'Indre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83333000", + "longitude": "1.66667000" + }, + { + "id": "41641", + "name": "Département du Loir-et-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50000000", + "longitude": "1.50000000" + }, + { + "id": "41455", + "name": "Descartes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96667000", + "longitude": "0.70000000" + }, + { + "id": "41464", + "name": "Dhuizon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.58723000", + "longitude": "1.65809000" + }, + { + "id": "41533", + "name": "Donnery", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91486000", + "longitude": "2.10299000" + }, + { + "id": "41538", + "name": "Dordives", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14253000", + "longitude": "2.76775000" + }, + { + "id": "41548", + "name": "Douchy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94282000", + "longitude": "3.05392000" + }, + { + "id": "41574", + "name": "Dreux", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73649000", + "longitude": "1.36566000" + }, + { + "id": "41577", + "name": "Droué", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04023000", + "longitude": "1.07534000" + }, + { + "id": "41576", + "name": "Droue-sur-Drouette", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60053000", + "longitude": "1.70113000" + }, + { + "id": "41582", + "name": "Dry", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79612000", + "longitude": "1.71330000" + }, + { + "id": "41590", + "name": "Dun-sur-Auron", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88490000", + "longitude": "2.57345000" + }, + { + "id": "41739", + "name": "Esvres", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28537000", + "longitude": "0.78588000" + }, + { + "id": "41785", + "name": "Faverolles-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31732000", + "longitude": "1.19045000" + }, + { + "id": "41787", + "name": "Fay-aux-Loges", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92724000", + "longitude": "2.14012000" + }, + { + "id": "42006", + "name": "Férolles", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83475000", + "longitude": "2.11113000" + }, + { + "id": "41849", + "name": "Fleury-les-Aubrais", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93328000", + "longitude": "1.91811000" + }, + { + "id": "41941", + "name": "Foëcy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.17618000", + "longitude": "2.16257000" + }, + { + "id": "41873", + "name": "Fondettes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40350000", + "longitude": "0.59686000" + }, + { + "id": "41879", + "name": "Fontaine-la-Guyon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47270000", + "longitude": "1.31417000" + }, + { + "id": "41903", + "name": "Fontenay-sur-Loing", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10365000", + "longitude": "2.77542000" + }, + { + "id": "41995", + "name": "Fussy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14372000", + "longitude": "2.42953000" + }, + { + "id": "42021", + "name": "Gallardon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52622000", + "longitude": "1.69307000" + }, + { + "id": "42046", + "name": "Garnay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70489000", + "longitude": "1.33706000" + }, + { + "id": "42051", + "name": "Gasville-Oisème", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46973000", + "longitude": "1.53843000" + }, + { + "id": "42065", + "name": "Genillé", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18333000", + "longitude": "1.10000000" + }, + { + "id": "42112", + "name": "Gièvres", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27847000", + "longitude": "1.66943000" + }, + { + "id": "42087", + "name": "Gidy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98539000", + "longitude": "1.83816000" + }, + { + "id": "42088", + "name": "Gien", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69332000", + "longitude": "2.63094000" + }, + { + "id": "42194", + "name": "Graçay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14371000", + "longitude": "1.84733000" + }, + { + "id": "42322", + "name": "Hanches", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60115000", + "longitude": "1.65137000" + }, + { + "id": "42369", + "name": "Henrichemont", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.30333000", + "longitude": "2.52458000" + }, + { + "id": "42371", + "name": "Herbault", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60501000", + "longitude": "1.13934000" + }, + { + "id": "42384", + "name": "Herry", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21667000", + "longitude": "2.95385000" + }, + { + "id": "42437", + "name": "Huismes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23319000", + "longitude": "0.25116000" + }, + { + "id": "42438", + "name": "Huisseau-sur-Cosson", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59335000", + "longitude": "1.45333000" + }, + { + "id": "42439", + "name": "Huisseau-sur-Mauves", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89319000", + "longitude": "1.70274000" + }, + { + "id": "42489", + "name": "Ingré", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91995000", + "longitude": "1.82778000" + }, + { + "id": "42507", + "name": "Issoudun", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.94848000", + "longitude": "1.99362000" + }, + { + "id": "42527", + "name": "Janville", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20284000", + "longitude": "1.88020000" + }, + { + "id": "42532", + "name": "Jargeau", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86316000", + "longitude": "2.12648000" + }, + { + "id": "42579", + "name": "Joué-lès-Tours", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35223000", + "longitude": "0.66905000" + }, + { + "id": "42568", + "name": "Jouet-sur-l'Aubois", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.04562000", + "longitude": "2.98725000" + }, + { + "id": "42572", + "name": "Jouy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51005000", + "longitude": "1.54501000" + }, + { + "id": "42577", + "name": "Jouy-le-Potier", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74553000", + "longitude": "1.81115000" + }, + { + "id": "42628", + "name": "L'Île-Bouchard", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11667000", + "longitude": "0.41667000" + }, + { + "id": "42638", + "name": "La Bazoche-Gouet", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13985000", + "longitude": "0.98163000" + }, + { + "id": "42671", + "name": "La Celle-Saint-Avant", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.02200000", + "longitude": "0.60488000" + }, + { + "id": "42696", + "name": "La Chapelle-du-Noyer", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03191000", + "longitude": "1.30953000" + }, + { + "id": "42688", + "name": "La Chapelle-Saint-Mesmin", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88648000", + "longitude": "1.83450000" + }, + { + "id": "42689", + "name": "La Chapelle-Saint-Ursin", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06248000", + "longitude": "2.32447000" + }, + { + "id": "42701", + "name": "La Chapelle-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25063000", + "longitude": "0.21887000" + }, + { + "id": "42704", + "name": "La Chaussée-Saint-Victor", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61621000", + "longitude": "1.36765000" + }, + { + "id": "42707", + "name": "La Châtre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58228000", + "longitude": "1.98734000" + }, + { + "id": "42724", + "name": "La Croix-en-Touraine", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34031000", + "longitude": "0.99024000" + }, + { + "id": "42739", + "name": "La Ferté-Imbault", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38467000", + "longitude": "1.95344000" + }, + { + "id": "42742", + "name": "La Ferté-Saint-Aubin", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71695000", + "longitude": "1.93904000" + }, + { + "id": "42795", + "name": "La Loupe", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47320000", + "longitude": "1.01585000" + }, + { + "id": "42804", + "name": "La Membrolle-sur-Choisille", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43719000", + "longitude": "0.63163000" + }, + { + "id": "42847", + "name": "La Riche", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38996000", + "longitude": "0.67072000" + }, + { + "id": "42912", + "name": "La Ville-aux-Clercs", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91835000", + "longitude": "1.08521000" + }, + { + "id": "42913", + "name": "La Ville-aux-Dames", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39551000", + "longitude": "0.76837000" + }, + { + "id": "42952", + "name": "Ladon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00259000", + "longitude": "2.53724000" + }, + { + "id": "42969", + "name": "Lailly-en-Val", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76962000", + "longitude": "1.68657000" + }, + { + "id": "42992", + "name": "Lamotte-Beuvron", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60200000", + "longitude": "2.02837000" + }, + { + "id": "43022", + "name": "Langeais", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32587000", + "longitude": "0.40136000" + }, + { + "id": "43083", + "name": "Larçay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36649000", + "longitude": "0.78145000" + }, + { + "id": "43680", + "name": "Lèves", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47065000", + "longitude": "1.48194000" + }, + { + "id": "43691", + "name": "Léré", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46867000", + "longitude": "2.86981000" + }, + { + "id": "43130", + "name": "Le Blanc", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.63371000", + "longitude": "1.06272000" + }, + { + "id": "43168", + "name": "Le Châtelet", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64247000", + "longitude": "2.28229000" + }, + { + "id": "43172", + "name": "Le Coudray", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42115000", + "longitude": "1.50057000" + }, + { + "id": "43198", + "name": "Le Grand-Pressigny", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.92017000", + "longitude": "0.80380000" + }, + { + "id": "43289", + "name": "Le Pêchereau", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.57677000", + "longitude": "1.54743000" + }, + { + "id": "43271", + "name": "Le Poinçonnet", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.76410000", + "longitude": "1.71790000" + }, + { + "id": "43358", + "name": "Les Aix-d’Angillon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19652000", + "longitude": "2.56506000" + }, + { + "id": "43410", + "name": "Les Montils", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49499000", + "longitude": "1.29775000" + }, + { + "id": "43451", + "name": "Levet", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.92605000", + "longitude": "2.40732000" + }, + { + "id": "43453", + "name": "Levroux", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97860000", + "longitude": "1.61243000" + }, + { + "id": "43476", + "name": "Lignières", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.75152000", + "longitude": "2.17381000" + }, + { + "id": "43480", + "name": "Ligny-le-Ribault", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68419000", + "longitude": "1.78153000" + }, + { + "id": "43482", + "name": "Ligré", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11185000", + "longitude": "0.27562000" + }, + { + "id": "43483", + "name": "Ligueil", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.04210000", + "longitude": "0.81893000" + }, + { + "id": "43527", + "name": "Loches", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12858000", + "longitude": "0.99522000" + }, + { + "id": "43542", + "name": "Loiret", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93598000", + "longitude": "2.30173000" + }, + { + "id": "43595", + "name": "Lorris", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88950000", + "longitude": "2.51478000" + }, + { + "id": "43610", + "name": "Loury", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99944000", + "longitude": "2.08474000" + }, + { + "id": "43627", + "name": "Luant", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73300000", + "longitude": "1.55793000" + }, + { + "id": "43675", + "name": "Luçay-le-Mâle", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12996000", + "longitude": "1.44173000" + }, + { + "id": "43638", + "name": "Lucé", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43689000", + "longitude": "1.46359000" + }, + { + "id": "43644", + "name": "Luisant", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42950000", + "longitude": "1.47383000" + }, + { + "id": "43651", + "name": "Lunay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80864000", + "longitude": "0.91499000" + }, + { + "id": "43655", + "name": "Lunery", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93569000", + "longitude": "2.26895000" + }, + { + "id": "43657", + "name": "Luray", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72035000", + "longitude": "1.39889000" + }, + { + "id": "43669", + "name": "Luynes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38441000", + "longitude": "0.55470000" + }, + { + "id": "43739", + "name": "Maintenon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58704000", + "longitude": "1.57847000" + }, + { + "id": "43740", + "name": "Mainvilliers", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45003000", + "longitude": "1.45607000" + }, + { + "id": "43756", + "name": "Malesherbes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29566000", + "longitude": "2.40935000" + }, + { + "id": "43786", + "name": "Manthelan", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13632000", + "longitude": "0.79319000" + }, + { + "id": "43794", + "name": "Marboué", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11377000", + "longitude": "1.33210000" + }, + { + "id": "43805", + "name": "Marcilly-en-Villette", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76505000", + "longitude": "2.02266000" + }, + { + "id": "43818", + "name": "Mardié", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88617000", + "longitude": "2.05745000" + }, + { + "id": "43819", + "name": "Mareau-aux-Prés", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86667000", + "longitude": "1.78333000" + }, + { + "id": "43829", + "name": "Mareuil-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29314000", + "longitude": "1.32897000" + }, + { + "id": "43836", + "name": "Margon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33568000", + "longitude": "0.83454000" + }, + { + "id": "43843", + "name": "Marigny-les-Usages", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95799000", + "longitude": "2.01462000" + }, + { + "id": "43858", + "name": "Marmagne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10000000", + "longitude": "2.28333000" + }, + { + "id": "43920", + "name": "Martizay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.80767000", + "longitude": "1.04324000" + }, + { + "id": "43931", + "name": "Massay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.15324000", + "longitude": "1.99334000" + }, + { + "id": "43976", + "name": "Mazières-de-Touraine", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38326000", + "longitude": "0.42548000" + }, + { + "id": "44464", + "name": "Ménestreau-en-Villette", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69962000", + "longitude": "2.02333000" + }, + { + "id": "44469", + "name": "Méreau", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.16295000", + "longitude": "2.05086000" + }, + { + "id": "44488", + "name": "Mézières-en-Brenne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81979000", + "longitude": "1.21123000" + }, + { + "id": "44489", + "name": "Mézières-en-Drouais", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72413000", + "longitude": "1.42440000" + }, + { + "id": "43985", + "name": "Mehun-sur-Yèvre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13782000", + "longitude": "2.21105000" + }, + { + "id": "44000", + "name": "Menetou-Salon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23172000", + "longitude": "2.48715000" + }, + { + "id": "44009", + "name": "Mer", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70555000", + "longitude": "1.50621000" + }, + { + "id": "44039", + "name": "Mettray", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.45251000", + "longitude": "0.64939000" + }, + { + "id": "44047", + "name": "Meung-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83124000", + "longitude": "1.69582000" + }, + { + "id": "44138", + "name": "Mondoubleau", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98061000", + "longitude": "0.89782000" + }, + { + "id": "44144", + "name": "Monnaie", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50162000", + "longitude": "0.78872000" + }, + { + "id": "44162", + "name": "Mont-près-Chambord", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56235000", + "longitude": "1.45712000" + }, + { + "id": "44179", + "name": "Montargis", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99696000", + "longitude": "2.73261000" + }, + { + "id": "44193", + "name": "Montbazon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28348000", + "longitude": "0.69988000" + }, + { + "id": "44211", + "name": "Montcresson", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90561000", + "longitude": "2.80796000" + }, + { + "id": "44248", + "name": "Montgivray", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60324000", + "longitude": "1.98162000" + }, + { + "id": "44254", + "name": "Montierchaume", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86362000", + "longitude": "1.77181000" + }, + { + "id": "44274", + "name": "Montlivault", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63987000", + "longitude": "1.44487000" + }, + { + "id": "44275", + "name": "Montlouis-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38845000", + "longitude": "0.83208000" + }, + { + "id": "44293", + "name": "Montoire-sur-le-Loir", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75316000", + "longitude": "0.86525000" + }, + { + "id": "44317", + "name": "Montrichard", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34310000", + "longitude": "1.18653000" + }, + { + "id": "44327", + "name": "Monts", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27723000", + "longitude": "0.62473000" + }, + { + "id": "44339", + "name": "Morancez", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40051000", + "longitude": "1.49388000" + }, + { + "id": "44379", + "name": "Morée", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90397000", + "longitude": "1.23421000" + }, + { + "id": "44431", + "name": "Muides-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66958000", + "longitude": "1.52694000" + }, + { + "id": "44438", + "name": "Mur-de-Sologne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41239000", + "longitude": "1.60832000" + }, + { + "id": "44515", + "name": "Nargis", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11106000", + "longitude": "2.75597000" + }, + { + "id": "44522", + "name": "Naveil", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79576000", + "longitude": "1.03222000" + }, + { + "id": "44526", + "name": "Nazelles-Négron", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43333000", + "longitude": "0.95000000" + }, + { + "id": "44696", + "name": "Nérondes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99758000", + "longitude": "2.81834000" + }, + { + "id": "44554", + "name": "Neuillé-Pont-Pierre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54840000", + "longitude": "0.54962000" + }, + { + "id": "44557", + "name": "Neung-sur-Beuvron", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53486000", + "longitude": "1.80514000" + }, + { + "id": "44565", + "name": "Neuville-aux-Bois", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06813000", + "longitude": "2.05372000" + }, + { + "id": "44578", + "name": "Neuvy-le-Roi", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60386000", + "longitude": "0.59472000" + }, + { + "id": "44575", + "name": "Neuvy-Pailloux", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88486000", + "longitude": "1.86152000" + }, + { + "id": "44576", + "name": "Neuvy-Saint-Sépulchre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.59781000", + "longitude": "1.80601000" + }, + { + "id": "44579", + "name": "Neuvy-sur-Barangeon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31495000", + "longitude": "2.25343000" + }, + { + "id": "44584", + "name": "Nevoy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71591000", + "longitude": "2.57791000" + }, + { + "id": "44599", + "name": "Niherne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82768000", + "longitude": "1.56384000" + }, + { + "id": "44611", + "name": "Nogent-le-Phaye", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44528000", + "longitude": "1.57777000" + }, + { + "id": "44612", + "name": "Nogent-le-Roi", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64785000", + "longitude": "1.52933000" + }, + { + "id": "44613", + "name": "Nogent-le-Rotrou", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32157000", + "longitude": "0.82177000" + }, + { + "id": "44618", + "name": "Nogent-sur-Vernisson", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84603000", + "longitude": "2.74267000" + }, + { + "id": "44632", + "name": "Noizay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42188000", + "longitude": "0.89201000" + }, + { + "id": "44658", + "name": "Nouan-le-Fuzelier", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53600000", + "longitude": "2.03647000" + }, + { + "id": "44663", + "name": "Nouzilly", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54499000", + "longitude": "0.74623000" + }, + { + "id": "44679", + "name": "Noyers-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27701000", + "longitude": "1.40320000" + }, + { + "id": "44733", + "name": "Olivet", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86219000", + "longitude": "1.89910000" + }, + { + "id": "44746", + "name": "Onzain", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49956000", + "longitude": "1.17701000" + }, + { + "id": "44767", + "name": "Orgères-en-Beauce", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14636000", + "longitude": "1.68380000" + }, + { + "id": "44774", + "name": "Orléans", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90289000", + "longitude": "1.90389000" + }, + { + "id": "44776", + "name": "Ormes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94152000", + "longitude": "1.81823000" + }, + { + "id": "44787", + "name": "Orval", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.72581000", + "longitude": "2.47144000" + }, + { + "id": "44802", + "name": "Oucques", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82252000", + "longitude": "1.29383000" + }, + { + "id": "44806", + "name": "Oulins", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86451000", + "longitude": "1.47038000" + }, + { + "id": "44812", + "name": "Outarville", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21393000", + "longitude": "2.02198000" + }, + { + "id": "44815", + "name": "Ouzouer-le-Marché", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91055000", + "longitude": "1.52607000" + }, + { + "id": "44816", + "name": "Ouzouer-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76638000", + "longitude": "2.48038000" + }, + { + "id": "44817", + "name": "Ouzouer-sur-Trézée", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67266000", + "longitude": "2.80800000" + }, + { + "id": "44844", + "name": "Pannes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01937000", + "longitude": "2.66755000" + }, + { + "id": "44860", + "name": "Parçay-Meslay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44195000", + "longitude": "0.74847000" + }, + { + "id": "44866", + "name": "Patay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04833000", + "longitude": "1.69500000" + }, + { + "id": "44907", + "name": "Perrusson", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09873000", + "longitude": "1.01438000" + }, + { + "id": "44962", + "name": "Pierres", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59209000", + "longitude": "1.56444000" + }, + { + "id": "44984", + "name": "Pithiviers", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17185000", + "longitude": "2.25185000" + }, + { + "id": "44985", + "name": "Pithiviers-le-Vieil", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.16313000", + "longitude": "2.20922000" + }, + { + "id": "44989", + "name": "Plaimpied-Givaudins", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99800000", + "longitude": "2.45428000" + }, + { + "id": "45131", + "name": "Pocé-sur-Cisse", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44330000", + "longitude": "0.99142000" + }, + { + "id": "45134", + "name": "Poilly-lez-Gien", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67724000", + "longitude": "2.59743000" + }, + { + "id": "45212", + "name": "Pontlevoy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39002000", + "longitude": "1.25465000" + }, + { + "id": "45261", + "name": "Pouligny-Saint-Pierre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.68095000", + "longitude": "1.03877000" + }, + { + "id": "45284", + "name": "Preuilly-sur-Claise", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.85424000", + "longitude": "0.92954000" + }, + { + "id": "45301", + "name": "Pruniers-en-Sologne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31667000", + "longitude": "1.66667000" + }, + { + "id": "45320", + "name": "Puiseaux", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09234000", + "longitude": "2.05967000" + }, + { + "id": "45385", + "name": "Quiers-sur-Bézonde", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99615000", + "longitude": "2.44141000" + }, + { + "id": "45440", + "name": "Rebréchien", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98727000", + "longitude": "2.04432000" + }, + { + "id": "45447", + "name": "Reignac-sur-Indre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22662000", + "longitude": "0.91587000" + }, + { + "id": "45465", + "name": "Restigné", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28224000", + "longitude": "0.22788000" + }, + { + "id": "45472", + "name": "Reugny", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48208000", + "longitude": "0.88468000" + }, + { + "id": "45473", + "name": "Reuilly", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.08476000", + "longitude": "2.04305000" + }, + { + "id": "45487", + "name": "Rians", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.17875000", + "longitude": "2.61359000" + }, + { + "id": "45496", + "name": "Richelieu", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.01389000", + "longitude": "0.32406000" + }, + { + "id": "45543", + "name": "Rochecorbon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41658000", + "longitude": "0.75521000" + }, + { + "id": "45582", + "name": "Romorantin-Lanthenay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36667000", + "longitude": "1.75000000" + }, + { + "id": "45644", + "name": "Rouziers-de-Touraine", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.51720000", + "longitude": "0.64848000" + }, + { + "id": "45706", + "name": "Saché", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.24707000", + "longitude": "0.54455000" + }, + { + "id": "45732", + "name": "Saint-Aignan", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26892000", + "longitude": "1.37614000" + }, + { + "id": "45741", + "name": "Saint-Amand-Longpré", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68333000", + "longitude": "1.01667000" + }, + { + "id": "45742", + "name": "Saint-Amand-Montrond", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.72284000", + "longitude": "2.50494000" + }, + { + "id": "45772", + "name": "Saint-Antoine-du-Rocher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49677000", + "longitude": "0.62997000" + }, + { + "id": "45783", + "name": "Saint-Aubin-des-Bois", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46549000", + "longitude": "1.35784000" + }, + { + "id": "45797", + "name": "Saint-Avertin", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36357000", + "longitude": "0.73993000" + }, + { + "id": "45800", + "name": "Saint-Ay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85890000", + "longitude": "1.75137000" + }, + { + "id": "46637", + "name": "Saint-Éloy-de-Gy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.15552000", + "longitude": "2.34267000" + }, + { + "id": "46640", + "name": "Saint-Épain", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14482000", + "longitude": "0.53668000" + }, + { + "id": "46644", + "name": "Saint-Étienne-de-Chigny", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38333000", + "longitude": "0.53333000" + }, + { + "id": "45812", + "name": "Saint-Benoît-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80561000", + "longitude": "2.31274000" + }, + { + "id": "45821", + "name": "Saint-Branchs", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22655000", + "longitude": "0.77306000" + }, + { + "id": "45832", + "name": "Saint-Brisson-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64686000", + "longitude": "2.68229000" + }, + { + "id": "45859", + "name": "Saint-Christophe-sur-le-Nais", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61720000", + "longitude": "0.47801000" + }, + { + "id": "45867", + "name": "Saint-Claude-de-Diray", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61651000", + "longitude": "1.41798000" + }, + { + "id": "45884", + "name": "Saint-Cyr-en-Val", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83182000", + "longitude": "1.96672000" + }, + { + "id": "45887", + "name": "Saint-Cyr-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40000000", + "longitude": "0.66667000" + }, + { + "id": "45900", + "name": "Saint-Denis-en-Val", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87321000", + "longitude": "1.96601000" + }, + { + "id": "45902", + "name": "Saint-Denis-les-Ponts", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06692000", + "longitude": "1.29764000" + }, + { + "id": "45917", + "name": "Saint-Doulchard", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10371000", + "longitude": "2.35200000" + }, + { + "id": "45919", + "name": "Saint-Dyé-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65595000", + "longitude": "1.48847000" + }, + { + "id": "45936", + "name": "Saint-Florent-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99552000", + "longitude": "2.25076000" + }, + { + "id": "45952", + "name": "Saint-Gaultier", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.63518000", + "longitude": "1.41289000" + }, + { + "id": "45989", + "name": "Saint-Georges-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32996000", + "longitude": "1.13261000" + }, + { + "id": "45990", + "name": "Saint-Georges-sur-Eure", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41869000", + "longitude": "1.35460000" + }, + { + "id": "46008", + "name": "Saint-Germain-des-Prés", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95384000", + "longitude": "2.84846000" + }, + { + "id": "46013", + "name": "Saint-Germain-du-Puy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10000000", + "longitude": "2.48333000" + }, + { + "id": "46028", + "name": "Saint-Gervais-la-Forêt", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56705000", + "longitude": "1.35493000" + }, + { + "id": "46053", + "name": "Saint-Hilaire-Saint-Mesmin", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86614000", + "longitude": "1.83351000" + }, + { + "id": "46089", + "name": "Saint-Jean-de-Braye", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91303000", + "longitude": "1.97705000" + }, + { + "id": "46105", + "name": "Saint-Jean-de-la-Ruelle", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91127000", + "longitude": "1.86483000" + }, + { + "id": "46116", + "name": "Saint-Jean-le-Blanc", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89327000", + "longitude": "1.91540000" + }, + { + "id": "46174", + "name": "Saint-Laurent-Nouan", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71667000", + "longitude": "1.60000000" + }, + { + "id": "46202", + "name": "Saint-Lubin-des-Joncherets", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76667000", + "longitude": "1.21667000" + }, + { + "id": "46244", + "name": "Saint-Marcel", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60193000", + "longitude": "1.51324000" + }, + { + "id": "46294", + "name": "Saint-Martin-d’Auxigny", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20371000", + "longitude": "2.41553000" + }, + { + "id": "46275", + "name": "Saint-Martin-de-Nigelles", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61234000", + "longitude": "1.60920000" + }, + { + "id": "46300", + "name": "Saint-Martin-le-Beau", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35566000", + "longitude": "0.90953000" + }, + { + "id": "46303", + "name": "Saint-Martin-sur-Ocre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65942000", + "longitude": "2.65810000" + }, + { + "id": "46309", + "name": "Saint-Maur", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.80657000", + "longitude": "1.63904000" + }, + { + "id": "46320", + "name": "Saint-Maurice-sur-Fessard", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99231000", + "longitude": "2.62157000" + }, + { + "id": "46363", + "name": "Saint-Nicolas-de-Bourgueil", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28493000", + "longitude": "0.12727000" + }, + { + "id": "46377", + "name": "Saint-Ouen", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81404000", + "longitude": "1.08067000" + }, + { + "id": "46399", + "name": "Saint-Paterne-Racan", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60213000", + "longitude": "0.48478000" + }, + { + "id": "46479", + "name": "Saint-Père-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76667000", + "longitude": "2.36667000" + }, + { + "id": "46427", + "name": "Saint-Piat", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54668000", + "longitude": "1.58363000" + }, + { + "id": "46435", + "name": "Saint-Pierre-des-Corps", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38623000", + "longitude": "0.74849000" + }, + { + "id": "46463", + "name": "Saint-Prest", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49107000", + "longitude": "1.53034000" + }, + { + "id": "46475", + "name": "Saint-Pryvé-Saint-Mesmin", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88177000", + "longitude": "1.86950000" + }, + { + "id": "46515", + "name": "Saint-Rémy-sur-Avre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76143000", + "longitude": "1.24532000" + }, + { + "id": "46506", + "name": "Saint-Romain-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31877000", + "longitude": "1.39956000" + }, + { + "id": "46518", + "name": "Saint-Satur", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33914000", + "longitude": "2.83734000" + }, + { + "id": "46562", + "name": "Saint-Sulpice-de-Pommeray", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60000000", + "longitude": "1.26667000" + }, + { + "id": "46622", + "name": "Saint-Viâtre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52438000", + "longitude": "1.93276000" + }, + { + "id": "46692", + "name": "Sainte-Geneviève-des-Bois", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81777000", + "longitude": "2.81652000" + }, + { + "id": "46702", + "name": "Sainte-Lizaigne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.00695000", + "longitude": "2.02266000" + }, + { + "id": "46717", + "name": "Sainte-Maure-de-Touraine", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11130000", + "longitude": "0.62236000" + }, + { + "id": "46727", + "name": "Sainte-Solange", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13628000", + "longitude": "2.55019000" + }, + { + "id": "46743", + "name": "Salbris", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42420000", + "longitude": "2.05124000" + }, + { + "id": "46781", + "name": "Sancerre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32889000", + "longitude": "2.83447000" + }, + { + "id": "46783", + "name": "Sancoins", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83314000", + "longitude": "2.92238000" + }, + { + "id": "46786", + "name": "Sandillon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84510000", + "longitude": "2.03155000" + }, + { + "id": "46801", + "name": "Saran", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95013000", + "longitude": "1.87601000" + }, + { + "id": "46806", + "name": "Sargé-sur-Braye", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92352000", + "longitude": "0.85340000" + }, + { + "id": "46855", + "name": "Saussay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85571000", + "longitude": "1.40889000" + }, + { + "id": "46885", + "name": "Savigné-sur-Lathan", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44483000", + "longitude": "0.32093000" + }, + { + "id": "46878", + "name": "Savigny-en-Sancerre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44142000", + "longitude": "2.80953000" + }, + { + "id": "46879", + "name": "Savigny-en-Véron", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20071000", + "longitude": "0.14457000" + }, + { + "id": "46882", + "name": "Savigny-sur-Braye", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87923000", + "longitude": "0.80981000" + }, + { + "id": "46887", + "name": "Savonnières", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34769000", + "longitude": "0.54961000" + }, + { + "id": "46920", + "name": "Seigy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25688000", + "longitude": "1.39964000" + }, + { + "id": "46930", + "name": "Selles-Saint-Denis", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38695000", + "longitude": "1.92295000" + }, + { + "id": "46931", + "name": "Selles-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27904000", + "longitude": "1.55387000" + }, + { + "id": "46936", + "name": "Semblançay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50000000", + "longitude": "0.58333000" + }, + { + "id": "46937", + "name": "Semoy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93333000", + "longitude": "1.95000000" + }, + { + "id": "46943", + "name": "Senonches", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55999000", + "longitude": "1.03069000" + }, + { + "id": "46956", + "name": "Sermaises", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29650000", + "longitude": "2.20546000" + }, + { + "id": "47017", + "name": "Soings-en-Sologne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41289000", + "longitude": "1.52452000" + }, + { + "id": "47041", + "name": "Sonzay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52687000", + "longitude": "0.46203000" + }, + { + "id": "47044", + "name": "Sorel-Moussel", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83391000", + "longitude": "1.36699000" + }, + { + "id": "47047", + "name": "Sorigny", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.24329000", + "longitude": "0.69520000" + }, + { + "id": "47064", + "name": "Souesmes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.45638000", + "longitude": "2.17495000" + }, + { + "id": "47085", + "name": "Sours", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41043000", + "longitude": "1.59889000" + }, + { + "id": "47128", + "name": "Suèvres", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66655000", + "longitude": "1.46153000" + }, + { + "id": "47114", + "name": "Sully-sur-Loire", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76372000", + "longitude": "2.37238000" + }, + { + "id": "47189", + "name": "Tauxigny", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21337000", + "longitude": "0.83479000" + }, + { + "id": "47193", + "name": "Tavers", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75921000", + "longitude": "1.61267000" + }, + { + "id": "47272", + "name": "Thésée", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32345000", + "longitude": "1.30882000" + }, + { + "id": "47220", + "name": "Theillay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31429000", + "longitude": "2.04028000" + }, + { + "id": "47235", + "name": "Thilouze", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22415000", + "longitude": "0.57963000" + }, + { + "id": "47237", + "name": "Thiron Gardais", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31667000", + "longitude": "0.98333000" + }, + { + "id": "47281", + "name": "Tigy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79365000", + "longitude": "2.19767000" + }, + { + "id": "47327", + "name": "Tournon-Saint-Martin", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73423000", + "longitude": "0.95514000" + }, + { + "id": "47333", + "name": "Tours", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39484000", + "longitude": "0.70398000" + }, + { + "id": "47339", + "name": "Toury", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19397000", + "longitude": "1.93484000" + }, + { + "id": "47350", + "name": "Traînou", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97353000", + "longitude": "2.10399000" + }, + { + "id": "47405", + "name": "Tréon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67709000", + "longitude": "1.32668000" + }, + { + "id": "47374", + "name": "Triguères", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93975000", + "longitude": "2.98570000" + }, + { + "id": "47384", + "name": "Trouy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.01153000", + "longitude": "2.36018000" + }, + { + "id": "47388", + "name": "Truyes", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27299000", + "longitude": "0.85179000" + }, + { + "id": "47428", + "name": "Unverre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19829000", + "longitude": "1.09207000" + }, + { + "id": "47479", + "name": "Valençay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.16207000", + "longitude": "1.56852000" + }, + { + "id": "47525", + "name": "Vasselay", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.15686000", + "longitude": "2.38963000" + }, + { + "id": "47527", + "name": "Vatan", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.07447000", + "longitude": "1.81010000" + }, + { + "id": "47928", + "name": "Véretz", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35706000", + "longitude": "0.80575000" + }, + { + "id": "47555", + "name": "Veigné", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28556000", + "longitude": "0.74079000" + }, + { + "id": "47578", + "name": "Vendôme", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79292000", + "longitude": "1.06556000" + }, + { + "id": "47579", + "name": "Vendœuvres", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.80000000", + "longitude": "1.35000000" + }, + { + "id": "47585", + "name": "Vennecy", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95465000", + "longitude": "2.05459000" + }, + { + "id": "47622", + "name": "Vernou-sur-Brenne", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41936000", + "longitude": "0.84757000" + }, + { + "id": "47624", + "name": "Vernouillet", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72090000", + "longitude": "1.36951000" + }, + { + "id": "47636", + "name": "Vert-en-Drouais", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76029000", + "longitude": "1.29460000" + }, + { + "id": "47684", + "name": "Vienne-en-Val", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80036000", + "longitude": "2.13460000" + }, + { + "id": "47685", + "name": "Vierzon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22186000", + "longitude": "2.06840000" + }, + { + "id": "47700", + "name": "Vignoux-sur-Barangeon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20068000", + "longitude": "2.17258000" + }, + { + "id": "47708", + "name": "Villandry", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34019000", + "longitude": "0.51050000" + }, + { + "id": "47721", + "name": "Villebarou", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62344000", + "longitude": "1.32252000" + }, + { + "id": "47732", + "name": "Villedômer", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54651000", + "longitude": "0.88775000" + }, + { + "id": "47731", + "name": "Villedieu-sur-Indre", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84598000", + "longitude": "1.53975000" + }, + { + "id": "47739", + "name": "Villefranche-sur-Cher", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.30000000", + "longitude": "1.76667000" + }, + { + "id": "47749", + "name": "Villemandeur", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98701000", + "longitude": "2.71802000" + }, + { + "id": "47750", + "name": "Villemeux-sur-Eure", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67259000", + "longitude": "1.46470000" + }, + { + "id": "47831", + "name": "Villiers-le-Morhier", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62018000", + "longitude": "1.56349000" + }, + { + "id": "47832", + "name": "Villiers-sur-Loir", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80507000", + "longitude": "0.99774000" + }, + { + "id": "47839", + "name": "Vimory", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94786000", + "longitude": "2.68701000" + }, + { + "id": "47846", + "name": "Vineuil", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.58380000", + "longitude": "1.37601000" + }, + { + "id": "47871", + "name": "Vitry-aux-Loges", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93333000", + "longitude": "2.26667000" + }, + { + "id": "47915", + "name": "Vouvray", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41087000", + "longitude": "0.79892000" + }, + { + "id": "47917", + "name": "Vouzon", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64515000", + "longitude": "2.05609000" + }, + { + "id": "47918", + "name": "Voves", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27138000", + "longitude": "1.62583000" + }, + { + "id": "48023", + "name": "Yèvres", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21078000", + "longitude": "1.18717000" + }, + { + "id": "48022", + "name": "Yzeures-sur-Creuse", + "state_id": 4818, + "state_code": "CVL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.78609000", + "longitude": "0.87166000" + }, + { + "id": "39256", + "name": "Afa", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.98396000", + "longitude": "8.79833000" + }, + { + "id": "39298", + "name": "Ajaccio", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.91886000", + "longitude": "8.73812000" + }, + { + "id": "39300", + "name": "Alata", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.97636000", + "longitude": "8.74208000" + }, + { + "id": "39343", + "name": "Aléria", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.10431000", + "longitude": "9.51265000" + }, + { + "id": "39308", + "name": "Albitreccia", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.86301000", + "longitude": "8.94262000" + }, + { + "id": "39442", + "name": "Appietto", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.01426000", + "longitude": "8.76855000" + }, + { + "id": "39804", + "name": "Bastia", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.70278000", + "longitude": "9.45000000" + }, + { + "id": "40018", + "name": "Biguglia", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.62692000", + "longitude": "9.42018000" + }, + { + "id": "40114", + "name": "Bonifacio", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.38740000", + "longitude": "9.15941000" + }, + { + "id": "40140", + "name": "Borgo", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.55488000", + "longitude": "9.42636000" + }, + { + "id": "40252", + "name": "Brando", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.76667000", + "longitude": "9.45000000" + }, + { + "id": "40470", + "name": "Calenzana", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.50855000", + "longitude": "8.85538000" + }, + { + "id": "40479", + "name": "Calvi", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.56604000", + "longitude": "8.75713000" + }, + { + "id": "40543", + "name": "Cargèse", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.13629000", + "longitude": "8.59586000" + }, + { + "id": "40611", + "name": "Cauro", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.91756000", + "longitude": "8.91480000" + }, + { + "id": "40657", + "name": "Cervione", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.32835000", + "longitude": "9.49343000" + }, + { + "id": "41205", + "name": "Corte", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.30956000", + "longitude": "9.14917000" + }, + { + "id": "41384", + "name": "Cuttoli-Corticchiato", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.98333000", + "longitude": "8.91667000" + }, + { + "id": "41625", + "name": "Département de la Corse-du-Sud", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.91667000", + "longitude": "9.16667000" + }, + { + "id": "41628", + "name": "Département de la Haute-Corse", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.41667000", + "longitude": "9.16667000" + }, + { + "id": "41818", + "name": "Figari", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.48792000", + "longitude": "9.13013000" + }, + { + "id": "41994", + "name": "Furiani", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.65847000", + "longitude": "9.41446000" + }, + { + "id": "42084", + "name": "Ghisonaccia", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.01582000", + "longitude": "9.40507000" + }, + { + "id": "42227", + "name": "Grosseto-Prugna", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.87097000", + "longitude": "8.96403000" + }, + { + "id": "42629", + "name": "L'Île-Rousse", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.63371000", + "longitude": "8.93764000" + }, + { + "id": "43502", + "name": "Linguizzetta", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.26384000", + "longitude": "9.47297000" + }, + { + "id": "43631", + "name": "Lucciana", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.54609000", + "longitude": "9.41865000" + }, + { + "id": "43650", + "name": "Lumio", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.57894000", + "longitude": "8.83373000" + }, + { + "id": "44252", + "name": "Monticello", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.61705000", + "longitude": "8.95477000" + }, + { + "id": "44363", + "name": "Morosaglia", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.43511000", + "longitude": "9.30009000" + }, + { + "id": "44732", + "name": "Oletta", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.62991000", + "longitude": "9.35431000" + }, + { + "id": "44736", + "name": "Olmeto", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.71724000", + "longitude": "8.91783000" + }, + { + "id": "44893", + "name": "Penta-di-Casinca", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.46579000", + "longitude": "9.45884000" + }, + { + "id": "44896", + "name": "Peri", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.00345000", + "longitude": "8.92066000" + }, + { + "id": "44966", + "name": "Pietranera", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.72338000", + "longitude": "9.45621000" + }, + { + "id": "44967", + "name": "Pietrosella", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.83576000", + "longitude": "8.84573000" + }, + { + "id": "45245", + "name": "Porto-Vecchio", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.59101000", + "longitude": "9.27947000" + }, + { + "id": "45294", + "name": "Propriano", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.67590000", + "longitude": "8.90412000" + }, + { + "id": "45300", + "name": "Prunelli-di-Fiumorbo", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.01047000", + "longitude": "9.32473000" + }, + { + "id": "45932", + "name": "Saint-Florent", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.68150000", + "longitude": "9.30396000" + }, + { + "id": "46778", + "name": "San-Martino-di-Lota", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.73163000", + "longitude": "9.43966000" + }, + { + "id": "46779", + "name": "San-Nicolao", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.36993000", + "longitude": "9.51443000" + }, + { + "id": "46795", + "name": "Santa-Lucia-di-Moriani", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.38212000", + "longitude": "9.52242000" + }, + { + "id": "46796", + "name": "Santa-Maria-di-Lota", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.74783000", + "longitude": "9.43202000" + }, + { + "id": "46807", + "name": "Sari-Solenzara", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.83519000", + "longitude": "9.37470000" + }, + { + "id": "46817", + "name": "Sarrola", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.02828000", + "longitude": "8.84241000" + }, + { + "id": "46823", + "name": "Sartène", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.61667000", + "longitude": "8.98333000" + }, + { + "id": "47007", + "name": "Sisco", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.80000000", + "longitude": "9.43333000" + }, + { + "id": "47588", + "name": "Ventiseri", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.94356000", + "longitude": "9.33342000" + }, + { + "id": "47647", + "name": "Vescovato", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "42.49293000", + "longitude": "9.43934000" + }, + { + "id": "48028", + "name": "Zonza", + "state_id": 4806, + "state_code": "COR", + "country_id": 75, + "country_code": "FR", + "latitude": "41.74934000", + "longitude": "9.17082000" + }, + { + "id": "39245", + "name": "Abreschviller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63698000", + "longitude": "7.09607000" + }, + { + "id": "39249", + "name": "Achenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58070000", + "longitude": "7.62803000" + }, + { + "id": "39269", + "name": "Aiglemont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.78031000", + "longitude": "4.76483000" + }, + { + "id": "39293", + "name": "Aix-en-Othe", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22391000", + "longitude": "3.73425000" + }, + { + "id": "39312", + "name": "Algolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00629000", + "longitude": "7.55945000" + }, + { + "id": "39313", + "name": "Algrange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36276000", + "longitude": "6.05094000" + }, + { + "id": "39336", + "name": "Alsting", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18175000", + "longitude": "6.99255000" + }, + { + "id": "39338", + "name": "Altkirch", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62417000", + "longitude": "7.23954000" + }, + { + "id": "39339", + "name": "Altorf", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52166000", + "longitude": "7.52787000" + }, + { + "id": "39346", + "name": "Amanvillers", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16784000", + "longitude": "6.04367000" + }, + { + "id": "39366", + "name": "Ammerschwihr", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12548000", + "longitude": "7.28282000" + }, + { + "id": "39367", + "name": "Amnéville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25671000", + "longitude": "6.13414000" + }, + { + "id": "39372", + "name": "Ancerville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63574000", + "longitude": "5.02091000" + }, + { + "id": "39374", + "name": "Ancy-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05689000", + "longitude": "6.05775000" + }, + { + "id": "39384", + "name": "Andlau", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38607000", + "longitude": "7.41697000" + }, + { + "id": "39385", + "name": "Andolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06179000", + "longitude": "7.41637000" + }, + { + "id": "39400", + "name": "Angevillers", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38815000", + "longitude": "6.04430000" + }, + { + "id": "39426", + "name": "Anould", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18526000", + "longitude": "6.94597000" + }, + { + "id": "39461", + "name": "Arches", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11856000", + "longitude": "6.52806000" + }, + { + "id": "39462", + "name": "Archettes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12320000", + "longitude": "6.53723000" + }, + { + "id": "39464", + "name": "Arcis-sur-Aube", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53387000", + "longitude": "4.14085000" + }, + { + "id": "39466", + "name": "Ardennes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63202000", + "longitude": "4.65369000" + }, + { + "id": "39473", + "name": "Argancy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19543000", + "longitude": "6.20157000" + }, + { + "id": "39515", + "name": "Ars-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07791000", + "longitude": "6.07420000" + }, + { + "id": "39517", + "name": "Art-sur-Meurthe", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65750000", + "longitude": "6.26708000" + }, + { + "id": "39545", + "name": "Aspach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64234000", + "longitude": "7.23353000" + }, + { + "id": "39546", + "name": "Aspach-le-Bas", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76135000", + "longitude": "7.15104000" + }, + { + "id": "39547", + "name": "Aspach-le-Haut", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.77653000", + "longitude": "7.13145000" + }, + { + "id": "39564", + "name": "Attigny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47846000", + "longitude": "4.57803000" + }, + { + "id": "39587", + "name": "Auboué", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21198000", + "longitude": "5.97663000" + }, + { + "id": "39600", + "name": "Audun-le-Roman", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36977000", + "longitude": "5.89545000" + }, + { + "id": "39601", + "name": "Audun-le-Tiche", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47217000", + "longitude": "5.95550000" + }, + { + "id": "39605", + "name": "Augny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06110000", + "longitude": "6.11820000" + }, + { + "id": "39616", + "name": "Aumetz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41787000", + "longitude": "5.94418000" + }, + { + "id": "39674", + "name": "Avize", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97352000", + "longitude": "4.01438000" + }, + { + "id": "39683", + "name": "Ay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05457000", + "longitude": "4.00343000" + }, + { + "id": "39684", + "name": "Ay-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24326000", + "longitude": "6.20627000" + }, + { + "id": "39686", + "name": "Aydoilles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21026000", + "longitude": "6.57389000" + }, + { + "id": "48128", + "name": "Œting", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17291000", + "longitude": "6.91472000" + }, + { + "id": "48052", + "name": "Écrouves", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67986000", + "longitude": "5.84267000" + }, + { + "id": "48065", + "name": "Éloyes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09793000", + "longitude": "6.60653000" + }, + { + "id": "48073", + "name": "Épernay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04000000", + "longitude": "3.95922000" + }, + { + "id": "48078", + "name": "Épinal", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18324000", + "longitude": "6.45304000" + }, + { + "id": "48092", + "name": "Étain", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21259000", + "longitude": "5.64022000" + }, + { + "id": "48104", + "name": "Étival-Clairefontaine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36519000", + "longitude": "6.86118000" + }, + { + "id": "39699", + "name": "Baccarat", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44984000", + "longitude": "6.73946000" + }, + { + "id": "39704", + "name": "Badonviller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50116000", + "longitude": "6.89218000" + }, + { + "id": "39735", + "name": "Bains-les-Bains", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00113000", + "longitude": "6.26492000" + }, + { + "id": "39737", + "name": "Bainville-sur-Madon", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58725000", + "longitude": "6.09580000" + }, + { + "id": "39743", + "name": "Balan", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.68881000", + "longitude": "4.96478000" + }, + { + "id": "39749", + "name": "Baldersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80136000", + "longitude": "7.38078000" + }, + { + "id": "39758", + "name": "Ban-de-Laveline", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24498000", + "longitude": "7.06593000" + }, + { + "id": "39761", + "name": "Bantzenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82452000", + "longitude": "7.51445000" + }, + { + "id": "39765", + "name": "Bar-le-Duc", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77275000", + "longitude": "5.16108000" + }, + { + "id": "39766", + "name": "Bar-sur-Aube", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23315000", + "longitude": "4.70640000" + }, + { + "id": "39767", + "name": "Bar-sur-Seine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11295000", + "longitude": "4.37656000" + }, + { + "id": "39790", + "name": "Barr", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40755000", + "longitude": "7.44873000" + }, + { + "id": "39794", + "name": "Bartenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63364000", + "longitude": "7.47951000" + }, + { + "id": "39795", + "name": "Bas-Rhin", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65693000", + "longitude": "7.56346000" + }, + { + "id": "39799", + "name": "Basse-Ham", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38626000", + "longitude": "6.24180000" + }, + { + "id": "39805", + "name": "Batilly", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17372000", + "longitude": "5.96869000" + }, + { + "id": "39806", + "name": "Battenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81999000", + "longitude": "7.38170000" + }, + { + "id": "39821", + "name": "Bayard-sur-Marne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55410000", + "longitude": "5.07680000" + }, + { + "id": "39823", + "name": "Bayon", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47425000", + "longitude": "6.31631000" + }, + { + "id": "39826", + "name": "Bazancourt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36562000", + "longitude": "4.17051000" + }, + { + "id": "39828", + "name": "Bazeilles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.67650000", + "longitude": "4.97752000" + }, + { + "id": "40424", + "name": "Béning-lès-Saint-Avold", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13504000", + "longitude": "6.83902000" + }, + { + "id": "40431", + "name": "Bétheny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28498000", + "longitude": "4.05495000" + }, + { + "id": "40439", + "name": "Bœrsch", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47656000", + "longitude": "7.43998000" + }, + { + "id": "39899", + "name": "Behren-lès-Forbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16949000", + "longitude": "6.93933000" + }, + { + "id": "39923", + "name": "Belleville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81817000", + "longitude": "6.10294000" + }, + { + "id": "39925", + "name": "Belleville-sur-Meuse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17863000", + "longitude": "5.37190000" + }, + { + "id": "39939", + "name": "Benfeld", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37062000", + "longitude": "7.59370000" + }, + { + "id": "39941", + "name": "Bennwihr", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14456000", + "longitude": "7.32445000" + }, + { + "id": "39946", + "name": "Bergheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20540000", + "longitude": "7.36299000" + }, + { + "id": "39947", + "name": "Bergholtz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91670000", + "longitude": "7.24651000" + }, + { + "id": "39950", + "name": "Bernardswiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45035000", + "longitude": "7.46238000" + }, + { + "id": "39963", + "name": "Berrwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84984000", + "longitude": "7.21922000" + }, + { + "id": "39965", + "name": "Berstett", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67900000", + "longitude": "7.65721000" + }, + { + "id": "39969", + "name": "Bertrange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31368000", + "longitude": "6.19208000" + }, + { + "id": "39985", + "name": "Betschdorf", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89825000", + "longitude": "7.90196000" + }, + { + "id": "39986", + "name": "Bettancourt-la-Ferrée", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64898000", + "longitude": "4.96971000" + }, + { + "id": "40001", + "name": "Bezannes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22339000", + "longitude": "3.98892000" + }, + { + "id": "40011", + "name": "Bienville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57582000", + "longitude": "5.04579000" + }, + { + "id": "40013", + "name": "Biesheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04118000", + "longitude": "7.54474000" + }, + { + "id": "40014", + "name": "Biesles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08597000", + "longitude": "5.29409000" + }, + { + "id": "40027", + "name": "Bining", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03729000", + "longitude": "7.25273000" + }, + { + "id": "40031", + "name": "Bischheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61612000", + "longitude": "7.75343000" + }, + { + "id": "40032", + "name": "Bischoffsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48703000", + "longitude": "7.48967000" + }, + { + "id": "40033", + "name": "Bischwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76826000", + "longitude": "7.85406000" + }, + { + "id": "40034", + "name": "Bitche", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05232000", + "longitude": "7.42992000" + }, + { + "id": "40035", + "name": "Bitschwiller-lès-Thann", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82969000", + "longitude": "7.07911000" + }, + { + "id": "40043", + "name": "Blaesheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50648000", + "longitude": "7.60923000" + }, + { + "id": "40045", + "name": "Blagny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.62167000", + "longitude": "5.19194000" + }, + { + "id": "40073", + "name": "Blénod-lès-Pont-à-Mousson", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88487000", + "longitude": "6.04844000" + }, + { + "id": "40074", + "name": "Blénod-lès-Toul", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59882000", + "longitude": "5.83685000" + }, + { + "id": "40066", + "name": "Bliesbruck", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11543000", + "longitude": "7.18112000" + }, + { + "id": "40068", + "name": "Blodelsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88538000", + "longitude": "7.53635000" + }, + { + "id": "40071", + "name": "Blotzheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60260000", + "longitude": "7.49654000" + }, + { + "id": "40104", + "name": "Bollwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85832000", + "longitude": "7.26179000" + }, + { + "id": "40106", + "name": "Bologne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20005000", + "longitude": "5.14209000" + }, + { + "id": "40133", + "name": "Boofzheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33186000", + "longitude": "7.68071000" + }, + { + "id": "40158", + "name": "Bouilly", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19674000", + "longitude": "4.00011000" + }, + { + "id": "40162", + "name": "Boulange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38229000", + "longitude": "5.95000000" + }, + { + "id": "40163", + "name": "Boulay-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18333000", + "longitude": "6.50000000" + }, + { + "id": "40169", + "name": "Bouligny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29189000", + "longitude": "5.74248000" + }, + { + "id": "40176", + "name": "Boult-sur-Suippe", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37149000", + "longitude": "4.14632000" + }, + { + "id": "40180", + "name": "Bourbonne-les-Bains", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95305000", + "longitude": "5.74801000" + }, + { + "id": "40203", + "name": "Bourgogne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34962000", + "longitude": "4.07111000" + }, + { + "id": "40218", + "name": "Bousse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27786000", + "longitude": "6.19672000" + }, + { + "id": "40231", + "name": "Bouxières-aux-Chênes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77215000", + "longitude": "6.26152000" + }, + { + "id": "40232", + "name": "Bouxières-aux-Dames", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75441000", + "longitude": "6.16294000" + }, + { + "id": "40233", + "name": "Bouxwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82495000", + "longitude": "7.48117000" + }, + { + "id": "40236", + "name": "Bouzonville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29188000", + "longitude": "6.53386000" + }, + { + "id": "40362", + "name": "Bréviandes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25693000", + "longitude": "4.09531000" + }, + { + "id": "40298", + "name": "Breuschwickersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58007000", + "longitude": "7.60159000" + }, + { + "id": "40308", + "name": "Brienne-le-Château", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39319000", + "longitude": "4.52637000" + }, + { + "id": "40311", + "name": "Briey", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24920000", + "longitude": "5.93975000" + }, + { + "id": "40345", + "name": "Brumath", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73398000", + "longitude": "7.71095000" + }, + { + "id": "40347", + "name": "Brunstatt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72131000", + "longitude": "7.32009000" + }, + { + "id": "40348", + "name": "Bruyères", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20709000", + "longitude": "6.71845000" + }, + { + "id": "40371", + "name": "Buchères", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23508000", + "longitude": "4.11310000" + }, + { + "id": "40377", + "name": "Buhl", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92806000", + "longitude": "7.18719000" + }, + { + "id": "40380", + "name": "Bulgnéville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20694000", + "longitude": "5.83430000" + }, + { + "id": "40389", + "name": "Burnhaupt-le-Bas", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71764000", + "longitude": "7.16148000" + }, + { + "id": "40390", + "name": "Burnhaupt-le-Haut", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73162000", + "longitude": "7.14437000" + }, + { + "id": "40396", + "name": "Bussang", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88449000", + "longitude": "6.85272000" + }, + { + "id": "40545", + "name": "Carignan", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63159000", + "longitude": "5.16796000" + }, + { + "id": "40548", + "name": "Carling", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16635000", + "longitude": "6.71563000" + }, + { + "id": "40565", + "name": "Carspach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61608000", + "longitude": "7.21018000" + }, + { + "id": "40599", + "name": "Cattenom", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40627000", + "longitude": "6.24297000" + }, + { + "id": "40650", + "name": "Cernay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80970000", + "longitude": "7.17699000" + }, + { + "id": "40652", + "name": "Cernay-lès-Reims", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26375000", + "longitude": "4.10216000" + }, + { + "id": "40687", + "name": "Chalampé", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82019000", + "longitude": "7.54113000" + }, + { + "id": "40690", + "name": "Chaligny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62422000", + "longitude": "6.08262000" + }, + { + "id": "40691", + "name": "Chalindrey", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80308000", + "longitude": "5.42797000" + }, + { + "id": "40704", + "name": "Chamarandes-Choignes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08333000", + "longitude": "5.15000000" + }, + { + "id": "40734", + "name": "Champenoux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74257000", + "longitude": "6.34830000" + }, + { + "id": "40740", + "name": "Champigneulles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73404000", + "longitude": "6.16181000" + }, + { + "id": "40759", + "name": "Chancenay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67001000", + "longitude": "4.98715000" + }, + { + "id": "40768", + "name": "Chanteheux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59722000", + "longitude": "6.52783000" + }, + { + "id": "40777", + "name": "Chantraine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17157000", + "longitude": "6.43538000" + }, + { + "id": "40780", + "name": "Chaource", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05915000", + "longitude": "4.13738000" + }, + { + "id": "40802", + "name": "Charleville-Mézières", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.76850000", + "longitude": "4.72487000" + }, + { + "id": "40806", + "name": "Charmes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37220000", + "longitude": "6.29117000" + }, + { + "id": "40843", + "name": "Chaumont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11121000", + "longitude": "5.14134000" + }, + { + "id": "40860", + "name": "Chavelot", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23459000", + "longitude": "6.43809000" + }, + { + "id": "40862", + "name": "Chavigny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62899000", + "longitude": "6.12317000" + }, + { + "id": "40933", + "name": "Châlons-en-Champagne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95393000", + "longitude": "4.36724000" + }, + { + "id": "40942", + "name": "Château-Porcien", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52740000", + "longitude": "4.24533000" + }, + { + "id": "40945", + "name": "Château-Salins", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81885000", + "longitude": "6.51455000" + }, + { + "id": "40979", + "name": "Châteauvillain", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03655000", + "longitude": "4.91823000" + }, + { + "id": "40982", + "name": "Châtel-Saint-Germain", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12255000", + "longitude": "6.08006000" + }, + { + "id": "40983", + "name": "Châtel-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31430000", + "longitude": "6.39403000" + }, + { + "id": "40988", + "name": "Châtenois", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27201000", + "longitude": "7.40109000" + }, + { + "id": "41003", + "name": "Châtillon-sur-Marne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10048000", + "longitude": "3.76023000" + }, + { + "id": "40873", + "name": "Cheniménil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13880000", + "longitude": "6.60346000" + }, + { + "id": "40897", + "name": "Chevillon", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52869000", + "longitude": "5.13086000" + }, + { + "id": "41026", + "name": "Cirey-sur-Vezouze", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58093000", + "longitude": "6.94573000" + }, + { + "id": "41050", + "name": "Clermont-en-Argonne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10711000", + "longitude": "5.07002000" + }, + { + "id": "41060", + "name": "Clouange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26240000", + "longitude": "6.09723000" + }, + { + "id": "41077", + "name": "Cocheren", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14384000", + "longitude": "6.85649000" + }, + { + "id": "41096", + "name": "Colmar", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08078000", + "longitude": "7.35584000" + }, + { + "id": "41101", + "name": "Colombey-les-Belles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52920000", + "longitude": "5.89451000" + }, + { + "id": "41121", + "name": "Commercy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76128000", + "longitude": "5.59067000" + }, + { + "id": "41123", + "name": "Compertrix", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94179000", + "longitude": "4.34631000" + }, + { + "id": "41143", + "name": "Conflans-en-Jarnisy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16725000", + "longitude": "5.85515000" + }, + { + "id": "41149", + "name": "Connantre", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72657000", + "longitude": "3.92403000" + }, + { + "id": "41157", + "name": "Contrexéville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18424000", + "longitude": "5.89572000" + }, + { + "id": "41171", + "name": "Corcieux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17236000", + "longitude": "6.88148000" + }, + { + "id": "41184", + "name": "Cormicy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37071000", + "longitude": "3.89595000" + }, + { + "id": "41185", + "name": "Cormontreuil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21667000", + "longitude": "4.05000000" + }, + { + "id": "41195", + "name": "Cornimont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95998000", + "longitude": "6.83038000" + }, + { + "id": "41196", + "name": "Corny-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03557000", + "longitude": "6.06084000" + }, + { + "id": "41209", + "name": "Cosnes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51964000", + "longitude": "5.71210000" + }, + { + "id": "41242", + "name": "Courcelles-Chaussy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10940000", + "longitude": "6.40153000" + }, + { + "id": "41250", + "name": "Courcy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32361000", + "longitude": "4.00257000" + }, + { + "id": "41270", + "name": "Courtisols", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98670000", + "longitude": "4.51700000" + }, + { + "id": "41345", + "name": "Créhange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05897000", + "longitude": "6.58178000" + }, + { + "id": "41305", + "name": "Creney-près-Troyes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33333000", + "longitude": "4.13333000" + }, + { + "id": "41312", + "name": "Creutzwald", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20531000", + "longitude": "6.69668000" + }, + { + "id": "41338", + "name": "Crusnes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.43406000", + "longitude": "5.91557000" + }, + { + "id": "41382", + "name": "Custines", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79127000", + "longitude": "6.14461000" + }, + { + "id": "41401", + "name": "Dabo", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65373000", + "longitude": "7.23611000" + }, + { + "id": "41402", + "name": "Dachstein", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56127000", + "longitude": "7.53233000" + }, + { + "id": "41409", + "name": "Dambach-la-Ville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32379000", + "longitude": "7.42547000" + }, + { + "id": "41410", + "name": "Damelevières", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55930000", + "longitude": "6.38453000" + }, + { + "id": "41411", + "name": "Damery", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07238000", + "longitude": "3.88036000" + }, + { + "id": "41428", + "name": "Dannemarie", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63034000", + "longitude": "7.11903000" + }, + { + "id": "41434", + "name": "Darney", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08660000", + "longitude": "6.04917000" + }, + { + "id": "41435", + "name": "Darnieulles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19950000", + "longitude": "6.34929000" + }, + { + "id": "41439", + "name": "Dauendorf", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82987000", + "longitude": "7.65532000" + }, + { + "id": "41613", + "name": "Département de l'Aube", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25000000", + "longitude": "4.08333000" + }, + { + "id": "41456", + "name": "Dessenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97767000", + "longitude": "7.48891000" + }, + { + "id": "41458", + "name": "Dettwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75415000", + "longitude": "7.46633000" + }, + { + "id": "41461", + "name": "Deville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.87893000", + "longitude": "4.70610000" + }, + { + "id": "41462", + "name": "Deyvillers", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20013000", + "longitude": "6.51533000" + }, + { + "id": "41465", + "name": "Didenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71866000", + "longitude": "7.30157000" + }, + { + "id": "41467", + "name": "Diebling", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10966000", + "longitude": "6.93974000" + }, + { + "id": "41468", + "name": "Diemeringen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94013000", + "longitude": "7.18839000" + }, + { + "id": "41470", + "name": "Diesen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17818000", + "longitude": "6.67798000" + }, + { + "id": "41471", + "name": "Dietwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69278000", + "longitude": "7.40300000" + }, + { + "id": "41472", + "name": "Dieue-sur-Meuse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07200000", + "longitude": "5.42248000" + }, + { + "id": "41474", + "name": "Dieulouard", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84137000", + "longitude": "6.06782000" + }, + { + "id": "41475", + "name": "Dieuze", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81263000", + "longitude": "6.71780000" + }, + { + "id": "41484", + "name": "Dingsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63053000", + "longitude": "7.66932000" + }, + { + "id": "41487", + "name": "Dinsheim-sur-Bruche", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54258000", + "longitude": "7.42727000" + }, + { + "id": "41493", + "name": "Distroff", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33295000", + "longitude": "6.26662000" + }, + { + "id": "41498", + "name": "Dizy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06667000", + "longitude": "3.96667000" + }, + { + "id": "41500", + "name": "Docelles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14475000", + "longitude": "6.61289000" + }, + { + "id": "41501", + "name": "Dogneville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22251000", + "longitude": "6.45944000" + }, + { + "id": "41508", + "name": "Dom-le-Mesnil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.69012000", + "longitude": "4.80363000" + }, + { + "id": "41514", + "name": "Dombasle-sur-Meurthe", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61861000", + "longitude": "6.35538000" + }, + { + "id": "41517", + "name": "Domgermain", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64276000", + "longitude": "5.82957000" + }, + { + "id": "41518", + "name": "Dommartin-lès-Remiremont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99902000", + "longitude": "6.64048000" + }, + { + "id": "41519", + "name": "Dommartin-lès-Toul", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66949000", + "longitude": "5.91005000" + }, + { + "id": "41529", + "name": "Donchery", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.69584000", + "longitude": "4.87417000" + }, + { + "id": "41530", + "name": "Doncourt-lès-Conflans", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14250000", + "longitude": "5.93368000" + }, + { + "id": "41540", + "name": "Dorlisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52485000", + "longitude": "7.48624000" + }, + { + "id": "41541", + "name": "Dormans", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07392000", + "longitude": "3.63819000" + }, + { + "id": "41544", + "name": "Dossenheim-sur-Zinsel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80590000", + "longitude": "7.40273000" + }, + { + "id": "41552", + "name": "Doulaincourt-Saucourt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31667000", + "longitude": "5.20000000" + }, + { + "id": "41561", + "name": "Douzy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.67080000", + "longitude": "5.04156000" + }, + { + "id": "41579", + "name": "Drulingen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86804000", + "longitude": "7.18956000" + }, + { + "id": "41581", + "name": "Drusenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76207000", + "longitude": "7.95326000" + }, + { + "id": "41587", + "name": "Dugny-sur-Meuse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10953000", + "longitude": "5.38550000" + }, + { + "id": "41593", + "name": "Duppigheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52866000", + "longitude": "7.59421000" + }, + { + "id": "41595", + "name": "Durrenbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89681000", + "longitude": "7.76769000" + }, + { + "id": "41599", + "name": "Duttlenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52553000", + "longitude": "7.56572000" + }, + { + "id": "41654", + "name": "Ebersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30438000", + "longitude": "7.49903000" + }, + { + "id": "41655", + "name": "Eckbolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58075000", + "longitude": "7.68768000" + }, + { + "id": "41656", + "name": "Eckwersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68167000", + "longitude": "7.69687000" + }, + { + "id": "41660", + "name": "Eguisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04280000", + "longitude": "7.30617000" + }, + { + "id": "41661", + "name": "Einville-au-Jard", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65569000", + "longitude": "6.48447000" + }, + { + "id": "41668", + "name": "Enchenberg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01354000", + "longitude": "7.33868000" + }, + { + "id": "41671", + "name": "Ennery", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22619000", + "longitude": "6.21778000" + }, + { + "id": "41676", + "name": "Ensisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86584000", + "longitude": "7.35052000" + }, + { + "id": "41680", + "name": "Entrange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41300000", + "longitude": "6.10501000" + }, + { + "id": "41683", + "name": "Entzheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53424000", + "longitude": "7.63772000" + }, + { + "id": "41686", + "name": "Epfig", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35933000", + "longitude": "7.46427000" + }, + { + "id": "41697", + "name": "Ernolsheim-Bruche", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56531000", + "longitude": "7.56503000" + }, + { + "id": "41702", + "name": "Erstein", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42373000", + "longitude": "7.66262000" + }, + { + "id": "41703", + "name": "Ervy-le-Châtel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04116000", + "longitude": "3.90988000" + }, + { + "id": "41709", + "name": "Eschau", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48897000", + "longitude": "7.71644000" + }, + { + "id": "41710", + "name": "Eschbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87465000", + "longitude": "7.73609000" + }, + { + "id": "41711", + "name": "Eschentzwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71270000", + "longitude": "7.39773000" + }, + { + "id": "41726", + "name": "Essey-lès-Nancy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70500000", + "longitude": "6.22691000" + }, + { + "id": "41731", + "name": "Esternay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73232000", + "longitude": "3.56159000" + }, + { + "id": "41734", + "name": "Estissac", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26920000", + "longitude": "3.80515000" + }, + { + "id": "41741", + "name": "Etzling", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17943000", + "longitude": "6.95864000" + }, + { + "id": "41743", + "name": "Eulmont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75026000", + "longitude": "6.22731000" + }, + { + "id": "41745", + "name": "Eurville-Bienville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58333000", + "longitude": "5.03333000" + }, + { + "id": "41746", + "name": "Euville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75030000", + "longitude": "5.62603000" + }, + { + "id": "41763", + "name": "Fagnières", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96385000", + "longitude": "4.31692000" + }, + { + "id": "41764", + "name": "Fains-Véel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78333000", + "longitude": "5.13333000" + }, + { + "id": "41766", + "name": "Falck", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22695000", + "longitude": "6.63373000" + }, + { + "id": "41770", + "name": "Fameck", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29895000", + "longitude": "6.10915000" + }, + { + "id": "41777", + "name": "Farébersviller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11898000", + "longitude": "6.86914000" + }, + { + "id": "41776", + "name": "Farschviller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09406000", + "longitude": "6.89517000" + }, + { + "id": "41778", + "name": "Faulquemont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04910000", + "longitude": "6.59732000" + }, + { + "id": "41779", + "name": "Faulx", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79266000", + "longitude": "6.19554000" + }, + { + "id": "41790", + "name": "Fayl-Billot", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.78199000", + "longitude": "5.59917000" + }, + { + "id": "41997", + "name": "Fère-Champenoise", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75431000", + "longitude": "3.99069000" + }, + { + "id": "41791", + "name": "Fegersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49016000", + "longitude": "7.68107000" + }, + { + "id": "41795", + "name": "Fellering", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89659000", + "longitude": "6.98552000" + }, + { + "id": "41804", + "name": "Ferrette", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49436000", + "longitude": "7.31372000" + }, + { + "id": "41808", + "name": "Fessenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91565000", + "longitude": "7.53499000" + }, + { + "id": "41825", + "name": "Fismes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30773000", + "longitude": "3.68607000" + }, + { + "id": "41831", + "name": "Flavigny-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.56567000", + "longitude": "6.18878000" + }, + { + "id": "41834", + "name": "Flaxlanden", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69547000", + "longitude": "7.31484000" + }, + { + "id": "41865", + "name": "Fléville-devant-Nancy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62495000", + "longitude": "6.20325000" + }, + { + "id": "41846", + "name": "Fleury", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04181000", + "longitude": "6.19329000" + }, + { + "id": "41856", + "name": "Flize", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.69875000", + "longitude": "4.77171000" + }, + { + "id": "41858", + "name": "Floing", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.72216000", + "longitude": "4.92947000" + }, + { + "id": "41861", + "name": "Florange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32373000", + "longitude": "6.12120000" + }, + { + "id": "41869", + "name": "Folkling", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14756000", + "longitude": "6.89482000" + }, + { + "id": "41871", + "name": "Folschviller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07732000", + "longitude": "6.68358000" + }, + { + "id": "41906", + "name": "Fontoy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35597000", + "longitude": "5.99250000" + }, + { + "id": "41908", + "name": "Forbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18848000", + "longitude": "6.89255000" + }, + { + "id": "41918", + "name": "Fortschwihr", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08825000", + "longitude": "7.45050000" + }, + { + "id": "41924", + "name": "Foug", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68385000", + "longitude": "5.78735000" + }, + { + "id": "41945", + "name": "Fraize", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18660000", + "longitude": "6.99787000" + }, + { + "id": "41986", + "name": "Fréland", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17215000", + "longitude": "7.19167000" + }, + { + "id": "41961", + "name": "Fresse-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87589000", + "longitude": "6.78589000" + }, + { + "id": "41964", + "name": "Freyming-Merlebach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15000000", + "longitude": "6.78333000" + }, + { + "id": "41965", + "name": "Frignicourt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69966000", + "longitude": "4.59153000" + }, + { + "id": "41970", + "name": "Fromelennes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "50.12333000", + "longitude": "4.85952000" + }, + { + "id": "41971", + "name": "Froncles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29756000", + "longitude": "5.14586000" + }, + { + "id": "41980", + "name": "Frouard", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75994000", + "longitude": "6.13036000" + }, + { + "id": "41991", + "name": "Fumay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.99132000", + "longitude": "4.70771000" + }, + { + "id": "41993", + "name": "Furdenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61129000", + "longitude": "7.56100000" + }, + { + "id": "42026", + "name": "Gambsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69209000", + "longitude": "7.88286000" + }, + { + "id": "42028", + "name": "Gandrange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27133000", + "longitude": "6.12536000" + }, + { + "id": "42299", + "name": "Gérardmer", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07346000", + "longitude": "6.87787000" + }, + { + "id": "42302", + "name": "Gœrsdorf", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95000000", + "longitude": "7.76667000" + }, + { + "id": "42058", + "name": "Geispolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51603000", + "longitude": "7.64825000" + }, + { + "id": "42072", + "name": "Gerbéviller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49618000", + "longitude": "6.51075000" + }, + { + "id": "42076", + "name": "Gerstheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38215000", + "longitude": "7.70395000" + }, + { + "id": "42078", + "name": "Gespunsart", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.82143000", + "longitude": "4.82926000" + }, + { + "id": "42081", + "name": "Geudertheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72415000", + "longitude": "7.75188000" + }, + { + "id": "42100", + "name": "Giraumont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17076000", + "longitude": "5.91448000" + }, + { + "id": "42107", + "name": "Givet", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "50.13796000", + "longitude": "4.82545000" + }, + { + "id": "42117", + "name": "Goetzenbruck", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97778000", + "longitude": "7.37960000" + }, + { + "id": "42119", + "name": "Golbey", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19764000", + "longitude": "6.43966000" + }, + { + "id": "42126", + "name": "Gondrecourt-le-Château", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51366000", + "longitude": "5.51058000" + }, + { + "id": "42127", + "name": "Gondreville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69373000", + "longitude": "5.96467000" + }, + { + "id": "42135", + "name": "Gorcy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.53487000", + "longitude": "5.68487000" + }, + { + "id": "42139", + "name": "Gorze", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05236000", + "longitude": "6.00072000" + }, + { + "id": "42183", + "name": "Granges-sur-Vologne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14517000", + "longitude": "6.79095000" + }, + { + "id": "42199", + "name": "Grendelbruch", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49272000", + "longitude": "7.32239000" + }, + { + "id": "42201", + "name": "Gresswiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53542000", + "longitude": "7.43251000" + }, + { + "id": "42205", + "name": "Gries", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75370000", + "longitude": "7.81403000" + }, + { + "id": "42206", + "name": "Griesheim-près-Molsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50296000", + "longitude": "7.53027000" + }, + { + "id": "42207", + "name": "Griesheim-sur-Souffel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63591000", + "longitude": "7.66923000" + }, + { + "id": "42223", + "name": "Gros-Réderching", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06835000", + "longitude": "7.21914000" + }, + { + "id": "42224", + "name": "Grosbliederstroff", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15808000", + "longitude": "7.02413000" + }, + { + "id": "42279", + "name": "Guémar", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18869000", + "longitude": "7.39706000" + }, + { + "id": "42282", + "name": "Guénange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29945000", + "longitude": "6.20535000" + }, + { + "id": "42239", + "name": "Guebwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91667000", + "longitude": "7.20000000" + }, + { + "id": "42249", + "name": "Gueux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25048000", + "longitude": "3.91024000" + }, + { + "id": "42250", + "name": "Guewenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75283000", + "longitude": "7.09253000" + }, + { + "id": "42273", + "name": "Gumbrechtshoffen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90580000", + "longitude": "7.62915000" + }, + { + "id": "42274", + "name": "Gundershoffen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90648000", + "longitude": "7.66096000" + }, + { + "id": "42305", + "name": "Habsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72975000", + "longitude": "7.41801000" + }, + { + "id": "42306", + "name": "Hadol", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08983000", + "longitude": "6.47662000" + }, + { + "id": "42307", + "name": "Hagenthal-le-Bas", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52497000", + "longitude": "7.47783000" + }, + { + "id": "42309", + "name": "Hagondange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24879000", + "longitude": "6.16374000" + }, + { + "id": "42310", + "name": "Haguenau", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81557000", + "longitude": "7.79051000" + }, + { + "id": "42318", + "name": "Ham-sous-Varsberg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18014000", + "longitude": "6.64702000" + }, + { + "id": "42319", + "name": "Hambach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05942000", + "longitude": "7.03530000" + }, + { + "id": "42323", + "name": "Hangenbieten", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55985000", + "longitude": "7.61464000" + }, + { + "id": "42329", + "name": "Hargarten-aux-Mines", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22436000", + "longitude": "6.61459000" + }, + { + "id": "42335", + "name": "Hatten", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90123000", + "longitude": "7.97968000" + }, + { + "id": "42337", + "name": "Haucourt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48982000", + "longitude": "5.80361000" + }, + { + "id": "42340", + "name": "Haut-Rhin", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87603000", + "longitude": "7.27190000" + }, + { + "id": "42344", + "name": "Haute-Marne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12019000", + "longitude": "5.24038000" + }, + { + "id": "42360", + "name": "Hayange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32881000", + "longitude": "6.06278000" + }, + { + "id": "42361", + "name": "Haybes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "50.00458000", + "longitude": "4.70496000" + }, + { + "id": "42450", + "name": "Hégenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56299000", + "longitude": "7.52401000" + }, + { + "id": "42465", + "name": "Hésingue", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.57818000", + "longitude": "7.51911000" + }, + { + "id": "42467", + "name": "Hœnheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62224000", + "longitude": "7.75549000" + }, + { + "id": "42468", + "name": "Hœrdt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70000000", + "longitude": "7.78333000" + }, + { + "id": "42363", + "name": "Heillecourt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65049000", + "longitude": "6.19512000" + }, + { + "id": "42364", + "name": "Heimsbrunn", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72669000", + "longitude": "7.22699000" + }, + { + "id": "42374", + "name": "Herbitzheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01541000", + "longitude": "7.08188000" + }, + { + "id": "42381", + "name": "Hermonville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33655000", + "longitude": "3.91011000" + }, + { + "id": "42382", + "name": "Herrlisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73049000", + "longitude": "7.90535000" + }, + { + "id": "42383", + "name": "Herrlisheim-près-Colmar", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01835000", + "longitude": "7.32668000" + }, + { + "id": "42385", + "name": "Herserange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52047000", + "longitude": "5.78994000" + }, + { + "id": "42389", + "name": "Hettange-Grande", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40650000", + "longitude": "6.15233000" + }, + { + "id": "42396", + "name": "Hilsenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28761000", + "longitude": "7.56348000" + }, + { + "id": "42397", + "name": "Hindisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46837000", + "longitude": "7.63859000" + }, + { + "id": "42401", + "name": "Hirsingue", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.58768000", + "longitude": "7.25299000" + }, + { + "id": "42403", + "name": "Hirtzbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59839000", + "longitude": "7.22222000" + }, + { + "id": "42404", + "name": "Hirtzfelden", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91131000", + "longitude": "7.44610000" + }, + { + "id": "42406", + "name": "Hochfelden", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75738000", + "longitude": "7.56769000" + }, + { + "id": "42407", + "name": "Hochstatt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70389000", + "longitude": "7.27650000" + }, + { + "id": "42409", + "name": "Holtzheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55820000", + "longitude": "7.64434000" + }, + { + "id": "42410", + "name": "Holtzwihr", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11288000", + "longitude": "7.42080000" + }, + { + "id": "42411", + "name": "Holving", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01162000", + "longitude": "6.96556000" + }, + { + "id": "42415", + "name": "Homécourt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22071000", + "longitude": "5.99242000" + }, + { + "id": "42414", + "name": "Hombourg-Haut", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12819000", + "longitude": "6.77066000" + }, + { + "id": "42418", + "name": "Horbourg-Wihr", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08106000", + "longitude": "7.39380000" + }, + { + "id": "42425", + "name": "Houdemont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64407000", + "longitude": "6.17579000" + }, + { + "id": "42433", + "name": "Houssen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12579000", + "longitude": "7.37735000" + }, + { + "id": "42441", + "name": "Hundling", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10860000", + "longitude": "6.97989000" + }, + { + "id": "42442", + "name": "Huningue", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60477000", + "longitude": "7.57782000" + }, + { + "id": "42445", + "name": "Husseren-Wesserling", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88351000", + "longitude": "6.98994000" + }, + { + "id": "42446", + "name": "Hussigny-Godbrange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.49437000", + "longitude": "5.86677000" + }, + { + "id": "42447", + "name": "Huttenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35864000", + "longitude": "7.57833000" + }, + { + "id": "42473", + "name": "Igney", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27358000", + "longitude": "6.39664000" + }, + { + "id": "42477", + "name": "Illange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32617000", + "longitude": "6.17953000" + }, + { + "id": "42480", + "name": "Illfurth", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67410000", + "longitude": "7.26607000" + }, + { + "id": "42482", + "name": "Illkirch-Graffenstaden", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52894000", + "longitude": "7.71523000" + }, + { + "id": "42483", + "name": "Illzach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.77420000", + "longitude": "7.35175000" + }, + { + "id": "42487", + "name": "Ingersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09803000", + "longitude": "7.30308000" + }, + { + "id": "42491", + "name": "Ingwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87284000", + "longitude": "7.47980000" + }, + { + "id": "42492", + "name": "Innenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49659000", + "longitude": "7.57439000" + }, + { + "id": "42494", + "name": "Irmstett", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58801000", + "longitude": "7.47837000" + }, + { + "id": "42504", + "name": "Issenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90357000", + "longitude": "7.25235000" + }, + { + "id": "42513", + "name": "Ittenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60508000", + "longitude": "7.59372000" + }, + { + "id": "42534", + "name": "Jarny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15873000", + "longitude": "5.87640000" + }, + { + "id": "42536", + "name": "Jarville-la-Malgrange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66697000", + "longitude": "6.20269000" + }, + { + "id": "42603", + "name": "Jœuf", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23333000", + "longitude": "6.01667000" + }, + { + "id": "42546", + "name": "Jeanménil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33560000", + "longitude": "6.68769000" + }, + { + "id": "42547", + "name": "Jebsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12375000", + "longitude": "7.47578000" + }, + { + "id": "42553", + "name": "Joinville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44363000", + "longitude": "5.14144000" + }, + { + "id": "42557", + "name": "Jonchery-sur-Vesle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28952000", + "longitude": "3.81345000" + }, + { + "id": "42567", + "name": "Joudreville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29145000", + "longitude": "5.77903000" + }, + { + "id": "42573", + "name": "Jouy-aux-Arches", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06148000", + "longitude": "6.07925000" + }, + { + "id": "42604", + "name": "Kaltenhouse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79110000", + "longitude": "7.83217000" + }, + { + "id": "42605", + "name": "Kaysersberg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13803000", + "longitude": "7.26385000" + }, + { + "id": "42623", + "name": "Kédange-sur-Canner", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30887000", + "longitude": "6.33805000" + }, + { + "id": "42624", + "name": "Kœnigsmacker", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40000000", + "longitude": "6.28333000" + }, + { + "id": "42606", + "name": "Kembs", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68948000", + "longitude": "7.50323000" + }, + { + "id": "42607", + "name": "Kerbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16682000", + "longitude": "6.96549000" + }, + { + "id": "42611", + "name": "Kertzfeld", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37990000", + "longitude": "7.56816000" + }, + { + "id": "42613", + "name": "Keskastel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97132000", + "longitude": "7.04412000" + }, + { + "id": "42615", + "name": "Kilstett", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67600000", + "longitude": "7.85471000" + }, + { + "id": "42616", + "name": "Kingersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79100000", + "longitude": "7.32647000" + }, + { + "id": "42617", + "name": "Kintzheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25480000", + "longitude": "7.39491000" + }, + { + "id": "42618", + "name": "Knutange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33895000", + "longitude": "6.03898000" + }, + { + "id": "42619", + "name": "Krautergersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47634000", + "longitude": "7.56718000" + }, + { + "id": "42620", + "name": "Kruth", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93101000", + "longitude": "6.96467000" + }, + { + "id": "42621", + "name": "Kunheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07657000", + "longitude": "7.53489000" + }, + { + "id": "42622", + "name": "Kuntzig", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34731000", + "longitude": "6.23710000" + }, + { + "id": "42653", + "name": "La Bresse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99974000", + "longitude": "6.86499000" + }, + { + "id": "42655", + "name": "La Broque", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47298000", + "longitude": "7.21639000" + }, + { + "id": "42687", + "name": "La Chapelle-Saint-Luc", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31734000", + "longitude": "4.03988000" + }, + { + "id": "42756", + "name": "La Francheville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.72923000", + "longitude": "4.71273000" + }, + { + "id": "42849", + "name": "La Rivière-de-Corps", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28840000", + "longitude": "4.01947000" + }, + { + "id": "42920", + "name": "La Wantzenau", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65786000", + "longitude": "7.83068000" + }, + { + "id": "42921", + "name": "Labaroche", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11076000", + "longitude": "7.19244000" + }, + { + "id": "42938", + "name": "Labry", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17289000", + "longitude": "5.88087000" + }, + { + "id": "42981", + "name": "Lamarche", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06967000", + "longitude": "5.78141000" + }, + { + "id": "42995", + "name": "Lampertheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65149000", + "longitude": "7.69876000" + }, + { + "id": "43010", + "name": "Landres", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32044000", + "longitude": "5.80060000" + }, + { + "id": "43012", + "name": "Landser", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68501000", + "longitude": "7.38998000" + }, + { + "id": "43020", + "name": "Laneuveville-devant-Nancy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65659000", + "longitude": "6.22658000" + }, + { + "id": "43030", + "name": "Langres", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86263000", + "longitude": "5.33308000" + }, + { + "id": "43062", + "name": "Lapoutroie", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15398000", + "longitude": "7.16714000" + }, + { + "id": "43101", + "name": "Lautenbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94055000", + "longitude": "7.15768000" + }, + { + "id": "43102", + "name": "Lautenbachzell", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94124000", + "longitude": "7.14643000" + }, + { + "id": "43103", + "name": "Lauterbourg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97515000", + "longitude": "8.17846000" + }, + { + "id": "43121", + "name": "Laxou", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68372000", + "longitude": "6.14929000" + }, + { + "id": "43122", + "name": "Lay-Saint-Christophe", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74926000", + "longitude": "6.19735000" + }, + { + "id": "43689", + "name": "Lérouville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79261000", + "longitude": "5.54063000" + }, + { + "id": "43124", + "name": "Le Ban Saint-Martin", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12250000", + "longitude": "6.15111000" + }, + { + "id": "43240", + "name": "Le Ménil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90477000", + "longitude": "6.78209000" + }, + { + "id": "43231", + "name": "Le Mesnil-sur-Oger", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94708000", + "longitude": "4.02263000" + }, + { + "id": "43303", + "name": "Le Syndicat", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01733000", + "longitude": "6.68436000" + }, + { + "id": "43313", + "name": "Le Thillot", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87941000", + "longitude": "6.76279000" + }, + { + "id": "43315", + "name": "Le Tholy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08229000", + "longitude": "6.74351000" + }, + { + "id": "43345", + "name": "Lembach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00362000", + "longitude": "7.78986000" + }, + { + "id": "43346", + "name": "Lemberg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00199000", + "longitude": "7.37889000" + }, + { + "id": "43388", + "name": "Les Forges", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17747000", + "longitude": "6.38846000" + }, + { + "id": "43394", + "name": "Les Hautes-Rivières", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.88595000", + "longitude": "4.84186000" + }, + { + "id": "43415", + "name": "Les Noës-près-Troyes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30358000", + "longitude": "4.04552000" + }, + { + "id": "43423", + "name": "Les Riceys", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99390000", + "longitude": "4.36986000" + }, + { + "id": "43455", + "name": "Lexy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.49996000", + "longitude": "5.72985000" + }, + { + "id": "43457", + "name": "Leymen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49632000", + "longitude": "7.48517000" + }, + { + "id": "43524", + "name": "Lièpvre", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27166000", + "longitude": "7.28229000" + }, + { + "id": "43473", + "name": "Liffol-le-Grand", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31771000", + "longitude": "5.58125000" + }, + { + "id": "43477", + "name": "Ligny-en-Barrois", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68861000", + "longitude": "5.32543000" + }, + { + "id": "43501", + "name": "Lingolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55752000", + "longitude": "7.68253000" + }, + { + "id": "43506", + "name": "Lipsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49164000", + "longitude": "7.66751000" + }, + { + "id": "43515", + "name": "Liverdun", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74973000", + "longitude": "6.06372000" + }, + { + "id": "43546", + "name": "Loivre", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34619000", + "longitude": "3.97978000" + }, + { + "id": "43556", + "name": "Longeville-en-Barrois", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74242000", + "longitude": "5.20905000" + }, + { + "id": "43557", + "name": "Longeville-lès-Metz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11403000", + "longitude": "6.13612000" + }, + { + "id": "43558", + "name": "Longeville-lès-Saint-Avold", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11689000", + "longitude": "6.64327000" + }, + { + "id": "43562", + "name": "Longlaville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.53443000", + "longitude": "5.80048000" + }, + { + "id": "43573", + "name": "Longuyon", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44181000", + "longitude": "5.60508000" + }, + { + "id": "43575", + "name": "Longwy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52170000", + "longitude": "5.76192000" + }, + { + "id": "43593", + "name": "Lorquin", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67102000", + "longitude": "6.99915000" + }, + { + "id": "43641", + "name": "Ludres", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62032000", + "longitude": "6.16747000" + }, + { + "id": "43648", + "name": "Lumes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.73461000", + "longitude": "4.78616000" + }, + { + "id": "43656", + "name": "Lunéville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59273000", + "longitude": "6.49383000" + }, + { + "id": "43663", + "name": "Lusigny-sur-Barse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25451000", + "longitude": "4.26891000" + }, + { + "id": "43666", + "name": "Lutterbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75976000", + "longitude": "7.28032000" + }, + { + "id": "43667", + "name": "Lutzelhouse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52114000", + "longitude": "7.28700000" + }, + { + "id": "43713", + "name": "Macheren", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10019000", + "longitude": "6.77763000" + }, + { + "id": "43718", + "name": "Magenta", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04899000", + "longitude": "3.96882000" + }, + { + "id": "43731", + "name": "Maidières", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89961000", + "longitude": "6.04005000" + }, + { + "id": "43736", + "name": "Mailly-le-Camp", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66526000", + "longitude": "4.21303000" + }, + { + "id": "43746", + "name": "Maizières-la-Grande-Paroisse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51012000", + "longitude": "3.78573000" + }, + { + "id": "43747", + "name": "Maizières-lès-Metz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21335000", + "longitude": "6.15956000" + }, + { + "id": "43767", + "name": "Malzéville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71235000", + "longitude": "6.18468000" + }, + { + "id": "43772", + "name": "Mancieulles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28231000", + "longitude": "5.89612000" + }, + { + "id": "43779", + "name": "Manom", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37092000", + "longitude": "6.18345000" + }, + { + "id": "43790", + "name": "Marange-Silvange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20822000", + "longitude": "6.10426000" + }, + { + "id": "43793", + "name": "Marbache", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79867000", + "longitude": "6.10600000" + }, + { + "id": "43810", + "name": "Marckolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.16471000", + "longitude": "7.54400000" + }, + { + "id": "43817", + "name": "Mardeuil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05393000", + "longitude": "3.93000000" + }, + { + "id": "43826", + "name": "Mareuil-le-Port", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08179000", + "longitude": "3.76011000" + }, + { + "id": "43828", + "name": "Mareuil-sur-Ay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04581000", + "longitude": "4.03587000" + }, + { + "id": "43842", + "name": "Marigny-le-Châtel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40291000", + "longitude": "3.73588000" + }, + { + "id": "43849", + "name": "Marlenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62134000", + "longitude": "7.49096000" + }, + { + "id": "43854", + "name": "Marly", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06382000", + "longitude": "6.15427000" + }, + { + "id": "43860", + "name": "Marmoutier", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69005000", + "longitude": "7.38195000" + }, + { + "id": "43863", + "name": "Marne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99116000", + "longitude": "4.25966000" + }, + { + "id": "43928", + "name": "Masevaux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.77671000", + "longitude": "6.99683000" + }, + { + "id": "43942", + "name": "Matzenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39450000", + "longitude": "7.62185000" + }, + { + "id": "43967", + "name": "Maxéville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71324000", + "longitude": "6.16658000" + }, + { + "id": "44456", + "name": "Mécleuves", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04429000", + "longitude": "6.27051000" + }, + { + "id": "44481", + "name": "Méréville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59113000", + "longitude": "6.15106000" + }, + { + "id": "44479", + "name": "Méry-sur-Seine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50937000", + "longitude": "3.89129000" + }, + { + "id": "43990", + "name": "Meistratzheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44853000", + "longitude": "7.54350000" + }, + { + "id": "44014", + "name": "Mercy-le-Bas", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38935000", + "longitude": "5.75599000" + }, + { + "id": "44019", + "name": "Merten", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24903000", + "longitude": "6.66465000" + }, + { + "id": "44020", + "name": "Mertzwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86558000", + "longitude": "7.68136000" + }, + { + "id": "44026", + "name": "Merxheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91128000", + "longitude": "7.29492000" + }, + { + "id": "44034", + "name": "Messein", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61180000", + "longitude": "6.13959000" + }, + { + "id": "44041", + "name": "Metz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11911000", + "longitude": "6.17269000" + }, + { + "id": "44042", + "name": "Metzeral", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01217000", + "longitude": "7.07091000" + }, + { + "id": "44043", + "name": "Metzervisse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31476000", + "longitude": "6.28277000" + }, + { + "id": "44051", + "name": "Meurthe-et-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65082000", + "longitude": "6.15660000" + }, + { + "id": "44052", + "name": "Meuse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97176000", + "longitude": "5.36371000" + }, + { + "id": "44054", + "name": "Mexy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50072000", + "longitude": "5.78078000" + }, + { + "id": "44055", + "name": "Meyenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91364000", + "longitude": "7.35560000" + }, + { + "id": "44094", + "name": "Mirecourt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30089000", + "longitude": "6.13282000" + }, + { + "id": "44107", + "name": "Mittelhausbergen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61436000", + "longitude": "7.69009000" + }, + { + "id": "44126", + "name": "Molsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54042000", + "longitude": "7.49199000" + }, + { + "id": "44127", + "name": "Mommenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75782000", + "longitude": "7.64494000" + }, + { + "id": "44135", + "name": "Mondelange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26145000", + "longitude": "6.16503000" + }, + { + "id": "44151", + "name": "Monswiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75511000", + "longitude": "7.37732000" + }, + { + "id": "44157", + "name": "Mont-Saint-Martin", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54363000", + "longitude": "5.78337000" + }, + { + "id": "44188", + "name": "Montauville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90111000", + "longitude": "6.02359000" + }, + { + "id": "44203", + "name": "Montbronn", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99243000", + "longitude": "7.31075000" + }, + { + "id": "44213", + "name": "Montcy-Notre-Dame", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.77507000", + "longitude": "4.74245000" + }, + { + "id": "44250", + "name": "Monthermé", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.88465000", + "longitude": "4.73013000" + }, + { + "id": "44253", + "name": "Montier-en-Der", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47823000", + "longitude": "4.77073000" + }, + { + "id": "44262", + "name": "Montigny-lès-Metz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09560000", + "longitude": "6.15271000" + }, + { + "id": "44290", + "name": "Montmédy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52096000", + "longitude": "5.36835000" + }, + { + "id": "44285", + "name": "Montmirail", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87214000", + "longitude": "3.53797000" + }, + { + "id": "44294", + "name": "Montois-la-Montagne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21680000", + "longitude": "6.02137000" + }, + { + "id": "44337", + "name": "Moosch", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86035000", + "longitude": "7.04870000" + }, + { + "id": "44352", + "name": "Morhange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92359000", + "longitude": "6.64163000" + }, + { + "id": "44366", + "name": "Morsbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16806000", + "longitude": "6.87190000" + }, + { + "id": "44367", + "name": "Morschwiller-le-Bas", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73615000", + "longitude": "7.26954000" + }, + { + "id": "44380", + "name": "Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04177000", + "longitude": "6.58355000" + }, + { + "id": "44396", + "name": "Moulins-lès-Metz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10434000", + "longitude": "6.10832000" + }, + { + "id": "44402", + "name": "Mourmelon-le-Grand", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13256000", + "longitude": "4.36420000" + }, + { + "id": "44412", + "name": "Moutiers", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23302000", + "longitude": "5.96553000" + }, + { + "id": "44419", + "name": "Mouzon", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.60706000", + "longitude": "5.07569000" + }, + { + "id": "44422", + "name": "Moyenmoutier", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37730000", + "longitude": "6.90047000" + }, + { + "id": "44423", + "name": "Moyeuvre-Grande", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25294000", + "longitude": "6.04467000" + }, + { + "id": "44432", + "name": "Muizon", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27499000", + "longitude": "3.89083000" + }, + { + "id": "44433", + "name": "Mulhouse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75205000", + "longitude": "7.32866000" + }, + { + "id": "44435", + "name": "Munchhouse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86930000", + "longitude": "7.45233000" + }, + { + "id": "44436", + "name": "Mundolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64215000", + "longitude": "7.71378000" + }, + { + "id": "44437", + "name": "Munster", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04048000", + "longitude": "7.13933000" + }, + { + "id": "44446", + "name": "Mussig", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22993000", + "longitude": "7.51963000" + }, + { + "id": "44447", + "name": "Mussy-sur-Seine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97791000", + "longitude": "4.49743000" + }, + { + "id": "44448", + "name": "Muttersholtz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26761000", + "longitude": "7.53567000" + }, + { + "id": "44449", + "name": "Mutzig", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53974000", + "longitude": "7.45594000" + }, + { + "id": "44501", + "name": "Nancy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68439000", + "longitude": "6.18496000" + }, + { + "id": "44538", + "name": "Neuf-Brisach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01783000", + "longitude": "7.52795000" + }, + { + "id": "44540", + "name": "Neufchâteau", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35557000", + "longitude": "5.69602000" + }, + { + "id": "44539", + "name": "Neufchef", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31678000", + "longitude": "6.02416000" + }, + { + "id": "44543", + "name": "Neufgrange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07679000", + "longitude": "7.06526000" + }, + { + "id": "44544", + "name": "Neufmanil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.81096000", + "longitude": "4.79673000" + }, + { + "id": "44560", + "name": "Neuves-Maisons", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61811000", + "longitude": "6.10544000" + }, + { + "id": "44582", + "name": "Neuwiller-lès-Saverne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82506000", + "longitude": "7.40513000" + }, + { + "id": "44588", + "name": "Niderviller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71294000", + "longitude": "7.10627000" + }, + { + "id": "44589", + "name": "Niederbronn-les-Bains", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95165000", + "longitude": "7.64271000" + }, + { + "id": "44590", + "name": "Niederhaslach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54264000", + "longitude": "7.34282000" + }, + { + "id": "44591", + "name": "Niederhausbergen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62400000", + "longitude": "7.70210000" + }, + { + "id": "44592", + "name": "Niedernai", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45101000", + "longitude": "7.51635000" + }, + { + "id": "44593", + "name": "Niederschaeffolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77241000", + "longitude": "7.73862000" + }, + { + "id": "44600", + "name": "Nilvange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34224000", + "longitude": "6.04964000" + }, + { + "id": "44610", + "name": "Nogent-le-Bas", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01974000", + "longitude": "5.33323000" + }, + { + "id": "44617", + "name": "Nogent-sur-Seine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49372000", + "longitude": "3.50262000" + }, + { + "id": "44635", + "name": "Nomeny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88977000", + "longitude": "6.22635000" + }, + { + "id": "44636", + "name": "Nomexy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30741000", + "longitude": "6.38572000" + }, + { + "id": "44641", + "name": "Nordhouse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.44833000", + "longitude": "7.67326000" + }, + { + "id": "44644", + "name": "Norroy-lès-Pont-à-Mousson", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93495000", + "longitude": "6.03078000" + }, + { + "id": "44661", + "name": "Nouvion-sur-Meuse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.69949000", + "longitude": "4.79562000" + }, + { + "id": "44664", + "name": "Nouzonville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.81369000", + "longitude": "4.74736000" + }, + { + "id": "44668", + "name": "Novéant-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02366000", + "longitude": "6.04795000" + }, + { + "id": "44702", + "name": "Obenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35975000", + "longitude": "7.69200000" + }, + { + "id": "44703", + "name": "Oberbronn", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94020000", + "longitude": "7.60700000" + }, + { + "id": "44704", + "name": "Oberhaslach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55039000", + "longitude": "7.33213000" + }, + { + "id": "44705", + "name": "Oberhausbergen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60607000", + "longitude": "7.68846000" + }, + { + "id": "44706", + "name": "Oberhergheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96668000", + "longitude": "7.39516000" + }, + { + "id": "44707", + "name": "Oberhoffen-sur-Moder", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78366000", + "longitude": "7.86347000" + }, + { + "id": "44708", + "name": "Obermodern-Zutzendorf", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85000000", + "longitude": "7.53333000" + }, + { + "id": "44709", + "name": "Obernai", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46313000", + "longitude": "7.48100000" + }, + { + "id": "44710", + "name": "Oberschaeffolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58643000", + "longitude": "7.65018000" + }, + { + "id": "44714", + "name": "Oderen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91036000", + "longitude": "6.97463000" + }, + { + "id": "44716", + "name": "Oermingen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00043000", + "longitude": "7.12900000" + }, + { + "id": "44719", + "name": "Offenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63208000", + "longitude": "7.61668000" + }, + { + "id": "44723", + "name": "Ohlungen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81352000", + "longitude": "7.70225000" + }, + { + "id": "44755", + "name": "Orbey", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12651000", + "longitude": "7.16455000" + }, + { + "id": "44793", + "name": "Ostheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15995000", + "longitude": "7.36976000" + }, + { + "id": "44795", + "name": "Ostwald", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54369000", + "longitude": "7.71099000" + }, + { + "id": "44797", + "name": "Ottange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44307000", + "longitude": "6.01988000" + }, + { + "id": "44798", + "name": "Otterswiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72568000", + "longitude": "7.37878000" + }, + { + "id": "44799", + "name": "Ottmarsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.78802000", + "longitude": "7.50777000" + }, + { + "id": "44800", + "name": "Ottrott", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45642000", + "longitude": "7.42556000" + }, + { + "id": "44826", + "name": "Pagny-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98365000", + "longitude": "6.02069000" + }, + { + "id": "44852", + "name": "Pargny-sur-Saulx", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76866000", + "longitude": "4.83758000" + }, + { + "id": "44875", + "name": "Payns", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38255000", + "longitude": "3.97755000" + }, + { + "id": "44889", + "name": "Peltre", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07480000", + "longitude": "6.22721000" + }, + { + "id": "44918", + "name": "Petit-Réderching", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05494000", + "longitude": "7.30640000" + }, + { + "id": "44920", + "name": "Petite-Rosselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21177000", + "longitude": "6.85607000" + }, + { + "id": "44937", + "name": "Pfaffenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98567000", + "longitude": "7.28928000" + }, + { + "id": "44938", + "name": "Pfaffenhoffen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84220000", + "longitude": "7.60714000" + }, + { + "id": "44939", + "name": "Pfastatt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76915000", + "longitude": "7.30295000" + }, + { + "id": "44940", + "name": "Pfetterhouse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50128000", + "longitude": "7.16598000" + }, + { + "id": "44941", + "name": "Pfulgriesheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64403000", + "longitude": "7.67086000" + }, + { + "id": "44943", + "name": "Phalsbourg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76771000", + "longitude": "7.25820000" + }, + { + "id": "44948", + "name": "Piennes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30964000", + "longitude": "5.78009000" + }, + { + "id": "44961", + "name": "Pierrepont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41646000", + "longitude": "5.70908000" + }, + { + "id": "44964", + "name": "Pierrevillers", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22468000", + "longitude": "6.10337000" + }, + { + "id": "44965", + "name": "Pierry", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02024000", + "longitude": "3.94071000" + }, + { + "id": "44971", + "name": "Piney", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36366000", + "longitude": "4.33325000" + }, + { + "id": "44991", + "name": "Plainfaing", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17284000", + "longitude": "7.01539000" + }, + { + "id": "45002", + "name": "Plappeville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13019000", + "longitude": "6.12471000" + }, + { + "id": "45029", + "name": "Plobsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46979000", + "longitude": "7.72442000" + }, + { + "id": "45036", + "name": "Plombières-les-Bains", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96337000", + "longitude": "6.45758000" + }, + { + "id": "45155", + "name": "Pompey", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76876000", + "longitude": "6.12639000" + }, + { + "id": "45197", + "name": "Pont-à-Mousson", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90702000", + "longitude": "6.05635000" + }, + { + "id": "45172", + "name": "Pont-Saint-Vincent", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60519000", + "longitude": "6.09850000" + }, + { + "id": "45173", + "name": "Pont-Sainte-Marie", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31848000", + "longitude": "4.09447000" + }, + { + "id": "45209", + "name": "Pontfaverger-Moronvilliers", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29702000", + "longitude": "4.31657000" + }, + { + "id": "45219", + "name": "Porcelette", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15657000", + "longitude": "6.65513000" + }, + { + "id": "45226", + "name": "Port à Binson", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08202000", + "longitude": "3.75989000" + }, + { + "id": "45243", + "name": "Portieux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34466000", + "longitude": "6.34465000" + }, + { + "id": "45267", + "name": "Pouru-Saint-Remy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.68333000", + "longitude": "5.08333000" + }, + { + "id": "45269", + "name": "Pouxeux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10621000", + "longitude": "6.57299000" + }, + { + "id": "45292", + "name": "Prix-lès-Mézières", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.75549000", + "longitude": "4.69113000" + }, + { + "id": "45327", + "name": "Pulligny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53893000", + "longitude": "6.14426000" + }, + { + "id": "45328", + "name": "Pulnoy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70343000", + "longitude": "6.25765000" + }, + { + "id": "45329", + "name": "Pulversheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83753000", + "longitude": "7.30119000" + }, + { + "id": "45416", + "name": "Raedersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88895000", + "longitude": "7.28222000" + }, + { + "id": "45422", + "name": "Rambervillers", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34240000", + "longitude": "6.63580000" + }, + { + "id": "45424", + "name": "Ramonchamp", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89429000", + "longitude": "6.74171000" + }, + { + "id": "45432", + "name": "Raon-aux-Bois", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05686000", + "longitude": "6.52098000" + }, + { + "id": "45686", + "name": "Réding", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75177000", + "longitude": "7.10747000" + }, + { + "id": "45689", + "name": "Réguisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89563000", + "longitude": "7.35288000" + }, + { + "id": "45691", + "name": "Réhon", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.49878000", + "longitude": "5.75497000" + }, + { + "id": "45693", + "name": "Rémelfing", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08947000", + "longitude": "7.08820000" + }, + { + "id": "45694", + "name": "Rémilly", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01359000", + "longitude": "6.39219000" + }, + { + "id": "45444", + "name": "Reichshoffen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93287000", + "longitude": "7.66561000" + }, + { + "id": "45445", + "name": "Reichstett", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64856000", + "longitude": "7.75455000" + }, + { + "id": "45450", + "name": "Reims", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26526000", + "longitude": "4.02853000" + }, + { + "id": "45451", + "name": "Reiningue", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75215000", + "longitude": "7.23327000" + }, + { + "id": "45452", + "name": "Remiremont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01754000", + "longitude": "6.58820000" + }, + { + "id": "45461", + "name": "Renwez", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.83839000", + "longitude": "4.60334000" + }, + { + "id": "45467", + "name": "Rethel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50979000", + "longitude": "4.36740000" + }, + { + "id": "45469", + "name": "Retonfey", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13648000", + "longitude": "6.30634000" + }, + { + "id": "45477", + "name": "Revigny-sur-Ornain", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83016000", + "longitude": "4.98558000" + }, + { + "id": "45478", + "name": "Revin", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.94039000", + "longitude": "4.63503000" + }, + { + "id": "45483", + "name": "Rhinau", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32017000", + "longitude": "7.70527000" + }, + { + "id": "45490", + "name": "Ribeauvillé", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19510000", + "longitude": "7.31938000" + }, + { + "id": "45493", + "name": "Richardménil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59334000", + "longitude": "6.16917000" + }, + { + "id": "45497", + "name": "Richemont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27723000", + "longitude": "6.16372000" + }, + { + "id": "45498", + "name": "Richwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.77995000", + "longitude": "7.28067000" + }, + { + "id": "45500", + "name": "Riedisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74847000", + "longitude": "7.36716000" + }, + { + "id": "45513", + "name": "Rilly-la-Montagne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16553000", + "longitude": "4.04568000" + }, + { + "id": "45514", + "name": "Rimogne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.84075000", + "longitude": "4.53941000" + }, + { + "id": "45523", + "name": "Riquewihr", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.16672000", + "longitude": "7.29707000" + }, + { + "id": "45534", + "name": "Rixheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74970000", + "longitude": "7.40203000" + }, + { + "id": "45553", + "name": "Rocroi", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.92610000", + "longitude": "4.52220000" + }, + { + "id": "45556", + "name": "Roeschwoog", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82676000", + "longitude": "8.03684000" + }, + { + "id": "45562", + "name": "Rohrbach-lès-Bitche", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04424000", + "longitude": "7.26759000" + }, + { + "id": "45567", + "name": "Rolampont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94951000", + "longitude": "5.28560000" + }, + { + "id": "45575", + "name": "Romanswiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64556000", + "longitude": "7.40762000" + }, + { + "id": "45577", + "name": "Rombas", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24946000", + "longitude": "6.09398000" + }, + { + "id": "45580", + "name": "Romilly-sur-Seine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51085000", + "longitude": "3.72634000" + }, + { + "id": "45600", + "name": "Rosenau", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63688000", + "longitude": "7.53598000" + }, + { + "id": "45601", + "name": "Rosheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49710000", + "longitude": "7.47105000" + }, + { + "id": "45603", + "name": "Rosières-aux-Salines", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59301000", + "longitude": "6.33199000" + }, + { + "id": "45605", + "name": "Rosières-près-Troyes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26182000", + "longitude": "4.07396000" + }, + { + "id": "45610", + "name": "Rosselange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25780000", + "longitude": "6.06890000" + }, + { + "id": "45613", + "name": "Rothau", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45687000", + "longitude": "7.20772000" + }, + { + "id": "45619", + "name": "Rouffach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95786000", + "longitude": "7.30016000" + }, + { + "id": "45626", + "name": "Rouhling", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13888000", + "longitude": "7.00446000" + }, + { + "id": "45655", + "name": "Rozérieulles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10668000", + "longitude": "6.08198000" + }, + { + "id": "45661", + "name": "Ruelisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82405000", + "longitude": "7.35744000" + }, + { + "id": "45671", + "name": "Rumersheim-le-Haut", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85124000", + "longitude": "7.52079000" + }, + { + "id": "45677", + "name": "Rupt-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92271000", + "longitude": "6.66291000" + }, + { + "id": "45678", + "name": "Rurange-lès-Thionville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27599000", + "longitude": "6.23184000" + }, + { + "id": "45679", + "name": "Russ", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49600000", + "longitude": "7.25911000" + }, + { + "id": "45680", + "name": "Russange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48283000", + "longitude": "5.95204000" + }, + { + "id": "45750", + "name": "Saint-Amarin", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87494000", + "longitude": "7.02940000" + }, + { + "id": "45753", + "name": "Saint-Amé", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02388000", + "longitude": "6.66416000" + }, + { + "id": "45765", + "name": "Saint-André-les-Vergers", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28527000", + "longitude": "4.05210000" + }, + { + "id": "45798", + "name": "Saint-Avold", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10465000", + "longitude": "6.70402000" + }, + { + "id": "46657", + "name": "Saint-Étienne-lès-Remiremont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02287000", + "longitude": "6.60868000" + }, + { + "id": "45826", + "name": "Saint-Brice-Courcelles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26667000", + "longitude": "3.98333000" + }, + { + "id": "45913", + "name": "Saint-Dié-des-Vosges", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28333000", + "longitude": "6.95000000" + }, + { + "id": "45912", + "name": "Saint-Dizier", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63773000", + "longitude": "4.94892000" + }, + { + "id": "45994", + "name": "Saint-Germain", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25736000", + "longitude": "4.03264000" + }, + { + "id": "46068", + "name": "Saint-Hippolyte", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23156000", + "longitude": "7.37121000" + }, + { + "id": "46148", + "name": "Saint-Julien-lès-Metz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13288000", + "longitude": "6.20240000" + }, + { + "id": "46147", + "name": "Saint-Julien-les-Villas", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27127000", + "longitude": "4.09901000" + }, + { + "id": "46158", + "name": "Saint-Just-Sauvage", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55478000", + "longitude": "3.78449000" + }, + { + "id": "46172", + "name": "Saint-Laurent", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.76449000", + "longitude": "4.77193000" + }, + { + "id": "46223", + "name": "Saint-Léonard", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.21638000", + "longitude": "6.94355000" + }, + { + "id": "46196", + "name": "Saint-Louis", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59206000", + "longitude": "7.55923000" + }, + { + "id": "46209", + "name": "Saint-Lyé", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36502000", + "longitude": "3.99900000" + }, + { + "id": "46321", + "name": "Saint-Maurice-sur-Moselle", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85889000", + "longitude": "6.82477000" + }, + { + "id": "46323", + "name": "Saint-Max", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.70426000", + "longitude": "6.20686000" + }, + { + "id": "46328", + "name": "Saint-Memmie", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95247000", + "longitude": "4.38409000" + }, + { + "id": "46330", + "name": "Saint-Menges", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.73873000", + "longitude": "4.92628000" + }, + { + "id": "46340", + "name": "Saint-Michel-sur-Meurthe", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.32219000", + "longitude": "6.89024000" + }, + { + "id": "46342", + "name": "Saint-Mihiel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88746000", + "longitude": "5.55099000" + }, + { + "id": "46356", + "name": "Saint-Nabord", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05171000", + "longitude": "6.58248000" + }, + { + "id": "46364", + "name": "Saint-Nicolas-de-Port", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62857000", + "longitude": "6.29668000" + }, + { + "id": "46397", + "name": "Saint-Parres-aux-Tertres", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29780000", + "longitude": "4.11752000" + }, + { + "id": "46461", + "name": "Saint-Pouange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22656000", + "longitude": "4.03979000" + }, + { + "id": "46471", + "name": "Saint-Privat-la-Montagne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18768000", + "longitude": "6.03874000" + }, + { + "id": "46672", + "name": "Sainte-Croix-aux-Mines", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26249000", + "longitude": "7.22739000" + }, + { + "id": "46673", + "name": "Sainte-Croix-en-Plaine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00876000", + "longitude": "7.38556000" + }, + { + "id": "46704", + "name": "Sainte-Marguerite", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26735000", + "longitude": "6.98439000" + }, + { + "id": "46710", + "name": "Sainte-Marie-aux-Chênes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19262000", + "longitude": "6.00150000" + }, + { + "id": "46711", + "name": "Sainte-Marie-aux-Mines", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24649000", + "longitude": "7.18385000" + }, + { + "id": "46716", + "name": "Sainte-Maure", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34729000", + "longitude": "4.05962000" + }, + { + "id": "46719", + "name": "Sainte-Menehould", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09008000", + "longitude": "4.89733000" + }, + { + "id": "46725", + "name": "Sainte-Savine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29637000", + "longitude": "4.04642000" + }, + { + "id": "46739", + "name": "Saizerais", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79250000", + "longitude": "6.04470000" + }, + { + "id": "46785", + "name": "Sand", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38319000", + "longitude": "7.61233000" + }, + { + "id": "46809", + "name": "Sarralbe", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99858000", + "longitude": "7.03074000" + }, + { + "id": "46811", + "name": "Sarre-Union", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93818000", + "longitude": "7.09373000" + }, + { + "id": "46812", + "name": "Sarrebourg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73558000", + "longitude": "7.05720000" + }, + { + "id": "46813", + "name": "Sarreguemines", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10995000", + "longitude": "7.06747000" + }, + { + "id": "46814", + "name": "Sarreinsming", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09121000", + "longitude": "7.11053000" + }, + { + "id": "46815", + "name": "Sarrewerden", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92261000", + "longitude": "7.08412000" + }, + { + "id": "46818", + "name": "Sarry", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91852000", + "longitude": "4.40621000" + }, + { + "id": "46839", + "name": "Saulcy-sur-Meurthe", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23758000", + "longitude": "6.96443000" + }, + { + "id": "46842", + "name": "Saulnes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.53189000", + "longitude": "5.82130000" + }, + { + "id": "46843", + "name": "Saulny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15770000", + "longitude": "6.10929000" + }, + { + "id": "46846", + "name": "Sault-lès-Rethel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.49980000", + "longitude": "4.36227000" + }, + { + "id": "46849", + "name": "Saulxures-lès-Nancy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68872000", + "longitude": "6.24353000" + }, + { + "id": "46850", + "name": "Saulxures-sur-Moselotte", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94894000", + "longitude": "6.77040000" + }, + { + "id": "46853", + "name": "Sausheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.78711000", + "longitude": "7.37267000" + }, + { + "id": "46874", + "name": "Saverne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74164000", + "longitude": "7.36221000" + }, + { + "id": "47136", + "name": "Sélestat", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26195000", + "longitude": "7.44890000" + }, + { + "id": "47151", + "name": "Sézanne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72047000", + "longitude": "3.72339000" + }, + { + "id": "46904", + "name": "Schœneck", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21667000", + "longitude": "6.91667000" + }, + { + "id": "46897", + "name": "Scherwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28713000", + "longitude": "7.42135000" + }, + { + "id": "46898", + "name": "Schiltigheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60749000", + "longitude": "7.74931000" + }, + { + "id": "46899", + "name": "Schirmeck", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48313000", + "longitude": "7.22004000" + }, + { + "id": "46900", + "name": "Schirrhein", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.80161000", + "longitude": "7.90588000" + }, + { + "id": "46901", + "name": "Schnersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65741000", + "longitude": "7.56701000" + }, + { + "id": "46902", + "name": "Schweighouse-sur-Moder", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82009000", + "longitude": "7.72810000" + }, + { + "id": "46903", + "name": "Schwindratzheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75582000", + "longitude": "7.59898000" + }, + { + "id": "46908", + "name": "Scy-Chazelles", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11340000", + "longitude": "6.11470000" + }, + { + "id": "46913", + "name": "Sedan", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.70187000", + "longitude": "4.94028000" + }, + { + "id": "46916", + "name": "Seichamps", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71492000", + "longitude": "6.26139000" + }, + { + "id": "46928", + "name": "Seingbouse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11341000", + "longitude": "6.83186000" + }, + { + "id": "46934", + "name": "Seltz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89520000", + "longitude": "8.10757000" + }, + { + "id": "46944", + "name": "Senones", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39475000", + "longitude": "6.97818000" + }, + { + "id": "46947", + "name": "Sentheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75560000", + "longitude": "7.05305000" + }, + { + "id": "46975", + "name": "Serémange-Erzange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32062000", + "longitude": "6.09092000" + }, + { + "id": "46957", + "name": "Sermaize-les-Bains", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78507000", + "longitude": "4.91169000" + }, + { + "id": "46976", + "name": "Sessenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79652000", + "longitude": "7.98719000" + }, + { + "id": "46989", + "name": "Sierck-les-Bains", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.43942000", + "longitude": "6.35816000" + }, + { + "id": "46990", + "name": "Sierentz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65834000", + "longitude": "7.45387000" + }, + { + "id": "46993", + "name": "Signy-le-Petit", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.90277000", + "longitude": "4.27990000" + }, + { + "id": "46994", + "name": "Sigolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13493000", + "longitude": "7.29980000" + }, + { + "id": "46996", + "name": "Sillery", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19822000", + "longitude": "4.13244000" + }, + { + "id": "47026", + "name": "Solgne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96543000", + "longitude": "6.29429000" + }, + { + "id": "47059", + "name": "Soucht", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95902000", + "longitude": "7.33434000" + }, + { + "id": "47065", + "name": "Souffelweyersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63540000", + "longitude": "7.74141000" + }, + { + "id": "47066", + "name": "Soufflenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83026000", + "longitude": "7.96268000" + }, + { + "id": "47074", + "name": "Soultz-Haut-Rhin", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88849000", + "longitude": "7.22860000" + }, + { + "id": "47075", + "name": "Soultz-sous-Forêts", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93693000", + "longitude": "7.88110000" + }, + { + "id": "47076", + "name": "Soultzeren", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06394000", + "longitude": "7.10233000" + }, + { + "id": "47077", + "name": "Soultzmatt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96188000", + "longitude": "7.23759000" + }, + { + "id": "47093", + "name": "Spicheren", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19252000", + "longitude": "6.96611000" + }, + { + "id": "47097", + "name": "Staffelfelden", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82647000", + "longitude": "7.25235000" + }, + { + "id": "47103", + "name": "Steinbach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82140000", + "longitude": "7.15279000" + }, + { + "id": "47104", + "name": "Steinbourg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77028000", + "longitude": "7.41354000" + }, + { + "id": "47105", + "name": "Stenay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.49489000", + "longitude": "5.18606000" + }, + { + "id": "47106", + "name": "Still", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54982000", + "longitude": "7.40444000" + }, + { + "id": "47107", + "name": "Stiring-Wendel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20198000", + "longitude": "6.93170000" + }, + { + "id": "47108", + "name": "Stosswihr", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05389000", + "longitude": "7.09964000" + }, + { + "id": "47109", + "name": "Stotzheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37868000", + "longitude": "7.49235000" + }, + { + "id": "47110", + "name": "Strasbourg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58392000", + "longitude": "7.74553000" + }, + { + "id": "47113", + "name": "Suippes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12886000", + "longitude": "4.53446000" + }, + { + "id": "47117", + "name": "Sundhoffen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04263000", + "longitude": "7.41320000" + }, + { + "id": "47118", + "name": "Sundhouse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25110000", + "longitude": "7.60427000" + }, + { + "id": "47119", + "name": "Surbourg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91009000", + "longitude": "7.84716000" + }, + { + "id": "47158", + "name": "Taintrux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.24944000", + "longitude": "6.89963000" + }, + { + "id": "47159", + "name": "Taissy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21509000", + "longitude": "4.09406000" + }, + { + "id": "47160", + "name": "Talange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23577000", + "longitude": "6.17167000" + }, + { + "id": "47204", + "name": "Tenteling", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12544000", + "longitude": "6.93751000" + }, + { + "id": "47211", + "name": "Terville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34668000", + "longitude": "6.13346000" + }, + { + "id": "47214", + "name": "Teting-sur-Nied", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05704000", + "longitude": "6.66294000" + }, + { + "id": "47217", + "name": "Thann", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80789000", + "longitude": "7.10301000" + }, + { + "id": "47219", + "name": "Thaon-les-Vosges", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25000000", + "longitude": "6.41667000" + }, + { + "id": "47266", + "name": "Théding", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12847000", + "longitude": "6.89220000" + }, + { + "id": "47231", + "name": "Thierville-sur-Meuse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17050000", + "longitude": "5.35266000" + }, + { + "id": "47232", + "name": "Thil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47300000", + "longitude": "5.90821000" + }, + { + "id": "47234", + "name": "Thilay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.87345000", + "longitude": "4.80772000" + }, + { + "id": "47236", + "name": "Thionville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35994000", + "longitude": "6.16044000" + }, + { + "id": "47289", + "name": "Tinqueux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25000000", + "longitude": "3.98333000" + }, + { + "id": "47293", + "name": "Tomblaine", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68378000", + "longitude": "6.21620000" + }, + { + "id": "47309", + "name": "Toul", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68075000", + "longitude": "5.89115000" + }, + { + "id": "47326", + "name": "Tournes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.79700000", + "longitude": "4.63856000" + }, + { + "id": "47334", + "name": "Tours-sur-Marne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04873000", + "longitude": "4.12060000" + }, + { + "id": "47402", + "name": "Trémery", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24610000", + "longitude": "6.22369000" + }, + { + "id": "47362", + "name": "Tressange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40271000", + "longitude": "5.98084000" + }, + { + "id": "47372", + "name": "Trieux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32462000", + "longitude": "5.93049000" + }, + { + "id": "47380", + "name": "Tronville-en-Barrois", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71977000", + "longitude": "5.27808000" + }, + { + "id": "47385", + "name": "Troyes", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30073000", + "longitude": "4.08524000" + }, + { + "id": "47386", + "name": "Truchtersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66313000", + "longitude": "7.60752000" + }, + { + "id": "47410", + "name": "Tucquegnieux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31010000", + "longitude": "5.89448000" + }, + { + "id": "47415", + "name": "Turckheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08748000", + "longitude": "7.27707000" + }, + { + "id": "47419", + "name": "Uberach", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84990000", + "longitude": "7.62934000" + }, + { + "id": "47422", + "name": "Uckange", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30304000", + "longitude": "6.14920000" + }, + { + "id": "47423", + "name": "Uffholtz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82082000", + "longitude": "7.17785000" + }, + { + "id": "47426", + "name": "Ungersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87848000", + "longitude": "7.30797000" + }, + { + "id": "47431", + "name": "Uriménil", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10079000", + "longitude": "6.40046000" + }, + { + "id": "47432", + "name": "Urmatt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52752000", + "longitude": "7.32565000" + }, + { + "id": "47443", + "name": "Uxegney", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19652000", + "longitude": "6.36971000" + }, + { + "id": "47446", + "name": "Uzemain", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08572000", + "longitude": "6.34443000" + }, + { + "id": "47450", + "name": "Vacon", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66865000", + "longitude": "5.60024000" + }, + { + "id": "47453", + "name": "Vagney", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00629000", + "longitude": "6.71740000" + }, + { + "id": "47463", + "name": "Val-de-Meuse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00000000", + "longitude": "5.50000000" + }, + { + "id": "47481", + "name": "Valff", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42140000", + "longitude": "7.52058000" + }, + { + "id": "47488", + "name": "Valleroy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20944000", + "longitude": "5.93703000" + }, + { + "id": "47496", + "name": "Valmont", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08430000", + "longitude": "6.69781000" + }, + { + "id": "47503", + "name": "Vandœuvre-lès-Nancy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65000000", + "longitude": "6.18333000" + }, + { + "id": "47508", + "name": "Varangéville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63675000", + "longitude": "6.31875000" + }, + { + "id": "47529", + "name": "Vaucouleurs", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60313000", + "longitude": "5.66659000" + }, + { + "id": "47932", + "name": "Vézelise", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.48748000", + "longitude": "6.08825000" + }, + { + "id": "47553", + "name": "Vecoux", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97797000", + "longitude": "6.63651000" + }, + { + "id": "47557", + "name": "Velaine-en-Haye", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69990000", + "longitude": "6.02754000" + }, + { + "id": "47558", + "name": "Velaines", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69880000", + "longitude": "5.30483000" + }, + { + "id": "47570", + "name": "Vendenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66948000", + "longitude": "7.70983000" + }, + { + "id": "47572", + "name": "Vendeuvre-sur-Barse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23786000", + "longitude": "4.46905000" + }, + { + "id": "47593", + "name": "Verdun", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15964000", + "longitude": "5.38290000" + }, + { + "id": "47626", + "name": "Verny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00677000", + "longitude": "6.20350000" + }, + { + "id": "47629", + "name": "Verrières", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23334000", + "longitude": "4.14893000" + }, + { + "id": "47643", + "name": "Vertus", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.90609000", + "longitude": "4.00216000" + }, + { + "id": "47645", + "name": "Verzenay", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15918000", + "longitude": "4.14543000" + }, + { + "id": "47646", + "name": "Verzy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14576000", + "longitude": "4.16409000" + }, + { + "id": "47669", + "name": "Vic-sur-Seille", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78195000", + "longitude": "6.53079000" + }, + { + "id": "47691", + "name": "Vieux-Thann", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80400000", + "longitude": "7.12067000" + }, + { + "id": "47695", + "name": "Vigneulles-lès-Hattonchâtel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98152000", + "longitude": "5.70464000" + }, + { + "id": "47699", + "name": "Vignot", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77418000", + "longitude": "5.60904000" + }, + { + "id": "47702", + "name": "Vigy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20443000", + "longitude": "6.29906000" + }, + { + "id": "47706", + "name": "Village-Neuf", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60682000", + "longitude": "7.56964000" + }, + { + "id": "47837", + "name": "Villé", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34270000", + "longitude": "7.30260000" + }, + { + "id": "47720", + "name": "Ville-sous-la-Ferté", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12060000", + "longitude": "4.78957000" + }, + { + "id": "47757", + "name": "Villenauxe-la-Grande", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58333000", + "longitude": "3.55000000" + }, + { + "id": "47804", + "name": "Villers-la-Montagne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47175000", + "longitude": "5.82522000" + }, + { + "id": "47806", + "name": "Villers-lès-Nancy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.67333000", + "longitude": "6.15283000" + }, + { + "id": "47802", + "name": "Villers-Semeuse", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.74201000", + "longitude": "4.74697000" + }, + { + "id": "47812", + "name": "Villerupt", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46715000", + "longitude": "5.93202000" + }, + { + "id": "47824", + "name": "Villey-Saint-Étienne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73254000", + "longitude": "5.97851000" + }, + { + "id": "47827", + "name": "Villiers-en-Lieu", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66785000", + "longitude": "4.89755000" + }, + { + "id": "47845", + "name": "Vincey", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.33749000", + "longitude": "6.33134000" + }, + { + "id": "47858", + "name": "Vireux-Molhain", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "50.07874000", + "longitude": "4.72426000" + }, + { + "id": "47859", + "name": "Vireux-Wallerand", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "50.08196000", + "longitude": "4.73017000" + }, + { + "id": "47873", + "name": "Vitry-le-François", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72472000", + "longitude": "4.58439000" + }, + { + "id": "47874", + "name": "Vitry-sur-Orne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26595000", + "longitude": "6.11074000" + }, + { + "id": "47878", + "name": "Vittel", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20085000", + "longitude": "5.94843000" + }, + { + "id": "47881", + "name": "Vivier-au-Court", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.73326000", + "longitude": "4.82939000" + }, + { + "id": "47891", + "name": "Void-Vacon", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68333000", + "longitude": "5.61667000" + }, + { + "id": "47895", + "name": "Volgelsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.01462000", + "longitude": "7.55456000" + }, + { + "id": "47896", + "name": "Volmerange-les-Mines", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44326000", + "longitude": "6.08062000" + }, + { + "id": "47898", + "name": "Volstroff", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31135000", + "longitude": "6.25976000" + }, + { + "id": "47904", + "name": "Vosges", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.19161000", + "longitude": "6.40533000" + }, + { + "id": "47916", + "name": "Vouziers", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.39791000", + "longitude": "4.70120000" + }, + { + "id": "47920", + "name": "Vrigne-aux-Bois", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.73716000", + "longitude": "4.85567000" + }, + { + "id": "47937", + "name": "Walbourg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88628000", + "longitude": "7.78828000" + }, + { + "id": "47938", + "name": "Waldighofen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55045000", + "longitude": "7.31512000" + }, + { + "id": "47941", + "name": "Walscheid", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.65308000", + "longitude": "7.14998000" + }, + { + "id": "47944", + "name": "Wangenbourg-Engenthal", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.62805000", + "longitude": "7.30471000" + }, + { + "id": "47945", + "name": "Warcq", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.77517000", + "longitude": "4.68175000" + }, + { + "id": "47950", + "name": "Warmeriville", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35227000", + "longitude": "4.21882000" + }, + { + "id": "47952", + "name": "Wasselonne", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63779000", + "longitude": "7.44506000" + }, + { + "id": "47954", + "name": "Wassy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49811000", + "longitude": "4.94775000" + }, + { + "id": "47958", + "name": "Wattwiller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83649000", + "longitude": "7.17785000" + }, + { + "id": "47963", + "name": "Weitbruch", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75455000", + "longitude": "7.77935000" + }, + { + "id": "47965", + "name": "Westhoffen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60352000", + "longitude": "7.44289000" + }, + { + "id": "47966", + "name": "Wettolsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05755000", + "longitude": "7.29844000" + }, + { + "id": "47967", + "name": "Weyersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71622000", + "longitude": "7.80127000" + }, + { + "id": "47968", + "name": "Widensolen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06377000", + "longitude": "7.48015000" + }, + { + "id": "47969", + "name": "Wiesviller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08095000", + "longitude": "7.16415000" + }, + { + "id": "47971", + "name": "Wihr-au-Val", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05196000", + "longitude": "7.20493000" + }, + { + "id": "47973", + "name": "Willerwald", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02481000", + "longitude": "7.03726000" + }, + { + "id": "47976", + "name": "Wimmenau", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91217000", + "longitude": "7.42189000" + }, + { + "id": "47977", + "name": "Wingen-sur-Moder", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91900000", + "longitude": "7.37955000" + }, + { + "id": "47978", + "name": "Wingersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72149000", + "longitude": "7.63464000" + }, + { + "id": "47981", + "name": "Wintzenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07269000", + "longitude": "7.29072000" + }, + { + "id": "47982", + "name": "Wisches", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50881000", + "longitude": "7.26814000" + }, + { + "id": "47984", + "name": "Wissembourg", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03708000", + "longitude": "7.94548000" + }, + { + "id": "47986", + "name": "Witry-lès-Reims", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29162000", + "longitude": "4.11921000" + }, + { + "id": "47987", + "name": "Wittelsheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80947000", + "longitude": "7.24154000" + }, + { + "id": "47988", + "name": "Wittenheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81090000", + "longitude": "7.32756000" + }, + { + "id": "47989", + "name": "Wittisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26451000", + "longitude": "7.58683000" + }, + { + "id": "47991", + "name": "Woerth", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93953000", + "longitude": "7.74279000" + }, + { + "id": "47993", + "name": "Woippy", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15111000", + "longitude": "6.15132000" + }, + { + "id": "47994", + "name": "Wolfgantzen", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02805000", + "longitude": "7.50040000" + }, + { + "id": "47995", + "name": "Wolfisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58723000", + "longitude": "7.66708000" + }, + { + "id": "47997", + "name": "Woustviller", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07636000", + "longitude": "7.00487000" + }, + { + "id": "47998", + "name": "Xertigny", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04394000", + "longitude": "6.40836000" + }, + { + "id": "47999", + "name": "Xonrupt-Longemer", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08223000", + "longitude": "6.92944000" + }, + { + "id": "48013", + "name": "Yutz", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35571000", + "longitude": "6.19260000" + }, + { + "id": "48026", + "name": "Zillisheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69604000", + "longitude": "7.29736000" + }, + { + "id": "48027", + "name": "Zimmersheim", + "state_id": 4820, + "state_code": "GES", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72079000", + "longitude": "7.38847000" + }, + { + "id": "39235", + "name": "Abbeville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.10521000", + "longitude": "1.83547000" + }, + { + "id": "39238", + "name": "Ablain-Saint-Nazaire", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39320000", + "longitude": "2.70880000" + }, + { + "id": "39247", + "name": "Abscon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33333000", + "longitude": "3.30000000" + }, + { + "id": "39250", + "name": "Achicourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27429000", + "longitude": "2.75779000" + }, + { + "id": "39251", + "name": "Achiet-le-Grand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.13067000", + "longitude": "2.78119000" + }, + { + "id": "39260", + "name": "Agnetz", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38118000", + "longitude": "2.38621000" + }, + { + "id": "39261", + "name": "Agny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.25914000", + "longitude": "2.76002000" + }, + { + "id": "39282", + "name": "Ailly-sur-Noye", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.75707000", + "longitude": "2.36367000" + }, + { + "id": "39283", + "name": "Ailly-sur-Somme", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.92886000", + "longitude": "2.19615000" + }, + { + "id": "39287", + "name": "Airaines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.96826000", + "longitude": "1.94266000" + }, + { + "id": "39288", + "name": "Aire-sur-la-Lys", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63871000", + "longitude": "2.39876000" + }, + { + "id": "39292", + "name": "Aix-Noulette", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.42568000", + "longitude": "2.70554000" + }, + { + "id": "39303", + "name": "Albert", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.00091000", + "longitude": "2.65096000" + }, + { + "id": "39324", + "name": "Allennes-les-Marais", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.53754000", + "longitude": "2.95361000" + }, + { + "id": "39329", + "name": "Allonne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40863000", + "longitude": "2.11427000" + }, + { + "id": "39332", + "name": "Allouagne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.53167000", + "longitude": "2.51194000" + }, + { + "id": "39352", + "name": "Amblainville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20443000", + "longitude": "2.12242000" + }, + { + "id": "39353", + "name": "Ambleny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38079000", + "longitude": "3.18447000" + }, + { + "id": "39354", + "name": "Ambleteuse", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.80729000", + "longitude": "1.60388000" + }, + { + "id": "39364", + "name": "Amiens", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.90000000", + "longitude": "2.30000000" + }, + { + "id": "39381", + "name": "Andeville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26078000", + "longitude": "2.16427000" + }, + { + "id": "39387", + "name": "Andres", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.86556000", + "longitude": "1.92094000" + }, + { + "id": "39401", + "name": "Angicourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31175000", + "longitude": "2.50419000" + }, + { + "id": "39406", + "name": "Angres", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.40572000", + "longitude": "2.76054000" + }, + { + "id": "39408", + "name": "Angy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32975000", + "longitude": "2.32854000" + }, + { + "id": "39409", + "name": "Anhiers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.40737000", + "longitude": "3.15512000" + }, + { + "id": "39411", + "name": "Aniche", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.32995000", + "longitude": "3.25346000" + }, + { + "id": "39412", + "name": "Anizy-le-Château", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50678000", + "longitude": "3.45119000" + }, + { + "id": "39413", + "name": "Annay", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.46303000", + "longitude": "2.88122000" + }, + { + "id": "39417", + "name": "Annequin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50525000", + "longitude": "2.72019000" + }, + { + "id": "39421", + "name": "Annezin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.53192000", + "longitude": "2.61785000" + }, + { + "id": "39422", + "name": "Annoeullin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.52925000", + "longitude": "2.93180000" + }, + { + "id": "39425", + "name": "Anor", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.98999000", + "longitude": "4.10049000" + }, + { + "id": "39427", + "name": "Ansauvillers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.56523000", + "longitude": "2.38742000" + }, + { + "id": "39430", + "name": "Anstaing", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.60473000", + "longitude": "3.19079000" + }, + { + "id": "39438", + "name": "Anzin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37201000", + "longitude": "3.50387000" + }, + { + "id": "39439", + "name": "Anzin-Saint-Aubin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31313000", + "longitude": "2.74732000" + }, + { + "id": "39469", + "name": "Ardres", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.85786000", + "longitude": "1.98168000" + }, + { + "id": "39490", + "name": "Arleux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.28037000", + "longitude": "3.10448000" + }, + { + "id": "39491", + "name": "Armbouts-Cappel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.97682000", + "longitude": "2.35352000" + }, + { + "id": "39493", + "name": "Armentières", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.68568000", + "longitude": "2.88214000" + }, + { + "id": "39504", + "name": "Arnèke", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.83219000", + "longitude": "2.40943000" + }, + { + "id": "39508", + "name": "Arques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.73375000", + "longitude": "2.30237000" + }, + { + "id": "39511", + "name": "Arras", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.29301000", + "longitude": "2.78186000" + }, + { + "id": "39530", + "name": "Artres", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.29482000", + "longitude": "3.54013000" + }, + { + "id": "39556", + "name": "Athies-sous-Laon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.57369000", + "longitude": "3.68417000" + }, + { + "id": "39561", + "name": "Attiches", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.52220000", + "longitude": "3.06222000" + }, + { + "id": "39562", + "name": "Attichy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41121000", + "longitude": "3.04949000" + }, + { + "id": "39570", + "name": "Auberchicourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33333000", + "longitude": "3.23333000" + }, + { + "id": "39573", + "name": "Aubers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.59543000", + "longitude": "2.82666000" + }, + { + "id": "39580", + "name": "Aubigny-au-Bac", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.26370000", + "longitude": "3.16448000" + }, + { + "id": "39581", + "name": "Aubigny-en-Artois", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35000000", + "longitude": "2.58333000" + }, + { + "id": "39588", + "name": "Aubry-du-Hainaut", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.36667000", + "longitude": "3.46667000" + }, + { + "id": "39590", + "name": "Auby", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41457000", + "longitude": "3.05396000" + }, + { + "id": "39593", + "name": "Auchel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50345000", + "longitude": "2.47346000" + }, + { + "id": "39595", + "name": "Auchy-lès-Hesdin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.40114000", + "longitude": "2.10145000" + }, + { + "id": "39594", + "name": "Auchy-les-Mines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51349000", + "longitude": "2.78283000" + }, + { + "id": "39599", + "name": "Audruicq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.87795000", + "longitude": "2.07975000" + }, + { + "id": "39611", + "name": "Aulnois-sous-Laon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.61429000", + "longitude": "3.60547000" + }, + { + "id": "39612", + "name": "Aulnoy-lez-Valenciennes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33333000", + "longitude": "3.53333000" + }, + { + "id": "39613", + "name": "Aulnoye-Aymeries", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.20141000", + "longitude": "3.83844000" + }, + { + "id": "39614", + "name": "Ault", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.10404000", + "longitude": "1.45000000" + }, + { + "id": "39621", + "name": "Auneuil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37026000", + "longitude": "1.99712000" + }, + { + "id": "39645", + "name": "Auxi-le-Château", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.23101000", + "longitude": "2.11593000" + }, + { + "id": "39661", + "name": "Avelin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.53968000", + "longitude": "3.08222000" + }, + { + "id": "39664", + "name": "Avesnelles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.11782000", + "longitude": "3.94674000" + }, + { + "id": "39665", + "name": "Avesnes-le-Comte", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27767000", + "longitude": "2.52957000" + }, + { + "id": "39666", + "name": "Avesnes-le-Sec", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.25100000", + "longitude": "3.37768000" + }, + { + "id": "39667", + "name": "Avesnes-les-Aubert", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.20000000", + "longitude": "3.38333000" + }, + { + "id": "39671", + "name": "Avilly-Saint-Léonard", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19449000", + "longitude": "2.54148000" + }, + { + "id": "39672", + "name": "Avion", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41038000", + "longitude": "2.83053000" + }, + { + "id": "39679", + "name": "Avrechy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44796000", + "longitude": "2.42710000" + }, + { + "id": "48037", + "name": "Écaillon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35034000", + "longitude": "3.21664000" + }, + { + "id": "48049", + "name": "Écourt-Saint-Quentin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.25226000", + "longitude": "3.07331000" + }, + { + "id": "48064", + "name": "Éleu-dit-Leauwette", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.42147000", + "longitude": "2.81079000" + }, + { + "id": "48067", + "name": "Émerchicourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30786000", + "longitude": "3.24537000" + }, + { + "id": "48071", + "name": "Épehy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.00000000", + "longitude": "3.13333000" + }, + { + "id": "48072", + "name": "Éperlecques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.80566000", + "longitude": "2.15207000" + }, + { + "id": "48088", + "name": "Équihen-Plage", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67557000", + "longitude": "1.57225000" + }, + { + "id": "48096", + "name": "Étampes-sur-Marne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03464000", + "longitude": "3.41893000" + }, + { + "id": "48098", + "name": "Étaples", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.52194000", + "longitude": "1.63319000" + }, + { + "id": "48107", + "name": "Étreillers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.83059000", + "longitude": "3.16029000" + }, + { + "id": "48111", + "name": "Étreux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.98333000", + "longitude": "3.65000000" + }, + { + "id": "48119", + "name": "Évin-Malmaison", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43923000", + "longitude": "3.03139000" + }, + { + "id": "39700", + "name": "Bachant", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.21540000", + "longitude": "3.86835000" + }, + { + "id": "39701", + "name": "Bachy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.55079000", + "longitude": "3.25976000" + }, + { + "id": "39725", + "name": "Bailleul", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.73592000", + "longitude": "2.73594000" + }, + { + "id": "39726", + "name": "Bailleul-Sir-Berthoult", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33752000", + "longitude": "2.85129000" + }, + { + "id": "39727", + "name": "Bailleul-sur-Thérain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38526000", + "longitude": "2.22279000" + }, + { + "id": "39728", + "name": "Bailleval", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34605000", + "longitude": "2.45695000" + }, + { + "id": "39733", + "name": "Baincthun", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.70994000", + "longitude": "1.68075000" + }, + { + "id": "39740", + "name": "Baisieux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.60841000", + "longitude": "3.25251000" + }, + { + "id": "39742", + "name": "Balagny-sur-Thérain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29605000", + "longitude": "2.33645000" + }, + { + "id": "39764", + "name": "Bapaume", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.10379000", + "longitude": "2.84966000" + }, + { + "id": "39787", + "name": "Barlin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45238000", + "longitude": "2.61955000" + }, + { + "id": "39816", + "name": "Bauvin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51714000", + "longitude": "2.89404000" + }, + { + "id": "39818", + "name": "Bavay", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.29828000", + "longitude": "3.79372000" + }, + { + "id": "40430", + "name": "Béthencourt-sur-Mer", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.07756000", + "longitude": "1.50348000" + }, + { + "id": "40432", + "name": "Béthisy-Saint-Martin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29480000", + "longitude": "2.81743000" + }, + { + "id": "40433", + "name": "Béthisy-Saint-Pierre", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30482000", + "longitude": "2.79636000" + }, + { + "id": "40434", + "name": "Béthune", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.52965000", + "longitude": "2.64003000" + }, + { + "id": "39837", + "name": "Beaucamps-le-Vieux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.84642000", + "longitude": "1.78272000" + }, + { + "id": "39839", + "name": "Beauchamps", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01202000", + "longitude": "1.51764000" + }, + { + "id": "39858", + "name": "Beaumetz-lès-Loges", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.23897000", + "longitude": "2.65818000" + }, + { + "id": "39879", + "name": "Beauquesne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.08526000", + "longitude": "2.39276000" + }, + { + "id": "39880", + "name": "Beaurains", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.26599000", + "longitude": "2.79467000" + }, + { + "id": "39881", + "name": "Beaurainville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.42432000", + "longitude": "1.89938000" + }, + { + "id": "39884", + "name": "Beaurevoir", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.99714000", + "longitude": "3.30855000" + }, + { + "id": "39888", + "name": "Beautor", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.65214000", + "longitude": "3.34475000" + }, + { + "id": "39889", + "name": "Beauvais", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.43333000", + "longitude": "2.08333000" + }, + { + "id": "39890", + "name": "Beauval", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.10789000", + "longitude": "2.33269000" + }, + { + "id": "39895", + "name": "Beauvois-en-Cambrésis", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.13735000", + "longitude": "3.37870000" + }, + { + "id": "39908", + "name": "Bellaing", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.36811000", + "longitude": "3.42515000" + }, + { + "id": "39920", + "name": "Belleu", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35917000", + "longitude": "3.33556000" + }, + { + "id": "39943", + "name": "Berck", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.40000000", + "longitude": "1.60000000" + }, + { + "id": "39944", + "name": "Berck-Plage", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.40704000", + "longitude": "1.56446000" + }, + { + "id": "39948", + "name": "Bergues", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.96882000", + "longitude": "2.43242000" + }, + { + "id": "39949", + "name": "Berlaimont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.20155000", + "longitude": "3.81343000" + }, + { + "id": "39951", + "name": "Bernaville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.13232000", + "longitude": "2.16300000" + }, + { + "id": "39966", + "name": "Bersée", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47978000", + "longitude": "3.14765000" + }, + { + "id": "39967", + "name": "Berteaucourt-les-Dames", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.04697000", + "longitude": "2.15750000" + }, + { + "id": "39968", + "name": "Berthecourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35097000", + "longitude": "2.22471000" + }, + { + "id": "39970", + "name": "Bertry", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.08718000", + "longitude": "3.44298000" + }, + { + "id": "39988", + "name": "Betz", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15558000", + "longitude": "2.95584000" + }, + { + "id": "39992", + "name": "Beuvrages", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.38414000", + "longitude": "3.49420000" + }, + { + "id": "39993", + "name": "Beuvry", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51674000", + "longitude": "2.68541000" + }, + { + "id": "40004", + "name": "Biache-Saint-Vaast", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30869000", + "longitude": "2.94777000" + }, + { + "id": "40012", + "name": "Bierne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.96232000", + "longitude": "2.40963000" + }, + { + "id": "40022", + "name": "Billy-Berclau", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51783000", + "longitude": "2.86613000" + }, + { + "id": "40023", + "name": "Billy-Montigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41711000", + "longitude": "2.90286000" + }, + { + "id": "40024", + "name": "Billy-sur-Aisne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35632000", + "longitude": "3.38357000" + }, + { + "id": "40047", + "name": "Blaincourt-lès-Précy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23333000", + "longitude": "2.35000000" + }, + { + "id": "40058", + "name": "Blaringhem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69110000", + "longitude": "2.40321000" + }, + { + "id": "40075", + "name": "Blérancourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51667000", + "longitude": "3.15000000" + }, + { + "id": "40064", + "name": "Blendecques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.71843000", + "longitude": "2.28601000" + }, + { + "id": "40080", + "name": "Boeschepe", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.80000000", + "longitude": "2.70000000" + }, + { + "id": "40081", + "name": "Bohain-en-Vermandois", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.98730000", + "longitude": "3.45300000" + }, + { + "id": "40085", + "name": "Bois-Grenier", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.64985000", + "longitude": "2.87409000" + }, + { + "id": "40103", + "name": "Bollezeele", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.86687000", + "longitude": "2.34751000" + }, + { + "id": "40112", + "name": "Bondues", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.70196000", + "longitude": "3.09497000" + }, + { + "id": "40135", + "name": "Boran-sur-Oise", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16715000", + "longitude": "2.35803000" + }, + { + "id": "40142", + "name": "Bornel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19820000", + "longitude": "2.20912000" + }, + { + "id": "40238", + "name": "Boué", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01141000", + "longitude": "3.69608000" + }, + { + "id": "40151", + "name": "Bouchain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.28519000", + "longitude": "3.31491000" + }, + { + "id": "40174", + "name": "Boulogne-sur-Mer", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.72571000", + "longitude": "1.61392000" + }, + { + "id": "40181", + "name": "Bourbourg", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.94783000", + "longitude": "2.19576000" + }, + { + "id": "40200", + "name": "Bourghelles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56501000", + "longitude": "3.24447000" + }, + { + "id": "40208", + "name": "Bourlon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.17692000", + "longitude": "3.11425000" + }, + { + "id": "40214", + "name": "Bousbecque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.77123000", + "longitude": "3.08459000" + }, + { + "id": "40215", + "name": "Bousies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.15097000", + "longitude": "3.61752000" + }, + { + "id": "40220", + "name": "Boussois", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.28907000", + "longitude": "4.04117000" + }, + { + "id": "40225", + "name": "Bouttencourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.93725000", + "longitude": "1.63431000" + }, + { + "id": "40227", + "name": "Bouvignies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43627000", + "longitude": "3.24361000" + }, + { + "id": "40228", + "name": "Bouvigny-Boyeffles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.42146000", + "longitude": "2.67209000" + }, + { + "id": "40239", + "name": "Boves", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.84645000", + "longitude": "2.39605000" + }, + { + "id": "40249", + "name": "Braine", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34261000", + "longitude": "3.53262000" + }, + { + "id": "40259", + "name": "Brasles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04810000", + "longitude": "3.43000000" + }, + { + "id": "40266", + "name": "Bray-Dunes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.07786000", + "longitude": "2.51673000" + }, + { + "id": "40269", + "name": "Bray-sur-Somme", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.94085000", + "longitude": "2.71847000" + }, + { + "id": "40365", + "name": "Brêmes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.85483000", + "longitude": "1.97687000" + }, + { + "id": "40271", + "name": "Brebières", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33333000", + "longitude": "3.01667000" + }, + { + "id": "40274", + "name": "Brenouille", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30551000", + "longitude": "2.54437000" + }, + { + "id": "40276", + "name": "Bresles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41044000", + "longitude": "2.25024000" + }, + { + "id": "40283", + "name": "Breteuil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63357000", + "longitude": "2.29509000" + }, + { + "id": "40293", + "name": "Breuil-le-Sec", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37135000", + "longitude": "2.45084000" + }, + { + "id": "40294", + "name": "Breuil-le-Vert", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36176000", + "longitude": "2.43633000" + }, + { + "id": "40336", + "name": "Brouckerque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.95476000", + "longitude": "2.29378000" + }, + { + "id": "40338", + "name": "Bruay-la-Buissière", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48333000", + "longitude": "2.55000000" + }, + { + "id": "40339", + "name": "Bruay-sur-l’Escaut", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39918000", + "longitude": "3.54379000" + }, + { + "id": "40344", + "name": "Bruille-lez-Marchiennes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.36068000", + "longitude": "3.24424000" + }, + { + "id": "40343", + "name": "Bruille-Saint-Amand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.46605000", + "longitude": "3.50013000" + }, + { + "id": "40349", + "name": "Bruyères-et-Montbérault", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52535000", + "longitude": "3.66369000" + }, + { + "id": "40372", + "name": "Bucquoy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.13973000", + "longitude": "2.71036000" + }, + { + "id": "40373", + "name": "Bucy-le-Long", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.39072000", + "longitude": "3.39582000" + }, + { + "id": "40378", + "name": "Buironfosse", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.96659000", + "longitude": "3.83587000" + }, + { + "id": "40384", + "name": "Bully-les-Mines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.44380000", + "longitude": "2.72703000" + }, + { + "id": "40385", + "name": "Burbure", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.53663000", + "longitude": "2.46897000" + }, + { + "id": "40392", + "name": "Bury", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31307000", + "longitude": "2.34401000" + }, + { + "id": "40393", + "name": "Busigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.03424000", + "longitude": "3.46713000" + }, + { + "id": "40394", + "name": "Busnes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58781000", + "longitude": "2.51827000" + }, + { + "id": "40630", + "name": "Caëstre", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.75838000", + "longitude": "2.60274000" + }, + { + "id": "40460", + "name": "Cagny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.86217000", + "longitude": "2.34266000" + }, + { + "id": "40469", + "name": "Calais", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.95194000", + "longitude": "1.85635000" + }, + { + "id": "40475", + "name": "Calonne-Ricouart", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48504000", + "longitude": "2.47335000" + }, + { + "id": "40476", + "name": "Calonne-sur-la-Lys", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.62292000", + "longitude": "2.61664000" + }, + { + "id": "40486", + "name": "Camblain-Châtelain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48355000", + "longitude": "2.45521000" + }, + { + "id": "40489", + "name": "Cambrai", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.17596000", + "longitude": "3.23472000" + }, + { + "id": "40491", + "name": "Cambronne-lès-Clermont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33022000", + "longitude": "2.39928000" + }, + { + "id": "40492", + "name": "Cambronne-lès-Ribécourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50711000", + "longitude": "2.89797000" + }, + { + "id": "40493", + "name": "Camiers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.57153000", + "longitude": "1.61325000" + }, + { + "id": "40494", + "name": "Camon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.88764000", + "longitude": "2.34486000" + }, + { + "id": "40496", + "name": "Campagne-lès-Hesdin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39724000", + "longitude": "1.87494000" + }, + { + "id": "40499", + "name": "Camphin-en-Carembault", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51196000", + "longitude": "2.98710000" + }, + { + "id": "40500", + "name": "Camphin-en-Pévèle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.59561000", + "longitude": "3.26082000" + }, + { + "id": "40521", + "name": "Cantin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30885000", + "longitude": "3.12765000" + }, + { + "id": "40529", + "name": "Capinghem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.64551000", + "longitude": "2.96193000" + }, + { + "id": "40530", + "name": "Cappelle-en-Pévèle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51011000", + "longitude": "3.17133000" + }, + { + "id": "40531", + "name": "Cappelle-la-Grande", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.99979000", + "longitude": "2.35848000" + }, + { + "id": "40547", + "name": "Carlepont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51438000", + "longitude": "3.02327000" + }, + { + "id": "40566", + "name": "Cartignies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.09290000", + "longitude": "3.84473000" + }, + { + "id": "40567", + "name": "Carvin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.49235000", + "longitude": "2.95815000" + }, + { + "id": "40569", + "name": "Cassel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.80109000", + "longitude": "2.48527000" + }, + { + "id": "40598", + "name": "Catenoy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36824000", + "longitude": "2.51054000" + }, + { + "id": "40600", + "name": "Cauchy-à-la-Tour", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50394000", + "longitude": "2.44606000" + }, + { + "id": "40604", + "name": "Caudry", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.12490000", + "longitude": "3.41186000" + }, + { + "id": "40605", + "name": "Cauffry", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31978000", + "longitude": "2.44581000" + }, + { + "id": "40614", + "name": "Cauvigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30180000", + "longitude": "2.24844000" + }, + { + "id": "40622", + "name": "Cayeux-sur-Mer", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.18200000", + "longitude": "1.49400000" + }, + { + "id": "40702", + "name": "Chamant", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21990000", + "longitude": "2.61176000" + }, + { + "id": "40706", + "name": "Chambly", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16667000", + "longitude": "2.25000000" + }, + { + "id": "40775", + "name": "Chantilly", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19461000", + "longitude": "2.47124000" + }, + { + "id": "40805", + "name": "Charly-sur-Marne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97749000", + "longitude": "3.28464000" + }, + { + "id": "40807", + "name": "Charmes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.65345000", + "longitude": "3.37857000" + }, + { + "id": "40841", + "name": "Chaulnes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.81699000", + "longitude": "2.80064000" + }, + { + "id": "40844", + "name": "Chaumont-en-Vexin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26595000", + "longitude": "1.88597000" + }, + { + "id": "40849", + "name": "Chauny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.61514000", + "longitude": "3.21857000" + }, + { + "id": "40946", + "name": "Château-Thierry", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04636000", + "longitude": "3.40304000" + }, + { + "id": "41012", + "name": "Chépy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.06361000", + "longitude": "1.64694000" + }, + { + "id": "41015", + "name": "Chéreng", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.61059000", + "longitude": "3.20666000" + }, + { + "id": "41017", + "name": "Chézy-sur-Marne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98881000", + "longitude": "3.36786000" + }, + { + "id": "40902", + "name": "Chevrières", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34645000", + "longitude": "2.68219000" + }, + { + "id": "40906", + "name": "Chierry", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03940000", + "longitude": "3.42976000" + }, + { + "id": "40915", + "name": "Chiry-Ourscamp", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54378000", + "longitude": "2.94721000" + }, + { + "id": "40918", + "name": "Chocques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.54084000", + "longitude": "2.57193000" + }, + { + "id": "40921", + "name": "Choisy-au-Bac", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.43777000", + "longitude": "2.87739000" + }, + { + "id": "41022", + "name": "Cinqueux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31739000", + "longitude": "2.52997000" + }, + { + "id": "41025", + "name": "Cires-lès-Mello", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27242000", + "longitude": "2.35840000" + }, + { + "id": "41036", + "name": "Clairoix", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44264000", + "longitude": "2.84628000" + }, + { + "id": "41044", + "name": "Clary", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.07789000", + "longitude": "3.39943000" + }, + { + "id": "41047", + "name": "Clermont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37897000", + "longitude": "2.41258000" + }, + { + "id": "41085", + "name": "Coincy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16036000", + "longitude": "3.42202000" + }, + { + "id": "41089", + "name": "Colleret", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.25693000", + "longitude": "4.08083000" + }, + { + "id": "41116", + "name": "Comines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.76150000", + "longitude": "3.01063000" + }, + { + "id": "41124", + "name": "Compiègne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41794000", + "longitude": "2.82606000" + }, + { + "id": "41141", + "name": "Condé-sur-l’Escaut", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45436000", + "longitude": "3.58884000" + }, + { + "id": "41132", + "name": "Condette", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.65817000", + "longitude": "1.63386000" + }, + { + "id": "41158", + "name": "Conty", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.74100000", + "longitude": "2.15120000" + }, + { + "id": "41159", + "name": "Coquelles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.93461000", + "longitude": "1.79880000" + }, + { + "id": "41163", + "name": "Corbehem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33141000", + "longitude": "3.04995000" + }, + { + "id": "41168", + "name": "Corbie", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.90672000", + "longitude": "2.50682000" + }, + { + "id": "41218", + "name": "Coucy-le-Château-Auffrique", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52083000", + "longitude": "3.32381000" + }, + { + "id": "41219", + "name": "Coudekerque-Branche", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.02288000", + "longitude": "2.39359000" + }, + { + "id": "41220", + "name": "Coudekerque-Village", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.00000000", + "longitude": "2.41667000" + }, + { + "id": "41222", + "name": "Coudun", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46146000", + "longitude": "2.81248000" + }, + { + "id": "41232", + "name": "Coulogne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.92463000", + "longitude": "1.88137000" + }, + { + "id": "41243", + "name": "Courcelles-lès-Lens", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41667000", + "longitude": "3.01667000" + }, + { + "id": "41246", + "name": "Courchelettes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.34043000", + "longitude": "3.05938000" + }, + { + "id": "41254", + "name": "Courmelles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34595000", + "longitude": "3.31215000" + }, + { + "id": "41260", + "name": "Courrières", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45701000", + "longitude": "2.94725000" + }, + { + "id": "41276", + "name": "Cousolre", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.24607000", + "longitude": "4.14941000" + }, + { + "id": "41281", + "name": "Coutiches", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45520000", + "longitude": "3.20384000" + }, + { + "id": "41284", + "name": "Couvron-et-Aumencourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.64476000", + "longitude": "3.51857000" + }, + { + "id": "41289", + "name": "Coye-la-Forêt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14233000", + "longitude": "2.47038000" + }, + { + "id": "41339", + "name": "Crèvecœur-le-Grand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.60000000", + "longitude": "2.08333000" + }, + { + "id": "41341", + "name": "Crécy-en-Ponthieu", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.25193000", + "longitude": "1.88085000" + }, + { + "id": "41342", + "name": "Crécy-sur-Serre", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.69594000", + "longitude": "3.62453000" + }, + { + "id": "41349", + "name": "Crépy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.60000000", + "longitude": "3.51667000" + }, + { + "id": "41350", + "name": "Crépy-en-Valois", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23359000", + "longitude": "2.88807000" + }, + { + "id": "41352", + "name": "Crézancy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04833000", + "longitude": "3.51047000" + }, + { + "id": "41302", + "name": "Creil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25672000", + "longitude": "2.48477000" + }, + { + "id": "41306", + "name": "Crespin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.42110000", + "longitude": "3.66137000" + }, + { + "id": "41320", + "name": "Crisolles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.62250000", + "longitude": "3.01451000" + }, + { + "id": "41322", + "name": "Croisilles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.19978000", + "longitude": "2.87935000" + }, + { + "id": "41325", + "name": "Croix", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67846000", + "longitude": "3.14930000" + }, + { + "id": "41331", + "name": "Crouy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40274000", + "longitude": "3.35834000" + }, + { + "id": "41332", + "name": "Crouy-en-Thelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21487000", + "longitude": "2.32146000" + }, + { + "id": "41357", + "name": "Cucq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47733000", + "longitude": "1.62018000" + }, + { + "id": "41360", + "name": "Cuffies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40358000", + "longitude": "3.32119000" + }, + { + "id": "41365", + "name": "Cuinchy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51750000", + "longitude": "2.74880000" + }, + { + "id": "41366", + "name": "Cuincy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37933000", + "longitude": "3.05301000" + }, + { + "id": "41367", + "name": "Cuise-la-Motte", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38642000", + "longitude": "3.00588000" + }, + { + "id": "41375", + "name": "Curgies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.32975000", + "longitude": "3.60299000" + }, + { + "id": "41388", + "name": "Cysoing", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56939000", + "longitude": "3.21627000" + }, + { + "id": "41405", + "name": "Dainville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.28097000", + "longitude": "2.72603000" + }, + { + "id": "41430", + "name": "Dannes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58799000", + "longitude": "1.61381000" + }, + { + "id": "41433", + "name": "Dargnies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.04144000", + "longitude": "1.52526000" + }, + { + "id": "41609", + "name": "Département de l'Aisne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50000000", + "longitude": "3.50000000" + }, + { + "id": "41621", + "name": "Département de l'Oise", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50000000", + "longitude": "2.50000000" + }, + { + "id": "41463", + "name": "Deûlémont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.73333000", + "longitude": "2.95000000" + }, + { + "id": "41446", + "name": "Dechy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35000000", + "longitude": "3.11667000" + }, + { + "id": "41450", + "name": "Denain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.32930000", + "longitude": "3.39430000" + }, + { + "id": "41457", + "name": "Desvres", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.66884000", + "longitude": "1.83478000" + }, + { + "id": "41496", + "name": "Divion", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47169000", + "longitude": "2.50546000" + }, + { + "id": "41502", + "name": "Doingt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.92113000", + "longitude": "2.96766000" + }, + { + "id": "41513", + "name": "Domart-en-Ponthieu", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.07437000", + "longitude": "2.12596000" + }, + { + "id": "41528", + "name": "Don", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.54912000", + "longitude": "2.91817000" + }, + { + "id": "41545", + "name": "Douai", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37069000", + "longitude": "3.07922000" + }, + { + "id": "41549", + "name": "Douchy-les-Mines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30080000", + "longitude": "3.39270000" + }, + { + "id": "41553", + "name": "Doullens", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.15724000", + "longitude": "2.34019000" + }, + { + "id": "41555", + "name": "Dourges", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43636000", + "longitude": "2.98589000" + }, + { + "id": "41560", + "name": "Douvrin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50916000", + "longitude": "2.83053000" + }, + { + "id": "41572", + "name": "Dreslincourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52809000", + "longitude": "2.92699000" + }, + { + "id": "41573", + "name": "Dreuil-lès-Amiens", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.91483000", + "longitude": "2.22893000" + }, + { + "id": "41575", + "name": "Drocourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39002000", + "longitude": "2.92425000" + }, + { + "id": "41588", + "name": "Duisans", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30633000", + "longitude": "2.68653000" + }, + { + "id": "41592", + "name": "Dunkerque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.03297000", + "longitude": "2.37700000" + }, + { + "id": "41598", + "name": "Dury", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.84731000", + "longitude": "2.27070000" + }, + { + "id": "41657", + "name": "Ecques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.66998000", + "longitude": "2.28633000" + }, + { + "id": "41667", + "name": "Emmerin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.59475000", + "longitude": "3.00124000" + }, + { + "id": "41670", + "name": "Englefontaine", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.19091000", + "longitude": "3.64401000" + }, + { + "id": "41673", + "name": "Ennetières-en-Weppes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63530000", + "longitude": "2.94012000" + }, + { + "id": "41674", + "name": "Ennevelin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.54121000", + "longitude": "3.12972000" + }, + { + "id": "41688", + "name": "Eppeville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.74069000", + "longitude": "3.05114000" + }, + { + "id": "41691", + "name": "Ercuis", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23465000", + "longitude": "2.30407000" + }, + { + "id": "41699", + "name": "Erquinghem-Lys", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67601000", + "longitude": "2.84505000" + }, + { + "id": "41701", + "name": "Erre", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.36252000", + "longitude": "3.31561000" + }, + { + "id": "41706", + "name": "Escaudain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33315000", + "longitude": "3.34430000" + }, + { + "id": "41707", + "name": "Escaudœuvres", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.20000000", + "longitude": "3.26667000" + }, + { + "id": "41708", + "name": "Escautpont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41875000", + "longitude": "3.55341000" + }, + { + "id": "41712", + "name": "Esches", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22086000", + "longitude": "2.16595000" + }, + { + "id": "41723", + "name": "Esquéhéries", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.98391000", + "longitude": "3.74743000" + }, + { + "id": "41720", + "name": "Esquelbecq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.88694000", + "longitude": "2.43215000" + }, + { + "id": "41721", + "name": "Esquerdes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.70414000", + "longitude": "2.18851000" + }, + { + "id": "41724", + "name": "Essars", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.54868000", + "longitude": "2.66620000" + }, + { + "id": "41728", + "name": "Essômes-sur-Marne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02881000", + "longitude": "3.37571000" + }, + { + "id": "41727", + "name": "Essigny-le-Grand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.77865000", + "longitude": "3.27774000" + }, + { + "id": "41730", + "name": "Estaires", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.64574000", + "longitude": "2.72782000" + }, + { + "id": "41732", + "name": "Estevelles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47653000", + "longitude": "2.90928000" + }, + { + "id": "41737", + "name": "Estrées", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30079000", + "longitude": "3.06980000" + }, + { + "id": "41738", + "name": "Estrées-Saint-Denis", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.42602000", + "longitude": "2.64293000" + }, + { + "id": "41762", + "name": "Faches-Thumesnil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58333000", + "longitude": "3.06667000" + }, + { + "id": "41769", + "name": "Famars", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31743000", + "longitude": "3.51945000" + }, + { + "id": "41771", + "name": "Fampoux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30173000", + "longitude": "2.87310000" + }, + { + "id": "41780", + "name": "Faumont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.46017000", + "longitude": "3.13713000" + }, + { + "id": "41998", + "name": "Fère-en-Tardenois", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20000000", + "longitude": "3.51667000" + }, + { + "id": "42000", + "name": "Féchain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.26638000", + "longitude": "3.21024000" + }, + { + "id": "42005", + "name": "Férin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.32732000", + "longitude": "3.07415000" + }, + { + "id": "41792", + "name": "Feignies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.29806000", + "longitude": "3.91534000" + }, + { + "id": "41797", + "name": "Fenain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.36667000", + "longitude": "3.30000000" + }, + { + "id": "41802", + "name": "Ferques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.83002000", + "longitude": "1.75994000" + }, + { + "id": "41805", + "name": "Ferrière-la-Grande", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.25521000", + "longitude": "3.99288000" + }, + { + "id": "41809", + "name": "Festubert", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.54250000", + "longitude": "2.73593000" + }, + { + "id": "41811", + "name": "Feuchy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.29439000", + "longitude": "2.84335000" + }, + { + "id": "41812", + "name": "Feuquières", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.64677000", + "longitude": "1.84784000" + }, + { + "id": "41813", + "name": "Feuquières-en-Vimeu", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.05982000", + "longitude": "1.60465000" + }, + { + "id": "41827", + "name": "Fitz-James", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.39113000", + "longitude": "2.43070000" + }, + { + "id": "41833", + "name": "Flavy-le-Martel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.71299000", + "longitude": "3.19150000" + }, + { + "id": "41837", + "name": "Flers-en-Escrebieux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39790000", + "longitude": "3.06038000" + }, + { + "id": "41838", + "name": "Flesselles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.00202000", + "longitude": "2.26119000" + }, + { + "id": "41840", + "name": "Fleurbaix", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.65061000", + "longitude": "2.83305000" + }, + { + "id": "41844", + "name": "Fleurines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25901000", + "longitude": "2.58385000" + }, + { + "id": "41853", + "name": "Flines-lès-Mortagne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50281000", + "longitude": "3.46495000" + }, + { + "id": "41852", + "name": "Flines-lez-Raches", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41667000", + "longitude": "3.18333000" + }, + { + "id": "41855", + "name": "Flixecourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01465000", + "longitude": "2.08095000" + }, + { + "id": "41868", + "name": "Folembray", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54334000", + "longitude": "3.29119000" + }, + { + "id": "41878", + "name": "Fontaine-au-Pire", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.13250000", + "longitude": "3.37667000" + }, + { + "id": "41877", + "name": "Fontaine-Notre-Dame", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.16681000", + "longitude": "3.15812000" + }, + { + "id": "41911", + "name": "Forest-sur-Marque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63341000", + "longitude": "3.18939000" + }, + { + "id": "41914", + "name": "Formerie", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.64928000", + "longitude": "1.73106000" + }, + { + "id": "41916", + "name": "Fort-Mahon-Plage", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33955000", + "longitude": "1.55984000" + }, + { + "id": "41917", + "name": "Fort-Mardyck", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.02899000", + "longitude": "2.30724000" + }, + { + "id": "41930", + "name": "Fouquereuil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51885000", + "longitude": "2.60024000" + }, + { + "id": "41931", + "name": "Fouquières-lès-Béthune", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51534000", + "longitude": "2.60999000" + }, + { + "id": "41932", + "name": "Fouquières-lès-Lens", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.42842000", + "longitude": "2.91321000" + }, + { + "id": "41935", + "name": "Fourmies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01532000", + "longitude": "4.04784000" + }, + { + "id": "41936", + "name": "Fournes-en-Weppes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58497000", + "longitude": "2.88793000" + }, + { + "id": "41988", + "name": "Fréthun", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.91729000", + "longitude": "1.82505000" + }, + { + "id": "41989", + "name": "Frévent", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27608000", + "longitude": "2.28725000" + }, + { + "id": "41955", + "name": "Frelinghien", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.71667000", + "longitude": "2.93333000" + }, + { + "id": "41959", + "name": "Fresnes-sur-Escaut", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43382000", + "longitude": "3.57752000" + }, + { + "id": "41960", + "name": "Fresnoy-le-Grand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.94757000", + "longitude": "3.41841000" + }, + { + "id": "41962", + "name": "Fressenneville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.06838000", + "longitude": "1.57816000" + }, + { + "id": "41963", + "name": "Fretin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.55745000", + "longitude": "3.13668000" + }, + { + "id": "41966", + "name": "Friville-Escarbotin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.08602000", + "longitude": "1.54560000" + }, + { + "id": "41982", + "name": "Fruges", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51501000", + "longitude": "2.13292000" + }, + { + "id": "42024", + "name": "Gamaches", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.98615000", + "longitude": "1.55624000" + }, + { + "id": "42053", + "name": "Gauchy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.82765000", + "longitude": "3.27371000" + }, + { + "id": "42303", + "name": "Gœulzin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31667000", + "longitude": "3.10000000" + }, + { + "id": "42063", + "name": "Genech", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.53122000", + "longitude": "3.21651000" + }, + { + "id": "42085", + "name": "Ghyvelde", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.05275000", + "longitude": "2.52642000" + }, + { + "id": "42106", + "name": "Givenchy-en-Gohelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39080000", + "longitude": "2.77320000" + }, + { + "id": "42116", + "name": "Godewaersvelde", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.79399000", + "longitude": "2.64456000" + }, + { + "id": "42118", + "name": "Goincourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.42614000", + "longitude": "2.03621000" + }, + { + "id": "42122", + "name": "Gommegnies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27155000", + "longitude": "3.70625000" + }, + { + "id": "42125", + "name": "Gondecourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.54469000", + "longitude": "2.98378000" + }, + { + "id": "42131", + "name": "Gonnehem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56061000", + "longitude": "2.57277000" + }, + { + "id": "42140", + "name": "Gosnay", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50622000", + "longitude": "2.58904000" + }, + { + "id": "42156", + "name": "Gouvieux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18705000", + "longitude": "2.41439000" + }, + { + "id": "42158", + "name": "Gouy-sous-Bellonne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31139000", + "longitude": "3.05657000" + }, + { + "id": "42159", + "name": "Gouzeaucourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.05606000", + "longitude": "3.12351000" + }, + { + "id": "42173", + "name": "Grand-Fort-Philippe", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.99961000", + "longitude": "2.10784000" + }, + { + "id": "42176", + "name": "Grande-Synthe", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.01540000", + "longitude": "2.29975000" + }, + { + "id": "42178", + "name": "Grandfresnoy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37218000", + "longitude": "2.65216000" + }, + { + "id": "42181", + "name": "Grandvilliers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.66547000", + "longitude": "1.94088000" + }, + { + "id": "42189", + "name": "Gravelines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.98651000", + "longitude": "2.12807000" + }, + { + "id": "42198", + "name": "Grenay", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.44962000", + "longitude": "2.75168000" + }, + { + "id": "42218", + "name": "Groffliers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.38444000", + "longitude": "1.61474000" + }, + { + "id": "42231", + "name": "Gruson", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.59583000", + "longitude": "3.20777000" + }, + { + "id": "42238", + "name": "Guarbecque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.61162000", + "longitude": "2.48895000" + }, + { + "id": "42290", + "name": "Guînes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.86708000", + "longitude": "1.87025000" + }, + { + "id": "42247", + "name": "Guesnain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35000000", + "longitude": "3.15000000" + }, + { + "id": "42257", + "name": "Guignicourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.43714000", + "longitude": "3.96755000" + }, + { + "id": "42268", + "name": "Guiscard", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.65660000", + "longitude": "3.05127000" + }, + { + "id": "42270", + "name": "Guise", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.90055000", + "longitude": "3.62801000" + }, + { + "id": "42311", + "name": "Haillicourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47519000", + "longitude": "2.57458000" + }, + { + "id": "42312", + "name": "Haisnes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50776000", + "longitude": "2.79416000" + }, + { + "id": "42313", + "name": "Hallencourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.99201000", + "longitude": "1.87649000" + }, + { + "id": "42314", + "name": "Hallennes-lez-Haubourdin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.61667000", + "longitude": "2.96667000" + }, + { + "id": "42315", + "name": "Hallines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.71087000", + "longitude": "2.22629000" + }, + { + "id": "42316", + "name": "Halluin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.78628000", + "longitude": "3.12611000" + }, + { + "id": "42317", + "name": "Ham", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.74721000", + "longitude": "3.07301000" + }, + { + "id": "42321", + "name": "Hames-Boucres", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.88178000", + "longitude": "1.84338000" + }, + { + "id": "42325", + "name": "Harbonnières", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.84958000", + "longitude": "2.66812000" + }, + { + "id": "42326", + "name": "Hardinghen", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.80414000", + "longitude": "1.82122000" + }, + { + "id": "42330", + "name": "Harly", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.83766000", + "longitude": "3.31001000" + }, + { + "id": "42331", + "name": "Harnes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.44643000", + "longitude": "2.90481000" + }, + { + "id": "42332", + "name": "Hasnon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.42472000", + "longitude": "3.38657000" + }, + { + "id": "42334", + "name": "Haspres", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.25829000", + "longitude": "3.41695000" + }, + { + "id": "42336", + "name": "Haubourdin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.60826000", + "longitude": "2.99143000" + }, + { + "id": "42338", + "name": "Haulchin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31720000", + "longitude": "3.43599000" + }, + { + "id": "42339", + "name": "Haussy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.21830000", + "longitude": "3.47683000" + }, + { + "id": "42354", + "name": "Hautmont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.25077000", + "longitude": "3.92143000" + }, + { + "id": "42358", + "name": "Haveluy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35289000", + "longitude": "3.40389000" + }, + { + "id": "42359", + "name": "Haverskerque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.64089000", + "longitude": "2.54162000" + }, + { + "id": "42362", + "name": "Hazebrouck", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.72374000", + "longitude": "2.53729000" + }, + { + "id": "42451", + "name": "Hélesmes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37036000", + "longitude": "3.35918000" + }, + { + "id": "42453", + "name": "Hénin-Beaumont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41359000", + "longitude": "2.96485000" + }, + { + "id": "42460", + "name": "Hérin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35557000", + "longitude": "3.45309000" + }, + { + "id": "42365", + "name": "Helfaut", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69783000", + "longitude": "2.24234000" + }, + { + "id": "42366", + "name": "Hem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.65256000", + "longitude": "3.18681000" + }, + { + "id": "42376", + "name": "Hergnies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47287000", + "longitude": "3.52612000" + }, + { + "id": "42377", + "name": "Herlies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.57753000", + "longitude": "2.85285000" + }, + { + "id": "42379", + "name": "Hermes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36032000", + "longitude": "2.24461000" + }, + { + "id": "42380", + "name": "Hermies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.11126000", + "longitude": "3.04202000" + }, + { + "id": "42386", + "name": "Hersin-Coupigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.44796000", + "longitude": "2.64940000" + }, + { + "id": "42387", + "name": "Herzeele", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.88584000", + "longitude": "2.53510000" + }, + { + "id": "42388", + "name": "Hesdin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37349000", + "longitude": "2.03820000" + }, + { + "id": "42392", + "name": "Heuringhem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69638000", + "longitude": "2.28333000" + }, + { + "id": "42398", + "name": "Hinges", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56674000", + "longitude": "2.62160000" + }, + { + "id": "42402", + "name": "Hirson", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.92262000", + "longitude": "4.08259000" + }, + { + "id": "42408", + "name": "Holnon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.86086000", + "longitude": "3.21509000" + }, + { + "id": "42412", + "name": "Hombleux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.73942000", + "longitude": "2.98574000" + }, + { + "id": "42413", + "name": "Homblières", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.85031000", + "longitude": "3.36456000" + }, + { + "id": "42416", + "name": "Hondschoote", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.97800000", + "longitude": "2.58372000" + }, + { + "id": "42419", + "name": "Hordain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.26306000", + "longitude": "3.31358000" + }, + { + "id": "42421", + "name": "Hornaing", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.36835000", + "longitude": "3.33707000" + }, + { + "id": "42422", + "name": "Hornoy-le-Bourg", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.85000000", + "longitude": "1.90000000" + }, + { + "id": "42423", + "name": "Houdain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45040000", + "longitude": "2.53777000" + }, + { + "id": "42429", + "name": "Houplin-Ancoisne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56284000", + "longitude": "3.00251000" + }, + { + "id": "42430", + "name": "Houplines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69499000", + "longitude": "2.91518000" + }, + { + "id": "42434", + "name": "Hoymille", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.97187000", + "longitude": "2.44738000" + }, + { + "id": "42440", + "name": "Hulluch", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48961000", + "longitude": "2.81232000" + }, + { + "id": "42481", + "name": "Illies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56144000", + "longitude": "2.83011000" + }, + { + "id": "42498", + "name": "Isbergues", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.62328000", + "longitude": "2.45902000" + }, + { + "id": "42503", + "name": "Isques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67391000", + "longitude": "1.65445000" + }, + { + "id": "42511", + "name": "Itancourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.80664000", + "longitude": "3.34427000" + }, + { + "id": "42518", + "name": "Iwuy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.23300000", + "longitude": "3.32058000" + }, + { + "id": "42543", + "name": "Jaux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.39120000", + "longitude": "2.77809000" + }, + { + "id": "42549", + "name": "Jenlain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31164000", + "longitude": "3.62872000" + }, + { + "id": "42550", + "name": "Jeumont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.29658000", + "longitude": "4.10108000" + }, + { + "id": "42597", + "name": "Jussy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.71984000", + "longitude": "3.23270000" + }, + { + "id": "42614", + "name": "Killem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.95779000", + "longitude": "2.56068000" + }, + { + "id": "42635", + "name": "La Bassée", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.53424000", + "longitude": "2.80620000" + }, + { + "id": "42667", + "name": "La Capelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.96667000", + "longitude": "3.91667000" + }, + { + "id": "42668", + "name": "La Capelle-lès-Boulogne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.73302000", + "longitude": "1.70147000" + }, + { + "id": "42697", + "name": "La Chapelle-en-Serval", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12842000", + "longitude": "2.53405000" + }, + { + "id": "42719", + "name": "La Couture", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58212000", + "longitude": "2.70710000" + }, + { + "id": "42759", + "name": "La Fère", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.66286000", + "longitude": "3.36631000" + }, + { + "id": "42741", + "name": "La Ferté-Milon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17453000", + "longitude": "3.12885000" + }, + { + "id": "42745", + "name": "La Flamengrie", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.00175000", + "longitude": "3.92081000" + }, + { + "id": "42769", + "name": "La Gorgue", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63790000", + "longitude": "2.71502000" + }, + { + "id": "42793", + "name": "La Longueville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.28939000", + "longitude": "3.85672000" + }, + { + "id": "42797", + "name": "La Madeleine", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.64603000", + "longitude": "3.07585000" + }, + { + "id": "42877", + "name": "La Sentinelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35115000", + "longitude": "3.48425000" + }, + { + "id": "42932", + "name": "Labeuvrière", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51915000", + "longitude": "2.56268000" + }, + { + "id": "42934", + "name": "Laboissière-en-Thelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29329000", + "longitude": "2.16150000" + }, + { + "id": "42936", + "name": "Labourse", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.49883000", + "longitude": "2.68121000" + }, + { + "id": "42945", + "name": "Lachapelle-aux-Pots", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44905000", + "longitude": "1.90228000" + }, + { + "id": "42948", + "name": "Lacroix-Saint-Ouen", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35685000", + "longitude": "2.78803000" + }, + { + "id": "42958", + "name": "Lagny-le-Sec", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08744000", + "longitude": "2.74502000" + }, + { + "id": "42967", + "name": "Laigneville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29149000", + "longitude": "2.44581000" + }, + { + "id": "42976", + "name": "Lallaing", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39012000", + "longitude": "3.16949000" + }, + { + "id": "42986", + "name": "Lambersart", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.65000000", + "longitude": "3.03333000" + }, + { + "id": "42988", + "name": "Lambres-lez-Douai", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35000000", + "longitude": "3.06667000" + }, + { + "id": "42990", + "name": "Lamorlaye", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16246000", + "longitude": "2.44687000" + }, + { + "id": "42999", + "name": "Landas", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47269000", + "longitude": "3.30367000" + }, + { + "id": "43009", + "name": "Landrecies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.12499000", + "longitude": "3.69171000" + }, + { + "id": "43038", + "name": "Lannoy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.66674000", + "longitude": "3.21012000" + }, + { + "id": "43057", + "name": "Laon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.56310000", + "longitude": "3.62714000" + }, + { + "id": "43064", + "name": "Lapugnoy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51635000", + "longitude": "2.53460000" + }, + { + "id": "43087", + "name": "Lassigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.58828000", + "longitude": "2.84289000" + }, + { + "id": "43105", + "name": "Lauwin-Planque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39024000", + "longitude": "3.04510000" + }, + { + "id": "43115", + "name": "Laventie", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.62818000", + "longitude": "2.77076000" + }, + { + "id": "43681", + "name": "Lécluse", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27671000", + "longitude": "3.04045000" + }, + { + "id": "43177", + "name": "Le Crotoy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.21600000", + "longitude": "1.62500000" + }, + { + "id": "43181", + "name": "Le Doulieu", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.68194000", + "longitude": "2.71741000" + }, + { + "id": "43228", + "name": "Le Mesnil-en-Thelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17830000", + "longitude": "2.28573000" + }, + { + "id": "43232", + "name": "Le Meux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36718000", + "longitude": "2.74374000" + }, + { + "id": "43242", + "name": "Le Nouvion-en-Thiérache", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01625000", + "longitude": "3.78509000" + }, + { + "id": "43263", + "name": "Le Plessis-Belleville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09501000", + "longitude": "2.75614000" + }, + { + "id": "43265", + "name": "Le Plessis-Brion", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46419000", + "longitude": "2.89096000" + }, + { + "id": "43278", + "name": "Le Portel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.70559000", + "longitude": "1.57574000" + }, + { + "id": "43290", + "name": "Le Quesnoy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.24797000", + "longitude": "3.63656000" + }, + { + "id": "43321", + "name": "Le Touquet-Paris-Plage", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.52432000", + "longitude": "1.58571000" + }, + { + "id": "43338", + "name": "Lecelles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.46779000", + "longitude": "3.40096000" + }, + { + "id": "43341", + "name": "Leers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.68217000", + "longitude": "3.24429000" + }, + { + "id": "43342", + "name": "Leffrinckoucke", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.03457000", + "longitude": "2.46452000" + }, + { + "id": "43343", + "name": "Leforest", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43866000", + "longitude": "3.06480000" + }, + { + "id": "43350", + "name": "Lens", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43302000", + "longitude": "2.82791000" + }, + { + "id": "43357", + "name": "Les Ageux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31667000", + "longitude": "2.60000000" + }, + { + "id": "43367", + "name": "Les Attaques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.90962000", + "longitude": "1.92961000" + }, + { + "id": "43441", + "name": "Lesquin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58232000", + "longitude": "3.11900000" + }, + { + "id": "43444", + "name": "Lestrem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.61987000", + "longitude": "2.68646000" + }, + { + "id": "43448", + "name": "Leval", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.18106000", + "longitude": "3.83093000" + }, + { + "id": "43454", + "name": "Lewarde", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.34173000", + "longitude": "3.16782000" + }, + { + "id": "43460", + "name": "Lezennes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.61553000", + "longitude": "3.11354000" + }, + { + "id": "43463", + "name": "Liancourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33034000", + "longitude": "2.46595000" + }, + { + "id": "43525", + "name": "Liévin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41980000", + "longitude": "2.78068000" + }, + { + "id": "43464", + "name": "Libercourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48322000", + "longitude": "3.01584000" + }, + { + "id": "43466", + "name": "Licques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.78416000", + "longitude": "1.93844000" + }, + { + "id": "43468", + "name": "Liesse-Notre-Dame", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.61667000", + "longitude": "3.80000000" + }, + { + "id": "43469", + "name": "Lieu-Saint-Amand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27318000", + "longitude": "3.34624000" + }, + { + "id": "43478", + "name": "Ligny-en-Cambrésis", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.10123000", + "longitude": "3.37841000" + }, + { + "id": "43485", + "name": "Lille", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63297000", + "longitude": "3.05858000" + }, + { + "id": "43487", + "name": "Lillers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56345000", + "longitude": "2.48042000" + }, + { + "id": "43503", + "name": "Linselles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.73708000", + "longitude": "3.07878000" + }, + { + "id": "43532", + "name": "Locon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.57029000", + "longitude": "2.66629000" + }, + { + "id": "43545", + "name": "Loison-sous-Lens", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43796000", + "longitude": "2.85322000" + }, + { + "id": "43549", + "name": "Lomme", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.64358000", + "longitude": "2.98715000" + }, + { + "id": "43550", + "name": "Lompret", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.66931000", + "longitude": "2.98968000" + }, + { + "id": "43560", + "name": "Longfossé", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.65217000", + "longitude": "1.80693000" + }, + { + "id": "43567", + "name": "Longpré-les-Corps-Saints", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01239000", + "longitude": "1.99287000" + }, + { + "id": "43568", + "name": "Longueau", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.87226000", + "longitude": "2.35880000" + }, + { + "id": "43569", + "name": "Longueil-Annel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46908000", + "longitude": "2.86464000" + }, + { + "id": "43570", + "name": "Longueil-Sainte-Marie", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35723000", + "longitude": "2.71844000" + }, + { + "id": "43571", + "name": "Longuenesse", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.73395000", + "longitude": "2.23520000" + }, + { + "id": "43578", + "name": "Looberghe", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.91694000", + "longitude": "2.27439000" + }, + { + "id": "43579", + "name": "Loon-Plage", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.99647000", + "longitude": "2.21770000" + }, + { + "id": "43580", + "name": "Loos", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.60982000", + "longitude": "3.01874000" + }, + { + "id": "43581", + "name": "Loos-en-Gohelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45786000", + "longitude": "2.79215000" + }, + { + "id": "43585", + "name": "Lorgies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56880000", + "longitude": "2.79034000" + }, + { + "id": "43590", + "name": "Lormaison", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25647000", + "longitude": "2.10575000" + }, + { + "id": "43607", + "name": "Lourches", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31354000", + "longitude": "3.35258000" + }, + { + "id": "43619", + "name": "Louvroil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.26427000", + "longitude": "3.96272000" + }, + { + "id": "43626", + "name": "Lozinghem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51554000", + "longitude": "2.50209000" + }, + { + "id": "43647", + "name": "Lumbres", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.70693000", + "longitude": "2.12081000" + }, + { + "id": "43679", + "name": "Lys-lez-Lannoy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.66667000", + "longitude": "3.21667000" + }, + { + "id": "43732", + "name": "Maignelay-Montigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.55000000", + "longitude": "2.51667000" + }, + { + "id": "43738", + "name": "Maing", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30791000", + "longitude": "3.48447000" + }, + { + "id": "43742", + "name": "Maisnil-lès-Ruitz", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45342000", + "longitude": "2.58992000" + }, + { + "id": "43769", + "name": "Mametz", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63485000", + "longitude": "2.32478000" + }, + { + "id": "43927", + "name": "Marœuil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.32519000", + "longitude": "2.70504000" + }, + { + "id": "43800", + "name": "Marchiennes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.40000000", + "longitude": "3.28333000" + }, + { + "id": "43809", + "name": "Marck", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.94897000", + "longitude": "1.94328000" + }, + { + "id": "43811", + "name": "Marcoing", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.12110000", + "longitude": "3.17321000" + }, + { + "id": "43812", + "name": "Marconne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37143000", + "longitude": "2.04669000" + }, + { + "id": "43813", + "name": "Marconnelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37588000", + "longitude": "2.01108000" + }, + { + "id": "43816", + "name": "Marcq-en-Barœul", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.66667000", + "longitude": "3.08333000" + }, + { + "id": "43824", + "name": "Maretz", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.04530000", + "longitude": "3.41808000" + }, + { + "id": "43831", + "name": "Mareuil-sur-Ourcq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13752000", + "longitude": "3.07822000" + }, + { + "id": "43835", + "name": "Margny-lès-Compiègne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.42559000", + "longitude": "2.81806000" + }, + { + "id": "43848", + "name": "Marle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.74006000", + "longitude": "3.77060000" + }, + { + "id": "43851", + "name": "Marles-les-Mines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50478000", + "longitude": "2.50882000" + }, + { + "id": "43853", + "name": "Marly", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.34556000", + "longitude": "3.54959000" + }, + { + "id": "43865", + "name": "Maroilles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.13508000", + "longitude": "3.76132000" + }, + { + "id": "43870", + "name": "Marpent", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.29252000", + "longitude": "4.07936000" + }, + { + "id": "43872", + "name": "Marquette-en-Ostrevant", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.28333000", + "longitude": "3.26667000" + }, + { + "id": "43873", + "name": "Marquette-lez-Lille", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67628000", + "longitude": "3.06613000" + }, + { + "id": "43874", + "name": "Marquillies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.55577000", + "longitude": "2.87067000" + }, + { + "id": "43875", + "name": "Marquion", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.21126000", + "longitude": "3.08719000" + }, + { + "id": "43876", + "name": "Marquise", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.81294000", + "longitude": "1.70786000" + }, + { + "id": "43929", + "name": "Masnières", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.11489000", + "longitude": "3.20889000" + }, + { + "id": "43930", + "name": "Masny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.34797000", + "longitude": "3.20165000" + }, + { + "id": "43945", + "name": "Maubeuge", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27875000", + "longitude": "3.97267000" + }, + { + "id": "43975", + "name": "Mazingarbe", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47109000", + "longitude": "2.71544000" + }, + { + "id": "44455", + "name": "Méaulte", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.98167000", + "longitude": "2.66121000" + }, + { + "id": "44471", + "name": "Méricourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.40116000", + "longitude": "2.86246000" + }, + { + "id": "44474", + "name": "Mérignies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50609000", + "longitude": "3.11043000" + }, + { + "id": "44476", + "name": "Méru", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23333000", + "longitude": "2.13333000" + }, + { + "id": "44484", + "name": "Méteren", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.73333000", + "longitude": "2.70000000" + }, + { + "id": "44017", + "name": "Merlimont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45590000", + "longitude": "1.61315000" + }, + { + "id": "44018", + "name": "Mers-les-Bains", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.06538000", + "longitude": "1.38810000" + }, + { + "id": "44023", + "name": "Merville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.64329000", + "longitude": "2.64125000" + }, + { + "id": "44048", + "name": "Meurchin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.49831000", + "longitude": "2.89318000" + }, + { + "id": "44077", + "name": "Milly-sur-Thérain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50240000", + "longitude": "1.99605000" + }, + { + "id": "44110", + "name": "Mogneville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31535000", + "longitude": "2.47170000" + }, + { + "id": "44117", + "name": "Moislains", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.98820000", + "longitude": "2.96404000" + }, + { + "id": "44129", + "name": "Monchecourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30413000", + "longitude": "3.21029000" + }, + { + "id": "44130", + "name": "Monchy-Saint-Éloi", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29042000", + "longitude": "2.46739000" + }, + { + "id": "44148", + "name": "Mons-en-Barœul", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63333000", + "longitude": "3.11667000" + }, + { + "id": "44149", + "name": "Mons-en-Pévèle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47926000", + "longitude": "3.09767000" + }, + { + "id": "44154", + "name": "Mont-Bernanchon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58333000", + "longitude": "2.58333000" + }, + { + "id": "44158", + "name": "Mont-Saint-Éloi", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35105000", + "longitude": "2.69249000" + }, + { + "id": "44182", + "name": "Montataire", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25900000", + "longitude": "2.43777000" + }, + { + "id": "44209", + "name": "Montcornet", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.69526000", + "longitude": "4.01667000" + }, + { + "id": "44214", + "name": "Montdidier", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.64800000", + "longitude": "2.56991000" + }, + { + "id": "44225", + "name": "Montescourt-Lizerolles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.73828000", + "longitude": "3.25736000" + }, + { + "id": "44258", + "name": "Montigny-en-Gohelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.42540000", + "longitude": "2.93902000" + }, + { + "id": "44259", + "name": "Montigny-en-Ostrevent", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.36667000", + "longitude": "3.18333000" + }, + { + "id": "44278", + "name": "Montmacq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48181000", + "longitude": "2.90257000" + }, + { + "id": "44308", + "name": "Montreuil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.46374000", + "longitude": "1.76348000" + }, + { + "id": "44310", + "name": "Montreuil-aux-Lions", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02124000", + "longitude": "3.19543000" + }, + { + "id": "44343", + "name": "Morbecque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69365000", + "longitude": "2.51787000" + }, + { + "id": "44350", + "name": "Moreuil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.77457000", + "longitude": "2.48273000" + }, + { + "id": "44353", + "name": "Morienval", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29770000", + "longitude": "2.92078000" + }, + { + "id": "44369", + "name": "Mortagne-du-Nord", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50352000", + "longitude": "3.45352000" + }, + { + "id": "44384", + "name": "Mouchin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51639000", + "longitude": "3.29627000" + }, + { + "id": "44414", + "name": "Mouvaux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69944000", + "longitude": "3.13429000" + }, + { + "id": "44416", + "name": "Mouy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31535000", + "longitude": "2.31954000" + }, + { + "id": "44509", + "name": "Nanteuil-le-Haudouin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14082000", + "longitude": "2.81142000" + }, + { + "id": "44513", + "name": "Naours", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.03682000", + "longitude": "2.27691000" + }, + { + "id": "44701", + "name": "Nœux-les-Mines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48333000", + "longitude": "2.66667000" + }, + { + "id": "44532", + "name": "Nesle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.75888000", + "longitude": "2.91133000" + }, + { + "id": "44533", + "name": "Nesles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.62588000", + "longitude": "1.65641000" + }, + { + "id": "44534", + "name": "Nesles-la-Montagne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01964000", + "longitude": "3.42607000" + }, + { + "id": "44537", + "name": "Neuf-Berquin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.66065000", + "longitude": "2.67213000" + }, + { + "id": "44541", + "name": "Neufchâtel-Hardelot", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.62018000", + "longitude": "1.64223000" + }, + { + "id": "44548", + "name": "Neuilly-en-Thelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22445000", + "longitude": "2.28525000" + }, + { + "id": "44547", + "name": "Neuilly-Saint-Front", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17012000", + "longitude": "3.26393000" + }, + { + "id": "44551", + "name": "Neuilly-sous-Clermont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34437000", + "longitude": "2.41030000" + }, + { + "id": "44567", + "name": "Neuville-en-Ferrain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.74839000", + "longitude": "3.15676000" + }, + { + "id": "44563", + "name": "Neuville-Saint-Rémy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.18618000", + "longitude": "3.22404000" + }, + { + "id": "44564", + "name": "Neuville-Saint-Vaast", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35756000", + "longitude": "2.76261000" + }, + { + "id": "44570", + "name": "Neuville-sur-Escaut", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30000000", + "longitude": "3.35000000" + }, + { + "id": "44594", + "name": "Nieppe", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.70425000", + "longitude": "2.83506000" + }, + { + "id": "44607", + "name": "Noailles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32866000", + "longitude": "2.20024000" + }, + { + "id": "44614", + "name": "Nogent-l’Artaud", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96560000", + "longitude": "3.32178000" + }, + { + "id": "44616", + "name": "Nogent-sur-Oise", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27158000", + "longitude": "2.47074000" + }, + { + "id": "44619", + "name": "Nogentel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01750000", + "longitude": "3.40250000" + }, + { + "id": "44634", + "name": "Nomain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.49857000", + "longitude": "3.24991000" + }, + { + "id": "44640", + "name": "Nord", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33333000", + "longitude": "3.36197000" + }, + { + "id": "44643", + "name": "Norrent-Fontes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58333000", + "longitude": "2.40000000" + }, + { + "id": "44646", + "name": "Nortkerque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.87519000", + "longitude": "2.02464000" + }, + { + "id": "44660", + "name": "Nouvion", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.20000000", + "longitude": "1.78333000" + }, + { + "id": "44675", + "name": "Noyelles-Godault", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41753000", + "longitude": "2.99306000" + }, + { + "id": "44676", + "name": "Noyelles-lès-Vermelles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.49001000", + "longitude": "2.72628000" + }, + { + "id": "44677", + "name": "Noyelles-sous-Lens", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43084000", + "longitude": "2.87221000" + }, + { + "id": "44680", + "name": "Noyon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.58333000", + "longitude": "3.00000000" + }, + { + "id": "44722", + "name": "Ognes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.61244000", + "longitude": "3.19340000" + }, + { + "id": "44724", + "name": "Oignies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.46331000", + "longitude": "2.99376000" + }, + { + "id": "44726", + "name": "Oisemont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.95587000", + "longitude": "1.76703000" + }, + { + "id": "44730", + "name": "Oisy-le-Verger", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.25047000", + "longitude": "3.12330000" + }, + { + "id": "44740", + "name": "Omissy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.87760000", + "longitude": "3.31235000" + }, + { + "id": "44744", + "name": "Onnaing", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.38584000", + "longitude": "3.59963000" + }, + { + "id": "44745", + "name": "Ons-en-Bray", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41631000", + "longitude": "1.92302000" + }, + { + "id": "44759", + "name": "Orchies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.46667000", + "longitude": "3.23333000" + }, + { + "id": "44769", + "name": "Origny-en-Thiérache", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.89327000", + "longitude": "4.01644000" + }, + { + "id": "44768", + "name": "Origny-Sainte-Benoite", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.83333000", + "longitude": "3.50000000" + }, + { + "id": "44782", + "name": "Orry-la-Ville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13345000", + "longitude": "2.51139000" + }, + { + "id": "44794", + "name": "Ostricourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45145000", + "longitude": "3.03417000" + }, + { + "id": "44813", + "name": "Outreau", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.70535000", + "longitude": "1.58970000" + }, + { + "id": "44818", + "name": "Oye-Plage", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.97713000", + "longitude": "2.04276000" + }, + { + "id": "44862", + "name": "Pas-de-Calais", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48280000", + "longitude": "2.28664000" + }, + { + "id": "44864", + "name": "Pasly", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40167000", + "longitude": "3.29631000" + }, + { + "id": "45350", + "name": "Pérenchies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67013000", + "longitude": "2.97024000" + }, + { + "id": "45363", + "name": "Péronne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.93218000", + "longitude": "2.93630000" + }, + { + "id": "45365", + "name": "Péroy-les-Gombries", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16248000", + "longitude": "2.84556000" + }, + { + "id": "44880", + "name": "Pecquencourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37850000", + "longitude": "3.21277000" + }, + { + "id": "44891", + "name": "Pendé", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.16055000", + "longitude": "1.58541000" + }, + { + "id": "44897", + "name": "Pernes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48437000", + "longitude": "2.41253000" + }, + { + "id": "44919", + "name": "Petite-Forêt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.36667000", + "longitude": "3.48333000" + }, + { + "id": "44942", + "name": "Phalempin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51691000", + "longitude": "3.01584000" + }, + { + "id": "44947", + "name": "Picquigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.94413000", + "longitude": "2.14376000" + }, + { + "id": "44956", + "name": "Pierrefonds", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34878000", + "longitude": "2.97790000" + }, + { + "id": "44972", + "name": "Pinon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48916000", + "longitude": "3.44703000" + }, + { + "id": "44988", + "name": "Plailly", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10288000", + "longitude": "2.58549000" + }, + { + "id": "45139", + "name": "Poix-de-Picardie", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.78333000", + "longitude": "1.98333000" + }, + { + "id": "45140", + "name": "Poix-du-Nord", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.18927000", + "longitude": "3.60956000" + }, + { + "id": "45160", + "name": "Ponchon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34652000", + "longitude": "2.19677000" + }, + { + "id": "45196", + "name": "Pont-à-Marcq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.52213000", + "longitude": "3.11441000" + }, + { + "id": "45198", + "name": "Pont-à-Vendin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47358000", + "longitude": "2.88884000" + }, + { + "id": "45180", + "name": "Pont-de-Metz", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.87820000", + "longitude": "2.24266000" + }, + { + "id": "45168", + "name": "Pont-Remy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.05000000", + "longitude": "1.91667000" + }, + { + "id": "45174", + "name": "Pont-Sainte-Maxence", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30168000", + "longitude": "2.60467000" + }, + { + "id": "45192", + "name": "Pont-sur-Sambre", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.22195000", + "longitude": "3.84693000" + }, + { + "id": "45216", + "name": "Pontpoint", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30000000", + "longitude": "2.65000000" + }, + { + "id": "45258", + "name": "Poulainville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.94745000", + "longitude": "2.31373000" + }, + { + "id": "45307", + "name": "Précy-sur-Oise", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20779000", + "longitude": "2.37266000" + }, + { + "id": "45310", + "name": "Prémesques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.65572000", + "longitude": "2.95162000" + }, + { + "id": "45312", + "name": "Préseau", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31122000", + "longitude": "3.57434000" + }, + { + "id": "45295", + "name": "Prouvy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31793000", + "longitude": "3.45096000" + }, + { + "id": "45296", + "name": "Proville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.16137000", + "longitude": "3.20629000" + }, + { + "id": "45297", + "name": "Provin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.51430000", + "longitude": "2.90794000" + }, + { + "id": "45371", + "name": "Quaëdypre", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.93527000", + "longitude": "2.45445000" + }, + { + "id": "45370", + "name": "Quarouble", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.38634000", + "longitude": "3.62306000" + }, + { + "id": "45374", + "name": "Quend", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31584000", + "longitude": "1.63609000" + }, + { + "id": "45377", + "name": "Quesnoy-sur-Deûle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.71359000", + "longitude": "2.99996000" + }, + { + "id": "45383", + "name": "Quevauvillers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.82376000", + "longitude": "2.08431000" + }, + { + "id": "45404", + "name": "Quiévrechain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39172000", + "longitude": "3.66815000" + }, + { + "id": "45405", + "name": "Quiévy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.16804000", + "longitude": "3.42834000" + }, + { + "id": "45413", + "name": "Racquinghem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69245000", + "longitude": "2.35736000" + }, + { + "id": "45414", + "name": "Radinghem-en-Weppes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.61884000", + "longitude": "2.90924000" + }, + { + "id": "45418", + "name": "Raillencourt-Sainte-Olle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.18333000", + "longitude": "3.16667000" + }, + { + "id": "45419", + "name": "Raimbeaucourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43466000", + "longitude": "3.09333000" + }, + { + "id": "45420", + "name": "Raismes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.38333000", + "longitude": "3.48333000" + }, + { + "id": "45426", + "name": "Ranchicourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.43559000", + "longitude": "2.55690000" + }, + { + "id": "45428", + "name": "Rang-du-Fliers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41708000", + "longitude": "1.64431000" + }, + { + "id": "45430", + "name": "Rantigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32758000", + "longitude": "2.44244000" + }, + { + "id": "45434", + "name": "Ravenel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51523000", + "longitude": "2.50192000" + }, + { + "id": "45682", + "name": "Râches", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41706000", + "longitude": "3.13635000" + }, + { + "id": "45697", + "name": "Rœulx", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30000000", + "longitude": "3.33333000" + }, + { + "id": "45698", + "name": "Rœux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.29526000", + "longitude": "2.90073000" + }, + { + "id": "45441", + "name": "Recquignies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.28396000", + "longitude": "4.03722000" + }, + { + "id": "45455", + "name": "Remy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.43333000", + "longitude": "2.71667000" + }, + { + "id": "45459", + "name": "Renescure", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.72754000", + "longitude": "2.36801000" + }, + { + "id": "45464", + "name": "Ressons-sur-Matz", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.53858000", + "longitude": "2.74416000" + }, + { + "id": "45471", + "name": "Rety", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.80000000", + "longitude": "1.76667000" + }, + { + "id": "45479", + "name": "Rexpoëde", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.93926000", + "longitude": "2.53914000" + }, + { + "id": "45491", + "name": "Ribemont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.79540000", + "longitude": "3.45893000" + }, + { + "id": "45494", + "name": "Richebourg", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58333000", + "longitude": "2.73333000" + }, + { + "id": "45495", + "name": "Richebourg-l'Avoué", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56999000", + "longitude": "2.74884000" + }, + { + "id": "45501", + "name": "Rieulay", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37856000", + "longitude": "3.25284000" + }, + { + "id": "45505", + "name": "Rieux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30000000", + "longitude": "2.51667000" + }, + { + "id": "45508", + "name": "Rieux-en-Cambrésis", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.20069000", + "longitude": "3.35232000" + }, + { + "id": "45515", + "name": "Rinxent", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.80714000", + "longitude": "1.72899000" + }, + { + "id": "45528", + "name": "Rivery", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.90328000", + "longitude": "2.32235000" + }, + { + "id": "45531", + "name": "Rivière", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.23316000", + "longitude": "2.69200000" + }, + { + "id": "45536", + "name": "Robecq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.59608000", + "longitude": "2.56262000" + }, + { + "id": "45564", + "name": "Roisel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.94768000", + "longitude": "3.09973000" + }, + { + "id": "45585", + "name": "Ronchin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.59883000", + "longitude": "3.09056000" + }, + { + "id": "45586", + "name": "Roncq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.75330000", + "longitude": "3.12131000" + }, + { + "id": "45587", + "name": "Roost-Warendin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41920000", + "longitude": "3.10374000" + }, + { + "id": "45595", + "name": "Roquetoire", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67029000", + "longitude": "2.34307000" + }, + { + "id": "45604", + "name": "Rosières-en-Santerre", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.81433000", + "longitude": "2.70095000" + }, + { + "id": "45612", + "name": "Rosult", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45888000", + "longitude": "3.35902000" + }, + { + "id": "45616", + "name": "Roubaix", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69421000", + "longitude": "3.17456000" + }, + { + "id": "45635", + "name": "Rousies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27346000", + "longitude": "4.00382000" + }, + { + "id": "45642", + "name": "Rouvroy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39247000", + "longitude": "2.90396000" + }, + { + "id": "45648", + "name": "Roye", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.70038000", + "longitude": "2.78959000" + }, + { + "id": "45654", + "name": "Rozoy-sur-Serre", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.70956000", + "longitude": "4.12902000" + }, + { + "id": "45659", + "name": "Rue", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27150000", + "longitude": "1.67163000" + }, + { + "id": "45668", + "name": "Ruitz", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.46643000", + "longitude": "2.58876000" + }, + { + "id": "45670", + "name": "Rumegies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48877000", + "longitude": "3.35131000" + }, + { + "id": "45673", + "name": "Rumilly-en-Cambrésis", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.12691000", + "longitude": "3.21874000" + }, + { + "id": "45674", + "name": "Ruminghem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.85922000", + "longitude": "2.15838000" + }, + { + "id": "45709", + "name": "Sacy-le-Grand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35479000", + "longitude": "2.54461000" + }, + { + "id": "45717", + "name": "Sailly-Flibeaucourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.18419000", + "longitude": "1.77180000" + }, + { + "id": "45718", + "name": "Sailly-Labourse", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50120000", + "longitude": "2.69708000" + }, + { + "id": "45719", + "name": "Sailly-lez-Lannoy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.65000000", + "longitude": "3.21667000" + }, + { + "id": "45720", + "name": "Sailly-sur-la-Lys", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.65820000", + "longitude": "2.76872000" + }, + { + "id": "45722", + "name": "Sainghin-en-Mélantois", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58836000", + "longitude": "3.16619000" + }, + { + "id": "45723", + "name": "Sainghin-en-Weppes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.56407000", + "longitude": "2.89804000" + }, + { + "id": "45724", + "name": "Sains-du-Nord", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.09377000", + "longitude": "4.00898000" + }, + { + "id": "45725", + "name": "Sains-en-Amiénois", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.81716000", + "longitude": "2.31862000" + }, + { + "id": "45726", + "name": "Sains-en-Gohelle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.44512000", + "longitude": "2.68301000" + }, + { + "id": "45744", + "name": "Saint-Amand-les-Eaux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.44718000", + "longitude": "3.43076000" + }, + { + "id": "45766", + "name": "Saint-André-lez-Lille", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.66667000", + "longitude": "3.05000000" + }, + { + "id": "45779", + "name": "Saint-Aubert", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.20805000", + "longitude": "3.41727000" + }, + { + "id": "45787", + "name": "Saint-Aubin-en-Bray", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.42051000", + "longitude": "1.87782000" + }, + { + "id": "46642", + "name": "Saint-Étienne-au-Mont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67794000", + "longitude": "1.63084000" + }, + { + "id": "45878", + "name": "Saint-Crépin-Ibouvillers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26283000", + "longitude": "2.07793000" + }, + { + "id": "45922", + "name": "Saint-Erme-Outre-et-Ramecourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51464000", + "longitude": "3.84060000" + }, + { + "id": "45939", + "name": "Saint-Folquin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.94473000", + "longitude": "2.12433000" + }, + { + "id": "46023", + "name": "Saint-Germer-de-Fly", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44281000", + "longitude": "1.77986000" + }, + { + "id": "46039", + "name": "Saint-Gobain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.59572000", + "longitude": "3.37750000" + }, + { + "id": "46066", + "name": "Saint-Hilaire-lez-Cambrai", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.18419000", + "longitude": "3.41327000" + }, + { + "id": "46079", + "name": "Saint-Jans-Cappel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.76387000", + "longitude": "2.72227000" + }, + { + "id": "46130", + "name": "Saint-Josse", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.46801000", + "longitude": "1.66180000" + }, + { + "id": "46161", + "name": "Saint-Just-en-Chaussée", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50503000", + "longitude": "2.43285000" + }, + { + "id": "46173", + "name": "Saint-Laurent-Blangy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.29446000", + "longitude": "2.80698000" + }, + { + "id": "46216", + "name": "Saint-Léger-lès-Domart", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.05208000", + "longitude": "2.14067000" + }, + { + "id": "46221", + "name": "Saint-Léonard", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69058000", + "longitude": "1.62536000" + }, + { + "id": "46267", + "name": "Saint-Martin-au-Laërt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.75179000", + "longitude": "2.24051000" + }, + { + "id": "46261", + "name": "Saint-Martin-Boulogne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.72691000", + "longitude": "1.61864000" + }, + { + "id": "46264", + "name": "Saint-Martin-Longueau", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34281000", + "longitude": "2.60276000" + }, + { + "id": "46324", + "name": "Saint-Maximin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22182000", + "longitude": "2.45359000" + }, + { + "id": "46334", + "name": "Saint-Michel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.91952000", + "longitude": "4.13278000" + }, + { + "id": "46362", + "name": "Saint-Nicolas", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30413000", + "longitude": "2.77939000" + }, + { + "id": "46373", + "name": "Saint-Omer", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.74834000", + "longitude": "2.26091000" + }, + { + "id": "46374", + "name": "Saint-Omer-en-Chaussée", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.53142000", + "longitude": "2.00335000" + }, + { + "id": "46378", + "name": "Saint-Ouen", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.03819000", + "longitude": "2.12088000" + }, + { + "id": "46401", + "name": "Saint-Paul", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.42962000", + "longitude": "2.00755000" + }, + { + "id": "46456", + "name": "Saint-Pol-sur-Mer", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.03116000", + "longitude": "2.33983000" + }, + { + "id": "46457", + "name": "Saint-Pol-sur-Ternoise", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.38113000", + "longitude": "2.33407000" + }, + { + "id": "46476", + "name": "Saint-Python", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.19001000", + "longitude": "3.48027000" + }, + { + "id": "46485", + "name": "Saint-Quentin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.84889000", + "longitude": "3.28757000" + }, + { + "id": "46497", + "name": "Saint-Riquier", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.13235000", + "longitude": "1.94755000" + }, + { + "id": "46525", + "name": "Saint-Saulve", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37141000", + "longitude": "3.55612000" + }, + { + "id": "46528", + "name": "Saint-Sauveur", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31857000", + "longitude": "2.78321000" + }, + { + "id": "46557", + "name": "Saint-Souplet", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.05639000", + "longitude": "3.53179000" + }, + { + "id": "46559", + "name": "Saint-Sulpice", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35049000", + "longitude": "2.12314000" + }, + { + "id": "46572", + "name": "Saint-Sylvestre-Cappel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.77625000", + "longitude": "2.55622000" + }, + { + "id": "46597", + "name": "Saint-Valery-sur-Somme", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.18333000", + "longitude": "1.63333000" + }, + { + "id": "46604", + "name": "Saint-Venant", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.61955000", + "longitude": "2.53946000" + }, + { + "id": "46667", + "name": "Sainte-Catherine", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30757000", + "longitude": "2.76404000" + }, + { + "id": "46691", + "name": "Sainte-Geneviève", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28920000", + "longitude": "2.19904000" + }, + { + "id": "46708", + "name": "Sainte-Marie-Kerque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.89917000", + "longitude": "2.13664000" + }, + { + "id": "46747", + "name": "Saleux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.85630000", + "longitude": "2.23698000" + }, + { + "id": "46758", + "name": "Sallaumines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.41749000", + "longitude": "2.86174000" + }, + { + "id": "46765", + "name": "Salomé", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.53352000", + "longitude": "2.84709000" + }, + { + "id": "46767", + "name": "Salouël", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.86988000", + "longitude": "2.24340000" + }, + { + "id": "46777", + "name": "Saméon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47135000", + "longitude": "3.33544000" + }, + { + "id": "46772", + "name": "Samer", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63840000", + "longitude": "1.74628000" + }, + { + "id": "46787", + "name": "Sangatte", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.94564000", + "longitude": "1.75321000" + }, + { + "id": "46799", + "name": "Santes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.59316000", + "longitude": "2.96289000" + }, + { + "id": "46819", + "name": "Sars-Poteries", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.16928000", + "longitude": "4.02676000" + }, + { + "id": "46847", + "name": "Saultain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33676000", + "longitude": "3.57723000" + }, + { + "id": "46851", + "name": "Saulzoir", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.24057000", + "longitude": "3.44430000" + }, + { + "id": "46888", + "name": "Savy-Berlette", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35249000", + "longitude": "2.56456000" + }, + { + "id": "47143", + "name": "Sérifontaine", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35440000", + "longitude": "1.76873000" + }, + { + "id": "46909", + "name": "Seboncourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.95273000", + "longitude": "3.47586000" + }, + { + "id": "46910", + "name": "Sebourg", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.34249000", + "longitude": "3.64352000" + }, + { + "id": "46911", + "name": "Seclin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.54873000", + "longitude": "3.02731000" + }, + { + "id": "46935", + "name": "Selvigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.07971000", + "longitude": "3.34899000" + }, + { + "id": "46940", + "name": "Senlis", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20724000", + "longitude": "2.58661000" + }, + { + "id": "46952", + "name": "Sequedin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.62575000", + "longitude": "2.98276000" + }, + { + "id": "46962", + "name": "Serques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.79338000", + "longitude": "2.20134000" + }, + { + "id": "46998", + "name": "Silly-le-Long", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10749000", + "longitude": "2.79226000" + }, + { + "id": "47003", + "name": "Sin-le-Noble", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.36159000", + "longitude": "3.13113000" + }, + { + "id": "47004", + "name": "Sinceny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.59619000", + "longitude": "3.24679000" + }, + { + "id": "47008", + "name": "Sissonne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.57107000", + "longitude": "3.89369000" + }, + { + "id": "47015", + "name": "Socx", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.93571000", + "longitude": "2.42422000" + }, + { + "id": "47018", + "name": "Soissons", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38167000", + "longitude": "3.32361000" + }, + { + "id": "47024", + "name": "Solesmes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.18468000", + "longitude": "3.49799000" + }, + { + "id": "47033", + "name": "Solre-le-Château", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.17432000", + "longitude": "4.08898000" + }, + { + "id": "47034", + "name": "Somain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35961000", + "longitude": "3.28108000" + }, + { + "id": "47035", + "name": "Somme", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.93141000", + "longitude": "2.27639000" + }, + { + "id": "47038", + "name": "Songeons", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54916000", + "longitude": "1.85361000" + }, + { + "id": "47058", + "name": "Souchez", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39291000", + "longitude": "2.73984000" + }, + { + "id": "47094", + "name": "Spycker", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.96915000", + "longitude": "2.32184000" + }, + { + "id": "47099", + "name": "Steenbecque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67421000", + "longitude": "2.48442000" + }, + { + "id": "47100", + "name": "Steene", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.95228000", + "longitude": "2.36813000" + }, + { + "id": "47101", + "name": "Steenvoorde", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.81046000", + "longitude": "2.58244000" + }, + { + "id": "47102", + "name": "Steenwerck", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.70199000", + "longitude": "2.77829000" + }, + { + "id": "47167", + "name": "Talmas", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.03049000", + "longitude": "2.32554000" + }, + { + "id": "47184", + "name": "Tatinghem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.74317000", + "longitude": "2.20724000" + }, + { + "id": "47417", + "name": "Téteghem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.01859000", + "longitude": "2.44454000" + }, + { + "id": "47197", + "name": "Templemars", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.57387000", + "longitude": "3.05437000" + }, + { + "id": "47198", + "name": "Templeuve-en-Pévèle", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.52336000", + "longitude": "3.17809000" + }, + { + "id": "47207", + "name": "Tergnier", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.65607000", + "longitude": "3.30107000" + }, + { + "id": "47267", + "name": "Thélus", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35441000", + "longitude": "2.80146000" + }, + { + "id": "47271", + "name": "Thérouanne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63695000", + "longitude": "2.25838000" + }, + { + "id": "47226", + "name": "Thiant", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30480000", + "longitude": "3.44796000" + }, + { + "id": "47230", + "name": "Thiers-sur-Thève", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15252000", + "longitude": "2.57051000" + }, + { + "id": "47239", + "name": "Thiverny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25180000", + "longitude": "2.43609000" + }, + { + "id": "47256", + "name": "Thourotte", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47591000", + "longitude": "2.88210000" + }, + { + "id": "47260", + "name": "Thumeries", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47662000", + "longitude": "3.05500000" + }, + { + "id": "47261", + "name": "Thun-Saint-Amand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47276000", + "longitude": "3.45115000" + }, + { + "id": "47286", + "name": "Tillé", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46415000", + "longitude": "2.11038000" + }, + { + "id": "47284", + "name": "Tilloy-lès-Mofflaines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.27519000", + "longitude": "2.81456000" + }, + { + "id": "47287", + "name": "Tilques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.77712000", + "longitude": "2.19948000" + }, + { + "id": "47308", + "name": "Toufflers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.66039000", + "longitude": "3.23358000" + }, + { + "id": "47320", + "name": "Tourcoing", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.72391000", + "longitude": "3.16117000" + }, + { + "id": "47325", + "name": "Tournehem-sur-la-Hem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.80000000", + "longitude": "2.05000000" + }, + { + "id": "47345", + "name": "Tracy-le-Mont", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47225000", + "longitude": "3.00939000" + }, + { + "id": "47399", + "name": "Trélon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.05805000", + "longitude": "4.10200000" + }, + { + "id": "47365", + "name": "Tressin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.61750000", + "longitude": "3.19354000" + }, + { + "id": "47368", + "name": "Tricot", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.56080000", + "longitude": "2.58789000" + }, + { + "id": "47369", + "name": "Trie-Château", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28540000", + "longitude": "1.82129000" + }, + { + "id": "47376", + "name": "Trith-Saint-Léger", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.31667000", + "longitude": "3.48333000" + }, + { + "id": "47379", + "name": "Troissereux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47998000", + "longitude": "2.04485000" + }, + { + "id": "47381", + "name": "Trosly-Breuil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40000000", + "longitude": "2.96667000" + }, + { + "id": "47425", + "name": "Ully-Saint-Georges", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27914000", + "longitude": "2.28094000" + }, + { + "id": "47444", + "name": "Uxem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.02170000", + "longitude": "2.48376000" + }, + { + "id": "47456", + "name": "Vailly-sur-Aisne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40834000", + "longitude": "3.51631000" + }, + { + "id": "47474", + "name": "Valenciennes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.35909000", + "longitude": "3.52506000" + }, + { + "id": "47540", + "name": "Vaulx-Vraucourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.14910000", + "longitude": "2.90830000" + }, + { + "id": "47542", + "name": "Vaumoise", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23525000", + "longitude": "2.98077000" + }, + { + "id": "47569", + "name": "Vendegies-sur-Écaillon", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.26224000", + "longitude": "3.51256000" + }, + { + "id": "47573", + "name": "Vendeville", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.57693000", + "longitude": "3.07870000" + }, + { + "id": "47575", + "name": "Vendin-lès-Béthune", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.54012000", + "longitude": "2.60043000" + }, + { + "id": "47574", + "name": "Vendin-le-Vieil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.47385000", + "longitude": "2.86674000" + }, + { + "id": "47582", + "name": "Venette", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41705000", + "longitude": "2.80317000" + }, + { + "id": "47584", + "name": "Venizel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36583000", + "longitude": "3.39321000" + }, + { + "id": "47589", + "name": "Ver-sur-Launette", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10495000", + "longitude": "2.68409000" + }, + { + "id": "47591", + "name": "Verberie", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31115000", + "longitude": "2.73210000" + }, + { + "id": "47602", + "name": "Verlinghem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.68291000", + "longitude": "2.99907000" + }, + { + "id": "47603", + "name": "Vermand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.87550000", + "longitude": "3.14959000" + }, + { + "id": "47604", + "name": "Vermelles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48949000", + "longitude": "2.74739000" + }, + { + "id": "47612", + "name": "Verneuil-en-Halatte", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27914000", + "longitude": "2.52410000" + }, + { + "id": "47628", + "name": "Verquin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.50240000", + "longitude": "2.63888000" + }, + { + "id": "47641", + "name": "Verton", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.40234000", + "longitude": "1.64766000" + }, + { + "id": "47644", + "name": "Vervins", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.83510000", + "longitude": "3.90925000" + }, + { + "id": "47667", + "name": "Vic-sur-Aisne", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40609000", + "longitude": "3.11223000" + }, + { + "id": "47671", + "name": "Vicq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.40738000", + "longitude": "3.60348000" + }, + { + "id": "47677", + "name": "Vieille-Église", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.92823000", + "longitude": "2.07671000" + }, + { + "id": "47686", + "name": "Viesly", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.15345000", + "longitude": "3.46236000" + }, + { + "id": "47687", + "name": "Vieux-Berquin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.69489000", + "longitude": "2.64444000" + }, + { + "id": "47690", + "name": "Vieux-Condé", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.45944000", + "longitude": "3.56738000" + }, + { + "id": "47694", + "name": "Vignacourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01236000", + "longitude": "2.19743000" + }, + { + "id": "47766", + "name": "Villeneuve-d'Ascq", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.61669000", + "longitude": "3.16664000" + }, + { + "id": "47778", + "name": "Villeneuve-les-Sablons", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23753000", + "longitude": "2.07782000" + }, + { + "id": "47764", + "name": "Villeneuve-Saint-Germain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37976000", + "longitude": "3.35952000" + }, + { + "id": "47795", + "name": "Villers-Bocage", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.99810000", + "longitude": "2.31683000" + }, + { + "id": "47797", + "name": "Villers-Bretonneux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.86844000", + "longitude": "2.51688000" + }, + { + "id": "47798", + "name": "Villers-Cotterêts", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25311000", + "longitude": "3.09003000" + }, + { + "id": "47803", + "name": "Villers-en-Cauchies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.22574000", + "longitude": "3.40362000" + }, + { + "id": "47799", + "name": "Villers-Outréaux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.03590000", + "longitude": "3.29947000" + }, + { + "id": "47800", + "name": "Villers-Pol", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.28460000", + "longitude": "3.61449000" + }, + { + "id": "47801", + "name": "Villers-Saint-Paul", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28885000", + "longitude": "2.48968000" + }, + { + "id": "47807", + "name": "Villers-sous-Saint-Leu", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21235000", + "longitude": "2.39485000" + }, + { + "id": "47808", + "name": "Villers-sur-Coudun", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48308000", + "longitude": "2.80457000" + }, + { + "id": "47841", + "name": "Vimy", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37243000", + "longitude": "2.81034000" + }, + { + "id": "47847", + "name": "Vineuil-Saint-Firmin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20024000", + "longitude": "2.49567000" + }, + { + "id": "47852", + "name": "Violaines", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.54160000", + "longitude": "2.78860000" + }, + { + "id": "47868", + "name": "Viry-Noureuil", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63214000", + "longitude": "3.24322000" + }, + { + "id": "47872", + "name": "Vitry-en-Artois", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.32660000", + "longitude": "2.97999000" + }, + { + "id": "47919", + "name": "Vred", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39455000", + "longitude": "3.23029000" + }, + { + "id": "47935", + "name": "Wahagnies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.48665000", + "longitude": "3.03448000" + }, + { + "id": "47936", + "name": "Wailly", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.52287000", + "longitude": "2.06792000" + }, + { + "id": "47939", + "name": "Walincourt-Selvigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.06667000", + "longitude": "3.33333000" + }, + { + "id": "47940", + "name": "Wallers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.37432000", + "longitude": "3.39188000" + }, + { + "id": "47942", + "name": "Wambrechies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.68276000", + "longitude": "3.04784000" + }, + { + "id": "47943", + "name": "Wandignies-Hamage", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.39609000", + "longitude": "3.31450000" + }, + { + "id": "47946", + "name": "Wardrecques", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.71108000", + "longitude": "2.34483000" + }, + { + "id": "47947", + "name": "Wargnies-le-Grand", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.30751000", + "longitude": "3.66038000" + }, + { + "id": "47948", + "name": "Warhem", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.97592000", + "longitude": "2.49303000" + }, + { + "id": "47949", + "name": "Warluis", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38874000", + "longitude": "2.14220000" + }, + { + "id": "47951", + "name": "Wasquehal", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.67043000", + "longitude": "3.13382000" + }, + { + "id": "47953", + "name": "Wassigny", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01334000", + "longitude": "3.59988000" + }, + { + "id": "47955", + "name": "Watten", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.83685000", + "longitude": "2.21346000" + }, + { + "id": "47956", + "name": "Wattignies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.58639000", + "longitude": "3.04394000" + }, + { + "id": "47957", + "name": "Wattrelos", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.70118000", + "longitude": "3.21812000" + }, + { + "id": "47959", + "name": "Wavignies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54748000", + "longitude": "2.36032000" + }, + { + "id": "47960", + "name": "Wavrechain-sous-Denain", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.33224000", + "longitude": "3.41252000" + }, + { + "id": "47961", + "name": "Wavrin", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.57386000", + "longitude": "2.93630000" + }, + { + "id": "47962", + "name": "Waziers", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.38717000", + "longitude": "3.11490000" + }, + { + "id": "47964", + "name": "Wervicq-Sud", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.77450000", + "longitude": "3.04207000" + }, + { + "id": "47970", + "name": "Wignehies", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01550000", + "longitude": "4.00913000" + }, + { + "id": "47972", + "name": "Willems", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.63206000", + "longitude": "3.23840000" + }, + { + "id": "47974", + "name": "Wimereux", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.76963000", + "longitude": "1.61139000" + }, + { + "id": "47975", + "name": "Wimille", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.76418000", + "longitude": "1.63137000" + }, + { + "id": "47979", + "name": "Wingles", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.49382000", + "longitude": "2.85500000" + }, + { + "id": "47980", + "name": "Winnezeele", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.84100000", + "longitude": "2.55118000" + }, + { + "id": "47983", + "name": "Wissant", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.88530000", + "longitude": "1.66263000" + }, + { + "id": "47990", + "name": "Wizernes", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.71170000", + "longitude": "2.24316000" + }, + { + "id": "47992", + "name": "Woincourt", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.06630000", + "longitude": "1.53676000" + }, + { + "id": "47996", + "name": "Wormhout", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.88129000", + "longitude": "2.46901000" + }, + { + "id": "48025", + "name": "Zegerscappel", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.88333000", + "longitude": "2.40000000" + }, + { + "id": "48029", + "name": "Zutkerque", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "50.85303000", + "longitude": "2.06818000" + }, + { + "id": "48030", + "name": "Zuydcoote", + "state_id": 4828, + "state_code": "HDF", + "country_id": 75, + "country_code": "FR", + "latitude": "51.06096000", + "longitude": "2.49338000" + }, + { + "id": "39241", + "name": "Ablon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.39214000", + "longitude": "0.29584000" + }, + { + "id": "39255", + "name": "Acquigny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17350000", + "longitude": "1.17650000" + }, + { + "id": "39259", + "name": "Agneaux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11905000", + "longitude": "-1.10610000" + }, + { + "id": "39262", + "name": "Agon-Coutainville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04167000", + "longitude": "-1.57500000" + }, + { + "id": "39310", + "name": "Alençon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43476000", + "longitude": "0.09311000" + }, + { + "id": "39317", + "name": "Alizay", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32158000", + "longitude": "1.17854000" + }, + { + "id": "39362", + "name": "Amfreville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25000000", + "longitude": "-0.23333000" + }, + { + "id": "39363", + "name": "Amfreville-la-Mi-Voie", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40755000", + "longitude": "1.13871000" + }, + { + "id": "39393", + "name": "Andé", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23163000", + "longitude": "1.24088000" + }, + { + "id": "39398", + "name": "Angerville-l’Orcher", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.58833000", + "longitude": "0.28191000" + }, + { + "id": "39477", + "name": "Argences", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12635000", + "longitude": "-0.16644000" + }, + { + "id": "39479", + "name": "Argentan", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.74441000", + "longitude": "-0.02023000" + }, + { + "id": "39502", + "name": "Arnières-sur-Iton", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.99678000", + "longitude": "1.10384000" + }, + { + "id": "39509", + "name": "Arques-la-Bataille", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.88122000", + "longitude": "1.12875000" + }, + { + "id": "39558", + "name": "Athis-de-l'Orne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81667000", + "longitude": "-0.50000000" + }, + { + "id": "39568", + "name": "Aube-sur-Rîle", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73920000", + "longitude": "0.55161000" + }, + { + "id": "39575", + "name": "Aubevoye", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17097000", + "longitude": "1.33537000" + }, + { + "id": "39603", + "name": "Auffay", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.71881000", + "longitude": "1.09911000" + }, + { + "id": "39615", + "name": "Aumale", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.76985000", + "longitude": "1.75587000" + }, + { + "id": "39619", + "name": "Aunay-sur-Odon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02012000", + "longitude": "-0.63238000" + }, + { + "id": "39635", + "name": "Authie", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20615000", + "longitude": "-0.43191000" + }, + { + "id": "39651", + "name": "Auzebosc", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.59565000", + "longitude": "0.72850000" + }, + { + "id": "39673", + "name": "Aviron", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05000000", + "longitude": "1.11667000" + }, + { + "id": "39678", + "name": "Avranches", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68436000", + "longitude": "-1.35686000" + }, + { + "id": "48046", + "name": "Écouché", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71751000", + "longitude": "-0.12409000" + }, + { + "id": "48051", + "name": "Écrainville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.64943000", + "longitude": "0.32488000" + }, + { + "id": "48070", + "name": "Épaignes", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27945000", + "longitude": "0.43980000" + }, + { + "id": "48083", + "name": "Épouville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.56349000", + "longitude": "0.22373000" + }, + { + "id": "48084", + "name": "Épron", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22174000", + "longitude": "-0.37085000" + }, + { + "id": "48086", + "name": "Équemauville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.39406000", + "longitude": "0.20760000" + }, + { + "id": "48087", + "name": "Équeurdreville-Hainneville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.64868000", + "longitude": "-1.65306000" + }, + { + "id": "48093", + "name": "Étainhus", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.56648000", + "longitude": "0.31285000" + }, + { + "id": "48102", + "name": "Éterville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14423000", + "longitude": "-0.42512000" + }, + { + "id": "48114", + "name": "Étrépagny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30623000", + "longitude": "1.61139000" + }, + { + "id": "48110", + "name": "Étretat", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.70669000", + "longitude": "0.20523000" + }, + { + "id": "48122", + "name": "Évrecy", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09904000", + "longitude": "-0.50421000" + }, + { + "id": "48123", + "name": "Évreux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02414000", + "longitude": "1.15082000" + }, + { + "id": "48127", + "name": "Ézy-sur-Eure", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86667000", + "longitude": "1.41667000" + }, + { + "id": "39702", + "name": "Bacqueville-en-Caux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.78761000", + "longitude": "0.99927000" + }, + { + "id": "39710", + "name": "Bagnoles-de-l'Orne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55720000", + "longitude": "-0.41383000" + }, + { + "id": "39781", + "name": "Barentin", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54533000", + "longitude": "0.95515000" + }, + { + "id": "39782", + "name": "Barenton", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60027000", + "longitude": "-0.83258000" + }, + { + "id": "39788", + "name": "Barneville-Carteret", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38333000", + "longitude": "-1.75000000" + }, + { + "id": "39789", + "name": "Barneville-Plage", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36786000", + "longitude": "-1.76512000" + }, + { + "id": "39819", + "name": "Bavent", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22996000", + "longitude": "-0.18675000" + }, + { + "id": "39822", + "name": "Bayeux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27732000", + "longitude": "-0.70390000" + }, + { + "id": "40426", + "name": "Bénouville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24151000", + "longitude": "-0.28246000" + }, + { + "id": "40437", + "name": "Bézu-Saint-Éloi", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29524000", + "longitude": "1.70404000" + }, + { + "id": "39861", + "name": "Beaumont-Hague", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.66387000", + "longitude": "-1.83822000" + }, + { + "id": "39869", + "name": "Beaumont-le-Roger", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07839000", + "longitude": "0.78081000" + }, + { + "id": "39902", + "name": "Belbeuf", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38766000", + "longitude": "1.14245000" + }, + { + "id": "39931", + "name": "Bellême", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.37329000", + "longitude": "0.57005000" + }, + { + "id": "39918", + "name": "Bellengreville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12425000", + "longitude": "-0.20961000" + }, + { + "id": "39952", + "name": "Bernay", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.08888000", + "longitude": "0.59858000" + }, + { + "id": "39954", + "name": "Berneval-le-Grand", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.95328000", + "longitude": "1.18755000" + }, + { + "id": "39957", + "name": "Bernières-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33057000", + "longitude": "-0.42299000" + }, + { + "id": "39990", + "name": "Beuville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24364000", + "longitude": "-0.32585000" + }, + { + "id": "39991", + "name": "Beuvillers", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12961000", + "longitude": "0.25492000" + }, + { + "id": "39995", + "name": "Beuzeville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34483000", + "longitude": "0.34254000" + }, + { + "id": "39996", + "name": "Beuzeville-la-Grenier", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.59157000", + "longitude": "0.42684000" + }, + { + "id": "40041", + "name": "Biéville-Beuville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24293000", + "longitude": "-0.32762000" + }, + { + "id": "40019", + "name": "Bihorel", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.45468000", + "longitude": "1.12230000" + }, + { + "id": "40048", + "name": "Blainville-Crevon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50395000", + "longitude": "1.29952000" + }, + { + "id": "40049", + "name": "Blainville-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06599000", + "longitude": "-1.58340000" + }, + { + "id": "40050", + "name": "Blainville-sur-Orne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22913000", + "longitude": "-0.30061000" + }, + { + "id": "40054", + "name": "Blangy-sur-Bresle", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.93211000", + "longitude": "1.62514000" + }, + { + "id": "40070", + "name": "Blonville-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33709000", + "longitude": "0.02709000" + }, + { + "id": "40086", + "name": "Bois-Guillaume", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46020000", + "longitude": "1.12219000" + }, + { + "id": "40102", + "name": "Bolbec", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.57321000", + "longitude": "0.47339000" + }, + { + "id": "40134", + "name": "Boos", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38849000", + "longitude": "1.20348000" + }, + { + "id": "40144", + "name": "Bosc-le-Hard", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.62734000", + "longitude": "1.17483000" + }, + { + "id": "40186", + "name": "Bourg-Achard", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35322000", + "longitude": "0.81623000" + }, + { + "id": "40205", + "name": "Bourgtheroulde-Infreville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30000000", + "longitude": "0.88333000" + }, + { + "id": "40207", + "name": "Bourguébus", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12187000", + "longitude": "-0.29786000" + }, + { + "id": "40213", + "name": "Bourth", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76846000", + "longitude": "0.80911000" + }, + { + "id": "40229", + "name": "Bouville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.56193000", + "longitude": "0.89514000" + }, + { + "id": "40355", + "name": "Bréauté", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.62805000", + "longitude": "0.40005000" + }, + { + "id": "40356", + "name": "Brécey", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72413000", + "longitude": "-1.16647000" + }, + { + "id": "40358", + "name": "Bréhal", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89915000", + "longitude": "-1.51225000" + }, + { + "id": "40282", + "name": "Breteuil", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83333000", + "longitude": "0.91667000" + }, + { + "id": "40285", + "name": "Bretoncelles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43122000", + "longitude": "0.88775000" + }, + { + "id": "40287", + "name": "Bretteville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.65440000", + "longitude": "-1.52884000" + }, + { + "id": "40288", + "name": "Bretteville-du-Grand-Caux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.66667000", + "longitude": "0.40000000" + }, + { + "id": "40289", + "name": "Bretteville-l’Orgueilleuse", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21189000", + "longitude": "-0.51428000" + }, + { + "id": "40290", + "name": "Bretteville-sur-Laize", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04466000", + "longitude": "-0.32639000" + }, + { + "id": "40291", + "name": "Bretteville-sur-Odon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16627000", + "longitude": "-0.41662000" + }, + { + "id": "40297", + "name": "Breuilpont", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96398000", + "longitude": "1.42919000" + }, + { + "id": "40303", + "name": "Bricquebec", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47008000", + "longitude": "-1.63254000" + }, + { + "id": "40320", + "name": "Brionne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19553000", + "longitude": "0.71510000" + }, + { + "id": "40323", + "name": "Briouze", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69848000", + "longitude": "-0.36806000" + }, + { + "id": "40329", + "name": "Brix", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54512000", + "longitude": "-1.58012000" + }, + { + "id": "40331", + "name": "Broglie", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00911000", + "longitude": "0.52915000" + }, + { + "id": "40370", + "name": "Buchy", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.58513000", + "longitude": "1.35852000" + }, + { + "id": "40374", + "name": "Bueil", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.93189000", + "longitude": "1.44257000" + }, + { + "id": "40382", + "name": "Bully", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10155000", + "longitude": "-0.40825000" + }, + { + "id": "40445", + "name": "Cabourg", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29110000", + "longitude": "-0.11330000" + }, + { + "id": "40457", + "name": "Caen", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18585000", + "longitude": "-0.35912000" + }, + { + "id": "40461", + "name": "Cagny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14580000", + "longitude": "-0.25630000" + }, + { + "id": "40462", + "name": "Cahagnes", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.06631000", + "longitude": "-0.76869000" + }, + { + "id": "40466", + "name": "Cairon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24017000", + "longitude": "-0.45046000" + }, + { + "id": "40478", + "name": "Calvados", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09011000", + "longitude": "-0.30608000" + }, + { + "id": "40485", + "name": "Cambes-en-Plaine", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23161000", + "longitude": "-0.38540000" + }, + { + "id": "40490", + "name": "Cambremer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15192000", + "longitude": "0.04760000" + }, + { + "id": "40515", + "name": "Canon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07380000", + "longitude": "-0.09219000" + }, + { + "id": "40518", + "name": "Canteleu", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44065000", + "longitude": "1.02459000" + }, + { + "id": "40522", + "name": "Cany-Barville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.78885000", + "longitude": "0.63704000" + }, + { + "id": "40541", + "name": "Carentan", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30312000", + "longitude": "-1.24806000" + }, + { + "id": "40556", + "name": "Carpiquet", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18522000", + "longitude": "-0.44623000" + }, + { + "id": "40602", + "name": "Caudebec-en-Caux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52577000", + "longitude": "0.72561000" + }, + { + "id": "40603", + "name": "Caudebec-lès-Elbeuf", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28082000", + "longitude": "1.02195000" + }, + { + "id": "40607", + "name": "Caumont", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36642000", + "longitude": "0.89591000" + }, + { + "id": "40608", + "name": "Caumont-l'Éventé", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09017000", + "longitude": "-0.80501000" + }, + { + "id": "40615", + "name": "Cauville-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.60000000", + "longitude": "0.13333000" + }, + { + "id": "41395", + "name": "Cérences", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91667000", + "longitude": "-1.43470000" + }, + { + "id": "40631", + "name": "Ceaucé", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.49436000", + "longitude": "-0.62526000" + }, + { + "id": "40648", + "name": "Cerisy-la-Salle", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.02622000", + "longitude": "-1.28283000" + }, + { + "id": "40664", + "name": "Ceton", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22631000", + "longitude": "0.74968000" + }, + { + "id": "40751", + "name": "Champsecret", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60925000", + "longitude": "-0.55058000" + }, + { + "id": "40779", + "name": "Chanu", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72914000", + "longitude": "-0.67603000" + }, + { + "id": "40801", + "name": "Charleval", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37290000", + "longitude": "1.38369000" + }, + { + "id": "40881", + "name": "Cherbourg-Octeville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63984000", + "longitude": "-1.61636000" + }, + { + "id": "40890", + "name": "Cheux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16611000", + "longitude": "-0.52544000" + }, + { + "id": "41045", + "name": "Claville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04844000", + "longitude": "1.01954000" + }, + { + "id": "41065", + "name": "Clères", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.60000000", + "longitude": "1.11667000" + }, + { + "id": "41066", + "name": "Clécy", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91718000", + "longitude": "-0.48041000" + }, + { + "id": "41071", + "name": "Cléon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31235000", + "longitude": "1.02950000" + }, + { + "id": "41054", + "name": "Clinchamps-sur-Orne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07857000", + "longitude": "-0.40156000" + }, + { + "id": "41090", + "name": "Colleville-Montgomery", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27528000", + "longitude": "-0.30052000" + }, + { + "id": "41099", + "name": "Colombelles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.20490000", + "longitude": "-0.29571000" + }, + { + "id": "41128", + "name": "Conches-en-Ouche", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.95768000", + "longitude": "0.94052000" + }, + { + "id": "41136", + "name": "Condé-sur-Huisne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38103000", + "longitude": "0.85093000" + }, + { + "id": "41137", + "name": "Condé-sur-Noireau", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84881000", + "longitude": "-0.55214000" + }, + { + "id": "41138", + "name": "Condé-sur-Sarthe", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43197000", + "longitude": "0.03398000" + }, + { + "id": "41140", + "name": "Condé-sur-Vire", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05000000", + "longitude": "-1.03333000" + }, + { + "id": "41179", + "name": "Cormeilles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24803000", + "longitude": "0.37654000" + }, + { + "id": "41181", + "name": "Cormelles-le-Royal", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15398000", + "longitude": "-0.33062000" + }, + { + "id": "41191", + "name": "Corneville-sur-Risle", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34128000", + "longitude": "0.58628000" + }, + { + "id": "41245", + "name": "Courcelles-sur-Seine", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18285000", + "longitude": "1.36008000" + }, + { + "id": "41266", + "name": "Courseulles-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33027000", + "longitude": "-0.45612000" + }, + { + "id": "41267", + "name": "Courteilles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77495000", + "longitude": "-0.19942000" + }, + { + "id": "41278", + "name": "Coutances", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04541000", + "longitude": "-1.44518000" + }, + { + "id": "41279", + "name": "Couterne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.51318000", + "longitude": "-0.41538000" + }, + { + "id": "41340", + "name": "Créances", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19873000", + "longitude": "-1.56938000" + }, + { + "id": "41308", + "name": "Cresserons", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28701000", + "longitude": "-0.35569000" + }, + { + "id": "41310", + "name": "Creully", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28478000", + "longitude": "-0.53976000" + }, + { + "id": "41317", + "name": "Criel-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01508000", + "longitude": "1.31459000" + }, + { + "id": "41318", + "name": "Criquebeuf-sur-Seine", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30563000", + "longitude": "1.09964000" + }, + { + "id": "41319", + "name": "Criquetot-l’Esneval", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.64555000", + "longitude": "0.26571000" + }, + { + "id": "41329", + "name": "Croth", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84557000", + "longitude": "1.37861000" + }, + { + "id": "41385", + "name": "Cuverville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18998000", + "longitude": "-0.26474000" + }, + { + "id": "41413", + "name": "Damigny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45000000", + "longitude": "0.06667000" + }, + { + "id": "41425", + "name": "Damville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.86930000", + "longitude": "1.07458000" + }, + { + "id": "41436", + "name": "Darnétal", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44533000", + "longitude": "1.15144000" + }, + { + "id": "41601", + "name": "Démouville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18001000", + "longitude": "-0.26947000" + }, + { + "id": "41617", + "name": "Département de l'Eure", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16667000", + "longitude": "1.00000000" + }, + { + "id": "41622", + "name": "Département de l'Orne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66667000", + "longitude": "0.08333000" + }, + { + "id": "41650", + "name": "Déville-lès-Rouen", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46942000", + "longitude": "1.05214000" + }, + { + "id": "41444", + "name": "Deauville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35700000", + "longitude": "0.06995000" + }, + { + "id": "41469", + "name": "Dieppe", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.92160000", + "longitude": "1.07772000" + }, + { + "id": "41480", + "name": "Digosville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63104000", + "longitude": "-1.52627000" + }, + { + "id": "41495", + "name": "Dives-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28176000", + "longitude": "-0.10125000" + }, + { + "id": "41516", + "name": "Domfront", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59208000", + "longitude": "-0.64588000" + }, + { + "id": "41534", + "name": "Donville-les-Bains", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84608000", + "longitude": "-1.58315000" + }, + { + "id": "41550", + "name": "Doudeville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.72268000", + "longitude": "0.78479000" + }, + { + "id": "41559", + "name": "Douvres-la-Délivrande", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29472000", + "longitude": "-0.38039000" + }, + { + "id": "41564", + "name": "Dozulé", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23132000", + "longitude": "-0.04454000" + }, + { + "id": "41584", + "name": "Ducey", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61843000", + "longitude": "-1.29052000" + }, + { + "id": "41585", + "name": "Duclair", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48385000", + "longitude": "0.87617000" + }, + { + "id": "41662", + "name": "Elbeuf", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28669000", + "longitude": "1.00288000" + }, + { + "id": "41685", + "name": "Envermeu", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.89560000", + "longitude": "1.26493000" + }, + { + "id": "41714", + "name": "Eslettes", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54820000", + "longitude": "1.05515000" + }, + { + "id": "41742", + "name": "Eu", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "50.04606000", + "longitude": "1.42079000" + }, + { + "id": "41765", + "name": "Falaise", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89217000", + "longitude": "-0.19527000" + }, + { + "id": "41781", + "name": "Fauville-en-Caux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.65257000", + "longitude": "0.59197000" + }, + { + "id": "41999", + "name": "Fécamp", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.75787000", + "longitude": "0.37457000" + }, + { + "id": "41800", + "name": "Fermanville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.68673000", + "longitude": "-1.46284000" + }, + { + "id": "41828", + "name": "Flamanville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.53274000", + "longitude": "-1.86560000" + }, + { + "id": "41836", + "name": "Flers", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73722000", + "longitude": "-0.57466000" + }, + { + "id": "41850", + "name": "Fleury-sur-Andelle", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36176000", + "longitude": "1.35599000" + }, + { + "id": "41851", + "name": "Fleury-sur-Orne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14851000", + "longitude": "-0.37508000" + }, + { + "id": "41886", + "name": "Fontaine-Étoupefour", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14600000", + "longitude": "-0.45522000" + }, + { + "id": "41880", + "name": "Fontaine-la-Mallet", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.53600000", + "longitude": "0.14625000" + }, + { + "id": "41881", + "name": "Fontaine-le-Bourg", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.56451000", + "longitude": "1.16391000" + }, + { + "id": "41883", + "name": "Fontaine-le-Dun", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.81182000", + "longitude": "0.85095000" + }, + { + "id": "41894", + "name": "Fontenay", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.55993000", + "longitude": "0.18391000" + }, + { + "id": "41900", + "name": "Fontenay-le-Marmion", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09346000", + "longitude": "-0.35294000" + }, + { + "id": "41913", + "name": "Forges-les-Eaux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.61391000", + "longitude": "1.54449000" + }, + { + "id": "41921", + "name": "Foucarmont", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.84682000", + "longitude": "1.56899000" + }, + { + "id": "41948", + "name": "Francheville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78647000", + "longitude": "0.84962000" + }, + { + "id": "42010", + "name": "Gacé", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79344000", + "longitude": "0.29624000" + }, + { + "id": "42017", + "name": "Gaillefontaine", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.65371000", + "longitude": "1.61547000" + }, + { + "id": "42018", + "name": "Gaillon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16104000", + "longitude": "1.34016000" + }, + { + "id": "42019", + "name": "Gainneville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51845000", + "longitude": "0.26164000" + }, + { + "id": "42040", + "name": "Garennes-sur-Eure", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91116000", + "longitude": "1.43836000" + }, + { + "id": "42049", + "name": "Gasny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09184000", + "longitude": "1.60336000" + }, + { + "id": "42055", + "name": "Gavray", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91108000", + "longitude": "-1.35059000" + }, + { + "id": "42086", + "name": "Giberville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18158000", + "longitude": "-0.28386000" + }, + { + "id": "42105", + "name": "Gisors", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28178000", + "longitude": "1.78010000" + }, + { + "id": "42115", + "name": "Goderville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.64566000", + "longitude": "0.36593000" + }, + { + "id": "42132", + "name": "Gonneville-la-Mallet", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63950000", + "longitude": "0.22245000" + }, + { + "id": "42152", + "name": "Gournay-en-Bray", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48285000", + "longitude": "1.72471000" + }, + { + "id": "42157", + "name": "Gouville-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09611000", + "longitude": "-1.57908000" + }, + { + "id": "42166", + "name": "Grainville-la-Teinturière", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.74773000", + "longitude": "0.64048000" + }, + { + "id": "42167", + "name": "Grainville-sur-Odon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13936000", + "longitude": "-0.53046000" + }, + { + "id": "42172", + "name": "Grand-Couronne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35563000", + "longitude": "1.00647000" + }, + { + "id": "42175", + "name": "Grandcamp-Maisy", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38333000", + "longitude": "-1.03333000" + }, + { + "id": "42185", + "name": "Granville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83792000", + "longitude": "-1.59714000" + }, + { + "id": "42191", + "name": "Gravigny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05310000", + "longitude": "1.16962000" + }, + { + "id": "42228", + "name": "Gruchet-le-Valasse", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.55466000", + "longitude": "0.48684000" + }, + { + "id": "42251", + "name": "Guichainville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00139000", + "longitude": "1.19305000" + }, + { + "id": "42320", + "name": "Hambye", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94798000", + "longitude": "-1.26417000" + }, + { + "id": "42328", + "name": "Harfleur", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50660000", + "longitude": "0.19827000" + }, + { + "id": "42355", + "name": "Hautot-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.89789000", + "longitude": "1.02884000" + }, + { + "id": "42357", + "name": "Hauville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.39645000", + "longitude": "0.77232000" + }, + { + "id": "42455", + "name": "Hénouville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47890000", + "longitude": "0.96367000" + }, + { + "id": "42461", + "name": "Hérouville-Saint-Clair", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21088000", + "longitude": "-0.30653000" + }, + { + "id": "42462", + "name": "Hérouvillette", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22130000", + "longitude": "-0.24348000" + }, + { + "id": "42378", + "name": "Hermanville-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28464000", + "longitude": "-0.31544000" + }, + { + "id": "42390", + "name": "Heudreville-sur-Eure", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14089000", + "longitude": "1.18813000" + }, + { + "id": "42417", + "name": "Honfleur", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41985000", + "longitude": "0.23294000" + }, + { + "id": "42427", + "name": "Houlbec-Cocherel", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07350000", + "longitude": "1.36563000" + }, + { + "id": "42428", + "name": "Houlgate", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29900000", + "longitude": "-0.08153000" + }, + { + "id": "42431", + "name": "Houppeville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51259000", + "longitude": "1.07962000" + }, + { + "id": "42472", + "name": "Ifs", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14000000", + "longitude": "-0.34899000" + }, + { + "id": "42476", + "name": "Igoville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31990000", + "longitude": "1.14832000" + }, + { + "id": "42485", + "name": "Incheville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "50.01239000", + "longitude": "1.49438000" + }, + { + "id": "42499", + "name": "Isigny-le-Buat", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.61705000", + "longitude": "-1.16993000" + }, + { + "id": "42500", + "name": "Isigny-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31604000", + "longitude": "-1.10384000" + }, + { + "id": "42502", + "name": "Isneauville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.49832000", + "longitude": "1.15431000" + }, + { + "id": "42516", + "name": "Ivry-la-Bataille", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88333000", + "longitude": "1.45948000" + }, + { + "id": "42589", + "name": "Jullouville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77576000", + "longitude": "-1.56366000" + }, + { + "id": "42592", + "name": "Jumièges", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.43324000", + "longitude": "0.81918000" + }, + { + "id": "42599", + "name": "Juvigny-sous-Andaine", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55194000", + "longitude": "-0.50878000" + }, + { + "id": "42648", + "name": "La Bonneville-sur-Iton", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00000000", + "longitude": "1.03333000" + }, + { + "id": "42674", + "name": "La Cerlangue", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50592000", + "longitude": "0.41332000" + }, + { + "id": "42683", + "name": "La Chapelle-Réanville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09752000", + "longitude": "1.38209000" + }, + { + "id": "42720", + "name": "La Couture-Boussey", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.89581000", + "longitude": "1.40491000" + }, + { + "id": "42735", + "name": "La Ferrière-aux-Étangs", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66227000", + "longitude": "-0.51955000" + }, + { + "id": "42740", + "name": "La Ferté-Macé", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58999000", + "longitude": "-0.35800000" + }, + { + "id": "42744", + "name": "La Feuillie", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46415000", + "longitude": "1.51463000" + }, + { + "id": "42768", + "name": "La Glacerie", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.60517000", + "longitude": "-1.58185000" + }, + { + "id": "42782", + "name": "La Haye-du-Puits", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28973000", + "longitude": "-1.54324000" + }, + { + "id": "42780", + "name": "La Haye-Malherbe", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.22553000", + "longitude": "1.06774000" + }, + { + "id": "42781", + "name": "La Haye-Pesnel", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.79561000", + "longitude": "-1.39655000" + }, + { + "id": "42789", + "name": "La Lande-Patry", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76202000", + "longitude": "-0.59876000" + }, + { + "id": "42798", + "name": "La Madeleine-de-Nonancourt", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77298000", + "longitude": "1.20253000" + }, + { + "id": "42799", + "name": "La Mailleraye-sur-Seine", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48308000", + "longitude": "0.77030000" + }, + { + "id": "42800", + "name": "La Meauffe", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17643000", + "longitude": "-1.11119000" + }, + { + "id": "42844", + "name": "La Remuée", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52773000", + "longitude": "0.40283000" + }, + { + "id": "42848", + "name": "La Rivière-Saint-Sauveur", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40821000", + "longitude": "0.27030000" + }, + { + "id": "42874", + "name": "La Saussaye", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25936000", + "longitude": "0.98094000" + }, + { + "id": "42876", + "name": "La Selle-la-Forge", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73295000", + "longitude": "-0.54103000" + }, + { + "id": "42907", + "name": "La Vaupalière", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48789000", + "longitude": "0.99630000" + }, + { + "id": "42911", + "name": "La Vespière", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01975000", + "longitude": "0.41250000" + }, + { + "id": "43031", + "name": "Langrune-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32346000", + "longitude": "-0.37346000" + }, + { + "id": "43042", + "name": "Lanquetot", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.58527000", + "longitude": "0.52637000" + }, + { + "id": "43690", + "name": "Léry", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28585000", + "longitude": "1.20768000" + }, + { + "id": "43135", + "name": "Le Bosc-Roger-en-Roumois", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28333000", + "longitude": "0.93333000" + }, + { + "id": "43199", + "name": "Le Grand-Quevilly", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40076000", + "longitude": "1.04582000" + }, + { + "id": "43205", + "name": "Le Havre", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.49380000", + "longitude": "0.10767000" + }, + { + "id": "43207", + "name": "Le Houlme", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50972000", + "longitude": "1.03537000" + }, + { + "id": "43220", + "name": "Le Manoir", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31355000", + "longitude": "1.20455000" + }, + { + "id": "43226", + "name": "Le Mesnil-Esnard", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41319000", + "longitude": "1.14521000" + }, + { + "id": "43234", + "name": "Le Molay-Littry", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24265000", + "longitude": "-0.87238000" + }, + { + "id": "43241", + "name": "Le Neubourg", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15048000", + "longitude": "0.91020000" + }, + { + "id": "43254", + "name": "Le Petit-Quevilly", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41338000", + "longitude": "1.06155000" + }, + { + "id": "43308", + "name": "Le Teilleul", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.53758000", + "longitude": "-0.87304000" + }, + { + "id": "43310", + "name": "Le Theil-Bocage", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.88333000", + "longitude": "-0.71667000" + }, + { + "id": "43319", + "name": "Le Thuit-Signol", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.26487000", + "longitude": "0.93910000" + }, + { + "id": "43323", + "name": "Le Trait", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46895000", + "longitude": "0.81634000" + }, + { + "id": "43324", + "name": "Le Tréport", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "50.05979000", + "longitude": "1.37583000" + }, + { + "id": "43328", + "name": "Le Val-Saint-Père", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66177000", + "longitude": "-1.37653000" + }, + { + "id": "43329", + "name": "Le Vaudreuil", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25407000", + "longitude": "1.20960000" + }, + { + "id": "43362", + "name": "Les Andelys", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.24557000", + "longitude": "1.41168000" + }, + { + "id": "43368", + "name": "Les Authieux-sur-le-Port-Saint-Ouen", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34100000", + "longitude": "1.13465000" + }, + { + "id": "43392", + "name": "Les Grandes-Ventes", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.78544000", + "longitude": "1.22921000" + }, + { + "id": "43399", + "name": "Les Loges", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.69860000", + "longitude": "0.28403000" + }, + { + "id": "43400", + "name": "Les Loges-Marchis", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54132000", + "longitude": "-1.08754000" + }, + { + "id": "43421", + "name": "Les Pieux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51286000", + "longitude": "-1.80714000" + }, + { + "id": "43442", + "name": "Lessay", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21703000", + "longitude": "-1.53089000" + }, + { + "id": "43471", + "name": "Lieurey", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23019000", + "longitude": "0.49879000" + }, + { + "id": "43486", + "name": "Lillebonne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52030000", + "longitude": "0.53617000" + }, + { + "id": "43497", + "name": "Limésy", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.61271000", + "longitude": "0.92483000" + }, + { + "id": "43505", + "name": "Lion-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30018000", + "longitude": "-0.32157000" + }, + { + "id": "43508", + "name": "Lisieux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14660000", + "longitude": "0.22925000" + }, + { + "id": "43514", + "name": "Livarot", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.00500000", + "longitude": "0.15020000" + }, + { + "id": "43551", + "name": "Londinières", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.83187000", + "longitude": "1.40232000" + }, + { + "id": "43564", + "name": "Longny-au-Perche", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52984000", + "longitude": "0.75239000" + }, + { + "id": "43614", + "name": "Louviers", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21667000", + "longitude": "1.16667000" + }, + { + "id": "43615", + "name": "Louvigny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15715000", + "longitude": "-0.39376000" + }, + { + "id": "43630", + "name": "Luc-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31452000", + "longitude": "-0.35499000" + }, + { + "id": "43654", + "name": "Luneray", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.82795000", + "longitude": "0.91581000" + }, + { + "id": "43727", + "name": "Magny-le-Désert", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57015000", + "longitude": "-0.32732000" + }, + { + "id": "43752", + "name": "Malaunay", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52710000", + "longitude": "1.04292000" + }, + { + "id": "43789", + "name": "Manéglise", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.56578000", + "longitude": "0.25572000" + }, + { + "id": "43771", + "name": "Manche", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03822000", + "longitude": "-1.31865000" + }, + { + "id": "43778", + "name": "Manneville-sur-Risle", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35173000", + "longitude": "0.54526000" + }, + { + "id": "43798", + "name": "Marcey-les-Grèves", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.69673000", + "longitude": "-1.39156000" + }, + { + "id": "43807", + "name": "Marcilly-sur-Eure", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82568000", + "longitude": "1.34741000" + }, + { + "id": "43840", + "name": "Marigny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09952000", + "longitude": "-1.24179000" + }, + { + "id": "43869", + "name": "Maromme", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.47925000", + "longitude": "1.02375000" + }, + { + "id": "43918", + "name": "Martin-Église", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.90174000", + "longitude": "1.14120000" + }, + { + "id": "43919", + "name": "Martinvast", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.59608000", + "longitude": "-1.66434000" + }, + { + "id": "43939", + "name": "Mathieu", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25448000", + "longitude": "-0.37188000" + }, + { + "id": "43968", + "name": "May-sur-Orne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10107000", + "longitude": "-0.37471000" + }, + { + "id": "44465", + "name": "Ménilles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03333000", + "longitude": "1.36667000" + }, + { + "id": "44002", + "name": "Menneval", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10000000", + "longitude": "0.61667000" + }, + { + "id": "44025", + "name": "Merville-Franceville-Plage", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27218000", + "longitude": "-0.19616000" + }, + { + "id": "44030", + "name": "Mesnières-en-Bray", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.76172000", + "longitude": "1.38187000" + }, + { + "id": "44033", + "name": "Messei", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71157000", + "longitude": "-0.53739000" + }, + { + "id": "44136", + "name": "Mondeville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17497000", + "longitude": "-0.32238000" + }, + { + "id": "44156", + "name": "Mont-Saint-Aignan", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46307000", + "longitude": "1.09364000" + }, + { + "id": "44185", + "name": "Montaure", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23417000", + "longitude": "1.08837000" + }, + { + "id": "44215", + "name": "Montebourg", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48774000", + "longitude": "-1.38036000" + }, + { + "id": "44256", + "name": "Montigny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.45960000", + "longitude": "1.00168000" + }, + { + "id": "44265", + "name": "Montivilliers", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54518000", + "longitude": "0.18769000" + }, + { + "id": "44280", + "name": "Montmain", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40996000", + "longitude": "1.23742000" + }, + { + "id": "44282", + "name": "Montmartin-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98861000", + "longitude": "-1.52530000" + }, + { + "id": "44368", + "name": "Mortagne-au-Perche", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52018000", + "longitude": "0.54734000" + }, + { + "id": "44372", + "name": "Mortain", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64782000", + "longitude": "-0.94055000" + }, + { + "id": "44375", + "name": "Mortrée", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63899000", + "longitude": "0.07909000" + }, + { + "id": "44385", + "name": "Mouen", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14696000", + "longitude": "-0.48366000" + }, + { + "id": "44398", + "name": "Moult", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11494000", + "longitude": "-0.16472000" + }, + { + "id": "44420", + "name": "Moyaux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.19511000", + "longitude": "0.35603000" + }, + { + "id": "44517", + "name": "Nassandres", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12632000", + "longitude": "0.73597000" + }, + { + "id": "44699", + "name": "Néville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.82472000", + "longitude": "0.70862000" + }, + { + "id": "44527", + "name": "Neaufles-Saint-Martin", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27650000", + "longitude": "1.72794000" + }, + { + "id": "44542", + "name": "Neufchâtel-en-Bray", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.73315000", + "longitude": "1.43956000" + }, + { + "id": "44623", + "name": "Nointot", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.59822000", + "longitude": "0.47674000" + }, + { + "id": "44638", + "name": "Nonancourt", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.77086000", + "longitude": "1.19799000" + }, + { + "id": "44642", + "name": "Normanville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07868000", + "longitude": "1.15915000" + }, + { + "id": "44650", + "name": "Notre-Dame-de-Bondeville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48333000", + "longitude": "1.05000000" + }, + { + "id": "44651", + "name": "Notre-Dame-de-Gravenchon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48940000", + "longitude": "0.57188000" + }, + { + "id": "44712", + "name": "Octeville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.62612000", + "longitude": "-1.64349000" + }, + { + "id": "44713", + "name": "Octeville-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.55496000", + "longitude": "0.11660000" + }, + { + "id": "44720", + "name": "Offranville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.87208000", + "longitude": "1.04817000" + }, + { + "id": "44728", + "name": "Oissel", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33309000", + "longitude": "1.09413000" + }, + { + "id": "44754", + "name": "Orbec", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01667000", + "longitude": "0.41667000" + }, + { + "id": "44770", + "name": "Orival", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.72429000", + "longitude": "1.20512000" + }, + { + "id": "44805", + "name": "Ouistreham", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27566000", + "longitude": "-0.25910000" + }, + { + "id": "44810", + "name": "Ourville-en-Caux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.72854000", + "longitude": "0.60460000" + }, + { + "id": "44824", + "name": "Pacy-sur-Eure", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01667000", + "longitude": "1.38333000" + }, + { + "id": "44853", + "name": "Parigny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.59450000", + "longitude": "-1.07925000" + }, + { + "id": "44874", + "name": "Pavilly", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.56703000", + "longitude": "0.95445000" + }, + { + "id": "45352", + "name": "Périers", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18667000", + "longitude": "-1.40762000" + }, + { + "id": "45368", + "name": "Pîtres", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.31667000", + "longitude": "1.23333000" + }, + { + "id": "44895", + "name": "Percy", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.91714000", + "longitude": "-1.18916000" + }, + { + "id": "44902", + "name": "Perriers-sur-Andelle", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41487000", + "longitude": "1.37098000" + }, + { + "id": "44915", + "name": "Petit-Couronne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38333000", + "longitude": "1.01667000" + }, + { + "id": "44921", + "name": "Petiville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46078000", + "longitude": "0.58740000" + }, + { + "id": "44946", + "name": "Picauville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37810000", + "longitude": "-1.40048000" + }, + { + "id": "44979", + "name": "Pirou", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18089000", + "longitude": "-1.57384000" + }, + { + "id": "44983", + "name": "Pissy-Pôville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52986000", + "longitude": "0.99281000" + }, + { + "id": "45164", + "name": "Pont-Audemer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35000000", + "longitude": "0.51667000" + }, + { + "id": "45194", + "name": "Pont-Écrepin", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76425000", + "longitude": "-0.24455000" + }, + { + "id": "45177", + "name": "Pont-d'Ouilly", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.87590000", + "longitude": "-0.40221000" + }, + { + "id": "45167", + "name": "Pont-Hébert", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.16714000", + "longitude": "-1.13428000" + }, + { + "id": "45191", + "name": "Pont-l’Évêque", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28912000", + "longitude": "0.19161000" + }, + { + "id": "45171", + "name": "Pont-Saint-Pierre", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33561000", + "longitude": "1.27601000" + }, + { + "id": "45215", + "name": "Pontorson", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.55316000", + "longitude": "-1.50754000" + }, + { + "id": "45235", + "name": "Port-en-Bessin-Huppain", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34460000", + "longitude": "-0.75557000" + }, + { + "id": "45238", + "name": "Portbail", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33571000", + "longitude": "-1.69560000" + }, + { + "id": "45247", + "name": "Poses", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30539000", + "longitude": "1.24353000" + }, + { + "id": "45248", + "name": "Potigny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96925000", + "longitude": "-0.24166000" + }, + { + "id": "45303", + "name": "Préaux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.49136000", + "longitude": "1.21583000" + }, + { + "id": "45333", + "name": "Putanges-Pont-Écrepin", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76667000", + "longitude": "-0.25000000" + }, + { + "id": "45375", + "name": "Querqueville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.66251000", + "longitude": "-1.69119000" + }, + { + "id": "45381", + "name": "Quettehou", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.59308000", + "longitude": "-1.30352000" + }, + { + "id": "45382", + "name": "Quettreville-sur-Sienne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.96802000", + "longitude": "-1.46782000" + }, + { + "id": "45387", + "name": "Quillebeuf-sur-Seine", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46934000", + "longitude": "0.52793000" + }, + { + "id": "45391", + "name": "Quincampoix", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52710000", + "longitude": "1.18849000" + }, + { + "id": "45415", + "name": "Radon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.50246000", + "longitude": "0.10278000" + }, + { + "id": "45417", + "name": "Rai", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75000000", + "longitude": "0.58333000" + }, + { + "id": "45431", + "name": "Ranville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23071000", + "longitude": "-0.25560000" + }, + { + "id": "45692", + "name": "Rémalard", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42867000", + "longitude": "0.77185000" + }, + { + "id": "45696", + "name": "Réville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.61906000", + "longitude": "-1.25868000" + }, + { + "id": "45557", + "name": "Rogerville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50296000", + "longitude": "0.26516000" + }, + { + "id": "45568", + "name": "Rolleville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.58232000", + "longitude": "0.21177000" + }, + { + "id": "45571", + "name": "Romagny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.63931000", + "longitude": "-0.96605000" + }, + { + "id": "45579", + "name": "Romilly-sur-Andelle", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.33190000", + "longitude": "1.26127000" + }, + { + "id": "45584", + "name": "Roncherolles-sur-le-Vivier", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46667000", + "longitude": "1.18333000" + }, + { + "id": "45614", + "name": "Rots", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21235000", + "longitude": "-0.47319000" + }, + { + "id": "45617", + "name": "Rouen", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44313000", + "longitude": "1.09932000" + }, + { + "id": "45633", + "name": "Roumare", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51008000", + "longitude": "0.97422000" + }, + { + "id": "45641", + "name": "Routot", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37800000", + "longitude": "0.73346000" + }, + { + "id": "45643", + "name": "Rouxmesnil-Bouteilles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.90633000", + "longitude": "1.07976000" + }, + { + "id": "45666", + "name": "Rugles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82212000", + "longitude": "0.70979000" + }, + { + "id": "45714", + "name": "Sahurs", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35863000", + "longitude": "0.94256000" + }, + { + "id": "45740", + "name": "Saint-Amand", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.04338000", + "longitude": "-0.96491000" + }, + { + "id": "45767", + "name": "Saint-André-sur-Orne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11741000", + "longitude": "-0.38227000" + }, + { + "id": "45776", + "name": "Saint-Arnoult", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52676000", + "longitude": "0.67117000" + }, + { + "id": "45789", + "name": "Saint-Aubin-lès-Elbeuf", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30360000", + "longitude": "1.01056000" + }, + { + "id": "45781", + "name": "Saint-Aubin-Routot", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52341000", + "longitude": "0.32602000" + }, + { + "id": "45790", + "name": "Saint-Aubin-sur-Gaillon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14701000", + "longitude": "1.32914000" + }, + { + "id": "45791", + "name": "Saint-Aubin-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32787000", + "longitude": "-0.38696000" + }, + { + "id": "45792", + "name": "Saint-Aubin-sur-Scie", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.87162000", + "longitude": "1.06823000" + }, + { + "id": "46655", + "name": "Saint-Étienne-du-Rouvray", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.37794000", + "longitude": "1.10467000" + }, + { + "id": "45874", + "name": "Saint-Contest", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.21401000", + "longitude": "-0.40221000" + }, + { + "id": "45920", + "name": "Saint-Désir", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14056000", + "longitude": "0.21398000" + }, + { + "id": "45904", + "name": "Saint-Denis-sur-Sarthon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45320000", + "longitude": "-0.04720000" + }, + { + "id": "45927", + "name": "Saint-Eustache-la-Forêt", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.55137000", + "longitude": "0.45599000" + }, + { + "id": "45950", + "name": "Saint-Gatien-des-Bois", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35000000", + "longitude": "0.18333000" + }, + { + "id": "45982", + "name": "Saint-Georges-des-Groseillers", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76993000", + "longitude": "-0.56768000" + }, + { + "id": "46010", + "name": "Saint-Germain-du-Corbéis", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.42215000", + "longitude": "0.06193000" + }, + { + "id": "46016", + "name": "Saint-Germain-la-Blanche-Herbe", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18327000", + "longitude": "-0.40426000" + }, + { + "id": "46020", + "name": "Saint-Germain-sur-Avre", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76466000", + "longitude": "1.26776000" + }, + { + "id": "46001", + "name": "Saint-Germain-Village", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34908000", + "longitude": "0.50331000" + }, + { + "id": "46063", + "name": "Saint-Hilaire-du-Harcouët", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.57700000", + "longitude": "-1.09004000" + }, + { + "id": "46052", + "name": "Saint-Hilaire-Petitville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.30250000", + "longitude": "-1.21995000" + }, + { + "id": "46076", + "name": "Saint-Jacques-sur-Darnétal", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.43980000", + "longitude": "1.20359000" + }, + { + "id": "46078", + "name": "Saint-James", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.52180000", + "longitude": "-1.32629000" + }, + { + "id": "46106", + "name": "Saint-Jean-des-Baisants", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09371000", + "longitude": "-0.97289000" + }, + { + "id": "46107", + "name": "Saint-Jean-des-Champs", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82800000", + "longitude": "-1.46487000" + }, + { + "id": "46109", + "name": "Saint-Jean-du-Cardonnay", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50455000", + "longitude": "1.01140000" + }, + { + "id": "46132", + "name": "Saint-Jouin-Bruneval", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.64275000", + "longitude": "0.16400000" + }, + { + "id": "46153", + "name": "Saint-Just", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10852000", + "longitude": "1.44101000" + }, + { + "id": "46175", + "name": "Saint-Laurent-de-Brévedent", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52564000", + "longitude": "0.25458000" + }, + { + "id": "46213", + "name": "Saint-Léger-du-Bourg-Denis", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.43345000", + "longitude": "1.15803000" + }, + { + "id": "46222", + "name": "Saint-Léonard", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.74252000", + "longitude": "0.35907000" + }, + { + "id": "46225", + "name": "Saint-Lô", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11624000", + "longitude": "-1.09031000" + }, + { + "id": "46237", + "name": "Saint-Manvieu", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18067000", + "longitude": "-0.50211000" + }, + { + "id": "46238", + "name": "Saint-Manvieu-Norrey", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18139000", + "longitude": "-0.50000000" + }, + { + "id": "46241", + "name": "Saint-Marcel", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10000000", + "longitude": "1.45000000" + }, + { + "id": "46269", + "name": "Saint-Martin-de-Boscherville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.44377000", + "longitude": "0.96271000" + }, + { + "id": "46271", + "name": "Saint-Martin-de-Fontenay", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.11523000", + "longitude": "-0.37391000" + }, + { + "id": "46273", + "name": "Saint-Martin-de-Landelles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54530000", + "longitude": "-1.17240000" + }, + { + "id": "46282", + "name": "Saint-Martin-des-Besaces", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01091000", + "longitude": "-0.84500000" + }, + { + "id": "46283", + "name": "Saint-Martin-des-Champs", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.66841000", + "longitude": "-1.33393000" + }, + { + "id": "46288", + "name": "Saint-Martin-du-Manoir", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.53213000", + "longitude": "0.23759000" + }, + { + "id": "46293", + "name": "Saint-Martin-du-Vivier", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.46667000", + "longitude": "1.16667000" + }, + { + "id": "46297", + "name": "Saint-Martin-en-Campagne", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.95648000", + "longitude": "1.22233000" + }, + { + "id": "46265", + "name": "Saint-Martin-Osmonville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63873000", + "longitude": "1.29952000" + }, + { + "id": "46369", + "name": "Saint-Nicolas-d’Aliermont", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.87857000", + "longitude": "1.22486000" + }, + { + "id": "46367", + "name": "Saint-Nicolas-de-la-Taille", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51085000", + "longitude": "0.47405000" + }, + { + "id": "46379", + "name": "Saint-Ouen-de-Thouberville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35726000", + "longitude": "0.88848000" + }, + { + "id": "46381", + "name": "Saint-Ouen-du-Tilleul", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.29723000", + "longitude": "0.94760000" + }, + { + "id": "46420", + "name": "Saint-Paër", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.51452000", + "longitude": "0.87935000" + }, + { + "id": "46387", + "name": "Saint-Pair-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.81455000", + "longitude": "-1.56761000" + }, + { + "id": "46453", + "name": "Saint-Pierre-Église", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.66848000", + "longitude": "-1.40358000" + }, + { + "id": "46434", + "name": "Saint-Pierre-de-Varengeville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50240000", + "longitude": "0.93118000" + }, + { + "id": "46436", + "name": "Saint-Pierre-des-Fleurs", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25000000", + "longitude": "0.96667000" + }, + { + "id": "46442", + "name": "Saint-Pierre-du-Regard", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84286000", + "longitude": "-0.54631000" + }, + { + "id": "46443", + "name": "Saint-Pierre-du-Vauvray", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.23208000", + "longitude": "1.22125000" + }, + { + "id": "46446", + "name": "Saint-Pierre-en-Val", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "50.02168000", + "longitude": "1.44707000" + }, + { + "id": "46450", + "name": "Saint-Pierre-lès-Elbeuf", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27901000", + "longitude": "1.04305000" + }, + { + "id": "46452", + "name": "Saint-Pierre-sur-Dives", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01667000", + "longitude": "-0.03333000" + }, + { + "id": "46454", + "name": "Saint-Planchers", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.82269000", + "longitude": "-1.52598000" + }, + { + "id": "46492", + "name": "Saint-Quentin-sur-le-Homme", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.64751000", + "longitude": "-1.31806000" + }, + { + "id": "46509", + "name": "Saint-Rémy", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.94007000", + "longitude": "-0.50344000" + }, + { + "id": "46500", + "name": "Saint-Romain-de-Colbosc", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.53093000", + "longitude": "0.35719000" + }, + { + "id": "46544", + "name": "Saint-Saëns", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.67302000", + "longitude": "1.28525000" + }, + { + "id": "46538", + "name": "Saint-Sauveur-le-Vicomte", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.38547000", + "longitude": "-1.53310000" + }, + { + "id": "46533", + "name": "Saint-Sauveur-Lendelin", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.12988000", + "longitude": "-1.41405000" + }, + { + "id": "46577", + "name": "Saint-Sébastien-de-Morsent", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.01096000", + "longitude": "1.08730000" + }, + { + "id": "46546", + "name": "Saint-Senier-sous-Avranches", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.68399000", + "longitude": "-1.33126000" + }, + { + "id": "46552", + "name": "Saint-Sever-Calvados", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84035000", + "longitude": "-1.04773000" + }, + { + "id": "46570", + "name": "Saint-Sulpice-sur-Risle", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.78063000", + "longitude": "0.65739000" + }, + { + "id": "46571", + "name": "Saint-Sylvain", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.05624000", + "longitude": "-0.21758000" + }, + { + "id": "46595", + "name": "Saint-Vaast-la-Hougue", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.58843000", + "longitude": "-1.26931000" + }, + { + "id": "46596", + "name": "Saint-Valery-en-Caux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.86667000", + "longitude": "0.73333000" + }, + { + "id": "46612", + "name": "Saint-Vigor-le-Grand", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.28242000", + "longitude": "-0.68579000" + }, + { + "id": "46625", + "name": "Saint-Wandrille-Rançon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52658000", + "longitude": "0.76497000" + }, + { + "id": "46660", + "name": "Sainte-Adresse", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50890000", + "longitude": "0.08446000" + }, + { + "id": "46688", + "name": "Sainte-Gauburge-Sainte-Colombe", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.71722000", + "longitude": "0.43126000" + }, + { + "id": "46696", + "name": "Sainte-Honorine-du-Fay", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07775000", + "longitude": "-0.49295000" + }, + { + "id": "46706", + "name": "Sainte-Marguerite-sur-Duclair", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50852000", + "longitude": "0.84362000" + }, + { + "id": "46714", + "name": "Sainte-Marie-des-Champs", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.62120000", + "longitude": "0.77904000" + }, + { + "id": "46720", + "name": "Sainte-Mère-Église", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.41000000", + "longitude": "-1.31726000" + }, + { + "id": "46789", + "name": "Sannerville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.18018000", + "longitude": "-0.22434000" + }, + { + "id": "46821", + "name": "Sartilly", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75239000", + "longitude": "-1.45678000" + }, + { + "id": "47133", + "name": "Sées", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.60403000", + "longitude": "0.17244000" + }, + { + "id": "46924", + "name": "Seine-Maritime", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.67278000", + "longitude": "1.12519000" + }, + { + "id": "46963", + "name": "Serqueux", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63202000", + "longitude": "1.54005000" + }, + { + "id": "46964", + "name": "Serquigny", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.10943000", + "longitude": "0.71016000" + }, + { + "id": "47027", + "name": "Soliers", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13440000", + "longitude": "-0.29613000" + }, + { + "id": "47053", + "name": "Sottevast", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.52374000", + "longitude": "-1.59169000" + }, + { + "id": "47054", + "name": "Sotteville-lès-Rouen", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.40972000", + "longitude": "1.09005000" + }, + { + "id": "47083", + "name": "Sourdeval", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.72312000", + "longitude": "-0.92223000" + }, + { + "id": "47122", + "name": "Surtainville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.45977000", + "longitude": "-1.81298000" + }, + { + "id": "47169", + "name": "Tancarville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.48550000", + "longitude": "0.45765000" + }, + { + "id": "47418", + "name": "Tôtes", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.68091000", + "longitude": "1.04649000" + }, + { + "id": "47213", + "name": "Tessé-la-Madeleine", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.54963000", + "longitude": "-0.42521000" + }, + { + "id": "47212", + "name": "Tessy-sur-Vire", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.97381000", + "longitude": "-1.06087000" + }, + { + "id": "47218", + "name": "Thaon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.25796000", + "longitude": "-0.45605000" + }, + { + "id": "47227", + "name": "Thiberville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.13768000", + "longitude": "0.45502000" + }, + { + "id": "47263", + "name": "Thury-Harcourt", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.98434000", + "longitude": "-0.47519000" + }, + { + "id": "47283", + "name": "Tillières-sur-Avre", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.75585000", + "longitude": "1.05388000" + }, + { + "id": "47285", + "name": "Tilly-sur-Seulles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17598000", + "longitude": "-0.62605000" + }, + { + "id": "47288", + "name": "Tinchebray", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.76437000", + "longitude": "-0.73333000" + }, + { + "id": "47292", + "name": "Tollevast", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.57437000", + "longitude": "-1.62746000" + }, + { + "id": "47303", + "name": "Torigni-sur-Vire", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.03702000", + "longitude": "-0.98214000" + }, + { + "id": "47317", + "name": "Touques", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.34443000", + "longitude": "0.10218000" + }, + { + "id": "47321", + "name": "Tourlaville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63829000", + "longitude": "-1.56639000" + }, + { + "id": "47330", + "name": "Tourouvre", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.58951000", + "longitude": "0.65253000" + }, + { + "id": "47336", + "name": "Tourville-la-Rivière", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32782000", + "longitude": "1.10551000" + }, + { + "id": "47337", + "name": "Tourville-sur-Arques", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.85926000", + "longitude": "1.10238000" + }, + { + "id": "47338", + "name": "Tourville-sur-Odon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.14154000", + "longitude": "-0.50128000" + }, + { + "id": "47341", + "name": "Toutainville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36474000", + "longitude": "0.46538000" + }, + { + "id": "47378", + "name": "Troarn", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.17835000", + "longitude": "-0.18169000" + }, + { + "id": "47383", + "name": "Trouville-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.36570000", + "longitude": "0.08041000" + }, + { + "id": "47387", + "name": "Trun", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84268000", + "longitude": "0.03268000" + }, + { + "id": "47416", + "name": "Turretot", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.60923000", + "longitude": "0.23422000" + }, + { + "id": "47435", + "name": "Urville-Nacqueville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.67444000", + "longitude": "-1.73664000" + }, + { + "id": "47464", + "name": "Val-de-Reuil", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.27385000", + "longitude": "1.21021000" + }, + { + "id": "47483", + "name": "Valframbert", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.46465000", + "longitude": "0.10828000" + }, + { + "id": "47490", + "name": "Valliquerville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.61385000", + "longitude": "0.68703000" + }, + { + "id": "47497", + "name": "Valognes", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.50881000", + "longitude": "-1.47047000" + }, + { + "id": "47509", + "name": "Varengeville-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.90475000", + "longitude": "0.99479000" + }, + { + "id": "47526", + "name": "Vassy", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.85381000", + "longitude": "-0.67485000" + }, + { + "id": "47532", + "name": "Vaudry", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.84130000", + "longitude": "-0.85309000" + }, + { + "id": "47590", + "name": "Ver-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32987000", + "longitude": "-0.53118000" + }, + { + "id": "47613", + "name": "Verneuil-sur-Avre", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.73949000", + "longitude": "0.92731000" + }, + { + "id": "47619", + "name": "Vernon", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.09292000", + "longitude": "1.46332000" + }, + { + "id": "47633", + "name": "Verson", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.15432000", + "longitude": "-0.45628000" + }, + { + "id": "47730", + "name": "Villedieu-les-Poêles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83333000", + "longitude": "-1.21667000" + }, + { + "id": "47810", + "name": "Villers-Écalles", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.54136000", + "longitude": "0.91942000" + }, + { + "id": "47796", + "name": "Villers-Bocage", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.07960000", + "longitude": "-0.65412000" + }, + { + "id": "47809", + "name": "Villers-sur-Mer", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.32264000", + "longitude": "0.00027000" + }, + { + "id": "47840", + "name": "Vimoutiers", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.92772000", + "longitude": "0.19835000" + }, + { + "id": "47857", + "name": "Vire", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "48.83849000", + "longitude": "-0.88929000" + }, + { + "id": "48000", + "name": "Yainville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.45371000", + "longitude": "0.82920000" + }, + { + "id": "48024", + "name": "Yébleron", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.63333000", + "longitude": "0.53746000" + }, + { + "id": "48005", + "name": "Yerville", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.66720000", + "longitude": "0.89594000" + }, + { + "id": "48008", + "name": "Ymare", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.35060000", + "longitude": "1.17938000" + }, + { + "id": "48010", + "name": "Yport", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.73716000", + "longitude": "0.31537000" + }, + { + "id": "48016", + "name": "Yvetot", + "state_id": 4804, + "state_code": "NOR", + "country_id": 75, + "country_code": "FR", + "latitude": "49.61744000", + "longitude": "0.75814000" + }, + { + "id": "39248", + "name": "Abzac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01667000", + "longitude": "-0.13333000" + }, + { + "id": "39258", + "name": "Agen", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.19991000", + "longitude": "0.62664000" + }, + { + "id": "39263", + "name": "Agonac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.29248000", + "longitude": "0.75025000" + }, + { + "id": "39264", + "name": "Ahetze", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40432000", + "longitude": "-1.57191000" + }, + { + "id": "39266", + "name": "Ahun", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08594000", + "longitude": "2.04479000" + }, + { + "id": "39268", + "name": "Aiffres", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29449000", + "longitude": "-0.42101000" + }, + { + "id": "39271", + "name": "Aigre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89377000", + "longitude": "0.00963000" + }, + { + "id": "39278", + "name": "Aiguillon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.29893000", + "longitude": "0.34020000" + }, + { + "id": "39289", + "name": "Airvault", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82533000", + "longitude": "-0.13634000" + }, + { + "id": "39296", + "name": "Aixe-sur-Vienne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79862000", + "longitude": "1.13884000" + }, + { + "id": "39299", + "name": "Ajain", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20635000", + "longitude": "1.99850000" + }, + { + "id": "39321", + "name": "Allassac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25840000", + "longitude": "1.47550000" + }, + { + "id": "39347", + "name": "Ambarès-et-Lagrave", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91667000", + "longitude": "-0.48333000" + }, + { + "id": "39348", + "name": "Ambazac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95983000", + "longitude": "1.40063000" + }, + { + "id": "39359", + "name": "Ambès", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01127000", + "longitude": "-0.53219000" + }, + { + "id": "39368", + "name": "Amou", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59257000", + "longitude": "-0.74676000" + }, + { + "id": "39380", + "name": "Andernos-les-Bains", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.74572000", + "longitude": "-1.10355000" + }, + { + "id": "39382", + "name": "Andilly", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25425000", + "longitude": "-1.02672000" + }, + { + "id": "39403", + "name": "Anglet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47664000", + "longitude": "-1.51346000" + }, + { + "id": "39405", + "name": "Angoulême", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65000000", + "longitude": "0.15000000" + }, + { + "id": "39404", + "name": "Angoulins", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10526000", + "longitude": "-1.10713000" + }, + { + "id": "39407", + "name": "Angresse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65809000", + "longitude": "-1.37191000" + }, + { + "id": "39418", + "name": "Annesse-et-Beaulieu", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.16416000", + "longitude": "0.57193000" + }, + { + "id": "39434", + "name": "Antonne-et-Trigonant", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21271000", + "longitude": "0.83006000" + }, + { + "id": "39437", + "name": "Antran", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.85350000", + "longitude": "0.54317000" + }, + { + "id": "39539", + "name": "Arès", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.76667000", + "longitude": "-1.13333000" + }, + { + "id": "39450", + "name": "Arbonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43248000", + "longitude": "-1.55118000" + }, + { + "id": "39453", + "name": "Arbus", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33333000", + "longitude": "-0.50000000" + }, + { + "id": "39457", + "name": "Arcachon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.65854000", + "longitude": "-1.16879000" + }, + { + "id": "39458", + "name": "Arcangues", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43124000", + "longitude": "-1.52237000" + }, + { + "id": "39463", + "name": "Archigny", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67411000", + "longitude": "0.65372000" + }, + { + "id": "39468", + "name": "Ardin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.47512000", + "longitude": "-0.55416000" + }, + { + "id": "39472", + "name": "Arette", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10000000", + "longitude": "-0.71667000" + }, + { + "id": "39480", + "name": "Argentat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.09325000", + "longitude": "1.93778000" + }, + { + "id": "39482", + "name": "Argenton-les-Vallées", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98333000", + "longitude": "-0.45000000" + }, + { + "id": "39498", + "name": "Arnac-la-Poste", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26597000", + "longitude": "1.37375000" + }, + { + "id": "39497", + "name": "Arnac-Pompadour", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40975000", + "longitude": "1.36993000" + }, + { + "id": "39513", + "name": "Ars-en-Ré", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20555000", + "longitude": "-1.52720000" + }, + { + "id": "39516", + "name": "Arsac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.99688000", + "longitude": "-0.68976000" + }, + { + "id": "39523", + "name": "Arthez-de-Béarn", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46667000", + "longitude": "-0.60000000" + }, + { + "id": "39527", + "name": "Artiguelouve", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31667000", + "longitude": "-0.46667000" + }, + { + "id": "39528", + "name": "Artigues-près-Bordeaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85000000", + "longitude": "-0.51667000" + }, + { + "id": "39529", + "name": "Artix", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39667000", + "longitude": "-0.57256000" + }, + { + "id": "39531", + "name": "Arudy", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10640000", + "longitude": "-0.43333000" + }, + { + "id": "39532", + "name": "Arvert", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74486000", + "longitude": "-1.12573000" + }, + { + "id": "39533", + "name": "Arveyres", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.88333000", + "longitude": "-0.28333000" + }, + { + "id": "39540", + "name": "Ascain", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34521000", + "longitude": "-1.62073000" + }, + { + "id": "39542", + "name": "Asnières-sur-Nouère", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71667000", + "longitude": "0.05000000" + }, + { + "id": "39552", + "name": "Assat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25000000", + "longitude": "-0.30000000" + }, + { + "id": "39553", + "name": "Asson", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.15000000", + "longitude": "-0.25000000" + }, + { + "id": "39555", + "name": "Astaffort", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06426000", + "longitude": "0.65141000" + }, + { + "id": "39565", + "name": "Atur", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14086000", + "longitude": "0.74701000" + }, + { + "id": "39576", + "name": "Aubie-et-Espessas", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01869000", + "longitude": "-0.40297000" + }, + { + "id": "39589", + "name": "Aubusson", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95606000", + "longitude": "2.16760000" + }, + { + "id": "39596", + "name": "Audenge", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.68686000", + "longitude": "-1.01345000" + }, + { + "id": "39608", + "name": "Aulnay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02082000", + "longitude": "-0.34778000" + }, + { + "id": "39649", + "name": "Auzances", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02849000", + "longitude": "2.50042000" + }, + { + "id": "39655", + "name": "Availles-Limouzine", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.12104000", + "longitude": "0.65558000" + }, + { + "id": "39658", + "name": "Avanton", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.66369000", + "longitude": "0.30862000" + }, + { + "id": "39662", + "name": "Avensan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03444000", + "longitude": "-0.75568000" + }, + { + "id": "39687", + "name": "Ayguemorte-les-Graves", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.70988000", + "longitude": "-0.48060000" + }, + { + "id": "39689", + "name": "Ayron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.66026000", + "longitude": "0.07545000" + }, + { + "id": "39691", + "name": "Aytré", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13570000", + "longitude": "-1.11452000" + }, + { + "id": "39692", + "name": "Azay-le-Brûlé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.40011000", + "longitude": "-0.24914000" + }, + { + "id": "48041", + "name": "Échillais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90072000", + "longitude": "-0.95211000" + }, + { + "id": "48043", + "name": "Échiré", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.38748000", + "longitude": "-0.41511000" + }, + { + "id": "48050", + "name": "Écoyeux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82231000", + "longitude": "-0.50539000" + }, + { + "id": "48057", + "name": "Égletons", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40637000", + "longitude": "2.04518000" + }, + { + "id": "48091", + "name": "Étagnac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89506000", + "longitude": "0.77897000" + }, + { + "id": "48099", + "name": "Étaules", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73407000", + "longitude": "-1.09918000" + }, + { + "id": "48100", + "name": "Étauliers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22582000", + "longitude": "-0.57243000" + }, + { + "id": "48116", + "name": "Évaux-les-Bains", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.17346000", + "longitude": "2.48463000" + }, + { + "id": "39719", + "name": "Baignes-Sainte-Radegonde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.38333000", + "longitude": "-0.23333000" + }, + { + "id": "39757", + "name": "Balzac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70000000", + "longitude": "0.11667000" + }, + { + "id": "39769", + "name": "Barbaste", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.16905000", + "longitude": "0.28659000" + }, + { + "id": "39774", + "name": "Barbezieux-Saint-Hilaire", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.47265000", + "longitude": "-0.15218000" + }, + { + "id": "39780", + "name": "Bardos", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47392000", + "longitude": "-1.20347000" + }, + { + "id": "39792", + "name": "Barsac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.60745000", + "longitude": "-0.31527000" + }, + { + "id": "39801", + "name": "Bassens", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.90226000", + "longitude": "-0.51631000" + }, + { + "id": "39802", + "name": "Bassillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.19305000", + "longitude": "0.81528000" + }, + { + "id": "39803", + "name": "Bassussarry", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44272000", + "longitude": "-1.51647000" + }, + { + "id": "39824", + "name": "Bayonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49257000", + "longitude": "-1.47624000" + }, + { + "id": "39827", + "name": "Bazas", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.43202000", + "longitude": "-0.21327000" + }, + { + "id": "40410", + "name": "Bègles", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.80845000", + "longitude": "-0.54809000" + }, + { + "id": "40416", + "name": "Bégaar", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82363000", + "longitude": "-0.84904000" + }, + { + "id": "40427", + "name": "Bénéjacq", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20000000", + "longitude": "-0.21667000" + }, + { + "id": "40423", + "name": "Bénesse-Maremne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63678000", + "longitude": "-1.35773000" + }, + { + "id": "40429", + "name": "Béruges", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.56738000", + "longitude": "0.20741000" + }, + { + "id": "39853", + "name": "Beaulieu-sur-Dordogne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.97832000", + "longitude": "1.83834000" + }, + { + "id": "39860", + "name": "Beaumont", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73773000", + "longitude": "0.42961000" + }, + { + "id": "39866", + "name": "Beaumont-du-Périgord", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.76662000", + "longitude": "0.76916000" + }, + { + "id": "39877", + "name": "Beaupuy", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.53549000", + "longitude": "0.14900000" + }, + { + "id": "39887", + "name": "Beautiran", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.70393000", + "longitude": "-0.45202000" + }, + { + "id": "39894", + "name": "Beauvoir-sur-Niort", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18017000", + "longitude": "-0.47178000" + }, + { + "id": "39906", + "name": "Belin-Béliet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.50000000", + "longitude": "-0.78333000" + }, + { + "id": "39907", + "name": "Bellac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.12209000", + "longitude": "1.04931000" + }, + { + "id": "39936", + "name": "Belvès", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.77632000", + "longitude": "1.00588000" + }, + { + "id": "39942", + "name": "Benquet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82992000", + "longitude": "-0.50102000" + }, + { + "id": "39945", + "name": "Bergerac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85118000", + "longitude": "0.48200000" + }, + { + "id": "39964", + "name": "Berson", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.10679000", + "longitude": "-0.58774000" + }, + { + "id": "39979", + "name": "Bessines", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30207000", + "longitude": "-0.51294000" + }, + { + "id": "39980", + "name": "Bessines-sur-Gartempe", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10799000", + "longitude": "1.36865000" + }, + { + "id": "39997", + "name": "Beychac-et-Caillau", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.87781000", + "longitude": "-0.40219000" + }, + { + "id": "39998", + "name": "Beynat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12444000", + "longitude": "1.72323000" + }, + { + "id": "40005", + "name": "Biard", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.57889000", + "longitude": "0.30812000" + }, + { + "id": "40006", + "name": "Biarritz", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48012000", + "longitude": "-1.55558000" + }, + { + "id": "40008", + "name": "Bias", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.41655000", + "longitude": "0.66977000" + }, + { + "id": "40009", + "name": "Bidache", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48299000", + "longitude": "-1.14121000" + }, + { + "id": "40010", + "name": "Bidart", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43760000", + "longitude": "-1.59127000" + }, + { + "id": "40015", + "name": "Biganos", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.64504000", + "longitude": "-0.97367000" + }, + { + "id": "40017", + "name": "Bignoux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60008000", + "longitude": "0.46932000" + }, + { + "id": "40025", + "name": "Billère", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30000000", + "longitude": "-0.40000000" + }, + { + "id": "40030", + "name": "Biscarrosse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.39454000", + "longitude": "-1.16721000" + }, + { + "id": "40038", + "name": "Bizanos", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28333000", + "longitude": "-0.35000000" + }, + { + "id": "40055", + "name": "Blanquefort", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91248000", + "longitude": "-0.63663000" + }, + { + "id": "40062", + "name": "Blaye", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12782000", + "longitude": "-0.66230000" + }, + { + "id": "40244", + "name": "Boé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.16007000", + "longitude": "0.62905000" + }, + { + "id": "40079", + "name": "Boeil-Bezing", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21667000", + "longitude": "-0.26667000" + }, + { + "id": "40093", + "name": "Boismé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.77393000", + "longitude": "-0.43476000" + }, + { + "id": "40096", + "name": "Boisseuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76977000", + "longitude": "1.33333000" + }, + { + "id": "40108", + "name": "Bon-Encontre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.18518000", + "longitude": "0.66759000" + }, + { + "id": "40115", + "name": "Bonnac-la-Côte", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94212000", + "longitude": "1.28417000" + }, + { + "id": "40116", + "name": "Bonnat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33333000", + "longitude": "1.90000000" + }, + { + "id": "40121", + "name": "Bonnes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60386000", + "longitude": "0.59791000" + }, + { + "id": "40122", + "name": "Bonneuil-Matours", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.68155000", + "longitude": "0.57063000" + }, + { + "id": "40136", + "name": "Bordeaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.84044000", + "longitude": "-0.58050000" + }, + { + "id": "40137", + "name": "Bordes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23333000", + "longitude": "-0.28333000" + }, + { + "id": "40138", + "name": "Bords", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89722000", + "longitude": "-0.79528000" + }, + { + "id": "40143", + "name": "Bort-les-Orgues", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39980000", + "longitude": "2.49579000" + }, + { + "id": "40145", + "name": "Bosdarros", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21667000", + "longitude": "-0.36667000" + }, + { + "id": "40146", + "name": "Bosmie-l'Aiguille", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75000000", + "longitude": "1.20000000" + }, + { + "id": "40150", + "name": "Boucau", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52770000", + "longitude": "-1.46556000" + }, + { + "id": "40159", + "name": "Bouillé-Loretz", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "47.07911000", + "longitude": "-0.27178000" + }, + { + "id": "40164", + "name": "Boulazac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11667000", + "longitude": "0.75000000" + }, + { + "id": "40167", + "name": "Bouliac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.81724000", + "longitude": "-0.50248000" + }, + { + "id": "40183", + "name": "Bourcefranc-le-Chapus", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85000000", + "longitude": "-1.15000000" + }, + { + "id": "40184", + "name": "Bourg", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04062000", + "longitude": "-0.55893000" + }, + { + "id": "40197", + "name": "Bourganeuf", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95268000", + "longitude": "1.75520000" + }, + { + "id": "40201", + "name": "Bourgneuf", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16766000", + "longitude": "-1.02141000" + }, + { + "id": "40216", + "name": "Boussac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.34941000", + "longitude": "2.21474000" + }, + { + "id": "40223", + "name": "Boutiers-Saint-Trojan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71667000", + "longitude": "-0.30000000" + }, + { + "id": "40240", + "name": "Boyard-Ville", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.96717000", + "longitude": "-1.24289000" + }, + { + "id": "40255", + "name": "Branne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83333000", + "longitude": "-0.18333000" + }, + { + "id": "40257", + "name": "Brantôme", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.36091000", + "longitude": "0.65398000" + }, + { + "id": "40263", + "name": "Braud-et-Saint-Louis", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.24703000", + "longitude": "-0.62438000" + }, + { + "id": "40265", + "name": "Brax", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.20277000", + "longitude": "0.55163000" + }, + { + "id": "40278", + "name": "Bressuire", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84012000", + "longitude": "-0.48851000" + }, + { + "id": "40292", + "name": "Breuil-Magné", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.98478000", + "longitude": "-0.96000000" + }, + { + "id": "40295", + "name": "Breuillet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69143000", + "longitude": "-1.05175000" + }, + { + "id": "40305", + "name": "Brie", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73804000", + "longitude": "0.24107000" + }, + { + "id": "40314", + "name": "Brigueuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95337000", + "longitude": "0.86065000" + }, + { + "id": "40322", + "name": "Brioux-sur-Boutonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14171000", + "longitude": "-0.22182000" + }, + { + "id": "40324", + "name": "Briscous", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45958000", + "longitude": "-1.33353000" + }, + { + "id": "40327", + "name": "Brive-la-Gaillarde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.15890000", + "longitude": "1.53326000" + }, + { + "id": "40340", + "name": "Bruges", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.87981000", + "longitude": "-0.61219000" + }, + { + "id": "40376", + "name": "Bugeat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.59809000", + "longitude": "1.92727000" + }, + { + "id": "40387", + "name": "Burie", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77273000", + "longitude": "-0.42289000" + }, + { + "id": "40391", + "name": "Buros", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35000000", + "longitude": "-0.30000000" + }, + { + "id": "40395", + "name": "Bussac-sur-Charente", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.78333000", + "longitude": "-0.63333000" + }, + { + "id": "40397", + "name": "Bussière-Dunoise", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25898000", + "longitude": "1.76216000" + }, + { + "id": "40398", + "name": "Bussière-Galant", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62702000", + "longitude": "1.03640000" + }, + { + "id": "40399", + "name": "Bussière-Poitevine", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.23543000", + "longitude": "0.90530000" + }, + { + "id": "40403", + "name": "Buxerolles", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.61667000", + "longitude": "0.48333000" + }, + { + "id": "40407", + "name": "Buzet-sur-Baïse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.25811000", + "longitude": "0.29809000" + }, + { + "id": "40440", + "name": "Cabanac-et-Villagrains", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.60000000", + "longitude": "-0.55000000" + }, + { + "id": "40442", + "name": "Cabariot", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92645000", + "longitude": "-0.85741000" + }, + { + "id": "40451", + "name": "Cadaujac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.75437000", + "longitude": "-0.53128000" + }, + { + "id": "40455", + "name": "Cadillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.63631000", + "longitude": "-0.31702000" + }, + { + "id": "40484", + "name": "Cambes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.73179000", + "longitude": "-0.46261000" + }, + { + "id": "40487", + "name": "Camblanes-et-Meynac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.76551000", + "longitude": "-0.48653000" + }, + { + "id": "40488", + "name": "Cambo-les-Bains", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35851000", + "longitude": "-1.40105000" + }, + { + "id": "40523", + "name": "Canéjan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.76667000", + "longitude": "-0.63333000" + }, + { + "id": "40505", + "name": "Cancon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.53543000", + "longitude": "0.62520000" + }, + { + "id": "40519", + "name": "Cantenac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.02816000", + "longitude": "-0.65312000" + }, + { + "id": "40525", + "name": "Capbreton", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64216000", + "longitude": "-1.42816000" + }, + { + "id": "40532", + "name": "Captieux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.29240000", + "longitude": "-0.26196000" + }, + { + "id": "40536", + "name": "Carbon-Blanc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.89642000", + "longitude": "-0.50107000" + }, + { + "id": "40538", + "name": "Carcans", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.07869000", + "longitude": "-1.04429000" + }, + { + "id": "40546", + "name": "Carignan-de-Bordeaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.80000000", + "longitude": "-0.48333000" + }, + { + "id": "40563", + "name": "Cars", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12917000", + "longitude": "-0.61952000" + }, + { + "id": "40564", + "name": "Carsac-Aillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83333000", + "longitude": "1.25000000" + }, + { + "id": "40570", + "name": "Casseneuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.44310000", + "longitude": "0.62095000" + }, + { + "id": "40576", + "name": "Castelculier", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.17486000", + "longitude": "0.69142000" + }, + { + "id": "40578", + "name": "Casteljaloux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.31762000", + "longitude": "0.08605000" + }, + { + "id": "40581", + "name": "Castelmoron-sur-Lot", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.39810000", + "longitude": "0.49572000" + }, + { + "id": "40586", + "name": "Castelnau-de-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.02934000", + "longitude": "-0.79828000" + }, + { + "id": "40590", + "name": "Castets", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88233000", + "longitude": "-1.14572000" + }, + { + "id": "40591", + "name": "Castets-en-Dorthe", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.56146000", + "longitude": "-0.15226000" + }, + { + "id": "40593", + "name": "Castillon-la-Bataille", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85000000", + "longitude": "-0.03333000" + }, + { + "id": "40594", + "name": "Castillonnès", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.65215000", + "longitude": "0.59222000" + }, + { + "id": "40596", + "name": "Castres-Gironde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.69464000", + "longitude": "-0.44679000" + }, + { + "id": "40621", + "name": "Cavignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.10083000", + "longitude": "-0.38976000" + }, + { + "id": "40629", + "name": "Cazères-sur-l’Adour", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76154000", + "longitude": "-0.31546000" + }, + { + "id": "41391", + "name": "Cénac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.78003000", + "longitude": "-0.45999000" + }, + { + "id": "41392", + "name": "Cénac-et-Saint-Julien", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.79968000", + "longitude": "1.20535000" + }, + { + "id": "41398", + "name": "Cérons", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.63572000", + "longitude": "-0.33351000" + }, + { + "id": "41399", + "name": "Cézac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.09019000", + "longitude": "-0.41963000" + }, + { + "id": "40632", + "name": "Celle-Lévescault", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.42406000", + "longitude": "0.18810000" + }, + { + "id": "40633", + "name": "Celles-sur-Belle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26223000", + "longitude": "-0.21274000" + }, + { + "id": "40638", + "name": "Cenon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85590000", + "longitude": "-0.51839000" + }, + { + "id": "40639", + "name": "Cenon-sur-Vienne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.77426000", + "longitude": "0.53698000" + }, + { + "id": "40641", + "name": "Cercoux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13333000", + "longitude": "-0.20000000" + }, + { + "id": "40649", + "name": "Cerizay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82154000", + "longitude": "-0.66726000" + }, + { + "id": "40663", + "name": "Cestas", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.74345000", + "longitude": "-0.67905000" + }, + { + "id": "40668", + "name": "Chabanais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87339000", + "longitude": "0.71763000" + }, + { + "id": "40679", + "name": "Chaillevette", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73030000", + "longitude": "-1.05810000" + }, + { + "id": "40685", + "name": "Chalais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.27338000", + "longitude": "0.03880000" + }, + { + "id": "40705", + "name": "Chamberet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58345000", + "longitude": "1.71980000" + }, + { + "id": "40707", + "name": "Chambon-sur-Voueize", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18938000", + "longitude": "2.42568000" + }, + { + "id": "40708", + "name": "Chamboulive", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.43215000", + "longitude": "1.70441000" + }, + { + "id": "40715", + "name": "Chameyrat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.23407000", + "longitude": "1.69811000" + }, + { + "id": "40720", + "name": "Champagne-Mouton", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99078000", + "longitude": "0.41051000" + }, + { + "id": "40729", + "name": "Champcevinel", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21630000", + "longitude": "0.72796000" + }, + { + "id": "40731", + "name": "Champdeniers-Saint-Denis", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48333000", + "longitude": "-0.40000000" + }, + { + "id": "40747", + "name": "Champniers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71451000", + "longitude": "0.20436000" + }, + { + "id": "40758", + "name": "Chancelade", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20049000", + "longitude": "0.67261000" + }, + { + "id": "40764", + "name": "Chaniers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71858000", + "longitude": "-0.55779000" + }, + { + "id": "40787", + "name": "Chaptelat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90962000", + "longitude": "1.26018000" + }, + { + "id": "40794", + "name": "Charente", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70598000", + "longitude": "0.18162000" + }, + { + "id": "40795", + "name": "Charente-Maritime", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75556000", + "longitude": "-0.71314000" + }, + { + "id": "40816", + "name": "Charron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29433000", + "longitude": "-1.10572000" + }, + { + "id": "40817", + "name": "Charroux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14410000", + "longitude": "0.40354000" + }, + { + "id": "40827", + "name": "Chasseneuil-du-Poitou", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.65112000", + "longitude": "0.37329000" + }, + { + "id": "40828", + "name": "Chasseneuil-sur-Bonnieure", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81667000", + "longitude": "0.45000000" + }, + { + "id": "40830", + "name": "Chassors", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70000000", + "longitude": "-0.21667000" + }, + { + "id": "40848", + "name": "Chaunay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20759000", + "longitude": "0.16084000" + }, + { + "id": "40850", + "name": "Chauray", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35997000", + "longitude": "-0.37859000" + }, + { + "id": "40853", + "name": "Chauvigny", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.56747000", + "longitude": "0.64928000" + }, + { + "id": "40864", + "name": "Chazelles", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64713000", + "longitude": "0.36748000" + }, + { + "id": "40935", + "name": "Châlus", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65440000", + "longitude": "0.98011000" + }, + { + "id": "40950", + "name": "Châteaubernard", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66667000", + "longitude": "-0.33333000" + }, + { + "id": "40968", + "name": "Châteauneuf-la-Forêt", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71436000", + "longitude": "1.60610000" + }, + { + "id": "40971", + "name": "Châteauneuf-sur-Charente", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60000000", + "longitude": "-0.05000000" + }, + { + "id": "40976", + "name": "Châteauponsac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13536000", + "longitude": "1.27623000" + }, + { + "id": "40984", + "name": "Châtelaillon-Plage", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07190000", + "longitude": "-1.08926000" + }, + { + "id": "40985", + "name": "Châtellerault", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81712000", + "longitude": "0.54536000" + }, + { + "id": "41006", + "name": "Châtillon-sur-Thouet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.66176000", + "longitude": "-0.23489000" + }, + { + "id": "41013", + "name": "Chérac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70456000", + "longitude": "-0.43859000" + }, + { + "id": "41014", + "name": "Chéraute", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23096000", + "longitude": "-0.86831000" + }, + { + "id": "40867", + "name": "Chef-Boutonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10859000", + "longitude": "-0.07083000" + }, + { + "id": "40883", + "name": "Chermignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68578000", + "longitude": "-0.67349000" + }, + { + "id": "40886", + "name": "Cherves-Richemont", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74345000", + "longitude": "-0.35096000" + }, + { + "id": "40887", + "name": "Cherveux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.41543000", + "longitude": "-0.35706000" + }, + { + "id": "40893", + "name": "Chevanceaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30000000", + "longitude": "-0.23333000" + }, + { + "id": "40905", + "name": "Chiché", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79643000", + "longitude": "-0.35560000" + }, + { + "id": "41019", + "name": "Ciboure", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38287000", + "longitude": "-1.67600000" + }, + { + "id": "41028", + "name": "Ciré-d’Aunis", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.05544000", + "longitude": "-0.93056000" + }, + { + "id": "41029", + "name": "Cissé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64583000", + "longitude": "0.22870000" + }, + { + "id": "41031", + "name": "Civray", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14710000", + "longitude": "0.29509000" + }, + { + "id": "41035", + "name": "Clairac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.36011000", + "longitude": "0.37893000" + }, + { + "id": "41072", + "name": "Clérac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18333000", + "longitude": "-0.21667000" + }, + { + "id": "41076", + "name": "Coarraze", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.16667000", + "longitude": "-0.23333000" + }, + { + "id": "41079", + "name": "Cognac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69583000", + "longitude": "-0.32916000" + }, + { + "id": "41080", + "name": "Cognac-la-Forêt", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83333000", + "longitude": "1.00000000" + }, + { + "id": "41087", + "name": "Colayrac-Saint-Cirq", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.22095000", + "longitude": "0.55061000" + }, + { + "id": "41104", + "name": "Colombiers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.77158000", + "longitude": "0.42388000" + }, + { + "id": "41111", + "name": "Combrand", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86405000", + "longitude": "-0.68869000" + }, + { + "id": "41125", + "name": "Compreignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.99162000", + "longitude": "1.27561000" + }, + { + "id": "41131", + "name": "Condat-sur-Vienne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.78648000", + "longitude": "1.28454000" + }, + { + "id": "41144", + "name": "Confolens", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.01363000", + "longitude": "0.67231000" + }, + { + "id": "41178", + "name": "Corme-Royal", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74395000", + "longitude": "-0.81471000" + }, + { + "id": "41193", + "name": "Cornil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21062000", + "longitude": "1.69173000" + }, + { + "id": "41202", + "name": "Corrèze", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37244000", + "longitude": "1.87513000" + }, + { + "id": "41207", + "name": "Cosnac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13423000", + "longitude": "1.58544000" + }, + { + "id": "41225", + "name": "Couhé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29911000", + "longitude": "0.18174000" + }, + { + "id": "41233", + "name": "Coulombiers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48324000", + "longitude": "0.18494000" + }, + { + "id": "41236", + "name": "Coulon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.32328000", + "longitude": "-0.58561000" + }, + { + "id": "41237", + "name": "Coulonges-sur-l’Autize", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48333000", + "longitude": "-0.59845000" + }, + { + "id": "41238", + "name": "Coulounieix-Chamiers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.15289000", + "longitude": "0.68852000" + }, + { + "id": "41274", + "name": "Courçon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.24389000", + "longitude": "-0.81300000" + }, + { + "id": "41252", + "name": "Courlay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.77941000", + "longitude": "-0.56607000" + }, + { + "id": "41261", + "name": "Cours-de-Pile", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83608000", + "longitude": "0.54656000" + }, + { + "id": "41264", + "name": "Coursac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12881000", + "longitude": "0.63919000" + }, + { + "id": "41277", + "name": "Coussac-Bonneval", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.51199000", + "longitude": "1.32261000" + }, + { + "id": "41283", + "name": "Coutras", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03333000", + "longitude": "-0.13333000" + }, + { + "id": "41286", + "name": "Couzeix", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87047000", + "longitude": "1.23828000" + }, + { + "id": "41290", + "name": "Cozes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58375000", + "longitude": "-0.83178000" + }, + { + "id": "41348", + "name": "Créon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.77457000", + "longitude": "-0.34800000" + }, + { + "id": "41311", + "name": "Creuse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07523000", + "longitude": "2.05476000" + }, + { + "id": "41316", + "name": "Creysse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85474000", + "longitude": "0.56583000" + }, + { + "id": "41354", + "name": "Cublac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14488000", + "longitude": "1.30609000" + }, + { + "id": "41356", + "name": "Cubzac-les-Ponts", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.97119000", + "longitude": "-0.44976000" + }, + { + "id": "41378", + "name": "Cussac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70666000", + "longitude": "0.85124000" + }, + { + "id": "41379", + "name": "Cussac-Fort-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11667000", + "longitude": "-0.73333000" + }, + { + "id": "41408", + "name": "Damazan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.29068000", + "longitude": "0.27694000" + }, + { + "id": "41426", + "name": "Dangé-Saint-Romain", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93333000", + "longitude": "0.60000000" + }, + { + "id": "41443", + "name": "Dax", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71032000", + "longitude": "-1.05366000" + }, + { + "id": "41624", + "name": "Département de la Corrèze", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34754000", + "longitude": "1.87319000" + }, + { + "id": "41636", + "name": "Département des Deux-Sèvres", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53918000", + "longitude": "-0.30838000" + }, + { + "id": "41638", + "name": "Département des Pyrénées-Atlantiques", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23587000", + "longitude": "-0.81642000" + }, + { + "id": "41642", + "name": "Département du Lot-et-Garonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.33333000", + "longitude": "0.50000000" + }, + { + "id": "41451", + "name": "Denguin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36667000", + "longitude": "-0.50000000" + }, + { + "id": "41477", + "name": "Dignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55000000", + "longitude": "0.28333000" + }, + { + "id": "41490", + "name": "Dirac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60000000", + "longitude": "0.25000000" + }, + { + "id": "41492", + "name": "Dissay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.70007000", + "longitude": "0.43311000" + }, + { + "id": "41507", + "name": "Dolus-d'Oléron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91667000", + "longitude": "-1.26667000" + }, + { + "id": "41520", + "name": "Domme", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.80218000", + "longitude": "1.21459000" + }, + { + "id": "41523", + "name": "Dompierre-sur-Mer", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18817000", + "longitude": "-1.06351000" + }, + { + "id": "41535", + "name": "Donzenac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22731000", + "longitude": "1.52400000" + }, + { + "id": "41539", + "name": "Dordogne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12735000", + "longitude": "0.73504000" + }, + { + "id": "41589", + "name": "Dun-le-Palestel", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30000000", + "longitude": "1.66667000" + }, + { + "id": "41594", + "name": "Duras", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.67618000", + "longitude": "0.18247000" + }, + { + "id": "41715", + "name": "Esnandes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25033000", + "longitude": "-1.11566000" + }, + { + "id": "41718", + "name": "Espelette", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34015000", + "longitude": "-1.44737000" + }, + { + "id": "41733", + "name": "Estillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.15766000", + "longitude": "0.56383000" + }, + { + "id": "41747", + "name": "Excideuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.33635000", + "longitude": "1.04754000" + }, + { + "id": "41748", + "name": "Exideuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88639000", + "longitude": "0.67318000" + }, + { + "id": "41750", + "name": "Exireuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43382000", + "longitude": "-0.19251000" + }, + { + "id": "41754", + "name": "Eymet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.66812000", + "longitude": "0.39961000" + }, + { + "id": "41755", + "name": "Eymoutiers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73790000", + "longitude": "1.74189000" + }, + { + "id": "41757", + "name": "Eysines", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.88352000", + "longitude": "-0.64686000" + }, + { + "id": "41758", + "name": "Eyvigues-et-Eybènes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.93333000", + "longitude": "1.35000000" + }, + { + "id": "41774", + "name": "Fargues-Saint-Hilaire", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.82304000", + "longitude": "-0.44676000" + }, + { + "id": "41796", + "name": "Felletin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88333000", + "longitude": "2.17431000" + }, + { + "id": "41815", + "name": "Feytiat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80905000", + "longitude": "1.33033000" + }, + { + "id": "41864", + "name": "Fléac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66667000", + "longitude": "0.10000000" + }, + { + "id": "41859", + "name": "Floirac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83238000", + "longitude": "-0.51411000" + }, + { + "id": "41882", + "name": "Fontaine-le-Comte", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53217000", + "longitude": "0.26176000" + }, + { + "id": "41893", + "name": "Fontcouverte", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76708000", + "longitude": "-0.58682000" + }, + { + "id": "41915", + "name": "Fors", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.23570000", + "longitude": "-0.40904000" + }, + { + "id": "41929", + "name": "Foulayronnes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.24029000", + "longitude": "0.64516000" + }, + { + "id": "41933", + "name": "Fouras", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.98736000", + "longitude": "-1.09275000" + }, + { + "id": "41938", + "name": "Fourques-sur-Garonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.44798000", + "longitude": "0.15703000" + }, + { + "id": "41972", + "name": "Fronsac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91667000", + "longitude": "-0.26667000" + }, + { + "id": "41973", + "name": "Frontenay-Rohan-Rohan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25276000", + "longitude": "-0.53833000" + }, + { + "id": "41992", + "name": "Fumel", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.49862000", + "longitude": "0.96506000" + }, + { + "id": "42009", + "name": "Gabarret", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.98779000", + "longitude": "0.00978000" + }, + { + "id": "42015", + "name": "Gaillan-en-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.32133000", + "longitude": "-0.95794000" + }, + { + "id": "42020", + "name": "Galgon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.98333000", + "longitude": "-0.26667000" + }, + { + "id": "42027", + "name": "Gan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23333000", + "longitude": "-0.38333000" + }, + { + "id": "42033", + "name": "Garat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63333000", + "longitude": "0.26667000" + }, + { + "id": "42038", + "name": "Gardonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83333000", + "longitude": "0.35000000" + }, + { + "id": "42045", + "name": "Garlin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55927000", + "longitude": "-0.27321000" + }, + { + "id": "42054", + "name": "Gauriaguet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03904000", + "longitude": "-0.39191000" + }, + { + "id": "42294", + "name": "Gémozac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56896000", + "longitude": "-0.67574000" + }, + { + "id": "42296", + "name": "Génissac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85000000", + "longitude": "-0.25000000" + }, + { + "id": "42060", + "name": "Gelos", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28333000", + "longitude": "-0.36667000" + }, + { + "id": "42069", + "name": "Gensac-la-Pallue", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65000000", + "longitude": "-0.25000000" + }, + { + "id": "42071", + "name": "Ger", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25000000", + "longitude": "-0.05000000" + }, + { + "id": "42102", + "name": "Gironde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.69306000", + "longitude": "-0.41400000" + }, + { + "id": "42103", + "name": "Gironde-sur-Dropt", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.58333000", + "longitude": "-0.08333000" + }, + { + "id": "42124", + "name": "Gond-Pontouvre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68333000", + "longitude": "0.16667000" + }, + { + "id": "42133", + "name": "Gontaud-de-Nogaret", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.45000000", + "longitude": "0.30000000" + }, + { + "id": "42160", + "name": "Gouzon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.19286000", + "longitude": "2.23876000" + }, + { + "id": "42164", + "name": "Gradignan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.77262000", + "longitude": "-0.61393000" + }, + { + "id": "42196", + "name": "Grenade-sur-l’Adour", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77753000", + "longitude": "-0.42961000" + }, + { + "id": "42209", + "name": "Grignols", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.38842000", + "longitude": "-0.04287000" + }, + { + "id": "42287", + "name": "Guéret", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.17234000", + "longitude": "1.87456000" + }, + { + "id": "42289", + "name": "Guéthary", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42285000", + "longitude": "-1.61073000" + }, + { + "id": "42291", + "name": "Guîtres", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03333000", + "longitude": "-0.18333000" + }, + { + "id": "42272", + "name": "Gujan-Mestras", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.63333000", + "longitude": "-1.06667000" + }, + { + "id": "42304", + "name": "Habas", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.57180000", + "longitude": "-0.92976000" + }, + { + "id": "42308", + "name": "Hagetmau", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65893000", + "longitude": "-0.59172000" + }, + { + "id": "42333", + "name": "Hasparren", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38377000", + "longitude": "-1.30499000" + }, + { + "id": "42347", + "name": "Haute-Vienne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88341000", + "longitude": "1.21781000" + }, + { + "id": "42348", + "name": "Hautefort", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25953000", + "longitude": "1.14879000" + }, + { + "id": "42367", + "name": "Hendaye", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37172000", + "longitude": "-1.77382000" + }, + { + "id": "42391", + "name": "Heugas", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64334000", + "longitude": "-1.08143000" + }, + { + "id": "42394", + "name": "Hiersac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66667000", + "longitude": "0.00000000" + }, + { + "id": "42399", + "name": "Hinx", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70190000", + "longitude": "-0.92591000" + }, + { + "id": "42432", + "name": "Hourtin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18570000", + "longitude": "-1.05719000" + }, + { + "id": "42470", + "name": "Idron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28333000", + "longitude": "-0.31667000" + }, + { + "id": "42475", + "name": "Igon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.16667000", + "longitude": "-0.23333000" + }, + { + "id": "42478", + "name": "Illats", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.59714000", + "longitude": "-0.37238000" + }, + { + "id": "42501", + "name": "Isle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80272000", + "longitude": "1.21213000" + }, + { + "id": "42512", + "name": "Iteuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48808000", + "longitude": "0.31212000" + }, + { + "id": "42515", + "name": "Itxassou", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32893000", + "longitude": "-1.40617000" + }, + { + "id": "42521", + "name": "Izon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.92416000", + "longitude": "-0.36322000" + }, + { + "id": "42533", + "name": "Jarnac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68160000", + "longitude": "-0.17329000" + }, + { + "id": "42541", + "name": "Jaunay-Clan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.68453000", + "longitude": "0.37128000" + }, + { + "id": "42562", + "name": "Jonzac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.44668000", + "longitude": "-0.43370000" + }, + { + "id": "42585", + "name": "Juillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.31808000", + "longitude": "1.32257000" + }, + { + "id": "42591", + "name": "Jumilhac-le-Grand", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.49432000", + "longitude": "1.06339000" + }, + { + "id": "42594", + "name": "Jurançon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28830000", + "longitude": "-0.38694000" + }, + { + "id": "42686", + "name": "La Chapelle-Saint-Laurent", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74643000", + "longitude": "-0.47643000" + }, + { + "id": "42714", + "name": "La Coquille", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54201000", + "longitude": "0.97675000" + }, + { + "id": "42715", + "name": "La Couarde-sur-Mer", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.19411000", + "longitude": "-1.42522000" + }, + { + "id": "42717", + "name": "La Couronne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61128000", + "longitude": "0.09948000" + }, + { + "id": "42718", + "name": "La Courtine", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70000000", + "longitude": "2.26667000" + }, + { + "id": "42725", + "name": "La Crèche", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.36667000", + "longitude": "-0.30000000" + }, + { + "id": "42747", + "name": "La Flotte", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18771000", + "longitude": "-1.32815000" + }, + { + "id": "42752", + "name": "La Forêt-sur-Sèvre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.76905000", + "longitude": "-0.64964000" + }, + { + "id": "42749", + "name": "La Force", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.86902000", + "longitude": "0.37541000" + }, + { + "id": "42784", + "name": "La Jarne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.12773000", + "longitude": "-1.07259000" + }, + { + "id": "42785", + "name": "La Jarrie", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.12879000", + "longitude": "-1.00896000" + }, + { + "id": "42790", + "name": "La Lande-de-Fronsac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.98036000", + "longitude": "-0.38048000" + }, + { + "id": "42811", + "name": "La Mothe-Saint-Héray", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35934000", + "longitude": "-0.11236000" + }, + { + "id": "42830", + "name": "La Peyratte", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67453000", + "longitude": "-0.14912000" + }, + { + "id": "42869", + "name": "La Réole", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.58201000", + "longitude": "-0.03691000" + }, + { + "id": "42851", + "name": "La Roche-Chalais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.15000000", + "longitude": "0.01667000" + }, + { + "id": "42854", + "name": "La Roche-Posay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.78654000", + "longitude": "0.81354000" + }, + { + "id": "42860", + "name": "La Rochefoucauld", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74048000", + "longitude": "0.38564000" + }, + { + "id": "42861", + "name": "La Rochelle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16667000", + "longitude": "-1.15000000" + }, + { + "id": "42875", + "name": "La Sauve", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.76667000", + "longitude": "-0.31667000" + }, + { + "id": "42879", + "name": "La Souterraine", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.23714000", + "longitude": "1.48701000" + }, + { + "id": "42887", + "name": "La Teste-de-Buch", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.62875000", + "longitude": "-1.14059000" + }, + { + "id": "42897", + "name": "La Tremblade", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76806000", + "longitude": "-1.14265000" + }, + { + "id": "42915", + "name": "La Villedieu-du-Clain", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.45559000", + "longitude": "0.36917000" + }, + { + "id": "42930", + "name": "Labatut", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55000000", + "longitude": "-0.98333000" + }, + { + "id": "42931", + "name": "Labenne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59464000", + "longitude": "-1.42559000" + }, + { + "id": "42935", + "name": "Labouheyre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.21297000", + "longitude": "-0.92062000" + }, + { + "id": "42941", + "name": "Lacanau", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.97779000", + "longitude": "-1.07621000" + }, + { + "id": "42950", + "name": "Ladignac-le-Long", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58256000", + "longitude": "1.11359000" + }, + { + "id": "42960", + "name": "Lagor", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38333000", + "longitude": "-0.65000000" + }, + { + "id": "42961", + "name": "Lagorce", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06667000", + "longitude": "-0.13333000" + }, + { + "id": "42962", + "name": "Lagord", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18822000", + "longitude": "-1.15355000" + }, + { + "id": "42964", + "name": "Laguenne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.24218000", + "longitude": "1.78135000" + }, + { + "id": "42966", + "name": "Lahonce", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48248000", + "longitude": "-1.39101000" + }, + { + "id": "42975", + "name": "Lalinde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83621000", + "longitude": "0.73075000" + }, + { + "id": "42983", + "name": "Lamarque", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.09536000", + "longitude": "-0.71892000" + }, + { + "id": "42989", + "name": "Lamonzie-Saint-Martin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.84713000", + "longitude": "0.39102000" + }, + { + "id": "42991", + "name": "Lamothe-Montravel", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85000000", + "longitude": "0.03333000" + }, + { + "id": "43005", + "name": "Landes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.97543000", + "longitude": "-0.74241000" + }, + { + "id": "43006", + "name": "Landiras", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.56702000", + "longitude": "-0.41536000" + }, + { + "id": "43026", + "name": "Langoiran", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.70869000", + "longitude": "-0.39368000" + }, + { + "id": "43028", + "name": "Langon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55310000", + "longitude": "-0.24951000" + }, + { + "id": "43040", + "name": "Lanouaille", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.39517000", + "longitude": "1.13968000" + }, + { + "id": "43049", + "name": "Lanton", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.70478000", + "longitude": "-1.03562000" + }, + { + "id": "43061", + "name": "Laplume", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.11292000", + "longitude": "0.52975000" + }, + { + "id": "43068", + "name": "Larche", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12048000", + "longitude": "1.41566000" + }, + { + "id": "43076", + "name": "Laroque-Timbaut", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.28238000", + "longitude": "0.76274000" + }, + { + "id": "43079", + "name": "Larressore", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36792000", + "longitude": "-1.43976000" + }, + { + "id": "43081", + "name": "Laruns", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "42.98826000", + "longitude": "-0.42658000" + }, + { + "id": "43082", + "name": "Laruscade", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11667000", + "longitude": "-0.33333000" + }, + { + "id": "43086", + "name": "Lasseube", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23333000", + "longitude": "-0.48333000" + }, + { + "id": "43089", + "name": "Lathus-Saint-Rémy", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.33333000", + "longitude": "0.96667000" + }, + { + "id": "43090", + "name": "Latillé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.61818000", + "longitude": "0.07630000" + }, + { + "id": "43092", + "name": "Latresne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.78601000", + "longitude": "-0.48994000" + }, + { + "id": "43111", + "name": "Lavardac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.17785000", + "longitude": "0.29825000" + }, + { + "id": "43119", + "name": "Lavoux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.59566000", + "longitude": "0.53012000" + }, + { + "id": "43123", + "name": "Layrac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.13449000", + "longitude": "0.66176000" + }, + { + "id": "43687", + "name": "Léognan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.73548000", + "longitude": "-0.59738000" + }, + { + "id": "43688", + "name": "Léon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.87676000", + "longitude": "-1.30057000" + }, + { + "id": "43127", + "name": "Le Barp", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.60833000", + "longitude": "-0.76948000" + }, + { + "id": "43132", + "name": "Le Bois-Plage-en-Ré", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18659000", + "longitude": "-1.39267000" + }, + { + "id": "43141", + "name": "Le Bouscat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.86600000", + "longitude": "-0.59411000" + }, + { + "id": "43148", + "name": "Le Bugue", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91847000", + "longitude": "0.92714000" + }, + { + "id": "43149", + "name": "Le Buisson-de-Cadouin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85000000", + "longitude": "0.91667000" + }, + { + "id": "43180", + "name": "Le Dorat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.21514000", + "longitude": "1.08153000" + }, + { + "id": "43188", + "name": "Le Fleix", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.86667000", + "longitude": "0.25000000" + }, + { + "id": "43195", + "name": "Le Grand-Bourg", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.16018000", + "longitude": "1.64465000" + }, + { + "id": "43201", + "name": "Le Gua", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72614000", + "longitude": "-0.94468000" + }, + { + "id": "43204", + "name": "Le Haillan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.87225000", + "longitude": "-0.67965000" + }, + { + "id": "43211", + "name": "Le Lardin-Saint-Lazare", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13333000", + "longitude": "1.21667000" + }, + { + "id": "43222", + "name": "Le Mas-d’Agenais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.41033000", + "longitude": "0.21869000" + }, + { + "id": "43244", + "name": "Le Palais-sur-Vienne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86380000", + "longitude": "1.32207000" + }, + { + "id": "43246", + "name": "Le Passage", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.20143000", + "longitude": "0.60275000" + }, + { + "id": "43256", + "name": "Le Pian-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95537000", + "longitude": "-0.66227000" + }, + { + "id": "43259", + "name": "Le Pin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86179000", + "longitude": "-0.65440000" + }, + { + "id": "43261", + "name": "Le Pizou", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01667000", + "longitude": "0.06667000" + }, + { + "id": "43276", + "name": "Le Porge", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.87277000", + "longitude": "-1.08889000" + }, + { + "id": "43304", + "name": "Le Taillan-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.90521000", + "longitude": "-0.67060000" + }, + { + "id": "43305", + "name": "Le Tallud", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.62911000", + "longitude": "-0.29979000" + }, + { + "id": "43306", + "name": "Le Teich", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.63177000", + "longitude": "-1.02155000" + }, + { + "id": "43318", + "name": "Le Thou", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.08333000", + "longitude": "-0.91667000" + }, + { + "id": "43330", + "name": "Le Verdon-sur-Mer", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54490000", + "longitude": "-1.06225000" + }, + { + "id": "43335", + "name": "Le Vigen", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75149000", + "longitude": "1.28865000" + }, + { + "id": "43340", + "name": "Ledeuix", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21667000", + "longitude": "-0.61667000" + }, + { + "id": "43347", + "name": "Lembras", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.88431000", + "longitude": "0.52657000" + }, + { + "id": "43349", + "name": "Lencloître", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81622000", + "longitude": "0.32827000" + }, + { + "id": "43366", + "name": "Les Artigues-de-Lussac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96667000", + "longitude": "-0.15000000" + }, + { + "id": "43435", + "name": "Les Églisottes-et-Chalaures", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.09811000", + "longitude": "-0.03893000" + }, + { + "id": "43391", + "name": "Les Gonds", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71437000", + "longitude": "-0.61408000" + }, + { + "id": "43408", + "name": "Les Mathes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71390000", + "longitude": "-1.15497000" + }, + { + "id": "43417", + "name": "Les Ormes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97478000", + "longitude": "0.60484000" + }, + { + "id": "43419", + "name": "Les Peintures", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06667000", + "longitude": "-0.10000000" + }, + { + "id": "43436", + "name": "Lescar", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33333000", + "longitude": "-0.41667000" + }, + { + "id": "43438", + "name": "Lesparre-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30719000", + "longitude": "-0.93764000" + }, + { + "id": "43443", + "name": "Lestelle-Bétharram", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.13333000", + "longitude": "-0.21667000" + }, + { + "id": "43459", + "name": "Lezay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26437000", + "longitude": "-0.00925000" + }, + { + "id": "43465", + "name": "Libourne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91530000", + "longitude": "-0.24394000" + }, + { + "id": "43484", + "name": "Ligugé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.52035000", + "longitude": "0.32617000" + }, + { + "id": "43493", + "name": "Limoges", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83153000", + "longitude": "1.25781000" + }, + { + "id": "43498", + "name": "Linards", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70083000", + "longitude": "1.53259000" + }, + { + "id": "43499", + "name": "Linars", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65000000", + "longitude": "0.08333000" + }, + { + "id": "43504", + "name": "Linxe", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91984000", + "longitude": "-1.24619000" + }, + { + "id": "43512", + "name": "Listrac-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.07410000", + "longitude": "-0.79132000" + }, + { + "id": "43513", + "name": "Lit-et-Mixe", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.03308000", + "longitude": "-1.25330000" + }, + { + "id": "43576", + "name": "Lons", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31667000", + "longitude": "-0.40000000" + }, + { + "id": "43592", + "name": "Lormont", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.87495000", + "longitude": "-0.51782000" + }, + { + "id": "43600", + "name": "Loubert", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91422000", + "longitude": "0.58617000" + }, + { + "id": "43601", + "name": "Loudun", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "47.00788000", + "longitude": "0.08296000" + }, + { + "id": "43604", + "name": "Loupiac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.61667000", + "longitude": "-0.30000000" + }, + { + "id": "43613", + "name": "Louvie-Juzon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08646000", + "longitude": "-0.41928000" + }, + { + "id": "43620", + "name": "Louzy", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "47.01201000", + "longitude": "-0.18537000" + }, + { + "id": "43628", + "name": "Lubersac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.44474000", + "longitude": "1.40457000" + }, + { + "id": "43637", + "name": "Lucq-de-Béarn", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30000000", + "longitude": "-0.66667000" + }, + { + "id": "43640", + "name": "Ludon-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.98118000", + "longitude": "-0.60254000" + }, + { + "id": "43642", + "name": "Lugon-et-l'Île-du-Carnay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95556000", + "longitude": "-0.33611000" + }, + { + "id": "43661", + "name": "Lusignan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43598000", + "longitude": "0.12620000" + }, + { + "id": "43664", + "name": "Lussac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95000000", + "longitude": "-0.10000000" + }, + { + "id": "43665", + "name": "Lussac-les-Châteaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.40327000", + "longitude": "0.72524000" + }, + { + "id": "43711", + "name": "Macau", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.00679000", + "longitude": "-0.61821000" + }, + { + "id": "43719", + "name": "Magescq", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78205000", + "longitude": "-1.21652000" + }, + { + "id": "43721", + "name": "Magnac-Laval", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.21514000", + "longitude": "1.16724000" + }, + { + "id": "43722", + "name": "Magnac-sur-Touvre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66667000", + "longitude": "0.23333000" + }, + { + "id": "43730", + "name": "Magné", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31548000", + "longitude": "-0.54575000" + }, + { + "id": "43755", + "name": "Malemort-sur-Corrèze", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.17075000", + "longitude": "1.56393000" + }, + { + "id": "43781", + "name": "Mansac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.16839000", + "longitude": "1.38342000" + }, + { + "id": "43783", + "name": "Mansle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87526000", + "longitude": "0.17914000" + }, + { + "id": "43791", + "name": "Marans", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.30811000", + "longitude": "-0.99450000" + }, + { + "id": "43796", + "name": "Marcamps", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04045000", + "longitude": "-0.49275000" + }, + { + "id": "43799", + "name": "Marcheprime", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.69146000", + "longitude": "-0.85496000" + }, + { + "id": "43803", + "name": "Marcillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.26870000", + "longitude": "-0.52379000" + }, + { + "id": "43823", + "name": "Marennes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82280000", + "longitude": "-1.10546000" + }, + { + "id": "43825", + "name": "Mareuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45000000", + "longitude": "0.45000000" + }, + { + "id": "43832", + "name": "Margaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04012000", + "longitude": "-0.67892000" + }, + { + "id": "43841", + "name": "Marigny-Brizay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74622000", + "longitude": "0.37626000" + }, + { + "id": "43859", + "name": "Marmande", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.50012000", + "longitude": "0.16526000" + }, + { + "id": "43907", + "name": "Marsilly", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.23027000", + "longitude": "-1.13840000" + }, + { + "id": "43911", + "name": "Martignas-sur-Jalle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.84528000", + "longitude": "-0.78060000" + }, + { + "id": "43917", + "name": "Martillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.71100000", + "longitude": "-0.53747000" + }, + { + "id": "43937", + "name": "Matha", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86823000", + "longitude": "-0.31849000" + }, + { + "id": "43949", + "name": "Mauléon-Licharre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.22684000", + "longitude": "-0.88038000" + }, + { + "id": "43964", + "name": "Mauzé-sur-le-Mignon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.19516000", + "longitude": "-0.67032000" + }, + { + "id": "43963", + "name": "Mauzé-Thouarsais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97611000", + "longitude": "-0.27846000" + }, + { + "id": "43979", + "name": "Mazères-Lezons", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26667000", + "longitude": "-0.35000000" + }, + { + "id": "44458", + "name": "Médis", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64337000", + "longitude": "-0.96298000" + }, + { + "id": "44460", + "name": "Mées", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70452000", + "longitude": "-1.10952000" + }, + { + "id": "44463", + "name": "Ménesplet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01667000", + "longitude": "0.11667000" + }, + { + "id": "44473", + "name": "Mérignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83248000", + "longitude": "-0.63381000" + }, + { + "id": "44486", + "name": "Mézin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05668000", + "longitude": "0.25874000" + }, + { + "id": "43986", + "name": "Meilhan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86436000", + "longitude": "-0.70587000" + }, + { + "id": "43987", + "name": "Meilhan-sur-Garonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.52131000", + "longitude": "0.03472000" + }, + { + "id": "43995", + "name": "Melle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.22285000", + "longitude": "-0.14216000" + }, + { + "id": "44005", + "name": "Mensignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22505000", + "longitude": "0.56214000" + }, + { + "id": "44027", + "name": "Meschers-sur-Gironde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.56037000", + "longitude": "-0.95470000" + }, + { + "id": "44049", + "name": "Meursac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64890000", + "longitude": "-0.80801000" + }, + { + "id": "44057", + "name": "Meymac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53583000", + "longitude": "2.14699000" + }, + { + "id": "44062", + "name": "Meyssac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.05547000", + "longitude": "1.67412000" + }, + { + "id": "44069", + "name": "Mignaloux-Beauvoir", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.54157000", + "longitude": "0.41538000" + }, + { + "id": "44070", + "name": "Migné-Auxances", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.62745000", + "longitude": "0.31458000" + }, + { + "id": "44078", + "name": "Mimbaste", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64887000", + "longitude": "-0.97383000" + }, + { + "id": "44080", + "name": "Mimizan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.20057000", + "longitude": "-1.22886000" + }, + { + "id": "44085", + "name": "Mios", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.60489000", + "longitude": "-0.93329000" + }, + { + "id": "44088", + "name": "Mirambeau", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37310000", + "longitude": "-0.57067000" + }, + { + "id": "44089", + "name": "Miramont-de-Guyenne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.60157000", + "longitude": "0.36247000" + }, + { + "id": "44092", + "name": "Mirebeau", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.78743000", + "longitude": "0.18341000" + }, + { + "id": "44097", + "name": "Mirepeix", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18333000", + "longitude": "-0.25000000" + }, + { + "id": "44128", + "name": "Monbazillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.79374000", + "longitude": "0.49256000" + }, + { + "id": "44132", + "name": "Moncontour", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88086000", + "longitude": "-0.01996000" + }, + { + "id": "44133", + "name": "Moncoutant", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.72547000", + "longitude": "-0.58797000" + }, + { + "id": "44140", + "name": "Monein", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33333000", + "longitude": "-0.58333000" + }, + { + "id": "44142", + "name": "Monflanquin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.52966000", + "longitude": "0.76772000" + }, + { + "id": "44152", + "name": "Monségur", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.65040000", + "longitude": "0.08047000" + }, + { + "id": "44150", + "name": "Monsempron-Libos", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.49004000", + "longitude": "0.94090000" + }, + { + "id": "44153", + "name": "Mont", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43333000", + "longitude": "-0.65000000" + }, + { + "id": "44161", + "name": "Mont-de-Marsan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89022000", + "longitude": "-0.49713000" + }, + { + "id": "44167", + "name": "Montagne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.93333000", + "longitude": "-0.13333000" + }, + { + "id": "44174", + "name": "Montamisé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.62181000", + "longitude": "0.42442000" + }, + { + "id": "44177", + "name": "Montardon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36667000", + "longitude": "-0.35000000" + }, + { + "id": "44187", + "name": "Montaut", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.13333000", + "longitude": "-0.20000000" + }, + { + "id": "44189", + "name": "Montayral", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.47513000", + "longitude": "0.98769000" + }, + { + "id": "44202", + "name": "Montbron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66667000", + "longitude": "0.50000000" + }, + { + "id": "44205", + "name": "Montcaret", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85000000", + "longitude": "0.06667000" + }, + { + "id": "44219", + "name": "Montendre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.28469000", + "longitude": "-0.40627000" + }, + { + "id": "44240", + "name": "Montfort-en-Chalosse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71124000", + "longitude": "-0.83947000" + }, + { + "id": "44249", + "name": "Montguyon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21667000", + "longitude": "-0.18333000" + }, + { + "id": "44255", + "name": "Montignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.06429000", + "longitude": "1.16196000" + }, + { + "id": "44272", + "name": "Montlieu-la-Garde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25000000", + "longitude": "-0.25000000" + }, + { + "id": "44286", + "name": "Montmoreau-Saint-Cybard", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40000000", + "longitude": "0.13333000" + }, + { + "id": "44288", + "name": "Montmorillon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.42614000", + "longitude": "0.87070000" + }, + { + "id": "44301", + "name": "Montpon-Ménestérol", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.00000000", + "longitude": "0.16667000" + }, + { + "id": "44306", + "name": "Montrem", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13417000", + "longitude": "0.59029000" + }, + { + "id": "44331", + "name": "Montussan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.88057000", + "longitude": "-0.42181000" + }, + { + "id": "44346", + "name": "Morcenx", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.03536000", + "longitude": "-0.91375000" + }, + { + "id": "44356", + "name": "Morlaas", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35000000", + "longitude": "-0.26667000" + }, + { + "id": "44360", + "name": "Mornac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68333000", + "longitude": "0.26667000" + }, + { + "id": "44370", + "name": "Mortagne-sur-Gironde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48139000", + "longitude": "-0.78702000" + }, + { + "id": "44387", + "name": "Mougon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29561000", + "longitude": "-0.28659000" + }, + { + "id": "44388", + "name": "Mouguerre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46795000", + "longitude": "-1.41824000" + }, + { + "id": "44392", + "name": "Mouleydier", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85572000", + "longitude": "0.59759000" + }, + { + "id": "44393", + "name": "Mouliets-et-Villemartin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83333000", + "longitude": "-0.01667000" + }, + { + "id": "44397", + "name": "Moulis-en-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.05938000", + "longitude": "-0.77033000" + }, + { + "id": "44399", + "name": "Mourenx", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38333000", + "longitude": "-0.60000000" + }, + { + "id": "44411", + "name": "Mouthiers-sur-Boëme", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.55000000", + "longitude": "0.11667000" + }, + { + "id": "44430", + "name": "Mugron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74952000", + "longitude": "-0.75179000" + }, + { + "id": "44441", + "name": "Muron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03444000", + "longitude": "-0.82867000" + }, + { + "id": "44445", + "name": "Mussidan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03542000", + "longitude": "0.36290000" + }, + { + "id": "44497", + "name": "Naintré", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.76354000", + "longitude": "0.48683000" + }, + { + "id": "44507", + "name": "Nanteuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.41172000", + "longitude": "-0.17461000" + }, + { + "id": "44508", + "name": "Nanteuil-en-Vallée", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.00089000", + "longitude": "0.32206000" + }, + { + "id": "44511", + "name": "Nantiat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.00910000", + "longitude": "1.17308000" + }, + { + "id": "44516", + "name": "Narrosse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70381000", + "longitude": "-1.00742000" + }, + { + "id": "44520", + "name": "Navailles-Angos", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41667000", + "longitude": "-0.33333000" + }, + { + "id": "44521", + "name": "Navarrenx", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32135000", + "longitude": "-0.75927000" + }, + { + "id": "44524", + "name": "Naves", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.31395000", + "longitude": "1.76708000" + }, + { + "id": "44525", + "name": "Nay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18333000", + "longitude": "-0.26667000" + }, + { + "id": "44694", + "name": "Nérac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.13613000", + "longitude": "0.33934000" + }, + { + "id": "44530", + "name": "Nercillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.71667000", + "longitude": "-0.25000000" + }, + { + "id": "44531", + "name": "Nersac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.63333000", + "longitude": "0.05000000" + }, + { + "id": "44561", + "name": "Neuvic", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.10033000", + "longitude": "0.46901000" + }, + { + "id": "44562", + "name": "Neuvic-Entier", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72206000", + "longitude": "1.61303000" + }, + { + "id": "44566", + "name": "Neuville-de-Poitou", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.68333000", + "longitude": "0.25000000" + }, + { + "id": "44585", + "name": "Nexon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67962000", + "longitude": "1.18555000" + }, + { + "id": "44595", + "name": "Nieul", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92668000", + "longitude": "1.17494000" + }, + { + "id": "44597", + "name": "Nieul-lès-Saintes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76021000", + "longitude": "-0.73137000" + }, + { + "id": "44598", + "name": "Nieul-sur-Mer", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20583000", + "longitude": "-1.16449000" + }, + { + "id": "44601", + "name": "Niort", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.32313000", + "longitude": "-0.45877000" + }, + { + "id": "44606", + "name": "Noaillan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.48057000", + "longitude": "-0.36640000" + }, + { + "id": "44639", + "name": "Nontron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.52950000", + "longitude": "0.66179000" + }, + { + "id": "44655", + "name": "Notre-Dame-de-Sanilhac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.12121000", + "longitude": "0.71157000" + }, + { + "id": "44657", + "name": "Nouaillé-Maupertuis", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.51113000", + "longitude": "0.41667000" + }, + { + "id": "44659", + "name": "Nousty", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26667000", + "longitude": "-0.21667000" + }, + { + "id": "44685", + "name": "Nueil-les-Aubiers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93333000", + "longitude": "-0.58333000" + }, + { + "id": "44711", + "name": "Objat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.26302000", + "longitude": "1.40826000" + }, + { + "id": "44717", + "name": "Oeyreluy", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66876000", + "longitude": "-1.08276000" + }, + { + "id": "44721", + "name": "Ogeu-les-Bains", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.15000000", + "longitude": "-0.50000000" + }, + { + "id": "44739", + "name": "Oloron-Sainte-Marie", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19441000", + "longitude": "-0.61069000" + }, + { + "id": "44742", + "name": "Ondres", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56461000", + "longitude": "-1.44449000" + }, + { + "id": "44743", + "name": "Onesse-Laharie", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06146000", + "longitude": "-1.06984000" + }, + { + "id": "44750", + "name": "Oradour-sur-Glane", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.93405000", + "longitude": "1.03170000" + }, + { + "id": "44751", + "name": "Oradour-sur-Vayres", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.73286000", + "longitude": "0.86457000" + }, + { + "id": "44786", + "name": "Orthez", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48839000", + "longitude": "-0.77244000" + }, + { + "id": "44811", + "name": "Ousse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28333000", + "longitude": "-0.26667000" + }, + { + "id": "44827", + "name": "Paillet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.68512000", + "longitude": "-0.36500000" + }, + { + "id": "44839", + "name": "Pamproux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.39578000", + "longitude": "-0.05327000" + }, + { + "id": "44840", + "name": "Panazol", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83465000", + "longitude": "1.32759000" + }, + { + "id": "44850", + "name": "Parempuyre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95038000", + "longitude": "-0.60453000" + }, + { + "id": "44851", + "name": "Parentis-en-Born", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.35274000", + "longitude": "-1.07095000" + }, + { + "id": "44859", + "name": "Parthenay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64872000", + "longitude": "-0.24682000" + }, + { + "id": "44867", + "name": "Pau", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30000000", + "longitude": "-0.36667000" + }, + { + "id": "44868", + "name": "Pauillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.19644000", + "longitude": "-0.74873000" + }, + { + "id": "44877", + "name": "Payzac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.40000000", + "longitude": "1.21667000" + }, + { + "id": "45353", + "name": "Pérignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62306000", + "longitude": "-0.46488000" + }, + { + "id": "45357", + "name": "Périgny", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15519000", + "longitude": "-1.09822000" + }, + { + "id": "45359", + "name": "Périgueux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.18333000", + "longitude": "0.71667000" + }, + { + "id": "44886", + "name": "Pellegrue", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.74355000", + "longitude": "0.07595000" + }, + { + "id": "44914", + "name": "Pessac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.81011000", + "longitude": "-0.64129000" + }, + { + "id": "44922", + "name": "Peujard", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03619000", + "longitude": "-0.44096000" + }, + { + "id": "44926", + "name": "Peyrat-de-Bellac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14087000", + "longitude": "1.03661000" + }, + { + "id": "44927", + "name": "Peyrat-le-Château", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81578000", + "longitude": "1.77233000" + }, + { + "id": "44928", + "name": "Peyrehorade", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.54886000", + "longitude": "-1.11574000" + }, + { + "id": "44932", + "name": "Peyrilhac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95043000", + "longitude": "1.13503000" + }, + { + "id": "44986", + "name": "Piégut-Pluviers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62297000", + "longitude": "0.69013000" + }, + { + "id": "44949", + "name": "Pierre-Buffière", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69193000", + "longitude": "1.36193000" + }, + { + "id": "44981", + "name": "Pissos", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.30833000", + "longitude": "-0.77963000" + }, + { + "id": "45020", + "name": "Pleumartin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73786000", + "longitude": "0.76900000" + }, + { + "id": "45132", + "name": "Podensac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.65038000", + "longitude": "-0.35508000" + }, + { + "id": "45133", + "name": "Poey-de-Lescar", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35000000", + "longitude": "-0.46667000" + }, + { + "id": "45138", + "name": "Poitiers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58333000", + "longitude": "0.33333000" + }, + { + "id": "45147", + "name": "Pomarez", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62971000", + "longitude": "-0.82934000" + }, + { + "id": "45153", + "name": "Pompaire", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60727000", + "longitude": "-0.23237000" + }, + { + "id": "45156", + "name": "Pompignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85114000", + "longitude": "-0.43705000" + }, + { + "id": "45162", + "name": "Pons", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.57988000", + "longitude": "-0.54783000" + }, + { + "id": "45185", + "name": "Pont-du-Casse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.22867000", + "longitude": "0.67924000" + }, + { + "id": "45190", + "name": "Pont-l’Abbé-d’Arnoult", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82875000", + "longitude": "-0.87499000" + }, + { + "id": "45199", + "name": "Pontacq", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18333000", + "longitude": "-0.11667000" + }, + { + "id": "45208", + "name": "Pontenx-les-Forges", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.24134000", + "longitude": "-1.12095000" + }, + { + "id": "45214", + "name": "Pontonx-sur-l'Adour", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78783000", + "longitude": "-0.92508000" + }, + { + "id": "45234", + "name": "Port-des-Barques", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94763000", + "longitude": "-1.07795000" + }, + { + "id": "45231", + "name": "Port-Sainte-Foy-et-Ponchapt", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83333000", + "longitude": "0.20000000" + }, + { + "id": "45232", + "name": "Port-Sainte-Marie", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.25158000", + "longitude": "0.39134000" + }, + { + "id": "45242", + "name": "Portets", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.69679000", + "longitude": "-0.42452000" + }, + { + "id": "45252", + "name": "Pouillon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60480000", + "longitude": "-0.99947000" + }, + { + "id": "45276", + "name": "Prahecq", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.25897000", + "longitude": "-0.34425000" + }, + { + "id": "45304", + "name": "Préchac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.39883000", + "longitude": "-0.35387000" + }, + { + "id": "45281", + "name": "Preignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.58438000", + "longitude": "-0.29423000" + }, + { + "id": "45286", + "name": "Prigonrieux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85451000", + "longitude": "0.40275000" + }, + { + "id": "45317", + "name": "Pugnac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.08190000", + "longitude": "-0.49618000" + }, + { + "id": "45319", + "name": "Puilboreau", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18620000", + "longitude": "-1.11797000" + }, + { + "id": "45326", + "name": "Pujols", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.39424000", + "longitude": "0.68810000" + }, + { + "id": "45340", + "name": "Puymoyen", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61667000", + "longitude": "0.18333000" + }, + { + "id": "45341", + "name": "Puyoô", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52502000", + "longitude": "-0.91283000" + }, + { + "id": "45398", + "name": "Quinsac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.75535000", + "longitude": "-0.48697000" + }, + { + "id": "45433", + "name": "Rauzan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.77838000", + "longitude": "-0.12465000" + }, + { + "id": "45436", + "name": "Razac-sur-l’Isle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.16332000", + "longitude": "0.60085000" + }, + { + "id": "45437", + "name": "Razès", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03219000", + "longitude": "1.33676000" + }, + { + "id": "45446", + "name": "Reignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.23393000", + "longitude": "-0.50627000" + }, + { + "id": "45492", + "name": "Ribérac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25000000", + "longitude": "0.33333000" + }, + { + "id": "45511", + "name": "Rilhac-Rancon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90000000", + "longitude": "1.31667000" + }, + { + "id": "45518", + "name": "Rion-des-Landes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93449000", + "longitude": "-0.92388000" + }, + { + "id": "45519", + "name": "Rions", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.66378000", + "longitude": "-0.35113000" + }, + { + "id": "45527", + "name": "Rivedoux-Plage", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15854000", + "longitude": "-1.27093000" + }, + { + "id": "45532", + "name": "Rivière-Saas-et-Gourby", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67990000", + "longitude": "-1.14986000" + }, + { + "id": "45533", + "name": "Rivières", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75295000", + "longitude": "0.36128000" + }, + { + "id": "45542", + "name": "Rochechouart", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82290000", + "longitude": "0.82080000" + }, + { + "id": "45544", + "name": "Rochefort", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94204000", + "longitude": "-0.96696000" + }, + { + "id": "45549", + "name": "Roches-Prémarie-Andillé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48251000", + "longitude": "0.37106000" + }, + { + "id": "45592", + "name": "Roquefort", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.03500000", + "longitude": "-0.32323000" + }, + { + "id": "45621", + "name": "Rouffignac-Saint-Cernin-de-Reilhac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.05000000", + "longitude": "0.96667000" + }, + { + "id": "45627", + "name": "Rouillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77582000", + "longitude": "-0.06380000" + }, + { + "id": "45629", + "name": "Rouillé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.42024000", + "longitude": "0.04073000" + }, + { + "id": "45632", + "name": "Roullet-Saint-Estèphe", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58333000", + "longitude": "0.05000000" + }, + { + "id": "45634", + "name": "Roumazières-Loubert", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88690000", + "longitude": "0.58125000" + }, + { + "id": "45645", + "name": "Royan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.62846000", + "longitude": "-1.02810000" + }, + { + "id": "45662", + "name": "Ruelle-sur-Touvre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68333000", + "longitude": "0.23333000" + }, + { + "id": "45663", + "name": "Ruffec", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.02877000", + "longitude": "0.19821000" + }, + { + "id": "45700", + "name": "Sablonceaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70963000", + "longitude": "-0.88806000" + }, + { + "id": "45701", + "name": "Sablons", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03333000", + "longitude": "-0.18333000" + }, + { + "id": "45705", + "name": "Sabres", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.14896000", + "longitude": "-0.74123000" + }, + { + "id": "45710", + "name": "Sadirac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.78179000", + "longitude": "-0.41334000" + }, + { + "id": "45729", + "name": "Saint-Agnant", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87354000", + "longitude": "-0.96119000" + }, + { + "id": "45730", + "name": "Saint-Agnant-de-Versillat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.27800000", + "longitude": "1.50962000" + }, + { + "id": "45733", + "name": "Saint-Aigulin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.15735000", + "longitude": "-0.00863000" + }, + { + "id": "45745", + "name": "Saint-Amand-sur-Sèvre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86905000", + "longitude": "-0.79441000" + }, + { + "id": "45749", + "name": "Saint-Amant-de-Boixe", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.79790000", + "longitude": "0.13524000" + }, + { + "id": "45759", + "name": "Saint-André-de-Seignanx", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55800000", + "longitude": "-1.35183000" + }, + { + "id": "45771", + "name": "Saint-Antoine-de-Breuilh", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83333000", + "longitude": "0.16667000" + }, + { + "id": "45778", + "name": "Saint-Astier", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14582000", + "longitude": "0.52898000" + }, + { + "id": "45782", + "name": "Saint-Aubin-de-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91180000", + "longitude": "-0.72460000" + }, + { + "id": "45788", + "name": "Saint-Aubin-le-Cloud", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.65308000", + "longitude": "-0.35258000" + }, + { + "id": "45794", + "name": "Saint-Aulaye", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20000000", + "longitude": "0.13333000" + }, + { + "id": "46639", + "name": "Saint-Émilion", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.88333000", + "longitude": "-0.15000000" + }, + { + "id": "46643", + "name": "Saint-Étienne-de-Baïgorry", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.17533000", + "longitude": "-1.34670000" + }, + { + "id": "45810", + "name": "Saint-Benoît", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.55315000", + "longitude": "0.34190000" + }, + { + "id": "45825", + "name": "Saint-Brice", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68333000", + "longitude": "-0.28333000" + }, + { + "id": "45829", + "name": "Saint-Brice-sur-Vienne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87852000", + "longitude": "0.95594000" + }, + { + "id": "45838", + "name": "Saint-Caprais-de-Bordeaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.74786000", + "longitude": "-0.43192000" + }, + { + "id": "45855", + "name": "Saint-Christoly-de-Blaye", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13179000", + "longitude": "-0.50760000" + }, + { + "id": "45861", + "name": "Saint-Ciers-d’Abzac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03333000", + "longitude": "-0.26667000" + }, + { + "id": "45862", + "name": "Saint-Ciers-sur-Gironde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.28855000", + "longitude": "-0.60794000" + }, + { + "id": "45865", + "name": "Saint-Claud", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89526000", + "longitude": "0.46454000" + }, + { + "id": "45869", + "name": "Saint-Clément", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.34150000", + "longitude": "1.68507000" + }, + { + "id": "45880", + "name": "Saint-Cyprien", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.86924000", + "longitude": "1.04156000" + }, + { + "id": "45898", + "name": "Saint-Denis-d’Oléron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.03496000", + "longitude": "-1.37867000" + }, + { + "id": "45897", + "name": "Saint-Denis-de-Pile", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.00000000", + "longitude": "-0.20000000" + }, + { + "id": "45923", + "name": "Saint-Estèphe", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.26252000", + "longitude": "-0.77237000" + }, + { + "id": "45953", + "name": "Saint-Gelais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.38234000", + "longitude": "-0.39084000" + }, + { + "id": "45954", + "name": "Saint-Gence", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92198000", + "longitude": "1.13726000" + }, + { + "id": "45961", + "name": "Saint-Genis-de-Saintonge", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.48107000", + "longitude": "-0.56848000" + }, + { + "id": "45974", + "name": "Saint-Georges-de-Didonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60342000", + "longitude": "-1.00487000" + }, + { + "id": "45981", + "name": "Saint-Georges-des-Coteaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76667000", + "longitude": "-0.71667000" + }, + { + "id": "45984", + "name": "Saint-Georges-du-Bois", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.14074000", + "longitude": "-0.73393000" + }, + { + "id": "45986", + "name": "Saint-Georges-lès-Baillargeaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67017000", + "longitude": "0.40209000" + }, + { + "id": "45992", + "name": "Saint-Geours-de-Maremne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68936000", + "longitude": "-1.22937000" + }, + { + "id": "46002", + "name": "Saint-Germain-de-Lusignan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.45011000", + "longitude": "-0.46147000" + }, + { + "id": "46003", + "name": "Saint-Germain-de-Marencennes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07733000", + "longitude": "-0.79133000" + }, + { + "id": "46012", + "name": "Saint-Germain-du-Puch", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85000000", + "longitude": "-0.31667000" + }, + { + "id": "46017", + "name": "Saint-Germain-les-Belles", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61356000", + "longitude": "1.49490000" + }, + { + "id": "46024", + "name": "Saint-Gervais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01583000", + "longitude": "-0.45238000" + }, + { + "id": "46030", + "name": "Saint-Gervais-les-Trois-Clochers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.90067000", + "longitude": "0.40766000" + }, + { + "id": "46051", + "name": "Saint-Hilaire", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.53333000", + "longitude": "0.71667000" + }, + { + "id": "46060", + "name": "Saint-Hilaire-de-Villefranche", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85091000", + "longitude": "-0.52993000" + }, + { + "id": "46065", + "name": "Saint-Hilaire-la-Palud", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26676000", + "longitude": "-0.71380000" + }, + { + "id": "46070", + "name": "Saint-Hippolyte", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.91884000", + "longitude": "-0.89183000" + }, + { + "id": "46113", + "name": "Saint-Jean-d’Illac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.80869000", + "longitude": "-0.78565000" + }, + { + "id": "46092", + "name": "Saint-Jean-de-Liversay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26894000", + "longitude": "-0.87385000" + }, + { + "id": "46094", + "name": "Saint-Jean-de-Luz", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38871000", + "longitude": "-1.66267000" + }, + { + "id": "46100", + "name": "Saint-Jean-de-Sauves", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84130000", + "longitude": "0.09272000" + }, + { + "id": "46103", + "name": "Saint-Jean-de-Thouars", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96486000", + "longitude": "-0.21114000" + }, + { + "id": "46086", + "name": "Saint-Jean-Pied-de-Port", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.16363000", + "longitude": "-1.23738000" + }, + { + "id": "46133", + "name": "Saint-Jouvent", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.95680000", + "longitude": "1.20500000" + }, + { + "id": "46143", + "name": "Saint-Julien-en-Born", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06311000", + "longitude": "-1.22445000" + }, + { + "id": "46149", + "name": "Saint-Junien", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88867000", + "longitude": "0.90143000" + }, + { + "id": "46164", + "name": "Saint-Just-le-Martel", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.86351000", + "longitude": "1.38829000" + }, + { + "id": "46155", + "name": "Saint-Just-Luzac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.80000000", + "longitude": "-1.03333000" + }, + { + "id": "46179", + "name": "Saint-Laurent-de-la-Prée", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.98259000", + "longitude": "-1.03625000" + }, + { + "id": "46188", + "name": "Saint-Laurent-sur-Gorre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77052000", + "longitude": "0.95859000" + }, + { + "id": "46210", + "name": "Saint-Léger-de-Montbrun", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "47.00000000", + "longitude": "-0.13333000" + }, + { + "id": "46220", + "name": "Saint-Léon-sur-l’Isle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11491000", + "longitude": "0.50444000" + }, + { + "id": "46224", + "name": "Saint-Léonard-de-Noblat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.83566000", + "longitude": "1.49174000" + }, + { + "id": "46195", + "name": "Saint-Loubès", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91536000", + "longitude": "-0.42703000" + }, + { + "id": "46198", + "name": "Saint-Louis-de-Montferrand", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95000000", + "longitude": "-0.53543000" + }, + { + "id": "46226", + "name": "Saint-Macaire", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.56527000", + "longitude": "-0.22431000" + }, + { + "id": "46228", + "name": "Saint-Maixant", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.57868000", + "longitude": "-0.25920000" + }, + { + "id": "46253", + "name": "Saint-Mariens", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.11631000", + "longitude": "-0.40084000" + }, + { + "id": "46272", + "name": "Saint-Martin-de-Hinx", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.58238000", + "longitude": "-1.26809000" + }, + { + "id": "46277", + "name": "Saint-Martin-de-Ré", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20311000", + "longitude": "-1.36726000" + }, + { + "id": "46278", + "name": "Saint-Martin-de-Seignanx", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.54283000", + "longitude": "-1.38946000" + }, + { + "id": "46262", + "name": "Saint-Martin-Lacaussade", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14631000", + "longitude": "-0.64310000" + }, + { + "id": "46305", + "name": "Saint-Mathieu", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.70674000", + "longitude": "0.75908000" + }, + { + "id": "46317", + "name": "Saint-Maurice-la-Clouère", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.37804000", + "longitude": "0.41253000" + }, + { + "id": "46318", + "name": "Saint-Maurice-la-Souterraine", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.21388000", + "longitude": "1.43130000" + }, + { + "id": "46326", + "name": "Saint-Maxire", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.39911000", + "longitude": "-0.47988000" + }, + { + "id": "46349", + "name": "Saint-Médard-d’Eyrans", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.71667000", + "longitude": "-0.51667000" + }, + { + "id": "46347", + "name": "Saint-Médard-de-Guizières", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01667000", + "longitude": "-0.05000000" + }, + { + "id": "46348", + "name": "Saint-Médard-de-Mussidan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.03333000", + "longitude": "0.35000000" + }, + { + "id": "46350", + "name": "Saint-Médard-en-Jalles", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.89692000", + "longitude": "-0.72136000" + }, + { + "id": "46355", + "name": "Saint-Même-les-Carrières", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65000000", + "longitude": "-0.15000000" + }, + { + "id": "46332", + "name": "Saint-Mexant", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.28514000", + "longitude": "1.65799000" + }, + { + "id": "46333", + "name": "Saint-Michel", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65000000", + "longitude": "0.10000000" + }, + { + "id": "46346", + "name": "Saint-Morillon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.65060000", + "longitude": "-0.50322000" + }, + { + "id": "46389", + "name": "Saint-Palais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32867000", + "longitude": "-1.03333000" + }, + { + "id": "46390", + "name": "Saint-Palais-sur-Mer", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64255000", + "longitude": "-1.08810000" + }, + { + "id": "46391", + "name": "Saint-Pantaléon-de-Larche", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14122000", + "longitude": "1.44652000" + }, + { + "id": "46392", + "name": "Saint-Pardoux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.57155000", + "longitude": "-0.30542000" + }, + { + "id": "46393", + "name": "Saint-Pardoux-Isaac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.61190000", + "longitude": "0.37345000" + }, + { + "id": "46394", + "name": "Saint-Pardoux-la-Rivière", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.49388000", + "longitude": "0.74651000" + }, + { + "id": "46403", + "name": "Saint-Paul", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75114000", + "longitude": "1.43238000" + }, + { + "id": "46416", + "name": "Saint-Paul-lès-Dax", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72715000", + "longitude": "-1.05162000" + }, + { + "id": "46481", + "name": "Saint-Pée-sur-Nivelle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35564000", + "longitude": "-1.55013000" + }, + { + "id": "46421", + "name": "Saint-Perdon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86560000", + "longitude": "-0.59069000" + }, + { + "id": "46444", + "name": "Saint-Pierre-d’Aurillac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.57168000", + "longitude": "-0.18922000" + }, + { + "id": "46445", + "name": "Saint-Pierre-d’Oléron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94430000", + "longitude": "-1.30630000" + }, + { + "id": "46438", + "name": "Saint-Pierre-des-Échaubrognes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98988000", + "longitude": "-0.74441000" + }, + { + "id": "46440", + "name": "Saint-Pierre-du-Mont", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88453000", + "longitude": "-0.52185000" + }, + { + "id": "46459", + "name": "Saint-Porchaire", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.82075000", + "longitude": "-0.78235000" + }, + { + "id": "46467", + "name": "Saint-Priest-sous-Aixe", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.81667000", + "longitude": "1.10000000" + }, + { + "id": "46465", + "name": "Saint-Priest-Taurion", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88686000", + "longitude": "1.40016000" + }, + { + "id": "46469", + "name": "Saint-Privat", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13831000", + "longitude": "2.09902000" + }, + { + "id": "46473", + "name": "Saint-Projet-Saint-Constant", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.72802000", + "longitude": "0.33851000" + }, + { + "id": "46487", + "name": "Saint-Quentin-de-Baron", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.81802000", + "longitude": "-0.28636000" + }, + { + "id": "46498", + "name": "Saint-Rogatien", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15000000", + "longitude": "-1.06963000" + }, + { + "id": "46499", + "name": "Saint-Romain-de-Benet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.69150000", + "longitude": "-0.84765000" + }, + { + "id": "46519", + "name": "Saint-Saturnin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66667000", + "longitude": "0.05000000" + }, + { + "id": "46526", + "name": "Saint-Sauvant", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.35965000", + "longitude": "0.05634000" + }, + { + "id": "46532", + "name": "Saint-Sauveur", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20272000", + "longitude": "-0.83433000" + }, + { + "id": "46536", + "name": "Saint-Sauveur-d’Aunis", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.21716000", + "longitude": "-0.88580000" + }, + { + "id": "46541", + "name": "Saint-Savin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.15000000", + "longitude": "-0.45000000" + }, + { + "id": "46542", + "name": "Saint-Savinien", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87711000", + "longitude": "-0.67919000" + }, + { + "id": "46545", + "name": "Saint-Selve", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.67095000", + "longitude": "-0.47887000" + }, + { + "id": "46550", + "name": "Saint-Seurin-sur-l’Isle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01667000", + "longitude": "0.00000000" + }, + { + "id": "46551", + "name": "Saint-Sever", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75727000", + "longitude": "-0.57357000" + }, + { + "id": "46560", + "name": "Saint-Sulpice-de-Cognac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75978000", + "longitude": "-0.38093000" + }, + { + "id": "46561", + "name": "Saint-Sulpice-de-Faleyrens", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.86667000", + "longitude": "-0.18333000" + }, + { + "id": "46563", + "name": "Saint-Sulpice-de-Royan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67035000", + "longitude": "-1.01252000" + }, + { + "id": "46564", + "name": "Saint-Sulpice-et-Cameyrac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91131000", + "longitude": "-0.39048000" + }, + { + "id": "46567", + "name": "Saint-Sulpice-le-Guérétois", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20097000", + "longitude": "1.82826000" + }, + { + "id": "46568", + "name": "Saint-Sulpice-les-Feuilles", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.31868000", + "longitude": "1.36792000" + }, + { + "id": "46573", + "name": "Saint-Sylvestre-sur-Lot", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.39667000", + "longitude": "0.80441000" + }, + { + "id": "46574", + "name": "Saint-Symphorien", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.26442000", + "longitude": "-0.49220000" + }, + { + "id": "46587", + "name": "Saint-Trojan-les-Bains", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.84134000", + "longitude": "-1.20728000" + }, + { + "id": "46602", + "name": "Saint-Varent", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88934000", + "longitude": "-0.23210000" + }, + { + "id": "46603", + "name": "Saint-Vaury", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20417000", + "longitude": "1.75654000" + }, + { + "id": "46605", + "name": "Saint-Viance", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.21760000", + "longitude": "1.45263000" + }, + { + "id": "46611", + "name": "Saint-Victurnien", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.87855000", + "longitude": "1.01376000" + }, + { + "id": "46614", + "name": "Saint-Vincent-de-Paul", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74431000", + "longitude": "-1.00662000" + }, + { + "id": "46615", + "name": "Saint-Vincent-de-Tyrosse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66031000", + "longitude": "-1.30799000" + }, + { + "id": "46620", + "name": "Saint-Vite", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.47133000", + "longitude": "0.93876000" + }, + { + "id": "46621", + "name": "Saint-Vivien-de-Médoc", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.42695000", + "longitude": "-1.03377000" + }, + { + "id": "46627", + "name": "Saint-Xandre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.20444000", + "longitude": "-1.10267000" + }, + { + "id": "46630", + "name": "Saint-Yrieix-la-Perche", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.51604000", + "longitude": "1.20569000" + }, + { + "id": "46631", + "name": "Saint-Yrieix-sur-Charente", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.68333000", + "longitude": "0.11667000" + }, + { + "id": "46633", + "name": "Saint-Yzan-de-Soudiac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.14118000", + "longitude": "-0.41078000" + }, + { + "id": "46666", + "name": "Sainte-Bazeille", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.53073000", + "longitude": "0.09740000" + }, + { + "id": "46670", + "name": "Sainte-Colombe-en-Bruilhois", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.17822000", + "longitude": "0.51572000" + }, + { + "id": "46676", + "name": "Sainte-Eulalie", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.90667000", + "longitude": "-0.47417000" + }, + { + "id": "46687", + "name": "Sainte-Féréole", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.22932000", + "longitude": "1.58248000" + }, + { + "id": "46678", + "name": "Sainte-Feyre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13900000", + "longitude": "1.91517000" + }, + { + "id": "46681", + "name": "Sainte-Fortunade", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.20691000", + "longitude": "1.77117000" + }, + { + "id": "46684", + "name": "Sainte-Foy-la-Grande", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83333000", + "longitude": "0.21667000" + }, + { + "id": "46697", + "name": "Sainte-Hélène", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96667000", + "longitude": "-0.88333000" + }, + { + "id": "46701", + "name": "Sainte-Livrade-sur-Lot", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.39929000", + "longitude": "0.59120000" + }, + { + "id": "46712", + "name": "Sainte-Marie-de-Gosse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55000000", + "longitude": "-0.23333000" + }, + { + "id": "46713", + "name": "Sainte-Marie-de-Ré", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15237000", + "longitude": "-1.31281000" + }, + { + "id": "46723", + "name": "Sainte-Radegonde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98333000", + "longitude": "-0.25000000" + }, + { + "id": "46728", + "name": "Sainte-Soulle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.18847000", + "longitude": "-1.01607000" + }, + { + "id": "46731", + "name": "Sainte-Terre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83333000", + "longitude": "-0.11667000" + }, + { + "id": "46733", + "name": "Sainte-Verge", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "47.00818000", + "longitude": "-0.21033000" + }, + { + "id": "46734", + "name": "Saintes", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.74544000", + "longitude": "-0.63450000" + }, + { + "id": "46738", + "name": "Saivres", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43262000", + "longitude": "-0.23677000" + }, + { + "id": "46748", + "name": "Salies-de-Béarn", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47422000", + "longitude": "-0.92448000" + }, + { + "id": "46750", + "name": "Salignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.01607000", + "longitude": "-0.37964000" + }, + { + "id": "46751", + "name": "Salignac-Eyvigues", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.97464000", + "longitude": "1.32428000" + }, + { + "id": "46759", + "name": "Sallebœuf", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.83333000", + "longitude": "-0.40000000" + }, + { + "id": "46761", + "name": "Salles", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55000000", + "longitude": "-0.86073000" + }, + { + "id": "46764", + "name": "Salles-sur-Mer", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10543000", + "longitude": "-1.05741000" + }, + { + "id": "46770", + "name": "Samadet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63761000", + "longitude": "-0.48785000" + }, + { + "id": "46788", + "name": "Sanguinet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.48320000", + "longitude": "-1.07457000" + }, + { + "id": "46802", + "name": "Sarbazan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.02029000", + "longitude": "-0.31294000" + }, + { + "id": "46804", + "name": "Sare", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31260000", + "longitude": "-1.58012000" + }, + { + "id": "46808", + "name": "Sarlat-la-Canéda", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.88902000", + "longitude": "1.21656000" + }, + { + "id": "46832", + "name": "Saubion", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67140000", + "longitude": "-1.34821000" + }, + { + "id": "46833", + "name": "Saubrigues", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60989000", + "longitude": "-1.31381000" + }, + { + "id": "46834", + "name": "Saucats", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.65405000", + "longitude": "-0.59643000" + }, + { + "id": "46835", + "name": "Saugnac-et-Cambran", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67098000", + "longitude": "-0.99495000" + }, + { + "id": "46837", + "name": "Saujon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.67309000", + "longitude": "-0.92620000" + }, + { + "id": "46840", + "name": "Saulgé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.37758000", + "longitude": "0.87577000" + }, + { + "id": "46858", + "name": "Sauvagnon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40000000", + "longitude": "-0.38333000" + }, + { + "id": "46862", + "name": "Sauveterre-de-Béarn", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40000000", + "longitude": "-0.93333000" + }, + { + "id": "46863", + "name": "Sauveterre-de-Guyenne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.69300000", + "longitude": "-0.08549000" + }, + { + "id": "46865", + "name": "Sauviat-sur-Vige", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.90720000", + "longitude": "1.60827000" + }, + { + "id": "46869", + "name": "Sauzé-Vaussais", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.13369000", + "longitude": "0.10673000" + }, + { + "id": "46884", + "name": "Savigné", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.15950000", + "longitude": "0.31937000" + }, + { + "id": "46877", + "name": "Savigny-Lévescault", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53502000", + "longitude": "0.47719000" + }, + { + "id": "47131", + "name": "Sèvres-Anxaumont", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.57036000", + "longitude": "0.46603000" + }, + { + "id": "47141", + "name": "Séreilhac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76843000", + "longitude": "1.08052000" + }, + { + "id": "46907", + "name": "Scorbé-Clairvaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81061000", + "longitude": "0.41369000" + }, + { + "id": "46912", + "name": "Secondigny", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.61024000", + "longitude": "-0.41679000" + }, + { + "id": "46914", + "name": "Segonzac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61667000", + "longitude": "-0.21667000" + }, + { + "id": "46919", + "name": "Seignosse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68774000", + "longitude": "-1.37000000" + }, + { + "id": "46922", + "name": "Seilhac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.36709000", + "longitude": "1.71350000" + }, + { + "id": "46939", + "name": "Semussac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.60000000", + "longitude": "-0.91667000" + }, + { + "id": "46967", + "name": "Serres-Castet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38333000", + "longitude": "-0.35000000" + }, + { + "id": "47006", + "name": "Sireuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.61667000", + "longitude": "0.01667000" + }, + { + "id": "47013", + "name": "Smarves", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.51078000", + "longitude": "0.34980000" + }, + { + "id": "47028", + "name": "Solignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.75528000", + "longitude": "1.27563000" + }, + { + "id": "47042", + "name": "Soorts-Hossegor", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66490000", + "longitude": "-1.39717000" + }, + { + "id": "47045", + "name": "Sorges", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.30563000", + "longitude": "0.87328000" + }, + { + "id": "47056", + "name": "Soubise", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.92395000", + "longitude": "-1.00938000" + }, + { + "id": "47068", + "name": "Soulac-sur-Mer", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.51068000", + "longitude": "-1.12524000" + }, + { + "id": "47078", + "name": "Soumoulou", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26667000", + "longitude": "-0.18333000" + }, + { + "id": "47080", + "name": "Souprosse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78869000", + "longitude": "-0.71035000" + }, + { + "id": "47081", + "name": "Souraïde", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34154000", + "longitude": "-1.47559000" + }, + { + "id": "47086", + "name": "Sourzac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04978000", + "longitude": "0.39598000" + }, + { + "id": "47087", + "name": "Soussans", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.05619000", + "longitude": "-0.69916000" + }, + { + "id": "47088", + "name": "Soustons", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75328000", + "longitude": "-1.32780000" + }, + { + "id": "47090", + "name": "Soyaux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.65000000", + "longitude": "0.20000000" + }, + { + "id": "47121", + "name": "Surgères", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.10820000", + "longitude": "-0.75148000" + }, + { + "id": "47152", + "name": "Tabanac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.72059000", + "longitude": "-0.40513000" + }, + { + "id": "47162", + "name": "Talence", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.80477000", + "longitude": "-0.59543000" + }, + { + "id": "47173", + "name": "Taponnat-Fleurignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.77868000", + "longitude": "0.40932000" + }, + { + "id": "47179", + "name": "Targon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.73495000", + "longitude": "-0.26351000" + }, + { + "id": "47181", + "name": "Tarnos", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.54170000", + "longitude": "-1.46281000" + }, + { + "id": "47182", + "name": "Tartas", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83248000", + "longitude": "-0.80895000" + }, + { + "id": "47188", + "name": "Tauriac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.04915000", + "longitude": "-0.50048000" + }, + { + "id": "47206", + "name": "Tercé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.51667000", + "longitude": "0.56386000" + }, + { + "id": "47205", + "name": "Tercis-les-Bains", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67048000", + "longitude": "-1.10738000" + }, + { + "id": "47209", + "name": "Terrasson-Lavilledieu", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13011000", + "longitude": "1.30136000" + }, + { + "id": "47216", + "name": "Thairé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.07341000", + "longitude": "-1.00230000" + }, + { + "id": "47268", + "name": "Thénac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66705000", + "longitude": "-0.65345000" + }, + { + "id": "47269", + "name": "Thénezay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71879000", + "longitude": "-0.02883000" + }, + { + "id": "47223", + "name": "Thenon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.13897000", + "longitude": "1.07211000" + }, + { + "id": "47241", + "name": "Thiviers", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.41542000", + "longitude": "0.91963000" + }, + { + "id": "47251", + "name": "Thorigné", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.29149000", + "longitude": "-0.25122000" + }, + { + "id": "47254", + "name": "Thouars", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97602000", + "longitude": "-0.21507000" + }, + { + "id": "47264", + "name": "Thuré", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83221000", + "longitude": "0.45797000" + }, + { + "id": "47291", + "name": "Tocane-Saint-Apre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25404000", + "longitude": "0.49682000" + }, + { + "id": "47294", + "name": "Tonnay-Boutonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.96815000", + "longitude": "-0.70847000" + }, + { + "id": "47295", + "name": "Tonnay-Charente", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.94900000", + "longitude": "-0.89350000" + }, + { + "id": "47296", + "name": "Tonneins", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.39206000", + "longitude": "0.31241000" + }, + { + "id": "47305", + "name": "Tosse", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68916000", + "longitude": "-1.33262000" + }, + { + "id": "47311", + "name": "Toulenne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55665000", + "longitude": "-0.26328000" + }, + { + "id": "47344", + "name": "Touvre", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.66667000", + "longitude": "0.25000000" + }, + { + "id": "47397", + "name": "Trélissac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.19766000", + "longitude": "0.78615000" + }, + { + "id": "47354", + "name": "Treignac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.53696000", + "longitude": "1.79520000" + }, + { + "id": "47364", + "name": "Tresses", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.84781000", + "longitude": "-0.46296000" + }, + { + "id": "47377", + "name": "Trizay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.88276000", + "longitude": "-0.89697000" + }, + { + "id": "47413", + "name": "Tulle", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.26582000", + "longitude": "1.77233000" + }, + { + "id": "47430", + "name": "Urcuit", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48594000", + "longitude": "-1.33668000" + }, + { + "id": "47433", + "name": "Urrugne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36361000", + "longitude": "-1.69921000" + }, + { + "id": "47434", + "name": "Urt", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49009000", + "longitude": "-1.29744000" + }, + { + "id": "47438", + "name": "Ussac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.19389000", + "longitude": "1.51337000" + }, + { + "id": "47439", + "name": "Ussel", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.54804000", + "longitude": "2.30917000" + }, + { + "id": "47440", + "name": "Usson-du-Poitou", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.27782000", + "longitude": "0.52816000" + }, + { + "id": "47442", + "name": "Ustaritz", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39650000", + "longitude": "-1.45603000" + }, + { + "id": "47445", + "name": "Uzein", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40000000", + "longitude": "-0.43333000" + }, + { + "id": "47447", + "name": "Uzerche", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.42462000", + "longitude": "1.56341000" + }, + { + "id": "47517", + "name": "Varetz", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.19392000", + "longitude": "1.45063000" + }, + { + "id": "47522", + "name": "Vars", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.76256000", + "longitude": "0.12478000" + }, + { + "id": "47524", + "name": "Vasles", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.57618000", + "longitude": "-0.02638000" + }, + { + "id": "47547", + "name": "Vaux-sur-Mer", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64606000", + "longitude": "-1.05841000" + }, + { + "id": "47551", + "name": "Vayres", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.90000000", + "longitude": "-0.31667000" + }, + { + "id": "47923", + "name": "Vélines", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85000000", + "longitude": "0.11667000" + }, + { + "id": "47929", + "name": "Vérines", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.19372000", + "longitude": "-0.96683000" + }, + { + "id": "47934", + "name": "Vœuil-et-Giget", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.58333000", + "longitude": "0.15000000" + }, + { + "id": "47568", + "name": "Vendays-Montalivet", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.35492000", + "longitude": "-1.06088000" + }, + { + "id": "47571", + "name": "Vendeuvre-du-Poitou", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73579000", + "longitude": "0.30996000" + }, + { + "id": "47600", + "name": "Vergt", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.02695000", + "longitude": "0.71820000" + }, + { + "id": "47615", + "name": "Verneuil-sur-Vienne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.85524000", + "longitude": "1.10133000" + }, + { + "id": "47640", + "name": "Vertheuil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.25000000", + "longitude": "-0.83333000" + }, + { + "id": "47653", + "name": "Veyrac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.89521000", + "longitude": "1.10500000" + }, + { + "id": "47659", + "name": "Vianne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.19658000", + "longitude": "0.32104000" + }, + { + "id": "47672", + "name": "Vicq-sur-Breuilh", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.64661000", + "longitude": "1.38179000" + }, + { + "id": "47679", + "name": "Vielle-Saint-Girons", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95000000", + "longitude": "-1.30000000" + }, + { + "id": "47681", + "name": "Viennay", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.68711000", + "longitude": "-0.24641000" + }, + { + "id": "47683", + "name": "Vienne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53528000", + "longitude": "0.45201000" + }, + { + "id": "47688", + "name": "Vieux-Boucau-les-Bains", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78947000", + "longitude": "-1.39957000" + }, + { + "id": "47693", + "name": "Vigeois", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.37934000", + "longitude": "1.51731000" + }, + { + "id": "47733", + "name": "Villefagnan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.01140000", + "longitude": "0.07936000" + }, + { + "id": "47742", + "name": "Villefranque", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43631000", + "longitude": "-1.45324000" + }, + { + "id": "47744", + "name": "Villegouge", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.96667000", + "longitude": "-0.30000000" + }, + { + "id": "47758", + "name": "Villenave-d’Ornon", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.77327000", + "longitude": "-0.54420000" + }, + { + "id": "47768", + "name": "Villeneuve-de-Marsan", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88906000", + "longitude": "-0.30926000" + }, + { + "id": "47784", + "name": "Villeneuve-sur-Lot", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.40854000", + "longitude": "0.70415000" + }, + { + "id": "47813", + "name": "Villeréal", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.63631000", + "longitude": "0.74326000" + }, + { + "id": "47828", + "name": "Villiers-en-Plaine", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.40895000", + "longitude": "-0.53756000" + }, + { + "id": "47856", + "name": "Virazeil", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.50705000", + "longitude": "0.22177000" + }, + { + "id": "47886", + "name": "Vivonne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.42953000", + "longitude": "0.26443000" + }, + { + "id": "47906", + "name": "Vouillé", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64011000", + "longitude": "0.16778000" + }, + { + "id": "47910", + "name": "Vouneuil-sous-Biard", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.57387000", + "longitude": "0.26988000" + }, + { + "id": "47911", + "name": "Vouneuil-sur-Vienne", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71793000", + "longitude": "0.53936000" + }, + { + "id": "47914", + "name": "Voutezac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "45.29214000", + "longitude": "1.43721000" + }, + { + "id": "48001", + "name": "Ychoux", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.32869000", + "longitude": "-0.95179000" + }, + { + "id": "48007", + "name": "Ygos-Saint-Saturnin", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "43.97651000", + "longitude": "-0.73780000" + }, + { + "id": "48015", + "name": "Yves", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "46.01922000", + "longitude": "-1.04833000" + }, + { + "id": "48018", + "name": "Yvrac", + "state_id": 4795, + "state_code": "NAQ", + "country_id": 75, + "country_code": "FR", + "latitude": "44.87786000", + "longitude": "-0.45870000" + }, + { + "id": "39236", + "name": "Abeilhan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44925000", + "longitude": "3.29529000" + }, + { + "id": "39257", + "name": "Agde", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31083000", + "longitude": "3.47583000" + }, + { + "id": "39274", + "name": "Aiguefonde", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49394000", + "longitude": "2.31686000" + }, + { + "id": "39276", + "name": "Aigues-Mortes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56683000", + "longitude": "4.19068000" + }, + { + "id": "39277", + "name": "Aigues-Vives", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73790000", + "longitude": "4.18066000" + }, + { + "id": "39284", + "name": "Aimargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68448000", + "longitude": "4.20999000" + }, + { + "id": "39341", + "name": "Alès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.12489000", + "longitude": "4.08082000" + }, + { + "id": "39342", + "name": "Alénya", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.63875000", + "longitude": "2.98148000" + }, + { + "id": "39305", + "name": "Albi", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.92980000", + "longitude": "2.14800000" + }, + { + "id": "39306", + "name": "Albias", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.09049000", + "longitude": "1.44821000" + }, + { + "id": "39314", + "name": "Alignan-du-Vent", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46945000", + "longitude": "3.34165000" + }, + { + "id": "39340", + "name": "Alzonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25338000", + "longitude": "2.17808000" + }, + { + "id": "39388", + "name": "Andrest", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31998000", + "longitude": "0.06405000" + }, + { + "id": "39392", + "name": "Anduze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05409000", + "longitude": "3.98545000" + }, + { + "id": "39410", + "name": "Aniane", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68448000", + "longitude": "3.58747000" + }, + { + "id": "39447", + "name": "Aramon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89174000", + "longitude": "4.68096000" + }, + { + "id": "39476", + "name": "Argelès-Gazost", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.00258000", + "longitude": "-0.09855000" + }, + { + "id": "39474", + "name": "Argelers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.54714000", + "longitude": "3.02253000" + }, + { + "id": "39475", + "name": "Argeliers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31217000", + "longitude": "2.91046000" + }, + { + "id": "39488", + "name": "Arles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.45654000", + "longitude": "2.63457000" + }, + { + "id": "39495", + "name": "Armissan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18778000", + "longitude": "3.09660000" + }, + { + "id": "39526", + "name": "Arthès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95745000", + "longitude": "2.21130000" + }, + { + "id": "39535", + "name": "Arzens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19838000", + "longitude": "2.20954000" + }, + { + "id": "39548", + "name": "Aspet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.01457000", + "longitude": "0.80294000" + }, + { + "id": "39549", + "name": "Aspiran", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56586000", + "longitude": "3.45031000" + }, + { + "id": "39551", + "name": "Assas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70278000", + "longitude": "3.90000000" + }, + { + "id": "39567", + "name": "Aubais", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75402000", + "longitude": "4.14567000" + }, + { + "id": "39577", + "name": "Aubiet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64631000", + "longitude": "0.78441000" + }, + { + "id": "39584", + "name": "Aubin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.52809000", + "longitude": "2.24439000" + }, + { + "id": "39586", + "name": "Aubord", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75827000", + "longitude": "4.31105000" + }, + { + "id": "39591", + "name": "Aucamville", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67020000", + "longitude": "1.42808000" + }, + { + "id": "39592", + "name": "Auch", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64540000", + "longitude": "0.58793000" + }, + { + "id": "39617", + "name": "Aumont-Aubrac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.72205000", + "longitude": "3.28466000" + }, + { + "id": "39625", + "name": "Aureilhan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24337000", + "longitude": "0.09581000" + }, + { + "id": "39627", + "name": "Auriac-sur-Vendinelle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52416000", + "longitude": "1.82640000" + }, + { + "id": "39629", + "name": "Aurignac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21695000", + "longitude": "0.88176000" + }, + { + "id": "39632", + "name": "Aussillon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50293000", + "longitude": "2.36791000" + }, + { + "id": "39633", + "name": "Aussonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68162000", + "longitude": "1.31886000" + }, + { + "id": "39634", + "name": "Auterive", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35103000", + "longitude": "1.47797000" + }, + { + "id": "39643", + "name": "Auvillar", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06863000", + "longitude": "0.90192000" + }, + { + "id": "39652", + "name": "Auzeville-Tolosane", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52777000", + "longitude": "1.48240000" + }, + { + "id": "39653", + "name": "Auzielle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.54165000", + "longitude": "1.56574000" + }, + { + "id": "39681", + "name": "Avèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.97116000", + "longitude": "3.60097000" + }, + { + "id": "39670", + "name": "Avignonet-Lauragais", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36667000", + "longitude": "1.80000000" + }, + { + "id": "39682", + "name": "Ax-les-Thermes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.71968000", + "longitude": "1.83845000" + }, + { + "id": "39688", + "name": "Ayguesvives", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43636000", + "longitude": "1.59505000" + }, + { + "id": "39696", + "name": "Azille", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27691000", + "longitude": "2.65981000" + }, + { + "id": "39705", + "name": "Bagard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.07126000", + "longitude": "4.05225000" + }, + { + "id": "39706", + "name": "Bages", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.60588000", + "longitude": "2.89350000" + }, + { + "id": "39707", + "name": "Bagnac-sur-Célé", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.66667000", + "longitude": "2.16667000" + }, + { + "id": "39714", + "name": "Bagnères-de-Bigorre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.06416000", + "longitude": "0.14970000" + }, + { + "id": "39715", + "name": "Bagnères-de-Luchon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.79079000", + "longitude": "0.59315000" + }, + { + "id": "39713", + "name": "Bagnols-sur-Cèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.15990000", + "longitude": "4.61776000" + }, + { + "id": "39718", + "name": "Baho", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.70000000", + "longitude": "2.82204000" + }, + { + "id": "39720", + "name": "Baillargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66267000", + "longitude": "4.01681000" + }, + { + "id": "39741", + "name": "Baixas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.74969000", + "longitude": "2.81002000" + }, + { + "id": "39745", + "name": "Balaruc-le-Vieux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46140000", + "longitude": "3.68530000" + }, + { + "id": "39746", + "name": "Balaruc-les-Bains", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44170000", + "longitude": "3.67780000" + }, + { + "id": "39756", + "name": "Balma", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61111000", + "longitude": "1.49944000" + }, + { + "id": "39762", + "name": "Banyuls de la Marenda", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.48375000", + "longitude": "3.12897000" + }, + { + "id": "39763", + "name": "Banyuls-dels-Aspres", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.56567000", + "longitude": "2.86667000" + }, + { + "id": "39768", + "name": "Baraqueville", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.27655000", + "longitude": "2.43184000" + }, + { + "id": "39770", + "name": "Barbazan-Debat", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19580000", + "longitude": "0.12060000" + }, + { + "id": "39778", + "name": "Barcelonne-du-Gers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70360000", + "longitude": "-0.23619000" + }, + { + "id": "39784", + "name": "Barjac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.30743000", + "longitude": "4.35146000" + }, + { + "id": "39797", + "name": "Bassan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41060000", + "longitude": "3.25396000" + }, + { + "id": "39830", + "name": "Bazet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29145000", + "longitude": "0.06728000" + }, + { + "id": "39831", + "name": "Baziège", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45454000", + "longitude": "1.61399000" + }, + { + "id": "40412", + "name": "Bédarieux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61553000", + "longitude": "3.15714000" + }, + { + "id": "40420", + "name": "Bélesta", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.90228000", + "longitude": "1.93325000" + }, + { + "id": "40428", + "name": "Bérat", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37857000", + "longitude": "1.17572000" + }, + { + "id": "40436", + "name": "Béziers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34122000", + "longitude": "3.21402000" + }, + { + "id": "39836", + "name": "Beaucaire", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.80806000", + "longitude": "4.64417000" + }, + { + "id": "39850", + "name": "Beaulieu", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72861000", + "longitude": "4.02194000" + }, + { + "id": "39863", + "name": "Beaumont-de-Lomagne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88285000", + "longitude": "0.98762000" + }, + { + "id": "39871", + "name": "Beaumont-sur-Lèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38095000", + "longitude": "1.35826000" + }, + { + "id": "39878", + "name": "Beaupuy", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64713000", + "longitude": "1.55517000" + }, + { + "id": "39896", + "name": "Beauvoisin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71835000", + "longitude": "4.32339000" + }, + { + "id": "39898", + "name": "Beauzelle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66713000", + "longitude": "1.37518000" + }, + { + "id": "39901", + "name": "Belberaud", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50557000", + "longitude": "1.56725000" + }, + { + "id": "39913", + "name": "Bellegarde", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75329000", + "longitude": "4.51654000" + }, + { + "id": "39933", + "name": "Belmont-sur-Rance", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.81981000", + "longitude": "2.75524000" + }, + { + "id": "39934", + "name": "Belpech", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19957000", + "longitude": "1.75157000" + }, + { + "id": "39956", + "name": "Bernis", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76913000", + "longitude": "4.28713000" + }, + { + "id": "39973", + "name": "Bessan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36196000", + "longitude": "3.42288000" + }, + { + "id": "39982", + "name": "Bessèges", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.29230000", + "longitude": "4.09661000" + }, + { + "id": "39981", + "name": "Bessières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.79861000", + "longitude": "1.60624000" + }, + { + "id": "40003", + "name": "Bezouce", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88229000", + "longitude": "4.49072000" + }, + { + "id": "40007", + "name": "Biars-sur-Cère", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.92629000", + "longitude": "1.85403000" + }, + { + "id": "40037", + "name": "Bizanet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.16419000", + "longitude": "2.87034000" + }, + { + "id": "40039", + "name": "Bize-Minervois", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31656000", + "longitude": "2.87134000" + }, + { + "id": "40044", + "name": "Blagnac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63276000", + "longitude": "1.39399000" + }, + { + "id": "40060", + "name": "Blauzac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96151000", + "longitude": "4.36930000" + }, + { + "id": "40063", + "name": "Blaye-les-Mines", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.03073000", + "longitude": "2.13166000" + }, + { + "id": "40094", + "name": "Boisseron", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75795000", + "longitude": "4.07970000" + }, + { + "id": "40095", + "name": "Boisset-et-Gaujac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.04749000", + "longitude": "4.00861000" + }, + { + "id": "40107", + "name": "Bompas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.73333000", + "longitude": "2.93333000" + }, + { + "id": "40157", + "name": "Bouillargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.79733000", + "longitude": "4.42853000" + }, + { + "id": "40161", + "name": "Boujan-sur-Libron", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36996000", + "longitude": "3.24759000" + }, + { + "id": "40171", + "name": "Bouloc", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78163000", + "longitude": "1.40522000" + }, + { + "id": "40173", + "name": "Boulogne-sur-Gesse", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30000000", + "longitude": "0.65000000" + }, + { + "id": "40222", + "name": "Bout-du-Pont-de-Larn", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49738000", + "longitude": "2.41642000" + }, + { + "id": "40234", + "name": "Bouzigues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44810000", + "longitude": "3.65781000" + }, + { + "id": "40243", + "name": "Bozouls", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.47050000", + "longitude": "2.72432000" + }, + { + "id": "40251", + "name": "Bram", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24376000", + "longitude": "2.11341000" + }, + { + "id": "40256", + "name": "Branoux-les-Taillades", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.21941000", + "longitude": "3.99647000" + }, + { + "id": "40261", + "name": "Brassac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62959000", + "longitude": "2.49763000" + }, + { + "id": "40264", + "name": "Brax", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61793000", + "longitude": "1.23957000" + }, + { + "id": "40275", + "name": "Brens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88725000", + "longitude": "1.90716000" + }, + { + "id": "40277", + "name": "Bressols", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96796000", + "longitude": "1.33839000" + }, + { + "id": "40281", + "name": "Bretenoux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.91468000", + "longitude": "1.84007000" + }, + { + "id": "40302", + "name": "Briatexte", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75237000", + "longitude": "1.90879000" + }, + { + "id": "40342", + "name": "Bruguières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72720000", + "longitude": "1.40762000" + }, + { + "id": "40388", + "name": "Burlats", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63633000", + "longitude": "2.31879000" + }, + { + "id": "40408", + "name": "Buzet-sur-Tarn", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77977000", + "longitude": "1.63301000" + }, + { + "id": "40444", + "name": "Cabestany", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.68132000", + "longitude": "2.94122000" + }, + { + "id": "40447", + "name": "Cabrières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.90389000", + "longitude": "4.47094000" + }, + { + "id": "40450", + "name": "Cadalen", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.84933000", + "longitude": "1.98089000" + }, + { + "id": "40458", + "name": "Cagnac-les-Mines", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.98445000", + "longitude": "2.14227000" + }, + { + "id": "40463", + "name": "Cahors", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.44910000", + "longitude": "1.43663000" + }, + { + "id": "40464", + "name": "Cahuzac-sur-Vère", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.98268000", + "longitude": "1.91052000" + }, + { + "id": "40467", + "name": "Caissargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.79509000", + "longitude": "4.37955000" + }, + { + "id": "40468", + "name": "Cajarc", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.48546000", + "longitude": "1.84261000" + }, + { + "id": "40474", + "name": "Calmont", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28718000", + "longitude": "1.63031000" + }, + { + "id": "40480", + "name": "Calvisson", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78696000", + "longitude": "4.19626000" + }, + { + "id": "40483", + "name": "Camarès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82208000", + "longitude": "2.88005000" + }, + { + "id": "40497", + "name": "Campan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.01587000", + "longitude": "0.17846000" + }, + { + "id": "40502", + "name": "Campsas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89591000", + "longitude": "1.32677000" + }, + { + "id": "40506", + "name": "Candillargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62052000", + "longitude": "4.06924000" + }, + { + "id": "40509", + "name": "Canet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.22744000", + "longitude": "2.84800000" + }, + { + "id": "40510", + "name": "Canet-en-Roussillon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.70000000", + "longitude": "3.01667000" + }, + { + "id": "40514", + "name": "Canohès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.65461000", + "longitude": "2.83633000" + }, + { + "id": "40526", + "name": "Capdenac-Gare", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.57567000", + "longitude": "2.08079000" + }, + { + "id": "40527", + "name": "Capendu", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18596000", + "longitude": "2.55677000" + }, + { + "id": "40528", + "name": "Capestang", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32791000", + "longitude": "3.04447000" + }, + { + "id": "40533", + "name": "Capvern", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10357000", + "longitude": "0.31604000" + }, + { + "id": "40534", + "name": "Caraman", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53271000", + "longitude": "1.76002000" + }, + { + "id": "40537", + "name": "Carbonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29857000", + "longitude": "1.22520000" + }, + { + "id": "40539", + "name": "Carcassonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21351000", + "longitude": "2.35162000" + }, + { + "id": "40549", + "name": "Carmaux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05099000", + "longitude": "2.15795000" + }, + { + "id": "40568", + "name": "Cassagnes-Bégonhès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.16893000", + "longitude": "2.53084000" + }, + { + "id": "40575", + "name": "Castanet-Tolosan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.51591000", + "longitude": "1.49864000" + }, + { + "id": "40577", + "name": "Castelginest", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69382000", + "longitude": "1.43440000" + }, + { + "id": "40580", + "name": "Castelmaurou", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67778000", + "longitude": "1.53222000" + }, + { + "id": "40583", + "name": "Castelnau-d'Estrétefonds", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78367000", + "longitude": "1.35904000" + }, + { + "id": "40584", + "name": "Castelnau-de-Guers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43398000", + "longitude": "3.43708000" + }, + { + "id": "40585", + "name": "Castelnau-de-Lévis", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93975000", + "longitude": "2.08491000" + }, + { + "id": "40587", + "name": "Castelnau-le-Lez", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63333000", + "longitude": "3.90000000" + }, + { + "id": "40582", + "name": "Castelnau-Montratier", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.26667000", + "longitude": "1.36667000" + }, + { + "id": "40588", + "name": "Castelnaudary", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31829000", + "longitude": "1.95449000" + }, + { + "id": "40589", + "name": "Castelsarrasin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.04022000", + "longitude": "1.10702000" + }, + { + "id": "40592", + "name": "Castillon-du-Gard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96457000", + "longitude": "4.55337000" + }, + { + "id": "40595", + "name": "Castres", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60589000", + "longitude": "2.23992000" + }, + { + "id": "40597", + "name": "Castries", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67972000", + "longitude": "3.98222000" + }, + { + "id": "40610", + "name": "Caunes-Minervois", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32555000", + "longitude": "2.52541000" + }, + { + "id": "40612", + "name": "Caussade", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.16080000", + "longitude": "1.53913000" + }, + { + "id": "40613", + "name": "Cauterets", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.88333000", + "longitude": "-0.11667000" + }, + { + "id": "40616", + "name": "Caux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50621000", + "longitude": "3.36709000" + }, + { + "id": "40620", + "name": "Caveirac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82437000", + "longitude": "4.26664000" + }, + { + "id": "40623", + "name": "Caylus", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.23607000", + "longitude": "1.77168000" + }, + { + "id": "40624", + "name": "Cazaubon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93431000", + "longitude": "-0.06814000" + }, + { + "id": "40628", + "name": "Cazères", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20710000", + "longitude": "1.08633000" + }, + { + "id": "40625", + "name": "Cazes-Mondenard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.22689000", + "longitude": "1.20299000" + }, + { + "id": "40626", + "name": "Cazilhac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18205000", + "longitude": "2.36085000" + }, + { + "id": "40627", + "name": "Cazouls-lès-Béziers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39218000", + "longitude": "3.10100000" + }, + { + "id": "41393", + "name": "Cépet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74885000", + "longitude": "1.43168000" + }, + { + "id": "40637", + "name": "Cendras", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.15000000", + "longitude": "4.06667000" + }, + { + "id": "40645", + "name": "Ceret", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.48533000", + "longitude": "2.74804000" + }, + { + "id": "40654", + "name": "Cers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32352000", + "longitude": "3.30450000" + }, + { + "id": "40656", + "name": "Cervera de la Marenda", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.44094000", + "longitude": "3.16518000" + }, + { + "id": "40658", + "name": "Cessenon-sur-Orb", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45011000", + "longitude": "3.05154000" + }, + { + "id": "40684", + "name": "Chalabre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.98248000", + "longitude": "2.00538000" + }, + { + "id": "40755", + "name": "Chanac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.46614000", + "longitude": "3.34327000" + }, + { + "id": "40913", + "name": "Chirac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.52289000", + "longitude": "3.26652000" + }, + { + "id": "41023", + "name": "Cintegabelle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31316000", + "longitude": "1.53333000" + }, + { + "id": "41034", + "name": "Claira", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.76036000", + "longitude": "2.95572000" + }, + { + "id": "41041", + "name": "Clapiers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65833000", + "longitude": "3.88917000" + }, + { + "id": "41042", + "name": "Clarensac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82536000", + "longitude": "4.22047000" + }, + { + "id": "41043", + "name": "Claret", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86244000", + "longitude": "3.90522000" + }, + { + "id": "41078", + "name": "Codognan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73033000", + "longitude": "4.22120000" + }, + { + "id": "41091", + "name": "Collioure", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.52462000", + "longitude": "3.08235000" + }, + { + "id": "41105", + "name": "Colombiès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.34414000", + "longitude": "2.33772000" + }, + { + "id": "41103", + "name": "Colombiers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31424000", + "longitude": "3.13947000" + }, + { + "id": "41106", + "name": "Colomiers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61058000", + "longitude": "1.33467000" + }, + { + "id": "41108", + "name": "Combaillaux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67191000", + "longitude": "3.76767000" + }, + { + "id": "41126", + "name": "Comps", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.85304000", + "longitude": "4.60567000" + }, + { + "id": "41133", + "name": "Condom", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95816000", + "longitude": "0.37199000" + }, + { + "id": "41147", + "name": "Congénies", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76667000", + "longitude": "4.16667000" + }, + { + "id": "41150", + "name": "Connaux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08919000", + "longitude": "4.59387000" + }, + { + "id": "41153", + "name": "Conques-sur-Orbiel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26667000", + "longitude": "2.41667000" + }, + { + "id": "41161", + "name": "Corbarieu", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.94415000", + "longitude": "1.36881000" + }, + { + "id": "41174", + "name": "Cordes-sur-Ciel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06667000", + "longitude": "1.95000000" + }, + { + "id": "41187", + "name": "Cornebarrieu", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64895000", + "longitude": "1.32407000" + }, + { + "id": "41188", + "name": "Corneilhan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39957000", + "longitude": "3.19147000" + }, + { + "id": "41189", + "name": "Corneilla-del-Vercol", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.62390000", + "longitude": "2.95216000" + }, + { + "id": "41190", + "name": "Corneilla-la-Rivière", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.69675000", + "longitude": "2.72962000" + }, + { + "id": "41224", + "name": "Coufouleux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.81713000", + "longitude": "1.73078000" + }, + { + "id": "41227", + "name": "Couiza", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.94198000", + "longitude": "2.25453000" + }, + { + "id": "41256", + "name": "Cournonsec", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.54944000", + "longitude": "3.70556000" + }, + { + "id": "41257", + "name": "Cournonterral", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55889000", + "longitude": "3.72000000" + }, + { + "id": "41265", + "name": "Coursan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23370000", + "longitude": "3.05712000" + }, + { + "id": "41296", + "name": "Cransac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.52411000", + "longitude": "2.28370000" + }, + { + "id": "41303", + "name": "Creissan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37524000", + "longitude": "3.01196000" + }, + { + "id": "41304", + "name": "Creissels", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08588000", + "longitude": "3.06071000" + }, + { + "id": "41364", + "name": "Cugnaux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53635000", + "longitude": "1.34428000" + }, + { + "id": "41373", + "name": "Cunac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93010000", + "longitude": "2.21878000" + }, + { + "id": "41386", + "name": "Cuxac-Cabardès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37087000", + "longitude": "2.28369000" + }, + { + "id": "41441", + "name": "Daux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69506000", + "longitude": "1.26892000" + }, + { + "id": "41612", + "name": "Département de l'Ariège", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.00000000", + "longitude": "1.50000000" + }, + { + "id": "41614", + "name": "Département de l'Aude", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08333000", + "longitude": "2.50000000" + }, + { + "id": "41615", + "name": "Département de l'Aveyron", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.25000000", + "longitude": "2.50000000" + }, + { + "id": "41618", + "name": "Département de l'Hérault", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66667000", + "longitude": "3.50000000" + }, + { + "id": "41631", + "name": "Département de la Lozère", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.50000000", + "longitude": "3.50000000" + }, + { + "id": "41637", + "name": "Département des Hautes-Pyrénées", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.03686000", + "longitude": "0.18632000" + }, + { + "id": "41639", + "name": "Département des Pyrénées-Orientales", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.60075000", + "longitude": "2.58889000" + }, + { + "id": "41645", + "name": "Département du Tarn-et-Garonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.00000000", + "longitude": "1.16667000" + }, + { + "id": "41445", + "name": "Decazeville", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.56045000", + "longitude": "2.25091000" + }, + { + "id": "41556", + "name": "Dourgne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48381000", + "longitude": "2.13989000" + }, + { + "id": "41583", + "name": "Drémil-Lafage", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59624000", + "longitude": "1.60117000" + }, + { + "id": "41578", + "name": "Druelle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.36006000", + "longitude": "2.50505000" + }, + { + "id": "41652", + "name": "Eaunes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42079000", + "longitude": "1.35397000" + }, + { + "id": "41653", + "name": "Eauze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86055000", + "longitude": "0.10199000" + }, + { + "id": "48031", + "name": "el Voló", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.52424000", + "longitude": "2.83336000" + }, + { + "id": "41664", + "name": "Elne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.60031000", + "longitude": "2.97146000" + }, + { + "id": "48032", + "name": "els Banys d'Arles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.47289000", + "longitude": "2.66916000" + }, + { + "id": "41681", + "name": "Entraygues-sur-Truyère", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.64606000", + "longitude": "2.56745000" + }, + { + "id": "41705", + "name": "Escalquens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.51744000", + "longitude": "1.55893000" + }, + { + "id": "41716", + "name": "Espalion", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.52237000", + "longitude": "2.76265000" + }, + { + "id": "41719", + "name": "Espéraza", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.93225000", + "longitude": "2.22006000" + }, + { + "id": "41729", + "name": "Estagel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.77314000", + "longitude": "2.69665000" + }, + { + "id": "41761", + "name": "Fabrègues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55057000", + "longitude": "3.77637000" + }, + { + "id": "41760", + "name": "Fabrezan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.13581000", + "longitude": "2.69814000" + }, + { + "id": "41799", + "name": "Fenouillet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68041000", + "longitude": "1.39200000" + }, + { + "id": "41803", + "name": "Ferrals-les-Corbières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.15000000", + "longitude": "2.73333000" + }, + { + "id": "41819", + "name": "Figeac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.60880000", + "longitude": "2.03187000" + }, + { + "id": "41822", + "name": "Finhan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91335000", + "longitude": "1.22120000" + }, + { + "id": "41823", + "name": "Firmi", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.54106000", + "longitude": "2.30764000" + }, + { + "id": "41832", + "name": "Flavin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.28890000", + "longitude": "2.60513000" + }, + { + "id": "41839", + "name": "Fleurance", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.84824000", + "longitude": "0.66302000" + }, + { + "id": "41845", + "name": "Fleury", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23095000", + "longitude": "3.13745000" + }, + { + "id": "41860", + "name": "Florac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.32632000", + "longitude": "3.59301000" + }, + { + "id": "41862", + "name": "Florensac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38301000", + "longitude": "3.46638000" + }, + { + "id": "41863", + "name": "Flourens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59273000", + "longitude": "1.56259000" + }, + { + "id": "41867", + "name": "Foix", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.96046000", + "longitude": "1.60787000" + }, + { + "id": "41872", + "name": "Fonbeauzard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67830000", + "longitude": "1.43440000" + }, + { + "id": "41874", + "name": "Fonsorbes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53524000", + "longitude": "1.22937000" + }, + { + "id": "41875", + "name": "Font-Romeu-Odeillo-Via", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.50552000", + "longitude": "2.04011000" + }, + { + "id": "41904", + "name": "Fontenilles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55286000", + "longitude": "1.19096000" + }, + { + "id": "41937", + "name": "Fourques", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69450000", + "longitude": "4.60932000" + }, + { + "id": "41984", + "name": "Fréjairolles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88094000", + "longitude": "2.23151000" + }, + { + "id": "41975", + "name": "Frontignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44848000", + "longitude": "3.75400000" + }, + { + "id": "41976", + "name": "Fronton", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83931000", + "longitude": "1.38931000" + }, + { + "id": "41981", + "name": "Frouzins", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.51482000", + "longitude": "1.32523000" + }, + { + "id": "42011", + "name": "Gagnac-sur-Garonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69990000", + "longitude": "1.37535000" + }, + { + "id": "42013", + "name": "Gaillac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.90160000", + "longitude": "1.89686000" + }, + { + "id": "42014", + "name": "Gaillac-Toulza", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25536000", + "longitude": "1.47141000" + }, + { + "id": "42022", + "name": "Gallargues-le-Montueux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71667000", + "longitude": "4.16667000" + }, + { + "id": "42029", + "name": "Ganges", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93380000", + "longitude": "3.70784000" + }, + { + "id": "42036", + "name": "Gard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.01790000", + "longitude": "4.28751000" + }, + { + "id": "42039", + "name": "Gardouch", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39096000", + "longitude": "1.68313000" + }, + { + "id": "42044", + "name": "Garidech", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71076000", + "longitude": "1.56036000" + }, + { + "id": "42047", + "name": "Garons", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76861000", + "longitude": "4.42753000" + }, + { + "id": "42298", + "name": "Générac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72830000", + "longitude": "4.35000000" + }, + { + "id": "42073", + "name": "Gerde", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.05567000", + "longitude": "0.16688000" + }, + { + "id": "42075", + "name": "Gers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71731000", + "longitude": "0.45422000" + }, + { + "id": "42090", + "name": "Gigean", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50028000", + "longitude": "3.71167000" + }, + { + "id": "42091", + "name": "Gignac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65200000", + "longitude": "3.55090000" + }, + { + "id": "42097", + "name": "Gimont", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62627000", + "longitude": "0.87655000" + }, + { + "id": "42099", + "name": "Ginestas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26645000", + "longitude": "2.87038000" + }, + { + "id": "42104", + "name": "Giroussens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76199000", + "longitude": "1.77608000" + }, + { + "id": "42128", + "name": "Gondrin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88466000", + "longitude": "0.23737000" + }, + { + "id": "42144", + "name": "Goudargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.21376000", + "longitude": "4.46652000" + }, + { + "id": "42149", + "name": "Gourdan-Polignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.07092000", + "longitude": "0.57482000" + }, + { + "id": "42150", + "name": "Gourdon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.73742000", + "longitude": "1.38297000" + }, + { + "id": "42163", + "name": "Grabels", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64797000", + "longitude": "3.79865000" + }, + { + "id": "42165", + "name": "Gragnague", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68091000", + "longitude": "1.58461000" + }, + { + "id": "42168", + "name": "Gramat", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.78075000", + "longitude": "1.71957000" + }, + { + "id": "42187", + "name": "Gratentour", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72360000", + "longitude": "1.43234000" + }, + { + "id": "42188", + "name": "Graulhet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76688000", + "longitude": "1.98938000" + }, + { + "id": "42195", + "name": "Grenade", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76667000", + "longitude": "1.28333000" + }, + { + "id": "42215", + "name": "Grisolles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82920000", + "longitude": "1.29673000" + }, + { + "id": "42230", + "name": "Gruissan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10759000", + "longitude": "3.08651000" + }, + { + "id": "42341", + "name": "Haute-Garonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38724000", + "longitude": "1.22191000" + }, + { + "id": "42464", + "name": "Hérépian", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59300000", + "longitude": "3.11595000" + }, + { + "id": "42420", + "name": "Horgues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18865000", + "longitude": "0.08733000" + }, + { + "id": "42469", + "name": "Ibos", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23333000", + "longitude": "0.00000000" + }, + { + "id": "42479", + "name": "Ille-sur-Têt", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.67069000", + "longitude": "2.62162000" + }, + { + "id": "42523", + "name": "Jacou", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66139000", + "longitude": "3.91222000" + }, + { + "id": "42548", + "name": "Jegun", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76667000", + "longitude": "0.46667000" + }, + { + "id": "42560", + "name": "Jonquières-Saint-Vincent", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82809000", + "longitude": "4.56327000" + }, + { + "id": "42586", + "name": "Juillan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19937000", + "longitude": "0.02570000" + }, + { + "id": "42598", + "name": "Juvignac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61389000", + "longitude": "3.81056000" + }, + { + "id": "42627", + "name": "L'Union", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66042000", + "longitude": "1.48264000" + }, + { + "id": "42634", + "name": "La Barthe-de-Neste", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08123000", + "longitude": "0.38438000" + }, + { + "id": "42664", + "name": "La Calmette", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.92283000", + "longitude": "4.26617000" + }, + { + "id": "42665", + "name": "La Canourgue", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.43133000", + "longitude": "3.21584000" + }, + { + "id": "42669", + "name": "La Cavalerie", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.00961000", + "longitude": "3.15840000" + }, + { + "id": "42753", + "name": "La Fouillade", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.23072000", + "longitude": "2.03989000" + }, + { + "id": "42772", + "name": "La Grande-Motte", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56667000", + "longitude": "4.08333000" + }, + { + "id": "48033", + "name": "la Guingueta d'Ix", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.43416000", + "longitude": "1.94391000" + }, + { + "id": "42794", + "name": "La Loubière", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.37143000", + "longitude": "2.66825000" + }, + { + "id": "42827", + "name": "La Palme", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.97518000", + "longitude": "2.99243000" + }, + { + "id": "48034", + "name": "la Roca d'Albera", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.52130000", + "longitude": "2.93374000" + }, + { + "id": "42871", + "name": "La Salvetat-Peyralès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.21940000", + "longitude": "2.20297000" + }, + { + "id": "42872", + "name": "La Salvetat-Saint-Gilles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.57622000", + "longitude": "1.27192000" + }, + { + "id": "42873", + "name": "La Salvetat-sur-Agout", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60000000", + "longitude": "2.71667000" + }, + { + "id": "42891", + "name": "La Tour-du-Crieu", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10471000", + "longitude": "1.65275000" + }, + { + "id": "42894", + "name": "La Tour-sur-Orb", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65186000", + "longitude": "3.15071000" + }, + { + "id": "42922", + "name": "Labarthe-Rivière", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08100000", + "longitude": "0.67134000" + }, + { + "id": "42923", + "name": "Labarthe-sur-Lèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45206000", + "longitude": "1.39968000" + }, + { + "id": "42924", + "name": "Labastide-Beauvoir", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48148000", + "longitude": "1.66543000" + }, + { + "id": "42925", + "name": "Labastide-Rouairoux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47566000", + "longitude": "2.63929000" + }, + { + "id": "42926", + "name": "Labastide-Saint-Georges", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69962000", + "longitude": "1.84585000" + }, + { + "id": "42927", + "name": "Labastide-Saint-Pierre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91769000", + "longitude": "1.36628000" + }, + { + "id": "42928", + "name": "Labastide-Saint-Sernin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73743000", + "longitude": "1.46985000" + }, + { + "id": "42929", + "name": "Labastidette", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45952000", + "longitude": "1.24525000" + }, + { + "id": "42939", + "name": "Labège", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53039000", + "longitude": "1.53596000" + }, + { + "id": "42937", + "name": "Labruguière", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53858000", + "longitude": "2.26392000" + }, + { + "id": "42942", + "name": "Lacapelle-Marival", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.72773000", + "longitude": "1.92465000" + }, + { + "id": "42943", + "name": "Lacasse", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39873000", + "longitude": "1.26951000" + }, + { + "id": "42944", + "name": "Lacaune", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70660000", + "longitude": "2.69293000" + }, + { + "id": "42947", + "name": "Lacroix-Falgarde", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49968000", + "longitude": "1.40985000" + }, + { + "id": "42949", + "name": "Lacrouzette", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66030000", + "longitude": "2.34838000" + }, + { + "id": "42953", + "name": "Lafrançaise", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.12791000", + "longitude": "1.24141000" + }, + { + "id": "42954", + "name": "Lagardelle-sur-Lèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41143000", + "longitude": "1.38920000" + }, + { + "id": "42955", + "name": "Lagarrigue", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.57765000", + "longitude": "2.27784000" + }, + { + "id": "42963", + "name": "Lagrave", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89734000", + "longitude": "1.99268000" + }, + { + "id": "42965", + "name": "Laguiole", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.68465000", + "longitude": "2.84666000" + }, + { + "id": "42971", + "name": "Laissac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.38085000", + "longitude": "2.82154000" + }, + { + "id": "42973", + "name": "Lalbenque", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.33929000", + "longitude": "1.54501000" + }, + { + "id": "42977", + "name": "Laloubère", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20430000", + "longitude": "0.07296000" + }, + { + "id": "42978", + "name": "Lamagistère", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.12488000", + "longitude": "0.82486000" + }, + { + "id": "42979", + "name": "Lamalou-les-Bains", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59786000", + "longitude": "3.08052000" + }, + { + "id": "43023", + "name": "Langlade", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.80284000", + "longitude": "4.25232000" + }, + { + "id": "43025", + "name": "Langogne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.72726000", + "longitude": "3.85539000" + }, + { + "id": "43035", + "name": "Lannemezan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.12517000", + "longitude": "0.38401000" + }, + { + "id": "43046", + "name": "Lansargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65157000", + "longitude": "4.07495000" + }, + { + "id": "43047", + "name": "Lanta", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56667000", + "longitude": "1.66667000" + }, + { + "id": "43060", + "name": "Lapeyrouse-Fossat", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69973000", + "longitude": "1.51049000" + }, + { + "id": "43075", + "name": "Laroque", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.92320000", + "longitude": "3.72397000" + }, + { + "id": "43077", + "name": "Laroque-d’Olmes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.96785000", + "longitude": "1.86677000" + }, + { + "id": "43084", + "name": "Lasalle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.04530000", + "longitude": "3.85477000" + }, + { + "id": "43091", + "name": "Latour-Bas-Elne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.60646000", + "longitude": "3.00201000" + }, + { + "id": "43093", + "name": "Lattes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56752000", + "longitude": "3.90460000" + }, + { + "id": "43094", + "name": "Laudun-l'Ardoise", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.10000000", + "longitude": "4.66667000" + }, + { + "id": "43095", + "name": "Launac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74357000", + "longitude": "1.18172000" + }, + { + "id": "43096", + "name": "Launaguet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67818000", + "longitude": "1.45603000" + }, + { + "id": "43097", + "name": "Laure-Minervois", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27106000", + "longitude": "2.52031000" + }, + { + "id": "43098", + "name": "Laurens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52238000", + "longitude": "3.19714000" + }, + { + "id": "43104", + "name": "Lautrec", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70591000", + "longitude": "2.13925000" + }, + { + "id": "43106", + "name": "Lauzerte", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.25535000", + "longitude": "1.13817000" + }, + { + "id": "43108", + "name": "Laval-Pradel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.20665000", + "longitude": "4.06591000" + }, + { + "id": "43109", + "name": "Lavalette", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18428000", + "longitude": "2.26825000" + }, + { + "id": "43113", + "name": "Lavaur", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69847000", + "longitude": "1.81858000" + }, + { + "id": "43120", + "name": "Lavérune", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.58639000", + "longitude": "3.80611000" + }, + { + "id": "43114", + "name": "Lavelanet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.93127000", + "longitude": "1.84656000" + }, + { + "id": "43116", + "name": "Lavernose-Lacasse", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39700000", + "longitude": "1.26205000" + }, + { + "id": "43118", + "name": "Lavit", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95674000", + "longitude": "0.92010000" + }, + { + "id": "43683", + "name": "Lédenon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91349000", + "longitude": "4.51444000" + }, + { + "id": "43684", + "name": "Lédignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.98690000", + "longitude": "4.10644000" + }, + { + "id": "43685", + "name": "Léguevin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60028000", + "longitude": "1.23236000" + }, + { + "id": "43693", + "name": "Lévignac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66667000", + "longitude": "1.20000000" + }, + { + "id": "43695", + "name": "Lézan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.01667000", + "longitude": "4.05000000" + }, + { + "id": "43697", + "name": "Lézat-sur-Lèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27734000", + "longitude": "1.34686000" + }, + { + "id": "43698", + "name": "Lézignan-Corbières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19765000", + "longitude": "2.76142000" + }, + { + "id": "43699", + "name": "Lézignan-la-Cèbe", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49368000", + "longitude": "3.43708000" + }, + { + "id": "43706", + "name": "L’Isle-en-Dodon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38428000", + "longitude": "0.83513000" + }, + { + "id": "43704", + "name": "L’Isle-Jourdain", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61218000", + "longitude": "1.08219000" + }, + { + "id": "43126", + "name": "Le Barcarès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.78773000", + "longitude": "3.03656000" + }, + { + "id": "43142", + "name": "Le Bousquet-d’Orb", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69242000", + "longitude": "3.16746000" + }, + { + "id": "43151", + "name": "Le Cailar", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67923000", + "longitude": "4.23576000" + }, + { + "id": "43156", + "name": "Le Cap d'Agde", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27796000", + "longitude": "3.51357000" + }, + { + "id": "43178", + "name": "Le Crès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64807000", + "longitude": "3.93976000" + }, + { + "id": "43185", + "name": "Le Fauga", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39619000", + "longitude": "1.29571000" + }, + { + "id": "43190", + "name": "Le Fousseret", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28205000", + "longitude": "1.06624000" + }, + { + "id": "43193", + "name": "Le Garric", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.00932000", + "longitude": "2.16431000" + }, + { + "id": "43200", + "name": "Le Grau-du-Roi", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53881000", + "longitude": "4.13559000" + }, + { + "id": "43206", + "name": "Le Houga", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77464000", + "longitude": "-0.17833000" + }, + { + "id": "43219", + "name": "Le Malzieu-Ville", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85699000", + "longitude": "3.33302000" + }, + { + "id": "43236", + "name": "Le Monastère", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.34165000", + "longitude": "2.57956000" + }, + { + "id": "43279", + "name": "Le Pouget", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59195000", + "longitude": "3.52423000" + }, + { + "id": "43280", + "name": "Le Poujol-sur-Orb", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.57919000", + "longitude": "3.06156000" + }, + { + "id": "43300", + "name": "Le Sequestre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91076000", + "longitude": "2.11804000" + }, + { + "id": "43301", + "name": "Le Soler", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.68101000", + "longitude": "2.79335000" + }, + { + "id": "43334", + "name": "Le Vigan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.74075000", + "longitude": "1.43963000" + }, + { + "id": "43339", + "name": "Lectoure", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93464000", + "longitude": "0.62107000" + }, + { + "id": "43363", + "name": "Les Angles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95806000", + "longitude": "4.76342000" + }, + { + "id": "43403", + "name": "Les Mages", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.22862000", + "longitude": "4.16946000" + }, + { + "id": "43407", + "name": "Les Matelles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72905000", + "longitude": "3.81360000" + }, + { + "id": "43428", + "name": "Les Salles-du-Gardon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.20790000", + "longitude": "4.03689000" + }, + { + "id": "43439", + "name": "Lespignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27366000", + "longitude": "3.17224000" + }, + { + "id": "43440", + "name": "Lespinasse", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71206000", + "longitude": "1.38462000" + }, + { + "id": "43445", + "name": "Leucate", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.91056000", + "longitude": "3.02944000" + }, + { + "id": "43456", + "name": "Leyme", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.78622000", + "longitude": "1.89897000" + }, + { + "id": "43462", + "name": "Lherm", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43127000", + "longitude": "1.22239000" + }, + { + "id": "43470", + "name": "Lieuran-lès-Béziers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41860000", + "longitude": "3.23719000" + }, + { + "id": "43475", + "name": "Lignan-sur-Orb", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38462000", + "longitude": "3.16891000" + }, + { + "id": "43496", + "name": "Limoux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.05487000", + "longitude": "2.22173000" + }, + { + "id": "43509", + "name": "Lisle-sur-Tarn", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.85249000", + "longitude": "1.81099000" + }, + { + "id": "43518", + "name": "Livinhac-le-Haut", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.59212000", + "longitude": "2.23117000" + }, + { + "id": "43526", + "name": "Llupia", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.62074000", + "longitude": "2.76924000" + }, + { + "id": "43537", + "name": "Lodève", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73166000", + "longitude": "3.31941000" + }, + { + "id": "43547", + "name": "Lombez", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47501000", + "longitude": "0.91119000" + }, + { + "id": "43552", + "name": "Longages", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35398000", + "longitude": "1.23905000" + }, + { + "id": "43597", + "name": "Lot", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.62703000", + "longitude": "1.63461000" + }, + { + "id": "43605", + "name": "Loupian", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44886000", + "longitude": "3.61381000" + }, + { + "id": "43608", + "name": "Lourdes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10000000", + "longitude": "-0.05000000" + }, + { + "id": "43629", + "name": "Luc-la-Primaube", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.31439000", + "longitude": "2.53552000" + }, + { + "id": "43652", + "name": "Lunel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67778000", + "longitude": "4.13611000" + }, + { + "id": "43653", + "name": "Lunel-Viel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67890000", + "longitude": "4.09250000" + }, + { + "id": "43670", + "name": "Luz-Saint-Sauveur", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.87191000", + "longitude": "-0.00323000" + }, + { + "id": "43672", + "name": "Luzech", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.47818000", + "longitude": "1.28704000" + }, + { + "id": "43717", + "name": "Magalas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47095000", + "longitude": "3.22338000" + }, + { + "id": "43776", + "name": "Manduel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.81855000", + "longitude": "4.47247000" + }, + { + "id": "43792", + "name": "Maraussan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36895000", + "longitude": "3.15643000" + }, + { + "id": "43801", + "name": "Marciac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52321000", + "longitude": "0.16091000" + }, + { + "id": "43804", + "name": "Marcillac-Vallon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.47464000", + "longitude": "2.46454000" + }, + { + "id": "43814", + "name": "Marcorignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.22634000", + "longitude": "2.92281000" + }, + { + "id": "43837", + "name": "Marguerittes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.85960000", + "longitude": "4.44517000" + }, + { + "id": "43871", + "name": "Marquefave", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31766000", + "longitude": "1.24661000" + }, + { + "id": "43882", + "name": "Marseillan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35618000", + "longitude": "3.52795000" + }, + { + "id": "43906", + "name": "Marsillargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66424000", + "longitude": "4.17448000" + }, + { + "id": "43908", + "name": "Marssac-sur-Tarn", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91768000", + "longitude": "2.02921000" + }, + { + "id": "43909", + "name": "Martel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.93667000", + "longitude": "1.60851000" + }, + { + "id": "43921", + "name": "Martres-Tolosane", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19929000", + "longitude": "1.01056000" + }, + { + "id": "43922", + "name": "Marvejols", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55378000", + "longitude": "3.29137000" + }, + { + "id": "43932", + "name": "Masseube", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42984000", + "longitude": "0.57810000" + }, + { + "id": "43946", + "name": "Maubourguet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46824000", + "longitude": "0.03578000" + }, + { + "id": "43947", + "name": "Mauguio", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61810000", + "longitude": "4.00739000" + }, + { + "id": "43953", + "name": "Maureilhan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35000000", + "longitude": "3.11667000" + }, + { + "id": "43954", + "name": "Maureillas-las-Illas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.49014000", + "longitude": "2.80752000" + }, + { + "id": "43962", + "name": "Mauvezin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73048000", + "longitude": "0.87810000" + }, + { + "id": "43971", + "name": "Mazamet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49001000", + "longitude": "2.37304000" + }, + { + "id": "43978", + "name": "Mazères", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25055000", + "longitude": "1.67728000" + }, + { + "id": "44453", + "name": "Mèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42504000", + "longitude": "3.60590000" + }, + { + "id": "43999", + "name": "Mende", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.51849000", + "longitude": "3.50372000" + }, + { + "id": "44013", + "name": "Mercus-Garrabet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.87790000", + "longitude": "1.62900000" + }, + { + "id": "44024", + "name": "Merville", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72354000", + "longitude": "1.29656000" + }, + { + "id": "44058", + "name": "Meynes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.87974000", + "longitude": "4.55958000" + }, + { + "id": "44061", + "name": "Meyrueis", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.17737000", + "longitude": "3.43083000" + }, + { + "id": "44108", + "name": "Miélan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43054000", + "longitude": "0.30794000" + }, + { + "id": "44071", + "name": "Milhaud", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78977000", + "longitude": "4.31035000" + }, + { + "id": "44073", + "name": "Millas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.69203000", + "longitude": "2.69508000" + }, + { + "id": "44074", + "name": "Millau", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.09774000", + "longitude": "3.07777000" + }, + { + "id": "44090", + "name": "Mirande", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.51481000", + "longitude": "0.40410000" + }, + { + "id": "44091", + "name": "Mirandol-Bourgnounac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.14273000", + "longitude": "2.16857000" + }, + { + "id": "44096", + "name": "Miremont", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36995000", + "longitude": "1.41724000" + }, + { + "id": "44098", + "name": "Mirepoix", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08773000", + "longitude": "1.87350000" + }, + { + "id": "44099", + "name": "Mireval", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50860000", + "longitude": "3.80170000" + }, + { + "id": "44118", + "name": "Moissac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.10236000", + "longitude": "1.09450000" + }, + { + "id": "44123", + "name": "Molières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.19305000", + "longitude": "1.36318000" + }, + { + "id": "44124", + "name": "Molières-sur-Cèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.25989000", + "longitude": "4.15836000" + }, + { + "id": "44131", + "name": "Monclar-de-Quercy", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96554000", + "longitude": "1.58587000" + }, + { + "id": "44137", + "name": "Mondonville", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67296000", + "longitude": "1.28592000" + }, + { + "id": "44141", + "name": "Monestiés", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06667000", + "longitude": "2.10000000" + }, + { + "id": "44147", + "name": "Mons", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61240000", + "longitude": "1.57207000" + }, + { + "id": "44164", + "name": "Montady", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33590000", + "longitude": "3.12780000" + }, + { + "id": "44165", + "name": "Montagnac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48087000", + "longitude": "3.48312000" + }, + { + "id": "44170", + "name": "Montaigu-de-Quercy", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.33964000", + "longitude": "1.01690000" + }, + { + "id": "44172", + "name": "Montaigut-sur-Save", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68947000", + "longitude": "1.23133000" + }, + { + "id": "44176", + "name": "Montans", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86700000", + "longitude": "1.88568000" + }, + { + "id": "44178", + "name": "Montaren-et-Saint-Médiers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.02869000", + "longitude": "4.38030000" + }, + { + "id": "44180", + "name": "Montarnaud", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64743000", + "longitude": "3.69690000" + }, + { + "id": "44181", + "name": "Montastruc-la-Conseillère", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71982000", + "longitude": "1.59019000" + }, + { + "id": "44183", + "name": "Montauban", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.01819000", + "longitude": "1.36432000" + }, + { + "id": "44191", + "name": "Montbazens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.47807000", + "longitude": "2.22980000" + }, + { + "id": "44192", + "name": "Montbazin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.51667000", + "longitude": "3.69667000" + }, + { + "id": "44194", + "name": "Montberon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71586000", + "longitude": "1.47968000" + }, + { + "id": "44196", + "name": "Montbeton", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.01667000", + "longitude": "1.30000000" + }, + { + "id": "44198", + "name": "Montblanc", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39486000", + "longitude": "3.36752000" + }, + { + "id": "44212", + "name": "Montcuq", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.33838000", + "longitude": "1.20850000" + }, + { + "id": "44216", + "name": "Montech", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95816000", + "longitude": "1.23204000" + }, + { + "id": "44217", + "name": "Monteils", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.16862000", + "longitude": "1.57608000" + }, + { + "id": "44224", + "name": "Montescot", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.60692000", + "longitude": "2.93318000" + }, + { + "id": "44226", + "name": "Montesquieu-Volvestre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20725000", + "longitude": "1.22862000" + }, + { + "id": "44227", + "name": "Montesquiu d'Albera", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.51798000", + "longitude": "2.88243000" + }, + { + "id": "44231", + "name": "Montfaucon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.07245000", + "longitude": "4.75504000" + }, + { + "id": "44239", + "name": "Montferrier-sur-Lez", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66742000", + "longitude": "3.85439000" + }, + { + "id": "44243", + "name": "Montfrin", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.87596000", + "longitude": "4.59959000" + }, + { + "id": "44244", + "name": "Montgaillard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.93333000", + "longitude": "1.63333000" + }, + { + "id": "44247", + "name": "Montgiscard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46072000", + "longitude": "1.56739000" + }, + { + "id": "44267", + "name": "Montjoie-en-Couserans", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.00250000", + "longitude": "1.16000000" + }, + { + "id": "44268", + "name": "Montjoire", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76899000", + "longitude": "1.53362000" + }, + { + "id": "44269", + "name": "Montlaur", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48935000", + "longitude": "1.56807000" + }, + { + "id": "44298", + "name": "Montpellier", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61092000", + "longitude": "3.87723000" + }, + { + "id": "44299", + "name": "Montpeyroux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69590000", + "longitude": "3.50542000" + }, + { + "id": "44300", + "name": "Montpezat-de-Quercy", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.23876000", + "longitude": "1.47682000" + }, + { + "id": "44303", + "name": "Montrabé", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64477000", + "longitude": "1.52384000" + }, + { + "id": "44324", + "name": "Montréal", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19980000", + "longitude": "2.14122000" + }, + { + "id": "44326", + "name": "Montréjeau", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08555000", + "longitude": "0.56470000" + }, + { + "id": "44305", + "name": "Montredon-Labessonnié", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71723000", + "longitude": "2.32454000" + }, + { + "id": "44318", + "name": "Montricoux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.07589000", + "longitude": "1.61946000" + }, + { + "id": "44319", + "name": "Montrodat", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55038000", + "longitude": "3.32929000" + }, + { + "id": "44406", + "name": "Moussac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.98119000", + "longitude": "4.22647000" + }, + { + "id": "44407", + "name": "Moussan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23091000", + "longitude": "2.95000000" + }, + { + "id": "44424", + "name": "Moyrazès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.34204000", + "longitude": "2.43933000" + }, + { + "id": "44429", + "name": "Mudaison", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63333000", + "longitude": "4.03333000" + }, + { + "id": "44440", + "name": "Muret", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46027000", + "longitude": "1.32571000" + }, + { + "id": "44442", + "name": "Murviel-lès-Béziers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43333000", + "longitude": "3.13333000" + }, + { + "id": "44443", + "name": "Murviel-lès-Montpellier", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60528000", + "longitude": "3.73750000" + }, + { + "id": "44444", + "name": "Mus", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73919000", + "longitude": "4.20257000" + }, + { + "id": "44495", + "name": "Nages-et-Solorgues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.79010000", + "longitude": "4.23027000" + }, + { + "id": "44496", + "name": "Nailloux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35718000", + "longitude": "1.62302000" + }, + { + "id": "44514", + "name": "Narbonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18396000", + "longitude": "3.00141000" + }, + { + "id": "44518", + "name": "Naucelle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.19810000", + "longitude": "2.34310000" + }, + { + "id": "44691", + "name": "Nègrepelisse", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.07436000", + "longitude": "1.51978000" + }, + { + "id": "44692", + "name": "Nébian", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60657000", + "longitude": "3.43133000" + }, + { + "id": "44698", + "name": "Névian", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21238000", + "longitude": "2.90286000" + }, + { + "id": "44700", + "name": "Nîmes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83378000", + "longitude": "4.35962000" + }, + { + "id": "44602", + "name": "Nissan-lez-Enserune", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28961000", + "longitude": "3.12705000" + }, + { + "id": "44683", + "name": "Noé", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35814000", + "longitude": "1.27709000" + }, + { + "id": "44609", + "name": "Nogaro", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75856000", + "longitude": "-0.03293000" + }, + { + "id": "44621", + "name": "Nohic", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88970000", + "longitude": "1.43741000" + }, + { + "id": "44715", + "name": "Odos", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19622000", + "longitude": "0.05693000" + }, + { + "id": "44731", + "name": "Olemps", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.34638000", + "longitude": "2.55140000" + }, + { + "id": "44738", + "name": "Olonzac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28294000", + "longitude": "2.73098000" + }, + { + "id": "44741", + "name": "Ondes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78250000", + "longitude": "1.30823000" + }, + { + "id": "44765", + "name": "Orgueil", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.90618000", + "longitude": "1.41071000" + }, + { + "id": "44771", + "name": "Orleix", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27932000", + "longitude": "0.12033000" + }, + { + "id": "44779", + "name": "Ornaisons", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18040000", + "longitude": "2.83689000" + }, + { + "id": "44783", + "name": "Orsan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.13106000", + "longitude": "4.66520000" + }, + { + "id": "44785", + "name": "Ortaffa", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.57977000", + "longitude": "2.92653000" + }, + { + "id": "44792", + "name": "Osséja", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.41383000", + "longitude": "1.98192000" + }, + { + "id": "44790", + "name": "Ossun", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18333000", + "longitude": "-0.03333000" + }, + { + "id": "44809", + "name": "Oursbelille", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28508000", + "longitude": "0.03473000" + }, + { + "id": "44814", + "name": "Ouveillan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28915000", + "longitude": "2.97124000" + }, + { + "id": "44833", + "name": "Palaja", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.17363000", + "longitude": "2.38462000" + }, + { + "id": "44835", + "name": "Palau-del-Vidre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.57162000", + "longitude": "2.96033000" + }, + { + "id": "44836", + "name": "Palavas-les-Flots", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52805000", + "longitude": "3.92705000" + }, + { + "id": "44838", + "name": "Pamiers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.11650000", + "longitude": "1.61079000" + }, + { + "id": "44869", + "name": "Paulhac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75639000", + "longitude": "1.55667000" + }, + { + "id": "44871", + "name": "Paulhan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53944000", + "longitude": "3.45760000" + }, + { + "id": "44873", + "name": "Pavie", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60969000", + "longitude": "0.59143000" + }, + { + "id": "44876", + "name": "Payrin-Augmontel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.54450000", + "longitude": "2.35406000" + }, + { + "id": "45343", + "name": "Péchabou", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50241000", + "longitude": "1.50934000" + }, + { + "id": "45349", + "name": "Pépieux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29735000", + "longitude": "2.67952000" + }, + { + "id": "45360", + "name": "Pérols", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56313000", + "longitude": "3.95203000" + }, + { + "id": "45366", + "name": "Pézenas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45953000", + "longitude": "3.42384000" + }, + { + "id": "45367", + "name": "Pézilla-la-Rivière", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.69536000", + "longitude": "2.77115000" + }, + { + "id": "44879", + "name": "Pechbonnieu", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70242000", + "longitude": "1.46538000" + }, + { + "id": "44892", + "name": "Pennautier", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24513000", + "longitude": "2.31892000" + }, + { + "id": "44899", + "name": "Perpignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.69764000", + "longitude": "2.89541000" + }, + { + "id": "44929", + "name": "Peyrestortes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.75480000", + "longitude": "2.85232000" + }, + { + "id": "44931", + "name": "Peyriac-de-Mer", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08720000", + "longitude": "2.95831000" + }, + { + "id": "44930", + "name": "Peyriac-Minervois", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29068000", + "longitude": "2.56613000" + }, + { + "id": "44936", + "name": "Pezens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25446000", + "longitude": "2.26868000" + }, + { + "id": "44944", + "name": "Pia", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.74490000", + "longitude": "2.91930000" + }, + { + "id": "44945", + "name": "Pibrac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62042000", + "longitude": "1.28540000" + }, + { + "id": "44954", + "name": "Pierrefitte-Nestalas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.96667000", + "longitude": "-0.06667000" + }, + { + "id": "44968", + "name": "Pignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.58365000", + "longitude": "3.75981000" + }, + { + "id": "44970", + "name": "Pinet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40556000", + "longitude": "3.51000000" + }, + { + "id": "44973", + "name": "Pinsaguel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.51040000", + "longitude": "1.38831000" + }, + { + "id": "44993", + "name": "Plaisance", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60436000", + "longitude": "0.04615000" + }, + { + "id": "44994", + "name": "Plaisance-du-Touch", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56566000", + "longitude": "1.29749000" + }, + { + "id": "45143", + "name": "Pollestres", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.64200000", + "longitude": "2.87116000" + }, + { + "id": "45159", + "name": "Pomérols", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39139000", + "longitude": "3.49944000" + }, + { + "id": "45154", + "name": "Pompertuzat", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49277000", + "longitude": "1.51531000" + }, + { + "id": "45157", + "name": "Pompignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.81768000", + "longitude": "1.31209000" + }, + { + "id": "45179", + "name": "Pont-de-Larn", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50412000", + "longitude": "2.40786000" + }, + { + "id": "45182", + "name": "Pont-de-Salars", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.28080000", + "longitude": "2.72783000" + }, + { + "id": "45169", + "name": "Pont-Saint-Esprit", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.25494000", + "longitude": "4.64736000" + }, + { + "id": "45207", + "name": "Ponteilla", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.62594000", + "longitude": "2.81335000" + }, + { + "id": "45236", + "name": "Port-la-Nouvelle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.01991000", + "longitude": "3.04366000" + }, + { + "id": "45239", + "name": "Portel-des-Corbières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.05000000", + "longitude": "2.91667000" + }, + { + "id": "45241", + "name": "Portet-sur-Garonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52333000", + "longitude": "1.40651000" + }, + { + "id": "45244", + "name": "Portiragnes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30460000", + "longitude": "3.33365000" + }, + { + "id": "45246", + "name": "Portvendres", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.51792000", + "longitude": "3.10553000" + }, + { + "id": "45264", + "name": "Poulx", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.90798000", + "longitude": "4.41629000" + }, + { + "id": "45268", + "name": "Poussan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48944000", + "longitude": "3.67083000" + }, + { + "id": "45270", + "name": "Pouzac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08606000", + "longitude": "0.13522000" + }, + { + "id": "45272", + "name": "Prades", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.61715000", + "longitude": "2.42208000" + }, + { + "id": "45273", + "name": "Prades-le-Lez", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69754000", + "longitude": "3.86463000" + }, + { + "id": "45274", + "name": "Pradines", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.48341000", + "longitude": "1.40105000" + }, + { + "id": "45278", + "name": "Prats de Molló", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.40404000", + "longitude": "2.47928000" + }, + { + "id": "45279", + "name": "Prayssac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.50440000", + "longitude": "1.18862000" + }, + { + "id": "45282", + "name": "Preignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71177000", + "longitude": "0.62608000" + }, + { + "id": "45318", + "name": "Puicheric", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.22380000", + "longitude": "2.62455000" + }, + { + "id": "45322", + "name": "Puissalicon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45828000", + "longitude": "3.23690000" + }, + { + "id": "45323", + "name": "Puisserguier", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36767000", + "longitude": "3.04047000" + }, + { + "id": "45324", + "name": "Pujaudran", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.58954000", + "longitude": "1.14977000" + }, + { + "id": "45325", + "name": "Pujaut", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.00404000", + "longitude": "4.77575000" + }, + { + "id": "45336", + "name": "Puy-l’Évêque", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.50483000", + "longitude": "1.14015000" + }, + { + "id": "45337", + "name": "Puygouzon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.90000000", + "longitude": "2.16667000" + }, + { + "id": "45338", + "name": "Puylaurens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.57202000", + "longitude": "2.01227000" + }, + { + "id": "45369", + "name": "Quarante", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34711000", + "longitude": "2.96228000" + }, + { + "id": "45386", + "name": "Quillan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.87579000", + "longitude": "2.18176000" + }, + { + "id": "45402", + "name": "Quissac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91341000", + "longitude": "3.99920000" + }, + { + "id": "45411", + "name": "Rabastens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82512000", + "longitude": "1.72382000" + }, + { + "id": "45412", + "name": "Rabastens-de-Bigorre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38769000", + "longitude": "0.15122000" + }, + { + "id": "45425", + "name": "Ramonville-Saint-Agne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.54618000", + "longitude": "1.47491000" + }, + { + "id": "45683", + "name": "Réalmont", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77754000", + "longitude": "2.18885000" + }, + { + "id": "45684", + "name": "Réalville", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.11452000", + "longitude": "1.47998000" + }, + { + "id": "45695", + "name": "Réquista", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.03325000", + "longitude": "2.53554000" + }, + { + "id": "45442", + "name": "Redessan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83117000", + "longitude": "4.49771000" + }, + { + "id": "45454", + "name": "Remoulins", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93949000", + "longitude": "4.56799000" + }, + { + "id": "45466", + "name": "Restinclières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72252000", + "longitude": "4.03476000" + }, + { + "id": "45475", + "name": "Revel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45812000", + "longitude": "2.00469000" + }, + { + "id": "45480", + "name": "Reynès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.47702000", + "longitude": "2.70680000" + }, + { + "id": "45484", + "name": "Ria-Sirach", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.61667000", + "longitude": "2.40000000" + }, + { + "id": "45489", + "name": "Ribaute-les-Tavernes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.03724000", + "longitude": "4.08046000" + }, + { + "id": "45502", + "name": "Rieumes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41143000", + "longitude": "1.11702000" + }, + { + "id": "45503", + "name": "Rieupeyroux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.30799000", + "longitude": "2.23819000" + }, + { + "id": "45506", + "name": "Rieux-Minervois", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28194000", + "longitude": "2.58687000" + }, + { + "id": "45507", + "name": "Rieux-Volvestre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25000000", + "longitude": "1.20000000" + }, + { + "id": "45510", + "name": "Rignac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.40853000", + "longitude": "2.29001000" + }, + { + "id": "45525", + "name": "Riscle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65633000", + "longitude": "-0.08607000" + }, + { + "id": "45530", + "name": "Rivesaltes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.76945000", + "longitude": "2.87239000" + }, + { + "id": "45545", + "name": "Rochefort-du-Gard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.97652000", + "longitude": "4.69023000" + }, + { + "id": "45554", + "name": "Rodez", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.35258000", + "longitude": "2.57338000" + }, + { + "id": "45555", + "name": "Rodilhan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82725000", + "longitude": "4.43088000" + }, + { + "id": "45591", + "name": "Roquecourbe", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66442000", + "longitude": "2.29264000" + }, + { + "id": "45594", + "name": "Roquemaure", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.04944000", + "longitude": "4.77740000" + }, + { + "id": "45596", + "name": "Roquettes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49733000", + "longitude": "1.36848000" + }, + { + "id": "45620", + "name": "Rouffiac-Tolosan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66576000", + "longitude": "1.52521000" + }, + { + "id": "45630", + "name": "Roujan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50489000", + "longitude": "3.31071000" + }, + { + "id": "45640", + "name": "Rousson", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.19136000", + "longitude": "4.14786000" + }, + { + "id": "46892", + "name": "Saïx", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.58333000", + "longitude": "2.18333000" + }, + { + "id": "45704", + "name": "Sabran", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.15040000", + "longitude": "4.54820000" + }, + { + "id": "45727", + "name": "Saint-Affrique", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95575000", + "longitude": "2.88915000" + }, + { + "id": "45735", + "name": "Saint-Alban", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69270000", + "longitude": "1.41020000" + }, + { + "id": "45738", + "name": "Saint-Alban-sur-Limagnole", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.78100000", + "longitude": "3.38793000" + }, + { + "id": "45739", + "name": "Saint-Alexandre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.22741000", + "longitude": "4.62081000" + }, + { + "id": "45746", + "name": "Saint-Amans-Soult", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47697000", + "longitude": "2.49076000" + }, + { + "id": "45747", + "name": "Saint-Amans-Valtoret", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48071000", + "longitude": "2.49095000" + }, + { + "id": "45751", + "name": "Saint-Ambroix", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.25893000", + "longitude": "4.19833000" + }, + { + "id": "45758", + "name": "Saint-André-de-Sangonis", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64753000", + "longitude": "3.50209000" + }, + { + "id": "45795", + "name": "Saint-Aunès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64083000", + "longitude": "3.96583000" + }, + { + "id": "45807", + "name": "Saint-Bauzille-de-Putois", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89454000", + "longitude": "3.73580000" + }, + { + "id": "45811", + "name": "Saint-Benoît-de-Carmaux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05037000", + "longitude": "2.12911000" + }, + { + "id": "45834", + "name": "Saint-Brès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66742000", + "longitude": "4.03105000" + }, + { + "id": "45892", + "name": "Saint-Céré", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.85726000", + "longitude": "1.89415000" + }, + { + "id": "45848", + "name": "Saint-Chaptes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.97172000", + "longitude": "4.27812000" + }, + { + "id": "45851", + "name": "Saint-Chinian", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42238000", + "longitude": "2.94643000" + }, + { + "id": "45853", + "name": "Saint-Christol", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72805000", + "longitude": "4.07991000" + }, + { + "id": "45854", + "name": "Saint-Christol-lès-Alès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08256000", + "longitude": "4.07506000" + }, + { + "id": "45856", + "name": "Saint-Christophe-Vallon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.47072000", + "longitude": "2.41184000" + }, + { + "id": "45871", + "name": "Saint-Clément-de-Rivière", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68333000", + "longitude": "3.83333000" + }, + { + "id": "45881", + "name": "Saint-Cyprien-Plage", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.63229000", + "longitude": "3.03333000" + }, + { + "id": "45918", + "name": "Saint-Drézéry", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72991000", + "longitude": "3.97620000" + }, + { + "id": "45924", + "name": "Saint-Estève", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.71175000", + "longitude": "2.84490000" + }, + { + "id": "45926", + "name": "Saint-Etienne-de-Tulmont", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05000000", + "longitude": "1.46667000" + }, + { + "id": "45946", + "name": "Saint-Féliu-d’Avall", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.68117000", + "longitude": "2.73813000" + }, + { + "id": "45948", + "name": "Saint-Félix-Lauragais", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44863000", + "longitude": "1.88814000" + }, + { + "id": "45935", + "name": "Saint-Florent-sur-Auzonnet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.24032000", + "longitude": "4.11252000" + }, + { + "id": "45951", + "name": "Saint-Gaudens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10809000", + "longitude": "0.72345000" + }, + { + "id": "46043", + "name": "Saint-Gély-du-Fesc", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69272000", + "longitude": "3.80492000" + }, + { + "id": "46044", + "name": "Saint-Génis-des-Fontaines", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.54325000", + "longitude": "2.92060000" + }, + { + "id": "45964", + "name": "Saint-Geniès-Bellevue", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68409000", + "longitude": "1.48693000" + }, + { + "id": "45965", + "name": "Saint-Geniès-de-Comolas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06617000", + "longitude": "4.72157000" + }, + { + "id": "45966", + "name": "Saint-Geniès-de-Fontedit", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46667000", + "longitude": "3.18333000" + }, + { + "id": "45967", + "name": "Saint-Geniès-de-Malgoirès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95000000", + "longitude": "4.21667000" + }, + { + "id": "45968", + "name": "Saint-Geniès-des-Mourgues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69780000", + "longitude": "4.03610000" + }, + { + "id": "45958", + "name": "Saint-Geniez-d’Olt", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.46561000", + "longitude": "2.97261000" + }, + { + "id": "45975", + "name": "Saint-Georges-de-Luzençon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06471000", + "longitude": "2.98597000" + }, + { + "id": "46031", + "name": "Saint-Gervasy", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.87687000", + "longitude": "4.46588000" + }, + { + "id": "46034", + "name": "Saint-Gilles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67656000", + "longitude": "4.43024000" + }, + { + "id": "46038", + "name": "Saint-Girons", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.98491000", + "longitude": "1.14587000" + }, + { + "id": "46054", + "name": "Saint-Hilaire-de-Brethmas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08003000", + "longitude": "4.12478000" + }, + { + "id": "46067", + "name": "Saint-Hippolyte", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.78550000", + "longitude": "2.96620000" + }, + { + "id": "46071", + "name": "Saint-Hippolyte-du-Fort", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96362000", + "longitude": "3.85572000" + }, + { + "id": "46081", + "name": "Saint-Jean", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66420000", + "longitude": "1.49941000" + }, + { + "id": "46090", + "name": "Saint-Jean-de-Fos", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70100000", + "longitude": "3.55171000" + }, + { + "id": "46104", + "name": "Saint-Jean-de-Védas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.57759000", + "longitude": "3.82603000" + }, + { + "id": "46110", + "name": "Saint-Jean-du-Falga", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08647000", + "longitude": "1.62780000" + }, + { + "id": "46111", + "name": "Saint-Jean-du-Gard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.10523000", + "longitude": "3.88566000" + }, + { + "id": "46126", + "name": "Saint-Jory", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74146000", + "longitude": "1.37089000" + }, + { + "id": "46165", + "name": "Saint-Juéry", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95000000", + "longitude": "2.21667000" + }, + { + "id": "46140", + "name": "Saint-Julien-de-Peyrolas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.28837000", + "longitude": "4.56507000" + }, + { + "id": "46146", + "name": "Saint-Julien-les-Rosiers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.17445000", + "longitude": "4.10803000" + }, + { + "id": "46151", + "name": "Saint-Just", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65806000", + "longitude": "4.11472000" + }, + { + "id": "46170", + "name": "Saint-Lary-Soulan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.81713000", + "longitude": "0.32238000" + }, + { + "id": "46180", + "name": "Saint-Laurent-de-la-Salanque", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.77270000", + "longitude": "2.98998000" + }, + { + "id": "46181", + "name": "Saint-Laurent-des-Arbres", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05493000", + "longitude": "4.70026000" + }, + { + "id": "46194", + "name": "Saint-Lizier", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.00183000", + "longitude": "1.13686000" + }, + { + "id": "46200", + "name": "Saint-Loup-Cammas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69767000", + "longitude": "1.48127000" + }, + { + "id": "46208", + "name": "Saint-Lys", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.51127000", + "longitude": "1.17557000" + }, + { + "id": "46232", + "name": "Saint-Mamert-du-Gard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88835000", + "longitude": "4.18725000" + }, + { + "id": "46249", + "name": "Saint-Marcel-sur-Aude", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25000000", + "longitude": "2.93333000" + }, + { + "id": "46274", + "name": "Saint-Martin-de-Londres", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.79040000", + "longitude": "3.73066000" + }, + { + "id": "46280", + "name": "Saint-Martin-de-Valgalgues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.16315000", + "longitude": "4.08364000" + }, + { + "id": "46263", + "name": "Saint-Martin-Lalande", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29928000", + "longitude": "2.02004000" + }, + { + "id": "46306", + "name": "Saint-Mathieu-de-Tréviers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76795000", + "longitude": "3.85814000" + }, + { + "id": "46357", + "name": "Saint-Nauphary", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96712000", + "longitude": "1.42549000" + }, + { + "id": "46359", + "name": "Saint-Nazaire", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.66790000", + "longitude": "2.99168000" + }, + { + "id": "46360", + "name": "Saint-Nazaire-d’Aude", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24518000", + "longitude": "2.89443000" + }, + { + "id": "46366", + "name": "Saint-Nicolas-de-la-Grave", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06417000", + "longitude": "1.02280000" + }, + { + "id": "46375", + "name": "Saint-Orens-de-Gameville", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55402000", + "longitude": "1.53411000" + }, + { + "id": "46395", + "name": "Saint-Pargoire", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52766000", + "longitude": "3.51870000" + }, + { + "id": "46404", + "name": "Saint-Paul-Cap-de-Joux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64791000", + "longitude": "1.97559000" + }, + { + "id": "46406", + "name": "Saint-Paul-de-Fenouillet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.80938000", + "longitude": "2.50374000" + }, + { + "id": "46407", + "name": "Saint-Paul-de-Jarrat", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.91404000", + "longitude": "1.65437000" + }, + { + "id": "46418", + "name": "Saint-Paulet-de-Caisson", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.26055000", + "longitude": "4.59785000" + }, + { + "id": "46480", + "name": "Saint-Pé-de-Bigorre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10369000", + "longitude": "-0.15943000" + }, + { + "id": "46458", + "name": "Saint-Pons-de-Thomières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48333000", + "longitude": "2.76667000" + }, + { + "id": "46460", + "name": "Saint-Porquier", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.00344000", + "longitude": "1.17932000" + }, + { + "id": "46470", + "name": "Saint-Privat-des-Vieux", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.14415000", + "longitude": "4.12988000" + }, + { + "id": "46490", + "name": "Saint-Quentin-la-Poterie", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.04392000", + "longitude": "4.44432000" + }, + { + "id": "46531", + "name": "Saint-Sauveur", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74830000", + "longitude": "1.40085000" + }, + { + "id": "46566", + "name": "Saint-Sulpice-la-Pointe", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77500000", + "longitude": "1.68511000" + }, + { + "id": "46569", + "name": "Saint-Sulpice-sur-Lèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33076000", + "longitude": "1.32091000" + }, + { + "id": "46580", + "name": "Saint-Thibéry", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39657000", + "longitude": "3.41774000" + }, + { + "id": "46609", + "name": "Saint-Victor-la-Coste", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06295000", + "longitude": "4.64238000" + }, + { + "id": "46683", + "name": "Sainte-Foy-de-Peyrolières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49262000", + "longitude": "1.14477000" + }, + { + "id": "46694", + "name": "Sainte-Geneviève-sur-Argence", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.80222000", + "longitude": "2.75954000" + }, + { + "id": "46709", + "name": "Sainte-Marie-Plage", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.72498000", + "longitude": "3.03751000" + }, + { + "id": "46722", + "name": "Sainte-Radegonde", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.33743000", + "longitude": "2.62672000" + }, + { + "id": "46744", + "name": "Saleilles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.65418000", + "longitude": "2.95309000" + }, + { + "id": "46749", + "name": "Salies-du-Salat", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10074000", + "longitude": "0.95866000" + }, + { + "id": "46753", + "name": "Salindres", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.17174000", + "longitude": "4.16020000" + }, + { + "id": "46762", + "name": "Salles-Curan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.18220000", + "longitude": "2.78821000" + }, + { + "id": "46763", + "name": "Salles-la-Source", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.43505000", + "longitude": "2.51283000" + }, + { + "id": "46768", + "name": "Salses-le-Château", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.83333000", + "longitude": "2.91667000" + }, + { + "id": "46769", + "name": "Salviac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.68080000", + "longitude": "1.26506000" + }, + { + "id": "46771", + "name": "Samatan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49286000", + "longitude": "0.92976000" + }, + { + "id": "46792", + "name": "Sant Andreu de Sureda", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.55201000", + "longitude": "2.97129000" + }, + { + "id": "46793", + "name": "Sant Joan de Pladecorts", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.51069000", + "longitude": "2.79091000" + }, + { + "id": "46794", + "name": "Sant Llorenç de Cerdans", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.38473000", + "longitude": "2.61320000" + }, + { + "id": "46831", + "name": "Saubens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47984000", + "longitude": "1.35189000" + }, + { + "id": "46854", + "name": "Saussan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.57220000", + "longitude": "3.77500000" + }, + { + "id": "46859", + "name": "Sauve", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.94150000", + "longitude": "3.94903000" + }, + { + "id": "46861", + "name": "Sauveterre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.02282000", + "longitude": "4.79347000" + }, + { + "id": "46864", + "name": "Sauvian", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29293000", + "longitude": "3.26024000" + }, + { + "id": "46873", + "name": "Saverdun", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23526000", + "longitude": "1.57398000" + }, + { + "id": "46890", + "name": "Saze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.94340000", + "longitude": "4.68096000" + }, + { + "id": "47129", + "name": "Sète", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40280000", + "longitude": "3.69278000" + }, + { + "id": "47132", + "name": "Sébazac-Concourès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.40484000", + "longitude": "2.60324000" + }, + { + "id": "47137", + "name": "Sémalens", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59225000", + "longitude": "2.11208000" + }, + { + "id": "47138", + "name": "Séméac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.22915000", + "longitude": "0.10602000" + }, + { + "id": "47144", + "name": "Sérignan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27873000", + "longitude": "3.27712000" + }, + { + "id": "47150", + "name": "Sévérac-le-Château", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.32429000", + "longitude": "3.05929000" + }, + { + "id": "46921", + "name": "Seilh", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69469000", + "longitude": "1.35509000" + }, + { + "id": "46929", + "name": "Seissan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49215000", + "longitude": "0.59250000" + }, + { + "id": "46949", + "name": "Septfonds", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.17813000", + "longitude": "1.61806000" + }, + { + "id": "46960", + "name": "Sernhac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91116000", + "longitude": "4.55039000" + }, + { + "id": "46972", + "name": "Servian", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42716000", + "longitude": "3.30032000" + }, + { + "id": "46984", + "name": "Seysses", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49801000", + "longitude": "1.31081000" + }, + { + "id": "46991", + "name": "Sigean", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.02777000", + "longitude": "2.97916000" + }, + { + "id": "47036", + "name": "Sommières", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78534000", + "longitude": "4.08973000" + }, + { + "id": "47050", + "name": "Sorède", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.53069000", + "longitude": "2.95708000" + }, + { + "id": "47051", + "name": "Sorèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45241000", + "longitude": "2.06799000" + }, + { + "id": "47055", + "name": "Soual", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55530000", + "longitude": "2.11679000" + }, + { + "id": "47063", + "name": "Soues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20736000", + "longitude": "0.09874000" + }, + { + "id": "47067", + "name": "Souillac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.89720000", + "longitude": "1.47224000" + }, + { + "id": "47116", + "name": "Sumène", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.98057000", + "longitude": "3.71575000" + }, + { + "id": "47126", + "name": "Sussargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71250000", + "longitude": "4.00310000" + }, + { + "id": "47177", + "name": "Tarascon-sur-Ariège", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.84545000", + "longitude": "1.60332000" + }, + { + "id": "47178", + "name": "Tarbes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23333000", + "longitude": "0.08333000" + }, + { + "id": "47180", + "name": "Tarn", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78170000", + "longitude": "2.16317000" + }, + { + "id": "47191", + "name": "Tavel", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.01270000", + "longitude": "4.69835000" + }, + { + "id": "47215", + "name": "Teyran", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68528000", + "longitude": "3.92889000" + }, + { + "id": "47273", + "name": "Théza", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.63797000", + "longitude": "2.95108000" + }, + { + "id": "47274", + "name": "Thézan-lès-Béziers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41667000", + "longitude": "3.16667000" + }, + { + "id": "47259", + "name": "Thuir", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.63290000", + "longitude": "2.75471000" + }, + { + "id": "47304", + "name": "Torreilles", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.75433000", + "longitude": "2.99292000" + }, + { + "id": "47315", + "name": "Toulouges", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.66961000", + "longitude": "2.83008000" + }, + { + "id": "47316", + "name": "Toulouse", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60426000", + "longitude": "1.44367000" + }, + { + "id": "47319", + "name": "Tourbes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44615000", + "longitude": "3.37852000" + }, + { + "id": "47323", + "name": "Tournay", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18438000", + "longitude": "0.24454000" + }, + { + "id": "47324", + "name": "Tournefeuille", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.58872000", + "longitude": "1.31922000" + }, + { + "id": "47389", + "name": "Trèbes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21064000", + "longitude": "2.44165000" + }, + { + "id": "47361", + "name": "Tresques", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.10689000", + "longitude": "4.58739000" + }, + { + "id": "47370", + "name": "Trie-sur-Baïse", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33333000", + "longitude": "0.36667000" + }, + { + "id": "47382", + "name": "Trouillas", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.61089000", + "longitude": "2.80821000" + }, + { + "id": "47420", + "name": "Uchaud", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75857000", + "longitude": "4.26843000" + }, + { + "id": "47448", + "name": "Uzès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.01362000", + "longitude": "4.41529000" + }, + { + "id": "47452", + "name": "Vacquiers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77667000", + "longitude": "1.48127000" + }, + { + "id": "47455", + "name": "Vailhauquès", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67159000", + "longitude": "3.72042000" + }, + { + "id": "47466", + "name": "Valady", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.45633000", + "longitude": "2.42746000" + }, + { + "id": "47470", + "name": "Valence", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.10823000", + "longitude": "0.89101000" + }, + { + "id": "47472", + "name": "Valence-d’Albigeois", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.01928000", + "longitude": "2.40534000" + }, + { + "id": "47473", + "name": "Valence-sur-Baïse", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88270000", + "longitude": "0.38111000" + }, + { + "id": "47480", + "name": "Valergues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66824000", + "longitude": "4.06124000" + }, + { + "id": "47484", + "name": "Vallabrègues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.85307000", + "longitude": "4.62662000" + }, + { + "id": "47487", + "name": "Valleraugue", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08130000", + "longitude": "3.64154000" + }, + { + "id": "47498", + "name": "Valras-Plage", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24808000", + "longitude": "3.29032000" + }, + { + "id": "47499", + "name": "Valros", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41956000", + "longitude": "3.36506000" + }, + { + "id": "47518", + "name": "Varilhes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.04514000", + "longitude": "1.62805000" + }, + { + "id": "47544", + "name": "Vauvert", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69529000", + "longitude": "4.27705000" + }, + { + "id": "47550", + "name": "Vayrac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.95337000", + "longitude": "1.70358000" + }, + { + "id": "47927", + "name": "Vénéjan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.19729000", + "longitude": "4.65422000" + }, + { + "id": "47933", + "name": "Vézénobres", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05130000", + "longitude": "4.13775000" + }, + { + "id": "47566", + "name": "Vendargues", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65833000", + "longitude": "3.97000000" + }, + { + "id": "47577", + "name": "Vendres", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26977000", + "longitude": "3.22341000" + }, + { + "id": "47581", + "name": "Venerque", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43457000", + "longitude": "1.44588000" + }, + { + "id": "47594", + "name": "Verdun-sur-Garonne", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.85446000", + "longitude": "1.23425000" + }, + { + "id": "47597", + "name": "Verfeil", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65781000", + "longitude": "1.66340000" + }, + { + "id": "47601", + "name": "Vergèze", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74404000", + "longitude": "4.22109000" + }, + { + "id": "47610", + "name": "Vernet", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43333000", + "longitude": "1.41667000" + }, + { + "id": "47611", + "name": "Vernet-les-Bains", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.54834000", + "longitude": "2.38717000" + }, + { + "id": "47616", + "name": "Verniolle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.08162000", + "longitude": "1.64904000" + }, + { + "id": "47631", + "name": "Vers-Pont-du-Gard", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96667000", + "longitude": "4.53333000" + }, + { + "id": "47650", + "name": "Vestric-et-Candiac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74061000", + "longitude": "4.25914000" + }, + { + "id": "47661", + "name": "Vias", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31156000", + "longitude": "3.41774000" + }, + { + "id": "47664", + "name": "Vic-en-Bigorre", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38682000", + "longitude": "0.05471000" + }, + { + "id": "47663", + "name": "Vic-Fezensac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77183000", + "longitude": "0.31368000" + }, + { + "id": "47665", + "name": "Vic-la-Gardiole", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49080000", + "longitude": "3.79750000" + }, + { + "id": "47676", + "name": "Vieille-Toulouse", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52366000", + "longitude": "1.44230000" + }, + { + "id": "47680", + "name": "Vielmur-sur-Agout", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61667000", + "longitude": "2.10000000" + }, + { + "id": "47704", + "name": "Vilallonga dels Monts", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.52557000", + "longitude": "2.90434000" + }, + { + "id": "47715", + "name": "Villaudric", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83044000", + "longitude": "1.43166000" + }, + { + "id": "47735", + "name": "Villefranche-d'Albigeois", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89635000", + "longitude": "2.33022000" + }, + { + "id": "47736", + "name": "Villefranche-de-Lauragais", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40000000", + "longitude": "1.71694000" + }, + { + "id": "47737", + "name": "Villefranche-de-Rouergue", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.35166000", + "longitude": "2.03702000" + }, + { + "id": "47743", + "name": "Villegailhenc", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26867000", + "longitude": "2.35469000" + }, + { + "id": "47748", + "name": "Villelongue-de-la-Salanque", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.72637000", + "longitude": "2.98240000" + }, + { + "id": "47753", + "name": "Villemolaque", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.58815000", + "longitude": "2.83890000" + }, + { + "id": "47755", + "name": "Villemoustaussou", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25186000", + "longitude": "2.36552000" + }, + { + "id": "47756", + "name": "Villemur-sur-Tarn", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86708000", + "longitude": "1.50281000" + }, + { + "id": "47761", + "name": "Villeneuve", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.43333000", + "longitude": "2.03333000" + }, + { + "id": "47771", + "name": "Villeneuve-d’Olmes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.90610000", + "longitude": "1.81937000" + }, + { + "id": "47770", + "name": "Villeneuve-de-la-Raho", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.63596000", + "longitude": "2.91651000" + }, + { + "id": "47769", + "name": "Villeneuve-de-Rivière", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.12829000", + "longitude": "0.66351000" + }, + { + "id": "47772", + "name": "Villeneuve-la-Comptal", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28833000", + "longitude": "1.91773000" + }, + { + "id": "47775", + "name": "Villeneuve-la-Rivière", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.69366000", + "longitude": "2.80294000" + }, + { + "id": "47779", + "name": "Villeneuve-lès-Avignon", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96840000", + "longitude": "4.79630000" + }, + { + "id": "47781", + "name": "Villeneuve-lès-Béziers", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31517000", + "longitude": "3.28059000" + }, + { + "id": "47780", + "name": "Villeneuve-lès-Bouloc", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76769000", + "longitude": "1.42278000" + }, + { + "id": "47782", + "name": "Villeneuve-lès-Maguelone", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53333000", + "longitude": "3.86667000" + }, + { + "id": "47765", + "name": "Villeneuve-Tolosane", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52316000", + "longitude": "1.34102000" + }, + { + "id": "47787", + "name": "Villenouvelle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43581000", + "longitude": "1.66279000" + }, + { + "id": "47791", + "name": "Villepinte", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28213000", + "longitude": "2.08760000" + }, + { + "id": "47816", + "name": "Villetelle", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73105000", + "longitude": "4.13658000" + }, + { + "id": "47820", + "name": "Villeveyrac", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50095000", + "longitude": "3.60723000" + }, + { + "id": "47821", + "name": "Villevieille", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78795000", + "longitude": "4.09756000" + }, + { + "id": "47842", + "name": "Vinassan", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20443000", + "longitude": "3.07463000" + }, + { + "id": "47851", + "name": "Vinça", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "42.64486000", + "longitude": "2.52830000" + }, + { + "id": "47884", + "name": "Viviers-lès-Montagnes", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55474000", + "longitude": "2.17672000" + }, + { + "id": "47885", + "name": "Viviez", + "state_id": 4799, + "state_code": "OCC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55678000", + "longitude": "2.21649000" + }, + { + "id": "39234", + "name": "Abbaretz", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55314000", + "longitude": "-1.53200000" + }, + { + "id": "39265", + "name": "Ahuillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02086000", + "longitude": "-0.86906000" + }, + { + "id": "39270", + "name": "Aigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06471000", + "longitude": "0.11908000" + }, + { + "id": "39272", + "name": "Aigrefeuille-sur-Maine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.07888000", + "longitude": "-1.40254000" + }, + { + "id": "39297", + "name": "Aizenay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74004000", + "longitude": "-1.60834000" + }, + { + "id": "39330", + "name": "Allonnes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29338000", + "longitude": "0.02458000" + }, + { + "id": "39357", + "name": "Ambrières-les-Vallées", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.40000000", + "longitude": "-0.63333000" + }, + { + "id": "39371", + "name": "Ancenis", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36667000", + "longitude": "-1.16667000" + }, + { + "id": "39378", + "name": "Andard", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.45659000", + "longitude": "-0.39752000" + }, + { + "id": "39386", + "name": "Andouillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17685000", + "longitude": "-0.78364000" + }, + { + "id": "39389", + "name": "Andrezé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.17155000", + "longitude": "-0.95239000" + }, + { + "id": "39395", + "name": "Anetz", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38059000", + "longitude": "-1.10583000" + }, + { + "id": "39396", + "name": "Angers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.47381000", + "longitude": "-0.54774000" + }, + { + "id": "39402", + "name": "Angles", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.40839000", + "longitude": "-1.40389000" + }, + { + "id": "39433", + "name": "Antigny", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.62095000", + "longitude": "-0.76988000" + }, + { + "id": "39445", + "name": "Apremont", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74850000", + "longitude": "-1.74075000" + }, + { + "id": "39538", + "name": "Arçonnay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39678000", + "longitude": "0.08620000" + }, + { + "id": "39484", + "name": "Argentré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.08362000", + "longitude": "-0.64150000" + }, + { + "id": "39499", + "name": "Arnage", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92616000", + "longitude": "0.18782000" + }, + { + "id": "39505", + "name": "Aron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29800000", + "longitude": "-0.55980000" + }, + { + "id": "39525", + "name": "Arthon-en-Retz", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11586000", + "longitude": "-1.94260000" + }, + { + "id": "39554", + "name": "Assérac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42881000", + "longitude": "-2.38916000" + }, + { + "id": "39583", + "name": "Aubigné-Racan", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69091000", + "longitude": "0.26870000" + }, + { + "id": "39579", + "name": "Aubigny", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.59653000", + "longitude": "-1.45364000" + }, + { + "id": "39641", + "name": "Auvers-le-Hamon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90246000", + "longitude": "-0.35170000" + }, + { + "id": "39668", + "name": "Avessac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65324000", + "longitude": "-1.98961000" + }, + { + "id": "39680", + "name": "Avrillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50000000", + "longitude": "-0.58333000" + }, + { + "id": "39697", + "name": "Azé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82220000", + "longitude": "-0.68333000" + }, + { + "id": "48045", + "name": "Écommoy", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82565000", + "longitude": "0.27422000" + }, + { + "id": "48048", + "name": "Écouflant", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53101000", + "longitude": "-0.52780000" + }, + { + "id": "48105", + "name": "Étival-lès-le-Mans", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95000000", + "longitude": "0.08333000" + }, + { + "id": "48112", + "name": "Étriché", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65087000", + "longitude": "-0.44377000" + }, + { + "id": "48124", + "name": "Évron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.15642000", + "longitude": "-0.39970000" + }, + { + "id": "39739", + "name": "Bais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25280000", + "longitude": "-0.36493000" + }, + { + "id": "39754", + "name": "Ballon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17317000", + "longitude": "0.23814000" + }, + { + "id": "39755", + "name": "Ballots", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89617000", + "longitude": "-1.04759000" + }, + { + "id": "39777", + "name": "Barbâtre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.94116000", + "longitude": "-2.17752000" + }, + { + "id": "39771", + "name": "Barbechat", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27750000", + "longitude": "-1.28524000" + }, + { + "id": "39798", + "name": "Basse-Goulaine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21167000", + "longitude": "-1.46748000" + }, + { + "id": "39807", + "name": "Batz-sur-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27750000", + "longitude": "-2.48027000" + }, + { + "id": "39810", + "name": "Baugé-en-Anjou", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54447000", + "longitude": "-0.10653000" + }, + { + "id": "39815", + "name": "Bauné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49954000", + "longitude": "-0.31906000" + }, + { + "id": "39833", + "name": "Bazoges-en-Pareds", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.65702000", + "longitude": "-0.91654000" + }, + { + "id": "39835", + "name": "Bazouges-sur-le-Loir", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68928000", + "longitude": "-0.16883000" + }, + { + "id": "40411", + "name": "Bécon-les-Granits", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50134000", + "longitude": "-0.80000000" + }, + { + "id": "40419", + "name": "Bégrolles-en-Mauges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14048000", + "longitude": "-0.94000000" + }, + { + "id": "39842", + "name": "Beaucouzé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.47444000", + "longitude": "-0.63016000" + }, + { + "id": "39845", + "name": "Beaufay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14664000", + "longitude": "0.36224000" + }, + { + "id": "39847", + "name": "Beaufort-en-Vallée", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43965000", + "longitude": "-0.21890000" + }, + { + "id": "39852", + "name": "Beaulieu-sous-la-Roche", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67647000", + "longitude": "-1.61129000" + }, + { + "id": "39854", + "name": "Beaulieu-sur-Layon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31095000", + "longitude": "-0.58988000" + }, + { + "id": "39873", + "name": "Beaumont-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22772000", + "longitude": "0.13186000" + }, + { + "id": "39876", + "name": "Beaupréau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20464000", + "longitude": "-0.98703000" + }, + { + "id": "39883", + "name": "Beaurepaire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.90977000", + "longitude": "-1.08928000" + }, + { + "id": "39893", + "name": "Beauvoir-sur-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.91274000", + "longitude": "-2.04156000" + }, + { + "id": "39926", + "name": "Belleville-sur-Vie", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.78369000", + "longitude": "-1.42905000" + }, + { + "id": "39929", + "name": "Belligné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46774000", + "longitude": "-1.02780000" + }, + { + "id": "39938", + "name": "Benet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.36972000", + "longitude": "-0.59333000" + }, + { + "id": "39972", + "name": "Besné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40000000", + "longitude": "-2.08976000" + }, + { + "id": "39983", + "name": "Bessé-sur-Braye", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83333000", + "longitude": "0.75000000" + }, + { + "id": "40046", + "name": "Blain", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.47655000", + "longitude": "-1.76285000" + }, + { + "id": "40051", + "name": "Blaison-Gohier", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39951000", + "longitude": "-0.37723000" + }, + { + "id": "40087", + "name": "Bois-de-Cené", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93689000", + "longitude": "-1.88656000" + }, + { + "id": "40110", + "name": "Bonchamp-lès-Laval", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07357000", + "longitude": "-0.70000000" + }, + { + "id": "40130", + "name": "Bonnétable", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17908000", + "longitude": "0.42570000" + }, + { + "id": "40148", + "name": "Bouaye", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14263000", + "longitude": "-1.69306000" + }, + { + "id": "40152", + "name": "Bouchemaine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42234000", + "longitude": "-0.60888000" + }, + { + "id": "40154", + "name": "Boufféré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96179000", + "longitude": "-1.33965000" + }, + { + "id": "40156", + "name": "Bouguenais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.17762000", + "longitude": "-1.62143000" + }, + { + "id": "40160", + "name": "Bouin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97314000", + "longitude": "-1.99830000" + }, + { + "id": "40175", + "name": "Bouloire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97385000", + "longitude": "0.55009000" + }, + { + "id": "40185", + "name": "Bourg de Joué-sur-Erdre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49596000", + "longitude": "-1.42047000" + }, + { + "id": "40202", + "name": "Bourgneuf-en-Retz", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.04122000", + "longitude": "-1.95019000" + }, + { + "id": "40209", + "name": "Bournezeau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.63714000", + "longitude": "-1.17107000" + }, + { + "id": "40217", + "name": "Boussay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.04476000", + "longitude": "-1.18476000" + }, + { + "id": "40230", + "name": "Bouvron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41726000", + "longitude": "-1.84679000" + }, + { + "id": "40235", + "name": "Bouzillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33750000", + "longitude": "-1.11143000" + }, + { + "id": "40248", + "name": "Brain-sur-Allonnes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.30325000", + "longitude": "0.06514000" + }, + { + "id": "40250", + "name": "Brains", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.16850000", + "longitude": "-1.72290000" + }, + { + "id": "40364", + "name": "Brézé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.17357000", + "longitude": "-0.06059000" + }, + { + "id": "40366", + "name": "Brûlon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.96667000", + "longitude": "-0.23333000" + }, + { + "id": "40284", + "name": "Bretignolles-sur-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.63333000", + "longitude": "-1.86667000" + }, + { + "id": "40286", + "name": "Brette-les-Pins", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91062000", + "longitude": "0.33649000" + }, + { + "id": "40318", + "name": "Briollay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56478000", + "longitude": "-0.50681000" + }, + { + "id": "40319", + "name": "Brion", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44121000", + "longitude": "-0.15616000" + }, + { + "id": "40326", + "name": "Brissac-Quincé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35575000", + "longitude": "-0.44924000" + }, + { + "id": "40498", + "name": "Campbon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41310000", + "longitude": "-1.96857000" + }, + { + "id": "40507", + "name": "Candé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56158000", + "longitude": "-1.03619000" + }, + { + "id": "40520", + "name": "Cantenay-Épinard", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53503000", + "longitude": "-0.56899000" + }, + { + "id": "40557", + "name": "Carquefou", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29821000", + "longitude": "-1.49024000" + }, + { + "id": "40572", + "name": "Casson", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38761000", + "longitude": "-1.55654000" + }, + { + "id": "41394", + "name": "Cérans-Foulletourte", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82651000", + "longitude": "0.07724000" + }, + { + "id": "40673", + "name": "Chacé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21435000", + "longitude": "-0.07179000" + }, + { + "id": "40677", + "name": "Chailland", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22516000", + "longitude": "-0.87387000" + }, + { + "id": "40682", + "name": "Chaillé-les-Marais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.39628000", + "longitude": "-1.02369000" + }, + { + "id": "40692", + "name": "Challans", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84363000", + "longitude": "-1.87491000" + }, + { + "id": "40693", + "name": "Challes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93033000", + "longitude": "0.41511000" + }, + { + "id": "40699", + "name": "Chalonnes-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35160000", + "longitude": "-0.76310000" + }, + { + "id": "40712", + "name": "Chambretaud", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.92166000", + "longitude": "-0.96405000" + }, + { + "id": "40727", + "name": "Champagné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02185000", + "longitude": "0.33096000" + }, + { + "id": "40728", + "name": "Champagné-les-Marais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.38081000", + "longitude": "-1.12112000" + }, + { + "id": "40735", + "name": "Champfleur", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.38668000", + "longitude": "0.12942000" + }, + { + "id": "40743", + "name": "Champigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66332000", + "longitude": "-0.57160000" + }, + { + "id": "40753", + "name": "Champtocé-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41239000", + "longitude": "-0.86452000" + }, + { + "id": "40752", + "name": "Champtoceaux", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33476000", + "longitude": "-1.26131000" + }, + { + "id": "40763", + "name": "Changé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09918000", + "longitude": "-0.79292000" + }, + { + "id": "40776", + "name": "Chantonnay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.68702000", + "longitude": "-1.05024000" + }, + { + "id": "40834", + "name": "Chauché", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82963000", + "longitude": "-1.27178000" + }, + { + "id": "40838", + "name": "Chaudron-en-Mauges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28809000", + "longitude": "-0.98547000" + }, + { + "id": "40854", + "name": "Chauvé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.15174000", + "longitude": "-1.98489000" + }, + { + "id": "40856", + "name": "Chavagnes-en-Paillers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.89167000", + "longitude": "-1.25214000" + }, + { + "id": "40948", + "name": "Château-d’Olonne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.50382000", + "longitude": "-1.74097000" + }, + { + "id": "40947", + "name": "Château-du-Loir", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69492000", + "longitude": "0.41851000" + }, + { + "id": "40939", + "name": "Château-Gontier", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82872000", + "longitude": "-0.70265000" + }, + { + "id": "40940", + "name": "Château-Guibert", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58110000", + "longitude": "-1.23656000" + }, + { + "id": "40952", + "name": "Châteaubriant", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71712000", + "longitude": "-1.37624000" + }, + { + "id": "40975", + "name": "Châteauneuf-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68145000", + "longitude": "-0.48652000" + }, + { + "id": "41011", + "name": "Chéméré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11667000", + "longitude": "-1.91667000" + }, + { + "id": "41018", + "name": "Chênehutte-Trèves-Cunault", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31084000", + "longitude": "-0.16042000" + }, + { + "id": "40871", + "name": "Chemazé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.78690000", + "longitude": "-0.77523000" + }, + { + "id": "40872", + "name": "Chemillé-Melay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21476000", + "longitude": "-0.72488000" + }, + { + "id": "40885", + "name": "Cherré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.17290000", + "longitude": "0.65781000" + }, + { + "id": "40924", + "name": "Cholet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.05905000", + "longitude": "-0.87953000" + }, + { + "id": "41048", + "name": "Clermont-Créans", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71831000", + "longitude": "-0.01459000" + }, + { + "id": "41056", + "name": "Clisson", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.08714000", + "longitude": "-1.28286000" + }, + { + "id": "41293", + "name": "Coëx", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.69808000", + "longitude": "-1.75956000" + }, + { + "id": "41114", + "name": "Combrée", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70446000", + "longitude": "-1.03003000" + }, + { + "id": "41119", + "name": "Commequiers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.76049000", + "longitude": "-1.83901000" + }, + { + "id": "41120", + "name": "Commer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.23333000", + "longitude": "-0.61667000" + }, + { + "id": "41146", + "name": "Congrier", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.80989000", + "longitude": "-1.11700000" + }, + { + "id": "41148", + "name": "Conlie", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12334000", + "longitude": "-0.01739000" + }, + { + "id": "41151", + "name": "Connerré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05698000", + "longitude": "0.49344000" + }, + { + "id": "41152", + "name": "Conquereuil", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62524000", + "longitude": "-1.75105000" + }, + { + "id": "41172", + "name": "Corcoué-sur-Logne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96667000", + "longitude": "-1.58333000" + }, + { + "id": "41173", + "name": "Cordemais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29107000", + "longitude": "-1.87869000" + }, + { + "id": "41197", + "name": "Corné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.47091000", + "longitude": "-0.34992000" + }, + { + "id": "41198", + "name": "Coron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12726000", + "longitude": "-0.64512000" + }, + { + "id": "41203", + "name": "Corsept", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27703000", + "longitude": "-2.05904000" + }, + { + "id": "41206", + "name": "Corzé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55956000", + "longitude": "-0.39062000" + }, + { + "id": "41210", + "name": "Cossé-le-Vivien", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94599000", + "longitude": "-0.91185000" + }, + { + "id": "41288", + "name": "Couëron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21508000", + "longitude": "-1.72171000" + }, + { + "id": "41223", + "name": "Couffé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39120000", + "longitude": "-1.29321000" + }, + { + "id": "41228", + "name": "Coulaines", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02409000", + "longitude": "0.20411000" + }, + { + "id": "41230", + "name": "Coulans-sur-Gée", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02070000", + "longitude": "0.00974000" + }, + { + "id": "41248", + "name": "Courcité", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.30633000", + "longitude": "-0.24961000" + }, + { + "id": "41298", + "name": "Craon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84687000", + "longitude": "-0.94929000" + }, + { + "id": "41328", + "name": "Crossac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41119000", + "longitude": "-2.16952000" + }, + { + "id": "41362", + "name": "Cugand", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06318000", + "longitude": "-1.25270000" + }, + { + "id": "41440", + "name": "Daumeray", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70070000", + "longitude": "-0.36119000" + }, + { + "id": "41633", + "name": "Département de la Vendée", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64169000", + "longitude": "-1.30407000" + }, + { + "id": "41606", + "name": "Département de Maine-et-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50000000", + "longitude": "-0.33333000" + }, + { + "id": "41453", + "name": "Denée", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.37885000", + "longitude": "-0.60816000" + }, + { + "id": "41454", + "name": "Derval", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66724000", + "longitude": "-1.66990000" + }, + { + "id": "41494", + "name": "Distré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22281000", + "longitude": "-0.11071000" + }, + { + "id": "41505", + "name": "Dollon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03879000", + "longitude": "0.58686000" + }, + { + "id": "41525", + "name": "Dompierre-sur-Yon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73857000", + "longitude": "-1.38463000" + }, + { + "id": "41531", + "name": "Donges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31824000", + "longitude": "-2.07538000" + }, + { + "id": "41562", + "name": "Doué-la-Fontaine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19372000", + "longitude": "-0.27492000" + }, + { + "id": "41567", + "name": "Drain", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33655000", + "longitude": "-1.20773000" + }, + { + "id": "41571", + "name": "Drefféac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.47464000", + "longitude": "-2.05774000" + }, + { + "id": "41596", + "name": "Durtal", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.67247000", + "longitude": "-0.23393000" + }, + { + "id": "41679", + "name": "Entrammes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99759000", + "longitude": "-0.71399000" + }, + { + "id": "41689", + "name": "Erbray", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65492000", + "longitude": "-1.31783000" + }, + { + "id": "41698", + "name": "Ernée", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.29764000", + "longitude": "-0.93143000" + }, + { + "id": "41768", + "name": "Falleron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88160000", + "longitude": "-1.70208000" + }, + { + "id": "41788", + "name": "Fay-de-Bretagne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41453000", + "longitude": "-1.79155000" + }, + { + "id": "42001", + "name": "Fégréac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.58476000", + "longitude": "-2.04410000" + }, + { + "id": "41798", + "name": "Feneu", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.57211000", + "longitude": "-0.59422000" + }, + { + "id": "41821", + "name": "Fillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.90011000", + "longitude": "0.12543000" + }, + { + "id": "41898", + "name": "Fontenay-le-Comte", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.46720000", + "longitude": "-0.80645000" + }, + { + "id": "41905", + "name": "Fontevraud-l'Abbaye", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18333000", + "longitude": "0.05000000" + }, + { + "id": "41926", + "name": "Fougerolles-du-Plessis", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47424000", + "longitude": "-0.97255000" + }, + { + "id": "41940", + "name": "Foussais-Payré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53333000", + "longitude": "-0.68333000" + }, + { + "id": "41954", + "name": "Freigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54858000", + "longitude": "-1.12274000" + }, + { + "id": "41957", + "name": "Fresnay-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28199000", + "longitude": "0.02288000" + }, + { + "id": "41969", + "name": "Froidfond", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86898000", + "longitude": "-1.75740000" + }, + { + "id": "41978", + "name": "Frossay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.24451000", + "longitude": "-1.93557000" + }, + { + "id": "42300", + "name": "Gétigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.07650000", + "longitude": "-1.24810000" + }, + { + "id": "42064", + "name": "Geneston", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.05639000", + "longitude": "-1.51139000" + }, + { + "id": "42067", + "name": "Gennes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34010000", + "longitude": "-0.23149000" + }, + { + "id": "42080", + "name": "Gesté", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18179000", + "longitude": "-1.10917000" + }, + { + "id": "42109", + "name": "Givrand", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67083000", + "longitude": "-1.88612000" + }, + { + "id": "42137", + "name": "Gorges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09917000", + "longitude": "-1.30024000" + }, + { + "id": "42138", + "name": "Gorron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41095000", + "longitude": "-0.81267000" + }, + { + "id": "42203", + "name": "Grez-Neuville", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60288000", + "longitude": "-0.68193000" + }, + { + "id": "42225", + "name": "Grosbreuil", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53946000", + "longitude": "-1.61655000" + }, + { + "id": "42277", + "name": "Guécélard", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87751000", + "longitude": "0.12930000" + }, + { + "id": "42280", + "name": "Guémené-Penfao", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.63333000", + "longitude": "-1.83333000" + }, + { + "id": "42284", + "name": "Guérande", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32911000", + "longitude": "-2.42829000" + }, + { + "id": "42241", + "name": "Guenrouet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.51881000", + "longitude": "-1.95381000" + }, + { + "id": "42342", + "name": "Haute-Goulaine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19905000", + "longitude": "-1.42941000" + }, + { + "id": "42456", + "name": "Héric", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41417000", + "longitude": "-1.65309000" + }, + { + "id": "42373", + "name": "Herbignac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44822000", + "longitude": "-2.31810000" + }, + { + "id": "42486", + "name": "Indre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20000000", + "longitude": "-1.66667000" + }, + { + "id": "42488", + "name": "Ingrandes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40500000", + "longitude": "-0.92336000" + }, + { + "id": "42509", + "name": "Issé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62419000", + "longitude": "-1.45152000" + }, + { + "id": "42524", + "name": "Jallais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19691000", + "longitude": "-0.86738000" + }, + { + "id": "42526", + "name": "Jans", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62029000", + "longitude": "-1.61438000" + }, + { + "id": "42530", + "name": "Jard-sur-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.41451000", + "longitude": "-1.57639000" + }, + { + "id": "42537", + "name": "Jarzé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55563000", + "longitude": "-0.23183000" + }, + { + "id": "42545", + "name": "Javron-les-Chapelles", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41797000", + "longitude": "-0.33742000" + }, + { + "id": "42582", + "name": "Juigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71878000", + "longitude": "-0.39405000" + }, + { + "id": "42583", + "name": "Juigné-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40741000", + "longitude": "-0.47682000" + }, + { + "id": "42584", + "name": "Juigné-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86499000", + "longitude": "-0.28624000" + }, + { + "id": "42590", + "name": "Jumelles", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43511000", + "longitude": "-0.10370000" + }, + { + "id": "42600", + "name": "Juvigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.22891000", + "longitude": "-1.03408000" + }, + { + "id": "42630", + "name": "La Baconnière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18012000", + "longitude": "-0.89202000" + }, + { + "id": "42633", + "name": "La Barre-de-Monts", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88059000", + "longitude": "-2.12168000" + }, + { + "id": "42637", + "name": "La Baule-Escoublac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29221000", + "longitude": "-2.36395000" + }, + { + "id": "42639", + "name": "La Bazoge", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09689000", + "longitude": "0.15534000" + }, + { + "id": "42640", + "name": "La Bernardière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.04952000", + "longitude": "-1.26587000" + }, + { + "id": "42641", + "name": "La Bernerie-en-Retz", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.08040000", + "longitude": "-2.03642000" + }, + { + "id": "42644", + "name": "La Bohalle", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42095000", + "longitude": "-0.39723000" + }, + { + "id": "42646", + "name": "La Boissière-de-Montaigu", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.95012000", + "longitude": "-1.19047000" + }, + { + "id": "42647", + "name": "La Boissière-des-Landes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.56398000", + "longitude": "-1.46172000" + }, + { + "id": "42656", + "name": "La Bruffière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.01492000", + "longitude": "-1.19730000" + }, + { + "id": "42675", + "name": "La Chaize-le-Vicomte", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67166000", + "longitude": "-1.29084000" + }, + { + "id": "42677", + "name": "La Chapelle-Achard", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.58862000", + "longitude": "-1.64757000" + }, + { + "id": "42678", + "name": "La Chapelle-Basse-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27086000", + "longitude": "-1.33913000" + }, + { + "id": "42694", + "name": "La Chapelle-des-Marais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44845000", + "longitude": "-2.23834000" + }, + { + "id": "42695", + "name": "La Chapelle-du-Genêt", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18203000", + "longitude": "-1.01857000" + }, + { + "id": "42680", + "name": "La Chapelle-Heulin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.17667000", + "longitude": "-1.34000000" + }, + { + "id": "42682", + "name": "La Chapelle-Launay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.37226000", + "longitude": "-1.97071000" + }, + { + "id": "42684", + "name": "La Chapelle-Saint-Aubin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03595000", + "longitude": "0.15624000" + }, + { + "id": "42685", + "name": "La Chapelle-Saint-Florent", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33393000", + "longitude": "-1.05631000" + }, + { + "id": "42700", + "name": "La Chapelle-sur-Erdre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29583000", + "longitude": "-1.55309000" + }, + { + "id": "42703", + "name": "La Chartre-sur-le-Loir", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73117000", + "longitude": "0.56852000" + }, + { + "id": "42706", + "name": "La Châtaigneraie", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64786000", + "longitude": "-0.73916000" + }, + { + "id": "42705", + "name": "La Chevrolière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09124000", + "longitude": "-1.60973000" + }, + { + "id": "42727", + "name": "La Daguenière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41934000", + "longitude": "-0.43128000" + }, + { + "id": "42734", + "name": "La Ferrière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71453000", + "longitude": "-1.31417000" + }, + { + "id": "42737", + "name": "La Ferté-Bernard", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18633000", + "longitude": "0.65357000" + }, + { + "id": "42748", + "name": "La Flèche", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.69815000", + "longitude": "-0.07553000" + }, + { + "id": "42746", + "name": "La Flocellière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83202000", + "longitude": "-0.86215000" + }, + { + "id": "42765", + "name": "La Garnache", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.89176000", + "longitude": "-1.83163000" + }, + { + "id": "42766", + "name": "La Gaubretière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.94143000", + "longitude": "-1.06215000" + }, + { + "id": "42778", + "name": "La Génétouze", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.73333000", + "longitude": "-1.51667000" + }, + { + "id": "42774", + "name": "La Grigonnais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52724000", + "longitude": "-1.66781000" + }, + { + "id": "42777", + "name": "La Guérinière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96667000", + "longitude": "-2.23333000" + }, + { + "id": "42776", + "name": "La Guyonnière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96476000", + "longitude": "-1.25059000" + }, + { + "id": "42779", + "name": "La Haie-Fouassière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.15492000", + "longitude": "-1.39794000" + }, + { + "id": "42787", + "name": "La Jubaudière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.17202000", + "longitude": "-0.89215000" + }, + { + "id": "42788", + "name": "La Jumellière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27976000", + "longitude": "-0.72952000" + }, + { + "id": "42791", + "name": "La Limouzinière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99274000", + "longitude": "-1.59722000" + }, + { + "id": "42822", + "name": "La Ménitré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40000000", + "longitude": "-0.26667000" + }, + { + "id": "42801", + "name": "La Meignanne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.51700000", + "longitude": "-0.66861000" + }, + { + "id": "42802", + "name": "La Meilleraie-Tillay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74059000", + "longitude": "-0.84500000" + }, + { + "id": "42803", + "name": "La Meilleraye-de-Bretagne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55941000", + "longitude": "-1.40200000" + }, + { + "id": "42805", + "name": "La Membrolle-sur-Longuenée", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55991000", + "longitude": "-0.67236000" + }, + { + "id": "42806", + "name": "La Milesse", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06314000", + "longitude": "0.13428000" + }, + { + "id": "42809", + "name": "La Montagne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18651000", + "longitude": "-1.68272000" + }, + { + "id": "42810", + "name": "La Mothe-Achard", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.61586000", + "longitude": "-1.65938000" + }, + { + "id": "42831", + "name": "La Plaine-sur-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13619000", + "longitude": "-2.19182000" + }, + { + "id": "42832", + "name": "La Planche", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.01619000", + "longitude": "-1.43159000" + }, + { + "id": "42835", + "name": "La Pommeraie-sur-Sèvre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83535000", + "longitude": "-0.77785000" + }, + { + "id": "42836", + "name": "La Pommeraye", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35562000", + "longitude": "-0.85892000" + }, + { + "id": "42837", + "name": "La Possonnière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.37485000", + "longitude": "-0.68539000" + }, + { + "id": "42838", + "name": "La Pouëze", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55357000", + "longitude": "-0.80928000" + }, + { + "id": "42842", + "name": "La Regrippière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18167000", + "longitude": "-1.17620000" + }, + { + "id": "42843", + "name": "La Remaudière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23762000", + "longitude": "-1.24358000" + }, + { + "id": "42859", + "name": "La Roche-sur-Yon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.66667000", + "longitude": "-1.43333000" + }, + { + "id": "42864", + "name": "La Romagne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06119000", + "longitude": "-1.02000000" + }, + { + "id": "42870", + "name": "La Salle-et-Chapelle-Aubry", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25013000", + "longitude": "-0.97512000" + }, + { + "id": "42882", + "name": "La Séguinière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06357000", + "longitude": "-0.93857000" + }, + { + "id": "42880", + "name": "La Suze-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88753000", + "longitude": "0.02519000" + }, + { + "id": "42884", + "name": "La Tardière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.66096000", + "longitude": "-0.73143000" + }, + { + "id": "42886", + "name": "La Tessoualle", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.00476000", + "longitude": "-0.85119000" + }, + { + "id": "42895", + "name": "La Tourlandry", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14375000", + "longitude": "-0.69688000" + }, + { + "id": "42896", + "name": "La Tranche-sur-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.34300000", + "longitude": "-1.43700000" + }, + { + "id": "42901", + "name": "La Turballe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34686000", + "longitude": "-2.50734000" + }, + { + "id": "42906", + "name": "La Varenne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31107000", + "longitude": "-1.31976000" + }, + { + "id": "42909", + "name": "La Verrie", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96131000", + "longitude": "-0.99596000" + }, + { + "id": "42968", + "name": "Laigné-en-Belin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87706000", + "longitude": "0.22795000" + }, + { + "id": "43002", + "name": "Landemont", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26536000", + "longitude": "-1.23989000" + }, + { + "id": "43004", + "name": "Landeronde", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.65722000", + "longitude": "-1.56953000" + }, + { + "id": "43008", + "name": "Landivy", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.47868000", + "longitude": "-1.03320000" + }, + { + "id": "43067", + "name": "Larchamp", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.36131000", + "longitude": "-0.99900000" + }, + { + "id": "43085", + "name": "Lassay-les-Châteaux", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.43835000", + "longitude": "-0.49758000" + }, + { + "id": "43107", + "name": "Laval", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07320000", + "longitude": "-0.76340000" + }, + { + "id": "43129", + "name": "Le Bignon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09722000", + "longitude": "-1.49167000" + }, + { + "id": "43136", + "name": "Le Boupère", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79595000", + "longitude": "-0.92654000" + }, + { + "id": "43140", + "name": "Le Bourgneuf-la-Forêt", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.16325000", + "longitude": "-0.96963000" + }, + { + "id": "43143", + "name": "Le Breil-sur-Mérize", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00755000", + "longitude": "0.47808000" + }, + { + "id": "43158", + "name": "Le Cellier", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31988000", + "longitude": "-1.34584000" + }, + { + "id": "43162", + "name": "Le Champ-Saint-Père", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.50773000", + "longitude": "-1.34726000" + }, + { + "id": "43176", + "name": "Le Croisic", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29189000", + "longitude": "-2.51380000" + }, + { + "id": "43186", + "name": "Le Fenouiller", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71901000", + "longitude": "-1.90175000" + }, + { + "id": "43187", + "name": "Le Fief-Sauvin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22143000", + "longitude": "-1.04214000" + }, + { + "id": "43191", + "name": "Le Fuilet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28345000", + "longitude": "-1.11310000" + }, + { + "id": "43203", + "name": "Le Gâvre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52131000", + "longitude": "-1.74905000" + }, + { + "id": "43197", + "name": "Le Grand-Lucé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.86618000", + "longitude": "0.46919000" + }, + { + "id": "43209", + "name": "Le Landreau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20512000", + "longitude": "-1.30452000" + }, + { + "id": "43210", + "name": "Le Langon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.43850000", + "longitude": "-0.94767000" + }, + { + "id": "43213", + "name": "Le Longeron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.01845000", + "longitude": "-1.05763000" + }, + { + "id": "43214", + "name": "Le Loroux-Bottereau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23763000", + "longitude": "-1.34952000" + }, + { + "id": "43215", + "name": "Le Louroux-Béconnais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52211000", + "longitude": "-0.88663000" + }, + { + "id": "43216", + "name": "Le Luart", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07053000", + "longitude": "0.58564000" + }, + { + "id": "43218", + "name": "Le Lude", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64648000", + "longitude": "0.15664000" + }, + { + "id": "43221", + "name": "Le Mans", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00039000", + "longitude": "0.20471000" + }, + { + "id": "43223", + "name": "Le May-sur-Èvre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13714000", + "longitude": "-0.89227000" + }, + { + "id": "43229", + "name": "Le Mesnil-en-Vallée", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36551000", + "longitude": "-0.93485000" + }, + { + "id": "43245", + "name": "Le Pallet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13809000", + "longitude": "-1.33476000" + }, + { + "id": "43248", + "name": "Le Pellerin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19915000", + "longitude": "-1.75514000" + }, + { + "id": "43251", + "name": "Le Perrier", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.81932000", + "longitude": "-1.99306000" + }, + { + "id": "43260", + "name": "Le Pin-en-Mauges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25357000", + "longitude": "-0.89917000" + }, + { + "id": "43266", + "name": "Le Plessis-Grammoire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.49884000", + "longitude": "-0.43021000" + }, + { + "id": "43267", + "name": "Le Plessis-Macé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54304000", + "longitude": "-0.67436000" + }, + { + "id": "43272", + "name": "Le Poiré-sur-Vie", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.76921000", + "longitude": "-1.50938000" + }, + { + "id": "43281", + "name": "Le Pouliguen", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26973000", + "longitude": "-2.42780000" + }, + { + "id": "43285", + "name": "Le Puy-Notre-Dame", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12551000", + "longitude": "-0.23572000" + }, + { + "id": "43309", + "name": "Le Temple-de-Bretagne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32737000", + "longitude": "-1.78904000" + }, + { + "id": "43332", + "name": "Le Vieil-Baugé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.53193000", + "longitude": "-0.11888000" + }, + { + "id": "43344", + "name": "Legé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88484000", + "longitude": "-1.60127000" + }, + { + "id": "43372", + "name": "Les Brouzils", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88571000", + "longitude": "-1.32095000" + }, + { + "id": "43379", + "name": "Les Clouzeaux", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.62881000", + "longitude": "-1.50947000" + }, + { + "id": "43384", + "name": "Les Epesses", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.88333000", + "longitude": "-0.90000000" + }, + { + "id": "43385", + "name": "Les Essarts", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.77440000", + "longitude": "-1.22834000" + }, + { + "id": "43395", + "name": "Les Herbiers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86667000", + "longitude": "-1.01667000" + }, + { + "id": "43397", + "name": "Les Landes-Genusson", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96667000", + "longitude": "-1.11667000" + }, + { + "id": "43402", + "name": "Les Lucs-sur-Boulogne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.84478000", + "longitude": "-1.49445000" + }, + { + "id": "43404", + "name": "Les Magnils-Reigniers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48333000", + "longitude": "-1.21667000" + }, + { + "id": "43411", + "name": "Les Moutiers-en-Retz", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06375000", + "longitude": "-1.99900000" + }, + { + "id": "43422", + "name": "Les Ponts-de-Cé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42315000", + "longitude": "-0.52477000" + }, + { + "id": "43425", + "name": "Les Rosiers-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35000000", + "longitude": "-0.21667000" + }, + { + "id": "43427", + "name": "Les Sables-d’Olonne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.49645000", + "longitude": "-1.78472000" + }, + { + "id": "43429", + "name": "Les Sorinières", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14831000", + "longitude": "-1.52932000" + }, + { + "id": "43430", + "name": "Les Touches", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44249000", + "longitude": "-1.43097000" + }, + { + "id": "43481", + "name": "Ligné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41096000", + "longitude": "-1.37726000" + }, + { + "id": "43507", + "name": "Liré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34322000", + "longitude": "-1.16536000" + }, + { + "id": "43540", + "name": "Loire-Atlantique", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32863000", + "longitude": "-1.65764000" + }, + { + "id": "43543", + "name": "Loiron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06667000", + "longitude": "-0.93333000" + }, + { + "id": "43548", + "name": "Lombron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07879000", + "longitude": "0.41869000" + }, + { + "id": "43559", + "name": "Longeville-sur-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.41667000", + "longitude": "-1.50000000" + }, + { + "id": "43621", + "name": "Loué", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99575000", + "longitude": "-0.15450000" + }, + { + "id": "43606", + "name": "Louplande", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95000000", + "longitude": "-0.05000000" + }, + { + "id": "43612", + "name": "Louverné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.12178000", + "longitude": "-0.71721000" + }, + { + "id": "43676", + "name": "Luçon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.45773000", + "longitude": "-1.16512000" + }, + { + "id": "43632", + "name": "Luceau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71167000", + "longitude": "0.39734000" + }, + { + "id": "43635", + "name": "Luché-Pringé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70326000", + "longitude": "0.07549000" + }, + { + "id": "43660", + "name": "Lusanger", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68153000", + "longitude": "-1.58857000" + }, + { + "id": "43714", + "name": "Maché", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.75405000", + "longitude": "-1.68692000" + }, + { + "id": "43712", + "name": "Machecoul", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99358000", + "longitude": "-1.82352000" + }, + { + "id": "43734", + "name": "Maillezais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.37267000", + "longitude": "-0.73963000" + }, + { + "id": "43741", + "name": "Maisdon-sur-Sèvre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09714000", + "longitude": "-1.38000000" + }, + { + "id": "43759", + "name": "Malicorne-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81317000", + "longitude": "-0.08152000" + }, + { + "id": "43766", + "name": "Malville", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35905000", + "longitude": "-1.86227000" + }, + { + "id": "43768", + "name": "Mamers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34961000", + "longitude": "0.36937000" + }, + { + "id": "43782", + "name": "Mansigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74833000", + "longitude": "0.13311000" + }, + { + "id": "43926", + "name": "Marçon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71059000", + "longitude": "0.51101000" + }, + { + "id": "43830", + "name": "Mareuil-sur-Lay-Dissais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53333000", + "longitude": "-1.23333000" + }, + { + "id": "43844", + "name": "Marigné-Laillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81765000", + "longitude": "0.34050000" + }, + { + "id": "43867", + "name": "Marolles-les-Braults", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.25271000", + "longitude": "0.31631000" + }, + { + "id": "43878", + "name": "Marsac-sur-Don", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.59648000", + "longitude": "-1.67952000" + }, + { + "id": "43913", + "name": "Martigné-Briand", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23358000", + "longitude": "-0.42933000" + }, + { + "id": "43915", + "name": "Martigné-sur-Mayenne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.20000000", + "longitude": "-0.66667000" + }, + { + "id": "43950", + "name": "Maulévrier", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.00929000", + "longitude": "-0.74239000" + }, + { + "id": "43961", + "name": "Mauves-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29738000", + "longitude": "-1.38763000" + }, + { + "id": "43969", + "name": "Mayenne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13494000", + "longitude": "-0.66667000" + }, + { + "id": "43970", + "name": "Mayet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75968000", + "longitude": "0.27468000" + }, + { + "id": "43980", + "name": "Mazé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.45632000", + "longitude": "-0.27106000" + }, + { + "id": "43977", + "name": "Mazières-en-Mauges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.04536000", + "longitude": "-0.81702000" + }, + { + "id": "44483", + "name": "Mésanger", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43131000", + "longitude": "-1.22798000" + }, + { + "id": "44485", + "name": "Mézeray", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82682000", + "longitude": "-0.01770000" + }, + { + "id": "44494", + "name": "Mûrs-Erigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40000000", + "longitude": "-0.55000000" + }, + { + "id": "43991", + "name": "Melay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18333000", + "longitude": "-0.69429000" + }, + { + "id": "44022", + "name": "Mervent", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.52239000", + "longitude": "-0.75654000" + }, + { + "id": "44029", + "name": "Meslay-du-Maine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.95116000", + "longitude": "-0.55428000" + }, + { + "id": "44031", + "name": "Mesquer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39919000", + "longitude": "-2.45986000" + }, + { + "id": "44102", + "name": "Miré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75759000", + "longitude": "-0.49157000" + }, + { + "id": "44104", + "name": "Missillac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48155000", + "longitude": "-2.16000000" + }, + { + "id": "44115", + "name": "Moisdon-la-Rivière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.62175000", + "longitude": "-1.37258000" + }, + { + "id": "44134", + "name": "Moncé-en-Belin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89442000", + "longitude": "0.19809000" + }, + { + "id": "44146", + "name": "Monnières", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13301000", + "longitude": "-1.35317000" + }, + { + "id": "44169", + "name": "Montaigu", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97667000", + "longitude": "-1.30846000" + }, + { + "id": "44195", + "name": "Montbert", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.05613000", + "longitude": "-1.48890000" + }, + { + "id": "44197", + "name": "Montbizot", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14995000", + "longitude": "0.18384000" + }, + { + "id": "44218", + "name": "Montenay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28787000", + "longitude": "-0.89373000" + }, + { + "id": "44232", + "name": "Montfaucon-Montigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10000000", + "longitude": "-1.11667000" + }, + { + "id": "44241", + "name": "Montfort-le-Gesnois", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05000000", + "longitude": "0.41667000" + }, + { + "id": "44264", + "name": "Montigné-le-Brillant", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00872000", + "longitude": "-0.81488000" + }, + { + "id": "44266", + "name": "Montjean-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38842000", + "longitude": "-0.85873000" + }, + { + "id": "44292", + "name": "Montoir-de-Bretagne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33012000", + "longitude": "-2.15107000" + }, + { + "id": "44297", + "name": "Montournais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74191000", + "longitude": "-0.76464000" + }, + { + "id": "44309", + "name": "Montreuil-Bellay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13106000", + "longitude": "-0.15209000" + }, + { + "id": "44315", + "name": "Montrevault", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25965000", + "longitude": "-1.04679000" + }, + { + "id": "44330", + "name": "Montsûrs", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13604000", + "longitude": "-0.55413000" + }, + { + "id": "44342", + "name": "Morannes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74364000", + "longitude": "-0.41604000" + }, + { + "id": "44371", + "name": "Mortagne-sur-Sèvre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99203000", + "longitude": "-0.94738000" + }, + { + "id": "44382", + "name": "Mouchamps", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.78131000", + "longitude": "-1.06179000" + }, + { + "id": "44389", + "name": "Mouilleron-en-Pareds", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.67630000", + "longitude": "-0.84940000" + }, + { + "id": "44390", + "name": "Mouilleron-le-Captif", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71898000", + "longitude": "-1.45463000" + }, + { + "id": "44391", + "name": "Moulay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.27245000", + "longitude": "-0.62734000" + }, + { + "id": "44413", + "name": "Moutiers-les-Mauxfaits", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48333000", + "longitude": "-1.41667000" + }, + { + "id": "44417", + "name": "Mouzeil", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44738000", + "longitude": "-1.34786000" + }, + { + "id": "44418", + "name": "Mouzillon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14096000", + "longitude": "-1.28191000" + }, + { + "id": "44426", + "name": "Mozé-sur-Louet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35856000", + "longitude": "-0.55295000" + }, + { + "id": "44434", + "name": "Mulsanne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.91172000", + "longitude": "0.24938000" + }, + { + "id": "44499", + "name": "Nalliers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.47071000", + "longitude": "-1.02774000" + }, + { + "id": "44506", + "name": "Nantes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21725000", + "longitude": "-1.55336000" + }, + { + "id": "44536", + "name": "Nesmy", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.59078000", + "longitude": "-1.40074000" + }, + { + "id": "44572", + "name": "Neuville-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.07615000", + "longitude": "0.19264000" + }, + { + "id": "44596", + "name": "Nieul-le-Dolent", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.57379000", + "longitude": "-1.50808000" + }, + { + "id": "44624", + "name": "Noirmoutier-en-l’Île", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99733000", + "longitude": "-2.27374000" + }, + { + "id": "44645", + "name": "Nort-sur-Erdre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43881000", + "longitude": "-1.49833000" + }, + { + "id": "44652", + "name": "Notre-Dame-de-Monts", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83100000", + "longitude": "-2.13100000" + }, + { + "id": "44654", + "name": "Notre-Dame-de-Riez", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74445000", + "longitude": "-1.90857000" + }, + { + "id": "44656", + "name": "Notre-Dame-des-Landes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38048000", + "longitude": "-1.70904000" + }, + { + "id": "44672", + "name": "Noyant", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.51048000", + "longitude": "0.11771000" + }, + { + "id": "44673", + "name": "Noyant-la-Gravoyère", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.70348000", + "longitude": "-0.95730000" + }, + { + "id": "44678", + "name": "Noyen-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87187000", + "longitude": "-0.09916000" + }, + { + "id": "44682", + "name": "Nozay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56495000", + "longitude": "-1.62629000" + }, + { + "id": "44684", + "name": "Nuaillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09524000", + "longitude": "-0.79477000" + }, + { + "id": "44686", + "name": "Nueil-sur-Layon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11811000", + "longitude": "-0.36573000" + }, + { + "id": "44687", + "name": "Nuillé-sur-Vicoin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.98556000", + "longitude": "-0.78351000" + }, + { + "id": "44689", + "name": "Nyoiseau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.71667000", + "longitude": "-0.91667000" + }, + { + "id": "44727", + "name": "Oisseau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.35559000", + "longitude": "-0.67148000" + }, + { + "id": "44737", + "name": "Olonne-sur-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.53524000", + "longitude": "-1.77293000" + }, + { + "id": "44788", + "name": "Orvault", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27095000", + "longitude": "-1.62190000" + }, + { + "id": "44803", + "name": "Oudon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.34774000", + "longitude": "-1.28500000" + }, + { + "id": "44828", + "name": "Paimboeuf", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28654000", + "longitude": "-2.03048000" + }, + { + "id": "44843", + "name": "Pannecé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48583000", + "longitude": "-1.23940000" + }, + { + "id": "44861", + "name": "Parçay-les-Pins", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43668000", + "longitude": "0.16312000" + }, + { + "id": "44849", + "name": "Parcé-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84356000", + "longitude": "-0.20104000" + }, + { + "id": "44855", + "name": "Parigné-le-Pôlin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.84987000", + "longitude": "0.10705000" + }, + { + "id": "44872", + "name": "Paulx", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.96181000", + "longitude": "-1.75520000" + }, + { + "id": "44887", + "name": "Pellouailles-les-Vignes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52172000", + "longitude": "-0.43954000" + }, + { + "id": "44916", + "name": "Petit-Mars", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39512000", + "longitude": "-1.45262000" + }, + { + "id": "44978", + "name": "Piriac-sur-Mer", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.37938000", + "longitude": "-2.54616000" + }, + { + "id": "44982", + "name": "Pissotte", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.49725000", + "longitude": "-0.80666000" + }, + { + "id": "45011", + "name": "Plessé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.54180000", + "longitude": "-1.88609000" + }, + { + "id": "45170", + "name": "Pont-Saint-Martin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12338000", + "longitude": "-1.58455000" + }, + { + "id": "45206", + "name": "Pontchâteau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43797000", + "longitude": "-2.09011000" + }, + { + "id": "45218", + "name": "Pontvallain", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75169000", + "longitude": "0.19145000" + }, + { + "id": "45223", + "name": "Pornic", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11205000", + "longitude": "-2.08888000" + }, + { + "id": "45224", + "name": "Pornichet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26682000", + "longitude": "-2.33794000" + }, + { + "id": "45227", + "name": "Port-Brillet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11315000", + "longitude": "-0.97080000" + }, + { + "id": "45230", + "name": "Port-Saint-Père", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13294000", + "longitude": "-1.74850000" + }, + { + "id": "45249", + "name": "Pouancé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.74167000", + "longitude": "-1.17366000" + }, + { + "id": "45271", + "name": "Pouzauges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.77941000", + "longitude": "-0.83619000" + }, + { + "id": "45302", + "name": "Pré-en-Pail", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.45993000", + "longitude": "-0.19814000" + }, + { + "id": "45306", + "name": "Précigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.76692000", + "longitude": "-0.32491000" + }, + { + "id": "45308", + "name": "Préfailles", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12839000", + "longitude": "-2.21693000" + }, + { + "id": "45289", + "name": "Prinquiau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36215000", + "longitude": "-2.00952000" + }, + { + "id": "45299", + "name": "Pruillé-le-Chétif", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.99383000", + "longitude": "0.10677000" + }, + { + "id": "45372", + "name": "Quelaines-Saint-Gault", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.93333000", + "longitude": "-0.80000000" + }, + { + "id": "45388", + "name": "Quilly", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46131000", + "longitude": "-1.95274000" + }, + { + "id": "45453", + "name": "Remouillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.05587000", + "longitude": "-1.37682000" + }, + { + "id": "45458", + "name": "Renazé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79340000", + "longitude": "-1.05437000" + }, + { + "id": "45463", + "name": "Requeil", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.78371000", + "longitude": "0.16105000" + }, + { + "id": "45482", + "name": "Rezé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18144000", + "longitude": "-1.54965000" + }, + { + "id": "45485", + "name": "Riaillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.51797000", + "longitude": "-1.29404000" + }, + { + "id": "45656", + "name": "Roézé-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.89546000", + "longitude": "0.06723000" + }, + { + "id": "45546", + "name": "Rochefort-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35705000", + "longitude": "-0.65696000" + }, + { + "id": "45550", + "name": "Rocheservière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93765000", + "longitude": "-1.51143000" + }, + { + "id": "45615", + "name": "Rouans", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18321000", + "longitude": "-1.85929000" + }, + { + "id": "45625", + "name": "Rougé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.78367000", + "longitude": "-1.44763000" + }, + { + "id": "45628", + "name": "Rouillon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00629000", + "longitude": "0.13527000" + }, + { + "id": "45636", + "name": "Roussay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09011000", + "longitude": "-1.06417000" + }, + { + "id": "45657", + "name": "Ruaudin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.94509000", + "longitude": "0.26760000" + }, + { + "id": "45667", + "name": "Ruillé-sur-Loir", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.75075000", + "longitude": "0.62058000" + }, + { + "id": "45703", + "name": "Sablé-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83765000", + "longitude": "-0.33294000" + }, + { + "id": "45711", + "name": "Saffré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.50143000", + "longitude": "-1.57856000" + }, + { + "id": "45760", + "name": "Saint-André-de-la-Marche", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09952000", + "longitude": "-0.99441000" + }, + { + "id": "45762", + "name": "Saint-André-des-Eaux", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31461000", + "longitude": "-2.31105000" + }, + { + "id": "45756", + "name": "Saint-André-Treize-Voies", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93369000", + "longitude": "-1.41274000" + }, + { + "id": "45784", + "name": "Saint-Aubin-des-Châteaux", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.72047000", + "longitude": "-1.48876000" + }, + { + "id": "45785", + "name": "Saint-Aubin-des-Ormeaux", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.99238000", + "longitude": "-1.04274000" + }, + { + "id": "46647", + "name": "Saint-Étienne-de-Mer-Morte", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.92848000", + "longitude": "-1.74272000" + }, + { + "id": "46648", + "name": "Saint-Étienne-de-Montluc", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27690000", + "longitude": "-1.78072000" + }, + { + "id": "46652", + "name": "Saint-Étienne-du-Bois", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.83041000", + "longitude": "-1.59714000" + }, + { + "id": "45806", + "name": "Saint-Baudelle", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.28081000", + "longitude": "-0.63728000" + }, + { + "id": "45814", + "name": "Saint-Berthevin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06667000", + "longitude": "-0.83333000" + }, + { + "id": "45823", + "name": "Saint-Brevin-les-Pins", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25000000", + "longitude": "-2.16667000" + }, + { + "id": "45836", + "name": "Saint-Calais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92211000", + "longitude": "0.74587000" + }, + { + "id": "45857", + "name": "Saint-Christophe-du-Bois", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.03012000", + "longitude": "-0.94441000" + }, + { + "id": "45858", + "name": "Saint-Christophe-du-Ligneron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82478000", + "longitude": "-1.76586000" + }, + { + "id": "45872", + "name": "Saint-Clément-de-la-Place", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52744000", + "longitude": "-0.74545000" + }, + { + "id": "45873", + "name": "Saint-Clément-des-Levées", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33333000", + "longitude": "-0.18222000" + }, + { + "id": "45875", + "name": "Saint-Cosme-en-Vairais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.26667000", + "longitude": "0.46667000" + }, + { + "id": "45877", + "name": "Saint-Crespin-sur-Moine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09968000", + "longitude": "-1.18651000" + }, + { + "id": "45883", + "name": "Saint-Cyr-en-Bourg", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19520000", + "longitude": "-0.06085000" + }, + { + "id": "45896", + "name": "Saint-Denis-de-Gastines", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34210000", + "longitude": "-0.85869000" + }, + { + "id": "45901", + "name": "Saint-Denis-la-Chevasse", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82273000", + "longitude": "-1.35749000" + }, + { + "id": "45931", + "name": "Saint-Fiacre-sur-Maine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14255000", + "longitude": "-1.41714000" + }, + { + "id": "45933", + "name": "Saint-Florent-des-Bois", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.59377000", + "longitude": "-1.31580000" + }, + { + "id": "45934", + "name": "Saint-Florent-le-Vieil", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36069000", + "longitude": "-1.01515000" + }, + { + "id": "45942", + "name": "Saint-Fort", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.79928000", + "longitude": "-0.72095000" + }, + { + "id": "45944", + "name": "Saint-Fulgent", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.85226000", + "longitude": "-1.17798000" + }, + { + "id": "46046", + "name": "Saint-Géréon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36774000", + "longitude": "-1.20262000" + }, + { + "id": "45971", + "name": "Saint-Georges-Buttavent", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.31018000", + "longitude": "-0.69372000" + }, + { + "id": "45977", + "name": "Saint-Georges-de-Montaigu", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.94655000", + "longitude": "-1.29262000" + }, + { + "id": "45978", + "name": "Saint-Georges-de-Pointindoux", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.64462000", + "longitude": "-1.62204000" + }, + { + "id": "45983", + "name": "Saint-Georges-du-Bois", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.97242000", + "longitude": "0.10113000" + }, + { + "id": "45991", + "name": "Saint-Georges-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40792000", + "longitude": "-0.76194000" + }, + { + "id": "46004", + "name": "Saint-Germain-de-Prinçay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.72107000", + "longitude": "-1.02153000" + }, + { + "id": "46007", + "name": "Saint-Germain-des-Prés", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40998000", + "longitude": "-0.83342000" + }, + { + "id": "46021", + "name": "Saint-Germain-sur-Moine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11746000", + "longitude": "-1.12223000" + }, + { + "id": "46025", + "name": "Saint-Gervais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.90174000", + "longitude": "-2.00210000" + }, + { + "id": "46027", + "name": "Saint-Gervais-en-Belin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87720000", + "longitude": "0.21770000" + }, + { + "id": "46033", + "name": "Saint-Gildas-des-Bois", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.51622000", + "longitude": "-2.03659000" + }, + { + "id": "46036", + "name": "Saint-Gilles-Croix-de-Vie", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.69761000", + "longitude": "-1.94561000" + }, + { + "id": "46048", + "name": "Saint-Herblain", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.21765000", + "longitude": "-1.64841000" + }, + { + "id": "46049", + "name": "Saint-Herblon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.40786000", + "longitude": "-1.09738000" + }, + { + "id": "46055", + "name": "Saint-Hilaire-de-Chaléons", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10196000", + "longitude": "-1.86690000" + }, + { + "id": "46056", + "name": "Saint-Hilaire-de-Clisson", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.06222000", + "longitude": "-1.30778000" + }, + { + "id": "46057", + "name": "Saint-Hilaire-de-Loulay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.00190000", + "longitude": "-1.33079000" + }, + { + "id": "46058", + "name": "Saint-Hilaire-de-Riez", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.71308000", + "longitude": "-1.92583000" + }, + { + "id": "46059", + "name": "Saint-Hilaire-de-Talmont", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.47002000", + "longitude": "-1.60359000" + }, + { + "id": "46062", + "name": "Saint-Hilaire-des-Loges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.47190000", + "longitude": "-0.66393000" + }, + { + "id": "46080", + "name": "Saint-Jean", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.24553000", + "longitude": "-0.38413000" + }, + { + "id": "46087", + "name": "Saint-Jean-de-Boiseau", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19315000", + "longitude": "-1.72340000" + }, + { + "id": "46097", + "name": "Saint-Jean-de-Monts", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79088000", + "longitude": "-2.08219000" + }, + { + "id": "46108", + "name": "Saint-Jean-des-Mauvrets", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39857000", + "longitude": "-0.44929000" + }, + { + "id": "46120", + "name": "Saint-Jean-sur-Mayenne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13522000", + "longitude": "-0.75613000" + }, + { + "id": "46124", + "name": "Saint-Joachim", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38349000", + "longitude": "-2.19239000" + }, + { + "id": "46139", + "name": "Saint-Julien-de-Concelles", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25285000", + "longitude": "-1.38428000" + }, + { + "id": "46141", + "name": "Saint-Julien-des-Landes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.63940000", + "longitude": "-1.71381000" + }, + { + "id": "46168", + "name": "Saint-Lambert-du-Lattay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.30250000", + "longitude": "-0.63321000" + }, + { + "id": "46169", + "name": "Saint-Lambert-la-Potherie", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.48289000", + "longitude": "-0.67789000" + }, + { + "id": "46178", + "name": "Saint-Laurent-de-la-Plaine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31738000", + "longitude": "-0.80333000" + }, + { + "id": "46182", + "name": "Saint-Laurent-des-Autels", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.28524000", + "longitude": "-1.18881000" + }, + { + "id": "46190", + "name": "Saint-Laurent-sur-Sèvre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.95809000", + "longitude": "-0.89392000" + }, + { + "id": "46211", + "name": "Saint-Léger-des-Bois", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46238000", + "longitude": "-0.70953000" + }, + { + "id": "46215", + "name": "Saint-Léger-les-Vignes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13587000", + "longitude": "-1.73060000" + }, + { + "id": "46217", + "name": "Saint-Léger-sous-Cholet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.09405000", + "longitude": "-0.91024000" + }, + { + "id": "46203", + "name": "Saint-Lumine-de-Clisson", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.08413000", + "longitude": "-1.33524000" + }, + { + "id": "46204", + "name": "Saint-Lumine-de-Coutais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.05399000", + "longitude": "-1.72777000" + }, + { + "id": "46207", + "name": "Saint-Lyphard", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39822000", + "longitude": "-2.30642000" + }, + { + "id": "46227", + "name": "Saint-Macaire-en-Mauges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12357000", + "longitude": "-0.99120000" + }, + { + "id": "46231", + "name": "Saint-Malô-du-Bois", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.93333000", + "longitude": "-0.90000000" + }, + { + "id": "46230", + "name": "Saint-Malo-de-Guersac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.35345000", + "longitude": "-2.17773000" + }, + { + "id": "46256", + "name": "Saint-Mars-d’Outillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.87034000", + "longitude": "0.33221000" + }, + { + "id": "46254", + "name": "Saint-Mars-de-Coutais", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.11153000", + "longitude": "-1.73437000" + }, + { + "id": "46255", + "name": "Saint-Mars-du-Désert", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36560000", + "longitude": "-1.40678000" + }, + { + "id": "46257", + "name": "Saint-Mars-la-Brière", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03046000", + "longitude": "0.37319000" + }, + { + "id": "46258", + "name": "Saint-Mars-la-Jaille", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.52566000", + "longitude": "-1.18483000" + }, + { + "id": "46281", + "name": "Saint-Martin-de-la-Place", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31747000", + "longitude": "-0.14849000" + }, + { + "id": "46285", + "name": "Saint-Martin-des-Noyers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.72226000", + "longitude": "-1.17727000" + }, + { + "id": "46286", + "name": "Saint-Martin-du-Fouilloux", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.43360000", + "longitude": "-0.70357000" + }, + { + "id": "46302", + "name": "Saint-Martin-sous-Mouzeuil", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.45905000", + "longitude": "-0.98893000" + }, + { + "id": "46307", + "name": "Saint-Mathurin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.56493000", + "longitude": "-1.71389000" + }, + { + "id": "46308", + "name": "Saint-Mathurin-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.41667000", + "longitude": "-0.31667000" + }, + { + "id": "46354", + "name": "Saint-Même-le-Tenu", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.02005000", + "longitude": "-1.79459000" + }, + { + "id": "46327", + "name": "Saint-Melaine-sur-Aubance", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36667000", + "longitude": "-0.50000000" + }, + { + "id": "46331", + "name": "Saint-Mesmin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79369000", + "longitude": "-0.73262000" + }, + { + "id": "46335", + "name": "Saint-Michel-Chef-Chef", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.18072000", + "longitude": "-2.14869000" + }, + { + "id": "46338", + "name": "Saint-Michel-le-Cloucq", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48500000", + "longitude": "-0.75262000" + }, + { + "id": "46336", + "name": "Saint-Michel-Mont-Mercure", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82941000", + "longitude": "-0.88298000" + }, + { + "id": "46345", + "name": "Saint-Molf", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39167000", + "longitude": "-2.42357000" + }, + { + "id": "46358", + "name": "Saint-Nazaire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27956000", + "longitude": "-2.20993000" + }, + { + "id": "46365", + "name": "Saint-Nicolas-de-Redon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.64343000", + "longitude": "-2.06305000" + }, + { + "id": "46385", + "name": "Saint-Ouën-des-Toits", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13333000", + "longitude": "-0.90000000" + }, + { + "id": "46382", + "name": "Saint-Ouen-en-Belin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.83302000", + "longitude": "0.20924000" + }, + { + "id": "46398", + "name": "Saint-Paterne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.41614000", + "longitude": "0.11271000" + }, + { + "id": "46415", + "name": "Saint-Paul-en-Pareds", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82214000", + "longitude": "-0.98977000" + }, + { + "id": "46478", + "name": "Saint-Père-en-Retz", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20559000", + "longitude": "-2.04095000" + }, + { + "id": "46423", + "name": "Saint-Philbert-de-Bouaine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98568000", + "longitude": "-1.52022000" + }, + { + "id": "46424", + "name": "Saint-Philbert-de-Grand-Lieu", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.03580000", + "longitude": "-1.64120000" + }, + { + "id": "46425", + "name": "Saint-Philbert-du-Peuple", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39314000", + "longitude": "-0.04360000" + }, + { + "id": "46437", + "name": "Saint-Pierre-des-Nids", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.39826000", + "longitude": "-0.09984000" + }, + { + "id": "46439", + "name": "Saint-Pierre-du-Chemin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.69523000", + "longitude": "-0.70095000" + }, + { + "id": "46447", + "name": "Saint-Pierre-la-Cour", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11258000", + "longitude": "-1.02496000" + }, + { + "id": "46429", + "name": "Saint-Pierre-Montlimart", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26976000", + "longitude": "-1.02738000" + }, + { + "id": "46474", + "name": "Saint-Prouant", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.75822000", + "longitude": "-0.95703000" + }, + { + "id": "46488", + "name": "Saint-Quentin-en-Mauges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.29130000", + "longitude": "-0.91191000" + }, + { + "id": "46512", + "name": "Saint-Rémy-en-Mauges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.27202000", + "longitude": "-1.07499000" + }, + { + "id": "46520", + "name": "Saint-Saturnin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05795000", + "longitude": "0.15218000" + }, + { + "id": "46524", + "name": "Saint-Saturnin-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39438000", + "longitude": "-0.43565000" + }, + { + "id": "46578", + "name": "Saint-Sébastien-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.20768000", + "longitude": "-1.50332000" + }, + { + "id": "46590", + "name": "Saint-Urbain", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.87557000", + "longitude": "-2.00961000" + }, + { + "id": "46606", + "name": "Saint-Viaud", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25619000", + "longitude": "-2.01833000" + }, + { + "id": "46616", + "name": "Saint-Vincent-des-Landes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.65695000", + "longitude": "-1.49572000" + }, + { + "id": "46617", + "name": "Saint-Vincent-sur-Graon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.51690000", + "longitude": "-1.38881000" + }, + { + "id": "46665", + "name": "Sainte-Anne-sur-Brivet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46071000", + "longitude": "-2.00415000" + }, + { + "id": "46674", + "name": "Sainte-Cécile", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.74286000", + "longitude": "-1.11429000" + }, + { + "id": "46679", + "name": "Sainte-Flaive-des-Loups", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.61303000", + "longitude": "-1.58082000" + }, + { + "id": "46682", + "name": "Sainte-Foy", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.54488000", + "longitude": "-1.67265000" + }, + { + "id": "46689", + "name": "Sainte-Gemme-la-Plaine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.48286000", + "longitude": "-1.11321000" + }, + { + "id": "46690", + "name": "Sainte-Gemmes-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.42290000", + "longitude": "-0.55684000" + }, + { + "id": "46695", + "name": "Sainte-Hermine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.55619000", + "longitude": "-1.05476000" + }, + { + "id": "46700", + "name": "Sainte-Jamme-sur-Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.14264000", + "longitude": "0.16743000" + }, + { + "id": "46703", + "name": "Sainte-Luce-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25381000", + "longitude": "-1.48430000" + }, + { + "id": "46721", + "name": "Sainte-Pazanne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.10301000", + "longitude": "-1.80950000" + }, + { + "id": "46724", + "name": "Sainte-Reine-de-Bretagne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44131000", + "longitude": "-2.19238000" + }, + { + "id": "46729", + "name": "Sainte-Suzanne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.09818000", + "longitude": "-0.35439000" + }, + { + "id": "46752", + "name": "Saligny", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.80833000", + "longitude": "-1.42726000" + }, + { + "id": "46760", + "name": "Sallertaine", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.86017000", + "longitude": "-1.95522000" + }, + { + "id": "46805", + "name": "Sargé-lès-le-Mans", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03333000", + "longitude": "0.23333000" + }, + { + "id": "46820", + "name": "Sarthe", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.00493000", + "longitude": "0.26516000" + }, + { + "id": "46852", + "name": "Saumur", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25908000", + "longitude": "-0.07796000" + }, + { + "id": "46857", + "name": "Sautron", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26274000", + "longitude": "-1.67107000" + }, + { + "id": "46871", + "name": "Savenay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36072000", + "longitude": "-1.94215000" + }, + { + "id": "46872", + "name": "Savennières", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38225000", + "longitude": "-0.65708000" + }, + { + "id": "47146", + "name": "Sérigné", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.50107000", + "longitude": "-0.84453000" + }, + { + "id": "47149", + "name": "Sévérac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55008000", + "longitude": "-2.07496000" + }, + { + "id": "46915", + "name": "Segré", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.68646000", + "longitude": "-0.87237000" + }, + { + "id": "46917", + "name": "Seiches-sur-le-Loir", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.57351000", + "longitude": "-0.35628000" + }, + { + "id": "46999", + "name": "Sillé-le-Guillaume", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.18266000", + "longitude": "-0.12642000" + }, + { + "id": "47005", + "name": "Sion-les-Mines", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73476000", + "longitude": "-1.59190000" + }, + { + "id": "47025", + "name": "Solesmes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.85009000", + "longitude": "-0.29806000" + }, + { + "id": "47057", + "name": "Soucelles", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56848000", + "longitude": "-0.41819000" + }, + { + "id": "47062", + "name": "Soudan", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.73777000", + "longitude": "-1.30566000" + }, + { + "id": "47069", + "name": "Soulaines-sur-Aubance", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.36381000", + "longitude": "-0.52265000" + }, + { + "id": "47070", + "name": "Soulaire-et-Bourg", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.57896000", + "longitude": "-0.55232000" + }, + { + "id": "47071", + "name": "Soulgé-sur-Ouette", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.06667000", + "longitude": "-0.56667000" + }, + { + "id": "47072", + "name": "Souligné-sous-Ballon", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.13758000", + "longitude": "0.23572000" + }, + { + "id": "47073", + "name": "Soullans", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.79624000", + "longitude": "-1.90106000" + }, + { + "id": "47092", + "name": "Spay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.92384000", + "longitude": "0.15258000" + }, + { + "id": "47112", + "name": "Sucé-sur-Erdre", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33333000", + "longitude": "-1.53333000" + }, + { + "id": "47194", + "name": "Teillé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.46170000", + "longitude": "-1.27810000" + }, + { + "id": "47196", + "name": "Teloché", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.88819000", + "longitude": "0.27086000" + }, + { + "id": "47203", + "name": "Tennie", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.10769000", + "longitude": "-0.07626000" + }, + { + "id": "47252", + "name": "Thorigné-sur-Dué", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.03920000", + "longitude": "0.53554000" + }, + { + "id": "47255", + "name": "Thouaré-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26893000", + "longitude": "-1.43834000" + }, + { + "id": "47253", + "name": "Thouarcé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.26734000", + "longitude": "-0.50186000" + }, + { + "id": "47276", + "name": "Tiercé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.61587000", + "longitude": "-0.46609000" + }, + { + "id": "47277", + "name": "Tiffauges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.01080000", + "longitude": "-1.10999000" + }, + { + "id": "47282", + "name": "Tillières", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14397000", + "longitude": "-1.16334000" + }, + { + "id": "47302", + "name": "Torfou", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.03682000", + "longitude": "-1.11635000" + }, + { + "id": "47342", + "name": "Toutlemonde", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.05488000", + "longitude": "-0.76548000" + }, + { + "id": "47343", + "name": "Touvois", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.90208000", + "longitude": "-1.68333000" + }, + { + "id": "47347", + "name": "Trangé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.02706000", + "longitude": "0.11054000" + }, + { + "id": "47396", + "name": "Trélazé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.44565000", + "longitude": "-0.46540000" + }, + { + "id": "47401", + "name": "Trémentines", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12357000", + "longitude": "-0.78500000" + }, + { + "id": "47355", + "name": "Treillières", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33060000", + "longitude": "-1.61918000" + }, + { + "id": "47356", + "name": "Treize-Septiers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.98524000", + "longitude": "-1.22921000" + }, + { + "id": "47367", + "name": "Triaize", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.39265000", + "longitude": "-1.19785000" + }, + { + "id": "47373", + "name": "Trignac", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.31809000", + "longitude": "-2.18895000" + }, + { + "id": "47411", + "name": "Tuffé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.11319000", + "longitude": "0.51551000" + }, + { + "id": "47449", + "name": "Vaas", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.66890000", + "longitude": "0.31677000" + }, + { + "id": "47454", + "name": "Vaiges", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.04025000", + "longitude": "-0.47513000" + }, + { + "id": "47458", + "name": "Vairé", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.60104000", + "longitude": "-1.75538000" + }, + { + "id": "47489", + "name": "Vallet", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.16227000", + "longitude": "-1.26607000" + }, + { + "id": "47507", + "name": "Varades", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38458000", + "longitude": "-1.02842000" + }, + { + "id": "47515", + "name": "Varennes-sur-Loire", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.23767000", + "longitude": "0.05350000" + }, + { + "id": "47520", + "name": "Varrains", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.22305000", + "longitude": "-0.06033000" + }, + { + "id": "47528", + "name": "Vauchrétien", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.33234000", + "longitude": "-0.47678000" + }, + { + "id": "47531", + "name": "Vaudelnay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.13813000", + "longitude": "-0.20677000" + }, + { + "id": "47549", + "name": "Vay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.55466000", + "longitude": "-1.70095000" + }, + { + "id": "47562", + "name": "Venansault", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.68516000", + "longitude": "-1.51415000" + }, + { + "id": "47576", + "name": "Vendrennes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.82523000", + "longitude": "-1.12357000" + }, + { + "id": "47606", + "name": "Vern-d’Anjou", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.60119000", + "longitude": "-0.83357000" + }, + { + "id": "47609", + "name": "Vernantes", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.39320000", + "longitude": "0.05304000" + }, + { + "id": "47618", + "name": "Vernoil-le-Fourrier", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.38333000", + "longitude": "0.08333000" + }, + { + "id": "47642", + "name": "Vertou", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.16869000", + "longitude": "-1.46929000" + }, + { + "id": "47658", + "name": "Vezins", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.12015000", + "longitude": "-0.70971000" + }, + { + "id": "47662", + "name": "Vibraye", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.05607000", + "longitude": "0.74171000" + }, + { + "id": "47678", + "name": "Vieillevigne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.97214000", + "longitude": "-1.43405000" + }, + { + "id": "47696", + "name": "Vigneux-de-Bretagne", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32547000", + "longitude": "-1.73678000" + }, + { + "id": "47703", + "name": "Vihiers", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14631000", + "longitude": "-0.53238000" + }, + { + "id": "47707", + "name": "Villaines-la-Juhel", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "48.34416000", + "longitude": "-0.27734000" + }, + { + "id": "47722", + "name": "Villebernier", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.25374000", + "longitude": "-0.03229000" + }, + { + "id": "47729", + "name": "Villedieu-la-Blouère", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.14738000", + "longitude": "-1.06286000" + }, + { + "id": "47823", + "name": "Villevêque", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.56095000", + "longitude": "-0.42383000" + }, + { + "id": "47855", + "name": "Vion", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.81923000", + "longitude": "-0.23916000" + }, + { + "id": "47887", + "name": "Vivy", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.32648000", + "longitude": "-0.05531000" + }, + { + "id": "47888", + "name": "Vix", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "46.36456000", + "longitude": "-0.86072000" + }, + { + "id": "47921", + "name": "Vue", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.19953000", + "longitude": "-1.87750000" + }, + { + "id": "48019", + "name": "Yvré-le-Pôlin", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.82235000", + "longitude": "0.15581000" + }, + { + "id": "48020", + "name": "Yzernay", + "state_id": 4802, + "state_code": "PDL", + "country_id": 75, + "country_code": "FR", + "latitude": "47.02229000", + "longitude": "-0.70295000" + }, + { + "id": "39294", + "name": "Aix-en-Provence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52830000", + "longitude": "5.44973000" + }, + { + "id": "39322", + "name": "Allauch", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33573000", + "longitude": "5.48201000" + }, + { + "id": "39323", + "name": "Alleins", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70387000", + "longitude": "5.16203000" + }, + { + "id": "39335", + "name": "Alpes-de-Haute-Provence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.09829000", + "longitude": "6.26537000" + }, + { + "id": "39334", + "name": "Alpes-Maritimes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91307000", + "longitude": "7.20436000" + }, + { + "id": "39337", + "name": "Althen-des-Paluds", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.00405000", + "longitude": "4.95861000" + }, + { + "id": "39424", + "name": "Annot", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96528000", + "longitude": "6.66879000" + }, + { + "id": "39429", + "name": "Ansouis", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73771000", + "longitude": "5.46356000" + }, + { + "id": "39432", + "name": "Antibes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.58579000", + "longitude": "7.10831000" + }, + { + "id": "39446", + "name": "Apt", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.87638000", + "longitude": "5.39635000" + }, + { + "id": "39470", + "name": "Arenc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31583000", + "longitude": "5.36698000" + }, + { + "id": "39489", + "name": "Arles", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67681000", + "longitude": "4.63031000" + }, + { + "id": "39550", + "name": "Aspremont", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78342000", + "longitude": "7.24406000" + }, + { + "id": "39566", + "name": "Aubagne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29276000", + "longitude": "5.57067000" + }, + { + "id": "39578", + "name": "Aubignan", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.09971000", + "longitude": "5.02526000" + }, + { + "id": "39622", + "name": "Aups", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62841000", + "longitude": "6.22477000" + }, + { + "id": "39626", + "name": "Aureille", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70821000", + "longitude": "4.94728000" + }, + { + "id": "39628", + "name": "Auribeau-sur-Siagne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60063000", + "longitude": "6.90992000" + }, + { + "id": "39631", + "name": "Auriol", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37161000", + "longitude": "5.63410000" + }, + { + "id": "39669", + "name": "Avignon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.94834000", + "longitude": "4.80892000" + }, + { + "id": "48035", + "name": "Èze", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72799000", + "longitude": "7.36194000" + }, + { + "id": "48061", + "name": "Éguilles", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56867000", + "longitude": "5.35575000" + }, + { + "id": "48068", + "name": "Éoures", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30045000", + "longitude": "5.52193000" + }, + { + "id": "48117", + "name": "Évenos", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.16365000", + "longitude": "5.84628000" + }, + { + "id": "39712", + "name": "Bagnols-en-Forêt", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53752000", + "longitude": "6.69814000" + }, + { + "id": "39721", + "name": "Baille", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28770000", + "longitude": "5.39804000" + }, + { + "id": "39759", + "name": "Bandol", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.14247000", + "longitude": "5.74718000" + }, + { + "id": "39772", + "name": "Barbentane", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89939000", + "longitude": "4.74756000" + }, + { + "id": "39779", + "name": "Barcelonnette", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.38691000", + "longitude": "6.65179000" + }, + { + "id": "39783", + "name": "Bargemon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61899000", + "longitude": "6.54957000" + }, + { + "id": "39785", + "name": "Barjols", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55805000", + "longitude": "6.00752000" + }, + { + "id": "40413", + "name": "Bédarrides", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.04022000", + "longitude": "4.89819000" + }, + { + "id": "40414", + "name": "Bédoin", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.12432000", + "longitude": "5.18040000" + }, + { + "id": "39855", + "name": "Beaulieu-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70692000", + "longitude": "7.33135000" + }, + { + "id": "39857", + "name": "Beaumes-de-Venise", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.12227000", + "longitude": "5.03065000" + }, + { + "id": "39864", + "name": "Beaumont-de-Pertuis", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73737000", + "longitude": "5.68959000" + }, + { + "id": "39886", + "name": "Beausoleil", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74311000", + "longitude": "7.42250000" + }, + { + "id": "39903", + "name": "Belcodène", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42612000", + "longitude": "5.58878000" + }, + { + "id": "39905", + "name": "Belgentier", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24535000", + "longitude": "5.99933000" + }, + { + "id": "39909", + "name": "Belle de Mai", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31184000", + "longitude": "5.38541000" + }, + { + "id": "39935", + "name": "Belsunce", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29834000", + "longitude": "5.37660000" + }, + { + "id": "39959", + "name": "Berre-l'Étang", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47809000", + "longitude": "5.17044000" + }, + { + "id": "39960", + "name": "Berre-les-Alpes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83052000", + "longitude": "7.32877000" + }, + { + "id": "39977", + "name": "Besse-sur-Issole", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34892000", + "longitude": "6.17656000" + }, + { + "id": "40029", + "name": "Biot", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62852000", + "longitude": "7.09530000" + }, + { + "id": "40059", + "name": "Blausasc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.80572000", + "longitude": "7.36477000" + }, + { + "id": "40105", + "name": "Bollène", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.28124000", + "longitude": "4.74891000" + }, + { + "id": "40109", + "name": "Bon-Secours", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31923000", + "longitude": "5.38426000" + }, + { + "id": "40125", + "name": "Bonneveine", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25000000", + "longitude": "5.38333000" + }, + { + "id": "40127", + "name": "Bonnieux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82396000", + "longitude": "5.30759000" + }, + { + "id": "40139", + "name": "Borel", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36486000", + "longitude": "5.36681000" + }, + { + "id": "40141", + "name": "Bormes-les-Mimosas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.15169000", + "longitude": "6.34220000" + }, + { + "id": "40149", + "name": "Bouc-Bel-Air", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45217000", + "longitude": "5.41300000" + }, + { + "id": "40165", + "name": "Boulbon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86232000", + "longitude": "4.69391000" + }, + { + "id": "40258", + "name": "Bras", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47163000", + "longitude": "5.95486000" + }, + { + "id": "40273", + "name": "Breil-sur-Roya", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93755000", + "longitude": "7.51472000" + }, + { + "id": "40300", + "name": "Briançon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.89978000", + "longitude": "6.64201000" + }, + { + "id": "40313", + "name": "Brignoles", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40580000", + "longitude": "6.06172000" + }, + { + "id": "40441", + "name": "Cabannes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86015000", + "longitude": "4.95192000" + }, + { + "id": "40443", + "name": "Cabasse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42646000", + "longitude": "6.21917000" + }, + { + "id": "40448", + "name": "Cabriès", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44127000", + "longitude": "5.37884000" + }, + { + "id": "40446", + "name": "Cabris", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65617000", + "longitude": "6.87358000" + }, + { + "id": "40453", + "name": "Cadenet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73500000", + "longitude": "5.37339000" + }, + { + "id": "40454", + "name": "Caderousse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.10327000", + "longitude": "4.75672000" + }, + { + "id": "40456", + "name": "Cadolive", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39694000", + "longitude": "5.54526000" + }, + { + "id": "40459", + "name": "Cagnes-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66352000", + "longitude": "7.14790000" + }, + { + "id": "40472", + "name": "Callas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59284000", + "longitude": "6.53840000" + }, + { + "id": "40473", + "name": "Callian", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62210000", + "longitude": "6.75269000" + }, + { + "id": "40481", + "name": "Camaret-sur-Aigues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.16375000", + "longitude": "4.87310000" + }, + { + "id": "40501", + "name": "Camps-la-Source", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38626000", + "longitude": "6.09607000" + }, + { + "id": "40512", + "name": "Cannes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55135000", + "longitude": "7.01275000" + }, + { + "id": "40517", + "name": "Cantaron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76203000", + "longitude": "7.31756000" + }, + { + "id": "40524", + "name": "Cap-d’Ail", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72126000", + "longitude": "7.40556000" + }, + { + "id": "40540", + "name": "Carcès", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47585000", + "longitude": "6.18257000" + }, + { + "id": "40551", + "name": "Carnoules", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30187000", + "longitude": "6.18733000" + }, + { + "id": "40552", + "name": "Carnoux-en-Provence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25639000", + "longitude": "5.56444000" + }, + { + "id": "40554", + "name": "Caromb", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.11106000", + "longitude": "5.10738000" + }, + { + "id": "40555", + "name": "Carpentras", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05507000", + "longitude": "5.04813000" + }, + { + "id": "40558", + "name": "Carqueiranne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.09495000", + "longitude": "6.07349000" + }, + { + "id": "40561", + "name": "Carros", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.79246000", + "longitude": "7.18745000" + }, + { + "id": "40562", + "name": "Carry-le-Rouet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33139000", + "longitude": "5.15237000" + }, + { + "id": "40571", + "name": "Cassis", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21571000", + "longitude": "5.53855000" + }, + { + "id": "40574", + "name": "Castagniers", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.79134000", + "longitude": "7.23162000" + }, + { + "id": "40579", + "name": "Castellane", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.84707000", + "longitude": "6.51283000" + }, + { + "id": "40609", + "name": "Caumont-sur-Durance", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89356000", + "longitude": "4.94745000" + }, + { + "id": "40617", + "name": "Cavaillon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83125000", + "longitude": "5.03586000" + }, + { + "id": "40618", + "name": "Cavalaire-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.17261000", + "longitude": "6.52959000" + }, + { + "id": "41396", + "name": "Céreste", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.85580000", + "longitude": "5.58685000" + }, + { + "id": "40666", + "name": "Ceyreste", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21352000", + "longitude": "5.62946000" + }, + { + "id": "40800", + "name": "Charleval", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71864000", + "longitude": "5.24546000" + }, + { + "id": "40961", + "name": "Châteauneuf-de-Gadagne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.92683000", + "longitude": "4.94453000" + }, + { + "id": "40964", + "name": "Châteauneuf-du-Pape", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05638000", + "longitude": "4.83244000" + }, + { + "id": "40960", + "name": "Châteauneuf-Grasse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66667000", + "longitude": "6.98333000" + }, + { + "id": "40969", + "name": "Châteauneuf-le-Rouge", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48936000", + "longitude": "5.56921000" + }, + { + "id": "40970", + "name": "Châteauneuf-les-Martigues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38383000", + "longitude": "5.16403000" + }, + { + "id": "40977", + "name": "Châteaurenard", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88169000", + "longitude": "4.85493000" + }, + { + "id": "40892", + "name": "Cheval-Blanc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.80189000", + "longitude": "5.06229000" + }, + { + "id": "40926", + "name": "Chorges", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.54879000", + "longitude": "6.27727000" + }, + { + "id": "40929", + "name": "Chutes-Lavie", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31017000", + "longitude": "5.39464000" + }, + { + "id": "41020", + "name": "Cinq Avenues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30375000", + "longitude": "5.39761000" + }, + { + "id": "41083", + "name": "Cogolin", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25294000", + "longitude": "6.52981000" + }, + { + "id": "41092", + "name": "Collobrières", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23718000", + "longitude": "6.30901000" + }, + { + "id": "41097", + "name": "Colomars", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76320000", + "longitude": "7.22191000" + }, + { + "id": "41155", + "name": "Contes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.81278000", + "longitude": "7.31444000" + }, + { + "id": "41194", + "name": "Cornillon-Confoux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56267000", + "longitude": "5.07162000" + }, + { + "id": "41211", + "name": "Cotignac", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52876000", + "longitude": "6.14955000" + }, + { + "id": "41221", + "name": "Coudoux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55800000", + "longitude": "5.24889000" + }, + { + "id": "41269", + "name": "Courthézon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08760000", + "longitude": "4.88407000" + }, + { + "id": "41358", + "name": "Cucuron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77298000", + "longitude": "5.43858000" + }, + { + "id": "41359", + "name": "Cuers", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23754000", + "longitude": "6.07178000" + }, + { + "id": "41363", + "name": "Cuges-les-Pins", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27607000", + "longitude": "5.69955000" + }, + { + "id": "41634", + "name": "Département des Bouches-du-Rhône", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52366000", + "longitude": "5.42450000" + }, + { + "id": "41647", + "name": "Département du Vaucluse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.00000000", + "longitude": "5.16667000" + }, + { + "id": "41478", + "name": "Digne-les-Bains", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.09252000", + "longitude": "6.23199000" + }, + { + "id": "41566", + "name": "Draguignan", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53692000", + "longitude": "6.46458000" + }, + { + "id": "41569", + "name": "Drap", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75508000", + "longitude": "7.32152000" + }, + { + "id": "41666", + "name": "Embrun", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.56387000", + "longitude": "6.49526000" + }, + { + "id": "41677", + "name": "Ensuès-la-Redonne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35464000", + "longitude": "5.20357000" + }, + { + "id": "41678", + "name": "Entraigues-sur-la-Sorgue", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.00320000", + "longitude": "4.92657000" + }, + { + "id": "41752", + "name": "Eygalières", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76099000", + "longitude": "4.94968000" + }, + { + "id": "41753", + "name": "Eyguières", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69481000", + "longitude": "5.03131000" + }, + { + "id": "41756", + "name": "Eyragues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.84103000", + "longitude": "4.84231000" + }, + { + "id": "41767", + "name": "Falicon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74861000", + "longitude": "7.27856000" + }, + { + "id": "41789", + "name": "Fayence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62570000", + "longitude": "6.69531000" + }, + { + "id": "41817", + "name": "Figanières", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56882000", + "longitude": "6.49722000" + }, + { + "id": "41829", + "name": "Flassans-sur-Issole", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36856000", + "longitude": "6.22154000" + }, + { + "id": "41835", + "name": "Flayosc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53396000", + "longitude": "6.39660000" + }, + { + "id": "41907", + "name": "Fontvieille", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72806000", + "longitude": "4.70953000" + }, + { + "id": "41909", + "name": "Forcalqueiret", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33618000", + "longitude": "6.08346000" + }, + { + "id": "41910", + "name": "Forcalquier", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95927000", + "longitude": "5.77945000" + }, + { + "id": "41919", + "name": "Fos-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43774000", + "longitude": "4.94457000" + }, + { + "id": "41985", + "name": "Fréjus", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43325000", + "longitude": "6.73555000" + }, + { + "id": "41996", + "name": "Fuveau", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45578000", + "longitude": "5.56149000" + }, + { + "id": "42031", + "name": "Gap", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.55858000", + "longitude": "6.07868000" + }, + { + "id": "42048", + "name": "Garéoult", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32833000", + "longitude": "6.04616000" + }, + { + "id": "42037", + "name": "Gardanne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45491000", + "longitude": "5.46913000" + }, + { + "id": "42041", + "name": "Gargas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.90196000", + "longitude": "5.35814000" + }, + { + "id": "42050", + "name": "Gassin", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.22882000", + "longitude": "6.58549000" + }, + { + "id": "42052", + "name": "Gattières", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75951000", + "longitude": "7.17574000" + }, + { + "id": "42293", + "name": "Gémenos", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29751000", + "longitude": "5.62843000" + }, + { + "id": "42092", + "name": "Gignac-la-Nerthe", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39287000", + "longitude": "5.23586000" + }, + { + "id": "42093", + "name": "Gilette", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.84976000", + "longitude": "7.16346000" + }, + { + "id": "42098", + "name": "Ginasservis", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67088000", + "longitude": "5.84911000" + }, + { + "id": "42130", + "name": "Gonfaron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32036000", + "longitude": "6.28929000" + }, + { + "id": "42134", + "name": "Gorbio", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78678000", + "longitude": "7.44375000" + }, + { + "id": "42136", + "name": "Gordes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91290000", + "longitude": "5.19892000" + }, + { + "id": "42148", + "name": "Goult", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86297000", + "longitude": "5.24390000" + }, + { + "id": "42169", + "name": "Grambois", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76233000", + "longitude": "5.58860000" + }, + { + "id": "42184", + "name": "Grans", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60862000", + "longitude": "5.06290000" + }, + { + "id": "42186", + "name": "Grasse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65783000", + "longitude": "6.92537000" + }, + { + "id": "42190", + "name": "Graveson", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.85051000", + "longitude": "4.77361000" + }, + { + "id": "42233", + "name": "Gréasque", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43310000", + "longitude": "5.54449000" + }, + { + "id": "42234", + "name": "Gréoux-les-Bains", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75844000", + "longitude": "5.88351000" + }, + { + "id": "42213", + "name": "Grillon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.39508000", + "longitude": "4.92954000" + }, + { + "id": "42214", + "name": "Grimaud", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27329000", + "longitude": "6.52171000" + }, + { + "id": "42261", + "name": "Guillestre", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.65950000", + "longitude": "6.64948000" + }, + { + "id": "42351", + "name": "Hautes-Alpes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.68055000", + "longitude": "6.28969000" + }, + { + "id": "42448", + "name": "Hyères", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.12038000", + "longitude": "6.12857000" + }, + { + "id": "42510", + "name": "Istres", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.51345000", + "longitude": "4.98747000" + }, + { + "id": "42542", + "name": "Jausiers", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.41705000", + "longitude": "6.72947000" + }, + { + "id": "42558", + "name": "Jonquerettes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.94655000", + "longitude": "4.93286000" + }, + { + "id": "42559", + "name": "Jonquières", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.11603000", + "longitude": "4.89989000" + }, + { + "id": "42570", + "name": "Jouques", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63710000", + "longitude": "5.63672000" + }, + { + "id": "42625", + "name": "L'Estaque", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36385000", + "longitude": "5.30854000" + }, + { + "id": "42632", + "name": "La Barasse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28433000", + "longitude": "5.48664000" + }, + { + "id": "42636", + "name": "La Bastide-des-Jourdans", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78531000", + "longitude": "5.63446000" + }, + { + "id": "42660", + "name": "La Bâtie-Neuve", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.56680000", + "longitude": "6.19587000" + }, + { + "id": "42643", + "name": "La Blancarde", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30047000", + "longitude": "5.40563000" + }, + { + "id": "42649", + "name": "La Bouilladisse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39619000", + "longitude": "5.59307000" + }, + { + "id": "42662", + "name": "La Cabucelle", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33189000", + "longitude": "5.36111000" + }, + { + "id": "42663", + "name": "La Calade", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33895000", + "longitude": "5.35111000" + }, + { + "id": "42666", + "name": "La Capelette", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28086000", + "longitude": "5.40600000" + }, + { + "id": "42670", + "name": "La Celle", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39523000", + "longitude": "6.03750000" + }, + { + "id": "42708", + "name": "La Ciotat", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.17476000", + "longitude": "5.60449000" + }, + { + "id": "42712", + "name": "La Colle-sur-Loup", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68648000", + "longitude": "7.10376000" + }, + { + "id": "42713", + "name": "La Conception", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29174000", + "longitude": "5.39391000" + }, + { + "id": "42721", + "name": "La Crau", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.14962000", + "longitude": "6.07399000" + }, + { + "id": "42722", + "name": "La Croix-Rouge", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33329000", + "longitude": "5.45403000" + }, + { + "id": "42723", + "name": "La Croix-Valmer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20755000", + "longitude": "6.56796000" + }, + { + "id": "42729", + "name": "La Delorme", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34405000", + "longitude": "5.37251000" + }, + { + "id": "42730", + "name": "La Destrousse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37505000", + "longitude": "5.60560000" + }, + { + "id": "42732", + "name": "La Fare-les-Oliviers", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55104000", + "longitude": "5.19430000" + }, + { + "id": "42733", + "name": "La Farlède", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.16866000", + "longitude": "6.04323000" + }, + { + "id": "42755", + "name": "La Fourragère", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30382000", + "longitude": "5.43138000" + }, + { + "id": "42761", + "name": "La Garde", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.12468000", + "longitude": "6.01033000" + }, + { + "id": "42763", + "name": "La Garde-Freinet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31710000", + "longitude": "6.46946000" + }, + { + "id": "42767", + "name": "La Gaude", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72209000", + "longitude": "7.15296000" + }, + { + "id": "42786", + "name": "La Joliette", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30485000", + "longitude": "5.36654000" + }, + { + "id": "42792", + "name": "La Londe-les-Maures", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.13839000", + "longitude": "6.23362000" + }, + { + "id": "42807", + "name": "La Millère", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28128000", + "longitude": "5.49804000" + }, + { + "id": "42813", + "name": "La Motte", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49403000", + "longitude": "6.53519000" + }, + { + "id": "42826", + "name": "La Page", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26627000", + "longitude": "5.37377000" + }, + { + "id": "42828", + "name": "La Panouse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25576000", + "longitude": "5.42963000" + }, + { + "id": "42829", + "name": "La Penne-sur-Huveaune", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28208000", + "longitude": "5.51642000" + }, + { + "id": "42833", + "name": "La Pointe Rouge", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.23853000", + "longitude": "5.37679000" + }, + { + "id": "42834", + "name": "La Pomme", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28987000", + "longitude": "5.44153000" + }, + { + "id": "42857", + "name": "La Roche-des-Arnauds", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.56188000", + "longitude": "5.95541000" + }, + { + "id": "42865", + "name": "La Roque-d’Anthéron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71544000", + "longitude": "5.30973000" + }, + { + "id": "42866", + "name": "La Roquebrussanne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34030000", + "longitude": "5.97603000" + }, + { + "id": "42867", + "name": "La Roquette-sur-Siagne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59873000", + "longitude": "6.95671000" + }, + { + "id": "42868", + "name": "La Rose", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32889000", + "longitude": "5.42859000" + }, + { + "id": "42878", + "name": "La Seyne-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10322000", + "longitude": "5.87816000" + }, + { + "id": "42888", + "name": "La Timone", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28847000", + "longitude": "5.41447000" + }, + { + "id": "42898", + "name": "La Trinité", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74050000", + "longitude": "7.31400000" + }, + { + "id": "42902", + "name": "La Turbie", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74540000", + "longitude": "7.40046000" + }, + { + "id": "42903", + "name": "La Valbarelle", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28494000", + "longitude": "5.45387000" + }, + { + "id": "42904", + "name": "La Valentine", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29757000", + "longitude": "5.48432000" + }, + { + "id": "42905", + "name": "La Valette-du-Var", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.13763000", + "longitude": "5.98317000" + }, + { + "id": "42916", + "name": "La Villette", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31181000", + "longitude": "5.37391000" + }, + { + "id": "42917", + "name": "La Viste", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35936000", + "longitude": "5.35649000" + }, + { + "id": "42956", + "name": "Lagnes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89348000", + "longitude": "5.11454000" + }, + { + "id": "42980", + "name": "Lamanon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69979000", + "longitude": "5.08871000" + }, + { + "id": "42987", + "name": "Lambesc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65382000", + "longitude": "5.26211000" + }, + { + "id": "43056", + "name": "Lançon-Provence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59266000", + "longitude": "5.12789000" + }, + { + "id": "43050", + "name": "Lantosque", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.97446000", + "longitude": "7.31174000" + }, + { + "id": "43059", + "name": "Lapalud", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.30780000", + "longitude": "4.68946000" + }, + { + "id": "43065", + "name": "Laragne-Montéglin", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.31667000", + "longitude": "5.81667000" + }, + { + "id": "43099", + "name": "Lauris", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74716000", + "longitude": "5.31346000" + }, + { + "id": "43701", + "name": "L’Escale", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08162000", + "longitude": "6.02379000" + }, + { + "id": "43702", + "name": "L’Escarène", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83492000", + "longitude": "7.35542000" + }, + { + "id": "43707", + "name": "L’Isle-sur-la-Sorgue", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91971000", + "longitude": "5.05141000" + }, + { + "id": "43125", + "name": "Le Bar-sur-Loup", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70000000", + "longitude": "6.98333000" + }, + { + "id": "43128", + "name": "Le Beausset", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19822000", + "longitude": "5.80267000" + }, + { + "id": "43146", + "name": "Le Broc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.80878000", + "longitude": "7.16882000" + }, + { + "id": "43147", + "name": "Le Brusquet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.16126000", + "longitude": "6.30925000" + }, + { + "id": "43150", + "name": "Le Cabot", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25884000", + "longitude": "5.41729000" + }, + { + "id": "43152", + "name": "Le Camas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29469000", + "longitude": "5.39415000" + }, + { + "id": "43153", + "name": "Le Canet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32611000", + "longitude": "5.37230000" + }, + { + "id": "43154", + "name": "Le Cannet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.57662000", + "longitude": "7.01912000" + }, + { + "id": "43155", + "name": "Le Cannet-des-Maures", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39236000", + "longitude": "6.33966000" + }, + { + "id": "43157", + "name": "Le Castellet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20291000", + "longitude": "5.77657000" + }, + { + "id": "43164", + "name": "Le Chapitre", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30053000", + "longitude": "5.38433000" + }, + { + "id": "43212", + "name": "Le Lavandou", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.13700000", + "longitude": "6.36600000" + }, + { + "id": "43217", + "name": "Le Luc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39453000", + "longitude": "6.31253000" + }, + { + "id": "43225", + "name": "Le Merlan", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33875000", + "longitude": "5.40773000" + }, + { + "id": "43237", + "name": "Le Monêtier-les-Bains", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.97604000", + "longitude": "6.50898000" + }, + { + "id": "43238", + "name": "Le Muy", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.47280000", + "longitude": "6.56637000" + }, + { + "id": "43255", + "name": "Le Pharo", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29140000", + "longitude": "5.35829000" + }, + { + "id": "43262", + "name": "Le Plan-de-la-Tour", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33333000", + "longitude": "6.55000000" + }, + { + "id": "43275", + "name": "Le Pontet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.96119000", + "longitude": "4.86008000" + }, + { + "id": "43283", + "name": "Le Pradet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.10545000", + "longitude": "6.02350000" + }, + { + "id": "43286", + "name": "Le Puy-Sainte-Réparade", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66393000", + "longitude": "5.43493000" + }, + { + "id": "43292", + "name": "Le Redon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24604000", + "longitude": "5.42889000" + }, + { + "id": "43294", + "name": "Le Revest-les-Eaux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.17612000", + "longitude": "5.92667000" + }, + { + "id": "43296", + "name": "Le Rouret", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67873000", + "longitude": "7.01521000" + }, + { + "id": "43297", + "name": "Le Rove", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36987000", + "longitude": "5.25112000" + }, + { + "id": "43314", + "name": "Le Tholonet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52176000", + "longitude": "5.51115000" + }, + { + "id": "43316", + "name": "Le Thor", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.92943000", + "longitude": "4.99543000" + }, + { + "id": "43317", + "name": "Le Thoronet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45174000", + "longitude": "6.30391000" + }, + { + "id": "43320", + "name": "Le Tignet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63979000", + "longitude": "6.84625000" + }, + { + "id": "43326", + "name": "Le Val", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43928000", + "longitude": "6.07335000" + }, + { + "id": "43356", + "name": "Les Accates", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29989000", + "longitude": "5.49726000" + }, + { + "id": "43364", + "name": "Les Arcs", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46328000", + "longitude": "6.47876000" + }, + { + "id": "43365", + "name": "Les Arnavaux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33506000", + "longitude": "5.37969000" + }, + { + "id": "43370", + "name": "Les Aygalades", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35711000", + "longitude": "5.37116000" + }, + { + "id": "43371", + "name": "Les Baumettes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.22641000", + "longitude": "5.41642000" + }, + { + "id": "43373", + "name": "Les Caillols", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30221000", + "longitude": "5.44811000" + }, + { + "id": "43374", + "name": "Les Camoins", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30607000", + "longitude": "5.51745000" + }, + { + "id": "43376", + "name": "Les Chartreux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31112000", + "longitude": "5.40480000" + }, + { + "id": "43381", + "name": "Les Crottes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32302000", + "longitude": "5.36809000" + }, + { + "id": "43393", + "name": "Les Grands Carmes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30038000", + "longitude": "5.37275000" + }, + { + "id": "43413", + "name": "Les Médecins", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35417000", + "longitude": "5.45483000" + }, + { + "id": "43414", + "name": "Les Mées", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.02961000", + "longitude": "5.97635000" + }, + { + "id": "43416", + "name": "Les Olives", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32393000", + "longitude": "5.45840000" + }, + { + "id": "43420", + "name": "Les Pennes-Mirabeau", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41012000", + "longitude": "5.30838000" + }, + { + "id": "43431", + "name": "Les Trois-Lucs", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31371000", + "longitude": "5.46248000" + }, + { + "id": "43450", + "name": "Levens", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.85948000", + "longitude": "7.22583000" + }, + { + "id": "43536", + "name": "Lodi", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28663000", + "longitude": "5.38882000" + }, + { + "id": "43586", + "name": "Lorgues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.49325000", + "longitude": "6.36150000" + }, + { + "id": "43588", + "name": "Loriol-du-Comtat", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.07653000", + "longitude": "5.00065000" + }, + { + "id": "43609", + "name": "Lourmarin", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76385000", + "longitude": "5.36264000" + }, + { + "id": "43639", + "name": "Lucéram", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.88293000", + "longitude": "7.35988000" + }, + { + "id": "43733", + "name": "Maillane", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83289000", + "longitude": "4.78209000" + }, + { + "id": "43751", + "name": "Malaucène", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.17393000", + "longitude": "5.13213000" + }, + { + "id": "43754", + "name": "Malemort-du-Comtat", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.02096000", + "longitude": "5.15961000" + }, + { + "id": "43760", + "name": "Malijai", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.04600000", + "longitude": "6.03041000" + }, + { + "id": "43763", + "name": "Mallemoisson", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.04687000", + "longitude": "6.12557000" + }, + { + "id": "43764", + "name": "Mallemort", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73172000", + "longitude": "5.17945000" + }, + { + "id": "43765", + "name": "Malpassé", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.32170000", + "longitude": "5.41551000" + }, + { + "id": "43773", + "name": "Mandelieu-la-Napoule", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.54577000", + "longitude": "6.93734000" + }, + { + "id": "43777", + "name": "Mane", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93795000", + "longitude": "5.76718000" + }, + { + "id": "43780", + "name": "Manosque", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82883000", + "longitude": "5.78688000" + }, + { + "id": "43838", + "name": "Marignane", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41727000", + "longitude": "5.21462000" + }, + { + "id": "43883", + "name": "Marseille", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29695000", + "longitude": "5.38107000" + }, + { + "id": "43884", + "name": "Marseille 01", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29814000", + "longitude": "5.38407000" + }, + { + "id": "43885", + "name": "Marseille 02", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29664000", + "longitude": "5.37034000" + }, + { + "id": "43886", + "name": "Marseille 03", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30257000", + "longitude": "5.37583000" + }, + { + "id": "43887", + "name": "Marseille 04", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30213000", + "longitude": "5.40141000" + }, + { + "id": "43888", + "name": "Marseille 05", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29551000", + "longitude": "5.40055000" + }, + { + "id": "43889", + "name": "Marseille 06", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28764000", + "longitude": "5.37918000" + }, + { + "id": "43890", + "name": "Marseille 07", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28289000", + "longitude": "5.36021000" + }, + { + "id": "43891", + "name": "Marseille 08", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27083000", + "longitude": "5.38210000" + }, + { + "id": "43892", + "name": "Marseille 09", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25433000", + "longitude": "5.40570000" + }, + { + "id": "43893", + "name": "Marseille 10", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27889000", + "longitude": "5.41523000" + }, + { + "id": "43894", + "name": "Marseille 11", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29070000", + "longitude": "5.43840000" + }, + { + "id": "43895", + "name": "Marseille 12", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29614000", + "longitude": "5.43617000" + }, + { + "id": "43896", + "name": "Marseille 13", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31856000", + "longitude": "5.40836000" + }, + { + "id": "43897", + "name": "Marseille 14", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34447000", + "longitude": "5.38004000" + }, + { + "id": "43898", + "name": "Marseille 15", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37224000", + "longitude": "5.35386000" + }, + { + "id": "43899", + "name": "Marseille 16", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35982000", + "longitude": "5.33421000" + }, + { + "id": "43900", + "name": "Marseille Bompard", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28120000", + "longitude": "5.36081000" + }, + { + "id": "43901", + "name": "Marseille Endoume", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28320000", + "longitude": "5.35159000" + }, + { + "id": "43902", + "name": "Marseille Prefecture", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29092000", + "longitude": "5.37901000" + }, + { + "id": "43903", + "name": "Marseille Roucas-Blanc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27652000", + "longitude": "5.36519000" + }, + { + "id": "43904", + "name": "Marseille Saint-Victor", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28955000", + "longitude": "5.36845000" + }, + { + "id": "43905", + "name": "Marseille Vauban", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28408000", + "longitude": "5.37540000" + }, + { + "id": "43916", + "name": "Martigues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40735000", + "longitude": "5.05526000" + }, + { + "id": "43943", + "name": "Maubec", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.84379000", + "longitude": "5.13919000" + }, + { + "id": "43959", + "name": "Maussane-les-Alpilles", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72236000", + "longitude": "4.80497000" + }, + { + "id": "43972", + "name": "Mazan", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05696000", + "longitude": "5.12680000" + }, + { + "id": "43973", + "name": "Mazargues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24622000", + "longitude": "5.39788000" + }, + { + "id": "44462", + "name": "Ménerbes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83242000", + "longitude": "5.20597000" + }, + { + "id": "44468", + "name": "Méounes-lès-Montrieux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28102000", + "longitude": "5.96986000" + }, + { + "id": "44475", + "name": "Mérindol", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.75516000", + "longitude": "5.20357000" + }, + { + "id": "44003", + "name": "Menpenti", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28198000", + "longitude": "5.39607000" + }, + { + "id": "44007", + "name": "Menton", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77649000", + "longitude": "7.50435000" + }, + { + "id": "44059", + "name": "Meyrargues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63677000", + "longitude": "5.52679000" + }, + { + "id": "44060", + "name": "Meyreuil", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48780000", + "longitude": "5.49574000" + }, + { + "id": "44079", + "name": "Mimet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41427000", + "longitude": "5.50579000" + }, + { + "id": "44087", + "name": "Miramas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.58508000", + "longitude": "5.00268000" + }, + { + "id": "44125", + "name": "Mollégès", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.80703000", + "longitude": "4.94934000" + }, + { + "id": "44139", + "name": "Mondragon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.23831000", + "longitude": "4.71286000" + }, + { + "id": "44186", + "name": "Montauroux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61823000", + "longitude": "6.76528000" + }, + { + "id": "44229", + "name": "Monteux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.03618000", + "longitude": "4.99630000" + }, + { + "id": "44234", + "name": "Montfavet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93335000", + "longitude": "4.87342000" + }, + { + "id": "44238", + "name": "Montferrat", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.61196000", + "longitude": "6.48093000" + }, + { + "id": "44296", + "name": "Montolivet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31715000", + "longitude": "5.42350000" + }, + { + "id": "44304", + "name": "Montredon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24016000", + "longitude": "5.36629000" + }, + { + "id": "44355", + "name": "Morières-lès-Avignon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.94030000", + "longitude": "4.90110000" + }, + { + "id": "44359", + "name": "Mormoiron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06810000", + "longitude": "5.18312000" + }, + { + "id": "44362", + "name": "Mornas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.20242000", + "longitude": "4.72763000" + }, + { + "id": "44381", + "name": "Mouans-Sartoux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62101000", + "longitude": "6.97139000" + }, + { + "id": "44386", + "name": "Mougins", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60068000", + "longitude": "6.99523000" + }, + { + "id": "44400", + "name": "Mouret", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36126000", + "longitude": "5.43006000" + }, + { + "id": "44401", + "name": "Mouriès", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68997000", + "longitude": "4.87089000" + }, + { + "id": "44504", + "name": "Nans-les-Pins", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37066000", + "longitude": "5.78189000" + }, + { + "id": "44693", + "name": "Néoules", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30844000", + "longitude": "6.00798000" + }, + { + "id": "44587", + "name": "Nice", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70313000", + "longitude": "7.26608000" + }, + { + "id": "44608", + "name": "Noailles", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29604000", + "longitude": "5.37959000" + }, + { + "id": "44649", + "name": "Notre-Dame du Mont", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29293000", + "longitude": "5.38203000" + }, + { + "id": "44648", + "name": "Notre-Dame Limite", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38165000", + "longitude": "5.36269000" + }, + { + "id": "44666", + "name": "Noves", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.87736000", + "longitude": "4.90248000" + }, + { + "id": "44735", + "name": "Ollioules", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.13990000", + "longitude": "5.84766000" + }, + { + "id": "44749", + "name": "Opéra", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29401000", + "longitude": "5.37610000" + }, + { + "id": "44747", + "name": "Opio", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66862000", + "longitude": "6.98212000" + }, + { + "id": "44748", + "name": "Oppède le Vieux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.82844000", + "longitude": "5.16132000" + }, + { + "id": "44752", + "name": "Oraison", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.91726000", + "longitude": "5.91836000" + }, + { + "id": "44753", + "name": "Orange", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.13806000", + "longitude": "4.81025000" + }, + { + "id": "44764", + "name": "Orgon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.79108000", + "longitude": "5.03869000" + }, + { + "id": "44831", + "name": "Palais de Justice", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28657000", + "longitude": "5.37603000" + }, + { + "id": "44834", + "name": "Palama", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36566000", + "longitude": "5.44427000" + }, + { + "id": "44846", + "name": "Paradou", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71699000", + "longitude": "4.78604000" + }, + { + "id": "45345", + "name": "Pégomas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59662000", + "longitude": "6.93211000" + }, + { + "id": "45346", + "name": "Pélissanne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63260000", + "longitude": "5.15220000" + }, + { + "id": "45351", + "name": "Périer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27755000", + "longitude": "5.37925000" + }, + { + "id": "44882", + "name": "Peille", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.80296000", + "longitude": "7.40191000" + }, + { + "id": "44883", + "name": "Peillon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.77861000", + "longitude": "7.38278000" + }, + { + "id": "44885", + "name": "Peipin", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.13778000", + "longitude": "5.95722000" + }, + { + "id": "44898", + "name": "Pernes-les-Fontaines", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.99802000", + "longitude": "5.05906000" + }, + { + "id": "44911", + "name": "Pertuis", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69415000", + "longitude": "5.50291000" + }, + { + "id": "44923", + "name": "Peymeinade", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64244000", + "longitude": "6.87583000" + }, + { + "id": "44924", + "name": "Peynier", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44837000", + "longitude": "5.64139000" + }, + { + "id": "44925", + "name": "Peypin", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38503000", + "longitude": "5.57788000" + }, + { + "id": "44934", + "name": "Peyrolles-en-Provence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64545000", + "longitude": "5.58492000" + }, + { + "id": "44935", + "name": "Peyruis", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.02880000", + "longitude": "5.94032000" + }, + { + "id": "44953", + "name": "Pierrefeu-du-Var", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.22411000", + "longitude": "6.14536000" + }, + { + "id": "44963", + "name": "Pierrevert", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.81137000", + "longitude": "5.74958000" + }, + { + "id": "44969", + "name": "Pignans", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30071000", + "longitude": "6.22650000" + }, + { + "id": "44974", + "name": "Piolenc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.17765000", + "longitude": "4.76157000" + }, + { + "id": "44996", + "name": "Plan-d'Aups-Sainte-Baume", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33333000", + "longitude": "5.71667000" + }, + { + "id": "44997", + "name": "Plan-de-Cuques", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34753000", + "longitude": "5.46398000" + }, + { + "id": "45163", + "name": "Pont de Vivaux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27604000", + "longitude": "5.41586000" + }, + { + "id": "45233", + "name": "Port-de-Bouc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40657000", + "longitude": "4.98090000" + }, + { + "id": "45229", + "name": "Port-Saint-Louis-du-Rhône", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38734000", + "longitude": "4.82609000" + }, + { + "id": "45266", + "name": "Pourrières", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50611000", + "longitude": "5.73452000" + }, + { + "id": "45316", + "name": "Puget-sur-Argens", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45576000", + "longitude": "6.68519000" + }, + { + "id": "45314", + "name": "Puget-Théniers", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95598000", + "longitude": "6.89378000" + }, + { + "id": "45315", + "name": "Puget-Ville", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28958000", + "longitude": "6.13612000" + }, + { + "id": "45339", + "name": "Puyloubier", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52522000", + "longitude": "5.67650000" + }, + { + "id": "45421", + "name": "Ramatuelle", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.21599000", + "longitude": "6.61156000" + }, + { + "id": "45690", + "name": "Régusse", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65540000", + "longitude": "6.13186000" + }, + { + "id": "45449", + "name": "Reillanne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.87899000", + "longitude": "5.65919000" + }, + { + "id": "45486", + "name": "Rians", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.60691000", + "longitude": "5.75696000" + }, + { + "id": "45509", + "name": "Riez", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.81810000", + "longitude": "6.09268000" + }, + { + "id": "45537", + "name": "Robion", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.84697000", + "longitude": "5.11017000" + }, + { + "id": "45538", + "name": "Rocbaron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30904000", + "longitude": "6.07941000" + }, + { + "id": "45558", + "name": "Rognac", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48761000", + "longitude": "5.23387000" + }, + { + "id": "45559", + "name": "Rognes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.66378000", + "longitude": "5.34733000" + }, + { + "id": "45560", + "name": "Rognonas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.89993000", + "longitude": "4.80369000" + }, + { + "id": "45588", + "name": "Roquebillière", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.01203000", + "longitude": "7.30727000" + }, + { + "id": "45589", + "name": "Roquebrune-Cap-Martin", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.76408000", + "longitude": "7.48207000" + }, + { + "id": "45590", + "name": "Roquebrune-sur-Argens", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44313000", + "longitude": "6.63772000" + }, + { + "id": "45593", + "name": "Roquefort-la-Bédoule", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24883000", + "longitude": "5.59015000" + }, + { + "id": "45597", + "name": "Roquevaire", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35021000", + "longitude": "5.60414000" + }, + { + "id": "45618", + "name": "Rouet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27808000", + "longitude": "5.39158000" + }, + { + "id": "45624", + "name": "Rougiers", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39233000", + "longitude": "5.85112000" + }, + { + "id": "45637", + "name": "Rousset", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.48307000", + "longitude": "5.61959000" + }, + { + "id": "45638", + "name": "Roussillon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.90239000", + "longitude": "5.29274000" + }, + { + "id": "45699", + "name": "Sablet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.19265000", + "longitude": "5.00566000" + }, + { + "id": "45715", + "name": "Saignon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.86308000", + "longitude": "5.42838000" + }, + { + "id": "45754", + "name": "Saint-Andiol", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83484000", + "longitude": "4.94453000" + }, + { + "id": "45755", + "name": "Saint-André", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.35630000", + "longitude": "5.34335000" + }, + { + "id": "45761", + "name": "Saint-André-de-la-Roche", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.73333000", + "longitude": "7.28333000" + }, + { + "id": "45770", + "name": "Saint-Antoine", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37087000", + "longitude": "5.35888000" + }, + { + "id": "46650", + "name": "Saint-Étienne-de-Tinée", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.25643000", + "longitude": "6.92499000" + }, + { + "id": "46654", + "name": "Saint-Étienne-du-Grès", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78045000", + "longitude": "4.72534000" + }, + { + "id": "45803", + "name": "Saint-Barnabé", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30000000", + "longitude": "5.41667000" + }, + { + "id": "45805", + "name": "Saint-Barthélémy", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33105000", + "longitude": "5.40241000" + }, + { + "id": "45817", + "name": "Saint-Bonnet-en-Champsaur", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.68333000", + "longitude": "6.08333000" + }, + { + "id": "45837", + "name": "Saint-Cannat", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.62132000", + "longitude": "5.29810000" + }, + { + "id": "45893", + "name": "Saint-Cézaire-sur-Siagne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65015000", + "longitude": "6.79219000" + }, + { + "id": "45845", + "name": "Saint-Chaffrey", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.92555000", + "longitude": "6.60768000" + }, + { + "id": "45846", + "name": "Saint-Chamas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.55048000", + "longitude": "5.03501000" + }, + { + "id": "45849", + "name": "Saint-Charles", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30199000", + "longitude": "5.38405000" + }, + { + "id": "45889", + "name": "Saint-Cyr-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18048000", + "longitude": "5.70120000" + }, + { + "id": "45905", + "name": "Saint-Didier", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.00424000", + "longitude": "5.11053000" + }, + { + "id": "46037", + "name": "Saint-Giniez", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26946000", + "longitude": "5.38566000" + }, + { + "id": "46047", + "name": "Saint-Henri", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.36151000", + "longitude": "5.33069000" + }, + { + "id": "46166", + "name": "Saint-Jérôme", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33404000", + "longitude": "5.41733000" + }, + { + "id": "46082", + "name": "Saint-Jean du Désert", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29331000", + "longitude": "5.42134000" + }, + { + "id": "46085", + "name": "Saint-Jean-Cap-Ferrat", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68843000", + "longitude": "7.33361000" + }, + { + "id": "46122", + "name": "Saint-Jeannet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74718000", + "longitude": "7.14299000" + }, + { + "id": "46128", + "name": "Saint-Joseph", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34617000", + "longitude": "5.37976000" + }, + { + "id": "46136", + "name": "Saint-Julien", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31334000", + "longitude": "5.44935000" + }, + { + "id": "46150", + "name": "Saint-Just", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31700000", + "longitude": "5.40587000" + }, + { + "id": "46167", + "name": "Saint-Lambert", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28606000", + "longitude": "5.36000000" + }, + { + "id": "46185", + "name": "Saint-Laurent-du-Var", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.67323000", + "longitude": "7.19000000" + }, + { + "id": "46191", + "name": "Saint-Lazare", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30545000", + "longitude": "5.37443000" + }, + { + "id": "46197", + "name": "Saint-Louis", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34809000", + "longitude": "5.35463000" + }, + { + "id": "46199", + "name": "Saint-Loup", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27766000", + "longitude": "5.43133000" + }, + { + "id": "46235", + "name": "Saint-Mandrier-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.07800000", + "longitude": "5.92900000" + }, + { + "id": "46239", + "name": "Saint-Marc-Jaumegarde", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.54718000", + "longitude": "5.52280000" + }, + { + "id": "46242", + "name": "Saint-Marcel", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28745000", + "longitude": "5.46604000" + }, + { + "id": "46270", + "name": "Saint-Martin-de-Crau", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63955000", + "longitude": "4.81270000" + }, + { + "id": "46276", + "name": "Saint-Martin-de-Queyrières", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.82319000", + "longitude": "6.57901000" + }, + { + "id": "46292", + "name": "Saint-Martin-du-Var", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.81846000", + "longitude": "7.19062000" + }, + { + "id": "46266", + "name": "Saint-Martin-Vésubie", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.06892000", + "longitude": "7.25583000" + }, + { + "id": "46322", + "name": "Saint-Mauront", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.31552000", + "longitude": "5.37538000" + }, + { + "id": "46325", + "name": "Saint-Maximin-la-Sainte-Baume", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44813000", + "longitude": "5.86081000" + }, + { + "id": "46329", + "name": "Saint-Menet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.28997000", + "longitude": "5.50427000" + }, + { + "id": "46339", + "name": "Saint-Michel-l’Observatoire", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.90977000", + "longitude": "5.71584000" + }, + { + "id": "46343", + "name": "Saint-Mitre", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34640000", + "longitude": "5.42274000" + }, + { + "id": "46344", + "name": "Saint-Mitre-les-Remparts", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45503000", + "longitude": "5.01429000" + }, + { + "id": "46410", + "name": "Saint-Paul-de-Vence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70000000", + "longitude": "7.11667000" + }, + { + "id": "46413", + "name": "Saint-Paul-en-Forêt", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56709000", + "longitude": "6.69206000" + }, + { + "id": "46428", + "name": "Saint-Pierre", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29282000", + "longitude": "5.40682000" + }, + { + "id": "46494", + "name": "Saint-Raphaël", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42332000", + "longitude": "6.77350000" + }, + { + "id": "46511", + "name": "Saint-Rémy-de-Provence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78848000", + "longitude": "4.83167000" + }, + { + "id": "46522", + "name": "Saint-Saturnin-lès-Apt", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.93333000", + "longitude": "5.38333000" + }, + { + "id": "46523", + "name": "Saint-Saturnin-lès-Avignon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95501000", + "longitude": "4.92548000" + }, + { + "id": "46543", + "name": "Saint-Savournin", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40848000", + "longitude": "5.52690000" + }, + { + "id": "46588", + "name": "Saint-Tronc", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.27093000", + "longitude": "5.42285000" + }, + { + "id": "46589", + "name": "Saint-Tropez", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26764000", + "longitude": "6.64049000" + }, + { + "id": "46600", + "name": "Saint-Vallier-de-Thiey", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.69841000", + "longitude": "6.84779000" + }, + { + "id": "46610", + "name": "Saint-Victoret", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.41957000", + "longitude": "5.23396000" + }, + { + "id": "46634", + "name": "Saint-Zacharie", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.38521000", + "longitude": "5.70808000" + }, + { + "id": "46661", + "name": "Sainte-Agnès", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.80054000", + "longitude": "7.46150000" + }, + { + "id": "46662", + "name": "Sainte-Anastasie-sur-Issole", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.34266000", + "longitude": "6.12493000" + }, + { + "id": "46663", + "name": "Sainte-Anne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.25720000", + "longitude": "5.39377000" + }, + { + "id": "46675", + "name": "Sainte-Cécile-les-Vignes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.24542000", + "longitude": "4.88613000" + }, + { + "id": "46705", + "name": "Sainte-Marguerite", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.26196000", + "longitude": "5.40125000" + }, + { + "id": "46715", + "name": "Sainte-Marthe", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33449000", + "longitude": "5.39112000" + }, + { + "id": "46718", + "name": "Sainte-Maxime", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.30907000", + "longitude": "6.63849000" + }, + { + "id": "46732", + "name": "Sainte-Tulle", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78619000", + "longitude": "5.76513000" + }, + { + "id": "46735", + "name": "Saintes-Maries-de-la-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45214000", + "longitude": "4.42913000" + }, + { + "id": "46745", + "name": "Salernes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.56350000", + "longitude": "6.23386000" + }, + { + "id": "46766", + "name": "Salon-de-Provence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64229000", + "longitude": "5.09478000" + }, + { + "id": "46780", + "name": "Sanary-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.11985000", + "longitude": "5.80155000" + }, + { + "id": "46816", + "name": "Sarrians", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08312000", + "longitude": "4.97111000" + }, + { + "id": "46844", + "name": "Sault", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08968000", + "longitude": "5.40836000" + }, + { + "id": "46856", + "name": "Sausset-les-Pins", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.33136000", + "longitude": "5.10431000" + }, + { + "id": "47139", + "name": "Sénas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.74375000", + "longitude": "5.07800000" + }, + { + "id": "47145", + "name": "Sérignan-du-Comtat", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.18915000", + "longitude": "4.84379000" + }, + { + "id": "46923", + "name": "Seillans", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63623000", + "longitude": "6.64332000" + }, + { + "id": "46951", + "name": "Septèmes-les-Vallons", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.39834000", + "longitude": "5.36596000" + }, + { + "id": "46966", + "name": "Serres", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.42753000", + "longitude": "5.71458000" + }, + { + "id": "46982", + "name": "Seyne-les-Alpes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.35042000", + "longitude": "6.35634000" + }, + { + "id": "46992", + "name": "Signes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29080000", + "longitude": "5.86284000" + }, + { + "id": "47002", + "name": "Simiane-Collongue", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.43067000", + "longitude": "5.43454000" + }, + { + "id": "47009", + "name": "Sisteron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.19002000", + "longitude": "5.94643000" + }, + { + "id": "47010", + "name": "Six-Fours-les-Plages", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.09174000", + "longitude": "5.82465000" + }, + { + "id": "47030", + "name": "Solliès-Pont", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.19009000", + "longitude": "6.04115000" + }, + { + "id": "47031", + "name": "Solliès-Toucas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20579000", + "longitude": "6.02485000" + }, + { + "id": "47032", + "name": "Solliès-Ville", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.18256000", + "longitude": "6.03849000" + }, + { + "id": "47046", + "name": "Sorgues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.01023000", + "longitude": "4.87381000" + }, + { + "id": "47048", + "name": "Sormiou", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.20959000", + "longitude": "5.41872000" + }, + { + "id": "47052", + "name": "Sospel", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.87792000", + "longitude": "7.44788000" + }, + { + "id": "47095", + "name": "Spéracèdes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.64850000", + "longitude": "6.85889000" + }, + { + "id": "47155", + "name": "Taillades", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83762000", + "longitude": "5.08951000" + }, + { + "id": "47164", + "name": "Tallard", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.46200000", + "longitude": "6.05205000" + }, + { + "id": "47172", + "name": "Tanneron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59057000", + "longitude": "6.87541000" + }, + { + "id": "47174", + "name": "Taradeau", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45444000", + "longitude": "6.42729000" + }, + { + "id": "47176", + "name": "Tarascon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.80583000", + "longitude": "4.66028000" + }, + { + "id": "47202", + "name": "Tende", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.08752000", + "longitude": "7.59366000" + }, + { + "id": "47270", + "name": "Théoule-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50780000", + "longitude": "6.94080000" + }, + { + "id": "47229", + "name": "Thiers", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.29748000", + "longitude": "5.38198000" + }, + { + "id": "47312", + "name": "Toulon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.12442000", + "longitude": "5.92836000" + }, + { + "id": "47331", + "name": "Tourrette-Levens", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.78640000", + "longitude": "7.27598000" + }, + { + "id": "47332", + "name": "Tourrettes-sur-Loup", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71569000", + "longitude": "7.05892000" + }, + { + "id": "47335", + "name": "Tourves", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.40803000", + "longitude": "5.92392000" + }, + { + "id": "47348", + "name": "Trans-en-Provence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.50326000", + "longitude": "6.48641000" + }, + { + "id": "47366", + "name": "Trets", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.44818000", + "longitude": "5.68328000" + }, + { + "id": "47421", + "name": "Uchaux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.21667000", + "longitude": "4.80000000" + }, + { + "id": "47451", + "name": "Vacqueyras", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.13835000", + "longitude": "4.98332000" + }, + { + "id": "47459", + "name": "Vaison-la-Romaine", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.23896000", + "longitude": "5.07461000" + }, + { + "id": "47467", + "name": "Valbonne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.63292000", + "longitude": "6.99911000" + }, + { + "id": "47476", + "name": "Valensole", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.83766000", + "longitude": "5.98392000" + }, + { + "id": "47485", + "name": "Vallauris", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.57803000", + "longitude": "7.05451000" + }, + { + "id": "47500", + "name": "Valréas", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.38490000", + "longitude": "4.99125000" + }, + { + "id": "47506", + "name": "Var", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.45860000", + "longitude": "6.29145000" + }, + { + "id": "47554", + "name": "Vedène", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.97744000", + "longitude": "4.90428000" + }, + { + "id": "47560", + "name": "Velaux", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.52839000", + "longitude": "5.25661000" + }, + { + "id": "47561", + "name": "Velleron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.95742000", + "longitude": "5.02936000" + }, + { + "id": "47564", + "name": "Venasque", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.99595000", + "longitude": "5.14666000" + }, + { + "id": "47565", + "name": "Vence", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72254000", + "longitude": "7.11183000" + }, + { + "id": "47580", + "name": "Venelles", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.59859000", + "longitude": "5.47977000" + }, + { + "id": "47587", + "name": "Ventabren", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.53847000", + "longitude": "5.29541000" + }, + { + "id": "47596", + "name": "Verduron", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.37063000", + "longitude": "5.34513000" + }, + { + "id": "47627", + "name": "Vernègues", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.68575000", + "longitude": "5.17156000" + }, + { + "id": "47652", + "name": "Veynes", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.53406000", + "longitude": "5.82321000" + }, + { + "id": "47673", + "name": "Vidauban", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.42721000", + "longitude": "6.43185000" + }, + { + "id": "47674", + "name": "Vieille Chapelle", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.24963000", + "longitude": "5.38048000" + }, + { + "id": "47709", + "name": "Villar-Saint-Pancrace", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.87318000", + "longitude": "6.62669000" + }, + { + "id": "47728", + "name": "Villecroze", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.58223000", + "longitude": "6.27587000" + }, + { + "id": "47740", + "name": "Villefranche-sur-Mer", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.70392000", + "longitude": "7.31088000" + }, + { + "id": "47747", + "name": "Villelaure", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.71075000", + "longitude": "5.43422000" + }, + { + "id": "47760", + "name": "Villeneuve", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.94488000", + "longitude": "6.56545000" + }, + { + "id": "47762", + "name": "Villeneuve-Loubet", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.65790000", + "longitude": "7.12233000" + }, + { + "id": "47814", + "name": "Villes-sur-Auzon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.05669000", + "longitude": "5.23430000" + }, + { + "id": "47849", + "name": "Vinon-sur-Verdon", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.72484000", + "longitude": "5.81168000" + }, + { + "id": "47854", + "name": "Violès", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.16176000", + "longitude": "4.95483000" + }, + { + "id": "47869", + "name": "Visan", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.31468000", + "longitude": "4.95033000" + }, + { + "id": "47870", + "name": "Vitrolles", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.46000000", + "longitude": "5.24861000" + }, + { + "id": "47897", + "name": "Volonne", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "44.11039000", + "longitude": "6.01424000" + }, + { + "id": "47900", + "name": "Volx", + "state_id": 4812, + "state_code": "PAC", + "country_id": 75, + "country_code": "FR", + "latitude": "43.87787000", + "longitude": "5.84148000" + }, + { + "id": "48131", + "name": "Cocobeach", + "state_id": 2727, + "state_code": "1", + "country_id": 79, + "country_code": "GA", + "latitude": "1.00019000", + "longitude": "9.58229000" + }, + { + "id": "48138", + "name": "Libreville", + "state_id": 2727, + "state_code": "1", + "country_id": 79, + "country_code": "GA", + "latitude": "0.39241000", + "longitude": "9.45356000" + }, + { + "id": "48150", + "name": "Ntoum", + "state_id": 2727, + "state_code": "1", + "country_id": 79, + "country_code": "GA", + "latitude": "0.39051000", + "longitude": "9.76096000" + }, + { + "id": "48133", + "name": "Franceville", + "state_id": 2726, + "state_code": "2", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.63333000", + "longitude": "13.58357000" + }, + { + "id": "48139", + "name": "Lékoni", + "state_id": 2726, + "state_code": "2", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.58431000", + "longitude": "14.25905000" + }, + { + "id": "48145", + "name": "Moanda", + "state_id": 2726, + "state_code": "2", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.56652000", + "longitude": "13.19870000" + }, + { + "id": "48147", + "name": "Mounana", + "state_id": 2726, + "state_code": "2", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.40850000", + "longitude": "13.15857000" + }, + { + "id": "48151", + "name": "Okondja", + "state_id": 2726, + "state_code": "2", + "country_id": 79, + "country_code": "GA", + "latitude": "-0.65487000", + "longitude": "13.67533000" + }, + { + "id": "48136", + "name": "Lambaréné", + "state_id": 2730, + "state_code": "3", + "country_id": 79, + "country_code": "GA", + "latitude": "-0.70010000", + "longitude": "10.24055000" + }, + { + "id": "48149", + "name": "Ndjolé", + "state_id": 2730, + "state_code": "3", + "country_id": 79, + "country_code": "GA", + "latitude": "-0.17827000", + "longitude": "10.76488000" + }, + { + "id": "48132", + "name": "Fougamou", + "state_id": 2731, + "state_code": "4", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.21544000", + "longitude": "10.58378000" + }, + { + "id": "48142", + "name": "Mbigou", + "state_id": 2731, + "state_code": "4", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.90046000", + "longitude": "11.90600000" + }, + { + "id": "48143", + "name": "Mimongo", + "state_id": 2731, + "state_code": "4", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.61952000", + "longitude": "11.60675000" + }, + { + "id": "48146", + "name": "Mouila", + "state_id": 2731, + "state_code": "4", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.86846000", + "longitude": "11.05594000" + }, + { + "id": "48148", + "name": "Ndendé", + "state_id": 2731, + "state_code": "4", + "country_id": 79, + "country_code": "GA", + "latitude": "-2.40077000", + "longitude": "11.35813000" + }, + { + "id": "48141", + "name": "Mayumba", + "state_id": 2725, + "state_code": "5", + "country_id": 79, + "country_code": "GA", + "latitude": "-3.43198000", + "longitude": "10.65540000" + }, + { + "id": "48155", + "name": "Tchibanga", + "state_id": 2725, + "state_code": "5", + "country_id": 79, + "country_code": "GA", + "latitude": "-2.93323000", + "longitude": "10.98178000" + }, + { + "id": "48130", + "name": "Booué", + "state_id": 2724, + "state_code": "6", + "country_id": 79, + "country_code": "GA", + "latitude": "-0.09207000", + "longitude": "11.93846000" + }, + { + "id": "48140", + "name": "Makokou", + "state_id": 2724, + "state_code": "6", + "country_id": 79, + "country_code": "GA", + "latitude": "0.57381000", + "longitude": "12.86419000" + }, + { + "id": "48156", + "name": "Zadie", + "state_id": 2724, + "state_code": "6", + "country_id": 79, + "country_code": "GA", + "latitude": "0.92582000", + "longitude": "13.90813000" + }, + { + "id": "48135", + "name": "Koulamoutou", + "state_id": 2729, + "state_code": "7", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.13667000", + "longitude": "12.46399000" + }, + { + "id": "48137", + "name": "Lastoursville", + "state_id": 2729, + "state_code": "7", + "country_id": 79, + "country_code": "GA", + "latitude": "-0.81742000", + "longitude": "12.70818000" + }, + { + "id": "48134", + "name": "Gamba", + "state_id": 2728, + "state_code": "8", + "country_id": 79, + "country_code": "GA", + "latitude": "-2.65000000", + "longitude": "10.00000000" + }, + { + "id": "48152", + "name": "Omboué", + "state_id": 2728, + "state_code": "8", + "country_id": 79, + "country_code": "GA", + "latitude": "-1.57464000", + "longitude": "9.26184000" + }, + { + "id": "48154", + "name": "Port-Gentil", + "state_id": 2728, + "state_code": "8", + "country_id": 79, + "country_code": "GA", + "latitude": "-0.71933000", + "longitude": "8.78151000" + }, + { + "id": "48129", + "name": "Bitam", + "state_id": 2723, + "state_code": "9", + "country_id": 79, + "country_code": "GA", + "latitude": "2.07597000", + "longitude": "11.50065000" + }, + { + "id": "48144", + "name": "Mitzic", + "state_id": 2723, + "state_code": "9", + "country_id": 79, + "country_code": "GA", + "latitude": "0.78205000", + "longitude": "11.54904000" + }, + { + "id": "48153", + "name": "Oyem", + "state_id": 2723, + "state_code": "9", + "country_id": 79, + "country_code": "GA", + "latitude": "1.59950000", + "longitude": "11.57933000" + }, + { + "id": "52219", + "name": "Bakau", + "state_id": 2666, + "state_code": "B", + "country_id": 80, + "country_code": "GM", + "latitude": "13.47806000", + "longitude": "-16.68194000" + }, + { + "id": "52221", + "name": "Banjul", + "state_id": 2666, + "state_code": "B", + "country_id": 80, + "country_code": "GM", + "latitude": "13.45274000", + "longitude": "-16.57803000" + }, + { + "id": "52277", + "name": "Kombo Saint Mary District", + "state_id": 2666, + "state_code": "B", + "country_id": 80, + "country_code": "GM", + "latitude": "13.44389000", + "longitude": "-16.64583000" + }, + { + "id": "52304", + "name": "Serekunda", + "state_id": 2666, + "state_code": "B", + "country_id": 80, + "country_code": "GM", + "latitude": "13.43833000", + "longitude": "-16.67806000" + }, + { + "id": "52222", + "name": "Bansang", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.43333000", + "longitude": "-14.65000000" + }, + { + "id": "52228", + "name": "Brikama Nding", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.53333000", + "longitude": "-14.93333000" + }, + { + "id": "52233", + "name": "Dankunku", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.56667000", + "longitude": "-15.31667000" + }, + { + "id": "52236", + "name": "Denton", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.50000000", + "longitude": "-14.93333000" + }, + { + "id": "52246", + "name": "Fulladu West", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.50000000", + "longitude": "-14.75000000" + }, + { + "id": "52247", + "name": "Galleh Manda", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.43333000", + "longitude": "-14.78333000" + }, + { + "id": "52248", + "name": "Georgetown", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.54039000", + "longitude": "-14.76374000" + }, + { + "id": "52252", + "name": "Jakhaly", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.55000000", + "longitude": "-14.96667000" + }, + { + "id": "52254", + "name": "Janjanbureh", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.53564000", + "longitude": "-14.76515000" + }, + { + "id": "52258", + "name": "Jarreng", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.61667000", + "longitude": "-15.18333000" + }, + { + "id": "52265", + "name": "Karantaba", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.66667000", + "longitude": "-15.03333000" + }, + { + "id": "52266", + "name": "Kass Wollof", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.78333000", + "longitude": "-14.93333000" + }, + { + "id": "52280", + "name": "Kuntaur", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.67085000", + "longitude": "-14.88977000" + }, + { + "id": "52281", + "name": "Kunting", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.53333000", + "longitude": "-14.66667000" + }, + { + "id": "52285", + "name": "Lower Saloum", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.71667000", + "longitude": "-15.36667000" + }, + { + "id": "52287", + "name": "Niamina East District", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.63333000", + "longitude": "-15.08333000" + }, + { + "id": "52288", + "name": "Niamina West District", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.58333000", + "longitude": "-15.25000000" + }, + { + "id": "52289", + "name": "Niani", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.66667000", + "longitude": "-14.91667000" + }, + { + "id": "52290", + "name": "Nianija District", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.72900000", + "longitude": "-15.09100000" + }, + { + "id": "52294", + "name": "Pateh Sam", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.61667000", + "longitude": "-15.06667000" + }, + { + "id": "52298", + "name": "Sami", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.58333000", + "longitude": "-15.20000000" + }, + { + "id": "52299", + "name": "Sami District", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.58333000", + "longitude": "-14.58333000" + }, + { + "id": "52303", + "name": "Saruja", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.55000000", + "longitude": "-14.91667000" + }, + { + "id": "52309", + "name": "Sukuta", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.61667000", + "longitude": "-14.91667000" + }, + { + "id": "52317", + "name": "Upper Saloum", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.75000000", + "longitude": "-15.20000000" + }, + { + "id": "52318", + "name": "Wassu", + "state_id": 2669, + "state_code": "M", + "country_id": 80, + "country_code": "GM", + "latitude": "13.69094000", + "longitude": "-14.87884000" + }, + { + "id": "52223", + "name": "Baro Kunda", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.48333000", + "longitude": "-15.26667000" + }, + { + "id": "52229", + "name": "Bureng", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.41667000", + "longitude": "-15.28333000" + }, + { + "id": "52253", + "name": "Jali", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.35000000", + "longitude": "-15.96667000" + }, + { + "id": "52255", + "name": "Jarra Central", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.41667000", + "longitude": "-15.41667000" + }, + { + "id": "52256", + "name": "Jarra East", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.41667000", + "longitude": "-15.25000000" + }, + { + "id": "52257", + "name": "Jarra West", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.41667000", + "longitude": "-15.53333000" + }, + { + "id": "52259", + "name": "Jenoi", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.48333000", + "longitude": "-15.56667000" + }, + { + "id": "52260", + "name": "Jifarong", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.30000000", + "longitude": "-15.86667000" + }, + { + "id": "52262", + "name": "Kaiaf", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.40000000", + "longitude": "-15.61667000" + }, + { + "id": "52264", + "name": "Karantaba", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.43333000", + "longitude": "-15.51667000" + }, + { + "id": "52268", + "name": "Keneba", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.32889000", + "longitude": "-16.01500000" + }, + { + "id": "52270", + "name": "Kiang Central", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.40000000", + "longitude": "-15.75000000" + }, + { + "id": "52271", + "name": "Kiang East", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.41667000", + "longitude": "-15.63333000" + }, + { + "id": "52272", + "name": "Kiang West District", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.33333000", + "longitude": "-16.00000000" + }, + { + "id": "52286", + "name": "Mansa Konko", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.44325000", + "longitude": "-15.53570000" + }, + { + "id": "52291", + "name": "Nioro", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.35000000", + "longitude": "-15.75000000" + }, + { + "id": "52301", + "name": "Sankwia", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.46667000", + "longitude": "-15.51667000" + }, + { + "id": "52305", + "name": "Si Kunda", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.43333000", + "longitude": "-15.56667000" + }, + { + "id": "52306", + "name": "Soma", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.43333000", + "longitude": "-15.53333000" + }, + { + "id": "52313", + "name": "Sutukung", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.46667000", + "longitude": "-15.26667000" + }, + { + "id": "52314", + "name": "Toniataba", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.43333000", + "longitude": "-15.58333000" + }, + { + "id": "52319", + "name": "Wellingara Ba", + "state_id": 2670, + "state_code": "L", + "country_id": 80, + "country_code": "GM", + "latitude": "13.41667000", + "longitude": "-15.40000000" + }, + { + "id": "52220", + "name": "Bambali", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.48333000", + "longitude": "-15.33333000" + }, + { + "id": "52224", + "name": "Barra", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.48278000", + "longitude": "-16.54556000" + }, + { + "id": "52230", + "name": "Central Baddibu", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.53333000", + "longitude": "-15.91667000" + }, + { + "id": "52231", + "name": "Chilla", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.55000000", + "longitude": "-16.28333000" + }, + { + "id": "52234", + "name": "Daru Rilwan", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.55000000", + "longitude": "-15.98333000" + }, + { + "id": "52239", + "name": "Essau", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.48389000", + "longitude": "-16.53472000" + }, + { + "id": "52240", + "name": "Farafenni", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.56667000", + "longitude": "-15.60000000" + }, + { + "id": "52250", + "name": "Gunjur", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.52278000", + "longitude": "-16.02778000" + }, + { + "id": "52261", + "name": "Jokadu", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.53333000", + "longitude": "-16.18333000" + }, + { + "id": "52267", + "name": "Katchang", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.50000000", + "longitude": "-15.75000000" + }, + { + "id": "52269", + "name": "Kerewan", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.48980000", + "longitude": "-16.08879000" + }, + { + "id": "52282", + "name": "Lamin", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.35222000", + "longitude": "-16.43389000" + }, + { + "id": "52283", + "name": "Lower Baddibu District", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.50000000", + "longitude": "-16.05000000" + }, + { + "id": "52284", + "name": "Lower Niumi District", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.53333000", + "longitude": "-16.41667000" + }, + { + "id": "52292", + "name": "No Kunda", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.56667000", + "longitude": "-15.83333000" + }, + { + "id": "52296", + "name": "Saba", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.51639000", + "longitude": "-16.04917000" + }, + { + "id": "52302", + "name": "Sara Kunda", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.53333000", + "longitude": "-15.41667000" + }, + { + "id": "52315", + "name": "Upper Baddibu", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.55000000", + "longitude": "-15.66667000" + }, + { + "id": "52316", + "name": "Upper Niumi District", + "state_id": 2671, + "state_code": "N", + "country_id": 80, + "country_code": "GM", + "latitude": "13.40000000", + "longitude": "-16.33333000" + }, + { + "id": "52218", + "name": "Bakadagy", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.30000000", + "longitude": "-14.38333000" + }, + { + "id": "52225", + "name": "Basse Santa Su", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.30995000", + "longitude": "-14.21373000" + }, + { + "id": "52226", + "name": "Brifu", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.50000000", + "longitude": "-13.93333000" + }, + { + "id": "52232", + "name": "Daba Kunda", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.31667000", + "longitude": "-14.30000000" + }, + { + "id": "52235", + "name": "Demba Kunda", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.25000000", + "longitude": "-14.26667000" + }, + { + "id": "52237", + "name": "Diabugu", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.38333000", + "longitude": "-14.40000000" + }, + { + "id": "52238", + "name": "Diabugu Basilla", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.33333000", + "longitude": "-13.95000000" + }, + { + "id": "52245", + "name": "Fulladu East", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.33333000", + "longitude": "-14.25000000" + }, + { + "id": "52251", + "name": "Gunjur Kuta", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.53333000", + "longitude": "-14.11667000" + }, + { + "id": "52263", + "name": "Kantora", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.41667000", + "longitude": "-13.91667000" + }, + { + "id": "52273", + "name": "Koina", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.48333000", + "longitude": "-13.86667000" + }, + { + "id": "52279", + "name": "Kumbija", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.26667000", + "longitude": "-14.18333000" + }, + { + "id": "52293", + "name": "Nyamanari", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.33333000", + "longitude": "-13.86667000" + }, + { + "id": "52295", + "name": "Perai", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.38333000", + "longitude": "-14.03333000" + }, + { + "id": "52297", + "name": "Sabi", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.23333000", + "longitude": "-14.20000000" + }, + { + "id": "52300", + "name": "Sandu", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.41667000", + "longitude": "-14.36667000" + }, + { + "id": "52308", + "name": "Sudowol", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.36667000", + "longitude": "-13.96667000" + }, + { + "id": "52311", + "name": "Sun Kunda", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.38333000", + "longitude": "-13.85000000" + }, + { + "id": "52312", + "name": "Sutukoba", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.50000000", + "longitude": "-14.01667000" + }, + { + "id": "52320", + "name": "Wuli", + "state_id": 2668, + "state_code": "U", + "country_id": 80, + "country_code": "GM", + "latitude": "13.50000000", + "longitude": "-14.08333000" + }, + { + "id": "52217", + "name": "Abuko", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.40417000", + "longitude": "-16.65583000" + }, + { + "id": "52227", + "name": "Brikama", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.27136000", + "longitude": "-16.64944000" + }, + { + "id": "52241", + "name": "Foni Bondali", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.21667000", + "longitude": "-15.93333000" + }, + { + "id": "52242", + "name": "Foni Brefet", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.21667000", + "longitude": "-16.33333000" + }, + { + "id": "52243", + "name": "Foni Jarrol", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.23333000", + "longitude": "-15.83333000" + }, + { + "id": "52244", + "name": "Foni Kansala", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.21667000", + "longitude": "-16.05000000" + }, + { + "id": "52249", + "name": "Gunjur", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.20194000", + "longitude": "-16.73389000" + }, + { + "id": "52274", + "name": "Kombo Central District", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.25000000", + "longitude": "-16.66667000" + }, + { + "id": "52275", + "name": "Kombo East District", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.21667000", + "longitude": "-16.51667000" + }, + { + "id": "52276", + "name": "Kombo North District", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.36667000", + "longitude": "-16.66667000" + }, + { + "id": "52278", + "name": "Kombo South District", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.25000000", + "longitude": "-16.75000000" + }, + { + "id": "52307", + "name": "Somita", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.20583000", + "longitude": "-16.30556000" + }, + { + "id": "52310", + "name": "Sukuta", + "state_id": 2667, + "state_code": "W", + "country_id": 80, + "country_code": "GM", + "latitude": "13.41033000", + "longitude": "-16.70815000" + }, + { + "id": "52040", + "name": "Akhaldaba", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.65395000", + "longitude": "42.15163000" + }, + { + "id": "52053", + "name": "Batumi", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.64228000", + "longitude": "41.63392000" + }, + { + "id": "52058", + "name": "Chakvi", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.72528000", + "longitude": "41.73278000" + }, + { + "id": "52061", + "name": "Dioknisi", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.62933000", + "longitude": "42.39171000" + }, + { + "id": "52081", + "name": "Khelvachauri", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.58556000", + "longitude": "41.66889000" + }, + { + "id": "52084", + "name": "Khulo", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.64353000", + "longitude": "42.30397000" + }, + { + "id": "52085", + "name": "Kobuleti", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.82143000", + "longitude": "41.77921000" + }, + { + "id": "52093", + "name": "Makhinjauri", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.67385000", + "longitude": "41.69401000" + }, + { + "id": "52104", + "name": "Ochkhamuri", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.85975000", + "longitude": "41.85309000" + }, + { + "id": "52119", + "name": "Shuakhevi", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.63000000", + "longitude": "42.19083000" + }, + { + "id": "52134", + "name": "Tsikhisdziri", + "state_id": 900, + "state_code": "AJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.76659000", + "longitude": "41.75517000" + }, + { + "id": "52054", + "name": "Bich’vinta", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "43.16197000", + "longitude": "40.34102000" + }, + { + "id": "52063", + "name": "Dranda", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "42.87167000", + "longitude": "41.15333000" + }, + { + "id": "52065", + "name": "Gagra", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "43.27858000", + "longitude": "40.27124000" + }, + { + "id": "52066", + "name": "Gali", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "42.62655000", + "longitude": "41.73808000" + }, + { + "id": "52067", + "name": "Gantiadi", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "43.38111000", + "longitude": "40.07944000" + }, + { + "id": "52073", + "name": "Gudauta", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "43.10547000", + "longitude": "40.62067000" + }, + { + "id": "52078", + "name": "Kelasuri", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "42.97877000", + "longitude": "41.07067000" + }, + { + "id": "52105", + "name": "Och’amch’ire", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "42.71232000", + "longitude": "41.46863000" + }, + { + "id": "52111", + "name": "P’rimorsk’oe", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "43.09236000", + "longitude": "40.69650000" + }, + { + "id": "52122", + "name": "Sokhumi", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "43.00697000", + "longitude": "40.98930000" + }, + { + "id": "52123", + "name": "Stantsiya Novyy Afon", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "43.08056000", + "longitude": "40.83833000" + }, + { + "id": "52130", + "name": "Tqvarch'eli", + "state_id": 901, + "state_code": "AB", + "country_id": 81, + "country_code": "GE", + "latitude": "42.84035000", + "longitude": "41.68007000" + }, + { + "id": "52091", + "name": "Lanchkhuti", + "state_id": 907, + "state_code": "GU", + "country_id": 81, + "country_code": "GE", + "latitude": "42.09027000", + "longitude": "42.03239000" + }, + { + "id": "52102", + "name": "Naruja", + "state_id": 907, + "state_code": "GU", + "country_id": 81, + "country_code": "GE", + "latitude": "41.90694000", + "longitude": "41.95417000" + }, + { + "id": "52108", + "name": "Ozurgeti", + "state_id": 907, + "state_code": "GU", + "country_id": 81, + "country_code": "GE", + "latitude": "41.92442000", + "longitude": "42.00682000" + }, + { + "id": "52141", + "name": "Urek’i", + "state_id": 907, + "state_code": "GU", + "country_id": 81, + "country_code": "GE", + "latitude": "41.99556000", + "longitude": "41.77861000" + }, + { + "id": "52051", + "name": "Baghdatis Munitsip’alit’et’i", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.00000000", + "longitude": "42.90000000" + }, + { + "id": "52059", + "name": "Chiat’ura", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.29806000", + "longitude": "43.29889000" + }, + { + "id": "52088", + "name": "K’alak’i Chiat’ura", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.28333000", + "longitude": "43.25000000" + }, + { + "id": "52089", + "name": "K’ulashi", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.20405000", + "longitude": "42.34289000" + }, + { + "id": "52079", + "name": "Kharagauli", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.02137000", + "longitude": "43.19773000" + }, + { + "id": "52083", + "name": "Khoni", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.32260000", + "longitude": "42.42061000" + }, + { + "id": "52086", + "name": "Kutaisi", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.26791000", + "longitude": "42.69459000" + }, + { + "id": "52114", + "name": "Sach’khere", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.34528000", + "longitude": "43.41944000" + }, + { + "id": "52116", + "name": "Samtredia", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.15370000", + "longitude": "42.33517000" + }, + { + "id": "52118", + "name": "Shorapani", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.08980000", + "longitude": "43.08662000" + }, + { + "id": "52129", + "name": "Tqibuli", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.35121000", + "longitude": "42.99874000" + }, + { + "id": "52137", + "name": "Tsqaltubo", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.34129000", + "longitude": "42.59760000" + }, + { + "id": "52143", + "name": "Vani", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.08320000", + "longitude": "42.52163000" + }, + { + "id": "52144", + "name": "Zestap’oni", + "state_id": 905, + "state_code": "IM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.11000000", + "longitude": "43.05250000" + }, + { + "id": "52045", + "name": "Akhmet’a", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "42.03111000", + "longitude": "45.20750000" + }, + { + "id": "52046", + "name": "Akhmet’is Munitsip’alit’et’i", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "42.25000000", + "longitude": "45.33333000" + }, + { + "id": "52074", + "name": "Gurjaani", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "41.74292000", + "longitude": "45.80111000" + }, + { + "id": "52090", + "name": "Lagodekhi", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "41.82681000", + "longitude": "46.27667000" + }, + { + "id": "52112", + "name": "Qvareli", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "41.95493000", + "longitude": "45.81716000" + }, + { + "id": "52115", + "name": "Sagarejo", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "41.73397000", + "longitude": "45.33149000" + }, + { + "id": "52120", + "name": "Sighnaghi", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "41.62046000", + "longitude": "45.92198000" + }, + { + "id": "52121", + "name": "Sighnaghis Munitsip’alit’et’i", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "41.56667000", + "longitude": "45.85000000" + }, + { + "id": "52127", + "name": "Telavi", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "41.91978000", + "longitude": "45.47315000" + }, + { + "id": "52135", + "name": "Tsinandali", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "41.89315000", + "longitude": "45.57129000" + }, + { + "id": "52136", + "name": "Tsnori", + "state_id": 910, + "state_code": "KA", + "country_id": 81, + "country_code": "GE", + "latitude": "41.62088000", + "longitude": "45.96943000" + }, + { + "id": "52055", + "name": "Bolnisi", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.44794000", + "longitude": "44.53838000" + }, + { + "id": "52056", + "name": "Bolnisis Munitsip’alit’et’i", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.36667000", + "longitude": "44.51667000" + }, + { + "id": "52060", + "name": "Didi Lilo", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.73611000", + "longitude": "44.96472000" + }, + { + "id": "52062", + "name": "Dmanisis Munitsip’alit’et’i", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.35000000", + "longitude": "44.13333000" + }, + { + "id": "52068", + "name": "Gardabani", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.46054000", + "longitude": "45.09283000" + }, + { + "id": "52069", + "name": "Gardabnis Munitsip’alit’et’i", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.61667000", + "longitude": "45.00000000" + }, + { + "id": "52094", + "name": "Manglisi", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.69698000", + "longitude": "44.38448000" + }, + { + "id": "52095", + "name": "Marneuli", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.47588000", + "longitude": "44.80895000" + }, + { + "id": "52096", + "name": "Marneulis Munitsip’alit’et’i", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.38333000", + "longitude": "44.85000000" + }, + { + "id": "52101", + "name": "Naghvarevi", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.35272000", + "longitude": "44.76178000" + }, + { + "id": "52113", + "name": "Rust’avi", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.54949000", + "longitude": "44.99323000" + }, + { + "id": "52140", + "name": "T’et’ri Tsqaro", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.54448000", + "longitude": "44.46153000" + }, + { + "id": "52128", + "name": "Tetrits’q’alos Munitsip’alit’et’i", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.60000000", + "longitude": "44.50000000" + }, + { + "id": "52133", + "name": "Tsalka", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.59460000", + "longitude": "44.08909000" + }, + { + "id": "52138", + "name": "Ts’alk’is Munitsip’alit’et’i", + "state_id": 904, + "state_code": "KK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.63333000", + "longitude": "43.96667000" + }, + { + "id": "52041", + "name": "Akhalgori", + "state_id": 902, + "state_code": "MM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.12597000", + "longitude": "44.48333000" + }, + { + "id": "52064", + "name": "Dzegvi", + "state_id": 902, + "state_code": "MM", + "country_id": 81, + "country_code": "GE", + "latitude": "41.84569000", + "longitude": "44.60097000" + }, + { + "id": "52072", + "name": "Gudauri", + "state_id": 902, + "state_code": "MM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.47797000", + "longitude": "44.47616000" + }, + { + "id": "52075", + "name": "Java", + "state_id": 902, + "state_code": "MM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.39972000", + "longitude": "43.93667000" + }, + { + "id": "52100", + "name": "Mtskheta", + "state_id": 902, + "state_code": "MM", + "country_id": 81, + "country_code": "GE", + "latitude": "41.84514000", + "longitude": "44.71875000" + }, + { + "id": "52109", + "name": "P’asanauri", + "state_id": 902, + "state_code": "MM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.35060000", + "longitude": "44.68912000" + }, + { + "id": "52124", + "name": "Step’antsminda", + "state_id": 902, + "state_code": "MM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.65667000", + "longitude": "44.64333000" + }, + { + "id": "52145", + "name": "Zhinvali", + "state_id": 902, + "state_code": "MM", + "country_id": 81, + "country_code": "GE", + "latitude": "42.13181000", + "longitude": "44.77264000" + }, + { + "id": "52047", + "name": "Ambrolauri", + "state_id": 909, + "state_code": "RL", + "country_id": 81, + "country_code": "GE", + "latitude": "42.52111000", + "longitude": "43.16222000" + }, + { + "id": "52048", + "name": "Ambrolauris Munitsip’alit’et’i", + "state_id": 909, + "state_code": "RL", + "country_id": 81, + "country_code": "GE", + "latitude": "42.56667000", + "longitude": "43.10000000" + }, + { + "id": "52092", + "name": "Lent’ekhi", + "state_id": 909, + "state_code": "RL", + "country_id": 81, + "country_code": "GE", + "latitude": "42.78893000", + "longitude": "42.72226000" + }, + { + "id": "52106", + "name": "Oni", + "state_id": 909, + "state_code": "RL", + "country_id": 81, + "country_code": "GE", + "latitude": "42.57944000", + "longitude": "43.44250000" + }, + { + "id": "52035", + "name": "Abasha", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.20000000", + "longitude": "42.20000000" + }, + { + "id": "52076", + "name": "Jvari", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.71693000", + "longitude": "42.05200000" + }, + { + "id": "52082", + "name": "Khobi", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.31558000", + "longitude": "41.89871000" + }, + { + "id": "52087", + "name": "Kveda Chkhorots’q’u", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.48103000", + "longitude": "42.09661000" + }, + { + "id": "52097", + "name": "Mart’vili", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.41436000", + "longitude": "42.37924000" + }, + { + "id": "52098", + "name": "Mest’ia", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "43.04581000", + "longitude": "42.72780000" + }, + { + "id": "52099", + "name": "Mest’iis Munitsip’alit’et’i", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "43.05000000", + "longitude": "42.55000000" + }, + { + "id": "52107", + "name": "Orsant’ia", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.46777000", + "longitude": "41.67377000" + }, + { + "id": "52110", + "name": "P’ot’i", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.14616000", + "longitude": "41.67197000" + }, + { + "id": "52117", + "name": "Senak’i", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.27042000", + "longitude": "42.06750000" + }, + { + "id": "52132", + "name": "Tsalenjikha", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.60444000", + "longitude": "42.06825000" + }, + { + "id": "52146", + "name": "Zugdidi", + "state_id": 908, + "state_code": "SZ", + "country_id": 81, + "country_code": "GE", + "latitude": "42.50880000", + "longitude": "41.87088000" + }, + { + "id": "52036", + "name": "Adigeni", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.68191000", + "longitude": "42.69867000" + }, + { + "id": "52037", + "name": "Adigeni Municipality", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.71667000", + "longitude": "42.73333000" + }, + { + "id": "52039", + "name": "Akhaldaba", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.92945000", + "longitude": "43.48762000" + }, + { + "id": "52042", + "name": "Akhalk’alak’i", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.40514000", + "longitude": "43.48629000" + }, + { + "id": "52043", + "name": "Akhaltsikhe", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.63901000", + "longitude": "42.98262000" + }, + { + "id": "52044", + "name": "Akhaltsikhis Munitsip’alit’et’i", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.63333000", + "longitude": "43.00000000" + }, + { + "id": "52050", + "name": "Asp’indzis Munitsip’alit’et’i", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.50000000", + "longitude": "43.25000000" + }, + { + "id": "52049", + "name": "Aspindza", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.57389000", + "longitude": "43.24826000" + }, + { + "id": "52052", + "name": "Bakuriani", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.74972000", + "longitude": "43.53250000" + }, + { + "id": "52057", + "name": "Borjomi", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.85272000", + "longitude": "43.41284000" + }, + { + "id": "52103", + "name": "Ninotsminda", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.26458000", + "longitude": "43.59161000" + }, + { + "id": "52131", + "name": "Tsaghveri", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.80365000", + "longitude": "43.48194000" + }, + { + "id": "52142", + "name": "Vale", + "state_id": 906, + "state_code": "SJ", + "country_id": 81, + "country_code": "GE", + "latitude": "41.61558000", + "longitude": "42.87224000" + }, + { + "id": "52038", + "name": "Agara", + "state_id": 903, + "state_code": "SK", + "country_id": 81, + "country_code": "GE", + "latitude": "42.03761000", + "longitude": "43.82382000" + }, + { + "id": "52070", + "name": "Gori", + "state_id": 903, + "state_code": "SK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.98422000", + "longitude": "44.11578000" + }, + { + "id": "52071", + "name": "Goris Munitsip’alit’et’i", + "state_id": 903, + "state_code": "SK", + "country_id": 81, + "country_code": "GE", + "latitude": "42.06667000", + "longitude": "44.11667000" + }, + { + "id": "52077", + "name": "Kaspi", + "state_id": 903, + "state_code": "SK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.92520000", + "longitude": "44.42568000" + }, + { + "id": "52080", + "name": "Khashuri", + "state_id": 903, + "state_code": "SK", + "country_id": 81, + "country_code": "GE", + "latitude": "41.99414000", + "longitude": "43.59994000" + }, + { + "id": "52125", + "name": "Surami", + "state_id": 903, + "state_code": "SK", + "country_id": 81, + "country_code": "GE", + "latitude": "42.02431000", + "longitude": "43.55556000" + }, + { + "id": "52139", + "name": "Ts’khinvali", + "state_id": 903, + "state_code": "SK", + "country_id": 81, + "country_code": "GE", + "latitude": "42.22764000", + "longitude": "43.96861000" + }, + { + "id": "52126", + "name": "Tbilisi", + "state_id": 899, + "state_code": "TB", + "country_id": 81, + "country_code": "GE", + "latitude": "41.69411000", + "longitude": "44.83368000" + }, + { + "id": "23461", + "name": "Aach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84240000", + "longitude": "8.85384000" + }, + { + "id": "23464", + "name": "Aalen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83777000", + "longitude": "10.09330000" + }, + { + "id": "23469", + "name": "Abstatt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06820000", + "longitude": "9.29070000" + }, + { + "id": "23471", + "name": "Abtsgmünd", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89503000", + "longitude": "10.00172000" + }, + { + "id": "23472", + "name": "Achern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63115000", + "longitude": "8.07607000" + }, + { + "id": "23475", + "name": "Achstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25886000", + "longitude": "9.89748000" + }, + { + "id": "23477", + "name": "Adelberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76227000", + "longitude": "9.59991000" + }, + { + "id": "23480", + "name": "Adelmannsfelden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95476000", + "longitude": "10.00466000" + }, + { + "id": "23482", + "name": "Adelsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40150000", + "longitude": "9.39250000" + }, + { + "id": "23495", + "name": "Affalterbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.92267000", + "longitude": "9.32362000" + }, + { + "id": "23498", + "name": "Aglasterhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35694000", + "longitude": "8.98694000" + }, + { + "id": "23517", + "name": "Aichelberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63557000", + "longitude": "9.56373000" + }, + { + "id": "23519", + "name": "Aichhalden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26719000", + "longitude": "8.40233000" + }, + { + "id": "23520", + "name": "Aichstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89295000", + "longitude": "10.07837000" + }, + { + "id": "23523", + "name": "Aidlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67849000", + "longitude": "8.89524000" + }, + { + "id": "23528", + "name": "Aitrach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "10.08333000" + }, + { + "id": "23532", + "name": "Albbruck", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.59077000", + "longitude": "8.12954000" + }, + { + "id": "23534", + "name": "Albershausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69136000", + "longitude": "9.56493000" + }, + { + "id": "23541", + "name": "Albstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21644000", + "longitude": "9.02596000" + }, + { + "id": "23544", + "name": "Aldingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10000000", + "longitude": "8.70000000" + }, + { + "id": "23548", + "name": "Alfdorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84385000", + "longitude": "9.71857000" + }, + { + "id": "23557", + "name": "Allensbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71536000", + "longitude": "9.07145000" + }, + { + "id": "23561", + "name": "Allmendingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.33052000", + "longitude": "9.72419000" + }, + { + "id": "23562", + "name": "Allmersbach im Tal", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.90659000", + "longitude": "9.46815000" + }, + { + "id": "23566", + "name": "Alpirsbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.34507000", + "longitude": "8.40197000" + }, + { + "id": "23582", + "name": "Altbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72268000", + "longitude": "9.38078000" + }, + { + "id": "23584", + "name": "Altdorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63112000", + "longitude": "8.99626000" + }, + { + "id": "23612", + "name": "Altenriet", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59140000", + "longitude": "9.22186000" + }, + { + "id": "23615", + "name": "Altensteig", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58649000", + "longitude": "8.60395000" + }, + { + "id": "23619", + "name": "Altes Lager", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.41755000", + "longitude": "9.53606000" + }, + { + "id": "23624", + "name": "Althütte", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91565000", + "longitude": "9.56984000" + }, + { + "id": "23623", + "name": "Althengstett", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72325000", + "longitude": "8.79434000" + }, + { + "id": "23628", + "name": "Altlußheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30167000", + "longitude": "8.49917000" + }, + { + "id": "23634", + "name": "Altshausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "9.53333000" + }, + { + "id": "23650", + "name": "Amstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57876000", + "longitude": "9.87388000" + }, + { + "id": "23651", + "name": "Amtzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70000000", + "longitude": "9.75000000" + }, + { + "id": "23710", + "name": "Aspach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96667000", + "longitude": "9.40000000" + }, + { + "id": "23711", + "name": "Asperg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.90525000", + "longitude": "9.13502000" + }, + { + "id": "23712", + "name": "Assamstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.42806000", + "longitude": "9.68611000" + }, + { + "id": "23713", + "name": "Asselfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52959000", + "longitude": "10.19166000" + }, + { + "id": "23717", + "name": "Attenweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13333000", + "longitude": "9.70000000" + }, + { + "id": "23720", + "name": "Au", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95000000", + "longitude": "7.83333000" + }, + { + "id": "23721", + "name": "Au am Rhein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95000000", + "longitude": "8.23333000" + }, + { + "id": "23730", + "name": "Auggen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.78333000", + "longitude": "7.60000000" + }, + { + "id": "23738", + "name": "Aulendorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95083000", + "longitude": "9.63745000" + }, + { + "id": "30555", + "name": "Überlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76977000", + "longitude": "9.17136000" + }, + { + "id": "30559", + "name": "Ühlingen-Birkendorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71667000", + "longitude": "8.31667000" + }, + { + "id": "30545", + "name": "Öhningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66186000", + "longitude": "8.88674000" + }, + { + "id": "30546", + "name": "Öhringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19884000", + "longitude": "9.50720000" + }, + { + "id": "30547", + "name": "Ölbronn-Dürrn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96667000", + "longitude": "8.75000000" + }, + { + "id": "30548", + "name": "Öpfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28636000", + "longitude": "9.80259000" + }, + { + "id": "30549", + "name": "Östringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.21911000", + "longitude": "8.71192000" + }, + { + "id": "30550", + "name": "Ötigheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89085000", + "longitude": "8.23442000" + }, + { + "id": "30551", + "name": "Ötisheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96667000", + "longitude": "8.80000000" + }, + { + "id": "23758", + "name": "Backnang", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94743000", + "longitude": "9.43718000" + }, + { + "id": "23891", + "name": "Bad Überkingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59991000", + "longitude": "9.79586000" + }, + { + "id": "23763", + "name": "Bad Bellingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73147000", + "longitude": "7.55756000" + }, + { + "id": "23779", + "name": "Bad Buchau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06231000", + "longitude": "9.61244000" + }, + { + "id": "23787", + "name": "Bad Dürrheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02093000", + "longitude": "8.53056000" + }, + { + "id": "23781", + "name": "Bad Ditzenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58830000", + "longitude": "9.70393000" + }, + { + "id": "23805", + "name": "Bad Herrenalb", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79787000", + "longitude": "8.43617000" + }, + { + "id": "23830", + "name": "Bad Liebenzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.77427000", + "longitude": "8.72971000" + }, + { + "id": "23835", + "name": "Bad Mergentheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49250000", + "longitude": "9.77361000" + }, + { + "id": "23847", + "name": "Bad Peterstal-Griesbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43333000", + "longitude": "8.21667000" + }, + { + "id": "23849", + "name": "Bad Rappenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23848000", + "longitude": "9.10180000" + }, + { + "id": "23851", + "name": "Bad Rippoldsau-Schapbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42883000", + "longitude": "8.32584000" + }, + { + "id": "23874", + "name": "Bad Säckingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.55371000", + "longitude": "7.94612000" + }, + { + "id": "23863", + "name": "Bad Schussenried", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00468000", + "longitude": "9.65741000" + }, + { + "id": "23876", + "name": "Bad Teinach-Zavelstein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69051000", + "longitude": "8.69285000" + }, + { + "id": "23879", + "name": "Bad Urach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49107000", + "longitude": "9.40009000" + }, + { + "id": "23881", + "name": "Bad Waldsee", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92027000", + "longitude": "9.75490000" + }, + { + "id": "23883", + "name": "Bad Wildbad", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75071000", + "longitude": "8.55040000" + }, + { + "id": "23886", + "name": "Bad Wimpfen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22971000", + "longitude": "9.15648000" + }, + { + "id": "23888", + "name": "Bad Wurzach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90799000", + "longitude": "9.89686000" + }, + { + "id": "23895", + "name": "Baden-Baden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76060000", + "longitude": "8.23975000" + }, + { + "id": "23897", + "name": "Badenweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80223000", + "longitude": "7.67236000" + }, + { + "id": "23899", + "name": "Bahlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.12064000", + "longitude": "7.73982000" + }, + { + "id": "23902", + "name": "Baienfurt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82857000", + "longitude": "9.65157000" + }, + { + "id": "23904", + "name": "Baiersbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50318000", + "longitude": "8.37699000" + }, + { + "id": "23906", + "name": "Baindt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85000000", + "longitude": "9.66667000" + }, + { + "id": "23910", + "name": "Balingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27525000", + "longitude": "8.85464000" + }, + { + "id": "23913", + "name": "Baltmannsweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.74215000", + "longitude": "9.44940000" + }, + { + "id": "23915", + "name": "Balzfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26892000", + "longitude": "8.78919000" + }, + { + "id": "23919", + "name": "Bammental", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35611000", + "longitude": "8.77944000" + }, + { + "id": "23945", + "name": "Bartholomä", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75350000", + "longitude": "9.98752000" + }, + { + "id": "24462", + "name": "Böbingen an der Rems", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.81955000", + "longitude": "9.92130000" + }, + { + "id": "24463", + "name": "Böblingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68212000", + "longitude": "9.01171000" + }, + { + "id": "24467", + "name": "Böhmenkirch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68333000", + "longitude": "9.93333000" + }, + { + "id": "24470", + "name": "Bönnigheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04018000", + "longitude": "9.09386000" + }, + { + "id": "24476", + "name": "Börtlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75376000", + "longitude": "9.63181000" + }, + { + "id": "24481", + "name": "Bösingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23333000", + "longitude": "8.55000000" + }, + { + "id": "24483", + "name": "Böttingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10000000", + "longitude": "8.80000000" + }, + { + "id": "24484", + "name": "Bötzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07642000", + "longitude": "7.72485000" + }, + { + "id": "24495", + "name": "Bühl", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69676000", + "longitude": "8.13523000" + }, + { + "id": "24496", + "name": "Bühlertal", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68569000", + "longitude": "8.18876000" + }, + { + "id": "24497", + "name": "Bühlertann", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04167000", + "longitude": "9.90861000" + }, + { + "id": "24498", + "name": "Bühlerzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00333000", + "longitude": "9.92056000" + }, + { + "id": "24505", + "name": "Büsingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.69638000", + "longitude": "8.68759000" + }, + { + "id": "23995", + "name": "Beilstein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04140000", + "longitude": "9.31370000" + }, + { + "id": "23996", + "name": "Beimerstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48333000", + "longitude": "9.98333000" + }, + { + "id": "24006", + "name": "Bempflingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57178000", + "longitude": "9.26834000" + }, + { + "id": "24014", + "name": "Benningen am Neckar", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94672000", + "longitude": "9.24212000" + }, + { + "id": "24030", + "name": "Bergatreute", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85000000", + "longitude": "9.75000000" + }, + { + "id": "24038", + "name": "Berghaupten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40602000", + "longitude": "7.98672000" + }, + { + "id": "24040", + "name": "Berghülen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46399000", + "longitude": "9.76110000" + }, + { + "id": "24052", + "name": "Berkheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04263000", + "longitude": "10.08227000" + }, + { + "id": "24058", + "name": "Bermatingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73333000", + "longitude": "9.35000000" + }, + { + "id": "24059", + "name": "Bernau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80018000", + "longitude": "8.03830000" + }, + { + "id": "24072", + "name": "Bernstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49957000", + "longitude": "10.02575000" + }, + { + "id": "24078", + "name": "Besigheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.99797000", + "longitude": "9.14268000" + }, + { + "id": "24088", + "name": "Beuren", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56927000", + "longitude": "9.40406000" + }, + { + "id": "24095", + "name": "Biberach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61008000", + "longitude": "8.27704000" + }, + { + "id": "24096", + "name": "Biberach an der Riß", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.09345000", + "longitude": "9.79053000" + }, + { + "id": "24114", + "name": "Bietigheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.90919000", + "longitude": "8.25202000" + }, + { + "id": "24115", + "name": "Bietigheim-Bissingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94407000", + "longitude": "9.11755000" + }, + { + "id": "24118", + "name": "Billigheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34861000", + "longitude": "9.25389000" + }, + { + "id": "24121", + "name": "Binau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36833000", + "longitude": "9.05806000" + }, + { + "id": "24123", + "name": "Bingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11127000", + "longitude": "9.27238000" + }, + { + "id": "24128", + "name": "Binzen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.63333000", + "longitude": "7.61667000" + }, + { + "id": "24130", + "name": "Birenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.74732000", + "longitude": "9.66115000" + }, + { + "id": "24134", + "name": "Birkenfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.86667000", + "longitude": "8.63333000" + }, + { + "id": "24152", + "name": "Bischweier", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83766000", + "longitude": "8.28412000" + }, + { + "id": "24153", + "name": "Bisingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31012000", + "longitude": "8.91738000" + }, + { + "id": "24158", + "name": "Bissingen an der Teck", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59915000", + "longitude": "9.49146000" + }, + { + "id": "24161", + "name": "Bitz", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24400000", + "longitude": "9.09144000" + }, + { + "id": "24173", + "name": "Blaubeuren", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.41215000", + "longitude": "9.78427000" + }, + { + "id": "24174", + "name": "Blaufelden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29778000", + "longitude": "9.97389000" + }, + { + "id": "24187", + "name": "Blumberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84058000", + "longitude": "8.53329000" + }, + { + "id": "24203", + "name": "Bodelshausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38886000", + "longitude": "8.97703000" + }, + { + "id": "24210", + "name": "Bodman-Ludwigshafen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81817000", + "longitude": "9.05540000" + }, + { + "id": "24211", + "name": "Bodnegg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71014000", + "longitude": "9.68841000" + }, + { + "id": "24222", + "name": "Bolheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63141000", + "longitude": "10.14995000" + }, + { + "id": "24223", + "name": "Boll", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64357000", + "longitude": "9.61295000" + }, + { + "id": "24226", + "name": "Bollschweil", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92143000", + "longitude": "7.78986000" + }, + { + "id": "24229", + "name": "Bondorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52064000", + "longitude": "8.83704000" + }, + { + "id": "24232", + "name": "Bonndorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81863000", + "longitude": "8.34139000" + }, + { + "id": "24236", + "name": "Bopfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85847000", + "longitude": "10.35417000" + }, + { + "id": "24268", + "name": "Boxberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47965000", + "longitude": "9.64006000" + }, + { + "id": "24271", + "name": "Brackenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07787000", + "longitude": "9.06601000" + }, + { + "id": "24289", + "name": "Braunsbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19917000", + "longitude": "9.79056000" + }, + { + "id": "24364", + "name": "Bräunlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92957000", + "longitude": "8.44806000" + }, + { + "id": "24371", + "name": "Brühl", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.39722000", + "longitude": "8.53361000" + }, + { + "id": "24302", + "name": "Breisach am Rhein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03279000", + "longitude": "7.58294000" + }, + { + "id": "24314", + "name": "Breitnau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "8.08333000" + }, + { + "id": "24325", + "name": "Bretten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03685000", + "longitude": "8.70745000" + }, + { + "id": "24327", + "name": "Bretzfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17944000", + "longitude": "9.43833000" + }, + { + "id": "24351", + "name": "Bruchsal", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.12426000", + "longitude": "8.59804000" + }, + { + "id": "24377", + "name": "Bubsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11667000", + "longitude": "8.83333000" + }, + { + "id": "24380", + "name": "Buch am Ahorn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53909000", + "longitude": "9.55560000" + }, + { + "id": "24386", + "name": "Buchen in Odenwald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52416000", + "longitude": "9.32293000" + }, + { + "id": "24387", + "name": "Buchenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96138000", + "longitude": "8.00909000" + }, + { + "id": "24400", + "name": "Buggingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84750000", + "longitude": "7.63799000" + }, + { + "id": "24429", + "name": "Burgrieden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23333000", + "longitude": "9.93333000" + }, + { + "id": "24434", + "name": "Burgstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.92805000", + "longitude": "9.37239000" + }, + { + "id": "24443", + "name": "Burladingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29111000", + "longitude": "9.11286000" + }, + { + "id": "24519", + "name": "Calw", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71419000", + "longitude": "8.74031000" + }, + { + "id": "24540", + "name": "Cleebronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04500000", + "longitude": "9.03694000" + }, + { + "id": "24557", + "name": "Crailsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13444000", + "longitude": "10.07193000" + }, + { + "id": "24559", + "name": "Creglingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.46937000", + "longitude": "10.03119000" + }, + { + "id": "24585", + "name": "Daisendorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71265000", + "longitude": "9.26783000" + }, + { + "id": "24604", + "name": "Dauchingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08993000", + "longitude": "8.55011000" + }, + { + "id": "24803", + "name": "Dörzbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38355000", + "longitude": "9.70732000" + }, + { + "id": "24809", + "name": "Dürbheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05623000", + "longitude": "8.79344000" + }, + { + "id": "24811", + "name": "Dürmentingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11667000", + "longitude": "9.53333000" + }, + { + "id": "24812", + "name": "Dürnau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64079000", + "longitude": "9.63544000" + }, + { + "id": "24607", + "name": "Deckenpfronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65128000", + "longitude": "8.82417000" + }, + { + "id": "24611", + "name": "Deggingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59710000", + "longitude": "9.71891000" + }, + { + "id": "24620", + "name": "Deißlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11230000", + "longitude": "8.60736000" + }, + { + "id": "24614", + "name": "Deilingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17410000", + "longitude": "8.78533000" + }, + { + "id": "24619", + "name": "Deizisau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71220000", + "longitude": "9.38610000" + }, + { + "id": "24630", + "name": "Denkendorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69555000", + "longitude": "9.31675000" + }, + { + "id": "24631", + "name": "Denkingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11110000", + "longitude": "8.73820000" + }, + { + "id": "24635", + "name": "Denzlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06667000", + "longitude": "7.88333000" + }, + { + "id": "24649", + "name": "Dettenhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60758000", + "longitude": "9.10041000" + }, + { + "id": "24650", + "name": "Dettighofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.62333000", + "longitude": "8.48512000" + }, + { + "id": "24651", + "name": "Dettingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26246000", + "longitude": "9.72161000" + }, + { + "id": "24652", + "name": "Dettingen an der Erms", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53077000", + "longitude": "9.34458000" + }, + { + "id": "24653", + "name": "Dettingen unter Teck", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61667000", + "longitude": "9.45000000" + }, + { + "id": "24668", + "name": "Dielheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28417000", + "longitude": "8.73806000" + }, + { + "id": "24677", + "name": "Dietenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21072000", + "longitude": "10.07163000" + }, + { + "id": "24683", + "name": "Dietingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.20480000", + "longitude": "8.64864000" + }, + { + "id": "24704", + "name": "Dischingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70000000", + "longitude": "10.36667000" + }, + { + "id": "24710", + "name": "Ditzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82672000", + "longitude": "9.06703000" + }, + { + "id": "24712", + "name": "Dobel", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80000000", + "longitude": "8.50000000" + }, + { + "id": "24717", + "name": "Dogern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.60952000", + "longitude": "8.16713000" + }, + { + "id": "24729", + "name": "Donaueschingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95514000", + "longitude": "8.49707000" + }, + { + "id": "24733", + "name": "Donzdorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68544000", + "longitude": "9.81053000" + }, + { + "id": "24739", + "name": "Dormettingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23688000", + "longitude": "8.77327000" + }, + { + "id": "24742", + "name": "Dornhan", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35008000", + "longitude": "8.50901000" + }, + { + "id": "24743", + "name": "Dornstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46697000", + "longitude": "9.94434000" + }, + { + "id": "24744", + "name": "Dornstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.47198000", + "longitude": "8.49817000" + }, + { + "id": "24749", + "name": "Dossenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45028000", + "longitude": "8.67472000" + }, + { + "id": "24750", + "name": "Dotternhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22848000", + "longitude": "8.79228000" + }, + { + "id": "24789", + "name": "Dußlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45357000", + "longitude": "9.05552000" + }, + { + "id": "24782", + "name": "Dunningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21242000", + "longitude": "8.50619000" + }, + { + "id": "24785", + "name": "Durbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49352000", + "longitude": "8.01736000" + }, + { + "id": "24786", + "name": "Durlangen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85632000", + "longitude": "9.79654000" + }, + { + "id": "24787", + "name": "Durmersheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93333000", + "longitude": "8.26667000" + }, + { + "id": "24824", + "name": "Ebenweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90000000", + "longitude": "9.51667000" + }, + { + "id": "24825", + "name": "Eberbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.46680000", + "longitude": "8.99016000" + }, + { + "id": "24826", + "name": "Eberdingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87942000", + "longitude": "8.96502000" + }, + { + "id": "24828", + "name": "Eberhardzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00000000", + "longitude": "9.81667000" + }, + { + "id": "24833", + "name": "Ebersbach an der Fils", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71600000", + "longitude": "9.52360000" + }, + { + "id": "24834", + "name": "Ebersbach-Musbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96667000", + "longitude": "9.58333000" + }, + { + "id": "24838", + "name": "Eberstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.18028000", + "longitude": "9.32111000" + }, + { + "id": "24841", + "name": "Ebhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58333000", + "longitude": "8.68333000" + }, + { + "id": "24843", + "name": "Ebringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95780000", + "longitude": "7.77652000" + }, + { + "id": "24861", + "name": "Edingen-Neckarhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45722000", + "longitude": "8.60639000" + }, + { + "id": "24864", + "name": "Efringen-Kirchen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65000000", + "longitude": "7.56667000" + }, + { + "id": "24867", + "name": "Egenhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56667000", + "longitude": "8.61667000" + }, + { + "id": "24873", + "name": "Eggenstein-Leopoldshafen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09006000", + "longitude": "8.39879000" + }, + { + "id": "24878", + "name": "Eggingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70000000", + "longitude": "8.40000000" + }, + { + "id": "24888", + "name": "Ehingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28259000", + "longitude": "9.72749000" + }, + { + "id": "24891", + "name": "Ehningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65882000", + "longitude": "8.94124000" + }, + { + "id": "24905", + "name": "Eichstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.09427000", + "longitude": "7.74244000" + }, + { + "id": "24911", + "name": "Eigeltingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85802000", + "longitude": "8.89784000" + }, + { + "id": "24916", + "name": "Eimeldingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.63333000", + "longitude": "7.60000000" + }, + { + "id": "24925", + "name": "Eisenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96117000", + "longitude": "8.26802000" + }, + { + "id": "24931", + "name": "Eisingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95000000", + "longitude": "8.66667000" + }, + { + "id": "24934", + "name": "Eislingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69515000", + "longitude": "9.70676000" + }, + { + "id": "24947", + "name": "Ellenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01667000", + "longitude": "10.21667000" + }, + { + "id": "24953", + "name": "Ellhofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.14667000", + "longitude": "9.32194000" + }, + { + "id": "24956", + "name": "Ellwangen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96164000", + "longitude": "10.13173000" + }, + { + "id": "24979", + "name": "Elzach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17247000", + "longitude": "8.06992000" + }, + { + "id": "24988", + "name": "Emmendingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.12096000", + "longitude": "7.85359000" + }, + { + "id": "24991", + "name": "Emmingen-Liptingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "8.88333000" + }, + { + "id": "24992", + "name": "Empfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.39258000", + "longitude": "8.71036000" + }, + { + "id": "24999", + "name": "Endingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14221000", + "longitude": "7.70049000" + }, + { + "id": "25002", + "name": "Engelsbrand", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83333000", + "longitude": "8.65000000" + }, + { + "id": "25005", + "name": "Engen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85534000", + "longitude": "8.77342000" + }, + { + "id": "25007", + "name": "Eningen unter Achalm", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48686000", + "longitude": "9.25946000" + }, + { + "id": "25011", + "name": "Ennetach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05238000", + "longitude": "9.32010000" + }, + { + "id": "25015", + "name": "Enzklösterle", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66638000", + "longitude": "8.47083000" + }, + { + "id": "25016", + "name": "Epfenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.33917000", + "longitude": "8.90778000" + }, + { + "id": "25017", + "name": "Epfendorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25000000", + "longitude": "8.60000000" + }, + { + "id": "25019", + "name": "Eppelheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40190000", + "longitude": "8.63644000" + }, + { + "id": "25024", + "name": "Eppingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13645000", + "longitude": "8.91229000" + }, + { + "id": "25028", + "name": "Erbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.32841000", + "longitude": "9.88752000" + }, + { + "id": "25033", + "name": "Erdmannhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94256000", + "longitude": "9.29615000" + }, + { + "id": "25044", + "name": "Eriskirch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.62479000", + "longitude": "9.54197000" + }, + { + "id": "25046", + "name": "Erkenbrechtsweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55656000", + "longitude": "9.43211000" + }, + { + "id": "25057", + "name": "Erlenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17250000", + "longitude": "9.26833000" + }, + { + "id": "25059", + "name": "Erlenmoos", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06530000", + "longitude": "9.97567000" + }, + { + "id": "25061", + "name": "Erligheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.02250000", + "longitude": "9.09722000" + }, + { + "id": "25066", + "name": "Erolzheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.09001000", + "longitude": "10.07300000" + }, + { + "id": "25069", + "name": "Ersingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29260000", + "longitude": "9.85510000" + }, + { + "id": "25070", + "name": "Ertingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10000000", + "longitude": "9.46667000" + }, + { + "id": "25074", + "name": "Eschach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88832000", + "longitude": "9.86999000" + }, + { + "id": "25079", + "name": "Eschelbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31944000", + "longitude": "8.86528000" + }, + { + "id": "25080", + "name": "Eschenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65264000", + "longitude": "9.67037000" + }, + { + "id": "25099", + "name": "Essingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80859000", + "longitude": "10.02773000" + }, + { + "id": "25101", + "name": "Esslingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73961000", + "longitude": "9.30473000" + }, + { + "id": "25106", + "name": "Ettenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25696000", + "longitude": "7.81247000" + }, + { + "id": "25107", + "name": "Ettlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94094000", + "longitude": "8.40763000" + }, + { + "id": "25118", + "name": "Eutingen an der Enz", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91246000", + "longitude": "8.74898000" + }, + { + "id": "25127", + "name": "Fahrenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.43139000", + "longitude": "9.15056000" + }, + { + "id": "25329", + "name": "Fürstenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.67895000", + "longitude": "9.15535000" + }, + { + "id": "25153", + "name": "Feldberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77435000", + "longitude": "7.64142000" + }, + { + "id": "25159", + "name": "Fellbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80912000", + "longitude": "9.27697000" + }, + { + "id": "25168", + "name": "Fichtenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.98601000", + "longitude": "9.71199000" + }, + { + "id": "25170", + "name": "Filderstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65698000", + "longitude": "9.22049000" + }, + { + "id": "25181", + "name": "Fischerbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28687000", + "longitude": "8.10959000" + }, + { + "id": "25188", + "name": "Flein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10306000", + "longitude": "9.21083000" + }, + { + "id": "25203", + "name": "Forbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68333000", + "longitude": "8.35000000" + }, + { + "id": "25205", + "name": "Forchheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16667000", + "longitude": "7.70000000" + }, + { + "id": "25206", + "name": "Forchtenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28867000", + "longitude": "9.56026000" + }, + { + "id": "25208", + "name": "Forst", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15861000", + "longitude": "8.58083000" + }, + { + "id": "25239", + "name": "Freiberg am Neckar", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93196000", + "longitude": "9.20240000" + }, + { + "id": "25240", + "name": "Freiburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99590000", + "longitude": "7.85222000" + }, + { + "id": "25242", + "name": "Freiburg Region", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16667000", + "longitude": "8.33333000" + }, + { + "id": "25258", + "name": "Freudenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75349000", + "longitude": "9.32748000" + }, + { + "id": "25260", + "name": "Freudenstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46695000", + "longitude": "8.41371000" + }, + { + "id": "25261", + "name": "Freudental", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00972000", + "longitude": "9.05917000" + }, + { + "id": "25266", + "name": "Frickenhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59353000", + "longitude": "9.36005000" + }, + { + "id": "25267", + "name": "Frickingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81438000", + "longitude": "9.27349000" + }, + { + "id": "25268", + "name": "Fridingen an der Donau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01955000", + "longitude": "8.92322000" + }, + { + "id": "25276", + "name": "Friedenweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91778000", + "longitude": "8.25627000" + }, + { + "id": "25288", + "name": "Friedrichshafen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65689000", + "longitude": "9.47554000" + }, + { + "id": "25301", + "name": "Friolzheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83333000", + "longitude": "8.83333000" + }, + { + "id": "25302", + "name": "Frittlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.12709000", + "longitude": "8.70774000" + }, + { + "id": "25307", + "name": "Fronreute", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.87053000", + "longitude": "9.56944000" + }, + { + "id": "25319", + "name": "Furtwangen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05156000", + "longitude": "8.20715000" + }, + { + "id": "25345", + "name": "Gaggenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80000000", + "longitude": "8.33333000" + }, + { + "id": "25346", + "name": "Gaiberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36639000", + "longitude": "8.74972000" + }, + { + "id": "25347", + "name": "Gaienhofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.68333000", + "longitude": "8.98333000" + }, + { + "id": "25348", + "name": "Gaildorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00027000", + "longitude": "9.76953000" + }, + { + "id": "25349", + "name": "Gailingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.69711000", + "longitude": "8.75567000" + }, + { + "id": "25354", + "name": "Gammelshausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64023000", + "longitude": "9.65072000" + }, + { + "id": "25355", + "name": "Gammertingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25240000", + "longitude": "9.22349000" + }, + { + "id": "25774", + "name": "Gärtringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64176000", + "longitude": "8.90073000" + }, + { + "id": "25776", + "name": "Göggingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.86123000", + "longitude": "9.88398000" + }, + { + "id": "25779", + "name": "Göppingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70354000", + "longitude": "9.65209000" + }, + { + "id": "25784", + "name": "Görwihl", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.64275000", + "longitude": "8.07482000" + }, + { + "id": "25792", + "name": "Güglingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06642000", + "longitude": "9.00175000" + }, + { + "id": "25801", + "name": "Gütenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05000000", + "longitude": "8.15000000" + }, + { + "id": "25387", + "name": "Gechingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69527000", + "longitude": "8.82915000" + }, + { + "id": "25405", + "name": "Geisingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92504000", + "longitude": "8.65002000" + }, + { + "id": "25407", + "name": "Geislingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28768000", + "longitude": "8.81241000" + }, + { + "id": "25408", + "name": "Geislingen an der Steige", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62423000", + "longitude": "9.82736000" + }, + { + "id": "25420", + "name": "Gemmingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15639000", + "longitude": "8.98194000" + }, + { + "id": "25421", + "name": "Gemmrigheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.02833000", + "longitude": "9.15556000" + }, + { + "id": "25426", + "name": "Gengenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40476000", + "longitude": "8.01433000" + }, + { + "id": "25436", + "name": "Gerabronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.97071000", + "longitude": "9.91986000" + }, + { + "id": "25444", + "name": "Gerlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79954000", + "longitude": "9.06316000" + }, + { + "id": "25449", + "name": "Gernsbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.77034000", + "longitude": "8.34306000" + }, + { + "id": "25462", + "name": "Gerstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62254000", + "longitude": "10.01984000" + }, + { + "id": "25484", + "name": "Giengen an der Brenz", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62219000", + "longitude": "10.24312000" + }, + { + "id": "25494", + "name": "Gingen an der Fils", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65979000", + "longitude": "9.78092000" + }, + { + "id": "25507", + "name": "Glatten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.44246000", + "longitude": "8.51116000" + }, + { + "id": "25537", + "name": "Gomadingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.39980000", + "longitude": "9.39065000" + }, + { + "id": "25538", + "name": "Gomaringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45349000", + "longitude": "9.09582000" + }, + { + "id": "25541", + "name": "Gondelsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05917000", + "longitude": "8.65833000" + }, + { + "id": "25546", + "name": "Gosheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13430000", + "longitude": "8.75426000" + }, + { + "id": "25550", + "name": "Gottenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05000000", + "longitude": "7.73333000" + }, + { + "id": "25553", + "name": "Gottmadingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73511000", + "longitude": "8.77687000" + }, + { + "id": "25556", + "name": "Graben-Neudorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16695000", + "longitude": "8.49243000" + }, + { + "id": "25557", + "name": "Grabenstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52397000", + "longitude": "9.46155000" + }, + { + "id": "25563", + "name": "Grafenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71427000", + "longitude": "8.91219000" + }, + { + "id": "25565", + "name": "Grafenhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28427000", + "longitude": "7.76678000" + }, + { + "id": "25742", + "name": "Grünkraut", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.74417000", + "longitude": "9.65588000" + }, + { + "id": "25743", + "name": "Grünsfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60949000", + "longitude": "9.74725000" + }, + { + "id": "25588", + "name": "Greffern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75205000", + "longitude": "8.00515000" + }, + { + "id": "25599", + "name": "Grenzach-Wyhlen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.55000000", + "longitude": "7.68333000" + }, + { + "id": "25654", + "name": "Großbettlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59052000", + "longitude": "9.30782000" + }, + { + "id": "25657", + "name": "Großbottwar", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00147000", + "longitude": "9.29348000" + }, + { + "id": "25671", + "name": "Großerlach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05368000", + "longitude": "9.51356000" + }, + { + "id": "25700", + "name": "Großrinderfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66536000", + "longitude": "9.73356000" + }, + { + "id": "25617", + "name": "Grosselfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.33229000", + "longitude": "8.88704000" + }, + { + "id": "25718", + "name": "Gruibingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59483000", + "longitude": "9.64389000" + }, + { + "id": "25746", + "name": "Gschwend", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93333000", + "longitude": "9.74436000" + }, + { + "id": "25754", + "name": "Gundelfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04246000", + "longitude": "7.86570000" + }, + { + "id": "25756", + "name": "Gundelsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28330000", + "longitude": "9.16037000" + }, + { + "id": "25764", + "name": "Gutach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24844000", + "longitude": "8.21293000" + }, + { + "id": "25765", + "name": "Gutach im Breisgau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11667000", + "longitude": "7.98333000" + }, + { + "id": "25769", + "name": "Gutenzell-Hürbel", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11667000", + "longitude": "9.98333000" + }, + { + "id": "25965", + "name": "Haßmersheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30000000", + "longitude": "9.15000000" + }, + { + "id": "25824", + "name": "Hagnau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.67666000", + "longitude": "9.31787000" + }, + { + "id": "25831", + "name": "Haigerloch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.36614000", + "longitude": "8.80357000" + }, + { + "id": "25840", + "name": "Haiterbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52066000", + "longitude": "8.64435000" + }, + { + "id": "25865", + "name": "Hambrücken", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19000000", + "longitude": "8.54056000" + }, + { + "id": "25900", + "name": "Hardheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61194000", + "longitude": "9.47194000" + }, + { + "id": "25901", + "name": "Hardt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18333000", + "longitude": "8.41667000" + }, + { + "id": "25916", + "name": "Hartheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "7.63333000" + }, + { + "id": "25921", + "name": "Hasel", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65342000", + "longitude": "7.89720000" + }, + { + "id": "25928", + "name": "Haslach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56531000", + "longitude": "8.05658000" + }, + { + "id": "25937", + "name": "Hattenhofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66648000", + "longitude": "9.57456000" + }, + { + "id": "25949", + "name": "Hausach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28426000", + "longitude": "8.17602000" + }, + { + "id": "25952", + "name": "Hausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.68128000", + "longitude": "7.83986000" + }, + { + "id": "25960", + "name": "Hayingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27531000", + "longitude": "9.47760000" + }, + { + "id": "26297", + "name": "Häusern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75000000", + "longitude": "8.16667000" + }, + { + "id": "26299", + "name": "Höchenschwand", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73333000", + "longitude": "8.16667000" + }, + { + "id": "26306", + "name": "Höfen an der Enz", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80000000", + "longitude": "8.58333000" + }, + { + "id": "26315", + "name": "Höpfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60250000", + "longitude": "9.42861000" + }, + { + "id": "26331", + "name": "Hüffenhardt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29194000", + "longitude": "9.08167000" + }, + { + "id": "26332", + "name": "Hüfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92543000", + "longitude": "8.48831000" + }, + { + "id": "26333", + "name": "Hügelsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80000000", + "longitude": "8.11667000" + }, + { + "id": "26334", + "name": "Hülben", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51982000", + "longitude": "9.40790000" + }, + { + "id": "26344", + "name": "Hüttisheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27965000", + "longitude": "9.94246000" + }, + { + "id": "26345", + "name": "Hüttlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89266000", + "longitude": "10.10064000" + }, + { + "id": "25968", + "name": "Hechingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35149000", + "longitude": "8.96317000" + }, + { + "id": "25971", + "name": "Heddesheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50556000", + "longitude": "8.60361000" + }, + { + "id": "25982", + "name": "Heidelberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40768000", + "longitude": "8.69079000" + }, + { + "id": "25987", + "name": "Heidenheim an der Brenz", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67798000", + "longitude": "10.15162000" + }, + { + "id": "25994", + "name": "Heilbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13995000", + "longitude": "9.22054000" + }, + { + "id": "25995", + "name": "Heiligenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82094000", + "longitude": "9.31280000" + }, + { + "id": "26003", + "name": "Heiligkreuzsteinach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48333000", + "longitude": "8.79500000" + }, + { + "id": "26010", + "name": "Heimsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80656000", + "longitude": "8.86744000" + }, + { + "id": "26014", + "name": "Heiningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66177000", + "longitude": "9.64977000" + }, + { + "id": "26019", + "name": "Heitersheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.87468000", + "longitude": "7.65721000" + }, + { + "id": "26031", + "name": "Helmstadt-Bargen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31427000", + "longitude": "8.99712000" + }, + { + "id": "26041", + "name": "Hemmingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.86667000", + "longitude": "9.03333000" + }, + { + "id": "26044", + "name": "Hemsbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59075000", + "longitude": "8.64779000" + }, + { + "id": "26057", + "name": "Herbertingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06667000", + "longitude": "9.43333000" + }, + { + "id": "26058", + "name": "Herbolzheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21884000", + "longitude": "7.77746000" + }, + { + "id": "26060", + "name": "Herbrechtingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62173000", + "longitude": "10.17600000" + }, + { + "id": "26065", + "name": "Herdwangen-Schönach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85000000", + "longitude": "9.20000000" + }, + { + "id": "26076", + "name": "Hermaringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59544000", + "longitude": "10.26065000" + }, + { + "id": "26086", + "name": "Herrenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59523000", + "longitude": "8.86648000" + }, + { + "id": "26088", + "name": "Herrischried", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66667000", + "longitude": "8.00000000" + }, + { + "id": "26106", + "name": "Hessigheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.99407000", + "longitude": "9.18629000" + }, + { + "id": "26112", + "name": "Hettingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21601000", + "longitude": "9.23169000" + }, + { + "id": "26117", + "name": "Heubach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79267000", + "longitude": "9.93370000" + }, + { + "id": "26120", + "name": "Heuchlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85215000", + "longitude": "9.94391000" + }, + { + "id": "26138", + "name": "Hildrizhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62423000", + "longitude": "8.96605000" + }, + { + "id": "26150", + "name": "Hilzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76667000", + "longitude": "8.78333000" + }, + { + "id": "26158", + "name": "Hinterzarten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90276000", + "longitude": "8.10701000" + }, + { + "id": "26160", + "name": "Hirrlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.41245000", + "longitude": "8.88742000" + }, + { + "id": "26164", + "name": "Hirschberg an der Bergstraße", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50710000", + "longitude": "8.65693000" + }, + { + "id": "26173", + "name": "Hochdorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02560000", + "longitude": "9.78778000" + }, + { + "id": "26182", + "name": "Hockenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32334000", + "longitude": "8.55194000" + }, + { + "id": "26191", + "name": "Hofstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25846000", + "longitude": "8.06595000" + }, + { + "id": "26193", + "name": "Hohberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.32270000", + "longitude": "7.89972000" + }, + { + "id": "26216", + "name": "Hohentengen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.57005000", + "longitude": "8.43250000" + }, + { + "id": "26242", + "name": "Holzgerlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63969000", + "longitude": "9.01149000" + }, + { + "id": "26247", + "name": "Holzmaden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63333000", + "longitude": "9.51667000" + }, + { + "id": "26256", + "name": "Horb am Neckar", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.44423000", + "longitude": "8.69130000" + }, + { + "id": "26257", + "name": "Horben", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "7.86667000" + }, + { + "id": "26260", + "name": "Horgenzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80534000", + "longitude": "9.49727000" + }, + { + "id": "26266", + "name": "Hornberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21068000", + "longitude": "8.23275000" + }, + { + "id": "26271", + "name": "Horrenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28040000", + "longitude": "8.78087000" + }, + { + "id": "26353", + "name": "Iffezheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82167000", + "longitude": "8.14310000" + }, + { + "id": "26357", + "name": "Igersheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49444000", + "longitude": "9.81694000" + }, + { + "id": "26359", + "name": "Iggingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83167000", + "longitude": "9.87894000" + }, + { + "id": "26361", + "name": "Ihringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04303000", + "longitude": "7.64760000" + }, + { + "id": "26366", + "name": "Illerrieden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27017000", + "longitude": "10.05155000" + }, + { + "id": "26368", + "name": "Illingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95616000", + "longitude": "8.92459000" + }, + { + "id": "26370", + "name": "Illmensee", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.86229000", + "longitude": "9.37235000" + }, + { + "id": "26376", + "name": "Ilsfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05548000", + "longitude": "9.24598000" + }, + { + "id": "26377", + "name": "Ilshofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17015000", + "longitude": "9.91825000" + }, + { + "id": "26378", + "name": "Ilvesheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47404000", + "longitude": "8.56740000" + }, + { + "id": "26380", + "name": "Immendingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "8.73333000" + }, + { + "id": "26383", + "name": "Immenstaad am Bodensee", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66667000", + "longitude": "9.36667000" + }, + { + "id": "26388", + "name": "Ingelfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30028000", + "longitude": "9.65303000" + }, + { + "id": "26391", + "name": "Ingoldingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02552000", + "longitude": "9.74195000" + }, + { + "id": "26399", + "name": "Inzigkofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07034000", + "longitude": "9.17998000" + }, + { + "id": "26400", + "name": "Inzlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.58851000", + "longitude": "7.69094000" + }, + { + "id": "26416", + "name": "Isny", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.69260000", + "longitude": "10.03857000" + }, + { + "id": "26417", + "name": "Ispringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91667000", + "longitude": "8.66667000" + }, + { + "id": "26421", + "name": "Ittlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19083000", + "longitude": "8.93083000" + }, + { + "id": "26425", + "name": "Jagsthausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31056000", + "longitude": "9.46833000" + }, + { + "id": "26426", + "name": "Jagstzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03055000", + "longitude": "10.09751000" + }, + { + "id": "26466", + "name": "Jöhlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03218000", + "longitude": "8.57350000" + }, + { + "id": "26446", + "name": "Jestetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65000000", + "longitude": "8.56667000" + }, + { + "id": "26463", + "name": "Jungingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.32787000", + "longitude": "9.04095000" + }, + { + "id": "26481", + "name": "Kaisersbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93023000", + "longitude": "9.63898000" + }, + { + "id": "26506", + "name": "Kandern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71393000", + "longitude": "7.66237000" + }, + { + "id": "26508", + "name": "Kappel-Grafenhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28382000", + "longitude": "7.76605000" + }, + { + "id": "26510", + "name": "Kappelrodeck", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59182000", + "longitude": "8.11692000" + }, + { + "id": "26514", + "name": "Karlsdorf-Neuthard", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13472000", + "longitude": "8.53028000" + }, + { + "id": "26520", + "name": "Karlsruhe", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00937000", + "longitude": "8.40444000" + }, + { + "id": "26521", + "name": "Karlsruhe Region", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00000000", + "longitude": "8.66667000" + }, + { + "id": "26819", + "name": "Köngen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68333000", + "longitude": "9.36667000" + }, + { + "id": "26821", + "name": "Königheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62028000", + "longitude": "9.59583000" + }, + { + "id": "26823", + "name": "Königsbach-Stein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96585000", + "longitude": "8.60573000" + }, + { + "id": "26824", + "name": "Königsbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.74317000", + "longitude": "10.11193000" + }, + { + "id": "26831", + "name": "Königsfeld im Schwarzwald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13814000", + "longitude": "8.41973000" + }, + { + "id": "26853", + "name": "Külsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66942000", + "longitude": "9.52361000" + }, + { + "id": "26856", + "name": "Künzelsau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28180000", + "longitude": "9.68352000" + }, + { + "id": "26859", + "name": "Kürnbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07750000", + "longitude": "8.84556000" + }, + { + "id": "26551", + "name": "Kehl", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57297000", + "longitude": "7.81523000" + }, + { + "id": "26571", + "name": "Kenzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.19630000", + "longitude": "7.76974000" + }, + { + "id": "26575", + "name": "Ketsch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36778000", + "longitude": "8.53111000" + }, + { + "id": "26654", + "name": "Kißlegg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.78894000", + "longitude": "9.88383000" + }, + { + "id": "26587", + "name": "Kieselbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93333000", + "longitude": "8.75000000" + }, + { + "id": "26592", + "name": "Kippenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29564000", + "longitude": "7.82510000" + }, + { + "id": "26594", + "name": "Kirchardt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20500000", + "longitude": "8.99167000" + }, + { + "id": "26598", + "name": "Kirchberg an der Iller", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13333000", + "longitude": "10.08333000" + }, + { + "id": "26599", + "name": "Kirchberg an der Jagst", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20056000", + "longitude": "9.98226000" + }, + { + "id": "26600", + "name": "Kirchberg an der Murr", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94297000", + "longitude": "9.34083000" + }, + { + "id": "26603", + "name": "Kirchdorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07667000", + "longitude": "10.12629000" + }, + { + "id": "26612", + "name": "Kirchentellinsfurt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53315000", + "longitude": "9.14732000" + }, + { + "id": "26621", + "name": "Kirchheim am Neckar", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04500000", + "longitude": "9.14222000" + }, + { + "id": "26622", + "name": "Kirchheim am Ries", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87922000", + "longitude": "10.40028000" + }, + { + "id": "26625", + "name": "Kirchheim unter Teck", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64683000", + "longitude": "9.45378000" + }, + { + "id": "26639", + "name": "Kirchzarten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96667000", + "longitude": "7.95000000" + }, + { + "id": "26688", + "name": "Klingenstein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.41849000", + "longitude": "9.90812000" + }, + { + "id": "26703", + "name": "Knittlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.02487000", + "longitude": "8.75606000" + }, + { + "id": "26709", + "name": "Kohlberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55845000", + "longitude": "9.33576000" + }, + { + "id": "26711", + "name": "Kolbingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05227000", + "longitude": "8.88957000" + }, + { + "id": "26718", + "name": "Konstanz", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66033000", + "longitude": "9.17582000" + }, + { + "id": "26721", + "name": "Korb", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84303000", + "longitude": "9.36258000" + }, + { + "id": "26724", + "name": "Korntal", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83218000", + "longitude": "9.12140000" + }, + { + "id": "26725", + "name": "Kornwestheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.86158000", + "longitude": "9.18569000" + }, + { + "id": "26735", + "name": "Kraichtal", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.14623000", + "longitude": "8.73276000" + }, + { + "id": "26741", + "name": "Krauchenwies", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01651000", + "longitude": "9.24757000" + }, + { + "id": "26744", + "name": "Krautheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38789000", + "longitude": "9.63553000" + }, + { + "id": "26752", + "name": "Kressbronn am Bodensee", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.59760000", + "longitude": "9.59707000" + }, + { + "id": "26768", + "name": "Kronau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22250000", + "longitude": "8.63111000" + }, + { + "id": "26789", + "name": "Kuchen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63583000", + "longitude": "9.79989000" + }, + { + "id": "26799", + "name": "Kupferzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22778000", + "longitude": "9.69000000" + }, + { + "id": "26800", + "name": "Kuppenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82794000", + "longitude": "8.25417000" + }, + { + "id": "26807", + "name": "Kusterdingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52291000", + "longitude": "9.11977000" + }, + { + "id": "26872", + "name": "Ladenburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47307000", + "longitude": "8.60896000" + }, + { + "id": "26876", + "name": "Lahr", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.34042000", + "longitude": "7.86886000" + }, + { + "id": "26877", + "name": "Laichingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48939000", + "longitude": "9.68612000" + }, + { + "id": "26905", + "name": "Langenargen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.59858000", + "longitude": "9.54163000" + }, + { + "id": "26906", + "name": "Langenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49616000", + "longitude": "10.11849000" + }, + { + "id": "26912", + "name": "Langenbrettach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22601000", + "longitude": "9.41842000" + }, + { + "id": "26913", + "name": "Langenburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25401000", + "longitude": "9.85673000" + }, + { + "id": "26916", + "name": "Langenenslingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14851000", + "longitude": "9.37765000" + }, + { + "id": "26960", + "name": "Lauchheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87135000", + "longitude": "10.24222000" + }, + { + "id": "26961", + "name": "Lauchringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.62699000", + "longitude": "8.31442000" + }, + { + "id": "26963", + "name": "Lauda-Königshofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56526000", + "longitude": "9.70816000" + }, + { + "id": "26965", + "name": "Laudenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61333000", + "longitude": "8.65389000" + }, + { + "id": "26970", + "name": "Lauf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65000000", + "longitude": "8.13333000" + }, + { + "id": "26975", + "name": "Laufenburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.56512000", + "longitude": "8.06045000" + }, + { + "id": "26976", + "name": "Lauffen am Neckar", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07340000", + "longitude": "9.14567000" + }, + { + "id": "26979", + "name": "Laupheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22786000", + "longitude": "9.87874000" + }, + { + "id": "26981", + "name": "Lautenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48185000", + "longitude": "8.02732000" + }, + { + "id": "26985", + "name": "Lauterbach\/Schwarzwald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22999000", + "longitude": "8.34240000" + }, + { + "id": "27190", + "name": "Löchgau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00361000", + "longitude": "9.10639000" + }, + { + "id": "27193", + "name": "Löffingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.88405000", + "longitude": "8.34384000" + }, + { + "id": "27197", + "name": "Lörrach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.61497000", + "longitude": "7.66457000" + }, + { + "id": "27199", + "name": "Löwenstein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09558000", + "longitude": "9.38000000" + }, + { + "id": "27012", + "name": "Lehrensteinsfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13111000", + "longitude": "9.32722000" + }, + { + "id": "27014", + "name": "Leibertingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04263000", + "longitude": "9.01308000" + }, + { + "id": "27020", + "name": "Leimen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34737000", + "longitude": "8.68733000" + }, + { + "id": "27024", + "name": "Leinfelden-Echterdingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69406000", + "longitude": "9.16809000" + }, + { + "id": "27025", + "name": "Leingarten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.14639000", + "longitude": "9.11694000" + }, + { + "id": "27026", + "name": "Leinzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84941000", + "longitude": "9.87750000" + }, + { + "id": "27047", + "name": "Lenningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55048000", + "longitude": "9.47674000" + }, + { + "id": "27051", + "name": "Lenzkirch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.86832000", + "longitude": "8.20211000" + }, + { + "id": "27053", + "name": "Leonberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80000000", + "longitude": "9.01667000" + }, + { + "id": "27065", + "name": "Leutenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88791000", + "longitude": "9.39267000" + }, + { + "id": "27070", + "name": "Leutkirch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82672000", + "longitude": "10.02050000" + }, + { + "id": "27076", + "name": "Lichtenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72607000", + "longitude": "8.00486000" + }, + { + "id": "27116", + "name": "Linkenheim-Hochstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13197000", + "longitude": "8.41244000" + }, + { + "id": "27157", + "name": "Loßburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40000000", + "longitude": "8.45000000" + }, + { + "id": "27124", + "name": "Lobbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37519000", + "longitude": "8.88884000" + }, + { + "id": "27129", + "name": "Loffenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.77214000", + "longitude": "8.38463000" + }, + { + "id": "27147", + "name": "Lonsee", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.54340000", + "longitude": "9.91999000" + }, + { + "id": "27148", + "name": "Lorch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79833000", + "longitude": "9.69140000" + }, + { + "id": "27154", + "name": "Lottstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.63333000", + "longitude": "8.56667000" + }, + { + "id": "27163", + "name": "Ludwigsburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89731000", + "longitude": "9.19161000" + }, + { + "id": "27231", + "name": "Magstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.74471000", + "longitude": "8.96675000" + }, + { + "id": "27232", + "name": "Mahlberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28639000", + "longitude": "7.81411000" + }, + { + "id": "27240", + "name": "Mainhardt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07611000", + "longitude": "9.55639000" + }, + { + "id": "27256", + "name": "Malsch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24722000", + "longitude": "8.68278000" + }, + { + "id": "27259", + "name": "Malterdingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15719000", + "longitude": "7.78608000" + }, + { + "id": "27265", + "name": "Mannheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48910000", + "longitude": "8.46694000" + }, + { + "id": "27269", + "name": "Marbach am Neckar", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93964000", + "longitude": "9.25995000" + }, + { + "id": "27283", + "name": "Markdorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71916000", + "longitude": "9.39028000" + }, + { + "id": "27286", + "name": "Markgröningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.90493000", + "longitude": "9.08059000" + }, + { + "id": "27337", + "name": "Maselheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13333000", + "longitude": "9.88333000" + }, + { + "id": "27338", + "name": "Massenbachhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17778000", + "longitude": "9.04333000" + }, + { + "id": "27342", + "name": "Mauer", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34083000", + "longitude": "8.80028000" + }, + { + "id": "27345", + "name": "Maulbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.99958000", + "longitude": "8.80337000" + }, + { + "id": "27346", + "name": "Maulburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.64631000", + "longitude": "7.78210000" + }, + { + "id": "27556", + "name": "Möckmühl", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32490000", + "longitude": "9.35837000" + }, + { + "id": "27558", + "name": "Mögglingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82320000", + "longitude": "9.96250000" + }, + { + "id": "27559", + "name": "Möglingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88741000", + "longitude": "9.12694000" + }, + { + "id": "27573", + "name": "Mönchweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10040000", + "longitude": "8.42219000" + }, + { + "id": "27575", + "name": "Mönsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.86667000", + "longitude": "8.86667000" + }, + { + "id": "27579", + "name": "Mössingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40567000", + "longitude": "9.05419000" + }, + { + "id": "27582", + "name": "Mötzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53320000", + "longitude": "8.77447000" + }, + { + "id": "27589", + "name": "Mühlacker", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94754000", + "longitude": "8.83675000" + }, + { + "id": "27595", + "name": "Mühlenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25000000", + "longitude": "8.11667000" + }, + { + "id": "27598", + "name": "Mühlhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24861000", + "longitude": "8.72667000" + }, + { + "id": "27599", + "name": "Mühlhausen-Ehingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81102000", + "longitude": "8.81224000" + }, + { + "id": "27600", + "name": "Mühlheim am Bach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.37863000", + "longitude": "8.69735000" + }, + { + "id": "27602", + "name": "Mühlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91667000", + "longitude": "9.01667000" + }, + { + "id": "27606", + "name": "Müllheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80820000", + "longitude": "7.63035000" + }, + { + "id": "27619", + "name": "Münsingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.41126000", + "longitude": "9.49704000" + }, + { + "id": "27627", + "name": "Münstertal\/Schwarzwald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85472000", + "longitude": "7.78417000" + }, + { + "id": "27449", + "name": "Meßkirch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99457000", + "longitude": "9.11479000" + }, + { + "id": "27450", + "name": "Meßstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18317000", + "longitude": "8.96565000" + }, + { + "id": "27356", + "name": "Meckenbeuren", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70000000", + "longitude": "9.56667000" + }, + { + "id": "27359", + "name": "Meckesheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32167000", + "longitude": "8.81944000" + }, + { + "id": "27369", + "name": "Meersburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.69419000", + "longitude": "9.27113000" + }, + { + "id": "27379", + "name": "Mehrstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.37609000", + "longitude": "9.56600000" + }, + { + "id": "27388", + "name": "Meißenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.41035000", + "longitude": "7.77266000" + }, + { + "id": "27406", + "name": "Mengen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04951000", + "longitude": "9.33005000" + }, + { + "id": "27416", + "name": "Merdingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01667000", + "longitude": "7.68333000" + }, + { + "id": "27421", + "name": "Merklingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51135000", + "longitude": "9.75496000" + }, + { + "id": "27429", + "name": "Merzhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96667000", + "longitude": "7.83333000" + }, + { + "id": "27444", + "name": "Metzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53695000", + "longitude": "9.28330000" + }, + { + "id": "27452", + "name": "Michelbach an der Bilz", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07028000", + "longitude": "9.76250000" + }, + { + "id": "27453", + "name": "Michelfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09750000", + "longitude": "9.67861000" + }, + { + "id": "27463", + "name": "Mietingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18333000", + "longitude": "9.90000000" + }, + { + "id": "27480", + "name": "Mittelbiberach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08333000", + "longitude": "9.75000000" + }, + { + "id": "27485", + "name": "Mittelschöntal", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94615000", + "longitude": "9.39520000" + }, + { + "id": "27517", + "name": "Moos", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.72439000", + "longitude": "8.93479000" + }, + { + "id": "27528", + "name": "Mosbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35357000", + "longitude": "9.15106000" + }, + { + "id": "27531", + "name": "Mudau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53444000", + "longitude": "9.20444000" + }, + { + "id": "27533", + "name": "Muggensturm", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.86667000", + "longitude": "8.28333000" + }, + { + "id": "27537", + "name": "Mulfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34028000", + "longitude": "9.80083000" + }, + { + "id": "27538", + "name": "Mundelsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00083000", + "longitude": "9.20778000" + }, + { + "id": "27539", + "name": "Munderkingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23568000", + "longitude": "9.64398000" + }, + { + "id": "27544", + "name": "Murg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.55492000", + "longitude": "8.02182000" + }, + { + "id": "27546", + "name": "Murr", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96207000", + "longitude": "9.25924000" + }, + { + "id": "27547", + "name": "Murrhardt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.98191000", + "longitude": "9.57047000" + }, + { + "id": "27549", + "name": "Mutlangen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82588000", + "longitude": "9.79714000" + }, + { + "id": "27635", + "name": "Nagold", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.54980000", + "longitude": "8.72366000" + }, + { + "id": "27646", + "name": "Nattheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69963000", + "longitude": "10.24209000" + }, + { + "id": "27955", + "name": "Nürtingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62565000", + "longitude": "9.34203000" + }, + { + "id": "27658", + "name": "Neckarbischofsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29625000", + "longitude": "8.96380000" + }, + { + "id": "27659", + "name": "Neckargemünd", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38899000", + "longitude": "8.79590000" + }, + { + "id": "27660", + "name": "Neckargerach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40000000", + "longitude": "9.06667000" + }, + { + "id": "27662", + "name": "Neckarsulm", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.18912000", + "longitude": "9.22527000" + }, + { + "id": "27663", + "name": "Neckartailfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61172000", + "longitude": "9.26371000" + }, + { + "id": "27664", + "name": "Neckartenzlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58981000", + "longitude": "9.23478000" + }, + { + "id": "27665", + "name": "Neckarwestheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04694000", + "longitude": "9.19000000" + }, + { + "id": "27666", + "name": "Neckarzimmern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31917000", + "longitude": "9.13278000" + }, + { + "id": "27668", + "name": "Nehren", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43097000", + "longitude": "9.06990000" + }, + { + "id": "27669", + "name": "Neidenstein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31667000", + "longitude": "8.88472000" + }, + { + "id": "27670", + "name": "Neidlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57865000", + "longitude": "9.56454000" + }, + { + "id": "27672", + "name": "Nellingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.54196000", + "longitude": "9.79053000" + }, + { + "id": "27678", + "name": "Neresheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75511000", + "longitude": "10.33041000" + }, + { + "id": "27705", + "name": "Neubulach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66092000", + "longitude": "8.69611000" + }, + { + "id": "27711", + "name": "Neudenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29181000", + "longitude": "9.26975000" + }, + { + "id": "27718", + "name": "Neuenbürg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84516000", + "longitude": "8.59574000" + }, + { + "id": "27717", + "name": "Neuenburg am Rhein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81431000", + "longitude": "7.56005000" + }, + { + "id": "27727", + "name": "Neuenstadt am Kocher", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23498000", + "longitude": "9.33215000" + }, + { + "id": "27728", + "name": "Neuenstein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20490000", + "longitude": "9.58000000" + }, + { + "id": "27733", + "name": "Neuffen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55460000", + "longitude": "9.37550000" + }, + { + "id": "27734", + "name": "Neufra", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.12880000", + "longitude": "9.47554000" + }, + { + "id": "27746", + "name": "Neuhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79260000", + "longitude": "8.77649000" + }, + { + "id": "27747", + "name": "Neuhausen auf den Fildern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68333000", + "longitude": "9.28333000" + }, + { + "id": "27757", + "name": "Neukirch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65738000", + "longitude": "9.70333000" + }, + { + "id": "27766", + "name": "Neuler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.92803000", + "longitude": "10.06888000" + }, + { + "id": "27768", + "name": "Neulußheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29806000", + "longitude": "8.51833000" + }, + { + "id": "27778", + "name": "Neunkirchen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38694000", + "longitude": "9.01056000" + }, + { + "id": "27813", + "name": "Neuweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66667000", + "longitude": "8.60000000" + }, + { + "id": "27844", + "name": "Niedereschach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13333000", + "longitude": "8.53333000" + }, + { + "id": "27863", + "name": "Niedernhall", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29516000", + "longitude": "9.61604000" + }, + { + "id": "27875", + "name": "Niederstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40000000", + "longitude": "9.91944000" + }, + { + "id": "27876", + "name": "Niederstotzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.54127000", + "longitude": "10.23505000" + }, + { + "id": "27880", + "name": "Niederwangen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.67192000", + "longitude": "9.79880000" + }, + { + "id": "27888", + "name": "Niefern-Öschelbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91667000", + "longitude": "8.78333000" + }, + { + "id": "27921", + "name": "Nordheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10861000", + "longitude": "9.12778000" + }, + { + "id": "27926", + "name": "Nordrach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40000000", + "longitude": "8.08333000" + }, + { + "id": "27938", + "name": "Notzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67076000", + "longitude": "9.45721000" + }, + { + "id": "27944", + "name": "Nußloch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32389000", + "longitude": "8.69556000" + }, + { + "id": "27940", + "name": "Nufringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62253000", + "longitude": "8.89009000" + }, + { + "id": "27968", + "name": "Oberboihingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65000000", + "longitude": "9.36667000" + }, + { + "id": "27971", + "name": "Oberderdingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06556000", + "longitude": "8.80306000" + }, + { + "id": "27973", + "name": "Oberdischingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30000000", + "longitude": "9.83333000" + }, + { + "id": "27983", + "name": "Oberharmersbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.37358000", + "longitude": "8.12542000" + }, + { + "id": "27986", + "name": "Oberhausen-Rheinhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.27389000", + "longitude": "8.47167000" + }, + { + "id": "27988", + "name": "Oberjettingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57468000", + "longitude": "8.77636000" + }, + { + "id": "27989", + "name": "Oberkirch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53241000", + "longitude": "8.07864000" + }, + { + "id": "27990", + "name": "Oberkochen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.78379000", + "longitude": "10.10519000" + }, + { + "id": "27995", + "name": "Obermarchtal", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23279000", + "longitude": "9.57235000" + }, + { + "id": "28004", + "name": "Oberndorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29050000", + "longitude": "8.57221000" + }, + { + "id": "28008", + "name": "Obernheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16297000", + "longitude": "8.86113000" + }, + { + "id": "28020", + "name": "Oberreichenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73333000", + "longitude": "8.66667000" + }, + { + "id": "28022", + "name": "Oberried", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "7.95000000" + }, + { + "id": "28024", + "name": "Oberriexingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.92652000", + "longitude": "9.02701000" + }, + { + "id": "28025", + "name": "Oberrot", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01444000", + "longitude": "9.66722000" + }, + { + "id": "28026", + "name": "Oberrotweil", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08990000", + "longitude": "7.63601000" + }, + { + "id": "28036", + "name": "Obersontheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05667000", + "longitude": "9.89917000" + }, + { + "id": "28037", + "name": "Oberstadion", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18596000", + "longitude": "9.69241000" + }, + { + "id": "28040", + "name": "Oberstenfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.02611000", + "longitude": "9.32083000" + }, + { + "id": "28045", + "name": "Oberteuringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.72409000", + "longitude": "9.46979000" + }, + { + "id": "28056", + "name": "Oberwolfach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31667000", + "longitude": "8.21667000" + }, + { + "id": "28060", + "name": "Obrigheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35194000", + "longitude": "9.09083000" + }, + { + "id": "28063", + "name": "Ochsenhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07029000", + "longitude": "9.95030000" + }, + { + "id": "28075", + "name": "Oedheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24028000", + "longitude": "9.25333000" + }, + { + "id": "28085", + "name": "Offenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24583000", + "longitude": "9.16056000" + }, + { + "id": "28090", + "name": "Offenburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.47377000", + "longitude": "7.94495000" + }, + { + "id": "28094", + "name": "Ofterdingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.41667000", + "longitude": "9.03333000" + }, + { + "id": "28096", + "name": "Oftersheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36528000", + "longitude": "8.58306000" + }, + { + "id": "28097", + "name": "Ohlsbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43222000", + "longitude": "7.99384000" + }, + { + "id": "28100", + "name": "Ohmden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64599000", + "longitude": "9.52698000" + }, + { + "id": "28118", + "name": "Oppenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.47332000", + "longitude": "8.15970000" + }, + { + "id": "28120", + "name": "Oppenweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.98270000", + "longitude": "9.45850000" + }, + { + "id": "28129", + "name": "Orsingen-Nenzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84272000", + "longitude": "8.95909000" + }, + { + "id": "28131", + "name": "Ortenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45158000", + "longitude": "7.97178000" + }, + { + "id": "28144", + "name": "Ostelsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72633000", + "longitude": "8.84816000" + }, + { + "id": "28148", + "name": "Osterburken", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.42997000", + "longitude": "9.42252000" + }, + { + "id": "28160", + "name": "Ostfildern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72704000", + "longitude": "9.24954000" + }, + { + "id": "28164", + "name": "Ostrach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95000000", + "longitude": "9.38333000" + }, + { + "id": "28177", + "name": "Ottenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73649000", + "longitude": "9.74844000" + }, + { + "id": "28180", + "name": "Ottenhofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73560000", + "longitude": "8.12981000" + }, + { + "id": "28192", + "name": "Ottersweier", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67022000", + "longitude": "8.11323000" + }, + { + "id": "28201", + "name": "Owen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58742000", + "longitude": "9.44978000" + }, + { + "id": "28202", + "name": "Owingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80967000", + "longitude": "9.17173000" + }, + { + "id": "28272", + "name": "Pfaffenhofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06444000", + "longitude": "8.97639000" + }, + { + "id": "28276", + "name": "Pfaffenweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "7.75000000" + }, + { + "id": "28280", + "name": "Pfalzgrafenweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52650000", + "longitude": "8.56582000" + }, + { + "id": "28284", + "name": "Pfedelbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17806000", + "longitude": "9.50500000" + }, + { + "id": "28289", + "name": "Pforzheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88436000", + "longitude": "8.69892000" + }, + { + "id": "28291", + "name": "Pfronstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27641000", + "longitude": "9.35995000" + }, + { + "id": "28293", + "name": "Pfullendorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92610000", + "longitude": "9.25780000" + }, + { + "id": "28294", + "name": "Pfullingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46458000", + "longitude": "9.22796000" + }, + { + "id": "28296", + "name": "Philippsburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23170000", + "longitude": "8.46074000" + }, + { + "id": "28313", + "name": "Plankstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.39444000", + "longitude": "8.59611000" + }, + { + "id": "28335", + "name": "Plüderhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79875000", + "longitude": "9.59587000" + }, + { + "id": "28320", + "name": "Pleidelsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95920000", + "longitude": "9.20311000" + }, + { + "id": "28327", + "name": "Pliezhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55934000", + "longitude": "9.20749000" + }, + { + "id": "28328", + "name": "Plochingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71067000", + "longitude": "9.41949000" + }, + { + "id": "28448", + "name": "Radolfzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.74194000", + "longitude": "8.97098000" + }, + { + "id": "28463", + "name": "Rammingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51814000", + "longitude": "10.17197000" + }, + { + "id": "28470", + "name": "Rangendingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38168000", + "longitude": "8.88940000" + }, + { + "id": "28479", + "name": "Rastatt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85851000", + "longitude": "8.20965000" + }, + { + "id": "28495", + "name": "Rauenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26943000", + "longitude": "8.70344000" + }, + { + "id": "28498", + "name": "Ravensburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.78198000", + "longitude": "9.61062000" + }, + { + "id": "28807", + "name": "Rümmingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.64120000", + "longitude": "7.64198000" + }, + { + "id": "28500", + "name": "Rechberghausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73080000", + "longitude": "9.64419000" + }, + { + "id": "28524", + "name": "Regierungsbezirk Stuttgart", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08333000", + "longitude": "9.66667000" + }, + { + "id": "28536", + "name": "Reichartshausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35500000", + "longitude": "8.94528000" + }, + { + "id": "28538", + "name": "Reichenau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.68885000", + "longitude": "9.06355000" + }, + { + "id": "28541", + "name": "Reichenbach an der Fils", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71011000", + "longitude": "9.46429000" + }, + { + "id": "28553", + "name": "Reilingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29833000", + "longitude": "8.56417000" + }, + { + "id": "28578", + "name": "Renchen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58850000", + "longitude": "8.01321000" + }, + { + "id": "28583", + "name": "Renningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76974000", + "longitude": "8.93871000" + }, + { + "id": "28596", + "name": "Reutlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49144000", + "longitude": "9.20427000" + }, + { + "id": "28604", + "name": "Rheinau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66602000", + "longitude": "7.93659000" + }, + { + "id": "28611", + "name": "Rheinfelden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.56013000", + "longitude": "7.78715000" + }, + { + "id": "28613", + "name": "Rheinstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96850000", + "longitude": "8.30704000" + }, + { + "id": "28623", + "name": "Rickenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.61895000", + "longitude": "7.97873000" + }, + { + "id": "28634", + "name": "Riederich", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56029000", + "longitude": "9.26883000" + }, + { + "id": "28636", + "name": "Riedlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15455000", + "longitude": "9.47558000" + }, + { + "id": "28638", + "name": "Riegel", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15111000", + "longitude": "7.74915000" + }, + { + "id": "28642", + "name": "Rielasingen-Worblingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73465000", + "longitude": "8.84013000" + }, + { + "id": "28651", + "name": "Rietheim-Weilheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01667000", + "longitude": "8.76667000" + }, + { + "id": "28663", + "name": "Ringsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24765000", + "longitude": "7.77823000" + }, + { + "id": "28692", + "name": "Rohrdorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56667000", + "longitude": "8.70000000" + }, + { + "id": "28694", + "name": "Roigheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36472000", + "longitude": "9.34000000" + }, + { + "id": "28705", + "name": "Rosenberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01892000", + "longitude": "10.02960000" + }, + { + "id": "28706", + "name": "Rosenfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28639000", + "longitude": "8.72357000" + }, + { + "id": "28716", + "name": "Rot", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92278000", + "longitude": "9.10485000" + }, + { + "id": "28717", + "name": "Rot am See", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25000000", + "longitude": "10.01667000" + }, + { + "id": "28731", + "name": "Rottenacker", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23485000", + "longitude": "9.68956000" + }, + { + "id": "28734", + "name": "Rottenburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.47629000", + "longitude": "8.93528000" + }, + { + "id": "28739", + "name": "Rottweil", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16783000", + "longitude": "8.62719000" + }, + { + "id": "28750", + "name": "Rudersberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88515000", + "longitude": "9.52927000" + }, + { + "id": "28767", + "name": "Ruppertshofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88275000", + "longitude": "9.81506000" + }, + { + "id": "28770", + "name": "Rust", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26667000", + "longitude": "7.73333000" + }, + { + "id": "28771", + "name": "Rutesheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80808000", + "longitude": "8.94536000" + }, + { + "id": "28824", + "name": "Sachsenheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96000000", + "longitude": "9.06472000" + }, + { + "id": "28830", + "name": "Salach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69198000", + "longitude": "9.73715000" + }, + { + "id": "28833", + "name": "Salem", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76258000", + "longitude": "9.29031000" + }, + { + "id": "28856", + "name": "Sandhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34278000", + "longitude": "8.65917000" + }, + { + "id": "28862", + "name": "Sankt Blasien", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76252000", + "longitude": "8.12714000" + }, + { + "id": "28866", + "name": "Sankt Georgen im Schwarzwald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.12716000", + "longitude": "8.33513000" + }, + { + "id": "28870", + "name": "Sankt Johann", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45397000", + "longitude": "9.34396000" + }, + { + "id": "28874", + "name": "Sankt Leon-Rot", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26593000", + "longitude": "8.61803000" + }, + { + "id": "28879", + "name": "Sankt Märgen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00805000", + "longitude": "8.09283000" + }, + { + "id": "28880", + "name": "Sankt Peter", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01475000", + "longitude": "8.03294000" + }, + { + "id": "28886", + "name": "Sasbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63971000", + "longitude": "8.09375000" + }, + { + "id": "28887", + "name": "Sasbachwalden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61667000", + "longitude": "8.13333000" + }, + { + "id": "28893", + "name": "Satteldorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16953000", + "longitude": "10.07957000" + }, + { + "id": "28896", + "name": "Sauldorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.94371000", + "longitude": "9.10833000" + }, + { + "id": "28897", + "name": "Saulgau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01676000", + "longitude": "9.50064000" + }, + { + "id": "29493", + "name": "Sölden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "7.81667000" + }, + { + "id": "29509", + "name": "Süßen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67934000", + "longitude": "9.75534000" + }, + { + "id": "28908", + "name": "Schallstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95855000", + "longitude": "7.75755000" + }, + { + "id": "29103", + "name": "Schömberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.78713000", + "longitude": "8.64495000" + }, + { + "id": "29104", + "name": "Schönaich", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65871000", + "longitude": "9.06012000" + }, + { + "id": "29106", + "name": "Schönau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.43665000", + "longitude": "8.80880000" + }, + { + "id": "29108", + "name": "Schönau im Schwarzwald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.78623000", + "longitude": "7.89445000" + }, + { + "id": "29133", + "name": "Schönwald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10549000", + "longitude": "8.20387000" + }, + { + "id": "28917", + "name": "Schechingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87341000", + "longitude": "9.91744000" + }, + { + "id": "28919", + "name": "Scheer", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07292000", + "longitude": "9.29486000" + }, + { + "id": "28925", + "name": "Schelklingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.37575000", + "longitude": "9.73273000" + }, + { + "id": "28930", + "name": "Schenkenzell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31202000", + "longitude": "8.37212000" + }, + { + "id": "28949", + "name": "Schiltach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28932000", + "longitude": "8.34169000" + }, + { + "id": "28960", + "name": "Schlaitdorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60431000", + "longitude": "9.22268000" + }, + { + "id": "28964", + "name": "Schlat", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65321000", + "longitude": "9.70625000" + }, + { + "id": "28976", + "name": "Schliengen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75698000", + "longitude": "7.57645000" + }, + { + "id": "28977", + "name": "Schlier", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77004000", + "longitude": "9.67354000" + }, + { + "id": "28978", + "name": "Schlierbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67362000", + "longitude": "9.51811000" + }, + { + "id": "28983", + "name": "Schluchsee", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81667000", + "longitude": "8.18333000" + }, + { + "id": "29010", + "name": "Schnürpflingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27280000", + "longitude": "9.99292000" + }, + { + "id": "29013", + "name": "Schonach im Schwarzwald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14229000", + "longitude": "8.20289000" + }, + { + "id": "29019", + "name": "Schopfheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65105000", + "longitude": "7.82089000" + }, + { + "id": "29021", + "name": "Schopfloch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45477000", + "longitude": "8.55131000" + }, + { + "id": "29024", + "name": "Schorndorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80537000", + "longitude": "9.52721000" + }, + { + "id": "29028", + "name": "Schramberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22399000", + "longitude": "8.38583000" + }, + { + "id": "29031", + "name": "Schriesheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47372000", + "longitude": "8.66360000" + }, + { + "id": "29033", + "name": "Schrozberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34528000", + "longitude": "9.97944000" + }, + { + "id": "29036", + "name": "Schuttertal", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26667000", + "longitude": "7.95000000" + }, + { + "id": "29037", + "name": "Schutterwald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45000000", + "longitude": "7.88333000" + }, + { + "id": "29047", + "name": "Schwaigern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.14494000", + "longitude": "9.05525000" + }, + { + "id": "29048", + "name": "Schwaikheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87733000", + "longitude": "9.34958000" + }, + { + "id": "29056", + "name": "Schwanau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.36669000", + "longitude": "7.76244000" + }, + { + "id": "29065", + "name": "Schwarzach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.74738000", + "longitude": "8.03738000" + }, + { + "id": "29095", + "name": "Schwäbisch Gmünd", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79947000", + "longitude": "9.79809000" + }, + { + "id": "29096", + "name": "Schwäbisch Hall", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11127000", + "longitude": "9.73908000" + }, + { + "id": "29097", + "name": "Schwörstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.59314000", + "longitude": "7.87840000" + }, + { + "id": "29086", + "name": "Schwendi", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17424000", + "longitude": "9.97541000" + }, + { + "id": "29088", + "name": "Schwenningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10000000", + "longitude": "9.00000000" + }, + { + "id": "29092", + "name": "Schwetzingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38217000", + "longitude": "8.58230000" + }, + { + "id": "29093", + "name": "Schwieberdingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87644000", + "longitude": "9.07439000" + }, + { + "id": "29141", + "name": "Seckach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44222000", + "longitude": "9.33417000" + }, + { + "id": "29143", + "name": "Seebach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57621000", + "longitude": "8.17048000" + }, + { + "id": "29148", + "name": "Seedorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24908000", + "longitude": "8.48993000" + }, + { + "id": "29157", + "name": "Seelbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31055000", + "longitude": "7.94069000" + }, + { + "id": "29175", + "name": "Seitingen-Oberflacht", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01667000", + "longitude": "8.71667000" + }, + { + "id": "29196", + "name": "Sersheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96667000", + "longitude": "9.01667000" + }, + { + "id": "29201", + "name": "Sexau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10209000", + "longitude": "7.90757000" + }, + { + "id": "29206", + "name": "Sickenhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53252000", + "longitude": "9.18114000" + }, + { + "id": "29212", + "name": "Siegelsbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26972000", + "longitude": "9.08972000" + }, + { + "id": "29226", + "name": "Sigmaringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08829000", + "longitude": "9.23033000" + }, + { + "id": "29227", + "name": "Sigmaringendorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06586000", + "longitude": "9.26208000" + }, + { + "id": "29236", + "name": "Simmersfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61667000", + "longitude": "8.51667000" + }, + { + "id": "29238", + "name": "Simmozheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75127000", + "longitude": "8.81142000" + }, + { + "id": "29239", + "name": "Sindelfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70000000", + "longitude": "9.01667000" + }, + { + "id": "29241", + "name": "Singen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75935000", + "longitude": "8.84030000" + }, + { + "id": "29245", + "name": "Sinsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25290000", + "longitude": "8.87867000" + }, + { + "id": "29246", + "name": "Sinzheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76667000", + "longitude": "8.16667000" + }, + { + "id": "29250", + "name": "Sipplingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.79678000", + "longitude": "9.09737000" + }, + { + "id": "29277", + "name": "Sontheim an der Brenz", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55235000", + "longitude": "10.29097000" + }, + { + "id": "29284", + "name": "Spaichingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07477000", + "longitude": "8.73508000" + }, + { + "id": "29291", + "name": "Spechbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34639000", + "longitude": "8.88333000" + }, + { + "id": "29301", + "name": "Spiegelberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04083000", + "longitude": "9.44444000" + }, + { + "id": "29305", + "name": "Spraitbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88065000", + "longitude": "9.76217000" + }, + { + "id": "29334", + "name": "Staig", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29998000", + "longitude": "9.99138000" + }, + { + "id": "29345", + "name": "Staufen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75686000", + "longitude": "8.21078000" + }, + { + "id": "29450", + "name": "Stödtlen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00000000", + "longitude": "10.30000000" + }, + { + "id": "29455", + "name": "Stühlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.74580000", + "longitude": "8.44813000" + }, + { + "id": "29352", + "name": "Stegen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.98333000", + "longitude": "7.96667000" + }, + { + "id": "29394", + "name": "Steißlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80000000", + "longitude": "8.93333000" + }, + { + "id": "29360", + "name": "Steinach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30000000", + "longitude": "8.05000000" + }, + { + "id": "29369", + "name": "Steinen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.64446000", + "longitude": "7.73914000" + }, + { + "id": "29370", + "name": "Steinenbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66667000", + "longitude": "9.11667000" + }, + { + "id": "29381", + "name": "Steinheim am Albuch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69090000", + "longitude": "10.06382000" + }, + { + "id": "29382", + "name": "Steinheim am der Murr", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96821000", + "longitude": "9.27708000" + }, + { + "id": "29389", + "name": "Steinmauern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.90095000", + "longitude": "8.19692000" + }, + { + "id": "29402", + "name": "Sternenfels", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05139000", + "longitude": "8.85083000" + }, + { + "id": "29405", + "name": "Stetten am Kalten Markt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.12419000", + "longitude": "9.07775000" + }, + { + "id": "29409", + "name": "Stimpfach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06135000", + "longitude": "10.09274000" + }, + { + "id": "29410", + "name": "Stockach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85105000", + "longitude": "9.00910000" + }, + { + "id": "29432", + "name": "Straßberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17805000", + "longitude": "9.09059000" + }, + { + "id": "29444", + "name": "Stuttgart", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.78232000", + "longitude": "9.17702000" + }, + { + "id": "29445", + "name": "Stuttgart Feuerbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80867000", + "longitude": "9.15719000" + }, + { + "id": "29446", + "name": "Stuttgart Mühlhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84232000", + "longitude": "9.23028000" + }, + { + "id": "29447", + "name": "Stuttgart-Ost", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.78363000", + "longitude": "9.21032000" + }, + { + "id": "29466", + "name": "Sulz am Neckar", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.36241000", + "longitude": "8.63309000" + }, + { + "id": "29470", + "name": "Sulzbach an der Murr", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00303000", + "longitude": "9.50030000" + }, + { + "id": "29473", + "name": "Sulzburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84116000", + "longitude": "7.70777000" + }, + { + "id": "29477", + "name": "Sulzfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10472000", + "longitude": "8.85583000" + }, + { + "id": "29514", + "name": "Talheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08333000", + "longitude": "9.19306000" + }, + { + "id": "29516", + "name": "Tamm", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91988000", + "longitude": "9.11556000" + }, + { + "id": "29525", + "name": "Tannhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.97870000", + "longitude": "10.36129000" + }, + { + "id": "29526", + "name": "Tannheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00000000", + "longitude": "10.08333000" + }, + { + "id": "29533", + "name": "Tauberbischofsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62472000", + "longitude": "9.66278000" + }, + { + "id": "29698", + "name": "Täferrot", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84972000", + "longitude": "9.83824000" + }, + { + "id": "29704", + "name": "Tübingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52266000", + "longitude": "9.05222000" + }, + { + "id": "29705", + "name": "Tübingen Region", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16667000", + "longitude": "9.50000000" + }, + { + "id": "29557", + "name": "Tengen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82128000", + "longitude": "8.66117000" + }, + { + "id": "29558", + "name": "Teningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.12952000", + "longitude": "7.81205000" + }, + { + "id": "29559", + "name": "Tennenbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.19041000", + "longitude": "8.35176000" + }, + { + "id": "29565", + "name": "Tettnang", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66857000", + "longitude": "9.59132000" + }, + { + "id": "29610", + "name": "Tiefenbronn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82398000", + "longitude": "8.80129000" + }, + { + "id": "29619", + "name": "Titisee-Neustadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92104000", + "longitude": "8.19063000" + }, + { + "id": "29627", + "name": "Todtmoos", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.74014000", + "longitude": "8.00183000" + }, + { + "id": "29628", + "name": "Todtnau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82941000", + "longitude": "7.94380000" + }, + { + "id": "29664", + "name": "Triberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13175000", + "longitude": "8.23317000" + }, + { + "id": "29676", + "name": "Trochtelfingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30843000", + "longitude": "9.24491000" + }, + { + "id": "29681", + "name": "Trossingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07667000", + "longitude": "8.64409000" + }, + { + "id": "29690", + "name": "Tuningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03333000", + "longitude": "8.60000000" + }, + { + "id": "29694", + "name": "Tuttlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.98464000", + "longitude": "8.81770000" + }, + { + "id": "29712", + "name": "Ubstadt-Weiher", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16296000", + "longitude": "8.63165000" + }, + { + "id": "29733", + "name": "Uhingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70475000", + "longitude": "9.58570000" + }, + { + "id": "29734", + "name": "Uhldingen-Mühlhofen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73333000", + "longitude": "9.25000000" + }, + { + "id": "29737", + "name": "Ulm", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.39841000", + "longitude": "9.99155000" + }, + { + "id": "29740", + "name": "Umkirch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03333000", + "longitude": "7.76667000" + }, + { + "id": "29742", + "name": "Ummendorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06667000", + "longitude": "9.83333000" + }, + { + "id": "29747", + "name": "Unlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16734000", + "longitude": "9.52219000" + }, + { + "id": "29757", + "name": "Untereisesheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.21111000", + "longitude": "9.20194000" + }, + { + "id": "29758", + "name": "Unterensingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65452000", + "longitude": "9.35799000" + }, + { + "id": "29761", + "name": "Untergruppenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08940000", + "longitude": "9.27516000" + }, + { + "id": "29763", + "name": "Unterhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42980000", + "longitude": "9.25504000" + }, + { + "id": "29764", + "name": "Unterjettingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56230000", + "longitude": "8.78445000" + }, + { + "id": "29765", + "name": "Unterkirnach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07946000", + "longitude": "8.36575000" + }, + { + "id": "29766", + "name": "Unterkrozingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91933000", + "longitude": "7.69045000" + }, + { + "id": "29772", + "name": "Untermünkheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15255000", + "longitude": "9.73384000" + }, + { + "id": "29775", + "name": "Unterreichenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82496000", + "longitude": "8.70885000" + }, + { + "id": "29778", + "name": "Unterschneidheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93333000", + "longitude": "10.36667000" + }, + { + "id": "29790", + "name": "Urbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.81680000", + "longitude": "9.57690000" + }, + { + "id": "29804", + "name": "Uttenweiler", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15000000", + "longitude": "9.61667000" + }, + { + "id": "29810", + "name": "Vaihingen an der Enz", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93563000", + "longitude": "8.96045000" + }, + { + "id": "29888", + "name": "Vöhrenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05000000", + "longitude": "8.30000000" + }, + { + "id": "29889", + "name": "Vöhringen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.33446000", + "longitude": "8.66392000" + }, + { + "id": "29894", + "name": "Vörstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06667000", + "longitude": "7.85000000" + }, + { + "id": "29828", + "name": "Vellberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08430000", + "longitude": "9.87914000" + }, + { + "id": "29835", + "name": "Veringenstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18515000", + "longitude": "9.21079000" + }, + { + "id": "29852", + "name": "Villingen-Schwenningen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06226000", + "longitude": "8.49358000" + }, + { + "id": "29853", + "name": "Villingendorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.20000000", + "longitude": "8.58333000" + }, + { + "id": "29866", + "name": "Vogt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76667000", + "longitude": "9.76667000" + }, + { + "id": "29868", + "name": "Vogtsburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.09688000", + "longitude": "7.64185000" + }, + { + "id": "29874", + "name": "Volkertshausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81667000", + "longitude": "8.86667000" + }, + { + "id": "29916", + "name": "Waghäusel", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24991000", + "longitude": "8.51257000" + }, + { + "id": "29922", + "name": "Waiblingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83241000", + "longitude": "9.31641000" + }, + { + "id": "29923", + "name": "Waibstadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29505000", + "longitude": "8.91771000" + }, + { + "id": "29928", + "name": "Wain", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18904000", + "longitude": "10.02090000" + }, + { + "id": "29932", + "name": "Wald", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "9.16667000" + }, + { + "id": "29940", + "name": "Waldburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75710000", + "longitude": "9.71342000" + }, + { + "id": "29945", + "name": "Waldenbuch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63830000", + "longitude": "9.13256000" + }, + { + "id": "29947", + "name": "Waldenburg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.18468000", + "longitude": "9.63994000" + }, + { + "id": "29954", + "name": "Waldkirch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.09585000", + "longitude": "7.96371000" + }, + { + "id": "29963", + "name": "Waldshut-Tiengen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.62323000", + "longitude": "8.21717000" + }, + { + "id": "29965", + "name": "Waldstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76615000", + "longitude": "9.82135000" + }, + { + "id": "29968", + "name": "Walheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01417000", + "longitude": "9.15111000" + }, + { + "id": "29973", + "name": "Walldürn", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58358000", + "longitude": "9.36642000" + }, + { + "id": "29972", + "name": "Walldorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30637000", + "longitude": "8.64236000" + }, + { + "id": "29985", + "name": "Wallhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.21042000", + "longitude": "10.06219000" + }, + { + "id": "30004", + "name": "Wangen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.68950000", + "longitude": "9.83247000" + }, + { + "id": "30009", + "name": "Wannweil", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51667000", + "longitude": "9.15000000" + }, + { + "id": "30026", + "name": "Warthausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.12863000", + "longitude": "9.79749000" + }, + { + "id": "30437", + "name": "Wäschenbeuren", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75991000", + "longitude": "9.68735000" + }, + { + "id": "30445", + "name": "Wört", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03047000", + "longitude": "10.27239000" + }, + { + "id": "30452", + "name": "Wössingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01205000", + "longitude": "8.60754000" + }, + { + "id": "30460", + "name": "Wüstenrot", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08083000", + "longitude": "9.46056000" + }, + { + "id": "30059", + "name": "Wehingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14533000", + "longitude": "8.79151000" + }, + { + "id": "30061", + "name": "Wehr", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.62983000", + "longitude": "7.90423000" + }, + { + "id": "30122", + "name": "Weißbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29717000", + "longitude": "9.59531000" + }, + { + "id": "30071", + "name": "Weidenstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55250000", + "longitude": "9.99610000" + }, + { + "id": "30079", + "name": "Weikersheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47866000", + "longitude": "9.89977000" + }, + { + "id": "30081", + "name": "Weil am Rhein", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.59331000", + "longitude": "7.62082000" + }, + { + "id": "30082", + "name": "Weil der Stadt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.74953000", + "longitude": "8.87176000" + }, + { + "id": "30083", + "name": "Weil im Schönbuch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62270000", + "longitude": "9.06355000" + }, + { + "id": "30092", + "name": "Weilheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66667000", + "longitude": "8.23333000" + }, + { + "id": "30093", + "name": "Weilheim an der Teck", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61572000", + "longitude": "9.53751000" + }, + { + "id": "30100", + "name": "Weingarten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05457000", + "longitude": "8.52678000" + }, + { + "id": "30101", + "name": "Weinheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54887000", + "longitude": "8.66697000" + }, + { + "id": "30102", + "name": "Weinsberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15127000", + "longitude": "9.28762000" + }, + { + "id": "30104", + "name": "Weinstadt-Endersbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.81311000", + "longitude": "9.36387000" + }, + { + "id": "30108", + "name": "Weisenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72757000", + "longitude": "8.35378000" + }, + { + "id": "30112", + "name": "Weissach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84687000", + "longitude": "8.92828000" + }, + { + "id": "30113", + "name": "Weisweil", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.19939000", + "longitude": "7.67713000" + }, + { + "id": "30144", + "name": "Wellendingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14745000", + "longitude": "8.70375000" + }, + { + "id": "30149", + "name": "Welzheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87675000", + "longitude": "9.63434000" + }, + { + "id": "30158", + "name": "Wendlingen am Neckar", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67124000", + "longitude": "9.37632000" + }, + { + "id": "30166", + "name": "Werbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.67083000", + "longitude": "9.63944000" + }, + { + "id": "30178", + "name": "Wernau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69306000", + "longitude": "9.41533000" + }, + { + "id": "30188", + "name": "Wertheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75900000", + "longitude": "9.50852000" + }, + { + "id": "30208", + "name": "Westerheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51511000", + "longitude": "9.62424000" + }, + { + "id": "30216", + "name": "Westerstetten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51916000", + "longitude": "9.95494000" + }, + { + "id": "30218", + "name": "Westhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88333000", + "longitude": "10.18333000" + }, + { + "id": "30237", + "name": "Widdern", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31825000", + "longitude": "9.42209000" + }, + { + "id": "30251", + "name": "Wiernsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88333000", + "longitude": "8.85000000" + }, + { + "id": "30257", + "name": "Wiesenbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36139000", + "longitude": "8.80361000" + }, + { + "id": "30260", + "name": "Wiesensteig", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56127000", + "longitude": "9.62540000" + }, + { + "id": "30264", + "name": "Wiesloch", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29504000", + "longitude": "8.69846000" + }, + { + "id": "30273", + "name": "Wildberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62336000", + "longitude": "8.74518000" + }, + { + "id": "30283", + "name": "Wilhelmsdorf", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.86612000", + "longitude": "9.42621000" + }, + { + "id": "30285", + "name": "Wilhelmsfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47056000", + "longitude": "8.75361000" + }, + { + "id": "30298", + "name": "Willstätt", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.54071000", + "longitude": "7.89314000" + }, + { + "id": "30308", + "name": "Wimsheim", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85000000", + "longitude": "8.83333000" + }, + { + "id": "30326", + "name": "Winnenden", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87563000", + "longitude": "9.39819000" + }, + { + "id": "30330", + "name": "Winterbach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79918000", + "longitude": "9.47914000" + }, + { + "id": "30334", + "name": "Winterlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18333000", + "longitude": "9.11667000" + }, + { + "id": "30364", + "name": "Wittnau", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95000000", + "longitude": "7.81667000" + }, + { + "id": "30374", + "name": "Wolfach", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29319000", + "longitude": "8.21580000" + }, + { + "id": "30375", + "name": "Wolfegg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82030000", + "longitude": "9.79491000" + }, + { + "id": "30386", + "name": "Wolfschlugen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65000000", + "longitude": "9.28333000" + }, + { + "id": "30397", + "name": "Wolpertshausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16750000", + "longitude": "9.84472000" + }, + { + "id": "30398", + "name": "Wolpertswende", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89471000", + "longitude": "9.61202000" + }, + { + "id": "30422", + "name": "Wurmberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.86667000", + "longitude": "8.81667000" + }, + { + "id": "30423", + "name": "Wurmlingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00000000", + "longitude": "8.78333000" + }, + { + "id": "30433", + "name": "Wutöschingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66019000", + "longitude": "8.36755000" + }, + { + "id": "30434", + "name": "Wyhl", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16617000", + "longitude": "7.64917000" + }, + { + "id": "30463", + "name": "Zaberfeld", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05611000", + "longitude": "8.92694000" + }, + { + "id": "30466", + "name": "Zaisenhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10667000", + "longitude": "8.81278000" + }, + { + "id": "30484", + "name": "Zell", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69235000", + "longitude": "8.06301000" + }, + { + "id": "30487", + "name": "Zell im Wiesental", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70555000", + "longitude": "7.85248000" + }, + { + "id": "30488", + "name": "Zell unter Aichelberg", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64882000", + "longitude": "9.57137000" + }, + { + "id": "30508", + "name": "Zimmern ob Rottweil", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16660000", + "longitude": "8.59436000" + }, + { + "id": "30530", + "name": "Zuzenhausen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29636000", + "longitude": "8.82254000" + }, + { + "id": "30532", + "name": "Zweiflingen", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25639000", + "longitude": "9.51806000" + }, + { + "id": "30535", + "name": "Zwiefalten", + "state_id": 3006, + "state_code": "BW", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23396000", + "longitude": "9.46232000" + }, + { + "id": "23749", + "name": "Aßling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99297000", + "longitude": "12.00643000" + }, + { + "id": "23466", + "name": "Abenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24282000", + "longitude": "10.96401000" + }, + { + "id": "23467", + "name": "Abensberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.81684000", + "longitude": "11.84980000" + }, + { + "id": "23468", + "name": "Absberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.14438000", + "longitude": "10.88101000" + }, + { + "id": "23474", + "name": "Achslach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.97171000", + "longitude": "12.93511000" + }, + { + "id": "23481", + "name": "Adelsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47022000", + "longitude": "10.68522000" + }, + { + "id": "23483", + "name": "Adelshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18333000", + "longitude": "11.11667000" + }, + { + "id": "23484", + "name": "Adelsried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42465000", + "longitude": "10.71828000" + }, + { + "id": "23485", + "name": "Adelzhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35671000", + "longitude": "11.13851000" + }, + { + "id": "23491", + "name": "Adlkofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55000000", + "longitude": "12.26667000" + }, + { + "id": "23496", + "name": "Affing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46667000", + "longitude": "10.98333000" + }, + { + "id": "23499", + "name": "Aham", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.34821000", + "longitude": "12.16156000" + }, + { + "id": "23509", + "name": "Aholfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94283000", + "longitude": "12.46857000" + }, + { + "id": "23510", + "name": "Aholming", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73542000", + "longitude": "12.90997000" + }, + { + "id": "23511", + "name": "Ahorn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23762000", + "longitude": "10.95417000" + }, + { + "id": "23516", + "name": "Aichach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45755000", + "longitude": "11.13413000" + }, + { + "id": "23518", + "name": "Aichen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22898000", + "longitude": "10.53949000" + }, + { + "id": "23521", + "name": "Aidenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57028000", + "longitude": "13.09000000" + }, + { + "id": "23522", + "name": "Aidhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15000000", + "longitude": "10.43333000" + }, + { + "id": "23524", + "name": "Aiglsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69211000", + "longitude": "11.70831000" + }, + { + "id": "23525", + "name": "Aindling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51360000", + "longitude": "10.95315000" + }, + { + "id": "23526", + "name": "Ainring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81311000", + "longitude": "12.94048000" + }, + { + "id": "23527", + "name": "Aislingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50648000", + "longitude": "10.45778000" + }, + { + "id": "23529", + "name": "Aitrang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81667000", + "longitude": "10.53333000" + }, + { + "id": "23531", + "name": "Albaching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11011000", + "longitude": "12.11074000" + }, + { + "id": "23536", + "name": "Albertshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76667000", + "longitude": "10.16667000" + }, + { + "id": "23543", + "name": "Aldersbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58972000", + "longitude": "13.08971000" + }, + { + "id": "23545", + "name": "Alerheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85000000", + "longitude": "10.61667000" + }, + { + "id": "23546", + "name": "Alesheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04648000", + "longitude": "10.86496000" + }, + { + "id": "23547", + "name": "Aletshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.19859000", + "longitude": "10.38877000" + }, + { + "id": "23550", + "name": "Alfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.43333000", + "longitude": "11.55000000" + }, + { + "id": "23558", + "name": "Allersberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25132000", + "longitude": "11.23659000" + }, + { + "id": "23559", + "name": "Allershausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43333000", + "longitude": "11.60000000" + }, + { + "id": "23560", + "name": "Alling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14034000", + "longitude": "11.30144000" + }, + { + "id": "23639", + "name": "Altötting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22533000", + "longitude": "12.67665000" + }, + { + "id": "23583", + "name": "Altdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38560000", + "longitude": "11.35730000" + }, + { + "id": "23587", + "name": "Alteglofsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91667000", + "longitude": "12.20000000" + }, + { + "id": "23595", + "name": "Altenbuch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82861000", + "longitude": "9.40139000" + }, + { + "id": "23599", + "name": "Altendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08424000", + "longitude": "11.16786000" + }, + { + "id": "23607", + "name": "Altenkunstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.12504000", + "longitude": "11.25030000" + }, + { + "id": "23608", + "name": "Altenmarkt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77960000", + "longitude": "12.13560000" + }, + { + "id": "23610", + "name": "Altenmünster", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46495000", + "longitude": "10.59065000" + }, + { + "id": "23614", + "name": "Altenstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16030000", + "longitude": "10.11437000" + }, + { + "id": "23616", + "name": "Altenthann", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10000000", + "longitude": "12.30000000" + }, + { + "id": "23618", + "name": "Alterhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84659000", + "longitude": "12.62012000" + }, + { + "id": "23620", + "name": "Altfraunhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45000000", + "longitude": "12.16667000" + }, + { + "id": "23622", + "name": "Althegnenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23333000", + "longitude": "11.06667000" + }, + { + "id": "23630", + "name": "Altomünster", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38767000", + "longitude": "11.25691000" + }, + { + "id": "23638", + "name": "Altusried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80410000", + "longitude": "10.21429000" + }, + { + "id": "23641", + "name": "Alzenau in Unterfranken", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08880000", + "longitude": "9.06455000" + }, + { + "id": "23643", + "name": "Amberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44287000", + "longitude": "11.86267000" + }, + { + "id": "23645", + "name": "Amendingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00302000", + "longitude": "10.17918000" + }, + { + "id": "23646", + "name": "Amerang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99139000", + "longitude": "12.30795000" + }, + { + "id": "23647", + "name": "Ammerndorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.42335000", + "longitude": "10.85011000" + }, + { + "id": "23648", + "name": "Ammerthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44123000", + "longitude": "11.76181000" + }, + { + "id": "23649", + "name": "Ampfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25400000", + "longitude": "12.41515000" + }, + { + "id": "23653", + "name": "Andechs", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.97464000", + "longitude": "11.18279000" + }, + { + "id": "23666", + "name": "Ansbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30481000", + "longitude": "10.59310000" + }, + { + "id": "23667", + "name": "Antdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75133000", + "longitude": "11.30845000" + }, + { + "id": "23668", + "name": "Anzing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15171000", + "longitude": "11.85330000" + }, + { + "id": "23672", + "name": "Apfeldorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90000000", + "longitude": "10.93333000" + }, + { + "id": "23679", + "name": "Arberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.14428000", + "longitude": "10.61722000" + }, + { + "id": "23681", + "name": "Aresing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27704000", + "longitude": "12.60538000" + }, + { + "id": "23684", + "name": "Arnbruck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13012000", + "longitude": "12.99820000" + }, + { + "id": "23687", + "name": "Arnschwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.27663000", + "longitude": "12.81595000" + }, + { + "id": "23689", + "name": "Arnstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97767000", + "longitude": "9.96983000" + }, + { + "id": "23690", + "name": "Arnstorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55840000", + "longitude": "12.81674000" + }, + { + "id": "23692", + "name": "Arrach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19149000", + "longitude": "12.99387000" + }, + { + "id": "23697", + "name": "Arzberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.05774000", + "longitude": "12.18676000" + }, + { + "id": "23700", + "name": "Asbach-Bäumenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68333000", + "longitude": "10.81667000" + }, + { + "id": "23701", + "name": "Ascha", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00000000", + "longitude": "12.63333000" + }, + { + "id": "23702", + "name": "Aschaffenburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97704000", + "longitude": "9.15214000" + }, + { + "id": "23703", + "name": "Aschau am Inn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.19845000", + "longitude": "12.35003000" + }, + { + "id": "23704", + "name": "Aschau im Chiemgau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77689000", + "longitude": "12.32297000" + }, + { + "id": "23708", + "name": "Aschheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17112000", + "longitude": "11.71675000" + }, + { + "id": "23715", + "name": "Attenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65072000", + "longitude": "11.84850000" + }, + { + "id": "23716", + "name": "Attenkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50526000", + "longitude": "11.76011000" + }, + { + "id": "23718", + "name": "Atting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89412000", + "longitude": "12.48776000" + }, + { + "id": "23722", + "name": "Au in der Hallertau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55838000", + "longitude": "11.74138000" + }, + { + "id": "23743", + "name": "Außernzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72409000", + "longitude": "13.20291000" + }, + { + "id": "23723", + "name": "Aub", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55267000", + "longitude": "10.06530000" + }, + { + "id": "23725", + "name": "Auerbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80353000", + "longitude": "13.09952000" + }, + { + "id": "23728", + "name": "Aufhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87205000", + "longitude": "12.28210000" + }, + { + "id": "23729", + "name": "Aufseß", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88370000", + "longitude": "11.22692000" + }, + { + "id": "23731", + "name": "Augsburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.37154000", + "longitude": "10.89851000" + }, + { + "id": "23735", + "name": "Auhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00790000", + "longitude": "10.62240000" + }, + { + "id": "23740", + "name": "Aura im Sinngrund", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17819000", + "longitude": "9.57547000" + }, + { + "id": "23745", + "name": "Aying", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.97010000", + "longitude": "11.77752000" + }, + { + "id": "23747", + "name": "Aystetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40556000", + "longitude": "10.77742000" + }, + { + "id": "30556", + "name": "Übersee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81667000", + "longitude": "12.48333000" + }, + { + "id": "30557", + "name": "Üchtelhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09184000", + "longitude": "10.26861000" + }, + { + "id": "23751", + "name": "Baar-Ebenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67065000", + "longitude": "11.46983000" + }, + { + "id": "23752", + "name": "Babenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14497000", + "longitude": "10.25325000" + }, + { + "id": "23754", + "name": "Babensham", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08333000", + "longitude": "12.26667000" + }, + { + "id": "23755", + "name": "Bach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40000000", + "longitude": "12.38333000" + }, + { + "id": "23757", + "name": "Bachhagel", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63217000", + "longitude": "10.32045000" + }, + { + "id": "23759", + "name": "Bad Abbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93754000", + "longitude": "12.04494000" + }, + { + "id": "23760", + "name": "Bad Aibling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.86380000", + "longitude": "12.01055000" + }, + { + "id": "23761", + "name": "Bad Alexandersbad", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "12.01667000" + }, + { + "id": "23769", + "name": "Bad Berneck im Fichtelgebirge", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04564000", + "longitude": "11.67238000" + }, + { + "id": "23772", + "name": "Bad Birnbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.44489000", + "longitude": "13.09103000" + }, + { + "id": "23774", + "name": "Bad Bocklet", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26648000", + "longitude": "10.07902000" + }, + { + "id": "23778", + "name": "Bad Brückenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30853000", + "longitude": "9.78985000" + }, + { + "id": "23792", + "name": "Bad Endorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90901000", + "longitude": "12.29795000" + }, + { + "id": "23799", + "name": "Bad Füssing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35100000", + "longitude": "13.31200000" + }, + { + "id": "23795", + "name": "Bad Feilnbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77331000", + "longitude": "12.00973000" + }, + { + "id": "23801", + "name": "Bad Griesbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45181000", + "longitude": "13.19329000" + }, + { + "id": "23804", + "name": "Bad Heilbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.74671000", + "longitude": "11.45934000" + }, + { + "id": "23819", + "name": "Bad Königshofen im Grabfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30082000", + "longitude": "10.46887000" + }, + { + "id": "23813", + "name": "Bad Kissingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20228000", + "longitude": "10.07784000" + }, + { + "id": "23816", + "name": "Bad Kohlgrub", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66667000", + "longitude": "11.05000000" + }, + { + "id": "23843", + "name": "Bad Neustadt an der Saale", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.32174000", + "longitude": "10.20673000" + }, + { + "id": "23850", + "name": "Bad Reichenhall", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.72947000", + "longitude": "12.87819000" + }, + { + "id": "23870", + "name": "Bad Staffelstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10199000", + "longitude": "11.00128000" + }, + { + "id": "23871", + "name": "Bad Steben", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.36648000", + "longitude": "11.64438000" + }, + { + "id": "23878", + "name": "Bad Tölz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76111000", + "longitude": "11.55890000" + }, + { + "id": "23889", + "name": "Bad Wörishofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00674000", + "longitude": "10.59666000" + }, + { + "id": "23882", + "name": "Bad Wiessee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71667000", + "longitude": "11.71667000" + }, + { + "id": "23887", + "name": "Bad Windsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50274000", + "longitude": "10.41539000" + }, + { + "id": "23903", + "name": "Baierbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02030000", + "longitude": "11.48689000" + }, + { + "id": "23905", + "name": "Baiersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65807000", + "longitude": "11.03594000" + }, + { + "id": "23907", + "name": "Baisweil", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.94439000", + "longitude": "10.54007000" + }, + { + "id": "23916", + "name": "Balzhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24228000", + "longitude": "10.49366000" + }, + { + "id": "23917", + "name": "Bamberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89873000", + "longitude": "10.90067000" + }, + { + "id": "23924", + "name": "Barbing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00000000", + "longitude": "12.20000000" + }, + { + "id": "23954", + "name": "Bastheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40080000", + "longitude": "10.20372000" + }, + { + "id": "23957", + "name": "Baudenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62512000", + "longitude": "10.53598000" + }, + { + "id": "23960", + "name": "Baunach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98592000", + "longitude": "10.85179000" + }, + { + "id": "23966", + "name": "Bayerbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70450000", + "longitude": "12.29750000" + }, + { + "id": "23967", + "name": "Bayerisch Eisenstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11667000", + "longitude": "13.20000000" + }, + { + "id": "23968", + "name": "Bayerisch Gmain", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71667000", + "longitude": "12.90000000" + }, + { + "id": "23969", + "name": "Bayreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94782000", + "longitude": "11.57893000" + }, + { + "id": "23970", + "name": "Bayrischzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.67440000", + "longitude": "12.01449000" + }, + { + "id": "24458", + "name": "Bächingen an der Brenz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.54627000", + "longitude": "10.31281000" + }, + { + "id": "24460", + "name": "Bärnau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81079000", + "longitude": "12.43318000" + }, + { + "id": "24461", + "name": "Böbing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75562000", + "longitude": "10.98877000" + }, + { + "id": "24464", + "name": "Böbrach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93322000", + "longitude": "12.88304000" + }, + { + "id": "24487", + "name": "Büchenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26778000", + "longitude": "11.05889000" + }, + { + "id": "24489", + "name": "Büchlberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67112000", + "longitude": "13.52100000" + }, + { + "id": "24503", + "name": "Bürgstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71476000", + "longitude": "9.26916000" + }, + { + "id": "24508", + "name": "Bütthard", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59913000", + "longitude": "9.87987000" + }, + { + "id": "23975", + "name": "Bechtsrieth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64487000", + "longitude": "12.20997000" + }, + { + "id": "24002", + "name": "Bellenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25726000", + "longitude": "10.09094000" + }, + { + "id": "24009", + "name": "Benediktbeuern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70624000", + "longitude": "11.41522000" + }, + { + "id": "24013", + "name": "Benningen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96667000", + "longitude": "10.21667000" + }, + { + "id": "24022", + "name": "Beratzhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09517000", + "longitude": "11.80970000" + }, + { + "id": "24023", + "name": "Berching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10695000", + "longitude": "11.44138000" + }, + { + "id": "24024", + "name": "Berchtesgaden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.63236000", + "longitude": "13.00187000" + }, + { + "id": "24025", + "name": "Berg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81417000", + "longitude": "12.14161000" + }, + { + "id": "24027", + "name": "Berg im Gau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63333000", + "longitude": "11.25000000" + }, + { + "id": "24035", + "name": "Bergen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80837000", + "longitude": "12.58982000" + }, + { + "id": "24043", + "name": "Bergkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25671000", + "longitude": "11.36488000" + }, + { + "id": "24044", + "name": "Berglern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38407000", + "longitude": "11.93012000" + }, + { + "id": "24046", + "name": "Bergrheinfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01028000", + "longitude": "10.18089000" + }, + { + "id": "24048", + "name": "Bergtheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "10.06667000" + }, + { + "id": "24060", + "name": "Bernau am Chiemsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81167000", + "longitude": "12.37566000" + }, + { + "id": "24062", + "name": "Bernbeuren", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73696000", + "longitude": "10.77707000" + }, + { + "id": "24064", + "name": "Berngau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25000000", + "longitude": "11.40000000" + }, + { + "id": "24065", + "name": "Bernhardswald", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09123000", + "longitude": "12.24744000" + }, + { + "id": "24068", + "name": "Bernried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91667000", + "longitude": "12.88333000" + }, + { + "id": "24085", + "name": "Betzigau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73333000", + "longitude": "10.38333000" + }, + { + "id": "24089", + "name": "Beutelsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55000000", + "longitude": "13.11667000" + }, + { + "id": "24097", + "name": "Biberbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51778000", + "longitude": "10.81139000" + }, + { + "id": "24099", + "name": "Biburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79066000", + "longitude": "11.85726000" + }, + { + "id": "24100", + "name": "Bichl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.72010000", + "longitude": "11.41231000" + }, + { + "id": "24102", + "name": "Bidingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82974000", + "longitude": "10.72623000" + }, + { + "id": "24103", + "name": "Biebelried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76667000", + "longitude": "10.08333000" + }, + { + "id": "24113", + "name": "Biessenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.83057000", + "longitude": "10.64022000" + }, + { + "id": "24122", + "name": "Bindlach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98167000", + "longitude": "11.61389000" + }, + { + "id": "24127", + "name": "Binswangen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55798000", + "longitude": "10.64249000" + }, + { + "id": "24136", + "name": "Birkenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85861000", + "longitude": "9.69556000" + }, + { + "id": "24142", + "name": "Bischberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91087000", + "longitude": "10.83212000" + }, + { + "id": "24143", + "name": "Bischbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87028000", + "longitude": "9.48917000" + }, + { + "id": "24146", + "name": "Bischofsgrün", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.05122000", + "longitude": "11.79997000" + }, + { + "id": "24148", + "name": "Bischofsheim an der Rhön", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40239000", + "longitude": "10.00751000" + }, + { + "id": "24149", + "name": "Bischofsmais", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91796000", + "longitude": "13.08184000" + }, + { + "id": "24151", + "name": "Bischofswiesen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.63115000", + "longitude": "12.98305000" + }, + { + "id": "24157", + "name": "Bissingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71694000", + "longitude": "10.61766000" + }, + { + "id": "24162", + "name": "Blaibach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16667000", + "longitude": "12.81667000" + }, + { + "id": "24163", + "name": "Blaichach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.54208000", + "longitude": "10.25846000" + }, + { + "id": "24164", + "name": "Blankenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06667000", + "longitude": "9.23333000" + }, + { + "id": "24183", + "name": "Blindheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63138000", + "longitude": "10.61992000" + }, + { + "id": "24190", + "name": "Bobingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27091000", + "longitude": "10.83390000" + }, + { + "id": "24201", + "name": "Bockhorn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31471000", + "longitude": "11.98694000" + }, + { + "id": "24206", + "name": "Bodenkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38333000", + "longitude": "12.38333000" + }, + { + "id": "24207", + "name": "Bodenmais", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06667000", + "longitude": "13.10000000" + }, + { + "id": "24209", + "name": "Bodenwöhr", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.27082000", + "longitude": "12.30146000" + }, + { + "id": "24212", + "name": "Bodolz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.56667000", + "longitude": "9.66667000" + }, + { + "id": "24214", + "name": "Bogen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91122000", + "longitude": "12.68955000" + }, + { + "id": "24215", + "name": "Bogenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15221000", + "longitude": "11.61585000" + }, + { + "id": "24227", + "name": "Bolsterlang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.46667000", + "longitude": "10.23333000" + }, + { + "id": "24233", + "name": "Bonstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.44002000", + "longitude": "10.70532000" + }, + { + "id": "24234", + "name": "Boos", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07521000", + "longitude": "10.19523000" + }, + { + "id": "24277", + "name": "Brand", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95972000", + "longitude": "11.91072000" + }, + { + "id": "24283", + "name": "Brannenburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73996000", + "longitude": "12.09166000" + }, + { + "id": "24303", + "name": "Breitbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04320000", + "longitude": "12.15431000" + }, + { + "id": "24306", + "name": "Breitenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70439000", + "longitude": "13.79333000" + }, + { + "id": "24307", + "name": "Breitenbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36388000", + "longitude": "12.02013000" + }, + { + "id": "24311", + "name": "Breitengüßbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97209000", + "longitude": "10.88591000" + }, + { + "id": "24312", + "name": "Breitenthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23782000", + "longitude": "10.29951000" + }, + { + "id": "24323", + "name": "Brennberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06667000", + "longitude": "12.40000000" + }, + { + "id": "24353", + "name": "Bruck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02116000", + "longitude": "11.90781000" + }, + { + "id": "24354", + "name": "Bruck in der Oberpfalz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24927000", + "longitude": "12.30710000" + }, + { + "id": "24355", + "name": "Bruckberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52244000", + "longitude": "11.99448000" + }, + { + "id": "24356", + "name": "Bruckmühl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.87859000", + "longitude": "11.91098000" + }, + { + "id": "24359", + "name": "Brunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23632000", + "longitude": "12.19156000" + }, + { + "id": "24360", + "name": "Brunnen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22956000", + "longitude": "10.97332000" + }, + { + "id": "24361", + "name": "Brunnthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00652000", + "longitude": "11.68405000" + }, + { + "id": "24375", + "name": "Bubenreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62745000", + "longitude": "11.01723000" + }, + { + "id": "24376", + "name": "Bubesheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43333000", + "longitude": "10.25000000" + }, + { + "id": "24378", + "name": "Buch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22479000", + "longitude": "10.18055000" + }, + { + "id": "24381", + "name": "Buch am Buchrain", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21510000", + "longitude": "11.99509000" + }, + { + "id": "24383", + "name": "Buchbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31231000", + "longitude": "12.27343000" + }, + { + "id": "24384", + "name": "Buchbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75981000", + "longitude": "10.13686000" + }, + { + "id": "24385", + "name": "Buchdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.78333000", + "longitude": "10.83333000" + }, + { + "id": "24388", + "name": "Buchenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.69593000", + "longitude": "10.23927000" + }, + { + "id": "24394", + "name": "Buchloe", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03719000", + "longitude": "10.72548000" + }, + { + "id": "24395", + "name": "Buckenhof", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59324000", + "longitude": "11.05044000" + }, + { + "id": "24411", + "name": "Burgau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43159000", + "longitude": "10.40989000" + }, + { + "id": "24412", + "name": "Burgberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.53657000", + "longitude": "10.28883000" + }, + { + "id": "24413", + "name": "Burgbernheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45103000", + "longitude": "10.32385000" + }, + { + "id": "24416", + "name": "Burgebrach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82832000", + "longitude": "10.74338000" + }, + { + "id": "24417", + "name": "Burggen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77689000", + "longitude": "10.81724000" + }, + { + "id": "24418", + "name": "Burghaslach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.73313000", + "longitude": "10.60070000" + }, + { + "id": "24420", + "name": "Burghausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16925000", + "longitude": "12.83139000" + }, + { + "id": "24421", + "name": "Burgheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70035000", + "longitude": "11.01599000" + }, + { + "id": "24422", + "name": "Burgkirchen an der Alz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16753000", + "longitude": "12.73250000" + }, + { + "id": "24423", + "name": "Burgkunstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14093000", + "longitude": "11.25205000" + }, + { + "id": "24424", + "name": "Burglauer", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.27645000", + "longitude": "10.17939000" + }, + { + "id": "24425", + "name": "Burglengenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20379000", + "longitude": "12.04452000" + }, + { + "id": "24427", + "name": "Burgoberbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23333000", + "longitude": "10.58333000" + }, + { + "id": "24428", + "name": "Burgpreppach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14149000", + "longitude": "10.64977000" + }, + { + "id": "24430", + "name": "Burgsalach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03316000", + "longitude": "11.09766000" + }, + { + "id": "24432", + "name": "Burgsinn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14968000", + "longitude": "9.65119000" + }, + { + "id": "24436", + "name": "Burgthann", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35202000", + "longitude": "11.31154000" + }, + { + "id": "24438", + "name": "Burgwindheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82733000", + "longitude": "10.59631000" + }, + { + "id": "24439", + "name": "Burk", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13318000", + "longitude": "10.47891000" + }, + { + "id": "24440", + "name": "Burkardroth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.27125000", + "longitude": "9.99162000" + }, + { + "id": "24446", + "name": "Burtenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.34051000", + "longitude": "10.45280000" + }, + { + "id": "24451", + "name": "Buttenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80365000", + "longitude": "11.03002000" + }, + { + "id": "24452", + "name": "Buttenwiesen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60000000", + "longitude": "10.71667000" + }, + { + "id": "24456", + "name": "Buxheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00000000", + "longitude": "10.13333000" + }, + { + "id": "24512", + "name": "Cadolzburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45730000", + "longitude": "10.85329000" + }, + { + "id": "24529", + "name": "Cham", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22565000", + "longitude": "12.65501000" + }, + { + "id": "24530", + "name": "Chamerau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20000000", + "longitude": "12.75000000" + }, + { + "id": "24534", + "name": "Chieming", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89258000", + "longitude": "12.54012000" + }, + { + "id": "24536", + "name": "Chostlarn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.37144000", + "longitude": "13.12064000" + }, + { + "id": "24544", + "name": "Coburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25937000", + "longitude": "10.96384000" + }, + { + "id": "24550", + "name": "Colmberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35480000", + "longitude": "10.41157000" + }, + { + "id": "24562", + "name": "Creußen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84495000", + "longitude": "11.62683000" + }, + { + "id": "24574", + "name": "Dachau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26000000", + "longitude": "11.43402000" + }, + { + "id": "24598", + "name": "Dasing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38482000", + "longitude": "11.04667000" + }, + { + "id": "24794", + "name": "Döhlau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.28333000", + "longitude": "11.95000000" + }, + { + "id": "24814", + "name": "Dürrlauingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46666000", + "longitude": "10.42860000" + }, + { + "id": "24816", + "name": "Dürrwangen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10778000", + "longitude": "10.38500000" + }, + { + "id": "24610", + "name": "Deggendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84085000", + "longitude": "12.96068000" + }, + { + "id": "24615", + "name": "Deining", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22556000", + "longitude": "11.53968000" + }, + { + "id": "24616", + "name": "Deiningen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.86667000", + "longitude": "10.56667000" + }, + { + "id": "24618", + "name": "Deisenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25554000", + "longitude": "10.32698000" + }, + { + "id": "24632", + "name": "Denklingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91667000", + "longitude": "10.85000000" + }, + { + "id": "24634", + "name": "Dentlein am Forst", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.14772000", + "longitude": "10.42309000" + }, + { + "id": "24648", + "name": "Dettelbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80295000", + "longitude": "10.16519000" + }, + { + "id": "24656", + "name": "Deuerling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03720000", + "longitude": "11.91045000" + }, + { + "id": "24688", + "name": "Dießen am Ammersee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95085000", + "longitude": "11.10306000" + }, + { + "id": "24663", + "name": "Diebach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30912000", + "longitude": "10.19188000" + }, + { + "id": "24666", + "name": "Diedorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35320000", + "longitude": "10.78206000" + }, + { + "id": "24676", + "name": "Diespeck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60000000", + "longitude": "10.63333000" + }, + { + "id": "24678", + "name": "Dietenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.39997000", + "longitude": "10.68975000" + }, + { + "id": "24679", + "name": "Dietersburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49249000", + "longitude": "12.92499000" + }, + { + "id": "24680", + "name": "Dietersheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55631000", + "longitude": "10.54074000" + }, + { + "id": "24681", + "name": "Dieterskirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41667000", + "longitude": "12.41667000" + }, + { + "id": "24682", + "name": "Dietfurt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03578000", + "longitude": "11.58624000" + }, + { + "id": "24684", + "name": "Dietmannsried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80787000", + "longitude": "10.28948000" + }, + { + "id": "24685", + "name": "Dietramszell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84871000", + "longitude": "11.59530000" + }, + { + "id": "24691", + "name": "Dillingen an der Donau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58153000", + "longitude": "10.49527000" + }, + { + "id": "24693", + "name": "Dingolfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64244000", + "longitude": "12.49283000" + }, + { + "id": "24694", + "name": "Dingolshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90710000", + "longitude": "10.39032000" + }, + { + "id": "24695", + "name": "Dinkelsbühl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06942000", + "longitude": "10.31985000" + }, + { + "id": "24696", + "name": "Dinkelscherben", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.34826000", + "longitude": "10.58893000" + }, + { + "id": "24702", + "name": "Dirlewang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00195000", + "longitude": "10.50306000" + }, + { + "id": "24707", + "name": "Dittelbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.07212000", + "longitude": "10.21974000" + }, + { + "id": "24709", + "name": "Dittenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05536000", + "longitude": "10.79201000" + }, + { + "id": "24724", + "name": "Dombühl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25349000", + "longitude": "10.28542000" + }, + { + "id": "24730", + "name": "Donaustauf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03258000", + "longitude": "12.20459000" + }, + { + "id": "24731", + "name": "Donauwörth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71804000", + "longitude": "10.77930000" + }, + { + "id": "24732", + "name": "Donnersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96667000", + "longitude": "10.41667000" + }, + { + "id": "24735", + "name": "Dorfen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27037000", + "longitude": "12.16056000" + }, + { + "id": "24737", + "name": "Dorfprozelten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78056000", + "longitude": "9.38028000" + }, + { + "id": "24740", + "name": "Dormitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59786000", + "longitude": "11.11765000" + }, + { + "id": "24751", + "name": "Drachselsried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10759000", + "longitude": "13.01185000" + }, + { + "id": "24778", + "name": "Duggendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11667000", + "longitude": "11.91667000" + }, + { + "id": "24784", + "name": "Durach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.69440000", + "longitude": "10.34449000" + }, + { + "id": "24821", + "name": "Ebelsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98572000", + "longitude": "10.67442000" + }, + { + "id": "24823", + "name": "Ebensfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06640000", + "longitude": "10.95835000" + }, + { + "id": "24829", + "name": "Ebermannsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.39375000", + "longitude": "11.93582000" + }, + { + "id": "24830", + "name": "Ebermannstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78154000", + "longitude": "11.18168000" + }, + { + "id": "24835", + "name": "Ebersberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07710000", + "longitude": "11.97063000" + }, + { + "id": "24837", + "name": "Ebersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.32898000", + "longitude": "11.15266000" + }, + { + "id": "24842", + "name": "Ebnath", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95000000", + "longitude": "11.93333000" + }, + { + "id": "24846", + "name": "Eching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30000000", + "longitude": "11.61667000" + }, + { + "id": "24850", + "name": "Eckersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.02874000", + "longitude": "11.39611000" + }, + { + "id": "24853", + "name": "Edelsfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.57644000", + "longitude": "11.69589000" + }, + { + "id": "24856", + "name": "Ederheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80827000", + "longitude": "10.46609000" + }, + { + "id": "24863", + "name": "Effeltrich", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65929000", + "longitude": "11.09319000" + }, + { + "id": "24868", + "name": "Egenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28333000", + "longitude": "11.16667000" + }, + { + "id": "24870", + "name": "Egg an der Günz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08714000", + "longitude": "10.28495000" + }, + { + "id": "24872", + "name": "Eggenfelden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40509000", + "longitude": "12.75752000" + }, + { + "id": "24874", + "name": "Eggenthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91667000", + "longitude": "10.51667000" + }, + { + "id": "24879", + "name": "Egglham", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52902000", + "longitude": "13.05402000" + }, + { + "id": "24880", + "name": "Egglkofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40000000", + "longitude": "12.45000000" + }, + { + "id": "24881", + "name": "Eggolsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76961000", + "longitude": "11.05701000" + }, + { + "id": "24882", + "name": "Eggstätt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92698000", + "longitude": "12.37919000" + }, + { + "id": "24883", + "name": "Eging", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46328000", + "longitude": "12.18957000" + }, + { + "id": "24884", + "name": "Egling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92316000", + "longitude": "11.50517000" + }, + { + "id": "24885", + "name": "Egloffstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70182000", + "longitude": "11.25749000" + }, + { + "id": "24886", + "name": "Egmating", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00405000", + "longitude": "11.79528000" + }, + { + "id": "24887", + "name": "Ehekirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63333000", + "longitude": "11.10000000" + }, + { + "id": "24889", + "name": "Ehingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60000000", + "longitude": "10.80000000" + }, + { + "id": "24896", + "name": "Eibelstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72392000", + "longitude": "9.99962000" + }, + { + "id": "24898", + "name": "Eichenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16667000", + "longitude": "11.31667000" + }, + { + "id": "24900", + "name": "Eichenbühl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70556000", + "longitude": "9.32917000" + }, + { + "id": "24901", + "name": "Eichendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63266000", + "longitude": "12.85586000" + }, + { + "id": "24902", + "name": "Eichenried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27748000", + "longitude": "11.78206000" + }, + { + "id": "24906", + "name": "Eichstätt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88854000", + "longitude": "11.19675000" + }, + { + "id": "24923", + "name": "Eiselfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04114000", + "longitude": "12.24272000" + }, + { + "id": "24928", + "name": "Eisenburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01404000", + "longitude": "10.20870000" + }, + { + "id": "24932", + "name": "Eisingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75972000", + "longitude": "9.83111000" + }, + { + "id": "24938", + "name": "Eitting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35957000", + "longitude": "11.89110000" + }, + { + "id": "24943", + "name": "Elfershausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14743000", + "longitude": "9.96151000" + }, + { + "id": "24952", + "name": "Ellgau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60000000", + "longitude": "10.86667000" + }, + { + "id": "24954", + "name": "Ellingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06076000", + "longitude": "10.96783000" + }, + { + "id": "24957", + "name": "Ellzee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.33971000", + "longitude": "10.31891000" + }, + { + "id": "24965", + "name": "Elsendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70757000", + "longitude": "11.80982000" + }, + { + "id": "24966", + "name": "Elsenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84289000", + "longitude": "9.16355000" + }, + { + "id": "24975", + "name": "Eltmann", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97148000", + "longitude": "10.66712000" + }, + { + "id": "24983", + "name": "Emersacker", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48965000", + "longitude": "10.67380000" + }, + { + "id": "24990", + "name": "Emmering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18333000", + "longitude": "11.28333000" + }, + { + "id": "24995", + "name": "Emskirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55282000", + "longitude": "10.71278000" + }, + { + "id": "24998", + "name": "Emtmannsberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89231000", + "longitude": "11.64466000" + }, + { + "id": "25001", + "name": "Engelsberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11631000", + "longitude": "12.54267000" + }, + { + "id": "25004", + "name": "Engelthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47181000", + "longitude": "11.39943000" + }, + { + "id": "25013", + "name": "Ensdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34062000", + "longitude": "11.93587000" + }, + { + "id": "25025", + "name": "Eppishausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16667000", + "longitude": "10.51667000" + }, + { + "id": "25029", + "name": "Erbendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83983000", + "longitude": "12.04593000" + }, + { + "id": "25032", + "name": "Erding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30603000", + "longitude": "11.90686000" + }, + { + "id": "25034", + "name": "Erdweg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.33180000", + "longitude": "11.30339000" + }, + { + "id": "25035", + "name": "Eresing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08700000", + "longitude": "11.02388000" + }, + { + "id": "25040", + "name": "Ergersheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51667000", + "longitude": "10.33333000" + }, + { + "id": "25041", + "name": "Ergolding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57654000", + "longitude": "12.17102000" + }, + { + "id": "25042", + "name": "Ergoldsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69263000", + "longitude": "12.20442000" + }, + { + "id": "25043", + "name": "Ering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29921000", + "longitude": "13.15029000" + }, + { + "id": "25048", + "name": "Erkheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03730000", + "longitude": "10.33570000" + }, + { + "id": "25051", + "name": "Erlabrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85972000", + "longitude": "9.84417000" + }, + { + "id": "25052", + "name": "Erlangen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59099000", + "longitude": "11.00783000" + }, + { + "id": "25055", + "name": "Erlbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30000000", + "longitude": "12.78333000" + }, + { + "id": "25056", + "name": "Erlenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97857000", + "longitude": "9.64459000" + }, + { + "id": "25058", + "name": "Erlenbach am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80341000", + "longitude": "9.16311000" + }, + { + "id": "25064", + "name": "Ernsgaden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73333000", + "longitude": "11.58333000" + }, + { + "id": "25075", + "name": "Eschau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81889000", + "longitude": "9.25920000" + }, + { + "id": "25081", + "name": "Eschenlohe", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01731000", + "longitude": "12.03012000" + }, + { + "id": "25083", + "name": "Eschlkam", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29883000", + "longitude": "12.91573000" + }, + { + "id": "25087", + "name": "Eslarn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58345000", + "longitude": "12.52156000" + }, + { + "id": "25093", + "name": "Esselbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85528000", + "longitude": "9.52583000" + }, + { + "id": "25096", + "name": "Essenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61332000", + "longitude": "12.21833000" + }, + { + "id": "25098", + "name": "Essing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93467000", + "longitude": "11.78972000" + }, + { + "id": "25102", + "name": "Estenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82896000", + "longitude": "10.00588000" + }, + { + "id": "25109", + "name": "Ettringen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10000000", + "longitude": "10.65000000" + }, + { + "id": "25111", + "name": "Etzelwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52760000", + "longitude": "11.58603000" + }, + { + "id": "25112", + "name": "Etzenricht", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63333000", + "longitude": "12.10000000" + }, + { + "id": "25119", + "name": "Eußenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98589000", + "longitude": "9.80899000" + }, + { + "id": "25113", + "name": "Euerbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06199000", + "longitude": "10.13695000" + }, + { + "id": "25114", + "name": "Euerdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14853000", + "longitude": "10.02331000" + }, + { + "id": "25115", + "name": "Eurasburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85389000", + "longitude": "11.40587000" + }, + { + "id": "25129", + "name": "Fahrenzhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35317000", + "longitude": "11.55521000" + }, + { + "id": "25132", + "name": "Falkenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46154000", + "longitude": "12.73049000" + }, + { + "id": "25135", + "name": "Falkenfels", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00415000", + "longitude": "12.59480000" + }, + { + "id": "25140", + "name": "Falkenstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09750000", + "longitude": "12.48802000" + }, + { + "id": "25142", + "name": "Farchant", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.53036000", + "longitude": "11.11151000" + }, + { + "id": "25145", + "name": "Faulbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78528000", + "longitude": "9.44417000" + }, + { + "id": "25324", + "name": "Fünfstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83215000", + "longitude": "10.76540000" + }, + { + "id": "25330", + "name": "Fürsteneck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71667000", + "longitude": "13.46667000" + }, + { + "id": "25331", + "name": "Fürstenfeldbruck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17904000", + "longitude": "11.25470000" + }, + { + "id": "25333", + "name": "Fürstenstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71667000", + "longitude": "13.33333000" + }, + { + "id": "25335", + "name": "Fürstenzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52163000", + "longitude": "13.31749000" + }, + { + "id": "25337", + "name": "Fürth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47593000", + "longitude": "10.98856000" + }, + { + "id": "25339", + "name": "Füssen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.57143000", + "longitude": "10.70171000" + }, + { + "id": "25151", + "name": "Feilitzsch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.36667000", + "longitude": "11.93333000" + }, + { + "id": "25152", + "name": "Feldafing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.94602000", + "longitude": "11.29326000" + }, + { + "id": "25155", + "name": "Feldkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14811000", + "longitude": "11.73100000" + }, + { + "id": "25156", + "name": "Feldkirchen-Westerham", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90748000", + "longitude": "11.84266000" + }, + { + "id": "25160", + "name": "Fellheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07280000", + "longitude": "10.15224000" + }, + { + "id": "25165", + "name": "Feucht", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37597000", + "longitude": "11.21433000" + }, + { + "id": "25166", + "name": "Feuchtwangen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16287000", + "longitude": "10.33850000" + }, + { + "id": "25167", + "name": "Fichtelberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00288000", + "longitude": "11.85425000" + }, + { + "id": "25173", + "name": "Finningen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65452000", + "longitude": "10.49864000" + }, + { + "id": "25174", + "name": "Finsing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21615000", + "longitude": "11.82412000" + }, + { + "id": "25178", + "name": "Fischach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29047000", + "longitude": "10.65592000" + }, + { + "id": "25180", + "name": "Fischbachau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71952000", + "longitude": "11.95081000" + }, + { + "id": "25182", + "name": "Flachslanden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.39845000", + "longitude": "10.51323000" + }, + { + "id": "25184", + "name": "Fladungen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.52054000", + "longitude": "10.14581000" + }, + { + "id": "25193", + "name": "Flintsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.72576000", + "longitude": "12.12419000" + }, + { + "id": "25198", + "name": "Floß", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72395000", + "longitude": "12.27593000" + }, + { + "id": "25197", + "name": "Flossenbürg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.73333000", + "longitude": "12.35000000" + }, + { + "id": "25204", + "name": "Forchheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71754000", + "longitude": "11.05877000" + }, + { + "id": "25209", + "name": "Forstinning", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16866000", + "longitude": "11.91244000" + }, + { + "id": "25211", + "name": "Frammersbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06468000", + "longitude": "9.46888000" + }, + { + "id": "25220", + "name": "Frankenwinheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88733000", + "longitude": "10.31432000" + }, + { + "id": "25226", + "name": "Frasdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80376000", + "longitude": "12.28512000" + }, + { + "id": "25227", + "name": "Frauenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.98895000", + "longitude": "13.30067000" + }, + { + "id": "25228", + "name": "Fraueneuharting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03873000", + "longitude": "12.04780000" + }, + { + "id": "25232", + "name": "Fraunberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.36667000", + "longitude": "12.00000000" + }, + { + "id": "25246", + "name": "Freihung", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62134000", + "longitude": "11.90817000" + }, + { + "id": "25247", + "name": "Freilassing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84085000", + "longitude": "12.98114000" + }, + { + "id": "25251", + "name": "Freising", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40351000", + "longitude": "11.74876000" + }, + { + "id": "25253", + "name": "Fremdingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.97241000", + "longitude": "10.45754000" + }, + { + "id": "25254", + "name": "Frensdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81667000", + "longitude": "10.86667000" + }, + { + "id": "25257", + "name": "Freudenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48333000", + "longitude": "11.98333000" + }, + { + "id": "25263", + "name": "Freystadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20007000", + "longitude": "11.33032000" + }, + { + "id": "25264", + "name": "Freyung", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80952000", + "longitude": "13.54768000" + }, + { + "id": "25265", + "name": "Frickenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.67089000", + "longitude": "10.09268000" + }, + { + "id": "25269", + "name": "Fridolfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99773000", + "longitude": "12.82628000" + }, + { + "id": "25270", + "name": "Friedberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35693000", + "longitude": "10.98461000" + }, + { + "id": "25275", + "name": "Friedenfels", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88260000", + "longitude": "12.10124000" + }, + { + "id": "25299", + "name": "Friesenried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.87477000", + "longitude": "10.53464000" + }, + { + "id": "25308", + "name": "Frontenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.54628000", + "longitude": "12.53118000" + }, + { + "id": "25312", + "name": "Fuchsmühl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92265000", + "longitude": "12.14582000" + }, + { + "id": "25313", + "name": "Fuchsstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10825000", + "longitude": "9.93370000" + }, + { + "id": "25317", + "name": "Furth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40616000", + "longitude": "12.38121000" + }, + { + "id": "25318", + "name": "Furth im Wald", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30955000", + "longitude": "12.84156000" + }, + { + "id": "25341", + "name": "Gablingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45000000", + "longitude": "10.81667000" + }, + { + "id": "25342", + "name": "Gachenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50000000", + "longitude": "11.23333000" + }, + { + "id": "25344", + "name": "Gadheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84584000", + "longitude": "9.90566000" + }, + { + "id": "25351", + "name": "Gaißach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75000000", + "longitude": "11.58333000" + }, + { + "id": "25350", + "name": "Gaimersheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80705000", + "longitude": "11.36801000" + }, + { + "id": "25353", + "name": "Gammelsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55000000", + "longitude": "11.95000000" + }, + { + "id": "25358", + "name": "Gangkofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43701000", + "longitude": "12.56419000" + }, + { + "id": "25362", + "name": "Garching an der Alz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13451000", + "longitude": "12.58152000" + }, + { + "id": "25363", + "name": "Garching bei München", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24896000", + "longitude": "11.65101000" + }, + { + "id": "25367", + "name": "Garmisch-Partenkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.49209000", + "longitude": "11.09576000" + }, + { + "id": "25369", + "name": "Gars", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15386000", + "longitude": "12.27767000" + }, + { + "id": "25377", + "name": "Gattendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.32207000", + "longitude": "11.99776000" + }, + { + "id": "25382", + "name": "Gaukönigshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63333000", + "longitude": "10.00000000" + }, + { + "id": "25383", + "name": "Gauting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06919000", + "longitude": "11.37703000" + }, + { + "id": "25790", + "name": "Gößweinstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76898000", + "longitude": "11.33841000" + }, + { + "id": "25780", + "name": "Görisried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70668000", + "longitude": "10.51015000" + }, + { + "id": "25787", + "name": "Gössenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "9.78333000" + }, + { + "id": "25794", + "name": "Güntersleben", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86972000", + "longitude": "9.90500000" + }, + { + "id": "25796", + "name": "Günzach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82491000", + "longitude": "10.43547000" + }, + { + "id": "25797", + "name": "Günzburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45599000", + "longitude": "10.27695000" + }, + { + "id": "25386", + "name": "Gebsattel", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35000000", + "longitude": "10.20000000" + }, + { + "id": "25391", + "name": "Gefrees", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09538000", + "longitude": "11.73772000" + }, + { + "id": "25395", + "name": "Geiersthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04569000", + "longitude": "12.98171000" + }, + { + "id": "25398", + "name": "Geiselbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.12329000", + "longitude": "9.19664000" + }, + { + "id": "25399", + "name": "Geiselhöring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82505000", + "longitude": "12.39649000" + }, + { + "id": "25400", + "name": "Geiselwind", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77356000", + "longitude": "10.47063000" + }, + { + "id": "25401", + "name": "Geisenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68426000", + "longitude": "11.61233000" + }, + { + "id": "25402", + "name": "Geisenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.47609000", + "longitude": "12.25817000" + }, + { + "id": "25413", + "name": "Geldersheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04286000", + "longitude": "10.15609000" + }, + { + "id": "25417", + "name": "Geltendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11737000", + "longitude": "11.03216000" + }, + { + "id": "25423", + "name": "Gemünden am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04946000", + "longitude": "9.70593000" + }, + { + "id": "25425", + "name": "Genderkingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70000000", + "longitude": "10.88333000" + }, + { + "id": "25429", + "name": "Georgenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70297000", + "longitude": "12.42082000" + }, + { + "id": "25430", + "name": "Georgensgmünd", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.18972000", + "longitude": "11.01667000" + }, + { + "id": "25437", + "name": "Gerach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03333000", + "longitude": "10.80000000" + }, + { + "id": "25438", + "name": "Gerbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77528000", + "longitude": "9.99361000" + }, + { + "id": "25441", + "name": "Geretsried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85775000", + "longitude": "11.48054000" + }, + { + "id": "25442", + "name": "Gerhardshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63123000", + "longitude": "10.69133000" + }, + { + "id": "25445", + "name": "Germering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13392000", + "longitude": "11.37650000" + }, + { + "id": "25451", + "name": "Geroldsgrün", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33333000", + "longitude": "11.60000000" + }, + { + "id": "25452", + "name": "Geroldshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68361000", + "longitude": "9.90222000" + }, + { + "id": "25453", + "name": "Gerolfingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05340000", + "longitude": "10.51151000" + }, + { + "id": "25454", + "name": "Gerolsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49283000", + "longitude": "11.36149000" + }, + { + "id": "25457", + "name": "Gerolzhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90025000", + "longitude": "10.34832000" + }, + { + "id": "25463", + "name": "Gersthofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42432000", + "longitude": "10.87273000" + }, + { + "id": "25467", + "name": "Gerzen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50706000", + "longitude": "12.42686000" + }, + { + "id": "25470", + "name": "Gesees", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03207000", + "longitude": "11.66623000" + }, + { + "id": "25472", + "name": "Geslau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36643000", + "longitude": "10.31528000" + }, + { + "id": "25473", + "name": "Gessertshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.32904000", + "longitude": "10.73278000" + }, + { + "id": "25474", + "name": "Gestratz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65000000", + "longitude": "9.98333000" + }, + { + "id": "25480", + "name": "Giebelstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65308000", + "longitude": "9.94441000" + }, + { + "id": "25489", + "name": "Gilching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10755000", + "longitude": "11.29360000" + }, + { + "id": "25504", + "name": "Glashütten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88739000", + "longitude": "11.44870000" + }, + { + "id": "25506", + "name": "Glattbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00000000", + "longitude": "9.15000000" + }, + { + "id": "25518", + "name": "Glött", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50000000", + "longitude": "10.48333000" + }, + { + "id": "25515", + "name": "Glonn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.98751000", + "longitude": "11.86721000" + }, + { + "id": "25521", + "name": "Gmund am Tegernsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75119000", + "longitude": "11.73810000" + }, + { + "id": "25526", + "name": "Gochsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "10.28333000" + }, + { + "id": "25528", + "name": "Goldbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.99951000", + "longitude": "9.18440000" + }, + { + "id": "25533", + "name": "Goldkronach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01086000", + "longitude": "11.68750000" + }, + { + "id": "25551", + "name": "Gotteszell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96667000", + "longitude": "12.96667000" + }, + { + "id": "25552", + "name": "Gottfrieding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.63737000", + "longitude": "12.53561000" + }, + { + "id": "25555", + "name": "Graben", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18732000", + "longitude": "10.82222000" + }, + { + "id": "25558", + "name": "Grabenstätt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84531000", + "longitude": "12.54330000" + }, + { + "id": "25562", + "name": "Grafenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85768000", + "longitude": "13.39740000" + }, + { + "id": "25564", + "name": "Grafengehaig", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20310000", + "longitude": "11.59358000" + }, + { + "id": "25566", + "name": "Grafenrheinfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00000000", + "longitude": "10.20000000" + }, + { + "id": "25568", + "name": "Grafenwöhr", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71728000", + "longitude": "11.90645000" + }, + { + "id": "25567", + "name": "Grafenwiesen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20000000", + "longitude": "12.88333000" + }, + { + "id": "25570", + "name": "Grafing bei München", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04596000", + "longitude": "11.96797000" + }, + { + "id": "25571", + "name": "Grafrath", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11667000", + "longitude": "11.16667000" + }, + { + "id": "25572", + "name": "Grainau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.47614000", + "longitude": "11.02405000" + }, + { + "id": "25573", + "name": "Grainet", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80000000", + "longitude": "13.65000000" + }, + { + "id": "25579", + "name": "Grasbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07905000", + "longitude": "11.74361000" + }, + { + "id": "25581", + "name": "Grassau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.78099000", + "longitude": "12.45359000" + }, + { + "id": "25582", + "name": "Grattersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80364000", + "longitude": "13.15372000" + }, + { + "id": "25720", + "name": "Gräfelfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11878000", + "longitude": "11.42939000" + }, + { + "id": "25721", + "name": "Gräfenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64426000", + "longitude": "11.24971000" + }, + { + "id": "25722", + "name": "Gräfendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.12267000", + "longitude": "9.74050000" + }, + { + "id": "25727", + "name": "Gröbenzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.20000000", + "longitude": "11.36667000" + }, + { + "id": "25737", + "name": "Grünenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.62864000", + "longitude": "10.00843000" + }, + { + "id": "25745", + "name": "Grünwald", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03947000", + "longitude": "11.52320000" + }, + { + "id": "25587", + "name": "Greding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04699000", + "longitude": "11.35703000" + }, + { + "id": "25590", + "name": "Greifenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07062000", + "longitude": "11.08349000" + }, + { + "id": "25593", + "name": "Greiling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76667000", + "longitude": "11.61667000" + }, + { + "id": "25598", + "name": "Gremsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.69506000", + "longitude": "10.83218000" + }, + { + "id": "25601", + "name": "Grettstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98333000", + "longitude": "10.31667000" + }, + { + "id": "25603", + "name": "Greußenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81667000", + "longitude": "9.76667000" + }, + { + "id": "25609", + "name": "Griesstätt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99403000", + "longitude": "12.17727000" + }, + { + "id": "25648", + "name": "Großaitingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22753000", + "longitude": "10.77948000" + }, + { + "id": "25651", + "name": "Großbardorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26667000", + "longitude": "10.36667000" + }, + { + "id": "25660", + "name": "Großeibstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30102000", + "longitude": "10.40980000" + }, + { + "id": "25668", + "name": "Großenseebach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63251000", + "longitude": "10.87483000" + }, + { + "id": "25673", + "name": "Großhabersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40000000", + "longitude": "10.78333000" + }, + { + "id": "25677", + "name": "Großheirath", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17603000", + "longitude": "10.95050000" + }, + { + "id": "25679", + "name": "Großheubach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72834000", + "longitude": "9.22280000" + }, + { + "id": "25682", + "name": "Großkarolinenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89102000", + "longitude": "12.08101000" + }, + { + "id": "25688", + "name": "Großlangheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75620000", + "longitude": "10.24065000" + }, + { + "id": "25696", + "name": "Großostheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91985000", + "longitude": "9.07596000" + }, + { + "id": "25699", + "name": "Großreuth bei Schweinau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.43449000", + "longitude": "11.02273000" + }, + { + "id": "25711", + "name": "Großwallstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87936000", + "longitude": "9.15338000" + }, + { + "id": "25712", + "name": "Großweil", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.67598000", + "longitude": "11.30108000" + }, + { + "id": "25716", + "name": "Grub", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10285000", + "longitude": "11.92904000" + }, + { + "id": "25747", + "name": "Gstadt am Chiemsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.88453000", + "longitude": "12.41813000" + }, + { + "id": "25755", + "name": "Gundelfingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55347000", + "longitude": "10.37223000" + }, + { + "id": "25757", + "name": "Gundelsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93708000", + "longitude": "10.91990000" + }, + { + "id": "25759", + "name": "Gundremmingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50000000", + "longitude": "10.40000000" + }, + { + "id": "25761", + "name": "Gunzenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11663000", + "longitude": "10.75971000" + }, + { + "id": "25768", + "name": "Gutenstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61667000", + "longitude": "10.63333000" + }, + { + "id": "25804", + "name": "Haag an der Amper", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45840000", + "longitude": "11.82796000" + }, + { + "id": "25805", + "name": "Haag in Oberbayern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16196000", + "longitude": "12.17942000" + }, + { + "id": "25807", + "name": "Haar", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10881000", + "longitude": "11.72653000" + }, + { + "id": "25808", + "name": "Haarbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50000000", + "longitude": "13.15000000" + }, + { + "id": "25962", + "name": "Haßfurt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03521000", + "longitude": "10.51560000" + }, + { + "id": "25809", + "name": "Habach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73333000", + "longitude": "11.28333000" + }, + { + "id": "25814", + "name": "Hafenlohr", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86944000", + "longitude": "9.60222000" + }, + { + "id": "25816", + "name": "Hagelstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.90000000", + "longitude": "12.21667000" + }, + { + "id": "25822", + "name": "Hagenbüchach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53333000", + "longitude": "10.76667000" + }, + { + "id": "25825", + "name": "Hahnbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53389000", + "longitude": "11.80302000" + }, + { + "id": "25828", + "name": "Haibach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96444000", + "longitude": "9.20722000" + }, + { + "id": "25829", + "name": "Haidmühle", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82565000", + "longitude": "13.77649000" + }, + { + "id": "25832", + "name": "Haimhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31545000", + "longitude": "11.55453000" + }, + { + "id": "25833", + "name": "Haiming", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21667000", + "longitude": "12.90000000" + }, + { + "id": "25839", + "name": "Hainsfarth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95839000", + "longitude": "10.62491000" + }, + { + "id": "25845", + "name": "Halblech", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.63155000", + "longitude": "10.82024000" + }, + { + "id": "25847", + "name": "Haldenwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80000000", + "longitude": "10.35000000" + }, + { + "id": "25849", + "name": "Halfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95197000", + "longitude": "12.27525000" + }, + { + "id": "25850", + "name": "Hallbergmoos", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.32747000", + "longitude": "11.75142000" + }, + { + "id": "25856", + "name": "Hallerndorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75909000", + "longitude": "10.97946000" + }, + { + "id": "25857", + "name": "Hallstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92901000", + "longitude": "10.87539000" + }, + { + "id": "25876", + "name": "Hammelburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.11633000", + "longitude": "9.89143000" + }, + { + "id": "25895", + "name": "Happurg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49372000", + "longitude": "11.47119000" + }, + { + "id": "25898", + "name": "Harburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.78674000", + "longitude": "10.68927000" + }, + { + "id": "25906", + "name": "Harsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03333000", + "longitude": "11.56667000" + }, + { + "id": "25912", + "name": "Hartenstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60000000", + "longitude": "11.51667000" + }, + { + "id": "25923", + "name": "Haselbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64564000", + "longitude": "13.38956000" + }, + { + "id": "25929", + "name": "Hasloch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79194000", + "longitude": "9.49361000" + }, + { + "id": "25936", + "name": "Hattenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22231000", + "longitude": "11.11551000" + }, + { + "id": "25946", + "name": "Haundorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17598000", + "longitude": "10.77124000" + }, + { + "id": "25947", + "name": "Haunsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59977000", + "longitude": "10.37401000" + }, + { + "id": "25950", + "name": "Hausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85953000", + "longitude": "12.00630000" + }, + { + "id": "25953", + "name": "Hausham", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.74660000", + "longitude": "11.84069000" + }, + { + "id": "25955", + "name": "Hauzenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64957000", + "longitude": "13.62645000" + }, + { + "id": "25959", + "name": "Hawangen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96667000", + "longitude": "10.26667000" + }, + { + "id": "26298", + "name": "Höchberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78446000", + "longitude": "9.88223000" + }, + { + "id": "26300", + "name": "Höchheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.36667000", + "longitude": "10.45000000" + }, + { + "id": "26302", + "name": "Höchstadt an der Aisch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70617000", + "longitude": "10.81329000" + }, + { + "id": "26303", + "name": "Höchstädt an der Donau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61124000", + "longitude": "10.56816000" + }, + { + "id": "26304", + "name": "Höchstädt bei Thiersheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10157000", + "longitude": "12.08711000" + }, + { + "id": "26310", + "name": "Höhenkirchen-Siegertsbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01932000", + "longitude": "11.71906000" + }, + { + "id": "26318", + "name": "Hörgertshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55000000", + "longitude": "11.86667000" + }, + { + "id": "26322", + "name": "Hösbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00646000", + "longitude": "9.20765000" + }, + { + "id": "26323", + "name": "Höslwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95378000", + "longitude": "12.32915000" + }, + { + "id": "26325", + "name": "Höttingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06262000", + "longitude": "11.00530000" + }, + { + "id": "26128", + "name": "Heßdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62728000", + "longitude": "10.91002000" + }, + { + "id": "25966", + "name": "Hebertsfelden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40596000", + "longitude": "12.82259000" + }, + { + "id": "25967", + "name": "Hebertshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28959000", + "longitude": "11.46526000" + }, + { + "id": "25981", + "name": "Heideck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13365000", + "longitude": "11.12726000" + }, + { + "id": "25986", + "name": "Heidenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01719000", + "longitude": "10.74347000" + }, + { + "id": "25991", + "name": "Heigenbrücken", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.02820000", + "longitude": "9.37116000" + }, + { + "id": "26001", + "name": "Heiligenstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86303000", + "longitude": "11.17185000" + }, + { + "id": "26004", + "name": "Heilsbronn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.33572000", + "longitude": "10.78741000" + }, + { + "id": "26007", + "name": "Heimbuchenthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88917000", + "longitude": "9.29556000" + }, + { + "id": "26008", + "name": "Heimenkirch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.62959000", + "longitude": "9.90304000" + }, + { + "id": "26009", + "name": "Heimertingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03333000", + "longitude": "10.15000000" + }, + { + "id": "26029", + "name": "Helmbrechts", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23557000", + "longitude": "11.71589000" + }, + { + "id": "26030", + "name": "Helmstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76180000", + "longitude": "9.70803000" + }, + { + "id": "26036", + "name": "Hemau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05399000", + "longitude": "11.78195000" + }, + { + "id": "26039", + "name": "Hemhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68333000", + "longitude": "10.93333000" + }, + { + "id": "26047", + "name": "Hendungen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39462000", + "longitude": "10.35204000" + }, + { + "id": "26048", + "name": "Henfenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49846000", + "longitude": "11.39059000" + }, + { + "id": "26049", + "name": "Hengersberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.77255000", + "longitude": "13.05485000" + }, + { + "id": "26066", + "name": "Heretsried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45972000", + "longitude": "10.73601000" + }, + { + "id": "26069", + "name": "Hergensweiler", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.61667000", + "longitude": "9.78333000" + }, + { + "id": "26084", + "name": "Heroldsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.69342000", + "longitude": "10.99882000" + }, + { + "id": "26085", + "name": "Heroldsberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53247000", + "longitude": "11.15551000" + }, + { + "id": "26087", + "name": "Herrieden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23779000", + "longitude": "10.50350000" + }, + { + "id": "26089", + "name": "Herrngiersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.78863000", + "longitude": "12.07200000" + }, + { + "id": "26091", + "name": "Herrsching am Ammersee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99888000", + "longitude": "11.17679000" + }, + { + "id": "26092", + "name": "Hersbruck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51083000", + "longitude": "11.43151000" + }, + { + "id": "26102", + "name": "Herzogenaurach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56798000", + "longitude": "10.88565000" + }, + { + "id": "26111", + "name": "Hettenshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50000000", + "longitude": "11.50000000" + }, + { + "id": "26113", + "name": "Hettstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79944000", + "longitude": "9.81500000" + }, + { + "id": "26116", + "name": "Hetzles", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63333000", + "longitude": "11.13333000" + }, + { + "id": "26124", + "name": "Heustreu", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35485000", + "longitude": "10.26069000" + }, + { + "id": "26141", + "name": "Hilgertshausen-Tandern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42960000", + "longitude": "11.35428000" + }, + { + "id": "26146", + "name": "Hilpoltstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19047000", + "longitude": "11.19060000" + }, + { + "id": "26147", + "name": "Hiltenfingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16085000", + "longitude": "10.71750000" + }, + { + "id": "26149", + "name": "Hiltpoltstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66075000", + "longitude": "11.32272000" + }, + { + "id": "26152", + "name": "Himmelkron", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06667000", + "longitude": "11.60000000" + }, + { + "id": "26154", + "name": "Himmelstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92389000", + "longitude": "9.80167000" + }, + { + "id": "26156", + "name": "Hinterschmiding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82337000", + "longitude": "13.60369000" + }, + { + "id": "26161", + "name": "Hirschaid", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81789000", + "longitude": "10.98918000" + }, + { + "id": "26162", + "name": "Hirschau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54396000", + "longitude": "11.94617000" + }, + { + "id": "26163", + "name": "Hirschbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55000000", + "longitude": "11.53333000" + }, + { + "id": "26180", + "name": "Hochstadt am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15009000", + "longitude": "11.17116000" + }, + { + "id": "26185", + "name": "Hof", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31297000", + "longitude": "11.91261000" + }, + { + "id": "26189", + "name": "Hofheim in Unterfranken", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.13675000", + "longitude": "10.52321000" + }, + { + "id": "26190", + "name": "Hofkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67805000", + "longitude": "13.11917000" + }, + { + "id": "26192", + "name": "Hofstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00847000", + "longitude": "10.97114000" + }, + { + "id": "26197", + "name": "Hohenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84983000", + "longitude": "13.48825000" + }, + { + "id": "26198", + "name": "Hohenberg an der Eger", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09501000", + "longitude": "12.22008000" + }, + { + "id": "26200", + "name": "Hohenbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04785000", + "longitude": "11.70224000" + }, + { + "id": "26201", + "name": "Hohenburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29507000", + "longitude": "11.79906000" + }, + { + "id": "26204", + "name": "Hohenfels", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20397000", + "longitude": "11.84841000" + }, + { + "id": "26205", + "name": "Hohenfurch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85000000", + "longitude": "10.90000000" + }, + { + "id": "26207", + "name": "Hohenkammer", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42406000", + "longitude": "11.52522000" + }, + { + "id": "26210", + "name": "Hohenlinden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15612000", + "longitude": "11.99458000" + }, + { + "id": "26213", + "name": "Hohenpeißenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80000000", + "longitude": "11.00000000" + }, + { + "id": "26214", + "name": "Hohenpolding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38333000", + "longitude": "12.13333000" + }, + { + "id": "26217", + "name": "Hohenthann", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66115000", + "longitude": "12.09251000" + }, + { + "id": "26220", + "name": "Hohenwarth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20000000", + "longitude": "12.93333000" + }, + { + "id": "26231", + "name": "Hollenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48333000", + "longitude": "11.06667000" + }, + { + "id": "26234", + "name": "Hollfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93793000", + "longitude": "11.29153000" + }, + { + "id": "26236", + "name": "Hollstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35000000", + "longitude": "10.30000000" + }, + { + "id": "26243", + "name": "Holzgünz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02503000", + "longitude": "10.25901000" + }, + { + "id": "26245", + "name": "Holzheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51422000", + "longitude": "10.53057000" + }, + { + "id": "26246", + "name": "Holzkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.87663000", + "longitude": "11.70181000" + }, + { + "id": "26254", + "name": "Hopferau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.61667000", + "longitude": "10.63333000" + }, + { + "id": "26259", + "name": "Horgau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.39507000", + "longitude": "10.68283000" + }, + { + "id": "26281", + "name": "Huglfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76667000", + "longitude": "11.16667000" + }, + { + "id": "26282", + "name": "Huisheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82510000", + "longitude": "10.70331000" + }, + { + "id": "26285", + "name": "Hunderdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89162000", + "longitude": "12.67382000" + }, + { + "id": "26287", + "name": "Hunding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84227000", + "longitude": "13.17681000" + }, + { + "id": "26290", + "name": "Hurlach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11838000", + "longitude": "10.81115000" + }, + { + "id": "26293", + "name": "Hutthurm", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67276000", + "longitude": "13.47146000" + }, + { + "id": "26347", + "name": "Ichenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.37119000", + "longitude": "10.30706000" + }, + { + "id": "26349", + "name": "Icking", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95000000", + "longitude": "11.43333000" + }, + { + "id": "26352", + "name": "Iffeldorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76667000", + "longitude": "11.31667000" + }, + { + "id": "26356", + "name": "Igensdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62322000", + "longitude": "11.23137000" + }, + { + "id": "26358", + "name": "Iggensbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73014000", + "longitude": "13.14229000" + }, + { + "id": "26362", + "name": "Ihrlerstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93333000", + "longitude": "11.86667000" + }, + { + "id": "26367", + "name": "Illertissen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22336000", + "longitude": "10.10347000" + }, + { + "id": "26371", + "name": "Illschwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45000000", + "longitude": "11.68333000" + }, + { + "id": "26373", + "name": "Ilmmünster", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48333000", + "longitude": "11.50000000" + }, + { + "id": "26382", + "name": "Immenreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "11.86667000" + }, + { + "id": "26384", + "name": "Immenstadt im Allgäu", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.55996000", + "longitude": "10.21394000" + }, + { + "id": "26386", + "name": "Inchenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51288000", + "longitude": "11.11458000" + }, + { + "id": "26392", + "name": "Ingolstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76508000", + "longitude": "11.42372000" + }, + { + "id": "26393", + "name": "Innernzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85150000", + "longitude": "13.27539000" + }, + { + "id": "26394", + "name": "Inning am Ammersee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07636000", + "longitude": "11.15232000" + }, + { + "id": "26395", + "name": "Inning am Holz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.34687000", + "longitude": "12.07506000" + }, + { + "id": "26397", + "name": "Insingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30000000", + "longitude": "10.16667000" + }, + { + "id": "26398", + "name": "Inzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76302000", + "longitude": "12.75146000" + }, + { + "id": "26401", + "name": "Iphofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70239000", + "longitude": "10.26037000" + }, + { + "id": "26402", + "name": "Ippesheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60214000", + "longitude": "10.22552000" + }, + { + "id": "26403", + "name": "Ipsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52750000", + "longitude": "10.48176000" + }, + { + "id": "26404", + "name": "Irchenrieth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62286000", + "longitude": "12.22495000" + }, + { + "id": "26405", + "name": "Irlbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84128000", + "longitude": "12.75135000" + }, + { + "id": "26408", + "name": "Irschenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.83333000", + "longitude": "11.91667000" + }, + { + "id": "26409", + "name": "Irsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90815000", + "longitude": "10.57177000" + }, + { + "id": "26411", + "name": "Isen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21203000", + "longitude": "12.05672000" + }, + { + "id": "26415", + "name": "Ismaning", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23333000", + "longitude": "11.68333000" + }, + { + "id": "26429", + "name": "Jandelsbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73333000", + "longitude": "13.70000000" + }, + { + "id": "26436", + "name": "Jengen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99934000", + "longitude": "10.72575000" + }, + { + "id": "26442", + "name": "Jesenwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16667000", + "longitude": "11.13333000" + }, + { + "id": "26447", + "name": "Jettingen-Scheppach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38960000", + "longitude": "10.43810000" + }, + { + "id": "26448", + "name": "Jetzendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43333000", + "longitude": "11.41667000" + }, + { + "id": "26454", + "name": "Johannesberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03159000", + "longitude": "9.14252000" + }, + { + "id": "26456", + "name": "Johanniskirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53333000", + "longitude": "12.95000000" + }, + { + "id": "26462", + "name": "Julbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25430000", + "longitude": "12.95793000" + }, + { + "id": "26479", + "name": "Kahl am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06981000", + "longitude": "9.00553000" + }, + { + "id": "26484", + "name": "Kaisheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76751000", + "longitude": "10.79639000" + }, + { + "id": "26487", + "name": "Kalchreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55785000", + "longitude": "11.13350000" + }, + { + "id": "26493", + "name": "Kallmünz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16094000", + "longitude": "11.96051000" + }, + { + "id": "26501", + "name": "Kammerstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29317000", + "longitude": "10.97277000" + }, + { + "id": "26512", + "name": "Karbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86701000", + "longitude": "9.63806000" + }, + { + "id": "26515", + "name": "Karlsfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22697000", + "longitude": "11.47573000" + }, + { + "id": "26518", + "name": "Karlshuld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68190000", + "longitude": "11.28503000" + }, + { + "id": "26519", + "name": "Karlskron", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68333000", + "longitude": "11.41667000" + }, + { + "id": "26522", + "name": "Karlstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96034000", + "longitude": "9.77239000" + }, + { + "id": "26524", + "name": "Karsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04091000", + "longitude": "9.78534000" + }, + { + "id": "26529", + "name": "Kasendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03665000", + "longitude": "11.35203000" + }, + { + "id": "26533", + "name": "Kastl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36960000", + "longitude": "11.68261000" + }, + { + "id": "26542", + "name": "Kaufbeuren", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.88238000", + "longitude": "10.62192000" + }, + { + "id": "26543", + "name": "Kaufering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.09121000", + "longitude": "10.87913000" + }, + { + "id": "26812", + "name": "Köditz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33333000", + "longitude": "11.85000000" + }, + { + "id": "26813", + "name": "Ködnitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10000000", + "longitude": "11.53333000" + }, + { + "id": "26814", + "name": "Köfering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93333000", + "longitude": "12.20000000" + }, + { + "id": "26825", + "name": "Königsbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27506000", + "longitude": "10.89178000" + }, + { + "id": "26827", + "name": "Königsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81546000", + "longitude": "11.48063000" + }, + { + "id": "26830", + "name": "Königsfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94603000", + "longitude": "11.16520000" + }, + { + "id": "26835", + "name": "Königstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60854000", + "longitude": "11.63143000" + }, + { + "id": "26848", + "name": "Kötzting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17649000", + "longitude": "12.85515000" + }, + { + "id": "26849", + "name": "Kühbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49101000", + "longitude": "11.18691000" + }, + { + "id": "26854", + "name": "Kümmersbruck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41917000", + "longitude": "11.88833000" + }, + { + "id": "26857", + "name": "Künzing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66667000", + "longitude": "13.08333000" + }, + { + "id": "26858", + "name": "Kürnach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85000000", + "longitude": "10.03333000" + }, + { + "id": "26556", + "name": "Kelheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91725000", + "longitude": "11.88618000" + }, + { + "id": "26561", + "name": "Kellmünz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.12159000", + "longitude": "10.12811000" + }, + { + "id": "26564", + "name": "Kemmern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95486000", + "longitude": "10.87784000" + }, + { + "id": "26565", + "name": "Kemnath", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87007000", + "longitude": "11.89077000" + }, + { + "id": "26569", + "name": "Kempten (Allgäu)", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.72674000", + "longitude": "10.31389000" + }, + { + "id": "26577", + "name": "Kettershausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18333000", + "longitude": "10.26667000" + }, + { + "id": "26583", + "name": "Kiefersfelden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.61409000", + "longitude": "12.19096000" + }, + { + "id": "26585", + "name": "Kienberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03481000", + "longitude": "12.46330000" + }, + { + "id": "26593", + "name": "Kirchanschöring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95303000", + "longitude": "12.83435000" + }, + { + "id": "26597", + "name": "Kirchberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.90006000", + "longitude": "13.18200000" + }, + { + "id": "26602", + "name": "Kirchdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45942000", + "longitude": "11.65438000" + }, + { + "id": "26605", + "name": "Kirchdorf am Inn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24755000", + "longitude": "12.98453000" + }, + { + "id": "26606", + "name": "Kirchdorf im Wald", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91048000", + "longitude": "13.26614000" + }, + { + "id": "26607", + "name": "Kirchehrenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.73333000", + "longitude": "11.15000000" + }, + { + "id": "26609", + "name": "Kirchenlamitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15190000", + "longitude": "11.94831000" + }, + { + "id": "26610", + "name": "Kirchenpingarten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93333000", + "longitude": "11.78333000" + }, + { + "id": "26611", + "name": "Kirchensittenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55601000", + "longitude": "11.42226000" + }, + { + "id": "26613", + "name": "Kirchenthumbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74866000", + "longitude": "11.72542000" + }, + { + "id": "26616", + "name": "Kirchham", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.34638000", + "longitude": "13.26719000" + }, + { + "id": "26617", + "name": "Kirchhaslach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15040000", + "longitude": "10.31015000" + }, + { + "id": "26619", + "name": "Kirchheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17490000", + "longitude": "10.47461000" + }, + { + "id": "26624", + "name": "Kirchheim bei München", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17656000", + "longitude": "11.75563000" + }, + { + "id": "26628", + "name": "Kirchlauter", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04430000", + "longitude": "10.71776000" + }, + { + "id": "26631", + "name": "Kirchroth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95000000", + "longitude": "12.55000000" + }, + { + "id": "26633", + "name": "Kirchseeon", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07143000", + "longitude": "11.88875000" + }, + { + "id": "26637", + "name": "Kirchweidach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08575000", + "longitude": "12.64530000" + }, + { + "id": "26640", + "name": "Kirchzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61800000", + "longitude": "9.17785000" + }, + { + "id": "26649", + "name": "Kissing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30375000", + "longitude": "10.97088000" + }, + { + "id": "26650", + "name": "Kist", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74278000", + "longitude": "9.84389000" + }, + { + "id": "26652", + "name": "Kitzingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.73973000", + "longitude": "10.15072000" + }, + { + "id": "26668", + "name": "Kleinaitingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21850000", + "longitude": "10.86923000" + }, + { + "id": "26672", + "name": "Kleinheubach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72109000", + "longitude": "9.21346000" + }, + { + "id": "26673", + "name": "Kleinkahl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.11667000", + "longitude": "9.26667000" + }, + { + "id": "26674", + "name": "Kleinlangheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77087000", + "longitude": "10.28430000" + }, + { + "id": "26677", + "name": "Kleinostheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00000000", + "longitude": "9.06667000" + }, + { + "id": "26678", + "name": "Kleinrinderfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70028000", + "longitude": "9.84472000" + }, + { + "id": "26679", + "name": "Kleinsendelbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59558000", + "longitude": "11.15773000" + }, + { + "id": "26680", + "name": "Kleinwallstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87464000", + "longitude": "9.16927000" + }, + { + "id": "26686", + "name": "Klingenberg am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78507000", + "longitude": "9.18025000" + }, + { + "id": "26694", + "name": "Klosterlechfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15586000", + "longitude": "10.82986000" + }, + { + "id": "26701", + "name": "Knetzgau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98333000", + "longitude": "10.55000000" + }, + { + "id": "26706", + "name": "Kochel", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65926000", + "longitude": "11.36827000" + }, + { + "id": "26708", + "name": "Kohlberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59121000", + "longitude": "12.01948000" + }, + { + "id": "26710", + "name": "Kolbermoor", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84965000", + "longitude": "12.06696000" + }, + { + "id": "26712", + "name": "Kolitzheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91667000", + "longitude": "10.23333000" + }, + { + "id": "26715", + "name": "Kollnburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04664000", + "longitude": "12.86121000" + }, + { + "id": "26717", + "name": "Konradsreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26667000", + "longitude": "11.85000000" + }, + { + "id": "26720", + "name": "Konzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07240000", + "longitude": "12.71114000" + }, + { + "id": "26731", + "name": "Kottgeisering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11667000", + "longitude": "11.13333000" + }, + { + "id": "26734", + "name": "Kraiburg am Inn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18191000", + "longitude": "12.43073000" + }, + { + "id": "26736", + "name": "Krailling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10000000", + "longitude": "11.40000000" + }, + { + "id": "26787", + "name": "Krün", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.50515000", + "longitude": "11.27924000" + }, + { + "id": "26754", + "name": "Kreut", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.79868000", + "longitude": "11.48312000" + }, + { + "id": "26758", + "name": "Kreuzwertheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76818000", + "longitude": "9.51819000" + }, + { + "id": "26765", + "name": "Krombach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08319000", + "longitude": "9.20609000" + }, + { + "id": "26767", + "name": "Kronach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23963000", + "longitude": "11.33308000" + }, + { + "id": "26771", + "name": "Kronburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90432000", + "longitude": "10.15720000" + }, + { + "id": "26778", + "name": "Krumbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24182000", + "longitude": "10.36320000" + }, + { + "id": "26779", + "name": "Krummennaab", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83333000", + "longitude": "12.10000000" + }, + { + "id": "26791", + "name": "Kueps Oberfranken", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.19265000", + "longitude": "11.27599000" + }, + { + "id": "26793", + "name": "Kulmain", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "11.90000000" + }, + { + "id": "26794", + "name": "Kulmbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10068000", + "longitude": "11.45032000" + }, + { + "id": "26795", + "name": "Kumhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50938000", + "longitude": "12.15637000" + }, + { + "id": "26797", + "name": "Kunreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23321000", + "longitude": "11.53119000" + }, + { + "id": "26798", + "name": "Kupferberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.13960000", + "longitude": "11.57762000" + }, + { + "id": "26809", + "name": "Kutzenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.34202000", + "longitude": "10.69459000" + }, + { + "id": "26865", + "name": "Laberweinting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80000000", + "longitude": "12.31667000" + }, + { + "id": "26867", + "name": "Lachen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.94590000", + "longitude": "10.23943000" + }, + { + "id": "26879", + "name": "Lalling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84525000", + "longitude": "13.14008000" + }, + { + "id": "26880", + "name": "Lam", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19665000", + "longitude": "13.05051000" + }, + { + "id": "26884", + "name": "Lamerdingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.09195000", + "longitude": "10.73982000" + }, + { + "id": "26889", + "name": "Landau an der Isar", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67249000", + "longitude": "12.69316000" + }, + { + "id": "26894", + "name": "Landsberg am Lech", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04819000", + "longitude": "10.88282000" + }, + { + "id": "26895", + "name": "Landsberied", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16667000", + "longitude": "11.16667000" + }, + { + "id": "26897", + "name": "Landshut", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.52961000", + "longitude": "12.16179000" + }, + { + "id": "26904", + "name": "Langenaltheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89318000", + "longitude": "10.93107000" + }, + { + "id": "26907", + "name": "Langenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43333000", + "longitude": "11.85000000" + }, + { + "id": "26917", + "name": "Langenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61667000", + "longitude": "10.51667000" + }, + { + "id": "26924", + "name": "Langenmosen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60658000", + "longitude": "11.21378000" + }, + { + "id": "26925", + "name": "Langenneufnach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26667000", + "longitude": "10.60000000" + }, + { + "id": "26927", + "name": "Langenpreising", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42569000", + "longitude": "11.97217000" + }, + { + "id": "26929", + "name": "Langensendelbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64051000", + "longitude": "11.07104000" + }, + { + "id": "26932", + "name": "Langenzenn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49463000", + "longitude": "10.79230000" + }, + { + "id": "26934", + "name": "Langerringen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14590000", + "longitude": "10.75894000" + }, + { + "id": "26937", + "name": "Langfurth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10112000", + "longitude": "10.45359000" + }, + { + "id": "26940", + "name": "Langquaid", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.82318000", + "longitude": "12.05134000" + }, + { + "id": "26946", + "name": "Langweid", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49095000", + "longitude": "10.85310000" + }, + { + "id": "26950", + "name": "Lappersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04694000", + "longitude": "12.09130000" + }, + { + "id": "26957", + "name": "Lauben", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05928000", + "longitude": "10.29014000" + }, + { + "id": "26964", + "name": "Laudenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74583000", + "longitude": "9.17611000" + }, + { + "id": "26971", + "name": "Lauf an der Pegnitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51386000", + "longitude": "11.28247000" + }, + { + "id": "26972", + "name": "Laufach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "9.30000000" + }, + { + "id": "26974", + "name": "Laufen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93568000", + "longitude": "12.92856000" + }, + { + "id": "26977", + "name": "Laugna", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53333000", + "longitude": "10.70000000" + }, + { + "id": "26978", + "name": "Lauingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56775000", + "longitude": "10.42706000" + }, + { + "id": "26983", + "name": "Lauter", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97317000", + "longitude": "10.78842000" + }, + { + "id": "26987", + "name": "Lauterhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36840000", + "longitude": "11.60294000" + }, + { + "id": "26989", + "name": "Lautertal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33333000", + "longitude": "10.96667000" + }, + { + "id": "26990", + "name": "Lautrach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89805000", + "longitude": "10.11806000" + }, + { + "id": "26996", + "name": "Lechbruck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70162000", + "longitude": "10.79493000" + }, + { + "id": "27004", + "name": "Legau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85628000", + "longitude": "10.12981000" + }, + { + "id": "27010", + "name": "Lehrberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34568000", + "longitude": "10.51101000" + }, + { + "id": "27015", + "name": "Leiblfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.77565000", + "longitude": "12.51793000" + }, + { + "id": "27017", + "name": "Leidersbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90139000", + "longitude": "9.22167000" + }, + { + "id": "27022", + "name": "Leinburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45167000", + "longitude": "11.31000000" + }, + { + "id": "27027", + "name": "Leipheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45004000", + "longitude": "10.22278000" + }, + { + "id": "27038", + "name": "Lengdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25737000", + "longitude": "12.04973000" + }, + { + "id": "27042", + "name": "Lengenwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70000000", + "longitude": "10.60000000" + }, + { + "id": "27045", + "name": "Lenggries", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.68333000", + "longitude": "11.56667000" + }, + { + "id": "27052", + "name": "Leonberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94708000", + "longitude": "12.28520000" + }, + { + "id": "27060", + "name": "Leuchtenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59737000", + "longitude": "12.25840000" + }, + { + "id": "27063", + "name": "Leupoldsgrün", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30000000", + "longitude": "11.80000000" + }, + { + "id": "27064", + "name": "Leutenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70950000", + "longitude": "11.17224000" + }, + { + "id": "27068", + "name": "Leutershausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29869000", + "longitude": "10.41189000" + }, + { + "id": "27077", + "name": "Lichtenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15979000", + "longitude": "10.37935000" + }, + { + "id": "27079", + "name": "Lichtenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38335000", + "longitude": "11.67624000" + }, + { + "id": "27081", + "name": "Lichtenfels", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14567000", + "longitude": "11.05928000" + }, + { + "id": "27102", + "name": "Lindau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.54612000", + "longitude": "9.68431000" + }, + { + "id": "27105", + "name": "Lindberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03680000", + "longitude": "13.25423000" + }, + { + "id": "27123", + "name": "Litzendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91444000", + "longitude": "11.01028000" + }, + { + "id": "27130", + "name": "Lohberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17604000", + "longitude": "13.10549000" + }, + { + "id": "27136", + "name": "Lohr am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98922000", + "longitude": "9.57223000" + }, + { + "id": "27139", + "name": "Loiching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61667000", + "longitude": "12.43333000" + }, + { + "id": "27145", + "name": "Lonnerstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.69882000", + "longitude": "10.76711000" + }, + { + "id": "27155", + "name": "Lower Bavaria", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75000000", + "longitude": "12.83333000" + }, + { + "id": "27167", + "name": "Ludwigsstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48605000", + "longitude": "11.38734000" + }, + { + "id": "27171", + "name": "Luhe-Wildenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58367000", + "longitude": "12.14921000" + }, + { + "id": "27177", + "name": "Lupburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15510000", + "longitude": "11.75640000" + }, + { + "id": "27352", + "name": "Maßbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.18321000", + "longitude": "10.27522000" + }, + { + "id": "27234", + "name": "Maierhöfen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65000000", + "longitude": "10.05000000" + }, + { + "id": "27235", + "name": "Maihingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.92745000", + "longitude": "10.49867000" + }, + { + "id": "27237", + "name": "Mainaschaff", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98167000", + "longitude": "9.09000000" + }, + { + "id": "27238", + "name": "Mainbernheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70794000", + "longitude": "10.21900000" + }, + { + "id": "27239", + "name": "Mainburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64182000", + "longitude": "11.78093000" + }, + { + "id": "27241", + "name": "Mainleus", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09987000", + "longitude": "11.37664000" + }, + { + "id": "27242", + "name": "Mainstockheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77156000", + "longitude": "10.14807000" + }, + { + "id": "27246", + "name": "Maisach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21667000", + "longitude": "11.26667000" + }, + { + "id": "27247", + "name": "Maitenbeth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15053000", + "longitude": "12.09335000" + }, + { + "id": "27250", + "name": "Malching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31226000", + "longitude": "13.18746000" + }, + { + "id": "27253", + "name": "Malgersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53333000", + "longitude": "12.75000000" + }, + { + "id": "27254", + "name": "Mallersdorf-Pfaffenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76637000", + "longitude": "12.23096000" + }, + { + "id": "27261", + "name": "Mammendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.20836000", + "longitude": "11.16326000" + }, + { + "id": "27262", + "name": "Mamming", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65174000", + "longitude": "12.60784000" + }, + { + "id": "27263", + "name": "Manching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71656000", + "longitude": "11.49393000" + }, + { + "id": "27268", + "name": "Mantel", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65412000", + "longitude": "12.04074000" + }, + { + "id": "27271", + "name": "Margetshöchheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83750000", + "longitude": "9.86389000" + }, + { + "id": "27272", + "name": "Mariaposching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83333000", + "longitude": "12.80000000" + }, + { + "id": "27288", + "name": "Marklkofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55000000", + "longitude": "12.56667000" + }, + { + "id": "27293", + "name": "Markt Berolzheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00955000", + "longitude": "10.84473000" + }, + { + "id": "27294", + "name": "Markt Bibart", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64787000", + "longitude": "10.42492000" + }, + { + "id": "27295", + "name": "Markt Einersheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68663000", + "longitude": "10.29155000" + }, + { + "id": "27296", + "name": "Markt Erlbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49367000", + "longitude": "10.65265000" + }, + { + "id": "27297", + "name": "Markt Indersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.36058000", + "longitude": "11.37789000" + }, + { + "id": "27298", + "name": "Markt Nordheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59095000", + "longitude": "10.35564000" + }, + { + "id": "27299", + "name": "Markt Rettenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.94733000", + "longitude": "10.39608000" + }, + { + "id": "27300", + "name": "Markt Schwaben", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18949000", + "longitude": "11.86910000" + }, + { + "id": "27301", + "name": "Markt Taschendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70111000", + "longitude": "10.55557000" + }, + { + "id": "27302", + "name": "Markt Wald", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13680000", + "longitude": "10.58198000" + }, + { + "id": "27303", + "name": "Marktbergel", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44156000", + "longitude": "10.36355000" + }, + { + "id": "27304", + "name": "Marktbreit", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66541000", + "longitude": "10.14811000" + }, + { + "id": "27305", + "name": "Marktgraitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.18358000", + "longitude": "11.19441000" + }, + { + "id": "27306", + "name": "Marktheidenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84540000", + "longitude": "9.60359000" + }, + { + "id": "27307", + "name": "Marktl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25516000", + "longitude": "12.84470000" + }, + { + "id": "27308", + "name": "Marktleugast", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17306000", + "longitude": "11.63389000" + }, + { + "id": "27309", + "name": "Marktleuthen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.13007000", + "longitude": "12.00226000" + }, + { + "id": "27310", + "name": "Marktoberdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77964000", + "longitude": "10.61713000" + }, + { + "id": "27311", + "name": "Marktoffingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.92566000", + "longitude": "10.47078000" + }, + { + "id": "27312", + "name": "Marktredwitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00443000", + "longitude": "12.08593000" + }, + { + "id": "27313", + "name": "Marktrodach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25000000", + "longitude": "11.38333000" + }, + { + "id": "27314", + "name": "Marktschellenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.69657000", + "longitude": "13.04340000" + }, + { + "id": "27315", + "name": "Marktschorgast", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09475000", + "longitude": "11.65465000" + }, + { + "id": "27316", + "name": "Marktsteft", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.69606000", + "longitude": "10.13626000" + }, + { + "id": "27317", + "name": "Marktzeuln", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16673000", + "longitude": "11.16692000" + }, + { + "id": "27319", + "name": "Marloffstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61794000", + "longitude": "11.06323000" + }, + { + "id": "27322", + "name": "Maroldsweisach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.19578000", + "longitude": "10.66003000" + }, + { + "id": "27324", + "name": "Marquartstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75857000", + "longitude": "12.46219000" + }, + { + "id": "27330", + "name": "Martinsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62350000", + "longitude": "10.14879000" + }, + { + "id": "27333", + "name": "Marxheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.74153000", + "longitude": "10.94504000" + }, + { + "id": "27335", + "name": "Marzling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40904000", + "longitude": "11.79382000" + }, + { + "id": "27340", + "name": "Massing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.39118000", + "longitude": "12.60947000" + }, + { + "id": "27343", + "name": "Mauern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51667000", + "longitude": "11.90000000" + }, + { + "id": "27344", + "name": "Mauerstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89358000", + "longitude": "10.67127000" + }, + { + "id": "27347", + "name": "Mauth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88972000", + "longitude": "13.58459000" + }, + { + "id": "27349", + "name": "Maxhütte-Haidhof", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19963000", + "longitude": "12.09229000" + }, + { + "id": "27553", + "name": "Mähring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91095000", + "longitude": "12.52448000" + }, + { + "id": "27557", + "name": "Mödingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.64327000", + "longitude": "10.43173000" + }, + { + "id": "27562", + "name": "Möhrendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63333000", + "longitude": "11.00000000" + }, + { + "id": "27565", + "name": "Mömbris", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06921000", + "longitude": "9.16371000" + }, + { + "id": "27566", + "name": "Mömlingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85972000", + "longitude": "9.08333000" + }, + { + "id": "27567", + "name": "Mönchberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79326000", + "longitude": "9.26858000" + }, + { + "id": "27571", + "name": "Mönchsdeggingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.77605000", + "longitude": "10.58043000" + }, + { + "id": "27572", + "name": "Mönchsroth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01851000", + "longitude": "10.35856000" + }, + { + "id": "27580", + "name": "Möttingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80924000", + "longitude": "10.59022000" + }, + { + "id": "27581", + "name": "Mötzing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89350000", + "longitude": "12.37361000" + }, + { + "id": "27593", + "name": "Mühldorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24670000", + "longitude": "12.52155000" + }, + { + "id": "27597", + "name": "Mühlhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75443000", + "longitude": "10.77563000" + }, + { + "id": "27609", + "name": "Münchberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.18952000", + "longitude": "11.78823000" + }, + { + "id": "27613", + "name": "Münchsmünster", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76667000", + "longitude": "11.68333000" + }, + { + "id": "27614", + "name": "Münchsteinach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63937000", + "longitude": "10.59502000" + }, + { + "id": "27617", + "name": "Münnerstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.24636000", + "longitude": "10.20187000" + }, + { + "id": "27618", + "name": "Münsing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90000000", + "longitude": "11.36667000" + }, + { + "id": "27622", + "name": "Münster", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22904000", + "longitude": "10.63623000" + }, + { + "id": "27625", + "name": "Münsterhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30973000", + "longitude": "10.45500000" + }, + { + "id": "27363", + "name": "Medlingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57027000", + "longitude": "10.31608000" + }, + { + "id": "27364", + "name": "Meeder", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.32118000", + "longitude": "10.90697000" + }, + { + "id": "27372", + "name": "Mehlmeisel", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97421000", + "longitude": "11.86200000" + }, + { + "id": "27377", + "name": "Mehring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18333000", + "longitude": "12.78333000" + }, + { + "id": "27386", + "name": "Meitingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.54586000", + "longitude": "10.85179000" + }, + { + "id": "27397", + "name": "Mellrichstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42849000", + "longitude": "10.30334000" + }, + { + "id": "27401", + "name": "Memmelsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93012000", + "longitude": "10.95921000" + }, + { + "id": "27402", + "name": "Memmingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.98372000", + "longitude": "10.18527000" + }, + { + "id": "27403", + "name": "Memmingerberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.98803000", + "longitude": "10.22295000" + }, + { + "id": "27410", + "name": "Mengkofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71894000", + "longitude": "12.44047000" + }, + { + "id": "27414", + "name": "Merching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24594000", + "longitude": "10.98530000" + }, + { + "id": "27418", + "name": "Mering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26560000", + "longitude": "10.98461000" + }, + { + "id": "27420", + "name": "Merkendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20361000", + "longitude": "10.70416000" + }, + { + "id": "27424", + "name": "Mertingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65695000", + "longitude": "10.80557000" + }, + { + "id": "27433", + "name": "Mespelbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91444000", + "longitude": "9.29194000" + }, + { + "id": "27437", + "name": "Metten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85512000", + "longitude": "12.91554000" + }, + { + "id": "27440", + "name": "Mettenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26667000", + "longitude": "12.46667000" + }, + { + "id": "27451", + "name": "Michelau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16233000", + "longitude": "11.11207000" + }, + { + "id": "27454", + "name": "Michelsneukirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.12291000", + "longitude": "12.55284000" + }, + { + "id": "27457", + "name": "Mickhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24171000", + "longitude": "10.64026000" + }, + { + "id": "27461", + "name": "Miesbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.78903000", + "longitude": "11.83382000" + }, + { + "id": "27468", + "name": "Miltach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16196000", + "longitude": "12.76843000" + }, + { + "id": "27469", + "name": "Miltenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70452000", + "longitude": "9.26725000" + }, + { + "id": "27471", + "name": "Mindelheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04578000", + "longitude": "10.49222000" + }, + { + "id": "27474", + "name": "Mintraching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95357000", + "longitude": "12.24209000" + }, + { + "id": "27476", + "name": "Missen-Wilhams", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.60000000", + "longitude": "10.11667000" + }, + { + "id": "27477", + "name": "Mistelgau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91260000", + "longitude": "11.46586000" + }, + { + "id": "27481", + "name": "Mitteleschenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.21186000", + "longitude": "10.79784000" + }, + { + "id": "27484", + "name": "Mittelneufnach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17642000", + "longitude": "10.59754000" + }, + { + "id": "27486", + "name": "Mittelstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25000000", + "longitude": "11.10000000" + }, + { + "id": "27488", + "name": "Mittenwald", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.44220000", + "longitude": "11.26187000" + }, + { + "id": "27490", + "name": "Mitterfels", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.97633000", + "longitude": "12.67848000" + }, + { + "id": "27491", + "name": "Mitterskirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35000000", + "longitude": "12.73333000" + }, + { + "id": "27492", + "name": "Mitterteich", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95141000", + "longitude": "12.24206000" + }, + { + "id": "27494", + "name": "Mitwitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25111000", + "longitude": "11.20818000" + }, + { + "id": "27508", + "name": "Monheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.84389000", + "longitude": "10.85834000" + }, + { + "id": "27515", + "name": "Moorenweis", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15561000", + "longitude": "11.07851000" + }, + { + "id": "27518", + "name": "Moosach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03213000", + "longitude": "11.87510000" + }, + { + "id": "27519", + "name": "Moosbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58909000", + "longitude": "12.41036000" + }, + { + "id": "27520", + "name": "Moosburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.47089000", + "longitude": "11.93811000" + }, + { + "id": "27521", + "name": "Moosinning", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27708000", + "longitude": "11.84446000" + }, + { + "id": "27522", + "name": "Moosthenning", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67659000", + "longitude": "12.49737000" + }, + { + "id": "27529", + "name": "Motten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39561000", + "longitude": "9.77251000" + }, + { + "id": "27534", + "name": "Muhr am See", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15445000", + "longitude": "10.71845000" + }, + { + "id": "27540", + "name": "Munich", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13743000", + "longitude": "11.57549000" + }, + { + "id": "27542", + "name": "Munningen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91667000", + "longitude": "10.60000000" + }, + { + "id": "27545", + "name": "Murnau am Staffelsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.68085000", + "longitude": "11.20125000" + }, + { + "id": "27630", + "name": "Nabburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45347000", + "longitude": "12.17996000" + }, + { + "id": "27634", + "name": "Nagel", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98333000", + "longitude": "11.91667000" + }, + { + "id": "27638", + "name": "Naila", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33034000", + "longitude": "11.70463000" + }, + { + "id": "27641", + "name": "Nandlstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53644000", + "longitude": "11.80730000" + }, + { + "id": "27946", + "name": "Nördlingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85122000", + "longitude": "10.48868000" + }, + { + "id": "27951", + "name": "Nüdlingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.22063000", + "longitude": "10.12296000" + }, + { + "id": "27954", + "name": "Nürnberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45421000", + "longitude": "11.07752000" + }, + { + "id": "27674", + "name": "Nennslingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04709000", + "longitude": "11.13052000" + }, + { + "id": "27679", + "name": "Nersingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42829000", + "longitude": "10.12356000" + }, + { + "id": "27682", + "name": "Nesselwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.62342000", + "longitude": "10.50243000" + }, + { + "id": "27695", + "name": "Neu-Ulm", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.39279000", + "longitude": "10.01112000" + }, + { + "id": "27696", + "name": "Neualbenreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98037000", + "longitude": "12.44373000" + }, + { + "id": "27817", + "name": "Neuötting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24102000", + "longitude": "12.68998000" + }, + { + "id": "27698", + "name": "Neubeuern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77368000", + "longitude": "12.14002000" + }, + { + "id": "27699", + "name": "Neubiberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07710000", + "longitude": "11.65812000" + }, + { + "id": "27701", + "name": "Neubrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.73088000", + "longitude": "9.67161000" + }, + { + "id": "27707", + "name": "Neuburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50654000", + "longitude": "13.44718000" + }, + { + "id": "27709", + "name": "Neuburg an der Donau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73218000", + "longitude": "11.18709000" + }, + { + "id": "27714", + "name": "Neudrossenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "11.50000000" + }, + { + "id": "27719", + "name": "Neuendettelsau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28333000", + "longitude": "10.78333000" + }, + { + "id": "27724", + "name": "Neuenmarkt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09193000", + "longitude": "11.58033000" + }, + { + "id": "27731", + "name": "Neufahrn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25587000", + "longitude": "12.44078000" + }, + { + "id": "27732", + "name": "Neufahrn bei Freising", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31588000", + "longitude": "11.66316000" + }, + { + "id": "27735", + "name": "Neufraunhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40000000", + "longitude": "12.21667000" + }, + { + "id": "27740", + "name": "Neuhaus am Inn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46086000", + "longitude": "13.42083000" + }, + { + "id": "27743", + "name": "Neuhaus an der Pegnitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62799000", + "longitude": "11.55066000" + }, + { + "id": "27752", + "name": "Neuhütten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00000000", + "longitude": "9.41667000" + }, + { + "id": "27749", + "name": "Neuhof an der Zenn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45690000", + "longitude": "10.64548000" + }, + { + "id": "27759", + "name": "Neukirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26015000", + "longitude": "12.96921000" + }, + { + "id": "27763", + "name": "Neukirchen-Balbini", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29101000", + "longitude": "12.43643000" + }, + { + "id": "27771", + "name": "Neumarkt in der Oberpfalz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28028000", + "longitude": "11.46278000" + }, + { + "id": "27772", + "name": "Neumarkt-Sankt Veit", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.36051000", + "longitude": "12.50723000" + }, + { + "id": "27775", + "name": "Neunburg vorm Wald", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34782000", + "longitude": "12.38621000" + }, + { + "id": "27781", + "name": "Neunkirchen am Brand", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61204000", + "longitude": "11.12967000" + }, + { + "id": "27782", + "name": "Neunkirchen am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92300000", + "longitude": "11.64793000" + }, + { + "id": "27783", + "name": "Neunkirchen am Sand", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52464000", + "longitude": "11.31955000" + }, + { + "id": "27785", + "name": "Neureichenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.74861000", + "longitude": "13.74699000" + }, + { + "id": "27786", + "name": "Neuried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.09322000", + "longitude": "11.46561000" + }, + { + "id": "27789", + "name": "Neuschönau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88419000", + "longitude": "13.47576000" + }, + { + "id": "27790", + "name": "Neusitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37185000", + "longitude": "10.22559000" + }, + { + "id": "27791", + "name": "Neusorg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93333000", + "longitude": "11.96667000" + }, + { + "id": "27797", + "name": "Neustadt am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93021000", + "longitude": "9.56808000" + }, + { + "id": "27800", + "name": "Neustadt an der Aisch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.57953000", + "longitude": "10.61126000" + }, + { + "id": "27801", + "name": "Neustadt an der Donau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.80705000", + "longitude": "11.76952000" + }, + { + "id": "27803", + "name": "Neustadt an der Waldnaab", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.73287000", + "longitude": "12.17773000" + }, + { + "id": "27804", + "name": "Neustadt bei Coburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.32975000", + "longitude": "11.12058000" + }, + { + "id": "27811", + "name": "Neutraubling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.98737000", + "longitude": "12.20100000" + }, + { + "id": "27829", + "name": "Niederaichbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60000000", + "longitude": "12.31667000" + }, + { + "id": "27830", + "name": "Niederalteich", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76564000", + "longitude": "13.02412000" + }, + { + "id": "27833", + "name": "Niederbergkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31667000", + "longitude": "12.50000000" + }, + { + "id": "27848", + "name": "Niederfüllbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.22002000", + "longitude": "10.99086000" + }, + { + "id": "27856", + "name": "Niederlauer", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.29411000", + "longitude": "10.17712000" + }, + { + "id": "27859", + "name": "Niedermurach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44999000", + "longitude": "12.37610000" + }, + { + "id": "27860", + "name": "Niedernberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91222000", + "longitude": "9.13694000" + }, + { + "id": "27868", + "name": "Niederrieden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05760000", + "longitude": "10.18321000" + }, + { + "id": "27872", + "name": "Niederschönenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71667000", + "longitude": "10.93333000" + }, + { + "id": "27878", + "name": "Niedertaufkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.33333000", + "longitude": "12.55000000" + }, + { + "id": "27879", + "name": "Niederviehbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61667000", + "longitude": "12.38333000" + }, + { + "id": "27881", + "name": "Niederwerrn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06149000", + "longitude": "10.18270000" + }, + { + "id": "27884", + "name": "Niederwinkling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88333000", + "longitude": "12.80000000" + }, + { + "id": "27904", + "name": "Nittenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19425000", + "longitude": "12.26741000" + }, + { + "id": "27905", + "name": "Nittendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.02459000", + "longitude": "11.96126000" + }, + { + "id": "27909", + "name": "Nonnenhorn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.57386000", + "longitude": "9.61038000" + }, + { + "id": "27913", + "name": "Nordendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59478000", + "longitude": "10.83183000" + }, + { + "id": "27917", + "name": "Nordhalben", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37411000", + "longitude": "11.50992000" + }, + { + "id": "27920", + "name": "Nordheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85870000", + "longitude": "10.18545000" + }, + { + "id": "27942", + "name": "Nußdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90564000", + "longitude": "12.59608000" + }, + { + "id": "27943", + "name": "Nußdorf am Inn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.74232000", + "longitude": "12.15611000" + }, + { + "id": "27962", + "name": "Oberammergau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.59812000", + "longitude": "11.06692000" + }, + { + "id": "27963", + "name": "Oberasbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.42275000", + "longitude": "10.95766000" + }, + { + "id": "27964", + "name": "Oberaudorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.64822000", + "longitude": "12.17242000" + }, + { + "id": "27966", + "name": "Oberbergkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30000000", + "longitude": "12.38333000" + }, + { + "id": "27970", + "name": "Oberdachstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41667000", + "longitude": "10.43333000" + }, + { + "id": "27972", + "name": "Oberding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31667000", + "longitude": "11.85000000" + }, + { + "id": "27976", + "name": "Oberelsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.44118000", + "longitude": "10.11692000" + }, + { + "id": "27980", + "name": "Obergünzburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84545000", + "longitude": "10.41821000" + }, + { + "id": "27978", + "name": "Obergriesbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42305000", + "longitude": "11.06850000" + }, + { + "id": "27981", + "name": "Oberhaching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02455000", + "longitude": "11.59744000" + }, + { + "id": "27982", + "name": "Oberhaid", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.12614000", + "longitude": "11.80514000" + }, + { + "id": "27984", + "name": "Oberhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72201000", + "longitude": "11.11151000" + }, + { + "id": "27991", + "name": "Oberkotzau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26236000", + "longitude": "11.93484000" + }, + { + "id": "27992", + "name": "Oberleichtersbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.28333000", + "longitude": "9.80000000" + }, + { + "id": "27998", + "name": "Obermeitingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14685000", + "longitude": "10.80626000" + }, + { + "id": "27999", + "name": "Obermichelbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53117000", + "longitude": "10.90891000" + }, + { + "id": "28002", + "name": "Obernbreit", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65863000", + "longitude": "10.16424000" + }, + { + "id": "28003", + "name": "Obernburg am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83577000", + "longitude": "9.13101000" + }, + { + "id": "28006", + "name": "Oberndorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66918000", + "longitude": "10.86749000" + }, + { + "id": "28011", + "name": "Obernzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55485000", + "longitude": "13.63729000" + }, + { + "id": "28012", + "name": "Obernzenn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45193000", + "longitude": "10.46670000" + }, + { + "id": "28013", + "name": "Oberostendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.94360000", + "longitude": "10.74270000" + }, + { + "id": "28015", + "name": "Oberottmarshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23716000", + "longitude": "10.85754000" + }, + { + "id": "28018", + "name": "Oberpöring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70178000", + "longitude": "12.82482000" + }, + { + "id": "28016", + "name": "Oberpframmern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02202000", + "longitude": "11.81331000" + }, + { + "id": "28017", + "name": "Oberpleichfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87694000", + "longitude": "10.08682000" + }, + { + "id": "28019", + "name": "Oberreichenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58946000", + "longitude": "10.76892000" + }, + { + "id": "28021", + "name": "Oberreute", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.56303000", + "longitude": "9.94449000" + }, + { + "id": "28023", + "name": "Oberrieden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08886000", + "longitude": "10.42611000" + }, + { + "id": "28042", + "name": "Obersöchering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73333000", + "longitude": "11.21667000" + }, + { + "id": "28043", + "name": "Obersüßbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61667000", + "longitude": "11.95000000" + }, + { + "id": "28028", + "name": "Oberscheinfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70829000", + "longitude": "10.43418000" + }, + { + "id": "28029", + "name": "Oberschleißheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25000000", + "longitude": "11.56667000" + }, + { + "id": "28030", + "name": "Oberschneiding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79573000", + "longitude": "12.64200000" + }, + { + "id": "28031", + "name": "Oberschwarzach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86051000", + "longitude": "10.40999000" + }, + { + "id": "28032", + "name": "Oberschweinbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.23817000", + "longitude": "11.15571000" + }, + { + "id": "28035", + "name": "Obersinn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20875000", + "longitude": "9.61545000" + }, + { + "id": "28038", + "name": "Oberstaufen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.55568000", + "longitude": "10.02245000" + }, + { + "id": "28039", + "name": "Oberstdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.40724000", + "longitude": "10.27939000" + }, + { + "id": "28041", + "name": "Oberstreu", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40338000", + "longitude": "10.28775000" + }, + { + "id": "28044", + "name": "Obertaufkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26046000", + "longitude": "12.27904000" + }, + { + "id": "28047", + "name": "Oberthulba", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.19904000", + "longitude": "9.95882000" + }, + { + "id": "28048", + "name": "Obertraubling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96667000", + "longitude": "12.16667000" + }, + { + "id": "28049", + "name": "Obertrubach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70000000", + "longitude": "11.35000000" + }, + { + "id": "28052", + "name": "Oberviechtach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45809000", + "longitude": "12.41669000" + }, + { + "id": "28059", + "name": "Obing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00049000", + "longitude": "12.40528000" + }, + { + "id": "28062", + "name": "Ochsenfurt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66429000", + "longitude": "10.06227000" + }, + { + "id": "28068", + "name": "Odelzhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30889000", + "longitude": "11.19889000" + }, + { + "id": "28081", + "name": "Oerlenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15000000", + "longitude": "10.13333000" + }, + { + "id": "28083", + "name": "Oettingen in Bayern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95274000", + "longitude": "10.60465000" + }, + { + "id": "28089", + "name": "Offenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.86195000", + "longitude": "12.86293000" + }, + { + "id": "28091", + "name": "Offenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44971000", + "longitude": "11.41316000" + }, + { + "id": "28092", + "name": "Offingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48258000", + "longitude": "10.36249000" + }, + { + "id": "28095", + "name": "Ofterschwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.50000000", + "longitude": "10.23333000" + }, + { + "id": "28099", + "name": "Ohlstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.63333000", + "longitude": "11.23333000" + }, + { + "id": "28104", + "name": "Olching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.20000000", + "longitude": "11.33333000" + }, + { + "id": "28115", + "name": "Opfenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.63333000", + "longitude": "9.83333000" + }, + { + "id": "28127", + "name": "Ornbau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17623000", + "longitude": "10.65797000" + }, + { + "id": "28132", + "name": "Ortenburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.54597000", + "longitude": "13.22250000" + }, + { + "id": "28152", + "name": "Osterhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70000000", + "longitude": "13.02221000" + }, + { + "id": "28162", + "name": "Ostheim vor der Rhön", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45996000", + "longitude": "10.23057000" + }, + { + "id": "28179", + "name": "Ottenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21667000", + "longitude": "11.88333000" + }, + { + "id": "28182", + "name": "Ottensoos", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50949000", + "longitude": "11.34158000" + }, + { + "id": "28187", + "name": "Otterfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90898000", + "longitude": "11.67546000" + }, + { + "id": "28194", + "name": "Ottobeuren", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.94130000", + "longitude": "10.29971000" + }, + { + "id": "28195", + "name": "Ottobrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06489000", + "longitude": "11.66327000" + }, + { + "id": "28198", + "name": "Otzing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76134000", + "longitude": "12.80877000" + }, + { + "id": "28204", + "name": "Oy-Mittelberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.63333000", + "longitude": "10.43333000" + }, + { + "id": "28211", + "name": "Painten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.99731000", + "longitude": "11.81947000" + }, + { + "id": "28212", + "name": "Palling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00204000", + "longitude": "12.63702000" + }, + { + "id": "28220", + "name": "Pappenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.93383000", + "longitude": "10.97431000" + }, + { + "id": "28223", + "name": "Parkstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72921000", + "longitude": "12.06755000" + }, + { + "id": "28224", + "name": "Parkstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91667000", + "longitude": "12.60000000" + }, + { + "id": "28226", + "name": "Parsberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16074000", + "longitude": "11.71834000" + }, + { + "id": "28228", + "name": "Partenstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04176000", + "longitude": "9.51991000" + }, + { + "id": "28230", + "name": "Pasing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14146000", + "longitude": "11.45599000" + }, + { + "id": "28231", + "name": "Passau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56650000", + "longitude": "13.43122000" + }, + { + "id": "28232", + "name": "Pastetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.19911000", + "longitude": "11.94368000" + }, + { + "id": "28233", + "name": "Patersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01667000", + "longitude": "12.98333000" + }, + { + "id": "28237", + "name": "Paunzhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.47486000", + "longitude": "11.56463000" + }, + { + "id": "28412", + "name": "Pähl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90000000", + "longitude": "11.18333000" + }, + { + "id": "28413", + "name": "Pöcking", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96667000", + "longitude": "11.30000000" + }, + { + "id": "28418", + "name": "Pörnbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61667000", + "longitude": "11.46667000" + }, + { + "id": "28419", + "name": "Pöttmes", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58383000", + "longitude": "11.08762000" + }, + { + "id": "28421", + "name": "Püchersreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75000000", + "longitude": "12.23333000" + }, + { + "id": "28422", + "name": "Pürgen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02472000", + "longitude": "10.92213000" + }, + { + "id": "28239", + "name": "Pechbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96667000", + "longitude": "12.16667000" + }, + { + "id": "28241", + "name": "Pegnitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75216000", + "longitude": "11.54187000" + }, + { + "id": "28246", + "name": "Peißenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80466000", + "longitude": "11.06990000" + }, + { + "id": "28243", + "name": "Peiting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.79549000", + "longitude": "10.92951000" + }, + { + "id": "28250", + "name": "Pemfling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26667000", + "longitude": "12.61667000" + }, + { + "id": "28254", + "name": "Pentling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.98343000", + "longitude": "12.05870000" + }, + { + "id": "28255", + "name": "Penzberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.75293000", + "longitude": "11.37700000" + }, + { + "id": "28256", + "name": "Penzing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07481000", + "longitude": "10.92745000" + }, + { + "id": "28258", + "name": "Perach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26667000", + "longitude": "12.76667000" + }, + { + "id": "28259", + "name": "Perkam", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85528000", + "longitude": "12.43979000" + }, + { + "id": "28261", + "name": "Perlesreut", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.78181000", + "longitude": "13.43840000" + }, + { + "id": "28262", + "name": "Petersaurach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30000000", + "longitude": "10.75000000" + }, + { + "id": "28263", + "name": "Petersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51667000", + "longitude": "11.03333000" + }, + { + "id": "28266", + "name": "Petershausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40967000", + "longitude": "11.47056000" + }, + { + "id": "28267", + "name": "Pettendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35475000", + "longitude": "12.35926000" + }, + { + "id": "28268", + "name": "Petting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91232000", + "longitude": "12.81512000" + }, + { + "id": "28269", + "name": "Pettstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82996000", + "longitude": "10.92839000" + }, + { + "id": "28271", + "name": "Pfaffenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11878000", + "longitude": "10.45504000" + }, + { + "id": "28273", + "name": "Pfaffenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.39334000", + "longitude": "11.20563000" + }, + { + "id": "28274", + "name": "Pfaffenhofen an der Ilm", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53053000", + "longitude": "11.50500000" + }, + { + "id": "28275", + "name": "Pfaffenhofen an der Roth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35454000", + "longitude": "10.16184000" + }, + { + "id": "28277", + "name": "Pfaffing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05456000", + "longitude": "12.10917000" + }, + { + "id": "28279", + "name": "Pfakofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85822000", + "longitude": "12.22744000" + }, + { + "id": "28281", + "name": "Pfarrkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.43205000", + "longitude": "12.93812000" + }, + { + "id": "28282", + "name": "Pfarrweisach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15000000", + "longitude": "10.73333000" + }, + { + "id": "28283", + "name": "Pfatter", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96309000", + "longitude": "12.38254000" + }, + { + "id": "28286", + "name": "Pfeffenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.66466000", + "longitude": "11.96594000" + }, + { + "id": "28287", + "name": "Pfofeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10590000", + "longitude": "10.83664000" + }, + { + "id": "28288", + "name": "Pforzen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92997000", + "longitude": "10.61357000" + }, + { + "id": "28290", + "name": "Pfreimd", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49114000", + "longitude": "12.18069000" + }, + { + "id": "28292", + "name": "Pfronten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.58220000", + "longitude": "10.54962000" + }, + { + "id": "28298", + "name": "Piding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76667000", + "longitude": "12.91667000" + }, + { + "id": "28299", + "name": "Pielenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07235000", + "longitude": "11.95699000" + }, + { + "id": "28302", + "name": "Pilsach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32137000", + "longitude": "11.50311000" + }, + { + "id": "28303", + "name": "Pilsting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70116000", + "longitude": "12.65105000" + }, + { + "id": "28306", + "name": "Pinzberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68971000", + "longitude": "11.10207000" + }, + { + "id": "28307", + "name": "Pirk", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63333000", + "longitude": "12.16667000" + }, + { + "id": "28310", + "name": "Pittenhart", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.97724000", + "longitude": "12.38997000" + }, + { + "id": "28312", + "name": "Planegg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10672000", + "longitude": "11.42483000" + }, + { + "id": "28316", + "name": "Plattling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.77866000", + "longitude": "12.87509000" + }, + { + "id": "28334", + "name": "Plößberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91977000", + "longitude": "11.86883000" + }, + { + "id": "28321", + "name": "Pleinfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10473000", + "longitude": "10.98194000" + }, + { + "id": "28322", + "name": "Pleiskirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30713000", + "longitude": "12.59832000" + }, + { + "id": "28325", + "name": "Pleystein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64907000", + "longitude": "12.40631000" + }, + { + "id": "28326", + "name": "Pliening", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.19556000", + "longitude": "11.80069000" + }, + { + "id": "28338", + "name": "Pocking", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40149000", + "longitude": "13.31315000" + }, + { + "id": "28340", + "name": "Poing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17004000", + "longitude": "11.81863000" + }, + { + "id": "28346", + "name": "Polling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21667000", + "longitude": "12.56667000" + }, + { + "id": "28347", + "name": "Polsingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.92067000", + "longitude": "10.71150000" + }, + { + "id": "28348", + "name": "Pommelsbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50437000", + "longitude": "11.51101000" + }, + { + "id": "28349", + "name": "Pommersfelden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76667000", + "longitude": "10.81667000" + }, + { + "id": "28352", + "name": "Poppenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09999000", + "longitude": "10.14244000" + }, + { + "id": "28354", + "name": "Poppenricht", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47557000", + "longitude": "11.79778000" + }, + { + "id": "28359", + "name": "Postau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65000000", + "longitude": "12.33333000" + }, + { + "id": "28360", + "name": "Postbauer-Heng", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30528000", + "longitude": "11.35722000" + }, + { + "id": "28361", + "name": "Postmünster", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.41667000", + "longitude": "12.90000000" + }, + { + "id": "28363", + "name": "Pottenstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77131000", + "longitude": "11.40784000" + }, + { + "id": "28366", + "name": "Poxdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93642000", + "longitude": "11.12211000" + }, + { + "id": "28368", + "name": "Prackenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09543000", + "longitude": "12.82614000" + }, + { + "id": "28370", + "name": "Prebitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83333000", + "longitude": "11.68333000" + }, + { + "id": "28376", + "name": "Pressath", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76859000", + "longitude": "11.93972000" + }, + { + "id": "28377", + "name": "Presseck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.22804000", + "longitude": "11.55508000" + }, + { + "id": "28378", + "name": "Pressig", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35245000", + "longitude": "11.30969000" + }, + { + "id": "28380", + "name": "Pretzfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75454000", + "longitude": "11.17430000" + }, + { + "id": "28385", + "name": "Prichsenstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81933000", + "longitude": "10.34773000" + }, + { + "id": "28386", + "name": "Prien am Chiemsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85602000", + "longitude": "12.34623000" + }, + { + "id": "28387", + "name": "Priesendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90750000", + "longitude": "10.71183000" + }, + { + "id": "28391", + "name": "Prittriching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.20074000", + "longitude": "10.92801000" + }, + { + "id": "28397", + "name": "Prosselsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86309000", + "longitude": "10.12666000" + }, + { + "id": "28398", + "name": "Prutting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89321000", + "longitude": "12.20238000" + }, + { + "id": "28401", + "name": "Puchheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.15000000", + "longitude": "11.35000000" + }, + { + "id": "28404", + "name": "Pullach im Isartal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06122000", + "longitude": "11.52148000" + }, + { + "id": "28405", + "name": "Pullenreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93333000", + "longitude": "12.00000000" + }, + { + "id": "28406", + "name": "Puschendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52398000", + "longitude": "10.83192000" + }, + { + "id": "28410", + "name": "Putzbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07579000", + "longitude": "11.71572000" + }, + { + "id": "28411", + "name": "Pyrbaum", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29622000", + "longitude": "11.28655000" + }, + { + "id": "28453", + "name": "Rain", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.69029000", + "longitude": "10.91611000" + }, + { + "id": "28455", + "name": "Raisting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91667000", + "longitude": "11.10000000" + }, + { + "id": "28456", + "name": "Raitenbuch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01468000", + "longitude": "11.12486000" + }, + { + "id": "28460", + "name": "Ramerberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01806000", + "longitude": "12.14513000" + }, + { + "id": "28464", + "name": "Ramsau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17277000", + "longitude": "12.22957000" + }, + { + "id": "28468", + "name": "Ramsthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14039000", + "longitude": "10.06777000" + }, + { + "id": "28469", + "name": "Randersacker", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76021000", + "longitude": "9.98277000" + }, + { + "id": "28473", + "name": "Rannungen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16537000", + "longitude": "10.20484000" + }, + { + "id": "28488", + "name": "Rattelsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01502000", + "longitude": "10.88857000" + }, + { + "id": "28489", + "name": "Rattenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08612000", + "longitude": "12.74912000" + }, + { + "id": "28490", + "name": "Rattiszell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.02573000", + "longitude": "12.65924000" + }, + { + "id": "28493", + "name": "Raubling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.79050000", + "longitude": "12.11088000" + }, + { + "id": "28776", + "name": "Rödelsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72840000", + "longitude": "10.24360000" + }, + { + "id": "28777", + "name": "Rödental", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.29516000", + "longitude": "11.04122000" + }, + { + "id": "28780", + "name": "Röfingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42442000", + "longitude": "10.44268000" + }, + { + "id": "28781", + "name": "Röhrmoos", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.32966000", + "longitude": "11.44672000" + }, + { + "id": "28782", + "name": "Röhrnbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73859000", + "longitude": "13.52271000" + }, + { + "id": "28784", + "name": "Röllbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77306000", + "longitude": "9.24611000" + }, + { + "id": "28786", + "name": "Röslau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08333000", + "longitude": "11.98333000" + }, + { + "id": "28790", + "name": "Röthenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.62303000", + "longitude": "9.97387000" + }, + { + "id": "28791", + "name": "Röthenbach an der Pegnitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48301000", + "longitude": "11.24116000" + }, + { + "id": "28792", + "name": "Röthlein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98333000", + "longitude": "10.21667000" + }, + { + "id": "28793", + "name": "Röttenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66429000", + "longitude": "10.92607000" + }, + { + "id": "28794", + "name": "Röttingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50969000", + "longitude": "9.97082000" + }, + { + "id": "28795", + "name": "Rötz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34316000", + "longitude": "12.52963000" + }, + { + "id": "28798", + "name": "Rückersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49757000", + "longitude": "11.24751000" + }, + { + "id": "28803", + "name": "Rügland", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40000000", + "longitude": "10.58333000" + }, + { + "id": "28503", + "name": "Rechtenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98306000", + "longitude": "9.50833000" + }, + { + "id": "28504", + "name": "Rechtmehring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11667000", + "longitude": "12.16667000" + }, + { + "id": "28508", + "name": "Rednitzhembach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30095000", + "longitude": "11.07997000" + }, + { + "id": "28509", + "name": "Redwitz an der Rodach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17323000", + "longitude": "11.20833000" + }, + { + "id": "28512", + "name": "Regen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.97190000", + "longitude": "13.12824000" + }, + { + "id": "28513", + "name": "Regensburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01513000", + "longitude": "12.10161000" + }, + { + "id": "28514", + "name": "Regenstauf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.12014000", + "longitude": "12.13027000" + }, + { + "id": "28522", + "name": "Regierungsbezirk Mittelfranken", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.33333000", + "longitude": "10.83333000" + }, + { + "id": "28525", + "name": "Regierungsbezirk Unterfranken", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00000000", + "longitude": "10.00000000" + }, + { + "id": "28527", + "name": "Regnitzlosau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30000000", + "longitude": "12.05000000" + }, + { + "id": "28528", + "name": "Rehau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.24921000", + "longitude": "12.03422000" + }, + { + "id": "28533", + "name": "Rehling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48333000", + "longitude": "10.93333000" + }, + { + "id": "28539", + "name": "Reichenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.18333000", + "longitude": "12.35000000" + }, + { + "id": "28544", + "name": "Reichenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.73193000", + "longitude": "9.91478000" + }, + { + "id": "28545", + "name": "Reichenschwand", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51384000", + "longitude": "11.37274000" + }, + { + "id": "28547", + "name": "Reichersbeuern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76667000", + "longitude": "11.63333000" + }, + { + "id": "28548", + "name": "Reichertshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89882000", + "longitude": "11.55843000" + }, + { + "id": "28549", + "name": "Reichertsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.20000000", + "longitude": "12.28333000" + }, + { + "id": "28550", + "name": "Reichertshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65775000", + "longitude": "11.46612000" + }, + { + "id": "28551", + "name": "Reichling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92280000", + "longitude": "10.92847000" + }, + { + "id": "28554", + "name": "Reimlingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.81667000", + "longitude": "10.51667000" + }, + { + "id": "28560", + "name": "Reinhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03092000", + "longitude": "12.11329000" + }, + { + "id": "28567", + "name": "Reisbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57008000", + "longitude": "12.62799000" + }, + { + "id": "28568", + "name": "Reischach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29073000", + "longitude": "12.72620000" + }, + { + "id": "28570", + "name": "Reit im Winkl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.67729000", + "longitude": "12.47086000" + }, + { + "id": "28574", + "name": "Remlingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80477000", + "longitude": "9.69484000" + }, + { + "id": "28582", + "name": "Rennertshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75943000", + "longitude": "11.04544000" + }, + { + "id": "28584", + "name": "Rentweinsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06342000", + "longitude": "10.79922000" + }, + { + "id": "28590", + "name": "Rettenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06667000", + "longitude": "12.45000000" + }, + { + "id": "28591", + "name": "Rettenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.57428000", + "longitude": "10.29173000" + }, + { + "id": "28592", + "name": "Retzstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91250000", + "longitude": "9.88194000" + }, + { + "id": "28593", + "name": "Reut", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.59170000", + "longitude": "13.12332000" + }, + { + "id": "28595", + "name": "Reuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.99052000", + "longitude": "11.69480000" + }, + { + "id": "28626", + "name": "Ried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.47698000", + "longitude": "11.26060000" + }, + { + "id": "28629", + "name": "Rieden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32361000", + "longitude": "11.94205000" + }, + { + "id": "28630", + "name": "Rieden an der Kötz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38499000", + "longitude": "10.25711000" + }, + { + "id": "28631", + "name": "Riedenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31993000", + "longitude": "9.86100000" + }, + { + "id": "28632", + "name": "Riedenburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96383000", + "longitude": "11.68880000" + }, + { + "id": "28635", + "name": "Riedering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.83874000", + "longitude": "12.20778000" + }, + { + "id": "28640", + "name": "Riegsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.69867000", + "longitude": "11.23391000" + }, + { + "id": "28643", + "name": "Rieneck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09349000", + "longitude": "9.64797000" + }, + { + "id": "28656", + "name": "Rimbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23333000", + "longitude": "12.88333000" + }, + { + "id": "28657", + "name": "Rimpar", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85692000", + "longitude": "9.95705000" + }, + { + "id": "28659", + "name": "Rimsting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.88078000", + "longitude": "12.33713000" + }, + { + "id": "28660", + "name": "Rinchnach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94956000", + "longitude": "13.20102000" + }, + { + "id": "28661", + "name": "Ringelai", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.81336000", + "longitude": "13.47130000" + }, + { + "id": "28742", + "name": "Roßhaupten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.42943000", + "longitude": "10.46911000" + }, + { + "id": "28746", + "name": "Roßtal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.39567000", + "longitude": "10.88848000" + }, + { + "id": "28674", + "name": "Roden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89556000", + "longitude": "9.62639000" + }, + { + "id": "28680", + "name": "Roding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19426000", + "longitude": "12.51956000" + }, + { + "id": "28683", + "name": "Roggenburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27588000", + "longitude": "10.23136000" + }, + { + "id": "28687", + "name": "Rohr", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76768000", + "longitude": "11.97152000" + }, + { + "id": "28689", + "name": "Rohrbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28933000", + "longitude": "12.55603000" + }, + { + "id": "28691", + "name": "Rohrdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.79713000", + "longitude": "12.17010000" + }, + { + "id": "28693", + "name": "Rohrenfels", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68654000", + "longitude": "11.15619000" + }, + { + "id": "28700", + "name": "Ronsberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89580000", + "longitude": "10.41571000" + }, + { + "id": "28707", + "name": "Rosenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85637000", + "longitude": "12.12247000" + }, + { + "id": "28714", + "name": "Rossbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.58333000", + "longitude": "12.95000000" + }, + { + "id": "28720", + "name": "Roth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24762000", + "longitude": "11.09111000" + }, + { + "id": "28723", + "name": "Rothenbuch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96528000", + "longitude": "9.39389000" + }, + { + "id": "28725", + "name": "Rothenburg ob der Tauber", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37885000", + "longitude": "10.18711000" + }, + { + "id": "28727", + "name": "Rothenfels", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89135000", + "longitude": "9.59260000" + }, + { + "id": "28729", + "name": "Rott", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92008000", + "longitude": "12.08771000" + }, + { + "id": "28730", + "name": "Rottach-Egern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.68966000", + "longitude": "11.77065000" + }, + { + "id": "28733", + "name": "Rottenbuch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73333000", + "longitude": "10.96667000" + }, + { + "id": "28735", + "name": "Rottenburg an der Laaber", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.70233000", + "longitude": "12.02717000" + }, + { + "id": "28736", + "name": "Rottendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79230000", + "longitude": "10.02593000" + }, + { + "id": "28737", + "name": "Rotthalmünster", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35825000", + "longitude": "13.20162000" + }, + { + "id": "28748", + "name": "Rudelzhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60000000", + "longitude": "11.76667000" + }, + { + "id": "28749", + "name": "Ruderatshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81667000", + "longitude": "10.58333000" + }, + { + "id": "28751", + "name": "Ruderting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65000000", + "longitude": "13.41667000" + }, + { + "id": "28754", + "name": "Rugendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20000000", + "longitude": "11.46667000" + }, + { + "id": "28757", + "name": "Ruhmannsfelden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.98327000", + "longitude": "12.98347000" + }, + { + "id": "28758", + "name": "Ruhpolding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76667000", + "longitude": "12.65000000" + }, + { + "id": "28759", + "name": "Ruhstorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53976000", + "longitude": "12.68305000" + }, + { + "id": "28763", + "name": "Runding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.21513000", + "longitude": "12.76208000" + }, + { + "id": "28812", + "name": "Saal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.90099000", + "longitude": "11.93196000" + }, + { + "id": "28813", + "name": "Saal an der Saale", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31673000", + "longitude": "10.35769000" + }, + { + "id": "28821", + "name": "Sachsen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28999000", + "longitude": "10.65971000" + }, + { + "id": "28825", + "name": "Sachsenkam", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.80543000", + "longitude": "11.64396000" + }, + { + "id": "28829", + "name": "Sailauf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.02461000", + "longitude": "9.25932000" + }, + { + "id": "28831", + "name": "Salching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.81047000", + "longitude": "12.57043000" + }, + { + "id": "28832", + "name": "Saldenburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.77310000", + "longitude": "13.35586000" + }, + { + "id": "28834", + "name": "Salgen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.13069000", + "longitude": "10.47890000" + }, + { + "id": "28837", + "name": "Salz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30842000", + "longitude": "10.21205000" + }, + { + "id": "28845", + "name": "Salzweg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61667000", + "longitude": "13.48333000" + }, + { + "id": "28846", + "name": "Samerberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77654000", + "longitude": "12.19139000" + }, + { + "id": "28849", + "name": "Sand", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98585000", + "longitude": "10.58620000" + }, + { + "id": "28851", + "name": "Sandberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.34824000", + "longitude": "10.00814000" + }, + { + "id": "28864", + "name": "Sankt Englmar", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00298000", + "longitude": "12.82658000" + }, + { + "id": "28875", + "name": "Sankt Leonhard am Wonneberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91533000", + "longitude": "12.71926000" + }, + { + "id": "28884", + "name": "Sankt Wolfgang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21667000", + "longitude": "12.13333000" + }, + { + "id": "28895", + "name": "Sauerlach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.97171000", + "longitude": "11.65383000" + }, + { + "id": "28898", + "name": "Saulgrub", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66643000", + "longitude": "11.02469000" + }, + { + "id": "29489", + "name": "Söchtenau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93118000", + "longitude": "12.22959000" + }, + { + "id": "29504", + "name": "Sünching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87855000", + "longitude": "12.35129000" + }, + { + "id": "28914", + "name": "Schauenstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.27826000", + "longitude": "11.74169000" + }, + { + "id": "28915", + "name": "Schaufling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.85000000", + "longitude": "13.06667000" + }, + { + "id": "29098", + "name": "Schäftlarn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99027000", + "longitude": "11.45591000" + }, + { + "id": "29100", + "name": "Schöfweg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83882000", + "longitude": "13.22861000" + }, + { + "id": "29101", + "name": "Schöllkrippen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08545000", + "longitude": "9.24697000" + }, + { + "id": "29102", + "name": "Schöllnach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75412000", + "longitude": "13.17781000" + }, + { + "id": "29105", + "name": "Schönau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.48333000", + "longitude": "12.85000000" + }, + { + "id": "29107", + "name": "Schönau am Königssee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.60055000", + "longitude": "12.98704000" + }, + { + "id": "29124", + "name": "Schöngeising", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.14135000", + "longitude": "11.20399000" + }, + { + "id": "29129", + "name": "Schönsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51030000", + "longitude": "12.54763000" + }, + { + "id": "29131", + "name": "Schönthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35000000", + "longitude": "12.60000000" + }, + { + "id": "29132", + "name": "Schönwald", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.19970000", + "longitude": "12.08503000" + }, + { + "id": "28939", + "name": "Scheßlitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97568000", + "longitude": "11.03299000" + }, + { + "id": "28916", + "name": "Schechen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.92911000", + "longitude": "12.12393000" + }, + { + "id": "28922", + "name": "Scheidegg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.58141000", + "longitude": "9.84829000" + }, + { + "id": "28923", + "name": "Scheinfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66931000", + "longitude": "10.46554000" + }, + { + "id": "28935", + "name": "Scherstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.18032000", + "longitude": "10.64005000" + }, + { + "id": "28937", + "name": "Scheuring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16769000", + "longitude": "10.89569000" + }, + { + "id": "28938", + "name": "Scheyern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50000000", + "longitude": "11.46667000" + }, + { + "id": "28941", + "name": "Schierling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83422000", + "longitude": "12.13946000" + }, + { + "id": "28948", + "name": "Schillingsfürst", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28775000", + "longitude": "10.26276000" + }, + { + "id": "28950", + "name": "Schiltberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.46293000", + "longitude": "11.24876000" + }, + { + "id": "28953", + "name": "Schirmitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65000000", + "longitude": "12.16667000" + }, + { + "id": "28954", + "name": "Schirnding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08205000", + "longitude": "12.22742000" + }, + { + "id": "28985", + "name": "Schlüsselfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75621000", + "longitude": "10.61873000" + }, + { + "id": "28965", + "name": "Schleching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.72098000", + "longitude": "12.39481000" + }, + { + "id": "28967", + "name": "Schlehdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65795000", + "longitude": "11.31494000" + }, + { + "id": "28979", + "name": "Schliersee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73621000", + "longitude": "11.85936000" + }, + { + "id": "28991", + "name": "Schmidgaden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.42340000", + "longitude": "12.09247000" + }, + { + "id": "28992", + "name": "Schmidmühlen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26898000", + "longitude": "11.92429000" + }, + { + "id": "28993", + "name": "Schmiechen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21667000", + "longitude": "10.96667000" + }, + { + "id": "29000", + "name": "Schnaitsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06667000", + "longitude": "12.36667000" + }, + { + "id": "29001", + "name": "Schnaittach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55958000", + "longitude": "11.34328000" + }, + { + "id": "29002", + "name": "Schnaittenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54692000", + "longitude": "12.00184000" + }, + { + "id": "29003", + "name": "Schneckenlohe", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.21184000", + "longitude": "11.19395000" + }, + { + "id": "29007", + "name": "Schneizlreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.68333000", + "longitude": "12.80000000" + }, + { + "id": "29008", + "name": "Schnelldorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20000000", + "longitude": "10.18333000" + }, + { + "id": "29014", + "name": "Schondorf am Ammersee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05296000", + "longitude": "11.09138000" + }, + { + "id": "29015", + "name": "Schondra", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26814000", + "longitude": "9.86277000" + }, + { + "id": "29016", + "name": "Schongau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.81240000", + "longitude": "10.89664000" + }, + { + "id": "29017", + "name": "Schonstett", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.98333000", + "longitude": "12.25000000" + }, + { + "id": "29018", + "name": "Schonungen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.05008000", + "longitude": "10.30809000" + }, + { + "id": "29020", + "name": "Schopfloch", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11917000", + "longitude": "10.30774000" + }, + { + "id": "29023", + "name": "Schorndorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16041000", + "longitude": "12.59316000" + }, + { + "id": "29032", + "name": "Schrobenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56067000", + "longitude": "11.26071000" + }, + { + "id": "29039", + "name": "Schwabach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.33047000", + "longitude": "11.02346000" + }, + { + "id": "29041", + "name": "Schwabhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40157000", + "longitude": "11.35729000" + }, + { + "id": "29042", + "name": "Schwabmünchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.17928000", + "longitude": "10.75675000" + }, + { + "id": "29043", + "name": "Schwabsoien", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.83333000", + "longitude": "10.83333000" + }, + { + "id": "29046", + "name": "Schwaig", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.46955000", + "longitude": "11.20064000" + }, + { + "id": "29057", + "name": "Schwandorf in Bayern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32534000", + "longitude": "12.10980000" + }, + { + "id": "29060", + "name": "Schwanfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92166000", + "longitude": "10.13866000" + }, + { + "id": "29061", + "name": "Schwangau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.57722000", + "longitude": "10.73416000" + }, + { + "id": "29066", + "name": "Schwarzach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91567000", + "longitude": "12.81143000" + }, + { + "id": "29067", + "name": "Schwarzenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83876000", + "longitude": "12.38005000" + }, + { + "id": "29068", + "name": "Schwarzenbach an der Saale", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.22279000", + "longitude": "11.93504000" + }, + { + "id": "29072", + "name": "Schwarzenbruck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35778000", + "longitude": "11.24333000" + }, + { + "id": "29073", + "name": "Schwarzenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38774000", + "longitude": "12.13484000" + }, + { + "id": "29075", + "name": "Schwarzhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37749000", + "longitude": "12.34490000" + }, + { + "id": "29076", + "name": "Schwebheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.99036000", + "longitude": "10.24776000" + }, + { + "id": "29083", + "name": "Schweinfurt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04937000", + "longitude": "10.22175000" + }, + { + "id": "29084", + "name": "Schweitenkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50333000", + "longitude": "11.60451000" + }, + { + "id": "29087", + "name": "Schwenningen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65000000", + "longitude": "10.65000000" + }, + { + "id": "29094", + "name": "Schwindegg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27155000", + "longitude": "12.25978000" + }, + { + "id": "29204", + "name": "Seßlach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.18969000", + "longitude": "10.84197000" + }, + { + "id": "29150", + "name": "Seefeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03505000", + "longitude": "11.21395000" + }, + { + "id": "29151", + "name": "Seeg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.65000000", + "longitude": "10.60000000" + }, + { + "id": "29153", + "name": "Seehausen am Staffelsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.68928000", + "longitude": "11.18498000" + }, + { + "id": "29162", + "name": "Seeon-Seebruck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96667000", + "longitude": "12.46667000" + }, + { + "id": "29164", + "name": "Seeshaupt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82468000", + "longitude": "11.30219000" + }, + { + "id": "29174", + "name": "Seinsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64073000", + "longitude": "10.22038000" + }, + { + "id": "29176", + "name": "Selb", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17058000", + "longitude": "12.13054000" + }, + { + "id": "29177", + "name": "Selbitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31702000", + "longitude": "11.75019000" + }, + { + "id": "29188", + "name": "Senden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.32441000", + "longitude": "10.04442000" + }, + { + "id": "29192", + "name": "Sengenthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23333000", + "longitude": "11.46667000" + }, + { + "id": "29194", + "name": "Sennfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03895000", + "longitude": "10.25986000" + }, + { + "id": "29198", + "name": "Seubersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16212000", + "longitude": "11.62714000" + }, + { + "id": "29199", + "name": "Seukendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48844000", + "longitude": "10.87999000" + }, + { + "id": "29202", + "name": "Seybothenreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89372000", + "longitude": "11.70531000" + }, + { + "id": "29214", + "name": "Siegenburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.75421000", + "longitude": "11.84831000" + }, + { + "id": "29215", + "name": "Siegsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.82278000", + "longitude": "12.64277000" + }, + { + "id": "29217", + "name": "Sielenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40000000", + "longitude": "11.16667000" + }, + { + "id": "29228", + "name": "Sigmarszell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.58333000", + "longitude": "9.76667000" + }, + { + "id": "29231", + "name": "Simbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56606000", + "longitude": "12.73888000" + }, + { + "id": "29232", + "name": "Simbach am Inn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26548000", + "longitude": "13.02309000" + }, + { + "id": "29233", + "name": "Simmelsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59775000", + "longitude": "11.33901000" + }, + { + "id": "29240", + "name": "Sindelsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.72458000", + "longitude": "11.33295000" + }, + { + "id": "29248", + "name": "Sinzing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00000000", + "longitude": "12.03333000" + }, + { + "id": "29261", + "name": "Solnhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89582000", + "longitude": "10.99560000" + }, + { + "id": "29264", + "name": "Sommerach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82923000", + "longitude": "10.20792000" + }, + { + "id": "29265", + "name": "Sommerhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70361000", + "longitude": "10.02605000" + }, + { + "id": "29266", + "name": "Sommerkahl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06961000", + "longitude": "9.25676000" + }, + { + "id": "29269", + "name": "Sondheim vor der Rhön", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.46510000", + "longitude": "10.15675000" + }, + { + "id": "29272", + "name": "Sonnefeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.21667000", + "longitude": "11.13333000" + }, + { + "id": "29273", + "name": "Sonnen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68333000", + "longitude": "13.71667000" + }, + { + "id": "29276", + "name": "Sontheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00704000", + "longitude": "10.35461000" + }, + { + "id": "29278", + "name": "Sonthofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.51821000", + "longitude": "10.28262000" + }, + { + "id": "29282", + "name": "Soyen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10808000", + "longitude": "12.21006000" + }, + { + "id": "29285", + "name": "Spalt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17553000", + "longitude": "10.92453000" + }, + { + "id": "29288", + "name": "Spardorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60854000", + "longitude": "11.05585000" + }, + { + "id": "29289", + "name": "Sparneck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16214000", + "longitude": "11.84349000" + }, + { + "id": "29293", + "name": "Speichersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87133000", + "longitude": "11.78123000" + }, + { + "id": "29294", + "name": "Speinshart", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79002000", + "longitude": "11.81949000" + }, + { + "id": "29300", + "name": "Spiegelau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91517000", + "longitude": "13.36229000" + }, + { + "id": "29316", + "name": "Stadelhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00317000", + "longitude": "11.19757000" + }, + { + "id": "29320", + "name": "Stadtbergen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.36641000", + "longitude": "10.84636000" + }, + { + "id": "29324", + "name": "Stadtlauringen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.18708000", + "longitude": "10.36164000" + }, + { + "id": "29328", + "name": "Stadtprozelten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78466000", + "longitude": "9.41184000" + }, + { + "id": "29331", + "name": "Stadtsteinach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16433000", + "longitude": "11.50349000" + }, + { + "id": "29335", + "name": "Stallwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.55838000", + "longitude": "12.23108000" + }, + { + "id": "29336", + "name": "Stammbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14551000", + "longitude": "11.69129000" + }, + { + "id": "29337", + "name": "Stammham", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29604000", + "longitude": "11.86961000" + }, + { + "id": "29338", + "name": "Stamsried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26755000", + "longitude": "12.53051000" + }, + { + "id": "29341", + "name": "Starnberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00193000", + "longitude": "11.34416000" + }, + { + "id": "29343", + "name": "Staudach-Egerndach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.78333000", + "longitude": "12.48333000" + }, + { + "id": "29451", + "name": "Störnstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.73232000", + "longitude": "12.20547000" + }, + { + "id": "29452", + "name": "Stötten am Auerberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73871000", + "longitude": "10.68881000" + }, + { + "id": "29453", + "name": "Stöttwang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.88333000", + "longitude": "10.71667000" + }, + { + "id": "29351", + "name": "Stegaurach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86543000", + "longitude": "10.84385000" + }, + { + "id": "29357", + "name": "Stein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41581000", + "longitude": "11.01599000" + }, + { + "id": "29359", + "name": "Steinach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95417000", + "longitude": "12.60709000" + }, + { + "id": "29364", + "name": "Steinbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15328000", + "longitude": "11.65055000" + }, + { + "id": "29371", + "name": "Steinfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95278000", + "longitude": "9.66944000" + }, + { + "id": "29375", + "name": "Steingaden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70000000", + "longitude": "10.86667000" + }, + { + "id": "29385", + "name": "Steinhöring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08679000", + "longitude": "12.03140000" + }, + { + "id": "29380", + "name": "Steinheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01473000", + "longitude": "10.16081000" + }, + { + "id": "29388", + "name": "Steinkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38333000", + "longitude": "12.08333000" + }, + { + "id": "29390", + "name": "Steinsfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41667000", + "longitude": "10.21667000" + }, + { + "id": "29393", + "name": "Steinwiesen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.29444000", + "longitude": "11.46295000" + }, + { + "id": "29399", + "name": "Stephanskirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85389000", + "longitude": "12.18560000" + }, + { + "id": "29400", + "name": "Stephansposching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.81667000", + "longitude": "12.80000000" + }, + { + "id": "29404", + "name": "Stetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02382000", + "longitude": "10.44474000" + }, + { + "id": "29406", + "name": "Stettfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97090000", + "longitude": "10.72170000" + }, + { + "id": "29408", + "name": "Stiefenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.59320000", + "longitude": "10.00365000" + }, + { + "id": "29412", + "name": "Stockheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30639000", + "longitude": "11.28172000" + }, + { + "id": "29413", + "name": "Stockstadt am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97005000", + "longitude": "9.07153000" + }, + { + "id": "29433", + "name": "Straßkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.83071000", + "longitude": "12.72105000" + }, + { + "id": "29434", + "name": "Straßlach-Dingharting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00491000", + "longitude": "11.51410000" + }, + { + "id": "29428", + "name": "Straubing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88126000", + "longitude": "12.57385000" + }, + { + "id": "29437", + "name": "Strullendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84429000", + "longitude": "10.97208000" + }, + { + "id": "29441", + "name": "Stubenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31667000", + "longitude": "13.08333000" + }, + { + "id": "29443", + "name": "Stulln", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41667000", + "longitude": "12.13333000" + }, + { + "id": "29461", + "name": "Sugenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60276000", + "longitude": "10.43563000" + }, + { + "id": "29469", + "name": "Sulzbach am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91149000", + "longitude": "9.15315000" + }, + { + "id": "29471", + "name": "Sulzbach-Rosenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50126000", + "longitude": "11.74598000" + }, + { + "id": "29472", + "name": "Sulzberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.66033000", + "longitude": "10.34991000" + }, + { + "id": "29474", + "name": "Sulzdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65002000", + "longitude": "9.90389000" + }, + { + "id": "29475", + "name": "Sulzemoos", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29107000", + "longitude": "11.26356000" + }, + { + "id": "29476", + "name": "Sulzfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25972000", + "longitude": "10.40525000" + }, + { + "id": "29478", + "name": "Sulzfeld am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70694000", + "longitude": "10.13248000" + }, + { + "id": "29479", + "name": "Sulzheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95000000", + "longitude": "10.33333000" + }, + { + "id": "29482", + "name": "Surberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.86667000", + "longitude": "12.70000000" + }, + { + "id": "29485", + "name": "Swabia", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.33333000", + "longitude": "10.50000000" + }, + { + "id": "29511", + "name": "Tacherting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07825000", + "longitude": "12.57008000" + }, + { + "id": "29512", + "name": "Taching am See", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95942000", + "longitude": "12.72933000" + }, + { + "id": "29513", + "name": "Tagmersheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.81667000", + "longitude": "10.96667000" + }, + { + "id": "29521", + "name": "Tann", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31463000", + "longitude": "12.89301000" + }, + { + "id": "29527", + "name": "Tapfheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.67322000", + "longitude": "10.68377000" + }, + { + "id": "29536", + "name": "Taufkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.04860000", + "longitude": "11.61701000" + }, + { + "id": "29699", + "name": "Tännesberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53182000", + "longitude": "12.32765000" + }, + { + "id": "29700", + "name": "Töging am Inn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26018000", + "longitude": "12.58460000" + }, + { + "id": "29703", + "name": "Töpen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39067000", + "longitude": "11.87329000" + }, + { + "id": "29711", + "name": "Tüßling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.21218000", + "longitude": "12.59954000" + }, + { + "id": "29707", + "name": "Türkenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10531000", + "longitude": "11.08303000" + }, + { + "id": "29708", + "name": "Türkheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06401000", + "longitude": "10.64156000" + }, + { + "id": "29544", + "name": "Tegernheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.02394000", + "longitude": "12.17303000" + }, + { + "id": "29545", + "name": "Tegernsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71230000", + "longitude": "11.75820000" + }, + { + "id": "29548", + "name": "Teisendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84921000", + "longitude": "12.81919000" + }, + { + "id": "29549", + "name": "Teising", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22721000", + "longitude": "12.61137000" + }, + { + "id": "29550", + "name": "Teisnach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04114000", + "longitude": "12.98784000" + }, + { + "id": "29563", + "name": "Tettau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.46979000", + "longitude": "11.25888000" + }, + { + "id": "29564", + "name": "Tettenweis", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.44281000", + "longitude": "13.26955000" + }, + { + "id": "29566", + "name": "Teublitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22289000", + "longitude": "12.08727000" + }, + { + "id": "29569", + "name": "Teugn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89299000", + "longitude": "12.01175000" + }, + { + "id": "29570", + "name": "Teunz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48333000", + "longitude": "12.38333000" + }, + { + "id": "29572", + "name": "Teuschnitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39839000", + "longitude": "11.38235000" + }, + { + "id": "29581", + "name": "Thalmassing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.91167000", + "longitude": "12.15500000" + }, + { + "id": "29582", + "name": "Thalmässing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08834000", + "longitude": "11.22150000" + }, + { + "id": "29583", + "name": "Thannhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28334000", + "longitude": "10.46917000" + }, + { + "id": "29584", + "name": "Thanstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38333000", + "longitude": "12.46667000" + }, + { + "id": "29605", + "name": "Thüngen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94140000", + "longitude": "9.85860000" + }, + { + "id": "29606", + "name": "Thüngersheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87833000", + "longitude": "9.84917000" + }, + { + "id": "29587", + "name": "Theilheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75403000", + "longitude": "10.03056000" + }, + { + "id": "29588", + "name": "Theisseil", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.69034000", + "longitude": "12.22744000" + }, + { + "id": "29593", + "name": "Thierhaupten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56531000", + "longitude": "10.90862000" + }, + { + "id": "29594", + "name": "Thiersheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.07609000", + "longitude": "12.12650000" + }, + { + "id": "29595", + "name": "Thierstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10643000", + "longitude": "12.10203000" + }, + { + "id": "29601", + "name": "Thundorf in Unterfranken", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20097000", + "longitude": "10.31906000" + }, + { + "id": "29602", + "name": "Thurmansbang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76627000", + "longitude": "13.31550000" + }, + { + "id": "29603", + "name": "Thurnau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.02542000", + "longitude": "11.39348000" + }, + { + "id": "29604", + "name": "Thyrnau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61667000", + "longitude": "13.53333000" + }, + { + "id": "29609", + "name": "Tiefenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50000000", + "longitude": "12.10000000" + }, + { + "id": "29618", + "name": "Tirschenreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88263000", + "longitude": "12.33112000" + }, + { + "id": "29620", + "name": "Tittling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72619000", + "longitude": "13.38221000" + }, + { + "id": "29621", + "name": "Tittmoning", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06164000", + "longitude": "12.76760000" + }, + { + "id": "29626", + "name": "Todtenweis", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.51712000", + "longitude": "10.92856000" + }, + { + "id": "29637", + "name": "Trabitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80000000", + "longitude": "11.90000000" + }, + { + "id": "29638", + "name": "Train", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73333000", + "longitude": "11.83333000" + }, + { + "id": "29639", + "name": "Traitsching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15000000", + "longitude": "12.65000000" + }, + { + "id": "29641", + "name": "Trappstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31880000", + "longitude": "10.56995000" + }, + { + "id": "29643", + "name": "Traunreut", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96269000", + "longitude": "12.59231000" + }, + { + "id": "29644", + "name": "Traunstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.86825000", + "longitude": "12.64335000" + }, + { + "id": "29645", + "name": "Trausnitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52114000", + "longitude": "12.26249000" + }, + { + "id": "29646", + "name": "Trautskirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45810000", + "longitude": "10.59361000" + }, + { + "id": "29686", + "name": "Tröstau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "11.95000000" + }, + { + "id": "29650", + "name": "Trebgast", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06667000", + "longitude": "11.55000000" + }, + { + "id": "29655", + "name": "Treffelstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.42246000", + "longitude": "12.61574000" + }, + { + "id": "29661", + "name": "Treuchtlingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.95473000", + "longitude": "10.90833000" + }, + { + "id": "29670", + "name": "Triftern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.39468000", + "longitude": "13.00627000" + }, + { + "id": "29677", + "name": "Trogen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.36667000", + "longitude": "11.95000000" + }, + { + "id": "29682", + "name": "Trostberg an der Alz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02802000", + "longitude": "12.55804000" + }, + { + "id": "29684", + "name": "Trunkelsberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00000000", + "longitude": "10.21667000" + }, + { + "id": "29689", + "name": "Tuchenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52794000", + "longitude": "10.85973000" + }, + { + "id": "29691", + "name": "Tuntenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93509000", + "longitude": "12.01518000" + }, + { + "id": "29692", + "name": "Tussenhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10218000", + "longitude": "10.56069000" + }, + { + "id": "29695", + "name": "Tutzing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.90938000", + "longitude": "11.28030000" + }, + { + "id": "29697", + "name": "Tyrlaching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06667000", + "longitude": "12.66667000" + }, + { + "id": "29721", + "name": "Uehlfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.67085000", + "longitude": "10.72017000" + }, + { + "id": "29728", + "name": "Uettingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79472000", + "longitude": "9.73056000" + }, + { + "id": "29730", + "name": "Uffenheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54415000", + "longitude": "10.23286000" + }, + { + "id": "29731", + "name": "Uffing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.71378000", + "longitude": "11.15034000" + }, + { + "id": "29745", + "name": "Ungerhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00566000", + "longitude": "10.26672000" + }, + { + "id": "29752", + "name": "Unterammergau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.61658000", + "longitude": "11.02718000" + }, + { + "id": "29755", + "name": "Unterdießen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.98333000", + "longitude": "10.83333000" + }, + { + "id": "29754", + "name": "Unterdietfurt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38333000", + "longitude": "12.66667000" + }, + { + "id": "29756", + "name": "Unteregg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.96667000", + "longitude": "10.46667000" + }, + { + "id": "29759", + "name": "Unterföhring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.19253000", + "longitude": "11.64293000" + }, + { + "id": "29760", + "name": "Untergriesbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57434000", + "longitude": "13.66725000" + }, + { + "id": "29762", + "name": "Unterhaching", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06598000", + "longitude": "11.61564000" + }, + { + "id": "29767", + "name": "Unterleinleiter", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82303000", + "longitude": "11.18906000" + }, + { + "id": "29770", + "name": "Untermeitingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16082000", + "longitude": "10.80694000" + }, + { + "id": "29771", + "name": "Untermerzbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.12754000", + "longitude": "10.85634000" + }, + { + "id": "29773", + "name": "Unterneukirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.16667000", + "longitude": "12.61667000" + }, + { + "id": "29774", + "name": "Unterpleichfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86886000", + "longitude": "10.04399000" + }, + { + "id": "29776", + "name": "Unterreit", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11667000", + "longitude": "12.33333000" + }, + { + "id": "29777", + "name": "Unterschleißheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.28038000", + "longitude": "11.57684000" + }, + { + "id": "29779", + "name": "Untersiemau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.19415000", + "longitude": "10.97448000" + }, + { + "id": "29780", + "name": "Untersteinach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.13333000", + "longitude": "11.51667000" + }, + { + "id": "29781", + "name": "Unterthingau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77155000", + "longitude": "10.50446000" + }, + { + "id": "29783", + "name": "Unterwössen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73333000", + "longitude": "12.46667000" + }, + { + "id": "29784", + "name": "Untrasried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.83333000", + "longitude": "10.38333000" + }, + { + "id": "29786", + "name": "Upper Bavaria", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.00000000", + "longitude": "11.00000000" + }, + { + "id": "29787", + "name": "Upper Franconia", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83333000", + "longitude": "11.33333000" + }, + { + "id": "29788", + "name": "Upper Palatinate", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50000000", + "longitude": "12.00000000" + }, + { + "id": "29794", + "name": "Ursberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26428000", + "longitude": "10.44594000" + }, + { + "id": "29795", + "name": "Ursensollen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40204000", + "longitude": "11.75503000" + }, + { + "id": "29796", + "name": "Urspringen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90166000", + "longitude": "9.67123000" + }, + { + "id": "29800", + "name": "Ustersbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.31667000", + "longitude": "10.65000000" + }, + { + "id": "29803", + "name": "Uttenreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59675000", + "longitude": "11.07216000" + }, + { + "id": "29805", + "name": "Utting am Ammersee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.02608000", + "longitude": "11.08612000" + }, + { + "id": "29808", + "name": "Vachendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84256000", + "longitude": "12.60606000" + }, + { + "id": "29809", + "name": "Vagen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.87410000", + "longitude": "11.88446000" + }, + { + "id": "29812", + "name": "Valley", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89310000", + "longitude": "11.77915000" + }, + { + "id": "29815", + "name": "Vaterstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.10537000", + "longitude": "11.76825000" + }, + { + "id": "29890", + "name": "Vöhringen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27839000", + "longitude": "10.08236000" + }, + { + "id": "29821", + "name": "Veitsbronn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51239000", + "longitude": "10.88797000" + }, + { + "id": "29822", + "name": "Veitshöchheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83278000", + "longitude": "9.88167000" + }, + { + "id": "29824", + "name": "Velburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23212000", + "longitude": "11.67160000" + }, + { + "id": "29825", + "name": "Velden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.36632000", + "longitude": "12.25596000" + }, + { + "id": "29838", + "name": "Vestenbergsgreuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68764000", + "longitude": "10.65157000" + }, + { + "id": "29842", + "name": "Viechtach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08001000", + "longitude": "12.88566000" + }, + { + "id": "29845", + "name": "Viereth-Trunstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92222000", + "longitude": "10.77716000" + }, + { + "id": "29846", + "name": "Vierkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.36667000", + "longitude": "11.46667000" + }, + { + "id": "29850", + "name": "Vilgertshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.95000000", + "longitude": "10.91667000" + }, + { + "id": "29851", + "name": "Villenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.50887000", + "longitude": "10.61468000" + }, + { + "id": "29855", + "name": "Vilsbiburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45296000", + "longitude": "12.35604000" + }, + { + "id": "29856", + "name": "Vilseck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61480000", + "longitude": "11.80261000" + }, + { + "id": "29857", + "name": "Vilsheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.44882000", + "longitude": "12.10686000" + }, + { + "id": "29858", + "name": "Vilshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62695000", + "longitude": "13.19222000" + }, + { + "id": "29867", + "name": "Vogtareuth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.94694000", + "longitude": "12.18126000" + }, + { + "id": "29869", + "name": "Vohburg an der Donau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.76977000", + "longitude": "11.61845000" + }, + { + "id": "29870", + "name": "Vohenstrauß", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62383000", + "longitude": "12.33808000" + }, + { + "id": "29872", + "name": "Volkach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86352000", + "longitude": "10.22813000" + }, + { + "id": "29873", + "name": "Volkenschwand", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60000000", + "longitude": "11.88333000" + }, + { + "id": "29880", + "name": "Vorbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82136000", + "longitude": "11.73625000" + }, + { + "id": "29882", + "name": "Vorra", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55718000", + "longitude": "11.49419000" + }, + { + "id": "29897", + "name": "Waakirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.77250000", + "longitude": "11.67315000" + }, + { + "id": "29898", + "name": "Waal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.99679000", + "longitude": "10.77786000" + }, + { + "id": "29902", + "name": "Wachenroth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75185000", + "longitude": "10.71335000" + }, + { + "id": "29908", + "name": "Wackersberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.73333000", + "longitude": "11.55000000" + }, + { + "id": "29909", + "name": "Wackersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31667000", + "longitude": "12.18333000" + }, + { + "id": "29913", + "name": "Waffenbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26667000", + "longitude": "12.66667000" + }, + { + "id": "29917", + "name": "Waging am See", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93414000", + "longitude": "12.73392000" + }, + { + "id": "29924", + "name": "Waidhaus", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64218000", + "longitude": "12.49523000" + }, + { + "id": "29925", + "name": "Waidhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.57681000", + "longitude": "11.33537000" + }, + { + "id": "29927", + "name": "Waigolshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96430000", + "longitude": "10.12001000" + }, + { + "id": "29929", + "name": "Waischenfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84645000", + "longitude": "11.34810000" + }, + { + "id": "29931", + "name": "Wald", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15000000", + "longitude": "12.35000000" + }, + { + "id": "29935", + "name": "Waldaschaff", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97528000", + "longitude": "9.30194000" + }, + { + "id": "29942", + "name": "Waldbüttelbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78833000", + "longitude": "9.84667000" + }, + { + "id": "29937", + "name": "Waldbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75861000", + "longitude": "9.80361000" + }, + { + "id": "29948", + "name": "Walderbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.18333000", + "longitude": "12.38333000" + }, + { + "id": "29949", + "name": "Waldershof", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98144000", + "longitude": "12.06291000" + }, + { + "id": "29956", + "name": "Waldkirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73270000", + "longitude": "13.60082000" + }, + { + "id": "29957", + "name": "Waldkraiburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.20854000", + "longitude": "12.39893000" + }, + { + "id": "29959", + "name": "Waldmünchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37804000", + "longitude": "12.70905000" + }, + { + "id": "29961", + "name": "Waldsassen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00167000", + "longitude": "12.30434000" + }, + { + "id": "29966", + "name": "Waldstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.34815000", + "longitude": "10.29385000" + }, + { + "id": "29967", + "name": "Waldthurn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.67221000", + "longitude": "12.32919000" + }, + { + "id": "29970", + "name": "Walkertshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.22613000", + "longitude": "10.58836000" + }, + { + "id": "29975", + "name": "Wallenfels", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26850000", + "longitude": "11.47058000" + }, + { + "id": "29978", + "name": "Wallerfing", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.68416000", + "longitude": "12.88035000" + }, + { + "id": "29979", + "name": "Wallersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.73767000", + "longitude": "12.74744000" + }, + { + "id": "29980", + "name": "Wallerstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.88741000", + "longitude": "10.47591000" + }, + { + "id": "29982", + "name": "Wallgau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.51667000", + "longitude": "11.28333000" + }, + { + "id": "29990", + "name": "Walpertskirchen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25840000", + "longitude": "11.97527000" + }, + { + "id": "29992", + "name": "Walsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86667000", + "longitude": "10.78333000" + }, + { + "id": "29994", + "name": "Waltenhofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.67319000", + "longitude": "10.30703000" + }, + { + "id": "30002", + "name": "Wang", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.49549000", + "longitude": "11.93641000" + }, + { + "id": "30018", + "name": "Warmensteinach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.99348000", + "longitude": "11.77866000" + }, + { + "id": "30021", + "name": "Warngau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.83217000", + "longitude": "11.72173000" + }, + { + "id": "30024", + "name": "Wartenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40597000", + "longitude": "11.98865000" + }, + { + "id": "30027", + "name": "Wartmannsroth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16667000", + "longitude": "9.78333000" + }, + { + "id": "30032", + "name": "Wasserburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.44105000", + "longitude": "10.26930000" + }, + { + "id": "30033", + "name": "Wasserburg am Inn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.05250000", + "longitude": "12.22341000" + }, + { + "id": "30036", + "name": "Wasserlosen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09476000", + "longitude": "10.03017000" + }, + { + "id": "30037", + "name": "Wassertrüdingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04328000", + "longitude": "10.59906000" + }, + { + "id": "30446", + "name": "Wörth", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.24531000", + "longitude": "11.90214000" + }, + { + "id": "30447", + "name": "Wörth am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79720000", + "longitude": "9.15389000" + }, + { + "id": "30449", + "name": "Wörth an der Donau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00093000", + "longitude": "12.40539000" + }, + { + "id": "30450", + "name": "Wörth an der Isar", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62300000", + "longitude": "12.33944000" + }, + { + "id": "30451", + "name": "Wörthsee", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07250000", + "longitude": "11.20175000" + }, + { + "id": "30453", + "name": "Wülfershausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33201000", + "longitude": "10.34084000" + }, + { + "id": "30459", + "name": "Würzburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79391000", + "longitude": "9.95121000" + }, + { + "id": "30235", + "name": "Weßling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.07452000", + "longitude": "11.24820000" + }, + { + "id": "30044", + "name": "Wechingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.89229000", + "longitude": "10.61331000" + }, + { + "id": "30058", + "name": "Wegscheid", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60136000", + "longitude": "13.78733000" + }, + { + "id": "30063", + "name": "Wehringen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.25000000", + "longitude": "10.80000000" + }, + { + "id": "30123", + "name": "Weißdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.18333000", + "longitude": "11.85000000" + }, + { + "id": "30128", + "name": "Weißenbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20000000", + "longitude": "11.35000000" + }, + { + "id": "30129", + "name": "Weißenburg in Bayern", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03095000", + "longitude": "10.97221000" + }, + { + "id": "30131", + "name": "Weißenhorn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30501000", + "longitude": "10.16047000" + }, + { + "id": "30132", + "name": "Weißenohe", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63089000", + "longitude": "11.25369000" + }, + { + "id": "30133", + "name": "Weißensberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.58130000", + "longitude": "9.72586000" + }, + { + "id": "30136", + "name": "Weißenstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10217000", + "longitude": "11.88849000" + }, + { + "id": "30065", + "name": "Weibersbrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93083000", + "longitude": "9.36611000" + }, + { + "id": "30066", + "name": "Weichering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.71713000", + "longitude": "11.32141000" + }, + { + "id": "30067", + "name": "Weichs", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.38333000", + "longitude": "11.41667000" + }, + { + "id": "30069", + "name": "Weiden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.67682000", + "longitude": "12.15613000" + }, + { + "id": "30070", + "name": "Weidenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19817000", + "longitude": "10.64489000" + }, + { + "id": "30073", + "name": "Weidhausen bei Coburg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20354000", + "longitude": "11.14006000" + }, + { + "id": "30074", + "name": "Weiding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26282000", + "longitude": "12.76311000" + }, + { + "id": "30075", + "name": "Weigendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49773000", + "longitude": "11.56869000" + }, + { + "id": "30076", + "name": "Weihenzell", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35000000", + "longitude": "10.61667000" + }, + { + "id": "30077", + "name": "Weiherhammer", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63333000", + "longitude": "12.06667000" + }, + { + "id": "30078", + "name": "Weihmichl", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60000000", + "longitude": "12.05000000" + }, + { + "id": "30080", + "name": "Weil", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.11717000", + "longitude": "10.92161000" + }, + { + "id": "30084", + "name": "Weilbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66812000", + "longitude": "9.21639000" + }, + { + "id": "30087", + "name": "Weiler-Simmerberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.58261000", + "longitude": "9.91352000" + }, + { + "id": "30089", + "name": "Weilersbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75000000", + "longitude": "11.11667000" + }, + { + "id": "30091", + "name": "Weilheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.84147000", + "longitude": "11.15484000" + }, + { + "id": "30095", + "name": "Weiltingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.03878000", + "longitude": "10.45052000" + }, + { + "id": "30109", + "name": "Weisendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62283000", + "longitude": "10.82531000" + }, + { + "id": "30111", + "name": "Weismain", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08512000", + "longitude": "11.24024000" + }, + { + "id": "30119", + "name": "Weitnau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.64171000", + "longitude": "10.12732000" + }, + { + "id": "30120", + "name": "Weitramsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25600000", + "longitude": "10.87989000" + }, + { + "id": "30141", + "name": "Welden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45505000", + "longitude": "10.66086000" + }, + { + "id": "30151", + "name": "Wemding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.87461000", + "longitude": "10.72452000" + }, + { + "id": "30154", + "name": "Wendelstein", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35230000", + "longitude": "11.15069000" + }, + { + "id": "30161", + "name": "Weng", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65866000", + "longitude": "12.36927000" + }, + { + "id": "30164", + "name": "Wenzenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07561000", + "longitude": "12.19954000" + }, + { + "id": "30179", + "name": "Wernberg-Köblitz", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53931000", + "longitude": "12.16130000" + }, + { + "id": "30181", + "name": "Werneck", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98201000", + "longitude": "10.09884000" + }, + { + "id": "30187", + "name": "Wertach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.60301000", + "longitude": "10.40966000" + }, + { + "id": "30190", + "name": "Wertingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.56314000", + "longitude": "10.68149000" + }, + { + "id": "30198", + "name": "Wessobrunn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.87407000", + "longitude": "11.02461000" + }, + { + "id": "30201", + "name": "Westendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.93333000", + "longitude": "10.71667000" + }, + { + "id": "30209", + "name": "Westerheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.01667000", + "longitude": "10.30000000" + }, + { + "id": "30220", + "name": "Westheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.00000000", + "longitude": "10.66667000" + }, + { + "id": "30229", + "name": "Wetzendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47056000", + "longitude": "11.04148000" + }, + { + "id": "30232", + "name": "Weyarn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.85838000", + "longitude": "11.79923000" + }, + { + "id": "30241", + "name": "Wiedergeltingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.03946000", + "longitude": "10.67406000" + }, + { + "id": "30253", + "name": "Wiesau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90817000", + "longitude": "12.18889000" + }, + { + "id": "30255", + "name": "Wiesen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.11667000", + "longitude": "9.36667000" + }, + { + "id": "30259", + "name": "Wiesenfelden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04066000", + "longitude": "12.54008000" + }, + { + "id": "30261", + "name": "Wiesent", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01667000", + "longitude": "12.38333000" + }, + { + "id": "30262", + "name": "Wiesenthau", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71326000", + "longitude": "11.13564000" + }, + { + "id": "30263", + "name": "Wiesentheid", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79451000", + "longitude": "10.34509000" + }, + { + "id": "30266", + "name": "Wiesthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03333000", + "longitude": "9.43333000" + }, + { + "id": "30271", + "name": "Wiggensbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.74781000", + "longitude": "10.22987000" + }, + { + "id": "30272", + "name": "Wilburgstetten", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.02427000", + "longitude": "10.39505000" + }, + { + "id": "30275", + "name": "Wildenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72981000", + "longitude": "11.89845000" + }, + { + "id": "30279", + "name": "Wildflecken", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37764000", + "longitude": "9.91092000" + }, + { + "id": "30280", + "name": "Wildpoldsried", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.76667000", + "longitude": "10.40000000" + }, + { + "id": "30281", + "name": "Wildsteig", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.70145000", + "longitude": "10.93753000" + }, + { + "id": "30284", + "name": "Wilhelmsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56419000", + "longitude": "10.73716000" + }, + { + "id": "30289", + "name": "Wilhelmsthal", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31113000", + "longitude": "11.37278000" + }, + { + "id": "30290", + "name": "Wilhermsdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48308000", + "longitude": "10.71555000" + }, + { + "id": "30292", + "name": "Willanzheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68011000", + "longitude": "10.23248000" + }, + { + "id": "30297", + "name": "Willmering", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25000000", + "longitude": "12.66667000" + }, + { + "id": "30310", + "name": "Windach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.06667000", + "longitude": "11.03333000" + }, + { + "id": "30311", + "name": "Windberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.94285000", + "longitude": "12.74620000" + }, + { + "id": "30313", + "name": "Windelsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40000000", + "longitude": "10.30000000" + }, + { + "id": "30318", + "name": "Windischeschenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80108000", + "longitude": "12.15710000" + }, + { + "id": "30320", + "name": "Windsbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24786000", + "longitude": "10.82651000" + }, + { + "id": "30323", + "name": "Winhöring", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.26667000", + "longitude": "12.65000000" + }, + { + "id": "30324", + "name": "Winkelhaid", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38963000", + "longitude": "11.29888000" + }, + { + "id": "30325", + "name": "Winklarn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.42688000", + "longitude": "12.47986000" + }, + { + "id": "30332", + "name": "Winterhausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70683000", + "longitude": "10.01661000" + }, + { + "id": "30336", + "name": "Winzer", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.72285000", + "longitude": "13.07751000" + }, + { + "id": "30337", + "name": "Wipfeld", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91667000", + "longitude": "10.16667000" + }, + { + "id": "30343", + "name": "Wirsberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10572000", + "longitude": "11.60515000" + }, + { + "id": "30348", + "name": "Wittelshofen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06121000", + "longitude": "10.48121000" + }, + { + "id": "30360", + "name": "Wittislingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.61917000", + "longitude": "10.41722000" + }, + { + "id": "30369", + "name": "Witzmannsberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.62224000", + "longitude": "13.49444000" + }, + { + "id": "30379", + "name": "Wolfersdorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.47937000", + "longitude": "11.70949000" + }, + { + "id": "30380", + "name": "Wolferstadt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.90352000", + "longitude": "10.78129000" + }, + { + "id": "30381", + "name": "Wolfertschwenden", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.89350000", + "longitude": "10.26715000" + }, + { + "id": "30383", + "name": "Wolframs-Eschenbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22675000", + "longitude": "10.72769000" + }, + { + "id": "30384", + "name": "Wolfratshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91289000", + "longitude": "11.42166000" + }, + { + "id": "30387", + "name": "Wolfsegg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10731000", + "longitude": "11.97810000" + }, + { + "id": "30393", + "name": "Wollbach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.36667000", + "longitude": "10.23333000" + }, + { + "id": "30396", + "name": "Wolnzach", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.60380000", + "longitude": "11.62568000" + }, + { + "id": "30402", + "name": "Wonfurt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "10.46667000" + }, + { + "id": "30403", + "name": "Wonsees", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97614000", + "longitude": "11.30047000" + }, + { + "id": "30405", + "name": "Woringen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "47.91667000", + "longitude": "10.20000000" + }, + { + "id": "30418", + "name": "Wunsiedel", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03923000", + "longitude": "12.00342000" + }, + { + "id": "30421", + "name": "Wurmannsquick", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35334000", + "longitude": "12.78603000" + }, + { + "id": "30424", + "name": "Wurmsham", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.35000000", + "longitude": "12.33333000" + }, + { + "id": "30464", + "name": "Zachenberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.96667000", + "longitude": "13.00000000" + }, + { + "id": "30467", + "name": "Zandt", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15000000", + "longitude": "12.73333000" + }, + { + "id": "30468", + "name": "Zangberg", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.27480000", + "longitude": "12.42311000" + }, + { + "id": "30469", + "name": "Zapfendorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01783000", + "longitude": "10.93243000" + }, + { + "id": "30476", + "name": "Zeil", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00986000", + "longitude": "10.59470000" + }, + { + "id": "30477", + "name": "Zeilarn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.30003000", + "longitude": "12.84260000" + }, + { + "id": "30480", + "name": "Zeitlarn", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07848000", + "longitude": "12.11174000" + }, + { + "id": "30481", + "name": "Zeitlofs", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26189000", + "longitude": "9.67243000" + }, + { + "id": "30485", + "name": "Zell am Main", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81214000", + "longitude": "9.86962000" + }, + { + "id": "30486", + "name": "Zell im Fichtelgebirge", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "50.13532000", + "longitude": "11.82266000" + }, + { + "id": "30490", + "name": "Zellingen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89737000", + "longitude": "9.81746000" + }, + { + "id": "30493", + "name": "Zenting", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.79128000", + "longitude": "13.25968000" + }, + { + "id": "30502", + "name": "Ziemetshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.29244000", + "longitude": "10.53503000" + }, + { + "id": "30504", + "name": "Ziertheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.65244000", + "longitude": "10.39882000" + }, + { + "id": "30511", + "name": "Zirndorf", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44240000", + "longitude": "10.95414000" + }, + { + "id": "30513", + "name": "Zolling", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.45000000", + "longitude": "11.76667000" + }, + { + "id": "30515", + "name": "Zorneding", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.08433000", + "longitude": "11.82446000" + }, + { + "id": "30528", + "name": "Zusamaltheim", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.53104000", + "longitude": "10.63562000" + }, + { + "id": "30529", + "name": "Zusmarshausen", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "48.40014000", + "longitude": "10.59917000" + }, + { + "id": "30536", + "name": "Zwiesel", + "state_id": 3009, + "state_code": "BY", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01693000", + "longitude": "13.23765000" + }, + { + "id": "23490", + "name": "Adlershof", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43548000", + "longitude": "13.54825000" + }, + { + "id": "23579", + "name": "Alt-Hohenschönhausen", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54608000", + "longitude": "13.50130000" + }, + { + "id": "23581", + "name": "Alt-Treptow", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48863000", + "longitude": "13.45860000" + }, + { + "id": "23621", + "name": "Altglienicke", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41116000", + "longitude": "13.53550000" + }, + { + "id": "23959", + "name": "Baumschulenweg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46583000", + "longitude": "13.48523000" + }, + { + "id": "24053", + "name": "Berlin", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52437000", + "longitude": "13.41053000" + }, + { + "id": "24054", + "name": "Berlin Köpenick", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.44254000", + "longitude": "13.58228000" + }, + { + "id": "24055", + "name": "Berlin Treptow", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.49376000", + "longitude": "13.44469000" + }, + { + "id": "24111", + "name": "Biesdorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50906000", + "longitude": "13.55340000" + }, + { + "id": "24165", + "name": "Blankenburg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.59293000", + "longitude": "13.45516000" + }, + { + "id": "24167", + "name": "Blankenfelde", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61863000", + "longitude": "13.39057000" + }, + { + "id": "24217", + "name": "Bohnsdorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.39434000", + "longitude": "13.57339000" + }, + { + "id": "24338", + "name": "Britz", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.44293000", + "longitude": "13.43388000" + }, + { + "id": "24379", + "name": "Buch", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.63470000", + "longitude": "13.49679000" + }, + { + "id": "24397", + "name": "Buckow", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43200000", + "longitude": "13.46018000" + }, + { + "id": "24531", + "name": "Charlottenburg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51667000", + "longitude": "13.28333000" + }, + { + "id": "24532", + "name": "Charlottenburg-Nord", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53048000", + "longitude": "13.29371000" + }, + { + "id": "24578", + "name": "Dahlem", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.45810000", + "longitude": "13.28702000" + }, + { + "id": "25134", + "name": "Falkenberg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56800000", + "longitude": "13.54597000" + }, + { + "id": "25136", + "name": "Falkenhagener Feld", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55191000", + "longitude": "13.16802000" + }, + { + "id": "25163", + "name": "Fennpfuhl", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52921000", + "longitude": "13.47267000" + }, + { + "id": "25225", + "name": "Französisch Buchholz", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60242000", + "longitude": "13.43019000" + }, + { + "id": "25274", + "name": "Friedenau", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47133000", + "longitude": "13.32813000" + }, + { + "id": "25287", + "name": "Friedrichsfelde", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50575000", + "longitude": "13.50812000" + }, + { + "id": "25289", + "name": "Friedrichshagen", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.45052000", + "longitude": "13.62463000" + }, + { + "id": "25290", + "name": "Friedrichshain", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51559000", + "longitude": "13.45482000" + }, + { + "id": "25305", + "name": "Frohnau", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.63336000", + "longitude": "13.29024000" + }, + { + "id": "25376", + "name": "Gatow", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48324000", + "longitude": "13.18285000" + }, + { + "id": "25475", + "name": "Gesundbrunnen", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55035000", + "longitude": "13.39139000" + }, + { + "id": "25734", + "name": "Grünau", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41642000", + "longitude": "13.58039000" + }, + { + "id": "25616", + "name": "Gropiusstadt", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42500000", + "longitude": "13.46667000" + }, + { + "id": "25719", + "name": "Grunewald", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48338000", + "longitude": "13.26586000" + }, + { + "id": "25841", + "name": "Hakenfelde", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55877000", + "longitude": "13.20831000" + }, + { + "id": "25848", + "name": "Halensee", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.49005000", + "longitude": "13.29602000" + }, + { + "id": "25892", + "name": "Hansaviertel", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51853000", + "longitude": "13.34178000" + }, + { + "id": "25926", + "name": "Haselhorst", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54409000", + "longitude": "13.23743000" + }, + { + "id": "26000", + "name": "Heiligensee", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61449000", + "longitude": "13.24501000" + }, + { + "id": "26013", + "name": "Heinersdorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.57173000", + "longitude": "13.43757000" + }, + { + "id": "26026", + "name": "Hellersdorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53319000", + "longitude": "13.60880000" + }, + { + "id": "26082", + "name": "Hermsdorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61421000", + "longitude": "13.30587000" + }, + { + "id": "26457", + "name": "Johannisthal", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.44653000", + "longitude": "13.50660000" + }, + { + "id": "26517", + "name": "Karlshorst", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48419000", + "longitude": "13.53185000" + }, + { + "id": "26523", + "name": "Karow", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60904000", + "longitude": "13.48117000" + }, + { + "id": "26545", + "name": "Kaulsdorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51732000", + "longitude": "13.58871000" + }, + { + "id": "26842", + "name": "Köpenick", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.44550000", + "longitude": "13.57455000" + }, + { + "id": "26655", + "name": "Kladow", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.45423000", + "longitude": "13.14445000" + }, + { + "id": "26716", + "name": "Konradshöhe", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58535000", + "longitude": "13.22758000" + }, + { + "id": "26756", + "name": "Kreuzberg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.49973000", + "longitude": "13.40338000" + }, + { + "id": "26948", + "name": "Lankwitz", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43623000", + "longitude": "13.34590000" + }, + { + "id": "27201", + "name": "Lübars", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61591000", + "longitude": "13.35350000" + }, + { + "id": "27078", + "name": "Lichtenberg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51395000", + "longitude": "13.49975000" + }, + { + "id": "27082", + "name": "Lichtenrade", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.39844000", + "longitude": "13.40637000" + }, + { + "id": "27085", + "name": "Lichterfelde", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43330000", + "longitude": "13.30762000" + }, + { + "id": "27233", + "name": "Mahlsdorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50935000", + "longitude": "13.61373000" + }, + { + "id": "27274", + "name": "Mariendorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43780000", + "longitude": "13.38109000" + }, + { + "id": "27275", + "name": "Marienfelde", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41868000", + "longitude": "13.36723000" + }, + { + "id": "27334", + "name": "Marzahn", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54525000", + "longitude": "13.56983000" + }, + { + "id": "27554", + "name": "Märkisches Viertel", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.59841000", + "longitude": "13.35766000" + }, + { + "id": "27587", + "name": "Müggelheim", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41137000", + "longitude": "13.66403000" + }, + { + "id": "27478", + "name": "Mitte", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52003000", + "longitude": "13.40489000" + }, + { + "id": "27496", + "name": "Moabit", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52635000", + "longitude": "13.33903000" + }, + { + "id": "27693", + "name": "Neu-Hohenschönhausen", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56681000", + "longitude": "13.51255000" + }, + { + "id": "27765", + "name": "Neukölln", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47719000", + "longitude": "13.43126000" + }, + { + "id": "27873", + "name": "Niederschöneweide", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.45564000", + "longitude": "13.51554000" + }, + { + "id": "27874", + "name": "Niederschönhausen", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58483000", + "longitude": "13.40272000" + }, + { + "id": "27899", + "name": "Nikolassee", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43440000", + "longitude": "13.20095000" + }, + { + "id": "28034", + "name": "Oberschöneweide", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46106000", + "longitude": "13.52108000" + }, + { + "id": "28216", + "name": "Pankow", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56926000", + "longitude": "13.40186000" + }, + { + "id": "28330", + "name": "Plänterwald", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48106000", + "longitude": "13.47276000" + }, + { + "id": "28375", + "name": "Prenzlauer Berg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53878000", + "longitude": "13.42443000" + }, + { + "id": "28452", + "name": "Rahnsdorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.44115000", + "longitude": "13.68708000" + }, + { + "id": "28562", + "name": "Reinickendorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56667000", + "longitude": "13.33333000" + }, + { + "id": "28710", + "name": "Rosenthal", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.59976000", + "longitude": "13.37774000" + }, + { + "id": "28753", + "name": "Rudow", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42407000", + "longitude": "13.48529000" + }, + { + "id": "28762", + "name": "Rummelsburg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50146000", + "longitude": "13.49340000" + }, + { + "id": "29116", + "name": "Schöneberg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46667000", + "longitude": "13.35000000" + }, + { + "id": "28989", + "name": "Schmargendorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47517000", + "longitude": "13.29071000" + }, + { + "id": "28998", + "name": "Schmöckwitz", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.37513000", + "longitude": "13.64948000" + }, + { + "id": "29218", + "name": "Siemensstadt", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54053000", + "longitude": "13.26294000" + }, + { + "id": "29286", + "name": "Spandau", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55110000", + "longitude": "13.19921000" + }, + { + "id": "29313", + "name": "Staaken", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53661000", + "longitude": "13.15057000" + }, + { + "id": "29329", + "name": "Stadtrandsiedlung Malchow", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58295000", + "longitude": "13.47811000" + }, + { + "id": "29353", + "name": "Steglitz", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.45606000", + "longitude": "13.33200000" + }, + { + "id": "29543", + "name": "Tegel", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.57601000", + "longitude": "13.29389000" + }, + { + "id": "29555", + "name": "Tempelhof", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46667000", + "longitude": "13.40000000" + }, + { + "id": "29612", + "name": "Tiergarten", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51667000", + "longitude": "13.36667000" + }, + { + "id": "29926", + "name": "Waidmannslust", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60691000", + "longitude": "13.31968000" + }, + { + "id": "30008", + "name": "Wannsee", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41915000", + "longitude": "13.15531000" + }, + { + "id": "30025", + "name": "Wartenberg", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.57520000", + "longitude": "13.51559000" + }, + { + "id": "30048", + "name": "Wedding", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54734000", + "longitude": "13.35594000" + }, + { + "id": "30134", + "name": "Weißensee", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55632000", + "longitude": "13.46649000" + }, + { + "id": "30200", + "name": "Westend", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51708000", + "longitude": "13.27636000" + }, + { + "id": "30287", + "name": "Wilhelmsruh", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58710000", + "longitude": "13.36855000" + }, + { + "id": "30288", + "name": "Wilhelmstadt", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52462000", + "longitude": "13.17707000" + }, + { + "id": "30299", + "name": "Wilmersdorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48333000", + "longitude": "13.31667000" + }, + { + "id": "30350", + "name": "Wittenau", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.59319000", + "longitude": "13.32127000" + }, + { + "id": "30475", + "name": "Zehlendorf", + "state_id": 3010, + "state_code": "BE", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43333000", + "longitude": "13.25000000" + }, + { + "id": "23577", + "name": "Alt Tucheband", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53732000", + "longitude": "14.51225000" + }, + { + "id": "23585", + "name": "Altdöbern", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65000000", + "longitude": "14.03333000" + }, + { + "id": "23626", + "name": "Altlandsberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56503000", + "longitude": "13.72815000" + }, + { + "id": "23655", + "name": "Angermünde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.01499000", + "longitude": "13.99924000" + }, + { + "id": "23764", + "name": "Bad Belzig", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.14184000", + "longitude": "12.59272000" + }, + { + "id": "23798", + "name": "Bad Freienwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.78730000", + "longitude": "14.03040000" + }, + { + "id": "23829", + "name": "Bad Liebenwerda", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.51826000", + "longitude": "13.39459000" + }, + { + "id": "23853", + "name": "Bad Saarow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28333000", + "longitude": "14.06667000" + }, + { + "id": "23885", + "name": "Bad Wilsnack", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.95607000", + "longitude": "11.94903000" + }, + { + "id": "23947", + "name": "Baruth", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.04468000", + "longitude": "13.50270000" + }, + { + "id": "23983", + "name": "Beelitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23812000", + "longitude": "12.97140000" + }, + { + "id": "23987", + "name": "Beeskow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.17291000", + "longitude": "14.24597000" + }, + { + "id": "24017", + "name": "Bensdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41667000", + "longitude": "12.33333000" + }, + { + "id": "24050", + "name": "Berkenbrück", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35000000", + "longitude": "14.15000000" + }, + { + "id": "24061", + "name": "Bernau bei Berlin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.67982000", + "longitude": "13.58708000" + }, + { + "id": "24079", + "name": "Bestensee", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23978000", + "longitude": "13.63732000" + }, + { + "id": "24112", + "name": "Biesenthal", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.76616000", + "longitude": "13.64416000" + }, + { + "id": "24138", + "name": "Birkenwerder", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.68333000", + "longitude": "13.28333000" + }, + { + "id": "24181", + "name": "Bliesdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.69298000", + "longitude": "14.15949000" + }, + { + "id": "24246", + "name": "Borkheide", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21667000", + "longitude": "12.85000000" + }, + { + "id": "24248", + "name": "Borkwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.25000000", + "longitude": "12.83333000" + }, + { + "id": "24280", + "name": "Brandenburg an der Havel", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41667000", + "longitude": "12.55000000" + }, + { + "id": "24365", + "name": "Brück", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.19766000", + "longitude": "12.76868000" + }, + { + "id": "24374", + "name": "Brüssow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.39971000", + "longitude": "14.12533000" + }, + { + "id": "24293", + "name": "Breddin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.88560000", + "longitude": "12.22366000" + }, + { + "id": "24297", + "name": "Breese", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.00000000", + "longitude": "11.80000000" + }, + { + "id": "24331", + "name": "Brieselang", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58333000", + "longitude": "13.00000000" + }, + { + "id": "24332", + "name": "Briesen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.34383000", + "longitude": "14.27804000" + }, + { + "id": "24333", + "name": "Brieskow-Finkenheerd", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.25387000", + "longitude": "14.57285000" + }, + { + "id": "24337", + "name": "Britz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.88726000", + "longitude": "13.81119000" + }, + { + "id": "24396", + "name": "Buckow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56610000", + "longitude": "14.07429000" + }, + { + "id": "24406", + "name": "Burg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83448000", + "longitude": "14.14856000" + }, + { + "id": "24513", + "name": "Calau", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.74402000", + "longitude": "13.95329000" + }, + { + "id": "24525", + "name": "Casekow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.21117000", + "longitude": "14.20824000" + }, + { + "id": "24535", + "name": "Chorin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.90197000", + "longitude": "13.87153000" + }, + { + "id": "24556", + "name": "Cottbus", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.75769000", + "longitude": "14.32888000" + }, + { + "id": "24564", + "name": "Crinitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73333000", + "longitude": "13.76667000" + }, + { + "id": "24583", + "name": "Dahme", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.87008000", + "longitude": "13.42743000" + }, + { + "id": "24587", + "name": "Dallgow-Döberitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54269000", + "longitude": "13.05837000" + }, + { + "id": "24713", + "name": "Doberlug-Kirchhain", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62578000", + "longitude": "13.56232000" + }, + { + "id": "24758", + "name": "Drebkau", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65412000", + "longitude": "14.22316000" + }, + { + "id": "24759", + "name": "Dreetz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.80297000", + "longitude": "12.45961000" + }, + { + "id": "24839", + "name": "Eberswalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.83492000", + "longitude": "13.81951000" + }, + { + "id": "24907", + "name": "Eichwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.36667000", + "longitude": "13.61667000" + }, + { + "id": "24929", + "name": "Eisenhüttenstadt", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15000000", + "longitude": "14.65000000" + }, + { + "id": "24972", + "name": "Elsterwerda", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46043000", + "longitude": "13.52001000" + }, + { + "id": "25049", + "name": "Erkner", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42000000", + "longitude": "13.75437000" + }, + { + "id": "25133", + "name": "Falkenberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58557000", + "longitude": "13.24347000" + }, + { + "id": "25138", + "name": "Falkensee", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56014000", + "longitude": "13.09270000" + }, + { + "id": "25328", + "name": "Fürstenberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.18427000", + "longitude": "13.14442000" + }, + { + "id": "25334", + "name": "Fürstenwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.36067000", + "longitude": "14.06185000" + }, + { + "id": "25149", + "name": "Fehrbellin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.81350000", + "longitude": "12.76440000" + }, + { + "id": "25169", + "name": "Fichtenwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28038000", + "longitude": "12.88349000" + }, + { + "id": "25176", + "name": "Finsterwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.63388000", + "longitude": "13.70662000" + }, + { + "id": "25207", + "name": "Forst", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73544000", + "longitude": "14.63971000" + }, + { + "id": "25221", + "name": "Frankfurt (Oder)", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.34714000", + "longitude": "14.55062000" + }, + { + "id": "25282", + "name": "Friedland", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.10493000", + "longitude": "14.26399000" + }, + { + "id": "25297", + "name": "Friesack", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.73764000", + "longitude": "12.57969000" + }, + { + "id": "25373", + "name": "Gartz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.20829000", + "longitude": "14.39226000" + }, + { + "id": "25786", + "name": "Görzke", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.17179000", + "longitude": "12.37506000" + }, + { + "id": "25465", + "name": "Gerswalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.16988000", + "longitude": "13.74853000" + }, + { + "id": "25512", + "name": "Glienicke", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.63353000", + "longitude": "13.32564000" + }, + { + "id": "25536", + "name": "Golßen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.97204000", + "longitude": "13.60115000" + }, + { + "id": "25535", + "name": "Golzow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.27617000", + "longitude": "12.60052000" + }, + { + "id": "25575", + "name": "Gramzow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.21246000", + "longitude": "14.00748000" + }, + { + "id": "25577", + "name": "Gransee", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.00704000", + "longitude": "13.15750000" + }, + { + "id": "25730", + "name": "Gröden", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40000000", + "longitude": "13.56667000" + }, + { + "id": "25741", + "name": "Grünheide", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42343000", + "longitude": "13.81324000" + }, + { + "id": "25627", + "name": "Groß Köris", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.16587000", + "longitude": "13.65935000" + }, + { + "id": "25625", + "name": "Groß Kreutz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40281000", + "longitude": "12.77940000" + }, + { + "id": "25629", + "name": "Groß Lindow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23333000", + "longitude": "14.53333000" + }, + { + "id": "25634", + "name": "Groß Pankow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.11952000", + "longitude": "12.04975000" + }, + { + "id": "25653", + "name": "Großbeeren", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35862000", + "longitude": "13.30994000" + }, + { + "id": "25684", + "name": "Großkmehlen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.37901000", + "longitude": "13.72501000" + }, + { + "id": "25703", + "name": "Großräschen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58760000", + "longitude": "14.01093000" + }, + { + "id": "25710", + "name": "Großthiemig", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38333000", + "longitude": "13.66667000" + }, + { + "id": "25714", + "name": "Großwoltersdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.06667000", + "longitude": "13.10000000" + }, + { + "id": "25748", + "name": "Guben", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.94987000", + "longitude": "14.71447000" + }, + { + "id": "25753", + "name": "Gumtow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.98333000", + "longitude": "12.25000000" + }, + { + "id": "25842", + "name": "Halbe", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11667000", + "longitude": "13.70000000" + }, + { + "id": "25996", + "name": "Heiligengrabe", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.14461000", + "longitude": "12.36254000" + }, + { + "id": "26051", + "name": "Hennigsdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.63598000", + "longitude": "13.20419000" + }, + { + "id": "26098", + "name": "Herzberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.68692000", + "longitude": "13.22016000" + }, + { + "id": "26166", + "name": "Hirschfeld", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38333000", + "longitude": "13.61667000" + }, + { + "id": "26195", + "name": "Hohen Neuendorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.67631000", + "longitude": "13.27775000" + }, + { + "id": "26199", + "name": "Hohenbocka", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43099000", + "longitude": "14.00982000" + }, + { + "id": "26208", + "name": "Hohenleipisch", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50000000", + "longitude": "13.55000000" + }, + { + "id": "26424", + "name": "Jacobsdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.33333000", + "longitude": "14.35000000" + }, + { + "id": "26464", + "name": "Jänschwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.86066000", + "longitude": "14.49813000" + }, + { + "id": "26476", + "name": "Jüterbog", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.99607000", + "longitude": "13.07979000" + }, + { + "id": "26452", + "name": "Joachimsthal", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.97945000", + "longitude": "13.74493000" + }, + { + "id": "26526", + "name": "Karstädt", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.16215000", + "longitude": "11.74242000" + }, + { + "id": "26822", + "name": "Königs Wusterhausen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30141000", + "longitude": "13.63300000" + }, + { + "id": "26579", + "name": "Ketzin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47809000", + "longitude": "12.84530000" + }, + { + "id": "26675", + "name": "Kleinmachnow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40786000", + "longitude": "13.22514000" + }, + { + "id": "26693", + "name": "Kloster Lehnin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.32039000", + "longitude": "12.74320000" + }, + { + "id": "26713", + "name": "Kolkwitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.75000000", + "longitude": "14.25000000" + }, + { + "id": "26749", + "name": "Kremmen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.76216000", + "longitude": "13.02515000" + }, + { + "id": "26811", + "name": "Kyritz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.94212000", + "longitude": "12.39704000" + }, + { + "id": "26959", + "name": "Lauchhammer", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.48813000", + "longitude": "13.76623000" + }, + { + "id": "27203", + "name": "Lübben", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.93814000", + "longitude": "13.88826000" + }, + { + "id": "27204", + "name": "Lübbenau", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.86217000", + "longitude": "13.95168000" + }, + { + "id": "26995", + "name": "Lebus", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42719000", + "longitude": "14.53235000" + }, + { + "id": "26998", + "name": "Leegebruch", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.72340000", + "longitude": "13.19304000" + }, + { + "id": "27050", + "name": "Lenzen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.09176000", + "longitude": "11.47453000" + }, + { + "id": "27055", + "name": "Letschin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.64379000", + "longitude": "14.36007000" + }, + { + "id": "27089", + "name": "Liebenwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.87125000", + "longitude": "13.39465000" + }, + { + "id": "27090", + "name": "Lieberose", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.98491000", + "longitude": "14.29987000" + }, + { + "id": "27112", + "name": "Lindow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96689000", + "longitude": "12.98498000" + }, + { + "id": "27160", + "name": "Luckau", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85245000", + "longitude": "13.70735000" + }, + { + "id": "27161", + "name": "Luckenwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.09029000", + "longitude": "13.16772000" + }, + { + "id": "27164", + "name": "Ludwigsfelde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30322000", + "longitude": "13.25405000" + }, + { + "id": "27182", + "name": "Lychen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.21242000", + "longitude": "13.31483000" + }, + { + "id": "27266", + "name": "Manschnow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54990000", + "longitude": "14.55332000" + }, + { + "id": "27281", + "name": "Marienwerder", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.84208000", + "longitude": "13.59927000" + }, + { + "id": "27592", + "name": "Mühlberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43453000", + "longitude": "13.22177000" + }, + { + "id": "27607", + "name": "Müllrose", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.24736000", + "longitude": "14.41794000" + }, + { + "id": "27610", + "name": "Müncheberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50704000", + "longitude": "14.13716000" + }, + { + "id": "27391", + "name": "Melchow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.77613000", + "longitude": "13.70647000" + }, + { + "id": "27448", + "name": "Meyenburg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.04524000", + "longitude": "14.23691000" + }, + { + "id": "27456", + "name": "Michendorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31352000", + "longitude": "13.02996000" + }, + { + "id": "27467", + "name": "Milmersdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.11185000", + "longitude": "13.64150000" + }, + { + "id": "27489", + "name": "Mittenwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.26007000", + "longitude": "13.53945000" + }, + { + "id": "27495", + "name": "Mixdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20000000", + "longitude": "14.40000000" + }, + { + "id": "27647", + "name": "Nauen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60701000", + "longitude": "12.87374000" + }, + { + "id": "27673", + "name": "Nennhausen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60000000", + "longitude": "12.50000000" + }, + { + "id": "27691", + "name": "Neu Zauche", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.92757000", + "longitude": "14.08812000" + }, + { + "id": "27720", + "name": "Neuenhagen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52985000", + "longitude": "13.68914000" + }, + { + "id": "27737", + "name": "Neuhardenberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.59601000", + "longitude": "14.23768000" + }, + { + "id": "27767", + "name": "Neulewin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.72434000", + "longitude": "14.27922000" + }, + { + "id": "27787", + "name": "Neuruppin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.92815000", + "longitude": "12.80311000" + }, + { + "id": "27812", + "name": "Neutrebbin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.66482000", + "longitude": "14.22802000" + }, + { + "id": "27816", + "name": "Neuzelle", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.09016000", + "longitude": "14.64804000" + }, + { + "id": "27849", + "name": "Niedergörsdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.97943000", + "longitude": "12.98541000" + }, + { + "id": "27891", + "name": "Niemegk", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.07388000", + "longitude": "12.68947000" + }, + { + "id": "28070", + "name": "Oderberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.86571000", + "longitude": "14.04508000" + }, + { + "id": "28124", + "name": "Oranienburg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.75577000", + "longitude": "13.24197000" + }, + { + "id": "28133", + "name": "Ortrand", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.37505000", + "longitude": "13.75982000" + }, + { + "id": "28235", + "name": "Paulinenaue", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.67701000", + "longitude": "12.71067000" + }, + { + "id": "28244", + "name": "Peitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85841000", + "longitude": "14.41138000" + }, + { + "id": "28260", + "name": "Perleberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.07583000", + "longitude": "11.85739000" + }, + { + "id": "28265", + "name": "Petershagen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52078000", + "longitude": "13.78748000" + }, + { + "id": "28315", + "name": "Plattenburg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.95919000", + "longitude": "12.02951000" + }, + { + "id": "28323", + "name": "Plessa", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46667000", + "longitude": "13.61667000" + }, + { + "id": "28339", + "name": "Podelzig", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47175000", + "longitude": "14.53465000" + }, + { + "id": "28362", + "name": "Potsdam", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.39886000", + "longitude": "13.06566000" + }, + { + "id": "28399", + "name": "Prötzel", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.63723000", + "longitude": "13.98783000" + }, + { + "id": "28373", + "name": "Premnitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53184000", + "longitude": "12.34845000" + }, + { + "id": "28374", + "name": "Prenzlau", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.31625000", + "longitude": "13.86261000" + }, + { + "id": "28392", + "name": "Pritzwalk", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.14945000", + "longitude": "12.17405000" + }, + { + "id": "28409", + "name": "Putlitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.24899000", + "longitude": "12.04179000" + }, + { + "id": "28471", + "name": "Rangsdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.29126000", + "longitude": "13.41946000" + }, + { + "id": "28485", + "name": "Rathenow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60659000", + "longitude": "12.33696000" + }, + { + "id": "28494", + "name": "Rauen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.33227000", + "longitude": "14.02797000" + }, + { + "id": "28799", + "name": "Rückersdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56955000", + "longitude": "13.57226000" + }, + { + "id": "28802", + "name": "Rüdnitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.72137000", + "longitude": "13.62502000" + }, + { + "id": "28532", + "name": "Rehfelde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53417000", + "longitude": "13.90884000" + }, + { + "id": "28546", + "name": "Reichenwalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.26667000", + "longitude": "14.00000000" + }, + { + "id": "28612", + "name": "Rheinsberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.09972000", + "longitude": "12.89885000" + }, + { + "id": "28617", + "name": "Rhinow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.75094000", + "longitude": "12.34194000" + }, + { + "id": "28654", + "name": "Rietz Neuendorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.22758000", + "longitude": "14.17463000" + }, + { + "id": "28712", + "name": "Roskow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47237000", + "longitude": "12.71886000" + }, + { + "id": "28756", + "name": "Ruhland", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45755000", + "longitude": "13.86643000" + }, + { + "id": "28835", + "name": "Sallgast", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58870000", + "longitude": "13.84861000" + }, + { + "id": "29113", + "name": "Schönborn", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.60016000", + "longitude": "13.48967000" + }, + { + "id": "29119", + "name": "Schönefeld", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38897000", + "longitude": "13.50374000" + }, + { + "id": "29120", + "name": "Schöneiche", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47286000", + "longitude": "13.69226000" + }, + { + "id": "29122", + "name": "Schönewalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.67901000", + "longitude": "13.60247000" + }, + { + "id": "28929", + "name": "Schenkendöbern", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.95723000", + "longitude": "14.63541000" + }, + { + "id": "28951", + "name": "Schipkau", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.51766000", + "longitude": "13.89738000" + }, + { + "id": "28975", + "name": "Schlieben", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.72379000", + "longitude": "13.38304000" + }, + { + "id": "29035", + "name": "Schulzendorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35818000", + "longitude": "13.59842000" + }, + { + "id": "29074", + "name": "Schwarzheide", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.47671000", + "longitude": "13.85559000" + }, + { + "id": "29078", + "name": "Schwedt (Oder)", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.05963000", + "longitude": "14.28154000" + }, + { + "id": "29160", + "name": "Seelow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53392000", + "longitude": "14.38128000" + }, + { + "id": "29191", + "name": "Senftenberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52517000", + "longitude": "14.00164000" + }, + { + "id": "29274", + "name": "Sonnewalde", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.69223000", + "longitude": "13.64730000" + }, + { + "id": "29297", + "name": "Sperenberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.14113000", + "longitude": "13.36500000" + }, + { + "id": "29307", + "name": "Spreenhagen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.34325000", + "longitude": "13.87663000" + }, + { + "id": "29333", + "name": "Stahnsdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38333000", + "longitude": "13.21667000" + }, + { + "id": "29384", + "name": "Steinhöfel", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40000000", + "longitude": "14.16667000" + }, + { + "id": "29421", + "name": "Storkow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.25662000", + "longitude": "13.93337000" + }, + { + "id": "29429", + "name": "Straupitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.91357000", + "longitude": "14.12275000" + }, + { + "id": "29430", + "name": "Strausberg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.57859000", + "longitude": "13.88741000" + }, + { + "id": "29535", + "name": "Tauche", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15000000", + "longitude": "14.16667000" + }, + { + "id": "29554", + "name": "Teltow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40310000", + "longitude": "13.26014000" + }, + { + "id": "29556", + "name": "Templin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.11865000", + "longitude": "13.50220000" + }, + { + "id": "29571", + "name": "Teupitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.12967000", + "longitude": "13.61960000" + }, + { + "id": "29648", + "name": "Trebbin", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21675000", + "longitude": "13.22496000" + }, + { + "id": "29663", + "name": "Treuenbrietzen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.09754000", + "longitude": "12.87258000" + }, + { + "id": "29687", + "name": "Tschernitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58333000", + "longitude": "14.61667000" + }, + { + "id": "29718", + "name": "Uebigau", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.59415000", + "longitude": "13.29983000" + }, + { + "id": "29831", + "name": "Velten", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.69149000", + "longitude": "13.17533000" + }, + { + "id": "29839", + "name": "Vetschau", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.78638000", + "longitude": "14.07941000" + }, + { + "id": "29964", + "name": "Waldsieversdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54221000", + "longitude": "14.07022000" + }, + { + "id": "29999", + "name": "Wandlitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.74196000", + "longitude": "13.45799000" + }, + { + "id": "30107", + "name": "Weisen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.02518000", + "longitude": "11.78710000" + }, + { + "id": "30150", + "name": "Welzow", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58381000", + "longitude": "14.17082000" + }, + { + "id": "30157", + "name": "Wendisch Rietz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21613000", + "longitude": "14.00845000" + }, + { + "id": "30167", + "name": "Werben", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "51.81667000", + "longitude": "14.18333000" + }, + { + "id": "30170", + "name": "Werder", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.37874000", + "longitude": "12.93400000" + }, + { + "id": "30173", + "name": "Werftpfuhl", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.66014000", + "longitude": "13.79351000" + }, + { + "id": "30183", + "name": "Werneuchen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.63275000", + "longitude": "13.73437000" + }, + { + "id": "30256", + "name": "Wiesenau", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23071000", + "longitude": "14.59107000" + }, + { + "id": "30258", + "name": "Wiesenburg", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11456000", + "longitude": "12.45534000" + }, + { + "id": "30352", + "name": "Wittenberge", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.00543000", + "longitude": "11.75032000" + }, + { + "id": "30366", + "name": "Wittstock", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.16118000", + "longitude": "12.48287000" + }, + { + "id": "30400", + "name": "Woltersdorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.45554000", + "longitude": "13.74986000" + }, + { + "id": "30411", + "name": "Wriezen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.72091000", + "longitude": "14.13425000" + }, + { + "id": "30427", + "name": "Wusterhausen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.89120000", + "longitude": "12.46021000" + }, + { + "id": "30429", + "name": "Wustermark", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55000000", + "longitude": "12.95000000" + }, + { + "id": "30430", + "name": "Wusterwitz", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.36666000", + "longitude": "12.38488000" + }, + { + "id": "30474", + "name": "Zehdenick", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.97852000", + "longitude": "13.33165000" + }, + { + "id": "30499", + "name": "Zeuthen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.34803000", + "longitude": "13.62174000" + }, + { + "id": "30505", + "name": "Ziesar", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.26616000", + "longitude": "12.28997000" + }, + { + "id": "30507", + "name": "Ziltendorf", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20608000", + "longitude": "14.62411000" + }, + { + "id": "30517", + "name": "Zossen", + "state_id": 3013, + "state_code": "BB", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21600000", + "longitude": "13.44909000" + }, + { + "id": "24320", + "name": "Bremen", + "state_id": 3014, + "state_code": "HB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.07516000", + "longitude": "8.80777000" + }, + { + "id": "24321", + "name": "Bremerhaven", + "state_id": 3014, + "state_code": "HB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55021000", + "longitude": "8.57673000" + }, + { + "id": "24426", + "name": "Burglesum", + "state_id": 3014, + "state_code": "HB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.16532000", + "longitude": "8.68873000" + }, + { + "id": "29819", + "name": "Vegesack", + "state_id": 3014, + "state_code": "HB", + "country_id": 82, + "country_code": "DE", + "latitude": "53.16667000", + "longitude": "8.61667000" + }, + { + "id": "23574", + "name": "Alsterdorf", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61083000", + "longitude": "10.01306000" + }, + { + "id": "23631", + "name": "Altona", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55000000", + "longitude": "9.93333000" + }, + { + "id": "23936", + "name": "Barmbek-Nord", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60520000", + "longitude": "10.03988000" + }, + { + "id": "24032", + "name": "Bergedorf", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48462000", + "longitude": "10.22904000" + }, + { + "id": "24047", + "name": "Bergstedt", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.67111000", + "longitude": "10.12694000" + }, + { + "id": "24241", + "name": "Borgfelde", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55475000", + "longitude": "10.03447000" + }, + { + "id": "24788", + "name": "Duvenstedt", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.70806000", + "longitude": "10.10444000" + }, + { + "id": "24910", + "name": "Eidelstedt", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60697000", + "longitude": "9.90538000" + }, + { + "id": "24919", + "name": "Eimsbüttel", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57416000", + "longitude": "9.95679000" + }, + { + "id": "25143", + "name": "Farmsen-Berne", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60639000", + "longitude": "10.11972000" + }, + { + "id": "25314", + "name": "Fuhlsbüttel", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63459000", + "longitude": "10.01608000" + }, + { + "id": "25866", + "name": "Hamburg", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57532000", + "longitude": "10.01534000" + }, + { + "id": "25867", + "name": "Hamburg-Altstadt", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55000000", + "longitude": "10.00000000" + }, + { + "id": "25868", + "name": "Hamburg-Mitte", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55000000", + "longitude": "10.01667000" + }, + { + "id": "25869", + "name": "Hamburg-Nord", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.58935000", + "longitude": "9.98400000" + }, + { + "id": "25877", + "name": "Hammerbrook", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.54527000", + "longitude": "10.03042000" + }, + { + "id": "25897", + "name": "Harburg", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.46057000", + "longitude": "9.98388000" + }, + { + "id": "26284", + "name": "Hummelsbüttel", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.64773000", + "longitude": "10.04149000" + }, + { + "id": "26670", + "name": "Kleiner Grasbrook", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.53111000", + "longitude": "9.99361000" + }, + { + "id": "26922", + "name": "Langenhorn", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66667000", + "longitude": "10.01667000" + }, + { + "id": "27036", + "name": "Lemsahl-Mellingstedt", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68998000", + "longitude": "10.09648000" + }, + { + "id": "27178", + "name": "Lurup", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.59266000", + "longitude": "9.87697000" + }, + { + "id": "27280", + "name": "Marienthal", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56667000", + "longitude": "10.08333000" + }, + { + "id": "27793", + "name": "Neustadt", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55196000", + "longitude": "9.98558000" + }, + { + "id": "28098", + "name": "Ohlsdorf", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.62594000", + "longitude": "10.03145000" + }, + { + "id": "28181", + "name": "Ottensen", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55000000", + "longitude": "9.91667000" + }, + { + "id": "28351", + "name": "Poppenbüttel", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65917000", + "longitude": "10.08472000" + }, + { + "id": "28726", + "name": "Rothenburgsort", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.53500000", + "longitude": "10.04082000" + }, + { + "id": "28888", + "name": "Sasel", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65385000", + "longitude": "10.11184000" + }, + { + "id": "29311", + "name": "St. Georg", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55513000", + "longitude": "10.01231000" + }, + { + "id": "29312", + "name": "St. Pauli", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55700000", + "longitude": "9.96400000" + }, + { + "id": "29354", + "name": "Steilshoop", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61028000", + "longitude": "10.05917000" + }, + { + "id": "29396", + "name": "Stellingen", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.59220000", + "longitude": "9.92870000" + }, + { + "id": "30000", + "name": "Wandsbek", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.58334000", + "longitude": "10.08305000" + }, + { + "id": "30145", + "name": "Wellingsbüttel", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.64104000", + "longitude": "10.07980000" + }, + { + "id": "30333", + "name": "Winterhude", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60000000", + "longitude": "10.00000000" + }, + { + "id": "30370", + "name": "Wohldorf-Ohlstedt", + "state_id": 3016, + "state_code": "HH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69282000", + "longitude": "10.13117000" + }, + { + "id": "23748", + "name": "Aßlar", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.59163000", + "longitude": "8.46273000" + }, + { + "id": "23540", + "name": "Albshausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54431000", + "longitude": "8.43784000" + }, + { + "id": "23554", + "name": "Alheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.03333000", + "longitude": "9.66667000" + }, + { + "id": "23555", + "name": "Allendorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02995000", + "longitude": "8.67232000" + }, + { + "id": "23556", + "name": "Allendorf an der Lahn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55109000", + "longitude": "8.62008000" + }, + { + "id": "23567", + "name": "Alsbach-Hähnlein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.73861000", + "longitude": "8.59583000" + }, + { + "id": "23571", + "name": "Alsfeld", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75185000", + "longitude": "9.27082000" + }, + { + "id": "23588", + "name": "Alten Buseck", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62218000", + "longitude": "8.75322000" + }, + { + "id": "23613", + "name": "Altenstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.28747000", + "longitude": "8.94373000" + }, + { + "id": "23652", + "name": "Amöneburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.79595000", + "longitude": "8.92330000" + }, + { + "id": "23753", + "name": "Babenhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96519000", + "longitude": "8.95129000" + }, + { + "id": "23762", + "name": "Bad Arolsen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.37982000", + "longitude": "9.01445000" + }, + { + "id": "23780", + "name": "Bad Camberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.29695000", + "longitude": "8.26896000" + }, + { + "id": "23791", + "name": "Bad Endbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75000000", + "longitude": "8.50000000" + }, + { + "id": "23806", + "name": "Bad Hersfeld", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87197000", + "longitude": "9.70891000" + }, + { + "id": "23808", + "name": "Bad Homburg vor der Höhe", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.22683000", + "longitude": "8.61816000" + }, + { + "id": "23812", + "name": "Bad Karlshafen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.64263000", + "longitude": "9.45477000" + }, + { + "id": "23818", + "name": "Bad König", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74320000", + "longitude": "9.00750000" + }, + { + "id": "23840", + "name": "Bad Nauheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.36463000", + "longitude": "8.73859000" + }, + { + "id": "23846", + "name": "Bad Orb", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.22788000", + "longitude": "9.34782000" + }, + { + "id": "23856", + "name": "Bad Salzschlirf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62388000", + "longitude": "9.50815000" + }, + { + "id": "23864", + "name": "Bad Schwalbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14196000", + "longitude": "8.06964000" + }, + { + "id": "23867", + "name": "Bad Soden am Taunus", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14080000", + "longitude": "8.50449000" + }, + { + "id": "23868", + "name": "Bad Soden-Salmünster", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.27574000", + "longitude": "9.36705000" + }, + { + "id": "23869", + "name": "Bad Sooden-Allendorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.27092000", + "longitude": "9.97483000" + }, + { + "id": "23880", + "name": "Bad Vilbel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17866000", + "longitude": "8.73756000" + }, + { + "id": "23884", + "name": "Bad Wildungen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11963000", + "longitude": "9.12475000" + }, + { + "id": "23956", + "name": "Battenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01391000", + "longitude": "8.64603000" + }, + { + "id": "23961", + "name": "Baunatal", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25182000", + "longitude": "9.40747000" + }, + { + "id": "24494", + "name": "Büdingen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.29013000", + "longitude": "9.11140000" + }, + { + "id": "24504", + "name": "Bürstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64266000", + "longitude": "8.45936000" + }, + { + "id": "24507", + "name": "Büttelborn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90333000", + "longitude": "8.52333000" + }, + { + "id": "23971", + "name": "Bebra", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97445000", + "longitude": "9.79562000" + }, + { + "id": "23984", + "name": "Beerfelden", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56858000", + "longitude": "8.97444000" + }, + { + "id": "24019", + "name": "Bensheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68369000", + "longitude": "8.61839000" + }, + { + "id": "24074", + "name": "Berstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42606000", + "longitude": "8.86621000" + }, + { + "id": "24086", + "name": "Beuern", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62745000", + "longitude": "8.82108000" + }, + { + "id": "24098", + "name": "Biblis", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.69167000", + "longitude": "8.45861000" + }, + { + "id": "24101", + "name": "Bickenbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75917000", + "longitude": "8.61750000" + }, + { + "id": "24104", + "name": "Biebesheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78088000", + "longitude": "8.46696000" + }, + { + "id": "24105", + "name": "Biedenkopf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91125000", + "longitude": "8.53016000" + }, + { + "id": "24133", + "name": "Birkenau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56250000", + "longitude": "8.70694000" + }, + { + "id": "24141", + "name": "Birstein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35000000", + "longitude": "9.30000000" + }, + { + "id": "24144", + "name": "Bischoffen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70000000", + "longitude": "8.45000000" + }, + { + "id": "24147", + "name": "Bischofsheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.99389000", + "longitude": "8.36722000" + }, + { + "id": "24245", + "name": "Borken", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04501000", + "longitude": "9.28440000" + }, + { + "id": "24287", + "name": "Braunfels", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51545000", + "longitude": "8.38918000" + }, + { + "id": "24300", + "name": "Breidenbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88734000", + "longitude": "8.45748000" + }, + { + "id": "24304", + "name": "Breitenbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95655000", + "longitude": "9.78285000" + }, + { + "id": "24315", + "name": "Breitscheid", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68507000", + "longitude": "8.19120000" + }, + { + "id": "24324", + "name": "Brensbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77389000", + "longitude": "8.88444000" + }, + { + "id": "24328", + "name": "Breuna", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41575000", + "longitude": "9.18500000" + }, + { + "id": "24346", + "name": "Bromskirchen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09363000", + "longitude": "8.62640000" + }, + { + "id": "24349", + "name": "Bruchköbel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17853000", + "longitude": "8.92315000" + }, + { + "id": "24419", + "name": "Burghaun", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69684000", + "longitude": "9.72453000" + }, + { + "id": "24433", + "name": "Burgsolms", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54191000", + "longitude": "8.40411000" + }, + { + "id": "24455", + "name": "Butzbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43395000", + "longitude": "8.67122000" + }, + { + "id": "24516", + "name": "Calden", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40943000", + "longitude": "9.40189000" + }, + { + "id": "24571", + "name": "Cölbe", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85098000", + "longitude": "8.78092000" + }, + { + "id": "24553", + "name": "Cornberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04160000", + "longitude": "9.86051000" + }, + { + "id": "24597", + "name": "Darmstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87167000", + "longitude": "8.65027000" + }, + { + "id": "24612", + "name": "Dehrn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42049000", + "longitude": "8.09846000" + }, + { + "id": "24665", + "name": "Dieburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89738000", + "longitude": "8.84613000" + }, + { + "id": "24686", + "name": "Dietzenbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00976000", + "longitude": "8.77783000" + }, + { + "id": "24689", + "name": "Dillenburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74114000", + "longitude": "8.28699000" + }, + { + "id": "24700", + "name": "Dipperz", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54333000", + "longitude": "9.79586000" + }, + { + "id": "24760", + "name": "Dreieich", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01997000", + "longitude": "8.69611000" + }, + { + "id": "24769", + "name": "Driedorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63333000", + "longitude": "8.18333000" + }, + { + "id": "24847", + "name": "Echzell", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38888000", + "longitude": "8.88605000" + }, + { + "id": "24866", + "name": "Egelsbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96792000", + "longitude": "8.66341000" + }, + { + "id": "24894", + "name": "Ehringshausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60000000", + "longitude": "8.38333000" + }, + { + "id": "24903", + "name": "Eichenzell", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49536000", + "longitude": "9.69672000" + }, + { + "id": "24921", + "name": "Einhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.67667000", + "longitude": "8.54833000" + }, + { + "id": "24936", + "name": "Eiterfeld", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76667000", + "longitude": "9.80000000" + }, + { + "id": "24976", + "name": "Eltville", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.02858000", + "longitude": "8.11754000" + }, + { + "id": "24978", + "name": "Elz", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41667000", + "longitude": "8.03333000" + }, + { + "id": "25023", + "name": "Eppertshausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95056000", + "longitude": "8.85389000" + }, + { + "id": "25026", + "name": "Eppstein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14277000", + "longitude": "8.39231000" + }, + { + "id": "25027", + "name": "Erbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66148000", + "longitude": "8.99402000" + }, + { + "id": "25060", + "name": "Erlensee", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16304000", + "longitude": "8.97823000" + }, + { + "id": "25073", + "name": "Erzhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95528000", + "longitude": "8.64750000" + }, + { + "id": "25076", + "name": "Eschborn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14328000", + "longitude": "8.57111000" + }, + { + "id": "25084", + "name": "Eschwege", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18386000", + "longitude": "10.05329000" + }, + { + "id": "25090", + "name": "Espenau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39664000", + "longitude": "9.47021000" + }, + { + "id": "25336", + "name": "Fürth", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65083000", + "longitude": "8.78472000" + }, + { + "id": "25162", + "name": "Felsberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13763000", + "longitude": "9.42139000" + }, + { + "id": "25200", + "name": "Flörsheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01311000", + "longitude": "8.42779000" + }, + { + "id": "25191", + "name": "Flieden", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42389000", + "longitude": "9.56660000" + }, + { + "id": "25196", + "name": "Florstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31667000", + "longitude": "8.86667000" + }, + { + "id": "25212", + "name": "Frankenau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09269000", + "longitude": "8.93447000" + }, + { + "id": "25213", + "name": "Frankenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05890000", + "longitude": "8.80077000" + }, + { + "id": "25222", + "name": "Frankfurt am Main", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.11552000", + "longitude": "8.68417000" + }, + { + "id": "25310", + "name": "Fränkisch-Crumbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74611000", + "longitude": "8.85861000" + }, + { + "id": "25244", + "name": "Freiensteinau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42509000", + "longitude": "9.40267000" + }, + { + "id": "25271", + "name": "Friedberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33739000", + "longitude": "8.75591000" + }, + { + "id": "25279", + "name": "Friedewald", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88333000", + "longitude": "9.86667000" + }, + { + "id": "25286", + "name": "Friedrichsdorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.24962000", + "longitude": "8.64281000" + }, + { + "id": "25295", + "name": "Frielendorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97073000", + "longitude": "9.32269000" + }, + { + "id": "25303", + "name": "Fritzlar", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13181000", + "longitude": "9.27557000" + }, + { + "id": "25306", + "name": "Fronhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70000000", + "longitude": "8.70000000" + }, + { + "id": "25315", + "name": "Fulda", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55162000", + "longitude": "9.67518000" + }, + { + "id": "25316", + "name": "Fuldatal", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38333000", + "longitude": "9.56667000" + }, + { + "id": "25352", + "name": "Gallus", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10038000", + "longitude": "8.62950000" + }, + { + "id": "25388", + "name": "Gedern", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42482000", + "longitude": "9.19840000" + }, + { + "id": "25403", + "name": "Geisenheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98470000", + "longitude": "7.96835000" + }, + { + "id": "25415", + "name": "Gelnhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20164000", + "longitude": "9.18742000" + }, + { + "id": "25424", + "name": "Gemünden an der Wohra", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97401000", + "longitude": "8.96946000" + }, + { + "id": "25450", + "name": "Gernsheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75305000", + "longitude": "8.48859000" + }, + { + "id": "25459", + "name": "Gersfeld", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45138000", + "longitude": "9.91422000" + }, + { + "id": "25487", + "name": "Gießen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58727000", + "longitude": "8.67554000" + }, + { + "id": "25491", + "name": "Gilserberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95000000", + "longitude": "9.06667000" + }, + { + "id": "25496", + "name": "Ginsheim-Gustavsburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97110000", + "longitude": "8.34532000" + }, + { + "id": "25500", + "name": "Gladenbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76847000", + "longitude": "8.58085000" + }, + { + "id": "25505", + "name": "Glashütten", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.21667000", + "longitude": "8.40000000" + }, + { + "id": "25509", + "name": "Glauburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31667000", + "longitude": "9.00000000" + }, + { + "id": "25726", + "name": "Grävenwiesbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39024000", + "longitude": "8.45690000" + }, + { + "id": "25736", + "name": "Grünberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.59403000", + "longitude": "8.95866000" + }, + { + "id": "25583", + "name": "Grebenau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74242000", + "longitude": "9.47307000" + }, + { + "id": "25584", + "name": "Grebenhain", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48924000", + "longitude": "9.33855000" + }, + { + "id": "25585", + "name": "Grebenstein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44648000", + "longitude": "9.41250000" + }, + { + "id": "25591", + "name": "Greifenstein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61667000", + "longitude": "8.30000000" + }, + { + "id": "25608", + "name": "Griesheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86085000", + "longitude": "8.57250000" + }, + { + "id": "25643", + "name": "Groß-Bieberau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80064000", + "longitude": "8.82430000" + }, + { + "id": "25644", + "name": "Groß-Gerau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92139000", + "longitude": "8.48255000" + }, + { + "id": "25645", + "name": "Groß-Rohrheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72111000", + "longitude": "8.48278000" + }, + { + "id": "25646", + "name": "Groß-Umstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86899000", + "longitude": "8.93210000" + }, + { + "id": "25647", + "name": "Groß-Zimmern", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87410000", + "longitude": "8.82898000" + }, + { + "id": "25649", + "name": "Großalmerode", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25858000", + "longitude": "9.78450000" + }, + { + "id": "25666", + "name": "Großenlüder", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.59250000", + "longitude": "9.54231000" + }, + { + "id": "25686", + "name": "Großkrotzenburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08333000", + "longitude": "8.98333000" + }, + { + "id": "25749", + "name": "Gudensberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17706000", + "longitude": "9.36748000" + }, + { + "id": "25771", + "name": "Guxhagen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20000000", + "longitude": "9.48333000" + }, + { + "id": "25812", + "name": "Hadamar", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.44593000", + "longitude": "8.04253000" + }, + { + "id": "25830", + "name": "Haiger", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74162000", + "longitude": "8.20778000" + }, + { + "id": "25834", + "name": "Hain-Gründau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.24284000", + "longitude": "9.14287000" + }, + { + "id": "25836", + "name": "Haina", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02774000", + "longitude": "8.97441000" + }, + { + "id": "25879", + "name": "Hammersbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.21667000", + "longitude": "8.98333000" + }, + { + "id": "25882", + "name": "Hanau am Main", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.13423000", + "longitude": "8.91418000" + }, + { + "id": "25938", + "name": "Hattersheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.07854000", + "longitude": "8.47552000" + }, + { + "id": "25944", + "name": "Hatzfeld", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99334000", + "longitude": "8.54570000" + }, + { + "id": "26301", + "name": "Höchst im Odenwald", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79972000", + "longitude": "8.99944000" + }, + { + "id": "26314", + "name": "Höingen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71910000", + "longitude": "8.91961000" + }, + { + "id": "26319", + "name": "Hörnsheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51828000", + "longitude": "8.62976000" + }, + { + "id": "26337", + "name": "Hünfeld", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67966000", + "longitude": "9.76727000" + }, + { + "id": "26034", + "name": "Helsa", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25981000", + "longitude": "9.68872000" + }, + { + "id": "26055", + "name": "Heppenheim an der Bergstrasse", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64145000", + "longitude": "8.63206000" + }, + { + "id": "26059", + "name": "Herborn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68135000", + "longitude": "8.30369000" + }, + { + "id": "26062", + "name": "Herbstein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56105000", + "longitude": "9.34592000" + }, + { + "id": "26072", + "name": "Heringen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88798000", + "longitude": "10.00717000" + }, + { + "id": "26074", + "name": "Herleshausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00629000", + "longitude": "10.16731000" + }, + { + "id": "26107", + "name": "Hessisch Lichtenau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19954000", + "longitude": "9.71857000" + }, + { + "id": "26118", + "name": "Heuchelheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58333000", + "longitude": "8.63333000" + }, + { + "id": "26123", + "name": "Heusenstamm", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.05553000", + "longitude": "8.80076000" + }, + { + "id": "26136", + "name": "Hilders", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57190000", + "longitude": "10.00297000" + }, + { + "id": "26168", + "name": "Hirschhorn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44566000", + "longitude": "8.89594000" + }, + { + "id": "26169", + "name": "Hirzenhain", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40000000", + "longitude": "9.13333000" + }, + { + "id": "26176", + "name": "Hochheim am Main", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01436000", + "longitude": "8.35218000" + }, + { + "id": "26186", + "name": "Hofbieber", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58629000", + "longitude": "9.83534000" + }, + { + "id": "26187", + "name": "Hofgeismar", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49607000", + "longitude": "9.38500000" + }, + { + "id": "26188", + "name": "Hofheim am Taunus", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09019000", + "longitude": "8.44930000" + }, + { + "id": "26251", + "name": "Homberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73108000", + "longitude": "8.99644000" + }, + { + "id": "26275", + "name": "Hosenfeld", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50502000", + "longitude": "9.47966000" + }, + { + "id": "26289", + "name": "Hungen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.47368000", + "longitude": "8.89326000" + }, + { + "id": "26351", + "name": "Idstein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.21773000", + "longitude": "8.26679000" + }, + { + "id": "26381", + "name": "Immenhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.42763000", + "longitude": "9.48017000" + }, + { + "id": "26441", + "name": "Jesberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00000000", + "longitude": "9.15000000" + }, + { + "id": "26513", + "name": "Karben", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23019000", + "longitude": "8.77155000" + }, + { + "id": "26531", + "name": "Kassel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31667000", + "longitude": "9.50000000" + }, + { + "id": "26544", + "name": "Kaufungen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28111000", + "longitude": "9.61861000" + }, + { + "id": "26836", + "name": "Königstein im Taunus", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17943000", + "longitude": "8.47132000" + }, + { + "id": "26843", + "name": "Körle", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16667000", + "longitude": "9.51667000" + }, + { + "id": "26855", + "name": "Künzell", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54420000", + "longitude": "9.71792000" + }, + { + "id": "26550", + "name": "Kefenrod", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.34475000", + "longitude": "9.21141000" + }, + { + "id": "26557", + "name": "Kelkheim (Taunus)", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.13703000", + "longitude": "8.45020000" + }, + { + "id": "26562", + "name": "Kelsterbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06135000", + "longitude": "8.52916000" + }, + { + "id": "26582", + "name": "Kiedrich", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03965000", + "longitude": "8.08531000" + }, + { + "id": "26615", + "name": "Kirchhain", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82720000", + "longitude": "8.92806000" + }, + { + "id": "26620", + "name": "Kirchheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83333000", + "longitude": "9.56667000" + }, + { + "id": "26646", + "name": "Kirtorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76942000", + "longitude": "9.10389000" + }, + { + "id": "26722", + "name": "Korbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.27561000", + "longitude": "8.87300000" + }, + { + "id": "26763", + "name": "Kriftel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08408000", + "longitude": "8.46977000" + }, + { + "id": "26769", + "name": "Kronberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.18424000", + "longitude": "8.52320000" + }, + { + "id": "26770", + "name": "Kronberg Tal", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17929000", + "longitude": "8.50370000" + }, + { + "id": "26885", + "name": "Lampertheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59786000", + "longitude": "8.47250000" + }, + { + "id": "26902", + "name": "Langen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98955000", + "longitude": "8.66852000" + }, + { + "id": "26928", + "name": "Langenselbold", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17657000", + "longitude": "9.04003000" + }, + { + "id": "26938", + "name": "Langgöns", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50000000", + "longitude": "8.66667000" + }, + { + "id": "26955", + "name": "Laubach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54196000", + "longitude": "8.99034000" + }, + { + "id": "26973", + "name": "Laufdorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51605000", + "longitude": "8.45982000" + }, + { + "id": "26984", + "name": "Lauterbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63558000", + "longitude": "9.39777000" + }, + { + "id": "26988", + "name": "Lautertal", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58333000", + "longitude": "9.28333000" + }, + { + "id": "27194", + "name": "Löhnberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51299000", + "longitude": "8.27202000" + }, + { + "id": "27224", + "name": "Lützelbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74233000", + "longitude": "8.76687000" + }, + { + "id": "27061", + "name": "Leun", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55129000", + "longitude": "8.35836000" + }, + { + "id": "27073", + "name": "Lich", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.52085000", + "longitude": "8.81567000" + }, + { + "id": "27086", + "name": "Liebenau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49699000", + "longitude": "9.28207000" + }, + { + "id": "27092", + "name": "Liederbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.12221000", + "longitude": "8.49397000" + }, + { + "id": "27099", + "name": "Limburg an der Lahn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38360000", + "longitude": "8.05030000" + }, + { + "id": "27108", + "name": "Lindenfels", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68369000", + "longitude": "8.78151000" + }, + { + "id": "27132", + "name": "Lohfelden", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26667000", + "longitude": "9.53333000" + }, + { + "id": "27137", + "name": "Lohra", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73333000", + "longitude": "8.63333000" + }, + { + "id": "27141", + "name": "Lollar", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64652000", + "longitude": "8.70495000" + }, + { + "id": "27149", + "name": "Lorsch", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65000000", + "longitude": "8.56667000" + }, + { + "id": "27243", + "name": "Maintal", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15000000", + "longitude": "8.83333000" + }, + { + "id": "27258", + "name": "Malsfeld", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09083000", + "longitude": "9.53889000" + }, + { + "id": "27270", + "name": "Marburg an der Lahn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80904000", + "longitude": "8.77069000" + }, + { + "id": "27329", + "name": "Martinhagen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28688000", + "longitude": "9.28611000" + }, + { + "id": "27576", + "name": "Mörfelden-Walldorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.99472000", + "longitude": "8.58361000" + }, + { + "id": "27577", + "name": "Mörlenbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59917000", + "longitude": "8.73472000" + }, + { + "id": "27601", + "name": "Mühlheim am Main", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.11667000", + "longitude": "8.83333000" + }, + { + "id": "27612", + "name": "Münchhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96081000", + "longitude": "8.71837000" + }, + { + "id": "27620", + "name": "Münster", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92278000", + "longitude": "8.86778000" + }, + { + "id": "27628", + "name": "Münzenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45346000", + "longitude": "8.77430000" + }, + { + "id": "27389", + "name": "Melbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37908000", + "longitude": "8.80926000" + }, + { + "id": "27400", + "name": "Melsungen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13029000", + "longitude": "9.55236000" + }, + { + "id": "27409", + "name": "Mengerskirchen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56392000", + "longitude": "8.15555000" + }, + { + "id": "27417", + "name": "Merenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50707000", + "longitude": "8.19194000" + }, + { + "id": "27419", + "name": "Merkenbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65626000", + "longitude": "8.29513000" + }, + { + "id": "27434", + "name": "Messel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93833000", + "longitude": "8.74056000" + }, + { + "id": "27455", + "name": "Michelstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.67569000", + "longitude": "9.00373000" + }, + { + "id": "27487", + "name": "Mittenaar", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70000000", + "longitude": "8.38333000" + }, + { + "id": "27650", + "name": "Naumburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24816000", + "longitude": "9.16569000" + }, + { + "id": "27661", + "name": "Neckarsteinach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40735000", + "longitude": "8.84342000" + }, + { + "id": "27675", + "name": "Nentershausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01667000", + "longitude": "9.93333000" + }, + { + "id": "27688", + "name": "Neu Isenburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04832000", + "longitude": "8.69406000" + }, + { + "id": "27692", + "name": "Neu-Anspach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31667000", + "longitude": "8.50000000" + }, + { + "id": "27729", + "name": "Neuental", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00000000", + "longitude": "9.21667000" + }, + { + "id": "27748", + "name": "Neuhof", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45313000", + "longitude": "9.61750000" + }, + { + "id": "27761", + "name": "Neukirchen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86906000", + "longitude": "9.34655000" + }, + { + "id": "27795", + "name": "Neustadt (Hessen)", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85000000", + "longitude": "9.11667000" + }, + { + "id": "27821", + "name": "Nidda", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41330000", + "longitude": "9.00638000" + }, + { + "id": "27822", + "name": "Nidderau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23805000", + "longitude": "8.86704000" + }, + { + "id": "27825", + "name": "Niedenstein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23342000", + "longitude": "9.31029000" + }, + { + "id": "27826", + "name": "Nieder-Gründau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.21097000", + "longitude": "9.10801000" + }, + { + "id": "27832", + "name": "Niederaula", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80000000", + "longitude": "9.60000000" + }, + { + "id": "27834", + "name": "Niederbiel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55505000", + "longitude": "8.39845000" + }, + { + "id": "27838", + "name": "Niederdorfelden", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.19415000", + "longitude": "8.80005000" + }, + { + "id": "27853", + "name": "Niederklein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.79400000", + "longitude": "8.99694000" + }, + { + "id": "27864", + "name": "Niedernhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16307000", + "longitude": "8.31338000" + }, + { + "id": "27867", + "name": "Niederrad", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08309000", + "longitude": "8.62852000" + }, + { + "id": "27958", + "name": "Ober-Mörlen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37350000", + "longitude": "8.69087000" + }, + { + "id": "27960", + "name": "Ober-Ramstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83078000", + "longitude": "8.74887000" + }, + { + "id": "27965", + "name": "Oberaula", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85000000", + "longitude": "9.46667000" + }, + { + "id": "27967", + "name": "Oberbiel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55320000", + "longitude": "8.42797000" + }, + { + "id": "28050", + "name": "Obertshausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.07139000", + "longitude": "8.85123000" + }, + { + "id": "28051", + "name": "Oberursel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20731000", + "longitude": "8.57747000" + }, + { + "id": "28086", + "name": "Offenbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10061000", + "longitude": "8.76647000" + }, + { + "id": "28130", + "name": "Ortenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35584000", + "longitude": "9.05602000" + }, + { + "id": "28196", + "name": "Ottrau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80599000", + "longitude": "9.38575000" + }, + { + "id": "28295", + "name": "Pfungstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80557000", + "longitude": "8.60307000" + }, + { + "id": "28297", + "name": "Philippsthal", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83948000", + "longitude": "10.00906000" + }, + { + "id": "28353", + "name": "Poppenhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48793000", + "longitude": "9.86795000" + }, + { + "id": "28437", + "name": "Rabenau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67753000", + "longitude": "8.86425000" + }, + { + "id": "28475", + "name": "Ranstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35739000", + "longitude": "8.98375000" + }, + { + "id": "28478", + "name": "Rasdorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71667000", + "longitude": "9.90000000" + }, + { + "id": "28496", + "name": "Raunheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01320000", + "longitude": "8.45253000" + }, + { + "id": "28497", + "name": "Rauschenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88329000", + "longitude": "8.91864000" + }, + { + "id": "28801", + "name": "Rüdesheim am Rhein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97890000", + "longitude": "7.92442000" + }, + { + "id": "28809", + "name": "Rüsselsheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98955000", + "longitude": "8.42251000" + }, + { + "id": "28517", + "name": "Regierungsbezirk Darmstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00000000", + "longitude": "8.75000000" + }, + { + "id": "28519", + "name": "Regierungsbezirk Gießen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69806000", + "longitude": "8.76861000" + }, + { + "id": "28520", + "name": "Regierungsbezirk Kassel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08333000", + "longitude": "9.40000000" + }, + { + "id": "28537", + "name": "Reichelsheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71211000", + "longitude": "8.83896000" + }, + { + "id": "28558", + "name": "Reinhardshausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11166000", + "longitude": "9.07514000" + }, + { + "id": "28561", + "name": "Reinheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82923000", + "longitude": "8.83572000" + }, + { + "id": "28569", + "name": "Reiskirchen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60000000", + "longitude": "8.83333000" + }, + { + "id": "28637", + "name": "Riedstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83411000", + "longitude": "8.49621000" + }, + { + "id": "28655", + "name": "Rimbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62500000", + "longitude": "8.76306000" + }, + { + "id": "28741", + "name": "Roßdorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85972000", + "longitude": "8.76167000" + }, + { + "id": "28671", + "name": "Rockenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43050000", + "longitude": "8.73688000" + }, + { + "id": "28676", + "name": "Rodenbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15000000", + "longitude": "9.03333000" + }, + { + "id": "28679", + "name": "Rodgau", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.02627000", + "longitude": "8.88588000" + }, + { + "id": "28697", + "name": "Romrod", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71341000", + "longitude": "9.22010000" + }, + { + "id": "28701", + "name": "Ronshausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95000000", + "longitude": "9.85000000" + }, + { + "id": "28702", + "name": "Rosbach vor der Höhe", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30332000", + "longitude": "8.68976000" + }, + { + "id": "28709", + "name": "Rosenthal", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97439000", + "longitude": "8.86736000" + }, + { + "id": "28719", + "name": "Rotenburg an der Fulda", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99556000", + "longitude": "9.72838000" + }, + { + "id": "28722", + "name": "Rothenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49917000", + "longitude": "8.91917000" + }, + { + "id": "28764", + "name": "Runkel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40574000", + "longitude": "8.15457000" + }, + { + "id": "28823", + "name": "Sachsenhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24338000", + "longitude": "9.00973000" + }, + { + "id": "29490", + "name": "Södel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39382000", + "longitude": "8.80474000" + }, + { + "id": "28901", + "name": "Schaafheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92417000", + "longitude": "9.00944000" + }, + { + "id": "29099", + "name": "Schöffengrund", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49345000", + "longitude": "8.47183000" + }, + { + "id": "28931", + "name": "Schenklengsfeld", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81667000", + "longitude": "9.85000000" + }, + { + "id": "28963", + "name": "Schlangenbad", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09322000", + "longitude": "8.10312000" + }, + { + "id": "28984", + "name": "Schlüchtern", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.34891000", + "longitude": "9.52532000" + }, + { + "id": "28980", + "name": "Schlitz", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67416000", + "longitude": "9.56102000" + }, + { + "id": "28997", + "name": "Schmitten", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26667000", + "longitude": "8.45000000" + }, + { + "id": "29027", + "name": "Schotten", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50346000", + "longitude": "9.12516000" + }, + { + "id": "29030", + "name": "Schrecksbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83333000", + "longitude": "9.28333000" + }, + { + "id": "29050", + "name": "Schwalbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49672000", + "longitude": "8.46943000" + }, + { + "id": "29051", + "name": "Schwalbach am Taunus", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15000000", + "longitude": "8.53333000" + }, + { + "id": "29053", + "name": "Schwalmstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93333000", + "longitude": "9.21667000" + }, + { + "id": "29055", + "name": "Schwalmtal", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68333000", + "longitude": "9.21667000" + }, + { + "id": "29071", + "name": "Schwarzenborn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90977000", + "longitude": "9.44658000" + }, + { + "id": "29155", + "name": "Seeheim-Jugenheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76500000", + "longitude": "8.65194000" + }, + { + "id": "29179", + "name": "Seligenstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04320000", + "longitude": "8.97394000" + }, + { + "id": "29185", + "name": "Selters", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51681000", + "longitude": "8.28953000" + }, + { + "id": "29243", + "name": "Sinn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65000000", + "longitude": "8.33333000" + }, + { + "id": "29260", + "name": "Solms", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53620000", + "longitude": "8.40704000" + }, + { + "id": "29279", + "name": "Sontra", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.07171000", + "longitude": "9.93558000" + }, + { + "id": "29287", + "name": "Spangenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11644000", + "longitude": "9.66270000" + }, + { + "id": "29319", + "name": "Stadtallendorf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82261000", + "longitude": "9.01294000" + }, + { + "id": "29346", + "name": "Staufenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66197000", + "longitude": "8.73158000" + }, + { + "id": "29350", + "name": "Steeden", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41539000", + "longitude": "8.12748000" + }, + { + "id": "29362", + "name": "Steinau an der Straße", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31401000", + "longitude": "9.46335000" + }, + { + "id": "29365", + "name": "Steinbach am Taunus", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16774000", + "longitude": "8.57278000" + }, + { + "id": "29414", + "name": "Stockstadt am Rhein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80944000", + "longitude": "8.47278000" + }, + { + "id": "29468", + "name": "Sulzbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.13396000", + "longitude": "8.52797000" + }, + { + "id": "29520", + "name": "Tann", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64284000", + "longitude": "10.02385000" + }, + { + "id": "29537", + "name": "Taunusstein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14993000", + "longitude": "8.15206000" + }, + { + "id": "29653", + "name": "Trebur", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92639000", + "longitude": "8.40732000" + }, + { + "id": "29660", + "name": "Trendelburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57408000", + "longitude": "9.42095000" + }, + { + "id": "29715", + "name": "Udenhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46385000", + "longitude": "9.46335000" + }, + { + "id": "29739", + "name": "Ulrichstein", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57550000", + "longitude": "9.19272000" + }, + { + "id": "29751", + "name": "Unter-Abtsteinach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52711000", + "longitude": "8.78679000" + }, + { + "id": "29798", + "name": "Usingen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33554000", + "longitude": "8.53688000" + }, + { + "id": "29887", + "name": "Vöhl", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20565000", + "longitude": "8.94510000" + }, + { + "id": "29829", + "name": "Vellmar", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35806000", + "longitude": "9.47974000" + }, + { + "id": "29848", + "name": "Viernheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54033000", + "longitude": "8.57820000" + }, + { + "id": "29854", + "name": "Villmar", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39287000", + "longitude": "8.19310000" + }, + { + "id": "29875", + "name": "Volkmarsen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40895000", + "longitude": "9.11814000" + }, + { + "id": "29899", + "name": "Wabern", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10000000", + "longitude": "9.35000000" + }, + { + "id": "29933", + "name": "Wald-Michelbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.57000000", + "longitude": "8.83167000" + }, + { + "id": "29938", + "name": "Waldbrunn", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51875000", + "longitude": "8.10812000" + }, + { + "id": "29943", + "name": "Waldeck", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20618000", + "longitude": "9.06286000" + }, + { + "id": "29944", + "name": "Waldems", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25000000", + "longitude": "8.33333000" + }, + { + "id": "29953", + "name": "Waldkappel", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14462000", + "longitude": "9.87695000" + }, + { + "id": "29988", + "name": "Walluf", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.04003000", + "longitude": "8.15545000" + }, + { + "id": "30001", + "name": "Wanfried", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18207000", + "longitude": "10.17283000" + }, + { + "id": "30436", + "name": "Wächtersbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25511000", + "longitude": "9.29564000" + }, + { + "id": "30439", + "name": "Wölfersheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40000000", + "longitude": "8.81667000" + }, + { + "id": "30062", + "name": "Wehrheim", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30000000", + "longitude": "8.56667000" + }, + { + "id": "30085", + "name": "Weilburg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48438000", + "longitude": "8.26249000" + }, + { + "id": "30094", + "name": "Weilmünster", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43143000", + "longitude": "8.37673000" + }, + { + "id": "30097", + "name": "Weinbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43843000", + "longitude": "8.29133000" + }, + { + "id": "30118", + "name": "Weiterstadt", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90390000", + "longitude": "8.58874000" + }, + { + "id": "30224", + "name": "Wetter", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90254000", + "longitude": "8.72366000" + }, + { + "id": "30230", + "name": "Wetzlar", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56109000", + "longitude": "8.50495000" + }, + { + "id": "30254", + "name": "Wiesbaden", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08258000", + "longitude": "8.24932000" + }, + { + "id": "30295", + "name": "Willingen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29418000", + "longitude": "8.60910000" + }, + { + "id": "30296", + "name": "Willingshausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85000000", + "longitude": "9.20000000" + }, + { + "id": "30367", + "name": "Witzenhausen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.34103000", + "longitude": "9.85540000" + }, + { + "id": "30372", + "name": "Wohnbach", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42864000", + "longitude": "8.82923000" + }, + { + "id": "30382", + "name": "Wolfhagen", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.32611000", + "longitude": "9.17015000" + }, + { + "id": "30503", + "name": "Zierenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36948000", + "longitude": "9.30164000" + }, + { + "id": "30537", + "name": "Zwingenberg", + "state_id": 3018, + "state_code": "HE", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72389000", + "longitude": "8.61084000" + }, + { + "id": "23465", + "name": "Abbesbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35233000", + "longitude": "10.55649000" + }, + { + "id": "23473", + "name": "Achim", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.01416000", + "longitude": "9.02630000" + }, + { + "id": "23478", + "name": "Adelebsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58272000", + "longitude": "9.75461000" + }, + { + "id": "23479", + "name": "Adelheidsdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56404000", + "longitude": "10.06039000" + }, + { + "id": "23487", + "name": "Adenbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.37984000", + "longitude": "10.45079000" + }, + { + "id": "23488", + "name": "Adendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.28189000", + "longitude": "10.43787000" + }, + { + "id": "23489", + "name": "Adenstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.99852000", + "longitude": "9.93516000" + }, + { + "id": "23494", + "name": "Aerzen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.04953000", + "longitude": "9.25856000" + }, + { + "id": "23497", + "name": "Agathenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56065000", + "longitude": "9.53180000" + }, + { + "id": "23501", + "name": "Ahausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.06667000", + "longitude": "9.31667000" + }, + { + "id": "23503", + "name": "Ahlden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.75968000", + "longitude": "9.55115000" + }, + { + "id": "23505", + "name": "Ahlerstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.40000000", + "longitude": "9.45000000" + }, + { + "id": "23507", + "name": "Ahnsbeck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61071000", + "longitude": "10.28534000" + }, + { + "id": "23508", + "name": "Ahnsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.25466000", + "longitude": "9.10089000" + }, + { + "id": "23515", + "name": "Ahsen-Oetzen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.95868000", + "longitude": "9.07933000" + }, + { + "id": "23549", + "name": "Alfeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.98382000", + "longitude": "9.81989000" + }, + { + "id": "23551", + "name": "Alfhausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50000000", + "longitude": "7.95000000" + }, + { + "id": "23553", + "name": "Algermissen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.25332000", + "longitude": "9.96915000" + }, + { + "id": "23578", + "name": "Alt Wallmoden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.01933000", + "longitude": "10.30294000" + }, + { + "id": "23591", + "name": "Altenau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80113000", + "longitude": "10.44148000" + }, + { + "id": "23609", + "name": "Altenmedingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.13050000", + "longitude": "10.60163000" + }, + { + "id": "23644", + "name": "Amelinghausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.12397000", + "longitude": "10.21274000" + }, + { + "id": "23660", + "name": "Ankum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55000000", + "longitude": "7.88333000" + }, + { + "id": "23669", + "name": "Apelern", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28979000", + "longitude": "9.33580000" + }, + { + "id": "23670", + "name": "Apen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.21667000", + "longitude": "7.80000000" + }, + { + "id": "23671", + "name": "Apensen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.43333000", + "longitude": "9.61667000" + }, + { + "id": "23676", + "name": "Appel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.39060000", + "longitude": "9.74565000" + }, + { + "id": "23691", + "name": "Arpke", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38597000", + "longitude": "10.10047000" + }, + { + "id": "23694", + "name": "Artlenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.37182000", + "longitude": "10.48793000" + }, + { + "id": "23709", + "name": "Asendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.77219000", + "longitude": "9.00489000" + }, + { + "id": "23727", + "name": "Auf der Horst", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41943000", + "longitude": "9.60248000" + }, + { + "id": "23734", + "name": "Auhagen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.39828000", + "longitude": "9.29194000" + }, + { + "id": "23741", + "name": "Aurich", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.46919000", + "longitude": "7.48232000" + }, + { + "id": "23744", + "name": "Axstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.35466000", + "longitude": "8.77485000" + }, + { + "id": "23765", + "name": "Bad Bentheim", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30066000", + "longitude": "7.15763000" + }, + { + "id": "23770", + "name": "Bad Bevensen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.07923000", + "longitude": "10.58129000" + }, + { + "id": "23788", + "name": "Bad Eilsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.24215000", + "longitude": "9.09822000" + }, + { + "id": "23793", + "name": "Bad Essen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31667000", + "longitude": "8.33333000" + }, + { + "id": "23794", + "name": "Bad Fallingbostel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.86641000", + "longitude": "9.69558000" + }, + { + "id": "23800", + "name": "Bad Gandersheim", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.87167000", + "longitude": "10.02537000" + }, + { + "id": "23802", + "name": "Bad Grund", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.81021000", + "longitude": "10.23694000" + }, + { + "id": "23803", + "name": "Bad Harzburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88268000", + "longitude": "10.56157000" + }, + { + "id": "23811", + "name": "Bad Iburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15490000", + "longitude": "8.04216000" + }, + { + "id": "23823", + "name": "Bad Laer", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.10000000", + "longitude": "8.08333000" + }, + { + "id": "23827", + "name": "Bad Lauterberg im Harz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.63272000", + "longitude": "10.47031000" + }, + { + "id": "23837", + "name": "Bad Münder am Deister", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.19551000", + "longitude": "9.46421000" + }, + { + "id": "23841", + "name": "Bad Nenndorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.33703000", + "longitude": "9.37904000" + }, + { + "id": "23848", + "name": "Bad Pyrmont", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.98589000", + "longitude": "9.25246000" + }, + { + "id": "23852", + "name": "Bad Rothenfelde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11667000", + "longitude": "8.16667000" + }, + { + "id": "23854", + "name": "Bad Sachsa", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.59499000", + "longitude": "10.55546000" + }, + { + "id": "23855", + "name": "Bad Salzdetfurth", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.05777000", + "longitude": "10.00580000" + }, + { + "id": "23890", + "name": "Bad Zwischenahn", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.18333000", + "longitude": "8.00000000" + }, + { + "id": "23892", + "name": "Badbergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.63333000", + "longitude": "7.98333000" + }, + { + "id": "23893", + "name": "Baddeckenstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08333000", + "longitude": "10.23333000" + }, + { + "id": "23896", + "name": "Badenhausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76996000", + "longitude": "10.20493000" + }, + { + "id": "23900", + "name": "Bahrdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38587000", + "longitude": "11.00040000" + }, + { + "id": "23901", + "name": "Bahrenborstel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.57009000", + "longitude": "8.80863000" + }, + { + "id": "23908", + "name": "Bakum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.74118000", + "longitude": "8.19546000" + }, + { + "id": "23909", + "name": "Balge", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.71667000", + "longitude": "9.16667000" + }, + { + "id": "23911", + "name": "Balje", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.83333000", + "longitude": "9.13333000" + }, + { + "id": "23922", + "name": "Banteln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.06667000", + "longitude": "9.75000000" + }, + { + "id": "23950", + "name": "Barßel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.16981000", + "longitude": "7.75012000" + }, + { + "id": "23927", + "name": "Bardowick", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.29354000", + "longitude": "10.38811000" + }, + { + "id": "23928", + "name": "Barenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61953000", + "longitude": "8.79999000" + }, + { + "id": "23929", + "name": "Barendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.22896000", + "longitude": "10.52158000" + }, + { + "id": "23931", + "name": "Bargstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.46667000", + "longitude": "9.45000000" + }, + { + "id": "23938", + "name": "Barnstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.71009000", + "longitude": "8.50256000" + }, + { + "id": "23942", + "name": "Barsinghausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30000000", + "longitude": "9.45000000" + }, + { + "id": "23946", + "name": "Barum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.35000000", + "longitude": "10.40000000" + }, + { + "id": "23948", + "name": "Barver", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.62066000", + "longitude": "8.59251000" + }, + { + "id": "23949", + "name": "Barwedel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52192000", + "longitude": "10.77488000" + }, + { + "id": "23951", + "name": "Basdahl", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.44502000", + "longitude": "9.00025000" + }, + { + "id": "23953", + "name": "Bassum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.85059000", + "longitude": "8.72791000" + }, + { + "id": "23964", + "name": "Bawinkel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60000000", + "longitude": "7.40000000" + }, + { + "id": "24477", + "name": "Börßum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.06921000", + "longitude": "10.58431000" + }, + { + "id": "24472", + "name": "Börger", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.91211000", + "longitude": "7.53576000" + }, + { + "id": "24479", + "name": "Bösel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.00000000", + "longitude": "7.95000000" + }, + { + "id": "24482", + "name": "Bötersen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.13333000", + "longitude": "9.31667000" + }, + { + "id": "24490", + "name": "Bückeburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.26065000", + "longitude": "9.04939000" + }, + { + "id": "24491", + "name": "Bücken", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.77876000", + "longitude": "9.13371000" + }, + { + "id": "24492", + "name": "Büddenstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.17035000", + "longitude": "11.01877000" + }, + { + "id": "24499", + "name": "Bühren", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.80629000", + "longitude": "8.21880000" + }, + { + "id": "23976", + "name": "Beckdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.41667000", + "longitude": "9.61667000" + }, + { + "id": "23977", + "name": "Beckedorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35000000", + "longitude": "9.31667000" + }, + { + "id": "23981", + "name": "Beedenbostel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.64288000", + "longitude": "10.25907000" + }, + { + "id": "23988", + "name": "Beesten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43333000", + "longitude": "7.50000000" + }, + { + "id": "23991", + "name": "Bei der Höhne", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.51351000", + "longitude": "9.11191000" + }, + { + "id": "24004", + "name": "Belm", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30000000", + "longitude": "8.13333000" + }, + { + "id": "24007", + "name": "Bendestorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.33583000", + "longitude": "9.96154000" + }, + { + "id": "24031", + "name": "Berge", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.62326000", + "longitude": "7.74550000" + }, + { + "id": "24033", + "name": "Bergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.80837000", + "longitude": "9.96374000" + }, + { + "id": "24036", + "name": "Bergen an der Dumme", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.89109000", + "longitude": "10.95629000" + }, + { + "id": "24073", + "name": "Bersenbrück", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55160000", + "longitude": "7.94836000" + }, + { + "id": "24077", + "name": "Berumbur", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60000000", + "longitude": "7.31667000" + }, + { + "id": "24081", + "name": "Betheln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11431000", + "longitude": "9.79397000" + }, + { + "id": "24084", + "name": "Betzendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.13750000", + "longitude": "10.31273000" + }, + { + "id": "24090", + "name": "Bevenrode", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.34026000", + "longitude": "10.57743000" + }, + { + "id": "24091", + "name": "Bevern", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85826000", + "longitude": "9.49408000" + }, + { + "id": "24092", + "name": "Beverstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.43413000", + "longitude": "8.81915000" + }, + { + "id": "24109", + "name": "Bienenbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.14157000", + "longitude": "10.48679000" + }, + { + "id": "24120", + "name": "Bilshausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62974000", + "longitude": "10.15859000" + }, + { + "id": "24125", + "name": "Binnen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61667000", + "longitude": "9.13333000" + }, + { + "id": "24129", + "name": "Bippen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58333000", + "longitude": "7.73333000" + }, + { + "id": "24155", + "name": "Bispingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.08312000", + "longitude": "9.99772000" + }, + { + "id": "24156", + "name": "Bissendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23333000", + "longitude": "8.16667000" + }, + { + "id": "24175", + "name": "Bleckede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.28972000", + "longitude": "10.73372000" + }, + { + "id": "24179", + "name": "Blender", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.91667000", + "longitude": "9.13333000" + }, + { + "id": "24180", + "name": "Bliedersdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48333000", + "longitude": "9.56667000" + }, + { + "id": "24185", + "name": "Blomberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57678000", + "longitude": "7.55824000" + }, + { + "id": "24198", + "name": "Bockenem", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.00993000", + "longitude": "10.13197000" + }, + { + "id": "24200", + "name": "Bockhorn", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.40000000", + "longitude": "8.01667000" + }, + { + "id": "24202", + "name": "Bockhorst", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.03296000", + "longitude": "7.57576000" + }, + { + "id": "24204", + "name": "Bodenfelde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.64044000", + "longitude": "9.55569000" + }, + { + "id": "24208", + "name": "Bodenwerder", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.97156000", + "longitude": "9.51931000" + }, + { + "id": "24213", + "name": "Boffzen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.75000000", + "longitude": "9.38333000" + }, + { + "id": "24216", + "name": "Bohmte", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.36667000", + "longitude": "8.31667000" + }, + { + "id": "24219", + "name": "Bokel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.39326000", + "longitude": "8.76803000" + }, + { + "id": "24228", + "name": "Bomlitz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.90000000", + "longitude": "9.65000000" + }, + { + "id": "24247", + "name": "Borkum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.58094000", + "longitude": "6.69153000" + }, + { + "id": "24258", + "name": "Borstel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.67034000", + "longitude": "8.96896000" + }, + { + "id": "24262", + "name": "Bothel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.06667000", + "longitude": "9.50000000" + }, + { + "id": "24266", + "name": "Bovenden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58836000", + "longitude": "9.92220000" + }, + { + "id": "24270", + "name": "Brackel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.29974000", + "longitude": "10.04860000" + }, + { + "id": "24273", + "name": "Brake (Unterweser)", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.33333000", + "longitude": "8.48333000" + }, + { + "id": "24275", + "name": "Bramsche", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40881000", + "longitude": "7.97288000" + }, + { + "id": "24276", + "name": "Bramstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.36603000", + "longitude": "8.69005000" + }, + { + "id": "24288", + "name": "Braunlage", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.72651000", + "longitude": "10.61090000" + }, + { + "id": "24291", + "name": "Braunschweig", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.26594000", + "longitude": "10.52673000" + }, + { + "id": "24370", + "name": "Brüggen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.04250000", + "longitude": "9.77450000" + }, + { + "id": "24294", + "name": "Breddorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.29262000", + "longitude": "9.08089000" + }, + { + "id": "24322", + "name": "Bremervörde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48458000", + "longitude": "9.14306000" + }, + { + "id": "24334", + "name": "Brietlingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.33333000", + "longitude": "10.45000000" + }, + { + "id": "24339", + "name": "Brockel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.10000000", + "longitude": "9.51667000" + }, + { + "id": "24340", + "name": "Brockum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46667000", + "longitude": "8.41667000" + }, + { + "id": "24345", + "name": "Brome", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60019000", + "longitude": "10.93754000" + }, + { + "id": "24348", + "name": "Bruchhausen-Vilsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.82931000", + "longitude": "8.99066000" + }, + { + "id": "24392", + "name": "Buchholz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.00884000", + "longitude": "9.56287000" + }, + { + "id": "24393", + "name": "Buchholz in der Nordheide", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.32641000", + "longitude": "9.86812000" + }, + { + "id": "24402", + "name": "Bunde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.18333000", + "longitude": "7.26667000" + }, + { + "id": "24415", + "name": "Burgdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.44628000", + "longitude": "10.00640000" + }, + { + "id": "24449", + "name": "Butjadingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.54722000", + "longitude": "8.33500000" + }, + { + "id": "24457", + "name": "Buxtehude", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.46716000", + "longitude": "9.68636000" + }, + { + "id": "24511", + "name": "Cadenberge", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.76926000", + "longitude": "9.06269000" + }, + { + "id": "24515", + "name": "Calberlah", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42074000", + "longitude": "10.62326000" + }, + { + "id": "24521", + "name": "Cappeln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.81085000", + "longitude": "8.11474000" + }, + { + "id": "24528", + "name": "Celle", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.62264000", + "longitude": "10.08047000" + }, + { + "id": "24538", + "name": "Clausthal-Zellerfeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80949000", + "longitude": "10.33821000" + }, + { + "id": "24541", + "name": "Clenze", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.93729000", + "longitude": "10.95750000" + }, + { + "id": "24543", + "name": "Cloppenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.84754000", + "longitude": "8.04500000" + }, + { + "id": "24552", + "name": "Coppenbrügge", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11852000", + "longitude": "9.54870000" + }, + { + "id": "24560", + "name": "Cremlingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.25000000", + "longitude": "10.65000000" + }, + { + "id": "24570", + "name": "Cuxhaven", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.87176000", + "longitude": "8.69087000" + }, + { + "id": "24580", + "name": "Dahlenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.18767000", + "longitude": "10.73650000" + }, + { + "id": "24588", + "name": "Damme", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52157000", + "longitude": "8.19793000" + }, + { + "id": "24591", + "name": "Danndorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42472000", + "longitude": "10.91286000" + }, + { + "id": "24592", + "name": "Dannenberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.09670000", + "longitude": "11.09001000" + }, + { + "id": "24599", + "name": "Dassel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80179000", + "longitude": "9.68904000" + }, + { + "id": "24800", + "name": "Dörpen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96469000", + "longitude": "7.32273000" + }, + { + "id": "24802", + "name": "Dörverden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.85000000", + "longitude": "9.23333000" + }, + { + "id": "24804", + "name": "Dötlingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.93333000", + "longitude": "8.38333000" + }, + { + "id": "24808", + "name": "Dünsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.92749000", + "longitude": "8.64191000" + }, + { + "id": "24608", + "name": "Dedelstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.70000000", + "longitude": "10.50000000" + }, + { + "id": "24609", + "name": "Deensen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.86053000", + "longitude": "9.59322000" + }, + { + "id": "24617", + "name": "Deinste", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.52903000", + "longitude": "9.44376000" + }, + { + "id": "24625", + "name": "Delligsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.94120000", + "longitude": "9.80272000" + }, + { + "id": "24626", + "name": "Delmenhorst", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.05110000", + "longitude": "8.63091000" + }, + { + "id": "24642", + "name": "Dersum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96112000", + "longitude": "7.27394000" + }, + { + "id": "24644", + "name": "Destedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23801000", + "longitude": "10.71063000" + }, + { + "id": "24645", + "name": "Detern", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.20927000", + "longitude": "7.67395000" + }, + { + "id": "24646", + "name": "Detmerode", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.39016000", + "longitude": "10.74480000" + }, + { + "id": "24654", + "name": "Dettum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.17246000", + "longitude": "10.66807000" + }, + { + "id": "24658", + "name": "Deutsch Evern", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.20000000", + "longitude": "10.43333000" + }, + { + "id": "24662", + "name": "Didderse", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38042000", + "longitude": "10.40294000" + }, + { + "id": "24667", + "name": "Diekholzen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.09617000", + "longitude": "9.91945000" + }, + { + "id": "24670", + "name": "Diepholz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60783000", + "longitude": "8.37005000" + }, + { + "id": "24697", + "name": "Dinklage", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.66223000", + "longitude": "8.12440000" + }, + { + "id": "24705", + "name": "Dissen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11591000", + "longitude": "8.19956000" + }, + { + "id": "24720", + "name": "Dohren", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.65000000", + "longitude": "7.58333000" + }, + { + "id": "24721", + "name": "Dollbergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40671000", + "longitude": "10.18098000" + }, + { + "id": "24722", + "name": "Dollern", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.53333000", + "longitude": "9.55000000" + }, + { + "id": "24745", + "name": "Dornum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.64648000", + "longitude": "7.42957000" + }, + { + "id": "24748", + "name": "Dorum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68790000", + "longitude": "8.56734000" + }, + { + "id": "24752", + "name": "Drage", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.41667000", + "longitude": "10.26667000" + }, + { + "id": "24753", + "name": "Drakenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.68689000", + "longitude": "9.21083000" + }, + { + "id": "24754", + "name": "Drangstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61359000", + "longitude": "8.75576000" + }, + { + "id": "24755", + "name": "Dransfeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49910000", + "longitude": "9.76179000" + }, + { + "id": "24767", + "name": "Drentwede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.74388000", + "longitude": "8.56504000" + }, + { + "id": "24770", + "name": "Drochtersen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.71015000", + "longitude": "9.38463000" + }, + { + "id": "24777", + "name": "Duderstadt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.51312000", + "longitude": "10.25951000" + }, + { + "id": "24779", + "name": "Duingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.00449000", + "longitude": "9.69578000" + }, + { + "id": "24783", + "name": "Dunum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60000000", + "longitude": "7.65000000" + }, + { + "id": "24827", + "name": "Ebergötzen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57096000", + "longitude": "10.10632000" + }, + { + "id": "24836", + "name": "Ebersdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.52514000", + "longitude": "9.04897000" + }, + { + "id": "24844", + "name": "Ebstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.02785000", + "longitude": "10.41839000" + }, + { + "id": "24845", + "name": "Echem", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.33333000", + "longitude": "10.53333000" + }, + { + "id": "24854", + "name": "Edemissen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38702000", + "longitude": "10.26140000" + }, + { + "id": "24859", + "name": "Edewecht", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.12699000", + "longitude": "7.98406000" + }, + { + "id": "24869", + "name": "Egestorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28568000", + "longitude": "9.51676000" + }, + { + "id": "24875", + "name": "Eggermühlen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56667000", + "longitude": "7.81667000" + }, + { + "id": "24892", + "name": "Ehrenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.75000000", + "longitude": "8.70000000" + }, + { + "id": "24909", + "name": "Eicklingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55037000", + "longitude": "10.18439000" + }, + { + "id": "24915", + "name": "Eime", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.07449000", + "longitude": "9.72118000" + }, + { + "id": "24917", + "name": "Eimen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88333000", + "longitude": "9.78333000" + }, + { + "id": "24918", + "name": "Eimke", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96601000", + "longitude": "10.31324000" + }, + { + "id": "24920", + "name": "Einbeck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.82018000", + "longitude": "9.86961000" + }, + { + "id": "24922", + "name": "Eisdorf am Harz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76152000", + "longitude": "10.17591000" + }, + { + "id": "24939", + "name": "Elbe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08333000", + "longitude": "10.28333000" + }, + { + "id": "24942", + "name": "Eldingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.68333000", + "longitude": "10.33333000" + }, + { + "id": "24962", + "name": "Elsdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.24120000", + "longitude": "9.35056000" + }, + { + "id": "24967", + "name": "Elsfleth", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23748000", + "longitude": "8.45664000" + }, + { + "id": "24980", + "name": "Elze", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.12263000", + "longitude": "9.73595000" + }, + { + "id": "24981", + "name": "Embsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.17606000", + "longitude": "10.34625000" + }, + { + "id": "24982", + "name": "Emden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.36745000", + "longitude": "7.20778000" + }, + { + "id": "24985", + "name": "Emlichheim", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61667000", + "longitude": "6.85000000" + }, + { + "id": "24993", + "name": "Emsbüren", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40000000", + "longitude": "7.30000000" + }, + { + "id": "24996", + "name": "Emstek", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.83333000", + "longitude": "8.15000000" + }, + { + "id": "24997", + "name": "Emtinghausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.93333000", + "longitude": "8.96667000" + }, + { + "id": "25000", + "name": "Engeln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.79363000", + "longitude": "8.91815000" + }, + { + "id": "25047", + "name": "Erkerode", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20485000", + "longitude": "10.70982000" + }, + { + "id": "25078", + "name": "Eschede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.73494000", + "longitude": "10.23540000" + }, + { + "id": "25082", + "name": "Eschershausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.92664000", + "longitude": "9.64282000" + }, + { + "id": "25086", + "name": "Esens", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.64866000", + "longitude": "7.61267000" + }, + { + "id": "25092", + "name": "Essel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.69131000", + "longitude": "9.64141000" + }, + { + "id": "25094", + "name": "Essen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.72258000", + "longitude": "7.93710000" + }, + { + "id": "25103", + "name": "Esterwegen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.99288000", + "longitude": "7.63327000" + }, + { + "id": "25105", + "name": "Estorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58850000", + "longitude": "9.14147000" + }, + { + "id": "25121", + "name": "Evessen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18888000", + "longitude": "10.71081000" + }, + { + "id": "25122", + "name": "Eydelstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.69241000", + "longitude": "8.54668000" + }, + { + "id": "25123", + "name": "Eyendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.20000000", + "longitude": "10.15000000" + }, + { + "id": "25124", + "name": "Eystrup", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.77935000", + "longitude": "9.21315000" + }, + { + "id": "25146", + "name": "Faßberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.90000000", + "longitude": "10.16667000" + }, + { + "id": "25326", + "name": "Fürstenau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51667000", + "longitude": "7.67670000" + }, + { + "id": "25327", + "name": "Fürstenberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73333000", + "longitude": "9.40000000" + }, + { + "id": "25147", + "name": "Fedderwarden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56142000", + "longitude": "8.04371000" + }, + { + "id": "25171", + "name": "Filsum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.24213000", + "longitude": "7.62785000" + }, + { + "id": "25177", + "name": "Fintel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.17188000", + "longitude": "9.66969000" + }, + { + "id": "25201", + "name": "Flöthe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08333000", + "longitude": "10.48333000" + }, + { + "id": "25236", + "name": "Freden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.92771000", + "longitude": "9.89350000" + }, + { + "id": "25241", + "name": "Freiburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.82529000", + "longitude": "9.28803000" + }, + { + "id": "25255", + "name": "Freren", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48700000", + "longitude": "7.54313000" + }, + { + "id": "25272", + "name": "Friedeburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.45000000", + "longitude": "7.83333000" + }, + { + "id": "25283", + "name": "Friedland", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41917000", + "longitude": "9.91762000" + }, + { + "id": "25300", + "name": "Friesoythe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.02260000", + "longitude": "7.85764000" + }, + { + "id": "25356", + "name": "Ganderkesee", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.03333000", + "longitude": "8.53333000" + }, + { + "id": "25360", + "name": "Garbsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41371000", + "longitude": "9.58990000" + }, + { + "id": "25361", + "name": "Garbsen-Mitte", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42659000", + "longitude": "9.60383000" + }, + { + "id": "25366", + "name": "Garlstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23728000", + "longitude": "10.10137000" + }, + { + "id": "25368", + "name": "Garrel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.95000000", + "longitude": "8.01667000" + }, + { + "id": "25370", + "name": "Garstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.28467000", + "longitude": "10.16137000" + }, + { + "id": "25372", + "name": "Gartow", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.02470000", + "longitude": "11.46200000" + }, + { + "id": "25788", + "name": "Göttingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53443000", + "longitude": "9.93228000" + }, + { + "id": "25389", + "name": "Geeste", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60000000", + "longitude": "7.26667000" + }, + { + "id": "25392", + "name": "Gehrde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.57684000", + "longitude": "8.00342000" + }, + { + "id": "25393", + "name": "Gehrden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31362000", + "longitude": "9.60033000" + }, + { + "id": "25419", + "name": "Gemeinde Friedland", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41667000", + "longitude": "9.93333000" + }, + { + "id": "25432", + "name": "Georgsdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56667000", + "longitude": "7.08333000" + }, + { + "id": "25433", + "name": "Georgsmarienhütte", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20296000", + "longitude": "8.04480000" + }, + { + "id": "25440", + "name": "Gerdau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96667000", + "longitude": "10.41667000" + }, + { + "id": "25461", + "name": "Gersten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58333000", + "longitude": "7.51667000" + }, + { + "id": "25481", + "name": "Gieboldehausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.60962000", + "longitude": "10.21619000" + }, + { + "id": "25486", + "name": "Giesen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.19716000", + "longitude": "9.89890000" + }, + { + "id": "25488", + "name": "Gifhorn", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47774000", + "longitude": "10.55110000" + }, + { + "id": "25492", + "name": "Gilten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.70000000", + "longitude": "9.58333000" + }, + { + "id": "25498", + "name": "Gittelde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79840000", + "longitude": "10.18780000" + }, + { + "id": "25502", + "name": "Glandorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08474000", + "longitude": "7.99944000" + }, + { + "id": "25522", + "name": "Gnarrenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.38333000", + "longitude": "9.00000000" + }, + { + "id": "25532", + "name": "Goldenstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.78833000", + "longitude": "8.43201000" + }, + { + "id": "25534", + "name": "Golmbach", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.90000000", + "longitude": "9.55000000" + }, + { + "id": "25547", + "name": "Goslar", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.90425000", + "longitude": "10.42766000" + }, + { + "id": "25569", + "name": "Grafhorst", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.44482000", + "longitude": "10.94513000" + }, + { + "id": "25578", + "name": "Grasberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.18333000", + "longitude": "8.98333000" + }, + { + "id": "25580", + "name": "Grasleben", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30638000", + "longitude": "11.01465000" + }, + { + "id": "25738", + "name": "Grünendeich", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56952000", + "longitude": "9.61218000" + }, + { + "id": "25623", + "name": "Groß Ippener", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96667000", + "longitude": "8.61667000" + }, + { + "id": "25631", + "name": "Groß Munzel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.36554000", + "longitude": "9.47828000" + }, + { + "id": "25633", + "name": "Groß Oesingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.64761000", + "longitude": "10.46366000" + }, + { + "id": "25640", + "name": "Groß Twülpstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.37361000", + "longitude": "10.91929000" + }, + { + "id": "25665", + "name": "Großenkneten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.94377000", + "longitude": "8.25323000" + }, + { + "id": "25672", + "name": "Großgoltern", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.33261000", + "longitude": "9.50111000" + }, + { + "id": "25615", + "name": "Gronau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08460000", + "longitude": "9.77678000" + }, + { + "id": "25750", + "name": "Guderhandviertel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.54919000", + "longitude": "9.60960000" + }, + { + "id": "25772", + "name": "Gyhum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.21667000", + "longitude": "9.31667000" + }, + { + "id": "25961", + "name": "Haßbergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.73333000", + "longitude": "9.23333000" + }, + { + "id": "25815", + "name": "Hage", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60274000", + "longitude": "7.28527000" + }, + { + "id": "25817", + "name": "Hagen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.19629000", + "longitude": "7.98041000" + }, + { + "id": "25819", + "name": "Hagen im Bremischen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.35707000", + "longitude": "8.64341000" + }, + { + "id": "25821", + "name": "Hagenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43367000", + "longitude": "9.32473000" + }, + { + "id": "25843", + "name": "Halbemond", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56710000", + "longitude": "7.29038000" + }, + { + "id": "25852", + "name": "Halle", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.99122000", + "longitude": "9.56532000" + }, + { + "id": "25870", + "name": "Hambühren", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.63333000", + "longitude": "9.98333000" + }, + { + "id": "25864", + "name": "Hambergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.30826000", + "longitude": "8.82520000" + }, + { + "id": "25872", + "name": "Hameln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.10397000", + "longitude": "9.35623000" + }, + { + "id": "25875", + "name": "Hammah", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61667000", + "longitude": "9.36667000" + }, + { + "id": "25883", + "name": "Handeloh", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.24563000", + "longitude": "9.83923000" + }, + { + "id": "25885", + "name": "Handorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.34084000", + "longitude": "10.34652000" + }, + { + "id": "25889", + "name": "Hankensbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.73333000", + "longitude": "10.60000000" + }, + { + "id": "25890", + "name": "Hannover", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.37052000", + "longitude": "9.73322000" + }, + { + "id": "25891", + "name": "Hannoversch Münden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41505000", + "longitude": "9.65046000" + }, + { + "id": "25893", + "name": "Hanstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.26667000", + "longitude": "10.01667000" + }, + { + "id": "25894", + "name": "Hanstedt Eins", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.04642000", + "longitude": "10.37444000" + }, + { + "id": "25899", + "name": "Hardegsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65227000", + "longitude": "9.83050000" + }, + { + "id": "25902", + "name": "Haren", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.79262000", + "longitude": "7.24142000" + }, + { + "id": "25904", + "name": "Harpstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.90942000", + "longitude": "8.58962000" + }, + { + "id": "25907", + "name": "Harsefeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.45399000", + "longitude": "9.50297000" + }, + { + "id": "25910", + "name": "Harsum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21045000", + "longitude": "9.96486000" + }, + { + "id": "25920", + "name": "Hasbergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23754000", + "longitude": "7.96114000" + }, + { + "id": "25927", + "name": "Haselünne", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.67412000", + "longitude": "7.48460000" + }, + { + "id": "25931", + "name": "Hassel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.69688000", + "longitude": "8.83198000" + }, + { + "id": "25933", + "name": "Hassendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.10859000", + "longitude": "9.26482000" + }, + { + "id": "25934", + "name": "Haste", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38105000", + "longitude": "9.39280000" + }, + { + "id": "25935", + "name": "Hatten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.05000000", + "longitude": "8.38333000" + }, + { + "id": "25941", + "name": "Hattorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65035000", + "longitude": "10.23681000" + }, + { + "id": "25957", + "name": "Haverlah", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.06667000", + "longitude": "10.16667000" + }, + { + "id": "26296", + "name": "Hänigsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48425000", + "longitude": "10.09129000" + }, + { + "id": "26316", + "name": "Hörden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66835000", + "longitude": "10.28372000" + }, + { + "id": "26336", + "name": "Hülsede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.24951000", + "longitude": "9.36147000" + }, + { + "id": "25969", + "name": "Hechthausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.64041000", + "longitude": "9.23942000" + }, + { + "id": "25978", + "name": "Heeßen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23211000", + "longitude": "9.09642000" + }, + { + "id": "25973", + "name": "Heede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.99205000", + "longitude": "7.29830000" + }, + { + "id": "25975", + "name": "Heemsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.70000000", + "longitude": "9.26667000" + }, + { + "id": "25976", + "name": "Heere", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.06667000", + "longitude": "10.25000000" + }, + { + "id": "25977", + "name": "Heeslingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.31667000", + "longitude": "9.33333000" + }, + { + "id": "25979", + "name": "Hehlen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.98858000", + "longitude": "9.47004000" + }, + { + "id": "25984", + "name": "Heidenau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.31667000", + "longitude": "9.66667000" + }, + { + "id": "26011", + "name": "Heinade", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83333000", + "longitude": "9.63333000" + }, + { + "id": "26012", + "name": "Heinböckel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57457000", + "longitude": "9.32644000" + }, + { + "id": "26016", + "name": "Heinsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.06257000", + "longitude": "9.66316000" + }, + { + "id": "26028", + "name": "Hellwege", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.07346000", + "longitude": "9.23566000" + }, + { + "id": "26032", + "name": "Helmstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.22790000", + "longitude": "11.00985000" + }, + { + "id": "26033", + "name": "Helpsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31131000", + "longitude": "9.11676000" + }, + { + "id": "26040", + "name": "Hemmingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31425000", + "longitude": "9.72359000" + }, + { + "id": "26043", + "name": "Hemmoor", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68702000", + "longitude": "9.15492000" + }, + { + "id": "26045", + "name": "Hemsbünde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.08998000", + "longitude": "9.47261000" + }, + { + "id": "26046", + "name": "Hemslingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.08333000", + "longitude": "9.60000000" + }, + { + "id": "26056", + "name": "Hepstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.25874000", + "longitude": "9.08209000" + }, + { + "id": "26075", + "name": "Hermannsburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.83254000", + "longitude": "10.08957000" + }, + { + "id": "26099", + "name": "Herzberg am Harz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65546000", + "longitude": "10.33938000" + }, + { + "id": "26101", + "name": "Herzlake", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.68530000", + "longitude": "7.59946000" + }, + { + "id": "26104", + "name": "Hesel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.30000000", + "longitude": "7.60000000" + }, + { + "id": "26105", + "name": "Hespe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.32999000", + "longitude": "9.10818000" + }, + { + "id": "26108", + "name": "Hessisch Oldendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.17269000", + "longitude": "9.24913000" + }, + { + "id": "26122", + "name": "Heuerßen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.32946000", + "longitude": "9.27718000" + }, + { + "id": "26127", + "name": "Heyersum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15678000", + "longitude": "9.81265000" + }, + { + "id": "26137", + "name": "Hildesheim", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15077000", + "longitude": "9.95112000" + }, + { + "id": "26139", + "name": "Hilgermissen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.85000000", + "longitude": "9.16667000" + }, + { + "id": "26143", + "name": "Hillerse", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.68558000", + "longitude": "9.94973000" + }, + { + "id": "26148", + "name": "Hilter", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.13573000", + "longitude": "8.14715000" + }, + { + "id": "26151", + "name": "Himbergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.09418000", + "longitude": "10.72909000" + }, + { + "id": "26153", + "name": "Himmelpforten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61413000", + "longitude": "9.30516000" + }, + { + "id": "26155", + "name": "Hinte", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.41667000", + "longitude": "7.18333000" + }, + { + "id": "26159", + "name": "Hipstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48333000", + "longitude": "8.96667000" + }, + { + "id": "26170", + "name": "Hitzacker", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.15254000", + "longitude": "11.04418000" + }, + { + "id": "26183", + "name": "Hodenhagen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.76506000", + "longitude": "9.59495000" + }, + { + "id": "26206", + "name": "Hohenhameln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.25755000", + "longitude": "10.06416000" + }, + { + "id": "26225", + "name": "Hohnhorst", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.36942000", + "longitude": "9.37168000" + }, + { + "id": "26228", + "name": "Holdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58333000", + "longitude": "8.11667000" + }, + { + "id": "26229", + "name": "Holle", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08721000", + "longitude": "10.16012000" + }, + { + "id": "26232", + "name": "Hollenstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.36667000", + "longitude": "9.71667000" + }, + { + "id": "26238", + "name": "Holtland", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.28333000", + "longitude": "7.58333000" + }, + { + "id": "26248", + "name": "Holzminden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.82798000", + "longitude": "9.44550000" + }, + { + "id": "26253", + "name": "Hoogstede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58333000", + "longitude": "6.95000000" + }, + { + "id": "26267", + "name": "Hornburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.03095000", + "longitude": "10.60490000" + }, + { + "id": "26268", + "name": "Horneburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.50672000", + "longitude": "9.57546000" + }, + { + "id": "26273", + "name": "Horstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.18333000", + "longitude": "9.23333000" + }, + { + "id": "26276", + "name": "Hoya", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.80781000", + "longitude": "9.14028000" + }, + { + "id": "26279", + "name": "Hude", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.10766000", + "longitude": "8.46322000" + }, + { + "id": "26280", + "name": "Huede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.49588000", + "longitude": "8.35804000" + }, + { + "id": "26291", + "name": "Husum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.56667000", + "longitude": "9.25000000" + }, + { + "id": "26360", + "name": "Ihlienworth", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73333000", + "longitude": "8.91667000" + }, + { + "id": "26374", + "name": "Ilsede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.26340000", + "longitude": "10.19922000" + }, + { + "id": "26412", + "name": "Isenbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43333000", + "longitude": "10.58333000" + }, + { + "id": "26414", + "name": "Isernhagen Farster Bauerschaft", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47093000", + "longitude": "9.84179000" + }, + { + "id": "26420", + "name": "Itterbeck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50618000", + "longitude": "6.80354000" + }, + { + "id": "26428", + "name": "Jameln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.05000000", + "longitude": "11.08333000" + }, + { + "id": "26472", + "name": "Jühnde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46667000", + "longitude": "9.80000000" + }, + { + "id": "26433", + "name": "Jembke", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50000000", + "longitude": "10.76667000" + }, + { + "id": "26434", + "name": "Jemgum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.26667000", + "longitude": "7.38333000" + }, + { + "id": "26440", + "name": "Jerxheim", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08172000", + "longitude": "10.89844000" + }, + { + "id": "26445", + "name": "Jesteburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.30966000", + "longitude": "9.95262000" + }, + { + "id": "26450", + "name": "Jever", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57368000", + "longitude": "7.89806000" + }, + { + "id": "26458", + "name": "Jork", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.53198000", + "longitude": "9.68076000" + }, + { + "id": "26461", + "name": "Juist", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.67787000", + "longitude": "6.99575000" + }, + { + "id": "26485", + "name": "Kakenstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.30317000", + "longitude": "9.76289000" + }, + { + "id": "26488", + "name": "Kalefeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80000000", + "longitude": "10.03333000" + }, + { + "id": "26536", + "name": "Katlenburg-Lindau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.68333000", + "longitude": "10.10000000" + }, + { + "id": "26833", + "name": "Königslutter am Elm", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.25116000", + "longitude": "10.81683000" + }, + { + "id": "26851", + "name": "Kührstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57747000", + "longitude": "8.80091000" + }, + { + "id": "26861", + "name": "Küsten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.97779000", + "longitude": "11.06240000" + }, + { + "id": "26576", + "name": "Kettenkamp", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58333000", + "longitude": "7.83333000" + }, + { + "id": "26601", + "name": "Kirchbrak", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96585000", + "longitude": "9.57510000" + }, + { + "id": "26604", + "name": "Kirchdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.59523000", + "longitude": "8.83490000" + }, + { + "id": "26614", + "name": "Kirchgellersen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23333000", + "longitude": "10.30000000" + }, + { + "id": "26630", + "name": "Kirchlinteln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.94236000", + "longitude": "9.31811000" + }, + { + "id": "26632", + "name": "Kirchseelte", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.95000000", + "longitude": "8.68333000" + }, + { + "id": "26634", + "name": "Kirchtimke", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.25000000", + "longitude": "9.15000000" + }, + { + "id": "26636", + "name": "Kirchwalsede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.01667000", + "longitude": "9.40000000" + }, + { + "id": "26648", + "name": "Kissenbrück", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.10956000", + "longitude": "10.58996000" + }, + { + "id": "26658", + "name": "Klein Berßen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.76797000", + "longitude": "7.46182000" + }, + { + "id": "26659", + "name": "Klein Gusborn", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.08331000", + "longitude": "11.19323000" + }, + { + "id": "26665", + "name": "Klein Schwülper", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.34153000", + "longitude": "10.42903000" + }, + { + "id": "26697", + "name": "Kluse", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.93633000", + "longitude": "7.34093000" + }, + { + "id": "26745", + "name": "Krebeck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58333000", + "longitude": "10.11667000" + }, + { + "id": "26747", + "name": "Kreiensen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85363000", + "longitude": "9.96481000" + }, + { + "id": "26808", + "name": "Kutenholz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48152000", + "longitude": "9.32118000" + }, + { + "id": "26863", + "name": "Laar", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35581000", + "longitude": "8.25388000" + }, + { + "id": "26864", + "name": "Laatzen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31506000", + "longitude": "9.79739000" + }, + { + "id": "26869", + "name": "Lachendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61667000", + "longitude": "10.25000000" + }, + { + "id": "26887", + "name": "Lamspringe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96071000", + "longitude": "10.01105000" + }, + { + "id": "26888", + "name": "Lamstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63333000", + "longitude": "9.10000000" + }, + { + "id": "26891", + "name": "Landesbergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55598000", + "longitude": "9.12505000" + }, + { + "id": "26892", + "name": "Landolfshausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53333000", + "longitude": "10.10000000" + }, + { + "id": "26901", + "name": "Langelsheim", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.93789000", + "longitude": "10.33264000" + }, + { + "id": "26903", + "name": "Langen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60554000", + "longitude": "8.59509000" + }, + { + "id": "26919", + "name": "Langenhagen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.44758000", + "longitude": "9.73741000" + }, + { + "id": "26933", + "name": "Langeoog", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75000000", + "longitude": "7.48333000" + }, + { + "id": "26939", + "name": "Langlingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55593000", + "longitude": "10.28291000" + }, + { + "id": "26945", + "name": "Langwedel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.97864000", + "longitude": "9.18542000" + }, + { + "id": "26953", + "name": "Lastrup", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.79468000", + "longitude": "7.86715000" + }, + { + "id": "26954", + "name": "Lathen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.86667000", + "longitude": "7.31667000" + }, + { + "id": "26966", + "name": "Lauenau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.27393000", + "longitude": "9.36928000" + }, + { + "id": "26967", + "name": "Lauenbrück", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.20000000", + "longitude": "9.56667000" + }, + { + "id": "26969", + "name": "Lauenhagen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35547000", + "longitude": "9.20637000" + }, + { + "id": "27184", + "name": "Lähden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.74547000", + "longitude": "7.57036000" + }, + { + "id": "27196", + "name": "Löningen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.73678000", + "longitude": "7.75809000" + }, + { + "id": "27210", + "name": "Lüchow", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96811000", + "longitude": "11.15397000" + }, + { + "id": "27212", + "name": "Lüder", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.80878000", + "longitude": "10.66609000" + }, + { + "id": "27215", + "name": "Lüdersfeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35993000", + "longitude": "9.25422000" + }, + { + "id": "27218", + "name": "Lüneburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.25090000", + "longitude": "10.41409000" + }, + { + "id": "27220", + "name": "Lünne", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42958000", + "longitude": "7.42653000" + }, + { + "id": "26999", + "name": "Leer", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23157000", + "longitude": "7.46100000" + }, + { + "id": "27000", + "name": "Leese", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50000000", + "longitude": "9.11667000" + }, + { + "id": "27001", + "name": "Leezdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55000000", + "longitude": "7.30000000" + }, + { + "id": "27011", + "name": "Lehre", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.33333000", + "longitude": "10.66667000" + }, + { + "id": "27013", + "name": "Lehrte", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.37193000", + "longitude": "9.97919000" + }, + { + "id": "27018", + "name": "Leiferde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20445000", + "longitude": "10.50842000" + }, + { + "id": "27034", + "name": "Lemförde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46557000", + "longitude": "8.37621000" + }, + { + "id": "27037", + "name": "Lemwerder", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.16667000", + "longitude": "8.61667000" + }, + { + "id": "27039", + "name": "Lengede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20487000", + "longitude": "10.30775000" + }, + { + "id": "27043", + "name": "Lengerich", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55381000", + "longitude": "7.53164000" + }, + { + "id": "27087", + "name": "Liebenau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60362000", + "longitude": "9.09719000" + }, + { + "id": "27088", + "name": "Liebenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.02176000", + "longitude": "10.43169000" + }, + { + "id": "27096", + "name": "Lilienthal", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.14193000", + "longitude": "8.90338000" + }, + { + "id": "27110", + "name": "Lindhorst", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35789000", + "longitude": "9.28319000" + }, + { + "id": "27113", + "name": "Lindwedel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60784000", + "longitude": "9.68737000" + }, + { + "id": "27114", + "name": "Lingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52143000", + "longitude": "7.31845000" + }, + { + "id": "27118", + "name": "Lintig", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60341000", + "longitude": "8.87876000" + }, + { + "id": "27135", + "name": "Lohne", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.66625000", + "longitude": "8.23750000" + }, + { + "id": "27150", + "name": "Lorup", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.92495000", + "longitude": "7.64339000" + }, + { + "id": "27156", + "name": "Loxstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.46667000", + "longitude": "8.65000000" + }, + { + "id": "27170", + "name": "Luhden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.22538000", + "longitude": "9.09256000" + }, + { + "id": "27175", + "name": "Lunestedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.43621000", + "longitude": "8.75193000" + }, + { + "id": "27180", + "name": "Lutter am Barenberge", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.98943000", + "longitude": "10.26930000" + }, + { + "id": "27276", + "name": "Marienhafe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.52274000", + "longitude": "7.27306000" + }, + { + "id": "27279", + "name": "Mariental", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.27593000", + "longitude": "10.98371000" + }, + { + "id": "27289", + "name": "Marklohe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.66857000", + "longitude": "9.14219000" + }, + { + "id": "27326", + "name": "Marschacht", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.41520000", + "longitude": "10.37524000" + }, + { + "id": "27328", + "name": "Martfeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.87572000", + "longitude": "9.06081000" + }, + { + "id": "27332", + "name": "Marxen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.31211000", + "longitude": "10.00415000" + }, + { + "id": "27585", + "name": "Müden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52771000", + "longitude": "10.36011000" + }, + { + "id": "27366", + "name": "Meerbeck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.34174000", + "longitude": "9.15067000" + }, + { + "id": "27368", + "name": "Meerdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.34583000", + "longitude": "10.31745000" + }, + { + "id": "27381", + "name": "Meinersen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47436000", + "longitude": "10.35247000" + }, + { + "id": "27390", + "name": "Melbeck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.18333000", + "longitude": "10.40000000" + }, + { + "id": "27393", + "name": "Melle", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20197000", + "longitude": "8.33826000" + }, + { + "id": "27396", + "name": "Mellinghausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.70697000", + "longitude": "8.89704000" + }, + { + "id": "27411", + "name": "Menslage", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.68333000", + "longitude": "7.81667000" + }, + { + "id": "27413", + "name": "Meppen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.69064000", + "longitude": "7.29097000" + }, + { + "id": "27428", + "name": "Merzen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48333000", + "longitude": "7.83333000" + }, + { + "id": "27435", + "name": "Messingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46667000", + "longitude": "7.46667000" + }, + { + "id": "27458", + "name": "Midlum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73135000", + "longitude": "8.61695000" + }, + { + "id": "27479", + "name": "Mittegroßefehn", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.39165000", + "longitude": "7.56602000" + }, + { + "id": "27503", + "name": "Moisburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.40620000", + "longitude": "9.69880000" + }, + { + "id": "27504", + "name": "Molbergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.85805000", + "longitude": "7.92548000" + }, + { + "id": "27524", + "name": "Moringen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.69915000", + "longitude": "9.87107000" + }, + { + "id": "27527", + "name": "Morsum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.95347000", + "longitude": "9.07962000" + }, + { + "id": "27543", + "name": "Munster", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.98569000", + "longitude": "10.08756000" + }, + { + "id": "27637", + "name": "Nahrendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.17389000", + "longitude": "10.81381000" + }, + { + "id": "27947", + "name": "Nörten-Hardenberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62878000", + "longitude": "9.93593000" + }, + { + "id": "27687", + "name": "Neu Darchau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.22901000", + "longitude": "10.88529000" + }, + { + "id": "27690", + "name": "Neu Wulmstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.46667000", + "longitude": "9.80000000" + }, + { + "id": "27710", + "name": "Neubörger", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.95815000", + "longitude": "7.44839000" + }, + { + "id": "27703", + "name": "Neubrück", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.37088000", + "longitude": "10.41761000" + }, + { + "id": "27721", + "name": "Neuenkirchen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.13778000", + "longitude": "8.38835000" + }, + { + "id": "27738", + "name": "Neuharlingersiel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69993000", + "longitude": "7.70288000" + }, + { + "id": "27742", + "name": "Neuhaus an der Oste", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80043000", + "longitude": "9.03348000" + }, + { + "id": "27754", + "name": "Neukamperfehn", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.33642000", + "longitude": "7.56189000" + }, + { + "id": "27799", + "name": "Neustadt am Rübenberge", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50462000", + "longitude": "9.45871000" + }, + { + "id": "27855", + "name": "Niederlangen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.85712000", + "longitude": "7.28199000" + }, + { + "id": "27865", + "name": "Niedernwöhren", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35214000", + "longitude": "9.14788000" + }, + { + "id": "27892", + "name": "Nienburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.64610000", + "longitude": "9.22086000" + }, + { + "id": "27895", + "name": "Nienstädt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.29242000", + "longitude": "9.16440000" + }, + { + "id": "27911", + "name": "Norddeich", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61349000", + "longitude": "7.16043000" + }, + { + "id": "27912", + "name": "Norden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.59552000", + "longitude": "7.20639000" + }, + { + "id": "27914", + "name": "Nordenham", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48610000", + "longitude": "8.48093000" + }, + { + "id": "27915", + "name": "Norderney", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.70828000", + "longitude": "7.15819000" + }, + { + "id": "27922", + "name": "Nordholz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78448000", + "longitude": "8.61354000" + }, + { + "id": "27923", + "name": "Nordhorn", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43081000", + "longitude": "7.06833000" + }, + { + "id": "27925", + "name": "Nordleda", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.76667000", + "longitude": "8.83333000" + }, + { + "id": "27927", + "name": "Nordstemmen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.16196000", + "longitude": "9.78350000" + }, + { + "id": "27930", + "name": "Northeim", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.70662000", + "longitude": "9.99997000" + }, + { + "id": "27931", + "name": "Nortmoor", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.24608000", + "longitude": "7.57178000" + }, + { + "id": "27933", + "name": "Nortrup", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61503000", + "longitude": "7.86072000" + }, + { + "id": "27936", + "name": "Nottensdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48333000", + "longitude": "9.60000000" + }, + { + "id": "28005", + "name": "Oberndorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75000000", + "longitude": "9.15000000" + }, + { + "id": "28007", + "name": "Obernfeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55000000", + "longitude": "10.23333000" + }, + { + "id": "28010", + "name": "Obernkirchen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.27210000", + "longitude": "9.12912000" + }, + { + "id": "28074", + "name": "Oederquart", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80267000", + "longitude": "9.23680000" + }, + { + "id": "28080", + "name": "Oerel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48333000", + "longitude": "9.05000000" + }, + { + "id": "28105", + "name": "Oldenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.14118000", + "longitude": "8.21467000" + }, + { + "id": "28108", + "name": "Oldendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.15580000", + "longitude": "10.21431000" + }, + { + "id": "28139", + "name": "Osloß", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46925000", + "longitude": "10.68011000" + }, + { + "id": "28140", + "name": "Osnabrück", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.27264000", + "longitude": "8.04980000" + }, + { + "id": "28143", + "name": "Osteel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.54417000", + "longitude": "7.25400000" + }, + { + "id": "28145", + "name": "Osten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.70000000", + "longitude": "9.20000000" + }, + { + "id": "28149", + "name": "Ostercappeln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35000000", + "longitude": "8.23333000" + }, + { + "id": "28153", + "name": "Osterholz-Scharmbeck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.22698000", + "longitude": "8.79528000" + }, + { + "id": "28156", + "name": "Osterode am Harz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.72686000", + "longitude": "10.25089000" + }, + { + "id": "28166", + "name": "Ostrhauderfehn", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.13333000", + "longitude": "7.61667000" + }, + { + "id": "28183", + "name": "Ottenstein", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.94707000", + "longitude": "9.40700000" + }, + { + "id": "28184", + "name": "Otter", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.24015000", + "longitude": "9.74247000" + }, + { + "id": "28188", + "name": "Otterndorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80908000", + "longitude": "8.90068000" + }, + { + "id": "28189", + "name": "Ottersberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.10990000", + "longitude": "9.14408000" + }, + { + "id": "28199", + "name": "Ovelgönne", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.34189000", + "longitude": "8.42179000" + }, + { + "id": "28205", + "name": "Oyten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.05000000", + "longitude": "9.01667000" + }, + { + "id": "28218", + "name": "Papenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.07738000", + "longitude": "7.40444000" + }, + { + "id": "28225", + "name": "Parsau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53471000", + "longitude": "10.89020000" + }, + { + "id": "28234", + "name": "Pattensen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.26448000", + "longitude": "9.76436000" + }, + { + "id": "28242", + "name": "Peine", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31928000", + "longitude": "10.23520000" + }, + { + "id": "28253", + "name": "Pennigsehl", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.64181000", + "longitude": "9.02630000" + }, + { + "id": "28343", + "name": "Polle", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.89871000", + "longitude": "9.40386000" + }, + { + "id": "28345", + "name": "Pollhagen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38529000", + "longitude": "9.18813000" + }, + { + "id": "28424", + "name": "Quakenbrück", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.67502000", + "longitude": "7.94983000" + }, + { + "id": "28439", + "name": "Radbruch", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.31667000", + "longitude": "10.28333000" + }, + { + "id": "28440", + "name": "Raddestorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.45000000", + "longitude": "8.96667000" + }, + { + "id": "28480", + "name": "Rastede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.25000000", + "longitude": "8.20000000" + }, + { + "id": "28783", + "name": "Röhrsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.71078000", + "longitude": "9.23139000" + }, + { + "id": "28788", + "name": "Rötgesbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41667000", + "longitude": "10.53333000" + }, + { + "id": "28804", + "name": "Rühen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48560000", + "longitude": "10.88642000" + }, + { + "id": "28505", + "name": "Rechtsupweg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.53333000", + "longitude": "7.33333000" + }, + { + "id": "28511", + "name": "Reeßum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.13333000", + "longitude": "9.21667000" + }, + { + "id": "28515", + "name": "Regesbostel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.38333000", + "longitude": "9.65000000" + }, + { + "id": "28529", + "name": "Rehburg-Loccum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46952000", + "longitude": "9.19957000" + }, + { + "id": "28530", + "name": "Rehden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61024000", + "longitude": "8.48093000" + }, + { + "id": "28566", + "name": "Reinstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23445000", + "longitude": "10.57323000" + }, + { + "id": "28573", + "name": "Remlingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11367000", + "longitude": "10.67408000" + }, + { + "id": "28585", + "name": "Reppenstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.25000000", + "longitude": "10.35000000" + }, + { + "id": "28587", + "name": "Rethem", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.78621000", + "longitude": "9.37862000" + }, + { + "id": "28588", + "name": "Rethen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.37707000", + "longitude": "10.47855000" + }, + { + "id": "28598", + "name": "Rhade", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.32872000", + "longitude": "9.11350000" + }, + { + "id": "28602", + "name": "Rhede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.06020000", + "longitude": "7.27127000" + }, + { + "id": "28603", + "name": "Rheden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.05784000", + "longitude": "9.78714000" + }, + { + "id": "28619", + "name": "Rhumspringe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58333000", + "longitude": "10.30000000" + }, + { + "id": "28620", + "name": "Ribbesbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43435000", + "longitude": "10.50997000" + }, + { + "id": "28627", + "name": "Riede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96667000", + "longitude": "8.95000000" + }, + { + "id": "28648", + "name": "Rieste", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48333000", + "longitude": "8.01667000" + }, + { + "id": "28664", + "name": "Rinteln", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18604000", + "longitude": "9.07917000" + }, + { + "id": "28667", + "name": "Ritterhude", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.18289000", + "longitude": "8.73550000" + }, + { + "id": "28677", + "name": "Rodenberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31152000", + "longitude": "9.35640000" + }, + { + "id": "28699", + "name": "Ronnenberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31939000", + "longitude": "9.65544000" + }, + { + "id": "28703", + "name": "Rosche", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.98663000", + "longitude": "10.75184000" + }, + { + "id": "28704", + "name": "Rosdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50000000", + "longitude": "9.90000000" + }, + { + "id": "28718", + "name": "Rotenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.11125000", + "longitude": "9.41082000" + }, + { + "id": "28761", + "name": "Rullstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.28645000", + "longitude": "10.52972000" + }, + { + "id": "28822", + "name": "Sachsenhagen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.39734000", + "longitude": "9.26791000" + }, + { + "id": "28838", + "name": "Salzbergen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.33333000", + "longitude": "7.35000000" + }, + { + "id": "28839", + "name": "Salzgitter", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15705000", + "longitude": "10.41540000" + }, + { + "id": "28840", + "name": "Salzhausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.22339000", + "longitude": "10.16981000" + }, + { + "id": "28841", + "name": "Salzhemmendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.06700000", + "longitude": "9.58720000" + }, + { + "id": "28852", + "name": "Sande", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.50489000", + "longitude": "8.01418000" + }, + { + "id": "28857", + "name": "Sandstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.35981000", + "longitude": "8.52137000" + }, + { + "id": "28860", + "name": "Sankt Andreasberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.71004000", + "longitude": "10.51867000" + }, + { + "id": "28885", + "name": "Sarstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23495000", + "longitude": "9.85411000" + }, + { + "id": "28890", + "name": "Sassenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51667000", + "longitude": "10.63333000" + }, + { + "id": "28894", + "name": "Sauensiek", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.38333000", + "longitude": "9.60000000" + }, + { + "id": "29491", + "name": "Sögel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.85000000", + "longitude": "7.51667000" + }, + { + "id": "29492", + "name": "Söhlde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18898000", + "longitude": "10.23239000" + }, + { + "id": "29498", + "name": "Südergellersen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.21667000", + "longitude": "10.30000000" + }, + { + "id": "29506", + "name": "Süpplingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.22811000", + "longitude": "10.90393000" + }, + { + "id": "29508", + "name": "Süstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.86165000", + "longitude": "8.92213000" + }, + { + "id": "28909", + "name": "Schapen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40000000", + "longitude": "7.56667000" + }, + { + "id": "28912", + "name": "Scharnebeck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.29237000", + "longitude": "10.50188000" + }, + { + "id": "29127", + "name": "Schöningen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.13802000", + "longitude": "10.96745000" + }, + { + "id": "29135", + "name": "Schöppenstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.14308000", + "longitude": "10.77450000" + }, + { + "id": "29138", + "name": "Schüttorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.32281000", + "longitude": "7.22176000" + }, + { + "id": "28918", + "name": "Scheden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45000000", + "longitude": "9.73333000" + }, + { + "id": "28920", + "name": "Scheeßel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.16667000", + "longitude": "9.48333000" + }, + { + "id": "28926", + "name": "Schellerten", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18530000", + "longitude": "10.10227000" + }, + { + "id": "28942", + "name": "Schiffdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.53333000", + "longitude": "8.65000000" + }, + { + "id": "28946", + "name": "Schillig", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.70378000", + "longitude": "8.02170000" + }, + { + "id": "28958", + "name": "Schladen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.02218000", + "longitude": "10.53967000" + }, + { + "id": "29005", + "name": "Schnega", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.89130000", + "longitude": "10.89226000" + }, + { + "id": "29009", + "name": "Schneverdingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.11685000", + "longitude": "9.79524000" + }, + { + "id": "29026", + "name": "Schortens", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.53333000", + "longitude": "7.95000000" + }, + { + "id": "29045", + "name": "Schwaförden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.73775000", + "longitude": "8.83026000" + }, + { + "id": "29059", + "name": "Schwanewede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23333000", + "longitude": "8.60000000" + }, + { + "id": "29062", + "name": "Schwarme", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.90000000", + "longitude": "9.01667000" + }, + { + "id": "29063", + "name": "Schwarmstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.67794000", + "longitude": "9.61767000" + }, + { + "id": "29147", + "name": "Seeburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56667000", + "longitude": "10.15000000" + }, + { + "id": "29161", + "name": "Seelze", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.39635000", + "longitude": "9.59727000" + }, + { + "id": "29163", + "name": "Seesen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.89095000", + "longitude": "10.17847000" + }, + { + "id": "29165", + "name": "Seevetal", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.40000000", + "longitude": "9.96667000" + }, + { + "id": "29166", + "name": "Seggebruch", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30050000", + "longitude": "9.09462000" + }, + { + "id": "29167", + "name": "Sehlde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.03887000", + "longitude": "10.26569000" + }, + { + "id": "29168", + "name": "Sehlem", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.01236000", + "longitude": "9.97593000" + }, + { + "id": "29170", + "name": "Sehnde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31394000", + "longitude": "9.96820000" + }, + { + "id": "29183", + "name": "Selsingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.37329000", + "longitude": "9.21289000" + }, + { + "id": "29200", + "name": "Seulingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.54129000", + "longitude": "10.16263000" + }, + { + "id": "29205", + "name": "Sibbesse", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.05000000", + "longitude": "9.90000000" + }, + { + "id": "29207", + "name": "Sickte", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21847000", + "longitude": "10.64240000" + }, + { + "id": "29209", + "name": "Siedenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.69293000", + "longitude": "8.93961000" + }, + { + "id": "29230", + "name": "Sillenstede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57437000", + "longitude": "7.98500000" + }, + { + "id": "29251", + "name": "Sittensen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.27615000", + "longitude": "9.50429000" + }, + { + "id": "29253", + "name": "Soderstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.14275000", + "longitude": "10.14807000" + }, + { + "id": "29262", + "name": "Soltau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.98638000", + "longitude": "9.84338000" + }, + { + "id": "29263", + "name": "Soltendieck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.87369000", + "longitude": "10.76162000" + }, + { + "id": "29281", + "name": "Sottrum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.11667000", + "longitude": "9.23333000" + }, + { + "id": "29295", + "name": "Spelle", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.36667000", + "longitude": "7.46667000" + }, + { + "id": "29306", + "name": "Sprakensehl", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.76668000", + "longitude": "10.49177000" + }, + { + "id": "29309", + "name": "Springe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20845000", + "longitude": "9.55416000" + }, + { + "id": "29314", + "name": "Stade", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.59337000", + "longitude": "9.47629000" + }, + { + "id": "29317", + "name": "Stadensen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.87571000", + "longitude": "10.55619000" + }, + { + "id": "29321", + "name": "Stadthagen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.32333000", + "longitude": "9.20311000" + }, + { + "id": "29327", + "name": "Stadtoldendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88242000", + "longitude": "9.62650000" + }, + { + "id": "29449", + "name": "Stöckse", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.64067000", + "longitude": "9.34027000" + }, + { + "id": "29348", + "name": "Stedesdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63333000", + "longitude": "7.66667000" + }, + { + "id": "29355", + "name": "Steimbke", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.65483000", + "longitude": "9.39091000" + }, + { + "id": "29373", + "name": "Steinfeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58596000", + "longitude": "8.21417000" + }, + { + "id": "29383", + "name": "Steinhorst", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.68333000", + "longitude": "10.40000000" + }, + { + "id": "29387", + "name": "Steinkirchen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56601000", + "longitude": "9.61111000" + }, + { + "id": "29395", + "name": "Stelle", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.38416000", + "longitude": "10.11138000" + }, + { + "id": "29407", + "name": "Steyerberg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.57017000", + "longitude": "9.02423000" + }, + { + "id": "29420", + "name": "Stolzenau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51667000", + "longitude": "9.06667000" + }, + { + "id": "29442", + "name": "Stuhr", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.03333000", + "longitude": "8.75000000" + }, + { + "id": "29458", + "name": "Suddendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30096000", + "longitude": "7.22572000" + }, + { + "id": "29459", + "name": "Suderburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.89586000", + "longitude": "10.45141000" + }, + { + "id": "29460", + "name": "Sudwalde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.79337000", + "longitude": "8.83611000" + }, + { + "id": "29463", + "name": "Suhlendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.93333000", + "longitude": "10.76667000" + }, + { + "id": "29465", + "name": "Sulingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.68373000", + "longitude": "8.80949000" + }, + { + "id": "29483", + "name": "Surwold", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.97800000", + "longitude": "7.51534000" + }, + { + "id": "29484", + "name": "Sustrum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.91667000", + "longitude": "7.28333000" + }, + { + "id": "29486", + "name": "Syke", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.91345000", + "longitude": "8.82209000" + }, + { + "id": "29528", + "name": "Tappenbeck", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.47055000", + "longitude": "10.74068000" + }, + { + "id": "29529", + "name": "Tarmstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.22505000", + "longitude": "9.07763000" + }, + { + "id": "29706", + "name": "Tülau", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.57578000", + "longitude": "10.87818000" + }, + { + "id": "29560", + "name": "Tespe", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.39640000", + "longitude": "10.41084000" + }, + { + "id": "29586", + "name": "Thedinghausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96667000", + "longitude": "9.01667000" + }, + { + "id": "29597", + "name": "Thomasburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23333000", + "longitude": "10.66667000" + }, + { + "id": "29599", + "name": "Thuine", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50000000", + "longitude": "7.48333000" + }, + { + "id": "29608", + "name": "Tiddische", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51667000", + "longitude": "10.80000000" + }, + { + "id": "29631", + "name": "Toppenstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.26430000", + "longitude": "10.11451000" + }, + { + "id": "29635", + "name": "Tostedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.28333000", + "longitude": "9.71667000" + }, + { + "id": "29696", + "name": "Twistringen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.79926000", + "longitude": "8.64163000" + }, + { + "id": "29713", + "name": "Uchte", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.49975000", + "longitude": "8.90928000" + }, + { + "id": "29722", + "name": "Uehrde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.09902000", + "longitude": "10.76523000" + }, + { + "id": "29723", + "name": "Uelsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50000000", + "longitude": "6.88333000" + }, + { + "id": "29725", + "name": "Uelzen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.96572000", + "longitude": "10.56111000" + }, + { + "id": "29729", + "name": "Uetze", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46511000", + "longitude": "10.20467000" + }, + { + "id": "29743", + "name": "Ummern", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.59111000", + "longitude": "10.43195000" + }, + { + "id": "29768", + "name": "Unterlüß", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.83471000", + "longitude": "10.29685000" + }, + { + "id": "29785", + "name": "Upgant-Schott", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.51667000", + "longitude": "7.28333000" + }, + { + "id": "29799", + "name": "Uslar", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65690000", + "longitude": "9.63501000" + }, + { + "id": "29802", + "name": "Uthlede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.31119000", + "longitude": "8.57861000" + }, + { + "id": "29813", + "name": "Varel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.39693000", + "longitude": "8.13621000" + }, + { + "id": "29814", + "name": "Varrel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.62150000", + "longitude": "8.73310000" + }, + { + "id": "29886", + "name": "Vögelsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.27447000", + "longitude": "10.35372000" + }, + { + "id": "29816", + "name": "Vechelde", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.26038000", + "longitude": "10.36491000" + }, + { + "id": "29817", + "name": "Vechta", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.72632000", + "longitude": "8.28598000" + }, + { + "id": "29830", + "name": "Velpke", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40797000", + "longitude": "10.93637000" + }, + { + "id": "29832", + "name": "Veltheim", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21874000", + "longitude": "10.68327000" + }, + { + "id": "29834", + "name": "Verden", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.92343000", + "longitude": "9.23491000" + }, + { + "id": "29843", + "name": "Vienenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.95242000", + "longitude": "10.56374000" + }, + { + "id": "29860", + "name": "Visbek", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.83333000", + "longitude": "8.31667000" + }, + { + "id": "29861", + "name": "Visselhövede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.98546000", + "longitude": "9.58265000" + }, + { + "id": "29877", + "name": "Vollersode", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.33333000", + "longitude": "8.91667000" + }, + { + "id": "29878", + "name": "Voltlage", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43333000", + "longitude": "7.75000000" + }, + { + "id": "29881", + "name": "Vordorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.36522000", + "longitude": "10.52035000" + }, + { + "id": "29883", + "name": "Vorwerk", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.18333000", + "longitude": "9.15000000" + }, + { + "id": "29885", + "name": "Vrees", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.88333000", + "longitude": "7.76667000" + }, + { + "id": "29896", + "name": "Waake", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55637000", + "longitude": "10.05713000" + }, + { + "id": "29914", + "name": "Wagenfeld", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55000000", + "longitude": "8.58333000" + }, + { + "id": "29915", + "name": "Wagenhoff", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.55233000", + "longitude": "10.52337000" + }, + { + "id": "29921", + "name": "Wahrenholz", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61667000", + "longitude": "10.60000000" + }, + { + "id": "29930", + "name": "Walchum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.92717000", + "longitude": "7.28325000" + }, + { + "id": "29969", + "name": "Walkenried", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58333000", + "longitude": "10.61667000" + }, + { + "id": "29976", + "name": "Wallenhorst", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35000000", + "longitude": "8.01667000" + }, + { + "id": "29993", + "name": "Walsrode", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.86147000", + "longitude": "9.59260000" + }, + { + "id": "30005", + "name": "Wangerooge", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.79002000", + "longitude": "7.89938000" + }, + { + "id": "30007", + "name": "Wanna", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75000000", + "longitude": "8.80000000" + }, + { + "id": "30013", + "name": "Wardenburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.06667000", + "longitude": "8.20000000" + }, + { + "id": "30019", + "name": "Warmsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.45695000", + "longitude": "8.84949000" + }, + { + "id": "30029", + "name": "Wasbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41331000", + "longitude": "10.59357000" + }, + { + "id": "30039", + "name": "Wathlingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53690000", + "longitude": "10.15069000" + }, + { + "id": "30442", + "name": "Wölpinghausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.41667000", + "longitude": "9.23333000" + }, + { + "id": "30051", + "name": "Weener", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.16332000", + "longitude": "7.35052000" + }, + { + "id": "30142", + "name": "Welle", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23985000", + "longitude": "9.80178000" + }, + { + "id": "30152", + "name": "Wendeburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.32957000", + "longitude": "10.39255000" + }, + { + "id": "30156", + "name": "Wendisch Evern", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.21667000", + "longitude": "10.46667000" + }, + { + "id": "30162", + "name": "Wennigsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.27404000", + "longitude": "9.57287000" + }, + { + "id": "30165", + "name": "Wenzendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.34948000", + "longitude": "9.77234000" + }, + { + "id": "30175", + "name": "Werlte", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.85000000", + "longitude": "7.68333000" + }, + { + "id": "30186", + "name": "Werpeloh", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.87207000", + "longitude": "7.50831000" + }, + { + "id": "30194", + "name": "Wesendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60000000", + "longitude": "10.53333000" + }, + { + "id": "30199", + "name": "Weste", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.05943000", + "longitude": "10.70283000" + }, + { + "id": "30206", + "name": "Westergellersen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23333000", + "longitude": "10.25000000" + }, + { + "id": "30210", + "name": "Westerholt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60000000", + "longitude": "7.45000000" + }, + { + "id": "30215", + "name": "Westerstede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.25682000", + "longitude": "7.92737000" + }, + { + "id": "30217", + "name": "Westhagen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40425000", + "longitude": "10.73939000" + }, + { + "id": "30223", + "name": "Wetschen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61295000", + "longitude": "8.44883000" + }, + { + "id": "30234", + "name": "Weyhausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.46208000", + "longitude": "10.71699000" + }, + { + "id": "30238", + "name": "Wieda", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.63400000", + "longitude": "10.58704000" + }, + { + "id": "30240", + "name": "Wiedensahl", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38385000", + "longitude": "9.12019000" + }, + { + "id": "30244", + "name": "Wiefelstede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.25000000", + "longitude": "8.11667000" + }, + { + "id": "30249", + "name": "Wienhausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58021000", + "longitude": "10.18862000" + }, + { + "id": "30250", + "name": "Wieren", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.88529000", + "longitude": "10.65871000" + }, + { + "id": "30265", + "name": "Wiesmoor", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.41667000", + "longitude": "7.73333000" + }, + { + "id": "30267", + "name": "Wietmarschen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.51806000", + "longitude": "7.13408000" + }, + { + "id": "30268", + "name": "Wietze", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.65000000", + "longitude": "9.83333000" + }, + { + "id": "30269", + "name": "Wietzen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.71667000", + "longitude": "9.08333000" + }, + { + "id": "30270", + "name": "Wietzendorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.91667000", + "longitude": "9.98333000" + }, + { + "id": "30274", + "name": "Wildemann", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.82810000", + "longitude": "10.28152000" + }, + { + "id": "30278", + "name": "Wildeshausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.89446000", + "longitude": "8.43375000" + }, + { + "id": "30286", + "name": "Wilhelmshaven", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.52998000", + "longitude": "8.11253000" + }, + { + "id": "30302", + "name": "Wilstedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.19493000", + "longitude": "9.09595000" + }, + { + "id": "30304", + "name": "Wilsum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.53333000", + "longitude": "6.85000000" + }, + { + "id": "30317", + "name": "Windhausen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.78544000", + "longitude": "10.21218000" + }, + { + "id": "30322", + "name": "Wingst", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73572000", + "longitude": "9.08054000" + }, + { + "id": "30329", + "name": "Winsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.35753000", + "longitude": "10.21282000" + }, + { + "id": "30341", + "name": "Wirdum", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.47667000", + "longitude": "7.20594000" + }, + { + "id": "30344", + "name": "Wischhafen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78333000", + "longitude": "9.31667000" + }, + { + "id": "30347", + "name": "Wistedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.26667000", + "longitude": "9.68333000" + }, + { + "id": "30359", + "name": "Wittingen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.72694000", + "longitude": "10.73613000" + }, + { + "id": "30362", + "name": "Wittmar", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.12969000", + "longitude": "10.64000000" + }, + { + "id": "30363", + "name": "Wittmund", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57674000", + "longitude": "7.77839000" + }, + { + "id": "30365", + "name": "Wittorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.33333000", + "longitude": "10.38333000" + }, + { + "id": "30377", + "name": "Wolfenbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.16442000", + "longitude": "10.54095000" + }, + { + "id": "30385", + "name": "Wolfsburg", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42452000", + "longitude": "10.78150000" + }, + { + "id": "30399", + "name": "Wolsdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.19098000", + "longitude": "10.93878000" + }, + { + "id": "30401", + "name": "Woltersdorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.95000000", + "longitude": "11.21667000" + }, + { + "id": "30407", + "name": "Worpswede", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.21667000", + "longitude": "8.93333000" + }, + { + "id": "30408", + "name": "Wremen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65000000", + "longitude": "8.51667000" + }, + { + "id": "30409", + "name": "Wrestedt", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.90435000", + "longitude": "10.57494000" + }, + { + "id": "30410", + "name": "Wriedel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.03130000", + "longitude": "10.29848000" + }, + { + "id": "30414", + "name": "Wulfsen", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.30000000", + "longitude": "10.15000000" + }, + { + "id": "30415", + "name": "Wulften", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65999000", + "longitude": "10.17437000" + }, + { + "id": "30417", + "name": "Wulsbüttel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.31667000", + "longitude": "8.66667000" + }, + { + "id": "30419", + "name": "Wunstorf", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.42377000", + "longitude": "9.43585000" + }, + { + "id": "30432", + "name": "Wustrow", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "52.92370000", + "longitude": "11.12846000" + }, + { + "id": "30496", + "name": "Zernien", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.06845000", + "longitude": "10.88325000" + }, + { + "id": "30497", + "name": "Zetel", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.41667000", + "longitude": "7.98333000" + }, + { + "id": "30500", + "name": "Zeven", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "53.29657000", + "longitude": "9.27685000" + }, + { + "id": "30514", + "name": "Zorge", + "state_id": 3008, + "state_code": "NI", + "country_id": 82, + "country_code": "DE", + "latitude": "51.63333000", + "longitude": "10.63333000" + }, + { + "id": "23492", + "name": "Admannshagen-Bargeshagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13038000", + "longitude": "11.99915000" + }, + { + "id": "23502", + "name": "Ahlbeck", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66972000", + "longitude": "14.18622000" + }, + { + "id": "23576", + "name": "Alt Meteln", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.74709000", + "longitude": "11.34056000" + }, + { + "id": "23580", + "name": "Alt-Sanitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.81363000", + "longitude": "13.58786000" + }, + { + "id": "23586", + "name": "Altefähr", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.32994000", + "longitude": "13.12643000" + }, + { + "id": "23604", + "name": "Altenkirchen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.63624000", + "longitude": "13.34332000" + }, + { + "id": "23611", + "name": "Altenpleen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.35456000", + "longitude": "12.95640000" + }, + { + "id": "23617", + "name": "Altentreptow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69416000", + "longitude": "13.26504000" + }, + { + "id": "23635", + "name": "Altstadt", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.62805000", + "longitude": "11.41582000" + }, + { + "id": "23659", + "name": "Anklam", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.85637000", + "longitude": "13.68965000" + }, + { + "id": "23782", + "name": "Bad Doberan", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.10712000", + "longitude": "11.90051000" + }, + { + "id": "23814", + "name": "Bad Kleinen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.77134000", + "longitude": "11.47165000" + }, + { + "id": "23875", + "name": "Bad Sülze", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.11084000", + "longitude": "12.66054000" + }, + { + "id": "23923", + "name": "Banzkow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.52497000", + "longitude": "11.52306000" + }, + { + "id": "23943", + "name": "Bartenshagen-Parkentin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.08116000", + "longitude": "11.97849000" + }, + { + "id": "23944", + "name": "Barth", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.36346000", + "longitude": "12.72491000" + }, + { + "id": "23955", + "name": "Bastorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.12566000", + "longitude": "11.69695000" + }, + { + "id": "24473", + "name": "Börgerende-Rethwisch", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.14177000", + "longitude": "11.92528000" + }, + { + "id": "24510", + "name": "Bützow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.84832000", + "longitude": "11.98256000" + }, + { + "id": "24020", + "name": "Bentwisch", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.11503000", + "longitude": "12.20465000" + }, + { + "id": "24021", + "name": "Bentzin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.94608000", + "longitude": "13.27320000" + }, + { + "id": "24037", + "name": "Bergen auf Rügen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.41823000", + "longitude": "13.43349000" + }, + { + "id": "24066", + "name": "Bernitt", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.90403000", + "longitude": "11.88669000" + }, + { + "id": "24108", + "name": "Biendorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.07520000", + "longitude": "11.70127000" + }, + { + "id": "24172", + "name": "Blankensee", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.40390000", + "longitude": "13.26836000" + }, + { + "id": "24186", + "name": "Blowatz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.98972000", + "longitude": "11.53360000" + }, + { + "id": "24191", + "name": "Bobitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80450000", + "longitude": "11.35914000" + }, + { + "id": "24218", + "name": "Boizenburg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.38153000", + "longitude": "10.72375000" + }, + { + "id": "24249", + "name": "Born", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.38536000", + "longitude": "12.53051000" + }, + { + "id": "24256", + "name": "Borrentin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80968000", + "longitude": "12.96718000" + }, + { + "id": "24282", + "name": "Brandshagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.23945000", + "longitude": "13.16917000" + }, + { + "id": "24367", + "name": "Brüel", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73719000", + "longitude": "11.71471000" + }, + { + "id": "24373", + "name": "Brüsewitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.67588000", + "longitude": "11.24379000" + }, + { + "id": "24341", + "name": "Broderstorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.08114000", + "longitude": "12.26350000" + }, + { + "id": "24358", + "name": "Brunn", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.67076000", + "longitude": "13.37032000" + }, + { + "id": "24408", + "name": "Burg Stargard", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.49582000", + "longitude": "13.31122000" + }, + { + "id": "24444", + "name": "Burow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.77372000", + "longitude": "13.27318000" + }, + { + "id": "24522", + "name": "Carlow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75861000", + "longitude": "10.93789000" + }, + { + "id": "24524", + "name": "Carpin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.35691000", + "longitude": "13.24328000" + }, + { + "id": "24565", + "name": "Crivitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57316000", + "longitude": "11.65194000" + }, + { + "id": "24573", + "name": "Dabel", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66112000", + "longitude": "11.90025000" + }, + { + "id": "24595", + "name": "Dargun", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.90090000", + "longitude": "12.85014000" + }, + { + "id": "24601", + "name": "Dassow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.91096000", + "longitude": "10.97551000" + }, + { + "id": "24798", + "name": "Dömitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.14080000", + "longitude": "11.25017000" + }, + { + "id": "24806", + "name": "Dümmer", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57629000", + "longitude": "11.20497000" + }, + { + "id": "24627", + "name": "Demen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.62967000", + "longitude": "11.76639000" + }, + { + "id": "24629", + "name": "Demmin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.90762000", + "longitude": "13.03142000" + }, + { + "id": "24641", + "name": "Dersekow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.04583000", + "longitude": "13.29243000" + }, + { + "id": "24672", + "name": "Dierkow-Neu", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.10571000", + "longitude": "12.16753000" + }, + { + "id": "24673", + "name": "Dierkow-West", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.10608000", + "longitude": "12.15041000" + }, + { + "id": "24711", + "name": "Dobbertin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.62306000", + "longitude": "12.07466000" + }, + { + "id": "24728", + "name": "Domsühl", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48723000", + "longitude": "11.77099000" + }, + { + "id": "24756", + "name": "Dranske", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.63118000", + "longitude": "13.22831000" + }, + { + "id": "24774", + "name": "Ducherow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.76436000", + "longitude": "13.78216000" + }, + { + "id": "24781", + "name": "Dummerstorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.01484000", + "longitude": "12.22821000" + }, + { + "id": "24877", + "name": "Eggesin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.67973000", + "longitude": "14.07992000" + }, + { + "id": "24941", + "name": "Eldena", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.23191000", + "longitude": "11.41804000" + }, + { + "id": "24959", + "name": "Elmenhorst", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.15583000", + "longitude": "12.01084000" + }, + { + "id": "25157", + "name": "Feldstadt", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.62331000", + "longitude": "11.40673000" + }, + { + "id": "25164", + "name": "Ferdinandshof", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66124000", + "longitude": "13.88724000" + }, + { + "id": "25224", + "name": "Franzburg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.18501000", + "longitude": "12.88210000" + }, + { + "id": "25281", + "name": "Friedland", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.67028000", + "longitude": "13.55400000" + }, + { + "id": "25343", + "name": "Gadebusch", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.70137000", + "longitude": "11.11676000" + }, + { + "id": "25374", + "name": "Garz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.31843000", + "longitude": "13.35125000" + }, + { + "id": "25773", + "name": "Gägelow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68558000", + "longitude": "11.89639000" + }, + { + "id": "25782", + "name": "Görmin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.99092000", + "longitude": "13.27054000" + }, + { + "id": "25800", + "name": "Güstrow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.79720000", + "longitude": "12.17337000" + }, + { + "id": "25803", + "name": "Gützkow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.72432000", + "longitude": "13.10664000" + }, + { + "id": "25411", + "name": "Gelbensande", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.20272000", + "longitude": "12.30168000" + }, + { + "id": "25483", + "name": "Gielow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69756000", + "longitude": "12.74521000" + }, + { + "id": "25495", + "name": "Gingst", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.45654000", + "longitude": "13.25737000" + }, + { + "id": "25516", + "name": "Glowe", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.56911000", + "longitude": "13.46550000" + }, + { + "id": "25523", + "name": "Gnoien", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.96870000", + "longitude": "12.71099000" + }, + { + "id": "25531", + "name": "Goldberg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.58878000", + "longitude": "12.08855000" + }, + { + "id": "25559", + "name": "Grabow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.27966000", + "longitude": "11.56502000" + }, + { + "id": "25560", + "name": "Grabowhöfe", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56865000", + "longitude": "12.59482000" + }, + { + "id": "25574", + "name": "Gramkow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.92092000", + "longitude": "11.31740000" + }, + { + "id": "25592", + "name": "Greifswald", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.09311000", + "longitude": "13.38786000" + }, + { + "id": "25606", + "name": "Grevesmühlen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86337000", + "longitude": "11.19160000" + }, + { + "id": "25611", + "name": "Grimmen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.11215000", + "longitude": "13.04051000" + }, + { + "id": "25624", + "name": "Groß Kiesow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.01261000", + "longitude": "13.47851000" + }, + { + "id": "25628", + "name": "Groß Laasch", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.34646000", + "longitude": "11.54919000" + }, + { + "id": "25630", + "name": "Groß Miltzow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.53565000", + "longitude": "13.59354000" + }, + { + "id": "25632", + "name": "Groß Nemerow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.47342000", + "longitude": "13.22482000" + }, + { + "id": "25642", + "name": "Groß Wokern", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75135000", + "longitude": "12.49249000" + }, + { + "id": "25823", + "name": "Hagenow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.43134000", + "longitude": "11.19159000" + }, + { + "id": "26131", + "name": "Hiddensee", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.56689000", + "longitude": "13.10411000" + }, + { + "id": "26270", + "name": "Hornstorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.90994000", + "longitude": "11.53214000" + }, + { + "id": "26430", + "name": "Jarmen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.92385000", + "longitude": "13.34032000" + }, + { + "id": "26432", + "name": "Jatznick", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57951000", + "longitude": "13.93955000" + }, + { + "id": "26468", + "name": "Jördenstorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.87823000", + "longitude": "12.61619000" + }, + { + "id": "26475", + "name": "Jürgenshagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95417000", + "longitude": "11.89665000" + }, + { + "id": "26491", + "name": "Kalkhorst", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.97012000", + "longitude": "11.04469000" + }, + { + "id": "26516", + "name": "Karlshagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.11107000", + "longitude": "13.83193000" + }, + { + "id": "26547", + "name": "Kavelstorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.00596000", + "longitude": "12.19082000" + }, + { + "id": "26566", + "name": "Kemnitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.07723000", + "longitude": "13.53528000" + }, + { + "id": "26574", + "name": "Kessin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.72928000", + "longitude": "13.30773000" + }, + { + "id": "26700", + "name": "Klütz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.96470000", + "longitude": "11.16367000" + }, + { + "id": "26663", + "name": "Klein Rogahn", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60534000", + "longitude": "11.34579000" + }, + { + "id": "26690", + "name": "Klink", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.47758000", + "longitude": "12.62131000" + }, + { + "id": "26728", + "name": "Koserow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.05189000", + "longitude": "14.00197000" + }, + { + "id": "26737", + "name": "Krakow am See", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65163000", + "longitude": "12.27034000" + }, + { + "id": "26738", + "name": "Kramerhof", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.35366000", + "longitude": "13.05412000" + }, + { + "id": "26783", + "name": "Kröpelin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.06963000", + "longitude": "11.79473000" + }, + { + "id": "26785", + "name": "Kröslin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.11662000", + "longitude": "13.75067000" + }, + { + "id": "26764", + "name": "Kritzmow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.05237000", + "longitude": "12.05311000" + }, + { + "id": "26862", + "name": "Laage", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.92560000", + "longitude": "12.34694000" + }, + { + "id": "26878", + "name": "Lalendorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75774000", + "longitude": "12.38983000" + }, + { + "id": "26882", + "name": "Lambrechtshagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.10208000", + "longitude": "12.01645000" + }, + { + "id": "26947", + "name": "Lankow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.64983000", + "longitude": "11.36913000" + }, + { + "id": "26952", + "name": "Lassan", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.94874000", + "longitude": "13.85219000" + }, + { + "id": "27191", + "name": "Löcknitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.28694000", + "longitude": "11.78108000" + }, + { + "id": "27206", + "name": "Lübow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.85256000", + "longitude": "11.52440000" + }, + { + "id": "27207", + "name": "Lübstorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.72561000", + "longitude": "11.41471000" + }, + { + "id": "27208", + "name": "Lübtheen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.30118000", + "longitude": "11.08368000" + }, + { + "id": "27209", + "name": "Lübz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.46261000", + "longitude": "12.02917000" + }, + { + "id": "27214", + "name": "Lüdersdorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86835000", + "longitude": "11.74902000" + }, + { + "id": "27226", + "name": "Lützow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65345000", + "longitude": "11.17582000" + }, + { + "id": "27003", + "name": "Leezen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66265000", + "longitude": "11.49874000" + }, + { + "id": "27072", + "name": "Lewenberg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.64591000", + "longitude": "11.40767000" + }, + { + "id": "27128", + "name": "Loddin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.02252000", + "longitude": "14.00754000" + }, + { + "id": "27140", + "name": "Loitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.44205000", + "longitude": "13.38802000" + }, + { + "id": "27158", + "name": "Lubmin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13509000", + "longitude": "13.61687000" + }, + { + "id": "27166", + "name": "Ludwigslust", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.32917000", + "longitude": "11.49714000" + }, + { + "id": "27249", + "name": "Malchin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73990000", + "longitude": "12.76539000" + }, + { + "id": "27251", + "name": "Malchow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.47477000", + "longitude": "12.42210000" + }, + { + "id": "27255", + "name": "Malliß", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.21132000", + "longitude": "11.32716000" + }, + { + "id": "27320", + "name": "Marlow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.15439000", + "longitude": "12.57261000" + }, + { + "id": "27563", + "name": "Möllenhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.52388000", + "longitude": "12.92868000" + }, + { + "id": "27570", + "name": "Mönchhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.15146000", + "longitude": "12.21670000" + }, + { + "id": "27588", + "name": "Mühl Rosin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.76383000", + "longitude": "12.21388000" + }, + { + "id": "27594", + "name": "Mühlen Eichsen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75775000", + "longitude": "11.25006000" + }, + { + "id": "27360", + "name": "Mecklenburg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.84270000", + "longitude": "11.46330000" + }, + { + "id": "27432", + "name": "Mesekenhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.14846000", + "longitude": "13.31843000" + }, + { + "id": "27475", + "name": "Mirow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.50510000", + "longitude": "11.50294000" + }, + { + "id": "27689", + "name": "Neu Kaliß", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.17466000", + "longitude": "11.29446000" + }, + { + "id": "27700", + "name": "Neubrandenburg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56414000", + "longitude": "13.27532000" + }, + { + "id": "27704", + "name": "Neubukow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.03177000", + "longitude": "11.67391000" + }, + { + "id": "27706", + "name": "Neuburg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.40677000", + "longitude": "11.91742000" + }, + { + "id": "27722", + "name": "Neuenkirchen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.59729000", + "longitude": "13.36942000" + }, + { + "id": "27753", + "name": "Neukalen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.82275000", + "longitude": "12.79015000" + }, + { + "id": "27764", + "name": "Neukloster", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86548000", + "longitude": "11.68512000" + }, + { + "id": "27773", + "name": "Neumühle", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63171000", + "longitude": "11.37085000" + }, + { + "id": "27807", + "name": "Neustadt-Glewe", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.37846000", + "longitude": "11.59264000" + }, + { + "id": "27810", + "name": "Neustrelitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.36130000", + "longitude": "13.07292000" + }, + { + "id": "27818", + "name": "Neverin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.62067000", + "longitude": "13.33660000" + }, + { + "id": "27894", + "name": "Nienhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.14869000", + "longitude": "12.17434000" + }, + { + "id": "27896", + "name": "Niepars", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.31447000", + "longitude": "12.92447000" + }, + { + "id": "27935", + "name": "Nostorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.40656000", + "longitude": "10.65408000" + }, + { + "id": "28168", + "name": "Ostseebad Binz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.39995000", + "longitude": "13.61052000" + }, + { + "id": "28169", + "name": "Ostseebad Boltenhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.98779000", + "longitude": "11.20193000" + }, + { + "id": "28170", + "name": "Ostseebad Dierhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.29243000", + "longitude": "12.35799000" + }, + { + "id": "28171", + "name": "Ostseebad Göhren", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.34140000", + "longitude": "13.73823000" + }, + { + "id": "28172", + "name": "Ostseebad Kühlungsborn", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.15035000", + "longitude": "11.75994000" + }, + { + "id": "28173", + "name": "Ostseebad Prerow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.44469000", + "longitude": "12.57677000" + }, + { + "id": "28174", + "name": "Ostseebad Sellin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.37846000", + "longitude": "13.69394000" + }, + { + "id": "28175", + "name": "Ostseebad Zinnowitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.07668000", + "longitude": "13.91127000" + }, + { + "id": "28214", + "name": "Pampow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75513000", + "longitude": "12.60815000" + }, + { + "id": "28219", + "name": "Papendorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.03523000", + "longitude": "12.13263000" + }, + { + "id": "28222", + "name": "Parchim", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.42631000", + "longitude": "11.84875000" + }, + { + "id": "28229", + "name": "Pasewalk", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.50627000", + "longitude": "13.98997000" + }, + { + "id": "28236", + "name": "Paulsstadt", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63283000", + "longitude": "11.40372000" + }, + { + "id": "28252", + "name": "Penkun", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.29695000", + "longitude": "14.23616000" + }, + { + "id": "28257", + "name": "Penzlin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.50400000", + "longitude": "13.08407000" + }, + { + "id": "28305", + "name": "Pinnow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60164000", + "longitude": "11.54577000" + }, + { + "id": "28314", + "name": "Plate", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55145000", + "longitude": "11.50927000" + }, + { + "id": "28317", + "name": "Plau am See", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.45821000", + "longitude": "12.26246000" + }, + { + "id": "28358", + "name": "Poseritz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.29811000", + "longitude": "13.27492000" + }, + { + "id": "28372", + "name": "Preetz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.35017000", + "longitude": "12.98936000" + }, + { + "id": "28395", + "name": "Prohn", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.36901000", + "longitude": "13.02369000" + }, + { + "id": "28408", + "name": "Putbus", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.35511000", + "longitude": "13.47634000" + }, + { + "id": "28435", + "name": "Raben Steinfeld", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60141000", + "longitude": "11.50487000" + }, + { + "id": "28459", + "name": "Rambin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.35566000", + "longitude": "13.20445000" + }, + { + "id": "28482", + "name": "Rastow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.45709000", + "longitude": "11.43145000" + }, + { + "id": "28773", + "name": "Röbel", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.37555000", + "longitude": "12.60372000" + }, + { + "id": "28796", + "name": "Rövershagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.17668000", + "longitude": "12.24276000" + }, + { + "id": "28502", + "name": "Rechlin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.33549000", + "longitude": "12.72543000" + }, + { + "id": "28534", + "name": "Rehna", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.77877000", + "longitude": "11.04929000" + }, + { + "id": "28556", + "name": "Reinberg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.67484000", + "longitude": "13.14417000" + }, + { + "id": "28586", + "name": "Retgendorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.72922000", + "longitude": "11.50359000" + }, + { + "id": "28589", + "name": "Retschow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.04552000", + "longitude": "11.87780000" + }, + { + "id": "28621", + "name": "Ribnitz-Damgarten", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.24220000", + "longitude": "12.45666000" + }, + { + "id": "28622", + "name": "Richtenberg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.20131000", + "longitude": "12.89409000" + }, + { + "id": "28684", + "name": "Roggendorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69292000", + "longitude": "11.01440000" + }, + { + "id": "28685", + "name": "Roggentin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.07070000", + "longitude": "12.20424000" + }, + { + "id": "28708", + "name": "Rosenow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.62966000", + "longitude": "13.03849000" + }, + { + "id": "28715", + "name": "Rostock", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.08870000", + "longitude": "12.14049000" + }, + { + "id": "28811", + "name": "Saal", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.31051000", + "longitude": "12.49935000" + }, + { + "id": "28900", + "name": "Saßnitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.51570000", + "longitude": "13.64451000" + }, + { + "id": "28828", + "name": "Sagard", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.52556000", + "longitude": "13.55387000" + }, + { + "id": "28848", + "name": "Samtens", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.35481000", + "longitude": "13.29311000" + }, + { + "id": "28891", + "name": "Satow-Oberhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.99545000", + "longitude": "11.88466000" + }, + { + "id": "29503", + "name": "Sülstorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.50931000", + "longitude": "11.37463000" + }, + { + "id": "28924", + "name": "Schelfstadt", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63382000", + "longitude": "11.41711000" + }, + { + "id": "28959", + "name": "Schlagsdorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73363000", + "longitude": "10.82556000" + }, + { + "id": "29038", + "name": "Schwaan", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.94047000", + "longitude": "12.10715000" + }, + { + "id": "29090", + "name": "Schwerin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.62937000", + "longitude": "11.41316000" + }, + { + "id": "29144", + "name": "Seebad Bansin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.97102000", + "longitude": "14.14147000" + }, + { + "id": "29145", + "name": "Seebad Heringsdorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95379000", + "longitude": "14.16852000" + }, + { + "id": "29154", + "name": "Seeheilbad Graal-Müritz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.25124000", + "longitude": "12.25139000" + }, + { + "id": "29156", + "name": "Seehof", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69249000", + "longitude": "11.43256000" + }, + { + "id": "29169", + "name": "Sehlen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.37971000", + "longitude": "13.38907000" + }, + { + "id": "29180", + "name": "Sellin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.88495000", + "longitude": "11.60790000" + }, + { + "id": "29182", + "name": "Selmsdorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.88224000", + "longitude": "10.85997000" + }, + { + "id": "29225", + "name": "Siggelkow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.38742000", + "longitude": "11.93802000" + }, + { + "id": "29304", + "name": "Spornitz", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.40749000", + "longitude": "11.71864000" + }, + { + "id": "29448", + "name": "Stäbelow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.04119000", + "longitude": "12.02336000" + }, + { + "id": "29377", + "name": "Steinhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.22616000", + "longitude": "12.98867000" + }, + { + "id": "29401", + "name": "Sternberg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.71236000", + "longitude": "11.82678000" + }, + { + "id": "29424", + "name": "Stralendorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.57498000", + "longitude": "11.30356000" + }, + { + "id": "29425", + "name": "Stralsund", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.30911000", + "longitude": "13.08180000" + }, + { + "id": "29427", + "name": "Strasburg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.51030000", + "longitude": "13.74513000" + }, + { + "id": "29464", + "name": "Sukow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.54428000", + "longitude": "11.56194000" + }, + { + "id": "29530", + "name": "Tarnow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.77941000", + "longitude": "12.01785000" + }, + { + "id": "29561", + "name": "Tessin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.02764000", + "longitude": "12.46519000" + }, + { + "id": "29562", + "name": "Teterow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.77545000", + "longitude": "12.57487000" + }, + { + "id": "29633", + "name": "Torgelow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63415000", + "longitude": "14.01346000" + }, + { + "id": "29665", + "name": "Tribsees", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.09556000", + "longitude": "12.75683000" + }, + { + "id": "29671", + "name": "Trinwillershagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.25048000", + "longitude": "12.62312000" + }, + { + "id": "29679", + "name": "Trollenhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60706000", + "longitude": "13.29103000" + }, + { + "id": "29693", + "name": "Tutow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.91566000", + "longitude": "13.24814000" + }, + { + "id": "29719", + "name": "Ueckermünde", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73795000", + "longitude": "14.04473000" + }, + { + "id": "29797", + "name": "Usedom", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.87537000", + "longitude": "13.92394000" + }, + { + "id": "29827", + "name": "Velgast", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.27204000", + "longitude": "12.81075000" + }, + { + "id": "29844", + "name": "Viereck", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.54898000", + "longitude": "14.04001000" + }, + { + "id": "29907", + "name": "Wackerow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.67683000", + "longitude": "12.98164000" + }, + { + "id": "30014", + "name": "Wardow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.93054000", + "longitude": "12.40818000" + }, + { + "id": "30015", + "name": "Waren", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.52040000", + "longitude": "12.67985000" + }, + { + "id": "30017", + "name": "Warin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80026000", + "longitude": "11.70504000" + }, + { + "id": "30020", + "name": "Warnemünde", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.17670000", + "longitude": "12.08402000" + }, + { + "id": "30022", + "name": "Warnow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78580000", + "longitude": "11.88106000" + }, + { + "id": "30042", + "name": "Wattmannshagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.77590000", + "longitude": "12.40701000" + }, + { + "id": "30116", + "name": "Weitenhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.05372000", + "longitude": "13.40998000" + }, + { + "id": "30159", + "name": "Wendorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.25540000", + "longitude": "13.07682000" + }, + { + "id": "30171", + "name": "Werdervorstadt", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63909000", + "longitude": "11.42767000" + }, + { + "id": "30193", + "name": "Wesenberg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.28030000", + "longitude": "12.96936000" + }, + { + "id": "30222", + "name": "Weststadt", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63472000", + "longitude": "11.39565000" + }, + { + "id": "30247", + "name": "Wiek", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.62000000", + "longitude": "13.28914000" + }, + { + "id": "30345", + "name": "Wismar", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.89314000", + "longitude": "11.45286000" + }, + { + "id": "30353", + "name": "Wittenburg", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.50599000", + "longitude": "11.08049000" + }, + { + "id": "30354", + "name": "Wittenförden", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.62917000", + "longitude": "11.32982000" + }, + { + "id": "30355", + "name": "Wittenhagen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.18379000", + "longitude": "13.07133000" + }, + { + "id": "30373", + "name": "Woldegk", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.46058000", + "longitude": "13.58356000" + }, + { + "id": "30389", + "name": "Wolgast", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.05275000", + "longitude": "13.77201000" + }, + { + "id": "30416", + "name": "Wulkenzin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.54445000", + "longitude": "13.16921000" + }, + { + "id": "30428", + "name": "Wusterhusen", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.11312000", + "longitude": "13.61608000" + }, + { + "id": "30431", + "name": "Wustrow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.47765000", + "longitude": "13.15569000" + }, + { + "id": "30472", + "name": "Zarrendorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.23689000", + "longitude": "13.10094000" + }, + { + "id": "30473", + "name": "Zarrentin", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55075000", + "longitude": "10.91550000" + }, + { + "id": "30544", + "name": "Züssow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.97709000", + "longitude": "13.54855000" + }, + { + "id": "30506", + "name": "Ziesendorf", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.99433000", + "longitude": "12.03933000" + }, + { + "id": "30509", + "name": "Zingst", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "54.43572000", + "longitude": "12.68880000" + }, + { + "id": "30527", + "name": "Zurow", + "state_id": 3007, + "state_code": "MV", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86429000", + "longitude": "11.61434000" + }, + { + "id": "23463", + "name": "Aachen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77664000", + "longitude": "6.08342000" + }, + { + "id": "23500", + "name": "Ahaus", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.07936000", + "longitude": "7.01344000" + }, + { + "id": "23504", + "name": "Ahlen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76338000", + "longitude": "7.88870000" + }, + { + "id": "23542", + "name": "Aldenhoven", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90000000", + "longitude": "6.28333000" + }, + { + "id": "23552", + "name": "Alfter", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73333000", + "longitude": "7.01667000" + }, + { + "id": "23564", + "name": "Alpen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58333000", + "longitude": "6.51667000" + }, + { + "id": "23568", + "name": "Alsdorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87673000", + "longitude": "6.16399000" + }, + { + "id": "23589", + "name": "Altena", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29472000", + "longitude": "7.67337000" + }, + { + "id": "23597", + "name": "Altenbüren", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38634000", + "longitude": "8.50584000" + }, + { + "id": "23592", + "name": "Altenbeken", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76455000", + "longitude": "8.94201000" + }, + { + "id": "23594", + "name": "Altenberge", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.05000000", + "longitude": "7.46667000" + }, + { + "id": "23636", + "name": "Altstadt Nord", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93893000", + "longitude": "6.95752000" + }, + { + "id": "23637", + "name": "Altstadt Sud", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93331000", + "longitude": "6.95954000" + }, + { + "id": "23665", + "name": "Anröchte", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56667000", + "longitude": "8.33333000" + }, + { + "id": "23686", + "name": "Arnsberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38333000", + "longitude": "8.08333000" + }, + { + "id": "23705", + "name": "Ascheberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.78333000", + "longitude": "7.61667000" + }, + { + "id": "23714", + "name": "Attendorn", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12645000", + "longitude": "7.90333000" + }, + { + "id": "23732", + "name": "Augustdorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.90944000", + "longitude": "8.73173000" + }, + { + "id": "30553", + "name": "Übach-Palenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91775000", + "longitude": "6.12336000" + }, + { + "id": "23768", + "name": "Bad Berleburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05224000", + "longitude": "8.39227000" + }, + { + "id": "23783", + "name": "Bad Driburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73297000", + "longitude": "9.01969000" + }, + { + "id": "23797", + "name": "Bad Fredeburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18930000", + "longitude": "8.30978000" + }, + { + "id": "23807", + "name": "Bad Holzhausen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28971000", + "longitude": "8.53954000" + }, + { + "id": "23809", + "name": "Bad Honnef", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64336000", + "longitude": "7.22780000" + }, + { + "id": "23822", + "name": "Bad Laasphe", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93139000", + "longitude": "8.42502000" + }, + { + "id": "23831", + "name": "Bad Lippspringe", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.78333000", + "longitude": "8.81683000" + }, + { + "id": "23839", + "name": "Bad Münstereifel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55667000", + "longitude": "6.76424000" + }, + { + "id": "23834", + "name": "Bad Meinberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.89588000", + "longitude": "8.98313000" + }, + { + "id": "23844", + "name": "Bad Oeynhausen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20699000", + "longitude": "8.80365000" + }, + { + "id": "23857", + "name": "Bad Salzuflen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08620000", + "longitude": "8.74434000" + }, + { + "id": "23859", + "name": "Bad Sassendorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58333000", + "longitude": "8.16667000" + }, + { + "id": "23898", + "name": "Baesweiler", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90964000", + "longitude": "6.18874000" + }, + { + "id": "23914", + "name": "Balve", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.33150000", + "longitude": "7.86424000" + }, + { + "id": "23918", + "name": "Bamenohl", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16527000", + "longitude": "7.98412000" + }, + { + "id": "23940", + "name": "Barntrup", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.99038000", + "longitude": "9.11642000" + }, + { + "id": "23965", + "name": "Bayenthal", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91218000", + "longitude": "6.96799000" + }, + { + "id": "24469", + "name": "Bönen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.60000000", + "longitude": "7.76667000" + }, + { + "id": "24500", + "name": "Bünde", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.19837000", + "longitude": "8.58644000" + }, + { + "id": "24501", + "name": "Büren", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55109000", + "longitude": "8.55956000" + }, + { + "id": "23979", + "name": "Beckum", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.75571000", + "longitude": "8.04075000" + }, + { + "id": "23980", + "name": "Bedburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99258000", + "longitude": "6.57128000" + }, + { + "id": "23982", + "name": "Beelen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.92906000", + "longitude": "8.11117000" + }, + { + "id": "24039", + "name": "Bergheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95572000", + "longitude": "6.63986000" + }, + { + "id": "24041", + "name": "Bergisch Gladbach", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98560000", + "longitude": "7.13298000" + }, + { + "id": "24042", + "name": "Bergkamen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61633000", + "longitude": "7.64451000" + }, + { + "id": "24045", + "name": "Bergneustadt", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02496000", + "longitude": "7.65599000" + }, + { + "id": "24080", + "name": "Bestwig", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36081000", + "longitude": "8.40082000" + }, + { + "id": "24093", + "name": "Beverungen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66801000", + "longitude": "9.37417000" + }, + { + "id": "24107", + "name": "Bielefeld", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.03333000", + "longitude": "8.53333000" + }, + { + "id": "24116", + "name": "Bilderstoeckchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96983000", + "longitude": "6.92997000" + }, + { + "id": "24117", + "name": "Billerbeck", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.97829000", + "longitude": "7.29261000" + }, + { + "id": "24131", + "name": "Birgte", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.24790000", + "longitude": "7.64833000" + }, + { + "id": "24169", + "name": "Blankenheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43333000", + "longitude": "6.65000000" + }, + { + "id": "24184", + "name": "Blomberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.94331000", + "longitude": "9.09067000" + }, + { + "id": "24192", + "name": "Bocholt", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83879000", + "longitude": "6.61531000" + }, + { + "id": "24193", + "name": "Bochum", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.48165000", + "longitude": "7.21648000" + }, + { + "id": "24194", + "name": "Bochum-Hordel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50168000", + "longitude": "7.17560000" + }, + { + "id": "24231", + "name": "Bonn", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73438000", + "longitude": "7.09549000" + }, + { + "id": "24240", + "name": "Borgentreich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56917000", + "longitude": "9.24113000" + }, + { + "id": "24242", + "name": "Borgholzhausen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.10343000", + "longitude": "8.30211000" + }, + { + "id": "24244", + "name": "Borken", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.84382000", + "longitude": "6.85774000" + }, + { + "id": "24253", + "name": "Bornheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76313000", + "longitude": "6.99089000" + }, + { + "id": "24263", + "name": "Bottrop", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52392000", + "longitude": "6.92850000" + }, + { + "id": "24274", + "name": "Brakel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.71750000", + "longitude": "9.18596000" + }, + { + "id": "24369", + "name": "Brüggen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24053000", + "longitude": "6.18376000" + }, + { + "id": "24372", + "name": "Brühl", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82928000", + "longitude": "6.90499000" + }, + { + "id": "24292", + "name": "Breckerfeld", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25926000", + "longitude": "7.46807000" + }, + { + "id": "24335", + "name": "Brilon", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39462000", + "longitude": "8.57146000" + }, + { + "id": "24389", + "name": "Buchforst", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95093000", + "longitude": "7.00579000" + }, + { + "id": "24390", + "name": "Buchheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95152000", + "longitude": "7.02093000" + }, + { + "id": "24405", + "name": "Burbach", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75105000", + "longitude": "8.07939000" + }, + { + "id": "24445", + "name": "Burscheid", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08468000", + "longitude": "7.11393000" + }, + { + "id": "24526", + "name": "Castrop-Rauxel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55657000", + "longitude": "7.31155000" + }, + { + "id": "24547", + "name": "Coesfeld", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.94349000", + "longitude": "7.16809000" + }, + { + "id": "24577", + "name": "Dahlem", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38607000", + "longitude": "6.54768000" + }, + { + "id": "24602", + "name": "Datteln", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65598000", + "longitude": "7.34530000" + }, + { + "id": "24799", + "name": "Dörentrup", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.04109000", + "longitude": "9.00278000" + }, + { + "id": "24805", + "name": "Dülmen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83149000", + "longitude": "7.28075000" + }, + { + "id": "24810", + "name": "Düren", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80434000", + "longitude": "6.49299000" + }, + { + "id": "24817", + "name": "Düsseldorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.22172000", + "longitude": "6.77616000" + }, + { + "id": "24818", + "name": "Düsseldorf District", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40000000", + "longitude": "6.60000000" + }, + { + "id": "24819", + "name": "Düsseldorf-Pempelfort", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23812000", + "longitude": "6.78678000" + }, + { + "id": "24621", + "name": "Delbrück", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76503000", + "longitude": "8.56223000" + }, + { + "id": "24647", + "name": "Detmold", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.93855000", + "longitude": "8.87318000" + }, + { + "id": "24659", + "name": "Deutz", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93463000", + "longitude": "6.97495000" + }, + { + "id": "24698", + "name": "Dinslaken", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56227000", + "longitude": "6.74340000" + }, + { + "id": "24738", + "name": "Dormagen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09683000", + "longitude": "6.83167000" + }, + { + "id": "24746", + "name": "Dorsten", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66166000", + "longitude": "6.96514000" + }, + { + "id": "24747", + "name": "Dortmund", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.51494000", + "longitude": "7.46600000" + }, + { + "id": "24761", + "name": "Dreierwalde", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.33194000", + "longitude": "7.50333000" + }, + { + "id": "24766", + "name": "Drensteinfurt", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79535000", + "longitude": "7.73815000" + }, + { + "id": "24771", + "name": "Drolshagen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02358000", + "longitude": "7.77355000" + }, + { + "id": "24780", + "name": "Duisburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43247000", + "longitude": "6.76516000" + }, + { + "id": "24912", + "name": "Eil", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89362000", + "longitude": "7.07967000" + }, + { + "id": "24937", + "name": "Eitorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76667000", + "longitude": "7.45000000" + }, + { + "id": "24963", + "name": "Elsdorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93739000", + "longitude": "6.56828000" + }, + { + "id": "24989", + "name": "Emmerich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83933000", + "longitude": "6.24792000" + }, + { + "id": "24994", + "name": "Emsdetten", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.17340000", + "longitude": "7.52781000" + }, + { + "id": "25003", + "name": "Engelskirchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98854000", + "longitude": "7.41391000" + }, + { + "id": "25006", + "name": "Enger", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.14063000", + "longitude": "8.55772000" + }, + { + "id": "25010", + "name": "Ennepetal", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29848000", + "longitude": "7.36290000" + }, + { + "id": "25012", + "name": "Ennigerloh", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83843000", + "longitude": "8.03093000" + }, + { + "id": "25037", + "name": "Erftstadt", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81481000", + "longitude": "6.79387000" + }, + { + "id": "25045", + "name": "Erkelenz", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.07947000", + "longitude": "6.31531000" + }, + { + "id": "25050", + "name": "Erkrath", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.22235000", + "longitude": "6.90831000" + }, + { + "id": "25063", + "name": "Erndtebrück", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98927000", + "longitude": "8.25288000" + }, + { + "id": "25071", + "name": "Erwitte", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61270000", + "longitude": "8.33840000" + }, + { + "id": "25085", + "name": "Eschweiler", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81854000", + "longitude": "6.27184000" + }, + { + "id": "25088", + "name": "Eslohe", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25369000", + "longitude": "8.16949000" + }, + { + "id": "25089", + "name": "Espelkamp", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.38251000", + "longitude": "8.62127000" + }, + { + "id": "25095", + "name": "Essen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45657000", + "longitude": "7.01228000" + }, + { + "id": "25116", + "name": "Euskirchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66057000", + "longitude": "6.78722000" + }, + { + "id": "25120", + "name": "Everswinkel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.92595000", + "longitude": "7.84690000" + }, + { + "id": "25172", + "name": "Finnentrop", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16800000", + "longitude": "7.97300000" + }, + { + "id": "25311", + "name": "Fröndenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.47563000", + "longitude": "7.76946000" + }, + { + "id": "25234", + "name": "Frechen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91485000", + "longitude": "6.81180000" + }, + { + "id": "25256", + "name": "Freudenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89741000", + "longitude": "7.87415000" + }, + { + "id": "25357", + "name": "Gangelt", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99247000", + "longitude": "5.99802000" + }, + { + "id": "25802", + "name": "Gütersloh", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.90693000", + "longitude": "8.37853000" + }, + { + "id": "25396", + "name": "Geilenkirchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96745000", + "longitude": "6.11763000" + }, + { + "id": "25412", + "name": "Geldern", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.51908000", + "longitude": "6.32363000" + }, + { + "id": "25416", + "name": "Gelsenkirchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50508000", + "longitude": "7.09654000" + }, + { + "id": "25468", + "name": "Gescher", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.95400000", + "longitude": "7.00481000" + }, + { + "id": "25471", + "name": "Geseke", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.64091000", + "longitude": "8.51090000" + }, + { + "id": "25478", + "name": "Gevelsberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31971000", + "longitude": "7.33920000" + }, + { + "id": "25499", + "name": "Gladbeck", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57077000", + "longitude": "6.98593000" + }, + { + "id": "25525", + "name": "Goch", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.67873000", + "longitude": "6.15895000" + }, + { + "id": "25589", + "name": "Grefrath", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.33630000", + "longitude": "6.34072000" + }, + { + "id": "25596", + "name": "Gremberghoven", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90152000", + "longitude": "7.06129000" + }, + { + "id": "25604", + "name": "Greven", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.09364000", + "longitude": "7.59396000" + }, + { + "id": "25605", + "name": "Grevenbroich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09102000", + "longitude": "6.58270000" + }, + { + "id": "25614", + "name": "Gronau", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21099000", + "longitude": "7.02238000" + }, + { + "id": "25752", + "name": "Gummersbach", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02608000", + "longitude": "7.56473000" + }, + { + "id": "25806", + "name": "Haan", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19382000", + "longitude": "7.01330000" + }, + { + "id": "25818", + "name": "Hagen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36081000", + "longitude": "7.47168000" + }, + { + "id": "25851", + "name": "Halle", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.06007000", + "longitude": "8.36083000" + }, + { + "id": "25855", + "name": "Hallenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11115000", + "longitude": "8.62008000" + }, + { + "id": "25861", + "name": "Haltern am See", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.74297000", + "longitude": "7.18163000" + }, + { + "id": "25862", + "name": "Halver", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18612000", + "longitude": "7.49817000" + }, + { + "id": "25873", + "name": "Hamm", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.68033000", + "longitude": "7.82089000" + }, + { + "id": "25880", + "name": "Hamminkeln", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73262000", + "longitude": "6.59031000" + }, + { + "id": "25908", + "name": "Harsewinkel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96224000", + "longitude": "8.22766000" + }, + { + "id": "25940", + "name": "Hattingen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39894000", + "longitude": "7.18557000" + }, + { + "id": "25958", + "name": "Havixbeck", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.98333000", + "longitude": "7.41667000" + }, + { + "id": "26309", + "name": "Höhenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93323000", + "longitude": "7.04138000" + }, + { + "id": "26321", + "name": "Hörstel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.29763000", + "longitude": "7.58382000" + }, + { + "id": "26326", + "name": "Hövelhof", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.81667000", + "longitude": "8.65000000" + }, + { + "id": "26327", + "name": "Höxter", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.77501000", + "longitude": "9.38155000" + }, + { + "id": "26328", + "name": "Hückelhoven", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05550000", + "longitude": "6.22658000" + }, + { + "id": "26329", + "name": "Hückeswagen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14979000", + "longitude": "7.34471000" + }, + { + "id": "26335", + "name": "Hüllhorst", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28333000", + "longitude": "8.66667000" + }, + { + "id": "26338", + "name": "Hünxe", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.63405000", + "longitude": "6.69741000" + }, + { + "id": "26339", + "name": "Hürtgenwald", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71667000", + "longitude": "6.36667000" + }, + { + "id": "26340", + "name": "Hürth", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87079000", + "longitude": "6.86761000" + }, + { + "id": "25974", + "name": "Heek", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11667000", + "longitude": "7.10000000" + }, + { + "id": "25983", + "name": "Heiden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83333000", + "longitude": "6.93333000" + }, + { + "id": "25998", + "name": "Heiligenhaus", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.32662000", + "longitude": "6.97106000" + }, + { + "id": "26005", + "name": "Heimbach", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63693000", + "longitude": "6.46896000" + }, + { + "id": "26015", + "name": "Heinsberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06358000", + "longitude": "6.09980000" + }, + { + "id": "26025", + "name": "Hellenthal", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48333000", + "longitude": "6.43333000" + }, + { + "id": "26038", + "name": "Hemer", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38707000", + "longitude": "7.77019000" + }, + { + "id": "26050", + "name": "Hennef", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77555000", + "longitude": "7.28308000" + }, + { + "id": "26063", + "name": "Herdecke", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39999000", + "longitude": "7.43584000" + }, + { + "id": "26067", + "name": "Herford", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11457000", + "longitude": "8.67343000" + }, + { + "id": "26083", + "name": "Herne", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53880000", + "longitude": "7.22572000" + }, + { + "id": "26094", + "name": "Herscheid", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17901000", + "longitude": "7.74355000" + }, + { + "id": "26096", + "name": "Herten", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.59638000", + "longitude": "7.14387000" + }, + { + "id": "26103", + "name": "Herzogenrath", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86874000", + "longitude": "6.09317000" + }, + { + "id": "26130", + "name": "Hiddenhausen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.16667000", + "longitude": "8.61667000" + }, + { + "id": "26133", + "name": "Hilchenbach", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99687000", + "longitude": "8.11062000" + }, + { + "id": "26135", + "name": "Hilden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16818000", + "longitude": "6.93093000" + }, + { + "id": "26142", + "name": "Hille", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.33333000", + "longitude": "8.75000000" + }, + { + "id": "26175", + "name": "Hochfeld", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41943000", + "longitude": "6.75462000" + }, + { + "id": "26250", + "name": "Holzwickede", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50000000", + "longitude": "7.63333000" + }, + { + "id": "26258", + "name": "Hordel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49784000", + "longitude": "7.17620000" + }, + { + "id": "26264", + "name": "Horn", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.87151000", + "longitude": "8.94510000" + }, + { + "id": "26274", + "name": "Horstmar", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08098000", + "longitude": "7.30539000" + }, + { + "id": "26283", + "name": "Humboldtkolonie", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93182000", + "longitude": "6.99469000" + }, + { + "id": "26346", + "name": "Ibbenbüren", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.27964000", + "longitude": "7.71457000" + }, + { + "id": "26387", + "name": "Inden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.84306000", + "longitude": "6.36004000" + }, + { + "id": "26413", + "name": "Iserlohn", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.37547000", + "longitude": "7.70281000" + }, + { + "id": "26418", + "name": "Isselburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83232000", + "longitude": "6.46428000" + }, + { + "id": "26419", + "name": "Issum", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53333000", + "longitude": "6.43333000" + }, + { + "id": "26470", + "name": "Jüchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10000000", + "longitude": "6.50000000" + }, + { + "id": "26473", + "name": "Jülich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92149000", + "longitude": "6.36267000" + }, + { + "id": "26477", + "name": "Kaarst", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.22929000", + "longitude": "6.61883000" + }, + { + "id": "26489", + "name": "Kalk", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94013000", + "longitude": "7.00605000" + }, + { + "id": "26490", + "name": "Kalkar", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73907000", + "longitude": "6.29101000" + }, + { + "id": "26492", + "name": "Kall", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54223000", + "longitude": "6.56297000" + }, + { + "id": "26499", + "name": "Kamen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.59231000", + "longitude": "7.66380000" + }, + { + "id": "26503", + "name": "Kamp-Lintfort", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50467000", + "longitude": "6.54587000" + }, + { + "id": "26818", + "name": "Köln", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93333000", + "longitude": "6.95000000" + }, + { + "id": "26839", + "name": "Königswinter", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68376000", + "longitude": "7.18675000" + }, + { + "id": "26860", + "name": "Kürten", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05000000", + "longitude": "7.26667000" + }, + { + "id": "26567", + "name": "Kempen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36432000", + "longitude": "6.41858000" + }, + { + "id": "26572", + "name": "Kerpen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86991000", + "longitude": "6.69691000" + }, + { + "id": "26580", + "name": "Kevelaer", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58243000", + "longitude": "6.24603000" + }, + { + "id": "26586", + "name": "Kierspe", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13403000", + "longitude": "7.59075000" + }, + { + "id": "26627", + "name": "Kirchhundem", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08556000", + "longitude": "8.08893000" + }, + { + "id": "26629", + "name": "Kirchlengern", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20000000", + "longitude": "8.63333000" + }, + { + "id": "26662", + "name": "Klein Reken", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.78710000", + "longitude": "7.04367000" + }, + { + "id": "26683", + "name": "Kleve", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.78826000", + "longitude": "6.13865000" + }, + { + "id": "26726", + "name": "Korschenbroich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19139000", + "longitude": "6.51352000" + }, + { + "id": "26739", + "name": "Kranenburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.78333000", + "longitude": "6.01667000" + }, + { + "id": "26746", + "name": "Krefeld", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.33645000", + "longitude": "6.55381000" + }, + { + "id": "26755", + "name": "Kreuzau", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74699000", + "longitude": "6.49069000" + }, + { + "id": "26757", + "name": "Kreuztal", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96775000", + "longitude": "7.98848000" + }, + { + "id": "26870", + "name": "Ladbergen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.13333000", + "longitude": "7.75000000" + }, + { + "id": "26873", + "name": "Laer", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.05555000", + "longitude": "7.35775000" + }, + { + "id": "26874", + "name": "Lage", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.99223000", + "longitude": "8.79301000" + }, + { + "id": "26909", + "name": "Langenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.77206000", + "longitude": "8.31809000" + }, + { + "id": "26918", + "name": "Langenfeld", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10821000", + "longitude": "6.94831000" + }, + { + "id": "26935", + "name": "Langerwehe", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81667000", + "longitude": "6.35000000" + }, + { + "id": "26949", + "name": "Lanstrop", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57504000", + "longitude": "7.56752000" + }, + { + "id": "27195", + "name": "Löhne", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18848000", + "longitude": "8.69220000" + }, + { + "id": "27202", + "name": "Lübbecke", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30699000", + "longitude": "8.61423000" + }, + { + "id": "27211", + "name": "Lüdenscheid", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.21977000", + "longitude": "7.62730000" + }, + { + "id": "27216", + "name": "Lüdinghausen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76830000", + "longitude": "7.44379000" + }, + { + "id": "27217", + "name": "Lügde", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.95828000", + "longitude": "9.24706000" + }, + { + "id": "27219", + "name": "Lünen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61634000", + "longitude": "7.52872000" + }, + { + "id": "27005", + "name": "Legden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.03333000", + "longitude": "7.10000000" + }, + { + "id": "27016", + "name": "Leichlingen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10628000", + "longitude": "7.01873000" + }, + { + "id": "27035", + "name": "Lemgo", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.02786000", + "longitude": "8.89901000" + }, + { + "id": "27044", + "name": "Lengerich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18661000", + "longitude": "7.86043000" + }, + { + "id": "27046", + "name": "Lennestadt", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11721000", + "longitude": "8.06707000" + }, + { + "id": "27054", + "name": "Leopoldshöhe", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.01246000", + "longitude": "8.69834000" + }, + { + "id": "27071", + "name": "Leverkusen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.03030000", + "longitude": "6.98432000" + }, + { + "id": "27075", + "name": "Lichtenau", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61707000", + "longitude": "8.89665000" + }, + { + "id": "27093", + "name": "Lienen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15000000", + "longitude": "7.98333000" + }, + { + "id": "27111", + "name": "Lindlar", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01959000", + "longitude": "7.37758000" + }, + { + "id": "27117", + "name": "Linnich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98002000", + "longitude": "6.27049000" + }, + { + "id": "27120", + "name": "Lippstadt", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.67369000", + "longitude": "8.34482000" + }, + { + "id": "27133", + "name": "Lohmar", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83868000", + "longitude": "7.21399000" + }, + { + "id": "27153", + "name": "Lotte", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28333000", + "longitude": "7.91667000" + }, + { + "id": "27277", + "name": "Marienheide", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08317000", + "longitude": "7.53087000" + }, + { + "id": "27318", + "name": "Marl", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65671000", + "longitude": "7.09038000" + }, + { + "id": "27325", + "name": "Marsberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46171000", + "longitude": "8.84949000" + }, + { + "id": "27561", + "name": "Möhnesee", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50000000", + "longitude": "8.13333000" + }, + { + "id": "27568", + "name": "Mönchengladbach", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18539000", + "longitude": "6.44172000" + }, + { + "id": "27604", + "name": "Mülheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43218000", + "longitude": "6.87967000" + }, + { + "id": "27621", + "name": "Münster", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96236000", + "longitude": "7.62571000" + }, + { + "id": "27354", + "name": "Mechernich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.59304000", + "longitude": "6.65224000" + }, + { + "id": "27358", + "name": "Meckenheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62388000", + "longitude": "7.02942000" + }, + { + "id": "27362", + "name": "Medebach", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19713000", + "longitude": "8.70635000" + }, + { + "id": "27367", + "name": "Meerbusch", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25268000", + "longitude": "6.68807000" + }, + { + "id": "27375", + "name": "Mehrhoog", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73826000", + "longitude": "6.51164000" + }, + { + "id": "27380", + "name": "Meiderich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46667000", + "longitude": "6.76667000" + }, + { + "id": "27382", + "name": "Meinerzhagen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10740000", + "longitude": "7.64838000" + }, + { + "id": "27404", + "name": "Menden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44337000", + "longitude": "7.77825000" + }, + { + "id": "27407", + "name": "Mengenich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97850000", + "longitude": "6.86737000" + }, + { + "id": "27431", + "name": "Meschede", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35020000", + "longitude": "8.28332000" + }, + { + "id": "27436", + "name": "Metelen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.14434000", + "longitude": "7.21270000" + }, + { + "id": "27441", + "name": "Mettingen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31667000", + "longitude": "7.78333000" + }, + { + "id": "27443", + "name": "Mettmann", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25040000", + "longitude": "6.97536000" + }, + { + "id": "27472", + "name": "Minden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28953000", + "longitude": "8.91455000" + }, + { + "id": "27499", + "name": "Moers", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45342000", + "longitude": "6.63260000" + }, + { + "id": "27509", + "name": "Monheim am Rhein", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09162000", + "longitude": "6.89217000" + }, + { + "id": "27510", + "name": "Monschau", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55462000", + "longitude": "6.24001000" + }, + { + "id": "27526", + "name": "Morsbach", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86665000", + "longitude": "7.72787000" + }, + { + "id": "27530", + "name": "Much", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90383000", + "longitude": "7.40306000" + }, + { + "id": "27631", + "name": "Nachrodt-Wiblingwerde", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31667000", + "longitude": "7.61667000" + }, + { + "id": "27949", + "name": "Nörvenich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80604000", + "longitude": "6.63952000" + }, + { + "id": "27952", + "name": "Nümbrecht", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90427000", + "longitude": "7.54063000" + }, + { + "id": "27683", + "name": "Netphen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91667000", + "longitude": "8.10000000" + }, + { + "id": "27684", + "name": "Nettersheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49372000", + "longitude": "6.62896000" + }, + { + "id": "27685", + "name": "Nettetal", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31667000", + "longitude": "6.28333000" + }, + { + "id": "27694", + "name": "Neu-Pattern", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88854000", + "longitude": "6.27688000" + }, + { + "id": "27702", + "name": "Neubrück", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13434000", + "longitude": "6.63857000" + }, + { + "id": "27716", + "name": "Neuehrenfeld", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95753000", + "longitude": "6.93611000" + }, + { + "id": "27723", + "name": "Neuenkirchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.24472000", + "longitude": "7.37183000" + }, + { + "id": "27725", + "name": "Neuenrade", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28278000", + "longitude": "7.78250000" + }, + { + "id": "27779", + "name": "Neunkirchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80000000", + "longitude": "8.00000000" + }, + { + "id": "27792", + "name": "Neuss", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19807000", + "longitude": "6.68504000" + }, + { + "id": "27808", + "name": "Neustadt\/Nord", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94900000", + "longitude": "6.94790000" + }, + { + "id": "27809", + "name": "Neustadt\/Süd", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92509000", + "longitude": "6.94762000" + }, + { + "id": "27823", + "name": "Nideggen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69268000", + "longitude": "6.48437000" + }, + { + "id": "27850", + "name": "Niederkassel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81503000", + "longitude": "7.03777000" + }, + { + "id": "27854", + "name": "Niederkrüchten", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20000000", + "longitude": "6.21667000" + }, + { + "id": "27857", + "name": "Niedermerz", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88151000", + "longitude": "6.26651000" + }, + { + "id": "27885", + "name": "Niederzier", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88333000", + "longitude": "6.46667000" + }, + { + "id": "27889", + "name": "Nieheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80499000", + "longitude": "9.11302000" + }, + { + "id": "27901", + "name": "Nippes", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96545000", + "longitude": "6.95314000" + }, + { + "id": "27924", + "name": "Nordkirchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73827000", + "longitude": "7.52197000" + }, + { + "id": "27928", + "name": "Nordwalde", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.08333000", + "longitude": "7.48333000" + }, + { + "id": "27937", + "name": "Nottuln", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.93333000", + "longitude": "7.35000000" + }, + { + "id": "27985", + "name": "Oberhausen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.47805000", + "longitude": "6.86250000" + }, + { + "id": "28001", + "name": "Obernbeck", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20178000", + "longitude": "8.70404000" + }, + { + "id": "28065", + "name": "Ochtrup", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20802000", + "longitude": "7.18988000" + }, + { + "id": "28069", + "name": "Odenthal", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.03333000", + "longitude": "7.11667000" + }, + { + "id": "28076", + "name": "Oelde", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.82890000", + "longitude": "8.14724000" + }, + { + "id": "28079", + "name": "Oer-Erkenschwick", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.64198000", + "longitude": "7.26451000" + }, + { + "id": "28082", + "name": "Oerlinghausen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.95453000", + "longitude": "8.66220000" + }, + { + "id": "28111", + "name": "Olfen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.70787000", + "longitude": "7.37893000" + }, + { + "id": "28112", + "name": "Olpe", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02899000", + "longitude": "7.85139000" + }, + { + "id": "28113", + "name": "Olsberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35613000", + "longitude": "8.48899000" + }, + { + "id": "28116", + "name": "Opladen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06863000", + "longitude": "7.00387000" + }, + { + "id": "28141", + "name": "Ossendorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97059000", + "longitude": "6.90628000" + }, + { + "id": "28142", + "name": "Ostbevern", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.04018000", + "longitude": "7.84229000" + }, + { + "id": "28161", + "name": "Ostheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93117000", + "longitude": "7.04412000" + }, + { + "id": "28200", + "name": "Overath", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93275000", + "longitude": "7.28389000" + }, + { + "id": "28209", + "name": "Paderborn", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.71905000", + "longitude": "8.75439000" + }, + { + "id": "28264", + "name": "Petershagen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.37513000", + "longitude": "8.96538000" + }, + { + "id": "28324", + "name": "Plettenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20949000", + "longitude": "7.87261000" + }, + { + "id": "28342", + "name": "Poll", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91256000", + "longitude": "6.99057000" + }, + { + "id": "28356", + "name": "Porta Westfalica", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.22961000", + "longitude": "8.91612000" + }, + { + "id": "28357", + "name": "Porz am Rhein", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88637000", + "longitude": "7.05830000" + }, + { + "id": "28384", + "name": "Preußisch Oldendorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.30589000", + "longitude": "8.49341000" + }, + { + "id": "28403", + "name": "Pulheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99965000", + "longitude": "6.80632000" + }, + { + "id": "28445", + "name": "Radevormwald", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20219000", + "longitude": "7.36027000" + }, + { + "id": "28449", + "name": "Raesfeld", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76667000", + "longitude": "6.85000000" + }, + { + "id": "28451", + "name": "Rahden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43367000", + "longitude": "8.61263000" + }, + { + "id": "28484", + "name": "Rath", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92379000", + "longitude": "7.09270000" + }, + { + "id": "28487", + "name": "Ratingen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29724000", + "longitude": "6.84929000" + }, + { + "id": "28779", + "name": "Rödinghausen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.25000000", + "longitude": "8.48333000" + }, + { + "id": "28787", + "name": "Rösrath", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89559000", + "longitude": "7.18175000" + }, + { + "id": "28810", + "name": "Rüthen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49090000", + "longitude": "8.43596000" + }, + { + "id": "28506", + "name": "Recke", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.36885000", + "longitude": "7.72116000" + }, + { + "id": "28507", + "name": "Recklinghausen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61379000", + "longitude": "7.19738000" + }, + { + "id": "28510", + "name": "Rees", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76263000", + "longitude": "6.39778000" + }, + { + "id": "28516", + "name": "Regierungsbezirk Arnsberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.32967000", + "longitude": "8.00710000" + }, + { + "id": "28518", + "name": "Regierungsbezirk Detmold", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96660000", + "longitude": "8.78333000" + }, + { + "id": "28521", + "name": "Regierungsbezirk Köln", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78333000", + "longitude": "6.86660000" + }, + { + "id": "28523", + "name": "Regierungsbezirk Münster", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96660000", + "longitude": "7.43330000" + }, + { + "id": "28576", + "name": "Remscheid", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17983000", + "longitude": "7.19250000" + }, + { + "id": "28600", + "name": "Rheda-Wiedenbrück", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.84967000", + "longitude": "8.30017000" + }, + { + "id": "28601", + "name": "Rhede", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83537000", + "longitude": "6.69602000" + }, + { + "id": "28605", + "name": "Rheinbach", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62562000", + "longitude": "6.94911000" + }, + { + "id": "28606", + "name": "Rheinberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.54649000", + "longitude": "6.59525000" + }, + { + "id": "28610", + "name": "Rheine", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28509000", + "longitude": "7.44055000" + }, + { + "id": "28616", + "name": "Rheurdt", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46667000", + "longitude": "6.46667000" + }, + { + "id": "28641", + "name": "Riehl", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96686000", + "longitude": "6.97572000" + }, + { + "id": "28650", + "name": "Rietberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80924000", + "longitude": "8.42841000" + }, + { + "id": "28682", + "name": "Roetgen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65000000", + "longitude": "6.20000000" + }, + { + "id": "28696", + "name": "Rommerskirchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.03333000", + "longitude": "6.68333000" + }, + { + "id": "28769", + "name": "Ruppichteroth", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.84367000", + "longitude": "7.48409000" + }, + { + "id": "28826", + "name": "Saerbeck", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.17372000", + "longitude": "7.63395000" + }, + { + "id": "28842", + "name": "Salzkotten", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.67170000", + "longitude": "8.60092000" + }, + { + "id": "28861", + "name": "Sankt Augustin", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77538000", + "longitude": "7.19700000" + }, + { + "id": "28889", + "name": "Sassenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.99223000", + "longitude": "8.04068000" + }, + { + "id": "29501", + "name": "Südlohn", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.93333000", + "longitude": "6.86667000" + }, + { + "id": "28907", + "name": "Schalksmühle", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24120000", + "longitude": "7.52790000" + }, + { + "id": "29136", + "name": "Schöppingen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.10000000", + "longitude": "7.23333000" + }, + { + "id": "28932", + "name": "Schermbeck", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.68333000", + "longitude": "6.86667000" + }, + { + "id": "28940", + "name": "Schieder-Schwalenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.87713000", + "longitude": "9.19538000" + }, + { + "id": "28962", + "name": "Schlangen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80978000", + "longitude": "8.84605000" + }, + { + "id": "28969", + "name": "Schleiden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.52896000", + "longitude": "6.47692000" + }, + { + "id": "28988", + "name": "Schmallenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15473000", + "longitude": "8.28505000" + }, + { + "id": "29054", + "name": "Schwalmtal", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.21667000", + "longitude": "6.26667000" + }, + { + "id": "29085", + "name": "Schwelm", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28635000", + "longitude": "7.29388000" + }, + { + "id": "29091", + "name": "Schwerte", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44387000", + "longitude": "7.56750000" + }, + { + "id": "29181", + "name": "Selm", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.69689000", + "longitude": "7.46809000" + }, + { + "id": "29189", + "name": "Senden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85645000", + "longitude": "7.48327000" + }, + { + "id": "29190", + "name": "Sendenhorst", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.84303000", + "longitude": "7.82996000" + }, + { + "id": "29211", + "name": "Siegburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80019000", + "longitude": "7.20769000" + }, + { + "id": "29213", + "name": "Siegen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87481000", + "longitude": "8.02431000" + }, + { + "id": "29220", + "name": "Siersdorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89827000", + "longitude": "6.22684000" + }, + { + "id": "29234", + "name": "Simmerath", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60000000", + "longitude": "6.30000000" + }, + { + "id": "29244", + "name": "Sinnersdorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02445000", + "longitude": "6.81787000" + }, + { + "id": "29254", + "name": "Soest", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57558000", + "longitude": "8.10619000" + }, + { + "id": "29258", + "name": "Solingen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17343000", + "longitude": "7.08450000" + }, + { + "id": "29275", + "name": "Sonsbeck", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.60741000", + "longitude": "6.37916000" + }, + { + "id": "29296", + "name": "Spenge", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.14021000", + "longitude": "8.48475000" + }, + { + "id": "29310", + "name": "Sprockhövel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.34669000", + "longitude": "7.24343000" + }, + { + "id": "29326", + "name": "Stadtlohn", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.99399000", + "longitude": "6.91918000" + }, + { + "id": "29374", + "name": "Steinfurt", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15045000", + "longitude": "7.33664000" + }, + { + "id": "29376", + "name": "Steinhagen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.00000000", + "longitude": "8.40000000" + }, + { + "id": "29379", + "name": "Steinheim", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.87066000", + "longitude": "9.09136000" + }, + { + "id": "29422", + "name": "Stoßdorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78248000", + "longitude": "7.25126000" + }, + { + "id": "29416", + "name": "Stolberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77368000", + "longitude": "6.22595000" + }, + { + "id": "29423", + "name": "Straelen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44190000", + "longitude": "6.26639000" + }, + { + "id": "29481", + "name": "Sundern", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.32810000", + "longitude": "8.00369000" + }, + { + "id": "29701", + "name": "Tönisvorst", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.32092000", + "longitude": "6.49412000" + }, + { + "id": "29709", + "name": "Türnich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85892000", + "longitude": "6.75535000" + }, + { + "id": "29542", + "name": "Tecklenburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21957000", + "longitude": "7.81357000" + }, + { + "id": "29552", + "name": "Telgte", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.97995000", + "longitude": "7.78293000" + }, + { + "id": "29622", + "name": "Titz", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00619000", + "longitude": "6.42477000" + }, + { + "id": "29678", + "name": "Troisdorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80901000", + "longitude": "7.14968000" + }, + { + "id": "29720", + "name": "Uedem", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66520000", + "longitude": "6.27371000" + }, + { + "id": "29748", + "name": "Unna", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53795000", + "longitude": "7.68969000" + }, + { + "id": "29823", + "name": "Velbert", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.33537000", + "longitude": "7.04348000" + }, + { + "id": "29826", + "name": "Velen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.89447000", + "longitude": "6.98807000" + }, + { + "id": "29836", + "name": "Verl", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88333000", + "longitude": "8.51667000" + }, + { + "id": "29837", + "name": "Versmold", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.04009000", + "longitude": "8.15272000" + }, + { + "id": "29841", + "name": "Vettweiß", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73333000", + "longitude": "6.60000000" + }, + { + "id": "29849", + "name": "Viersen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25435000", + "longitude": "6.39441000" + }, + { + "id": "29863", + "name": "Vlotho", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.16530000", + "longitude": "8.85996000" + }, + { + "id": "29865", + "name": "Voerde", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.59703000", + "longitude": "6.68630000" + }, + { + "id": "29884", + "name": "Vreden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.03792000", + "longitude": "6.82800000" + }, + { + "id": "29903", + "name": "Wachtberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63333000", + "longitude": "7.10000000" + }, + { + "id": "29904", + "name": "Wachtendonk", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40916000", + "longitude": "6.33894000" + }, + { + "id": "29911", + "name": "Wadersloh", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73333000", + "longitude": "8.25000000" + }, + { + "id": "29920", + "name": "Wahn-Heide", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85891000", + "longitude": "7.10662000" + }, + { + "id": "29939", + "name": "Waldbröl", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87576000", + "longitude": "7.61688000" + }, + { + "id": "29950", + "name": "Waldfeucht", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06610000", + "longitude": "5.98815000" + }, + { + "id": "29996", + "name": "Waltrop", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62125000", + "longitude": "7.40238000" + }, + { + "id": "30012", + "name": "Warburg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49011000", + "longitude": "9.14641000" + }, + { + "id": "30016", + "name": "Warendorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.95109000", + "longitude": "7.98756000" + }, + { + "id": "30023", + "name": "Warstein", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44488000", + "longitude": "8.34851000" + }, + { + "id": "30031", + "name": "Wassenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10009000", + "longitude": "6.15484000" + }, + { + "id": "30454", + "name": "Wülfrath", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28195000", + "longitude": "7.03821000" + }, + { + "id": "30456", + "name": "Wünnenberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52002000", + "longitude": "8.69934000" + }, + { + "id": "30458", + "name": "Würselen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81809000", + "longitude": "6.13470000" + }, + { + "id": "30053", + "name": "Weeze", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62678000", + "longitude": "6.19792000" + }, + { + "id": "30056", + "name": "Wegberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14221000", + "longitude": "6.28436000" + }, + { + "id": "30090", + "name": "Weilerswist", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75292000", + "longitude": "6.84585000" + }, + { + "id": "30148", + "name": "Welver", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61667000", + "longitude": "7.96667000" + }, + { + "id": "30155", + "name": "Wenden", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96667000", + "longitude": "7.86667000" + }, + { + "id": "30172", + "name": "Werdohl", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26011000", + "longitude": "7.76608000" + }, + { + "id": "30174", + "name": "Werl", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55493000", + "longitude": "7.91403000" + }, + { + "id": "30176", + "name": "Wermelskirchen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13970000", + "longitude": "7.21583000" + }, + { + "id": "30180", + "name": "Werne", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66446000", + "longitude": "7.63421000" + }, + { + "id": "30189", + "name": "Werther", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.07771000", + "longitude": "8.41793000" + }, + { + "id": "30191", + "name": "Wesel", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66690000", + "longitude": "6.62037000" + }, + { + "id": "30196", + "name": "Wesseling", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82709000", + "longitude": "6.97470000" + }, + { + "id": "30212", + "name": "Westerkappeln", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31667000", + "longitude": "7.88333000" + }, + { + "id": "30225", + "name": "Wetter (Ruhr)", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38747000", + "longitude": "7.39277000" + }, + { + "id": "30228", + "name": "Wettringen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20939000", + "longitude": "7.31895000" + }, + { + "id": "30236", + "name": "Wickede", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49640000", + "longitude": "7.86587000" + }, + { + "id": "30246", + "name": "Wiehl", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94950000", + "longitude": "7.55062000" + }, + { + "id": "30293", + "name": "Willebadessen", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62564000", + "longitude": "9.03694000" + }, + { + "id": "30294", + "name": "Willich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26371000", + "longitude": "6.54734000" + }, + { + "id": "30300", + "name": "Wilnsdorf", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81667000", + "longitude": "8.10000000" + }, + { + "id": "30331", + "name": "Winterberg", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19248000", + "longitude": "8.53468000" + }, + { + "id": "30339", + "name": "Wipperfürth", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11610000", + "longitude": "7.39865000" + }, + { + "id": "30349", + "name": "Witten", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44362000", + "longitude": "7.35258000" + }, + { + "id": "30420", + "name": "Wuppertal", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25627000", + "longitude": "7.14816000" + }, + { + "id": "30461", + "name": "Xanten", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65877000", + "longitude": "6.45297000" + }, + { + "id": "30526", + "name": "Zulpich", + "state_id": 3017, + "state_code": "NW", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69447000", + "longitude": "6.65414000" + }, + { + "id": "23462", + "name": "Aach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78333000", + "longitude": "6.60000000" + }, + { + "id": "23486", + "name": "Adenau", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38238000", + "longitude": "6.93291000" + }, + { + "id": "23512", + "name": "Ahrbrück", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48225000", + "longitude": "6.98804000" + }, + { + "id": "23535", + "name": "Albersweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.21917000", + "longitude": "8.03000000" + }, + { + "id": "23538", + "name": "Albig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77361000", + "longitude": "8.12139000" + }, + { + "id": "23539", + "name": "Albisheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64941000", + "longitude": "8.09442000" + }, + { + "id": "23565", + "name": "Alpenrod", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63333000", + "longitude": "7.86667000" + }, + { + "id": "23569", + "name": "Alsdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77736000", + "longitude": "7.88562000" + }, + { + "id": "23570", + "name": "Alsenz", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71667000", + "longitude": "7.81667000" + }, + { + "id": "23572", + "name": "Alsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76806000", + "longitude": "8.34028000" + }, + { + "id": "23590", + "name": "Altenahr", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51694000", + "longitude": "6.99206000" + }, + { + "id": "23598", + "name": "Altendiez", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.36667000", + "longitude": "7.98333000" + }, + { + "id": "23601", + "name": "Altenglan", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55000000", + "longitude": "7.46667000" + }, + { + "id": "23605", + "name": "Altenkirchen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68594000", + "longitude": "7.64176000" + }, + { + "id": "23627", + "name": "Altleiningen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50750000", + "longitude": "8.07333000" + }, + { + "id": "23632", + "name": "Altrich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95701000", + "longitude": "6.91217000" + }, + { + "id": "23633", + "name": "Altrip", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.43556000", + "longitude": "8.49472000" + }, + { + "id": "23642", + "name": "Alzey", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74657000", + "longitude": "8.11513000" + }, + { + "id": "23654", + "name": "Andernach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43109000", + "longitude": "7.40425000" + }, + { + "id": "23658", + "name": "Anhausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50000000", + "longitude": "7.55000000" + }, + { + "id": "23663", + "name": "Annweiler am Trifels", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20613000", + "longitude": "7.97527000" + }, + { + "id": "23678", + "name": "Appenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93000000", + "longitude": "8.03333000" + }, + { + "id": "23682", + "name": "Argenthal", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96667000", + "longitude": "7.60000000" + }, + { + "id": "23683", + "name": "Armsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80972000", + "longitude": "8.05667000" + }, + { + "id": "23695", + "name": "Arzbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37902000", + "longitude": "7.74948000" + }, + { + "id": "23698", + "name": "Arzfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08957000", + "longitude": "6.27069000" + }, + { + "id": "23699", + "name": "Asbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66667000", + "longitude": "7.41667000" + }, + { + "id": "23746", + "name": "Ayl", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63333000", + "longitude": "6.55000000" + }, + { + "id": "30558", + "name": "Üdersdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15000000", + "longitude": "6.80000000" + }, + { + "id": "30560", + "name": "Üxheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35000000", + "longitude": "6.75000000" + }, + { + "id": "30552", + "name": "Ötzingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50000000", + "longitude": "7.83333000" + }, + { + "id": "23756", + "name": "Bacharach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.05725000", + "longitude": "7.76948000" + }, + { + "id": "23766", + "name": "Bad Bergzabern", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.10245000", + "longitude": "8.00092000" + }, + { + "id": "23777", + "name": "Bad Breisig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50523000", + "longitude": "7.28861000" + }, + { + "id": "23785", + "name": "Bad Dürkheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.46180000", + "longitude": "8.17236000" + }, + { + "id": "23790", + "name": "Bad Ems", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33544000", + "longitude": "7.71369000" + }, + { + "id": "23810", + "name": "Bad Hönningen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51689000", + "longitude": "7.31195000" + }, + { + "id": "23817", + "name": "Bad Kreuznach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84140000", + "longitude": "7.86713000" + }, + { + "id": "23833", + "name": "Bad Marienberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64947000", + "longitude": "7.94958000" + }, + { + "id": "23838", + "name": "Bad Münster am Stein-Ebernburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81159000", + "longitude": "7.84523000" + }, + { + "id": "23842", + "name": "Bad Neuenahr-Ahrweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54322000", + "longitude": "7.11130000" + }, + { + "id": "23894", + "name": "Badem", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00000000", + "longitude": "6.61667000" + }, + { + "id": "23920", + "name": "Bann", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38333000", + "longitude": "7.61667000" + }, + { + "id": "23952", + "name": "Bassenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35820000", + "longitude": "7.45961000" + }, + { + "id": "23958", + "name": "Baumholder", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61738000", + "longitude": "7.33381000" + }, + { + "id": "23962", + "name": "Bausendorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "7.00000000" + }, + { + "id": "24465", + "name": "Böhl-Iggelheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38056000", + "longitude": "8.30389000" + }, + { + "id": "24485", + "name": "Büchel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17289000", + "longitude": "7.08318000" + }, + { + "id": "24488", + "name": "Büchenbeuren", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92097000", + "longitude": "7.27999000" + }, + { + "id": "23972", + "name": "Bechhofen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35000000", + "longitude": "7.40000000" + }, + { + "id": "23973", + "name": "Bechtheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72778000", + "longitude": "8.29222000" + }, + { + "id": "23974", + "name": "Bechtolsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80417000", + "longitude": "8.19389000" + }, + { + "id": "23997", + "name": "Beindersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56056000", + "longitude": "8.31944000" + }, + { + "id": "24000", + "name": "Bell", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06139000", + "longitude": "7.41515000" + }, + { + "id": "24003", + "name": "Bellheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19833000", + "longitude": "8.27944000" + }, + { + "id": "24005", + "name": "Beltheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10606000", + "longitude": "7.46208000" + }, + { + "id": "24008", + "name": "Bendorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42289000", + "longitude": "7.57924000" + }, + { + "id": "24026", + "name": "Berg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "48.98403000", + "longitude": "8.20232000" + }, + { + "id": "24067", + "name": "Bernkastel-Kues", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91602000", + "longitude": "7.07664000" + }, + { + "id": "24082", + "name": "Bettingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94211000", + "longitude": "6.40160000" + }, + { + "id": "24083", + "name": "Betzdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.79094000", + "longitude": "7.87189000" + }, + { + "id": "24119", + "name": "Billigheim-Ingenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13667000", + "longitude": "8.09056000" + }, + { + "id": "24124", + "name": "Bingen am Rhein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96675000", + "longitude": "7.89920000" + }, + { + "id": "24126", + "name": "Binsfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96667000", + "longitude": "6.71667000" + }, + { + "id": "24132", + "name": "Birken-Honigsessen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81667000", + "longitude": "7.73333000" + }, + { + "id": "24135", + "name": "Birkenfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65245000", + "longitude": "7.16668000" + }, + { + "id": "24137", + "name": "Birkenheide", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48139000", + "longitude": "8.26194000" + }, + { + "id": "24139", + "name": "Birlenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35815000", + "longitude": "8.00273000" + }, + { + "id": "24140", + "name": "Birresborn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.18333000", + "longitude": "6.63333000" + }, + { + "id": "24159", + "name": "Bitburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96794000", + "longitude": "6.52734000" + }, + { + "id": "24171", + "name": "Blankenrath", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03898000", + "longitude": "7.30214000" + }, + { + "id": "24176", + "name": "Bleialf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23333000", + "longitude": "6.28333000" + }, + { + "id": "24189", + "name": "Bobenheim-Roxheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58750000", + "longitude": "8.35778000" + }, + { + "id": "24197", + "name": "Bockenau", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83333000", + "longitude": "7.68333000" + }, + { + "id": "24199", + "name": "Bockenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60669000", + "longitude": "8.18486000" + }, + { + "id": "24205", + "name": "Bodenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93528000", + "longitude": "8.32000000" + }, + { + "id": "24221", + "name": "Bolanden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63917000", + "longitude": "8.01194000" + }, + { + "id": "24224", + "name": "Bollendorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85268000", + "longitude": "6.35795000" + }, + { + "id": "24230", + "name": "Bonefeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.52388000", + "longitude": "7.48932000" + }, + { + "id": "24237", + "name": "Boppard", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23085000", + "longitude": "7.58992000" + }, + { + "id": "24252", + "name": "Bornheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22250000", + "longitude": "8.16333000" + }, + { + "id": "24255", + "name": "Bornich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.12687000", + "longitude": "7.76580000" + }, + { + "id": "24269", + "name": "Brachbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81667000", + "longitude": "7.93333000" + }, + { + "id": "24285", + "name": "Braubach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.27360000", + "longitude": "7.64508000" + }, + { + "id": "24286", + "name": "Brauneberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90583000", + "longitude": "6.98127000" + }, + { + "id": "24366", + "name": "Brücken", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.43174000", + "longitude": "7.35998000" + }, + { + "id": "24316", + "name": "Breitscheidt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75000000", + "longitude": "7.65000000" + }, + { + "id": "24326", + "name": "Bretzenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87796000", + "longitude": "7.89653000" + }, + { + "id": "24329", + "name": "Brey", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.27253000", + "longitude": "7.62645000" + }, + { + "id": "24330", + "name": "Briedel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "7.15000000" + }, + { + "id": "24342", + "name": "Brohl-Lützing", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48296000", + "longitude": "7.32908000" + }, + { + "id": "24350", + "name": "Bruchmühlbach-Miesau", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38333000", + "longitude": "7.43333000" + }, + { + "id": "24352", + "name": "Bruchweiler-Bärenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11667000", + "longitude": "7.80000000" + }, + { + "id": "24363", + "name": "Bruttig-Fankel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.13333000", + "longitude": "7.23333000" + }, + { + "id": "24398", + "name": "Budenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "8.16667000" + }, + { + "id": "24401", + "name": "Bullay", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.05448000", + "longitude": "7.13730000" + }, + { + "id": "24403", + "name": "Bundenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84280000", + "longitude": "7.37826000" + }, + { + "id": "24404", + "name": "Bundenthal", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09549000", + "longitude": "7.80839000" + }, + { + "id": "24414", + "name": "Burgbrohl", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45463000", + "longitude": "7.27720000" + }, + { + "id": "24431", + "name": "Burgschwalbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.28333000", + "longitude": "8.08333000" + }, + { + "id": "24448", + "name": "Busenberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13024000", + "longitude": "7.82930000" + }, + { + "id": "24523", + "name": "Carlsberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50389000", + "longitude": "8.04167000" + }, + { + "id": "24537", + "name": "Clausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26075000", + "longitude": "7.67730000" + }, + { + "id": "24545", + "name": "Cochem", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14511000", + "longitude": "7.16379000" + }, + { + "id": "24551", + "name": "Contwig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25000000", + "longitude": "7.43333000" + }, + { + "id": "24572", + "name": "Daaden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73333000", + "longitude": "7.96667000" + }, + { + "id": "24575", + "name": "Dachsenhausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25415000", + "longitude": "7.72725000" + }, + { + "id": "24584", + "name": "Dahn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15098000", + "longitude": "7.77843000" + }, + { + "id": "24586", + "name": "Dalheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82667000", + "longitude": "8.29528000" + }, + { + "id": "24594", + "name": "Dannstadt-Schauernheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44028000", + "longitude": "8.30861000" + }, + { + "id": "24603", + "name": "Dattenberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55362000", + "longitude": "7.29393000" + }, + { + "id": "24605", + "name": "Daun", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.19716000", + "longitude": "6.82942000" + }, + { + "id": "24606", + "name": "Dausenau", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33333000", + "longitude": "7.76667000" + }, + { + "id": "24801", + "name": "Dörrenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08972000", + "longitude": "7.96140000" + }, + { + "id": "24807", + "name": "Düngenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26062000", + "longitude": "7.16523000" + }, + { + "id": "24613", + "name": "Deidesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40782000", + "longitude": "8.18445000" + }, + { + "id": "24624", + "name": "Dellfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23397000", + "longitude": "7.47399000" + }, + { + "id": "24638", + "name": "Dernau", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53333000", + "longitude": "7.05000000" + }, + { + "id": "24639", + "name": "Dernbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45551000", + "longitude": "7.79003000" + }, + { + "id": "24640", + "name": "Derschen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71667000", + "longitude": "7.98333000" + }, + { + "id": "24661", + "name": "Dexheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84722000", + "longitude": "8.31667000" + }, + { + "id": "24664", + "name": "Dieblich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31396000", + "longitude": "7.47185000" + }, + { + "id": "24669", + "name": "Dienheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83722000", + "longitude": "8.34972000" + }, + { + "id": "24671", + "name": "Dierdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54647000", + "longitude": "7.65271000" + }, + { + "id": "24687", + "name": "Diez", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37419000", + "longitude": "8.00735000" + }, + { + "id": "24703", + "name": "Dirmstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56333000", + "longitude": "8.24472000" + }, + { + "id": "24708", + "name": "Dittelsheim-Heßloch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74389000", + "longitude": "8.23694000" + }, + { + "id": "24726", + "name": "Dommershausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15000000", + "longitude": "7.40000000" + }, + { + "id": "24762", + "name": "Dreikirchen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43333000", + "longitude": "7.95000000" + }, + { + "id": "24763", + "name": "Dreis", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94090000", + "longitude": "6.81845000" + }, + { + "id": "24764", + "name": "Dreisen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60333000", + "longitude": "8.01056000" + }, + { + "id": "24775", + "name": "Dudeldorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97494000", + "longitude": "6.63724000" + }, + { + "id": "24776", + "name": "Dudenhofen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31861000", + "longitude": "8.38861000" + }, + { + "id": "24831", + "name": "Ebernhahn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.47278000", + "longitude": "7.77000000" + }, + { + "id": "24840", + "name": "Ebertsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56833000", + "longitude": "8.10861000" + }, + { + "id": "24855", + "name": "Edenkoben", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28393000", + "longitude": "8.12714000" + }, + { + "id": "24858", + "name": "Edesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26333000", + "longitude": "8.13500000" + }, + { + "id": "24860", + "name": "Ediger-Eller", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.11667000", + "longitude": "7.15000000" + }, + { + "id": "24890", + "name": "Ehlscheid", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51448000", + "longitude": "7.46655000" + }, + { + "id": "24927", + "name": "Eisenberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55859000", + "longitude": "8.07199000" + }, + { + "id": "24935", + "name": "Eitelborn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37806000", + "longitude": "7.72333000" + }, + { + "id": "24945", + "name": "Elkenroth", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73333000", + "longitude": "7.88333000" + }, + { + "id": "24951", + "name": "Ellerstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.46167000", + "longitude": "8.25944000" + }, + { + "id": "24961", + "name": "Elmstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36667000", + "longitude": "7.93333000" + }, + { + "id": "24987", + "name": "Emmelshausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15484000", + "longitude": "7.55185000" + }, + { + "id": "25008", + "name": "Enkenbach-Alsenborn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48333000", + "longitude": "7.90000000" + }, + { + "id": "25009", + "name": "Enkirch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98434000", + "longitude": "7.12997000" + }, + { + "id": "25020", + "name": "Eppelsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70556000", + "longitude": "8.16528000" + }, + { + "id": "25021", + "name": "Eppenbrunn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11667000", + "longitude": "7.56667000" + }, + { + "id": "25030", + "name": "Erbes-Büdesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75444000", + "longitude": "8.03139000" + }, + { + "id": "25039", + "name": "Erfweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15712000", + "longitude": "7.81231000" + }, + { + "id": "25067", + "name": "Erpel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58333000", + "longitude": "7.23333000" + }, + { + "id": "25068", + "name": "Erpolzheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48917000", + "longitude": "8.22472000" + }, + { + "id": "25097", + "name": "Essenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93056000", + "longitude": "8.15556000" + }, + { + "id": "25100", + "name": "Essingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23583000", + "longitude": "8.17472000" + }, + { + "id": "25104", + "name": "Esthal", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38333000", + "longitude": "7.98333000" + }, + { + "id": "25108", + "name": "Ettringen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35000000", + "longitude": "7.21667000" + }, + { + "id": "25110", + "name": "Etzbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77831000", + "longitude": "7.68800000" + }, + { + "id": "25125", + "name": "Fachbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33333000", + "longitude": "7.68333000" + }, + { + "id": "25130", + "name": "Faid", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14454000", + "longitude": "7.11951000" + }, + { + "id": "25321", + "name": "Föhren", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85929000", + "longitude": "6.76480000" + }, + { + "id": "25325", + "name": "Fürfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77737000", + "longitude": "7.89264000" + }, + { + "id": "25338", + "name": "Fürthen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78333000", + "longitude": "7.66667000" + }, + { + "id": "25150", + "name": "Feilbingert", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76667000", + "longitude": "7.80000000" + }, + { + "id": "25158", + "name": "Fell", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76667000", + "longitude": "6.78333000" + }, + { + "id": "25179", + "name": "Fischbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08771000", + "longitude": "7.71160000" + }, + { + "id": "25183", + "name": "Flacht", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.34528000", + "longitude": "8.05028000" + }, + { + "id": "25185", + "name": "Flammersfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64711000", + "longitude": "7.52713000" + }, + { + "id": "25194", + "name": "Flomborn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.69056000", + "longitude": "8.14917000" + }, + { + "id": "25195", + "name": "Flonheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78500000", + "longitude": "8.04000000" + }, + { + "id": "25210", + "name": "Framersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75806000", + "longitude": "8.17417000" + }, + { + "id": "25217", + "name": "Frankenstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44015000", + "longitude": "7.97744000" + }, + { + "id": "25218", + "name": "Frankenthal", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53414000", + "longitude": "8.35357000" + }, + { + "id": "25235", + "name": "Freckenfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.06500000", + "longitude": "8.11389000" + }, + { + "id": "25237", + "name": "Frei-Laubersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80000000", + "longitude": "7.90000000" + }, + { + "id": "25248", + "name": "Freinsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50649000", + "longitude": "8.21186000" + }, + { + "id": "25249", + "name": "Freisbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.27167000", + "longitude": "8.27194000" + }, + { + "id": "25259", + "name": "Freudenburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54348000", + "longitude": "6.53292000" + }, + { + "id": "25273", + "name": "Friedelsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44694000", + "longitude": "8.22306000" + }, + { + "id": "25280", + "name": "Friedewald", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71106000", + "longitude": "7.96040000" + }, + { + "id": "25298", + "name": "Friesenhagen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90377000", + "longitude": "7.80961000" + }, + { + "id": "25320", + "name": "Fußgönheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.46111000", + "longitude": "8.29222000" + }, + { + "id": "25371", + "name": "Gartenstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45937000", + "longitude": "8.40377000" + }, + { + "id": "25378", + "name": "Gau-Algesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95669000", + "longitude": "8.01569000" + }, + { + "id": "25379", + "name": "Gau-Bickelheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83528000", + "longitude": "8.02056000" + }, + { + "id": "25380", + "name": "Gau-Bischofsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91583000", + "longitude": "8.27278000" + }, + { + "id": "25381", + "name": "Gau-Odernheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78472000", + "longitude": "8.19417000" + }, + { + "id": "25777", + "name": "Göllheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59500000", + "longitude": "8.05083000" + }, + { + "id": "25778", + "name": "Gönnheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44806000", + "longitude": "8.23861000" + }, + { + "id": "25791", + "name": "Gückingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39091000", + "longitude": "8.00726000" + }, + { + "id": "25385", + "name": "Gebhardshain", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75000000", + "longitude": "7.81667000" + }, + { + "id": "25422", + "name": "Gemünden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89444000", + "longitude": "7.47750000" + }, + { + "id": "25427", + "name": "Gensingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "7.93333000" + }, + { + "id": "25446", + "name": "Germersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22306000", + "longitude": "8.36389000" + }, + { + "id": "25455", + "name": "Gerolsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54778000", + "longitude": "8.26389000" + }, + { + "id": "25456", + "name": "Gerolstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.22224000", + "longitude": "6.65984000" + }, + { + "id": "25490", + "name": "Gillenfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.12790000", + "longitude": "6.90383000" + }, + { + "id": "25493", + "name": "Gimbsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77778000", + "longitude": "8.37500000" + }, + { + "id": "25497", + "name": "Girod", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45000000", + "longitude": "7.91667000" + }, + { + "id": "25501", + "name": "Glan-Münchweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.47222000", + "longitude": "7.44204000" + }, + { + "id": "25540", + "name": "Gommersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29111000", + "longitude": "8.26583000" + }, + { + "id": "25542", + "name": "Gondershausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15000000", + "longitude": "7.50000000" + }, + { + "id": "25548", + "name": "Gossersweiler-Stein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15000000", + "longitude": "7.93333000" + }, + { + "id": "25744", + "name": "Grünstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56302000", + "longitude": "8.16279000" + }, + { + "id": "25594", + "name": "Greimerath", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56155000", + "longitude": "6.68374000" + }, + { + "id": "25607", + "name": "Gries", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41667000", + "longitude": "7.40000000" + }, + { + "id": "25680", + "name": "Großholbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45000000", + "longitude": "7.88333000" + }, + { + "id": "25681", + "name": "Großkarlbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53833000", + "longitude": "8.22472000" + }, + { + "id": "25690", + "name": "Großlittgen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.02787000", + "longitude": "6.79865000" + }, + { + "id": "25691", + "name": "Großmaischeid", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50000000", + "longitude": "7.63333000" + }, + { + "id": "25694", + "name": "Großniedesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.57528000", + "longitude": "8.31222000" + }, + { + "id": "25613", + "name": "Grolsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90834000", + "longitude": "7.91599000" + }, + { + "id": "25758", + "name": "Gundersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.69611000", + "longitude": "8.20250000" + }, + { + "id": "25760", + "name": "Guntersblum", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79750000", + "longitude": "8.34556000" + }, + { + "id": "25762", + "name": "Gusenburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63333000", + "longitude": "6.90000000" + }, + { + "id": "25763", + "name": "Gusterath", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70000000", + "longitude": "6.71667000" + }, + { + "id": "25766", + "name": "Gutenberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88333000", + "longitude": "7.80000000" + }, + { + "id": "25964", + "name": "Haßloch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36278000", + "longitude": "8.25806000" + }, + { + "id": "25810", + "name": "Hachenburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65998000", + "longitude": "7.82276000" + }, + { + "id": "25811", + "name": "Hackenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82524000", + "longitude": "7.89907000" + }, + { + "id": "25820", + "name": "Hagenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.01734000", + "longitude": "8.25024000" + }, + { + "id": "25826", + "name": "Hahnheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86083000", + "longitude": "8.23694000" + }, + { + "id": "25827", + "name": "Hahnstätten", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30000000", + "longitude": "8.06667000" + }, + { + "id": "25859", + "name": "Halsenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17174000", + "longitude": "7.55673000" + }, + { + "id": "25874", + "name": "Hamm", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76531000", + "longitude": "7.67761000" + }, + { + "id": "25888", + "name": "Hanhofen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31667000", + "longitude": "8.34083000" + }, + { + "id": "25903", + "name": "Hargesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86230000", + "longitude": "7.82881000" + }, + { + "id": "25915", + "name": "Harthausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29417000", + "longitude": "8.34500000" + }, + { + "id": "25918", + "name": "Harxheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90528000", + "longitude": "8.26417000" + }, + { + "id": "25939", + "name": "Hattert", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66667000", + "longitude": "7.76667000" + }, + { + "id": "25943", + "name": "Hatzenbühl", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11111000", + "longitude": "8.24528000" + }, + { + "id": "25945", + "name": "Hauenstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19211000", + "longitude": "7.85492000" + }, + { + "id": "25948", + "name": "Hauptstuhl", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40000000", + "longitude": "7.48333000" + }, + { + "id": "25951", + "name": "Hausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54242000", + "longitude": "7.40703000" + }, + { + "id": "26307", + "name": "Höheinöd", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28966000", + "longitude": "7.60673000" + }, + { + "id": "26308", + "name": "Höheischweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23333000", + "longitude": "7.55000000" + }, + { + "id": "26311", + "name": "Höhn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61667000", + "longitude": "7.98333000" + }, + { + "id": "26313", + "name": "Höhr-Grenzhausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43474000", + "longitude": "7.66903000" + }, + { + "id": "26317", + "name": "Hördt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.16583000", + "longitude": "8.32639000" + }, + { + "id": "26330", + "name": "Hüffelsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81667000", + "longitude": "7.80000000" + }, + { + "id": "26342", + "name": "Hütschenhausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41667000", + "longitude": "7.48333000" + }, + { + "id": "26129", + "name": "Heßheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54583000", + "longitude": "8.30778000" + }, + { + "id": "25988", + "name": "Heidesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58247000", + "longitude": "8.19537000" + }, + { + "id": "25999", + "name": "Heiligenroth", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45000000", + "longitude": "7.86667000" + }, + { + "id": "26006", + "name": "Heimbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45000000", + "longitude": "7.53333000" + }, + { + "id": "26018", + "name": "Heistenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37933000", + "longitude": "7.98629000" + }, + { + "id": "26022", + "name": "Helferskirchen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51028000", + "longitude": "7.81184000" + }, + { + "id": "26024", + "name": "Hellenhahn-Schellenberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61278000", + "longitude": "8.02639000" + }, + { + "id": "26035", + "name": "Heltersberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31667000", + "longitude": "7.71667000" + }, + { + "id": "26053", + "name": "Hennweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81667000", + "longitude": "7.43333000" + }, + { + "id": "26064", + "name": "Herdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77704000", + "longitude": "7.95366000" + }, + { + "id": "26068", + "name": "Herforst", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95000000", + "longitude": "6.70000000" + }, + { + "id": "26077", + "name": "Hermersberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31667000", + "longitude": "7.63333000" + }, + { + "id": "26078", + "name": "Hermeskeil", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65528000", + "longitude": "6.94407000" + }, + { + "id": "26095", + "name": "Herschweiler-Pettersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48333000", + "longitude": "7.35000000" + }, + { + "id": "26097", + "name": "Herxheim am Berg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50917000", + "longitude": "8.17917000" + }, + { + "id": "26110", + "name": "Hettenleidelheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53556000", + "longitude": "8.07361000" + }, + { + "id": "26115", + "name": "Hetzerath", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88333000", + "longitude": "6.81667000" + }, + { + "id": "26119", + "name": "Heuchelheim bei Frankenthal", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56306000", + "longitude": "8.29083000" + }, + { + "id": "26140", + "name": "Hilgert", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45634000", + "longitude": "7.68735000" + }, + { + "id": "26144", + "name": "Hillesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.29177000", + "longitude": "6.66963000" + }, + { + "id": "26145", + "name": "Hillscheid", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40639000", + "longitude": "7.69861000" + }, + { + "id": "26157", + "name": "Hinterweidenthal", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20000000", + "longitude": "7.75000000" + }, + { + "id": "26174", + "name": "Hochdorf-Assenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41944000", + "longitude": "8.28167000" + }, + { + "id": "26178", + "name": "Hochspeyer", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44207000", + "longitude": "7.89504000" + }, + { + "id": "26179", + "name": "Hochstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24750000", + "longitude": "8.20889000" + }, + { + "id": "26181", + "name": "Hochstetten-Dhaun", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80000000", + "longitude": "7.50000000" + }, + { + "id": "26184", + "name": "Hof", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66667000", + "longitude": "8.01667000" + }, + { + "id": "26233", + "name": "Holler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41667000", + "longitude": "7.83333000" + }, + { + "id": "26240", + "name": "Holzappel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35000000", + "longitude": "7.90000000" + }, + { + "id": "26244", + "name": "Holzhausen an der Haide", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.21855000", + "longitude": "7.90973000" + }, + { + "id": "26255", + "name": "Hoppstädten-Weiersbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61667000", + "longitude": "7.20000000" + }, + { + "id": "26261", + "name": "Horhausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58745000", + "longitude": "7.53028000" + }, + { + "id": "26265", + "name": "Hornbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.18778000", + "longitude": "7.36883000" + }, + { + "id": "26288", + "name": "Hundsangen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45000000", + "longitude": "7.98333000" + }, + { + "id": "26350", + "name": "Idar-Oberstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71443000", + "longitude": "7.30776000" + }, + { + "id": "26355", + "name": "Igel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71033000", + "longitude": "6.55498000" + }, + { + "id": "26364", + "name": "Ilbesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.18277000", + "longitude": "8.05363000" + }, + { + "id": "26385", + "name": "Imsbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58333000", + "longitude": "7.88333000" + }, + { + "id": "26389", + "name": "Ingelheim am Rhein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97078000", + "longitude": "8.05883000" + }, + { + "id": "26396", + "name": "Insheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15806000", + "longitude": "8.14722000" + }, + { + "id": "26406", + "name": "Irrel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84539000", + "longitude": "6.45705000" + }, + { + "id": "26407", + "name": "Irsch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72620000", + "longitude": "6.69806000" + }, + { + "id": "26474", + "name": "Jünkerath", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.34412000", + "longitude": "6.58138000" + }, + { + "id": "26453", + "name": "Jockgrim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09288000", + "longitude": "8.27468000" + }, + { + "id": "26460", + "name": "Jugenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89362000", + "longitude": "8.08468000" + }, + { + "id": "26478", + "name": "Kadenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38333000", + "longitude": "7.73333000" + }, + { + "id": "26482", + "name": "Kaisersesch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23148000", + "longitude": "7.13864000" + }, + { + "id": "26483", + "name": "Kaiserslautern", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44300000", + "longitude": "7.77161000" + }, + { + "id": "26494", + "name": "Kallstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49083000", + "longitude": "8.17611000" + }, + { + "id": "26495", + "name": "Kaltenengers", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41667000", + "longitude": "7.55000000" + }, + { + "id": "26502", + "name": "Kamp-Bornhofen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.22282000", + "longitude": "7.62364000" + }, + { + "id": "26505", + "name": "Kandel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.08277000", + "longitude": "8.19720000" + }, + { + "id": "26511", + "name": "Kapsweyer", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04389000", + "longitude": "8.02167000" + }, + { + "id": "26527", + "name": "Kasbach-Ohlenberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58333000", + "longitude": "7.26667000" + }, + { + "id": "26528", + "name": "Kasel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76170000", + "longitude": "6.73222000" + }, + { + "id": "26532", + "name": "Kastellaun", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06922000", + "longitude": "7.44154000" + }, + { + "id": "26537", + "name": "Katzenelnbogen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26745000", + "longitude": "7.97322000" + }, + { + "id": "26539", + "name": "Katzweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50000000", + "longitude": "7.70000000" + }, + { + "id": "26540", + "name": "Katzwinkel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81470000", + "longitude": "7.82236000" + }, + { + "id": "26541", + "name": "Kaub", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.08831000", + "longitude": "7.76069000" + }, + { + "id": "26815", + "name": "Kölbingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55000000", + "longitude": "7.93333000" + }, + { + "id": "26820", + "name": "Köngernheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84583000", + "longitude": "8.24667000" + }, + { + "id": "26845", + "name": "Körperich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92449000", + "longitude": "6.25973000" + }, + { + "id": "26552", + "name": "Kehrig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.28333000", + "longitude": "7.21667000" + }, + { + "id": "26554", + "name": "Kelberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.29164000", + "longitude": "6.91950000" + }, + { + "id": "26558", + "name": "Kell", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63425000", + "longitude": "6.82390000" + }, + { + "id": "26568", + "name": "Kempenich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42024000", + "longitude": "7.11698000" + }, + { + "id": "26570", + "name": "Kenn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80000000", + "longitude": "6.71667000" + }, + { + "id": "26573", + "name": "Kerzenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.57639000", + "longitude": "8.05972000" + }, + { + "id": "26578", + "name": "Kettig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40000000", + "longitude": "7.46667000" + }, + { + "id": "26589", + "name": "Kindenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61111000", + "longitude": "8.16417000" + }, + { + "id": "26590", + "name": "Kinderbeuern", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00935000", + "longitude": "7.02355000" + }, + { + "id": "26591", + "name": "Kindsbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41667000", + "longitude": "7.61667000" + }, + { + "id": "26596", + "name": "Kirchberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94395000", + "longitude": "7.40700000" + }, + { + "id": "26608", + "name": "Kirchen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80849000", + "longitude": "7.88634000" + }, + { + "id": "26623", + "name": "Kirchheim an der Weinstraße", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53722000", + "longitude": "8.18083000" + }, + { + "id": "26626", + "name": "Kirchheimbolanden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66249000", + "longitude": "8.01513000" + }, + { + "id": "26635", + "name": "Kirchwald", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.36667000", + "longitude": "7.15000000" + }, + { + "id": "26642", + "name": "Kirn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.78912000", + "longitude": "7.45765000" + }, + { + "id": "26643", + "name": "Kirrweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30124000", + "longitude": "8.16288000" + }, + { + "id": "26645", + "name": "Kirschweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75000000", + "longitude": "7.25000000" + }, + { + "id": "26657", + "name": "Klausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "6.88333000" + }, + { + "id": "26699", + "name": "Klüsserath", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84500000", + "longitude": "6.85086000" + }, + { + "id": "26667", + "name": "Klein-Winternheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93833000", + "longitude": "8.21194000" + }, + { + "id": "26676", + "name": "Kleinmaischeid", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51345000", + "longitude": "7.60830000" + }, + { + "id": "26687", + "name": "Klingenmünster", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.14056000", + "longitude": "8.01861000" + }, + { + "id": "26696", + "name": "Klotten", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.16667000", + "longitude": "7.20000000" + }, + { + "id": "26702", + "name": "Knittelsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19167000", + "longitude": "8.25139000" + }, + { + "id": "26704", + "name": "Kobern-Gondorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30230000", + "longitude": "7.45612000" + }, + { + "id": "26705", + "name": "Koblenz", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35357000", + "longitude": "7.57883000" + }, + { + "id": "26719", + "name": "Konz", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70045000", + "longitude": "6.57652000" + }, + { + "id": "26723", + "name": "Kordel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83333000", + "longitude": "6.63333000" + }, + { + "id": "26730", + "name": "Kottenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35000000", + "longitude": "7.25000000" + }, + { + "id": "26732", + "name": "Kottweiler-Schwanden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48333000", + "longitude": "7.53333000" + }, + { + "id": "26786", + "name": "Kröv", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98333000", + "longitude": "7.08333000" + }, + { + "id": "26759", + "name": "Krickenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36667000", + "longitude": "7.66667000" + }, + { + "id": "26762", + "name": "Kriegsfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70992000", + "longitude": "7.91687000" + }, + { + "id": "26777", + "name": "Kruft", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38333000", + "longitude": "7.33333000" + }, + { + "id": "26792", + "name": "Kuhardt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.14583000", + "longitude": "8.31444000" + }, + { + "id": "26805", + "name": "Kusel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53772000", + "longitude": "7.40472000" + }, + { + "id": "26810", + "name": "Kyllburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.03864000", + "longitude": "6.59478000" + }, + { + "id": "26868", + "name": "Lachen-Speyerdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.33049000", + "longitude": "8.19983000" + }, + { + "id": "26875", + "name": "Lahnstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.30000000", + "longitude": "7.61667000" + }, + { + "id": "26881", + "name": "Lambrecht", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37055000", + "longitude": "8.07264000" + }, + { + "id": "26883", + "name": "Lambsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51361000", + "longitude": "8.28778000" + }, + { + "id": "26890", + "name": "Landau in der Pfalz", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19844000", + "longitude": "8.11692000" + }, + { + "id": "26896", + "name": "Landscheid", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98333000", + "longitude": "6.76667000" + }, + { + "id": "26898", + "name": "Landstuhl", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41306000", + "longitude": "7.57021000" + }, + { + "id": "26908", + "name": "Langenbach bei Marienberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63806000", + "longitude": "7.94787000" + }, + { + "id": "26920", + "name": "Langenhahn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58333000", + "longitude": "7.91667000" + }, + { + "id": "26923", + "name": "Langenlonsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "7.90000000" + }, + { + "id": "26942", + "name": "Langsur", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72442000", + "longitude": "6.49906000" + }, + { + "id": "26956", + "name": "Laubach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23277000", + "longitude": "7.07333000" + }, + { + "id": "26986", + "name": "Lauterecken", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.64993000", + "longitude": "7.59265000" + }, + { + "id": "27192", + "name": "Löf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23333000", + "longitude": "7.43333000" + }, + { + "id": "27198", + "name": "Lörzweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89833000", + "longitude": "8.29472000" + }, + { + "id": "27008", + "name": "Lehmen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.28333000", + "longitude": "7.45000000" + }, + { + "id": "27021", + "name": "Leimersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.12421000", + "longitude": "8.34531000" + }, + { + "id": "27031", + "name": "Leiwen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81667000", + "longitude": "6.88333000" + }, + { + "id": "27033", + "name": "Lemberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.17309000", + "longitude": "7.65111000" + }, + { + "id": "27059", + "name": "Leubsdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55000000", + "longitude": "7.30000000" + }, + { + "id": "27069", + "name": "Leutesdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45000000", + "longitude": "7.38333000" + }, + { + "id": "27094", + "name": "Lieser", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91667000", + "longitude": "7.01667000" + }, + { + "id": "27100", + "name": "Limburgerhof", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.42444000", + "longitude": "8.39194000" + }, + { + "id": "27106", + "name": "Linden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35000000", + "longitude": "7.65000000" + }, + { + "id": "27107", + "name": "Lindenberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38028000", + "longitude": "8.09861000" + }, + { + "id": "27115", + "name": "Lingenfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25389000", + "longitude": "8.33861000" + }, + { + "id": "27119", + "name": "Linz am Rhein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56884000", + "longitude": "7.28445000" + }, + { + "id": "27121", + "name": "Lissendorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31667000", + "longitude": "6.60000000" + }, + { + "id": "27143", + "name": "Longkamp", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89044000", + "longitude": "7.11764000" + }, + { + "id": "27144", + "name": "Longuich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80841000", + "longitude": "6.76832000" + }, + { + "id": "27146", + "name": "Lonnig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31002000", + "longitude": "7.40509000" + }, + { + "id": "27165", + "name": "Ludwigshafen am Rhein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48121000", + "longitude": "8.44641000" + }, + { + "id": "27179", + "name": "Lustadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24476000", + "longitude": "8.27407000" + }, + { + "id": "27181", + "name": "Lutzerath", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.12695000", + "longitude": "7.00740000" + }, + { + "id": "27353", + "name": "Maßweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26667000", + "longitude": "7.53333000" + }, + { + "id": "27228", + "name": "Mackenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.46667000", + "longitude": "7.58333000" + }, + { + "id": "27236", + "name": "Maikammer", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30528000", + "longitude": "8.13167000" + }, + { + "id": "27244", + "name": "Mainz", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98419000", + "longitude": "8.27910000" + }, + { + "id": "27248", + "name": "Malborn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71667000", + "longitude": "6.98333000" + }, + { + "id": "27260", + "name": "Mammelzen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70000000", + "longitude": "7.66667000" + }, + { + "id": "27264", + "name": "Manderscheid", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09672000", + "longitude": "6.80981000" + }, + { + "id": "27278", + "name": "Marienrachdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55000000", + "longitude": "7.71667000" + }, + { + "id": "27282", + "name": "Maring-Noviand", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93333000", + "longitude": "7.00000000" + }, + { + "id": "27321", + "name": "Marnheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63278000", + "longitude": "8.04000000" + }, + { + "id": "27331", + "name": "Martinshöhe", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36667000", + "longitude": "7.48333000" + }, + { + "id": "27336", + "name": "Masburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.24065000", + "longitude": "7.11736000" + }, + { + "id": "27341", + "name": "Mastershausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.06667000", + "longitude": "7.35000000" + }, + { + "id": "27348", + "name": "Maxdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48806000", + "longitude": "8.29167000" + }, + { + "id": "27350", + "name": "Maxsain", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54316000", + "longitude": "7.78512000" + }, + { + "id": "27351", + "name": "Mayen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.32797000", + "longitude": "7.22277000" + }, + { + "id": "27605", + "name": "Mülheim-Kärlich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38510000", + "longitude": "7.49890000" + }, + { + "id": "27615", + "name": "Münchweiler an der Alsenz", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55000000", + "longitude": "7.88333000" + }, + { + "id": "27616", + "name": "Münchweiler an der Rodalbe", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.21798000", + "longitude": "7.70295000" + }, + { + "id": "27623", + "name": "Münster-Sarmsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94341000", + "longitude": "7.89426000" + }, + { + "id": "27626", + "name": "Münstermaifeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.24638000", + "longitude": "7.36208000" + }, + { + "id": "27629", + "name": "Müschenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68333000", + "longitude": "7.78333000" + }, + { + "id": "27357", + "name": "Meckenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40444000", + "longitude": "8.23917000" + }, + { + "id": "27361", + "name": "Meddersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77636000", + "longitude": "7.61708000" + }, + { + "id": "27370", + "name": "Mehlbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51667000", + "longitude": "7.71667000" + }, + { + "id": "27371", + "name": "Mehlingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49136000", + "longitude": "7.85467000" + }, + { + "id": "27374", + "name": "Mehren", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.18333000", + "longitude": "6.88333000" + }, + { + "id": "27376", + "name": "Mehring", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80000000", + "longitude": "6.83333000" + }, + { + "id": "27384", + "name": "Meisenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70721000", + "longitude": "7.66765000" + }, + { + "id": "27398", + "name": "Melsbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48333000", + "longitude": "7.48333000" + }, + { + "id": "27405", + "name": "Mendig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.36667000", + "longitude": "7.28333000" + }, + { + "id": "27423", + "name": "Mertesdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77212000", + "longitude": "6.73290000" + }, + { + "id": "27425", + "name": "Mertloch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26948000", + "longitude": "7.30814000" + }, + { + "id": "27426", + "name": "Merxheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79297000", + "longitude": "7.56010000" + }, + { + "id": "27427", + "name": "Merzalben", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24467000", + "longitude": "7.73077000" + }, + { + "id": "27438", + "name": "Mettendorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94784000", + "longitude": "6.33003000" + }, + { + "id": "27439", + "name": "Mettenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74000000", + "longitude": "8.32583000" + }, + { + "id": "27445", + "name": "Meudt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49889000", + "longitude": "7.89500000" + }, + { + "id": "27459", + "name": "Miehlen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.22574000", + "longitude": "7.83196000" + }, + { + "id": "27473", + "name": "Minfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07167000", + "longitude": "8.14528000" + }, + { + "id": "27483", + "name": "Mittelhof", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77517000", + "longitude": "7.80466000" + }, + { + "id": "27500", + "name": "Mogendorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49444000", + "longitude": "7.75972000" + }, + { + "id": "27507", + "name": "Mommenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88028000", + "longitude": "8.26500000" + }, + { + "id": "27511", + "name": "Monsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63722000", + "longitude": "8.21194000" + }, + { + "id": "27512", + "name": "Montabaur", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43588000", + "longitude": "7.82320000" + }, + { + "id": "27513", + "name": "Monzelfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89237000", + "longitude": "7.07318000" + }, + { + "id": "27514", + "name": "Monzingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79763000", + "longitude": "7.59284000" + }, + { + "id": "27523", + "name": "Morbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80772000", + "longitude": "7.12714000" + }, + { + "id": "27532", + "name": "Mudersbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82515000", + "longitude": "7.94347000" + }, + { + "id": "27550", + "name": "Mutterstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44139000", + "longitude": "8.35611000" + }, + { + "id": "27633", + "name": "Nackenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91528000", + "longitude": "8.33889000" + }, + { + "id": "27642", + "name": "Nanzdietschweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45000000", + "longitude": "7.45000000" + }, + { + "id": "27644", + "name": "Nassau", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31453000", + "longitude": "7.80025000" + }, + { + "id": "27645", + "name": "Nastätten", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.19883000", + "longitude": "7.85892000" + }, + { + "id": "27653", + "name": "Nauort", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.46667000", + "longitude": "7.63333000" + }, + { + "id": "27654", + "name": "Nauroth", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69927000", + "longitude": "7.87543000" + }, + { + "id": "27948", + "name": "Nörtershausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.21667000", + "longitude": "7.48333000" + }, + { + "id": "27676", + "name": "Nentershausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41667000", + "longitude": "7.93333000" + }, + { + "id": "27708", + "name": "Neuburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "48.98933000", + "longitude": "8.24715000" + }, + { + "id": "27730", + "name": "Neuerburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00102000", + "longitude": "6.94828000" + }, + { + "id": "27751", + "name": "Neuhäusel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38360000", + "longitude": "7.70960000" + }, + { + "id": "27750", + "name": "Neuhofen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.42778000", + "longitude": "8.42472000" + }, + { + "id": "27769", + "name": "Neumagen-Dhron", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85553000", + "longitude": "6.89777000" + }, + { + "id": "27777", + "name": "Neunkhausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70722000", + "longitude": "7.90278000" + }, + { + "id": "27784", + "name": "Neupotz", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11778000", + "longitude": "8.31944000" + }, + { + "id": "27794", + "name": "Neustadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35009000", + "longitude": "8.13886000" + }, + { + "id": "27814", + "name": "Neuwied", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43360000", + "longitude": "7.47057000" + }, + { + "id": "27819", + "name": "Newel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81240000", + "longitude": "6.58304000" + }, + { + "id": "27820", + "name": "Nickenich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41421000", + "longitude": "7.32728000" + }, + { + "id": "27827", + "name": "Nieder-Ingelheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97756000", + "longitude": "8.07246000" + }, + { + "id": "27828", + "name": "Nieder-Olm", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91166000", + "longitude": "8.20533000" + }, + { + "id": "27835", + "name": "Niederbreitbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53051000", + "longitude": "7.42099000" + }, + { + "id": "27841", + "name": "Niederdürenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45000000", + "longitude": "7.18333000" + }, + { + "id": "27840", + "name": "Niederdreisbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74955000", + "longitude": "7.92352000" + }, + { + "id": "27842", + "name": "Niederelbert", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40775000", + "longitude": "7.80990000" + }, + { + "id": "27843", + "name": "Niedererbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42610000", + "longitude": "7.97425000" + }, + { + "id": "27845", + "name": "Niederfell", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.28333000", + "longitude": "7.46667000" + }, + { + "id": "27846", + "name": "Niederfischbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85000000", + "longitude": "7.86667000" + }, + { + "id": "27851", + "name": "Niederkirchen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58333000", + "longitude": "7.70000000" + }, + { + "id": "27852", + "name": "Niederkirchen bei Deidesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41500000", + "longitude": "8.21000000" + }, + { + "id": "27858", + "name": "Niedermohr", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45899000", + "longitude": "7.46955000" + }, + { + "id": "27862", + "name": "Niederneisen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33333000", + "longitude": "8.05000000" + }, + { + "id": "27882", + "name": "Niederwerth", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40000000", + "longitude": "7.61667000" + }, + { + "id": "27887", + "name": "Niederzissen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45876000", + "longitude": "7.21810000" + }, + { + "id": "27897", + "name": "Nierstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.87003000", + "longitude": "8.33647000" + }, + { + "id": "27902", + "name": "Nister", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67583000", + "longitude": "7.83833000" + }, + { + "id": "27903", + "name": "Nittel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65000000", + "longitude": "6.45000000" + }, + { + "id": "27929", + "name": "Norheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81091000", + "longitude": "7.81478000" + }, + { + "id": "27957", + "name": "Ober-Flörsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68306000", + "longitude": "8.15528000" + }, + { + "id": "27959", + "name": "Ober-Olm", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93722000", + "longitude": "8.18889000" + }, + { + "id": "27961", + "name": "Ober-Saulheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86376000", + "longitude": "8.13526000" + }, + { + "id": "27975", + "name": "Oberelbert", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39167000", + "longitude": "7.81722000" + }, + { + "id": "27977", + "name": "Oberfell", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.26038000", + "longitude": "7.44461000" + }, + { + "id": "28000", + "name": "Obermoschel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.72797000", + "longitude": "7.77266000" + }, + { + "id": "28009", + "name": "Obernheim-Kirchenarnbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35000000", + "longitude": "7.58333000" + }, + { + "id": "28014", + "name": "Oberotterbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.07044000", + "longitude": "7.96955000" + }, + { + "id": "28054", + "name": "Oberwesel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.10777000", + "longitude": "7.72522000" + }, + { + "id": "28057", + "name": "Oberzissen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45000000", + "longitude": "7.20000000" + }, + { + "id": "28061", + "name": "Obrigheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.59161000", + "longitude": "8.20483000" + }, + { + "id": "28064", + "name": "Ochtendung", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35000000", + "longitude": "7.38333000" + }, + { + "id": "28066", + "name": "Ockenfels", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57610000", + "longitude": "7.27535000" + }, + { + "id": "28067", + "name": "Ockenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.94371000", + "longitude": "7.97127000" + }, + { + "id": "28071", + "name": "Odernheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76511000", + "longitude": "7.70427000" + }, + { + "id": "28087", + "name": "Offenbach an der Queich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19546000", + "longitude": "8.19779000" + }, + { + "id": "28088", + "name": "Offenbach-Hundheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61729000", + "longitude": "7.55117000" + }, + { + "id": "28093", + "name": "Offstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60611000", + "longitude": "8.23806000" + }, + { + "id": "28114", + "name": "Olsbrücken", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53884000", + "longitude": "7.65857000" + }, + { + "id": "28119", + "name": "Oppenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85470000", + "longitude": "8.35974000" + }, + { + "id": "28125", + "name": "Orenhofen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "6.65000000" + }, + { + "id": "28134", + "name": "Osann-Monzel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91667000", + "longitude": "6.95000000" + }, + { + "id": "28135", + "name": "Osburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.71667000", + "longitude": "6.78333000" + }, + { + "id": "28158", + "name": "Osterspai", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.24453000", + "longitude": "7.61227000" + }, + { + "id": "28163", + "name": "Osthofen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70382000", + "longitude": "8.32419000" + }, + { + "id": "28185", + "name": "Otterbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48554000", + "longitude": "7.73450000" + }, + { + "id": "28186", + "name": "Otterberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50301000", + "longitude": "7.76995000" + }, + { + "id": "28190", + "name": "Ottersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19129000", + "longitude": "8.23176000" + }, + { + "id": "28191", + "name": "Otterstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37222000", + "longitude": "8.44778000" + }, + { + "id": "28213", + "name": "Palzem", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56667000", + "longitude": "6.36667000" + }, + { + "id": "28227", + "name": "Partenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88389000", + "longitude": "8.08222000" + }, + { + "id": "28247", + "name": "Pellingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.67552000", + "longitude": "6.67085000" + }, + { + "id": "28249", + "name": "Pelm", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.23188000", + "longitude": "6.69076000" + }, + { + "id": "28270", + "name": "Pfaffen-Schwabenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85000000", + "longitude": "7.95000000" + }, + { + "id": "28285", + "name": "Pfeffelbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53948000", + "longitude": "7.32768000" + }, + { + "id": "28300", + "name": "Piesport", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88640000", + "longitude": "6.91649000" + }, + { + "id": "28308", + "name": "Pirmasens", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20145000", + "longitude": "7.60529000" + }, + { + "id": "28311", + "name": "Plaidt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39260000", + "longitude": "7.39251000" + }, + { + "id": "28329", + "name": "Pluwig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68976000", + "longitude": "6.71239000" + }, + { + "id": "28341", + "name": "Polch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.29973000", + "longitude": "7.31315000" + }, + { + "id": "28364", + "name": "Pottum", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60000000", + "longitude": "8.00000000" + }, + { + "id": "28367", + "name": "Pracht", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76031000", + "longitude": "7.64871000" + }, + { + "id": "28400", + "name": "Prüm", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20785000", + "longitude": "6.42019000" + }, + { + "id": "28402", + "name": "Puderbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60000000", + "longitude": "7.61667000" + }, + { + "id": "28427", + "name": "Queidersbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36667000", + "longitude": "7.63333000" + }, + { + "id": "28457", + "name": "Ralingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81667000", + "longitude": "6.50000000" + }, + { + "id": "28458", + "name": "Ramberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26028000", + "longitude": "8.00833000" + }, + { + "id": "28461", + "name": "Rammelsbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54170000", + "longitude": "7.44392000" + }, + { + "id": "28465", + "name": "Ramsen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53694000", + "longitude": "8.01333000" + }, + { + "id": "28467", + "name": "Ramstein-Miesenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44452000", + "longitude": "7.55533000" + }, + { + "id": "28474", + "name": "Ransbach-Baumbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.46496000", + "longitude": "7.72830000" + }, + { + "id": "28492", + "name": "Raubach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57489000", + "longitude": "7.62496000" + }, + { + "id": "28778", + "name": "Rödersheim-Gronau", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.43000000", + "longitude": "8.26139000" + }, + { + "id": "28800", + "name": "Rüdesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84546000", + "longitude": "7.81452000" + }, + { + "id": "28805", + "name": "Rülzheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15312000", + "longitude": "8.29287000" + }, + { + "id": "28806", + "name": "Rümmelsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93307000", + "longitude": "7.85977000" + }, + { + "id": "28531", + "name": "Rehe", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63333000", + "longitude": "8.11667000" + }, + { + "id": "28542", + "name": "Reichenbach-Steegen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50000000", + "longitude": "7.55000000" + }, + { + "id": "28552", + "name": "Reil", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01667000", + "longitude": "7.11667000" + }, + { + "id": "28565", + "name": "Reinsfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.68333000", + "longitude": "6.88333000" + }, + { + "id": "28572", + "name": "Remagen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57879000", + "longitude": "7.22703000" + }, + { + "id": "28580", + "name": "Rengsdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50000000", + "longitude": "7.50000000" + }, + { + "id": "28581", + "name": "Rennerod", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60820000", + "longitude": "8.06697000" + }, + { + "id": "28599", + "name": "Rhaunen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86380000", + "longitude": "7.34198000" + }, + { + "id": "28609", + "name": "Rheinböllen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01127000", + "longitude": "7.67249000" + }, + { + "id": "28607", + "name": "Rheinbreitbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61667000", + "longitude": "7.23333000" + }, + { + "id": "28608", + "name": "Rheinbrohl", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50000000", + "longitude": "7.33333000" + }, + { + "id": "28614", + "name": "Rheinzabern", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.11806000", + "longitude": "8.27806000" + }, + { + "id": "28615", + "name": "Rhens", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.28125000", + "longitude": "7.61750000" + }, + { + "id": "28618", + "name": "Rhodt unter Rietburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26972000", + "longitude": "8.10778000" + }, + { + "id": "28628", + "name": "Rieden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40000000", + "longitude": "7.18333000" + }, + { + "id": "28646", + "name": "Rieschweiler-Mühlbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23333000", + "longitude": "7.50000000" + }, + { + "id": "28658", + "name": "Rimschweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.21880000", + "longitude": "7.37571000" + }, + { + "id": "28665", + "name": "Riol", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.79301000", + "longitude": "6.79211000" + }, + { + "id": "28668", + "name": "Rittersdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.00000000", + "longitude": "6.50000000" + }, + { + "id": "28672", + "name": "Rockenhausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.62974000", + "longitude": "7.82134000" + }, + { + "id": "28673", + "name": "Rodalben", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23940000", + "longitude": "7.63962000" + }, + { + "id": "28675", + "name": "Rodenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.57414000", + "longitude": "8.10695000" + }, + { + "id": "28690", + "name": "Rohrbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13667000", + "longitude": "8.12861000" + }, + { + "id": "28721", + "name": "Roth", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76230000", + "longitude": "7.70016000" + }, + { + "id": "28740", + "name": "Roxheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86374000", + "longitude": "7.80980000" + }, + { + "id": "28765", + "name": "Ruppach-Goldhausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.46667000", + "longitude": "7.88333000" + }, + { + "id": "28766", + "name": "Ruppertsberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40028000", + "longitude": "8.19611000" + }, + { + "id": "28768", + "name": "Ruppertsweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19707000", + "longitude": "7.68957000" + }, + { + "id": "28817", + "name": "Saarburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60641000", + "longitude": "6.54365000" + }, + { + "id": "28827", + "name": "Saffig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38333000", + "longitude": "7.41667000" + }, + { + "id": "28836", + "name": "Salmtal", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93333000", + "longitude": "6.85000000" + }, + { + "id": "28867", + "name": "Sankt Goar", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.14878000", + "longitude": "7.70720000" + }, + { + "id": "28868", + "name": "Sankt Goarshausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15839000", + "longitude": "7.71374000" + }, + { + "id": "28871", + "name": "Sankt Julian", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.61667000", + "longitude": "7.51667000" + }, + { + "id": "28872", + "name": "Sankt Katharinen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58333000", + "longitude": "7.38333000" + }, + { + "id": "28877", + "name": "Sankt Martin", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30028000", + "longitude": "8.10528000" + }, + { + "id": "28882", + "name": "Sankt Sebastian", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41077000", + "longitude": "7.56175000" + }, + { + "id": "29495", + "name": "Sörgenloch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88306000", + "longitude": "8.20111000" + }, + { + "id": "29118", + "name": "Schönecken", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.15909000", + "longitude": "6.46820000" + }, + { + "id": "29121", + "name": "Schönenberg-Kübelberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40740000", + "longitude": "7.37233000" + }, + { + "id": "28936", + "name": "Scheuerfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78736000", + "longitude": "7.84128000" + }, + { + "id": "28943", + "name": "Schifferstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38417000", + "longitude": "8.37750000" + }, + { + "id": "28947", + "name": "Schillingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63333000", + "longitude": "6.78333000" + }, + { + "id": "29022", + "name": "Schopp", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35000000", + "longitude": "7.68333000" + }, + { + "id": "29025", + "name": "Schornsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84583000", + "longitude": "8.17500000" + }, + { + "id": "29040", + "name": "Schwabenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.92879000", + "longitude": "8.09525000" + }, + { + "id": "29077", + "name": "Schwedelbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49557000", + "longitude": "7.59366000" + }, + { + "id": "29079", + "name": "Schwegenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.27000000", + "longitude": "8.32861000" + }, + { + "id": "29080", + "name": "Schweich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82215000", + "longitude": "6.75256000" + }, + { + "id": "29081", + "name": "Schweigen-Rechtenbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.05314000", + "longitude": "7.95638000" + }, + { + "id": "29140", + "name": "Seck", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57722000", + "longitude": "8.04972000" + }, + { + "id": "29171", + "name": "Seibersbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.96667000", + "longitude": "7.71667000" + }, + { + "id": "29184", + "name": "Selters", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53253000", + "longitude": "7.75577000" + }, + { + "id": "29186", + "name": "Selzen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86056000", + "longitude": "8.25528000" + }, + { + "id": "29187", + "name": "Sembach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51177000", + "longitude": "7.86661000" + }, + { + "id": "29195", + "name": "Serrig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.57519000", + "longitude": "6.57454000" + }, + { + "id": "29208", + "name": "Siebeldingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20889000", + "longitude": "8.05139000" + }, + { + "id": "29210", + "name": "Siefersheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80000000", + "longitude": "7.95000000" + }, + { + "id": "29221", + "name": "Siershahn", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48639000", + "longitude": "7.77972000" + }, + { + "id": "29235", + "name": "Simmern", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98198000", + "longitude": "7.52351000" + }, + { + "id": "29237", + "name": "Simmertal", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.80981000", + "longitude": "7.52282000" + }, + { + "id": "29242", + "name": "Singhofen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.27440000", + "longitude": "7.83333000" + }, + { + "id": "29247", + "name": "Sinzig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54384000", + "longitude": "7.24639000" + }, + { + "id": "29249", + "name": "Sippersfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55000000", + "longitude": "7.93333000" + }, + { + "id": "29257", + "name": "Sohren", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93333000", + "longitude": "7.31667000" + }, + { + "id": "29283", + "name": "Spabrücken", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "7.71667000" + }, + { + "id": "29290", + "name": "Spay", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25881000", + "longitude": "7.64839000" + }, + { + "id": "29292", + "name": "Speicher", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.93333000", + "longitude": "6.63333000" + }, + { + "id": "29299", + "name": "Speyer", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32083000", + "longitude": "8.43111000" + }, + { + "id": "29303", + "name": "Spiesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81028000", + "longitude": "8.12750000" + }, + { + "id": "29308", + "name": "Sprendlingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86667000", + "longitude": "7.98333000" + }, + { + "id": "29315", + "name": "Stadecken-Elsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.91222000", + "longitude": "8.12528000" + }, + { + "id": "29323", + "name": "Stadtkyll", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35000000", + "longitude": "6.53333000" + }, + { + "id": "29344", + "name": "Staudernheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.77675000", + "longitude": "7.68890000" + }, + { + "id": "29356", + "name": "Steimel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61667000", + "longitude": "7.63333000" + }, + { + "id": "29372", + "name": "Steinfeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04833000", + "longitude": "8.03694000" + }, + { + "id": "29391", + "name": "Steinweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.12111000", + "longitude": "8.14139000" + }, + { + "id": "29392", + "name": "Steinwenden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45708000", + "longitude": "7.52726000" + }, + { + "id": "29397", + "name": "Stelzenberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37756000", + "longitude": "7.73814000" + }, + { + "id": "29436", + "name": "Stromberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45779000", + "longitude": "7.60041000" + }, + { + "id": "29480", + "name": "Sulzheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84306000", + "longitude": "8.09167000" + }, + { + "id": "29541", + "name": "Tawern", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.66667000", + "longitude": "6.51667000" + }, + { + "id": "29576", + "name": "Thaleischweiler-Fröschen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26667000", + "longitude": "7.58333000" + }, + { + "id": "29577", + "name": "Thalfang", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75000000", + "longitude": "7.00000000" + }, + { + "id": "29607", + "name": "Thür", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35692000", + "longitude": "7.27689000" + }, + { + "id": "29598", + "name": "Thomm", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74140000", + "longitude": "6.80492000" + }, + { + "id": "29636", + "name": "Traben-Trarbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95076000", + "longitude": "7.11562000" + }, + { + "id": "29642", + "name": "Trassem", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.57849000", + "longitude": "6.52540000" + }, + { + "id": "29654", + "name": "Trechtingshausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.01031000", + "longitude": "7.84709000" + }, + { + "id": "29658", + "name": "Treis-Karden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.17174000", + "longitude": "7.30218000" + }, + { + "id": "29668", + "name": "Trier", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.75565000", + "longitude": "6.63935000" + }, + { + "id": "29669", + "name": "Trierweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76231000", + "longitude": "6.55987000" + }, + { + "id": "29672", + "name": "Trippstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35935000", + "longitude": "7.77480000" + }, + { + "id": "29675", + "name": "Trittenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.82471000", + "longitude": "6.89929000" + }, + { + "id": "29683", + "name": "Trulben", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.13916000", + "longitude": "7.54370000" + }, + { + "id": "29716", + "name": "Udenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.86472000", + "longitude": "8.17167000" + }, + { + "id": "29724", + "name": "Uelversheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81000000", + "longitude": "8.28861000" + }, + { + "id": "29738", + "name": "Ulmen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.20943000", + "longitude": "6.97941000" + }, + { + "id": "29744", + "name": "Undenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83806000", + "longitude": "8.21889000" + }, + { + "id": "29746", + "name": "Unkel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.59653000", + "longitude": "7.21888000" + }, + { + "id": "29749", + "name": "Unnau", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64881000", + "longitude": "7.90827000" + }, + { + "id": "29791", + "name": "Urbach-Überdorf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55690000", + "longitude": "7.58695000" + }, + { + "id": "29792", + "name": "Urbar", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.38333000", + "longitude": "7.63333000" + }, + { + "id": "29793", + "name": "Urmitz", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41667000", + "longitude": "7.51667000" + }, + { + "id": "29811", + "name": "Vallendar", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39586000", + "longitude": "7.62427000" + }, + { + "id": "29840", + "name": "Vettelschoß", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61667000", + "longitude": "7.35000000" + }, + { + "id": "29859", + "name": "Vinningen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15635000", + "longitude": "7.55191000" + }, + { + "id": "29879", + "name": "Volxheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81667000", + "longitude": "7.93333000" + }, + { + "id": "29901", + "name": "Wachenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44045000", + "longitude": "8.18041000" + }, + { + "id": "29906", + "name": "Wackernheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.97444000", + "longitude": "8.11667000" + }, + { + "id": "29934", + "name": "Waldalgesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95000000", + "longitude": "7.83333000" + }, + { + "id": "29941", + "name": "Waldböckelheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81667000", + "longitude": "7.71667000" + }, + { + "id": "29936", + "name": "Waldbreitbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55000000", + "longitude": "7.41667000" + }, + { + "id": "29951", + "name": "Waldfischbach-Burgalben", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28333000", + "longitude": "7.66667000" + }, + { + "id": "29958", + "name": "Waldmohr", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38333000", + "longitude": "7.33333000" + }, + { + "id": "29960", + "name": "Waldrach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.74623000", + "longitude": "6.74543000" + }, + { + "id": "29962", + "name": "Waldsee", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.39528000", + "longitude": "8.44028000" + }, + { + "id": "29981", + "name": "Wallertheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83556000", + "longitude": "8.05139000" + }, + { + "id": "29984", + "name": "Wallhausen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.88333000", + "longitude": "7.76667000" + }, + { + "id": "29986", + "name": "Wallmenroth", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80000000", + "longitude": "7.83333000" + }, + { + "id": "29987", + "name": "Wallmerod", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48333000", + "longitude": "7.95000000" + }, + { + "id": "30030", + "name": "Wassenach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43333000", + "longitude": "7.28333000" + }, + { + "id": "30035", + "name": "Wasserliesch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70739000", + "longitude": "6.53944000" + }, + { + "id": "30041", + "name": "Wattenheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52167000", + "longitude": "8.06167000" + }, + { + "id": "30043", + "name": "Waxweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.09257000", + "longitude": "6.36299000" + }, + { + "id": "30441", + "name": "Wöllstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.81667000", + "longitude": "7.96667000" + }, + { + "id": "30444", + "name": "Wörrstadt", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.84861000", + "longitude": "8.12417000" + }, + { + "id": "30448", + "name": "Wörth am Rhein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.04888000", + "longitude": "8.25959000" + }, + { + "id": "30060", + "name": "Wehr", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41667000", + "longitude": "7.21667000" + }, + { + "id": "30137", + "name": "Weißenthurm", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41719000", + "longitude": "7.45072000" + }, + { + "id": "30064", + "name": "Weibern", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40808000", + "longitude": "7.14669000" + }, + { + "id": "30072", + "name": "Weidenthal", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41667000", + "longitude": "8.00000000" + }, + { + "id": "30086", + "name": "Weiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95696000", + "longitude": "7.86484000" + }, + { + "id": "30088", + "name": "Weilerbach", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48333000", + "longitude": "7.63333000" + }, + { + "id": "30099", + "name": "Weingarten", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25946000", + "longitude": "8.28620000" + }, + { + "id": "30103", + "name": "Weinsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.83333000", + "longitude": "7.76667000" + }, + { + "id": "30106", + "name": "Weisel", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.11667000", + "longitude": "7.80000000" + }, + { + "id": "30114", + "name": "Weitefeld", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.72541000", + "longitude": "7.92805000" + }, + { + "id": "30117", + "name": "Weitersburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41667000", + "longitude": "7.60000000" + }, + { + "id": "30146", + "name": "Welschbillig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.85000000", + "longitude": "6.56667000" + }, + { + "id": "30153", + "name": "Wendelsheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.76667000", + "longitude": "8.00000000" + }, + { + "id": "30182", + "name": "Wernersberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.19062000", + "longitude": "7.92756000" + }, + { + "id": "30192", + "name": "Weselberg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.33662000", + "longitude": "7.60780000" + }, + { + "id": "30204", + "name": "Westerburg", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55938000", + "longitude": "7.97482000" + }, + { + "id": "30219", + "name": "Westheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24640000", + "longitude": "8.32357000" + }, + { + "id": "30221", + "name": "Westhofen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.70444000", + "longitude": "8.24806000" + }, + { + "id": "30233", + "name": "Weyerbusch", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71667000", + "longitude": "7.55000000" + }, + { + "id": "30282", + "name": "Wilgartswiesen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20891000", + "longitude": "7.87346000" + }, + { + "id": "30306", + "name": "Wiltingen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.65919000", + "longitude": "6.59255000" + }, + { + "id": "30309", + "name": "Wincheringen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60904000", + "longitude": "6.42597000" + }, + { + "id": "30314", + "name": "Winden", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.09778000", + "longitude": "8.11694000" + }, + { + "id": "30315", + "name": "Windesheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "7.81667000" + }, + { + "id": "30316", + "name": "Windhagen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64121000", + "longitude": "7.35352000" + }, + { + "id": "30327", + "name": "Winningen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31667000", + "longitude": "7.51667000" + }, + { + "id": "30328", + "name": "Winnweiler", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.56667000", + "longitude": "7.85000000" + }, + { + "id": "30342", + "name": "Wirges", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.47195000", + "longitude": "7.79844000" + }, + { + "id": "30346", + "name": "Wissen", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77915000", + "longitude": "7.73466000" + }, + { + "id": "30361", + "name": "Wittlich", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.98596000", + "longitude": "6.89308000" + }, + { + "id": "30388", + "name": "Wolfstein", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58411000", + "longitude": "7.60496000" + }, + { + "id": "30390", + "name": "Wolken", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.33333000", + "longitude": "7.46667000" + }, + { + "id": "30406", + "name": "Worms", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.63278000", + "longitude": "8.35916000" + }, + { + "id": "30478", + "name": "Zeiskam", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23278000", + "longitude": "8.24722000" + }, + { + "id": "30483", + "name": "Zell", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "50.02918000", + "longitude": "7.18232000" + }, + { + "id": "30491", + "name": "Zeltingen-Rachtig", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.95000000", + "longitude": "7.01667000" + }, + { + "id": "30492", + "name": "Zemmer", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.90000000", + "longitude": "6.70000000" + }, + { + "id": "30495", + "name": "Zerf", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60000000", + "longitude": "6.68333000" + }, + { + "id": "30516", + "name": "Zornheim", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.89000000", + "longitude": "8.22472000" + }, + { + "id": "30531", + "name": "Zweibrücken", + "state_id": 3019, + "state_code": "RP", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24686000", + "longitude": "7.36977000" + }, + { + "id": "30554", + "name": "Überherrn", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24187000", + "longitude": "6.69840000" + }, + { + "id": "23978", + "name": "Beckingen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40000000", + "longitude": "6.70000000" + }, + { + "id": "24094", + "name": "Bexbach", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34615000", + "longitude": "7.25527000" + }, + { + "id": "24182", + "name": "Blieskastel", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23724000", + "longitude": "7.25617000" + }, + { + "id": "24264", + "name": "Bous", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.27732000", + "longitude": "6.80131000" + }, + { + "id": "24336", + "name": "Britten", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52061000", + "longitude": "6.67651000" + }, + { + "id": "24690", + "name": "Dillingen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35557000", + "longitude": "6.72781000" + }, + { + "id": "25014", + "name": "Ensdorf", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30000000", + "longitude": "6.78333000" + }, + { + "id": "25018", + "name": "Eppelborn", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40000000", + "longitude": "6.96667000" + }, + { + "id": "25332", + "name": "Fürstenhausen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24075000", + "longitude": "6.86817000" + }, + { + "id": "25250", + "name": "Freisen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55000000", + "longitude": "7.25000000" + }, + { + "id": "25294", + "name": "Friedrichsthal", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32786000", + "longitude": "7.09622000" + }, + { + "id": "25460", + "name": "Gersheim", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15000000", + "longitude": "7.20000000" + }, + { + "id": "25701", + "name": "Großrosseln", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.20296000", + "longitude": "6.84148000" + }, + { + "id": "25887", + "name": "Hangard", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38260000", + "longitude": "7.21046000" + }, + { + "id": "25990", + "name": "Heidstock", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25571000", + "longitude": "6.88156000" + }, + { + "id": "26125", + "name": "Heusweiler", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.33632000", + "longitude": "6.93036000" + }, + { + "id": "26252", + "name": "Homburg", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32637000", + "longitude": "7.33867000" + }, + { + "id": "26369", + "name": "Illingen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.37362000", + "longitude": "7.04758000" + }, + { + "id": "26641", + "name": "Kirkel", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28333000", + "longitude": "7.23333000" + }, + { + "id": "26669", + "name": "Kleinblittersdorf", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.15780000", + "longitude": "7.03734000" + }, + { + "id": "26994", + "name": "Lebach", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41122000", + "longitude": "6.90988000" + }, + { + "id": "27151", + "name": "Losheim", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50990000", + "longitude": "6.74549000" + }, + { + "id": "27162", + "name": "Ludweiler-Warndt", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.22074000", + "longitude": "6.81195000" + }, + { + "id": "27173", + "name": "Luisenthal", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.24932000", + "longitude": "6.90057000" + }, + { + "id": "27245", + "name": "Mainzweiler", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.41714000", + "longitude": "7.11804000" + }, + { + "id": "27323", + "name": "Marpingen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.45228000", + "longitude": "7.05820000" + }, + { + "id": "27415", + "name": "Merchweiler", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35000000", + "longitude": "7.05000000" + }, + { + "id": "27430", + "name": "Merzig", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.44331000", + "longitude": "6.63874000" + }, + { + "id": "27442", + "name": "Mettlach", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.49489000", + "longitude": "6.58562000" + }, + { + "id": "27639", + "name": "Nalbach", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.38333000", + "longitude": "6.78333000" + }, + { + "id": "27640", + "name": "Namborn", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.52166000", + "longitude": "7.14070000" + }, + { + "id": "27780", + "name": "Neunkirchen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.34449000", + "longitude": "7.18045000" + }, + { + "id": "27907", + "name": "Nohfelden", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.58693000", + "longitude": "7.14283000" + }, + { + "id": "27910", + "name": "Nonnweiler", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.60762000", + "longitude": "6.96986000" + }, + { + "id": "28046", + "name": "Oberthal", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51257000", + "longitude": "7.08382000" + }, + { + "id": "28128", + "name": "Orscholz", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.50593000", + "longitude": "6.52502000" + }, + { + "id": "28197", + "name": "Ottweiler", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.40133000", + "longitude": "7.16424000" + }, + { + "id": "28423", + "name": "Püttlingen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.28550000", + "longitude": "6.88723000" + }, + { + "id": "28433", + "name": "Quierschied", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31667000", + "longitude": "7.05000000" + }, + { + "id": "28775", + "name": "Röchling-Höhe", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.27102000", + "longitude": "6.83457000" + }, + { + "id": "28639", + "name": "Riegelsberg", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30000000", + "longitude": "6.93333000" + }, + { + "id": "28816", + "name": "Saarbrücken", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.23262000", + "longitude": "7.00982000" + }, + { + "id": "28818", + "name": "Saarhölzbach", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.51585000", + "longitude": "6.60742000" + }, + { + "id": "28819", + "name": "Saarlouis", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31366000", + "longitude": "6.75154000" + }, + { + "id": "28820", + "name": "Saarwellingen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.35430000", + "longitude": "6.80487000" + }, + { + "id": "28869", + "name": "Sankt Ingbert", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.27697000", + "longitude": "7.11672000" + }, + { + "id": "28883", + "name": "Sankt Wendel", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.46633000", + "longitude": "7.16814000" + }, + { + "id": "28944", + "name": "Schiffweiler", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.36667000", + "longitude": "7.13333000" + }, + { + "id": "28990", + "name": "Schmelz", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.43333000", + "longitude": "6.85000000" + }, + { + "id": "29049", + "name": "Schwalbach", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.30000000", + "longitude": "6.81667000" + }, + { + "id": "29302", + "name": "Spiesen-Elversberg", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.31667000", + "longitude": "7.13333000" + }, + { + "id": "29467", + "name": "Sulzbach", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.29882000", + "longitude": "7.05696000" + }, + { + "id": "29596", + "name": "Tholey", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.48374000", + "longitude": "7.03691000" + }, + { + "id": "29892", + "name": "Völklingen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.25162000", + "longitude": "6.85873000" + }, + { + "id": "29910", + "name": "Wadern", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.54122000", + "longitude": "6.88774000" + }, + { + "id": "29912", + "name": "Wadgassen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.26667000", + "longitude": "6.78333000" + }, + { + "id": "29977", + "name": "Wallerfangen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.32749000", + "longitude": "6.71102000" + }, + { + "id": "30110", + "name": "Weiskirchen", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.55000000", + "longitude": "6.81667000" + }, + { + "id": "30115", + "name": "Weiten", + "state_id": 3020, + "state_code": "SL", + "country_id": 82, + "country_code": "DE", + "latitude": "49.53011000", + "longitude": "6.54064000" + }, + { + "id": "23493", + "name": "Adorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.32011000", + "longitude": "12.25986000" + }, + { + "id": "23537", + "name": "Albertstadt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08333000", + "longitude": "13.76667000" + }, + { + "id": "23593", + "name": "Altenberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76556000", + "longitude": "13.75334000" + }, + { + "id": "23629", + "name": "Altmittweida", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96667000", + "longitude": "12.95000000" + }, + { + "id": "23661", + "name": "Annaberg-Buchholz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57953000", + "longitude": "13.00627000" + }, + { + "id": "23696", + "name": "Arzberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52887000", + "longitude": "13.12565000" + }, + { + "id": "23724", + "name": "Aue", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.59034000", + "longitude": "12.70657000" + }, + { + "id": "23726", + "name": "Auerbach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51155000", + "longitude": "12.40083000" + }, + { + "id": "23733", + "name": "Augustusburg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81192000", + "longitude": "13.10197000" + }, + { + "id": "23775", + "name": "Bad Brambach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.21667000", + "longitude": "12.31667000" + }, + { + "id": "23784", + "name": "Bad Düben", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.59174000", + "longitude": "12.58492000" + }, + { + "id": "23789", + "name": "Bad Elster", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.28192000", + "longitude": "12.23430000" + }, + { + "id": "23826", + "name": "Bad Lausick", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14495000", + "longitude": "12.64449000" + }, + { + "id": "23836", + "name": "Bad Muskau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55051000", + "longitude": "14.71240000" + }, + { + "id": "23860", + "name": "Bad Schandau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91743000", + "longitude": "14.15494000" + }, + { + "id": "23861", + "name": "Bad Schlema", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60257000", + "longitude": "12.67288000" + }, + { + "id": "23921", + "name": "Bannewitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99291000", + "longitude": "13.71712000" + }, + { + "id": "23963", + "name": "Bautzen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18035000", + "longitude": "14.43494000" + }, + { + "id": "24459", + "name": "Bärenstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50000000", + "longitude": "13.03333000" + }, + { + "id": "24466", + "name": "Böhlen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20061000", + "longitude": "12.38622000" + }, + { + "id": "24474", + "name": "Börnichen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75010000", + "longitude": "13.14075000" + }, + { + "id": "24480", + "name": "Bösenbrunn", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39703000", + "longitude": "12.09998000" + }, + { + "id": "23992", + "name": "Beierfeld", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56529000", + "longitude": "12.79049000" + }, + { + "id": "23993", + "name": "Beiersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.07405000", + "longitude": "14.53828000" + }, + { + "id": "23994", + "name": "Beilrode", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56667000", + "longitude": "13.06667000" + }, + { + "id": "23998", + "name": "Belgern", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.48263000", + "longitude": "13.12382000" + }, + { + "id": "23999", + "name": "Belgershain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23333000", + "longitude": "12.55000000" + }, + { + "id": "24012", + "name": "Bennewitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36074000", + "longitude": "12.71376000" + }, + { + "id": "24034", + "name": "Bergen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.47100000", + "longitude": "12.27448000" + }, + { + "id": "24069", + "name": "Bernsbach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57624000", + "longitude": "12.76751000" + }, + { + "id": "24070", + "name": "Bernsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.37350000", + "longitude": "14.06886000" + }, + { + "id": "24071", + "name": "Bernstadt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04736000", + "longitude": "14.82784000" + }, + { + "id": "24075", + "name": "Berthelsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04679000", + "longitude": "14.22197000" + }, + { + "id": "24076", + "name": "Bertsdorf-Hörnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88593000", + "longitude": "14.73696000" + }, + { + "id": "24150", + "name": "Bischofswerda", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12771000", + "longitude": "14.17974000" + }, + { + "id": "24195", + "name": "Bockau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54209000", + "longitude": "12.68639000" + }, + { + "id": "24196", + "name": "Bockelwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19942000", + "longitude": "12.95618000" + }, + { + "id": "24250", + "name": "Borna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12416000", + "longitude": "12.49639000" + }, + { + "id": "24257", + "name": "Borsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35000000", + "longitude": "12.53333000" + }, + { + "id": "24260", + "name": "Borstendorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77323000", + "longitude": "13.17918000" + }, + { + "id": "24267", + "name": "Boxberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40373000", + "longitude": "14.57598000" + }, + { + "id": "24278", + "name": "Brand-Erbisdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86643000", + "longitude": "13.32285000" + }, + { + "id": "24281", + "name": "Brandis", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.33597000", + "longitude": "12.61024000" + }, + { + "id": "24308", + "name": "Breitenbrunn", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.47553000", + "longitude": "12.76649000" + }, + { + "id": "24435", + "name": "Burgstädt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91333000", + "longitude": "12.80600000" + }, + { + "id": "24441", + "name": "Burkau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17579000", + "longitude": "14.17329000" + }, + { + "id": "24442", + "name": "Burkhardtsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73333000", + "longitude": "12.91667000" + }, + { + "id": "24517", + "name": "Callenberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85000000", + "longitude": "12.63333000" + }, + { + "id": "24527", + "name": "Cavertitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38333000", + "longitude": "13.13333000" + }, + { + "id": "24533", + "name": "Chemnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83570000", + "longitude": "12.92922000" + }, + { + "id": "24539", + "name": "Claußnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93333000", + "longitude": "12.88333000" + }, + { + "id": "24549", + "name": "Colditz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12821000", + "longitude": "12.80295000" + }, + { + "id": "24554", + "name": "Coswig", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13204000", + "longitude": "13.58312000" + }, + { + "id": "24563", + "name": "Crimmitschau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81644000", + "longitude": "12.39045000" + }, + { + "id": "24566", + "name": "Crostau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08462000", + "longitude": "14.45589000" + }, + { + "id": "24567", + "name": "Crostwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23832000", + "longitude": "14.24338000" + }, + { + "id": "24568", + "name": "Crottendorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51667000", + "longitude": "12.95000000" + }, + { + "id": "24569", + "name": "Cunewalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10000000", + "longitude": "14.51667000" + }, + { + "id": "24579", + "name": "Dahlen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36495000", + "longitude": "12.99881000" + }, + { + "id": "24792", + "name": "Döbeln", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12210000", + "longitude": "13.11027000" + }, + { + "id": "24793", + "name": "Döbernitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.51241000", + "longitude": "12.34753000" + }, + { + "id": "24813", + "name": "Dürrhennersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04863000", + "longitude": "14.60383000" + }, + { + "id": "24815", + "name": "Dürrröhrsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.03395000", + "longitude": "13.99718000" + }, + { + "id": "24623", + "name": "Delitzsch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52546000", + "longitude": "12.34284000" + }, + { + "id": "24628", + "name": "Demitz-Thumitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14149000", + "longitude": "14.24719000" + }, + { + "id": "24633", + "name": "Dennheritz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81412000", + "longitude": "12.46519000" + }, + { + "id": "24660", + "name": "Deutzen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11217000", + "longitude": "12.42541000" + }, + { + "id": "24701", + "name": "Dippoldiswalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89621000", + "longitude": "13.66905000" + }, + { + "id": "24714", + "name": "Doberschütz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49870000", + "longitude": "12.74792000" + }, + { + "id": "24718", + "name": "Dohma", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91667000", + "longitude": "13.93333000" + }, + { + "id": "24719", + "name": "Dohna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95621000", + "longitude": "13.85839000" + }, + { + "id": "24727", + "name": "Dommitzsch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.64071000", + "longitude": "12.87940000" + }, + { + "id": "24734", + "name": "Dorfchemnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66363000", + "longitude": "12.83651000" + }, + { + "id": "24736", + "name": "Dorfhain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93333000", + "longitude": "13.56667000" + }, + { + "id": "24757", + "name": "Drebach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67583000", + "longitude": "13.01620000" + }, + { + "id": "24768", + "name": "Dresden", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05089000", + "longitude": "13.73832000" + }, + { + "id": "24832", + "name": "Ebersbach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00762000", + "longitude": "14.58621000" + }, + { + "id": "24893", + "name": "Ehrenfriedersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64934000", + "longitude": "12.97009000" + }, + { + "id": "24895", + "name": "Eibau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98272000", + "longitude": "14.66214000" + }, + { + "id": "24897", + "name": "Eibenstock", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49431000", + "longitude": "12.59978000" + }, + { + "id": "24904", + "name": "Eichigt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35000000", + "longitude": "12.16667000" + }, + { + "id": "24913", + "name": "Eilenburg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45984000", + "longitude": "12.63338000" + }, + { + "id": "24946", + "name": "Ellefeld", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48367000", + "longitude": "12.38880000" + }, + { + "id": "24968", + "name": "Elsnig", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61024000", + "longitude": "12.92833000" + }, + { + "id": "24970", + "name": "Elsterberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60841000", + "longitude": "12.16787000" + }, + { + "id": "24971", + "name": "Elstertrebnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15000000", + "longitude": "12.23333000" + }, + { + "id": "24973", + "name": "Elstra", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.22172000", + "longitude": "14.13201000" + }, + { + "id": "24974", + "name": "Elterlein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57663000", + "longitude": "12.86836000" + }, + { + "id": "25022", + "name": "Eppendorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80000000", + "longitude": "13.23333000" + }, + { + "id": "25053", + "name": "Erlau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00938000", + "longitude": "12.94549000" + }, + { + "id": "25054", + "name": "Erlbach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31667000", + "longitude": "12.36667000" + }, + { + "id": "25091", + "name": "Espenhain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18926000", + "longitude": "12.47885000" + }, + { + "id": "25131", + "name": "Falkenau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85559000", + "longitude": "13.11718000" + }, + { + "id": "25137", + "name": "Falkenhain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39888000", + "longitude": "12.87083000" + }, + { + "id": "25139", + "name": "Falkenstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.47788000", + "longitude": "12.37129000" + }, + { + "id": "25199", + "name": "Flöha", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85613000", + "longitude": "13.07407000" + }, + { + "id": "25214", + "name": "Frankenberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91297000", + "longitude": "13.04011000" + }, + { + "id": "25216", + "name": "Frankenstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90064000", + "longitude": "13.20933000" + }, + { + "id": "25219", + "name": "Frankenthal", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13129000", + "longitude": "14.10893000" + }, + { + "id": "25230", + "name": "Frauenstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80279000", + "longitude": "13.53790000" + }, + { + "id": "25233", + "name": "Fraureuth", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70000000", + "longitude": "12.35000000" + }, + { + "id": "25238", + "name": "Freiberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91089000", + "longitude": "13.33881000" + }, + { + "id": "25252", + "name": "Freital", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00166000", + "longitude": "13.64880000" + }, + { + "id": "25277", + "name": "Friedersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02416000", + "longitude": "14.56246000" + }, + { + "id": "25304", + "name": "Frohburg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05719000", + "longitude": "12.55746000" + }, + { + "id": "25340", + "name": "Gablenz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53333000", + "longitude": "14.66667000" + }, + { + "id": "25775", + "name": "Göda", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17800000", + "longitude": "14.31951000" + }, + { + "id": "25781", + "name": "Görlitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15518000", + "longitude": "14.98853000" + }, + { + "id": "25404", + "name": "Geising", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75742000", + "longitude": "13.79278000" + }, + { + "id": "25410", + "name": "Geithain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05528000", + "longitude": "12.69674000" + }, + { + "id": "25414", + "name": "Gelenau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71151000", + "longitude": "12.96666000" + }, + { + "id": "25443", + "name": "Geringswalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.07677000", + "longitude": "12.90725000" + }, + { + "id": "25458", + "name": "Gersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11220000", + "longitude": "12.93889000" + }, + { + "id": "25479", + "name": "Geyer", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62632000", + "longitude": "12.92074000" + }, + { + "id": "25503", + "name": "Glashütte", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85196000", + "longitude": "13.77977000" + }, + { + "id": "25508", + "name": "Glaubitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.32498000", + "longitude": "13.37817000" + }, + { + "id": "25510", + "name": "Glauchau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81987000", + "longitude": "12.54493000" + }, + { + "id": "25543", + "name": "Gornau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75901000", + "longitude": "13.03731000" + }, + { + "id": "25544", + "name": "Gornsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70000000", + "longitude": "12.88333000" + }, + { + "id": "25735", + "name": "Grünbach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.44995000", + "longitude": "12.36186000" + }, + { + "id": "25739", + "name": "Grünhain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58019000", + "longitude": "12.80695000" + }, + { + "id": "25740", + "name": "Grünhainichen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76720000", + "longitude": "13.15366000" + }, + { + "id": "25610", + "name": "Grimma", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23367000", + "longitude": "12.71959000" + }, + { + "id": "25621", + "name": "Groß Düben", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56667000", + "longitude": "14.56667000" + }, + { + "id": "25650", + "name": "Großbardau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20419000", + "longitude": "12.69848000" + }, + { + "id": "25656", + "name": "Großbothen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18784000", + "longitude": "12.75101000" + }, + { + "id": "25659", + "name": "Großdubrau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25422000", + "longitude": "14.45897000" + }, + { + "id": "25664", + "name": "Großenhain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28951000", + "longitude": "13.53350000" + }, + { + "id": "25675", + "name": "Großharthau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10694000", + "longitude": "14.09911000" + }, + { + "id": "25676", + "name": "Großhartmannsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80000000", + "longitude": "13.33333000" + }, + { + "id": "25678", + "name": "Großhennersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98597000", + "longitude": "14.78776000" + }, + { + "id": "25689", + "name": "Großlehna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30687000", + "longitude": "12.17190000" + }, + { + "id": "25693", + "name": "Großnaundorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20000000", + "longitude": "13.93333000" + }, + { + "id": "25695", + "name": "Großolbersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70000000", + "longitude": "13.08333000" + }, + { + "id": "25698", + "name": "Großpösna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26667000", + "longitude": "12.50000000" + }, + { + "id": "25697", + "name": "Großpostwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12083000", + "longitude": "14.44065000" + }, + { + "id": "25704", + "name": "Großröhrsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14528000", + "longitude": "14.01917000" + }, + { + "id": "25705", + "name": "Großrückerswalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63333000", + "longitude": "13.11667000" + }, + { + "id": "25708", + "name": "Großschönau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90000000", + "longitude": "14.68333000" + }, + { + "id": "25706", + "name": "Großschirma", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96602000", + "longitude": "13.28590000" + }, + { + "id": "25707", + "name": "Großschweidnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06939000", + "longitude": "14.64297000" + }, + { + "id": "25713", + "name": "Großweitzschen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15845000", + "longitude": "13.04517000" + }, + { + "id": "25612", + "name": "Groitzsch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15536000", + "longitude": "12.28279000" + }, + { + "id": "25770", + "name": "Guttau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25904000", + "longitude": "14.56132000" + }, + { + "id": "25837", + "name": "Hainewalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91014000", + "longitude": "14.70387000" + }, + { + "id": "25838", + "name": "Hainichen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97044000", + "longitude": "13.12287000" + }, + { + "id": "25858", + "name": "Halsbrücke", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95000000", + "longitude": "13.35000000" + }, + { + "id": "25878", + "name": "Hammerbrücke", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43504000", + "longitude": "12.41500000" + }, + { + "id": "25913", + "name": "Hartenstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66236000", + "longitude": "12.66966000" + }, + { + "id": "25914", + "name": "Hartha", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09863000", + "longitude": "12.97391000" + }, + { + "id": "25917", + "name": "Hartmannsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75804000", + "longitude": "12.42687000" + }, + { + "id": "25924", + "name": "Haselbachtal", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23570000", + "longitude": "14.02576000" + }, + { + "id": "25954", + "name": "Hauswalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15212000", + "longitude": "14.08630000" + }, + { + "id": "26295", + "name": "Hähnichen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36540000", + "longitude": "14.86098000" + }, + { + "id": "26305", + "name": "Höckendorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.22423000", + "longitude": "13.90935000" + }, + { + "id": "25985", + "name": "Heidenau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97221000", + "longitude": "13.86741000" + }, + { + "id": "26081", + "name": "Hermsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92338000", + "longitude": "13.73480000" + }, + { + "id": "26090", + "name": "Herrnhut", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01624000", + "longitude": "14.74381000" + }, + { + "id": "26132", + "name": "Hilbersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85400000", + "longitude": "12.94776000" + }, + { + "id": "26165", + "name": "Hirschfeld", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62453000", + "longitude": "12.45722000" + }, + { + "id": "26167", + "name": "Hirschfelde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94437000", + "longitude": "14.88510000" + }, + { + "id": "26177", + "name": "Hochkirch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14898000", + "longitude": "14.57063000" + }, + { + "id": "26194", + "name": "Hohburg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41168000", + "longitude": "12.80508000" + }, + { + "id": "26215", + "name": "Hohenstein-Ernstthal", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80064000", + "longitude": "12.71287000" + }, + { + "id": "26224", + "name": "Hohndorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74044000", + "longitude": "12.68058000" + }, + { + "id": "26226", + "name": "Hohnstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97991000", + "longitude": "14.11408000" + }, + { + "id": "26262", + "name": "Horka", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26342000", + "longitude": "14.25523000" + }, + { + "id": "26263", + "name": "Hormersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67406000", + "longitude": "12.88194000" + }, + { + "id": "26277", + "name": "Hoyerswerda", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43787000", + "longitude": "14.23549000" + }, + { + "id": "26427", + "name": "Jahnsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74509000", + "longitude": "12.85414000" + }, + { + "id": "26467", + "name": "Jöhstadt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51229000", + "longitude": "13.09460000" + }, + { + "id": "26443", + "name": "Jesewitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.42276000", + "longitude": "12.56312000" + }, + { + "id": "26455", + "name": "Johanngeorgenstadt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43254000", + "longitude": "12.71140000" + }, + { + "id": "26500", + "name": "Kamenz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26798000", + "longitude": "14.09374000" + }, + { + "id": "26826", + "name": "Königsbrück", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26451000", + "longitude": "13.90540000" + }, + { + "id": "26829", + "name": "Königsfeld", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06667000", + "longitude": "12.75000000" + }, + { + "id": "26832", + "name": "Königshain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18333000", + "longitude": "14.86667000" + }, + { + "id": "26834", + "name": "Königstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91570000", + "longitude": "14.07186000" + }, + { + "id": "26837", + "name": "Königswalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55000000", + "longitude": "13.05000000" + }, + { + "id": "26838", + "name": "Königswartha", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31028000", + "longitude": "14.32797000" + }, + { + "id": "26595", + "name": "Kirchberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62190000", + "longitude": "12.52449000" + }, + { + "id": "26644", + "name": "Kirschau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09317000", + "longitude": "14.42840000" + }, + { + "id": "26651", + "name": "Kitzen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.22172000", + "longitude": "12.22349000" + }, + { + "id": "26653", + "name": "Kitzscher", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16444000", + "longitude": "12.55260000" + }, + { + "id": "26689", + "name": "Klingenthal", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35963000", + "longitude": "12.46463000" + }, + { + "id": "26691", + "name": "Klipphausen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06841000", + "longitude": "13.51374000" + }, + { + "id": "26692", + "name": "Klitten", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35109000", + "longitude": "14.60526000" + }, + { + "id": "26707", + "name": "Kodersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24272000", + "longitude": "14.89336000" + }, + { + "id": "26729", + "name": "Kossa", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61707000", + "longitude": "12.68197000" + }, + { + "id": "26742", + "name": "Krauschwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52153000", + "longitude": "14.71211000" + }, + { + "id": "26748", + "name": "Kreischa", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94534000", + "longitude": "13.75514000" + }, + { + "id": "26761", + "name": "Kriebstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05000000", + "longitude": "13.01667000" + }, + { + "id": "26776", + "name": "Krostitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46208000", + "longitude": "12.45360000" + }, + { + "id": "26788", + "name": "Kubschütz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16667000", + "longitude": "14.50000000" + }, + { + "id": "26801", + "name": "Kurort Gohrisch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91234000", + "longitude": "14.10687000" + }, + { + "id": "26802", + "name": "Kurort Jonsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85751000", + "longitude": "14.70922000" + }, + { + "id": "26803", + "name": "Kurort Oberwiesenthal", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41943000", + "longitude": "12.96836000" + }, + { + "id": "26804", + "name": "Kurort Oybin", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.84105000", + "longitude": "14.74124000" + }, + { + "id": "26886", + "name": "Lampertswalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31108000", + "longitude": "13.67694000" + }, + { + "id": "26910", + "name": "Langenbernsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75583000", + "longitude": "12.32669000" + }, + { + "id": "26991", + "name": "Laußig", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.54676000", + "longitude": "12.62930000" + }, + { + "id": "26992", + "name": "Laußnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25000000", + "longitude": "13.88333000" + }, + { + "id": "26982", + "name": "Lauter", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56264000", + "longitude": "12.73513000" + }, + { + "id": "26993", + "name": "Lawalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08333000", + "longitude": "14.60000000" + }, + { + "id": "27200", + "name": "Lößnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62181000", + "longitude": "12.73147000" + }, + { + "id": "27185", + "name": "Löbau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09954000", + "longitude": "14.66738000" + }, + { + "id": "27189", + "name": "Löbnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.59238000", + "longitude": "12.46347000" + }, + { + "id": "27028", + "name": "Leipzig", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.33962000", + "longitude": "12.37129000" + }, + { + "id": "27029", + "name": "Leisnig", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15743000", + "longitude": "12.92790000" + }, + { + "id": "27040", + "name": "Lengefeld", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71911000", + "longitude": "13.19290000" + }, + { + "id": "27041", + "name": "Lengenfeld", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56940000", + "longitude": "12.36408000" + }, + { + "id": "27057", + "name": "Leubnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.72313000", + "longitude": "12.35660000" + }, + { + "id": "27058", + "name": "Leubsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80000000", + "longitude": "13.16667000" + }, + { + "id": "27067", + "name": "Leutersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95000000", + "longitude": "14.65000000" + }, + { + "id": "27080", + "name": "Lichtenberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83492000", + "longitude": "13.42478000" + }, + { + "id": "27083", + "name": "Lichtenstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75659000", + "longitude": "12.63025000" + }, + { + "id": "27084", + "name": "Lichtentanne", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69255000", + "longitude": "12.42585000" + }, + { + "id": "27091", + "name": "Liebstadt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86417000", + "longitude": "13.85694000" + }, + { + "id": "27097", + "name": "Limbach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58333000", + "longitude": "12.25000000" + }, + { + "id": "27098", + "name": "Limbach-Oberfrohna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85882000", + "longitude": "12.76165000" + }, + { + "id": "27125", + "name": "Lobstädt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13361000", + "longitude": "12.44861000" + }, + { + "id": "27134", + "name": "Lohmen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98831000", + "longitude": "14.00268000" + }, + { + "id": "27138", + "name": "Lohsa", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38333000", + "longitude": "14.40000000" + }, + { + "id": "27142", + "name": "Lommatzsch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19537000", + "longitude": "13.30917000" + }, + { + "id": "27169", + "name": "Lugau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73843000", + "longitude": "12.74861000" + }, + { + "id": "27176", + "name": "Lunzenau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96269000", + "longitude": "12.75594000" + }, + { + "id": "27227", + "name": "Machern", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36667000", + "longitude": "12.63333000" + }, + { + "id": "27257", + "name": "Malschwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23759000", + "longitude": "14.52163000" + }, + { + "id": "27273", + "name": "Marienberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65051000", + "longitude": "13.16122000" + }, + { + "id": "27284", + "name": "Markersbach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53545000", + "longitude": "12.86149000" + }, + { + "id": "27285", + "name": "Markersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13333000", + "longitude": "14.88333000" + }, + { + "id": "27287", + "name": "Markkleeberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.27550000", + "longitude": "12.36906000" + }, + { + "id": "27290", + "name": "Markneukirchen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31144000", + "longitude": "12.32951000" + }, + { + "id": "27291", + "name": "Markranstädt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30146000", + "longitude": "12.22020000" + }, + { + "id": "27584", + "name": "Mücka", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31667000", + "longitude": "14.70000000" + }, + { + "id": "27586", + "name": "Mügeln", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23619000", + "longitude": "13.04567000" + }, + { + "id": "27591", + "name": "Mühlau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90000000", + "longitude": "12.76667000" + }, + { + "id": "27603", + "name": "Mühltroff", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53919000", + "longitude": "11.92828000" + }, + { + "id": "27608", + "name": "Mülsen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75000000", + "longitude": "12.56667000" + }, + { + "id": "27365", + "name": "Meerane", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.84688000", + "longitude": "12.46473000" + }, + { + "id": "27373", + "name": "Mehltheuer", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54530000", + "longitude": "12.03700000" + }, + { + "id": "27385", + "name": "Meissen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16158000", + "longitude": "13.47370000" + }, + { + "id": "27465", + "name": "Mildenau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58689000", + "longitude": "13.07263000" + }, + { + "id": "27482", + "name": "Mittelherwigsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91667000", + "longitude": "14.76667000" + }, + { + "id": "27493", + "name": "Mittweida", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98622000", + "longitude": "12.97537000" + }, + { + "id": "27497", + "name": "Mochau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13333000", + "longitude": "13.18333000" + }, + { + "id": "27498", + "name": "Mockrehna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50757000", + "longitude": "12.81418000" + }, + { + "id": "27525", + "name": "Moritzburg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15922000", + "longitude": "13.68021000" + }, + { + "id": "27535", + "name": "Mulda", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80789000", + "longitude": "13.41477000" + }, + { + "id": "27551", + "name": "Mutzschen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26159000", + "longitude": "12.89125000" + }, + { + "id": "27552", + "name": "Mylau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61861000", + "longitude": "12.26535000" + }, + { + "id": "27643", + "name": "Narsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01667000", + "longitude": "12.71667000" + }, + { + "id": "27651", + "name": "Naundorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25718000", + "longitude": "13.10810000" + }, + { + "id": "27652", + "name": "Naunhof", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.27770000", + "longitude": "12.58827000" + }, + { + "id": "27655", + "name": "Nauwalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41837000", + "longitude": "13.40974000" + }, + { + "id": "27953", + "name": "Nünchritz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29993000", + "longitude": "13.38555000" + }, + { + "id": "27656", + "name": "Nebelschütz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26227000", + "longitude": "14.15849000" + }, + { + "id": "27677", + "name": "Nerchau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.27094000", + "longitude": "12.78912000" + }, + { + "id": "27680", + "name": "Neschwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.27056000", + "longitude": "14.32900000" + }, + { + "id": "27686", + "name": "Netzschkau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61411000", + "longitude": "12.24382000" + }, + { + "id": "27726", + "name": "Neuensalz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50000000", + "longitude": "12.21667000" + }, + { + "id": "27736", + "name": "Neugersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97729000", + "longitude": "14.60881000" + }, + { + "id": "27745", + "name": "Neuhausen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67647000", + "longitude": "13.46750000" + }, + { + "id": "27755", + "name": "Neukieritzsch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14995000", + "longitude": "12.41090000" + }, + { + "id": "27756", + "name": "Neukirch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28333000", + "longitude": "13.98333000" + }, + { + "id": "27758", + "name": "Neukirch\/Lausitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09727000", + "longitude": "14.30789000" + }, + { + "id": "27762", + "name": "Neukirchen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77955000", + "longitude": "12.86755000" + }, + { + "id": "27770", + "name": "Neumark", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66010000", + "longitude": "12.35619000" + }, + { + "id": "27788", + "name": "Neusalza-Spremberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.03945000", + "longitude": "14.53560000" + }, + { + "id": "27806", + "name": "Neustadt in Sachsen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02844000", + "longitude": "14.21785000" + }, + { + "id": "27796", + "name": "Neustadt Vogtland", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.46100000", + "longitude": "12.33224000" + }, + { + "id": "27831", + "name": "Niederau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17730000", + "longitude": "13.54563000" + }, + { + "id": "27836", + "name": "Niedercunnersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05398000", + "longitude": "14.65830000" + }, + { + "id": "27837", + "name": "Niederdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.72623000", + "longitude": "12.78587000" + }, + { + "id": "27847", + "name": "Niederfrohna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90000000", + "longitude": "12.71667000" + }, + { + "id": "27871", + "name": "Niederschöna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96671000", + "longitude": "13.41910000" + }, + { + "id": "27877", + "name": "Niederstriegis", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08243000", + "longitude": "13.14925000" + }, + { + "id": "27883", + "name": "Niederwiesa", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86667000", + "longitude": "13.01667000" + }, + { + "id": "27898", + "name": "Niesky", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29241000", + "longitude": "14.82107000" + }, + { + "id": "27934", + "name": "Nossen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05798000", + "longitude": "13.29652000" + }, + { + "id": "28206", + "name": "Oßling", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35999000", + "longitude": "14.16567000" + }, + { + "id": "27969", + "name": "Obercunnersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91711000", + "longitude": "13.56015000" + }, + { + "id": "27979", + "name": "Obergurig", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13294000", + "longitude": "14.40488000" + }, + { + "id": "27993", + "name": "Oberlichtenau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.21875000", + "longitude": "13.98992000" + }, + { + "id": "27994", + "name": "Oberlungwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78230000", + "longitude": "12.70789000" + }, + { + "id": "28033", + "name": "Oberschöna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89759000", + "longitude": "13.25379000" + }, + { + "id": "28055", + "name": "Oberwiera", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88913000", + "longitude": "12.54415000" + }, + { + "id": "28073", + "name": "Oederan", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86064000", + "longitude": "13.17164000" + }, + { + "id": "28078", + "name": "Oelsnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.41470000", + "longitude": "12.16950000" + }, + { + "id": "28101", + "name": "Ohorn", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17199000", + "longitude": "14.04669000" + }, + { + "id": "28102", + "name": "Olbernhau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65870000", + "longitude": "13.34250000" + }, + { + "id": "28103", + "name": "Olbersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87304000", + "longitude": "14.77035000" + }, + { + "id": "28117", + "name": "Oppach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06667000", + "longitude": "14.50000000" + }, + { + "id": "28136", + "name": "Oschatz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30001000", + "longitude": "13.10984000" + }, + { + "id": "28165", + "name": "Ostrau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20639000", + "longitude": "12.88421000" + }, + { + "id": "28167", + "name": "Ostritz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01451000", + "longitude": "14.93059000" + }, + { + "id": "28178", + "name": "Ottendorf-Okrilla", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18333000", + "longitude": "13.83333000" + }, + { + "id": "28193", + "name": "Otterwisch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20000000", + "longitude": "12.61667000" + }, + { + "id": "28217", + "name": "Panschwitz-Kuckau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23395000", + "longitude": "14.19791000" + }, + { + "id": "28238", + "name": "Pausa", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58172000", + "longitude": "11.99732000" + }, + { + "id": "28414", + "name": "Pöhl", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39311000", + "longitude": "12.32908000" + }, + { + "id": "28415", + "name": "Pöhla", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51143000", + "longitude": "12.81889000" + }, + { + "id": "28240", + "name": "Pegau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16715000", + "longitude": "12.25144000" + }, + { + "id": "28251", + "name": "Penig", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93336000", + "longitude": "12.70422000" + }, + { + "id": "28278", + "name": "Pfaffroda", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86134000", + "longitude": "12.51497000" + }, + { + "id": "28309", + "name": "Pirna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95843000", + "longitude": "13.93702000" + }, + { + "id": "28319", + "name": "Plauen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49730000", + "longitude": "12.13782000" + }, + { + "id": "28336", + "name": "Pobershau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64079000", + "longitude": "13.21776000" + }, + { + "id": "28337", + "name": "Pockau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70000000", + "longitude": "13.23333000" + }, + { + "id": "28355", + "name": "Porschdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94180000", + "longitude": "14.12687000" + }, + { + "id": "28383", + "name": "Pretzschendorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87385000", + "longitude": "13.52499000" + }, + { + "id": "28388", + "name": "Priestewitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25000000", + "longitude": "13.51667000" + }, + { + "id": "28407", + "name": "Puschwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25501000", + "longitude": "14.30111000" + }, + { + "id": "28434", + "name": "Quitzdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28333000", + "longitude": "14.76667000" + }, + { + "id": "28436", + "name": "Rabenau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96484000", + "longitude": "13.64305000" + }, + { + "id": "28438", + "name": "Rackwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43333000", + "longitude": "12.38333000" + }, + { + "id": "28441", + "name": "Radeberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11112000", + "longitude": "13.91199000" + }, + { + "id": "28442", + "name": "Radebeul", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10654000", + "longitude": "13.66047000" + }, + { + "id": "28443", + "name": "Radeburg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.21516000", + "longitude": "13.72810000" + }, + { + "id": "28446", + "name": "Radibor", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24481000", + "longitude": "14.39842000" + }, + { + "id": "28462", + "name": "Rammenau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15000000", + "longitude": "14.13333000" + }, + { + "id": "28477", + "name": "Raschau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53127000", + "longitude": "12.83312000" + }, + { + "id": "28486", + "name": "Rathmannsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92993000", + "longitude": "14.14224000" + }, + { + "id": "28772", + "name": "Räckelwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25000000", + "longitude": "14.23333000" + }, + { + "id": "28789", + "name": "Rötha", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19783000", + "longitude": "12.41447000" + }, + { + "id": "28501", + "name": "Rechenberg-Bienenmühle", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73777000", + "longitude": "13.53502000" + }, + { + "id": "28526", + "name": "Regis-Breitingen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08883000", + "longitude": "12.43841000" + }, + { + "id": "28540", + "name": "Reichenbach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14144000", + "longitude": "14.80270000" + }, + { + "id": "28543", + "name": "Reichenbach\/Vogtland", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62279000", + "longitude": "12.30344000" + }, + { + "id": "28559", + "name": "Reinhardtsgrimma", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89270000", + "longitude": "13.75534000" + }, + { + "id": "28563", + "name": "Reinsberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00823000", + "longitude": "13.36542000" + }, + { + "id": "28564", + "name": "Reinsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69775000", + "longitude": "12.55555000" + }, + { + "id": "28577", + "name": "Remse", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85000000", + "longitude": "12.56667000" + }, + { + "id": "28594", + "name": "Reuth", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61667000", + "longitude": "12.21667000" + }, + { + "id": "28645", + "name": "Riesa", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30777000", + "longitude": "13.29168000" + }, + { + "id": "28653", + "name": "Rietschen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40000000", + "longitude": "14.78333000" + }, + { + "id": "28669", + "name": "Rittersgrün", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.48031000", + "longitude": "12.79336000" + }, + { + "id": "28747", + "name": "Roßwein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06589000", + "longitude": "13.18308000" + }, + { + "id": "28670", + "name": "Rochlitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05007000", + "longitude": "12.79754000" + }, + { + "id": "28678", + "name": "Rodewisch", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53083000", + "longitude": "12.41329000" + }, + { + "id": "28713", + "name": "Rossau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00000000", + "longitude": "13.06667000" + }, + { + "id": "28724", + "name": "Rothenburg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.33400000", + "longitude": "14.96874000" + }, + { + "id": "28863", + "name": "Sankt Egidien", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78617000", + "longitude": "12.62395000" + }, + { + "id": "28899", + "name": "Sayda", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71123000", + "longitude": "13.42172000" + }, + { + "id": "28911", + "name": "Scharfenstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70405000", + "longitude": "13.05654000" + }, + { + "id": "29109", + "name": "Schönau-Berzdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06402000", + "longitude": "14.88402000" + }, + { + "id": "29110", + "name": "Schönbach", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06667000", + "longitude": "14.56667000" + }, + { + "id": "29112", + "name": "Schönberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86752000", + "longitude": "12.49126000" + }, + { + "id": "29117", + "name": "Schöneck", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39052000", + "longitude": "12.32731000" + }, + { + "id": "29123", + "name": "Schönfeld", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30000000", + "longitude": "13.70000000" + }, + { + "id": "29126", + "name": "Schönheide", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50458000", + "longitude": "12.52158000" + }, + { + "id": "28921", + "name": "Scheibenberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54023000", + "longitude": "12.91215000" + }, + { + "id": "28945", + "name": "Schildau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45721000", + "longitude": "12.93024000" + }, + { + "id": "28952", + "name": "Schirgiswalde", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.07641000", + "longitude": "14.42834000" + }, + { + "id": "28955", + "name": "Schkeuditz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39678000", + "longitude": "12.22141000" + }, + { + "id": "28966", + "name": "Schlegel", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97775000", + "longitude": "14.87686000" + }, + { + "id": "28970", + "name": "Schleife", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53333000", + "longitude": "14.53333000" + }, + { + "id": "28973", + "name": "Schlettau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55882000", + "longitude": "12.95269000" + }, + { + "id": "28994", + "name": "Schmiedeberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83644000", + "longitude": "13.67622000" + }, + { + "id": "29004", + "name": "Schneeberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.59465000", + "longitude": "12.64139000" + }, + { + "id": "29070", + "name": "Schwarzenberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53791000", + "longitude": "12.78522000" + }, + { + "id": "29089", + "name": "Schwepnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.32809000", + "longitude": "13.95772000" + }, + { + "id": "29139", + "name": "Sebnitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97540000", + "longitude": "14.27579000" + }, + { + "id": "29159", + "name": "Seelitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.03333000", + "longitude": "12.81667000" + }, + { + "id": "29172", + "name": "Seiffen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65000000", + "longitude": "13.45000000" + }, + { + "id": "29173", + "name": "Seifhennersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93492000", + "longitude": "14.60194000" + }, + { + "id": "29255", + "name": "Sohland", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04089000", + "longitude": "14.41897000" + }, + { + "id": "29256", + "name": "Sohland am Rotstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11643000", + "longitude": "14.78372000" + }, + { + "id": "29280", + "name": "Sosa", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49917000", + "longitude": "12.65120000" + }, + { + "id": "29318", + "name": "Stadt Wehlen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95821000", + "longitude": "14.03091000" + }, + { + "id": "29342", + "name": "Stauchitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24350000", + "longitude": "13.21437000" + }, + { + "id": "29456", + "name": "Stützengrün", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53333000", + "longitude": "12.53333000" + }, + { + "id": "29358", + "name": "Steina", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20000000", + "longitude": "14.05000000" + }, + { + "id": "29386", + "name": "Steinigtwolmsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06314000", + "longitude": "14.34540000" + }, + { + "id": "29417", + "name": "Stollberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70999000", + "longitude": "12.78034000" + }, + { + "id": "29419", + "name": "Stolpen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04901000", + "longitude": "14.07943000" + }, + { + "id": "29435", + "name": "Strehla", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35248000", + "longitude": "13.22660000" + }, + { + "id": "29438", + "name": "Struppen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93333000", + "longitude": "14.01667000" + }, + { + "id": "29488", + "name": "Syrau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54297000", + "longitude": "12.07933000" + }, + { + "id": "29523", + "name": "Tannenberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60738000", + "longitude": "12.93798000" + }, + { + "id": "29524", + "name": "Tannenbergsthal", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43665000", + "longitude": "12.45754000" + }, + { + "id": "29534", + "name": "Taucha", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38333000", + "longitude": "12.48333000" + }, + { + "id": "29538", + "name": "Taura", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91667000", + "longitude": "12.85000000" + }, + { + "id": "29539", + "name": "Tauscha", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26667000", + "longitude": "13.80000000" + }, + { + "id": "29579", + "name": "Thalheim", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70077000", + "longitude": "12.84996000" + }, + { + "id": "29580", + "name": "Thallwitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43333000", + "longitude": "12.68333000" + }, + { + "id": "29585", + "name": "Tharandt", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98525000", + "longitude": "13.58035000" + }, + { + "id": "29591", + "name": "Theuma", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.47007000", + "longitude": "12.22195000" + }, + { + "id": "29592", + "name": "Thiendorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29375000", + "longitude": "13.74124000" + }, + { + "id": "29600", + "name": "Thum", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67081000", + "longitude": "12.95091000" + }, + { + "id": "29617", + "name": "Tirpersdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43333000", + "longitude": "12.25000000" + }, + { + "id": "29632", + "name": "Torgau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56016000", + "longitude": "12.99617000" + }, + { + "id": "29649", + "name": "Trebendorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53333000", + "longitude": "14.56667000" + }, + { + "id": "29652", + "name": "Trebsen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28898000", + "longitude": "12.75496000" + }, + { + "id": "29662", + "name": "Treuen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54247000", + "longitude": "12.30339000" + }, + { + "id": "29666", + "name": "Triebel", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37153000", + "longitude": "12.12118000" + }, + { + "id": "29680", + "name": "Trossin", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61667000", + "longitude": "12.81667000" + }, + { + "id": "29735", + "name": "Uhyst", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36469000", + "longitude": "14.50600000" + }, + { + "id": "29833", + "name": "Venusberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69918000", + "longitude": "13.01854000" + }, + { + "id": "29900", + "name": "Wachau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16172000", + "longitude": "13.90651000" + }, + { + "id": "29946", + "name": "Waldenburg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87653000", + "longitude": "12.59919000" + }, + { + "id": "29952", + "name": "Waldheim", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.07282000", + "longitude": "13.02004000" + }, + { + "id": "29955", + "name": "Waldkirchen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.59667000", + "longitude": "12.37994000" + }, + { + "id": "30455", + "name": "Wülknitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36667000", + "longitude": "13.40000000" + }, + { + "id": "30045", + "name": "Wechselburg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00214000", + "longitude": "12.77661000" + }, + { + "id": "30124", + "name": "Weißenberg", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19644000", + "longitude": "14.65874000" + }, + { + "id": "30126", + "name": "Weißenborn", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73952000", + "longitude": "12.47051000" + }, + { + "id": "30138", + "name": "Weißig", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29192000", + "longitude": "13.44117000" + }, + { + "id": "30139", + "name": "Weißkeißel", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49405000", + "longitude": "14.71515000" + }, + { + "id": "30140", + "name": "Weißwasser", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50403000", + "longitude": "14.64017000" + }, + { + "id": "30098", + "name": "Weinböhla", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16667000", + "longitude": "13.56667000" + }, + { + "id": "30105", + "name": "Weischlitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45000000", + "longitude": "12.06667000" + }, + { + "id": "30168", + "name": "Werda", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43811000", + "longitude": "12.30473000" + }, + { + "id": "30169", + "name": "Werdau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73604000", + "longitude": "12.37534000" + }, + { + "id": "30177", + "name": "Wermsdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28333000", + "longitude": "12.95000000" + }, + { + "id": "30239", + "name": "Wiedemar", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46667000", + "longitude": "12.20000000" + }, + { + "id": "30243", + "name": "Wiednitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38608000", + "longitude": "14.02683000" + }, + { + "id": "30252", + "name": "Wiesa", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61114000", + "longitude": "13.01377000" + }, + { + "id": "30276", + "name": "Wildenfels", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66784000", + "longitude": "12.60886000" + }, + { + "id": "30277", + "name": "Wildenhain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30760000", + "longitude": "13.47678000" + }, + { + "id": "30291", + "name": "Wilkau-Haßlau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67504000", + "longitude": "12.51482000" + }, + { + "id": "30301", + "name": "Wilsdruff", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05199000", + "longitude": "13.53657000" + }, + { + "id": "30305", + "name": "Wilthen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09745000", + "longitude": "14.39290000" + }, + { + "id": "30357", + "name": "Wittgensdorf", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88316000", + "longitude": "12.87031000" + }, + { + "id": "30358", + "name": "Wittichenau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38496000", + "longitude": "14.24403000" + }, + { + "id": "30391", + "name": "Wolkenstein", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65552000", + "longitude": "13.07132000" + }, + { + "id": "30426", + "name": "Wurzen", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.37070000", + "longitude": "12.73939000" + }, + { + "id": "30462", + "name": "Zabeltitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35147000", + "longitude": "13.50462000" + }, + { + "id": "30541", + "name": "Zöblitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65912000", + "longitude": "13.22981000" + }, + { + "id": "30479", + "name": "Zeithain", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.33356000", + "longitude": "13.33809000" + }, + { + "id": "30510", + "name": "Zinna", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56790000", + "longitude": "12.95354000" + }, + { + "id": "30512", + "name": "Zittau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89772000", + "longitude": "14.80764000" + }, + { + "id": "30518", + "name": "Zschadrass", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13828000", + "longitude": "12.81848000" + }, + { + "id": "30519", + "name": "Zschepplin", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50000000", + "longitude": "12.60000000" + }, + { + "id": "30522", + "name": "Zschopau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74818000", + "longitude": "13.07691000" + }, + { + "id": "30523", + "name": "Zschorlau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56667000", + "longitude": "12.65000000" + }, + { + "id": "30525", + "name": "Zschortau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.47930000", + "longitude": "12.35893000" + }, + { + "id": "30540", + "name": "Zwönitz", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63027000", + "longitude": "12.80999000" + }, + { + "id": "30533", + "name": "Zwenkau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.21872000", + "longitude": "12.33008000" + }, + { + "id": "30534", + "name": "Zwickau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.72724000", + "longitude": "12.48839000" + }, + { + "id": "30538", + "name": "Zwochau", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46467000", + "longitude": "12.26844000" + }, + { + "id": "30539", + "name": "Zwota", + "state_id": 3021, + "state_code": "SN", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35103000", + "longitude": "12.42241000" + }, + { + "id": "23470", + "name": "Abtsdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88984000", + "longitude": "12.72526000" + }, + { + "id": "23506", + "name": "Ahlsdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.54543000", + "longitude": "11.46655000" + }, + { + "id": "23530", + "name": "Aken", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85274000", + "longitude": "12.04461000" + }, + { + "id": "23563", + "name": "Allstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40379000", + "longitude": "11.38689000" + }, + { + "id": "23573", + "name": "Alsleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.70161000", + "longitude": "11.67648000" + }, + { + "id": "23656", + "name": "Angern", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.35000000", + "longitude": "11.73333000" + }, + { + "id": "23657", + "name": "Angersdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46025000", + "longitude": "11.90705000" + }, + { + "id": "23662", + "name": "Annaburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73298000", + "longitude": "13.04729000" + }, + { + "id": "23675", + "name": "Apollensdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.87634000", + "longitude": "12.55012000" + }, + { + "id": "23685", + "name": "Arneburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.67565000", + "longitude": "12.00514000" + }, + { + "id": "23707", + "name": "Aschersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.75742000", + "longitude": "11.46084000" + }, + { + "id": "23719", + "name": "Atzendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.91954000", + "longitude": "11.59906000" + }, + { + "id": "23742", + "name": "Ausleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.09049000", + "longitude": "11.11192000" + }, + { + "id": "23750", + "name": "Baalberge", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76469000", + "longitude": "11.79880000" + }, + { + "id": "23771", + "name": "Bad Bibra", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20796000", + "longitude": "11.58517000" + }, + { + "id": "23786", + "name": "Bad Dürrenberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29545000", + "longitude": "12.06583000" + }, + { + "id": "23820", + "name": "Bad Kösen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13431000", + "longitude": "11.72203000" + }, + { + "id": "23825", + "name": "Bad Lauchstädt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38652000", + "longitude": "11.86956000" + }, + { + "id": "23862", + "name": "Bad Schmiedeberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.68516000", + "longitude": "12.73483000" + }, + { + "id": "23872", + "name": "Bad Suderode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73333000", + "longitude": "11.11667000" + }, + { + "id": "23912", + "name": "Ballenstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.71900000", + "longitude": "11.23265000" + }, + { + "id": "23925", + "name": "Barby", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96711000", + "longitude": "11.88261000" + }, + { + "id": "23935", + "name": "Barleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20193000", + "longitude": "11.61770000" + }, + { + "id": "23939", + "name": "Barnstädt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.34401000", + "longitude": "11.63735000" + }, + { + "id": "23985", + "name": "Beesenlaublingen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.71274000", + "longitude": "11.69729000" + }, + { + "id": "23986", + "name": "Beesenstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56828000", + "longitude": "11.73323000" + }, + { + "id": "23989", + "name": "Beetzendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.70226000", + "longitude": "11.08890000" + }, + { + "id": "24001", + "name": "Belleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.67499000", + "longitude": "11.63420000" + }, + { + "id": "24010", + "name": "Benndorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57035000", + "longitude": "11.49290000" + }, + { + "id": "24011", + "name": "Benneckenstein", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66823000", + "longitude": "10.71716000" + }, + { + "id": "24015", + "name": "Bennstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.48201000", + "longitude": "11.82620000" + }, + { + "id": "24016", + "name": "Bennungen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46085000", + "longitude": "11.11816000" + }, + { + "id": "24028", + "name": "Berga", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45561000", + "longitude": "11.00710000" + }, + { + "id": "24049", + "name": "Bergwitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79479000", + "longitude": "12.58954000" + }, + { + "id": "24063", + "name": "Bernburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79464000", + "longitude": "11.74010000" + }, + { + "id": "24087", + "name": "Beuna", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31667000", + "longitude": "11.95000000" + }, + { + "id": "24106", + "name": "Biederitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15000000", + "longitude": "11.71667000" + }, + { + "id": "24110", + "name": "Biere", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.97431000", + "longitude": "11.65443000" + }, + { + "id": "24154", + "name": "Bismark", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.66195000", + "longitude": "11.55638000" + }, + { + "id": "24160", + "name": "Bitterfeld-Wolfen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62355000", + "longitude": "12.32395000" + }, + { + "id": "24166", + "name": "Blankenburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79025000", + "longitude": "10.95509000" + }, + { + "id": "24170", + "name": "Blankenheim", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50717000", + "longitude": "11.42878000" + }, + { + "id": "24188", + "name": "Bobbau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.68747000", + "longitude": "12.27253000" + }, + { + "id": "24251", + "name": "Borne", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.94881000", + "longitude": "11.55865000" + }, + { + "id": "24284", + "name": "Braschwitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52284000", + "longitude": "12.05867000" + }, + { + "id": "24290", + "name": "Braunsbedra", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28602000", + "longitude": "11.88987000" + }, + { + "id": "24299", + "name": "Brehna", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55790000", + "longitude": "12.21276000" + }, + { + "id": "24357", + "name": "Brumby", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.89635000", + "longitude": "11.71751000" + }, + { + "id": "24410", + "name": "Burg bei Magdeburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.27152000", + "longitude": "11.85493000" + }, + { + "id": "24437", + "name": "Burgwerben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.22270000", + "longitude": "11.98396000" + }, + { + "id": "24514", + "name": "Calbe", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.90668000", + "longitude": "11.77478000" + }, + { + "id": "24518", + "name": "Calvörde", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.39551000", + "longitude": "11.29463000" + }, + { + "id": "24546", + "name": "Cochstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88247000", + "longitude": "11.41085000" + }, + { + "id": "24548", + "name": "Colbitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31708000", + "longitude": "11.60534000" + }, + { + "id": "24555", + "name": "Coswig", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88618000", + "longitude": "12.45009000" + }, + { + "id": "24581", + "name": "Dahlenwarsleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.19519000", + "longitude": "11.53736000" + }, + { + "id": "24596", + "name": "Darlingerode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.84712000", + "longitude": "10.73097000" + }, + { + "id": "24795", + "name": "Dölbau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46701000", + "longitude": "12.05735000" + }, + { + "id": "24796", + "name": "Döllnitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40777000", + "longitude": "12.02831000" + }, + { + "id": "24636", + "name": "Derenburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.87086000", + "longitude": "10.91029000" + }, + { + "id": "24643", + "name": "Dessau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83864000", + "longitude": "12.24555000" + }, + { + "id": "24655", + "name": "Deuben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10968000", + "longitude": "12.07259000" + }, + { + "id": "24674", + "name": "Diesdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.13075000", + "longitude": "11.56483000" + }, + { + "id": "24675", + "name": "Dieskau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43553000", + "longitude": "12.04035000" + }, + { + "id": "24706", + "name": "Ditfurt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83333000", + "longitude": "11.20000000" + }, + { + "id": "24716", + "name": "Dobien", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.90519000", + "longitude": "12.61068000" + }, + { + "id": "24725", + "name": "Domersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.09199000", + "longitude": "11.43757000" + }, + { + "id": "24773", + "name": "Drübeck", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85820000", + "longitude": "10.71839000" + }, + { + "id": "24772", + "name": "Droyßig", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04247000", + "longitude": "12.02590000" + }, + { + "id": "24822", + "name": "Ebendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18551000", + "longitude": "11.57478000" + }, + { + "id": "24848", + "name": "Eckartsberga", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12380000", + "longitude": "11.56045000" + }, + { + "id": "24852", + "name": "Edderitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.69933000", + "longitude": "11.93712000" + }, + { + "id": "24857", + "name": "Edersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41667000", + "longitude": "11.28333000" + }, + { + "id": "24865", + "name": "Egeln", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.94384000", + "longitude": "11.43265000" + }, + { + "id": "24876", + "name": "Eggersdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.97621000", + "longitude": "11.70971000" + }, + { + "id": "24899", + "name": "Eichenbarleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.16688000", + "longitude": "11.40125000" + }, + { + "id": "24908", + "name": "Eickendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.94765000", + "longitude": "11.67538000" + }, + { + "id": "24914", + "name": "Eilsleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.14708000", + "longitude": "11.21035000" + }, + { + "id": "24933", + "name": "Eisleben Lutherstadt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52754000", + "longitude": "11.54835000" + }, + { + "id": "24940", + "name": "Elbingerode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.77039000", + "longitude": "10.80557000" + }, + { + "id": "24969", + "name": "Elster", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83011000", + "longitude": "12.82424000" + }, + { + "id": "25031", + "name": "Erdeborn", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.47554000", + "longitude": "11.63487000" + }, + { + "id": "25062", + "name": "Ermlitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39182000", + "longitude": "12.15946000" + }, + { + "id": "25072", + "name": "Erxleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21812000", + "longitude": "11.24245000" + }, + { + "id": "25144", + "name": "Farnstädt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43333000", + "longitude": "11.56667000" + }, + { + "id": "25322", + "name": "Förderstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.89717000", + "longitude": "11.63349000" + }, + { + "id": "25186", + "name": "Flechtingen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.33083000", + "longitude": "11.24176000" + }, + { + "id": "25190", + "name": "Flessau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.75996000", + "longitude": "11.67093000" + }, + { + "id": "25223", + "name": "Frankleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31144000", + "longitude": "11.92932000" + }, + { + "id": "25262", + "name": "Freyburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.21362000", + "longitude": "11.76804000" + }, + { + "id": "25278", + "name": "Friedersdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.64809000", + "longitude": "12.36555000" + }, + { + "id": "25285", + "name": "Friedrichsbrunn", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.69028000", + "longitude": "11.03737000" + }, + { + "id": "25292", + "name": "Friedrichstadt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88751000", + "longitude": "12.66947000" + }, + { + "id": "25309", + "name": "Frose", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79581000", + "longitude": "11.37914000" + }, + { + "id": "25364", + "name": "Gardelegen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52520000", + "longitude": "11.39523000" + }, + { + "id": "25375", + "name": "Gatersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.82215000", + "longitude": "11.28661000" + }, + { + "id": "25785", + "name": "Görzig", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66381000", + "longitude": "11.99759000" + }, + { + "id": "25795", + "name": "Günthersdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.34570000", + "longitude": "12.17175000" + }, + { + "id": "25798", + "name": "Güsten", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79637000", + "longitude": "11.61246000" + }, + { + "id": "25428", + "name": "Genthin", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.40668000", + "longitude": "12.15920000" + }, + { + "id": "25439", + "name": "Gerbstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.63281000", + "longitude": "11.62669000" + }, + { + "id": "25447", + "name": "Gernrode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.72575000", + "longitude": "11.13876000" + }, + { + "id": "25466", + "name": "Gerwisch", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.17662000", + "longitude": "11.73972000" + }, + { + "id": "25477", + "name": "Geusa", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.33914000", + "longitude": "11.94382000" + }, + { + "id": "25485", + "name": "Giersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76667000", + "longitude": "11.56667000" + }, + { + "id": "25517", + "name": "Glöthe", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.91000000", + "longitude": "11.67471000" + }, + { + "id": "25514", + "name": "Glindenberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23857000", + "longitude": "11.68361000" + }, + { + "id": "25530", + "name": "Goldbeck", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.71695000", + "longitude": "11.86060000" + }, + { + "id": "25539", + "name": "Gommern", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.07391000", + "longitude": "11.82297000" + }, + { + "id": "25545", + "name": "Goseck", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20000000", + "longitude": "11.86667000" + }, + { + "id": "25576", + "name": "Granschütz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18431000", + "longitude": "12.05149000" + }, + { + "id": "25724", + "name": "Gräfenhainichen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.72892000", + "longitude": "12.45651000" + }, + { + "id": "25728", + "name": "Gröbers", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43050000", + "longitude": "12.11623000" + }, + { + "id": "25729", + "name": "Gröbzig", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.68226000", + "longitude": "11.87453000" + }, + { + "id": "25732", + "name": "Gröningen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.93744000", + "longitude": "11.21601000" + }, + { + "id": "25600", + "name": "Greppin", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.64682000", + "longitude": "12.30066000" + }, + { + "id": "25619", + "name": "Groß Ammensleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23279000", + "longitude": "11.52195000" + }, + { + "id": "25620", + "name": "Groß Börnecke", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88468000", + "longitude": "11.47032000" + }, + { + "id": "25635", + "name": "Groß Quenstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.93333000", + "longitude": "11.11667000" + }, + { + "id": "25637", + "name": "Groß Rodensleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.12139000", + "longitude": "11.38367000" + }, + { + "id": "25638", + "name": "Groß Rosenburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.91696000", + "longitude": "11.89184000" + }, + { + "id": "25639", + "name": "Groß Santersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.19143000", + "longitude": "11.45486000" + }, + { + "id": "25715", + "name": "Großörner", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61527000", + "longitude": "11.48980000" + }, + { + "id": "25683", + "name": "Großkayna", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29068000", + "longitude": "11.93269000" + }, + { + "id": "25685", + "name": "Großkorbetha", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26002000", + "longitude": "12.03012000" + }, + { + "id": "25687", + "name": "Großkugel", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41728000", + "longitude": "12.14641000" + }, + { + "id": "25767", + "name": "Gutenberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.54710000", + "longitude": "11.97181000" + }, + { + "id": "25813", + "name": "Hadmersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.99275000", + "longitude": "11.30283000" + }, + { + "id": "25844", + "name": "Halberstadt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.89562000", + "longitude": "11.05622000" + }, + { + "id": "25846", + "name": "Haldensleben I", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28906000", + "longitude": "11.40982000" + }, + { + "id": "25853", + "name": "Halle (Saale)", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.48158000", + "longitude": "11.97947000" + }, + { + "id": "25854", + "name": "Halle Neustadt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.47924000", + "longitude": "11.91605000" + }, + { + "id": "25896", + "name": "Harbke", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18877000", + "longitude": "11.04624000" + }, + { + "id": "25909", + "name": "Harsleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.86667000", + "longitude": "11.10000000" + }, + { + "id": "25919", + "name": "Harzgerode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.64189000", + "longitude": "11.14330000" + }, + { + "id": "25932", + "name": "Hasselfelde", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.69051000", + "longitude": "10.85373000" + }, + { + "id": "25956", + "name": "Havelberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.83088000", + "longitude": "12.07552000" + }, + { + "id": "26312", + "name": "Höhnstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50268000", + "longitude": "11.73844000" + }, + { + "id": "26324", + "name": "Hötensleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11974000", + "longitude": "11.02238000" + }, + { + "id": "26343", + "name": "Hüttenrode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76880000", + "longitude": "10.90384000" + }, + { + "id": "25970", + "name": "Hecklingen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.84705000", + "longitude": "11.53416000" + }, + { + "id": "25972", + "name": "Hedersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.54891000", + "longitude": "11.64983000" + }, + { + "id": "26020", + "name": "Helbra", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55000000", + "longitude": "11.50000000" + }, + { + "id": "26070", + "name": "Hergisdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53333000", + "longitude": "11.48333000" + }, + { + "id": "26080", + "name": "Hermsdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18740000", + "longitude": "11.47556000" + }, + { + "id": "26114", + "name": "Hettstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65030000", + "longitude": "11.51146000" + }, + { + "id": "26121", + "name": "Heudeber", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.90245000", + "longitude": "10.84321000" + }, + { + "id": "26202", + "name": "Hohendodeleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.10412000", + "longitude": "11.50473000" + }, + { + "id": "26212", + "name": "Hohenmölsen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15769000", + "longitude": "12.10000000" + }, + { + "id": "26218", + "name": "Hohenthurm", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.51807000", + "longitude": "12.09749000" + }, + { + "id": "26219", + "name": "Hohenwarsleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.17898000", + "longitude": "11.49994000" + }, + { + "id": "26221", + "name": "Hohenwarthe", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.22968000", + "longitude": "11.71528000" + }, + { + "id": "26230", + "name": "Holleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44047000", + "longitude": "11.89915000" + }, + { + "id": "26241", + "name": "Holzdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.77873000", + "longitude": "13.12756000" + }, + { + "id": "26249", + "name": "Holzweißig", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.59819000", + "longitude": "12.30842000" + }, + { + "id": "26269", + "name": "Hornhausen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.04510000", + "longitude": "11.17104000" + }, + { + "id": "26278", + "name": "Hoym", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.78292000", + "longitude": "11.31244000" + }, + { + "id": "26294", + "name": "Huy-Neinstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96585000", + "longitude": "10.91457000" + }, + { + "id": "26363", + "name": "Ilberstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80000000", + "longitude": "11.66667000" + }, + { + "id": "26375", + "name": "Ilsenburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.86695000", + "longitude": "10.67817000" + }, + { + "id": "26410", + "name": "Irxleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.16689000", + "longitude": "11.48064000" + }, + { + "id": "26465", + "name": "Jävenitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.52410000", + "longitude": "11.49909000" + }, + { + "id": "26451", + "name": "Jeßnitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.68307000", + "longitude": "12.29992000" + }, + { + "id": "26437", + "name": "Jerichow", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50049000", + "longitude": "12.02383000" + }, + { + "id": "26444", + "name": "Jessen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79337000", + "longitude": "12.95762000" + }, + { + "id": "26486", + "name": "Kalbe", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.65656000", + "longitude": "11.38456000" + }, + { + "id": "26525", + "name": "Karsdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.27134000", + "longitude": "11.65775000" + }, + { + "id": "26549", + "name": "Kayna", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99414000", + "longitude": "12.23710000" + }, + { + "id": "26841", + "name": "Könnern", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.67120000", + "longitude": "11.77068000" + }, + { + "id": "26846", + "name": "Köthen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.75185000", + "longitude": "11.97093000" + }, + { + "id": "26847", + "name": "Kötzschau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31244000", + "longitude": "12.13044000" + }, + { + "id": "26555", + "name": "Kelbra", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43528000", + "longitude": "11.04143000" + }, + { + "id": "26563", + "name": "Kemberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.77189000", + "longitude": "12.63227000" + }, + { + "id": "26698", + "name": "Klötze", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.62725000", + "longitude": "11.16424000" + }, + { + "id": "26666", + "name": "Klein Wanzleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.07005000", + "longitude": "11.36594000" + }, + { + "id": "26684", + "name": "Klieken", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88806000", + "longitude": "12.37070000" + }, + { + "id": "26685", + "name": "Klietz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.66835000", + "longitude": "12.06812000" + }, + { + "id": "26695", + "name": "Klostermansfeld", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58333000", + "longitude": "11.50000000" + }, + { + "id": "26753", + "name": "Kretzschau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05000000", + "longitude": "12.06667000" + }, + { + "id": "26774", + "name": "Kroppenstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.94211000", + "longitude": "11.30841000" + }, + { + "id": "26775", + "name": "Kropstädt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96307000", + "longitude": "12.74550000" + }, + { + "id": "26781", + "name": "Krumpa", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29724000", + "longitude": "11.84412000" + }, + { + "id": "26806", + "name": "Kusey", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.57987000", + "longitude": "11.09056000" + }, + { + "id": "26893", + "name": "Landsberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52698000", + "longitude": "12.16076000" + }, + { + "id": "26900", + "name": "Langeln", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.91188000", + "longitude": "10.79436000" + }, + { + "id": "26911", + "name": "Langenbogen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.48300000", + "longitude": "11.77786000" + }, + { + "id": "26914", + "name": "Langendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17972000", + "longitude": "11.96140000" + }, + { + "id": "26915", + "name": "Langeneichstädt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.34537000", + "longitude": "11.74330000" + }, + { + "id": "26930", + "name": "Langenstein", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85551000", + "longitude": "10.98822000" + }, + { + "id": "26958", + "name": "Laucha", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.22422000", + "longitude": "11.67988000" + }, + { + "id": "27186", + "name": "Löbejün", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.63533000", + "longitude": "11.90106000" + }, + { + "id": "27187", + "name": "Löberitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65393000", + "longitude": "12.14655000" + }, + { + "id": "27213", + "name": "Lüderitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.50912000", + "longitude": "11.74301000" + }, + { + "id": "27225", + "name": "Lützen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25671000", + "longitude": "12.14164000" + }, + { + "id": "27032", + "name": "Leißling", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18260000", + "longitude": "11.90954000" + }, + { + "id": "27030", + "name": "Leitzkau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.05818000", + "longitude": "11.95203000" + }, + { + "id": "27056", + "name": "Letzlingen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.44615000", + "longitude": "11.48518000" + }, + { + "id": "27062", + "name": "Leuna", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31783000", + "longitude": "12.01589000" + }, + { + "id": "27095", + "name": "Lieskau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50395000", + "longitude": "11.86208000" + }, + { + "id": "27103", + "name": "Lindau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.03751000", + "longitude": "12.10788000" + }, + { + "id": "27126", + "name": "Loburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.11509000", + "longitude": "12.07840000" + }, + { + "id": "27127", + "name": "Lochau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39738000", + "longitude": "12.05303000" + }, + { + "id": "27152", + "name": "Lostau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.20871000", + "longitude": "11.73795000" + }, + { + "id": "27168", + "name": "Luftkurort Arendsee", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.88073000", + "longitude": "11.48621000" + }, + { + "id": "27230", + "name": "Magdeburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.12773000", + "longitude": "11.62916000" + }, + { + "id": "27267", + "name": "Mansfeld", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.59234000", + "longitude": "11.45223000" + }, + { + "id": "27555", + "name": "Möckern", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.14099000", + "longitude": "11.95203000" + }, + { + "id": "27560", + "name": "Möhlau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73126000", + "longitude": "12.35282000" + }, + { + "id": "27578", + "name": "Möser", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21397000", + "longitude": "11.79279000" + }, + { + "id": "27583", + "name": "Mücheln", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29688000", + "longitude": "11.80759000" + }, + { + "id": "27590", + "name": "Mühlanger", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85000000", + "longitude": "12.75000000" + }, + { + "id": "27378", + "name": "Mehringen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.72663000", + "longitude": "11.51264000" + }, + { + "id": "27387", + "name": "Meitzendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.21308000", + "longitude": "11.56174000" + }, + { + "id": "27422", + "name": "Merseburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35478000", + "longitude": "11.98923000" + }, + { + "id": "27462", + "name": "Mieste", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.48226000", + "longitude": "11.20640000" + }, + { + "id": "27536", + "name": "Muldenstein", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.67192000", + "longitude": "12.34548000" + }, + { + "id": "27548", + "name": "Muschwitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19296000", + "longitude": "12.12065000" + }, + { + "id": "27632", + "name": "Nachterstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80081000", + "longitude": "11.33489000" + }, + { + "id": "27648", + "name": "Nauendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.60178000", + "longitude": "11.88525000" + }, + { + "id": "27649", + "name": "Naumburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14987000", + "longitude": "11.80979000" + }, + { + "id": "27657", + "name": "Nebra", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28810000", + "longitude": "11.57749000" + }, + { + "id": "27671", + "name": "Neinstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.74950000", + "longitude": "11.08721000" + }, + { + "id": "27681", + "name": "Nessa", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14565000", + "longitude": "12.00874000" + }, + { + "id": "27715", + "name": "Neue Neustadt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15000000", + "longitude": "11.63333000" + }, + { + "id": "27776", + "name": "Neundorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.82080000", + "longitude": "11.57484000" + }, + { + "id": "27861", + "name": "Niederndodeleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.13416000", + "longitude": "11.50085000" + }, + { + "id": "27890", + "name": "Niemberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55035000", + "longitude": "12.09089000" + }, + { + "id": "27893", + "name": "Nienburg\/Saale", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83747000", + "longitude": "11.76979000" + }, + { + "id": "27939", + "name": "Nudersdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.93025000", + "longitude": "12.59554000" + }, + { + "id": "28027", + "name": "Oberröblingen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43705000", + "longitude": "11.30750000" + }, + { + "id": "28058", + "name": "Obhausen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39172000", + "longitude": "11.65312000" + }, + { + "id": "28072", + "name": "Oebisfelde", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43421000", + "longitude": "10.98786000" + }, + { + "id": "28121", + "name": "Oppin", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55136000", + "longitude": "12.03274000" + }, + { + "id": "28123", + "name": "Oranienbaum", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79860000", + "longitude": "12.40583000" + }, + { + "id": "28137", + "name": "Oschersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.03039000", + "longitude": "11.22898000" + }, + { + "id": "28147", + "name": "Osterburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.78721000", + "longitude": "11.75297000" + }, + { + "id": "28150", + "name": "Osterfeld", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08014000", + "longitude": "11.93047000" + }, + { + "id": "28151", + "name": "Osterhausen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45417000", + "longitude": "11.50456000" + }, + { + "id": "28154", + "name": "Osternienburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.79384000", + "longitude": "12.02616000" + }, + { + "id": "28155", + "name": "Osternienburger Land", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80000000", + "longitude": "12.01667000" + }, + { + "id": "28159", + "name": "Osterwieck", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96990000", + "longitude": "10.71042000" + }, + { + "id": "28245", + "name": "Peißen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.74347000", + "longitude": "11.75756000" + }, + { + "id": "28301", + "name": "Piesteritz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.86956000", + "longitude": "12.59835000" + }, + { + "id": "28332", + "name": "Plötzkau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.75000000", + "longitude": "11.68333000" + }, + { + "id": "28333", + "name": "Plötzky", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.05207000", + "longitude": "11.80202000" + }, + { + "id": "28344", + "name": "Polleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57966000", + "longitude": "11.59931000" + }, + { + "id": "28365", + "name": "Pouch", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62324000", + "longitude": "12.40133000" + }, + { + "id": "28369", + "name": "Pratau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.84226000", + "longitude": "12.64373000" + }, + { + "id": "28379", + "name": "Prettin", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66077000", + "longitude": "12.92353000" + }, + { + "id": "28381", + "name": "Pretzier", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.83224000", + "longitude": "11.26105000" + }, + { + "id": "28382", + "name": "Pretzsch", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.71466000", + "longitude": "12.80663000" + }, + { + "id": "28390", + "name": "Prittitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14996000", + "longitude": "11.93020000" + }, + { + "id": "28426", + "name": "Quedlinburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.78843000", + "longitude": "11.15006000" + }, + { + "id": "28428", + "name": "Queis", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.47626000", + "longitude": "12.13455000" + }, + { + "id": "28429", + "name": "Quellendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.74916000", + "longitude": "12.12796000" + }, + { + "id": "28430", + "name": "Querfurt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38124000", + "longitude": "11.60047000" + }, + { + "id": "28499", + "name": "Raßnitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39085000", + "longitude": "12.09406000" + }, + { + "id": "28444", + "name": "Radegast", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65654000", + "longitude": "12.09485000" + }, + { + "id": "28447", + "name": "Radis", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.75226000", + "longitude": "12.51453000" + }, + { + "id": "28450", + "name": "Raguhn", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.71167000", + "longitude": "12.27531000" + }, + { + "id": "28466", + "name": "Ramsin", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61095000", + "longitude": "12.23812000" + }, + { + "id": "28774", + "name": "Röblingen am See", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45944000", + "longitude": "11.68231000" + }, + { + "id": "28797", + "name": "Rübeland", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.75591000", + "longitude": "10.84660000" + }, + { + "id": "28535", + "name": "Reichardtswerben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24851000", + "longitude": "11.95349000" + }, + { + "id": "28597", + "name": "Reußen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50109000", + "longitude": "12.13044000" + }, + { + "id": "28633", + "name": "Rieder", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.73333000", + "longitude": "11.16667000" + }, + { + "id": "28649", + "name": "Riestedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49496000", + "longitude": "11.36023000" + }, + { + "id": "28743", + "name": "Roßla", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46331000", + "longitude": "11.07576000" + }, + { + "id": "28744", + "name": "Roßlau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88736000", + "longitude": "12.24192000" + }, + { + "id": "28681", + "name": "Rodleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.89607000", + "longitude": "12.20061000" + }, + { + "id": "28686", + "name": "Rogätz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31667000", + "longitude": "11.76667000" + }, + { + "id": "28695", + "name": "Roitzsch", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57526000", + "longitude": "12.26331000" + }, + { + "id": "28738", + "name": "Rottleberode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.51636000", + "longitude": "10.94658000" + }, + { + "id": "28843", + "name": "Salzmünde", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52662000", + "longitude": "11.82650000" + }, + { + "id": "28844", + "name": "Salzwedel", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.85435000", + "longitude": "11.15250000" + }, + { + "id": "28847", + "name": "Samswegen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.26059000", + "longitude": "11.56174000" + }, + { + "id": "28850", + "name": "Sandau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.78968000", + "longitude": "12.04582000" + }, + { + "id": "28853", + "name": "Sandersdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62841000", + "longitude": "12.26492000" + }, + { + "id": "28854", + "name": "Sandersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.67745000", + "longitude": "11.56795000" + }, + { + "id": "28858", + "name": "Sangerhausen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.47221000", + "longitude": "11.29533000" + }, + { + "id": "29505", + "name": "Süplingen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28759000", + "longitude": "11.32450000" + }, + { + "id": "28905", + "name": "Schafstädt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38131000", + "longitude": "11.77302000" + }, + { + "id": "29114", + "name": "Schönburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16667000", + "longitude": "11.86667000" + }, + { + "id": "29115", + "name": "Schönebeck", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.01682000", + "longitude": "11.73070000" + }, + { + "id": "29125", + "name": "Schönhausen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.58076000", + "longitude": "12.03923000" + }, + { + "id": "28933", + "name": "Schermen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.23206000", + "longitude": "11.81382000" + }, + { + "id": "28956", + "name": "Schkopau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39186000", + "longitude": "11.95224000" + }, + { + "id": "28961", + "name": "Schlaitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65871000", + "longitude": "12.42839000" + }, + { + "id": "29006", + "name": "Schneidlingen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.89454000", + "longitude": "11.44487000" + }, + { + "id": "29012", + "name": "Schochwitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53174000", + "longitude": "11.75485000" + }, + { + "id": "29029", + "name": "Schraplau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43750000", + "longitude": "11.66823000" + }, + { + "id": "29058", + "name": "Schwanebeck", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96790000", + "longitude": "11.12393000" + }, + { + "id": "29152", + "name": "Seehausen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.88872000", + "longitude": "11.75236000" + }, + { + "id": "29193", + "name": "Sennewitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.54326000", + "longitude": "11.95218000" + }, + { + "id": "29203", + "name": "Seyda", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88163000", + "longitude": "12.90812000" + }, + { + "id": "29222", + "name": "Siersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.60411000", + "longitude": "11.54334000" + }, + { + "id": "29267", + "name": "Sommersdorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.16667000", + "longitude": "11.08333000" + }, + { + "id": "29298", + "name": "Spergau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29347000", + "longitude": "12.02292000" + }, + { + "id": "29347", + "name": "Staßfurt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.85186000", + "longitude": "11.58508000" + }, + { + "id": "29339", + "name": "Stapelburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.90075000", + "longitude": "10.66240000" + }, + { + "id": "29454", + "name": "Stößen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11440000", + "longitude": "11.92405000" + }, + { + "id": "29349", + "name": "Stedten", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44308000", + "longitude": "11.69291000" + }, + { + "id": "29398", + "name": "Stendal", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.60690000", + "longitude": "11.85867000" + }, + { + "id": "29415", + "name": "Stolberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57426000", + "longitude": "10.95582000" + }, + { + "id": "29440", + "name": "Ströbeck", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.91406000", + "longitude": "10.94445000" + }, + { + "id": "29517", + "name": "Tangerhütte", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.43530000", + "longitude": "11.80724000" + }, + { + "id": "29518", + "name": "Tangermünde", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54463000", + "longitude": "11.97647000" + }, + { + "id": "29546", + "name": "Teicha", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55887000", + "longitude": "11.95482000" + }, + { + "id": "29567", + "name": "Teuchel", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88842000", + "longitude": "12.64587000" + }, + { + "id": "29568", + "name": "Teuchern", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12094000", + "longitude": "12.02410000" + }, + { + "id": "29573", + "name": "Teutschenthal", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45000000", + "longitude": "11.80000000" + }, + { + "id": "29575", + "name": "Thale", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.74861000", + "longitude": "11.04100000" + }, + { + "id": "29578", + "name": "Thalheim", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.65268000", + "longitude": "12.22756000" + }, + { + "id": "29589", + "name": "Theißen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08748000", + "longitude": "12.10659000" + }, + { + "id": "29615", + "name": "Timmenrode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.77113000", + "longitude": "11.00624000" + }, + { + "id": "29630", + "name": "Tollwitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28601000", + "longitude": "12.09733000" + }, + { + "id": "29651", + "name": "Trebitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58615000", + "longitude": "11.91965000" + }, + { + "id": "29688", + "name": "Tucheim", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28923000", + "longitude": "12.18423000" + }, + { + "id": "29714", + "name": "Uchtspringe", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.54011000", + "longitude": "11.59959000" + }, + { + "id": "29726", + "name": "Uenglingen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.61797000", + "longitude": "11.80893000" + }, + { + "id": "29732", + "name": "Uftrungen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49859000", + "longitude": "10.98066000" + }, + { + "id": "29736", + "name": "Uichteritz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20652000", + "longitude": "11.92215000" + }, + { + "id": "29741", + "name": "Ummendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.15645000", + "longitude": "11.18151000" + }, + { + "id": "29750", + "name": "Unseburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.93284000", + "longitude": "11.51281000" + }, + { + "id": "29893", + "name": "Völpke", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.13865000", + "longitude": "11.09877000" + }, + { + "id": "29818", + "name": "Veckenstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.90113000", + "longitude": "10.73203000" + }, + { + "id": "29864", + "name": "Vockerode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.84698000", + "longitude": "12.35208000" + }, + { + "id": "29876", + "name": "Volkstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.56267000", + "longitude": "11.55658000" + }, + { + "id": "29918", + "name": "Wahlitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.10376000", + "longitude": "11.77947000" + }, + { + "id": "29974", + "name": "Wallendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35983000", + "longitude": "12.07537000" + }, + { + "id": "29983", + "name": "Wallhausen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46117000", + "longitude": "11.20760000" + }, + { + "id": "29989", + "name": "Wallwitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58029000", + "longitude": "11.92888000" + }, + { + "id": "30010", + "name": "Wansleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46034000", + "longitude": "11.75135000" + }, + { + "id": "30011", + "name": "Wanzleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.06087000", + "longitude": "11.44080000" + }, + { + "id": "30034", + "name": "Wasserleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.92089000", + "longitude": "10.75670000" + }, + { + "id": "30443", + "name": "Wörlitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.84172000", + "longitude": "12.42116000" + }, + { + "id": "30047", + "name": "Weddersleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.76533000", + "longitude": "11.08531000" + }, + { + "id": "30054", + "name": "Wefensleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.18319000", + "longitude": "11.16074000" + }, + { + "id": "30055", + "name": "Weferlingen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.31205000", + "longitude": "11.05791000" + }, + { + "id": "30057", + "name": "Wegeleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.88376000", + "longitude": "11.17347000" + }, + { + "id": "30121", + "name": "Weißandt-Gölzau", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.67070000", + "longitude": "12.07338000" + }, + { + "id": "30130", + "name": "Weißenfels", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20148000", + "longitude": "11.96843000" + }, + { + "id": "30143", + "name": "Wellen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.14518000", + "longitude": "11.44106000" + }, + { + "id": "30147", + "name": "Welsleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.00304000", + "longitude": "11.63851000" + }, + { + "id": "30184", + "name": "Wernigerode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.83652000", + "longitude": "10.78216000" + }, + { + "id": "30205", + "name": "Westeregeln", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96328000", + "longitude": "11.39265000" + }, + { + "id": "30207", + "name": "Westerhausen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.80566000", + "longitude": "11.05631000" + }, + { + "id": "30226", + "name": "Wetterzeube", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00000000", + "longitude": "12.01667000" + }, + { + "id": "30227", + "name": "Wettin", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58604000", + "longitude": "11.80630000" + }, + { + "id": "30242", + "name": "Wiederstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66526000", + "longitude": "11.52723000" + }, + { + "id": "30307", + "name": "Wimmelburg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.52069000", + "longitude": "11.50696000" + }, + { + "id": "30340", + "name": "Wippra", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57300000", + "longitude": "11.27498000" + }, + { + "id": "30351", + "name": "Wittenberg", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.86610000", + "longitude": "12.64973000" + }, + { + "id": "30376", + "name": "Wolfen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.66122000", + "longitude": "12.26873000" + }, + { + "id": "30378", + "name": "Wolferode", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50650000", + "longitude": "11.51299000" + }, + { + "id": "30394", + "name": "Wolmirsleben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.95000000", + "longitude": "11.48333000" + }, + { + "id": "30395", + "name": "Wolmirstedt", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.24856000", + "longitude": "11.62945000" + }, + { + "id": "30413", + "name": "Wulfen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.81938000", + "longitude": "11.93063000" + }, + { + "id": "30465", + "name": "Zahna", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.91410000", + "longitude": "12.78561000" + }, + { + "id": "30470", + "name": "Zappendorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.51024000", + "longitude": "11.79514000" + }, + { + "id": "30542", + "name": "Zörbig", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.62894000", + "longitude": "12.11740000" + }, + { + "id": "30543", + "name": "Zöschen", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35802000", + "longitude": "12.11652000" + }, + { + "id": "30482", + "name": "Zeitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04962000", + "longitude": "12.13690000" + }, + { + "id": "30494", + "name": "Zerbst", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.96620000", + "longitude": "12.08517000" + }, + { + "id": "30501", + "name": "Zielitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "52.28958000", + "longitude": "11.67572000" + }, + { + "id": "30520", + "name": "Zscherben", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46709000", + "longitude": "11.87058000" + }, + { + "id": "30521", + "name": "Zscherndorf", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.61087000", + "longitude": "12.26755000" + }, + { + "id": "30524", + "name": "Zschornewitz", + "state_id": 3011, + "state_code": "ST", + "country_id": 82, + "country_code": "DE", + "latitude": "51.71585000", + "longitude": "12.39998000" + }, + { + "id": "23476", + "name": "Achtrup", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.79053000", + "longitude": "9.02848000" + }, + { + "id": "23514", + "name": "Ahrensbök", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.00862000", + "longitude": "10.57434000" + }, + { + "id": "23513", + "name": "Ahrensburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.67515000", + "longitude": "10.22593000" + }, + { + "id": "23533", + "name": "Albersdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.15000000", + "longitude": "9.28333000" + }, + { + "id": "23575", + "name": "Alt Duvenstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.36667000", + "longitude": "9.65000000" + }, + { + "id": "23603", + "name": "Altenholz", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.40000000", + "longitude": "10.13333000" + }, + { + "id": "23606", + "name": "Altenkrempe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13333000", + "longitude": "10.83333000" + }, + { + "id": "23640", + "name": "Alveslohe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78333000", + "longitude": "9.91667000" + }, + { + "id": "23677", + "name": "Appen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65813000", + "longitude": "9.74582000" + }, + { + "id": "23706", + "name": "Ascheberg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.15027000", + "longitude": "10.34552000" + }, + { + "id": "23736", + "name": "Aukrug", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.08333000", + "longitude": "9.78333000" + }, + { + "id": "23776", + "name": "Bad Bramstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.91830000", + "longitude": "9.88424000" + }, + { + "id": "23845", + "name": "Bad Oldesloe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.81167000", + "longitude": "10.37417000" + }, + { + "id": "23865", + "name": "Bad Schwartau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.91887000", + "longitude": "10.69691000" + }, + { + "id": "23866", + "name": "Bad Segeberg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.94313000", + "longitude": "10.30215000" + }, + { + "id": "23930", + "name": "Bargfeld-Stegen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.76778000", + "longitude": "10.18750000" + }, + { + "id": "23932", + "name": "Bargteheide", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.72856000", + "longitude": "10.26695000" + }, + { + "id": "23933", + "name": "Bark", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.91146000", + "longitude": "10.17949000" + }, + { + "id": "23934", + "name": "Barkelsby", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.50000000", + "longitude": "9.83333000" + }, + { + "id": "23937", + "name": "Barmstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.79209000", + "longitude": "9.76739000" + }, + { + "id": "23941", + "name": "Barsbüttel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56667000", + "longitude": "10.16667000" + }, + { + "id": "24468", + "name": "Bönebüttel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.08333000", + "longitude": "10.06667000" + }, + { + "id": "24471", + "name": "Bönningstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66667000", + "longitude": "9.91667000" + }, + { + "id": "24475", + "name": "Börnsen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.47620000", + "longitude": "10.28160000" + }, + { + "id": "24478", + "name": "Bösdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.15000000", + "longitude": "10.48333000" + }, + { + "id": "24486", + "name": "Büchen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48008000", + "longitude": "10.61760000" + }, + { + "id": "24493", + "name": "Büdelsdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.31844000", + "longitude": "9.67295000" + }, + { + "id": "24506", + "name": "Büsum", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13398000", + "longitude": "8.85756000" + }, + { + "id": "24051", + "name": "Berkenthin", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73333000", + "longitude": "10.65000000" + }, + { + "id": "24178", + "name": "Blekendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.28211000", + "longitude": "10.65820000" + }, + { + "id": "24220", + "name": "Bokholt-Hanredder", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78808000", + "longitude": "9.73586000" + }, + { + "id": "24225", + "name": "Bollingstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.59229000", + "longitude": "9.41738000" + }, + { + "id": "24235", + "name": "Boostedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.01667000", + "longitude": "10.03333000" + }, + { + "id": "24238", + "name": "Bordelum", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.63333000", + "longitude": "8.93333000" + }, + { + "id": "24239", + "name": "Bordesholm", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.17611000", + "longitude": "10.03146000" + }, + { + "id": "24243", + "name": "Borgstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33268000", + "longitude": "9.70954000" + }, + { + "id": "24254", + "name": "Bornhöved", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.06667000", + "longitude": "10.23333000" + }, + { + "id": "24259", + "name": "Borstel-Hohenraden", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68333000", + "longitude": "9.81667000" + }, + { + "id": "24261", + "name": "Bosau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.09787000", + "longitude": "10.43570000" + }, + { + "id": "24265", + "name": "Bovenau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33333000", + "longitude": "9.83333000" + }, + { + "id": "24279", + "name": "Brande-Hörnerkirchen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.85000000", + "longitude": "9.71667000" + }, + { + "id": "24368", + "name": "Brügge", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.17578000", + "longitude": "10.06913000" + }, + { + "id": "24295", + "name": "Bredenbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.32247000", + "longitude": "9.87293000" + }, + { + "id": "24296", + "name": "Bredstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.61868000", + "longitude": "8.96441000" + }, + { + "id": "24301", + "name": "Breiholz", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.20554000", + "longitude": "9.52371000" + }, + { + "id": "24309", + "name": "Breitenburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.90572000", + "longitude": "9.57041000" + }, + { + "id": "24310", + "name": "Breitenfelde", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60592000", + "longitude": "10.63339000" + }, + { + "id": "24318", + "name": "Brekendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.42120000", + "longitude": "9.63350000" + }, + { + "id": "24319", + "name": "Breklum", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.60000000", + "longitude": "8.98333000" + }, + { + "id": "24343", + "name": "Brokdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86380000", + "longitude": "9.32314000" + }, + { + "id": "24344", + "name": "Brokstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.98333000", + "longitude": "9.81667000" + }, + { + "id": "24362", + "name": "Brunsbüttel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.89504000", + "longitude": "9.10484000" + }, + { + "id": "24391", + "name": "Buchholz", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.98829000", + "longitude": "9.22362000" + }, + { + "id": "24407", + "name": "Burg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.99708000", + "longitude": "9.25891000" + }, + { + "id": "24409", + "name": "Burg auf Fehmarn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.43333000", + "longitude": "11.20000000" + }, + { + "id": "24447", + "name": "Busdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.10345000", + "longitude": "10.08242000" + }, + { + "id": "24582", + "name": "Dahme", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.21667000", + "longitude": "11.08333000" + }, + { + "id": "24589", + "name": "Damp", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.58469000", + "longitude": "10.01785000" + }, + { + "id": "24593", + "name": "Dannewerk", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.48333000", + "longitude": "9.50000000" + }, + { + "id": "24600", + "name": "Dassendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.49532000", + "longitude": "10.35987000" + }, + { + "id": "24790", + "name": "Dägeling", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.88333000", + "longitude": "9.53333000" + }, + { + "id": "24791", + "name": "Dänischenhagen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.42775000", + "longitude": "10.12596000" + }, + { + "id": "24622", + "name": "Delingsdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.70000000", + "longitude": "10.25000000" + }, + { + "id": "24715", + "name": "Dobersdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.31893000", + "longitude": "10.28011000" + }, + { + "id": "24723", + "name": "Dollerup", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.77798000", + "longitude": "9.67981000" + }, + { + "id": "24765", + "name": "Drelsdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.60548000", + "longitude": "9.04449000" + }, + { + "id": "24849", + "name": "Eckernförde", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.46854000", + "longitude": "9.83824000" + }, + { + "id": "24851", + "name": "Eddelak", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95000000", + "longitude": "9.15000000" + }, + { + "id": "24871", + "name": "Eggebek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.61667000", + "longitude": "9.36667000" + }, + { + "id": "24948", + "name": "Ellerau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75000000", + "longitude": "9.91667000" + }, + { + "id": "24949", + "name": "Ellerbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65817000", + "longitude": "9.86991000" + }, + { + "id": "24950", + "name": "Ellerhoop", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.72603000", + "longitude": "9.76933000" + }, + { + "id": "24958", + "name": "Elmenhorst", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.76667000", + "longitude": "10.26667000" + }, + { + "id": "24960", + "name": "Elmshorn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75396000", + "longitude": "9.65339000" + }, + { + "id": "24964", + "name": "Elsdorf-Westermühlen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.26667000", + "longitude": "9.51667000" + }, + { + "id": "24984", + "name": "Emkendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.26667000", + "longitude": "9.85000000" + }, + { + "id": "24986", + "name": "Emmelsbüll-Horsbüll", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.81667000", + "longitude": "8.70000000" + }, + { + "id": "25036", + "name": "Erfde", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.30000000", + "longitude": "9.31667000" + }, + { + "id": "25077", + "name": "Escheburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.46667000", + "longitude": "10.31667000" + }, + { + "id": "25117", + "name": "Eutin", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.14054000", + "longitude": "10.60751000" + }, + { + "id": "25126", + "name": "Fahrdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.50000000", + "longitude": "9.60000000" + }, + { + "id": "25128", + "name": "Fahrenkrug", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95000000", + "longitude": "10.25000000" + }, + { + "id": "25148", + "name": "Fehmarn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.43780000", + "longitude": "11.19352000" + }, + { + "id": "25154", + "name": "Felde", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.30000000", + "longitude": "9.93333000" + }, + { + "id": "25161", + "name": "Felm", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.41667000", + "longitude": "10.05000000" + }, + { + "id": "25187", + "name": "Fleckeby", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.48333000", + "longitude": "9.70000000" + }, + { + "id": "25189", + "name": "Flensburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.78431000", + "longitude": "9.43961000" + }, + { + "id": "25192", + "name": "Flintbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.25000000", + "longitude": "10.06667000" + }, + { + "id": "25202", + "name": "Fockbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.30000000", + "longitude": "9.60000000" + }, + { + "id": "25245", + "name": "Freienwill", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.72752000", + "longitude": "9.49414000" + }, + { + "id": "25291", + "name": "Friedrichskoog", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.01667000", + "longitude": "8.91667000" + }, + { + "id": "25293", + "name": "Friedrichstadt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.37566000", + "longitude": "9.08672000" + }, + { + "id": "25365", + "name": "Garding", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33056000", + "longitude": "8.78056000" + }, + { + "id": "25793", + "name": "Gülzow", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.45000000", + "longitude": "10.50000000" + }, + { + "id": "25799", + "name": "Güster", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.53851000", + "longitude": "10.67607000" + }, + { + "id": "25390", + "name": "Geesthacht", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.43575000", + "longitude": "10.37790000" + }, + { + "id": "25418", + "name": "Gelting", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.75000000", + "longitude": "9.90000000" + }, + { + "id": "25476", + "name": "Gettorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.40000000", + "longitude": "9.98333000" + }, + { + "id": "25482", + "name": "Giekau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.31667000", + "longitude": "10.51667000" + }, + { + "id": "25519", + "name": "Glücksburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.83522000", + "longitude": "9.54853000" + }, + { + "id": "25520", + "name": "Glückstadt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78893000", + "longitude": "9.42576000" + }, + { + "id": "25513", + "name": "Glinde", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.54410000", + "longitude": "10.20048000" + }, + { + "id": "25524", + "name": "Gnutz", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13333000", + "longitude": "9.81667000" + }, + { + "id": "25527", + "name": "Goel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.28350000", + "longitude": "10.94036000" + }, + { + "id": "25731", + "name": "Grömitz", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.15000000", + "longitude": "10.96667000" + }, + { + "id": "25733", + "name": "Grönwohld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.64162000", + "longitude": "10.40784000" + }, + { + "id": "25586", + "name": "Grebin", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.20000000", + "longitude": "10.50000000" + }, + { + "id": "25597", + "name": "Gremersdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33333000", + "longitude": "10.93333000" + }, + { + "id": "25622", + "name": "Groß Grönau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80000000", + "longitude": "10.75000000" + }, + { + "id": "25626", + "name": "Groß Kummerfeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.05000000", + "longitude": "10.08333000" + }, + { + "id": "25636", + "name": "Groß Rheide", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.44154000", + "longitude": "9.43508000" + }, + { + "id": "25641", + "name": "Groß Wittensee", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.40000000", + "longitude": "9.76667000" + }, + { + "id": "25661", + "name": "Großenaspe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.98333000", + "longitude": "9.96667000" + }, + { + "id": "25667", + "name": "Großensee", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61263000", + "longitude": "10.33961000" + }, + { + "id": "25670", + "name": "Großenwiehe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.70000000", + "longitude": "9.25000000" + }, + { + "id": "25674", + "name": "Großhansdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66667000", + "longitude": "10.28333000" + }, + { + "id": "25709", + "name": "Großsolt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.70000000", + "longitude": "9.51667000" + }, + { + "id": "25618", + "name": "Grossenbrode", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.38333000", + "longitude": "11.08333000" + }, + { + "id": "25717", + "name": "Grube", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.23333000", + "longitude": "11.03333000" + }, + { + "id": "25751", + "name": "Gudow", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.55556000", + "longitude": "10.77021000" + }, + { + "id": "25860", + "name": "Halstenbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63333000", + "longitude": "9.85000000" + }, + { + "id": "25863", + "name": "Hamberge", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.83333000", + "longitude": "10.58333000" + }, + { + "id": "25871", + "name": "Hamdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.22522000", + "longitude": "9.51866000" + }, + { + "id": "25881", + "name": "Hammoor", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.71378000", + "longitude": "10.32200000" + }, + { + "id": "25884", + "name": "Handewitt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.76667000", + "longitude": "9.33333000" + }, + { + "id": "25886", + "name": "Hanerau-Hademarschen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13333000", + "longitude": "9.41667000" + }, + { + "id": "25905", + "name": "Harrislee", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.80000000", + "longitude": "9.38333000" + }, + { + "id": "25911", + "name": "Hartenholm", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.89856000", + "longitude": "10.05953000" + }, + { + "id": "25922", + "name": "Haselau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66181000", + "longitude": "9.62010000" + }, + { + "id": "25925", + "name": "Haseldorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63780000", + "longitude": "9.59151000" + }, + { + "id": "25930", + "name": "Hasloh", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69471000", + "longitude": "9.91682000" + }, + { + "id": "25942", + "name": "Hattstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.53333000", + "longitude": "9.03333000" + }, + { + "id": "26341", + "name": "Hürup", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.75000000", + "longitude": "9.53333000" + }, + { + "id": "25980", + "name": "Heide", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.19579000", + "longitude": "9.09880000" + }, + { + "id": "25989", + "name": "Heidgraben", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.70787000", + "longitude": "9.68099000" + }, + { + "id": "25992", + "name": "Heikendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.36667000", + "longitude": "10.20000000" + }, + { + "id": "25997", + "name": "Heiligenhafen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.36964000", + "longitude": "10.98022000" + }, + { + "id": "26002", + "name": "Heiligenstedten", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.93264000", + "longitude": "9.47462000" + }, + { + "id": "26017", + "name": "Heist", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65000000", + "longitude": "9.65000000" + }, + { + "id": "26023", + "name": "Helgoland", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.18143000", + "longitude": "7.88630000" + }, + { + "id": "26037", + "name": "Hemdingen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.76667000", + "longitude": "9.83333000" + }, + { + "id": "26042", + "name": "Hemmingstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.15000000", + "longitude": "9.06667000" + }, + { + "id": "26052", + "name": "Hennstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.28333000", + "longitude": "9.16667000" + }, + { + "id": "26054", + "name": "Henstedt-Ulzburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80500000", + "longitude": "9.97452000" + }, + { + "id": "26073", + "name": "Heringsdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.30100000", + "longitude": "11.00658000" + }, + { + "id": "26100", + "name": "Herzhorn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78333000", + "longitude": "9.48333000" + }, + { + "id": "26109", + "name": "Hetlingen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60712000", + "longitude": "9.63718000" + }, + { + "id": "26171", + "name": "Hitzhusen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.92397000", + "longitude": "9.85262000" + }, + { + "id": "26172", + "name": "Hochdonn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.02663000", + "longitude": "9.27624000" + }, + { + "id": "26196", + "name": "Hohenaspe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.98898000", + "longitude": "9.52774000" + }, + { + "id": "26203", + "name": "Hohenfelde", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.36667000", + "longitude": "10.50000000" + }, + { + "id": "26211", + "name": "Hohenlockstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.96667000", + "longitude": "9.61667000" + }, + { + "id": "26222", + "name": "Hohenwestedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.08886000", + "longitude": "9.65359000" + }, + { + "id": "26223", + "name": "Hohn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.30000000", + "longitude": "9.50000000" + }, + { + "id": "26227", + "name": "Hoisdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65000000", + "longitude": "10.31667000" + }, + { + "id": "26235", + "name": "Hollingstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.45934000", + "longitude": "9.33695000" + }, + { + "id": "26237", + "name": "Holm", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61667000", + "longitude": "9.66667000" + }, + { + "id": "26239", + "name": "Holtsee", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.40000000", + "longitude": "9.85000000" + }, + { + "id": "26272", + "name": "Horst", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.81195000", + "longitude": "9.62307000" + }, + { + "id": "26292", + "name": "Husum", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.48580000", + "longitude": "9.05239000" + }, + { + "id": "26422", + "name": "Itzehoe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.92099000", + "longitude": "9.51529000" + }, + { + "id": "26423", + "name": "Itzstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80800000", + "longitude": "10.15797000" + }, + { + "id": "26431", + "name": "Jarplund-Weding", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.73714000", + "longitude": "9.41813000" + }, + { + "id": "26469", + "name": "Jübek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.55709000", + "longitude": "9.39773000" + }, + { + "id": "26438", + "name": "Jerrishoe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.65670000", + "longitude": "9.36918000" + }, + { + "id": "26439", + "name": "Jersbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73333000", + "longitude": "10.21667000" + }, + { + "id": "26449", + "name": "Jevenstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.23333000", + "longitude": "9.66667000" + }, + { + "id": "26496", + "name": "Kaltenkirchen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.83292000", + "longitude": "9.95810000" + }, + { + "id": "26509", + "name": "Kappeln", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.66122000", + "longitude": "9.93130000" + }, + { + "id": "26530", + "name": "Kasseedorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.16667000", + "longitude": "10.71667000" + }, + { + "id": "26534", + "name": "Kastorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.74569000", + "longitude": "10.56723000" + }, + { + "id": "26548", + "name": "Kayhude", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75629000", + "longitude": "10.13232000" + }, + { + "id": "26817", + "name": "Kölln-Reisiek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.75748000", + "longitude": "9.69772000" + }, + { + "id": "26553", + "name": "Keitum", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.89333000", + "longitude": "8.37083000" + }, + { + "id": "26559", + "name": "Kellenhusen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.19338000", + "longitude": "11.06165000" + }, + { + "id": "26560", + "name": "Kellinghusen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95202000", + "longitude": "9.71959000" + }, + { + "id": "26581", + "name": "Kiebitzreihe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78333000", + "longitude": "9.61667000" + }, + { + "id": "26584", + "name": "Kiel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.32133000", + "longitude": "10.13489000" + }, + { + "id": "26647", + "name": "Kisdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.81667000", + "longitude": "10.01667000" + }, + { + "id": "26656", + "name": "Klausdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.30899000", + "longitude": "10.21372000" + }, + { + "id": "26660", + "name": "Klein Nordende", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.72219000", + "longitude": "9.65424000" + }, + { + "id": "26661", + "name": "Klein Offenseth-Sparrieshoop", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.79748000", + "longitude": "9.68653000" + }, + { + "id": "26664", + "name": "Klein Rönnau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.96667000", + "longitude": "10.31667000" + }, + { + "id": "26714", + "name": "Kollmar", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.72936000", + "longitude": "9.47880000" + }, + { + "id": "26727", + "name": "Kosel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.50580000", + "longitude": "9.75653000" + }, + { + "id": "26784", + "name": "Kröppelshagen-Fahrendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.48979000", + "longitude": "10.31697000" + }, + { + "id": "26750", + "name": "Krempe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.83694000", + "longitude": "9.48831000" + }, + { + "id": "26751", + "name": "Kremperheide", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.88721000", + "longitude": "9.47809000" + }, + { + "id": "26772", + "name": "Kronshagen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33333000", + "longitude": "10.08333000" + }, + { + "id": "26773", + "name": "Kropp", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.41667000", + "longitude": "9.51667000" + }, + { + "id": "26780", + "name": "Krummesse", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78333000", + "longitude": "10.65000000" + }, + { + "id": "26790", + "name": "Kuddewörde", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.58333000", + "longitude": "10.40000000" + }, + { + "id": "26796", + "name": "Kummerfeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69262000", + "longitude": "9.79099000" + }, + { + "id": "26866", + "name": "Laboe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.40000000", + "longitude": "10.21667000" + }, + { + "id": "26871", + "name": "Ladelund", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.84084000", + "longitude": "9.02135000" + }, + { + "id": "26899", + "name": "Langballig", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.80000000", + "longitude": "9.63333000" + }, + { + "id": "26921", + "name": "Langenhorn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.66667000", + "longitude": "8.91667000" + }, + { + "id": "26941", + "name": "Langstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.61667000", + "longitude": "9.38333000" + }, + { + "id": "26944", + "name": "Langwedel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.21033000", + "longitude": "9.92761000" + }, + { + "id": "26951", + "name": "Lasbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73333000", + "longitude": "10.36667000" + }, + { + "id": "26968", + "name": "Lauenburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.37199000", + "longitude": "10.55654000" + }, + { + "id": "27183", + "name": "Lägerdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.88333000", + "longitude": "9.58333000" + }, + { + "id": "27205", + "name": "Lübeck", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86893000", + "longitude": "10.68729000" + }, + { + "id": "27221", + "name": "Lürschau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.55000000", + "longitude": "9.50000000" + }, + { + "id": "27222", + "name": "Lütjenburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.29188000", + "longitude": "10.58945000" + }, + { + "id": "27223", + "name": "Lütjensee", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65000000", + "longitude": "10.36667000" + }, + { + "id": "26997", + "name": "Leck", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.76667000", + "longitude": "8.98333000" + }, + { + "id": "27002", + "name": "Leezen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86667000", + "longitude": "10.25000000" + }, + { + "id": "27006", + "name": "Lehe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.34143000", + "longitude": "9.02374000" + }, + { + "id": "27009", + "name": "Lehmkuhlen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.23333000", + "longitude": "10.36667000" + }, + { + "id": "27048", + "name": "Lensahn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.21652000", + "longitude": "10.88326000" + }, + { + "id": "27049", + "name": "Lentföhrden", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86667000", + "longitude": "9.88333000" + }, + { + "id": "27101", + "name": "Linau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.64446000", + "longitude": "10.46853000" + }, + { + "id": "27104", + "name": "Lindau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.38333000", + "longitude": "9.90000000" + }, + { + "id": "27109", + "name": "Lindewitt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.70000000", + "longitude": "9.20000000" + }, + { + "id": "27122", + "name": "List", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "55.01917000", + "longitude": "8.43132000" + }, + { + "id": "27131", + "name": "Lohe-Rickelshof", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.18803000", + "longitude": "9.07066000" + }, + { + "id": "27174", + "name": "Lunden", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33131000", + "longitude": "9.02523000" + }, + { + "id": "27252", + "name": "Malente", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.17226000", + "longitude": "10.55968000" + }, + { + "id": "27327", + "name": "Martensrade", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.28333000", + "longitude": "10.40000000" + }, + { + "id": "27564", + "name": "Mölln", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61702000", + "longitude": "10.68742000" + }, + { + "id": "27574", + "name": "Mönkeberg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.35000000", + "longitude": "10.18333000" + }, + { + "id": "27624", + "name": "Münsterdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.90232000", + "longitude": "9.54123000" + }, + { + "id": "27392", + "name": "Meldorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.09182000", + "longitude": "9.06870000" + }, + { + "id": "27399", + "name": "Melsdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.31667000", + "longitude": "10.03333000" + }, + { + "id": "27460", + "name": "Mielkendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.28333000", + "longitude": "10.05000000" + }, + { + "id": "27466", + "name": "Mildstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.46667000", + "longitude": "9.10000000" + }, + { + "id": "27502", + "name": "Mohrkirch", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.66667000", + "longitude": "9.71667000" + }, + { + "id": "27505", + "name": "Molfsee", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.26667000", + "longitude": "10.06667000" + }, + { + "id": "27516", + "name": "Moorrege", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66667000", + "longitude": "9.66667000" + }, + { + "id": "27541", + "name": "Munkbrarup", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.80000000", + "longitude": "9.56667000" + }, + { + "id": "27636", + "name": "Nahe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80000000", + "longitude": "10.13333000" + }, + { + "id": "27950", + "name": "Nübbel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.26667000", + "longitude": "9.61667000" + }, + { + "id": "27956", + "name": "Nützen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86667000", + "longitude": "9.91667000" + }, + { + "id": "27667", + "name": "Negernbötel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.98333000", + "longitude": "10.25000000" + }, + { + "id": "27697", + "name": "Neuberend", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.55000000", + "longitude": "9.53333000" + }, + { + "id": "27713", + "name": "Neudorf-Bornstein", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.43333000", + "longitude": "9.95000000" + }, + { + "id": "27760", + "name": "Neukirchen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.21465000", + "longitude": "10.55381000" + }, + { + "id": "27774", + "name": "Neumünster", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.07477000", + "longitude": "9.98195000" + }, + { + "id": "27805", + "name": "Neustadt in Holstein", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.10707000", + "longitude": "10.81450000" + }, + { + "id": "27815", + "name": "Neuwittenbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.36667000", + "longitude": "10.01667000" + }, + { + "id": "27824", + "name": "Niebüll", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.78663000", + "longitude": "8.82854000" + }, + { + "id": "27900", + "name": "Nindorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.08333000", + "longitude": "9.11667000" + }, + { + "id": "27916", + "name": "Norderstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68590000", + "longitude": "9.98041000" + }, + { + "id": "27918", + "name": "Nordhastedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.16667000", + "longitude": "9.18333000" + }, + { + "id": "27932", + "name": "Nortorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.16738000", + "longitude": "9.85437000" + }, + { + "id": "27941", + "name": "Nusse", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65654000", + "longitude": "10.58391000" + }, + { + "id": "28077", + "name": "Oelixdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.92738000", + "longitude": "9.56383000" + }, + { + "id": "28084", + "name": "Oeversee", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.70000000", + "longitude": "9.43333000" + }, + { + "id": "28106", + "name": "Oldenburg in Holstein", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.29576000", + "longitude": "10.90156000" + }, + { + "id": "28107", + "name": "Oldendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95341000", + "longitude": "9.45858000" + }, + { + "id": "28109", + "name": "Oldenswort", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.37243000", + "longitude": "8.93996000" + }, + { + "id": "28138", + "name": "Osdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.43333000", + "longitude": "10.01667000" + }, + { + "id": "28146", + "name": "Ostenfeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.46400000", + "longitude": "9.23430000" + }, + { + "id": "28157", + "name": "Osterrönfeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.29013000", + "longitude": "9.69900000" + }, + { + "id": "28176", + "name": "Oststeinbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.54321000", + "longitude": "10.16939000" + }, + { + "id": "28203", + "name": "Owschlag", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.39336000", + "longitude": "9.59243000" + }, + { + "id": "28208", + "name": "Padenstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.05000000", + "longitude": "9.91667000" + }, + { + "id": "28210", + "name": "Pahlen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.26667000", + "longitude": "9.30000000" + }, + { + "id": "28215", + "name": "Panker", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33333000", + "longitude": "10.56667000" + }, + { + "id": "28416", + "name": "Pölitz", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.77303000", + "longitude": "10.38276000" + }, + { + "id": "28248", + "name": "Pellworm", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.51610000", + "longitude": "8.64512000" + }, + { + "id": "28304", + "name": "Pinneberg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.66732000", + "longitude": "9.78936000" + }, + { + "id": "28331", + "name": "Plön", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.16241000", + "longitude": "10.42333000" + }, + { + "id": "28371", + "name": "Preetz", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.23540000", + "longitude": "10.27795000" + }, + { + "id": "28389", + "name": "Prisdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68333000", + "longitude": "9.75000000" + }, + { + "id": "28393", + "name": "Probsteierhagen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.36153000", + "longitude": "10.28772000" + }, + { + "id": "28396", + "name": "Pronstorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95000000", + "longitude": "10.46667000" + }, + { + "id": "28425", + "name": "Quarnbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33333000", + "longitude": "9.98333000" + }, + { + "id": "28431", + "name": "Quern", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.75000000", + "longitude": "9.71667000" + }, + { + "id": "28432", + "name": "Quickborn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.72831000", + "longitude": "9.90934000" + }, + { + "id": "28454", + "name": "Raisdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.28127000", + "longitude": "10.24915000" + }, + { + "id": "28476", + "name": "Rantrum", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.44062000", + "longitude": "9.12872000" + }, + { + "id": "28483", + "name": "Ratekau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95000000", + "longitude": "10.73333000" + }, + { + "id": "28491", + "name": "Ratzeburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69965000", + "longitude": "10.77256000" + }, + { + "id": "28808", + "name": "Rümpel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.78333000", + "longitude": "10.35000000" + }, + { + "id": "28555", + "name": "Reinbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.51703000", + "longitude": "10.24880000" + }, + { + "id": "28557", + "name": "Reinfeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.83184000", + "longitude": "10.49126000" + }, + { + "id": "28571", + "name": "Rellingen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.65000000", + "longitude": "9.81667000" + }, + { + "id": "28579", + "name": "Rendsburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.30663000", + "longitude": "9.66313000" + }, + { + "id": "28624", + "name": "Rickert", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33333000", + "longitude": "9.66667000" + }, + { + "id": "28625", + "name": "Rickling", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.01667000", + "longitude": "10.16667000" + }, + { + "id": "28644", + "name": "Riepsdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.22611000", + "longitude": "10.97242000" + }, + { + "id": "28647", + "name": "Rieseby", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.54140000", + "longitude": "9.81689000" + }, + { + "id": "28666", + "name": "Risum-Lindholm", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.75802000", + "longitude": "8.86906000" + }, + { + "id": "28760", + "name": "Ruhwinkel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.10000000", + "longitude": "10.21667000" + }, + { + "id": "28855", + "name": "Sandesneben", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68333000", + "longitude": "10.50000000" + }, + { + "id": "28859", + "name": "Sankelmark", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.71803000", + "longitude": "9.42344000" + }, + { + "id": "28876", + "name": "Sankt Margarethen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.89199000", + "longitude": "9.25301000" + }, + { + "id": "28878", + "name": "Sankt Michaelisdonn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.98333000", + "longitude": "9.11667000" + }, + { + "id": "28881", + "name": "Sankt Peter-Ording", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.30363000", + "longitude": "8.64138000" + }, + { + "id": "28892", + "name": "Satrup", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.69237000", + "longitude": "9.60549000" + }, + { + "id": "29496", + "name": "Sörup", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.71667000", + "longitude": "9.66667000" + }, + { + "id": "29497", + "name": "Süderbrarup", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.63333000", + "longitude": "9.78333000" + }, + { + "id": "29499", + "name": "Süderlügum", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.87391000", + "longitude": "8.91111000" + }, + { + "id": "29500", + "name": "Süderstapel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.34967000", + "longitude": "9.21907000" + }, + { + "id": "29502", + "name": "Sülfeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.80000000", + "longitude": "10.23333000" + }, + { + "id": "29507", + "name": "Süsel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.08135000", + "longitude": "10.70172000" + }, + { + "id": "28902", + "name": "Schaalby", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.55000000", + "longitude": "9.63333000" + }, + { + "id": "28903", + "name": "Schacht-Audorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.31282000", + "longitude": "9.71586000" + }, + { + "id": "28904", + "name": "Schafflund", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.75845000", + "longitude": "9.18329000" + }, + { + "id": "28910", + "name": "Scharbeutz", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.03333000", + "longitude": "10.75000000" + }, + { + "id": "28913", + "name": "Schashagen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13333000", + "longitude": "10.88333000" + }, + { + "id": "29111", + "name": "Schönberg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68319000", + "longitude": "10.42671000" + }, + { + "id": "29128", + "name": "Schönkirchen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.33333000", + "longitude": "10.23333000" + }, + { + "id": "29134", + "name": "Schönwalde am Bungsberg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.18333000", + "longitude": "10.75000000" + }, + { + "id": "29137", + "name": "Schülp", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.25896000", + "longitude": "9.63034000" + }, + { + "id": "28927", + "name": "Schellhorn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.22952000", + "longitude": "10.29402000" + }, + { + "id": "28928", + "name": "Schenefeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.05000000", + "longitude": "9.48333000" + }, + { + "id": "28972", + "name": "Schleswig", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.52156000", + "longitude": "9.55860000" + }, + { + "id": "28986", + "name": "Schmalfeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.88333000", + "longitude": "9.96667000" + }, + { + "id": "29011", + "name": "Schobüll", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.50920000", + "longitude": "9.00621000" + }, + { + "id": "29034", + "name": "Schuby", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.51667000", + "longitude": "9.48333000" + }, + { + "id": "29044", + "name": "Schwabstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.39705000", + "longitude": "9.18646000" + }, + { + "id": "29069", + "name": "Schwarzenbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.50303000", + "longitude": "10.48055000" + }, + { + "id": "29149", + "name": "Seedorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.05000000", + "longitude": "10.41667000" + }, + { + "id": "29178", + "name": "Selent", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.28893000", + "longitude": "10.42702000" + }, + { + "id": "29197", + "name": "Seth", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.84718000", + "longitude": "10.17421000" + }, + { + "id": "29216", + "name": "Siek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.63333000", + "longitude": "10.30000000" + }, + { + "id": "29219", + "name": "Sierksdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.06667000", + "longitude": "10.76667000" + }, + { + "id": "29223", + "name": "Sievershütten", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.84238000", + "longitude": "10.11216000" + }, + { + "id": "29224", + "name": "Sieverstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.64145000", + "longitude": "9.46949000" + }, + { + "id": "29229", + "name": "Silberstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.51667000", + "longitude": "9.38333000" + }, + { + "id": "29332", + "name": "Stadum", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.73333000", + "longitude": "9.05000000" + }, + { + "id": "29340", + "name": "Stapelfeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.60000000", + "longitude": "10.21667000" + }, + { + "id": "29367", + "name": "Steinberg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.76667000", + "longitude": "9.78333000" + }, + { + "id": "29368", + "name": "Steinbergkirche", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.75463000", + "longitude": "9.76069000" + }, + { + "id": "29403", + "name": "Sterup", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.72650000", + "longitude": "9.73572000" + }, + { + "id": "29411", + "name": "Stockelsdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.89220000", + "longitude": "10.64713000" + }, + { + "id": "29418", + "name": "Stolpe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13333000", + "longitude": "10.21667000" + }, + { + "id": "29426", + "name": "Strande", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.43333000", + "longitude": "10.16667000" + }, + { + "id": "29439", + "name": "Struvenhütten", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86667000", + "longitude": "10.05000000" + }, + { + "id": "29487", + "name": "Sylt-Ost", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.86110000", + "longitude": "8.41141000" + }, + { + "id": "29519", + "name": "Tangstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.73333000", + "longitude": "10.08333000" + }, + { + "id": "29531", + "name": "Tarp", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.66667000", + "longitude": "9.40000000" + }, + { + "id": "29532", + "name": "Tating", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.32607000", + "longitude": "8.70802000" + }, + { + "id": "29702", + "name": "Tönning", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.31879000", + "longitude": "8.94234000" + }, + { + "id": "29710", + "name": "Tüttendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.40000000", + "longitude": "10.00000000" + }, + { + "id": "29553", + "name": "Tellingstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.21667000", + "longitude": "9.28333000" + }, + { + "id": "29613", + "name": "Timmaspe", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13967000", + "longitude": "9.89430000" + }, + { + "id": "29614", + "name": "Timmendorfer Strand", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.99530000", + "longitude": "10.77676000" + }, + { + "id": "29616", + "name": "Tinnum", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.89932000", + "longitude": "8.33476000" + }, + { + "id": "29623", + "name": "Todenbüttel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.13333000", + "longitude": "9.55000000" + }, + { + "id": "29624", + "name": "Todendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.69461000", + "longitude": "10.34781000" + }, + { + "id": "29625", + "name": "Todesfelde", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.90000000", + "longitude": "10.18333000" + }, + { + "id": "29629", + "name": "Tolk", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.57987000", + "longitude": "9.63844000" + }, + { + "id": "29634", + "name": "Tornesch", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.70000000", + "longitude": "9.71667000" + }, + { + "id": "29640", + "name": "Trappenkamp", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.03988000", + "longitude": "10.21496000" + }, + { + "id": "29647", + "name": "Travemünde", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.96304000", + "longitude": "10.87090000" + }, + { + "id": "29657", + "name": "Treia", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.50000000", + "longitude": "9.31667000" + }, + { + "id": "29659", + "name": "Tremsbüttel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.74384000", + "longitude": "10.31024000" + }, + { + "id": "29674", + "name": "Trittau", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.61667000", + "longitude": "10.40000000" + }, + { + "id": "29727", + "name": "Uetersen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.68769000", + "longitude": "9.66394000" + }, + { + "id": "29806", + "name": "Vaale", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.00000000", + "longitude": "9.38333000" + }, + { + "id": "29862", + "name": "Viöl", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.56667000", + "longitude": "9.18333000" + }, + { + "id": "29895", + "name": "Waabs", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.53333000", + "longitude": "9.98333000" + }, + { + "id": "29905", + "name": "Wacken", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.02078000", + "longitude": "9.37597000" + }, + { + "id": "29919", + "name": "Wahlstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95161000", + "longitude": "10.20626000" + }, + { + "id": "29998", + "name": "Wanderup", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.68333000", + "longitude": "9.33333000" + }, + { + "id": "30003", + "name": "Wangels", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.26667000", + "longitude": "10.76667000" + }, + { + "id": "30006", + "name": "Wankendorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.11224000", + "longitude": "10.20546000" + }, + { + "id": "30028", + "name": "Wasbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.07427000", + "longitude": "9.89738000" + }, + { + "id": "30040", + "name": "Wattenbek", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.16667000", + "longitude": "10.05000000" + }, + { + "id": "30438", + "name": "Wöhrden", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.16667000", + "longitude": "9.00000000" + }, + { + "id": "30046", + "name": "Weddelbrook", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.90000000", + "longitude": "9.83333000" + }, + { + "id": "30049", + "name": "Weddingstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.23428000", + "longitude": "9.09103000" + }, + { + "id": "30050", + "name": "Wedel", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.58374000", + "longitude": "9.69835000" + }, + { + "id": "30052", + "name": "Wees", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.80621000", + "longitude": "9.51695000" + }, + { + "id": "30160", + "name": "Wendtorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.41212000", + "longitude": "10.28952000" + }, + { + "id": "30163", + "name": "Wentorf bei Hamburg", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.50000000", + "longitude": "10.25000000" + }, + { + "id": "30195", + "name": "Wesselburen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.21217000", + "longitude": "8.92419000" + }, + { + "id": "30197", + "name": "Wesseln", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.20985000", + "longitude": "9.07644000" + }, + { + "id": "30202", + "name": "Westensee", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.27452000", + "longitude": "9.89584000" + }, + { + "id": "30203", + "name": "Wester-Ohrstedt", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.50796000", + "longitude": "9.18574000" + }, + { + "id": "30211", + "name": "Westerhorn", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.85711000", + "longitude": "9.67959000" + }, + { + "id": "30213", + "name": "Westerland", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.90790000", + "longitude": "8.30326000" + }, + { + "id": "30214", + "name": "Westerrönfeld", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.28333000", + "longitude": "9.65000000" + }, + { + "id": "30231", + "name": "Wewelsfleth", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.85000000", + "longitude": "9.40000000" + }, + { + "id": "30248", + "name": "Wiemersdorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.95815000", + "longitude": "9.90297000" + }, + { + "id": "30303", + "name": "Wilster", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.92253000", + "longitude": "9.37465000" + }, + { + "id": "30312", + "name": "Windeby", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.46667000", + "longitude": "9.81667000" + }, + { + "id": "30368", + "name": "Witzhave", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.56667000", + "longitude": "10.33333000" + }, + { + "id": "30371", + "name": "Wohltorf", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.51667000", + "longitude": "10.28333000" + }, + { + "id": "30412", + "name": "Wrist", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.93333000", + "longitude": "9.76667000" + }, + { + "id": "30435", + "name": "Wyk auf Föhr", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "54.69140000", + "longitude": "8.56702000" + }, + { + "id": "30471", + "name": "Zarpen", + "state_id": 3005, + "state_code": "SH", + "country_id": 82, + "country_code": "DE", + "latitude": "53.86667000", + "longitude": "10.51667000" + }, + { + "id": "23596", + "name": "Altenburg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98763000", + "longitude": "12.43684000" + }, + { + "id": "23600", + "name": "Altenfeld", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56667000", + "longitude": "10.96667000" + }, + { + "id": "23602", + "name": "Altengottern", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16395000", + "longitude": "10.58093000" + }, + { + "id": "23625", + "name": "Altkirchen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93333000", + "longitude": "12.35000000" + }, + { + "id": "23664", + "name": "Anrode", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26667000", + "longitude": "10.33333000" + }, + { + "id": "23673", + "name": "Apfelstädt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90157000", + "longitude": "10.88977000" + }, + { + "id": "23674", + "name": "Apolda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02624000", + "longitude": "11.51638000" + }, + { + "id": "23680", + "name": "Arenshausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.37613000", + "longitude": "9.96870000" + }, + { + "id": "23688", + "name": "Arnstadt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.84048000", + "longitude": "10.95198000" + }, + { + "id": "23693", + "name": "Artern", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36431000", + "longitude": "11.29167000" + }, + { + "id": "23737", + "name": "Auleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.42640000", + "longitude": "10.92968000" + }, + { + "id": "23739", + "name": "Auma", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70044000", + "longitude": "11.89958000" + }, + { + "id": "23767", + "name": "Bad Berka", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89982000", + "longitude": "11.28245000" + }, + { + "id": "23773", + "name": "Bad Blankenburg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68189000", + "longitude": "11.27369000" + }, + { + "id": "23796", + "name": "Bad Frankenhausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35609000", + "longitude": "11.09977000" + }, + { + "id": "23821", + "name": "Bad Köstritz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93032000", + "longitude": "12.01005000" + }, + { + "id": "23815", + "name": "Bad Klosterlausnitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91667000", + "longitude": "11.86667000" + }, + { + "id": "23824", + "name": "Bad Langensalza", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10771000", + "longitude": "10.64600000" + }, + { + "id": "23828", + "name": "Bad Liebenstein", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81569000", + "longitude": "10.35123000" + }, + { + "id": "23832", + "name": "Bad Lobenstein", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.45223000", + "longitude": "11.63930000" + }, + { + "id": "23858", + "name": "Bad Salzungen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81342000", + "longitude": "10.23610000" + }, + { + "id": "23873", + "name": "Bad Sulza", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08929000", + "longitude": "11.62474000" + }, + { + "id": "23877", + "name": "Bad Tennstedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15447000", + "longitude": "10.83873000" + }, + { + "id": "23926", + "name": "Barchfeld", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82872000", + "longitude": "11.17955000" + }, + { + "id": "24502", + "name": "Bürgel", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94217000", + "longitude": "11.75635000" + }, + { + "id": "24509", + "name": "Büttstedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25972000", + "longitude": "10.30636000" + }, + { + "id": "23990", + "name": "Behringen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77283000", + "longitude": "11.01403000" + }, + { + "id": "24018", + "name": "Benshausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65000000", + "longitude": "10.60000000" + }, + { + "id": "24029", + "name": "Berga", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75184000", + "longitude": "12.16445000" + }, + { + "id": "24056", + "name": "Berlingerode", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45775000", + "longitude": "10.23840000" + }, + { + "id": "24057", + "name": "Berlstedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06142000", + "longitude": "11.24288000" + }, + { + "id": "24145", + "name": "Bischofferode", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49656000", + "longitude": "10.44396000" + }, + { + "id": "24168", + "name": "Blankenhain", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85993000", + "longitude": "11.34390000" + }, + { + "id": "24177", + "name": "Bleicherode", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44026000", + "longitude": "10.57202000" + }, + { + "id": "24272", + "name": "Brahmenau", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92359000", + "longitude": "12.15886000" + }, + { + "id": "24298", + "name": "Brehme", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.49421000", + "longitude": "10.35908000" + }, + { + "id": "24305", + "name": "Breitenbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68895000", + "longitude": "10.49148000" + }, + { + "id": "24313", + "name": "Breitenworbis", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41267000", + "longitude": "10.42820000" + }, + { + "id": "24317", + "name": "Breitungen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.76355000", + "longitude": "10.32724000" + }, + { + "id": "24347", + "name": "Brotterode", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82412000", + "longitude": "10.44446000" + }, + { + "id": "24382", + "name": "Bucha", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88333000", + "longitude": "11.51667000" + }, + { + "id": "24399", + "name": "Bufleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00000000", + "longitude": "10.73333000" + }, + { + "id": "24450", + "name": "Buttelstedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.07650000", + "longitude": "11.34353000" + }, + { + "id": "24453", + "name": "Buttlar", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.75770000", + "longitude": "9.95277000" + }, + { + "id": "24454", + "name": "Buttstädt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12227000", + "longitude": "11.41721000" + }, + { + "id": "24520", + "name": "Camburg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05524000", + "longitude": "11.70967000" + }, + { + "id": "24542", + "name": "Clingen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23206000", + "longitude": "10.93281000" + }, + { + "id": "24558", + "name": "Crawinkel", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78333000", + "longitude": "10.78333000" + }, + { + "id": "24561", + "name": "Creuzburg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05288000", + "longitude": "10.24750000" + }, + { + "id": "24576", + "name": "Dachwig", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.07770000", + "longitude": "10.85479000" + }, + { + "id": "24590", + "name": "Dankmarshausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92527000", + "longitude": "10.01601000" + }, + { + "id": "24797", + "name": "Döllstädt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08333000", + "longitude": "10.81667000" + }, + { + "id": "24637", + "name": "Dermbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71383000", + "longitude": "10.11839000" + }, + { + "id": "24657", + "name": "Deuna", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35450000", + "longitude": "10.47439000" + }, + { + "id": "24692", + "name": "Dingelstädt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.31529000", + "longitude": "10.31740000" + }, + { + "id": "24699", + "name": "Dippach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91959000", + "longitude": "10.04236000" + }, + { + "id": "24741", + "name": "Dorndorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83472000", + "longitude": "10.08921000" + }, + { + "id": "24820", + "name": "Ebeleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.28283000", + "longitude": "10.72999000" + }, + { + "id": "24862", + "name": "Effelder", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23948000", + "longitude": "10.24778000" + }, + { + "id": "24924", + "name": "Eisenach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98070000", + "longitude": "10.31522000" + }, + { + "id": "24926", + "name": "Eisenberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96860000", + "longitude": "11.90207000" + }, + { + "id": "24930", + "name": "Eisfeld", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42648000", + "longitude": "10.90695000" + }, + { + "id": "24944", + "name": "Elgersburg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70603000", + "longitude": "10.85310000" + }, + { + "id": "24955", + "name": "Ellrich", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.58656000", + "longitude": "10.66326000" + }, + { + "id": "24977", + "name": "Elxleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05000000", + "longitude": "10.95000000" + }, + { + "id": "25038", + "name": "Erfurt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97870000", + "longitude": "11.03283000" + }, + { + "id": "25065", + "name": "Ernstroda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86484000", + "longitude": "10.62056000" + }, + { + "id": "25141", + "name": "Fambach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73333000", + "longitude": "10.36667000" + }, + { + "id": "25323", + "name": "Föritz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.34174000", + "longitude": "11.23180000" + }, + { + "id": "25175", + "name": "Finsterbergen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83464000", + "longitude": "10.58916000" + }, + { + "id": "25215", + "name": "Frankenheim", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.54452000", + "longitude": "10.06828000" + }, + { + "id": "25229", + "name": "Frauenprießnitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01667000", + "longitude": "11.73333000" + }, + { + "id": "25231", + "name": "Frauenwald", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58430000", + "longitude": "10.85841000" + }, + { + "id": "25243", + "name": "Freienbessingen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23333000", + "longitude": "10.76667000" + }, + { + "id": "25284", + "name": "Friedrichroda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85754000", + "longitude": "10.56507000" + }, + { + "id": "25296", + "name": "Friemar", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97702000", + "longitude": "10.78851000" + }, + { + "id": "25359", + "name": "Gangloffsömmern", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18940000", + "longitude": "10.94332000" + }, + { + "id": "25789", + "name": "Gößnitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88902000", + "longitude": "12.43292000" + }, + { + "id": "25783", + "name": "Görsbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46224000", + "longitude": "10.93706000" + }, + { + "id": "25384", + "name": "Gebesee", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11488000", + "longitude": "10.93455000" + }, + { + "id": "25394", + "name": "Gehren", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64852000", + "longitude": "11.00471000" + }, + { + "id": "25397", + "name": "Geisa", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71465000", + "longitude": "9.95075000" + }, + { + "id": "25406", + "name": "Geisleden", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.35000000", + "longitude": "10.20000000" + }, + { + "id": "25409", + "name": "Geismar", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23169000", + "longitude": "10.16548000" + }, + { + "id": "25431", + "name": "Georgenthal", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83205000", + "longitude": "10.66266000" + }, + { + "id": "25434", + "name": "Gera", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88029000", + "longitude": "12.08187000" + }, + { + "id": "25435", + "name": "Geraberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71594000", + "longitude": "10.83737000" + }, + { + "id": "25448", + "name": "Gernrode", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.40000000", + "longitude": "10.40000000" + }, + { + "id": "25464", + "name": "Gerstungen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96667000", + "longitude": "10.06667000" + }, + { + "id": "25469", + "name": "Geschwenda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73178000", + "longitude": "10.82540000" + }, + { + "id": "25511", + "name": "Gleichamberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37068000", + "longitude": "10.59822000" + }, + { + "id": "25554", + "name": "Goßwitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63536000", + "longitude": "11.47737000" + }, + { + "id": "25529", + "name": "Goldbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04566000", + "longitude": "11.43289000" + }, + { + "id": "25549", + "name": "Gotha", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94823000", + "longitude": "10.70193000" + }, + { + "id": "25561", + "name": "Grabsleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93633000", + "longitude": "10.83508000" + }, + { + "id": "25723", + "name": "Gräfenhain", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81667000", + "longitude": "10.70000000" + }, + { + "id": "25725", + "name": "Gräfenroda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74781000", + "longitude": "10.81063000" + }, + { + "id": "25595", + "name": "Greiz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65778000", + "longitude": "12.19918000" + }, + { + "id": "25602", + "name": "Greußen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.22964000", + "longitude": "10.94422000" + }, + { + "id": "25652", + "name": "Großbartloff", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.25000000", + "longitude": "10.21667000" + }, + { + "id": "25655", + "name": "Großbodungen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.47572000", + "longitude": "10.48104000" + }, + { + "id": "25658", + "name": "Großbreitenbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58335000", + "longitude": "11.00955000" + }, + { + "id": "25662", + "name": "Großenehrich", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24838000", + "longitude": "10.83458000" + }, + { + "id": "25663", + "name": "Großengottern", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.14821000", + "longitude": "10.56232000" + }, + { + "id": "25669", + "name": "Großenstein", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90000000", + "longitude": "12.20000000" + }, + { + "id": "25692", + "name": "Großmonra", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.21299000", + "longitude": "11.29578000" + }, + { + "id": "25702", + "name": "Großrudestedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09305000", + "longitude": "11.09977000" + }, + { + "id": "25963", + "name": "Haßleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10878000", + "longitude": "10.99637000" + }, + { + "id": "25835", + "name": "Haina", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98971000", + "longitude": "10.51774000" + }, + { + "id": "26320", + "name": "Hörselgau", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91988000", + "longitude": "10.58444000" + }, + { + "id": "25993", + "name": "Heilbad Heiligenstadt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.37819000", + "longitude": "10.13744000" + }, + { + "id": "26021", + "name": "Heldrungen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30208000", + "longitude": "11.21816000" + }, + { + "id": "26027", + "name": "Hellingen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.25000000", + "longitude": "10.68333000" + }, + { + "id": "26061", + "name": "Herbsleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.11667000", + "longitude": "10.83333000" + }, + { + "id": "26071", + "name": "Heringen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44705000", + "longitude": "10.87612000" + }, + { + "id": "26079", + "name": "Hermsdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89694000", + "longitude": "11.85549000" + }, + { + "id": "26093", + "name": "Herschdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71168000", + "longitude": "11.53736000" + }, + { + "id": "26126", + "name": "Heyerode", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16439000", + "longitude": "10.32009000" + }, + { + "id": "26134", + "name": "Hildburghausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.42553000", + "longitude": "10.73184000" + }, + { + "id": "26209", + "name": "Hohenleuben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71128000", + "longitude": "12.05427000" + }, + { + "id": "26286", + "name": "Hundeshagen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.43333000", + "longitude": "10.28333000" + }, + { + "id": "26348", + "name": "Ichtershausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87602000", + "longitude": "10.97028000" + }, + { + "id": "26354", + "name": "Ifta", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06667000", + "longitude": "10.18333000" + }, + { + "id": "26365", + "name": "Ilfeld", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.57570000", + "longitude": "10.78469000" + }, + { + "id": "26372", + "name": "Ilmenau", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68322000", + "longitude": "10.91858000" + }, + { + "id": "26379", + "name": "Immelborn", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.79229000", + "longitude": "10.27812000" + }, + { + "id": "26390", + "name": "Ingersleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92167000", + "longitude": "10.93646000" + }, + { + "id": "26471", + "name": "Jüchsen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.47993000", + "longitude": "10.50183000" + }, + { + "id": "26435", + "name": "Jena", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92878000", + "longitude": "11.58990000" + }, + { + "id": "26459", + "name": "Judenbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39591000", + "longitude": "11.22099000" + }, + { + "id": "26480", + "name": "Kahla", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80651000", + "longitude": "11.58516000" + }, + { + "id": "26497", + "name": "Kaltennordheim", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.62649000", + "longitude": "10.15915000" + }, + { + "id": "26498", + "name": "Kaltenwestheim", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60991000", + "longitude": "10.11692000" + }, + { + "id": "26504", + "name": "Kamsdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64312000", + "longitude": "11.45401000" + }, + { + "id": "26507", + "name": "Kannawurf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26667000", + "longitude": "11.13333000" + }, + { + "id": "26535", + "name": "Katharinenberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18137000", + "longitude": "10.26084000" + }, + { + "id": "26538", + "name": "Katzhütte", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.55191000", + "longitude": "11.05293000" + }, + { + "id": "26546", + "name": "Kaulsdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61670000", + "longitude": "11.43295000" + }, + { + "id": "26816", + "name": "Kölleda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.18745000", + "longitude": "11.24488000" + }, + { + "id": "26828", + "name": "Königsee", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66143000", + "longitude": "11.09748000" + }, + { + "id": "26840", + "name": "Könitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64979000", + "longitude": "11.48809000" + }, + { + "id": "26844", + "name": "Körner", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.23126000", + "longitude": "10.58878000" + }, + { + "id": "26850", + "name": "Kühndorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60860000", + "longitude": "10.48940000" + }, + { + "id": "26852", + "name": "Küllstedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.27582000", + "longitude": "10.28040000" + }, + { + "id": "26588", + "name": "Kindelbrück", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26171000", + "longitude": "11.08999000" + }, + { + "id": "26618", + "name": "Kirchheim", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.88333000", + "longitude": "11.01667000" + }, + { + "id": "26638", + "name": "Kirchworbis", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41122000", + "longitude": "10.39625000" + }, + { + "id": "26671", + "name": "Kleinfurra", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41556000", + "longitude": "10.76454000" + }, + { + "id": "26681", + "name": "Kleinwenden", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41611000", + "longitude": "10.65902000" + }, + { + "id": "26682", + "name": "Klettbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91667000", + "longitude": "11.15000000" + }, + { + "id": "26733", + "name": "Kraftsdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87574000", + "longitude": "11.92944000" + }, + { + "id": "26740", + "name": "Kranichfeld", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85446000", + "longitude": "11.20057000" + }, + { + "id": "26743", + "name": "Krauthausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01667000", + "longitude": "10.26667000" + }, + { + "id": "26782", + "name": "Krölpa", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67743000", + "longitude": "11.53848000" + }, + { + "id": "26760", + "name": "Kriebitzsch", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.02347000", + "longitude": "12.33318000" + }, + { + "id": "26766", + "name": "Kromsdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00000000", + "longitude": "11.36667000" + }, + { + "id": "26926", + "name": "Langenorla", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.74067000", + "longitude": "11.58023000" + }, + { + "id": "26931", + "name": "Langenwetzendorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67884000", + "longitude": "12.09407000" + }, + { + "id": "26936", + "name": "Langewiesen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.67252000", + "longitude": "10.97102000" + }, + { + "id": "26943", + "name": "Langula", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15001000", + "longitude": "10.41670000" + }, + { + "id": "26962", + "name": "Lauchröden", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99371000", + "longitude": "10.15694000" + }, + { + "id": "26980", + "name": "Lauscha", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.47687000", + "longitude": "11.15962000" + }, + { + "id": "27188", + "name": "Löbichau", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89383000", + "longitude": "12.26366000" + }, + { + "id": "27007", + "name": "Lehesten", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98333000", + "longitude": "11.58333000" + }, + { + "id": "27019", + "name": "Leimbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81667000", + "longitude": "10.20000000" + }, + { + "id": "27023", + "name": "Leinefelde-Worbis", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.38796000", + "longitude": "10.32620000" + }, + { + "id": "27066", + "name": "Leutenberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56354000", + "longitude": "11.45619000" + }, + { + "id": "27074", + "name": "Lichte", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51667000", + "longitude": "11.18333000" + }, + { + "id": "27159", + "name": "Lucka", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.09727000", + "longitude": "12.33336000" + }, + { + "id": "27172", + "name": "Luisenthal", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78333000", + "longitude": "10.73333000" + }, + { + "id": "27229", + "name": "Magdala", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.90698000", + "longitude": "11.44801000" + }, + { + "id": "27292", + "name": "Marksuhl", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91667000", + "longitude": "10.20000000" + }, + { + "id": "27339", + "name": "Masserberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51981000", + "longitude": "10.97087000" + }, + { + "id": "27569", + "name": "Mönchenholzhausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96667000", + "longitude": "11.15000000" + }, + { + "id": "27596", + "name": "Mühlhausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.20896000", + "longitude": "10.45275000" + }, + { + "id": "27611", + "name": "Münchenbernsdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82114000", + "longitude": "11.93226000" + }, + { + "id": "27355", + "name": "Mechterstädt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94201000", + "longitude": "10.52380000" + }, + { + "id": "27383", + "name": "Meiningen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.56787000", + "longitude": "10.41521000" + }, + { + "id": "27394", + "name": "Mellenbach-Glasbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61667000", + "longitude": "11.10000000" + }, + { + "id": "27395", + "name": "Mellingen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.94123000", + "longitude": "11.39640000" + }, + { + "id": "27408", + "name": "Mengersgereuth-Hämmern", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39730000", + "longitude": "11.11649000" + }, + { + "id": "27412", + "name": "Menteroda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30763000", + "longitude": "10.56323000" + }, + { + "id": "27446", + "name": "Meuselbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57152000", + "longitude": "11.09143000" + }, + { + "id": "27447", + "name": "Meuselwitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04315000", + "longitude": "12.29935000" + }, + { + "id": "27464", + "name": "Mihla", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.07617000", + "longitude": "10.33175000" + }, + { + "id": "27470", + "name": "Milz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.37760000", + "longitude": "10.53757000" + }, + { + "id": "27501", + "name": "Mohlsdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66974000", + "longitude": "12.26519000" + }, + { + "id": "27506", + "name": "Molschleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00000000", + "longitude": "10.78333000" + }, + { + "id": "27945", + "name": "Nöbdenitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86667000", + "longitude": "12.28333000" + }, + { + "id": "27712", + "name": "Neudietendorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91250000", + "longitude": "10.91346000" + }, + { + "id": "27739", + "name": "Neuhaus", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68333000", + "longitude": "10.93333000" + }, + { + "id": "27741", + "name": "Neuhaus am Rennweg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51006000", + "longitude": "11.13787000" + }, + { + "id": "27744", + "name": "Neuhaus-Schierschnitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.31237000", + "longitude": "11.24019000" + }, + { + "id": "27798", + "name": "Neustadt am Rennsteig", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58333000", + "longitude": "10.93333000" + }, + { + "id": "27802", + "name": "Neustadt an der Orla", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73640000", + "longitude": "11.74619000" + }, + { + "id": "27839", + "name": "Niederdorla", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16025000", + "longitude": "10.44820000" + }, + { + "id": "27866", + "name": "Niederorschel", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.37222000", + "longitude": "10.42372000" + }, + { + "id": "27869", + "name": "Niederroßla", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.03333000", + "longitude": "11.48333000" + }, + { + "id": "27870", + "name": "Niedersachswerfen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.55062000", + "longitude": "10.76594000" + }, + { + "id": "27886", + "name": "Niederzimmern", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.00476000", + "longitude": "11.19028000" + }, + { + "id": "27906", + "name": "Nobitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.97621000", + "longitude": "12.48605000" + }, + { + "id": "27908", + "name": "Nohra", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.96136000", + "longitude": "11.25971000" + }, + { + "id": "27919", + "name": "Nordhausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.50180000", + "longitude": "10.79570000" + }, + { + "id": "28207", + "name": "Oßmanstedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01815000", + "longitude": "11.42746000" + }, + { + "id": "27974", + "name": "Oberdorla", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16585000", + "longitude": "10.42163000" + }, + { + "id": "27987", + "name": "Oberhof", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70435000", + "longitude": "10.72716000" + }, + { + "id": "27996", + "name": "Obermaßfeld-Grimmenthal", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.52898000", + "longitude": "10.43963000" + }, + { + "id": "27997", + "name": "Obermehler", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26996000", + "longitude": "10.59754000" + }, + { + "id": "28053", + "name": "Oberweißbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.58231000", + "longitude": "11.14382000" + }, + { + "id": "28110", + "name": "Oldisleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30975000", + "longitude": "11.17112000" + }, + { + "id": "28122", + "name": "Oppurg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.71065000", + "longitude": "11.65289000" + }, + { + "id": "28126", + "name": "Orlamünde", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77486000", + "longitude": "11.51929000" + }, + { + "id": "28221", + "name": "Pappenheim", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.79631000", + "longitude": "10.47489000" + }, + { + "id": "28420", + "name": "Pößneck", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69358000", + "longitude": "11.59229000" + }, + { + "id": "28417", + "name": "Pölzig", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.95000000", + "longitude": "12.20000000" + }, + { + "id": "28318", + "name": "Plaue", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77835000", + "longitude": "10.89969000" + }, + { + "id": "28350", + "name": "Ponitz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85762000", + "longitude": "12.42309000" + }, + { + "id": "28394", + "name": "Probstzella", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53333000", + "longitude": "11.38333000" + }, + { + "id": "28472", + "name": "Ranis", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66132000", + "longitude": "11.56912000" + }, + { + "id": "28481", + "name": "Rastenberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.17496000", + "longitude": "11.42029000" + }, + { + "id": "28785", + "name": "Römhild", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39639000", + "longitude": "10.53889000" + }, + { + "id": "28575", + "name": "Remptendorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53333000", + "longitude": "11.65000000" + }, + { + "id": "28652", + "name": "Riethnordhausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.08333000", + "longitude": "11.00000000" + }, + { + "id": "28662", + "name": "Ringleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36667000", + "longitude": "11.21667000" + }, + { + "id": "28745", + "name": "Roßleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29886000", + "longitude": "11.43435000" + }, + { + "id": "28688", + "name": "Rohr", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57644000", + "longitude": "10.49725000" + }, + { + "id": "28698", + "name": "Ronneburg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.86340000", + "longitude": "12.18666000" + }, + { + "id": "28711", + "name": "Rositz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01728000", + "longitude": "12.36354000" + }, + { + "id": "28728", + "name": "Rothenstein", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85000000", + "longitude": "11.60000000" + }, + { + "id": "28732", + "name": "Rottenbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68782000", + "longitude": "11.16674000" + }, + { + "id": "28752", + "name": "Rudolstadt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.72043000", + "longitude": "11.34046000" + }, + { + "id": "28755", + "name": "Ruhla", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89296000", + "longitude": "10.36573000" + }, + { + "id": "28814", + "name": "Saalfeld", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.64826000", + "longitude": "11.36536000" + }, + { + "id": "28815", + "name": "Saara", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.93284000", + "longitude": "12.42096000" + }, + { + "id": "28865", + "name": "Sankt Gangloff", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85522000", + "longitude": "11.89446000" + }, + { + "id": "28873", + "name": "Sankt Kilian", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.52749000", + "longitude": "10.76301000" + }, + { + "id": "29494", + "name": "Sömmerda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.15914000", + "longitude": "11.11524000" + }, + { + "id": "28906", + "name": "Schalkau", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.39536000", + "longitude": "11.00732000" + }, + { + "id": "29130", + "name": "Schönstedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.12000000", + "longitude": "10.57743000" + }, + { + "id": "28934", + "name": "Schernberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.32774000", + "longitude": "10.76928000" + }, + { + "id": "28957", + "name": "Schkölen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.04166000", + "longitude": "11.82141000" + }, + { + "id": "28968", + "name": "Schleid", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.70000000", + "longitude": "9.96667000" + }, + { + "id": "28971", + "name": "Schleiz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.57866000", + "longitude": "11.81024000" + }, + { + "id": "28974", + "name": "Schleusingen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.51076000", + "longitude": "10.75658000" + }, + { + "id": "28982", + "name": "Schloßvippach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.10499000", + "longitude": "11.14512000" + }, + { + "id": "28981", + "name": "Schlotheim", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.24643000", + "longitude": "10.65842000" + }, + { + "id": "28987", + "name": "Schmalkalden", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.72136000", + "longitude": "10.44386000" + }, + { + "id": "28999", + "name": "Schmölln", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89678000", + "longitude": "12.35339000" + }, + { + "id": "28995", + "name": "Schmiedefeld", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53333000", + "longitude": "11.21667000" + }, + { + "id": "28996", + "name": "Schmiedefeld am Rennsteig", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60863000", + "longitude": "10.81284000" + }, + { + "id": "29052", + "name": "Schwallungen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69260000", + "longitude": "10.35706000" + }, + { + "id": "29064", + "name": "Schwarza", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85386000", + "longitude": "11.32433000" + }, + { + "id": "29082", + "name": "Schweina", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82502000", + "longitude": "10.33788000" + }, + { + "id": "29142", + "name": "Seebach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16506000", + "longitude": "10.51428000" + }, + { + "id": "29146", + "name": "Seebergen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92077000", + "longitude": "10.79920000" + }, + { + "id": "29158", + "name": "Seelingstädt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77266000", + "longitude": "12.24361000" + }, + { + "id": "29252", + "name": "Sitzendorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63182000", + "longitude": "11.17215000" + }, + { + "id": "29259", + "name": "Sollstedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.30976000", + "longitude": "10.48810000" + }, + { + "id": "29268", + "name": "Sondershausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36973000", + "longitude": "10.87011000" + }, + { + "id": "29270", + "name": "Sonneberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.35920000", + "longitude": "11.17463000" + }, + { + "id": "29271", + "name": "Sonneborn", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.99270000", + "longitude": "10.59173000" + }, + { + "id": "29322", + "name": "Stadtilm", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77596000", + "longitude": "11.08262000" + }, + { + "id": "29325", + "name": "Stadtlengsfeld", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78329000", + "longitude": "10.12918000" + }, + { + "id": "29330", + "name": "Stadtroda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.85684000", + "longitude": "11.72677000" + }, + { + "id": "29457", + "name": "Stützerbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.63333000", + "longitude": "10.86667000" + }, + { + "id": "29361", + "name": "Steinach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.43129000", + "longitude": "11.15909000" + }, + { + "id": "29363", + "name": "Steinbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83321000", + "longitude": "10.36393000" + }, + { + "id": "29366", + "name": "Steinbach-Hallenberg", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.69624000", + "longitude": "10.56541000" + }, + { + "id": "29378", + "name": "Steinheid", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.46538000", + "longitude": "11.08265000" + }, + { + "id": "29431", + "name": "Straußfurt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.16667000", + "longitude": "10.98333000" + }, + { + "id": "29462", + "name": "Suhl", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.60911000", + "longitude": "10.69401000" + }, + { + "id": "29510", + "name": "Tabarz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.87529000", + "longitude": "10.51607000" + }, + { + "id": "29515", + "name": "Tambach-Dietharz", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.79245000", + "longitude": "10.61568000" + }, + { + "id": "29522", + "name": "Tanna", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.49460000", + "longitude": "11.85725000" + }, + { + "id": "29540", + "name": "Tautenhain", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92470000", + "longitude": "11.91945000" + }, + { + "id": "29547", + "name": "Teichwolframsdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.72093000", + "longitude": "12.24689000" + }, + { + "id": "29551", + "name": "Teistungen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.46667000", + "longitude": "10.26667000" + }, + { + "id": "29574", + "name": "Thal", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.91684000", + "longitude": "10.39209000" + }, + { + "id": "29590", + "name": "Themar", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.50465000", + "longitude": "10.61536000" + }, + { + "id": "29611", + "name": "Tiefenort", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.83946000", + "longitude": "10.16604000" + }, + { + "id": "29656", + "name": "Treffurt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.13691000", + "longitude": "10.23361000" + }, + { + "id": "29667", + "name": "Triebes", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.68489000", + "longitude": "12.02042000" + }, + { + "id": "29673", + "name": "Triptis", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.73567000", + "longitude": "11.87015000" + }, + { + "id": "29685", + "name": "Trusetal", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.78333000", + "longitude": "10.41667000" + }, + { + "id": "29717", + "name": "Uder", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.36243000", + "longitude": "10.07210000" + }, + { + "id": "29753", + "name": "Unterbreizbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.81667000", + "longitude": "9.98333000" + }, + { + "id": "29769", + "name": "Untermaßfeld", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.53333000", + "longitude": "10.41667000" + }, + { + "id": "29782", + "name": "Unterwellenborn", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65000000", + "longitude": "11.43333000" + }, + { + "id": "29789", + "name": "Urbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.29468000", + "longitude": "10.60540000" + }, + { + "id": "29801", + "name": "Uthleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.44912000", + "longitude": "10.83800000" + }, + { + "id": "29807", + "name": "Vacha", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.82790000", + "longitude": "10.02185000" + }, + { + "id": "29891", + "name": "Völkershausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80000000", + "longitude": "10.05000000" + }, + { + "id": "29820", + "name": "Veilsdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.40876000", + "longitude": "10.80947000" + }, + { + "id": "29847", + "name": "Viernau", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66225000", + "longitude": "10.55778000" + }, + { + "id": "29871", + "name": "Voigtstedt", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39169000", + "longitude": "11.30888000" + }, + { + "id": "29971", + "name": "Walldorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.61667000", + "longitude": "10.38333000" + }, + { + "id": "29991", + "name": "Walschleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.06667000", + "longitude": "10.93333000" + }, + { + "id": "29995", + "name": "Waltershausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89827000", + "longitude": "10.55791000" + }, + { + "id": "29997", + "name": "Wandersleben", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.89946000", + "longitude": "10.84959000" + }, + { + "id": "30038", + "name": "Wasungen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.66190000", + "longitude": "10.36947000" + }, + { + "id": "30440", + "name": "Wölfis", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.80825000", + "longitude": "10.77905000" + }, + { + "id": "30457", + "name": "Wünschendorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.79662000", + "longitude": "12.09824000" + }, + { + "id": "30125", + "name": "Weißenborn", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.92393000", + "longitude": "11.87947000" + }, + { + "id": "30127", + "name": "Weißenborn-Lüderode", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.53190000", + "longitude": "10.41889000" + }, + { + "id": "30135", + "name": "Weißensee", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.19989000", + "longitude": "11.06914000" + }, + { + "id": "30068", + "name": "Weida", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.77449000", + "longitude": "12.06028000" + }, + { + "id": "30096", + "name": "Weimar", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.98030000", + "longitude": "11.32903000" + }, + { + "id": "30185", + "name": "Wernshausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.72404000", + "longitude": "10.35086000" + }, + { + "id": "30245", + "name": "Wiehe", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.26586000", + "longitude": "11.41282000" + }, + { + "id": "30319", + "name": "Windischleuba", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.01556000", + "longitude": "12.46914000" + }, + { + "id": "30321", + "name": "Wingerode", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.39032000", + "longitude": "10.23954000" + }, + { + "id": "30335", + "name": "Wintersdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.05320000", + "longitude": "12.35445000" + }, + { + "id": "30338", + "name": "Wipperdorf", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.45560000", + "longitude": "10.64388000" + }, + { + "id": "30356", + "name": "Witterda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.03615000", + "longitude": "10.89028000" + }, + { + "id": "30392", + "name": "Wolkramshausen", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.42185000", + "longitude": "10.73815000" + }, + { + "id": "30404", + "name": "Worbis", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "51.41997000", + "longitude": "10.36330000" + }, + { + "id": "30425", + "name": "Wurzbach", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.46357000", + "longitude": "11.53779000" + }, + { + "id": "30489", + "name": "Zella-Mehlis", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65642000", + "longitude": "10.66046000" + }, + { + "id": "30498", + "name": "Zeulenroda", + "state_id": 3015, + "state_code": "TH", + "country_id": 82, + "country_code": "DE", + "latitude": "50.65278000", + "longitude": "11.98377000" + }, + { + "id": "52151", + "name": "Agogo", + "state_id": 48, + "state_code": "AH", + "country_id": 83, + "country_code": "GH", + "latitude": "6.80004000", + "longitude": "-1.08193000" + }, + { + "id": "52164", + "name": "Bekwai", + "state_id": 48, + "state_code": "AH", + "country_id": 83, + "country_code": "GH", + "latitude": "6.45195000", + "longitude": "-1.57866000" + }, + { + "id": "52172", + "name": "Ejura", + "state_id": 48, + "state_code": "AH", + "country_id": 83, + "country_code": "GH", + "latitude": "7.38558000", + "longitude": "-1.35617000" + }, + { + "id": "52185", + "name": "Konongo", + "state_id": 48, + "state_code": "AH", + "country_id": 83, + "country_code": "GH", + "latitude": "6.61667000", + "longitude": "-1.21667000" + }, + { + "id": "52188", + "name": "Kumasi", + "state_id": 48, + "state_code": "AH", + "country_id": 83, + "country_code": "GH", + "latitude": "6.68848000", + "longitude": "-1.62443000" + }, + { + "id": "52189", + "name": "Mampong", + "state_id": 48, + "state_code": "AH", + "country_id": 83, + "country_code": "GH", + "latitude": "7.06273000", + "longitude": "-1.40010000" + }, + { + "id": "52196", + "name": "Obuase", + "state_id": 48, + "state_code": "AH", + "country_id": 83, + "country_code": "GH", + "latitude": "6.20228000", + "longitude": "-1.66796000" + }, + { + "id": "52206", + "name": "Tafo", + "state_id": 48, + "state_code": "AH", + "country_id": 83, + "country_code": "GH", + "latitude": "6.73156000", + "longitude": "-1.61370000" + }, + { + "id": "52162", + "name": "Bechem", + "state_id": 53, + "state_code": "BA", + "country_id": 83, + "country_code": "GH", + "latitude": "7.09034000", + "longitude": "-2.02498000" + }, + { + "id": "52165", + "name": "Berekum", + "state_id": 53, + "state_code": "BA", + "country_id": 83, + "country_code": "GH", + "latitude": "7.45340000", + "longitude": "-2.58404000" + }, + { + "id": "52170", + "name": "Duayaw-Nkwanta", + "state_id": 53, + "state_code": "BA", + "country_id": 83, + "country_code": "GH", + "latitude": "7.17487000", + "longitude": "-2.09961000" + }, + { + "id": "52178", + "name": "Japekrom", + "state_id": 53, + "state_code": "BA", + "country_id": 83, + "country_code": "GH", + "latitude": "7.57580000", + "longitude": "-2.78516000" + }, + { + "id": "52183", + "name": "Kintampo", + "state_id": 53, + "state_code": "BA", + "country_id": 83, + "country_code": "GH", + "latitude": "8.05627000", + "longitude": "-1.73058000" + }, + { + "id": "52204", + "name": "Sunyani", + "state_id": 53, + "state_code": "BA", + "country_id": 83, + "country_code": "GH", + "latitude": "7.33991000", + "longitude": "-2.32676000" + }, + { + "id": "52210", + "name": "Techiman", + "state_id": 53, + "state_code": "BA", + "country_id": 83, + "country_code": "GH", + "latitude": "7.58417000", + "longitude": "-1.93815000" + }, + { + "id": "52214", + "name": "Wenchi", + "state_id": 53, + "state_code": "BA", + "country_id": 83, + "country_code": "GH", + "latitude": "7.73916000", + "longitude": "-2.10456000" + }, + { + "id": "52157", + "name": "Apam", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.28483000", + "longitude": "-0.73711000" + }, + { + "id": "52168", + "name": "Cape Coast", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.10535000", + "longitude": "-1.24660000" + }, + { + "id": "52171", + "name": "Dunkwa", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.95996000", + "longitude": "-1.77792000" + }, + { + "id": "52173", + "name": "Elmina", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.08470000", + "longitude": "-1.35093000" + }, + { + "id": "52174", + "name": "Foso", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.70119000", + "longitude": "-1.28657000" + }, + { + "id": "52179", + "name": "Kasoa", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.53449000", + "longitude": "-0.41679000" + }, + { + "id": "52192", + "name": "Mumford", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.26176000", + "longitude": "-0.75897000" + }, + { + "id": "52199", + "name": "Saltpond", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.20913000", + "longitude": "-1.06058000" + }, + { + "id": "52205", + "name": "Swedru", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.53711000", + "longitude": "-0.69984000" + }, + { + "id": "52215", + "name": "Winneba", + "state_id": 52, + "state_code": "CP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.35113000", + "longitude": "-0.62313000" + }, + { + "id": "52148", + "name": "Aburi", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.84802000", + "longitude": "-0.17449000" + }, + { + "id": "52152", + "name": "Akim Oda", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.92665000", + "longitude": "-0.98577000" + }, + { + "id": "52153", + "name": "Akim Swedru", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.89380000", + "longitude": "-1.01636000" + }, + { + "id": "52154", + "name": "Akropong", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.97462000", + "longitude": "-0.08542000" + }, + { + "id": "52155", + "name": "Akwatia", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "6.04024000", + "longitude": "-0.80876000" + }, + { + "id": "52158", + "name": "Asamankese", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.86006000", + "longitude": "-0.66350000" + }, + { + "id": "52163", + "name": "Begoro", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "6.38706000", + "longitude": "-0.37738000" + }, + { + "id": "52182", + "name": "Kibi", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "6.16494000", + "longitude": "-0.55376000" + }, + { + "id": "52184", + "name": "Koforidua", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "6.09408000", + "longitude": "-0.25913000" + }, + { + "id": "52191", + "name": "Mpraeso", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "6.59321000", + "longitude": "-0.73462000" + }, + { + "id": "52194", + "name": "Nsawam", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.80893000", + "longitude": "-0.35026000" + }, + { + "id": "52203", + "name": "Suhum", + "state_id": 50, + "state_code": "EP", + "country_id": 83, + "country_code": "GH", + "latitude": "6.04089000", + "longitude": "-0.45004000" + }, + { + "id": "52149", + "name": "Accra", + "state_id": 54, + "state_code": "AA", + "country_id": 83, + "country_code": "GH", + "latitude": "5.55602000", + "longitude": "-0.19690000" + }, + { + "id": "52159", + "name": "Atsiaman", + "state_id": 54, + "state_code": "AA", + "country_id": 83, + "country_code": "GH", + "latitude": "5.69775000", + "longitude": "-0.32824000" + }, + { + "id": "52169", + "name": "Dome", + "state_id": 54, + "state_code": "AA", + "country_id": 83, + "country_code": "GH", + "latitude": "5.65003000", + "longitude": "-0.23610000" + }, + { + "id": "52175", + "name": "Gbawe", + "state_id": 54, + "state_code": "AA", + "country_id": 83, + "country_code": "GH", + "latitude": "5.57692000", + "longitude": "-0.31038000" + }, + { + "id": "52190", + "name": "Medina Estates", + "state_id": 54, + "state_code": "AA", + "country_id": 83, + "country_code": "GH", + "latitude": "5.66580000", + "longitude": "-0.16307000" + }, + { + "id": "52195", + "name": "Nungua", + "state_id": 54, + "state_code": "AA", + "country_id": 83, + "country_code": "GH", + "latitude": "5.60105000", + "longitude": "-0.07713000" + }, + { + "id": "52211", + "name": "Tema", + "state_id": 54, + "state_code": "AA", + "country_id": 83, + "country_code": "GH", + "latitude": "5.66980000", + "longitude": "-0.01657000" + }, + { + "id": "52212", + "name": "Teshi Old Town", + "state_id": 54, + "state_code": "AA", + "country_id": 83, + "country_code": "GH", + "latitude": "5.58365000", + "longitude": "-0.10722000" + }, + { + "id": "52186", + "name": "Kpandae", + "state_id": 51, + "state_code": "NP", + "country_id": 83, + "country_code": "GH", + "latitude": "8.46885000", + "longitude": "-0.01127000" + }, + { + "id": "52198", + "name": "Salaga", + "state_id": 51, + "state_code": "NP", + "country_id": 83, + "country_code": "GH", + "latitude": "8.55083000", + "longitude": "-0.51875000" + }, + { + "id": "52200", + "name": "Savelugu", + "state_id": 51, + "state_code": "NP", + "country_id": 83, + "country_code": "GH", + "latitude": "9.62441000", + "longitude": "-0.82530000" + }, + { + "id": "52208", + "name": "Tamale", + "state_id": 51, + "state_code": "NP", + "country_id": 83, + "country_code": "GH", + "latitude": "9.40079000", + "longitude": "-0.83930000" + }, + { + "id": "52216", + "name": "Yendi", + "state_id": 51, + "state_code": "NP", + "country_id": 83, + "country_code": "GH", + "latitude": "9.44272000", + "longitude": "-0.00991000" + }, + { + "id": "52161", + "name": "Bawku", + "state_id": 55, + "state_code": "UE", + "country_id": 83, + "country_code": "GH", + "latitude": "11.06160000", + "longitude": "-0.24169000" + }, + { + "id": "52167", + "name": "Bolgatanga", + "state_id": 55, + "state_code": "UE", + "country_id": 83, + "country_code": "GH", + "latitude": "10.78556000", + "longitude": "-0.85139000" + }, + { + "id": "52193", + "name": "Navrongo", + "state_id": 55, + "state_code": "UE", + "country_id": 83, + "country_code": "GH", + "latitude": "10.89557000", + "longitude": "-1.09210000" + }, + { + "id": "52213", + "name": "Wa", + "state_id": 57, + "state_code": "UW", + "country_id": 83, + "country_code": "GH", + "latitude": "10.06069000", + "longitude": "-2.50192000" + }, + { + "id": "52150", + "name": "Aflao", + "state_id": 56, + "state_code": "TV", + "country_id": 83, + "country_code": "GH", + "latitude": "6.11982000", + "longitude": "1.19012000" + }, + { + "id": "52156", + "name": "Anloga", + "state_id": 56, + "state_code": "TV", + "country_id": 83, + "country_code": "GH", + "latitude": "5.79473000", + "longitude": "0.89728000" + }, + { + "id": "52176", + "name": "Ho", + "state_id": 56, + "state_code": "TV", + "country_id": 83, + "country_code": "GH", + "latitude": "6.60084000", + "longitude": "0.47130000" + }, + { + "id": "52177", + "name": "Hohoe", + "state_id": 56, + "state_code": "TV", + "country_id": 83, + "country_code": "GH", + "latitude": "7.15181000", + "longitude": "0.47362000" + }, + { + "id": "52180", + "name": "Keta", + "state_id": 56, + "state_code": "TV", + "country_id": 83, + "country_code": "GH", + "latitude": "5.91793000", + "longitude": "0.98789000" + }, + { + "id": "52181", + "name": "Kete Krachi", + "state_id": 56, + "state_code": "TV", + "country_id": 83, + "country_code": "GH", + "latitude": "7.79391000", + "longitude": "-0.04980000" + }, + { + "id": "52187", + "name": "Kpandu", + "state_id": 56, + "state_code": "TV", + "country_id": 83, + "country_code": "GH", + "latitude": "6.99536000", + "longitude": "0.29306000" + }, + { + "id": "52147", + "name": "Aboso", + "state_id": 49, + "state_code": "WP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.36073000", + "longitude": "-1.94856000" + }, + { + "id": "52160", + "name": "Axim", + "state_id": 49, + "state_code": "WP", + "country_id": 83, + "country_code": "GH", + "latitude": "4.86641000", + "longitude": "-2.24181000" + }, + { + "id": "52166", + "name": "Bibiani", + "state_id": 49, + "state_code": "WP", + "country_id": 83, + "country_code": "GH", + "latitude": "6.46346000", + "longitude": "-2.31938000" + }, + { + "id": "52197", + "name": "Prestea", + "state_id": 49, + "state_code": "WP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.43385000", + "longitude": "-2.14295000" + }, + { + "id": "52201", + "name": "Sekondi-Takoradi", + "state_id": 49, + "state_code": "WP", + "country_id": 83, + "country_code": "GH", + "latitude": "4.92678000", + "longitude": "-1.75773000" + }, + { + "id": "52202", + "name": "Shama Junction", + "state_id": 49, + "state_code": "WP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.01806000", + "longitude": "-1.66437000" + }, + { + "id": "52207", + "name": "Takoradi", + "state_id": 49, + "state_code": "WP", + "country_id": 83, + "country_code": "GH", + "latitude": "4.89816000", + "longitude": "-1.76029000" + }, + { + "id": "52209", + "name": "Tarkwa", + "state_id": 49, + "state_code": "WP", + "country_id": 83, + "country_code": "GH", + "latitude": "5.30383000", + "longitude": "-1.98956000" + }, + { + "id": "52399", + "name": "Acharnés", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.08333000", + "longitude": "23.73333000" + }, + { + "id": "52402", + "name": "Aegina", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.74667000", + "longitude": "23.42750000" + }, + { + "id": "52403", + "name": "Afidnés", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.20332000", + "longitude": "23.83982000" + }, + { + "id": "52420", + "name": "Agía Marína", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.82036000", + "longitude": "23.84424000" + }, + { + "id": "52421", + "name": "Agía Paraskeví", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01667000", + "longitude": "23.83333000" + }, + { + "id": "52426", + "name": "Agía Varvára", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.98938000", + "longitude": "23.66011000" + }, + { + "id": "52406", + "name": "Aghios Panteleímon", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.11643000", + "longitude": "23.98182000" + }, + { + "id": "52408", + "name": "Agios Dimítrios Kropiás", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.80612000", + "longitude": "23.85793000" + }, + { + "id": "52407", + "name": "Agios Dimitrios", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.93333000", + "longitude": "23.73333000" + }, + { + "id": "52410", + "name": "Agios Ioannis Rentis", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96491000", + "longitude": "23.66511000" + }, + { + "id": "52433", + "name": "Aiánteio", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.92135000", + "longitude": "23.45877000" + }, + { + "id": "52430", + "name": "Aigáleo", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.98333000", + "longitude": "23.68333000" + }, + { + "id": "52454", + "name": "Ampelákia", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.95055000", + "longitude": "23.52803000" + }, + { + "id": "52478", + "name": "Anávyssos", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.73414000", + "longitude": "23.94389000" + }, + { + "id": "52468", + "name": "Anoixi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.13267000", + "longitude": "23.85874000" + }, + { + "id": "52470", + "name": "Anthoúsa", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.02544000", + "longitude": "23.87617000" + }, + { + "id": "52487", + "name": "Argithéa", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.97506000", + "longitude": "23.88556000" + }, + { + "id": "52490", + "name": "Argyroúpoli", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.90594000", + "longitude": "23.75035000" + }, + { + "id": "52500", + "name": "Artémida", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96727000", + "longitude": "23.99684000" + }, + { + "id": "52508", + "name": "Asprópyrgos", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.06134000", + "longitude": "23.58971000" + }, + { + "id": "52515", + "name": "Athens", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.98376000", + "longitude": "23.72784000" + }, + { + "id": "52518", + "name": "Avlónas", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.25149000", + "longitude": "23.69554000" + }, + { + "id": "53370", + "name": "Ágioi Anárgyroi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.03013000", + "longitude": "23.72379000" + }, + { + "id": "53385", + "name": "Ágios Stéfanos", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.14657000", + "longitude": "23.85608000" + }, + { + "id": "53387", + "name": "Álimos", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.91033000", + "longitude": "23.72361000" + }, + { + "id": "53394", + "name": "Áno Liósia", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.08333000", + "longitude": "23.70000000" + }, + { + "id": "53409", + "name": "Áyioi Apóstoloi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.29169000", + "longitude": "23.91011000" + }, + { + "id": "53421", + "name": "Ílion", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.03333000", + "longitude": "23.70000000" + }, + { + "id": "53424", + "name": "Ýdra", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.34976000", + "longitude": "23.46560000" + }, + { + "id": "52532", + "name": "Chaïdári", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01135000", + "longitude": "23.66597000" + }, + { + "id": "52534", + "name": "Cholargós", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.00000000", + "longitude": "23.80000000" + }, + { + "id": "52549", + "name": "Dhafní", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.95002000", + "longitude": "23.73437000" + }, + { + "id": "52552", + "name": "Dhráfi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.02375000", + "longitude": "23.90788000" + }, + { + "id": "52557", + "name": "Dióni", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.02328000", + "longitude": "23.93286000" + }, + { + "id": "52558", + "name": "Diónysos", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.10458000", + "longitude": "23.87938000" + }, + { + "id": "52561", + "name": "Drapetsóna", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.94988000", + "longitude": "23.62309000" + }, + { + "id": "52563", + "name": "Drosiá", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.11977000", + "longitude": "23.86428000" + }, + { + "id": "52575", + "name": "Ekáli", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.11035000", + "longitude": "23.83505000" + }, + { + "id": "52577", + "name": "Elefsína", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.04135000", + "longitude": "23.54295000" + }, + { + "id": "52581", + "name": "Ellinikó", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.89013000", + "longitude": "23.74406000" + }, + { + "id": "52591", + "name": "Erythrés", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.21741000", + "longitude": "23.32234000" + }, + { + "id": "52604", + "name": "Filothéi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.02524000", + "longitude": "23.78257000" + }, + { + "id": "52613", + "name": "Fylí", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.10235000", + "longitude": "23.66901000" + }, + { + "id": "52624", + "name": "Galatás", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.49618000", + "longitude": "23.44886000" + }, + { + "id": "52627", + "name": "Galátsi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01667000", + "longitude": "23.75000000" + }, + { + "id": "52653", + "name": "Gérakas", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.02277000", + "longitude": "23.85760000" + }, + { + "id": "52638", + "name": "Glyfáda", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.86289000", + "longitude": "23.75802000" + }, + { + "id": "52644", + "name": "Grammatikó", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.20251000", + "longitude": "23.96504000" + }, + { + "id": "52662", + "name": "Ilioúpoli", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.93149000", + "longitude": "23.76779000" + }, + { + "id": "52665", + "name": "Irákleio", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.05282000", + "longitude": "23.76523000" + }, + { + "id": "52674", + "name": "Kaisarianí", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96340000", + "longitude": "23.76523000" + }, + { + "id": "52695", + "name": "Kalývia Thorikoú", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.83894000", + "longitude": "23.92505000" + }, + { + "id": "52681", + "name": "Kallithéa", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.95000000", + "longitude": "23.70000000" + }, + { + "id": "52697", + "name": "Kamaterón", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.05586000", + "longitude": "23.70515000" + }, + { + "id": "52705", + "name": "Kapandríti", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.21579000", + "longitude": "23.87938000" + }, + { + "id": "52714", + "name": "Karellás", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.93445000", + "longitude": "23.86484000" + }, + { + "id": "52802", + "name": "Kálamos", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.28447000", + "longitude": "23.86308000" + }, + { + "id": "52817", + "name": "Káto Soúlion", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.16803000", + "longitude": "24.01628000" + }, + { + "id": "52824", + "name": "Kítsi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.85181000", + "longitude": "23.84068000" + }, + { + "id": "52830", + "name": "Kýthira", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "36.14955000", + "longitude": "22.98979000" + }, + { + "id": "52742", + "name": "Keratéa", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.80585000", + "longitude": "23.97740000" + }, + { + "id": "52741", + "name": "Keratsíni", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96250000", + "longitude": "23.61972000" + }, + { + "id": "52744", + "name": "Khalándrion", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.02369000", + "longitude": "23.80068000" + }, + { + "id": "52743", + "name": "Khalkoútsion", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.33263000", + "longitude": "23.73188000" + }, + { + "id": "52746", + "name": "Kifisiá", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.07438000", + "longitude": "23.81106000" + }, + { + "id": "52749", + "name": "Kinéta", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96843000", + "longitude": "23.21351000" + }, + { + "id": "52750", + "name": "Kipséli", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.00288000", + "longitude": "23.73755000" + }, + { + "id": "52769", + "name": "Koropí", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.89886000", + "longitude": "23.87181000" + }, + { + "id": "52770", + "name": "Korydallós", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.98468000", + "longitude": "23.64711000" + }, + { + "id": "52779", + "name": "Kouvarás", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.82711000", + "longitude": "23.96715000" + }, + { + "id": "52790", + "name": "Kryonéri", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.13712000", + "longitude": "23.83055000" + }, + { + "id": "52799", + "name": "Kypséli", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.76021000", + "longitude": "23.45448000" + }, + { + "id": "52877", + "name": "Lávrio", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.71445000", + "longitude": "24.05647000" + }, + { + "id": "52844", + "name": "Leondárion", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.98700000", + "longitude": "23.85518000" + }, + { + "id": "52856", + "name": "Limín Mesoyaías", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.89108000", + "longitude": "24.00307000" + }, + { + "id": "52871", + "name": "Lykóvrysi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.06933000", + "longitude": "23.78223000" + }, + { + "id": "52885", + "name": "Magoúla", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.07989000", + "longitude": "23.52108000" + }, + { + "id": "52898", + "name": "Marathónas", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.15317000", + "longitude": "23.96278000" + }, + { + "id": "52899", + "name": "Markópoulo", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.88333000", + "longitude": "23.93333000" + }, + { + "id": "52900", + "name": "Markópoulo Oropoú", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.28980000", + "longitude": "23.82475000" + }, + { + "id": "52902", + "name": "Maroúsi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.05000000", + "longitude": "23.80000000" + }, + { + "id": "52955", + "name": "Mándra", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.06667000", + "longitude": "23.50000000" + }, + { + "id": "52956", + "name": "Mégara", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.99471000", + "longitude": "23.34324000" + }, + { + "id": "52911", + "name": "Megalochóri", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.71051000", + "longitude": "23.34659000" + }, + { + "id": "52922", + "name": "Melíssia", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.05000000", + "longitude": "23.83333000" + }, + { + "id": "52931", + "name": "Metamórfosi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.06576000", + "longitude": "23.76356000" + }, + { + "id": "52943", + "name": "Moskháton", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.94789000", + "longitude": "23.67880000" + }, + { + "id": "53004", + "name": "Néa Chalkidóna", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.02710000", + "longitude": "23.73051000" + }, + { + "id": "53005", + "name": "Néa Erythraía", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.09270000", + "longitude": "23.82223000" + }, + { + "id": "53006", + "name": "Néa Filadélfeia", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.03491000", + "longitude": "23.73811000" + }, + { + "id": "53009", + "name": "Néa Ionía", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.03570000", + "longitude": "23.75733000" + }, + { + "id": "53022", + "name": "Néa Mákri", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.08733000", + "longitude": "23.97642000" + }, + { + "id": "53024", + "name": "Néa Palátia", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.31942000", + "longitude": "23.79649000" + }, + { + "id": "53030", + "name": "Néa Péramos", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.00647000", + "longitude": "23.42348000" + }, + { + "id": "53025", + "name": "Néa Pentéli", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.06059000", + "longitude": "23.85926000" + }, + { + "id": "53034", + "name": "Néa Smýrni", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.94504000", + "longitude": "23.71416000" + }, + { + "id": "53045", + "name": "Néo Psychikó", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.00624000", + "longitude": "23.78373000" + }, + { + "id": "53054", + "name": "Níkaia", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96667000", + "longitude": "23.65000000" + }, + { + "id": "52970", + "name": "Neos Voutzás", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.04312000", + "longitude": "23.97749000" + }, + { + "id": "53065", + "name": "Oropós", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.30326000", + "longitude": "23.75549000" + }, + { + "id": "53070", + "name": "Paianía", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.95527000", + "longitude": "23.85443000" + }, + { + "id": "53076", + "name": "Palaiá Fókaia", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.71998000", + "longitude": "23.94792000" + }, + { + "id": "53077", + "name": "Palaió Fáliro", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.92812000", + "longitude": "23.70105000" + }, + { + "id": "53084", + "name": "Pallíni", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.00514000", + "longitude": "23.88302000" + }, + { + "id": "53089", + "name": "Papágou", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.98642000", + "longitude": "23.79347000" + }, + { + "id": "53171", + "name": "Péfki", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.06019000", + "longitude": "23.79264000" + }, + { + "id": "53175", + "name": "Pérama", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96775000", + "longitude": "23.57210000" + }, + { + "id": "53180", + "name": "Póros", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.49944000", + "longitude": "23.45361000" + }, + { + "id": "53107", + "name": "Pentéli", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.05000000", + "longitude": "23.86667000" + }, + { + "id": "53112", + "name": "Peristéri", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01539000", + "longitude": "23.69187000" + }, + { + "id": "53119", + "name": "Petroúpolis", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.04187000", + "longitude": "23.68494000" + }, + { + "id": "53122", + "name": "Pikérmi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.00161000", + "longitude": "23.94075000" + }, + { + "id": "53123", + "name": "Piraeus", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.94203000", + "longitude": "23.64619000" + }, + { + "id": "53132", + "name": "Polydéndri", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.21600000", + "longitude": "23.86806000" + }, + { + "id": "53155", + "name": "Psychikó", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01324000", + "longitude": "23.77223000" + }, + { + "id": "53186", + "name": "Rafína", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01812000", + "longitude": "24.00599000" + }, + { + "id": "53197", + "name": "Rodópoli", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.11669000", + "longitude": "23.87572000" + }, + { + "id": "53204", + "name": "Salamína", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96427000", + "longitude": "23.49649000" + }, + { + "id": "53207", + "name": "Saronída", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.74809000", + "longitude": "23.91059000" + }, + { + "id": "53211", + "name": "Selínia", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.93320000", + "longitude": "23.53147000" + }, + { + "id": "53220", + "name": "Skarmagkás", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01133000", + "longitude": "23.60303000" + }, + { + "id": "53226", + "name": "Skála Oropoú", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.31964000", + "longitude": "23.78763000" + }, + { + "id": "53242", + "name": "Spáta", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96163000", + "longitude": "23.91514000" + }, + { + "id": "53243", + "name": "Spétses", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.26191000", + "longitude": "23.15943000" + }, + { + "id": "53245", + "name": "Stamáta", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.12546000", + "longitude": "23.88038000" + }, + { + "id": "53300", + "name": "Távros", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.97064000", + "longitude": "23.69043000" + }, + { + "id": "53280", + "name": "Thrakomakedónes", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.12964000", + "longitude": "23.75751000" + }, + { + "id": "53308", + "name": "Varnávas", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.22358000", + "longitude": "23.92307000" + }, + { + "id": "53311", + "name": "Varybóbi", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.12723000", + "longitude": "23.78729000" + }, + { + "id": "53316", + "name": "Vathý", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.76420000", + "longitude": "23.48011000" + }, + { + "id": "53340", + "name": "Vári", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.83320000", + "longitude": "23.80311000" + }, + { + "id": "53344", + "name": "Vília", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.16716000", + "longitude": "23.33659000" + }, + { + "id": "53347", + "name": "Výronas", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.96105000", + "longitude": "23.75300000" + }, + { + "id": "53325", + "name": "Vlycháda", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.02734000", + "longitude": "23.43663000" + }, + { + "id": "53331", + "name": "Voúla", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.84221000", + "longitude": "23.77651000" + }, + { + "id": "53329", + "name": "Vouliagméni", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.81423000", + "longitude": "23.77892000" + }, + { + "id": "53334", + "name": "Vraná", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.12497000", + "longitude": "23.95198000" + }, + { + "id": "53335", + "name": "Vrilissia", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.03381000", + "longitude": "23.82962000" + }, + { + "id": "53355", + "name": "Ymittos", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.95342000", + "longitude": "23.74897000" + }, + { + "id": "53360", + "name": "Zefyri", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "38.06647000", + "longitude": "23.71701000" + }, + { + "id": "53363", + "name": "Zográfos", + "state_id": 2122, + "state_code": "I", + "country_id": 85, + "country_code": "GR", + "latitude": "37.97574000", + "longitude": "23.76911000" + }, + { + "id": "52404", + "name": "Afrátion", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.45212000", + "longitude": "23.68775000" + }, + { + "id": "52423", + "name": "Agía Triáda", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.35505000", + "longitude": "22.90881000" + }, + { + "id": "52429", + "name": "Aidipsós", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.87924000", + "longitude": "23.04691000" + }, + { + "id": "52434", + "name": "Akraifnía", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.45663000", + "longitude": "23.22093000" + }, + { + "id": "52446", + "name": "Alíartos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.36667000", + "longitude": "23.10000000" + }, + { + "id": "52444", + "name": "Alivéri", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.41667000", + "longitude": "24.03333000" + }, + { + "id": "52457", + "name": "Amárynthos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.39300000", + "longitude": "23.88492000" + }, + { + "id": "52450", + "name": "Amfíkleia", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.63912000", + "longitude": "22.59171000" + }, + { + "id": "52471", + "name": "Anthíli", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.85000000", + "longitude": "22.47906000" + }, + { + "id": "52472", + "name": "Antikyra", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.38333000", + "longitude": "22.63333000" + }, + { + "id": "52501", + "name": "Aráchova", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.47958000", + "longitude": "22.58350000" + }, + { + "id": "52504", + "name": "Asopía", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.29882000", + "longitude": "23.50189000" + }, + { + "id": "52514", + "name": "Atalánti", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.65111000", + "longitude": "22.99917000" + }, + { + "id": "53376", + "name": "Ágios Geórgios", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.39343000", + "longitude": "22.93189000" + }, + { + "id": "53389", + "name": "Ámfissa", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.52813000", + "longitude": "22.37713000" + }, + { + "id": "53401", + "name": "Árma", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.35121000", + "longitude": "23.48599000" + }, + { + "id": "53412", + "name": "Áyios Konstandínos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.75612000", + "longitude": "22.85757000" + }, + { + "id": "53413", + "name": "Áyios Nikólaos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.42051000", + "longitude": "23.64772000" + }, + { + "id": "53414", + "name": "Áyios Thomás", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.27717000", + "longitude": "23.58906000" + }, + { + "id": "52524", + "name": "Chairóneia", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.49551000", + "longitude": "22.84424000" + }, + { + "id": "52528", + "name": "Chalkída", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.46354000", + "longitude": "23.60284000" + }, + { + "id": "52568", + "name": "Dílesi", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.33762000", + "longitude": "23.67077000" + }, + { + "id": "52570", + "name": "Dístomo", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.42892000", + "longitude": "22.66728000" + }, + { + "id": "52547", + "name": "Delphi", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.47942000", + "longitude": "22.49357000" + }, + { + "id": "52551", + "name": "Dhrosiá", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.48413000", + "longitude": "23.54774000" + }, + { + "id": "52559", + "name": "Domokós", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "39.12722000", + "longitude": "22.30028000" + }, + { + "id": "52560", + "name": "Domvraína", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.25300000", + "longitude": "22.98211000" + }, + { + "id": "52583", + "name": "Eláteia", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.62770000", + "longitude": "22.76492000" + }, + { + "id": "52593", + "name": "Erétria", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.40097000", + "longitude": "23.80220000" + }, + { + "id": "52615", + "name": "Fáros", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.39959000", + "longitude": "23.62275000" + }, + { + "id": "52619", + "name": "Fílla", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.44177000", + "longitude": "23.68306000" + }, + { + "id": "52625", + "name": "Galaxídhion", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.38067000", + "longitude": "22.38001000" + }, + { + "id": "52668", + "name": "Istiaía", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.95520000", + "longitude": "23.15210000" + }, + { + "id": "52671", + "name": "Itéa", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.43201000", + "longitude": "22.42443000" + }, + { + "id": "52673", + "name": "Kainoúryion", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.79283000", + "longitude": "22.72470000" + }, + { + "id": "52700", + "name": "Kaména Voúrla", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.77844000", + "longitude": "22.78573000" + }, + { + "id": "52706", + "name": "Kaparéllion", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.23697000", + "longitude": "23.21411000" + }, + { + "id": "52716", + "name": "Karpenísi", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.91218000", + "longitude": "21.79836000" + }, + { + "id": "52727", + "name": "Kastélla", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.57048000", + "longitude": "23.63131000" + }, + { + "id": "52804", + "name": "Kárystos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01333000", + "longitude": "24.41611000" + }, + { + "id": "52818", + "name": "Káto Tithoréa", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.60751000", + "longitude": "22.71348000" + }, + { + "id": "52821", + "name": "Kírra", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.42944000", + "longitude": "22.44443000" + }, + { + "id": "52827", + "name": "Kými", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.63477000", + "longitude": "24.10287000" + }, + { + "id": "52740", + "name": "Kerasochóri", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "39.00556000", + "longitude": "21.63778000" + }, + { + "id": "52800", + "name": "Kyriáki", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.35365000", + "longitude": "22.78841000" + }, + { + "id": "52837", + "name": "Lamía", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.90000000", + "longitude": "22.43333000" + }, + { + "id": "52880", + "name": "Límni", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.76667000", + "longitude": "23.31667000" + }, + { + "id": "52849", + "name": "Lianokládhion", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.91655000", + "longitude": "22.30336000" + }, + { + "id": "52851", + "name": "Lidoríki", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.52389000", + "longitude": "22.19972000" + }, + { + "id": "52860", + "name": "Livadeiá", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.43616000", + "longitude": "22.87665000" + }, + { + "id": "52862", + "name": "Livanátes", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.71100000", + "longitude": "23.05030000" + }, + { + "id": "52864", + "name": "Loukísia", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.47946000", + "longitude": "23.44796000" + }, + { + "id": "52865", + "name": "Loutrá Aidhipsoú", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.85695000", + "longitude": "23.04739000" + }, + { + "id": "52883", + "name": "Magoúla", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.41178000", + "longitude": "23.82128000" + }, + { + "id": "52887", + "name": "Makrakómi", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.94150000", + "longitude": "22.11535000" + }, + { + "id": "52892", + "name": "Malakónta", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.40000000", + "longitude": "23.76667000" + }, + { + "id": "52893", + "name": "Malesína", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.62225000", + "longitude": "23.23370000" + }, + { + "id": "52897", + "name": "Mantoúdi", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.79808000", + "longitude": "23.47967000" + }, + { + "id": "52901", + "name": "Marmárion", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.04839000", + "longitude": "24.32039000" + }, + { + "id": "52903", + "name": "Martínon", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.56817000", + "longitude": "23.21458000" + }, + { + "id": "52958", + "name": "Mólos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.80998000", + "longitude": "22.64544000" + }, + { + "id": "52952", + "name": "Mytikas", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.44373000", + "longitude": "23.65365000" + }, + { + "id": "53003", + "name": "Néa Artáki", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.52027000", + "longitude": "23.63296000" + }, + { + "id": "53016", + "name": "Néa Lámpsakos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.43729000", + "longitude": "23.62824000" + }, + { + "id": "53035", + "name": "Néa Stíra", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.17935000", + "longitude": "24.20842000" + }, + { + "id": "53049", + "name": "Néon Monastírion", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "39.23988000", + "longitude": "22.27465000" + }, + { + "id": "52982", + "name": "Nomós Evrytanías", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "39.00000000", + "longitude": "21.66667000" + }, + { + "id": "52983", + "name": "Nomós Fokídos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.50000000", + "longitude": "22.25000000" + }, + { + "id": "53057", + "name": "Oinófyta", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.31163000", + "longitude": "23.64000000" + }, + { + "id": "53058", + "name": "Omvriakí", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "39.10118000", + "longitude": "22.27106000" + }, + { + "id": "53060", + "name": "Orchomenós", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.49290000", + "longitude": "22.97962000" + }, + { + "id": "53061", + "name": "Oreoí", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.95034000", + "longitude": "23.09191000" + }, + { + "id": "53068", + "name": "Oxílithos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.57988000", + "longitude": "24.11184000" + }, + { + "id": "53092", + "name": "Paralía Avlídhos", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.38002000", + "longitude": "23.62842000" + }, + { + "id": "53103", + "name": "Pelasgía", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.94813000", + "longitude": "22.83980000" + }, + { + "id": "53129", + "name": "Pláka Dílesi", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.34950000", + "longitude": "23.65056000" + }, + { + "id": "53131", + "name": "Politiká", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.59673000", + "longitude": "23.54457000" + }, + { + "id": "53144", + "name": "Prokópi", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.73402000", + "longitude": "23.49060000" + }, + { + "id": "53154", + "name": "Psachná", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.57852000", + "longitude": "23.64326000" + }, + { + "id": "53193", + "name": "Rodhítsa", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.88829000", + "longitude": "22.46410000" + }, + { + "id": "53198", + "name": "Roviés", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.80971000", + "longitude": "23.23073000" + }, + { + "id": "53209", + "name": "Schimatári", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.35000000", + "longitude": "23.58333000" + }, + { + "id": "53229", + "name": "Skýros", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.90417000", + "longitude": "24.56306000" + }, + { + "id": "53239", + "name": "Spercheiáda", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.90656000", + "longitude": "22.12792000" + }, + { + "id": "53249", + "name": "Stavrós", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.89641000", + "longitude": "22.37082000" + }, + { + "id": "53252", + "name": "Steíri", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.40831000", + "longitude": "22.71162000" + }, + { + "id": "53255", + "name": "Stylída", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.91667000", + "longitude": "22.61667000" + }, + { + "id": "53285", + "name": "Thívai", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.32500000", + "longitude": "23.31889000" + }, + { + "id": "53276", + "name": "Thespiés", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.30300000", + "longitude": "23.15016000" + }, + { + "id": "53314", + "name": "Vasilikón", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.42586000", + "longitude": "23.67189000" + }, + { + "id": "53315", + "name": "Vathí", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.40490000", + "longitude": "23.60332000" + }, + { + "id": "53338", + "name": "Vágia", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.31748000", + "longitude": "23.17752000" + }, + { + "id": "53354", + "name": "Yimnón", + "state_id": 2128, + "state_code": "H", + "country_id": 85, + "country_code": "GR", + "latitude": "38.44048000", + "longitude": "23.88400000" + }, + { + "id": "52422", + "name": "Agía Paraskeví", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.48150000", + "longitude": "23.04863000" + }, + { + "id": "52425", + "name": "Agía Triáda", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.50003000", + "longitude": "22.87351000" + }, + { + "id": "52411", + "name": "Agkathiá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.55535000", + "longitude": "22.47083000" + }, + { + "id": "52431", + "name": "Aigínio", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.50139000", + "longitude": "22.54000000" + }, + { + "id": "52436", + "name": "Akrolímni", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.68020000", + "longitude": "22.26450000" + }, + { + "id": "52441", + "name": "Alexándreia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.62667000", + "longitude": "22.44417000" + }, + { + "id": "52443", + "name": "Alistráti", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.06443000", + "longitude": "23.95751000" + }, + { + "id": "52455", + "name": "Ampelókipoi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.65304000", + "longitude": "22.92624000" + }, + { + "id": "52453", + "name": "Ampeleíes", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.83417000", + "longitude": "22.38767000" + }, + { + "id": "52461", + "name": "Anatolikó", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.66152000", + "longitude": "22.71190000" + }, + { + "id": "52465", + "name": "Angelochóri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.67862000", + "longitude": "22.19933000" + }, + { + "id": "52481", + "name": "Aravissós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.84352000", + "longitude": "22.30178000" + }, + { + "id": "52492", + "name": "Aridaía", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.97306000", + "longitude": "22.05639000" + }, + { + "id": "52496", + "name": "Arnaía", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.48652000", + "longitude": "23.59537000" + }, + { + "id": "52498", + "name": "Arsénio", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.71412000", + "longitude": "22.15923000" + }, + { + "id": "52503", + "name": "Askós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.75105000", + "longitude": "23.38721000" + }, + { + "id": "52506", + "name": "Asproválta", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.73049000", + "longitude": "23.71180000" + }, + { + "id": "52511", + "name": "Asvestochóri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.64125000", + "longitude": "23.02528000" + }, + { + "id": "52520", + "name": "Axós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.80223000", + "longitude": "22.36158000" + }, + { + "id": "52519", + "name": "Axioúpoli", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.98582000", + "longitude": "22.54165000" + }, + { + "id": "53367", + "name": "Ádendro", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.67131000", + "longitude": "22.60466000" + }, + { + "id": "53368", + "name": "Áfytos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.09915000", + "longitude": "23.43670000" + }, + { + "id": "53369", + "name": "Ágio Pnévma", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.10142000", + "longitude": "23.67992000" + }, + { + "id": "53374", + "name": "Ágios Athanásios", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.71598000", + "longitude": "22.72841000" + }, + { + "id": "53377", + "name": "Ágios Geórgios", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.60215000", + "longitude": "22.19430000" + }, + { + "id": "53378", + "name": "Ágios Loukás", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.71799000", + "longitude": "22.29545000" + }, + { + "id": "53381", + "name": "Ágios Nikólaos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.24926000", + "longitude": "23.69616000" + }, + { + "id": "53382", + "name": "Ágios Pávlos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.64075000", + "longitude": "22.96039000" + }, + { + "id": "53383", + "name": "Ágios Pétros", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.86725000", + "longitude": "22.58298000" + }, + { + "id": "53384", + "name": "Ágios Spyrídon", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.20778000", + "longitude": "22.44311000" + }, + { + "id": "53386", + "name": "Ágios Vasíleios", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.66424000", + "longitude": "23.11373000" + }, + { + "id": "53397", + "name": "Ápsalos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.89240000", + "longitude": "22.05709000" + }, + { + "id": "53402", + "name": "Árnissa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.79555000", + "longitude": "21.83577000" + }, + { + "id": "53404", + "name": "Ássiros", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.82143000", + "longitude": "23.03008000" + }, + { + "id": "53407", + "name": "Áthyra", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.82615000", + "longitude": "22.59279000" + }, + { + "id": "53423", + "name": "Ólynthos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.29147000", + "longitude": "23.34205000" + }, + { + "id": "53416", + "name": "Édessa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.80260000", + "longitude": "22.04751000" + }, + { + "id": "53419", + "name": "Évosmos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.67056000", + "longitude": "22.90833000" + }, + { + "id": "52529", + "name": "Chalástra", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.62643000", + "longitude": "22.73291000" + }, + { + "id": "52526", + "name": "Chalkidóna", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.73184000", + "longitude": "22.59992000" + }, + { + "id": "52531", + "name": "Charopó", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.26031000", + "longitude": "23.37279000" + }, + { + "id": "52536", + "name": "Chortiátis", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.60954000", + "longitude": "23.10014000" + }, + { + "id": "52540", + "name": "Chrysó", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.05806000", + "longitude": "23.65108000" + }, + { + "id": "52537", + "name": "Chrysochórafa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.18097000", + "longitude": "23.23551000" + }, + { + "id": "52569", + "name": "Díon", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.17169000", + "longitude": "22.48463000" + }, + { + "id": "52553", + "name": "Diavatá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.68744000", + "longitude": "22.85799000" + }, + { + "id": "52554", + "name": "Diavatós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.54606000", + "longitude": "22.26686000" + }, + { + "id": "52562", + "name": "Dravískos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.92393000", + "longitude": "23.87119000" + }, + { + "id": "52564", + "name": "Drymós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.78099000", + "longitude": "22.95889000" + }, + { + "id": "52572", + "name": "Efkarpía", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.68797000", + "longitude": "22.95348000" + }, + { + "id": "52573", + "name": "Eirinoúpoli", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.67806000", + "longitude": "22.19278000" + }, + { + "id": "52586", + "name": "Epanomí", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.42614000", + "longitude": "22.92782000" + }, + { + "id": "52587", + "name": "Episkopí", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.68748000", + "longitude": "22.13640000" + }, + { + "id": "52594", + "name": "Evropós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.89703000", + "longitude": "22.55277000" + }, + { + "id": "52597", + "name": "Exaplátanos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.97643000", + "longitude": "22.12958000" + }, + { + "id": "52618", + "name": "Fíliro", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.69151000", + "longitude": "23.00460000" + }, + { + "id": "52621", + "name": "Galatádes", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.75590000", + "longitude": "22.28062000" + }, + { + "id": "52626", + "name": "Galátista", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.46820000", + "longitude": "23.28015000" + }, + { + "id": "52649", + "name": "Gázoros", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.02557000", + "longitude": "23.77574000" + }, + { + "id": "52651", + "name": "Géfyra", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.73253000", + "longitude": "22.69359000" + }, + { + "id": "52634", + "name": "Gerakaroú", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.62666000", + "longitude": "23.21566000" + }, + { + "id": "52637", + "name": "Giannitsá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.79194000", + "longitude": "22.40750000" + }, + { + "id": "52639", + "name": "Gouménissa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.94604000", + "longitude": "22.44974000" + }, + { + "id": "52658", + "name": "Ierissós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.39748000", + "longitude": "23.87505000" + }, + { + "id": "52664", + "name": "Irákleia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.18217000", + "longitude": "23.28243000" + }, + { + "id": "52675", + "name": "Kalamariá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.58250000", + "longitude": "22.95028000" + }, + { + "id": "52687", + "name": "Kalá Déndra", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.09941000", + "longitude": "23.42396000" + }, + { + "id": "52689", + "name": "Kalí", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.81931000", + "longitude": "22.17761000" + }, + { + "id": "52693", + "name": "Kalýves Polygýrou", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.28659000", + "longitude": "23.39033000" + }, + { + "id": "52694", + "name": "Kalývia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.75508000", + "longitude": "22.21753000" + }, + { + "id": "52682", + "name": "Kallithéa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.07374000", + "longitude": "23.44637000" + }, + { + "id": "52685", + "name": "Kalochóri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.64189000", + "longitude": "22.85734000" + }, + { + "id": "52698", + "name": "Kampánis", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.88951000", + "longitude": "22.91682000" + }, + { + "id": "52721", + "name": "Karítsa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.18745000", + "longitude": "22.48171000" + }, + { + "id": "52711", + "name": "Kardiá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.46909000", + "longitude": "22.99378000" + }, + { + "id": "52719", + "name": "Karyótissa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.76915000", + "longitude": "22.31331000" + }, + { + "id": "52722", + "name": "Kassándreia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.04835000", + "longitude": "23.41362000" + }, + { + "id": "52730", + "name": "Kateríni", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.26956000", + "longitude": "22.50608000" + }, + { + "id": "52734", + "name": "Kavallári", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.71539000", + "longitude": "23.04588000" + }, + { + "id": "52810", + "name": "Káto Kamíla", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.02119000", + "longitude": "23.48336000" + }, + { + "id": "52812", + "name": "Káto Lipochóri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.75754000", + "longitude": "22.17962000" + }, + { + "id": "52814", + "name": "Káto Miliá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.25403000", + "longitude": "22.34342000" + }, + { + "id": "52816", + "name": "Káto Scholári", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.42906000", + "longitude": "23.02978000" + }, + { + "id": "52823", + "name": "Kítros", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.37399000", + "longitude": "22.57862000" + }, + { + "id": "52828", + "name": "Kýmina", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.61354000", + "longitude": "22.69278000" + }, + { + "id": "52747", + "name": "Kilkís", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.99302000", + "longitude": "22.87433000" + }, + { + "id": "52752", + "name": "Kleidí", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.56632000", + "longitude": "22.59033000" + }, + { + "id": "52782", + "name": "Koímisi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.21282000", + "longitude": "23.30035000" + }, + { + "id": "52758", + "name": "Kolchikón", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.75662000", + "longitude": "23.13377000" + }, + { + "id": "52759", + "name": "Kolindrós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.47888000", + "longitude": "22.48319000" + }, + { + "id": "52764", + "name": "Kontariótissa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.22754000", + "longitude": "22.46100000" + }, + { + "id": "52767", + "name": "Kopanós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.63382000", + "longitude": "22.12893000" + }, + { + "id": "52768", + "name": "Korinós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.31659000", + "longitude": "22.58817000" + }, + { + "id": "52771", + "name": "Koryfí", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.60286000", + "longitude": "22.50681000" + }, + { + "id": "52775", + "name": "Koufália", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.77778000", + "longitude": "22.57194000" + }, + { + "id": "52776", + "name": "Kouloúra", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.54652000", + "longitude": "22.31795000" + }, + { + "id": "52794", + "name": "Krýa Vrýsi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.68738000", + "longitude": "22.30516000" + }, + { + "id": "52786", + "name": "Krithiá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.84184000", + "longitude": "22.98292000" + }, + { + "id": "52832", + "name": "Lagkadás", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.75000000", + "longitude": "23.06667000" + }, + { + "id": "52833", + "name": "Lagyná", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.72351000", + "longitude": "23.00420000" + }, + { + "id": "52872", + "name": "Lákkoma", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.39139000", + "longitude": "23.05578000" + }, + { + "id": "52881", + "name": "Lófos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.24395000", + "longitude": "22.38033000" + }, + { + "id": "52843", + "name": "Lefkónas", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.10029000", + "longitude": "23.49658000" + }, + { + "id": "52847", + "name": "Leptokaryá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.06032000", + "longitude": "22.56120000" + }, + { + "id": "52850", + "name": "Lianovérgi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.63526000", + "longitude": "22.50820000" + }, + { + "id": "52858", + "name": "Lití", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.74533000", + "longitude": "22.97982000" + }, + { + "id": "52859", + "name": "Litóchoro", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.10056000", + "longitude": "22.49778000" + }, + { + "id": "52868", + "name": "Loutráki", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.97116000", + "longitude": "21.94659000" + }, + { + "id": "52869", + "name": "Loutrós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.58873000", + "longitude": "22.39976000" + }, + { + "id": "52891", + "name": "Makrýgialos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.41551000", + "longitude": "22.60392000" + }, + { + "id": "52888", + "name": "Makrochóri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.55125000", + "longitude": "22.24955000" + }, + { + "id": "52904", + "name": "Marína", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.69200000", + "longitude": "22.10099000" + }, + { + "id": "52908", + "name": "Mavrothálassa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.89427000", + "longitude": "23.75048000" + }, + { + "id": "52909", + "name": "Mavrovoúni", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.78243000", + "longitude": "22.15629000" + }, + { + "id": "52954", + "name": "Mándalo", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.85677000", + "longitude": "22.21264000" + }, + { + "id": "52915", + "name": "Megáli Panagía", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.44505000", + "longitude": "23.67999000" + }, + { + "id": "52920", + "name": "Melíki", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.51685000", + "longitude": "22.39599000" + }, + { + "id": "52921", + "name": "Melíssi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.77406000", + "longitude": "22.35304000" + }, + { + "id": "52919", + "name": "Melissochóri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.76796000", + "longitude": "22.92858000" + }, + { + "id": "52924", + "name": "Meneméni", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.65829000", + "longitude": "22.89712000" + }, + { + "id": "52927", + "name": "Mesiméri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.41344000", + "longitude": "23.00750000" + }, + { + "id": "52934", + "name": "Mikró Monastíri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.70430000", + "longitude": "22.54112000" + }, + { + "id": "52937", + "name": "Mitroúsi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.07041000", + "longitude": "23.46064000" + }, + { + "id": "52996", + "name": "Náousa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.62944000", + "longitude": "22.06806000" + }, + { + "id": "53002", + "name": "Néa Apollonía", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.62558000", + "longitude": "23.44074000" + }, + { + "id": "53042", + "name": "Néa Éfesos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.22923000", + "longitude": "22.49811000" + }, + { + "id": "53008", + "name": "Néa Fókaia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.13333000", + "longitude": "23.39754000" + }, + { + "id": "53007", + "name": "Néa Flogitá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.26108000", + "longitude": "23.22107000" + }, + { + "id": "53012", + "name": "Néa Kallikráteia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.31312000", + "longitude": "23.06343000" + }, + { + "id": "53017", + "name": "Néa Magnisía", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.68785000", + "longitude": "22.84582000" + }, + { + "id": "53023", + "name": "Néa Málgara", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.60985000", + "longitude": "22.68196000" + }, + { + "id": "53019", + "name": "Néa Mesimvría", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.75158000", + "longitude": "22.76904000" + }, + { + "id": "53020", + "name": "Néa Michanióna", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.46371000", + "longitude": "22.86170000" + }, + { + "id": "53021", + "name": "Néa Moudhaniá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.24390000", + "longitude": "23.28484000" + }, + { + "id": "53029", + "name": "Néa Pélla", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.76516000", + "longitude": "22.49173000" + }, + { + "id": "53026", + "name": "Néa Plágia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.26537000", + "longitude": "23.20376000" + }, + { + "id": "53028", + "name": "Néa Potídhaia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.19428000", + "longitude": "23.32874000" + }, + { + "id": "53027", + "name": "Néa Poteídaia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.19409000", + "longitude": "23.32832000" + }, + { + "id": "53032", + "name": "Néa Róda", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.38119000", + "longitude": "23.92374000" + }, + { + "id": "53036", + "name": "Néa Sánta", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.84084000", + "longitude": "22.92163000" + }, + { + "id": "53037", + "name": "Néa Tríglia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.30575000", + "longitude": "23.20660000" + }, + { + "id": "53039", + "name": "Néa Vrasná", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.70592000", + "longitude": "23.69850000" + }, + { + "id": "53041", + "name": "Néa Zíchni", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.03204000", + "longitude": "23.82870000" + }, + { + "id": "53043", + "name": "Néo Agionéri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.80826000", + "longitude": "22.70733000" + }, + { + "id": "53044", + "name": "Néo Petrítsi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.27459000", + "longitude": "23.29381000" + }, + { + "id": "53046", + "name": "Néo Rýsi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.49605000", + "longitude": "22.98794000" + }, + { + "id": "53047", + "name": "Néo Soúli", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.09397000", + "longitude": "23.64376000" + }, + { + "id": "53048", + "name": "Néoi Epivátes", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.49863000", + "longitude": "22.91192000" + }, + { + "id": "53050", + "name": "Néos Marmarás", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.09610000", + "longitude": "23.78323000" + }, + { + "id": "53051", + "name": "Néos Mylótopos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.81872000", + "longitude": "22.35489000" + }, + { + "id": "53053", + "name": "Néos Skopós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.02390000", + "longitude": "23.60927000" + }, + { + "id": "53055", + "name": "Níkiti", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.22204000", + "longitude": "23.66837000" + }, + { + "id": "52961", + "name": "Neapoli", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.65320000", + "longitude": "22.94156000" + }, + { + "id": "52966", + "name": "Neochóri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.05231000", + "longitude": "23.57997000" + }, + { + "id": "52963", + "name": "Neochoroúda", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.73817000", + "longitude": "22.87557000" + }, + { + "id": "52975", + "name": "Nigríta", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.90528000", + "longitude": "23.49944000" + }, + { + "id": "52977", + "name": "Nisí", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.63610000", + "longitude": "22.38884000" + }, + { + "id": "52981", + "name": "Nomós Chalkidikís", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.41667000", + "longitude": "23.50000000" + }, + { + "id": "52990", + "name": "Nomós Péllis", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.83333000", + "longitude": "22.25000000" + }, + { + "id": "52992", + "name": "Nomós Thessaloníkis", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.66667000", + "longitude": "23.00000000" + }, + { + "id": "53059", + "name": "Oraiókastro", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.73083000", + "longitude": "22.91722000" + }, + { + "id": "53063", + "name": "Ormýlia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.29451000", + "longitude": "23.54332000" + }, + { + "id": "53066", + "name": "Ouranoupolis", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.33333000", + "longitude": "23.98333000" + }, + { + "id": "53082", + "name": "Palaífyto", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.78283000", + "longitude": "22.27388000" + }, + { + "id": "53072", + "name": "Palaiochóri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.49186000", + "longitude": "23.64928000" + }, + { + "id": "53073", + "name": "Palaiokómi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.87068000", + "longitude": "23.90121000" + }, + { + "id": "53086", + "name": "Panórama", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.58779000", + "longitude": "23.03150000" + }, + { + "id": "53091", + "name": "Paralía", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.26710000", + "longitude": "22.59615000" + }, + { + "id": "53100", + "name": "Patrída", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.56071000", + "longitude": "22.18545000" + }, + { + "id": "53170", + "name": "Péfka", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.65806000", + "longitude": "22.99378000" + }, + { + "id": "53172", + "name": "Pélla", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.76169000", + "longitude": "22.52637000" + }, + { + "id": "53102", + "name": "Pefkochóri", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "39.98784000", + "longitude": "23.61219000" + }, + { + "id": "53105", + "name": "Pentaplátano", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.81902000", + "longitude": "22.41903000" + }, + { + "id": "53106", + "name": "Pentálofos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.74296000", + "longitude": "22.85256000" + }, + { + "id": "53110", + "name": "Peraía", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.49874000", + "longitude": "22.92617000" + }, + { + "id": "53116", + "name": "Perístasi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.27443000", + "longitude": "22.54164000" + }, + { + "id": "53111", + "name": "Peristerá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.54881000", + "longitude": "23.16540000" + }, + { + "id": "53125", + "name": "Plagiári", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.47276000", + "longitude": "22.95790000" + }, + { + "id": "53128", + "name": "Platý", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.64241000", + "longitude": "22.53458000" + }, + { + "id": "53134", + "name": "Políchni", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.66671000", + "longitude": "22.94881000" + }, + { + "id": "53135", + "name": "Polýgyros", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.37704000", + "longitude": "23.44135000" + }, + { + "id": "53136", + "name": "Polýkastro", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.99444000", + "longitude": "22.56909000" + }, + { + "id": "53133", + "name": "Polykárpi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.92598000", + "longitude": "22.01634000" + }, + { + "id": "53137", + "name": "Pontisméno", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.20885000", + "longitude": "23.28325000" + }, + { + "id": "53139", + "name": "Portariá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.28405000", + "longitude": "23.29549000" + }, + { + "id": "53151", + "name": "Próchoma", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.79826000", + "longitude": "22.66659000" + }, + { + "id": "53152", + "name": "Prómachoi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.02517000", + "longitude": "22.00437000" + }, + { + "id": "53153", + "name": "Próti", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.94411000", + "longitude": "24.00118000" + }, + { + "id": "53143", + "name": "Profítis Ilías", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.81373000", + "longitude": "22.16166000" + }, + { + "id": "53146", + "name": "Provatás", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.06825000", + "longitude": "23.39030000" + }, + { + "id": "53158", + "name": "Pylaía", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.59918000", + "longitude": "22.98613000" + }, + { + "id": "53188", + "name": "Ritíni", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.28835000", + "longitude": "22.28361000" + }, + { + "id": "53189", + "name": "Rizári", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.78373000", + "longitude": "22.08800000" + }, + { + "id": "53190", + "name": "Rizó", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.73331000", + "longitude": "22.13674000" + }, + { + "id": "53191", + "name": "Rizómata", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.35061000", + "longitude": "22.21079000" + }, + { + "id": "53195", + "name": "Rodolívos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.92055000", + "longitude": "23.97489000" + }, + { + "id": "53265", + "name": "Sárti", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.09369000", + "longitude": "23.97859000" + }, + { + "id": "53268", + "name": "Sérres", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.08499000", + "longitude": "23.54757000" + }, + { + "id": "53270", + "name": "Símantra", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.34563000", + "longitude": "23.31026000" + }, + { + "id": "53271", + "name": "Síndos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.67045000", + "longitude": "22.80545000" + }, + { + "id": "53212", + "name": "Sevastianá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.76874000", + "longitude": "22.12346000" + }, + { + "id": "53213", + "name": "Sfendámi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.41307000", + "longitude": "22.54677000" + }, + { + "id": "53214", + "name": "Sidirókastro", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.23499000", + "longitude": "23.38899000" + }, + { + "id": "53228", + "name": "Skýdra", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.76722000", + "longitude": "22.15194000" + }, + { + "id": "53223", + "name": "Skoútari", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.01871000", + "longitude": "23.51971000" + }, + { + "id": "53222", + "name": "Skotoússa", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.12844000", + "longitude": "23.38174000" + }, + { + "id": "53231", + "name": "Sochós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.81788000", + "longitude": "23.35546000" + }, + { + "id": "53234", + "name": "Sosándra", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.99894000", + "longitude": "22.03254000" + }, + { + "id": "53236", + "name": "Sourotí", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.47274000", + "longitude": "23.09197000" + }, + { + "id": "53246", + "name": "Stathmós Mourión", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.26378000", + "longitude": "22.83855000" + }, + { + "id": "53250", + "name": "Stavrós", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.66498000", + "longitude": "23.70015000" + }, + { + "id": "53247", + "name": "Stavroúpoli", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.66944000", + "longitude": "22.93806000" + }, + { + "id": "53253", + "name": "Stratónion", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.51406000", + "longitude": "23.82471000" + }, + { + "id": "53254", + "name": "Strymonikó", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.04144000", + "longitude": "23.31487000" + }, + { + "id": "53257", + "name": "Svorónos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.26805000", + "longitude": "22.46366000" + }, + { + "id": "53259", + "name": "Sykiá", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.03874000", + "longitude": "23.94046000" + }, + { + "id": "53260", + "name": "Sykiés", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.64944000", + "longitude": "22.95083000" + }, + { + "id": "53275", + "name": "Terpní", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.91643000", + "longitude": "23.48137000" + }, + { + "id": "53283", + "name": "Thérmi", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.54712000", + "longitude": "23.01967000" + }, + { + "id": "53278", + "name": "Thessaloníki", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.64361000", + "longitude": "22.93086000" + }, + { + "id": "53290", + "name": "Tríkala", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.59814000", + "longitude": "22.55733000" + }, + { + "id": "53293", + "name": "Trílofos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.46898000", + "longitude": "22.97180000" + }, + { + "id": "53289", + "name": "Triandría", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.61500000", + "longitude": "22.97620000" + }, + { + "id": "53305", + "name": "Valteró", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.17927000", + "longitude": "23.32022000" + }, + { + "id": "53306", + "name": "Vamvakófyto", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "41.17916000", + "longitude": "23.39602000" + }, + { + "id": "53312", + "name": "Vasiliká", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.47966000", + "longitude": "23.13695000" + }, + { + "id": "53317", + "name": "Vathýlakkos", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.76942000", + "longitude": "22.70880000" + }, + { + "id": "53343", + "name": "Véroia", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.52437000", + "longitude": "22.20242000" + }, + { + "id": "53320", + "name": "Vergína", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.48654000", + "longitude": "22.31735000" + }, + { + "id": "53336", + "name": "Vrontoú", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.19356000", + "longitude": "22.43203000" + }, + { + "id": "53348", + "name": "Xilópolis", + "state_id": 2125, + "state_code": "B", + "country_id": 85, + "country_code": "GR", + "latitude": "40.92713000", + "longitude": "23.17944000" + }, + { + "id": "52599", + "name": "Farkadóna", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.60000000", + "longitude": "22.06667000" + }, + { + "id": "52617", + "name": "Fíki", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.51602000", + "longitude": "21.65556000" + }, + { + "id": "52655", + "name": "Gómfoi", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.46413000", + "longitude": "21.69342000" + }, + { + "id": "52647", + "name": "Grizáno", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.63192000", + "longitude": "22.05258000" + }, + { + "id": "52678", + "name": "Kalampáka", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.70444000", + "longitude": "21.62694000" + }, + { + "id": "52725", + "name": "Kastráki", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.71692000", + "longitude": "21.61865000" + }, + { + "id": "52910", + "name": "Megalochóri", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.55982000", + "longitude": "21.84195000" + }, + { + "id": "52913", + "name": "Megála Kalývia", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.49693000", + "longitude": "21.78802000" + }, + { + "id": "53056", + "name": "Oichalía", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.60827000", + "longitude": "21.97996000" + }, + { + "id": "53080", + "name": "Palaiópyrgos", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.60845000", + "longitude": "21.81720000" + }, + { + "id": "53074", + "name": "Palaiomonástiro", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.46269000", + "longitude": "21.65793000" + }, + { + "id": "53182", + "name": "Pýli", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.45806000", + "longitude": "21.61889000" + }, + { + "id": "53121", + "name": "Pigí", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.51061000", + "longitude": "21.70103000" + }, + { + "id": "53160", + "name": "Pyrgetós", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.55276000", + "longitude": "21.74846000" + }, + { + "id": "53202", + "name": "Rízoma", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.66432000", + "longitude": "21.73541000" + }, + { + "id": "53274", + "name": "Taxiárches", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.57565000", + "longitude": "21.89245000" + }, + { + "id": "53291", + "name": "Tríkala", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.55493000", + "longitude": "21.76837000" + }, + { + "id": "53313", + "name": "Vasilikí", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.63984000", + "longitude": "21.70448000" + }, + { + "id": "53366", + "name": "Zárkos", + "state_id": 2124, + "state_code": "22", + "country_id": 85, + "country_code": "GR", + "latitude": "39.60860000", + "longitude": "22.12336000" + }, + { + "id": "52415", + "name": "Agía Foteiní", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.25459000", + "longitude": "24.63495000" + }, + { + "id": "52416", + "name": "Agía Galíni", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.09707000", + "longitude": "24.68818000" + }, + { + "id": "52418", + "name": "Agía Marína", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.51778000", + "longitude": "23.92675000" + }, + { + "id": "52427", + "name": "Agía Varvára", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.13715000", + "longitude": "25.00131000" + }, + { + "id": "52480", + "name": "Anógeia", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.29084000", + "longitude": "24.88412000" + }, + { + "id": "52467", + "name": "Ano Arhanes", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.23333000", + "longitude": "25.16667000" + }, + { + "id": "52493", + "name": "Arkalochóri", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.14634000", + "longitude": "25.26538000" + }, + { + "id": "52512", + "name": "Asímion", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.04321000", + "longitude": "25.09277000" + }, + { + "id": "52517", + "name": "Atsipópoulo", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.35253000", + "longitude": "24.43378000" + }, + { + "id": "53371", + "name": "Ágioi Déka", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.06667000", + "longitude": "24.96667000" + }, + { + "id": "53380", + "name": "Ágios Nikólaos", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.19106000", + "longitude": "25.71524000" + }, + { + "id": "52530", + "name": "Chaniá", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.51124000", + "longitude": "24.02921000" + }, + { + "id": "52544", + "name": "Chóra Sfakíon", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.20176000", + "longitude": "24.13711000" + }, + { + "id": "52546", + "name": "Darátsos", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.49955000", + "longitude": "23.97488000" + }, + { + "id": "52582", + "name": "Eloúnda", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.26500000", + "longitude": "25.72127000" + }, + { + "id": "52623", + "name": "Galatás", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.49864000", + "longitude": "23.96341000" + }, + { + "id": "52648", + "name": "Gázi", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.32531000", + "longitude": "25.06694000" + }, + { + "id": "52654", + "name": "Gérgeri", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.13281000", + "longitude": "24.94963000" + }, + { + "id": "52633", + "name": "Georgioupolis", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.36225000", + "longitude": "24.26013000" + }, + { + "id": "52636", + "name": "Geráni", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.51721000", + "longitude": "23.87818000" + }, + { + "id": "52641", + "name": "Goúrnes", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.32626000", + "longitude": "25.27740000" + }, + { + "id": "52642", + "name": "Gra Liyiá", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.01467000", + "longitude": "25.69127000" + }, + { + "id": "52659", + "name": "Ierápetra", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.01186000", + "longitude": "25.74234000" + }, + { + "id": "52666", + "name": "Irákleion", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.32787000", + "longitude": "25.14341000" + }, + { + "id": "52692", + "name": "Kalýves", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.45046000", + "longitude": "24.17507000" + }, + { + "id": "52728", + "name": "Kastélli", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.20902000", + "longitude": "25.33773000" + }, + { + "id": "52726", + "name": "Kastrí", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "34.83460000", + "longitude": "24.08572000" + }, + { + "id": "52806", + "name": "Káto Asítai", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.20271000", + "longitude": "24.99827000" + }, + { + "id": "52809", + "name": "Káto Goúves", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.32934000", + "longitude": "25.31353000" + }, + { + "id": "52822", + "name": "Kíssamos", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.49459000", + "longitude": "23.65375000" + }, + { + "id": "52738", + "name": "Kentrí", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.03258000", + "longitude": "25.75280000" + }, + { + "id": "52756", + "name": "Kokkíni Cháni", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.32827000", + "longitude": "25.25810000" + }, + { + "id": "52760", + "name": "Kolympári", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.54115000", + "longitude": "23.77995000" + }, + { + "id": "52787", + "name": "Kritsá", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.15821000", + "longitude": "25.64459000" + }, + { + "id": "52789", + "name": "Krousón", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.23062000", + "longitude": "24.98291000" + }, + { + "id": "52855", + "name": "Limín Khersonísou", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.32297000", + "longitude": "25.39275000" + }, + { + "id": "52953", + "name": "Mália", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.28367000", + "longitude": "25.46262000" + }, + { + "id": "52948", + "name": "Moíres", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.05143000", + "longitude": "24.87330000" + }, + { + "id": "52939", + "name": "Mokhós", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.26342000", + "longitude": "25.42305000" + }, + { + "id": "52944", + "name": "Mourniés", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.48228000", + "longitude": "24.01253000" + }, + { + "id": "52946", + "name": "Mouzourás", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.53885000", + "longitude": "24.15554000" + }, + { + "id": "52999", + "name": "Néa Alikarnassós", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.33977000", + "longitude": "25.15895000" + }, + { + "id": "53000", + "name": "Néa Anatolí", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.00920000", + "longitude": "25.66170000" + }, + { + "id": "52973", + "name": "Neápoli", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.25627000", + "longitude": "25.60415000" + }, + { + "id": "52971", + "name": "Nerokoúros", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.47587000", + "longitude": "24.03995000" + }, + { + "id": "52986", + "name": "Nomós Irakleíou", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.32969000", + "longitude": "25.12985000" + }, + { + "id": "52991", + "name": "Nomós Rethýmnis", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.25000000", + "longitude": "24.58333000" + }, + { + "id": "53079", + "name": "Palaióchora", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.23128000", + "longitude": "23.68185000" + }, + { + "id": "53083", + "name": "Palekastro", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.19793000", + "longitude": "26.25429000" + }, + { + "id": "53163", + "name": "Pánormos", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.41815000", + "longitude": "24.69091000" + }, + { + "id": "53176", + "name": "Pérama", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.37030000", + "longitude": "24.70345000" + }, + { + "id": "53185", + "name": "Pýrgos", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.00611000", + "longitude": "25.15191000" + }, + { + "id": "53114", + "name": "Perivólia", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.48491000", + "longitude": "23.99421000" + }, + { + "id": "53124", + "name": "Pithári", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.51672000", + "longitude": "24.08653000" + }, + { + "id": "53142", + "name": "Profítis Ilías", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.20555000", + "longitude": "25.09985000" + }, + { + "id": "53187", + "name": "Rethymno", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.36555000", + "longitude": "24.48232000" + }, + { + "id": "53272", + "name": "Sísion", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.30770000", + "longitude": "25.52021000" + }, + { + "id": "53210", + "name": "Schísma Eloúndas", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.25757000", + "longitude": "25.72796000" + }, + { + "id": "53217", + "name": "Sitia", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.20783000", + "longitude": "26.10467000" + }, + { + "id": "53219", + "name": "Skalánion", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.28262000", + "longitude": "25.18684000" + }, + { + "id": "53237", + "name": "Soúda", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.48717000", + "longitude": "24.07344000" + }, + { + "id": "53244", + "name": "Stalís", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.29257000", + "longitude": "25.43292000" + }, + { + "id": "53302", + "name": "Tílisos", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.29607000", + "longitude": "25.01587000" + }, + { + "id": "53281", + "name": "Thrapsanón", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.18798000", + "longitude": "25.28091000" + }, + { + "id": "53296", + "name": "Tsikalariá", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.47623000", + "longitude": "24.06274000" + }, + { + "id": "53299", + "name": "Tympáki", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.07286000", + "longitude": "24.76851000" + }, + { + "id": "53321", + "name": "Violí Charáki", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.35864000", + "longitude": "24.43857000" + }, + { + "id": "53337", + "name": "Vrýses", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.37585000", + "longitude": "24.20109000" + }, + { + "id": "53359", + "name": "Zarós", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.13030000", + "longitude": "24.90412000" + }, + { + "id": "53364", + "name": "Zonianá", + "state_id": 2109, + "state_code": "M", + "country_id": 85, + "country_code": "GR", + "latitude": "35.29502000", + "longitude": "24.82944000" + }, + { + "id": "52440", + "name": "Alexandroupoli", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.84995000", + "longitude": "25.87644000" + }, + { + "id": "52456", + "name": "Amygdaleónas", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.96346000", + "longitude": "24.36007000" + }, + { + "id": "52502", + "name": "Arísvi", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.07000000", + "longitude": "25.59041000" + }, + { + "id": "52497", + "name": "Arrianá", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.08131000", + "longitude": "25.69494000" + }, + { + "id": "53375", + "name": "Ágios Athanásios", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.07463000", + "longitude": "24.24545000" + }, + { + "id": "53398", + "name": "Áratos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.08139000", + "longitude": "25.55186000" + }, + { + "id": "53408", + "name": "Ávato", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.96279000", + "longitude": "24.80441000" + }, + { + "id": "53420", + "name": "Íasmos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.12747000", + "longitude": "25.18573000" + }, + { + "id": "53418", + "name": "Évlalo", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.98333000", + "longitude": "24.80000000" + }, + { + "id": "52535", + "name": "Choristí", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.13056000", + "longitude": "24.20843000" + }, + { + "id": "52539", + "name": "Chrysoúpolis", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.98556000", + "longitude": "24.69389000" + }, + { + "id": "52538", + "name": "Chrysochóri", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.93328000", + "longitude": "24.71088000" + }, + { + "id": "52555", + "name": "Didymóteicho", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.34806000", + "longitude": "26.49611000" + }, + { + "id": "52565", + "name": "Dráma", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.15283000", + "longitude": "24.14730000" + }, + { + "id": "52571", + "name": "Echínos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.27558000", + "longitude": "24.97237000" + }, + { + "id": "52576", + "name": "Elaiochóri", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.82030000", + "longitude": "24.24373000" + }, + { + "id": "52579", + "name": "Eleftherés", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.84666000", + "longitude": "24.25431000" + }, + { + "id": "52578", + "name": "Eleftheroúpolis", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.91389000", + "longitude": "24.25139000" + }, + { + "id": "52616", + "name": "Féres", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.89305000", + "longitude": "26.17234000" + }, + { + "id": "52603", + "name": "Fillýra", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.11667000", + "longitude": "25.63333000" + }, + { + "id": "52610", + "name": "Fotolívos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.06013000", + "longitude": "24.04724000" + }, + { + "id": "52612", + "name": "Fteliá", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.08266000", + "longitude": "24.18968000" + }, + { + "id": "52632", + "name": "Genisséa", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.06165000", + "longitude": "24.96248000" + }, + { + "id": "52661", + "name": "Iliokentima", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.94931000", + "longitude": "24.78859000" + }, + { + "id": "52679", + "name": "Kalampáki", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.05000000", + "longitude": "24.18333000" + }, + { + "id": "52690", + "name": "Kalí Vrýsi", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.14653000", + "longitude": "23.90667000" + }, + { + "id": "52691", + "name": "Kalós Agrós", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.10543000", + "longitude": "24.08570000" + }, + { + "id": "52683", + "name": "Kallífytos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.17280000", + "longitude": "24.21527000" + }, + { + "id": "52696", + "name": "Kamariótissa", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.47501000", + "longitude": "25.47456000" + }, + { + "id": "52723", + "name": "Kastaniés", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.64551000", + "longitude": "26.47676000" + }, + { + "id": "52735", + "name": "Kavála", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.93959000", + "longitude": "24.40687000" + }, + { + "id": "52737", + "name": "Kavýli", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.56225000", + "longitude": "26.51470000" + }, + { + "id": "52815", + "name": "Káto Nevrokópi", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.35000000", + "longitude": "23.86667000" + }, + { + "id": "52829", + "name": "Kýria", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.09900000", + "longitude": "24.28915000" + }, + { + "id": "52739", + "name": "Keramotí", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.85591000", + "longitude": "24.70595000" + }, + { + "id": "52748", + "name": "Kimméria", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.14788000", + "longitude": "24.93869000" + }, + { + "id": "52755", + "name": "Kokkinóchoma", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.92690000", + "longitude": "24.30805000" + }, + { + "id": "52762", + "name": "Komotiní", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.11917000", + "longitude": "25.40535000" + }, + { + "id": "52785", + "name": "Krinídes", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.01396000", + "longitude": "24.29647000" + }, + { + "id": "52798", + "name": "Kyprínos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.57542000", + "longitude": "26.22905000" + }, + { + "id": "52834", + "name": "Lagós", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.45102000", + "longitude": "26.46067000" + }, + { + "id": "52876", + "name": "Lávara", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.26957000", + "longitude": "26.38522000" + }, + { + "id": "52882", + "name": "Lýkeio", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.06413000", + "longitude": "25.68570000" + }, + { + "id": "52853", + "name": "Limenária", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.62741000", + "longitude": "24.57650000" + }, + { + "id": "52959", + "name": "Mýki", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.24384000", + "longitude": "24.92084000" + }, + { + "id": "52935", + "name": "Mikrópolis", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.19351000", + "longitude": "23.81570000" + }, + { + "id": "53011", + "name": "Néa Iraklítsa", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.86442000", + "longitude": "24.31650000" + }, + { + "id": "53013", + "name": "Néa Karváli", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.96148000", + "longitude": "24.51132000" + }, + { + "id": "53014", + "name": "Néa Karyá", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.90621000", + "longitude": "24.70726000" + }, + { + "id": "53031", + "name": "Néa Péramos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.83854000", + "longitude": "24.30130000" + }, + { + "id": "53040", + "name": "Néa Výssa", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.58449000", + "longitude": "26.54318000" + }, + { + "id": "52967", + "name": "Neochóri", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.51131000", + "longitude": "26.45740000" + }, + { + "id": "52976", + "name": "Nikísiani", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.94739000", + "longitude": "24.14311000" + }, + { + "id": "53062", + "name": "Orestiáda", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.50306000", + "longitude": "26.52972000" + }, + { + "id": "53078", + "name": "Palaió Tsiflíki", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.90495000", + "longitude": "24.35083000" + }, + { + "id": "53071", + "name": "Palaiochóri", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.94338000", + "longitude": "24.17747000" + }, + { + "id": "53093", + "name": "Paralía Ofryníou", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.76663000", + "longitude": "23.90039000" + }, + { + "id": "53096", + "name": "Paranésti", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.26667000", + "longitude": "24.50000000" + }, + { + "id": "53161", + "name": "Páchni", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.30506000", + "longitude": "24.89438000" + }, + { + "id": "53173", + "name": "Péplos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.95755000", + "longitude": "26.26577000" + }, + { + "id": "53117", + "name": "Peteinós", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.10056000", + "longitude": "24.89847000" + }, + { + "id": "53120", + "name": "Petroússa", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.19470000", + "longitude": "24.01731000" + }, + { + "id": "53118", + "name": "Petrochóri", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.08742000", + "longitude": "24.84092000" + }, + { + "id": "53140", + "name": "Potamiá", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.71633000", + "longitude": "24.72859000" + }, + { + "id": "53150", + "name": "Prínos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.74090000", + "longitude": "24.57787000" + }, + { + "id": "53145", + "name": "Prosotsáni", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.18333000", + "longitude": "23.96667000" + }, + { + "id": "53201", + "name": "Rízia", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.62490000", + "longitude": "26.42771000" + }, + { + "id": "53205", + "name": "Samothráki", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.47333000", + "longitude": "25.52222000" + }, + { + "id": "53264", + "name": "Sápes", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.02861000", + "longitude": "25.69306000" + }, + { + "id": "53266", + "name": "Sélero", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.13382000", + "longitude": "24.99408000" + }, + { + "id": "53216", + "name": "Sitagroí", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.11067000", + "longitude": "24.02755000" + }, + { + "id": "53230", + "name": "Smínthi", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.23333000", + "longitude": "24.86667000" + }, + { + "id": "53235", + "name": "Souflí", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.19194000", + "longitude": "26.29944000" + }, + { + "id": "53282", + "name": "Thásos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.77806000", + "longitude": "24.70944000" + }, + { + "id": "53298", + "name": "Tycheró", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.02878000", + "longitude": "26.29455000" + }, + { + "id": "53345", + "name": "Vólakas", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.31661000", + "longitude": "24.00215000" + }, + { + "id": "53353", + "name": "Xánthi", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.13488000", + "longitude": "24.88800000" + }, + { + "id": "53350", + "name": "Xiropótamos", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.19206000", + "longitude": "24.10385000" + }, + { + "id": "53351", + "name": "Xylaganí", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "40.97437000", + "longitude": "25.42022000" + }, + { + "id": "53365", + "name": "Zygós", + "state_id": 2120, + "state_code": "A2", + "country_id": 85, + "country_code": "GR", + "latitude": "41.01320000", + "longitude": "24.38132000" + }, + { + "id": "52417", + "name": "Agía Kyriakí", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.52264000", + "longitude": "20.88358000" + }, + { + "id": "52462", + "name": "Anatolí", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.63531000", + "longitude": "20.86578000" + }, + { + "id": "52479", + "name": "Anéza", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.08658000", + "longitude": "20.92300000" + }, + { + "id": "52507", + "name": "Asprángeloi", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.82328000", + "longitude": "20.72862000" + }, + { + "id": "53390", + "name": "Áno Kalentíni", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.25000000", + "longitude": "21.18528000" + }, + { + "id": "53403", + "name": "Árta", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.16014000", + "longitude": "20.98561000" + }, + { + "id": "52527", + "name": "Chalkiádes", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.15981000", + "longitude": "20.93292000" + }, + { + "id": "52574", + "name": "Eksochí", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.68744000", + "longitude": "20.82240000" + }, + { + "id": "52580", + "name": "Eleoúsa", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.15278000", + "longitude": "20.96214000" + }, + { + "id": "52602", + "name": "Filiátes", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.60111000", + "longitude": "20.31194000" + }, + { + "id": "52601", + "name": "Filippiáda", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.20472000", + "longitude": "20.88222000" + }, + { + "id": "52643", + "name": "Graikochóri", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.49789000", + "longitude": "20.27608000" + }, + { + "id": "52645", + "name": "Grammenítsa", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.18444000", + "longitude": "20.97933000" + }, + { + "id": "52660", + "name": "Igoumenítsa", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.50342000", + "longitude": "20.26728000" + }, + { + "id": "52663", + "name": "Ioánnina", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.66486000", + "longitude": "20.85189000" + }, + { + "id": "52677", + "name": "Kalamiá", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.16528000", + "longitude": "20.93206000" + }, + { + "id": "52686", + "name": "Kalpáki", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.88778000", + "longitude": "20.62389000" + }, + { + "id": "52701", + "name": "Kanaláki", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.23361000", + "longitude": "20.60000000" + }, + { + "id": "52708", + "name": "Kardamítsia", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.67816000", + "longitude": "20.81956000" + }, + { + "id": "52733", + "name": "Katsikás", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.62281000", + "longitude": "20.88758000" + }, + { + "id": "52825", + "name": "Kónitsa", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "40.04861000", + "longitude": "20.75667000" + }, + { + "id": "52763", + "name": "Kompóti", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.10255000", + "longitude": "21.08389000" + }, + { + "id": "52774", + "name": "Kostakioí", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.13672000", + "longitude": "20.95761000" + }, + { + "id": "52777", + "name": "Koutselió", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.58808000", + "longitude": "20.91197000" + }, + { + "id": "52870", + "name": "Loúros", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.16600000", + "longitude": "20.75608000" + }, + { + "id": "52933", + "name": "Metsovo", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.76944000", + "longitude": "21.18222000" + }, + { + "id": "53033", + "name": "Néa Seléfkeia", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.52461000", + "longitude": "20.25519000" + }, + { + "id": "53052", + "name": "Néos Oropós", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.15064000", + "longitude": "20.73636000" + }, + { + "id": "52965", + "name": "Neochóri", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.07025000", + "longitude": "21.01892000" + }, + { + "id": "52964", + "name": "Neochorópoulo", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.62553000", + "longitude": "20.83558000" + }, + { + "id": "52985", + "name": "Nomós Ioannínon", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.75000000", + "longitude": "20.66667000" + }, + { + "id": "53088", + "name": "Pappadátes", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.31444000", + "longitude": "20.79314000" + }, + { + "id": "53095", + "name": "Paramythiá", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.47111000", + "longitude": "20.51111000" + }, + { + "id": "53097", + "name": "Parapótamos", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.54858000", + "longitude": "20.32436000" + }, + { + "id": "53165", + "name": "Párga", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.28572000", + "longitude": "20.40044000" + }, + { + "id": "53174", + "name": "Pérama", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.69331000", + "longitude": "20.84656000" + }, + { + "id": "53177", + "name": "Pérdika", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.36967000", + "longitude": "20.30419000" + }, + { + "id": "53178", + "name": "Péta", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.16667000", + "longitude": "21.03472000" + }, + { + "id": "53101", + "name": "Pediní", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.59994000", + "longitude": "20.84261000" + }, + { + "id": "53127", + "name": "Platariá", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.45044000", + "longitude": "20.27781000" + }, + { + "id": "53148", + "name": "Prámanta", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.52306000", + "longitude": "21.10139000" + }, + { + "id": "53149", + "name": "Préveza", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "38.95617000", + "longitude": "20.75050000" + }, + { + "id": "53196", + "name": "Rodotópi", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.70822000", + "longitude": "20.72656000" + }, + { + "id": "53248", + "name": "Stavráki", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.65614000", + "longitude": "20.81806000" + }, + { + "id": "53277", + "name": "Thesprotikó", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.25114000", + "longitude": "20.78528000" + }, + { + "id": "53295", + "name": "Tsiflikópoulo", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.65624000", + "longitude": "20.83882000" + }, + { + "id": "53328", + "name": "Voulgaréli", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.37194000", + "longitude": "21.18333000" + }, + { + "id": "53330", + "name": "Vounoplagiá", + "state_id": 2110, + "state_code": "D", + "country_id": 85, + "country_code": "GR", + "latitude": "39.69161000", + "longitude": "20.78597000" + }, + { + "id": "52400", + "name": "Acharávi", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.79360000", + "longitude": "19.81736000" + }, + { + "id": "52409", + "name": "Agios Georgis", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.72363000", + "longitude": "19.69969000" + }, + { + "id": "52439", + "name": "Alepoú", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.61594000", + "longitude": "19.89564000" + }, + { + "id": "52448", + "name": "Ambelókipoi", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "37.75809000", + "longitude": "20.87248000" + }, + { + "id": "52489", + "name": "Argostólion", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "38.18109000", + "longitude": "20.48903000" + }, + { + "id": "53379", + "name": "Ágios Matthaíos", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.49506000", + "longitude": "19.87336000" + }, + { + "id": "52545", + "name": "Corfu", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.62069000", + "longitude": "19.91975000" + }, + { + "id": "52631", + "name": "Gaïtánion", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "37.79134000", + "longitude": "20.87407000" + }, + { + "id": "52650", + "name": "Gáïos", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.19722000", + "longitude": "20.18556000" + }, + { + "id": "52669", + "name": "Itháki", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "38.36421000", + "longitude": "20.71848000" + }, + { + "id": "52703", + "name": "Kanáli", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.60556000", + "longitude": "19.89250000" + }, + { + "id": "52729", + "name": "Katastárion", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "37.83012000", + "longitude": "20.75755000" + }, + { + "id": "52765", + "name": "Kontokáli", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.64436000", + "longitude": "19.85194000" + }, + { + "id": "52796", + "name": "Kynopiástes", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.56785000", + "longitude": "19.88362000" + }, + { + "id": "52840", + "name": "Lefkada", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "38.75000000", + "longitude": "20.66667000" + }, + { + "id": "52841", + "name": "Lefkáda", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "38.83036000", + "longitude": "20.70442000" + }, + { + "id": "52842", + "name": "Lefkímmi", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.42336000", + "longitude": "20.07094000" + }, + { + "id": "52857", + "name": "Lithakiá", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "37.71935000", + "longitude": "20.83013000" + }, + { + "id": "52863", + "name": "Lixoúri", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "38.20133000", + "longitude": "20.43706000" + }, + { + "id": "52945", + "name": "Mouzaki", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "37.73565000", + "longitude": "20.82291000" + }, + { + "id": "52987", + "name": "Nomós Kerkýras", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.66667000", + "longitude": "19.75000000" + }, + { + "id": "52993", + "name": "Nomós Zakýnthou", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "37.75000000", + "longitude": "20.75000000" + }, + { + "id": "53179", + "name": "Póros", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "38.15369000", + "longitude": "20.77120000" + }, + { + "id": "53109", + "name": "Perama", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.58289000", + "longitude": "19.91220000" + }, + { + "id": "53113", + "name": "Perivóli", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.41936000", + "longitude": "20.01469000" + }, + { + "id": "53141", + "name": "Potamós", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.62420000", + "longitude": "19.87826000" + }, + { + "id": "53263", + "name": "Sámi", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "38.25081000", + "longitude": "20.64686000" + }, + { + "id": "53304", + "name": "Valsamáta", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "38.17600000", + "longitude": "20.58392000" + }, + { + "id": "53307", + "name": "Vanáton", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "37.79446000", + "longitude": "20.85188000" + }, + { + "id": "53322", + "name": "Virós", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "39.58340000", + "longitude": "19.88270000" + }, + { + "id": "53358", + "name": "Zakynthos", + "state_id": 2131, + "state_code": "F", + "country_id": 85, + "country_code": "GR", + "latitude": "37.78022000", + "longitude": "20.89555000" + }, + { + "id": "52424", + "name": "Agía Triáda", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.46361000", + "longitude": "21.89848000" + }, + { + "id": "52412", + "name": "Agnanteró", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.48586000", + "longitude": "21.84789000" + }, + { + "id": "52477", + "name": "Anávra", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.18996000", + "longitude": "22.09308000" + }, + { + "id": "52469", + "name": "Anthiró", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.34722000", + "longitude": "21.45833000" + }, + { + "id": "52499", + "name": "Artesianó", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.40194000", + "longitude": "21.89649000" + }, + { + "id": "52670", + "name": "Itéa", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.45669000", + "longitude": "22.16577000" + }, + { + "id": "52684", + "name": "Kallíthiro", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.28099000", + "longitude": "21.90491000" + }, + { + "id": "52680", + "name": "Kallifóni", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.27712000", + "longitude": "21.96128000" + }, + { + "id": "52713", + "name": "Kardítsa", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.36485000", + "longitude": "21.92191000" + }, + { + "id": "52710", + "name": "Karditsomagoúla", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.39061000", + "longitude": "21.92330000" + }, + { + "id": "52717", + "name": "Karpochóri", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.33575000", + "longitude": "22.01129000" + }, + { + "id": "52884", + "name": "Magoúla", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.45395000", + "longitude": "21.80351000" + }, + { + "id": "52889", + "name": "Makrychóri", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.43978000", + "longitude": "21.96582000" + }, + { + "id": "52907", + "name": "Mavrommáti", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.42386000", + "longitude": "21.69379000" + }, + { + "id": "52938", + "name": "Mitrópoli", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.33933000", + "longitude": "21.83751000" + }, + { + "id": "52942", + "name": "Morfovoúni", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.35250000", + "longitude": "21.75000000" + }, + { + "id": "52947", + "name": "Mouzáki", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.42972000", + "longitude": "21.66361000" + }, + { + "id": "53081", + "name": "Palamás", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.46667000", + "longitude": "22.08333000" + }, + { + "id": "53147", + "name": "Proástio", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.48682000", + "longitude": "21.90288000" + }, + { + "id": "53233", + "name": "Sofádes", + "state_id": 2127, + "state_code": "23", + "country_id": 85, + "country_code": "GR", + "latitude": "39.33333000", + "longitude": "22.10000000" + }, + { + "id": "52413", + "name": "Agriá", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.34078000", + "longitude": "23.01258000" + }, + { + "id": "52445", + "name": "Almyrós", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.18222000", + "longitude": "22.75944000" + }, + { + "id": "52459", + "name": "Anakasiá", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.38112000", + "longitude": "22.97484000" + }, + { + "id": "52486", + "name": "Argalastí", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.22627000", + "longitude": "23.21868000" + }, + { + "id": "53388", + "name": "Álli Meriá", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.37039000", + "longitude": "22.98350000" + }, + { + "id": "53393", + "name": "Áno Lekhónia", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.32763000", + "longitude": "23.05395000" + }, + { + "id": "52595", + "name": "Evxinoúpolis", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.18414000", + "longitude": "22.73831000" + }, + { + "id": "52704", + "name": "Kanália", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.49928000", + "longitude": "22.88589000" + }, + { + "id": "52811", + "name": "Káto Lekhónia", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.33091000", + "longitude": "23.03957000" + }, + { + "id": "53001", + "name": "Néa Anchiálos", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.28015000", + "longitude": "22.81819000" + }, + { + "id": "53010", + "name": "Néa Ionía", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.37904000", + "longitude": "22.92752000" + }, + { + "id": "53099", + "name": "Patitírion", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.14657000", + "longitude": "23.86494000" + }, + { + "id": "53138", + "name": "Portariá", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.38950000", + "longitude": "22.99948000" + }, + { + "id": "53156", + "name": "Pteleós", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.05261000", + "longitude": "22.95271000" + }, + { + "id": "53192", + "name": "Rizómylos", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.42763000", + "longitude": "22.74717000" + }, + { + "id": "53227", + "name": "Skópelos", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.12144000", + "longitude": "23.72686000" + }, + { + "id": "53221", + "name": "Skiáthos", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.16227000", + "longitude": "23.49089000" + }, + { + "id": "53238", + "name": "Soúrpi", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.10319000", + "longitude": "22.89789000" + }, + { + "id": "53251", + "name": "Stefanovíkeio", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.46354000", + "longitude": "22.74198000" + }, + { + "id": "53292", + "name": "Tríkeri", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.10114000", + "longitude": "23.07669000" + }, + { + "id": "53318", + "name": "Velestíno", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.38181000", + "longitude": "22.74616000" + }, + { + "id": "53327", + "name": "Volos", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.36103000", + "longitude": "22.94248000" + }, + { + "id": "53357", + "name": "Zagorá", + "state_id": 2104, + "state_code": "24", + "country_id": 85, + "country_code": "GR", + "latitude": "39.45000000", + "longitude": "23.10000000" + }, + { + "id": "52485", + "name": "Arfará", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.15619000", + "longitude": "22.04485000" + }, + { + "id": "52491", + "name": "Aria", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.57372000", + "longitude": "22.83539000" + }, + { + "id": "52494", + "name": "Arkhaía Kórinthos", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.90953000", + "longitude": "22.88353000" + }, + { + "id": "52513", + "name": "Asíni", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.54431000", + "longitude": "22.86435000" + }, + { + "id": "52505", + "name": "Asopós", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.72986000", + "longitude": "22.85455000" + }, + { + "id": "52516", + "name": "Athíkia", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.81675000", + "longitude": "22.92939000" + }, + { + "id": "52521", + "name": "Ayía Triás", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.63707000", + "longitude": "22.80504000" + }, + { + "id": "53372", + "name": "Ágioi Theódoroi", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.92736000", + "longitude": "23.14221000" + }, + { + "id": "53373", + "name": "Ágios Andréas", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.34519000", + "longitude": "22.76466000" + }, + { + "id": "53399", + "name": "Árgos", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.63333000", + "longitude": "22.73333000" + }, + { + "id": "53400", + "name": "Áris", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.09920000", + "longitude": "22.00443000" + }, + { + "id": "53405", + "name": "Ássos", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.93955000", + "longitude": "22.82223000" + }, + { + "id": "53406", + "name": "Ástros", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.40395000", + "longitude": "22.72118000" + }, + { + "id": "53410", + "name": "Áyios Adhrianós", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.59975000", + "longitude": "22.84560000" + }, + { + "id": "53415", + "name": "Áyios Vasílios", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.79763000", + "longitude": "22.79727000" + }, + { + "id": "52543", + "name": "Chóra", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.05106000", + "longitude": "21.71690000" + }, + { + "id": "52567", + "name": "Dídyma", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.46250000", + "longitude": "23.17183000" + }, + { + "id": "52556", + "name": "Dimitsána", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.59524000", + "longitude": "22.04025000" + }, + { + "id": "52566", + "name": "Drépanon", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.53888000", + "longitude": "22.89323000" + }, + { + "id": "52589", + "name": "Ermióni", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.38492000", + "longitude": "23.24686000" + }, + { + "id": "52596", + "name": "Examília", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.89736000", + "longitude": "22.92832000" + }, + { + "id": "52600", + "name": "Filiatrá", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.15637000", + "longitude": "21.58532000" + }, + { + "id": "52628", + "name": "Gargaliánoi", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.06518000", + "longitude": "21.63809000" + }, + { + "id": "52652", + "name": "Géfyra", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.68715000", + "longitude": "23.03509000" + }, + { + "id": "52656", + "name": "Gýtheio", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.75500000", + "longitude": "22.56417000" + }, + { + "id": "52635", + "name": "Geráki", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.99227000", + "longitude": "22.70663000" + }, + { + "id": "52667", + "name": "Isthmía", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.91356000", + "longitude": "23.00460000" + }, + { + "id": "52676", + "name": "Kalamata", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.03913000", + "longitude": "22.11265000" + }, + { + "id": "52709", + "name": "Kardamýli", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.88778000", + "longitude": "22.23317000" + }, + { + "id": "52718", + "name": "Karyés", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.29119000", + "longitude": "22.50066000" + }, + { + "id": "52807", + "name": "Káto Dhiminió", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "38.02490000", + "longitude": "22.73294000" + }, + { + "id": "52808", + "name": "Káto Glykóvrysi", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.82791000", + "longitude": "22.77732000" + }, + { + "id": "52826", + "name": "Kórinthos", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.94007000", + "longitude": "22.95130000" + }, + { + "id": "52745", + "name": "Khiliomódhi", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.81016000", + "longitude": "22.86972000" + }, + { + "id": "52751", + "name": "Kiáto", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01321000", + "longitude": "22.74839000" + }, + { + "id": "52754", + "name": "Koilás", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.41230000", + "longitude": "23.12553000" + }, + { + "id": "52757", + "name": "Kokkónion", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.97061000", + "longitude": "22.78018000" + }, + { + "id": "52766", + "name": "Kopanáki", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.28913000", + "longitude": "21.81854000" + }, + { + "id": "52772", + "name": "Koróni", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.79526000", + "longitude": "21.95794000" + }, + { + "id": "52778", + "name": "Koutsopódi", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.68426000", + "longitude": "22.71355000" + }, + { + "id": "52783", + "name": "Kranídi", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.37974000", + "longitude": "23.15969000" + }, + { + "id": "52788", + "name": "Krokeés", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.88297000", + "longitude": "22.54683000" + }, + { + "id": "52797", + "name": "Kyparissía", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.25111000", + "longitude": "21.67361000" + }, + { + "id": "52801", + "name": "Kyrás Vrýsi", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.91295000", + "longitude": "22.98651000" + }, + { + "id": "52838", + "name": "Langádhia", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.68186000", + "longitude": "22.03002000" + }, + { + "id": "52879", + "name": "Lékhaio", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.93279000", + "longitude": "22.85002000" + }, + { + "id": "52845", + "name": "Leonídio", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.16679000", + "longitude": "22.85773000" + }, + { + "id": "52848", + "name": "Levídion", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.68269000", + "longitude": "22.29586000" + }, + { + "id": "52852", + "name": "Ligourión", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.61233000", + "longitude": "23.03773000" + }, + { + "id": "52866", + "name": "Loutrá Oraías Elénis", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.86466000", + "longitude": "22.99614000" + }, + { + "id": "52867", + "name": "Loutráki", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.97830000", + "longitude": "22.97781000" + }, + { + "id": "52886", + "name": "Magoúla", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.08007000", + "longitude": "22.40469000" + }, + { + "id": "52912", + "name": "Megalópoli", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.40111000", + "longitude": "22.14222000" + }, + { + "id": "52918", + "name": "Meligalás", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.21667000", + "longitude": "21.96667000" + }, + { + "id": "52930", + "name": "Messíni", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.05111000", + "longitude": "22.00778000" + }, + { + "id": "52932", + "name": "Methóni", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.81973000", + "longitude": "21.70486000" + }, + { + "id": "52949", + "name": "Moúlki", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.99319000", + "longitude": "22.72531000" + }, + { + "id": "52940", + "name": "Moláoi", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.80757000", + "longitude": "22.85132000" + }, + { + "id": "52995", + "name": "Náfplio", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.56863000", + "longitude": "22.80691000" + }, + { + "id": "53015", + "name": "Néa Kíos", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.59023000", + "longitude": "22.74342000" + }, + { + "id": "53038", + "name": "Néa Tírins", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.60793000", + "longitude": "22.81996000" + }, + { + "id": "52962", + "name": "Neméa", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.82068000", + "longitude": "22.66102000" + }, + { + "id": "52980", + "name": "Nomós Arkadías", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.58333000", + "longitude": "22.25000000" + }, + { + "id": "53075", + "name": "Palaiá Epídavros", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.63847000", + "longitude": "23.15609000" + }, + { + "id": "53094", + "name": "Paralía Vérgas", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.00708000", + "longitude": "22.15676000" + }, + { + "id": "53167", + "name": "Pásion", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "38.01294000", + "longitude": "22.72814000" + }, + { + "id": "53181", + "name": "Pórto Chéli", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.32786000", + "longitude": "23.14384000" + }, + { + "id": "53183", + "name": "Pýlos", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.91298000", + "longitude": "21.69650000" + }, + { + "id": "53108", + "name": "Perachóra", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "38.03021000", + "longitude": "22.94902000" + }, + { + "id": "53115", + "name": "Periyiáli", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.94041000", + "longitude": "22.83946000" + }, + { + "id": "53215", + "name": "Sikyón", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.98230000", + "longitude": "22.72462000" + }, + { + "id": "53225", + "name": "Skála", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.85000000", + "longitude": "22.66667000" + }, + { + "id": "53232", + "name": "Sofikón", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.79412000", + "longitude": "23.05204000" + }, + { + "id": "53241", + "name": "Spárti", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.07446000", + "longitude": "22.43009000" + }, + { + "id": "53240", + "name": "Sperchógeia", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.07405000", + "longitude": "22.06248000" + }, + { + "id": "53258", + "name": "Sykiá", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.76398000", + "longitude": "22.94302000" + }, + { + "id": "53279", + "name": "Thouría", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.08356000", + "longitude": "22.04891000" + }, + { + "id": "53286", + "name": "Tolón", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.52021000", + "longitude": "22.85860000" + }, + { + "id": "53287", + "name": "Traganón", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.89789000", + "longitude": "21.31245000" + }, + { + "id": "53294", + "name": "Trípoli", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.50889000", + "longitude": "22.37944000" + }, + { + "id": "53342", + "name": "Vélo", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.97610000", + "longitude": "22.75985000" + }, + { + "id": "53324", + "name": "Vlachópoulo", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.03186000", + "longitude": "21.79158000" + }, + { + "id": "53323", + "name": "Vlachiótis", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "36.86094000", + "longitude": "22.70831000" + }, + { + "id": "53326", + "name": "Vokhaïkó", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.94843000", + "longitude": "22.79203000" + }, + { + "id": "53333", + "name": "Vrakháti", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.95895000", + "longitude": "22.80573000" + }, + { + "id": "53352", + "name": "Xylókastro", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "38.07762000", + "longitude": "22.63166000" + }, + { + "id": "53361", + "name": "Zevgolateió", + "state_id": 2119, + "state_code": "J", + "country_id": 85, + "country_code": "GR", + "latitude": "37.93333000", + "longitude": "22.80000000" + }, + { + "id": "52401", + "name": "Adámas", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.72506000", + "longitude": "24.44685000" + }, + { + "id": "52405", + "name": "Afántou", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.29354000", + "longitude": "28.16225000" + }, + { + "id": "52419", + "name": "Agía Marína", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.15430000", + "longitude": "26.85162000" + }, + { + "id": "52452", + "name": "Amorgós", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.83175000", + "longitude": "25.89821000" + }, + { + "id": "52476", + "name": "Anáfi", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.35000000", + "longitude": "25.76667000" + }, + { + "id": "52464", + "name": "Andros", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.83333000", + "longitude": "24.93333000" + }, + { + "id": "52475", + "name": "Antíparos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.03940000", + "longitude": "25.08258000" + }, + { + "id": "52473", + "name": "Antimácheia", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.80888000", + "longitude": "27.09764000" + }, + { + "id": "52484", + "name": "Archángelos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.21492000", + "longitude": "28.11487000" + }, + { + "id": "52510", + "name": "Astypálaia", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.55000000", + "longitude": "26.35000000" + }, + { + "id": "53395", + "name": "Áno Merá", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.44904000", + "longitude": "25.39095000" + }, + { + "id": "53396", + "name": "Áno Sýros", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.44997000", + "longitude": "24.93562000" + }, + { + "id": "53422", + "name": "Íos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.73333000", + "longitude": "25.28333000" + }, + { + "id": "53417", + "name": "Émponas", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.22683000", + "longitude": "27.85645000" + }, + { + "id": "52541", + "name": "Chálki", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.22243000", + "longitude": "27.61191000" + }, + { + "id": "52584", + "name": "Emporeío", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.35816000", + "longitude": "25.44615000" + }, + { + "id": "52590", + "name": "Ermoúpolis", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.44466000", + "longitude": "24.94290000" + }, + { + "id": "52598", + "name": "Faliraki", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.33981000", + "longitude": "28.19942000" + }, + { + "id": "52606", + "name": "Filótion", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.05167000", + "longitude": "25.49829000" + }, + { + "id": "52607", + "name": "Firá", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.42107000", + "longitude": "25.43087000" + }, + { + "id": "52609", + "name": "Folégandros", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.62794000", + "longitude": "24.92021000" + }, + { + "id": "52611", + "name": "Fry", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "35.41623000", + "longitude": "26.92328000" + }, + { + "id": "52657", + "name": "Ialysós", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.41352000", + "longitude": "28.15516000" + }, + { + "id": "52712", + "name": "Kardámaina", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.78305000", + "longitude": "27.14289000" + }, + { + "id": "52715", + "name": "Karpathos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "35.50701000", + "longitude": "27.21322000" + }, + { + "id": "52803", + "name": "Kálymnos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.95030000", + "longitude": "26.98388000" + }, + { + "id": "52819", + "name": "Kéfalos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.74507000", + "longitude": "26.95961000" + }, + { + "id": "52820", + "name": "Kímolos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.79368000", + "longitude": "24.57577000" + }, + { + "id": "52831", + "name": "Kýthnos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.41237000", + "longitude": "24.43068000" + }, + { + "id": "52773", + "name": "Kos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.89295000", + "longitude": "27.28768000" + }, + { + "id": "52784", + "name": "Kremastí", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.40981000", + "longitude": "28.11920000" + }, + { + "id": "52836", + "name": "Lakkí", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.13344000", + "longitude": "26.85237000" + }, + { + "id": "52875", + "name": "Lárdos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.09419000", + "longitude": "28.01565000" + }, + { + "id": "52894", + "name": "Mandráki", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.61139000", + "longitude": "27.13333000" + }, + { + "id": "52957", + "name": "Mílos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.74536000", + "longitude": "24.42650000" + }, + { + "id": "52916", + "name": "Megálo Chorió", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.45820000", + "longitude": "26.97272000" + }, + { + "id": "52917", + "name": "Megísti", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.14889000", + "longitude": "29.59361000" + }, + { + "id": "52926", + "name": "Mesariá", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.39893000", + "longitude": "25.44807000" + }, + { + "id": "52950", + "name": "Mykonos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.44529000", + "longitude": "25.32872000" + }, + { + "id": "52997", + "name": "Náousa", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.12181000", + "longitude": "25.24014000" + }, + { + "id": "52998", + "name": "Náxos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.10556000", + "longitude": "25.37639000" + }, + { + "id": "52989", + "name": "Nomós Kykládon", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.41667000", + "longitude": "24.91667000" + }, + { + "id": "53069", + "name": "Oía", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.46260000", + "longitude": "25.37637000" + }, + { + "id": "53064", + "name": "Ornós", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.42391000", + "longitude": "25.32248000" + }, + { + "id": "53164", + "name": "Pánormos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.97156000", + "longitude": "26.93727000" + }, + { + "id": "53166", + "name": "Páros", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.08333000", + "longitude": "25.15000000" + }, + { + "id": "53168", + "name": "Pátmos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.30895000", + "longitude": "26.54723000" + }, + { + "id": "53159", + "name": "Pylí", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.84472000", + "longitude": "27.15932000" + }, + { + "id": "53203", + "name": "Ródos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.43556000", + "longitude": "28.22199000" + }, + { + "id": "53267", + "name": "Sérifos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.15397000", + "longitude": "24.50614000" + }, + { + "id": "53273", + "name": "Sými", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.61547000", + "longitude": "27.83619000" + }, + { + "id": "53224", + "name": "Skála", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.32218000", + "longitude": "26.54300000" + }, + { + "id": "53303", + "name": "Tínos", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.53753000", + "longitude": "25.16343000" + }, + { + "id": "53341", + "name": "Vári", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "37.39859000", + "longitude": "24.94904000" + }, + { + "id": "53362", + "name": "Zipári", + "state_id": 2118, + "state_code": "L", + "country_id": 85, + "country_code": "GR", + "latitude": "36.87696000", + "longitude": "27.20532000" + }, + { + "id": "52522", + "name": "Aígio", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.24861000", + "longitude": "22.08194000" + }, + { + "id": "52523", + "name": "Aíyira", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.14846000", + "longitude": "22.35426000" + }, + { + "id": "52414", + "name": "Agrínio", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.62139000", + "longitude": "21.40778000" + }, + { + "id": "52432", + "name": "Aitolikó", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.43704000", + "longitude": "21.35358000" + }, + { + "id": "52437", + "name": "Akráta", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.15469000", + "longitude": "22.31830000" + }, + { + "id": "52438", + "name": "Aktaío", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.30444000", + "longitude": "21.79440000" + }, + { + "id": "52442", + "name": "Alfeioúsa", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.64019000", + "longitude": "21.53750000" + }, + { + "id": "52447", + "name": "Amaliáda", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.79842000", + "longitude": "21.35068000" + }, + { + "id": "52449", + "name": "Amfilochía", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.85944000", + "longitude": "21.16639000" + }, + { + "id": "52463", + "name": "Andravída", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.90588000", + "longitude": "21.26936000" + }, + { + "id": "52466", + "name": "Angelókastro", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.56585000", + "longitude": "21.29631000" + }, + { + "id": "52474", + "name": "Antirrio", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.33014000", + "longitude": "21.76413000" + }, + { + "id": "52482", + "name": "Archaía Olympía", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.64788000", + "longitude": "21.62710000" + }, + { + "id": "52483", + "name": "Archontochóri", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.70053000", + "longitude": "21.03896000" + }, + { + "id": "52495", + "name": "Arkoúdi", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.84681000", + "longitude": "21.11022000" + }, + { + "id": "52509", + "name": "Astakós", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.53556000", + "longitude": "21.08135000" + }, + { + "id": "53391", + "name": "Áno Kastrítsi", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.27228000", + "longitude": "21.83600000" + }, + { + "id": "53411", + "name": "Áyios Konstandínos", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.63337000", + "longitude": "21.39950000" + }, + { + "id": "52525", + "name": "Chalandrítsa", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.10843000", + "longitude": "21.78349000" + }, + { + "id": "52542", + "name": "Chávari", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.84842000", + "longitude": "21.38403000" + }, + { + "id": "52550", + "name": "Dhokímion", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.61352000", + "longitude": "21.38072000" + }, + { + "id": "52588", + "name": "Epitálio", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.62675000", + "longitude": "21.49528000" + }, + { + "id": "52614", + "name": "Fyteíes", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.69524000", + "longitude": "21.18467000" + }, + { + "id": "52622", + "name": "Galatás", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.35742000", + "longitude": "21.56222000" + }, + { + "id": "52629", + "name": "Gastoúni", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.85000000", + "longitude": "21.25000000" + }, + { + "id": "52630", + "name": "Gavaloú", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.52903000", + "longitude": "21.53226000" + }, + { + "id": "52640", + "name": "Goúmero", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.76236000", + "longitude": "21.61853000" + }, + { + "id": "52672", + "name": "Kainoúryion", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.60453000", + "longitude": "21.48776000" + }, + { + "id": "52688", + "name": "Kalávryta", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.03222000", + "longitude": "22.11250000" + }, + { + "id": "52699", + "name": "Kamárai", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.29881000", + "longitude": "21.99892000" + }, + { + "id": "52702", + "name": "Kandíla", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.70564000", + "longitude": "20.94749000" + }, + { + "id": "52720", + "name": "Karátoula", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.73564000", + "longitude": "21.53578000" + }, + { + "id": "52707", + "name": "Kardamás", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.76729000", + "longitude": "21.33946000" + }, + { + "id": "52732", + "name": "Katoúna", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.78547000", + "longitude": "21.11417000" + }, + { + "id": "52731", + "name": "Katochí", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.41237000", + "longitude": "21.25258000" + }, + { + "id": "52736", + "name": "Kavásila", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.87581000", + "longitude": "21.26422000" + }, + { + "id": "52805", + "name": "Káto Achaḯa", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.15000000", + "longitude": "21.55000000" + }, + { + "id": "52813", + "name": "Káto Mazaráki", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.07035000", + "longitude": "21.65097000" + }, + { + "id": "52791", + "name": "Kréstena", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.59193000", + "longitude": "21.62034000" + }, + { + "id": "52792", + "name": "Kríkellos", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.94532000", + "longitude": "21.17910000" + }, + { + "id": "52795", + "name": "Kyllíni", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.93542000", + "longitude": "21.14503000" + }, + { + "id": "52873", + "name": "Lálas", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.70936000", + "longitude": "21.72117000" + }, + { + "id": "52874", + "name": "Lápas", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.09755000", + "longitude": "21.41861000" + }, + { + "id": "52839", + "name": "Lechainá", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.93333000", + "longitude": "21.26667000" + }, + { + "id": "52846", + "name": "Lepenoú", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.70839000", + "longitude": "21.28970000" + }, + { + "id": "52854", + "name": "Limnokhórion", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.14115000", + "longitude": "21.48047000" + }, + { + "id": "52890", + "name": "Makrísia", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.60957000", + "longitude": "21.60509000" + }, + { + "id": "52896", + "name": "Manoláda", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.04708000", + "longitude": "21.34814000" + }, + { + "id": "52905", + "name": "Mataránga", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.52359000", + "longitude": "21.47325000" + }, + { + "id": "52914", + "name": "Megáli Khóra", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.64629000", + "longitude": "21.37309000" + }, + { + "id": "52925", + "name": "Menídi", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "39.04213000", + "longitude": "21.11875000" + }, + { + "id": "52928", + "name": "Mesolóngi", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.37138000", + "longitude": "21.43151000" + }, + { + "id": "52936", + "name": "Mindilóglion", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.18387000", + "longitude": "21.70133000" + }, + { + "id": "52941", + "name": "Monastiráki", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.85053000", + "longitude": "20.94458000" + }, + { + "id": "52951", + "name": "Myrsíni", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.92117000", + "longitude": "21.23700000" + }, + { + "id": "52994", + "name": "Náfpaktos", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.39167000", + "longitude": "21.82750000" + }, + { + "id": "53018", + "name": "Néa Manoláda", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.05378000", + "longitude": "21.38189000" + }, + { + "id": "52974", + "name": "Neápolis", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.67144000", + "longitude": "21.36274000" + }, + { + "id": "52968", + "name": "Neochóri", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.90794000", + "longitude": "21.20392000" + }, + { + "id": "52969", + "name": "Neochórion", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.40847000", + "longitude": "21.27511000" + }, + { + "id": "52978", + "name": "Nomós Achaḯas", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.00000000", + "longitude": "22.00000000" + }, + { + "id": "52979", + "name": "Nomós Aitolías kai Akarnanías", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.50000000", + "longitude": "21.50000000" + }, + { + "id": "52984", + "name": "Nomós Ileías", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.75000000", + "longitude": "21.58333000" + }, + { + "id": "53067", + "name": "Ovriá", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.18866000", + "longitude": "21.72903000" + }, + { + "id": "53085", + "name": "Panaitólion", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.58316000", + "longitude": "21.44729000" + }, + { + "id": "53087", + "name": "Pappadhátai", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.52816000", + "longitude": "21.45016000" + }, + { + "id": "53090", + "name": "Paralía", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.19833000", + "longitude": "21.70263000" + }, + { + "id": "53098", + "name": "Paravóla", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.61472000", + "longitude": "21.52046000" + }, + { + "id": "53162", + "name": "Pálairos", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.78300000", + "longitude": "20.88183000" + }, + { + "id": "53169", + "name": "Pátra", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.24444000", + "longitude": "21.73444000" + }, + { + "id": "53184", + "name": "Pýrgos", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.67513000", + "longitude": "21.44102000" + }, + { + "id": "53104", + "name": "Pelópi", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.67444000", + "longitude": "21.59344000" + }, + { + "id": "53130", + "name": "Plátanos", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.66731000", + "longitude": "21.61108000" + }, + { + "id": "53200", + "name": "Río", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.29558000", + "longitude": "21.78504000" + }, + { + "id": "53194", + "name": "Rododáfni", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.26976000", + "longitude": "22.04875000" + }, + { + "id": "53199", + "name": "Royítika", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.18268000", + "longitude": "21.68414000" + }, + { + "id": "53206", + "name": "Sardínia", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.89003000", + "longitude": "21.20619000" + }, + { + "id": "53208", + "name": "Savália", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.82158000", + "longitude": "21.29425000" + }, + { + "id": "53256", + "name": "Stános", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.80453000", + "longitude": "21.17461000" + }, + { + "id": "53261", + "name": "Sylivainiótika", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.16139000", + "longitude": "22.33156000" + }, + { + "id": "53262", + "name": "Synoikismós Chavaríou", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.85575000", + "longitude": "21.38789000" + }, + { + "id": "53301", + "name": "Témeni", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.23707000", + "longitude": "22.12533000" + }, + { + "id": "53284", + "name": "Thérmo", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.57358000", + "longitude": "21.66628000" + }, + { + "id": "53288", + "name": "Triandaíika", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.65530000", + "longitude": "21.38315000" + }, + { + "id": "53309", + "name": "Vartholomió", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.86219000", + "longitude": "21.20575000" + }, + { + "id": "53310", + "name": "Varvásaina", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.67106000", + "longitude": "21.49886000" + }, + { + "id": "53339", + "name": "Várda", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.03058000", + "longitude": "21.36506000" + }, + { + "id": "53346", + "name": "Vónitsa", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.91639000", + "longitude": "20.88639000" + }, + { + "id": "53332", + "name": "Vrachnaíika", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "38.16253000", + "longitude": "21.66693000" + }, + { + "id": "53356", + "name": "Zacháro", + "state_id": 2096, + "state_code": "G", + "country_id": 85, + "country_code": "GR", + "latitude": "37.48333000", + "longitude": "21.65000000" + }, + { + "id": "52428", + "name": "Aianí", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.16381000", + "longitude": "21.81945000" + }, + { + "id": "52435", + "name": "Akriní", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.43492000", + "longitude": "21.90609000" + }, + { + "id": "52458", + "name": "Amýntaio", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.68967000", + "longitude": "21.67974000" + }, + { + "id": "52451", + "name": "Ammochóri", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.78203000", + "longitude": "21.48458000" + }, + { + "id": "52460", + "name": "Anaráchi", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.49234000", + "longitude": "21.57279000" + }, + { + "id": "52488", + "name": "Argos Orestiko", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.45354000", + "longitude": "21.25889000" + }, + { + "id": "53392", + "name": "Áno Kómi", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.22660000", + "longitude": "21.82827000" + }, + { + "id": "52533", + "name": "Chlói", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.53918000", + "longitude": "21.25923000" + }, + { + "id": "52548", + "name": "Deskáti", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "39.92422000", + "longitude": "21.81031000" + }, + { + "id": "52585", + "name": "Empório", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.48866000", + "longitude": "21.55768000" + }, + { + "id": "52592", + "name": "Erátyra", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.34253000", + "longitude": "21.51333000" + }, + { + "id": "52605", + "name": "Filótas", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.62520000", + "longitude": "21.70851000" + }, + { + "id": "52608", + "name": "Flórina", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.78197000", + "longitude": "21.40981000" + }, + { + "id": "52620", + "name": "Galatiní", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.31966000", + "longitude": "21.55148000" + }, + { + "id": "52646", + "name": "Grevená", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.08452000", + "longitude": "21.42744000" + }, + { + "id": "52724", + "name": "Kastoria", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.52165000", + "longitude": "21.26341000" + }, + { + "id": "52753", + "name": "Kleítos", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.43140000", + "longitude": "21.85806000" + }, + { + "id": "52781", + "name": "Koíla", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.33055000", + "longitude": "21.79102000" + }, + { + "id": "52761", + "name": "Komniná", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.59057000", + "longitude": "21.77671000" + }, + { + "id": "52780", + "name": "Kozáni", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.30069000", + "longitude": "21.78896000" + }, + { + "id": "52793", + "name": "Krókos", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.26349000", + "longitude": "21.81760000" + }, + { + "id": "52835", + "name": "Laimós", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.83628000", + "longitude": "21.14061000" + }, + { + "id": "52878", + "name": "Léchovo", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.58442000", + "longitude": "21.49218000" + }, + { + "id": "52861", + "name": "Livaderó", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.03455000", + "longitude": "21.94279000" + }, + { + "id": "52895", + "name": "Maniákoi", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.50064000", + "longitude": "21.24446000" + }, + { + "id": "52906", + "name": "Mavrochóri", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.51224000", + "longitude": "21.32038000" + }, + { + "id": "52923", + "name": "Melíti", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.83434000", + "longitude": "21.58426000" + }, + { + "id": "52929", + "name": "Mesopotamía", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.50252000", + "longitude": "21.16110000" + }, + { + "id": "52960", + "name": "Nea Lava", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.19048000", + "longitude": "22.01320000" + }, + { + "id": "52972", + "name": "Nestório", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.41278000", + "longitude": "21.06222000" + }, + { + "id": "52988", + "name": "Nomós Kozánis", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.33333000", + "longitude": "21.71667000" + }, + { + "id": "53126", + "name": "Platanórevma", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.20083000", + "longitude": "22.02488000" + }, + { + "id": "53157", + "name": "Ptolemaḯda", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.51472000", + "longitude": "21.67861000" + }, + { + "id": "53269", + "name": "Sérvia", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.17972000", + "longitude": "21.99444000" + }, + { + "id": "53218", + "name": "Siátista", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.26194000", + "longitude": "21.54417000" + }, + { + "id": "53297", + "name": "Tsotíli", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.26147000", + "longitude": "21.32533000" + }, + { + "id": "53319", + "name": "Velventós", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.25532000", + "longitude": "22.07543000" + }, + { + "id": "53349", + "name": "Xinó Neró", + "state_id": 2108, + "state_code": "C", + "country_id": 85, + "country_code": "GR", + "latitude": "40.69028000", + "longitude": "21.62324000" + }, + { + "id": "52030", + "name": "Hillsborough", + "state_id": 3867, + "state_code": "10", + "country_id": 87, + "country_code": "GD", + "latitude": "12.48292000", + "longitude": "-61.45597000" + }, + { + "id": "52029", + "name": "Grenville", + "state_id": 3865, + "state_code": "01", + "country_id": 87, + "country_code": "GD", + "latitude": "12.12278000", + "longitude": "-61.62498000" + }, + { + "id": "52031", + "name": "Saint David’s", + "state_id": 3869, + "state_code": "02", + "country_id": 87, + "country_code": "GD", + "latitude": "12.04903000", + "longitude": "-61.66875000" + }, + { + "id": "52032", + "name": "Saint George's", + "state_id": 3864, + "state_code": "03", + "country_id": 87, + "country_code": "GD", + "latitude": "12.05288000", + "longitude": "-61.75226000" + }, + { + "id": "52028", + "name": "Gouyave", + "state_id": 3868, + "state_code": "04", + "country_id": 87, + "country_code": "GD", + "latitude": "12.16462000", + "longitude": "-61.72965000" + }, + { + "id": "52034", + "name": "Victoria", + "state_id": 3866, + "state_code": "05", + "country_id": 87, + "country_code": "GD", + "latitude": "12.19021000", + "longitude": "-61.70677000" + }, + { + "id": "52033", + "name": "Sauteurs", + "state_id": 3863, + "state_code": "06", + "country_id": 87, + "country_code": "GD", + "latitude": "12.21833000", + "longitude": "-61.63917000" + }, + { + "id": "53437", + "name": "Cahabón", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.56667000", + "longitude": "-89.81667000" + }, + { + "id": "53444", + "name": "Chahal Guatemala", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.79122000", + "longitude": "-89.60518000" + }, + { + "id": "53457", + "name": "Chisec", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.81667000", + "longitude": "-90.28333000" + }, + { + "id": "53462", + "name": "Cobán", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.47083000", + "longitude": "-90.37083000" + }, + { + "id": "53523", + "name": "La Tinta", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.31667000", + "longitude": "-89.88333000" + }, + { + "id": "53524", + "name": "Lanquín", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.56667000", + "longitude": "-89.96667000" + }, + { + "id": "53620", + "name": "Panzós", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.40000000", + "longitude": "-89.66667000" + }, + { + "id": "53671", + "name": "San Cristóbal Verapaz", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.39632000", + "longitude": "-90.56513000" + }, + { + "id": "53693", + "name": "San Juan Chamelco", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.43333000", + "longitude": "-90.33333000" + }, + { + "id": "53725", + "name": "San Pedro Carchá", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.48333000", + "longitude": "-90.26667000" + }, + { + "id": "53758", + "name": "Santa Cruz Verapaz", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.36667000", + "longitude": "-90.43333000" + }, + { + "id": "53777", + "name": "Senahú", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.40000000", + "longitude": "-89.83333000" + }, + { + "id": "53786", + "name": "Tactic", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.32218000", + "longitude": "-90.35448000" + }, + { + "id": "53788", + "name": "Tamahú", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.30890000", + "longitude": "-90.23599000" + }, + { + "id": "53796", + "name": "Tucurú", + "state_id": 3671, + "state_code": "AV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.30000000", + "longitude": "-90.06667000" + }, + { + "id": "53474", + "name": "Cubulco", + "state_id": 3674, + "state_code": "BV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.10452000", + "longitude": "-90.62871000" + }, + { + "id": "53482", + "name": "El Chol", + "state_id": 3674, + "state_code": "BV", + "country_id": 90, + "country_code": "GT", + "latitude": "14.96055000", + "longitude": "-90.48799000" + }, + { + "id": "53497", + "name": "Granados", + "state_id": 3674, + "state_code": "BV", + "country_id": 90, + "country_code": "GT", + "latitude": "14.91649000", + "longitude": "-90.52292000" + }, + { + "id": "53636", + "name": "Purulhá", + "state_id": 3674, + "state_code": "BV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.26667000", + "longitude": "-90.20000000" + }, + { + "id": "53640", + "name": "Rabinal", + "state_id": 3674, + "state_code": "BV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.08530000", + "longitude": "-90.49255000" + }, + { + "id": "53645", + "name": "Salamá", + "state_id": 3674, + "state_code": "BV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.10278000", + "longitude": "-90.31806000" + }, + { + "id": "53680", + "name": "San Jerónimo", + "state_id": 3674, + "state_code": "BV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.06032000", + "longitude": "-90.24050000" + }, + { + "id": "53716", + "name": "San Miguel Chicaj", + "state_id": 3674, + "state_code": "BV", + "country_id": 90, + "country_code": "GT", + "latitude": "15.09472000", + "longitude": "-90.39442000" + }, + { + "id": "53425", + "name": "Acatenango", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.55451000", + "longitude": "-90.94368000" + }, + { + "id": "53452", + "name": "Chimaltenango", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.66111000", + "longitude": "-90.81944000" + }, + { + "id": "53465", + "name": "Comalapa", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.74086000", + "longitude": "-90.88761000" + }, + { + "id": "53489", + "name": "El Tejar", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.64683000", + "longitude": "-90.79122000" + }, + { + "id": "53621", + "name": "Parramos", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.60891000", + "longitude": "-90.80303000" + }, + { + "id": "53627", + "name": "Patzún", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.68189000", + "longitude": "-91.01397000" + }, + { + "id": "53625", + "name": "Patzicía", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63194000", + "longitude": "-90.92659000" + }, + { + "id": "53630", + "name": "Pochuta", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54450000", + "longitude": "-91.08904000" + }, + { + "id": "53650", + "name": "San Andrés Itzapa", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.62222000", + "longitude": "-90.84314000" + }, + { + "id": "53689", + "name": "San José Poaquil", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.81808000", + "longitude": "-90.91248000" + }, + { + "id": "53710", + "name": "San Martín Jilotepeque", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.78008000", + "longitude": "-90.79259000" + }, + { + "id": "53745", + "name": "Santa Apolonia", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.79049000", + "longitude": "-90.97267000" + }, + { + "id": "53754", + "name": "Santa Cruz Balanyá", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.68522000", + "longitude": "-90.91906000" + }, + { + "id": "53790", + "name": "Tecpán Guatemala", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.76181000", + "longitude": "-90.99247000" + }, + { + "id": "53800", + "name": "Yepocapa", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.50195000", + "longitude": "-90.95396000" + }, + { + "id": "53804", + "name": "Zaragoza", + "state_id": 3675, + "state_code": "CM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.64968000", + "longitude": "-90.89034000" + }, + { + "id": "53439", + "name": "Camotán", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.82017000", + "longitude": "-89.37224000" + }, + { + "id": "53455", + "name": "Chiquimula", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.80000000", + "longitude": "-89.54583000" + }, + { + "id": "53471", + "name": "Concepción Las Minas", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.52173000", + "longitude": "-89.45717000" + }, + { + "id": "53492", + "name": "Esquipulas", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.56571000", + "longitude": "-89.35166000" + }, + { + "id": "53505", + "name": "Ipala", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.61667000", + "longitude": "-89.61667000" + }, + { + "id": "53514", + "name": "Jocotán", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.82072000", + "longitude": "-89.38991000" + }, + { + "id": "53611", + "name": "Olopa", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.69229000", + "longitude": "-89.35003000" + }, + { + "id": "53639", + "name": "Quezaltepeque", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63553000", + "longitude": "-89.44241000" + }, + { + "id": "53679", + "name": "San Jacinto", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.66667000", + "longitude": "-89.50000000" + }, + { + "id": "53685", + "name": "San José La Arada", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.71667000", + "longitude": "-89.58333000" + }, + { + "id": "53695", + "name": "San Juan Ermita", + "state_id": 3666, + "state_code": "CQ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.76471000", + "longitude": "-89.43014000" + }, + { + "id": "53484", + "name": "El Jícaro", + "state_id": 3662, + "state_code": "PR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.91667000", + "longitude": "-89.90000000" + }, + { + "id": "53499", + "name": "Guastatoya", + "state_id": 3662, + "state_code": "PR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.85417000", + "longitude": "-90.06944000" + }, + { + "id": "53538", + "name": "Morazán", + "state_id": 3662, + "state_code": "PR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.93278000", + "longitude": "-90.14306000" + }, + { + "id": "53648", + "name": "San Agustín Acasaguastlán", + "state_id": 3662, + "state_code": "PR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.95000000", + "longitude": "-89.96667000" + }, + { + "id": "53658", + "name": "San Antonio La Paz", + "state_id": 3662, + "state_code": "PR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.75888000", + "longitude": "-90.28485000" + }, + { + "id": "53668", + "name": "San Cristóbal Acasaguastlán", + "state_id": 3662, + "state_code": "PR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.91667000", + "longitude": "-89.88333000" + }, + { + "id": "53741", + "name": "Sanarate", + "state_id": 3662, + "state_code": "PR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.78828000", + "longitude": "-90.19876000" + }, + { + "id": "53742", + "name": "Sansare", + "state_id": 3662, + "state_code": "PR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.74572000", + "longitude": "-90.11615000" + }, + { + "id": "53491", + "name": "Escuintla", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.30500000", + "longitude": "-90.78500000" + }, + { + "id": "53498", + "name": "Guanagazapa", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.22528000", + "longitude": "-90.64333000" + }, + { + "id": "53508", + "name": "Iztapa", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "13.93333000", + "longitude": "-90.70750000" + }, + { + "id": "53517", + "name": "La Democracia", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.23083000", + "longitude": "-90.94722000" + }, + { + "id": "53519", + "name": "La Gomera", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.08213000", + "longitude": "-91.05383000" + }, + { + "id": "53530", + "name": "Masagua", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.20306000", + "longitude": "-90.84806000" + }, + { + "id": "53605", + "name": "Nueva Concepción", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.20000000", + "longitude": "-91.30000000" + }, + { + "id": "53618", + "name": "Palín", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.40358000", + "longitude": "-90.69659000" + }, + { + "id": "53635", + "name": "Puerto San José", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "13.92740000", + "longitude": "-90.82166000" + }, + { + "id": "53740", + "name": "San Vicente Pacaya", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.41466000", + "longitude": "-90.63613000" + }, + { + "id": "53762", + "name": "Santa Lucía Cotzumalguapa", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.33505000", + "longitude": "-91.02339000" + }, + { + "id": "53781", + "name": "Siquinalá", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.30611000", + "longitude": "-90.96500000" + }, + { + "id": "53793", + "name": "Tiquisate", + "state_id": 3677, + "state_code": "ES", + "country_id": 90, + "country_code": "GT", + "latitude": "14.28356000", + "longitude": "-91.36063000" + }, + { + "id": "53430", + "name": "Amatitlán", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.47740000", + "longitude": "-90.63489000" + }, + { + "id": "53453", + "name": "Chinautla", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.70289000", + "longitude": "-90.49983000" + }, + { + "id": "53458", + "name": "Chuarrancho", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.81794000", + "longitude": "-90.51568000" + }, + { + "id": "53496", + "name": "Fraijanes", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.46528000", + "longitude": "-90.44083000" + }, + { + "id": "53500", + "name": "Guatemala City", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.64072000", + "longitude": "-90.51327000" + }, + { + "id": "53534", + "name": "Mixco", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63077000", + "longitude": "-90.60711000" + }, + { + "id": "53616", + "name": "Palencia", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.66715000", + "longitude": "-90.35721000" + }, + { + "id": "53628", + "name": "Petapa", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.50189000", + "longitude": "-90.56196000" + }, + { + "id": "53690", + "name": "San José del Golfo", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.76414000", + "longitude": "-90.37228000" + }, + { + "id": "53688", + "name": "San José Pinula", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54600000", + "longitude": "-90.41288000" + }, + { + "id": "53698", + "name": "San Juan Sacatepéquez", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.71889000", + "longitude": "-90.64417000" + }, + { + "id": "53724", + "name": "San Pedro Ayampuc", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.77943000", + "longitude": "-90.45318000" + }, + { + "id": "53730", + "name": "San Pedro Sacatepéquez", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.68612000", + "longitude": "-90.64253000" + }, + { + "id": "53736", + "name": "San Raimundo", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.76462000", + "longitude": "-90.59493000" + }, + { + "id": "53752", + "name": "Santa Catarina Pinula", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.57047000", + "longitude": "-90.49925000" + }, + { + "id": "53798", + "name": "Villa Canales", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.48285000", + "longitude": "-90.53425000" + }, + { + "id": "53799", + "name": "Villa Nueva", + "state_id": 3672, + "state_code": "GU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.52512000", + "longitude": "-90.58544000" + }, + { + "id": "53427", + "name": "Aguacatán", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.34222000", + "longitude": "-91.31141000" + }, + { + "id": "53435", + "name": "Barillas", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.80361000", + "longitude": "-91.31583000" + }, + { + "id": "53447", + "name": "Chiantla", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.35484000", + "longitude": "-91.45807000" + }, + { + "id": "53464", + "name": "Colotenango", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.40602000", + "longitude": "-91.71267000" + }, + { + "id": "53470", + "name": "Concepción Huista", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.62378000", + "longitude": "-91.66521000" + }, + { + "id": "53476", + "name": "Cuilco", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.40719000", + "longitude": "-91.94667000" + }, + { + "id": "53503", + "name": "Huehuetenango", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.31918000", + "longitude": "-91.47241000" + }, + { + "id": "53507", + "name": "Ixtahuacán", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.41688000", + "longitude": "-91.76927000" + }, + { + "id": "53509", + "name": "Jacaltenango", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.66662000", + "longitude": "-91.71177000" + }, + { + "id": "53521", + "name": "La Libertad", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.51421000", + "longitude": "-91.86944000" + }, + { + "id": "53528", + "name": "Malacatancito", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.24457000", + "longitude": "-91.49901000" + }, + { + "id": "53604", + "name": "Nentón", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.80070000", + "longitude": "-91.75464000" + }, + { + "id": "53656", + "name": "San Antonio Huista", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.65010000", + "longitude": "-91.77163000" + }, + { + "id": "53678", + "name": "San Gaspar Ixchil", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.38796000", + "longitude": "-91.72564000" + }, + { + "id": "53691", + "name": "San Juan Atitán", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.42886000", + "longitude": "-91.62398000" + }, + { + "id": "53696", + "name": "San Juan Ixcoy", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.60022000", + "longitude": "-91.44639000" + }, + { + "id": "53714", + "name": "San Mateo Ixtatán", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.83194000", + "longitude": "-91.47806000" + }, + { + "id": "53715", + "name": "San Miguel Acatán", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.70401000", + "longitude": "-91.59771000" + }, + { + "id": "53727", + "name": "San Pedro Necta", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.49142000", + "longitude": "-91.76551000" + }, + { + "id": "53732", + "name": "San Rafael La Independencia", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.70150000", + "longitude": "-91.53553000" + }, + { + "id": "53734", + "name": "San Rafael Petzal", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.40487000", + "longitude": "-91.66451000" + }, + { + "id": "53738", + "name": "San Sebastián Coatán", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.73584000", + "longitude": "-91.56285000" + }, + { + "id": "53739", + "name": "San Sebastián Huehuetenango", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.38768000", + "longitude": "-91.61530000" + }, + { + "id": "53744", + "name": "Santa Ana Huista", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.68085000", + "longitude": "-91.82005000" + }, + { + "id": "53747", + "name": "Santa Bárbara", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.31617000", + "longitude": "-91.63279000" + }, + { + "id": "53760", + "name": "Santa Eulalia", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.73060000", + "longitude": "-91.45846000" + }, + { + "id": "53771", + "name": "Santiago Chimaltenango", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.47658000", + "longitude": "-91.69656000" + }, + { + "id": "53783", + "name": "Soloma", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.65841000", + "longitude": "-91.42994000" + }, + { + "id": "53791", + "name": "Tectitán", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.30630000", + "longitude": "-92.06051000" + }, + { + "id": "53794", + "name": "Todos Santos Cuchumatán", + "state_id": 3670, + "state_code": "HU", + "country_id": 90, + "country_code": "GT", + "latitude": "15.50846000", + "longitude": "-91.60382000" + }, + { + "id": "53483", + "name": "El Estor", + "state_id": 3659, + "state_code": "IZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.53333000", + "longitude": "-89.35000000" + }, + { + "id": "53526", + "name": "Lívingston", + "state_id": 3659, + "state_code": "IZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.82826000", + "longitude": "-88.75039000" + }, + { + "id": "53525", + "name": "Los Amates", + "state_id": 3659, + "state_code": "IZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.25645000", + "longitude": "-89.09723000" + }, + { + "id": "53537", + "name": "Morales", + "state_id": 3659, + "state_code": "IZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.48333000", + "longitude": "-88.81667000" + }, + { + "id": "53571", + "name": "Municipio de Morales", + "state_id": 3659, + "state_code": "IZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.44494000", + "longitude": "-88.76646000" + }, + { + "id": "53577", + "name": "Municipio de Puerto Barrios", + "state_id": 3659, + "state_code": "IZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.71754000", + "longitude": "-88.58517000" + }, + { + "id": "53634", + "name": "Puerto Barrios", + "state_id": 3659, + "state_code": "IZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.72778000", + "longitude": "-88.59444000" + }, + { + "id": "53510", + "name": "Jalapa", + "state_id": 3658, + "state_code": "JA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63472000", + "longitude": "-89.98889000" + }, + { + "id": "53531", + "name": "Mataquescuintla", + "state_id": 3658, + "state_code": "JA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.52917000", + "longitude": "-90.18417000" + }, + { + "id": "53536", + "name": "Monjas", + "state_id": 3658, + "state_code": "JA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.50000000", + "longitude": "-89.86667000" + }, + { + "id": "53564", + "name": "Municipio de Jalapa", + "state_id": 3658, + "state_code": "JA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63275000", + "longitude": "-90.03301000" + }, + { + "id": "53569", + "name": "Municipio de Mataquescuintla", + "state_id": 3658, + "state_code": "JA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54777000", + "longitude": "-90.20008000" + }, + { + "id": "53706", + "name": "San Luis Jilotepeque", + "state_id": 3658, + "state_code": "JA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.65000000", + "longitude": "-89.73333000" + }, + { + "id": "53707", + "name": "San Manuel Chaparrón", + "state_id": 3658, + "state_code": "JA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.51667000", + "longitude": "-89.76667000" + }, + { + "id": "53728", + "name": "San Pedro Pinula", + "state_id": 3658, + "state_code": "JA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.66667000", + "longitude": "-89.85000000" + }, + { + "id": "53426", + "name": "Agua Blanca", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.50000000", + "longitude": "-89.65000000" + }, + { + "id": "53432", + "name": "Asunción Mita", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.33083000", + "longitude": "-89.71083000" + }, + { + "id": "53433", + "name": "Atescatempa", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.17444000", + "longitude": "-89.74250000" + }, + { + "id": "53466", + "name": "Comapa", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.11667000", + "longitude": "-89.91667000" + }, + { + "id": "53473", + "name": "Conguaco", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.04417000", + "longitude": "-90.03111000" + }, + { + "id": "53480", + "name": "El Adelanto", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.16667000", + "longitude": "-89.83333000" + }, + { + "id": "53486", + "name": "El Progreso", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.35000000", + "longitude": "-89.85000000" + }, + { + "id": "53511", + "name": "Jalpatagua", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.14167000", + "longitude": "-90.00861000" + }, + { + "id": "53512", + "name": "Jerez", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.10000000", + "longitude": "-89.75000000" + }, + { + "id": "53516", + "name": "Jutiapa", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.29167000", + "longitude": "-89.89583000" + }, + { + "id": "53539", + "name": "Moyuta", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.03861000", + "longitude": "-90.08083000" + }, + { + "id": "53543", + "name": "Municipio de Asunción Mita", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.30330000", + "longitude": "-89.67623000" + }, + { + "id": "53622", + "name": "Pasaco", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "13.97722000", + "longitude": "-90.20639000" + }, + { + "id": "53637", + "name": "Quesada", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.27028000", + "longitude": "-90.04028000" + }, + { + "id": "53682", + "name": "San José Acatempa", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.26528000", + "longitude": "-90.12694000" + }, + { + "id": "53750", + "name": "Santa Catarina Mita", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.45000000", + "longitude": "-89.75000000" + }, + { + "id": "53801", + "name": "Yupiltepeque", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.20000000", + "longitude": "-89.78333000" + }, + { + "id": "53803", + "name": "Zapotitlán", + "state_id": 3673, + "state_code": "JU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.13333000", + "longitude": "-89.83333000" + }, + { + "id": "53479", + "name": "Dolores", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.51178000", + "longitude": "-89.41704000" + }, + { + "id": "53494", + "name": "Flores", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.92258000", + "longitude": "-89.89941000" + }, + { + "id": "53520", + "name": "La Libertad", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.78850000", + "longitude": "-90.11698000" + }, + { + "id": "53533", + "name": "Melchor de Mencos", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "17.06606000", + "longitude": "-89.15229000" + }, + { + "id": "53560", + "name": "Municipio de Flores", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.92381000", + "longitude": "-89.89709000" + }, + { + "id": "53576", + "name": "Municipio de Poptún", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.35687000", + "longitude": "-89.58912000" + }, + { + "id": "53578", + "name": "Municipio de San Andrés", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "17.49541000", + "longitude": "-90.39883000" + }, + { + "id": "53582", + "name": "Municipio de San Benito", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.91289000", + "longitude": "-89.90979000" + }, + { + "id": "53584", + "name": "Municipio de San Francisco", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.72425000", + "longitude": "-89.90877000" + }, + { + "id": "53589", + "name": "Municipio de Santa Ana", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.77305000", + "longitude": "-89.66878000" + }, + { + "id": "53596", + "name": "Municipio de Sayaxché", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.33160000", + "longitude": "-90.16339000" + }, + { + "id": "53631", + "name": "Poptún", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.33111000", + "longitude": "-89.41694000" + }, + { + "id": "53649", + "name": "San Andrés", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.96667000", + "longitude": "-89.91667000" + }, + { + "id": "53665", + "name": "San Benito", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.91675000", + "longitude": "-89.91898000" + }, + { + "id": "53673", + "name": "San Francisco", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.80000000", + "longitude": "-89.93333000" + }, + { + "id": "53681", + "name": "San José", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.98333000", + "longitude": "-89.90000000" + }, + { + "id": "53704", + "name": "San Luis", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.19889000", + "longitude": "-89.44028000" + }, + { + "id": "53743", + "name": "Santa Ana", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.80000000", + "longitude": "-89.83333000" + }, + { + "id": "53776", + "name": "Sayaxché", + "state_id": 3669, + "state_code": "PE", + "country_id": 90, + "country_code": "GT", + "latitude": "16.52446000", + "longitude": "-90.18801000" + }, + { + "id": "53428", + "name": "Almolonga", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.81591000", + "longitude": "-91.49464000" + }, + { + "id": "53436", + "name": "Cabricán", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.07485000", + "longitude": "-91.64800000" + }, + { + "id": "53438", + "name": "Cajolá", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.92205000", + "longitude": "-91.61478000" + }, + { + "id": "53441", + "name": "Cantel", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.81154000", + "longitude": "-91.45536000" + }, + { + "id": "53461", + "name": "Coatepeque", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.70413000", + "longitude": "-91.86426000" + }, + { + "id": "53463", + "name": "Colomba", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.70730000", + "longitude": "-91.73167000" + }, + { + "id": "53469", + "name": "Concepción Chiquirichapa", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.85510000", + "longitude": "-91.62360000" + }, + { + "id": "53485", + "name": "El Palmar", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.65083000", + "longitude": "-91.57800000" + }, + { + "id": "53495", + "name": "Flores Costa Cuca", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63238000", + "longitude": "-91.86341000" + }, + { + "id": "53502", + "name": "Génova", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.61667000", + "longitude": "-91.83333000" + }, + { + "id": "53504", + "name": "Huitán", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.04920000", + "longitude": "-91.63944000" + }, + { + "id": "53518", + "name": "La Esperanza", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.87169000", + "longitude": "-91.56140000" + }, + { + "id": "53540", + "name": "Municipio de Almolonga", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.81118000", + "longitude": "-91.48354000" + }, + { + "id": "53544", + "name": "Municipio de Cabricán", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "15.10305000", + "longitude": "-91.64918000" + }, + { + "id": "53546", + "name": "Municipio de Cantel", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.81659000", + "longitude": "-91.43781000" + }, + { + "id": "53555", + "name": "Municipio de Coatepeque", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.64309000", + "longitude": "-91.97926000" + }, + { + "id": "53556", + "name": "Municipio de Colomba", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.71002000", + "longitude": "-91.74691000" + }, + { + "id": "53557", + "name": "Municipio de Concepción Chiquirichapa", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.84624000", + "longitude": "-91.61854000" + }, + { + "id": "53561", + "name": "Municipio de Flores Costa Cuca", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63238000", + "longitude": "-91.86341000" + }, + { + "id": "53586", + "name": "Municipio de San Juan Ostuncalco", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.87477000", + "longitude": "-91.68842000" + }, + { + "id": "53610", + "name": "Olintepeque", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.88605000", + "longitude": "-91.51472000" + }, + { + "id": "53613", + "name": "Ostuncalco", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.86899000", + "longitude": "-91.62137000" + }, + { + "id": "53617", + "name": "Palestina de los Altos", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.93338000", + "longitude": "-91.69403000" + }, + { + "id": "53638", + "name": "Quetzaltenango", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.83472000", + "longitude": "-91.51806000" + }, + { + "id": "53646", + "name": "Salcajá", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.87964000", + "longitude": "-91.45699000" + }, + { + "id": "53647", + "name": "Samayac", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.58084000", + "longitude": "-91.46135000" + }, + { + "id": "53667", + "name": "San Carlos Sija", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.98436000", + "longitude": "-91.54912000" + }, + { + "id": "53676", + "name": "San Francisco la Unión", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.92350000", + "longitude": "-91.54157000" + }, + { + "id": "53711", + "name": "San Martín Sacatepéquez", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.82443000", + "longitude": "-91.64192000" + }, + { + "id": "53713", + "name": "San Mateo", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.85800000", + "longitude": "-91.59004000" + }, + { + "id": "53720", + "name": "San Miguel Sigüilá", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.89547000", + "longitude": "-91.61457000" + }, + { + "id": "53778", + "name": "Sibilia", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.99391000", + "longitude": "-91.62371000" + }, + { + "id": "53805", + "name": "Zunil", + "state_id": 3668, + "state_code": "QZ", + "country_id": 90, + "country_code": "GT", + "latitude": "14.78463000", + "longitude": "-91.48345000" + }, + { + "id": "53440", + "name": "Canillá", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.16549000", + "longitude": "-90.85256000" + }, + { + "id": "53445", + "name": "Chajul", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.48523000", + "longitude": "-91.03520000" + }, + { + "id": "53449", + "name": "Chicamán", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.34786000", + "longitude": "-90.79968000" + }, + { + "id": "53451", + "name": "Chiché", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.00885000", + "longitude": "-91.06379000" + }, + { + "id": "53450", + "name": "Chichicastenango", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "14.94333000", + "longitude": "-91.11116000" + }, + { + "id": "53454", + "name": "Chinique", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.04147000", + "longitude": "-91.02594000" + }, + { + "id": "53477", + "name": "Cunén", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.33626000", + "longitude": "-91.02776000" + }, + { + "id": "53515", + "name": "Joyabaj", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "14.99311000", + "longitude": "-90.80161000" + }, + { + "id": "53545", + "name": "Municipio de Canillá", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.19546000", + "longitude": "-90.85970000" + }, + { + "id": "53548", + "name": "Municipio de Chajul", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.48710000", + "longitude": "-91.03786000" + }, + { + "id": "53549", + "name": "Municipio de Chicaman", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.34833000", + "longitude": "-90.79944000" + }, + { + "id": "53551", + "name": "Municipio de Chiché", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.01196000", + "longitude": "-91.03836000" + }, + { + "id": "53550", + "name": "Municipio de Chichicastenango", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "14.89203000", + "longitude": "-91.08808000" + }, + { + "id": "53552", + "name": "Municipio de Chinique", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.06947000", + "longitude": "-91.01803000" + }, + { + "id": "53559", + "name": "Municipio de Cunén", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.36312000", + "longitude": "-91.01889000" + }, + { + "id": "53563", + "name": "Municipio de Ixcan", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.98333000", + "longitude": "-90.76667000" + }, + { + "id": "53566", + "name": "Municipio de Joyabaj", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "14.98073000", + "longitude": "-90.82079000" + }, + { + "id": "53573", + "name": "Municipio de Pachalum", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "14.91798000", + "longitude": "-90.65443000" + }, + { + "id": "53575", + "name": "Municipio de Patzité", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "14.97097000", + "longitude": "-91.19722000" + }, + { + "id": "53579", + "name": "Municipio de San Andrés Sajcabajá", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.22527000", + "longitude": "-90.93018000" + }, + { + "id": "53580", + "name": "Municipio de San Antonio Ilotenango", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.04898000", + "longitude": "-91.20872000" + }, + { + "id": "53585", + "name": "Municipio de San Juan Cotzal", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.42699000", + "longitude": "-91.02097000" + }, + { + "id": "53588", + "name": "Municipio de San Pedro Jocopilas", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.15472000", + "longitude": "-91.15610000" + }, + { + "id": "53600", + "name": "Municipio de Uspantán", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.44393000", + "longitude": "-90.84398000" + }, + { + "id": "53601", + "name": "Municipio de Zacualpa", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.09239000", + "longitude": "-90.88514000" + }, + { + "id": "53603", + "name": "Nebaj", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.40614000", + "longitude": "-91.14682000" + }, + { + "id": "53614", + "name": "Pachalum", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "14.92472000", + "longitude": "-90.66278000" + }, + { + "id": "53626", + "name": "Patzité", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "14.96426000", + "longitude": "-91.20788000" + }, + { + "id": "53629", + "name": "Playa Grande", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.93333000", + "longitude": "-90.73333000" + }, + { + "id": "53644", + "name": "Sacapulas", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.28801000", + "longitude": "-91.08914000" + }, + { + "id": "53651", + "name": "San Andrés Sajcabajá", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.17603000", + "longitude": "-90.94220000" + }, + { + "id": "53657", + "name": "San Antonio Ilotenango", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.05472000", + "longitude": "-91.22986000" + }, + { + "id": "53663", + "name": "San Bartolomé Jocotenango", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.19153000", + "longitude": "-91.07806000" + }, + { + "id": "53694", + "name": "San Juan Cotzal", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.43368000", + "longitude": "-91.03481000" + }, + { + "id": "53705", + "name": "San Luis Ixcán", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.78722000", + "longitude": "-91.09500000" + }, + { + "id": "53731", + "name": "San Pédro Jocopilas", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.09525000", + "longitude": "-91.15135000" + }, + { + "id": "53759", + "name": "Santa Cruz del Quiché", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.03085000", + "longitude": "-91.14871000" + }, + { + "id": "53797", + "name": "Uspantán", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.34672000", + "longitude": "-90.87050000" + }, + { + "id": "53802", + "name": "Zacualpa", + "state_id": 3657, + "state_code": "QC", + "country_id": 90, + "country_code": "GT", + "latitude": "15.02681000", + "longitude": "-90.87815000" + }, + { + "id": "53446", + "name": "Champerico", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.29337000", + "longitude": "-91.91214000" + }, + { + "id": "53481", + "name": "El Asintal", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.59626000", + "longitude": "-91.72744000" + }, + { + "id": "53583", + "name": "Municipio de San Felipe", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63009000", + "longitude": "-91.60261000" + }, + { + "id": "53608", + "name": "Nuevo San Carlos", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.59300000", + "longitude": "-91.69390000" + }, + { + "id": "53641", + "name": "Retalhuleu", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.53611000", + "longitude": "-91.67778000" + }, + { + "id": "53653", + "name": "San Andrés Villa Seca", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.57801000", + "longitude": "-91.58539000" + }, + { + "id": "53672", + "name": "San Felipe", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.62304000", + "longitude": "-91.59500000" + }, + { + "id": "53712", + "name": "San Martín Zapotitlán", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.60794000", + "longitude": "-91.60613000" + }, + { + "id": "53737", + "name": "San Sebastián", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.56177000", + "longitude": "-91.64865000" + }, + { + "id": "53756", + "name": "Santa Cruz Muluá", + "state_id": 3664, + "state_code": "RE", + "country_id": 90, + "country_code": "GT", + "latitude": "14.58153000", + "longitude": "-91.62441000" + }, + { + "id": "53429", + "name": "Alotenango", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.48028000", + "longitude": "-90.80750000" + }, + { + "id": "53431", + "name": "Antigua Guatemala", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.56111000", + "longitude": "-90.73444000" + }, + { + "id": "53460", + "name": "Ciudad Vieja", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.52396000", + "longitude": "-90.76308000" + }, + { + "id": "53513", + "name": "Jocotenango", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.57814000", + "longitude": "-90.73804000" + }, + { + "id": "53527", + "name": "Magdalena Milpas Altas", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54801000", + "longitude": "-90.67477000" + }, + { + "id": "53541", + "name": "Municipio de Alotenango", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.46485000", + "longitude": "-90.82773000" + }, + { + "id": "53542", + "name": "Municipio de Antigua Guatemala", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54313000", + "longitude": "-90.72683000" + }, + { + "id": "53554", + "name": "Municipio de Ciudad Vieja", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.50800000", + "longitude": "-90.77028000" + }, + { + "id": "53565", + "name": "Municipio de Jocotenango", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.58658000", + "longitude": "-90.73579000" + }, + { + "id": "53567", + "name": "Municipio de Magdalena Milpas Altas", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54206000", + "longitude": "-90.67553000" + }, + { + "id": "53593", + "name": "Municipio de Santa Lucía Milpas Altas", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.56753000", + "longitude": "-90.67551000" + }, + { + "id": "53595", + "name": "Municipio de Santa María de Jesús", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.47849000", + "longitude": "-90.69989000" + }, + { + "id": "53623", + "name": "Pastores", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.59433000", + "longitude": "-90.75473000" + }, + { + "id": "53655", + "name": "San Antonio Aguas Calientes", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54676000", + "longitude": "-90.78054000" + }, + { + "id": "53664", + "name": "San Bartolomé Milpas Altas", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.60690000", + "longitude": "-90.67807000" + }, + { + "id": "53702", + "name": "San Lucas Sacatepéquez", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.61075000", + "longitude": "-90.65681000" + }, + { + "id": "53717", + "name": "San Miguel Dueñas", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.52241000", + "longitude": "-90.79938000" + }, + { + "id": "53748", + "name": "Santa Catarina Barahona", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.55135000", + "longitude": "-90.78598000" + }, + { + "id": "53763", + "name": "Santa Lucía Milpas Altas", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.57655000", + "longitude": "-90.67632000" + }, + { + "id": "53768", + "name": "Santa María de Jesús", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.49452000", + "longitude": "-90.71036000" + }, + { + "id": "53772", + "name": "Santiago Sacatepéquez", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63510000", + "longitude": "-90.67654000" + }, + { + "id": "53774", + "name": "Santo Domingo Xenacoj", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.68057000", + "longitude": "-90.70012000" + }, + { + "id": "53784", + "name": "Sumpango", + "state_id": 3676, + "state_code": "SA", + "country_id": 90, + "country_code": "GT", + "latitude": "14.64623000", + "longitude": "-90.73427000" + }, + { + "id": "53443", + "name": "Catarina", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.85354000", + "longitude": "-92.07682000" + }, + { + "id": "53459", + "name": "Ciudad Tecún Umán", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.67737000", + "longitude": "-92.14039000" + }, + { + "id": "53467", + "name": "Comitancillo", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.08937000", + "longitude": "-91.74971000" + }, + { + "id": "53472", + "name": "Concepción Tutuapa", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.23940000", + "longitude": "-91.84460000" + }, + { + "id": "53487", + "name": "El Quetzal", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.76865000", + "longitude": "-91.81757000" + }, + { + "id": "53488", + "name": "El Rodeo", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.91447000", + "longitude": "-91.97631000" + }, + { + "id": "53490", + "name": "El Tumbador", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.86375000", + "longitude": "-91.93416000" + }, + { + "id": "53493", + "name": "Esquipulas Palo Gordo", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.94135000", + "longitude": "-91.82564000" + }, + { + "id": "53506", + "name": "Ixchiguán", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.16375000", + "longitude": "-91.93256000" + }, + { + "id": "53522", + "name": "La Reforma", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.80104000", + "longitude": "-91.82233000" + }, + { + "id": "53529", + "name": "Malacatán", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.91132000", + "longitude": "-92.05788000" + }, + { + "id": "53558", + "name": "Municipio de Concepción Tutuapa", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.28795000", + "longitude": "-91.86738000" + }, + { + "id": "53568", + "name": "Municipio de Malacatán", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.91829000", + "longitude": "-92.10548000" + }, + { + "id": "53597", + "name": "Municipio de Sipacapa", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.19243000", + "longitude": "-91.65541000" + }, + { + "id": "53598", + "name": "Municipio de Tejutla", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.15638000", + "longitude": "-91.82457000" + }, + { + "id": "53607", + "name": "Nuevo Progreso", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.79174000", + "longitude": "-91.91946000" + }, + { + "id": "53609", + "name": "Ocós", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.50998000", + "longitude": "-92.19298000" + }, + { + "id": "53615", + "name": "Pajapita", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.72152000", + "longitude": "-92.03521000" + }, + { + "id": "53642", + "name": "Río Blanco", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.03820000", + "longitude": "-91.68463000" + }, + { + "id": "53660", + "name": "San Antonio Sacatepéquez", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.96060000", + "longitude": "-91.73154000" + }, + { + "id": "53669", + "name": "San Cristóbal Cucho", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.90505000", + "longitude": "-91.78123000" + }, + { + "id": "53686", + "name": "San José Ojetenam", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.23443000", + "longitude": "-91.97317000" + }, + { + "id": "53687", + "name": "San José Ojetenán", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.21667000", + "longitude": "-91.96667000" + }, + { + "id": "53700", + "name": "San Lorenzo", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.03087000", + "longitude": "-91.73534000" + }, + { + "id": "53708", + "name": "San Marcos", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.96389000", + "longitude": "-91.79444000" + }, + { + "id": "53718", + "name": "San Miguel Ixtahuacán", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.27247000", + "longitude": "-91.74785000" + }, + { + "id": "53721", + "name": "San Pablo", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.93269000", + "longitude": "-92.00415000" + }, + { + "id": "53729", + "name": "San Pedro Sacatepéquez", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.96807000", + "longitude": "-91.76172000" + }, + { + "id": "53735", + "name": "San Rafael Pie de la Cuesta", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "14.93052000", + "longitude": "-91.91388000" + }, + { + "id": "53779", + "name": "Sibinal", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.14963000", + "longitude": "-92.04892000" + }, + { + "id": "53780", + "name": "Sipacapa", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.21246000", + "longitude": "-91.63416000" + }, + { + "id": "53785", + "name": "Tacaná", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.24058000", + "longitude": "-92.06721000" + }, + { + "id": "53787", + "name": "Tajumulco", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.08349000", + "longitude": "-91.92225000" + }, + { + "id": "53792", + "name": "Tejutla", + "state_id": 3667, + "state_code": "SM", + "country_id": 90, + "country_code": "GT", + "latitude": "15.12254000", + "longitude": "-91.80635000" + }, + { + "id": "53434", + "name": "Barberena", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.30739000", + "longitude": "-90.36156000" + }, + { + "id": "53442", + "name": "Casillas", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.42222000", + "longitude": "-90.24417000" + }, + { + "id": "53456", + "name": "Chiquimulilla", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.08380000", + "longitude": "-90.38547000" + }, + { + "id": "53475", + "name": "Cuilapa", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.27639000", + "longitude": "-90.29889000" + }, + { + "id": "53501", + "name": "Guazacapán", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.07417000", + "longitude": "-90.41667000" + }, + { + "id": "53547", + "name": "Municipio de Casillas", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.37854000", + "longitude": "-90.17260000" + }, + { + "id": "53553", + "name": "Municipio de Chiquimulilla", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.09716000", + "longitude": "-90.37903000" + }, + { + "id": "53562", + "name": "Municipio de Guazacapán", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.01786000", + "longitude": "-90.43400000" + }, + { + "id": "53606", + "name": "Nueva Santa Rosa", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.38111000", + "longitude": "-90.27611000" + }, + { + "id": "53612", + "name": "Oratorio", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.22806000", + "longitude": "-90.17583000" + }, + { + "id": "53633", + "name": "Pueblo Nuevo Viñas", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.22576000", + "longitude": "-90.47613000" + }, + { + "id": "53699", + "name": "San Juan Tecuaco", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.08361000", + "longitude": "-90.26649000" + }, + { + "id": "53733", + "name": "San Rafael Las Flores", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.48139000", + "longitude": "-90.17333000" + }, + { + "id": "53757", + "name": "Santa Cruz Naranjo", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.38806000", + "longitude": "-90.36972000" + }, + { + "id": "53766", + "name": "Santa María Ixhuatán", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.19000000", + "longitude": "-90.27472000" + }, + { + "id": "53769", + "name": "Santa Rosa de Lima", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.38806000", + "longitude": "-90.29556000" + }, + { + "id": "53789", + "name": "Taxisco", + "state_id": 3665, + "state_code": "SR", + "country_id": 90, + "country_code": "GT", + "latitude": "14.06719000", + "longitude": "-90.46791000" + }, + { + "id": "53468", + "name": "Concepción", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.78417000", + "longitude": "-91.14754000" + }, + { + "id": "53572", + "name": "Municipio de Nahualá", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.77548000", + "longitude": "-91.41616000" + }, + { + "id": "53574", + "name": "Municipio de Panajachel", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.74676000", + "longitude": "-91.14935000" + }, + { + "id": "53591", + "name": "Municipio de Santa Catarina Palopó", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.71794000", + "longitude": "-91.13060000" + }, + { + "id": "53592", + "name": "Municipio de Santa Cruz La Laguna", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.74324000", + "longitude": "-91.22178000" + }, + { + "id": "53602", + "name": "Nahualá", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.84290000", + "longitude": "-91.31799000" + }, + { + "id": "53619", + "name": "Panajachel", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.74185000", + "longitude": "-91.15676000" + }, + { + "id": "53652", + "name": "San Andrés Semetabaj", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.74497000", + "longitude": "-91.13344000" + }, + { + "id": "53659", + "name": "San Antonio Palopó", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.69232000", + "longitude": "-91.11638000" + }, + { + "id": "53683", + "name": "San José Chacayá", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.77096000", + "longitude": "-91.21564000" + }, + { + "id": "53697", + "name": "San Juan La Laguna", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.69453000", + "longitude": "-91.28666000" + }, + { + "id": "53703", + "name": "San Lucas Tolimán", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.59471000", + "longitude": "-91.14659000" + }, + { + "id": "53709", + "name": "San Marcos La Laguna", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.72504000", + "longitude": "-91.25844000" + }, + { + "id": "53723", + "name": "San Pablo La Laguna", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.72092000", + "longitude": "-91.27242000" + }, + { + "id": "53726", + "name": "San Pedro La Laguna", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.69297000", + "longitude": "-91.27201000" + }, + { + "id": "53749", + "name": "Santa Catarina Ixtahuacán", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.79797000", + "longitude": "-91.35866000" + }, + { + "id": "53751", + "name": "Santa Catarina Palopó", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.72335000", + "longitude": "-91.13428000" + }, + { + "id": "53753", + "name": "Santa Clara La Laguna", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.71509000", + "longitude": "-91.30355000" + }, + { + "id": "53755", + "name": "Santa Cruz La Laguna", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.74421000", + "longitude": "-91.20716000" + }, + { + "id": "53764", + "name": "Santa Lucía Utatlán", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.77135000", + "longitude": "-91.26700000" + }, + { + "id": "53767", + "name": "Santa María Visitación", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.71717000", + "longitude": "-91.30844000" + }, + { + "id": "53770", + "name": "Santiago Atitlán", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63823000", + "longitude": "-91.22901000" + }, + { + "id": "53782", + "name": "Sololá", + "state_id": 3661, + "state_code": "SO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.77222000", + "longitude": "-91.18333000" + }, + { + "id": "53448", + "name": "Chicacao", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54295000", + "longitude": "-91.32636000" + }, + { + "id": "53478", + "name": "Cuyotenango", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54006000", + "longitude": "-91.57179000" + }, + { + "id": "53532", + "name": "Mazatenango", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.53417000", + "longitude": "-91.50333000" + }, + { + "id": "53581", + "name": "Municipio de San Antonio Suchitepéquez", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.51839000", + "longitude": "-91.40438000" + }, + { + "id": "53587", + "name": "Municipio de San Miguel Panán", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.50525000", + "longitude": "-91.35956000" + }, + { + "id": "53590", + "name": "Municipio de Santa Bárbara", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.47317000", + "longitude": "-91.24688000" + }, + { + "id": "53624", + "name": "Patulul", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.42321000", + "longitude": "-91.16049000" + }, + { + "id": "53632", + "name": "Pueblo Nuevo", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.64709000", + "longitude": "-91.53946000" + }, + { + "id": "53643", + "name": "Río Bravo", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.40042000", + "longitude": "-91.31713000" + }, + { + "id": "53661", + "name": "San Antonio Suchitepéquez", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.53938000", + "longitude": "-91.41442000" + }, + { + "id": "53666", + "name": "San Bernardino", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.54240000", + "longitude": "-91.45811000" + }, + { + "id": "53675", + "name": "San Francisco Zapotitlán", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.58939000", + "longitude": "-91.52144000" + }, + { + "id": "53677", + "name": "San Gabriel", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.51076000", + "longitude": "-91.50745000" + }, + { + "id": "53684", + "name": "San José El Ídolo", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.45016000", + "longitude": "-91.42222000" + }, + { + "id": "53692", + "name": "San Juan Bautista", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.42274000", + "longitude": "-91.17904000" + }, + { + "id": "53701", + "name": "San Lorenzo", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.48606000", + "longitude": "-91.51263000" + }, + { + "id": "53719", + "name": "San Miguel Panán", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.52865000", + "longitude": "-91.36733000" + }, + { + "id": "53722", + "name": "San Pablo Jocopilas", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.58882000", + "longitude": "-91.45188000" + }, + { + "id": "53746", + "name": "Santa Bárbara", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.43563000", + "longitude": "-91.22685000" + }, + { + "id": "53773", + "name": "Santo Domingo Suchitepéquez", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.47901000", + "longitude": "-91.48327000" + }, + { + "id": "53775", + "name": "Santo Tomás La Unión", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.63219000", + "longitude": "-91.41075000" + }, + { + "id": "53806", + "name": "Zunilito", + "state_id": 3660, + "state_code": "SU", + "country_id": 90, + "country_code": "GT", + "latitude": "14.61264000", + "longitude": "-91.50980000" + }, + { + "id": "53535", + "name": "Momostenango", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "15.04437000", + "longitude": "-91.40864000" + }, + { + "id": "53570", + "name": "Municipio de Momostenango", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "15.04726000", + "longitude": "-91.40625000" + }, + { + "id": "53594", + "name": "Municipio de Santa María Chiquimula", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "15.02886000", + "longitude": "-91.32917000" + }, + { + "id": "53599", + "name": "Municipio de Totonicapán", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.90193000", + "longitude": "-91.31999000" + }, + { + "id": "53654", + "name": "San Andrés Xecul", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.90482000", + "longitude": "-91.48307000" + }, + { + "id": "53662", + "name": "San Bartolo", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "15.08438000", + "longitude": "-91.45606000" + }, + { + "id": "53670", + "name": "San Cristóbal Totonicapán", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.91682000", + "longitude": "-91.44060000" + }, + { + "id": "53674", + "name": "San Francisco El Alto", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.94490000", + "longitude": "-91.44310000" + }, + { + "id": "53761", + "name": "Santa Lucia La Reforma", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "15.12819000", + "longitude": "-91.23619000" + }, + { + "id": "53765", + "name": "Santa María Chiquimula", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "15.02992000", + "longitude": "-91.32920000" + }, + { + "id": "53795", + "name": "Totonicapán", + "state_id": 3663, + "state_code": "TO", + "country_id": 90, + "country_code": "GT", + "latitude": "14.91167000", + "longitude": "-91.36111000" + }, + { + "id": "52323", + "name": "Boffa", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "10.33333000", + "longitude": "-14.16667000" + }, + { + "id": "52325", + "name": "Boké", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "10.93217000", + "longitude": "-14.29055000" + }, + { + "id": "52324", + "name": "Boke Prefecture", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "11.08333000", + "longitude": "-14.41667000" + }, + { + "id": "52332", + "name": "Fria", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "10.41667000", + "longitude": "-13.58333000" + }, + { + "id": "52333", + "name": "Gaoual", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "11.75000000", + "longitude": "-13.20000000" + }, + { + "id": "52334", + "name": "Gaoual Prefecture", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "11.75000000", + "longitude": "-13.20000000" + }, + { + "id": "52339", + "name": "Kimbo", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "10.40000000", + "longitude": "-13.55000000" + }, + { + "id": "52342", + "name": "Koundara", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "12.48333000", + "longitude": "-13.30000000" + }, + { + "id": "52343", + "name": "Koundara Prefecture", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "12.41667000", + "longitude": "-13.16667000" + }, + { + "id": "52364", + "name": "Sanguéya", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "10.70000000", + "longitude": "-14.36667000" + }, + { + "id": "52374", + "name": "Youkounkoun", + "state_id": 2676, + "state_code": "B", + "country_id": 92, + "country_code": "GN", + "latitude": "12.53110000", + "longitude": "-13.12240000" + }, + { + "id": "52326", + "name": "Camayenne", + "state_id": 2686, + "state_code": "C", + "country_id": 92, + "country_code": "GN", + "latitude": "9.53500000", + "longitude": "-13.68778000" + }, + { + "id": "52327", + "name": "Conakry", + "state_id": 2686, + "state_code": "C", + "country_id": 92, + "country_code": "GN", + "latitude": "9.53795000", + "longitude": "-13.67729000" + }, + { + "id": "52336", + "name": "Kankan", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "10.38542000", + "longitude": "-9.30568000" + }, + { + "id": "52337", + "name": "Kankan Prefecture", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "10.27100000", + "longitude": "-9.17800000" + }, + { + "id": "52345", + "name": "Kérouané", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "9.26667000", + "longitude": "-9.01667000" + }, + { + "id": "52338", + "name": "Kerouane Prefecture", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "9.16667000", + "longitude": "-9.08333000" + }, + { + "id": "52344", + "name": "Kouroussa", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "10.66667000", + "longitude": "-9.91667000" + }, + { + "id": "52356", + "name": "Mandiana", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "10.62577000", + "longitude": "-8.69413000" + }, + { + "id": "52357", + "name": "Mandiana Prefecture", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "10.65800000", + "longitude": "-8.61500000" + }, + { + "id": "52365", + "name": "Siguiri", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "11.42282000", + "longitude": "-9.16852000" + }, + { + "id": "52366", + "name": "Siguiri Prefecture", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "11.66667000", + "longitude": "-9.50000000" + }, + { + "id": "52368", + "name": "Tokonou", + "state_id": 2697, + "state_code": "K", + "country_id": 92, + "country_code": "GN", + "latitude": "9.65000000", + "longitude": "-9.78333000" + }, + { + "id": "52328", + "name": "Coyah", + "state_id": 2701, + "state_code": "D", + "country_id": 92, + "country_code": "GN", + "latitude": "9.75000000", + "longitude": "-13.41667000" + }, + { + "id": "52330", + "name": "Dubréka", + "state_id": 2701, + "state_code": "D", + "country_id": 92, + "country_code": "GN", + "latitude": "9.79111000", + "longitude": "-13.52333000" + }, + { + "id": "52331", + "name": "Forécariah", + "state_id": 2701, + "state_code": "D", + "country_id": 92, + "country_code": "GN", + "latitude": "9.43056000", + "longitude": "-13.08806000" + }, + { + "id": "52340", + "name": "Kindia", + "state_id": 2701, + "state_code": "D", + "country_id": 92, + "country_code": "GN", + "latitude": "10.08333000", + "longitude": "-12.80000000" + }, + { + "id": "52361", + "name": "Préfecture de Dubréka", + "state_id": 2701, + "state_code": "D", + "country_id": 92, + "country_code": "GN", + "latitude": "10.25000000", + "longitude": "-13.41667000" + }, + { + "id": "52362", + "name": "Préfecture de Forécariah", + "state_id": 2701, + "state_code": "D", + "country_id": 92, + "country_code": "GN", + "latitude": "9.43333000", + "longitude": "-13.10000000" + }, + { + "id": "52372", + "name": "Télimélé", + "state_id": 2701, + "state_code": "D", + "country_id": 92, + "country_code": "GN", + "latitude": "10.90000000", + "longitude": "-13.03333000" + }, + { + "id": "52367", + "name": "Telimele Prefecture", + "state_id": 2701, + "state_code": "D", + "country_id": 92, + "country_code": "GN", + "latitude": "10.91667000", + "longitude": "-13.33333000" + }, + { + "id": "52369", + "name": "Tondon", + "state_id": 2701, + "state_code": "D", + "country_id": 92, + "country_code": "GN", + "latitude": "10.36667000", + "longitude": "-13.35000000" + }, + { + "id": "52341", + "name": "Koubia", + "state_id": 2677, + "state_code": "L", + "country_id": 92, + "country_code": "GN", + "latitude": "11.58333000", + "longitude": "-11.83333000" + }, + { + "id": "52347", + "name": "Labé", + "state_id": 2677, + "state_code": "L", + "country_id": 92, + "country_code": "GN", + "latitude": "11.31823000", + "longitude": "-12.28332000" + }, + { + "id": "52346", + "name": "Labe Prefecture", + "state_id": 2677, + "state_code": "L", + "country_id": 92, + "country_code": "GN", + "latitude": "11.36600000", + "longitude": "-12.30000000" + }, + { + "id": "52350", + "name": "Lélouma", + "state_id": 2677, + "state_code": "L", + "country_id": 92, + "country_code": "GN", + "latitude": "11.42383000", + "longitude": "-12.68183000" + }, + { + "id": "52348", + "name": "Lelouma Prefecture", + "state_id": 2677, + "state_code": "L", + "country_id": 92, + "country_code": "GN", + "latitude": "11.41667000", + "longitude": "-12.66667000" + }, + { + "id": "52352", + "name": "Mali", + "state_id": 2677, + "state_code": "L", + "country_id": 92, + "country_code": "GN", + "latitude": "12.07900000", + "longitude": "-12.29820000" + }, + { + "id": "52353", + "name": "Mali Prefecture", + "state_id": 2677, + "state_code": "L", + "country_id": 92, + "country_code": "GN", + "latitude": "12.08333000", + "longitude": "-12.08333000" + }, + { + "id": "52371", + "name": "Tougué", + "state_id": 2677, + "state_code": "L", + "country_id": 92, + "country_code": "GN", + "latitude": "11.44503000", + "longitude": "-11.66422000" + }, + { + "id": "52370", + "name": "Tougue Prefecture", + "state_id": 2677, + "state_code": "L", + "country_id": 92, + "country_code": "GN", + "latitude": "11.46667000", + "longitude": "-11.60000000" + }, + { + "id": "52329", + "name": "Dalaba", + "state_id": 2698, + "state_code": "M", + "country_id": 92, + "country_code": "GN", + "latitude": "10.75000000", + "longitude": "-12.30000000" + }, + { + "id": "52354", + "name": "Mamou", + "state_id": 2698, + "state_code": "M", + "country_id": 92, + "country_code": "GN", + "latitude": "10.37546000", + "longitude": "-12.09148000" + }, + { + "id": "52355", + "name": "Mamou Prefecture", + "state_id": 2698, + "state_code": "M", + "country_id": 92, + "country_code": "GN", + "latitude": "10.45900000", + "longitude": "-11.81500000" + }, + { + "id": "52360", + "name": "Pita", + "state_id": 2698, + "state_code": "M", + "country_id": 92, + "country_code": "GN", + "latitude": "10.83333000", + "longitude": "-12.58333000" + }, + { + "id": "52321", + "name": "Beyla", + "state_id": 2684, + "state_code": "N", + "country_id": 92, + "country_code": "GN", + "latitude": "8.69011000", + "longitude": "-8.64869000" + }, + { + "id": "52322", + "name": "Beyla Prefecture", + "state_id": 2684, + "state_code": "N", + "country_id": 92, + "country_code": "GN", + "latitude": "8.91667000", + "longitude": "-8.41667000" + }, + { + "id": "52335", + "name": "Gueckedou", + "state_id": 2684, + "state_code": "N", + "country_id": 92, + "country_code": "GN", + "latitude": "8.56744000", + "longitude": "-10.13360000" + }, + { + "id": "52349", + "name": "Lola", + "state_id": 2684, + "state_code": "N", + "country_id": 92, + "country_code": "GN", + "latitude": "7.83333000", + "longitude": "-8.33333000" + }, + { + "id": "52351", + "name": "Macenta", + "state_id": 2684, + "state_code": "N", + "country_id": 92, + "country_code": "GN", + "latitude": "8.50000000", + "longitude": "-9.41667000" + }, + { + "id": "52359", + "name": "Nzérékoré", + "state_id": 2684, + "state_code": "N", + "country_id": 92, + "country_code": "GN", + "latitude": "7.75624000", + "longitude": "-8.81790000" + }, + { + "id": "52358", + "name": "Nzerekore Prefecture", + "state_id": 2684, + "state_code": "N", + "country_id": 92, + "country_code": "GN", + "latitude": "7.94500000", + "longitude": "-8.78300000" + }, + { + "id": "52363", + "name": "Préfecture de Guékédou", + "state_id": 2684, + "state_code": "N", + "country_id": 92, + "country_code": "GN", + "latitude": "8.66667000", + "longitude": "-10.25000000" + }, + { + "id": "52373", + "name": "Yomou", + "state_id": 2684, + "state_code": "N", + "country_id": 92, + "country_code": "GN", + "latitude": "7.50000000", + "longitude": "-9.16667000" + }, + { + "id": "53807", + "name": "Bafatá", + "state_id": 2720, + "state_code": "BA", + "country_id": 93, + "country_code": "GW", + "latitude": "12.16583000", + "longitude": "-14.66167000" + }, + { + "id": "53815", + "name": "Contuboel Sector", + "state_id": 2720, + "state_code": "BA", + "country_id": 93, + "country_code": "GW", + "latitude": "12.55500000", + "longitude": "-14.64100000" + }, + { + "id": "53820", + "name": "Quinhámel", + "state_id": 2714, + "state_code": "BM", + "country_id": 93, + "country_code": "GW", + "latitude": "11.88694000", + "longitude": "-15.85556000" + }, + { + "id": "53809", + "name": "Bolama", + "state_id": 2722, + "state_code": "BL", + "country_id": 93, + "country_code": "GW", + "latitude": "11.57694000", + "longitude": "-15.47611000" + }, + { + "id": "53811", + "name": "Bubaque", + "state_id": 2722, + "state_code": "BL", + "country_id": 93, + "country_code": "GW", + "latitude": "11.28333000", + "longitude": "-15.83333000" + }, + { + "id": "53812", + "name": "Cacheu", + "state_id": 2713, + "state_code": "CA", + "country_id": 93, + "country_code": "GW", + "latitude": "12.27444000", + "longitude": "-16.16528000" + }, + { + "id": "53813", + "name": "Canchungo", + "state_id": 2713, + "state_code": "CA", + "country_id": 93, + "country_code": "GW", + "latitude": "12.06722000", + "longitude": "-16.03333000" + }, + { + "id": "53817", + "name": "Gabú", + "state_id": 2719, + "state_code": "GA", + "country_id": 93, + "country_code": "GW", + "latitude": "12.28000000", + "longitude": "-14.22222000" + }, + { + "id": "53808", + "name": "Bissorã", + "state_id": 2718, + "state_code": "OI", + "country_id": 93, + "country_code": "GW", + "latitude": "12.22306000", + "longitude": "-15.44750000" + }, + { + "id": "53816", + "name": "Farim", + "state_id": 2718, + "state_code": "OI", + "country_id": 93, + "country_code": "GW", + "latitude": "12.48389000", + "longitude": "-15.22167000" + }, + { + "id": "53818", + "name": "Mansôa", + "state_id": 2718, + "state_code": "OI", + "country_id": 93, + "country_code": "GW", + "latitude": "12.07333000", + "longitude": "-15.31889000" + }, + { + "id": "53810", + "name": "Buba", + "state_id": 2715, + "state_code": "QU", + "country_id": 93, + "country_code": "GW", + "latitude": "11.58889000", + "longitude": "-14.99583000" + }, + { + "id": "53814", + "name": "Catió", + "state_id": 2712, + "state_code": "TO", + "country_id": 93, + "country_code": "GW", + "latitude": "11.28250000", + "longitude": "-15.25472000" + }, + { + "id": "53819", + "name": "Quebo", + "state_id": 2712, + "state_code": "TO", + "country_id": 93, + "country_code": "GW", + "latitude": "11.33333000", + "longitude": "-14.93333000" + }, + { + "id": "53826", + "name": "Mabaruma", + "state_id": 2764, + "state_code": "BA", + "country_id": 94, + "country_code": "GY", + "latitude": "8.20000000", + "longitude": "-59.78333000" + }, + { + "id": "53822", + "name": "Bartica", + "state_id": 2760, + "state_code": "CU", + "country_id": 94, + "country_code": "GY", + "latitude": "6.40799000", + "longitude": "-58.62192000" + }, + { + "id": "53823", + "name": "Georgetown", + "state_id": 2767, + "state_code": "DE", + "country_id": 94, + "country_code": "GY", + "latitude": "6.80448000", + "longitude": "-58.15527000" + }, + { + "id": "53827", + "name": "Mahaica Village", + "state_id": 2767, + "state_code": "DE", + "country_id": 94, + "country_code": "GY", + "latitude": "6.68405000", + "longitude": "-57.92181000" + }, + { + "id": "53830", + "name": "New Amsterdam", + "state_id": 2766, + "state_code": "EB", + "country_id": 94, + "country_code": "GY", + "latitude": "6.24793000", + "longitude": "-57.51710000" + }, + { + "id": "53833", + "name": "Skeldon", + "state_id": 2766, + "state_code": "EB", + "country_id": 94, + "country_code": "GY", + "latitude": "5.88333000", + "longitude": "-57.13333000" + }, + { + "id": "53831", + "name": "Parika", + "state_id": 2768, + "state_code": "ES", + "country_id": 94, + "country_code": "GY", + "latitude": "6.83712000", + "longitude": "-58.42941000" + }, + { + "id": "53834", + "name": "Vreed-en-Hoop", + "state_id": 2768, + "state_code": "ES", + "country_id": 94, + "country_code": "GY", + "latitude": "6.80927000", + "longitude": "-58.19798000" + }, + { + "id": "53828", + "name": "Mahaicony Village", + "state_id": 2762, + "state_code": "MA", + "country_id": 94, + "country_code": "GY", + "latitude": "6.57633000", + "longitude": "-57.80486000" + }, + { + "id": "53832", + "name": "Rosignol", + "state_id": 2762, + "state_code": "MA", + "country_id": 94, + "country_code": "GY", + "latitude": "6.27095000", + "longitude": "-57.53697000" + }, + { + "id": "53821", + "name": "Anna Regina", + "state_id": 2765, + "state_code": "PM", + "country_id": 94, + "country_code": "GY", + "latitude": "7.26439000", + "longitude": "-58.50769000" + }, + { + "id": "53829", + "name": "Mahdia", + "state_id": 2761, + "state_code": "PT", + "country_id": 94, + "country_code": "GY", + "latitude": "5.26667000", + "longitude": "-59.15000000" + }, + { + "id": "53825", + "name": "Linden", + "state_id": 2763, + "state_code": "UD", + "country_id": 94, + "country_code": "GY", + "latitude": "6.00809000", + "longitude": "-58.30714000" + }, + { + "id": "53824", + "name": "Lethem", + "state_id": 2769, + "state_code": "UT", + "country_id": 94, + "country_code": "GY", + "latitude": "3.38333000", + "longitude": "-59.80000000" + }, + { + "id": "55046", + "name": "Anse Rouge", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.63382000", + "longitude": "-73.05530000" + }, + { + "id": "55064", + "name": "Arrondissement de Saint-Marc", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.00000000", + "longitude": "-72.50000000" + }, + { + "id": "55094", + "name": "Désarmes", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "18.99345000", + "longitude": "-72.39058000" + }, + { + "id": "55091", + "name": "Dessalines", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.26177000", + "longitude": "-72.51611000" + }, + { + "id": "55095", + "name": "Ennery", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.48342000", + "longitude": "-72.48537000" + }, + { + "id": "55102", + "name": "Gonaïves", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.44755000", + "longitude": "-72.68928000" + }, + { + "id": "55104", + "name": "Grande Saline", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.26513000", + "longitude": "-72.76897000" + }, + { + "id": "55107", + "name": "Gros Morne", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.67080000", + "longitude": "-72.67808000" + }, + { + "id": "55126", + "name": "Marmelade", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.51736000", + "longitude": "-72.36133000" + }, + { + "id": "55155", + "name": "Saint-Marc", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.10819000", + "longitude": "-72.69379000" + }, + { + "id": "55166", + "name": "Verrettes", + "state_id": 4123, + "state_code": "AR", + "country_id": 95, + "country_code": "HT", + "latitude": "19.05050000", + "longitude": "-72.46585000" + }, + { + "id": "55054", + "name": "Arrondissement de Cerca La Source", + "state_id": 4125, + "state_code": "CE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.11667000", + "longitude": "-71.75000000" + }, + { + "id": "55082", + "name": "Cerca la Source", + "state_id": 4125, + "state_code": "CE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.16696000", + "longitude": "-71.79015000" + }, + { + "id": "55108", + "name": "Hinche", + "state_id": 4125, + "state_code": "CE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.15000000", + "longitude": "-72.01667000" + }, + { + "id": "55117", + "name": "Lascahobas", + "state_id": 4125, + "state_code": "CE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.83047000", + "longitude": "-71.93563000" + }, + { + "id": "55127", + "name": "Mayisad", + "state_id": 4125, + "state_code": "CE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.17607000", + "longitude": "-72.13958000" + }, + { + "id": "55130", + "name": "Mirebalais", + "state_id": 4125, + "state_code": "CE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.83455000", + "longitude": "-72.10480000" + }, + { + "id": "55158", + "name": "Thomassique", + "state_id": 4125, + "state_code": "CE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.08209000", + "longitude": "-71.83855000" + }, + { + "id": "55160", + "name": "Thomonde", + "state_id": 4125, + "state_code": "CE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.01730000", + "longitude": "-71.96235000" + }, + { + "id": "55049", + "name": "Anse-à-Veau", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.50110000", + "longitude": "-73.34490000" + }, + { + "id": "55083", + "name": "Chambellan", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.55037000", + "longitude": "-74.31317000" + }, + { + "id": "55086", + "name": "Corail", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.56766000", + "longitude": "-73.88942000" + }, + { + "id": "55089", + "name": "Dame-Marie", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.56107000", + "longitude": "-74.42167000" + }, + { + "id": "55112", + "name": "Jérémie", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.65000000", + "longitude": "-74.11667000" + }, + { + "id": "55111", + "name": "Jeremi", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.58333000", + "longitude": "-74.20000000" + }, + { + "id": "55119", + "name": "Les Abricots", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.64901000", + "longitude": "-74.30786000" + }, + { + "id": "55122", + "name": "Les Irois", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.40490000", + "longitude": "-74.45280000" + }, + { + "id": "55132", + "name": "Moron", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.56039000", + "longitude": "-74.25777000" + }, + { + "id": "55139", + "name": "Petite Rivière de Nippes", + "state_id": 4119, + "state_code": "GA", + "country_id": 95, + "country_code": "HT", + "latitude": "18.47611000", + "longitude": "-73.23495000" + }, + { + "id": "55045", + "name": "Ansavo", + "state_id": 4118, + "state_code": "NI", + "country_id": 95, + "country_code": "HT", + "latitude": "18.41667000", + "longitude": "-73.50000000" + }, + { + "id": "55072", + "name": "Baradères", + "state_id": 4118, + "state_code": "NI", + "country_id": 95, + "country_code": "HT", + "latitude": "18.48255000", + "longitude": "-73.63884000" + }, + { + "id": "55129", + "name": "Miragoâne", + "state_id": 4118, + "state_code": "NI", + "country_id": 95, + "country_code": "HT", + "latitude": "18.44599000", + "longitude": "-73.08957000" + }, + { + "id": "55137", + "name": "Petit Trou de Nippes", + "state_id": 4118, + "state_code": "NI", + "country_id": 95, + "country_code": "HT", + "latitude": "18.52535000", + "longitude": "-73.50815000" + }, + { + "id": "55044", + "name": "Acul du Nord", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.66667000", + "longitude": "-72.28333000" + }, + { + "id": "55065", + "name": "Arrondissement de la Grande Rivière du Nord", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.51667000", + "longitude": "-72.16667000" + }, + { + "id": "55059", + "name": "Arrondissement de Plaisance", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.66756000", + "longitude": "-72.54908000" + }, + { + "id": "55067", + "name": "Arrondissement du Borgne", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.75000000", + "longitude": "-72.50000000" + }, + { + "id": "55070", + "name": "Bahon", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.46959000", + "longitude": "-72.11466000" + }, + { + "id": "55075", + "name": "Borgne", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.84507000", + "longitude": "-72.52349000" + }, + { + "id": "55092", + "name": "Dondon", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.52734000", + "longitude": "-72.24337000" + }, + { + "id": "55103", + "name": "Grande Rivière du Nord", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.57744000", + "longitude": "-72.16872000" + }, + { + "id": "55118", + "name": "Lenbe", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.70603000", + "longitude": "-72.40336000" + }, + { + "id": "55123", + "name": "Limonade", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.67014000", + "longitude": "-72.12430000" + }, + { + "id": "55128", + "name": "Milot", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.60837000", + "longitude": "-72.21319000" + }, + { + "id": "55134", + "name": "Okap", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.75938000", + "longitude": "-72.19815000" + }, + { + "id": "55141", + "name": "Pignon", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.33594000", + "longitude": "-72.11662000" + }, + { + "id": "55142", + "name": "Pilate", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.66745000", + "longitude": "-72.55229000" + }, + { + "id": "55143", + "name": "Plaine du Nord", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.67707000", + "longitude": "-72.26969000" + }, + { + "id": "55144", + "name": "Plaisance", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.59795000", + "longitude": "-72.46994000" + }, + { + "id": "55145", + "name": "Port-Margot", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.75180000", + "longitude": "-72.43006000" + }, + { + "id": "55150", + "name": "Quartier Morin", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.69696000", + "longitude": "-72.15712000" + }, + { + "id": "55151", + "name": "Ranquitte", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.41327000", + "longitude": "-72.08077000" + }, + { + "id": "55156", + "name": "Saint-Raphaël", + "state_id": 4117, + "state_code": "ND", + "country_id": 95, + "country_code": "HT", + "latitude": "19.43877000", + "longitude": "-72.19910000" + }, + { + "id": "55056", + "name": "Arrondissement de Fort Liberté", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.56667000", + "longitude": "-71.83333000" + }, + { + "id": "55069", + "name": "Arrondissement du Trou du Nord", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.55000000", + "longitude": "-71.98333000" + }, + { + "id": "55077", + "name": "Caracol", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.69274000", + "longitude": "-72.01733000" + }, + { + "id": "55078", + "name": "Carice", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.37795000", + "longitude": "-71.83030000" + }, + { + "id": "55093", + "name": "Dérac", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.65476000", + "longitude": "-71.81451000" + }, + { + "id": "55096", + "name": "Ferrier", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.61549000", + "longitude": "-71.77792000" + }, + { + "id": "55101", + "name": "Fort Liberté", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.66273000", + "longitude": "-71.83798000" + }, + { + "id": "55131", + "name": "Montòrganize", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.40815000", + "longitude": "-71.78132000" + }, + { + "id": "55135", + "name": "Ouanaminthe", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.54934000", + "longitude": "-71.72475000" + }, + { + "id": "55136", + "name": "Perches", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.52201000", + "longitude": "-71.92323000" + }, + { + "id": "55140", + "name": "Phaëton", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.67525000", + "longitude": "-71.89691000" + }, + { + "id": "55165", + "name": "Trou du Nord", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.61668000", + "longitude": "-72.02442000" + }, + { + "id": "55167", + "name": "Wanament", + "state_id": 4121, + "state_code": "NE", + "country_id": 95, + "country_code": "HT", + "latitude": "19.48333000", + "longitude": "-71.76667000" + }, + { + "id": "55051", + "name": "Arcahaie", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.81667000", + "longitude": "-72.91667000" + }, + { + "id": "55062", + "name": "Arrondissement de Port-de-Paix", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.83333000", + "longitude": "-72.88333000" + }, + { + "id": "55063", + "name": "Arrondissement de Saint-Louis du Nord", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.85000000", + "longitude": "-72.66667000" + }, + { + "id": "55068", + "name": "Arrondissement du Môle Saint-Nicolas", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.75000000", + "longitude": "-73.25000000" + }, + { + "id": "55071", + "name": "Baie de Henne", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.66307000", + "longitude": "-73.20943000" + }, + { + "id": "55074", + "name": "Bombardopolis", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.69142000", + "longitude": "-73.33769000" + }, + { + "id": "55097", + "name": "Fond Bassin Bleu", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.79445000", + "longitude": "-72.79949000" + }, + { + "id": "55110", + "name": "Jean-Rabel", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.85379000", + "longitude": "-73.19131000" + }, + { + "id": "55133", + "name": "Môle Saint-Nicolas", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.80700000", + "longitude": "-73.37605000" + }, + { + "id": "55138", + "name": "Petite Anse", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.63011000", + "longitude": "-73.15499000" + }, + { + "id": "55147", + "name": "Port-de-Paix", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.93984000", + "longitude": "-72.83037000" + }, + { + "id": "55153", + "name": "Saint-Louis du Nord", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.93397000", + "longitude": "-72.72138000" + }, + { + "id": "55161", + "name": "Ti Port-de-Paix", + "state_id": 4126, + "state_code": "NO", + "country_id": 95, + "country_code": "HT", + "latitude": "19.93333000", + "longitude": "-72.83333000" + }, + { + "id": "55047", + "name": "Anse à Galets", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.83449000", + "longitude": "-72.86644000" + }, + { + "id": "55052", + "name": "Arcahaie", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.83333000", + "longitude": "-72.41667000" + }, + { + "id": "55055", + "name": "Arrondissement de Croix des Bouquets", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.48333000", + "longitude": "-72.01667000" + }, + { + "id": "55058", + "name": "Arrondissement de Léogâne", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.41667000", + "longitude": "-72.75000000" + }, + { + "id": "55061", + "name": "Arrondissement de Port-au-Prince", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.50000000", + "longitude": "-72.36667000" + }, + { + "id": "55076", + "name": "Cabaret", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.73582000", + "longitude": "-72.41929000" + }, + { + "id": "55079", + "name": "Carrefour", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.54114000", + "longitude": "-72.39922000" + }, + { + "id": "55087", + "name": "Cornillon", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.67546000", + "longitude": "-71.95271000" + }, + { + "id": "55088", + "name": "Croix-des-Bouquets", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.57677000", + "longitude": "-72.22625000" + }, + { + "id": "55090", + "name": "Delmas 73", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.54472000", + "longitude": "-72.30278000" + }, + { + "id": "55098", + "name": "Fond Parisien", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.50547000", + "longitude": "-71.98122000" + }, + { + "id": "55100", + "name": "Fonds Verrettes", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.39566000", + "longitude": "-71.85634000" + }, + { + "id": "55105", + "name": "Grangwav", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.42590000", + "longitude": "-72.76995000" + }, + { + "id": "55106", + "name": "Gressier", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.54091000", + "longitude": "-72.52679000" + }, + { + "id": "55113", + "name": "Kenscoff", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.44773000", + "longitude": "-72.28398000" + }, + { + "id": "55116", + "name": "Lagonav", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.85000000", + "longitude": "-73.05000000" + }, + { + "id": "55124", + "name": "Léogâne", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.51110000", + "longitude": "-72.63343000" + }, + { + "id": "55149", + "name": "Pétionville", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.51250000", + "longitude": "-72.28528000" + }, + { + "id": "55146", + "name": "Port-au-Prince", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.54349000", + "longitude": "-72.33881000" + }, + { + "id": "55159", + "name": "Thomazeau", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.65297000", + "longitude": "-72.09391000" + }, + { + "id": "55163", + "name": "Tigwav", + "state_id": 4120, + "state_code": "OU", + "country_id": 95, + "country_code": "HT", + "latitude": "18.43117000", + "longitude": "-72.86521000" + }, + { + "id": "55050", + "name": "Aquin", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.27974000", + "longitude": "-73.39433000" + }, + { + "id": "55060", + "name": "Arrondissement de Port-Salut", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.13333000", + "longitude": "-73.90000000" + }, + { + "id": "55066", + "name": "Arrondissement des Cayes", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.30000000", + "longitude": "-73.83333000" + }, + { + "id": "55080", + "name": "Cavaillon", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.29987000", + "longitude": "-73.65455000" + }, + { + "id": "55084", + "name": "Chantal", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.20169000", + "longitude": "-73.88957000" + }, + { + "id": "55085", + "name": "Chardonnière", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.27484000", + "longitude": "-74.16613000" + }, + { + "id": "55099", + "name": "Fond des Blancs", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.27782000", + "longitude": "-73.12733000" + }, + { + "id": "55115", + "name": "Koto", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.20601000", + "longitude": "-74.04013000" + }, + { + "id": "55120", + "name": "Les Anglais", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.30540000", + "longitude": "-74.21968000" + }, + { + "id": "55121", + "name": "Les Cayes", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.19331000", + "longitude": "-73.74601000" + }, + { + "id": "55148", + "name": "Port-à-Piment", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.24963000", + "longitude": "-74.09710000" + }, + { + "id": "55152", + "name": "Roche-à-Bateau", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.18182000", + "longitude": "-74.00345000" + }, + { + "id": "55154", + "name": "Saint-Louis du Sud", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.26241000", + "longitude": "-73.54603000" + }, + { + "id": "55162", + "name": "Tiburon", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.32589000", + "longitude": "-74.39598000" + }, + { + "id": "55164", + "name": "Torbeck", + "state_id": 4122, + "state_code": "SD", + "country_id": 95, + "country_code": "HT", + "latitude": "18.16338000", + "longitude": "-73.80949000" + }, + { + "id": "55048", + "name": "Anse-à-Pitre", + "state_id": 4124, + "state_code": "SE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.05000000", + "longitude": "-71.75000000" + }, + { + "id": "55053", + "name": "Arrondissement de Bainet", + "state_id": 4124, + "state_code": "SE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.25000000", + "longitude": "-72.85000000" + }, + { + "id": "55057", + "name": "Arrondissement de Jacmel", + "state_id": 4124, + "state_code": "SE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.33333000", + "longitude": "-72.50000000" + }, + { + "id": "55073", + "name": "Belle-Anse", + "state_id": 4124, + "state_code": "SE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.23768000", + "longitude": "-72.06638000" + }, + { + "id": "55081", + "name": "Cayes-Jacmel", + "state_id": 4124, + "state_code": "SE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.23110000", + "longitude": "-72.39545000" + }, + { + "id": "55109", + "name": "Jacmel", + "state_id": 4124, + "state_code": "SE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.23427000", + "longitude": "-72.53539000" + }, + { + "id": "55114", + "name": "Kotdefè", + "state_id": 4124, + "state_code": "SE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.18872000", + "longitude": "-73.00287000" + }, + { + "id": "55125", + "name": "Marigot", + "state_id": 4124, + "state_code": "SE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.23167000", + "longitude": "-72.32289000" + }, + { + "id": "55157", + "name": "Thiotte", + "state_id": 4124, + "state_code": "SE", + "country_id": 95, + "country_code": "HT", + "latitude": "18.24384000", + "longitude": "-71.84157000" + }, + { + "id": "53857", + "name": "Arizona", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.63333000", + "longitude": "-87.31667000" + }, + { + "id": "53860", + "name": "Atenas de San Cristóbal", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.68333000", + "longitude": "-87.31667000" + }, + { + "id": "53921", + "name": "Corozal", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.80000000", + "longitude": "-86.71667000" + }, + { + "id": "53974", + "name": "El Pino", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.70000000", + "longitude": "-86.93333000" + }, + { + "id": "53976", + "name": "El Porvenir", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.75000000", + "longitude": "-86.93333000" + }, + { + "id": "53995", + "name": "El Triunfo de la Cruz", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.76667000", + "longitude": "-87.43333000" + }, + { + "id": "54001", + "name": "Esparta", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.66291000", + "longitude": "-87.25622000" + }, + { + "id": "54041", + "name": "Jutiapa", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.69586000", + "longitude": "-86.50414000" + }, + { + "id": "54048", + "name": "La Ceiba", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.75971000", + "longitude": "-86.78221000" + }, + { + "id": "54071", + "name": "La Masica", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.59865000", + "longitude": "-87.13500000" + }, + { + "id": "54080", + "name": "La Unión", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.71667000", + "longitude": "-87.00000000" + }, + { + "id": "54127", + "name": "Mezapa", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.58333000", + "longitude": "-87.65000000" + }, + { + "id": "54145", + "name": "Nueva Armenia", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.79556000", + "longitude": "-86.49845000" + }, + { + "id": "54208", + "name": "Sambo Creek", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.81667000", + "longitude": "-86.68333000" + }, + { + "id": "54212", + "name": "San Antonio", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.60000000", + "longitude": "-87.15000000" + }, + { + "id": "54226", + "name": "San Francisco", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.65246000", + "longitude": "-87.01736000" + }, + { + "id": "54259", + "name": "San Juan Pueblo", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.58333000", + "longitude": "-87.23333000" + }, + { + "id": "54290", + "name": "Santa Ana", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.65000000", + "longitude": "-87.06667000" + }, + { + "id": "54334", + "name": "Tela", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.77425000", + "longitude": "-87.46731000" + }, + { + "id": "54341", + "name": "Tornabé", + "state_id": 4047, + "state_code": "AT", + "country_id": 97, + "country_code": "HN", + "latitude": "15.75000000", + "longitude": "-87.55000000" + }, + { + "id": "53925", + "name": "Coxen Hole", + "state_id": 4045, + "state_code": "IB", + "country_id": 97, + "country_code": "HN", + "latitude": "16.31759000", + "longitude": "-86.53793000" + }, + { + "id": "54008", + "name": "French Harbor", + "state_id": 4045, + "state_code": "IB", + "country_id": 97, + "country_code": "HN", + "latitude": "16.35000000", + "longitude": "-86.43333000" + }, + { + "id": "54019", + "name": "Guanaja", + "state_id": 4045, + "state_code": "IB", + "country_id": 97, + "country_code": "HN", + "latitude": "16.44795000", + "longitude": "-85.89431000" + }, + { + "id": "54038", + "name": "José Santos Guardiola", + "state_id": 4045, + "state_code": "IB", + "country_id": 97, + "country_code": "HN", + "latitude": "16.41765000", + "longitude": "-86.30631000" + }, + { + "id": "54197", + "name": "Roatán", + "state_id": 4045, + "state_code": "IB", + "country_id": 97, + "country_code": "HN", + "latitude": "16.34098000", + "longitude": "-86.53763000" + }, + { + "id": "54289", + "name": "Sandy Bay", + "state_id": 4045, + "state_code": "IB", + "country_id": 97, + "country_code": "HN", + "latitude": "16.32923000", + "longitude": "-86.56446000" + }, + { + "id": "54315", + "name": "Savannah Bight", + "state_id": 4045, + "state_code": "IB", + "country_id": 97, + "country_code": "HN", + "latitude": "16.45000000", + "longitude": "-85.85000000" + }, + { + "id": "54351", + "name": "Utila", + "state_id": 4045, + "state_code": "IB", + "country_id": 97, + "country_code": "HN", + "latitude": "16.10026000", + "longitude": "-86.93070000" + }, + { + "id": "53851", + "name": "Apacilagua", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.45821000", + "longitude": "-87.01122000" + }, + { + "id": "53901", + "name": "Choluteca", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.28261000", + "longitude": "-87.20119000" + }, + { + "id": "53903", + "name": "Ciudad Choluteca", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.30028000", + "longitude": "-87.19083000" + }, + { + "id": "53913", + "name": "Concepción de María", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.22363000", + "longitude": "-86.96244000" + }, + { + "id": "53922", + "name": "Corpus", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.28889000", + "longitude": "-87.03472000" + }, + { + "id": "53939", + "name": "Duyure", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.63333000", + "longitude": "-86.81667000" + }, + { + "id": "53949", + "name": "El Corpus", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.30464000", + "longitude": "-87.00970000" + }, + { + "id": "53965", + "name": "El Obraje", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.15417000", + "longitude": "-87.13083000" + }, + { + "id": "53981", + "name": "El Puente", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.28333000", + "longitude": "-87.11667000" + }, + { + "id": "53994", + "name": "El Triunfo", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.08024000", + "longitude": "-87.01780000" + }, + { + "id": "54108", + "name": "Los Llanitos", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.28694000", + "longitude": "-87.33444000" + }, + { + "id": "54121", + "name": "Marcovia", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.28806000", + "longitude": "-87.30972000" + }, + { + "id": "54131", + "name": "Monjarás", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.20056000", + "longitude": "-87.37417000" + }, + { + "id": "54135", + "name": "Morolica", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.56800000", + "longitude": "-86.88821000" + }, + { + "id": "54141", + "name": "Namasigüe", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.20472000", + "longitude": "-87.13889000" + }, + { + "id": "54162", + "name": "Orocuina", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.48167000", + "longitude": "-87.10500000" + }, + { + "id": "54168", + "name": "Pespire", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.59222000", + "longitude": "-87.36167000" + }, + { + "id": "54216", + "name": "San Antonio de Flores", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.64152000", + "longitude": "-87.34075000" + }, + { + "id": "54237", + "name": "San Isidro", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.64454000", + "longitude": "-87.26093000" + }, + { + "id": "54239", + "name": "San Jerónimo", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.17667000", + "longitude": "-87.13639000" + }, + { + "id": "54247", + "name": "San José", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.71415000", + "longitude": "-87.42256000" + }, + { + "id": "54251", + "name": "San José de Las Conchas", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.32528000", + "longitude": "-87.39556000" + }, + { + "id": "54273", + "name": "San Marcos de Colón", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.41512000", + "longitude": "-86.82095000" + }, + { + "id": "54293", + "name": "Santa Ana de Yusguare", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.30056000", + "longitude": "-87.11389000" + }, + { + "id": "54295", + "name": "Santa Cruz", + "state_id": 4041, + "state_code": "CH", + "country_id": 97, + "country_code": "HN", + "latitude": "13.25806000", + "longitude": "-87.34833000" + }, + { + "id": "53867", + "name": "Balfate", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.75709000", + "longitude": "-86.29048000" + }, + { + "id": "53874", + "name": "Bonito Oriental", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.74641000", + "longitude": "-85.73610000" + }, + { + "id": "53920", + "name": "Corocito", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.75000000", + "longitude": "-85.78333000" + }, + { + "id": "53929", + "name": "Cusuna", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.85000000", + "longitude": "-85.23333000" + }, + { + "id": "53999", + "name": "Elíxir", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.48333000", + "longitude": "-86.30000000" + }, + { + "id": "54006", + "name": "Francia", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.85000000", + "longitude": "-85.58333000" + }, + { + "id": "54029", + "name": "Iriona", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.59079000", + "longitude": "-85.20549000" + }, + { + "id": "54033", + "name": "Jericó", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.95000000", + "longitude": "-85.96667000" + }, + { + "id": "54046", + "name": "La Brea", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.80000000", + "longitude": "-85.96667000" + }, + { + "id": "54055", + "name": "La Esperanza", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.63333000", + "longitude": "-85.76667000" + }, + { + "id": "54103", + "name": "Limón", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.79664000", + "longitude": "-85.50805000" + }, + { + "id": "54136", + "name": "Municipio de Sabá", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.48654000", + "longitude": "-86.16322000" + }, + { + "id": "54178", + "name": "Prieta", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.58060000", + "longitude": "-86.13664000" + }, + { + "id": "54183", + "name": "Puerto Castilla", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "16.01667000", + "longitude": "-85.96667000" + }, + { + "id": "54188", + "name": "Punta Piedra", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.90000000", + "longitude": "-85.28333000" + }, + { + "id": "54192", + "name": "Quebrada de Arena", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.76667000", + "longitude": "-85.91667000" + }, + { + "id": "54202", + "name": "Río Esteban", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.83333000", + "longitude": "-86.30000000" + }, + { + "id": "54205", + "name": "Sabá", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.46667000", + "longitude": "-86.25000000" + }, + { + "id": "54206", + "name": "Salamá", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.75000000", + "longitude": "-85.96667000" + }, + { + "id": "54302", + "name": "Santa Fe", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.85424000", + "longitude": "-86.11083000" + }, + { + "id": "54312", + "name": "Santa Rosa de Aguán", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.95000000", + "longitude": "-85.71667000" + }, + { + "id": "54321", + "name": "Sonaguera", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.64000000", + "longitude": "-86.26000000" + }, + { + "id": "54330", + "name": "Taujica", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.70000000", + "longitude": "-85.91667000" + }, + { + "id": "54339", + "name": "Tocoa", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.68333000", + "longitude": "-86.00000000" + }, + { + "id": "54349", + "name": "Trujillo", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.91667000", + "longitude": "-85.95417000" + }, + { + "id": "54378", + "name": "Zamora", + "state_id": 4051, + "state_code": "CL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.63333000", + "longitude": "-86.06667000" + }, + { + "id": "53843", + "name": "Aguas del Padre", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.56667000", + "longitude": "-87.88333000" + }, + { + "id": "53845", + "name": "Ajuterique", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.38333000", + "longitude": "-87.70000000" + }, + { + "id": "53894", + "name": "Cerro Blanco", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.66667000", + "longitude": "-87.78333000" + }, + { + "id": "53908", + "name": "Comayagua", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.48412000", + "longitude": "-87.60060000" + }, + { + "id": "53912", + "name": "Concepción de Guasistagua", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.60000000", + "longitude": "-87.65000000" + }, + { + "id": "53941", + "name": "El Agua Dulcita", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.70000000", + "longitude": "-87.75000000" + }, + { + "id": "53978", + "name": "El Porvenir", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.58333000", + "longitude": "-87.88333000" + }, + { + "id": "53983", + "name": "El Rancho", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.68333000", + "longitude": "-87.50000000" + }, + { + "id": "53984", + "name": "El Rincón", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.58333000", + "longitude": "-87.93333000" + }, + { + "id": "53985", + "name": "El Rosario", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.57500000", + "longitude": "-87.74306000" + }, + { + "id": "53988", + "name": "El Sauce", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.52850000", + "longitude": "-87.66571000" + }, + { + "id": "53989", + "name": "El Socorro", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.63333000", + "longitude": "-87.91667000" + }, + { + "id": "54003", + "name": "Esquías", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.73333000", + "longitude": "-87.36667000" + }, + { + "id": "54004", + "name": "Flores", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.28333000", + "longitude": "-87.56667000" + }, + { + "id": "54025", + "name": "Humuya", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.25000000", + "longitude": "-87.66667000" + }, + { + "id": "54031", + "name": "Jamalteca", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.70000000", + "longitude": "-87.58333000" + }, + { + "id": "54068", + "name": "La Libertad", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.88000000", + "longitude": "-87.55000000" + }, + { + "id": "54079", + "name": "La Trinidad", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.70000000", + "longitude": "-87.66286000" + }, + { + "id": "54089", + "name": "Lamaní", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.20000000", + "longitude": "-87.61667000" + }, + { + "id": "54092", + "name": "Las Lajas", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.90000000", + "longitude": "-87.58333000" + }, + { + "id": "54100", + "name": "Lejamaní", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.36667000", + "longitude": "-87.70000000" + }, + { + "id": "54128", + "name": "Meámbar", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.82047000", + "longitude": "-87.78424000" + }, + { + "id": "54129", + "name": "Minas de Oro", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.80000000", + "longitude": "-87.35000000" + }, + { + "id": "54157", + "name": "Ojos de Agua", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.79498000", + "longitude": "-87.65010000" + }, + { + "id": "54175", + "name": "Potrerillos", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.55000000", + "longitude": "-87.86667000" + }, + { + "id": "54200", + "name": "Río Bonito", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.76667000", + "longitude": "-87.88333000" + }, + { + "id": "54219", + "name": "San Antonio de la Cuesta", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.63333000", + "longitude": "-87.60000000" + }, + { + "id": "54240", + "name": "San Jerónimo", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.64043000", + "longitude": "-87.56768000" + }, + { + "id": "54249", + "name": "San José de Comayagua", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.73333000", + "longitude": "-88.03333000" + }, + { + "id": "54255", + "name": "San José del Potrero", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.86203000", + "longitude": "-87.29049000" + }, + { + "id": "54266", + "name": "San Luis", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.75000000", + "longitude": "-87.41667000" + }, + { + "id": "54286", + "name": "San Sebastián", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.23687000", + "longitude": "-87.63215000" + }, + { + "id": "54317", + "name": "Siguatepeque", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.60000000", + "longitude": "-87.83333000" + }, + { + "id": "54331", + "name": "Taulabé", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.67145000", + "longitude": "-87.98693000" + }, + { + "id": "54355", + "name": "Valle de Ángeles", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.50000000", + "longitude": "-87.63333000" + }, + { + "id": "54360", + "name": "Villa de San Antonio", + "state_id": 4042, + "state_code": "CM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.31667000", + "longitude": "-87.61667000" + }, + { + "id": "53839", + "name": "Agua Caliente", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.88333000", + "longitude": "-88.81667000" + }, + { + "id": "53876", + "name": "Buenos Aires", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.03333000", + "longitude": "-88.96667000" + }, + { + "id": "53878", + "name": "Cabañas", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.76000000", + "longitude": "-89.06000000" + }, + { + "id": "53896", + "name": "Chalmeca", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.10000000", + "longitude": "-88.68333000" + }, + { + "id": "53911", + "name": "Concepción", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.88077000", + "longitude": "-88.87919000" + }, + { + "id": "53914", + "name": "Concepción de la Barranca", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.16667000", + "longitude": "-88.71667000" + }, + { + "id": "53918", + "name": "Copán", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.83333000", + "longitude": "-89.15000000" + }, + { + "id": "53919", + "name": "Copán Ruinas", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.92000000", + "longitude": "-89.15000000" + }, + { + "id": "53923", + "name": "Corquín", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.56667000", + "longitude": "-88.86667000" + }, + { + "id": "53927", + "name": "Cucuyagua", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.65000000", + "longitude": "-88.86667000" + }, + { + "id": "53934", + "name": "Dolores", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.86667000", + "longitude": "-88.83333000" + }, + { + "id": "53937", + "name": "Dulce Nombre", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.85552000", + "longitude": "-88.83856000" + }, + { + "id": "53948", + "name": "El Corpus", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.70000000", + "longitude": "-88.91667000" + }, + { + "id": "53968", + "name": "El Ocotón", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.03333000", + "longitude": "-88.88333000" + }, + { + "id": "53971", + "name": "El Paraíso", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.04217000", + "longitude": "-88.98045000" + }, + { + "id": "54005", + "name": "Florida", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.03333000", + "longitude": "-88.83333000" + }, + { + "id": "54052", + "name": "La Entrada", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.05000000", + "longitude": "-88.73333000" + }, + { + "id": "54064", + "name": "La Jigua", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.10000000", + "longitude": "-88.76000000" + }, + { + "id": "54074", + "name": "La Playona", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.11667000", + "longitude": "-88.98333000" + }, + { + "id": "54083", + "name": "La Unión", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.69350000", + "longitude": "-88.94734000" + }, + { + "id": "54086", + "name": "La Zumbadora", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.01667000", + "longitude": "-88.90000000" + }, + { + "id": "54111", + "name": "Los Tangos", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.15000000", + "longitude": "-88.68333000" + }, + { + "id": "54144", + "name": "Nueva Arcadia", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.08000000", + "longitude": "-88.69000000" + }, + { + "id": "54156", + "name": "Ojos de Agua", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.70000000", + "longitude": "-88.81667000" + }, + { + "id": "54181", + "name": "Pueblo Nuevo", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.00000000", + "longitude": "-88.75000000" + }, + { + "id": "54194", + "name": "Quezailica", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.88333000", + "longitude": "-88.73333000" + }, + { + "id": "54209", + "name": "San Agustín", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.81973000", + "longitude": "-88.93027000" + }, + { + "id": "54214", + "name": "San Antonio", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.04000000", + "longitude": "-88.88000000" + }, + { + "id": "54241", + "name": "San Jerónimo", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.96207000", + "longitude": "-88.90270000" + }, + { + "id": "54242", + "name": "San Joaquín", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "15.05000000", + "longitude": "-88.90000000" + }, + { + "id": "54245", + "name": "San José", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.91184000", + "longitude": "-88.71667000" + }, + { + "id": "54250", + "name": "San José de Copán", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.90000000", + "longitude": "-88.71667000" + }, + { + "id": "54261", + "name": "San Juan de Opoa", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.78333000", + "longitude": "-88.70000000" + }, + { + "id": "54262", + "name": "San Juan de Planes", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.93333000", + "longitude": "-88.78333000" + }, + { + "id": "54279", + "name": "San Nicolás", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.98000000", + "longitude": "-88.73000000" + }, + { + "id": "54283", + "name": "San Pedro de Copán", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.61667000", + "longitude": "-88.80000000" + }, + { + "id": "54310", + "name": "Santa Rita", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.88000000", + "longitude": "-89.01000000" + }, + { + "id": "54311", + "name": "Santa Rita, Copan", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.86748000", + "longitude": "-89.10000000" + }, + { + "id": "54313", + "name": "Santa Rosa de Copán", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.76667000", + "longitude": "-88.77917000" + }, + { + "id": "54346", + "name": "Trinidad de Copán", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.95000000", + "longitude": "-88.75000000" + }, + { + "id": "54357", + "name": "Veracruz", + "state_id": 4049, + "state_code": "CP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.88343000", + "longitude": "-88.78570000" + }, + { + "id": "53836", + "name": "Agua Azul", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "14.91667000", + "longitude": "-87.96667000" + }, + { + "id": "53837", + "name": "Agua Azul Rancho", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "14.90000000", + "longitude": "-87.95000000" + }, + { + "id": "53859", + "name": "Armenta", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.50000000", + "longitude": "-88.05000000" + }, + { + "id": "53866", + "name": "Baja Mar", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.88851000", + "longitude": "-87.85547000" + }, + { + "id": "53868", + "name": "Baracoa", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.76667000", + "longitude": "-87.85000000" + }, + { + "id": "53870", + "name": "Bejuco", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.13333000", + "longitude": "-87.93333000" + }, + { + "id": "53891", + "name": "Cañaveral", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "14.98333000", + "longitude": "-88.01667000" + }, + { + "id": "53889", + "name": "Casa Quemada", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.11667000", + "longitude": "-88.08333000" + }, + { + "id": "53899", + "name": "Chivana", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.75000000", + "longitude": "-87.98333000" + }, + { + "id": "53900", + "name": "Choloma", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.64000000", + "longitude": "-87.92000000" + }, + { + "id": "53902", + "name": "Chotepe", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.41667000", + "longitude": "-87.98333000" + }, + { + "id": "53904", + "name": "Cofradía", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.40000000", + "longitude": "-88.15000000" + }, + { + "id": "53931", + "name": "Cuyamel", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.66667000", + "longitude": "-88.20000000" + }, + { + "id": "53958", + "name": "El Llano", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.15000000", + "longitude": "-87.88333000" + }, + { + "id": "53960", + "name": "El Marañón", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.40000000", + "longitude": "-88.05000000" + }, + { + "id": "53961", + "name": "El Milagro", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.40000000", + "longitude": "-87.96667000" + }, + { + "id": "53969", + "name": "El Olivar", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.08333000", + "longitude": "-87.88333000" + }, + { + "id": "53973", + "name": "El Perico", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.08333000", + "longitude": "-88.10000000" + }, + { + "id": "53975", + "name": "El Plan", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.28333000", + "longitude": "-87.96667000" + }, + { + "id": "53977", + "name": "El Porvenir", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.83333000", + "longitude": "-87.93333000" + }, + { + "id": "53982", + "name": "El Rancho", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.66667000", + "longitude": "-87.95000000" + }, + { + "id": "53993", + "name": "El Tigre", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "14.93333000", + "longitude": "-87.98333000" + }, + { + "id": "53998", + "name": "El Zapotal del Norte", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.51667000", + "longitude": "-88.05000000" + }, + { + "id": "54060", + "name": "La Guama", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "14.88333000", + "longitude": "-87.93333000" + }, + { + "id": "54062", + "name": "La Huesa", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.58333000", + "longitude": "-87.88333000" + }, + { + "id": "54065", + "name": "La Jutosa", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.63333000", + "longitude": "-88.00000000" + }, + { + "id": "54070", + "name": "La Lima", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.43333000", + "longitude": "-87.91667000" + }, + { + "id": "54076", + "name": "La Sabana", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.36667000", + "longitude": "-87.93333000" + }, + { + "id": "54107", + "name": "Los Caminos", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "14.95000000", + "longitude": "-87.96667000" + }, + { + "id": "54109", + "name": "Los Naranjos", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "14.90000000", + "longitude": "-88.05000000" + }, + { + "id": "54132", + "name": "Monterrey", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.58333000", + "longitude": "-87.88333000" + }, + { + "id": "54152", + "name": "Nuevo Chamelecón", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.38333000", + "longitude": "-88.01667000" + }, + { + "id": "54159", + "name": "Omoa", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.76667000", + "longitude": "-88.03333000" + }, + { + "id": "54164", + "name": "Oropéndolas", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.01667000", + "longitude": "-87.93333000" + }, + { + "id": "54170", + "name": "Peña Blanca", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.53333000", + "longitude": "-88.05000000" + }, + { + "id": "54171", + "name": "Pimienta", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.26500000", + "longitude": "-87.96667000" + }, + { + "id": "54172", + "name": "Pimienta Vieja", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.23333000", + "longitude": "-87.96667000" + }, + { + "id": "54176", + "name": "Potrerillos", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.21000000", + "longitude": "-87.95000000" + }, + { + "id": "54180", + "name": "Pueblo Nuevo", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.28333000", + "longitude": "-88.01667000" + }, + { + "id": "54182", + "name": "Puerto Alto", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.70000000", + "longitude": "-87.86667000" + }, + { + "id": "54185", + "name": "Puerto Cortés", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.79000000", + "longitude": "-87.84900000" + }, + { + "id": "54184", + "name": "Puerto Cortez", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.82562000", + "longitude": "-87.92968000" + }, + { + "id": "54191", + "name": "Quebrada Seca", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.66667000", + "longitude": "-87.95000000" + }, + { + "id": "54199", + "name": "Río Blanquito", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.73333000", + "longitude": "-87.90000000" + }, + { + "id": "54201", + "name": "Río Chiquito", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.63333000", + "longitude": "-88.25000000" + }, + { + "id": "54203", + "name": "Río Lindo", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.03333000", + "longitude": "-87.98333000" + }, + { + "id": "54215", + "name": "San Antonio de Cortés", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.11667000", + "longitude": "-88.03333000" + }, + { + "id": "54221", + "name": "San Buenaventura", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.01667000", + "longitude": "-88.00000000" + }, + { + "id": "54233", + "name": "San Francisco de Yojoa", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.01667000", + "longitude": "-87.96667000" + }, + { + "id": "54254", + "name": "San José del Boquerón", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.48333000", + "longitude": "-87.86667000" + }, + { + "id": "54268", + "name": "San Manuel", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.37279000", + "longitude": "-87.90167000" + }, + { + "id": "54281", + "name": "San Pedro Sula", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.50417000", + "longitude": "-88.02500000" + }, + { + "id": "54298", + "name": "Santa Cruz de Yojoa", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "14.98333000", + "longitude": "-87.90000000" + }, + { + "id": "54299", + "name": "Santa Elena", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.38333000", + "longitude": "-88.13333000" + }, + { + "id": "54344", + "name": "Travesía", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.86667000", + "longitude": "-87.90000000" + }, + { + "id": "54362", + "name": "Villanueva", + "state_id": 4046, + "state_code": "CR", + "country_id": 97, + "country_code": "HN", + "latitude": "15.31667000", + "longitude": "-88.00000000" + }, + { + "id": "53846", + "name": "Alauca", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.84020000", + "longitude": "-86.69526000" + }, + { + "id": "53854", + "name": "Araulí", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.95000000", + "longitude": "-86.55000000" + }, + { + "id": "53930", + "name": "Cuyalí", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.88333000", + "longitude": "-86.55000000" + }, + { + "id": "53932", + "name": "Danlí", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.03333000", + "longitude": "-86.58333000" + }, + { + "id": "53942", + "name": "El Benque", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.03333000", + "longitude": "-86.46667000" + }, + { + "id": "53944", + "name": "El Chichicaste", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.06667000", + "longitude": "-86.30000000" + }, + { + "id": "53966", + "name": "El Obraje", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.00000000", + "longitude": "-86.43333000" + }, + { + "id": "53970", + "name": "El Paraíso", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.85381000", + "longitude": "-86.53094000" + }, + { + "id": "54024", + "name": "Güinope", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.88333000", + "longitude": "-86.93333000" + }, + { + "id": "54030", + "name": "Jacaleapa", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.01667000", + "longitude": "-86.66667000" + }, + { + "id": "54040", + "name": "Jutiapa", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.98333000", + "longitude": "-86.40000000" + }, + { + "id": "54098", + "name": "Las Ánimas", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.25000000", + "longitude": "-86.56667000" + }, + { + "id": "54094", + "name": "Las Trojes", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.06667000", + "longitude": "-85.98333000" + }, + { + "id": "54104", + "name": "Liure", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.53583000", + "longitude": "-87.09194000" + }, + { + "id": "54134", + "name": "Morocelí", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.11667000", + "longitude": "-86.86667000" + }, + { + "id": "54138", + "name": "Municipio de Texiguat", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.66372000", + "longitude": "-87.03479000" + }, + { + "id": "54154", + "name": "Ojo de Agua", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.01667000", + "longitude": "-86.35000000" + }, + { + "id": "54163", + "name": "Oropolí", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.81667000", + "longitude": "-86.81667000" + }, + { + "id": "54177", + "name": "Potrerillos", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.04478000", + "longitude": "-86.76201000" + }, + { + "id": "54190", + "name": "Quebrada Larga", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.10000000", + "longitude": "-86.36667000" + }, + { + "id": "54217", + "name": "San Antonio de Flores", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.71089000", + "longitude": "-86.84226000" + }, + { + "id": "54223", + "name": "San Diego", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.05000000", + "longitude": "-86.46667000" + }, + { + "id": "54264", + "name": "San Lucas", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.74586000", + "longitude": "-86.95163000" + }, + { + "id": "54275", + "name": "San Matías", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.95966000", + "longitude": "-86.64032000" + }, + { + "id": "54296", + "name": "Santa Cruz", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.86667000", + "longitude": "-86.63333000" + }, + { + "id": "54320", + "name": "Soledad", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.58333000", + "longitude": "-87.11667000" + }, + { + "id": "54337", + "name": "Teupasenti", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.21667000", + "longitude": "-86.70000000" + }, + { + "id": "54338", + "name": "Texíguat", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.64972000", + "longitude": "-87.02250000" + }, + { + "id": "54348", + "name": "Trojes", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.05966000", + "longitude": "-86.00166000" + }, + { + "id": "54352", + "name": "Vado Ancho", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.64355000", + "longitude": "-86.95546000" + }, + { + "id": "54372", + "name": "Yauyupe", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.74867000", + "longitude": "-87.07610000" + }, + { + "id": "54376", + "name": "Yuscarán", + "state_id": 4043, + "state_code": "EP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.95708000", + "longitude": "-86.83170000" + }, + { + "id": "53835", + "name": "Agalteca", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.45000000", + "longitude": "-87.26667000" + }, + { + "id": "53848", + "name": "Alubarén", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.78226000", + "longitude": "-87.46990000" + }, + { + "id": "53892", + "name": "Cedros", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.50464000", + "longitude": "-87.21680000" + }, + { + "id": "53895", + "name": "Cerro Grande", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.81667000", + "longitude": "-87.25000000" + }, + { + "id": "53905", + "name": "Cofradía", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.21667000", + "longitude": "-87.18333000" + }, + { + "id": "53928", + "name": "Curarén", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.83000000", + "longitude": "-87.57000000" + }, + { + "id": "53933", + "name": "Distrito Central", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.14975000", + "longitude": "-87.24806000" + }, + { + "id": "53945", + "name": "El Chimbo", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.13333000", + "longitude": "-87.11667000" + }, + { + "id": "53952", + "name": "El Escaño de Tepale", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.75000000", + "longitude": "-87.06667000" + }, + { + "id": "53951", + "name": "El Escanito", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.66667000", + "longitude": "-87.10000000" + }, + { + "id": "53953", + "name": "El Guante", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.55000000", + "longitude": "-87.10000000" + }, + { + "id": "53954", + "name": "El Guantillo", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.60000000", + "longitude": "-87.30000000" + }, + { + "id": "53955", + "name": "El Guapinol", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.76667000", + "longitude": "-87.46667000" + }, + { + "id": "53959", + "name": "El Lolo", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.11667000", + "longitude": "-87.26667000" + }, + { + "id": "53972", + "name": "El Pedernal", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.70000000", + "longitude": "-87.11667000" + }, + { + "id": "53979", + "name": "El Porvenir", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.72009000", + "longitude": "-87.21039000" + }, + { + "id": "53990", + "name": "El Suyatal", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.51667000", + "longitude": "-87.21667000" + }, + { + "id": "53991", + "name": "El Tablón", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.03333000", + "longitude": "-87.16667000" + }, + { + "id": "53992", + "name": "El Terrero", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.06667000", + "longitude": "-87.06667000" + }, + { + "id": "54012", + "name": "Guaimaca", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.53333000", + "longitude": "-86.81667000" + }, + { + "id": "54053", + "name": "La Ermita", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.46667000", + "longitude": "-87.06667000" + }, + { + "id": "54069", + "name": "La Libertad", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.70662000", + "longitude": "-87.50421000" + }, + { + "id": "54084", + "name": "La Venta", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.73113000", + "longitude": "-87.32874000" + }, + { + "id": "54102", + "name": "Lepaterique", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.05590000", + "longitude": "-87.47908000" + }, + { + "id": "54118", + "name": "Maraita", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.87197000", + "longitude": "-87.05633000" + }, + { + "id": "54119", + "name": "Marale", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.94113000", + "longitude": "-87.09892000" + }, + { + "id": "54123", + "name": "Mata de Plátano", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.60000000", + "longitude": "-87.28333000" + }, + { + "id": "54124", + "name": "Mateo", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.08333000", + "longitude": "-87.31667000" + }, + { + "id": "54146", + "name": "Nueva Armenia", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.75000000", + "longitude": "-87.15307000" + }, + { + "id": "54155", + "name": "Ojojona", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.93389000", + "longitude": "-87.29583000" + }, + { + "id": "54161", + "name": "Orica", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.80645000", + "longitude": "-86.95760000" + }, + { + "id": "54193", + "name": "Quebradas", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.50000000", + "longitude": "-87.35000000" + }, + { + "id": "54198", + "name": "Río Abajo", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.16667000", + "longitude": "-87.21667000" + }, + { + "id": "54196", + "name": "Reitoca", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.82583000", + "longitude": "-87.46528000" + }, + { + "id": "54204", + "name": "Sabanagrande", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.80778000", + "longitude": "-87.25917000" + }, + { + "id": "54218", + "name": "San Antonio de Oriente", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.03859000", + "longitude": "-86.98951000" + }, + { + "id": "54222", + "name": "San Buenaventura", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.89100000", + "longitude": "-87.18554000" + }, + { + "id": "54236", + "name": "San Ignacio", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.73795000", + "longitude": "-87.04759000" + }, + { + "id": "54260", + "name": "San Juan de Flores", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.26667000", + "longitude": "-87.03333000" + }, + { + "id": "54276", + "name": "San Miguelito", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.74572000", + "longitude": "-87.49233000" + }, + { + "id": "54291", + "name": "Santa Ana", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.94000000", + "longitude": "-87.21000000" + }, + { + "id": "54305", + "name": "Santa Lucía", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.12595000", + "longitude": "-87.09175000" + }, + { + "id": "54325", + "name": "Talanga", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.41393000", + "longitude": "-87.06941000" + }, + { + "id": "54329", + "name": "Tatumbla", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "13.98467000", + "longitude": "-87.06977000" + }, + { + "id": "54350", + "name": "Támara", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.15000000", + "longitude": "-87.33333000" + }, + { + "id": "54333", + "name": "Tegucigalpa", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.08180000", + "longitude": "-87.20681000" + }, + { + "id": "54354", + "name": "Valle de Ángeles", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.15000000", + "longitude": "-87.03333000" + }, + { + "id": "54356", + "name": "Vallecillo", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.51313000", + "longitude": "-87.40242000" + }, + { + "id": "54361", + "name": "Villa de San Francisco", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.16667000", + "longitude": "-86.96667000" + }, + { + "id": "54359", + "name": "Villa Nueva", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.03333000", + "longitude": "-87.13333000" + }, + { + "id": "54367", + "name": "Yaguacire", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.01667000", + "longitude": "-87.21667000" + }, + { + "id": "54377", + "name": "Zambrano", + "state_id": 4052, + "state_code": "FM", + "country_id": 97, + "country_code": "HN", + "latitude": "14.26667000", + "longitude": "-87.40000000" + }, + { + "id": "53844", + "name": "Ahuas", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.46923000", + "longitude": "-84.34479000" + }, + { + "id": "53862", + "name": "Auas", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.48333000", + "longitude": "-84.33333000" + }, + { + "id": "53863", + "name": "Auka", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "14.94087000", + "longitude": "-83.83229000" + }, + { + "id": "53869", + "name": "Barra Patuca", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.80000000", + "longitude": "-84.28333000" + }, + { + "id": "53875", + "name": "Brus Laguna", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.75000000", + "longitude": "-84.48333000" + }, + { + "id": "54028", + "name": "Iralaya", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.00000000", + "longitude": "-83.23333000" + }, + { + "id": "54039", + "name": "Juan Francisco Bulnes", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.91676000", + "longitude": "-84.90990000" + }, + { + "id": "54165", + "name": "Paptalaya", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.50000000", + "longitude": "-84.31667000" + }, + { + "id": "54186", + "name": "Puerto Lempira", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.26667000", + "longitude": "-83.77222000" + }, + { + "id": "54363", + "name": "Villeda Morales", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.08472000", + "longitude": "-83.35361000" + }, + { + "id": "54365", + "name": "Wampusirpi", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.18333000", + "longitude": "-84.61667000" + }, + { + "id": "54366", + "name": "Wawina", + "state_id": 4048, + "state_code": "GD", + "country_id": 97, + "country_code": "HN", + "latitude": "15.41667000", + "longitude": "-84.43333000" + }, + { + "id": "53882", + "name": "Camasca", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.00000000", + "longitude": "-88.38333000" + }, + { + "id": "53907", + "name": "Colomoncagua", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "13.97245000", + "longitude": "-88.27673000" + }, + { + "id": "53910", + "name": "Concepción", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.04725000", + "longitude": "-88.31942000" + }, + { + "id": "53935", + "name": "Dolores", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.26188000", + "longitude": "-88.35787000" + }, + { + "id": "54027", + "name": "Intibucá", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.43000000", + "longitude": "-88.17000000" + }, + { + "id": "54034", + "name": "Jesús de Otoro", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.48333000", + "longitude": "-87.98333000" + }, + { + "id": "54035", + "name": "Jiquinlaca", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.00000000", + "longitude": "-88.35000000" + }, + { + "id": "54054", + "name": "La Esperanza", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.31111000", + "longitude": "-88.18056000" + }, + { + "id": "54114", + "name": "Magdalena", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "13.92452000", + "longitude": "-88.36675000" + }, + { + "id": "54122", + "name": "Masaguara", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.40428000", + "longitude": "-87.98247000" + }, + { + "id": "54213", + "name": "San Antonio", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "13.95043000", + "longitude": "-88.46493000" + }, + { + "id": "54232", + "name": "San Francisco de Opalaca", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.58441000", + "longitude": "-88.30253000" + }, + { + "id": "54238", + "name": "San Isidro", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.56763000", + "longitude": "-88.11743000" + }, + { + "id": "54256", + "name": "San Juan", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.42127000", + "longitude": "-88.41953000" + }, + { + "id": "54274", + "name": "San Marcos de la Sierra", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.13236000", + "longitude": "-88.24690000" + }, + { + "id": "54277", + "name": "San Miguelito", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.34875000", + "longitude": "-88.33983000" + }, + { + "id": "54304", + "name": "Santa Lucía", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "13.90812000", + "longitude": "-88.41566000" + }, + { + "id": "54368", + "name": "Yamaranguila", + "state_id": 4044, + "state_code": "IN", + "country_id": 97, + "country_code": "HN", + "latitude": "14.26826000", + "longitude": "-88.24652000" + }, + { + "id": "53842", + "name": "Aguanqueterique", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.98606000", + "longitude": "-87.64622000" + }, + { + "id": "53879", + "name": "Cabañas", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.99419000", + "longitude": "-88.02864000" + }, + { + "id": "53885", + "name": "Cane", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.28333000", + "longitude": "-87.66667000" + }, + { + "id": "53897", + "name": "Chinacla", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.18289000", + "longitude": "-87.95395000" + }, + { + "id": "54014", + "name": "Guajiquiro", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.06982000", + "longitude": "-87.77451000" + }, + { + "id": "54073", + "name": "La Paz", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.31944000", + "longitude": "-87.67917000" + }, + { + "id": "54099", + "name": "Lauterique", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.86425000", + "longitude": "-87.65792000" + }, + { + "id": "54110", + "name": "Los Planes", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.05000000", + "longitude": "-88.01667000" + }, + { + "id": "54120", + "name": "Marcala", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.14845000", + "longitude": "-88.02405000" + }, + { + "id": "54126", + "name": "Mercedes de Oriente", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.90937000", + "longitude": "-87.77795000" + }, + { + "id": "54160", + "name": "Opatoro", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.02451000", + "longitude": "-87.87982000" + }, + { + "id": "54220", + "name": "San Antonio del Norte", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.88000000", + "longitude": "-87.72000000" + }, + { + "id": "54246", + "name": "San José", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.22642000", + "longitude": "-87.96238000" + }, + { + "id": "54257", + "name": "San Juan", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "13.95428000", + "longitude": "-87.72948000" + }, + { + "id": "54284", + "name": "San Pedro de Tutule", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.25000000", + "longitude": "-87.85000000" + }, + { + "id": "54292", + "name": "Santa Ana", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.00011000", + "longitude": "-87.94107000" + }, + { + "id": "54300", + "name": "Santa Elena", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.07149000", + "longitude": "-88.15445000" + }, + { + "id": "54306", + "name": "Santa María", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.26904000", + "longitude": "-87.91164000" + }, + { + "id": "54314", + "name": "Santiago Puringla", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.35000000", + "longitude": "-87.90000000" + }, + { + "id": "54335", + "name": "Tepanguare", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.33333000", + "longitude": "-87.75000000" + }, + { + "id": "54370", + "name": "Yarula", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.10000000", + "longitude": "-88.08000000" + }, + { + "id": "54371", + "name": "Yarumela", + "state_id": 4058, + "state_code": "LP", + "country_id": 97, + "country_code": "HN", + "latitude": "14.33333000", + "longitude": "-87.63333000" + }, + { + "id": "53871", + "name": "Belén", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.50834000", + "longitude": "-88.42819000" + }, + { + "id": "53884", + "name": "Candelaria", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.06072000", + "longitude": "-88.55913000" + }, + { + "id": "53906", + "name": "Cololaca", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.31189000", + "longitude": "-88.87720000" + }, + { + "id": "53940", + "name": "El Achiotal", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.08333000", + "longitude": "-88.75000000" + }, + { + "id": "54000", + "name": "Erandique", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.23333000", + "longitude": "-88.46667000" + }, + { + "id": "54010", + "name": "Gracias", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.59028000", + "longitude": "-88.58194000" + }, + { + "id": "54017", + "name": "Gualcince", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.12869000", + "longitude": "-88.56812000" + }, + { + "id": "54020", + "name": "Guarita", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.20784000", + "longitude": "-88.85161000" + }, + { + "id": "54047", + "name": "La Campa", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.47280000", + "longitude": "-88.56090000" + }, + { + "id": "54063", + "name": "La Iguala", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.66441000", + "longitude": "-88.46360000" + }, + { + "id": "54067", + "name": "La Libertad", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.80000000", + "longitude": "-88.58333000" + }, + { + "id": "54081", + "name": "La Unión", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.81667000", + "longitude": "-88.40000000" + }, + { + "id": "54085", + "name": "La Virtud", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.07156000", + "longitude": "-88.68584000" + }, + { + "id": "54091", + "name": "Las Flores", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.67930000", + "longitude": "-88.65040000" + }, + { + "id": "54093", + "name": "Las Tejeras", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.80000000", + "longitude": "-88.60000000" + }, + { + "id": "54101", + "name": "Lepaera", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.78333000", + "longitude": "-88.58333000" + }, + { + "id": "54117", + "name": "Mapulaca", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.04293000", + "longitude": "-88.62440000" + }, + { + "id": "54174", + "name": "Piraera", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.06261000", + "longitude": "-88.46319000" + }, + { + "id": "54210", + "name": "San Andrés", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.21968000", + "longitude": "-88.54981000" + }, + { + "id": "54227", + "name": "San Francisco", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.12435000", + "longitude": "-88.37189000" + }, + { + "id": "54258", + "name": "San Juan Guarita", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.15492000", + "longitude": "-88.77477000" + }, + { + "id": "54269", + "name": "San Manuel Colohete", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.44435000", + "longitude": "-88.67050000" + }, + { + "id": "54272", + "name": "San Marcos de Caiquin", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.41614000", + "longitude": "-88.60126000" + }, + { + "id": "54285", + "name": "San Rafael", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.73333000", + "longitude": "-88.41667000" + }, + { + "id": "54287", + "name": "San Sebastián", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.34594000", + "longitude": "-88.73487000" + }, + { + "id": "54297", + "name": "Santa Cruz", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.34427000", + "longitude": "-88.52684000" + }, + { + "id": "54326", + "name": "Talgua", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.68110000", + "longitude": "-88.72800000" + }, + { + "id": "54327", + "name": "Tambla", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.21276000", + "longitude": "-88.76768000" + }, + { + "id": "54328", + "name": "Taragual", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.75000000", + "longitude": "-88.48333000" + }, + { + "id": "54340", + "name": "Tomalá", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.24330000", + "longitude": "-88.73140000" + }, + { + "id": "54353", + "name": "Valladolid", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.14710000", + "longitude": "-88.70840000" + }, + { + "id": "54364", + "name": "Virginia", + "state_id": 4054, + "state_code": "LE", + "country_id": 97, + "country_code": "HN", + "latitude": "14.00522000", + "longitude": "-88.56193000" + }, + { + "id": "53850", + "name": "Antigua Ocotepeque", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.40000000", + "longitude": "-89.20000000" + }, + { + "id": "53872", + "name": "Belén Gualcho", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.48333000", + "longitude": "-88.80000000" + }, + { + "id": "53909", + "name": "Concepción", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.52383000", + "longitude": "-89.19371000" + }, + { + "id": "53936", + "name": "Dolores Merendón", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.55095000", + "longitude": "-89.12493000" + }, + { + "id": "53996", + "name": "El Tránsito", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.38333000", + "longitude": "-88.91667000" + }, + { + "id": "54007", + "name": "Fraternidad", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.58087000", + "longitude": "-89.07740000" + }, + { + "id": "54051", + "name": "La Encarnación", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.66667000", + "longitude": "-89.04742000" + }, + { + "id": "54066", + "name": "La Labor", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.48333000", + "longitude": "-89.00000000" + }, + { + "id": "54112", + "name": "Lucerna", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.55000000", + "longitude": "-88.93333000" + }, + { + "id": "54125", + "name": "Mercedes", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.31667000", + "longitude": "-88.98333000" + }, + { + "id": "54150", + "name": "Nueva Ocotepeque", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.43333000", + "longitude": "-89.18333000" + }, + { + "id": "54225", + "name": "San Fernando", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.68793000", + "longitude": "-89.10153000" + }, + { + "id": "54229", + "name": "San Francisco de Cones", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.51667000", + "longitude": "-88.90000000" + }, + { + "id": "54235", + "name": "San Francisco del Valle", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.43333000", + "longitude": "-88.95000000" + }, + { + "id": "54243", + "name": "San Jorge", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.63697000", + "longitude": "-89.11860000" + }, + { + "id": "54271", + "name": "San Marcos", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.38000000", + "longitude": "-88.92000000" + }, + { + "id": "54301", + "name": "Santa Fe", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.50038000", + "longitude": "-89.27320000" + }, + { + "id": "54303", + "name": "Santa Lucía", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.41667000", + "longitude": "-89.20000000" + }, + { + "id": "54316", + "name": "Sensenti", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.48333000", + "longitude": "-88.93333000" + }, + { + "id": "54319", + "name": "Sinuapa", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.45000000", + "longitude": "-89.18333000" + }, + { + "id": "54369", + "name": "Yaruchel", + "state_id": 4056, + "state_code": "OC", + "country_id": 97, + "country_code": "HN", + "latitude": "14.53333000", + "longitude": "-88.81667000" + }, + { + "id": "53856", + "name": "Arimís", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.78333000", + "longitude": "-86.00000000" + }, + { + "id": "53883", + "name": "Campamento", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.55000000", + "longitude": "-86.65000000" + }, + { + "id": "53890", + "name": "Catacamas", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.60384000", + "longitude": "-85.54261000" + }, + { + "id": "53917", + "name": "Concordia", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.61667000", + "longitude": "-86.65000000" + }, + { + "id": "53938", + "name": "Dulce Nombre de Culmí", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.10000000", + "longitude": "-85.53333000" + }, + { + "id": "53956", + "name": "El Guayabito", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.83333000", + "longitude": "-86.03333000" + }, + { + "id": "53986", + "name": "El Rosario", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.88720000", + "longitude": "-86.68764000" + }, + { + "id": "53987", + "name": "El Rusio", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.46667000", + "longitude": "-86.36667000" + }, + { + "id": "54002", + "name": "Esquipulas del Norte", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.27763000", + "longitude": "-86.55760000" + }, + { + "id": "54015", + "name": "Gualaco", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.02521000", + "longitude": "-86.07076000" + }, + { + "id": "54021", + "name": "Guarizama", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.91667000", + "longitude": "-86.33333000" + }, + { + "id": "54022", + "name": "Guata", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.15133000", + "longitude": "-86.37624000" + }, + { + "id": "54023", + "name": "Guayape", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.71667000", + "longitude": "-86.83333000" + }, + { + "id": "54032", + "name": "Jano", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.07902000", + "longitude": "-86.51521000" + }, + { + "id": "54042", + "name": "Juticalpa", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.66667000", + "longitude": "-86.21944000" + }, + { + "id": "54043", + "name": "Jutiquile", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.71667000", + "longitude": "-86.08333000" + }, + { + "id": "54049", + "name": "La Concepción", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.70000000", + "longitude": "-86.23333000" + }, + { + "id": "54057", + "name": "La Estancia", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.05000000", + "longitude": "-86.35000000" + }, + { + "id": "54061", + "name": "La Guata", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.08333000", + "longitude": "-86.38333000" + }, + { + "id": "54082", + "name": "La Unión", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.09759000", + "longitude": "-86.68910000" + }, + { + "id": "54087", + "name": "Laguna Seca", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.70000000", + "longitude": "-86.10000000" + }, + { + "id": "54115", + "name": "Mangulile", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.06667000", + "longitude": "-86.80000000" + }, + { + "id": "54116", + "name": "Manto", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.91667000", + "longitude": "-86.38333000" + }, + { + "id": "54137", + "name": "Municipio de San Francisco de La Paz", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.84183000", + "longitude": "-86.11819000" + }, + { + "id": "54166", + "name": "Patuca", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.36000000", + "longitude": "-85.97000000" + }, + { + "id": "54189", + "name": "Punuare", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.73333000", + "longitude": "-85.96667000" + }, + { + "id": "54207", + "name": "Salamá", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.81052000", + "longitude": "-86.61996000" + }, + { + "id": "54224", + "name": "San Esteban", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "15.29467000", + "longitude": "-85.69487000" + }, + { + "id": "54228", + "name": "San Francisco de Becerra", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.63333000", + "longitude": "-86.10000000" + }, + { + "id": "54234", + "name": "San Francisco de la Paz", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.90000000", + "longitude": "-86.20000000" + }, + { + "id": "54252", + "name": "San José de Río Tinto", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.93333000", + "longitude": "-85.70000000" + }, + { + "id": "54278", + "name": "San Nicolás", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.55000000", + "longitude": "-86.25000000" + }, + { + "id": "54307", + "name": "Santa María del Real", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.76667000", + "longitude": "-85.95000000" + }, + { + "id": "54318", + "name": "Silca", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.76205000", + "longitude": "-86.51521000" + }, + { + "id": "54373", + "name": "Yocón", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.95000000", + "longitude": "-86.82000000" + }, + { + "id": "54379", + "name": "Zopilotepe", + "state_id": 4050, + "state_code": "OL", + "country_id": 97, + "country_code": "HN", + "latitude": "14.60000000", + "longitude": "-86.26667000" + }, + { + "id": "53841", + "name": "Agualote", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.33528000", + "longitude": "-88.55306000" + }, + { + "id": "53852", + "name": "Arada", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.85000000", + "longitude": "-88.30000000" + }, + { + "id": "53861", + "name": "Atima", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.93333000", + "longitude": "-88.48333000" + }, + { + "id": "53865", + "name": "Azacualpa", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.71667000", + "longitude": "-88.10000000" + }, + { + "id": "53873", + "name": "Berlín", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.83333000", + "longitude": "-88.50000000" + }, + { + "id": "53880", + "name": "Callejones", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.16667000", + "longitude": "-88.65000000" + }, + { + "id": "53881", + "name": "Camalote", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.33333000", + "longitude": "-88.33333000" + }, + { + "id": "53888", + "name": "Casa Quemada", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.26667000", + "longitude": "-88.55000000" + }, + { + "id": "53893", + "name": "Ceguaca", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.80000000", + "longitude": "-88.20000000" + }, + { + "id": "53898", + "name": "Chinda", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.11667000", + "longitude": "-88.20000000" + }, + { + "id": "53915", + "name": "Concepción del Norte", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.20227000", + "longitude": "-88.13728000" + }, + { + "id": "53916", + "name": "Concepción del Sur", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.81263000", + "longitude": "-88.15316000" + }, + { + "id": "53924", + "name": "Correderos", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.41667000", + "longitude": "-88.45000000" + }, + { + "id": "53946", + "name": "El Ciruelo", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.30000000", + "longitude": "-88.50000000" + }, + { + "id": "53947", + "name": "El Corozal", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.06667000", + "longitude": "-88.61667000" + }, + { + "id": "53962", + "name": "El Mochito", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.86667000", + "longitude": "-88.08333000" + }, + { + "id": "53964", + "name": "El Níspero", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.75957000", + "longitude": "-88.34438000" + }, + { + "id": "54011", + "name": "Guacamaya", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.01667000", + "longitude": "-88.15000000" + }, + { + "id": "54016", + "name": "Gualala", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.98000000", + "longitude": "-88.17000000" + }, + { + "id": "54018", + "name": "Gualjoco", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.95000000", + "longitude": "-88.23333000" + }, + { + "id": "54026", + "name": "Ilama", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.06667000", + "longitude": "-88.21667000" + }, + { + "id": "54036", + "name": "Joconal", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.35444000", + "longitude": "-88.63556000" + }, + { + "id": "54058", + "name": "La Flecha", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.28333000", + "longitude": "-88.48333000" + }, + { + "id": "54088", + "name": "Laguna Verde", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.20000000", + "longitude": "-88.16667000" + }, + { + "id": "54096", + "name": "Las Vegas", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.86636000", + "longitude": "-88.07233000" + }, + { + "id": "54097", + "name": "Las Vegas, Santa Barbara", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.87649000", + "longitude": "-88.07473000" + }, + { + "id": "54105", + "name": "Loma Alta", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.39667000", + "longitude": "-88.55972000" + }, + { + "id": "54113", + "name": "Macuelizo", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.26000000", + "longitude": "-88.66000000" + }, + { + "id": "54140", + "name": "Naco", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.38333000", + "longitude": "-88.18333000" + }, + { + "id": "54142", + "name": "Naranjito", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.95000000", + "longitude": "-88.68333000" + }, + { + "id": "54148", + "name": "Nueva Frontera", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.21000000", + "longitude": "-88.56000000" + }, + { + "id": "54149", + "name": "Nueva Jalapa", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.91667000", + "longitude": "-88.33333000" + }, + { + "id": "54151", + "name": "Nuevo Celilac", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.97554000", + "longitude": "-88.36726000" + }, + { + "id": "54169", + "name": "Petoa", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.26667000", + "longitude": "-88.28333000" + }, + { + "id": "54173", + "name": "Pinalejo", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.38333000", + "longitude": "-88.40000000" + }, + { + "id": "54179", + "name": "Protección", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.03333000", + "longitude": "-88.65000000" + }, + { + "id": "54195", + "name": "Quimistán", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.35000000", + "longitude": "-88.40000000" + }, + { + "id": "54231", + "name": "San Francisco de Ojuera", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.67000000", + "longitude": "-88.21000000" + }, + { + "id": "54248", + "name": "San José de Colinas", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.03333000", + "longitude": "-88.30000000" + }, + { + "id": "54253", + "name": "San José de Tarros", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.30000000", + "longitude": "-88.70000000" + }, + { + "id": "54265", + "name": "San Luis", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.08333000", + "longitude": "-88.38333000" + }, + { + "id": "54267", + "name": "San Luis de Planes", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.98333000", + "longitude": "-88.13333000" + }, + { + "id": "54270", + "name": "San Marcos", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.30000000", + "longitude": "-88.41667000" + }, + { + "id": "54280", + "name": "San Nicolás", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.91913000", + "longitude": "-88.37910000" + }, + { + "id": "54282", + "name": "San Pedro Zacapa", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.75000000", + "longitude": "-88.11667000" + }, + { + "id": "54288", + "name": "San Vicente Centenario", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.88333000", + "longitude": "-88.28333000" + }, + { + "id": "54294", + "name": "Santa Bárbara", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.91944000", + "longitude": "-88.23611000" + }, + { + "id": "54309", + "name": "Santa Rita", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "14.76015000", + "longitude": "-88.26782000" + }, + { + "id": "54323", + "name": "Sula", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.25000000", + "longitude": "-88.56667000" + }, + { + "id": "54343", + "name": "Tras Cerros", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.30000000", + "longitude": "-88.66667000" + }, + { + "id": "54345", + "name": "Trinidad", + "state_id": 4053, + "state_code": "SB", + "country_id": 97, + "country_code": "HN", + "latitude": "15.13333000", + "longitude": "-88.23333000" + }, + { + "id": "53840", + "name": "Agua Fría", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.46889000", + "longitude": "-87.55111000" + }, + { + "id": "53847", + "name": "Alianza", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.44815000", + "longitude": "-87.68643000" + }, + { + "id": "53849", + "name": "Amapala", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.29222000", + "longitude": "-87.65389000" + }, + { + "id": "53853", + "name": "Aramecina", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.74222000", + "longitude": "-87.71028000" + }, + { + "id": "53887", + "name": "Caridad", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.81562000", + "longitude": "-87.68121000" + }, + { + "id": "53950", + "name": "El Cubolero", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.46667000", + "longitude": "-87.66667000" + }, + { + "id": "53997", + "name": "El Tular", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.46639000", + "longitude": "-87.51528000" + }, + { + "id": "54009", + "name": "Goascorán", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.58333000", + "longitude": "-87.61667000" + }, + { + "id": "54044", + "name": "Jícaro Galán", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.53167000", + "longitude": "-87.43889000" + }, + { + "id": "54045", + "name": "La Alianza", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.51222000", + "longitude": "-87.72444000" + }, + { + "id": "54050", + "name": "La Criba", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.45361000", + "longitude": "-87.41333000" + }, + { + "id": "54090", + "name": "Langue", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.62083000", + "longitude": "-87.65250000" + }, + { + "id": "54139", + "name": "Nacaome", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.52209000", + "longitude": "-87.52477000" + }, + { + "id": "54230", + "name": "San Francisco de Coray", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.66139000", + "longitude": "-87.53278000" + }, + { + "id": "54263", + "name": "San Lorenzo", + "state_id": 4055, + "state_code": "VA", + "country_id": 97, + "country_code": "HN", + "latitude": "13.45149000", + "longitude": "-87.40743000" + }, + { + "id": "53838", + "name": "Agua Blanca Sur", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.25000000", + "longitude": "-87.88333000" + }, + { + "id": "53855", + "name": "Arenal", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.35000000", + "longitude": "-86.83333000" + }, + { + "id": "53858", + "name": "Armenia", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.46667000", + "longitude": "-86.36667000" + }, + { + "id": "53864", + "name": "Ayapa", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.11174000", + "longitude": "-87.17557000" + }, + { + "id": "53877", + "name": "Bálsamo Oriental", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.48333000", + "longitude": "-86.33333000" + }, + { + "id": "53886", + "name": "Carbajales", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.51667000", + "longitude": "-86.35000000" + }, + { + "id": "53926", + "name": "Coyoles Central", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.40000000", + "longitude": "-86.66667000" + }, + { + "id": "53943", + "name": "El Bálsamo", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.06667000", + "longitude": "-87.46667000" + }, + { + "id": "53957", + "name": "El Juncal", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.45000000", + "longitude": "-86.43333000" + }, + { + "id": "53963", + "name": "El Negrito", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.31667000", + "longitude": "-87.70000000" + }, + { + "id": "53967", + "name": "El Ocote", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.41667000", + "longitude": "-86.56667000" + }, + { + "id": "53980", + "name": "El Progreso", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.42762000", + "longitude": "-87.77396000" + }, + { + "id": "54013", + "name": "Guaimitas", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.50000000", + "longitude": "-87.71667000" + }, + { + "id": "54037", + "name": "Jocón", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.28333000", + "longitude": "-86.96667000" + }, + { + "id": "54056", + "name": "La Estancia", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.28333000", + "longitude": "-87.55000000" + }, + { + "id": "54059", + "name": "La Guacamaya", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.25000000", + "longitude": "-87.80000000" + }, + { + "id": "54072", + "name": "La Mina", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.31667000", + "longitude": "-87.83333000" + }, + { + "id": "54075", + "name": "La Rosa", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.35000000", + "longitude": "-87.06667000" + }, + { + "id": "54077", + "name": "La Sarrosa", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.23333000", + "longitude": "-87.83333000" + }, + { + "id": "54078", + "name": "La Trinidad", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.10000000", + "longitude": "-87.20000000" + }, + { + "id": "54095", + "name": "Las Vegas", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.01667000", + "longitude": "-87.45000000" + }, + { + "id": "54106", + "name": "Lomitas", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.10000000", + "longitude": "-87.21667000" + }, + { + "id": "54130", + "name": "Mojimán", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.26667000", + "longitude": "-87.60000000" + }, + { + "id": "54133", + "name": "Morazán", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.31667000", + "longitude": "-87.60000000" + }, + { + "id": "54143", + "name": "Nombre de Jesús", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.35000000", + "longitude": "-86.68333000" + }, + { + "id": "54147", + "name": "Nueva Esperanza", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.26667000", + "longitude": "-87.60000000" + }, + { + "id": "54153", + "name": "Ocote Paulino", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.41667000", + "longitude": "-87.60000000" + }, + { + "id": "54158", + "name": "Olanchito", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.48131000", + "longitude": "-86.57415000" + }, + { + "id": "54167", + "name": "Paujiles", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.10000000", + "longitude": "-87.35000000" + }, + { + "id": "54187", + "name": "Punta Ocote", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.20000000", + "longitude": "-87.28333000" + }, + { + "id": "54211", + "name": "San Antonio", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.33333000", + "longitude": "-87.15000000" + }, + { + "id": "54244", + "name": "San José", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.31667000", + "longitude": "-87.16667000" + }, + { + "id": "54308", + "name": "Santa Rita", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.18000000", + "longitude": "-87.81000000" + }, + { + "id": "54322", + "name": "Subirana", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.20000000", + "longitude": "-87.45000000" + }, + { + "id": "54324", + "name": "Sulaco", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "14.91667000", + "longitude": "-87.26667000" + }, + { + "id": "54332", + "name": "Teguajinal", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.36667000", + "longitude": "-86.60000000" + }, + { + "id": "54336", + "name": "Tepusteca", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.41667000", + "longitude": "-86.31667000" + }, + { + "id": "54342", + "name": "Toyós", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.55000000", + "longitude": "-87.65000000" + }, + { + "id": "54347", + "name": "Trojas", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.35000000", + "longitude": "-86.70000000" + }, + { + "id": "54358", + "name": "Victoria", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.10012000", + "longitude": "-87.53020000" + }, + { + "id": "54374", + "name": "Yorito", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.06667000", + "longitude": "-87.28333000" + }, + { + "id": "54375", + "name": "Yoro", + "state_id": 4057, + "state_code": "YO", + "country_id": 97, + "country_code": "HN", + "latitude": "15.13750000", + "longitude": "-87.12778000" + }, + { + "id": "55304", + "name": "Bóly", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.96722000", + "longitude": "18.51833000" + }, + { + "id": "55305", + "name": "Bólyi Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.98075000", + "longitude": "18.48449000" + }, + { + "id": "55310", + "name": "Bükkösd", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.10751000", + "longitude": "17.98820000" + }, + { + "id": "55238", + "name": "Beremend", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.79108000", + "longitude": "18.43263000" + }, + { + "id": "55378", + "name": "Dunaszekcső", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.08740000", + "longitude": "18.75870000" + }, + { + "id": "55497", + "name": "Harkány", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.85002000", + "longitude": "18.23668000" + }, + { + "id": "55502", + "name": "Hegyháti Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.27247000", + "longitude": "18.13758000" + }, + { + "id": "55512", + "name": "Hidas", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.25680000", + "longitude": "18.49540000" + }, + { + "id": "55516", + "name": "Hosszúhetény", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.16414000", + "longitude": "18.35077000" + }, + { + "id": "55618", + "name": "Komló", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.19278000", + "longitude": "18.26494000" + }, + { + "id": "55619", + "name": "Komlói Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.22019000", + "longitude": "18.28620000" + }, + { + "id": "55625", + "name": "Kozármisleny", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.02967000", + "longitude": "18.29210000" + }, + { + "id": "55667", + "name": "Lánycsók", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.00543000", + "longitude": "18.62526000" + }, + { + "id": "55719", + "name": "Mágocs", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.34998000", + "longitude": "18.23240000" + }, + { + "id": "55684", + "name": "Mecseknádasd", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.22468000", + "longitude": "18.47076000" + }, + { + "id": "55708", + "name": "Mohács", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.99020000", + "longitude": "18.68621000" + }, + { + "id": "55709", + "name": "Mohácsi Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.02004000", + "longitude": "18.68000000" + }, + { + "id": "55850", + "name": "Pécs", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.08333000", + "longitude": "18.23333000" + }, + { + "id": "55851", + "name": "Pécsi Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.07990000", + "longitude": "18.25253000" + }, + { + "id": "55852", + "name": "Pécsvárad", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.16033000", + "longitude": "18.42321000" + }, + { + "id": "55853", + "name": "Pécsváradi Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.16782000", + "longitude": "18.45456000" + }, + { + "id": "55812", + "name": "Pellérd", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.03438000", + "longitude": "18.15403000" + }, + { + "id": "55993", + "name": "Sásd", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.25520000", + "longitude": "18.10776000" + }, + { + "id": "55894", + "name": "Sellye", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.87247000", + "longitude": "17.84711000" + }, + { + "id": "55895", + "name": "Sellyei Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.86955000", + "longitude": "17.89827000" + }, + { + "id": "55897", + "name": "Siklós", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.85499000", + "longitude": "18.29752000" + }, + { + "id": "55898", + "name": "Siklósi Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.84981000", + "longitude": "18.31052000" + }, + { + "id": "55970", + "name": "Szászvár", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.27673000", + "longitude": "18.37566000" + }, + { + "id": "55944", + "name": "Szentlőrinc", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.04016000", + "longitude": "17.98719000" + }, + { + "id": "55945", + "name": "Szentlőrinci Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.04694000", + "longitude": "18.01528000" + }, + { + "id": "55954", + "name": "Szigetvár", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.04865000", + "longitude": "17.80554000" + }, + { + "id": "55955", + "name": "Szigetvári Járás", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.07336000", + "longitude": "17.80391000" + }, + { + "id": "56089", + "name": "Vajszló", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.85957000", + "longitude": "17.98406000" + }, + { + "id": "56102", + "name": "Villány", + "state_id": 1055, + "state_code": "BA", + "country_id": 99, + "country_code": "HU", + "latitude": "45.86889000", + "longitude": "18.45389000" + }, + { + "id": "55180", + "name": "Akasztó", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.69167000", + "longitude": "19.20423000" + }, + { + "id": "55191", + "name": "Apostag", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.88208000", + "longitude": "18.96210000" + }, + { + "id": "56141", + "name": "Ágasegyháza", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.84025000", + "longitude": "19.45208000" + }, + { + "id": "56147", + "name": "Érsekcsanád", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.25352000", + "longitude": "18.98457000" + }, + { + "id": "55203", + "name": "Baja", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.18299000", + "longitude": "18.95307000" + }, + { + "id": "55204", + "name": "Bajai Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.14507000", + "longitude": "19.01359000" + }, + { + "id": "55225", + "name": "Ballószög", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.86216000", + "longitude": "19.57092000" + }, + { + "id": "55287", + "name": "Bácsalmás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.12648000", + "longitude": "19.33260000" + }, + { + "id": "55288", + "name": "Bácsalmási Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.10167000", + "longitude": "19.33063000" + }, + { + "id": "55289", + "name": "Bácsbokod", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.12500000", + "longitude": "19.15621000" + }, + { + "id": "55295", + "name": "Bátya", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.48800000", + "longitude": "18.95419000" + }, + { + "id": "55283", + "name": "Bugac", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.68704000", + "longitude": "19.68074000" + }, + { + "id": "55347", + "name": "Császártöltés", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.42194000", + "longitude": "19.18361000" + }, + { + "id": "55348", + "name": "Csávoly", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.18917000", + "longitude": "19.14667000" + }, + { + "id": "55331", + "name": "Csengőd", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.71543000", + "longitude": "19.26802000" + }, + { + "id": "55386", + "name": "Dávod", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "45.99500000", + "longitude": "18.91722000" + }, + { + "id": "55377", + "name": "Dunapataj", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.64400000", + "longitude": "18.99632000" + }, + { + "id": "55381", + "name": "Dunavecse", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.91478000", + "longitude": "18.97127000" + }, + { + "id": "55383", + "name": "Dusnok", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.39085000", + "longitude": "18.96296000" + }, + { + "id": "55439", + "name": "Fülöpjakab", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.74221000", + "longitude": "19.72132000" + }, + { + "id": "55440", + "name": "Fülöpszállás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.82075000", + "longitude": "19.23748000" + }, + { + "id": "55424", + "name": "Felsőszentiván", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.19713000", + "longitude": "19.18686000" + }, + { + "id": "55446", + "name": "Gara", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.03194000", + "longitude": "19.04278000" + }, + { + "id": "55493", + "name": "Hajós", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.39861000", + "longitude": "19.12056000" + }, + { + "id": "55499", + "name": "Harta", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.69758000", + "longitude": "19.03110000" + }, + { + "id": "55504", + "name": "Helvécia", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.83661000", + "longitude": "19.62251000" + }, + { + "id": "55505", + "name": "Hercegszántó", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "45.95000000", + "longitude": "18.93917000" + }, + { + "id": "55531", + "name": "Izsák", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.80454000", + "longitude": "19.35172000" + }, + { + "id": "55535", + "name": "Jánoshalma", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.29861000", + "longitude": "19.32583000" + }, + { + "id": "55536", + "name": "Jánoshalmai Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.28283000", + "longitude": "19.31742000" + }, + { + "id": "55552", + "name": "Jászszentlászló", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.56685000", + "longitude": "19.76065000" + }, + { + "id": "55558", + "name": "Kalocsa", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.52981000", + "longitude": "18.97283000" + }, + { + "id": "55559", + "name": "Kalocsai Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.55646000", + "longitude": "19.04211000" + }, + { + "id": "55574", + "name": "Katymár", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.03398000", + "longitude": "19.20935000" + }, + { + "id": "55578", + "name": "Kecel", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.52528000", + "longitude": "19.25194000" + }, + { + "id": "55579", + "name": "Kecskemét", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.90618000", + "longitude": "19.69128000" + }, + { + "id": "55580", + "name": "Kecskeméti Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.88283000", + "longitude": "19.58701000" + }, + { + "id": "55581", + "name": "Kelebia", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.19680000", + "longitude": "19.61659000" + }, + { + "id": "55587", + "name": "Kerekegyháza", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.93722000", + "longitude": "19.47806000" + }, + { + "id": "55602", + "name": "Kiskőrös", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.62139000", + "longitude": "19.28528000" + }, + { + "id": "55603", + "name": "Kiskőrösi Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.63309000", + "longitude": "19.33726000" + }, + { + "id": "55594", + "name": "Kiskunfélegyháza", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.71213000", + "longitude": "19.84458000" + }, + { + "id": "55595", + "name": "Kiskunfélegyházi Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.65721000", + "longitude": "19.77006000" + }, + { + "id": "55596", + "name": "Kiskunhalas", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.43402000", + "longitude": "19.48479000" + }, + { + "id": "55597", + "name": "Kiskunhalasi Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.35832000", + "longitude": "19.53067000" + }, + { + "id": "55599", + "name": "Kiskunmajsa", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.49028000", + "longitude": "19.74000000" + }, + { + "id": "55600", + "name": "Kiskunmajsai Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.49608000", + "longitude": "19.72316000" + }, + { + "id": "55608", + "name": "Kisszállás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.28009000", + "longitude": "19.48954000" + }, + { + "id": "55626", + "name": "Kunfehértó", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.36091000", + "longitude": "19.41454000" + }, + { + "id": "55630", + "name": "Kunszentmiklós", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "47.02699000", + "longitude": "19.12575000" + }, + { + "id": "55631", + "name": "Kunszentmiklósi Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.94810000", + "longitude": "19.15563000" + }, + { + "id": "55654", + "name": "Lajosmizse", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "47.02133000", + "longitude": "19.56171000" + }, + { + "id": "55655", + "name": "Lakitelek", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.87601000", + "longitude": "19.99504000" + }, + { + "id": "55672", + "name": "Madaras", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.05870000", + "longitude": "19.26121000" + }, + { + "id": "55731", + "name": "Mélykút", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.21509000", + "longitude": "19.38102000" + }, + { + "id": "55741", + "name": "Nagybaracska", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.04248000", + "longitude": "18.90590000" + }, + { + "id": "55765", + "name": "Nemesnádudvar", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.34051000", + "longitude": "19.05115000" + }, + { + "id": "55768", + "name": "Nyárlőrinc", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.86017000", + "longitude": "19.87836000" + }, + { + "id": "55799", + "name": "Orgovány", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.75087000", + "longitude": "19.47259000" + }, + { + "id": "55840", + "name": "Pálmonostora", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.62417000", + "longitude": "19.95156000" + }, + { + "id": "55997", + "name": "Sükösd", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.28181000", + "longitude": "18.99524000" + }, + { + "id": "55903", + "name": "Solt", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.80101000", + "longitude": "19.00098000" + }, + { + "id": "55904", + "name": "Soltvadkert", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.57889000", + "longitude": "19.39389000" + }, + { + "id": "55913", + "name": "Szabadszállás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.87575000", + "longitude": "19.22324000" + }, + { + "id": "55917", + "name": "Szalkszentmárton", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.97565000", + "longitude": "19.01178000" + }, + { + "id": "55919", + "name": "Szank", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.55713000", + "longitude": "19.66103000" + }, + { + "id": "55942", + "name": "Szentkirály", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.91892000", + "longitude": "19.91846000" + }, + { + "id": "56016", + "name": "Tass", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "47.02095000", + "longitude": "19.02988000" + }, + { + "id": "56072", + "name": "Tázlár", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.54824000", + "longitude": "19.51436000" + }, + { + "id": "56021", + "name": "Tiszaalpár", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.81279000", + "longitude": "19.99841000" + }, + { + "id": "56035", + "name": "Tiszakécske", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.93261000", + "longitude": "20.10349000" + }, + { + "id": "56036", + "name": "Tiszakécskei Járás", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.86013000", + "longitude": "19.97298000" + }, + { + "id": "56055", + "name": "Tompa", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.20605000", + "longitude": "19.53910000" + }, + { + "id": "56091", + "name": "Vaskút", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.10782000", + "longitude": "18.98514000" + }, + { + "id": "56111", + "name": "Városföld", + "state_id": 1048, + "state_code": "BK", + "country_id": 99, + "country_code": "HU", + "latitude": "46.81674000", + "longitude": "19.75668000" + }, + { + "id": "56162", + "name": "Újkígyós", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.58333000", + "longitude": "21.03333000" + }, + { + "id": "55233", + "name": "Battonya", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.28333000", + "longitude": "21.01667000" + }, + { + "id": "55296", + "name": "Békés", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.76667000", + "longitude": "21.13333000" + }, + { + "id": "55297", + "name": "Békéscsaba", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.68333000", + "longitude": "21.10000000" + }, + { + "id": "55298", + "name": "Békéscsabai Járás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.68133000", + "longitude": "21.07413000" + }, + { + "id": "55299", + "name": "Békési Járás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.83317000", + "longitude": "21.10000000" + }, + { + "id": "55301", + "name": "Békéssámson", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.41667000", + "longitude": "20.63333000" + }, + { + "id": "55300", + "name": "Békésszentandrás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.86667000", + "longitude": "20.48333000" + }, + { + "id": "55259", + "name": "Bucsa", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.20000000", + "longitude": "21.00000000" + }, + { + "id": "55325", + "name": "Csanádapáca", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.55000000", + "longitude": "20.88333000" + }, + { + "id": "55342", + "name": "Csorvás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.63333000", + "longitude": "20.83333000" + }, + { + "id": "55389", + "name": "Dévaványa", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.03333000", + "longitude": "20.96667000" + }, + { + "id": "55364", + "name": "Doboz", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.73333000", + "longitude": "21.25000000" + }, + { + "id": "55366", + "name": "Dombegyház", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.33333000", + "longitude": "21.13333000" + }, + { + "id": "55402", + "name": "Elek", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.53333000", + "longitude": "21.25000000" + }, + { + "id": "55443", + "name": "Füzesgyarmat", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.10000000", + "longitude": "21.21667000" + }, + { + "id": "55470", + "name": "Gádoros", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.66667000", + "longitude": "20.60000000" + }, + { + "id": "55451", + "name": "Gyomaendrőd", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.93333000", + "longitude": "20.83333000" + }, + { + "id": "55452", + "name": "Gyomaendrődi Járás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.98216000", + "longitude": "20.84851000" + }, + { + "id": "55453", + "name": "Gyula", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.65000000", + "longitude": "21.28333000" + }, + { + "id": "55455", + "name": "Gyulai Járás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.58626000", + "longitude": "21.22454000" + }, + { + "id": "55573", + "name": "Kaszaper", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.46667000", + "longitude": "20.83333000" + }, + { + "id": "55642", + "name": "Kétegyháza", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.53333000", + "longitude": "21.18333000" + }, + { + "id": "55649", + "name": "Körösladány", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.96667000", + "longitude": "21.08333000" + }, + { + "id": "55650", + "name": "Köröstarcsa", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.88333000", + "longitude": "21.03333000" + }, + { + "id": "55591", + "name": "Kevermes", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.41667000", + "longitude": "21.18333000" + }, + { + "id": "55622", + "name": "Kondoros", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.76667000", + "longitude": "20.80000000" + }, + { + "id": "55634", + "name": "Kunágota", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.43333000", + "longitude": "21.05000000" + }, + { + "id": "55670", + "name": "Lőkösháza", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.43333000", + "longitude": "21.23333000" + }, + { + "id": "55675", + "name": "Magyarbánhegyes", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.45000000", + "longitude": "20.96667000" + }, + { + "id": "55730", + "name": "Méhkerék", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.78333000", + "longitude": "21.45000000" + }, + { + "id": "55685", + "name": "Medgyesegyháza", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.50000000", + "longitude": "21.03333000" + }, + { + "id": "55688", + "name": "Mezőberény", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.81667000", + "longitude": "21.03333000" + }, + { + "id": "55692", + "name": "Mezőhegyes", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.31667000", + "longitude": "20.81667000" + }, + { + "id": "55694", + "name": "Mezőkovácsháza", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.40000000", + "longitude": "20.91667000" + }, + { + "id": "55695", + "name": "Mezőkovácsházai Járás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.40888000", + "longitude": "21.00318000" + }, + { + "id": "55762", + "name": "Nagyszénás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.68333000", + "longitude": "20.66667000" + }, + { + "id": "55796", + "name": "Okány", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.90000000", + "longitude": "21.35000000" + }, + { + "id": "55800", + "name": "Orosháza", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.56667000", + "longitude": "20.66667000" + }, + { + "id": "55801", + "name": "Orosházi Járás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.56355000", + "longitude": "20.73357000" + }, + { + "id": "55833", + "name": "Pusztaföldvár", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.53333000", + "longitude": "20.80000000" + }, + { + "id": "55891", + "name": "Sarkad", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.75000000", + "longitude": "21.38333000" + }, + { + "id": "55892", + "name": "Sarkadi Járás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.86154000", + "longitude": "21.44875000" + }, + { + "id": "55912", + "name": "Szabadkígyós", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.61667000", + "longitude": "21.10000000" + }, + { + "id": "55921", + "name": "Szarvas", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.86667000", + "longitude": "20.55000000" + }, + { + "id": "55922", + "name": "Szarvasi Járás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.82891000", + "longitude": "20.63707000" + }, + { + "id": "55927", + "name": "Szeghalmi Járás", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.00000000", + "longitude": "21.17000000" + }, + { + "id": "55928", + "name": "Szeghalom", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.03333000", + "longitude": "21.16667000" + }, + { + "id": "56078", + "name": "Tótkomlós", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.41667000", + "longitude": "20.73333000" + }, + { + "id": "56117", + "name": "Vésztő", + "state_id": 1060, + "state_code": "BE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.91667000", + "longitude": "21.26667000" + }, + { + "id": "55170", + "name": "Abaújszántó", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.28333000", + "longitude": "21.20000000" + }, + { + "id": "55186", + "name": "Alsózsolca", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.06982000", + "longitude": "20.88046000" + }, + { + "id": "55194", + "name": "Arló", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.18333000", + "longitude": "20.26667000" + }, + { + "id": "55195", + "name": "Arnót", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.13058000", + "longitude": "20.85832000" + }, + { + "id": "55196", + "name": "Aszaló", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.21667000", + "longitude": "20.96667000" + }, + { + "id": "56151", + "name": "Ónod", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.00000000", + "longitude": "20.91667000" + }, + { + "id": "56154", + "name": "Ózd", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.21667000", + "longitude": "20.30000000" + }, + { + "id": "56155", + "name": "Ózdi Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.18133000", + "longitude": "20.24874000" + }, + { + "id": "55311", + "name": "Bőcs", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.05000000", + "longitude": "20.96667000" + }, + { + "id": "55235", + "name": "Bekecs", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.15000000", + "longitude": "21.18333000" + }, + { + "id": "55252", + "name": "Bogács", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.90000000", + "longitude": "20.53333000" + }, + { + "id": "55254", + "name": "Boldva", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.21667000", + "longitude": "20.80000000" + }, + { + "id": "55258", + "name": "Borsodnádasd", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.11667000", + "longitude": "20.25000000" + }, + { + "id": "55321", + "name": "Cigánd", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.25561000", + "longitude": "21.89195000" + }, + { + "id": "55322", + "name": "Cigándi Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.30338000", + "longitude": "21.87651000" + }, + { + "id": "55396", + "name": "Edelény", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.30000000", + "longitude": "20.73333000" + }, + { + "id": "55397", + "name": "Edelényi Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.40864000", + "longitude": "20.77506000" + }, + { + "id": "55404", + "name": "Emőd", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93333000", + "longitude": "20.81667000" + }, + { + "id": "55405", + "name": "Encs", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.33333000", + "longitude": "21.13333000" + }, + { + "id": "55407", + "name": "Encsi Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.39948000", + "longitude": "21.08169000" + }, + { + "id": "55416", + "name": "Farkaslyuk", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.18333000", + "longitude": "20.31667000" + }, + { + "id": "55426", + "name": "Felsőzsolca", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.10000000", + "longitude": "20.86667000" + }, + { + "id": "55477", + "name": "Gönc", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.46667000", + "longitude": "21.28333000" + }, + { + "id": "55478", + "name": "Gönci Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.39948000", + "longitude": "21.28307000" + }, + { + "id": "55448", + "name": "Gesztely", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.10000000", + "longitude": "20.96667000" + }, + { + "id": "55494", + "name": "Halmaj", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.25000000", + "longitude": "21.00000000" + }, + { + "id": "55498", + "name": "Harsány", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.96667000", + "longitude": "20.75000000" + }, + { + "id": "55503", + "name": "Hejőbába", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.90000000", + "longitude": "20.95000000" + }, + { + "id": "55508", + "name": "Hernádnémeti", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.06667000", + "longitude": "20.98333000" + }, + { + "id": "55532", + "name": "Izsófalva", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.30000000", + "longitude": "20.66667000" + }, + { + "id": "55540", + "name": "Járdánháza", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.15000000", + "longitude": "20.25000000" + }, + { + "id": "55569", + "name": "Karcsa", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.31130000", + "longitude": "21.80537000" + }, + { + "id": "55575", + "name": "Kazincbarcika", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.25000000", + "longitude": "20.63333000" + }, + { + "id": "55576", + "name": "Kazincbarcikai Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.26371000", + "longitude": "20.57978000" + }, + { + "id": "55718", + "name": "Mád", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.19442000", + "longitude": "21.28208000" + }, + { + "id": "55720", + "name": "Mályi", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.01667000", + "longitude": "20.83333000" + }, + { + "id": "55737", + "name": "Múcsony", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.26667000", + "longitude": "20.68333000" + }, + { + "id": "55686", + "name": "Megyaszó", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.18333000", + "longitude": "21.05000000" + }, + { + "id": "55689", + "name": "Mezőcsát", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.81667000", + "longitude": "20.91667000" + }, + { + "id": "55690", + "name": "Mezőcsáti Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.79841000", + "longitude": "20.91693000" + }, + { + "id": "55696", + "name": "Mezőkövesd", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.81667000", + "longitude": "20.58333000" + }, + { + "id": "55697", + "name": "Mezőkövesdi Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.84876000", + "longitude": "20.63623000" + }, + { + "id": "55693", + "name": "Mezőkeresztes", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.83333000", + "longitude": "20.70000000" + }, + { + "id": "55701", + "name": "Mezőzombor", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.15000000", + "longitude": "21.26667000" + }, + { + "id": "55705", + "name": "Miskolc", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.10000000", + "longitude": "20.78333000" + }, + { + "id": "55706", + "name": "Miskolci Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.08675000", + "longitude": "20.77353000" + }, + { + "id": "55710", + "name": "Monok", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.21102000", + "longitude": "21.15052000" + }, + { + "id": "55769", + "name": "Nyékládháza", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.98333000", + "longitude": "20.83333000" + }, + { + "id": "55797", + "name": "Olaszliszka", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.25000000", + "longitude": "21.43333000" + }, + { + "id": "55798", + "name": "Onga", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.11667000", + "longitude": "20.91667000" + }, + { + "id": "55832", + "name": "Prügy", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.08333000", + "longitude": "21.25000000" + }, + { + "id": "55837", + "name": "Putnok", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.30000000", + "longitude": "20.43333000" + }, + { + "id": "55838", + "name": "Putnoki Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.33694000", + "longitude": "20.46384000" + }, + { + "id": "55864", + "name": "Ricse", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.32565000", + "longitude": "21.97069000" + }, + { + "id": "55867", + "name": "Rudabánya", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.38333000", + "longitude": "20.63333000" + }, + { + "id": "55888", + "name": "Sajóörös", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.95000000", + "longitude": "21.03333000" + }, + { + "id": "55882", + "name": "Sajóbábony", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.16667000", + "longitude": "20.73333000" + }, + { + "id": "55883", + "name": "Sajókaza", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.28333000", + "longitude": "20.58333000" + }, + { + "id": "55884", + "name": "Sajólád", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.05000000", + "longitude": "20.90000000" + }, + { + "id": "55886", + "name": "Sajószöged", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.95000000", + "longitude": "21.00000000" + }, + { + "id": "55885", + "name": "Sajószentpéter", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.21667000", + "longitude": "20.71667000" + }, + { + "id": "55887", + "name": "Sajóvámos", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.18171000", + "longitude": "20.83149000" + }, + { + "id": "55979", + "name": "Sály", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.95000000", + "longitude": "20.66667000" + }, + { + "id": "55986", + "name": "Sárospatak", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.32450000", + "longitude": "21.57383000" + }, + { + "id": "55987", + "name": "Sárospataki Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.29575000", + "longitude": "21.52716000" + }, + { + "id": "55994", + "name": "Sátoraljaújhely", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.39492000", + "longitude": "21.65871000" + }, + { + "id": "55995", + "name": "Sátoraljaújhelyi Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.45898000", + "longitude": "21.54394000" + }, + { + "id": "55933", + "name": "Szendrő", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.40000000", + "longitude": "20.73333000" + }, + { + "id": "55941", + "name": "Szentistván", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.76667000", + "longitude": "20.66667000" + }, + { + "id": "55948", + "name": "Szerencs", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.15993000", + "longitude": "21.20970000" + }, + { + "id": "55949", + "name": "Szerencsi Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.14929000", + "longitude": "21.16865000" + }, + { + "id": "55958", + "name": "Szikszó", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.20000000", + "longitude": "20.93333000" + }, + { + "id": "55959", + "name": "Szikszói Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.30032000", + "longitude": "20.95507000" + }, + { + "id": "55961", + "name": "Szirmabesenyő", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.15000000", + "longitude": "20.80000000" + }, + { + "id": "56005", + "name": "Taktaharkány", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.08333000", + "longitude": "21.13333000" + }, + { + "id": "56006", + "name": "Taktaszada", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.11667000", + "longitude": "21.18333000" + }, + { + "id": "56012", + "name": "Tarcal", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.13333000", + "longitude": "21.35000000" + }, + { + "id": "56062", + "name": "Tállya", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.23333000", + "longitude": "21.23333000" + }, + { + "id": "56048", + "name": "Tiszaújváros", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93333000", + "longitude": "21.08333000" + }, + { + "id": "56049", + "name": "Tiszaújvárosi Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.92656000", + "longitude": "20.99321000" + }, + { + "id": "56033", + "name": "Tiszakarád", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.20000000", + "longitude": "21.71667000" + }, + { + "id": "56034", + "name": "Tiszakeszi", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.78333000", + "longitude": "21.00000000" + }, + { + "id": "56038", + "name": "Tiszalúc", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.03774000", + "longitude": "21.07261000" + }, + { + "id": "56050", + "name": "Tokaj", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.11667000", + "longitude": "21.41667000" + }, + { + "id": "56051", + "name": "Tokaji Járás", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.14014000", + "longitude": "21.37002000" + }, + { + "id": "56052", + "name": "Tolcsva", + "state_id": 1058, + "state_code": "BZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.28333000", + "longitude": "21.45000000" + }, + { + "id": "55263", + "name": "Budapest", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.49835000", + "longitude": "19.04045000" + }, + { + "id": "55264", + "name": "Budapest I. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.49705000", + "longitude": "19.03961000" + }, + { + "id": "55265", + "name": "Budapest II. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51984000", + "longitude": "19.02218000" + }, + { + "id": "55266", + "name": "Budapest III. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.54157000", + "longitude": "19.04501000" + }, + { + "id": "55267", + "name": "Budapest IV. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.56182000", + "longitude": "19.08909000" + }, + { + "id": "55268", + "name": "Budapest VI. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.50369000", + "longitude": "19.06583000" + }, + { + "id": "55269", + "name": "Budapest VIII. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.48919000", + "longitude": "19.07012000" + }, + { + "id": "55270", + "name": "Budapest X. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.47910000", + "longitude": "19.15835000" + }, + { + "id": "55271", + "name": "Budapest XI. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.47603000", + "longitude": "19.03605000" + }, + { + "id": "55272", + "name": "Budapest XII. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.49192000", + "longitude": "19.01493000" + }, + { + "id": "55273", + "name": "Budapest XIII. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.52978000", + "longitude": "19.08068000" + }, + { + "id": "55274", + "name": "Budapest XV. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.56263000", + "longitude": "19.11681000" + }, + { + "id": "55275", + "name": "Budapest XVI. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51482000", + "longitude": "19.17028000" + }, + { + "id": "55276", + "name": "Budapest XVII. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.47997000", + "longitude": "19.25388000" + }, + { + "id": "55277", + "name": "Budapest XVIII. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.44417000", + "longitude": "19.17595000" + }, + { + "id": "55278", + "name": "Budapest XX. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.43674000", + "longitude": "19.10093000" + }, + { + "id": "55279", + "name": "Budapest XXI. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.43047000", + "longitude": "19.07098000" + }, + { + "id": "55280", + "name": "Budapest XXII. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.42698000", + "longitude": "19.04016000" + }, + { + "id": "55281", + "name": "Budapest XXIII. kerület", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.39788000", + "longitude": "19.11492000" + }, + { + "id": "55413", + "name": "Erzsébetváros", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.50207000", + "longitude": "19.07218000" + }, + { + "id": "55554", + "name": "Józsefváros", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.48938000", + "longitude": "19.07292000" + }, + { + "id": "55607", + "name": "Kispest", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45150000", + "longitude": "19.14017000" + }, + { + "id": "56133", + "name": "Zugló", + "state_id": 1064, + "state_code": "BU", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51758000", + "longitude": "19.10549000" + }, + { + "id": "55184", + "name": "Algyő", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.33472000", + "longitude": "20.20849000" + }, + { + "id": "55192", + "name": "Apátfalva", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.16667000", + "longitude": "20.58333000" + }, + { + "id": "56143", + "name": "Ásotthalom", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.19875000", + "longitude": "19.78334000" + }, + { + "id": "56167", + "name": "Üllés", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.33611000", + "longitude": "19.84454000" + }, + { + "id": "56152", + "name": "Ópusztaszer", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.48592000", + "longitude": "20.08722000" + }, + { + "id": "55207", + "name": "Baks", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.54297000", + "longitude": "20.10213000" + }, + { + "id": "55228", + "name": "Balástya", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.42277000", + "longitude": "20.00816000" + }, + { + "id": "55257", + "name": "Bordány", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.31843000", + "longitude": "19.92306000" + }, + { + "id": "55326", + "name": "Csanádpalota", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.25000000", + "longitude": "20.73333000" + }, + { + "id": "55324", + "name": "Csanytelek", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.59501000", + "longitude": "20.12342000" + }, + { + "id": "55328", + "name": "Csengele", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.54234000", + "longitude": "19.86358000" + }, + { + "id": "55337", + "name": "Csongrád", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.71332000", + "longitude": "20.14241000" + }, + { + "id": "55338", + "name": "Csongrádi Járás", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.66146000", + "longitude": "20.08792000" + }, + { + "id": "55359", + "name": "Deszk", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.21802000", + "longitude": "20.24322000" + }, + { + "id": "55365", + "name": "Domaszék", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.24917000", + "longitude": "20.01111000" + }, + { + "id": "55434", + "name": "Fábiánsebestyén", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.68333000", + "longitude": "20.46667000" + }, + { + "id": "55438", + "name": "Földeák", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.31667000", + "longitude": "20.50000000" + }, + { + "id": "55432", + "name": "Forráskút", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.36528000", + "longitude": "19.90973000" + }, + { + "id": "55521", + "name": "Hódmezővásárhely", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.41667000", + "longitude": "20.33333000" + }, + { + "id": "55522", + "name": "Hódmezővásárhelyi Járás", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.43301000", + "longitude": "20.37598000" + }, + { + "id": "55610", + "name": "Kistelek", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.47250000", + "longitude": "19.97972000" + }, + { + "id": "55611", + "name": "Kisteleki Járás", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.48835000", + "longitude": "19.99568000" + }, + { + "id": "55614", + "name": "Kiszombor", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.18333000", + "longitude": "20.43333000" + }, + { + "id": "55677", + "name": "Makó", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.21667000", + "longitude": "20.48333000" + }, + { + "id": "55678", + "name": "Makói Járás", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.26698000", + "longitude": "20.54200000" + }, + { + "id": "55681", + "name": "Maroslele", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.26667000", + "longitude": "20.35000000" + }, + { + "id": "55734", + "name": "Mórahalmi Járás", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.26840000", + "longitude": "19.82256000" + }, + { + "id": "55735", + "name": "Mórahalom", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.21806000", + "longitude": "19.88510000" + }, + { + "id": "55704", + "name": "Mindszent", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.52362000", + "longitude": "20.19038000" + }, + { + "id": "55835", + "name": "Pusztaszer", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.55083000", + "longitude": "19.98823000" + }, + { + "id": "55881", + "name": "Röszke", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.18796000", + "longitude": "20.03372000" + }, + { + "id": "55868", + "name": "Ruzsa", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.28806000", + "longitude": "19.74714000" + }, + { + "id": "55980", + "name": "Sándorfalva", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.36087000", + "longitude": "20.09889000" + }, + { + "id": "55923", + "name": "Szatymaz", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.34306000", + "longitude": "20.04020000" + }, + { + "id": "55976", + "name": "Székkutas", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.50000000", + "longitude": "20.53333000" + }, + { + "id": "55925", + "name": "Szeged", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.25300000", + "longitude": "20.14824000" + }, + { + "id": "55926", + "name": "Szegedi Járás", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.29536000", + "longitude": "20.13758000" + }, + { + "id": "55929", + "name": "Szegvár", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.58740000", + "longitude": "20.22408000" + }, + { + "id": "55936", + "name": "Szentes", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.65834000", + "longitude": "20.26080000" + }, + { + "id": "55937", + "name": "Szentesi Járás", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.66005000", + "longitude": "20.37314000" + }, + { + "id": "56081", + "name": "Tömörkény", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.61716000", + "longitude": "20.04357000" + }, + { + "id": "56136", + "name": "Zákányszék", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.27453000", + "longitude": "19.88975000" + }, + { + "id": "56130", + "name": "Zsombó", + "state_id": 1031, + "state_code": "CS", + "country_id": 99, + "country_code": "HU", + "latitude": "46.32566000", + "longitude": "19.97464000" + }, + { + "id": "55168", + "name": "Aba", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.02907000", + "longitude": "18.52172000" + }, + { + "id": "55175", + "name": "Adony", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.11940000", + "longitude": "18.86493000" + }, + { + "id": "55181", + "name": "Alap", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.79915000", + "longitude": "18.68938000" + }, + { + "id": "55205", + "name": "Bakonycsernye", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.32395000", + "longitude": "18.07509000" + }, + { + "id": "55229", + "name": "Baracs", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.88202000", + "longitude": "18.90658000" + }, + { + "id": "55230", + "name": "Baracska", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.28225000", + "longitude": "18.75853000" + }, + { + "id": "55246", + "name": "Bicske", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.48419000", + "longitude": "18.64404000" + }, + { + "id": "55247", + "name": "Bicskei Járás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.43380000", + "longitude": "18.56757000" + }, + { + "id": "55250", + "name": "Bodajk", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.32352000", + "longitude": "18.23312000" + }, + { + "id": "55314", + "name": "Cece", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.77056000", + "longitude": "18.62826000" + }, + { + "id": "55345", + "name": "Csákvár", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.39184000", + "longitude": "18.46501000" + }, + { + "id": "55387", + "name": "Dég", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.86807000", + "longitude": "18.45042000" + }, + { + "id": "56139", + "name": "dunaújváros", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.96737000", + "longitude": "18.93288000" + }, + { + "id": "55382", + "name": "Dunaújvárosi Járás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.02801000", + "longitude": "18.82997000" + }, + { + "id": "55403", + "name": "Előszállás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.83094000", + "longitude": "18.83481000" + }, + { + "id": "55408", + "name": "Enying", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.93046000", + "longitude": "18.24202000" + }, + { + "id": "55409", + "name": "Enyingi Járás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.87240000", + "longitude": "18.30975000" + }, + { + "id": "55410", + "name": "Ercsi", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.25194000", + "longitude": "18.89623000" + }, + { + "id": "55414", + "name": "Etyek", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.44794000", + "longitude": "18.75328000" + }, + { + "id": "55422", + "name": "Fehérvárcsurgó", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.29349000", + "longitude": "18.26460000" + }, + { + "id": "55471", + "name": "Gárdony", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.20942000", + "longitude": "18.63607000" + }, + { + "id": "55472", + "name": "Gárdonyi Járás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.22785000", + "longitude": "18.63622000" + }, + { + "id": "55530", + "name": "Iváncsa", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.15670000", + "longitude": "18.82030000" + }, + { + "id": "55638", + "name": "Káloz", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.95464000", + "longitude": "18.48259000" + }, + { + "id": "55640", + "name": "Kápolnásnyék", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.24004000", + "longitude": "18.67564000" + }, + { + "id": "55593", + "name": "Kincsesbánya", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.26444000", + "longitude": "18.27790000" + }, + { + "id": "55604", + "name": "Kisláng", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.95744000", + "longitude": "18.38813000" + }, + { + "id": "55653", + "name": "Lajoskomárom", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.84201000", + "longitude": "18.33763000" + }, + { + "id": "55659", + "name": "Lepsény", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.99036000", + "longitude": "18.24357000" + }, + { + "id": "55665", + "name": "Lovasberény", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.30997000", + "longitude": "18.55177000" + }, + { + "id": "55682", + "name": "Martonvásár", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.31601000", + "longitude": "18.79045000" + }, + { + "id": "55683", + "name": "Martonvásári Járás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.29040000", + "longitude": "18.79945000" + }, + { + "id": "55722", + "name": "Mány", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.53352000", + "longitude": "18.65627000" + }, + { + "id": "55733", + "name": "Mór", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.37787000", + "longitude": "18.20353000" + }, + { + "id": "55736", + "name": "Móri Járás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.34685000", + "longitude": "18.19838000" + }, + { + "id": "55691", + "name": "Mezőfalva", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.93184000", + "longitude": "18.77177000" + }, + { + "id": "55698", + "name": "Mezőszilas", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.81109000", + "longitude": "18.47789000" + }, + { + "id": "55839", + "name": "Pákozd", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.21369000", + "longitude": "18.53306000" + }, + { + "id": "55848", + "name": "Pázmánd", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.28755000", + "longitude": "18.65356000" + }, + { + "id": "55814", + "name": "Perkáta", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.04701000", + "longitude": "18.78734000" + }, + { + "id": "55828", + "name": "Polgárdi", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.06099000", + "longitude": "18.30200000" + }, + { + "id": "55834", + "name": "Pusztaszabolcs", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.13718000", + "longitude": "18.76704000" + }, + { + "id": "55836", + "name": "Pusztavám", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.42948000", + "longitude": "18.22648000" + }, + { + "id": "55870", + "name": "Rácalmás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.02263000", + "longitude": "18.94056000" + }, + { + "id": "55871", + "name": "Ráckeresztúr", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.27360000", + "longitude": "18.83343000" + }, + { + "id": "55981", + "name": "Sárbogárd", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.88692000", + "longitude": "18.62041000" + }, + { + "id": "55982", + "name": "Sárbogárdi Járás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.84036000", + "longitude": "18.60723000" + }, + { + "id": "55983", + "name": "Sárkeresztúr", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.00540000", + "longitude": "18.54391000" + }, + { + "id": "55985", + "name": "Sárosd", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.04273000", + "longitude": "18.64357000" + }, + { + "id": "55989", + "name": "Sárszentmihály", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.15321000", + "longitude": "18.33879000" + }, + { + "id": "55896", + "name": "Seregélyes", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.11050000", + "longitude": "18.56500000" + }, + { + "id": "55908", + "name": "Soponya", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.01485000", + "longitude": "18.45343000" + }, + { + "id": "55911", + "name": "Szabadbattyán", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.11902000", + "longitude": "18.36823000" + }, + { + "id": "55969", + "name": "Szárliget", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51581000", + "longitude": "18.49480000" + }, + { + "id": "55974", + "name": "Székesfehérvár", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.18995000", + "longitude": "18.41034000" + }, + { + "id": "55975", + "name": "Székesfehérvári Járás", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.16531000", + "longitude": "18.41349000" + }, + { + "id": "56108", + "name": "Vál", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.36264000", + "longitude": "18.67931000" + }, + { + "id": "56096", + "name": "Velence", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.23855000", + "longitude": "18.65484000" + }, + { + "id": "56137", + "name": "Zámoly", + "state_id": 1044, + "state_code": "FE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.31667000", + "longitude": "18.40810000" + }, + { + "id": "55171", + "name": "Abda", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.69464000", + "longitude": "17.54489000" + }, + { + "id": "56142", + "name": "Ágfalva", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.68991000", + "longitude": "16.51658000" + }, + { + "id": "56144", + "name": "Ásványráró", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.82733000", + "longitude": "17.49418000" + }, + { + "id": "56159", + "name": "Öttevény", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.71946000", + "longitude": "17.48474000" + }, + { + "id": "55206", + "name": "Bakonyszentlászló", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38901000", + "longitude": "17.80321000" + }, + { + "id": "55312", + "name": "Bőny", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.65000000", + "longitude": "17.86977000" + }, + { + "id": "55313", + "name": "Bősárkány", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.68821000", + "longitude": "17.25000000" + }, + { + "id": "55236", + "name": "Beled", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.46594000", + "longitude": "17.09294000" + }, + { + "id": "55340", + "name": "Csorna", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61155000", + "longitude": "17.25012000" + }, + { + "id": "55341", + "name": "Csornai Járás", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.58403000", + "longitude": "17.26041000" + }, + { + "id": "55418", + "name": "Farád", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60633000", + "longitude": "17.20024000" + }, + { + "id": "55427", + "name": "Fertőd", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.62173000", + "longitude": "16.87088000" + }, + { + "id": "55428", + "name": "Fertőrákos", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.72017000", + "longitude": "16.65040000" + }, + { + "id": "55429", + "name": "Fertőszentmiklós", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.58996000", + "longitude": "16.87517000" + }, + { + "id": "55466", + "name": "Győr", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.68333000", + "longitude": "17.63512000" + }, + { + "id": "55469", + "name": "Győrújbarát", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60643000", + "longitude": "17.64875000" + }, + { + "id": "55467", + "name": "Győri Járás", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.67273000", + "longitude": "17.67936000" + }, + { + "id": "55468", + "name": "Győrszemere", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.55256000", + "longitude": "17.56356000" + }, + { + "id": "55495", + "name": "Halászi", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.88930000", + "longitude": "17.32615000" + }, + { + "id": "55539", + "name": "Jánossomorja", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.78621000", + "longitude": "17.13603000" + }, + { + "id": "55563", + "name": "Kapuvár", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.59224000", + "longitude": "17.02886000" + }, + { + "id": "55564", + "name": "Kapuvári Járás", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.56705000", + "longitude": "17.04056000" + }, + { + "id": "55645", + "name": "Kóny", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.63053000", + "longitude": "17.35717000" + }, + { + "id": "55592", + "name": "Kimle", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.81726000", + "longitude": "17.36642000" + }, + { + "id": "55668", + "name": "Lébény", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.73574000", + "longitude": "17.39076000" + }, + { + "id": "55702", + "name": "Mihályi", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51384000", + "longitude": "17.09507000" + }, + { + "id": "55714", + "name": "Mosonmagyaróvár", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.86789000", + "longitude": "17.26994000" + }, + { + "id": "55715", + "name": "Mosonmagyaróvári Járás", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.85767000", + "longitude": "17.28212000" + }, + { + "id": "55716", + "name": "Mosonszentmiklós", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.72778000", + "longitude": "17.42784000" + }, + { + "id": "55742", + "name": "Nagycenk", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60435000", + "longitude": "16.69732000" + }, + { + "id": "55793", + "name": "Nyúl", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.59047000", + "longitude": "17.68904000" + }, + { + "id": "55808", + "name": "Pannonhalma", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.54946000", + "longitude": "17.75535000" + }, + { + "id": "55809", + "name": "Pannonhalmi Járás", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45571000", + "longitude": "17.81335000" + }, + { + "id": "55854", + "name": "Pér", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61153000", + "longitude": "17.80632000" + }, + { + "id": "55861", + "name": "Rajka", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.99643000", + "longitude": "17.19821000" + }, + { + "id": "55869", + "name": "Rábapatona", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.63224000", + "longitude": "17.48004000" + }, + { + "id": "55909", + "name": "Sopron", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.68501000", + "longitude": "16.59049000" + }, + { + "id": "55910", + "name": "Soproni Járás", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60385000", + "longitude": "16.75654000" + }, + { + "id": "55920", + "name": "Szany", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.46423000", + "longitude": "17.30402000" + }, + { + "id": "56074", + "name": "Tét", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51922000", + "longitude": "17.50802000" + }, + { + "id": "56075", + "name": "Téti Járás", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51515000", + "longitude": "17.51612000" + }, + { + "id": "56080", + "name": "Töltéstava", + "state_id": 1042, + "state_code": "GS", + "country_id": 99, + "country_code": "HU", + "latitude": "47.62609000", + "longitude": "17.73376000" + }, + { + "id": "55202", + "name": "Bagamér", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.44882000", + "longitude": "21.98900000" + }, + { + "id": "55226", + "name": "Balmazújváros", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61667000", + "longitude": "21.35000000" + }, + { + "id": "55227", + "name": "Balmazújvárosi Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61840000", + "longitude": "21.14882000" + }, + { + "id": "55290", + "name": "Báránd", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.30000000", + "longitude": "21.23333000" + }, + { + "id": "55239", + "name": "Berettyóújfalu", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.21667000", + "longitude": "21.55000000" + }, + { + "id": "55240", + "name": "Berettyóújfalui Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.14109000", + "longitude": "21.55233000" + }, + { + "id": "55248", + "name": "Biharkeresztes", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.13333000", + "longitude": "21.71667000" + }, + { + "id": "55249", + "name": "Biharnagybajom", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.21667000", + "longitude": "21.23333000" + }, + { + "id": "55349", + "name": "Csökmő", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.03333000", + "longitude": "21.30000000" + }, + { + "id": "55353", + "name": "Debrecen", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.53333000", + "longitude": "21.63333000" + }, + { + "id": "55354", + "name": "Debreceni Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.52706000", + "longitude": "21.66869000" + }, + { + "id": "55357", + "name": "Derecske", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.35000000", + "longitude": "21.56667000" + }, + { + "id": "55358", + "name": "Derecskei Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38194000", + "longitude": "21.74836000" + }, + { + "id": "55393", + "name": "Ebes", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.46667000", + "longitude": "21.50000000" + }, + { + "id": "55401", + "name": "Egyek", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.63333000", + "longitude": "20.90000000" + }, + { + "id": "55437", + "name": "Földes", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.30000000", + "longitude": "21.36667000" + }, + { + "id": "55479", + "name": "Görbeháza", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.83333000", + "longitude": "21.23333000" + }, + { + "id": "55480", + "name": "Hadjúszoboszlói Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.48110000", + "longitude": "21.31000000" + }, + { + "id": "55481", + "name": "Hajdúbagos", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.39295000", + "longitude": "21.66551000" + }, + { + "id": "55482", + "name": "Hajdúböszörmény", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.66667000", + "longitude": "21.51667000" + }, + { + "id": "55483", + "name": "Hajdúböszörményi Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.74000000", + "longitude": "21.50000000" + }, + { + "id": "55484", + "name": "Hajdúdorog", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.81667000", + "longitude": "21.50000000" + }, + { + "id": "55485", + "name": "Hajdúhadház", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.68333000", + "longitude": "21.66667000" + }, + { + "id": "55486", + "name": "Hajdúhadházi Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.67000000", + "longitude": "21.70000000" + }, + { + "id": "55487", + "name": "Hajdúnánás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.85000000", + "longitude": "21.43333000" + }, + { + "id": "55488", + "name": "Hajdúnánási Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.83350000", + "longitude": "21.25256000" + }, + { + "id": "55491", + "name": "Hajdúsámson", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60000000", + "longitude": "21.76667000" + }, + { + "id": "55489", + "name": "Hajdúszoboszló", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45000000", + "longitude": "21.40000000" + }, + { + "id": "55490", + "name": "Hajdúszovát", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38333000", + "longitude": "21.48333000" + }, + { + "id": "55515", + "name": "Hortobágy", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.58278000", + "longitude": "21.15108000" + }, + { + "id": "55517", + "name": "Hosszúpályi", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.39303000", + "longitude": "21.73280000" + }, + { + "id": "55555", + "name": "Kaba", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.35000000", + "longitude": "21.28333000" + }, + { + "id": "55621", + "name": "Komádi", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.00000000", + "longitude": "21.50000000" + }, + { + "id": "55623", + "name": "Konyár", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.31667000", + "longitude": "21.66667000" + }, + { + "id": "55669", + "name": "Létavértes", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38333000", + "longitude": "21.90000000" + }, + { + "id": "55703", + "name": "Mikepércs", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45000000", + "longitude": "21.63333000" + }, + { + "id": "55713", + "name": "Monostorpályi", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.40000000", + "longitude": "21.78333000" + }, + { + "id": "55760", + "name": "Nagyrábé", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.20000000", + "longitude": "21.33333000" + }, + { + "id": "55794", + "name": "Nádudvar", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.41667000", + "longitude": "21.16667000" + }, + { + "id": "55770", + "name": "Nyíracsád", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60330000", + "longitude": "21.97208000" + }, + { + "id": "55771", + "name": "Nyíradony", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.69746000", + "longitude": "21.91878000" + }, + { + "id": "55772", + "name": "Nyíradonyi Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.57873000", + "longitude": "22.01381000" + }, + { + "id": "55792", + "name": "Nyírábrány", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.55311000", + "longitude": "22.02401000" + }, + { + "id": "55787", + "name": "Nyírmártonfalva", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.58333000", + "longitude": "21.90000000" + }, + { + "id": "55859", + "name": "Püspökladány", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.31667000", + "longitude": "21.11667000" + }, + { + "id": "55860", + "name": "Püspökladányi Járás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.31279000", + "longitude": "21.21177000" + }, + { + "id": "55826", + "name": "Pocsaj", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.28333000", + "longitude": "21.81667000" + }, + { + "id": "55827", + "name": "Polgár", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.86667000", + "longitude": "21.11667000" + }, + { + "id": "55992", + "name": "Sáránd", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.40000000", + "longitude": "21.63333000" + }, + { + "id": "55988", + "name": "Sárrétudvari", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.23333000", + "longitude": "21.20000000" + }, + { + "id": "56073", + "name": "Téglás", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.71667000", + "longitude": "21.68333000" + }, + { + "id": "56026", + "name": "Tiszacsege", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.70000000", + "longitude": "21.00000000" + }, + { + "id": "56110", + "name": "Vámospércs", + "state_id": 1063, + "state_code": "HB", + "country_id": 99, + "country_code": "HU", + "latitude": "47.53333000", + "longitude": "21.90000000" + }, + { + "id": "55169", + "name": "Abasár", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.79705000", + "longitude": "20.00324000" + }, + { + "id": "55176", + "name": "Adács", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.69210000", + "longitude": "19.97696000" + }, + { + "id": "55188", + "name": "Andornaktálya", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.85000000", + "longitude": "20.41667000" + }, + { + "id": "55190", + "name": "Apc", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.79419000", + "longitude": "19.69429000" + }, + { + "id": "55302", + "name": "Bélapátfalva", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "48.05000000", + "longitude": "20.36667000" + }, + { + "id": "55303", + "name": "Bélapátfalvai Járás", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "48.06386000", + "longitude": "20.36163000" + }, + { + "id": "55244", + "name": "Besenyőtelek", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.70000000", + "longitude": "20.43333000" + }, + { + "id": "55253", + "name": "Boldog", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60285000", + "longitude": "19.68839000" + }, + { + "id": "55346", + "name": "Csány", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.64829000", + "longitude": "19.82972000" + }, + { + "id": "55371", + "name": "Domoszló", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.83333000", + "longitude": "20.11667000" + }, + { + "id": "55395", + "name": "Ecséd", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.73267000", + "longitude": "19.76696000" + }, + { + "id": "55398", + "name": "Eger", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.90265000", + "longitude": "20.37329000" + }, + { + "id": "55399", + "name": "Egerszalók", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.86667000", + "longitude": "20.33333000" + }, + { + "id": "55400", + "name": "Egri Járás", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.92961000", + "longitude": "20.37383000" + }, + { + "id": "55412", + "name": "Erdőtelek", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.68333000", + "longitude": "20.31667000" + }, + { + "id": "55441", + "name": "Füzesabony", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.75000000", + "longitude": "20.41667000" + }, + { + "id": "55442", + "name": "Füzesabonyi Járás", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.72671000", + "longitude": "20.42875000" + }, + { + "id": "55425", + "name": "Felsőtárkány", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.96667000", + "longitude": "20.41667000" + }, + { + "id": "55459", + "name": "Gyöngyös", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.78257000", + "longitude": "19.92800000" + }, + { + "id": "55460", + "name": "Gyöngyöshalász", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.74161000", + "longitude": "19.92876000" + }, + { + "id": "55461", + "name": "Gyöngyösi Járás", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.79079000", + "longitude": "19.95430000" + }, + { + "id": "55462", + "name": "Gyöngyöspata", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.81505000", + "longitude": "19.78925000" + }, + { + "id": "55463", + "name": "Gyöngyössolymos", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.81724000", + "longitude": "19.93619000" + }, + { + "id": "55464", + "name": "Gyöngyöstarján", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.81369000", + "longitude": "19.86724000" + }, + { + "id": "55500", + "name": "Hatvan", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.66667000", + "longitude": "19.68333000" + }, + { + "id": "55501", + "name": "Hatvani Járás", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.69468000", + "longitude": "19.72852000" + }, + { + "id": "55509", + "name": "Heréd", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.70638000", + "longitude": "19.63314000" + }, + { + "id": "55510", + "name": "Heves", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60000000", + "longitude": "20.28333000" + }, + { + "id": "55511", + "name": "Hevesi Járás", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61535000", + "longitude": "20.31739000" + }, + { + "id": "55514", + "name": "Hort", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.69081000", + "longitude": "19.78930000" + }, + { + "id": "55571", + "name": "Karácsond", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.72962000", + "longitude": "20.03076000" + }, + { + "id": "55635", + "name": "Kál", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.73333000", + "longitude": "20.26667000" + }, + { + "id": "55586", + "name": "Kerecsend", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.80000000", + "longitude": "20.35000000" + }, + { + "id": "55601", + "name": "Kisköre", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.50000000", + "longitude": "20.50000000" + }, + { + "id": "55620", + "name": "Kompolt", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.73333000", + "longitude": "20.25000000" + }, + { + "id": "55671", + "name": "Lőrinci", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.73295000", + "longitude": "19.67867000" + }, + { + "id": "55676", + "name": "Maklár", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.80000000", + "longitude": "20.41667000" + }, + { + "id": "55724", + "name": "Mátraderecske", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.95000000", + "longitude": "20.08333000" + }, + { + "id": "55761", + "name": "Nagyréde", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.76543000", + "longitude": "19.84819000" + }, + { + "id": "55802", + "name": "Ostoros", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.86667000", + "longitude": "20.43333000" + }, + { + "id": "55810", + "name": "Parád", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.92323000", + "longitude": "20.02972000" + }, + { + "id": "55811", + "name": "Parádsasvár", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.91260000", + "longitude": "19.97709000" + }, + { + "id": "55856", + "name": "Pétervására", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "48.01667000", + "longitude": "20.10000000" + }, + { + "id": "55857", + "name": "Pétervásárai Járás", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "48.00589000", + "longitude": "20.09466000" + }, + { + "id": "55816", + "name": "Petőfibánya", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.76960000", + "longitude": "19.69988000" + }, + { + "id": "55831", + "name": "Poroszló", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.65000000", + "longitude": "20.66667000" + }, + { + "id": "55880", + "name": "Rózsaszentmárton", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.78200000", + "longitude": "19.74210000" + }, + { + "id": "55863", + "name": "Recsk", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93333000", + "longitude": "20.11667000" + }, + { + "id": "55900", + "name": "Sirok", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93333000", + "longitude": "20.20000000" + }, + { + "id": "55957", + "name": "Szihalom", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.76667000", + "longitude": "20.48333000" + }, + { + "id": "55960", + "name": "Szilvásvárad", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "48.10000000", + "longitude": "20.40000000" + }, + { + "id": "56014", + "name": "Tarnaörs", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.59499000", + "longitude": "20.05254000" + }, + { + "id": "56013", + "name": "Tarnalelesz", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "48.05000000", + "longitude": "20.18333000" + }, + { + "id": "56040", + "name": "Tiszanána", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.56667000", + "longitude": "20.53333000" + }, + { + "id": "56109", + "name": "Vámosgyörk", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.68429000", + "longitude": "19.92924000" + }, + { + "id": "56098", + "name": "Verpelét", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.85000000", + "longitude": "20.23333000" + }, + { + "id": "56119", + "name": "Zagyvaszántó", + "state_id": 1040, + "state_code": "HE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.77703000", + "longitude": "19.67092000" + }, + { + "id": "55173", + "name": "Abádszalók", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.46667000", + "longitude": "20.60000000" + }, + { + "id": "55182", + "name": "Alattyán", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.42705000", + "longitude": "20.04219000" + }, + { + "id": "56164", + "name": "Újszász", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.30000000", + "longitude": "20.08333000" + }, + { + "id": "56156", + "name": "Öcsöd", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "46.90000000", + "longitude": "20.40000000" + }, + { + "id": "55243", + "name": "Besenyszög", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.30000000", + "longitude": "20.26667000" + }, + { + "id": "55320", + "name": "Cibakháza", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "46.95976000", + "longitude": "20.19753000" + }, + { + "id": "55333", + "name": "Cserkeszőlő", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "46.86320000", + "longitude": "20.18701000" + }, + { + "id": "55419", + "name": "Fegyvernek", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.26667000", + "longitude": "20.53333000" + }, + { + "id": "55537", + "name": "Jánoshida", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38333000", + "longitude": "20.06667000" + }, + { + "id": "55541", + "name": "Jászalsószentgyörgy", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.36667000", + "longitude": "20.10000000" + }, + { + "id": "55542", + "name": "Jászapáti", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51667000", + "longitude": "20.15000000" + }, + { + "id": "55543", + "name": "Jászapáti Járás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.46126000", + "longitude": "20.06567000" + }, + { + "id": "55553", + "name": "Jászárokszállás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.64238000", + "longitude": "19.98038000" + }, + { + "id": "55544", + "name": "Jászberény", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.50000000", + "longitude": "19.91667000" + }, + { + "id": "55545", + "name": "Jászberényi Járás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.56500000", + "longitude": "19.86887000" + }, + { + "id": "55546", + "name": "Jászdózsa", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.56610000", + "longitude": "20.01534000" + }, + { + "id": "55547", + "name": "Jászjákóhalma", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.52038000", + "longitude": "19.99086000" + }, + { + "id": "55549", + "name": "Jászkisér", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45000000", + "longitude": "20.21667000" + }, + { + "id": "55550", + "name": "Jászladány", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.36667000", + "longitude": "20.16667000" + }, + { + "id": "55551", + "name": "Jászszentandrás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.58333000", + "longitude": "20.18333000" + }, + { + "id": "55567", + "name": "Karcag", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.31667000", + "longitude": "20.93333000" + }, + { + "id": "55568", + "name": "Karcagi Járás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.28583000", + "longitude": "20.84218000" + }, + { + "id": "55584", + "name": "Kenderes", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.25000000", + "longitude": "20.68333000" + }, + { + "id": "55585", + "name": "Kengyel", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.08333000", + "longitude": "20.33333000" + }, + { + "id": "55615", + "name": "Kisújszállás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.21667000", + "longitude": "20.76667000" + }, + { + "id": "55627", + "name": "Kunhegyes", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.36667000", + "longitude": "20.63333000" + }, + { + "id": "55628", + "name": "Kunhegyesi Járás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.40329000", + "longitude": "20.59199000" + }, + { + "id": "55629", + "name": "Kunmadaras", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.43333000", + "longitude": "20.80000000" + }, + { + "id": "55632", + "name": "Kunszentmárton", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "46.83916000", + "longitude": "20.28879000" + }, + { + "id": "55633", + "name": "Kunszentmártoni Járás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "46.87698000", + "longitude": "20.25179000" + }, + { + "id": "55699", + "name": "Mezőtúr", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.00000000", + "longitude": "20.63333000" + }, + { + "id": "55700", + "name": "Mezőtúri Járás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.02495000", + "longitude": "20.59046000" + }, + { + "id": "55875", + "name": "Rákócziújfalu", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.06667000", + "longitude": "20.26667000" + }, + { + "id": "55874", + "name": "Rákóczifalva", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.08333000", + "longitude": "20.23333000" + }, + { + "id": "55915", + "name": "Szajol", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.18333000", + "longitude": "20.30000000" + }, + { + "id": "55932", + "name": "Szelevény", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "46.80259000", + "longitude": "20.20283000" + }, + { + "id": "55964", + "name": "Szolnok", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.18333000", + "longitude": "20.20000000" + }, + { + "id": "55965", + "name": "Szolnoki Járás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.22480000", + "longitude": "20.19839000" + }, + { + "id": "56077", + "name": "Tószeg", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.10000000", + "longitude": "20.15000000" + }, + { + "id": "56084", + "name": "Törökszentmiklós", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.18333000", + "longitude": "20.41667000" + }, + { + "id": "56085", + "name": "Törökszentmiklósi Járás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.18209000", + "longitude": "20.44859000" + }, + { + "id": "56086", + "name": "Túrkeve", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.10000000", + "longitude": "20.75000000" + }, + { + "id": "56025", + "name": "Tiszabő", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.30000000", + "longitude": "20.48333000" + }, + { + "id": "56024", + "name": "Tiszabura", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45000000", + "longitude": "20.46667000" + }, + { + "id": "56030", + "name": "Tiszaföldvár", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "46.98333000", + "longitude": "20.25000000" + }, + { + "id": "56031", + "name": "Tiszafüred", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61667000", + "longitude": "20.76667000" + }, + { + "id": "56032", + "name": "Tiszafüredi Járás", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.53907000", + "longitude": "20.78879000" + }, + { + "id": "56041", + "name": "Tiszapüspöki", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.21667000", + "longitude": "20.31667000" + }, + { + "id": "56042", + "name": "Tiszaroff", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.40000000", + "longitude": "20.45000000" + }, + { + "id": "56045", + "name": "Tiszasüly", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38333000", + "longitude": "20.40000000" + }, + { + "id": "56044", + "name": "Tiszaszőlős", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.55707000", + "longitude": "20.71949000" + }, + { + "id": "56043", + "name": "Tiszaszentimre", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.48333000", + "longitude": "20.73333000" + }, + { + "id": "56118", + "name": "Zagyvarékas", + "state_id": 1043, + "state_code": "JN", + "country_id": 99, + "country_code": "HU", + "latitude": "47.26667000", + "longitude": "20.13333000" + }, + { + "id": "56148", + "name": "Érsekvadkert", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.99619000", + "longitude": "19.20231000" + }, + { + "id": "55210", + "name": "Balassagyarmat", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.07296000", + "longitude": "19.29614000" + }, + { + "id": "55211", + "name": "Balassagyarmati Járás", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.01657000", + "longitude": "19.30594000" + }, + { + "id": "55293", + "name": "Bátonyterenye", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.96962000", + "longitude": "19.84076000" + }, + { + "id": "55294", + "name": "Bátonyterenyei Járás", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.97691000", + "longitude": "19.87345000" + }, + { + "id": "55237", + "name": "Bercel", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.87057000", + "longitude": "19.40715000" + }, + { + "id": "55286", + "name": "Buják", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.88352000", + "longitude": "19.54381000" + }, + { + "id": "55363", + "name": "Diósjenő", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93968000", + "longitude": "19.04317000" + }, + { + "id": "55518", + "name": "Héhalom", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.78017000", + "longitude": "19.58519000" + }, + { + "id": "55533", + "name": "Jobbágyi", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.83238000", + "longitude": "19.67762000" + }, + { + "id": "55565", + "name": "Karancskeszi", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.16353000", + "longitude": "19.69686000" + }, + { + "id": "55566", + "name": "Karancslapujtő", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.15000000", + "longitude": "19.73333000" + }, + { + "id": "55577", + "name": "Kazár", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.04952000", + "longitude": "19.86143000" + }, + { + "id": "55725", + "name": "Mátranovák", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.03809000", + "longitude": "19.98257000" + }, + { + "id": "55726", + "name": "Mátraterenye", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.03267000", + "longitude": "19.94762000" + }, + { + "id": "55727", + "name": "Mátraverebély", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.97421000", + "longitude": "19.78049000" + }, + { + "id": "55759", + "name": "Nagyoroszi", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.00503000", + "longitude": "19.09050000" + }, + { + "id": "55807", + "name": "Palotás", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.79528000", + "longitude": "19.59618000" + }, + { + "id": "55844", + "name": "Pásztó", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.92019000", + "longitude": "19.69829000" + }, + { + "id": "55845", + "name": "Pásztói Járás", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.87012000", + "longitude": "19.60648000" + }, + { + "id": "55877", + "name": "Rétság", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.92816000", + "longitude": "19.13720000" + }, + { + "id": "55878", + "name": "Rétsági Járás", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.91741000", + "longitude": "19.16101000" + }, + { + "id": "55865", + "name": "Rimóc", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.03695000", + "longitude": "19.53010000" + }, + { + "id": "55866", + "name": "Romhány", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.92618000", + "longitude": "19.25723000" + }, + { + "id": "55889", + "name": "Salgótarján", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.09872000", + "longitude": "19.80303000" + }, + { + "id": "55890", + "name": "Salgótarjáni Járás", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.10048000", + "longitude": "19.81548000" + }, + { + "id": "55907", + "name": "Somoskőújfalu", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.16374000", + "longitude": "19.82303000" + }, + { + "id": "55972", + "name": "Szécsény", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.08057000", + "longitude": "19.52019000" + }, + { + "id": "55973", + "name": "Szécsényi Járás", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "48.07301000", + "longitude": "19.55156000" + }, + { + "id": "55968", + "name": "Szurdokpüspöki", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.85923000", + "longitude": "19.69218000" + }, + { + "id": "56011", + "name": "Tar", + "state_id": 1051, + "state_code": "NO", + "country_id": 99, + "country_code": "HU", + "latitude": "47.95371000", + "longitude": "19.74610000" + }, + { + "id": "55172", + "name": "Abony", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.18990000", + "longitude": "20.00476000" + }, + { + "id": "55174", + "name": "Acsa", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.79425000", + "longitude": "19.38795000" + }, + { + "id": "55183", + "name": "Albertirsa", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.24315000", + "longitude": "19.61686000" + }, + { + "id": "55185", + "name": "Alsónémedi", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.31524000", + "longitude": "19.15843000" + }, + { + "id": "56161", + "name": "Újhartyán", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.21981000", + "longitude": "19.38638000" + }, + { + "id": "56163", + "name": "Újszilvás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.27477000", + "longitude": "19.92477000" + }, + { + "id": "56165", + "name": "Úri", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.41429000", + "longitude": "19.52762000" + }, + { + "id": "55197", + "name": "Aszód", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.65174000", + "longitude": "19.47850000" + }, + { + "id": "55198", + "name": "Aszódi Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.64738000", + "longitude": "19.54240000" + }, + { + "id": "56171", + "name": "Őrbottyán", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.68711000", + "longitude": "19.28239000" + }, + { + "id": "56168", + "name": "Üllő", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38771000", + "longitude": "19.35533000" + }, + { + "id": "56169", + "name": "Üröm", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.59674000", + "longitude": "19.01583000" + }, + { + "id": "56158", + "name": "Örkény", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.12991000", + "longitude": "19.43324000" + }, + { + "id": "56149", + "name": "Ócsa", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.29986000", + "longitude": "19.23057000" + }, + { + "id": "56145", + "name": "Érd", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.39489000", + "longitude": "18.91361000" + }, + { + "id": "56146", + "name": "Érdi Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.35600000", + "longitude": "18.90167000" + }, + { + "id": "55201", + "name": "Bag", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.63333000", + "longitude": "19.48333000" + }, + { + "id": "55245", + "name": "Biatorbágy", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.47060000", + "longitude": "18.81892000" + }, + { + "id": "55282", + "name": "Budaörs", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.46181000", + "longitude": "18.95845000" + }, + { + "id": "55260", + "name": "Budakalász", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61667000", + "longitude": "19.05000000" + }, + { + "id": "55261", + "name": "Budakeszi", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51083000", + "longitude": "18.92717000" + }, + { + "id": "55262", + "name": "Budakeszi Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.49788000", + "longitude": "18.84980000" + }, + { + "id": "55284", + "name": "Bugyi", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.22748000", + "longitude": "19.14664000" + }, + { + "id": "55315", + "name": "Cegléd", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.17266000", + "longitude": "19.79952000" + }, + { + "id": "55316", + "name": "Ceglédbercel", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.22370000", + "longitude": "19.66828000" + }, + { + "id": "55317", + "name": "Ceglédi Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.20000000", + "longitude": "19.82463000" + }, + { + "id": "55350", + "name": "Csömör", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.55000000", + "longitude": "19.23333000" + }, + { + "id": "55327", + "name": "Csemő", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.11799000", + "longitude": "19.69092000" + }, + { + "id": "55336", + "name": "Csobánka", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.64637000", + "longitude": "18.96189000" + }, + { + "id": "55351", + "name": "Dabas", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.18594000", + "longitude": "19.31091000" + }, + { + "id": "55352", + "name": "Dabasi Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.19000000", + "longitude": "19.33000000" + }, + { + "id": "55384", + "name": "Dánszentmiklós", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.21486000", + "longitude": "19.54695000" + }, + { + "id": "55385", + "name": "Dány", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.52000000", + "longitude": "19.54400000" + }, + { + "id": "55388", + "name": "Délegyháza", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.24135000", + "longitude": "19.09019000" + }, + { + "id": "55392", + "name": "Dömsöd", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.09005000", + "longitude": "19.01106000" + }, + { + "id": "55362", + "name": "Diósd", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.40950000", + "longitude": "18.94898000" + }, + { + "id": "55370", + "name": "Domony", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.65552000", + "longitude": "19.43229000" + }, + { + "id": "55372", + "name": "Dunabogdány", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.79052000", + "longitude": "19.04125000" + }, + { + "id": "55374", + "name": "Dunaharaszti", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.35450000", + "longitude": "19.09822000" + }, + { + "id": "55375", + "name": "Dunakeszi", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.63641000", + "longitude": "19.13864000" + }, + { + "id": "55376", + "name": "Dunakeszi Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.63365000", + "longitude": "19.16254000" + }, + { + "id": "55380", + "name": "Dunavarsány", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.27859000", + "longitude": "19.06617000" + }, + { + "id": "55394", + "name": "Ecser", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.44389000", + "longitude": "19.32450000" + }, + { + "id": "55411", + "name": "Erdőkertes", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.67261000", + "longitude": "19.30786000" + }, + { + "id": "55417", + "name": "Farmos", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.36067000", + "longitude": "19.84619000" + }, + { + "id": "55436", + "name": "Fót", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61770000", + "longitude": "19.18870000" + }, + { + "id": "55423", + "name": "Felsőpakony", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.34329000", + "longitude": "19.23698000" + }, + { + "id": "55433", + "name": "Forrópuszta", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45504000", + "longitude": "19.66001000" + }, + { + "id": "55444", + "name": "Galgahévíz", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61667000", + "longitude": "19.56667000" + }, + { + "id": "55445", + "name": "Galgamácsa", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.69562000", + "longitude": "19.38724000" + }, + { + "id": "55474", + "name": "Göd", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.68324000", + "longitude": "19.13417000" + }, + { + "id": "55475", + "name": "Gödöllő", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.59657000", + "longitude": "19.35515000" + }, + { + "id": "55476", + "name": "Gödöllői Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.55127000", + "longitude": "19.39595000" + }, + { + "id": "55449", + "name": "Gomba", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.37095000", + "longitude": "19.53057000" + }, + { + "id": "55456", + "name": "Gyál", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38449000", + "longitude": "19.22140000" + }, + { + "id": "55457", + "name": "Gyáli Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.36821000", + "longitude": "19.27543000" + }, + { + "id": "55458", + "name": "Gyömrő", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.42733000", + "longitude": "19.40133000" + }, + { + "id": "55496", + "name": "Halásztelek", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.36173000", + "longitude": "18.98119000" + }, + { + "id": "55520", + "name": "Hévízgyörk", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.63333000", + "longitude": "19.51667000" + }, + { + "id": "55507", + "name": "Hernád", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.16238000", + "longitude": "19.43295000" + }, + { + "id": "55526", + "name": "Iklad", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.66533000", + "longitude": "19.43610000" + }, + { + "id": "55527", + "name": "Inárcs", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.26200000", + "longitude": "19.32700000" + }, + { + "id": "55529", + "name": "Isaszeg", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.53011000", + "longitude": "19.40205000" + }, + { + "id": "55548", + "name": "Jászkarajenő", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.05000000", + "longitude": "20.06667000" + }, + { + "id": "55557", + "name": "Kakucs", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.24200000", + "longitude": "19.36467000" + }, + { + "id": "55570", + "name": "Kartal", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.67133000", + "longitude": "19.54200000" + }, + { + "id": "55644", + "name": "Kóka", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.48552000", + "longitude": "19.57876000" + }, + { + "id": "55588", + "name": "Kerepes", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.56008000", + "longitude": "19.28289000" + }, + { + "id": "55598", + "name": "Kiskunlacháza", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.18839000", + "longitude": "19.00930000" + }, + { + "id": "55606", + "name": "Kismaros", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.83742000", + "longitude": "19.00463000" + }, + { + "id": "55609", + "name": "Kistarcsa", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.54757000", + "longitude": "19.26247000" + }, + { + "id": "55617", + "name": "Kocsér", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.00165000", + "longitude": "19.92067000" + }, + { + "id": "55624", + "name": "Kosd", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.80791000", + "longitude": "19.17821000" + }, + { + "id": "55663", + "name": "Leányfalu", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.71778000", + "longitude": "19.08585000" + }, + { + "id": "55674", + "name": "Maglód", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.44258000", + "longitude": "19.36438000" + }, + { + "id": "55687", + "name": "Mende", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.43133000", + "longitude": "19.45628000" + }, + { + "id": "55707", + "name": "Mogyoród", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.59748000", + "longitude": "19.24070000" + }, + { + "id": "55711", + "name": "Monor", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.35133000", + "longitude": "19.44733000" + }, + { + "id": "55712", + "name": "Monori Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.34990000", + "longitude": "19.47680000" + }, + { + "id": "55753", + "name": "Nagykáta", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.41514000", + "longitude": "19.74410000" + }, + { + "id": "55754", + "name": "Nagykátai Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.39109000", + "longitude": "19.73920000" + }, + { + "id": "55755", + "name": "Nagykőrös", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.03419000", + "longitude": "19.77857000" + }, + { + "id": "55756", + "name": "Nagykőrösi Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.03563000", + "longitude": "19.79259000" + }, + { + "id": "55750", + "name": "Nagykovácsi", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.65000000", + "longitude": "19.01667000" + }, + { + "id": "55757", + "name": "Nagymaros", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.79280000", + "longitude": "18.95984000" + }, + { + "id": "55763", + "name": "Nagytarcsa", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.53128000", + "longitude": "19.28343000" + }, + { + "id": "55767", + "name": "Nyáregyháza", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.26175000", + "longitude": "19.50146000" + }, + { + "id": "55841", + "name": "Pánd", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.35333000", + "longitude": "19.63571000" + }, + { + "id": "55847", + "name": "Páty", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51709000", + "longitude": "18.82851000" + }, + { + "id": "55849", + "name": "Pécel", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.48962000", + "longitude": "19.34162000" + }, + { + "id": "55855", + "name": "Péteri", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.39104000", + "longitude": "19.40981000" + }, + { + "id": "55813", + "name": "Perbál", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.58957000", + "longitude": "18.76099000" + }, + { + "id": "55817", + "name": "Pilis", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.28904000", + "longitude": "19.54848000" + }, + { + "id": "55818", + "name": "Pilisborosjenő", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60744000", + "longitude": "18.99322000" + }, + { + "id": "55819", + "name": "Piliscsaba", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.63417000", + "longitude": "18.82886000" + }, + { + "id": "55822", + "name": "Pilisszántó", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.66909000", + "longitude": "18.88762000" + }, + { + "id": "55820", + "name": "Pilisszentiván", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60964000", + "longitude": "18.89940000" + }, + { + "id": "55821", + "name": "Pilisszentkereszt", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.69143000", + "longitude": "18.90503000" + }, + { + "id": "55823", + "name": "Pilisvörösvár", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.61386000", + "longitude": "18.90893000" + }, + { + "id": "55824", + "name": "Pilisvörösvári Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60925000", + "longitude": "18.86658000" + }, + { + "id": "55829", + "name": "Pomáz", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.64227000", + "longitude": "19.02784000" + }, + { + "id": "55872", + "name": "Ráckeve", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.16095000", + "longitude": "18.94478000" + }, + { + "id": "55873", + "name": "Ráckevei Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.15158000", + "longitude": "19.01456000" + }, + { + "id": "55996", + "name": "Sóskút", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.40665000", + "longitude": "18.82247000" + }, + { + "id": "55998", + "name": "Sülysáp", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45206000", + "longitude": "19.53369000" + }, + { + "id": "55905", + "name": "Solymár", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.59246000", + "longitude": "18.93212000" + }, + { + "id": "55914", + "name": "Szada", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.63333000", + "longitude": "19.31667000" + }, + { + "id": "55971", + "name": "Százhalombatta", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.32949000", + "longitude": "18.93878000" + }, + { + "id": "55977", + "name": "Sződ", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.72439000", + "longitude": "19.17046000" + }, + { + "id": "55978", + "name": "Sződliget", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.73259000", + "longitude": "19.14749000" + }, + { + "id": "55934", + "name": "Szentendre", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.66943000", + "longitude": "19.07561000" + }, + { + "id": "55935", + "name": "Szentendrei Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.71146000", + "longitude": "19.02524000" + }, + { + "id": "55946", + "name": "Szentlőrinckáta", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.51947000", + "longitude": "19.75286000" + }, + { + "id": "55947", + "name": "Szentmártonkáta", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45419000", + "longitude": "19.70143000" + }, + { + "id": "55956", + "name": "Szigetújfalu", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.23417000", + "longitude": "18.92746000" + }, + { + "id": "55950", + "name": "Szigetcsép", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.26492000", + "longitude": "18.97048000" + }, + { + "id": "55951", + "name": "Szigethalom", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.32228000", + "longitude": "19.00262000" + }, + { + "id": "55952", + "name": "Szigetszentmiklós", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.34382000", + "longitude": "19.04335000" + }, + { + "id": "55953", + "name": "Szigetszentmiklósi Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.30566000", + "longitude": "19.02829000" + }, + { + "id": "55962", + "name": "Szob", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.81921000", + "longitude": "18.87020000" + }, + { + "id": "55963", + "name": "Szobi Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93419000", + "longitude": "18.85438000" + }, + { + "id": "56003", + "name": "Tahitótfalu", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.75000000", + "longitude": "19.10000000" + }, + { + "id": "56004", + "name": "Taksony", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.32968000", + "longitude": "19.06695000" + }, + { + "id": "56061", + "name": "Táborfalva", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.09942000", + "longitude": "19.47837000" + }, + { + "id": "56063", + "name": "Tápióbicske", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.36096000", + "longitude": "19.68609000" + }, + { + "id": "56064", + "name": "Tápiógyörgye", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.33505000", + "longitude": "19.95276000" + }, + { + "id": "56069", + "name": "Tápióság", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.40200000", + "longitude": "19.63047000" + }, + { + "id": "56068", + "name": "Tápiószőlős", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.30248000", + "longitude": "19.85133000" + }, + { + "id": "56065", + "name": "Tápiószecső", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.45000000", + "longitude": "19.60923000" + }, + { + "id": "56066", + "name": "Tápiószele", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.33609000", + "longitude": "19.87724000" + }, + { + "id": "56067", + "name": "Tápiószentmárton", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.33990000", + "longitude": "19.74648000" + }, + { + "id": "56071", + "name": "Tárnok", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.37327000", + "longitude": "18.84579000" + }, + { + "id": "56076", + "name": "Tóalmás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.50782000", + "longitude": "19.66657000" + }, + { + "id": "56079", + "name": "Tököl", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.32178000", + "longitude": "18.96249000" + }, + { + "id": "56083", + "name": "Törökbálint", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.42931000", + "longitude": "18.91356000" + }, + { + "id": "56082", + "name": "Törtel", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.12209000", + "longitude": "19.93714000" + }, + { + "id": "56018", + "name": "Telki", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.54791000", + "longitude": "18.82816000" + }, + { + "id": "56058", + "name": "Tura", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.60924000", + "longitude": "19.60279000" + }, + { + "id": "56090", + "name": "Valkó", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.56391000", + "longitude": "19.51267000" + }, + { + "id": "56105", + "name": "Vác", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.77591000", + "longitude": "19.13612000" + }, + { + "id": "56106", + "name": "Váci Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.78316000", + "longitude": "19.23882000" + }, + { + "id": "56107", + "name": "Vácszentlászló", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.57400000", + "longitude": "19.53771000" + }, + { + "id": "56094", + "name": "Vecsés", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.40705000", + "longitude": "19.28648000" + }, + { + "id": "56095", + "name": "Vecsési Járás", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.42923000", + "longitude": "19.30136000" + }, + { + "id": "56099", + "name": "Verőce", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.82468000", + "longitude": "19.03484000" + }, + { + "id": "56097", + "name": "Veresegyház", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.64590000", + "longitude": "19.29536000" + }, + { + "id": "56103", + "name": "Visegrád", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.78526000", + "longitude": "18.97090000" + }, + { + "id": "56132", + "name": "Zsámbék", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.54814000", + "longitude": "18.72011000" + }, + { + "id": "56131", + "name": "Zsámbok", + "state_id": 1059, + "state_code": "PE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.54381000", + "longitude": "19.61048000" + }, + { + "id": "56140", + "name": "Ádánd", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.85931000", + "longitude": "18.16442000" + }, + { + "id": "55199", + "name": "Babócsa", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.04155000", + "longitude": "17.34332000" + }, + { + "id": "55214", + "name": "Balatonberény", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.70701000", + "longitude": "17.32013000" + }, + { + "id": "55215", + "name": "Balatonboglár", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.77525000", + "longitude": "17.64415000" + }, + { + "id": "55217", + "name": "Balatonföldvár", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.85255000", + "longitude": "17.88123000" + }, + { + "id": "55216", + "name": "Balatonfenyves", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.71542000", + "longitude": "17.49223000" + }, + { + "id": "55221", + "name": "Balatonlelle", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.78318000", + "longitude": "17.69498000" + }, + { + "id": "55222", + "name": "Balatonszabadi", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.89397000", + "longitude": "18.13737000" + }, + { + "id": "55223", + "name": "Balatonszárszó", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.82946000", + "longitude": "17.82426000" + }, + { + "id": "55231", + "name": "Barcs", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "45.96000000", + "longitude": "17.45861000" + }, + { + "id": "55232", + "name": "Barcsi Járás", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.03687000", + "longitude": "17.47434000" + }, + { + "id": "55306", + "name": "Böhönye", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.41345000", + "longitude": "17.38037000" + }, + { + "id": "55242", + "name": "Berzence", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.20907000", + "longitude": "17.14810000" + }, + { + "id": "55343", + "name": "Csurgó", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.25314000", + "longitude": "17.10060000" + }, + { + "id": "55344", + "name": "Csurgói Járás", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.29502000", + "longitude": "17.10021000" + }, + { + "id": "55430", + "name": "Fonyód", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.75552000", + "longitude": "17.57945000" + }, + { + "id": "55431", + "name": "Fonyódi Járás", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.67289000", + "longitude": "17.70000000" + }, + { + "id": "55556", + "name": "Kadarkút", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.23623000", + "longitude": "17.62014000" + }, + { + "id": "55560", + "name": "Kaposmérő", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.36167000", + "longitude": "17.70400000" + }, + { + "id": "55561", + "name": "Kaposvár", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.36667000", + "longitude": "17.80000000" + }, + { + "id": "55562", + "name": "Kaposvári Járás", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.39791000", + "longitude": "17.76990000" + }, + { + "id": "55572", + "name": "Karád", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.69076000", + "longitude": "17.84136000" + }, + { + "id": "55643", + "name": "Kéthely", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.64605000", + "longitude": "17.39362000" + }, + { + "id": "55666", + "name": "Lábod", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.20535000", + "longitude": "17.45419000" + }, + { + "id": "55656", + "name": "Lengyeltóti", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.67013000", + "longitude": "17.64398000" + }, + { + "id": "55679", + "name": "Marcali", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.58498000", + "longitude": "17.41196000" + }, + { + "id": "55680", + "name": "Marcali Járás", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.54382000", + "longitude": "17.39203000" + }, + { + "id": "55738", + "name": "Nagyatád", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.22961000", + "longitude": "17.35788000" + }, + { + "id": "55739", + "name": "Nagyatádi Járás", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.25200000", + "longitude": "17.37520000" + }, + { + "id": "55740", + "name": "Nagybajom", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.39232000", + "longitude": "17.51147000" + }, + { + "id": "55893", + "name": "Segesd", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.34142000", + "longitude": "17.35132000" + }, + { + "id": "55901", + "name": "Siófok", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.90413000", + "longitude": "18.05800000" + }, + { + "id": "55902", + "name": "Siófoki Járás", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.85060000", + "longitude": "17.99625000" + }, + { + "id": "55906", + "name": "Somogyvár", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.58140000", + "longitude": "17.66289000" + }, + { + "id": "56001", + "name": "Tab", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.73135000", + "longitude": "18.03201000" + }, + { + "id": "56002", + "name": "Tabi Járás", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.68037000", + "longitude": "18.00560000" + }, + { + "id": "56017", + "name": "Taszár", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.37467000", + "longitude": "17.90594000" + }, + { + "id": "56126", + "name": "Zamárdi", + "state_id": 1035, + "state_code": "SO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.88488000", + "longitude": "17.95366000" + }, + { + "id": "55177", + "name": "Ajak", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.17664000", + "longitude": "22.06273000" + }, + { + "id": "55187", + "name": "Anarcs", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.17642000", + "longitude": "22.11167000" + }, + { + "id": "55189", + "name": "Apagy", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.96431000", + "longitude": "21.93539000" + }, + { + "id": "55193", + "name": "Aranyosapáti", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.20595000", + "longitude": "22.25916000" + }, + { + "id": "56160", + "name": "Újfehértó", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.80000000", + "longitude": "21.68333000" + }, + { + "id": "56157", + "name": "Ököritófülpös", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.91862000", + "longitude": "22.50810000" + }, + { + "id": "56150", + "name": "Ófehértó", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93333000", + "longitude": "22.05000000" + }, + { + "id": "56153", + "name": "Ópályi", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.99771000", + "longitude": "22.32617000" + }, + { + "id": "55208", + "name": "Baktalórántháza", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.00000000", + "longitude": "22.08333000" + }, + { + "id": "55209", + "name": "Baktalórántházai Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.00436000", + "longitude": "22.02449000" + }, + { + "id": "55224", + "name": "Balkány", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.77066000", + "longitude": "21.86314000" + }, + { + "id": "55307", + "name": "Bököny", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.73333000", + "longitude": "21.75000000" + }, + { + "id": "55285", + "name": "Buj", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.10000000", + "longitude": "21.65000000" + }, + { + "id": "55329", + "name": "Csenger", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.83582000", + "longitude": "22.68096000" + }, + { + "id": "55330", + "name": "Csengeri Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.83045000", + "longitude": "22.59810000" + }, + { + "id": "55391", + "name": "Döge", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.26246000", + "longitude": "22.06339000" + }, + { + "id": "55356", + "name": "Demecser", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.11648000", + "longitude": "21.92624000" + }, + { + "id": "55367", + "name": "Dombrád", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.23333000", + "longitude": "21.93333000" + }, + { + "id": "55406", + "name": "Encsencs", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.73333000", + "longitude": "22.11667000" + }, + { + "id": "55435", + "name": "Fényeslitke", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.27133000", + "longitude": "22.10009000" + }, + { + "id": "55420", + "name": "Fehérgyarmat", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.98333000", + "longitude": "22.51667000" + }, + { + "id": "55421", + "name": "Fehérgyarmati Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.00436000", + "longitude": "22.63014000" + }, + { + "id": "55473", + "name": "Gégény", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.15000000", + "longitude": "21.95000000" + }, + { + "id": "55454", + "name": "Gyulaháza", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.13333000", + "longitude": "22.11667000" + }, + { + "id": "55513", + "name": "Hodász", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.91834000", + "longitude": "22.20153000" + }, + { + "id": "55524", + "name": "Ibrány", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.12329000", + "longitude": "21.70953000" + }, + { + "id": "55525", + "name": "Ibrányi Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.12794000", + "longitude": "21.69344000" + }, + { + "id": "55636", + "name": "Kállósemjén", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.86081000", + "longitude": "21.93929000" + }, + { + "id": "55637", + "name": "Kálmánháza", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.88333000", + "longitude": "21.58333000" + }, + { + "id": "55639", + "name": "Kántorjánosi", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93333000", + "longitude": "22.15000000" + }, + { + "id": "55641", + "name": "Kék", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.11667000", + "longitude": "21.88333000" + }, + { + "id": "55646", + "name": "Kótaj", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.05000000", + "longitude": "21.71667000" + }, + { + "id": "55582", + "name": "Kemecse", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.07532000", + "longitude": "21.80625000" + }, + { + "id": "55583", + "name": "Kemecsei Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.10048000", + "longitude": "21.88414000" + }, + { + "id": "55605", + "name": "Kisléta", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.84244000", + "longitude": "22.00393000" + }, + { + "id": "55612", + "name": "Kisvárda", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.21667000", + "longitude": "22.08333000" + }, + { + "id": "55613", + "name": "Kisvárdai Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.22100000", + "longitude": "22.06415000" + }, + { + "id": "55616", + "name": "Kocsord", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93912000", + "longitude": "22.38333000" + }, + { + "id": "55662", + "name": "Levelek", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.96282000", + "longitude": "21.98537000" + }, + { + "id": "55721", + "name": "Mándok", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.32149000", + "longitude": "22.19107000" + }, + { + "id": "55723", + "name": "Máriapócs", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.88303000", + "longitude": "22.02501000" + }, + { + "id": "55728", + "name": "Mátészalka", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.95528000", + "longitude": "22.32348000" + }, + { + "id": "55729", + "name": "Mátészalkai Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.92961000", + "longitude": "22.31892000" + }, + { + "id": "55732", + "name": "Mérk", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.78824000", + "longitude": "22.38038000" + }, + { + "id": "55743", + "name": "Nagycserkesz", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.96667000", + "longitude": "21.53333000" + }, + { + "id": "55744", + "name": "Nagydobos", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.05759000", + "longitude": "22.30423000" + }, + { + "id": "55746", + "name": "Nagyecsed", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.86547000", + "longitude": "22.39159000" + }, + { + "id": "55747", + "name": "Nagyhalász", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.13266000", + "longitude": "21.76104000" + }, + { + "id": "55751", + "name": "Nagykálló", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.87491000", + "longitude": "21.84082000" + }, + { + "id": "55752", + "name": "Nagykállói Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.79994000", + "longitude": "21.84753000" + }, + { + "id": "55764", + "name": "Napkor", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.93797000", + "longitude": "21.86763000" + }, + { + "id": "55775", + "name": "Nyírbátor", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.83333000", + "longitude": "22.13333000" + }, + { + "id": "55776", + "name": "Nyírbátori Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.77553000", + "longitude": "22.11755000" + }, + { + "id": "55777", + "name": "Nyírbéltek", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.70000000", + "longitude": "22.13333000" + }, + { + "id": "55774", + "name": "Nyírbogát", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.80340000", + "longitude": "22.06561000" + }, + { + "id": "55773", + "name": "Nyírbogdány", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.05723000", + "longitude": "21.88242000" + }, + { + "id": "55778", + "name": "Nyírcsaholy", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.90383000", + "longitude": "22.33630000" + }, + { + "id": "55779", + "name": "Nyíregyháza", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.95539000", + "longitude": "21.71671000" + }, + { + "id": "55780", + "name": "Nyíregyházi Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.97691000", + "longitude": "21.64463000" + }, + { + "id": "55781", + "name": "Nyírgyulaj", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.88622000", + "longitude": "22.09781000" + }, + { + "id": "55782", + "name": "Nyírkarász", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.09477000", + "longitude": "22.10463000" + }, + { + "id": "55783", + "name": "Nyírlugos", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.69315000", + "longitude": "22.04476000" + }, + { + "id": "55784", + "name": "Nyírmada", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.06667000", + "longitude": "22.20000000" + }, + { + "id": "55785", + "name": "Nyírmeggyes", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.91667000", + "longitude": "22.26667000" + }, + { + "id": "55786", + "name": "Nyírmihálydi", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.73976000", + "longitude": "21.96445000" + }, + { + "id": "55788", + "name": "Nyírpazony", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.98333000", + "longitude": "21.80000000" + }, + { + "id": "55789", + "name": "Nyírtass", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.11667000", + "longitude": "22.03333000" + }, + { + "id": "55790", + "name": "Nyírtelek", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.01667000", + "longitude": "21.63333000" + }, + { + "id": "55791", + "name": "Nyírvasvári", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.81667000", + "longitude": "22.18683000" + }, + { + "id": "55846", + "name": "Pátroha", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.16667000", + "longitude": "22.00000000" + }, + { + "id": "55815", + "name": "Petneháza", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.06084000", + "longitude": "22.07485000" + }, + { + "id": "55830", + "name": "Porcsalma", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.88333000", + "longitude": "22.56667000" + }, + { + "id": "55862", + "name": "Rakamaz", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.12372000", + "longitude": "21.46429000" + }, + { + "id": "55916", + "name": "Szakoly", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.76667000", + "longitude": "21.91667000" + }, + { + "id": "55918", + "name": "Szamosszeg", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.04561000", + "longitude": "22.36582000" + }, + { + "id": "56015", + "name": "Tarpa", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.10480000", + "longitude": "22.53744000" + }, + { + "id": "56022", + "name": "Tiszabercel", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.15000000", + "longitude": "21.65000000" + }, + { + "id": "56023", + "name": "Tiszabezdéd", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.36667000", + "longitude": "22.15000000" + }, + { + "id": "56027", + "name": "Tiszadada", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.03333000", + "longitude": "21.25000000" + }, + { + "id": "56028", + "name": "Tiszadob", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.01667000", + "longitude": "21.16667000" + }, + { + "id": "56029", + "name": "Tiszaeszlár", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.05000000", + "longitude": "21.46667000" + }, + { + "id": "56037", + "name": "Tiszalök", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.01667000", + "longitude": "21.38333000" + }, + { + "id": "56039", + "name": "Tiszanagyfalu", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.10000000", + "longitude": "21.48333000" + }, + { + "id": "56046", + "name": "Tiszavasvári", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.96667000", + "longitude": "21.35000000" + }, + { + "id": "56047", + "name": "Tiszavasvári Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.98606000", + "longitude": "21.36545000" + }, + { + "id": "56056", + "name": "Tornyospálca", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.26667000", + "longitude": "22.18333000" + }, + { + "id": "56057", + "name": "Tunyogmatolcs", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.96667000", + "longitude": "22.46667000" + }, + { + "id": "56059", + "name": "Tuzsér", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.34407000", + "longitude": "22.11762000" + }, + { + "id": "56060", + "name": "Tyukod", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "47.85378000", + "longitude": "22.56330000" + }, + { + "id": "56088", + "name": "Vaja", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.00574000", + "longitude": "22.16761000" + }, + { + "id": "56114", + "name": "Vásárosnamény", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.12542000", + "longitude": "22.31325000" + }, + { + "id": "56115", + "name": "Vásárosnaményi Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.17981000", + "longitude": "22.35859000" + }, + { + "id": "56134", + "name": "Záhony", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.40906000", + "longitude": "22.17614000" + }, + { + "id": "56135", + "name": "Záhonyi Járás", + "state_id": 1045, + "state_code": "SZ", + "country_id": 99, + "country_code": "HU", + "latitude": "48.34914000", + "longitude": "22.18925000" + }, + { + "id": "56170", + "name": "Őcsény", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.31370000", + "longitude": "18.75749000" + }, + { + "id": "55291", + "name": "Báta", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.12864000", + "longitude": "18.77027000" + }, + { + "id": "55292", + "name": "Bátaszék", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.19373000", + "longitude": "18.72307000" + }, + { + "id": "55308", + "name": "Bölcske", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.74102000", + "longitude": "18.96736000" + }, + { + "id": "55251", + "name": "Bogyiszló", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.38638000", + "longitude": "18.82962000" + }, + { + "id": "55255", + "name": "Bonyhád", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.29921000", + "longitude": "18.53024000" + }, + { + "id": "55256", + "name": "Bonyhádi Járás", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.33998000", + "longitude": "18.49739000" + }, + { + "id": "55390", + "name": "Döbrököz", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.42178000", + "longitude": "18.23953000" + }, + { + "id": "55355", + "name": "Decs", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.28428000", + "longitude": "18.76000000" + }, + { + "id": "55368", + "name": "Dombóvár", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.37657000", + "longitude": "18.13696000" + }, + { + "id": "55369", + "name": "Dombóvári Járás", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.45592000", + "longitude": "18.19076000" + }, + { + "id": "55373", + "name": "Dunaföldvár", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.80713000", + "longitude": "18.92763000" + }, + { + "id": "55379", + "name": "Dunaszentgyörgy", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.52852000", + "longitude": "18.81771000" + }, + { + "id": "55415", + "name": "Fadd", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.46476000", + "longitude": "18.81925000" + }, + { + "id": "55465", + "name": "Gyönk", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.55603000", + "longitude": "18.47694000" + }, + { + "id": "55523", + "name": "Hőgyész", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.49697000", + "longitude": "18.41841000" + }, + { + "id": "55528", + "name": "Iregszemcse", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.69286000", + "longitude": "18.18581000" + }, + { + "id": "55673", + "name": "Madocsa", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.68790000", + "longitude": "18.95791000" + }, + { + "id": "55745", + "name": "Nagydorog", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.62749000", + "longitude": "18.65565000" + }, + { + "id": "55758", + "name": "Nagymányok", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.27911000", + "longitude": "18.45489000" + }, + { + "id": "55795", + "name": "Németkér", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.71637000", + "longitude": "18.76311000" + }, + { + "id": "55803", + "name": "Ozora", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.75133000", + "longitude": "18.40010000" + }, + { + "id": "55805", + "name": "Paks", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.62210000", + "longitude": "18.85569000" + }, + { + "id": "55806", + "name": "Paksi Járás", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.66035000", + "longitude": "18.78572000" + }, + { + "id": "55825", + "name": "Pincehely", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.68095000", + "longitude": "18.43935000" + }, + { + "id": "55899", + "name": "Simontornya", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.75462000", + "longitude": "18.55490000" + }, + { + "id": "55924", + "name": "Szedres", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.47551000", + "longitude": "18.68305000" + }, + { + "id": "55930", + "name": "Szekszárd", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.35014000", + "longitude": "18.70905000" + }, + { + "id": "55931", + "name": "Szekszárdi Járás", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.33998000", + "longitude": "18.67893000" + }, + { + "id": "55940", + "name": "Szentgálpuszta", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.37479000", + "longitude": "18.62601000" + }, + { + "id": "56007", + "name": "Tamási", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.63333000", + "longitude": "18.28333000" + }, + { + "id": "56008", + "name": "Tamási Járás", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.65424000", + "longitude": "18.35857000" + }, + { + "id": "56019", + "name": "Tengelic", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.52878000", + "longitude": "18.71117000" + }, + { + "id": "56053", + "name": "Tolna", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.42677000", + "longitude": "18.78248000" + }, + { + "id": "56054", + "name": "Tolnai Járás", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.42541000", + "longitude": "18.82691000" + }, + { + "id": "56129", + "name": "Zomba", + "state_id": 1038, + "state_code": "TO", + "country_id": 99, + "country_code": "HU", + "latitude": "46.41084000", + "longitude": "18.56577000" + }, + { + "id": "55309", + "name": "Bük", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38486000", + "longitude": "16.75065000" + }, + { + "id": "55318", + "name": "Celldömölk", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.25713000", + "longitude": "17.15027000" + }, + { + "id": "55319", + "name": "Celldömölki Járás", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.25001000", + "longitude": "17.13209000" + }, + { + "id": "55332", + "name": "Csepreg", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.40098000", + "longitude": "16.70881000" + }, + { + "id": "55447", + "name": "Gencsapáti", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.28496000", + "longitude": "16.59575000" + }, + { + "id": "55534", + "name": "Ják", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.14249000", + "longitude": "16.58148000" + }, + { + "id": "55538", + "name": "Jánosháza", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.11937000", + "longitude": "17.16503000" + }, + { + "id": "55647", + "name": "Körmend", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.01096000", + "longitude": "16.60596000" + }, + { + "id": "55648", + "name": "Körmendi Járás", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.92164000", + "longitude": "16.53291000" + }, + { + "id": "55651", + "name": "Kőszeg", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.38922000", + "longitude": "16.54100000" + }, + { + "id": "55652", + "name": "Kőszegi Járás", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.37500000", + "longitude": "16.65650000" + }, + { + "id": "55876", + "name": "Répcelak", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.42105000", + "longitude": "17.01795000" + }, + { + "id": "55990", + "name": "Sárvár", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.25395000", + "longitude": "16.93525000" + }, + { + "id": "55991", + "name": "Sárvári Járás", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.23868000", + "longitude": "16.93299000" + }, + { + "id": "55938", + "name": "Szentgotthárd", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.95261000", + "longitude": "16.27358000" + }, + { + "id": "55939", + "name": "Szentgotthárdi Járás", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.93674000", + "longitude": "16.30362000" + }, + { + "id": "55966", + "name": "Szombathely", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.23088000", + "longitude": "16.62155000" + }, + { + "id": "55967", + "name": "Szombathelyi Járás", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.21037000", + "longitude": "16.63954000" + }, + { + "id": "56070", + "name": "Táplánszentkereszt", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.19496000", + "longitude": "16.69613000" + }, + { + "id": "56092", + "name": "Vasvár", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.04928000", + "longitude": "16.79954000" + }, + { + "id": "56093", + "name": "Vasvári Járás", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.03487000", + "longitude": "16.85939000" + }, + { + "id": "56116", + "name": "Vép", + "state_id": 1039, + "state_code": "VA", + "country_id": 99, + "country_code": "HU", + "latitude": "47.23041000", + "longitude": "16.72248000" + }, + { + "id": "55178", + "name": "Ajka", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.10196000", + "longitude": "17.55892000" + }, + { + "id": "55179", + "name": "Ajkai Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.07988000", + "longitude": "17.56375000" + }, + { + "id": "56166", + "name": "Úrkút", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.08505000", + "longitude": "17.64393000" + }, + { + "id": "56172", + "name": "Ősi", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.14722000", + "longitude": "18.18833000" + }, + { + "id": "55200", + "name": "Badacsonytomaj", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.80711000", + "longitude": "17.51385000" + }, + { + "id": "55212", + "name": "Balatonalmádi", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.03526000", + "longitude": "18.02076000" + }, + { + "id": "55213", + "name": "Balatonalmádi Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.04174000", + "longitude": "18.09617000" + }, + { + "id": "55218", + "name": "Balatonfüred", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.96188000", + "longitude": "17.87187000" + }, + { + "id": "55219", + "name": "Balatonfüredi Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.93952000", + "longitude": "17.79411000" + }, + { + "id": "55220", + "name": "Balatonkenese", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.04019000", + "longitude": "18.10671000" + }, + { + "id": "55241", + "name": "Berhida", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.11131000", + "longitude": "18.12948000" + }, + { + "id": "55323", + "name": "Csabrendek", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.01356000", + "longitude": "17.29108000" + }, + { + "id": "55335", + "name": "Csetény", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.31806000", + "longitude": "17.99208000" + }, + { + "id": "55339", + "name": "Csopak", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.97709000", + "longitude": "17.91819000" + }, + { + "id": "55360", + "name": "Devecser", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.10316000", + "longitude": "17.43802000" + }, + { + "id": "55361", + "name": "Devecseri Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.16836000", + "longitude": "17.32271000" + }, + { + "id": "55492", + "name": "Hajmáskér", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.14513000", + "longitude": "18.01964000" + }, + { + "id": "55506", + "name": "Herend", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.13333000", + "longitude": "17.75000000" + }, + { + "id": "55664", + "name": "Litér", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.10104000", + "longitude": "18.00454000" + }, + { + "id": "55766", + "name": "Nemesvámos", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.05514000", + "longitude": "17.87477000" + }, + { + "id": "55842", + "name": "Pápa", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.33004000", + "longitude": "17.46740000" + }, + { + "id": "55843", + "name": "Pápai Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.33769000", + "longitude": "17.49663000" + }, + { + "id": "55858", + "name": "Pétfürdő", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.16667000", + "longitude": "18.11667000" + }, + { + "id": "55879", + "name": "Révfülöp", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.82573000", + "longitude": "17.61967000" + }, + { + "id": "55999", + "name": "Sümeg", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.97703000", + "longitude": "17.28209000" + }, + { + "id": "56000", + "name": "Sümegi Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.02648000", + "longitude": "17.26779000" + }, + { + "id": "55943", + "name": "Szentkirályszabadja", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.05760000", + "longitude": "17.97052000" + }, + { + "id": "56009", + "name": "Tapolca", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.88152000", + "longitude": "17.44117000" + }, + { + "id": "56010", + "name": "Tapolcai Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.89833000", + "longitude": "17.49510000" + }, + { + "id": "56020", + "name": "Tihany", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.91369000", + "longitude": "17.88918000" + }, + { + "id": "56112", + "name": "Várpalota", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.19936000", + "longitude": "18.13954000" + }, + { + "id": "56113", + "name": "Várpalotai Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.18514000", + "longitude": "18.12211000" + }, + { + "id": "56100", + "name": "Veszprém", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.09327000", + "longitude": "17.91149000" + }, + { + "id": "56101", + "name": "Veszprémi Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.09666000", + "longitude": "17.82157000" + }, + { + "id": "56138", + "name": "Zánka", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "46.87146000", + "longitude": "17.68473000" + }, + { + "id": "56127", + "name": "Zirc", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.26362000", + "longitude": "17.87373000" + }, + { + "id": "56128", + "name": "Zirci Járás", + "state_id": 1054, + "state_code": "VE", + "country_id": 99, + "country_code": "HU", + "latitude": "47.28583000", + "longitude": "17.88412000" + }, + { + "id": "55234", + "name": "Becsehely", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.44755000", + "longitude": "16.77710000" + }, + { + "id": "55334", + "name": "Cserszegtomaj", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.80165000", + "longitude": "17.22096000" + }, + { + "id": "55450", + "name": "Gyenesdiás", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.77058000", + "longitude": "17.28660000" + }, + { + "id": "55519", + "name": "Hévíz", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.79031000", + "longitude": "17.18408000" + }, + { + "id": "55589", + "name": "Keszthely", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.76812000", + "longitude": "17.24317000" + }, + { + "id": "55590", + "name": "Keszthelyi Járás", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.78356000", + "longitude": "17.22381000" + }, + { + "id": "55657", + "name": "Lenti", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.62403000", + "longitude": "16.53863000" + }, + { + "id": "55658", + "name": "Lenti Járás", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.65649000", + "longitude": "16.57443000" + }, + { + "id": "55660", + "name": "Letenye", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.43301000", + "longitude": "16.72583000" + }, + { + "id": "55661", + "name": "Letenyei Járás", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.50552000", + "longitude": "16.76503000" + }, + { + "id": "55717", + "name": "Murakeresztúr", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.36422000", + "longitude": "16.88177000" + }, + { + "id": "55748", + "name": "Nagykanizsa", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.45347000", + "longitude": "16.99104000" + }, + { + "id": "55749", + "name": "Nagykanizsai Járás", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.51873000", + "longitude": "17.04433000" + }, + { + "id": "55804", + "name": "Pacsa", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.71981000", + "longitude": "17.01401000" + }, + { + "id": "55984", + "name": "Sármellék", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.71221000", + "longitude": "17.16865000" + }, + { + "id": "56087", + "name": "Türje", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.98366000", + "longitude": "17.10742000" + }, + { + "id": "56104", + "name": "Vonyarcvashegy", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.75742000", + "longitude": "17.31172000" + }, + { + "id": "56120", + "name": "Zalaegerszeg", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.84000000", + "longitude": "16.84389000" + }, + { + "id": "56121", + "name": "Zalaegerszegi Járás", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.80000000", + "longitude": "16.83000000" + }, + { + "id": "56122", + "name": "Zalakomár", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.53795000", + "longitude": "17.18094000" + }, + { + "id": "56123", + "name": "Zalalövő", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.84802000", + "longitude": "16.58750000" + }, + { + "id": "56124", + "name": "Zalaszentgrót", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.94474000", + "longitude": "17.07925000" + }, + { + "id": "56125", + "name": "Zalaszentgróti Járás", + "state_id": 1046, + "state_code": "ZA", + "country_id": 99, + "country_code": "HU", + "latitude": "46.92070000", + "longitude": "17.10095000" + }, + { + "id": "135228", + "name": "Álftanes", + "state_id": 3431, + "state_code": "1", + "country_id": 100, + "country_code": "IS", + "latitude": "64.10000000", + "longitude": "-22.01667000" + }, + { + "id": "135181", + "name": "Garðabær", + "state_id": 3431, + "state_code": "1", + "country_id": 100, + "country_code": "IS", + "latitude": "64.08865000", + "longitude": "-21.92298000" + }, + { + "id": "135186", + "name": "Hafnarfjörður", + "state_id": 3431, + "state_code": "1", + "country_id": 100, + "country_code": "IS", + "latitude": "64.06710000", + "longitude": "-21.93774000" + }, + { + "id": "135197", + "name": "Kópavogur", + "state_id": 3431, + "state_code": "1", + "country_id": 100, + "country_code": "IS", + "latitude": "64.11234000", + "longitude": "-21.91298000" + }, + { + "id": "135196", + "name": "Kjósarhreppur", + "state_id": 3431, + "state_code": "1", + "country_id": 100, + "country_code": "IS", + "latitude": "64.30644000", + "longitude": "-21.49919000" + }, + { + "id": "135200", + "name": "Mosfellsbaer", + "state_id": 3431, + "state_code": "1", + "country_id": 100, + "country_code": "IS", + "latitude": "64.15000000", + "longitude": "-21.65000000" + }, + { + "id": "135201", + "name": "Mosfellsbær", + "state_id": 3431, + "state_code": "1", + "country_id": 100, + "country_code": "IS", + "latitude": "64.16667000", + "longitude": "-21.70000000" + }, + { + "id": "135206", + "name": "Reykjavík", + "state_id": 3431, + "state_code": "1", + "country_id": 100, + "country_code": "IS", + "latitude": "64.13548000", + "longitude": "-21.89541000" + }, + { + "id": "135211", + "name": "Seltjarnarnes", + "state_id": 3431, + "state_code": "1", + "country_id": 100, + "country_code": "IS", + "latitude": "64.15309000", + "longitude": "-21.99499000" + }, + { + "id": "135166", + "name": "Borgarfjarðarhreppur", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "65.43401000", + "longitude": "-13.82933000" + }, + { + "id": "135168", + "name": "Breiðdalshreppur", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "64.83333000", + "longitude": "-14.25000000" + }, + { + "id": "135172", + "name": "Egilsstaðir", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "65.26687000", + "longitude": "-14.39485000" + }, + { + "id": "135173", + "name": "Eskifjörður", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "65.07306000", + "longitude": "-14.01525000" + }, + { + "id": "135177", + "name": "Fjarðabyggð", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "65.08333000", + "longitude": "-14.00000000" + }, + { + "id": "135179", + "name": "Fljótsdalshérað", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "65.25020000", + "longitude": "-15.37211000" + }, + { + "id": "135178", + "name": "Fljótsdalshreppur", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "64.85275000", + "longitude": "-15.25680000" + }, + { + "id": "135191", + "name": "Höfn", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "64.25388000", + "longitude": "-15.21212000" + }, + { + "id": "135203", + "name": "Neskaupstaður", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "65.14819000", + "longitude": "-13.68368000" + }, + { + "id": "135207", + "name": "Reyðarfjörður", + "state_id": 3433, + "state_code": "7", + "country_id": 100, + "country_code": "IS", + "latitude": "65.03164000", + "longitude": "-14.21832000" + }, + { + "id": "135163", + "name": "Akureyri", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.68353000", + "longitude": "-18.08780000" + }, + { + "id": "135233", + "name": "Þingeyjarsveit", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.37229000", + "longitude": "-17.59927000" + }, + { + "id": "135170", + "name": "Dalvík", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.97018000", + "longitude": "-18.52861000" + }, + { + "id": "135171", + "name": "Dalvíkurbyggð", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.87318000", + "longitude": "-18.60844000" + }, + { + "id": "135175", + "name": "Eyjafjarðarsveit", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.33333000", + "longitude": "-18.16667000" + }, + { + "id": "135176", + "name": "Fjallabyggð", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "66.05962000", + "longitude": "-18.78220000" + }, + { + "id": "135185", + "name": "Grýtubakkahreppur", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.98333000", + "longitude": "-18.11667000" + }, + { + "id": "135192", + "name": "Hörgársveit", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.64828000", + "longitude": "-18.49599000" + }, + { + "id": "135194", + "name": "Húsavík", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "66.04148000", + "longitude": "-17.33834000" + }, + { + "id": "135198", + "name": "Langanesbyggð", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "66.05186000", + "longitude": "-15.18969000" + }, + { + "id": "135199", + "name": "Laugar", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.72159000", + "longitude": "-17.37352000" + }, + { + "id": "135212", + "name": "Siglufjörður", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "66.15198000", + "longitude": "-18.90815000" + }, + { + "id": "135217", + "name": "Skútustaðahreppur", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.17177000", + "longitude": "-16.77890000" + }, + { + "id": "135221", + "name": "Svalbarðsstrandarhreppur", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "65.74138000", + "longitude": "-18.03513000" + }, + { + "id": "135223", + "name": "Tjörneshreppur", + "state_id": 3437, + "state_code": "6", + "country_id": 100, + "country_code": "IS", + "latitude": "66.11667000", + "longitude": "-17.20000000" + }, + { + "id": "135161", + "name": "Akrahreppur", + "state_id": 3435, + "state_code": "5", + "country_id": 100, + "country_code": "IS", + "latitude": "65.35505000", + "longitude": "-18.79572000" + }, + { + "id": "135193", + "name": "Húnaþing Vestra", + "state_id": 3435, + "state_code": "5", + "country_id": 100, + "country_code": "IS", + "latitude": "65.25000000", + "longitude": "-20.91667000" + }, + { + "id": "135209", + "name": "Sauðárkrókur", + "state_id": 3435, + "state_code": "5", + "country_id": 100, + "country_code": "IS", + "latitude": "65.74611000", + "longitude": "-19.63944000" + }, + { + "id": "135214", + "name": "Skagabyggð", + "state_id": 3435, + "state_code": "5", + "country_id": 100, + "country_code": "IS", + "latitude": "65.95000000", + "longitude": "-20.25000000" + }, + { + "id": "135222", + "name": "Sveitarfélagið Skagafjörður", + "state_id": 3435, + "state_code": "5", + "country_id": 100, + "country_code": "IS", + "latitude": "65.50018000", + "longitude": "-19.44566000" + }, + { + "id": "135182", + "name": "Garður", + "state_id": 3430, + "state_code": "2", + "country_id": 100, + "country_code": "IS", + "latitude": "64.06558000", + "longitude": "-22.64656000" + }, + { + "id": "135183", + "name": "Grindavík", + "state_id": 3430, + "state_code": "2", + "country_id": 100, + "country_code": "IS", + "latitude": "63.83849000", + "longitude": "-22.43931000" + }, + { + "id": "135195", + "name": "Keflavík", + "state_id": 3430, + "state_code": "2", + "country_id": 100, + "country_code": "IS", + "latitude": "64.00492000", + "longitude": "-22.56242000" + }, + { + "id": "135205", + "name": "Reykjanesbær", + "state_id": 3430, + "state_code": "2", + "country_id": 100, + "country_code": "IS", + "latitude": "63.99813000", + "longitude": "-22.56111000" + }, + { + "id": "135208", + "name": "Sandgerði", + "state_id": 3430, + "state_code": "2", + "country_id": 100, + "country_code": "IS", + "latitude": "64.03762000", + "longitude": "-22.70799000" + }, + { + "id": "135227", + "name": "Vogar", + "state_id": 3430, + "state_code": "2", + "country_id": 100, + "country_code": "IS", + "latitude": "63.98160000", + "longitude": "-22.38473000" + }, + { + "id": "135234", + "name": "Þorlákshöfn", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "63.85591000", + "longitude": "-21.38337000" + }, + { + "id": "135229", + "name": "Ásahreppur", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "63.87589000", + "longitude": "-20.59484000" + }, + { + "id": "135164", + "name": "Bláskógabyggð", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "64.41667000", + "longitude": "-20.33333000" + }, + { + "id": "135180", + "name": "Flóahreppur", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "63.89569000", + "longitude": "-20.80159000" + }, + { + "id": "135184", + "name": "Grímsnes- og Grafningshreppur", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "64.08533000", + "longitude": "-20.96710000" + }, + { + "id": "135188", + "name": "Hrunamannahreppur", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "64.40944000", + "longitude": "-19.72237000" + }, + { + "id": "135190", + "name": "Hveragerði", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "64.00039000", + "longitude": "-21.18602000" + }, + { + "id": "135202", + "name": "Mýrdalshreppur", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "63.50000000", + "longitude": "-19.00000000" + }, + { + "id": "135210", + "name": "Selfoss", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "63.93311000", + "longitude": "-20.99712000" + }, + { + "id": "135213", + "name": "Skaftárhreppur", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "63.95948000", + "longitude": "-18.14491000" + }, + { + "id": "135215", + "name": "Skeiða- og Gnúpverjahreppur", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "64.34738000", + "longitude": "-19.37757000" + }, + { + "id": "135225", + "name": "Vestmannaeyjabær", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "63.43877000", + "longitude": "-20.26900000" + }, + { + "id": "135226", + "name": "Vestmannaeyjar", + "state_id": 3434, + "state_code": "8", + "country_id": 100, + "country_code": "IS", + "latitude": "63.44273000", + "longitude": "-20.27339000" + }, + { + "id": "135162", + "name": "Akranes", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "64.32179000", + "longitude": "-22.07490000" + }, + { + "id": "135232", + "name": "Ólafsvík", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "64.89429000", + "longitude": "-23.70918000" + }, + { + "id": "135165", + "name": "Borgarbyggð", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "64.71446000", + "longitude": "-21.23788000" + }, + { + "id": "135167", + "name": "Borgarnes", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "64.53834000", + "longitude": "-21.92064000" + }, + { + "id": "135169", + "name": "Dalabyggð", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "65.10121000", + "longitude": "-21.72871000" + }, + { + "id": "135174", + "name": "Eyja- og Miklaholtshreppur", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "64.85846000", + "longitude": "-22.54557000" + }, + { + "id": "135187", + "name": "Helgafellssveit", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "64.99069000", + "longitude": "-22.78948000" + }, + { + "id": "135189", + "name": "Hvalfjarðarsveit", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "64.44265000", + "longitude": "-21.61086000" + }, + { + "id": "135216", + "name": "Skorradalshreppur", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "64.51667000", + "longitude": "-21.50000000" + }, + { + "id": "135218", + "name": "Snæfellsbær", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "64.86667000", + "longitude": "-23.50000000" + }, + { + "id": "135220", + "name": "Stykkishólmur", + "state_id": 3436, + "state_code": "3", + "country_id": 100, + "country_code": "IS", + "latitude": "65.07537000", + "longitude": "-22.72977000" + }, + { + "id": "135230", + "name": "Ísafjarðarbær", + "state_id": 3432, + "state_code": "4", + "country_id": 100, + "country_code": "IS", + "latitude": "66.07586000", + "longitude": "-23.12794000" + }, + { + "id": "135231", + "name": "Ísafjörður", + "state_id": 3432, + "state_code": "4", + "country_id": 100, + "country_code": "IS", + "latitude": "66.07475000", + "longitude": "-23.13498000" + }, + { + "id": "135204", + "name": "Reykhólahreppur", + "state_id": 3432, + "state_code": "4", + "country_id": 100, + "country_code": "IS", + "latitude": "65.60990000", + "longitude": "-22.33324000" + }, + { + "id": "135219", + "name": "Strandabyggð", + "state_id": 3432, + "state_code": "4", + "country_id": 100, + "country_code": "IS", + "latitude": "65.77455000", + "longitude": "-21.95725000" + }, + { + "id": "135224", + "name": "Tálknafjarðarhreppur", + "state_id": 3432, + "state_code": "4", + "country_id": 100, + "country_code": "IS", + "latitude": "65.61667000", + "longitude": "-23.88333000" + }, + { + "id": "57837", + "name": "Bamboo Flat", + "state_id": 4023, + "state_code": "AN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.70000000", + "longitude": "92.71667000" + }, + { + "id": "133213", + "name": "Nicobar", + "state_id": 4023, + "state_code": "AN", + "country_id": 101, + "country_code": "IN", + "latitude": "7.03002000", + "longitude": "93.79028000" + }, + { + "id": "133482", + "name": "Port Blair", + "state_id": 4023, + "state_code": "AN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.66613000", + "longitude": "92.74635000" + }, + { + "id": "134006", + "name": "South Andaman", + "state_id": 4023, + "state_code": "AN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.75776000", + "longitude": "92.52136000" + }, + { + "id": "57593", + "name": "Addanki", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.81061000", + "longitude": "79.97338000" + }, + { + "id": "57620", + "name": "Akasahebpet", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.50455000", + "longitude": "82.56597000" + }, + { + "id": "57623", + "name": "Akivīdu", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.58225000", + "longitude": "81.38112000" + }, + { + "id": "57624", + "name": "Akkarampalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.65000000", + "longitude": "79.42000000" + }, + { + "id": "57658", + "name": "Amalāpuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.57868000", + "longitude": "82.00609000" + }, + { + "id": "57690", + "name": "Amudālavalasa", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.41025000", + "longitude": "83.90295000" + }, + { + "id": "57693", + "name": "Anakāpalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.69134000", + "longitude": "83.00395000" + }, + { + "id": "57698", + "name": "Anantapur", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.55000000", + "longitude": "77.41667000" + }, + { + "id": "57758", + "name": "Atmakūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.88109000", + "longitude": "78.58704000" + }, + { + "id": "57761", + "name": "Attili", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.70000000", + "longitude": "81.60000000" + }, + { + "id": "57771", + "name": "Avanigadda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.02148000", + "longitude": "80.91808000" + }, + { + "id": "134452", + "name": "Ādoni", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.62788000", + "longitude": "77.27495000" + }, + { + "id": "57794", + "name": "Badvel", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.74510000", + "longitude": "79.06288000" + }, + { + "id": "57849", + "name": "Banganapalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.31771000", + "longitude": "78.22669000" + }, + { + "id": "58137", + "name": "Bāpatla", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.90422000", + "longitude": "80.46743000" + }, + { + "id": "57939", + "name": "Betamcherla", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.45144000", + "longitude": "78.14797000" + }, + { + "id": "57971", + "name": "Bhattiprolu", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.10260000", + "longitude": "80.78074000" + }, + { + "id": "58021", + "name": "Bhīmavaram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.54078000", + "longitude": "81.52322000" + }, + { + "id": "58022", + "name": "Bhīmunipatnam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.89017000", + "longitude": "83.45203000" + }, + { + "id": "58070", + "name": "Bobbili", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.57366000", + "longitude": "83.35925000" + }, + { + "id": "58179", + "name": "Challapalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.11756000", + "longitude": "80.93139000" + }, + { + "id": "131611", + "name": "Chīpurupalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.31142000", + "longitude": "83.56846000" + }, + { + "id": "131612", + "name": "Chīrāla", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.82385000", + "longitude": "80.35219000" + }, + { + "id": "131514", + "name": "Chemmumiahpet", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.89794000", + "longitude": "79.32129000" + }, + { + "id": "131556", + "name": "Chilakalūrupet", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.08987000", + "longitude": "80.16705000" + }, + { + "id": "131563", + "name": "Chinnachowk", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.47516000", + "longitude": "78.83540000" + }, + { + "id": "131575", + "name": "Chittoor", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.41667000", + "longitude": "79.00000000" + }, + { + "id": "131577", + "name": "Chodavaram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.82884000", + "longitude": "82.93526000" + }, + { + "id": "131627", + "name": "Cuddapah", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.41667000", + "longitude": "78.75000000" + }, + { + "id": "131628", + "name": "Cumbum", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.58171000", + "longitude": "79.11059000" + }, + { + "id": "131658", + "name": "Darsi", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.76978000", + "longitude": "79.67939000" + }, + { + "id": "131727", + "name": "Dharmavaram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.41435000", + "longitude": "77.72035000" + }, + { + "id": "131740", + "name": "Dhone", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.39520000", + "longitude": "77.87150000" + }, + { + "id": "131769", + "name": "Diguvametta", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.39507000", + "longitude": "78.82930000" + }, + { + "id": "131823", + "name": "East Godāvari", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.83333000", + "longitude": "81.83333000" + }, + { + "id": "131830", + "name": "Elamanchili", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.54907000", + "longitude": "82.85749000" + }, + { + "id": "131832", + "name": "Ellore", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.71311000", + "longitude": "81.10437000" + }, + { + "id": "131836", + "name": "Emmiganūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.77203000", + "longitude": "77.48345000" + }, + { + "id": "131842", + "name": "Erraguntla", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.63853000", + "longitude": "78.53974000" + }, + { + "id": "131846", + "name": "Etikoppāka", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.50000000", + "longitude": "82.73333000" + }, + { + "id": "131895", + "name": "Gajuwaka", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.70000000", + "longitude": "83.21667000" + }, + { + "id": "131906", + "name": "Ganguvāda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.66667000", + "longitude": "84.11667000" + }, + { + "id": "131915", + "name": "Gannavaram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.54092000", + "longitude": "80.80213000" + }, + { + "id": "132051", + "name": "Gūdūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.15093000", + "longitude": "79.85210000" + }, + { + "id": "131955", + "name": "Giddalūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.37439000", + "longitude": "78.92609000" + }, + { + "id": "131972", + "name": "Gokavaram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.25823000", + "longitude": "81.84985000" + }, + { + "id": "131993", + "name": "Gorantla", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.98411000", + "longitude": "77.77224000" + }, + { + "id": "132001", + "name": "Govindapuram,Chilakaluripet,Guntur", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.15477000", + "longitude": "80.10279000" + }, + { + "id": "132010", + "name": "Gudivāda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.43547000", + "longitude": "80.99555000" + }, + { + "id": "132012", + "name": "Gudlavalleru", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.35000000", + "longitude": "81.05000000" + }, + { + "id": "132027", + "name": "Guntakal Junction", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.17112000", + "longitude": "77.36244000" + }, + { + "id": "132029", + "name": "Guntūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.41667000", + "longitude": "80.25000000" + }, + { + "id": "132028", + "name": "Guntur", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.29974000", + "longitude": "80.45729000" + }, + { + "id": "132099", + "name": "Hindupur", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.82807000", + "longitude": "77.49143000" + }, + { + "id": "132151", + "name": "Ichchāpuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "19.11393000", + "longitude": "84.68721000" + }, + { + "id": "132189", + "name": "Jaggayyapeta", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.89380000", + "longitude": "80.09807000" + }, + { + "id": "132228", + "name": "Jammalamadugu", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.84677000", + "longitude": "78.38314000" + }, + { + "id": "132328", + "name": "Kadiri", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.11168000", + "longitude": "78.15982000" + }, + { + "id": "132332", + "name": "Kaikalūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.55154000", + "longitude": "81.21400000" + }, + { + "id": "132358", + "name": "Kalyandurg", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.54519000", + "longitude": "77.10552000" + }, + { + "id": "132372", + "name": "Kandukūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.21542000", + "longitude": "79.90390000" + }, + { + "id": "132374", + "name": "Kanigiri", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.40555000", + "longitude": "79.50694000" + }, + { + "id": "132376", + "name": "Kankipādu", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.43530000", + "longitude": "80.76715000" + }, + { + "id": "132388", + "name": "Kanuru", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.28584000", + "longitude": "81.25464000" + }, + { + "id": "132678", + "name": "Kākināda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.96036000", + "longitude": "82.23809000" + }, + { + "id": "132691", + "name": "Kāmalāpuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.59830000", + "longitude": "78.66948000" + }, + { + "id": "132729", + "name": "Kāvali", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.91630000", + "longitude": "79.99449000" + }, + { + "id": "132552", + "name": "Kolanukonda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.45392000", + "longitude": "80.61046000" + }, + { + "id": "132567", + "name": "Kondapalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.61989000", + "longitude": "80.54244000" + }, + { + "id": "132584", + "name": "Korukollu", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.50000000", + "longitude": "81.25000000" + }, + { + "id": "132590", + "name": "Kosigi", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.85510000", + "longitude": "77.24463000" + }, + { + "id": "132617", + "name": "Kovūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.50050000", + "longitude": "79.98518000" + }, + { + "id": "132616", + "name": "Kovvūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.01620000", + "longitude": "81.72934000" + }, + { + "id": "132621", + "name": "Krishna", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.66667000", + "longitude": "81.00000000" + }, + { + "id": "132653", + "name": "Kuppam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "12.74931000", + "longitude": "78.34189000" + }, + { + "id": "132660", + "name": "Kurnool", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.58333000", + "longitude": "78.33333000" + }, + { + "id": "132806", + "name": "Machilīpatnam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.18747000", + "longitude": "81.13888000" + }, + { + "id": "132808", + "name": "Madanapalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.55030000", + "longitude": "78.50288000" + }, + { + "id": "132890", + "name": "Mandapeta", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.86254000", + "longitude": "81.92921000" + }, + { + "id": "132891", + "name": "Mandasa", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.86830000", + "longitude": "84.46296000" + }, + { + "id": "132902", + "name": "Mangalagiri", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.43083000", + "longitude": "80.56815000" + }, + { + "id": "133055", + "name": "Mācherla", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.47635000", + "longitude": "79.43533000" + }, + { + "id": "133059", + "name": "Mādugula", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.91589000", + "longitude": "82.81578000" + }, + { + "id": "133088", + "name": "Mārkāpur", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.73534000", + "longitude": "79.26848000" + }, + { + "id": "133114", + "name": "Nagari", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.32139000", + "longitude": "79.58557000" + }, + { + "id": "133143", + "name": "Nandigāma", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.77170000", + "longitude": "80.28596000" + }, + { + "id": "133144", + "name": "Nandikotkūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.85668000", + "longitude": "78.26569000" + }, + { + "id": "133146", + "name": "Nandyāl", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.47799000", + "longitude": "78.48360000" + }, + { + "id": "133156", + "name": "Narasannapeta", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.41428000", + "longitude": "84.04463000" + }, + { + "id": "133157", + "name": "Narasapur", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.43425000", + "longitude": "81.69845000" + }, + { + "id": "133158", + "name": "Narasaraopet", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.23488000", + "longitude": "80.04927000" + }, + { + "id": "133160", + "name": "Narasingāpuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.60759000", + "longitude": "79.31652000" + }, + { + "id": "133173", + "name": "Narsīpatnam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.66709000", + "longitude": "82.61245000" + }, + { + "id": "133258", + "name": "Nāgireddipalli", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.27005000", + "longitude": "79.10131000" + }, + { + "id": "133275", + "name": "Nārāyanavanam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.42565000", + "longitude": "79.58881000" + }, + { + "id": "133283", + "name": "Nāyudupet", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.90742000", + "longitude": "79.89465000" + }, + { + "id": "133294", + "name": "Nūzvīd", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.78854000", + "longitude": "80.84593000" + }, + { + "id": "133206", + "name": "Nellore", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.08333000", + "longitude": "79.58333000" + }, + { + "id": "133214", + "name": "Nidadavole", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.90572000", + "longitude": "81.67222000" + }, + { + "id": "133300", + "name": "Ongole", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.50357000", + "longitude": "80.04454000" + }, + { + "id": "133340", + "name": "Palāsa", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.77257000", + "longitude": "84.41012000" + }, + { + "id": "133331", + "name": "Pallevāda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.57790000", + "longitude": "81.29463000" + }, + { + "id": "133336", + "name": "Palmaner", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.20000000", + "longitude": "78.74725000" + }, + { + "id": "133361", + "name": "Parlākimidi", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.78113000", + "longitude": "84.08836000" + }, + { + "id": "133395", + "name": "Pavuluru", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.85292000", + "longitude": "80.16468000" + }, + { + "id": "133521", + "name": "Pākāla", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.44903000", + "longitude": "79.11493000" + }, + { + "id": "133523", + "name": "Pālakollu", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.51670000", + "longitude": "81.73000000" + }, + { + "id": "133534", + "name": "Pālkonda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.60374000", + "longitude": "83.75568000" + }, + { + "id": "133549", + "name": "Pārvatipuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.78392000", + "longitude": "83.42569000" + }, + { + "id": "133400", + "name": "Pedana", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.25582000", + "longitude": "81.14378000" + }, + { + "id": "134447", + "name": "pedda nakkalapalem", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.86680000", + "longitude": "80.16202000" + }, + { + "id": "133402", + "name": "Peddāpuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.07701000", + "longitude": "82.13836000" + }, + { + "id": "133409", + "name": "Penugonda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.65363000", + "longitude": "81.74550000" + }, + { + "id": "133410", + "name": "Penukonda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.08286000", + "longitude": "77.59473000" + }, + { + "id": "133440", + "name": "Phirangipuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.29078000", + "longitude": "80.26233000" + }, + { + "id": "133455", + "name": "Pippara", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.71667000", + "longitude": "81.55000000" + }, + { + "id": "133465", + "name": "Pithāpuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.11680000", + "longitude": "82.25284000" + }, + { + "id": "133468", + "name": "Polavaram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.24754000", + "longitude": "81.64372000" + }, + { + "id": "133478", + "name": "Ponnūru", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.06547000", + "longitude": "80.55203000" + }, + { + "id": "133476", + "name": "Ponnur", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.07114000", + "longitude": "80.54944000" + }, + { + "id": "133485", + "name": "Prakasam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.50000000", + "longitude": "79.50000000" + }, + { + "id": "133489", + "name": "Proddatūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.75020000", + "longitude": "78.54813000" + }, + { + "id": "133497", + "name": "Pulivendla", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.42139000", + "longitude": "78.22502000" + }, + { + "id": "133506", + "name": "Punganūru", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.36672000", + "longitude": "78.57186000" + }, + { + "id": "133517", + "name": "Puttaparthi", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.16520000", + "longitude": "77.81170000" + }, + { + "id": "133519", + "name": "Puttūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.44189000", + "longitude": "79.55314000" + }, + { + "id": "133600", + "name": "Ramanayyapeta", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.94516000", + "longitude": "82.23850000" + }, + { + "id": "133605", + "name": "Rampachodavaram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.44088000", + "longitude": "81.77558000" + }, + { + "id": "133671", + "name": "Rājahmundry", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.00517000", + "longitude": "81.77784000" + }, + { + "id": "133691", + "name": "Rāmachandrapuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.83636000", + "longitude": "82.02871000" + }, + { + "id": "133712", + "name": "Rāmāpuram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.28749000", + "longitude": "77.86722000" + }, + { + "id": "133729", + "name": "Rāyachoti", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.05723000", + "longitude": "78.75056000" + }, + { + "id": "133730", + "name": "Rāyadrug", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.69971000", + "longitude": "76.85241000" + }, + { + "id": "133732", + "name": "Rāzampeta", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.19544000", + "longitude": "79.15896000" + }, + { + "id": "133734", + "name": "Rāzām", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.44909000", + "longitude": "83.65957000" + }, + { + "id": "133733", + "name": "Rāzole", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.47608000", + "longitude": "81.83912000" + }, + { + "id": "133627", + "name": "Renigunta", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.65143000", + "longitude": "79.51256000" + }, + { + "id": "133630", + "name": "Repalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.01840000", + "longitude": "80.82958000" + }, + { + "id": "133822", + "name": "Sattenapalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.39381000", + "longitude": "80.15221000" + }, + { + "id": "134065", + "name": "Sālūr", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.51716000", + "longitude": "83.20548000" + }, + { + "id": "134066", + "name": "Sāmalkot", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.05675000", + "longitude": "82.17639000" + }, + { + "id": "134093", + "name": "Sūlūru", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.70000000", + "longitude": "80.01667000" + }, + { + "id": "133946", + "name": "Singarāyakonda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.23046000", + "longitude": "80.02794000" + }, + { + "id": "133990", + "name": "Sompeta", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.94419000", + "longitude": "84.58449000" + }, + { + "id": "134025", + "name": "Srīkākulam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.50000000", + "longitude": "84.00000000" + }, + { + "id": "134032", + "name": "Srīsailain", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.07217000", + "longitude": "78.86816000" + }, + { + "id": "134019", + "name": "Srikakulam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.29890000", + "longitude": "83.89751000" + }, + { + "id": "134113", + "name": "Tanuku", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.75438000", + "longitude": "81.68143000" + }, + { + "id": "134226", + "name": "Tādepalle", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.48333000", + "longitude": "80.60000000" + }, + { + "id": "134227", + "name": "Tādepallegūdem", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.81467000", + "longitude": "81.52717000" + }, + { + "id": "134228", + "name": "Tādpatri", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.90832000", + "longitude": "78.01031000" + }, + { + "id": "134126", + "name": "Tekkali", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.60570000", + "longitude": "84.23546000" + }, + { + "id": "134183", + "name": "Tirumala", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.68333000", + "longitude": "79.35000000" + }, + { + "id": "134187", + "name": "Tirupati", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.63551000", + "longitude": "79.41989000" + }, + { + "id": "134222", + "name": "Tuni", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.35905000", + "longitude": "82.54607000" + }, + { + "id": "134292", + "name": "Uravakonda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.94348000", + "longitude": "77.25494000" + }, + { + "id": "134448", + "name": "vadlamuru", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.09545000", + "longitude": "82.16565000" + }, + { + "id": "134308", + "name": "Vadlapūdi", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "14.31119000", + "longitude": "79.80430000" + }, + { + "id": "134347", + "name": "Venkatagiri", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "13.96005000", + "longitude": "79.58032000" + }, + { + "id": "134348", + "name": "Vepagunta", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.77844000", + "longitude": "83.21577000" + }, + { + "id": "134350", + "name": "Vetapālem", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "15.78502000", + "longitude": "80.30663000" + }, + { + "id": "134356", + "name": "Vijayawada", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.50745000", + "longitude": "80.64660000" + }, + { + "id": "134364", + "name": "Vinukonda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.05310000", + "longitude": "79.73964000" + }, + { + "id": "134369", + "name": "Visakhapatnam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.68009000", + "longitude": "83.20161000" + }, + { + "id": "134370", + "name": "Vishākhapatnam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.73333000", + "longitude": "83.26667000" + }, + { + "id": "134373", + "name": "Vizianagaram", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.11692000", + "longitude": "83.41148000" + }, + { + "id": "134374", + "name": "Vizianagaram District", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "18.41102000", + "longitude": "83.37677000" + }, + { + "id": "134377", + "name": "Vuyyūru", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.36307000", + "longitude": "80.84406000" + }, + { + "id": "134407", + "name": "West Godāvari", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.00000000", + "longitude": "81.16667000" + }, + { + "id": "134424", + "name": "Yanam", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.73308000", + "longitude": "82.21364000" + }, + { + "id": "134426", + "name": "Yanamalakuduru", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "16.48531000", + "longitude": "80.66746000" + }, + { + "id": "134437", + "name": "Yārāda", + "state_id": 4017, + "state_code": "AP", + "country_id": 101, + "country_code": "IN", + "latitude": "17.65872000", + "longitude": "83.27419000" + }, + { + "id": "57645", + "name": "Along", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.16951000", + "longitude": "94.80060000" + }, + { + "id": "57708", + "name": "Anjaw", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.06549000", + "longitude": "96.82878000" + }, + { + "id": "58151", + "name": "Bāsār", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.99008000", + "longitude": "94.69451000" + }, + { + "id": "58080", + "name": "Bomdila", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.26475000", + "longitude": "92.42472000" + }, + { + "id": "58196", + "name": "Changlang", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.36265000", + "longitude": "96.34518000" + }, + { + "id": "131763", + "name": "Dibāng Valley", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.70000000", + "longitude": "95.70000000" + }, + { + "id": "131826", + "name": "East Kameng", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.30000000", + "longitude": "93.05000000" + }, + { + "id": "131828", + "name": "East Siang", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.12379000", + "longitude": "95.16339000" + }, + { + "id": "132090", + "name": "Hayuliang", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.07301000", + "longitude": "96.54305000" + }, + { + "id": "132178", + "name": "Itānagar", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.08694000", + "longitude": "93.60987000" + }, + { + "id": "132499", + "name": "Khonsa", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.01667000", + "longitude": "95.56667000" + }, + { + "id": "132663", + "name": "Kurung Kumey", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.99983000", + "longitude": "93.39240000" + }, + { + "id": "132769", + "name": "Lohit District", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.84012000", + "longitude": "96.19521000" + }, + { + "id": "132779", + "name": "Lower Dibang Valley", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.37258000", + "longitude": "95.88040000" + }, + { + "id": "132780", + "name": "Lower Subansiri", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.62554000", + "longitude": "93.93908000" + }, + { + "id": "132934", + "name": "Margherita", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.28482000", + "longitude": "95.66796000" + }, + { + "id": "133121", + "name": "Naharlagun", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.10467000", + "longitude": "93.69518000" + }, + { + "id": "133551", + "name": "Pāsighāt", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.06631000", + "longitude": "95.32678000" + }, + { + "id": "134120", + "name": "Tawang", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.57417000", + "longitude": "91.92437000" + }, + { + "id": "134135", + "name": "Tezu", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.91256000", + "longitude": "96.12882000" + }, + { + "id": "134199", + "name": "Tirāp", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.01917000", + "longitude": "95.51788000" + }, + { + "id": "134288", + "name": "Upper Siang", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.83355000", + "longitude": "94.91806000" + }, + { + "id": "134289", + "name": "Upper Subansiri", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.30000000", + "longitude": "94.00000000" + }, + { + "id": "134409", + "name": "West Kameng", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.40000000", + "longitude": "92.35000000" + }, + { + "id": "134411", + "name": "West Siang", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.40000000", + "longitude": "94.55000000" + }, + { + "id": "134444", + "name": "Ziro", + "state_id": 4024, + "state_code": "AR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.59497000", + "longitude": "93.83854000" + }, + { + "id": "57585", + "name": "Abhayāpuri", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.32255000", + "longitude": "90.68526000" + }, + { + "id": "57679", + "name": "Amguri", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.81482000", + "longitude": "94.52614000" + }, + { + "id": "57787", + "name": "Badarpur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "24.86852000", + "longitude": "92.59606000" + }, + { + "id": "57820", + "name": "Baksa", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.69804000", + "longitude": "91.15142000" + }, + { + "id": "57883", + "name": "Barpathār", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.28709000", + "longitude": "93.88844000" + }, + { + "id": "57884", + "name": "Barpeta", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.47104000", + "longitude": "91.03080000" + }, + { + "id": "57885", + "name": "Barpeta Road", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.50284000", + "longitude": "90.96937000" + }, + { + "id": "58150", + "name": "Bāsugaon", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.46742000", + "longitude": "90.41951000" + }, + { + "id": "58028", + "name": "Bihpuriāgaon", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.01718000", + "longitude": "93.91673000" + }, + { + "id": "58034", + "name": "Bijni", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.49588000", + "longitude": "90.70298000" + }, + { + "id": "58053", + "name": "Bilāsipāra", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.23285000", + "longitude": "90.23410000" + }, + { + "id": "58075", + "name": "Bokajān", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.02131000", + "longitude": "93.77945000" + }, + { + "id": "58077", + "name": "Bokākhāt", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.64018000", + "longitude": "93.60052000" + }, + { + "id": "58081", + "name": "Bongaigaon", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.46030000", + "longitude": "90.64640000" + }, + { + "id": "131634", + "name": "Cāchār", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "24.78213000", + "longitude": "92.85771000" + }, + { + "id": "131588", + "name": "Chābua", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.48253000", + "longitude": "95.17451000" + }, + { + "id": "131604", + "name": "Chāpar", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.27266000", + "longitude": "90.44556000" + }, + { + "id": "131568", + "name": "Chirang", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.52527000", + "longitude": "90.49066000" + }, + { + "id": "131657", + "name": "Darrang", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.51195000", + "longitude": "92.16843000" + }, + { + "id": "131695", + "name": "Dergaon", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.70000000", + "longitude": "93.96667000" + }, + { + "id": "131732", + "name": "Dhekiajuli", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.70367000", + "longitude": "92.47808000" + }, + { + "id": "131733", + "name": "Dhemaji", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.60910000", + "longitude": "94.79420000" + }, + { + "id": "131734", + "name": "Dhemāji", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.48333000", + "longitude": "94.58333000" + }, + { + "id": "131737", + "name": "Dhing", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.46793000", + "longitude": "92.47336000" + }, + { + "id": "131744", + "name": "Dhubri", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.06749000", + "longitude": "90.02238000" + }, + { + "id": "131745", + "name": "Dhuburi", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.01856000", + "longitude": "89.98564000" + }, + { + "id": "131762", + "name": "Dibrugarh", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.50000000", + "longitude": "95.00000000" + }, + { + "id": "131766", + "name": "Digboi", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.39321000", + "longitude": "95.61839000" + }, + { + "id": "131770", + "name": "Dima Hasao District", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "93.00000000" + }, + { + "id": "131776", + "name": "Diphu", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "25.84341000", + "longitude": "93.43116000" + }, + { + "id": "131778", + "name": "Dispur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.13564000", + "longitude": "91.80069000" + }, + { + "id": "131795", + "name": "Duliāgaon", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.37227000", + "longitude": "95.30754000" + }, + { + "id": "131796", + "name": "Dum Duma", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.56884000", + "longitude": "95.55664000" + }, + { + "id": "131928", + "name": "Gauripur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.08334000", + "longitude": "89.96118000" + }, + { + "id": "132004", + "name": "Goālpāra", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.12791000", + "longitude": "90.60974000" + }, + { + "id": "131967", + "name": "Gohpur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.88184000", + "longitude": "93.61560000" + }, + { + "id": "131976", + "name": "Golaghat", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.40920000", + "longitude": "93.91193000" + }, + { + "id": "131977", + "name": "Golakganj", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.10216000", + "longitude": "89.82275000" + }, + { + "id": "131978", + "name": "Golāghāt", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.51167000", + "longitude": "93.95951000" + }, + { + "id": "131997", + "name": "Goshaingaon", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.43946000", + "longitude": "89.96307000" + }, + { + "id": "132039", + "name": "Guwahati", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.18440000", + "longitude": "91.74580000" + }, + { + "id": "132055", + "name": "Hailakandi", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "24.50170000", + "longitude": "92.60069000" + }, + { + "id": "132056", + "name": "Hailākāndi", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "24.68394000", + "longitude": "92.56097000" + }, + { + "id": "132134", + "name": "Hāflong", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "25.16478000", + "longitude": "93.01744000" + }, + { + "id": "132137", + "name": "Hājo", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.24520000", + "longitude": "91.52525000" + }, + { + "id": "132110", + "name": "Hojāi", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.00281000", + "longitude": "92.85605000" + }, + { + "id": "132126", + "name": "Howli", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.42237000", + "longitude": "90.98004000" + }, + { + "id": "132291", + "name": "Jogīghopa", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.22646000", + "longitude": "90.57247000" + }, + { + "id": "132294", + "name": "Jorhat", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.80000000", + "longitude": "94.26000000" + }, + { + "id": "132295", + "name": "Jorhāt", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.75751000", + "longitude": "94.20306000" + }, + { + "id": "132366", + "name": "Kamrup Metropolitan", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.05375000", + "longitude": "92.00763000" + }, + { + "id": "132414", + "name": "Karīmganj", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "24.86919000", + "longitude": "92.35543000" + }, + { + "id": "132402", + "name": "Karimganj", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "24.60000000", + "longitude": "92.40000000" + }, + { + "id": "132693", + "name": "Kāmrūp", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.22322000", + "longitude": "91.65344000" + }, + { + "id": "132718", + "name": "Kārbi Ānglong", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.00000000", + "longitude": "93.50000000" + }, + { + "id": "132518", + "name": "Khārupatia", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.51839000", + "longitude": "92.14722000" + }, + { + "id": "132551", + "name": "Kokrajhar", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.60000000", + "longitude": "90.20000000" + }, + { + "id": "132742", + "name": "Lakhimpur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.35000000", + "longitude": "94.25000000" + }, + { + "id": "132743", + "name": "Lakhipur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "24.79281000", + "longitude": "93.00910000" + }, + { + "id": "132793", + "name": "Lāla", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "24.55418000", + "longitude": "92.61592000" + }, + { + "id": "132786", + "name": "Lumding Railway Colony", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "25.74903000", + "longitude": "93.16998000" + }, + { + "id": "132842", + "name": "Mahur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "25.18305000", + "longitude": "93.11342000" + }, + { + "id": "132853", + "name": "Maibong", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "25.30125000", + "longitude": "93.13811000" + }, + { + "id": "132904", + "name": "Mangaldai", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.44212000", + "longitude": "92.03047000" + }, + { + "id": "132937", + "name": "Mariāni", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.65725000", + "longitude": "94.31529000" + }, + { + "id": "133064", + "name": "Mākum", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.48652000", + "longitude": "95.43646000" + }, + { + "id": "133002", + "name": "Morānha", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.18735000", + "longitude": "94.91557000" + }, + { + "id": "132995", + "name": "Morigaon", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.25213000", + "longitude": "92.34238000" + }, + { + "id": "133110", + "name": "Nagaon", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.35037000", + "longitude": "92.69225000" + }, + { + "id": "133122", + "name": "Nahorkatiya", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.28912000", + "longitude": "95.34180000" + }, + { + "id": "133130", + "name": "Nalbari", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.50000000", + "longitude": "91.40000000" + }, + { + "id": "133266", + "name": "Nāmrup", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.19395000", + "longitude": "95.31929000" + }, + { + "id": "133284", + "name": "Nāzirā", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.91649000", + "longitude": "94.73611000" + }, + { + "id": "133239", + "name": "North Guwāhāti", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.19749000", + "longitude": "91.72020000" + }, + { + "id": "133240", + "name": "North Lakhimpur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.23517000", + "longitude": "94.10357000" + }, + { + "id": "133248", + "name": "Numāligarh", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.62249000", + "longitude": "93.72225000" + }, + { + "id": "133341", + "name": "Palāsbāri", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.12388000", + "longitude": "91.53974000" + }, + { + "id": "133584", + "name": "Rahā", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.23333000", + "longitude": "92.51667000" + }, + { + "id": "133610", + "name": "Rangāpāra", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.83772000", + "longitude": "92.66876000" + }, + { + "id": "133608", + "name": "Rangia", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.44931000", + "longitude": "91.61356000" + }, + { + "id": "133798", + "name": "Sapatgrām", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.33732000", + "longitude": "90.12360000" + }, + { + "id": "133809", + "name": "Sarupathar", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.20600000", + "longitude": "96.81000000" + }, + { + "id": "133916", + "name": "Sibsāgar", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.98427000", + "longitude": "94.63784000" + }, + { + "id": "133934", + "name": "Silapathar", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.59441000", + "longitude": "94.72402000" + }, + { + "id": "133935", + "name": "Silchar", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "24.82733000", + "longitude": "92.79787000" + }, + { + "id": "133979", + "name": "Soalkuchi", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.16806000", + "longitude": "91.57111000" + }, + { + "id": "133998", + "name": "Sonāri", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.02462000", + "longitude": "95.01629000" + }, + { + "id": "133996", + "name": "Sonitpur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.76748000", + "longitude": "92.96425000" + }, + { + "id": "134003", + "name": "Sorbhog", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.48612000", + "longitude": "90.88590000" + }, + { + "id": "134134", + "name": "Tezpur", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.63333000", + "longitude": "92.80000000" + }, + { + "id": "134175", + "name": "Tinsukia", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "27.60000000", + "longitude": "95.60000000" + }, + { + "id": "134203", + "name": "Titābar", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.60140000", + "longitude": "94.20386000" + }, + { + "id": "134252", + "name": "Udalguri", + "state_id": 4027, + "state_code": "AS", + "country_id": 101, + "country_code": "IN", + "latitude": "26.75367000", + "longitude": "92.10215000" + }, + { + "id": "57661", + "name": "Amarpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.03967000", + "longitude": "86.90247000" + }, + { + "id": "57730", + "name": "Araria", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.20000000", + "longitude": "87.40000000" + }, + { + "id": "57748", + "name": "Arāria", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.14934000", + "longitude": "87.51323000" + }, + { + "id": "57739", + "name": "Arrah", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.55629000", + "longitude": "84.66335000" + }, + { + "id": "57747", + "name": "Arwal", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.16158000", + "longitude": "84.69040000" + }, + { + "id": "57749", + "name": "Asarganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.15046000", + "longitude": "86.68639000" + }, + { + "id": "57766", + "name": "Aurangābād", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.75204000", + "longitude": "84.37420000" + }, + { + "id": "57796", + "name": "Bagaha", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.09918000", + "longitude": "84.09003000" + }, + { + "id": "57809", + "name": "Bahādurganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.26172000", + "longitude": "87.82443000" + }, + { + "id": "57815", + "name": "Bairāgnia", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.74063000", + "longitude": "85.27323000" + }, + { + "id": "57816", + "name": "Baisi", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.86302000", + "longitude": "87.74487000" + }, + { + "id": "57818", + "name": "Bakhtiyārpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.46179000", + "longitude": "85.53179000" + }, + { + "id": "57850", + "name": "Bangaon", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.86728000", + "longitude": "86.51152000" + }, + { + "id": "57854", + "name": "Banka", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.89214000", + "longitude": "86.98425000" + }, + { + "id": "57855", + "name": "Banmankhi", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.88857000", + "longitude": "87.19421000" + }, + { + "id": "57860", + "name": "Bar Bigha", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.21855000", + "longitude": "85.73320000" + }, + { + "id": "57864", + "name": "Barauli", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.38109000", + "longitude": "84.58648000" + }, + { + "id": "57873", + "name": "Barhiya", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.28814000", + "longitude": "86.02055000" + }, + { + "id": "57875", + "name": "Bariārpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.28791000", + "longitude": "86.57643000" + }, + { + "id": "58127", + "name": "Bānka", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.88091000", + "longitude": "86.92257000" + }, + { + "id": "58141", + "name": "Bārh", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.48339000", + "longitude": "85.70928000" + }, + { + "id": "58145", + "name": "Bāruni", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.47509000", + "longitude": "85.96813000" + }, + { + "id": "58160", + "name": "Bīrpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.50823000", + "longitude": "87.01194000" + }, + { + "id": "57915", + "name": "Begusarai", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.41853000", + "longitude": "86.13389000" + }, + { + "id": "57916", + "name": "Begusarāi", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "86.25000000" + }, + { + "id": "57927", + "name": "Belsand", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.44365000", + "longitude": "85.40076000" + }, + { + "id": "57941", + "name": "Bettiah", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.80229000", + "longitude": "84.50311000" + }, + { + "id": "57947", + "name": "Bhabhua", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.04049000", + "longitude": "83.60749000" + }, + { + "id": "57957", + "name": "Bhagirathpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.26950000", + "longitude": "86.06346000" + }, + { + "id": "57974", + "name": "Bhawanipur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.45352000", + "longitude": "87.02744000" + }, + { + "id": "58009", + "name": "Bhāgalpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.29023000", + "longitude": "87.06665000" + }, + { + "id": "57991", + "name": "Bhojpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.30886000", + "longitude": "84.44504000" + }, + { + "id": "58029", + "name": "Bihār Sharīf", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.20084000", + "longitude": "85.52389000" + }, + { + "id": "58030", + "name": "Bihārīganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.73415000", + "longitude": "86.98837000" + }, + { + "id": "58039", + "name": "Bikramganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.21073000", + "longitude": "84.25508000" + }, + { + "id": "58089", + "name": "Buddh Gaya", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.69808000", + "longitude": "84.98690000" + }, + { + "id": "58100", + "name": "Buxar", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "84.10000000" + }, + { + "id": "131590", + "name": "Chākia", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.41598000", + "longitude": "85.04665000" + }, + { + "id": "131605", + "name": "Chāpra", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.78031000", + "longitude": "84.74709000" + }, + { + "id": "131541", + "name": "Chhātāpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.21965000", + "longitude": "87.00479000" + }, + { + "id": "131620", + "name": "Colgong", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.26328000", + "longitude": "87.23264000" + }, + { + "id": "131647", + "name": "Dalsingh Sarai", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.66795000", + "longitude": "85.83636000" + }, + { + "id": "131654", + "name": "Darbhanga", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.00000000", + "longitude": "86.00000000" + }, + { + "id": "131664", + "name": "Daudnagar", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.03473000", + "longitude": "84.40095000" + }, + { + "id": "131677", + "name": "Dehri", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.90247000", + "longitude": "84.18217000" + }, + { + "id": "131748", + "name": "Dhāka", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.67479000", + "longitude": "85.16698000" + }, + { + "id": "131767", + "name": "Dighwāra", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.74434000", + "longitude": "85.01003000" + }, + { + "id": "131773", + "name": "Dinapore", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.63705000", + "longitude": "85.04794000" + }, + { + "id": "131798", + "name": "Dumra", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.56708000", + "longitude": "85.52040000" + }, + { + "id": "131799", + "name": "Dumraon", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.55265000", + "longitude": "84.15149000" + }, + { + "id": "131873", + "name": "Fatwa", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50958000", + "longitude": "85.30504000" + }, + { + "id": "131878", + "name": "Forbesganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.30253000", + "longitude": "87.26556000" + }, + { + "id": "131932", + "name": "Gaya", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.79686000", + "longitude": "85.00385000" + }, + { + "id": "131933", + "name": "Gayā", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.75000000", + "longitude": "85.00000000" + }, + { + "id": "131943", + "name": "Ghoga", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.21738000", + "longitude": "87.15710000" + }, + { + "id": "131987", + "name": "Gopālganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.50000000", + "longitude": "84.33333000" + }, + { + "id": "132138", + "name": "Hājīpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.68544000", + "longitude": "85.20981000" + }, + { + "id": "132095", + "name": "Hilsa", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.31642000", + "longitude": "85.28234000" + }, + { + "id": "132107", + "name": "Hisuā", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.83360000", + "longitude": "85.41729000" + }, + { + "id": "132174", + "name": "Islāmpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.14075000", + "longitude": "85.20587000" + }, + { + "id": "132188", + "name": "Jagdīspur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.46811000", + "longitude": "84.41939000" + }, + { + "id": "132198", + "name": "Jahānābād", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.21368000", + "longitude": "84.98710000" + }, + { + "id": "132234", + "name": "Jamālpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.31258000", + "longitude": "86.48888000" + }, + { + "id": "132235", + "name": "Jamūī", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.92606000", + "longitude": "86.22531000" + }, + { + "id": "132233", + "name": "Jamui", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.92082000", + "longitude": "86.17538000" + }, + { + "id": "132258", + "name": "Jaynagar", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.59048000", + "longitude": "86.13791000" + }, + { + "id": "132259", + "name": "Jehanabad", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.20701000", + "longitude": "84.99573000" + }, + { + "id": "132267", + "name": "Jhanjhārpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.26467000", + "longitude": "86.27993000" + }, + { + "id": "132274", + "name": "Jhā-Jhā", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.77107000", + "longitude": "86.37888000" + }, + { + "id": "132288", + "name": "Jogbani", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.39905000", + "longitude": "87.26525000" + }, + { + "id": "132337", + "name": "Kaimur District", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.05077000", + "longitude": "83.58261000" + }, + { + "id": "132417", + "name": "Kasba", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.85643000", + "longitude": "87.53836000" + }, + { + "id": "132423", + "name": "Katihar", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "87.60000000" + }, + { + "id": "132451", + "name": "Khagaria", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50220000", + "longitude": "86.46708000" + }, + { + "id": "132452", + "name": "Khagaul", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.57898000", + "longitude": "85.04564000" + }, + { + "id": "132470", + "name": "Kharagpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.12446000", + "longitude": "86.55578000" + }, + { + "id": "132510", + "name": "Khusropur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.48174000", + "longitude": "85.38492000" + }, + { + "id": "132529", + "name": "Kishanganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.30000000", + "longitude": "88.00000000" + }, + { + "id": "132620", + "name": "Koāth", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.32643000", + "longitude": "84.25983000" + }, + { + "id": "132548", + "name": "Koelwār", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.58055000", + "longitude": "84.79751000" + }, + { + "id": "132744", + "name": "Lakhisarai", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.20000000", + "longitude": "86.20000000" + }, + { + "id": "132795", + "name": "Lālganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.86894000", + "longitude": "85.17394000" + }, + { + "id": "132781", + "name": "Luckeesarai", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.17650000", + "longitude": "86.09470000" + }, + { + "id": "132812", + "name": "Madhepura", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.80000000", + "longitude": "87.00000000" + }, + { + "id": "132813", + "name": "Madhipura", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.92127000", + "longitude": "86.79271000" + }, + { + "id": "132815", + "name": "Madhubani", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.35367000", + "longitude": "86.07169000" + }, + { + "id": "132849", + "name": "Mahārājgani", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.11017000", + "longitude": "84.50365000" + }, + { + "id": "132859", + "name": "Mairwa", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.23218000", + "longitude": "84.16349000" + }, + { + "id": "132901", + "name": "Maner", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.64602000", + "longitude": "84.87291000" + }, + { + "id": "132911", + "name": "Manihāri", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.33891000", + "longitude": "87.61998000" + }, + { + "id": "132935", + "name": "Marhaura", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.97349000", + "longitude": "84.86796000" + }, + { + "id": "132938", + "name": "Masaurhi Buzurg", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.35417000", + "longitude": "85.03195000" + }, + { + "id": "132984", + "name": "Mohiuddinnagar", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.57374000", + "longitude": "85.66944000" + }, + { + "id": "132988", + "name": "Mokameh", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.39662000", + "longitude": "85.92190000" + }, + { + "id": "132991", + "name": "Monghyr", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.37459000", + "longitude": "86.47455000" + }, + { + "id": "133005", + "name": "Mothīhāri", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.64862000", + "longitude": "84.91656000" + }, + { + "id": "133032", + "name": "Munger", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.36099000", + "longitude": "86.46515000" + }, + { + "id": "133037", + "name": "Murlīganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.89690000", + "longitude": "86.99577000" + }, + { + "id": "133052", + "name": "Muzaffarpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.16667000", + "longitude": "85.41667000" + }, + { + "id": "133105", + "name": "Nabīnagar", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.60681000", + "longitude": "84.12624000" + }, + { + "id": "133182", + "name": "Naugachhia", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.38807000", + "longitude": "87.09906000" + }, + { + "id": "133192", + "name": "Nawāda", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.75000000", + "longitude": "85.50000000" + }, + { + "id": "133262", + "name": "Nālanda", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.25000000", + "longitude": "85.58333000" + }, + { + "id": "133279", + "name": "Nāsriganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.05140000", + "longitude": "84.32839000" + }, + { + "id": "133222", + "name": "Nirmāli", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.31397000", + "longitude": "86.58537000" + }, + { + "id": "133373", + "name": "Pashchim Champāran", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.00000000", + "longitude": "84.50000000" + }, + { + "id": "133386", + "name": "Patna", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.41667000", + "longitude": "85.16667000" + }, + { + "id": "133570", + "name": "Pūrba Champāran", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.58333000", + "longitude": "84.83333000" + }, + { + "id": "133459", + "name": "Piro", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.33218000", + "longitude": "84.40454000" + }, + { + "id": "133509", + "name": "Pupri", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.47079000", + "longitude": "85.70311000" + }, + { + "id": "133512", + "name": "Purnia", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.81614000", + "longitude": "87.40708000" + }, + { + "id": "133581", + "name": "Rafiganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.81757000", + "longitude": "84.63445000" + }, + { + "id": "133582", + "name": "Raghunāthpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.64492000", + "longitude": "87.91762000" + }, + { + "id": "133621", + "name": "Raxaul", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.97982000", + "longitude": "84.85065000" + }, + { + "id": "133678", + "name": "Rājgīr", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.02828000", + "longitude": "85.42079000" + }, + { + "id": "133701", + "name": "Rāmnagar", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.16371000", + "longitude": "84.32342000" + }, + { + "id": "133632", + "name": "Revelganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.78976000", + "longitude": "84.63596000" + }, + { + "id": "133648", + "name": "Rohtās", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.97941000", + "longitude": "84.02774000" + }, + { + "id": "133656", + "name": "Rusera", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75355000", + "longitude": "86.02597000" + }, + { + "id": "133748", + "name": "Sagauli", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.76390000", + "longitude": "84.74341000" + }, + { + "id": "133749", + "name": "Saharsa", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.87498000", + "longitude": "86.59611000" + }, + { + "id": "133767", + "name": "Samastīpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "85.91667000" + }, + { + "id": "133775", + "name": "Samāstipur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.86222000", + "longitude": "85.77953000" + }, + { + "id": "134076", + "name": "Sāran", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.91667000", + "longitude": "84.75000000" + }, + { + "id": "134089", + "name": "Sītāmarhi", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.66667000", + "longitude": "85.50000000" + }, + { + "id": "133852", + "name": "Shahbazpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.30511000", + "longitude": "87.28865000" + }, + { + "id": "133902", + "name": "Shāhpur", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.60293000", + "longitude": "84.40412000" + }, + { + "id": "133858", + "name": "Sheikhpura", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.13073000", + "longitude": "85.78176000" + }, + { + "id": "133860", + "name": "Sheohar", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.50000000", + "longitude": "85.30000000" + }, + { + "id": "133863", + "name": "Sherghāti", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.55950000", + "longitude": "84.79162000" + }, + { + "id": "133933", + "name": "Silao", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.08358000", + "longitude": "85.42804000" + }, + { + "id": "133977", + "name": "Siwān", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.22096000", + "longitude": "84.35609000" + }, + { + "id": "134049", + "name": "Supaul", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.25000000", + "longitude": "86.80000000" + }, + { + "id": "134121", + "name": "Teghra", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.49043000", + "longitude": "85.94001000" + }, + { + "id": "134127", + "name": "Tekāri", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.94253000", + "longitude": "84.84265000" + }, + { + "id": "134163", + "name": "Thākurganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "26.42742000", + "longitude": "88.13112000" + }, + { + "id": "134314", + "name": "Vaishāli", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "85.41667000" + }, + { + "id": "134417", + "name": "Wāris Alīganj", + "state_id": 4037, + "state_code": "BR", + "country_id": 101, + "country_code": "IN", + "latitude": "25.01720000", + "longitude": "85.64047000" + }, + { + "id": "58190", + "name": "Chandigarh", + "state_id": 4031, + "state_code": "CH", + "country_id": 101, + "country_code": "IN", + "latitude": "30.73629000", + "longitude": "76.78840000" + }, + { + "id": "57619", + "name": "Akaltara", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.02463000", + "longitude": "82.42641000" + }, + { + "id": "57672", + "name": "Ambāgarh Chauki", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.77644000", + "longitude": "80.74608000" + }, + { + "id": "57670", + "name": "Ambikāpur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "23.11892000", + "longitude": "83.19537000" + }, + { + "id": "57728", + "name": "Arang", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.19639000", + "longitude": "81.96912000" + }, + { + "id": "57812", + "name": "Baikunthpur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "23.26206000", + "longitude": "82.56051000" + }, + { + "id": "57830", + "name": "Balod", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.73081000", + "longitude": "81.20578000" + }, + { + "id": "57831", + "name": "Baloda", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.13890000", + "longitude": "82.48171000" + }, + { + "id": "57832", + "name": "Baloda Bāzār", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.65678000", + "longitude": "82.16062000" + }, + { + "id": "57898", + "name": "Basna", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.27885000", + "longitude": "82.82670000" + }, + { + "id": "57900", + "name": "Bastar", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "19.26794000", + "longitude": "81.73828000" + }, + { + "id": "57931", + "name": "Bemetāra", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.71556000", + "longitude": "81.53423000" + }, + { + "id": "57969", + "name": "Bhatgaon", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.15000000", + "longitude": "81.70000000" + }, + { + "id": "58013", + "name": "Bhānpurī", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.09190000", + "longitude": "80.93218000" + }, + { + "id": "58015", + "name": "Bhātāpāra", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.73500000", + "longitude": "81.94711000" + }, + { + "id": "57981", + "name": "Bhilai", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.20919000", + "longitude": "81.42850000" + }, + { + "id": "58032", + "name": "Bijapur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "18.84322000", + "longitude": "80.77610000" + }, + { + "id": "58055", + "name": "Bilāspur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.38333000", + "longitude": "82.13333000" + }, + { + "id": "131593", + "name": "Chāmpa", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.03532000", + "longitude": "82.64234000" + }, + { + "id": "131538", + "name": "Chhuīkhadān", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.52316000", + "longitude": "80.99788000" + }, + { + "id": "131690", + "name": "Deori", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.45000000", + "longitude": "82.61667000" + }, + { + "id": "131712", + "name": "Dhamtari", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.70718000", + "longitude": "81.54874000" + }, + { + "id": "131787", + "name": "Dongargaon", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.97172000", + "longitude": "80.85077000" + }, + { + "id": "131788", + "name": "Dongargarh", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.18893000", + "longitude": "80.75459000" + }, + { + "id": "131801", + "name": "Durg", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.15000000", + "longitude": "81.40000000" + }, + { + "id": "131897", + "name": "Gandai", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.66667000", + "longitude": "81.10013000" + }, + { + "id": "131926", + "name": "Gariāband", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.63323000", + "longitude": "82.06221000" + }, + { + "id": "131927", + "name": "Gaurela", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.75449000", + "longitude": "81.90107000" + }, + { + "id": "132048", + "name": "Gīdam", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "18.97431000", + "longitude": "81.39894000" + }, + { + "id": "131938", + "name": "Gharghoda", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.17427000", + "longitude": "83.35170000" + }, + { + "id": "132186", + "name": "Jagdalpur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "19.08136000", + "longitude": "82.02131000" + }, + { + "id": "132240", + "name": "Janjgir-Champa", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.90000000", + "longitude": "82.70000000" + }, + { + "id": "132244", + "name": "Jashpur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.78495000", + "longitude": "83.84573000" + }, + { + "id": "132245", + "name": "Jashpurnagar", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.88783000", + "longitude": "84.13864000" + }, + { + "id": "132312", + "name": "Jānjgīr", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.00922000", + "longitude": "82.57780000" + }, + { + "id": "132318", + "name": "Jūnāgarh", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "19.85993000", + "longitude": "82.93385000" + }, + { + "id": "132319", + "name": "Kabeerdham", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.10000000", + "longitude": "81.20000000" + }, + { + "id": "132421", + "name": "Katghora", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.50247000", + "longitude": "82.54279000" + }, + { + "id": "132433", + "name": "Kawardha", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.00853000", + "longitude": "81.23148000" + }, + { + "id": "132704", + "name": "Kānker", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.27193000", + "longitude": "81.49177000" + }, + { + "id": "132456", + "name": "Khairāgarh", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.41859000", + "longitude": "80.97942000" + }, + { + "id": "132463", + "name": "Khamharia", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.97600000", + "longitude": "82.25116000" + }, + { + "id": "132480", + "name": "Kharod", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.74420000", + "longitude": "82.57880000" + }, + { + "id": "132481", + "name": "Kharsia", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.98953000", + "longitude": "83.10476000" + }, + { + "id": "132525", + "name": "Kirandul", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "18.63649000", + "longitude": "81.25827000" + }, + { + "id": "132565", + "name": "Kondagaon", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "19.59083000", + "longitude": "81.66400000" + }, + { + "id": "132581", + "name": "Korba", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.50000000", + "longitude": "82.60000000" + }, + { + "id": "132583", + "name": "Koriya", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "23.48326000", + "longitude": "82.15037000" + }, + { + "id": "132596", + "name": "Kotapārh", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "19.14256000", + "longitude": "82.32536000" + }, + { + "id": "132612", + "name": "Kotā", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.29507000", + "longitude": "82.02366000" + }, + { + "id": "132641", + "name": "Kumhāri", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.26667000", + "longitude": "81.51667000" + }, + { + "id": "132661", + "name": "Kurud", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.83073000", + "longitude": "81.72212000" + }, + { + "id": "132777", + "name": "Lormi", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.27434000", + "longitude": "81.70181000" + }, + { + "id": "132827", + "name": "Mahasamund", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.20000000", + "longitude": "82.50000000" + }, + { + "id": "132851", + "name": "Mahāsamund", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.10743000", + "longitude": "82.09480000" + }, + { + "id": "133031", + "name": "Mungeli", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.06566000", + "longitude": "81.68543000" + }, + { + "id": "133163", + "name": "Narayanpur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "19.60426000", + "longitude": "81.08119000" + }, + { + "id": "133168", + "name": "Narharpur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.44892000", + "longitude": "81.62004000" + }, + { + "id": "133346", + "name": "Pandaria", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.22495000", + "longitude": "81.40994000" + }, + { + "id": "133375", + "name": "Pasān", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.84412000", + "longitude": "82.19823000" + }, + { + "id": "133379", + "name": "Pathalgaon", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.55656000", + "longitude": "83.46355000" + }, + { + "id": "133540", + "name": "Pāndātarai", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.18714000", + "longitude": "81.32815000" + }, + { + "id": "133552", + "name": "Pātan", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.03333000", + "longitude": "81.53333000" + }, + { + "id": "133405", + "name": "Pendra", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.77548000", + "longitude": "81.95968000" + }, + { + "id": "133463", + "name": "Pithora", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.25021000", + "longitude": "82.51707000" + }, + { + "id": "133587", + "name": "Raigarh", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.08582000", + "longitude": "83.30603000" + }, + { + "id": "133590", + "name": "Raipur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.25621000", + "longitude": "81.69022000" + }, + { + "id": "133616", + "name": "Ratanpur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.28660000", + "longitude": "82.16823000" + }, + { + "id": "133668", + "name": "Rāj Nāndgaon", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.16667000", + "longitude": "81.00000000" + }, + { + "id": "133669", + "name": "Rāj-Nāndgaon", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.09687000", + "longitude": "81.02890000" + }, + { + "id": "133711", + "name": "Rāmānuj Ganj", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "23.80637000", + "longitude": "83.69981000" + }, + { + "id": "133761", + "name": "Saktī", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.02662000", + "longitude": "82.96091000" + }, + { + "id": "133801", + "name": "Saraipali", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.31530000", + "longitude": "83.00629000" + }, + { + "id": "134077", + "name": "Sārangarh", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.58614000", + "longitude": "83.07850000" + }, + { + "id": "133845", + "name": "Seorīnārāyan", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.72055000", + "longitude": "82.59344000" + }, + { + "id": "133940", + "name": "Simga", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "21.62810000", + "longitude": "81.70376000" + }, + { + "id": "134051", + "name": "Surguja", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.89624000", + "longitude": "83.09631000" + }, + { + "id": "134099", + "name": "Takhatpur", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "22.12915000", + "longitude": "81.86959000" + }, + { + "id": "134273", + "name": "Umarkot", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "19.66529000", + "longitude": "82.20629000" + }, + { + "id": "134299", + "name": "Uttar Bastar Kanker", + "state_id": 4040, + "state_code": "CT", + "country_id": 101, + "country_code": "IN", + "latitude": "20.20000000", + "longitude": "81.10000000" + }, + { + "id": "134459", + "name": "Āmli", + "state_id": 4032, + "state_code": "DN", + "country_id": 101, + "country_code": "IN", + "latitude": "20.28333000", + "longitude": "73.01667000" + }, + { + "id": "131639", + "name": "Dadra", + "state_id": 4032, + "state_code": "DN", + "country_id": 101, + "country_code": "IN", + "latitude": "20.32504000", + "longitude": "72.96618000" + }, + { + "id": "131640", + "name": "Dadra & Nagar Haveli", + "state_id": 4032, + "state_code": "DN", + "country_id": 101, + "country_code": "IN", + "latitude": "20.20651000", + "longitude": "73.00811000" + }, + { + "id": "133937", + "name": "Silvassa", + "state_id": 4032, + "state_code": "DN", + "country_id": 101, + "country_code": "IN", + "latitude": "20.27386000", + "longitude": "72.99673000" + }, + { + "id": "131649", + "name": "Daman", + "state_id": 4033, + "state_code": "DD", + "country_id": 101, + "country_code": "IN", + "latitude": "20.41431000", + "longitude": "72.83236000" + }, + { + "id": "131650", + "name": "Daman District", + "state_id": 4033, + "state_code": "DD", + "country_id": 101, + "country_code": "IN", + "latitude": "20.41667000", + "longitude": "72.88333000" + }, + { + "id": "131779", + "name": "Diu", + "state_id": 4033, + "state_code": "DD", + "country_id": 101, + "country_code": "IN", + "latitude": "20.72081000", + "longitude": "70.93989000" + }, + { + "id": "57655", + "name": "Alīpur", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.79862000", + "longitude": "77.13314000" + }, + { + "id": "57909", + "name": "Bawāna", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.79820000", + "longitude": "77.03431000" + }, + { + "id": "58171", + "name": "Central Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.64857000", + "longitude": "77.21895000" + }, + { + "id": "131679", + "name": "Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.65195000", + "longitude": "77.23149000" + }, + { + "id": "131687", + "name": "Deoli", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.50254000", + "longitude": "77.23117000" + }, + { + "id": "131821", + "name": "East Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.66242000", + "longitude": "77.29122000" + }, + { + "id": "132406", + "name": "Karol Bāgh", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.65136000", + "longitude": "77.19072000" + }, + { + "id": "133126", + "name": "Najafgarh", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.60922000", + "longitude": "76.97982000" + }, + { + "id": "133165", + "name": "Narela", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.85267000", + "longitude": "77.09288000" + }, + { + "id": "133269", + "name": "Nāngloi Jāt", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.67957000", + "longitude": "77.06799000" + }, + { + "id": "133210", + "name": "New Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.63576000", + "longitude": "77.22445000" + }, + { + "id": "133234", + "name": "North Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.66920000", + "longitude": "77.22273000" + }, + { + "id": "133236", + "name": "North East Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.68690000", + "longitude": "77.30195000" + }, + { + "id": "133243", + "name": "North West Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.70113000", + "longitude": "77.10154000" + }, + { + "id": "133461", + "name": "Pitampura", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.68964000", + "longitude": "77.13126000" + }, + { + "id": "133645", + "name": "Rohini", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.74322000", + "longitude": "77.06778000" + }, + { + "id": "134007", + "name": "South Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.53009000", + "longitude": "77.25174000" + }, + { + "id": "134012", + "name": "South West Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.58060000", + "longitude": "77.06720000" + }, + { + "id": "134404", + "name": "West Delhi", + "state_id": 4021, + "state_code": "DL", + "country_id": 101, + "country_code": "IN", + "latitude": "28.65655000", + "longitude": "77.10068000" + }, + { + "id": "57638", + "name": "Aldona", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.59337000", + "longitude": "73.87482000" + }, + { + "id": "57727", + "name": "Arambol", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.68681000", + "longitude": "73.70449000" + }, + { + "id": "57795", + "name": "Baga", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.56517000", + "longitude": "73.75517000" + }, + { + "id": "57836", + "name": "Bambolim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.46361000", + "longitude": "73.85310000" + }, + { + "id": "57845", + "name": "Bandora", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.40823000", + "longitude": "73.98129000" + }, + { + "id": "57932", + "name": "Benaulim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.26435000", + "longitude": "73.92812000" + }, + { + "id": "58165", + "name": "Calangute", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.54390000", + "longitude": "73.75530000" + }, + { + "id": "58167", + "name": "Candolim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.51807000", + "longitude": "73.76259000" + }, + { + "id": "58169", + "name": "Carapur", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.56588000", + "longitude": "73.98713000" + }, + { + "id": "58170", + "name": "Cavelossim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.17255000", + "longitude": "73.94194000" + }, + { + "id": "131542", + "name": "Chicalim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.39835000", + "longitude": "73.84216000" + }, + { + "id": "131559", + "name": "Chinchinim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.21447000", + "longitude": "73.97555000" + }, + { + "id": "131622", + "name": "Colovale", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.63522000", + "longitude": "73.82426000" + }, + { + "id": "131623", + "name": "Colva", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.27976000", + "longitude": "73.92285000" + }, + { + "id": "131625", + "name": "Cortalim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.40247000", + "longitude": "73.90881000" + }, + { + "id": "131630", + "name": "Cuncolim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.17730000", + "longitude": "73.99392000" + }, + { + "id": "131631", + "name": "Curchorem", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.26349000", + "longitude": "74.10875000" + }, + { + "id": "131632", + "name": "Curti", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.41667000", + "longitude": "74.01667000" + }, + { + "id": "131672", + "name": "Davorlim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.27221000", + "longitude": "73.99242000" + }, + { + "id": "131764", + "name": "Dicholi", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.59319000", + "longitude": "73.94571000" + }, + { + "id": "131960", + "name": "Goa Velha", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.44384000", + "longitude": "73.88572000" + }, + { + "id": "132015", + "name": "Guirim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.57552000", + "longitude": "73.80722000" + }, + { + "id": "132297", + "name": "Jua", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.53070000", + "longitude": "73.95047000" + }, + { + "id": "132705", + "name": "Kānkon", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.02698000", + "longitude": "74.04617000" + }, + { + "id": "132811", + "name": "Madgaon", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.27501000", + "longitude": "73.95786000" + }, + { + "id": "133086", + "name": "Māpuca", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.59154000", + "longitude": "73.80898000" + }, + { + "id": "132997", + "name": "Morjim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.63097000", + "longitude": "73.73903000" + }, + { + "id": "132998", + "name": "Mormugao", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.38914000", + "longitude": "73.81491000" + }, + { + "id": "133185", + "name": "Navelim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.53333000", + "longitude": "73.98333000" + }, + { + "id": "133238", + "name": "North Goa", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.53397000", + "longitude": "73.96408000" + }, + { + "id": "133330", + "name": "Palle", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.46667000", + "longitude": "74.08333000" + }, + { + "id": "133342", + "name": "Panaji", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.49574000", + "longitude": "73.82624000" + }, + { + "id": "133422", + "name": "Pernem", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.72300000", + "longitude": "73.79511000" + }, + { + "id": "133471", + "name": "Ponda", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.40341000", + "longitude": "74.01519000" + }, + { + "id": "133572", + "name": "Quepem", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.21280000", + "longitude": "74.07720000" + }, + { + "id": "133573", + "name": "Queula", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.39011000", + "longitude": "73.98557000" + }, + { + "id": "133585", + "name": "Raia", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.30499000", + "longitude": "73.97096000" + }, + { + "id": "133764", + "name": "Saligao", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.55359000", + "longitude": "73.79036000" + }, + { + "id": "133777", + "name": "Sancoale", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.37794000", + "longitude": "73.90352000" + }, + { + "id": "133786", + "name": "Sanguem", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.22901000", + "longitude": "74.15149000" + }, + { + "id": "133791", + "name": "Sanquelim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.56422000", + "longitude": "74.00799000" + }, + { + "id": "133795", + "name": "Sanvordem", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.26269000", + "longitude": "74.11965000" + }, + { + "id": "133850", + "name": "Serula", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.54774000", + "longitude": "73.84329000" + }, + { + "id": "133987", + "name": "Solim", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.61521000", + "longitude": "73.76740000" + }, + { + "id": "134010", + "name": "South Goa", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.20425000", + "longitude": "74.16733000" + }, + { + "id": "134101", + "name": "Taleigao", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.46915000", + "longitude": "73.83285000" + }, + { + "id": "134311", + "name": "Vagator", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.59766000", + "longitude": "73.74496000" + }, + { + "id": "134321", + "name": "Valpoy", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.53239000", + "longitude": "74.13671000" + }, + { + "id": "134329", + "name": "Varca", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.23237000", + "longitude": "73.94311000" + }, + { + "id": "134333", + "name": "Vasco da Gama", + "state_id": 4009, + "state_code": "GA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.39585000", + "longitude": "73.81568000" + }, + { + "id": "57588", + "name": "Abrama", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.85865000", + "longitude": "72.90648000" + }, + { + "id": "57591", + "name": "Adalaj", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.16453000", + "longitude": "72.58107000" + }, + { + "id": "57605", + "name": "Ahmadābād", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.03000000", + "longitude": "72.58000000" + }, + { + "id": "57606", + "name": "Ahmedabad", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.02579000", + "longitude": "72.58727000" + }, + { + "id": "57608", + "name": "Ahwa", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.75718000", + "longitude": "73.68626000" + }, + { + "id": "57683", + "name": "Amod", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.99317000", + "longitude": "72.87047000" + }, + { + "id": "57685", + "name": "Amreli", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.50789000", + "longitude": "71.18323000" + }, + { + "id": "57688", + "name": "Amroli", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.25084000", + "longitude": "72.83878000" + }, + { + "id": "57695", + "name": "Anand", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.40000000", + "longitude": "72.75000000" + }, + { + "id": "57709", + "name": "Anjār", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.11316000", + "longitude": "70.02671000" + }, + { + "id": "57710", + "name": "Ankleshwar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.63236000", + "longitude": "72.99001000" + }, + { + "id": "57799", + "name": "Bagasra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.48719000", + "longitude": "70.95516000" + }, + { + "id": "57858", + "name": "Banās Kāntha", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.25000000", + "longitude": "72.50000000" + }, + { + "id": "58104", + "name": "Bābra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.84577000", + "longitude": "71.30544000" + }, + { + "id": "58135", + "name": "Bāntva", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.48815000", + "longitude": "70.07576000" + }, + { + "id": "58140", + "name": "Bārdoli", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.12297000", + "longitude": "73.11151000" + }, + { + "id": "57911", + "name": "Bedi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.50143000", + "longitude": "70.04363000" + }, + { + "id": "57948", + "name": "Bhachāu", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.29858000", + "longitude": "70.34279000" + }, + { + "id": "57967", + "name": "Bharūch", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.69482000", + "longitude": "72.98050000" + }, + { + "id": "57972", + "name": "Bhavnagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.76287000", + "longitude": "72.15331000" + }, + { + "id": "58014", + "name": "Bhānvad", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.93053000", + "longitude": "69.78081000" + }, + { + "id": "58016", + "name": "Bhāvnagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.66667000", + "longitude": "71.83333000" + }, + { + "id": "58017", + "name": "Bhāyāvadar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.85523000", + "longitude": "70.24791000" + }, + { + "id": "58002", + "name": "Bhuj", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.25397000", + "longitude": "69.66928000" + }, + { + "id": "58045", + "name": "Bilimora", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.76957000", + "longitude": "72.96134000" + }, + { + "id": "58046", + "name": "Bilkha", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.44150000", + "longitude": "70.60063000" + }, + { + "id": "58084", + "name": "Borsad", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.40788000", + "longitude": "72.89817000" + }, + { + "id": "58085", + "name": "Botād", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.16917000", + "longitude": "71.66671000" + }, + { + "id": "58174", + "name": "Chaklāsi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.65320000", + "longitude": "72.94497000" + }, + { + "id": "58180", + "name": "Chalāla", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.41073000", + "longitude": "71.16621000" + }, + { + "id": "131595", + "name": "Chānasma", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.71472000", + "longitude": "72.11279000" + }, + { + "id": "131529", + "name": "Chhala", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.30779000", + "longitude": "72.77404000" + }, + { + "id": "131535", + "name": "Chhota Udepur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.30401000", + "longitude": "74.01580000" + }, + { + "id": "131548", + "name": "Chikhli", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.75751000", + "longitude": "73.06268000" + }, + { + "id": "131582", + "name": "Chotila", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.42347000", + "longitude": "71.19641000" + }, + { + "id": "131635", + "name": "Dabhoi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.18333000", + "longitude": "73.43333000" + }, + { + "id": "131642", + "name": "Dahegām", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.16903000", + "longitude": "72.82161000" + }, + { + "id": "131673", + "name": "Dayapar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.63371000", + "longitude": "68.90192000" + }, + { + "id": "131808", + "name": "Dākor", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.75268000", + "longitude": "73.14967000" + }, + { + "id": "131809", + "name": "Dāmnagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.69232000", + "longitude": "71.51747000" + }, + { + "id": "131817", + "name": "Dīsa", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.25612000", + "longitude": "72.17928000" + }, + { + "id": "131680", + "name": "Delvāda", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.77544000", + "longitude": "71.04646000" + }, + { + "id": "131704", + "name": "Devbhumi Dwarka", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.20253000", + "longitude": "69.65498000" + }, + { + "id": "131705", + "name": "Devgadh Bāriya", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.70517000", + "longitude": "73.90882000" + }, + { + "id": "131716", + "name": "Dhandhuka", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.38185000", + "longitude": "71.98664000" + }, + { + "id": "131717", + "name": "Dhanera", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.50967000", + "longitude": "72.02343000" + }, + { + "id": "131719", + "name": "Dharampur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.53693000", + "longitude": "73.17368000" + }, + { + "id": "131755", + "name": "Dhāri", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.32855000", + "longitude": "71.02645000" + }, + { + "id": "131738", + "name": "Dhola", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.88129000", + "longitude": "71.77269000" + }, + { + "id": "131739", + "name": "Dholka", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.72732000", + "longitude": "72.44128000" + }, + { + "id": "131741", + "name": "Dhorāji", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.73359000", + "longitude": "70.45004000" + }, + { + "id": "131743", + "name": "Dhrāngadhra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.99167000", + "longitude": "71.46793000" + }, + { + "id": "131742", + "name": "Dhrol", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.56700000", + "longitude": "70.41769000" + }, + { + "id": "131747", + "name": "Dhuwaran", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.23779000", + "longitude": "72.75910000" + }, + { + "id": "131782", + "name": "Dohad", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.90000000", + "longitude": "74.00000000" + }, + { + "id": "131800", + "name": "Dungarpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.28777000", + "longitude": "71.75560000" + }, + { + "id": "131803", + "name": "Dwārka", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.23944000", + "longitude": "68.96778000" + }, + { + "id": "131888", + "name": "Gadhada", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.96957000", + "longitude": "71.57828000" + }, + { + "id": "131899", + "name": "Gandevi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.81214000", + "longitude": "72.99811000" + }, + { + "id": "131900", + "name": "Gandhinagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.21667000", + "longitude": "72.68333000" + }, + { + "id": "131925", + "name": "Gariadhar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.53889000", + "longitude": "71.57737000" + }, + { + "id": "132046", + "name": "Gāndhīdhām", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.08333000", + "longitude": "70.13333000" + }, + { + "id": "132047", + "name": "Gāndhīnagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.21484000", + "longitude": "72.64984000" + }, + { + "id": "131944", + "name": "Ghogha", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.68813000", + "longitude": "72.27630000" + }, + { + "id": "131958", + "name": "Gir Somnath", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.91287000", + "longitude": "70.36710000" + }, + { + "id": "131964", + "name": "Godhra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.77547000", + "longitude": "73.61488000" + }, + { + "id": "131982", + "name": "Gondal", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.96074000", + "longitude": "70.80255000" + }, + { + "id": "132060", + "name": "Halvad", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.01516000", + "longitude": "71.18029000" + }, + { + "id": "132065", + "name": "Hansot", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.58496000", + "longitude": "72.80764000" + }, + { + "id": "132139", + "name": "Hālol", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.50321000", + "longitude": "73.47242000" + }, + { + "id": "132143", + "name": "Hārij", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.69356000", + "longitude": "71.90700000" + }, + { + "id": "132096", + "name": "Himatnagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.59893000", + "longitude": "72.96602000" + }, + { + "id": "132219", + "name": "Jalālpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.94896000", + "longitude": "72.89829000" + }, + { + "id": "132226", + "name": "Jambusar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.05236000", + "longitude": "72.80074000" + }, + { + "id": "132230", + "name": "Jamnagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.47292000", + "longitude": "70.06673000" + }, + { + "id": "132243", + "name": "Jasdan", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.03709000", + "longitude": "71.20794000" + }, + { + "id": "132310", + "name": "Jāmnagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.25000000", + "longitude": "70.00000000" + }, + { + "id": "132317", + "name": "Jūnāgadh", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.25000000", + "longitude": "70.33333000" + }, + { + "id": "132261", + "name": "Jetalsar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.70891000", + "longitude": "70.57695000" + }, + { + "id": "132262", + "name": "Jetpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.75482000", + "longitude": "70.62347000" + }, + { + "id": "132272", + "name": "Jhulasan", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.32860000", + "longitude": "72.47314000" + }, + { + "id": "132285", + "name": "Jodhpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.90174000", + "longitude": "70.03270000" + }, + { + "id": "132287", + "name": "Jodiya Bandar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.71667000", + "longitude": "70.28333000" + }, + { + "id": "132321", + "name": "Kachchh", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.58333000", + "longitude": "70.00000000" + }, + { + "id": "132327", + "name": "Kadi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.29908000", + "longitude": "72.33362000" + }, + { + "id": "132329", + "name": "Kadod", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.21717000", + "longitude": "73.21972000" + }, + { + "id": "132390", + "name": "Kapadvanj", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.02302000", + "longitude": "73.07113000" + }, + { + "id": "132394", + "name": "Karamsad", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.54243000", + "longitude": "72.90392000" + }, + { + "id": "132425", + "name": "Katpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.05869000", + "longitude": "71.79457000" + }, + { + "id": "132434", + "name": "Kawānt", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.09282000", + "longitude": "74.05078000" + }, + { + "id": "132689", + "name": "Kālāvad", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.20789000", + "longitude": "70.38343000" + }, + { + "id": "132682", + "name": "Kālol", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.60777000", + "longitude": "73.46272000" + }, + { + "id": "132698", + "name": "Kāndla", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.03333000", + "longitude": "70.21667000" + }, + { + "id": "132708", + "name": "Kānodar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.08932000", + "longitude": "72.39354000" + }, + { + "id": "132723", + "name": "Kāthor", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.28854000", + "longitude": "72.94070000" + }, + { + "id": "132446", + "name": "Keshod", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.30328000", + "longitude": "70.24861000" + }, + { + "id": "132461", + "name": "Khambhāliya", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.20685000", + "longitude": "69.65031000" + }, + { + "id": "132462", + "name": "Khambhāt", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.31744000", + "longitude": "72.61916000" + }, + { + "id": "132488", + "name": "Kheda", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.75000000", + "longitude": "72.83333000" + }, + { + "id": "132489", + "name": "Khedbrahma", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.02990000", + "longitude": "73.04632000" + }, + { + "id": "132494", + "name": "Kherālu", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.88534000", + "longitude": "72.61869000" + }, + { + "id": "132547", + "name": "Kodīnar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.79393000", + "longitude": "70.70216000" + }, + { + "id": "132588", + "name": "Kosamba", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.46202000", + "longitude": "72.95842000" + }, + { + "id": "132647", + "name": "Kundla", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.34222000", + "longitude": "71.30633000" + }, + { + "id": "132670", + "name": "Kutiyāna", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.62410000", + "longitude": "69.98494000" + }, + { + "id": "132747", + "name": "Lakhtar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.85683000", + "longitude": "71.78844000" + }, + { + "id": "132797", + "name": "Lālpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.19073000", + "longitude": "69.96351000" + }, + { + "id": "132802", + "name": "Lāthi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.72310000", + "longitude": "71.38843000" + }, + { + "id": "132804", + "name": "Lūnāvāda", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.12841000", + "longitude": "73.61043000" + }, + { + "id": "132764", + "name": "Limbdi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.56507000", + "longitude": "71.81076000" + }, + { + "id": "132831", + "name": "Mahemdāvād", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.82359000", + "longitude": "72.75551000" + }, + { + "id": "132834", + "name": "Mahesāna", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.66667000", + "longitude": "72.50000000" + }, + { + "id": "132841", + "name": "Mahudha", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.82082000", + "longitude": "72.94032000" + }, + { + "id": "133068", + "name": "Mālpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.36035000", + "longitude": "73.46595000" + }, + { + "id": "133085", + "name": "Mānāvadar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.49813000", + "longitude": "70.13775000" + }, + { + "id": "133073", + "name": "Māndal", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.28865000", + "longitude": "71.91854000" + }, + { + "id": "133076", + "name": "Māndvi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.83282000", + "longitude": "69.35237000" + }, + { + "id": "133077", + "name": "Māngrol", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.12268000", + "longitude": "70.11484000" + }, + { + "id": "133081", + "name": "Mānsa", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.42564000", + "longitude": "72.65739000" + }, + { + "id": "132960", + "name": "Meghraj", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.49805000", + "longitude": "73.51352000" + }, + { + "id": "132966", + "name": "Mendarda", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.32112000", + "longitude": "70.44078000" + }, + { + "id": "132978", + "name": "Modāsa", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.46253000", + "longitude": "73.29857000" + }, + { + "id": "132993", + "name": "Morbi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.81731000", + "longitude": "70.83770000" + }, + { + "id": "133000", + "name": "Morwa", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.90469000", + "longitude": "73.83912000" + }, + { + "id": "133029", + "name": "Mundra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.83918000", + "longitude": "69.72190000" + }, + { + "id": "133106", + "name": "Nadiād", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.69385000", + "longitude": "72.86157000" + }, + { + "id": "133133", + "name": "Naliya", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.26058000", + "longitude": "68.82655000" + }, + { + "id": "133169", + "name": "Narmada", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.87377000", + "longitude": "73.49527000" + }, + { + "id": "133170", + "name": "Naroda", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.07041000", + "longitude": "72.65702000" + }, + { + "id": "133187", + "name": "Navsari", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.95000000", + "longitude": "72.92000000" + }, + { + "id": "133188", + "name": "Navsāri", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.94237000", + "longitude": "72.92467000" + }, + { + "id": "133297", + "name": "Okha", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.46756000", + "longitude": "69.07002000" + }, + { + "id": "133298", + "name": "Olpād", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.33649000", + "longitude": "72.75161000" + }, + { + "id": "133313", + "name": "Paddhari", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.43654000", + "longitude": "70.60162000" + }, + { + "id": "133315", + "name": "Padra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.23980000", + "longitude": "73.08451000" + }, + { + "id": "133362", + "name": "Parnera", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.56101000", + "longitude": "72.94846000" + }, + { + "id": "133376", + "name": "Patan", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.70000000", + "longitude": "71.80000000" + }, + { + "id": "133526", + "name": "Pālanpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.17128000", + "longitude": "72.43827000" + }, + { + "id": "133532", + "name": "Pālitāna", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.52519000", + "longitude": "71.82309000" + }, + { + "id": "133533", + "name": "Pāliyād", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.25757000", + "longitude": "71.56024000" + }, + { + "id": "133536", + "name": "Pānch Mahāls", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.75000000", + "longitude": "73.60000000" + }, + { + "id": "133548", + "name": "Pārdi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.50870000", + "longitude": "72.94569000" + }, + { + "id": "133553", + "name": "Pātan", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.85070000", + "longitude": "72.12963000" + }, + { + "id": "133429", + "name": "Petlād", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.47681000", + "longitude": "72.79995000" + }, + { + "id": "133480", + "name": "Porbandar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.64219000", + "longitude": "69.60929000" + }, + { + "id": "133657", + "name": "Rādhanpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.83238000", + "longitude": "71.60470000" + }, + { + "id": "133679", + "name": "Rājkot", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.33333000", + "longitude": "70.83333000" + }, + { + "id": "133682", + "name": "Rājpīpla", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.86667000", + "longitude": "73.50000000" + }, + { + "id": "133684", + "name": "Rājula", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.03854000", + "longitude": "71.44345000" + }, + { + "id": "133718", + "name": "Rānāvāv", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.68734000", + "longitude": "69.74485000" + }, + { + "id": "133722", + "name": "Rāpar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.57267000", + "longitude": "70.64718000" + }, + { + "id": "133643", + "name": "Roha", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.19646000", + "longitude": "69.27076000" + }, + { + "id": "133739", + "name": "Sabar Kāntha", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.62974000", + "longitude": "73.00197000" + }, + { + "id": "133742", + "name": "Sachīn", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.08718000", + "longitude": "72.88153000" + }, + { + "id": "133766", + "name": "Salāya", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.31038000", + "longitude": "69.60376000" + }, + { + "id": "133790", + "name": "Sankheda", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.17021000", + "longitude": "73.57820000" + }, + { + "id": "133808", + "name": "Sarkhej", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.98297000", + "longitude": "72.50196000" + }, + { + "id": "133831", + "name": "Savarkundla", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.33726000", + "longitude": "71.30350000" + }, + { + "id": "134069", + "name": "Sānand", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.99227000", + "longitude": "72.38177000" + }, + { + "id": "134085", + "name": "Sāyla", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.54925000", + "longitude": "71.48324000" + }, + { + "id": "134096", + "name": "Sūrat", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.17801000", + "longitude": "72.81189000" + }, + { + "id": "133900", + "name": "Shāhpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.15611000", + "longitude": "70.77068000" + }, + { + "id": "133882", + "name": "Shivrājpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.42319000", + "longitude": "73.60865000" + }, + { + "id": "133917", + "name": "Siddhapur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.91783000", + "longitude": "72.37212000" + }, + { + "id": "133925", + "name": "Sihor", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.71134000", + "longitude": "71.96179000" + }, + { + "id": "133932", + "name": "Sikka", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.43218000", + "longitude": "69.84158000" + }, + { + "id": "133954", + "name": "Sinor", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.91117000", + "longitude": "73.33974000" + }, + { + "id": "133984", + "name": "Sojītra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.53884000", + "longitude": "72.71984000" + }, + { + "id": "133995", + "name": "Songadh", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.16966000", + "longitude": "73.56357000" + }, + { + "id": "134050", + "name": "Surendranagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.72706000", + "longitude": "71.64856000" + }, + { + "id": "134107", + "name": "Talāja", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.35270000", + "longitude": "72.03524000" + }, + { + "id": "134112", + "name": "Tankāra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.65622000", + "longitude": "70.74945000" + }, + { + "id": "134114", + "name": "Tapi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.12000000", + "longitude": "73.40000000" + }, + { + "id": "134144", + "name": "Tharād", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.39597000", + "longitude": "71.62577000" + }, + { + "id": "134164", + "name": "Thān", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.57422000", + "longitude": "71.19942000" + }, + { + "id": "134168", + "name": "Thāsra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.79831000", + "longitude": "73.21174000" + }, + { + "id": "134145", + "name": "The Dāngs", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.75000000", + "longitude": "73.75000000" + }, + { + "id": "134277", + "name": "Umrāla", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.84353000", + "longitude": "71.80305000" + }, + { + "id": "134275", + "name": "Umreth", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.69881000", + "longitude": "73.11561000" + }, + { + "id": "134278", + "name": "Un", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.88745000", + "longitude": "71.76975000" + }, + { + "id": "134280", + "name": "Una", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.82318000", + "longitude": "71.03795000" + }, + { + "id": "134284", + "name": "Unjha", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.80366000", + "longitude": "72.39101000" + }, + { + "id": "134286", + "name": "Upleta", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.74015000", + "longitude": "70.28256000" + }, + { + "id": "134297", + "name": "Utrān", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.23333000", + "longitude": "72.86667000" + }, + { + "id": "134309", + "name": "Vadnagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.78593000", + "longitude": "72.63893000" + }, + { + "id": "134310", + "name": "Vadodara", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.29941000", + "longitude": "73.20812000" + }, + { + "id": "134315", + "name": "Valabhīpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.88868000", + "longitude": "71.87935000" + }, + { + "id": "134318", + "name": "Vallabh Vidyanagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.53333000", + "longitude": "72.90000000" + }, + { + "id": "134322", + "name": "Valsād", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.50000000", + "longitude": "73.08333000" + }, + { + "id": "134326", + "name": "Vapi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.37175000", + "longitude": "72.90493000" + }, + { + "id": "134331", + "name": "Vartej", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.73947000", + "longitude": "72.06553000" + }, + { + "id": "134332", + "name": "Vasa", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.66079000", + "longitude": "72.75519000" + }, + { + "id": "134381", + "name": "Vāghodia", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.30505000", + "longitude": "73.40016000" + }, + { + "id": "134382", + "name": "Vānsada", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.75817000", + "longitude": "73.36389000" + }, + { + "id": "134387", + "name": "Vīsāvadar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.33954000", + "longitude": "70.74966000" + }, + { + "id": "134339", + "name": "Vejalpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.69021000", + "longitude": "73.56299000" + }, + { + "id": "134349", + "name": "Verāval", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.90770000", + "longitude": "70.36786000" + }, + { + "id": "134357", + "name": "Vijāpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.56230000", + "longitude": "72.74848000" + }, + { + "id": "134363", + "name": "Vinchia", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.21027000", + "longitude": "71.37967000" + }, + { + "id": "134365", + "name": "Virpur", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.18920000", + "longitude": "73.47987000" + }, + { + "id": "134371", + "name": "Visnagar", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.69855000", + "longitude": "72.55210000" + }, + { + "id": "134378", + "name": "Vyāra", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "21.11079000", + "longitude": "73.39365000" + }, + { + "id": "134389", + "name": "Waghāi", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "20.77048000", + "longitude": "73.50074000" + }, + { + "id": "134416", + "name": "Wānkāner", + "state_id": 4030, + "state_code": "GJ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.61198000", + "longitude": "70.94379000" + }, + { + "id": "57675", + "name": "Ambāla", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.32854000", + "longitude": "76.94220000" + }, + { + "id": "57756", + "name": "Ateli Mandi", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.10080000", + "longitude": "76.25980000" + }, + { + "id": "134464", + "name": "Āsandh", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.52119000", + "longitude": "76.60552000" + }, + { + "id": "57810", + "name": "Bahādurgarh", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.69287000", + "longitude": "76.93555000" + }, + { + "id": "57861", + "name": "Bara Uchāna", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.46747000", + "longitude": "76.17798000" + }, + { + "id": "57890", + "name": "Barwāla", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.36747000", + "longitude": "75.90809000" + }, + { + "id": "58152", + "name": "Bāwal", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.07184000", + "longitude": "76.58312000" + }, + { + "id": "58164", + "name": "Būriya", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.15911000", + "longitude": "77.35814000" + }, + { + "id": "57937", + "name": "Beri Khās", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.70146000", + "longitude": "76.57708000" + }, + { + "id": "57988", + "name": "Bhiwani", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.75000000", + "longitude": "76.16667000" + }, + { + "id": "57989", + "name": "Bhiwāni", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.79304000", + "longitude": "76.13968000" + }, + { + "id": "58054", + "name": "Bilāspur", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.30450000", + "longitude": "77.30424000" + }, + { + "id": "58200", + "name": "Charkhi Dādri", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.59166000", + "longitude": "76.27161000" + }, + { + "id": "131528", + "name": "Chhachhrauli", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.24492000", + "longitude": "77.36027000" + }, + { + "id": "131638", + "name": "Dabwāli", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.94906000", + "longitude": "74.73832000" + }, + { + "id": "131757", + "name": "Dhāruhera", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.20553000", + "longitude": "76.79691000" + }, + { + "id": "131831", + "name": "Ellenabad", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.45282000", + "longitude": "74.66122000" + }, + { + "id": "131853", + "name": "Faridabad", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.41124000", + "longitude": "77.31316000" + }, + { + "id": "131854", + "name": "Faridabad District", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.46292000", + "longitude": "77.37160000" + }, + { + "id": "131856", + "name": "Farrukhnagar", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.44745000", + "longitude": "76.82391000" + }, + { + "id": "131862", + "name": "Fatehabad District", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.31000000", + "longitude": "75.27000000" + }, + { + "id": "131872", + "name": "Fatehābād", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.51525000", + "longitude": "75.45554000" + }, + { + "id": "131882", + "name": "Fīrozpur Jhirka", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.78853000", + "longitude": "76.94496000" + }, + { + "id": "131937", + "name": "Gharaunda", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.53692000", + "longitude": "76.97142000" + }, + { + "id": "131968", + "name": "Gohāna", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.13777000", + "longitude": "76.70247000" + }, + { + "id": "131991", + "name": "Gorakhpur", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.44768000", + "longitude": "75.67206000" + }, + { + "id": "132032", + "name": "Gurgaon", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.43891000", + "longitude": "77.00592000" + }, + { + "id": "132084", + "name": "Hasanpur", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.96944000", + "longitude": "77.49544000" + }, + { + "id": "132141", + "name": "Hānsi", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.10239000", + "longitude": "75.96253000" + }, + { + "id": "132106", + "name": "Hisar", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.15394000", + "longitude": "75.72294000" + }, + { + "id": "132108", + "name": "Hisār", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.16667000", + "longitude": "75.75000000" + }, + { + "id": "132109", + "name": "Hodal", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.89196000", + "longitude": "77.36744000" + }, + { + "id": "132163", + "name": "Inda Chhoi", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.64042000", + "longitude": "75.79041000" + }, + { + "id": "132167", + "name": "Indri", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.87999000", + "longitude": "77.05972000" + }, + { + "id": "132194", + "name": "Jagādhri", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.16719000", + "longitude": "77.30367000" + }, + { + "id": "132305", + "name": "Jākhal", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.79627000", + "longitude": "75.82392000" + }, + { + "id": "132315", + "name": "Jīnd", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.31577000", + "longitude": "76.31502000" + }, + { + "id": "132266", + "name": "Jhajjar", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.60630000", + "longitude": "76.65650000" + }, + { + "id": "132340", + "name": "Kaithal", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.80153000", + "longitude": "76.39959000" + }, + { + "id": "132360", + "name": "Kalānaur", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.82823000", + "longitude": "76.39550000" + }, + { + "id": "132389", + "name": "Kanīna Khās", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.33093000", + "longitude": "76.31099000" + }, + { + "id": "132405", + "name": "Karnāl", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.66667000", + "longitude": "76.83333000" + }, + { + "id": "132688", + "name": "Kālānwāli", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.83573000", + "longitude": "74.97170000" + }, + { + "id": "132478", + "name": "Kharkhauda", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.87870000", + "longitude": "76.91069000" + }, + { + "id": "132493", + "name": "Kheri Sāmpla", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.77810000", + "longitude": "76.77560000" + }, + { + "id": "132662", + "name": "Kurukshetra", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.00000000", + "longitude": "76.75000000" + }, + { + "id": "132789", + "name": "Lādwa", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.99350000", + "longitude": "77.04563000" + }, + { + "id": "132772", + "name": "Lohāru", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.42993000", + "longitude": "75.80779000" + }, + { + "id": "132825", + "name": "Maham", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.96912000", + "longitude": "76.29495000" + }, + { + "id": "132832", + "name": "Mahendragarh", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.25000000", + "longitude": "76.16667000" + }, + { + "id": "132892", + "name": "Mandholi Kalān", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.70850000", + "longitude": "75.68296000" + }, + { + "id": "133047", + "name": "Mustafābād", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.20220000", + "longitude": "77.14873000" + }, + { + "id": "133176", + "name": "Narāyangarh", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.47798000", + "longitude": "77.12804000" + }, + { + "id": "133175", + "name": "Narwāna", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.59903000", + "longitude": "76.11927000" + }, + { + "id": "133272", + "name": "Nārnaul", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.04444000", + "longitude": "76.10833000" + }, + { + "id": "133273", + "name": "Nārnaund", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.22047000", + "longitude": "76.14278000" + }, + { + "id": "133290", + "name": "Nūh", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.10296000", + "longitude": "77.00144000" + }, + { + "id": "133286", + "name": "Nīlokheri", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.83671000", + "longitude": "76.93191000" + }, + { + "id": "133337", + "name": "Palwal", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.14469000", + "longitude": "77.32546000" + }, + { + "id": "133345", + "name": "Panchkula", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.72883000", + "longitude": "76.94716000" + }, + { + "id": "133350", + "name": "Panipat", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.33259000", + "longitude": "76.92634000" + }, + { + "id": "133378", + "name": "Pataudi", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.32547000", + "longitude": "76.77858000" + }, + { + "id": "133543", + "name": "Pānīpat", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.38747000", + "longitude": "76.96825000" + }, + { + "id": "133568", + "name": "Pūnāhāna", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "27.86371000", + "longitude": "77.20432000" + }, + { + "id": "133567", + "name": "Pūndri", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.76096000", + "longitude": "76.56034000" + }, + { + "id": "133403", + "name": "Pehowa", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.97897000", + "longitude": "76.58249000" + }, + { + "id": "133451", + "name": "Pinjaur", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.79873000", + "longitude": "76.91822000" + }, + { + "id": "133579", + "name": "Radaur", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.02706000", + "longitude": "77.15177000" + }, + { + "id": "133617", + "name": "Ratia", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.69029000", + "longitude": "75.57688000" + }, + { + "id": "133715", + "name": "Rānia", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.52454000", + "longitude": "74.83689000" + }, + { + "id": "133634", + "name": "Rewari District", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.19613000", + "longitude": "76.61607000" + }, + { + "id": "133635", + "name": "Rewāri", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.19900000", + "longitude": "76.61830000" + }, + { + "id": "133647", + "name": "Rohtak", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.83333000", + "longitude": "76.66667000" + }, + { + "id": "133746", + "name": "Safidon", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.40596000", + "longitude": "76.67042000" + }, + { + "id": "133774", + "name": "Samālkha", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.23552000", + "longitude": "77.01273000" + }, + { + "id": "133891", + "name": "Shādīpur Julāna", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.12368000", + "longitude": "76.40516000" + }, + { + "id": "133906", + "name": "Shāhābād", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.16776000", + "longitude": "76.87046000" + }, + { + "id": "133961", + "name": "Sirsa", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.53489000", + "longitude": "75.02898000" + }, + { + "id": "133980", + "name": "Sohna", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.24737000", + "longitude": "77.06544000" + }, + { + "id": "133999", + "name": "Sonīpat", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.00000000", + "longitude": "76.91667000" + }, + { + "id": "134238", + "name": "Tāoru", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.21173000", + "longitude": "76.94984000" + }, + { + "id": "134167", + "name": "Thānesar", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.97323000", + "longitude": "76.83214000" + }, + { + "id": "134206", + "name": "Tohāna", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.71332000", + "longitude": "75.90441000" + }, + { + "id": "134211", + "name": "Toshām", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "28.86993000", + "longitude": "75.91650000" + }, + { + "id": "134265", + "name": "Uklāna", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "29.51124000", + "longitude": "75.87823000" + }, + { + "id": "134422", + "name": "Yamunanagar", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.23644000", + "longitude": "77.30498000" + }, + { + "id": "134423", + "name": "Yamunānagar", + "state_id": 4007, + "state_code": "HR", + "country_id": 101, + "country_code": "IN", + "latitude": "30.12796000", + "longitude": "77.28371000" + }, + { + "id": "57736", + "name": "Arki", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.15196000", + "longitude": "76.96675000" + }, + { + "id": "57789", + "name": "Baddi", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.95783000", + "longitude": "76.79136000" + }, + { + "id": "57853", + "name": "Banjār", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.63900000", + "longitude": "77.34055000" + }, + { + "id": "58041", + "name": "Bilaspur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.33027000", + "longitude": "76.75663000" + }, + { + "id": "58056", + "name": "Bilāspur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.33333000", + "longitude": "76.75000000" + }, + { + "id": "58181", + "name": "Chamba", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.57147000", + "longitude": "76.10229000" + }, + { + "id": "131512", + "name": "Chaupāl", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.94647000", + "longitude": "77.58840000" + }, + { + "id": "131583", + "name": "Chowari", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.43190000", + "longitude": "76.01200000" + }, + { + "id": "131587", + "name": "Chuāri Khās", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.43058000", + "longitude": "76.01428000" + }, + { + "id": "131641", + "name": "Dagshai", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.88431000", + "longitude": "77.05228000" + }, + { + "id": "131645", + "name": "Dalhousie", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.55219000", + "longitude": "75.94663000" + }, + { + "id": "131665", + "name": "Daulatpur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.78871000", + "longitude": "75.99154000" + }, + { + "id": "131694", + "name": "Dera Gopipur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.87919000", + "longitude": "76.21871000" + }, + { + "id": "131721", + "name": "Dharamsala", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.22006000", + "longitude": "76.32013000" + }, + { + "id": "131891", + "name": "Gagret", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.65846000", + "longitude": "76.06144000" + }, + { + "id": "131949", + "name": "Ghumārwīn", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.44166000", + "longitude": "76.71509000" + }, + { + "id": "132063", + "name": "Hamīrpur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.75000000", + "longitude": "76.50000000" + }, + { + "id": "132255", + "name": "Jawāla Mukhi", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.87456000", + "longitude": "76.32013000" + }, + { + "id": "132289", + "name": "Jogindarnagar", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.98727000", + "longitude": "76.78906000" + }, + { + "id": "132298", + "name": "Jubbal", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.10923000", + "longitude": "77.65085000" + }, + { + "id": "132302", + "name": "Jutogh", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.10000000", + "longitude": "77.11667000" + }, + { + "id": "132416", + "name": "Kasauli", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.89856000", + "longitude": "76.96587000" + }, + { + "id": "132681", + "name": "Kālka", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.83982000", + "longitude": "76.94065000" + }, + { + "id": "132701", + "name": "Kāngar", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.09135000", + "longitude": "76.26267000" + }, + { + "id": "132702", + "name": "Kāngra", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.16667000", + "longitude": "76.25000000" + }, + { + "id": "132523", + "name": "Kinnaur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.58333000", + "longitude": "78.41667000" + }, + { + "id": "132601", + "name": "Kotkhai", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.11728000", + "longitude": "77.53936000" + }, + { + "id": "132602", + "name": "Kotla", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.25000000", + "longitude": "76.03333000" + }, + { + "id": "132636", + "name": "Kulu", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.00000000", + "longitude": "77.25000000" + }, + { + "id": "132675", + "name": "Kyelang", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.57170000", + "longitude": "77.02448000" + }, + { + "id": "132791", + "name": "Lāhul and Spiti", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.50000000", + "longitude": "77.83333000" + }, + { + "id": "132929", + "name": "Manāli", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.25740000", + "longitude": "77.17481000" + }, + { + "id": "132893", + "name": "Mandi", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.71194000", + "longitude": "76.93273000" + }, + { + "id": "133113", + "name": "Nagar", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.13808000", + "longitude": "77.17393000" + }, + { + "id": "133118", + "name": "Nagrota", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.05710000", + "longitude": "76.09139000" + }, + { + "id": "133251", + "name": "Nādaun", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.78303000", + "longitude": "76.34310000" + }, + { + "id": "133261", + "name": "Nāhan", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.56029000", + "longitude": "77.29426000" + }, + { + "id": "133263", + "name": "Nālāgarh", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.04168000", + "longitude": "76.72285000" + }, + { + "id": "133369", + "name": "Parwanoo", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.83716000", + "longitude": "76.96143000" + }, + { + "id": "133525", + "name": "Pālampur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.11453000", + "longitude": "76.55681000" + }, + { + "id": "133539", + "name": "Pāndoh", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.66902000", + "longitude": "77.05359000" + }, + { + "id": "133544", + "name": "Pāonta Sāhib", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.43666000", + "longitude": "77.62462000" + }, + { + "id": "133676", + "name": "Rājgarh", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.85142000", + "longitude": "77.30066000" + }, + { + "id": "133706", + "name": "Rāmpur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.44943000", + "longitude": "77.63087000" + }, + { + "id": "133646", + "name": "Rohru", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.20269000", + "longitude": "77.75484000" + }, + { + "id": "133741", + "name": "Sabāthu", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.97494000", + "longitude": "76.99137000" + }, + { + "id": "133794", + "name": "Santokhgarh", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.35205000", + "longitude": "76.31775000" + }, + { + "id": "133811", + "name": "Sarāhan", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.50988000", + "longitude": "77.79395000" + }, + { + "id": "133807", + "name": "Sarka Ghāt", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.69887000", + "longitude": "76.73529000" + }, + { + "id": "133841", + "name": "Seoni", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.24188000", + "longitude": "77.12362000" + }, + { + "id": "133871", + "name": "Shimla", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.16667000", + "longitude": "77.58333000" + }, + { + "id": "133957", + "name": "Sirmaur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.75000000", + "longitude": "77.50000000" + }, + { + "id": "133985", + "name": "Solan", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.08333000", + "longitude": "76.83333000" + }, + { + "id": "134045", + "name": "Sundarnagar", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.53523000", + "longitude": "76.90500000" + }, + { + "id": "134246", + "name": "Tīra Sujānpur", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.83364000", + "longitude": "76.50539000" + }, + { + "id": "134149", + "name": "Theog", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.12155000", + "longitude": "77.35838000" + }, + { + "id": "134279", + "name": "Una", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "31.46493000", + "longitude": "76.26914000" + }, + { + "id": "134435", + "name": "Yol", + "state_id": 4020, + "state_code": "HP", + "country_id": 101, + "country_code": "IN", + "latitude": "32.16423000", + "longitude": "76.19622000" + }, + { + "id": "57622", + "name": "Akhnūr", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.86667000", + "longitude": "74.73333000" + }, + { + "id": "57699", + "name": "Anantnag", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.73068000", + "longitude": "75.15418000" + }, + { + "id": "57700", + "name": "Anantnāg", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.83333000", + "longitude": "75.16667000" + }, + { + "id": "57774", + "name": "Awantipur", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.91978000", + "longitude": "75.01515000" + }, + { + "id": "57790", + "name": "Badgam", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.89001000", + "longitude": "74.66297000" + }, + { + "id": "57843", + "name": "Bandipore", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.50404000", + "longitude": "74.82832000" + }, + { + "id": "57844", + "name": "Bandipura", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.41728000", + "longitude": "74.64308000" + }, + { + "id": "57852", + "name": "Banihāl", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.43647000", + "longitude": "75.19684000" + }, + { + "id": "57905", + "name": "Batoti", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.11826000", + "longitude": "75.30889000" + }, + { + "id": "58139", + "name": "Bāramūla", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.19287000", + "longitude": "74.36920000" + }, + { + "id": "57949", + "name": "Bhadarwāh", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.97941000", + "longitude": "75.71723000" + }, + { + "id": "58033", + "name": "Bijbehara", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.79378000", + "longitude": "75.10700000" + }, + { + "id": "58065", + "name": "Bishnāh", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.61060000", + "longitude": "74.85557000" + }, + { + "id": "131781", + "name": "Doda", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.14916000", + "longitude": "75.54746000" + }, + { + "id": "131898", + "name": "Ganderbal", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.29467000", + "longitude": "75.19996000" + }, + { + "id": "132044", + "name": "Gāndarbal", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.22619000", + "longitude": "74.77478000" + }, + { + "id": "131942", + "name": "Gho Brāhmanān de", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.55590000", + "longitude": "74.95390000" + }, + { + "id": "132135", + "name": "Hājan", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.29895000", + "longitude": "74.61681000" + }, + { + "id": "132105", + "name": "Hirānagar", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.45493000", + "longitude": "75.27187000" + }, + { + "id": "132229", + "name": "Jammu", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.75000000", + "longitude": "74.83333000" + }, + { + "id": "132253", + "name": "Jauriān", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.83255000", + "longitude": "74.57612000" + }, + { + "id": "132399", + "name": "Kargil", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.55765000", + "longitude": "76.12622000" + }, + { + "id": "132422", + "name": "Kathua", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.58333000", + "longitude": "75.50000000" + }, + { + "id": "132427", + "name": "Katra", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.99167000", + "longitude": "74.93195000" + }, + { + "id": "132735", + "name": "Kūd", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.07246000", + "longitude": "75.28727000" + }, + { + "id": "132485", + "name": "Khaur", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.60270000", + "longitude": "74.80918000" + }, + { + "id": "132533", + "name": "Kishtwar", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.52958000", + "longitude": "76.01462000" + }, + { + "id": "132534", + "name": "Kishtwār", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.31346000", + "longitude": "75.76726000" + }, + { + "id": "132633", + "name": "Kulgam", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.64456000", + "longitude": "75.01923000" + }, + { + "id": "132654", + "name": "Kupwara", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.53193000", + "longitude": "74.26605000" + }, + { + "id": "132655", + "name": "Kupwāra", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.03056000", + "longitude": "74.26417000" + }, + { + "id": "132740", + "name": "Ladākh", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.33333000", + "longitude": "77.41667000" + }, + { + "id": "132762", + "name": "Leh", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.16504000", + "longitude": "77.58402000" + }, + { + "id": "133061", + "name": "Māgām", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.09256000", + "longitude": "74.59016000" + }, + { + "id": "133193", + "name": "Nawānshahr", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.76505000", + "longitude": "74.52772000" + }, + { + "id": "133244", + "name": "Norīa", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.52095000", + "longitude": "74.79845000" + }, + { + "id": "133310", + "name": "Padam", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.46659000", + "longitude": "76.88488000" + }, + { + "id": "133317", + "name": "Pahlgām", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.01592000", + "longitude": "75.31899000" + }, + { + "id": "133363", + "name": "Parol", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.34598000", + "longitude": "75.43441000" + }, + { + "id": "133388", + "name": "Pattan", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.16125000", + "longitude": "74.55634000" + }, + { + "id": "133566", + "name": "Pūnch", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.77033000", + "longitude": "74.09254000" + }, + { + "id": "133501", + "name": "Pulwama", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.87405000", + "longitude": "74.89955000" + }, + { + "id": "133503", + "name": "Punch", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.70178000", + "longitude": "74.19916000" + }, + { + "id": "133576", + "name": "Qāzigund", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.63828000", + "longitude": "75.14261000" + }, + { + "id": "133593", + "name": "Rajaori", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.37526000", + "longitude": "74.30920000" + }, + { + "id": "133601", + "name": "Ramban", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.32301000", + "longitude": "75.18610000" + }, + { + "id": "133673", + "name": "Rājauri", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.25000000", + "longitude": "74.25000000" + }, + { + "id": "133694", + "name": "Rāmban", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.24278000", + "longitude": "75.23513000" + }, + { + "id": "133698", + "name": "Rāmgarh", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.40379000", + "longitude": "74.22388000" + }, + { + "id": "133702", + "name": "Rāmnagar", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.80728000", + "longitude": "75.31119000" + }, + { + "id": "133640", + "name": "Riāsi", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.08115000", + "longitude": "74.83242000" + }, + { + "id": "133768", + "name": "Samba", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.57523000", + "longitude": "75.10929000" + }, + { + "id": "134067", + "name": "Sāmba", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "32.56245000", + "longitude": "75.11993000" + }, + { + "id": "133890", + "name": "Shupīyan", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.71723000", + "longitude": "74.83413000" + }, + { + "id": "133889", + "name": "Shupiyan", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.73067000", + "longitude": "74.81869000" + }, + { + "id": "134000", + "name": "Sopur", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.28671000", + "longitude": "74.47228000" + }, + { + "id": "134016", + "name": "Soyībug", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.07677000", + "longitude": "74.70570000" + }, + { + "id": "134028", + "name": "Srīnagar", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.08333000", + "longitude": "74.83333000" + }, + { + "id": "134020", + "name": "Srinagar", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.08565000", + "longitude": "74.80555000" + }, + { + "id": "134043", + "name": "Sumbal", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.23072000", + "longitude": "74.64720000" + }, + { + "id": "134139", + "name": "Thang", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.92740000", + "longitude": "76.79336000" + }, + { + "id": "134141", + "name": "Thanna Mandi", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.54204000", + "longitude": "74.38100000" + }, + { + "id": "134213", + "name": "Trāl", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.92708000", + "longitude": "75.11585000" + }, + { + "id": "134214", + "name": "Tsrār Sharīf", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.86319000", + "longitude": "74.76524000" + }, + { + "id": "134257", + "name": "Udhampur", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "33.00000000", + "longitude": "75.16667000" + }, + { + "id": "134293", + "name": "Uri", + "state_id": 4029, + "state_code": "JK", + "country_id": 101, + "country_code": "IN", + "latitude": "34.08064000", + "longitude": "74.05088000" + }, + { + "id": "57802", + "name": "Bagra", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.73333000", + "longitude": "86.31667000" + }, + { + "id": "57880", + "name": "Barkā Kānā", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.62118000", + "longitude": "85.46748000" + }, + { + "id": "57878", + "name": "Barki Saria", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.17594000", + "longitude": "85.88938000" + }, + { + "id": "57889", + "name": "Barwādih", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.84780000", + "longitude": "84.11049000" + }, + { + "id": "58163", + "name": "Būndu", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.16095000", + "longitude": "85.59007000" + }, + { + "id": "57992", + "name": "Bhojudih", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.63962000", + "longitude": "86.44105000" + }, + { + "id": "58076", + "name": "Bokaro", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.68562000", + "longitude": "85.99026000" + }, + { + "id": "58078", + "name": "Bokāro", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.78707000", + "longitude": "85.95644000" + }, + { + "id": "58175", + "name": "Chakradharpur", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.67611000", + "longitude": "85.62892000" + }, + { + "id": "131511", + "name": "Chatrā", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.20645000", + "longitude": "84.87085000" + }, + { + "id": "131608", + "name": "Chāībāsa", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.55038000", + "longitude": "85.80249000" + }, + { + "id": "131591", + "name": "Chākuliā", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.48301000", + "longitude": "86.71793000" + }, + { + "id": "131598", + "name": "Chāndil", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.95745000", + "longitude": "86.05331000" + }, + { + "id": "131606", + "name": "Chās", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.63556000", + "longitude": "86.16712000" + }, + { + "id": "131570", + "name": "Chiria", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.31093000", + "longitude": "85.27601000" + }, + { + "id": "131648", + "name": "Daltonganj", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.03971000", + "longitude": "84.06580000" + }, + { + "id": "131684", + "name": "Deogarh", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.44382000", + "longitude": "86.72607000" + }, + { + "id": "131715", + "name": "Dhanbād", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.80199000", + "longitude": "86.44324000" + }, + { + "id": "131718", + "name": "Dhanwār", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.41074000", + "longitude": "85.98183000" + }, + { + "id": "131752", + "name": "Dhānbād", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.75000000", + "longitude": "86.41667000" + }, + { + "id": "131794", + "name": "Dugda", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.74516000", + "longitude": "86.17175000" + }, + { + "id": "131797", + "name": "Dumka", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.30000000", + "longitude": "87.25000000" + }, + { + "id": "131922", + "name": "Garhwa", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.07494000", + "longitude": "83.71023000" + }, + { + "id": "132049", + "name": "Gīrīdīh", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.18622000", + "longitude": "86.30875000" + }, + { + "id": "131952", + "name": "Ghātsīla", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.58531000", + "longitude": "86.47682000" + }, + { + "id": "131959", + "name": "Girīdīh", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.25000000", + "longitude": "85.91667000" + }, + { + "id": "131962", + "name": "Gobindpur", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.63393000", + "longitude": "86.07162000" + }, + { + "id": "131963", + "name": "Godda", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.83333000", + "longitude": "87.21667000" + }, + { + "id": "131980", + "name": "Gomoh", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.87355000", + "longitude": "86.15160000" + }, + { + "id": "131986", + "name": "Gopināthpur", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.66301000", + "longitude": "86.07500000" + }, + { + "id": "132006", + "name": "Gua", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.21361000", + "longitude": "85.38774000" + }, + { + "id": "132020", + "name": "Gumia", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.79750000", + "longitude": "85.82523000" + }, + { + "id": "132021", + "name": "Gumla", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.08055000", + "longitude": "84.53834000" + }, + { + "id": "132022", + "name": "Gumlā", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.04268000", + "longitude": "84.54429000" + }, + { + "id": "132092", + "name": "Hazārībāg", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.00000000", + "longitude": "85.25000000" + }, + { + "id": "132091", + "name": "Hazāribāgh", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.99241000", + "longitude": "85.36162000" + }, + { + "id": "132094", + "name": "Hesla", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.06313000", + "longitude": "85.87905000" + }, + { + "id": "132131", + "name": "Husainābād", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.52849000", + "longitude": "84.00000000" + }, + { + "id": "132183", + "name": "Jagannāthpur", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.22115000", + "longitude": "85.63917000" + }, + { + "id": "132231", + "name": "Jamshedpur", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.80278000", + "longitude": "86.18545000" + }, + { + "id": "132232", + "name": "Jamtara", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.00000000", + "longitude": "86.85000000" + }, + { + "id": "132246", + "name": "Jasidih", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.51379000", + "longitude": "86.64576000" + }, + { + "id": "132308", + "name": "Jāmadoba", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.71667000", + "longitude": "86.40000000" + }, + { + "id": "132311", + "name": "Jāmtāra", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.96300000", + "longitude": "86.80285000" + }, + { + "id": "132268", + "name": "Jharia", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.74079000", + "longitude": "86.41456000" + }, + { + "id": "132299", + "name": "Jugsālai", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.77668000", + "longitude": "86.18351000" + }, + { + "id": "132300", + "name": "Jumri Tilaiyā", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.43490000", + "longitude": "85.52951000" + }, + { + "id": "132680", + "name": "Kālikāpur", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.61662000", + "longitude": "86.28810000" + }, + { + "id": "132699", + "name": "Kāndra", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.85170000", + "longitude": "86.05192000" + }, + { + "id": "132703", + "name": "Kānke", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.43478000", + "longitude": "85.32059000" + }, + { + "id": "132727", + "name": "Kātrās", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.79752000", + "longitude": "86.29834000" + }, + { + "id": "132443", + "name": "Kenduadīh", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.77574000", + "longitude": "86.37609000" + }, + { + "id": "132482", + "name": "Kharsāwān", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.79093000", + "longitude": "85.83102000" + }, + { + "id": "132506", + "name": "Khunti", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.07602000", + "longitude": "85.27818000" + }, + { + "id": "132540", + "name": "Kodarmā", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.46753000", + "longitude": "85.59397000" + }, + { + "id": "132630", + "name": "Kuju", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.72536000", + "longitude": "85.51023000" + }, + { + "id": "132758", + "name": "Latehar", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.75000000", + "longitude": "84.40000000" + }, + { + "id": "132801", + "name": "Lātehār", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.74423000", + "longitude": "84.49984000" + }, + { + "id": "132768", + "name": "Lohardaga", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.50000000", + "longitude": "84.60000000" + }, + { + "id": "132771", + "name": "Lohārdagā", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.43305000", + "longitude": "84.67992000" + }, + { + "id": "132816", + "name": "Madhupur", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.27419000", + "longitude": "86.63929000" + }, + { + "id": "132873", + "name": "Malkera", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.78213000", + "longitude": "86.28767000" + }, + { + "id": "132923", + "name": "Manoharpur", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.37456000", + "longitude": "85.19234000" + }, + { + "id": "133015", + "name": "Mugma", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.77015000", + "longitude": "86.72746000" + }, + { + "id": "133044", + "name": "Mushābani", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.51135000", + "longitude": "86.45713000" + }, + { + "id": "133209", + "name": "Neturhāt", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.47457000", + "longitude": "84.26780000" + }, + { + "id": "133223", + "name": "Nirsā", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.78438000", + "longitude": "86.70692000" + }, + { + "id": "133246", + "name": "Noāmundi", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.16094000", + "longitude": "85.50416000" + }, + { + "id": "133320", + "name": "Pakur", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.63925000", + "longitude": "87.84239000" + }, + { + "id": "133339", + "name": "Palāmu", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.91667000", + "longitude": "84.08333000" + }, + { + "id": "133374", + "name": "Pashchim Singhbhūm", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.50000000", + "longitude": "85.50000000" + }, + { + "id": "134446", + "name": "patamda", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.30000000", + "longitude": "85.41667000" + }, + { + "id": "133557", + "name": "Pāthardih", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.66580000", + "longitude": "86.43166000" + }, + { + "id": "133510", + "name": "Purba Singhbhum", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.59238000", + "longitude": "86.48341000" + }, + { + "id": "133604", + "name": "Ramgarh", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.63073000", + "longitude": "85.56057000" + }, + { + "id": "133606", + "name": "Ranchi", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.34316000", + "longitude": "85.30940000" + }, + { + "id": "133697", + "name": "Rāmgarh", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.63030000", + "longitude": "85.52156000" + }, + { + "id": "133713", + "name": "Rānchī", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.33131000", + "longitude": "85.37076000" + }, + { + "id": "133727", + "name": "Rāy", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.68430000", + "longitude": "85.05457000" + }, + { + "id": "133752", + "name": "Sahibganj", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "24.99354000", + "longitude": "87.67333000" + }, + { + "id": "133800", + "name": "Saraikela", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.69963000", + "longitude": "85.93126000" + }, + { + "id": "134062", + "name": "Sāhibganj", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "25.24425000", + "longitude": "87.63481000" + }, + { + "id": "134079", + "name": "Sāruberā", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.81813000", + "longitude": "85.99628000" + }, + { + "id": "133927", + "name": "Sijua", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.77617000", + "longitude": "86.33028000" + }, + { + "id": "133939", + "name": "Simdega", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.61523000", + "longitude": "84.50208000" + }, + { + "id": "133952", + "name": "Sini", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "22.79325000", + "longitude": "85.94543000" + }, + { + "id": "134209", + "name": "Topchānchi", + "state_id": 4025, + "state_code": "JH", + "country_id": 101, + "country_code": "IN", + "latitude": "23.90381000", + "longitude": "86.19792000" + }, + { + "id": "57598", + "name": "Afzalpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.19986000", + "longitude": "76.36018000" + }, + { + "id": "57613", + "name": "Ajjampur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.72794000", + "longitude": "76.00680000" + }, + { + "id": "57632", + "name": "Aland", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.56425000", + "longitude": "76.56854000" + }, + { + "id": "57656", + "name": "Alūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.97805000", + "longitude": "75.99094000" + }, + { + "id": "57644", + "name": "Alnāvar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.42727000", + "longitude": "74.74111000" + }, + { + "id": "57702", + "name": "Anekal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.71110000", + "longitude": "77.69557000" + }, + { + "id": "57711", + "name": "Ankola", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.66049000", + "longitude": "74.30470000" + }, + { + "id": "57713", + "name": "Annigeri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.42513000", + "longitude": "75.43350000" + }, + { + "id": "57735", + "name": "Arkalgūd", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.76171000", + "longitude": "76.06035000" + }, + { + "id": "57740", + "name": "Arsikere", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.31446000", + "longitude": "76.25704000" + }, + { + "id": "57757", + "name": "Athni", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.72613000", + "longitude": "75.06421000" + }, + { + "id": "57768", + "name": "Aurād", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "18.25397000", + "longitude": "77.41761000" + }, + { + "id": "57797", + "name": "Bagalkot", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.18000000", + "longitude": "75.69000000" + }, + { + "id": "57814", + "name": "Bail-Hongal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.81370000", + "longitude": "74.85895000" + }, + { + "id": "57827", + "name": "Ballari", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.15000000", + "longitude": "76.55000000" + }, + { + "id": "57847", + "name": "Bangalore Rural", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.22567000", + "longitude": "77.57501000" + }, + { + "id": "57848", + "name": "Bangalore Urban", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.00000000", + "longitude": "77.58333000" + }, + { + "id": "57851", + "name": "Bangarapet", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.99116000", + "longitude": "78.17804000" + }, + { + "id": "57856", + "name": "Bannūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.33295000", + "longitude": "76.86201000" + }, + { + "id": "57857", + "name": "Bantvāl", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.89050000", + "longitude": "75.03489000" + }, + { + "id": "57893", + "name": "Basavakalyān", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.87445000", + "longitude": "76.94972000" + }, + { + "id": "57894", + "name": "Basavana Bāgevādi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.57278000", + "longitude": "75.97252000" + }, + { + "id": "58105", + "name": "Bādāmi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.91495000", + "longitude": "75.67683000" + }, + { + "id": "58107", + "name": "Bāgepalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.78338000", + "longitude": "77.79667000" + }, + { + "id": "58136", + "name": "Bānāvar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.41029000", + "longitude": "76.16314000" + }, + { + "id": "58154", + "name": "Bīdar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "18.08333000", + "longitude": "77.33333000" + }, + { + "id": "57930", + "name": "Belūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.16558000", + "longitude": "75.86519000" + }, + { + "id": "57922", + "name": "Belgaum", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.33333000", + "longitude": "74.75000000" + }, + { + "id": "57924", + "name": "Bellary", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.14205000", + "longitude": "76.92398000" + }, + { + "id": "57925", + "name": "Bellūru", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.98140000", + "longitude": "76.73308000" + }, + { + "id": "57928", + "name": "Beltangadi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.98333000", + "longitude": "75.30000000" + }, + { + "id": "57933", + "name": "Bengaluru", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.97194000", + "longitude": "77.59369000" + }, + { + "id": "57956", + "name": "Bhadrāvati", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.84846000", + "longitude": "75.70502000" + }, + { + "id": "57970", + "name": "Bhatkal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.98534000", + "longitude": "74.55531000" + }, + { + "id": "58010", + "name": "Bhālki", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "18.04348000", + "longitude": "77.20600000" + }, + { + "id": "58031", + "name": "Bijapur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.82442000", + "longitude": "75.71537000" + }, + { + "id": "58037", + "name": "Bijāpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.66667000", + "longitude": "75.91667000" + }, + { + "id": "58042", + "name": "Bilgi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.34714000", + "longitude": "75.61804000" + }, + { + "id": "58061", + "name": "Birūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.59723000", + "longitude": "75.97167000" + }, + { + "id": "58102", + "name": "Byādgi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.67325000", + "longitude": "75.48680000" + }, + { + "id": "58101", + "name": "Byndoor", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.86667000", + "longitude": "74.63333000" + }, + { + "id": "58166", + "name": "Canacona", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.99590000", + "longitude": "74.05056000" + }, + { + "id": "58178", + "name": "Challakere", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.31800000", + "longitude": "76.65165000" + }, + { + "id": "58185", + "name": "Chamrajnagar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "11.96000000", + "longitude": "77.09000000" + }, + { + "id": "58197", + "name": "Channagiri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.02399000", + "longitude": "75.92577000" + }, + { + "id": "58198", + "name": "Channapatna", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.65143000", + "longitude": "77.20672000" + }, + { + "id": "58199", + "name": "Channarāyapatna", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.90642000", + "longitude": "76.38775000" + }, + { + "id": "131613", + "name": "Chītāpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.12357000", + "longitude": "77.08240000" + }, + { + "id": "131547", + "name": "Chik Ballāpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.43512000", + "longitude": "77.72787000" + }, + { + "id": "131551", + "name": "Chikkaballapur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.55000000", + "longitude": "77.87000000" + }, + { + "id": "131553", + "name": "Chikmagalūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.32231000", + "longitude": "75.77400000" + }, + { + "id": "131552", + "name": "Chikmagalur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.49000000", + "longitude": "75.73000000" + }, + { + "id": "131554", + "name": "Chiknāyakanhalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.41609000", + "longitude": "76.62063000" + }, + { + "id": "131555", + "name": "Chikodi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.42898000", + "longitude": "74.58591000" + }, + { + "id": "131560", + "name": "Chincholi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.46508000", + "longitude": "77.41874000" + }, + { + "id": "131566", + "name": "Chintāmani", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.40051000", + "longitude": "78.05172000" + }, + { + "id": "131571", + "name": "Chitradurga", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.20000000", + "longitude": "76.50000000" + }, + { + "id": "131616", + "name": "Closepet", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.72181000", + "longitude": "77.28149000" + }, + { + "id": "131624", + "name": "Coondapoor", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.63126000", + "longitude": "74.69020000" + }, + { + "id": "131644", + "name": "Dakshina Kannada", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.84000000", + "longitude": "75.29000000" + }, + { + "id": "131652", + "name": "Dandeli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.26667000", + "longitude": "74.61667000" + }, + { + "id": "131670", + "name": "Davanagere", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.43000000", + "longitude": "75.90000000" + }, + { + "id": "131671", + "name": "Davangere", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.46693000", + "longitude": "75.92694000" + }, + { + "id": "131701", + "name": "Devanhalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.24655000", + "longitude": "77.71183000" + }, + { + "id": "131729", + "name": "Dharwad", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.37000000", + "longitude": "75.14000000" + }, + { + "id": "131780", + "name": "Dod Ballāpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.29452000", + "longitude": "77.53777000" + }, + { + "id": "131879", + "name": "French Rocks", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.50094000", + "longitude": "76.67416000" + }, + { + "id": "131884", + "name": "Gadag", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.49835000", + "longitude": "75.65187000" + }, + { + "id": "131885", + "name": "Gadag-Betageri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.41670000", + "longitude": "75.61670000" + }, + { + "id": "131893", + "name": "Gajendragarh", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.73628000", + "longitude": "75.96976000" + }, + { + "id": "131911", + "name": "Gangāwati", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.43130000", + "longitude": "76.52933000" + }, + { + "id": "131904", + "name": "Gangolli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.65024000", + "longitude": "74.67072000" + }, + { + "id": "131970", + "name": "Gokak", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.16901000", + "longitude": "74.82393000" + }, + { + "id": "131971", + "name": "Gokarna", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.55000000", + "longitude": "74.31667000" + }, + { + "id": "131996", + "name": "Gorūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.82297000", + "longitude": "76.06463000" + }, + { + "id": "131995", + "name": "Goribidnūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.61072000", + "longitude": "77.51738000" + }, + { + "id": "132007", + "name": "Gubbi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.31216000", + "longitude": "76.94102000" + }, + { + "id": "132009", + "name": "Gudibanda", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.67099000", + "longitude": "77.70414000" + }, + { + "id": "132016", + "name": "Gulbarga", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.16667000", + "longitude": "77.08333000" + }, + { + "id": "132017", + "name": "Guledagudda", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.05025000", + "longitude": "75.78997000" + }, + { + "id": "132025", + "name": "Gundlupēt", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "11.81004000", + "longitude": "76.69027000" + }, + { + "id": "132034", + "name": "Gurmatkāl", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.86773000", + "longitude": "77.39088000" + }, + { + "id": "132053", + "name": "Hadagalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.02048000", + "longitude": "75.93185000" + }, + { + "id": "132059", + "name": "Haliyal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.32864000", + "longitude": "74.75638000" + }, + { + "id": "132061", + "name": "Hampi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.33520000", + "longitude": "76.46030000" + }, + { + "id": "132076", + "name": "Harihar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.51288000", + "longitude": "75.80716000" + }, + { + "id": "132079", + "name": "Harpanahalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.78766000", + "longitude": "75.98863000" + }, + { + "id": "132086", + "name": "Hassan", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.95000000", + "longitude": "76.08333000" + }, + { + "id": "132089", + "name": "Haveri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.73732000", + "longitude": "75.41062000" + }, + { + "id": "132140", + "name": "Hāngal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.76465000", + "longitude": "75.12460000" + }, + { + "id": "132147", + "name": "Hāveri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.79354000", + "longitude": "75.40448000" + }, + { + "id": "132093", + "name": "Heggadadevankote", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.08809000", + "longitude": "76.32957000" + }, + { + "id": "132103", + "name": "Hirekerūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.45506000", + "longitude": "75.39520000" + }, + { + "id": "132104", + "name": "Hiriyūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.94455000", + "longitude": "76.61723000" + }, + { + "id": "132111", + "name": "Holalkere", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.04295000", + "longitude": "76.18496000" + }, + { + "id": "132112", + "name": "Hole Narsipur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.78635000", + "longitude": "76.24331000" + }, + { + "id": "132113", + "name": "Homnābād", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.77074000", + "longitude": "77.12519000" + }, + { + "id": "132115", + "name": "Honāvar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.28088000", + "longitude": "74.44497000" + }, + { + "id": "132114", + "name": "Honnāli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.23976000", + "longitude": "75.64507000" + }, + { + "id": "132116", + "name": "Hosakote", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.27603000", + "longitude": "77.16827000" + }, + { + "id": "132117", + "name": "Hosanagara", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.91387000", + "longitude": "75.06503000" + }, + { + "id": "132118", + "name": "Hosangadi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.69756000", + "longitude": "74.95427000" + }, + { + "id": "132119", + "name": "Hosdurga", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.79631000", + "longitude": "76.28408000" + }, + { + "id": "132123", + "name": "Hoskote", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.07070000", + "longitude": "77.79814000" + }, + { + "id": "132124", + "name": "Hospet", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.26954000", + "longitude": "76.38710000" + }, + { + "id": "132127", + "name": "Hubli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.34776000", + "longitude": "75.13378000" + }, + { + "id": "132128", + "name": "Hukeri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.23082000", + "longitude": "74.60244000" + }, + { + "id": "132129", + "name": "Hungund", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.06213000", + "longitude": "76.05860000" + }, + { + "id": "132130", + "name": "Hunsūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.30359000", + "longitude": "76.29275000" + }, + { + "id": "132160", + "name": "Ilkal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.95923000", + "longitude": "76.11351000" + }, + { + "id": "132165", + "name": "Indi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.17735000", + "longitude": "75.95260000" + }, + { + "id": "132182", + "name": "Jagalūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.51957000", + "longitude": "76.33915000" + }, + { + "id": "132227", + "name": "Jamkhandi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.50461000", + "longitude": "75.29146000" + }, + { + "id": "132263", + "name": "Jevargi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.01394000", + "longitude": "76.77317000" + }, + { + "id": "132330", + "name": "Kadūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.55285000", + "longitude": "76.01164000" + }, + { + "id": "132351", + "name": "Kalghatgi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.18315000", + "longitude": "74.97099000" + }, + { + "id": "132365", + "name": "Kampli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.40626000", + "longitude": "76.60013000" + }, + { + "id": "132411", + "name": "Karwar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.81361000", + "longitude": "74.12972000" + }, + { + "id": "132431", + "name": "Kavalūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.28829000", + "longitude": "75.94330000" + }, + { + "id": "132706", + "name": "Kānkānhalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.54654000", + "longitude": "77.42005000" + }, + { + "id": "132719", + "name": "Kārkala", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.21428000", + "longitude": "74.99234000" + }, + { + "id": "132736", + "name": "Kūdligi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.90500000", + "longitude": "76.38527000" + }, + { + "id": "132445", + "name": "Kerūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.01384000", + "longitude": "75.54631000" + }, + { + "id": "132516", + "name": "Khānāpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.63969000", + "longitude": "74.50847000" + }, + { + "id": "132537", + "name": "Kodagu", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.41667000", + "longitude": "75.75000000" + }, + { + "id": "132541", + "name": "Kodigenahalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.72136000", + "longitude": "77.38629000" + }, + { + "id": "132542", + "name": "Kodlipet", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.80087000", + "longitude": "75.88662000" + }, + { + "id": "132553", + "name": "Kolar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.13000000", + "longitude": "78.23000000" + }, + { + "id": "132560", + "name": "Kolār", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.13768000", + "longitude": "78.12999000" + }, + { + "id": "132559", + "name": "Kollegāl", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.15449000", + "longitude": "77.11051000" + }, + { + "id": "132563", + "name": "Konanūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.63016000", + "longitude": "76.05037000" + }, + { + "id": "132569", + "name": "Konnūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.20138000", + "longitude": "74.74886000" + }, + { + "id": "132573", + "name": "Koppa", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.53044000", + "longitude": "75.36329000" + }, + { + "id": "132574", + "name": "Koppal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.50000000", + "longitude": "76.20000000" + }, + { + "id": "132579", + "name": "Koratagere", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.52200000", + "longitude": "77.23730000" + }, + { + "id": "132610", + "name": "Kottūru", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.82442000", + "longitude": "76.22005000" + }, + { + "id": "132623", + "name": "Krishnarājpet", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.66621000", + "longitude": "76.48770000" + }, + { + "id": "132628", + "name": "Kudachi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.62784000", + "longitude": "74.85408000" + }, + { + "id": "132642", + "name": "Kumsi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.05455000", + "longitude": "75.39992000" + }, + { + "id": "132643", + "name": "Kumta", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.42853000", + "longitude": "74.41890000" + }, + { + "id": "132646", + "name": "Kundgol", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.25612000", + "longitude": "75.24735000" + }, + { + "id": "132648", + "name": "Kunigal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.02319000", + "longitude": "77.02518000" + }, + { + "id": "132658", + "name": "Kurgunta", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.19321000", + "longitude": "77.35772000" + }, + { + "id": "132668", + "name": "Kushālnagar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.45795000", + "longitude": "75.95904000" + }, + { + "id": "132666", + "name": "Kushtagi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.75623000", + "longitude": "76.19112000" + }, + { + "id": "132752", + "name": "Lakshmeshwar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.12689000", + "longitude": "75.46935000" + }, + { + "id": "132765", + "name": "Lingsugūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.15876000", + "longitude": "76.52174000" + }, + { + "id": "132774", + "name": "Londa", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.46907000", + "longitude": "74.51906000" + }, + { + "id": "132809", + "name": "Maddagiri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.66035000", + "longitude": "77.21239000" + }, + { + "id": "132810", + "name": "Maddūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.58283000", + "longitude": "77.04294000" + }, + { + "id": "132817", + "name": "Madikeri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.42602000", + "longitude": "75.73820000" + }, + { + "id": "132847", + "name": "Mahālingpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.38880000", + "longitude": "75.10873000" + }, + { + "id": "132868", + "name": "Malavalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.38556000", + "longitude": "77.06045000" + }, + { + "id": "132877", + "name": "Malpe", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.34962000", + "longitude": "74.70394000" + }, + { + "id": "132898", + "name": "Mandya", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.52230000", + "longitude": "76.89746000" + }, + { + "id": "132905", + "name": "Mangalore", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.91723000", + "longitude": "74.85603000" + }, + { + "id": "132912", + "name": "Manipal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.35000000", + "longitude": "74.78333000" + }, + { + "id": "133060", + "name": "Māgadi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.95706000", + "longitude": "77.22374000" + }, + { + "id": "133071", + "name": "Mālūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.00322000", + "longitude": "77.93798000" + }, + { + "id": "133083", + "name": "Mānvi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.99126000", + "longitude": "77.05034000" + }, + { + "id": "133093", + "name": "Māyakonda", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.28894000", + "longitude": "76.08305000" + }, + { + "id": "133098", + "name": "Mūdbidri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.06653000", + "longitude": "74.99525000" + }, + { + "id": "133101", + "name": "Mūlki", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.09101000", + "longitude": "74.79353000" + }, + { + "id": "132964", + "name": "Melukote", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.66258000", + "longitude": "76.64861000" + }, + { + "id": "133008", + "name": "Muddebihāl", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.33782000", + "longitude": "76.13173000" + }, + { + "id": "133009", + "name": "Mudgal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.01191000", + "longitude": "76.44203000" + }, + { + "id": "133010", + "name": "Mudgere", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.13353000", + "longitude": "75.64160000" + }, + { + "id": "133011", + "name": "Mudhol", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.33354000", + "longitude": "75.28305000" + }, + { + "id": "133020", + "name": "Mulbāgal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.16352000", + "longitude": "78.39346000" + }, + { + "id": "133021", + "name": "Mulgund", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.28070000", + "longitude": "75.52132000" + }, + { + "id": "133026", + "name": "Mundargi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.20677000", + "longitude": "75.88390000" + }, + { + "id": "133027", + "name": "Mundgod", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.97144000", + "longitude": "75.03658000" + }, + { + "id": "133033", + "name": "Munirābād", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.30928000", + "longitude": "76.33830000" + }, + { + "id": "133041", + "name": "Murudeshwara", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.09430000", + "longitude": "74.48450000" + }, + { + "id": "133053", + "name": "Mysore", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.23000000", + "longitude": "76.42000000" + }, + { + "id": "133151", + "name": "Nanjangūd", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.11764000", + "longitude": "76.68397000" + }, + { + "id": "133159", + "name": "Narasimharājapura", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.61075000", + "longitude": "75.51200000" + }, + { + "id": "133164", + "name": "Naregal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.57316000", + "longitude": "75.80805000" + }, + { + "id": "133167", + "name": "Nargund", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.72299000", + "longitude": "75.38666000" + }, + { + "id": "133184", + "name": "Navalgund", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.55877000", + "longitude": "75.35305000" + }, + { + "id": "133254", + "name": "Nāgamangala", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.81939000", + "longitude": "76.75456000" + }, + { + "id": "133204", + "name": "Nelamangala", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.09978000", + "longitude": "77.39364000" + }, + { + "id": "133249", + "name": "Nyāmti", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.14869000", + "longitude": "75.57641000" + }, + { + "id": "133541", + "name": "Pāngāla", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.25000000", + "longitude": "74.75000000" + }, + { + "id": "133560", + "name": "Pāvugada", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.09953000", + "longitude": "77.28018000" + }, + { + "id": "133458", + "name": "Piriyāpatna", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.33497000", + "longitude": "76.10073000" + }, + { + "id": "133474", + "name": "Ponnampet", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.14473000", + "longitude": "75.94514000" + }, + { + "id": "133518", + "name": "Puttūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.75975000", + "longitude": "75.20169000" + }, + { + "id": "133577", + "name": "Rabkavi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.47567000", + "longitude": "75.11060000" + }, + { + "id": "133586", + "name": "Raichur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.16000000", + "longitude": "76.91000000" + }, + { + "id": "133598", + "name": "Ramanagara", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.65000000", + "longitude": "77.35000000" + }, + { + "id": "133664", + "name": "Rāichūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.20546000", + "longitude": "77.35567000" + }, + { + "id": "133719", + "name": "Rānībennur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.62239000", + "longitude": "75.62951000" + }, + { + "id": "133731", + "name": "Rāybāg", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.49178000", + "longitude": "74.77391000" + }, + { + "id": "133642", + "name": "Robertsonpet", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.95629000", + "longitude": "78.27539000" + }, + { + "id": "133649", + "name": "Ron", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.69935000", + "longitude": "75.73408000" + }, + { + "id": "133743", + "name": "Sadalgi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.55870000", + "longitude": "74.53211000" + }, + { + "id": "133760", + "name": "Sakleshpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.94119000", + "longitude": "75.78467000" + }, + { + "id": "133779", + "name": "Sandūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.08613000", + "longitude": "76.54692000" + }, + { + "id": "133788", + "name": "Sanivārsante", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.72824000", + "longitude": "75.88669000" + }, + { + "id": "133789", + "name": "Sankeshwar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.25649000", + "longitude": "74.48195000" + }, + { + "id": "133806", + "name": "Sargūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "11.99971000", + "longitude": "76.39611000" + }, + { + "id": "133827", + "name": "Saundatti", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.76615000", + "longitude": "75.11778000" + }, + { + "id": "133830", + "name": "Savanūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.97335000", + "longitude": "75.33724000" + }, + { + "id": "134060", + "name": "Sāgar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.16498000", + "longitude": "75.02901000" + }, + { + "id": "134087", + "name": "Sīra", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.74155000", + "longitude": "76.90430000" + }, + { + "id": "133846", + "name": "Seram", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.17859000", + "longitude": "77.28998000" + }, + { + "id": "133907", + "name": "Shāhābād", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.13070000", + "longitude": "76.94361000" + }, + { + "id": "133898", + "name": "Shāhpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.69605000", + "longitude": "76.84220000" + }, + { + "id": "133866", + "name": "Shiggaon", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.99053000", + "longitude": "75.22499000" + }, + { + "id": "133868", + "name": "Shikārpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.26980000", + "longitude": "75.35643000" + }, + { + "id": "133872", + "name": "Shimoga", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.05000000", + "longitude": "75.16000000" + }, + { + "id": "133876", + "name": "Shirhatti", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.23352000", + "longitude": "75.57996000" + }, + { + "id": "133884", + "name": "Shorāpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.52100000", + "longitude": "76.75738000" + }, + { + "id": "133887", + "name": "Shrīrangapattana", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.42264000", + "longitude": "76.68439000" + }, + { + "id": "133920", + "name": "Siddāpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.34322000", + "longitude": "74.89400000" + }, + { + "id": "133924", + "name": "Sidlaghatta", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.38896000", + "longitude": "77.86444000" + }, + { + "id": "133941", + "name": "Sindgi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.91883000", + "longitude": "76.23368000" + }, + { + "id": "133942", + "name": "Sindhnūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.76983000", + "longitude": "76.75581000" + }, + { + "id": "133962", + "name": "Sirsi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.62072000", + "longitude": "74.83554000" + }, + { + "id": "133967", + "name": "Siruguppa", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.63000000", + "longitude": "76.89217000" + }, + { + "id": "133989", + "name": "Someshwar", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.49112000", + "longitude": "75.06646000" + }, + { + "id": "133991", + "name": "Somvārpet", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.59698000", + "longitude": "75.84957000" + }, + { + "id": "134001", + "name": "Sorab", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.38144000", + "longitude": "75.09183000" + }, + { + "id": "134024", + "name": "Srāvana Belgola", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.85737000", + "longitude": "76.48886000" + }, + { + "id": "134029", + "name": "Srīnivāspur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.33914000", + "longitude": "78.21175000" + }, + { + "id": "134021", + "name": "Sringeri", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.41698000", + "longitude": "75.25271000" + }, + { + "id": "134042", + "name": "Sulya", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.56100000", + "longitude": "75.38741000" + }, + { + "id": "134047", + "name": "Suntikoppa", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.45594000", + "longitude": "75.82970000" + }, + { + "id": "134116", + "name": "Tarikere", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.70954000", + "longitude": "75.81382000" + }, + { + "id": "134234", + "name": "Tālīkota", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.47311000", + "longitude": "76.31085000" + }, + { + "id": "134247", + "name": "Tīrthahalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.68835000", + "longitude": "75.24548000" + }, + { + "id": "134125", + "name": "Tekkalakote", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.53444000", + "longitude": "76.87703000" + }, + { + "id": "134133", + "name": "Terdāl", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.49379000", + "longitude": "75.04667000" + }, + { + "id": "134176", + "name": "Tiptūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.25630000", + "longitude": "76.47768000" + }, + { + "id": "134182", + "name": "Tirumakūdal Narsipur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.21207000", + "longitude": "76.90180000" + }, + { + "id": "134220", + "name": "Tumkūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.34136000", + "longitude": "77.10220000" + }, + { + "id": "134219", + "name": "Tumkur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.50000000", + "longitude": "77.00000000" + }, + { + "id": "134225", + "name": "Turuvekere", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.16374000", + "longitude": "76.66641000" + }, + { + "id": "134260", + "name": "Udupi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.50000000", + "longitude": "74.87000000" + }, + { + "id": "134268", + "name": "Ullal", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.80569000", + "longitude": "74.86058000" + }, + { + "id": "134300", + "name": "Uttar Kannada", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.88333000", + "longitude": "74.58333000" + }, + { + "id": "134307", + "name": "Vadigenhalli", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.29724000", + "longitude": "77.80184000" + }, + { + "id": "134386", + "name": "Vīrarājendrapet", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.19644000", + "longitude": "75.80512000" + }, + { + "id": "134414", + "name": "Wādi", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "17.05183000", + "longitude": "76.99048000" + }, + { + "id": "134420", + "name": "Yadgir", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.73000000", + "longitude": "76.94000000" + }, + { + "id": "134436", + "name": "Yādgīr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "16.77007000", + "longitude": "77.13755000" + }, + { + "id": "134429", + "name": "Yelahanka", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "13.10073000", + "longitude": "77.59632000" + }, + { + "id": "134430", + "name": "Yelandūr", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "12.04629000", + "longitude": "77.03034000" + }, + { + "id": "134431", + "name": "Yelbarga", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "15.61545000", + "longitude": "76.01184000" + }, + { + "id": "134433", + "name": "Yellāpur", + "state_id": 4026, + "state_code": "KA", + "country_id": 101, + "country_code": "IN", + "latitude": "14.96370000", + "longitude": "74.70929000" + }, + { + "id": "57596", + "name": "Adūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.15595000", + "longitude": "76.73192000" + }, + { + "id": "57637", + "name": "Alappuzha", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.49004000", + "longitude": "76.32640000" + }, + { + "id": "57647", + "name": "Aluva", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.10764000", + "longitude": "76.35158000" + }, + { + "id": "57650", + "name": "Alwaye", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.10649000", + "longitude": "76.35484000" + }, + { + "id": "57703", + "name": "Angamāli", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.19055000", + "longitude": "76.38789000" + }, + { + "id": "57738", + "name": "Aroor", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.86940000", + "longitude": "76.30498000" + }, + { + "id": "57742", + "name": "Arukutti", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.86667000", + "longitude": "76.35000000" + }, + { + "id": "57762", + "name": "Attingal", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.69609000", + "longitude": "76.81507000" + }, + { + "id": "57772", + "name": "Avanoor", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.60826000", + "longitude": "76.17620000" + }, + { + "id": "57778", + "name": "Azhikkal", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.91524000", + "longitude": "75.34761000" + }, + { + "id": "57786", + "name": "Badagara", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.59776000", + "longitude": "75.58142000" + }, + { + "id": "57945", + "name": "Beypore", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.17151000", + "longitude": "75.80611000" + }, + { + "id": "58195", + "name": "Changanācheri", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.44203000", + "longitude": "76.53604000" + }, + { + "id": "131609", + "name": "Chēlakara", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.69289000", + "longitude": "76.34387000" + }, + { + "id": "131516", + "name": "Chengannūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.31575000", + "longitude": "76.61513000" + }, + { + "id": "131519", + "name": "Cherpulassery", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.87655000", + "longitude": "76.30932000" + }, + { + "id": "131521", + "name": "Cherthala", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.68444000", + "longitude": "76.33558000" + }, + { + "id": "131524", + "name": "Chetwayi", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.52885000", + "longitude": "76.04793000" + }, + { + "id": "131576", + "name": "Chittūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.69967000", + "longitude": "76.74710000" + }, + { + "id": "131617", + "name": "Cochin", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.93988000", + "longitude": "76.26022000" + }, + { + "id": "131724", + "name": "Dharmadam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.77538000", + "longitude": "75.46459000" + }, + { + "id": "131829", + "name": "Edakkulam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.61020000", + "longitude": "76.18352000" + }, + { + "id": "131835", + "name": "Elūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.06667000", + "longitude": "76.28333000" + }, + { + "id": "131844", + "name": "Erāttupetta", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.68747000", + "longitude": "76.77891000" + }, + { + "id": "131840", + "name": "Ernākulam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.00000000", + "longitude": "76.50000000" + }, + { + "id": "131874", + "name": "Ferokh", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.17989000", + "longitude": "75.84141000" + }, + { + "id": "132038", + "name": "Guruvāyūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.59430000", + "longitude": "76.04110000" + }, + { + "id": "132154", + "name": "Idukki", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.00000000", + "longitude": "77.00000000" + }, + { + "id": "132170", + "name": "Iringal", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.55929000", + "longitude": "75.61663000" + }, + { + "id": "132171", + "name": "Irinjālakuda", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.34238000", + "longitude": "76.21124000" + }, + { + "id": "132323", + "name": "Kadakkavoor", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.67921000", + "longitude": "76.76714000" + }, + { + "id": "132344", + "name": "Kalamassery", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.06140000", + "longitude": "76.32631000" + }, + { + "id": "132350", + "name": "Kalavoor", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.57046000", + "longitude": "76.32756000" + }, + { + "id": "132356", + "name": "Kalpatta", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.60871000", + "longitude": "76.08343000" + }, + { + "id": "132379", + "name": "Kannavam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.84450000", + "longitude": "75.66266000" + }, + { + "id": "132383", + "name": "Kannur", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "12.16667000", + "longitude": "75.33333000" + }, + { + "id": "132428", + "name": "Kattanam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.17614000", + "longitude": "76.56325000" + }, + { + "id": "132707", + "name": "Kānnangād", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "12.30814000", + "longitude": "75.10632000" + }, + { + "id": "132720", + "name": "Kāsaragod", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "12.49838000", + "longitude": "74.98959000" + }, + { + "id": "132721", + "name": "Kāsaragod District", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "12.49246000", + "longitude": "74.99062000" + }, + { + "id": "132731", + "name": "Kāyankulam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.18173000", + "longitude": "76.50093000" + }, + { + "id": "132536", + "name": "Kizhake Chālakudi", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.30067000", + "longitude": "76.33763000" + }, + { + "id": "132545", + "name": "Kodungallūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.23263000", + "longitude": "76.19513000" + }, + { + "id": "132558", + "name": "Kollam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.88113000", + "longitude": "76.58469000" + }, + { + "id": "132595", + "name": "Kotamangalam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.06435000", + "longitude": "76.62843000" + }, + { + "id": "132609", + "name": "Kottayam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.66667000", + "longitude": "76.66667000" + }, + { + "id": "132614", + "name": "Kovalam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.36667000", + "longitude": "76.99667000" + }, + { + "id": "132619", + "name": "Kozhikode", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.50000000", + "longitude": "76.00000000" + }, + { + "id": "132639", + "name": "Kumbalam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.90630000", + "longitude": "76.31127000" + }, + { + "id": "132649", + "name": "Kunnamangalam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.30459000", + "longitude": "75.87772000" + }, + { + "id": "132650", + "name": "Kunnamkulam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.64667000", + "longitude": "76.06695000" + }, + { + "id": "132652", + "name": "Kunnumma", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.35672000", + "longitude": "76.41343000" + }, + { + "id": "132669", + "name": "Kutiatodu", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.80000000", + "longitude": "76.33333000" + }, + { + "id": "132671", + "name": "Kuttampuzha", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.15033000", + "longitude": "76.73544000" + }, + { + "id": "132794", + "name": "Lālam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.71667000", + "longitude": "76.70000000" + }, + { + "id": "132852", + "name": "Mahē", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.70172000", + "longitude": "75.53474000" + }, + { + "id": "132866", + "name": "Malappuram", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.00000000", + "longitude": "76.16667000" + }, + { + "id": "132915", + "name": "Manjēshvar", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "12.71287000", + "longitude": "74.88857000" + }, + { + "id": "132913", + "name": "Manjeri", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.12018000", + "longitude": "76.11996000" + }, + { + "id": "132920", + "name": "Mannārakkāt", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.99223000", + "longitude": "76.46418000" + }, + { + "id": "132933", + "name": "Marayur", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.27641000", + "longitude": "77.16205000" + }, + { + "id": "132942", + "name": "Mattanur", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.93018000", + "longitude": "75.57152000" + }, + { + "id": "132950", + "name": "Mavoor", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.26667000", + "longitude": "75.91667000" + }, + { + "id": "133092", + "name": "Māvelikara", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.25929000", + "longitude": "76.55642000" + }, + { + "id": "133103", + "name": "Mūvattupula", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.98493000", + "longitude": "76.57728000" + }, + { + "id": "133023", + "name": "Muluppilagadu", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.79788000", + "longitude": "75.45111000" + }, + { + "id": "133034", + "name": "Munnar", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.08818000", + "longitude": "77.06239000" + }, + { + "id": "133050", + "name": "Muvattupuzha", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.97985000", + "longitude": "76.57381000" + }, + { + "id": "133107", + "name": "Naduvannūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.48772000", + "longitude": "75.77511000" + }, + { + "id": "133253", + "name": "Nādāpuram", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.68465000", + "longitude": "75.65493000" + }, + { + "id": "133287", + "name": "Nīlēshwar", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "12.25953000", + "longitude": "75.13520000" + }, + { + "id": "133198", + "name": "Nedumangād", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.60267000", + "longitude": "77.00139000" + }, + { + "id": "133211", + "name": "Neyyāttinkara", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.39854000", + "longitude": "77.08586000" + }, + { + "id": "133306", + "name": "Ottappālam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.77350000", + "longitude": "76.37758000" + }, + { + "id": "133321", + "name": "Palackattumala", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.74356000", + "longitude": "76.62940000" + }, + { + "id": "133322", + "name": "Palakkad district", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.77500000", + "longitude": "76.65100000" + }, + { + "id": "133343", + "name": "Panamaram", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.74014000", + "longitude": "76.07369000" + }, + { + "id": "133357", + "name": "Paravūr Tekkumbhāgam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.79470000", + "longitude": "76.66798000" + }, + { + "id": "133359", + "name": "Pariyāpuram", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.01667000", + "longitude": "75.86667000" + }, + { + "id": "133380", + "name": "Pathanāmthitta", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.26667000", + "longitude": "76.78333000" + }, + { + "id": "133389", + "name": "Pattanamtitta", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.28068000", + "longitude": "76.86967000" + }, + { + "id": "133399", + "name": "Payyannūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "12.09350000", + "longitude": "75.20249000" + }, + { + "id": "133528", + "name": "Pālghāt", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.77319000", + "longitude": "76.65366000" + }, + { + "id": "133546", + "name": "Pāppinisshēri", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.95655000", + "longitude": "75.34034000" + }, + { + "id": "133423", + "name": "Perumbavoor", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.10695000", + "longitude": "76.47366000" + }, + { + "id": "133424", + "name": "Perumpāvūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.11544000", + "longitude": "76.47611000" + }, + { + "id": "133427", + "name": "Perya", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.83334000", + "longitude": "75.85408000" + }, + { + "id": "133457", + "name": "Piravam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.86667000", + "longitude": "76.50000000" + }, + { + "id": "133472", + "name": "Ponmana", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.00798000", + "longitude": "76.52023000" + }, + { + "id": "133477", + "name": "Ponnāni", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.76695000", + "longitude": "75.92523000" + }, + { + "id": "133502", + "name": "Punalūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.01956000", + "longitude": "76.92261000" + }, + { + "id": "133692", + "name": "Rāmamangalam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.93333000", + "longitude": "76.50000000" + }, + { + "id": "133915", + "name": "Shōranūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.76181000", + "longitude": "76.27078000" + }, + { + "id": "133865", + "name": "Shertallai", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.68581000", + "longitude": "76.33996000" + }, + { + "id": "134103", + "name": "Talipparamba", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "12.04161000", + "longitude": "75.35927000" + }, + { + "id": "134129", + "name": "Tellicherry", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.74811000", + "longitude": "75.49290000" + }, + { + "id": "134142", + "name": "Thanniyam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.41667000", + "longitude": "76.13333000" + }, + { + "id": "134154", + "name": "Thiruvananthapuram", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.60399000", + "longitude": "76.98574000" + }, + { + "id": "134161", + "name": "Thrissur", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.51667000", + "longitude": "76.21667000" + }, + { + "id": "134162", + "name": "Thrissur District", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.52022000", + "longitude": "76.22040000" + }, + { + "id": "134192", + "name": "Tirur", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "10.91368000", + "longitude": "75.92118000" + }, + { + "id": "134194", + "name": "Tiruvalla", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.38160000", + "longitude": "76.57489000" + }, + { + "id": "134313", + "name": "Vaikam", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.74858000", + "longitude": "76.39637000" + }, + { + "id": "134330", + "name": "Varkala", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.73330000", + "longitude": "76.71670000" + }, + { + "id": "134336", + "name": "Vayalār", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "9.71158000", + "longitude": "76.33888000" + }, + { + "id": "134353", + "name": "Vettūr", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "8.71742000", + "longitude": "76.72582000" + }, + { + "id": "134400", + "name": "Wayanad", + "state_id": 4028, + "state_code": "KL", + "country_id": 101, + "country_code": "IN", + "latitude": "11.60500000", + "longitude": "76.08300000" + }, + { + "id": "132432", + "name": "Kavaratti", + "state_id": 4019, + "state_code": "LD", + "country_id": 101, + "country_code": "IN", + "latitude": "10.56688000", + "longitude": "72.64203000" + }, + { + "id": "132750", + "name": "Lakshadweep", + "state_id": 4019, + "state_code": "LD", + "country_id": 101, + "country_code": "IN", + "latitude": "11.27333000", + "longitude": "74.04582000" + }, + { + "id": "57599", + "name": "Agar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.71177000", + "longitude": "76.01571000" + }, + { + "id": "57611", + "name": "Ajaigarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.89879000", + "longitude": "80.25921000" + }, + { + "id": "57626", + "name": "Akodia", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.38027000", + "longitude": "76.59875000" + }, + { + "id": "57631", + "name": "Alampur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.02514000", + "longitude": "78.79697000" + }, + { + "id": "57639", + "name": "Alirajpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.31384000", + "longitude": "74.36452000" + }, + { + "id": "57646", + "name": "Alot", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.76336000", + "longitude": "75.55662000" + }, + { + "id": "57659", + "name": "Amarkantak", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.67486000", + "longitude": "81.75908000" + }, + { + "id": "57663", + "name": "Amarpātan", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.31371000", + "longitude": "80.97703000" + }, + { + "id": "57664", + "name": "Amarwāra", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.29780000", + "longitude": "79.16943000" + }, + { + "id": "57691", + "name": "Amānganj", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.42664000", + "longitude": "80.03579000" + }, + { + "id": "57673", + "name": "Ambāh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.70423000", + "longitude": "78.22678000" + }, + { + "id": "57680", + "name": "Amla", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.92485000", + "longitude": "78.12786000" + }, + { + "id": "57723", + "name": "Anūppur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.10344000", + "longitude": "81.69083000" + }, + { + "id": "57706", + "name": "Anjad", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.04171000", + "longitude": "75.05519000" + }, + { + "id": "57719", + "name": "Antri", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.05804000", + "longitude": "78.21027000" + }, + { + "id": "57721", + "name": "Anuppur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.05674000", + "longitude": "81.68399000" + }, + { + "id": "57750", + "name": "Ashoknagar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.58000000", + "longitude": "77.73000000" + }, + { + "id": "57752", + "name": "Ashta", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.01754000", + "longitude": "76.72208000" + }, + { + "id": "134462", + "name": "Āron", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.38109000", + "longitude": "77.41739000" + }, + { + "id": "57788", + "name": "Badarwās", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.97516000", + "longitude": "77.56490000" + }, + { + "id": "57793", + "name": "Badnāwar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.02181000", + "longitude": "75.23268000" + }, + { + "id": "57811", + "name": "Baihar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.10133000", + "longitude": "80.54967000" + }, + { + "id": "57813", + "name": "Baikunthpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.72768000", + "longitude": "81.40975000" + }, + { + "id": "57821", + "name": "Bakshwāho", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.25106000", + "longitude": "79.28618000" + }, + { + "id": "57824", + "name": "Baldeogarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.75619000", + "longitude": "79.06715000" + }, + { + "id": "57838", + "name": "Bamna", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.09454000", + "longitude": "74.76164000" + }, + { + "id": "57839", + "name": "Bamora", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.05539000", + "longitude": "78.08925000" + }, + { + "id": "57842", + "name": "Banda", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.04488000", + "longitude": "78.96094000" + }, + { + "id": "57868", + "name": "Barela", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.09678000", + "longitude": "80.05084000" + }, + { + "id": "57870", + "name": "Barghāt", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.03065000", + "longitude": "79.73280000" + }, + { + "id": "57871", + "name": "Bargi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.99138000", + "longitude": "79.87550000" + }, + { + "id": "57872", + "name": "Barhi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.90326000", + "longitude": "80.81516000" + }, + { + "id": "57888", + "name": "Barwani", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.02485000", + "longitude": "74.91805000" + }, + { + "id": "57891", + "name": "Barwāni", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.03232000", + "longitude": "74.89982000" + }, + { + "id": "58103", + "name": "Bābai", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.70256000", + "longitude": "77.93494000" + }, + { + "id": "58106", + "name": "Bāg", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.35905000", + "longitude": "74.79052000" + }, + { + "id": "58111", + "name": "Bāgli", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.64124000", + "longitude": "76.34877000" + }, + { + "id": "58119", + "name": "Bālāghāt", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.96667000", + "longitude": "80.33333000" + }, + { + "id": "58122", + "name": "Bāmor Kalān", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.89298000", + "longitude": "78.15105000" + }, + { + "id": "58148", + "name": "Bāsoda", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.85153000", + "longitude": "77.93652000" + }, + { + "id": "57913", + "name": "Begamganj", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.59917000", + "longitude": "78.34064000" + }, + { + "id": "57935", + "name": "Beohāri", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.02423000", + "longitude": "81.37831000" + }, + { + "id": "57936", + "name": "Berasia", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.63134000", + "longitude": "77.43351000" + }, + { + "id": "57942", + "name": "Betūl", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.83333000", + "longitude": "77.83333000" + }, + { + "id": "57943", + "name": "Betūl Bazār", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.85572000", + "longitude": "77.92913000" + }, + { + "id": "57940", + "name": "Betma", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.68653000", + "longitude": "75.61456000" + }, + { + "id": "57959", + "name": "Bhainsdehi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.64491000", + "longitude": "77.63023000" + }, + { + "id": "57975", + "name": "Bhawāniganj", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.41582000", + "longitude": "75.83552000" + }, + { + "id": "58006", + "name": "Bhābhra", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.53048000", + "longitude": "74.32846000" + }, + { + "id": "58011", + "name": "Bhānder", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.73581000", + "longitude": "78.74555000" + }, + { + "id": "58012", + "name": "Bhānpura", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.51300000", + "longitude": "75.74690000" + }, + { + "id": "57980", + "name": "Bhikangaon", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.86764000", + "longitude": "75.96391000" + }, + { + "id": "57982", + "name": "Bhind", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.50000000", + "longitude": "78.75000000" + }, + { + "id": "57985", + "name": "Bhitarwār", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.79216000", + "longitude": "78.11085000" + }, + { + "id": "57995", + "name": "Bhopal", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.25469000", + "longitude": "77.40289000" + }, + { + "id": "57996", + "name": "Bhopāl", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.50000000", + "longitude": "77.41667000" + }, + { + "id": "58025", + "name": "Biaora", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.92050000", + "longitude": "76.91074000" + }, + { + "id": "58038", + "name": "Bijāwar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.62351000", + "longitude": "79.48994000" + }, + { + "id": "58036", + "name": "Bijrauni", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.93296000", + "longitude": "77.64352000" + }, + { + "id": "58073", + "name": "Bodri", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.16524000", + "longitude": "81.43262000" + }, + { + "id": "58096", + "name": "Burhanpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.31000000", + "longitude": "76.23000000" + }, + { + "id": "58097", + "name": "Burhar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.21494000", + "longitude": "81.53204000" + }, + { + "id": "58098", + "name": "Burhānpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.30868000", + "longitude": "76.23026000" + }, + { + "id": "58188", + "name": "Chanderi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.71312000", + "longitude": "78.13809000" + }, + { + "id": "58189", + "name": "Chandia", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.65647000", + "longitude": "80.70911000" + }, + { + "id": "58191", + "name": "Chandla", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.07148000", + "longitude": "80.19294000" + }, + { + "id": "131532", + "name": "Chhatarpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.75000000", + "longitude": "79.75000000" + }, + { + "id": "131534", + "name": "Chhindwāra", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.05697000", + "longitude": "78.93958000" + }, + { + "id": "131543", + "name": "Chichli", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.83363000", + "longitude": "78.82611000" + }, + { + "id": "131581", + "name": "Chorhat", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.42743000", + "longitude": "81.66948000" + }, + { + "id": "131636", + "name": "Daboh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.00239000", + "longitude": "78.87658000" + }, + { + "id": "131637", + "name": "Dabra", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.88572000", + "longitude": "78.33221000" + }, + { + "id": "131651", + "name": "Damoh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.75000000", + "longitude": "79.58333000" + }, + { + "id": "131662", + "name": "Datia", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "78.50000000" + }, + { + "id": "131691", + "name": "Deori Khās", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.39017000", + "longitude": "79.01630000" + }, + { + "id": "131693", + "name": "Depālpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.85095000", + "longitude": "75.54224000" + }, + { + "id": "131707", + "name": "Dewas", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.00000000", + "longitude": "76.16667000" + }, + { + "id": "131720", + "name": "Dharampuri", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.14951000", + "longitude": "75.34439000" + }, + { + "id": "131749", + "name": "Dhāmnod", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.20928000", + "longitude": "75.47057000" + }, + { + "id": "131751", + "name": "Dhāna", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.74697000", + "longitude": "78.86234000" + }, + { + "id": "131753", + "name": "Dhār", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.59373000", + "longitude": "75.29774000" + }, + { + "id": "131775", + "name": "Dindori", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.80000000", + "longitude": "81.10000000" + }, + { + "id": "131848", + "name": "Etāwa", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.18351000", + "longitude": "78.20289000" + }, + { + "id": "131917", + "name": "Garha Brahman", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.86873000", + "longitude": "77.35731000" + }, + { + "id": "131924", + "name": "Garhākota", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.77910000", + "longitude": "79.14321000" + }, + { + "id": "131930", + "name": "Gautampura", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.98664000", + "longitude": "75.51921000" + }, + { + "id": "132043", + "name": "Gādarwāra", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.92350000", + "longitude": "78.78490000" + }, + { + "id": "131936", + "name": "Ghansor", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.65976000", + "longitude": "79.95013000" + }, + { + "id": "131965", + "name": "Gogāpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.55746000", + "longitude": "75.51665000" + }, + { + "id": "131966", + "name": "Gohadi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.43278000", + "longitude": "78.44205000" + }, + { + "id": "132002", + "name": "Govindgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.37845000", + "longitude": "81.29644000" + }, + { + "id": "132024", + "name": "Guna", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.55464000", + "longitude": "77.20082000" + }, + { + "id": "132033", + "name": "Gurh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.50265000", + "longitude": "81.50037000" + }, + { + "id": "132040", + "name": "Gwalior", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.22983000", + "longitude": "78.17337000" + }, + { + "id": "132070", + "name": "Harda", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.23406000", + "longitude": "76.96431000" + }, + { + "id": "132071", + "name": "Harda Khās", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.34414000", + "longitude": "77.09536000" + }, + { + "id": "132080", + "name": "Harpālpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.28773000", + "longitude": "79.33279000" + }, + { + "id": "132081", + "name": "Harrai", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.61428000", + "longitude": "79.22207000" + }, + { + "id": "132082", + "name": "Harsūd", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.09947000", + "longitude": "76.73423000" + }, + { + "id": "132088", + "name": "Hatta", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.13406000", + "longitude": "79.60119000" + }, + { + "id": "132145", + "name": "Hātod", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.79378000", + "longitude": "75.73928000" + }, + { + "id": "132098", + "name": "Hindoria", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.90345000", + "longitude": "79.56861000" + }, + { + "id": "132120", + "name": "Hoshangābād", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.58827000", + "longitude": "77.98887000" + }, + { + "id": "132180", + "name": "Iāwar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.00943000", + "longitude": "76.50070000" + }, + { + "id": "132152", + "name": "Ichhāwar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.02816000", + "longitude": "77.01729000" + }, + { + "id": "132158", + "name": "Iklehra", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.14667000", + "longitude": "76.39044000" + }, + { + "id": "132166", + "name": "Indore", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.66667000", + "longitude": "75.75000000" + }, + { + "id": "132175", + "name": "Isāgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.83906000", + "longitude": "77.88274000" + }, + { + "id": "132179", + "name": "Itārsi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.61477000", + "longitude": "77.76222000" + }, + { + "id": "132181", + "name": "Jabalpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.16000000", + "longitude": "79.95000000" + }, + { + "id": "132204", + "name": "Jaisinghnagar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.68582000", + "longitude": "81.39085000" + }, + { + "id": "132206", + "name": "Jaithāri", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.20856000", + "longitude": "78.61487000" + }, + { + "id": "132241", + "name": "Jaorā", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.63783000", + "longitude": "75.12711000" + }, + { + "id": "132251", + "name": "Jatāra", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.00964000", + "longitude": "79.04869000" + }, + { + "id": "132309", + "name": "Jāmai", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.19644000", + "longitude": "78.59191000" + }, + { + "id": "132314", + "name": "Jāwad", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.59916000", + "longitude": "74.86261000" + }, + { + "id": "132316", + "name": "Jīran", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.30871000", + "longitude": "74.89087000" + }, + { + "id": "132275", + "name": "Jhābua", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.76772000", + "longitude": "74.59087000" + }, + { + "id": "132283", + "name": "Jobat", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.41599000", + "longitude": "74.56828000" + }, + { + "id": "132292", + "name": "Jora", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.34209000", + "longitude": "77.80920000" + }, + { + "id": "132333", + "name": "Kailāras", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.30498000", + "longitude": "77.61600000" + }, + { + "id": "132336", + "name": "Kaimori", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.38465000", + "longitude": "79.74420000" + }, + { + "id": "132382", + "name": "Kannod", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.66764000", + "longitude": "76.74286000" + }, + { + "id": "132397", + "name": "Kareli", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.91533000", + "longitude": "79.06378000" + }, + { + "id": "132398", + "name": "Karera", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.45815000", + "longitude": "78.13583000" + }, + { + "id": "132407", + "name": "Karrāpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.94891000", + "longitude": "78.86584000" + }, + { + "id": "132419", + "name": "Kasrāwad", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.12745000", + "longitude": "75.61101000" + }, + { + "id": "132420", + "name": "Katangi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.77369000", + "longitude": "79.80513000" + }, + { + "id": "132424", + "name": "Katni", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.83555000", + "longitude": "80.39417000" + }, + { + "id": "132453", + "name": "Khailār", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.34127000", + "longitude": "78.53133000" + }, + { + "id": "132457", + "name": "Khajuraho Group of Monuments", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.84809000", + "longitude": "79.93351000" + }, + { + "id": "132460", + "name": "Khamaria", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.22558000", + "longitude": "79.88007000" + }, + { + "id": "132467", + "name": "Khandwa", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.82427000", + "longitude": "76.35086000" + }, + { + "id": "132468", + "name": "Khandwa district", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.75000000", + "longitude": "76.58333000" + }, + { + "id": "132476", + "name": "Khargāpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.82300000", + "longitude": "79.14400000" + }, + { + "id": "132474", + "name": "Khargone", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.82306000", + "longitude": "75.61028000" + }, + { + "id": "132511", + "name": "Khāchrod", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.42322000", + "longitude": "75.28185000" + }, + { + "id": "132519", + "name": "Khātegaon", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.59573000", + "longitude": "76.91330000" + }, + { + "id": "132497", + "name": "Khilchipur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.03943000", + "longitude": "76.57800000" + }, + { + "id": "132498", + "name": "Khirkiyān", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.16732000", + "longitude": "76.86137000" + }, + { + "id": "132504", + "name": "Khujner", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.78597000", + "longitude": "76.61773000" + }, + { + "id": "132507", + "name": "Khurai", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.04372000", + "longitude": "78.33014000" + }, + { + "id": "132561", + "name": "Kolāras", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.21928000", + "longitude": "77.61167000" + }, + { + "id": "132585", + "name": "Korwai", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.11774000", + "longitude": "78.04007000" + }, + { + "id": "132613", + "name": "Kotār", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.69802000", + "longitude": "80.98073000" + }, + { + "id": "132598", + "name": "Kothi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.75260000", + "longitude": "80.77751000" + }, + { + "id": "132603", + "name": "Kotma", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.20383000", + "longitude": "81.97904000" + }, + { + "id": "132611", + "name": "Kotwa", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.03080000", + "longitude": "81.31908000" + }, + { + "id": "132631", + "name": "Kukshi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.20677000", + "longitude": "74.75788000" + }, + { + "id": "132640", + "name": "Kumbhrāj", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.37338000", + "longitude": "77.04841000" + }, + { + "id": "132741", + "name": "Lahār", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.19401000", + "longitude": "78.94137000" + }, + { + "id": "132746", + "name": "Lakhnādon", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.60049000", + "longitude": "79.60094000" + }, + { + "id": "132763", + "name": "Leteri", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.05979000", + "longitude": "77.40858000" + }, + { + "id": "132766", + "name": "Lodhīkheda", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.58235000", + "longitude": "78.85911000" + }, + { + "id": "132814", + "name": "Madhogarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.56401000", + "longitude": "80.91126000" + }, + { + "id": "132833", + "name": "Maheshwar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.17592000", + "longitude": "75.58715000" + }, + { + "id": "132835", + "name": "Mahgawān", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.49471000", + "longitude": "78.61593000" + }, + { + "id": "132854", + "name": "Maihar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.26594000", + "longitude": "80.76063000" + }, + { + "id": "132860", + "name": "Majholi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.50114000", + "longitude": "79.92396000" + }, + { + "id": "132864", + "name": "Maksi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.25999000", + "longitude": "76.14567000" + }, + { + "id": "132869", + "name": "Malhārgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.28286000", + "longitude": "74.99024000" + }, + { + "id": "132930", + "name": "Manāsa", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.47764000", + "longitude": "75.14095000" + }, + { + "id": "132931", + "name": "Manāwar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.23566000", + "longitude": "75.08917000" + }, + { + "id": "132894", + "name": "Mandideep", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.08166000", + "longitude": "77.53328000" + }, + { + "id": "132895", + "name": "Mandla", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.64041000", + "longitude": "80.51344000" + }, + { + "id": "132896", + "name": "Mandlā", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.59879000", + "longitude": "80.37115000" + }, + { + "id": "132897", + "name": "Mandsaur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.33333000", + "longitude": "75.25000000" + }, + { + "id": "132907", + "name": "Mangawān", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.66754000", + "longitude": "81.54644000" + }, + { + "id": "132943", + "name": "Mau", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.26584000", + "longitude": "78.67108000" + }, + { + "id": "132947", + "name": "Mauganj", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.66721000", + "longitude": "81.87339000" + }, + { + "id": "133054", + "name": "Māchalpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.12767000", + "longitude": "76.31672000" + }, + { + "id": "133075", + "name": "Māndleshwar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.17598000", + "longitude": "75.65995000" + }, + { + "id": "133080", + "name": "Mānpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.43151000", + "longitude": "75.62107000" + }, + { + "id": "132973", + "name": "Mihona", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.28373000", + "longitude": "78.98048000" + }, + { + "id": "132983", + "name": "Mohgaon", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.63941000", + "longitude": "78.73638000" + }, + { + "id": "133003", + "name": "Morār", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.22640000", + "longitude": "78.22482000" + }, + { + "id": "132994", + "name": "Morena", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.16667000", + "longitude": "77.50000000" + }, + { + "id": "133022", + "name": "Multai", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.77463000", + "longitude": "78.25756000" + }, + { + "id": "133028", + "name": "Mundi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.06693000", + "longitude": "76.49326000" + }, + { + "id": "133030", + "name": "Mungaoli", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.40837000", + "longitude": "78.09588000" + }, + { + "id": "133042", + "name": "Murwāra", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.83776000", + "longitude": "80.39405000" + }, + { + "id": "133197", + "name": "Naīgarhi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.78686000", + "longitude": "81.77868000" + }, + { + "id": "133115", + "name": "Nagda", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.45834000", + "longitude": "75.41759000" + }, + { + "id": "133124", + "name": "Nainpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.42996000", + "longitude": "80.10561000" + }, + { + "id": "133138", + "name": "Namli", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.46115000", + "longitude": "75.06036000" + }, + { + "id": "133155", + "name": "Naraini", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.19033000", + "longitude": "80.47500000" + }, + { + "id": "133171", + "name": "Narsimhapur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.91667000", + "longitude": "79.16667000" + }, + { + "id": "133172", + "name": "Narsinghgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.70758000", + "longitude": "77.09319000" + }, + { + "id": "133174", + "name": "Narwar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.64390000", + "longitude": "77.91290000" + }, + { + "id": "133179", + "name": "Nasrullāhganj", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.68370000", + "longitude": "77.27069000" + }, + { + "id": "133259", + "name": "Nāgod", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.56924000", + "longitude": "80.58809000" + }, + { + "id": "133276", + "name": "Nārāyangarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.27083000", + "longitude": "75.05007000" + }, + { + "id": "133202", + "name": "Neemuch", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.47000000", + "longitude": "74.87000000" + }, + { + "id": "133207", + "name": "Nepānagar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.45380000", + "longitude": "76.39335000" + }, + { + "id": "133304", + "name": "Orchha", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.35192000", + "longitude": "78.64033000" + }, + { + "id": "133308", + "name": "Pachmarhi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.46791000", + "longitude": "78.43312000" + }, + { + "id": "133325", + "name": "Palera", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.02013000", + "longitude": "79.22818000" + }, + { + "id": "133344", + "name": "Panara", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.20568000", + "longitude": "78.55093000" + }, + { + "id": "133354", + "name": "Panāgar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.28539000", + "longitude": "79.99509000" + }, + { + "id": "133348", + "name": "Pandhāna", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.69816000", + "longitude": "76.22487000" + }, + { + "id": "133351", + "name": "Panna", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.50000000", + "longitude": "80.25000000" + }, + { + "id": "133371", + "name": "Parāsia", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.19130000", + "longitude": "78.75904000" + }, + { + "id": "133381", + "name": "Patharia", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.89921000", + "longitude": "79.19393000" + }, + { + "id": "133396", + "name": "Pawai", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.26635000", + "longitude": "80.16196000" + }, + { + "id": "133530", + "name": "Pāli", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.36453000", + "longitude": "81.04374000" + }, + { + "id": "133538", + "name": "Pāndhurnā", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.59556000", + "longitude": "78.52628000" + }, + { + "id": "133542", + "name": "Pānsemāl", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.65981000", + "longitude": "74.69937000" + }, + { + "id": "133555", + "name": "Pātan", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.28636000", + "longitude": "79.68962000" + }, + { + "id": "133430", + "name": "Petlāwad", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.01102000", + "longitude": "74.79772000" + }, + { + "id": "133454", + "name": "Piploda", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.35000000", + "longitude": "75.43333000" + }, + { + "id": "133462", + "name": "Pithampur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.60197000", + "longitude": "75.69649000" + }, + { + "id": "133481", + "name": "Porsa", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.67444000", + "longitude": "78.37081000" + }, + { + "id": "133508", + "name": "Punāsa", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.23507000", + "longitude": "76.39335000" + }, + { + "id": "133591", + "name": "Raisen", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.25000000", + "longitude": "78.08333000" + }, + { + "id": "133595", + "name": "Rajpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.30393000", + "longitude": "74.35568000" + }, + { + "id": "133615", + "name": "Ratangarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.81667000", + "longitude": "75.11667000" + }, + { + "id": "133618", + "name": "Ratlām", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.33033000", + "longitude": "75.04032000" + }, + { + "id": "133660", + "name": "Rāghogarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.44318000", + "longitude": "77.19768000" + }, + { + "id": "133661", + "name": "Rāhatgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.78968000", + "longitude": "78.39473000" + }, + { + "id": "133675", + "name": "Rājgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.67821000", + "longitude": "74.94483000" + }, + { + "id": "133680", + "name": "Rājnagar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.88929000", + "longitude": "79.91178000" + }, + { + "id": "133709", + "name": "Rāmpura", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.46700000", + "longitude": "75.43996000" + }, + { + "id": "133717", + "name": "Rānāpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.64704000", + "longitude": "74.52118000" + }, + { + "id": "133623", + "name": "Rehli", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.63722000", + "longitude": "79.06275000" + }, + { + "id": "133624", + "name": "Rehti", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.73781000", + "longitude": "77.43399000" + }, + { + "id": "133633", + "name": "Rewa", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.53256000", + "longitude": "81.29234000" + }, + { + "id": "133738", + "name": "Sabalgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.24918000", + "longitude": "77.40786000" + }, + { + "id": "133757", + "name": "Sailāna", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.46219000", + "longitude": "74.92318000" + }, + { + "id": "133796", + "name": "Sanāwad", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.17391000", + "longitude": "76.06993000" + }, + { + "id": "133820", + "name": "Satna", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.50000000", + "longitude": "81.00000000" + }, + { + "id": "133824", + "name": "Satwās", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.53628000", + "longitude": "76.68452000" + }, + { + "id": "133826", + "name": "Saugor", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.83877000", + "longitude": "78.73874000" + }, + { + "id": "133829", + "name": "Sausar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.65576000", + "longitude": "78.79669000" + }, + { + "id": "134061", + "name": "Sāgar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.75000000", + "longitude": "78.75000000" + }, + { + "id": "134070", + "name": "Sānchi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.48646000", + "longitude": "77.73780000" + }, + { + "id": "134075", + "name": "Sānwer", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.97415000", + "longitude": "75.82710000" + }, + { + "id": "134078", + "name": "Sārangpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.56651000", + "longitude": "76.47306000" + }, + { + "id": "134090", + "name": "Sītāmau", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.01473000", + "longitude": "75.35324000" + }, + { + "id": "133835", + "name": "Sehore", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.20000000", + "longitude": "77.08333000" + }, + { + "id": "133838", + "name": "Sendhwa", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.68562000", + "longitude": "75.09622000" + }, + { + "id": "133844", + "name": "Seonī", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.41667000", + "longitude": "79.66667000" + }, + { + "id": "133840", + "name": "Seondha", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.15422000", + "longitude": "78.78120000" + }, + { + "id": "133842", + "name": "Seoni", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.08503000", + "longitude": "79.55037000" + }, + { + "id": "133843", + "name": "Seoni Mālwa", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.45046000", + "longitude": "77.46650000" + }, + { + "id": "133853", + "name": "Shahdol", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.50000000", + "longitude": "81.50000000" + }, + { + "id": "133893", + "name": "Shāhgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.31365000", + "longitude": "79.11806000" + }, + { + "id": "133899", + "name": "Shāhpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.23742000", + "longitude": "76.22558000" + }, + { + "id": "133904", + "name": "Shāhpura", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.13663000", + "longitude": "79.66402000" + }, + { + "id": "133910", + "name": "Shājāpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.50000000", + "longitude": "76.25000000" + }, + { + "id": "133912", + "name": "Shāmgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.18817000", + "longitude": "75.63903000" + }, + { + "id": "133861", + "name": "Sheopur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.80000000", + "longitude": "77.00000000" + }, + { + "id": "133881", + "name": "Shivpurī", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "78.00000000" + }, + { + "id": "133880", + "name": "Shivpuri", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.42378000", + "longitude": "77.66223000" + }, + { + "id": "133888", + "name": "Shujālpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.40673000", + "longitude": "76.70980000" + }, + { + "id": "133922", + "name": "Sidhi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.25000000", + "longitude": "82.00000000" + }, + { + "id": "133926", + "name": "Sihorā", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.48710000", + "longitude": "80.10404000" + }, + { + "id": "133938", + "name": "Simaria", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.79497000", + "longitude": "81.15200000" + }, + { + "id": "133947", + "name": "Singoli", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.96667000", + "longitude": "75.30000000" + }, + { + "id": "133948", + "name": "Singrauli", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.19973000", + "longitude": "82.67535000" + }, + { + "id": "133956", + "name": "Sirmaur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.83648000", + "longitude": "81.36448000" + }, + { + "id": "133959", + "name": "Sironj", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.10313000", + "longitude": "77.69055000" + }, + { + "id": "133981", + "name": "Sohāgi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.98181000", + "longitude": "81.69558000" + }, + { + "id": "133982", + "name": "Sohāgpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "22.70055000", + "longitude": "78.19522000" + }, + { + "id": "134039", + "name": "Sultānpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.13812000", + "longitude": "77.93404000" + }, + { + "id": "134055", + "name": "Susner", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.94667000", + "longitude": "76.08825000" + }, + { + "id": "134102", + "name": "Talen", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.56949000", + "longitude": "76.72821000" + }, + { + "id": "134119", + "name": "Tarāna", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.33383000", + "longitude": "76.04253000" + }, + { + "id": "134230", + "name": "Tāl", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.71979000", + "longitude": "75.38514000" + }, + { + "id": "134244", + "name": "Tīkamgarh", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.74327000", + "longitude": "78.83061000" + }, + { + "id": "134124", + "name": "Tekanpur", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.99401000", + "longitude": "78.28322000" + }, + { + "id": "134130", + "name": "Tendūkheda", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.39620000", + "longitude": "79.53947000" + }, + { + "id": "134132", + "name": "Teonthar", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.98207000", + "longitude": "81.64194000" + }, + { + "id": "134137", + "name": "Thandla", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.00959000", + "longitude": "74.57747000" + }, + { + "id": "134177", + "name": "Tirodi", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.68522000", + "longitude": "79.71906000" + }, + { + "id": "134251", + "name": "Udaipura", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.07434000", + "longitude": "78.51108000" + }, + { + "id": "134263", + "name": "Ujjain", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.41667000", + "longitude": "75.50000000" + }, + { + "id": "134266", + "name": "Ukwā", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.97102000", + "longitude": "80.46625000" + }, + { + "id": "134270", + "name": "Umaria", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.52473000", + "longitude": "80.83716000" + }, + { + "id": "134271", + "name": "Umaria District", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.52874000", + "longitude": "80.83054000" + }, + { + "id": "134276", + "name": "Umri", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.51056000", + "longitude": "78.93667000" + }, + { + "id": "134282", + "name": "Unhel", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.33794000", + "longitude": "75.55931000" + }, + { + "id": "134354", + "name": "Vidisha", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "23.91667000", + "longitude": "78.00000000" + }, + { + "id": "134418", + "name": "Wārāseonī", + "state_id": 4039, + "state_code": "MP", + "country_id": 101, + "country_code": "IN", + "latitude": "21.76184000", + "longitude": "80.04301000" + }, + { + "id": "57589", + "name": "Achalpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.25665000", + "longitude": "77.51006000" + }, + { + "id": "57602", + "name": "Ahiri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.41386000", + "longitude": "80.00359000" + }, + { + "id": "57603", + "name": "Ahmadnagar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.09457000", + "longitude": "74.73843000" + }, + { + "id": "57604", + "name": "Ahmadpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.70622000", + "longitude": "76.93731000" + }, + { + "id": "57609", + "name": "Airoli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.15096000", + "longitude": "72.99625000" + }, + { + "id": "57617", + "name": "Ajra", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.11601000", + "longitude": "74.21097000" + }, + { + "id": "57618", + "name": "Akalkot", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.52532000", + "longitude": "76.20611000" + }, + { + "id": "57627", + "name": "Akola", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.50000000", + "longitude": "77.16667000" + }, + { + "id": "57628", + "name": "Akot", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.09630000", + "longitude": "77.05880000" + }, + { + "id": "57633", + "name": "Alandi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.67756000", + "longitude": "73.89868000" + }, + { + "id": "57652", + "name": "Alībāg", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.64813000", + "longitude": "72.87579000" + }, + { + "id": "57642", + "name": "Allāpalli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.43172000", + "longitude": "80.06377000" + }, + { + "id": "57657", + "name": "Amalner", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.03983000", + "longitude": "75.05887000" + }, + { + "id": "57660", + "name": "Amarnāth", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.20000000", + "longitude": "73.16667000" + }, + { + "id": "57665", + "name": "Ambad", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.61301000", + "longitude": "75.78906000" + }, + { + "id": "57674", + "name": "Ambājogāi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.73312000", + "longitude": "76.38616000" + }, + { + "id": "57684", + "name": "Amravati Division", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.93483000", + "longitude": "77.75694000" + }, + { + "id": "57689", + "name": "Amrāvati", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.93333000", + "longitude": "77.75000000" + }, + { + "id": "57707", + "name": "Anjangaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.16516000", + "longitude": "77.30910000" + }, + { + "id": "57716", + "name": "Anshing", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.04090000", + "longitude": "77.31501000" + }, + { + "id": "57741", + "name": "Artist Village", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.03227000", + "longitude": "73.04276000" + }, + { + "id": "57751", + "name": "Ashta", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.94943000", + "longitude": "74.40936000" + }, + { + "id": "57753", + "name": "Ashti", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.37671000", + "longitude": "76.22520000" + }, + { + "id": "57765", + "name": "Aurangabad", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.88467000", + "longitude": "75.33986000" + }, + { + "id": "57770", + "name": "Ausa", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.24728000", + "longitude": "76.49930000" + }, + { + "id": "134461", + "name": "Ārangaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.02681000", + "longitude": "74.71487000" + }, + { + "id": "134463", + "name": "Ārvi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.99585000", + "longitude": "78.22914000" + }, + { + "id": "57792", + "name": "Badlapur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.15516000", + "longitude": "73.26553000" + }, + { + "id": "57829", + "name": "Ballālpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.84696000", + "longitude": "79.34578000" + }, + { + "id": "57897", + "name": "Basmat", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.32872000", + "longitude": "77.15746000" + }, + { + "id": "58121", + "name": "Bālāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.66612000", + "longitude": "76.77386000" + }, + { + "id": "58146", + "name": "Bārāmati", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.15174000", + "longitude": "74.57767000" + }, + { + "id": "58144", + "name": "Bārsi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.23454000", + "longitude": "75.69275000" + }, + { + "id": "57912", + "name": "Beed", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.98921000", + "longitude": "75.75634000" + }, + { + "id": "57961", + "name": "Bhandara", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.18333000", + "longitude": "80.00000000" + }, + { + "id": "57962", + "name": "Bhandāra", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.16817000", + "longitude": "79.64885000" + }, + { + "id": "57978", + "name": "Bhayandar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.30157000", + "longitude": "72.85107000" + }, + { + "id": "58024", + "name": "Bhūm", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.45908000", + "longitude": "75.65877000" + }, + { + "id": "57979", + "name": "Bhigvan", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.30070000", + "longitude": "74.76701000" + }, + { + "id": "57987", + "name": "Bhiwandi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.30023000", + "longitude": "73.05881000" + }, + { + "id": "57997", + "name": "Bhor", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.14861000", + "longitude": "73.84336000" + }, + { + "id": "58001", + "name": "Bhudgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.90742000", + "longitude": "74.59954000" + }, + { + "id": "58005", + "name": "Bhusāval", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.04365000", + "longitude": "75.78506000" + }, + { + "id": "58026", + "name": "Bid", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.83333000", + "longitude": "75.75000000" + }, + { + "id": "58047", + "name": "Biloli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.77385000", + "longitude": "77.72463000" + }, + { + "id": "58074", + "name": "Boisar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.80362000", + "longitude": "72.75598000" + }, + { + "id": "58082", + "name": "Borivli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.23496000", + "longitude": "72.85976000" + }, + { + "id": "58094", + "name": "Buldana", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.58333000", + "longitude": "76.41667000" + }, + { + "id": "58095", + "name": "Buldāna", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.52933000", + "longitude": "76.18457000" + }, + { + "id": "58192", + "name": "Chandrapur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.11793000", + "longitude": "79.44377000" + }, + { + "id": "131589", + "name": "Chākan", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.76059000", + "longitude": "73.86351000" + }, + { + "id": "131592", + "name": "Chālisgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.45781000", + "longitude": "75.01596000" + }, + { + "id": "131596", + "name": "Chānda", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.95076000", + "longitude": "79.29523000" + }, + { + "id": "131602", + "name": "Chāndūr", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.81408000", + "longitude": "77.98015000" + }, + { + "id": "131603", + "name": "Chāndūr Bāzār", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.23853000", + "longitude": "77.74713000" + }, + { + "id": "131599", + "name": "Chāndor", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.33060000", + "longitude": "74.24467000" + }, + { + "id": "131601", + "name": "Chāndur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.73444000", + "longitude": "79.17167000" + }, + { + "id": "131544", + "name": "Chicholi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.46926000", + "longitude": "79.70151000" + }, + { + "id": "131549", + "name": "Chikhli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.35046000", + "longitude": "76.25774000" + }, + { + "id": "131558", + "name": "Chinchani", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.87458000", + "longitude": "72.68510000" + }, + { + "id": "131567", + "name": "Chiplūn", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.53339000", + "longitude": "73.50935000" + }, + { + "id": "131580", + "name": "Chopda", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.24578000", + "longitude": "75.29946000" + }, + { + "id": "131659", + "name": "Daryāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.92489000", + "longitude": "77.32644000" + }, + { + "id": "131663", + "name": "Dattāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.78075000", + "longitude": "78.14070000" + }, + { + "id": "131666", + "name": "Daulatābād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.93611000", + "longitude": "75.22148000" + }, + { + "id": "131667", + "name": "Daund", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.46515000", + "longitude": "74.58375000" + }, + { + "id": "131805", + "name": "Dābhol", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.58971000", + "longitude": "73.18001000" + }, + { + "id": "131807", + "name": "Dāhānu", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.96778000", + "longitude": "72.71263000" + }, + { + "id": "131810", + "name": "Dārwha", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.31017000", + "longitude": "77.77257000" + }, + { + "id": "131815", + "name": "Dīglūr", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.54829000", + "longitude": "77.57695000" + }, + { + "id": "131709", + "name": "Deūlgaon Rāja", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.01757000", + "longitude": "76.03755000" + }, + { + "id": "131678", + "name": "Dehu", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.71851000", + "longitude": "73.76635000" + }, + { + "id": "131688", + "name": "Deolāli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.94404000", + "longitude": "73.83441000" + }, + { + "id": "131686", + "name": "Deoli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.64920000", + "longitude": "78.48023000" + }, + { + "id": "131722", + "name": "Dharangaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.01187000", + "longitude": "75.27407000" + }, + { + "id": "131728", + "name": "Dharmābād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.89116000", + "longitude": "77.84940000" + }, + { + "id": "131758", + "name": "Dhārūr", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.82017000", + "longitude": "76.10937000" + }, + { + "id": "131759", + "name": "Dhūlia", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.90130000", + "longitude": "74.77737000" + }, + { + "id": "131746", + "name": "Dhule", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.06852000", + "longitude": "74.58837000" + }, + { + "id": "131768", + "name": "Digras", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.10350000", + "longitude": "77.71846000" + }, + { + "id": "131785", + "name": "Dombivli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.21667000", + "longitude": "73.08333000" + }, + { + "id": "131786", + "name": "Dondaicha", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.32360000", + "longitude": "74.56804000" + }, + { + "id": "131792", + "name": "Dudhani", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.35792000", + "longitude": "76.36688000" + }, + { + "id": "131802", + "name": "Durgāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.00540000", + "longitude": "79.30273000" + }, + { + "id": "131838", + "name": "Erandol", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.92206000", + "longitude": "75.32641000" + }, + { + "id": "131850", + "name": "Faizpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.16766000", + "longitude": "75.86006000" + }, + { + "id": "131886", + "name": "Gadchiroli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.80000000", + "longitude": "80.20000000" + }, + { + "id": "131889", + "name": "Gadhinglaj", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.22291000", + "longitude": "74.35010000" + }, + { + "id": "131907", + "name": "Gangākher", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.96962000", + "longitude": "76.74946000" + }, + { + "id": "131910", + "name": "Gangāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.69718000", + "longitude": "75.01045000" + }, + { + "id": "131934", + "name": "Gevrai", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.26372000", + "longitude": "75.75007000" + }, + { + "id": "131951", + "name": "Ghātanji", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.14183000", + "longitude": "78.31333000" + }, + { + "id": "131947", + "name": "Ghoti Budrukh", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.71641000", + "longitude": "73.62821000" + }, + { + "id": "131948", + "name": "Ghugus", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.93810000", + "longitude": "79.11192000" + }, + { + "id": "131984", + "name": "Gondiā", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.46026000", + "longitude": "80.19205000" + }, + { + "id": "131983", + "name": "Gondiya", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.05000000", + "longitude": "80.25000000" + }, + { + "id": "131994", + "name": "Goregaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.15483000", + "longitude": "73.29147000" + }, + { + "id": "132014", + "name": "Guhāgar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.48415000", + "longitude": "73.19289000" + }, + { + "id": "132054", + "name": "Hadgāon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.49552000", + "longitude": "77.65863000" + }, + { + "id": "132078", + "name": "Harnai", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.81340000", + "longitude": "73.09668000" + }, + { + "id": "132149", + "name": "Hīrāpur Hamesha", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.55546000", + "longitude": "79.78581000" + }, + { + "id": "132100", + "name": "Hinganghāt", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.54875000", + "longitude": "78.83978000" + }, + { + "id": "132101", + "name": "Hingoli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.70000000", + "longitude": "77.15000000" + }, + { + "id": "132150", + "name": "Ichalkaranji", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.69117000", + "longitude": "74.46054000" + }, + { + "id": "132155", + "name": "Igatpuri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.69522000", + "longitude": "73.56260000" + }, + { + "id": "132168", + "name": "Indāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.30000000", + "longitude": "73.25000000" + }, + { + "id": "132205", + "name": "Jaisingpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.77639000", + "longitude": "74.55361000" + }, + { + "id": "132214", + "name": "Jalgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.00292000", + "longitude": "75.56602000" + }, + { + "id": "132215", + "name": "Jalgaon Jamod", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.05194000", + "longitude": "76.53464000" + }, + { + "id": "132216", + "name": "Jalna", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.80000000", + "longitude": "75.90000000" + }, + { + "id": "132254", + "name": "Jawhār", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.91213000", + "longitude": "73.22679000" + }, + { + "id": "132307", + "name": "Jālna", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.84102000", + "longitude": "75.88636000" + }, + { + "id": "132260", + "name": "Jejūri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.27658000", + "longitude": "74.16008000" + }, + { + "id": "132282", + "name": "Jintūr", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.61186000", + "longitude": "76.68740000" + }, + { + "id": "132301", + "name": "Junnar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.20815000", + "longitude": "73.87520000" + }, + { + "id": "132345", + "name": "Kalamb", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.04437000", + "longitude": "73.95554000" + }, + { + "id": "132346", + "name": "Kalamnūri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.67386000", + "longitude": "77.31149000" + }, + { + "id": "132348", + "name": "Kalas", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.17241000", + "longitude": "74.79045000" + }, + { + "id": "132355", + "name": "Kalmeshwar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.23219000", + "longitude": "78.91988000" + }, + { + "id": "132359", + "name": "Kalyān", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.24370000", + "longitude": "73.13554000" + }, + { + "id": "132375", + "name": "Kankauli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.26609000", + "longitude": "73.71217000" + }, + { + "id": "132377", + "name": "Kannad", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.25684000", + "longitude": "75.13786000" + }, + { + "id": "132412", + "name": "Karād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.28937000", + "longitude": "74.18183000" + }, + { + "id": "132403", + "name": "Karjat", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.91070000", + "longitude": "73.32354000" + }, + { + "id": "132404", + "name": "Karmāla", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.40770000", + "longitude": "75.19386000" + }, + { + "id": "132677", + "name": "Kāgal", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.57702000", + "longitude": "74.31544000" + }, + { + "id": "132684", + "name": "Kālundri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.98020000", + "longitude": "73.12708000" + }, + { + "id": "132694", + "name": "Kāmthi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.21615000", + "longitude": "79.19730000" + }, + { + "id": "132700", + "name": "Kāndri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.42030000", + "longitude": "79.27663000" + }, + { + "id": "132717", + "name": "Kāranja", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.48273000", + "longitude": "77.48857000" + }, + { + "id": "132724", + "name": "Kāti", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.96137000", + "longitude": "75.88895000" + }, + { + "id": "132725", + "name": "Kātol", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.27388000", + "longitude": "78.58580000" + }, + { + "id": "132450", + "name": "Khadki", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.56350000", + "longitude": "73.85205000" + }, + { + "id": "132471", + "name": "Kharakvasla", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.43997000", + "longitude": "73.77545000" + }, + { + "id": "132513", + "name": "Khāmgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.70738000", + "longitude": "76.56827000" + }, + { + "id": "132517", + "name": "Khāpa", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.42243000", + "longitude": "78.98168000" + }, + { + "id": "132487", + "name": "Khed", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.71888000", + "longitude": "73.39693000" + }, + { + "id": "132495", + "name": "Khetia", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.67124000", + "longitude": "74.58535000" + }, + { + "id": "132500", + "name": "Khopoli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.78562000", + "longitude": "73.34589000" + }, + { + "id": "132505", + "name": "Khuldābād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.00671000", + "longitude": "75.19245000" + }, + { + "id": "132524", + "name": "Kinwat", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.62557000", + "longitude": "78.19870000" + }, + { + "id": "132543", + "name": "Kodoli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.87639000", + "longitude": "74.19090000" + }, + { + "id": "132556", + "name": "Kolhapur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.69013000", + "longitude": "74.22981000" + }, + { + "id": "132557", + "name": "Kolhāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.69563000", + "longitude": "74.23167000" + }, + { + "id": "132566", + "name": "Kondalwādi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.80727000", + "longitude": "77.77031000" + }, + { + "id": "132572", + "name": "Kopargaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.88239000", + "longitude": "74.47605000" + }, + { + "id": "132586", + "name": "Korādi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.24758000", + "longitude": "79.10575000" + }, + { + "id": "132582", + "name": "Koregaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.64573000", + "longitude": "74.05909000" + }, + { + "id": "132618", + "name": "Koynanagar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.40000000", + "longitude": "73.76667000" + }, + { + "id": "132629", + "name": "Kudāl", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.01148000", + "longitude": "73.68867000" + }, + { + "id": "132656", + "name": "Kurandvād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.68317000", + "longitude": "74.58892000" + }, + { + "id": "132657", + "name": "Kurduvādi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.09339000", + "longitude": "75.41567000" + }, + { + "id": "132759", + "name": "Latur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.40000000", + "longitude": "76.80000000" + }, + { + "id": "132799", + "name": "Lānja", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.86086000", + "longitude": "73.54993000" + }, + { + "id": "132800", + "name": "Lāsalgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.14270000", + "longitude": "74.23946000" + }, + { + "id": "132770", + "name": "Lohogaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.59921000", + "longitude": "73.92701000" + }, + { + "id": "132773", + "name": "Lonavla", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.75275000", + "longitude": "73.40575000" + }, + { + "id": "132776", + "name": "Lonār", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.98533000", + "longitude": "76.52046000" + }, + { + "id": "132844", + "name": "Mahābaleshwar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.56000000", + "longitude": "73.40000000" + }, + { + "id": "132846", + "name": "Mahād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.08333000", + "longitude": "73.41667000" + }, + { + "id": "132856", + "name": "Maindargi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.45739000", + "longitude": "76.29320000" + }, + { + "id": "132872", + "name": "Malkapur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.26214000", + "longitude": "74.17574000" + }, + { + "id": "132874", + "name": "Malkāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.88555000", + "longitude": "76.19932000" + }, + { + "id": "132886", + "name": "Manchar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.00436000", + "longitude": "73.94346000" + }, + { + "id": "132909", + "name": "Mangrūl Pīr", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.31379000", + "longitude": "77.34178000" + }, + { + "id": "132918", + "name": "Manmād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.25334000", + "longitude": "74.43755000" + }, + { + "id": "132924", + "name": "Manor", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.72440000", + "longitude": "72.90966000" + }, + { + "id": "132926", + "name": "Mansar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.39602000", + "longitude": "79.26350000" + }, + { + "id": "133062", + "name": "Mājalgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.15988000", + "longitude": "76.20832000" + }, + { + "id": "133063", + "name": "Mākhjan", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.26980000", + "longitude": "73.50031000" + }, + { + "id": "133065", + "name": "Mālegaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.54966000", + "longitude": "74.53462000" + }, + { + "id": "133070", + "name": "Mālvan", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.05981000", + "longitude": "73.46290000" + }, + { + "id": "133084", + "name": "Mānwat", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.30133000", + "longitude": "76.49735000" + }, + { + "id": "133090", + "name": "Mātherān", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.98281000", + "longitude": "73.26520000" + }, + { + "id": "133099", + "name": "Mūl", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.06987000", + "longitude": "79.67826000" + }, + { + "id": "132961", + "name": "Mehekar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.15050000", + "longitude": "76.56841000" + }, + { + "id": "132971", + "name": "Mhasla", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.13340000", + "longitude": "73.11162000" + }, + { + "id": "132972", + "name": "Mhāsvād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.63359000", + "longitude": "74.78773000" + }, + { + "id": "132985", + "name": "Mohpa", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.31012000", + "longitude": "78.82969000" + }, + { + "id": "132992", + "name": "Moram", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.78812000", + "longitude": "76.47077000" + }, + { + "id": "132999", + "name": "Morsi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.34030000", + "longitude": "78.01258000" + }, + { + "id": "133006", + "name": "Mowād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.46475000", + "longitude": "78.45103000" + }, + { + "id": "133012", + "name": "Mudkhed", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.15657000", + "longitude": "77.50304000" + }, + { + "id": "133018", + "name": "Mukher", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.70636000", + "longitude": "77.36795000" + }, + { + "id": "133024", + "name": "Mumbai", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.07283000", + "longitude": "72.88261000" + }, + { + "id": "133025", + "name": "Mumbai Suburban", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.12636000", + "longitude": "72.84897000" + }, + { + "id": "133035", + "name": "Murbād", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.25395000", + "longitude": "73.38993000" + }, + { + "id": "133036", + "name": "Murgūd", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.39604000", + "longitude": "74.19142000" + }, + { + "id": "133039", + "name": "Murtajāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.73299000", + "longitude": "77.36694000" + }, + { + "id": "133040", + "name": "Murud", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.32817000", + "longitude": "72.96210000" + }, + { + "id": "133116", + "name": "Nagpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.14631000", + "longitude": "79.08491000" + }, + { + "id": "133117", + "name": "Nagpur Division", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.14911000", + "longitude": "79.10748000" + }, + { + "id": "133131", + "name": "Naldurg", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.81667000", + "longitude": "76.28182000" + }, + { + "id": "133141", + "name": "Nanded", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.91667000", + "longitude": "77.50000000" + }, + { + "id": "133145", + "name": "Nandurbar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.37000000", + "longitude": "74.20000000" + }, + { + "id": "133177", + "name": "Nashik", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.99727000", + "longitude": "73.79096000" + }, + { + "id": "133178", + "name": "Nashik Division", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.98295000", + "longitude": "73.78942000" + }, + { + "id": "133186", + "name": "Navi Mumbai", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.03681000", + "longitude": "73.01582000" + }, + { + "id": "133260", + "name": "Nāgothana", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.54225000", + "longitude": "73.13493000" + }, + { + "id": "133268", + "name": "Nāndūra Buzurg", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.83417000", + "longitude": "76.45924000" + }, + { + "id": "133267", + "name": "Nāndgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.30680000", + "longitude": "74.65501000" + }, + { + "id": "133208", + "name": "Neral", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.02475000", + "longitude": "73.31688000" + }, + { + "id": "133217", + "name": "Nilanga", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.11675000", + "longitude": "76.75279000" + }, + { + "id": "133220", + "name": "Nipāni", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.39900000", + "longitude": "74.38285000" + }, + { + "id": "133305", + "name": "Osmanabad", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.25000000", + "longitude": "76.16667000" + }, + { + "id": "133307", + "name": "Ozar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.09473000", + "longitude": "73.92816000" + }, + { + "id": "133319", + "name": "Paithan", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.47506000", + "longitude": "75.38558000" + }, + { + "id": "133347", + "name": "Pandharpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.67924000", + "longitude": "75.33098000" + }, + { + "id": "133349", + "name": "Panhāla", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.81210000", + "longitude": "74.11007000" + }, + { + "id": "133353", + "name": "Panvel", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.98878000", + "longitude": "73.11013000" + }, + { + "id": "133358", + "name": "Parbhani", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.50000000", + "longitude": "76.75000000" + }, + { + "id": "133360", + "name": "Parli Vaijnāth", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.85057000", + "longitude": "76.53163000" + }, + { + "id": "133364", + "name": "Parola", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.88098000", + "longitude": "75.11937000" + }, + { + "id": "133367", + "name": "Partūr", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.59925000", + "longitude": "76.21541000" + }, + { + "id": "133397", + "name": "Pawni", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.79229000", + "longitude": "79.63644000" + }, + { + "id": "133520", + "name": "Pāchora", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.66727000", + "longitude": "75.35305000" + }, + { + "id": "133527", + "name": "Pālghar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.69693000", + "longitude": "72.76543000" + }, + { + "id": "133537", + "name": "Pānchgani", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.92449000", + "longitude": "73.80080000" + }, + { + "id": "133554", + "name": "Pātan", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.37513000", + "longitude": "73.90143000" + }, + { + "id": "133559", + "name": "Pātūr", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.46093000", + "longitude": "76.93725000" + }, + { + "id": "133556", + "name": "Pāthardi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.17279000", + "longitude": "75.17425000" + }, + { + "id": "133558", + "name": "Pāthri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.25880000", + "longitude": "76.43412000" + }, + { + "id": "133564", + "name": "Pīpri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.79371000", + "longitude": "75.53519000" + }, + { + "id": "133571", + "name": "Pūrna", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.18170000", + "longitude": "77.02566000" + }, + { + "id": "133404", + "name": "Pen", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.73734000", + "longitude": "73.09603000" + }, + { + "id": "133434", + "name": "Phaltan", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.99113000", + "longitude": "74.43177000" + }, + { + "id": "133449", + "name": "Pimpri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.62292000", + "longitude": "73.80696000" + }, + { + "id": "133484", + "name": "Powai", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.11640000", + "longitude": "72.90471000" + }, + { + "id": "133496", + "name": "Pulgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.72204000", + "longitude": "78.32056000" + }, + { + "id": "133504", + "name": "Pune", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.51957000", + "longitude": "73.85535000" + }, + { + "id": "133505", + "name": "Pune Division", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.74673000", + "longitude": "73.75465000" + }, + { + "id": "133515", + "name": "Pusad", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.91274000", + "longitude": "77.57838000" + }, + { + "id": "133583", + "name": "Rahimatpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.59210000", + "longitude": "74.19966000" + }, + { + "id": "133588", + "name": "Raigarh", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.57000000", + "longitude": "73.13000000" + }, + { + "id": "133619", + "name": "Ratnagiri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.00000000", + "longitude": "73.50000000" + }, + { + "id": "133663", + "name": "Rāhuri", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.39069000", + "longitude": "74.64979000" + }, + { + "id": "133687", + "name": "Rājāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.65679000", + "longitude": "73.51701000" + }, + { + "id": "133689", + "name": "Rājūra", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.77947000", + "longitude": "79.36459000" + }, + { + "id": "133677", + "name": "Rājgurunagar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.86667000", + "longitude": "73.90000000" + }, + { + "id": "133685", + "name": "Rājur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.11087000", + "longitude": "78.89311000" + }, + { + "id": "133710", + "name": "Rāmtek", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.39562000", + "longitude": "79.32725000" + }, + { + "id": "133724", + "name": "Rāver", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.24757000", + "longitude": "76.03509000" + }, + { + "id": "133631", + "name": "Revadanda", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.55363000", + "longitude": "72.92559000" + }, + { + "id": "133639", + "name": "Risod", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.97671000", + "longitude": "76.78799000" + }, + { + "id": "133644", + "name": "Roha", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.43687000", + "longitude": "73.11964000" + }, + { + "id": "133780", + "name": "Sangamner", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.56784000", + "longitude": "74.21154000" + }, + { + "id": "133782", + "name": "Sangli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.11202000", + "longitude": "74.76990000" + }, + { + "id": "133797", + "name": "Saoner", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.38510000", + "longitude": "78.92155000" + }, + { + "id": "133815", + "name": "Satara", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.68589000", + "longitude": "73.99333000" + }, + { + "id": "133816", + "name": "Satara Division", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.72601000", + "longitude": "74.06433000" + }, + { + "id": "133825", + "name": "Satānā", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.59483000", + "longitude": "74.20301000" + }, + { + "id": "134073", + "name": "Sāngli", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.85438000", + "longitude": "74.56417000" + }, + { + "id": "134074", + "name": "Sāngola", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.43948000", + "longitude": "75.19379000" + }, + { + "id": "134081", + "name": "Sāsvad", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.34351000", + "longitude": "74.03102000" + }, + { + "id": "134082", + "name": "Sāvantvādi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "15.90413000", + "longitude": "73.82191000" + }, + { + "id": "134083", + "name": "Sāvda", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.15054000", + "longitude": "75.88938000" + }, + { + "id": "133836", + "name": "Selu", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.45512000", + "longitude": "76.44073000" + }, + { + "id": "133908", + "name": "Shāhāda", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.54538000", + "longitude": "74.47106000" + }, + { + "id": "133909", + "name": "Shāhāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.45231000", + "longitude": "73.32572000" + }, + { + "id": "133857", + "name": "Shegaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.79320000", + "longitude": "76.69921000" + }, + { + "id": "133873", + "name": "Shiraguppi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.61875000", + "longitude": "74.70907000" + }, + { + "id": "133874", + "name": "Shirdi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.76616000", + "longitude": "74.47738000" + }, + { + "id": "133875", + "name": "Shirgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.69589000", + "longitude": "72.71527000" + }, + { + "id": "133877", + "name": "Shirpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.34821000", + "longitude": "74.88035000" + }, + { + "id": "133878", + "name": "Shirwal", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.15059000", + "longitude": "73.97788000" + }, + { + "id": "133879", + "name": "Shivaji Nagar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.53017000", + "longitude": "73.85263000" + }, + { + "id": "133886", + "name": "Shrīgonda", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.61527000", + "longitude": "74.69895000" + }, + { + "id": "133936", + "name": "Sillod", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.30303000", + "longitude": "75.65284000" + }, + { + "id": "133943", + "name": "Sindhudurg", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "16.17000000", + "longitude": "73.70000000" + }, + { + "id": "133944", + "name": "Sindi", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.80509000", + "longitude": "78.88752000" + }, + { + "id": "133953", + "name": "Sinnar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.84505000", + "longitude": "73.99866000" + }, + { + "id": "133970", + "name": "Sirūr", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.82760000", + "longitude": "74.37475000" + }, + { + "id": "133986", + "name": "Solapur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.75000000", + "longitude": "75.50000000" + }, + { + "id": "133988", + "name": "Solāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.67152000", + "longitude": "75.91044000" + }, + { + "id": "133993", + "name": "Sonegaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.62915000", + "longitude": "78.69207000" + }, + { + "id": "134015", + "name": "Soygaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.59606000", + "longitude": "75.61765000" + }, + { + "id": "134033", + "name": "Srīvardhan", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.04592000", + "longitude": "73.01552000" + }, + { + "id": "134052", + "name": "Surgāna", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.55956000", + "longitude": "73.63747000" + }, + { + "id": "134100", + "name": "Talegaon Dābhāde", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.73502000", + "longitude": "73.67561000" + }, + { + "id": "134104", + "name": "Taloda", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.56128000", + "longitude": "74.21238000" + }, + { + "id": "134241", + "name": "Tārāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.86499000", + "longitude": "72.68426000" + }, + { + "id": "134242", + "name": "Tāsgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.03700000", + "longitude": "74.60171000" + }, + { + "id": "134128", + "name": "Telhāra", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.02694000", + "longitude": "76.83889000" + }, + { + "id": "134138", + "name": "Thane", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.33333000", + "longitude": "73.25000000" + }, + { + "id": "134166", + "name": "Thāne", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.19704000", + "longitude": "72.96355000" + }, + { + "id": "134212", + "name": "Trimbak", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.93268000", + "longitude": "73.52907000" + }, + { + "id": "134217", + "name": "Tuljāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.00804000", + "longitude": "76.07011000" + }, + { + "id": "134221", + "name": "Tumsar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.38333000", + "longitude": "79.73333000" + }, + { + "id": "134255", + "name": "Udgīr", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.39258000", + "longitude": "77.11756000" + }, + { + "id": "134267", + "name": "Ulhasnagar", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.21667000", + "longitude": "73.15000000" + }, + { + "id": "134269", + "name": "Umarga", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.83841000", + "longitude": "76.62331000" + }, + { + "id": "134272", + "name": "Umarkhed", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.60144000", + "longitude": "77.68878000" + }, + { + "id": "134274", + "name": "Umred", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.85396000", + "longitude": "79.32466000" + }, + { + "id": "134291", + "name": "Uran", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.87813000", + "longitude": "72.93924000" + }, + { + "id": "134312", + "name": "Vaijāpur", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.92672000", + "longitude": "74.72750000" + }, + { + "id": "134328", + "name": "Varangaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.01767000", + "longitude": "75.91042000" + }, + { + "id": "134334", + "name": "Vasind", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.40844000", + "longitude": "73.26285000" + }, + { + "id": "134379", + "name": "Vāda", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.65347000", + "longitude": "73.14811000" + }, + { + "id": "134346", + "name": "Vengurla", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "15.86125000", + "longitude": "73.63182000" + }, + { + "id": "134368", + "name": "Virār", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "19.45591000", + "longitude": "72.81136000" + }, + { + "id": "134372", + "name": "Vite", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.27343000", + "longitude": "74.53792000" + }, + { + "id": "134388", + "name": "Wadgaon", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "18.73920000", + "longitude": "73.63945000" + }, + { + "id": "134390", + "name": "Wai", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "17.95276000", + "longitude": "73.89058000" + }, + { + "id": "134393", + "name": "Wani", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.05507000", + "longitude": "78.95313000" + }, + { + "id": "134396", + "name": "Wardha", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.73933000", + "longitude": "78.59784000" + }, + { + "id": "134397", + "name": "Warora", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.22885000", + "longitude": "79.00277000" + }, + { + "id": "134398", + "name": "Warud", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.47101000", + "longitude": "78.26965000" + }, + { + "id": "134399", + "name": "Washim", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.20000000", + "longitude": "77.20000000" + }, + { + "id": "134419", + "name": "Wāshīm", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.11128000", + "longitude": "77.13300000" + }, + { + "id": "134427", + "name": "Yavatmal", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.15000000", + "longitude": "78.35000000" + }, + { + "id": "134428", + "name": "Yavatmāl", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.39324000", + "longitude": "78.13201000" + }, + { + "id": "134438", + "name": "Yāval", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "21.16772000", + "longitude": "75.69762000" + }, + { + "id": "134434", + "name": "Yeola", + "state_id": 4008, + "state_code": "MH", + "country_id": 101, + "country_code": "IN", + "latitude": "20.04240000", + "longitude": "74.48944000" + }, + { + "id": "58064", + "name": "Bishnupur", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.60769000", + "longitude": "93.77998000" + }, + { + "id": "131585", + "name": "Churachandpur", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.33333000", + "longitude": "93.68333000" + }, + { + "id": "131586", + "name": "Churāchāndpur", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.33353000", + "longitude": "93.66999000" + }, + { + "id": "132162", + "name": "Imphal", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.80805000", + "longitude": "93.94420000" + }, + { + "id": "132341", + "name": "Kakching", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.49820000", + "longitude": "93.98126000" + }, + { + "id": "132953", + "name": "Mayāng Imphāl", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.60998000", + "longitude": "93.88873000" + }, + { + "id": "132987", + "name": "Moirāng", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.49750000", + "longitude": "93.77791000" + }, + { + "id": "133437", + "name": "Phek", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "25.66667000", + "longitude": "94.50000000" + }, + { + "id": "133837", + "name": "Senapati", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "25.26705000", + "longitude": "94.02237000" + }, + { + "id": "134109", + "name": "Tamenglong", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.97548000", + "longitude": "93.51563000" + }, + { + "id": "134159", + "name": "Thoubal", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.62205000", + "longitude": "94.01001000" + }, + { + "id": "134160", + "name": "Thoubāl", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.63881000", + "longitude": "93.99639000" + }, + { + "id": "134264", + "name": "Ukhrul", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "25.04828000", + "longitude": "94.35883000" + }, + { + "id": "134415", + "name": "Wāngjing", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.58921000", + "longitude": "94.06386000" + }, + { + "id": "134421", + "name": "Yairipok", + "state_id": 4010, + "state_code": "MN", + "country_id": 101, + "country_code": "IN", + "latitude": "24.67792000", + "longitude": "94.04767000" + }, + { + "id": "131520", + "name": "Cherrapunji", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.30089000", + "longitude": "91.69619000" + }, + { + "id": "131824", + "name": "East Gāro Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.61372000", + "longitude": "90.62426000" + }, + { + "id": "131825", + "name": "East Jaintia Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.35976000", + "longitude": "92.36680000" + }, + { + "id": "131827", + "name": "East Khāsi Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.38050000", + "longitude": "91.78905000" + }, + { + "id": "132858", + "name": "Mairang", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.56165000", + "longitude": "91.63602000" + }, + { + "id": "132916", + "name": "Mankāchar", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.53347000", + "longitude": "89.86373000" + }, + { + "id": "133232", + "name": "Nongpoh", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.90230000", + "longitude": "91.87694000" + }, + { + "id": "133233", + "name": "Nongstoin", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.51704000", + "longitude": "91.26484000" + }, + { + "id": "133237", + "name": "North Garo Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.89682000", + "longitude": "90.61602000" + }, + { + "id": "133636", + "name": "Ri-Bhoi", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.88997000", + "longitude": "91.82707000" + }, + { + "id": "133870", + "name": "Shillong", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.56892000", + "longitude": "91.88313000" + }, + { + "id": "134009", + "name": "South Garo Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.30162000", + "longitude": "90.58530000" + }, + { + "id": "134013", + "name": "South West Garo Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.47245000", + "longitude": "89.93399000" + }, + { + "id": "134014", + "name": "South West Khasi Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.32155000", + "longitude": "91.29462000" + }, + { + "id": "134223", + "name": "Tura", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.51421000", + "longitude": "90.20239000" + }, + { + "id": "134406", + "name": "West Garo Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.56794000", + "longitude": "90.22447000" + }, + { + "id": "134408", + "name": "West Jaintia Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "92.25000000" + }, + { + "id": "134410", + "name": "West Khasi Hills", + "state_id": 4006, + "state_code": "ML", + "country_id": 101, + "country_code": "IN", + "latitude": "25.54776000", + "longitude": "91.26957000" + }, + { + "id": "57610", + "name": "Aizawl", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.80000000", + "longitude": "92.90000000" + }, + { + "id": "58184", + "name": "Champhai", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.47444000", + "longitude": "93.32556000" + }, + { + "id": "131656", + "name": "Darlawn", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.01336000", + "longitude": "92.92439000" + }, + { + "id": "132486", + "name": "Khawhai", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.37807000", + "longitude": "93.12797000" + }, + { + "id": "132554", + "name": "Kolasib", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.22388000", + "longitude": "92.67869000" + }, + { + "id": "132555", + "name": "Kolasib district", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.22215000", + "longitude": "92.67697000" + }, + { + "id": "132761", + "name": "Lawngtlai", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.53000000", + "longitude": "92.90000000" + }, + { + "id": "132787", + "name": "Lunglei", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.90000000", + "longitude": "92.75000000" + }, + { + "id": "132879", + "name": "Mamit", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.78492000", + "longitude": "92.46939000" + }, + { + "id": "133242", + "name": "North Vanlaiphai", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.13227000", + "longitude": "93.06532000" + }, + { + "id": "133756", + "name": "Saiha", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "22.49183000", + "longitude": "92.98143000" + }, + { + "id": "133759", + "name": "Sairang", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.81034000", + "longitude": "92.65226000" + }, + { + "id": "134063", + "name": "Sāitlaw", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.97187000", + "longitude": "92.57454000" + }, + { + "id": "133848", + "name": "Serchhīp", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.29312000", + "longitude": "92.84679000" + }, + { + "id": "133847", + "name": "Serchhip", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.28172000", + "longitude": "92.90039000" + }, + { + "id": "134148", + "name": "Thenzawl", + "state_id": 4036, + "state_code": "MZ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.31667000", + "longitude": "92.75000000" + }, + { + "id": "131771", + "name": "Dimapur", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "25.77852000", + "longitude": "93.78508000" + }, + { + "id": "131772", + "name": "Dimāpur", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "25.91174000", + "longitude": "93.72170000" + }, + { + "id": "132550", + "name": "Kohīma", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "94.16667000" + }, + { + "id": "132549", + "name": "Kohima", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "25.67467000", + "longitude": "94.11099000" + }, + { + "id": "132989", + "name": "Mokokchūng", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "26.31393000", + "longitude": "94.51675000" + }, + { + "id": "132990", + "name": "Mon", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "26.75000000", + "longitude": "94.83333000" + }, + { + "id": "133416", + "name": "Peren", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "25.51276000", + "longitude": "93.73716000" + }, + { + "id": "133438", + "name": "Phek", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "94.50000000" + }, + { + "id": "134215", + "name": "Tuensang", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "26.26704000", + "longitude": "94.82415000" + }, + { + "id": "134216", + "name": "Tuensang District", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "26.25000000", + "longitude": "94.75000000" + }, + { + "id": "134413", + "name": "Wokha", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "26.16667000", + "longitude": "94.25000000" + }, + { + "id": "134445", + "name": "Zunheboto", + "state_id": 4018, + "state_code": "NL", + "country_id": 101, + "country_code": "IN", + "latitude": "26.00000000", + "longitude": "94.50000000" + }, + { + "id": "57704", + "name": "Angul", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.84089000", + "longitude": "85.10192000" + }, + { + "id": "57705", + "name": "Angul District", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.84903000", + "longitude": "85.06079000" + }, + { + "id": "134465", + "name": "Āsika", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.61114000", + "longitude": "84.65998000" + }, + { + "id": "134467", + "name": "Āthagarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.51999000", + "longitude": "85.62965000" + }, + { + "id": "57785", + "name": "Bada Barabīl", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.11186000", + "longitude": "85.38684000" + }, + { + "id": "57823", + "name": "Balasore", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.49266000", + "longitude": "86.93348000" + }, + { + "id": "57835", + "name": "Balāngīr", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.75000000", + "longitude": "83.25000000" + }, + { + "id": "57826", + "name": "Balimila", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "18.25167000", + "longitude": "82.10659000" + }, + { + "id": "57862", + "name": "Baragarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.33333000", + "longitude": "83.61667000" + }, + { + "id": "57866", + "name": "Barbil", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.10194000", + "longitude": "85.37752000" + }, + { + "id": "57869", + "name": "Bargarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.33348000", + "longitude": "83.61905000" + }, + { + "id": "57886", + "name": "Barpāli", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.19005000", + "longitude": "83.58721000" + }, + { + "id": "57907", + "name": "Baud", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.83773000", + "longitude": "84.32618000" + }, + { + "id": "57908", + "name": "Baudh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.83300000", + "longitude": "84.33300000" + }, + { + "id": "58114", + "name": "Bāleshwar", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.50000000", + "longitude": "86.75000000" + }, + { + "id": "58117", + "name": "Bālugaon", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.17838000", + "longitude": "85.11327000" + }, + { + "id": "58123", + "name": "Bānapur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.77889000", + "longitude": "85.17033000" + }, + { + "id": "58128", + "name": "Bānki", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.37912000", + "longitude": "85.52953000" + }, + { + "id": "58129", + "name": "Bānposh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.24834000", + "longitude": "84.81044000" + }, + { + "id": "58149", + "name": "Bāsudebpur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.11974000", + "longitude": "86.72896000" + }, + { + "id": "57921", + "name": "Belaguntha", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.88249000", + "longitude": "84.63801000" + }, + { + "id": "57953", + "name": "Bhadrak", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.00000000", + "longitude": "86.60000000" + }, + { + "id": "57954", + "name": "Bhadrakh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.05447000", + "longitude": "86.51560000" + }, + { + "id": "57963", + "name": "Bhanjanagar", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.92719000", + "longitude": "84.58201000" + }, + { + "id": "57976", + "name": "Bhawānipatna", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.90717000", + "longitude": "83.16697000" + }, + { + "id": "57999", + "name": "Bhuban", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.88197000", + "longitude": "85.83334000" + }, + { + "id": "58000", + "name": "Bhubaneshwar", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.27241000", + "longitude": "85.83385000" + }, + { + "id": "58058", + "name": "Binka", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.02626000", + "longitude": "83.81197000" + }, + { + "id": "58060", + "name": "Birmitrapur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.40000000", + "longitude": "84.76667000" + }, + { + "id": "58079", + "name": "Bolānīkhodān", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.11312000", + "longitude": "85.33645000" + }, + { + "id": "58086", + "name": "Brahmapur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.31151000", + "longitude": "84.79290000" + }, + { + "id": "58087", + "name": "Brājarājnagar", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.81667000", + "longitude": "83.91667000" + }, + { + "id": "58092", + "name": "Buguda", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.80806000", + "longitude": "84.79084000" + }, + { + "id": "58099", + "name": "Burla", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.50976000", + "longitude": "83.87259000" + }, + { + "id": "131510", + "name": "Chatrapur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.35574000", + "longitude": "84.98359000" + }, + { + "id": "131594", + "name": "Chāmpua", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.06734000", + "longitude": "85.66463000" + }, + { + "id": "131597", + "name": "Chāndbāli", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.77519000", + "longitude": "86.74139000" + }, + { + "id": "131550", + "name": "Chikitigarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.20233000", + "longitude": "84.61450000" + }, + { + "id": "131573", + "name": "Chittarkonda", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "18.12533000", + "longitude": "82.10890000" + }, + { + "id": "131633", + "name": "Cuttack", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.50000000", + "longitude": "86.25000000" + }, + { + "id": "131643", + "name": "Daitari", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.10000000", + "longitude": "85.75000000" + }, + { + "id": "131683", + "name": "Deogarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.53827000", + "longitude": "84.73337000" + }, + { + "id": "131735", + "name": "Dhenkānāl", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.75000000", + "longitude": "85.50000000" + }, + { + "id": "131765", + "name": "Digapahandi", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.37275000", + "longitude": "84.57184000" + }, + { + "id": "131892", + "name": "Gajapati", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "18.91000000", + "longitude": "84.20000000" + }, + { + "id": "131914", + "name": "Ganjām", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.38705000", + "longitude": "85.05079000" + }, + { + "id": "131988", + "name": "Gopālpur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.25861000", + "longitude": "84.90517000" + }, + { + "id": "132013", + "name": "Gudāri", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.34762000", + "longitude": "83.78128000" + }, + { + "id": "132030", + "name": "Gunupur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.08040000", + "longitude": "83.80879000" + }, + { + "id": "132148", + "name": "Hīrākud", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.52502000", + "longitude": "83.87275000" + }, + { + "id": "132102", + "name": "Hinjilikatu", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.48166000", + "longitude": "84.74489000" + }, + { + "id": "132184", + "name": "Jagatsinghapur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.25570000", + "longitude": "86.17112000" + }, + { + "id": "132185", + "name": "Jagatsinghpur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.20000000", + "longitude": "86.30000000" + }, + { + "id": "132209", + "name": "Jajpur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.84149000", + "longitude": "86.31237000" + }, + { + "id": "132213", + "name": "Jaleshwar", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.80176000", + "longitude": "87.22250000" + }, + { + "id": "132250", + "name": "Jatani", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.15975000", + "longitude": "85.70742000" + }, + { + "id": "132304", + "name": "Jājpur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.84852000", + "longitude": "86.33729000" + }, + { + "id": "132265", + "name": "Jeypore", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "18.85630000", + "longitude": "82.57160000" + }, + { + "id": "132269", + "name": "Jharsuguda", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.85531000", + "longitude": "84.00698000" + }, + { + "id": "132270", + "name": "Jharsuguda District", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.85000000", + "longitude": "84.00000000" + }, + { + "id": "132338", + "name": "Kaintragarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.72115000", + "longitude": "84.53514000" + }, + { + "id": "132371", + "name": "Kandhamal", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.30000000", + "longitude": "84.00000000" + }, + { + "id": "132387", + "name": "Kantābānji", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.46709000", + "longitude": "82.92042000" + }, + { + "id": "132386", + "name": "Kantilo", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.36152000", + "longitude": "85.19212000" + }, + { + "id": "132687", + "name": "Kālāhandi", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.75000000", + "longitude": "83.00000000" + }, + { + "id": "132695", + "name": "Kāmākhyānagar", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.93385000", + "longitude": "85.54489000" + }, + { + "id": "132441", + "name": "Kendrapara", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.50000000", + "longitude": "86.50000000" + }, + { + "id": "132442", + "name": "Kendrāparha", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.50166000", + "longitude": "86.42227000" + }, + { + "id": "132444", + "name": "Kendujhar", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.50000000", + "longitude": "85.50000000" + }, + { + "id": "132448", + "name": "Kesinga", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.18778000", + "longitude": "83.21949000" + }, + { + "id": "132458", + "name": "Khallikot", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.60908000", + "longitude": "85.08609000" + }, + { + "id": "132477", + "name": "Kharhiāl", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.28845000", + "longitude": "82.76060000" + }, + { + "id": "132501", + "name": "Khordha", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.20000000", + "longitude": "85.60000000" + }, + { + "id": "132508", + "name": "Khurda", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.18268000", + "longitude": "85.61629000" + }, + { + "id": "132527", + "name": "Kiri Buru", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.08333000", + "longitude": "85.35000000" + }, + { + "id": "132539", + "name": "Kodala", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.62425000", + "longitude": "84.94075000" + }, + { + "id": "132570", + "name": "Konārka", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.89758000", + "longitude": "86.11413000" + }, + { + "id": "132578", + "name": "Koraput", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.00000000", + "longitude": "83.00000000" + }, + { + "id": "132587", + "name": "Korāput", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "18.81199000", + "longitude": "82.71048000" + }, + { + "id": "132624", + "name": "Kuchaiburi", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.26675000", + "longitude": "86.17385000" + }, + { + "id": "132626", + "name": "Kuchinda", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.74356000", + "longitude": "84.34848000" + }, + { + "id": "132865", + "name": "Malakanagiri", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "18.36428000", + "longitude": "81.88800000" + }, + { + "id": "132871", + "name": "Malkangiri", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "18.25000000", + "longitude": "81.95000000" + }, + { + "id": "132954", + "name": "Mayūrbhanj", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.75000000", + "longitude": "86.50000000" + }, + { + "id": "133104", + "name": "Nabarangpur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.23330000", + "longitude": "82.55000000" + }, + { + "id": "133195", + "name": "Nayagarh District", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.13000000", + "longitude": "85.10000000" + }, + { + "id": "133196", + "name": "Nayāgarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.12882000", + "longitude": "85.09626000" + }, + { + "id": "133285", + "name": "Nīlgiri", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.46235000", + "longitude": "86.76794000" + }, + { + "id": "133219", + "name": "Nimāparha", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.05756000", + "longitude": "86.00436000" + }, + { + "id": "133245", + "name": "Nowrangapur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.23114000", + "longitude": "82.54826000" + }, + { + "id": "133247", + "name": "Nuapada", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.60000000", + "longitude": "82.50000000" + }, + { + "id": "133312", + "name": "Padampur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.99932000", + "longitude": "83.06325000" + }, + { + "id": "133370", + "name": "Parādīp Garh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.31641000", + "longitude": "86.60850000" + }, + { + "id": "133393", + "name": "Patāmundai", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.57806000", + "longitude": "86.56063000" + }, + { + "id": "133387", + "name": "Patnāgarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.70833000", + "longitude": "83.13263000" + }, + { + "id": "133441", + "name": "Phulbāni", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.48101000", + "longitude": "84.23063000" + }, + { + "id": "133453", + "name": "Pipili", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.11357000", + "longitude": "85.83147000" + }, + { + "id": "133467", + "name": "Polasara", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.69386000", + "longitude": "84.81401000" + }, + { + "id": "133511", + "name": "Puri", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.90000000", + "longitude": "85.60000000" + }, + { + "id": "133513", + "name": "Purushottampur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.52024000", + "longitude": "84.88514000" + }, + { + "id": "133602", + "name": "Rambha", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.51667000", + "longitude": "85.10000000" + }, + { + "id": "133620", + "name": "Raurkela", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.22496000", + "longitude": "84.86414000" + }, + { + "id": "133622", + "name": "Rayagada", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.40000000", + "longitude": "83.50000000" + }, + { + "id": "133625", + "name": "Remuna", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.52798000", + "longitude": "86.87156000" + }, + { + "id": "133626", + "name": "Rengāli", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.64602000", + "longitude": "84.05311000" + }, + { + "id": "133769", + "name": "Sambalpur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.40000000", + "longitude": "83.88333000" + }, + { + "id": "133994", + "name": "Sonepur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.83333000", + "longitude": "83.91667000" + }, + { + "id": "134002", + "name": "Sorada", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "19.76082000", + "longitude": "84.42997000" + }, + { + "id": "134004", + "name": "Soro", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "21.27851000", + "longitude": "86.68833000" + }, + { + "id": "134034", + "name": "Subarnapur", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.93154000", + "longitude": "83.82486000" + }, + { + "id": "134044", + "name": "Sundargarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "22.25000000", + "longitude": "84.50000000" + }, + { + "id": "134115", + "name": "Tarabha", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.73252000", + "longitude": "83.67443000" + }, + { + "id": "134232", + "name": "Tālcher", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.94927000", + "longitude": "85.23354000" + }, + { + "id": "134201", + "name": "Titlāgarh", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.28961000", + "longitude": "83.15233000" + }, + { + "id": "134254", + "name": "Udayagiri", + "state_id": 4013, + "state_code": "OR", + "country_id": 101, + "country_code": "IN", + "latitude": "20.12416000", + "longitude": "84.36869000" + }, + { + "id": "132715", + "name": "Kāraikāl", + "state_id": 4011, + "state_code": "PY", + "country_id": 101, + "country_code": "IN", + "latitude": "10.92209000", + "longitude": "79.83353000" + }, + { + "id": "132830", + "name": "Mahe", + "state_id": 4011, + "state_code": "PY", + "country_id": 101, + "country_code": "IN", + "latitude": "11.70000000", + "longitude": "75.53333000" + }, + { + "id": "133490", + "name": "Puducherry", + "state_id": 4011, + "state_code": "PY", + "country_id": 101, + "country_code": "IN", + "latitude": "11.93381000", + "longitude": "79.82979000" + }, + { + "id": "134425", + "name": "Yanam", + "state_id": 4011, + "state_code": "PY", + "country_id": 101, + "country_code": "IN", + "latitude": "16.73463000", + "longitude": "82.21773000" + }, + { + "id": "57587", + "name": "Abohar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.14453000", + "longitude": "74.19552000" + }, + { + "id": "57592", + "name": "Adampur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.43224000", + "longitude": "75.71484000" + }, + { + "id": "57612", + "name": "Ajitgarh", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.65000000", + "longitude": "76.70000000" + }, + { + "id": "57615", + "name": "Ajnāla", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.84473000", + "longitude": "74.76295000" + }, + { + "id": "57629", + "name": "Akālgarh", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "29.82074000", + "longitude": "75.89078000" + }, + { + "id": "57651", + "name": "Alāwalpur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.43161000", + "longitude": "75.65614000" + }, + { + "id": "57681", + "name": "Amloh", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.60837000", + "longitude": "76.23199000" + }, + { + "id": "57686", + "name": "Amritsar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.67000000", + "longitude": "74.84000000" + }, + { + "id": "57697", + "name": "Anandpur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.23926000", + "longitude": "76.50253000" + }, + { + "id": "57791", + "name": "Badhni Kalān", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.68130000", + "longitude": "75.29087000" + }, + { + "id": "57819", + "name": "Bakloh", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "32.47939000", + "longitude": "75.91874000" + }, + { + "id": "57859", + "name": "Banūr", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.55407000", + "longitude": "76.71948000" + }, + { + "id": "57846", + "name": "Banga", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.18874000", + "longitude": "75.99495000" + }, + { + "id": "57881", + "name": "Barnala", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.38000000", + "longitude": "75.50000000" + }, + { + "id": "57882", + "name": "Barnāla", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.37451000", + "longitude": "75.54870000" + }, + { + "id": "57896", + "name": "Basi", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.58813000", + "longitude": "76.84498000" + }, + { + "id": "57906", + "name": "Batāla", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.80921000", + "longitude": "75.20294000" + }, + { + "id": "57904", + "name": "Bathinda", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.21000000", + "longitude": "75.03000000" + }, + { + "id": "58109", + "name": "Bāgha Purāna", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.68809000", + "longitude": "75.09838000" + }, + { + "id": "58118", + "name": "Bālāchor", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.06062000", + "longitude": "76.30166000" + }, + { + "id": "57914", + "name": "Begowāl", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.61152000", + "longitude": "75.52135000" + }, + { + "id": "57950", + "name": "Bhadaur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.47651000", + "longitude": "75.33049000" + }, + { + "id": "57977", + "name": "Bhawānīgarh", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.26685000", + "longitude": "76.03854000" + }, + { + "id": "58018", + "name": "Bhīkhi", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.05918000", + "longitude": "75.53500000" + }, + { + "id": "57990", + "name": "Bhogpur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.55442000", + "longitude": "75.64271000" + }, + { + "id": "58003", + "name": "Bhulath Gharbi", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.54279000", + "longitude": "75.50755000" + }, + { + "id": "58090", + "name": "Budhlāda", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "29.92799000", + "longitude": "75.56205000" + }, + { + "id": "131610", + "name": "Chīma", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.68540000", + "longitude": "76.08643000" + }, + { + "id": "131661", + "name": "Dasūya", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.81679000", + "longitude": "75.65310000" + }, + { + "id": "131816", + "name": "Dīnānagar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "32.13664000", + "longitude": "75.47291000" + }, + { + "id": "131696", + "name": "Derā Nānak", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "32.03733000", + "longitude": "75.02787000" + }, + { + "id": "131713", + "name": "Dhanaula", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.28216000", + "longitude": "75.57341000" + }, + { + "id": "131756", + "name": "Dhāriwāl", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.95616000", + "longitude": "75.32386000" + }, + { + "id": "131760", + "name": "Dhūri", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.36846000", + "longitude": "75.86791000" + }, + { + "id": "131736", + "name": "Dhilwan", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.51432000", + "longitude": "75.34574000" + }, + { + "id": "131777", + "name": "Dirba", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.07222000", + "longitude": "75.99607000" + }, + { + "id": "131790", + "name": "Dorāha", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.79953000", + "longitude": "76.02355000" + }, + { + "id": "131859", + "name": "Farīdkot", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.67399000", + "longitude": "74.75579000" + }, + { + "id": "131855", + "name": "Faridkot", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.65000000", + "longitude": "74.75000000" + }, + { + "id": "131865", + "name": "Fatehgarh Chūriān", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.86431000", + "longitude": "74.95665000" + }, + { + "id": "131866", + "name": "Fatehgarh Sahib", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.64379000", + "longitude": "76.34787000" + }, + { + "id": "131881", + "name": "Fāzilka", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.40207000", + "longitude": "74.02836000" + }, + { + "id": "131875", + "name": "Ferozepore", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.92574000", + "longitude": "74.61311000" + }, + { + "id": "131877", + "name": "Firozpur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.89000000", + "longitude": "74.56000000" + }, + { + "id": "131918", + "name": "Garhdiwāla", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.74147000", + "longitude": "75.75567000" + }, + { + "id": "131921", + "name": "Garhshankar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.21537000", + "longitude": "76.14149000" + }, + { + "id": "131935", + "name": "Ghanaur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.33092000", + "longitude": "76.61203000" + }, + { + "id": "131956", + "name": "Giddarbāha", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.19953000", + "longitude": "74.66627000" + }, + { + "id": "132031", + "name": "Gurdaspur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.92000000", + "longitude": "75.27000000" + }, + { + "id": "132037", + "name": "Guru Har Sahāi", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.70862000", + "longitude": "74.40407000" + }, + { + "id": "132077", + "name": "Hariāna", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.63512000", + "longitude": "75.83887000" + }, + { + "id": "132136", + "name": "Hājipur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.97714000", + "longitude": "75.75438000" + }, + { + "id": "132121", + "name": "Hoshiarpur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.66000000", + "longitude": "75.85000000" + }, + { + "id": "132122", + "name": "Hoshiārpur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.53723000", + "longitude": "75.91269000" + }, + { + "id": "132192", + "name": "Jagraon", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.78783000", + "longitude": "75.47391000" + }, + { + "id": "132207", + "name": "Jaito", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.45126000", + "longitude": "74.89189000" + }, + { + "id": "132211", + "name": "Jalandhar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.41667000", + "longitude": "75.61667000" + }, + { + "id": "132223", + "name": "Jalālābād", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.60622000", + "longitude": "74.25727000" + }, + { + "id": "132236", + "name": "Jandiāla", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.15930000", + "longitude": "75.61755000" + }, + { + "id": "132237", + "name": "Jandiāla Gurū", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.56198000", + "longitude": "75.02770000" + }, + { + "id": "132347", + "name": "Kalanaur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "32.01227000", + "longitude": "75.15063000" + }, + { + "id": "132392", + "name": "Kapūrthala", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.38011000", + "longitude": "75.38105000" + }, + { + "id": "132391", + "name": "Kapurthala", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.40000000", + "longitude": "75.31000000" + }, + { + "id": "132408", + "name": "Kartārpur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.44268000", + "longitude": "75.49847000" + }, + { + "id": "132465", + "name": "Khamānon Kalān", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.81725000", + "longitude": "76.35478000" + }, + { + "id": "132469", + "name": "Khanna", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.70547000", + "longitude": "76.22196000" + }, + { + "id": "132472", + "name": "Kharar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.74632000", + "longitude": "76.64689000" + }, + { + "id": "132491", + "name": "Khem Karan", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.14443000", + "longitude": "74.55938000" + }, + { + "id": "132591", + "name": "Kot Īsa Khān", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.94659000", + "longitude": "75.13780000" + }, + { + "id": "132600", + "name": "Kotkapura", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.58190000", + "longitude": "74.83298000" + }, + { + "id": "132760", + "name": "Laungowāl", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.19393000", + "longitude": "75.68089000" + }, + { + "id": "132784", + "name": "Ludhiana", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.84000000", + "longitude": "75.82000000" + }, + { + "id": "132785", + "name": "Ludhiāna", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.91204000", + "longitude": "75.85379000" + }, + { + "id": "132861", + "name": "Majītha", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.75711000", + "longitude": "74.95891000" + }, + { + "id": "132862", + "name": "Makhu", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.10335000", + "longitude": "74.99631000" + }, + { + "id": "132867", + "name": "Malaut", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.21121000", + "longitude": "74.48180000" + }, + { + "id": "132925", + "name": "Mansa", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "29.94000000", + "longitude": "75.43000000" + }, + { + "id": "132948", + "name": "Maur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.08333000", + "longitude": "75.25000000" + }, + { + "id": "133056", + "name": "Māchhīwāra", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.91557000", + "longitude": "76.20016000" + }, + { + "id": "133066", + "name": "Māler Kotla", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.53090000", + "longitude": "75.87949000" + }, + { + "id": "133082", + "name": "Mānsa", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "29.98844000", + "longitude": "75.40167000" + }, + { + "id": "132979", + "name": "Moga", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.80376000", + "longitude": "75.14938000" + }, + { + "id": "132980", + "name": "Mohali", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.67995000", + "longitude": "76.72211000" + }, + { + "id": "132996", + "name": "Morinda", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.79014000", + "longitude": "76.49883000" + }, + { + "id": "133017", + "name": "Mukeriān", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.95394000", + "longitude": "75.61716000" + }, + { + "id": "133019", + "name": "Muktsar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.47426000", + "longitude": "74.51660000" + }, + { + "id": "133128", + "name": "Nakodar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.12586000", + "longitude": "75.47508000" + }, + { + "id": "133147", + "name": "Nangal", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.38966000", + "longitude": "76.37574000" + }, + { + "id": "133190", + "name": "Nawanshahr", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.12450000", + "longitude": "76.11613000" + }, + { + "id": "133250", + "name": "Nābha", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.37577000", + "longitude": "76.15292000" + }, + { + "id": "133291", + "name": "Nūrmahal", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.09662000", + "longitude": "75.59386000" + }, + { + "id": "133293", + "name": "Nūrpur Kalān", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.16667000", + "longitude": "76.48333000" + }, + { + "id": "133382", + "name": "Pathānkot", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "32.27484000", + "longitude": "75.65287000" + }, + { + "id": "133383", + "name": "Patiala", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.35000000", + "longitude": "76.40000000" + }, + { + "id": "133384", + "name": "Patiāla", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.33625000", + "longitude": "76.39220000" + }, + { + "id": "133390", + "name": "Patti", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.28092000", + "longitude": "74.85849000" + }, + { + "id": "133431", + "name": "Phagwāra", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.22452000", + "longitude": "75.77387000" + }, + { + "id": "133439", + "name": "Phillaur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.01887000", + "longitude": "75.79111000" + }, + { + "id": "133575", + "name": "Qādiān", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.82198000", + "longitude": "75.37663000" + }, + { + "id": "133662", + "name": "Rāhon", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.05275000", + "longitude": "76.11907000" + }, + { + "id": "133665", + "name": "Rāikot", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.65000000", + "longitude": "75.60000000" + }, + { + "id": "133670", + "name": "Rāja Sānsi", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.72021000", + "longitude": "74.80080000" + }, + { + "id": "133681", + "name": "Rājpura", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.47856000", + "longitude": "76.59284000" + }, + { + "id": "133690", + "name": "Rām Dās", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.96739000", + "longitude": "74.90870000" + }, + { + "id": "133708", + "name": "Rāmpura", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.25600000", + "longitude": "75.24116000" + }, + { + "id": "133651", + "name": "Ropar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.96896000", + "longitude": "76.52695000" + }, + { + "id": "133654", + "name": "Rupnagar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.04000000", + "longitude": "76.52000000" + }, + { + "id": "133772", + "name": "Samrāla", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.83601000", + "longitude": "76.19324000" + }, + { + "id": "133776", + "name": "Sanaur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.30182000", + "longitude": "76.45786000" + }, + { + "id": "133785", + "name": "Sangrūr", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.24506000", + "longitude": "75.84488000" + }, + { + "id": "133784", + "name": "Sangrur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.25000000", + "longitude": "75.85000000" + }, + { + "id": "133804", + "name": "Sardulgarh", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "29.69224000", + "longitude": "75.23608000" + }, + { + "id": "133854", + "name": "Shahid Bhagat Singh Nagar", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.13183000", + "longitude": "76.13328000" + }, + { + "id": "133897", + "name": "Shāhkot", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.08173000", + "longitude": "75.33708000" + }, + { + "id": "133911", + "name": "Shām Churāsi", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.50028000", + "longitude": "75.74917000" + }, + { + "id": "133955", + "name": "Sirhind", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.64321000", + "longitude": "76.38421000" + }, + { + "id": "134037", + "name": "Sultanpur", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.21468000", + "longitude": "75.19602000" + }, + { + "id": "134048", + "name": "Sunām", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.12883000", + "longitude": "75.79943000" + }, + { + "id": "134105", + "name": "Talwandi Bhai", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.85584000", + "longitude": "74.92979000" + }, + { + "id": "134106", + "name": "Talwāra", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.93760000", + "longitude": "75.88657000" + }, + { + "id": "134117", + "name": "Tarn Taran", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.32692000", + "longitude": "74.81643000" + }, + { + "id": "134118", + "name": "Tarn Tāran", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "31.45191000", + "longitude": "74.92777000" + }, + { + "id": "134443", + "name": "Zira", + "state_id": 4015, + "state_code": "PB", + "country_id": 101, + "country_code": "IN", + "latitude": "30.96853000", + "longitude": "74.99106000" + }, + { + "id": "57584", + "name": "Abhaneri", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.00743000", + "longitude": "76.60760000" + }, + { + "id": "57614", + "name": "Ajmer", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.25000000", + "longitude": "74.66667000" + }, + { + "id": "57625", + "name": "Aklera", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.41288000", + "longitude": "76.56719000" + }, + { + "id": "57649", + "name": "Alwar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.50000000", + "longitude": "76.50000000" + }, + { + "id": "57676", + "name": "Amet", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.30609000", + "longitude": "73.92580000" + }, + { + "id": "57722", + "name": "Anūpgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.19111000", + "longitude": "73.20861000" + }, + { + "id": "57717", + "name": "Anta", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.15000000", + "longitude": "76.30000000" + }, + { + "id": "134449", + "name": "Ābu", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.59365000", + "longitude": "72.71756000" + }, + { + "id": "134450", + "name": "Ābu Road", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.48012000", + "longitude": "72.78186000" + }, + { + "id": "134466", + "name": "Āsind", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.73420000", + "longitude": "74.33278000" + }, + { + "id": "57798", + "name": "Bagar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.18784000", + "longitude": "75.50012000" + }, + { + "id": "57822", + "name": "Bakāni", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.28624000", + "longitude": "76.23709000" + }, + { + "id": "57863", + "name": "Baran", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.09000000", + "longitude": "76.66000000" + }, + { + "id": "57874", + "name": "Bari Sādri", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.41339000", + "longitude": "74.47331000" + }, + { + "id": "57895", + "name": "Basi", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.83150000", + "longitude": "76.04856000" + }, + { + "id": "57899", + "name": "Basni", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.17232000", + "longitude": "73.64519000" + }, + { + "id": "57903", + "name": "Baswa", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.14955000", + "longitude": "76.58345000" + }, + { + "id": "57910", + "name": "Bayāna", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.90791000", + "longitude": "77.28985000" + }, + { + "id": "58115", + "name": "Bāli", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.19725000", + "longitude": "73.29117000" + }, + { + "id": "58116", + "name": "Bālotra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.83242000", + "longitude": "72.24000000" + }, + { + "id": "58125", + "name": "Bāndīkūi", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.05087000", + "longitude": "76.57325000" + }, + { + "id": "58134", + "name": "Bānswāra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.54109000", + "longitude": "74.44250000" + }, + { + "id": "58147", + "name": "Bārān", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.10000000", + "longitude": "76.51667000" + }, + { + "id": "58142", + "name": "Bāri", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.64661000", + "longitude": "77.61634000" + }, + { + "id": "58143", + "name": "Bārmer", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "71.50000000" + }, + { + "id": "58156", + "name": "Bīkaner", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.01762000", + "longitude": "73.31495000" + }, + { + "id": "58157", + "name": "Bīkāner", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.16667000", + "longitude": "73.16667000" + }, + { + "id": "58162", + "name": "Būndi", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.43855000", + "longitude": "75.63735000" + }, + { + "id": "57946", + "name": "Beāwar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.10119000", + "longitude": "74.32028000" + }, + { + "id": "57917", + "name": "Begūn", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.98333000", + "longitude": "75.00000000" + }, + { + "id": "57919", + "name": "Behror", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.88832000", + "longitude": "76.28108000" + }, + { + "id": "57964", + "name": "Bharatpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.21000000", + "longitude": "77.29000000" + }, + { + "id": "57968", + "name": "Bhasāwar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.03895000", + "longitude": "77.04849000" + }, + { + "id": "58008", + "name": "Bhādāsar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.31457000", + "longitude": "74.28952000" + }, + { + "id": "58007", + "name": "Bhādra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.10298000", + "longitude": "75.17138000" + }, + { + "id": "58019", + "name": "Bhīlwāra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "74.75000000" + }, + { + "id": "58023", + "name": "Bhīnmāl", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.99944000", + "longitude": "72.27141000" + }, + { + "id": "57983", + "name": "Bhindār", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.50235000", + "longitude": "74.18551000" + }, + { + "id": "57986", + "name": "Bhiwadi", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.21024000", + "longitude": "76.86056000" + }, + { + "id": "58004", + "name": "Bhuma", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.78333000", + "longitude": "74.93333000" + }, + { + "id": "58051", + "name": "Bilāra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.18067000", + "longitude": "73.70550000" + }, + { + "id": "58067", + "name": "Bissāu", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.24737000", + "longitude": "75.07666000" + }, + { + "id": "58083", + "name": "Borkhera", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.52115000", + "longitude": "75.64028000" + }, + { + "id": "58177", + "name": "Chaksu", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.60510000", + "longitude": "75.94814000" + }, + { + "id": "131614", + "name": "Chūru", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.30415000", + "longitude": "74.96718000" + }, + { + "id": "131513", + "name": "Chechat", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.76667000", + "longitude": "75.88333000" + }, + { + "id": "131527", + "name": "Chhabra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.66472000", + "longitude": "76.84379000" + }, + { + "id": "131539", + "name": "Chhāpar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.81900000", + "longitude": "74.43936000" + }, + { + "id": "131536", + "name": "Chhoti Sādri", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.38145000", + "longitude": "74.70120000" + }, + { + "id": "131546", + "name": "Chidawa", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.23937000", + "longitude": "75.64035000" + }, + { + "id": "131574", + "name": "Chittaurgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.50000000", + "longitude": "74.50000000" + }, + { + "id": "131655", + "name": "Dariba", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.94865000", + "longitude": "74.13420000" + }, + { + "id": "131669", + "name": "Dausa", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.88269000", + "longitude": "76.57053000" + }, + { + "id": "131813", + "name": "Dīdwāna", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.40096000", + "longitude": "74.57537000" + }, + { + "id": "131814", + "name": "Dīg", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.47188000", + "longitude": "77.32564000" + }, + { + "id": "131819", + "name": "Dūngarpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.84306000", + "longitude": "73.71466000" + }, + { + "id": "131685", + "name": "Deoli", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75728000", + "longitude": "75.37991000" + }, + { + "id": "131697", + "name": "Deshnoke", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.79836000", + "longitude": "73.34297000" + }, + { + "id": "131706", + "name": "Devgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.52533000", + "longitude": "73.90812000" + }, + { + "id": "131730", + "name": "Dhaulpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.71183000", + "longitude": "77.73956000" + }, + { + "id": "131867", + "name": "Fatehpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.99486000", + "longitude": "74.95628000" + }, + { + "id": "131896", + "name": "Galiākot", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.51995000", + "longitude": "74.02028000" + }, + { + "id": "131908", + "name": "Gangānagar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.92009000", + "longitude": "73.87496000" + }, + { + "id": "131909", + "name": "Gangāpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.47249000", + "longitude": "76.71744000" + }, + { + "id": "132003", + "name": "Govindgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.50423000", + "longitude": "76.99938000" + }, + { + "id": "132018", + "name": "Gulābpura", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.90448000", + "longitude": "74.66025000" + }, + { + "id": "132066", + "name": "Hanumangarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.11000000", + "longitude": "74.60000000" + }, + { + "id": "132067", + "name": "Hanumāngarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.58182000", + "longitude": "74.32938000" + }, + { + "id": "132097", + "name": "Hindaun", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.73411000", + "longitude": "77.03519000" + }, + { + "id": "132199", + "name": "Jahāzpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.61994000", + "longitude": "75.27609000" + }, + { + "id": "132201", + "name": "Jaipur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.00000000", + "longitude": "76.00000000" + }, + { + "id": "132203", + "name": "Jaisalmer", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.99382000", + "longitude": "71.00889000" + }, + { + "id": "132208", + "name": "Jaitāran", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.20446000", + "longitude": "73.93676000" + }, + { + "id": "132217", + "name": "Jalor", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.34558000", + "longitude": "72.61559000" + }, + { + "id": "132218", + "name": "Jalore", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.08000000", + "longitude": "72.29000000" + }, + { + "id": "132278", + "name": "Jhālāwār", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.59633000", + "longitude": "76.16499000" + }, + { + "id": "132276", + "name": "Jhālrapātan", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.54205000", + "longitude": "76.17242000" + }, + { + "id": "132273", + "name": "Jhunjhunūn", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.12559000", + "longitude": "75.39797000" + }, + { + "id": "132284", + "name": "Jobner", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.97257000", + "longitude": "75.38752000" + }, + { + "id": "132286", + "name": "Jodhpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.75000000", + "longitude": "72.75000000" + }, + { + "id": "132395", + "name": "Karanpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.84042000", + "longitude": "73.45519000" + }, + { + "id": "132396", + "name": "Karauli", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.58000000", + "longitude": "77.10000000" + }, + { + "id": "132692", + "name": "Kāman", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.65791000", + "longitude": "77.26908000" + }, + { + "id": "132709", + "name": "Kānor", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.43437000", + "longitude": "74.26546000" + }, + { + "id": "132713", + "name": "Kāpren", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.40529000", + "longitude": "76.07431000" + }, + { + "id": "132738", + "name": "Kūmher", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.31657000", + "longitude": "77.37079000" + }, + { + "id": "132438", + "name": "Kekri", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.97132000", + "longitude": "75.14992000" + }, + { + "id": "132447", + "name": "Keshorai Pātan", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.29275000", + "longitude": "75.93948000" + }, + { + "id": "132466", + "name": "Khandela", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.60499000", + "longitude": "75.50200000" + }, + { + "id": "132515", + "name": "Khānpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.73241000", + "longitude": "76.39601000" + }, + { + "id": "132496", + "name": "Khetri", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.00069000", + "longitude": "75.78644000" + }, + { + "id": "132530", + "name": "Kishangarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.59006000", + "longitude": "74.85397000" + }, + { + "id": "132593", + "name": "Kota", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.17512000", + "longitude": "75.84412000" + }, + { + "id": "132604", + "name": "Kotputli", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.70207000", + "longitude": "76.19911000" + }, + { + "id": "132627", + "name": "Kuchāman", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.14745000", + "longitude": "74.85655000" + }, + { + "id": "132625", + "name": "Kuchera", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.98747000", + "longitude": "73.97108000" + }, + { + "id": "132667", + "name": "Kushālgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.19899000", + "longitude": "74.45074000" + }, + { + "id": "132739", + "name": "Lachhmangarh Sīkar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.82294000", + "longitude": "75.02754000" + }, + { + "id": "132788", + "name": "Lādnūn", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.65312000", + "longitude": "74.39993000" + }, + { + "id": "132792", + "name": "Lākheri", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.67237000", + "longitude": "76.17692000" + }, + { + "id": "132798", + "name": "Lālsot", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.55951000", + "longitude": "76.32915000" + }, + { + "id": "132778", + "name": "Losal", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.40000000", + "longitude": "74.91667000" + }, + { + "id": "132843", + "name": "Mahwah", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.04594000", + "longitude": "76.93152000" + }, + { + "id": "132863", + "name": "Makrāna", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.04361000", + "longitude": "74.72445000" + }, + { + "id": "132900", + "name": "Mandāwar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.86374000", + "longitude": "76.54999000" + }, + { + "id": "132921", + "name": "Manohar Thāna", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.24000000", + "longitude": "76.80182000" + }, + { + "id": "132922", + "name": "Manoharpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.29769000", + "longitude": "75.94950000" + }, + { + "id": "133069", + "name": "Mālpura", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.28380000", + "longitude": "75.36458000" + }, + { + "id": "133072", + "name": "Māndal", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.44126000", + "longitude": "74.56979000" + }, + { + "id": "133074", + "name": "Māndalgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.19407000", + "longitude": "75.07215000" + }, + { + "id": "133078", + "name": "Māngrol", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.33061000", + "longitude": "76.50973000" + }, + { + "id": "133102", + "name": "Mūndwa", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.06310000", + "longitude": "73.82304000" + }, + { + "id": "132959", + "name": "Meethari Marwar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.57615000", + "longitude": "74.68661000" + }, + { + "id": "132967", + "name": "Merta", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.64859000", + "longitude": "74.03414000" + }, + { + "id": "133112", + "name": "Nagar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.42397000", + "longitude": "77.09922000" + }, + { + "id": "133125", + "name": "Nainwa", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.77145000", + "longitude": "75.84978000" + }, + { + "id": "133153", + "name": "Napāsar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.96059000", + "longitude": "73.55913000" + }, + { + "id": "133154", + "name": "Naraina", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.79069000", + "longitude": "75.20608000" + }, + { + "id": "133180", + "name": "Nasīrābād", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.30473000", + "longitude": "74.73364000" + }, + { + "id": "133189", + "name": "Nawalgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.85161000", + "longitude": "75.27384000" + }, + { + "id": "133252", + "name": "Nādbai", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.22288000", + "longitude": "77.19569000" + }, + { + "id": "133256", + "name": "Nāgaur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.20201000", + "longitude": "73.73394000" + }, + { + "id": "133280", + "name": "Nāthdwāra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.93805000", + "longitude": "73.82392000" + }, + { + "id": "133282", + "name": "Nāwa", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.01950000", + "longitude": "75.00226000" + }, + { + "id": "133289", + "name": "Nīmāj", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.14995000", + "longitude": "74.00094000" + }, + { + "id": "133288", + "name": "Nīmbāhera", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.62166000", + "longitude": "74.67999000" + }, + { + "id": "133201", + "name": "Neem ka Thana", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.73976000", + "longitude": "75.78652000" + }, + { + "id": "133224", + "name": "Niwai", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.36073000", + "longitude": "75.91836000" + }, + { + "id": "133229", + "name": "Nohar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.18292000", + "longitude": "74.77064000" + }, + { + "id": "133231", + "name": "Nokha", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.56155000", + "longitude": "73.47141000" + }, + { + "id": "133311", + "name": "Padampur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.70885000", + "longitude": "73.62539000" + }, + { + "id": "133366", + "name": "Partāpur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "23.59276000", + "longitude": "74.17396000" + }, + { + "id": "133368", + "name": "Parvatsar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.88604000", + "longitude": "74.76602000" + }, + { + "id": "133529", + "name": "Pāli", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.77276000", + "longitude": "73.32335000" + }, + { + "id": "133565", + "name": "Pīpār", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.38441000", + "longitude": "73.54394000" + }, + { + "id": "133433", + "name": "Phalodi", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.13102000", + "longitude": "72.36826000" + }, + { + "id": "133442", + "name": "Phulera", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.87401000", + "longitude": "75.24171000" + }, + { + "id": "133448", + "name": "Pilāni", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.36725000", + "longitude": "75.60352000" + }, + { + "id": "133446", + "name": "Pilibangan", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.44964000", + "longitude": "74.10093000" + }, + { + "id": "133450", + "name": "Pindwāra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.79749000", + "longitude": "73.05505000" + }, + { + "id": "133460", + "name": "Pirāwa", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.15506000", + "longitude": "76.02728000" + }, + { + "id": "133466", + "name": "Pokaran", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.92007000", + "longitude": "71.91631000" + }, + { + "id": "133486", + "name": "Pratapgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.03000000", + "longitude": "74.78000000" + }, + { + "id": "133487", + "name": "Pratāpgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.03215000", + "longitude": "74.78162000" + }, + { + "id": "133516", + "name": "Pushkar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.49022000", + "longitude": "74.55211000" + }, + { + "id": "133589", + "name": "Raipur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.04259000", + "longitude": "74.02373000" + }, + { + "id": "133596", + "name": "Rajsamand", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.23822000", + "longitude": "73.93503000" + }, + { + "id": "133614", + "name": "Ratangarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.08137000", + "longitude": "74.61854000" + }, + { + "id": "133667", + "name": "Rāisinghnagar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.53583000", + "longitude": "73.44917000" + }, + { + "id": "133672", + "name": "Rājaldesar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.02849000", + "longitude": "74.47442000" + }, + { + "id": "133686", + "name": "Rājākhera", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.89802000", + "longitude": "78.17100000" + }, + { + "id": "133674", + "name": "Rājgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.23731000", + "longitude": "76.62243000" + }, + { + "id": "133683", + "name": "Rājsamand", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.07145000", + "longitude": "73.87980000" + }, + { + "id": "133695", + "name": "Rāmganj Mandi", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.64648000", + "longitude": "75.94325000" + }, + { + "id": "133696", + "name": "Rāmgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.25097000", + "longitude": "75.17893000" + }, + { + "id": "133714", + "name": "Rāni", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.35031000", + "longitude": "73.30885000" + }, + { + "id": "133725", + "name": "Rāwatbhāta", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.92981000", + "longitude": "75.59209000" + }, + { + "id": "133726", + "name": "Rāwatsār", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.26724000", + "longitude": "74.40288000" + }, + { + "id": "133736", + "name": "Rīngas", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.36360000", + "longitude": "75.56838000" + }, + { + "id": "133771", + "name": "Samdari", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.81299000", + "longitude": "72.57879000" + }, + { + "id": "133781", + "name": "Sangariā", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.79886000", + "longitude": "74.46683000" + }, + { + "id": "133783", + "name": "Sangod", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.92707000", + "longitude": "76.28649000" + }, + { + "id": "133805", + "name": "Sardārshahr", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.44062000", + "longitude": "74.49100000" + }, + { + "id": "133810", + "name": "Sarwār", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.06272000", + "longitude": "75.01104000" + }, + { + "id": "133832", + "name": "Sawāi Mādhopur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.02301000", + "longitude": "76.34408000" + }, + { + "id": "134058", + "name": "Sādri", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.18555000", + "longitude": "73.45288000" + }, + { + "id": "134064", + "name": "Sālūmbar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.13524000", + "longitude": "74.04442000" + }, + { + "id": "134068", + "name": "Sāmbhar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.90806000", + "longitude": "75.19137000" + }, + { + "id": "134071", + "name": "Sānchor", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.75361000", + "longitude": "71.77280000" + }, + { + "id": "134092", + "name": "Sūjāngarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.70000000", + "longitude": "74.46667000" + }, + { + "id": "134086", + "name": "Sīkar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.61206000", + "longitude": "75.13996000" + }, + { + "id": "134094", + "name": "Sūrajgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.31005000", + "longitude": "75.73271000" + }, + { + "id": "134097", + "name": "Sūratgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "29.32150000", + "longitude": "73.89979000" + }, + { + "id": "133903", + "name": "Shāhpura", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.62094000", + "longitude": "74.92487000" + }, + { + "id": "133859", + "name": "Sheoganj", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.13915000", + "longitude": "73.06784000" + }, + { + "id": "133958", + "name": "Sirohi", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.83333000", + "longitude": "72.75000000" + }, + { + "id": "133978", + "name": "Siwāna", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.65154000", + "longitude": "72.42243000" + }, + { + "id": "133983", + "name": "Sojat", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.92493000", + "longitude": "73.66633000" + }, + { + "id": "134017", + "name": "Sri Dūngargarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.09617000", + "longitude": "74.00868000" + }, + { + "id": "134018", + "name": "Sri Mādhopur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.46599000", + "longitude": "75.59736000" + }, + { + "id": "134036", + "name": "Suket", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.64609000", + "longitude": "76.04170000" + }, + { + "id": "134046", + "name": "Sunel", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.37065000", + "longitude": "75.95708000" + }, + { + "id": "134098", + "name": "Takhatgarh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "25.32235000", + "longitude": "73.00487000" + }, + { + "id": "134240", + "name": "Tārānagar", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "28.66860000", + "longitude": "75.03207000" + }, + { + "id": "134169", + "name": "Tijāra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.93411000", + "longitude": "76.85541000" + }, + { + "id": "134204", + "name": "Todabhim", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.91667000", + "longitude": "76.81667000" + }, + { + "id": "134205", + "name": "Todaraisingh", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.02401000", + "longitude": "75.48182000" + }, + { + "id": "134208", + "name": "Tonk", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.16667000", + "longitude": "75.58333000" + }, + { + "id": "134250", + "name": "Udaipur", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.33000000", + "longitude": "73.77000000" + }, + { + "id": "134258", + "name": "Udpura", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "24.73355000", + "longitude": "75.97514000" + }, + { + "id": "134283", + "name": "Uniāra", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "26.15336000", + "longitude": "75.21523000" + }, + { + "id": "134403", + "name": "Wer", + "state_id": 4014, + "state_code": "RJ", + "country_id": 101, + "country_code": "IN", + "latitude": "27.01860000", + "longitude": "77.17636000" + }, + { + "id": "131822", + "name": "East District", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.33333000", + "longitude": "88.66667000" + }, + { + "id": "131905", + "name": "Gangtok", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.32574000", + "longitude": "88.61216000" + }, + { + "id": "132041", + "name": "Gyalshing", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.28952000", + "longitude": "88.25764000" + }, + { + "id": "132293", + "name": "Jorethang", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.10696000", + "longitude": "88.32332000" + }, + { + "id": "132906", + "name": "Mangan", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.50965000", + "longitude": "88.52206000" + }, + { + "id": "133137", + "name": "Namchi", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.16494000", + "longitude": "88.36380000" + }, + { + "id": "133194", + "name": "Naya Bāzār", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.13082000", + "longitude": "88.23972000" + }, + { + "id": "133235", + "name": "North District", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.66667000", + "longitude": "88.50000000" + }, + { + "id": "133609", + "name": "Rangpo", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.17733000", + "longitude": "88.53358000" + }, + { + "id": "133949", + "name": "Singtam", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.23467000", + "longitude": "88.50168000" + }, + { + "id": "134008", + "name": "South District", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.33333000", + "longitude": "88.41667000" + }, + { + "id": "134405", + "name": "West District", + "state_id": 4034, + "state_code": "SK", + "country_id": 101, + "country_code": "IN", + "latitude": "27.33333000", + "longitude": "88.25000000" + }, + { + "id": "57586", + "name": "Abirāmam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.44230000", + "longitude": "78.43990000" + }, + { + "id": "57594", + "name": "Adirampattinam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.34059000", + "longitude": "79.37905000" + }, + { + "id": "57595", + "name": "Aduthurai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.01542000", + "longitude": "79.48093000" + }, + { + "id": "57630", + "name": "Alagāpuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.88705000", + "longitude": "78.91758000" + }, + { + "id": "57634", + "name": "Alandur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.00250000", + "longitude": "80.20611000" + }, + { + "id": "57635", + "name": "Alangānallūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.04697000", + "longitude": "78.09033000" + }, + { + "id": "57636", + "name": "Alangāyam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.62235000", + "longitude": "78.75207000" + }, + { + "id": "57648", + "name": "Alwa Tirunagari", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.60635000", + "longitude": "77.93983000" + }, + { + "id": "57667", + "name": "Ambasamudram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.71068000", + "longitude": "77.45190000" + }, + { + "id": "57668", + "name": "Ambattūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.09818000", + "longitude": "80.16152000" + }, + { + "id": "57671", + "name": "Ambur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.79163000", + "longitude": "78.71644000" + }, + { + "id": "57682", + "name": "Ammāpettai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.79476000", + "longitude": "79.31986000" + }, + { + "id": "57694", + "name": "Anamalais", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.58303000", + "longitude": "76.93441000" + }, + { + "id": "57712", + "name": "Annavāsal", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.46060000", + "longitude": "78.70029000" + }, + { + "id": "57715", + "name": "Annāmalainagar", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.40000000", + "longitude": "79.73333000" + }, + { + "id": "57714", + "name": "Annur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.23616000", + "longitude": "77.10514000" + }, + { + "id": "57718", + "name": "Anthiyur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.57506000", + "longitude": "77.59043000" + }, + { + "id": "57726", + "name": "Arakkonam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.08449000", + "longitude": "79.67053000" + }, + { + "id": "57729", + "name": "Arantāngi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.17235000", + "longitude": "78.99118000" + }, + { + "id": "57731", + "name": "Arcot", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.90569000", + "longitude": "79.31897000" + }, + { + "id": "57732", + "name": "Arimalam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.25498000", + "longitude": "78.88403000" + }, + { + "id": "57734", + "name": "Ariyalūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.13849000", + "longitude": "79.07556000" + }, + { + "id": "57733", + "name": "Ariyalur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.15000000", + "longitude": "79.25000000" + }, + { + "id": "57737", + "name": "Arni", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.66771000", + "longitude": "79.28529000" + }, + { + "id": "57743", + "name": "Arumbāvūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.38096000", + "longitude": "78.72965000" + }, + { + "id": "57744", + "name": "Arumuganeri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.56880000", + "longitude": "78.09091000" + }, + { + "id": "57745", + "name": "Aruppukkottai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.50960000", + "longitude": "78.09588000" + }, + { + "id": "57746", + "name": "Aruvankad", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.36315000", + "longitude": "76.75790000" + }, + { + "id": "57763", + "name": "Attur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.59414000", + "longitude": "78.60143000" + }, + { + "id": "57767", + "name": "Auroville", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.00549000", + "longitude": "79.80885000" + }, + { + "id": "57773", + "name": "Avinashi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.19297000", + "longitude": "77.26865000" + }, + { + "id": "57775", + "name": "Ayakudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.44992000", + "longitude": "77.55198000" + }, + { + "id": "57776", + "name": "Ayyampettāi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.90141000", + "longitude": "79.17984000" + }, + { + "id": "134472", + "name": "Ūttukkuli", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.16892000", + "longitude": "77.45431000" + }, + { + "id": "134455", + "name": "Ālangudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.36060000", + "longitude": "78.98492000" + }, + { + "id": "134456", + "name": "Ālangulam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.86404000", + "longitude": "77.49937000" + }, + { + "id": "134457", + "name": "Ālappākkam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.59895000", + "longitude": "79.71893000" + }, + { + "id": "134460", + "name": "Āndippatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.99797000", + "longitude": "77.62097000" + }, + { + "id": "134468", + "name": "Āttayyāmpatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.53272000", + "longitude": "78.05363000" + }, + { + "id": "134469", + "name": "Āvadi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.11470000", + "longitude": "80.10981000" + }, + { + "id": "57929", + "name": "Belūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.70752000", + "longitude": "78.41437000" + }, + { + "id": "57973", + "name": "Bhavāni", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.44553000", + "longitude": "77.68215000" + }, + { + "id": "58072", + "name": "Bodināyakkanūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.01171000", + "longitude": "77.34976000" + }, + { + "id": "131515", + "name": "Chengam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.30889000", + "longitude": "78.79137000" + }, + { + "id": "131517", + "name": "Chennai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.08784000", + "longitude": "80.27847000" + }, + { + "id": "131518", + "name": "Chennimalai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.16378000", + "longitude": "77.60388000" + }, + { + "id": "131522", + "name": "Chetput", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.07000000", + "longitude": "80.24083000" + }, + { + "id": "131523", + "name": "Chettipālaiyam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.91248000", + "longitude": "77.03699000" + }, + { + "id": "131525", + "name": "Cheyyar", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.66052000", + "longitude": "79.54308000" + }, + { + "id": "131526", + "name": "Cheyyur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.34948000", + "longitude": "80.00304000" + }, + { + "id": "131545", + "name": "Chidambaram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.39933000", + "longitude": "79.69144000" + }, + { + "id": "131561", + "name": "Chingleput", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.69184000", + "longitude": "79.97661000" + }, + { + "id": "131562", + "name": "Chinna Salem", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.63422000", + "longitude": "78.87412000" + }, + { + "id": "131564", + "name": "Chinnamanūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.83999000", + "longitude": "77.38109000" + }, + { + "id": "131565", + "name": "Chinnasekkadu", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.16089000", + "longitude": "80.25727000" + }, + { + "id": "131578", + "name": "Cholapuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.35193000", + "longitude": "77.56839000" + }, + { + "id": "131618", + "name": "Coimbatore", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.80000000", + "longitude": "77.09000000" + }, + { + "id": "131619", + "name": "Colachel", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.17938000", + "longitude": "77.25818000" + }, + { + "id": "131626", + "name": "Cuddalore", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.52000000", + "longitude": "79.51000000" + }, + { + "id": "131629", + "name": "Cumbum", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.73647000", + "longitude": "77.28470000" + }, + { + "id": "131820", + "name": "Dūsi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.77574000", + "longitude": "79.67892000" + }, + { + "id": "131681", + "name": "Denkanikota", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.53010000", + "longitude": "77.78887000" + }, + { + "id": "131698", + "name": "Desūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.43727000", + "longitude": "79.48145000" + }, + { + "id": "131699", + "name": "Devadānappatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.14673000", + "longitude": "77.64390000" + }, + { + "id": "131700", + "name": "Devakottai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.94704000", + "longitude": "78.82330000" + }, + { + "id": "131711", + "name": "Dhali", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.51049000", + "longitude": "77.18806000" + }, + { + "id": "131723", + "name": "Dharapuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.73828000", + "longitude": "77.53223000" + }, + { + "id": "131726", + "name": "Dharmapuri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.12770000", + "longitude": "78.15794000" + }, + { + "id": "131774", + "name": "Dindigul", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.40000000", + "longitude": "77.80000000" + }, + { + "id": "131834", + "name": "Elāyirampannai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.27033000", + "longitude": "77.82494000" + }, + { + "id": "131833", + "name": "Elumalai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.86501000", + "longitude": "77.69923000" + }, + { + "id": "131837", + "name": "Eral", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.62584000", + "longitude": "78.02282000" + }, + { + "id": "131839", + "name": "Eraniel", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.20589000", + "longitude": "77.31726000" + }, + { + "id": "131841", + "name": "Erode", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.34000000", + "longitude": "77.55000000" + }, + { + "id": "131843", + "name": "Erumaippatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.14671000", + "longitude": "78.28996000" + }, + { + "id": "131847", + "name": "Ettaiyapuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.14405000", + "longitude": "77.99066000" + }, + { + "id": "131901", + "name": "Gangaikondān", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.85785000", + "longitude": "77.78019000" + }, + { + "id": "131902", + "name": "Gangavalli", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.49828000", + "longitude": "78.64966000" + }, + { + "id": "132045", + "name": "Gāndhī Nagar", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.00639000", + "longitude": "80.25417000" + }, + { + "id": "132050", + "name": "Gūduvāncheri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.84519000", + "longitude": "80.06055000" + }, + { + "id": "131957", + "name": "Gingee", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.25282000", + "longitude": "79.41727000" + }, + { + "id": "131961", + "name": "Gobichettipalayam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.45496000", + "longitude": "77.44220000" + }, + { + "id": "132008", + "name": "Gudalur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.67826000", + "longitude": "77.24951000" + }, + { + "id": "132011", + "name": "Gudiyatham", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.94601000", + "longitude": "78.87377000" + }, + { + "id": "132023", + "name": "Gummidipundi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.40765000", + "longitude": "80.10879000" + }, + { + "id": "132083", + "name": "Harūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.05267000", + "longitude": "78.48023000" + }, + { + "id": "132125", + "name": "Hosūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.73647000", + "longitude": "77.83264000" + }, + { + "id": "132153", + "name": "Idappadi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.58624000", + "longitude": "77.83891000" + }, + { + "id": "132159", + "name": "Ilampillai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.60659000", + "longitude": "78.00676000" + }, + { + "id": "132161", + "name": "Iluppūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.51347000", + "longitude": "78.62357000" + }, + { + "id": "132169", + "name": "Injambakkam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.91620000", + "longitude": "80.24880000" + }, + { + "id": "132172", + "name": "Irugūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.01782000", + "longitude": "77.06285000" + }, + { + "id": "132210", + "name": "Jalakandapuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.69779000", + "longitude": "77.87298000" + }, + { + "id": "132225", + "name": "Jalārpet", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.57025000", + "longitude": "78.57318000" + }, + { + "id": "132256", + "name": "Jayamkondacholapuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.21266000", + "longitude": "79.36369000" + }, + { + "id": "132324", + "name": "Kadambūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.99739000", + "longitude": "77.86191000" + }, + { + "id": "132326", + "name": "Kadayanallur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.07277000", + "longitude": "77.34152000" + }, + { + "id": "132343", + "name": "Kalakkādu", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.51380000", + "longitude": "77.54944000" + }, + { + "id": "132349", + "name": "Kalavai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.77029000", + "longitude": "79.41999000" + }, + { + "id": "132352", + "name": "Kallakkurichchi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.74040000", + "longitude": "78.95900000" + }, + { + "id": "132353", + "name": "Kallidaikurichi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.68591000", + "longitude": "77.46592000" + }, + { + "id": "132354", + "name": "Kallupatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.71667000", + "longitude": "77.86667000" + }, + { + "id": "132357", + "name": "Kalugumalai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.14941000", + "longitude": "77.70569000" + }, + { + "id": "132367", + "name": "Kamuthi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.40732000", + "longitude": "78.37337000" + }, + { + "id": "132368", + "name": "Kanadukattan", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.17209000", + "longitude": "78.77935000" + }, + { + "id": "132369", + "name": "Kancheepuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.67000000", + "longitude": "79.99000000" + }, + { + "id": "132370", + "name": "Kanchipuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.83515000", + "longitude": "79.70006000" + }, + { + "id": "132373", + "name": "Kangayam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.00599000", + "longitude": "77.56090000" + }, + { + "id": "132380", + "name": "Kanniyakumari", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.32000000", + "longitude": "77.34000000" + }, + { + "id": "132381", + "name": "Kanniyākumāri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.09008000", + "longitude": "77.53841000" + }, + { + "id": "132393", + "name": "Karambakkudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.45866000", + "longitude": "79.14101000" + }, + { + "id": "132401", + "name": "Kariapatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.67505000", + "longitude": "78.09992000" + }, + { + "id": "132409", + "name": "Karumbākkam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.70203000", + "longitude": "80.09110000" + }, + { + "id": "132410", + "name": "Karur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.95771000", + "longitude": "78.08095000" + }, + { + "id": "132429", + "name": "Kattivākkam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.21667000", + "longitude": "80.31667000" + }, + { + "id": "132435", + "name": "Kayalpattinam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.57143000", + "longitude": "78.11992000" + }, + { + "id": "132436", + "name": "Kayattār", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.94834000", + "longitude": "77.77424000" + }, + { + "id": "132714", + "name": "Kāraikkudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.06615000", + "longitude": "78.76784000" + }, + { + "id": "132716", + "name": "Kāramadai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.24058000", + "longitude": "76.96009000" + }, + { + "id": "132726", + "name": "Kātpādi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.96951000", + "longitude": "79.14552000" + }, + { + "id": "132728", + "name": "Kāttupputtūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.99385000", + "longitude": "78.21929000" + }, + { + "id": "132730", + "name": "Kāveripatnam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.42186000", + "longitude": "78.21880000" + }, + { + "id": "132732", + "name": "Kīl Bhuvanagiri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.44216000", + "longitude": "79.64763000" + }, + { + "id": "132733", + "name": "Kīranūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.56988000", + "longitude": "78.78682000" + }, + { + "id": "132437", + "name": "Keelakarai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.23183000", + "longitude": "78.78545000" + }, + { + "id": "132439", + "name": "Kelamangalam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.60307000", + "longitude": "77.85193000" + }, + { + "id": "132522", + "name": "Kilvelur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.76721000", + "longitude": "79.74186000" + }, + { + "id": "132538", + "name": "Kodaikānāl", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.23925000", + "longitude": "77.48932000" + }, + { + "id": "132544", + "name": "Kodumudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.07751000", + "longitude": "77.88363000" + }, + { + "id": "132562", + "name": "Kombai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.84745000", + "longitude": "77.29603000" + }, + { + "id": "132568", + "name": "Konganāpuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.57105000", + "longitude": "77.90040000" + }, + { + "id": "132571", + "name": "Koothanallur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.71990000", + "longitude": "79.51570000" + }, + { + "id": "132576", + "name": "Koradāchcheri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.77019000", + "longitude": "79.49158000" + }, + { + "id": "132577", + "name": "Korampallam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.77506000", + "longitude": "78.09158000" + }, + { + "id": "132594", + "name": "Kotagiri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.42072000", + "longitude": "76.86035000" + }, + { + "id": "132607", + "name": "Kottaiyūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.10956000", + "longitude": "78.79560000" + }, + { + "id": "132615", + "name": "Kovilpatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.17167000", + "longitude": "77.86989000" + }, + { + "id": "132622", + "name": "Krishnagiri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.58000000", + "longitude": "77.96000000" + }, + { + "id": "132632", + "name": "Kulattūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.00320000", + "longitude": "78.19280000" + }, + { + "id": "132634", + "name": "Kulittalai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.93487000", + "longitude": "78.41251000" + }, + { + "id": "132637", + "name": "Kumaralingam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.48936000", + "longitude": "77.34990000" + }, + { + "id": "132638", + "name": "Kumbakonam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.96209000", + "longitude": "79.39124000" + }, + { + "id": "132651", + "name": "Kunnattūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.34782000", + "longitude": "78.51046000" + }, + { + "id": "132659", + "name": "Kurinjippādi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.55028000", + "longitude": "79.59066000" + }, + { + "id": "132672", + "name": "Kuttālam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.93030000", + "longitude": "77.26951000" + }, + { + "id": "132673", + "name": "Kuzhithurai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.31792000", + "longitude": "77.19192000" + }, + { + "id": "132754", + "name": "Lalgudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.87419000", + "longitude": "78.81935000" + }, + { + "id": "132807", + "name": "Madambakkam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.85250000", + "longitude": "80.04667000" + }, + { + "id": "132818", + "name": "Madipakkam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.96226000", + "longitude": "80.19864000" + }, + { + "id": "132819", + "name": "Madukkarai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.90568000", + "longitude": "76.96344000" + }, + { + "id": "132820", + "name": "Madukkūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.48098000", + "longitude": "79.39939000" + }, + { + "id": "132821", + "name": "Madurai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.89000000", + "longitude": "78.03000000" + }, + { + "id": "132822", + "name": "Madurāntakam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.51167000", + "longitude": "79.88485000" + }, + { + "id": "132875", + "name": "Mallasamudram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.49333000", + "longitude": "78.03119000" + }, + { + "id": "132876", + "name": "Mallāpuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.98231000", + "longitude": "78.24796000" + }, + { + "id": "132881", + "name": "Manalūrpettai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.00788000", + "longitude": "79.09184000" + }, + { + "id": "132880", + "name": "Manali", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.16667000", + "longitude": "80.26667000" + }, + { + "id": "132882", + "name": "Manamadurai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.67318000", + "longitude": "78.47096000" + }, + { + "id": "132883", + "name": "Manappakkam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.01083000", + "longitude": "80.16861000" + }, + { + "id": "132884", + "name": "Manapparai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.60772000", + "longitude": "78.42582000" + }, + { + "id": "132885", + "name": "Manavālakurichi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.14776000", + "longitude": "77.30552000" + }, + { + "id": "132889", + "name": "Mandapam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.27571000", + "longitude": "79.12362000" + }, + { + "id": "132903", + "name": "Mangalam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.76473000", + "longitude": "78.64037000" + }, + { + "id": "132919", + "name": "Mannargudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.66626000", + "longitude": "79.45064000" + }, + { + "id": "132932", + "name": "Marakkanam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.19214000", + "longitude": "79.94193000" + }, + { + "id": "132939", + "name": "Masinigudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.56831000", + "longitude": "76.64087000" + }, + { + "id": "132952", + "name": "Mayiladuthurai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.10354000", + "longitude": "79.65500000" + }, + { + "id": "133067", + "name": "Māllūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.54424000", + "longitude": "78.14078000" + }, + { + "id": "133089", + "name": "Mārāndahalli", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.38826000", + "longitude": "78.00316000" + }, + { + "id": "133091", + "name": "Māttūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.32147000", + "longitude": "79.20245000" + }, + { + "id": "133100", + "name": "Mūlanūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.79426000", + "longitude": "77.71150000" + }, + { + "id": "133094", + "name": "Mīnjūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.27951000", + "longitude": "80.25815000" + }, + { + "id": "132965", + "name": "Melur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.03241000", + "longitude": "78.33930000" + }, + { + "id": "132968", + "name": "Mettupalayam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.29971000", + "longitude": "76.93485000" + }, + { + "id": "132969", + "name": "Mettuppālaiyam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.16806000", + "longitude": "78.44944000" + }, + { + "id": "132970", + "name": "Mettur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.78796000", + "longitude": "77.80080000" + }, + { + "id": "132982", + "name": "Mohanūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.05936000", + "longitude": "78.13965000" + }, + { + "id": "133013", + "name": "Mudukulattūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.34169000", + "longitude": "78.51388000" + }, + { + "id": "133045", + "name": "Musiri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.95299000", + "longitude": "78.44427000" + }, + { + "id": "133049", + "name": "Muttupet", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.39505000", + "longitude": "79.49353000" + }, + { + "id": "133108", + "name": "Naduvattam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.48075000", + "longitude": "76.54365000" + }, + { + "id": "133111", + "name": "Nagapattinam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.85000000", + "longitude": "79.74000000" + }, + { + "id": "133134", + "name": "Namakkal", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.30000000", + "longitude": "78.13000000" + }, + { + "id": "133135", + "name": "Nambiyūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.35811000", + "longitude": "77.32115000" + }, + { + "id": "133136", + "name": "Nambutalai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.72766000", + "longitude": "79.00707000" + }, + { + "id": "133140", + "name": "Nandambakkam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.97795000", + "longitude": "80.06781000" + }, + { + "id": "133148", + "name": "Nangavalli", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.76189000", + "longitude": "77.89093000" + }, + { + "id": "133149", + "name": "Nangilickondan", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.25539000", + "longitude": "79.47508000" + }, + { + "id": "133150", + "name": "Nanguneri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.49326000", + "longitude": "77.65806000" + }, + { + "id": "133152", + "name": "Nannilam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.87933000", + "longitude": "79.61062000" + }, + { + "id": "133181", + "name": "Nattam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.22776000", + "longitude": "78.22969000" + }, + { + "id": "133257", + "name": "Nāgercoil", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.17899000", + "longitude": "77.43227000" + }, + { + "id": "133264", + "name": "Nāmagiripettai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.45513000", + "longitude": "78.26818000" + }, + { + "id": "133265", + "name": "Nāmakkal", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.22126000", + "longitude": "78.16524000" + }, + { + "id": "133271", + "name": "Nāravārikuppam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.19133000", + "longitude": "80.18473000" + }, + { + "id": "133281", + "name": "Nāttarasankottai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.86905000", + "longitude": "78.55305000" + }, + { + "id": "133199", + "name": "Needamangalam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.77378000", + "longitude": "79.41875000" + }, + { + "id": "133200", + "name": "Neelankarai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.94950000", + "longitude": "80.25920000" + }, + { + "id": "133203", + "name": "Negapatam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.76377000", + "longitude": "79.84313000" + }, + { + "id": "133205", + "name": "Nellikkuppam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.77554000", + "longitude": "79.67016000" + }, + { + "id": "133216", + "name": "Nilakottai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.16500000", + "longitude": "77.85024000" + }, + { + "id": "133218", + "name": "Nilgiris", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.46000000", + "longitude": "76.64000000" + }, + { + "id": "133296", + "name": "Odugattūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.76793000", + "longitude": "78.88304000" + }, + { + "id": "133299", + "name": "Omalur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.74099000", + "longitude": "78.04559000" + }, + { + "id": "133301", + "name": "Ooty", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.41340000", + "longitude": "76.69521000" + }, + { + "id": "133314", + "name": "Padmanābhapuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.24462000", + "longitude": "77.32581000" + }, + { + "id": "133323", + "name": "Palani", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.45034000", + "longitude": "77.52090000" + }, + { + "id": "133324", + "name": "Palavakkam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.95350000", + "longitude": "80.25720000" + }, + { + "id": "133327", + "name": "Palladam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.99175000", + "longitude": "77.28633000" + }, + { + "id": "133328", + "name": "Pallappatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.72057000", + "longitude": "77.87951000" + }, + { + "id": "133329", + "name": "Pallattūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.14609000", + "longitude": "78.80309000" + }, + { + "id": "133335", + "name": "Pallāvaram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.96796000", + "longitude": "80.15025000" + }, + { + "id": "133332", + "name": "Pallikondai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.90518000", + "longitude": "78.94270000" + }, + { + "id": "133333", + "name": "Pallipattu", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.33860000", + "longitude": "79.44489000" + }, + { + "id": "133334", + "name": "Pallippatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.93990000", + "longitude": "78.40161000" + }, + { + "id": "133352", + "name": "Panruti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.77662000", + "longitude": "79.55269000" + }, + { + "id": "133355", + "name": "Papanasam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.92687000", + "longitude": "79.27056000" + }, + { + "id": "133356", + "name": "Paramagudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.54633000", + "longitude": "78.59070000" + }, + { + "id": "133392", + "name": "Pattukkottai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.42358000", + "longitude": "79.31949000" + }, + { + "id": "133522", + "name": "Pālakkodu", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.30696000", + "longitude": "78.07022000" + }, + { + "id": "133524", + "name": "Pālamedu", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.10501000", + "longitude": "78.11336000" + }, + { + "id": "133545", + "name": "Pāpireddippatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.91774000", + "longitude": "78.36865000" + }, + { + "id": "133547", + "name": "Pāppārappatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.22086000", + "longitude": "78.05920000" + }, + { + "id": "133406", + "name": "Pennādam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.40389000", + "longitude": "79.24156000" + }, + { + "id": "133407", + "name": "Pennāgaram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.13433000", + "longitude": "77.89525000" + }, + { + "id": "133408", + "name": "Pennāthur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.24681000", + "longitude": "79.22592000" + }, + { + "id": "133411", + "name": "Peraiyur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.73579000", + "longitude": "77.78955000" + }, + { + "id": "133412", + "name": "Perambalur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.27200000", + "longitude": "78.87380000" + }, + { + "id": "133413", + "name": "Peranamallūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.57052000", + "longitude": "79.43332000" + }, + { + "id": "133414", + "name": "Peranāmpattu", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.93430000", + "longitude": "78.71890000" + }, + { + "id": "133415", + "name": "Peravurani", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.29035000", + "longitude": "79.20156000" + }, + { + "id": "133428", + "name": "Perūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.97519000", + "longitude": "76.91292000" + }, + { + "id": "133417", + "name": "Periyakulam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.12268000", + "longitude": "77.54372000" + }, + { + "id": "133418", + "name": "Periyanayakkanpalaiyam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.15255000", + "longitude": "76.95159000" + }, + { + "id": "133419", + "name": "Periyanegamam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.74317000", + "longitude": "77.10296000" + }, + { + "id": "133420", + "name": "Periyapatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.75812000", + "longitude": "77.27087000" + }, + { + "id": "133421", + "name": "Periyapattinam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.27263000", + "longitude": "78.90232000" + }, + { + "id": "133425", + "name": "Perundurai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.27564000", + "longitude": "77.58794000" + }, + { + "id": "133426", + "name": "Perungudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.96095000", + "longitude": "80.24094000" + }, + { + "id": "133470", + "name": "Polūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.51217000", + "longitude": "79.12405000" + }, + { + "id": "133469", + "name": "Pollachi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.65825000", + "longitude": "77.00850000" + }, + { + "id": "133473", + "name": "Ponnamarāvati", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.28032000", + "longitude": "78.53601000" + }, + { + "id": "133475", + "name": "Ponneri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.33868000", + "longitude": "80.19487000" + }, + { + "id": "133479", + "name": "Poonamalle", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.04888000", + "longitude": "80.11488000" + }, + { + "id": "133483", + "name": "Porur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.03565000", + "longitude": "80.15821000" + }, + { + "id": "133494", + "name": "Pudūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.99801000", + "longitude": "79.14352000" + }, + { + "id": "133491", + "name": "Pudukkottai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.35000000", + "longitude": "78.90000000" + }, + { + "id": "133492", + "name": "Puduppatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.15217000", + "longitude": "78.21205000" + }, + { + "id": "133493", + "name": "Puduvāyal", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.33015000", + "longitude": "80.14577000" + }, + { + "id": "133498", + "name": "Puliyangudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.17489000", + "longitude": "77.39799000" + }, + { + "id": "133499", + "name": "Puliyūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.63375000", + "longitude": "78.84139000" + }, + { + "id": "133500", + "name": "Pullambādi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.94110000", + "longitude": "78.91041000" + }, + { + "id": "133507", + "name": "Punjai Puliyampatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.35163000", + "longitude": "77.16671000" + }, + { + "id": "133594", + "name": "Rajapalaiyam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.45296000", + "longitude": "77.55335000" + }, + { + "id": "133599", + "name": "Ramanathapuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.37158000", + "longitude": "78.83077000" + }, + { + "id": "133603", + "name": "Rameswaram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.28850000", + "longitude": "79.31271000" + }, + { + "id": "133611", + "name": "Rasipuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.46009000", + "longitude": "78.18635000" + }, + { + "id": "133693", + "name": "Rāmanāthapuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.37000000", + "longitude": "78.70000000" + }, + { + "id": "133758", + "name": "Saint Thomas Mount", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.00334000", + "longitude": "80.19614000" + }, + { + "id": "133763", + "name": "Salem", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.69000000", + "longitude": "78.29000000" + }, + { + "id": "133817", + "name": "Sathankulam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.44164000", + "longitude": "77.91349000" + }, + { + "id": "133819", + "name": "Sathyamangalam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.50526000", + "longitude": "77.23826000" + }, + { + "id": "133823", + "name": "Sattur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.35592000", + "longitude": "77.92457000" + }, + { + "id": "134084", + "name": "Sāyalkudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.16925000", + "longitude": "78.44702000" + }, + { + "id": "134095", + "name": "Sūrandai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.97574000", + "longitude": "77.41923000" + }, + { + "id": "134088", + "name": "Sīrkāzhi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.23725000", + "longitude": "79.73585000" + }, + { + "id": "133851", + "name": "Seven Pagodas", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.62091000", + "longitude": "80.19331000" + }, + { + "id": "133883", + "name": "Sholinghur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.11810000", + "longitude": "79.42025000" + }, + { + "id": "133945", + "name": "Singapperumālkovil", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.75947000", + "longitude": "80.00750000" + }, + { + "id": "133950", + "name": "Singānallūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.99898000", + "longitude": "77.03238000" + }, + { + "id": "133968", + "name": "Sirumugai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.32137000", + "longitude": "77.00521000" + }, + { + "id": "133974", + "name": "Sivaganga", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.92762000", + "longitude": "78.53763000" + }, + { + "id": "133975", + "name": "Sivagiri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.34461000", + "longitude": "77.42911000" + }, + { + "id": "133976", + "name": "Sivakasi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.44999000", + "longitude": "77.79797000" + }, + { + "id": "134026", + "name": "Srīmushnam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.40118000", + "longitude": "79.40384000" + }, + { + "id": "134030", + "name": "Srīperumbūdūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.96763000", + "longitude": "79.94197000" + }, + { + "id": "134022", + "name": "Srivaikuntam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.62931000", + "longitude": "77.91281000" + }, + { + "id": "134023", + "name": "Srivilliputhur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.51272000", + "longitude": "77.63369000" + }, + { + "id": "134035", + "name": "Suchindram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.15442000", + "longitude": "77.46704000" + }, + { + "id": "134041", + "name": "Sulur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.02427000", + "longitude": "77.12565000" + }, + { + "id": "134057", + "name": "Swāmimalai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.95747000", + "longitude": "79.32931000" + }, + { + "id": "134108", + "name": "Tambaram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.92460000", + "longitude": "80.12707000" + }, + { + "id": "134111", + "name": "Tanjore", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.78523000", + "longitude": "79.13909000" + }, + { + "id": "134239", + "name": "Tāramangalam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.69403000", + "longitude": "77.97035000" + }, + { + "id": "134243", + "name": "Tāttayyangārpettai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.12417000", + "longitude": "78.44916000" + }, + { + "id": "134131", + "name": "Teni", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.01115000", + "longitude": "77.47772000" + }, + { + "id": "134140", + "name": "Thanjavur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.64000000", + "longitude": "79.22000000" + }, + { + "id": "134143", + "name": "Tharangambadi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.02764000", + "longitude": "79.85425000" + }, + { + "id": "134146", + "name": "Theni", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.85000000", + "longitude": "77.42000000" + }, + { + "id": "134147", + "name": "Thenkasi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.96003000", + "longitude": "77.31525000" + }, + { + "id": "134150", + "name": "Thirukattupalli", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.84431000", + "longitude": "78.95647000" + }, + { + "id": "134151", + "name": "Thiruthani", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.17594000", + "longitude": "79.61637000" + }, + { + "id": "134152", + "name": "Thiruvaiyaru", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.88405000", + "longitude": "79.10362000" + }, + { + "id": "134153", + "name": "Thiruvallur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.25000000", + "longitude": "80.00000000" + }, + { + "id": "134155", + "name": "Thiruvarur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.77269000", + "longitude": "79.63680000" + }, + { + "id": "134156", + "name": "Thiruvidaimaruthur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.99857000", + "longitude": "79.45227000" + }, + { + "id": "134157", + "name": "Thoothukkudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.83750000", + "longitude": "77.96300000" + }, + { + "id": "134158", + "name": "Thoothukudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.76735000", + "longitude": "78.13425000" + }, + { + "id": "134172", + "name": "Tindivanam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.23400000", + "longitude": "79.65551000" + }, + { + "id": "134174", + "name": "Tinnanūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.11448000", + "longitude": "80.02713000" + }, + { + "id": "134178", + "name": "Tiruchchendur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.49725000", + "longitude": "78.11906000" + }, + { + "id": "134179", + "name": "Tiruchengode", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.38016000", + "longitude": "77.89444000" + }, + { + "id": "134180", + "name": "Tiruchirappalli", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.97000000", + "longitude": "78.65000000" + }, + { + "id": "134181", + "name": "Tirukkoyilur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.96620000", + "longitude": "79.20259000" + }, + { + "id": "134184", + "name": "Tirumullaivāsal", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.23996000", + "longitude": "79.83705000" + }, + { + "id": "134185", + "name": "Tirunelveli", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.72742000", + "longitude": "77.68380000" + }, + { + "id": "134186", + "name": "Tirunelveli Kattabo", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.79270000", + "longitude": "77.57409000" + }, + { + "id": "134188", + "name": "Tirupparangunram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.88151000", + "longitude": "78.07306000" + }, + { + "id": "134191", + "name": "Tiruppālaikudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.54606000", + "longitude": "78.91721000" + }, + { + "id": "134189", + "name": "Tiruppur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.11541000", + "longitude": "77.35456000" + }, + { + "id": "134190", + "name": "Tiruppuvanam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.82564000", + "longitude": "78.25795000" + }, + { + "id": "134193", + "name": "Tiruttangal", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.48333000", + "longitude": "77.83333000" + }, + { + "id": "134195", + "name": "Tiruvallur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.14376000", + "longitude": "79.90889000" + }, + { + "id": "134196", + "name": "Tiruvannamalai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.51000000", + "longitude": "79.09000000" + }, + { + "id": "134197", + "name": "Tiruvannāmalai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.22662000", + "longitude": "79.07461000" + }, + { + "id": "134198", + "name": "Tiruvottiyūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.15823000", + "longitude": "80.30181000" + }, + { + "id": "134200", + "name": "Tisaiyanvilai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.33702000", + "longitude": "77.86776000" + }, + { + "id": "134207", + "name": "Tondi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.74173000", + "longitude": "79.01774000" + }, + { + "id": "134224", + "name": "Turaiyūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.14968000", + "longitude": "78.59870000" + }, + { + "id": "134253", + "name": "Udangudi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.42918000", + "longitude": "78.02968000" + }, + { + "id": "134259", + "name": "Udumalaippettai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.58806000", + "longitude": "77.24779000" + }, + { + "id": "134290", + "name": "Uppiliyapuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.26356000", + "longitude": "78.51390000" + }, + { + "id": "134295", + "name": "Usilampatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.96936000", + "longitude": "77.78621000" + }, + { + "id": "134298", + "name": "Uttamapālaiyam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.80701000", + "longitude": "77.32718000" + }, + { + "id": "134302", + "name": "Uttiramerūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.61433000", + "longitude": "79.75748000" + }, + { + "id": "134303", + "name": "V.S.K.Valasai (Dindigul-Dist.)", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.31549000", + "longitude": "78.15141000" + }, + { + "id": "134304", + "name": "Vadakku Valliyūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.38286000", + "longitude": "77.61221000" + }, + { + "id": "134305", + "name": "Vadakku Viravanallur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "8.69786000", + "longitude": "77.51916000" + }, + { + "id": "134306", + "name": "Vadamadurai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.44081000", + "longitude": "78.09784000" + }, + { + "id": "134316", + "name": "Valangaiman", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.89012000", + "longitude": "79.39322000" + }, + { + "id": "134317", + "name": "Valavanur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.92094000", + "longitude": "79.58239000" + }, + { + "id": "134319", + "name": "Vallam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.71988000", + "longitude": "79.05981000" + }, + { + "id": "134320", + "name": "Valparai", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.32691000", + "longitude": "76.95116000" + }, + { + "id": "134323", + "name": "Vandalūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.89240000", + "longitude": "80.08079000" + }, + { + "id": "134324", + "name": "Vandavāsi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.50429000", + "longitude": "79.60556000" + }, + { + "id": "134325", + "name": "Vaniyambadi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.68162000", + "longitude": "78.62014000" + }, + { + "id": "134335", + "name": "Vattalkundu", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.16069000", + "longitude": "77.75883000" + }, + { + "id": "134380", + "name": "Vādippatti", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.08481000", + "longitude": "77.96113000" + }, + { + "id": "134384", + "name": "Vāsudevanallūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.24171000", + "longitude": "77.41177000" + }, + { + "id": "134385", + "name": "Vīraganūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.47613000", + "longitude": "78.73553000" + }, + { + "id": "134337", + "name": "Vedaraniyam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.37208000", + "longitude": "79.85095000" + }, + { + "id": "134338", + "name": "Vedasandūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.53102000", + "longitude": "77.95019000" + }, + { + "id": "134340", + "name": "Velankanni", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.68333000", + "longitude": "79.83333000" + }, + { + "id": "134342", + "name": "Vellānūr", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "13.15804000", + "longitude": "80.10634000" + }, + { + "id": "134341", + "name": "Vellore", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.86000000", + "longitude": "79.03500000" + }, + { + "id": "134343", + "name": "Velur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.10825000", + "longitude": "78.00113000" + }, + { + "id": "134345", + "name": "Vengavasal", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.89911000", + "longitude": "80.16900000" + }, + { + "id": "134351", + "name": "Vettaikkaranpudur", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "10.56207000", + "longitude": "76.91305000" + }, + { + "id": "134352", + "name": "Vettavalam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.10769000", + "longitude": "79.24516000" + }, + { + "id": "134355", + "name": "Vijayapuri", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.24530000", + "longitude": "77.50066000" + }, + { + "id": "134358", + "name": "Vikravāndi", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.03690000", + "longitude": "79.54595000" + }, + { + "id": "134361", + "name": "Vilattikulam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.13227000", + "longitude": "78.16635000" + }, + { + "id": "134362", + "name": "Villupuram", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.99000000", + "longitude": "79.37000000" + }, + { + "id": "134366", + "name": "Virudhunagar", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.45000000", + "longitude": "77.92000000" + }, + { + "id": "134367", + "name": "Virudunagar", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "9.58509000", + "longitude": "77.95787000" + }, + { + "id": "134375", + "name": "Vriddhāchalam", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.51830000", + "longitude": "79.32411000" + }, + { + "id": "134391", + "name": "Walajapet", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.92510000", + "longitude": "79.36626000" + }, + { + "id": "134392", + "name": "Wallajahbad", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "12.79041000", + "longitude": "79.82358000" + }, + { + "id": "134402", + "name": "Wellington", + "state_id": 4035, + "state_code": "TN", + "country_id": 101, + "country_code": "IN", + "latitude": "11.36552000", + "longitude": "76.78442000" + }, + { + "id": "57701", + "name": "Andol", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.81458000", + "longitude": "78.07713000" + }, + { + "id": "57754", + "name": "Asifābād", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.35851000", + "longitude": "79.28415000" + }, + { + "id": "134451", + "name": "Ādilābād", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.50000000", + "longitude": "78.50000000" + }, + { + "id": "134454", + "name": "Ālampur", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "15.87987000", + "longitude": "78.13352000" + }, + { + "id": "58120", + "name": "Bālāpur", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.31018000", + "longitude": "78.49969000" + }, + { + "id": "58133", + "name": "Bānswāda", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.37725000", + "longitude": "77.88007000" + }, + { + "id": "57923", + "name": "Bellampalli", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.05577000", + "longitude": "79.49300000" + }, + { + "id": "57952", + "name": "Bhadradri Kothagudem", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.55460000", + "longitude": "80.61976000" + }, + { + "id": "57955", + "name": "Bhadrāchalam", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.66846000", + "longitude": "80.88887000" + }, + { + "id": "57960", + "name": "Bhaisa", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.11285000", + "longitude": "77.96336000" + }, + { + "id": "57994", + "name": "Bhongīr", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.51544000", + "longitude": "78.88563000" + }, + { + "id": "58071", + "name": "Bodhan", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.66208000", + "longitude": "77.88581000" + }, + { + "id": "58194", + "name": "Chandūr", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.87455000", + "longitude": "78.10017000" + }, + { + "id": "131607", + "name": "Chātakonda", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.55303000", + "longitude": "80.64770000" + }, + { + "id": "131660", + "name": "Dasnapur", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.65399000", + "longitude": "78.51213000" + }, + { + "id": "131703", + "name": "Devarkonda", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.69186000", + "longitude": "78.92073000" + }, + { + "id": "131789", + "name": "Dornakal", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.44475000", + "longitude": "80.14905000" + }, + { + "id": "131857", + "name": "Farrukhnagar", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.07787000", + "longitude": "78.20339000" + }, + { + "id": "131887", + "name": "Gaddi Annaram", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.36687000", + "longitude": "78.52420000" + }, + { + "id": "131890", + "name": "Gadwāl", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.23504000", + "longitude": "77.79556000" + }, + { + "id": "132052", + "name": "Gūdūr", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.49174000", + "longitude": "78.82302000" + }, + { + "id": "131939", + "name": "Ghatkesar", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.45081000", + "longitude": "78.68366000" + }, + { + "id": "131989", + "name": "Gopālur", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.61220000", + "longitude": "77.80728000" + }, + { + "id": "132132", + "name": "Hyderabad", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.38405000", + "longitude": "78.45636000" + }, + { + "id": "132133", + "name": "Hyderābād", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.40164000", + "longitude": "78.48976000" + }, + { + "id": "132190", + "name": "Jagitial", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.79380000", + "longitude": "78.91354000" + }, + { + "id": "132193", + "name": "Jagtiāl", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.79473000", + "longitude": "78.91661000" + }, + { + "id": "132238", + "name": "Jangaon", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.72602000", + "longitude": "79.15236000" + }, + { + "id": "132239", + "name": "Jangoan", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.72943000", + "longitude": "79.16096000" + }, + { + "id": "132257", + "name": "Jayashankar Bhupalapally", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.19678000", + "longitude": "79.93976000" + }, + { + "id": "132290", + "name": "Jogulamba Gadwal", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.23401000", + "longitude": "77.80564000" + }, + { + "id": "132331", + "name": "Kagaznāgār", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.33159000", + "longitude": "79.46605000" + }, + { + "id": "132363", + "name": "Kamareddy", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.32567000", + "longitude": "78.33416000" + }, + { + "id": "132415", + "name": "Karīmnagar", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.33844000", + "longitude": "79.22938000" + }, + { + "id": "132696", + "name": "Kāmāreddi", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.32001000", + "longitude": "78.34177000" + }, + { + "id": "132737", + "name": "Kūkatpalli", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.48486000", + "longitude": "78.41376000" + }, + { + "id": "132464", + "name": "Khammam", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.50000000", + "longitude": "80.33333000" + }, + { + "id": "132546", + "name": "Kodār", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.99850000", + "longitude": "79.96560000" + }, + { + "id": "132580", + "name": "Koratla", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.82154000", + "longitude": "78.71186000" + }, + { + "id": "132599", + "name": "Kothāpet", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.35176000", + "longitude": "79.48323000" + }, + { + "id": "132606", + "name": "Kottagūdem", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.55106000", + "longitude": "80.61779000" + }, + { + "id": "132608", + "name": "Kottapalli", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.49543000", + "longitude": "79.09430000" + }, + { + "id": "132674", + "name": "Kyathampalle", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.66781000", + "longitude": "78.52890000" + }, + { + "id": "132751", + "name": "Lakshettipet", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.86667000", + "longitude": "79.21667000" + }, + { + "id": "132753", + "name": "Lal Bahadur Nagar", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.34769000", + "longitude": "78.55757000" + }, + { + "id": "132824", + "name": "Mahabubabad", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.60040000", + "longitude": "80.00543000" + }, + { + "id": "132829", + "name": "Mahbūbābād", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.59728000", + "longitude": "80.00207000" + }, + { + "id": "132828", + "name": "Mahbūbnagar", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.63171000", + "longitude": "77.75556000" + }, + { + "id": "132870", + "name": "Malkajgiri", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.44781000", + "longitude": "78.52633000" + }, + { + "id": "132887", + "name": "Mancherāl", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.87074000", + "longitude": "79.42863000" + }, + { + "id": "132888", + "name": "Mandamarri", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.96506000", + "longitude": "79.47475000" + }, + { + "id": "132927", + "name": "Manthani", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.65087000", + "longitude": "79.66501000" + }, + { + "id": "132928", + "name": "Manuguru", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.98102000", + "longitude": "80.75470000" + }, + { + "id": "132955", + "name": "Medak", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.75000000", + "longitude": "78.25000000" + }, + { + "id": "132956", + "name": "Medchal", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.62972000", + "longitude": "78.48139000" + }, + { + "id": "132957", + "name": "Medchal Malkajgiri", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.60644000", + "longitude": "78.54007000" + }, + { + "id": "132975", + "name": "Miriālgūda", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.87220000", + "longitude": "79.56247000" + }, + { + "id": "133132", + "name": "Nalgonda", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.16667000", + "longitude": "79.50000000" + }, + { + "id": "133255", + "name": "Nāgar Karnūl", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.48210000", + "longitude": "78.32471000" + }, + { + "id": "133277", + "name": "Nārāyanpet", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.74799000", + "longitude": "77.49540000" + }, + { + "id": "133274", + "name": "Nārsingi", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.04468000", + "longitude": "78.42516000" + }, + { + "id": "133278", + "name": "Nāspur", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.84577000", + "longitude": "79.46165000" + }, + { + "id": "133221", + "name": "Nirmal", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.09685000", + "longitude": "78.34407000" + }, + { + "id": "133226", + "name": "Nizamabad", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.75000000", + "longitude": "78.25000000" + }, + { + "id": "133227", + "name": "Nizāmābād", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.67154000", + "longitude": "78.09880000" + }, + { + "id": "133338", + "name": "Palwancha", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.58152000", + "longitude": "80.67651000" + }, + { + "id": "133377", + "name": "Patancheru", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.53334000", + "longitude": "78.26450000" + }, + { + "id": "133535", + "name": "Pāloncha", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.60184000", + "longitude": "80.70509000" + }, + { + "id": "133401", + "name": "Peddapalli", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.61357000", + "longitude": "79.37442000" + }, + { + "id": "133574", + "name": "Quthbullapur", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.50107000", + "longitude": "78.45818000" + }, + { + "id": "133592", + "name": "Rajanna Sircilla", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.38629000", + "longitude": "78.81560000" + }, + { + "id": "133597", + "name": "Ramagundam", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.75500000", + "longitude": "79.47400000" + }, + { + "id": "133607", + "name": "Rangareddi", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.27883000", + "longitude": "78.16844000" + }, + { + "id": "133699", + "name": "Rāmgundam", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.80084000", + "longitude": "79.45206000" + }, + { + "id": "133745", + "name": "Sadāseopet", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.61925000", + "longitude": "77.95263000" + }, + { + "id": "133787", + "name": "Sangāreddi", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.62477000", + "longitude": "78.08669000" + }, + { + "id": "133818", + "name": "Sathupalli", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.24968000", + "longitude": "80.86899000" + }, + { + "id": "133834", + "name": "Secunderabad", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.50427000", + "longitude": "78.54263000" + }, + { + "id": "133849", + "name": "Serilingampalle", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.49313000", + "longitude": "78.30196000" + }, + { + "id": "133919", + "name": "Siddipet", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.10483000", + "longitude": "78.84858000" + }, + { + "id": "133951", + "name": "Singāpur", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.46982000", + "longitude": "78.12574000" + }, + { + "id": "133960", + "name": "Sirpur", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "19.47953000", + "longitude": "79.57558000" + }, + { + "id": "133964", + "name": "Sirsilla", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.38865000", + "longitude": "78.81048000" + }, + { + "id": "134031", + "name": "Srīrāmnagar", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.26652000", + "longitude": "78.25544000" + }, + { + "id": "134054", + "name": "Suriāpet", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.14054000", + "longitude": "79.62045000" + }, + { + "id": "134237", + "name": "Tāndūr", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.24849000", + "longitude": "77.57698000" + }, + { + "id": "134287", + "name": "Uppal Kalan", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.40577000", + "longitude": "78.55911000" + }, + { + "id": "134344", + "name": "Vemalwāda", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.46523000", + "longitude": "78.86894000" + }, + { + "id": "134359", + "name": "Vikārābād", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.33810000", + "longitude": "77.90441000" + }, + { + "id": "134394", + "name": "Wanparti", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "16.36738000", + "longitude": "78.06889000" + }, + { + "id": "134395", + "name": "Warangal", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "18.00000000", + "longitude": "79.83333000" + }, + { + "id": "134432", + "name": "Yellandu", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.59064000", + "longitude": "80.32146000" + }, + { + "id": "134440", + "name": "Zahirābād", + "state_id": 4012, + "state_code": "TG", + "country_id": 101, + "country_code": "IN", + "latitude": "17.68138000", + "longitude": "77.60743000" + }, + { + "id": "57600", + "name": "Agartala", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.83605000", + "longitude": "91.27939000" + }, + { + "id": "57662", + "name": "Amarpur", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.52570000", + "longitude": "91.65879000" + }, + { + "id": "134458", + "name": "Āmbāsa", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.93600000", + "longitude": "91.85436000" + }, + { + "id": "57876", + "name": "Barjala", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.61820000", + "longitude": "91.35596000" + }, + { + "id": "57926", + "name": "Belonia", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.25178000", + "longitude": "91.45407000" + }, + { + "id": "131710", + "name": "Dhalai", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.84307000", + "longitude": "91.92591000" + }, + { + "id": "131725", + "name": "Dharmanagar", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.36667000", + "longitude": "92.16667000" + }, + { + "id": "131979", + "name": "Gomati", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.53399000", + "longitude": "91.48122000" + }, + { + "id": "132334", + "name": "Kailāshahar", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.33199000", + "longitude": "92.00391000" + }, + { + "id": "132362", + "name": "Kamalpur", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.19593000", + "longitude": "91.83438000" + }, + { + "id": "132502", + "name": "Khowai", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.07964000", + "longitude": "91.59972000" + }, + { + "id": "133241", + "name": "North Tripura", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.13050000", + "longitude": "92.15552000" + }, + { + "id": "133721", + "name": "Rānīr Bāzār", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.83463000", + "longitude": "91.36614000" + }, + { + "id": "133740", + "name": "Sabrūm", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.00153000", + "longitude": "91.72427000" + }, + { + "id": "133997", + "name": "Sonāmura", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.47547000", + "longitude": "91.26590000" + }, + { + "id": "134011", + "name": "South Tripura", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.16710000", + "longitude": "91.60953000" + }, + { + "id": "134249", + "name": "Udaipur", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.53333000", + "longitude": "91.48333000" + }, + { + "id": "134281", + "name": "Unakoti", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "24.32781000", + "longitude": "92.00377000" + }, + { + "id": "134412", + "name": "West Tripura", + "state_id": 4038, + "state_code": "TR", + "country_id": 101, + "country_code": "IN", + "latitude": "23.91667000", + "longitude": "91.50000000" + }, + { + "id": "57590", + "name": "Achhnera", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.17826000", + "longitude": "77.75674000" + }, + { + "id": "57597", + "name": "Afzalgarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.39370000", + "longitude": "78.67393000" + }, + { + "id": "57601", + "name": "Agra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.18333000", + "longitude": "78.01667000" + }, + { + "id": "57607", + "name": "Ahraura", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.01579000", + "longitude": "83.03294000" + }, + { + "id": "57616", + "name": "Ajodhya", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.79909000", + "longitude": "82.20470000" + }, + { + "id": "57621", + "name": "Akbarpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.42953000", + "longitude": "82.53431000" + }, + { + "id": "57653", + "name": "Alīganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.49358000", + "longitude": "79.17127000" + }, + { + "id": "57654", + "name": "Alīgarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.83333000", + "longitude": "78.16667000" + }, + { + "id": "57640", + "name": "Allahābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.42012000", + "longitude": "81.88385000" + }, + { + "id": "57641", + "name": "Allāhganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.54540000", + "longitude": "79.68715000" + }, + { + "id": "57692", + "name": "Amānpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.71222000", + "longitude": "78.73788000" + }, + { + "id": "57666", + "name": "Ambahta", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.85706000", + "longitude": "77.33583000" + }, + { + "id": "57669", + "name": "Ambedkar Nagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.40544000", + "longitude": "82.69762000" + }, + { + "id": "57678", + "name": "Amethī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.15696000", + "longitude": "81.80519000" + }, + { + "id": "57677", + "name": "Amethi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.01667000", + "longitude": "81.05000000" + }, + { + "id": "57687", + "name": "Amroha", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.90314000", + "longitude": "78.46984000" + }, + { + "id": "57696", + "name": "Anandnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.10062000", + "longitude": "83.27156000" + }, + { + "id": "57724", + "name": "Anūpshahr", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.35748000", + "longitude": "78.26914000" + }, + { + "id": "57720", + "name": "Antu", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.05654000", + "longitude": "81.90267000" + }, + { + "id": "57725", + "name": "Aonla", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.27402000", + "longitude": "79.16521000" + }, + { + "id": "57755", + "name": "Atarra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.28618000", + "longitude": "80.57155000" + }, + { + "id": "57760", + "name": "Atraulī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.02964000", + "longitude": "78.28571000" + }, + { + "id": "57759", + "name": "Atraulia", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.33330000", + "longitude": "82.94727000" + }, + { + "id": "57764", + "name": "Auraiya", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.64692000", + "longitude": "79.42858000" + }, + { + "id": "57769", + "name": "Aurās", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.91414000", + "longitude": "80.50792000" + }, + { + "id": "57777", + "name": "Azamgarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.06832000", + "longitude": "83.18358000" + }, + { + "id": "134471", + "name": "Ūn", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.58479000", + "longitude": "77.25540000" + }, + { + "id": "134453", + "name": "Āgra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.08333000", + "longitude": "77.96667000" + }, + { + "id": "134470", + "name": "Āzamgarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.00000000", + "longitude": "83.00000000" + }, + { + "id": "57782", + "name": "Babīna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.23947000", + "longitude": "78.47028000" + }, + { + "id": "57779", + "name": "Baberu", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.54711000", + "longitude": "80.70443000" + }, + { + "id": "57780", + "name": "Babrāla", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.26419000", + "longitude": "78.40560000" + }, + { + "id": "57781", + "name": "Babugarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.72353000", + "longitude": "77.84677000" + }, + { + "id": "57783", + "name": "Bachhraon", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.92694000", + "longitude": "78.23456000" + }, + { + "id": "57784", + "name": "Bachhrāwān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.47090000", + "longitude": "81.11580000" + }, + { + "id": "57801", + "name": "Baghpat", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.95000000", + "longitude": "77.21670000" + }, + { + "id": "57803", + "name": "Baheri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.77416000", + "longitude": "79.49740000" + }, + { + "id": "57804", + "name": "Bahjoi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.39502000", + "longitude": "78.62659000" + }, + { + "id": "57805", + "name": "Bahraich", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.80021000", + "longitude": "81.51855000" + }, + { + "id": "57806", + "name": "Bahraigh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.57429000", + "longitude": "81.59474000" + }, + { + "id": "57807", + "name": "Bahsūma", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.20063000", + "longitude": "77.97221000" + }, + { + "id": "57808", + "name": "Bahua", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.83942000", + "longitude": "80.62255000" + }, + { + "id": "57817", + "name": "Bakewar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.66226000", + "longitude": "79.17625000" + }, + { + "id": "57825", + "name": "Baldev", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.40684000", + "longitude": "77.82214000" + }, + { + "id": "57828", + "name": "Ballia", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.83333000", + "longitude": "84.16667000" + }, + { + "id": "57833", + "name": "Balrampur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.43449000", + "longitude": "82.40281000" + }, + { + "id": "57834", + "name": "Balrāmpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.42949000", + "longitude": "82.18545000" + }, + { + "id": "57840", + "name": "Banat", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.46355000", + "longitude": "77.35478000" + }, + { + "id": "57841", + "name": "Banbasa", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.99132000", + "longitude": "80.07608000" + }, + { + "id": "57865", + "name": "Baraut", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.10199000", + "longitude": "77.26334000" + }, + { + "id": "57892", + "name": "Barāgaon", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.47554000", + "longitude": "78.71224000" + }, + { + "id": "57867", + "name": "Bareilly", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.41667000", + "longitude": "79.38333000" + }, + { + "id": "57877", + "name": "Barkhera Kalān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.45209000", + "longitude": "79.80655000" + }, + { + "id": "57887", + "name": "Barsāna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.64802000", + "longitude": "77.37640000" + }, + { + "id": "57902", + "name": "Bastī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.78817000", + "longitude": "82.71617000" + }, + { + "id": "57901", + "name": "Basti", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.82816000", + "longitude": "82.77924000" + }, + { + "id": "58110", + "name": "Bāghpat", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.94485000", + "longitude": "77.21865000" + }, + { + "id": "58112", + "name": "Bāh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.86912000", + "longitude": "78.59385000" + }, + { + "id": "58113", + "name": "Bājna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.89793000", + "longitude": "77.67836000" + }, + { + "id": "58124", + "name": "Bānda", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "80.50000000" + }, + { + "id": "58126", + "name": "Bāngarmau", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.89120000", + "longitude": "80.21149000" + }, + { + "id": "58130", + "name": "Bānsdīh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.88377000", + "longitude": "84.21827000" + }, + { + "id": "58131", + "name": "Bānsgāon", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.55032000", + "longitude": "83.34503000" + }, + { + "id": "58132", + "name": "Bānsi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.17749000", + "longitude": "82.93442000" + }, + { + "id": "58138", + "name": "Bāra Banki", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.93864000", + "longitude": "81.32740000" + }, + { + "id": "58155", + "name": "Bīghāpur Khurd", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.34734000", + "longitude": "80.65698000" + }, + { + "id": "58158", + "name": "Bīkāpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.59534000", + "longitude": "82.13272000" + }, + { + "id": "58159", + "name": "Bīlāspur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.88655000", + "longitude": "79.27030000" + }, + { + "id": "58161", + "name": "Bīsalpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.29253000", + "longitude": "79.80472000" + }, + { + "id": "57918", + "name": "Behat", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.17180000", + "longitude": "77.61390000" + }, + { + "id": "57920", + "name": "Bela", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.92058000", + "longitude": "81.99629000" + }, + { + "id": "57934", + "name": "Benīganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.29293000", + "longitude": "80.44364000" + }, + { + "id": "57938", + "name": "Beswān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.63792000", + "longitude": "77.88019000" + }, + { + "id": "57944", + "name": "Bewar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.21869000", + "longitude": "79.29761000" + }, + { + "id": "57951", + "name": "Bhadohi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.39526000", + "longitude": "82.57030000" + }, + { + "id": "57958", + "name": "Bhagwantnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.22383000", + "longitude": "80.75750000" + }, + { + "id": "57965", + "name": "Bharthana", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.75231000", + "longitude": "79.22180000" + }, + { + "id": "57966", + "name": "Bharwāri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.56078000", + "longitude": "81.49164000" + }, + { + "id": "57984", + "name": "Bhinga", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.70283000", + "longitude": "81.93430000" + }, + { + "id": "57993", + "name": "Bhongaon", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.25515000", + "longitude": "79.18118000" + }, + { + "id": "58027", + "name": "Bidhūna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.80172000", + "longitude": "79.50829000" + }, + { + "id": "58035", + "name": "Bijnor", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.41667000", + "longitude": "78.51667000" + }, + { + "id": "58040", + "name": "Bilariāganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.19593000", + "longitude": "83.22690000" + }, + { + "id": "58052", + "name": "Bilāri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.62146000", + "longitude": "78.80361000" + }, + { + "id": "58043", + "name": "Bilgrām", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.17509000", + "longitude": "80.03201000" + }, + { + "id": "58044", + "name": "Bilhaur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.84345000", + "longitude": "80.06388000" + }, + { + "id": "58048", + "name": "Bilsanda", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.24341000", + "longitude": "79.95135000" + }, + { + "id": "58049", + "name": "Bilsi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.12941000", + "longitude": "78.91090000" + }, + { + "id": "58050", + "name": "Bilthra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.12705000", + "longitude": "83.89148000" + }, + { + "id": "58057", + "name": "Bindki", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.03613000", + "longitude": "80.57617000" + }, + { + "id": "58062", + "name": "Bisauli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.30772000", + "longitude": "78.93678000" + }, + { + "id": "58063", + "name": "Bisenda Buzurg", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.40350000", + "longitude": "80.61889000" + }, + { + "id": "58066", + "name": "Bishunpur Urf Mahārājganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.25914000", + "longitude": "83.11643000" + }, + { + "id": "58068", + "name": "Biswān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.49581000", + "longitude": "80.99618000" + }, + { + "id": "58069", + "name": "Bithūr", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.60664000", + "longitude": "80.27098000" + }, + { + "id": "58088", + "name": "Budaun", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.11667000", + "longitude": "78.98333000" + }, + { + "id": "58091", + "name": "Budhāna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.28805000", + "longitude": "77.47534000" + }, + { + "id": "58093", + "name": "Bulandshahr", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.41667000", + "longitude": "77.83333000" + }, + { + "id": "58168", + "name": "Captainganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.92640000", + "longitude": "83.71334000" + }, + { + "id": "58172", + "name": "Chail", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.42654000", + "longitude": "81.63198000" + }, + { + "id": "58173", + "name": "Chakia", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.04891000", + "longitude": "83.22155000" + }, + { + "id": "58186", + "name": "Chandauli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.25803000", + "longitude": "83.26825000" + }, + { + "id": "58187", + "name": "Chandauli District", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.26134000", + "longitude": "83.26408000" + }, + { + "id": "58193", + "name": "Chanduasi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.45178000", + "longitude": "78.78277000" + }, + { + "id": "58201", + "name": "Charkhāri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.40304000", + "longitude": "79.74877000" + }, + { + "id": "131509", + "name": "Charthāwal", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.54687000", + "longitude": "77.59438000" + }, + { + "id": "131600", + "name": "Chāndpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.13489000", + "longitude": "78.27187000" + }, + { + "id": "131530", + "name": "Chhaprauli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.20989000", + "longitude": "77.17454000" + }, + { + "id": "131531", + "name": "Chharra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.92470000", + "longitude": "78.40102000" + }, + { + "id": "131540", + "name": "Chhāta", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.72374000", + "longitude": "77.50810000" + }, + { + "id": "131533", + "name": "Chhibrāmau", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.14872000", + "longitude": "79.50078000" + }, + { + "id": "131537", + "name": "Chhutmalpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "30.03209000", + "longitude": "77.75329000" + }, + { + "id": "131557", + "name": "Chillupār", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.28221000", + "longitude": "83.50640000" + }, + { + "id": "131569", + "name": "Chirgaon", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.57198000", + "longitude": "78.81432000" + }, + { + "id": "131572", + "name": "Chitrakoot", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.20511000", + "longitude": "81.08962000" + }, + { + "id": "131579", + "name": "Chopan", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.51954000", + "longitude": "83.02287000" + }, + { + "id": "131584", + "name": "Chunār", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.12776000", + "longitude": "82.88210000" + }, + { + "id": "131621", + "name": "Colonelganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.13432000", + "longitude": "81.69868000" + }, + { + "id": "131646", + "name": "Dalmau", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.06477000", + "longitude": "81.02980000" + }, + { + "id": "131653", + "name": "Dankaur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.35121000", + "longitude": "77.55508000" + }, + { + "id": "131668", + "name": "Daurāla", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.11344000", + "longitude": "77.70467000" + }, + { + "id": "131674", + "name": "Dayāl Bāgh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.22122000", + "longitude": "78.01095000" + }, + { + "id": "131806", + "name": "Dādri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.55257000", + "longitude": "77.55403000" + }, + { + "id": "131811", + "name": "Dāsna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.67736000", + "longitude": "77.52252000" + }, + { + "id": "131812", + "name": "Dātāganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.02530000", + "longitude": "79.40819000" + }, + { + "id": "131818", + "name": "Dūdhi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.21357000", + "longitude": "83.24067000" + }, + { + "id": "131682", + "name": "Deoband", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.69505000", + "longitude": "77.67964000" + }, + { + "id": "131689", + "name": "Deoraniān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.62989000", + "longitude": "79.47648000" + }, + { + "id": "131692", + "name": "Deoria", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.66667000", + "longitude": "83.75000000" + }, + { + "id": "131708", + "name": "Dewā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.03621000", + "longitude": "81.16692000" + }, + { + "id": "131714", + "name": "Dhanaura", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.95912000", + "longitude": "78.25629000" + }, + { + "id": "131731", + "name": "Dhaurahra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.99814000", + "longitude": "81.08975000" + }, + { + "id": "131750", + "name": "Dhāmpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.30883000", + "longitude": "78.51083000" + }, + { + "id": "131761", + "name": "Dibai", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.20849000", + "longitude": "78.26173000" + }, + { + "id": "131783", + "name": "Dohrighāt", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.27217000", + "longitude": "83.50916000" + }, + { + "id": "131791", + "name": "Dostpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.27486000", + "longitude": "82.47091000" + }, + { + "id": "131845", + "name": "Etah", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.50000000", + "longitude": "78.75000000" + }, + { + "id": "131849", + "name": "Etāwah", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.75000000", + "longitude": "79.25000000" + }, + { + "id": "131851", + "name": "Faizābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.75000000", + "longitude": "82.00000000" + }, + { + "id": "131852", + "name": "Farah", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.32081000", + "longitude": "77.76185000" + }, + { + "id": "131860", + "name": "Farīdnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.76923000", + "longitude": "77.62934000" + }, + { + "id": "131861", + "name": "Farīdpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.20997000", + "longitude": "79.54149000" + }, + { + "id": "131858", + "name": "Farrukhābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.50000000", + "longitude": "79.50000000" + }, + { + "id": "131871", + "name": "Fatehābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.02645000", + "longitude": "78.30270000" + }, + { + "id": "131863", + "name": "Fatehganj West", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.46620000", + "longitude": "79.30657000" + }, + { + "id": "131864", + "name": "Fatehgarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.36409000", + "longitude": "79.63111000" + }, + { + "id": "131868", + "name": "Fatehpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "80.75000000" + }, + { + "id": "131869", + "name": "Fatehpur Chaurāsi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.78925000", + "longitude": "80.26547000" + }, + { + "id": "131870", + "name": "Fatehpur Sīkri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.09370000", + "longitude": "77.66003000" + }, + { + "id": "131883", + "name": "Fīrozābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.15092000", + "longitude": "78.39781000" + }, + { + "id": "131876", + "name": "Firozabad", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.20072000", + "longitude": "78.42867000" + }, + { + "id": "131880", + "name": "Fyzābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.77549000", + "longitude": "82.15018000" + }, + { + "id": "131894", + "name": "Gajraula", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.84570000", + "longitude": "78.23960000" + }, + { + "id": "131903", + "name": "Gangoh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.78004000", + "longitude": "77.26346000" + }, + { + "id": "131912", + "name": "Ganj Dundwāra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.73308000", + "longitude": "78.94119000" + }, + { + "id": "131913", + "name": "Ganj Murādābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.95733000", + "longitude": "80.18400000" + }, + { + "id": "131916", + "name": "Garautha", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.57190000", + "longitude": "79.29764000" + }, + { + "id": "131919", + "name": "Garhi Pūkhta", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.54980000", + "longitude": "77.30881000" + }, + { + "id": "131920", + "name": "Garhmuktesar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.78732000", + "longitude": "78.10214000" + }, + { + "id": "131929", + "name": "Gautam Buddha Nagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.35898000", + "longitude": "77.55076000" + }, + { + "id": "131931", + "name": "Gawān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.41969000", + "longitude": "78.35186000" + }, + { + "id": "131940", + "name": "Ghazīpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.58333000", + "longitude": "83.58526000" + }, + { + "id": "131950", + "name": "Ghātampur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.15272000", + "longitude": "80.16803000" + }, + { + "id": "131954", + "name": "Ghāzīpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "83.50000000" + }, + { + "id": "131953", + "name": "Ghāziābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.66535000", + "longitude": "77.43915000" + }, + { + "id": "131941", + "name": "Ghiror", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.18912000", + "longitude": "78.79312000" + }, + { + "id": "131945", + "name": "Ghorāwal", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.75459000", + "longitude": "82.77965000" + }, + { + "id": "131946", + "name": "Ghosī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.10587000", + "longitude": "83.53930000" + }, + { + "id": "131969", + "name": "Gohānd", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.69871000", + "longitude": "79.54567000" + }, + { + "id": "131973", + "name": "Gokul", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.43926000", + "longitude": "77.72019000" + }, + { + "id": "131974", + "name": "Gola Bāzār", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.34460000", + "longitude": "83.35303000" + }, + { + "id": "131975", + "name": "Gola Gokarannāth", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.07837000", + "longitude": "80.47054000" + }, + { + "id": "131981", + "name": "Gonda", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.18581000", + "longitude": "81.96693000" + }, + { + "id": "131985", + "name": "Gondā City", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.13181000", + "longitude": "81.95332000" + }, + { + "id": "131990", + "name": "Gopāmau", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.53468000", + "longitude": "80.28507000" + }, + { + "id": "131992", + "name": "Gorakhpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.91667000", + "longitude": "83.25000000" + }, + { + "id": "131999", + "name": "Goshāīnganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.76793000", + "longitude": "81.10752000" + }, + { + "id": "131998", + "name": "Goshāinganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.57115000", + "longitude": "82.38091000" + }, + { + "id": "132000", + "name": "Govardhan", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.49658000", + "longitude": "77.46263000" + }, + { + "id": "132005", + "name": "Greater Noida", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.49615000", + "longitude": "77.53601000" + }, + { + "id": "132019", + "name": "Gulāothi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.58938000", + "longitude": "77.79318000" + }, + { + "id": "132026", + "name": "Gunnaur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.23995000", + "longitude": "78.43994000" + }, + { + "id": "132035", + "name": "Gursahāiganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.11518000", + "longitude": "79.73174000" + }, + { + "id": "132036", + "name": "Gursarāi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.61677000", + "longitude": "79.18053000" + }, + { + "id": "132042", + "name": "Gyānpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.33268000", + "longitude": "82.46637000" + }, + { + "id": "132057", + "name": "Haldaur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.28988000", + "longitude": "78.28437000" + }, + { + "id": "132062", + "name": "Hamīrpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "80.00000000" + }, + { + "id": "132064", + "name": "Handiā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.36379000", + "longitude": "82.18655000" + }, + { + "id": "132068", + "name": "Haraiya", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.79477000", + "longitude": "82.46436000" + }, + { + "id": "132073", + "name": "Hardoī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.39491000", + "longitude": "80.13165000" + }, + { + "id": "132072", + "name": "Hardoi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.41667000", + "longitude": "80.25000000" + }, + { + "id": "132074", + "name": "Harduāganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.94361000", + "longitude": "78.15789000" + }, + { + "id": "132085", + "name": "Hasanpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.72249000", + "longitude": "78.28436000" + }, + { + "id": "132087", + "name": "Hastināpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.16042000", + "longitude": "78.00762000" + }, + { + "id": "132142", + "name": "Hāpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.72985000", + "longitude": "77.78068000" + }, + { + "id": "132146", + "name": "Hātā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.74120000", + "longitude": "83.74526000" + }, + { + "id": "132144", + "name": "Hāthras", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.59551000", + "longitude": "78.05201000" + }, + { + "id": "132156", + "name": "Iglās", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.71100000", + "longitude": "77.93967000" + }, + { + "id": "132157", + "name": "Ikauna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.53097000", + "longitude": "81.96917000" + }, + { + "id": "132164", + "name": "Indergarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.93521000", + "longitude": "79.67120000" + }, + { + "id": "132173", + "name": "Islāmnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.32896000", + "longitude": "78.72524000" + }, + { + "id": "132176", + "name": "Itaunja", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.08347000", + "longitude": "80.89672000" + }, + { + "id": "132177", + "name": "Itimādpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.23541000", + "longitude": "78.19829000" + }, + { + "id": "132187", + "name": "Jagdīshpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.74967000", + "longitude": "80.54510000" + }, + { + "id": "132191", + "name": "Jagnair", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.86360000", + "longitude": "77.60231000" + }, + { + "id": "132197", + "name": "Jahānābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.63025000", + "longitude": "79.71818000" + }, + { + "id": "132196", + "name": "Jahāngīrābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.40549000", + "longitude": "78.10588000" + }, + { + "id": "132195", + "name": "Jahāngīrpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.17919000", + "longitude": "77.70501000" + }, + { + "id": "132200", + "name": "Jainpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.15389000", + "longitude": "83.33505000" + }, + { + "id": "132202", + "name": "Jais", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.26490000", + "longitude": "81.54855000" + }, + { + "id": "132221", + "name": "Jalālābad", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.61853000", + "longitude": "77.43908000" + }, + { + "id": "132222", + "name": "Jalālābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.72625000", + "longitude": "79.65523000" + }, + { + "id": "132224", + "name": "Jalālī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.86680000", + "longitude": "78.25267000" + }, + { + "id": "132220", + "name": "Jalālpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.31162000", + "longitude": "82.73859000" + }, + { + "id": "132212", + "name": "Jalesar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.47315000", + "longitude": "78.30310000" + }, + { + "id": "132242", + "name": "Jarwal", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.16290000", + "longitude": "81.54179000" + }, + { + "id": "132248", + "name": "Jasrāna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.23587000", + "longitude": "78.65244000" + }, + { + "id": "132249", + "name": "Jaswantnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.88271000", + "longitude": "78.90256000" + }, + { + "id": "132252", + "name": "Jaunpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "82.75000000" + }, + { + "id": "132306", + "name": "Jālaun", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.00000000", + "longitude": "79.50000000" + }, + { + "id": "132313", + "name": "Jānsath", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.32502000", + "longitude": "77.85044000" + }, + { + "id": "132264", + "name": "Jewar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.12200000", + "longitude": "77.55734000" + }, + { + "id": "132277", + "name": "Jhālu", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.33609000", + "longitude": "78.22608000" + }, + { + "id": "132279", + "name": "Jhānsi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50000000", + "longitude": "78.50000000" + }, + { + "id": "132280", + "name": "Jhīnjhak", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.56093000", + "longitude": "79.73423000" + }, + { + "id": "132281", + "name": "Jhūsi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.43745000", + "longitude": "81.90550000" + }, + { + "id": "132271", + "name": "Jhinjhāna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.52118000", + "longitude": "77.22470000" + }, + { + "id": "132303", + "name": "Jyotiba Phule Nagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.77160000", + "longitude": "78.33871000" + }, + { + "id": "132320", + "name": "Kabrāi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.40281000", + "longitude": "79.99970000" + }, + { + "id": "132322", + "name": "Kachhwa", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.20615000", + "longitude": "82.71442000" + }, + { + "id": "132325", + "name": "Kadaura", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.98537000", + "longitude": "79.83842000" + }, + { + "id": "132335", + "name": "Kaimganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.55441000", + "longitude": "79.33525000" + }, + { + "id": "132339", + "name": "Kairāna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.39541000", + "longitude": "77.20540000" + }, + { + "id": "132342", + "name": "Kakrāla", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.89269000", + "longitude": "79.19450000" + }, + { + "id": "132361", + "name": "Kamalganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.26181000", + "longitude": "79.63134000" + }, + { + "id": "132364", + "name": "Kampil", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.61268000", + "longitude": "79.27687000" + }, + { + "id": "132378", + "name": "Kannauj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.01770000", + "longitude": "79.67846000" + }, + { + "id": "132384", + "name": "Kanpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.46523000", + "longitude": "80.34975000" + }, + { + "id": "132385", + "name": "Kanpur Dehat", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.41506000", + "longitude": "79.98957000" + }, + { + "id": "132413", + "name": "Karārī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.45241000", + "longitude": "81.42675000" + }, + { + "id": "132400", + "name": "Karhal", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.00089000", + "longitude": "78.93935000" + }, + { + "id": "132426", + "name": "Katra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.50871000", + "longitude": "82.02636000" + }, + { + "id": "132430", + "name": "Kaushambi District", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.53074000", + "longitude": "81.37729000" + }, + { + "id": "132676", + "name": "Kādīpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.16779000", + "longitude": "82.37028000" + }, + { + "id": "132679", + "name": "Kākori", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.86800000", + "longitude": "80.78570000" + }, + { + "id": "132690", + "name": "Kālīnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.62019000", + "longitude": "80.08152000" + }, + { + "id": "132683", + "name": "Kālpi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.11667000", + "longitude": "79.73333000" + }, + { + "id": "132697", + "name": "Kāndhla", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.32104000", + "longitude": "77.27101000" + }, + { + "id": "132710", + "name": "Kānpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.38052000", + "longitude": "80.21578000" + }, + { + "id": "132711", + "name": "Kānt", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.81049000", + "longitude": "79.79185000" + }, + { + "id": "132712", + "name": "Kānth", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.05939000", + "longitude": "78.62951000" + }, + { + "id": "132722", + "name": "Kāsganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.80882000", + "longitude": "78.64579000" + }, + { + "id": "132734", + "name": "Kīratpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.50671000", + "longitude": "78.20613000" + }, + { + "id": "132440", + "name": "Kemrī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.80673000", + "longitude": "79.20480000" + }, + { + "id": "132449", + "name": "Khada", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.18333000", + "longitude": "83.88333000" + }, + { + "id": "132454", + "name": "Khair", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.94195000", + "longitude": "77.84243000" + }, + { + "id": "132455", + "name": "Khairābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.52698000", + "longitude": "80.75461000" + }, + { + "id": "132459", + "name": "Khalīlābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.77268000", + "longitude": "83.07179000" + }, + { + "id": "132473", + "name": "Kharela", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.54277000", + "longitude": "79.81235000" + }, + { + "id": "132475", + "name": "Khargupur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.37611000", + "longitude": "81.98820000" + }, + { + "id": "132479", + "name": "Kharkhauda", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.83644000", + "longitude": "77.74159000" + }, + { + "id": "132483", + "name": "Khatauli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.27844000", + "longitude": "77.73302000" + }, + { + "id": "132512", + "name": "Khāga", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.77215000", + "longitude": "81.10393000" + }, + { + "id": "132514", + "name": "Khānpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.53446000", + "longitude": "78.06546000" + }, + { + "id": "132520", + "name": "Khūtār", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.20307000", + "longitude": "80.27046000" + }, + { + "id": "132490", + "name": "Khekra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.86586000", + "longitude": "77.28410000" + }, + { + "id": "132492", + "name": "Kheri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.11667000", + "longitude": "80.71667000" + }, + { + "id": "132503", + "name": "Khudāganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.14607000", + "longitude": "79.71472000" + }, + { + "id": "132509", + "name": "Khurja", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.25382000", + "longitude": "77.85535000" + }, + { + "id": "132526", + "name": "Kiraoli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.13768000", + "longitude": "77.78516000" + }, + { + "id": "132528", + "name": "Kirākat", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.63745000", + "longitude": "82.91596000" + }, + { + "id": "132531", + "name": "Kishanpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.64232000", + "longitude": "81.02270000" + }, + { + "id": "132532", + "name": "Kishni", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.02487000", + "longitude": "79.26200000" + }, + { + "id": "132535", + "name": "Kithor", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.86684000", + "longitude": "77.93861000" + }, + { + "id": "132564", + "name": "Konch", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.99451000", + "longitude": "79.15127000" + }, + { + "id": "132575", + "name": "Kopāganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.01923000", + "longitude": "83.56630000" + }, + { + "id": "132589", + "name": "Kosi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.79449000", + "longitude": "77.43680000" + }, + { + "id": "132592", + "name": "Kota", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.44643000", + "longitude": "83.13063000" + }, + { + "id": "132605", + "name": "Kotra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.80770000", + "longitude": "79.30909000" + }, + { + "id": "132635", + "name": "Kulpahār", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.32007000", + "longitude": "79.63931000" + }, + { + "id": "132644", + "name": "Kunda", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.71702000", + "longitude": "81.51396000" + }, + { + "id": "132645", + "name": "Kundarkhi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.68304000", + "longitude": "78.78559000" + }, + { + "id": "132664", + "name": "Kurāra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.98046000", + "longitude": "79.98984000" + }, + { + "id": "132665", + "name": "Kushinagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.74028000", + "longitude": "83.88889000" + }, + { + "id": "132748", + "name": "Lakhīmpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.94822000", + "longitude": "80.77935000" + }, + { + "id": "132745", + "name": "Lakhnā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.64822000", + "longitude": "79.14770000" + }, + { + "id": "132755", + "name": "Lalitpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.50000000", + "longitude": "78.50000000" + }, + { + "id": "132757", + "name": "Lar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.20394000", + "longitude": "83.96906000" + }, + { + "id": "132790", + "name": "Lāharpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.70827000", + "longitude": "80.90256000" + }, + { + "id": "132796", + "name": "Lālganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.93182000", + "longitude": "81.70478000" + }, + { + "id": "132803", + "name": "Lāwar Khās", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.11091000", + "longitude": "77.77767000" + }, + { + "id": "132775", + "name": "Loni", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.75143000", + "longitude": "77.29023000" + }, + { + "id": "132782", + "name": "Lucknow", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.83928000", + "longitude": "80.92313000" + }, + { + "id": "132783", + "name": "Lucknow District", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.75000000", + "longitude": "81.00000000" + }, + { + "id": "132805", + "name": "Machhlīshahr", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.68564000", + "longitude": "82.41106000" + }, + { + "id": "132823", + "name": "Maghar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.75586000", + "longitude": "83.12773000" + }, + { + "id": "132826", + "name": "Maharajganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.16945000", + "longitude": "83.50667000" + }, + { + "id": "132845", + "name": "Mahāban", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.43262000", + "longitude": "77.74338000" + }, + { + "id": "132848", + "name": "Mahārāganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.14456000", + "longitude": "83.56214000" + }, + { + "id": "132850", + "name": "Mahārājganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.38126000", + "longitude": "81.27436000" + }, + { + "id": "132836", + "name": "Mahmudābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.29191000", + "longitude": "81.11775000" + }, + { + "id": "132837", + "name": "Mahoba", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.29210000", + "longitude": "79.87242000" + }, + { + "id": "132838", + "name": "Mahobā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.29050000", + "longitude": "79.87533000" + }, + { + "id": "132839", + "name": "Maholi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.66368000", + "longitude": "80.47371000" + }, + { + "id": "132840", + "name": "Mahroni", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.58624000", + "longitude": "78.72771000" + }, + { + "id": "132855", + "name": "Mailāni", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.29088000", + "longitude": "80.34380000" + }, + { + "id": "132857", + "name": "Mainpuri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.16667000", + "longitude": "79.00000000" + }, + { + "id": "132878", + "name": "Malīhābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.92223000", + "longitude": "80.71078000" + }, + { + "id": "132899", + "name": "Mandāwar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.48655000", + "longitude": "78.12732000" + }, + { + "id": "132910", + "name": "Maniar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.98546000", + "longitude": "84.17233000" + }, + { + "id": "132914", + "name": "Manjhanpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.53046000", + "longitude": "81.37566000" + }, + { + "id": "132917", + "name": "Mankāpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.05189000", + "longitude": "82.22961000" + }, + { + "id": "132936", + "name": "Mariāhu", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.60404000", + "longitude": "82.60379000" + }, + { + "id": "132940", + "name": "Mataundh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.43594000", + "longitude": "80.15653000" + }, + { + "id": "132941", + "name": "Mathura", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.63333000", + "longitude": "77.58333000" + }, + { + "id": "132944", + "name": "Mau", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.02940000", + "longitude": "83.50756000" + }, + { + "id": "132945", + "name": "Mau Aimma", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.69515000", + "longitude": "81.92336000" + }, + { + "id": "132946", + "name": "Maudaha", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.68312000", + "longitude": "80.11419000" + }, + { + "id": "132949", + "name": "Maurānwān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.42876000", + "longitude": "80.88008000" + }, + { + "id": "132951", + "name": "Mawāna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.10288000", + "longitude": "77.92199000" + }, + { + "id": "133057", + "name": "Mādhoganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.11807000", + "longitude": "80.14058000" + }, + { + "id": "133058", + "name": "Mādhogarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.27522000", + "longitude": "79.18590000" + }, + { + "id": "133079", + "name": "Mānikpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.06083000", + "longitude": "81.09961000" + }, + { + "id": "133087", + "name": "Mārahra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.73680000", + "longitude": "78.56891000" + }, + { + "id": "133096", + "name": "Mīrānpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.29026000", + "longitude": "77.94939000" + }, + { + "id": "133097", + "name": "Mīrānpur Katra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.02963000", + "longitude": "79.66778000" + }, + { + "id": "133095", + "name": "Mīrganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.54012000", + "longitude": "79.20817000" + }, + { + "id": "132958", + "name": "Meerut", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.91667000", + "longitude": "77.68333000" + }, + { + "id": "132962", + "name": "Mehnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.87889000", + "longitude": "83.11611000" + }, + { + "id": "132963", + "name": "Mehndāwal", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.97579000", + "longitude": "83.10995000" + }, + { + "id": "132974", + "name": "Milak", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.61031000", + "longitude": "79.16997000" + }, + { + "id": "132976", + "name": "Mirzāpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.14490000", + "longitude": "82.56534000" + }, + { + "id": "132977", + "name": "Misrikh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.43137000", + "longitude": "80.53157000" + }, + { + "id": "132981", + "name": "Mohanpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.25261000", + "longitude": "80.24498000" + }, + { + "id": "132986", + "name": "Mohān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.78008000", + "longitude": "80.67497000" + }, + { + "id": "133001", + "name": "Morādābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.85250000", + "longitude": "78.79703000" + }, + { + "id": "133004", + "name": "Moth", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.72595000", + "longitude": "78.95029000" + }, + { + "id": "133007", + "name": "Mubārakpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.08866000", + "longitude": "83.29088000" + }, + { + "id": "133014", + "name": "Mughal Sarāi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.28307000", + "longitude": "83.11968000" + }, + { + "id": "133016", + "name": "Muhammadābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.61907000", + "longitude": "83.75576000" + }, + { + "id": "133043", + "name": "Murādnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.78069000", + "longitude": "77.49865000" + }, + { + "id": "133038", + "name": "Mursān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.57788000", + "longitude": "77.94091000" + }, + { + "id": "133048", + "name": "Musāfir-Khāna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.37837000", + "longitude": "81.79607000" + }, + { + "id": "133051", + "name": "Muzaffarnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.45000000", + "longitude": "77.58333000" + }, + { + "id": "133109", + "name": "Nadīgaon", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.10784000", + "longitude": "79.02283000" + }, + { + "id": "133120", + "name": "Nagīna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.44433000", + "longitude": "78.43646000" + }, + { + "id": "133119", + "name": "Nagrām", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.61872000", + "longitude": "81.14043000" + }, + { + "id": "133127", + "name": "Najībābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.61194000", + "longitude": "78.34274000" + }, + { + "id": "133129", + "name": "Nakūr", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.91964000", + "longitude": "77.30438000" + }, + { + "id": "133139", + "name": "Nanauta", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.71215000", + "longitude": "77.41728000" + }, + { + "id": "133142", + "name": "Nandgaon", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.71102000", + "longitude": "77.38653000" + }, + { + "id": "133161", + "name": "Narauli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.48547000", + "longitude": "78.71484000" + }, + { + "id": "133162", + "name": "Naraura", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.20147000", + "longitude": "78.38723000" + }, + { + "id": "133183", + "name": "Nautanwa", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.42752000", + "longitude": "83.41789000" + }, + { + "id": "133191", + "name": "Nawābganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.93129000", + "longitude": "81.19841000" + }, + { + "id": "133270", + "name": "Nānpāra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.86459000", + "longitude": "81.50036000" + }, + { + "id": "133292", + "name": "Nūrpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.14956000", + "longitude": "78.40840000" + }, + { + "id": "133212", + "name": "Nichlaul", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.31247000", + "longitude": "83.72530000" + }, + { + "id": "133215", + "name": "Nihtaur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.32416000", + "longitude": "78.38724000" + }, + { + "id": "133225", + "name": "Niwāri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.87611000", + "longitude": "77.53820000" + }, + { + "id": "133228", + "name": "Nizāmābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.05295000", + "longitude": "83.05787000" + }, + { + "id": "133230", + "name": "Noida", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.58000000", + "longitude": "77.33000000" + }, + { + "id": "133295", + "name": "Obra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.41863000", + "longitude": "82.98797000" + }, + { + "id": "133302", + "name": "Orai", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.99023000", + "longitude": "79.45334000" + }, + { + "id": "133303", + "name": "Oran", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.36882000", + "longitude": "80.74230000" + }, + { + "id": "133309", + "name": "Pachperwa", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.51234000", + "longitude": "82.64297000" + }, + { + "id": "133316", + "name": "Padrauna", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.90403000", + "longitude": "83.98087000" + }, + { + "id": "133318", + "name": "Pahāsu", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.17220000", + "longitude": "78.06376000" + }, + { + "id": "133326", + "name": "Paliā Kalān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.43205000", + "longitude": "80.58137000" + }, + { + "id": "133372", + "name": "Parīchhatgarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.97841000", + "longitude": "77.93422000" + }, + { + "id": "133365", + "name": "Parshādepur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.07354000", + "longitude": "81.49207000" + }, + { + "id": "133385", + "name": "Patiāli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.69086000", + "longitude": "78.99823000" + }, + { + "id": "133391", + "name": "Patti", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.92150000", + "longitude": "82.20048000" + }, + { + "id": "133398", + "name": "Pawāyan", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.06626000", + "longitude": "80.10305000" + }, + { + "id": "133531", + "name": "Pāli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.49188000", + "longitude": "78.41617000" + }, + { + "id": "133550", + "name": "Pārīchha", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.50789000", + "longitude": "78.75954000" + }, + { + "id": "133562", + "name": "Pīlībhīt", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.55000000", + "longitude": "80.10000000" + }, + { + "id": "133561", + "name": "Pīlibhīt", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.63124000", + "longitude": "79.80436000" + }, + { + "id": "133569", + "name": "Pūranpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.51283000", + "longitude": "80.14829000" + }, + { + "id": "133432", + "name": "Phalauda", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.18824000", + "longitude": "77.82996000" + }, + { + "id": "133435", + "name": "Phaphūnd", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.59888000", + "longitude": "79.46437000" + }, + { + "id": "133436", + "name": "Pharihā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.32166000", + "longitude": "78.47267000" + }, + { + "id": "133444", + "name": "Phūlpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.07779000", + "longitude": "82.87608000" + }, + { + "id": "133443", + "name": "Phulpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.54895000", + "longitude": "82.08950000" + }, + { + "id": "133445", + "name": "Pihānī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.61987000", + "longitude": "80.20343000" + }, + { + "id": "133447", + "name": "Pilkhua", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.71271000", + "longitude": "77.65600000" + }, + { + "id": "133452", + "name": "Pināhat", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.88487000", + "longitude": "78.37647000" + }, + { + "id": "133456", + "name": "Pipraich", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.82745000", + "longitude": "83.52632000" + }, + { + "id": "133488", + "name": "Pratāpgarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.75000000", + "longitude": "81.75000000" + }, + { + "id": "133495", + "name": "Pukhrāyān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.22375000", + "longitude": "79.83739000" + }, + { + "id": "133514", + "name": "Purwā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.45756000", + "longitude": "80.77403000" + }, + { + "id": "133578", + "name": "Rabūpura", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.25153000", + "longitude": "77.60253000" + }, + { + "id": "133580", + "name": "Raebareli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.23090000", + "longitude": "81.23315000" + }, + { + "id": "133613", + "name": "Rasūlābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.74491000", + "longitude": "80.49012000" + }, + { + "id": "133612", + "name": "Rasrā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.85760000", + "longitude": "83.85487000" + }, + { + "id": "133658", + "name": "Rādhākund", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.52432000", + "longitude": "77.49101000" + }, + { + "id": "133659", + "name": "Rāe Bareli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.25000000", + "longitude": "81.25000000" + }, + { + "id": "133688", + "name": "Rājāpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.38725000", + "longitude": "81.15125000" + }, + { + "id": "133700", + "name": "Rāmkola", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.90172000", + "longitude": "83.83758000" + }, + { + "id": "133704", + "name": "Rāmnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.26907000", + "longitude": "83.02971000" + }, + { + "id": "133705", + "name": "Rāmpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.81014000", + "longitude": "79.02699000" + }, + { + "id": "133707", + "name": "Rāmpura", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.34967000", + "longitude": "79.18234000" + }, + { + "id": "133720", + "name": "Rānīpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.25034000", + "longitude": "79.06204000" + }, + { + "id": "133723", + "name": "Rāth", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.59474000", + "longitude": "79.56660000" + }, + { + "id": "133728", + "name": "Rāya", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.55607000", + "longitude": "77.78972000" + }, + { + "id": "133737", + "name": "Rūdarpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.44467000", + "longitude": "83.61302000" + }, + { + "id": "133628", + "name": "Renukūt", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.21641000", + "longitude": "83.03580000" + }, + { + "id": "133629", + "name": "Reoti", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.85091000", + "longitude": "84.37780000" + }, + { + "id": "133637", + "name": "Richha", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.69467000", + "longitude": "79.52284000" + }, + { + "id": "133641", + "name": "Robertsganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.68860000", + "longitude": "83.06784000" + }, + { + "id": "133655", + "name": "Rura", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.49001000", + "longitude": "79.90108000" + }, + { + "id": "133744", + "name": "Sadābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.43818000", + "longitude": "78.03758000" + }, + { + "id": "133747", + "name": "Safīpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.73783000", + "longitude": "80.34350000" + }, + { + "id": "133750", + "name": "Sahaspur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.12125000", + "longitude": "78.62273000" + }, + { + "id": "133751", + "name": "Sahaswān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.07227000", + "longitude": "78.75082000" + }, + { + "id": "133753", + "name": "Sahāranpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.90000000", + "longitude": "77.68333000" + }, + { + "id": "133754", + "name": "Sahāwar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.79603000", + "longitude": "78.83373000" + }, + { + "id": "133755", + "name": "Saidpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.53749000", + "longitude": "83.22378000" + }, + { + "id": "133762", + "name": "Sakīt", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.43463000", + "longitude": "78.77903000" + }, + { + "id": "133765", + "name": "Salon", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.02857000", + "longitude": "81.45403000" + }, + { + "id": "133770", + "name": "Sambhal", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.58498000", + "longitude": "78.56959000" + }, + { + "id": "133773", + "name": "Samthar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.84348000", + "longitude": "78.90683000" + }, + { + "id": "133778", + "name": "Sandīla", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.06989000", + "longitude": "80.51497000" + }, + { + "id": "133792", + "name": "Sant Kabir Nagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.79016000", + "longitude": "83.03481000" + }, + { + "id": "133793", + "name": "Sant Ravi Das Nagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.35792000", + "longitude": "82.43080000" + }, + { + "id": "133799", + "name": "Sarai Ekdil", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.74442000", + "longitude": "79.09353000" + }, + { + "id": "133802", + "name": "Sarauli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.49404000", + "longitude": "79.09177000" + }, + { + "id": "133813", + "name": "Sarāi Ākil", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.37890000", + "longitude": "81.51035000" + }, + { + "id": "133812", + "name": "Sarāi Mīr", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.02705000", + "longitude": "82.91843000" + }, + { + "id": "133814", + "name": "Sarīla", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.77579000", + "longitude": "79.67535000" + }, + { + "id": "133803", + "name": "Sardhana", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.14551000", + "longitude": "77.61433000" + }, + { + "id": "133821", + "name": "Satrikh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.86045000", + "longitude": "81.19567000" + }, + { + "id": "133828", + "name": "Saurikh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.03051000", + "longitude": "79.48813000" + }, + { + "id": "134059", + "name": "Sādāt", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.67117000", + "longitude": "83.30269000" + }, + { + "id": "134072", + "name": "Sāndi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.28867000", + "longitude": "79.95190000" + }, + { + "id": "134080", + "name": "Sāsni", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.70287000", + "longitude": "78.08278000" + }, + { + "id": "134091", + "name": "Sītāpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.50000000", + "longitude": "80.91667000" + }, + { + "id": "133833", + "name": "Sector", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.57080000", + "longitude": "77.32610000" + }, + { + "id": "133839", + "name": "Seohāra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.20904000", + "longitude": "78.58837000" + }, + { + "id": "133855", + "name": "Shamsābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.01718000", + "longitude": "78.12358000" + }, + { + "id": "133856", + "name": "Shankargarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.18200000", + "longitude": "81.61769000" + }, + { + "id": "133905", + "name": "Shāhābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.64310000", + "longitude": "79.94020000" + }, + { + "id": "133892", + "name": "Shāhganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.04965000", + "longitude": "82.68423000" + }, + { + "id": "133894", + "name": "Shāhi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.55023000", + "longitude": "79.31761000" + }, + { + "id": "133895", + "name": "Shāhjahānpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.00000000", + "longitude": "79.83333000" + }, + { + "id": "133896", + "name": "Shāhjānpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.88165000", + "longitude": "79.90918000" + }, + { + "id": "133901", + "name": "Shāhpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.35010000", + "longitude": "77.55160000" + }, + { + "id": "133913", + "name": "Shāmli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.44970000", + "longitude": "77.30959000" + }, + { + "id": "133914", + "name": "Shīshgarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.72928000", + "longitude": "79.31469000" + }, + { + "id": "133862", + "name": "Shergarh", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.65128000", + "longitude": "79.36815000" + }, + { + "id": "133864", + "name": "Sherkot", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.32704000", + "longitude": "78.57429000" + }, + { + "id": "133869", + "name": "Shikārpūr", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.28072000", + "longitude": "78.01411000" + }, + { + "id": "133867", + "name": "Shikohābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.10800000", + "longitude": "78.58661000" + }, + { + "id": "133885", + "name": "Shrawasti", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.50746000", + "longitude": "82.00470000" + }, + { + "id": "133918", + "name": "Siddharthnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.25797000", + "longitude": "83.01465000" + }, + { + "id": "133921", + "name": "Sidhaulī", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.28202000", + "longitude": "80.83450000" + }, + { + "id": "133923", + "name": "Sidhpura", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.63312000", + "longitude": "78.86918000" + }, + { + "id": "133929", + "name": "Sikandarābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.45226000", + "longitude": "77.70004000" + }, + { + "id": "133928", + "name": "Sikandarpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.04327000", + "longitude": "84.05298000" + }, + { + "id": "133930", + "name": "Sikandra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.36722000", + "longitude": "79.62980000" + }, + { + "id": "133931", + "name": "Sikandra Rao", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.68859000", + "longitude": "78.37985000" + }, + { + "id": "133969", + "name": "Sirāthu", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.64292000", + "longitude": "81.31855000" + }, + { + "id": "133965", + "name": "Sirsā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.26340000", + "longitude": "82.09190000" + }, + { + "id": "133966", + "name": "Sirsāganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.05715000", + "longitude": "78.68661000" + }, + { + "id": "133963", + "name": "Sirsi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.63916000", + "longitude": "78.64303000" + }, + { + "id": "133971", + "name": "Sisauli", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.41386000", + "longitude": "77.46890000" + }, + { + "id": "133972", + "name": "Siswā Bāzār", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.14652000", + "longitude": "83.75803000" + }, + { + "id": "133992", + "name": "Sonbhadra", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "24.40212000", + "longitude": "83.05352000" + }, + { + "id": "134005", + "name": "Soron", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.89055000", + "longitude": "78.74621000" + }, + { + "id": "134056", + "name": "Suār", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.02841000", + "longitude": "79.05654000" + }, + { + "id": "134040", + "name": "Sultānpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.25000000", + "longitude": "82.00000000" + }, + { + "id": "134053", + "name": "Suriānwān", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.46387000", + "longitude": "82.41922000" + }, + { + "id": "134229", + "name": "Tājpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.16242000", + "longitude": "78.48458000" + }, + { + "id": "134231", + "name": "Tālbahat", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.04357000", + "longitude": "78.43441000" + }, + { + "id": "134233", + "name": "Tālgrām", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.04753000", + "longitude": "79.64811000" + }, + { + "id": "134235", + "name": "Tānda", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.97621000", + "longitude": "78.94187000" + }, + { + "id": "134236", + "name": "Tāndā", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.54953000", + "longitude": "82.65841000" + }, + { + "id": "134245", + "name": "Tīkri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.22910000", + "longitude": "77.35479000" + }, + { + "id": "134248", + "name": "Tūndla", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.21460000", + "longitude": "78.23683000" + }, + { + "id": "134136", + "name": "Thakurdwara", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.19203000", + "longitude": "78.86145000" + }, + { + "id": "134165", + "name": "Thāna Bhawan", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.58605000", + "longitude": "77.41811000" + }, + { + "id": "134170", + "name": "Tikaitnagar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.94612000", + "longitude": "81.56583000" + }, + { + "id": "134171", + "name": "Tilhar", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.96282000", + "longitude": "79.73827000" + }, + { + "id": "134173", + "name": "Tindwāri", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.61739000", + "longitude": "80.52718000" + }, + { + "id": "134202", + "name": "Titron", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "29.66824000", + "longitude": "77.32391000" + }, + { + "id": "134210", + "name": "Tori-Fatehpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.45505000", + "longitude": "79.11428000" + }, + { + "id": "134218", + "name": "Tulsīpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.53370000", + "longitude": "82.41653000" + }, + { + "id": "134261", + "name": "Ugu", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.79681000", + "longitude": "80.32093000" + }, + { + "id": "134262", + "name": "Ujhāni", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.00311000", + "longitude": "79.00821000" + }, + { + "id": "134285", + "name": "Unnāo", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.50000000", + "longitude": "80.50000000" + }, + { + "id": "134294", + "name": "Usehat", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.79796000", + "longitude": "79.23763000" + }, + { + "id": "134296", + "name": "Utraula", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.31933000", + "longitude": "82.41872000" + }, + { + "id": "134327", + "name": "Varanasi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.31668000", + "longitude": "83.01041000" + }, + { + "id": "134383", + "name": "Vārānasi", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.33333000", + "longitude": "83.00000000" + }, + { + "id": "134376", + "name": "Vrindāvan", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "27.58105000", + "longitude": "77.69662000" + }, + { + "id": "134401", + "name": "Wazīrganj", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "28.21145000", + "longitude": "79.05665000" + }, + { + "id": "134439", + "name": "Zafarābād", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.69867000", + "longitude": "82.73354000" + }, + { + "id": "134441", + "name": "Zaidpur", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "26.83093000", + "longitude": "81.32929000" + }, + { + "id": "134442", + "name": "Zamānia", + "state_id": 4022, + "state_code": "UP", + "country_id": 101, + "country_code": "IN", + "latitude": "25.41961000", + "longitude": "83.55786000" + }, + { + "id": "57643", + "name": "Almora", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.69223000", + "longitude": "79.49789000" + }, + { + "id": "57800", + "name": "Bageshwar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.97315000", + "longitude": "79.83224000" + }, + { + "id": "57879", + "name": "Barkot", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.80861000", + "longitude": "78.20596000" + }, + { + "id": "58108", + "name": "Bāgeshwar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.83738000", + "longitude": "79.77161000" + }, + { + "id": "58153", + "name": "Bāzpur", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.15299000", + "longitude": "79.10814000" + }, + { + "id": "58020", + "name": "Bhīm Tāl", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.34447000", + "longitude": "79.56336000" + }, + { + "id": "57998", + "name": "Bhowali", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.38985000", + "longitude": "79.50481000" + }, + { + "id": "58059", + "name": "Birbhaddar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.07120000", + "longitude": "78.28189000" + }, + { + "id": "58176", + "name": "Chakrāta", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.70369000", + "longitude": "77.86386000" + }, + { + "id": "58182", + "name": "Chamoli", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.50000000", + "longitude": "79.50000000" + }, + { + "id": "58183", + "name": "Champawat", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.28756000", + "longitude": "80.03737000" + }, + { + "id": "131615", + "name": "Clement Town", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.26361000", + "longitude": "78.00862000" + }, + { + "id": "131675", + "name": "Dehra Dūn", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.32443000", + "longitude": "78.03392000" + }, + { + "id": "131676", + "name": "Dehradun", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.33000000", + "longitude": "78.06000000" + }, + { + "id": "131702", + "name": "Devaprayāg", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.14603000", + "longitude": "78.60272000" + }, + { + "id": "131754", + "name": "Dhārchula", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.84707000", + "longitude": "80.51951000" + }, + { + "id": "131784", + "name": "Doiwāla", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.17667000", + "longitude": "78.11659000" + }, + { + "id": "131793", + "name": "Dugadda", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.80673000", + "longitude": "78.61109000" + }, + { + "id": "131804", + "name": "Dwārāhāt", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.77785000", + "longitude": "79.42731000" + }, + { + "id": "131923", + "name": "Garhwāl", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.96366000", + "longitude": "78.92853000" + }, + { + "id": "132058", + "name": "Haldwani", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.22254000", + "longitude": "79.52860000" + }, + { + "id": "132069", + "name": "Harbatpur", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.43863000", + "longitude": "77.74058000" + }, + { + "id": "132075", + "name": "Haridwar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.94791000", + "longitude": "78.16025000" + }, + { + "id": "132247", + "name": "Jaspur", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.27919000", + "longitude": "78.82798000" + }, + { + "id": "132296", + "name": "Joshīmath", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.55543000", + "longitude": "79.56436000" + }, + { + "id": "132418", + "name": "Kashipur", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.21399000", + "longitude": "78.95693000" + }, + { + "id": "132685", + "name": "Kālādhūngi", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.28351000", + "longitude": "79.35100000" + }, + { + "id": "132686", + "name": "Kālāgarh Project Colony", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.47780000", + "longitude": "78.78449000" + }, + { + "id": "132484", + "name": "Khatīma", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "28.92134000", + "longitude": "79.97075000" + }, + { + "id": "132521", + "name": "Kichha", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "28.91154000", + "longitude": "79.52009000" + }, + { + "id": "132597", + "name": "Kotdwāra", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.74612000", + "longitude": "78.52219000" + }, + { + "id": "132749", + "name": "Laksar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.75870000", + "longitude": "78.04148000" + }, + { + "id": "132756", + "name": "Lansdowne", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.84183000", + "longitude": "78.68014000" + }, + { + "id": "132767", + "name": "Lohaghāt", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.40356000", + "longitude": "80.08965000" + }, + { + "id": "132908", + "name": "Manglaur", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.79094000", + "longitude": "77.87836000" + }, + { + "id": "133046", + "name": "Mussoorie", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.45498000", + "longitude": "78.07068000" + }, + { + "id": "133123", + "name": "Naini Tāl", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.39743000", + "longitude": "79.44686000" + }, + { + "id": "133166", + "name": "Narendranagar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.16173000", + "longitude": "78.28712000" + }, + { + "id": "133394", + "name": "Pauri", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.15286000", + "longitude": "78.77710000" + }, + { + "id": "133563", + "name": "Pīpalkoti", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.42553000", + "longitude": "79.43066000" + }, + { + "id": "133464", + "name": "Pithorāgarh", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.00000000", + "longitude": "80.25000000" + }, + { + "id": "133735", + "name": "Rāīwāla Bara", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.01864000", + "longitude": "78.22930000" + }, + { + "id": "133666", + "name": "Rāipur", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.31097000", + "longitude": "78.08979000" + }, + { + "id": "133703", + "name": "Rāmnagar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.39250000", + "longitude": "79.12830000" + }, + { + "id": "133716", + "name": "Rānikhet", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.64082000", + "longitude": "79.43229000" + }, + { + "id": "133638", + "name": "Rishīkesh", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.10778000", + "longitude": "78.29255000" + }, + { + "id": "133650", + "name": "Roorkee", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.86632000", + "longitude": "77.89118000" + }, + { + "id": "133652", + "name": "Rudraprayag", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.60872000", + "longitude": "79.06517000" + }, + { + "id": "133653", + "name": "Rudraprayāg", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.28467000", + "longitude": "78.98354000" + }, + { + "id": "133973", + "name": "Sitārganj", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "28.92930000", + "longitude": "79.70436000" + }, + { + "id": "134027", + "name": "Srīnagar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.22243000", + "longitude": "78.78341000" + }, + { + "id": "134038", + "name": "Sultānpur", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.75534000", + "longitude": "78.11034000" + }, + { + "id": "134110", + "name": "Tanakpur", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.07400000", + "longitude": "80.11139000" + }, + { + "id": "134122", + "name": "Tehri", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.39086000", + "longitude": "78.48030000" + }, + { + "id": "134123", + "name": "Tehri-Garhwāl", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.50000000", + "longitude": "78.66667000" + }, + { + "id": "134256", + "name": "Udham Singh Nagar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "29.02746000", + "longitude": "79.52347000" + }, + { + "id": "134301", + "name": "Uttarkāshi", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.72986000", + "longitude": "78.44342000" + }, + { + "id": "134360", + "name": "Vikāsnagar", + "state_id": 4016, + "state_code": "UT", + "country_id": 101, + "country_code": "IN", + "latitude": "30.46944000", + "longitude": "77.77275000" + }, + { + "id": "56193", + "name": "Banda Aceh", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.54167000", + "longitude": "95.33333000" + }, + { + "id": "56223", + "name": "Bireun", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.20300000", + "longitude": "96.70090000" + }, + { + "id": "56307", + "name": "Kabupaten Aceh Barat", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.45000000", + "longitude": "96.16667000" + }, + { + "id": "56308", + "name": "Kabupaten Aceh Barat Daya", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "3.83333000", + "longitude": "96.88333000" + }, + { + "id": "56309", + "name": "Kabupaten Aceh Besar", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.38333000", + "longitude": "95.51667000" + }, + { + "id": "56310", + "name": "Kabupaten Aceh Jaya", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.86000000", + "longitude": "95.64000000" + }, + { + "id": "56311", + "name": "Kabupaten Aceh Selatan", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "3.16667000", + "longitude": "97.41667000" + }, + { + "id": "56312", + "name": "Kabupaten Aceh Singkil", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "2.41667000", + "longitude": "97.91667000" + }, + { + "id": "56313", + "name": "Kabupaten Aceh Tamiang", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.25000000", + "longitude": "97.96667000" + }, + { + "id": "56314", + "name": "Kabupaten Aceh Tengah", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.51000000", + "longitude": "96.85500000" + }, + { + "id": "56315", + "name": "Kabupaten Aceh Tenggara", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "3.36667000", + "longitude": "97.70000000" + }, + { + "id": "56316", + "name": "Kabupaten Aceh Timur", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.63333000", + "longitude": "97.63333000" + }, + { + "id": "56317", + "name": "Kabupaten Aceh Utara", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.97000000", + "longitude": "97.14000000" + }, + { + "id": "56353", + "name": "Kabupaten Bener Meriah", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.73015000", + "longitude": "96.86156000" + }, + { + "id": "56362", + "name": "Kabupaten Bireuen", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.08333000", + "longitude": "96.58333000" + }, + { + "id": "56408", + "name": "Kabupaten Gayo Lues", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "3.95000000", + "longitude": "97.39000000" + }, + { + "id": "56552", + "name": "Kabupaten Nagan Raya", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.16667000", + "longitude": "96.51667000" + }, + { + "id": "56593", + "name": "Kabupaten Pidie", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.08000000", + "longitude": "96.11000000" + }, + { + "id": "56634", + "name": "Kabupaten Simeulue", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "2.61667000", + "longitude": "96.08333000" + }, + { + "id": "56729", + "name": "Kota Banda Aceh", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.54167000", + "longitude": "95.33333000" + }, + { + "id": "56761", + "name": "Kota Langsa", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.47000000", + "longitude": "97.93000000" + }, + { + "id": "56762", + "name": "Kota Lhokseumawe", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.13333000", + "longitude": "97.06667000" + }, + { + "id": "56791", + "name": "Kota Sabang", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.87944000", + "longitude": "95.33223000" + }, + { + "id": "56800", + "name": "Kota Subulussalam", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "2.75000000", + "longitude": "97.93333000" + }, + { + "id": "56837", + "name": "Langsa", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.46830000", + "longitude": "97.96830000" + }, + { + "id": "56844", + "name": "Lhokseumawe", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.18010000", + "longitude": "97.15070000" + }, + { + "id": "56872", + "name": "Meulaboh", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "4.14402000", + "longitude": "96.12664000" + }, + { + "id": "56955", + "name": "Reuleuet", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.21667000", + "longitude": "96.28333000" + }, + { + "id": "56957", + "name": "Sabang", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.88969000", + "longitude": "95.31644000" + }, + { + "id": "56976", + "name": "Sigli", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "5.38480000", + "longitude": "95.96090000" + }, + { + "id": "56979", + "name": "Sinabang", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "2.48030000", + "longitude": "96.38010000" + }, + { + "id": "56982", + "name": "Singkil", + "state_id": 1822, + "state_code": "AC", + "country_id": 102, + "country_code": "ID", + "latitude": "2.28740000", + "longitude": "97.78840000" + }, + { + "id": "56179", + "name": "Amlapura", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.45000000", + "longitude": "115.61667000" + }, + { + "id": "56180", + "name": "Amlapura city", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.44869000", + "longitude": "115.60621000" + }, + { + "id": "56200", + "name": "Banjar", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.19000000", + "longitude": "114.96750000" + }, + { + "id": "56201", + "name": "Banjar Wangsian", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.49497000", + "longitude": "115.42342000" + }, + { + "id": "56213", + "name": "Bedugul", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.45040000", + "longitude": "115.59250000" + }, + { + "id": "56263", + "name": "Denpasar", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.65000000", + "longitude": "115.21667000" + }, + { + "id": "56302", + "name": "Jimbaran", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.79093000", + "longitude": "115.16006000" + }, + { + "id": "56322", + "name": "Kabupaten Badung", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.51667000", + "longitude": "115.20000000" + }, + { + "id": "56334", + "name": "Kabupaten Bangli", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.28333000", + "longitude": "115.35000000" + }, + { + "id": "56379", + "name": "Kabupaten Buleleng", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.25000000", + "longitude": "114.96667000" + }, + { + "id": "56409", + "name": "Kabupaten Gianyar", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.46667000", + "longitude": "115.28333000" + }, + { + "id": "56431", + "name": "Kabupaten Jembrana", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.30000000", + "longitude": "114.66667000" + }, + { + "id": "56438", + "name": "Kabupaten Karang Asem", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.38910000", + "longitude": "115.53930000" + }, + { + "id": "56460", + "name": "Kabupaten Klungkung", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.55000000", + "longitude": "115.40000000" + }, + { + "id": "56658", + "name": "Kabupaten Tabanan", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.43333000", + "longitude": "115.06667000" + }, + { + "id": "56720", + "name": "Klungkung", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.53333000", + "longitude": "115.40000000" + }, + { + "id": "56750", + "name": "Kota Denpasar", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.66667000", + "longitude": "115.21663000" + }, + { + "id": "56827", + "name": "Kuta", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.72332000", + "longitude": "115.17234000" + }, + { + "id": "56841", + "name": "Legian", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.70415000", + "longitude": "115.17028000" + }, + { + "id": "56846", + "name": "Lovina", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.14927000", + "longitude": "115.03999000" + }, + { + "id": "56879", + "name": "Munduk", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.26866000", + "longitude": "115.07947000" + }, + { + "id": "56884", + "name": "Negara", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.35694000", + "longitude": "114.61694000" + }, + { + "id": "56890", + "name": "Nusa Dua", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.80047000", + "longitude": "115.23341000" + }, + { + "id": "56970", + "name": "Seririt", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.19280000", + "longitude": "114.93880000" + }, + { + "id": "56981", + "name": "Singaraja", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.11200000", + "longitude": "115.08818000" + }, + { + "id": "57013", + "name": "Tabanan", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.54130000", + "longitude": "115.12522000" + }, + { + "id": "57046", + "name": "Ubud", + "state_id": 1826, + "state_code": "BA", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.50980000", + "longitude": "115.26540000" + }, + { + "id": "56329", + "name": "Kabupaten Bangka", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.91667000", + "longitude": "105.93333000" + }, + { + "id": "56330", + "name": "Kabupaten Bangka Barat", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.95839000", + "longitude": "105.53741000" + }, + { + "id": "56331", + "name": "Kabupaten Bangka Selatan", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.66803000", + "longitude": "106.01257000" + }, + { + "id": "56332", + "name": "Kabupaten Bangka Tengah", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.33989000", + "longitude": "106.11420000" + }, + { + "id": "56350", + "name": "Kabupaten Belitung", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.86667000", + "longitude": "107.70000000" + }, + { + "id": "56351", + "name": "Kabupaten Belitung Timur", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.96270000", + "longitude": "108.15216000" + }, + { + "id": "56781", + "name": "Kota Pangkal Pinang", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.13333000", + "longitude": "106.13333000" + }, + { + "id": "56859", + "name": "Manggar", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.88333000", + "longitude": "108.26667000" + }, + { + "id": "56881", + "name": "Muntok", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.06719000", + "longitude": "105.16228000" + }, + { + "id": "56912", + "name": "Pangkalpinang", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.12914000", + "longitude": "106.11377000" + }, + { + "id": "57009", + "name": "Sungailiat", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.85442000", + "longitude": "106.12215000" + }, + { + "id": "57017", + "name": "Tanjung Pandan", + "state_id": 1820, + "state_code": "BB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.73353000", + "longitude": "107.63477000" + }, + { + "id": "56257", + "name": "Curug", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.26583000", + "longitude": "106.55639000" + }, + { + "id": "56491", + "name": "Kabupaten Lebak", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.65000000", + "longitude": "106.21667000" + }, + { + "id": "56574", + "name": "Kabupaten Pandeglang", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.63333000", + "longitude": "105.75000000" + }, + { + "id": "56623", + "name": "Kabupaten Serang", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.15000000", + "longitude": "106.00000000" + }, + { + "id": "56666", + "name": "Kabupaten Tangerang", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.20000000", + "longitude": "106.46667000" + }, + { + "id": "56747", + "name": "Kota Cilegon", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.01667000", + "longitude": "106.01667000" + }, + { + "id": "56796", + "name": "Kota Serang", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.12563000", + "longitude": "106.14999000" + }, + { + "id": "56805", + "name": "Kota Tangerang", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.17944000", + "longitude": "106.62991000" + }, + { + "id": "56806", + "name": "Kota Tangerang Selatan", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.29373000", + "longitude": "106.71244000" + }, + { + "id": "56829", + "name": "Labuan", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.37840000", + "longitude": "105.83000000" + }, + { + "id": "56909", + "name": "Pandeglang", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.30840000", + "longitude": "106.10670000" + }, + { + "id": "56950", + "name": "Rangkasbitung", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.35910000", + "longitude": "106.24940000" + }, + { + "id": "56969", + "name": "Serang", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.11528000", + "longitude": "106.15417000" + }, + { + "id": "56996", + "name": "South Tangerang", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.28862000", + "longitude": "106.71789000" + }, + { + "id": "57014", + "name": "Tangerang", + "state_id": 1810, + "state_code": "BT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.17806000", + "longitude": "106.63000000" + }, + { + "id": "56217", + "name": "Bengkulu", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.80044000", + "longitude": "102.26554000" + }, + { + "id": "56258", + "name": "Curup", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.47030000", + "longitude": "102.52070000" + }, + { + "id": "56355", + "name": "Kabupaten Bengkulu Selatan", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.35000000", + "longitude": "103.03333000" + }, + { + "id": "56356", + "name": "Kabupaten Bengkulu Tengah", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.20679000", + "longitude": "102.12616000" + }, + { + "id": "56357", + "name": "Kabupaten Bengkulu Utara", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.33333000", + "longitude": "102.05000000" + }, + { + "id": "56444", + "name": "Kabupaten Kaur", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.78179000", + "longitude": "103.36109000" + }, + { + "id": "56449", + "name": "Kabupaten Kepahiang", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.60194000", + "longitude": "102.56424000" + }, + { + "id": "56492", + "name": "Kabupaten Lebong", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.24278000", + "longitude": "102.33490000" + }, + { + "id": "56544", + "name": "Kabupaten Mukomuko", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.07438000", + "longitude": "101.54766000" + }, + { + "id": "56609", + "name": "Kabupaten Rejang Lebong", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.43333000", + "longitude": "102.71667000" + }, + { + "id": "56619", + "name": "Kabupaten Seluma", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.96644000", + "longitude": "102.47429000" + }, + { + "id": "56739", + "name": "Kota Bengkulu", + "state_id": 1793, + "state_code": "BE", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.81667000", + "longitude": "102.31667000" + }, + { + "id": "56174", + "name": "Adiwerna", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.93750000", + "longitude": "109.13250000" + }, + { + "id": "56176", + "name": "Ambarawa", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.26333000", + "longitude": "110.39750000" + }, + { + "id": "56186", + "name": "Baekrajan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.76740000", + "longitude": "110.85410000" + }, + { + "id": "56187", + "name": "Baki", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.61278000", + "longitude": "110.78389000" + }, + { + "id": "56189", + "name": "Balapulang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.04858000", + "longitude": "109.10056000" + }, + { + "id": "56205", + "name": "Banyumas", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.51417000", + "longitude": "109.29417000" + }, + { + "id": "56209", + "name": "Batang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.48460000", + "longitude": "110.70830000" + }, + { + "id": "56211", + "name": "Baturaden", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.30000000", + "longitude": "109.21667000" + }, + { + "id": "56225", + "name": "Blora", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.96980000", + "longitude": "111.41860000" + }, + { + "id": "56230", + "name": "Boyolali", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.53306000", + "longitude": "110.59583000" + }, + { + "id": "56232", + "name": "Buaran", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.05000000", + "longitude": "109.55000000" + }, + { + "id": "56235", + "name": "Bulakamba", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.87480000", + "longitude": "108.95590000" + }, + { + "id": "56236", + "name": "Candi Prambanan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.75000000", + "longitude": "110.49417000" + }, + { + "id": "56238", + "name": "Ceper", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.67417000", + "longitude": "110.67889000" + }, + { + "id": "56239", + "name": "Cepu", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.14750000", + "longitude": "111.59060000" + }, + { + "id": "56255", + "name": "Colomadu", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.53333000", + "longitude": "110.75000000" + }, + { + "id": "56256", + "name": "Comal", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.90530000", + "longitude": "109.53470000" + }, + { + "id": "56260", + "name": "Delanggu", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.61667000", + "longitude": "110.68333000" + }, + { + "id": "56262", + "name": "Demak", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.89090000", + "longitude": "110.63960000" + }, + { + "id": "56269", + "name": "Dukuhturi", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.90000000", + "longitude": "109.08333000" + }, + { + "id": "56277", + "name": "Gatak", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.59083000", + "longitude": "110.70444000" + }, + { + "id": "56278", + "name": "Gebog", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.73500000", + "longitude": "110.84440000" + }, + { + "id": "56283", + "name": "Gombong", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.60722000", + "longitude": "109.51417000" + }, + { + "id": "56288", + "name": "Grogol", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.60111000", + "longitude": "110.81861000" + }, + { + "id": "56289", + "name": "Gunung Kendil", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.33167000", + "longitude": "110.40417000" + }, + { + "id": "56295", + "name": "Jaten", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.57722000", + "longitude": "110.89750000" + }, + { + "id": "56297", + "name": "Jatiroto", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.88333000", + "longitude": "111.11667000" + }, + { + "id": "56300", + "name": "Jekulo", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.80570000", + "longitude": "110.92620000" + }, + { + "id": "56303", + "name": "Jogonalan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.70361000", + "longitude": "110.53611000" + }, + { + "id": "56305", + "name": "Juwana", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.71500000", + "longitude": "111.15140000" + }, + { + "id": "56336", + "name": "Kabupaten Banjarnegara", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.35111000", + "longitude": "109.58750000" + }, + { + "id": "56339", + "name": "Kabupaten Banyumas", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.45000000", + "longitude": "109.16667000" + }, + { + "id": "56346", + "name": "Kabupaten Batang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.03333000", + "longitude": "109.88333000" + }, + { + "id": "56364", + "name": "Kabupaten Blora", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.06667000", + "longitude": "111.38333000" + }, + { + "id": "56377", + "name": "Kabupaten Boyolali", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.50000000", + "longitude": "110.70000000" + }, + { + "id": "56378", + "name": "Kabupaten Brebes", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.05000000", + "longitude": "108.90000000" + }, + { + "id": "56392", + "name": "Kabupaten Cilacap", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.57417000", + "longitude": "108.98861000" + }, + { + "id": "56397", + "name": "Kabupaten Demak", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.89930000", + "longitude": "110.61220000" + }, + { + "id": "56413", + "name": "Kabupaten Grobogan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.11667000", + "longitude": "110.91667000" + }, + { + "id": "56433", + "name": "Kabupaten Jepara", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.58333000", + "longitude": "110.76667000" + }, + { + "id": "56439", + "name": "Kabupaten Karanganyar", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.62806000", + "longitude": "111.06250000" + }, + { + "id": "56445", + "name": "Kabupaten Kebumen", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.63917000", + "longitude": "109.66056000" + }, + { + "id": "56448", + "name": "Kabupaten Kendal", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.02560000", + "longitude": "110.16850000" + }, + { + "id": "56459", + "name": "Kabupaten Klaten", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.68333000", + "longitude": "110.61667000" + }, + { + "id": "56472", + "name": "Kabupaten Kudus", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.80000000", + "longitude": "110.86667000" + }, + { + "id": "56505", + "name": "Kabupaten Magelang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.42750000", + "longitude": "110.16194000" + }, + { + "id": "56583", + "name": "Kabupaten Pati", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.76667000", + "longitude": "111.10000000" + }, + { + "id": "56585", + "name": "Kabupaten Pekalongan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.03190000", + "longitude": "109.62400000" + }, + { + "id": "56587", + "name": "Kabupaten Pemalang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.03333000", + "longitude": "109.40000000" + }, + { + "id": "56605", + "name": "Kabupaten Purbalingga", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.28417000", + "longitude": "109.35028000" + }, + { + "id": "56607", + "name": "Kabupaten Purworejo", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.70000000", + "longitude": "109.96667000" + }, + { + "id": "56610", + "name": "Kabupaten Rembang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.78333000", + "longitude": "111.46667000" + }, + { + "id": "56620", + "name": "Kabupaten Semarang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.20667000", + "longitude": "110.44139000" + }, + { + "id": "56643", + "name": "Kabupaten Sragen", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.41278000", + "longitude": "110.93500000" + }, + { + "id": "56647", + "name": "Kabupaten Sukoharjo", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.68333000", + "longitude": "110.83333000" + }, + { + "id": "56676", + "name": "Kabupaten Tegal", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.03333000", + "longitude": "109.16667000" + }, + { + "id": "56679", + "name": "Kabupaten Temanggung", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.25000000", + "longitude": "110.11667000" + }, + { + "id": "56692", + "name": "Kabupaten Wonogiri", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.91667000", + "longitude": "111.00000000" + }, + { + "id": "56693", + "name": "Kabupaten Wonosobo", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.36139000", + "longitude": "109.92667000" + }, + { + "id": "56699", + "name": "Karanganom", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.64889000", + "longitude": "110.62500000" + }, + { + "id": "56701", + "name": "Kartasura", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.55194000", + "longitude": "110.73778000" + }, + { + "id": "56706", + "name": "Kebonarun", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.70028000", + "longitude": "110.56306000" + }, + { + "id": "56709", + "name": "Kedungwuni", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.97038000", + "longitude": "109.64794000" + }, + { + "id": "56715", + "name": "Ketanggungan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.93830000", + "longitude": "108.89100000" + }, + { + "id": "56719", + "name": "Klaten", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.70583000", + "longitude": "110.60639000" + }, + { + "id": "56765", + "name": "Kota Magelang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.50000000", + "longitude": "110.22500000" + }, + { + "id": "56786", + "name": "Kota Pekalongan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.90000000", + "longitude": "109.68333000" + }, + { + "id": "56792", + "name": "Kota Salatiga", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.33278000", + "longitude": "110.48333000" + }, + { + "id": "56795", + "name": "Kota Semarang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.03333000", + "longitude": "110.38333000" + }, + { + "id": "56804", + "name": "Kota Surakarta", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.55000000", + "longitude": "110.81667000" + }, + { + "id": "56811", + "name": "Kota Tegal", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.86860000", + "longitude": "109.11290000" + }, + { + "id": "56821", + "name": "Kroya", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.63306000", + "longitude": "109.24611000" + }, + { + "id": "56824", + "name": "Kudus", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.80480000", + "longitude": "110.84050000" + }, + { + "id": "56828", + "name": "Kutoarjo", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.71694000", + "longitude": "109.91278000" + }, + { + "id": "56838", + "name": "Lasem", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.69220000", + "longitude": "111.45270000" + }, + { + "id": "56840", + "name": "Lebaksiu", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.04960000", + "longitude": "109.14410000" + }, + { + "id": "56851", + "name": "Magelang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.47056000", + "longitude": "110.21778000" + }, + { + "id": "56853", + "name": "Majenang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.29750000", + "longitude": "108.76420000" + }, + { + "id": "56862", + "name": "Margasari", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.10000000", + "longitude": "109.01667000" + }, + { + "id": "56870", + "name": "Mertoyudan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.52000000", + "longitude": "110.22639000" + }, + { + "id": "56873", + "name": "Mlonggo", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.53333000", + "longitude": "110.70000000" + }, + { + "id": "56877", + "name": "Mranggen", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.02680000", + "longitude": "110.51580000" + }, + { + "id": "56880", + "name": "Muntilan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.58111000", + "longitude": "110.29278000" + }, + { + "id": "56887", + "name": "Ngemplak", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.54972000", + "longitude": "110.71639000" + }, + { + "id": "56922", + "name": "Pati", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.75590000", + "longitude": "111.03800000" + }, + { + "id": "56924", + "name": "Pecangaan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.69780000", + "longitude": "110.71070000" + }, + { + "id": "56925", + "name": "Pekalongan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.88860000", + "longitude": "109.67530000" + }, + { + "id": "56929", + "name": "Pemalang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.89193000", + "longitude": "109.38263000" + }, + { + "id": "56944", + "name": "Purbalingga", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.38806000", + "longitude": "109.36389000" + }, + { + "id": "56946", + "name": "Purwodadi", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.08680000", + "longitude": "110.91580000" + }, + { + "id": "56947", + "name": "Purwokerto", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.42139000", + "longitude": "109.23444000" + }, + { + "id": "56949", + "name": "Randudongkal", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.09810000", + "longitude": "109.32430000" + }, + { + "id": "56953", + "name": "Rembangan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.70360000", + "longitude": "111.34160000" + }, + { + "id": "56958", + "name": "Salatiga", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.33194000", + "longitude": "110.49278000" + }, + { + "id": "56964", + "name": "Selogiri", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.78333000", + "longitude": "110.86667000" + }, + { + "id": "56965", + "name": "Semarang", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.99306000", + "longitude": "110.42083000" + }, + { + "id": "56974", + "name": "Sidareja", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.48460000", + "longitude": "108.79230000" + }, + { + "id": "56987", + "name": "Slawi", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.98160000", + "longitude": "109.14070000" + }, + { + "id": "56991", + "name": "Sokaraja", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.45806000", + "longitude": "109.28806000" + }, + { + "id": "56997", + "name": "Sragen", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.42639000", + "longitude": "111.02222000" + }, + { + "id": "57012", + "name": "Surakarta", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.55611000", + "longitude": "110.83167000" + }, + { + "id": "57024", + "name": "Tarub", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.93333000", + "longitude": "109.16667000" + }, + { + "id": "57026", + "name": "Tayu", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.53970000", + "longitude": "111.05180000" + }, + { + "id": "57028", + "name": "Tegal", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.86940000", + "longitude": "109.14020000" + }, + { + "id": "57040", + "name": "Trucuk", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.71833000", + "longitude": "110.65889000" + }, + { + "id": "57047", + "name": "Ungaran", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.13972000", + "longitude": "110.40500000" + }, + { + "id": "57051", + "name": "Wangon", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.51611000", + "longitude": "109.05389000" + }, + { + "id": "57053", + "name": "Wedi", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.74306000", + "longitude": "110.57944000" + }, + { + "id": "57054", + "name": "Welahan", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.80000000", + "longitude": "110.71667000" + }, + { + "id": "57055", + "name": "Weleri", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.97130000", + "longitude": "110.06660000" + }, + { + "id": "57057", + "name": "Wiradesa", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.89220000", + "longitude": "109.61900000" + }, + { + "id": "57059", + "name": "Wonopringgo", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.98333000", + "longitude": "109.61667000" + }, + { + "id": "57060", + "name": "Wonosobo", + "state_id": 1802, + "state_code": "JT", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.35889000", + "longitude": "109.90306000" + }, + { + "id": "56342", + "name": "Kabupaten Barito Selatan", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.86667000", + "longitude": "114.73333000" + }, + { + "id": "56343", + "name": "Kabupaten Barito Timur", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.93333000", + "longitude": "115.10000000" + }, + { + "id": "56344", + "name": "Kabupaten Barito Utara", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.98333000", + "longitude": "115.10000000" + }, + { + "id": "56415", + "name": "Kabupaten Gunung Mas", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.95000000", + "longitude": "113.50000000" + }, + { + "id": "56437", + "name": "Kabupaten Kapuas", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.01667000", + "longitude": "114.38333000" + }, + { + "id": "56443", + "name": "Kabupaten Katingan", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.06667000", + "longitude": "113.40000000" + }, + { + "id": "56469", + "name": "Kabupaten Kotawaringin Barat", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.40000000", + "longitude": "111.73333000" + }, + { + "id": "56470", + "name": "Kabupaten Kotawaringin Timur", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.08333000", + "longitude": "112.75000000" + }, + { + "id": "56482", + "name": "Kabupaten Lamandau", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.83828000", + "longitude": "111.28690000" + }, + { + "id": "56547", + "name": "Kabupaten Murung Raya", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.01667000", + "longitude": "114.26667000" + }, + { + "id": "56601", + "name": "Kabupaten Pulang Pisau", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.11858000", + "longitude": "113.86230000" + }, + { + "id": "56625", + "name": "Kabupaten Seruyan", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.33333000", + "longitude": "112.25000000" + }, + { + "id": "56646", + "name": "Kabupaten Sukamara", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.62675000", + "longitude": "111.23681000" + }, + { + "id": "56777", + "name": "Kota Palangka Raya", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.76979000", + "longitude": "113.73126000" + }, + { + "id": "56823", + "name": "Kualakapuas", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.00913000", + "longitude": "114.38759000" + }, + { + "id": "56897", + "name": "Palangkaraya", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.20833000", + "longitude": "113.91667000" + }, + { + "id": "56911", + "name": "Pangkalanbuun", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.68320000", + "longitude": "111.62590000" + }, + { + "id": "56961", + "name": "Sampit", + "state_id": 1794, + "state_code": "KT", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.53150000", + "longitude": "112.94960000" + }, + { + "id": "56326", + "name": "Kabupaten Banggai", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.91141000", + "longitude": "122.71836000" + }, + { + "id": "56327", + "name": "Kabupaten Banggai Kepulauan", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.30236000", + "longitude": "123.03726000" + }, + { + "id": "56328", + "name": "Kabupaten Banggai Laut", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.61841000", + "longitude": "123.49388000" + }, + { + "id": "56383", + "name": "Kabupaten Buol", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "1.04656000", + "longitude": "121.36867000" + }, + { + "id": "56401", + "name": "Kabupaten Donggala", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.58333000", + "longitude": "119.85000000" + }, + { + "id": "56541", + "name": "Kabupaten Morowali Utara", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.72070000", + "longitude": "121.24649000" + }, + { + "id": "56578", + "name": "Kabupaten Parigi Moutong", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "0.33680000", + "longitude": "120.17841000" + }, + { + "id": "56598", + "name": "Kabupaten Poso", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.65000000", + "longitude": "120.50000000" + }, + { + "id": "56630", + "name": "Kabupaten Sigi", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.38500000", + "longitude": "119.96694000" + }, + { + "id": "56682", + "name": "Kabupaten Toli-Toli", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "1.30862000", + "longitude": "120.88643000" + }, + { + "id": "56780", + "name": "Kota Palu", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.86972000", + "longitude": "119.90000000" + }, + { + "id": "56849", + "name": "Luwuk", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.95160000", + "longitude": "122.78750000" + }, + { + "id": "56876", + "name": "Morowali Regency", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.76062000", + "longitude": "121.95267000" + }, + { + "id": "56901", + "name": "Palu", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.90833000", + "longitude": "119.87083000" + }, + { + "id": "56937", + "name": "Poso", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.39590000", + "longitude": "120.75240000" + }, + { + "id": "57034", + "name": "Tojo Una-Una Regency", + "state_id": 1813, + "state_code": "ST", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.20360000", + "longitude": "121.48201000" + }, + { + "id": "56185", + "name": "Babat", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.11282000", + "longitude": "112.16354000" + }, + { + "id": "56191", + "name": "Balung", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.73333000", + "longitude": "113.91667000" + }, + { + "id": "56197", + "name": "Bangil", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.59939000", + "longitude": "112.81860000" + }, + { + "id": "56198", + "name": "Bangkalan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.04550000", + "longitude": "112.73510000" + }, + { + "id": "56206", + "name": "Banyuwangi", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.23250000", + "longitude": "114.35755000" + }, + { + "id": "56210", + "name": "Batu", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.87000000", + "longitude": "112.52833000" + }, + { + "id": "56219", + "name": "Besuki", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.73379000", + "longitude": "113.69785000" + }, + { + "id": "56224", + "name": "Blitar", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.09830000", + "longitude": "112.16810000" + }, + { + "id": "56227", + "name": "Bojonegoro", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.15020000", + "longitude": "111.88170000" + }, + { + "id": "56228", + "name": "Bondowoso", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.91346000", + "longitude": "113.82145000" + }, + { + "id": "56231", + "name": "Boyolangu", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.11810000", + "longitude": "111.89350000" + }, + { + "id": "56233", + "name": "Buduran", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.42810000", + "longitude": "112.72340000" + }, + { + "id": "56259", + "name": "Dampit", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.21162000", + "longitude": "112.74934000" + }, + { + "id": "56266", + "name": "Diwek", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.57897000", + "longitude": "112.23109000" + }, + { + "id": "56268", + "name": "Driyorejo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.36590000", + "longitude": "112.62190000" + }, + { + "id": "56274", + "name": "Gambiran Satu", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.39390000", + "longitude": "114.14640000" + }, + { + "id": "56275", + "name": "Gampengrejo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.76667000", + "longitude": "112.01667000" + }, + { + "id": "56279", + "name": "Gedangan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.39083000", + "longitude": "112.72667000" + }, + { + "id": "56280", + "name": "Genteng", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.36667000", + "longitude": "114.15000000" + }, + { + "id": "56284", + "name": "Gongdanglegi Kulon", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.17529000", + "longitude": "112.63594000" + }, + { + "id": "56286", + "name": "Gresik", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.15389000", + "longitude": "112.65611000" + }, + { + "id": "56287", + "name": "Gresik Regency", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.19330000", + "longitude": "112.55300000" + }, + { + "id": "56301", + "name": "Jember", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.17211000", + "longitude": "113.69953000" + }, + { + "id": "56304", + "name": "Jombang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.54595000", + "longitude": "112.23307000" + }, + { + "id": "56333", + "name": "Kabupaten Bangkalan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.05000000", + "longitude": "112.93333000" + }, + { + "id": "56340", + "name": "Kabupaten Banyuwangi", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.33333000", + "longitude": "114.20000000" + }, + { + "id": "56363", + "name": "Kabupaten Blitar", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.13333000", + "longitude": "112.25000000" + }, + { + "id": "56367", + "name": "Kabupaten Bojonegoro", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.25000000", + "longitude": "111.80000000" + }, + { + "id": "56373", + "name": "Kabupaten Bondowoso", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.94040000", + "longitude": "113.98340000" + }, + { + "id": "56430", + "name": "Kabupaten Jember", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.25000000", + "longitude": "113.65000000" + }, + { + "id": "56434", + "name": "Kabupaten Jombang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.55000000", + "longitude": "112.25000000" + }, + { + "id": "56446", + "name": "Kabupaten Kediri", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.83333000", + "longitude": "112.16667000" + }, + { + "id": "56483", + "name": "Kabupaten Lamongan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.13333000", + "longitude": "112.31667000" + }, + { + "id": "56500", + "name": "Kabupaten Lumajang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.11667000", + "longitude": "113.15000000" + }, + { + "id": "56504", + "name": "Kabupaten Madiun", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.61667000", + "longitude": "111.65000000" + }, + { + "id": "56506", + "name": "Kabupaten Magetan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.64472000", + "longitude": "111.35917000" + }, + { + "id": "56511", + "name": "Kabupaten Malang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.16667000", + "longitude": "112.66667000" + }, + { + "id": "56540", + "name": "Kabupaten Mojokerto", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.55000000", + "longitude": "112.50000000" + }, + { + "id": "56557", + "name": "Kabupaten Nganjuk", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.60000000", + "longitude": "111.93333000" + }, + { + "id": "56558", + "name": "Kabupaten Ngawi", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.47444000", + "longitude": "111.33444000" + }, + { + "id": "56568", + "name": "Kabupaten Pacitan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.13333000", + "longitude": "111.16667000" + }, + { + "id": "56573", + "name": "Kabupaten Pamekasan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.06667000", + "longitude": "113.50000000" + }, + { + "id": "56582", + "name": "Kabupaten Pasuruan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.73333000", + "longitude": "112.83333000" + }, + { + "id": "56597", + "name": "Kabupaten Ponorogo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.93333000", + "longitude": "111.50000000" + }, + { + "id": "56600", + "name": "Kabupaten Probolinggo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.86667000", + "longitude": "113.31667000" + }, + { + "id": "56616", + "name": "Kabupaten Sampang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.05000000", + "longitude": "113.25000000" + }, + { + "id": "56629", + "name": "Kabupaten Sidoarjo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.45000000", + "longitude": "112.70000000" + }, + { + "id": "56636", + "name": "Kabupaten Situbondo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.71667000", + "longitude": "114.05000000" + }, + { + "id": "56655", + "name": "Kabupaten Sumenep", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.11667000", + "longitude": "114.33333000" + }, + { + "id": "56685", + "name": "Kabupaten Trenggalek", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.16667000", + "longitude": "111.61667000" + }, + { + "id": "56686", + "name": "Kabupaten Tuban", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.96667000", + "longitude": "111.90000000" + }, + { + "id": "56688", + "name": "Kabupaten Tulungagung", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.11667000", + "longitude": "111.91667000" + }, + { + "id": "56696", + "name": "Kalianget", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.05370000", + "longitude": "113.94244000" + }, + { + "id": "56697", + "name": "Kamal", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.16778000", + "longitude": "112.71917000" + }, + { + "id": "56705", + "name": "Kebomas", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.16667000", + "longitude": "112.63330000" + }, + { + "id": "56707", + "name": "Kediri", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.81667000", + "longitude": "112.01667000" + }, + { + "id": "56708", + "name": "Kedungwaru", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.06667000", + "longitude": "111.91667000" + }, + { + "id": "56711", + "name": "Kencong", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.28333000", + "longitude": "113.36667000" + }, + { + "id": "56713", + "name": "Kepanjen", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.13030000", + "longitude": "112.57270000" + }, + { + "id": "56714", + "name": "Kertosono", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.58333000", + "longitude": "112.10000000" + }, + { + "id": "56736", + "name": "Kota Batu", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.83272000", + "longitude": "112.53751000" + }, + { + "id": "56743", + "name": "Kota Blitar", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.10000000", + "longitude": "112.16667000" + }, + { + "id": "56757", + "name": "Kota Kediri", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.83333000", + "longitude": "112.01667000" + }, + { + "id": "56764", + "name": "Kota Madiun", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.63333000", + "longitude": "111.53333000" + }, + { + "id": "56767", + "name": "Kota Malang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.97500000", + "longitude": "112.63333000" + }, + { + "id": "56772", + "name": "Kota Mojokerto", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.46667000", + "longitude": "112.43333000" + }, + { + "id": "56784", + "name": "Kota Pasuruan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.65000000", + "longitude": "112.90000000" + }, + { + "id": "56790", + "name": "Kota Probolinggo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.78333000", + "longitude": "113.21667000" + }, + { + "id": "56803", + "name": "Kota Surabaya", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.26667000", + "longitude": "112.71667000" + }, + { + "id": "56818", + "name": "Kraksaan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.75845000", + "longitude": "113.39624000" + }, + { + "id": "56820", + "name": "Krian", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.41040000", + "longitude": "112.57920000" + }, + { + "id": "56836", + "name": "Lamongan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.11667000", + "longitude": "112.41667000" + }, + { + "id": "56839", + "name": "Lawang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.83530000", + "longitude": "112.69470000" + }, + { + "id": "56848", + "name": "Lumajang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.13350000", + "longitude": "113.22480000" + }, + { + "id": "56850", + "name": "Madiun", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.62980000", + "longitude": "111.52390000" + }, + { + "id": "56856", + "name": "Malang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.97970000", + "longitude": "112.63040000" + }, + { + "id": "56874", + "name": "Mojoagung", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.56667000", + "longitude": "112.35000000" + }, + { + "id": "56875", + "name": "Mojokerto", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.46640000", + "longitude": "112.43380000" + }, + { + "id": "56878", + "name": "Muncar", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.43333000", + "longitude": "114.33333000" + }, + { + "id": "56885", + "name": "Nganjuk", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.60510000", + "longitude": "111.90350000" + }, + { + "id": "56888", + "name": "Ngoro", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.68386000", + "longitude": "112.25804000" + }, + { + "id": "56889", + "name": "Ngunut", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.10580000", + "longitude": "112.01591000" + }, + { + "id": "56891", + "name": "Paciran", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.87666000", + "longitude": "112.37606000" + }, + { + "id": "56896", + "name": "Pakisaji", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.06650000", + "longitude": "112.59810000" + }, + { + "id": "56903", + "name": "Pamekasan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.15680000", + "longitude": "113.47460000" + }, + { + "id": "56906", + "name": "Panarukan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.70181000", + "longitude": "113.91844000" + }, + { + "id": "56907", + "name": "Pandaan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.65268000", + "longitude": "112.68750000" + }, + { + "id": "56913", + "name": "Panji", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.72528000", + "longitude": "114.09954000" + }, + { + "id": "56915", + "name": "Pare", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.76790000", + "longitude": "112.19800000" + }, + { + "id": "56921", + "name": "Pasuruan", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.64530000", + "longitude": "112.90750000" + }, + { + "id": "56936", + "name": "Ponorogo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.86850000", + "longitude": "111.46200000" + }, + { + "id": "56941", + "name": "Prigen", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.68333000", + "longitude": "112.61667000" + }, + { + "id": "56942", + "name": "Probolinggo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.75430000", + "longitude": "113.21590000" + }, + { + "id": "56960", + "name": "Sampang", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.18720000", + "longitude": "113.23940000" + }, + { + "id": "56975", + "name": "Sidoarjo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.44780000", + "longitude": "112.71830000" + }, + { + "id": "56983", + "name": "Singojuruh", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.31667000", + "longitude": "114.23333000" + }, + { + "id": "56984", + "name": "Singosari", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.89240000", + "longitude": "112.66580000" + }, + { + "id": "56986", + "name": "Situbondo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.70623000", + "longitude": "114.00976000" + }, + { + "id": "56992", + "name": "Soko", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.48315000", + "longitude": "112.42704000" + }, + { + "id": "56999", + "name": "Srono", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.40003000", + "longitude": "114.26661000" + }, + { + "id": "57004", + "name": "Sumberpucung", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.15856000", + "longitude": "112.48292000" + }, + { + "id": "57007", + "name": "Sumenep", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.01667000", + "longitude": "113.86667000" + }, + { + "id": "57011", + "name": "Surabaya", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.24917000", + "longitude": "112.75083000" + }, + { + "id": "57015", + "name": "Tanggul", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.16450000", + "longitude": "113.45250000" + }, + { + "id": "57016", + "name": "Tanggulangin", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.49958000", + "longitude": "112.69992000" + }, + { + "id": "57039", + "name": "Trenggalek", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.07640000", + "longitude": "111.70641000" + }, + { + "id": "57042", + "name": "Tuban", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.89760000", + "longitude": "112.06490000" + }, + { + "id": "57044", + "name": "Tulangan Utara", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.47370000", + "longitude": "112.65050000" + }, + { + "id": "57045", + "name": "Tulungagung", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.06570000", + "longitude": "111.90250000" + }, + { + "id": "57058", + "name": "Wongsorejo", + "state_id": 1827, + "state_code": "JI", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.99080000", + "longitude": "114.40090000" + }, + { + "id": "56190", + "name": "Balikpapan", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.26753000", + "longitude": "116.82887000" + }, + { + "id": "56229", + "name": "Bontang", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.13240000", + "longitude": "117.48540000" + }, + { + "id": "56254", + "name": "City of Balikpapan", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.24204000", + "longitude": "116.89419000" + }, + { + "id": "56358", + "name": "Kabupaten Berau", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "2.00000000", + "longitude": "117.30000000" + }, + { + "id": "56476", + "name": "Kabupaten Kutai Barat", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.59417000", + "longitude": "115.51575000" + }, + { + "id": "56477", + "name": "Kabupaten Kutai Kartanegara", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.44019000", + "longitude": "116.98139000" + }, + { + "id": "56478", + "name": "Kabupaten Kutai Timur", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "1.03769000", + "longitude": "117.83112000" + }, + { + "id": "56507", + "name": "Kabupaten Mahakam Hulu", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.37822000", + "longitude": "115.38048000" + }, + { + "id": "56581", + "name": "Kabupaten Paser", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.43517000", + "longitude": "116.23535000" + }, + { + "id": "56588", + "name": "Kabupaten Penajam Paser Utara", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.25000000", + "longitude": "116.83333000" + }, + { + "id": "56728", + "name": "Kota Balikpapan", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.16667000", + "longitude": "116.88333000" + }, + { + "id": "56745", + "name": "Kota Bontang", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.12526000", + "longitude": "117.49603000" + }, + { + "id": "56793", + "name": "Kota Samarinda", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.43333000", + "longitude": "117.18333000" + }, + { + "id": "56845", + "name": "Loa Janan", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.58295000", + "longitude": "117.09503000" + }, + { + "id": "56959", + "name": "Samarinda", + "state_id": 1804, + "state_code": "KI", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.49167000", + "longitude": "117.14583000" + }, + { + "id": "56184", + "name": "Atambua", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.10611000", + "longitude": "124.89250000" + }, + { + "id": "56272", + "name": "Ende", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.84320000", + "longitude": "121.66230000" + }, + { + "id": "56319", + "name": "Kabupaten Alor", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.30000000", + "longitude": "124.56667000" + }, + { + "id": "56352", + "name": "Kabupaten Belu", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.41258000", + "longitude": "124.95066000" + }, + { + "id": "56403", + "name": "Kabupaten Ende", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.84056000", + "longitude": "121.66389000" + }, + { + "id": "56406", + "name": "Kabupaten Flores Timur", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.24224000", + "longitude": "122.96817000" + }, + { + "id": "56475", + "name": "Kabupaten Kupang", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.91667000", + "longitude": "123.83333000" + }, + { + "id": "56493", + "name": "Kabupaten Lembata", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.41396000", + "longitude": "123.55225000" + }, + { + "id": "56510", + "name": "Kabupaten Malaka", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.56320000", + "longitude": "124.89481000" + }, + { + "id": "56524", + "name": "Kabupaten Manggarai", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.56667000", + "longitude": "120.41667000" + }, + { + "id": "56525", + "name": "Kabupaten Manggarai Barat", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.64484000", + "longitude": "119.88281000" + }, + { + "id": "56526", + "name": "Kabupaten Manggarai Timur", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.55533000", + "longitude": "120.59761000" + }, + { + "id": "56553", + "name": "Kabupaten Nagekeo", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.87210000", + "longitude": "121.20963000" + }, + { + "id": "56556", + "name": "Kabupaten Ngada", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.66667000", + "longitude": "121.00000000" + }, + { + "id": "56613", + "name": "Kabupaten Rote Ndao", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-10.73617000", + "longitude": "123.12054000" + }, + { + "id": "56614", + "name": "Kabupaten Sabu Raijua", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-10.56286000", + "longitude": "121.78894000" + }, + { + "id": "56632", + "name": "Kabupaten Sikka", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.66667000", + "longitude": "122.36667000" + }, + { + "id": "56648", + "name": "Kabupaten Sumba Barat", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.56667000", + "longitude": "119.45000000" + }, + { + "id": "56649", + "name": "Kabupaten Sumba Barat Daya", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.56216000", + "longitude": "119.08905000" + }, + { + "id": "56650", + "name": "Kabupaten Sumba Tengah", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.62941000", + "longitude": "119.61914000" + }, + { + "id": "56651", + "name": "Kabupaten Sumba Timur", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.88333000", + "longitude": "120.25000000" + }, + { + "id": "56680", + "name": "Kabupaten Timor Tengah Selatan", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.83333000", + "longitude": "124.40000000" + }, + { + "id": "56681", + "name": "Kabupaten Timor Tengah Utara", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.33136000", + "longitude": "124.51904000" + }, + { + "id": "56710", + "name": "Kefamenanu", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.44667000", + "longitude": "124.47806000" + }, + { + "id": "56721", + "name": "Komodo", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.58950000", + "longitude": "119.49130000" + }, + { + "id": "56760", + "name": "Kota Kupang", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-10.21667000", + "longitude": "123.60000000" + }, + { + "id": "56826", + "name": "Kupang", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-10.17083000", + "longitude": "123.60694000" + }, + { + "id": "56830", + "name": "Labuan Bajo", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.49640000", + "longitude": "119.88770000" + }, + { + "id": "56866", + "name": "Maumere", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.61990000", + "longitude": "122.21110000" + }, + { + "id": "56883", + "name": "Naisano Dua", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.59806000", + "longitude": "123.77028000" + }, + { + "id": "56956", + "name": "Ruteng", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.61139000", + "longitude": "120.46444000" + }, + { + "id": "56989", + "name": "Soe", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.86071000", + "longitude": "124.28395000" + }, + { + "id": "57048", + "name": "Waingapu", + "state_id": 1818, + "state_code": "NT", + "country_id": 102, + "country_code": "ID", + "latitude": "-9.65670000", + "longitude": "120.26410000" + }, + { + "id": "56285", + "name": "Gorontalo", + "state_id": 1812, + "state_code": "GO", + "country_id": 102, + "country_code": "ID", + "latitude": "0.53750000", + "longitude": "123.06250000" + }, + { + "id": "56365", + "name": "Kabupaten Boalemo", + "state_id": 1812, + "state_code": "GO", + "country_id": 102, + "country_code": "ID", + "latitude": "0.62689000", + "longitude": "122.35680000" + }, + { + "id": "56375", + "name": "Kabupaten Bone Bolango", + "state_id": 1812, + "state_code": "GO", + "country_id": 102, + "country_code": "ID", + "latitude": "0.50296000", + "longitude": "123.27501000" + }, + { + "id": "56410", + "name": "Kabupaten Gorontalo", + "state_id": 1812, + "state_code": "GO", + "country_id": 102, + "country_code": "ID", + "latitude": "0.57280000", + "longitude": "122.23370000" + }, + { + "id": "56411", + "name": "Kabupaten Gorontalo Utara", + "state_id": 1812, + "state_code": "GO", + "country_id": 102, + "country_code": "ID", + "latitude": "0.77000000", + "longitude": "122.31667000" + }, + { + "id": "56595", + "name": "Kabupaten Pohuwato", + "state_id": 1812, + "state_code": "GO", + "country_id": 102, + "country_code": "ID", + "latitude": "0.70980000", + "longitude": "121.59582000" + }, + { + "id": "56753", + "name": "Kota Gorontalo", + "state_id": 1812, + "state_code": "GO", + "country_id": 102, + "country_code": "ID", + "latitude": "0.53333000", + "longitude": "123.10000000" + }, + { + "id": "56293", + "name": "Jakarta", + "state_id": 1805, + "state_code": "JK", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.21462000", + "longitude": "106.84513000" + }, + { + "id": "56722", + "name": "Kota Administrasi Jakarta Barat", + "state_id": 1805, + "state_code": "JK", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.16760000", + "longitude": "106.76730000" + }, + { + "id": "56723", + "name": "Kota Administrasi Jakarta Pusat", + "state_id": 1805, + "state_code": "JK", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.17770000", + "longitude": "106.84030000" + }, + { + "id": "56724", + "name": "Kota Administrasi Jakarta Selatan", + "state_id": 1805, + "state_code": "JK", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.26600000", + "longitude": "106.81350000" + }, + { + "id": "56725", + "name": "Kota Administrasi Jakarta Timur", + "state_id": 1805, + "state_code": "JK", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.25210000", + "longitude": "106.88400000" + }, + { + "id": "56726", + "name": "Kota Administrasi Jakarta Utara", + "state_id": 1805, + "state_code": "JK", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.13390000", + "longitude": "106.88230000" + }, + { + "id": "56214", + "name": "Bejubang Dua", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.79230000", + "longitude": "103.31670000" + }, + { + "id": "56294", + "name": "Jambi City", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.60000000", + "longitude": "103.61667000" + }, + { + "id": "56347", + "name": "Kabupaten Batang Hari", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.75000000", + "longitude": "103.11667000" + }, + { + "id": "56382", + "name": "Kabupaten Bungo", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.50222000", + "longitude": "101.96000000" + }, + { + "id": "56458", + "name": "Kabupaten Kerinci", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.03333000", + "longitude": "101.53333000" + }, + { + "id": "56532", + "name": "Kabupaten Merangin", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.06933000", + "longitude": "102.13303000" + }, + { + "id": "56543", + "name": "Kabupaten Muaro Jambi", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.55214000", + "longitude": "103.82163000" + }, + { + "id": "56618", + "name": "Kabupaten Sarolangun", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.30000000", + "longitude": "102.65000000" + }, + { + "id": "56668", + "name": "Kabupaten Tanjung Jabung Barat", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.15440000", + "longitude": "103.24402000" + }, + { + "id": "56669", + "name": "Kabupaten Tanjung Jabung Timur", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.13198000", + "longitude": "103.61755000" + }, + { + "id": "56675", + "name": "Kabupaten Tebo", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.45576000", + "longitude": "102.37473000" + }, + { + "id": "56755", + "name": "Kota Jambi", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.61667000", + "longitude": "103.65000000" + }, + { + "id": "56802", + "name": "Kota Sungai Penuh", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.10896000", + "longitude": "101.32175000" + }, + { + "id": "56822", + "name": "Kuala Tungkal", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.81623000", + "longitude": "103.46111000" + }, + { + "id": "56869", + "name": "Mendaha", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.01630000", + "longitude": "103.59331000" + }, + { + "id": "56978", + "name": "Simpang", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.26424000", + "longitude": "104.09701000" + }, + { + "id": "57008", + "name": "Sungai Penuh", + "state_id": 1815, + "state_code": "JA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.05610000", + "longitude": "101.39130000" + }, + { + "id": "56195", + "name": "Bandar Lampung", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.42917000", + "longitude": "105.26111000" + }, + { + "id": "56484", + "name": "Kabupaten Lampung Barat", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.14904000", + "longitude": "104.19309000" + }, + { + "id": "56485", + "name": "Kabupaten Lampung Selatan", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.45310000", + "longitude": "104.98770000" + }, + { + "id": "56486", + "name": "Kabupaten Lampung Tengah", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.86667000", + "longitude": "105.26667000" + }, + { + "id": "56487", + "name": "Kabupaten Lampung Timur", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.10273000", + "longitude": "105.68003000" + }, + { + "id": "56488", + "name": "Kabupaten Lampung Utara", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.81667000", + "longitude": "104.80000000" + }, + { + "id": "56534", + "name": "Kabupaten Mesuji", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.04390000", + "longitude": "105.40130000" + }, + { + "id": "56590", + "name": "Kabupaten Pesawaran", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.42980000", + "longitude": "105.17899000" + }, + { + "id": "56591", + "name": "Kabupaten Pesisir Barat", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.19323000", + "longitude": "103.93976000" + }, + { + "id": "56599", + "name": "Kabupaten Pringsewu", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.42211000", + "longitude": "104.93454000" + }, + { + "id": "56667", + "name": "Kabupaten Tanggamus", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.38508000", + "longitude": "104.62349000" + }, + { + "id": "56687", + "name": "Kabupaten Tulangbawang", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.20604000", + "longitude": "105.57999000" + }, + { + "id": "56691", + "name": "Kabupaten Way Kanan", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.44705000", + "longitude": "104.52753000" + }, + { + "id": "56730", + "name": "Kota Bandar Lampung", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.41667000", + "longitude": "105.25000000" + }, + { + "id": "56771", + "name": "Kota Metro", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.11856000", + "longitude": "105.29949000" + }, + { + "id": "56817", + "name": "Kotabumi", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.82505000", + "longitude": "104.88170000" + }, + { + "id": "56871", + "name": "Metro", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.11306000", + "longitude": "105.30667000" + }, + { + "id": "57031", + "name": "Terbanggi Besar", + "state_id": 1811, + "state_code": "LA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.87898000", + "longitude": "105.21818000" + }, + { + "id": "56175", + "name": "Amahai", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.33984000", + "longitude": "128.91975000" + }, + { + "id": "56178", + "name": "Ambon", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.69583000", + "longitude": "128.18333000" + }, + { + "id": "56384", + "name": "Kabupaten Buru", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.32767000", + "longitude": "126.68413000" + }, + { + "id": "56385", + "name": "Kabupaten Buru Selatan", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.52187000", + "longitude": "126.59271000" + }, + { + "id": "56451", + "name": "Kabupaten Kepulauan Aru", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.17059000", + "longitude": "134.46991000" + }, + { + "id": "56513", + "name": "Kabupaten Maluku Barat Daya", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.82960000", + "longitude": "126.17386000" + }, + { + "id": "56514", + "name": "Kabupaten Maluku Tengah", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.29167000", + "longitude": "128.96750000" + }, + { + "id": "56515", + "name": "Kabupaten Maluku Tenggara", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.75000000", + "longitude": "132.73333000" + }, + { + "id": "56516", + "name": "Kabupaten Maluku Tenggara Barat", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.61186000", + "longitude": "131.38000000" + }, + { + "id": "56621", + "name": "Kabupaten Seram Bagian Barat", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.10270000", + "longitude": "128.42996000" + }, + { + "id": "56622", + "name": "Kabupaten Seram Bagian Timur", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.39851000", + "longitude": "130.39167000" + }, + { + "id": "56727", + "name": "Kota Ambon", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.70000000", + "longitude": "128.18333000" + }, + { + "id": "56815", + "name": "Kota Tual", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.64301000", + "longitude": "132.74935000" + }, + { + "id": "57041", + "name": "Tual", + "state_id": 1800, + "state_code": "MA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.62878000", + "longitude": "132.75229000" + }, + { + "id": "56381", + "name": "Kabupaten Bulungan", + "state_id": 1824, + "state_code": "KU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.00000000", + "longitude": "117.16667000" + }, + { + "id": "56512", + "name": "Kabupaten Malinau", + "state_id": 1824, + "state_code": "KU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.45000000", + "longitude": "115.68333000" + }, + { + "id": "56562", + "name": "Kabupaten Nunukan", + "state_id": 1824, + "state_code": "KU", + "country_id": 102, + "country_code": "ID", + "latitude": "4.13333000", + "longitude": "116.70000000" + }, + { + "id": "56661", + "name": "Kabupaten Tana Tidung", + "state_id": 1824, + "state_code": "KU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.55000000", + "longitude": "117.25000000" + }, + { + "id": "57019", + "name": "Tanjung Selor", + "state_id": 1824, + "state_code": "KU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.83750000", + "longitude": "117.36528000" + }, + { + "id": "57023", + "name": "Tarakan", + "state_id": 1824, + "state_code": "KU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.31332000", + "longitude": "117.59152000" + }, + { + "id": "56271", + "name": "East Halmahera Regency", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.33517000", + "longitude": "128.48627000" + }, + { + "id": "56416", + "name": "Kabupaten Halmahera Barat", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.41709000", + "longitude": "127.55264000" + }, + { + "id": "56417", + "name": "Kabupaten Halmahera Selatan", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.39550000", + "longitude": "127.90833000" + }, + { + "id": "56418", + "name": "Kabupaten Halmahera Tengah", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "0.48056000", + "longitude": "128.25000000" + }, + { + "id": "56419", + "name": "Kabupaten Halmahera Utara", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.73194000", + "longitude": "128.00778000" + }, + { + "id": "56455", + "name": "Kabupaten Kepulauan Sula", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.86460000", + "longitude": "125.69046000" + }, + { + "id": "56602", + "name": "Kabupaten Pulau Morotai", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.19924000", + "longitude": "128.40546000" + }, + { + "id": "56603", + "name": "Kabupaten Pulau Taliabu", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.84578000", + "longitude": "124.78992000" + }, + { + "id": "56812", + "name": "Kota Ternate", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "0.89618000", + "longitude": "127.31016000" + }, + { + "id": "56813", + "name": "Kota Tidore Kepulauan", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "0.60962000", + "longitude": "127.56981000" + }, + { + "id": "56990", + "name": "Sofifi", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "0.73729000", + "longitude": "127.55880000" + }, + { + "id": "57032", + "name": "Ternate", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "0.79065000", + "longitude": "127.38424000" + }, + { + "id": "57033", + "name": "Tobelo", + "state_id": 1801, + "state_code": "MU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.72837000", + "longitude": "128.00948000" + }, + { + "id": "56368", + "name": "Kabupaten Bolaang Mongondow", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "0.75000000", + "longitude": "124.08333000" + }, + { + "id": "56369", + "name": "Kabupaten Bolaang Mongondow Selatan", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "0.40912000", + "longitude": "123.75961000" + }, + { + "id": "56370", + "name": "Kabupaten Bolaang Mongondow Timur", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "0.72073000", + "longitude": "124.50256000" + }, + { + "id": "56371", + "name": "Kabupaten Bolaang Mongondow Utara", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "0.78527000", + "longitude": "123.41766000" + }, + { + "id": "56454", + "name": "Kabupaten Kepulauan Sangihe", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "3.50000000", + "longitude": "125.55000000" + }, + { + "id": "56456", + "name": "Kabupaten Kepulauan Talaud", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "4.31178000", + "longitude": "126.78085000" + }, + { + "id": "56536", + "name": "Kabupaten Minahasa", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.25370000", + "longitude": "124.83000000" + }, + { + "id": "56537", + "name": "Kabupaten Minahasa Selatan", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.21291000", + "longitude": "124.59708000" + }, + { + "id": "56538", + "name": "Kabupaten Minahasa Tenggara", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.05633000", + "longitude": "124.79250000" + }, + { + "id": "56539", + "name": "Kabupaten Minahasa Utara", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.40250000", + "longitude": "124.96000000" + }, + { + "id": "56627", + "name": "Kabupaten Siau Tagulandang Biaro", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "2.11728000", + "longitude": "125.37512000" + }, + { + "id": "56742", + "name": "Kota Bitung", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.48333000", + "longitude": "125.15000000" + }, + { + "id": "56759", + "name": "Kota Kotamobagu", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "0.68915000", + "longitude": "124.32678000" + }, + { + "id": "56768", + "name": "Kota Manado", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.51667000", + "longitude": "124.88333000" + }, + { + "id": "56814", + "name": "Kota Tomohon", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.31307000", + "longitude": "124.83404000" + }, + { + "id": "56835", + "name": "Laikit, Laikit II (Dimembe)", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.48833000", + "longitude": "124.97444000" + }, + { + "id": "56858", + "name": "Manado", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.48218000", + "longitude": "124.84892000" + }, + { + "id": "57035", + "name": "Tomohon", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.31678000", + "longitude": "124.80379000" + }, + { + "id": "57037", + "name": "Tondano", + "state_id": 1808, + "state_code": "SA", + "country_id": 102, + "country_code": "ID", + "latitude": "1.30540000", + "longitude": "124.91261000" + }, + { + "id": "56177", + "name": "Ambarita", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.68140000", + "longitude": "98.83110000" + }, + { + "id": "56194", + "name": "Bandar", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.05000000", + "longitude": "99.75000000" + }, + { + "id": "56216", + "name": "Belawan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.77550000", + "longitude": "98.68320000" + }, + { + "id": "56218", + "name": "Berastagi", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.19468000", + "longitude": "98.50889000" + }, + { + "id": "56222", + "name": "Binjai", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.60010000", + "longitude": "98.48540000" + }, + { + "id": "56261", + "name": "Deli Tua", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.50780000", + "longitude": "98.68390000" + }, + { + "id": "56290", + "name": "Gunungsitoli", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.28880000", + "longitude": "97.61430000" + }, + { + "id": "56306", + "name": "Kabanjahe", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.10010000", + "longitude": "98.49080000" + }, + { + "id": "56320", + "name": "Kabupaten Asahan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.78333000", + "longitude": "99.55000000" + }, + { + "id": "56348", + "name": "Kabupaten Batu Bara", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.16166000", + "longitude": "99.52652000" + }, + { + "id": "56394", + "name": "Kabupaten Dairi", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.86667000", + "longitude": "98.23333000" + }, + { + "id": "56396", + "name": "Kabupaten Deli Serdang", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.41667000", + "longitude": "98.66667000" + }, + { + "id": "56423", + "name": "Kabupaten Humbang Hasundutan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.26551000", + "longitude": "98.50376000" + }, + { + "id": "56442", + "name": "Kabupaten Karo", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.11667000", + "longitude": "98.30000000" + }, + { + "id": "56479", + "name": "Kabupaten Labuhan Batu", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.26667000", + "longitude": "100.10000000" + }, + { + "id": "56480", + "name": "Kabupaten Labuhan Batu Selatan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.98300000", + "longitude": "100.09760000" + }, + { + "id": "56481", + "name": "Kabupaten Labuhan Batu Utara", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.33349000", + "longitude": "99.63776000" + }, + { + "id": "56489", + "name": "Kabupaten Langkat", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.71667000", + "longitude": "98.21667000" + }, + { + "id": "56523", + "name": "Kabupaten Mandailing Natal", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "0.78378000", + "longitude": "99.25495000" + }, + { + "id": "56559", + "name": "Kabupaten Nias", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.03333000", + "longitude": "97.76667000" + }, + { + "id": "56560", + "name": "Kabupaten Nias Barat", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.05966000", + "longitude": "97.58606000" + }, + { + "id": "56561", + "name": "Kabupaten Nias Utara", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.33037000", + "longitude": "97.31964000" + }, + { + "id": "56569", + "name": "Kabupaten Padang Lawas", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.44684000", + "longitude": "99.99207000" + }, + { + "id": "56570", + "name": "Kabupaten Padang Lawas Utara", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.46011000", + "longitude": "99.67346000" + }, + { + "id": "56572", + "name": "Kabupaten Pakpak Bharat", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.56667000", + "longitude": "98.28333000" + }, + { + "id": "56615", + "name": "Kabupaten Samosir", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.64025000", + "longitude": "98.71525000" + }, + { + "id": "56624", + "name": "Kabupaten Serdang Bedagai", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.36667000", + "longitude": "99.03333000" + }, + { + "id": "56633", + "name": "Kabupaten Simalungun", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.90000000", + "longitude": "99.00000000" + }, + { + "id": "56670", + "name": "Kabupaten Tapanuli Selatan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.51667000", + "longitude": "99.25000000" + }, + { + "id": "56671", + "name": "Kabupaten Tapanuli Tengah", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.90000000", + "longitude": "98.66667000" + }, + { + "id": "56672", + "name": "Kabupaten Tapanuli Utara", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.00280000", + "longitude": "99.07070000" + }, + { + "id": "56717", + "name": "Kisaran", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.98450000", + "longitude": "99.61580000" + }, + { + "id": "56741", + "name": "Kota Binjai", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.80000000", + "longitude": "108.23333000" + }, + { + "id": "56754", + "name": "Kota Gunungsitoli", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.32731000", + "longitude": "97.55018000" + }, + { + "id": "56770", + "name": "Kota Medan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.65000000", + "longitude": "98.66667000" + }, + { + "id": "56775", + "name": "Kota Padangsidimpuan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.37375000", + "longitude": "99.26843000" + }, + { + "id": "56788", + "name": "Kota Pematang Siantar", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.96667000", + "longitude": "99.05000000" + }, + { + "id": "56797", + "name": "Kota Sibolga", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.73333000", + "longitude": "98.80000000" + }, + { + "id": "56807", + "name": "Kota Tanjung Balai", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.95833000", + "longitude": "99.79167000" + }, + { + "id": "56810", + "name": "Kota Tebing Tinggi", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.32500000", + "longitude": "99.14167000" + }, + { + "id": "56832", + "name": "Labuhan Deli", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.72780000", + "longitude": "98.67380000" + }, + { + "id": "56867", + "name": "Medan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.58333000", + "longitude": "98.66667000" + }, + { + "id": "56894", + "name": "Padangsidempuan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.37952000", + "longitude": "99.27146000" + }, + { + "id": "56910", + "name": "Pangkalan Brandan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "4.02380000", + "longitude": "98.27820000" + }, + { + "id": "56914", + "name": "Parapat", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.66300000", + "longitude": "98.93490000" + }, + { + "id": "56926", + "name": "Pekan Bahapal", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.11313000", + "longitude": "99.17352000" + }, + { + "id": "56930", + "name": "Pematangsiantar", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.95950000", + "longitude": "99.06870000" + }, + { + "id": "56932", + "name": "Perbaungan", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.56790000", + "longitude": "98.95600000" + }, + { + "id": "56933", + "name": "Percut", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.62530000", + "longitude": "98.86400000" + }, + { + "id": "56951", + "name": "Rantauprapat", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.10000000", + "longitude": "99.83333000" + }, + { + "id": "56973", + "name": "Sibolga", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "1.74016000", + "longitude": "98.78117000" + }, + { + "id": "57000", + "name": "Stabat", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.73335000", + "longitude": "98.45025000" + }, + { + "id": "57010", + "name": "Sunggal", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.57650000", + "longitude": "98.61510000" + }, + { + "id": "57021", + "name": "Tanjungbalai", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.96667000", + "longitude": "99.80000000" + }, + { + "id": "57022", + "name": "Tanjungtiram", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "4.06130000", + "longitude": "98.36990000" + }, + { + "id": "57027", + "name": "Tebingtinggi", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.32850000", + "longitude": "99.16250000" + }, + { + "id": "57029", + "name": "Teluk Nibung", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "3.00100000", + "longitude": "99.81640000" + }, + { + "id": "57036", + "name": "Tomok Bolon", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.65210000", + "longitude": "98.86080000" + }, + { + "id": "57038", + "name": "Tongging", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.89850000", + "longitude": "98.52310000" + }, + { + "id": "57043", + "name": "Tuktuk Sonak", + "state_id": 1792, + "state_code": "SU", + "country_id": 102, + "country_code": "ID", + "latitude": "2.66890000", + "longitude": "98.85760000" + }, + { + "id": "56173", + "name": "Abepura", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.59640000", + "longitude": "140.63240000" + }, + { + "id": "56220", + "name": "Biak", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.17670000", + "longitude": "136.08200000" + }, + { + "id": "56292", + "name": "Insrom", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.14473000", + "longitude": "136.03134000" + }, + { + "id": "56299", + "name": "Jayapura", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.53371000", + "longitude": "140.71813000" + }, + { + "id": "56321", + "name": "Kabupaten Asmat", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.37950000", + "longitude": "138.46344000" + }, + { + "id": "56359", + "name": "Kabupaten Biak Numfor", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.03333000", + "longitude": "136.00000000" + }, + { + "id": "56376", + "name": "Kabupaten Boven Digoel", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.70519000", + "longitude": "140.36349000" + }, + { + "id": "56395", + "name": "Kabupaten Deiyai", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.94737000", + "longitude": "135.95032000" + }, + { + "id": "56399", + "name": "Kabupaten Dogiyai", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.03186000", + "longitude": "135.43945000" + }, + { + "id": "56427", + "name": "Kabupaten Intan Jaya", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.41016000", + "longitude": "136.70837000" + }, + { + "id": "56428", + "name": "Kabupaten Jayapura", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.00000000", + "longitude": "139.95000000" + }, + { + "id": "56429", + "name": "Kabupaten Jayawijaya", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.08333000", + "longitude": "139.08333000" + }, + { + "id": "56447", + "name": "Kabupaten Keerom", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.30000000", + "longitude": "140.61667000" + }, + { + "id": "56457", + "name": "Kabupaten Kepulauan Yapen", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.78773000", + "longitude": "136.27716000" + }, + { + "id": "56490", + "name": "Kabupaten Lanny Jaya", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.91244000", + "longitude": "138.28766000" + }, + { + "id": "56518", + "name": "Kabupaten Mamberamo Raya", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.23561000", + "longitude": "137.78229000" + }, + { + "id": "56519", + "name": "Kabupaten Mamberamo Tengah", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.46064000", + "longitude": "138.45245000" + }, + { + "id": "56529", + "name": "Kabupaten Mappi", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.49971000", + "longitude": "139.34441000" + }, + { + "id": "56533", + "name": "Kabupaten Merauke", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.66667000", + "longitude": "139.66667000" + }, + { + "id": "56535", + "name": "Kabupaten Mimika", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.54357000", + "longitude": "136.56555000" + }, + { + "id": "56551", + "name": "Kabupaten Nabire", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.54016000", + "longitude": "135.55511000" + }, + { + "id": "56555", + "name": "Kabupaten Nduga", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.45093000", + "longitude": "138.10089000" + }, + { + "id": "56577", + "name": "Kabupaten Paniai", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.90000000", + "longitude": "136.60000000" + }, + { + "id": "56584", + "name": "Kabupaten Pegunungan Bintang", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.52167000", + "longitude": "140.29541000" + }, + { + "id": "56604", + "name": "Kabupaten Puncak Jaya", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.67241000", + "longitude": "137.43896000" + }, + { + "id": "56617", + "name": "Kabupaten Sarmi", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.41667000", + "longitude": "139.08333000" + }, + { + "id": "56656", + "name": "Kabupaten Supiori", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.73881000", + "longitude": "135.61111000" + }, + { + "id": "56683", + "name": "Kabupaten Tolikara", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.42661000", + "longitude": "137.41699000" + }, + { + "id": "56690", + "name": "Kabupaten Waropen", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.28600000", + "longitude": "137.01837000" + }, + { + "id": "56694", + "name": "Kabupaten Yahukimo", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.60403000", + "longitude": "139.58405000" + }, + { + "id": "56695", + "name": "Kabupaten Yalimo", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.86037000", + "longitude": "138.47305000" + }, + { + "id": "56756", + "name": "Kota Jayapura", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.64647000", + "longitude": "140.77779000" + }, + { + "id": "56882", + "name": "Nabire", + "state_id": 1798, + "state_code": "PA", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.35989000", + "longitude": "135.50074000" + }, + { + "id": "56188", + "name": "Balaipungut", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "1.05949000", + "longitude": "101.29054000" + }, + { + "id": "56208", + "name": "Batam", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "1.14937000", + "longitude": "104.02491000" + }, + { + "id": "56270", + "name": "Dumai", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "1.66711000", + "longitude": "101.44316000" + }, + { + "id": "56354", + "name": "Kabupaten Bengkalis", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.98380000", + "longitude": "102.50960000" + }, + { + "id": "56424", + "name": "Kabupaten Indragiri Hilir", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.33333000", + "longitude": "103.16667000" + }, + { + "id": "56425", + "name": "Kabupaten Indragiri Hulu", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.55000000", + "longitude": "102.31667000" + }, + { + "id": "56436", + "name": "Kabupaten Kampar", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.23440000", + "longitude": "101.21310000" + }, + { + "id": "56453", + "name": "Kabupaten Kepulauan Meranti", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.97488000", + "longitude": "102.69539000" + }, + { + "id": "56471", + "name": "Kabupaten Kuantan Singingi", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.47532000", + "longitude": "101.45857000" + }, + { + "id": "56586", + "name": "Kabupaten Pelalawan", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.20822000", + "longitude": "102.18607000" + }, + { + "id": "56611", + "name": "Kabupaten Rokan Hilir", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "2.16599000", + "longitude": "100.82514000" + }, + { + "id": "56612", + "name": "Kabupaten Rokan Hulu", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.88333000", + "longitude": "100.48333000" + }, + { + "id": "56626", + "name": "Kabupaten Siak", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.97453000", + "longitude": "102.01355000" + }, + { + "id": "56752", + "name": "Kota Dumai", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "1.61592000", + "longitude": "101.49170000" + }, + { + "id": "56787", + "name": "Kota Pekanbaru", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.53333000", + "longitude": "101.46667000" + }, + { + "id": "56927", + "name": "Pekanbaru", + "state_id": 1809, + "state_code": "RI", + "country_id": 102, + "country_code": "ID", + "latitude": "0.51667000", + "longitude": "101.44167000" + }, + { + "id": "56361", + "name": "Kabupaten Bintan", + "state_id": 1807, + "state_code": "KR", + "country_id": 102, + "country_code": "ID", + "latitude": "0.95000000", + "longitude": "104.61944000" + }, + { + "id": "56441", + "name": "Kabupaten Karimun", + "state_id": 1807, + "state_code": "KR", + "country_id": 102, + "country_code": "ID", + "latitude": "0.80764000", + "longitude": "103.41911000" + }, + { + "id": "56450", + "name": "Kabupaten Kepulauan Anambas", + "state_id": 1807, + "state_code": "KR", + "country_id": 102, + "country_code": "ID", + "latitude": "3.00000000", + "longitude": "106.00000000" + }, + { + "id": "56495", + "name": "Kabupaten Lingga", + "state_id": 1807, + "state_code": "KR", + "country_id": 102, + "country_code": "ID", + "latitude": "0.20000000", + "longitude": "104.61667000" + }, + { + "id": "56554", + "name": "Kabupaten Natuna", + "state_id": 1807, + "state_code": "KR", + "country_id": 102, + "country_code": "ID", + "latitude": "4.71417000", + "longitude": "107.97639000" + }, + { + "id": "56716", + "name": "Kijang", + "state_id": 1807, + "state_code": "KR", + "country_id": 102, + "country_code": "ID", + "latitude": "0.90000000", + "longitude": "104.63333000" + }, + { + "id": "56735", + "name": "Kota Batam", + "state_id": 1807, + "state_code": "KR", + "country_id": 102, + "country_code": "ID", + "latitude": "1.05211000", + "longitude": "104.02851000" + }, + { + "id": "56808", + "name": "Kota Tanjung Pinang", + "state_id": 1807, + "state_code": "KR", + "country_id": 102, + "country_code": "ID", + "latitude": "0.91683000", + "longitude": "104.44329000" + }, + { + "id": "57018", + "name": "Tanjung Pinang", + "state_id": 1807, + "state_code": "KR", + "country_id": 102, + "country_code": "ID", + "latitude": "0.91667000", + "longitude": "104.45833000" + }, + { + "id": "56181", + "name": "Amuntai", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.41773000", + "longitude": "115.24941000" + }, + { + "id": "56203", + "name": "Banjarmasin", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.31987000", + "longitude": "114.59075000" + }, + { + "id": "56207", + "name": "Barabai", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.58333000", + "longitude": "115.38333000" + }, + { + "id": "56323", + "name": "Kabupaten Balangan", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.32314000", + "longitude": "115.62922000" + }, + { + "id": "56335", + "name": "Kabupaten Banjar", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.31667000", + "longitude": "115.08333000" + }, + { + "id": "56341", + "name": "Kabupaten Barito Kuala", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.08333000", + "longitude": "114.61667000" + }, + { + "id": "56420", + "name": "Kabupaten Hulu Sungai Selatan", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.75000000", + "longitude": "115.20000000" + }, + { + "id": "56421", + "name": "Kabupaten Hulu Sungai Tengah", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.61667000", + "longitude": "115.41667000" + }, + { + "id": "56422", + "name": "Kabupaten Hulu Sungai Utara", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.45000000", + "longitude": "115.13333000" + }, + { + "id": "56468", + "name": "Kabupaten Kota Baru", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.00000000", + "longitude": "116.00000000" + }, + { + "id": "56657", + "name": "Kabupaten Tabalong", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.88333000", + "longitude": "115.50000000" + }, + { + "id": "56663", + "name": "Kabupaten Tanah Bumbu", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.45413000", + "longitude": "115.70372000" + }, + { + "id": "56665", + "name": "Kabupaten Tanah Laut", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.88333000", + "longitude": "114.86667000" + }, + { + "id": "56673", + "name": "Kabupaten Tapin", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.91667000", + "longitude": "115.03333000" + }, + { + "id": "56733", + "name": "Kota Banjar Baru", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.41667000", + "longitude": "114.83333000" + }, + { + "id": "56734", + "name": "Kota Banjarmasin", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.32444000", + "longitude": "114.59102000" + }, + { + "id": "56864", + "name": "Martapura", + "state_id": 1819, + "state_code": "KS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.41090000", + "longitude": "114.86420000" + }, + { + "id": "56273", + "name": "Galesong", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.31660000", + "longitude": "119.36610000" + }, + { + "id": "56337", + "name": "Kabupaten Bantaeng", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.48333000", + "longitude": "119.98333000" + }, + { + "id": "56345", + "name": "Kabupaten Barru", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.43333000", + "longitude": "119.68333000" + }, + { + "id": "56374", + "name": "Kabupaten Bone", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.70000000", + "longitude": "120.13333000" + }, + { + "id": "56380", + "name": "Kabupaten Bulukumba", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.41667000", + "longitude": "120.23333000" + }, + { + "id": "56404", + "name": "Kabupaten Enrekang", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.50000000", + "longitude": "119.86667000" + }, + { + "id": "56412", + "name": "Kabupaten Gowa", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.31667000", + "longitude": "119.75000000" + }, + { + "id": "56432", + "name": "Kabupaten Jeneponto", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.63333000", + "longitude": "119.73333000" + }, + { + "id": "56501", + "name": "Kabupaten Luwu", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.55770000", + "longitude": "121.32420000" + }, + { + "id": "56502", + "name": "Kabupaten Luwu Timur", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.50957000", + "longitude": "120.39780000" + }, + { + "id": "56503", + "name": "Kabupaten Luwu Utara", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.60000000", + "longitude": "120.25000000" + }, + { + "id": "56530", + "name": "Kabupaten Maros", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.05000000", + "longitude": "119.71667000" + }, + { + "id": "56576", + "name": "Kabupaten Pangkajene Dan Kepulauan", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.78270000", + "longitude": "119.55060000" + }, + { + "id": "56594", + "name": "Kabupaten Pinrang", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.61667000", + "longitude": "119.60000000" + }, + { + "id": "56628", + "name": "Kabupaten Sidenreng Rappang", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.85000000", + "longitude": "119.96667000" + }, + { + "id": "56635", + "name": "Kabupaten Sinjai", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.21667000", + "longitude": "120.15000000" + }, + { + "id": "56640", + "name": "Kabupaten Soppeng", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.38420000", + "longitude": "119.89000000" + }, + { + "id": "56659", + "name": "Kabupaten Takalar", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.41667000", + "longitude": "119.51667000" + }, + { + "id": "56662", + "name": "Kabupaten Tana Toraja", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.00240000", + "longitude": "119.79655000" + }, + { + "id": "56684", + "name": "Kabupaten Toraja Utara", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.92738000", + "longitude": "119.79218000" + }, + { + "id": "56689", + "name": "Kabupaten Wajo", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.00000000", + "longitude": "120.16667000" + }, + { + "id": "56766", + "name": "Kota Makassar", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.15000000", + "longitude": "119.45000000" + }, + { + "id": "56779", + "name": "Kota Palopo", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.97841000", + "longitude": "120.11078000" + }, + { + "id": "56782", + "name": "Kota Parepare", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.03333000", + "longitude": "119.65000000" + }, + { + "id": "56855", + "name": "Makassar", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.14861000", + "longitude": "119.43194000" + }, + { + "id": "56863", + "name": "Maros", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.00600000", + "longitude": "119.57270000" + }, + { + "id": "56900", + "name": "Palopo", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.99250000", + "longitude": "120.19694000" + }, + { + "id": "56916", + "name": "Parepare", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.01350000", + "longitude": "119.62550000" + }, + { + "id": "56952", + "name": "Rantepao", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.97010000", + "longitude": "119.89780000" + }, + { + "id": "56963", + "name": "Selayar Islands Regency", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.81667000", + "longitude": "120.80000000" + }, + { + "id": "56967", + "name": "Sengkang", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.12790000", + "longitude": "120.02970000" + }, + { + "id": "56985", + "name": "Sinjai", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.12410000", + "longitude": "120.25300000" + }, + { + "id": "57052", + "name": "Watampone", + "state_id": 1795, + "state_code": "SN", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.53860000", + "longitude": "120.32790000" + }, + { + "id": "56212", + "name": "Baturaja", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.12891000", + "longitude": "104.16695000" + }, + { + "id": "56402", + "name": "Kabupaten Empat Lawang", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "3.22667000", + "longitude": "99.09256000" + }, + { + "id": "56542", + "name": "Kabupaten Muara Enim", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.23270000", + "longitude": "103.61410000" + }, + { + "id": "56548", + "name": "Kabupaten Musi Banyuasin", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.41667000", + "longitude": "103.75000000" + }, + { + "id": "56549", + "name": "Kabupaten Musi Rawas", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.08333000", + "longitude": "103.20000000" + }, + { + "id": "56550", + "name": "Kabupaten Musi Rawas Utara", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.48533000", + "longitude": "103.29346000" + }, + { + "id": "56563", + "name": "Kabupaten Ogan Ilir", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.43186000", + "longitude": "104.62727000" + }, + { + "id": "56564", + "name": "Kabupaten Ogan Komering Ilir", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.36667000", + "longitude": "105.36667000" + }, + { + "id": "56565", + "name": "Kabupaten Ogan Komering Ulu", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.13333000", + "longitude": "104.03333000" + }, + { + "id": "56566", + "name": "Kabupaten Ogan Komering Ulu Selatan", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.65728000", + "longitude": "104.00659000" + }, + { + "id": "56567", + "name": "Kabupaten Ogan Komering Ulu Timur", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.85679000", + "longitude": "104.75209000" + }, + { + "id": "56589", + "name": "Kabupaten Penukal Abab Lematang Ilir", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.21342000", + "longitude": "104.08722000" + }, + { + "id": "56763", + "name": "Kota Lubuklinggau", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.29308000", + "longitude": "102.85503000" + }, + { + "id": "56776", + "name": "Kota Pagar Alam", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.13055000", + "longitude": "103.26822000" + }, + { + "id": "56778", + "name": "Kota Palembang", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.00000000", + "longitude": "104.71667000" + }, + { + "id": "56789", + "name": "Kota Prabumulih", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.46202000", + "longitude": "104.22290000" + }, + { + "id": "56833", + "name": "Lahat", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.78514000", + "longitude": "103.54279000" + }, + { + "id": "56834", + "name": "Lahat Regency", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.78640000", + "longitude": "103.54280000" + }, + { + "id": "56847", + "name": "Lubuklinggau", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.29450000", + "longitude": "102.86140000" + }, + { + "id": "56895", + "name": "Pagar Alam", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.02506000", + "longitude": "103.24694000" + }, + { + "id": "56898", + "name": "Palembang", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.91673000", + "longitude": "104.74580000" + }, + { + "id": "56939", + "name": "Prabumulih", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.43447000", + "longitude": "104.23056000" + }, + { + "id": "57020", + "name": "Tanjungagung", + "state_id": 1816, + "state_code": "SS", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.93728000", + "longitude": "103.80465000" + }, + { + "id": "56372", + "name": "Kabupaten Bombana", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.62570000", + "longitude": "121.81641000" + }, + { + "id": "56386", + "name": "Kabupaten Buton", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.31667000", + "longitude": "122.91667000" + }, + { + "id": "56387", + "name": "Kabupaten Buton Selatan", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.56667000", + "longitude": "122.70000000" + }, + { + "id": "56388", + "name": "Kabupaten Buton Tengah", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.31667000", + "longitude": "122.33333000" + }, + { + "id": "56389", + "name": "Kabupaten Buton Utara", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.01457000", + "longitude": "122.93015000" + }, + { + "id": "56461", + "name": "Kabupaten Kolaka", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.08333000", + "longitude": "121.66667000" + }, + { + "id": "56462", + "name": "Kabupaten Kolaka Timur", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.01807000", + "longitude": "121.86172000" + }, + { + "id": "56463", + "name": "Kabupaten Kolaka Utara", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.10452000", + "longitude": "121.12427000" + }, + { + "id": "56464", + "name": "Kabupaten Konawe", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.91717000", + "longitude": "122.08823000" + }, + { + "id": "56465", + "name": "Kabupaten Konawe Kepulauan", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.11656000", + "longitude": "123.10181000" + }, + { + "id": "56466", + "name": "Kabupaten Konawe Selatan", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.19191000", + "longitude": "122.44854000" + }, + { + "id": "56467", + "name": "Kabupaten Konawe Utara", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.41552000", + "longitude": "121.99081000" + }, + { + "id": "56545", + "name": "Kabupaten Muna", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.96667000", + "longitude": "122.66667000" + }, + { + "id": "56546", + "name": "Kabupaten Muna Barat", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.83333000", + "longitude": "122.48333000" + }, + { + "id": "56703", + "name": "Katabu", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-4.93330000", + "longitude": "122.51670000" + }, + { + "id": "56712", + "name": "Kendari", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.97780000", + "longitude": "122.51507000" + }, + { + "id": "56737", + "name": "Kota Baubau", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.47700000", + "longitude": "122.61660000" + }, + { + "id": "56758", + "name": "Kota Kendari", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.98333000", + "longitude": "122.50000000" + }, + { + "id": "57049", + "name": "Wakatobi Regency", + "state_id": 1796, + "state_code": "SG", + "country_id": 102, + "country_code": "ID", + "latitude": "-5.31934000", + "longitude": "123.59480000" + }, + { + "id": "56192", + "name": "Bambanglipuro", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.95000000", + "longitude": "110.28333000" + }, + { + "id": "56204", + "name": "Bantul", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.88806000", + "longitude": "110.32889000" + }, + { + "id": "56264", + "name": "Depok", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.76250000", + "longitude": "110.43167000" + }, + { + "id": "56276", + "name": "Gamping Lor", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.79556000", + "longitude": "110.32639000" + }, + { + "id": "56282", + "name": "Godean", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.76972000", + "longitude": "110.29389000" + }, + { + "id": "56338", + "name": "Kabupaten Bantul", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.90000000", + "longitude": "110.36667000" + }, + { + "id": "56414", + "name": "Kabupaten Gunung Kidul", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.98333000", + "longitude": "110.61667000" + }, + { + "id": "56473", + "name": "Kabupaten Kulon Progo", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.64500000", + "longitude": "110.02694000" + }, + { + "id": "56637", + "name": "Kabupaten Sleman", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.68167000", + "longitude": "110.32333000" + }, + { + "id": "56702", + "name": "Kasihan", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.82694000", + "longitude": "110.32917000" + }, + { + "id": "56816", + "name": "Kota Yogyakarta", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.80000000", + "longitude": "110.37500000" + }, + { + "id": "56868", + "name": "Melati", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.73333000", + "longitude": "110.36667000" + }, + { + "id": "56908", + "name": "Pandak", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.91306000", + "longitude": "110.29361000" + }, + { + "id": "56943", + "name": "Pundong", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.95222000", + "longitude": "110.34861000" + }, + { + "id": "56972", + "name": "Sewon", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.87639000", + "longitude": "110.35889000" + }, + { + "id": "56988", + "name": "Sleman", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.71556000", + "longitude": "110.35556000" + }, + { + "id": "56998", + "name": "Srandakan", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.93861000", + "longitude": "110.25056000" + }, + { + "id": "57061", + "name": "Yogyakarta", + "state_id": 1829, + "state_code": "YO", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.80139000", + "longitude": "110.36472000" + }, + { + "id": "56182", + "name": "Arjawinangun", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.64528000", + "longitude": "108.41028000" + }, + { + "id": "56183", + "name": "Astanajapura", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.80170000", + "longitude": "108.63110000" + }, + { + "id": "56196", + "name": "Bandung", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.92222000", + "longitude": "107.60694000" + }, + { + "id": "56199", + "name": "Banjar", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.19550000", + "longitude": "107.43130000" + }, + { + "id": "56202", + "name": "Banjaran", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.04528000", + "longitude": "107.58778000" + }, + { + "id": "56215", + "name": "Bekasi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.23490000", + "longitude": "106.98960000" + }, + { + "id": "56226", + "name": "Bogor", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.59444000", + "longitude": "106.78917000" + }, + { + "id": "56237", + "name": "Caringin", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.70611000", + "longitude": "106.82139000" + }, + { + "id": "56240", + "name": "Ciamis", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.32570000", + "longitude": "108.35340000" + }, + { + "id": "56241", + "name": "Ciampea", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.55472000", + "longitude": "106.70083000" + }, + { + "id": "56242", + "name": "Cibinong", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.48167000", + "longitude": "106.85417000" + }, + { + "id": "56243", + "name": "Cicurug", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.78139000", + "longitude": "106.78250000" + }, + { + "id": "56244", + "name": "Cikampek", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.41972000", + "longitude": "107.45583000" + }, + { + "id": "56245", + "name": "Cikarang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.26111000", + "longitude": "107.15278000" + }, + { + "id": "56246", + "name": "Cikupa", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.23639000", + "longitude": "106.50833000" + }, + { + "id": "56247", + "name": "Cileungsir", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.39472000", + "longitude": "106.95917000" + }, + { + "id": "56248", + "name": "Cileunyi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.93889000", + "longitude": "107.75278000" + }, + { + "id": "56249", + "name": "Cimahi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.87222000", + "longitude": "107.54250000" + }, + { + "id": "56250", + "name": "Ciputat", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.23750000", + "longitude": "106.69556000" + }, + { + "id": "56251", + "name": "Ciranjang-hilir", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.82000000", + "longitude": "107.25722000" + }, + { + "id": "56252", + "name": "Cirebon", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.70630000", + "longitude": "108.55700000" + }, + { + "id": "56253", + "name": "Citeureup", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.48556000", + "longitude": "106.88194000" + }, + { + "id": "56265", + "name": "Depok", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.40000000", + "longitude": "106.81861000" + }, + { + "id": "56291", + "name": "Indramayu", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.32639000", + "longitude": "108.32000000" + }, + { + "id": "56296", + "name": "Jatibarang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.47472000", + "longitude": "108.31528000" + }, + { + "id": "56298", + "name": "Jatiwangi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.73361000", + "longitude": "108.26278000" + }, + { + "id": "56324", + "name": "Kabupaten Bandung", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.10000000", + "longitude": "107.60000000" + }, + { + "id": "56325", + "name": "Kabupaten Bandung Barat", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.83333000", + "longitude": "107.48333000" + }, + { + "id": "56349", + "name": "Kabupaten Bekasi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.24667000", + "longitude": "107.10833000" + }, + { + "id": "56366", + "name": "Kabupaten Bogor", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.58333000", + "longitude": "106.71667000" + }, + { + "id": "56390", + "name": "Kabupaten Ciamis", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.28333000", + "longitude": "108.41667000" + }, + { + "id": "56391", + "name": "Kabupaten Cianjur", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.77250000", + "longitude": "107.08306000" + }, + { + "id": "56393", + "name": "Kabupaten Cirebon", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.80000000", + "longitude": "108.56667000" + }, + { + "id": "56407", + "name": "Kabupaten Garut", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.38333000", + "longitude": "107.76667000" + }, + { + "id": "56426", + "name": "Kabupaten Indramayu", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.45000000", + "longitude": "108.16667000" + }, + { + "id": "56440", + "name": "Kabupaten Karawang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.26667000", + "longitude": "107.41667000" + }, + { + "id": "56474", + "name": "Kabupaten Kuningan", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.00000000", + "longitude": "108.55000000" + }, + { + "id": "56508", + "name": "Kabupaten Majalengka", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.81667000", + "longitude": "108.28333000" + }, + { + "id": "56575", + "name": "Kabupaten Pangandaran", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.66730000", + "longitude": "108.64037000" + }, + { + "id": "56606", + "name": "Kabupaten Purwakarta", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.58333000", + "longitude": "107.45000000" + }, + { + "id": "56644", + "name": "Kabupaten Subang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.50833000", + "longitude": "107.70250000" + }, + { + "id": "56645", + "name": "Kabupaten Sukabumi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.06667000", + "longitude": "106.70000000" + }, + { + "id": "56654", + "name": "Kabupaten Sumedang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.81667000", + "longitude": "107.98333000" + }, + { + "id": "56674", + "name": "Kabupaten Tasikmalaya", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.50000000", + "longitude": "108.13333000" + }, + { + "id": "56698", + "name": "Karangampel", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.46222000", + "longitude": "108.45194000" + }, + { + "id": "56700", + "name": "Karangsembung", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.84870000", + "longitude": "108.64220000" + }, + { + "id": "56704", + "name": "Kawalu", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.38170000", + "longitude": "108.20820000" + }, + { + "id": "56718", + "name": "Klangenan", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.70944000", + "longitude": "108.44000000" + }, + { + "id": "56731", + "name": "Kota Bandung", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.91750000", + "longitude": "107.62444000" + }, + { + "id": "56732", + "name": "Kota Banjar", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.36996000", + "longitude": "108.53209000" + }, + { + "id": "56738", + "name": "Kota Bekasi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.28333000", + "longitude": "106.98333000" + }, + { + "id": "56744", + "name": "Kota Bogor", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.59167000", + "longitude": "106.80000000" + }, + { + "id": "56748", + "name": "Kota Cimahi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.89167000", + "longitude": "107.55000000" + }, + { + "id": "56749", + "name": "Kota Cirebon", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.75000000", + "longitude": "108.55000000" + }, + { + "id": "56751", + "name": "Kota Depok", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.40000000", + "longitude": "106.81667000" + }, + { + "id": "56801", + "name": "Kota Sukabumi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.95000000", + "longitude": "106.93333000" + }, + { + "id": "56809", + "name": "Kota Tasikmalaya", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.35000000", + "longitude": "108.21667000" + }, + { + "id": "56819", + "name": "Kresek", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.13139000", + "longitude": "106.37972000" + }, + { + "id": "56825", + "name": "Kuningan", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.97583000", + "longitude": "108.48306000" + }, + { + "id": "56842", + "name": "Lembang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.81167000", + "longitude": "107.61750000" + }, + { + "id": "56852", + "name": "Majalengka", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.83611000", + "longitude": "108.22778000" + }, + { + "id": "56861", + "name": "Margahayukencana", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.97083000", + "longitude": "107.56750000" + }, + { + "id": "56886", + "name": "Ngawi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.40380000", + "longitude": "111.44610000" + }, + { + "id": "56892", + "name": "Padalarang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.83778000", + "longitude": "107.47278000" + }, + { + "id": "56899", + "name": "Palimanan", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.70694000", + "longitude": "108.42417000" + }, + { + "id": "56902", + "name": "Pamanukan", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.28417000", + "longitude": "107.81056000" + }, + { + "id": "56904", + "name": "Pameungpeuk", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.01833000", + "longitude": "107.60389000" + }, + { + "id": "56905", + "name": "Pamulang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.34278000", + "longitude": "106.73833000" + }, + { + "id": "56918", + "name": "Parung", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.42139000", + "longitude": "106.73306000" + }, + { + "id": "56919", + "name": "Pasarkemis", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.17028000", + "longitude": "106.53028000" + }, + { + "id": "56920", + "name": "Paseh", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.10260000", + "longitude": "107.76410000" + }, + { + "id": "56928", + "name": "Pelabuhanratu", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.98750000", + "longitude": "106.55139000" + }, + { + "id": "56934", + "name": "Plumbon", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.70500000", + "longitude": "108.47278000" + }, + { + "id": "56945", + "name": "Purwakarta", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.55694000", + "longitude": "107.44333000" + }, + { + "id": "56948", + "name": "Rajapolah", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.22100000", + "longitude": "108.18960000" + }, + { + "id": "56954", + "name": "Rengasdengklok", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.15917000", + "longitude": "107.29806000" + }, + { + "id": "56962", + "name": "Sawangan", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.40278000", + "longitude": "106.77444000" + }, + { + "id": "56968", + "name": "Sepatan", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.11889000", + "longitude": "106.57500000" + }, + { + "id": "56971", + "name": "Serpong", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.31694000", + "longitude": "106.66417000" + }, + { + "id": "56980", + "name": "Singaparna", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.35150000", + "longitude": "108.11100000" + }, + { + "id": "56994", + "name": "Soreang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.03306000", + "longitude": "107.51833000" + }, + { + "id": "57001", + "name": "Sukabumi", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.91806000", + "longitude": "106.92667000" + }, + { + "id": "57003", + "name": "Sumber", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.76028000", + "longitude": "108.48306000" + }, + { + "id": "57005", + "name": "Sumedang", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.85861000", + "longitude": "107.91639000" + }, + { + "id": "57006", + "name": "Sumedang Utara", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.85000000", + "longitude": "107.91667000" + }, + { + "id": "57025", + "name": "Tasikmalaya", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.32740000", + "longitude": "108.22070000" + }, + { + "id": "57030", + "name": "Teluknaga", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.09889000", + "longitude": "106.63806000" + }, + { + "id": "57050", + "name": "Wanaraja", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-7.17490000", + "longitude": "107.98080000" + }, + { + "id": "57056", + "name": "Weru", + "state_id": 1825, + "state_code": "JB", + "country_id": 102, + "country_code": "ID", + "latitude": "-6.71100000", + "longitude": "108.50370000" + }, + { + "id": "56221", + "name": "Bima", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.46006000", + "longitude": "118.72667000" + }, + { + "id": "56267", + "name": "Dompu", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.53650000", + "longitude": "118.46340000" + }, + { + "id": "56281", + "name": "Gili Air", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.35783000", + "longitude": "116.08240000" + }, + { + "id": "56360", + "name": "Kabupaten Bima", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.60000000", + "longitude": "118.61667000" + }, + { + "id": "56400", + "name": "Kabupaten Dompu", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.50940000", + "longitude": "118.48160000" + }, + { + "id": "56496", + "name": "Kabupaten Lombok Barat", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.69583000", + "longitude": "116.11667000" + }, + { + "id": "56497", + "name": "Kabupaten Lombok Tengah", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.70000000", + "longitude": "116.30000000" + }, + { + "id": "56498", + "name": "Kabupaten Lombok Timur", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.53333000", + "longitude": "116.53333000" + }, + { + "id": "56499", + "name": "Kabupaten Lombok Utara", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.35214000", + "longitude": "116.40152000" + }, + { + "id": "56652", + "name": "Kabupaten Sumbawa", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.74390000", + "longitude": "117.33240000" + }, + { + "id": "56653", + "name": "Kabupaten Sumbawa Barat", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.75159000", + "longitude": "116.92132000" + }, + { + "id": "56740", + "name": "Kota Bima", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.46728000", + "longitude": "118.75259000" + }, + { + "id": "56769", + "name": "Kota Mataram", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.58330000", + "longitude": "116.11670000" + }, + { + "id": "56831", + "name": "Labuan Lombok", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.50000000", + "longitude": "116.66667000" + }, + { + "id": "56843", + "name": "Lembar", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.72640000", + "longitude": "116.07440000" + }, + { + "id": "56865", + "name": "Mataram", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.58333000", + "longitude": "116.11667000" + }, + { + "id": "56931", + "name": "Pemenang", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.40401000", + "longitude": "116.10255000" + }, + { + "id": "56938", + "name": "Pototano", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.41260000", + "longitude": "117.48110000" + }, + { + "id": "56940", + "name": "Praya", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.70536000", + "longitude": "116.27036000" + }, + { + "id": "56966", + "name": "Senggigi", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.49190000", + "longitude": "116.04240000" + }, + { + "id": "57002", + "name": "Sumbawa Besar", + "state_id": 1814, + "state_code": "NB", + "country_id": 102, + "country_code": "ID", + "latitude": "-8.49317000", + "longitude": "117.42024000" + }, + { + "id": "56405", + "name": "Kabupaten Fakfak", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.92641000", + "longitude": "132.29608000" + }, + { + "id": "56435", + "name": "Kabupaten Kaimana", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.66093000", + "longitude": "133.77451000" + }, + { + "id": "56527", + "name": "Kabupaten Manokwari", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.90000000", + "longitude": "133.75000000" + }, + { + "id": "56528", + "name": "Kabupaten Manokwari Selatan", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.07980000", + "longitude": "133.96729000" + }, + { + "id": "56531", + "name": "Kabupaten Maybrat", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.21550000", + "longitude": "132.35092000" + }, + { + "id": "56608", + "name": "Kabupaten Raja Ampat", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.50000000", + "longitude": "130.00000000" + }, + { + "id": "56641", + "name": "Kabupaten Sorong", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.16667000", + "longitude": "131.50000000" + }, + { + "id": "56642", + "name": "Kabupaten Sorong Selatan", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.50495000", + "longitude": "132.28638000" + }, + { + "id": "56660", + "name": "Kabupaten Tambrauw", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.60515000", + "longitude": "132.48962000" + }, + { + "id": "56677", + "name": "Kabupaten Teluk Bintuni", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.88037000", + "longitude": "133.33105000" + }, + { + "id": "56678", + "name": "Kabupaten Teluk Wondama", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.70000000", + "longitude": "134.50000000" + }, + { + "id": "56799", + "name": "Kota Sorong", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.86507000", + "longitude": "131.25152000" + }, + { + "id": "56860", + "name": "Manokwari", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.86291000", + "longitude": "134.06402000" + }, + { + "id": "56995", + "name": "Sorong", + "state_id": 1799, + "state_code": "PB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.87956000", + "longitude": "131.26104000" + }, + { + "id": "56509", + "name": "Kabupaten Majene", + "state_id": 1817, + "state_code": "SR", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.15000000", + "longitude": "118.86667000" + }, + { + "id": "56517", + "name": "Kabupaten Mamasa", + "state_id": 1817, + "state_code": "SR", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.96492000", + "longitude": "119.30631000" + }, + { + "id": "56520", + "name": "Kabupaten Mamuju", + "state_id": 1817, + "state_code": "SR", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.50000000", + "longitude": "119.41667000" + }, + { + "id": "56521", + "name": "Kabupaten Mamuju Tengah", + "state_id": 1817, + "state_code": "SR", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.82120000", + "longitude": "119.26620000" + }, + { + "id": "56522", + "name": "Kabupaten Mamuju Utara", + "state_id": 1817, + "state_code": "SR", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.51639000", + "longitude": "119.42139000" + }, + { + "id": "56596", + "name": "Kabupaten Polewali Mandar", + "state_id": 1817, + "state_code": "SR", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.30000000", + "longitude": "119.16667000" + }, + { + "id": "56854", + "name": "Majene", + "state_id": 1817, + "state_code": "SR", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.54030000", + "longitude": "118.97070000" + }, + { + "id": "56857", + "name": "Mamuju", + "state_id": 1817, + "state_code": "SR", + "country_id": 102, + "country_code": "ID", + "latitude": "-2.68056000", + "longitude": "118.88611000" + }, + { + "id": "56935", + "name": "Polewali", + "state_id": 1817, + "state_code": "SR", + "country_id": 102, + "country_code": "ID", + "latitude": "-3.43240000", + "longitude": "119.34350000" + }, + { + "id": "56234", + "name": "Bukittinggi", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.30907000", + "longitude": "100.37055000" + }, + { + "id": "56318", + "name": "Kabupaten Agam", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.25000000", + "longitude": "100.16667000" + }, + { + "id": "56398", + "name": "Kabupaten Dharmasraya", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.05000000", + "longitude": "101.36700000" + }, + { + "id": "56452", + "name": "Kabupaten Kepulauan Mentawai", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "1.98917000", + "longitude": "99.51889000" + }, + { + "id": "56494", + "name": "Kabupaten Lima Puluh Kota", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.01680000", + "longitude": "100.58720000" + }, + { + "id": "56571", + "name": "Kabupaten Padang Pariaman", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.60000000", + "longitude": "100.28333000" + }, + { + "id": "56579", + "name": "Kabupaten Pasaman", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "0.42503000", + "longitude": "99.94606000" + }, + { + "id": "56580", + "name": "Kabupaten Pasaman Barat", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "0.28152000", + "longitude": "99.51965000" + }, + { + "id": "56592", + "name": "Kabupaten Pesisir Selatan", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.58333000", + "longitude": "100.85000000" + }, + { + "id": "56631", + "name": "Kabupaten Sijunjung", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.18270000", + "longitude": "101.60560000" + }, + { + "id": "56638", + "name": "Kabupaten Solok", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.96667000", + "longitude": "100.81667000" + }, + { + "id": "56639", + "name": "Kabupaten Solok Selatan", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-1.23333000", + "longitude": "101.41700000" + }, + { + "id": "56664", + "name": "Kabupaten Tanah Datar", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.45550000", + "longitude": "100.57710000" + }, + { + "id": "56746", + "name": "Kota Bukittinggi", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.27500000", + "longitude": "100.37500000" + }, + { + "id": "56773", + "name": "Kota Padang", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.98333000", + "longitude": "100.45000000" + }, + { + "id": "56774", + "name": "Kota Padang Panjang", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.45000000", + "longitude": "100.43333000" + }, + { + "id": "56783", + "name": "Kota Pariaman", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.62682000", + "longitude": "100.12047000" + }, + { + "id": "56785", + "name": "Kota Payakumbuh", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.23333000", + "longitude": "100.63333000" + }, + { + "id": "56794", + "name": "Kota Sawah Lunto", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.60000000", + "longitude": "100.75000000" + }, + { + "id": "56798", + "name": "Kota Solok", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.76667000", + "longitude": "100.61667000" + }, + { + "id": "56893", + "name": "Padang", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.94924000", + "longitude": "100.35427000" + }, + { + "id": "56917", + "name": "Pariaman", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.61898000", + "longitude": "100.11997000" + }, + { + "id": "56923", + "name": "Payakumbuh", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.21590000", + "longitude": "100.63340000" + }, + { + "id": "56977", + "name": "Sijunjung", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.70050000", + "longitude": "100.97740000" + }, + { + "id": "56993", + "name": "Solok", + "state_id": 1828, + "state_code": "SB", + "country_id": 102, + "country_code": "ID", + "latitude": "-0.80060000", + "longitude": "100.65710000" + }, + { + "id": "134635", + "name": "Fardis", + "state_id": 3929, + "state_code": "32", + "country_id": 103, + "country_code": "IR", + "latitude": "35.72318000", + "longitude": "50.97865000" + }, + { + "id": "134664", + "name": "Karaj", + "state_id": 3929, + "state_code": "32", + "country_id": 103, + "country_code": "IR", + "latitude": "35.83266000", + "longitude": "50.99155000" + }, + { + "id": "134710", + "name": "Naz̧arābād", + "state_id": 3929, + "state_code": "32", + "country_id": 103, + "country_code": "IR", + "latitude": "35.95411000", + "longitude": "50.60607000" + }, + { + "id": "135096", + "name": "Shahrestān-e Ţāleqān", + "state_id": 3929, + "state_code": "32", + "country_id": 103, + "country_code": "IR", + "latitude": "36.20528000", + "longitude": "50.77610000" + }, + { + "id": "134858", + "name": "Shahrestān-e Eshtehārd", + "state_id": 3929, + "state_code": "32", + "country_id": 103, + "country_code": "IR", + "latitude": "35.72813000", + "longitude": "50.41422000" + }, + { + "id": "134978", + "name": "Shahrestān-e Naz̧arābād", + "state_id": 3929, + "state_code": "32", + "country_id": 103, + "country_code": "IR", + "latitude": "35.91366000", + "longitude": "50.51685000" + }, + { + "id": "135051", + "name": "Shahrestān-e Sāvojbolāgh", + "state_id": 3929, + "state_code": "32", + "country_id": 103, + "country_code": "IR", + "latitude": "36.00000000", + "longitude": "50.83333000" + }, + { + "id": "134568", + "name": "Ardabīl", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "38.24980000", + "longitude": "48.29330000" + }, + { + "id": "134602", + "name": "Bīleh Savār", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "39.37961000", + "longitude": "48.35463000" + }, + { + "id": "134669", + "name": "Khalkhāl", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "37.61837000", + "longitude": "48.52928000" + }, + { + "id": "134722", + "name": "Omīdcheh", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "38.28667000", + "longitude": "48.14139000" + }, + { + "id": "134731", + "name": "Pārsābād", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "39.64820000", + "longitude": "47.91740000" + }, + { + "id": "134792", + "name": "Shahrestān-e Ardabīl", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "38.25000000", + "longitude": "48.30000000" + }, + { + "id": "134826", + "name": "Shahrestān-e Bīleh Savār", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "39.36667000", + "longitude": "47.96667000" + }, + { + "id": "134882", + "name": "Shahrestān-e Germī", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "39.00000000", + "longitude": "47.95000000" + }, + { + "id": "134911", + "name": "Shahrestān-e Khalkhāl", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "37.40604000", + "longitude": "48.54466000" + }, + { + "id": "134932", + "name": "Shahrestān-e Kows̄ar", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "37.72142000", + "longitude": "48.26985000" + }, + { + "id": "134964", + "name": "Shahrestān-e Meshgīn Shahr", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "38.43333000", + "longitude": "47.75000000" + }, + { + "id": "134976", + "name": "Shahrestān-e Namīn", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "38.38333000", + "longitude": "48.51667000" + }, + { + "id": "134986", + "name": "Shahrestān-e Nīr", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "38.00000000", + "longitude": "48.08333000" + }, + { + "id": "134994", + "name": "Shahrestān-e Pārsābād", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "39.58333000", + "longitude": "47.91667000" + }, + { + "id": "135031", + "name": "Shahrestān-e Sar‘eyn", + "state_id": 3934, + "state_code": "03", + "country_id": 103, + "country_code": "IR", + "latitude": "38.18333000", + "longitude": "47.98333000" + }, + { + "id": "134560", + "name": "Ahram", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "28.88260000", + "longitude": "51.27460000" + }, + { + "id": "134579", + "name": "Bandar-e Genāveh", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "29.57910000", + "longitude": "50.51700000" + }, + { + "id": "134589", + "name": "Borāzjān", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "29.26990000", + "longitude": "51.21880000" + }, + { + "id": "134594", + "name": "Bushehr", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "28.96887000", + "longitude": "50.83657000" + }, + { + "id": "134621", + "name": "Deylam", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "30.02286000", + "longitude": "50.35595000" + }, + { + "id": "134678", + "name": "Khārk", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "29.26139000", + "longitude": "50.33056000" + }, + { + "id": "135103", + "name": "Shahrestān-e ‘Asalūyeh", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "27.45000000", + "longitude": "52.73333000" + }, + { + "id": "134830", + "name": "Shahrestān-e Būshehr", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "29.14186000", + "longitude": "50.98160000" + }, + { + "id": "134845", + "name": "Shahrestān-e Dashtī", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "28.48685000", + "longitude": "51.56182000" + }, + { + "id": "134844", + "name": "Shahrestān-e Dashtestān", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "29.28333000", + "longitude": "51.25000000" + }, + { + "id": "134881", + "name": "Shahrestān-e Genāveh", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "29.64574000", + "longitude": "50.64699000" + }, + { + "id": "134906", + "name": "Shahrestān-e Kangān", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "27.71330000", + "longitude": "52.26862000" + }, + { + "id": "135059", + "name": "Shahrestān-e Tangestān", + "state_id": 3932, + "state_code": "06", + "country_id": 103, + "country_code": "IR", + "latitude": "28.88333000", + "longitude": "51.26667000" + }, + { + "id": "134586", + "name": "Ben", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.53556000", + "longitude": "50.75201000" + }, + { + "id": "134590", + "name": "Borūjen", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "31.96523000", + "longitude": "51.28730000" + }, + { + "id": "134607", + "name": "Chelgard", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.46720000", + "longitude": "50.12229000" + }, + { + "id": "134637", + "name": "Farrokh Shahr", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.27174000", + "longitude": "50.98008000" + }, + { + "id": "134641", + "name": "Fārsān", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.25694000", + "longitude": "50.56095000" + }, + { + "id": "134764", + "name": "Saman", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.44980000", + "longitude": "50.91379000" + }, + { + "id": "134777", + "name": "Shahr-e Kord", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.32612000", + "longitude": "50.85720000" + }, + { + "id": "134783", + "name": "Shahrekord", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.31667000", + "longitude": "50.80000000" + }, + { + "id": "134813", + "name": "Shahrestān-e Borūjen", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "31.90000000", + "longitude": "51.20000000" + }, + { + "id": "134871", + "name": "Shahrestān-e Fārsān", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.25779000", + "longitude": "50.56235000" + }, + { + "id": "134937", + "name": "Shahrestān-e Kīār", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.00000000", + "longitude": "50.76667000" + }, + { + "id": "134940", + "name": "Shahrestān-e Kūhrang", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "32.41667000", + "longitude": "50.00000000" + }, + { + "id": "134943", + "name": "Shahrestān-e Lordegān", + "state_id": 3921, + "state_code": "08", + "country_id": 103, + "country_code": "IR", + "latitude": "31.43333000", + "longitude": "50.83333000" + }, + { + "id": "134559", + "name": "Ahar", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "38.47740000", + "longitude": "47.06990000" + }, + { + "id": "135160", + "name": "‘Ajab Shīr", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.47760000", + "longitude": "45.89430000" + }, + { + "id": "134588", + "name": "Bonāb", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.34040000", + "longitude": "46.05610000" + }, + { + "id": "134654", + "name": "Hashtrūd", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.47790000", + "longitude": "47.05080000" + }, + { + "id": "134695", + "name": "Marand", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "38.43290000", + "longitude": "45.77490000" + }, + { + "id": "134771", + "name": "Sarāb", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.94080000", + "longitude": "47.53670000" + }, + { + "id": "135089", + "name": "Shahrestān-e Āz̄arshahr", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.75001000", + "longitude": "45.83334000" + }, + { + "id": "135100", + "name": "Shahrestān-e ‘Ajab Shīr", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.50002000", + "longitude": "45.83342000" + }, + { + "id": "134811", + "name": "Shahrestān-e Bonāb", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.33338000", + "longitude": "46.00009000" + }, + { + "id": "134815", + "name": "Shahrestān-e Bostānābād", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.83333000", + "longitude": "46.83333000" + }, + { + "id": "134838", + "name": "Shahrestān-e Chārāvīmāq", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.10012000", + "longitude": "47.06680000" + }, + { + "id": "134892", + "name": "Shahrestān-e Hashtrūd", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.46670000", + "longitude": "46.91680000" + }, + { + "id": "134894", + "name": "Shahrestān-e Herīs", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "38.23058000", + "longitude": "46.84011000" + }, + { + "id": "134898", + "name": "Shahrestān-e Jolfā", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "38.83343000", + "longitude": "45.91680000" + }, + { + "id": "134915", + "name": "Shahrestān-e Khodā Āfarīn", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "39.06667000", + "longitude": "46.95000000" + }, + { + "id": "134951", + "name": "Shahrestān-e Malekān", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.13338000", + "longitude": "46.21667000" + }, + { + "id": "134954", + "name": "Shahrestān-e Marāgheh", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.38061000", + "longitude": "46.39372000" + }, + { + "id": "134974", + "name": "Shahrestān-e Mīāneh", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.41667000", + "longitude": "47.70000000" + }, + { + "id": "134992", + "name": "Shahrestān-e Oskū", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.95005000", + "longitude": "45.88340000" + }, + { + "id": "135028", + "name": "Shahrestān-e Sarāb", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "37.98340000", + "longitude": "47.46679000" + }, + { + "id": "135057", + "name": "Shahrestān-e Tabrīz", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "38.08333000", + "longitude": "46.28333000" + }, + { + "id": "135068", + "name": "Shahrestān-e Varzaqān", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "38.59492000", + "longitude": "46.46397000" + }, + { + "id": "135125", + "name": "Tabriz", + "state_id": 3944, + "state_code": "01", + "country_id": 103, + "country_code": "IR", + "latitude": "38.08000000", + "longitude": "46.29190000" + }, + { + "id": "134562", + "name": "Akbarābād", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.24640000", + "longitude": "52.77930000" + }, + { + "id": "135151", + "name": "Ābādeh", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "31.16080000", + "longitude": "52.65060000" + }, + { + "id": "134626", + "name": "Dārāb", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "28.75194000", + "longitude": "54.54444000" + }, + { + "id": "134638", + "name": "Fasā", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "28.93830000", + "longitude": "53.64820000" + }, + { + "id": "134642", + "name": "Fīrūzābād", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "28.84380000", + "longitude": "52.57070000" + }, + { + "id": "134644", + "name": "Gerāsh", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "27.66966000", + "longitude": "54.13586000" + }, + { + "id": "134684", + "name": "Kāzerūn", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.61919000", + "longitude": "51.65350000" + }, + { + "id": "134694", + "name": "Mamasanī", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.03333000", + "longitude": "51.38333000" + }, + { + "id": "134696", + "name": "Marvdasht", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.08333000", + "longitude": "52.66667000" + }, + { + "id": "134704", + "name": "Mohr", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "27.55520000", + "longitude": "52.88360000" + }, + { + "id": "134721", + "name": "Nūrābād", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.11405000", + "longitude": "51.52174000" + }, + { + "id": "134713", + "name": "Neyrīz", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.19880000", + "longitude": "54.32780000" + }, + { + "id": "134732", + "name": "Pāsārgād", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.20194000", + "longitude": "53.18000000" + }, + { + "id": "134755", + "name": "Rostam", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.40000000", + "longitude": "51.41667000" + }, + { + "id": "134778", + "name": "Shahr-e Qadīm-e Lār", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "27.68336000", + "longitude": "54.34172000" + }, + { + "id": "134795", + "name": "Shahrestān-e Arsanjān", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.80000000", + "longitude": "53.41667000" + }, + { + "id": "135079", + "name": "Shahrestān-e Ābādeh", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "31.25000000", + "longitude": "52.50000000" + }, + { + "id": "134807", + "name": "Shahrestān-e Bavānāt", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.33333000", + "longitude": "53.66667000" + }, + { + "id": "134853", + "name": "Shahrestān-e Dārāb", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "28.56667000", + "longitude": "54.95000000" + }, + { + "id": "134856", + "name": "Shahrestān-e Eqlīd", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.70000000", + "longitude": "52.40000000" + }, + { + "id": "134861", + "name": "Shahrestān-e Estahbān", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.11667000", + "longitude": "54.00000000" + }, + { + "id": "134868", + "name": "Shahrestān-e Farāshband", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "28.75000000", + "longitude": "52.25000000" + }, + { + "id": "134870", + "name": "Shahrestān-e Fasā", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "28.96667000", + "longitude": "53.76667000" + }, + { + "id": "134876", + "name": "Shahrestān-e Fīrūzābād", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "28.91667000", + "longitude": "52.56667000" + }, + { + "id": "134883", + "name": "Shahrestān-e Gerāsh", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "27.65000000", + "longitude": "53.65000000" + }, + { + "id": "134908", + "name": "Shahrestān-e Kavār", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.21667000", + "longitude": "52.73333000" + }, + { + "id": "134936", + "name": "Shahrestān-e Kāzerūn", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.50000000", + "longitude": "51.78333000" + }, + { + "id": "134914", + "name": "Shahrestān-e Kherāmeh", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.50000000", + "longitude": "53.25000000" + }, + { + "id": "134919", + "name": "Shahrestān-e Khorrambīd", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.50000000", + "longitude": "53.08333000" + }, + { + "id": "134946", + "name": "Shahrestān-e Lāmerd", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "27.36667000", + "longitude": "53.38333000" + }, + { + "id": "134947", + "name": "Shahrestān-e Lārestān", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "27.75000000", + "longitude": "54.45000000" + }, + { + "id": "134982", + "name": "Shahrestān-e Neyrīz", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.33333000", + "longitude": "54.33333000" + }, + { + "id": "134996", + "name": "Shahrestān-e Pāsārgād", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.13333000", + "longitude": "53.15000000" + }, + { + "id": "135005", + "name": "Shahrestān-e Qīr va Kārzīn", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "28.31667000", + "longitude": "52.90000000" + }, + { + "id": "135026", + "name": "Shahrestān-e Sarvestān", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.21667000", + "longitude": "53.13333000" + }, + { + "id": "135035", + "name": "Shahrestān-e Sepīdān", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "30.15000000", + "longitude": "52.10000000" + }, + { + "id": "135046", + "name": "Shahrestān-e Shīrāz", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.58333000", + "longitude": "52.50000000" + }, + { + "id": "135073", + "name": "Shahrestān-e Zarrīn Dasht", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "28.30000000", + "longitude": "54.46667000" + }, + { + "id": "135108", + "name": "Shiraz", + "state_id": 3939, + "state_code": "14", + "country_id": 103, + "country_code": "IR", + "latitude": "29.61031000", + "longitude": "52.53113000" + }, + { + "id": "135154", + "name": "Āstāneh-ye Ashrafīyeh", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.26318000", + "longitude": "49.94325000" + }, + { + "id": "135155", + "name": "Āstārā", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "38.42910000", + "longitude": "48.87200000" + }, + { + "id": "134578", + "name": "Bandar-e Anzalī", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.47318000", + "longitude": "49.45785000" + }, + { + "id": "134643", + "name": "Fūman", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.22400000", + "longitude": "49.31250000" + }, + { + "id": "134653", + "name": "Hashtpar", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.79658000", + "longitude": "48.90521000" + }, + { + "id": "134689", + "name": "Langarūd", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.19548000", + "longitude": "50.15263000" + }, + { + "id": "134730", + "name": "Pādegān-e Manjīl", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "36.74150000", + "longitude": "49.41610000" + }, + { + "id": "134749", + "name": "Rasht", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.27611000", + "longitude": "49.58862000" + }, + { + "id": "134761", + "name": "Rūdsar", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.13696000", + "longitude": "50.29174000" + }, + { + "id": "134753", + "name": "Reẕvānshahr", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.54976000", + "longitude": "49.13703000" + }, + { + "id": "135095", + "name": "Shahrestān-e Şowme‘eh Sarā", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.33333000", + "longitude": "49.30000000" + }, + { + "id": "135086", + "name": "Shahrestān-e Āstāneh-ye Ashrafīyeh", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.31667000", + "longitude": "49.96667000" + }, + { + "id": "135087", + "name": "Shahrestān-e Āstārā", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "38.33333000", + "longitude": "48.76667000" + }, + { + "id": "134803", + "name": "Shahrestān-e Bandar-e Anzalī", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.45000000", + "longitude": "49.36667000" + }, + { + "id": "134877", + "name": "Shahrestān-e Fūman", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.16667000", + "longitude": "49.18333000" + }, + { + "id": "134941", + "name": "Shahrestān-e Langarūd", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.15000000", + "longitude": "50.11667000" + }, + { + "id": "134944", + "name": "Shahrestān-e Lāhījān", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.21667000", + "longitude": "50.01667000" + }, + { + "id": "134969", + "name": "Shahrestān-e Māsāl", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.35000000", + "longitude": "48.98333000" + }, + { + "id": "135017", + "name": "Shahrestān-e Rūdbār", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "36.80000000", + "longitude": "49.60000000" + }, + { + "id": "135019", + "name": "Shahrestān-e Rūdsar", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "36.86667000", + "longitude": "50.30000000" + }, + { + "id": "135009", + "name": "Shahrestān-e Reẕvānshahr", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.53333000", + "longitude": "48.95000000" + }, + { + "id": "135055", + "name": "Shahrestān-e Sīāhkal", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "36.93333000", + "longitude": "49.90000000" + }, + { + "id": "135065", + "name": "Shahrestān-e Tālesh", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.90000000", + "longitude": "48.78333000" + }, + { + "id": "135146", + "name": "Ziabar (Gaskar)", + "state_id": 3920, + "state_code": "19", + "country_id": 103, + "country_code": "IR", + "latitude": "37.42610000", + "longitude": "49.24590000" + }, + { + "id": "135153", + "name": "Āq Qāyeh", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.27472000", + "longitude": "55.15889000" + }, + { + "id": "135156", + "name": "Āzādshahr", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.08641000", + "longitude": "55.17222000" + }, + { + "id": "134646", + "name": "Gonbad-e Kāvūs", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.25004000", + "longitude": "55.16721000" + }, + { + "id": "134648", + "name": "Gorgān", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "36.84270000", + "longitude": "54.44391000" + }, + { + "id": "134662", + "name": "Kalāleh", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.37899000", + "longitude": "55.49300000" + }, + { + "id": "134738", + "name": "Qarnābād", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "36.82203000", + "longitude": "54.59222000" + }, + { + "id": "135082", + "name": "Shahrestān-e Āq Qalā", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.16667000", + "longitude": "54.58333000" + }, + { + "id": "135088", + "name": "Shahrestān-e Āzādshahr", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "36.96667000", + "longitude": "55.31667000" + }, + { + "id": "135101", + "name": "Shahrestān-e ‘Alīābād", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "36.83333000", + "longitude": "54.88333000" + }, + { + "id": "134889", + "name": "Shahrestān-e Gālīkesh", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.30000000", + "longitude": "55.65000000" + }, + { + "id": "134885", + "name": "Shahrestān-e Gomīshān", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.15000000", + "longitude": "54.15000000" + }, + { + "id": "134886", + "name": "Shahrestān-e Gonbad-e Kāvūs", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.50000000", + "longitude": "55.00000000" + }, + { + "id": "134888", + "name": "Shahrestān-e Gorgān", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "36.73333000", + "longitude": "54.51667000" + }, + { + "id": "134904", + "name": "Shahrestān-e Kalāleh", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.53333000", + "longitude": "55.53333000" + }, + { + "id": "134931", + "name": "Shahrestān-e Kordkūy", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "36.68333000", + "longitude": "54.20000000" + }, + { + "id": "134955", + "name": "Shahrestān-e Marāveh Tappeh", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.85000000", + "longitude": "55.91667000" + }, + { + "id": "134971", + "name": "Shahrestān-e Mīnūdasht", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "37.11667000", + "longitude": "55.45000000" + }, + { + "id": "135016", + "name": "Shahrestān-e Rāmīān", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "36.93333000", + "longitude": "55.08333000" + }, + { + "id": "135133", + "name": "Torkaman", + "state_id": 3933, + "state_code": "27", + "country_id": 103, + "country_code": "IR", + "latitude": "36.90000000", + "longitude": "54.16667000" + }, + { + "id": "134576", + "name": "Bandar Abbas", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "27.18650000", + "longitude": "56.28080000" + }, + { + "id": "134577", + "name": "Bandar Lengeh", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "26.78333000", + "longitude": "54.65000000" + }, + { + "id": "134580", + "name": "Bandar-e Lengeh", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "26.55792000", + "longitude": "54.88067000" + }, + { + "id": "134583", + "name": "Bastak", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "27.20000000", + "longitude": "54.36667000" + }, + { + "id": "134685", + "name": "Kīsh", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "26.55778000", + "longitude": "54.01944000" + }, + { + "id": "134705", + "name": "Mīnāb", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "27.13104000", + "longitude": "57.08716000" + }, + { + "id": "134742", + "name": "Qeshm", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "26.78333000", + "longitude": "55.86667000" + }, + { + "id": "134786", + "name": "Shahrestān-e Abū Mūsá", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "26.05474000", + "longitude": "55.16243000" + }, + { + "id": "135098", + "name": "Shahrestān-e Ḩājjīābād", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "28.33333000", + "longitude": "55.83333000" + }, + { + "id": "134802", + "name": "Shahrestān-e Bandar ‘Abbās", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "27.55000000", + "longitude": "56.28333000" + }, + { + "id": "134806", + "name": "Shahrestān-e Bashāgard", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "26.45000000", + "longitude": "58.08333000" + }, + { + "id": "134900", + "name": "Shahrestān-e Jāsk", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "25.88333000", + "longitude": "58.20000000" + }, + { + "id": "134913", + "name": "Shahrestān-e Khamīr", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "27.26667000", + "longitude": "55.55000000" + }, + { + "id": "134970", + "name": "Shahrestān-e Mīnāb", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "26.93333000", + "longitude": "57.28333000" + }, + { + "id": "134995", + "name": "Shahrestān-e Pārsīān", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "27.16667000", + "longitude": "53.26667000" + }, + { + "id": "135020", + "name": "Shahrestān-e Rūdān", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "27.53333000", + "longitude": "57.11667000" + }, + { + "id": "135054", + "name": "Shahrestān-e Sīrīk", + "state_id": 3937, + "state_code": "23", + "country_id": 103, + "country_code": "IR", + "latitude": "26.50000000", + "longitude": "57.18333000" + }, + { + "id": "135157", + "name": "Īlām", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.63740000", + "longitude": "46.42270000" + }, + { + "id": "135149", + "name": "Ābdānān", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "32.99260000", + "longitude": "47.41980000" + }, + { + "id": "134574", + "name": "Badreh", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.00000000", + "longitude": "47.25000000" + }, + { + "id": "134606", + "name": "Chardavol County", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.75910000", + "longitude": "46.56980000" + }, + { + "id": "134614", + "name": "Darreh Shahr", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.14447000", + "longitude": "47.37990000" + }, + { + "id": "134615", + "name": "Darrehshahr", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.13333000", + "longitude": "47.36667000" + }, + { + "id": "134617", + "name": "Dehlorān", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "32.69410000", + "longitude": "47.26790000" + }, + { + "id": "134700", + "name": "Mehrān", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.12220000", + "longitude": "46.16460000" + }, + { + "id": "135091", + "name": "Shahrestān-e Īlām", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.68333000", + "longitude": "46.25000000" + }, + { + "id": "135078", + "name": "Shahrestān-e Ābdānān", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "32.88333000", + "longitude": "47.50000000" + }, + { + "id": "134847", + "name": "Shahrestān-e Dehlorān", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "32.68333000", + "longitude": "47.26667000" + }, + { + "id": "134862", + "name": "Shahrestān-e Eyvān", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.90000000", + "longitude": "46.16667000" + }, + { + "id": "134950", + "name": "Shahrestān-e Malekshāhī", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.30000000", + "longitude": "46.55000000" + }, + { + "id": "134962", + "name": "Shahrestān-e Mehrān", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.28333000", + "longitude": "46.16667000" + }, + { + "id": "135117", + "name": "Sirvan", + "state_id": 3918, + "state_code": "05", + "country_id": 103, + "country_code": "IR", + "latitude": "33.75460000", + "longitude": "46.56651000" + }, + { + "id": "134557", + "name": "Abrīsham", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.55613000", + "longitude": "51.57325000" + }, + { + "id": "134570", + "name": "Ardestān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.37610000", + "longitude": "52.36940000" + }, + { + "id": "134593", + "name": "Buin va Miandasht", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.07241000", + "longitude": "50.14641000" + }, + { + "id": "134609", + "name": "Chādegān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.76825000", + "longitude": "50.62873000" + }, + { + "id": "134627", + "name": "Dārān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.98871000", + "longitude": "50.41267000" + }, + { + "id": "134618", + "name": "Dehāqān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "31.94004000", + "longitude": "51.64786000" + }, + { + "id": "134623", + "name": "Dorcheh Pīāz", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.61528000", + "longitude": "51.55556000" + }, + { + "id": "134624", + "name": "Dowlatābād", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.79978000", + "longitude": "51.69553000" + }, + { + "id": "134632", + "name": "Falāvarjān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.55530000", + "longitude": "51.50973000" + }, + { + "id": "134636", + "name": "Fareydūnshahr", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.94098000", + "longitude": "50.12100000" + }, + { + "id": "134639", + "name": "Fereydan", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.10000000", + "longitude": "50.26667000" + }, + { + "id": "134645", + "name": "Golpāyegān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.45370000", + "longitude": "50.28836000" + }, + { + "id": "134656", + "name": "Isfahan", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.65246000", + "longitude": "51.67462000" + }, + { + "id": "134666", + "name": "Kelīshād va Sūdarjān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.55118000", + "longitude": "51.52758000" + }, + { + "id": "134680", + "name": "Khūr", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.77512000", + "longitude": "55.08329000" + }, + { + "id": "134672", + "name": "Khomeynī Shahr", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.68560000", + "longitude": "51.53609000" + }, + { + "id": "134677", + "name": "Khvānsār", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.22052000", + "longitude": "50.31497000" + }, + { + "id": "134703", + "name": "Mobārakeh", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.34651000", + "longitude": "51.50449000" + }, + { + "id": "134711", + "name": "Naţanz", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.51118000", + "longitude": "51.91808000" + }, + { + "id": "134707", + "name": "Najafābād", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.63440000", + "longitude": "51.36680000" + }, + { + "id": "134718", + "name": "Nā’īn", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.86006000", + "longitude": "53.08749000" + }, + { + "id": "134735", + "name": "Qahderījān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.57670000", + "longitude": "51.45500000" + }, + { + "id": "134751", + "name": "Rehnān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.68325000", + "longitude": "51.60158000" + }, + { + "id": "134775", + "name": "Semīrom", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "31.41667000", + "longitude": "51.56667000" + }, + { + "id": "135104", + "name": "Shahreẕā", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.00890000", + "longitude": "51.86680000" + }, + { + "id": "134794", + "name": "Shahrestān-e Ardestān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.45000000", + "longitude": "52.43333000" + }, + { + "id": "135084", + "name": "Shahrestān-e Ārān va Bīdgol", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "34.10000000", + "longitude": "51.90000000" + }, + { + "id": "134812", + "name": "Shahrestān-e Borkhvār", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.98333000", + "longitude": "51.76667000" + }, + { + "id": "134835", + "name": "Shahrestān-e Chādegān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.75000000", + "longitude": "50.50000000" + }, + { + "id": "134848", + "name": "Shahrestān-e Dehāqān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "31.98333000", + "longitude": "51.60000000" + }, + { + "id": "134863", + "name": "Shahrestān-e Eşfahān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.26667000", + "longitude": "52.45000000" + }, + { + "id": "134864", + "name": "Shahrestān-e Falāvarjān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.50000000", + "longitude": "51.50000000" + }, + { + "id": "134867", + "name": "Shahrestān-e Fareydūnshahr", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.86667000", + "longitude": "49.98333000" + }, + { + "id": "134884", + "name": "Shahrestān-e Golpāyegān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.50000000", + "longitude": "50.33333000" + }, + { + "id": "134935", + "name": "Shahrestān-e Kāshān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.88333000", + "longitude": "51.28333000" + }, + { + "id": "134926", + "name": "Shahrestān-e Khūr va Bīābānak", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.76667000", + "longitude": "54.88333000" + }, + { + "id": "134917", + "name": "Shahrestān-e Khomeynī Shahr", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.65000000", + "longitude": "51.50000000" + }, + { + "id": "134923", + "name": "Shahrestān-e Khvānsār", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.25000000", + "longitude": "50.33333000" + }, + { + "id": "134942", + "name": "Shahrestān-e Lenjān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.36667000", + "longitude": "51.20000000" + }, + { + "id": "134965", + "name": "Shahrestān-e Mobārakeh", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.26667000", + "longitude": "51.48333000" + }, + { + "id": "134979", + "name": "Shahrestān-e Naţanz", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.55000000", + "longitude": "51.86667000" + }, + { + "id": "134975", + "name": "Shahrestān-e Najafābād", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.93333000", + "longitude": "51.11667000" + }, + { + "id": "134984", + "name": "Shahrestān-e Nā’īn", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.46664000", + "longitude": "53.71674000" + }, + { + "id": "135034", + "name": "Shahrestān-e Semīrom", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "31.30000000", + "longitude": "51.53333000" + }, + { + "id": "135037", + "name": "Shahrestān-e Shahreẕā", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "31.90000000", + "longitude": "51.83333000" + }, + { + "id": "135043", + "name": "Shahrestān-e Shāhīn Shahr va Meymeh", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "33.28333000", + "longitude": "51.20000000" + }, + { + "id": "135067", + "name": "Shahrestān-e Tīrān va Karvan", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.83333000", + "longitude": "50.91667000" + }, + { + "id": "135111", + "name": "Shāhīn Shahr", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.85788000", + "longitude": "51.55290000" + }, + { + "id": "135136", + "name": "Tīrān", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.70260000", + "longitude": "51.15370000" + }, + { + "id": "135144", + "name": "Zarrīn Shahr", + "state_id": 3923, + "state_code": "04", + "country_id": 103, + "country_code": "IR", + "latitude": "32.38970000", + "longitude": "51.37660000" + }, + { + "id": "134575", + "name": "Bam", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.06667000", + "longitude": "58.23333000" + }, + { + "id": "134582", + "name": "Bardsīr", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.92266000", + "longitude": "56.57433000" + }, + { + "id": "134598", + "name": "Bāft", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.23310000", + "longitude": "56.60220000" + }, + { + "id": "134686", + "name": "Kūh Sefīd", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.27620000", + "longitude": "56.80140000" + }, + { + "id": "134667", + "name": "Kerman", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "30.28321000", + "longitude": "57.07879000" + }, + { + "id": "134748", + "name": "Rafsanjān", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "30.40670000", + "longitude": "55.99390000" + }, + { + "id": "134759", + "name": "Rāvar", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "31.26562000", + "longitude": "56.80545000" + }, + { + "id": "134760", + "name": "Rīgān", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "28.43333000", + "longitude": "59.15000000" + }, + { + "id": "134776", + "name": "Shahr-e Bābak", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "30.11650000", + "longitude": "55.11860000" + }, + { + "id": "134781", + "name": "Shahrak-e Pābedānā", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "31.13444000", + "longitude": "56.39806000" + }, + { + "id": "134791", + "name": "Shahrestān-e Anār", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "30.85000000", + "longitude": "55.35000000" + }, + { + "id": "135102", + "name": "Shahrestān-e ‘Anbarābād", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "28.43333000", + "longitude": "58.16667000" + }, + { + "id": "134805", + "name": "Shahrestān-e Bardsīr", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.83333000", + "longitude": "56.58333000" + }, + { + "id": "134820", + "name": "Shahrestān-e Bāft", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.10000000", + "longitude": "56.51667000" + }, + { + "id": "134872", + "name": "Shahrestān-e Fāryāb", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "28.20000000", + "longitude": "57.21667000" + }, + { + "id": "134901", + "name": "Shahrestān-e Jīroft", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "28.83333000", + "longitude": "57.58333000" + }, + { + "id": "134903", + "name": "Shahrestān-e Kahnūj", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "27.90000000", + "longitude": "57.61667000" + }, + { + "id": "134938", + "name": "Shahrestān-e Kūhbanān", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "31.38333000", + "longitude": "56.33333000" + }, + { + "id": "134909", + "name": "Shahrestān-e Kermān", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "30.33333000", + "longitude": "58.00000000" + }, + { + "id": "134953", + "name": "Shahrestān-e Manūjān", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "27.35000000", + "longitude": "57.61667000" + }, + { + "id": "134977", + "name": "Shahrestān-e Narmāshīr", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.26667000", + "longitude": "58.73333000" + }, + { + "id": "134989", + "name": "Shahrestān-e Orzū‘īyeh", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "28.46667000", + "longitude": "56.53333000" + }, + { + "id": "135000", + "name": "Shahrestān-e Qal‘eh Ganj", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "27.20000000", + "longitude": "58.33333000" + }, + { + "id": "135007", + "name": "Shahrestān-e Rafsanjān", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "30.53333000", + "longitude": "55.95000000" + }, + { + "id": "135012", + "name": "Shahrestān-e Rābor", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.25000000", + "longitude": "56.98333000" + }, + { + "id": "135018", + "name": "Shahrestān-e Rūdbār-e Jonūbī", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "27.90000000", + "longitude": "58.46667000" + }, + { + "id": "135053", + "name": "Shahrestān-e Sīrjān", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.36667000", + "longitude": "55.65000000" + }, + { + "id": "135036", + "name": "Shahrestān-e Shahr-e Bābak", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "30.23333000", + "longitude": "55.05000000" + }, + { + "id": "135116", + "name": "Sirjan", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "29.45137000", + "longitude": "55.68090000" + }, + { + "id": "135143", + "name": "Zarand", + "state_id": 3943, + "state_code": "15", + "country_id": 103, + "country_code": "IR", + "latitude": "30.81271000", + "longitude": "56.56399000" + }, + { + "id": "134652", + "name": "Harsīn", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.27210000", + "longitude": "47.58610000" + }, + { + "id": "134657", + "name": "Javānrūd", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.79611000", + "longitude": "46.51722000" + }, + { + "id": "134661", + "name": "Kahrīz", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.38380000", + "longitude": "47.05530000" + }, + { + "id": "134663", + "name": "Kangāvar", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.50430000", + "longitude": "47.96530000" + }, + { + "id": "134668", + "name": "Kermanshah", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.31417000", + "longitude": "47.06500000" + }, + { + "id": "134733", + "name": "Pāveh", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "35.04340000", + "longitude": "46.35650000" + }, + { + "id": "134770", + "name": "Sarpol-e Z̄ahāb", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.46109000", + "longitude": "45.86264000" + }, + { + "id": "135094", + "name": "Shahrestān-e Şaḩneh", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.58333000", + "longitude": "47.51667000" + }, + { + "id": "134851", + "name": "Shahrestān-e Dālāhū", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.41667000", + "longitude": "46.25000000" + }, + { + "id": "134860", + "name": "Shahrestān-e Eslāmābād-e Gharb", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.05000000", + "longitude": "46.66667000" + }, + { + "id": "134890", + "name": "Shahrestān-e Gīlān-e Gharb", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.13333000", + "longitude": "46.00000000" + }, + { + "id": "134891", + "name": "Shahrestān-e Harsīn", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.35000000", + "longitude": "47.48333000" + }, + { + "id": "134896", + "name": "Shahrestān-e Javānrūd", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.86667000", + "longitude": "46.30000000" + }, + { + "id": "134907", + "name": "Shahrestān-e Kangāvar", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.48333000", + "longitude": "47.93333000" + }, + { + "id": "134910", + "name": "Shahrestān-e Kermānshāh", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.33333000", + "longitude": "47.00000000" + }, + { + "id": "134997", + "name": "Shahrestān-e Pāveh", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "35.05000000", + "longitude": "46.26667000" + }, + { + "id": "135002", + "name": "Shahrestān-e Qaşr-e Shīrīn", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.20000000", + "longitude": "45.63333000" + }, + { + "id": "135008", + "name": "Shahrestān-e Ravānsar", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.75000000", + "longitude": "46.65000000" + }, + { + "id": "135025", + "name": "Shahrestān-e Sarpol-e Z̄ahāb", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.50000000", + "longitude": "45.85000000" + }, + { + "id": "135056", + "name": "Shahrestān-e S̄alās̄-e Bābā Jānī", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.81667000", + "longitude": "45.98333000" + }, + { + "id": "135120", + "name": "Sonqor", + "state_id": 3919, + "state_code": "17", + "country_id": 103, + "country_code": "IR", + "latitude": "34.78187000", + "longitude": "47.59945000" + }, + { + "id": "134555", + "name": "Abadan", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.33920000", + "longitude": "48.30430000" + }, + { + "id": "134558", + "name": "Aghajari", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.70060000", + "longitude": "49.83150000" + }, + { + "id": "134561", + "name": "Ahvaz", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.31901000", + "longitude": "48.68420000" + }, + { + "id": "134599", + "name": "Bāgh Shahrestān-e Malek", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.50000000", + "longitude": "49.91667000" + }, + { + "id": "134584", + "name": "Behbahān", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.59590000", + "longitude": "50.24170000" + }, + { + "id": "134649", + "name": "Gotvand", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "32.21667000", + "longitude": "48.80000000" + }, + { + "id": "134650", + "name": "Hamidiyeh", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.48107000", + "longitude": "48.43303000" + }, + { + "id": "134658", + "name": "Jongīyeh", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.25583000", + "longitude": "48.61667000" + }, + { + "id": "134665", + "name": "Karun", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.27618000", + "longitude": "48.64174000" + }, + { + "id": "134675", + "name": "Khorramshahr", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.44079000", + "longitude": "48.18428000" + }, + { + "id": "134699", + "name": "Masjed Soleymān", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.93640000", + "longitude": "49.30390000" + }, + { + "id": "134723", + "name": "Omīdīyeh", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.76277000", + "longitude": "49.70226000" + }, + { + "id": "134757", + "name": "Rāmhormoz", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.27997000", + "longitude": "49.60351000" + }, + { + "id": "134758", + "name": "Rāmshīr", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.89315000", + "longitude": "49.40787000" + }, + { + "id": "135122", + "name": "Sūsangerd", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.56350000", + "longitude": "48.18958000" + }, + { + "id": "135148", + "name": "sedeyen-e Yek", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.36205000", + "longitude": "48.81833000" + }, + { + "id": "134780", + "name": "Shahrak-e Kūlūrī", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "32.35276000", + "longitude": "48.47059000" + }, + { + "id": "134787", + "name": "Shahrestān-e Ahvāz", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.25000000", + "longitude": "48.65000000" + }, + { + "id": "134789", + "name": "Shahrestān-e Andīkā", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "32.16667000", + "longitude": "49.53333000" + }, + { + "id": "134790", + "name": "Shahrestān-e Andīmeshk", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "32.70000000", + "longitude": "48.30000000" + }, + { + "id": "135093", + "name": "Shahrestān-e Īz̄eh", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.91667000", + "longitude": "49.98333000" + }, + { + "id": "135080", + "name": "Shahrestān-e Ābādān", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.21667000", + "longitude": "48.53333000" + }, + { + "id": "134804", + "name": "Shahrestān-e Bandar-e Māhshahr", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.63333000", + "longitude": "49.11667000" + }, + { + "id": "134824", + "name": "Shahrestān-e Bāvī", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.50000000", + "longitude": "48.95000000" + }, + { + "id": "134808", + "name": "Shahrestān-e Behbahān", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.56667000", + "longitude": "50.20000000" + }, + { + "id": "134843", + "name": "Shahrestān-e Dasht-e Āzādegān", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.70000000", + "longitude": "48.06667000" + }, + { + "id": "134850", + "name": "Shahrestān-e Dezfūl", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "32.56667000", + "longitude": "48.78333000" + }, + { + "id": "134893", + "name": "Shahrestān-e Hendījān", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.33333000", + "longitude": "49.60000000" + }, + { + "id": "134945", + "name": "Shahrestān-e Lālī", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "32.41667000", + "longitude": "49.16667000" + }, + { + "id": "134957", + "name": "Shahrestān-e Masjed Soleymān", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.98333000", + "longitude": "49.26667000" + }, + { + "id": "134988", + "name": "Shahrestān-e Omīdīyeh", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.75000000", + "longitude": "49.70000000" + }, + { + "id": "135013", + "name": "Shahrestān-e Rāmhormoz", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.21667000", + "longitude": "49.65000000" + }, + { + "id": "135015", + "name": "Shahrestān-e Rāmshīr", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.96667000", + "longitude": "49.38333000" + }, + { + "id": "135040", + "name": "Shahrestān-e Shādegān", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.66667000", + "longitude": "48.66667000" + }, + { + "id": "135047", + "name": "Shahrestān-e Shūsh", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "32.03333000", + "longitude": "48.21667000" + }, + { + "id": "135048", + "name": "Shahrestān-e Shūshtar", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "31.90000000", + "longitude": "48.85000000" + }, + { + "id": "135109", + "name": "Shādegān", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "30.64924000", + "longitude": "48.66497000" + }, + { + "id": "135113", + "name": "Shūsh", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "32.19420000", + "longitude": "48.24360000" + }, + { + "id": "135114", + "name": "Shūshtar", + "state_id": 3917, + "state_code": "10", + "country_id": 103, + "country_code": "IR", + "latitude": "32.04972000", + "longitude": "48.84843000" + }, + { + "id": "134616", + "name": "Dehdasht", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "30.79490000", + "longitude": "50.56457000" + }, + { + "id": "134622", + "name": "Dogonbadan", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "30.35860000", + "longitude": "50.79810000" + }, + { + "id": "134688", + "name": "Landeh", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "30.97994000", + "longitude": "50.42469000" + }, + { + "id": "134799", + "name": "Shahrestān-e Bahma’ī", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "31.05000000", + "longitude": "50.08333000" + }, + { + "id": "134823", + "name": "Shahrestān-e Bāsht", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "30.45000000", + "longitude": "51.11667000" + }, + { + "id": "134816", + "name": "Shahrestān-e Bowyer Aḩmad", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "30.78333000", + "longitude": "51.11667000" + }, + { + "id": "134832", + "name": "Shahrestān-e Charām", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "30.76667000", + "longitude": "50.85000000" + }, + { + "id": "134841", + "name": "Shahrestān-e Danā", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "30.95000000", + "longitude": "51.28333000" + }, + { + "id": "134878", + "name": "Shahrestān-e Gachsārān", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "30.33333000", + "longitude": "50.75000000" + }, + { + "id": "134928", + "name": "Shahrestān-e Kohgīlūyeh", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "31.03333000", + "longitude": "50.45000000" + }, + { + "id": "135139", + "name": "Yasuj", + "state_id": 3926, + "state_code": "18", + "country_id": 103, + "country_code": "IR", + "latitude": "30.66824000", + "longitude": "51.58796000" + }, + { + "id": "134600", + "name": "Bāneh", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.99750000", + "longitude": "45.88530000" + }, + { + "id": "134601", + "name": "Bījār", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.86680000", + "longitude": "47.60506000" + }, + { + "id": "134682", + "name": "Kāmyārān", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "34.79560000", + "longitude": "46.93550000" + }, + { + "id": "134697", + "name": "Marīvān", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.51829000", + "longitude": "46.18298000" + }, + { + "id": "134745", + "name": "Qorveh", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.16640000", + "longitude": "47.80564000" + }, + { + "id": "134765", + "name": "Sanandaj", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.31495000", + "longitude": "46.99883000" + }, + { + "id": "134766", + "name": "Saqqez", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "36.24992000", + "longitude": "46.27350000" + }, + { + "id": "134822", + "name": "Shahrestān-e Bāneh", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.98333000", + "longitude": "45.81667000" + }, + { + "id": "134825", + "name": "Shahrestān-e Bījār", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.86667000", + "longitude": "47.60000000" + }, + { + "id": "134854", + "name": "Shahrestān-e Dīvāndarreh", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.91667000", + "longitude": "47.00000000" + }, + { + "id": "134846", + "name": "Shahrestān-e Dehgolān", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.35000000", + "longitude": "47.35000000" + }, + { + "id": "134933", + "name": "Shahrestān-e Kāmyārān", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "34.91667000", + "longitude": "46.91667000" + }, + { + "id": "134956", + "name": "Shahrestān-e Marīvān", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.56667000", + "longitude": "46.35000000" + }, + { + "id": "135027", + "name": "Shahrestān-e Sarvābād", + "state_id": 3935, + "state_code": "16", + "country_id": 103, + "country_code": "IR", + "latitude": "35.25000000", + "longitude": "46.33333000" + }, + { + "id": "134567", + "name": "Alīgūdarz", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.40400000", + "longitude": "49.69179000" + }, + { + "id": "134564", + "name": "Aleshtar", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.86419000", + "longitude": "48.26258000" + }, + { + "id": "134573", + "name": "Aznā", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.45643000", + "longitude": "49.45646000" + }, + { + "id": "134591", + "name": "Borūjerd", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.89730000", + "longitude": "48.75160000" + }, + { + "id": "134619", + "name": "Delfan", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "34.05000000", + "longitude": "47.78333000" + }, + { + "id": "134687", + "name": "Kūhdasht", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.53335000", + "longitude": "47.60999000" + }, + { + "id": "134673", + "name": "Khorramabad", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.48778000", + "longitude": "48.35583000" + }, + { + "id": "134720", + "name": "Nūrābād", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "34.07340000", + "longitude": "47.97250000" + }, + { + "id": "134728", + "name": "Pol-e Dokhtar", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.16667000", + "longitude": "48.00000000" + }, + { + "id": "134756", + "name": "Rumeshkhan County", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.27960000", + "longitude": "47.48995000" + }, + { + "id": "134773", + "name": "Selseleh", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.83333000", + "longitude": "48.16667000" + }, + { + "id": "134788", + "name": "Shahrestān-e Alīgūdarz", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.08333000", + "longitude": "49.48333000" + }, + { + "id": "134798", + "name": "Shahrestān-e Aznā", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.46667000", + "longitude": "49.41667000" + }, + { + "id": "134814", + "name": "Shahrestān-e Borūjerd", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.88333000", + "longitude": "48.71667000" + }, + { + "id": "134855", + "name": "Shahrestān-e Dūreh", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.61667000", + "longitude": "47.91667000" + }, + { + "id": "134939", + "name": "Shahrestān-e Kūhdasht", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.51667000", + "longitude": "47.40000000" + }, + { + "id": "134920", + "name": "Shahrestān-e Khorramābād", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.38333000", + "longitude": "48.58333000" + }, + { + "id": "135138", + "name": "Vasīān", + "state_id": 3928, + "state_code": "20", + "country_id": 103, + "country_code": "IR", + "latitude": "33.49083000", + "longitude": "48.04917000" + }, + { + "id": "134571", + "name": "Arāk", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "34.09493000", + "longitude": "49.69809000" + }, + { + "id": "135150", + "name": "Ābyek", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "36.06667000", + "longitude": "50.55000000" + }, + { + "id": "134620", + "name": "Delījān", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "33.99050000", + "longitude": "50.68380000" + }, + { + "id": "134671", + "name": "Khomeyn", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "33.63889000", + "longitude": "50.08003000" + }, + { + "id": "134681", + "name": "Komījān", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "34.72142000", + "longitude": "49.32653000" + }, + { + "id": "135121", + "name": "Sāveh", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "35.02130000", + "longitude": "50.35660000" + }, + { + "id": "134796", + "name": "Shahrestān-e Arāk", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "34.13333000", + "longitude": "49.80000000" + }, + { + "id": "135085", + "name": "Shahrestān-e Āshtīān", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "34.45000000", + "longitude": "50.05000000" + }, + { + "id": "134849", + "name": "Shahrestān-e Delījān", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "34.03333000", + "longitude": "50.76667000" + }, + { + "id": "134865", + "name": "Shahrestān-e Farahān", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "34.60000000", + "longitude": "49.63333000" + }, + { + "id": "134918", + "name": "Shahrestān-e Khondāb", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "34.36667000", + "longitude": "49.18333000" + }, + { + "id": "134929", + "name": "Shahrestān-e Komījān", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "34.76667000", + "longitude": "49.33333000" + }, + { + "id": "134959", + "name": "Shahrestān-e Maḩallāt", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "33.91667000", + "longitude": "50.41667000" + }, + { + "id": "135050", + "name": "Shahrestān-e Sāveh", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "35.10000000", + "longitude": "49.98333000" + }, + { + "id": "135044", + "name": "Shahrestān-e Shāzand", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "33.90000000", + "longitude": "49.30000000" + }, + { + "id": "135072", + "name": "Shahrestān-e Zarandīyeh", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "35.36667000", + "longitude": "50.33333000" + }, + { + "id": "135126", + "name": "Tafresh", + "state_id": 3916, + "state_code": "22", + "country_id": 103, + "country_code": "IR", + "latitude": "34.69307000", + "longitude": "50.01601000" + }, + { + "id": "135152", + "name": "Āmol", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.46961000", + "longitude": "52.35072000" + }, + { + "id": "134595", + "name": "Bābol", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.55132000", + "longitude": "52.67895000" + }, + { + "id": "134596", + "name": "Bābolsar", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.70251000", + "longitude": "52.65760000" + }, + { + "id": "134585", + "name": "Behshahr", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.69235000", + "longitude": "53.55262000" + }, + { + "id": "134610", + "name": "Chālūs", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.65500000", + "longitude": "51.42040000" + }, + { + "id": "134640", + "name": "Fereydūnkenār", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.68642000", + "longitude": "52.52255000" + }, + { + "id": "134660", + "name": "Jūybār", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.64115000", + "longitude": "52.91244000" + }, + { + "id": "134709", + "name": "Nashtārūd", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.75090000", + "longitude": "51.02362000" + }, + { + "id": "134712", + "name": "Nekā", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.65079000", + "longitude": "53.29905000" + }, + { + "id": "134716", + "name": "Nowshahr", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.64852000", + "longitude": "51.49621000" + }, + { + "id": "134769", + "name": "Sari", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.56332000", + "longitude": "53.06009000" + }, + { + "id": "134772", + "name": "Savadkuh-e Shomali", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "35.97765000", + "longitude": "52.68246000" + }, + { + "id": "134784", + "name": "Shahrestan-e Kalār Dasht", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.45000000", + "longitude": "51.11667000" + }, + { + "id": "135081", + "name": "Shahrestān-e Āmol", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.20000000", + "longitude": "52.38333000" + }, + { + "id": "135099", + "name": "Shahrestān-e ‘Abbāsābād", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.63333000", + "longitude": "51.15000000" + }, + { + "id": "134817", + "name": "Shahrestān-e Bābol", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.31667000", + "longitude": "52.65000000" + }, + { + "id": "134818", + "name": "Shahrestān-e Bābolsar", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.66667000", + "longitude": "52.73333000" + }, + { + "id": "134837", + "name": "Shahrestān-e Chālūs", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.45000000", + "longitude": "51.16667000" + }, + { + "id": "134866", + "name": "Shahrestān-e Fareydūnkenār", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.63333000", + "longitude": "52.56667000" + }, + { + "id": "134879", + "name": "Shahrestān-e Galūgāh", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.71667000", + "longitude": "53.86667000" + }, + { + "id": "134902", + "name": "Shahrestān-e Jūybār", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.66667000", + "longitude": "52.95000000" + }, + { + "id": "134960", + "name": "Shahrestān-e Maḩmūdābād", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.60000000", + "longitude": "52.36667000" + }, + { + "id": "134972", + "name": "Shahrestān-e Mīāndorūd", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.58333000", + "longitude": "53.30000000" + }, + { + "id": "134987", + "name": "Shahrestān-e Nūr", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.31667000", + "longitude": "51.98333000" + }, + { + "id": "134981", + "name": "Shahrestān-e Nekā", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.51667000", + "longitude": "53.60000000" + }, + { + "id": "135003", + "name": "Shahrestān-e Qā’em Shahr", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.48333000", + "longitude": "52.90000000" + }, + { + "id": "135014", + "name": "Shahrestān-e Rāmsar", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.76667000", + "longitude": "50.53333000" + }, + { + "id": "135032", + "name": "Shahrestān-e Savādkūh", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.08333000", + "longitude": "52.91667000" + }, + { + "id": "135049", + "name": "Shahrestān-e Sārī", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.33333000", + "longitude": "53.28333000" + }, + { + "id": "135061", + "name": "Shahrestān-e Tonekābon", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.63333000", + "longitude": "50.80000000" + }, + { + "id": "135115", + "name": "Simorgh County", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.57914000", + "longitude": "52.82364000" + }, + { + "id": "135130", + "name": "Tonekābon", + "state_id": 3938, + "state_code": "21", + "country_id": 103, + "country_code": "IR", + "latitude": "36.81626000", + "longitude": "50.87376000" + }, + { + "id": "134587", + "name": "Bojnūrd", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.47473000", + "longitude": "57.32903000" + }, + { + "id": "134630", + "name": "Esfarāyen", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.07645000", + "longitude": "57.51009000" + }, + { + "id": "134750", + "name": "Raz and Jargalan", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.93060000", + "longitude": "57.11940000" + }, + { + "id": "134810", + "name": "Shahrestān-e Bojnūrd", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.83333000", + "longitude": "57.33333000" + }, + { + "id": "134857", + "name": "Shahrestān-e Esfarāyen", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.00000000", + "longitude": "57.55000000" + }, + { + "id": "134873", + "name": "Shahrestān-e Fārūj", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.21667000", + "longitude": "58.21667000" + }, + { + "id": "134899", + "name": "Shahrestān-e Jājarm", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.01667000", + "longitude": "56.68333000" + }, + { + "id": "134968", + "name": "Shahrestān-e Māneh va Samalqān", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.70000000", + "longitude": "56.60000000" + }, + { + "id": "135045", + "name": "Shahrestān-e Shīrvān", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.53333000", + "longitude": "57.90000000" + }, + { + "id": "135112", + "name": "Shīrvān", + "state_id": 3942, + "state_code": "31", + "country_id": 103, + "country_code": "IR", + "latitude": "37.39669000", + "longitude": "57.92952000" + }, + { + "id": "134563", + "name": "Alborz", + "state_id": 3941, + "state_code": "28", + "country_id": 103, + "country_code": "IR", + "latitude": "36.18861000", + "longitude": "50.07829000" + }, + { + "id": "134565", + "name": "Alvand", + "state_id": 3941, + "state_code": "28", + "country_id": 103, + "country_code": "IR", + "latitude": "36.18930000", + "longitude": "50.06430000" + }, + { + "id": "134572", + "name": "Avaj", + "state_id": 3941, + "state_code": "28", + "country_id": 103, + "country_code": "IR", + "latitude": "35.57685000", + "longitude": "49.22241000" + }, + { + "id": "134740", + "name": "Qazvin", + "state_id": 3941, + "state_code": "28", + "country_id": 103, + "country_code": "IR", + "latitude": "36.26877000", + "longitude": "50.00410000" + }, + { + "id": "134831", + "name": "Shahrestān-e Bū’īn Zahrā", + "state_id": 3941, + "state_code": "28", + "country_id": 103, + "country_code": "IR", + "latitude": "35.61667000", + "longitude": "49.70000000" + }, + { + "id": "135001", + "name": "Shahrestān-e Qazvīn", + "state_id": 3941, + "state_code": "28", + "country_id": 103, + "country_code": "IR", + "latitude": "36.43333000", + "longitude": "49.81667000" + }, + { + "id": "135064", + "name": "Shahrestān-e Tākestān", + "state_id": 3941, + "state_code": "28", + "country_id": 103, + "country_code": "IR", + "latitude": "36.00000000", + "longitude": "49.55000000" + }, + { + "id": "135134", + "name": "Tākestān", + "state_id": 3941, + "state_code": "28", + "country_id": 103, + "country_code": "IR", + "latitude": "36.07057000", + "longitude": "49.69571000" + }, + { + "id": "134744", + "name": "Qom", + "state_id": 3922, + "state_code": "26", + "country_id": 103, + "country_code": "IR", + "latitude": "34.64010000", + "longitude": "50.87640000" + }, + { + "id": "134581", + "name": "Bardaskan", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.26667000", + "longitude": "57.48333000" + }, + { + "id": "134608", + "name": "Chenārān", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.64546000", + "longitude": "59.12123000" + }, + { + "id": "134613", + "name": "Dargaz", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "37.33333000", + "longitude": "59.08333000" + }, + { + "id": "134628", + "name": "Dāvarzan", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.33333000", + "longitude": "56.83333000" + }, + { + "id": "134647", + "name": "Gonābād", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "34.35287000", + "longitude": "58.68365000" + }, + { + "id": "134659", + "name": "Joveyn", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.58333000", + "longitude": "57.51667000" + }, + { + "id": "134683", + "name": "Kāshmar", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.23831000", + "longitude": "58.46558000" + }, + { + "id": "134698", + "name": "Mashhad", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.31559000", + "longitude": "59.56796000" + }, + { + "id": "134714", + "name": "Neyshābūr", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.21329000", + "longitude": "58.79575000" + }, + { + "id": "134747", + "name": "Qūchān", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "37.10600000", + "longitude": "58.50955000" + }, + { + "id": "134762", + "name": "Sabzevar", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.21260000", + "longitude": "57.68191000" + }, + { + "id": "134767", + "name": "Sarakhs", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.54490000", + "longitude": "61.15770000" + }, + { + "id": "134801", + "name": "Shahrestān-e Bajestān", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "34.58333000", + "longitude": "58.13333000" + }, + { + "id": "134821", + "name": "Shahrestān-e Bākharz", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.01667000", + "longitude": "60.28333000" + }, + { + "id": "134827", + "name": "Shahrestān-e Bīnālūd", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.26667000", + "longitude": "59.33333000" + }, + { + "id": "134833", + "name": "Shahrestān-e Chenārān", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.66667000", + "longitude": "59.15000000" + }, + { + "id": "134869", + "name": "Shahrestān-e Farīmān", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.70000000", + "longitude": "59.83333000" + }, + { + "id": "134874", + "name": "Shahrestān-e Fīrūzeh", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.30000000", + "longitude": "58.41667000" + }, + { + "id": "134887", + "name": "Shahrestān-e Gonābād", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "34.38333000", + "longitude": "58.95000000" + }, + { + "id": "134897", + "name": "Shahrestān-e Joghatāy", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.66667000", + "longitude": "57.03333000" + }, + { + "id": "134905", + "name": "Shahrestān-e Kalāt", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.90000000", + "longitude": "59.90000000" + }, + { + "id": "134934", + "name": "Shahrestān-e Kāshmar", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.43333000", + "longitude": "58.48333000" + }, + { + "id": "134912", + "name": "Shahrestān-e Khalīlābād", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.11667000", + "longitude": "58.20000000" + }, + { + "id": "134921", + "name": "Shahrestān-e Khowshāb", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.43333000", + "longitude": "58.06667000" + }, + { + "id": "134922", + "name": "Shahrestān-e Khvāf", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "34.50000000", + "longitude": "60.00000000" + }, + { + "id": "134948", + "name": "Shahrestān-e Mah Velāt", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "34.98333000", + "longitude": "58.78333000" + }, + { + "id": "134983", + "name": "Shahrestān-e Neyshābūr", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.21667000", + "longitude": "58.88333000" + }, + { + "id": "135006", + "name": "Shahrestān-e Qūchān", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "37.06667000", + "longitude": "58.65000000" + }, + { + "id": "135011", + "name": "Shahrestān-e Roshtkhvār", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "34.91667000", + "longitude": "59.36667000" + }, + { + "id": "135021", + "name": "Shahrestān-e Sabzevār", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "36.01667000", + "longitude": "57.41667000" + }, + { + "id": "135066", + "name": "Shahrestān-e Tāybād", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "34.73333000", + "longitude": "60.73333000" + }, + { + "id": "135063", + "name": "Shahrestān-e Torbat-e Ḩeydarīyeh", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.46667000", + "longitude": "59.10000000" + }, + { + "id": "135062", + "name": "Shahrestān-e Torbat-e Jām", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.46667000", + "longitude": "60.78333000" + }, + { + "id": "135076", + "name": "Shahrestān-e Zāveh", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.28333000", + "longitude": "59.73333000" + }, + { + "id": "135135", + "name": "Tāybād", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "34.74000000", + "longitude": "60.77560000" + }, + { + "id": "135132", + "name": "Torbat-e Ḩeydarīyeh", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.27401000", + "longitude": "59.21949000" + }, + { + "id": "135131", + "name": "Torbat-e Jām", + "state_id": 3927, + "state_code": "30", + "country_id": 103, + "country_code": "IR", + "latitude": "35.24400000", + "longitude": "60.62250000" + }, + { + "id": "135158", + "name": "Īstgāh-e Rāh Āhan-e Garmsār", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "35.23455000", + "longitude": "52.30942000" + }, + { + "id": "134625", + "name": "Dāmghān", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "36.16790000", + "longitude": "54.34292000" + }, + { + "id": "134690", + "name": "Mahdishahr", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "35.70806000", + "longitude": "53.35083000" + }, + { + "id": "134774", + "name": "Semnan", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "35.57691000", + "longitude": "53.39205000" + }, + { + "id": "135083", + "name": "Shahrestān-e Ārādān", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "34.90000000", + "longitude": "52.61667000" + }, + { + "id": "134852", + "name": "Shahrestān-e Dāmghān", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "35.50000000", + "longitude": "54.33333000" + }, + { + "id": "134880", + "name": "Shahrestān-e Garmsār", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "34.96362000", + "longitude": "52.21270000" + }, + { + "id": "134958", + "name": "Shahrestān-e Mayāmey", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "36.63333000", + "longitude": "55.95000000" + }, + { + "id": "135033", + "name": "Shahrestān-e Semnān", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "35.11667000", + "longitude": "53.78333000" + }, + { + "id": "135041", + "name": "Shahrestān-e Shāhrūd", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "35.50000000", + "longitude": "55.50000000" + }, + { + "id": "135105", + "name": "Shahrud", + "state_id": 3940, + "state_code": "12", + "country_id": 103, + "country_code": "IR", + "latitude": "36.41819000", + "longitude": "54.97628000" + }, + { + "id": "134605", + "name": "Chabahar", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "25.29190000", + "longitude": "60.64300000" + }, + { + "id": "134633", + "name": "Fannūj", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "26.57583000", + "longitude": "59.63972000" + }, + { + "id": "134634", + "name": "Fanuj", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "26.57468000", + "longitude": "59.63856000" + }, + { + "id": "134651", + "name": "Hamoon", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "30.93686000", + "longitude": "61.33687000" + }, + { + "id": "134655", + "name": "Iranshahr", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "27.20245000", + "longitude": "60.68476000" + }, + { + "id": "134679", + "name": "Khāsh", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "28.22107000", + "longitude": "61.21582000" + }, + { + "id": "134702", + "name": "Mirjaveh", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "29.01752000", + "longitude": "61.45046000" + }, + { + "id": "134719", + "name": "Nīkshahr", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "26.22580000", + "longitude": "60.21430000" + }, + { + "id": "134715", + "name": "Nimruz", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "31.10333000", + "longitude": "61.41601000" + }, + { + "id": "134717", + "name": "Noşratābād", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "29.90000000", + "longitude": "59.98333000" + }, + { + "id": "134741", + "name": "Qaşr-e Qand", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "26.24833000", + "longitude": "60.75250000" + }, + { + "id": "134739", + "name": "Qaser-e Qand", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "26.22693000", + "longitude": "60.74553000" + }, + { + "id": "135092", + "name": "Shahrestān-e Īrānshahr", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "27.61945000", + "longitude": "60.21070000" + }, + { + "id": "134834", + "name": "Shahrestān-e Chābahār", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "25.56832000", + "longitude": "61.21075000" + }, + { + "id": "134839", + "name": "Shahrestān-e Dalgān", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "27.31667000", + "longitude": "59.30000000" + }, + { + "id": "134895", + "name": "Shahrestān-e Hīrmand", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "31.25000000", + "longitude": "61.61667000" + }, + { + "id": "134924", + "name": "Shahrestān-e Khāsh", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "28.21667000", + "longitude": "61.20000000" + }, + { + "id": "134930", + "name": "Shahrestān-e Konārak", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "25.55000000", + "longitude": "59.85000000" + }, + { + "id": "134961", + "name": "Shahrestān-e Mehrestān", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "27.05000000", + "longitude": "61.53333000" + }, + { + "id": "134985", + "name": "Shahrestān-e Nīkshahr", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "26.25000000", + "longitude": "60.00000000" + }, + { + "id": "135029", + "name": "Shahrestān-e Sarāvān", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "27.32351000", + "longitude": "62.56796000" + }, + { + "id": "135023", + "name": "Shahrestān-e Sarbāz", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "26.43393000", + "longitude": "61.48176000" + }, + { + "id": "135052", + "name": "Shahrestān-e Sīb va Sūrān", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "27.33333000", + "longitude": "61.91667000" + }, + { + "id": "135074", + "name": "Shahrestān-e Zābol", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "30.85431000", + "longitude": "60.85359000" + }, + { + "id": "135075", + "name": "Shahrestān-e Zāhedān", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "29.48002000", + "longitude": "60.24812000" + }, + { + "id": "135141", + "name": "Zahedan", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "29.49630000", + "longitude": "60.86290000" + }, + { + "id": "135147", + "name": "Zābol", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "31.03060000", + "longitude": "61.49490000" + }, + { + "id": "135145", + "name": "Zehak", + "state_id": 3931, + "state_code": "13", + "country_id": 103, + "country_code": "IR", + "latitude": "30.86667000", + "longitude": "61.56667000" + }, + { + "id": "134603", + "name": "Bīrjand", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "32.86628000", + "longitude": "59.22114000" + }, + { + "id": "134592", + "name": "Boshrūyeh", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "34.16667000", + "longitude": "57.41667000" + }, + { + "id": "134746", + "name": "Qā’en", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "33.72654000", + "longitude": "59.18439000" + }, + { + "id": "134828", + "name": "Shahrestān-e Bīrjand", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "33.00669000", + "longitude": "59.07223000" + }, + { + "id": "134842", + "name": "Shahrestān-e Darmīān", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "32.95000000", + "longitude": "60.16667000" + }, + { + "id": "134927", + "name": "Shahrestān-e Khūsf", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "32.18333000", + "longitude": "58.76667000" + }, + { + "id": "134980", + "name": "Shahrestān-e Nehbandān", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "31.56667000", + "longitude": "59.81667000" + }, + { + "id": "135004", + "name": "Shahrestān-e Qā’en", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "33.74197000", + "longitude": "59.35020000" + }, + { + "id": "135030", + "name": "Shahrestān-e Sarāyān", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "33.41667000", + "longitude": "58.31667000" + }, + { + "id": "135024", + "name": "Shahrestān-e Sarbīsheh", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "32.40000000", + "longitude": "60.08333000" + }, + { + "id": "135077", + "name": "Shahrestān-e Zīrkūh", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "33.58333000", + "longitude": "60.30000000" + }, + { + "id": "135124", + "name": "Tabas", + "state_id": 3930, + "state_code": "29", + "country_id": 103, + "country_code": "IR", + "latitude": "32.80304000", + "longitude": "60.22146000" + }, + { + "id": "135159", + "name": "Ţāleb ābād", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.50130000", + "longitude": "51.53147000" + }, + { + "id": "134612", + "name": "Damāvand", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.71842000", + "longitude": "52.06958000" + }, + { + "id": "134629", + "name": "Eqbālīyeh", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.30220000", + "longitude": "51.53580000" + }, + { + "id": "134631", + "name": "Eslāmshahr", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.55222000", + "longitude": "51.23504000" + }, + { + "id": "134693", + "name": "Malārd", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.66590000", + "longitude": "50.97670000" + }, + { + "id": "134726", + "name": "Pardis", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.74169000", + "longitude": "51.77705000" + }, + { + "id": "134734", + "name": "Pīshvā", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.30800000", + "longitude": "51.72670000" + }, + { + "id": "134737", + "name": "Qarchak", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.42867000", + "longitude": "51.57544000" + }, + { + "id": "134743", + "name": "Qods", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.71667000", + "longitude": "51.06667000" + }, + { + "id": "134752", + "name": "Rey", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.37448000", + "longitude": "51.27743000" + }, + { + "id": "134754", + "name": "Robāţ Karīm", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.48460000", + "longitude": "51.08290000" + }, + { + "id": "134779", + "name": "Shahrak-e Emām Ḩasan", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.48846000", + "longitude": "51.34567000" + }, + { + "id": "135106", + "name": "Shahrīār", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.65884000", + "longitude": "51.05775000" + }, + { + "id": "134782", + "name": "Shahre Jadide Andisheh", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.68030000", + "longitude": "51.01930000" + }, + { + "id": "134800", + "name": "Shahrestān-e Bahārestān", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.53333000", + "longitude": "51.15000000" + }, + { + "id": "134840", + "name": "Shahrestān-e Damāvand", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.63005000", + "longitude": "52.13750000" + }, + { + "id": "134859", + "name": "Shahrestān-e Eslāmshahr", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.58333000", + "longitude": "51.25000000" + }, + { + "id": "134875", + "name": "Shahrestān-e Fīrūzkūh", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.72852000", + "longitude": "52.74164000" + }, + { + "id": "134952", + "name": "Shahrestān-e Malārd", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.63333000", + "longitude": "50.65000000" + }, + { + "id": "134993", + "name": "Shahrestān-e Pākdasht", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.49448000", + "longitude": "51.75302000" + }, + { + "id": "134999", + "name": "Shahrestān-e Pīshvā", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.35000000", + "longitude": "51.71667000" + }, + { + "id": "135010", + "name": "Shahrestān-e Robāţ Karīm", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.52115000", + "longitude": "51.03074000" + }, + { + "id": "135038", + "name": "Shahrestān-e Shahrīār", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.62828000", + "longitude": "51.06632000" + }, + { + "id": "135039", + "name": "Shahrestān-e Shemīrānāt", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.93141000", + "longitude": "51.58997000" + }, + { + "id": "135060", + "name": "Shahrestān-e Tehrān", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.71006000", + "longitude": "51.41744000" + }, + { + "id": "135069", + "name": "Shahrestān-e Varāmīn", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.33081000", + "longitude": "51.64124000" + }, + { + "id": "135107", + "name": "Sharīfābād", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.42750000", + "longitude": "51.78528000" + }, + { + "id": "135118", + "name": "Soleh Bon", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.76841000", + "longitude": "52.56091000" + }, + { + "id": "135129", + "name": "Tehran", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.69439000", + "longitude": "51.42151000" + }, + { + "id": "135137", + "name": "Varāmīn", + "state_id": 3945, + "state_code": "07", + "country_id": 103, + "country_code": "IR", + "latitude": "35.32420000", + "longitude": "51.64570000" + }, + { + "id": "134604", + "name": "Būkān", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.52100000", + "longitude": "46.20890000" + }, + { + "id": "134611", + "name": "Chāypāreh", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "38.86667000", + "longitude": "45.00000000" + }, + { + "id": "134676", + "name": "Khowy", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "38.55030000", + "longitude": "44.95210000" + }, + { + "id": "134692", + "name": "Mahābād", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.76310000", + "longitude": "45.72220000" + }, + { + "id": "134706", + "name": "Mīāndoāb", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.96667000", + "longitude": "46.10961000" + }, + { + "id": "134708", + "name": "Naqadeh", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.95530000", + "longitude": "45.38800000" + }, + { + "id": "134724", + "name": "Orūmīyeh", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "37.55274000", + "longitude": "45.07605000" + }, + { + "id": "134725", + "name": "Oshnavīyeh", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "37.03970000", + "longitude": "45.09830000" + }, + { + "id": "134727", + "name": "Piranshahr", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.70100000", + "longitude": "45.14130000" + }, + { + "id": "134729", + "name": "Poldasht", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "39.34800000", + "longitude": "45.07100000" + }, + { + "id": "134736", + "name": "Qarah Ẕīā’ od Dīn", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "38.89150000", + "longitude": "45.02550000" + }, + { + "id": "134763", + "name": "Salmās", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "38.19730000", + "longitude": "44.76530000" + }, + { + "id": "134768", + "name": "Sardasht", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.21670000", + "longitude": "45.48320000" + }, + { + "id": "134829", + "name": "Shahrestān-e Būkān", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.60002000", + "longitude": "46.16664000" + }, + { + "id": "134836", + "name": "Shahrestān-e Chāldorān", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "39.06667000", + "longitude": "44.33333000" + }, + { + "id": "134949", + "name": "Shahrestān-e Mahābād", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.76667000", + "longitude": "45.73333000" + }, + { + "id": "134967", + "name": "Shahrestān-e Mākū", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "39.41669000", + "longitude": "44.58336000" + }, + { + "id": "134973", + "name": "Shahrestān-e Mīāndoāb", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.89999000", + "longitude": "46.20002000" + }, + { + "id": "134990", + "name": "Shahrestān-e Orūmīyeh", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "37.55000000", + "longitude": "45.00000000" + }, + { + "id": "134991", + "name": "Shahrestān-e Oshnavīyeh", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "37.05000000", + "longitude": "45.08333000" + }, + { + "id": "134998", + "name": "Shahrestān-e Pīrānshahr", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.70000000", + "longitude": "45.16667000" + }, + { + "id": "135022", + "name": "Shahrestān-e Salmās", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "38.18333000", + "longitude": "44.73333000" + }, + { + "id": "135042", + "name": "Shahrestān-e Shāhīn Dezh", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.68337000", + "longitude": "46.66676000" + }, + { + "id": "135058", + "name": "Shahrestān-e Takāb", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.53345000", + "longitude": "47.16669000" + }, + { + "id": "135110", + "name": "Shāhīn Dezh", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.67930000", + "longitude": "46.56690000" + }, + { + "id": "135128", + "name": "Takāb", + "state_id": 3924, + "state_code": "02", + "country_id": 103, + "country_code": "IR", + "latitude": "36.40090000", + "longitude": "47.11330000" + }, + { + "id": "134569", + "name": "Ardakān", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "32.31001000", + "longitude": "54.01747000" + }, + { + "id": "134597", + "name": "Bāfq", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "31.60350000", + "longitude": "55.40249000" + }, + { + "id": "134670", + "name": "Khavāş Kūh", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "32.30611000", + "longitude": "53.67444000" + }, + { + "id": "134691", + "name": "Mahrīz", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "31.58428000", + "longitude": "54.44280000" + }, + { + "id": "134701", + "name": "Meybod", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "32.18333000", + "longitude": "53.93333000" + }, + { + "id": "134785", + "name": "Shahrestān-e Abarkūh", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "31.00000000", + "longitude": "53.41667000" + }, + { + "id": "134793", + "name": "Shahrestān-e Ardakān", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "32.65000000", + "longitude": "54.65000000" + }, + { + "id": "134797", + "name": "Shahrestān-e Ashkez̄ar", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "32.00000000", + "longitude": "53.66667000" + }, + { + "id": "134819", + "name": "Shahrestān-e Bāfq", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "31.66667000", + "longitude": "55.41667000" + }, + { + "id": "134809", + "name": "Shahrestān-e Behābād", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "32.01667000", + "longitude": "56.15000000" + }, + { + "id": "134925", + "name": "Shahrestān-e Khātam", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "30.38333000", + "longitude": "54.20000000" + }, + { + "id": "134963", + "name": "Shahrestān-e Mehrīz", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "31.41667000", + "longitude": "54.61667000" + }, + { + "id": "135070", + "name": "Shahrestān-e Yazd", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "31.88980000", + "longitude": "54.36069000" + }, + { + "id": "135123", + "name": "Tabas", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "33.59586000", + "longitude": "56.92437000" + }, + { + "id": "135127", + "name": "Taft", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "31.74384000", + "longitude": "54.20278000" + }, + { + "id": "135140", + "name": "Yazd", + "state_id": 3936, + "state_code": "25", + "country_id": 103, + "country_code": "IR", + "latitude": "31.89722000", + "longitude": "54.36750000" + }, + { + "id": "134556", + "name": "Abhar", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.14680000", + "longitude": "49.21800000" + }, + { + "id": "134566", + "name": "Alvand", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.31885000", + "longitude": "49.16773000" + }, + { + "id": "134674", + "name": "Khorramdarreh", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.23333000", + "longitude": "49.20000000" + }, + { + "id": "135097", + "name": "Shahrestān-e Ţārom", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.95000000", + "longitude": "48.90000000" + }, + { + "id": "135090", + "name": "Shahrestān-e Ījrūd", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.33333000", + "longitude": "48.25000000" + }, + { + "id": "134916", + "name": "Shahrestān-e Khodābandeh", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.00000000", + "longitude": "48.50000000" + }, + { + "id": "134966", + "name": "Shahrestān-e Māhneshān", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.66667000", + "longitude": "47.56667000" + }, + { + "id": "135071", + "name": "Shahrestān-e Zanjān", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.58333000", + "longitude": "48.25000000" + }, + { + "id": "135119", + "name": "Soltaniyeh", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.43235000", + "longitude": "48.79393000" + }, + { + "id": "135142", + "name": "Zanjān", + "state_id": 3925, + "state_code": "11", + "country_id": 103, + "country_code": "IR", + "latitude": "36.67642000", + "longitude": "48.49628000" + }, + { + "id": "134478", + "name": "Al Fallūjah", + "state_id": 3964, + "state_code": "AN", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.34913000", + "longitude": "43.78599000" + }, + { + "id": "134495", + "name": "Ar Ruţbah", + "state_id": 3964, + "state_code": "AN", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.03718000", + "longitude": "40.28586000" + }, + { + "id": "134548", + "name": "Ḩadīthah", + "state_id": 3964, + "state_code": "AN", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.13661000", + "longitude": "42.37727000" + }, + { + "id": "134552", + "name": "‘Anah", + "state_id": 3964, + "state_code": "AN", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.36857000", + "longitude": "41.98194000" + }, + { + "id": "134553", + "name": "‘Anat al Qadīmah", + "state_id": 3964, + "state_code": "AN", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.46934000", + "longitude": "41.94223000" + }, + { + "id": "134514", + "name": "Hīt", + "state_id": 3964, + "state_code": "AN", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.63664000", + "longitude": "42.82768000" + }, + { + "id": "134515", + "name": "Hīt District", + "state_id": 3964, + "state_code": "AN", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.73482000", + "longitude": "42.68228000" + }, + { + "id": "134533", + "name": "Ramadi", + "state_id": 3964, + "state_code": "AN", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.42056000", + "longitude": "43.30778000" + }, + { + "id": "134535", + "name": "Rāwah", + "state_id": 3964, + "state_code": "AN", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.48229000", + "longitude": "41.91898000" + }, + { + "id": "134494", + "name": "Ar Rumaythah", + "state_id": 3958, + "state_code": "MU", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.52845000", + "longitude": "45.20377000" + }, + { + "id": "134497", + "name": "As Samawah", + "state_id": 3958, + "state_code": "MU", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.33198000", + "longitude": "45.29440000" + }, + { + "id": "134476", + "name": "Ad Dīwānīyah", + "state_id": 3956, + "state_code": "QA", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.99289000", + "longitude": "44.92552000" + }, + { + "id": "134501", + "name": "Ash Shāmīyah", + "state_id": 3956, + "state_code": "QA", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.96257000", + "longitude": "44.60075000" + }, + { + "id": "134550", + "name": "‘Afak", + "state_id": 3956, + "state_code": "QA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.06430000", + "longitude": "45.24743000" + }, + { + "id": "134526", + "name": "Nahiyat Ghammas", + "state_id": 3956, + "state_code": "QA", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.74311000", + "longitude": "44.61960000" + }, + { + "id": "134530", + "name": "Nāḩiyat ash Shināfīyah", + "state_id": 3956, + "state_code": "QA", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.58376000", + "longitude": "44.64675000" + }, + { + "id": "134488", + "name": "Al Ḩillah", + "state_id": 3955, + "state_code": "BB", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.46367000", + "longitude": "44.41963000" + }, + { + "id": "134486", + "name": "Al Musayyib", + "state_id": 3955, + "state_code": "BB", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.77872000", + "longitude": "44.29005000" + }, + { + "id": "134516", + "name": "Imam Qasim", + "state_id": 3955, + "state_code": "BB", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.29799000", + "longitude": "44.68282000" + }, + { + "id": "134531", + "name": "Nāḩīyat Saddat al Hindīyah", + "state_id": 3955, + "state_code": "BB", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.71557000", + "longitude": "44.27857000" + }, + { + "id": "134474", + "name": "Abū Ghurayb", + "state_id": 3959, + "state_code": "BG", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.30563000", + "longitude": "44.18477000" + }, + { + "id": "134473", + "name": "Abu Ghraib District", + "state_id": 3959, + "state_code": "BG", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.29194000", + "longitude": "44.06919000" + }, + { + "id": "134504", + "name": "Baghdad", + "state_id": 3959, + "state_code": "BG", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.34058000", + "longitude": "44.40088000" + }, + { + "id": "134477", + "name": "Al Başrah al Qadīmah", + "state_id": 3960, + "state_code": "BA", + "country_id": 104, + "country_code": "IQ", + "latitude": "30.50316000", + "longitude": "47.81507000" + }, + { + "id": "134479", + "name": "Al Fāw", + "state_id": 3960, + "state_code": "BA", + "country_id": 104, + "country_code": "IQ", + "latitude": "29.97421000", + "longitude": "48.47309000" + }, + { + "id": "134481", + "name": "Al Hārithah", + "state_id": 3960, + "state_code": "BA", + "country_id": 104, + "country_code": "IQ", + "latitude": "30.58481000", + "longitude": "47.76114000" + }, + { + "id": "134502", + "name": "Az Zubayr", + "state_id": 3960, + "state_code": "BA", + "country_id": 104, + "country_code": "IQ", + "latitude": "30.39213000", + "longitude": "47.70175000" + }, + { + "id": "134508", + "name": "Basrah", + "state_id": 3960, + "state_code": "BA", + "country_id": 104, + "country_code": "IQ", + "latitude": "30.50852000", + "longitude": "47.78040000" + }, + { + "id": "134546", + "name": "Umm Qaşr", + "state_id": 3960, + "state_code": "BA", + "country_id": 104, + "country_code": "IQ", + "latitude": "30.03620000", + "longitude": "47.91951000" + }, + { + "id": "134500", + "name": "Ash Shaţrah", + "state_id": 3954, + "state_code": "DQ", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.40906000", + "longitude": "46.17270000" + }, + { + "id": "134528", + "name": "Nasiriyah", + "state_id": 3954, + "state_code": "DQ", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.05799000", + "longitude": "46.25726000" + }, + { + "id": "134529", + "name": "Nāḩiyat al Fuhūd", + "state_id": 3954, + "state_code": "DQ", + "country_id": 104, + "country_code": "IQ", + "latitude": "30.96972000", + "longitude": "46.72278000" + }, + { + "id": "134484", + "name": "Al Miqdādīyah", + "state_id": 3965, + "state_code": "DI", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.97861000", + "longitude": "44.93694000" + }, + { + "id": "134506", + "name": "Baladrūz", + "state_id": 3965, + "state_code": "DI", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.69631000", + "longitude": "45.07782000" + }, + { + "id": "134507", + "name": "Baqubah", + "state_id": 3965, + "state_code": "DI", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.75403000", + "longitude": "44.60518000" + }, + { + "id": "134519", + "name": "Khāliş", + "state_id": 3965, + "state_code": "DI", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.80809000", + "longitude": "44.53343000" + }, + { + "id": "134520", + "name": "Kifrī", + "state_id": 3965, + "state_code": "DI", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.68963000", + "longitude": "44.96057000" + }, + { + "id": "134524", + "name": "Mandalī", + "state_id": 3965, + "state_code": "DI", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.74810000", + "longitude": "45.55503000" + }, + { + "id": "134532", + "name": "Qaḑā’ Kifrī", + "state_id": 3965, + "state_code": "DI", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.52289000", + "longitude": "44.85821000" + }, + { + "id": "134489", + "name": "Al ‘Amādīyah", + "state_id": 3967, + "state_code": "DA", + "country_id": 104, + "country_code": "IQ", + "latitude": "37.09214000", + "longitude": "43.48769000" + }, + { + "id": "134509", + "name": "Batifa", + "state_id": 3967, + "state_code": "DA", + "country_id": 104, + "country_code": "IQ", + "latitude": "37.17454000", + "longitude": "43.01233000" + }, + { + "id": "134512", + "name": "Dihok", + "state_id": 3967, + "state_code": "DA", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.86709000", + "longitude": "42.98845000" + }, + { + "id": "134541", + "name": "Sīnah", + "state_id": 3967, + "state_code": "DA", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.80851000", + "longitude": "43.03935000" + }, + { + "id": "134547", + "name": "Zaxo", + "state_id": 3967, + "state_code": "DA", + "country_id": 104, + "country_code": "IQ", + "latitude": "37.14871000", + "longitude": "42.68591000" + }, + { + "id": "134496", + "name": "Arbil", + "state_id": 3968, + "state_code": "AR", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.19070000", + "longitude": "44.00947000" + }, + { + "id": "134513", + "name": "Erbil", + "state_id": 3968, + "state_code": "AR", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.18333000", + "longitude": "44.01193000" + }, + { + "id": "134522", + "name": "Koysinceq", + "state_id": 3968, + "state_code": "AR", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.08289000", + "longitude": "44.62873000" + }, + { + "id": "134534", + "name": "Ruwāndiz", + "state_id": 3968, + "state_code": "AR", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.61207000", + "longitude": "44.52372000" + }, + { + "id": "134536", + "name": "Shaqlāwah", + "state_id": 3968, + "state_code": "AR", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.40422000", + "longitude": "44.32563000" + }, + { + "id": "134539", + "name": "Soran", + "state_id": 3968, + "state_code": "AR", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.65320000", + "longitude": "44.54407000" + }, + { + "id": "134480", + "name": "Al Hindīyah", + "state_id": 3957, + "state_code": "KA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.54671000", + "longitude": "44.22765000" + }, + { + "id": "134518", + "name": "Karbala", + "state_id": 3957, + "state_code": "KA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.61603000", + "longitude": "44.02488000" + }, + { + "id": "134521", + "name": "Kirkuk", + "state_id": 3971, + "state_code": "KI", + "country_id": 104, + "country_code": "IQ", + "latitude": "35.46806000", + "longitude": "44.39222000" + }, + { + "id": "134490", + "name": "Al ‘Amārah", + "state_id": 3966, + "state_code": "MA", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.83561000", + "longitude": "47.14483000" + }, + { + "id": "134493", + "name": "Al-Mejar Al-Kabi District", + "state_id": 3966, + "state_code": "MA", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.42940000", + "longitude": "47.20355000" + }, + { + "id": "134551", + "name": "‘Alī al Gharbī", + "state_id": 3966, + "state_code": "MA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.46186000", + "longitude": "46.68794000" + }, + { + "id": "134485", + "name": "Al Mishkhāb", + "state_id": 3962, + "state_code": "NA", + "country_id": 104, + "country_code": "IQ", + "latitude": "31.80437000", + "longitude": "44.48930000" + }, + { + "id": "134523", + "name": "Kufa", + "state_id": 3962, + "state_code": "NA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.05114000", + "longitude": "44.44017000" + }, + { + "id": "134527", + "name": "Najaf", + "state_id": 3962, + "state_code": "NA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.02594000", + "longitude": "44.34625000" + }, + { + "id": "134483", + "name": "Al Mawşil al Jadīdah", + "state_id": 3963, + "state_code": "NI", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.33271000", + "longitude": "43.10555000" + }, + { + "id": "134492", + "name": "Al-Hamdaniya", + "state_id": 3963, + "state_code": "NI", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.27093000", + "longitude": "43.37758000" + }, + { + "id": "134499", + "name": "Ash Shaykhān", + "state_id": 3963, + "state_code": "NI", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.69595000", + "longitude": "43.35202000" + }, + { + "id": "134554", + "name": "‘Aqrah", + "state_id": 3963, + "state_code": "NI", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.76038000", + "longitude": "43.89428000" + }, + { + "id": "134525", + "name": "Mosul", + "state_id": 3963, + "state_code": "NI", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.33500000", + "longitude": "43.11889000" + }, + { + "id": "134537", + "name": "Sinjar", + "state_id": 3963, + "state_code": "NI", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.29548000", + "longitude": "41.89315000" + }, + { + "id": "134538", + "name": "Sinjār", + "state_id": 3963, + "state_code": "NI", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.32090000", + "longitude": "41.87656000" + }, + { + "id": "134542", + "name": "Tall ‘Afar", + "state_id": 3963, + "state_code": "NI", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.37913000", + "longitude": "42.44806000" + }, + { + "id": "134543", + "name": "Tallkayf", + "state_id": 3963, + "state_code": "NI", + "country_id": 104, + "country_code": "IQ", + "latitude": "36.49118000", + "longitude": "43.12114000" + }, + { + "id": "134475", + "name": "Ad Dujayl", + "state_id": 3961, + "state_code": "SD", + "country_id": 104, + "country_code": "IQ", + "latitude": "33.84667000", + "longitude": "44.23444000" + }, + { + "id": "134505", + "name": "Balad", + "state_id": 3961, + "state_code": "SD", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.01485000", + "longitude": "44.14574000" + }, + { + "id": "134510", + "name": "Bayjī", + "state_id": 3961, + "state_code": "SD", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.92915000", + "longitude": "43.48878000" + }, + { + "id": "134540", + "name": "Sāmarrā’", + "state_id": 3961, + "state_code": "SD", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.19590000", + "longitude": "43.88568000" + }, + { + "id": "134544", + "name": "Tikrīt", + "state_id": 3961, + "state_code": "SD", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.61581000", + "longitude": "43.67861000" + }, + { + "id": "134545", + "name": "Tozkhurmato", + "state_id": 3961, + "state_code": "SD", + "country_id": 104, + "country_code": "IQ", + "latitude": "34.88808000", + "longitude": "44.63256000" + }, + { + "id": "134498", + "name": "As Sulaymānīyah", + "state_id": 3969, + "state_code": "SU", + "country_id": 104, + "country_code": "IQ", + "latitude": "35.56496000", + "longitude": "45.43290000" + }, + { + "id": "134549", + "name": "Ḩalabjah", + "state_id": 3969, + "state_code": "SU", + "country_id": 104, + "country_code": "IQ", + "latitude": "35.17778000", + "longitude": "45.98611000" + }, + { + "id": "134511", + "name": "Baynjiwayn", + "state_id": 3969, + "state_code": "SU", + "country_id": 104, + "country_code": "IQ", + "latitude": "35.62054000", + "longitude": "45.94908000" + }, + { + "id": "134517", + "name": "Jamjamāl", + "state_id": 3969, + "state_code": "SU", + "country_id": 104, + "country_code": "IQ", + "latitude": "35.53356000", + "longitude": "44.83430000" + }, + { + "id": "134503", + "name": "Aş Şuwayrah", + "state_id": 3970, + "state_code": "WA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.92556000", + "longitude": "44.77583000" + }, + { + "id": "134487", + "name": "Al Ḩayy", + "state_id": 3970, + "state_code": "WA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.17419000", + "longitude": "46.04345000" + }, + { + "id": "134491", + "name": "Al ‘Azīzīyah", + "state_id": 3970, + "state_code": "WA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.90941000", + "longitude": "45.06359000" + }, + { + "id": "134482", + "name": "Al Kūt", + "state_id": 3970, + "state_code": "WA", + "country_id": 104, + "country_code": "IQ", + "latitude": "32.51280000", + "longitude": "45.81817000" + }, + { + "id": "57082", + "name": "Athenry", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.29639000", + "longitude": "-8.74306000" + }, + { + "id": "57092", + "name": "Ballaghaderreen", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.90000000", + "longitude": "-8.58333000" + }, + { + "id": "57093", + "name": "Ballina", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.11667000", + "longitude": "-9.16667000" + }, + { + "id": "57095", + "name": "Ballinasloe", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.32750000", + "longitude": "-8.21944000" + }, + { + "id": "57097", + "name": "Ballinrobe", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.63333000", + "longitude": "-9.23333000" + }, + { + "id": "57099", + "name": "Ballisodare", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.21110000", + "longitude": "-8.50865000" + }, + { + "id": "57107", + "name": "Ballyhaunis", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.76667000", + "longitude": "-8.76667000" + }, + { + "id": "57111", + "name": "Ballymote", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.08333000", + "longitude": "-8.51667000" + }, + { + "id": "57121", + "name": "Bearna", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.25194000", + "longitude": "-9.14972000" + }, + { + "id": "57123", + "name": "Belmullet", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.22500000", + "longitude": "-9.99083000" + }, + { + "id": "57132", + "name": "Boyle", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.96667000", + "longitude": "-8.30000000" + }, + { + "id": "57147", + "name": "Carrick-on-Shannon", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.94694000", + "longitude": "-8.09000000" + }, + { + "id": "57153", + "name": "Castlebar", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.85000000", + "longitude": "-9.30000000" + }, + { + "id": "57164", + "name": "Castlerea", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.76667000", + "longitude": "-8.50000000" + }, + { + "id": "57176", + "name": "Claregalway", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.33861000", + "longitude": "-8.94500000" + }, + { + "id": "57177", + "name": "Claremorris", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.71667000", + "longitude": "-9.00000000" + }, + { + "id": "57178", + "name": "Clifden", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.48907000", + "longitude": "-10.01910000" + }, + { + "id": "57187", + "name": "Collooney", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.18333000", + "longitude": "-8.50000000" + }, + { + "id": "57197", + "name": "County Galway", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.33333000", + "longitude": "-9.00000000" + }, + { + "id": "57198", + "name": "County Leitrim", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.11667000", + "longitude": "-8.00000000" + }, + { + "id": "57204", + "name": "Crossmolina", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.10000000", + "longitude": "-9.31667000" + }, + { + "id": "57253", + "name": "Foxford", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.98070000", + "longitude": "-9.11551000" + }, + { + "id": "57255", + "name": "Gaillimh", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.27194000", + "longitude": "-9.04889000" + }, + { + "id": "57256", + "name": "Galway City", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.28770000", + "longitude": "-9.05004000" + }, + { + "id": "57259", + "name": "Gort", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.06639000", + "longitude": "-8.81667000" + }, + { + "id": "57267", + "name": "Inishcrone", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.21591000", + "longitude": "-9.09197000" + }, + { + "id": "57291", + "name": "Kiltamagh", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.85000000", + "longitude": "-9.00000000" + }, + { + "id": "57293", + "name": "Kinlough", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.45000000", + "longitude": "-8.28333000" + }, + { + "id": "57310", + "name": "Loughrea", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.19694000", + "longitude": "-8.56694000" + }, + { + "id": "57318", + "name": "Manorhamilton", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.30639000", + "longitude": "-8.17611000" + }, + { + "id": "57321", + "name": "Mayo County", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.90000000", + "longitude": "-9.25000000" + }, + { + "id": "57337", + "name": "Moycullen", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.33783000", + "longitude": "-9.18002000" + }, + { + "id": "57356", + "name": "Oranmore", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.26833000", + "longitude": "-8.92000000" + }, + { + "id": "57357", + "name": "Oughterard", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.41667000", + "longitude": "-9.33333000" + }, + { + "id": "57366", + "name": "Portumna", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.08917000", + "longitude": "-8.21889000" + }, + { + "id": "57385", + "name": "Roscommon", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.75000000", + "longitude": "-8.25000000" + }, + { + "id": "57400", + "name": "Sligo", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.25000000", + "longitude": "-8.66667000" + }, + { + "id": "57404", + "name": "Strandhill", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.27194000", + "longitude": "-8.59333000" + }, + { + "id": "57406", + "name": "Swinford", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.95000000", + "longitude": "-8.95000000" + }, + { + "id": "57416", + "name": "Tobercurry", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "54.05000000", + "longitude": "-8.73333000" + }, + { + "id": "57421", + "name": "Tuam", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.51667000", + "longitude": "-8.85000000" + }, + { + "id": "57430", + "name": "Westport", + "state_id": 1087, + "state_code": "C", + "country_id": 105, + "country_code": "IE", + "latitude": "53.80000000", + "longitude": "-9.51667000" + }, + { + "id": "57063", + "name": "Abbeyleix", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.91331000", + "longitude": "-7.34456000" + }, + { + "id": "57068", + "name": "An Iarmhí", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.50000000", + "longitude": "-7.50000000" + }, + { + "id": "57069", + "name": "An Longfort", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.66667000", + "longitude": "-7.75000000" + }, + { + "id": "57070", + "name": "An Mhí", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.66667000", + "longitude": "-6.66667000" + }, + { + "id": "57071", + "name": "An Muileann gCearr", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.53333000", + "longitude": "-7.35000000" + }, + { + "id": "57072", + "name": "An Ros", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.52424000", + "longitude": "-6.10497000" + }, + { + "id": "57074", + "name": "Ardee", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.85972000", + "longitude": "-6.54056000" + }, + { + "id": "57076", + "name": "Arklow", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.79306000", + "longitude": "-6.14139000" + }, + { + "id": "57077", + "name": "Artane", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38712000", + "longitude": "-6.21380000" + }, + { + "id": "57078", + "name": "Ashbourne", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.51163000", + "longitude": "-6.39821000" + }, + { + "id": "57079", + "name": "Ashford", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.00833000", + "longitude": "-6.11139000" + }, + { + "id": "57081", + "name": "Athboy", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.62327000", + "longitude": "-6.91434000" + }, + { + "id": "57083", + "name": "Athgarvan", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.15229000", + "longitude": "-6.78173000" + }, + { + "id": "57084", + "name": "Athlone", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.43333000", + "longitude": "-7.95000000" + }, + { + "id": "57085", + "name": "Athy", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.99139000", + "longitude": "-6.98028000" + }, + { + "id": "57086", + "name": "Aughrim", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.85333000", + "longitude": "-6.32750000" + }, + { + "id": "57087", + "name": "Bagenalstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.70031000", + "longitude": "-6.96181000" + }, + { + "id": "57089", + "name": "Balally", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.27504000", + "longitude": "-6.23594000" + }, + { + "id": "57090", + "name": "Balbriggan", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.60846000", + "longitude": "-6.18310000" + }, + { + "id": "57091", + "name": "Baldoyle", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.39972000", + "longitude": "-6.12583000" + }, + { + "id": "57096", + "name": "Ballinroad", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.51789000", + "longitude": "-6.40619000" + }, + { + "id": "57098", + "name": "Ballinteer", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.27409000", + "longitude": "-6.25397000" + }, + { + "id": "57100", + "name": "Ballivor", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.53167000", + "longitude": "-6.96111000" + }, + { + "id": "57101", + "name": "Ballyboden", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.28056000", + "longitude": "-6.31639000" + }, + { + "id": "57105", + "name": "Ballyfermot", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.34283000", + "longitude": "-6.35480000" + }, + { + "id": "57106", + "name": "Ballygerry", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.24917000", + "longitude": "-6.35739000" + }, + { + "id": "57109", + "name": "Ballylinan", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.94497000", + "longitude": "-7.04073000" + }, + { + "id": "57110", + "name": "Ballymahon", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.56667000", + "longitude": "-7.76667000" + }, + { + "id": "57112", + "name": "Ballymun", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.39807000", + "longitude": "-6.26693000" + }, + { + "id": "57113", + "name": "Ballyragget", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.78889000", + "longitude": "-7.33028000" + }, + { + "id": "57115", + "name": "Balrothery", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.58828000", + "longitude": "-6.18728000" + }, + { + "id": "57116", + "name": "Baltinglass", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.93722000", + "longitude": "-6.70917000" + }, + { + "id": "57117", + "name": "Banagher", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.18861000", + "longitude": "-7.98667000" + }, + { + "id": "57120", + "name": "Bayside", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38895000", + "longitude": "-6.14041000" + }, + { + "id": "57122", + "name": "Beaumont", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38721000", + "longitude": "-6.22713000" + }, + { + "id": "57125", + "name": "Birr", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.09139000", + "longitude": "-7.91333000" + }, + { + "id": "57126", + "name": "Blackrock", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.30150000", + "longitude": "-6.17780000" + }, + { + "id": "57127", + "name": "Blanchardstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38806000", + "longitude": "-6.37556000" + }, + { + "id": "57129", + "name": "Blessington", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.17000000", + "longitude": "-6.53250000" + }, + { + "id": "57130", + "name": "Bonnybrook", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.39835000", + "longitude": "-6.20749000" + }, + { + "id": "57131", + "name": "Booterstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.30447000", + "longitude": "-6.19985000" + }, + { + "id": "57133", + "name": "Bray", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.20278000", + "longitude": "-6.09833000" + }, + { + "id": "57134", + "name": "Bunclody", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.65530000", + "longitude": "-6.65359000" + }, + { + "id": "57137", + "name": "Cabinteely", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.26973000", + "longitude": "-6.16058000" + }, + { + "id": "57138", + "name": "Cabra", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.36694000", + "longitude": "-6.29444000" + }, + { + "id": "57142", + "name": "Callan", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.54500000", + "longitude": "-7.39111000" + }, + { + "id": "57143", + "name": "Carlingford", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "54.04000000", + "longitude": "-6.18833000" + }, + { + "id": "57144", + "name": "Carlow", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.84083000", + "longitude": "-6.92611000" + }, + { + "id": "57146", + "name": "Carnew", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.70806000", + "longitude": "-6.49444000" + }, + { + "id": "57154", + "name": "Castlebellingham", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.90083000", + "longitude": "-6.39028000" + }, + { + "id": "57156", + "name": "Castlebridge", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.38639000", + "longitude": "-6.44944000" + }, + { + "id": "57157", + "name": "Castlecomer", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.80611000", + "longitude": "-7.21056000" + }, + { + "id": "57159", + "name": "Castledermot", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.90889000", + "longitude": "-6.84222000" + }, + { + "id": "57161", + "name": "Castleknock", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.37483000", + "longitude": "-6.36336000" + }, + { + "id": "57163", + "name": "Castlepollard", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.67935000", + "longitude": "-7.29736000" + }, + { + "id": "57165", + "name": "Castletown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.72306000", + "longitude": "-6.18944000" + }, + { + "id": "57167", + "name": "Celbridge", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.34165000", + "longitude": "-6.54419000" + }, + { + "id": "57168", + "name": "Chapelizod", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.34846000", + "longitude": "-6.34301000" + }, + { + "id": "57169", + "name": "Charlesland", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.12771000", + "longitude": "-6.06347000" + }, + { + "id": "57170", + "name": "Cherry Orchard", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.33605000", + "longitude": "-6.37799000" + }, + { + "id": "57171", + "name": "Cherryville", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.15694000", + "longitude": "-6.96667000" + }, + { + "id": "57174", + "name": "Clane", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.29139000", + "longitude": "-6.68917000" + }, + { + "id": "57175", + "name": "Clara", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.34250000", + "longitude": "-7.61389000" + }, + { + "id": "57179", + "name": "Clogherhead", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.79361000", + "longitude": "-6.23750000" + }, + { + "id": "57181", + "name": "Clondalkin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.32444000", + "longitude": "-6.39722000" + }, + { + "id": "57183", + "name": "Clonskeagh", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.31467000", + "longitude": "-6.23148000" + }, + { + "id": "57188", + "name": "Confey", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.37923000", + "longitude": "-6.49052000" + }, + { + "id": "57190", + "name": "Coolock", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38870000", + "longitude": "-6.19998000" + }, + { + "id": "57194", + "name": "County Carlow", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.66667000", + "longitude": "-6.83333000" + }, + { + "id": "57201", + "name": "Courtown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.64424000", + "longitude": "-6.22899000" + }, + { + "id": "57205", + "name": "Crumlin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.32154000", + "longitude": "-6.31439000" + }, + { + "id": "57206", + "name": "Daingean", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.29611000", + "longitude": "-7.28944000" + }, + { + "id": "57207", + "name": "Dalkey", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.27833000", + "longitude": "-6.10028000" + }, + { + "id": "57208", + "name": "Darndale", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.39948000", + "longitude": "-6.18886000" + }, + { + "id": "57236", + "name": "Dún Laoghaire", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.29395000", + "longitude": "-6.13586000" + }, + { + "id": "57237", + "name": "Dún Laoghaire-Rathdown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.29436000", + "longitude": "-6.13489000" + }, + { + "id": "57209", + "name": "Derrinturn", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.34167000", + "longitude": "-6.94111000" + }, + { + "id": "57213", + "name": "Dollymount", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.36489000", + "longitude": "-6.18032000" + }, + { + "id": "57214", + "name": "Donabate", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.48722000", + "longitude": "-6.15194000" + }, + { + "id": "57215", + "name": "Donaghmede", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.39845000", + "longitude": "-6.16179000" + }, + { + "id": "57217", + "name": "Donnybrook", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.31375000", + "longitude": "-6.22274000" + }, + { + "id": "57218", + "name": "Donnycarney", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.37350000", + "longitude": "-6.20976000" + }, + { + "id": "57219", + "name": "Drogheda", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.71889000", + "longitude": "-6.34778000" + }, + { + "id": "57220", + "name": "Droichead Nua", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.18194000", + "longitude": "-6.79667000" + }, + { + "id": "57221", + "name": "Dromiskin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.92538000", + "longitude": "-6.40292000" + }, + { + "id": "57222", + "name": "Drumcondra", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.37058000", + "longitude": "-6.25298000" + }, + { + "id": "57223", + "name": "Dublin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.33306000", + "longitude": "-6.24889000" + }, + { + "id": "57224", + "name": "Dublin City", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.35512000", + "longitude": "-6.24922000" + }, + { + "id": "57225", + "name": "Duleek", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.65667000", + "longitude": "-6.41917000" + }, + { + "id": "57226", + "name": "Dunboyne", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.41901000", + "longitude": "-6.47375000" + }, + { + "id": "57227", + "name": "Dundalk", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "54.00000000", + "longitude": "-6.41667000" + }, + { + "id": "57228", + "name": "Dundrum", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.29067000", + "longitude": "-6.25714000" + }, + { + "id": "57231", + "name": "Dunleer", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.83500000", + "longitude": "-6.39611000" + }, + { + "id": "57235", + "name": "Dunshaughlin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.51250000", + "longitude": "-6.54000000" + }, + { + "id": "57238", + "name": "Eadestown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.20278000", + "longitude": "-6.57806000" + }, + { + "id": "57239", + "name": "Edenderry", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.33948000", + "longitude": "-7.04752000" + }, + { + "id": "57240", + "name": "Edgeworthstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.70000000", + "longitude": "-7.61667000" + }, + { + "id": "57241", + "name": "Enfield", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.41419000", + "longitude": "-6.83229000" + }, + { + "id": "57243", + "name": "Enniscorthy", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.50083000", + "longitude": "-6.55778000" + }, + { + "id": "57244", + "name": "Enniskerry", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.19250000", + "longitude": "-6.16917000" + }, + { + "id": "57245", + "name": "Fairview", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.36597000", + "longitude": "-6.23985000" + }, + { + "id": "57246", + "name": "Ferbane", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.26944000", + "longitude": "-7.82694000" + }, + { + "id": "57248", + "name": "Ferns", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.58833000", + "longitude": "-6.49972000" + }, + { + "id": "57250", + "name": "Fingal County", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.45909000", + "longitude": "-6.21942000" + }, + { + "id": "57251", + "name": "Finglas", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38917000", + "longitude": "-6.29694000" + }, + { + "id": "57252", + "name": "Firhouse", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.28167000", + "longitude": "-6.33917000" + }, + { + "id": "57254", + "name": "Foxrock", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.26667000", + "longitude": "-6.17417000" + }, + { + "id": "57257", + "name": "Glasnevin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.37851000", + "longitude": "-6.28028000" + }, + { + "id": "57258", + "name": "Gorey", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.67472000", + "longitude": "-6.29250000" + }, + { + "id": "57260", + "name": "Graiguenamanagh", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.54028000", + "longitude": "-6.95472000" + }, + { + "id": "57261", + "name": "Granard", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.77928000", + "longitude": "-7.49429000" + }, + { + "id": "57262", + "name": "Greenhills", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.33467000", + "longitude": "-6.30302000" + }, + { + "id": "57263", + "name": "Greystones", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.14083000", + "longitude": "-6.06306000" + }, + { + "id": "57265", + "name": "Hartstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.39306000", + "longitude": "-6.42694000" + }, + { + "id": "57266", + "name": "Howth", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38778000", + "longitude": "-6.06528000" + }, + { + "id": "57268", + "name": "Jobstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.27866000", + "longitude": "-6.40803000" + }, + { + "id": "57269", + "name": "Johnstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.23833000", + "longitude": "-6.62222000" + }, + { + "id": "57271", + "name": "Kells", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.72639000", + "longitude": "-6.87917000" + }, + { + "id": "57273", + "name": "Kentstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.62754000", + "longitude": "-6.52674000" + }, + { + "id": "57274", + "name": "Kilbeggan", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.36944000", + "longitude": "-7.50333000" + }, + { + "id": "57275", + "name": "Kilcock", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.40222000", + "longitude": "-6.67083000" + }, + { + "id": "57276", + "name": "Kilcoole", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.10278000", + "longitude": "-6.06500000" + }, + { + "id": "57277", + "name": "Kilcullen", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.13028000", + "longitude": "-6.74444000" + }, + { + "id": "57278", + "name": "Kildare", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.16667000", + "longitude": "-6.75000000" + }, + { + "id": "57279", + "name": "Kilkenny", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.58333000", + "longitude": "-7.25000000" + }, + { + "id": "57280", + "name": "Kill", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.25139000", + "longitude": "-6.59167000" + }, + { + "id": "57282", + "name": "Killester", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.37322000", + "longitude": "-6.20431000" + }, + { + "id": "57286", + "name": "Kilmacanoge", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.16722000", + "longitude": "-6.13361000" + }, + { + "id": "57288", + "name": "Kilpedder", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.10917000", + "longitude": "-6.10667000" + }, + { + "id": "57289", + "name": "Kilquade", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.09743000", + "longitude": "-6.08411000" + }, + { + "id": "57294", + "name": "Kinnegad", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.45222000", + "longitude": "-7.09972000" + }, + { + "id": "57296", + "name": "Kinsealy-Drinan", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.44395000", + "longitude": "-6.20334000" + }, + { + "id": "57297", + "name": "Knocklyon", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.28030000", + "longitude": "-6.33130000" + }, + { + "id": "57298", + "name": "Lanesborough", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.66667000", + "longitude": "-7.98333000" + }, + { + "id": "57299", + "name": "Laois", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.00000000", + "longitude": "-7.40000000" + }, + { + "id": "57300", + "name": "Laytown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.68194000", + "longitude": "-6.23917000" + }, + { + "id": "57314", + "name": "Lú", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.83333000", + "longitude": "-6.50000000" + }, + { + "id": "57302", + "name": "Leixlip", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.36583000", + "longitude": "-6.49556000" + }, + { + "id": "57305", + "name": "Little Bray", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.20444000", + "longitude": "-6.12083000" + }, + { + "id": "57306", + "name": "Loch Garman", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.50000000", + "longitude": "-6.66667000" + }, + { + "id": "57307", + "name": "Longford", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.72536000", + "longitude": "-7.79823000" + }, + { + "id": "57308", + "name": "Longwood", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.45389000", + "longitude": "-6.92194000" + }, + { + "id": "57309", + "name": "Loughlinstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.24389000", + "longitude": "-6.13306000" + }, + { + "id": "57311", + "name": "Lucan", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.35736000", + "longitude": "-6.44859000" + }, + { + "id": "57313", + "name": "Lusk", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.52743000", + "longitude": "-6.16423000" + }, + { + "id": "57316", + "name": "Malahide", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.45083000", + "longitude": "-6.15444000" + }, + { + "id": "57319", + "name": "Marino", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.37022000", + "longitude": "-6.23646000" + }, + { + "id": "57320", + "name": "Maynooth", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38500000", + "longitude": "-6.59361000" + }, + { + "id": "57324", + "name": "Milltown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.31301000", + "longitude": "-6.24530000" + }, + { + "id": "57326", + "name": "Moate", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.39389000", + "longitude": "-7.71722000" + }, + { + "id": "57328", + "name": "Monasterevin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.14056000", + "longitude": "-7.06639000" + }, + { + "id": "57329", + "name": "Monkstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.29308000", + "longitude": "-6.15312000" + }, + { + "id": "57330", + "name": "Mooncoin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.28944000", + "longitude": "-7.24833000" + }, + { + "id": "57331", + "name": "Moone", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.97556000", + "longitude": "-6.81500000" + }, + { + "id": "57333", + "name": "Mount Merrion", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.30008000", + "longitude": "-6.21504000" + }, + { + "id": "57334", + "name": "Mountmellick", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.11361000", + "longitude": "-7.32000000" + }, + { + "id": "57335", + "name": "Mountrath", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.99889000", + "longitude": "-7.47278000" + }, + { + "id": "57341", + "name": "Naas", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.21583000", + "longitude": "-6.66694000" + }, + { + "id": "57342", + "name": "Navan", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.65278000", + "longitude": "-6.68139000" + }, + { + "id": "57345", + "name": "New Ross", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.39667000", + "longitude": "-6.93667000" + }, + { + "id": "57346", + "name": "Newcastle", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.30111000", + "longitude": "-6.50222000" + }, + { + "id": "57351", + "name": "Newtown Trim", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.55611000", + "longitude": "-6.77000000" + }, + { + "id": "57352", + "name": "Newtownmountkennedy", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.09052000", + "longitude": "-6.11149000" + }, + { + "id": "57353", + "name": "Old Kilcullen", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.10639000", + "longitude": "-6.76528000" + }, + { + "id": "57354", + "name": "Oldbawn", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.27556000", + "longitude": "-6.36750000" + }, + { + "id": "57355", + "name": "Oldcastle", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.76648000", + "longitude": "-7.16284000" + }, + { + "id": "57358", + "name": "Palmerstown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.35019000", + "longitude": "-6.37778000" + }, + { + "id": "57360", + "name": "Piltown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.35333000", + "longitude": "-7.34028000" + }, + { + "id": "57361", + "name": "Portarlington", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.16222000", + "longitude": "-7.19111000" + }, + { + "id": "57362", + "name": "Portlaoise", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.03441000", + "longitude": "-7.29979000" + }, + { + "id": "57364", + "name": "Portmarnock", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.42306000", + "longitude": "-6.13750000" + }, + { + "id": "57365", + "name": "Portraine", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.49667000", + "longitude": "-6.11111000" + }, + { + "id": "57367", + "name": "Prosperous", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.29028000", + "longitude": "-6.75389000" + }, + { + "id": "57368", + "name": "Raheny", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38681000", + "longitude": "-6.18067000" + }, + { + "id": "57371", + "name": "Rathangan", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.22139000", + "longitude": "-6.99500000" + }, + { + "id": "57372", + "name": "Rathcoole", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.28278000", + "longitude": "-6.47278000" + }, + { + "id": "57374", + "name": "Rathdowney", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.85472000", + "longitude": "-7.58028000" + }, + { + "id": "57375", + "name": "Rathdrum", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.92639000", + "longitude": "-6.23556000" + }, + { + "id": "57376", + "name": "Rathgar", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.31457000", + "longitude": "-6.27500000" + }, + { + "id": "57378", + "name": "Rathmines", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.32028000", + "longitude": "-6.26333000" + }, + { + "id": "57379", + "name": "Rathnew", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.99056000", + "longitude": "-6.08528000" + }, + { + "id": "57380", + "name": "Rathwire", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.50767000", + "longitude": "-7.13510000" + }, + { + "id": "57381", + "name": "Ratoath", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.50806000", + "longitude": "-6.46250000" + }, + { + "id": "57382", + "name": "Rialto", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.33625000", + "longitude": "-6.29718000" + }, + { + "id": "57383", + "name": "Ringsend", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.34194000", + "longitude": "-6.22639000" + }, + { + "id": "57384", + "name": "Rochfortbridge", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.41417000", + "longitude": "-7.29611000" + }, + { + "id": "57387", + "name": "Rosslare", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.27583000", + "longitude": "-6.38444000" + }, + { + "id": "57389", + "name": "Saggart", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.28028000", + "longitude": "-6.44444000" + }, + { + "id": "57390", + "name": "Sallins", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.24889000", + "longitude": "-6.66611000" + }, + { + "id": "57391", + "name": "Sallynoggin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.27917000", + "longitude": "-6.14058000" + }, + { + "id": "57392", + "name": "Sandyford", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.27470000", + "longitude": "-6.22530000" + }, + { + "id": "57393", + "name": "Sandymount", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.32815000", + "longitude": "-6.22224000" + }, + { + "id": "57394", + "name": "Shankill", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.22611000", + "longitude": "-6.12444000" + }, + { + "id": "57397", + "name": "Skerries", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.58278000", + "longitude": "-6.10833000" + }, + { + "id": "57399", + "name": "Slane", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.71000000", + "longitude": "-6.54333000" + }, + { + "id": "57401", + "name": "South Dublin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.28595000", + "longitude": "-6.37739000" + }, + { + "id": "57402", + "name": "Stamullin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.62889000", + "longitude": "-6.26833000" + }, + { + "id": "57403", + "name": "Stradbally", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.01556000", + "longitude": "-7.15278000" + }, + { + "id": "57405", + "name": "Sutton", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.38947000", + "longitude": "-6.11059000" + }, + { + "id": "57407", + "name": "Swords", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.45972000", + "longitude": "-6.21806000" + }, + { + "id": "57408", + "name": "Tallaght", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.28590000", + "longitude": "-6.37344000" + }, + { + "id": "57410", + "name": "Templeogue", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.29528000", + "longitude": "-6.30889000" + }, + { + "id": "57411", + "name": "Terenure", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.30972000", + "longitude": "-6.28528000" + }, + { + "id": "57412", + "name": "Termonfeckin", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.76333000", + "longitude": "-6.26778000" + }, + { + "id": "57413", + "name": "Thomastown", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.52667000", + "longitude": "-7.13722000" + }, + { + "id": "57419", + "name": "Trim", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.55500000", + "longitude": "-6.79167000" + }, + { + "id": "57422", + "name": "Tullamore", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.27389000", + "longitude": "-7.48889000" + }, + { + "id": "57423", + "name": "Tullow", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "52.80028000", + "longitude": "-6.73694000" + }, + { + "id": "57424", + "name": "Tullyallen", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.73611000", + "longitude": "-6.42278000" + }, + { + "id": "57425", + "name": "Uíbh Fhailí", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.25000000", + "longitude": "-7.50000000" + }, + { + "id": "57426", + "name": "Valleymount", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.10389000", + "longitude": "-6.55361000" + }, + { + "id": "57432", + "name": "Wicklow", + "state_id": 1073, + "state_code": "L", + "country_id": 105, + "country_code": "IE", + "latitude": "53.00000000", + "longitude": "-6.41667000" + }, + { + "id": "57062", + "name": "Abbeyfeale", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.38139000", + "longitude": "-9.30250000" + }, + { + "id": "57064", + "name": "Adare", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.56194000", + "longitude": "-8.79556000" + }, + { + "id": "57065", + "name": "Aghada", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.83917000", + "longitude": "-8.21222000" + }, + { + "id": "57067", + "name": "An Clár", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.83333000", + "longitude": "-9.00000000" + }, + { + "id": "57073", + "name": "Annacotty", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.66768000", + "longitude": "-8.53121000" + }, + { + "id": "57075", + "name": "Ardnacrusha", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.70908000", + "longitude": "-8.61431000" + }, + { + "id": "57080", + "name": "Askeaton", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.59972000", + "longitude": "-8.97556000" + }, + { + "id": "57094", + "name": "Ballina", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.80778000", + "longitude": "-8.43556000" + }, + { + "id": "57103", + "name": "Ballybunnion", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.51108000", + "longitude": "-9.67097000" + }, + { + "id": "57118", + "name": "Bandon", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.74694000", + "longitude": "-8.74250000" + }, + { + "id": "57119", + "name": "Bantry", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.68333000", + "longitude": "-9.45000000" + }, + { + "id": "57128", + "name": "Blarney", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.93333000", + "longitude": "-8.56667000" + }, + { + "id": "57139", + "name": "Caherconlish", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.59361000", + "longitude": "-8.47028000" + }, + { + "id": "57140", + "name": "Cahersiveen", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.94861000", + "longitude": "-10.22222000" + }, + { + "id": "57141", + "name": "Cahir", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.37694000", + "longitude": "-7.92167000" + }, + { + "id": "57148", + "name": "Carrick-on-Suir", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.34917000", + "longitude": "-7.41306000" + }, + { + "id": "57150", + "name": "Carrigaline", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.81167000", + "longitude": "-8.39861000" + }, + { + "id": "57151", + "name": "Carrigtwohill", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.90833000", + "longitude": "-8.26333000" + }, + { + "id": "57152", + "name": "Cashel", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.51583000", + "longitude": "-7.88556000" + }, + { + "id": "57158", + "name": "Castleconnell", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.71389000", + "longitude": "-8.49944000" + }, + { + "id": "57160", + "name": "Castleisland", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.23333000", + "longitude": "-9.46667000" + }, + { + "id": "57162", + "name": "Castlemartyr", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.91028000", + "longitude": "-8.05389000" + }, + { + "id": "57172", + "name": "Ciarraí", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.16667000", + "longitude": "-9.75000000" + }, + { + "id": "57173", + "name": "Cill Airne", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.05980000", + "longitude": "-9.50858000" + }, + { + "id": "57180", + "name": "Clonakilty", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.62306000", + "longitude": "-8.87056000" + }, + { + "id": "57184", + "name": "Cloyne", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.86278000", + "longitude": "-8.12444000" + }, + { + "id": "57185", + "name": "Cluain Meala", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.35500000", + "longitude": "-7.70389000" + }, + { + "id": "57186", + "name": "Cobh", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.85046000", + "longitude": "-8.29480000" + }, + { + "id": "57192", + "name": "Cork", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.89797000", + "longitude": "-8.47061000" + }, + { + "id": "57193", + "name": "Cork City", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.89755000", + "longitude": "-8.46773000" + }, + { + "id": "57195", + "name": "County Cork", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.96667000", + "longitude": "-8.58333000" + }, + { + "id": "57200", + "name": "County Tipperary", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.66667000", + "longitude": "-7.83333000" + }, + { + "id": "57202", + "name": "Croom", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.51944000", + "longitude": "-8.71778000" + }, + { + "id": "57203", + "name": "Crosshaven", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.79833000", + "longitude": "-8.30083000" + }, + { + "id": "57210", + "name": "Derry", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.58666000", + "longitude": "-9.05026000" + }, + { + "id": "57212", + "name": "Dingle", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.14083000", + "longitude": "-10.26889000" + }, + { + "id": "57229", + "name": "Dungarvan", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.08806000", + "longitude": "-7.62528000" + }, + { + "id": "57233", + "name": "Dunmanway", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.71667000", + "longitude": "-9.11667000" + }, + { + "id": "57234", + "name": "Dunmore East", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.15108000", + "longitude": "-6.99872000" + }, + { + "id": "57242", + "name": "Ennis", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.84361000", + "longitude": "-8.98639000" + }, + { + "id": "57247", + "name": "Fermoy", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.13583000", + "longitude": "-8.27583000" + }, + { + "id": "57249", + "name": "Fethard", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.46722000", + "longitude": "-7.69111000" + }, + { + "id": "57270", + "name": "Kanturk", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.16667000", + "longitude": "-8.90000000" + }, + { + "id": "57272", + "name": "Kenmare", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.88333000", + "longitude": "-9.58333000" + }, + { + "id": "57281", + "name": "Killaloe", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.80667000", + "longitude": "-8.44361000" + }, + { + "id": "57283", + "name": "Killorglin", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.10000000", + "longitude": "-9.78333000" + }, + { + "id": "57284", + "name": "Killumney", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.87243000", + "longitude": "-8.64781000" + }, + { + "id": "57287", + "name": "Kilmallock", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.40000000", + "longitude": "-8.57722000" + }, + { + "id": "57290", + "name": "Kilrush", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.63972000", + "longitude": "-9.48333000" + }, + { + "id": "57295", + "name": "Kinsale", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.70750000", + "longitude": "-8.53056000" + }, + { + "id": "57304", + "name": "Listowel", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.44639000", + "longitude": "-9.48500000" + }, + { + "id": "57312", + "name": "Luimneach", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.66472000", + "longitude": "-8.62306000" + }, + { + "id": "57315", + "name": "Macroom", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.90663000", + "longitude": "-8.96968000" + }, + { + "id": "57317", + "name": "Mallow", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.13333000", + "longitude": "-8.63333000" + }, + { + "id": "57322", + "name": "Midleton", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.91526000", + "longitude": "-8.18052000" + }, + { + "id": "57323", + "name": "Millstreet", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.05935000", + "longitude": "-9.06031000" + }, + { + "id": "57325", + "name": "Mitchelstown", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.26583000", + "longitude": "-8.26806000" + }, + { + "id": "57332", + "name": "Moroe", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.65111000", + "longitude": "-8.39611000" + }, + { + "id": "57338", + "name": "Moyross", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.68198000", + "longitude": "-8.63955000" + }, + { + "id": "57343", + "name": "Nenagh", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.86194000", + "longitude": "-8.19667000" + }, + { + "id": "57344", + "name": "Nenagh Bridge", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.88167000", + "longitude": "-8.19583000" + }, + { + "id": "57347", + "name": "Newcastle West", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.44917000", + "longitude": "-9.06111000" + }, + { + "id": "57348", + "name": "Newmarket on Fergus", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.76000000", + "longitude": "-8.89556000" + }, + { + "id": "57349", + "name": "Newport", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.71111000", + "longitude": "-8.40972000" + }, + { + "id": "57359", + "name": "Passage West", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.87389000", + "longitude": "-8.34444000" + }, + { + "id": "57363", + "name": "Portlaw", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.28833000", + "longitude": "-7.32056000" + }, + { + "id": "57373", + "name": "Rathcormac", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.07694000", + "longitude": "-8.28194000" + }, + { + "id": "57377", + "name": "Rathkeale", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.52444000", + "longitude": "-8.93806000" + }, + { + "id": "57388", + "name": "Ráth Luirc", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.35000000", + "longitude": "-8.68333000" + }, + { + "id": "57386", + "name": "Roscrea", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.95111000", + "longitude": "-7.80167000" + }, + { + "id": "57395", + "name": "Shannon", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.70389000", + "longitude": "-8.86417000" + }, + { + "id": "57396", + "name": "Sixmilebridge", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.74139000", + "longitude": "-8.77417000" + }, + { + "id": "57398", + "name": "Skibbereen", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.55000000", + "longitude": "-9.26667000" + }, + { + "id": "57409", + "name": "Templemore", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.79472000", + "longitude": "-7.83389000" + }, + { + "id": "57414", + "name": "Thurles", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.68194000", + "longitude": "-7.80222000" + }, + { + "id": "57415", + "name": "Tipperary", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.47333000", + "longitude": "-8.15583000" + }, + { + "id": "57417", + "name": "Tower", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.92599000", + "longitude": "-8.60747000" + }, + { + "id": "57418", + "name": "Tralee", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.27042000", + "longitude": "-9.70264000" + }, + { + "id": "57420", + "name": "Trá Mhór", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.16235000", + "longitude": "-7.15244000" + }, + { + "id": "57428", + "name": "Waterford", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.25833000", + "longitude": "-7.11194000" + }, + { + "id": "57429", + "name": "Watergrasshill", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "52.01139000", + "longitude": "-8.34417000" + }, + { + "id": "57431", + "name": "Whitegate", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.83056000", + "longitude": "-8.22972000" + }, + { + "id": "57433", + "name": "Youghal", + "state_id": 1080, + "state_code": "M", + "country_id": 105, + "country_code": "IE", + "latitude": "51.95000000", + "longitude": "-7.85056000" + }, + { + "id": "57066", + "name": "An Cabhán", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "53.91667000", + "longitude": "-7.25000000" + }, + { + "id": "57088", + "name": "Bailieborough", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "53.91667000", + "longitude": "-6.96667000" + }, + { + "id": "57102", + "name": "Ballybofey", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.80000000", + "longitude": "-7.78333000" + }, + { + "id": "57104", + "name": "Ballyconnell", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.11667000", + "longitude": "-7.58333000" + }, + { + "id": "57108", + "name": "Ballyjamesduff", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "53.86528000", + "longitude": "-7.20278000" + }, + { + "id": "57114", + "name": "Ballyshannon", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.50000000", + "longitude": "-8.18333000" + }, + { + "id": "57124", + "name": "Belturbet", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.10000000", + "longitude": "-7.45000000" + }, + { + "id": "57135", + "name": "Buncrana", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "55.13333000", + "longitude": "-7.45000000" + }, + { + "id": "57136", + "name": "Bundoran", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.47782000", + "longitude": "-8.28094000" + }, + { + "id": "57145", + "name": "Carndonagh", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "55.25000000", + "longitude": "-7.26667000" + }, + { + "id": "57149", + "name": "Carrickmacross", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "53.97278000", + "longitude": "-6.71889000" + }, + { + "id": "57155", + "name": "Castleblayney", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.11667000", + "longitude": "-6.73333000" + }, + { + "id": "57166", + "name": "Cavan", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "53.99083000", + "longitude": "-7.36056000" + }, + { + "id": "57182", + "name": "Clones", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.18333000", + "longitude": "-7.23333000" + }, + { + "id": "57189", + "name": "Convoy", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.86083000", + "longitude": "-7.66556000" + }, + { + "id": "57191", + "name": "Cootehill", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.07250000", + "longitude": "-7.08194000" + }, + { + "id": "57196", + "name": "County Donegal", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.91667000", + "longitude": "-8.00000000" + }, + { + "id": "57199", + "name": "County Monaghan", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.25000000", + "longitude": "-7.00000000" + }, + { + "id": "57211", + "name": "Derrybeg", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "55.08333000", + "longitude": "-8.28944000" + }, + { + "id": "57216", + "name": "Donegal", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.65378000", + "longitude": "-8.11134000" + }, + { + "id": "57230", + "name": "Dungloe", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.95111000", + "longitude": "-8.35917000" + }, + { + "id": "57232", + "name": "Dunlewy", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "55.01667000", + "longitude": "-8.10000000" + }, + { + "id": "57264", + "name": "Gweedore", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "55.05028000", + "longitude": "-8.23194000" + }, + { + "id": "57285", + "name": "Killybegs", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.63333000", + "longitude": "-8.45000000" + }, + { + "id": "57292", + "name": "Kingscourt", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "53.90806000", + "longitude": "-6.80556000" + }, + { + "id": "57301", + "name": "Leifear", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.83194000", + "longitude": "-7.48361000" + }, + { + "id": "57303", + "name": "Letterkenny", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.95000000", + "longitude": "-7.73333000" + }, + { + "id": "57327", + "name": "Monaghan", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.25000000", + "longitude": "-6.96667000" + }, + { + "id": "57336", + "name": "Moville", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "55.19153000", + "longitude": "-7.03873000" + }, + { + "id": "57339", + "name": "Muff", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "55.06667000", + "longitude": "-7.26667000" + }, + { + "id": "57340", + "name": "Mullagh", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "53.81306000", + "longitude": "-6.95139000" + }, + { + "id": "57350", + "name": "Newtown Cunningham", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.99639000", + "longitude": "-7.51917000" + }, + { + "id": "57369", + "name": "Ramelton", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "55.03673000", + "longitude": "-7.64923000" + }, + { + "id": "57370", + "name": "Raphoe", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "54.87472000", + "longitude": "-7.59833000" + }, + { + "id": "57427", + "name": "Virginia", + "state_id": 1086, + "state_code": "U", + "country_id": 105, + "country_code": "IE", + "latitude": "53.83389000", + "longitude": "-7.07556000" + }, + { + "id": "57580", + "name": "Ẕur Moshe", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.29819000", + "longitude": "34.91313000" + }, + { + "id": "57446", + "name": "Bet Dagan", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.00191000", + "longitude": "34.82977000" + }, + { + "id": "57449", + "name": "Bet Yiẕẖaq", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.32751000", + "longitude": "34.88878000" + }, + { + "id": "57450", + "name": "Bnei Ayish", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.78333000", + "longitude": "34.75000000" + }, + { + "id": "57467", + "name": "Eṭ Ṭaiyiba", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.26616000", + "longitude": "35.00893000" + }, + { + "id": "57463", + "name": "Elyakhin", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.40793000", + "longitude": "34.92433000" + }, + { + "id": "57466", + "name": "Even Yehuda", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.26959000", + "longitude": "34.88759000" + }, + { + "id": "57468", + "name": "Gan Yavne", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.78737000", + "longitude": "34.70659000" + }, + { + "id": "57469", + "name": "Ganei Tikva", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.05971000", + "longitude": "34.87320000" + }, + { + "id": "57470", + "name": "Gedera", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.81456000", + "longitude": "34.77998000" + }, + { + "id": "57478", + "name": "Hod HaSharon", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.15934000", + "longitude": "34.89320000" + }, + { + "id": "57483", + "name": "Jaljūlya", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.15470000", + "longitude": "34.95372000" + }, + { + "id": "57491", + "name": "Kafr Qāsim", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.11406000", + "longitude": "34.97624000" + }, + { + "id": "57494", + "name": "Kefar H̱abad", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.98793000", + "longitude": "34.85160000" + }, + { + "id": "57499", + "name": "Kefar Yona", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.31669000", + "longitude": "34.93507000" + }, + { + "id": "57500", + "name": "Kfar Saba", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.17500000", + "longitude": "34.90694000" + }, + { + "id": "57503", + "name": "Lapid", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.91764000", + "longitude": "35.03222000" + }, + { + "id": "57505", + "name": "Lod", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.94670000", + "longitude": "34.89030000" + }, + { + "id": "57507", + "name": "Mazkeret Batya", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.85357000", + "longitude": "34.84646000" + }, + { + "id": "57515", + "name": "Modi‘in Makkabbim Re‘ut", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.89385000", + "longitude": "35.01504000" + }, + { + "id": "57525", + "name": "Neẖalim", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.06012000", + "longitude": "34.91069000" + }, + { + "id": "57522", + "name": "Ness Ziona", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.92933000", + "longitude": "34.79868000" + }, + { + "id": "57523", + "name": "Netanya", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.33291000", + "longitude": "34.85992000" + }, + { + "id": "57526", + "name": "Nirit", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.14677000", + "longitude": "34.98622000" + }, + { + "id": "57527", + "name": "Nof Ayalon", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.87111000", + "longitude": "34.99081000" + }, + { + "id": "57528", + "name": "Nordiyya", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.31470000", + "longitude": "34.89617000" + }, + { + "id": "57531", + "name": "Pardesiyya", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.30577000", + "longitude": "34.90911000" + }, + { + "id": "57533", + "name": "Petaẖ Tiqwa", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.08707000", + "longitude": "34.88747000" + }, + { + "id": "57534", + "name": "Qalansuwa", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.28493000", + "longitude": "34.98106000" + }, + { + "id": "57541", + "name": "Ra'anana", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.18360000", + "longitude": "34.87386000" + }, + { + "id": "57546", + "name": "Ramla", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.92923000", + "longitude": "34.86563000" + }, + { + "id": "57548", + "name": "Reẖovot", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.89421000", + "longitude": "34.81199000" + }, + { + "id": "57549", + "name": "Rishon LeẔiyyon", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.97102000", + "longitude": "34.78939000" + }, + { + "id": "57550", + "name": "Rosh Ha‘Ayin", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.09556000", + "longitude": "34.95664000" + }, + { + "id": "57556", + "name": "Savyon", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.04966000", + "longitude": "34.87770000" + }, + { + "id": "57560", + "name": "Shoham", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.99866000", + "longitude": "34.94559000" + }, + { + "id": "57565", + "name": "Tel Mond", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.24995000", + "longitude": "34.91737000" + }, + { + "id": "57568", + "name": "Tirah", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.23410000", + "longitude": "34.95023000" + }, + { + "id": "57573", + "name": "Yavné", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "31.87808000", + "longitude": "34.73983000" + }, + { + "id": "57574", + "name": "Yehud", + "state_id": 1367, + "state_code": "M", + "country_id": 106, + "country_code": "IL", + "latitude": "32.03317000", + "longitude": "34.89091000" + }, + { + "id": "57440", + "name": "Atlit", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.68889000", + "longitude": "34.94236000" + }, + { + "id": "57455", + "name": "Caesarea", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.51888000", + "longitude": "34.90459000" + }, + { + "id": "57457", + "name": "Daliyat al Karmel", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.69383000", + "longitude": "35.04686000" + }, + { + "id": "57461", + "name": "El Fureidīs", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.59812000", + "longitude": "34.95153000" + }, + { + "id": "57473", + "name": "Hadera", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.44192000", + "longitude": "34.90390000" + }, + { + "id": "57474", + "name": "Haifa", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.81841000", + "longitude": "34.98850000" + }, + { + "id": "57480", + "name": "Ibṭīn", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.76150000", + "longitude": "35.11402000" + }, + { + "id": "57521", + "name": "Nesher", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.76622000", + "longitude": "35.04425000" + }, + { + "id": "57535", + "name": "Qiryat Ata", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.81149000", + "longitude": "35.11323000" + }, + { + "id": "57536", + "name": "Qiryat Bialik", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.82750000", + "longitude": "35.08583000" + }, + { + "id": "57538", + "name": "Qiryat Moẕqin", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.83706000", + "longitude": "35.07760000" + }, + { + "id": "57540", + "name": "Qiryat Yam", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.84966000", + "longitude": "35.06973000" + }, + { + "id": "57547", + "name": "Rekhasim", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.74907000", + "longitude": "35.09901000" + }, + { + "id": "57569", + "name": "Tirat Karmel", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.76021000", + "longitude": "34.97183000" + }, + { + "id": "57570", + "name": "Umm el Faḥm", + "state_id": 1369, + "state_code": "HA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.51725000", + "longitude": "35.15349000" + }, + { + "id": "57434", + "name": "Abū Ghaush", + "state_id": 1370, + "state_code": "JM", + "country_id": 106, + "country_code": "IL", + "latitude": "31.80592000", + "longitude": "35.10930000" + }, + { + "id": "57579", + "name": "Ẕur Hadassa", + "state_id": 1370, + "state_code": "JM", + "country_id": 106, + "country_code": "IL", + "latitude": "31.71912000", + "longitude": "35.09708000" + }, + { + "id": "57447", + "name": "Bet Shemesh", + "state_id": 1370, + "state_code": "JM", + "country_id": 106, + "country_code": "IL", + "latitude": "31.73072000", + "longitude": "34.99293000" + }, + { + "id": "57475", + "name": "Har Adar", + "state_id": 1370, + "state_code": "JM", + "country_id": 106, + "country_code": "IL", + "latitude": "31.82754000", + "longitude": "35.13093000" + }, + { + "id": "57484", + "name": "Jerusalem", + "state_id": 1370, + "state_code": "JM", + "country_id": 106, + "country_code": "IL", + "latitude": "31.76904000", + "longitude": "35.21633000" + }, + { + "id": "57509", + "name": "Mevasseret Ẕiyyon", + "state_id": 1370, + "state_code": "JM", + "country_id": 106, + "country_code": "IL", + "latitude": "31.80186000", + "longitude": "35.15072000" + }, + { + "id": "57514", + "name": "Modiin Ilit", + "state_id": 1370, + "state_code": "JM", + "country_id": 106, + "country_code": "IL", + "latitude": "31.93221000", + "longitude": "35.04416000" + }, + { + "id": "57571", + "name": "West Jerusalem", + "state_id": 1370, + "state_code": "JM", + "country_id": 106, + "country_code": "IL", + "latitude": "31.78199000", + "longitude": "35.21961000" + }, + { + "id": "57435", + "name": "Acre", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.92814000", + "longitude": "35.07647000" + }, + { + "id": "57436", + "name": "Afula", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.60907000", + "longitude": "35.28920000" + }, + { + "id": "57578", + "name": "Ḥurfeish", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.01711000", + "longitude": "35.34835000" + }, + { + "id": "57581", + "name": "‘Eilabun", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.83693000", + "longitude": "35.40029000" + }, + { + "id": "57583", + "name": "‘Uzeir", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.79212000", + "longitude": "35.32984000" + }, + { + "id": "57442", + "name": "Basmat Ṭab‘ūn", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.73898000", + "longitude": "35.15716000" + }, + { + "id": "57454", + "name": "Bīr el Maksūr", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.77732000", + "longitude": "35.22069000" + }, + { + "id": "57445", + "name": "Beit Jann", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.96464000", + "longitude": "35.38152000" + }, + { + "id": "57448", + "name": "Bet She’an", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.49728000", + "longitude": "35.49632000" + }, + { + "id": "57453", + "name": "Bu‘eina", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.80636000", + "longitude": "35.36486000" + }, + { + "id": "57452", + "name": "Buqei‘a", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.97747000", + "longitude": "35.33345000" + }, + { + "id": "57456", + "name": "Dabbūrīya", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.69256000", + "longitude": "35.37123000" + }, + { + "id": "57458", + "name": "Deir Ḥannā", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.86196000", + "longitude": "35.36365000" + }, + { + "id": "57462", + "name": "El Mazra‘a", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.98338000", + "longitude": "35.09837000" + }, + { + "id": "57464", + "name": "Er Reina", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.72339000", + "longitude": "35.31622000" + }, + { + "id": "57465", + "name": "Esh Sheikh Dannūn", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.99410000", + "longitude": "35.14805000" + }, + { + "id": "57481", + "name": "Iksāl", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.68164000", + "longitude": "35.32365000" + }, + { + "id": "57486", + "name": "Jīsh", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.02216000", + "longitude": "35.44694000" + }, + { + "id": "57485", + "name": "Judeida Makr", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.92820000", + "longitude": "35.15705000" + }, + { + "id": "57487", + "name": "Kafr Kammā", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.72129000", + "longitude": "35.44122000" + }, + { + "id": "57488", + "name": "Kafr Kannā", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.74660000", + "longitude": "35.34242000" + }, + { + "id": "57489", + "name": "Kafr Mandā", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.81034000", + "longitude": "35.26009000" + }, + { + "id": "57490", + "name": "Kafr Miṣr", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.64521000", + "longitude": "35.42147000" + }, + { + "id": "57492", + "name": "Karmi’el", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.91708000", + "longitude": "35.30501000" + }, + { + "id": "57493", + "name": "Kaukab Abū el Hījā", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.83155000", + "longitude": "35.24848000" + }, + { + "id": "57502", + "name": "Kābūl", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.86856000", + "longitude": "35.21171000" + }, + { + "id": "57495", + "name": "Kefar Rosh HaNiqra", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.08607000", + "longitude": "35.11348000" + }, + { + "id": "57497", + "name": "Kefar Tavor", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.68655000", + "longitude": "35.42118000" + }, + { + "id": "57498", + "name": "Kefar Weradim", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.99385000", + "longitude": "35.27793000" + }, + { + "id": "57501", + "name": "Kfar Yasif", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.95451000", + "longitude": "35.16230000" + }, + { + "id": "57577", + "name": "maalot Tarshīhā", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.01667000", + "longitude": "35.26667000" + }, + { + "id": "57506", + "name": "Maghār", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.88984000", + "longitude": "35.40703000" + }, + { + "id": "57508", + "name": "Metulla", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.27918000", + "longitude": "35.57950000" + }, + { + "id": "57513", + "name": "Mi‘ilyā", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.02781000", + "longitude": "35.25658000" + }, + { + "id": "57511", + "name": "Migdal Ha‘Emeq", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.67597000", + "longitude": "35.23986000" + }, + { + "id": "57518", + "name": "Naḥf", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.93444000", + "longitude": "35.31679000" + }, + { + "id": "57516", + "name": "Nahariyya", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.00892000", + "longitude": "35.09814000" + }, + { + "id": "57517", + "name": "Nazareth", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.70056000", + "longitude": "35.29722000" + }, + { + "id": "57519", + "name": "Nefat ‘Akko", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.95000000", + "longitude": "35.23333000" + }, + { + "id": "57520", + "name": "Nein", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.63063000", + "longitude": "35.34885000" + }, + { + "id": "57532", + "name": "Pasuta", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.04895000", + "longitude": "35.30893000" + }, + { + "id": "57539", + "name": "Qiryat Shemona", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.20733000", + "longitude": "35.57212000" + }, + { + "id": "57545", + "name": "Ramat Yishay", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.70444000", + "longitude": "35.17070000" + }, + { + "id": "57551", + "name": "Rosh Pinna", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.96894000", + "longitude": "35.54258000" + }, + { + "id": "57552", + "name": "Rumat Heib", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.77802000", + "longitude": "35.30571000" + }, + { + "id": "57553", + "name": "Safed", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.96465000", + "longitude": "35.49600000" + }, + { + "id": "57554", + "name": "Sakhnīn", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.86422000", + "longitude": "35.29707000" + }, + { + "id": "57555", + "name": "Sallama", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.89443000", + "longitude": "35.36931000" + }, + { + "id": "57561", + "name": "Sājūr", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.94266000", + "longitude": "35.34136000" + }, + { + "id": "57562", + "name": "Sūlam", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.60606000", + "longitude": "35.33408000" + }, + { + "id": "57558", + "name": "Shelomi", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "33.07216000", + "longitude": "35.14452000" + }, + { + "id": "57559", + "name": "Shibli", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.69464000", + "longitude": "35.39252000" + }, + { + "id": "57563", + "name": "Tamra", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.85301000", + "longitude": "35.19870000" + }, + { + "id": "57566", + "name": "Tiberias", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.79221000", + "longitude": "35.53124000" + }, + { + "id": "57567", + "name": "Timrat", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.70302000", + "longitude": "35.22359000" + }, + { + "id": "57572", + "name": "Yavne’el", + "state_id": 1366, + "state_code": "Z", + "country_id": 106, + "country_code": "IL", + "latitude": "32.70619000", + "longitude": "35.50435000" + }, + { + "id": "57437", + "name": "Arad", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.25882000", + "longitude": "35.21282000" + }, + { + "id": "57438", + "name": "Ashdod", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.79213000", + "longitude": "34.64966000" + }, + { + "id": "57439", + "name": "Ashkelon", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.66926000", + "longitude": "34.57149000" + }, + { + "id": "57582", + "name": "‘En Boqeq", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.19941000", + "longitude": "35.36253000" + }, + { + "id": "57444", + "name": "Beersheba", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.25181000", + "longitude": "34.79130000" + }, + { + "id": "57459", + "name": "Dimona", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.07079000", + "longitude": "35.03269000" + }, + { + "id": "57460", + "name": "Eilat", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "29.55805000", + "longitude": "34.94821000" + }, + { + "id": "57504", + "name": "Lehavim", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.37284000", + "longitude": "34.81619000" + }, + { + "id": "57510", + "name": "Midreshet Ben-Gurion", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "30.85154000", + "longitude": "34.78340000" + }, + { + "id": "57512", + "name": "Mitzpe Ramon", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "30.60944000", + "longitude": "34.80111000" + }, + { + "id": "57524", + "name": "Netivot", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.42305000", + "longitude": "34.58911000" + }, + { + "id": "57529", + "name": "Ofaqim", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.31410000", + "longitude": "34.62025000" + }, + { + "id": "57537", + "name": "Qiryat Gat", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.60998000", + "longitude": "34.76422000" + }, + { + "id": "57542", + "name": "Rahat", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.39547000", + "longitude": "34.75699000" + }, + { + "id": "57557", + "name": "Sederot", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "31.52500000", + "longitude": "34.59693000" + }, + { + "id": "57576", + "name": "Yeroẖam", + "state_id": 1368, + "state_code": "D", + "country_id": 106, + "country_code": "IL", + "latitude": "30.98822000", + "longitude": "34.93176000" + }, + { + "id": "57441", + "name": "Azor", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.02430000", + "longitude": "34.80632000" + }, + { + "id": "57443", + "name": "Bat Yam", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.02379000", + "longitude": "34.75185000" + }, + { + "id": "57451", + "name": "Bnei Brak", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.08074000", + "longitude": "34.83380000" + }, + { + "id": "57471", + "name": "Giv'at Shmuel", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.07817000", + "longitude": "34.84858000" + }, + { + "id": "57472", + "name": "Givatayim", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.07225000", + "longitude": "34.81253000" + }, + { + "id": "57476", + "name": "Herzliya", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.16627000", + "longitude": "34.82536000" + }, + { + "id": "57477", + "name": "Herzliya Pituah", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.17409000", + "longitude": "34.80280000" + }, + { + "id": "57479", + "name": "H̱olon", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.01034000", + "longitude": "34.77918000" + }, + { + "id": "57482", + "name": "Jaffa", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.05043000", + "longitude": "34.75224000" + }, + { + "id": "57496", + "name": "Kefar Shemaryahu", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.18529000", + "longitude": "34.82082000" + }, + { + "id": "57530", + "name": "Or Yehuda", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.02923000", + "longitude": "34.85788000" + }, + { + "id": "57543", + "name": "Ramat Gan", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.08227000", + "longitude": "34.81065000" + }, + { + "id": "57544", + "name": "Ramat HaSharon", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.14613000", + "longitude": "34.83940000" + }, + { + "id": "57564", + "name": "Tel Aviv", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.08088000", + "longitude": "34.78057000" + }, + { + "id": "57575", + "name": "Yehud-Monosson", + "state_id": 1371, + "state_code": "TA", + "country_id": 106, + "country_code": "IL", + "latitude": "32.02840000", + "longitude": "34.87960000" + }, + { + "id": "135240", + "name": "Abbateggio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22421000", + "longitude": "14.01001000" + }, + { + "id": "135250", + "name": "Acciano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.17677000", + "longitude": "13.71783000" + }, + { + "id": "135325", + "name": "Aielli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.08146000", + "longitude": "13.59113000" + }, + { + "id": "135342", + "name": "Alanno", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29552000", + "longitude": "13.97084000" + }, + { + "id": "135347", + "name": "Alba Adriatica", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.83176000", + "longitude": "13.92590000" + }, + { + "id": "135400", + "name": "Alfedena", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73545000", + "longitude": "14.03500000" + }, + { + "id": "135440", + "name": "Altino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09954000", + "longitude": "14.33267000" + }, + { + "id": "135477", + "name": "Ancarano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.83767000", + "longitude": "13.74662000" + }, + { + "id": "135523", + "name": "Anversa degli Abruzzi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99478000", + "longitude": "13.80379000" + }, + { + "id": "135565", + "name": "Archi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09135000", + "longitude": "14.38270000" + }, + { + "id": "135597", + "name": "Ari", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.28967000", + "longitude": "14.25856000" + }, + { + "id": "135602", + "name": "Arielli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26003000", + "longitude": "14.31004000" + }, + { + "id": "135638", + "name": "Arsita", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.50266000", + "longitude": "13.78516000" + }, + { + "id": "135672", + "name": "Ateleta", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.85435000", + "longitude": "14.19806000" + }, + { + "id": "135675", + "name": "Atessa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.07018000", + "longitude": "14.45049000" + }, + { + "id": "135679", + "name": "Atri", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.57642000", + "longitude": "13.98899000" + }, + { + "id": "135704", + "name": "Avezzano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02896000", + "longitude": "13.42641000" + }, + { + "id": "135795", + "name": "Balsorano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80982000", + "longitude": "13.55980000" + }, + { + "id": "135796", + "name": "Balsorano Nuovo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80881000", + "longitude": "13.56069000" + }, + { + "id": "135826", + "name": "Barberi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.44072000", + "longitude": "14.04268000" + }, + { + "id": "135847", + "name": "Barete", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.45009000", + "longitude": "13.28061000" + }, + { + "id": "135858", + "name": "Barisciano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32465000", + "longitude": "13.59036000" + }, + { + "id": "135870", + "name": "Barrea", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.75543000", + "longitude": "13.99095000" + }, + { + "id": "135881", + "name": "Basciano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.59639000", + "longitude": "13.73561000" + }, + { + "id": "135938", + "name": "Bellante", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.74421000", + "longitude": "13.80234000" + }, + { + "id": "135939", + "name": "Bellante Stazione", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.70650000", + "longitude": "13.83953000" + }, + { + "id": "136062", + "name": "Bisegna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.92113000", + "longitude": "13.75760000" + }, + { + "id": "136063", + "name": "Bisenti", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52883000", + "longitude": "13.79950000" + }, + { + "id": "136108", + "name": "Bolognano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21814000", + "longitude": "13.96011000" + }, + { + "id": "136119", + "name": "Bomba", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.03343000", + "longitude": "14.36656000" + }, + { + "id": "136189", + "name": "Borgo Santa Maria Immacolata", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.61172000", + "longitude": "14.04553000" + }, + { + "id": "136227", + "name": "Borrello", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.91730000", + "longitude": "14.30535000" + }, + { + "id": "136343", + "name": "Brittoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.31518000", + "longitude": "13.86026000" + }, + { + "id": "136385", + "name": "Bucchianico", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.30368000", + "longitude": "14.18377000" + }, + { + "id": "136397", + "name": "Bugnara", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02383000", + "longitude": "13.86141000" + }, + { + "id": "136430", + "name": "Bussi sul Tirino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21321000", + "longitude": "13.82511000" + }, + { + "id": "136470", + "name": "Cagnano Amiterno", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.45744000", + "longitude": "13.22789000" + }, + { + "id": "136494", + "name": "Calascio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32595000", + "longitude": "13.69699000" + }, + { + "id": "136625", + "name": "Campli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.72679000", + "longitude": "13.68692000" + }, + { + "id": "136635", + "name": "Campo di Giove", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.01013000", + "longitude": "14.03941000" + }, + { + "id": "136683", + "name": "Campotosto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.55884000", + "longitude": "13.36799000" + }, + { + "id": "136716", + "name": "Canistro Inferiore", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94101000", + "longitude": "13.41194000" + }, + { + "id": "136731", + "name": "Canosa Sannita", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29629000", + "longitude": "14.30514000" + }, + { + "id": "136736", + "name": "Cansano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00350000", + "longitude": "14.01341000" + }, + { + "id": "136752", + "name": "Canzano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.64564000", + "longitude": "13.80410000" + }, + { + "id": "136765", + "name": "Capestrano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26807000", + "longitude": "13.76779000" + }, + { + "id": "136771", + "name": "Capistrello", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.97223000", + "longitude": "13.39616000" + }, + { + "id": "136774", + "name": "Capitignano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52041000", + "longitude": "13.30122000" + }, + { + "id": "136786", + "name": "Caporciano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25001000", + "longitude": "13.67455000" + }, + { + "id": "136790", + "name": "Cappadocia", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00755000", + "longitude": "13.27806000" + }, + { + "id": "136794", + "name": "Cappelle sul Tavo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.47709000", + "longitude": "14.10735000" + }, + { + "id": "136831", + "name": "Caramanico Terme", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15593000", + "longitude": "14.00480000" + }, + { + "id": "136835", + "name": "Carapelle Calvisio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29908000", + "longitude": "13.68643000" + }, + { + "id": "136920", + "name": "Carpineto della Nora", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33365000", + "longitude": "13.86062000" + }, + { + "id": "136919", + "name": "Carpineto Sinello", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.01044000", + "longitude": "14.50418000" + }, + { + "id": "136936", + "name": "Carsoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09882000", + "longitude": "13.08856000" + }, + { + "id": "136945", + "name": "Carunchio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.91761000", + "longitude": "14.52683000" + }, + { + "id": "136954", + "name": "Casacanditella", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24643000", + "longitude": "14.20040000" + }, + { + "id": "136961", + "name": "Casalanguida", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.03752000", + "longitude": "14.49613000" + }, + { + "id": "136965", + "name": "Casalbordino-Miracoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15354000", + "longitude": "14.59912000" + }, + { + "id": "136995", + "name": "Casalincontrada", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29744000", + "longitude": "14.13511000" + }, + { + "id": "137083", + "name": "Casoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.61723000", + "longitude": "13.97910000" + }, + { + "id": "137133", + "name": "Castel Castagna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54294000", + "longitude": "13.71640000" + }, + { + "id": "137165", + "name": "Castel del Monte", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36544000", + "longitude": "13.72592000" + }, + { + "id": "137169", + "name": "Castel di Ieri", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.11353000", + "longitude": "13.74200000" + }, + { + "id": "137173", + "name": "Castel di Sangro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.78392000", + "longitude": "14.10653000" + }, + { + "id": "137136", + "name": "Castel Frentano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.19875000", + "longitude": "14.35643000" + }, + { + "id": "137205", + "name": "Castelguidone", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.82258000", + "longitude": "14.52286000" + }, + { + "id": "137210", + "name": "Castellafiume", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98913000", + "longitude": "13.33440000" + }, + { + "id": "137211", + "name": "Castellalto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.67705000", + "longitude": "13.82101000" + }, + { + "id": "137242", + "name": "Castelli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.48476000", + "longitude": "13.71201000" + }, + { + "id": "137295", + "name": "Castelnuovo Vomano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.62933000", + "longitude": "13.85003000" + }, + { + "id": "137321", + "name": "Castelvecchio Calvisio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.31134000", + "longitude": "13.68720000" + }, + { + "id": "137322", + "name": "Castelvecchio Subequo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12881000", + "longitude": "13.72868000" + }, + { + "id": "137347", + "name": "Castiglione a Casauria", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23601000", + "longitude": "13.89832000" + }, + { + "id": "137342", + "name": "Castiglione Messer Marino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86833000", + "longitude": "14.44996000" + }, + { + "id": "137343", + "name": "Castiglione Messer Raimondo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.53194000", + "longitude": "13.87953000" + }, + { + "id": "137360", + "name": "Castilenti", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.53334000", + "longitude": "13.91710000" + }, + { + "id": "137395", + "name": "Catignano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.34697000", + "longitude": "13.95190000" + }, + { + "id": "137462", + "name": "Celano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.08077000", + "longitude": "13.51700000" + }, + { + "id": "137465", + "name": "Celenza sul Trigno", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87198000", + "longitude": "14.57893000" + }, + { + "id": "137479", + "name": "Cellino Attanasio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.58574000", + "longitude": "13.86050000" + }, + { + "id": "137505", + "name": "Cepagatti", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36506000", + "longitude": "14.07424000" + }, + { + "id": "137525", + "name": "Cerchio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06357000", + "longitude": "13.60006000" + }, + { + "id": "137555", + "name": "Cermignano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.59131000", + "longitude": "13.79540000" + }, + { + "id": "137560", + "name": "Cerratina", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.39007000", + "longitude": "14.10338000" + }, + { + "id": "137672", + "name": "Chieti", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.34827000", + "longitude": "14.16494000" + }, + { + "id": "137772", + "name": "Città Sant'Angelo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.51254000", + "longitude": "14.06203000" + }, + { + "id": "137787", + "name": "Civita d'Antino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88629000", + "longitude": "13.47215000" + }, + { + "id": "137789", + "name": "Civitaluparella", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94490000", + "longitude": "14.30135000" + }, + { + "id": "137793", + "name": "Civitaquana", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32578000", + "longitude": "13.90012000" + }, + { + "id": "137795", + "name": "Civitella Alfedena", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76533000", + "longitude": "13.94271000" + }, + { + "id": "137796", + "name": "Civitella Casanova", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36391000", + "longitude": "13.88514000" + }, + { + "id": "137802", + "name": "Civitella del Tronto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.77298000", + "longitude": "13.67626000" + }, + { + "id": "137798", + "name": "Civitella Messer Raimondo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.08893000", + "longitude": "14.21701000" + }, + { + "id": "137799", + "name": "Civitella Roveto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.91329000", + "longitude": "13.42396000" + }, + { + "id": "137826", + "name": "Cocullo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.03283000", + "longitude": "13.77500000" + }, + { + "id": "137857", + "name": "Collarmele", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06031000", + "longitude": "13.62670000" + }, + { + "id": "137876", + "name": "Collecorvino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.46024000", + "longitude": "14.01564000" + }, + { + "id": "137877", + "name": "Colledara", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.53918000", + "longitude": "13.67556000" + }, + { + "id": "137878", + "name": "Colledimacine", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00370000", + "longitude": "14.20079000" + }, + { + "id": "137879", + "name": "Colledimezzo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98606000", + "longitude": "14.38690000" + }, + { + "id": "137884", + "name": "Collelongo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88659000", + "longitude": "13.58380000" + }, + { + "id": "137889", + "name": "Collepietro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22089000", + "longitude": "13.78101000" + }, + { + "id": "137890", + "name": "Colleranesco", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.72112000", + "longitude": "13.93732000" + }, + { + "id": "137911", + "name": "Cologna Spiaggia", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.72152000", + "longitude": "13.98311000" + }, + { + "id": "137923", + "name": "Colonnella", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87230000", + "longitude": "13.86987000" + }, + { + "id": "137941", + "name": "Cominio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.31248000", + "longitude": "13.43250000" + }, + { + "id": "137980", + "name": "Controguerra", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.85398000", + "longitude": "13.81775000" + }, + { + "id": "137989", + "name": "Coppito", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36730000", + "longitude": "13.34358000" + }, + { + "id": "138008", + "name": "Corfinio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12149000", + "longitude": "13.83940000" + }, + { + "id": "138044", + "name": "Corropoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.82720000", + "longitude": "13.83471000" + }, + { + "id": "138069", + "name": "Cortino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.62186000", + "longitude": "13.50774000" + }, + { + "id": "138072", + "name": "Corvara", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.27511000", + "longitude": "13.87363000" + }, + { + "id": "138129", + "name": "Crecchio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29778000", + "longitude": "14.32656000" + }, + { + "id": "138163", + "name": "Crognaleto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.58771000", + "longitude": "13.48890000" + }, + { + "id": "138186", + "name": "Cugnoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.30692000", + "longitude": "13.93490000" + }, + { + "id": "138195", + "name": "Cupello", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06936000", + "longitude": "14.67054000" + }, + { + "id": "138277", + "name": "Dogliola", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94238000", + "longitude": "14.63507000" + }, + { + "id": "138351", + "name": "Elice", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52279000", + "longitude": "13.97071000" + }, + { + "id": "138422", + "name": "Fallo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.93833000", + "longitude": "14.32362000" + }, + { + "id": "138434", + "name": "Fano Adriano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.55230000", + "longitude": "13.53764000" + }, + { + "id": "138437", + "name": "Fara Filiorum Petri", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24152000", + "longitude": "14.18026000" + }, + { + "id": "138441", + "name": "Fara San Martino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09248000", + "longitude": "14.20896000" + }, + { + "id": "138447", + "name": "Farindola", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.44292000", + "longitude": "13.82137000" + }, + { + "id": "138527", + "name": "Filetto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22931000", + "longitude": "14.24501000" + }, + { + "id": "138607", + "name": "Fonte Umano-San Martino Alta", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52084000", + "longitude": "14.10760000" + }, + { + "id": "138609", + "name": "Fontecchio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23027000", + "longitude": "13.60613000" + }, + { + "id": "138667", + "name": "Fossa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29273000", + "longitude": "13.48779000" + }, + { + "id": "138669", + "name": "Fossacesia", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24198000", + "longitude": "14.48339000" + }, + { + "id": "138690", + "name": "Fraine", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90624000", + "longitude": "14.48788000" + }, + { + "id": "138696", + "name": "Francavilla al Mare", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.42158000", + "longitude": "14.28217000" + }, + { + "id": "138730", + "name": "Fresagrandinaria", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.97900000", + "longitude": "14.66211000" + }, + { + "id": "138736", + "name": "Frisa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26572000", + "longitude": "14.37625000" + }, + { + "id": "138755", + "name": "Furci", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00746000", + "longitude": "14.58802000" + }, + { + "id": "138781", + "name": "Gagliano Aterno", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12598000", + "longitude": "13.70023000" + }, + { + "id": "138832", + "name": "Gamberale", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90529000", + "longitude": "14.20845000" + }, + { + "id": "138926", + "name": "Gessopalena", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.05521000", + "longitude": "14.27367000" + }, + { + "id": "138970", + "name": "Gioia dei Marsi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95697000", + "longitude": "13.69057000" + }, + { + "id": "138985", + "name": "Gissi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.01803000", + "longitude": "14.54484000" + }, + { + "id": "138991", + "name": "Giuliano Teatino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.31220000", + "longitude": "14.28082000" + }, + { + "id": "138993", + "name": "Giulianova", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.75381000", + "longitude": "13.96650000" + }, + { + "id": "139031", + "name": "Goriano Sicoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.08011000", + "longitude": "13.77459000" + }, + { + "id": "139163", + "name": "Guardiagrele", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.19406000", + "longitude": "14.21939000" + }, + { + "id": "139181", + "name": "Guilmi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99653000", + "longitude": "14.47882000" + }, + { + "id": "139201", + "name": "Imposte", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.68634000", + "longitude": "13.52829000" + }, + { + "id": "139212", + "name": "Introdacqua", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00968000", + "longitude": "13.89779000" + }, + { + "id": "139245", + "name": "Isola del Gran Sasso d'Italia", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.50324000", + "longitude": "13.65721000" + }, + { + "id": "139285", + "name": "L'Aquila", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.35055000", + "longitude": "13.39954000" + }, + { + "id": "139341", + "name": "Lama dei Peligni", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.04214000", + "longitude": "14.18678000" + }, + { + "id": "139354", + "name": "Lanciano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22718000", + "longitude": "14.39024000" + }, + { + "id": "139431", + "name": "Lecce Nei Marsi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.93436000", + "longitude": "13.68430000" + }, + { + "id": "139451", + "name": "Lentella", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99576000", + "longitude": "14.67692000" + }, + { + "id": "139479", + "name": "Lettomanoppello", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24336000", + "longitude": "14.03843000" + }, + { + "id": "139480", + "name": "Lettopalena", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00251000", + "longitude": "14.15652000" + }, + { + "id": "139538", + "name": "Liscia", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95524000", + "longitude": "14.55532000" + }, + { + "id": "139610", + "name": "Loreto Aprutino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.43104000", + "longitude": "13.98057000" + }, + { + "id": "139638", + "name": "Luco dei Marsi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95925000", + "longitude": "13.47349000" + }, + { + "id": "139639", + "name": "Lucoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29093000", + "longitude": "13.33799000" + }, + { + "id": "139725", + "name": "Magliano De'Marsi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09153000", + "longitude": "13.36379000" + }, + { + "id": "139802", + "name": "Manoppello", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25918000", + "longitude": "14.06024000" + }, + { + "id": "139803", + "name": "Manoppello Scalo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.30762000", + "longitude": "14.05363000" + }, + { + "id": "139895", + "name": "Marina di San Vito", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.30514000", + "longitude": "14.44844000" + }, + { + "id": "139897", + "name": "Marina di Vasto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09373000", + "longitude": "14.72683000" + }, + { + "id": "139936", + "name": "Martinsicuro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.88031000", + "longitude": "13.91326000" + }, + { + "id": "139975", + "name": "Massa d'Albe-Corona", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10723000", + "longitude": "13.39429000" + }, + { + "id": "140132", + "name": "Miglianico", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.35773000", + "longitude": "14.29179000" + }, + { + "id": "140214", + "name": "Molina Aterno", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.14903000", + "longitude": "13.73540000" + }, + { + "id": "140350", + "name": "Montazzoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94887000", + "longitude": "14.43069000" + }, + { + "id": "140389", + "name": "Montebello di Bertona", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.41686000", + "longitude": "13.87119000" + }, + { + "id": "140390", + "name": "Montebello sul Sangro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98663000", + "longitude": "14.32402000" + }, + { + "id": "140436", + "name": "Monteferrante", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95396000", + "longitude": "14.38856000" + }, + { + "id": "140438", + "name": "Montefino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54551000", + "longitude": "13.88479000" + }, + { + "id": "140465", + "name": "Montelapiano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.96267000", + "longitude": "14.34212000" + }, + { + "id": "140504", + "name": "Montenerodomo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.97682000", + "longitude": "14.25177000" + }, + { + "id": "140505", + "name": "Monteodorisio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.08485000", + "longitude": "14.65386000" + }, + { + "id": "140514", + "name": "Montereale", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52332000", + "longitude": "13.24585000" + }, + { + "id": "140541", + "name": "Montesilvano Marina", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.51140000", + "longitude": "14.14507000" + }, + { + "id": "140557", + "name": "Monticchio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32035000", + "longitude": "13.46382000" + }, + { + "id": "140586", + "name": "Montorio al Vomano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.58123000", + "longitude": "13.63715000" + }, + { + "id": "140620", + "name": "Morino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86442000", + "longitude": "13.45700000" + }, + { + "id": "140634", + "name": "Morro d'Oro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.66291000", + "longitude": "13.92129000" + }, + { + "id": "140646", + "name": "Mosciano Sant'Angelo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.74700000", + "longitude": "13.88891000" + }, + { + "id": "140647", + "name": "Moscufo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.42713000", + "longitude": "14.05434000" + }, + { + "id": "140671", + "name": "Mozzagrogna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21267000", + "longitude": "14.44258000" + }, + { + "id": "140731", + "name": "Navelli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23721000", + "longitude": "13.72961000" + }, + { + "id": "140743", + "name": "Nepezzano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.68994000", + "longitude": "13.75650000" + }, + { + "id": "140745", + "name": "Nereto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.81548000", + "longitude": "13.81989000" + }, + { + "id": "140746", + "name": "Nerito", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54763000", + "longitude": "13.47759000" + }, + { + "id": "140780", + "name": "Nocciano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33366000", + "longitude": "13.98571000" + }, + { + "id": "140811", + "name": "Notaresco", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.65742000", + "longitude": "13.89491000" + }, + { + "id": "140842", + "name": "Nucleo Industriale di Bazzano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33623000", + "longitude": "13.46755000" + }, + { + "id": "140874", + "name": "Ofena", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32536000", + "longitude": "13.75864000" + }, + { + "id": "140932", + "name": "Opi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77838000", + "longitude": "13.82932000" + }, + { + "id": "140952", + "name": "Oricola", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.04922000", + "longitude": "13.03939000" + }, + { + "id": "140975", + "name": "Orsogna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22344000", + "longitude": "14.28085000" + }, + { + "id": "140987", + "name": "Ortona", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.35087000", + "longitude": "14.40342000" + }, + { + "id": "140988", + "name": "Ortona dei Marsi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99820000", + "longitude": "13.72909000" + }, + { + "id": "140990", + "name": "Ortucchio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95525000", + "longitude": "13.64651000" + }, + { + "id": "141058", + "name": "Ovindoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13765000", + "longitude": "13.51603000" + }, + { + "id": "141070", + "name": "Pacentro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.05043000", + "longitude": "13.99151000" + }, + { + "id": "141095", + "name": "Paganica-Tempera", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.35715000", + "longitude": "13.47138000" + }, + { + "id": "58205", + "name": "Pagliare", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.64372000", + "longitude": "13.95171000" + }, + { + "id": "58209", + "name": "Paglieta", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.16139000", + "longitude": "14.50306000" + }, + { + "id": "58238", + "name": "Palena", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98353000", + "longitude": "14.13696000" + }, + { + "id": "58260", + "name": "Palmoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.93944000", + "longitude": "14.58142000" + }, + { + "id": "58264", + "name": "Palombaro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12323000", + "longitude": "14.22989000" + }, + { + "id": "58403", + "name": "Penna Sant'Andrea", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.59403000", + "longitude": "13.77215000" + }, + { + "id": "58406", + "name": "Pennadomo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00394000", + "longitude": "14.32338000" + }, + { + "id": "58407", + "name": "Pennapiedimonte", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15563000", + "longitude": "14.19432000" + }, + { + "id": "58408", + "name": "Penne", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.45474000", + "longitude": "13.92754000" + }, + { + "id": "58411", + "name": "Perano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10460000", + "longitude": "14.39581000" + }, + { + "id": "58420", + "name": "Pereto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.05821000", + "longitude": "13.10231000" + }, + { + "id": "58450", + "name": "Pescara", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.45840000", + "longitude": "14.20283000" + }, + { + "id": "58452", + "name": "Pescasseroli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80343000", + "longitude": "13.78707000" + }, + { + "id": "58459", + "name": "Pescina", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02351000", + "longitude": "13.65116000" + }, + { + "id": "58461", + "name": "Pescocostanzo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88722000", + "longitude": "14.06614000" + }, + { + "id": "58466", + "name": "Pescosansonesco Nuovo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25524000", + "longitude": "13.88480000" + }, + { + "id": "58493", + "name": "Pettorano sul Gizio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.97326000", + "longitude": "13.96001000" + }, + { + "id": "58523", + "name": "Pianella", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.39918000", + "longitude": "14.04781000" + }, + { + "id": "58548", + "name": "Pianola", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32341000", + "longitude": "13.40394000" + }, + { + "id": "58554", + "name": "Pianura Vomano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.63028000", + "longitude": "13.91548000" + }, + { + "id": "58579", + "name": "Picciano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.47525000", + "longitude": "13.98990000" + }, + { + "id": "58607", + "name": "Pietracamela", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52344000", + "longitude": "13.55431000" + }, + { + "id": "58612", + "name": "Pietraferrazzana", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.96943000", + "longitude": "14.37451000" + }, + { + "id": "58619", + "name": "Pietranico", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.27565000", + "longitude": "13.91077000" + }, + { + "id": "58677", + "name": "Pineto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.60879000", + "longitude": "14.06639000" + }, + { + "id": "58727", + "name": "Pizzoferrato", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.92244000", + "longitude": "14.23632000" + }, + { + "id": "58728", + "name": "Pizzoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.43603000", + "longitude": "13.29886000" + }, + { + "id": "58759", + "name": "Poggio Picenze", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32061000", + "longitude": "13.54036000" + }, + { + "id": "58768", + "name": "Poggiofiorito", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25414000", + "longitude": "14.32082000" + }, + { + "id": "58802", + "name": "Pollutri", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13784000", + "longitude": "14.59172000" + }, + { + "id": "58900", + "name": "Popoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.16866000", + "longitude": "13.82997000" + }, + { + "id": "59015", + "name": "Prata d'Ansidonia", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.27793000", + "longitude": "13.60830000" + }, + { + "id": "59033", + "name": "Pratola Peligna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09701000", + "longitude": "13.87467000" + }, + { + "id": "59069", + "name": "Pretoro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21923000", + "longitude": "14.14248000" + }, + { + "id": "59070", + "name": "Preturo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.37808000", + "longitude": "13.29633000" + }, + { + "id": "59072", + "name": "Prezza", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.05789000", + "longitude": "13.83592000" + }, + { + "id": "59087", + "name": "Progetto Case Bazzano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33643000", + "longitude": "13.44410000" + }, + { + "id": "59088", + "name": "Progetto Case Coppito 3", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36981000", + "longitude": "13.31973000" + }, + { + "id": "59089", + "name": "Progetto Case Sassa Nsi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36560000", + "longitude": "13.31509000" + }, + { + "id": "59106", + "name": "Provincia dell' Aquila", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.08333000", + "longitude": "13.66667000" + }, + { + "id": "59124", + "name": "Provincia di Chieti", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.11667000", + "longitude": "14.35000000" + }, + { + "id": "59160", + "name": "Provincia di Pescara", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33333000", + "longitude": "13.95000000" + }, + { + "id": "59179", + "name": "Provincia di Teramo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.65000000", + "longitude": "13.68333000" + }, + { + "id": "59212", + "name": "Quadri", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.92402000", + "longitude": "14.28768000" + }, + { + "id": "59270", + "name": "Raiano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10158000", + "longitude": "13.81386000" + }, + { + "id": "59285", + "name": "Rapino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20931000", + "longitude": "14.18493000" + }, + { + "id": "59399", + "name": "Ripa Teatina", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36603000", + "longitude": "14.24441000" + }, + { + "id": "59439", + "name": "Rivisondoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87023000", + "longitude": "14.06671000" + }, + { + "id": "59483", + "name": "Rocca di Botte", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.03102000", + "longitude": "13.07185000" + }, + { + "id": "59484", + "name": "Rocca di Cambio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23755000", + "longitude": "13.48906000" + }, + { + "id": "59487", + "name": "Rocca di Mezzo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20441000", + "longitude": "13.51840000" + }, + { + "id": "59473", + "name": "Rocca Pia", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.93429000", + "longitude": "13.97726000" + }, + { + "id": "59478", + "name": "Rocca San Giovanni", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24604000", + "longitude": "14.46162000" + }, + { + "id": "59494", + "name": "Roccacasale", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12249000", + "longitude": "13.88758000" + }, + { + "id": "59510", + "name": "Roccamorice", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21274000", + "longitude": "14.02531000" + }, + { + "id": "59516", + "name": "Roccaraso", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84872000", + "longitude": "14.07846000" + }, + { + "id": "59518", + "name": "Roccascalegna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06212000", + "longitude": "14.30802000" + }, + { + "id": "59524", + "name": "Roccaspinalveti-Santa Giusta", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94233000", + "longitude": "14.47092000" + }, + { + "id": "59531", + "name": "Roccavivi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.81214000", + "longitude": "13.53662000" + }, + { + "id": "59567", + "name": "Roio del Sangro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.91153000", + "longitude": "14.37382000" + }, + { + "id": "59629", + "name": "Rosciano", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32227000", + "longitude": "14.04555000" + }, + { + "id": "59634", + "name": "Rosello", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90116000", + "longitude": "14.34919000" + }, + { + "id": "59637", + "name": "Roseto degli Abruzzi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.67164000", + "longitude": "14.01481000" + }, + { + "id": "59772", + "name": "Salino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.78571000", + "longitude": "13.91400000" + }, + { + "id": "59777", + "name": "Salle", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.17756000", + "longitude": "13.96091000" + }, + { + "id": "59792", + "name": "Salvo Marina", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.07037000", + "longitude": "14.76597000" + }, + { + "id": "59806", + "name": "Sambuceto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.42168000", + "longitude": "14.18747000" + }, + { + "id": "59831", + "name": "San Benedetto dei Marsi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00760000", + "longitude": "13.62381000" + }, + { + "id": "59833", + "name": "San Benedetto in Perillis", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.18377000", + "longitude": "13.76996000" + }, + { + "id": "59849", + "name": "San Buono", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98140000", + "longitude": "14.56818000" + }, + { + "id": "59892", + "name": "San Demetrio Ne' Vestini", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.28963000", + "longitude": "13.55519000" + }, + { + "id": "59986", + "name": "San Giovanni Lipioni", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84383000", + "longitude": "14.56271000" + }, + { + "id": "60072", + "name": "San Martino Bassa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.51827000", + "longitude": "14.13045000" + }, + { + "id": "60097", + "name": "San Martino sulla Marrucina", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22419000", + "longitude": "14.21577000" + }, + { + "id": "60148", + "name": "San Nicolò a Tordino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.69648000", + "longitude": "13.79708000" + }, + { + "id": "60153", + "name": "San Panfilo d'Ocre", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.28616000", + "longitude": "13.47518000" + }, + { + "id": "60203", + "name": "San Pio delle Camere", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.28423000", + "longitude": "13.65570000" + }, + { + "id": "60222", + "name": "San Rocco", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24294000", + "longitude": "14.12891000" + }, + { + "id": "60234", + "name": "San Salvo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.04413000", + "longitude": "14.73335000" + }, + { + "id": "60259", + "name": "San Valentino in Abruzzo Citeriore", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23304000", + "longitude": "13.98561000" + }, + { + "id": "60269", + "name": "San Vincenzo Valle Roveto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84452000", + "longitude": "13.53566000" + }, + { + "id": "60275", + "name": "San Vito Chietino", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29014000", + "longitude": "14.44270000" + }, + { + "id": "60391", + "name": "Sant'Egidio alla Vibrata", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.81705000", + "longitude": "13.72164000" + }, + { + "id": "60400", + "name": "Sant'Eufemia a Maiella", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12613000", + "longitude": "14.02651000" + }, + { + "id": "60403", + "name": "Sant'Eusanio del Sangro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.16908000", + "longitude": "14.32776000" + }, + { + "id": "60402", + "name": "Sant'Eusanio Forconese", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.28951000", + "longitude": "13.52425000" + }, + { + "id": "60407", + "name": "Sant'Omero", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.79011000", + "longitude": "13.78906000" + }, + { + "id": "60463", + "name": "Santa Maria Imbaro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21999000", + "longitude": "14.45027000" + }, + { + "id": "60494", + "name": "Santa Teresa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.42753000", + "longitude": "14.15816000" + }, + { + "id": "60504", + "name": "Sante Marie", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10369000", + "longitude": "13.20163000" + }, + { + "id": "60524", + "name": "Santo Stefano di Sessanio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.34339000", + "longitude": "13.64477000" + }, + { + "id": "60565", + "name": "Sassa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.35204000", + "longitude": "13.29924000" + }, + { + "id": "60601", + "name": "Scafa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26575000", + "longitude": "13.99665000" + }, + { + "id": "60622", + "name": "Scanno", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90442000", + "longitude": "13.87961000" + }, + { + "id": "60639", + "name": "Scerne", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.64754000", + "longitude": "14.03791000" + }, + { + "id": "60640", + "name": "Scerni", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10418000", + "longitude": "14.57428000" + }, + { + "id": "60643", + "name": "Schiavi di Abruzzo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.81311000", + "longitude": "14.48655000" + }, + { + "id": "60662", + "name": "Scontrone", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74681000", + "longitude": "14.03880000" + }, + { + "id": "60665", + "name": "Scoppito", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36948000", + "longitude": "13.25936000" + }, + { + "id": "60670", + "name": "Scurcola Marsicana", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06313000", + "longitude": "13.33919000" + }, + { + "id": "60676", + "name": "Secinaro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15062000", + "longitude": "13.68145000" + }, + { + "id": "60704", + "name": "Selva", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.11442000", + "longitude": "14.34425000" + }, + { + "id": "60765", + "name": "Serramonacesca", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24795000", + "longitude": "14.09297000" + }, + { + "id": "60857", + "name": "Silvi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54984000", + "longitude": "14.11759000" + }, + { + "id": "61027", + "name": "Spoltore", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.45501000", + "longitude": "14.13988000" + }, + { + "id": "61116", + "name": "Sulmona", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.04945000", + "longitude": "13.92578000" + }, + { + "id": "61142", + "name": "Tagliacozzo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06933000", + "longitude": "13.25469000" + }, + { + "id": "61163", + "name": "Taranta Peligna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02052000", + "longitude": "14.17103000" + }, + { + "id": "61217", + "name": "Teramo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.66123000", + "longitude": "13.69901000" + }, + { + "id": "61280", + "name": "Tione degli Abruzzi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20393000", + "longitude": "13.63570000" + }, + { + "id": "61293", + "name": "Tocco da Casauria", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21203000", + "longitude": "13.91547000" + }, + { + "id": "61301", + "name": "Tollo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.34542000", + "longitude": "14.32360000" + }, + { + "id": "61317", + "name": "Torano Nuovo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.82305000", + "longitude": "13.77729000" + }, + { + "id": "61330", + "name": "Torino di Sangro", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.19100000", + "longitude": "14.54272000" + }, + { + "id": "61334", + "name": "Tornareccio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.03763000", + "longitude": "14.41525000" + }, + { + "id": "61336", + "name": "Tornimparte", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29007000", + "longitude": "13.30092000" + }, + { + "id": "61368", + "name": "Torre de' Passeri", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24324000", + "longitude": "13.93330000" + }, + { + "id": "61380", + "name": "Torrebruna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86742000", + "longitude": "14.54148000" + }, + { + "id": "61392", + "name": "Torrevecchia", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.38274000", + "longitude": "14.21331000" + }, + { + "id": "61399", + "name": "Torricella", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.65904000", + "longitude": "13.65719000" + }, + { + "id": "61401", + "name": "Torricella Peligna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02397000", + "longitude": "14.25854000" + }, + { + "id": "61416", + "name": "Tortoreto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.80371000", + "longitude": "13.91346000" + }, + { + "id": "61417", + "name": "Tortoreto Lido", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.79956000", + "longitude": "13.94205000" + }, + { + "id": "61424", + "name": "Tossicia", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54472000", + "longitude": "13.64595000" + }, + { + "id": "61444", + "name": "Trasacco", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95742000", + "longitude": "13.53270000" + }, + { + "id": "61473", + "name": "Treglio", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26184000", + "longitude": "14.42315000" + }, + { + "id": "61563", + "name": "Tufillo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.91685000", + "longitude": "14.62558000" + }, + { + "id": "61578", + "name": "Turrivalignani", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26296000", + "longitude": "14.02852000" + }, + { + "id": "61626", + "name": "Vacri", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29764000", + "longitude": "14.22901000" + }, + { + "id": "61686", + "name": "Valle Castellana", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.73614000", + "longitude": "13.49709000" + }, + { + "id": "61704", + "name": "Vallecupa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25366000", + "longitude": "13.57467000" + }, + { + "id": "61781", + "name": "Vasto", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.11150000", + "longitude": "14.70649000" + }, + { + "id": "61922", + "name": "Vicoli", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.34095000", + "longitude": "13.89688000" + }, + { + "id": "61988", + "name": "Villa Caldari", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29566000", + "longitude": "14.36157000" + }, + { + "id": "61992", + "name": "Villa Celiera", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.38184000", + "longitude": "13.85860000" + }, + { + "id": "62003", + "name": "Villa Lempa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.79345000", + "longitude": "13.64433000" + }, + { + "id": "62012", + "name": "Villa Raspa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.45542000", + "longitude": "14.18457000" + }, + { + "id": "62015", + "name": "Villa Rosa", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.85059000", + "longitude": "13.92015000" + }, + { + "id": "62022", + "name": "Villa Sant'Angelo", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.27043000", + "longitude": "13.53710000" + }, + { + "id": "62025", + "name": "Villa Santa Lucia degli Abruzzi", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33286000", + "longitude": "13.77792000" + }, + { + "id": "62026", + "name": "Villa Santa Maria", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95130000", + "longitude": "14.35148000" + }, + { + "id": "62071", + "name": "Villagrande", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29533000", + "longitude": "13.29999000" + }, + { + "id": "62075", + "name": "Villalago", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.93514000", + "longitude": "13.83868000" + }, + { + "id": "62078", + "name": "Villalfonsina", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.16038000", + "longitude": "14.56932000" + }, + { + "id": "62080", + "name": "Villamagna", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32984000", + "longitude": "14.23689000" + }, + { + "id": "62093", + "name": "Villanova", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.38251000", + "longitude": "14.12338000" + }, + { + "id": "62145", + "name": "Villavallelonga", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87104000", + "longitude": "13.62088000" + }, + { + "id": "62151", + "name": "Villetta Barrea", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77646000", + "longitude": "13.93892000" + }, + { + "id": "62186", + "name": "Vittorito", + "state_id": 1679, + "state_code": "65", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12703000", + "longitude": "13.81670000" + }, + { + "id": "135416", + "name": "Allein", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80723000", + "longitude": "7.27262000" + }, + { + "id": "135511", + "name": "Antagnod", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81484000", + "longitude": "7.68931000" + }, + { + "id": "135516", + "name": "Antey-Saint-Andrè", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80603000", + "longitude": "7.58666000" + }, + { + "id": "135530", + "name": "Aosta", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73764000", + "longitude": "7.31722000" + }, + { + "id": "135618", + "name": "Arnad", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64726000", + "longitude": "7.71701000" + }, + { + "id": "135645", + "name": "Arvier", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70205000", + "longitude": "7.16267000" + }, + { + "id": "135712", + "name": "Avise", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70886000", + "longitude": "7.13990000" + }, + { + "id": "135716", + "name": "Ayas", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81506000", + "longitude": "7.68911000" + }, + { + "id": "135717", + "name": "Aymavilles", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70130000", + "longitude": "7.24683000" + }, + { + "id": "135838", + "name": "Bard", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60936000", + "longitude": "7.74491000" + }, + { + "id": "135997", + "name": "Berriat", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70729000", + "longitude": "7.67617000" + }, + { + "id": "136055", + "name": "Bionaz", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87356000", + "longitude": "7.42310000" + }, + { + "id": "136378", + "name": "Brusson", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75926000", + "longitude": "7.72899000" + }, + { + "id": "137627", + "name": "Challand-Saint-Anselme", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71456000", + "longitude": "7.73451000" + }, + { + "id": "137628", + "name": "Challand-Saint-Victor", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69046000", + "longitude": "7.70471000" + }, + { + "id": "137629", + "name": "Chambave", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74426000", + "longitude": "7.54931000" + }, + { + "id": "137630", + "name": "Chamois", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83886000", + "longitude": "7.61871000" + }, + { + "id": "137631", + "name": "Champdepraz", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68526000", + "longitude": "7.65681000" + }, + { + "id": "137632", + "name": "Champorcher", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62376000", + "longitude": "7.62151000" + }, + { + "id": "137633", + "name": "Charvensod", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72025000", + "longitude": "7.32433000" + }, + { + "id": "137634", + "name": "Chatillon", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74991000", + "longitude": "7.61668000" + }, + { + "id": "137635", + "name": "Chef-Lieu", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75091000", + "longitude": "7.35372000" + }, + { + "id": "137841", + "name": "Cogne", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60742000", + "longitude": "7.35803000" + }, + { + "id": "138115", + "name": "Courmayeur", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79659000", + "longitude": "6.96893000" + }, + { + "id": "138301", + "name": "Donnas", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60286000", + "longitude": "7.77491000" + }, + { + "id": "138321", + "name": "Doues", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81916000", + "longitude": "7.30600000" + }, + { + "id": "138355", + "name": "Emarese", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72489000", + "longitude": "7.68976000" + }, + { + "id": "138388", + "name": "Etroubles", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82082000", + "longitude": "7.23137000" + }, + { + "id": "138765", + "name": "Fénis", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73469000", + "longitude": "7.49544000" + }, + { + "id": "138591", + "name": "Fontainemore", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64746000", + "longitude": "7.85952000" + }, + { + "id": "138771", + "name": "Gaby", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71300000", + "longitude": "7.88224000" + }, + { + "id": "138960", + "name": "Gignod", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77996000", + "longitude": "7.29640000" + }, + { + "id": "139063", + "name": "Grand Brissogne", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72566000", + "longitude": "7.39260000" + }, + { + "id": "139089", + "name": "Gressan", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72050000", + "longitude": "7.29311000" + }, + { + "id": "139090", + "name": "Gressoney-La-Trinitè", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82967000", + "longitude": "7.82321000" + }, + { + "id": "139091", + "name": "Gressoney-Saint-Jean", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77272000", + "longitude": "7.82802000" + }, + { + "id": "139187", + "name": "Hone", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61356000", + "longitude": "7.73851000" + }, + { + "id": "139211", + "name": "Introd", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69306000", + "longitude": "7.18240000" + }, + { + "id": "139262", + "name": "Issime", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68546000", + "longitude": "7.85411000" + }, + { + "id": "139264", + "name": "Issogne", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65496000", + "longitude": "7.68571000" + }, + { + "id": "139283", + "name": "Jovencan", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71486000", + "longitude": "7.27260000" + }, + { + "id": "139290", + "name": "La Cretaz-Roisan", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78396000", + "longitude": "7.31310000" + }, + { + "id": "139294", + "name": "La Magdeleine", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80996000", + "longitude": "7.61871000" + }, + { + "id": "139299", + "name": "La Place", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65414000", + "longitude": "7.68414000" + }, + { + "id": "139303", + "name": "La Salle", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74497000", + "longitude": "7.07295000" + }, + { + "id": "139306", + "name": "La Thuile", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71366000", + "longitude": "6.95099000" + }, + { + "id": "139383", + "name": "Lassolaz", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73851000", + "longitude": "7.58883000" + }, + { + "id": "139514", + "name": "Lillianes", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62948000", + "longitude": "7.84126000" + }, + { + "id": "140288", + "name": "Mongnod", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80549000", + "longitude": "7.56806000" + }, + { + "id": "140337", + "name": "Montan-Angelin-Arensod", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72820000", + "longitude": "7.27647000" + }, + { + "id": "140576", + "name": "Montjovet", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70796000", + "longitude": "7.67411000" + }, + { + "id": "140613", + "name": "Morgex", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75664000", + "longitude": "7.04123000" + }, + { + "id": "140860", + "name": "Nus", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74026000", + "longitude": "7.46660000" + }, + { + "id": "140907", + "name": "Ollomont", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84976000", + "longitude": "7.31060000" + }, + { + "id": "141060", + "name": "Oyace", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85116000", + "longitude": "7.38300000" + }, + { + "id": "58293", + "name": "Paquier", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87879000", + "longitude": "7.62575000" + }, + { + "id": "58430", + "name": "Perloz", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61386000", + "longitude": "7.80811000" + }, + { + "id": "58476", + "name": "Petit Fenis", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75115000", + "longitude": "7.46391000" + }, + { + "id": "58732", + "name": "Plan d'Introd", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69203000", + "longitude": "7.18328000" + }, + { + "id": "58796", + "name": "Pollein", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72780000", + "longitude": "7.35146000" + }, + { + "id": "58827", + "name": "Pont-Bozet", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60726000", + "longitude": "7.68641000" + }, + { + "id": "58829", + "name": "Pont-Saint-Martin", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59536000", + "longitude": "7.79451000" + }, + { + "id": "58881", + "name": "Pontey", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73886000", + "longitude": "7.58831000" + }, + { + "id": "59193", + "name": "Prè Saint Didier", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76416000", + "longitude": "6.98579000" + }, + { + "id": "59225", + "name": "Quart", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74096000", + "longitude": "7.41520000" + }, + { + "id": "59244", + "name": "Quincod", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71513000", + "longitude": "7.73495000" + }, + { + "id": "59350", + "name": "Rhemes-Notre-Dame", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56965000", + "longitude": "7.11870000" + }, + { + "id": "59351", + "name": "Rhemes-Saint-Georges", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65226000", + "longitude": "7.15440000" + }, + { + "id": "59727", + "name": "Saint Marcel", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73146000", + "longitude": "7.44820000" + }, + { + "id": "59728", + "name": "Saint Maurice", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71771000", + "longitude": "7.25547000" + }, + { + "id": "59729", + "name": "Saint-Christophe", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75406000", + "longitude": "7.34720000" + }, + { + "id": "59730", + "name": "Saint-Denis", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75256000", + "longitude": "7.55531000" + }, + { + "id": "59731", + "name": "Saint-Nicolas", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71656000", + "longitude": "7.16670000" + }, + { + "id": "59732", + "name": "Saint-Oyen", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82439000", + "longitude": "7.21372000" + }, + { + "id": "59733", + "name": "Saint-Pierre", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71153000", + "longitude": "7.22683000" + }, + { + "id": "59734", + "name": "Saint-Rhémy", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83553000", + "longitude": "7.18393000" + }, + { + "id": "59735", + "name": "Saint-Vincent", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75082000", + "longitude": "7.64815000" + }, + { + "id": "60030", + "name": "San Leonardo", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82366000", + "longitude": "7.18140000" + }, + { + "id": "61328", + "name": "Torgnon", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80616000", + "longitude": "7.56980000" + }, + { + "id": "61677", + "name": "Valgrisenche", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63036000", + "longitude": "7.06400000" + }, + { + "id": "61694", + "name": "Valle d'Aosta", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76667000", + "longitude": "7.41667000" + }, + { + "id": "61735", + "name": "Valpelline", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82486000", + "longitude": "7.32550000" + }, + { + "id": "61738", + "name": "Valsavarenche", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59186000", + "longitude": "7.21000000" + }, + { + "id": "61744", + "name": "Valtournenche", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87607000", + "longitude": "7.62430000" + }, + { + "id": "61865", + "name": "Verrayes", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76326000", + "longitude": "7.53460000" + }, + { + "id": "61866", + "name": "Verres", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66656000", + "longitude": "7.68911000" + }, + { + "id": "62045", + "name": "Villa-Nabian", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68970000", + "longitude": "7.70470000" + }, + { + "id": "62074", + "name": "Villair-Amerique", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74793000", + "longitude": "7.38982000" + }, + { + "id": "62147", + "name": "Ville Sur Sarre", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73339000", + "longitude": "7.25857000" + }, + { + "id": "62148", + "name": "Villefranche", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74064000", + "longitude": "7.41598000" + }, + { + "id": "62149", + "name": "Villeneuve", + "state_id": 1716, + "state_code": "23", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70201000", + "longitude": "7.20682000" + }, + { + "id": "135247", + "name": "Accadia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.15768000", + "longitude": "15.33100000" + }, + { + "id": "135272", + "name": "Acquarica del Capo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.90979000", + "longitude": "18.24680000" + }, + { + "id": "135281", + "name": "Acquaviva delle Fonti", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89704000", + "longitude": "16.84330000" + }, + { + "id": "135286", + "name": "Adelfia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00330000", + "longitude": "16.87208000" + }, + { + "id": "135365", + "name": "Alberobello", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78448000", + "longitude": "17.23618000" + }, + { + "id": "135366", + "name": "Alberona", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.43225000", + "longitude": "15.12304000" + }, + { + "id": "135397", + "name": "Alessano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.89381000", + "longitude": "18.33221000" + }, + { + "id": "135398", + "name": "Alezio", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.06226000", + "longitude": "18.05712000" + }, + { + "id": "135418", + "name": "Alliste", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.94803000", + "longitude": "18.08971000" + }, + { + "id": "135430", + "name": "Altamura", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.82664000", + "longitude": "16.54952000" + }, + { + "id": "135486", + "name": "Andrano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.98546000", + "longitude": "18.38232000" + }, + { + "id": "135491", + "name": "Andria", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23117000", + "longitude": "16.29797000" + }, + { + "id": "135525", + "name": "Anzano di Puglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.12162000", + "longitude": "15.28688000" + }, + { + "id": "135540", + "name": "Apricena", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.78629000", + "longitude": "15.44394000" + }, + { + "id": "135549", + "name": "Aradeo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12921000", + "longitude": "18.12951000" + }, + { + "id": "135621", + "name": "Arnesano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.33679000", + "longitude": "18.09145000" + }, + { + "id": "135656", + "name": "Ascoli Satriano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.20365000", + "longitude": "15.56646000" + }, + { + "id": "135703", + "name": "Avetrana", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.35070000", + "longitude": "17.73260000" + }, + { + "id": "135771", + "name": "Bagnolo del Salento", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14908000", + "longitude": "18.35208000" + }, + { + "id": "135853", + "name": "Bari", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93333000", + "longitude": "16.66667000" + }, + { + "id": "135860", + "name": "Barletta", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.31429000", + "longitude": "16.28165000" + }, + { + "id": "136043", + "name": "Biccari", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.39736000", + "longitude": "15.19644000" + }, + { + "id": "136053", + "name": "Binetto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02343000", + "longitude": "16.70988000" + }, + { + "id": "136061", + "name": "Bisceglie", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.24264000", + "longitude": "16.50104000" + }, + { + "id": "136067", + "name": "Bitetto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04146000", + "longitude": "16.74806000" + }, + { + "id": "136068", + "name": "Bitonto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.11006000", + "longitude": "16.69086000" + }, + { + "id": "136069", + "name": "Bitritto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04336000", + "longitude": "16.82682000" + }, + { + "id": "136153", + "name": "Borgagne", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24108000", + "longitude": "18.37661000" + }, + { + "id": "136257", + "name": "Botrugno", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.06359000", + "longitude": "18.32254000" + }, + { + "id": "136272", + "name": "Bovino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.24916000", + "longitude": "15.33948000" + }, + { + "id": "136334", + "name": "Brindisi", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63215000", + "longitude": "17.93607000" + }, + { + "id": "136471", + "name": "Cagnano Varano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.82832000", + "longitude": "15.77203000" + }, + { + "id": "136528", + "name": "Calimera", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24948000", + "longitude": "18.27982000" + }, + { + "id": "136616", + "name": "Campi Salentina", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39747000", + "longitude": "18.02141000" + }, + { + "id": "136697", + "name": "Candela", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.13601000", + "longitude": "15.51537000" + }, + { + "id": "136727", + "name": "Cannole", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.16592000", + "longitude": "18.36456000" + }, + { + "id": "136732", + "name": "Canosa di Puglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21954000", + "longitude": "16.06768000" + }, + { + "id": "136769", + "name": "Capirro", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25403000", + "longitude": "16.42242000" + }, + { + "id": "136804", + "name": "Caprarica di Lecce", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26060000", + "longitude": "18.24426000" + }, + { + "id": "136826", + "name": "Capurso", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04598000", + "longitude": "16.92168000" + }, + { + "id": "136834", + "name": "Carapelle", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.36365000", + "longitude": "15.69384000" + }, + { + "id": "136884", + "name": "Carlantino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59388000", + "longitude": "14.97681000" + }, + { + "id": "136891", + "name": "Carmiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.34404000", + "longitude": "18.04195000" + }, + { + "id": "136903", + "name": "Carosino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.46538000", + "longitude": "17.39857000" + }, + { + "id": "136904", + "name": "Carovigno", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70626000", + "longitude": "17.65847000" + }, + { + "id": "136915", + "name": "Carpignano Salentino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.19537000", + "longitude": "18.33826000" + }, + { + "id": "136921", + "name": "Carpino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84450000", + "longitude": "15.85712000" + }, + { + "id": "136996", + "name": "Casalini", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73777000", + "longitude": "17.47062000" + }, + { + "id": "137003", + "name": "Casalnuovo Monterotaro", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61942000", + "longitude": "15.10411000" + }, + { + "id": "137011", + "name": "Casalvecchio di Puglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59470000", + "longitude": "15.10999000" + }, + { + "id": "137016", + "name": "Casamassella", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.11424000", + "longitude": "18.45100000" + }, + { + "id": "137017", + "name": "Casamassima", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95653000", + "longitude": "16.92075000" + }, + { + "id": "137030", + "name": "Casarano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.01131000", + "longitude": "18.16237000" + }, + { + "id": "137101", + "name": "Cassano delle Murge", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89112000", + "longitude": "16.76531000" + }, + { + "id": "137215", + "name": "Castellana", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88643000", + "longitude": "17.16549000" + }, + { + "id": "137217", + "name": "Castellaneta", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62794000", + "longitude": "16.93290000" + }, + { + "id": "137267", + "name": "Castelluccio dei Sauri", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30460000", + "longitude": "15.47561000" + }, + { + "id": "137266", + "name": "Castelluccio Valmaggiore", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.34290000", + "longitude": "15.19944000" + }, + { + "id": "137298", + "name": "Castelnuovo della Daunia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.58139000", + "longitude": "15.11796000" + }, + { + "id": "137338", + "name": "Castiglione", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.98333000", + "longitude": "18.35000000" + }, + { + "id": "137372", + "name": "Castri di Lecce", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.27360000", + "longitude": "18.26240000" + }, + { + "id": "137373", + "name": "Castrignano De' Greci", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17342000", + "longitude": "18.29643000" + }, + { + "id": "137374", + "name": "Castrignano del Capo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.83280000", + "longitude": "18.35087000" + }, + { + "id": "137376", + "name": "Castro", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.00702000", + "longitude": "18.42573000" + }, + { + "id": "137382", + "name": "Castromediano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.32803000", + "longitude": "18.17877000" + }, + { + "id": "137418", + "name": "Cavallino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.31020000", + "longitude": "18.20221000" + }, + { + "id": "137461", + "name": "Ceglie Messapica", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64620000", + "longitude": "17.51661000" + }, + { + "id": "137464", + "name": "Celenza Valfortore", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.56048000", + "longitude": "14.97898000" + }, + { + "id": "137469", + "name": "Cellamare", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01969000", + "longitude": "16.92741000" + }, + { + "id": "137476", + "name": "Celle di San Vito", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.32593000", + "longitude": "15.18104000" + }, + { + "id": "137480", + "name": "Cellino San Marco", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.47133000", + "longitude": "17.96427000" + }, + { + "id": "137544", + "name": "Cerfignano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.06107000", + "longitude": "18.44291000" + }, + { + "id": "137550", + "name": "Cerignola", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.26523000", + "longitude": "15.89559000" + }, + { + "id": "137673", + "name": "Chieuti", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84486000", + "longitude": "15.16681000" + }, + { + "id": "137763", + "name": "Cisternino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74326000", + "longitude": "17.42587000" + }, + { + "id": "137885", + "name": "Collemeto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.20885000", + "longitude": "18.10285000" + }, + { + "id": "137887", + "name": "Collepasso", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.07115000", + "longitude": "18.16222000" + }, + { + "id": "137983", + "name": "Conversano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96836000", + "longitude": "17.11329000" + }, + { + "id": "137986", + "name": "Copertino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26821000", + "longitude": "18.05430000" + }, + { + "id": "137991", + "name": "Corato", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.15171000", + "longitude": "16.41143000" + }, + { + "id": "138014", + "name": "Corigliano d'Otranto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.15925000", + "longitude": "18.25598000" + }, + { + "id": "138047", + "name": "Corsano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.88911000", + "longitude": "18.36747000" + }, + { + "id": "138119", + "name": "Cozzana", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92025000", + "longitude": "17.22259000" + }, + { + "id": "138157", + "name": "Crispiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60379000", + "longitude": "17.23290000" + }, + { + "id": "138206", + "name": "Cursi", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14847000", + "longitude": "18.31605000" + }, + { + "id": "138219", + "name": "Cutrofiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12616000", + "longitude": "18.20260000" + }, + { + "id": "138244", + "name": "Deliceto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.22289000", + "longitude": "15.38447000" + }, + { + "id": "138249", + "name": "Depressa", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95908000", + "longitude": "18.36174000" + }, + { + "id": "138270", + "name": "Diso", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.00915000", + "longitude": "18.39144000" + }, + { + "id": "138371", + "name": "Erchie", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.43609000", + "longitude": "17.73610000" + }, + { + "id": "138404", + "name": "Faeto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.32489000", + "longitude": "15.16045000" + }, + { + "id": "138407", + "name": "Faggiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.41616000", + "longitude": "17.38861000" + }, + { + "id": "138454", + "name": "Fasano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83625000", + "longitude": "17.36007000" + }, + { + "id": "138473", + "name": "Felline", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93651000", + "longitude": "18.11822000" + }, + { + "id": "138572", + "name": "Foggia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45845000", + "longitude": "15.55188000" + }, + { + "id": "138687", + "name": "Fragagnano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.43020000", + "longitude": "17.47553000" + }, + { + "id": "138694", + "name": "Francavilla Fontana", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.53123000", + "longitude": "17.58522000" + }, + { + "id": "138783", + "name": "Gagliano del Capo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.84323000", + "longitude": "18.36962000" + }, + { + "id": "138795", + "name": "Galatina", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17416000", + "longitude": "18.17032000" + }, + { + "id": "138796", + "name": "Galatone", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14673000", + "longitude": "18.06937000" + }, + { + "id": "138813", + "name": "Gallipoli", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.05594000", + "longitude": "17.99088000" + }, + { + "id": "138823", + "name": "Galugnano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.25601000", + "longitude": "18.21473000" + }, + { + "id": "138891", + "name": "Gemini", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.91134000", + "longitude": "18.18742000" + }, + { + "id": "138966", + "name": "Ginosa", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.57690000", + "longitude": "16.75655000" + }, + { + "id": "138971", + "name": "Gioia del Colle", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79968000", + "longitude": "16.92298000" + }, + { + "id": "138975", + "name": "Giorgilorio", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.38683000", + "longitude": "18.14873000" + }, + { + "id": "138979", + "name": "Giovinazzo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18500000", + "longitude": "16.67054000" + }, + { + "id": "138987", + "name": "Giuggianello", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09383000", + "longitude": "18.36894000" + }, + { + "id": "138996", + "name": "Giurdignano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12367000", + "longitude": "18.43155000" + }, + { + "id": "139083", + "name": "Gravina in Puglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81748000", + "longitude": "16.41915000" + }, + { + "id": "139121", + "name": "Grottaglie", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.53694000", + "longitude": "17.43723000" + }, + { + "id": "139139", + "name": "Grumo Appula", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01089000", + "longitude": "16.70844000" + }, + { + "id": "139144", + "name": "Guagnano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40123000", + "longitude": "17.94902000" + }, + { + "id": "139230", + "name": "Ischitella", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90434000", + "longitude": "15.89945000" + }, + { + "id": "139255", + "name": "Isole Tremiti", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12085000", + "longitude": "15.50424000" + }, + { + "id": "139300", + "name": "La Rosa", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60674000", + "longitude": "17.95207000" + }, + { + "id": "139345", + "name": "Lamie", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03364000", + "longitude": "16.87559000" + }, + { + "id": "139346", + "name": "Lamie di Olimpie-Selva", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81714000", + "longitude": "17.33478000" + }, + { + "id": "139388", + "name": "Laterza", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62881000", + "longitude": "16.79947000" + }, + { + "id": "139389", + "name": "Latiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55052000", + "longitude": "17.71856000" + }, + { + "id": "139430", + "name": "Lecce", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.35481000", + "longitude": "18.17244000" + }, + { + "id": "139458", + "name": "Leporano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.38218000", + "longitude": "17.33426000" + }, + { + "id": "139459", + "name": "Leporano Marina", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37860000", + "longitude": "17.30960000" + }, + { + "id": "139460", + "name": "Lequile", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30583000", + "longitude": "18.14022000" + }, + { + "id": "139469", + "name": "Lesina", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86125000", + "longitude": "15.35322000" + }, + { + "id": "139481", + "name": "Leuca", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.79949000", + "longitude": "18.35815000" + }, + { + "id": "139486", + "name": "Leverano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28852000", + "longitude": "17.99650000" + }, + { + "id": "139554", + "name": "Lizzanello", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30475000", + "longitude": "18.22283000" + }, + { + "id": "139555", + "name": "Lizzano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39301000", + "longitude": "17.44571000" + }, + { + "id": "139565", + "name": "Locorotondo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.75661000", + "longitude": "17.32392000" + }, + { + "id": "139616", + "name": "Loseto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04214000", + "longitude": "16.84917000" + }, + { + "id": "139631", + "name": "Lucera", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50550000", + "longitude": "15.33910000" + }, + { + "id": "139641", + "name": "Lucugnano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93490000", + "longitude": "18.32174000" + }, + { + "id": "139722", + "name": "Magliano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.33740000", + "longitude": "18.06287000" + }, + { + "id": "139731", + "name": "Maglie", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12069000", + "longitude": "18.29797000" + }, + { + "id": "139791", + "name": "Manduria", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39899000", + "longitude": "17.63726000" + }, + { + "id": "139796", + "name": "Manfredonia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63065000", + "longitude": "15.91876000" + }, + { + "id": "139863", + "name": "Margherita di Savoia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.37174000", + "longitude": "16.15275000" + }, + { + "id": "139886", + "name": "Marina di Ginosa", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.42833000", + "longitude": "16.88003000" + }, + { + "id": "139901", + "name": "Mariotto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05028000", + "longitude": "16.56142000" + }, + { + "id": "139902", + "name": "Marittima", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.99609000", + "longitude": "18.39895000" + }, + { + "id": "139926", + "name": "Martano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.20205000", + "longitude": "18.30193000" + }, + { + "id": "139932", + "name": "Martignano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.23821000", + "longitude": "18.25602000" + }, + { + "id": "139933", + "name": "Martina Franca", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70355000", + "longitude": "17.33814000" + }, + { + "id": "139942", + "name": "Maruggio", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.32054000", + "longitude": "17.57052000" + }, + { + "id": "139977", + "name": "Massafra", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58618000", + "longitude": "17.11635000" + }, + { + "id": "139994", + "name": "Materdomini", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65571000", + "longitude": "17.95949000" + }, + { + "id": "139997", + "name": "Matino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03083000", + "longitude": "18.13630000" + }, + { + "id": "140001", + "name": "Mattinata", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71112000", + "longitude": "16.05087000" + }, + { + "id": "140041", + "name": "Melendugno", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.27252000", + "longitude": "18.33798000" + }, + { + "id": "140049", + "name": "Melissano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.97315000", + "longitude": "18.12113000" + }, + { + "id": "140056", + "name": "Melpignano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.15624000", + "longitude": "18.29194000" + }, + { + "id": "140085", + "name": "Merine", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.33418000", + "longitude": "18.22383000" + }, + { + "id": "140091", + "name": "Mesagne", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55851000", + "longitude": "17.80774000" + }, + { + "id": "140131", + "name": "Miggiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.96180000", + "longitude": "18.31119000" + }, + { + "id": "140160", + "name": "Minervino di Lecce", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09025000", + "longitude": "18.42139000" + }, + { + "id": "140159", + "name": "Minervino Murge", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.08264000", + "longitude": "16.07861000" + }, + { + "id": "140192", + "name": "Modugno", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.08433000", + "longitude": "16.78342000" + }, + { + "id": "140209", + "name": "Mola di Bari", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05997000", + "longitude": "17.09001000" + }, + { + "id": "140213", + "name": "Molfetta", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.20036000", + "longitude": "16.59905000" + }, + { + "id": "140296", + "name": "Monopoli", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94918000", + "longitude": "17.29717000" + }, + { + "id": "140315", + "name": "Montalbano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77827000", + "longitude": "17.48157000" + }, + { + "id": "140379", + "name": "Monte Sant'Angelo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.70530000", + "longitude": "15.96068000" + }, + { + "id": "140462", + "name": "Monteiasi", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.49992000", + "longitude": "17.38260000" + }, + { + "id": "140471", + "name": "Monteleone di Puglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16711000", + "longitude": "15.25822000" + }, + { + "id": "140491", + "name": "Montemesola", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.56760000", + "longitude": "17.33665000" + }, + { + "id": "140508", + "name": "Monteparano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.44335000", + "longitude": "17.41308000" + }, + { + "id": "140520", + "name": "Monteroni di Lecce", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.31929000", + "longitude": "18.09163000" + }, + { + "id": "140530", + "name": "Montesano Salentino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.97544000", + "longitude": "18.32277000" + }, + { + "id": "140533", + "name": "Montesardo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.87572000", + "longitude": "18.33967000" + }, + { + "id": "140555", + "name": "Monti d'Arena-Bosco Caggione", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.35510000", + "longitude": "17.36432000" + }, + { + "id": "140604", + "name": "Morciano di Leuca", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.84719000", + "longitude": "18.31089000" + }, + { + "id": "140659", + "name": "Motta Montecorvino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50743000", + "longitude": "15.11414000" + }, + { + "id": "140670", + "name": "Mottola", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63890000", + "longitude": "17.03432000" + }, + { + "id": "140693", + "name": "Muro Leccese", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.10286000", + "longitude": "18.33674000" + }, + { + "id": "140718", + "name": "Nardò", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17953000", + "longitude": "18.03174000" + }, + { + "id": "140754", + "name": "Neviano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.10650000", + "longitude": "18.11517000" + }, + { + "id": "140788", + "name": "Noci", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79356000", + "longitude": "17.12681000" + }, + { + "id": "140789", + "name": "Nociglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03804000", + "longitude": "18.32757000" + }, + { + "id": "140795", + "name": "Noha", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.15323000", + "longitude": "18.16569000" + }, + { + "id": "140796", + "name": "Noicattaro", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03449000", + "longitude": "16.98963000" + }, + { + "id": "140840", + "name": "Novoli", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37673000", + "longitude": "18.04757000" + }, + { + "id": "140946", + "name": "Ordona", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.31501000", + "longitude": "15.62832000" + }, + { + "id": "140951", + "name": "Oria", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.49999000", + "longitude": "17.64280000" + }, + { + "id": "140972", + "name": "Orsara di Puglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.28163000", + "longitude": "15.26765000" + }, + { + "id": "140977", + "name": "Orta Nova", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.32879000", + "longitude": "15.70994000" + }, + { + "id": "140983", + "name": "Ortelle", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03371000", + "longitude": "18.39125000" + }, + { + "id": "141044", + "name": "Ostuni", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72913000", + "longitude": "17.57675000" + }, + { + "id": "141045", + "name": "Otranto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14789000", + "longitude": "18.48682000" + }, + { + "id": "58219", + "name": "Palagianello", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60851000", + "longitude": "16.97802000" + }, + { + "id": "58220", + "name": "Palagiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.57762000", + "longitude": "17.03812000" + }, + { + "id": "58256", + "name": "Palmariggi", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.13099000", + "longitude": "18.37863000" + }, + { + "id": "58261", + "name": "Palo del Colle", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05562000", + "longitude": "16.70321000" + }, + { + "id": "58262", + "name": "Palombaio", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07036000", + "longitude": "16.60962000" + }, + { + "id": "58282", + "name": "Panni", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.22082000", + "longitude": "15.27560000" + }, + { + "id": "58289", + "name": "Paolo VI", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.52218000", + "longitude": "17.27401000" + }, + { + "id": "58295", + "name": "Parabita", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.05139000", + "longitude": "18.12651000" + }, + { + "id": "58300", + "name": "Parco Scizzo-Parchitello", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07457000", + "longitude": "16.99329000" + }, + { + "id": "58351", + "name": "Patù", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.84078000", + "longitude": "18.33784000" + }, + { + "id": "58455", + "name": "Peschici", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94521000", + "longitude": "16.01612000" + }, + { + "id": "58500", + "name": "Pezze di Greco", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81004000", + "longitude": "17.41333000" + }, + { + "id": "58617", + "name": "Pietramontecorvino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.54228000", + "longitude": "15.12894000" + }, + { + "id": "58709", + "name": "Pisignano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30470000", + "longitude": "18.27155000" + }, + { + "id": "58748", + "name": "Poggiardo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.05315000", + "longitude": "18.37819000" + }, + { + "id": "58755", + "name": "Poggio Imperiale", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.82503000", + "longitude": "15.36680000" + }, + { + "id": "58771", + "name": "Poggiorsini", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91403000", + "longitude": "16.25605000" + }, + { + "id": "58790", + "name": "Polignano a Mare", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99221000", + "longitude": "17.22149000" + }, + { + "id": "58926", + "name": "Porto Cesareo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26228000", + "longitude": "17.89896000" + }, + { + "id": "59067", + "name": "Presicce", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.90055000", + "longitude": "18.26282000" + }, + { + "id": "59112", + "name": "Provincia di Barletta - Andria - Trani", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25097000", + "longitude": "16.17599000" + }, + { + "id": "59118", + "name": "Provincia di Brindisi", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58333000", + "longitude": "17.66667000" + }, + { + "id": "59131", + "name": "Provincia di Foggia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45000000", + "longitude": "15.53333000" + }, + { + "id": "59141", + "name": "Provincia di Lecce", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21667000", + "longitude": "18.16667000" + }, + { + "id": "59178", + "name": "Provincia di Taranto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.61667000", + "longitude": "17.25000000" + }, + { + "id": "59203", + "name": "Pulsano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.38109000", + "longitude": "17.35612000" + }, + { + "id": "59209", + "name": "Putignano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85106000", + "longitude": "17.12190000" + }, + { + "id": "59233", + "name": "Quasano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96724000", + "longitude": "16.57354000" + }, + { + "id": "59255", + "name": "Racale", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.96086000", + "longitude": "18.09154000" + }, + { + "id": "59378", + "name": "Rignano Garganico", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67934000", + "longitude": "15.58835000" + }, + { + "id": "59500", + "name": "Roccaforzata", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.43700000", + "longitude": "17.38986000" + }, + { + "id": "59541", + "name": "Rocchetta Sant'Antonio", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.10326000", + "longitude": "15.45993000" + }, + { + "id": "59553", + "name": "Rodi Garganico", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.92745000", + "longitude": "15.88217000" + }, + { + "id": "59636", + "name": "Roseto Valfortore", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.37544000", + "longitude": "15.09824000" + }, + { + "id": "59696", + "name": "Ruffano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.98195000", + "longitude": "18.24974000" + }, + { + "id": "59705", + "name": "Rutigliano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00997000", + "longitude": "17.00558000" + }, + { + "id": "59709", + "name": "Ruvo di Puglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.11758000", + "longitude": "16.48421000" + }, + { + "id": "59767", + "name": "Salice Salentino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.38485000", + "longitude": "17.96134000" + }, + { + "id": "59789", + "name": "Salve", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.86111000", + "longitude": "18.29493000" + }, + { + "id": "59810", + "name": "Sammichele di Bari", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88711000", + "longitude": "16.94919000" + }, + { + "id": "59859", + "name": "San Cassiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.05631000", + "longitude": "18.33392000" + }, + { + "id": "59864", + "name": "San Cesario di Lecce", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30221000", + "longitude": "18.16098000" + }, + { + "id": "59894", + "name": "San Donaci", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.44853000", + "longitude": "17.92252000" + }, + { + "id": "59898", + "name": "San Donato di Lecce", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26728000", + "longitude": "18.18256000" + }, + { + "id": "59915", + "name": "San Ferdinando di Puglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30263000", + "longitude": "16.07046000" + }, + { + "id": "59956", + "name": "San Giorgio Ionico", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45796000", + "longitude": "17.38034000" + }, + { + "id": "59988", + "name": "San Giovanni Rotondo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.70643000", + "longitude": "15.72770000" + }, + { + "id": "60065", + "name": "San Marco in Lamis", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71210000", + "longitude": "15.63825000" + }, + { + "id": "60066", + "name": "San Marco la Catola", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52483000", + "longitude": "15.00594000" + }, + { + "id": "60099", + "name": "San Marzano di San Giuseppe", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45455000", + "longitude": "17.50351000" + }, + { + "id": "60119", + "name": "San Michele Salentino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63163000", + "longitude": "17.63254000" + }, + { + "id": "60152", + "name": "San Pancrazio Salentino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.41800000", + "longitude": "17.83419000" + }, + { + "id": "60156", + "name": "San Paolo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.12476000", + "longitude": "16.79258000" + }, + { + "id": "60161", + "name": "San Paolo di Civitate", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73893000", + "longitude": "15.26080000" + }, + { + "id": "60201", + "name": "San Pietro in Lama", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30711000", + "longitude": "18.12787000" + }, + { + "id": "60184", + "name": "San Pietro Vernotico", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.48890000", + "longitude": "17.99752000" + }, + { + "id": "60244", + "name": "San Severo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68564000", + "longitude": "15.38148000" + }, + { + "id": "60282", + "name": "San Vito dei Normanni", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65642000", + "longitude": "17.70814000" + }, + { + "id": "60298", + "name": "Sanarica", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.08908000", + "longitude": "18.34803000" + }, + { + "id": "60311", + "name": "Sannicandro di Bari", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00047000", + "longitude": "16.79714000" + }, + { + "id": "60310", + "name": "Sannicandro Garganico", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.83844000", + "longitude": "15.56535000" + }, + { + "id": "60312", + "name": "Sannicola", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09244000", + "longitude": "18.06765000" + }, + { + "id": "60324", + "name": "Sant'Agata di Puglia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.15127000", + "longitude": "15.37968000" + }, + { + "id": "60418", + "name": "Santa Cesarea Terme", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03607000", + "longitude": "18.45542000" + }, + { + "id": "60506", + "name": "Santeramo in Colle", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79236000", + "longitude": "16.75873000" + }, + { + "id": "60583", + "name": "Sava", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40203000", + "longitude": "17.55267000" + }, + { + "id": "60667", + "name": "Scorrano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09018000", + "longitude": "18.29993000" + }, + { + "id": "60677", + "name": "Seclì", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.11897000", + "longitude": "18.10931000" + }, + { + "id": "60758", + "name": "Serracapriola", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80912000", + "longitude": "15.16098000" + }, + { + "id": "60766", + "name": "Serrano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.18438000", + "longitude": "18.35156000" + }, + { + "id": "60896", + "name": "Sogliano Cavour", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14827000", + "longitude": "18.19741000" + }, + { + "id": "60916", + "name": "Soleto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.18781000", + "longitude": "18.20630000" + }, + { + "id": "60994", + "name": "Specchia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93913000", + "longitude": "18.29784000" + }, + { + "id": "61014", + "name": "Spinazzola", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96399000", + "longitude": "16.09111000" + }, + { + "id": "61028", + "name": "Spongano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.01782000", + "longitude": "18.36563000" + }, + { + "id": "61036", + "name": "Squinzano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.43513000", + "longitude": "18.04086000" + }, + { + "id": "61049", + "name": "Statte", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.52856000", + "longitude": "17.20122000" + }, + { + "id": "61067", + "name": "Sternatia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.22022000", + "longitude": "18.22748000" + }, + { + "id": "61079", + "name": "Stornara", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.28672000", + "longitude": "15.77003000" + }, + { + "id": "61080", + "name": "Stornarella", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25591000", + "longitude": "15.73023000" + }, + { + "id": "61103", + "name": "Strudà", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.31991000", + "longitude": "18.28176000" + }, + { + "id": "61123", + "name": "Supersano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.01655000", + "longitude": "18.24205000" + }, + { + "id": "61125", + "name": "Surano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.02818000", + "longitude": "18.34591000" + }, + { + "id": "61126", + "name": "Surbo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39383000", + "longitude": "18.13456000" + }, + { + "id": "61165", + "name": "Taranto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.46438000", + "longitude": "17.24707000" + }, + { + "id": "61177", + "name": "Taurisano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95746000", + "longitude": "18.21498000" + }, + { + "id": "61193", + "name": "Taviano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.98224000", + "longitude": "18.08151000" + }, + { + "id": "61225", + "name": "Terlizzi", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.12905000", + "longitude": "16.54536000" + }, + { + "id": "61276", + "name": "Tiggiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.90284000", + "longitude": "18.36501000" + }, + { + "id": "61321", + "name": "Torchiarolo", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.48349000", + "longitude": "18.05122000" + }, + { + "id": "61331", + "name": "Toritto", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99774000", + "longitude": "16.67945000" + }, + { + "id": "61361", + "name": "Torre San Giovanni", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.89001000", + "longitude": "18.11159000" + }, + { + "id": "61363", + "name": "Torre Santa Susanna", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.46762000", + "longitude": "17.73864000" + }, + { + "id": "61384", + "name": "Torremaggiore", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68894000", + "longitude": "15.29408000" + }, + { + "id": "61400", + "name": "Torricella", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.35509000", + "longitude": "17.49846000" + }, + { + "id": "61437", + "name": "Trani", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27733000", + "longitude": "16.41011000" + }, + { + "id": "61489", + "name": "Trepuzzi", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40535000", + "longitude": "18.07625000" + }, + { + "id": "61519", + "name": "Tricase", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93018000", + "longitude": "18.35421000" + }, + { + "id": "61525", + "name": "Triggiano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06549000", + "longitude": "16.92501000" + }, + { + "id": "61528", + "name": "Trinitapoli", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.35654000", + "longitude": "16.08924000" + }, + { + "id": "61549", + "name": "Troia", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.36428000", + "longitude": "15.31730000" + }, + { + "id": "61566", + "name": "Tuglie", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.07346000", + "longitude": "18.09872000" + }, + { + "id": "61574", + "name": "Turi", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91657000", + "longitude": "17.02038000" + }, + { + "id": "61582", + "name": "Tuturano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.54474000", + "longitude": "17.94754000" + }, + { + "id": "61588", + "name": "Ugento", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "39.92724000", + "longitude": "18.15832000" + }, + { + "id": "61591", + "name": "Uggiano la Chiesa", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.10091000", + "longitude": "18.44872000" + }, + { + "id": "61590", + "name": "Uggiano Montefusco", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.38612000", + "longitude": "17.60460000" + }, + { + "id": "61665", + "name": "Valenzano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04376000", + "longitude": "16.88491000" + }, + { + "id": "61796", + "name": "Veglie", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.33474000", + "longitude": "17.96238000" + }, + { + "id": "61858", + "name": "Vernole", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28834000", + "longitude": "18.30165000" + }, + { + "id": "61918", + "name": "Vico del Gargano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.89661000", + "longitude": "15.95682000" + }, + { + "id": "61933", + "name": "Vieste", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88209000", + "longitude": "16.17139000" + }, + { + "id": "61955", + "name": "Vignacastrisi", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.01604000", + "longitude": "18.40704000" + }, + { + "id": "61990", + "name": "Villa Castelli", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58293000", + "longitude": "17.47468000" + }, + { + "id": "62181", + "name": "Vitigliano", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03951000", + "longitude": "18.41170000" + }, + { + "id": "62220", + "name": "Volturara Appula", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.49603000", + "longitude": "15.05224000" + }, + { + "id": "62222", + "name": "Volturino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.47723000", + "longitude": "15.12424000" + }, + { + "id": "62237", + "name": "Zapponeta", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45710000", + "longitude": "15.95615000" + }, + { + "id": "62269", + "name": "Zollino", + "state_id": 1688, + "state_code": "75", + "country_id": 107, + "country_code": "IT", + "latitude": "40.20581000", + "longitude": "18.24774000" + }, + { + "id": "135245", + "name": "Abriola", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.50748000", + "longitude": "15.81310000" + }, + { + "id": "135249", + "name": "Accettura", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.49102000", + "longitude": "16.15798000" + }, + { + "id": "135253", + "name": "Acerenza", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79386000", + "longitude": "15.93808000" + }, + { + "id": "135354", + "name": "Albano di Lucania", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58614000", + "longitude": "16.03712000" + }, + { + "id": "135407", + "name": "Aliano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.31359000", + "longitude": "16.22984000" + }, + { + "id": "135526", + "name": "Anzi", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.51662000", + "longitude": "15.92457000" + }, + { + "id": "135614", + "name": "Armento", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30660000", + "longitude": "16.06550000" + }, + { + "id": "135673", + "name": "Atella", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87855000", + "longitude": "15.65226000" + }, + { + "id": "135709", + "name": "Avigliano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73291000", + "longitude": "15.72004000" + }, + { + "id": "135797", + "name": "Balvano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64953000", + "longitude": "15.51345000" + }, + { + "id": "135806", + "name": "Banzi", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86063000", + "longitude": "16.00976000" + }, + { + "id": "135810", + "name": "Baragiano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.68001000", + "longitude": "15.59398000" + }, + { + "id": "135857", + "name": "Barile", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94327000", + "longitude": "15.67167000" + }, + { + "id": "135934", + "name": "Bella", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.76059000", + "longitude": "15.54101000" + }, + { + "id": "135992", + "name": "Bernalda", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.41261000", + "longitude": "16.68919000" + }, + { + "id": "136329", + "name": "Brienza", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.47751000", + "longitude": "15.62927000" + }, + { + "id": "136335", + "name": "Brindisi Montagna", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60952000", + "longitude": "15.93977000" + }, + { + "id": "136504", + "name": "Calciano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58802000", + "longitude": "16.19238000" + }, + { + "id": "136553", + "name": "Calvello", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.47482000", + "longitude": "15.85092000" + }, + { + "id": "136556", + "name": "Calvera", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14871000", + "longitude": "16.14362000" + }, + { + "id": "136667", + "name": "Campomaggiore", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.56590000", + "longitude": "16.07250000" + }, + { + "id": "136694", + "name": "Cancellara", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73068000", + "longitude": "15.92470000" + }, + { + "id": "136850", + "name": "Carbone", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14227000", + "longitude": "16.08846000" + }, + { + "id": "137203", + "name": "Castelgrande", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78639000", + "longitude": "15.43109000" + }, + { + "id": "137264", + "name": "Castelluccio Inferiore", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.00151000", + "longitude": "15.98149000" + }, + { + "id": "137265", + "name": "Castelluccio Superiore", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.01003000", + "longitude": "15.97184000" + }, + { + "id": "137273", + "name": "Castelmezzano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.52832000", + "longitude": "16.04585000" + }, + { + "id": "137313", + "name": "Castelsaraceno", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.16213000", + "longitude": "15.99281000" + }, + { + "id": "137384", + "name": "Castronuovo di Sant'Andrea", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.18903000", + "longitude": "16.18559000" + }, + { + "id": "137577", + "name": "Cersosimo", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.04703000", + "longitude": "16.35059000" + }, + { + "id": "137655", + "name": "Chiaromonte", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12323000", + "longitude": "16.21440000" + }, + { + "id": "137747", + "name": "Cirigliano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39376000", + "longitude": "16.17194000" + }, + { + "id": "137910", + "name": "Colobraro", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.18841000", + "longitude": "16.42480000" + }, + { + "id": "138019", + "name": "Corleto Perticara", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.38214000", + "longitude": "16.03917000" + }, + { + "id": "138121", + "name": "Craco-Sant'Angelo", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37992000", + "longitude": "16.43708000" + }, + { + "id": "138364", + "name": "Episcopia", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.07481000", + "longitude": "16.09818000" + }, + { + "id": "138445", + "name": "Fardella", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.11381000", + "longitude": "16.16978000" + }, + { + "id": "138488", + "name": "Ferrandina", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.50084000", + "longitude": "16.45258000" + }, + { + "id": "138529", + "name": "Filiano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81042000", + "longitude": "15.70984000" + }, + { + "id": "138624", + "name": "Forenza", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86041000", + "longitude": "15.85457000" + }, + { + "id": "138699", + "name": "Francavilla in Sinni", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.08142000", + "longitude": "16.20417000" + }, + { + "id": "138809", + "name": "Gallicchio", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.29232000", + "longitude": "16.13561000" + }, + { + "id": "138843", + "name": "Garaguso", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.54866000", + "longitude": "16.22827000" + }, + { + "id": "138903", + "name": "Genzano di Lucania", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84589000", + "longitude": "16.03124000" + }, + { + "id": "138963", + "name": "Ginestra", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93092000", + "longitude": "15.73497000" + }, + { + "id": "139029", + "name": "Gorgoglione", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39532000", + "longitude": "16.14456000" + }, + { + "id": "139072", + "name": "Grassano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63457000", + "longitude": "16.27792000" + }, + { + "id": "139130", + "name": "Grottole", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60333000", + "longitude": "16.37831000" + }, + { + "id": "139137", + "name": "Grumento Nova", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28281000", + "longitude": "15.88877000" + }, + { + "id": "139160", + "name": "Guardia Perticara", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.36167000", + "longitude": "16.09845000" + }, + { + "id": "139223", + "name": "Irsina", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.75015000", + "longitude": "16.23816000" + }, + { + "id": "139295", + "name": "La Martella", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.66251000", + "longitude": "16.53551000" + }, + { + "id": "139327", + "name": "Lagonegro", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12785000", + "longitude": "15.76212000" + }, + { + "id": "139393", + "name": "Latronico", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.08909000", + "longitude": "16.00947000" + }, + { + "id": "139400", + "name": "Laurenzana", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45908000", + "longitude": "15.97075000" + }, + { + "id": "139401", + "name": "Lauria", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.04702000", + "longitude": "15.83812000" + }, + { + "id": "139410", + "name": "Lavello", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04769000", + "longitude": "15.78915000" + }, + { + "id": "139501", + "name": "Lido", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.19128000", + "longitude": "16.70692000" + }, + { + "id": "139832", + "name": "Maratea", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "39.99932000", + "longitude": "15.71539000" + }, + { + "id": "139855", + "name": "Marconia", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.36355000", + "longitude": "16.68823000" + }, + { + "id": "139922", + "name": "Marsico Nuovo", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.42359000", + "longitude": "15.73462000" + }, + { + "id": "139923", + "name": "Marsicovetere", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37591000", + "longitude": "15.82569000" + }, + { + "id": "139954", + "name": "Maschito", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90892000", + "longitude": "15.82946000" + }, + { + "id": "139993", + "name": "Matera", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.66599000", + "longitude": "16.60463000" + }, + { + "id": "140043", + "name": "Melfi", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99571000", + "longitude": "15.65578000" + }, + { + "id": "140138", + "name": "Miglionico", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.56763000", + "longitude": "16.49964000" + }, + { + "id": "140183", + "name": "Missanello", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28311000", + "longitude": "16.16650000" + }, + { + "id": "140228", + "name": "Moliterno", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24394000", + "longitude": "15.86544000" + }, + { + "id": "140318", + "name": "Montalbano Jonico", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28591000", + "longitude": "16.56960000" + }, + { + "id": "140495", + "name": "Montemilone", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02742000", + "longitude": "15.96661000" + }, + { + "id": "140499", + "name": "Montemurro", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.29765000", + "longitude": "15.99182000" + }, + { + "id": "140534", + "name": "Montescaglioso", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55024000", + "longitude": "16.66541000" + }, + { + "id": "140694", + "name": "Muro Lucano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.75379000", + "longitude": "15.48808000" + }, + { + "id": "140741", + "name": "Nemoli", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.06765000", + "longitude": "15.79962000" + }, + { + "id": "140790", + "name": "Noepoli", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.08705000", + "longitude": "16.32834000" + }, + { + "id": "140816", + "name": "Nova Siri", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14823000", + "longitude": "16.53976000" + }, + { + "id": "140817", + "name": "Nova Siri Scalo", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.13177000", + "longitude": "16.63593000" + }, + { + "id": "140902", + "name": "Oliveto Lucano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.53554000", + "longitude": "16.18547000" + }, + { + "id": "140934", + "name": "Oppido Lucano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.76174000", + "longitude": "15.98818000" + }, + { + "id": "58231", + "name": "Palazzo San Gervasio", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93156000", + "longitude": "15.98149000" + }, + { + "id": "58343", + "name": "Paterno", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37507000", + "longitude": "15.73510000" + }, + { + "id": "58463", + "name": "Pescopagano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83494000", + "longitude": "15.39946000" + }, + { + "id": "58580", + "name": "Picerno", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63975000", + "longitude": "15.64232000" + }, + { + "id": "58614", + "name": "Pietragalla", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74572000", + "longitude": "15.87398000" + }, + { + "id": "58621", + "name": "Pietrapertosa", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.51731000", + "longitude": "16.06244000" + }, + { + "id": "58663", + "name": "Pignola", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.57412000", + "longitude": "15.78295000" + }, + { + "id": "58713", + "name": "Pisticci", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39017000", + "longitude": "16.55919000" + }, + { + "id": "58789", + "name": "Policoro", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21280000", + "longitude": "16.67795000" + }, + { + "id": "58810", + "name": "Pomarico", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.52804000", + "longitude": "16.52708000" + }, + { + "id": "58965", + "name": "Potenza", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64175000", + "longitude": "15.80794000" + }, + { + "id": "59149", + "name": "Provincia di Matera", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.50000000", + "longitude": "16.41667000" + }, + { + "id": "59164", + "name": "Provincia di Potenza", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.46442000", + "longitude": "15.89938000" + }, + { + "id": "59287", + "name": "Rapolla", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97499000", + "longitude": "15.67201000" + }, + { + "id": "59288", + "name": "Rapone", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84710000", + "longitude": "15.49818000" + }, + { + "id": "59397", + "name": "Rionero in Vulture", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92328000", + "longitude": "15.67110000" + }, + { + "id": "59402", + "name": "Ripacandida", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91256000", + "longitude": "15.72597000" + }, + { + "id": "59436", + "name": "Rivello", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.07821000", + "longitude": "15.75798000" + }, + { + "id": "59511", + "name": "Roccanova", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21250000", + "longitude": "16.20429000" + }, + { + "id": "59659", + "name": "Rotonda", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95215000", + "longitude": "16.03904000" + }, + { + "id": "59660", + "name": "Rotondella", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17136000", + "longitude": "16.52491000" + }, + { + "id": "59703", + "name": "Ruoti", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.71660000", + "longitude": "15.68369000" + }, + { + "id": "59708", + "name": "Ruvo del Monte", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84951000", + "longitude": "15.54217000" + }, + { + "id": "59746", + "name": "Salandra", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.52668000", + "longitude": "16.32037000" + }, + { + "id": "59848", + "name": "San Brancato", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.25822000", + "longitude": "16.25661000" + }, + { + "id": "59866", + "name": "San Chirico Nuovo", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67764000", + "longitude": "16.07892000" + }, + { + "id": "59867", + "name": "San Chirico Raparo", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.19242000", + "longitude": "16.07618000" + }, + { + "id": "59880", + "name": "San Costantino Albanese", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03679000", + "longitude": "16.30475000" + }, + { + "id": "59905", + "name": "San Fele", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81647000", + "longitude": "15.54043000" + }, + { + "id": "59957", + "name": "San Giorgio Lucano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.11132000", + "longitude": "16.38930000" + }, + { + "id": "60081", + "name": "San Martino d'Agri", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.23913000", + "longitude": "16.05216000" + }, + { + "id": "60107", + "name": "San Mauro Forte", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.48333000", + "longitude": "16.25155000" + }, + { + "id": "60157", + "name": "San Paolo Albanese", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03567000", + "longitude": "16.33498000" + }, + { + "id": "60242", + "name": "San Severino Lucano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.02021000", + "longitude": "16.13860000" + }, + { + "id": "60372", + "name": "Sant'Angelo le Fratte", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.54490000", + "longitude": "15.56156000" + }, + { + "id": "60387", + "name": "Sant'Arcangelo", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24852000", + "longitude": "16.27046000" + }, + { + "id": "60542", + "name": "Sarconi", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24800000", + "longitude": "15.88837000" + }, + { + "id": "60573", + "name": "Sasso di Castalda", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.48525000", + "longitude": "15.67569000" + }, + { + "id": "60579", + "name": "Satriano di Lucania", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.54296000", + "longitude": "15.64024000" + }, + { + "id": "60598", + "name": "Savoia di Lucania", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.56949000", + "longitude": "15.55132000" + }, + { + "id": "60611", + "name": "Scalo di Baragiano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69500000", + "longitude": "15.57508000" + }, + { + "id": "60626", + "name": "Scanzano Jonico", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.25085000", + "longitude": "16.69824000" + }, + { + "id": "60726", + "name": "Senise", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14616000", + "longitude": "16.28867000" + }, + { + "id": "61024", + "name": "Spinoso", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26921000", + "longitude": "15.96658000" + }, + { + "id": "61072", + "name": "Stigliano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40237000", + "longitude": "16.22983000" + }, + { + "id": "61198", + "name": "Teana", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12586000", + "longitude": "16.15281000" + }, + { + "id": "61242", + "name": "Terranova di Pollino", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "39.97765000", + "longitude": "16.29583000" + }, + { + "id": "61287", + "name": "Tito", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58370000", + "longitude": "15.67621000" + }, + { + "id": "61303", + "name": "Tolve", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69422000", + "longitude": "16.01627000" + }, + { + "id": "61435", + "name": "Tramutola", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.31858000", + "longitude": "15.78753000" + }, + { + "id": "61467", + "name": "Trecchina", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.02611000", + "longitude": "15.77585000" + }, + { + "id": "61518", + "name": "Tricarico", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.61458000", + "longitude": "16.14259000" + }, + { + "id": "61544", + "name": "Trivigno", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58015000", + "longitude": "15.98857000" + }, + { + "id": "61579", + "name": "Tursi", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24651000", + "longitude": "16.47140000" + }, + { + "id": "61634", + "name": "Vaglio Basilicata", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.66643000", + "longitude": "15.91434000" + }, + { + "id": "61739", + "name": "Valsinni", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17098000", + "longitude": "16.44388000" + }, + { + "id": "61823", + "name": "Venosa", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96283000", + "longitude": "15.81285000" + }, + { + "id": "61934", + "name": "Vietri di Potenza", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60027000", + "longitude": "15.50787000" + }, + { + "id": "61945", + "name": "Viggianello", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "39.97227000", + "longitude": "16.08521000" + }, + { + "id": "61946", + "name": "Viggiano", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.34213000", + "longitude": "15.89964000" + }, + { + "id": "62033", + "name": "Villa d'Agri", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "40.35426000", + "longitude": "15.82770000" + }, + { + "id": "62270", + "name": "Zona 179", + "state_id": 1706, + "state_code": "77", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00313000", + "longitude": "15.61868000" + }, + { + "id": "135251", + "name": "Acconia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.83585000", + "longitude": "16.26530000" + }, + { + "id": "135265", + "name": "Acquaformosa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.72278000", + "longitude": "16.09096000" + }, + { + "id": "135271", + "name": "Acquappesa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.49573000", + "longitude": "15.95419000" + }, + { + "id": "135273", + "name": "Acquaro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.55729000", + "longitude": "16.18781000" + }, + { + "id": "135284", + "name": "Acri", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.49624000", + "longitude": "16.38635000" + }, + { + "id": "135295", + "name": "Africo Nuovo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05067000", + "longitude": "16.13320000" + }, + { + "id": "135296", + "name": "Africo Vecchio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.06667000", + "longitude": "15.98333000" + }, + { + "id": "135309", + "name": "Agnana Calabra", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.30206000", + "longitude": "16.22718000" + }, + { + "id": "135326", + "name": "Aiello Calabro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.11785000", + "longitude": "16.16539000" + }, + { + "id": "135329", + "name": "Aieta", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.92780000", + "longitude": "15.82348000" + }, + { + "id": "135369", + "name": "Albi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.02456000", + "longitude": "16.59721000" + }, + { + "id": "135374", + "name": "Albidona", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.92332000", + "longitude": "16.47237000" + }, + { + "id": "135395", + "name": "Alessandria del Carretto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95874000", + "longitude": "16.37963000" + }, + { + "id": "135439", + "name": "Altilia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.13049000", + "longitude": "16.25269000" + }, + { + "id": "135445", + "name": "Altomonte", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.69900000", + "longitude": "16.12999000" + }, + { + "id": "135458", + "name": "Amantea", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.12658000", + "longitude": "16.07512000" + }, + { + "id": "135460", + "name": "Amaroni", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.79424000", + "longitude": "16.44809000" + }, + { + "id": "135462", + "name": "Amato", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.38333000", + "longitude": "16.13333000" + }, + { + "id": "135469", + "name": "Amendolara", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95162000", + "longitude": "16.58293000" + }, + { + "id": "135471", + "name": "Amica", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.60085000", + "longitude": "16.66694000" + }, + { + "id": "135480", + "name": "Andali", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.01281000", + "longitude": "16.76926000" + }, + { + "id": "135489", + "name": "Andreotta", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30750000", + "longitude": "16.21770000" + }, + { + "id": "135509", + "name": "Anoia Inferiore", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.43618000", + "longitude": "16.07940000" + }, + { + "id": "135510", + "name": "Anoia Superiore", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.43144000", + "longitude": "16.09740000" + }, + { + "id": "135520", + "name": "Antonimina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.27298000", + "longitude": "16.14824000" + }, + { + "id": "135541", + "name": "Aprigliano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.24228000", + "longitude": "16.34046000" + }, + { + "id": "135560", + "name": "Arcavacata", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.35846000", + "longitude": "16.20844000" + }, + { + "id": "135582", + "name": "Ardore", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.19173000", + "longitude": "16.16734000" + }, + { + "id": "135583", + "name": "Ardore Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16667000", + "longitude": "16.20000000" + }, + { + "id": "135585", + "name": "Arena", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.56235000", + "longitude": "16.21060000" + }, + { + "id": "135596", + "name": "Argusto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.68051000", + "longitude": "16.43627000" + }, + { + "id": "135742", + "name": "Badolato", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.56868000", + "longitude": "16.52461000" + }, + { + "id": "135743", + "name": "Badolato Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.57613000", + "longitude": "16.56527000" + }, + { + "id": "135744", + "name": "Bagaladi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02560000", + "longitude": "15.82152000" + }, + { + "id": "135749", + "name": "Bagnara Calabra", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.28778000", + "longitude": "15.80591000" + }, + { + "id": "135863", + "name": "Barone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.85225000", + "longitude": "16.63927000" + }, + { + "id": "135926", + "name": "Belcastro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.01799000", + "longitude": "16.78641000" + }, + { + "id": "135951", + "name": "Belmonte Calabro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.16398000", + "longitude": "16.08215000" + }, + { + "id": "135958", + "name": "Belsito", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.17685000", + "longitude": "16.28745000" + }, + { + "id": "135963", + "name": "Belvedere Marittimo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.61930000", + "longitude": "15.86220000" + }, + { + "id": "135965", + "name": "Belvedere Spinello", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.20674000", + "longitude": "16.89233000" + }, + { + "id": "135973", + "name": "Benestare", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.18487000", + "longitude": "16.13900000" + }, + { + "id": "136029", + "name": "Bianchi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.10058000", + "longitude": "16.41018000" + }, + { + "id": "136030", + "name": "Bianco", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09170000", + "longitude": "16.15159000" + }, + { + "id": "136064", + "name": "Bisignano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.50727000", + "longitude": "16.28106000" + }, + { + "id": "136076", + "name": "Bivongi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.48328000", + "longitude": "16.45251000" + }, + { + "id": "136088", + "name": "Bocchigliero", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.41930000", + "longitude": "16.75057000" + }, + { + "id": "136138", + "name": "Bonifati", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.58595000", + "longitude": "15.90163000" + }, + { + "id": "136156", + "name": "Borgata Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.97136000", + "longitude": "16.62091000" + }, + { + "id": "136166", + "name": "Borgia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.82627000", + "longitude": "16.50770000" + }, + { + "id": "136256", + "name": "Botricello", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.92997000", + "longitude": "16.85801000" + }, + { + "id": "136264", + "name": "Bova", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.99507000", + "longitude": "15.93190000" + }, + { + "id": "136265", + "name": "Bova Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.93503000", + "longitude": "15.91736000" + }, + { + "id": "136266", + "name": "Bovalino", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.15376000", + "longitude": "16.17232000" + }, + { + "id": "136267", + "name": "Bovalino Superiore", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16905000", + "longitude": "16.15849000" + }, + { + "id": "136285", + "name": "Brancaleone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.96297000", + "longitude": "16.10040000" + }, + { + "id": "136286", + "name": "Brancaleone-Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.96667000", + "longitude": "16.10000000" + }, + { + "id": "136325", + "name": "Briatico", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.72254000", + "longitude": "16.02737000" + }, + { + "id": "136347", + "name": "Brognaturo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.60128000", + "longitude": "16.34140000" + }, + { + "id": "136380", + "name": "Bruzzano Zeffirio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.01327000", + "longitude": "16.08260000" + }, + { + "id": "136408", + "name": "Buonvicino", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.68877000", + "longitude": "15.88400000" + }, + { + "id": "136452", + "name": "Caccuri", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.22562000", + "longitude": "16.77767000" + }, + { + "id": "136491", + "name": "Calanna", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.18457000", + "longitude": "15.72293000" + }, + { + "id": "136536", + "name": "Caloppezzati", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.56120000", + "longitude": "16.80180000" + }, + { + "id": "136538", + "name": "Caloveto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.50656000", + "longitude": "16.76065000" + }, + { + "id": "136563", + "name": "Calvisi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.12739000", + "longitude": "16.30590000" + }, + { + "id": "136589", + "name": "Camini", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.43179000", + "longitude": "16.48321000" + }, + { + "id": "136607", + "name": "Campana", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.41360000", + "longitude": "16.82220000" + }, + { + "id": "136627", + "name": "Campo Calabro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.21607000", + "longitude": "15.65919000" + }, + { + "id": "136673", + "name": "Campora San Giovanni", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.06798000", + "longitude": "16.09566000" + }, + { + "id": "136705", + "name": "Candidoni", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.50548000", + "longitude": "16.08630000" + }, + { + "id": "136717", + "name": "Canna", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09484000", + "longitude": "16.50378000" + }, + { + "id": "136728", + "name": "Canolo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.31497000", + "longitude": "16.19990000" + }, + { + "id": "136749", + "name": "Cantinella", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.66458000", + "longitude": "16.44912000" + }, + { + "id": "136770", + "name": "Capistrano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.69131000", + "longitude": "16.28935000" + }, + { + "id": "136777", + "name": "Capo Rizzuto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.90412000", + "longitude": "17.09872000" + }, + { + "id": "136827", + "name": "Caraffa del Bianco", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09259000", + "longitude": "16.08766000" + }, + { + "id": "136828", + "name": "Caraffa di Catanzaro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.88194000", + "longitude": "16.48675000" + }, + { + "id": "136860", + "name": "Cardeto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.08440000", + "longitude": "15.76577000" + }, + { + "id": "136861", + "name": "Cardinale", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.65379000", + "longitude": "16.38715000" + }, + { + "id": "136868", + "name": "Careri", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17741000", + "longitude": "16.11614000" + }, + { + "id": "136872", + "name": "Carfizzi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30771000", + "longitude": "16.97447000" + }, + { + "id": "136874", + "name": "Cariati", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.49627000", + "longitude": "16.95495000" + }, + { + "id": "136889", + "name": "Carlopoli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.05406000", + "longitude": "16.45455000" + }, + { + "id": "136898", + "name": "Carolei", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.25472000", + "longitude": "16.21979000" + }, + { + "id": "136907", + "name": "Carpanzano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.14817000", + "longitude": "16.30451000" + }, + { + "id": "136952", + "name": "Casabona", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.24951000", + "longitude": "16.95446000" + }, + { + "id": "137069", + "name": "Casignana", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.10187000", + "longitude": "16.08990000" + }, + { + "id": "137081", + "name": "Casole Bruzio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.28384000", + "longitude": "16.33193000" + }, + { + "id": "137095", + "name": "Cassano Allo Ionio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.78142000", + "longitude": "16.32738000" + }, + { + "id": "137316", + "name": "Castelsilano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.26910000", + "longitude": "16.76741000" + }, + { + "id": "137340", + "name": "Castiglione Cosentino", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.35271000", + "longitude": "16.28821000" + }, + { + "id": "137381", + "name": "Castrolibero", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31002000", + "longitude": "16.19453000" + }, + { + "id": "137388", + "name": "Castroregio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.99220000", + "longitude": "16.47846000" + }, + { + "id": "137389", + "name": "Castrovillari", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.81632000", + "longitude": "16.20183000" + }, + { + "id": "137392", + "name": "Catanzaro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.88247000", + "longitude": "16.60086000" + }, + { + "id": "137398", + "name": "Caulonia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.38171000", + "longitude": "16.40951000" + }, + { + "id": "137399", + "name": "Caulonia Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.34679000", + "longitude": "16.46353000" + }, + { + "id": "137404", + "name": "Cava-Cuculera Nobile", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.89383000", + "longitude": "16.62226000" + }, + { + "id": "137440", + "name": "Cavoni-Ginestreto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.45212000", + "longitude": "16.26267000" + }, + { + "id": "137466", + "name": "Celico", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31009000", + "longitude": "16.33989000" + }, + { + "id": "137470", + "name": "Cellara", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.21849000", + "longitude": "16.33480000" + }, + { + "id": "137485", + "name": "Cenadi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.71934000", + "longitude": "16.41582000" + }, + { + "id": "137500", + "name": "Centrache", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.72872000", + "longitude": "16.43101000" + }, + { + "id": "137512", + "name": "Ceramida-Pellegrina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.29667000", + "longitude": "15.82572000" + }, + { + "id": "137524", + "name": "Cerchiara di Calabria", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.85978000", + "longitude": "16.38368000" + }, + { + "id": "137534", + "name": "Cerenzia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.24554000", + "longitude": "16.78758000" + }, + { + "id": "137551", + "name": "Cerisano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.27715000", + "longitude": "16.17654000" + }, + { + "id": "137581", + "name": "Cerva", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.02397000", + "longitude": "16.74538000" + }, + { + "id": "137592", + "name": "Cervicati", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.54237000", + "longitude": "16.12682000" + }, + { + "id": "137599", + "name": "Cerzeto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.50789000", + "longitude": "16.11603000" + }, + { + "id": "137617", + "name": "Cessaniti", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.66395000", + "longitude": "16.02959000" + }, + { + "id": "137623", + "name": "Cetraro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.51660000", + "longitude": "15.94158000" + }, + { + "id": "137624", + "name": "Cetraro Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.51701000", + "longitude": "15.93460000" + }, + { + "id": "137653", + "name": "Chiaravalle Centrale", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.67936000", + "longitude": "16.40864000" + }, + { + "id": "137708", + "name": "Cicala", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.02219000", + "longitude": "16.48610000" + }, + { + "id": "137725", + "name": "Ciminà", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.24618000", + "longitude": "16.14023000" + }, + { + "id": "137737", + "name": "Cinque Frondi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.41618000", + "longitude": "16.08420000" + }, + { + "id": "137750", + "name": "Cirò", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.38297000", + "longitude": "17.06377000" + }, + { + "id": "137751", + "name": "Cirò Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.36876000", + "longitude": "17.12477000" + }, + { + "id": "137766", + "name": "Cittadella del Capo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.55932000", + "longitude": "15.87602000" + }, + { + "id": "137768", + "name": "Cittanova", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.35431000", + "longitude": "16.07898000" + }, + { + "id": "137785", + "name": "Civita", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.82804000", + "longitude": "16.31337000" + }, + { + "id": "137812", + "name": "Cleto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.09019000", + "longitude": "16.15839000" + }, + { + "id": "137927", + "name": "Colosimi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.11911000", + "longitude": "16.39909000" + }, + { + "id": "137963", + "name": "Condofuri", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.00447000", + "longitude": "15.85770000" + }, + { + "id": "137969", + "name": "Conflenti", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.07169000", + "longitude": "16.28450000" + }, + { + "id": "138012", + "name": "Corigliano Calabro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.59553000", + "longitude": "16.51907000" + }, + { + "id": "138013", + "name": "Corigliano Scalo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.62713000", + "longitude": "16.51368000" + }, + { + "id": "138051", + "name": "Cortale", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.84009000", + "longitude": "16.40960000" + }, + { + "id": "138078", + "name": "Cosenza", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.29890000", + "longitude": "16.25307000" + }, + { + "id": "138082", + "name": "Cosoleto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.27483000", + "longitude": "15.92814000" + }, + { + "id": "138112", + "name": "Cotronei", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.15935000", + "longitude": "16.77688000" + }, + { + "id": "138154", + "name": "Crichi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.95296000", + "longitude": "16.64178000" + }, + { + "id": "138165", + "name": "Cropalati", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.51673000", + "longitude": "16.72674000" + }, + { + "id": "138166", + "name": "Cropani", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.96690000", + "longitude": "16.78022000" + }, + { + "id": "138167", + "name": "Cropani Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.92376000", + "longitude": "16.81080000" + }, + { + "id": "138168", + "name": "Crosia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.56822000", + "longitude": "16.77126000" + }, + { + "id": "138170", + "name": "Crotone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.08077000", + "longitude": "17.12764000" + }, + { + "id": "138174", + "name": "Crucoli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.42713000", + "longitude": "17.00281000" + }, + { + "id": "138202", + "name": "Curinga", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.82811000", + "longitude": "16.31344000" + }, + { + "id": "138218", + "name": "Cutro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.03484000", + "longitude": "16.98658000" + }, + { + "id": "138230", + "name": "Dasà", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.56514000", + "longitude": "16.19521000" + }, + { + "id": "138233", + "name": "Davoli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.64904000", + "longitude": "16.48764000" + }, + { + "id": "138238", + "name": "Decollatura", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.04645000", + "longitude": "16.35753000" + }, + { + "id": "138243", + "name": "Delianuova", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.23587000", + "longitude": "15.91714000" + }, + { + "id": "138259", + "name": "Diamante", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.68070000", + "longitude": "15.82168000" + }, + { + "id": "138268", + "name": "Dinami", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.53136000", + "longitude": "16.14461000" + }, + { + "id": "138269", + "name": "Dipignano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.23869000", + "longitude": "16.25184000" + }, + { + "id": "138287", + "name": "Domanico", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.21693000", + "longitude": "16.20721000" + }, + { + "id": "138302", + "name": "Donnici Inferiore", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.25020000", + "longitude": "16.29307000" + }, + { + "id": "138307", + "name": "Doria", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.73042000", + "longitude": "16.35597000" + }, + { + "id": "138327", + "name": "Drapia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.66612000", + "longitude": "15.91122000" + }, + { + "id": "138395", + "name": "Fabrizia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.48989000", + "longitude": "16.29832000" + }, + { + "id": "138396", + "name": "Fabrizio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.63939000", + "longitude": "16.55666000" + }, + { + "id": "138408", + "name": "Fagnano Castello", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.57160000", + "longitude": "16.06253000" + }, + { + "id": "138415", + "name": "Falconara Albanese", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.27524000", + "longitude": "16.08819000" + }, + { + "id": "138419", + "name": "Falerna", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.00298000", + "longitude": "16.17151000" + }, + { + "id": "138420", + "name": "Falerna Scalo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.97285000", + "longitude": "16.15294000" + }, + { + "id": "138485", + "name": "Feroleto Antico", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.96239000", + "longitude": "16.38780000" + }, + { + "id": "138486", + "name": "Feroleto della Chiesa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.46609000", + "longitude": "16.07012000" + }, + { + "id": "138498", + "name": "Ferruzzano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.03699000", + "longitude": "16.08918000" + }, + { + "id": "138520", + "name": "Figline Vegliaturo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.22519000", + "longitude": "16.33030000" + }, + { + "id": "138522", + "name": "Filadelfia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.78468000", + "longitude": "16.29200000" + }, + { + "id": "138524", + "name": "Filandari", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.61508000", + "longitude": "16.03140000" + }, + { + "id": "138532", + "name": "Filogaso", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.68287000", + "longitude": "16.22584000" + }, + { + "id": "138544", + "name": "Firmo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.72208000", + "longitude": "16.16344000" + }, + { + "id": "138549", + "name": "Fiumara", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.21267000", + "longitude": "15.69369000" + }, + { + "id": "138552", + "name": "Fiumefreddo Bruzio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.23568000", + "longitude": "16.07056000" + }, + { + "id": "138625", + "name": "Foresta", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.09939000", + "longitude": "16.81287000" + }, + { + "id": "138675", + "name": "Fossato Ionico-Fossatello-San Luca Marcelluzzo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.01065000", + "longitude": "15.76302000" + }, + { + "id": "138676", + "name": "Fossato Serralta", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.99629000", + "longitude": "16.57960000" + }, + { + "id": "138692", + "name": "Francavilla Angitola", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.78016000", + "longitude": "16.27228000" + }, + { + "id": "138695", + "name": "Francavilla Marittima", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.81610000", + "longitude": "16.39499000" + }, + { + "id": "138702", + "name": "Francica", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.61697000", + "longitude": "16.10007000" + }, + { + "id": "138709", + "name": "Frascineto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.83382000", + "longitude": "16.26378000" + }, + { + "id": "138760", + "name": "Fuscaldo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.41421000", + "longitude": "16.02839000" + }, + { + "id": "138784", + "name": "Gagliato", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.67578000", + "longitude": "16.46061000" + }, + { + "id": "138797", + "name": "Galatro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.46067000", + "longitude": "16.10840000" + }, + { + "id": "138864", + "name": "Gasperina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.74039000", + "longitude": "16.50666000" + }, + { + "id": "138907", + "name": "Gerace", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.27137000", + "longitude": "16.22070000" + }, + { + "id": "138919", + "name": "Gerocarne", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.58767000", + "longitude": "16.21818000" + }, + { + "id": "138956", + "name": "Giffone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.43957000", + "longitude": "16.14898000" + }, + { + "id": "138962", + "name": "Gimigliano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.97338000", + "longitude": "16.53165000" + }, + { + "id": "138969", + "name": "Gioia Tauro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.42510000", + "longitude": "15.89750000" + }, + { + "id": "138972", + "name": "Gioiosa Ionica", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.32723000", + "longitude": "16.30407000" + }, + { + "id": "138983", + "name": "Girifalco", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.82594000", + "longitude": "16.42688000" + }, + { + "id": "139003", + "name": "Gizzeria", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.98025000", + "longitude": "16.20671000" + }, + { + "id": "139101", + "name": "Grimaldi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.14111000", + "longitude": "16.23511000" + }, + { + "id": "139104", + "name": "Grisolia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.72538000", + "longitude": "15.85605000" + }, + { + "id": "139128", + "name": "Grotteria", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.36509000", + "longitude": "16.26522000" + }, + { + "id": "139156", + "name": "Guardavalle", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.50510000", + "longitude": "16.50669000" + }, + { + "id": "139157", + "name": "Guardavalle Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.47957000", + "longitude": "16.57656000" + }, + { + "id": "139161", + "name": "Guardia Piemontese", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.46572000", + "longitude": "15.99970000" + }, + { + "id": "139225", + "name": "Isca Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.60341000", + "longitude": "16.55733000" + }, + { + "id": "139226", + "name": "Isca sullo Ionio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.60103000", + "longitude": "16.52010000" + }, + { + "id": "139250", + "name": "Isola di Capo Rizzuto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.95844000", + "longitude": "17.09242000" + }, + { + "id": "139273", + "name": "Jacurso", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.84649000", + "longitude": "16.37980000" + }, + { + "id": "139280", + "name": "Jonadi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.62988000", + "longitude": "16.06100000" + }, + { + "id": "139281", + "name": "Joppolo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.58338000", + "longitude": "15.89709000" + }, + { + "id": "139320", + "name": "Laganadi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17391000", + "longitude": "15.74133000" + }, + { + "id": "139326", + "name": "Lago", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.17068000", + "longitude": "16.14825000" + }, + { + "id": "139333", + "name": "Laino Borgo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95430000", + "longitude": "15.97348000" + }, + { + "id": "139334", + "name": "Laino Castello-Nuovo Centro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93630000", + "longitude": "15.97658000" + }, + { + "id": "139344", + "name": "Lamezia Terme", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.96255000", + "longitude": "16.30938000" + }, + { + "id": "139369", + "name": "Lappano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31964000", + "longitude": "16.31143000" + }, + { + "id": "139394", + "name": "Lattarico", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.45105000", + "longitude": "16.12700000" + }, + { + "id": "139398", + "name": "Laureana di Borrello", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.49215000", + "longitude": "16.08429000" + }, + { + "id": "139403", + "name": "Laurignano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.27915000", + "longitude": "16.24232000" + }, + { + "id": "139421", + "name": "Lazzaro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.97276000", + "longitude": "15.66511000" + }, + { + "id": "139425", + "name": "Le Castella", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.91010000", + "longitude": "17.02216000" + }, + { + "id": "139517", + "name": "Limbadi-Caroni", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.55902000", + "longitude": "15.96441000" + }, + { + "id": "139566", + "name": "Locri", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.23868000", + "longitude": "16.25957000" + }, + { + "id": "139597", + "name": "Longobardi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.21059000", + "longitude": "16.07464000" + }, + { + "id": "139598", + "name": "Longobucco", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.44830000", + "longitude": "16.61050000" + }, + { + "id": "139661", + "name": "Lungro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.73772000", + "longitude": "16.12586000" + }, + { + "id": "139685", + "name": "Luzzi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.44799000", + "longitude": "16.28730000" + }, + { + "id": "139721", + "name": "Magisano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.01339000", + "longitude": "16.62790000" + }, + { + "id": "139745", + "name": "Maida", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.85884000", + "longitude": "16.36277000" + }, + { + "id": "139746", + "name": "Maierato", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.71111000", + "longitude": "16.17532000" + }, + { + "id": "139747", + "name": "Maierà", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.71655000", + "longitude": "15.85012000" + }, + { + "id": "139767", + "name": "Malito", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.15775000", + "longitude": "16.24677000" + }, + { + "id": "139778", + "name": "Malvito", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.60105000", + "longitude": "16.05341000" + }, + { + "id": "139780", + "name": "Mammola", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.36262000", + "longitude": "16.23871000" + }, + { + "id": "139785", + "name": "Mandatoriccio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.46675000", + "longitude": "16.83420000" + }, + { + "id": "139798", + "name": "Mangone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.20437000", + "longitude": "16.33262000" + }, + { + "id": "139823", + "name": "Marano Marchesato", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31274000", + "longitude": "16.17354000" + }, + { + "id": "139824", + "name": "Marano Principato", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.29782000", + "longitude": "16.17430000" + }, + { + "id": "139836", + "name": "Marcedusa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.02675000", + "longitude": "16.83612000" + }, + { + "id": "139839", + "name": "Marcellina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.76578000", + "longitude": "15.82311000" + }, + { + "id": "139840", + "name": "Marcellinara", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.92574000", + "longitude": "16.48757000" + }, + { + "id": "139872", + "name": "Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93857000", + "longitude": "16.60585000" + }, + { + "id": "139884", + "name": "Marina di Davoli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.66361000", + "longitude": "16.54825000" + }, + { + "id": "139885", + "name": "Marina di Fuscaldo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.42418000", + "longitude": "16.00694000" + }, + { + "id": "139887", + "name": "Marina di Gioiosa Ionica", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.30159000", + "longitude": "16.33148000" + }, + { + "id": "139896", + "name": "Marina di Schiavonea", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.65000000", + "longitude": "16.53333000" + }, + { + "id": "139912", + "name": "Maropati", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.44178000", + "longitude": "16.09750000" + }, + { + "id": "139928", + "name": "Martelli-Laganosa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.67930000", + "longitude": "16.53549000" + }, + { + "id": "139937", + "name": "Martirano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.08119000", + "longitude": "16.24829000" + }, + { + "id": "139938", + "name": "Martirano Lombardo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.07469000", + "longitude": "16.23200000" + }, + { + "id": "139940", + "name": "Martone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.35353000", + "longitude": "16.28800000" + }, + { + "id": "139948", + "name": "Marzi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.17063000", + "longitude": "16.30705000" + }, + { + "id": "140046", + "name": "Melicuccà", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.30311000", + "longitude": "15.88153000" + }, + { + "id": "140045", + "name": "Melicucco", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.43298000", + "longitude": "16.05748000" + }, + { + "id": "140048", + "name": "Melissa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30953000", + "longitude": "17.02968000" + }, + { + "id": "140052", + "name": "Melito di Porto Salvo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.92629000", + "longitude": "15.74990000" + }, + { + "id": "140063", + "name": "Mendicino", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.26282000", + "longitude": "16.19452000" + }, + { + "id": "140096", + "name": "Mesoraca", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.07948000", + "longitude": "16.78808000" + }, + { + "id": "140097", + "name": "Messignadi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.29964000", + "longitude": "15.99642000" + }, + { + "id": "140137", + "name": "Miglierina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.95060000", + "longitude": "16.47233000" + }, + { + "id": "140147", + "name": "Mileto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.60780000", + "longitude": "16.06751000" + }, + { + "id": "140176", + "name": "Mirto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.60069000", + "longitude": "16.77390000" + }, + { + "id": "140230", + "name": "Molochio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.30789000", + "longitude": "16.03141000" + }, + { + "id": "140250", + "name": "Monasterace", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.45318000", + "longitude": "16.55163000" + }, + { + "id": "140251", + "name": "Monasterace Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.43489000", + "longitude": "16.57025000" + }, + { + "id": "140285", + "name": "Mongiana", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.51477000", + "longitude": "16.31940000" + }, + { + "id": "140290", + "name": "Mongrassano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.52644000", + "longitude": "16.11225000" + }, + { + "id": "140334", + "name": "Montalto Uffugo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.40331000", + "longitude": "16.15534000" + }, + { + "id": "140349", + "name": "Montauro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.74927000", + "longitude": "16.51226000" + }, + { + "id": "140387", + "name": "Montebello Jonico", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98277000", + "longitude": "15.75800000" + }, + { + "id": "140454", + "name": "Montegiordano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "40.04301000", + "longitude": "16.53439000" + }, + { + "id": "140506", + "name": "Montepaone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.72222000", + "longitude": "16.49795000" + }, + { + "id": "140507", + "name": "Montepaone Lido", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.72951000", + "longitude": "16.54241000" + }, + { + "id": "140523", + "name": "Monterosso Calabro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.71746000", + "longitude": "16.29066000" + }, + { + "id": "140597", + "name": "Morano Calabro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.84138000", + "longitude": "16.13837000" + }, + { + "id": "140623", + "name": "Mormanno", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.89340000", + "longitude": "15.99175000" + }, + { + "id": "140650", + "name": "Mosorrofa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09500000", + "longitude": "15.71259000" + }, + { + "id": "140660", + "name": "Motta San Giovanni", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.01027000", + "longitude": "15.71262000" + }, + { + "id": "140662", + "name": "Motta Santa Lucia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.09122000", + "longitude": "16.29313000" + }, + { + "id": "140666", + "name": "Mottafollone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.64850000", + "longitude": "16.06451000" + }, + { + "id": "140717", + "name": "Nardodipace", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.47418000", + "longitude": "16.34295000" + }, + { + "id": "140725", + "name": "Natile Nuovo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.18583000", + "longitude": "16.08527000" + }, + { + "id": "140761", + "name": "Nicastro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.97089000", + "longitude": "16.31285000" + }, + { + "id": "140766", + "name": "Nicotera", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.54915000", + "longitude": "15.93584000" + }, + { + "id": "140779", + "name": "Nocara", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09941000", + "longitude": "16.48189000" + }, + { + "id": "140783", + "name": "Nocera Scalo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.01576000", + "longitude": "16.12040000" + }, + { + "id": "140785", + "name": "Nocera Terinese", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.03474000", + "longitude": "16.16737000" + }, + { + "id": "140899", + "name": "Olivadi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.72558000", + "longitude": "16.42370000" + }, + { + "id": "140935", + "name": "Oppido Mamertina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.29337000", + "longitude": "15.98390000" + }, + { + "id": "140958", + "name": "Oriolo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "40.05320000", + "longitude": "16.44663000" + }, + { + "id": "140976", + "name": "Orsomarso", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.79910000", + "longitude": "15.90748000" + }, + { + "id": "58207", + "name": "Pagliarelle", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.14017000", + "longitude": "16.75101000" + }, + { + "id": "58239", + "name": "Palermiti", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.74868000", + "longitude": "16.45220000" + }, + { + "id": "58246", + "name": "Palizzi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.96667000", + "longitude": "15.98670000" + }, + { + "id": "58247", + "name": "Palizzi Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91995000", + "longitude": "15.97927000" + }, + { + "id": "58248", + "name": "Pallagorio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30764000", + "longitude": "16.90816000" + }, + { + "id": "58258", + "name": "Palmi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.35943000", + "longitude": "15.85155000" + }, + { + "id": "58268", + "name": "Paludi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.52943000", + "longitude": "16.67963000" + }, + { + "id": "58277", + "name": "Panettieri", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.06007000", + "longitude": "16.45375000" + }, + { + "id": "58280", + "name": "Pannaconi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.69291000", + "longitude": "16.04411000" + }, + { + "id": "58287", + "name": "Paola", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.36313000", + "longitude": "16.03691000" + }, + { + "id": "58290", + "name": "Papanice", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.07077000", + "longitude": "17.02721000" + }, + { + "id": "58291", + "name": "Papasidero", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.87159000", + "longitude": "15.90581000" + }, + { + "id": "58297", + "name": "Paravati", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.59020000", + "longitude": "16.05815000" + }, + { + "id": "58302", + "name": "Parenti", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.16071000", + "longitude": "16.41140000" + }, + { + "id": "58305", + "name": "Parghelia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.68189000", + "longitude": "15.92075000" + }, + { + "id": "58344", + "name": "Paterno Calabro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.22849000", + "longitude": "16.26489000" + }, + { + "id": "58361", + "name": "Pavigliana", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.10721000", + "longitude": "15.72108000" + }, + { + "id": "58366", + "name": "Pazzano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.47612000", + "longitude": "16.45107000" + }, + { + "id": "58372", + "name": "Pedace-Perito", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.27639000", + "longitude": "16.33639000" + }, + { + "id": "58383", + "name": "Pedivigliano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.11034000", + "longitude": "16.30486000" + }, + { + "id": "58392", + "name": "Pellaro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.01667000", + "longitude": "15.65000000" + }, + { + "id": "58410", + "name": "Pentone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.98579000", + "longitude": "16.58250000" + }, + { + "id": "58432", + "name": "Pernocari-Presinaci", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.61184000", + "longitude": "16.00463000" + }, + { + "id": "58474", + "name": "Petilia Policastro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.11293000", + "longitude": "16.78167000" + }, + { + "id": "58485", + "name": "Petrizzi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.70179000", + "longitude": "16.47187000" + }, + { + "id": "58486", + "name": "Petronà", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.04370000", + "longitude": "16.75796000" + }, + { + "id": "58520", + "name": "Piane Crati", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.23472000", + "longitude": "16.32313000" + }, + { + "id": "58549", + "name": "Pianopoli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.95246000", + "longitude": "16.38863000" + }, + { + "id": "58613", + "name": "Pietrafitta", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.26103000", + "longitude": "16.33940000" + }, + { + "id": "58620", + "name": "Pietrapaola", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.48701000", + "longitude": "16.81597000" + }, + { + "id": "58708", + "name": "Piscopio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.66361000", + "longitude": "16.11101000" + }, + { + "id": "58726", + "name": "Pizzo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.75259000", + "longitude": "16.18696000" + }, + { + "id": "58730", + "name": "Pizzoni", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.62286000", + "longitude": "16.24876000" + }, + { + "id": "58731", + "name": "Placanica", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.41078000", + "longitude": "16.45274000" + }, + { + "id": "58733", + "name": "Plataci", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.90042000", + "longitude": "16.43272000" + }, + { + "id": "58734", + "name": "Platania", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.00620000", + "longitude": "16.32194000" + }, + { + "id": "58735", + "name": "Platì", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.22149000", + "longitude": "16.04530000" + }, + { + "id": "58787", + "name": "Polia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.75118000", + "longitude": "16.31220000" + }, + { + "id": "58793", + "name": "Polistena", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.40544000", + "longitude": "16.07330000" + }, + { + "id": "58921", + "name": "Portigliola", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.22712000", + "longitude": "16.20287000" + }, + { + "id": "58998", + "name": "Praia a Mare", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.89410000", + "longitude": "15.78421000" + }, + { + "id": "59123", + "name": "Provincia di Catanzaro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.91667000", + "longitude": "16.43333000" + }, + { + "id": "59126", + "name": "Provincia di Cosenza", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.55697000", + "longitude": "16.35491000" + }, + { + "id": "59128", + "name": "Provincia di Crotone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.12007000", + "longitude": "17.08134000" + }, + { + "id": "59167", + "name": "Provincia di Reggio Calabria", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.31667000", + "longitude": "16.08333000" + }, + { + "id": "59188", + "name": "Provincia di Vibo-Valentia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.69958000", + "longitude": "16.12741000" + }, + { + "id": "59239", + "name": "Quattromiglia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.34474000", + "longitude": "16.23802000" + }, + { + "id": "59320", + "name": "Reggio Calabria", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.11047000", + "longitude": "15.66129000" + }, + { + "id": "59332", + "name": "Rende", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.33154000", + "longitude": "16.18041000" + }, + { + "id": "59353", + "name": "Riace", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.41828000", + "longitude": "16.48121000" + }, + { + "id": "59354", + "name": "Riace Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.39186000", + "longitude": "16.53033000" + }, + { + "id": "59362", + "name": "Ricadi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.62517000", + "longitude": "15.86674000" + }, + { + "id": "59445", + "name": "Rizziconi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.40994000", + "longitude": "15.95974000" + }, + { + "id": "59488", + "name": "Rocca di Neto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.18292000", + "longitude": "17.00764000" + }, + { + "id": "59470", + "name": "Rocca Imperiale", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "40.11014000", + "longitude": "16.57822000" + }, + { + "id": "59471", + "name": "Rocca Imperiale Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09962000", + "longitude": "16.61336000" + }, + { + "id": "59491", + "name": "Roccabernarda", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.13276000", + "longitude": "16.86082000" + }, + { + "id": "59499", + "name": "Roccaforte del Greco", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04751000", + "longitude": "15.89198000" + }, + { + "id": "59532", + "name": "Roccella Ionica", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.32117000", + "longitude": "16.39689000" + }, + { + "id": "59534", + "name": "Roccelletta", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.81126000", + "longitude": "16.59820000" + }, + { + "id": "59558", + "name": "Roggiano Gravina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.61786000", + "longitude": "16.16173000" + }, + { + "id": "59560", + "name": "Roghudi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.92499000", + "longitude": "15.76537000" + }, + { + "id": "59561", + "name": "Rogliano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.17841000", + "longitude": "16.31709000" + }, + { + "id": "59581", + "name": "Rombiolo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.59535000", + "longitude": "16.00237000" + }, + { + "id": "59624", + "name": "Rosario", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.29104000", + "longitude": "16.23125000" + }, + { + "id": "59625", + "name": "Rosarno", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.48717000", + "longitude": "15.97956000" + }, + { + "id": "59632", + "name": "Rose", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.39932000", + "longitude": "16.29446000" + }, + { + "id": "59635", + "name": "Roseto Capo Spulico", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.98643000", + "longitude": "16.60363000" + }, + { + "id": "59647", + "name": "Rossano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.57622000", + "longitude": "16.63447000" + }, + { + "id": "59648", + "name": "Rossano Stazione", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.59855000", + "longitude": "16.63485000" + }, + { + "id": "59654", + "name": "Rota Greca", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.46703000", + "longitude": "16.11412000" + }, + { + "id": "59686", + "name": "Rovito", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30636000", + "longitude": "16.31746000" + }, + { + "id": "59771", + "name": "Saline Ioniche", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.93957000", + "longitude": "15.71943000" + }, + { + "id": "59801", + "name": "Sambiase", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.96667000", + "longitude": "16.28333000" + }, + { + "id": "59811", + "name": "Samo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.07399000", + "longitude": "16.05933000" + }, + { + "id": "59823", + "name": "San Basile", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.80960000", + "longitude": "16.16328000" + }, + { + "id": "59829", + "name": "San Benedetto Ullano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.42710000", + "longitude": "16.12379000" + }, + { + "id": "59850", + "name": "San Calogero", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.57447000", + "longitude": "16.01933000" + }, + { + "id": "59856", + "name": "San Carlo-Condofuri Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.93324000", + "longitude": "15.87166000" + }, + { + "id": "59879", + "name": "San Cosmo Albanese", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.58363000", + "longitude": "16.41469000" + }, + { + "id": "59881", + "name": "San Costantino Calabro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.63283000", + "longitude": "16.07571000" + }, + { + "id": "59891", + "name": "San Demetrio Corone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.56990000", + "longitude": "16.36149000" + }, + { + "id": "59899", + "name": "San Donato di Ninea", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.71156000", + "longitude": "16.04742000" + }, + { + "id": "59913", + "name": "San Ferdinando", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.48403000", + "longitude": "15.91877000" + }, + { + "id": "59918", + "name": "San Fili", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.33971000", + "longitude": "16.14448000" + }, + { + "id": "59925", + "name": "San Floro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.83799000", + "longitude": "16.51870000" + }, + { + "id": "59954", + "name": "San Giorgio Albanese", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.58230000", + "longitude": "16.45349000" + }, + { + "id": "59959", + "name": "San Giorgio Morgeto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.39190000", + "longitude": "16.08790000" + }, + { + "id": "59995", + "name": "San Giovanni di Gerace", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.36508000", + "longitude": "16.27770000" + }, + { + "id": "59997", + "name": "San Giovanni in Fiore", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.25446000", + "longitude": "16.69699000" + }, + { + "id": "60022", + "name": "San Gregorio d'Ippona", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.64528000", + "longitude": "16.10356000" + }, + { + "id": "60036", + "name": "San Lorenzo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.01097000", + "longitude": "15.83440000" + }, + { + "id": "60040", + "name": "San Lorenzo Bellizzi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.88867000", + "longitude": "16.33029000" + }, + { + "id": "60045", + "name": "San Lorenzo del Vallo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.66739000", + "longitude": "16.29866000" + }, + { + "id": "60050", + "name": "San Luca", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.14672000", + "longitude": "16.06625000" + }, + { + "id": "60051", + "name": "San Lucido", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31012000", + "longitude": "16.05317000" + }, + { + "id": "60055", + "name": "San Mango d'Aquino", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.06036000", + "longitude": "16.19224000" + }, + { + "id": "60061", + "name": "San Marco Argentano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.55725000", + "longitude": "16.12452000" + }, + { + "id": "60067", + "name": "San Martino", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.36157000", + "longitude": "15.97634000" + }, + { + "id": "60085", + "name": "San Martino di Finita", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.48988000", + "longitude": "16.10968000" + }, + { + "id": "60108", + "name": "San Mauro Marchesato", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.10559000", + "longitude": "16.92561000" + }, + { + "id": "60134", + "name": "San Nico", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.66906000", + "longitude": "16.43182000" + }, + { + "id": "60136", + "name": "San Nicola", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.21199000", + "longitude": "15.69381000" + }, + { + "id": "60137", + "name": "San Nicola Arcella", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.84341000", + "longitude": "15.78634000" + }, + { + "id": "60140", + "name": "San Nicola da Crissa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.66354000", + "longitude": "16.28592000" + }, + { + "id": "60141", + "name": "San Nicola dell'Alto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.29094000", + "longitude": "16.97179000" + }, + { + "id": "60144", + "name": "San Nicolò", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.63426000", + "longitude": "15.85147000" + }, + { + "id": "60186", + "name": "San Pietro a Maida", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.84731000", + "longitude": "16.34116000" + }, + { + "id": "60173", + "name": "San Pietro Apostolo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.00413000", + "longitude": "16.46783000" + }, + { + "id": "60192", + "name": "San Pietro di Caridà", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.52368000", + "longitude": "16.13530000" + }, + { + "id": "60195", + "name": "San Pietro in Amantea", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.13658000", + "longitude": "16.11243000" + }, + { + "id": "60200", + "name": "San Pietro in Guarano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.34164000", + "longitude": "16.31304000" + }, + { + "id": "60214", + "name": "San Procopio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.28214000", + "longitude": "15.89083000" + }, + { + "id": "60221", + "name": "San Roberto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.21114000", + "longitude": "15.73594000" + }, + { + "id": "60247", + "name": "San Sostene", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.63733000", + "longitude": "16.48751000" + }, + { + "id": "60248", + "name": "San Sosti", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.65879000", + "longitude": "16.02958000" + }, + { + "id": "60270", + "name": "San Vincenzo la Costa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.36544000", + "longitude": "16.15110000" + }, + { + "id": "60278", + "name": "San Vito Sullo Ionio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.70749000", + "longitude": "16.40862000" + }, + { + "id": "60306", + "name": "Sangineto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.60553000", + "longitude": "15.91481000" + }, + { + "id": "60321", + "name": "Sant'Agata del Bianco", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09242000", + "longitude": "16.08251000" + }, + { + "id": "60322", + "name": "Sant'Agata di Esaro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.62235000", + "longitude": "15.98295000" + }, + { + "id": "60335", + "name": "Sant'Alessio in Aspromonte", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17220000", + "longitude": "15.75730000" + }, + { + "id": "60344", + "name": "Sant'Andrea Apostolo dello Ionio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.62165000", + "longitude": "16.53048000" + }, + { + "id": "60346", + "name": "Sant'Andrea Ionio Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.62001000", + "longitude": "16.54927000" + }, + { + "id": "60396", + "name": "Sant'Elia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.95788000", + "longitude": "16.58521000" + }, + { + "id": "60401", + "name": "Sant'Eufemia d'Aspromonte", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.26314000", + "longitude": "15.85669000" + }, + { + "id": "60405", + "name": "Sant'Ilario dello Ionio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.21914000", + "longitude": "16.19517000" + }, + { + "id": "60409", + "name": "Sant'Onofrio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.69752000", + "longitude": "16.14755000" + }, + { + "id": "60414", + "name": "Santa Caterina Albanese", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.58590000", + "longitude": "16.07039000" + }, + { + "id": "60416", + "name": "Santa Caterina dello Ionio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.53324000", + "longitude": "16.52176000" + }, + { + "id": "60417", + "name": "Santa Caterina dello Ionio Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.52736000", + "longitude": "16.57071000" + }, + { + "id": "60424", + "name": "Santa Cristina d'Aspromonte", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.25480000", + "longitude": "15.96996000" + }, + { + "id": "60431", + "name": "Santa Domenica", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.66220000", + "longitude": "15.86289000" + }, + { + "id": "60432", + "name": "Santa Domenica Talao", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.81875000", + "longitude": "15.85380000" + }, + { + "id": "60435", + "name": "Santa Eufemia Lamezia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.91982000", + "longitude": "16.25221000" + }, + { + "id": "60473", + "name": "Santa Maria del Cedro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.74620000", + "longitude": "15.83638000" + }, + { + "id": "60490", + "name": "Santa Severina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.14770000", + "longitude": "16.91112000" + }, + { + "id": "60492", + "name": "Santa Sofia d'Epiro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.54597000", + "longitude": "16.32815000" + }, + { + "id": "60511", + "name": "Santo Stefano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.34734000", + "longitude": "16.19898000" + }, + { + "id": "60523", + "name": "Santo Stefano di Rogliano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.19223000", + "longitude": "16.32079000" + }, + { + "id": "60525", + "name": "Santo Stefano in Aspromonte", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16909000", + "longitude": "15.78983000" + }, + { + "id": "60539", + "name": "Saracena", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.77862000", + "longitude": "16.15913000" + }, + { + "id": "60559", + "name": "Sartano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.51169000", + "longitude": "16.17915000" + }, + { + "id": "60578", + "name": "Satriano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.66640000", + "longitude": "16.47970000" + }, + { + "id": "60585", + "name": "Savelli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31278000", + "longitude": "16.77642000" + }, + { + "id": "60605", + "name": "Scala Coeli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.44824000", + "longitude": "16.88658000" + }, + { + "id": "60607", + "name": "Scalea", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.80605000", + "longitude": "15.79635000" + }, + { + "id": "60615", + "name": "Scandale", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.12339000", + "longitude": "16.96185000" + }, + { + "id": "60629", + "name": "Scarcelli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.40000000", + "longitude": "16.01667000" + }, + { + "id": "60654", + "name": "Scido", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.24439000", + "longitude": "15.93251000" + }, + { + "id": "60655", + "name": "Scilla", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.25201000", + "longitude": "15.71837000" + }, + { + "id": "60701", + "name": "Sellia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.98206000", + "longitude": "16.63070000" + }, + { + "id": "60702", + "name": "Sellia Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.88599000", + "longitude": "16.74931000" + }, + { + "id": "60715", + "name": "Seminara", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.33603000", + "longitude": "15.87025000" + }, + { + "id": "60755", + "name": "Serra d'Aiello", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.09004000", + "longitude": "16.12612000" + }, + { + "id": "60750", + "name": "Serra Pedace", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.27898000", + "longitude": "16.34557000" + }, + { + "id": "60752", + "name": "Serra San Bruno", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.57474000", + "longitude": "16.32622000" + }, + { + "id": "60769", + "name": "Serrastretta", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.01319000", + "longitude": "16.41630000" + }, + { + "id": "60770", + "name": "Serrata", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.51288000", + "longitude": "16.10070000" + }, + { + "id": "60785", + "name": "Sersale", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.01013000", + "longitude": "16.72960000" + }, + { + "id": "60811", + "name": "Settimo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.39158000", + "longitude": "16.23998000" + }, + { + "id": "60817", + "name": "Settingiano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.91139000", + "longitude": "16.51390000" + }, + { + "id": "60835", + "name": "Siano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.91547000", + "longitude": "16.60224000" + }, + { + "id": "60838", + "name": "Sibari", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.74733000", + "longitude": "16.45510000" + }, + { + "id": "60842", + "name": "Siderno", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.26993000", + "longitude": "16.29607000" + }, + { + "id": "60861", + "name": "Simbario", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.61157000", + "longitude": "16.33597000" + }, + { + "id": "60870", + "name": "Sinopoli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.26342000", + "longitude": "15.87710000" + }, + { + "id": "60949", + "name": "Sorbo San Basile", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.01939000", + "longitude": "16.56910000" + }, + { + "id": "60958", + "name": "Sorianello", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.59415000", + "longitude": "16.23212000" + }, + { + "id": "60959", + "name": "Soriano Calabro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.60038000", + "longitude": "16.22205000" + }, + { + "id": "60977", + "name": "Soverato Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.68498000", + "longitude": "16.54991000" + }, + { + "id": "60978", + "name": "Soverato Superiore", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.68993000", + "longitude": "16.53391000" + }, + { + "id": "60980", + "name": "Soveria Mannelli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.07784000", + "longitude": "16.37708000" + }, + { + "id": "60981", + "name": "Soveria Simeri", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.94986000", + "longitude": "16.67854000" + }, + { + "id": "60989", + "name": "Spadola", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.60378000", + "longitude": "16.33700000" + }, + { + "id": "61001", + "name": "Spezzano Albanese", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.66854000", + "longitude": "16.30939000" + }, + { + "id": "61003", + "name": "Spezzano della Sila", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30033000", + "longitude": "16.33923000" + }, + { + "id": "61002", + "name": "Spezzano Piccolo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.29010000", + "longitude": "16.34211000" + }, + { + "id": "61012", + "name": "Spilinga", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.62825000", + "longitude": "15.90572000" + }, + { + "id": "61034", + "name": "Squillace", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.78091000", + "longitude": "16.51175000" + }, + { + "id": "61035", + "name": "Squillace Lido", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.77781000", + "longitude": "16.57007000" + }, + { + "id": "61042", + "name": "Staiti", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.99989000", + "longitude": "16.03341000" + }, + { + "id": "61043", + "name": "Staletti", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.76428000", + "longitude": "16.53932000" + }, + { + "id": "61053", + "name": "Stazione Montalto-Coretto", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.40720000", + "longitude": "16.24313000" + }, + { + "id": "61060", + "name": "Stefanaconi", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.67788000", + "longitude": "16.12420000" + }, + { + "id": "61074", + "name": "Stignano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.41705000", + "longitude": "16.47011000" + }, + { + "id": "61075", + "name": "Stilo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.47628000", + "longitude": "16.46746000" + }, + { + "id": "61099", + "name": "Strongoli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.26576000", + "longitude": "17.05413000" + }, + { + "id": "61127", + "name": "Surdo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.32752000", + "longitude": "16.20139000" + }, + { + "id": "61168", + "name": "Tarsia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.62311000", + "longitude": "16.27337000" + }, + { + "id": "61176", + "name": "Taurianova", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.35525000", + "longitude": "16.01306000" + }, + { + "id": "61184", + "name": "Taverna", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.02200000", + "longitude": "16.58081000" + }, + { + "id": "61240", + "name": "Terranova da Sibari", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.65548000", + "longitude": "16.33979000" + }, + { + "id": "61239", + "name": "Terranova Sappo Minulio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.32175000", + "longitude": "16.00747000" + }, + { + "id": "61247", + "name": "Terravecchia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.46594000", + "longitude": "16.94623000" + }, + { + "id": "61284", + "name": "Tiriolo", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.94069000", + "longitude": "16.51046000" + }, + { + "id": "61289", + "name": "Tivolille Pasquali-Merenzata", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.27953000", + "longitude": "16.20738000" + }, + { + "id": "61316", + "name": "Torano Castello", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.50396000", + "longitude": "16.16103000" + }, + { + "id": "61375", + "name": "Torre di Ruggiero", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.65293000", + "longitude": "16.37211000" + }, + { + "id": "61355", + "name": "Torre Melissa", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31013000", + "longitude": "17.10660000" + }, + { + "id": "61390", + "name": "Torretta", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.45358000", + "longitude": "17.03632000" + }, + { + "id": "61413", + "name": "Tortora", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.94130000", + "longitude": "15.80518000" + }, + { + "id": "61414", + "name": "Tortora Marina", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.92293000", + "longitude": "15.76943000" + }, + { + "id": "61462", + "name": "Trebisacce", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.87128000", + "longitude": "16.53420000" + }, + { + "id": "61481", + "name": "Trenta", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.28541000", + "longitude": "16.32093000" + }, + { + "id": "61552", + "name": "Tronca", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.24617000", + "longitude": "17.10582000" + }, + { + "id": "61556", + "name": "Tropea", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.67449000", + "longitude": "15.89505000" + }, + { + "id": "61598", + "name": "Umbriatico", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.35336000", + "longitude": "16.91798000" + }, + { + "id": "61622", + "name": "Vaccarizzo Albanese", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.58540000", + "longitude": "16.43289000" + }, + { + "id": "61632", + "name": "Vadue", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.28060000", + "longitude": "16.22875000" + }, + { + "id": "61707", + "name": "Vallefiorita", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.77638000", + "longitude": "16.46100000" + }, + { + "id": "61709", + "name": "Vallelonga", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.64742000", + "longitude": "16.29659000" + }, + { + "id": "61763", + "name": "Varapodio", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.31633000", + "longitude": "15.98347000" + }, + { + "id": "61785", + "name": "Vazzano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.63288000", + "longitude": "16.24800000" + }, + { + "id": "61835", + "name": "Verbicaro", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.76076000", + "longitude": "15.90730000" + }, + { + "id": "61877", + "name": "Verzino", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31325000", + "longitude": "16.85613000" + }, + { + "id": "61907", + "name": "Vibo Valentia", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.67618000", + "longitude": "16.10094000" + }, + { + "id": "62017", + "name": "Villa San Giovanni", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.21991000", + "longitude": "15.63689000" + }, + { + "id": "62117", + "name": "Villapiana", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.84573000", + "longitude": "16.45528000" + }, + { + "id": "62118", + "name": "Villapiana Lido", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.81203000", + "longitude": "16.48820000" + }, + { + "id": "62227", + "name": "Weather Station", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "37.96136000", + "longitude": "16.09970000" + }, + { + "id": "62228", + "name": "Zaccanopoli", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.66548000", + "longitude": "15.92874000" + }, + { + "id": "62230", + "name": "Zagarise", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.99985000", + "longitude": "16.66420000" + }, + { + "id": "62233", + "name": "Zambrone", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.69878000", + "longitude": "15.98982000" + }, + { + "id": "62285", + "name": "Zumpano", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31053000", + "longitude": "16.29269000" + }, + { + "id": "62287", + "name": "Zungri", + "state_id": 1703, + "state_code": "78", + "country_id": 107, + "country_code": "IT", + "latitude": "38.65668000", + "longitude": "15.98409000" + }, + { + "id": "135254", + "name": "Acerno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73771000", + "longitude": "15.05695000" + }, + { + "id": "135255", + "name": "Acerra", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94477000", + "longitude": "14.37140000" + }, + { + "id": "135294", + "name": "Afragola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92298000", + "longitude": "14.30935000" + }, + { + "id": "135298", + "name": "Agerola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63771000", + "longitude": "14.53884000" + }, + { + "id": "135319", + "name": "Agropoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.34923000", + "longitude": "14.99067000" + }, + { + "id": "135328", + "name": "Aiello del Sabato", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88847000", + "longitude": "14.82123000" + }, + { + "id": "135330", + "name": "Ailano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.39001000", + "longitude": "14.20536000" + }, + { + "id": "135334", + "name": "Airola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05871000", + "longitude": "14.55924000" + }, + { + "id": "135350", + "name": "Albanella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.47943000", + "longitude": "15.11454000" + }, + { + "id": "135399", + "name": "Alfano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17687000", + "longitude": "15.42450000" + }, + { + "id": "135411", + "name": "Alife", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.32612000", + "longitude": "14.33403000" + }, + { + "id": "135432", + "name": "Altavilla Irpina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00619000", + "longitude": "14.78093000" + }, + { + "id": "135435", + "name": "Altavilla Silentina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.53012000", + "longitude": "15.13153000" + }, + { + "id": "135448", + "name": "Alvignano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.24427000", + "longitude": "14.33671000" + }, + { + "id": "135456", + "name": "Amalfi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63490000", + "longitude": "14.60238000" + }, + { + "id": "135472", + "name": "Amodio-Massariola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88872000", + "longitude": "14.09091000" + }, + { + "id": "135473", + "name": "Amorosi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.20273000", + "longitude": "14.46598000" + }, + { + "id": "135475", + "name": "Anacapri", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55170000", + "longitude": "14.21225000" + }, + { + "id": "135490", + "name": "Andretta-Mattinella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93742000", + "longitude": "15.32485000" + }, + { + "id": "135500", + "name": "Angri", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73815000", + "longitude": "14.57070000" + }, + { + "id": "135508", + "name": "Annunziata", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.12100000", + "longitude": "14.36518000" + }, + { + "id": "135515", + "name": "Antessano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73293000", + "longitude": "14.77744000" + }, + { + "id": "135532", + "name": "Apice Vecchio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.12012000", + "longitude": "14.93104000" + }, + { + "id": "135534", + "name": "Apollosa", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.09156000", + "longitude": "14.69625000" + }, + { + "id": "135543", + "name": "Aquara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.44391000", + "longitude": "15.25386000" + }, + { + "id": "135546", + "name": "Aquilonia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98688000", + "longitude": "15.47510000" + }, + { + "id": "135587", + "name": "Arenella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85734000", + "longitude": "14.22280000" + }, + { + "id": "135599", + "name": "Ariano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65668000", + "longitude": "15.02481000" + }, + { + "id": "135600", + "name": "Ariano Irpino-Martiri", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16024000", + "longitude": "15.10625000" + }, + { + "id": "135603", + "name": "Arienzo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02734000", + "longitude": "14.49770000" + }, + { + "id": "135606", + "name": "Ariola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62795000", + "longitude": "15.43453000" + }, + { + "id": "135623", + "name": "Arola-Preazzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63333000", + "longitude": "14.43333000" + }, + { + "id": "135626", + "name": "Arpaia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03678000", + "longitude": "14.55175000" + }, + { + "id": "135627", + "name": "Arpaise", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02977000", + "longitude": "14.74387000" + }, + { + "id": "135629", + "name": "Arpino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88882000", + "longitude": "14.32015000" + }, + { + "id": "135649", + "name": "Arzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90959000", + "longitude": "14.26519000" + }, + { + "id": "135653", + "name": "Ascea", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14082000", + "longitude": "15.18583000" + }, + { + "id": "135674", + "name": "Atena Lucana", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45464000", + "longitude": "15.55633000" + }, + { + "id": "135678", + "name": "Atrani", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63617000", + "longitude": "14.60933000" + }, + { + "id": "135680", + "name": "Atripalda", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91867000", + "longitude": "14.82721000" + }, + { + "id": "135686", + "name": "Auletta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.56116000", + "longitude": "15.42313000" + }, + { + "id": "135699", + "name": "Avella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95995000", + "longitude": "14.60087000" + }, + { + "id": "135700", + "name": "Avellino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91494000", + "longitude": "14.79103000" + }, + { + "id": "135702", + "name": "Aversa", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97259000", + "longitude": "14.20745000" + }, + { + "id": "135715", + "name": "Avvocata", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85432000", + "longitude": "14.24325000" + }, + { + "id": "135729", + "name": "Bacoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79672000", + "longitude": "14.07349000" + }, + { + "id": "135762", + "name": "Bagnoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81322000", + "longitude": "14.16807000" + }, + { + "id": "135763", + "name": "Bagnoli Irpino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83103000", + "longitude": "15.07173000" + }, + { + "id": "135777", + "name": "Baia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30366000", + "longitude": "14.25016000" + }, + { + "id": "135778", + "name": "Baiano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95142000", + "longitude": "14.61650000" + }, + { + "id": "135805", + "name": "Banzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84338000", + "longitude": "14.80182000" + }, + { + "id": "135812", + "name": "Barano d'Ischia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.71472000", + "longitude": "13.92522000" + }, + { + "id": "135865", + "name": "Baronissi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74817000", + "longitude": "14.77380000" + }, + { + "id": "135867", + "name": "Barra", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84255000", + "longitude": "14.31849000" + }, + { + "id": "135883", + "name": "Baselice", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.39296000", + "longitude": "14.97363000" + }, + { + "id": "135909", + "name": "Battipaglia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60861000", + "longitude": "14.98209000" + }, + { + "id": "135945", + "name": "Bellizzi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.61981000", + "longitude": "14.94685000" + }, + { + "id": "135947", + "name": "Bellona", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16052000", + "longitude": "14.23313000" + }, + { + "id": "135948", + "name": "Bellosguardo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.42222000", + "longitude": "15.31219000" + }, + { + "id": "135959", + "name": "Beltiglio-San Giovanni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06239000", + "longitude": "14.75273000" + }, + { + "id": "135976", + "name": "Benevento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.13070000", + "longitude": "14.77816000" + }, + { + "id": "136058", + "name": "Bisaccia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00923000", + "longitude": "15.37699000" + }, + { + "id": "136059", + "name": "Bisaccia Nuova", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00960000", + "longitude": "15.35546000" + }, + { + "id": "136071", + "name": "Bivio Mortola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.39557000", + "longitude": "13.89663000" + }, + { + "id": "136073", + "name": "Bivio Santa Cecilia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.52224000", + "longitude": "15.00018000" + }, + { + "id": "136134", + "name": "Bonea", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07312000", + "longitude": "14.61683000" + }, + { + "id": "136139", + "name": "Bonito", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.09857000", + "longitude": "15.00071000" + }, + { + "id": "136170", + "name": "Borgo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84022000", + "longitude": "14.78364000" + }, + { + "id": "136247", + "name": "Boscoreale", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77274000", + "longitude": "14.48118000" + }, + { + "id": "136248", + "name": "Boscotrecase", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77296000", + "longitude": "14.46185000" + }, + { + "id": "136282", + "name": "Bracigliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81880000", + "longitude": "14.70772000" + }, + { + "id": "136322", + "name": "Brezza", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.11073000", + "longitude": "14.11201000" + }, + { + "id": "136375", + "name": "Brusciano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92237000", + "longitude": "14.42386000" + }, + { + "id": "136386", + "name": "Bucciano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07756000", + "longitude": "14.56898000" + }, + { + "id": "136388", + "name": "Buccino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63670000", + "longitude": "15.38116000" + }, + { + "id": "136405", + "name": "Buonabitacolo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26855000", + "longitude": "15.62119000" + }, + { + "id": "136406", + "name": "Buonalbergo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.22236000", + "longitude": "14.97799000" + }, + { + "id": "136466", + "name": "Caggiano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.56240000", + "longitude": "15.49629000" + }, + { + "id": "136474", + "name": "Caianello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30509000", + "longitude": "14.08516000" + }, + { + "id": "136475", + "name": "Caiazzo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18435000", + "longitude": "14.35946000" + }, + { + "id": "136481", + "name": "Cairano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89552000", + "longitude": "15.37069000" + }, + { + "id": "136484", + "name": "Caivano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95753000", + "longitude": "14.30591000" + }, + { + "id": "136486", + "name": "Calabritto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78342000", + "longitude": "15.22285000" + }, + { + "id": "136529", + "name": "Calitri", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92569000", + "longitude": "15.40393000" + }, + { + "id": "136551", + "name": "Calvanico", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77616000", + "longitude": "14.82697000" + }, + { + "id": "136557", + "name": "Calvi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07162000", + "longitude": "14.86524000" + }, + { + "id": "136558", + "name": "Calvi Risorta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21598000", + "longitude": "14.13092000" + }, + { + "id": "136564", + "name": "Calvizzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90782000", + "longitude": "14.18581000" + }, + { + "id": "136585", + "name": "Camerota", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03262000", + "longitude": "15.37048000" + }, + { + "id": "136586", + "name": "Camigliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18116000", + "longitude": "14.20978000" + }, + { + "id": "136599", + "name": "Campagna", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.66661000", + "longitude": "15.10638000" + }, + { + "id": "136608", + "name": "Campanarello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04717000", + "longitude": "14.91418000" + }, + { + "id": "136658", + "name": "Campolattaro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.28693000", + "longitude": "14.73043000" + }, + { + "id": "136661", + "name": "Campoli del Monte Taburno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.13074000", + "longitude": "14.64649000" + }, + { + "id": "136672", + "name": "Campora", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30541000", + "longitude": "15.29236000" + }, + { + "id": "136680", + "name": "Camposano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95242000", + "longitude": "14.52991000" + }, + { + "id": "136695", + "name": "Cancello-Arnone", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07340000", + "longitude": "14.02542000" + }, + { + "id": "136703", + "name": "Candida", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94148000", + "longitude": "14.87230000" + }, + { + "id": "136718", + "name": "Cannalonga", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24461000", + "longitude": "15.29325000" + }, + { + "id": "136756", + "name": "Capaccio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.42435000", + "longitude": "15.07981000" + }, + { + "id": "136757", + "name": "Capaccio Scalo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45531000", + "longitude": "15.00891000" + }, + { + "id": "136766", + "name": "Capezzano Inferiore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70067000", + "longitude": "14.77301000" + }, + { + "id": "136767", + "name": "Capezzano-Cologna", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.71518000", + "longitude": "14.77364000" + }, + { + "id": "136775", + "name": "Capitignano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.71851000", + "longitude": "14.90465000" + }, + { + "id": "136782", + "name": "Capodrise", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04268000", + "longitude": "14.30607000" + }, + { + "id": "136787", + "name": "Caposele", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81553000", + "longitude": "15.22337000" + }, + { + "id": "136809", + "name": "Capri", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55073000", + "longitude": "14.24263000" + }, + { + "id": "136816", + "name": "Capriati A Volturno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.46801000", + "longitude": "14.14602000" + }, + { + "id": "136818", + "name": "Capriglia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73216000", + "longitude": "14.76035000" + }, + { + "id": "136819", + "name": "Capriglia Irpina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96032000", + "longitude": "14.77724000" + }, + { + "id": "136825", + "name": "Capua", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.10519000", + "longitude": "14.21269000" + }, + { + "id": "136832", + "name": "Carano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.20526000", + "longitude": "13.90972000" + }, + { + "id": "136847", + "name": "Carbonara di Nola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87441000", + "longitude": "14.57884000" + }, + { + "id": "136862", + "name": "Cardito", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94590000", + "longitude": "14.29952000" + }, + { + "id": "136875", + "name": "Carife", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02667000", + "longitude": "15.21044000" + }, + { + "id": "136876", + "name": "Carifi-Torello-Priscoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79136000", + "longitude": "14.73212000" + }, + { + "id": "136879", + "name": "Carinaro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98291000", + "longitude": "14.21963000" + }, + { + "id": "136881", + "name": "Carinola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18775000", + "longitude": "13.98240000" + }, + { + "id": "136956", + "name": "Casagiove", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07124000", + "longitude": "14.31163000" + }, + { + "id": "136960", + "name": "Casal di Principe", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00996000", + "longitude": "14.13013000" + }, + { + "id": "136959", + "name": "Casal Velino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.19034000", + "longitude": "15.11137000" + }, + { + "id": "136966", + "name": "Casalbore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23373000", + "longitude": "15.00752000" + }, + { + "id": "136968", + "name": "Casalbuono", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21425000", + "longitude": "15.68717000" + }, + { + "id": "136971", + "name": "Casalduni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.26080000", + "longitude": "14.69532000" + }, + { + "id": "136972", + "name": "Casale", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21972000", + "longitude": "14.00231000" + }, + { + "id": "136987", + "name": "Casaletto Spartano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.15134000", + "longitude": "15.62058000" + }, + { + "id": "136994", + "name": "Casali-San Potito", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.76390000", + "longitude": "14.67501000" + }, + { + "id": "137004", + "name": "Casalnuovo di Napoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90969000", + "longitude": "14.34205000" + }, + { + "id": "137009", + "name": "Casaluce", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99785000", + "longitude": "14.19671000" + }, + { + "id": "137015", + "name": "Casamarciano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93191000", + "longitude": "14.55324000" + }, + { + "id": "137018", + "name": "Casamicciola Terme", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74661000", + "longitude": "13.91202000" + }, + { + "id": "137019", + "name": "Casandrino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92845000", + "longitude": "14.24744000" + }, + { + "id": "137021", + "name": "Casanova", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.19254000", + "longitude": "13.96344000" + }, + { + "id": "137026", + "name": "Casapesenna", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99151000", + "longitude": "14.13613000" + }, + { + "id": "137029", + "name": "Casapulla", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07665000", + "longitude": "14.28927000" + }, + { + "id": "137031", + "name": "Casarea", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88828000", + "longitude": "14.36349000" + }, + { + "id": "137041", + "name": "Casavatore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89921000", + "longitude": "14.27663000" + }, + { + "id": "137044", + "name": "Cascano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23232000", + "longitude": "13.96927000" + }, + { + "id": "137063", + "name": "Caselle in Pittari", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17319000", + "longitude": "15.54311000" + }, + { + "id": "137065", + "name": "Caserta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07262000", + "longitude": "14.33231000" + }, + { + "id": "137077", + "name": "Casola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.09513000", + "longitude": "14.38172000" + }, + { + "id": "137079", + "name": "Casola di Napoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69780000", + "longitude": "14.53006000" + }, + { + "id": "137089", + "name": "Casoria", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90751000", + "longitude": "14.29300000" + }, + { + "id": "137096", + "name": "Cassano Irpino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87042000", + "longitude": "15.02595000" + }, + { + "id": "137129", + "name": "Castel Baronia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04832000", + "longitude": "15.18884000" + }, + { + "id": "137132", + "name": "Castel Campagnano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18240000", + "longitude": "14.45300000" + }, + { + "id": "137174", + "name": "Castel di Sasso", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.19242000", + "longitude": "14.27773000" + }, + { + "id": "137146", + "name": "Castel Morrone", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.12102000", + "longitude": "14.35473000" + }, + { + "id": "137150", + "name": "Castel San Giorgio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78198000", + "longitude": "14.70090000" + }, + { + "id": "137152", + "name": "Castel San Lorenzo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.41979000", + "longitude": "15.22523000" + }, + { + "id": "137161", + "name": "Castel Volturno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03288000", + "longitude": "13.94354000" + }, + { + "id": "137185", + "name": "Castelcivita", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.49367000", + "longitude": "15.23354000" + }, + { + "id": "137196", + "name": "Castelfranci", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93066000", + "longitude": "15.04331000" + }, + { + "id": "137201", + "name": "Castelfranco in Miscano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30072000", + "longitude": "15.08607000" + }, + { + "id": "137213", + "name": "Castellammare di Stabia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70211000", + "longitude": "14.48685000" + }, + { + "id": "137257", + "name": "Castello del Matese", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.36672000", + "longitude": "14.37773000" + }, + { + "id": "137261", + "name": "Castello di Cisterna", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91594000", + "longitude": "14.41117000" + }, + { + "id": "137288", + "name": "Castelnuovo Cilento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21846000", + "longitude": "15.17802000" + }, + { + "id": "137300", + "name": "Castelnuovo di Conza", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.82062000", + "longitude": "15.31875000" + }, + { + "id": "137305", + "name": "Castelpagano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.40177000", + "longitude": "14.80711000" + }, + { + "id": "137309", + "name": "Castelpoto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.14066000", + "longitude": "14.70069000" + }, + { + "id": "137324", + "name": "Castelvenere", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23445000", + "longitude": "14.54750000" + }, + { + "id": "137327", + "name": "Castelvetere in Val Fortore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.44257000", + "longitude": "14.94118000" + }, + { + "id": "137328", + "name": "Castelvetere sul Calore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92980000", + "longitude": "14.98640000" + }, + { + "id": "137352", + "name": "Castiglione del Genovesi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72367000", + "longitude": "14.84796000" + }, + { + "id": "137400", + "name": "Cautano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.15009000", + "longitude": "14.64425000" + }, + { + "id": "137401", + "name": "Cava Dè Tirreni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69954000", + "longitude": "14.70773000" + }, + { + "id": "137475", + "name": "Celle di Bulgheria", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09540000", + "longitude": "15.40324000" + }, + { + "id": "137482", + "name": "Cellole", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.20338000", + "longitude": "13.85332000" + }, + { + "id": "137499", + "name": "Centola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.06980000", + "longitude": "15.31191000" + }, + { + "id": "137503", + "name": "Centro Urbano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81986000", + "longitude": "15.31953000" + }, + { + "id": "137508", + "name": "Ceppaloni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04523000", + "longitude": "14.76102000" + }, + { + "id": "137517", + "name": "Ceraso", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.19430000", + "longitude": "15.25606000" + }, + { + "id": "137528", + "name": "Cercola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86043000", + "longitude": "14.35733000" + }, + { + "id": "137566", + "name": "Cerreto Sannita", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.28296000", + "longitude": "14.56147000" + }, + { + "id": "137595", + "name": "Cervinara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02042000", + "longitude": "14.61444000" + }, + { + "id": "137596", + "name": "Cervino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04001000", + "longitude": "14.42403000" + }, + { + "id": "137600", + "name": "Cesa", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96287000", + "longitude": "14.23081000" + }, + { + "id": "137613", + "name": "Cesinali", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89711000", + "longitude": "14.82774000" + }, + { + "id": "137620", + "name": "Cetara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64756000", + "longitude": "14.70091000" + }, + { + "id": "137638", + "name": "Chiaia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83255000", + "longitude": "14.22677000" + }, + { + "id": "137639", + "name": "Chiaiano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88101000", + "longitude": "14.20759000" + }, + { + "id": "137642", + "name": "Chianche", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04632000", + "longitude": "14.78904000" + }, + { + "id": "137693", + "name": "Chiusano di San Domenico", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93312000", + "longitude": "14.91634000" + }, + { + "id": "137709", + "name": "Cicciano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96402000", + "longitude": "14.53487000" + }, + { + "id": "137710", + "name": "Cicerale", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.34404000", + "longitude": "15.12959000" + }, + { + "id": "137726", + "name": "Cimitile", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94231000", + "longitude": "14.52558000" + }, + { + "id": "137743", + "name": "Ciorlano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45022000", + "longitude": "14.15832000" + }, + { + "id": "137746", + "name": "Circello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.35455000", + "longitude": "14.80910000" + }, + { + "id": "137864", + "name": "Colle Sannita", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.36374000", + "longitude": "14.83450000" + }, + { + "id": "137902", + "name": "Colliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72293000", + "longitude": "15.28969000" + }, + { + "id": "137944", + "name": "Comiziano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95163000", + "longitude": "14.55124000" + }, + { + "id": "137954", + "name": "Conca dei Marini", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.61754000", + "longitude": "14.57311000" + }, + { + "id": "137955", + "name": "Conca della Campania", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.33174000", + "longitude": "13.99142000" + }, + { + "id": "137979", + "name": "Contrada", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86811000", + "longitude": "14.77747000" + }, + { + "id": "137981", + "name": "Controne", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.51018000", + "longitude": "15.20404000" + }, + { + "id": "137982", + "name": "Contursi Terme", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65026000", + "longitude": "15.24163000" + }, + { + "id": "137985", + "name": "Coperchia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72005000", + "longitude": "14.76654000" + }, + { + "id": "137993", + "name": "Corbara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72278000", + "longitude": "14.59187000" + }, + { + "id": "138018", + "name": "Corleto Monforte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.43756000", + "longitude": "15.38013000" + }, + { + "id": "138114", + "name": "Country Park", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88234000", + "longitude": "14.07786000" + }, + { + "id": "138155", + "name": "Crispano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95251000", + "longitude": "14.28993000" + }, + { + "id": "138179", + "name": "Cuccaro Vetere", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.16404000", + "longitude": "15.30677000" + }, + { + "id": "138209", + "name": "Curti", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07616000", + "longitude": "14.28039000" + }, + { + "id": "138212", + "name": "Cusano Mutri", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.33624000", + "longitude": "14.51013000" + }, + { + "id": "138290", + "name": "Domicella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88019000", + "longitude": "14.58716000" + }, + { + "id": "138325", + "name": "Dragonea", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67917000", + "longitude": "14.71094000" + }, + { + "id": "138326", + "name": "Dragoni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27619000", + "longitude": "14.30368000" + }, + { + "id": "138340", + "name": "Dugenta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.13468000", + "longitude": "14.45353000" + }, + { + "id": "138345", + "name": "Durazzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06286000", + "longitude": "14.44947000" + }, + { + "id": "138348", + "name": "Eboli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.61747000", + "longitude": "15.05693000" + }, + { + "id": "138372", + "name": "Ercolano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.80783000", + "longitude": "14.35012000" + }, + { + "id": "138411", + "name": "Faiano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.66254000", + "longitude": "14.90244000" + }, + { + "id": "138412", + "name": "Faicchio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27816000", + "longitude": "14.47740000" + }, + { + "id": "138414", + "name": "Falciano del Massico", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16271000", + "longitude": "13.94812000" + }, + { + "id": "138444", + "name": "Faraldo-Nocelleto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77992000", + "longitude": "14.76363000" + }, + { + "id": "138470", + "name": "Felitto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37351000", + "longitude": "15.24306000" + }, + { + "id": "138545", + "name": "Fisciano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77175000", + "longitude": "14.79454000" + }, + { + "id": "138567", + "name": "Flumeri", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07623000", + "longitude": "15.15072000" + }, + { + "id": "138573", + "name": "Foglianise", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16127000", + "longitude": "14.67112000" + }, + { + "id": "138579", + "name": "Foiano di Val Fortore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.35283000", + "longitude": "14.97635000" + }, + { + "id": "138595", + "name": "Fontanarosa", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01812000", + "longitude": "15.02055000" + }, + { + "id": "138611", + "name": "Fontegreca", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45653000", + "longitude": "14.18385000" + }, + { + "id": "138620", + "name": "Forchia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03144000", + "longitude": "14.53573000" + }, + { + "id": "138629", + "name": "Forino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85829000", + "longitude": "14.73254000" + }, + { + "id": "138630", + "name": "Forio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73757000", + "longitude": "13.86003000" + }, + { + "id": "138638", + "name": "Formicola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21084000", + "longitude": "14.23462000" + }, + { + "id": "138688", + "name": "Fragneto L'Abate", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25580000", + "longitude": "14.78382000" + }, + { + "id": "138689", + "name": "Fragneto Monforte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.24634000", + "longitude": "14.76342000" + }, + { + "id": "138701", + "name": "Franche", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67175000", + "longitude": "14.52139000" + }, + { + "id": "138705", + "name": "Francolise", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18501000", + "longitude": "14.05672000" + }, + { + "id": "138718", + "name": "Frasso Telesino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.15682000", + "longitude": "14.52783000" + }, + { + "id": "138722", + "name": "Frattamaggiore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94140000", + "longitude": "14.27588000" + }, + { + "id": "138723", + "name": "Frattaminore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95580000", + "longitude": "14.27201000" + }, + { + "id": "138733", + "name": "Frigento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01103000", + "longitude": "15.10026000" + }, + { + "id": "138734", + "name": "Frignano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99811000", + "longitude": "14.17913000" + }, + { + "id": "138752", + "name": "Fuorigrotta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83333000", + "longitude": "14.20000000" + }, + { + "id": "138753", + "name": "Fuorni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64063000", + "longitude": "14.84925000" + }, + { + "id": "138758", + "name": "Furore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62061000", + "longitude": "14.54904000" + }, + { + "id": "138764", + "name": "Futani", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.15156000", + "longitude": "15.32366000" + }, + { + "id": "138816", + "name": "Gallo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.46499000", + "longitude": "14.22519000" + }, + { + "id": "138817", + "name": "Gallo Matese", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.46452000", + "longitude": "14.22502000" + }, + { + "id": "138820", + "name": "Galluccio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.35232000", + "longitude": "13.95372000" + }, + { + "id": "138928", + "name": "Gesualdo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00554000", + "longitude": "15.07262000" + }, + { + "id": "138942", + "name": "Giano Vetusto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.20272000", + "longitude": "14.19342000" + }, + { + "id": "138957", + "name": "Giffoni Valle Piana", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.71811000", + "longitude": "14.94235000" + }, + { + "id": "138965", + "name": "Ginestra degli Schiavoni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27992000", + "longitude": "15.04374000" + }, + { + "id": "138967", + "name": "Gioi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28970000", + "longitude": "15.21806000" + }, + { + "id": "138968", + "name": "Gioia Sannitica", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.29965000", + "longitude": "14.44381000" + }, + { + "id": "138988", + "name": "Giugliano in Campania", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92849000", + "longitude": "14.20197000" + }, + { + "id": "138995", + "name": "Giungano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39450000", + "longitude": "15.10792000" + }, + { + "id": "139056", + "name": "Gragnano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.68907000", + "longitude": "14.52036000" + }, + { + "id": "139084", + "name": "Grazzanise", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.08970000", + "longitude": "14.09878000" + }, + { + "id": "139086", + "name": "Greci", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25182000", + "longitude": "15.16915000" + }, + { + "id": "139096", + "name": "Gricignano di Aversa", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97973000", + "longitude": "14.23087000" + }, + { + "id": "139122", + "name": "Grottaminarda", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06972000", + "longitude": "15.05894000" + }, + { + "id": "139129", + "name": "Grottola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.31708000", + "longitude": "14.04121000" + }, + { + "id": "139131", + "name": "Grottolella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97144000", + "longitude": "14.78894000" + }, + { + "id": "139140", + "name": "Grumo Nevano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93591000", + "longitude": "14.25983000" + }, + { + "id": "139159", + "name": "Guardia Lombardi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95177000", + "longitude": "15.20878000" + }, + { + "id": "139162", + "name": "Guardia Sanframondi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25640000", + "longitude": "14.59851000" + }, + { + "id": "139227", + "name": "Ischia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73793000", + "longitude": "13.94862000" + }, + { + "id": "139228", + "name": "Ischia Porto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73913000", + "longitude": "13.95100000" + }, + { + "id": "139258", + "name": "Ispani", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.08730000", + "longitude": "15.55827000" + }, + { + "id": "139313", + "name": "Lacco Ameno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74901000", + "longitude": "13.88718000" + }, + { + "id": "139314", + "name": "Lacedonia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05022000", + "longitude": "15.42169000" + }, + { + "id": "139355", + "name": "Lancusi-Penta-Bolano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.76125000", + "longitude": "14.78524000" + }, + { + "id": "139364", + "name": "Lanzara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77473000", + "longitude": "14.67619000" + }, + { + "id": "139368", + "name": "Lapio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98293000", + "longitude": "14.94650000" + }, + { + "id": "139396", + "name": "Laura", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.43220000", + "longitude": "14.98886000" + }, + { + "id": "139397", + "name": "Laureana Cilento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30110000", + "longitude": "15.03876000" + }, + { + "id": "139404", + "name": "Laurino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.33915000", + "longitude": "15.33810000" + }, + { + "id": "139405", + "name": "Laurito", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.16915000", + "longitude": "15.40741000" + }, + { + "id": "139406", + "name": "Lauro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87972000", + "longitude": "14.63013000" + }, + { + "id": "139415", + "name": "Laviano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78619000", + "longitude": "15.30791000" + }, + { + "id": "139476", + "name": "Letino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45302000", + "longitude": "14.25542000" + }, + { + "id": "139478", + "name": "Lettere", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70491000", + "longitude": "14.54494000" + }, + { + "id": "139492", + "name": "Liberi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.22648000", + "longitude": "14.28985000" + }, + { + "id": "139497", + "name": "Licinella-Torre di Paestum", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40656000", + "longitude": "14.99764000" + }, + { + "id": "139499", + "name": "Licusati", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.05410000", + "longitude": "15.36437000" + }, + { + "id": "139516", + "name": "Limatola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.14012000", + "longitude": "14.39437000" + }, + { + "id": "139532", + "name": "Lioni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88083000", + "longitude": "15.18335000" + }, + { + "id": "139546", + "name": "Liveri", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90406000", + "longitude": "14.56536000" + }, + { + "id": "139662", + "name": "Luogosano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98643000", + "longitude": "14.99206000" + }, + { + "id": "139670", + "name": "Lusciano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97001000", + "longitude": "14.19043000" + }, + { + "id": "139679", + "name": "Lustra", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28830000", + "longitude": "15.06826000" + }, + { + "id": "139683", + "name": "Luzzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06818000", + "longitude": "14.53611000" + }, + { + "id": "139690", + "name": "Macchia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65353000", + "longitude": "14.97879000" + }, + { + "id": "139694", + "name": "Maccoli-Perrillo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.08762000", + "longitude": "14.80585000" + }, + { + "id": "139697", + "name": "Macerata Campania", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06327000", + "longitude": "14.27750000" + }, + { + "id": "139706", + "name": "Maddaloni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03578000", + "longitude": "14.38230000" + }, + { + "id": "139728", + "name": "Magliano Vetere", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.34701000", + "longitude": "15.23666000" + }, + { + "id": "139749", + "name": "Maiori", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64848000", + "longitude": "14.64070000" + }, + { + "id": "139759", + "name": "Malche-Santa Croce-Serroni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70925000", + "longitude": "14.90668000" + }, + { + "id": "139801", + "name": "Manocalzati", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94151000", + "longitude": "14.84767000" + }, + { + "id": "139827", + "name": "Marano di Napoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89710000", + "longitude": "14.18824000" + }, + { + "id": "139847", + "name": "Marcianise", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03064000", + "longitude": "14.29868000" + }, + { + "id": "139870", + "name": "Mariglianella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92962000", + "longitude": "14.43703000" + }, + { + "id": "139871", + "name": "Marigliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92480000", + "longitude": "14.45612000" + }, + { + "id": "139878", + "name": "Marina di Camerota", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.00356000", + "longitude": "15.36717000" + }, + { + "id": "139882", + "name": "Marina di Casal Velino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17665000", + "longitude": "15.12218000" + }, + { + "id": "139944", + "name": "Marzanello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.31447000", + "longitude": "14.11611000" + }, + { + "id": "139946", + "name": "Marzano Appio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.31772000", + "longitude": "14.04502000" + }, + { + "id": "139947", + "name": "Marzano di Nola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90141000", + "longitude": "14.58359000" + }, + { + "id": "139976", + "name": "Massa di Somma", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84551000", + "longitude": "14.37513000" + }, + { + "id": "139972", + "name": "Massa Lubrense", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60937000", + "longitude": "14.37202000" + }, + { + "id": "139985", + "name": "Masseria Vecchia Ovest", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88966000", + "longitude": "14.06573000" + }, + { + "id": "139996", + "name": "Matinella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.50158000", + "longitude": "15.06692000" + }, + { + "id": "140051", + "name": "Melito di Napoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91948000", + "longitude": "14.23104000" + }, + { + "id": "140050", + "name": "Melito Irpino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.10312000", + "longitude": "15.05235000" + }, + { + "id": "140053", + "name": "Melizzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16181000", + "longitude": "14.50554000" + }, + { + "id": "140076", + "name": "Mercato", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.71612000", + "longitude": "14.94010000" + }, + { + "id": "140077", + "name": "Mercato San Severino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78468000", + "longitude": "14.75369000" + }, + { + "id": "140081", + "name": "Mercogliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92157000", + "longitude": "14.74491000" + }, + { + "id": "140101", + "name": "Meta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64081000", + "longitude": "14.41582000" + }, + { + "id": "140127", + "name": "Miano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88816000", + "longitude": "14.25339000" + }, + { + "id": "140141", + "name": "Mignano Monte Lungo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.40592000", + "longitude": "13.98552000" + }, + { + "id": "140161", + "name": "Minori", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65030000", + "longitude": "14.62684000" + }, + { + "id": "140167", + "name": "Mirabella Eclano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04496000", + "longitude": "15.00022000" + }, + { + "id": "140202", + "name": "Moiano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07968000", + "longitude": "14.54431000" + }, + { + "id": "140207", + "name": "Moio della Civitella-Pellare", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24710000", + "longitude": "15.26886000" + }, + { + "id": "140216", + "name": "Molinara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.29728000", + "longitude": "14.90867000" + }, + { + "id": "140276", + "name": "Mondragone", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.11399000", + "longitude": "13.89157000" + }, + { + "id": "140313", + "name": "Montaguto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.24873000", + "longitude": "15.24845000" + }, + { + "id": "140343", + "name": "Montano Antilia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.16264000", + "longitude": "15.36315000" + }, + { + "id": "140385", + "name": "Monte di Procida", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79809000", + "longitude": "14.05023000" + }, + { + "id": "140369", + "name": "Monte San Giacomo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.34411000", + "longitude": "15.54221000" + }, + { + "id": "140395", + "name": "Montecalvario", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84436000", + "longitude": "14.24555000" + }, + { + "id": "140396", + "name": "Montecalvo Irpino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.19616000", + "longitude": "15.03446000" + }, + { + "id": "140420", + "name": "Montecorice", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.23444000", + "longitude": "14.98504000" + }, + { + "id": "140421", + "name": "Montecorvino Pugliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67921000", + "longitude": "14.94475000" + }, + { + "id": "140422", + "name": "Montecorvino Rovella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69180000", + "longitude": "14.97862000" + }, + { + "id": "140426", + "name": "Montedecoro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02772000", + "longitude": "14.41774000" + }, + { + "id": "140429", + "name": "Montefalcione", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96173000", + "longitude": "14.88312000" + }, + { + "id": "140432", + "name": "Montefalcone di Val Fortore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.32430000", + "longitude": "15.00898000" + }, + { + "id": "140443", + "name": "Monteforte Cilento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.36481000", + "longitude": "15.19486000" + }, + { + "id": "140444", + "name": "Monteforte Irpino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90246000", + "longitude": "14.74400000" + }, + { + "id": "140448", + "name": "Montefredane", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95978000", + "longitude": "14.81374000" + }, + { + "id": "140449", + "name": "Montefusco", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03691000", + "longitude": "14.85498000" + }, + { + "id": "140476", + "name": "Montella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84372000", + "longitude": "15.01785000" + }, + { + "id": "140487", + "name": "Montemarano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91414000", + "longitude": "14.99766000" + }, + { + "id": "140494", + "name": "Montemiletto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01168000", + "longitude": "14.90034000" + }, + { + "id": "140529", + "name": "Monterusciello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86874000", + "longitude": "14.08276000" + }, + { + "id": "140531", + "name": "Montesano sulla Marcellana", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.27610000", + "longitude": "15.70390000" + }, + { + "id": "140532", + "name": "Montesarchio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06227000", + "longitude": "14.64096000" + }, + { + "id": "140549", + "name": "Monteverde", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99858000", + "longitude": "15.53361000" + }, + { + "id": "140558", + "name": "Monticelli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65000000", + "longitude": "15.01667000" + }, + { + "id": "140587", + "name": "Montoro Superiore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81699000", + "longitude": "14.79841000" + }, + { + "id": "140606", + "name": "Morcone", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.34269000", + "longitude": "14.66889000" + }, + { + "id": "140618", + "name": "Morigerati", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14056000", + "longitude": "15.55508000" + }, + { + "id": "140631", + "name": "Morra de Sanctis", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92902000", + "longitude": "15.24285000" + }, + { + "id": "140645", + "name": "Moschiano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87311000", + "longitude": "14.65594000" + }, + { + "id": "140679", + "name": "Mugnano del Cardinale", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94248000", + "longitude": "14.63610000" + }, + { + "id": "140680", + "name": "Mugnano di Napoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90936000", + "longitude": "14.20984000" + }, + { + "id": "140697", + "name": "Musci", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87861000", + "longitude": "14.36600000" + }, + { + "id": "140713", + "name": "Naples", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85216000", + "longitude": "14.26811000" + }, + { + "id": "140714", + "name": "Napoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88333000", + "longitude": "14.41667000" + }, + { + "id": "140781", + "name": "Nocelleto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.17067000", + "longitude": "14.01565000" + }, + { + "id": "140782", + "name": "Nocera Inferiore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74540000", + "longitude": "14.64542000" + }, + { + "id": "140784", + "name": "Nocera Superiore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74248000", + "longitude": "14.67447000" + }, + { + "id": "140797", + "name": "Nola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92606000", + "longitude": "14.52816000" + }, + { + "id": "140836", + "name": "Novi Velia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.22262000", + "longitude": "15.28600000" + }, + { + "id": "140850", + "name": "Nuova Conza della Campania", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85860000", + "longitude": "15.33645000" + }, + { + "id": "140861", + "name": "Nusco", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88820000", + "longitude": "15.09185000" + }, + { + "id": "140883", + "name": "Ogliastro Cilento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.35113000", + "longitude": "15.04638000" + }, + { + "id": "140891", + "name": "Olevano sul Tusciano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65721000", + "longitude": "15.02305000" + }, + { + "id": "140901", + "name": "Oliveto Citra", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69039000", + "longitude": "15.23346000" + }, + { + "id": "140919", + "name": "Omignano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24932000", + "longitude": "15.08406000" + }, + { + "id": "140968", + "name": "Orria", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.29971000", + "longitude": "15.17116000" + }, + { + "id": "140979", + "name": "Orta di Atella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96441000", + "longitude": "14.26854000" + }, + { + "id": "141020", + "name": "Ospedaletto d'Alpinolo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93906000", + "longitude": "14.74652000" + }, + { + "id": "141048", + "name": "Ottati", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.46291000", + "longitude": "15.31526000" + }, + { + "id": "141050", + "name": "Ottaviano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85193000", + "longitude": "14.47826000" + }, + { + "id": "141088", + "name": "Padula", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.33901000", + "longitude": "15.65634000" + }, + { + "id": "141090", + "name": "Paduli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16793000", + "longitude": "14.88688000" + }, + { + "id": "141094", + "name": "Pagani", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74199000", + "longitude": "14.61448000" + }, + { + "id": "58208", + "name": "Pagliarone", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63006000", + "longitude": "14.91325000" + }, + { + "id": "58214", + "name": "Pago del Vallo di Lauro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89721000", + "longitude": "14.60764000" + }, + { + "id": "58213", + "name": "Pago Veiano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.24243000", + "longitude": "14.86497000" + }, + { + "id": "58245", + "name": "Palinuro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03681000", + "longitude": "15.28812000" + }, + { + "id": "58253", + "name": "Palma Campania", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86608000", + "longitude": "14.55170000" + }, + { + "id": "58265", + "name": "Palomonte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.66251000", + "longitude": "15.29186000" + }, + { + "id": "58281", + "name": "Pannarano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01082000", + "longitude": "14.70293000" + }, + { + "id": "58288", + "name": "Paolisi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03731000", + "longitude": "14.57918000" + }, + { + "id": "58303", + "name": "Parete", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95891000", + "longitude": "14.16193000" + }, + { + "id": "58311", + "name": "Parolise", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93045000", + "longitude": "14.88172000" + }, + { + "id": "58321", + "name": "Pascarola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97643000", + "longitude": "14.30500000" + }, + { + "id": "58332", + "name": "Passo di Mirabella-Pianopantano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05468000", + "longitude": "15.01649000" + }, + { + "id": "58339", + "name": "Pastorano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18082000", + "longitude": "14.19823000" + }, + { + "id": "58345", + "name": "Paternopoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97268000", + "longitude": "15.03242000" + }, + { + "id": "58357", + "name": "Paupisi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.19662000", + "longitude": "14.66457000" + }, + { + "id": "58395", + "name": "Pellezzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72521000", + "longitude": "14.75744000" + }, + { + "id": "58400", + "name": "Pendino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84708000", + "longitude": "14.26321000" + }, + { + "id": "58418", + "name": "Perdifumo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26694000", + "longitude": "15.01652000" + }, + { + "id": "58426", + "name": "Perito", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.29854000", + "longitude": "15.14746000" + }, + { + "id": "58444", + "name": "Pertosa", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.54346000", + "longitude": "15.45009000" + }, + { + "id": "58460", + "name": "Pesco Sannita", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23273000", + "longitude": "14.81122000" + }, + { + "id": "58475", + "name": "Petina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.53211000", + "longitude": "15.37346000" + }, + { + "id": "58488", + "name": "Petruro Irpino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03192000", + "longitude": "14.79754000" + }, + { + "id": "58498", + "name": "Pezzano-Filetta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69773000", + "longitude": "14.86971000" + }, + { + "id": "58506", + "name": "Piaggine", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.34498000", + "longitude": "15.37777000" + }, + { + "id": "58515", + "name": "Piana di Monte Verna", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16712000", + "longitude": "14.33373000" + }, + { + "id": "58536", + "name": "Pianillo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63416000", + "longitude": "14.54922000" + }, + { + "id": "58537", + "name": "Piano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.82050000", + "longitude": "14.76005000" + }, + { + "id": "58545", + "name": "Piano di Sorrento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62806000", + "longitude": "14.41729000" + }, + { + "id": "58553", + "name": "Pianura", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85907000", + "longitude": "14.17314000" + }, + { + "id": "58570", + "name": "Piazza del Galdo-Sant'Angelo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77390000", + "longitude": "14.71696000" + }, + { + "id": "58571", + "name": "Piazza di Pandola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.80748000", + "longitude": "14.77180000" + }, + { + "id": "58568", + "name": "Piazza Roma", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70434000", + "longitude": "14.54300000" + }, + { + "id": "58572", + "name": "Piazza-Tralia-Pendolo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67351000", + "longitude": "14.50455000" + }, + { + "id": "58574", + "name": "Piazzola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87265000", + "longitude": "14.50016000" + }, + { + "id": "58576", + "name": "Piazzolla", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88964000", + "longitude": "14.51579000" + }, + { + "id": "58588", + "name": "Piedimonte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18886000", + "longitude": "13.89856000" + }, + { + "id": "58590", + "name": "Piedimonte Matese", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.35082000", + "longitude": "14.36803000" + }, + { + "id": "58596", + "name": "Piegolelle-San Bartolomeo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.68583000", + "longitude": "14.82312000" + }, + { + "id": "58611", + "name": "Pietradefusi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04316000", + "longitude": "14.88415000" + }, + { + "id": "58616", + "name": "Pietramelara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27086000", + "longitude": "14.18711000" + }, + { + "id": "58624", + "name": "Pietraroja", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.34782000", + "longitude": "14.54963000" + }, + { + "id": "58626", + "name": "Pietrastornina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99535000", + "longitude": "14.71833000" + }, + { + "id": "58627", + "name": "Pietravairano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.32522000", + "longitude": "14.16592000" + }, + { + "id": "58628", + "name": "Pietre", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70048000", + "longitude": "14.61993000" + }, + { + "id": "58629", + "name": "Pietrelcina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.19942000", + "longitude": "14.84414000" + }, + { + "id": "58662", + "name": "Pignataro Maggiore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.19006000", + "longitude": "14.16978000" + }, + { + "id": "58670", + "name": "Pimonte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67361000", + "longitude": "14.50984000" + }, + { + "id": "58706", + "name": "Piscinola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89299000", + "longitude": "14.23394000" + }, + { + "id": "58707", + "name": "Pisciotta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.10890000", + "longitude": "15.23456000" + }, + { + "id": "58769", + "name": "Poggiomarino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.80114000", + "longitude": "14.54066000" + }, + { + "id": "58770", + "name": "Poggioreale", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86543000", + "longitude": "14.28877000" + }, + { + "id": "58788", + "name": "Policastro Bussentino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.07511000", + "longitude": "15.52165000" + }, + { + "id": "58795", + "name": "Polla", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.51433000", + "longitude": "15.49715000" + }, + { + "id": "58797", + "name": "Pollena Trocchia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85134000", + "longitude": "14.37911000" + }, + { + "id": "58799", + "name": "Pollica", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.19070000", + "longitude": "15.05716000" + }, + { + "id": "58807", + "name": "Polvica", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69484000", + "longitude": "14.64019000" + }, + { + "id": "58816", + "name": "Pomigliano d'Arco", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90975000", + "longitude": "14.38316000" + }, + { + "id": "58817", + "name": "Pompei", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74574000", + "longitude": "14.49698000" + }, + { + "id": "58832", + "name": "Ponte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21554000", + "longitude": "14.69826000" + }, + { + "id": "58863", + "name": "Pontecagnano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64448000", + "longitude": "14.87628000" + }, + { + "id": "58871", + "name": "Pontelandolfo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.29231000", + "longitude": "14.68956000" + }, + { + "id": "58873", + "name": "Pontelatone", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.19460000", + "longitude": "14.24814000" + }, + { + "id": "58885", + "name": "Ponticelli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85420000", + "longitude": "14.33038000" + }, + { + "id": "58917", + "name": "Portici", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81563000", + "longitude": "14.33716000" + }, + { + "id": "58918", + "name": "Portico di Caserta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05562000", + "longitude": "14.28022000" + }, + { + "id": "58922", + "name": "Porto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84395000", + "longitude": "14.25724000" + }, + { + "id": "58954", + "name": "Posillipo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81279000", + "longitude": "14.20001000" + }, + { + "id": "58956", + "name": "Positano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62829000", + "longitude": "14.48427000" + }, + { + "id": "58962", + "name": "Postiglione", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55901000", + "longitude": "15.23236000" + }, + { + "id": "58981", + "name": "Pozzillo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.20337000", + "longitude": "14.19530000" + }, + { + "id": "58989", + "name": "Pozzuoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84394000", + "longitude": "14.09520000" + }, + { + "id": "58999", + "name": "Praiano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.61213000", + "longitude": "14.52461000" + }, + { + "id": "59017", + "name": "Prata di Principato Ultra", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98626000", + "longitude": "14.83803000" + }, + { + "id": "59014", + "name": "Prata Sannita Centro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.43282000", + "longitude": "14.20272000" + }, + { + "id": "59019", + "name": "Pratella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.40579000", + "longitude": "14.17913000" + }, + { + "id": "59030", + "name": "Prato Perillo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39690000", + "longitude": "15.52503000" + }, + { + "id": "59034", + "name": "Pratola Serra", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98655000", + "longitude": "14.85149000" + }, + { + "id": "59035", + "name": "Pratole", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62580000", + "longitude": "14.92565000" + }, + { + "id": "59062", + "name": "Prepezzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72754000", + "longitude": "14.89123000" + }, + { + "id": "59065", + "name": "Presenzano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.37823000", + "longitude": "14.09162000" + }, + { + "id": "59076", + "name": "Prignano Cilento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.33335000", + "longitude": "15.06739000" + }, + { + "id": "59086", + "name": "Procida", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.75636000", + "longitude": "14.01457000" + }, + { + "id": "59111", + "name": "Provincia di Avellino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98333000", + "longitude": "15.15000000" + }, + { + "id": "59114", + "name": "Provincia di Benevento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21792000", + "longitude": "14.74640000" + }, + { + "id": "59122", + "name": "Provincia di Caserta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23333000", + "longitude": "14.16667000" + }, + { + "id": "59172", + "name": "Provincia di Salerno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45000000", + "longitude": "15.26667000" + }, + { + "id": "59196", + "name": "Puglianello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.22179000", + "longitude": "14.45023000" + }, + { + "id": "59197", + "name": "Pugliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67876000", + "longitude": "14.94543000" + }, + { + "id": "59211", + "name": "Quadrelle", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94851000", + "longitude": "14.63934000" + }, + { + "id": "59213", + "name": "Quadrivio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62494000", + "longitude": "15.10353000" + }, + { + "id": "59215", + "name": "Qualiano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91899000", + "longitude": "14.15352000" + }, + { + "id": "59228", + "name": "Quarto", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87822000", + "longitude": "14.14352000" + }, + { + "id": "59245", + "name": "Quindici", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86497000", + "longitude": "14.64663000" + }, + { + "id": "59298", + "name": "Ravello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64932000", + "longitude": "14.61167000" + }, + { + "id": "59302", + "name": "Raviscanina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.37090000", + "longitude": "14.24335000" + }, + { + "id": "59309", + "name": "Recale", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05702000", + "longitude": "14.30270000" + }, + { + "id": "59325", + "name": "Reino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.29219000", + "longitude": "14.82347000" + }, + { + "id": "59339", + "name": "Rettifilo-Vannullo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45125000", + "longitude": "15.02794000" + }, + { + "id": "59358", + "name": "Riardo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.26197000", + "longitude": "14.15045000" + }, + { + "id": "59370", + "name": "Ricigliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.66803000", + "longitude": "15.47790000" + }, + { + "id": "59477", + "name": "Rocca San Felice", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95014000", + "longitude": "15.16656000" + }, + { + "id": "59490", + "name": "Roccabascerana", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01842000", + "longitude": "14.71684000" + }, + { + "id": "59495", + "name": "Roccadaspide", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.42333000", + "longitude": "15.19118000" + }, + { + "id": "59503", + "name": "Roccagloriosa", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.10628000", + "longitude": "15.43642000" + }, + { + "id": "59509", + "name": "Roccamonfina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.28683000", + "longitude": "13.97905000" + }, + { + "id": "59514", + "name": "Roccapiemonte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.76009000", + "longitude": "14.69089000" + }, + { + "id": "59515", + "name": "Roccarainola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97250000", + "longitude": "14.54283000" + }, + { + "id": "59517", + "name": "Roccaromana", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27360000", + "longitude": "14.22190000" + }, + { + "id": "59535", + "name": "Rocchetta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23716000", + "longitude": "14.15765000" + }, + { + "id": "59556", + "name": "Rofrano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21277000", + "longitude": "15.42848000" + }, + { + "id": "59631", + "name": "Roscigno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39997000", + "longitude": "15.34585000" + }, + { + "id": "59661", + "name": "Rotondi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03293000", + "longitude": "14.59548000" + }, + { + "id": "59706", + "name": "Rutino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30072000", + "longitude": "15.07328000" + }, + { + "id": "59707", + "name": "Ruviano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21063000", + "longitude": "14.40983000" + }, + { + "id": "59717", + "name": "Sacco", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37671000", + "longitude": "15.37783000" + }, + { + "id": "59738", + "name": "Sala", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85536000", + "longitude": "14.87343000" + }, + { + "id": "59743", + "name": "Sala Consilina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40134000", + "longitude": "15.59140000" + }, + { + "id": "59759", + "name": "Salento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24913000", + "longitude": "15.18938000" + }, + { + "id": "59762", + "name": "Salerno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67545000", + "longitude": "14.79328000" + }, + { + "id": "59775", + "name": "Salitto-Valle", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67412000", + "longitude": "15.02241000" + }, + { + "id": "59791", + "name": "Salvitelle", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.59064000", + "longitude": "15.45760000" + }, + { + "id": "59793", + "name": "Salza Irpina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91893000", + "longitude": "14.88996000" + }, + { + "id": "59822", + "name": "San Bartolomeo in Galdo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.41595000", + "longitude": "15.01709000" + }, + { + "id": "59854", + "name": "San Carlo All'Arena", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86511000", + "longitude": "14.26291000" + }, + { + "id": "59861", + "name": "San Castrese", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25862000", + "longitude": "13.86541000" + }, + { + "id": "59871", + "name": "San Cipriano d'Aversa", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99881000", + "longitude": "14.13173000" + }, + { + "id": "59869", + "name": "San Cipriano Picentino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72008000", + "longitude": "14.87195000" + }, + { + "id": "59875", + "name": "San Clemente", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.34027000", + "longitude": "13.95597000" + }, + { + "id": "59908", + "name": "San Felice A Cancello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01702000", + "longitude": "14.48736000" + }, + { + "id": "59914", + "name": "San Ferdinando", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83342000", + "longitude": "14.24751000" + }, + { + "id": "59935", + "name": "San Gennaro Vesuviano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86226000", + "longitude": "14.52414000" + }, + { + "id": "59952", + "name": "San Giorgio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27065000", + "longitude": "14.31278000" + }, + { + "id": "59963", + "name": "San Giorgio a Cremano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83261000", + "longitude": "14.34162000" + }, + { + "id": "59966", + "name": "San Giorgio del Sannio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06844000", + "longitude": "14.85322000" + }, + { + "id": "59976", + "name": "San Giorgio la Molara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27667000", + "longitude": "14.93099000" + }, + { + "id": "59981", + "name": "San Giovanni A Piro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.05150000", + "longitude": "15.44620000" + }, + { + "id": "59991", + "name": "San Giovanni a Teduccio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83808000", + "longitude": "14.30606000" + }, + { + "id": "60011", + "name": "San Giuseppe", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84507000", + "longitude": "14.25170000" + }, + { + "id": "60013", + "name": "San Giuseppe Vesuviano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83560000", + "longitude": "14.50487000" + }, + { + "id": "60020", + "name": "San Gregorio Magno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65992000", + "longitude": "15.39914000" + }, + { + "id": "60021", + "name": "San Gregorio Matese", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.38556000", + "longitude": "14.37217000" + }, + { + "id": "60033", + "name": "San Leucio del Sannio-Cavuoti", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07442000", + "longitude": "14.75744000" + }, + { + "id": "60035", + "name": "San Lorenzello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27602000", + "longitude": "14.54173000" + }, + { + "id": "60038", + "name": "San Lorenzo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.75405000", + "longitude": "14.58974000" + }, + { + "id": "60042", + "name": "San Lorenzo Maggiore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.24885000", + "longitude": "14.62438000" + }, + { + "id": "60052", + "name": "San Lupo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.26148000", + "longitude": "14.63528000" + }, + { + "id": "60054", + "name": "San Mango Piemonte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70024000", + "longitude": "14.83919000" + }, + { + "id": "60056", + "name": "San Mango sul Calore", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95890000", + "longitude": "14.97251000" + }, + { + "id": "60057", + "name": "San Marcellino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99001000", + "longitude": "14.17583000" + }, + { + "id": "60060", + "name": "San Marco", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26740000", + "longitude": "14.93897000" + }, + { + "id": "60064", + "name": "San Marco dei Cavoti", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30881000", + "longitude": "14.87924000" + }, + { + "id": "60062", + "name": "San Marco Evangelista", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03702000", + "longitude": "14.33979000" + }, + { + "id": "60076", + "name": "San Martino Sannita", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06546000", + "longitude": "14.83492000" + }, + { + "id": "60078", + "name": "San Martino Valle Caudina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02764000", + "longitude": "14.66446000" + }, + { + "id": "60100", + "name": "San Marzano sul Sarno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77801000", + "longitude": "14.58006000" + }, + { + "id": "60106", + "name": "San Mauro Cilento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.22628000", + "longitude": "15.04476000" + }, + { + "id": "60113", + "name": "San Mauro la Bruca", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12246000", + "longitude": "15.29109000" + }, + { + "id": "60116", + "name": "San Michele", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62023000", + "longitude": "14.55018000" + }, + { + "id": "60125", + "name": "San Michele di Serino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87562000", + "longitude": "14.85464000" + }, + { + "id": "60130", + "name": "San Nazzaro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05172000", + "longitude": "14.85724000" + }, + { + "id": "60138", + "name": "San Nicola Baronia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05808000", + "longitude": "15.20006000" + }, + { + "id": "60142", + "name": "San Nicola la Strada", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.05237000", + "longitude": "14.33334000" + }, + { + "id": "60139", + "name": "San Nicola Manfredi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07510000", + "longitude": "14.82430000" + }, + { + "id": "60158", + "name": "San Paolo Bel Sito", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91354000", + "longitude": "14.54862000" + }, + { + "id": "60172", + "name": "San Pietro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.82398000", + "longitude": "14.78476000" + }, + { + "id": "60187", + "name": "San Pietro a Patierno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88566000", + "longitude": "14.29008000" + }, + { + "id": "60189", + "name": "San Pietro al Tanagro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45488000", + "longitude": "15.48692000" + }, + { + "id": "60179", + "name": "San Pietro Infine", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.44552000", + "longitude": "13.96029000" + }, + { + "id": "60211", + "name": "San Potito Sannitico", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.33698000", + "longitude": "14.39185000" + }, + { + "id": "60212", + "name": "San Potito Ultra", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92796000", + "longitude": "14.87124000" + }, + { + "id": "60213", + "name": "San Prisco", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.08592000", + "longitude": "14.27675000" + }, + { + "id": "60229", + "name": "San Rufo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.43451000", + "longitude": "15.46366000" + }, + { + "id": "60232", + "name": "San Salvatore Telesino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23537000", + "longitude": "14.49832000" + }, + { + "id": "60237", + "name": "San Sebastiano al Vesuvio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84344000", + "longitude": "14.36428000" + }, + { + "id": "60246", + "name": "San Sossio Baronia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07081000", + "longitude": "15.20122000" + }, + { + "id": "60251", + "name": "San Tammaro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07588000", + "longitude": "14.23105000" + }, + { + "id": "60258", + "name": "San Valentino Torio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79109000", + "longitude": "14.60333000" + }, + { + "id": "60271", + "name": "San Vitaliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92442000", + "longitude": "14.47463000" + }, + { + "id": "60320", + "name": "Sant'Agata de'Goti", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.08932000", + "longitude": "14.49743000" + }, + { + "id": "60325", + "name": "Sant'Agata sui Due Golfi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60565000", + "longitude": "14.37402000" + }, + { + "id": "60327", + "name": "Sant'Agnello", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62942000", + "longitude": "14.39957000" + }, + { + "id": "60340", + "name": "Sant'Anastasia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86842000", + "longitude": "14.40196000" + }, + { + "id": "60348", + "name": "Sant'Andrea di Conza", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84482000", + "longitude": "15.36965000" + }, + { + "id": "60350", + "name": "Sant'Andrea-Pizzone-Ciamprisco", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.15000000", + "longitude": "14.03333000" + }, + { + "id": "60352", + "name": "Sant'Angelo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69841000", + "longitude": "13.89316000" + }, + { + "id": "60353", + "name": "Sant'Angelo A Cupolo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06912000", + "longitude": "14.80374000" + }, + { + "id": "60354", + "name": "Sant'Angelo A Fasanella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45724000", + "longitude": "15.34091000" + }, + { + "id": "60355", + "name": "Sant'Angelo A Scala", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97465000", + "longitude": "14.74041000" + }, + { + "id": "60356", + "name": "Sant'Angelo All'Esca", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00662000", + "longitude": "14.99305000" + }, + { + "id": "60362", + "name": "Sant'Angelo d'Alife", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.36119000", + "longitude": "14.26125000" + }, + { + "id": "60363", + "name": "Sant'Angelo dei Lombardi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92937000", + "longitude": "15.17535000" + }, + { + "id": "60367", + "name": "Sant'Angelo in Formis", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.11667000", + "longitude": "14.25000000" + }, + { + "id": "60376", + "name": "Sant'Antimo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94223000", + "longitude": "14.23476000" + }, + { + "id": "60380", + "name": "Sant'Antonio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63626000", + "longitude": "14.89845000" + }, + { + "id": "60383", + "name": "Sant'Antonio Abate", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72152000", + "longitude": "14.54021000" + }, + { + "id": "60388", + "name": "Sant'Arcangelo Trimonte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16901000", + "longitude": "14.93883000" + }, + { + "id": "60389", + "name": "Sant'Arpino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95716000", + "longitude": "14.25075000" + }, + { + "id": "60390", + "name": "Sant'Arsenio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.47109000", + "longitude": "15.48401000" + }, + { + "id": "60392", + "name": "Sant'Egidio del Monte Albino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73871000", + "longitude": "14.59454000" + }, + { + "id": "60394", + "name": "Sant'Elena Irpina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03741000", + "longitude": "14.88931000" + }, + { + "id": "60428", + "name": "Santa Croce del Sannio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.38793000", + "longitude": "14.73229000" + }, + { + "id": "60445", + "name": "Santa Lucia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30409000", + "longitude": "14.07937000" + }, + { + "id": "60449", + "name": "Santa Lucia di Serino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87042000", + "longitude": "14.87594000" + }, + { + "id": "60455", + "name": "Santa Maria", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.29782000", + "longitude": "14.95214000" + }, + { + "id": "60457", + "name": "Santa Maria A Vico", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02611000", + "longitude": "14.46515000" + }, + { + "id": "60459", + "name": "Santa Maria Capua Vetere", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.08156000", + "longitude": "14.25342000" + }, + { + "id": "60464", + "name": "Santa Maria La Carità", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.71611000", + "longitude": "14.50984000" + }, + { + "id": "60479", + "name": "Santa Maria la Fossa", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.09171000", + "longitude": "14.12822000" + }, + { + "id": "60482", + "name": "Santa Marina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.10520000", + "longitude": "15.54153000" + }, + { + "id": "60488", + "name": "Santa Paolina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02202000", + "longitude": "14.84630000" + }, + { + "id": "60493", + "name": "Santa Tecla-Castelpagano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67353000", + "longitude": "14.91806000" + }, + { + "id": "60519", + "name": "Santo Stefano del Sole", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89414000", + "longitude": "14.86674000" + }, + { + "id": "60528", + "name": "Santomenna", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.80685000", + "longitude": "15.32639000" + }, + { + "id": "60532", + "name": "Sanza", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24389000", + "longitude": "15.55416000" + }, + { + "id": "60538", + "name": "Sapri", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.07464000", + "longitude": "15.63212000" + }, + { + "id": "60554", + "name": "Sarno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.80748000", + "longitude": "14.62151000" + }, + { + "id": "60567", + "name": "Sassano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.34030000", + "longitude": "15.56555000" + }, + { + "id": "60571", + "name": "Sassinoro", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.37472000", + "longitude": "14.66453000" + }, + { + "id": "60586", + "name": "Saviano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90507000", + "longitude": "14.50498000" + }, + { + "id": "60588", + "name": "Savignano Irpino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.22698000", + "longitude": "15.17933000" + }, + { + "id": "60602", + "name": "Scafati", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.76020000", + "longitude": "14.53723000" + }, + { + "id": "60604", + "name": "Scala", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65665000", + "longitude": "14.60761000" + }, + { + "id": "60610", + "name": "Scalo Romagnano al Monte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.61031000", + "longitude": "15.44768000" + }, + { + "id": "60613", + "name": "Scampia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90347000", + "longitude": "14.23736000" + }, + { + "id": "60614", + "name": "Scampitella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.09252000", + "longitude": "15.29995000" + }, + { + "id": "60631", + "name": "Scario", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.06207000", + "longitude": "15.47421000" + }, + { + "id": "60658", + "name": "Scisciano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90663000", + "longitude": "14.47451000" + }, + { + "id": "60678", + "name": "Secondigliano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90000000", + "longitude": "14.26667000" + }, + { + "id": "60722", + "name": "Senerchia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74133000", + "longitude": "15.20502000" + }, + { + "id": "60742", + "name": "Serino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85481000", + "longitude": "14.87224000" + }, + { + "id": "60764", + "name": "Serramezzana", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.24460000", + "longitude": "15.03246000" + }, + { + "id": "60768", + "name": "Serrara Fontana", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.71475000", + "longitude": "13.89593000" + }, + { + "id": "60778", + "name": "Serre", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58251000", + "longitude": "15.18555000" + }, + { + "id": "60788", + "name": "Sessa Aurunca", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23987000", + "longitude": "13.92966000" + }, + { + "id": "60789", + "name": "Sessa Cilento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.25920000", + "longitude": "15.07576000" + }, + { + "id": "60836", + "name": "Siano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.80207000", + "longitude": "14.69334000" + }, + { + "id": "60839", + "name": "Sicignano degli Alburni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55882000", + "longitude": "15.30560000" + }, + { + "id": "60872", + "name": "Sirignano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94969000", + "longitude": "14.62935000" + }, + { + "id": "60892", + "name": "Soccavo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84550000", + "longitude": "14.19262000" + }, + { + "id": "60921", + "name": "Solofra", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83343000", + "longitude": "14.83705000" + }, + { + "id": "60923", + "name": "Solopaca", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.19535000", + "longitude": "14.54767000" + }, + { + "id": "60929", + "name": "Somma Vesuviana", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87329000", + "longitude": "14.43865000" + }, + { + "id": "60950", + "name": "Sorbo Serpico", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91685000", + "longitude": "14.88709000" + }, + { + "id": "60966", + "name": "Sorrento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62678000", + "longitude": "14.37771000" + }, + { + "id": "60990", + "name": "Sparanise", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18788000", + "longitude": "14.09628000" + }, + { + "id": "60993", + "name": "Spartimento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89105000", + "longitude": "14.47236000" + }, + { + "id": "60999", + "name": "Sperone", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95251000", + "longitude": "14.60524000" + }, + { + "id": "61048", + "name": "Starza Vecchia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89035000", + "longitude": "14.40138000" + }, + { + "id": "61062", + "name": "Stella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86027000", + "longitude": "14.25223000" + }, + { + "id": "61063", + "name": "Stella Cilento", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.23180000", + "longitude": "15.09286000" + }, + { + "id": "61078", + "name": "Stio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.31020000", + "longitude": "15.25153000" + }, + { + "id": "61096", + "name": "Striano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81543000", + "longitude": "14.57534000" + }, + { + "id": "61105", + "name": "Sturno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02217000", + "longitude": "15.11248000" + }, + { + "id": "61110", + "name": "Succivo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96801000", + "longitude": "14.25563000" + }, + { + "id": "61120", + "name": "Summonte", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.94874000", + "longitude": "14.74458000" + }, + { + "id": "61174", + "name": "Taurano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88444000", + "longitude": "14.63427000" + }, + { + "id": "61175", + "name": "Taurasi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01080000", + "longitude": "14.95980000" + }, + { + "id": "61199", + "name": "Teano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25132000", + "longitude": "14.06652000" + }, + { + "id": "61201", + "name": "Teggiano-Macchiaroli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37921000", + "longitude": "15.54046000" + }, + { + "id": "61205", + "name": "Telese", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21752000", + "longitude": "14.52681000" + }, + { + "id": "61216", + "name": "Teora", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85282000", + "longitude": "15.25335000" + }, + { + "id": "61255", + "name": "Terzigno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.80400000", + "longitude": "14.49309000" + }, + { + "id": "61269", + "name": "Teverola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99561000", + "longitude": "14.20763000" + }, + { + "id": "61292", + "name": "Tocco Caudio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.12587000", + "longitude": "14.63422000" + }, + { + "id": "61315", + "name": "Tora", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.33987000", + "longitude": "14.02399000" + }, + { + "id": "61320", + "name": "Torchiara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.32162000", + "longitude": "15.05370000" + }, + { + "id": "61322", + "name": "Torchiati", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81837000", + "longitude": "14.80165000" + }, + { + "id": "61324", + "name": "Torella dei Lombardi", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93731000", + "longitude": "15.10784000" + }, + { + "id": "61326", + "name": "Torelli-Torrette", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90777000", + "longitude": "14.75184000" + }, + { + "id": "61341", + "name": "Torraca", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.11099000", + "longitude": "15.63632000" + }, + { + "id": "61347", + "name": "Torre Annunziata", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.75337000", + "longitude": "14.45251000" + }, + { + "id": "61353", + "name": "Torre Caracciolo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87551000", + "longitude": "14.17859000" + }, + { + "id": "61371", + "name": "Torre del Greco", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78931000", + "longitude": "14.36806000" + }, + { + "id": "61377", + "name": "Torre le Nocelle", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02312000", + "longitude": "14.90934000" + }, + { + "id": "61357", + "name": "Torre Orsaia", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.13277000", + "longitude": "15.47250000" + }, + { + "id": "61381", + "name": "Torrecuso", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.18582000", + "longitude": "14.68126000" + }, + { + "id": "61391", + "name": "Torretta-Scalzapecora", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91015000", + "longitude": "14.13456000" + }, + { + "id": "61408", + "name": "Torrioni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.03410000", + "longitude": "14.81351000" + }, + { + "id": "61415", + "name": "Tortorella", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14236000", + "longitude": "15.60625000" + }, + { + "id": "61432", + "name": "Tramonti", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.69154000", + "longitude": "14.64490000" + }, + { + "id": "61464", + "name": "Trecase", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.76941000", + "longitude": "14.43773000" + }, + { + "id": "61482", + "name": "Trentinara", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39998000", + "longitude": "15.11545000" + }, + { + "id": "61484", + "name": "Trentola-Ducenta", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97517000", + "longitude": "14.17490000" + }, + { + "id": "61493", + "name": "Trescine", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.02256000", + "longitude": "14.62039000" + }, + { + "id": "61503", + "name": "Trevico", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04808000", + "longitude": "15.23292000" + }, + { + "id": "61564", + "name": "Tufino", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95586000", + "longitude": "14.56568000" + }, + { + "id": "61565", + "name": "Tufo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.01262000", + "longitude": "14.81784000" + }, + { + "id": "61641", + "name": "Vairano-Patenora", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.33702000", + "longitude": "14.13112000" + }, + { + "id": "61683", + "name": "Vallata", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04019000", + "longitude": "15.25383000" + }, + { + "id": "61684", + "name": "Valle Agricola", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.42477000", + "longitude": "14.25584000" + }, + { + "id": "61695", + "name": "Valle dell'Angelo", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.34381000", + "longitude": "15.36846000" + }, + { + "id": "61698", + "name": "Valle di Maddaloni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07946000", + "longitude": "14.41788000" + }, + { + "id": "61716", + "name": "Vallesaccarda", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.06312000", + "longitude": "15.25205000" + }, + { + "id": "61724", + "name": "Vallo della Lucania", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.22786000", + "longitude": "15.26635000" + }, + { + "id": "61745", + "name": "Valva", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73871000", + "longitude": "15.26805000" + }, + { + "id": "61824", + "name": "Venticano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04722000", + "longitude": "14.91194000" + }, + { + "id": "61908", + "name": "Vibonati", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09921000", + "longitude": "15.58357000" + }, + { + "id": "61912", + "name": "Vicaria", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86151000", + "longitude": "14.27328000" + }, + { + "id": "61917", + "name": "Vico Equense", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65977000", + "longitude": "14.43386000" + }, + { + "id": "61935", + "name": "Vietri sul Mare", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67020000", + "longitude": "14.72661000" + }, + { + "id": "62040", + "name": "Villa di Briano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00001000", + "longitude": "14.16073000" + }, + { + "id": "62004", + "name": "Villa Literno", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.00942000", + "longitude": "14.07612000" + }, + { + "id": "62081", + "name": "Villamaina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.97144000", + "longitude": "15.08855000" + }, + { + "id": "62086", + "name": "Villammare", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.07747000", + "longitude": "15.59401000" + }, + { + "id": "62108", + "name": "Villanova del Battista", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.11897000", + "longitude": "15.15839000" + }, + { + "id": "62129", + "name": "Villaricca", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92006000", + "longitude": "14.19339000" + }, + { + "id": "62172", + "name": "Visciano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92380000", + "longitude": "14.58237000" + }, + { + "id": "62188", + "name": "Vitulano", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.17419000", + "longitude": "14.64821000" + }, + { + "id": "62189", + "name": "Vitulazio", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.16302000", + "longitude": "14.21341000" + }, + { + "id": "62206", + "name": "Volla", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87363000", + "longitude": "14.34085000" + }, + { + "id": "62221", + "name": "Volturara Irpina", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.88293000", + "longitude": "14.91801000" + }, + { + "id": "62224", + "name": "Vomero", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84282000", + "longitude": "14.23075000" + }, + { + "id": "62272", + "name": "Zona Industriale", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84788000", + "longitude": "14.28355000" + }, + { + "id": "62286", + "name": "Zungoli", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.12766000", + "longitude": "15.20255000" + }, + { + "id": "62288", + "name": "Zuni", + "state_id": 1669, + "state_code": "72", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21722000", + "longitude": "14.13082000" + }, + { + "id": "135297", + "name": "Agazzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94726000", + "longitude": "9.51875000" + }, + { + "id": "135359", + "name": "Albareto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44692000", + "longitude": "9.70228000" + }, + { + "id": "135364", + "name": "Alberi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74837000", + "longitude": "10.33045000" + }, + { + "id": "135377", + "name": "Albinea", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62859000", + "longitude": "10.61024000" + }, + { + "id": "135403", + "name": "Alfonsine", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50768000", + "longitude": "12.03743000" + }, + { + "id": "135428", + "name": "Alseno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89759000", + "longitude": "9.96405000" + }, + { + "id": "135437", + "name": "Altedo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67057000", + "longitude": "11.49019000" + }, + { + "id": "135529", + "name": "Anzola dell'Emilia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54197000", + "longitude": "11.20548000" + }, + { + "id": "135563", + "name": "Arceto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61762000", + "longitude": "10.72461000" + }, + { + "id": "135592", + "name": "Argelato", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64009000", + "longitude": "11.34359000" + }, + { + "id": "135593", + "name": "Argenta", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61397000", + "longitude": "11.83547000" + }, + { + "id": "135594", + "name": "Argine", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77494000", + "longitude": "10.63432000" + }, + { + "id": "135745", + "name": "Baganzola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85513000", + "longitude": "10.30706000" + }, + { + "id": "135746", + "name": "Baggiovara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60416000", + "longitude": "10.86256000" + }, + { + "id": "135748", + "name": "Bagnacavallo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41402000", + "longitude": "11.97813000" + }, + { + "id": "135750", + "name": "Bagnara di Romagna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38930000", + "longitude": "11.82726000" + }, + { + "id": "135753", + "name": "Bagnarola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.16232000", + "longitude": "12.34280000" + }, + { + "id": "135759", + "name": "Bagno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.65545000", + "longitude": "10.75881000" + }, + { + "id": "135773", + "name": "Bagnolo in Piano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76437000", + "longitude": "10.67358000" + }, + { + "id": "135780", + "name": "Baiso", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49668000", + "longitude": "10.60083000" + }, + { + "id": "135830", + "name": "Barbiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38950000", + "longitude": "11.88650000" + }, + { + "id": "135837", + "name": "Barco", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68833000", + "longitude": "10.49582000" + }, + { + "id": "135840", + "name": "Bardi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63138000", + "longitude": "9.72907000" + }, + { + "id": "135856", + "name": "Baricella", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64820000", + "longitude": "11.53800000" + }, + { + "id": "135889", + "name": "Basilicagoiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70545000", + "longitude": "10.40457000" + }, + { + "id": "135890", + "name": "Basilicanova", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69804000", + "longitude": "10.35231000" + }, + { + "id": "135904", + "name": "Bastiglia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72697000", + "longitude": "10.99860000" + }, + { + "id": "135915", + "name": "Bazzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50176000", + "longitude": "11.08675000" + }, + { + "id": "135920", + "name": "Bedonia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50400000", + "longitude": "9.63489000" + }, + { + "id": "135940", + "name": "Bellaria-Igea Marina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14255000", + "longitude": "12.47154000" + }, + { + "id": "135978", + "name": "Bentivoglio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63690000", + "longitude": "11.41737000" + }, + { + "id": "135981", + "name": "Berceto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50899000", + "longitude": "9.99104000" + }, + { + "id": "135996", + "name": "Berra", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97656000", + "longitude": "11.97727000" + }, + { + "id": "136000", + "name": "Bertinoro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14874000", + "longitude": "12.13650000" + }, + { + "id": "136006", + "name": "Berzantina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.15786000", + "longitude": "10.98083000" + }, + { + "id": "136014", + "name": "Besenzone", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98689000", + "longitude": "9.95604000" + }, + { + "id": "136018", + "name": "Bettola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77826000", + "longitude": "9.60857000" + }, + { + "id": "136038", + "name": "Bibbiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66292000", + "longitude": "10.47391000" + }, + { + "id": "136085", + "name": "Bobbio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76832000", + "longitude": "9.38415000" + }, + { + "id": "136107", + "name": "Bologna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46667000", + "longitude": "11.43333000" + }, + { + "id": "136122", + "name": "Bomporto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73389000", + "longitude": "11.03667000" + }, + { + "id": "136129", + "name": "Bondeno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88944000", + "longitude": "11.41542000" + }, + { + "id": "136144", + "name": "Bora Bassa", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04636000", + "longitude": "12.18066000" + }, + { + "id": "136150", + "name": "Bore", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71866000", + "longitude": "9.79207000" + }, + { + "id": "136151", + "name": "Borello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.05846000", + "longitude": "12.17993000" + }, + { + "id": "136152", + "name": "Boretto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90157000", + "longitude": "10.55147000" + }, + { + "id": "136165", + "name": "Borghi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03223000", + "longitude": "12.35618000" + }, + { + "id": "136192", + "name": "Borgo Tossignano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.28233000", + "longitude": "11.59659000" + }, + { + "id": "136193", + "name": "Borgo Val di Taro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48899000", + "longitude": "9.76906000" + }, + { + "id": "136211", + "name": "Borgonovo Valtidone", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01436000", + "longitude": "9.44346000" + }, + { + "id": "136212", + "name": "Borgonuovo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43557000", + "longitude": "11.27069000" + }, + { + "id": "136234", + "name": "Borzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60360000", + "longitude": "10.63675000" + }, + { + "id": "136244", + "name": "Bosco Mesola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87639000", + "longitude": "12.23139000" + }, + { + "id": "136313", + "name": "Brescello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89531000", + "longitude": "10.51269000" + }, + { + "id": "136341", + "name": "Brisighella", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22228000", + "longitude": "11.77358000" + }, + { + "id": "136381", + "name": "Bubano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41341000", + "longitude": "11.78231000" + }, + { + "id": "136393", + "name": "Budrio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53745000", + "longitude": "11.53439000" + }, + { + "id": "136419", + "name": "Busana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36886000", + "longitude": "10.32339000" + }, + { + "id": "136429", + "name": "Busseto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97940000", + "longitude": "10.04331000" + }, + { + "id": "136447", + "name": "Ca' di Sola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52986000", + "longitude": "10.95448000" + }, + { + "id": "136463", + "name": "Cadè-Gaida", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73850000", + "longitude": "10.51580000" + }, + { + "id": "136454", + "name": "Cadelbosco di Sopra", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76573000", + "longitude": "10.59898000" + }, + { + "id": "136455", + "name": "Cadelbosco di Sotto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80141000", + "longitude": "10.61578000" + }, + { + "id": "136499", + "name": "Calcara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54696000", + "longitude": "11.13366000" + }, + { + "id": "136513", + "name": "Calderara di Reno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56307000", + "longitude": "11.27111000" + }, + { + "id": "136514", + "name": "Calderino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45774000", + "longitude": "11.19927000" + }, + { + "id": "136521", + "name": "Calendasco", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08659000", + "longitude": "9.59647000" + }, + { + "id": "136524", + "name": "Calerno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74875000", + "longitude": "10.48603000" + }, + { + "id": "136525", + "name": "Calestano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60224000", + "longitude": "10.12363000" + }, + { + "id": "136588", + "name": "Caminata", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91036000", + "longitude": "9.30816000" + }, + { + "id": "136605", + "name": "Campagnola Emilia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83925000", + "longitude": "10.76507000" + }, + { + "id": "136611", + "name": "Campegine", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78085000", + "longitude": "10.52836000" + }, + { + "id": "136657", + "name": "Campogalliano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68874000", + "longitude": "10.84705000" + }, + { + "id": "136681", + "name": "Camposanto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79009000", + "longitude": "11.14049000" + }, + { + "id": "136685", + "name": "Camugnano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17110000", + "longitude": "11.08828000" + }, + { + "id": "136755", + "name": "Caorso", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04911000", + "longitude": "9.87457000" + }, + { + "id": "136803", + "name": "Caprara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77521000", + "longitude": "10.51158000" + }, + { + "id": "136906", + "name": "Carpaneto Piacentino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91355000", + "longitude": "9.78703000" + }, + { + "id": "136913", + "name": "Carpi Centro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78237000", + "longitude": "10.87770000" + }, + { + "id": "136917", + "name": "Carpineti", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45574000", + "longitude": "10.51780000" + }, + { + "id": "136973", + "name": "Casale", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91665000", + "longitude": "10.43169000" + }, + { + "id": "136981", + "name": "Casalecchio di Reno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47563000", + "longitude": "11.27495000" + }, + { + "id": "136990", + "name": "Casalfiumanese", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29686000", + "longitude": "11.62402000" + }, + { + "id": "136991", + "name": "Casalgrande", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58466000", + "longitude": "10.73550000" + }, + { + "id": "137070", + "name": "Casina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50982000", + "longitude": "10.49951000" + }, + { + "id": "137078", + "name": "Casola Valsenio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22443000", + "longitude": "11.62487000" + }, + { + "id": "137131", + "name": "Castel Bolognese", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31981000", + "longitude": "11.79903000" + }, + { + "id": "137162", + "name": "Castel d'Aiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27751000", + "longitude": "11.00097000" + }, + { + "id": "137167", + "name": "Castel del Rio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.21346000", + "longitude": "11.50409000" + }, + { + "id": "137168", + "name": "Castel di Casio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.16276000", + "longitude": "11.03505000" + }, + { + "id": "137142", + "name": "Castel Guelfo di Bologna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43166000", + "longitude": "11.67591000" + }, + { + "id": "137144", + "name": "Castel Maggiore", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57707000", + "longitude": "11.36071000" + }, + { + "id": "137151", + "name": "Castel San Giovanni", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06014000", + "longitude": "9.43784000" + }, + { + "id": "137155", + "name": "Castel San Pietro Terme", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39854000", + "longitude": "11.58546000" + }, + { + "id": "137189", + "name": "Casteldelci", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79116000", + "longitude": "12.15514000" + }, + { + "id": "137197", + "name": "Castelfranco Emilia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59445000", + "longitude": "11.04979000" + }, + { + "id": "137207", + "name": "Castell'Arquato", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85451000", + "longitude": "9.87326000" + }, + { + "id": "137222", + "name": "Castellarano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51825000", + "longitude": "10.73727000" + }, + { + "id": "137229", + "name": "Castelletto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44015000", + "longitude": "11.06478000" + }, + { + "id": "137256", + "name": "Castello d'Argile", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67797000", + "longitude": "11.29715000" + }, + { + "id": "137279", + "name": "Castelnovo di Sotto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81253000", + "longitude": "10.56694000" + }, + { + "id": "137280", + "name": "Castelnovo ne'Monti", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43556000", + "longitude": "10.40329000" + }, + { + "id": "137293", + "name": "Castelnuovo Rangone", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54935000", + "longitude": "10.93350000" + }, + { + "id": "137331", + "name": "Castelvetro di Modena", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50422000", + "longitude": "10.94666000" + }, + { + "id": "137330", + "name": "Castelvetro Piacentino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10223000", + "longitude": "9.99041000" + }, + { + "id": "137333", + "name": "Castenaso", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51398000", + "longitude": "11.46842000" + }, + { + "id": "137351", + "name": "Castiglione dei Pepoli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14280000", + "longitude": "11.16028000" + }, + { + "id": "137378", + "name": "Castrocaro Terme e Terra del Sole", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.18676000", + "longitude": "11.96068000" + }, + { + "id": "137396", + "name": "Cattolica", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96182000", + "longitude": "12.73631000" + }, + { + "id": "137429", + "name": "Cavazzona", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57326000", + "longitude": "11.11903000" + }, + { + "id": "137436", + "name": "Cavezzo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83500000", + "longitude": "11.02890000" + }, + { + "id": "137442", + "name": "Cavriago", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69457000", + "longitude": "10.52591000" + }, + { + "id": "138222", + "name": "Cà Dè Fabbri", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61962000", + "longitude": "11.45503000" + }, + { + "id": "137497", + "name": "Cento", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73099000", + "longitude": "11.28716000" + }, + { + "id": "137518", + "name": "Cerasolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.98805000", + "longitude": "12.52988000" + }, + { + "id": "137549", + "name": "Cerignale", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67785000", + "longitude": "9.35077000" + }, + { + "id": "137591", + "name": "Cervia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.26204000", + "longitude": "12.34812000" + }, + { + "id": "137611", + "name": "Cesena", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.13910000", + "longitude": "12.24315000" + }, + { + "id": "137612", + "name": "Cesenatico", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.19987000", + "longitude": "12.39910000" + }, + { + "id": "137704", + "name": "Ciano d'Enza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59982000", + "longitude": "10.41040000" + }, + { + "id": "137803", + "name": "Civitella di Romagna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00785000", + "longitude": "11.94398000" + }, + { + "id": "137806", + "name": "Classe", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37955000", + "longitude": "12.23654000" + }, + { + "id": "137823", + "name": "Coccanile-Cesta", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91667000", + "longitude": "11.86667000" + }, + { + "id": "137828", + "name": "Codemondo-Quaresimo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69082000", + "longitude": "10.55098000" + }, + { + "id": "137831", + "name": "Codigoro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83093000", + "longitude": "12.11073000" + }, + { + "id": "137832", + "name": "Codisotto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98278000", + "longitude": "10.72750000" + }, + { + "id": "137851", + "name": "Coli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74582000", + "longitude": "9.41468000" + }, + { + "id": "137854", + "name": "Collagna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34694000", + "longitude": "10.27350000" + }, + { + "id": "137875", + "name": "Collecchio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75197000", + "longitude": "10.21540000" + }, + { + "id": "137918", + "name": "Colombaro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55153000", + "longitude": "10.89628000" + }, + { + "id": "137926", + "name": "Colorno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92572000", + "longitude": "10.37361000" + }, + { + "id": "137934", + "name": "Comacchio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69478000", + "longitude": "12.18194000" + }, + { + "id": "137948", + "name": "Compiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49605000", + "longitude": "9.66207000" + }, + { + "id": "137952", + "name": "Cona", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80583000", + "longitude": "11.70690000" + }, + { + "id": "137960", + "name": "Concordia sulla Secchia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91258000", + "longitude": "10.98802000" + }, + { + "id": "137971", + "name": "Consandolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.65606000", + "longitude": "11.77524000" + }, + { + "id": "137974", + "name": "Conselice", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51163000", + "longitude": "11.82848000" + }, + { + "id": "137988", + "name": "Copparo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89263000", + "longitude": "11.82287000" + }, + { + "id": "137997", + "name": "Corcagnano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72103000", + "longitude": "10.30271000" + }, + { + "id": "138011", + "name": "Coriano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96907000", + "longitude": "12.60055000" + }, + { + "id": "138032", + "name": "Corniglio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47425000", + "longitude": "10.09009000" + }, + { + "id": "138037", + "name": "Corpo Reno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75591000", + "longitude": "11.30794000" + }, + { + "id": "138038", + "name": "Corpolò", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.01905000", + "longitude": "12.45266000" + }, + { + "id": "138039", + "name": "Correggio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76737000", + "longitude": "10.78345000" + }, + { + "id": "138060", + "name": "Cortemaggiore", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99185000", + "longitude": "9.92844000" + }, + { + "id": "138111", + "name": "Cotignola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38572000", + "longitude": "11.93852000" + }, + { + "id": "138144", + "name": "Crespellano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51196000", + "longitude": "11.13224000" + }, + { + "id": "138152", + "name": "Crevalcore", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71966000", + "longitude": "11.14765000" + }, + { + "id": "138213", + "name": "Cusercoli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04514000", + "longitude": "12.00740000" + }, + { + "id": "138235", + "name": "Decima", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71045000", + "longitude": "11.22978000" + }, + { + "id": "138275", + "name": "Dodici Morelli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79234000", + "longitude": "11.29124000" + }, + { + "id": "138316", + "name": "Dosso", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76806000", + "longitude": "11.33938000" + }, + { + "id": "138322", + "name": "Dovadola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.12211000", + "longitude": "11.88707000" + }, + { + "id": "138324", + "name": "Dozza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36195000", + "longitude": "11.63547000" + }, + { + "id": "138392", + "name": "Fabbrico", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87214000", + "longitude": "10.80893000" + }, + { + "id": "138403", + "name": "Faenza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29007000", + "longitude": "11.87948000" + }, + { + "id": "138429", + "name": "Fanano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.21245000", + "longitude": "10.79660000" + }, + { + "id": "138448", + "name": "Farini", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71266000", + "longitude": "9.56887000" + }, + { + "id": "138466", + "name": "Felegara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72187000", + "longitude": "10.11273000" + }, + { + "id": "138468", + "name": "Felina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45478000", + "longitude": "10.46067000" + }, + { + "id": "138469", + "name": "Felino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69902000", + "longitude": "10.23828000" + }, + { + "id": "138472", + "name": "Fellegara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61052000", + "longitude": "10.69700000" + }, + { + "id": "138489", + "name": "Ferrara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83804000", + "longitude": "11.62057000" + }, + { + "id": "138496", + "name": "Ferriere", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64385000", + "longitude": "9.49657000" + }, + { + "id": "138507", + "name": "Fidenza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86694000", + "longitude": "10.06039000" + }, + { + "id": "138535", + "name": "Finale Emilia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83373000", + "longitude": "11.29378000" + }, + { + "id": "138539", + "name": "Fiorano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53889000", + "longitude": "10.81166000" + }, + { + "id": "138542", + "name": "Fiorenzuola d'Arda", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92435000", + "longitude": "9.91329000" + }, + { + "id": "138547", + "name": "Fiumalbo-Dogana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17925000", + "longitude": "10.64720000" + }, + { + "id": "138548", + "name": "Fiumana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14325000", + "longitude": "11.98719000" + }, + { + "id": "138575", + "name": "Fogliano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64751000", + "longitude": "10.64505000" + }, + { + "id": "138577", + "name": "Fognano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20509000", + "longitude": "11.73782000" + }, + { + "id": "138597", + "name": "Fontanelice", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.25932000", + "longitude": "11.55852000" + }, + { + "id": "138600", + "name": "Fontanellato", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88187000", + "longitude": "10.17631000" + }, + { + "id": "138613", + "name": "Fontevivo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85942000", + "longitude": "10.17281000" + }, + { + "id": "138619", + "name": "Forche", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63646000", + "longitude": "10.57316000" + }, + { + "id": "138632", + "name": "Forlì", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22177000", + "longitude": "12.04144000" + }, + { + "id": "138631", + "name": "Forlimpopoli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.19107000", + "longitude": "12.12873000" + }, + { + "id": "138637", + "name": "Formica", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46838000", + "longitude": "11.01337000" + }, + { + "id": "138640", + "name": "Formigine", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57268000", + "longitude": "10.84737000" + }, + { + "id": "138642", + "name": "Formignana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84230000", + "longitude": "11.85935000" + }, + { + "id": "138644", + "name": "Fornace Zarattini", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41667000", + "longitude": "12.13333000" + }, + { + "id": "138660", + "name": "Fornovo di Taro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69465000", + "longitude": "10.10178000" + }, + { + "id": "138668", + "name": "Fossa", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92304000", + "longitude": "11.02356000" + }, + { + "id": "138679", + "name": "Fosso Ghiaia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35525000", + "longitude": "12.25430000" + }, + { + "id": "138680", + "name": "Fossoli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82160000", + "longitude": "10.88977000" + }, + { + "id": "138704", + "name": "Francolino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89662000", + "longitude": "11.65701000" + }, + { + "id": "138716", + "name": "Frassinoro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29451000", + "longitude": "10.57117000" + }, + { + "id": "138720", + "name": "Fratta Terme", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14157000", + "longitude": "12.10213000" + }, + { + "id": "138761", + "name": "Fusignano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46656000", + "longitude": "11.95636000" + }, + { + "id": "138778", + "name": "Gaggio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63458000", + "longitude": "11.01334000" + }, + { + "id": "138779", + "name": "Gaggio Montano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.19583000", + "longitude": "10.93518000" + }, + { + "id": "138786", + "name": "Gaiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72391000", + "longitude": "10.17267000" + }, + { + "id": "138789", + "name": "Gaibanella-Sant'Edigio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76667000", + "longitude": "11.65000000" + }, + { + "id": "138799", + "name": "Galeata", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99607000", + "longitude": "11.91057000" + }, + { + "id": "138814", + "name": "Gallo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73144000", + "longitude": "11.55284000" + }, + { + "id": "138833", + "name": "Gambettola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11748000", + "longitude": "12.33705000" + }, + { + "id": "138866", + "name": "Gatteo a Mare", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17069000", + "longitude": "12.43549000" + }, + { + "id": "138867", + "name": "Gatteo-Sant'Angelo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11194000", + "longitude": "12.39139000" + }, + { + "id": "138886", + "name": "Gazzola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96006000", + "longitude": "9.54896000" + }, + { + "id": "138892", + "name": "Gemmano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90393000", + "longitude": "12.58091000" + }, + { + "id": "139006", + "name": "Glorie", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46994000", + "longitude": "12.07707000" + }, + { + "id": "139009", + "name": "Godo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39173000", + "longitude": "12.07495000" + }, + { + "id": "139039", + "name": "Goro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85150000", + "longitude": "12.29651000" + }, + { + "id": "139041", + "name": "Gorzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51626000", + "longitude": "10.87983000" + }, + { + "id": "139044", + "name": "Gossolengo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00248000", + "longitude": "9.61799000" + }, + { + "id": "139057", + "name": "Gragnano Trebbiense", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01225000", + "longitude": "9.57139000" + }, + { + "id": "139060", + "name": "Granarolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35859000", + "longitude": "11.93459000" + }, + { + "id": "139061", + "name": "Granarolo dell'Emilia e Viadagola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55327000", + "longitude": "11.44291000" + }, + { + "id": "139105", + "name": "Grizzana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.25806000", + "longitude": "11.15557000" + }, + { + "id": "139106", + "name": "Grizzana Morandi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.25820000", + "longitude": "11.15288000" + }, + { + "id": "139114", + "name": "Gropparello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83354000", + "longitude": "9.72801000" + }, + { + "id": "139148", + "name": "Gualtieri", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89736000", + "longitude": "10.62860000" + }, + { + "id": "139169", + "name": "Guastalla", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91172000", + "longitude": "10.66186000" + }, + { + "id": "139180", + "name": "Guiglia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42432000", + "longitude": "10.96125000" + }, + { + "id": "139199", + "name": "Imola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35916000", + "longitude": "11.71320000" + }, + { + "id": "139279", + "name": "Jolanda di Savoia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88319000", + "longitude": "11.97910000" + }, + { + "id": "139302", + "name": "La Saletta-Tamara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88151000", + "longitude": "11.77236000" + }, + { + "id": "139328", + "name": "Lagosanto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76282000", + "longitude": "12.14005000" + }, + { + "id": "139339", + "name": "Lama", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30726000", + "longitude": "10.73060000" + }, + { + "id": "139358", + "name": "Langhirano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61913000", + "longitude": "10.26652000" + }, + { + "id": "139414", + "name": "Lavezzola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56099000", + "longitude": "11.87557000" + }, + { + "id": "139453", + "name": "Lentigione-Sorbolo a Mane", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86667000", + "longitude": "10.48333000" + }, + { + "id": "139468", + "name": "Lesignano de'Bagni", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64346000", + "longitude": "10.30039000" + }, + { + "id": "139502", + "name": "Lido Adriano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41673000", + "longitude": "12.30552000" + }, + { + "id": "139503", + "name": "Lido degli Estensi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66639000", + "longitude": "12.25000000" + }, + { + "id": "139508", + "name": "Lido di Pomposa-Lido degli Scacchi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70667000", + "longitude": "12.23611000" + }, + { + "id": "139512", + "name": "Ligonchio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31635000", + "longitude": "10.34224000" + }, + { + "id": "139520", + "name": "Limidi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76427000", + "longitude": "10.92002000" + }, + { + "id": "139556", + "name": "Lizzano in Belvedere", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.16135000", + "longitude": "10.89408000" + }, + { + "id": "139576", + "name": "Loiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.26806000", + "longitude": "11.32841000" + }, + { + "id": "139589", + "name": "Longara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57110000", + "longitude": "11.30386000" + }, + { + "id": "139592", + "name": "Longastrino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58848000", + "longitude": "12.00982000" + }, + { + "id": "139596", + "name": "Longiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07446000", + "longitude": "12.32970000" + }, + { + "id": "139644", + "name": "Lugagnano Val d'Arda", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82304000", + "longitude": "9.82828000" + }, + { + "id": "139648", + "name": "Lugo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42137000", + "longitude": "11.91094000" + }, + { + "id": "139684", + "name": "Luzzara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95925000", + "longitude": "10.68953000" + }, + { + "id": "139709", + "name": "Madonna Dell'Albero", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38115000", + "longitude": "12.20044000" + }, + { + "id": "139742", + "name": "Magreta", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60000000", + "longitude": "10.80000000" + }, + { + "id": "139755", + "name": "Malalbergo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71867000", + "longitude": "11.53221000" + }, + { + "id": "139814", + "name": "Manzolino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59577000", + "longitude": "11.09982000" + }, + { + "id": "139819", + "name": "Maranello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53101000", + "longitude": "10.86888000" + }, + { + "id": "139829", + "name": "Marano sul Panaro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45924000", + "longitude": "10.96879000" + }, + { + "id": "139894", + "name": "Marina di Ravenna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48625000", + "longitude": "12.28087000" + }, + { + "id": "139873", + "name": "Marina Romea", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51494000", + "longitude": "12.27113000" + }, + { + "id": "139917", + "name": "Marsaglia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71228000", + "longitude": "9.38353000" + }, + { + "id": "139943", + "name": "Marzabotto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34297000", + "longitude": "11.20593000" + }, + { + "id": "139961", + "name": "Masi-Torello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79458000", + "longitude": "11.80182000" + }, + { + "id": "139969", + "name": "Massa Finalese", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85240000", + "longitude": "11.21429000" + }, + { + "id": "139970", + "name": "Massa Fiscaglia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80983000", + "longitude": "12.00746000" + }, + { + "id": "139971", + "name": "Massa Lombarda", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44703000", + "longitude": "11.82095000" + }, + { + "id": "139983", + "name": "Massenzatico", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73477000", + "longitude": "10.69736000" + }, + { + "id": "140019", + "name": "Medesano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75824000", + "longitude": "10.13794000" + }, + { + "id": "140020", + "name": "Medicina-Buda", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47867000", + "longitude": "11.63812000" + }, + { + "id": "140025", + "name": "Medolla", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84667000", + "longitude": "11.06760000" + }, + { + "id": "140037", + "name": "Meldola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.12775000", + "longitude": "12.06260000" + }, + { + "id": "140078", + "name": "Mercato Saraceno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96274000", + "longitude": "12.19638000" + }, + { + "id": "140095", + "name": "Mesola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91831000", + "longitude": "12.23121000" + }, + { + "id": "140112", + "name": "Mezzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46625000", + "longitude": "12.08632000" + }, + { + "id": "140114", + "name": "Mezzano Inferiore", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91291000", + "longitude": "10.45838000" + }, + { + "id": "140119", + "name": "Mezzogoro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90256000", + "longitude": "12.09925000" + }, + { + "id": "140121", + "name": "Mezzolara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58917000", + "longitude": "11.56492000" + }, + { + "id": "140133", + "name": "Migliarina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81042000", + "longitude": "10.83600000" + }, + { + "id": "140135", + "name": "Migliarino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76993000", + "longitude": "11.93304000" + }, + { + "id": "140136", + "name": "Migliaro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79916000", + "longitude": "11.97440000" + }, + { + "id": "140144", + "name": "Milano Marittima", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27409000", + "longitude": "12.35172000" + }, + { + "id": "140158", + "name": "Minerbio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61811000", + "longitude": "11.47257000" + }, + { + "id": "140169", + "name": "Mirabello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82295000", + "longitude": "11.45669000" + }, + { + "id": "140174", + "name": "Mirandola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88515000", + "longitude": "11.06902000" + }, + { + "id": "140178", + "name": "Misano Adriatico", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.97714000", + "longitude": "12.69805000" + }, + { + "id": "140188", + "name": "Modena", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64783000", + "longitude": "10.92539000" + }, + { + "id": "140190", + "name": "Modigliana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.15954000", + "longitude": "11.79286000" + }, + { + "id": "140217", + "name": "Molinella", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61758000", + "longitude": "11.66719000" + }, + { + "id": "140223", + "name": "Molino del Pallone", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.10028000", + "longitude": "10.96135000" + }, + { + "id": "140267", + "name": "Monchio delle Corti", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41172000", + "longitude": "10.12370000" + }, + { + "id": "140272", + "name": "Mondaino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85796000", + "longitude": "12.66845000" + }, + { + "id": "140284", + "name": "Monghidoro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22327000", + "longitude": "11.32331000" + }, + { + "id": "140316", + "name": "Montalbano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.95879000", + "longitude": "12.71646000" + }, + { + "id": "140327", + "name": "Montale", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56923000", + "longitude": "10.90771000" + }, + { + "id": "140356", + "name": "Monte Colombo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92016000", + "longitude": "12.55235000" + }, + { + "id": "140370", + "name": "Monte San Giovanni", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42014000", + "longitude": "11.17170000" + }, + { + "id": "140407", + "name": "Montecavolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63275000", + "longitude": "10.54264000" + }, + { + "id": "140410", + "name": "Montecchio Emilia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69937000", + "longitude": "10.45211000" + }, + { + "id": "140416", + "name": "Montechiarugolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69261000", + "longitude": "10.42128000" + }, + { + "id": "140425", + "name": "Montecreto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24596000", + "longitude": "10.71760000" + }, + { + "id": "140439", + "name": "Montefiore Conca", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88916000", + "longitude": "12.61145000" + }, + { + "id": "140441", + "name": "Montefiorino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35382000", + "longitude": "10.62375000" + }, + { + "id": "140457", + "name": "Montegridolfo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85826000", + "longitude": "12.68995000" + }, + { + "id": "140516", + "name": "Monterenzio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32632000", + "longitude": "11.40446000" + }, + { + "id": "140538", + "name": "Montescudo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.91753000", + "longitude": "12.54083000" + }, + { + "id": "140539", + "name": "Montese", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.26993000", + "longitude": "10.94545000" + }, + { + "id": "140556", + "name": "Montiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.08232000", + "longitude": "12.30455000" + }, + { + "id": "140562", + "name": "Monticelli d'Ongina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08851000", + "longitude": "9.93424000" + }, + { + "id": "140561", + "name": "Monticelli Terme", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72881000", + "longitude": "10.39444000" + }, + { + "id": "140596", + "name": "Monzuno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27825000", + "longitude": "11.26684000" + }, + { + "id": "140605", + "name": "Morciano di Romagna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.91440000", + "longitude": "12.65104000" + }, + { + "id": "140607", + "name": "Mordano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39696000", + "longitude": "11.80763000" + }, + { + "id": "140612", + "name": "Morfasso", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72270000", + "longitude": "9.70221000" + }, + { + "id": "140683", + "name": "Mulino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49257000", + "longitude": "11.04667000" + }, + { + "id": "140755", + "name": "Neviano degli Arduini", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58344000", + "longitude": "10.31638000" + }, + { + "id": "140758", + "name": "Nibbiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90506000", + "longitude": "9.32826000" + }, + { + "id": "140773", + "name": "Niviano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94027000", + "longitude": "9.62878000" + }, + { + "id": "140787", + "name": "Noceto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80953000", + "longitude": "10.17730000" + }, + { + "id": "140802", + "name": "Nonantola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67785000", + "longitude": "11.03785000" + }, + { + "id": "140818", + "name": "Novafeltria", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.89486000", + "longitude": "12.28894000" + }, + { + "id": "140829", + "name": "Novellara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84488000", + "longitude": "10.72745000" + }, + { + "id": "140837", + "name": "Novi di Modena", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88974000", + "longitude": "10.90027000" + }, + { + "id": "141017", + "name": "Ospedaletto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.98380000", + "longitude": "12.57056000" + }, + { + "id": "141031", + "name": "Ostellato", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74556000", + "longitude": "11.94276000" + }, + { + "id": "141035", + "name": "Osteria Grande", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42845000", + "longitude": "11.52180000" + }, + { + "id": "141037", + "name": "Osteria Nuova", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58457000", + "longitude": "11.23739000" + }, + { + "id": "141053", + "name": "Ottone", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62325000", + "longitude": "9.33267000" + }, + { + "id": "141065", + "name": "Ozzano dell'Emilia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44427000", + "longitude": "11.47552000" + }, + { + "id": "141064", + "name": "Ozzano Taro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70969000", + "longitude": "10.14086000" + }, + { + "id": "141091", + "name": "Padulle", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62945000", + "longitude": "11.27738000" + }, + { + "id": "58218", + "name": "Palagano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32152000", + "longitude": "10.64660000" + }, + { + "id": "58223", + "name": "Palanzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43629000", + "longitude": "10.19400000" + }, + { + "id": "58279", + "name": "Panighina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17162000", + "longitude": "12.16324000" + }, + { + "id": "58307", + "name": "Parma", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79935000", + "longitude": "10.32618000" + }, + { + "id": "58365", + "name": "Pavullo nel Frignano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33352000", + "longitude": "10.83544000" + }, + { + "id": "58371", + "name": "Pecorara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87582000", + "longitude": "9.38387000" + }, + { + "id": "58393", + "name": "Pellegrino Parmense", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72950000", + "longitude": "9.93240000" + }, + { + "id": "58405", + "name": "Pennabilli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81746000", + "longitude": "12.26708000" + }, + { + "id": "58502", + "name": "Piacenza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05242000", + "longitude": "9.69342000" + }, + { + "id": "58525", + "name": "Pianello Val Tidone", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94666000", + "longitude": "9.40516000" + }, + { + "id": "58533", + "name": "Piangipane", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42198000", + "longitude": "12.09066000" + }, + { + "id": "58550", + "name": "Pianoro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38893000", + "longitude": "11.34262000" + }, + { + "id": "58610", + "name": "Pietracuta", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.95400000", + "longitude": "12.37138000" + }, + { + "id": "58650", + "name": "Pieve di Cento", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71293000", + "longitude": "11.30922000" + }, + { + "id": "58658", + "name": "Pievepelago", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20475000", + "longitude": "10.61660000" + }, + { + "id": "58668", + "name": "Pilastro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68254000", + "longitude": "10.28879000" + }, + { + "id": "58671", + "name": "Pinarella", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24167000", + "longitude": "12.37111000" + }, + { + "id": "58699", + "name": "Piozzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92533000", + "longitude": "9.49559000" + }, + { + "id": "58710", + "name": "Pisignano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.23787000", + "longitude": "12.26841000" + }, + { + "id": "58720", + "name": "Piumazzo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54631000", + "longitude": "11.06727000" + }, + { + "id": "58724", + "name": "Pizzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35500000", + "longitude": "11.41499000" + }, + { + "id": "58745", + "name": "Podenzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95484000", + "longitude": "9.68315000" + }, + { + "id": "58751", + "name": "Poggio Berni", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.02639000", + "longitude": "12.40944000" + }, + { + "id": "58760", + "name": "Poggio Renatico", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76581000", + "longitude": "11.48695000" + }, + { + "id": "58785", + "name": "Polesine Parmense", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01682000", + "longitude": "10.09015000" + }, + { + "id": "58791", + "name": "Polinago", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34502000", + "longitude": "10.72597000" + }, + { + "id": "58852", + "name": "Ponte dell'Olio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86762000", + "longitude": "9.64433000" + }, + { + "id": "58853", + "name": "Ponte della Venturina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.13042000", + "longitude": "10.99113000" + }, + { + "id": "58846", + "name": "Ponte Ronca", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50166000", + "longitude": "11.18973000" + }, + { + "id": "58850", + "name": "Ponte Taro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82872000", + "longitude": "10.21037000" + }, + { + "id": "58870", + "name": "Pontegradella", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83813000", + "longitude": "11.66280000" + }, + { + "id": "58872", + "name": "Pontelangorino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86087000", + "longitude": "12.14864000" + }, + { + "id": "58875", + "name": "Pontenure", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99821000", + "longitude": "9.79139000" + }, + { + "id": "58884", + "name": "Ponticella", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45446000", + "longitude": "11.37851000" + }, + { + "id": "58909", + "name": "Porotto-Cassama", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85000000", + "longitude": "11.55000000" + }, + { + "id": "58911", + "name": "Porporano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75266000", + "longitude": "10.35054000" + }, + { + "id": "58912", + "name": "Porretta Terme", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.16325000", + "longitude": "10.97432000" + }, + { + "id": "58919", + "name": "Portico di Romagna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.02657000", + "longitude": "11.78133000" + }, + { + "id": "58920", + "name": "Portico e San Benedetto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.02646000", + "longitude": "11.78153000" + }, + { + "id": "58927", + "name": "Porto Corsini", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49410000", + "longitude": "12.27875000" + }, + { + "id": "58930", + "name": "Porto Fuori", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40557000", + "longitude": "12.25218000" + }, + { + "id": "58931", + "name": "Porto Garibaldi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68123000", + "longitude": "12.23678000" + }, + { + "id": "58947", + "name": "Portomaggiore", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69763000", + "longitude": "11.80760000" + }, + { + "id": "58970", + "name": "Poviglio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84227000", + "longitude": "10.53936000" + }, + { + "id": "58973", + "name": "Pozza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52641000", + "longitude": "10.89234000" + }, + { + "id": "59022", + "name": "Praticello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80436000", + "longitude": "10.47310000" + }, + { + "id": "59024", + "name": "Pratissolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60416000", + "longitude": "10.67400000" + }, + { + "id": "59027", + "name": "Prato", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71589000", + "longitude": "10.74797000" + }, + { + "id": "59043", + "name": "Predappio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.10316000", + "longitude": "11.98413000" + }, + { + "id": "59057", + "name": "Premilcuore", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.98084000", + "longitude": "11.78193000" + }, + { + "id": "59075", + "name": "Prignano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43790000", + "longitude": "10.69118000" + }, + { + "id": "59077", + "name": "Prignano sulla Secchia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43836000", + "longitude": "10.69190000" + }, + { + "id": "59090", + "name": "Progresso", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56892000", + "longitude": "11.36420000" + }, + { + "id": "59130", + "name": "Provincia di Ferrara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80000000", + "longitude": "11.83333000" + }, + { + "id": "59132", + "name": "Provincia di Forlì-Cesena", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.08333000", + "longitude": "12.03333000" + }, + { + "id": "59150", + "name": "Provincia di Modena", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50000000", + "longitude": "10.90000000" + }, + { + "id": "59156", + "name": "Provincia di Parma", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70000000", + "longitude": "10.08333000" + }, + { + "id": "59161", + "name": "Provincia di Piacenza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88333000", + "longitude": "9.58333000" + }, + { + "id": "59166", + "name": "Provincia di Ravenna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41667000", + "longitude": "11.98333000" + }, + { + "id": "59168", + "name": "Provincia di Reggio Emilia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61667000", + "longitude": "10.61667000" + }, + { + "id": "59170", + "name": "Provincia di Rimini", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.02405000", + "longitude": "12.51858000" + }, + { + "id": "59199", + "name": "Puianello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62630000", + "longitude": "10.56420000" + }, + { + "id": "59201", + "name": "Pulce", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44909000", + "longitude": "11.41153000" + }, + { + "id": "59205", + "name": "Punta Marina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44272000", + "longitude": "12.29089000" + }, + { + "id": "59217", + "name": "Quarantoli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91954000", + "longitude": "11.10324000" + }, + { + "id": "59226", + "name": "Quartesana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80490000", + "longitude": "11.73873000" + }, + { + "id": "59229", + "name": "Quarto Inferiore", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53090000", + "longitude": "11.41679000" + }, + { + "id": "59236", + "name": "Quattro Castella", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63496000", + "longitude": "10.47429000" + }, + { + "id": "59273", + "name": "Ramiola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70055000", + "longitude": "10.09110000" + }, + { + "id": "59274", + "name": "Ramiseto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41284000", + "longitude": "10.27689000" + }, + { + "id": "59291", + "name": "Rastignano-Carteria di Sesto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43623000", + "longitude": "11.35695000" + }, + { + "id": "59296", + "name": "Ravarino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72475000", + "longitude": "11.09588000" + }, + { + "id": "59299", + "name": "Ravenna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41344000", + "longitude": "12.20121000" + }, + { + "id": "59321", + "name": "Reggio nell'Emilia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69825000", + "longitude": "10.63125000" + }, + { + "id": "59322", + "name": "Reggiolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91824000", + "longitude": "10.81016000" + }, + { + "id": "59331", + "name": "Renazzo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76527000", + "longitude": "11.28605000" + }, + { + "id": "59355", + "name": "Riale", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48333000", + "longitude": "11.23333000" + }, + { + "id": "59367", + "name": "Riccò", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70050000", + "longitude": "10.12095000" + }, + { + "id": "59366", + "name": "Riccione", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99942000", + "longitude": "12.65689000" + }, + { + "id": "59385", + "name": "Rimini", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.05755000", + "longitude": "12.56528000" + }, + { + "id": "59387", + "name": "Rio Saliceto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81147000", + "longitude": "10.80414000" + }, + { + "id": "59393", + "name": "Riolo Terme", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27609000", + "longitude": "11.72722000" + }, + { + "id": "59394", + "name": "Riolunato", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.23102000", + "longitude": "10.65310000" + }, + { + "id": "59433", + "name": "Rivazzurra", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04186000", + "longitude": "12.60894000" + }, + { + "id": "59437", + "name": "Rivergaro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91500000", + "longitude": "9.60443000" + }, + { + "id": "59446", + "name": "Ro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94695000", + "longitude": "11.76006000" + }, + { + "id": "59476", + "name": "Rocca San Casciano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.05871000", + "longitude": "11.84274000" + }, + { + "id": "59492", + "name": "Roccabianca", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00772000", + "longitude": "10.21824000" + }, + { + "id": "59569", + "name": "Rolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88482000", + "longitude": "10.85961000" + }, + { + "id": "59607", + "name": "Roncocesi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73843000", + "longitude": "10.57816000" + }, + { + "id": "59609", + "name": "Roncofreddo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04222000", + "longitude": "12.30083000" + }, + { + "id": "59610", + "name": "Roncofreddo-Santa Paola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04251000", + "longitude": "12.31523000" + }, + { + "id": "59656", + "name": "Roteglia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48417000", + "longitude": "10.68832000" + }, + { + "id": "59664", + "name": "Rottofreno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05527000", + "longitude": "9.55007000" + }, + { + "id": "59671", + "name": "Roveleto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96332000", + "longitude": "9.85390000" + }, + { + "id": "59678", + "name": "Rovereto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83381000", + "longitude": "10.95157000" + }, + { + "id": "59692", + "name": "Rubiera", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.65158000", + "longitude": "10.77940000" + }, + { + "id": "59704", + "name": "Russi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37645000", + "longitude": "12.03335000" + }, + { + "id": "59737", + "name": "Sala", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.15638000", + "longitude": "12.38340000" + }, + { + "id": "59739", + "name": "Sala Baganza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71563000", + "longitude": "10.22622000" + }, + { + "id": "59741", + "name": "Sala Bolognese", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61387000", + "longitude": "11.25669000" + }, + { + "id": "59780", + "name": "Salsomaggiore Terme", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81592000", + "longitude": "9.98637000" + }, + { + "id": "59783", + "name": "Saludecio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.87540000", + "longitude": "12.66118000" + }, + { + "id": "59787", + "name": "Salvaterra", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59925000", + "longitude": "10.76860000" + }, + { + "id": "59797", + "name": "Sam Marino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80738000", + "longitude": "10.91438000" + }, + { + "id": "59818", + "name": "San Bartolomeo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67402000", + "longitude": "10.53941000" + }, + { + "id": "59819", + "name": "San Bartolomeo In Bosco", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73094000", + "longitude": "11.63573000" + }, + { + "id": "59830", + "name": "San Benedetto Val di Sambro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.21405000", + "longitude": "11.23567000" + }, + { + "id": "59837", + "name": "San Biagio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58695000", + "longitude": "11.86918000" + }, + { + "id": "59853", + "name": "San Carlo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80361000", + "longitude": "11.40999000" + }, + { + "id": "59865", + "name": "San Cesario sul Panaro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56352000", + "longitude": "11.03508000" + }, + { + "id": "59874", + "name": "San Clemente", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93269000", + "longitude": "12.62707000" + }, + { + "id": "59884", + "name": "San Damaso", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60102000", + "longitude": "10.97373000" + }, + { + "id": "59912", + "name": "San Felice sul Panaro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83671000", + "longitude": "11.13791000" + }, + { + "id": "59929", + "name": "San Gabriele-Mondonuovo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66667000", + "longitude": "11.58333000" + }, + { + "id": "59973", + "name": "San Giorgio di Piano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64724000", + "longitude": "11.37446000" + }, + { + "id": "59960", + "name": "San Giorgio Piacentino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95198000", + "longitude": "9.73773000" + }, + { + "id": "59999", + "name": "San Giovanni in Marignano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93989000", + "longitude": "12.71166000" + }, + { + "id": "60000", + "name": "San Giovanni in Persiceto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63838000", + "longitude": "11.18419000" + }, + { + "id": "60003", + "name": "San Giovanni-San Bernardino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79297000", + "longitude": "9.60871000" + }, + { + "id": "60009", + "name": "San Giuseppe", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72202000", + "longitude": "12.21712000" + }, + { + "id": "60027", + "name": "San Lazzaro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47050000", + "longitude": "11.40851000" + }, + { + "id": "60028", + "name": "San Leo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.89637000", + "longitude": "12.34460000" + }, + { + "id": "60068", + "name": "San Martino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77794000", + "longitude": "11.58751000" + }, + { + "id": "60082", + "name": "San Martino dei Mulini", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03182000", + "longitude": "12.46396000" + }, + { + "id": "60088", + "name": "San Martino in Argine", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58876000", + "longitude": "11.60650000" + }, + { + "id": "60094", + "name": "San Martino in Rio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73368000", + "longitude": "10.78490000" + }, + { + "id": "60111", + "name": "San Mauro a Mare", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.16367000", + "longitude": "12.44631000" + }, + { + "id": "60109", + "name": "San Mauro Pascoli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.10890000", + "longitude": "12.41953000" + }, + { + "id": "60122", + "name": "San Michele dei Mucchietti", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50847000", + "longitude": "10.74726000" + }, + { + "id": "60120", + "name": "San Michele Tiorre", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68530000", + "longitude": "10.26317000" + }, + { + "id": "60146", + "name": "San Nicolò", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05685000", + "longitude": "9.60540000" + }, + { + "id": "60150", + "name": "San Pancrazio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35810000", + "longitude": "12.07852000" + }, + { + "id": "60169", + "name": "San Piero in Bagno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85793000", + "longitude": "11.97716000" + }, + { + "id": "60176", + "name": "San Pietro Capofiume", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.65040000", + "longitude": "11.64802000" + }, + { + "id": "60197", + "name": "San Pietro in Casale", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70079000", + "longitude": "11.40492000" + }, + { + "id": "60198", + "name": "San Pietro in Cerro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02137000", + "longitude": "9.94987000" + }, + { + "id": "60178", + "name": "San Pietro In Vincoli", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30051000", + "longitude": "12.14556000" + }, + { + "id": "60204", + "name": "San Polo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97868000", + "longitude": "9.74070000" + }, + { + "id": "60205", + "name": "San Polo d'Enza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62690000", + "longitude": "10.42667000" + }, + { + "id": "60210", + "name": "San Possidonio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87402000", + "longitude": "10.98087000" + }, + { + "id": "60215", + "name": "San Prospero", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78967000", + "longitude": "11.02210000" + }, + { + "id": "60240", + "name": "San Secondo Parmense", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92218000", + "longitude": "10.23038000" + }, + { + "id": "60260", + "name": "San Venanzio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74517000", + "longitude": "11.43727000" + }, + { + "id": "60268", + "name": "San Vincenzo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73878000", + "longitude": "11.43668000" + }, + { + "id": "60274", + "name": "San Vito", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55822000", + "longitude": "10.97432000" + }, + { + "id": "60315", + "name": "Sant'Agata Bolognese", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66016000", + "longitude": "11.13292000" + }, + { + "id": "60316", + "name": "Sant'Agata Feltria", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86282000", + "longitude": "12.20690000" + }, + { + "id": "60326", + "name": "Sant'Agata sul Santerno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44351000", + "longitude": "11.86112000" + }, + { + "id": "60328", + "name": "Sant'Agostino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79218000", + "longitude": "11.38522000" + }, + { + "id": "60330", + "name": "Sant'Alberto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53822000", + "longitude": "12.16191000" + }, + { + "id": "60342", + "name": "Sant'Andrea", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03328000", + "longitude": "12.41893000" + }, + { + "id": "60349", + "name": "Sant'Andrea in Casale", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93333000", + "longitude": "12.65000000" + }, + { + "id": "60382", + "name": "Sant'Antonio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36586000", + "longitude": "10.83646000" + }, + { + "id": "60404", + "name": "Sant'Ilario d'Enza", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75890000", + "longitude": "10.44737000" + }, + { + "id": "60427", + "name": "Santa Croce Scuole", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76281000", + "longitude": "10.84944000" + }, + { + "id": "60441", + "name": "Santa Giustina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.06778000", + "longitude": "12.48500000" + }, + { + "id": "60460", + "name": "Santa Maria Codifiume", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66424000", + "longitude": "11.65099000" + }, + { + "id": "60468", + "name": "Santa Maria Nuova", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20000000", + "longitude": "12.19389000" + }, + { + "id": "60486", + "name": "Santa Monica-Cella", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.95765000", + "longitude": "12.68846000" + }, + { + "id": "60491", + "name": "Santa Sofia", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.94724000", + "longitude": "11.90867000" + }, + { + "id": "60499", + "name": "Santa Vittoria", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85483000", + "longitude": "10.63348000" + }, + { + "id": "60503", + "name": "Santarcangelo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.06326000", + "longitude": "12.44657000" + }, + { + "id": "60507", + "name": "Santerno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43697000", + "longitude": "12.05533000" + }, + { + "id": "60527", + "name": "Santo Stefano-Carraie", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31525000", + "longitude": "12.18573000" + }, + { + "id": "60549", + "name": "Sarmato", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05679000", + "longitude": "9.49683000" + }, + { + "id": "60558", + "name": "Sarsina", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.91981000", + "longitude": "12.14255000" + }, + { + "id": "60572", + "name": "Sasso Marconi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40064000", + "longitude": "11.25177000" + }, + { + "id": "60577", + "name": "Sassuolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54320000", + "longitude": "10.78480000" + }, + { + "id": "60584", + "name": "Savarna-Conventello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50717000", + "longitude": "12.10621000" + }, + { + "id": "60589", + "name": "Savignano sul Panaro", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48036000", + "longitude": "11.03510000" + }, + { + "id": "60590", + "name": "Savignano sul Rubicone", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.09009000", + "longitude": "12.39935000" + }, + { + "id": "60591", + "name": "Savigno", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39186000", + "longitude": "11.07481000" + }, + { + "id": "60593", + "name": "Savio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31139000", + "longitude": "12.29472000" + }, + { + "id": "60616", + "name": "Scandiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59830000", + "longitude": "10.69558000" + }, + { + "id": "60668", + "name": "Scortichino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88333000", + "longitude": "11.33333000" + }, + { + "id": "60675", + "name": "Secchiano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92399000", + "longitude": "12.31615000" + }, + { + "id": "60757", + "name": "Serra di Maiolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.87304000", + "longitude": "12.31129000" + }, + { + "id": "60763", + "name": "Serramazzoni", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42735000", + "longitude": "10.79055000" + }, + { + "id": "60771", + "name": "Serravalle", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96532000", + "longitude": "12.04664000" + }, + { + "id": "60798", + "name": "Sesto Imolese", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45952000", + "longitude": "11.72919000" + }, + { + "id": "60802", + "name": "Sestola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22994000", + "longitude": "10.77349000" + }, + { + "id": "60880", + "name": "Sissa", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95927000", + "longitude": "10.26058000" + }, + { + "id": "60897", + "name": "Sogliano al Rubicone", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00500000", + "longitude": "12.30122000" + }, + { + "id": "60902", + "name": "Solara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77163000", + "longitude": "11.09287000" + }, + { + "id": "60905", + "name": "Solarolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35892000", + "longitude": "11.84661000" + }, + { + "id": "60918", + "name": "Soliera", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73387000", + "longitude": "10.92177000" + }, + { + "id": "60919", + "name": "Solignano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61306000", + "longitude": "9.97548000" + }, + { + "id": "60920", + "name": "Solignano Nuovo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52746000", + "longitude": "10.92626000" + }, + { + "id": "60946", + "name": "Soragna", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92686000", + "longitude": "10.12013000" + }, + { + "id": "60948", + "name": "Sorbara", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74808000", + "longitude": "11.00731000" + }, + { + "id": "60951", + "name": "Sorbolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84587000", + "longitude": "10.44375000" + }, + { + "id": "61010", + "name": "Spilamberto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53273000", + "longitude": "11.01697000" + }, + { + "id": "61054", + "name": "Stazione Valmozzola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57879000", + "longitude": "9.94290000" + }, + { + "id": "61151", + "name": "Talamello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90566000", + "longitude": "12.28484000" + }, + { + "id": "61160", + "name": "Taneto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77202000", + "longitude": "10.45563000" + }, + { + "id": "61221", + "name": "Terenzo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61048000", + "longitude": "10.08956000" + }, + { + "id": "61290", + "name": "Tizzano Val Parma", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51931000", + "longitude": "10.19819000" + }, + { + "id": "61291", + "name": "Toano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37601000", + "longitude": "10.56311000" + }, + { + "id": "61338", + "name": "Tornolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48524000", + "longitude": "9.62744000" + }, + { + "id": "61397", + "name": "Torriana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.98485000", + "longitude": "12.38541000" + }, + { + "id": "61406", + "name": "Torrile", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92522000", + "longitude": "10.32381000" + }, + { + "id": "61422", + "name": "Toscanella", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38248000", + "longitude": "11.63965000" + }, + { + "id": "61443", + "name": "Trarivi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93672000", + "longitude": "12.54400000" + }, + { + "id": "61453", + "name": "Traversetolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64244000", + "longitude": "10.38036000" + }, + { + "id": "61456", + "name": "Travo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86321000", + "longitude": "9.54430000" + }, + { + "id": "61461", + "name": "Trebbo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55629000", + "longitude": "11.31901000" + }, + { + "id": "61463", + "name": "Trecasali", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93747000", + "longitude": "10.27279000" + }, + { + "id": "61470", + "name": "Tredozio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07958000", + "longitude": "11.74140000" + }, + { + "id": "61496", + "name": "Tresigallo-Final di Rero", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81598000", + "longitude": "11.89472000" + }, + { + "id": "61629", + "name": "Vado", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31689000", + "longitude": "11.25851000" + }, + { + "id": "61762", + "name": "Varano De' Melegari", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68806000", + "longitude": "10.01148000" + }, + { + "id": "61774", + "name": "Varsi", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66274000", + "longitude": "9.84879000" + }, + { + "id": "61794", + "name": "Veggia-Villalunga", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56070000", + "longitude": "10.75621000" + }, + { + "id": "61820", + "name": "Venezzano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68333000", + "longitude": "11.33333000" + }, + { + "id": "61827", + "name": "Ventoso", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58621000", + "longitude": "10.68767000" + }, + { + "id": "61846", + "name": "Vergato", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.28232000", + "longitude": "11.10953000" + }, + { + "id": "61847", + "name": "Verghereto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79450000", + "longitude": "12.00520000" + }, + { + "id": "61854", + "name": "Vernasca", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79867000", + "longitude": "9.83054000" + }, + { + "id": "61873", + "name": "Verucchio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "43.98171000", + "longitude": "12.42317000" + }, + { + "id": "61891", + "name": "Vetto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48407000", + "longitude": "10.33882000" + }, + { + "id": "61896", + "name": "Vezzano sul Crostolo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60241000", + "longitude": "10.54469000" + }, + { + "id": "61904", + "name": "Viano", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54516000", + "longitude": "10.62435000" + }, + { + "id": "61920", + "name": "Vicofertile", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78557000", + "longitude": "10.26200000" + }, + { + "id": "61939", + "name": "Vigarano Mainarda", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84079000", + "longitude": "11.49354000" + }, + { + "id": "61940", + "name": "Vigarano Pieve", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86126000", + "longitude": "11.50950000" + }, + { + "id": "61943", + "name": "Vigatto", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71999000", + "longitude": "10.33037000" + }, + { + "id": "61961", + "name": "Vignola", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48383000", + "longitude": "11.01096000" + }, + { + "id": "61973", + "name": "Vigolzone", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91394000", + "longitude": "9.66852000" + }, + { + "id": "61998", + "name": "Villa Fontana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49455000", + "longitude": "11.60885000" + }, + { + "id": "62005", + "name": "Villa Minozzo", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36480000", + "longitude": "10.46545000" + }, + { + "id": "62030", + "name": "Villa Verucchio", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00510000", + "longitude": "12.43575000" + }, + { + "id": "62089", + "name": "Villanova", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02597000", + "longitude": "9.99865000" + }, + { + "id": "62132", + "name": "Villarotta", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92517000", + "longitude": "10.74382000" + }, + { + "id": "62202", + "name": "Voghiera", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75558000", + "longitude": "11.75182000" + }, + { + "id": "62217", + "name": "Voltana", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54109000", + "longitude": "11.93533000" + }, + { + "id": "62249", + "name": "Zerba", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66551000", + "longitude": "9.28795000" + }, + { + "id": "62257", + "name": "Ziano Piacentino", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99980000", + "longitude": "9.39486000" + }, + { + "id": "62259", + "name": "Zibello", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01847000", + "longitude": "10.12968000" + }, + { + "id": "62264", + "name": "Zocca", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34566000", + "longitude": "10.99308000" + }, + { + "id": "62267", + "name": "Zola Predosa", + "state_id": 1773, + "state_code": "45", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48967000", + "longitude": "11.21831000" + }, + { + "id": "135327", + "name": "Aiello del Friuli", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87276000", + "longitude": "13.36038000" + }, + { + "id": "135459", + "name": "Amaro", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.37367000", + "longitude": "13.09368000" + }, + { + "id": "135474", + "name": "Ampezzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41459000", + "longitude": "12.79634000" + }, + { + "id": "135488", + "name": "Andreis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.20146000", + "longitude": "12.61448000" + }, + { + "id": "135493", + "name": "Anduins", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.23311000", + "longitude": "12.95829000" + }, + { + "id": "135545", + "name": "Aquileia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76830000", + "longitude": "13.36779000" + }, + { + "id": "135552", + "name": "Arba", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14611000", + "longitude": "12.79009000" + }, + { + "id": "135641", + "name": "Arta Terme", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.48021000", + "longitude": "13.02040000" + }, + { + "id": "135642", + "name": "Artegna", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.23929000", + "longitude": "13.15399000" + }, + { + "id": "135650", + "name": "Arzene", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99965000", + "longitude": "12.85034000" + }, + { + "id": "135682", + "name": "Attimis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19022000", + "longitude": "13.31127000" + }, + { + "id": "135691", + "name": "Aurisina", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74968000", + "longitude": "13.67345000" + }, + { + "id": "135705", + "name": "Aviano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07056000", + "longitude": "12.59472000" + }, + { + "id": "135706", + "name": "Aviano-Castello", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06759000", + "longitude": "12.58324000" + }, + { + "id": "135721", + "name": "Azzano Decimo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90937000", + "longitude": "12.66420000" + }, + { + "id": "135752", + "name": "Bagnaria Arsa", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88383000", + "longitude": "13.28562000" + }, + { + "id": "135754", + "name": "Bagnarola", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86690000", + "longitude": "12.85886000" + }, + { + "id": "135836", + "name": "Barcis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19071000", + "longitude": "12.56068000" + }, + { + "id": "135877", + "name": "Basaldella", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02527000", + "longitude": "13.21718000" + }, + { + "id": "135887", + "name": "Basiliano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01417000", + "longitude": "13.07000000" + }, + { + "id": "135888", + "name": "Basiliano-Vissandone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02278000", + "longitude": "13.09306000" + }, + { + "id": "135923", + "name": "Begliano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81984000", + "longitude": "13.46586000" + }, + { + "id": "136001", + "name": "Bertiolo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94463000", + "longitude": "13.05606000" + }, + { + "id": "136044", + "name": "Bicinicco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93211000", + "longitude": "13.25300000" + }, + { + "id": "136147", + "name": "Bordano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.31528000", + "longitude": "13.10529000" + }, + { + "id": "136316", + "name": "Bressa", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03446000", + "longitude": "13.14724000" + }, + { + "id": "136365", + "name": "Brugnera", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89947000", + "longitude": "12.54178000" + }, + { + "id": "136391", + "name": "Budoia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04453000", + "longitude": "12.53429000" + }, + { + "id": "136399", + "name": "Buia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21222000", + "longitude": "13.11691000" + }, + { + "id": "136441", + "name": "Buttrio", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01098000", + "longitude": "13.33354000" + }, + { + "id": "136591", + "name": "Camino al Tagliamento", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92767000", + "longitude": "12.94489000" + }, + { + "id": "136655", + "name": "Campoformido", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01952000", + "longitude": "13.15750000" + }, + { + "id": "136664", + "name": "Campolongo al Torre", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86389000", + "longitude": "13.39667000" + }, + { + "id": "136665", + "name": "Campolongo al Torre-Cavenzano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86306000", + "longitude": "13.38944000" + }, + { + "id": "136710", + "name": "Caneva", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97078000", + "longitude": "12.45261000" + }, + { + "id": "136824", + "name": "Capriva del Friuli", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94093000", + "longitude": "13.51422000" + }, + { + "id": "136887", + "name": "Carlino", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80321000", + "longitude": "13.18874000" + }, + { + "id": "137034", + "name": "Casarsa della Delizia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95091000", + "longitude": "12.84250000" + }, + { + "id": "137093", + "name": "Cassacco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17345000", + "longitude": "13.19236000" + }, + { + "id": "137366", + "name": "Castions", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97218000", + "longitude": "12.79961000" + }, + { + "id": "137367", + "name": "Castions di Strada", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91247000", + "longitude": "13.18167000" + }, + { + "id": "137426", + "name": "Cavasso Nuovo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19441000", + "longitude": "12.77193000" + }, + { + "id": "137428", + "name": "Cavazzo Carnico", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.36793000", + "longitude": "13.04075000" + }, + { + "id": "137439", + "name": "Cavolano-Schiavoi", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93333000", + "longitude": "12.50000000" + }, + { + "id": "137452", + "name": "Cecchini", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86551000", + "longitude": "12.62220000" + }, + { + "id": "137527", + "name": "Cercivento", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.52745000", + "longitude": "12.99219000" + }, + { + "id": "137594", + "name": "Cervignano del Friuli", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82082000", + "longitude": "13.33929000" + }, + { + "id": "137658", + "name": "Chiaulis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.38877000", + "longitude": "12.99155000" + }, + { + "id": "137679", + "name": "Chions", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84546000", + "longitude": "12.71232000" + }, + { + "id": "137680", + "name": "Chiopris", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92667000", + "longitude": "13.40417000" + }, + { + "id": "137690", + "name": "Chiusaforte", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40663000", + "longitude": "13.30552000" + }, + { + "id": "137727", + "name": "Cimolais", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28900000", + "longitude": "12.43792000" + }, + { + "id": "137782", + "name": "Cividale del Friuli", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09019000", + "longitude": "13.42861000" + }, + { + "id": "137807", + "name": "Claut", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26855000", + "longitude": "12.51440000" + }, + { + "id": "137808", + "name": "Clauzetto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22931000", + "longitude": "12.91662000" + }, + { + "id": "137814", + "name": "Clodig", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15620000", + "longitude": "13.59399000" + }, + { + "id": "137837", + "name": "Codroipo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96469000", + "longitude": "12.97985000" + }, + { + "id": "137906", + "name": "Colloredo di Monte Albano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16472000", + "longitude": "13.13861000" + }, + { + "id": "137907", + "name": "Colloredo di Monte Albano-Lauzzana", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15861000", + "longitude": "13.12278000" + }, + { + "id": "137908", + "name": "Colloredo di Prato", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05124000", + "longitude": "13.14394000" + }, + { + "id": "137930", + "name": "Colugna", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09100000", + "longitude": "13.20282000" + }, + { + "id": "137938", + "name": "Comeglians", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.51614000", + "longitude": "12.86619000" + }, + { + "id": "138001", + "name": "Cordenons", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98360000", + "longitude": "12.70038000" + }, + { + "id": "138003", + "name": "Cordovado", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84425000", + "longitude": "12.88537000" + }, + { + "id": "138021", + "name": "Cormons", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95531000", + "longitude": "13.46683000" + }, + { + "id": "138034", + "name": "Corno di Rosazzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99110000", + "longitude": "13.44368000" + }, + { + "id": "138077", + "name": "Coseano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09636000", + "longitude": "13.02028000" + }, + { + "id": "138123", + "name": "Cras", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17403000", + "longitude": "13.62287000" + }, + { + "id": "138266", + "name": "Dignano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08392000", + "longitude": "12.94009000" + }, + { + "id": "138274", + "name": "Doberdò del Lago", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84444000", + "longitude": "13.53908000" + }, + { + "id": "138278", + "name": "Dogna", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.44793000", + "longitude": "13.31502000" + }, + { + "id": "138282", + "name": "Dolegna del Collio", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03094000", + "longitude": "13.47885000" + }, + { + "id": "138284", + "name": "Dolina", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60080000", + "longitude": "13.85929000" + }, + { + "id": "138291", + "name": "Domio", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61049000", + "longitude": "13.83103000" + }, + { + "id": "138341", + "name": "Duino", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77342000", + "longitude": "13.60436000" + }, + { + "id": "138359", + "name": "Enemonzo-Quinis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40833000", + "longitude": "12.87944000" + }, + { + "id": "138376", + "name": "Erto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.27640000", + "longitude": "12.37149000" + }, + { + "id": "138399", + "name": "Faedis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14931000", + "longitude": "13.34463000" + }, + { + "id": "138405", + "name": "Fagagna", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10698000", + "longitude": "13.09361000" + }, + { + "id": "138432", + "name": "Fanna", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18455000", + "longitude": "12.75161000" + }, + { + "id": "138452", + "name": "Farra d'Isonzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90802000", + "longitude": "13.51654000" + }, + { + "id": "138550", + "name": "Fiume Veneto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92865000", + "longitude": "12.73811000" + }, + { + "id": "138554", + "name": "Fiumicello", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79202000", + "longitude": "13.40964000" + }, + { + "id": "138559", + "name": "Flaibano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05837000", + "longitude": "12.98424000" + }, + { + "id": "138574", + "name": "Fogliano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86556000", + "longitude": "13.48222000" + }, + { + "id": "138628", + "name": "Forgaria nel Friuli", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22036000", + "longitude": "12.97470000" + }, + { + "id": "138653", + "name": "Forni Avoltri", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.58615000", + "longitude": "12.77510000" + }, + { + "id": "138654", + "name": "Forni di Sopra", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.42028000", + "longitude": "12.58312000" + }, + { + "id": "138655", + "name": "Forni di Sotto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39379000", + "longitude": "12.67210000" + }, + { + "id": "138737", + "name": "Frisanco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21246000", + "longitude": "12.72626000" + }, + { + "id": "138893", + "name": "Gemona", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.27405000", + "longitude": "13.12237000" + }, + { + "id": "139016", + "name": "Gonars", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89740000", + "longitude": "13.24402000" + }, + { + "id": "139032", + "name": "Gorizia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94088000", + "longitude": "13.62167000" + }, + { + "id": "139050", + "name": "Gradisca d'Isonzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89250000", + "longitude": "13.50167000" + }, + { + "id": "139051", + "name": "Grado", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67774000", + "longitude": "13.40323000" + }, + { + "id": "139070", + "name": "Granvilla", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.56755000", + "longitude": "12.68933000" + }, + { + "id": "139188", + "name": "Ialmicco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91333000", + "longitude": "13.34611000" + }, + { + "id": "139236", + "name": "Isola", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25573000", + "longitude": "13.17906000" + }, + { + "id": "139392", + "name": "Latisana", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76859000", + "longitude": "13.00618000" + }, + { + "id": "139395", + "name": "Lauco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.42397000", + "longitude": "12.93222000" + }, + { + "id": "139407", + "name": "Lauzacco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98134000", + "longitude": "13.28024000" + }, + { + "id": "139474", + "name": "Lestans", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15793000", + "longitude": "12.88872000" + }, + { + "id": "139475", + "name": "Lestizza", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95656000", + "longitude": "13.14221000" + }, + { + "id": "139511", + "name": "Lignano Sabbiadoro", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67590000", + "longitude": "13.11727000" + }, + { + "id": "139513", + "name": "Ligosullo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.54008000", + "longitude": "13.07547000" + }, + { + "id": "139674", + "name": "Lusevera", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.27529000", + "longitude": "13.26922000" + }, + { + "id": "139738", + "name": "Magnano in Riviera", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22369000", + "longitude": "13.19483000" + }, + { + "id": "139753", + "name": "Majano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18752000", + "longitude": "13.06162000" + }, + { + "id": "139757", + "name": "Malborghetto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.50679000", + "longitude": "13.43946000" + }, + { + "id": "139800", + "name": "Maniago", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16644000", + "longitude": "12.70602000" + }, + { + "id": "139812", + "name": "Manzano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98843000", + "longitude": "13.37674000" + }, + { + "id": "139822", + "name": "Marano Lagunare", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76353000", + "longitude": "13.16733000" + }, + { + "id": "139868", + "name": "Mariano del Friuli", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91509000", + "longitude": "13.45947000" + }, + { + "id": "139924", + "name": "Marsure", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09403000", + "longitude": "12.59528000" + }, + { + "id": "139930", + "name": "Martignacco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09313000", + "longitude": "13.13973000" + }, + { + "id": "140018", + "name": "Medea", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91751000", + "longitude": "13.42444000" + }, + { + "id": "140022", + "name": "Mediis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40336000", + "longitude": "12.82341000" + }, + { + "id": "140027", + "name": "Meduno", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21518000", + "longitude": "12.79932000" + }, + { + "id": "140082", + "name": "Mereto di Tomba", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05128000", + "longitude": "13.04432000" + }, + { + "id": "140089", + "name": "Merso di Sopra", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12389000", + "longitude": "13.52806000" + }, + { + "id": "140196", + "name": "Moggio di Sotto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40651000", + "longitude": "13.19507000" + }, + { + "id": "140195", + "name": "Moggio Udinese", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41083000", + "longitude": "13.20139000" + }, + { + "id": "140204", + "name": "Moimacco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09145000", + "longitude": "13.37270000" + }, + { + "id": "140279", + "name": "Monfalcone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80463000", + "longitude": "13.53292000" + }, + { + "id": "140500", + "name": "Montenars", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25111000", + "longitude": "13.16944000" + }, + { + "id": "140515", + "name": "Montereale Valcellina", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15110000", + "longitude": "12.64771000" + }, + { + "id": "140600", + "name": "Moraro", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92971000", + "longitude": "13.49575000" + }, + { + "id": "140637", + "name": "Morsano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85969000", + "longitude": "12.92769000" + }, + { + "id": "140640", + "name": "Mortegliano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94553000", + "longitude": "13.17255000" + }, + { + "id": "140642", + "name": "Moruzzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11967000", + "longitude": "13.12400000" + }, + { + "id": "140651", + "name": "Mossa", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93674000", + "longitude": "13.54933000" + }, + { + "id": "140677", + "name": "Muggia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60419000", + "longitude": "13.76754000" + }, + { + "id": "140707", + "name": "Muzzana del Turgnano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81799000", + "longitude": "13.12751000" + }, + { + "id": "140770", + "name": "Nimis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.20659000", + "longitude": "13.26777000" + }, + { + "id": "140942", + "name": "Orcenico Inferiore", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94977000", + "longitude": "12.76452000" + }, + { + "id": "140973", + "name": "Orsaria", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03862000", + "longitude": "13.38247000" + }, + { + "id": "141013", + "name": "Osoppo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25536000", + "longitude": "13.08453000" + }, + { + "id": "141056", + "name": "Ovaro", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.48409000", + "longitude": "12.86704000" + }, + { + "id": "58210", + "name": "Pagnacco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11462000", + "longitude": "13.18377000" + }, + { + "id": "58235", + "name": "Palazzolo dello Stella", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79823000", + "longitude": "13.08776000" + }, + { + "id": "58255", + "name": "Palmanova", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90540000", + "longitude": "13.30998000" + }, + { + "id": "58267", + "name": "Paludea", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19950000", + "longitude": "12.90344000" + }, + { + "id": "58269", + "name": "Paluzza", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.53202000", + "longitude": "13.01586000" + }, + { + "id": "58322", + "name": "Pasian di Prato", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04667000", + "longitude": "13.18780000" + }, + { + "id": "58323", + "name": "Pasiano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84972000", + "longitude": "12.62722000" + }, + { + "id": "58334", + "name": "Passons", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06889000", + "longitude": "13.18917000" + }, + { + "id": "58353", + "name": "Paularo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.53101000", + "longitude": "13.11886000" + }, + { + "id": "58360", + "name": "Pavia di Udine", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99502000", + "longitude": "13.30367000" + }, + { + "id": "58415", + "name": "Percoto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97471000", + "longitude": "13.32304000" + }, + { + "id": "58440", + "name": "Pertegada", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72179000", + "longitude": "13.04379000" + }, + { + "id": "58599", + "name": "Pieria-Prato Carnico", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.52037000", + "longitude": "12.80328000" + }, + { + "id": "58600", + "name": "Pieris", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81243000", + "longitude": "13.44917000" + }, + { + "id": "58682", + "name": "Pinzano al Tagliamento", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18216000", + "longitude": "12.94433000" + }, + { + "id": "58743", + "name": "Pocenia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83570000", + "longitude": "13.10145000" + }, + { + "id": "58783", + "name": "Polcenigo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03822000", + "longitude": "12.50321000" + }, + { + "id": "58862", + "name": "Pontebba", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.50540000", + "longitude": "13.30622000" + }, + { + "id": "58905", + "name": "Porcia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96301000", + "longitude": "12.61642000" + }, + { + "id": "58906", + "name": "Pordenone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95689000", + "longitude": "12.66051000" + }, + { + "id": "58910", + "name": "Porpetto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85700000", + "longitude": "13.21703000" + }, + { + "id": "58972", + "name": "Povoletto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11568000", + "longitude": "13.29171000" + }, + { + "id": "58992", + "name": "Pozzuolo del Friuli", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98517000", + "longitude": "13.19724000" + }, + { + "id": "58994", + "name": "Pradamano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03391000", + "longitude": "13.30223000" + }, + { + "id": "59016", + "name": "Prata di Pordenone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89441000", + "longitude": "12.58843000" + }, + { + "id": "59025", + "name": "Prato", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.37364000", + "longitude": "13.30659000" + }, + { + "id": "59029", + "name": "Prato Carnico", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.52049000", + "longitude": "12.80886000" + }, + { + "id": "59037", + "name": "Pravisdomini", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81972000", + "longitude": "12.69478000" + }, + { + "id": "59041", + "name": "Precenicco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79694000", + "longitude": "13.07554000" + }, + { + "id": "59053", + "name": "Premariacco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06145000", + "longitude": "13.39461000" + }, + { + "id": "59060", + "name": "Preone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39411000", + "longitude": "12.86645000" + }, + { + "id": "59063", + "name": "Prepotto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04522000", + "longitude": "13.47921000" + }, + { + "id": "59092", + "name": "Prosecco-Contovello", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70807000", + "longitude": "13.73376000" + }, + { + "id": "59135", + "name": "Provincia di Gorizia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86548000", + "longitude": "13.50195000" + }, + { + "id": "59163", + "name": "Provincia di Pordenone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10182000", + "longitude": "12.69002000" + }, + { + "id": "59182", + "name": "Provincia di Trieste", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71300000", + "longitude": "13.76116000" + }, + { + "id": "59183", + "name": "Provincia di Udine", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16408000", + "longitude": "13.17794000" + }, + { + "id": "59198", + "name": "Puia-Villanova", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86222000", + "longitude": "12.57139000" + }, + { + "id": "59202", + "name": "Pulfero", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17376000", + "longitude": "13.48363000" + }, + { + "id": "59277", + "name": "Ramuscello", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88105000", + "longitude": "12.88460000" + }, + { + "id": "59294", + "name": "Rauscedo-Domanins", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04083000", + "longitude": "12.82472000" + }, + { + "id": "59297", + "name": "Ravascletto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.52504000", + "longitude": "12.92138000" + }, + { + "id": "59300", + "name": "Raveo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.43392000", + "longitude": "12.87165000" + }, + { + "id": "59306", + "name": "Reana del Roiale", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13733000", + "longitude": "13.22320000" + }, + { + "id": "59307", + "name": "Reana del Rojale", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14322000", + "longitude": "13.24653000" + }, + { + "id": "59327", + "name": "Remanzacco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08535000", + "longitude": "13.32358000" + }, + { + "id": "59336", + "name": "Resiutta", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39371000", + "longitude": "13.21796000" + }, + { + "id": "59380", + "name": "Rigolato", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.55393000", + "longitude": "12.84619000" + }, + { + "id": "59435", + "name": "Rive d'Arcano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12722000", + "longitude": "13.03222000" + }, + { + "id": "59438", + "name": "Rivignano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87575000", + "longitude": "13.04190000" + }, + { + "id": "59547", + "name": "Rodeano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11085000", + "longitude": "13.01110000" + }, + { + "id": "59580", + "name": "Romans d'Isonzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88816000", + "longitude": "13.44187000" + }, + { + "id": "59596", + "name": "Ronchi dei Legionari", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82735000", + "longitude": "13.50417000" + }, + { + "id": "59598", + "name": "Ronchis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80792000", + "longitude": "12.99545000" + }, + { + "id": "59623", + "name": "Rosa", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93056000", + "longitude": "12.87083000" + }, + { + "id": "59677", + "name": "Roveredo in Piano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00847000", + "longitude": "12.61938000" + }, + { + "id": "59693", + "name": "Ruda", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83986000", + "longitude": "13.40177000" + }, + { + "id": "59720", + "name": "Sacile", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95412000", + "longitude": "12.50274000" + }, + { + "id": "59725", + "name": "Sagrado", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87393000", + "longitude": "13.48418000" + }, + { + "id": "59852", + "name": "San Canzian d'Isonzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79750000", + "longitude": "13.46639000" + }, + { + "id": "59889", + "name": "San Daniele del Friuli", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15714000", + "longitude": "13.00726000" + }, + { + "id": "59923", + "name": "San Floriano del Collio", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98088000", + "longitude": "13.58875000" + }, + { + "id": "59941", + "name": "San Giacomo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17311000", + "longitude": "12.98344000" + }, + { + "id": "59967", + "name": "San Giorgio della Richinvelda", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04778000", + "longitude": "12.86867000" + }, + { + "id": "59971", + "name": "San Giorgio di Nogaro", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82745000", + "longitude": "13.21088000" + }, + { + "id": "59978", + "name": "San Giovanni", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02104000", + "longitude": "12.51556000" + }, + { + "id": "59992", + "name": "San Giovanni al Natisone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97079000", + "longitude": "13.40182000" + }, + { + "id": "60029", + "name": "San Leonardo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11913000", + "longitude": "13.53085000" + }, + { + "id": "60041", + "name": "San Lorenzo Isontino", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93020000", + "longitude": "13.52517000" + }, + { + "id": "60080", + "name": "San Martino al Tagliamento", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01697000", + "longitude": "12.86989000" + }, + { + "id": "60165", + "name": "San Pier d'Isonzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84452000", + "longitude": "13.46764000" + }, + { + "id": "60188", + "name": "San Pietro al Natisone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11444000", + "longitude": "13.48296000" + }, + { + "id": "60218", + "name": "San Quirino", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03411000", + "longitude": "12.67846000" + }, + { + "id": "60257", + "name": "San Valentino", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79039000", + "longitude": "13.41236000" + }, + { + "id": "60280", + "name": "San Vito al Tagliamento", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91680000", + "longitude": "12.85945000" + }, + { + "id": "60281", + "name": "San Vito al Torre", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89587000", + "longitude": "13.37588000" + }, + { + "id": "60283", + "name": "San Vito di Fagagna", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09103000", + "longitude": "13.06569000" + }, + { + "id": "60425", + "name": "Santa Croce", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73472000", + "longitude": "13.69278000" + }, + { + "id": "60480", + "name": "Santa Maria la Longa", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93403000", + "longitude": "13.28911000" + }, + { + "id": "60537", + "name": "Sappada", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.56663000", + "longitude": "12.68421000" + }, + { + "id": "60580", + "name": "Sauris di Sotto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.46624000", + "longitude": "12.70852000" + }, + { + "id": "60596", + "name": "Savogna", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15846000", + "longitude": "13.53089000" + }, + { + "id": "60597", + "name": "Savogna d'Isonzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90894000", + "longitude": "13.57936000" + }, + { + "id": "60680", + "name": "Sedegliano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01396000", + "longitude": "12.97734000" + }, + { + "id": "60734", + "name": "Sequals", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16385000", + "longitude": "12.83037000" + }, + { + "id": "60800", + "name": "Sesto al Reghena", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84938000", + "longitude": "12.81295000" + }, + { + "id": "60821", + "name": "Sevegliano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88749000", + "longitude": "13.30541000" + }, + { + "id": "60831", + "name": "Sgonico", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73583000", + "longitude": "13.74708000" + }, + { + "id": "60881", + "name": "Sistiana-Visogliano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77237000", + "longitude": "13.63824000" + }, + { + "id": "60975", + "name": "Sottoselva", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91134000", + "longitude": "13.32416000" + }, + { + "id": "61011", + "name": "Spilimbergo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11345000", + "longitude": "12.89241000" + }, + { + "id": "61047", + "name": "Staranzano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80233000", + "longitude": "13.50226000" + }, + { + "id": "61091", + "name": "Stregna", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12689000", + "longitude": "13.57761000" + }, + { + "id": "61134", + "name": "Sutrio", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.51206000", + "longitude": "12.99325000" + }, + { + "id": "61150", + "name": "Taipana", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.24911000", + "longitude": "13.34150000" + }, + { + "id": "61156", + "name": "Talmassons", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92810000", + "longitude": "13.12199000" + }, + { + "id": "61158", + "name": "Tamai", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92427000", + "longitude": "12.57187000" + }, + { + "id": "61166", + "name": "Tarcento", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21251000", + "longitude": "13.21514000" + }, + { + "id": "61170", + "name": "Tarvisio", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.50567000", + "longitude": "13.58689000" + }, + { + "id": "61178", + "name": "Tavagnacco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10976000", + "longitude": "13.22251000" + }, + { + "id": "61215", + "name": "Teor", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85416000", + "longitude": "13.05608000" + }, + { + "id": "61257", + "name": "Terzo d'Aquileia", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79994000", + "longitude": "13.34177000" + }, + { + "id": "61302", + "name": "Tolmezzo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39996000", + "longitude": "13.02051000" + }, + { + "id": "61378", + "name": "Torreano", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12786000", + "longitude": "13.42933000" + }, + { + "id": "61421", + "name": "Torviscosa", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82337000", + "longitude": "13.28050000" + }, + { + "id": "61433", + "name": "Tramonti di Sopra", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.31023000", + "longitude": "12.78994000" + }, + { + "id": "61434", + "name": "Tramonti di Sotto", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28475000", + "longitude": "12.79644000" + }, + { + "id": "61445", + "name": "Trasaghis", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28164000", + "longitude": "13.07545000" + }, + { + "id": "61455", + "name": "Travesio", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19667000", + "longitude": "12.86740000" + }, + { + "id": "61487", + "name": "Treppo Carnico", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.53323000", + "longitude": "13.04292000" + }, + { + "id": "61488", + "name": "Treppo Grande", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19988000", + "longitude": "13.15350000" + }, + { + "id": "61521", + "name": "Tricesimo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16058000", + "longitude": "13.21566000" + }, + { + "id": "61524", + "name": "Trieste", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64953000", + "longitude": "13.77678000" + }, + { + "id": "61543", + "name": "Trivignano Udinese", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94601000", + "longitude": "13.34019000" + }, + { + "id": "61577", + "name": "Turriaco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82119000", + "longitude": "13.44369000" + }, + { + "id": "61587", + "name": "Udine", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06930000", + "longitude": "13.23715000" + }, + { + "id": "61642", + "name": "Vajont", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14534000", + "longitude": "12.69647000" + }, + { + "id": "61746", + "name": "Valvasone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99331000", + "longitude": "12.86659000" + }, + { + "id": "61772", + "name": "Varmo", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88630000", + "longitude": "12.99005000" + }, + { + "id": "61830", + "name": "Venzone", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.33031000", + "longitude": "13.13825000" + }, + { + "id": "61976", + "name": "Vigonovo-Fontanafredda", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98927000", + "longitude": "12.54707000" + }, + { + "id": "62007", + "name": "Villa Opicina", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68780000", + "longitude": "13.78861000" + }, + { + "id": "62027", + "name": "Villa Santina", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41368000", + "longitude": "12.92445000" + }, + { + "id": "62031", + "name": "Villa Vicentina", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81378000", + "longitude": "13.39332000" + }, + { + "id": "62090", + "name": "Villanova", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13226000", + "longitude": "12.97084000" + }, + { + "id": "62150", + "name": "Villesse", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86526000", + "longitude": "13.44380000" + }, + { + "id": "62155", + "name": "Villotta", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86336000", + "longitude": "12.75418000" + }, + { + "id": "62173", + "name": "Visco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89194000", + "longitude": "13.34861000" + }, + { + "id": "62190", + "name": "Vivaro", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07656000", + "longitude": "12.77912000" + }, + { + "id": "62268", + "name": "Zolla", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71698000", + "longitude": "13.81038000" + }, + { + "id": "62274", + "name": "Zoppola", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96624000", + "longitude": "12.76828000" + }, + { + "id": "62282", + "name": "Zugliano-Terenzano-Cargnacco", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00750000", + "longitude": "13.21694000" + }, + { + "id": "62283", + "name": "Zuglio", + "state_id": 1756, + "state_code": "36", + "country_id": 107, + "country_code": "IT", + "latitude": "46.45830000", + "longitude": "13.02589000" + }, + { + "id": "135252", + "name": "Accumoli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.69476000", + "longitude": "13.24761000" + }, + { + "id": "135261", + "name": "Acilia-Castel Fusano-Ostia Antica", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76337000", + "longitude": "12.33078000" + }, + { + "id": "135264", + "name": "Acquafondata", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.54282000", + "longitude": "13.95281000" + }, + { + "id": "135270", + "name": "Acquapendente", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.74259000", + "longitude": "11.86827000" + }, + { + "id": "135285", + "name": "Acuto", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.79107000", + "longitude": "13.17446000" + }, + { + "id": "135293", + "name": "Affile", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88435000", + "longitude": "13.09853000" + }, + { + "id": "135313", + "name": "Agosta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98133000", + "longitude": "13.03499000" + }, + { + "id": "135345", + "name": "Alatri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73187000", + "longitude": "13.34120000" + }, + { + "id": "135351", + "name": "Albano Laziale", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.72748000", + "longitude": "12.65900000" + }, + { + "id": "135386", + "name": "Albuccione", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95245000", + "longitude": "12.69873000" + }, + { + "id": "135419", + "name": "Allumiere", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15751000", + "longitude": "11.90361000" + }, + { + "id": "135449", + "name": "Alvito", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69002000", + "longitude": "13.74795000" + }, + { + "id": "135461", + "name": "Amaseno", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.46705000", + "longitude": "13.33457000" + }, + { + "id": "135463", + "name": "Amatrice", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.62664000", + "longitude": "13.29509000" + }, + { + "id": "135476", + "name": "Anagni", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74350000", + "longitude": "13.15542000" + }, + { + "id": "135502", + "name": "Anguillara Sabazia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.07920000", + "longitude": "12.28368000" + }, + { + "id": "135504", + "name": "Anitrella-Chiaiamari", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63825000", + "longitude": "13.54835000" + }, + { + "id": "135517", + "name": "Anticoli Corrado", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00801000", + "longitude": "12.99049000" + }, + { + "id": "135521", + "name": "Antrodoco", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.41498000", + "longitude": "13.07673000" + }, + { + "id": "135527", + "name": "Anzio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45263000", + "longitude": "12.62157000" + }, + { + "id": "135542", + "name": "Aprilia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59452000", + "longitude": "12.65419000" + }, + { + "id": "135547", + "name": "Aquino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.49388000", + "longitude": "13.70520000" + }, + { + "id": "135548", + "name": "Ara Nova", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.93300000", + "longitude": "12.23980000" + }, + { + "id": "135561", + "name": "Arce", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.57787000", + "longitude": "13.58571000" + }, + { + "id": "135566", + "name": "Arci-Empolitana", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94766000", + "longitude": "12.82502000" + }, + { + "id": "135568", + "name": "Arcinazzo Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87972000", + "longitude": "13.11439000" + }, + { + "id": "135578", + "name": "Ardea", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.60742000", + "longitude": "12.54158000" + }, + { + "id": "135584", + "name": "Area Produttiva", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68211000", + "longitude": "12.50697000" + }, + { + "id": "135601", + "name": "Ariccia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.72063000", + "longitude": "12.67230000" + }, + { + "id": "135610", + "name": "Arlena di Castro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.46559000", + "longitude": "11.82090000" + }, + { + "id": "135615", + "name": "Armetta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.81280000", + "longitude": "12.68782000" + }, + { + "id": "135619", + "name": "Arnara", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.58452000", + "longitude": "13.38840000" + }, + { + "id": "135628", + "name": "Arpino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.64705000", + "longitude": "13.61155000" + }, + { + "id": "135640", + "name": "Arsoli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.04158000", + "longitude": "13.01606000" + }, + { + "id": "135643", + "name": "Artena", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74126000", + "longitude": "12.90667000" + }, + { + "id": "135657", + "name": "Ascrea", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.19763000", + "longitude": "12.99457000" + }, + { + "id": "135676", + "name": "Atina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62004000", + "longitude": "13.79905000" + }, + { + "id": "135677", + "name": "Atina Inferiore", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62705000", + "longitude": "13.79258000" + }, + { + "id": "135689", + "name": "Aurelia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13910000", + "longitude": "11.78713000" + }, + { + "id": "135694", + "name": "Ausonia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.35808000", + "longitude": "13.74983000" + }, + { + "id": "135758", + "name": "Bagni di Tivoli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95000000", + "longitude": "12.71667000" + }, + { + "id": "135775", + "name": "Bagnoregio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.62845000", + "longitude": "12.08969000" + }, + { + "id": "135820", + "name": "Barbarano Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24908000", + "longitude": "12.06774000" + }, + { + "id": "135894", + "name": "Bassano in Teverina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.46444000", + "longitude": "12.30752000" + }, + { + "id": "135892", + "name": "Bassano Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22228000", + "longitude": "12.18785000" + }, + { + "id": "135895", + "name": "Bassiano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55154000", + "longitude": "13.02732000" + }, + { + "id": "135935", + "name": "Bella Farnia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.36780000", + "longitude": "12.97602000" + }, + { + "id": "135942", + "name": "Bellegra", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88166000", + "longitude": "13.02861000" + }, + { + "id": "135952", + "name": "Belmonte Castello", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.57742000", + "longitude": "13.81581000" + }, + { + "id": "135956", + "name": "Belmonte in Sabina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.31482000", + "longitude": "12.89178000" + }, + { + "id": "136074", + "name": "Bivio di Capanelle", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.11962000", + "longitude": "12.59395000" + }, + { + "id": "136072", + "name": "Bivio San Polo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.97418000", + "longitude": "12.82993000" + }, + { + "id": "136080", + "name": "Blera", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.27293000", + "longitude": "12.03016000" + }, + { + "id": "136113", + "name": "Bolsena", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.64326000", + "longitude": "11.98514000" + }, + { + "id": "136118", + "name": "Bomarzo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.48273000", + "longitude": "12.25037000" + }, + { + "id": "136145", + "name": "Borbona", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.50939000", + "longitude": "13.13206000" + }, + { + "id": "136172", + "name": "Borgo Grappa", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.40212000", + "longitude": "12.96053000" + }, + { + "id": "136173", + "name": "Borgo Hermada", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30559000", + "longitude": "13.17235000" + }, + { + "id": "136174", + "name": "Borgo Lotti", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76414000", + "longitude": "12.55500000" + }, + { + "id": "136178", + "name": "Borgo Podgora", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.51462000", + "longitude": "12.85383000" + }, + { + "id": "136180", + "name": "Borgo Sabotino-Foce Verde", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.41667000", + "longitude": "12.83333000" + }, + { + "id": "136186", + "name": "Borgo San Michele", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.43828000", + "longitude": "12.97351000" + }, + { + "id": "136195", + "name": "Borgo Velino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.40508000", + "longitude": "13.05650000" + }, + { + "id": "136216", + "name": "Borgorose", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.19077000", + "longitude": "13.23282000" + }, + { + "id": "136271", + "name": "Boville Ernica", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.64252000", + "longitude": "13.47270000" + }, + { + "id": "136281", + "name": "Bracciano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10271000", + "longitude": "12.16565000" + }, + { + "id": "136345", + "name": "Broccostella", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69972000", + "longitude": "13.63531000" + }, + { + "id": "136480", + "name": "Caira", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.53333000", + "longitude": "13.81667000" + }, + { + "id": "136500", + "name": "Calcata Nuova", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21952000", + "longitude": "12.42617000" + }, + { + "id": "136581", + "name": "Camerata Nuova", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.01800000", + "longitude": "13.10970000" + }, + { + "id": "136587", + "name": "Camilleri-Vallelata", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59848000", + "longitude": "12.61738000" + }, + { + "id": "136601", + "name": "Campagnano di Roma", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13570000", + "longitude": "12.37358000" + }, + { + "id": "136634", + "name": "Campo di Carne", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55265000", + "longitude": "12.64114000" + }, + { + "id": "136628", + "name": "Campo Jemini", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62716000", + "longitude": "12.51258000" + }, + { + "id": "136630", + "name": "Campo Limpido-Favale", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.96732000", + "longitude": "12.77016000" + }, + { + "id": "136646", + "name": "Campodimele", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.38822000", + "longitude": "13.53081000" + }, + { + "id": "136659", + "name": "Campoleone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.64570000", + "longitude": "12.64826000" + }, + { + "id": "136660", + "name": "Campoli Appennino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73539000", + "longitude": "13.68326000" + }, + { + "id": "136688", + "name": "Canale Monterano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13598000", + "longitude": "12.10284000" + }, + { + "id": "136709", + "name": "Canepina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.38315000", + "longitude": "12.23179000" + }, + { + "id": "136714", + "name": "Canino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.46592000", + "longitude": "11.75294000" + }, + { + "id": "136739", + "name": "Cantalice", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.46458000", + "longitude": "12.90461000" + }, + { + "id": "136743", + "name": "Cantalupo in Sabina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.30689000", + "longitude": "12.64513000" + }, + { + "id": "136747", + "name": "Canterano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94322000", + "longitude": "13.03809000" + }, + { + "id": "136763", + "name": "Capena", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.14247000", + "longitude": "12.54513000" + }, + { + "id": "136781", + "name": "Capodimonte", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54780000", + "longitude": "11.90657000" + }, + { + "id": "136801", + "name": "Capranica", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25849000", + "longitude": "12.17278000" + }, + { + "id": "136802", + "name": "Capranica Prenestina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86285000", + "longitude": "12.95077000" + }, + { + "id": "136805", + "name": "Caprarola", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32308000", + "longitude": "12.23848000" + }, + { + "id": "136844", + "name": "Carbognano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33024000", + "longitude": "12.26457000" + }, + { + "id": "136855", + "name": "Carchitti", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.78688000", + "longitude": "12.82955000" + }, + { + "id": "136918", + "name": "Carpineto Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.60470000", + "longitude": "13.08410000" + }, + { + "id": "136926", + "name": "Carrara-Pontenuovo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.54045000", + "longitude": "12.95468000" + }, + { + "id": "136937", + "name": "Cartiera-Stazione", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.65642000", + "longitude": "13.24086000" + }, + { + "id": "136958", + "name": "Casal Palocco", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74845000", + "longitude": "12.34726000" + }, + { + "id": "136962", + "name": "Casalattico", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62213000", + "longitude": "13.72563000" + }, + { + "id": "136963", + "name": "Casalazzara", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62299000", + "longitude": "12.57634000" + }, + { + "id": "136993", + "name": "Casali", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.37812000", + "longitude": "13.75479000" + }, + { + "id": "137012", + "name": "Casalvieri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63329000", + "longitude": "13.71363000" + }, + { + "id": "137025", + "name": "Casape", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90702000", + "longitude": "12.88579000" + }, + { + "id": "137028", + "name": "Casaprota", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25177000", + "longitude": "12.80428000" + }, + { + "id": "137054", + "name": "Case Campoli-Panetta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67296000", + "longitude": "13.47170000" + }, + { + "id": "137091", + "name": "Casperia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33869000", + "longitude": "12.67017000" + }, + { + "id": "137112", + "name": "Cassino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.48581000", + "longitude": "13.82835000" + }, + { + "id": "137134", + "name": "Castel Chiodato", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.05617000", + "longitude": "12.69764000" + }, + { + "id": "137175", + "name": "Castel di Tora", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21392000", + "longitude": "12.97073000" + }, + { + "id": "137137", + "name": "Castel Fusano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74717000", + "longitude": "12.31190000" + }, + { + "id": "137139", + "name": "Castel Gandolfo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74875000", + "longitude": "12.64975000" + }, + { + "id": "137143", + "name": "Castel Madama", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.97350000", + "longitude": "12.86782000" + }, + { + "id": "137154", + "name": "Castel San Pietro Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84572000", + "longitude": "12.89489000" + }, + { + "id": "137157", + "name": "Castel Sant'Angelo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.39373000", + "longitude": "13.02738000" + }, + { + "id": "137158", + "name": "Castel Sant'Elia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25112000", + "longitude": "12.37032000" + }, + { + "id": "137195", + "name": "Castelforte", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.29392000", + "longitude": "13.83061000" + }, + { + "id": "137250", + "name": "Castelliri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67764000", + "longitude": "13.53978000" + }, + { + "id": "137271", + "name": "Castelmassimo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.66389000", + "longitude": "13.38063000" + }, + { + "id": "137301", + "name": "Castelnuovo di Farfa", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23193000", + "longitude": "12.74308000" + }, + { + "id": "137303", + "name": "Castelnuovo di Porto", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12280000", + "longitude": "12.51043000" + }, + { + "id": "137292", + "name": "Castelnuovo Parano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.37912000", + "longitude": "13.75621000" + }, + { + "id": "137358", + "name": "Castiglione in Teverina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.65076000", + "longitude": "12.20305000" + }, + { + "id": "137377", + "name": "Castro dei Volsci", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50822000", + "longitude": "13.40630000" + }, + { + "id": "137379", + "name": "Castrocielo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52736000", + "longitude": "13.69588000" + }, + { + "id": "137430", + "name": "Cave", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.81682000", + "longitude": "12.94055000" + }, + { + "id": "137450", + "name": "Ceccano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.57236000", + "longitude": "13.32901000" + }, + { + "id": "137451", + "name": "Cecchina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.70161000", + "longitude": "12.64972000" + }, + { + "id": "137477", + "name": "Celleno", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.56039000", + "longitude": "12.12442000" + }, + { + "id": "137478", + "name": "Cellere", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.51024000", + "longitude": "11.77079000" + }, + { + "id": "137510", + "name": "Ceprano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.54572000", + "longitude": "13.51473000" + }, + { + "id": "137559", + "name": "Cerquotti-Madonna del Piano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.64194000", + "longitude": "13.21316000" + }, + { + "id": "137565", + "name": "Cerreto Laziale", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94332000", + "longitude": "12.98169000" + }, + { + "id": "137582", + "name": "Cervara di Roma", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98822000", + "longitude": "13.06799000" + }, + { + "id": "137584", + "name": "Cervaro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.48278000", + "longitude": "13.90218000" + }, + { + "id": "137590", + "name": "Cerveteri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99080000", + "longitude": "12.09082000" + }, + { + "id": "137604", + "name": "Cesano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.07375000", + "longitude": "12.33711000" + }, + { + "id": "137701", + "name": "Ciampino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80064000", + "longitude": "12.60158000" + }, + { + "id": "137711", + "name": "Ciciliano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95990000", + "longitude": "12.94163000" + }, + { + "id": "137730", + "name": "Cineto Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.05014000", + "longitude": "12.96080000" + }, + { + "id": "137762", + "name": "Cisterna di Latina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59080000", + "longitude": "12.82808000" + }, + { + "id": "137767", + "name": "Cittaducale", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.38664000", + "longitude": "12.95497000" + }, + { + "id": "137769", + "name": "Cittareale", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.61624000", + "longitude": "13.15788000" + }, + { + "id": "137776", + "name": "Città metropolitana di Roma Capitale", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.96667000", + "longitude": "12.66667000" + }, + { + "id": "137786", + "name": "Civita Castellana", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29304000", + "longitude": "12.40885000" + }, + { + "id": "137794", + "name": "Civitavecchia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09325000", + "longitude": "11.79674000" + }, + { + "id": "137801", + "name": "Civitella d'Agliano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.60296000", + "longitude": "12.18624000" + }, + { + "id": "137800", + "name": "Civitella San Paolo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.19935000", + "longitude": "12.57455000" + }, + { + "id": "137849", + "name": "Coldragone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55458000", + "longitude": "13.60399000" + }, + { + "id": "137856", + "name": "Collalto Sabino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13522000", + "longitude": "13.04841000" + }, + { + "id": "137860", + "name": "Colle Campano-Scrima", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62364000", + "longitude": "13.46336000" + }, + { + "id": "137870", + "name": "Colle del Pino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74246000", + "longitude": "12.49644000" + }, + { + "id": "137871", + "name": "Colle di Fuori", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80091000", + "longitude": "12.80683000" + }, + { + "id": "137872", + "name": "Colle di Tora", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20809000", + "longitude": "12.94746000" + }, + { + "id": "137862", + "name": "Colle Mainello", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86975000", + "longitude": "12.78767000" + }, + { + "id": "137863", + "name": "Colle San Magno", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55019000", + "longitude": "13.69485000" + }, + { + "id": "137866", + "name": "Colle Spina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.78205000", + "longitude": "12.84723000" + }, + { + "id": "137868", + "name": "Colle Verde", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.97694000", + "longitude": "12.61855000" + }, + { + "id": "137880", + "name": "Colleferro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.72722000", + "longitude": "13.00481000" + }, + { + "id": "137881", + "name": "Collefontana-Fontana Liri Inferiore", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61166000", + "longitude": "13.54945000" + }, + { + "id": "137882", + "name": "Collegiove", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.17506000", + "longitude": "13.03844000" + }, + { + "id": "137886", + "name": "Collepardo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76417000", + "longitude": "13.36846000" + }, + { + "id": "137896", + "name": "Collevecchio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33368000", + "longitude": "12.55329000" + }, + { + "id": "137897", + "name": "Colleverde II", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.97533000", + "longitude": "12.63191000" + }, + { + "id": "137900", + "name": "Colli di Enea", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.65554000", + "longitude": "12.49035000" + }, + { + "id": "137901", + "name": "Colli sul Velino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.49828000", + "longitude": "12.78153000" + }, + { + "id": "137922", + "name": "Colonna", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.83454000", + "longitude": "12.75495000" + }, + { + "id": "137929", + "name": "Colubro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73506000", + "longitude": "12.86726000" + }, + { + "id": "137956", + "name": "Concerviano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32214000", + "longitude": "12.98534000" + }, + { + "id": "137968", + "name": "Configni", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.42543000", + "longitude": "12.64431000" + }, + { + "id": "137978", + "name": "Contigliano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.41058000", + "longitude": "12.77202000" + }, + { + "id": "137998", + "name": "Corchiano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.34495000", + "longitude": "12.35688000" + }, + { + "id": "138000", + "name": "Corcolle", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90421000", + "longitude": "12.73654000" + }, + { + "id": "138007", + "name": "Coreno Ausonio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.34735000", + "longitude": "13.77648000" + }, + { + "id": "138010", + "name": "Cori", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.64358000", + "longitude": "12.91121000" + }, + { + "id": "138074", + "name": "Corvaro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20538000", + "longitude": "13.26496000" + }, + { + "id": "138107", + "name": "Costaroni", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.07819000", + "longitude": "12.53712000" + }, + { + "id": "138113", + "name": "Cottanello", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.40811000", + "longitude": "12.68592000" + }, + { + "id": "138150", + "name": "Cretone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.07116000", + "longitude": "12.70365000" + }, + { + "id": "138384", + "name": "Esperia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.38237000", + "longitude": "13.68491000" + }, + { + "id": "138394", + "name": "Fabrica di Roma", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.33444000", + "longitude": "12.29873000" + }, + { + "id": "138418", + "name": "Faleria", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22580000", + "longitude": "12.44518000" + }, + { + "id": "138425", + "name": "Falvaterra", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50438000", + "longitude": "13.52341000" + }, + { + "id": "138443", + "name": "Fara in Sabina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20807000", + "longitude": "12.72960000" + }, + { + "id": "138449", + "name": "Farnese", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54926000", + "longitude": "11.72638000" + }, + { + "id": "138480", + "name": "Ferentino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69119000", + "longitude": "13.25620000" + }, + { + "id": "138499", + "name": "Fiamignano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26546000", + "longitude": "13.12413000" + }, + { + "id": "138501", + "name": "Fiano Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15538000", + "longitude": "12.59467000" + }, + { + "id": "138521", + "name": "Filacciano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25445000", + "longitude": "12.59880000" + }, + { + "id": "138526", + "name": "Filettino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.89131000", + "longitude": "13.32531000" + }, + { + "id": "138546", + "name": "Fiuggi", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.79780000", + "longitude": "13.22386000" + }, + { + "id": "138555", + "name": "Fiumicino-Isola Sacra", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77093000", + "longitude": "12.23662000" + }, + { + "id": "138571", + "name": "Focene", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.81367000", + "longitude": "12.21354000" + }, + { + "id": "138588", + "name": "Fondi", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.35787000", + "longitude": "13.42718000" + }, + { + "id": "138610", + "name": "Fontechiari", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.66788000", + "longitude": "13.67504000" + }, + { + "id": "138617", + "name": "Forano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29768000", + "longitude": "12.59469000" + }, + { + "id": "138635", + "name": "Formello", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06246000", + "longitude": "12.39435000" + }, + { + "id": "138636", + "name": "Formia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25632000", + "longitude": "13.60888000" + }, + { + "id": "138678", + "name": "Fossignano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59226000", + "longitude": "12.56333000" + }, + { + "id": "138708", + "name": "Frascati", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80910000", + "longitude": "12.67942000" + }, + { + "id": "138717", + "name": "Frasso Sabino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22927000", + "longitude": "12.80658000" + }, + { + "id": "138728", + "name": "Fregene", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.85051000", + "longitude": "12.19671000" + }, + { + "id": "138741", + "name": "Frosinone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63976000", + "longitude": "13.34109000" + }, + { + "id": "138750", + "name": "Fumone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73461000", + "longitude": "13.27015000" + }, + { + "id": "138774", + "name": "Gaeta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.21408000", + "longitude": "13.57082000" + }, + { + "id": "138802", + "name": "Gallese", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.37376000", + "longitude": "12.39646000" + }, + { + "id": "138808", + "name": "Gallicano nel Lazio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86433000", + "longitude": "12.83543000" + }, + { + "id": "138811", + "name": "Gallinaro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.65502000", + "longitude": "13.79799000" + }, + { + "id": "138877", + "name": "Gavignano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69891000", + "longitude": "13.05032000" + }, + { + "id": "138895", + "name": "Genazzano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.82807000", + "longitude": "12.97196000" + }, + { + "id": "138897", + "name": "Genio Civile", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.54807000", + "longitude": "12.69161000" + }, + { + "id": "138904", + "name": "Genzano di Roma", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.70706000", + "longitude": "12.68904000" + }, + { + "id": "138909", + "name": "Gerano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.93474000", + "longitude": "12.99034000" + }, + { + "id": "138981", + "name": "Girardi-Bellavista-Terrazze", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10266000", + "longitude": "12.57960000" + }, + { + "id": "138990", + "name": "Giulianello", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68610000", + "longitude": "12.87917000" + }, + { + "id": "138992", + "name": "Giuliano di Roma", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.53933000", + "longitude": "13.28028000" + }, + { + "id": "139026", + "name": "Gorga", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.65468000", + "longitude": "13.10663000" + }, + { + "id": "139052", + "name": "Gradoli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.64502000", + "longitude": "11.85580000" + }, + { + "id": "139054", + "name": "Graffignano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.57539000", + "longitude": "12.20121000" + }, + { + "id": "139120", + "name": "Grottaferrata", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.78664000", + "longitude": "12.67144000" + }, + { + "id": "139127", + "name": "Grotte di Castro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.67567000", + "longitude": "11.86908000" + }, + { + "id": "139126", + "name": "Grotte Santo Stefano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.51691000", + "longitude": "12.17226000" + }, + { + "id": "139143", + "name": "Grunuovo-Campomaggiore San Luca", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27228000", + "longitude": "13.80684000" + }, + { + "id": "139152", + "name": "Guarcino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.79917000", + "longitude": "13.31439000" + }, + { + "id": "139178", + "name": "Guidonia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99232000", + "longitude": "12.71876000" + }, + { + "id": "139179", + "name": "Guidonia Montecelio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99362000", + "longitude": "12.72238000" + }, + { + "id": "139229", + "name": "Ischia di Castro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54420000", + "longitude": "11.75759000" + }, + { + "id": "139246", + "name": "Isola del Liri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68678000", + "longitude": "13.59679000" + }, + { + "id": "139268", + "name": "Itri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.29034000", + "longitude": "13.53000000" + }, + { + "id": "139275", + "name": "Jenne", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88882000", + "longitude": "13.16959000" + }, + { + "id": "139286", + "name": "La Botte", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98176000", + "longitude": "12.76775000" + }, + { + "id": "139291", + "name": "La Forma", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.83449000", + "longitude": "13.09092000" + }, + { + "id": "139296", + "name": "La Massimina-Casal Lumbroso", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87332000", + "longitude": "12.35694000" + }, + { + "id": "139310", + "name": "Labico", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.79260000", + "longitude": "12.87127000" + }, + { + "id": "139311", + "name": "Labro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52603000", + "longitude": "12.80068000" + }, + { + "id": "139318", + "name": "Ladispoli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95068000", + "longitude": "12.07500000" + }, + { + "id": "139322", + "name": "Laghetto", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.96734000", + "longitude": "12.65609000" + }, + { + "id": "139361", + "name": "Lanuvio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67297000", + "longitude": "12.69403000" + }, + { + "id": "139375", + "name": "Lariano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71847000", + "longitude": "12.82868000" + }, + { + "id": "139386", + "name": "Latera", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.62922000", + "longitude": "11.82922000" + }, + { + "id": "139390", + "name": "Latina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.46614000", + "longitude": "12.90430000" + }, + { + "id": "139391", + "name": "Latina Scalo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.53157000", + "longitude": "12.94567000" + }, + { + "id": "139417", + "name": "Lavinio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50350000", + "longitude": "12.58973000" + }, + { + "id": "139426", + "name": "Le Forna", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92475000", + "longitude": "12.96896000" + }, + { + "id": "139429", + "name": "Le Rughe", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06885000", + "longitude": "12.37624000" + }, + { + "id": "139448", + "name": "Lenola", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.40485000", + "longitude": "13.45934000" + }, + { + "id": "139456", + "name": "Leonessa", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.56855000", + "longitude": "12.95996000" + }, + { + "id": "139496", + "name": "Licenza", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.07413000", + "longitude": "12.90008000" + }, + { + "id": "139504", + "name": "Lido dei Pini", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.53660000", + "longitude": "12.58976000" + }, + { + "id": "139507", + "name": "Lido di Ostia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73212000", + "longitude": "12.27654000" + }, + { + "id": "139524", + "name": "Limiti di Greccio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.45329000", + "longitude": "12.76955000" + }, + { + "id": "139599", + "name": "Longone Sabino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.27260000", + "longitude": "12.96653000" + }, + { + "id": "139628", + "name": "Lubriano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.63623000", + "longitude": "12.10876000" + }, + { + "id": "139688", + "name": "Maccarese", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87696000", + "longitude": "12.21975000" + }, + { + "id": "139699", + "name": "Macere", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74873000", + "longitude": "12.85835000" + }, + { + "id": "139713", + "name": "Maenza", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52402000", + "longitude": "13.18344000" + }, + { + "id": "139726", + "name": "Magliano Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15750000", + "longitude": "12.43662000" + }, + { + "id": "139727", + "name": "Magliano Sabina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36568000", + "longitude": "12.48520000" + }, + { + "id": "139786", + "name": "Mandela", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02795000", + "longitude": "12.92089000" + }, + { + "id": "139808", + "name": "Mantiglia di Ardea", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67685000", + "longitude": "12.61453000" + }, + { + "id": "139813", + "name": "Manziana", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.12998000", + "longitude": "12.12537000" + }, + { + "id": "139821", + "name": "Marano Equo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99535000", + "longitude": "13.01501000" + }, + { + "id": "139830", + "name": "Maranola-Trivio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.28522000", + "longitude": "13.62777000" + }, + { + "id": "139838", + "name": "Marcellina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02436000", + "longitude": "12.80445000" + }, + { + "id": "139841", + "name": "Marcetelli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.22663000", + "longitude": "13.04589000" + }, + { + "id": "139853", + "name": "Marco Simone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95544000", + "longitude": "12.64775000" + }, + { + "id": "139877", + "name": "Marina di Ardea-Tor San Lorenzo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55439000", + "longitude": "12.54115000" + }, + { + "id": "139883", + "name": "Marina di Cerveteri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.97997000", + "longitude": "12.05295000" + }, + { + "id": "139874", + "name": "Marina San Nicola", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.93102000", + "longitude": "12.12024000" + }, + { + "id": "139900", + "name": "Marino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76984000", + "longitude": "12.65917000" + }, + { + "id": "139925", + "name": "Marta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.53318000", + "longitude": "11.92423000" + }, + { + "id": "140006", + "name": "Mazzano Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20597000", + "longitude": "12.39554000" + }, + { + "id": "140065", + "name": "Mentana", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.03539000", + "longitude": "12.64413000" + }, + { + "id": "140130", + "name": "Micigliano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.45203000", + "longitude": "13.05318000" + }, + { + "id": "140162", + "name": "Minturno", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.26294000", + "longitude": "13.74583000" + }, + { + "id": "140212", + "name": "Molella", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.26009000", + "longitude": "13.06221000" + }, + { + "id": "140246", + "name": "Mompeo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24780000", + "longitude": "12.75130000" + }, + { + "id": "140336", + "name": "Montalto di Castro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.34983000", + "longitude": "11.60788000" + }, + { + "id": "140348", + "name": "Montasola", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.38495000", + "longitude": "12.68127000" + }, + { + "id": "140353", + "name": "Monte Caminetto", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06650000", + "longitude": "12.47358000" + }, + { + "id": "140362", + "name": "Monte Migliore La Selvotta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.72060000", + "longitude": "12.50206000" + }, + { + "id": "140364", + "name": "Monte Porzio Catone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.81585000", + "longitude": "12.71432000" + }, + { + "id": "140367", + "name": "Monte Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26745000", + "longitude": "11.89658000" + }, + { + "id": "140368", + "name": "Monte San Biagio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.35360000", + "longitude": "13.35184000" + }, + { + "id": "140371", + "name": "Monte San Giovanni Campano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.64310000", + "longitude": "13.51088000" + }, + { + "id": "140372", + "name": "Monte San Giovanni in Sabina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32703000", + "longitude": "12.77858000" + }, + { + "id": "140374", + "name": "Monte San Marino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71200000", + "longitude": "13.31199000" + }, + { + "id": "140394", + "name": "Montebuono", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36770000", + "longitude": "12.59721000" + }, + { + "id": "140413", + "name": "Montecelio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02067000", + "longitude": "12.74354000" + }, + { + "id": "140419", + "name": "Montecompatri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80892000", + "longitude": "12.73778000" + }, + { + "id": "140437", + "name": "Montefiascone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54255000", + "longitude": "12.03192000" + }, + { + "id": "140442", + "name": "Monteflavio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10935000", + "longitude": "12.83076000" + }, + { + "id": "140464", + "name": "Montelanico", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.65069000", + "longitude": "13.04027000" + }, + { + "id": "140466", + "name": "Montelarco", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.16339000", + "longitude": "12.48398000" + }, + { + "id": "140468", + "name": "Monteleone Sabino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23267000", + "longitude": "12.85828000" + }, + { + "id": "140475", + "name": "Montelibretti", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13553000", + "longitude": "12.73868000" + }, + { + "id": "140501", + "name": "Montenero Sabino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.28123000", + "longitude": "12.81358000" + }, + { + "id": "140521", + "name": "Monterosi", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.19698000", + "longitude": "12.30842000" + }, + { + "id": "140526", + "name": "Monterotondo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.05159000", + "longitude": "12.61969000" + }, + { + "id": "140581", + "name": "Montopoli in Sabina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24593000", + "longitude": "12.69208000" + }, + { + "id": "140585", + "name": "Montorio Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13738000", + "longitude": "12.80404000" + }, + { + "id": "140617", + "name": "Moricone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.11661000", + "longitude": "12.77234000" + }, + { + "id": "140622", + "name": "Morlupo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15002000", + "longitude": "12.50306000" + }, + { + "id": "140629", + "name": "Morolo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63838000", + "longitude": "13.19809000" + }, + { + "id": "140632", + "name": "Morro Reatino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52226000", + "longitude": "12.83449000" + }, + { + "id": "140733", + "name": "Nazzano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23018000", + "longitude": "12.59440000" + }, + { + "id": "140740", + "name": "Nemi", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.72185000", + "longitude": "12.71809000" + }, + { + "id": "140744", + "name": "Nepi", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24221000", + "longitude": "12.34355000" + }, + { + "id": "140747", + "name": "Nerola", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.16011000", + "longitude": "12.78529000" + }, + { + "id": "140750", + "name": "Nespolo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15671000", + "longitude": "13.06938000" + }, + { + "id": "140753", + "name": "Nettuno", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45794000", + "longitude": "12.66393000" + }, + { + "id": "140808", + "name": "Norma", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.58643000", + "longitude": "12.97073000" + }, + { + "id": "140889", + "name": "Olevano Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.85869000", + "longitude": "13.03601000" + }, + { + "id": "140920", + "name": "Onano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.69104000", + "longitude": "11.81552000" + }, + { + "id": "140959", + "name": "Oriolo Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.16261000", + "longitude": "12.13859000" + }, + { + "id": "140981", + "name": "Orte", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.46117000", + "longitude": "12.38635000" + }, + { + "id": "140982", + "name": "Orte Scalo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.43483000", + "longitude": "12.40783000" + }, + { + "id": "140995", + "name": "Orvinio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13039000", + "longitude": "12.93762000" + }, + { + "id": "141036", + "name": "Osteria Nuova", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.03721000", + "longitude": "12.30924000" + }, + { + "id": "58202", + "name": "Paganico Sabino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.18963000", + "longitude": "12.99689000" + }, + { + "id": "58241", + "name": "Palestrina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.83274000", + "longitude": "12.88178000" + }, + { + "id": "58243", + "name": "Paliano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77975000", + "longitude": "13.07661000" + }, + { + "id": "58263", + "name": "Palombara Sabina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.06909000", + "longitude": "12.76684000" + }, + { + "id": "58299", + "name": "Parco Leonardo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80035000", + "longitude": "12.30028000" + }, + { + "id": "58335", + "name": "Passoscuro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90209000", + "longitude": "12.15723000" + }, + { + "id": "58337", + "name": "Pastena", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.46842000", + "longitude": "13.49111000" + }, + { + "id": "58348", + "name": "Patrica", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59085000", + "longitude": "13.24363000" + }, + { + "id": "58362", + "name": "Pavona", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.72629000", + "longitude": "12.61642000" + }, + { + "id": "58401", + "name": "Penitro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.27328000", + "longitude": "13.69262000" + }, + { + "id": "58414", + "name": "Percile", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09497000", + "longitude": "12.91048000" + }, + { + "id": "58458", + "name": "Pescia Romana", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.39963000", + "longitude": "11.49651000" + }, + { + "id": "58465", + "name": "Pescorocchiano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20623000", + "longitude": "13.14715000" + }, + { + "id": "58467", + "name": "Pescosolido", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74864000", + "longitude": "13.65690000" + }, + { + "id": "58479", + "name": "Petrella Salto", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29405000", + "longitude": "13.06794000" + }, + { + "id": "58551", + "name": "Piansano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52449000", + "longitude": "11.82978000" + }, + { + "id": "58581", + "name": "Picinisco", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.64568000", + "longitude": "13.86791000" + }, + { + "id": "58582", + "name": "Pico", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45025000", + "longitude": "13.55894000" + }, + { + "id": "58591", + "name": "Piedimonte San Germano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.49796000", + "longitude": "13.75017000" + }, + { + "id": "58592", + "name": "Piedimonte San Germano Alta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50446000", + "longitude": "13.74909000" + }, + { + "id": "58659", + "name": "Piglio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.83006000", + "longitude": "13.13330000" + }, + { + "id": "58661", + "name": "Pignataro Interamna", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.43922000", + "longitude": "13.78621000" + }, + { + "id": "58712", + "name": "Pisoniano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90816000", + "longitude": "12.95794000" + }, + { + "id": "58746", + "name": "Pofi", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.56542000", + "longitude": "13.41460000" + }, + { + "id": "58752", + "name": "Poggio Bustone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.50330000", + "longitude": "12.88524000" + }, + { + "id": "58753", + "name": "Poggio Catino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29420000", + "longitude": "12.69838000" + }, + { + "id": "58754", + "name": "Poggio Ellera", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.11380000", + "longitude": "12.37174000" + }, + { + "id": "58756", + "name": "Poggio Mirteto", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26763000", + "longitude": "12.68837000" + }, + { + "id": "58757", + "name": "Poggio Moiano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20411000", + "longitude": "12.88136000" + }, + { + "id": "58758", + "name": "Poggio Nativo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21783000", + "longitude": "12.79691000" + }, + { + "id": "58762", + "name": "Poggio San Lorenzo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25174000", + "longitude": "12.84343000" + }, + { + "id": "58786", + "name": "Poli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88913000", + "longitude": "12.89037000" + }, + { + "id": "58815", + "name": "Pomezia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.66931000", + "longitude": "12.50124000" + }, + { + "id": "58840", + "name": "Ponte Galeria-La Pisana", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84634000", + "longitude": "12.33925000" + }, + { + "id": "58866", + "name": "Pontecorvo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45861000", + "longitude": "13.66618000" + }, + { + "id": "58888", + "name": "Pontinia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.41097000", + "longitude": "13.04259000" + }, + { + "id": "58892", + "name": "Ponton dell'Elce", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02270000", + "longitude": "12.23505000" + }, + { + "id": "58894", + "name": "Ponza", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89541000", + "longitude": "12.95889000" + }, + { + "id": "58897", + "name": "Ponzano Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25693000", + "longitude": "12.57047000" + }, + { + "id": "58958", + "name": "Posta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52562000", + "longitude": "13.09723000" + }, + { + "id": "58959", + "name": "Posta Fibreno", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69189000", + "longitude": "13.68013000" + }, + { + "id": "58975", + "name": "Pozzaglia Sabino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15863000", + "longitude": "12.96428000" + }, + { + "id": "59032", + "name": "Prato di Coppola", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.41750000", + "longitude": "12.88157000" + }, + { + "id": "59083", + "name": "Priverno", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.47047000", + "longitude": "13.17867000" + }, + { + "id": "59085", + "name": "Proceno", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.75745000", + "longitude": "11.82900000" + }, + { + "id": "59094", + "name": "Prossedi", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.51674000", + "longitude": "13.26100000" + }, + { + "id": "59133", + "name": "Provincia di Frosinone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61667000", + "longitude": "13.45000000" + }, + { + "id": "59140", + "name": "Provincia di Latina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45000000", + "longitude": "13.10000000" + }, + { + "id": "59169", + "name": "Provincia di Rieti", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.39133000", + "longitude": "12.95072000" + }, + { + "id": "59190", + "name": "Provincia di Viterbo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.41667000", + "longitude": "12.08333000" + }, + { + "id": "59324", + "name": "Regolelli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.29315000", + "longitude": "12.35131000" + }, + { + "id": "59357", + "name": "Riano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.09347000", + "longitude": "12.51462000" + }, + { + "id": "59374", + "name": "Rieti", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.40476000", + "longitude": "12.85735000" + }, + { + "id": "59377", + "name": "Rignano Flaminio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.20550000", + "longitude": "12.48068000" + }, + { + "id": "59391", + "name": "Riofreddo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.05875000", + "longitude": "12.99661000" + }, + { + "id": "59411", + "name": "Ripi", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61366000", + "longitude": "13.42400000" + }, + { + "id": "59440", + "name": "Rivodutri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.51684000", + "longitude": "12.85595000" + }, + { + "id": "59466", + "name": "Rocca Canterano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95652000", + "longitude": "13.02179000" + }, + { + "id": "59482", + "name": "Rocca d'Arce", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.58712000", + "longitude": "13.58511000" + }, + { + "id": "59486", + "name": "Rocca di Cave", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84589000", + "longitude": "12.94509000" + }, + { + "id": "59489", + "name": "Rocca di Papa", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76580000", + "longitude": "12.70188000" + }, + { + "id": "59472", + "name": "Rocca Massima", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67907000", + "longitude": "12.92116000" + }, + { + "id": "59475", + "name": "Rocca Priora", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76585000", + "longitude": "12.76577000" + }, + { + "id": "59479", + "name": "Rocca Santo Stefano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.91052000", + "longitude": "13.02379000" + }, + { + "id": "59480", + "name": "Rocca Sinibalda", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.27215000", + "longitude": "12.92469000" + }, + { + "id": "59502", + "name": "Roccagiovine", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.05069000", + "longitude": "12.89925000" + }, + { + "id": "59504", + "name": "Roccagorga", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52511000", + "longitude": "13.15510000" + }, + { + "id": "59512", + "name": "Roccantica", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32073000", + "longitude": "12.69398000" + }, + { + "id": "59519", + "name": "Roccasecca", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55132000", + "longitude": "13.66711000" + }, + { + "id": "59521", + "name": "Roccasecca dei Volsci", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.47852000", + "longitude": "13.21280000" + }, + { + "id": "59520", + "name": "Roccasecca Stazione", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.53333000", + "longitude": "13.65000000" + }, + { + "id": "59566", + "name": "Roiate", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87332000", + "longitude": "13.06627000" + }, + { + "id": "59582", + "name": "Rome", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.89193000", + "longitude": "12.51133000" + }, + { + "id": "59599", + "name": "Ronciglione", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.28899000", + "longitude": "12.21479000" + }, + { + "id": "59684", + "name": "Roviano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.02643000", + "longitude": "12.99390000" + }, + { + "id": "59711", + "name": "Sabaudia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30025000", + "longitude": "13.02815000" + }, + { + "id": "59721", + "name": "Sacrofano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10457000", + "longitude": "12.44781000" + }, + { + "id": "59774", + "name": "Salisano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25947000", + "longitude": "12.74774000" + }, + { + "id": "59807", + "name": "Sambuci", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98536000", + "longitude": "12.93817000" + }, + { + "id": "59817", + "name": "San Bartolomeo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.48265000", + "longitude": "13.85747000" + }, + { + "id": "59842", + "name": "San Biagio Saracinisco", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61322000", + "longitude": "13.92758000" + }, + { + "id": "59863", + "name": "San Cesareo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.82113000", + "longitude": "12.80447000" + }, + { + "id": "59897", + "name": "San Donato Val di Comino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.70726000", + "longitude": "13.81220000" + }, + { + "id": "59909", + "name": "San Felice Circeo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23716000", + "longitude": "13.09416000" + }, + { + "id": "59964", + "name": "San Giorgio a Liri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.40584000", + "longitude": "13.75979000" + }, + { + "id": "59985", + "name": "San Giovanni Incarico", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50001000", + "longitude": "13.55864000" + }, + { + "id": "60002", + "name": "San Giovanni-Patoni", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77223000", + "longitude": "13.27510000" + }, + { + "id": "60014", + "name": "San Giuseppe le Prata-Cotropagno", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67788000", + "longitude": "13.39664000" + }, + { + "id": "60023", + "name": "San Gregorio da Sassola", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.91881000", + "longitude": "12.87447000" + }, + { + "id": "60043", + "name": "San Lorenzo Nuovo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.68626000", + "longitude": "11.90718000" + }, + { + "id": "60079", + "name": "San Martino al Cimino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36978000", + "longitude": "12.12515000" + }, + { + "id": "60206", + "name": "San Polo dei Cavalieri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.01037000", + "longitude": "12.83989000" + }, + { + "id": "60277", + "name": "San Vito Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88001000", + "longitude": "12.97793000" + }, + { + "id": "60288", + "name": "San Vittore del Lazio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.46212000", + "longitude": "13.93367000" + }, + { + "id": "60339", + "name": "Sant'Ambrogio sul Garigliano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.39423000", + "longitude": "13.86891000" + }, + { + "id": "60347", + "name": "Sant'Andrea del Garigliano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.36868000", + "longitude": "13.84198000" + }, + { + "id": "60371", + "name": "Sant'Angelo in Villa-Giglio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.66217000", + "longitude": "13.42871000" + }, + { + "id": "60361", + "name": "Sant'Angelo Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.03570000", + "longitude": "12.71342000" + }, + { + "id": "60385", + "name": "Sant'Apollinare", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.40176000", + "longitude": "13.82992000" + }, + { + "id": "60397", + "name": "Sant'Elia Fiumerapido", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.53304000", + "longitude": "13.86268000" + }, + { + "id": "60410", + "name": "Sant'Oreste", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23298000", + "longitude": "12.51507000" + }, + { + "id": "60446", + "name": "Santa Lucia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.98240000", + "longitude": "12.65625000" + }, + { + "id": "60484", + "name": "Santa Marinella", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.03425000", + "longitude": "11.85416000" + }, + { + "id": "60489", + "name": "Santa Rufina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.40897000", + "longitude": "12.91843000" + }, + { + "id": "60509", + "name": "Santi Cosma e Damiano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.30091000", + "longitude": "13.81565000" + }, + { + "id": "60529", + "name": "Santopadre", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.60193000", + "longitude": "13.63548000" + }, + { + "id": "60540", + "name": "Saracinesco", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00332000", + "longitude": "12.95329000" + }, + { + "id": "60566", + "name": "Sassacci", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.32342000", + "longitude": "12.44108000" + }, + { + "id": "60620", + "name": "Scandriglia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.16128000", + "longitude": "12.84096000" + }, + { + "id": "60689", + "name": "Segni", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68893000", + "longitude": "13.01934000" + }, + { + "id": "60694", + "name": "Selcetta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76529000", + "longitude": "12.47533000" + }, + { + "id": "60695", + "name": "Selci", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.30293000", + "longitude": "12.62135000" + }, + { + "id": "60745", + "name": "Sermoneta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.54919000", + "longitude": "12.98481000" + }, + { + "id": "60783", + "name": "Serrone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84212000", + "longitude": "13.09519000" + }, + { + "id": "60807", + "name": "Settefrati", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67045000", + "longitude": "13.85070000" + }, + { + "id": "60808", + "name": "Setteville", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94375000", + "longitude": "12.65122000" + }, + { + "id": "60824", + "name": "Sezze", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50032000", + "longitude": "13.06176000" + }, + { + "id": "60825", + "name": "Sezze Scalo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.49701000", + "longitude": "13.04257000" + }, + { + "id": "60832", + "name": "Sgurgola", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.66897000", + "longitude": "13.15009000" + }, + { + "id": "60941", + "name": "Sonnino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.41673000", + "longitude": "13.24592000" + }, + { + "id": "60944", + "name": "Sora", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71829000", + "longitude": "13.61356000" + }, + { + "id": "60960", + "name": "Soriano nel Cimino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.41820000", + "longitude": "12.23414000" + }, + { + "id": "60998", + "name": "Sperlonga", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.25897000", + "longitude": "13.43302000" + }, + { + "id": "61008", + "name": "Spigno Saturnia Inferiore", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.31146000", + "longitude": "13.73685000" + }, + { + "id": "61009", + "name": "Spigno Saturnia Superiore", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.31425000", + "longitude": "13.70888000" + }, + { + "id": "61076", + "name": "Stimigliano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.30103000", + "longitude": "12.56337000" + }, + { + "id": "61089", + "name": "Strangolagalli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59992000", + "longitude": "13.49228000" + }, + { + "id": "61109", + "name": "Subiaco", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.92619000", + "longitude": "13.08906000" + }, + { + "id": "61124", + "name": "Supino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62135000", + "longitude": "13.23452000" + }, + { + "id": "61133", + "name": "Sutri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24596000", + "longitude": "12.21715000" + }, + { + "id": "61162", + "name": "Tarano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.35593000", + "longitude": "12.59497000" + }, + { + "id": "61167", + "name": "Tarquinia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.25419000", + "longitude": "11.75657000" + }, + { + "id": "61200", + "name": "Tecchiena", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68822000", + "longitude": "13.34538000" + }, + { + "id": "61219", + "name": "Terelle", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55212000", + "longitude": "13.77841000" + }, + { + "id": "61235", + "name": "Terracina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.29174000", + "longitude": "13.24359000" + }, + { + "id": "61262", + "name": "Tessennano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.47803000", + "longitude": "11.79101000" + }, + { + "id": "61288", + "name": "Tivoli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95952000", + "longitude": "12.80160000" + }, + { + "id": "61296", + "name": "Toffia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21300000", + "longitude": "12.75500000" + }, + { + "id": "61299", + "name": "Tolfa", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.15023000", + "longitude": "11.93216000" + }, + { + "id": "61314", + "name": "Tor Lupara", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99771000", + "longitude": "12.61814000" + }, + { + "id": "61351", + "name": "Torre Caietani", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.78672000", + "longitude": "13.26520000" + }, + { + "id": "61396", + "name": "Torri in Sabina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.35057000", + "longitude": "12.64157000" + }, + { + "id": "61398", + "name": "Torrice", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63374000", + "longitude": "13.40375000" + }, + { + "id": "61404", + "name": "Torricella in Sabina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.26252000", + "longitude": "12.87170000" + }, + { + "id": "61409", + "name": "Torrita Tiberina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.23821000", + "longitude": "12.61633000" + }, + { + "id": "61419", + "name": "Torvaianica", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62112000", + "longitude": "12.46197000" + }, + { + "id": "61420", + "name": "Torvaianica Alta", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63162000", + "longitude": "12.49765000" + }, + { + "id": "61429", + "name": "Tragliatella Campitello", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.01334000", + "longitude": "12.25200000" + }, + { + "id": "61502", + "name": "Trevi nel Lazio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86258000", + "longitude": "13.24793000" + }, + { + "id": "61506", + "name": "Trevignano Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.16020000", + "longitude": "12.23775000" + }, + { + "id": "61541", + "name": "Trivigliano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77572000", + "longitude": "13.27230000" + }, + { + "id": "61570", + "name": "Turania", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.13517000", + "longitude": "13.00983000" + }, + { + "id": "61581", + "name": "Tuscania", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.41889000", + "longitude": "11.86846000" + }, + { + "id": "61625", + "name": "Vacone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.38100000", + "longitude": "12.64504000" + }, + { + "id": "61648", + "name": "Valcanneto", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95078000", + "longitude": "12.15734000" + }, + { + "id": "61662", + "name": "Valentano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.56377000", + "longitude": "11.82748000" + }, + { + "id": "61688", + "name": "Valle Martella", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87827000", + "longitude": "12.74677000" + }, + { + "id": "61693", + "name": "Valle Santa", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94532000", + "longitude": "12.31971000" + }, + { + "id": "61702", + "name": "Vallecorsa", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.44351000", + "longitude": "13.40634000" + }, + { + "id": "61711", + "name": "Vallemaio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.36628000", + "longitude": "13.80839000" + }, + { + "id": "61712", + "name": "Vallepietra", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.92552000", + "longitude": "13.23127000" + }, + { + "id": "61713", + "name": "Vallerano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.38331000", + "longitude": "12.26144000" + }, + { + "id": "61715", + "name": "Vallerotonda", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55135000", + "longitude": "13.91372000" + }, + { + "id": "61721", + "name": "Vallinfreda", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.08485000", + "longitude": "12.99595000" + }, + { + "id": "61732", + "name": "Valmontone", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77323000", + "longitude": "12.91856000" + }, + { + "id": "61765", + "name": "Varco Sabino", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.24016000", + "longitude": "13.02052000" + }, + { + "id": "61778", + "name": "Vasanello", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.41507000", + "longitude": "12.34767000" + }, + { + "id": "61798", + "name": "Vejano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.21905000", + "longitude": "12.09398000" + }, + { + "id": "61802", + "name": "Velletri", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68573000", + "longitude": "12.77753000" + }, + { + "id": "61828", + "name": "Ventotene", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79404000", + "longitude": "13.42777000" + }, + { + "id": "61862", + "name": "Veroli", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69433000", + "longitude": "13.41664000" + }, + { + "id": "61890", + "name": "Vetralla", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.31787000", + "longitude": "12.07323000" + }, + { + "id": "61909", + "name": "Vicalvi", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67809000", + "longitude": "13.70813000" + }, + { + "id": "61919", + "name": "Vico nel Lazio", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77822000", + "longitude": "13.34279000" + }, + { + "id": "61926", + "name": "Vicovaro", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.01924000", + "longitude": "12.90001000" + }, + { + "id": "61958", + "name": "Vignanello", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.37879000", + "longitude": "12.27845000" + }, + { + "id": "61984", + "name": "Villa Adriana", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95499000", + "longitude": "12.77216000" + }, + { + "id": "62002", + "name": "Villa Latina", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61522000", + "longitude": "13.83591000" + }, + { + "id": "62018", + "name": "Villa San Giovanni in Tuscia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.27882000", + "longitude": "12.05346000" + }, + { + "id": "62024", + "name": "Villa Santa Lucia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.51217000", + "longitude": "13.76929000" + }, + { + "id": "62028", + "name": "Villa Santo Stefano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.51683000", + "longitude": "13.31046000" + }, + { + "id": "62077", + "name": "Villalba", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95387000", + "longitude": "12.72938000" + }, + { + "id": "62095", + "name": "Villanova", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.96357000", + "longitude": "12.75633000" + }, + { + "id": "62179", + "name": "Viterbo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.41937000", + "longitude": "12.10560000" + }, + { + "id": "62180", + "name": "Viticuso", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52475000", + "longitude": "13.97027000" + }, + { + "id": "62182", + "name": "Vitinia", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.79124000", + "longitude": "12.40810000" + }, + { + "id": "62183", + "name": "Vitorchiano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.46565000", + "longitude": "12.17151000" + }, + { + "id": "62191", + "name": "Vivaro Romano", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.10095000", + "longitude": "13.00589000" + }, + { + "id": "62231", + "name": "Zagarolo", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "41.84159000", + "longitude": "12.81540000" + }, + { + "id": "62248", + "name": "Zepponami", + "state_id": 1678, + "state_code": "62", + "country_id": 107, + "country_code": "IT", + "latitude": "42.52518000", + "longitude": "12.05411000" + }, + { + "id": "135335", + "name": "Airole", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.87092000", + "longitude": "7.55414000" + }, + { + "id": "135344", + "name": "Alassio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00393000", + "longitude": "8.16713000" + }, + { + "id": "135362", + "name": "Albenga", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04997000", + "longitude": "8.21829000" + }, + { + "id": "135381", + "name": "Albisola Marina", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33079000", + "longitude": "8.50960000" + }, + { + "id": "135382", + "name": "Albisola Superiore", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33889000", + "longitude": "8.51046000" + }, + { + "id": "135431", + "name": "Altare", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33566000", + "longitude": "8.33411000" + }, + { + "id": "135467", + "name": "Ameglia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07089000", + "longitude": "9.96600000" + }, + { + "id": "135484", + "name": "Andora", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.95514000", + "longitude": "8.14121000" + }, + { + "id": "135539", + "name": "Apricale", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88033000", + "longitude": "7.65993000" + }, + { + "id": "135544", + "name": "Aquila di Arroscia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.08593000", + "longitude": "8.00525000" + }, + { + "id": "135571", + "name": "Arcola", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11778000", + "longitude": "9.91175000" + }, + { + "id": "135588", + "name": "Arenzano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40521000", + "longitude": "8.68315000" + }, + { + "id": "135616", + "name": "Armo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.08773000", + "longitude": "7.91545000" + }, + { + "id": "135620", + "name": "Arnasco", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07823000", + "longitude": "8.10745000" + }, + { + "id": "135690", + "name": "Aurigo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.98281000", + "longitude": "7.92342000" + }, + { + "id": "135697", + "name": "Avegno", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38285000", + "longitude": "9.15797000" + }, + { + "id": "135732", + "name": "Badalucco", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.91683000", + "longitude": "7.84584000" + }, + { + "id": "135781", + "name": "Bajardo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90402000", + "longitude": "7.72534000" + }, + { + "id": "135788", + "name": "Balestrino", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.12426000", + "longitude": "8.17064000" + }, + { + "id": "135841", + "name": "Bardineto", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.18972000", + "longitude": "8.13529000" + }, + { + "id": "135849", + "name": "Bargagli", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44750000", + "longitude": "9.09372000" + }, + { + "id": "135989", + "name": "Bergeggi", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24833000", + "longitude": "8.44402000" + }, + { + "id": "136025", + "name": "Beverino", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.19766000", + "longitude": "9.78537000" + }, + { + "id": "136090", + "name": "Bocco", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35111000", + "longitude": "9.30333000" + }, + { + "id": "136096", + "name": "Bogliasco", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38070000", + "longitude": "9.06926000" + }, + { + "id": "136098", + "name": "Boissano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.13583000", + "longitude": "8.22155000" + }, + { + "id": "136101", + "name": "Bolano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.18770000", + "longitude": "9.89488000" + }, + { + "id": "136124", + "name": "Bonassola", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.18323000", + "longitude": "9.58422000" + }, + { + "id": "136148", + "name": "Bordighera", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78064000", + "longitude": "7.66451000" + }, + { + "id": "136161", + "name": "Borghetto d'Arroscia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.05672000", + "longitude": "7.98076000" + }, + { + "id": "136163", + "name": "Borghetto di Vara", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22368000", + "longitude": "9.72118000" + }, + { + "id": "136160", + "name": "Borghetto Santo Spirito", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11187000", + "longitude": "8.24129000" + }, + { + "id": "136168", + "name": "Borgio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.15906000", + "longitude": "8.30832000" + }, + { + "id": "136200", + "name": "Borgo di Ranzo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.05963000", + "longitude": "8.01495000" + }, + { + "id": "136171", + "name": "Borgo Fornari-Pieve", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58933000", + "longitude": "8.93671000" + }, + { + "id": "136208", + "name": "Borgomaro", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.97530000", + "longitude": "7.94408000" + }, + { + "id": "136219", + "name": "Bormida", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27813000", + "longitude": "8.23235000" + }, + { + "id": "136220", + "name": "Bormida-Genepro", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39051000", + "longitude": "8.19952000" + }, + { + "id": "136235", + "name": "Borzonasca", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42002000", + "longitude": "9.38851000" + }, + { + "id": "136364", + "name": "Brugnato", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.23671000", + "longitude": "9.72496000" + }, + { + "id": "136418", + "name": "Busalla", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57060000", + "longitude": "8.94545000" + }, + { + "id": "136483", + "name": "Cairo Montenotte", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39790000", + "longitude": "8.27775000" + }, + { + "id": "136527", + "name": "Calice al Cornoviglio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24326000", + "longitude": "9.83671000" + }, + { + "id": "136526", + "name": "Calice Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20493000", + "longitude": "8.29535000" + }, + { + "id": "136530", + "name": "Calizzano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.23612000", + "longitude": "8.11817000" + }, + { + "id": "136597", + "name": "Camogli", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34945000", + "longitude": "9.15487000" + }, + { + "id": "136629", + "name": "Campo Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53658000", + "longitude": "8.69896000" + }, + { + "id": "136643", + "name": "Campochiesa", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07069000", + "longitude": "8.19712000" + }, + { + "id": "136670", + "name": "Campomorone", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50954000", + "longitude": "8.88502000" + }, + { + "id": "136676", + "name": "Camporosso", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81310000", + "longitude": "7.62829000" + }, + { + "id": "136836", + "name": "Carasco", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34975000", + "longitude": "9.34567000" + }, + { + "id": "136843", + "name": "Caravonica", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99303000", + "longitude": "7.95805000" + }, + { + "id": "136853", + "name": "Carcare", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35465000", + "longitude": "8.29039000" + }, + { + "id": "136908", + "name": "Carpasio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96024000", + "longitude": "7.86631000" + }, + { + "id": "136928", + "name": "Carro", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27215000", + "longitude": "9.60888000" + }, + { + "id": "136929", + "name": "Carrodano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24155000", + "longitude": "9.65578000" + }, + { + "id": "137020", + "name": "Casano-Dogana-Isola", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07565000", + "longitude": "10.03381000" + }, + { + "id": "137023", + "name": "Casanova Lerrone", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03213000", + "longitude": "8.04715000" + }, + { + "id": "137035", + "name": "Casarza Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27188000", + "longitude": "9.44704000" + }, + { + "id": "137042", + "name": "Casavecchia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52756000", + "longitude": "8.62157000" + }, + { + "id": "137058", + "name": "Casella", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53523000", + "longitude": "9.00080000" + }, + { + "id": "137160", + "name": "Castel Vittorio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92752000", + "longitude": "7.67471000" + }, + { + "id": "137181", + "name": "Castelbianco", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11423000", + "longitude": "8.07515000" + }, + { + "id": "137223", + "name": "Castellaro", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86436000", + "longitude": "7.86881000" + }, + { + "id": "137290", + "name": "Castelnuovo Magra", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.09957000", + "longitude": "10.01715000" + }, + { + "id": "137323", + "name": "Castelvecchio di Rocca Barbena", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.12983000", + "longitude": "8.11665000" + }, + { + "id": "137339", + "name": "Castiglione", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27539000", + "longitude": "9.51687000" + }, + { + "id": "137474", + "name": "Celle Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34509000", + "longitude": "8.54685000" + }, + { + "id": "137493", + "name": "Cengio Alto", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38443000", + "longitude": "8.19758000" + }, + { + "id": "137506", + "name": "Ceparana-Carpena", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.16667000", + "longitude": "9.88333000" + }, + { + "id": "137513", + "name": "Ceranesi", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50563000", + "longitude": "8.89343000" + }, + { + "id": "137546", + "name": "Ceriale", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.09128000", + "longitude": "8.22893000" + }, + { + "id": "137547", + "name": "Ceriana", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88091000", + "longitude": "7.77476000" + }, + { + "id": "137597", + "name": "Cervo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92572000", + "longitude": "8.11529000" + }, + { + "id": "137614", + "name": "Cesio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00803000", + "longitude": "7.97515000" + }, + { + "id": "137659", + "name": "Chiavari", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31771000", + "longitude": "9.32241000" + }, + { + "id": "137665", + "name": "Chiesa", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07787000", + "longitude": "8.10891000" + }, + { + "id": "137666", + "name": "Chiesa Nuova", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36976000", + "longitude": "9.31161000" + }, + { + "id": "137691", + "name": "Chiusanico", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.97303000", + "longitude": "7.99185000" + }, + { + "id": "137694", + "name": "Chiusavecchia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96726000", + "longitude": "7.98443000" + }, + { + "id": "137707", + "name": "Cicagna", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40714000", + "longitude": "9.23917000" + }, + { + "id": "137745", + "name": "Cipressa", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85205000", + "longitude": "7.93144000" + }, + { + "id": "137753", + "name": "Cisano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.08565000", + "longitude": "8.14829000" + }, + { + "id": "137779", + "name": "Civezza", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.87982000", + "longitude": "7.95165000" + }, + { + "id": "137842", + "name": "Cogoleto", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38996000", + "longitude": "8.64692000" + }, + { + "id": "137845", + "name": "Cogorno", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32074000", + "longitude": "9.37117000" + }, + { + "id": "137921", + "name": "Colombiera-Molicciara", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.08750000", + "longitude": "10.01037000" + }, + { + "id": "137972", + "name": "Conscenti", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34491000", + "longitude": "9.39537000" + }, + { + "id": "138006", + "name": "Coreglia Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38775000", + "longitude": "9.26097000" + }, + { + "id": "138080", + "name": "Cosio di Arroscia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07743000", + "longitude": "7.83244000" + }, + { + "id": "138086", + "name": "Cosseria", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36774000", + "longitude": "8.23485000" + }, + { + "id": "138106", + "name": "Costarainera", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85477000", + "longitude": "7.94106000" + }, + { + "id": "138159", + "name": "Crocefieschi", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58077000", + "longitude": "9.02360000" + }, + { + "id": "138231", + "name": "Davagna", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46585000", + "longitude": "9.08666000" + }, + { + "id": "138239", + "name": "Dego", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44455000", + "longitude": "8.30761000" + }, + { + "id": "138240", + "name": "Deiva Marina", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.21931000", + "longitude": "9.52064000" + }, + { + "id": "138260", + "name": "Diano Arentino", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.94962000", + "longitude": "8.04155000" + }, + { + "id": "138261", + "name": "Diano Castello", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92423000", + "longitude": "8.06602000" + }, + { + "id": "138262", + "name": "Diano Marina", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.91088000", + "longitude": "8.08029000" + }, + { + "id": "138263", + "name": "Diano San Pietro", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92953000", + "longitude": "8.07249000" + }, + { + "id": "138279", + "name": "Dolceacqua", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84975000", + "longitude": "7.62373000" + }, + { + "id": "138280", + "name": "Dolcedo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90735000", + "longitude": "7.94943000" + }, + { + "id": "138375", + "name": "Erli", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.13719000", + "longitude": "8.10430000" + }, + { + "id": "138455", + "name": "Fascia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58255000", + "longitude": "9.22136000" + }, + { + "id": "138458", + "name": "Favale di Malvaro", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45163000", + "longitude": "9.26000000" + }, + { + "id": "138464", + "name": "Feglino", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.21849000", + "longitude": "8.32436000" + }, + { + "id": "138487", + "name": "Ferrada", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42008000", + "longitude": "9.21016000" + }, + { + "id": "138497", + "name": "Ferriere", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44302000", + "longitude": "9.13675000" + }, + { + "id": "138536", + "name": "Finale Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.16952000", + "longitude": "8.34360000" + }, + { + "id": "138604", + "name": "Fontanigorda", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54540000", + "longitude": "9.30548000" + }, + { + "id": "138691", + "name": "Framura", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20946000", + "longitude": "9.55399000" + }, + { + "id": "138860", + "name": "Garlenda", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03325000", + "longitude": "8.09546000" + }, + { + "id": "138899", + "name": "Genoa", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40478000", + "longitude": "8.94439000" + }, + { + "id": "138999", + "name": "Giustenice", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17293000", + "longitude": "8.24305000" + }, + { + "id": "139001", + "name": "Giusvalla", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44794000", + "longitude": "8.39415000" + }, + { + "id": "139040", + "name": "Gorreto", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60485000", + "longitude": "9.29126000" + }, + { + "id": "139200", + "name": "Imperia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88917000", + "longitude": "8.03933000" + }, + { + "id": "139243", + "name": "Isola del Cantone", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64783000", + "longitude": "8.95746000" + }, + { + "id": "139253", + "name": "Isolabona", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88076000", + "longitude": "7.63993000" + }, + { + "id": "139257", + "name": "Isoverde", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52941000", + "longitude": "8.86049000" + }, + { + "id": "139305", + "name": "La Spezia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.10300000", + "longitude": "9.82375000" + }, + { + "id": "139330", + "name": "Laigueglia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.97590000", + "longitude": "8.15823000" + }, + { + "id": "139408", + "name": "Lavagna", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30620000", + "longitude": "9.35383000" + }, + { + "id": "139427", + "name": "Le Grazie", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.06699000", + "longitude": "9.83392000" + }, + { + "id": "139440", + "name": "Leivi", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35344000", + "longitude": "9.31074000" + }, + { + "id": "139464", + "name": "Lerici", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07587000", + "longitude": "9.91121000" + }, + { + "id": "139483", + "name": "Levanto", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17424000", + "longitude": "9.61670000" + }, + { + "id": "139557", + "name": "Loano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.12777000", + "longitude": "8.25743000" + }, + { + "id": "139615", + "name": "Lorsica", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43415000", + "longitude": "9.27677000" + }, + { + "id": "139633", + "name": "Lucinasco", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96602000", + "longitude": "7.96005000" + }, + { + "id": "139732", + "name": "Magliolo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.19253000", + "longitude": "8.24935000" + }, + { + "id": "139752", + "name": "Maissana", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33675000", + "longitude": "9.53588000" + }, + { + "id": "139768", + "name": "Mallare", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.28934000", + "longitude": "8.29695000" + }, + { + "id": "139795", + "name": "Manesseno", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47816000", + "longitude": "8.92784000" + }, + { + "id": "139876", + "name": "Marina di Andora", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.95353000", + "longitude": "8.15460000" + }, + { + "id": "139965", + "name": "Masone", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50162000", + "longitude": "8.71891000" + }, + { + "id": "139988", + "name": "Massimino", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29953000", + "longitude": "8.07134000" + }, + { + "id": "140038", + "name": "Mele", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44573000", + "longitude": "8.74889000" + }, + { + "id": "140062", + "name": "Mendatica", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07713000", + "longitude": "7.80564000" + }, + { + "id": "140110", + "name": "Mezzanego", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38275000", + "longitude": "9.37667000" + }, + { + "id": "140140", + "name": "Mignanego", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52748000", + "longitude": "8.91412000" + }, + { + "id": "140152", + "name": "Millesimo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36695000", + "longitude": "8.20354000" + }, + { + "id": "140164", + "name": "Mioglia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49214000", + "longitude": "8.41435000" + }, + { + "id": "140187", + "name": "Moconesi", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42065000", + "longitude": "9.20977000" + }, + { + "id": "140219", + "name": "Molini", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92594000", + "longitude": "7.93835000" + }, + { + "id": "140220", + "name": "Molini di Triora", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.98905000", + "longitude": "7.77463000" + }, + { + "id": "140221", + "name": "Molino Vecchio-Scapitola-Baio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55555000", + "longitude": "9.06816000" + }, + { + "id": "140226", + "name": "Molino-Pera", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48803000", + "longitude": "8.30899000" + }, + { + "id": "140277", + "name": "Moneglia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.23905000", + "longitude": "9.49081000" + }, + { + "id": "140332", + "name": "Montalto Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92868000", + "longitude": "7.84491000" + }, + { + "id": "140393", + "name": "Montebruno", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52577000", + "longitude": "9.24831000" + }, + { + "id": "140460", + "name": "Montegrosso Pian Latte", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.06631000", + "longitude": "7.81602000" + }, + { + "id": "140525", + "name": "Monterosso al Mare", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14666000", + "longitude": "9.65494000" + }, + { + "id": "140578", + "name": "Montoggio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51699000", + "longitude": "9.04923000" + }, + { + "id": "140690", + "name": "Murialdo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31693000", + "longitude": "8.16815000" + }, + { + "id": "140723", + "name": "Nasino-Borgo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11363000", + "longitude": "8.03205000" + }, + { + "id": "140737", + "name": "Neirone", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45482000", + "longitude": "9.19133000" + }, + { + "id": "140799", + "name": "Noli", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20608000", + "longitude": "8.41458000" + }, + { + "id": "140903", + "name": "Olivetta San Michele", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.87872000", + "longitude": "7.51504000" + }, + { + "id": "140929", + "name": "Onzo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07013000", + "longitude": "8.05225000" + }, + { + "id": "140945", + "name": "Orco Feglino", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22023000", + "longitude": "8.32455000" + }, + { + "id": "140948", + "name": "Orero", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40835000", + "longitude": "9.26707000" + }, + { + "id": "140989", + "name": "Ortovero", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.05385000", + "longitude": "8.09950000" + }, + { + "id": "141004", + "name": "Osiglia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.28145000", + "longitude": "8.20096000" + }, + { + "id": "141014", + "name": "Ospedaletti", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.80221000", + "longitude": "7.71830000" + }, + { + "id": "141038", + "name": "Osteria dei Cacciatori-Stella", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43044000", + "longitude": "8.47120000" + }, + { + "id": "141084", + "name": "Padivarma", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.19648000", + "longitude": "9.76753000" + }, + { + "id": "58251", + "name": "Pallare", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32770000", + "longitude": "8.27864000" + }, + { + "id": "58379", + "name": "Pedemonte", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50307000", + "longitude": "8.92614000" + }, + { + "id": "58425", + "name": "Perinaldo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86689000", + "longitude": "7.67194000" + }, + { + "id": "58511", + "name": "Piana Battolla", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.19322000", + "longitude": "9.85345000" + }, + { + "id": "58512", + "name": "Piana Crixia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48504000", + "longitude": "8.30805000" + }, + { + "id": "58538", + "name": "Piano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31680000", + "longitude": "8.16639000" + }, + { + "id": "58543", + "name": "Piano di Follo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.16375000", + "longitude": "9.86188000" + }, + { + "id": "58578", + "name": "Piccarello", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48392000", + "longitude": "8.96595000" + }, + { + "id": "58601", + "name": "Pietra Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14920000", + "longitude": "8.28206000" + }, + { + "id": "58606", + "name": "Pietrabruna", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88927000", + "longitude": "7.90319000" + }, + { + "id": "58654", + "name": "Pieve di Teco", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04706000", + "longitude": "7.91564000" + }, + { + "id": "58655", + "name": "Pieve di Zignago", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27790000", + "longitude": "9.74573000" + }, + { + "id": "58636", + "name": "Pieve Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37494000", + "longitude": "9.09410000" + }, + { + "id": "58660", + "name": "Pigna", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93205000", + "longitude": "7.66123000" + }, + { + "id": "58664", + "name": "Pignone", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17780000", + "longitude": "9.72327000" + }, + { + "id": "58717", + "name": "Pitelli", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.09458000", + "longitude": "9.88490000" + }, + { + "id": "58740", + "name": "Plodio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35394000", + "longitude": "8.24725000" + }, + { + "id": "58818", + "name": "Pompeiana", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85297000", + "longitude": "7.88836000" + }, + { + "id": "58868", + "name": "Pontedassio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93830000", + "longitude": "8.01464000" + }, + { + "id": "58889", + "name": "Pontinvrea", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44205000", + "longitude": "8.43623000" + }, + { + "id": "58908", + "name": "Pornassio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07053000", + "longitude": "7.86954000" + }, + { + "id": "58945", + "name": "Portofino", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30349000", + "longitude": "9.20942000" + }, + { + "id": "58950", + "name": "Portovenere", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.05083000", + "longitude": "9.83431000" + }, + { + "id": "59021", + "name": "Prati", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38290000", + "longitude": "9.37567000" + }, + { + "id": "59051", + "name": "Prelà Castello", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.94006000", + "longitude": "7.94409000" + }, + { + "id": "59091", + "name": "Propata", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56487000", + "longitude": "9.18587000" + }, + { + "id": "59134", + "name": "Provincia di Genova", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50000000", + "longitude": "9.06667000" + }, + { + "id": "59137", + "name": "Provincia di Imperia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96667000", + "longitude": "7.78333000" + }, + { + "id": "59139", + "name": "Provincia di La Spezia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.25000000", + "longitude": "9.70000000" + }, + { + "id": "59174", + "name": "Provincia di Savona", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30000000", + "longitude": "8.26667000" + }, + { + "id": "59242", + "name": "Quiliano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29215000", + "longitude": "8.41406000" + }, + { + "id": "59284", + "name": "Rapallo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34960000", + "longitude": "9.22796000" + }, + { + "id": "59311", + "name": "Recco", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36227000", + "longitude": "9.14354000" + }, + { + "id": "59348", + "name": "Rezzo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.02101000", + "longitude": "7.87199000" + }, + { + "id": "59349", + "name": "Rezzoaglio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52625000", + "longitude": "9.38827000" + }, + { + "id": "59356", + "name": "Rialto", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22653000", + "longitude": "8.26135000" + }, + { + "id": "59368", + "name": "Riccò del Golfo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.15410000", + "longitude": "9.76414000" + }, + { + "id": "59395", + "name": "Riomaggiore", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.09979000", + "longitude": "9.73869000" + }, + { + "id": "59416", + "name": "Riva Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83883000", + "longitude": "7.87935000" + }, + { + "id": "59528", + "name": "Roccavignale", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36124000", + "longitude": "8.19055000" + }, + { + "id": "59544", + "name": "Rocchetta di Vara", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.25059000", + "longitude": "9.75791000" + }, + { + "id": "59538", + "name": "Rocchetta Nervina", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88988000", + "longitude": "7.60071000" + }, + { + "id": "59587", + "name": "Romito Magra", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.09838000", + "longitude": "9.93180000" + }, + { + "id": "59605", + "name": "Ronco Scrivia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61357000", + "longitude": "8.95042000" + }, + { + "id": "59614", + "name": "Rondanina", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56325000", + "longitude": "9.21806000" + }, + { + "id": "59650", + "name": "Rossi", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00029000", + "longitude": "8.05884000" + }, + { + "id": "59651", + "name": "Rossiglione", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56358000", + "longitude": "8.66956000" + }, + { + "id": "59670", + "name": "Rovegno", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57675000", + "longitude": "9.27917000" + }, + { + "id": "59821", + "name": "San Bartolomeo al Mare", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92312000", + "longitude": "8.10482000" + }, + { + "id": "59843", + "name": "San Biagio della Cima", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81784000", + "longitude": "7.65133000" + }, + { + "id": "59904", + "name": "San Fedele-Lusignano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04559000", + "longitude": "8.18078000" + }, + { + "id": "59980", + "name": "San Giovanni", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39367000", + "longitude": "8.49701000" + }, + { + "id": "60039", + "name": "San Lorenzo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17302000", + "longitude": "8.24424000" + }, + { + "id": "60044", + "name": "San Lorenzo al Mare", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85378000", + "longitude": "7.96406000" + }, + { + "id": "60190", + "name": "San Pietro d'Olba", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48762000", + "longitude": "8.58951000" + }, + { + "id": "60220", + "name": "San Remo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81725000", + "longitude": "7.77720000" + }, + { + "id": "60230", + "name": "San Salvatore", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33098000", + "longitude": "9.35479000" + }, + { + "id": "60255", + "name": "San Terenzo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.08543000", + "longitude": "9.89662000" + }, + { + "id": "60451", + "name": "Santa Margherita Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33456000", + "longitude": "9.21204000" + }, + { + "id": "60485", + "name": "Santa Marta", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50401000", + "longitude": "8.89268000" + }, + { + "id": "60517", + "name": "Santo Stefano al Mare", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83855000", + "longitude": "7.89728000" + }, + { + "id": "60518", + "name": "Santo Stefano d'Aveto", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54677000", + "longitude": "9.45325000" + }, + { + "id": "60522", + "name": "Santo Stefano di Magra", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14891000", + "longitude": "9.92185000" + }, + { + "id": "60563", + "name": "Sarzana", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11178000", + "longitude": "9.96220000" + }, + { + "id": "60569", + "name": "Sassello", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48036000", + "longitude": "8.49375000" + }, + { + "id": "60592", + "name": "Savignone", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56435000", + "longitude": "8.98726000" + }, + { + "id": "60599", + "name": "Savona", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30905000", + "longitude": "8.47715000" + }, + { + "id": "60651", + "name": "Sciarborasca", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40182000", + "longitude": "8.61541000" + }, + { + "id": "60674", + "name": "Seborga", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82730000", + "longitude": "7.69585000" + }, + { + "id": "60751", + "name": "Serra Riccò", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51071000", + "longitude": "8.93806000" + }, + { + "id": "60792", + "name": "Sesta Godano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29375000", + "longitude": "9.67535000" + }, + { + "id": "60803", + "name": "Sestri Levante", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27317000", + "longitude": "9.39683000" + }, + { + "id": "60912", + "name": "Soldano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82954000", + "longitude": "7.65627000" + }, + { + "id": "60957", + "name": "Sori", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37301000", + "longitude": "9.10470000" + }, + { + "id": "61031", + "name": "Spotorno", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22638000", + "longitude": "8.41647000" + }, + { + "id": "61057", + "name": "Stazione-Fornola", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.12984000", + "longitude": "9.89159000" + }, + { + "id": "61064", + "name": "Stellanello", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99993000", + "longitude": "8.06025000" + }, + { + "id": "61140", + "name": "Taggia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84612000", + "longitude": "7.85223000" + }, + { + "id": "61259", + "name": "Terzorio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85232000", + "longitude": "7.89835000" + }, + { + "id": "61264", + "name": "Testico", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00553000", + "longitude": "8.02639000" + }, + { + "id": "61277", + "name": "Tiglieto", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52324000", + "longitude": "8.61925000" + }, + { + "id": "61297", + "name": "Toirano", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.12732000", + "longitude": "8.20725000" + }, + { + "id": "61405", + "name": "Torriglia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51755000", + "longitude": "9.15811000" + }, + { + "id": "61425", + "name": "Tovo San Giacomo", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17593000", + "longitude": "8.27045000" + }, + { + "id": "61517", + "name": "Tribogna", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41655000", + "longitude": "9.19557000" + }, + { + "id": "61533", + "name": "Triora", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99309000", + "longitude": "7.76369000" + }, + { + "id": "61603", + "name": "Urbe", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48714000", + "longitude": "8.58615000" + }, + { + "id": "61610", + "name": "Uscio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41233000", + "longitude": "9.16227000" + }, + { + "id": "61630", + "name": "Vado Centro", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.26857000", + "longitude": "8.43225000" + }, + { + "id": "61631", + "name": "Vado Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.26913000", + "longitude": "8.43375000" + }, + { + "id": "61699", + "name": "Valle di Vado", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.26183000", + "longitude": "8.41397000" + }, + { + "id": "61701", + "name": "Vallebona", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81220000", + "longitude": "7.66535000" + }, + { + "id": "61703", + "name": "Vallecrosia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78671000", + "longitude": "7.63902000" + }, + { + "id": "61708", + "name": "Valleggia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.28080000", + "longitude": "8.42967000" + }, + { + "id": "61749", + "name": "Valzemola", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36393000", + "longitude": "8.17376000" + }, + { + "id": "61764", + "name": "Varazze", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36412000", + "longitude": "8.59630000" + }, + { + "id": "61770", + "name": "Varese Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37687000", + "longitude": "9.59372000" + }, + { + "id": "61779", + "name": "Vasia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93268000", + "longitude": "7.95389000" + }, + { + "id": "61813", + "name": "Vendone", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07693000", + "longitude": "8.07115000" + }, + { + "id": "61825", + "name": "Ventimiglia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78956000", + "longitude": "7.60872000" + }, + { + "id": "61856", + "name": "Vernazza", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.13501000", + "longitude": "9.68346000" + }, + { + "id": "61884", + "name": "Vessalico", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04559000", + "longitude": "7.96013000" + }, + { + "id": "61895", + "name": "Vezzano Ligure", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14144000", + "longitude": "9.88692000" + }, + { + "id": "61897", + "name": "Vezzi Portio", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22933000", + "longitude": "8.36505000" + }, + { + "id": "61997", + "name": "Villa Faraldi", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96843000", + "longitude": "8.08965000" + }, + { + "id": "62055", + "name": "Villafranca", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03297000", + "longitude": "8.10525000" + }, + { + "id": "62105", + "name": "Villanova d'Albenga", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04725000", + "longitude": "8.14336000" + }, + { + "id": "62198", + "name": "Vobbia", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60125000", + "longitude": "9.03866000" + }, + { + "id": "62263", + "name": "Zoagli", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33668000", + "longitude": "9.26680000" + }, + { + "id": "62279", + "name": "Zuccarello", + "state_id": 1768, + "state_code": "42", + "country_id": 107, + "country_code": "IT", + "latitude": "44.10973000", + "longitude": "8.11814000" + }, + { + "id": "135236", + "name": "Abbadia Cerreto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31217000", + "longitude": "9.59416000" + }, + { + "id": "135237", + "name": "Abbadia Lariana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89947000", + "longitude": "9.33518000" + }, + { + "id": "135241", + "name": "Abbazia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74800000", + "longitude": "9.84205000" + }, + { + "id": "135243", + "name": "Abbiategrasso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39821000", + "longitude": "8.91678000" + }, + { + "id": "135266", + "name": "Acquafredda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30697000", + "longitude": "10.41343000" + }, + { + "id": "135268", + "name": "Acquanegra Cremonese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16864000", + "longitude": "9.89074000" + }, + { + "id": "135269", + "name": "Acquanegra sul Chiese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16404000", + "longitude": "10.43323000" + }, + { + "id": "135288", + "name": "Adrara San Martino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70228000", + "longitude": "9.94896000" + }, + { + "id": "135289", + "name": "Adrara San Rocco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71578000", + "longitude": "9.95906000" + }, + { + "id": "135291", + "name": "Adro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62059000", + "longitude": "9.96159000" + }, + { + "id": "135308", + "name": "Agnadello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44516000", + "longitude": "9.55408000" + }, + { + "id": "135311", + "name": "Agnosine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64969000", + "longitude": "10.35267000" + }, + { + "id": "135314", + "name": "Agra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03668000", + "longitude": "8.76833000" + }, + { + "id": "135316", + "name": "Agrate Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57431000", + "longitude": "9.34793000" + }, + { + "id": "135322", + "name": "Aicurzio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63998000", + "longitude": "9.41495000" + }, + { + "id": "135336", + "name": "Airuno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75352000", + "longitude": "9.42765000" + }, + { + "id": "135340", + "name": "Alagna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16917000", + "longitude": "8.88947000" + }, + { + "id": "135349", + "name": "Albairate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41957000", + "longitude": "8.93744000" + }, + { + "id": "135352", + "name": "Albano Sant'Alessandro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68762000", + "longitude": "9.76651000" + }, + { + "id": "135356", + "name": "Albaredo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10293000", + "longitude": "9.59046000" + }, + { + "id": "135357", + "name": "Albaredo Arnaboldi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10666000", + "longitude": "9.24296000" + }, + { + "id": "135361", + "name": "Albavilla", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80038000", + "longitude": "9.18504000" + }, + { + "id": "135367", + "name": "Albese Con Cassano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79488000", + "longitude": "9.16364000" + }, + { + "id": "135373", + "name": "Albiate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65537000", + "longitude": "9.25035000" + }, + { + "id": "135375", + "name": "Albignano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50054000", + "longitude": "9.49299000" + }, + { + "id": "135379", + "name": "Albino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76444000", + "longitude": "9.79904000" + }, + { + "id": "135380", + "name": "Albiolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80558000", + "longitude": "8.93924000" + }, + { + "id": "135383", + "name": "Albizzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72698000", + "longitude": "8.80312000" + }, + { + "id": "135384", + "name": "Albonese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29285000", + "longitude": "8.70615000" + }, + { + "id": "135385", + "name": "Albosaggia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14749000", + "longitude": "9.85405000" + }, + { + "id": "135388", + "name": "Albuzzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18719000", + "longitude": "9.27383000" + }, + { + "id": "135401", + "name": "Alfianello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26698000", + "longitude": "10.14817000" + }, + { + "id": "135405", + "name": "Algua", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82584000", + "longitude": "9.72225000" + }, + { + "id": "135423", + "name": "Almè", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73883000", + "longitude": "9.61558000" + }, + { + "id": "135420", + "name": "Almenno San Bartolomeo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73912000", + "longitude": "9.58082000" + }, + { + "id": "135421", + "name": "Almenno San Salvatore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74971000", + "longitude": "9.59699000" + }, + { + "id": "135429", + "name": "Alserio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77888000", + "longitude": "9.20014000" + }, + { + "id": "135450", + "name": "Alzano Lombardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73681000", + "longitude": "9.72638000" + }, + { + "id": "135452", + "name": "Alzate Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76978000", + "longitude": "9.18204000" + }, + { + "id": "135464", + "name": "Ambivere", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71958000", + "longitude": "9.55015000" + }, + { + "id": "135482", + "name": "Andalo Valtellino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13599000", + "longitude": "9.47384000" + }, + { + "id": "135495", + "name": "Anfo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76575000", + "longitude": "10.49382000" + }, + { + "id": "135496", + "name": "Angera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77555000", + "longitude": "8.57861000" + }, + { + "id": "135499", + "name": "Angolo Terme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89168000", + "longitude": "10.14963000" + }, + { + "id": "135505", + "name": "Annicco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24344000", + "longitude": "9.87905000" + }, + { + "id": "135507", + "name": "Annone di Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80216000", + "longitude": "9.33119000" + }, + { + "id": "135512", + "name": "Antegnate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48648000", + "longitude": "9.79146000" + }, + { + "id": "135524", + "name": "Anzano del Parco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77006000", + "longitude": "9.19752000" + }, + { + "id": "135535", + "name": "Appiano Gentile", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73499000", + "longitude": "8.98103000" + }, + { + "id": "135538", + "name": "Aprica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15220000", + "longitude": "10.14884000" + }, + { + "id": "135562", + "name": "Arcene", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57717000", + "longitude": "9.61461000" + }, + { + "id": "135569", + "name": "Arcisate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85578000", + "longitude": "8.86823000" + }, + { + "id": "135573", + "name": "Arconate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54134000", + "longitude": "8.84891000" + }, + { + "id": "135574", + "name": "Arcore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62675000", + "longitude": "9.32454000" + }, + { + "id": "135579", + "name": "Ardenno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16714000", + "longitude": "9.64729000" + }, + { + "id": "135580", + "name": "Ardesio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93613000", + "longitude": "9.92950000" + }, + { + "id": "135581", + "name": "Ardole San Marino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15633000", + "longitude": "10.10546000" + }, + { + "id": "135586", + "name": "Arena Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09427000", + "longitude": "9.36312000" + }, + { + "id": "135589", + "name": "Arese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55048000", + "longitude": "9.07741000" + }, + { + "id": "135591", + "name": "Argegno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94218000", + "longitude": "9.12635000" + }, + { + "id": "135609", + "name": "Arlate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72363000", + "longitude": "9.44242000" + }, + { + "id": "135612", + "name": "Arluno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50344000", + "longitude": "8.94222000" + }, + { + "id": "135625", + "name": "Arosio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71933000", + "longitude": "9.20816000" + }, + { + "id": "135636", + "name": "Arsago Seprio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68764000", + "longitude": "8.73509000" + }, + { + "id": "135644", + "name": "Artogne", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85437000", + "longitude": "10.16646000" + }, + { + "id": "135647", + "name": "Arzago d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48137000", + "longitude": "9.56415000" + }, + { + "id": "135661", + "name": "Asola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22018000", + "longitude": "10.41214000" + }, + { + "id": "135664", + "name": "Assago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40887000", + "longitude": "9.12565000" + }, + { + "id": "135667", + "name": "Asso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86061000", + "longitude": "9.26730000" + }, + { + "id": "135692", + "name": "Aurogna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17147000", + "longitude": "9.35536000" + }, + { + "id": "135701", + "name": "Averara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98847000", + "longitude": "9.63160000" + }, + { + "id": "135707", + "name": "Aviatico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79758000", + "longitude": "9.77145000" + }, + { + "id": "135719", + "name": "Azzanello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31312000", + "longitude": "9.91973000" + }, + { + "id": "135720", + "name": "Azzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98096000", + "longitude": "9.20284000" + }, + { + "id": "135722", + "name": "Azzano Mella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45458000", + "longitude": "10.11717000" + }, + { + "id": "135723", + "name": "Azzano San Paolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65798000", + "longitude": "9.67305000" + }, + { + "id": "135725", + "name": "Azzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77803000", + "longitude": "8.79414000" + }, + { + "id": "135726", + "name": "Azzio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88468000", + "longitude": "8.70853000" + }, + { + "id": "135727", + "name": "Azzone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97903000", + "longitude": "10.11284000" + }, + { + "id": "135731", + "name": "Badalasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54217000", + "longitude": "9.55494000" + }, + { + "id": "135736", + "name": "Badia Pavese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12087000", + "longitude": "9.46866000" + }, + { + "id": "135740", + "name": "Badile", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35061000", + "longitude": "9.12705000" + }, + { + "id": "135751", + "name": "Bagnaria", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82726000", + "longitude": "9.12256000" + }, + { + "id": "135756", + "name": "Bagnatica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66088000", + "longitude": "9.78106000" + }, + { + "id": "135767", + "name": "Bagnolo Cremasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36117000", + "longitude": "9.61296000" + }, + { + "id": "135768", + "name": "Bagnolo Mella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42765000", + "longitude": "10.18638000" + }, + { + "id": "135770", + "name": "Bagnolo San Vito", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08892000", + "longitude": "10.87747000" + }, + { + "id": "135776", + "name": "Bagolino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82519000", + "longitude": "10.46183000" + }, + { + "id": "135789", + "name": "Ballabio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89629000", + "longitude": "9.42294000" + }, + { + "id": "135809", + "name": "Baraggia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85516000", + "longitude": "8.90885000" + }, + { + "id": "135813", + "name": "Baranzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52717000", + "longitude": "9.11724000" + }, + { + "id": "135814", + "name": "Barasso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84048000", + "longitude": "8.75683000" + }, + { + "id": "135824", + "name": "Barbariga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40508000", + "longitude": "10.05437000" + }, + { + "id": "135825", + "name": "Barbata", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47498000", + "longitude": "9.77736000" + }, + { + "id": "135829", + "name": "Barbianello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07571000", + "longitude": "9.20602000" + }, + { + "id": "135839", + "name": "Bardello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83597000", + "longitude": "8.69683000" + }, + { + "id": "135844", + "name": "Bareggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47927000", + "longitude": "8.99789000" + }, + { + "id": "135850", + "name": "Bargano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24031000", + "longitude": "9.44689000" + }, + { + "id": "135852", + "name": "Barghe", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67833000", + "longitude": "10.40775000" + }, + { + "id": "135855", + "name": "Bariano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51258000", + "longitude": "9.70366000" + }, + { + "id": "135859", + "name": "Barlassina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65558000", + "longitude": "9.12878000" + }, + { + "id": "135861", + "name": "Barni", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91111000", + "longitude": "9.26592000" + }, + { + "id": "135873", + "name": "Barzago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75548000", + "longitude": "9.31424000" + }, + { + "id": "135874", + "name": "Barzana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73340000", + "longitude": "9.56842000" + }, + { + "id": "135875", + "name": "Barzanò", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73257000", + "longitude": "9.31360000" + }, + { + "id": "135876", + "name": "Barzio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94349000", + "longitude": "9.46694000" + }, + { + "id": "135879", + "name": "Bascapè", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30598000", + "longitude": "9.31397000" + }, + { + "id": "135884", + "name": "Basiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58248000", + "longitude": "9.46325000" + }, + { + "id": "135886", + "name": "Basiglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35917000", + "longitude": "9.15855000" + }, + { + "id": "135891", + "name": "Bassano Bresciano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32827000", + "longitude": "10.12869000" + }, + { + "id": "135903", + "name": "Bastida de' Dossi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03976000", + "longitude": "8.92155000" + }, + { + "id": "135902", + "name": "Bastida Pancarana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08606000", + "longitude": "9.08515000" + }, + { + "id": "135906", + "name": "Battaglione-Bagnara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11638000", + "longitude": "10.06726000" + }, + { + "id": "135910", + "name": "Battuda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27466000", + "longitude": "9.07805000" + }, + { + "id": "135917", + "name": "Bedero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97776000", + "longitude": "8.71852000" + }, + { + "id": "135918", + "name": "Bedero Valcuvia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91088000", + "longitude": "8.79553000" + }, + { + "id": "135919", + "name": "Bedizzole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51038000", + "longitude": "10.42327000" + }, + { + "id": "135921", + "name": "Bedulita", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79138000", + "longitude": "9.55165000" + }, + { + "id": "135929", + "name": "Belforte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08097000", + "longitude": "10.56156000" + }, + { + "id": "135932", + "name": "Belgioioso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15933000", + "longitude": "9.31347000" + }, + { + "id": "135936", + "name": "Bellagio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98772000", + "longitude": "9.26182000" + }, + { + "id": "135937", + "name": "Bellano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04426000", + "longitude": "9.30734000" + }, + { + "id": "135943", + "name": "Bellinzago Lombardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54207000", + "longitude": "9.44595000" + }, + { + "id": "135950", + "name": "Bellusco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61958000", + "longitude": "9.41905000" + }, + { + "id": "135970", + "name": "Bema", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10819000", + "longitude": "9.56414000" + }, + { + "id": "135971", + "name": "Bene Lario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02898000", + "longitude": "9.18414000" + }, + { + "id": "135979", + "name": "Berbenno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81478000", + "longitude": "9.57105000" + }, + { + "id": "135980", + "name": "Berbenno di Valtellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16641000", + "longitude": "9.74734000" + }, + { + "id": "135983", + "name": "Beregazzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77019000", + "longitude": "8.95869000" + }, + { + "id": "135984", + "name": "Beregazzo con Figliaro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78068000", + "longitude": "8.94414000" + }, + { + "id": "135985", + "name": "Bereguardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25706000", + "longitude": "9.02735000" + }, + { + "id": "135987", + "name": "Bergamo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69601000", + "longitude": "9.66721000" + }, + { + "id": "135991", + "name": "Berlingo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50281000", + "longitude": "10.03436000" + }, + { + "id": "135993", + "name": "Bernareggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64778000", + "longitude": "9.40505000" + }, + { + "id": "135994", + "name": "Bernate Ticino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47873000", + "longitude": "8.81834000" + }, + { + "id": "136003", + "name": "Bertonico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23307000", + "longitude": "9.66806000" + }, + { + "id": "136007", + "name": "Berzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09287000", + "longitude": "10.33303000" + }, + { + "id": "136008", + "name": "Berzo Inferiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93027000", + "longitude": "10.27696000" + }, + { + "id": "136009", + "name": "Berzo San Fermo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71938000", + "longitude": "9.90316000" + }, + { + "id": "136010", + "name": "Besana in Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70235000", + "longitude": "9.29470000" + }, + { + "id": "136011", + "name": "Besano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88949000", + "longitude": "8.89068000" + }, + { + "id": "136012", + "name": "Besate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31296000", + "longitude": "8.96964000" + }, + { + "id": "136015", + "name": "Besnate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69858000", + "longitude": "8.76734000" + }, + { + "id": "136016", + "name": "Besozzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84889000", + "longitude": "8.66517000" + }, + { + "id": "136019", + "name": "Bettola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33173000", + "longitude": "9.02080000" + }, + { + "id": "136020", + "name": "Bettola-Zeloforomagno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43080000", + "longitude": "9.30870000" + }, + { + "id": "136032", + "name": "Biandronno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81281000", + "longitude": "8.70882000" + }, + { + "id": "136033", + "name": "Bianzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77309000", + "longitude": "9.91816000" + }, + { + "id": "136034", + "name": "Bianzone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18665000", + "longitude": "10.10934000" + }, + { + "id": "136036", + "name": "Biassono", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62864000", + "longitude": "9.27124000" + }, + { + "id": "136047", + "name": "Bienno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93526000", + "longitude": "10.29232000" + }, + { + "id": "136051", + "name": "Binago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78218000", + "longitude": "8.92234000" + }, + { + "id": "136052", + "name": "Binasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33102000", + "longitude": "9.09440000" + }, + { + "id": "136056", + "name": "Bione", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67279000", + "longitude": "10.33887000" + }, + { + "id": "136066", + "name": "Bisuschio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87148000", + "longitude": "8.86843000" + }, + { + "id": "136077", + "name": "Bizzarone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83428000", + "longitude": "8.94274000" + }, + { + "id": "136079", + "name": "Blello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83778000", + "longitude": "9.57105000" + }, + { + "id": "136081", + "name": "Blessagno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95908000", + "longitude": "9.09754000" + }, + { + "id": "136082", + "name": "Blevio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84218000", + "longitude": "9.10514000" + }, + { + "id": "136092", + "name": "Bodio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78989000", + "longitude": "8.75146000" + }, + { + "id": "136093", + "name": "Bodio Lomnago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78867000", + "longitude": "8.75083000" + }, + { + "id": "136095", + "name": "Boffalora d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35851000", + "longitude": "9.49628000" + }, + { + "id": "136094", + "name": "Boffalora Sopra Ticino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46735000", + "longitude": "8.83095000" + }, + { + "id": "136103", + "name": "Bolgare", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63242000", + "longitude": "9.81412000" + }, + { + "id": "136104", + "name": "Bolladello-Peveranza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68649000", + "longitude": "8.84517000" + }, + { + "id": "136105", + "name": "Bollate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54647000", + "longitude": "9.12054000" + }, + { + "id": "136114", + "name": "Boltiere", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60088000", + "longitude": "9.57845000" + }, + { + "id": "136125", + "name": "Bonate Sopra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68179000", + "longitude": "9.55956000" + }, + { + "id": "136126", + "name": "Bonate Sotto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66818000", + "longitude": "9.55865000" + }, + { + "id": "136130", + "name": "Bondeno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93569000", + "longitude": "10.86035000" + }, + { + "id": "136131", + "name": "Bondione", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03541000", + "longitude": "10.00832000" + }, + { + "id": "136136", + "name": "Bonemerse", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11367000", + "longitude": "10.07747000" + }, + { + "id": "136149", + "name": "Bordolano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29170000", + "longitude": "9.98731000" + }, + { + "id": "136154", + "name": "Borgarello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24066000", + "longitude": "9.14055000" + }, + { + "id": "136159", + "name": "Borghetto Lodigiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21326000", + "longitude": "9.49946000" + }, + { + "id": "136201", + "name": "Borgo di Terzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72078000", + "longitude": "9.89096000" + }, + { + "id": "136179", + "name": "Borgo Priolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96632000", + "longitude": "9.14835000" + }, + { + "id": "136182", + "name": "Borgo San Giacomo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34798000", + "longitude": "9.96817000" + }, + { + "id": "136183", + "name": "Borgo San Giovanni", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27787000", + "longitude": "9.43496000" + }, + { + "id": "136187", + "name": "Borgo San Siro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23506000", + "longitude": "8.91334000" + }, + { + "id": "136202", + "name": "Borgoforte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05185000", + "longitude": "10.75018000" + }, + { + "id": "136204", + "name": "Borgofranco sul Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04658000", + "longitude": "11.20930000" + }, + { + "id": "136214", + "name": "Borgoratto Mormorolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92889000", + "longitude": "9.19402000" + }, + { + "id": "136217", + "name": "Borgosatollo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47690000", + "longitude": "10.24030000" + }, + { + "id": "136221", + "name": "Bormio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.46717000", + "longitude": "10.37008000" + }, + { + "id": "136222", + "name": "Bornasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26657000", + "longitude": "9.21795000" + }, + { + "id": "136223", + "name": "Bornato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59368000", + "longitude": "10.04090000" + }, + { + "id": "136224", + "name": "Borno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94748000", + "longitude": "10.20243000" + }, + { + "id": "136238", + "name": "Boschetto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16591000", + "longitude": "10.02656000" + }, + { + "id": "136242", + "name": "Bosco Ex Parmigiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10697000", + "longitude": "10.03870000" + }, + { + "id": "136252", + "name": "Bosisio Parini", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80075000", + "longitude": "9.29000000" + }, + { + "id": "136253", + "name": "Bosnasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06400000", + "longitude": "9.35692000" + }, + { + "id": "136254", + "name": "Bossico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82839000", + "longitude": "10.04506000" + }, + { + "id": "136258", + "name": "Botta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83222000", + "longitude": "9.53257000" + }, + { + "id": "136259", + "name": "Bottanuco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63931000", + "longitude": "9.50903000" + }, + { + "id": "136261", + "name": "Botticino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52972000", + "longitude": "10.31085000" + }, + { + "id": "136268", + "name": "Bovegno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79121000", + "longitude": "10.27012000" + }, + { + "id": "136270", + "name": "Bovezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58998000", + "longitude": "10.24184000" + }, + { + "id": "136273", + "name": "Bovisio-Masciago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61019000", + "longitude": "9.15301000" + }, + { + "id": "136277", + "name": "Bozzolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10324000", + "longitude": "10.47988000" + }, + { + "id": "136279", + "name": "Bracca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82267000", + "longitude": "9.70784000" + }, + { + "id": "136287", + "name": "Brandico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45418000", + "longitude": "10.05267000" + }, + { + "id": "136289", + "name": "Branzi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00249000", + "longitude": "9.75935000" + }, + { + "id": "136290", + "name": "Braone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99011000", + "longitude": "10.34178000" + }, + { + "id": "136291", + "name": "Brebbia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82983000", + "longitude": "8.65042000" + }, + { + "id": "136293", + "name": "Bregano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82578000", + "longitude": "8.68773000" + }, + { + "id": "136295", + "name": "Bregnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69778000", + "longitude": "9.05934000" + }, + { + "id": "136298", + "name": "Brembate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60468000", + "longitude": "9.55480000" + }, + { + "id": "136299", + "name": "Brembate di Sopra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71668000", + "longitude": "9.57945000" + }, + { + "id": "136300", + "name": "Brembilla", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82154000", + "longitude": "9.59679000" + }, + { + "id": "136301", + "name": "Brembio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21234000", + "longitude": "9.57244000" + }, + { + "id": "136302", + "name": "Breme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12756000", + "longitude": "8.62564000" + }, + { + "id": "136304", + "name": "Brenna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74338000", + "longitude": "9.18657000" + }, + { + "id": "136306", + "name": "Brenno Useria", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86148000", + "longitude": "8.87801000" + }, + { + "id": "136307", + "name": "Breno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95889000", + "longitude": "10.30648000" + }, + { + "id": "136308", + "name": "Brenta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89418000", + "longitude": "8.68373000" + }, + { + "id": "136314", + "name": "Brescia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53558000", + "longitude": "10.21472000" + }, + { + "id": "136317", + "name": "Bressana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07807000", + "longitude": "9.13119000" + }, + { + "id": "136320", + "name": "Bresso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53792000", + "longitude": "9.18921000" + }, + { + "id": "136323", + "name": "Brezzo di Bedero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97838000", + "longitude": "8.71743000" + }, + { + "id": "136328", + "name": "Brienno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91175000", + "longitude": "9.13142000" + }, + { + "id": "136333", + "name": "Brignano Gera d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54324000", + "longitude": "9.64424000" + }, + { + "id": "136336", + "name": "Brinzio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88914000", + "longitude": "8.78683000" + }, + { + "id": "136338", + "name": "Brione", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64228000", + "longitude": "10.14846000" + }, + { + "id": "136340", + "name": "Briosco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71008000", + "longitude": "9.24064000" + }, + { + "id": "136342", + "name": "Brissago-Valtravaglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94921000", + "longitude": "8.74590000" + }, + { + "id": "136344", + "name": "Brivio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73725000", + "longitude": "9.44249000" + }, + { + "id": "136351", + "name": "Brongio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76535000", + "longitude": "9.31251000" + }, + { + "id": "136352", + "name": "Broni", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06394000", + "longitude": "9.25993000" + }, + { + "id": "136360", + "name": "Brozzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72019000", + "longitude": "10.23092000" + }, + { + "id": "136362", + "name": "Brugherio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55301000", + "longitude": "9.29907000" + }, + { + "id": "136367", + "name": "Brumano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85463000", + "longitude": "9.50064000" + }, + { + "id": "136369", + "name": "Brunate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82096000", + "longitude": "9.09869000" + }, + { + "id": "136370", + "name": "Brunello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76497000", + "longitude": "8.79533000" + }, + { + "id": "136373", + "name": "Brusaporto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67140000", + "longitude": "9.76041000" + }, + { + "id": "136376", + "name": "Brusimpiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94468000", + "longitude": "8.88953000" + }, + { + "id": "136382", + "name": "Bubbiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32727000", + "longitude": "9.01455000" + }, + { + "id": "136387", + "name": "Buccinasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40703000", + "longitude": "9.10830000" + }, + { + "id": "136394", + "name": "Buffalora-Bettole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49681000", + "longitude": "10.27518000" + }, + { + "id": "136396", + "name": "Buglio in Monte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18336000", + "longitude": "9.67542000" + }, + { + "id": "136398", + "name": "Buguggiate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78227000", + "longitude": "8.81063000" + }, + { + "id": "136400", + "name": "Bulciago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75058000", + "longitude": "9.28534000" + }, + { + "id": "136401", + "name": "Bulgarograsso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74708000", + "longitude": "9.00644000" + }, + { + "id": "136402", + "name": "Bulgorello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72433000", + "longitude": "9.05524000" + }, + { + "id": "136409", + "name": "Burago di Molgora", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59648000", + "longitude": "9.38165000" + }, + { + "id": "136422", + "name": "Buscate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54353000", + "longitude": "8.81297000" + }, + { + "id": "136424", + "name": "Buscoldo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09430000", + "longitude": "10.69581000" + }, + { + "id": "136426", + "name": "Busnago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61648000", + "longitude": "9.46375000" + }, + { + "id": "136428", + "name": "Bussero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53407000", + "longitude": "9.37205000" + }, + { + "id": "136434", + "name": "Busto Arsizio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61128000", + "longitude": "8.84914000" + }, + { + "id": "136435", + "name": "Busto Garolfo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54809000", + "longitude": "8.88298000" + }, + { + "id": "136445", + "name": "Ca' d'Andrea", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11957000", + "longitude": "10.27748000" + }, + { + "id": "136449", + "name": "Cabiate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67418000", + "longitude": "9.17374000" + }, + { + "id": "136453", + "name": "Cadegliano-Viconago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95948000", + "longitude": "8.84343000" + }, + { + "id": "136456", + "name": "Cadenabbia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98861000", + "longitude": "9.23615000" + }, + { + "id": "136461", + "name": "Cadorago-Caslino al Piano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72728000", + "longitude": "9.03784000" + }, + { + "id": "136462", + "name": "Cadrezzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79927000", + "longitude": "8.64333000" + }, + { + "id": "136469", + "name": "Caglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87146000", + "longitude": "9.23719000" + }, + { + "id": "136472", + "name": "Cagno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81108000", + "longitude": "8.91733000" + }, + { + "id": "136478", + "name": "Caino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60939000", + "longitude": "10.31317000" + }, + { + "id": "136479", + "name": "Caiolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14999000", + "longitude": "9.81455000" + }, + { + "id": "136482", + "name": "Cairate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68750000", + "longitude": "8.86807000" + }, + { + "id": "136565", + "name": "Calò", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67908000", + "longitude": "9.26309000" + }, + { + "id": "136502", + "name": "Calchera-Frontale", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83415000", + "longitude": "9.51155000" + }, + { + "id": "136506", + "name": "Calcinate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61975000", + "longitude": "9.79843000" + }, + { + "id": "136507", + "name": "Calcinato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45739000", + "longitude": "10.40949000" + }, + { + "id": "136509", + "name": "Calcio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50826000", + "longitude": "9.84902000" + }, + { + "id": "136510", + "name": "Calco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72418000", + "longitude": "9.41255000" + }, + { + "id": "136523", + "name": "Caleppio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43436000", + "longitude": "9.38250000" + }, + { + "id": "136535", + "name": "Calolziocorte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79538000", + "longitude": "9.43765000" + }, + { + "id": "136539", + "name": "Calozzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10055000", + "longitude": "9.27531000" + }, + { + "id": "136548", + "name": "Calusco d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68841000", + "longitude": "9.47109000" + }, + { + "id": "136550", + "name": "Calvagese della Riviera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53922000", + "longitude": "10.44605000" + }, + { + "id": "136552", + "name": "Calvatone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12697000", + "longitude": "10.44057000" + }, + { + "id": "136555", + "name": "Calvenzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49621000", + "longitude": "9.59953000" + }, + { + "id": "136560", + "name": "Calvignano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98306000", + "longitude": "9.16876000" + }, + { + "id": "136561", + "name": "Calvignasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32597000", + "longitude": "9.02775000" + }, + { + "id": "136562", + "name": "Calvisano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34529000", + "longitude": "10.34266000" + }, + { + "id": "136568", + "name": "Camairago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20527000", + "longitude": "9.72746000" + }, + { + "id": "136572", + "name": "Cambiago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58035000", + "longitude": "9.43528000" + }, + { + "id": "136580", + "name": "Camerata Cornello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89956000", + "longitude": "9.65569000" + }, + { + "id": "136592", + "name": "Camisano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44484000", + "longitude": "9.74526000" + }, + { + "id": "136595", + "name": "Camnago-Boscone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80472000", + "longitude": "8.97934000" + }, + { + "id": "136598", + "name": "Camoneone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78547000", + "longitude": "9.56910000" + }, + { + "id": "136604", + "name": "Campagnola Cremasca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39847000", + "longitude": "9.66946000" + }, + { + "id": "136610", + "name": "Camparada", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65489000", + "longitude": "9.32328000" + }, + { + "id": "136622", + "name": "Campione", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96818000", + "longitude": "8.97181000" + }, + { + "id": "136623", + "name": "Campitello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08750000", + "longitude": "10.60632000" + }, + { + "id": "136648", + "name": "Campodolcino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40290000", + "longitude": "9.35185000" + }, + { + "id": "136653", + "name": "Campofiorenzo-California", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66768000", + "longitude": "9.31708000" + }, + { + "id": "136682", + "name": "Campospinoso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09403000", + "longitude": "9.24585000" + }, + { + "id": "136701", + "name": "Candia Lomellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17670000", + "longitude": "8.59550000" + }, + { + "id": "136707", + "name": "Canegrate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56825000", + "longitude": "8.92689000" + }, + { + "id": "136722", + "name": "Canneto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05116000", + "longitude": "9.28101000" + }, + { + "id": "136723", + "name": "Canneto Pavese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05046000", + "longitude": "9.27876000" + }, + { + "id": "136724", + "name": "Canneto sull'Oglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15163000", + "longitude": "10.38282000" + }, + { + "id": "136729", + "name": "Canonica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65587000", + "longitude": "9.28749000" + }, + { + "id": "136730", + "name": "Canonica d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57568000", + "longitude": "9.54165000" + }, + { + "id": "136734", + "name": "Canova-San Zeno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72116000", + "longitude": "9.40030000" + }, + { + "id": "136741", + "name": "Cantalupo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57813000", + "longitude": "8.98261000" + }, + { + "id": "136751", + "name": "Cantù", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74096000", + "longitude": "9.13084000" + }, + { + "id": "136746", + "name": "Cantello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82248000", + "longitude": "8.89593000" + }, + { + "id": "136753", + "name": "Canzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84867000", + "longitude": "9.27063000" + }, + { + "id": "136764", + "name": "Capergnanica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33869000", + "longitude": "9.64475000" + }, + { + "id": "136768", + "name": "Capiago-Intimiano-Olmeda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76898000", + "longitude": "9.12764000" + }, + { + "id": "136779", + "name": "Capo di Ponte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03000000", + "longitude": "10.34283000" + }, + { + "id": "136785", + "name": "Caponago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56647000", + "longitude": "9.37585000" + }, + { + "id": "136789", + "name": "Capovalle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75339000", + "longitude": "10.54447000" + }, + { + "id": "136791", + "name": "Cappella Cantone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24657000", + "longitude": "9.83826000" + }, + { + "id": "136793", + "name": "Cappella de' Picenardi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15857000", + "longitude": "10.22998000" + }, + { + "id": "136795", + "name": "Cappelletta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10514000", + "longitude": "10.77847000" + }, + { + "id": "136800", + "name": "Capralba", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44352000", + "longitude": "9.64417000" + }, + { + "id": "136812", + "name": "Capriano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72298000", + "longitude": "9.25526000" + }, + { + "id": "136813", + "name": "Capriano del Colle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47478000", + "longitude": "10.13227000" + }, + { + "id": "136815", + "name": "Capriate San Gervasio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61281000", + "longitude": "9.52974000" + }, + { + "id": "136821", + "name": "Caprino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74903000", + "longitude": "9.49235000" + }, + { + "id": "136823", + "name": "Capriolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63333000", + "longitude": "9.93189000" + }, + { + "id": "136838", + "name": "Carate Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67574000", + "longitude": "9.23723000" + }, + { + "id": "136839", + "name": "Carate Urio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87178000", + "longitude": "9.12214000" + }, + { + "id": "136840", + "name": "Caravaggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49627000", + "longitude": "9.64165000" + }, + { + "id": "136841", + "name": "Caravate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87862000", + "longitude": "8.65431000" + }, + { + "id": "136846", + "name": "Carbonara al Ticino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16374000", + "longitude": "9.06490000" + }, + { + "id": "136848", + "name": "Carbonara di Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03537000", + "longitude": "11.22923000" + }, + { + "id": "136849", + "name": "Carbonate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68507000", + "longitude": "8.93814000" + }, + { + "id": "136858", + "name": "Cardano al Campo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64887000", + "longitude": "8.76933000" + }, + { + "id": "136866", + "name": "Carenno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80155000", + "longitude": "9.46301000" + }, + { + "id": "136878", + "name": "Carimate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70659000", + "longitude": "9.10751000" + }, + { + "id": "136885", + "name": "Carlazzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04222000", + "longitude": "9.16498000" + }, + { + "id": "136894", + "name": "Carnago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72207000", + "longitude": "8.83423000" + }, + { + "id": "136895", + "name": "Carnate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64843000", + "longitude": "9.37813000" + }, + { + "id": "136896", + "name": "Carobbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66424000", + "longitude": "9.83027000" + }, + { + "id": "136897", + "name": "Carobbio degli Angeli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66518000", + "longitude": "9.82916000" + }, + { + "id": "136899", + "name": "Carona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02149000", + "longitude": "9.78494000" + }, + { + "id": "136901", + "name": "Caronno Pertusella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59777000", + "longitude": "9.04634000" + }, + { + "id": "136902", + "name": "Caronno Varesino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73577000", + "longitude": "8.83173000" + }, + { + "id": "136910", + "name": "Carpenedolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36169000", + "longitude": "10.43124000" + }, + { + "id": "136914", + "name": "Carpiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34027000", + "longitude": "9.27401000" + }, + { + "id": "136943", + "name": "Carugate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54983000", + "longitude": "9.34044000" + }, + { + "id": "136944", + "name": "Carugo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70848000", + "longitude": "9.19684000" + }, + { + "id": "136946", + "name": "Carvico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70193000", + "longitude": "9.48580000" + }, + { + "id": "136947", + "name": "Carzago Riviera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52440000", + "longitude": "10.46052000" + }, + { + "id": "136949", + "name": "Casa Ponte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87777000", + "longitude": "9.16509000" + }, + { + "id": "136969", + "name": "Casalbuttano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25187000", + "longitude": "9.96167000" + }, + { + "id": "136975", + "name": "Casale Cremasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43187000", + "longitude": "9.71416000" + }, + { + "id": "136976", + "name": "Casale Litta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76787000", + "longitude": "8.74133000" + }, + { + "id": "136985", + "name": "Casaletto Ceredano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31831000", + "longitude": "9.61701000" + }, + { + "id": "136989", + "name": "Casaletto di Sopra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41918000", + "longitude": "9.78256000" + }, + { + "id": "136986", + "name": "Casaletto Lodigiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29337000", + "longitude": "9.36194000" + }, + { + "id": "136988", + "name": "Casaletto Vaprio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40817000", + "longitude": "9.62876000" + }, + { + "id": "136998", + "name": "Casalmaggiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98981000", + "longitude": "10.42055000" + }, + { + "id": "136999", + "name": "Casalmaiocco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35238000", + "longitude": "9.37088000" + }, + { + "id": "137000", + "name": "Casalmorano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28766000", + "longitude": "9.89860000" + }, + { + "id": "137001", + "name": "Casalmoro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26115000", + "longitude": "10.41118000" + }, + { + "id": "137005", + "name": "Casaloldo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25436000", + "longitude": "10.47691000" + }, + { + "id": "137006", + "name": "Casalpusterlengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17921000", + "longitude": "9.64834000" + }, + { + "id": "137007", + "name": "Casalromano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19808000", + "longitude": "10.36640000" + }, + { + "id": "137014", + "name": "Casalzuigno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90508000", + "longitude": "8.70883000" + }, + { + "id": "137024", + "name": "Casanova Lonati", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09446000", + "longitude": "9.21345000" + }, + { + "id": "137032", + "name": "Casargo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03950000", + "longitude": "9.38717000" + }, + { + "id": "137033", + "name": "Casarile", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31683000", + "longitude": "9.10383000" + }, + { + "id": "137037", + "name": "Casasco Intelvi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94368000", + "longitude": "9.07574000" + }, + { + "id": "137038", + "name": "Casate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49203000", + "longitude": "8.82776000" + }, + { + "id": "137039", + "name": "Casatenovo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69514000", + "longitude": "9.31338000" + }, + { + "id": "137040", + "name": "Casatisma", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04569000", + "longitude": "9.13099000" + }, + { + "id": "137043", + "name": "Casazza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74855000", + "longitude": "9.90627000" + }, + { + "id": "137046", + "name": "Casciago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83248000", + "longitude": "8.78333000" + }, + { + "id": "137049", + "name": "Cascina Elisa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60425000", + "longitude": "8.79978000" + }, + { + "id": "137053", + "name": "Casco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71078000", + "longitude": "9.82483000" + }, + { + "id": "137055", + "name": "Case Nuove", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60998000", + "longitude": "10.39416000" + }, + { + "id": "137056", + "name": "Casei", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00756000", + "longitude": "8.92675000" + }, + { + "id": "137060", + "name": "Caselle Landi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10257000", + "longitude": "9.79557000" + }, + { + "id": "137061", + "name": "Caselle Lurani", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28044000", + "longitude": "9.36016000" + }, + { + "id": "137064", + "name": "Caseo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94369000", + "longitude": "9.27504000" + }, + { + "id": "137073", + "name": "Casirate d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49535000", + "longitude": "9.56932000" + }, + { + "id": "137074", + "name": "Caslino d'Erba", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83899000", + "longitude": "9.22554000" + }, + { + "id": "137075", + "name": "Casnate Con Bernate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75628000", + "longitude": "9.07264000" + }, + { + "id": "137076", + "name": "Casnigo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81307000", + "longitude": "9.86878000" + }, + { + "id": "137084", + "name": "Casone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49818000", + "longitude": "8.87635000" + }, + { + "id": "137086", + "name": "Casorate Primo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31142000", + "longitude": "9.01703000" + }, + { + "id": "137087", + "name": "Casorate Sempione", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67079000", + "longitude": "8.74513000" + }, + { + "id": "137088", + "name": "Casorezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52265000", + "longitude": "8.90186000" + }, + { + "id": "137092", + "name": "Caspoggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26424000", + "longitude": "9.86165000" + }, + { + "id": "137094", + "name": "Cassago Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73808000", + "longitude": "9.29344000" + }, + { + "id": "137100", + "name": "Cassano d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52637000", + "longitude": "9.51528000" + }, + { + "id": "137097", + "name": "Cassano Magnago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67206000", + "longitude": "8.82691000" + }, + { + "id": "137099", + "name": "Cassano Valcuvia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93238000", + "longitude": "8.76843000" + }, + { + "id": "137104", + "name": "Cassiglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96679000", + "longitude": "9.61215000" + }, + { + "id": "137107", + "name": "Cassina de' Pecchi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51637000", + "longitude": "9.35975000" + }, + { + "id": "137105", + "name": "Cassina Rizzardi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75228000", + "longitude": "9.02454000" + }, + { + "id": "137106", + "name": "Cassina Valsassina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93209000", + "longitude": "9.47894000" + }, + { + "id": "137111", + "name": "Cassinetta di Lugagnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42247000", + "longitude": "8.90604000" + }, + { + "id": "137113", + "name": "Cassino d'Alberi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39208000", + "longitude": "9.39090000" + }, + { + "id": "137115", + "name": "Cassolnovo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36106000", + "longitude": "8.81230000" + }, + { + "id": "137124", + "name": "Castana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02676000", + "longitude": "9.27246000" + }, + { + "id": "137126", + "name": "Castano Primo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55175000", + "longitude": "8.77562000" + }, + { + "id": "137127", + "name": "Casteggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01396000", + "longitude": "9.12528000" + }, + { + "id": "137128", + "name": "Castegnato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56129000", + "longitude": "10.11449000" + }, + { + "id": "137163", + "name": "Castel d'Ario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18798000", + "longitude": "10.97449000" + }, + { + "id": "137138", + "name": "Castel Gabbiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46847000", + "longitude": "9.71765000" + }, + { + "id": "137141", + "name": "Castel Goffredo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29403000", + "longitude": "10.47300000" + }, + { + "id": "137145", + "name": "Castel Mella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49913000", + "longitude": "10.14553000" + }, + { + "id": "137149", + "name": "Castel Rozzone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55228000", + "longitude": "9.61985000" + }, + { + "id": "137177", + "name": "Castelbelforte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21208000", + "longitude": "10.89249000" + }, + { + "id": "137186", + "name": "Castelcovati", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50198000", + "longitude": "9.94596000" + }, + { + "id": "137191", + "name": "Casteldidone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07068000", + "longitude": "10.40581000" + }, + { + "id": "137219", + "name": "Castellanza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61079000", + "longitude": "8.89616000" + }, + { + "id": "137226", + "name": "Castelleone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29579000", + "longitude": "9.76091000" + }, + { + "id": "137230", + "name": "Castelletto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33150000", + "longitude": "10.23335000" + }, + { + "id": "137241", + "name": "Castelletto di Branduzzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06936000", + "longitude": "9.09845000" + }, + { + "id": "137235", + "name": "Castelletto Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06903000", + "longitude": "9.10056000" + }, + { + "id": "137243", + "name": "Castelli Calepio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61316000", + "longitude": "9.88540000" + }, + { + "id": "137251", + "name": "Castello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56954000", + "longitude": "10.50861000" + }, + { + "id": "137252", + "name": "Castello Cabiaglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89358000", + "longitude": "8.75763000" + }, + { + "id": "137255", + "name": "Castello d'Agogna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23456000", + "longitude": "8.68714000" + }, + { + "id": "137258", + "name": "Castello dell'Acqua", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14549000", + "longitude": "10.01582000" + }, + { + "id": "137260", + "name": "Castello di Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75928000", + "longitude": "9.34535000" + }, + { + "id": "137263", + "name": "Castellucchio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15038000", + "longitude": "10.64875000" + }, + { + "id": "137269", + "name": "Castelmarte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83238000", + "longitude": "9.23304000" + }, + { + "id": "137276", + "name": "Castelnovetto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25438000", + "longitude": "8.61142000" + }, + { + "id": "137284", + "name": "Castelnuovo Bocca d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11147000", + "longitude": "9.86359000" + }, + { + "id": "137286", + "name": "Castelnuovo Bozzente", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76458000", + "longitude": "8.94354000" + }, + { + "id": "137315", + "name": "Castelseprio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71372000", + "longitude": "8.86161000" + }, + { + "id": "137320", + "name": "Castelveccana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94798000", + "longitude": "8.66633000" + }, + { + "id": "137325", + "name": "Castelverde", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18753000", + "longitude": "9.99693000" + }, + { + "id": "137332", + "name": "Castelvisconti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30537000", + "longitude": "9.94107000" + }, + { + "id": "137334", + "name": "Castenedolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47430000", + "longitude": "10.29131000" + }, + { + "id": "137348", + "name": "Castiglione d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21702000", + "longitude": "9.69279000" + }, + { + "id": "137349", + "name": "Castiglione d'Intelvi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95751000", + "longitude": "9.08987000" + }, + { + "id": "137355", + "name": "Castiglione delle Stiviere", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39020000", + "longitude": "10.48619000" + }, + { + "id": "137344", + "name": "Castiglione Olona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75256000", + "longitude": "8.87278000" + }, + { + "id": "137363", + "name": "Castione", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17287000", + "longitude": "9.80032000" + }, + { + "id": "137364", + "name": "Castione Andevenno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17279000", + "longitude": "9.80025000" + }, + { + "id": "137365", + "name": "Castione della Presolana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91471000", + "longitude": "10.05540000" + }, + { + "id": "137368", + "name": "Castiraga Vidardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25727000", + "longitude": "9.40456000" + }, + { + "id": "137369", + "name": "Casto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69489000", + "longitude": "10.32117000" + }, + { + "id": "137371", + "name": "Castrezzato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51128000", + "longitude": "9.98086000" + }, + { + "id": "137375", + "name": "Castro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80378000", + "longitude": "10.06590000" + }, + { + "id": "137383", + "name": "Castronno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74793000", + "longitude": "8.81442000" + }, + { + "id": "137390", + "name": "Cataeggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21447000", + "longitude": "9.63781000" + }, + { + "id": "137402", + "name": "Cava Manara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14014000", + "longitude": "9.10774000" + }, + { + "id": "137405", + "name": "Cavacurta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18977000", + "longitude": "9.74186000" + }, + { + "id": "137414", + "name": "Cavallasca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80958000", + "longitude": "9.03284000" + }, + { + "id": "137422", + "name": "Cavargna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09068000", + "longitude": "9.11205000" + }, + { + "id": "137423", + "name": "Cavaria Con Premezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69247000", + "longitude": "8.80299000" + }, + { + "id": "137433", + "name": "Cavenago d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28253000", + "longitude": "9.59872000" + }, + { + "id": "137434", + "name": "Cavenago di Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58297000", + "longitude": "9.41261000" + }, + { + "id": "137435", + "name": "Cavernago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62528000", + "longitude": "9.76556000" + }, + { + "id": "137443", + "name": "Cavriana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34766000", + "longitude": "10.59598000" + }, + { + "id": "137445", + "name": "Cazzago Brabbia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79588000", + "longitude": "8.73483000" + }, + { + "id": "137446", + "name": "Cazzago San Martino-Calino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58434000", + "longitude": "10.02328000" + }, + { + "id": "137448", + "name": "Cazzano Sant'Andrea", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81118000", + "longitude": "9.88493000" + }, + { + "id": "137453", + "name": "Cecima", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85066000", + "longitude": "9.08036000" + }, + { + "id": "137455", + "name": "Cedegolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07398000", + "longitude": "10.35141000" + }, + { + "id": "137456", + "name": "Cedessano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68858000", + "longitude": "10.43395000" + }, + { + "id": "137457", + "name": "Cedrasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14932000", + "longitude": "9.76803000" + }, + { + "id": "137467", + "name": "Cella Dati", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09527000", + "longitude": "10.22148000" + }, + { + "id": "137472", + "name": "Cellatica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58198000", + "longitude": "10.18017000" + }, + { + "id": "137488", + "name": "Cenate di Sotto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69898000", + "longitude": "9.82636000" + }, + { + "id": "137487", + "name": "Cenate Sopra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71298000", + "longitude": "9.82216000" + }, + { + "id": "137491", + "name": "Cene", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78062000", + "longitude": "9.82657000" + }, + { + "id": "137507", + "name": "Cepina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.43609000", + "longitude": "10.35713000" + }, + { + "id": "137515", + "name": "Cerano d'Intelvi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94447000", + "longitude": "9.08767000" + }, + { + "id": "137516", + "name": "Ceranova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26027000", + "longitude": "9.24315000" + }, + { + "id": "137526", + "name": "Cercino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15809000", + "longitude": "9.50814000" + }, + { + "id": "137533", + "name": "Cerello-Battuello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44716000", + "longitude": "8.93105000" + }, + { + "id": "137537", + "name": "Ceresara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26228000", + "longitude": "10.56958000" + }, + { + "id": "137538", + "name": "Cerese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11814000", + "longitude": "10.78877000" + }, + { + "id": "137542", + "name": "Cerete Alto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86729000", + "longitude": "9.99466000" + }, + { + "id": "137543", + "name": "Ceretto Lomellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24496000", + "longitude": "8.67244000" + }, + { + "id": "137545", + "name": "Cergnago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19826000", + "longitude": "8.77164000" + }, + { + "id": "137548", + "name": "Ceriano Laghetto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62928000", + "longitude": "9.08017000" + }, + { + "id": "137552", + "name": "Cerlongo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27862000", + "longitude": "10.64985000" + }, + { + "id": "137553", + "name": "Cermenate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70198000", + "longitude": "9.08361000" + }, + { + "id": "137556", + "name": "Cernobbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84307000", + "longitude": "9.07194000" + }, + { + "id": "137557", + "name": "Cernusco Lombardone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69088000", + "longitude": "9.39925000" + }, + { + "id": "137558", + "name": "Cernusco sul Naviglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52526000", + "longitude": "9.33297000" + }, + { + "id": "137575", + "name": "Cerro al Lambro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32997000", + "longitude": "9.33905000" + }, + { + "id": "137572", + "name": "Cerro Maggiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59366000", + "longitude": "8.95428000" + }, + { + "id": "137580", + "name": "Certosa di Pavia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25420000", + "longitude": "9.13290000" + }, + { + "id": "137587", + "name": "Cerveno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00176000", + "longitude": "10.32830000" + }, + { + "id": "137589", + "name": "Cervesina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06054000", + "longitude": "9.01676000" + }, + { + "id": "137593", + "name": "Cervignano d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37387000", + "longitude": "9.42405000" + }, + { + "id": "137602", + "name": "Cesana Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81678000", + "longitude": "9.29954000" + }, + { + "id": "137605", + "name": "Cesano Boscone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44207000", + "longitude": "9.09445000" + }, + { + "id": "137606", + "name": "Cesano Maderno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62915000", + "longitude": "9.15189000" + }, + { + "id": "137610", + "name": "Cesate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59587000", + "longitude": "9.07574000" + }, + { + "id": "137621", + "name": "Ceto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00259000", + "longitude": "10.35196000" + }, + { + "id": "137626", + "name": "Cevo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08089000", + "longitude": "10.36952000" + }, + { + "id": "137652", + "name": "Chiaravalle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41731000", + "longitude": "9.23985000" + }, + { + "id": "137654", + "name": "Chiari", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53763000", + "longitude": "9.92699000" + }, + { + "id": "137660", + "name": "Chiavenna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32063000", + "longitude": "9.39816000" + }, + { + "id": "137664", + "name": "Chiesa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69011000", + "longitude": "9.91282000" + }, + { + "id": "137668", + "name": "Chiesa in Valmalenco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26715000", + "longitude": "9.84905000" + }, + { + "id": "137674", + "name": "Chieve", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34047000", + "longitude": "9.61646000" + }, + { + "id": "137676", + "name": "Chignolo d'Isola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66758000", + "longitude": "9.52765000" + }, + { + "id": "137675", + "name": "Chignolo Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14817000", + "longitude": "9.48156000" + }, + { + "id": "137682", + "name": "Chiuduno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65068000", + "longitude": "9.84946000" + }, + { + "id": "137685", + "name": "Chiuro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16722000", + "longitude": "9.98584000" + }, + { + "id": "137712", + "name": "Cicognolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16762000", + "longitude": "10.19407000" + }, + { + "id": "137717", + "name": "Cigognola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03276000", + "longitude": "9.24486000" + }, + { + "id": "137718", + "name": "Cigole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30760000", + "longitude": "10.18977000" + }, + { + "id": "137719", + "name": "Cilavegna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31067000", + "longitude": "8.74469000" + }, + { + "id": "137721", + "name": "Cimbergo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02410000", + "longitude": "10.36566000" + }, + { + "id": "137722", + "name": "Cimbro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73570000", + "longitude": "8.72050000" + }, + { + "id": "137731", + "name": "Cingia de' Botti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08507000", + "longitude": "10.27548000" + }, + { + "id": "137734", + "name": "Cinisello Balsamo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55823000", + "longitude": "9.21495000" + }, + { + "id": "137736", + "name": "Cino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15843000", + "longitude": "9.48534000" + }, + { + "id": "137748", + "name": "Cirimido", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69978000", + "longitude": "9.01254000" + }, + { + "id": "137754", + "name": "Cisano Bergamasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74200000", + "longitude": "9.47146000" + }, + { + "id": "137755", + "name": "Ciserano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58792000", + "longitude": "9.60115000" + }, + { + "id": "137756", + "name": "Cislago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65928000", + "longitude": "8.97272000" + }, + { + "id": "137757", + "name": "Cisliano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44371000", + "longitude": "8.98695000" + }, + { + "id": "137775", + "name": "Città metropolitana di Milano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45186000", + "longitude": "9.14586000" + }, + { + "id": "137770", + "name": "Cittiglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89587000", + "longitude": "8.66551000" + }, + { + "id": "137777", + "name": "Civate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82808000", + "longitude": "9.34294000" + }, + { + "id": "137778", + "name": "Civesio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39556000", + "longitude": "9.26680000" + }, + { + "id": "137784", + "name": "Cividate al Piano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55465000", + "longitude": "9.83024000" + }, + { + "id": "137783", + "name": "Cividate Camuno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94087000", + "longitude": "10.26610000" + }, + { + "id": "137805", + "name": "Cizzago-Comezzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46880000", + "longitude": "9.95816000" + }, + { + "id": "137813", + "name": "Clivio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86278000", + "longitude": "8.93083000" + }, + { + "id": "137816", + "name": "Clusane", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66247000", + "longitude": "10.00005000" + }, + { + "id": "137817", + "name": "Clusone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88663000", + "longitude": "9.94646000" + }, + { + "id": "137822", + "name": "Coccaglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56399000", + "longitude": "9.97224000" + }, + { + "id": "137825", + "name": "Cocquio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86288000", + "longitude": "8.68823000" + }, + { + "id": "137830", + "name": "Codevilla", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96353000", + "longitude": "9.05773000" + }, + { + "id": "137834", + "name": "Codogna-Cardano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02769000", + "longitude": "9.20992000" + }, + { + "id": "137835", + "name": "Codogno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16187000", + "longitude": "9.70216000" + }, + { + "id": "137840", + "name": "Cogliate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64597000", + "longitude": "9.07884000" + }, + { + "id": "137850", + "name": "Colere", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97522000", + "longitude": "10.08356000" + }, + { + "id": "137852", + "name": "Colico Piano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13205000", + "longitude": "9.37714000" + }, + { + "id": "137853", + "name": "Colla-Muggiasca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98343000", + "longitude": "9.62277000" + }, + { + "id": "137859", + "name": "Colle Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76238000", + "longitude": "9.36435000" + }, + { + "id": "137874", + "name": "Collebeato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58118000", + "longitude": "10.21017000" + }, + { + "id": "137904", + "name": "Collio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81088000", + "longitude": "10.33511000" + }, + { + "id": "137913", + "name": "Cologna-Caraverio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75611000", + "longitude": "9.34579000" + }, + { + "id": "137914", + "name": "Cologne", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57862000", + "longitude": "9.94180000" + }, + { + "id": "137916", + "name": "Cologno al Serio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57604000", + "longitude": "9.70892000" + }, + { + "id": "137915", + "name": "Cologno Monzese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53004000", + "longitude": "9.27795000" + }, + { + "id": "137919", + "name": "Colombaro-Timoline", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64405000", + "longitude": "9.99413000" + }, + { + "id": "137924", + "name": "Colonno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95768000", + "longitude": "9.15294000" + }, + { + "id": "137925", + "name": "Colorina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15369000", + "longitude": "9.72935000" + }, + { + "id": "137928", + "name": "Colturano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38151000", + "longitude": "9.33443000" + }, + { + "id": "137931", + "name": "Colzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81719000", + "longitude": "9.85615000" + }, + { + "id": "137933", + "name": "Comabbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77359000", + "longitude": "8.67833000" + }, + { + "id": "137936", + "name": "Comazzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44190000", + "longitude": "9.46278000" + }, + { + "id": "137939", + "name": "Comerio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84191000", + "longitude": "8.74207000" + }, + { + "id": "137945", + "name": "Commessaggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03754000", + "longitude": "10.54535000" + }, + { + "id": "137947", + "name": "Como", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80819000", + "longitude": "9.08320000" + }, + { + "id": "137950", + "name": "Comun Nuovo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62291000", + "longitude": "9.66200000" + }, + { + "id": "137957", + "name": "Concesio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60518000", + "longitude": "10.21697000" + }, + { + "id": "137961", + "name": "Concorezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58854000", + "longitude": "9.33393000" + }, + { + "id": "137967", + "name": "Confienza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33148000", + "longitude": "8.55886000" + }, + { + "id": "137976", + "name": "Consiglio di Rumo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14299000", + "longitude": "9.29334000" + }, + { + "id": "137987", + "name": "Copiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19750000", + "longitude": "9.32462000" + }, + { + "id": "137990", + "name": "Corana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06289000", + "longitude": "8.96952000" + }, + { + "id": "137994", + "name": "Corbetta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46723000", + "longitude": "8.91867000" + }, + { + "id": "138009", + "name": "Corgeno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74588000", + "longitude": "8.68797000" + }, + { + "id": "138020", + "name": "Cormano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54917000", + "longitude": "9.15964000" + }, + { + "id": "138022", + "name": "Corna Imagna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83068000", + "longitude": "9.54485000" + }, + { + "id": "138024", + "name": "Cornalba", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84927000", + "longitude": "9.74593000" + }, + { + "id": "138025", + "name": "Cornale", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04344000", + "longitude": "8.91096000" + }, + { + "id": "138026", + "name": "Cornaredo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50128000", + "longitude": "9.02681000" + }, + { + "id": "138027", + "name": "Cornate d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62811000", + "longitude": "9.47378000" + }, + { + "id": "138031", + "name": "Corneno-Galliano-Carella Mariaga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81667000", + "longitude": "9.26667000" + }, + { + "id": "138033", + "name": "Corno Giovine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13415000", + "longitude": "9.75766000" + }, + { + "id": "138035", + "name": "Cornovecchio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13667000", + "longitude": "9.79937000" + }, + { + "id": "138040", + "name": "Correzzana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66658000", + "longitude": "9.30755000" + }, + { + "id": "138042", + "name": "Corrido", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04758000", + "longitude": "9.13554000" + }, + { + "id": "138048", + "name": "Corsico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43099000", + "longitude": "9.11093000" + }, + { + "id": "138057", + "name": "Corte de' Cortesi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27265000", + "longitude": "10.00738000" + }, + { + "id": "138058", + "name": "Corte de' Cortesi con Cignone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27317000", + "longitude": "10.00787000" + }, + { + "id": "138059", + "name": "Corte de' Frati", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21847000", + "longitude": "10.10187000" + }, + { + "id": "138056", + "name": "Corte Franca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62998000", + "longitude": "9.98846000" + }, + { + "id": "138062", + "name": "Corteno Golgi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16620000", + "longitude": "10.24346000" + }, + { + "id": "138063", + "name": "Cortenova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00029000", + "longitude": "9.38454000" + }, + { + "id": "138064", + "name": "Cortenuova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53898000", + "longitude": "9.78786000" + }, + { + "id": "138065", + "name": "Corteolona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15787000", + "longitude": "9.37215000" + }, + { + "id": "138075", + "name": "Corvino San Quirico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01086000", + "longitude": "9.16245000" + }, + { + "id": "138076", + "name": "Corzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44378000", + "longitude": "10.00737000" + }, + { + "id": "138079", + "name": "Cosio Valtellino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13509000", + "longitude": "9.55164000" + }, + { + "id": "138097", + "name": "Costa de' Nobili", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13217000", + "longitude": "9.37886000" + }, + { + "id": "138098", + "name": "Costa di Mezzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66278000", + "longitude": "9.79556000" + }, + { + "id": "138100", + "name": "Costa di Serina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83268000", + "longitude": "9.74165000" + }, + { + "id": "138091", + "name": "Costa Lambro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68531000", + "longitude": "9.24728000" + }, + { + "id": "138092", + "name": "Costa Masnaga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76963000", + "longitude": "9.27632000" + }, + { + "id": "138093", + "name": "Costa Sant'Abramo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16667000", + "longitude": "9.96667000" + }, + { + "id": "138094", + "name": "Costa Valle Imagna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80280000", + "longitude": "9.50413000" + }, + { + "id": "138096", + "name": "Costa Volpino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82768000", + "longitude": "10.10076000" + }, + { + "id": "138101", + "name": "Costa-Barco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58337000", + "longitude": "10.03907000" + }, + { + "id": "138117", + "name": "Covo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49906000", + "longitude": "9.77068000" + }, + { + "id": "138120", + "name": "Cozzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19213000", + "longitude": "8.61112000" + }, + { + "id": "138122", + "name": "Crandola Valsassina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02329000", + "longitude": "9.37914000" + }, + { + "id": "138130", + "name": "Credaro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66058000", + "longitude": "9.93106000" + }, + { + "id": "138131", + "name": "Credera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30301000", + "longitude": "9.65498000" + }, + { + "id": "138132", + "name": "Crema", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36264000", + "longitude": "9.68176000" + }, + { + "id": "138133", + "name": "Cremella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73858000", + "longitude": "9.30064000" + }, + { + "id": "138134", + "name": "Cremenaga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98938000", + "longitude": "8.80333000" + }, + { + "id": "138135", + "name": "Cremeno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93492000", + "longitude": "9.47099000" + }, + { + "id": "138136", + "name": "Cremia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08649000", + "longitude": "9.27114000" + }, + { + "id": "138138", + "name": "Cremona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13325000", + "longitude": "10.02129000" + }, + { + "id": "138139", + "name": "Cremosano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39467000", + "longitude": "9.63826000" + }, + { + "id": "138145", + "name": "Crespiatica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35136000", + "longitude": "9.57659000" + }, + { + "id": "138164", + "name": "Crone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73741000", + "longitude": "10.47503000" + }, + { + "id": "138169", + "name": "Crosio della Valle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75997000", + "longitude": "8.77043000" + }, + { + "id": "138171", + "name": "Crotta d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15888000", + "longitude": "9.85684000" + }, + { + "id": "138175", + "name": "Crugnola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72955000", + "longitude": "8.74525000" + }, + { + "id": "138176", + "name": "Cuasso al Monte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91478000", + "longitude": "8.87923000" + }, + { + "id": "138177", + "name": "Cuasso al Piano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89454000", + "longitude": "8.87951000" + }, + { + "id": "138180", + "name": "Cucciago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73928000", + "longitude": "9.09294000" + }, + { + "id": "138183", + "name": "Cuggiono", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50683000", + "longitude": "8.81550000" + }, + { + "id": "138184", + "name": "Cugliate-Fabiasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94568000", + "longitude": "8.81863000" + }, + { + "id": "138188", + "name": "Cumignano sul Naviglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35459000", + "longitude": "9.83621000" + }, + { + "id": "138189", + "name": "Cunardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93428000", + "longitude": "8.80773000" + }, + { + "id": "138191", + "name": "Cunettone-Villa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58789000", + "longitude": "10.51756000" + }, + { + "id": "138198", + "name": "Cura Carpignano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21247000", + "longitude": "9.25565000" + }, + { + "id": "138201", + "name": "Curiglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06065000", + "longitude": "8.80484000" + }, + { + "id": "138204", + "name": "Curno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68876000", + "longitude": "9.60872000" + }, + { + "id": "138210", + "name": "Cusago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44997000", + "longitude": "9.03744000" + }, + { + "id": "138211", + "name": "Cusano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55187000", + "longitude": "9.18373000" + }, + { + "id": "138214", + "name": "Cusino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07489000", + "longitude": "9.15264000" + }, + { + "id": "138215", + "name": "Cusio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99089000", + "longitude": "9.60175000" + }, + { + "id": "138220", + "name": "Cuveglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90608000", + "longitude": "8.73333000" + }, + { + "id": "138221", + "name": "Cuvio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89618000", + "longitude": "8.73413000" + }, + { + "id": "138224", + "name": "Dairago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56580000", + "longitude": "8.86265000" + }, + { + "id": "138225", + "name": "Dalmine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64933000", + "longitude": "9.60617000" + }, + { + "id": "138229", + "name": "Darfo Boario Terme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89150000", + "longitude": "10.18879000" + }, + { + "id": "138232", + "name": "Daverio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77797000", + "longitude": "8.77343000" + }, + { + "id": "138234", + "name": "Dazio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16129000", + "longitude": "9.60064000" + }, + { + "id": "138241", + "name": "Delebio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13648000", + "longitude": "9.46157000" + }, + { + "id": "138245", + "name": "Dello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41916000", + "longitude": "10.07621000" + }, + { + "id": "138251", + "name": "Derovere", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10997000", + "longitude": "10.24798000" + }, + { + "id": "138253", + "name": "Dervio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07696000", + "longitude": "9.30659000" + }, + { + "id": "138256", + "name": "Desenzano del Garda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47127000", + "longitude": "10.53559000" + }, + { + "id": "138257", + "name": "Desio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61831000", + "longitude": "9.20249000" + }, + { + "id": "138272", + "name": "Dizzasco-Biazzeno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94378000", + "longitude": "9.09974000" + }, + { + "id": "138286", + "name": "Dolzago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76698000", + "longitude": "9.33934000" + }, + { + "id": "138288", + "name": "Domaso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15284000", + "longitude": "9.33150000" + }, + { + "id": "138298", + "name": "Dongo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12999000", + "longitude": "9.28169000" + }, + { + "id": "138308", + "name": "Dorio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10020000", + "longitude": "9.31883000" + }, + { + "id": "138310", + "name": "Dorno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15352000", + "longitude": "8.95076000" + }, + { + "id": "138313", + "name": "Dosimo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18469000", + "longitude": "10.10362000" + }, + { + "id": "138314", + "name": "Dosolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95259000", + "longitude": "10.63550000" + }, + { + "id": "138315", + "name": "Dossena", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88029000", + "longitude": "9.69675000" + }, + { + "id": "138317", + "name": "Dosso del Liro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16399000", + "longitude": "9.27294000" + }, + { + "id": "138318", + "name": "Dosso-Ville", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75251000", + "longitude": "10.27397000" + }, + { + "id": "138323", + "name": "Dovera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36428000", + "longitude": "9.54445000" + }, + { + "id": "138329", + "name": "Dresano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37297000", + "longitude": "9.35785000" + }, + { + "id": "138330", + "name": "Drizzona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14217000", + "longitude": "10.35028000" + }, + { + "id": "138337", + "name": "Dubino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16705000", + "longitude": "9.43049000" + }, + { + "id": "138342", + "name": "Dumenza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02088000", + "longitude": "8.78674000" + }, + { + "id": "138343", + "name": "Duno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91398000", + "longitude": "8.73763000" + }, + { + "id": "138344", + "name": "Duomo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53240000", + "longitude": "10.02118000" + }, + { + "id": "138349", + "name": "Edolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17799000", + "longitude": "10.33322000" + }, + { + "id": "138353", + "name": "Ello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78568000", + "longitude": "9.36534000" + }, + { + "id": "138357", + "name": "Endine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78980000", + "longitude": "9.97561000" + }, + { + "id": "138362", + "name": "Entratico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70778000", + "longitude": "9.87316000" + }, + { + "id": "138365", + "name": "Era", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.24422000", + "longitude": "9.39515000" + }, + { + "id": "138367", + "name": "Erba", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80880000", + "longitude": "9.22609000" + }, + { + "id": "138369", + "name": "Erbusco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59868000", + "longitude": "9.97186000" + }, + { + "id": "138373", + "name": "Eremo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13119000", + "longitude": "10.74271000" + }, + { + "id": "138378", + "name": "Erve", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82158000", + "longitude": "9.45285000" + }, + { + "id": "138382", + "name": "Esine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92515000", + "longitude": "10.25102000" + }, + { + "id": "138383", + "name": "Esino Lario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99437000", + "longitude": "9.33399000" + }, + { + "id": "138401", + "name": "Faedo Valtellino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15299000", + "longitude": "9.90605000" + }, + { + "id": "138406", + "name": "Faggeto Lario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85878000", + "longitude": "9.15894000" + }, + { + "id": "138409", + "name": "Fagnano Olona-Bergoro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66977000", + "longitude": "8.85994000" + }, + { + "id": "138424", + "name": "Faloppio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80968000", + "longitude": "8.96434000" + }, + { + "id": "138435", + "name": "Fantasina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57325000", + "longitude": "10.17790000" + }, + { + "id": "138438", + "name": "Fara Gera d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55656000", + "longitude": "9.53656000" + }, + { + "id": "138440", + "name": "Fara Olivana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49508000", + "longitude": "9.74906000" + }, + { + "id": "138474", + "name": "Felonica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97898000", + "longitude": "11.35370000" + }, + { + "id": "138476", + "name": "Fenegrò", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70157000", + "longitude": "8.99964000" + }, + { + "id": "138484", + "name": "Ferno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61496000", + "longitude": "8.75695000" + }, + { + "id": "138493", + "name": "Ferrera di Varese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93278000", + "longitude": "8.78913000" + }, + { + "id": "138492", + "name": "Ferrera Erbognone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11456000", + "longitude": "8.86454000" + }, + { + "id": "138510", + "name": "Fiesco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33737000", + "longitude": "9.77786000" + }, + { + "id": "138512", + "name": "Fiesse", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23207000", + "longitude": "10.32417000" + }, + { + "id": "138516", + "name": "Figino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49261000", + "longitude": "9.07779000" + }, + { + "id": "138517", + "name": "Figino Serenza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71048000", + "longitude": "9.13114000" + }, + { + "id": "138518", + "name": "Figliaro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77992000", + "longitude": "8.94466000" + }, + { + "id": "138523", + "name": "Filago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63758000", + "longitude": "9.55635000" + }, + { + "id": "138530", + "name": "Filighera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17496000", + "longitude": "9.31646000" + }, + { + "id": "138538", + "name": "Fino del Monte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89269000", + "longitude": "9.99406000" + }, + { + "id": "138537", + "name": "Fino Mornasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74290000", + "longitude": "9.04996000" + }, + { + "id": "138541", + "name": "Fiorano al Serio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80018000", + "longitude": "9.84276000" + }, + { + "id": "138557", + "name": "Fizzonasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37241000", + "longitude": "9.19066000" + }, + { + "id": "138562", + "name": "Flero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48254000", + "longitude": "10.17694000" + }, + { + "id": "138585", + "name": "Folzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49587000", + "longitude": "10.20650000" + }, + { + "id": "138586", + "name": "Fombio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14126000", + "longitude": "9.68043000" + }, + { + "id": "138596", + "name": "Fontane-Zurane-Gresine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63336000", + "longitude": "10.04720000" + }, + { + "id": "138598", + "name": "Fontanella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46903000", + "longitude": "9.80248000" + }, + { + "id": "138612", + "name": "Fonteno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75859000", + "longitude": "10.01856000" + }, + { + "id": "138616", + "name": "Foppolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04297000", + "longitude": "9.75775000" + }, + { + "id": "138621", + "name": "Forcola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15859000", + "longitude": "9.66034000" + }, + { + "id": "138626", + "name": "Foresto Sparso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69088000", + "longitude": "9.92006000" + }, + { + "id": "138639", + "name": "Formigara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22307000", + "longitude": "9.77076000" + }, + { + "id": "138649", + "name": "Fornaci", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19872000", + "longitude": "9.67794000" + }, + { + "id": "138659", + "name": "Fornovo San Giovanni", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49742000", + "longitude": "9.67739000" + }, + { + "id": "138663", + "name": "Fortunago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92160000", + "longitude": "9.18471000" + }, + { + "id": "138707", + "name": "Frascarolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04666000", + "longitude": "8.68204000" + }, + { + "id": "138747", + "name": "Fuipiano Valle Imagna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85428000", + "longitude": "9.52845000" + }, + { + "id": "138754", + "name": "Furato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51468000", + "longitude": "8.88063000" + }, + { + "id": "138762", + "name": "Fusine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14949000", + "longitude": "9.74975000" + }, + { + "id": "138767", + "name": "Gabbioneta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21627000", + "longitude": "10.22027000" + }, + { + "id": "138772", + "name": "Gadesco-Pieve Delmona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15767000", + "longitude": "10.11567000" + }, + { + "id": "138776", + "name": "Gaggiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40484000", + "longitude": "9.03488000" + }, + { + "id": "138777", + "name": "Gaggino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80787000", + "longitude": "8.96427000" + }, + { + "id": "138798", + "name": "Galbiate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81635000", + "longitude": "9.37902000" + }, + { + "id": "138800", + "name": "Galgagnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35797000", + "longitude": "9.44535000" + }, + { + "id": "138801", + "name": "Gallarate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66019000", + "longitude": "8.79164000" + }, + { + "id": "138805", + "name": "Galliate Lombardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78487000", + "longitude": "8.77043000" + }, + { + "id": "138806", + "name": "Galliavola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09756000", + "longitude": "8.81885000" + }, + { + "id": "138818", + "name": "Gallo-Tre Re-Mezzana Corti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12563000", + "longitude": "9.12227000" + }, + { + "id": "138826", + "name": "Gambara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25366000", + "longitude": "10.29434000" + }, + { + "id": "138827", + "name": "Gambarana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02874000", + "longitude": "8.76282000" + }, + { + "id": "138834", + "name": "Gambolò", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26209000", + "longitude": "8.85820000" + }, + { + "id": "138837", + "name": "Gandellino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99109000", + "longitude": "9.94615000" + }, + { + "id": "138838", + "name": "Gandino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81088000", + "longitude": "9.89767000" + }, + { + "id": "138839", + "name": "Gandosso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65888000", + "longitude": "9.88886000" + }, + { + "id": "138841", + "name": "Ganna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90212000", + "longitude": "8.82606000" + }, + { + "id": "138846", + "name": "Garbagnate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77027000", + "longitude": "9.29848000" + }, + { + "id": "138847", + "name": "Garbagnate Milanese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57438000", + "longitude": "9.07537000" + }, + { + "id": "138848", + "name": "Garbagnate Monastero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77338000", + "longitude": "9.30144000" + }, + { + "id": "138850", + "name": "Gardola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74180000", + "longitude": "10.71871000" + }, + { + "id": "138851", + "name": "Gardone Riviera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62396000", + "longitude": "10.56682000" + }, + { + "id": "138852", + "name": "Gardone Val Trompia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69137000", + "longitude": "10.18635000" + }, + { + "id": "138856", + "name": "Gargnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68586000", + "longitude": "10.65869000" + }, + { + "id": "138858", + "name": "Garlasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19540000", + "longitude": "8.92314000" + }, + { + "id": "138859", + "name": "Garlate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81208000", + "longitude": "9.39964000" + }, + { + "id": "138862", + "name": "Garzeno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13409000", + "longitude": "9.24964000" + }, + { + "id": "138870", + "name": "Gavardo-Sopraponte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58939000", + "longitude": "10.44257000" + }, + { + "id": "138871", + "name": "Gavarno Rinnovata", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72454000", + "longitude": "9.76318000" + }, + { + "id": "138872", + "name": "Gavarno-Tribulina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71734000", + "longitude": "9.77512000" + }, + { + "id": "138875", + "name": "Gaverina Terme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75578000", + "longitude": "9.88666000" + }, + { + "id": "138878", + "name": "Gavirate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83707000", + "longitude": "8.72619000" + }, + { + "id": "138881", + "name": "Gazoldo degli Ippoliti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19999000", + "longitude": "10.57839000" + }, + { + "id": "138882", + "name": "Gazzada Schianno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78017000", + "longitude": "8.83344000" + }, + { + "id": "138883", + "name": "Gazzaniga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79339000", + "longitude": "9.82976000" + }, + { + "id": "138885", + "name": "Gazzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17968000", + "longitude": "10.89706000" + }, + { + "id": "138888", + "name": "Gazzuolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06238000", + "longitude": "10.57161000" + }, + { + "id": "138894", + "name": "Gemonio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87878000", + "longitude": "8.67478000" + }, + { + "id": "138898", + "name": "Genivolta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33257000", + "longitude": "9.87726000" + }, + { + "id": "138905", + "name": "Genzone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17962000", + "longitude": "9.34829000" + }, + { + "id": "138906", + "name": "Gera Lario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17003000", + "longitude": "9.36736000" + }, + { + "id": "138913", + "name": "Gerenzago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20633000", + "longitude": "9.36137000" + }, + { + "id": "138914", + "name": "Gerenzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63967000", + "longitude": "9.00104000" + }, + { + "id": "138918", + "name": "Germignaga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99128000", + "longitude": "8.72403000" + }, + { + "id": "138920", + "name": "Gerola Alta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06003000", + "longitude": "9.55025000" + }, + { + "id": "138921", + "name": "Geromina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53645000", + "longitude": "9.57540000" + }, + { + "id": "138922", + "name": "Gerosa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84980000", + "longitude": "9.57161000" + }, + { + "id": "138923", + "name": "Gerre de' Caprioli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09042000", + "longitude": "10.05085000" + }, + { + "id": "138925", + "name": "Gessate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54838000", + "longitude": "9.43775000" + }, + { + "id": "138929", + "name": "Ghedi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40204000", + "longitude": "10.27681000" + }, + { + "id": "138931", + "name": "Ghiaie", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68205000", + "longitude": "9.58121000" + }, + { + "id": "138935", + "name": "Ghisalba", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59354000", + "longitude": "9.75765000" + }, + { + "id": "138941", + "name": "Gianico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86559000", + "longitude": "10.17486000" + }, + { + "id": "138977", + "name": "Giovenzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27322000", + "longitude": "9.11605000" + }, + { + "id": "138984", + "name": "Gironico al Piano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80138000", + "longitude": "9.00314000" + }, + { + "id": "138997", + "name": "Giussago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28417000", + "longitude": "9.13996000" + }, + { + "id": "138998", + "name": "Giussano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70004000", + "longitude": "9.20890000" + }, + { + "id": "139008", + "name": "Godiasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89645000", + "longitude": "9.05667000" + }, + { + "id": "139011", + "name": "Goito", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25076000", + "longitude": "10.66121000" + }, + { + "id": "139012", + "name": "Golasecca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69821000", + "longitude": "8.66112000" + }, + { + "id": "139013", + "name": "Golferenzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96106000", + "longitude": "9.30596000" + }, + { + "id": "139015", + "name": "Gombito", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26187000", + "longitude": "9.72856000" + }, + { + "id": "139024", + "name": "Gonzaga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95193000", + "longitude": "10.81913000" + }, + { + "id": "139025", + "name": "Gordona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29176000", + "longitude": "9.36700000" + }, + { + "id": "139030", + "name": "Gorgonzola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53069000", + "longitude": "9.40531000" + }, + { + "id": "139033", + "name": "Gorla Maggiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66388000", + "longitude": "8.89537000" + }, + { + "id": "139034", + "name": "Gorla Minore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64117000", + "longitude": "8.90264000" + }, + { + "id": "139035", + "name": "Gorlago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67408000", + "longitude": "9.82296000" + }, + { + "id": "139036", + "name": "Gorle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70127000", + "longitude": "9.71382000" + }, + { + "id": "139037", + "name": "Gornate Olona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74157000", + "longitude": "8.85994000" + }, + { + "id": "139038", + "name": "Gorno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86249000", + "longitude": "9.84155000" + }, + { + "id": "139046", + "name": "Gottolengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29278000", + "longitude": "10.26855000" + }, + { + "id": "139053", + "name": "Graffignana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20647000", + "longitude": "9.45436000" + }, + { + "id": "139064", + "name": "Grandate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76715000", + "longitude": "9.05349000" + }, + { + "id": "139065", + "name": "Grandola ed Uniti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02488000", + "longitude": "9.21274000" + }, + { + "id": "139068", + "name": "Grantola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94918000", + "longitude": "8.77433000" + }, + { + "id": "139074", + "name": "Grassobbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65688000", + "longitude": "9.72565000" + }, + { + "id": "139075", + "name": "Gratacasolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82897000", + "longitude": "10.12918000" + }, + { + "id": "139078", + "name": "Gravedona-San Gregorio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14639000", + "longitude": "9.30094000" + }, + { + "id": "139079", + "name": "Gravellona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32766000", + "longitude": "8.76414000" + }, + { + "id": "139093", + "name": "Grezzago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59108000", + "longitude": "9.49725000" + }, + { + "id": "139095", + "name": "Griante", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99528000", + "longitude": "9.23554000" + }, + { + "id": "139097", + "name": "Grignano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61819000", + "longitude": "9.54235000" + }, + { + "id": "139108", + "name": "Gromlongo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72895000", + "longitude": "9.54097000" + }, + { + "id": "139109", + "name": "Gromo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96190000", + "longitude": "9.92637000" + }, + { + "id": "139111", + "name": "Grone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72722000", + "longitude": "9.90885000" + }, + { + "id": "139112", + "name": "Grontardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20136000", + "longitude": "10.15150000" + }, + { + "id": "139113", + "name": "Gropello Cairoli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17707000", + "longitude": "8.99353000" + }, + { + "id": "139116", + "name": "Grosio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29970000", + "longitude": "10.27572000" + }, + { + "id": "139117", + "name": "Grosotto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28196000", + "longitude": "10.25908000" + }, + { + "id": "139135", + "name": "Grumello Cremonese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19415000", + "longitude": "9.86443000" + }, + { + "id": "139136", + "name": "Grumello del Monte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63535000", + "longitude": "9.87526000" + }, + { + "id": "139151", + "name": "Guanzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72758000", + "longitude": "9.01984000" + }, + { + "id": "139155", + "name": "Guardamiglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10742000", + "longitude": "9.68481000" + }, + { + "id": "139174", + "name": "Gudo Visconti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37407000", + "longitude": "9.00014000" + }, + { + "id": "139176", + "name": "Guidizzolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32056000", + "longitude": "10.57801000" + }, + { + "id": "139182", + "name": "Guinzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25678000", + "longitude": "9.15869000" + }, + { + "id": "139185", + "name": "Gussago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58358000", + "longitude": "10.15717000" + }, + { + "id": "139186", + "name": "Gussola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01165000", + "longitude": "10.34894000" + }, + { + "id": "139189", + "name": "Idro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73609000", + "longitude": "10.47337000" + }, + { + "id": "139197", + "name": "Imbersago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70588000", + "longitude": "9.44445000" + }, + { + "id": "139203", + "name": "Inarzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78578000", + "longitude": "8.73563000" + }, + { + "id": "139206", + "name": "Incudine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22030000", + "longitude": "10.35876000" + }, + { + "id": "139207", + "name": "Induno Olona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84571000", + "longitude": "8.84056000" + }, + { + "id": "139210", + "name": "Introbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97387000", + "longitude": "9.44998000" + }, + { + "id": "139213", + "name": "Introzzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08119000", + "longitude": "9.34094000" + }, + { + "id": "139214", + "name": "Inverigo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73795000", + "longitude": "9.21836000" + }, + { + "id": "139215", + "name": "Inverno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19859000", + "longitude": "9.38429000" + }, + { + "id": "139216", + "name": "Inverno e Monteleone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19787000", + "longitude": "9.38526000" + }, + { + "id": "139218", + "name": "Inveruno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51399000", + "longitude": "8.84954000" + }, + { + "id": "139220", + "name": "Inzago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53991000", + "longitude": "9.48343000" + }, + { + "id": "139222", + "name": "Irma", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77129000", + "longitude": "10.28457000" + }, + { + "id": "139231", + "name": "Iseo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65883000", + "longitude": "10.05024000" + }, + { + "id": "139251", + "name": "Isola di Fondra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97859000", + "longitude": "9.74735000" + }, + { + "id": "139238", + "name": "Isola Dovarese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17292000", + "longitude": "10.30879000" + }, + { + "id": "139254", + "name": "Isolaccia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.48901000", + "longitude": "10.29405000" + }, + { + "id": "139256", + "name": "Isorella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30912000", + "longitude": "10.32281000" + }, + { + "id": "139260", + "name": "Ispra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81480000", + "longitude": "8.61294000" + }, + { + "id": "139263", + "name": "Isso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47678000", + "longitude": "9.75866000" + }, + { + "id": "139272", + "name": "Izano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35552000", + "longitude": "9.75138000" + }, + { + "id": "139276", + "name": "Jerago Con Orago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70467000", + "longitude": "8.79593000" + }, + { + "id": "139312", + "name": "Lacchiarella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32290000", + "longitude": "9.13777000" + }, + { + "id": "139324", + "name": "Laglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88056000", + "longitude": "9.13697000" + }, + { + "id": "139331", + "name": "Lainate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57176000", + "longitude": "9.02681000" + }, + { + "id": "139332", + "name": "Laino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98448000", + "longitude": "9.07544000" + }, + { + "id": "139338", + "name": "Lallio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66283000", + "longitude": "9.62887000" + }, + { + "id": "139342", + "name": "Lambrinia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15831000", + "longitude": "9.52750000" + }, + { + "id": "139343", + "name": "Lambrugo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75878000", + "longitude": "9.23954000" + }, + { + "id": "139357", + "name": "Landriano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31155000", + "longitude": "9.26046000" + }, + { + "id": "139359", + "name": "Langosco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21453000", + "longitude": "8.56372000" + }, + { + "id": "139363", + "name": "Lanzada", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26930000", + "longitude": "9.86925000" + }, + { + "id": "139366", + "name": "Lanzo d'Intelvi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97943000", + "longitude": "9.02166000" + }, + { + "id": "139373", + "name": "Lardirago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23572000", + "longitude": "9.23272000" + }, + { + "id": "139382", + "name": "Lasnigo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88198000", + "longitude": "9.26644000" + }, + { + "id": "139411", + "name": "Lavena Ponte Tresa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96710000", + "longitude": "8.85725000" + }, + { + "id": "139412", + "name": "Laveno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90888000", + "longitude": "8.62036000" + }, + { + "id": "139413", + "name": "Lavenone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73853000", + "longitude": "10.43930000" + }, + { + "id": "139419", + "name": "Laxolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80871000", + "longitude": "9.59983000" + }, + { + "id": "139422", + "name": "Lazzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67207000", + "longitude": "9.08424000" + }, + { + "id": "139432", + "name": "Lecco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85589000", + "longitude": "9.39704000" + }, + { + "id": "139433", + "name": "Leffe", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79793000", + "longitude": "9.88426000" + }, + { + "id": "139434", + "name": "Leggiuno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87588000", + "longitude": "8.62063000" + }, + { + "id": "139436", + "name": "Legnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59788000", + "longitude": "8.91506000" + }, + { + "id": "139442", + "name": "Lemna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85808000", + "longitude": "9.15986000" + }, + { + "id": "139445", + "name": "Lenna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94273000", + "longitude": "9.67876000" + }, + { + "id": "139446", + "name": "Lenno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97298000", + "longitude": "9.19084000" + }, + { + "id": "139447", + "name": "Leno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36930000", + "longitude": "10.21675000" + }, + { + "id": "139450", + "name": "Lentate sul Seveso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67637000", + "longitude": "9.11774000" + }, + { + "id": "139470", + "name": "Lesmo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64858000", + "longitude": "9.30735000" + }, + { + "id": "139484", + "name": "Levata", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12518000", + "longitude": "10.76794000" + }, + { + "id": "139485", + "name": "Levate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62518000", + "longitude": "9.62415000" + }, + { + "id": "139490", + "name": "Lezzeno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94411000", + "longitude": "9.18488000" + }, + { + "id": "139509", + "name": "Lierna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95818000", + "longitude": "9.30513000" + }, + { + "id": "139518", + "name": "Limbiate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59951000", + "longitude": "9.12509000" + }, + { + "id": "139521", + "name": "Limido Comasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68917000", + "longitude": "8.97984000" + }, + { + "id": "139526", + "name": "Limone sul Garda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81450000", + "longitude": "10.79278000" + }, + { + "id": "139528", + "name": "Linarolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16236000", + "longitude": "9.26995000" + }, + { + "id": "139529", + "name": "Linate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44701000", + "longitude": "9.27229000" + }, + { + "id": "139534", + "name": "Lipomo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79288000", + "longitude": "9.12024000" + }, + { + "id": "139535", + "name": "Lirio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99446000", + "longitude": "9.25656000" + }, + { + "id": "139536", + "name": "Lisanza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73926000", + "longitude": "8.59852000" + }, + { + "id": "139537", + "name": "Liscate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48316000", + "longitude": "9.41030000" + }, + { + "id": "139543", + "name": "Lissone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61236000", + "longitude": "9.23985000" + }, + { + "id": "139547", + "name": "Livigno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.53630000", + "longitude": "10.13348000" + }, + { + "id": "139550", + "name": "Livo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16849000", + "longitude": "9.30414000" + }, + { + "id": "139553", + "name": "Livraga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19227000", + "longitude": "9.54646000" + }, + { + "id": "139562", + "name": "Locate di Triulzi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35691000", + "longitude": "9.22516000" + }, + { + "id": "139561", + "name": "Locate Varesino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68969000", + "longitude": "8.92992000" + }, + { + "id": "139563", + "name": "Locatello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83518000", + "longitude": "9.53405000" + }, + { + "id": "139568", + "name": "Lodetto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55099000", + "longitude": "10.03175000" + }, + { + "id": "139569", + "name": "Lodi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30989000", + "longitude": "9.50085000" + }, + { + "id": "139570", + "name": "Lodi Vecchio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30422000", + "longitude": "9.41760000" + }, + { + "id": "139572", + "name": "Lodrino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71969000", + "longitude": "10.27767000" + }, + { + "id": "139575", + "name": "Lograto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48458000", + "longitude": "10.05664000" + }, + { + "id": "139578", + "name": "Lomagna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66640000", + "longitude": "9.37654000" + }, + { + "id": "139579", + "name": "Lomazzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69670000", + "longitude": "9.03427000" + }, + { + "id": "139582", + "name": "Lomello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12001000", + "longitude": "8.79612000" + }, + { + "id": "139584", + "name": "Lonate Ceppino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70863000", + "longitude": "8.87936000" + }, + { + "id": "139585", + "name": "Lonate Pozzolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59213000", + "longitude": "8.75194000" + }, + { + "id": "139586", + "name": "Lonato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46079000", + "longitude": "10.47732000" + }, + { + "id": "139593", + "name": "Longhena", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43768000", + "longitude": "10.05967000" + }, + { + "id": "139600", + "name": "Longone al Segrino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81428000", + "longitude": "9.25144000" + }, + { + "id": "139617", + "name": "Losine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98349000", + "longitude": "10.31616000" + }, + { + "id": "139619", + "name": "Lovere", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81379000", + "longitude": "10.06995000" + }, + { + "id": "139620", + "name": "Lovero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.23140000", + "longitude": "10.22856000" + }, + { + "id": "139621", + "name": "Lozio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98569000", + "longitude": "10.26096000" + }, + { + "id": "139622", + "name": "Lozza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77567000", + "longitude": "8.85773000" + }, + { + "id": "139634", + "name": "Lucino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78350000", + "longitude": "9.04340000" + }, + { + "id": "139635", + "name": "Lucino-Rodano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47607000", + "longitude": "9.35315000" + }, + { + "id": "139642", + "name": "Ludriano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44846000", + "longitude": "9.93276000" + }, + { + "id": "139651", + "name": "Luino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00185000", + "longitude": "8.74512000" + }, + { + "id": "139652", + "name": "Luisago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76288000", + "longitude": "9.03544000" + }, + { + "id": "139655", + "name": "Lumezzane", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64789000", + "longitude": "10.26487000" + }, + { + "id": "139659", + "name": "Lunetta-Frassino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16016000", + "longitude": "10.82059000" + }, + { + "id": "139660", + "name": "Lungavilla", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04151000", + "longitude": "9.07842000" + }, + { + "id": "139666", + "name": "Lurago d'Erba", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75097000", + "longitude": "9.21817000" + }, + { + "id": "139665", + "name": "Lurago Marinone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70482000", + "longitude": "8.98330000" + }, + { + "id": "139667", + "name": "Lurano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56568000", + "longitude": "9.64016000" + }, + { + "id": "139669", + "name": "Lurate Caccivio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76701000", + "longitude": "8.99897000" + }, + { + "id": "139681", + "name": "Luvinate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83958000", + "longitude": "8.77193000" + }, + { + "id": "139682", + "name": "Luzzana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71530000", + "longitude": "9.88105000" + }, + { + "id": "139687", + "name": "Maccagno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04357000", + "longitude": "8.73413000" + }, + { + "id": "139689", + "name": "Maccastorna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14667000", + "longitude": "9.85457000" + }, + { + "id": "139700", + "name": "Macherio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63974000", + "longitude": "9.27394000" + }, + { + "id": "139702", + "name": "Maclodio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47778000", + "longitude": "10.04217000" + }, + { + "id": "139707", + "name": "Madignano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34515000", + "longitude": "9.72271000" + }, + { + "id": "139708", + "name": "Madone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65028000", + "longitude": "9.55015000" + }, + { + "id": "139716", + "name": "Magasa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78139000", + "longitude": "10.61597000" + }, + { + "id": "139717", + "name": "Magenta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46456000", + "longitude": "8.88453000" + }, + { + "id": "139719", + "name": "Magherno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22357000", + "longitude": "9.32935000" + }, + { + "id": "139735", + "name": "Magnacavallo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00646000", + "longitude": "11.18326000" + }, + { + "id": "139736", + "name": "Magnago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57920000", + "longitude": "8.80245000" + }, + { + "id": "139739", + "name": "Magno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70665000", + "longitude": "10.19937000" + }, + { + "id": "139741", + "name": "Magreglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92098000", + "longitude": "9.26264000" + }, + { + "id": "139750", + "name": "Mairago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25177000", + "longitude": "9.57836000" + }, + { + "id": "139751", + "name": "Mairano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44802000", + "longitude": "10.07977000" + }, + { + "id": "139754", + "name": "Malagnino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13477000", + "longitude": "10.11477000" + }, + { + "id": "139756", + "name": "Malavicina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29912000", + "longitude": "10.78677000" + }, + { + "id": "139760", + "name": "Malegno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95079000", + "longitude": "10.27406000" + }, + { + "id": "139761", + "name": "Maleo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16633000", + "longitude": "9.76241000" + }, + { + "id": "139765", + "name": "Malgesso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82787000", + "longitude": "8.67553000" + }, + { + "id": "139766", + "name": "Malgrate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84891000", + "longitude": "9.37630000" + }, + { + "id": "139771", + "name": "Malnate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79377000", + "longitude": "8.88104000" + }, + { + "id": "139773", + "name": "Malonno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12168000", + "longitude": "10.31841000" + }, + { + "id": "139788", + "name": "Mandello del Lario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92199000", + "longitude": "9.31974000" + }, + { + "id": "139792", + "name": "Manera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67346000", + "longitude": "9.04058000" + }, + { + "id": "139793", + "name": "Manerba del Garda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54988000", + "longitude": "10.55228000" + }, + { + "id": "139794", + "name": "Manerbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35390000", + "longitude": "10.13803000" + }, + { + "id": "139806", + "name": "Mantegazza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50946000", + "longitude": "8.97321000" + }, + { + "id": "139807", + "name": "Mantello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15249000", + "longitude": "9.48894000" + }, + { + "id": "139811", + "name": "Mantova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16031000", + "longitude": "10.79784000" + }, + { + "id": "139815", + "name": "Mapello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71259000", + "longitude": "9.55443000" + }, + { + "id": "139834", + "name": "Marcallo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48327000", + "longitude": "8.87194000" + }, + { + "id": "139835", + "name": "Marcaria", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12225000", + "longitude": "10.53278000" + }, + { + "id": "139842", + "name": "Marcheno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70649000", + "longitude": "10.21449000" + }, + { + "id": "139844", + "name": "Marchirolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94788000", + "longitude": "8.83343000" + }, + { + "id": "139850", + "name": "Marcignago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25306000", + "longitude": "9.07935000" + }, + { + "id": "139860", + "name": "Maresso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68755000", + "longitude": "9.35593000" + }, + { + "id": "139865", + "name": "Margno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03099000", + "longitude": "9.38164000" + }, + { + "id": "139866", + "name": "Mariana Mantovana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19288000", + "longitude": "10.48688000" + }, + { + "id": "139867", + "name": "Mariano Comense", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69651000", + "longitude": "9.18180000" + }, + { + "id": "139905", + "name": "Marmentino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75499000", + "longitude": "10.28467000" + }, + { + "id": "139906", + "name": "Marmirolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21928000", + "longitude": "10.75609000" + }, + { + "id": "139908", + "name": "Marnate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62855000", + "longitude": "8.90916000" + }, + { + "id": "139911", + "name": "Marone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73719000", + "longitude": "10.09579000" + }, + { + "id": "139931", + "name": "Martignana di Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01107000", + "longitude": "10.37978000" + }, + { + "id": "139934", + "name": "Martinengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57216000", + "longitude": "9.76750000" + }, + { + "id": "139941", + "name": "Marudo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25297000", + "longitude": "9.37716000" + }, + { + "id": "139945", + "name": "Marzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24797000", + "longitude": "9.29505000" + }, + { + "id": "139949", + "name": "Marzio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93818000", + "longitude": "8.85813000" + }, + { + "id": "139951", + "name": "Masate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56708000", + "longitude": "9.46415000" + }, + { + "id": "139955", + "name": "Masciago Primo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91778000", + "longitude": "8.78113000" + }, + { + "id": "139963", + "name": "Maslianico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84301000", + "longitude": "9.04836000" + }, + { + "id": "139978", + "name": "Massalengo-Motta Vigana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26497000", + "longitude": "9.49016000" + }, + { + "id": "140005", + "name": "Mazzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52008000", + "longitude": "10.35387000" + }, + { + "id": "140012", + "name": "Mazzo di Valtellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25736000", + "longitude": "10.25534000" + }, + { + "id": "140016", + "name": "Meda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66121000", + "longitude": "9.15337000" + }, + { + "id": "140017", + "name": "Mede", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09678000", + "longitude": "8.73679000" + }, + { + "id": "140021", + "name": "Mediglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39537000", + "longitude": "9.33165000" + }, + { + "id": "140023", + "name": "Medolago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67129000", + "longitude": "9.49807000" + }, + { + "id": "140024", + "name": "Medole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32588000", + "longitude": "10.51357000" + }, + { + "id": "140040", + "name": "Melegnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35781000", + "longitude": "9.32360000" + }, + { + "id": "140042", + "name": "Meleti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11967000", + "longitude": "9.83568000" + }, + { + "id": "140055", + "name": "Mello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15490000", + "longitude": "9.54734000" + }, + { + "id": "140058", + "name": "Melzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49810000", + "longitude": "9.42043000" + }, + { + "id": "140059", + "name": "Menaggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02075000", + "longitude": "9.23907000" + }, + { + "id": "140060", + "name": "Menarola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29929000", + "longitude": "9.36124000" + }, + { + "id": "140061", + "name": "Menconico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79656000", + "longitude": "9.27946000" + }, + { + "id": "140069", + "name": "Merate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68858000", + "longitude": "9.42080000" + }, + { + "id": "140070", + "name": "Mercallo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74791000", + "longitude": "8.66998000" + }, + { + "id": "140087", + "name": "Merlino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43337000", + "longitude": "9.42985000" + }, + { + "id": "140088", + "name": "Merone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78718000", + "longitude": "9.24404000" + }, + { + "id": "140092", + "name": "Mese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30360000", + "longitude": "9.37769000" + }, + { + "id": "140093", + "name": "Mesenzana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95158000", + "longitude": "8.76453000" + }, + { + "id": "140094", + "name": "Mesero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50227000", + "longitude": "8.85544000" + }, + { + "id": "140104", + "name": "Mezzago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62898000", + "longitude": "9.44485000" + }, + { + "id": "140106", + "name": "Mezzana Bigli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05988000", + "longitude": "8.84728000" + }, + { + "id": "140108", + "name": "Mezzana Rabattone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09488000", + "longitude": "9.03247000" + }, + { + "id": "140111", + "name": "Mezzanino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12489000", + "longitude": "9.20497000" + }, + { + "id": "140115", + "name": "Mezzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44385000", + "longitude": "9.29452000" + }, + { + "id": "140116", + "name": "Mezzegra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98168000", + "longitude": "9.20514000" + }, + { + "id": "140122", + "name": "Mezzoldo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01259000", + "longitude": "9.66555000" + }, + { + "id": "140142", + "name": "Milan", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46427000", + "longitude": "9.18951000" + }, + { + "id": "140151", + "name": "Millepini", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46967000", + "longitude": "9.33763000" + }, + { + "id": "140154", + "name": "Milzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27358000", + "longitude": "10.19927000" + }, + { + "id": "140172", + "name": "Miradolo Terme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17094000", + "longitude": "9.44442000" + }, + { + "id": "140179", + "name": "Misano di Gera d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46946000", + "longitude": "9.62129000" + }, + { + "id": "140181", + "name": "Misinto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66142000", + "longitude": "9.08129000" + }, + { + "id": "140182", + "name": "Missaglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70656000", + "longitude": "9.33471000" + }, + { + "id": "140194", + "name": "Moggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93239000", + "longitude": "9.48623000" + }, + { + "id": "140197", + "name": "Moglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93561000", + "longitude": "10.91463000" + }, + { + "id": "140206", + "name": "Moio de' Calvi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95179000", + "longitude": "9.70075000" + }, + { + "id": "140218", + "name": "Molinetto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49409000", + "longitude": "10.35888000" + }, + { + "id": "140231", + "name": "Molteno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77819000", + "longitude": "9.30386000" + }, + { + "id": "140232", + "name": "Moltrasio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85998000", + "longitude": "9.09844000" + }, + { + "id": "140239", + "name": "Mombelli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86866000", + "longitude": "9.23436000" + }, + { + "id": "140243", + "name": "Mombretto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42390000", + "longitude": "9.36506000" + }, + { + "id": "140256", + "name": "Monasterolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76327000", + "longitude": "9.93138000" + }, + { + "id": "140258", + "name": "Monasterolo del Castello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76319000", + "longitude": "9.93166000" + }, + { + "id": "140270", + "name": "Moncucco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31032000", + "longitude": "9.03920000" + }, + { + "id": "140293", + "name": "Moniga del Garda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52665000", + "longitude": "10.53728000" + }, + { + "id": "140295", + "name": "Monno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21225000", + "longitude": "10.34012000" + }, + { + "id": "140309", + "name": "Montagna in Valtellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17849000", + "longitude": "9.90295000" + }, + { + "id": "140333", + "name": "Montalto Pavese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97802000", + "longitude": "9.21232000" + }, + { + "id": "140338", + "name": "Montanara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13531000", + "longitude": "10.71879000" + }, + { + "id": "140340", + "name": "Montanaso Lombardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33522000", + "longitude": "9.46551000" + }, + { + "id": "140342", + "name": "Montano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79423000", + "longitude": "9.02218000" + }, + { + "id": "140344", + "name": "Montano Lucino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78378000", + "longitude": "9.04244000" + }, + { + "id": "140592", + "name": "Montù Beccaria", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03633000", + "longitude": "9.31268000" + }, + { + "id": "140351", + "name": "Monte", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71489000", + "longitude": "8.82222000" + }, + { + "id": "140357", + "name": "Monte Cremasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37224000", + "longitude": "9.57288000" + }, + { + "id": "140361", + "name": "Monte Marenzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77213000", + "longitude": "9.45476000" + }, + { + "id": "140386", + "name": "Montebello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99994000", + "longitude": "9.10263000" + }, + { + "id": "140397", + "name": "Montecalvo Versiggia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97206000", + "longitude": "9.28536000" + }, + { + "id": "140458", + "name": "Montegrino Valtravaglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97398000", + "longitude": "8.76743000" + }, + { + "id": "140477", + "name": "Montello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67208000", + "longitude": "9.80566000" + }, + { + "id": "140492", + "name": "Montemezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17879000", + "longitude": "9.37094000" + }, + { + "id": "140535", + "name": "Montescano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03196000", + "longitude": "9.28366000" + }, + { + "id": "140540", + "name": "Montesegale", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90696000", + "longitude": "9.12636000" + }, + { + "id": "140542", + "name": "Montesolaro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72100000", + "longitude": "9.11760000" + }, + { + "id": "140548", + "name": "Montevecchia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70548000", + "longitude": "9.38085000" + }, + { + "id": "140559", + "name": "Monticelli Brusati", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63478000", + "longitude": "10.10026000" + }, + { + "id": "140560", + "name": "Monticelli Pavese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11107000", + "longitude": "9.51276000" + }, + { + "id": "140564", + "name": "Monticello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71244000", + "longitude": "9.31481000" + }, + { + "id": "140565", + "name": "Monticello Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70948000", + "longitude": "9.31564000" + }, + { + "id": "140569", + "name": "Montichiari", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41317000", + "longitude": "10.39799000" + }, + { + "id": "140575", + "name": "Montirone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44638000", + "longitude": "10.22877000" + }, + { + "id": "140577", + "name": "Montodine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28419000", + "longitude": "9.70910000" + }, + { + "id": "140582", + "name": "Montorfano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78638000", + "longitude": "9.14374000" + }, + { + "id": "140593", + "name": "Monvalle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85810000", + "longitude": "8.63088000" + }, + { + "id": "140594", + "name": "Monza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58005000", + "longitude": "9.27246000" + }, + { + "id": "140595", + "name": "Monzambano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38534000", + "longitude": "10.69331000" + }, + { + "id": "140601", + "name": "Morazzone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76447000", + "longitude": "8.82813000" + }, + { + "id": "140602", + "name": "Morbegno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13720000", + "longitude": "9.57415000" + }, + { + "id": "140608", + "name": "Morengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53148000", + "longitude": "9.70586000" + }, + { + "id": "140619", + "name": "Morimondo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35381000", + "longitude": "8.95626000" + }, + { + "id": "140624", + "name": "Mornago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74516000", + "longitude": "8.75046000" + }, + { + "id": "140626", + "name": "Mornico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01062000", + "longitude": "9.20926000" + }, + { + "id": "140628", + "name": "Mornico al Serio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59138000", + "longitude": "9.80926000" + }, + { + "id": "140627", + "name": "Mornico Losana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01016000", + "longitude": "9.20616000" + }, + { + "id": "140639", + "name": "Mortara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24940000", + "longitude": "8.73302000" + }, + { + "id": "140641", + "name": "Morterone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87480000", + "longitude": "9.48233000" + }, + { + "id": "140643", + "name": "Moscazzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29358000", + "longitude": "9.68135000" + }, + { + "id": "140656", + "name": "Motta Baluffi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05569000", + "longitude": "10.25855000" + }, + { + "id": "140663", + "name": "Motta Visconti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28774000", + "longitude": "8.99254000" + }, + { + "id": "140668", + "name": "Motteggiana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03307000", + "longitude": "10.76269000" + }, + { + "id": "140669", + "name": "Mottella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16382000", + "longitude": "10.84436000" + }, + { + "id": "140672", + "name": "Mozzanica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47680000", + "longitude": "9.68849000" + }, + { + "id": "140673", + "name": "Mozzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67473000", + "longitude": "8.95644000" + }, + { + "id": "140675", + "name": "Mozzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69868000", + "longitude": "9.60865000" + }, + { + "id": "140678", + "name": "Muggiò", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58878000", + "longitude": "9.22784000" + }, + { + "id": "140681", + "name": "Mulazzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37237000", + "longitude": "9.39765000" + }, + { + "id": "140684", + "name": "Mura", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71307000", + "longitude": "10.34204000" + }, + { + "id": "140698", + "name": "Muscoline", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56249000", + "longitude": "10.46187000" + }, + { + "id": "140702", + "name": "Musso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11295000", + "longitude": "9.27379000" + }, + { + "id": "140706", + "name": "Muzza di Cornegliano Laudense", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28462000", + "longitude": "9.47166000" + }, + { + "id": "140727", + "name": "Nava", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76219000", + "longitude": "9.36308000" + }, + { + "id": "140728", + "name": "Nave", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58480000", + "longitude": "10.27947000" + }, + { + "id": "140730", + "name": "Navedano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75524000", + "longitude": "9.09470000" + }, + { + "id": "140736", + "name": "Negrone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71028000", + "longitude": "9.75811000" + }, + { + "id": "140739", + "name": "Nembro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74411000", + "longitude": "9.76127000" + }, + { + "id": "140749", + "name": "Nerviano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55343000", + "longitude": "8.97920000" + }, + { + "id": "140751", + "name": "Nesso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91238000", + "longitude": "9.15674000" + }, + { + "id": "140757", + "name": "Niardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97599000", + "longitude": "10.33326000" + }, + { + "id": "140760", + "name": "Nibionno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74648000", + "longitude": "9.26894000" + }, + { + "id": "140764", + "name": "Nicorvo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28566000", + "longitude": "8.66794000" + }, + { + "id": "140769", + "name": "Nigoline-Bonomelli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62908000", + "longitude": "9.98682000" + }, + { + "id": "140778", + "name": "Nobile-Monguzzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78018000", + "longitude": "9.23024000" + }, + { + "id": "140809", + "name": "Nosadello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40268000", + "longitude": "9.53047000" + }, + { + "id": "140810", + "name": "Nosate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55074000", + "longitude": "8.72509000" + }, + { + "id": "140814", + "name": "Nova Milanese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58882000", + "longitude": "9.19792000" + }, + { + "id": "140819", + "name": "Novagli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38688000", + "longitude": "10.43874000" + }, + { + "id": "140824", + "name": "Novate Mezzola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21939000", + "longitude": "9.44971000" + }, + { + "id": "140825", + "name": "Novate Milanese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53050000", + "longitude": "9.13954000" + }, + { + "id": "140827", + "name": "Novedrate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69808000", + "longitude": "9.12074000" + }, + { + "id": "140828", + "name": "Novegro-Tregarezzo-San Felice", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46778000", + "longitude": "9.28122000" + }, + { + "id": "140834", + "name": "Noverasco-Sporting Mirasole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39544000", + "longitude": "9.21427000" + }, + { + "id": "140838", + "name": "Noviglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35907000", + "longitude": "9.05215000" + }, + { + "id": "140862", + "name": "Nuvolento", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54599000", + "longitude": "10.38809000" + }, + { + "id": "140863", + "name": "Nuvolera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53218000", + "longitude": "10.36917000" + }, + { + "id": "140865", + "name": "Occagno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92901000", + "longitude": "9.09870000" + }, + { + "id": "140873", + "name": "Odolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64550000", + "longitude": "10.38309000" + }, + { + "id": "140876", + "name": "Offanengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37887000", + "longitude": "9.74236000" + }, + { + "id": "140878", + "name": "Offlaga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38526000", + "longitude": "10.11736000" + }, + { + "id": "140880", + "name": "Oggiona-Santo Stefano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70427000", + "longitude": "8.81653000" + }, + { + "id": "140881", + "name": "Oggiono", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79133000", + "longitude": "9.34815000" + }, + { + "id": "140890", + "name": "Olevano di Lomellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21322000", + "longitude": "8.71750000" + }, + { + "id": "140892", + "name": "Olgiate Comasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78436000", + "longitude": "8.96816000" + }, + { + "id": "140893", + "name": "Olgiate Molgora", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73028000", + "longitude": "9.40335000" + }, + { + "id": "140894", + "name": "Olgiate Olona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63706000", + "longitude": "8.88147000" + }, + { + "id": "140895", + "name": "Olginate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79126000", + "longitude": "9.41869000" + }, + { + "id": "140898", + "name": "Oliva Gessi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00597000", + "longitude": "9.17317000" + }, + { + "id": "140909", + "name": "Olmeneta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23540000", + "longitude": "10.02318000" + }, + { + "id": "140911", + "name": "Olmo al Brembo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97006000", + "longitude": "9.65034000" + }, + { + "id": "140913", + "name": "Oltre Il Colle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88949000", + "longitude": "9.76925000" + }, + { + "id": "140914", + "name": "Oltressenda Alta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91519000", + "longitude": "9.94486000" + }, + { + "id": "140915", + "name": "Oltrona di San Mamette", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75578000", + "longitude": "8.97673000" + }, + { + "id": "140917", + "name": "Ome", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62728000", + "longitude": "10.12137000" + }, + { + "id": "140923", + "name": "Oneta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87149000", + "longitude": "9.81935000" + }, + { + "id": "140927", + "name": "Ono San Pietro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01689000", + "longitude": "10.32836000" + }, + { + "id": "140928", + "name": "Onore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89159000", + "longitude": "10.01076000" + }, + { + "id": "140931", + "name": "Opera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37355000", + "longitude": "9.21084000" + }, + { + "id": "140953", + "name": "Origgio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59676000", + "longitude": "9.01645000" + }, + { + "id": "140954", + "name": "Orino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88148000", + "longitude": "8.71563000" + }, + { + "id": "140957", + "name": "Orio al Serio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67490000", + "longitude": "9.69083000" + }, + { + "id": "140956", + "name": "Orio Litta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16244000", + "longitude": "9.55447000" + }, + { + "id": "140963", + "name": "Ornago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59987000", + "longitude": "9.42099000" + }, + { + "id": "140965", + "name": "Ornica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98892000", + "longitude": "9.57848000" + }, + { + "id": "140974", + "name": "Orsenigo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77839000", + "longitude": "9.17963000" + }, + { + "id": "140997", + "name": "Orzinuovi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40191000", + "longitude": "9.92319000" + }, + { + "id": "140998", + "name": "Orzivecchi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42058000", + "longitude": "9.96326000" + }, + { + "id": "141005", + "name": "Osigo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87532000", + "longitude": "9.29559000" + }, + { + "id": "141009", + "name": "Osio Sopra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62908000", + "longitude": "9.58465000" + }, + { + "id": "141010", + "name": "Osio Sotto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61608000", + "longitude": "9.58905000" + }, + { + "id": "141011", + "name": "Osmate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78867000", + "longitude": "8.65523000" + }, + { + "id": "141012", + "name": "Osnago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67548000", + "longitude": "9.39192000" + }, + { + "id": "141019", + "name": "Ospedaletto Lodigiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16877000", + "longitude": "9.57866000" + }, + { + "id": "141023", + "name": "Ospitaletto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55221000", + "longitude": "10.07562000" + }, + { + "id": "141024", + "name": "Ossago Lodigiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24210000", + "longitude": "9.53720000" + }, + { + "id": "141027", + "name": "Ossimo Superiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94619000", + "longitude": "10.23056000" + }, + { + "id": "141028", + "name": "Ossona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50708000", + "longitude": "8.89314000" + }, + { + "id": "141029", + "name": "Ossuccio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96958000", + "longitude": "9.17974000" + }, + { + "id": "141032", + "name": "Osteno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00668000", + "longitude": "9.08385000" + }, + { + "id": "141033", + "name": "Osteno-Claino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00367000", + "longitude": "9.08741000" + }, + { + "id": "141040", + "name": "Ostiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22260000", + "longitude": "10.25450000" + }, + { + "id": "141041", + "name": "Ostiglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06978000", + "longitude": "11.13499000" + }, + { + "id": "141052", + "name": "Ottobiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15418000", + "longitude": "8.83198000" + }, + { + "id": "141066", + "name": "Ozzero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36775000", + "longitude": "8.92440000" + }, + { + "id": "141073", + "name": "Padenghe sul Garda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50787000", + "longitude": "10.51857000" + }, + { + "id": "141081", + "name": "Paderno d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67879000", + "longitude": "9.44491000" + }, + { + "id": "141078", + "name": "Paderno Dugnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56899000", + "longitude": "9.16483000" + }, + { + "id": "141079", + "name": "Paderno Franciacorta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58687000", + "longitude": "10.07975000" + }, + { + "id": "141080", + "name": "Paderno Ponchielli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23797000", + "longitude": "9.92876000" + }, + { + "id": "58203", + "name": "Pagazzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53428000", + "longitude": "9.67116000" + }, + { + "id": "58212", + "name": "Pagnona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05969000", + "longitude": "9.40274000" + }, + { + "id": "58215", + "name": "Paisco Loveno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07910000", + "longitude": "10.29256000" + }, + { + "id": "58216", + "name": "Paitone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55208000", + "longitude": "10.40227000" + }, + { + "id": "58217", + "name": "Paladina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73068000", + "longitude": "9.60585000" + }, + { + "id": "58226", + "name": "Palazzago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75298000", + "longitude": "9.53365000" + }, + { + "id": "58230", + "name": "Palazzo Pignano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39007000", + "longitude": "9.56956000" + }, + { + "id": "58236", + "name": "Palazzolo sull'Oglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59665000", + "longitude": "9.88688000" + }, + { + "id": "58242", + "name": "Palestro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30302000", + "longitude": "8.53320000" + }, + { + "id": "58244", + "name": "Palidano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97203000", + "longitude": "10.77943000" + }, + { + "id": "58266", + "name": "Palosco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58928000", + "longitude": "9.83646000" + }, + { + "id": "58274", + "name": "Pancarana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07523000", + "longitude": "9.05109000" + }, + { + "id": "58276", + "name": "Pandino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40559000", + "longitude": "9.55218000" + }, + { + "id": "58285", + "name": "Pantigliate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43526000", + "longitude": "9.35220000" + }, + { + "id": "58294", + "name": "Parabiago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56034000", + "longitude": "8.94545000" + }, + { + "id": "58296", + "name": "Paratico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65879000", + "longitude": "9.95792000" + }, + { + "id": "58320", + "name": "Parè", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81088000", + "longitude": "9.00874000" + }, + { + "id": "58306", + "name": "Parlasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01789000", + "longitude": "9.34494000" + }, + { + "id": "58308", + "name": "Parmezzana Calzana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63350000", + "longitude": "10.09540000" + }, + { + "id": "58313", + "name": "Parona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28165000", + "longitude": "8.75055000" + }, + { + "id": "58315", + "name": "Parre", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87459000", + "longitude": "9.89086000" + }, + { + "id": "58319", + "name": "Parzanica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73873000", + "longitude": "10.03518000" + }, + { + "id": "58324", + "name": "Paspardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03225000", + "longitude": "10.36879000" + }, + { + "id": "58329", + "name": "Passirana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54792000", + "longitude": "9.04412000" + }, + { + "id": "58330", + "name": "Passirano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59673000", + "longitude": "10.06986000" + }, + { + "id": "58342", + "name": "Pasturo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95168000", + "longitude": "9.44414000" + }, + { + "id": "58356", + "name": "Paullo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41834000", + "longitude": "9.40042000" + }, + { + "id": "58359", + "name": "Pavia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19205000", + "longitude": "9.15917000" + }, + { + "id": "58364", + "name": "Pavone del Mella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30147000", + "longitude": "10.20984000" + }, + { + "id": "58382", + "name": "Pedesina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08189000", + "longitude": "9.54944000" + }, + { + "id": "58384", + "name": "Pedrengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69598000", + "longitude": "9.73495000" + }, + { + "id": "58386", + "name": "Peglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16039000", + "longitude": "9.29474000" + }, + { + "id": "58387", + "name": "Pegognaga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99456000", + "longitude": "10.85967000" + }, + { + "id": "58389", + "name": "Peia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79949000", + "longitude": "9.89926000" + }, + { + "id": "58396", + "name": "Pellio Intelvi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97988000", + "longitude": "9.05864000" + }, + { + "id": "58419", + "name": "Perego", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73758000", + "longitude": "9.36295000" + }, + { + "id": "58427", + "name": "Perledo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01529000", + "longitude": "9.29560000" + }, + { + "id": "58435", + "name": "Pero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51017000", + "longitude": "9.08704000" + }, + { + "id": "58439", + "name": "Persico Dosimo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18587000", + "longitude": "10.10517000" + }, + { + "id": "58442", + "name": "Pertica Alta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74239000", + "longitude": "10.34417000" + }, + { + "id": "58443", + "name": "Pertica Bassa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75339000", + "longitude": "10.37247000" + }, + { + "id": "58451", + "name": "Pescarolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19387000", + "longitude": "10.18647000" + }, + { + "id": "58453", + "name": "Pescate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83348000", + "longitude": "9.39395000" + }, + { + "id": "58469", + "name": "Pessano Con Bornago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54937000", + "longitude": "9.38145000" + }, + { + "id": "58470", + "name": "Pessina Cremonese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18505000", + "longitude": "10.24815000" + }, + { + "id": "58499", + "name": "Pezzaze", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77629000", + "longitude": "10.23597000" + }, + { + "id": "58504", + "name": "Piadena", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12859000", + "longitude": "10.37101000" + }, + { + "id": "58507", + "name": "Piamborno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91969000", + "longitude": "10.22526000" + }, + { + "id": "58508", + "name": "Pian Camuno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84186000", + "longitude": "10.14181000" + }, + { + "id": "58516", + "name": "Pianazzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.42815000", + "longitude": "9.34420000" + }, + { + "id": "58527", + "name": "Pianello del Lario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10279000", + "longitude": "9.27694000" + }, + { + "id": "58528", + "name": "Pianengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40217000", + "longitude": "9.69476000" + }, + { + "id": "58532", + "name": "Piangaiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78877000", + "longitude": "9.99461000" + }, + { + "id": "58534", + "name": "Pianico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80989000", + "longitude": "10.04306000" + }, + { + "id": "58552", + "name": "Piantedo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13663000", + "longitude": "9.42770000" + }, + { + "id": "58555", + "name": "Piario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89649000", + "longitude": "9.92726000" + }, + { + "id": "58557", + "name": "Piateda Centro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15960000", + "longitude": "9.93495000" + }, + { + "id": "58561", + "name": "Piazza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58725000", + "longitude": "10.15526000" + }, + { + "id": "58566", + "name": "Piazza Brembana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94769000", + "longitude": "9.67330000" + }, + { + "id": "58567", + "name": "Piazza Caduti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70513000", + "longitude": "9.50251000" + }, + { + "id": "58573", + "name": "Piazzatorre", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99273000", + "longitude": "9.68942000" + }, + { + "id": "58577", + "name": "Piazzolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97979000", + "longitude": "9.67055000" + }, + { + "id": "58598", + "name": "Pieranica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42617000", + "longitude": "9.61026000" + }, + { + "id": "58603", + "name": "Pietra de' Giorgi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02136000", + "longitude": "9.23036000" + }, + { + "id": "58630", + "name": "Pieve", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77273000", + "longitude": "10.75913000" + }, + { + "id": "58632", + "name": "Pieve Albignola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11316000", + "longitude": "8.95999000" + }, + { + "id": "58646", + "name": "Pieve d'Olmi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08957000", + "longitude": "10.12368000" + }, + { + "id": "58647", + "name": "Pieve del Cairo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04920000", + "longitude": "8.80322000" + }, + { + "id": "58651", + "name": "Pieve di Coriano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03388000", + "longitude": "11.10780000" + }, + { + "id": "58633", + "name": "Pieve Emanuele", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35052000", + "longitude": "9.20268000" + }, + { + "id": "58634", + "name": "Pieve Fissiraga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26327000", + "longitude": "9.45836000" + }, + { + "id": "58637", + "name": "Pieve Porto Morone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10979000", + "longitude": "9.44019000" + }, + { + "id": "58638", + "name": "Pieve San Giacomo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13204000", + "longitude": "10.18775000" + }, + { + "id": "58657", + "name": "Pievedizio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46062000", + "longitude": "10.08771000" + }, + { + "id": "58665", + "name": "Pigra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95735000", + "longitude": "9.12649000" + }, + { + "id": "58672", + "name": "Pinarolo Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06986000", + "longitude": "9.16725000" + }, + { + "id": "58680", + "name": "Pino sulla Sponda del Lago Maggiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10078000", + "longitude": "8.73873000" + }, + { + "id": "58688", + "name": "Pioltello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50147000", + "longitude": "9.33053000" + }, + { + "id": "58711", + "name": "Pisogne", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80777000", + "longitude": "10.11023000" + }, + { + "id": "58719", + "name": "Piubega", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22677000", + "longitude": "10.53195000" + }, + { + "id": "58721", + "name": "Piuro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32979000", + "longitude": "9.42064000" + }, + { + "id": "58723", + "name": "Pizzale", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03856000", + "longitude": "9.04995000" + }, + { + "id": "58725", + "name": "Pizzighettone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18690000", + "longitude": "9.78781000" + }, + { + "id": "58737", + "name": "Plesio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04742000", + "longitude": "9.22882000" + }, + { + "id": "58741", + "name": "Poasco-Sorigherio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40310000", + "longitude": "9.23092000" + }, + { + "id": "58761", + "name": "Poggio Rusco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96693000", + "longitude": "11.10419000" + }, + { + "id": "58772", + "name": "Poggiridenti Alto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17480000", + "longitude": "9.92605000" + }, + { + "id": "58773", + "name": "Poggiridenti Piano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16991000", + "longitude": "9.92671000" + }, + { + "id": "58774", + "name": "Pogliano Milanese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53786000", + "longitude": "8.99403000" + }, + { + "id": "58775", + "name": "Pognana Lario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88044000", + "longitude": "9.15762000" + }, + { + "id": "58776", + "name": "Pognano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58638000", + "longitude": "9.63996000" + }, + { + "id": "58782", + "name": "Polaveno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66148000", + "longitude": "10.12396000" + }, + { + "id": "58804", + "name": "Polpenazze del Garda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55118000", + "longitude": "10.50488000" + }, + { + "id": "58814", + "name": "Pometo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92788000", + "longitude": "9.27348000" + }, + { + "id": "58819", + "name": "Pompiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43116000", + "longitude": "9.98910000" + }, + { + "id": "58820", + "name": "Pomponesco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93118000", + "longitude": "10.59402000" + }, + { + "id": "58822", + "name": "Poncarale", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46089000", + "longitude": "10.17976000" + }, + { + "id": "58824", + "name": "Ponna Superiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98957000", + "longitude": "9.09406000" + }, + { + "id": "58837", + "name": "Ponte Caffaro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82078000", + "longitude": "10.52707000" + }, + { + "id": "58838", + "name": "Ponte Cingoli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59751000", + "longitude": "10.10687000" + }, + { + "id": "58856", + "name": "Ponte di Legno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25896000", + "longitude": "10.51048000" + }, + { + "id": "58859", + "name": "Ponte in Valtellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17500000", + "longitude": "9.97785000" + }, + { + "id": "58842", + "name": "Ponte Lambro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82539000", + "longitude": "9.22455000" + }, + { + "id": "58843", + "name": "Ponte Nizza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85188000", + "longitude": "9.09739000" + }, + { + "id": "58844", + "name": "Ponte Nossa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86611000", + "longitude": "9.88364000" + }, + { + "id": "58847", + "name": "Ponte San Marco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47686000", + "longitude": "10.41315000" + }, + { + "id": "58849", + "name": "Ponte San Pietro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70596000", + "longitude": "9.59050000" + }, + { + "id": "58876", + "name": "Ponteranica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73248000", + "longitude": "9.65175000" + }, + { + "id": "58880", + "name": "Pontevico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27315000", + "longitude": "10.09248000" + }, + { + "id": "58883", + "name": "Ponti sul Mincio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41208000", + "longitude": "10.68508000" + }, + { + "id": "58887", + "name": "Pontida", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73129000", + "longitude": "9.51141000" + }, + { + "id": "58890", + "name": "Pontirolo Nuovo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56918000", + "longitude": "9.56935000" + }, + { + "id": "58891", + "name": "Pontoglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56938000", + "longitude": "9.85346000" + }, + { + "id": "58907", + "name": "Porlezza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03714000", + "longitude": "9.12921000" + }, + { + "id": "58914", + "name": "Portalbera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09789000", + "longitude": "9.31774000" + }, + { + "id": "58924", + "name": "Porto Ceresio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91285000", + "longitude": "8.89684000" + }, + { + "id": "58941", + "name": "Porto d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66241000", + "longitude": "9.47563000" + }, + { + "id": "58939", + "name": "Porto Valtravaglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96088000", + "longitude": "8.68109000" + }, + { + "id": "58961", + "name": "Postalesio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17379000", + "longitude": "9.77659000" + }, + { + "id": "58976", + "name": "Pozzaglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19999000", + "longitude": "10.05345000" + }, + { + "id": "58977", + "name": "Pozzaglio ed Uniti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20027000", + "longitude": "10.05057000" + }, + { + "id": "58982", + "name": "Pozzo d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57258000", + "longitude": "9.50295000" + }, + { + "id": "58984", + "name": "Pozzolengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40515000", + "longitude": "10.63040000" + }, + { + "id": "58991", + "name": "Pozzuolo Martesana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51398000", + "longitude": "9.45625000" + }, + { + "id": "58993", + "name": "Pradalunga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74588000", + "longitude": "9.78225000" + }, + { + "id": "59000", + "name": "Pralboino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26720000", + "longitude": "10.21839000" + }, + { + "id": "59012", + "name": "Prata Camportaccio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30719000", + "longitude": "9.39524000" + }, + { + "id": "59013", + "name": "Prata Centro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30847000", + "longitude": "9.39625000" + }, + { + "id": "59046", + "name": "Predore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68085000", + "longitude": "10.01271000" + }, + { + "id": "59049", + "name": "Pregnana Milanese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51597000", + "longitude": "9.00704000" + }, + { + "id": "59050", + "name": "Pregola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75069000", + "longitude": "9.28223000" + }, + { + "id": "59052", + "name": "Premana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05245000", + "longitude": "9.42129000" + }, + { + "id": "59055", + "name": "Premenugo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46790000", + "longitude": "9.38458000" + }, + { + "id": "59058", + "name": "Premolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87019000", + "longitude": "9.87466000" + }, + { + "id": "59064", + "name": "Preseglie", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66829000", + "longitude": "10.39677000" + }, + { + "id": "59066", + "name": "Presezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69208000", + "longitude": "9.57035000" + }, + { + "id": "59071", + "name": "Prevalle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55138000", + "longitude": "10.42207000" + }, + { + "id": "59078", + "name": "Primaluna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98379000", + "longitude": "9.43764000" + }, + { + "id": "59093", + "name": "Proserpio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82828000", + "longitude": "9.24554000" + }, + { + "id": "59095", + "name": "Prosto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32946000", + "longitude": "9.42094000" + }, + { + "id": "59097", + "name": "Provaglio d'Iseo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63538000", + "longitude": "10.04466000" + }, + { + "id": "59096", + "name": "Provaglio Val Sabbia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68879000", + "longitude": "10.43397000" + }, + { + "id": "59099", + "name": "Provezze", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63139000", + "longitude": "10.07287000" + }, + { + "id": "59115", + "name": "Provincia di Bergamo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83333000", + "longitude": "9.80000000" + }, + { + "id": "59117", + "name": "Provincia di Brescia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70648000", + "longitude": "10.33562000" + }, + { + "id": "59125", + "name": "Provincia di Como", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91249000", + "longitude": "9.15744000" + }, + { + "id": "59127", + "name": "Provincia di Cremona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23333000", + "longitude": "9.93333000" + }, + { + "id": "59142", + "name": "Provincia di Lecco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85397000", + "longitude": "9.39001000" + }, + { + "id": "59144", + "name": "Provincia di Lodi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29638000", + "longitude": "9.52858000" + }, + { + "id": "59147", + "name": "Provincia di Mantova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16667000", + "longitude": "10.78333000" + }, + { + "id": "59151", + "name": "Provincia di Monza e della Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59674000", + "longitude": "9.21616000" + }, + { + "id": "59157", + "name": "Provincia di Pavia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11667000", + "longitude": "9.13333000" + }, + { + "id": "59177", + "name": "Provincia di Sondrio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21108000", + "longitude": "9.94907000" + }, + { + "id": "59184", + "name": "Provincia di Varese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80000000", + "longitude": "8.80000000" + }, + { + "id": "59194", + "name": "Puegnago sul Garda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56679000", + "longitude": "10.50977000" + }, + { + "id": "59195", + "name": "Puginate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71095000", + "longitude": "9.05772000" + }, + { + "id": "59204", + "name": "Pumenengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48002000", + "longitude": "9.86775000" + }, + { + "id": "59207", + "name": "Pusiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81478000", + "longitude": "9.28217000" + }, + { + "id": "59227", + "name": "Quartiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35800000", + "longitude": "9.41760000" + }, + { + "id": "59238", + "name": "Quattro Strade", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69550000", + "longitude": "9.37681000" + }, + { + "id": "59246", + "name": "Quingentole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03801000", + "longitude": "11.04575000" + }, + { + "id": "59247", + "name": "Quintano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42047000", + "longitude": "9.61856000" + }, + { + "id": "59251", + "name": "Quinzano d'Oglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31430000", + "longitude": "10.00785000" + }, + { + "id": "59252", + "name": "Quistello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00794000", + "longitude": "10.98377000" + }, + { + "id": "59265", + "name": "Raffa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57047000", + "longitude": "10.52962000" + }, + { + "id": "59276", + "name": "Ramponio Verna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99698000", + "longitude": "9.06633000" + }, + { + "id": "59278", + "name": "Rancio Valcuvia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91594000", + "longitude": "8.77157000" + }, + { + "id": "59279", + "name": "Ranco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79733000", + "longitude": "8.57105000" + }, + { + "id": "59281", + "name": "Ranica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72328000", + "longitude": "9.71335000" + }, + { + "id": "59282", + "name": "Ranzanico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78839000", + "longitude": "9.93506000" + }, + { + "id": "59293", + "name": "Rasura", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10059000", + "longitude": "9.55274000" + }, + { + "id": "59304", + "name": "Rea", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11336000", + "longitude": "9.15465000" + }, + { + "id": "59314", + "name": "Redavalle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03796000", + "longitude": "9.20225000" + }, + { + "id": "59315", + "name": "Redondesco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16638000", + "longitude": "10.51228000" + }, + { + "id": "59323", + "name": "Regoledo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13319000", + "longitude": "9.54597000" + }, + { + "id": "59328", + "name": "Remedello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27838000", + "longitude": "10.37198000" + }, + { + "id": "59329", + "name": "Remedello di Sopra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27873000", + "longitude": "10.37109000" + }, + { + "id": "59330", + "name": "Renate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72438000", + "longitude": "9.27994000" + }, + { + "id": "59335", + "name": "Rescaldina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62002000", + "longitude": "8.94878000" + }, + { + "id": "59338", + "name": "Retorbido", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94980000", + "longitude": "9.03680000" + }, + { + "id": "59341", + "name": "Revere", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05207000", + "longitude": "11.13059000" + }, + { + "id": "59346", + "name": "Rezzago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86673000", + "longitude": "9.24863000" + }, + { + "id": "59347", + "name": "Rezzato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51182000", + "longitude": "10.31731000" + }, + { + "id": "59352", + "name": "Rho", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53245000", + "longitude": "9.04020000" + }, + { + "id": "59369", + "name": "Ricengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40567000", + "longitude": "9.72396000" + }, + { + "id": "59398", + "name": "Riozzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34622000", + "longitude": "9.32168000" + }, + { + "id": "59404", + "name": "Ripalta Arpina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30187000", + "longitude": "9.72896000" + }, + { + "id": "59405", + "name": "Ripalta Guerina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30607000", + "longitude": "9.70396000" + }, + { + "id": "59406", + "name": "Ripalta Nuova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33203000", + "longitude": "9.69244000" + }, + { + "id": "59420", + "name": "Riva di Solto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77418000", + "longitude": "10.03941000" + }, + { + "id": "59426", + "name": "Rivanazzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92908000", + "longitude": "9.01368000" + }, + { + "id": "59430", + "name": "Rivarolo del Re", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03116000", + "longitude": "10.47253000" + }, + { + "id": "59429", + "name": "Rivarolo Mantovano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07272000", + "longitude": "10.43713000" + }, + { + "id": "59443", + "name": "Rivolta d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46962000", + "longitude": "9.51251000" + }, + { + "id": "59688", + "name": "Roè", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62576000", + "longitude": "10.49960000" + }, + { + "id": "59689", + "name": "Roè Volciano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61199000", + "longitude": "10.48857000" + }, + { + "id": "59455", + "name": "Robbiate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68829000", + "longitude": "9.43712000" + }, + { + "id": "59456", + "name": "Robbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28901000", + "longitude": "8.59289000" + }, + { + "id": "59457", + "name": "Robecchetto Con Induno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52848000", + "longitude": "8.77068000" + }, + { + "id": "59459", + "name": "Robecco d'Oglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25851000", + "longitude": "10.07718000" + }, + { + "id": "59458", + "name": "Robecco Pavese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04836000", + "longitude": "9.15015000" + }, + { + "id": "59460", + "name": "Robecco sul Naviglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43662000", + "longitude": "8.88573000" + }, + { + "id": "59501", + "name": "Roccafranca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46405000", + "longitude": "9.91260000" + }, + { + "id": "59551", + "name": "Rodengo-Saiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59958000", + "longitude": "10.10717000" + }, + { + "id": "59552", + "name": "Rodero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82398000", + "longitude": "8.91523000" + }, + { + "id": "59554", + "name": "Rodigo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19912000", + "longitude": "10.62527000" + }, + { + "id": "59557", + "name": "Rogeno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78238000", + "longitude": "9.27404000" + }, + { + "id": "59559", + "name": "Roggione", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18378000", + "longitude": "9.80739000" + }, + { + "id": "59562", + "name": "Rognano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28847000", + "longitude": "9.09025000" + }, + { + "id": "59563", + "name": "Rogno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85659000", + "longitude": "10.13216000" + }, + { + "id": "59564", + "name": "Rogolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13721000", + "longitude": "9.48528000" + }, + { + "id": "59565", + "name": "Rogoredo-Valaperta-Rimoldo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67695000", + "longitude": "9.33277000" + }, + { + "id": "59572", + "name": "Romagnese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84131000", + "longitude": "9.32810000" + }, + { + "id": "59575", + "name": "Romanengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37815000", + "longitude": "9.78777000" + }, + { + "id": "59576", + "name": "Romano Banco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42309000", + "longitude": "9.10707000" + }, + { + "id": "59579", + "name": "Romano di Lombardia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52081000", + "longitude": "9.75440000" + }, + { + "id": "59588", + "name": "Ronago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83228000", + "longitude": "8.98364000" + }, + { + "id": "59590", + "name": "Roncadelle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52718000", + "longitude": "10.15407000" + }, + { + "id": "59592", + "name": "Roncaro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22817000", + "longitude": "9.27545000" + }, + { + "id": "59594", + "name": "Roncello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60238000", + "longitude": "9.45495000" + }, + { + "id": "59600", + "name": "Ronco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52668000", + "longitude": "9.35921000" + }, + { + "id": "59603", + "name": "Ronco Briantino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66628000", + "longitude": "9.40535000" + }, + { + "id": "59606", + "name": "Roncobello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95569000", + "longitude": "9.75235000" + }, + { + "id": "59608", + "name": "Roncoferraro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13812000", + "longitude": "10.94210000" + }, + { + "id": "59611", + "name": "Roncola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76868000", + "longitude": "9.56065000" + }, + { + "id": "59626", + "name": "Rosasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25031000", + "longitude": "8.57930000" + }, + { + "id": "59627", + "name": "Rosate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34965000", + "longitude": "9.01659000" + }, + { + "id": "59655", + "name": "Rota d'Imagna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83088000", + "longitude": "9.51225000" + }, + { + "id": "59662", + "name": "Rotta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16242000", + "longitude": "9.14564000" + }, + { + "id": "59667", + "name": "Rovagnate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73692000", + "longitude": "9.37111000" + }, + { + "id": "59669", + "name": "Rovato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56342000", + "longitude": "10.00213000" + }, + { + "id": "59672", + "name": "Rovellasca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66664000", + "longitude": "9.04884000" + }, + { + "id": "59673", + "name": "Rovello Porro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65210000", + "longitude": "9.03940000" + }, + { + "id": "59674", + "name": "Roverbella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26659000", + "longitude": "10.77047000" + }, + { + "id": "59682", + "name": "Rovescala", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00696000", + "longitude": "9.34586000" + }, + { + "id": "59683", + "name": "Rovetta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89178000", + "longitude": "9.98212000" + }, + { + "id": "59687", + "name": "Rozzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38193000", + "longitude": "9.15590000" + }, + { + "id": "59694", + "name": "Rudiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48952000", + "longitude": "9.88606000" + }, + { + "id": "59701", + "name": "Ruino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91145000", + "longitude": "9.27553000" + }, + { + "id": "59713", + "name": "Sabbio Chiese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65589000", + "longitude": "10.42193000" + }, + { + "id": "59715", + "name": "Sabbioneta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99787000", + "longitude": "10.48848000" + }, + { + "id": "59716", + "name": "Sacca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89953000", + "longitude": "10.22008000" + }, + { + "id": "59736", + "name": "Sairano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13672000", + "longitude": "9.05162000" + }, + { + "id": "59745", + "name": "Sala al Barro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82057000", + "longitude": "9.36220000" + }, + { + "id": "59742", + "name": "Sala Comacina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96418000", + "longitude": "9.16604000" + }, + { + "id": "59796", + "name": "Salò", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60685000", + "longitude": "10.52050000" + }, + { + "id": "59755", + "name": "Sale Marasino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70638000", + "longitude": "10.11216000" + }, + { + "id": "59761", + "name": "Salerano sul Lambro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29657000", + "longitude": "9.38515000" + }, + { + "id": "59768", + "name": "Salice Terme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91510000", + "longitude": "9.02630000" + }, + { + "id": "59782", + "name": "Saltrio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87347000", + "longitude": "8.92436000" + }, + { + "id": "59790", + "name": "Salvirola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35630000", + "longitude": "9.77924000" + }, + { + "id": "59798", + "name": "Samarate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62410000", + "longitude": "8.78507000" + }, + { + "id": "59812", + "name": "Samolaco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.24249000", + "longitude": "9.39404000" + }, + { + "id": "59820", + "name": "San Bartolomeo Val Cavargna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08349000", + "longitude": "9.14913000" + }, + { + "id": "59825", + "name": "San Bassano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24378000", + "longitude": "9.80954000" + }, + { + "id": "59828", + "name": "San Benedetto Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04612000", + "longitude": "10.93367000" + }, + { + "id": "59838", + "name": "San Biagio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09942000", + "longitude": "10.84728000" + }, + { + "id": "59847", + "name": "San Bovio-San Felice", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46282000", + "longitude": "9.31263000" + }, + { + "id": "59860", + "name": "San Cassiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.27697000", + "longitude": "9.39743000" + }, + { + "id": "59870", + "name": "San Cipriano Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10909000", + "longitude": "9.28089000" + }, + { + "id": "59877", + "name": "San Colombano al Lambro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18322000", + "longitude": "9.49028000" + }, + { + "id": "59886", + "name": "San Damiano al Colle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02713000", + "longitude": "9.34860000" + }, + { + "id": "59888", + "name": "San Daniele Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06727000", + "longitude": "10.17637000" + }, + { + "id": "59896", + "name": "San Donato Milanese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41047000", + "longitude": "9.26838000" + }, + { + "id": "59902", + "name": "San Fedele Intelvi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96768000", + "longitude": "9.08074000" + }, + { + "id": "59903", + "name": "San Fedele Superiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96667000", + "longitude": "9.06667000" + }, + { + "id": "59906", + "name": "San Felice", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14301000", + "longitude": "10.07373000" + }, + { + "id": "59910", + "name": "San Felice del Benaco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58276000", + "longitude": "10.55380000" + }, + { + "id": "59916", + "name": "San Fermo della Battaglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80868000", + "longitude": "9.04744000" + }, + { + "id": "59921", + "name": "San Fiorano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13815000", + "longitude": "9.72063000" + }, + { + "id": "59934", + "name": "San Genesio ed Uniti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23414000", + "longitude": "9.17997000" + }, + { + "id": "59939", + "name": "San Gervasio Bresciano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30774000", + "longitude": "10.14652000" + }, + { + "id": "59942", + "name": "San Giacomo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59379000", + "longitude": "10.47689000" + }, + { + "id": "59947", + "name": "San Giacomo delle Segnate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97418000", + "longitude": "11.03434000" + }, + { + "id": "59944", + "name": "San Giacomo Filippo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.33769000", + "longitude": "9.37124000" + }, + { + "id": "59970", + "name": "San Giorgio di Lomellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17486000", + "longitude": "8.79014000" + }, + { + "id": "59962", + "name": "San Giorgio Su Legnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57377000", + "longitude": "8.91374000" + }, + { + "id": "59982", + "name": "San Giovanni Bianco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87342000", + "longitude": "9.65420000" + }, + { + "id": "59994", + "name": "San Giovanni del Dosso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96627000", + "longitude": "11.08114000" + }, + { + "id": "59996", + "name": "San Giovanni in Croce", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07396000", + "longitude": "10.37315000" + }, + { + "id": "60004", + "name": "San Giuliano Milanese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39402000", + "longitude": "9.29109000" + }, + { + "id": "60046", + "name": "San Lorenzo di Rovetta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87971000", + "longitude": "9.97537000" + }, + { + "id": "60053", + "name": "San Mamete", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02505000", + "longitude": "9.05364000" + }, + { + "id": "60075", + "name": "San Martino Dall'Argine", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09715000", + "longitude": "10.51766000" + }, + { + "id": "60083", + "name": "San Martino del Lago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07243000", + "longitude": "10.31568000" + }, + { + "id": "60084", + "name": "San Martino della Battaglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43832000", + "longitude": "10.60053000" + }, + { + "id": "60095", + "name": "San Martino in Strada", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27497000", + "longitude": "9.52636000" + }, + { + "id": "60077", + "name": "San Martino Siccomario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16340000", + "longitude": "9.14062000" + }, + { + "id": "60126", + "name": "San Michele-San Giorgio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69594000", + "longitude": "9.05856000" + }, + { + "id": "60132", + "name": "San Nazzaro Val Cavargna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08939000", + "longitude": "9.12743000" + }, + { + "id": "60145", + "name": "San Nicolò", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.46299000", + "longitude": "10.40998000" + }, + { + "id": "60154", + "name": "San Paolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37249000", + "longitude": "10.02397000" + }, + { + "id": "60160", + "name": "San Paolo d'Argon", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68838000", + "longitude": "9.80226000" + }, + { + "id": "60163", + "name": "San Pellegrino Terme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83443000", + "longitude": "9.66753000" + }, + { + "id": "60225", + "name": "San Rocco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00945000", + "longitude": "9.16191000" + }, + { + "id": "60226", + "name": "San Rocco al Porto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08197000", + "longitude": "9.69717000" + }, + { + "id": "60235", + "name": "San Sebastiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65192000", + "longitude": "10.25681000" + }, + { + "id": "60245", + "name": "San Siro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06573000", + "longitude": "9.26877000" + }, + { + "id": "60265", + "name": "San Vigilio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60808000", + "longitude": "10.19442000" + }, + { + "id": "60286", + "name": "San Vittore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30799000", + "longitude": "9.38310000" + }, + { + "id": "60287", + "name": "San Vittore Olona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58577000", + "longitude": "8.94134000" + }, + { + "id": "60291", + "name": "San Zeno Naviglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49258000", + "longitude": "10.21847000" + }, + { + "id": "60294", + "name": "San Zenone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64169000", + "longitude": "10.14685000" + }, + { + "id": "60295", + "name": "San Zenone al Lambro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32681000", + "longitude": "9.35598000" + }, + { + "id": "60296", + "name": "San Zenone al Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10856000", + "longitude": "9.36176000" + }, + { + "id": "60305", + "name": "Sangiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87508000", + "longitude": "8.63333000" + }, + { + "id": "60309", + "name": "Sannazzaro de' Burgondi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10226000", + "longitude": "8.90635000" + }, + { + "id": "60319", + "name": "Sant'Agata Martesana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52220000", + "longitude": "9.38382000" + }, + { + "id": "60333", + "name": "Sant'Alessio Con Vialone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22237000", + "longitude": "9.22605000" + }, + { + "id": "60358", + "name": "Sant'Angelo Lodigiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23526000", + "longitude": "9.40651000" + }, + { + "id": "60359", + "name": "Sant'Angelo Lomellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24663000", + "longitude": "8.64317000" + }, + { + "id": "60379", + "name": "Sant'Antonio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.46110000", + "longitude": "10.41738000" + }, + { + "id": "60408", + "name": "Sant'Omobono Terme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80838000", + "longitude": "9.53625000" + }, + { + "id": "60413", + "name": "Santa Brigida", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98489000", + "longitude": "9.62115000" + }, + { + "id": "60419", + "name": "Santa Corinna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34018000", + "longitude": "9.08878000" + }, + { + "id": "60421", + "name": "Santa Cristina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15756000", + "longitude": "9.39976000" + }, + { + "id": "60438", + "name": "Santa Giuletta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03397000", + "longitude": "9.18126000" + }, + { + "id": "60450", + "name": "Santa Margherita", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63391000", + "longitude": "9.23013000" + }, + { + "id": "60454", + "name": "Santa Margherita di Staffora", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77154000", + "longitude": "9.24006000" + }, + { + "id": "60472", + "name": "Santa Maria dei Sabbioni", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24386000", + "longitude": "9.83927000" + }, + { + "id": "60475", + "name": "Santa Maria della Versa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98757000", + "longitude": "9.29976000" + }, + { + "id": "60462", + "name": "Santa Maria Hoè", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74428000", + "longitude": "9.37445000" + }, + { + "id": "60513", + "name": "Santo Stefano Lodigiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11857000", + "longitude": "9.73527000" + }, + { + "id": "60516", + "name": "Santo Stefano Ticino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48635000", + "longitude": "8.91582000" + }, + { + "id": "60548", + "name": "Sarezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66067000", + "longitude": "10.19690000" + }, + { + "id": "60553", + "name": "Sarnico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67099000", + "longitude": "9.96152000" + }, + { + "id": "60556", + "name": "Saronno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62513000", + "longitude": "9.03517000" + }, + { + "id": "60561", + "name": "Sartirana Lomellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11352000", + "longitude": "8.66711000" + }, + { + "id": "60594", + "name": "Saviore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08049000", + "longitude": "10.39823000" + }, + { + "id": "60606", + "name": "Scaldasole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12495000", + "longitude": "8.91029000" + }, + { + "id": "60618", + "name": "Scandolara Ravara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05309000", + "longitude": "10.30215000" + }, + { + "id": "60619", + "name": "Scandolara Ripa d'Oglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22171000", + "longitude": "10.15717000" + }, + { + "id": "60621", + "name": "Scannabue-Cascine Capri", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39306000", + "longitude": "9.59302000" + }, + { + "id": "60623", + "name": "Scano al Brembo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71858000", + "longitude": "9.60905000" + }, + { + "id": "60627", + "name": "Scanzo-Rosciate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71078000", + "longitude": "9.73505000" + }, + { + "id": "60645", + "name": "Schignano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92978000", + "longitude": "9.10214000" + }, + { + "id": "60646", + "name": "Schilpario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00874000", + "longitude": "10.15534000" + }, + { + "id": "60648", + "name": "Schivenoglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99498000", + "longitude": "11.07300000" + }, + { + "id": "60679", + "name": "Secugnago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23132000", + "longitude": "9.59394000" + }, + { + "id": "60684", + "name": "Sedriano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49105000", + "longitude": "8.97161000" + }, + { + "id": "60685", + "name": "Sedrina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78067000", + "longitude": "9.62362000" + }, + { + "id": "60691", + "name": "Segrate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49185000", + "longitude": "9.29812000" + }, + { + "id": "60698", + "name": "Selino Basso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81029000", + "longitude": "9.53495000" + }, + { + "id": "60700", + "name": "Sellero", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05145000", + "longitude": "10.34764000" + }, + { + "id": "60712", + "name": "Selvino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78525000", + "longitude": "9.75292000" + }, + { + "id": "60714", + "name": "Semiana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13737000", + "longitude": "8.72973000" + }, + { + "id": "60718", + "name": "Senago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57562000", + "longitude": "9.12620000" + }, + { + "id": "60723", + "name": "Seniga", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24479000", + "longitude": "10.17759000" + }, + { + "id": "60727", + "name": "Senna Comasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76298000", + "longitude": "9.11104000" + }, + { + "id": "60728", + "name": "Senna Lodigiana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15023000", + "longitude": "9.59379000" + }, + { + "id": "60737", + "name": "Seregno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65002000", + "longitude": "9.20548000" + }, + { + "id": "60739", + "name": "Sergnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42755000", + "longitude": "9.70122000" + }, + { + "id": "60740", + "name": "Seriate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68532000", + "longitude": "9.72487000" + }, + { + "id": "60741", + "name": "Serina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87071000", + "longitude": "9.73102000" + }, + { + "id": "60743", + "name": "Serle", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56137000", + "longitude": "10.36821000" + }, + { + "id": "60744", + "name": "Sermide", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00349000", + "longitude": "11.29290000" + }, + { + "id": "60747", + "name": "Sernio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22420000", + "longitude": "10.20526000" + }, + { + "id": "60749", + "name": "Serone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15627000", + "longitude": "9.58171000" + }, + { + "id": "60776", + "name": "Serravalle a Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06638000", + "longitude": "11.08180000" + }, + { + "id": "60795", + "name": "Sesto Calende", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72608000", + "longitude": "8.63397000" + }, + { + "id": "60801", + "name": "Sesto ed Uniti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17647000", + "longitude": "9.91407000" + }, + { + "id": "60799", + "name": "Sesto San Giovanni", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53329000", + "longitude": "9.22585000" + }, + { + "id": "60806", + "name": "Settala", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45357000", + "longitude": "9.38715000" + }, + { + "id": "60812", + "name": "Settimo Milanese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47771000", + "longitude": "9.05574000" + }, + { + "id": "60822", + "name": "Seveso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64670000", + "longitude": "9.14296000" + }, + { + "id": "60855", + "name": "Silvano Pietra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03923000", + "longitude": "8.94637000" + }, + { + "id": "60874", + "name": "Sirmione", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49744000", + "longitude": "10.60507000" + }, + { + "id": "60876", + "name": "Sirone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77268000", + "longitude": "9.32214000" + }, + { + "id": "60878", + "name": "Sirta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15823000", + "longitude": "9.66109000" + }, + { + "id": "60879", + "name": "Sirtori", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73658000", + "longitude": "9.33085000" + }, + { + "id": "60884", + "name": "Siviano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71487000", + "longitude": "10.08026000" + }, + { + "id": "60885", + "name": "Siziano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31606000", + "longitude": "9.20357000" + }, + { + "id": "60891", + "name": "Soave", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19509000", + "longitude": "10.72365000" + }, + { + "id": "60899", + "name": "Soiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52778000", + "longitude": "10.51267000" + }, + { + "id": "60904", + "name": "Solaro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87990000", + "longitude": "9.17315000" + }, + { + "id": "60906", + "name": "Solarolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55047000", + "longitude": "10.55489000" + }, + { + "id": "60907", + "name": "Solarolo Rainerio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08126000", + "longitude": "10.35711000" + }, + { + "id": "60909", + "name": "Solbiate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78968000", + "longitude": "8.93314000" + }, + { + "id": "60910", + "name": "Solbiate Arno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71960000", + "longitude": "8.81372000" + }, + { + "id": "60911", + "name": "Solbiate Olona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65028000", + "longitude": "8.88198000" + }, + { + "id": "60917", + "name": "Solferino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37236000", + "longitude": "10.56648000" + }, + { + "id": "60924", + "name": "Solto Collina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78230000", + "longitude": "10.02638000" + }, + { + "id": "60925", + "name": "Solza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67868000", + "longitude": "9.49075000" + }, + { + "id": "60926", + "name": "Somaglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14947000", + "longitude": "9.63346000" + }, + { + "id": "60928", + "name": "Somma Lombardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68213000", + "longitude": "8.70759000" + }, + { + "id": "60934", + "name": "Sommo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13316000", + "longitude": "9.08655000" + }, + { + "id": "60936", + "name": "Soncino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40033000", + "longitude": "9.86845000" + }, + { + "id": "60937", + "name": "Sondalo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32983000", + "longitude": "10.32690000" + }, + { + "id": "60938", + "name": "Sondrio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16852000", + "longitude": "9.87134000" + }, + { + "id": "60939", + "name": "Songavazzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87949000", + "longitude": "9.98956000" + }, + { + "id": "60940", + "name": "Sonico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16640000", + "longitude": "10.35071000" + }, + { + "id": "60953", + "name": "Sordio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34217000", + "longitude": "9.36385000" + }, + { + "id": "60954", + "name": "Soresina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28819000", + "longitude": "9.85862000" + }, + { + "id": "60961", + "name": "Sorico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17259000", + "longitude": "9.38404000" + }, + { + "id": "60963", + "name": "Sorisole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73140000", + "longitude": "9.63715000" + }, + { + "id": "60964", + "name": "Sormano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87803000", + "longitude": "9.24582000" + }, + { + "id": "60969", + "name": "Sospiro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10762000", + "longitude": "10.15853000" + }, + { + "id": "60973", + "name": "Sotto il Monte Giovanni XXIII", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70568000", + "longitude": "9.50345000" + }, + { + "id": "60974", + "name": "Sottocastello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66720000", + "longitude": "10.39416000" + }, + { + "id": "60979", + "name": "Sovere", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81188000", + "longitude": "10.03438000" + }, + { + "id": "60984", + "name": "Sovico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64598000", + "longitude": "9.26275000" + }, + { + "id": "61000", + "name": "Spessa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11356000", + "longitude": "9.34856000" + }, + { + "id": "61013", + "name": "Spinadesco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14917000", + "longitude": "9.92637000" + }, + { + "id": "61016", + "name": "Spineda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06140000", + "longitude": "10.51165000" + }, + { + "id": "61022", + "name": "Spino d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40086000", + "longitude": "9.48674000" + }, + { + "id": "61023", + "name": "Spinone al Lago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76476000", + "longitude": "9.92157000" + }, + { + "id": "61025", + "name": "Spirano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58144000", + "longitude": "9.66863000" + }, + { + "id": "61033", + "name": "Spriana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22030000", + "longitude": "9.86425000" + }, + { + "id": "61041", + "name": "Stagno Lombardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07459000", + "longitude": "10.08890000" + }, + { + "id": "61059", + "name": "Stazzona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13879000", + "longitude": "9.27524000" + }, + { + "id": "61068", + "name": "Stezzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64968000", + "longitude": "9.65192000" + }, + { + "id": "61086", + "name": "Stradella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07445000", + "longitude": "9.30169000" + }, + { + "id": "61090", + "name": "Stravignino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77469000", + "longitude": "10.23838000" + }, + { + "id": "61102", + "name": "Strozza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77294000", + "longitude": "9.57886000" + }, + { + "id": "61107", + "name": "Suardi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03247000", + "longitude": "8.74127000" + }, + { + "id": "61111", + "name": "Sueglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08579000", + "longitude": "9.33374000" + }, + { + "id": "61113", + "name": "Suello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81678000", + "longitude": "9.31154000" + }, + { + "id": "61114", + "name": "Suisio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65708000", + "longitude": "9.50225000" + }, + { + "id": "61115", + "name": "Sulbiate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64047000", + "longitude": "9.42762000" + }, + { + "id": "61117", + "name": "Sulzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68732000", + "longitude": "10.09988000" + }, + { + "id": "61118", + "name": "Sumirago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73651000", + "longitude": "8.78356000" + }, + { + "id": "61130", + "name": "Susella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91267000", + "longitude": "9.09651000" + }, + { + "id": "61131", + "name": "Sustinente", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07096000", + "longitude": "11.02178000" + }, + { + "id": "61136", + "name": "Suzzara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99242000", + "longitude": "10.74407000" + }, + { + "id": "61137", + "name": "Tabiago-Cibrone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75639000", + "longitude": "9.26684000" + }, + { + "id": "61138", + "name": "Taceno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02253000", + "longitude": "9.36400000" + }, + { + "id": "61148", + "name": "Taino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76249000", + "longitude": "8.61654000" + }, + { + "id": "61152", + "name": "Talamona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13849000", + "longitude": "9.61294000" + }, + { + "id": "61154", + "name": "Taleggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89339000", + "longitude": "9.56485000" + }, + { + "id": "61169", + "name": "Tartano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10554000", + "longitude": "9.67864000" + }, + { + "id": "61182", + "name": "Tavazzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32783000", + "longitude": "9.40473000" + }, + { + "id": "61190", + "name": "Tavernerio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80068000", + "longitude": "9.14054000" + }, + { + "id": "61191", + "name": "Tavernola Bergamasca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70846000", + "longitude": "10.04454000" + }, + { + "id": "61192", + "name": "Tavernole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74618000", + "longitude": "10.23952000" + }, + { + "id": "61202", + "name": "Teglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17235000", + "longitude": "10.06399000" + }, + { + "id": "61206", + "name": "Telgate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62792000", + "longitude": "9.84912000" + }, + { + "id": "61211", + "name": "Temù", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25022000", + "longitude": "10.46592000" + }, + { + "id": "61230", + "name": "Ternate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78673000", + "longitude": "8.69931000" + }, + { + "id": "61233", + "name": "Terno d'Isola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68548000", + "longitude": "9.53095000" + }, + { + "id": "61241", + "name": "Terranova dei Passerini", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21527000", + "longitude": "9.66186000" + }, + { + "id": "61248", + "name": "Terraverde-Corte Palasio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31552000", + "longitude": "9.56162000" + }, + { + "id": "61274", + "name": "Ticengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36927000", + "longitude": "9.82766000" + }, + { + "id": "61282", + "name": "Tirano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21482000", + "longitude": "10.16335000" + }, + { + "id": "61318", + "name": "Torbole Casaglia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51279000", + "longitude": "10.11700000" + }, + { + "id": "61323", + "name": "Torchione-Moia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15486000", + "longitude": "9.85996000" + }, + { + "id": "61332", + "name": "Torlino Vimercati", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41747000", + "longitude": "9.59476000" + }, + { + "id": "61335", + "name": "Tornata", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10437000", + "longitude": "10.43078000" + }, + { + "id": "61337", + "name": "Torno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85593000", + "longitude": "9.11707000" + }, + { + "id": "61343", + "name": "Torrazza Coste", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97820000", + "longitude": "9.07613000" + }, + { + "id": "61345", + "name": "Torrazza dei Mandelli", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56629000", + "longitude": "9.39921000" + }, + { + "id": "61348", + "name": "Torre Beretti", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05996000", + "longitude": "8.67094000" + }, + { + "id": "61349", + "name": "Torre Boldone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71725000", + "longitude": "9.70792000" + }, + { + "id": "61364", + "name": "Torre d'Arese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24277000", + "longitude": "9.31735000" + }, + { + "id": "61365", + "name": "Torre d'Isola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21796000", + "longitude": "9.07651000" + }, + { + "id": "61366", + "name": "Torre de' Busi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77408000", + "longitude": "9.48025000" + }, + { + "id": "61367", + "name": "Torre de' Negri", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14966000", + "longitude": "9.33456000" + }, + { + "id": "61369", + "name": "Torre de' Picenardi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14317000", + "longitude": "10.28803000" + }, + { + "id": "61370", + "name": "Torre de' Roveri", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69718000", + "longitude": "9.76326000" + }, + { + "id": "61373", + "name": "Torre del Mangano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25208000", + "longitude": "9.13042000" + }, + { + "id": "61376", + "name": "Torre di Santa Maria", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.23356000", + "longitude": "9.85228000" + }, + { + "id": "61358", + "name": "Torre Pallavicina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44638000", + "longitude": "9.87706000" + }, + { + "id": "61393", + "name": "Torrevecchia Pia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28197000", + "longitude": "9.29635000" + }, + { + "id": "61403", + "name": "Torricella del Pizzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02023000", + "longitude": "10.29497000" + }, + { + "id": "61402", + "name": "Torricella Verzate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01996000", + "longitude": "9.17356000" + }, + { + "id": "61423", + "name": "Toscolano Maderno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63977000", + "longitude": "10.60760000" + }, + { + "id": "61426", + "name": "Tovo di Sant'Agata", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.24505000", + "longitude": "10.24670000" + }, + { + "id": "61428", + "name": "Tradate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70843000", + "longitude": "8.90763000" + }, + { + "id": "61439", + "name": "Traona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14737000", + "longitude": "9.53256000" + }, + { + "id": "61449", + "name": "Travacò Siccomario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14906000", + "longitude": "9.15965000" + }, + { + "id": "61450", + "name": "Travagliato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52391000", + "longitude": "10.08013000" + }, + { + "id": "61451", + "name": "Travedona Monate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80427000", + "longitude": "8.67143000" + }, + { + "id": "61460", + "name": "Trebbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71289000", + "longitude": "10.46137000" + }, + { + "id": "61468", + "name": "Trecella", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51498000", + "longitude": "9.47905000" + }, + { + "id": "61471", + "name": "Tregasio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67771000", + "longitude": "9.28806000" + }, + { + "id": "61477", + "name": "Tremenico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07592000", + "longitude": "9.36602000" + }, + { + "id": "61479", + "name": "Tremezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98423000", + "longitude": "9.21613000" + }, + { + "id": "61485", + "name": "Trenzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47728000", + "longitude": "10.01066000" + }, + { + "id": "61494", + "name": "Trescore Balneario", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69409000", + "longitude": "9.84173000" + }, + { + "id": "61495", + "name": "Trescore Cremasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40298000", + "longitude": "9.62278000" + }, + { + "id": "61497", + "name": "Tresivio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17569000", + "longitude": "9.94255000" + }, + { + "id": "61504", + "name": "Treviglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52081000", + "longitude": "9.59102000" + }, + { + "id": "61508", + "name": "Treviolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67368000", + "longitude": "9.61195000" + }, + { + "id": "61510", + "name": "Trezzano Rosa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58228000", + "longitude": "9.48567000" + }, + { + "id": "61511", + "name": "Trezzano sul Naviglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42212000", + "longitude": "9.06342000" + }, + { + "id": "61513", + "name": "Trezzo sull'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60523000", + "longitude": "9.51417000" + }, + { + "id": "61514", + "name": "Trezzone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17159000", + "longitude": "9.35184000" + }, + { + "id": "61516", + "name": "Tribiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41323000", + "longitude": "9.37693000" + }, + { + "id": "61526", + "name": "Triginto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40223000", + "longitude": "9.32512000" + }, + { + "id": "61527", + "name": "Trigolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32997000", + "longitude": "9.81415000" + }, + { + "id": "61538", + "name": "Triuggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66144000", + "longitude": "9.26691000" + }, + { + "id": "61545", + "name": "Trivolzio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25846000", + "longitude": "9.04275000" + }, + { + "id": "61551", + "name": "Tromello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20890000", + "longitude": "8.87054000" + }, + { + "id": "61554", + "name": "Tronzano Lago Maggiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08871000", + "longitude": "8.73310000" + }, + { + "id": "61558", + "name": "Trovo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28296000", + "longitude": "9.03545000" + }, + { + "id": "61559", + "name": "Truccazzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48455000", + "longitude": "9.46950000" + }, + { + "id": "61571", + "name": "Turano Lodigiano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24785000", + "longitude": "9.62221000" + }, + { + "id": "61572", + "name": "Turate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65727000", + "longitude": "9.00424000" + }, + { + "id": "61573", + "name": "Turbigo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53076000", + "longitude": "8.73671000" + }, + { + "id": "61583", + "name": "Ubiale", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78350000", + "longitude": "9.61650000" + }, + { + "id": "61584", + "name": "Ubiale Clanezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78368000", + "longitude": "9.61935000" + }, + { + "id": "61585", + "name": "Uboldo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61527000", + "longitude": "9.00394000" + }, + { + "id": "61592", + "name": "Uggiate Trevano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82338000", + "longitude": "8.95964000" + }, + { + "id": "61599", + "name": "Urago d'Oglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51598000", + "longitude": "9.86966000" + }, + { + "id": "61606", + "name": "Urgnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59943000", + "longitude": "9.69473000" + }, + { + "id": "61613", + "name": "Usmate-Velate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64798000", + "longitude": "9.36245000" + }, + { + "id": "61638", + "name": "Vaiano Cremasco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37133000", + "longitude": "9.58793000" + }, + { + "id": "61640", + "name": "Vailate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46231000", + "longitude": "9.60326000" + }, + { + "id": "61643", + "name": "Val Masino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21519000", + "longitude": "9.63804000" + }, + { + "id": "61644", + "name": "Val Rezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07268000", + "longitude": "9.11183000" + }, + { + "id": "61647", + "name": "Valbrona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87738000", + "longitude": "9.29884000" + }, + { + "id": "61656", + "name": "Valdisotto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.43441000", + "longitude": "10.35695000" + }, + { + "id": "61660", + "name": "Valeggio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15065000", + "longitude": "8.86132000" + }, + { + "id": "61667", + "name": "Valera Fratta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25717000", + "longitude": "9.33615000" + }, + { + "id": "61671", + "name": "Valganna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90228000", + "longitude": "8.82333000" + }, + { + "id": "61674", + "name": "Valgoglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97489000", + "longitude": "9.91355000" + }, + { + "id": "61676", + "name": "Valgreghentino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77928000", + "longitude": "9.41345000" + }, + { + "id": "61679", + "name": "Vall'Alta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76116000", + "longitude": "9.82640000" + }, + { + "id": "61687", + "name": "Valle Lomellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15096000", + "longitude": "8.66957000" + }, + { + "id": "61690", + "name": "Valle Salimbene", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17196000", + "longitude": "9.23445000" + }, + { + "id": "61718", + "name": "Valleve", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02819000", + "longitude": "9.74375000" + }, + { + "id": "61722", + "name": "Vallio Terme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60979000", + "longitude": "10.39737000" + }, + { + "id": "61730", + "name": "Valmadrera-Caserta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84628000", + "longitude": "9.35824000" + }, + { + "id": "61733", + "name": "Valmorea", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81518000", + "longitude": "8.93064000" + }, + { + "id": "61734", + "name": "Valnegra", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94909000", + "longitude": "9.68935000" + }, + { + "id": "61743", + "name": "Valtorta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97685000", + "longitude": "9.53478000" + }, + { + "id": "61748", + "name": "Valvestino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76069000", + "longitude": "10.59547000" + }, + { + "id": "61753", + "name": "Vanzaghello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57964000", + "longitude": "8.78234000" + }, + { + "id": "61754", + "name": "Vanzago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52566000", + "longitude": "8.99097000" + }, + { + "id": "61757", + "name": "Vaprio d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57640000", + "longitude": "9.52407000" + }, + { + "id": "61761", + "name": "Varano Borghi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77407000", + "longitude": "8.70403000" + }, + { + "id": "61766", + "name": "Varedo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59761000", + "longitude": "9.16323000" + }, + { + "id": "61768", + "name": "Varenna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01078000", + "longitude": "9.28465000" + }, + { + "id": "61769", + "name": "Varese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82058000", + "longitude": "8.82511000" + }, + { + "id": "61775", + "name": "Varzi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82297000", + "longitude": "9.19762000" + }, + { + "id": "61780", + "name": "Vassena", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92998000", + "longitude": "9.28399000" + }, + { + "id": "61789", + "name": "Vedano al Lambro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60878000", + "longitude": "9.26785000" + }, + { + "id": "61788", + "name": "Vedano Olona", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77570000", + "longitude": "8.88771000" + }, + { + "id": "61790", + "name": "Veddasca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07058000", + "longitude": "8.79873000" + }, + { + "id": "61792", + "name": "Vedeseta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89102000", + "longitude": "9.53927000" + }, + { + "id": "61793", + "name": "Veduggio Con Colzano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73388000", + "longitude": "9.27024000" + }, + { + "id": "61799", + "name": "Velasca", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63165000", + "longitude": "9.35519000" + }, + { + "id": "61800", + "name": "Veleso", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90875000", + "longitude": "9.18090000" + }, + { + "id": "61801", + "name": "Velezzo Lomellina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16336000", + "longitude": "8.73724000" + }, + { + "id": "61803", + "name": "Vellezzo Bellini", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26948000", + "longitude": "9.10088000" + }, + { + "id": "61814", + "name": "Vendrogno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03439000", + "longitude": "9.32944000" + }, + { + "id": "61816", + "name": "Venegono Inferiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73569000", + "longitude": "8.89545000" + }, + { + "id": "61817", + "name": "Venegono Superiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75246000", + "longitude": "8.89734000" + }, + { + "id": "61821", + "name": "Veniano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71629000", + "longitude": "8.98501000" + }, + { + "id": "61833", + "name": "Verano Brianza", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68868000", + "longitude": "9.22454000" + }, + { + "id": "61836", + "name": "Vercana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15949000", + "longitude": "9.33514000" + }, + { + "id": "61837", + "name": "Verceia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19869000", + "longitude": "9.45474000" + }, + { + "id": "61839", + "name": "Vercurago", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80943000", + "longitude": "9.42211000" + }, + { + "id": "61840", + "name": "Verdellino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60108000", + "longitude": "9.60805000" + }, + { + "id": "61841", + "name": "Verdello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60372000", + "longitude": "9.62852000" + }, + { + "id": "61842", + "name": "Verderio Inferiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66558000", + "longitude": "9.43345000" + }, + { + "id": "61843", + "name": "Verderio Superiore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66778000", + "longitude": "9.44035000" + }, + { + "id": "61845", + "name": "Vergano-Villa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79416000", + "longitude": "9.37460000" + }, + { + "id": "61848", + "name": "Vergiate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72210000", + "longitude": "8.69530000" + }, + { + "id": "61851", + "name": "Vermezzo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39627000", + "longitude": "8.97904000" + }, + { + "id": "61855", + "name": "Vernate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31589000", + "longitude": "9.06045000" + }, + { + "id": "61859", + "name": "Verolanuova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32834000", + "longitude": "10.07857000" + }, + { + "id": "61860", + "name": "Verolavecchia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32862000", + "longitude": "10.05493000" + }, + { + "id": "61867", + "name": "Verretto", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03976000", + "longitude": "9.11315000" + }, + { + "id": "61869", + "name": "Verrua Po", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10686000", + "longitude": "9.17535000" + }, + { + "id": "61871", + "name": "Vertemate Con Minoprio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72518000", + "longitude": "9.07300000" + }, + { + "id": "61872", + "name": "Vertova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81000000", + "longitude": "9.84944000" + }, + { + "id": "61875", + "name": "Vervio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25285000", + "longitude": "10.24056000" + }, + { + "id": "61881", + "name": "Vescovato", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17419000", + "longitude": "10.16451000" + }, + { + "id": "61887", + "name": "Vestone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70783000", + "longitude": "10.39611000" + }, + { + "id": "61888", + "name": "Vestreno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08329000", + "longitude": "9.32484000" + }, + { + "id": "61893", + "name": "Vezza d'Oglio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.23867000", + "longitude": "10.39825000" + }, + { + "id": "61899", + "name": "Viadana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93553000", + "longitude": "10.51898000" + }, + { + "id": "61900", + "name": "Viadanica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68468000", + "longitude": "9.96146000" + }, + { + "id": "61924", + "name": "Vicomoscano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97476000", + "longitude": "10.45045000" + }, + { + "id": "61927", + "name": "Vidalengo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52235000", + "longitude": "9.64128000" + }, + { + "id": "61928", + "name": "Vidardo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25667000", + "longitude": "9.40241000" + }, + { + "id": "61930", + "name": "Vidigulfo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29245000", + "longitude": "9.23498000" + }, + { + "id": "61938", + "name": "Viganò", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72468000", + "longitude": "9.32494000" + }, + { + "id": "61937", + "name": "Vigano San Martino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72608000", + "longitude": "9.89616000" + }, + { + "id": "61944", + "name": "Vigevano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31407000", + "longitude": "8.85437000" + }, + { + "id": "61947", + "name": "Viggiù", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87096000", + "longitude": "8.90861000" + }, + { + "id": "61948", + "name": "Vighignolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49542000", + "longitude": "9.04308000" + }, + { + "id": "61949", + "name": "Vighizzolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43524000", + "longitude": "10.35507000" + }, + { + "id": "61953", + "name": "Vigliano-Bettolino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43272000", + "longitude": "9.34422000" + }, + { + "id": "61959", + "name": "Vignate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49939000", + "longitude": "9.37719000" + }, + { + "id": "61962", + "name": "Vignola", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08815000", + "longitude": "9.27456000" + }, + { + "id": "61971", + "name": "Vigolo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71642000", + "longitude": "10.02634000" + }, + { + "id": "61978", + "name": "Vigonzone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27350000", + "longitude": "9.30980000" + }, + { + "id": "61980", + "name": "Vill'Albese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79684000", + "longitude": "9.18859000" + }, + { + "id": "61981", + "name": "Villa", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.20390000", + "longitude": "10.13385000" + }, + { + "id": "61987", + "name": "Villa Biscossi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09066000", + "longitude": "8.78715000" + }, + { + "id": "61989", + "name": "Villa Carcina", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63329000", + "longitude": "10.19556000" + }, + { + "id": "61995", + "name": "Villa Cortese", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56666000", + "longitude": "8.88712000" + }, + { + "id": "62032", + "name": "Villa d'Adda", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71398000", + "longitude": "9.46165000" + }, + { + "id": "62034", + "name": "Villa d'Almè", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74843000", + "longitude": "9.61702000" + }, + { + "id": "62036", + "name": "Villa d'Ogna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90469000", + "longitude": "9.93085000" + }, + { + "id": "62037", + "name": "Villa d'Oneta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87074000", + "longitude": "9.81929000" + }, + { + "id": "62041", + "name": "Villa di Chiavenna", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.33069000", + "longitude": "9.48114000" + }, + { + "id": "62042", + "name": "Villa di Serio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72260000", + "longitude": "9.73522000" + }, + { + "id": "61999", + "name": "Villa Fornace", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97194000", + "longitude": "9.25215000" + }, + { + "id": "62000", + "name": "Villa Guardia", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77505000", + "longitude": "9.02321000" + }, + { + "id": "62008", + "name": "Villa Pedergnano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58528000", + "longitude": "9.99381000" + }, + { + "id": "62010", + "name": "Villa Poma", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00238000", + "longitude": "11.11450000" + }, + { + "id": "62013", + "name": "Villa Raverio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69189000", + "longitude": "9.26239000" + }, + { + "id": "62049", + "name": "Villachiara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35445000", + "longitude": "9.93081000" + }, + { + "id": "62069", + "name": "Villaggio del Sole", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61398000", + "longitude": "9.10725000" + }, + { + "id": "62067", + "name": "Villaggio Residenziale", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52826000", + "longitude": "9.46737000" + }, + { + "id": "62094", + "name": "Villanova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64027000", + "longitude": "9.39187000" + }, + { + "id": "62106", + "name": "Villanova d'Ardenghi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17049000", + "longitude": "9.04078000" + }, + { + "id": "62110", + "name": "Villanova del Sillaro", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23797000", + "longitude": "9.48186000" + }, + { + "id": "62113", + "name": "Villanterio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21780000", + "longitude": "9.36100000" + }, + { + "id": "62114", + "name": "Villanuova", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44245000", + "longitude": "9.86690000" + }, + { + "id": "62115", + "name": "Villanuova sul Clisi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59938000", + "longitude": "10.45275000" + }, + { + "id": "62119", + "name": "Villapinta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17508000", + "longitude": "9.67950000" + }, + { + "id": "62134", + "name": "Villasanta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60634000", + "longitude": "9.30797000" + }, + { + "id": "62140", + "name": "Villassio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86313000", + "longitude": "9.84466000" + }, + { + "id": "62153", + "name": "Villimpenta", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14111000", + "longitude": "11.03170000" + }, + { + "id": "62154", + "name": "Villongo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66939000", + "longitude": "9.93076000" + }, + { + "id": "62156", + "name": "Vilminore", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99795000", + "longitude": "10.09531000" + }, + { + "id": "62157", + "name": "Vilminore di Scalve", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99819000", + "longitude": "10.09376000" + }, + { + "id": "62158", + "name": "Vimercate", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61545000", + "longitude": "9.36801000" + }, + { + "id": "62159", + "name": "Vimodrone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51461000", + "longitude": "9.28772000" + }, + { + "id": "62167", + "name": "Vione", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "46.24808000", + "longitude": "10.44842000" + }, + { + "id": "62170", + "name": "Visano", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31684000", + "longitude": "10.37092000" + }, + { + "id": "62176", + "name": "Vistarino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21077000", + "longitude": "9.30825000" + }, + { + "id": "62187", + "name": "Vittuone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48792000", + "longitude": "8.95141000" + }, + { + "id": "62194", + "name": "Vizzola Ticino", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62615000", + "longitude": "8.69651000" + }, + { + "id": "62195", + "name": "Vizzolo Predabissi", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35587000", + "longitude": "9.34815000" + }, + { + "id": "62197", + "name": "Vobarno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64153000", + "longitude": "10.49866000" + }, + { + "id": "62201", + "name": "Voghera", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99151000", + "longitude": "9.01175000" + }, + { + "id": "62207", + "name": "Volongo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21155000", + "longitude": "10.30242000" + }, + { + "id": "62209", + "name": "Volpara", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95379000", + "longitude": "9.29750000" + }, + { + "id": "62213", + "name": "Volta Mantovana", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32192000", + "longitude": "10.65891000" + }, + { + "id": "62219", + "name": "Voltido", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11197000", + "longitude": "10.33298000" + }, + { + "id": "62234", + "name": "Zandobbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68613000", + "longitude": "9.85785000" + }, + { + "id": "62235", + "name": "Zanica", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64088000", + "longitude": "9.68566000" + }, + { + "id": "62238", + "name": "Zavattarello", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86766000", + "longitude": "9.26662000" + }, + { + "id": "62239", + "name": "Zeccone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25787000", + "longitude": "9.20115000" + }, + { + "id": "62242", + "name": "Zelbio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90458000", + "longitude": "9.18054000" + }, + { + "id": "62243", + "name": "Zelo Buon Persico", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41170000", + "longitude": "9.43171000" + }, + { + "id": "62244", + "name": "Zelo Surrigone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38767000", + "longitude": "8.98504000" + }, + { + "id": "62245", + "name": "Zeme", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19686000", + "longitude": "8.66733000" + }, + { + "id": "62246", + "name": "Zenevredo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05391000", + "longitude": "9.32667000" + }, + { + "id": "62250", + "name": "Zerbo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11046000", + "longitude": "9.39606000" + }, + { + "id": "62251", + "name": "Zerbolò", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20676000", + "longitude": "9.01441000" + }, + { + "id": "62260", + "name": "Zibido San Giacomo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36041000", + "longitude": "9.11119000" + }, + { + "id": "62262", + "name": "Zinasco Vecchio", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12836000", + "longitude": "9.02975000" + }, + { + "id": "62265", + "name": "Zoccorino-Vergo", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69735000", + "longitude": "9.25377000" + }, + { + "id": "62266", + "name": "Zogno", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79378000", + "longitude": "9.65992000" + }, + { + "id": "62273", + "name": "Zone", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76339000", + "longitude": "10.11586000" + }, + { + "id": "62276", + "name": "Zorlesco", + "state_id": 1705, + "state_code": "25", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20035000", + "longitude": "9.61603000" + }, + { + "id": "135267", + "name": "Acqualagna", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.62606000", + "longitude": "12.67596000" + }, + { + "id": "135274", + "name": "Acquasanta Terme", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.77084000", + "longitude": "13.41418000" + }, + { + "id": "135278", + "name": "Acquaviva Picena", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.94037000", + "longitude": "13.82227000" + }, + { + "id": "135320", + "name": "Agugliano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54368000", + "longitude": "13.38574000" + }, + { + "id": "135438", + "name": "Altidona", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.10787000", + "longitude": "13.79617000" + }, + { + "id": "135457", + "name": "Amandola", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.97826000", + "longitude": "13.35453000" + }, + { + "id": "135479", + "name": "Ancona", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.59420000", + "longitude": "13.50337000" + }, + { + "id": "135531", + "name": "Apecchio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.55914000", + "longitude": "12.42163000" + }, + { + "id": "135533", + "name": "Apiro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.39290000", + "longitude": "13.13045000" + }, + { + "id": "135536", + "name": "Appignano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.36276000", + "longitude": "13.34768000" + }, + { + "id": "135537", + "name": "Appignano del Tronto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89805000", + "longitude": "13.66220000" + }, + { + "id": "135564", + "name": "Arcevia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.50177000", + "longitude": "12.94500000" + }, + { + "id": "135631", + "name": "Arquata del Tronto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.77170000", + "longitude": "13.29389000" + }, + { + "id": "135655", + "name": "Ascoli Piceno", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.85351000", + "longitude": "13.57395000" + }, + { + "id": "135684", + "name": "Auditore", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82124000", + "longitude": "12.57165000" + }, + { + "id": "135798", + "name": "Balzo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.84199000", + "longitude": "13.33234000" + }, + { + "id": "135819", + "name": "Barbara", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.58036000", + "longitude": "13.02736000" + }, + { + "id": "135835", + "name": "Barchi", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67280000", + "longitude": "12.92823000" + }, + { + "id": "135928", + "name": "Belforte", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.71676000", + "longitude": "12.37575000" + }, + { + "id": "135931", + "name": "Belforte del Chienti", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.16426000", + "longitude": "13.24323000" + }, + { + "id": "135946", + "name": "Bellocchi", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79564000", + "longitude": "13.00565000" + }, + { + "id": "135954", + "name": "Belmonte Piceno", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09175000", + "longitude": "13.53938000" + }, + { + "id": "135964", + "name": "Belvedere Ostrense", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.57896000", + "longitude": "13.16724000" + }, + { + "id": "136111", + "name": "Bolognola", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.99319000", + "longitude": "13.22680000" + }, + { + "id": "136158", + "name": "Borghetto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.59800000", + "longitude": "13.29205000" + }, + { + "id": "136175", + "name": "Borgo Massano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82495000", + "longitude": "12.67961000" + }, + { + "id": "136177", + "name": "Borgo Pace", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.65808000", + "longitude": "12.29317000" + }, + { + "id": "136188", + "name": "Borgo Santa Maria", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.87582000", + "longitude": "12.80235000" + }, + { + "id": "136190", + "name": "Borgo Stazione", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.28461000", + "longitude": "13.64420000" + }, + { + "id": "136260", + "name": "Bottega", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84523000", + "longitude": "12.74999000" + }, + { + "id": "136467", + "name": "Cagli", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54771000", + "longitude": "12.65229000" + }, + { + "id": "136508", + "name": "Calcinelli", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.75398000", + "longitude": "12.91959000" + }, + { + "id": "136512", + "name": "Caldarola", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.14282000", + "longitude": "13.22367000" + }, + { + "id": "136577", + "name": "Camerano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52774000", + "longitude": "13.55257000" + }, + { + "id": "136582", + "name": "Camerata Picena", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.57758000", + "longitude": "13.35196000" + }, + { + "id": "136584", + "name": "Camerino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.13866000", + "longitude": "13.06785000" + }, + { + "id": "136621", + "name": "Campiglione", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.17630000", + "longitude": "13.67043000" + }, + { + "id": "136641", + "name": "Campocavallo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.46120000", + "longitude": "13.49679000" + }, + { + "id": "136652", + "name": "Campofilone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.08100000", + "longitude": "13.82153000" + }, + { + "id": "136678", + "name": "Camporotondo di Fiastrone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.13203000", + "longitude": "13.26632000" + }, + { + "id": "136692", + "name": "Canavaccio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69376000", + "longitude": "12.69863000" + }, + { + "id": "136748", + "name": "Cantiano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.47082000", + "longitude": "12.62868000" + }, + { + "id": "136780", + "name": "Capodarco", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.18985000", + "longitude": "13.75935000" + }, + { + "id": "136796", + "name": "Cappone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83071000", + "longitude": "12.74458000" + }, + { + "id": "136837", + "name": "Carassai", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.03303000", + "longitude": "13.68761000" + }, + { + "id": "136909", + "name": "Carpegna", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78110000", + "longitude": "12.33543000" + }, + { + "id": "136940", + "name": "Cartoceto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.76566000", + "longitude": "12.88346000" + }, + { + "id": "137050", + "name": "Cascinare", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.26434000", + "longitude": "13.71181000" + }, + { + "id": "137067", + "name": "Casette d'Ete", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25385000", + "longitude": "13.68319000" + }, + { + "id": "137066", + "name": "Casette Verdini", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25104000", + "longitude": "13.40156000" + }, + { + "id": "137071", + "name": "Casine", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.63165000", + "longitude": "13.14425000" + }, + { + "id": "137072", + "name": "Casinina", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81667000", + "longitude": "12.58333000" + }, + { + "id": "137171", + "name": "Castel di Lama", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.86435000", + "longitude": "13.71929000" + }, + { + "id": "137178", + "name": "Castelbellino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48676000", + "longitude": "13.14467000" + }, + { + "id": "137192", + "name": "Castelfidardo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.45916000", + "longitude": "13.55044000" + }, + { + "id": "137227", + "name": "Castelleone di Suasa", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60816000", + "longitude": "12.97796000" + }, + { + "id": "137308", + "name": "Castelplanio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.49420000", + "longitude": "13.08180000" + }, + { + "id": "137310", + "name": "Castelraimondo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.20853000", + "longitude": "13.05486000" + }, + { + "id": "137312", + "name": "Castelsantangelo sul Nera", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89379000", + "longitude": "13.15462000" + }, + { + "id": "137359", + "name": "Castignano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.93935000", + "longitude": "13.62514000" + }, + { + "id": "137370", + "name": "Castorano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89779000", + "longitude": "13.72967000" + }, + { + "id": "137496", + "name": "Centinarola", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83117000", + "longitude": "12.98962000" + }, + { + "id": "137498", + "name": "Centobuchi", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89521000", + "longitude": "13.84809000" + }, + { + "id": "137568", + "name": "Cerreto d'Esi", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.31668000", + "longitude": "12.98771000" + }, + { + "id": "137618", + "name": "Cessapalombo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.10825000", + "longitude": "13.25758000" + }, + { + "id": "137651", + "name": "Chiaravalle", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60114000", + "longitude": "13.32511000" + }, + { + "id": "137732", + "name": "Cingoli", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.37573000", + "longitude": "13.20787000" + }, + { + "id": "137790", + "name": "Civitanova Alta", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.31619000", + "longitude": "13.67978000" + }, + { + "id": "137791", + "name": "Civitanova Marche", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.30491000", + "longitude": "13.72068000" + }, + { + "id": "137848", + "name": "Colbordolo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82006000", + "longitude": "12.72105000" + }, + { + "id": "137899", + "name": "Colli del Tronto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87690000", + "longitude": "13.74745000" + }, + { + "id": "137909", + "name": "Colmurano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.16485000", + "longitude": "13.35908000" + }, + { + "id": "137951", + "name": "Comunanza", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.95719000", + "longitude": "13.41341000" + }, + { + "id": "138015", + "name": "Corinaldo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.64107000", + "longitude": "13.06004000" + }, + { + "id": "138043", + "name": "Corridonia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.24677000", + "longitude": "13.50690000" + }, + { + "id": "138087", + "name": "Cossignano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.98355000", + "longitude": "13.69026000" + }, + { + "id": "138181", + "name": "Cuccurano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79311000", + "longitude": "12.95927000" + }, + { + "id": "138196", + "name": "Cupra Marittima", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.01905000", + "longitude": "13.86171000" + }, + { + "id": "138197", + "name": "Cupramontana", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.44975000", + "longitude": "13.11312000" + }, + { + "id": "138379", + "name": "Esanatoglia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25248000", + "longitude": "12.94930000" + }, + { + "id": "138393", + "name": "Fabriano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.33941000", + "longitude": "12.90327000" + }, + { + "id": "138416", + "name": "Falconara Marittima", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.62558000", + "longitude": "13.39954000" + }, + { + "id": "138421", + "name": "Falerone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.10429000", + "longitude": "13.47189000" + }, + { + "id": "138430", + "name": "Fanano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.94296000", + "longitude": "12.74828000" + }, + { + "id": "138433", + "name": "Fano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84052000", + "longitude": "13.01665000" + }, + { + "id": "138478", + "name": "Fenile", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84126000", + "longitude": "12.96747000" + }, + { + "id": "138482", + "name": "Fermignano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69311000", + "longitude": "12.65437000" + }, + { + "id": "138483", + "name": "Fermo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.16296000", + "longitude": "13.72274000" + }, + { + "id": "138533", + "name": "Filottrano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.43553000", + "longitude": "13.35141000" + }, + { + "id": "138581", + "name": "Folignano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.82070000", + "longitude": "13.63273000" + }, + { + "id": "138618", + "name": "Force", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.96095000", + "longitude": "13.48768000" + }, + { + "id": "138681", + "name": "Fossombrone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69017000", + "longitude": "12.81173000" + }, + { + "id": "138697", + "name": "Francavilla d'Ete", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.18837000", + "longitude": "13.54033000" + }, + { + "id": "138724", + "name": "Fratte Rosa", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.63346000", + "longitude": "12.90236000" + }, + { + "id": "138739", + "name": "Frontino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.76456000", + "longitude": "12.37675000" + }, + { + "id": "138740", + "name": "Frontone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.51478000", + "longitude": "12.73791000" + }, + { + "id": "138770", + "name": "Gabicce Mare", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96471000", + "longitude": "12.75641000" + }, + { + "id": "138785", + "name": "Gagliole", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.23812000", + "longitude": "13.06782000" + }, + { + "id": "138815", + "name": "Gallo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78636000", + "longitude": "12.71334000" + }, + { + "id": "138896", + "name": "Genga", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.43032000", + "longitude": "12.93549000" + }, + { + "id": "139049", + "name": "Gradara", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93858000", + "longitude": "12.76965000" + }, + { + "id": "139123", + "name": "Grottammare", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.98182000", + "longitude": "13.86765000" + }, + { + "id": "139124", + "name": "Grottazzolina", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.11880000", + "longitude": "13.60691000" + }, + { + "id": "139145", + "name": "Gualdo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.06585000", + "longitude": "13.34328000" + }, + { + "id": "139247", + "name": "Isola del Piano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73776000", + "longitude": "12.78406000" + }, + { + "id": "139278", + "name": "Jesi", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52142000", + "longitude": "13.24368000" + }, + { + "id": "139367", + "name": "Lapedona", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.10920000", + "longitude": "13.77063000" + }, + { + "id": "139428", + "name": "Le Grazie di Ancona", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60081000", + "longitude": "13.51529000" + }, + { + "id": "139505", + "name": "Lido di Fermo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.20556000", + "longitude": "13.78467000" + }, + { + "id": "139609", + "name": "Loreto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.43617000", + "longitude": "13.61232000" + }, + { + "id": "139611", + "name": "Loreto Stazione", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.44792000", + "longitude": "13.62016000" + }, + { + "id": "139614", + "name": "Loro Piceno", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.16442000", + "longitude": "13.41162000" + }, + { + "id": "139640", + "name": "Lucrezia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77310000", + "longitude": "12.93995000" + }, + { + "id": "139658", + "name": "Lunano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73214000", + "longitude": "12.44326000" + }, + { + "id": "139696", + "name": "Macerata", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.29789000", + "longitude": "13.45293000" + }, + { + "id": "139698", + "name": "Macerata Feltria", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.80285000", + "longitude": "12.44204000" + }, + { + "id": "139701", + "name": "Macine-Borgo Loreto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48611000", + "longitude": "13.08725000" + }, + { + "id": "139729", + "name": "Magliano di Tenna", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.13795000", + "longitude": "13.58718000" + }, + { + "id": "139748", + "name": "Maiolati Spontini", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.47640000", + "longitude": "13.11991000" + }, + { + "id": "139775", + "name": "Maltignano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.83225000", + "longitude": "13.68799000" + }, + { + "id": "139837", + "name": "Marcelli", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.49204000", + "longitude": "13.62545000" + }, + { + "id": "139875", + "name": "Marina di Altidona", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.10602000", + "longitude": "13.83454000" + }, + { + "id": "139890", + "name": "Marina di Montemarciano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.65063000", + "longitude": "13.33640000" + }, + { + "id": "139914", + "name": "Marotta", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.76397000", + "longitude": "13.14772000" + }, + { + "id": "139921", + "name": "Marsia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.86030000", + "longitude": "13.47619000" + }, + { + "id": "139967", + "name": "Massa", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.18803000", + "longitude": "12.93142000" + }, + { + "id": "139968", + "name": "Massa Fermana", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.14691000", + "longitude": "13.47597000" + }, + { + "id": "139986", + "name": "Massignano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05062000", + "longitude": "13.79798000" + }, + { + "id": "139992", + "name": "Matelica", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25788000", + "longitude": "13.00750000" + }, + { + "id": "140071", + "name": "Mercatale", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78276000", + "longitude": "12.48478000" + }, + { + "id": "140074", + "name": "Mercatello sul Metauro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.64677000", + "longitude": "12.33619000" + }, + { + "id": "140075", + "name": "Mercatino Conca", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.87016000", + "longitude": "12.49115000" + }, + { + "id": "140079", + "name": "Mercato Vecchio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.80421000", + "longitude": "12.37653000" + }, + { + "id": "140083", + "name": "Mergo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.47350000", + "longitude": "13.03509000" + }, + { + "id": "140198", + "name": "Mogliano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.18750000", + "longitude": "13.49123000" + }, + { + "id": "140203", + "name": "Moie", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.50366000", + "longitude": "13.13275000" + }, + { + "id": "140236", + "name": "Mombaroccio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79506000", + "longitude": "12.85476000" + }, + { + "id": "140273", + "name": "Mondavio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67468000", + "longitude": "12.96601000" + }, + { + "id": "140274", + "name": "Mondolfo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.74529000", + "longitude": "13.10229000" + }, + { + "id": "140298", + "name": "Monsampietro Morico", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.06775000", + "longitude": "13.55568000" + }, + { + "id": "140299", + "name": "Monsampolo del Tronto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89749000", + "longitude": "13.79349000" + }, + { + "id": "140300", + "name": "Monsano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.56221000", + "longitude": "13.25186000" + }, + { + "id": "140335", + "name": "Montalto delle Marche", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.98964000", + "longitude": "13.60820000" + }, + { + "id": "140345", + "name": "Montappone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.13617000", + "longitude": "13.46932000" + }, + { + "id": "140355", + "name": "Monte Cerignone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83983000", + "longitude": "12.41427000" + }, + { + "id": "140358", + "name": "Monte Giberto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09092000", + "longitude": "13.63133000" + }, + { + "id": "140360", + "name": "Monte Grimano Terme", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86766000", + "longitude": "12.47125000" + }, + { + "id": "140363", + "name": "Monte Porzio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69116000", + "longitude": "13.04686000" + }, + { + "id": "140365", + "name": "Monte Rinaldo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.02825000", + "longitude": "13.58198000" + }, + { + "id": "140366", + "name": "Monte Roberto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48056000", + "longitude": "13.13797000" + }, + { + "id": "140373", + "name": "Monte San Giusto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.23565000", + "longitude": "13.59316000" + }, + { + "id": "140375", + "name": "Monte San Martino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.03219000", + "longitude": "13.44033000" + }, + { + "id": "140376", + "name": "Monte San Pietrangeli", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.18959000", + "longitude": "13.57718000" + }, + { + "id": "140378", + "name": "Monte San Vito", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60056000", + "longitude": "13.26817000" + }, + { + "id": "140381", + "name": "Monte Urano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.19039000", + "longitude": "13.66180000" + }, + { + "id": "140382", + "name": "Monte Vidon Combatte", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.04895000", + "longitude": "13.63119000" + }, + { + "id": "140383", + "name": "Monte Vidon Corrado", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.12087000", + "longitude": "13.48931000" + }, + { + "id": "140398", + "name": "Montecalvo in Foglia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81099000", + "longitude": "12.63161000" + }, + { + "id": "140401", + "name": "Montecarotto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52828000", + "longitude": "13.06656000" + }, + { + "id": "140402", + "name": "Montecassiano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.36518000", + "longitude": "13.43950000" + }, + { + "id": "140417", + "name": "Monteciccardo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82415000", + "longitude": "12.80344000" + }, + { + "id": "140423", + "name": "Montecosaro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.31619000", + "longitude": "13.63762000" + }, + { + "id": "140427", + "name": "Montedinove", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.97262000", + "longitude": "13.58972000" + }, + { + "id": "140431", + "name": "Montefalcone Appennino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.99005000", + "longitude": "13.45688000" + }, + { + "id": "140434", + "name": "Montefano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40982000", + "longitude": "13.43690000" + }, + { + "id": "140435", + "name": "Montefelcino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73476000", + "longitude": "12.83396000" + }, + { + "id": "140440", + "name": "Montefiore dell'Aso", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05276000", + "longitude": "13.75518000" + }, + { + "id": "140446", + "name": "Montefortino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.94351000", + "longitude": "13.34417000" + }, + { + "id": "140455", + "name": "Montegiorgio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.12988000", + "longitude": "13.53925000" + }, + { + "id": "140456", + "name": "Montegranaro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.23099000", + "longitude": "13.63047000" + }, + { + "id": "140463", + "name": "Montelabbate", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84732000", + "longitude": "12.78763000" + }, + { + "id": "140470", + "name": "Monteleone di Fermo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.04785000", + "longitude": "13.52948000" + }, + { + "id": "140479", + "name": "Montelparo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.01755000", + "longitude": "13.53698000" + }, + { + "id": "140482", + "name": "Montelupone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.34270000", + "longitude": "13.57074000" + }, + { + "id": "140484", + "name": "Montemaggiore al Metauro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73666000", + "longitude": "12.94536000" + }, + { + "id": "140488", + "name": "Montemarciano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.63847000", + "longitude": "13.30801000" + }, + { + "id": "140497", + "name": "Montemonaco", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89871000", + "longitude": "13.33018000" + }, + { + "id": "140509", + "name": "Monteprandone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.92050000", + "longitude": "13.83910000" + }, + { + "id": "140512", + "name": "Monterado", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69686000", + "longitude": "13.09056000" + }, + { + "id": "140528", + "name": "Monterubbiano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.08560000", + "longitude": "13.71911000" + }, + { + "id": "140573", + "name": "Montignano-Marzocca", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67451000", + "longitude": "13.29093000" + }, + { + "id": "140589", + "name": "Montottone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.06205000", + "longitude": "13.59009000" + }, + { + "id": "140610", + "name": "Moresco", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.08666000", + "longitude": "13.73041000" + }, + { + "id": "140633", + "name": "Morro d'Alba", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60000000", + "longitude": "13.21331000" + }, + { + "id": "140636", + "name": "Morrovalle", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.31830000", + "longitude": "13.59535000" + }, + { + "id": "140676", + "name": "Muccia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.08232000", + "longitude": "13.04323000" + }, + { + "id": "140847", + "name": "Numana", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.51136000", + "longitude": "13.62118000" + }, + { + "id": "140875", + "name": "Offagna", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52588000", + "longitude": "13.44076000" + }, + { + "id": "140877", + "name": "Offida", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.93499000", + "longitude": "13.69773000" + }, + { + "id": "140944", + "name": "Orciano di Pesaro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.68938000", + "longitude": "12.97206000" + }, + { + "id": "140984", + "name": "Ortezzano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.03042000", + "longitude": "13.60531000" + }, + { + "id": "141007", + "name": "Osimo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48539000", + "longitude": "13.48222000" + }, + { + "id": "141034", + "name": "Osteria", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54950000", + "longitude": "13.02188000" + }, + { + "id": "141042", + "name": "Ostra", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.61611000", + "longitude": "13.15849000" + }, + { + "id": "141043", + "name": "Ostra Vetere", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60336000", + "longitude": "13.06150000" + }, + { + "id": "141083", + "name": "Padiglione", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.46900000", + "longitude": "13.46261000" + }, + { + "id": "58206", + "name": "Pagliare", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.86906000", + "longitude": "13.76906000" + }, + { + "id": "58259", + "name": "Palmiano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89946000", + "longitude": "13.45937000" + }, + { + "id": "58333", + "name": "Passo di Treia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.28647000", + "longitude": "13.33246000" + }, + { + "id": "58331", + "name": "Passo Ripe", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.65567000", + "longitude": "13.12196000" + }, + { + "id": "58376", + "name": "Pedaso", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09839000", + "longitude": "13.84083000" + }, + { + "id": "58385", + "name": "Peglio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69646000", + "longitude": "12.49785000" + }, + { + "id": "58402", + "name": "Penna San Giovanni", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05608000", + "longitude": "13.42539000" + }, + { + "id": "58424", + "name": "Pergola", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.55485000", + "longitude": "12.83633000" + }, + { + "id": "58447", + "name": "Pesaro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90921000", + "longitude": "12.91640000" + }, + { + "id": "58481", + "name": "Petriano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77935000", + "longitude": "12.73214000" + }, + { + "id": "58483", + "name": "Petriolo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.22141000", + "longitude": "13.46173000" + }, + { + "id": "58484", + "name": "Petritoli", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.06809000", + "longitude": "13.66385000" + }, + { + "id": "58505", + "name": "Piagge", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73381000", + "longitude": "12.96851000" + }, + { + "id": "58518", + "name": "Piandimeleto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72320000", + "longitude": "12.40855000" + }, + { + "id": "58519", + "name": "Piane", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09703000", + "longitude": "13.49502000" + }, + { + "id": "58521", + "name": "Piane di Montegiorgio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.11587000", + "longitude": "13.56669000" + }, + { + "id": "58522", + "name": "Piane di Morro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.82317000", + "longitude": "13.65300000" + }, + { + "id": "58524", + "name": "Pianello", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.62620000", + "longitude": "13.13068000" + }, + { + "id": "58526", + "name": "Pianello Vallesina", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48817000", + "longitude": "13.16188000" + }, + { + "id": "58559", + "name": "Piattoni-Villa Sant'Antonio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.86630000", + "longitude": "13.71120000" + }, + { + "id": "58584", + "name": "Pie' del Colle", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.02984000", + "longitude": "13.17535000" + }, + { + "id": "58585", + "name": "Pie' del Sasso", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.99429000", + "longitude": "12.99889000" + }, + { + "id": "58594", + "name": "Piediripa", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.27751000", + "longitude": "13.48712000" + }, + { + "id": "58604", + "name": "Pietra la Croce", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60224000", + "longitude": "13.53887000" + }, + { + "id": "58641", + "name": "Pieve Torina", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.04299000", + "longitude": "13.04769000" + }, + { + "id": "58656", + "name": "Pievebovigliana", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.06287000", + "longitude": "13.08375000" + }, + { + "id": "58681", + "name": "Pinocchio di Ancona", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.58986000", + "longitude": "13.49413000" + }, + { + "id": "58684", + "name": "Piobbico", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.58819000", + "longitude": "12.50962000" + }, + { + "id": "58693", + "name": "Pioraco", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.18074000", + "longitude": "12.97676000" + }, + { + "id": "58763", + "name": "Poggio San Marcello", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.51116000", + "longitude": "13.07367000" + }, + { + "id": "58764", + "name": "Poggio San Vicino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.37466000", + "longitude": "13.07964000" + }, + { + "id": "58798", + "name": "Pollenza", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.26595000", + "longitude": "13.34788000" + }, + { + "id": "58806", + "name": "Polverigi", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52876000", + "longitude": "13.38294000" + }, + { + "id": "58898", + "name": "Ponzano di Fermo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.10390000", + "longitude": "13.65979000" + }, + { + "id": "58932", + "name": "Porto Potenza Picena", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.35751000", + "longitude": "13.69746000" + }, + { + "id": "58933", + "name": "Porto Recanati", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.43296000", + "longitude": "13.66165000" + }, + { + "id": "58934", + "name": "Porto San Giorgio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.17784000", + "longitude": "13.79411000" + }, + { + "id": "58935", + "name": "Porto Sant'Elpidio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25297000", + "longitude": "13.75970000" + }, + { + "id": "58953", + "name": "Posatora", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.59917000", + "longitude": "13.48984000" + }, + { + "id": "58966", + "name": "Potenza Picena", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.36635000", + "longitude": "13.62249000" + }, + { + "id": "59101", + "name": "Province of Fermo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.16537000", + "longitude": "13.72424000" + }, + { + "id": "59108", + "name": "Provincia di Ancona", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.55000000", + "longitude": "13.16667000" + }, + { + "id": "59109", + "name": "Provincia di Ascoli Piceno", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.88443000", + "longitude": "13.55306000" + }, + { + "id": "59146", + "name": "Provincia di Macerata", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.20000000", + "longitude": "13.16667000" + }, + { + "id": "59159", + "name": "Provincia di Pesaro e Urbino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.66667000", + "longitude": "12.63333000" + }, + { + "id": "59283", + "name": "Rapagnano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.15985000", + "longitude": "13.58873000" + }, + { + "id": "59310", + "name": "Recanati", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40381000", + "longitude": "13.55379000" + }, + { + "id": "59388", + "name": "Rio Salso-Case Bernardi", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83439000", + "longitude": "12.69031000" + }, + { + "id": "59408", + "name": "Ripatransone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.00015000", + "longitude": "13.76203000" + }, + { + "id": "59409", + "name": "Ripe", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.66906000", + "longitude": "13.10586000" + }, + { + "id": "59410", + "name": "Ripe San Ginesio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.14202000", + "longitude": "13.36724000" + }, + { + "id": "59630", + "name": "Rosciano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81620000", + "longitude": "12.99992000" + }, + { + "id": "59644", + "name": "Rosora", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48336000", + "longitude": "13.06819000" + }, + { + "id": "59657", + "name": "Rotella", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.95435000", + "longitude": "13.55849000" + }, + { + "id": "59781", + "name": "Saltara", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.75252000", + "longitude": "12.89853000" + }, + { + "id": "59832", + "name": "San Benedetto del Tronto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.95680000", + "longitude": "13.87676000" + }, + { + "id": "59840", + "name": "San Biagio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.51597000", + "longitude": "13.49643000" + }, + { + "id": "59882", + "name": "San Costanzo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.76720000", + "longitude": "13.07306000" + }, + { + "id": "59950", + "name": "San Ginesio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.10752000", + "longitude": "13.32121000" + }, + { + "id": "59972", + "name": "San Giorgio di Pesaro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72248000", + "longitude": "12.97969000" + }, + { + "id": "60049", + "name": "San Lorenzo in Campo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60149000", + "longitude": "12.94398000" + }, + { + "id": "60058", + "name": "San Marcello", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.57526000", + "longitude": "13.20827000" + }, + { + "id": "60115", + "name": "San Michele", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.66218000", + "longitude": "12.99797000" + }, + { + "id": "60162", + "name": "San Paolo di Jesi", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.45456000", + "longitude": "13.17277000" + }, + { + "id": "60243", + "name": "San Severino Marche", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.23028000", + "longitude": "13.17990000" + }, + { + "id": "60256", + "name": "San Tommaso Tre Archi", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.22771000", + "longitude": "13.77503000" + }, + { + "id": "60289", + "name": "San Vittoria in Matenano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.01975000", + "longitude": "13.49618000" + }, + { + "id": "60368", + "name": "Sant'Angelo in Lizzola", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82696000", + "longitude": "12.80076000" + }, + { + "id": "60369", + "name": "Sant'Angelo in Pontano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09780000", + "longitude": "13.39690000" + }, + { + "id": "60370", + "name": "Sant'Angelo in Vado", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.66526000", + "longitude": "12.41757000" + }, + { + "id": "60399", + "name": "Sant'Elpidio a Mare", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.23024000", + "longitude": "13.68819000" + }, + { + "id": "60406", + "name": "Sant'Ippolito", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67972000", + "longitude": "12.87581000" + }, + { + "id": "60458", + "name": "Santa Maria Apparente", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.29661000", + "longitude": "13.69223000" + }, + { + "id": "60469", + "name": "Santa Maria Nuova", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.49164000", + "longitude": "13.32370000" + }, + { + "id": "60552", + "name": "Sarnano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.03475000", + "longitude": "13.29818000" + }, + { + "id": "60574", + "name": "Sassocorvaro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78266000", + "longitude": "12.49910000" + }, + { + "id": "60575", + "name": "Sassofeltrio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.89212000", + "longitude": "12.50974000" + }, + { + "id": "60576", + "name": "Sassoferrato", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.43109000", + "longitude": "12.85660000" + }, + { + "id": "60686", + "name": "Sefro", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.14743000", + "longitude": "12.94859000" + }, + { + "id": "60724", + "name": "Senigallia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.71626000", + "longitude": "13.20882000" + }, + { + "id": "60756", + "name": "Serra de' Conti", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54196000", + "longitude": "13.03566000" + }, + { + "id": "60753", + "name": "Serra San Quirico", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.44637000", + "longitude": "13.02266000" + }, + { + "id": "60754", + "name": "Serra Sant'Abbondio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.49155000", + "longitude": "12.77409000" + }, + { + "id": "60767", + "name": "Serrapetrona", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.17671000", + "longitude": "13.18981000" + }, + { + "id": "60777", + "name": "Serravalle di Chienti", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.07185000", + "longitude": "12.95217000" + }, + { + "id": "60784", + "name": "Serrungarina", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.74666000", + "longitude": "12.87486000" + }, + { + "id": "60786", + "name": "Servigliano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.07993000", + "longitude": "13.49268000" + }, + { + "id": "60829", + "name": "Sforzacosta", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25676000", + "longitude": "13.42284000" + }, + { + "id": "60875", + "name": "Sirolo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52246000", + "longitude": "13.61498000" + }, + { + "id": "60889", + "name": "Smerillo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.00515000", + "longitude": "13.44498000" + }, + { + "id": "61019", + "name": "Spinetoli", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.88984000", + "longitude": "13.76497000" + }, + { + "id": "61039", + "name": "Staffolo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.43326000", + "longitude": "13.18487000" + }, + { + "id": "61051", + "name": "Stazione", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.50046000", + "longitude": "13.15149000" + }, + { + "id": "61061", + "name": "Stella", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.88698000", + "longitude": "13.80948000" + }, + { + "id": "61084", + "name": "Strada", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40337000", + "longitude": "13.22077000" + }, + { + "id": "61188", + "name": "Tavernelle", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73203000", + "longitude": "12.88349000" + }, + { + "id": "61196", + "name": "Tavoleto", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84402000", + "longitude": "12.59418000" + }, + { + "id": "61197", + "name": "Tavullia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.89791000", + "longitude": "12.75108000" + }, + { + "id": "61298", + "name": "Tolentino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.20918000", + "longitude": "13.28524000" + }, + { + "id": "61362", + "name": "Torre San Patrizio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.18311000", + "longitude": "13.61113000" + }, + { + "id": "61459", + "name": "Trebbio", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.03685000", + "longitude": "13.15394000" + }, + { + "id": "61475", + "name": "Treia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.30850000", + "longitude": "13.31036000" + }, + { + "id": "61547", + "name": "Trodica", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.27458000", + "longitude": "13.59369000" + }, + { + "id": "61557", + "name": "Troviggiano", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.37868000", + "longitude": "13.25022000" + }, + { + "id": "61602", + "name": "Urbania", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.66832000", + "longitude": "12.52093000" + }, + { + "id": "61604", + "name": "Urbino", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72621000", + "longitude": "12.63633000" + }, + { + "id": "61605", + "name": "Urbisaglia", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.19304000", + "longitude": "13.37474000" + }, + { + "id": "61700", + "name": "Valle e Castello", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.03740000", + "longitude": "13.08742000" + }, + { + "id": "61810", + "name": "Venarotta", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.88266000", + "longitude": "13.49157000" + }, + { + "id": "61991", + "name": "Villa Ceccolini", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86481000", + "longitude": "12.83605000" + }, + { + "id": "62006", + "name": "Villa Musone", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.44624000", + "longitude": "13.60312000" + }, + { + "id": "62009", + "name": "Villa Pigna", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.83324000", + "longitude": "13.63446000" + }, + { + "id": "62011", + "name": "Villa Potenza", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.32149000", + "longitude": "13.42649000" + }, + { + "id": "62016", + "name": "Villa San Filippo", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25981000", + "longitude": "13.59337000" + }, + { + "id": "62019", + "name": "Villa San Giuseppe", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.86862000", + "longitude": "13.74481000" + }, + { + "id": "62070", + "name": "Villagrande", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84136000", + "longitude": "12.35994000" + }, + { + "id": "62092", + "name": "Villanova", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73926000", + "longitude": "12.93529000" + }, + { + "id": "62175", + "name": "Visso", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "42.93351000", + "longitude": "13.08051000" + }, + { + "id": "62271", + "name": "Zona Industriale", + "state_id": 1670, + "state_code": "57", + "country_id": 107, + "country_code": "IT", + "latitude": "43.26155000", + "longitude": "13.48834000" + }, + { + "id": "135277", + "name": "Acquaviva Collecroce", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86624000", + "longitude": "14.74733000" + }, + { + "id": "135280", + "name": "Acquaviva d'Isernia", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67132000", + "longitude": "14.14770000" + }, + { + "id": "135310", + "name": "Agnone", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.81043000", + "longitude": "14.37524000" + }, + { + "id": "135764", + "name": "Bagnoli del Trigno", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.70217000", + "longitude": "14.45861000" + }, + { + "id": "135811", + "name": "Baranello", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52722000", + "longitude": "14.55800000" + }, + { + "id": "135955", + "name": "Belmonte del Sannio", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.82352000", + "longitude": "14.42333000" + }, + { + "id": "136099", + "name": "Bojano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.48530000", + "longitude": "14.47075000" + }, + { + "id": "136135", + "name": "Bonefro", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.70507000", + "longitude": "14.93439000" + }, + { + "id": "136431", + "name": "Busso", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55413000", + "longitude": "14.56103000" + }, + { + "id": "136638", + "name": "Campobasso", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55947000", + "longitude": "14.66737000" + }, + { + "id": "136642", + "name": "Campochiaro", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.44827000", + "longitude": "14.50828000" + }, + { + "id": "136647", + "name": "Campodipietra", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55740000", + "longitude": "14.74445000" + }, + { + "id": "136662", + "name": "Campolieto", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63336000", + "longitude": "14.76694000" + }, + { + "id": "136668", + "name": "Campomarino", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.95692000", + "longitude": "15.03546000" + }, + { + "id": "136744", + "name": "Cantalupo nel Sannio", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52182000", + "longitude": "14.39292000" + }, + { + "id": "136797", + "name": "Capracotta", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.83326000", + "longitude": "14.26581000" + }, + { + "id": "136905", + "name": "Carovilli", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71348000", + "longitude": "14.29403000" + }, + { + "id": "136922", + "name": "Carpinone", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59003000", + "longitude": "14.32436000" + }, + { + "id": "136953", + "name": "Casacalenda", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73824000", + "longitude": "14.84734000" + }, + { + "id": "136970", + "name": "Casalciprano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.58037000", + "longitude": "14.52835000" + }, + { + "id": "137164", + "name": "Castel del Giudice", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.85488000", + "longitude": "14.23155000" + }, + { + "id": "137156", + "name": "Castel San Vincenzo", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.65543000", + "longitude": "14.06178000" + }, + { + "id": "137182", + "name": "Castelbottaccio", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.75329000", + "longitude": "14.70616000" + }, + { + "id": "137249", + "name": "Castellino del Biferno", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.70160000", + "longitude": "14.73179000" + }, + { + "id": "137272", + "name": "Castelmauro", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.82846000", + "longitude": "14.71066000" + }, + { + "id": "137306", + "name": "Castelpetroso", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.56027000", + "longitude": "14.34637000" + }, + { + "id": "137307", + "name": "Castelpizzuto", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52128000", + "longitude": "14.29205000" + }, + { + "id": "137326", + "name": "Castelverrino", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76713000", + "longitude": "14.39756000" + }, + { + "id": "137386", + "name": "Castropignano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61788000", + "longitude": "14.55856000" + }, + { + "id": "137521", + "name": "Cercemaggiore", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.46130000", + "longitude": "14.72402000" + }, + { + "id": "137523", + "name": "Cercepiccola", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45982000", + "longitude": "14.66487000" + }, + { + "id": "137576", + "name": "Cerro al Volturno", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.65418000", + "longitude": "14.10321000" + }, + { + "id": "137657", + "name": "Chiauci", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67791000", + "longitude": "14.38393000" + }, + { + "id": "137788", + "name": "Civitacampomarano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.78032000", + "longitude": "14.68919000" + }, + { + "id": "137792", + "name": "Civitanova del Sannio", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.66829000", + "longitude": "14.40285000" + }, + { + "id": "137869", + "name": "Colle d'Anchise", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50986000", + "longitude": "14.51873000" + }, + { + "id": "137895", + "name": "Colletorto", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.66165000", + "longitude": "14.96773000" + }, + { + "id": "137898", + "name": "Colli a Volturno", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.60039000", + "longitude": "14.10301000" + }, + { + "id": "137953", + "name": "Conca Casale", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.49512000", + "longitude": "14.00682000" + }, + { + "id": "138346", + "name": "Duronia", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.65786000", + "longitude": "14.46015000" + }, + { + "id": "138491", + "name": "Ferrazzano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.53033000", + "longitude": "14.67223000" + }, + { + "id": "138531", + "name": "Filignano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.54578000", + "longitude": "14.05757000" + }, + { + "id": "138633", + "name": "Forlì del Sannio", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69593000", + "longitude": "14.17952000" + }, + { + "id": "138652", + "name": "Fornelli", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.60678000", + "longitude": "14.14041000" + }, + { + "id": "138672", + "name": "Fossalto", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67293000", + "longitude": "14.54573000" + }, + { + "id": "138742", + "name": "Frosolone", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.60006000", + "longitude": "14.44578000" + }, + { + "id": "138830", + "name": "Gambatesa", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50861000", + "longitude": "14.91240000" + }, + { + "id": "138961", + "name": "Gildone", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.50901000", + "longitude": "14.74020000" + }, + { + "id": "139164", + "name": "Guardialfiera", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80423000", + "longitude": "14.79293000" + }, + { + "id": "139165", + "name": "Guardiaregia", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.43436000", + "longitude": "14.54344000" + }, + { + "id": "139175", + "name": "Guglionesi", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.92093000", + "longitude": "14.91600000" + }, + { + "id": "139233", + "name": "Isernia", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59603000", + "longitude": "14.23399000" + }, + { + "id": "139274", + "name": "Jelsi", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.51704000", + "longitude": "14.79790000" + }, + { + "id": "139376", + "name": "Larino", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.80449000", + "longitude": "14.91843000" + }, + { + "id": "139527", + "name": "Limosano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67554000", + "longitude": "14.62230000" + }, + { + "id": "139588", + "name": "Longano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52199000", + "longitude": "14.24665000" + }, + { + "id": "139636", + "name": "Lucito", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73193000", + "longitude": "14.68723000" + }, + { + "id": "139664", + "name": "Lupara", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.76141000", + "longitude": "14.73390000" + }, + { + "id": "139692", + "name": "Macchia d'Isernia", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.56057000", + "longitude": "14.17015000" + }, + { + "id": "139691", + "name": "Macchia Valfortore", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59487000", + "longitude": "14.91238000" + }, + { + "id": "139693", + "name": "Macchiagodena", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55899000", + "longitude": "14.41049000" + }, + { + "id": "139715", + "name": "Mafalda", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.94308000", + "longitude": "14.71610000" + }, + { + "id": "139998", + "name": "Matrice", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61878000", + "longitude": "14.70977000" + }, + { + "id": "140155", + "name": "Mimosa-Poggio Verde-Nuova Comunità", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.53871000", + "longitude": "14.66879000" + }, + { + "id": "140171", + "name": "Mirabello Sannitico", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.51628000", + "longitude": "14.67315000" + }, + { + "id": "140173", + "name": "Miranda", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.64434000", + "longitude": "14.24643000" + }, + { + "id": "140227", + "name": "Molise", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63147000", + "longitude": "14.49252000" + }, + { + "id": "140248", + "name": "Monacilioni", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61077000", + "longitude": "14.81000000" + }, + { + "id": "140307", + "name": "Montagano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.64538000", + "longitude": "14.67405000" + }, + { + "id": "140346", + "name": "Montaquila", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.56502000", + "longitude": "14.11333000" + }, + { + "id": "140418", + "name": "Montecilfone", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90163000", + "longitude": "14.83680000" + }, + { + "id": "140433", + "name": "Montefalcone nel Sannio", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.86663000", + "longitude": "14.63823000" + }, + { + "id": "140478", + "name": "Montelongo", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.73705000", + "longitude": "14.95034000" + }, + { + "id": "140496", + "name": "Montemitro", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88813000", + "longitude": "14.64666000" + }, + { + "id": "140503", + "name": "Montenero di Bisaccia", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.96437000", + "longitude": "14.78103000" + }, + { + "id": "140502", + "name": "Montenero Val Cocchiara", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71683000", + "longitude": "14.06941000" + }, + { + "id": "140518", + "name": "Monteroduni", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52240000", + "longitude": "14.17641000" + }, + { + "id": "140584", + "name": "Montorio Nei Frentani", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.75884000", + "longitude": "14.93314000" + }, + { + "id": "140635", + "name": "Morrone del Sannio", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71107000", + "longitude": "14.78087000" + }, + { + "id": "140938", + "name": "Oratino", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.58598000", + "longitude": "14.59463000" + }, + { + "id": "58224", + "name": "Palata", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88790000", + "longitude": "14.78778000" + }, + { + "id": "58454", + "name": "Pesche", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.60552000", + "longitude": "14.27620000" + }, + { + "id": "58462", + "name": "Pescolanciano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67972000", + "longitude": "14.33658000" + }, + { + "id": "58464", + "name": "Pescopennataro", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87777000", + "longitude": "14.29398000" + }, + { + "id": "58473", + "name": "Petacciato", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "42.00827000", + "longitude": "14.86026000" + }, + { + "id": "58480", + "name": "Petrella Tifernina", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69135000", + "longitude": "14.69751000" + }, + { + "id": "58492", + "name": "Pettoranello del Molise", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.57331000", + "longitude": "14.27839000" + }, + { + "id": "58605", + "name": "Pietrabbondante", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74527000", + "longitude": "14.38480000" + }, + { + "id": "58608", + "name": "Pietracatella", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.58064000", + "longitude": "14.87298000" + }, + { + "id": "58609", + "name": "Pietracupa", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68253000", + "longitude": "14.51933000" + }, + { + "id": "58729", + "name": "Pizzone", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.67332000", + "longitude": "14.03666000" + }, + { + "id": "58765", + "name": "Poggio Sannita", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77939000", + "longitude": "14.41485000" + }, + { + "id": "58943", + "name": "Portocannone", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.91441000", + "longitude": "15.00845000" + }, + { + "id": "58980", + "name": "Pozzilli", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.51142000", + "longitude": "14.06252000" + }, + { + "id": "59121", + "name": "Provincia di Campobasso", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.70070000", + "longitude": "14.75848000" + }, + { + "id": "59138", + "name": "Provincia di Isernia", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.66667000", + "longitude": "14.25000000" + }, + { + "id": "59191", + "name": "Provvidenti", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71795000", + "longitude": "14.82349000" + }, + { + "id": "59365", + "name": "Riccia", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.48314000", + "longitude": "14.83181000" + }, + { + "id": "59396", + "name": "Rionero Sannitico", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71219000", + "longitude": "14.13917000" + }, + { + "id": "59401", + "name": "Ripabottoni", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68996000", + "longitude": "14.80866000" + }, + { + "id": "59403", + "name": "Ripalimosani", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61064000", + "longitude": "14.66306000" + }, + { + "id": "59507", + "name": "Roccamandolfi", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.49583000", + "longitude": "14.35217000" + }, + { + "id": "59522", + "name": "Roccasicura", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69676000", + "longitude": "14.23065000" + }, + { + "id": "59530", + "name": "Roccavivara", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.83336000", + "longitude": "14.60013000" + }, + { + "id": "59543", + "name": "Rocchetta a Volturno", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62582000", + "longitude": "14.08902000" + }, + { + "id": "59539", + "name": "Rocchetta Nuova", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62375000", + "longitude": "14.08574000" + }, + { + "id": "59658", + "name": "Rotello", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74776000", + "longitude": "15.00608000" + }, + { + "id": "59753", + "name": "Salcito", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.74640000", + "longitude": "14.51085000" + }, + { + "id": "59845", + "name": "San Biase", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71526000", + "longitude": "14.59049000" + }, + { + "id": "59911", + "name": "San Felice del Molise", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.89000000", + "longitude": "14.70088000" + }, + { + "id": "59946", + "name": "San Giacomo degli Schiavoni", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.96234000", + "longitude": "14.94481000" + }, + { + "id": "59998", + "name": "San Giovanni in Galdo", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.59110000", + "longitude": "14.75202000" + }, + { + "id": "60007", + "name": "San Giuliano del Sannio", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45752000", + "longitude": "14.64169000" + }, + { + "id": "60008", + "name": "San Giuliano di Puglia", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.68796000", + "longitude": "14.96231000" + }, + { + "id": "60093", + "name": "San Martino in Pensilis", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.87814000", + "longitude": "15.01824000" + }, + { + "id": "60101", + "name": "San Massimo", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.49292000", + "longitude": "14.41023000" + }, + { + "id": "60174", + "name": "San Pietro Avellana", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.78886000", + "longitude": "14.18323000" + }, + { + "id": "60208", + "name": "San Polomatese", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.45932000", + "longitude": "14.49343000" + }, + { + "id": "60314", + "name": "Sant'Agapito", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.54372000", + "longitude": "14.22204000" + }, + { + "id": "60364", + "name": "Sant'Angelo del Pesco", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.88193000", + "longitude": "14.25354000" + }, + { + "id": "60357", + "name": "Sant'Angelo Limosano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.69266000", + "longitude": "14.60346000" + }, + { + "id": "60395", + "name": "Sant'Elena Sannita", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.57525000", + "longitude": "14.47070000" + }, + { + "id": "60398", + "name": "Sant'Elia a Pianisi", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.62043000", + "longitude": "14.87523000" + }, + { + "id": "60429", + "name": "Santa Croce di Magliano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.71223000", + "longitude": "14.98732000" + }, + { + "id": "60474", + "name": "Santa Maria del Molise", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.55285000", + "longitude": "14.36762000" + }, + { + "id": "60628", + "name": "Scapoli", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.61447000", + "longitude": "14.05929000" + }, + { + "id": "60732", + "name": "Sepino", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.40782000", + "longitude": "14.61938000" + }, + { + "id": "60791", + "name": "Sessano del Molise", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63926000", + "longitude": "14.32779000" + }, + { + "id": "60796", + "name": "Sesto Campano", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.42042000", + "longitude": "14.07782000" + }, + { + "id": "61017", + "name": "Spinete", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.54431000", + "longitude": "14.48743000" + }, + { + "id": "61183", + "name": "Tavenna", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.90898000", + "longitude": "14.76176000" + }, + { + "id": "61185", + "name": "Taverna Ravindola", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.52283000", + "longitude": "14.12591000" + }, + { + "id": "61229", + "name": "Termoli", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.99994000", + "longitude": "14.99389000" + }, + { + "id": "61325", + "name": "Torella del Sannio", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.63878000", + "longitude": "14.52031000" + }, + { + "id": "61339", + "name": "Toro", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.57313000", + "longitude": "14.76183000" + }, + { + "id": "61539", + "name": "Trivento", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77004000", + "longitude": "14.54613000" + }, + { + "id": "61562", + "name": "Tufara", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.48203000", + "longitude": "14.94654000" + }, + { + "id": "61608", + "name": "Ururi", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.81518000", + "longitude": "15.01611000" + }, + { + "id": "61782", + "name": "Vastogirardi", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.77460000", + "longitude": "14.25844000" + }, + { + "id": "61808", + "name": "Venafro", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.48275000", + "longitude": "14.04773000" + }, + { + "id": "62161", + "name": "Vinchiaturo", + "state_id": 1695, + "state_code": "67", + "country_id": 107, + "country_code": "IT", + "latitude": "41.49282000", + "longitude": "14.59200000" + }, + { + "id": "135248", + "name": "Acceglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47463000", + "longitude": "6.99092000" + }, + { + "id": "135283", + "name": "Acqui Terme", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67552000", + "longitude": "8.46934000" + }, + { + "id": "135303", + "name": "Agliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79164000", + "longitude": "8.25124000" + }, + { + "id": "135304", + "name": "Agliano Terme", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79025000", + "longitude": "8.25044000" + }, + { + "id": "135306", + "name": "Agliè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36800000", + "longitude": "7.76800000" + }, + { + "id": "135315", + "name": "Agrate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67540000", + "longitude": "8.56065000" + }, + { + "id": "135317", + "name": "Agrate Conturbia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67547000", + "longitude": "8.55973000" + }, + { + "id": "135331", + "name": "Ailoche", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69812000", + "longitude": "8.22133000" + }, + { + "id": "135332", + "name": "Airali", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81670000", + "longitude": "7.25157000" + }, + { + "id": "135333", + "name": "Airasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91719000", + "longitude": "7.48322000" + }, + { + "id": "135337", + "name": "Aisone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31392000", + "longitude": "7.21963000" + }, + { + "id": "135339", + "name": "Ala di Stura", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31492000", + "longitude": "7.30345000" + }, + { + "id": "135341", + "name": "Alagna Valsesia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85182000", + "longitude": "7.93752000" + }, + { + "id": "135346", + "name": "Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69990000", + "longitude": "8.03470000" + }, + { + "id": "135353", + "name": "Albano Vercellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42616000", + "longitude": "8.38093000" + }, + { + "id": "135360", + "name": "Albaretto della Torre", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59624000", + "longitude": "8.06464000" + }, + { + "id": "135363", + "name": "Albera Ligure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70159000", + "longitude": "9.06720000" + }, + { + "id": "135372", + "name": "Albiano d'Ivrea", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43424000", + "longitude": "7.94789000" + }, + { + "id": "135387", + "name": "Albugnano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07755000", + "longitude": "7.97113000" + }, + { + "id": "135394", + "name": "Alessandria", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90924000", + "longitude": "8.61007000" + }, + { + "id": "135402", + "name": "Alfiano Natta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04860000", + "longitude": "8.20730000" + }, + { + "id": "135408", + "name": "Alice Bel Colle", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72605000", + "longitude": "8.45074000" + }, + { + "id": "135409", + "name": "Alice Castello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36860000", + "longitude": "8.07320000" + }, + { + "id": "135410", + "name": "Alice Superiore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46066000", + "longitude": "7.77922000" + }, + { + "id": "135422", + "name": "Almese-Rivera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11915000", + "longitude": "7.40111000" + }, + { + "id": "135425", + "name": "Alpette", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40917000", + "longitude": "7.57795000" + }, + { + "id": "135426", + "name": "Alpignano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09346000", + "longitude": "7.52392000" + }, + { + "id": "135434", + "name": "Altavilla Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99355000", + "longitude": "8.37594000" + }, + { + "id": "135443", + "name": "Alto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.10863000", + "longitude": "8.00215000" + }, + { + "id": "135451", + "name": "Alzano Scrivia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01806000", + "longitude": "8.88065000" + }, + { + "id": "135470", + "name": "Ameno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78897000", + "longitude": "8.44000000" + }, + { + "id": "135483", + "name": "Andezeno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03376000", + "longitude": "7.86607000" + }, + { + "id": "135485", + "name": "Andorno Cacciorna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61054000", + "longitude": "8.05589000" + }, + { + "id": "135487", + "name": "Andrate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52633000", + "longitude": "7.88145000" + }, + { + "id": "135501", + "name": "Angrogna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84354000", + "longitude": "7.22422000" + }, + { + "id": "135518", + "name": "Antignano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84535000", + "longitude": "8.13494000" + }, + { + "id": "135522", + "name": "Antronapiana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06091000", + "longitude": "8.11519000" + }, + { + "id": "135528", + "name": "Anzola d'Ossola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98897000", + "longitude": "8.34531000" + }, + { + "id": "135551", + "name": "Aramengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10085000", + "longitude": "8.00003000" + }, + { + "id": "135557", + "name": "Arborio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49586000", + "longitude": "8.38755000" + }, + { + "id": "135595", + "name": "Arguello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58274000", + "longitude": "8.11084000" + }, + { + "id": "135604", + "name": "Arignano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03966000", + "longitude": "7.90189000" + }, + { + "id": "135608", + "name": "Arizzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95738000", + "longitude": "8.58292000" + }, + { + "id": "135613", + "name": "Armeno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82078000", + "longitude": "8.44557000" + }, + { + "id": "135622", + "name": "Arola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80867000", + "longitude": "8.35808000" + }, + { + "id": "135624", + "name": "Arona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75890000", + "longitude": "8.55715000" + }, + { + "id": "135630", + "name": "Arquata Scrivia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68830000", + "longitude": "8.88682000" + }, + { + "id": "135660", + "name": "Asigliano Vercellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26146000", + "longitude": "8.40853000" + }, + { + "id": "135670", + "name": "Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90162000", + "longitude": "8.20751000" + }, + { + "id": "135688", + "name": "Aurano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00038000", + "longitude": "8.58822000" + }, + { + "id": "135708", + "name": "Avigliana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07978000", + "longitude": "7.39647000" + }, + { + "id": "135714", + "name": "Avolasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80315000", + "longitude": "8.96545000" + }, + { + "id": "135718", + "name": "Azeglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42283000", + "longitude": "7.99222000" + }, + { + "id": "135724", + "name": "Azzano d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87345000", + "longitude": "8.26684000" + }, + { + "id": "135728", + "name": "Baceno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26062000", + "longitude": "8.31874000" + }, + { + "id": "135755", + "name": "Bagnasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30412000", + "longitude": "8.04522000" + }, + { + "id": "135769", + "name": "Bagnolo Piemonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76034000", + "longitude": "7.31392000" + }, + { + "id": "135779", + "name": "Bairo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38606000", + "longitude": "7.75532000" + }, + { + "id": "135782", + "name": "Balangero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26988000", + "longitude": "7.51884000" + }, + { + "id": "135783", + "name": "Baldichieri d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90595000", + "longitude": "8.09163000" + }, + { + "id": "135784", + "name": "Baldissero Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41026000", + "longitude": "7.74422000" + }, + { + "id": "135786", + "name": "Baldissero d'Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76184000", + "longitude": "7.90863000" + }, + { + "id": "135785", + "name": "Baldissero Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06837000", + "longitude": "7.81274000" + }, + { + "id": "135792", + "name": "Balme", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30192000", + "longitude": "7.21937000" + }, + { + "id": "135793", + "name": "Balmuccia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81878000", + "longitude": "8.14080000" + }, + { + "id": "135794", + "name": "Balocco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45589000", + "longitude": "8.28068000" + }, + { + "id": "135799", + "name": "Balzola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18358000", + "longitude": "8.40277000" + }, + { + "id": "135802", + "name": "Banchette", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45356000", + "longitude": "7.85632000" + }, + { + "id": "135803", + "name": "Bandito", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72282000", + "longitude": "7.82403000" + }, + { + "id": "135804", + "name": "Bannio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98397000", + "longitude": "8.14611000" + }, + { + "id": "135816", + "name": "Baratte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11160000", + "longitude": "7.23643000" + }, + { + "id": "135818", + "name": "Barbania", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29143000", + "longitude": "7.63450000" + }, + { + "id": "135823", + "name": "Barbaresco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72324000", + "longitude": "8.08194000" + }, + { + "id": "135843", + "name": "Bardonecchia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07462000", + "longitude": "6.69888000" + }, + { + "id": "135845", + "name": "Barengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57597000", + "longitude": "8.51403000" + }, + { + "id": "135851", + "name": "Barge", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72786000", + "longitude": "7.32283000" + }, + { + "id": "135862", + "name": "Barolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61094000", + "longitude": "7.94284000" + }, + { + "id": "135864", + "name": "Barone Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32576000", + "longitude": "7.87342000" + }, + { + "id": "135866", + "name": "Barquedo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74283000", + "longitude": "8.49630000" + }, + { + "id": "135878", + "name": "Basaluzzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76885000", + "longitude": "8.70485000" + }, + { + "id": "135896", + "name": "Bassignana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00110000", + "longitude": "8.73291000" + }, + { + "id": "135900", + "name": "Bastia Mondovì", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44194000", + "longitude": "7.89444000" + }, + { + "id": "135908", + "name": "Battifollo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31983000", + "longitude": "8.01094000" + }, + { + "id": "135914", + "name": "Baveno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90818000", + "longitude": "8.50033000" + }, + { + "id": "135922", + "name": "Bee", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96328000", + "longitude": "8.57542000" + }, + { + "id": "135924", + "name": "Beinasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02472000", + "longitude": "7.58564000" + }, + { + "id": "135925", + "name": "Beinette", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36394000", + "longitude": "7.64464000" + }, + { + "id": "135930", + "name": "Belforte Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62505000", + "longitude": "8.66125000" + }, + { + "id": "135933", + "name": "Belgirate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84123000", + "longitude": "8.57064000" + }, + { + "id": "135944", + "name": "Bellinzago Novarese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56877000", + "longitude": "8.64323000" + }, + { + "id": "135962", + "name": "Belvedere Langhe", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49361000", + "longitude": "7.97387000" + }, + { + "id": "135967", + "name": "Belveglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83012000", + "longitude": "8.32864000" + }, + { + "id": "135972", + "name": "Bene Vagienna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54268000", + "longitude": "7.82726000" + }, + { + "id": "135975", + "name": "Benevello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62981000", + "longitude": "8.10507000" + }, + { + "id": "135977", + "name": "Benna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51528000", + "longitude": "8.12409000" + }, + { + "id": "135986", + "name": "Bergamasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82725000", + "longitude": "8.45474000" + }, + { + "id": "135990", + "name": "Bergolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54784000", + "longitude": "8.18314000" + }, + { + "id": "135995", + "name": "Bernezzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38533000", + "longitude": "7.43633000" + }, + { + "id": "135998", + "name": "Bersezio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38031000", + "longitude": "6.96885000" + }, + { + "id": "136004", + "name": "Berzano di San Pietro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09418000", + "longitude": "7.95352000" + }, + { + "id": "136005", + "name": "Berzano di Tortona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87666000", + "longitude": "8.95108000" + }, + { + "id": "136023", + "name": "Beura", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07964000", + "longitude": "8.29826000" + }, + { + "id": "136031", + "name": "Biandrate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45271000", + "longitude": "8.46402000" + }, + { + "id": "136035", + "name": "Bianzè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30751000", + "longitude": "8.12202000" + }, + { + "id": "136041", + "name": "Bibiana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79894000", + "longitude": "7.28822000" + }, + { + "id": "136046", + "name": "Biella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56304000", + "longitude": "8.05796000" + }, + { + "id": "136054", + "name": "Bioglio-Portula-Andrè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61516000", + "longitude": "8.13602000" + }, + { + "id": "136065", + "name": "Bistagno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66059000", + "longitude": "8.37163000" + }, + { + "id": "136086", + "name": "Bobbio Pellice", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80854000", + "longitude": "7.11691000" + }, + { + "id": "136087", + "name": "Boca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67897000", + "longitude": "8.40873000" + }, + { + "id": "136089", + "name": "Boccioleto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83047000", + "longitude": "8.11282000" + }, + { + "id": "136097", + "name": "Bogogno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66307000", + "longitude": "8.53473000" + }, + { + "id": "136106", + "name": "Bollengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47162000", + "longitude": "7.94133000" + }, + { + "id": "136116", + "name": "Bolzano Novarese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76266000", + "longitude": "8.44248000" + }, + { + "id": "136143", + "name": "Bonvicino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50354000", + "longitude": "8.01754000" + }, + { + "id": "136155", + "name": "Borgaro Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15122000", + "longitude": "7.65543000" + }, + { + "id": "136162", + "name": "Borghetto di Borbera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72945000", + "longitude": "8.94346000" + }, + { + "id": "136167", + "name": "Borgiallo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41758000", + "longitude": "7.66984000" + }, + { + "id": "136169", + "name": "Borgo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70887000", + "longitude": "7.96222000" + }, + { + "id": "136199", + "name": "Borgo d'Ale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34958000", + "longitude": "8.05198000" + }, + { + "id": "136176", + "name": "Borgo Melano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01578000", + "longitude": "7.57656000" + }, + { + "id": "136181", + "name": "Borgo San Dalmazzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33785000", + "longitude": "7.49310000" + }, + { + "id": "136185", + "name": "Borgo San Martino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09259000", + "longitude": "8.52373000" + }, + { + "id": "136191", + "name": "Borgo Ticino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68931000", + "longitude": "8.60448000" + }, + { + "id": "136196", + "name": "Borgo Vercelli", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35680000", + "longitude": "8.46460000" + }, + { + "id": "136203", + "name": "Borgofranco d'Ivrea", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51636000", + "longitude": "7.85865000" + }, + { + "id": "136205", + "name": "Borgolavezzaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31918000", + "longitude": "8.69931000" + }, + { + "id": "136206", + "name": "Borgomale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62034000", + "longitude": "8.13224000" + }, + { + "id": "136207", + "name": "Borgomanero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69873000", + "longitude": "8.46230000" + }, + { + "id": "136209", + "name": "Borgomasino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36205000", + "longitude": "7.98811000" + }, + { + "id": "136210", + "name": "Borgone Susa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12334000", + "longitude": "7.23641000" + }, + { + "id": "136213", + "name": "Borgoratto Alessandrino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83625000", + "longitude": "8.53854000" + }, + { + "id": "136218", + "name": "Borgosesia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72045000", + "longitude": "8.27466000" + }, + { + "id": "136228", + "name": "Borriana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50781000", + "longitude": "8.03860000" + }, + { + "id": "136243", + "name": "Bosco Marengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82373000", + "longitude": "8.68008000" + }, + { + "id": "136246", + "name": "Bosconero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26630000", + "longitude": "7.76578000" + }, + { + "id": "136250", + "name": "Bosia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60244000", + "longitude": "8.14734000" + }, + { + "id": "136251", + "name": "Bosio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64975000", + "longitude": "8.79285000" + }, + { + "id": "136255", + "name": "Bossolasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.52818000", + "longitude": "8.04993000" + }, + { + "id": "136269", + "name": "Boves", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32985000", + "longitude": "7.54733000" + }, + { + "id": "136276", + "name": "Bozzole", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06934000", + "longitude": "8.60561000" + }, + { + "id": "136278", + "name": "Bra", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69776000", + "longitude": "7.85128000" + }, + { + "id": "136288", + "name": "Brandizzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17706000", + "longitude": "7.83581000" + }, + { + "id": "136297", + "name": "Breia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76497000", + "longitude": "8.30552000" + }, + { + "id": "136312", + "name": "Breo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39865000", + "longitude": "7.81903000" + }, + { + "id": "136324", + "name": "Briaglia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39583000", + "longitude": "7.87574000" + }, + { + "id": "136326", + "name": "Bricco di Neive", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71159000", + "longitude": "8.13409000" + }, + { + "id": "136327", + "name": "Bricherasio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82328000", + "longitude": "7.30300000" + }, + { + "id": "136330", + "name": "Briga Alta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.08273000", + "longitude": "7.74944000" + }, + { + "id": "136331", + "name": "Briga Novarese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72931000", + "longitude": "8.45586000" + }, + { + "id": "136332", + "name": "Brignano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81457000", + "longitude": "9.04005000" + }, + { + "id": "136337", + "name": "Briona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54247000", + "longitude": "8.47973000" + }, + { + "id": "136350", + "name": "Brondello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60073000", + "longitude": "7.40592000" + }, + { + "id": "136355", + "name": "Brossasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56778000", + "longitude": "7.36454000" + }, + { + "id": "136356", + "name": "Brosso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49180000", + "longitude": "7.80225000" + }, + { + "id": "136357", + "name": "Brovello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84246000", + "longitude": "8.53189000" + }, + { + "id": "136358", + "name": "Brovello-Carpugnino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84247000", + "longitude": "8.53173000" + }, + { + "id": "136359", + "name": "Brozolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11695000", + "longitude": "8.07193000" + }, + { + "id": "136366", + "name": "Bruino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01506000", + "longitude": "7.47754000" + }, + { + "id": "136372", + "name": "Bruno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79262000", + "longitude": "8.43973000" + }, + { + "id": "136374", + "name": "Brusasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15499000", + "longitude": "8.06107000" + }, + { + "id": "136377", + "name": "Brusnengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59011000", + "longitude": "8.25219000" + }, + { + "id": "136379", + "name": "Bruzolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14093000", + "longitude": "7.19463000" + }, + { + "id": "136383", + "name": "Bubbio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66344000", + "longitude": "8.29514000" + }, + { + "id": "136414", + "name": "Buriasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87222000", + "longitude": "7.41200000" + }, + { + "id": "136415", + "name": "Burolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48116000", + "longitude": "7.93392000" + }, + { + "id": "136416", + "name": "Buronzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48018000", + "longitude": "8.26628000" + }, + { + "id": "136420", + "name": "Busano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33137000", + "longitude": "7.65727000" + }, + { + "id": "136421", + "name": "Busca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51625000", + "longitude": "7.47662000" + }, + { + "id": "136433", + "name": "Bussoleno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13970000", + "longitude": "7.14432000" + }, + { + "id": "136439", + "name": "Buttigliera Alta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06836000", + "longitude": "7.43254000" + }, + { + "id": "136440", + "name": "Buttigliera d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02175000", + "longitude": "7.95103000" + }, + { + "id": "136448", + "name": "Cabella Ligure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67491000", + "longitude": "9.09607000" + }, + { + "id": "136465", + "name": "Cafasse", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24865000", + "longitude": "7.51882000" + }, + { + "id": "136488", + "name": "Calamandrana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73767000", + "longitude": "8.33726000" + }, + { + "id": "136492", + "name": "Calasca-Castiglione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02081000", + "longitude": "8.21451000" + }, + { + "id": "136531", + "name": "Callabiana - Chiesa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63137000", + "longitude": "8.09722000" + }, + { + "id": "136532", + "name": "Calliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00798000", + "longitude": "8.25661000" + }, + { + "id": "136537", + "name": "Calosso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73994000", + "longitude": "8.22714000" + }, + { + "id": "136545", + "name": "Caltignaga", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52088000", + "longitude": "8.58616000" + }, + { + "id": "136549", + "name": "Caluso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30466000", + "longitude": "7.89101000" + }, + { + "id": "136566", + "name": "Camagna Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01765000", + "longitude": "8.42974000" + }, + { + "id": "136570", + "name": "Camandona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64417000", + "longitude": "8.09972000" + }, + { + "id": "136573", + "name": "Cambiano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97113000", + "longitude": "7.77447000" + }, + { + "id": "136574", + "name": "Cambiasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96238000", + "longitude": "8.54462000" + }, + { + "id": "136575", + "name": "Camburzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54393000", + "longitude": "8.00226000" + }, + { + "id": "136576", + "name": "Camerana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42404000", + "longitude": "8.14144000" + }, + { + "id": "136578", + "name": "Camerano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99118000", + "longitude": "8.08965000" + }, + { + "id": "136579", + "name": "Camerano Casasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99165000", + "longitude": "8.09103000" + }, + { + "id": "136583", + "name": "Cameri", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50159000", + "longitude": "8.66245000" + }, + { + "id": "136590", + "name": "Camino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15723000", + "longitude": "8.29376000" + }, + { + "id": "136596", + "name": "Camo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69504000", + "longitude": "8.19434000" + }, + { + "id": "136613", + "name": "Campertogno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79877000", + "longitude": "8.03212000" + }, + { + "id": "136617", + "name": "Campiglia Cervo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66290000", + "longitude": "7.99967000" + }, + { + "id": "136620", + "name": "Campiglione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80284000", + "longitude": "7.32422000" + }, + { + "id": "136669", + "name": "Campomolino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40883000", + "longitude": "7.21192000" + }, + { + "id": "136687", + "name": "Canale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79532000", + "longitude": "7.99373000" + }, + { + "id": "136698", + "name": "Candelo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54093000", + "longitude": "8.10659000" + }, + { + "id": "136700", + "name": "Candia Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32734000", + "longitude": "7.88429000" + }, + { + "id": "136706", + "name": "Candiolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95858000", + "longitude": "7.59812000" + }, + { + "id": "136708", + "name": "Canelli", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72084000", + "longitude": "8.29282000" + }, + { + "id": "136715", + "name": "Canischio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37485000", + "longitude": "7.59621000" + }, + { + "id": "136720", + "name": "Cannero Riviera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02200000", + "longitude": "8.67933000" + }, + { + "id": "136726", + "name": "Cannobio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06233000", + "longitude": "8.69628000" + }, + { + "id": "136733", + "name": "Canosio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45583000", + "longitude": "7.08272000" + }, + { + "id": "136740", + "name": "Cantalupa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94594000", + "longitude": "7.33032000" + }, + { + "id": "136742", + "name": "Cantalupo Ligure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71811000", + "longitude": "9.04575000" + }, + { + "id": "136745", + "name": "Cantarana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90245000", + "longitude": "8.02753000" + }, + { + "id": "136750", + "name": "Cantoira", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34014000", + "longitude": "7.38450000" + }, + { + "id": "136806", + "name": "Caprauna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11603000", + "longitude": "7.95495000" + }, + { + "id": "136808", + "name": "Caprezzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98198000", + "longitude": "8.56282000" + }, + { + "id": "136814", + "name": "Capriata d'Orba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72785000", + "longitude": "8.69085000" + }, + { + "id": "136817", + "name": "Caprie", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11944000", + "longitude": "7.33294000" + }, + { + "id": "136820", + "name": "Capriglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00355000", + "longitude": "8.00893000" + }, + { + "id": "136829", + "name": "Caraglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41725000", + "longitude": "7.43281000" + }, + { + "id": "136830", + "name": "Caramagna Piemonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78224000", + "longitude": "7.73943000" + }, + { + "id": "136842", + "name": "Caravino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39950000", + "longitude": "7.96020000" + }, + { + "id": "136845", + "name": "Carbonara Scrivia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84915000", + "longitude": "8.86975000" + }, + { + "id": "136856", + "name": "Carcoforo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90858000", + "longitude": "8.04967000" + }, + { + "id": "136863", + "name": "Cardè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74444000", + "longitude": "7.47762000" + }, + { + "id": "136865", + "name": "Carema", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58401000", + "longitude": "7.80879000" + }, + { + "id": "136867", + "name": "Carentino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82885000", + "longitude": "8.47134000" + }, + { + "id": "136869", + "name": "Caresana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22142000", + "longitude": "8.50480000" + }, + { + "id": "136870", + "name": "Caresanablot", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35736000", + "longitude": "8.39203000" + }, + { + "id": "136871", + "name": "Carezzano Maggiore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80705000", + "longitude": "8.90055000" + }, + { + "id": "136877", + "name": "Carignano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90599000", + "longitude": "7.67253000" + }, + { + "id": "136882", + "name": "Carisio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41017000", + "longitude": "8.19962000" + }, + { + "id": "136890", + "name": "Carmagnola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84963000", + "longitude": "7.72032000" + }, + { + "id": "136911", + "name": "Carpeneto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67835000", + "longitude": "8.60555000" + }, + { + "id": "136916", + "name": "Carpignano Sesia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53341000", + "longitude": "8.41734000" + }, + { + "id": "136935", + "name": "Carrù", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47967000", + "longitude": "7.87236000" + }, + { + "id": "136927", + "name": "Carrega Ligure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61879000", + "longitude": "9.17564000" + }, + { + "id": "136930", + "name": "Carrosio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.65776000", + "longitude": "8.83126000" + }, + { + "id": "136939", + "name": "Cartignano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47833000", + "longitude": "7.28573000" + }, + { + "id": "136941", + "name": "Cartosio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59024000", + "longitude": "8.42065000" + }, + { + "id": "136957", + "name": "Casal Cermelli", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83495000", + "longitude": "8.62495000" + }, + { + "id": "136964", + "name": "Casalbeltrame", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43806000", + "longitude": "8.46653000" + }, + { + "id": "136967", + "name": "Casalborgone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13045000", + "longitude": "7.94043000" + }, + { + "id": "136974", + "name": "Casale Corte Cerro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91545000", + "longitude": "8.41407000" + }, + { + "id": "136978", + "name": "Casale Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13338000", + "longitude": "8.45250000" + }, + { + "id": "136982", + "name": "Casaleggio Boiro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63355000", + "longitude": "8.73045000" + }, + { + "id": "136983", + "name": "Casaleggio Novara", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48793000", + "longitude": "8.49307000" + }, + { + "id": "136992", + "name": "Casalgrasso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81834000", + "longitude": "7.62498000" + }, + { + "id": "136997", + "name": "Casalino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35836000", + "longitude": "8.52393000" + }, + { + "id": "137002", + "name": "Casalnoceto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91326000", + "longitude": "8.98376000" + }, + { + "id": "137013", + "name": "Casalvolone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39966000", + "longitude": "8.46472000" + }, + { + "id": "137022", + "name": "Casanova Elvo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40020000", + "longitude": "8.29413000" + }, + { + "id": "137027", + "name": "Casapinta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61566000", + "longitude": "8.19592000" + }, + { + "id": "137036", + "name": "Casasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82734000", + "longitude": "9.00565000" + }, + { + "id": "137052", + "name": "Cascinette d'Ivrea", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48016000", + "longitude": "7.90562000" + }, + { + "id": "137057", + "name": "Caselette", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10975000", + "longitude": "7.48582000" + }, + { + "id": "137062", + "name": "Caselle Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17458000", + "longitude": "7.64290000" + }, + { + "id": "137090", + "name": "Casorzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02165000", + "longitude": "8.33843000" + }, + { + "id": "137098", + "name": "Cassano Spinola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76557000", + "longitude": "8.86228000" + }, + { + "id": "137108", + "name": "Cassinasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68977000", + "longitude": "8.30345000" + }, + { + "id": "137109", + "name": "Cassine", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75166000", + "longitude": "8.52872000" + }, + { + "id": "137110", + "name": "Cassinelle-Concentrico", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60154000", + "longitude": "8.56345000" + }, + { + "id": "137118", + "name": "Castagneto Po", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15854000", + "longitude": "7.88639000" + }, + { + "id": "137119", + "name": "Castagnito", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75472000", + "longitude": "8.03195000" + }, + { + "id": "137123", + "name": "Castagnole delle Lanze", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74988000", + "longitude": "8.14966000" + }, + { + "id": "137121", + "name": "Castagnole Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95864000", + "longitude": "8.30507000" + }, + { + "id": "137122", + "name": "Castagnole Piemonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89814000", + "longitude": "7.56612000" + }, + { + "id": "137130", + "name": "Castel Boglione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72195000", + "longitude": "8.37994000" + }, + { + "id": "137148", + "name": "Castel Rocchero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71835000", + "longitude": "8.41534000" + }, + { + "id": "137184", + "name": "Castelceriolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91723000", + "longitude": "8.69384000" + }, + { + "id": "137190", + "name": "Casteldelfino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59002000", + "longitude": "7.07026000" + }, + { + "id": "137206", + "name": "Castell'Alfero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98505000", + "longitude": "8.22309000" + }, + { + "id": "137214", + "name": "Castellamonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38267000", + "longitude": "7.70886000" + }, + { + "id": "137218", + "name": "Castellania", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79845000", + "longitude": "8.93035000" + }, + { + "id": "137220", + "name": "Castellar", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62123000", + "longitude": "7.43743000" + }, + { + "id": "137221", + "name": "Castellar Guidobono", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90483000", + "longitude": "8.94835000" + }, + { + "id": "137224", + "name": "Castellazzo Bormida", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84353000", + "longitude": "8.57900000" + }, + { + "id": "137225", + "name": "Castellazzo Novarese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51337000", + "longitude": "8.48693000" + }, + { + "id": "137228", + "name": "Castellero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92535000", + "longitude": "8.07383000" + }, + { + "id": "137231", + "name": "Castelletto Cervo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52136000", + "longitude": "8.22542000" + }, + { + "id": "137239", + "name": "Castelletto d'Erro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62597000", + "longitude": "8.39442000" + }, + { + "id": "137240", + "name": "Castelletto d'Orba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68455000", + "longitude": "8.70395000" + }, + { + "id": "137232", + "name": "Castelletto Merli", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07395000", + "longitude": "8.24013000" + }, + { + "id": "137233", + "name": "Castelletto Molina", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75125000", + "longitude": "8.43324000" + }, + { + "id": "137234", + "name": "Castelletto Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98115000", + "longitude": "8.56454000" + }, + { + "id": "137236", + "name": "Castelletto Sopra Ticino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72002000", + "longitude": "8.63362000" + }, + { + "id": "137237", + "name": "Castelletto Stura", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44383000", + "longitude": "7.63923000" + }, + { + "id": "137238", + "name": "Castelletto Uzzone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49527000", + "longitude": "8.18772000" + }, + { + "id": "137247", + "name": "Castellinaldo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77484000", + "longitude": "8.02974000" + }, + { + "id": "137248", + "name": "Castellino Tanaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42784000", + "longitude": "7.98124000" + }, + { + "id": "137259", + "name": "Castello di Annone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87944000", + "longitude": "8.31701000" + }, + { + "id": "137282", + "name": "Castelnuovo Belbo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80110000", + "longitude": "8.41236000" + }, + { + "id": "137285", + "name": "Castelnuovo Bormida", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74236000", + "longitude": "8.55060000" + }, + { + "id": "137287", + "name": "Castelnuovo Calcea", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78688000", + "longitude": "8.28421000" + }, + { + "id": "137299", + "name": "Castelnuovo di Ceva", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35363000", + "longitude": "8.12894000" + }, + { + "id": "137289", + "name": "Castelnuovo Don Bosco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04077000", + "longitude": "7.96389000" + }, + { + "id": "137291", + "name": "Castelnuovo Nigra", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43816000", + "longitude": "7.69461000" + }, + { + "id": "137294", + "name": "Castelnuovo Scrivia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97932000", + "longitude": "8.88246000" + }, + { + "id": "137317", + "name": "Castelspina", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80615000", + "longitude": "8.58315000" + }, + { + "id": "137341", + "name": "Castiglione Falletto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62254000", + "longitude": "7.97534000" + }, + { + "id": "137345", + "name": "Castiglione Tinella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72534000", + "longitude": "8.19014000" + }, + { + "id": "137346", + "name": "Castiglione Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11905000", + "longitude": "7.80712000" + }, + { + "id": "137361", + "name": "Castino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61784000", + "longitude": "8.18244000" + }, + { + "id": "137409", + "name": "Cavaglià", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40602000", + "longitude": "8.09163000" + }, + { + "id": "137406", + "name": "Cavaglietto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60217000", + "longitude": "8.50213000" + }, + { + "id": "137407", + "name": "Cavaglio D'Agogna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61317000", + "longitude": "8.48613000" + }, + { + "id": "137408", + "name": "Cavaglio-Spoccia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07108000", + "longitude": "8.63072000" + }, + { + "id": "137410", + "name": "Cavagnolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15175000", + "longitude": "8.04903000" + }, + { + "id": "137415", + "name": "Cavallerleone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74014000", + "longitude": "7.66393000" + }, + { + "id": "137416", + "name": "Cavallermaggiore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70639000", + "longitude": "7.68693000" + }, + { + "id": "137420", + "name": "Cavallirio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66227000", + "longitude": "8.39694000" + }, + { + "id": "137427", + "name": "Cavatore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63099000", + "longitude": "8.45276000" + }, + { + "id": "137441", + "name": "Cavour", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79286000", + "longitude": "7.37438000" + }, + { + "id": "137468", + "name": "Cella Monte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07405000", + "longitude": "8.39154000" + }, + { + "id": "137471", + "name": "Cellarengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86435000", + "longitude": "7.94533000" + }, + { + "id": "137473", + "name": "Celle Enomondo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85685000", + "longitude": "8.12373000" + }, + { + "id": "137481", + "name": "Cellio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75505000", + "longitude": "8.31185000" + }, + { + "id": "137495", + "name": "Centallo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50153000", + "longitude": "7.58783000" + }, + { + "id": "137509", + "name": "Ceppo Morelli", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97114000", + "longitude": "8.06688000" + }, + { + "id": "137514", + "name": "Cerano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40915000", + "longitude": "8.78351000" + }, + { + "id": "137522", + "name": "Cercenasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86204000", + "longitude": "7.49822000" + }, + { + "id": "137535", + "name": "Ceres", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31336000", + "longitude": "7.38961000" + }, + { + "id": "137536", + "name": "Ceresane-Curanuova", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52435000", + "longitude": "8.00708000" + }, + { + "id": "137539", + "name": "Cereseto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08685000", + "longitude": "8.31817000" + }, + { + "id": "137540", + "name": "Ceresole Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79974000", + "longitude": "7.82243000" + }, + { + "id": "137541", + "name": "Ceresole Reale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43235000", + "longitude": "7.23506000" + }, + { + "id": "137561", + "name": "Cerreto Castello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56446000", + "longitude": "8.16082000" + }, + { + "id": "137567", + "name": "Cerreto d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05215000", + "longitude": "8.03513000" + }, + { + "id": "137562", + "name": "Cerreto Grue", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84255000", + "longitude": "8.93035000" + }, + { + "id": "137564", + "name": "Cerreto Langhe", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57484000", + "longitude": "8.09794000" + }, + { + "id": "137570", + "name": "Cerrina", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12135000", + "longitude": "8.21383000" + }, + { + "id": "137571", + "name": "Cerrione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46933000", + "longitude": "8.06840000" + }, + { + "id": "137573", + "name": "Cerro Tanaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87335000", + "longitude": "8.35874000" + }, + { + "id": "137585", + "name": "Cervasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38093000", + "longitude": "7.47123000" + }, + { + "id": "137586", + "name": "Cervatto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88297000", + "longitude": "8.16232000" + }, + { + "id": "137588", + "name": "Cervere", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63428000", + "longitude": "7.78884000" + }, + { + "id": "137603", + "name": "Cesana Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95340000", + "longitude": "6.79199000" + }, + { + "id": "137607", + "name": "Cesara", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83379000", + "longitude": "8.36777000" + }, + { + "id": "137619", + "name": "Cessole", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64877000", + "longitude": "8.24438000" + }, + { + "id": "137625", + "name": "Ceva", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38505000", + "longitude": "8.02769000" + }, + { + "id": "137636", + "name": "Cherasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64345000", + "longitude": "7.85818000" + }, + { + "id": "137640", + "name": "Chialamberto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36295000", + "longitude": "7.34363000" + }, + { + "id": "137647", + "name": "Chianocco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14854000", + "longitude": "7.16981000" + }, + { + "id": "137661", + "name": "Chiaverano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49886000", + "longitude": "7.90262000" + }, + { + "id": "137663", + "name": "Chieri", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01054000", + "longitude": "7.82133000" + }, + { + "id": "137667", + "name": "Chiesa di Macra", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48283000", + "longitude": "7.18062000" + }, + { + "id": "137669", + "name": "Chiesanuova", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41745000", + "longitude": "7.65552000" + }, + { + "id": "137678", + "name": "Chiomonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11909000", + "longitude": "6.98420000" + }, + { + "id": "137688", + "name": "Chiusa di Pesio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32588000", + "longitude": "7.67431000" + }, + { + "id": "137689", + "name": "Chiusa di San Michele", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10424000", + "longitude": "7.32711000" + }, + { + "id": "137692", + "name": "Chiusano d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98665000", + "longitude": "8.11853000" + }, + { + "id": "137699", + "name": "Chivasso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19093000", + "longitude": "7.88981000" + }, + { + "id": "137714", + "name": "Ciconio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33025000", + "longitude": "7.75852000" + }, + { + "id": "137715", + "name": "Cigliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30804000", + "longitude": "8.02316000" + }, + { + "id": "137716", + "name": "Cigliè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43653000", + "longitude": "7.92654000" + }, + { + "id": "137729", + "name": "Cinaglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97525000", + "longitude": "8.10003000" + }, + { + "id": "137738", + "name": "Cintano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42812000", + "longitude": "7.68827000" + }, + { + "id": "137742", + "name": "Cinzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09528000", + "longitude": "7.92427000" + }, + { + "id": "137749", + "name": "Ciriè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23486000", + "longitude": "7.60125000" + }, + { + "id": "137760", + "name": "Cissone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56314000", + "longitude": "8.03044000" + }, + { + "id": "137761", + "name": "Cisterna d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82525000", + "longitude": "8.00076000" + }, + { + "id": "137781", + "name": "Civiasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80786000", + "longitude": "8.29386000" + }, + { + "id": "137809", + "name": "Clavesana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48334000", + "longitude": "7.91084000" + }, + { + "id": "137810", + "name": "Claviere", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93922000", + "longitude": "6.75213000" + }, + { + "id": "137818", + "name": "Coassolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29838000", + "longitude": "7.46136000" + }, + { + "id": "137819", + "name": "Coassolo Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29775000", + "longitude": "7.46041000" + }, + { + "id": "137820", + "name": "Coazze", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05181000", + "longitude": "7.30063000" + }, + { + "id": "137821", + "name": "Coazzolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72824000", + "longitude": "8.14514000" + }, + { + "id": "137824", + "name": "Cocconato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08642000", + "longitude": "8.04019000" + }, + { + "id": "137839", + "name": "Coggiola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68640000", + "longitude": "8.18252000" + }, + { + "id": "137847", + "name": "Colazza", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79257000", + "longitude": "8.50033000" + }, + { + "id": "137883", + "name": "Collegno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07873000", + "longitude": "7.56735000" + }, + { + "id": "137891", + "name": "Colleretto Castelnuovo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42236000", + "longitude": "7.67981000" + }, + { + "id": "137892", + "name": "Colleretto Giacosa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43286000", + "longitude": "7.79852000" + }, + { + "id": "137905", + "name": "Collobiano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39665000", + "longitude": "8.34750000" + }, + { + "id": "137940", + "name": "Comignago", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71487000", + "longitude": "8.56403000" + }, + { + "id": "137964", + "name": "Condove", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11591000", + "longitude": "7.30859000" + }, + { + "id": "137970", + "name": "Coniolo Bricco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14816000", + "longitude": "8.37093000" + }, + { + "id": "137984", + "name": "Conzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02009000", + "longitude": "8.45554000" + }, + { + "id": "138016", + "name": "Corio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31222000", + "longitude": "7.53351000" + }, + { + "id": "138030", + "name": "Corneliano d'Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73614000", + "longitude": "7.95723000" + }, + { + "id": "138049", + "name": "Corsione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00095000", + "longitude": "8.14523000" + }, + { + "id": "138052", + "name": "Cortandone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95915000", + "longitude": "8.05843000" + }, + { + "id": "138053", + "name": "Cortanze", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01404000", + "longitude": "8.08879000" + }, + { + "id": "138054", + "name": "Cortazzone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97915000", + "longitude": "8.06123000" + }, + { + "id": "138061", + "name": "Cortemilia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58044000", + "longitude": "8.19367000" + }, + { + "id": "138066", + "name": "Cortiglione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82225000", + "longitude": "8.35796000" + }, + { + "id": "138083", + "name": "Cossano Belbo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66884000", + "longitude": "8.19864000" + }, + { + "id": "138084", + "name": "Cossano Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38776000", + "longitude": "7.99152000" + }, + { + "id": "138085", + "name": "Cossato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57032000", + "longitude": "8.18471000" + }, + { + "id": "138088", + "name": "Cossogno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96408000", + "longitude": "8.50962000" + }, + { + "id": "138090", + "name": "Cossombrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98976000", + "longitude": "8.13897000" + }, + { + "id": "138095", + "name": "Costa Vescovato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81615000", + "longitude": "8.92695000" + }, + { + "id": "138105", + "name": "Costanzana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23742000", + "longitude": "8.36943000" + }, + { + "id": "138109", + "name": "Costigliole d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78517000", + "longitude": "8.18405000" + }, + { + "id": "138110", + "name": "Costiglione Saluzzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56453000", + "longitude": "7.48543000" + }, + { + "id": "138124", + "name": "Crava", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43001000", + "longitude": "7.74493000" + }, + { + "id": "138125", + "name": "Cravagliana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84827000", + "longitude": "8.20182000" + }, + { + "id": "138126", + "name": "Cravanzana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57448000", + "longitude": "8.12731000" + }, + { + "id": "138127", + "name": "Craveggia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14124000", + "longitude": "8.48907000" + }, + { + "id": "138137", + "name": "Cremolino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63674000", + "longitude": "8.58584000" + }, + { + "id": "138141", + "name": "Crescentino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19941000", + "longitude": "8.08635000" + }, + { + "id": "138148", + "name": "Cressa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64762000", + "longitude": "8.50942000" + }, + { + "id": "138151", + "name": "Crevacuore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68548000", + "longitude": "8.24404000" + }, + { + "id": "138153", + "name": "Crevoladossola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14858000", + "longitude": "8.29742000" + }, + { + "id": "138158", + "name": "Crissolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69953000", + "longitude": "7.15602000" + }, + { + "id": "138162", + "name": "Crodo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21726000", + "longitude": "8.32238000" + }, + { + "id": "138172", + "name": "Crova", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33066000", + "longitude": "8.21083000" + }, + { + "id": "138178", + "name": "Cuccaro Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99365000", + "longitude": "8.45754000" + }, + { + "id": "138182", + "name": "Cuceglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35853000", + "longitude": "7.81588000" + }, + { + "id": "138187", + "name": "Cumiana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97629000", + "longitude": "7.37761000" + }, + { + "id": "138190", + "name": "Cuneo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39071000", + "longitude": "7.54828000" + }, + { + "id": "138193", + "name": "Cunico", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04050000", + "longitude": "8.09554000" + }, + { + "id": "138194", + "name": "Cuorgnè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39341000", + "longitude": "7.65015000" + }, + { + "id": "138200", + "name": "Cureggio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67487000", + "longitude": "8.45973000" + }, + { + "id": "138203", + "name": "Curino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62717000", + "longitude": "8.23622000" + }, + { + "id": "138207", + "name": "Cursolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09858000", + "longitude": "8.56822000" + }, + { + "id": "138246", + "name": "Demonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31646000", + "longitude": "7.29808000" + }, + { + "id": "138247", + "name": "Denice", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59884000", + "longitude": "8.33315000" + }, + { + "id": "138250", + "name": "Dernice", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76660000", + "longitude": "9.05001000" + }, + { + "id": "138254", + "name": "Desana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26915000", + "longitude": "8.35777000" + }, + { + "id": "138264", + "name": "Diano d'Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.65294000", + "longitude": "8.02704000" + }, + { + "id": "138271", + "name": "Divignano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66247000", + "longitude": "8.59987000" + }, + { + "id": "138276", + "name": "Dogliani", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53326000", + "longitude": "7.94510000" + }, + { + "id": "138292", + "name": "Domodossola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11650000", + "longitude": "8.29313000" + }, + { + "id": "138297", + "name": "Donato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52626000", + "longitude": "7.90962000" + }, + { + "id": "138309", + "name": "Dormelletto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73627000", + "longitude": "8.56663000" + }, + { + "id": "138312", + "name": "Dorzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42606000", + "longitude": "8.09852000" + }, + { + "id": "138332", + "name": "Dronero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46476000", + "longitude": "7.36242000" + }, + { + "id": "138333", + "name": "Drubiaglio-Grangia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09552000", + "longitude": "7.41940000" + }, + { + "id": "138334", + "name": "Druento", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13306000", + "longitude": "7.57512000" + }, + { + "id": "138335", + "name": "Druogno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13421000", + "longitude": "8.43276000" + }, + { + "id": "138347", + "name": "Dusino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92566000", + "longitude": "7.97165000" + }, + { + "id": "138361", + "name": "Entracque", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24028000", + "longitude": "7.39847000" + }, + { + "id": "138363", + "name": "Envie", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68210000", + "longitude": "7.37206000" + }, + { + "id": "138390", + "name": "Exilles", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09754000", + "longitude": "6.92920000" + }, + { + "id": "138423", + "name": "Falmenta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07309000", + "longitude": "8.58944000" + }, + { + "id": "138439", + "name": "Fara Novarese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55440000", + "longitude": "8.45664000" + }, + { + "id": "138446", + "name": "Farigliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51204000", + "longitude": "7.91424000" + }, + { + "id": "138457", + "name": "Faule", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80624000", + "longitude": "7.58512000" + }, + { + "id": "138460", + "name": "Favari-Avatanei", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91235000", + "longitude": "7.79950000" + }, + { + "id": "138463", + "name": "Favria", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33099000", + "longitude": "7.68834000" + }, + { + "id": "138465", + "name": "Feisoglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54374000", + "longitude": "8.10494000" + }, + { + "id": "138467", + "name": "Feletto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30336000", + "longitude": "7.74481000" + }, + { + "id": "138471", + "name": "Felizzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89935000", + "longitude": "8.43584000" + }, + { + "id": "138477", + "name": "Fenestrelle", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03594000", + "longitude": "7.04941000" + }, + { + "id": "138494", + "name": "Ferrere", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87605000", + "longitude": "7.99421000" + }, + { + "id": "138495", + "name": "Ferriera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08382000", + "longitude": "7.43017000" + }, + { + "id": "138500", + "name": "Fiano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21631000", + "longitude": "7.52603000" + }, + { + "id": "138540", + "name": "Fiorano Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46776000", + "longitude": "7.83372000" + }, + { + "id": "138561", + "name": "Fleccia-Chianavasso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94670000", + "longitude": "7.21474000" + }, + { + "id": "138570", + "name": "Fobello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89002000", + "longitude": "8.15799000" + }, + { + "id": "138576", + "name": "Foglizzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27361000", + "longitude": "7.82087000" + }, + { + "id": "138599", + "name": "Fontanella-Ozino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61963000", + "longitude": "8.16927000" + }, + { + "id": "138602", + "name": "Fontaneto D'Agogna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64347000", + "longitude": "8.47879000" + }, + { + "id": "138603", + "name": "Fontanetto Po", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19436000", + "longitude": "8.19206000" + }, + { + "id": "138605", + "name": "Fontanile", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75295000", + "longitude": "8.42134000" + }, + { + "id": "138634", + "name": "Formazza", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.37689000", + "longitude": "8.42571000" + }, + { + "id": "138641", + "name": "Formigliana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42926000", + "longitude": "8.29193000" + }, + { + "id": "138648", + "name": "Fornaci", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02816000", + "longitude": "7.59869000" + }, + { + "id": "138656", + "name": "Forno Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34287000", + "longitude": "7.58951000" + }, + { + "id": "138674", + "name": "Fossano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55077000", + "longitude": "7.71922000" + }, + { + "id": "138684", + "name": "Frabosa Soprana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29094000", + "longitude": "7.80353000" + }, + { + "id": "138685", + "name": "Frabosa Sottana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30233000", + "longitude": "7.79754000" + }, + { + "id": "138686", + "name": "Fraconalto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59105000", + "longitude": "8.87846000" + }, + { + "id": "138693", + "name": "Francavilla Bisio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73465000", + "longitude": "8.73125000" + }, + { + "id": "138706", + "name": "Frascaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82575000", + "longitude": "8.53127000" + }, + { + "id": "138712", + "name": "Frassinello Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03322000", + "longitude": "8.38666000" + }, + { + "id": "138713", + "name": "Frassineto Po", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13271000", + "longitude": "8.53525000" + }, + { + "id": "138714", + "name": "Frassinetto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43834000", + "longitude": "7.60886000" + }, + { + "id": "138715", + "name": "Frassino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57211000", + "longitude": "7.27536000" + }, + { + "id": "138726", + "name": "Frazione Chiesa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69405000", + "longitude": "8.21228000" + }, + { + "id": "138732", + "name": "Fresonara", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78295000", + "longitude": "8.68615000" + }, + { + "id": "138735", + "name": "Frinco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00405000", + "longitude": "8.17193000" + }, + { + "id": "138738", + "name": "Front", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27941000", + "longitude": "7.66425000" + }, + { + "id": "138743", + "name": "Frossasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92176000", + "longitude": "7.37125000" + }, + { + "id": "138744", + "name": "Frugarolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83924000", + "longitude": "8.68165000" + }, + { + "id": "138745", + "name": "Fubine", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96305000", + "longitude": "8.42814000" + }, + { + "id": "138766", + "name": "Gabbio-Cereda-Ramate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90959000", + "longitude": "8.42113000" + }, + { + "id": "138769", + "name": "Gabiano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15714000", + "longitude": "8.19469000" + }, + { + "id": "138780", + "name": "Gaglianico", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53718000", + "longitude": "8.07839000" + }, + { + "id": "138790", + "name": "Gaiola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33554000", + "longitude": "7.40896000" + }, + { + "id": "138804", + "name": "Galliate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47942000", + "longitude": "8.69815000" + }, + { + "id": "138825", + "name": "Gamalero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80850000", + "longitude": "8.54116000" + }, + { + "id": "138828", + "name": "Gambasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62950000", + "longitude": "7.34686000" + }, + { + "id": "138842", + "name": "Garadassi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75429000", + "longitude": "9.15393000" + }, + { + "id": "138844", + "name": "Garbagna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78045000", + "longitude": "8.99786000" + }, + { + "id": "138845", + "name": "Garbagna Novarese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38876000", + "longitude": "8.66124000" + }, + { + "id": "138853", + "name": "Garessio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20705000", + "longitude": "8.01778000" + }, + { + "id": "138854", + "name": "Gargallo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72877000", + "longitude": "8.42533000" + }, + { + "id": "138857", + "name": "Garino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97325000", + "longitude": "7.61728000" + }, + { + "id": "138863", + "name": "Garzigliana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83724000", + "longitude": "7.37442000" + }, + { + "id": "138865", + "name": "Gassino Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12907000", + "longitude": "7.82934000" + }, + { + "id": "138868", + "name": "Gattico", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70717000", + "longitude": "8.52003000" + }, + { + "id": "138869", + "name": "Gattinara", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61309000", + "longitude": "8.36463000" + }, + { + "id": "138873", + "name": "Gavazzana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77585000", + "longitude": "8.88595000" + }, + { + "id": "138876", + "name": "Gavi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68627000", + "longitude": "8.80717000" + }, + { + "id": "138900", + "name": "Genola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59053000", + "longitude": "7.66114000" + }, + { + "id": "138910", + "name": "Gerbido", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04449000", + "longitude": "7.61408000" + }, + { + "id": "138911", + "name": "Gerbole", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00115000", + "longitude": "7.50670000" + }, + { + "id": "138912", + "name": "Gerbole-Zucche", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98605000", + "longitude": "7.51671000" + }, + { + "id": "138916", + "name": "Germagnano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26317000", + "longitude": "7.46886000" + }, + { + "id": "138917", + "name": "Germagno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89257000", + "longitude": "8.38772000" + }, + { + "id": "138930", + "name": "Ghemme", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59863000", + "longitude": "8.42013000" + }, + { + "id": "138932", + "name": "Ghiare-Madonna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80770000", + "longitude": "8.37404000" + }, + { + "id": "138933", + "name": "Ghiffa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95298000", + "longitude": "8.60430000" + }, + { + "id": "138936", + "name": "Ghislarengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52856000", + "longitude": "8.38514000" + }, + { + "id": "138939", + "name": "Giaglione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13919000", + "longitude": "7.01534000" + }, + { + "id": "138947", + "name": "Giarole", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06148000", + "longitude": "8.56730000" + }, + { + "id": "138952", + "name": "Giaveno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04435000", + "longitude": "7.34722000" + }, + { + "id": "138955", + "name": "Gifflenga", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49306000", + "longitude": "8.23223000" + }, + { + "id": "138959", + "name": "Gignese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86396000", + "longitude": "8.50943000" + }, + { + "id": "139002", + "name": "Givoletto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16225000", + "longitude": "7.49642000" + }, + { + "id": "139023", + "name": "Gonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99519000", + "longitude": "8.64982000" + }, + { + "id": "139042", + "name": "Gorzegno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51236000", + "longitude": "8.13480000" + }, + { + "id": "139045", + "name": "Gottasecca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46014000", + "longitude": "8.16754000" + }, + { + "id": "139047", + "name": "Govone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80445000", + "longitude": "8.09404000" + }, + { + "id": "139048", + "name": "Gozzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74273000", + "longitude": "8.43659000" + }, + { + "id": "139055", + "name": "Graglia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55800000", + "longitude": "7.97899000" + }, + { + "id": "139059", + "name": "Grana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99835000", + "longitude": "8.29944000" + }, + { + "id": "139067", + "name": "Granozzo con Monticello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36016000", + "longitude": "8.57334000" + }, + { + "id": "139080", + "name": "Gravellona Toce", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92859000", + "longitude": "8.43209000" + }, + { + "id": "139081", + "name": "Gravere", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12534000", + "longitude": "7.01751000" + }, + { + "id": "139085", + "name": "Grazzano Badoglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03996000", + "longitude": "8.31105000" + }, + { + "id": "139087", + "name": "Greggio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45148000", + "longitude": "8.38494000" + }, + { + "id": "139088", + "name": "Gremiasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79625000", + "longitude": "9.10686000" + }, + { + "id": "139099", + "name": "Grignasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67982000", + "longitude": "8.34442000" + }, + { + "id": "139102", + "name": "Grinzane Cavour", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.65334000", + "longitude": "7.99504000" + }, + { + "id": "139107", + "name": "Grognardo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63034000", + "longitude": "8.49265000" + }, + { + "id": "139110", + "name": "Grondona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69645000", + "longitude": "8.96546000" + }, + { + "id": "139115", + "name": "Groscavallo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36805000", + "longitude": "7.25801000" + }, + { + "id": "139119", + "name": "Grosso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25645000", + "longitude": "7.55732000" + }, + { + "id": "139134", + "name": "Grugliasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06516000", + "longitude": "7.57954000" + }, + { + "id": "139154", + "name": "Guardabosone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70187000", + "longitude": "8.24932000" + }, + { + "id": "139167", + "name": "Guarene", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74004000", + "longitude": "8.03514000" + }, + { + "id": "139172", + "name": "Guazzora", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01392000", + "longitude": "8.84822000" + }, + { + "id": "139183", + "name": "Gurro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08498000", + "longitude": "8.56772000" + }, + { + "id": "139192", + "name": "Igliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44294000", + "longitude": "8.01334000" + }, + { + "id": "139204", + "name": "Incisa Scapaccino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80805000", + "longitude": "8.37584000" + }, + { + "id": "139208", + "name": "Ingria", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46650000", + "longitude": "7.57119000" + }, + { + "id": "139209", + "name": "Intragna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99468000", + "longitude": "8.57392000" + }, + { + "id": "139217", + "name": "Inverso Pinasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94564000", + "longitude": "7.21841000" + }, + { + "id": "139219", + "name": "Invorio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75679000", + "longitude": "8.48741000" + }, + { + "id": "139224", + "name": "Isasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58763000", + "longitude": "7.38162000" + }, + { + "id": "139242", + "name": "Isola d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83315000", + "longitude": "8.18024000" + }, + { + "id": "139240", + "name": "Isola Sant'Antonio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03019000", + "longitude": "8.84928000" + }, + { + "id": "139252", + "name": "Isolabella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90645000", + "longitude": "7.90903000" + }, + { + "id": "139261", + "name": "Issiglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44626000", + "longitude": "7.75322000" + }, + { + "id": "139271", + "name": "Ivrea", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46723000", + "longitude": "7.87617000" + }, + { + "id": "139289", + "name": "La Cassa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18035000", + "longitude": "7.51632000" + }, + { + "id": "139292", + "name": "La Loggia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95495000", + "longitude": "7.66864000" + }, + { + "id": "139297", + "name": "La Morra", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63790000", + "longitude": "7.93078000" + }, + { + "id": "139309", + "name": "La Villa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26713000", + "longitude": "7.43109000" + }, + { + "id": "139325", + "name": "Lagnasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62504000", + "longitude": "7.55483000" + }, + { + "id": "139351", + "name": "Lamporo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23092000", + "longitude": "8.09846000" + }, + { + "id": "139356", + "name": "Landiona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49703000", + "longitude": "8.42224000" + }, + { + "id": "139362", + "name": "Lanvario", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63970000", + "longitude": "8.19856000" + }, + { + "id": "139365", + "name": "Lanzo Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27657000", + "longitude": "7.48235000" + }, + { + "id": "139402", + "name": "Lauriano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15989000", + "longitude": "7.99474000" + }, + { + "id": "139439", + "name": "Leini", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18275000", + "longitude": "7.71422000" + }, + { + "id": "139441", + "name": "Lemie", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22866000", + "longitude": "7.29248000" + }, + { + "id": "139449", + "name": "Lenta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55691000", + "longitude": "8.38402000" + }, + { + "id": "139461", + "name": "Lequio Berria", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60584000", + "longitude": "8.09814000" + }, + { + "id": "139462", + "name": "Lequio Tanaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55994000", + "longitude": "7.88214000" + }, + { + "id": "139465", + "name": "Lerma", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63577000", + "longitude": "8.71323000" + }, + { + "id": "139466", + "name": "Lesa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82066000", + "longitude": "8.55964000" + }, + { + "id": "139467", + "name": "Lesegno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40110000", + "longitude": "7.96943000" + }, + { + "id": "139471", + "name": "Lesna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05418000", + "longitude": "7.62031000" + }, + { + "id": "139472", + "name": "Lessolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47794000", + "longitude": "7.81576000" + }, + { + "id": "139473", + "name": "Lessona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58693000", + "longitude": "8.19433000" + }, + { + "id": "139487", + "name": "Levice", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53824000", + "longitude": "8.15504000" + }, + { + "id": "139489", + "name": "Levone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31665000", + "longitude": "7.60632000" + }, + { + "id": "139510", + "name": "Lignana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28606000", + "longitude": "8.34393000" + }, + { + "id": "139525", + "name": "Limone Piemonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20091000", + "longitude": "7.57861000" + }, + { + "id": "139542", + "name": "Lisio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30713000", + "longitude": "7.97874000" + }, + { + "id": "139544", + "name": "Litta Parodi-Cascinagrossa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87336000", + "longitude": "8.71246000" + }, + { + "id": "139545", + "name": "Livera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61239000", + "longitude": "8.10571000" + }, + { + "id": "139552", + "name": "Livorno Ferraris", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28271000", + "longitude": "8.07780000" + }, + { + "id": "139558", + "name": "Loazzolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66904000", + "longitude": "8.25844000" + }, + { + "id": "139559", + "name": "Locana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41419000", + "longitude": "7.45712000" + }, + { + "id": "139580", + "name": "Lombardore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23580000", + "longitude": "7.73703000" + }, + { + "id": "139581", + "name": "Lombriasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84094000", + "longitude": "7.63593000" + }, + { + "id": "139602", + "name": "Loranzè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44269000", + "longitude": "7.81328000" + }, + { + "id": "139605", + "name": "Loreglia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90687000", + "longitude": "8.37132000" + }, + { + "id": "139625", + "name": "Lozzolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61894000", + "longitude": "8.32284000" + }, + { + "id": "139626", + "name": "Lu", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00184000", + "longitude": "8.48561000" + }, + { + "id": "139646", + "name": "Lugnacco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44506000", + "longitude": "7.78212000" + }, + { + "id": "139654", + "name": "Lumellogno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40801000", + "longitude": "8.58787000" + }, + { + "id": "139672", + "name": "Luserna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80745000", + "longitude": "7.24579000" + }, + { + "id": "139673", + "name": "Lusernetta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80314000", + "longitude": "7.24672000" + }, + { + "id": "139677", + "name": "Lusigliè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31845000", + "longitude": "7.76462000" + }, + { + "id": "139695", + "name": "Macello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85114000", + "longitude": "7.39802000" + }, + { + "id": "139704", + "name": "Macra", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50013000", + "longitude": "7.17952000" + }, + { + "id": "139705", + "name": "Macugnaga", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96929000", + "longitude": "7.96783000" + }, + { + "id": "139710", + "name": "Madonna del Sasso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79217000", + "longitude": "8.36952000" + }, + { + "id": "139718", + "name": "Maggiora", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68937000", + "longitude": "8.42233000" + }, + { + "id": "139723", + "name": "Magliano Alfieri", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76924000", + "longitude": "8.07014000" + }, + { + "id": "139724", + "name": "Magliano Alpi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45808000", + "longitude": "7.81926000" + }, + { + "id": "139733", + "name": "Maglione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34666000", + "longitude": "8.01332000" + }, + { + "id": "139734", + "name": "Maglione-Crosa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60297000", + "longitude": "8.14937000" + }, + { + "id": "139737", + "name": "Magnano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46336000", + "longitude": "8.00302000" + }, + { + "id": "139762", + "name": "Malesco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12800000", + "longitude": "8.49801000" + }, + { + "id": "139777", + "name": "Malvicino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55934000", + "longitude": "8.41315000" + }, + { + "id": "139787", + "name": "Mandello Vitta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49567000", + "longitude": "8.45983000" + }, + { + "id": "139790", + "name": "Mandrogne", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86308000", + "longitude": "8.74676000" + }, + { + "id": "139797", + "name": "Mango", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68812000", + "longitude": "8.14922000" + }, + { + "id": "139805", + "name": "Manta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61583000", + "longitude": "7.48703000" + }, + { + "id": "139816", + "name": "Mappano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14833000", + "longitude": "7.70778000" + }, + { + "id": "139825", + "name": "Marano Ticino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62783000", + "longitude": "8.63155000" + }, + { + "id": "139831", + "name": "Maranzana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76035000", + "longitude": "8.47845000" + }, + { + "id": "139857", + "name": "Marene", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66113000", + "longitude": "7.73436000" + }, + { + "id": "139859", + "name": "Marentino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05368000", + "longitude": "7.87609000" + }, + { + "id": "139861", + "name": "Maretto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94485000", + "longitude": "8.03413000" + }, + { + "id": "139862", + "name": "Margarita", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40343000", + "longitude": "7.68493000" + }, + { + "id": "139907", + "name": "Marmora", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45833000", + "longitude": "7.09402000" + }, + { + "id": "139909", + "name": "Marocchi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94201000", + "longitude": "7.81888000" + }, + { + "id": "139918", + "name": "Marsaglia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.45284000", + "longitude": "7.97994000" + }, + { + "id": "139935", + "name": "Martiniana Po", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62723000", + "longitude": "7.36282000" + }, + { + "id": "139957", + "name": "Masera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13888000", + "longitude": "8.32526000" + }, + { + "id": "139962", + "name": "Masio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86965000", + "longitude": "8.40774000" + }, + { + "id": "139981", + "name": "Massazza", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49183000", + "longitude": "8.16495000" + }, + { + "id": "139982", + "name": "Massello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95874000", + "longitude": "7.05671000" + }, + { + "id": "139984", + "name": "Masserano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59536000", + "longitude": "8.22197000" + }, + { + "id": "139989", + "name": "Massino Visconti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82417000", + "longitude": "8.54133000" + }, + { + "id": "139990", + "name": "Massiola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91247000", + "longitude": "8.32012000" + }, + { + "id": "139995", + "name": "Mathi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25515000", + "longitude": "7.54202000" + }, + { + "id": "140000", + "name": "Mattie", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11814000", + "longitude": "7.11511000" + }, + { + "id": "140010", + "name": "Mazze", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30025000", + "longitude": "7.93272000" + }, + { + "id": "140014", + "name": "Meana di Susa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12204000", + "longitude": "7.06471000" + }, + { + "id": "140032", + "name": "Meina", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79123000", + "longitude": "8.53761000" + }, + { + "id": "140036", + "name": "Melazzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64394000", + "longitude": "8.42495000" + }, + { + "id": "140054", + "name": "Melle", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56197000", + "longitude": "7.31948000" + }, + { + "id": "140067", + "name": "Merana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51884000", + "longitude": "8.29824000" + }, + { + "id": "140080", + "name": "Mercenasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36002000", + "longitude": "7.88013000" + }, + { + "id": "140084", + "name": "Mergozzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96229000", + "longitude": "8.45403000" + }, + { + "id": "140103", + "name": "Meugliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49026000", + "longitude": "7.77942000" + }, + { + "id": "140107", + "name": "Mezzana Mortigliengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62657000", + "longitude": "8.18952000" + }, + { + "id": "140117", + "name": "Mezzenile", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29485000", + "longitude": "7.39561000" + }, + { + "id": "140124", + "name": "Mezzomerico", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61991000", + "longitude": "8.60616000" + }, + { + "id": "140125", + "name": "Miagliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61346000", + "longitude": "8.04472000" + }, + { + "id": "140128", + "name": "Miasino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80197000", + "longitude": "8.42972000" + }, + { + "id": "140129", + "name": "Miazzina", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97566000", + "longitude": "8.52308000" + }, + { + "id": "140143", + "name": "Milanere", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10436000", + "longitude": "7.43373000" + }, + { + "id": "140170", + "name": "Mirabello Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03496000", + "longitude": "8.52385000" + }, + { + "id": "140186", + "name": "Moasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76355000", + "longitude": "8.27834000" + }, + { + "id": "140208", + "name": "Moiola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32113000", + "longitude": "7.38973000" + }, + { + "id": "140210", + "name": "Molare", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61807000", + "longitude": "8.59960000" + }, + { + "id": "140222", + "name": "Molino dei Torti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02426000", + "longitude": "8.89365000" + }, + { + "id": "140229", + "name": "Mollia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81667000", + "longitude": "8.03031000" + }, + { + "id": "140234", + "name": "Mombaldone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57025000", + "longitude": "8.33302000" + }, + { + "id": "140235", + "name": "Mombarcaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46764000", + "longitude": "8.08824000" + }, + { + "id": "140237", + "name": "Mombaruzzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77145000", + "longitude": "8.44824000" + }, + { + "id": "140238", + "name": "Mombasiglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36663000", + "longitude": "7.96794000" + }, + { + "id": "140241", + "name": "Mombello di Torino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04575000", + "longitude": "7.92083000" + }, + { + "id": "140240", + "name": "Mombello Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13285000", + "longitude": "8.25033000" + }, + { + "id": "140242", + "name": "Mombercelli", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81785000", + "longitude": "8.29474000" + }, + { + "id": "140244", + "name": "Momo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57424000", + "longitude": "8.55390000" + }, + { + "id": "140245", + "name": "Mompantero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14744000", + "longitude": "7.04301000" + }, + { + "id": "140247", + "name": "Momperone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83845000", + "longitude": "9.03425000" + }, + { + "id": "140249", + "name": "Monale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93755000", + "longitude": "8.07243000" + }, + { + "id": "140252", + "name": "Monastero Bormida", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64854000", + "longitude": "8.32664000" + }, + { + "id": "140253", + "name": "Monastero di Lanzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30185000", + "longitude": "7.43971000" + }, + { + "id": "140254", + "name": "Monastero di Vasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34033000", + "longitude": "7.82264000" + }, + { + "id": "140255", + "name": "Monasterolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23549000", + "longitude": "7.50821000" + }, + { + "id": "140257", + "name": "Monasterolo Casotto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32823000", + "longitude": "7.94324000" + }, + { + "id": "140259", + "name": "Monasterolo di Savigliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68634000", + "longitude": "7.61953000" + }, + { + "id": "140262", + "name": "Moncalieri", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99940000", + "longitude": "7.68236000" + }, + { + "id": "140263", + "name": "Moncalvo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05057000", + "longitude": "8.26277000" + }, + { + "id": "140264", + "name": "Moncenisio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20404000", + "longitude": "6.98461000" + }, + { + "id": "140265", + "name": "Moncestino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15465000", + "longitude": "8.16143000" + }, + { + "id": "140266", + "name": "Monchiero Borgonuovo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57054000", + "longitude": "7.92024000" + }, + { + "id": "140269", + "name": "Moncrivello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33236000", + "longitude": "7.99552000" + }, + { + "id": "140271", + "name": "Moncucco Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06738000", + "longitude": "7.93246000" + }, + { + "id": "140275", + "name": "Mondovì", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39603000", + "longitude": "7.81764000" + }, + { + "id": "140278", + "name": "Monesiglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46550000", + "longitude": "8.11915000" + }, + { + "id": "140281", + "name": "Monforte d'Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58271000", + "longitude": "7.96793000" + }, + { + "id": "140283", + "name": "Mongardino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84915000", + "longitude": "8.21906000" + }, + { + "id": "140286", + "name": "Mongiardino Ligure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63443000", + "longitude": "9.06462000" + }, + { + "id": "140289", + "name": "Mongrando", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52826000", + "longitude": "8.00712000" + }, + { + "id": "140294", + "name": "Monleale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88435000", + "longitude": "8.97395000" + }, + { + "id": "140304", + "name": "Montabone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69875000", + "longitude": "8.39064000" + }, + { + "id": "140305", + "name": "Montacuto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76645000", + "longitude": "9.10496000" + }, + { + "id": "140306", + "name": "Montafia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98925000", + "longitude": "8.02463000" + }, + { + "id": "140320", + "name": "Montaldeo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66715000", + "longitude": "8.73015000" + }, + { + "id": "140321", + "name": "Montaldo Bormida", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68265000", + "longitude": "8.58785000" + }, + { + "id": "140325", + "name": "Montaldo di Mondovì", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32173000", + "longitude": "7.86714000" + }, + { + "id": "140322", + "name": "Montaldo Roero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76834000", + "longitude": "7.92483000" + }, + { + "id": "140323", + "name": "Montaldo Scarampi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83035000", + "longitude": "8.25904000" + }, + { + "id": "140324", + "name": "Montaldo Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06535000", + "longitude": "7.85023000" + }, + { + "id": "140328", + "name": "Montalenghe", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33666000", + "longitude": "7.83794000" + }, + { + "id": "140331", + "name": "Montalto Dora", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48993000", + "longitude": "7.86253000" + }, + { + "id": "140339", + "name": "Montanaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23274000", + "longitude": "7.85492000" + }, + { + "id": "140341", + "name": "Montanera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.46223000", + "longitude": "7.66563000" + }, + { + "id": "140347", + "name": "Montariolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99575000", + "longitude": "8.77539000" + }, + { + "id": "140591", + "name": "Montà", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81474000", + "longitude": "7.95477000" + }, + { + "id": "140403", + "name": "Montecastello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94945000", + "longitude": "8.68575000" + }, + { + "id": "140414", + "name": "Montechiaro d'Acqui", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59444000", + "longitude": "8.37865000" + }, + { + "id": "140415", + "name": "Montechiaro d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00701000", + "longitude": "8.11286000" + }, + { + "id": "140424", + "name": "Montecrestese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16448000", + "longitude": "8.32621000" + }, + { + "id": "140453", + "name": "Montegioco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84205000", + "longitude": "8.96275000" + }, + { + "id": "140459", + "name": "Montegrosso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82065000", + "longitude": "8.23754000" + }, + { + "id": "140474", + "name": "Montelera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15429000", + "longitude": "7.44290000" + }, + { + "id": "140480", + "name": "Montelupo Albese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62151000", + "longitude": "8.04720000" + }, + { + "id": "140485", + "name": "Montemagno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98305000", + "longitude": "8.32534000" + }, + { + "id": "140486", + "name": "Montemale di Cuneo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43743000", + "longitude": "7.37533000" + }, + { + "id": "140489", + "name": "Montemarzino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84835000", + "longitude": "8.99365000" + }, + { + "id": "140524", + "name": "Monterosso Grana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40823000", + "longitude": "7.32293000" + }, + { + "id": "140536", + "name": "Montescheno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06658000", + "longitude": "8.23192000" + }, + { + "id": "140545", + "name": "Monteu da Po", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15031000", + "longitude": "8.01428000" + }, + { + "id": "140544", + "name": "Monteu Roero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78059000", + "longitude": "7.93383000" + }, + { + "id": "140552", + "name": "Montezemolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37703000", + "longitude": "8.14114000" + }, + { + "id": "140567", + "name": "Monticello d'Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71894000", + "longitude": "7.94263000" + }, + { + "id": "140572", + "name": "Montiglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06462000", + "longitude": "8.09878000" + }, + { + "id": "140598", + "name": "Morano sul Po", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16621000", + "longitude": "8.36674000" + }, + { + "id": "140599", + "name": "Moransengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11485000", + "longitude": "8.02523000" + }, + { + "id": "140603", + "name": "Morbello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60504000", + "longitude": "8.51075000" + }, + { + "id": "140611", + "name": "Moretta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76137000", + "longitude": "7.53632000" + }, + { + "id": "140621", + "name": "Moriondo Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03853000", + "longitude": "7.94086000" + }, + { + "id": "140625", + "name": "Mornese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63925000", + "longitude": "8.75615000" + }, + { + "id": "140630", + "name": "Morozzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42277000", + "longitude": "7.71006000" + }, + { + "id": "140638", + "name": "Morsasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66535000", + "longitude": "8.55085000" + }, + { + "id": "140653", + "name": "Mosso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65007000", + "longitude": "8.13762000" + }, + { + "id": "140654", + "name": "Mosso Santa Maria", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64958000", + "longitude": "8.13682000" + }, + { + "id": "140658", + "name": "Motta Dè Conti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19356000", + "longitude": "8.52094000" + }, + { + "id": "140667", + "name": "Mottalciata", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50019000", + "longitude": "8.21065000" + }, + { + "id": "140687", + "name": "Murazzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47334000", + "longitude": "8.01938000" + }, + { + "id": "140689", + "name": "Murello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75214000", + "longitude": "7.60093000" + }, + { + "id": "140691", + "name": "Murisengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08165000", + "longitude": "8.13554000" + }, + { + "id": "140705", + "name": "Mussotto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71766000", + "longitude": "8.03404000" + }, + { + "id": "140708", + "name": "Muzzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56076000", + "longitude": "7.98892000" + }, + { + "id": "140722", + "name": "Narzole", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59441000", + "longitude": "7.86765000" + }, + { + "id": "140734", + "name": "Nebbiuno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80774000", + "longitude": "8.52593000" + }, + { + "id": "140738", + "name": "Neive-Borgonovo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72397000", + "longitude": "8.11780000" + }, + { + "id": "140752", + "name": "Netro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54004000", + "longitude": "7.94695000" + }, + { + "id": "140756", + "name": "Neviglie", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69194000", + "longitude": "8.11684000" + }, + { + "id": "140759", + "name": "Nibbiola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37236000", + "longitude": "8.65674000" + }, + { + "id": "140762", + "name": "Nichelino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00031000", + "longitude": "7.65305000" + }, + { + "id": "140767", + "name": "Niella Belbo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51275000", + "longitude": "8.08036000" + }, + { + "id": "140768", + "name": "Niella Tanaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.40573000", + "longitude": "7.92794000" + }, + { + "id": "140774", + "name": "Nizza Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77416000", + "longitude": "8.35784000" + }, + { + "id": "140777", + "name": "Noasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45332000", + "longitude": "7.31494000" + }, + { + "id": "140798", + "name": "Nole", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24159000", + "longitude": "7.56983000" + }, + { + "id": "140800", + "name": "Nomaglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53616000", + "longitude": "7.86032000" + }, + { + "id": "140803", + "name": "None", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93645000", + "longitude": "7.54015000" + }, + { + "id": "140804", + "name": "Nonio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84577000", + "longitude": "8.37752000" + }, + { + "id": "140821", + "name": "Novalesa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19065000", + "longitude": "7.01416000" + }, + { + "id": "140822", + "name": "Novara", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44694000", + "longitude": "8.62118000" + }, + { + "id": "140830", + "name": "Novello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58882000", + "longitude": "7.92587000" + }, + { + "id": "140835", + "name": "Novi Ligure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76246000", + "longitude": "8.78700000" + }, + { + "id": "140841", + "name": "Nucetto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33963000", + "longitude": "8.05960000" + }, + { + "id": "140866", + "name": "Occhieppo Inferiore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55006000", + "longitude": "8.02102000" + }, + { + "id": "140867", + "name": "Occhieppo Superiore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56400000", + "longitude": "8.00618000" + }, + { + "id": "140869", + "name": "Occimiano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05991000", + "longitude": "8.50666000" + }, + { + "id": "140870", + "name": "Odalengo Grande", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10922000", + "longitude": "8.16748000" + }, + { + "id": "140871", + "name": "Odalengo Piccolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07165000", + "longitude": "8.20603000" + }, + { + "id": "140879", + "name": "Oggebbio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99088000", + "longitude": "8.64663000" + }, + { + "id": "140882", + "name": "Oglianico", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34154000", + "longitude": "7.69196000" + }, + { + "id": "140885", + "name": "Olcenengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36346000", + "longitude": "8.30983000" + }, + { + "id": "140886", + "name": "Oldenico", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40276000", + "longitude": "8.38103000" + }, + { + "id": "140887", + "name": "Oleggio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59674000", + "longitude": "8.64213000" + }, + { + "id": "140888", + "name": "Oleggio Castello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74887000", + "longitude": "8.52713000" + }, + { + "id": "140904", + "name": "Olivola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03725000", + "longitude": "8.36784000" + }, + { + "id": "140910", + "name": "Olmo Gentile", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58574000", + "longitude": "8.24694000" + }, + { + "id": "140918", + "name": "Omegna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88002000", + "longitude": "8.40665000" + }, + { + "id": "140922", + "name": "Oncino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67683000", + "longitude": "7.19032000" + }, + { + "id": "140939", + "name": "Orbassano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00547000", + "longitude": "7.53813000" + }, + { + "id": "140955", + "name": "Orio Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32883000", + "longitude": "7.85991000" + }, + { + "id": "140961", + "name": "Ormea", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.15586000", + "longitude": "7.92811000" + }, + { + "id": "140964", + "name": "Ornavasso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96795000", + "longitude": "8.41584000" + }, + { + "id": "140971", + "name": "Orsara Bormida", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69015000", + "longitude": "8.56275000" + }, + { + "id": "140978", + "name": "Orta San Giulio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79727000", + "longitude": "8.41437000" + }, + { + "id": "140999", + "name": "Osasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84944000", + "longitude": "7.34302000" + }, + { + "id": "141000", + "name": "Osasio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87144000", + "longitude": "7.60802000" + }, + { + "id": "141030", + "name": "Ostana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69263000", + "longitude": "7.18942000" + }, + { + "id": "141051", + "name": "Ottiglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05426000", + "longitude": "8.33980000" + }, + { + "id": "141054", + "name": "Oulx", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03641000", + "longitude": "6.83372000" + }, + { + "id": "141055", + "name": "Ovada", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63727000", + "longitude": "8.64196000" + }, + { + "id": "141057", + "name": "Oviglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86125000", + "longitude": "8.48774000" + }, + { + "id": "141061", + "name": "Ozegna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34801000", + "longitude": "7.74503000" + }, + { + "id": "141063", + "name": "Ozzano Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10592000", + "longitude": "8.37238000" + }, + { + "id": "141075", + "name": "Paderna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82148000", + "longitude": "8.89088000" + }, + { + "id": "141092", + "name": "Paesana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68332000", + "longitude": "7.27571000" + }, + { + "id": "58211", + "name": "Pagno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61173000", + "longitude": "7.42572000" + }, + { + "id": "58229", + "name": "Palazzo Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45962000", + "longitude": "7.97776000" + }, + { + "id": "58234", + "name": "Palazzolo Vercellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18554000", + "longitude": "8.23302000" + }, + { + "id": "58249", + "name": "Pallanza-Intra-Suna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93778000", + "longitude": "8.57088000" + }, + { + "id": "58250", + "name": "Pallanzeno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04202000", + "longitude": "8.25949000" + }, + { + "id": "58272", + "name": "Pamparato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27666000", + "longitude": "7.91432000" + }, + { + "id": "58273", + "name": "Pancalieri", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83344000", + "longitude": "7.58592000" + }, + { + "id": "58301", + "name": "Parella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43018000", + "longitude": "7.79128000" + }, + { + "id": "58304", + "name": "Pareto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51644000", + "longitude": "8.38185000" + }, + { + "id": "58309", + "name": "Parodi Ligure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66975000", + "longitude": "8.75865000" + }, + { + "id": "58310", + "name": "Paroldo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43204000", + "longitude": "8.07244000" + }, + { + "id": "58318", + "name": "Paruzzaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74818000", + "longitude": "8.51486000" + }, + { + "id": "58327", + "name": "Passerano Marmorito", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05585000", + "longitude": "8.01873000" + }, + { + "id": "58336", + "name": "Pasta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01131000", + "longitude": "7.55243000" + }, + { + "id": "58341", + "name": "Pasturana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75085000", + "longitude": "8.74925000" + }, + { + "id": "58358", + "name": "Pavarolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06665000", + "longitude": "7.83943000" + }, + { + "id": "58363", + "name": "Pavone Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44193000", + "longitude": "7.85294000" + }, + { + "id": "58368", + "name": "Pecco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45206000", + "longitude": "7.77742000" + }, + { + "id": "58369", + "name": "Pecetto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01760000", + "longitude": "7.75107000" + }, + { + "id": "58370", + "name": "Pecetto di Valenza", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98904000", + "longitude": "8.66996000" + }, + { + "id": "58391", + "name": "Pella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79722000", + "longitude": "8.38444000" + }, + { + "id": "58399", + "name": "Penango", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03295000", + "longitude": "8.25174000" + }, + { + "id": "58428", + "name": "Perletto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59934000", + "longitude": "8.21304000" + }, + { + "id": "58429", + "name": "Perlo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33183000", + "longitude": "8.08554000" + }, + { + "id": "58431", + "name": "Pernate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45958000", + "longitude": "8.67845000" + }, + { + "id": "58436", + "name": "Perosa Argentina", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95909000", + "longitude": "7.19167000" + }, + { + "id": "58437", + "name": "Perosa Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39706000", + "longitude": "7.83082000" + }, + { + "id": "58438", + "name": "Perrero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93849000", + "longitude": "7.11263000" + }, + { + "id": "58441", + "name": "Pertengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23606000", + "longitude": "8.41651000" + }, + { + "id": "58445", + "name": "Pertusio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35565000", + "longitude": "7.64152000" + }, + { + "id": "58471", + "name": "Pessinetto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28675000", + "longitude": "7.41531000" + }, + { + "id": "58472", + "name": "Pessione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96504000", + "longitude": "7.84115000" + }, + { + "id": "58489", + "name": "Pettenasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81657000", + "longitude": "8.40702000" + }, + { + "id": "58490", + "name": "Pettinengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61306000", + "longitude": "8.10422000" + }, + { + "id": "58495", + "name": "Peveragno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.32060000", + "longitude": "7.61859000" + }, + { + "id": "58497", + "name": "Pezzana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26152000", + "longitude": "8.48396000" + }, + { + "id": "58501", + "name": "Pezzolo Valle Uzzone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53874000", + "longitude": "8.19394000" + }, + { + "id": "58513", + "name": "Piana San Raffaele", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15290000", + "longitude": "7.85013000" + }, + { + "id": "58529", + "name": "Pianezza", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10420000", + "longitude": "7.55003000" + }, + { + "id": "58531", + "name": "Pianfei", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37203000", + "longitude": "7.71143000" + }, + { + "id": "58546", + "name": "Piano-Molini d'Isola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83194000", + "longitude": "8.18073000" + }, + { + "id": "58556", + "name": "Piasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56106000", + "longitude": "7.44420000" + }, + { + "id": "58558", + "name": "Piatto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58986000", + "longitude": "8.13532000" + }, + { + "id": "58564", + "name": "Piazza", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.38597000", + "longitude": "7.83163000" + }, + { + "id": "58586", + "name": "Piea", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02706000", + "longitude": "8.07146000" + }, + { + "id": "58587", + "name": "Piedicavallo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68986000", + "longitude": "7.95482000" + }, + { + "id": "58593", + "name": "Piedimulera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02408000", + "longitude": "8.25897000" + }, + { + "id": "58602", + "name": "Pietra Marazzi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94265000", + "longitude": "8.66854000" + }, + { + "id": "58623", + "name": "Pietraporzio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34352000", + "longitude": "7.03433000" + }, + { + "id": "58642", + "name": "Pieve Vergonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01298000", + "longitude": "8.26082000" + }, + { + "id": "58667", + "name": "Pila", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76997000", + "longitude": "8.08122000" + }, + { + "id": "58673", + "name": "Pinasca-Dubbione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94264000", + "longitude": "7.22912000" + }, + { + "id": "58675", + "name": "Pinerolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88534000", + "longitude": "7.33135000" + }, + { + "id": "58679", + "name": "Pino d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05745000", + "longitude": "7.98623000" + }, + { + "id": "58678", + "name": "Pino Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03955000", + "longitude": "7.77712000" + }, + { + "id": "58686", + "name": "Piobesi d'Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73444000", + "longitude": "7.97937000" + }, + { + "id": "58685", + "name": "Piobesi Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76667000", + "longitude": "7.61667000" + }, + { + "id": "58687", + "name": "Piode", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77059000", + "longitude": "8.05265000" + }, + { + "id": "58694", + "name": "Piossasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98802000", + "longitude": "7.46010000" + }, + { + "id": "58698", + "name": "Piovà Massaia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05515000", + "longitude": "8.05013000" + }, + { + "id": "58697", + "name": "Piovera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95845000", + "longitude": "8.73595000" + }, + { + "id": "58700", + "name": "Piozzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51384000", + "longitude": "7.89254000" + }, + { + "id": "58703", + "name": "Pisano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79567000", + "longitude": "8.51487000" + }, + { + "id": "58704", + "name": "Piscina", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91874000", + "longitude": "7.42532000" + }, + { + "id": "58722", + "name": "Piverone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44557000", + "longitude": "8.00745000" + }, + { + "id": "58738", + "name": "Pleyne", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58063000", + "longitude": "7.01712000" + }, + { + "id": "58742", + "name": "Pocapaglia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71524000", + "longitude": "7.88293000" + }, + { + "id": "58777", + "name": "Pogno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75806000", + "longitude": "8.38559000" + }, + { + "id": "58781", + "name": "Poirino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92047000", + "longitude": "7.84465000" + }, + { + "id": "58801", + "name": "Pollone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57976000", + "longitude": "8.00592000" + }, + { + "id": "58803", + "name": "Polonghera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80234000", + "longitude": "7.59572000" + }, + { + "id": "58809", + "name": "Pomaretto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15194000", + "longitude": "8.04661000" + }, + { + "id": "58811", + "name": "Pomaro Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06246000", + "longitude": "8.59604000" + }, + { + "id": "58813", + "name": "Pombia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65550000", + "longitude": "8.62846000" + }, + { + "id": "58823", + "name": "Ponderano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53846000", + "longitude": "8.05592000" + }, + { + "id": "58828", + "name": "Pont-Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42138000", + "longitude": "7.60024000" + }, + { + "id": "58865", + "name": "Pontechianale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62123000", + "longitude": "7.03002000" + }, + { + "id": "58867", + "name": "Pontecurone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95880000", + "longitude": "8.93289000" + }, + { + "id": "58879", + "name": "Pontestura", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14245000", + "longitude": "8.33324000" + }, + { + "id": "58882", + "name": "Ponti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62847000", + "longitude": "8.36461000" + }, + { + "id": "58896", + "name": "Ponzano Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08485000", + "longitude": "8.26553000" + }, + { + "id": "58899", + "name": "Ponzone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.58814000", + "longitude": "8.45935000" + }, + { + "id": "58913", + "name": "Portacomaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95665000", + "longitude": "8.25804000" + }, + { + "id": "58915", + "name": "Porte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88714000", + "longitude": "7.26982000" + }, + { + "id": "58951", + "name": "Portula", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67512000", + "longitude": "8.17244000" + }, + { + "id": "58964", + "name": "Postua", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71355000", + "longitude": "8.22853000" + }, + { + "id": "58983", + "name": "Pozzol Groppo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87806000", + "longitude": "9.02985000" + }, + { + "id": "58986", + "name": "Pozzolo Formigaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79925000", + "longitude": "8.78364000" + }, + { + "id": "58996", + "name": "Pradleves", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41786000", + "longitude": "7.28146000" + }, + { + "id": "58997", + "name": "Pragelato-Ruà", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01364000", + "longitude": "6.94161000" + }, + { + "id": "59001", + "name": "Prali", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88944000", + "longitude": "7.05131000" + }, + { + "id": "59002", + "name": "Pralormo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85976000", + "longitude": "7.90440000" + }, + { + "id": "59003", + "name": "Pralungo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58999000", + "longitude": "8.03976000" + }, + { + "id": "59006", + "name": "Pramollo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90814000", + "longitude": "7.19071000" + }, + { + "id": "59007", + "name": "Prarolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28149000", + "longitude": "8.47784000" + }, + { + "id": "59008", + "name": "Prarostino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86634000", + "longitude": "7.26762000" + }, + { + "id": "59009", + "name": "Prasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63938000", + "longitude": "8.55167000" + }, + { + "id": "59010", + "name": "Prascorsano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36721000", + "longitude": "7.61727000" + }, + { + "id": "59023", + "name": "Pratiglione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35275000", + "longitude": "7.59602000" + }, + { + "id": "59031", + "name": "Prato Sesia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65067000", + "longitude": "8.37293000" + }, + { + "id": "59038", + "name": "Pray", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67508000", + "longitude": "8.20951000" + }, + { + "id": "59039", + "name": "Prazzo Superiore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48297000", + "longitude": "7.05468000" + }, + { + "id": "59047", + "name": "Predosa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75049000", + "longitude": "8.65568000" + }, + { + "id": "59054", + "name": "Premeno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97818000", + "longitude": "8.59587000" + }, + { + "id": "59056", + "name": "Premia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26807000", + "longitude": "8.33830000" + }, + { + "id": "59059", + "name": "Premosello-Chiovenda", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00380000", + "longitude": "8.32973000" + }, + { + "id": "59074", + "name": "Priero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37604000", + "longitude": "8.09334000" + }, + { + "id": "59079", + "name": "Priocca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78624000", + "longitude": "8.06424000" + }, + { + "id": "59080", + "name": "Priola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24478000", + "longitude": "8.02149000" + }, + { + "id": "59107", + "name": "Provincia di Alessandria", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81667000", + "longitude": "8.70000000" + }, + { + "id": "59110", + "name": "Provincia di Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91667000", + "longitude": "8.16667000" + }, + { + "id": "59116", + "name": "Provincia di Biella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58713000", + "longitude": "8.08594000" + }, + { + "id": "59129", + "name": "Provincia di Cuneo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.51667000", + "longitude": "7.56667000" + }, + { + "id": "59152", + "name": "Provincia di Novara", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58533000", + "longitude": "8.57781000" + }, + { + "id": "59186", + "name": "Provincia di Vercelli", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33188000", + "longitude": "8.41415000" + }, + { + "id": "59104", + "name": "Provincia Verbano-Cusio-Ossola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93333000", + "longitude": "8.55000000" + }, + { + "id": "59192", + "name": "Prunetto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48894000", + "longitude": "8.14374000" + }, + { + "id": "59214", + "name": "Quagliuzzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42654000", + "longitude": "7.78101000" + }, + { + "id": "59216", + "name": "Quaranti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75095000", + "longitude": "8.44914000" + }, + { + "id": "59219", + "name": "Quaregna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58116000", + "longitude": "8.16372000" + }, + { + "id": "59220", + "name": "Quargnento", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94566000", + "longitude": "8.48821000" + }, + { + "id": "59221", + "name": "Quarna Sopra", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87307000", + "longitude": "8.37355000" + }, + { + "id": "59222", + "name": "Quarna Sotto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86917000", + "longitude": "8.36332000" + }, + { + "id": "59223", + "name": "Quarona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76044000", + "longitude": "8.26749000" + }, + { + "id": "59234", + "name": "Quassolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52294000", + "longitude": "7.83305000" + }, + { + "id": "59235", + "name": "Quattordio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89877000", + "longitude": "8.40495000" + }, + { + "id": "59243", + "name": "Quincinetto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56157000", + "longitude": "7.80834000" + }, + { + "id": "59248", + "name": "Quinto Vercellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37920000", + "longitude": "8.36210000" + }, + { + "id": "59257", + "name": "Racconigi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76598000", + "longitude": "7.67893000" + }, + { + "id": "59289", + "name": "Rassa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76821000", + "longitude": "8.01208000" + }, + { + "id": "59303", + "name": "Re", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13148000", + "longitude": "8.54569000" + }, + { + "id": "59308", + "name": "Reano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05217000", + "longitude": "7.42779000" + }, + { + "id": "59312", + "name": "Recetto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45965000", + "longitude": "8.43503000" + }, + { + "id": "59316", + "name": "Refrancore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93635000", + "longitude": "8.34084000" + }, + { + "id": "59340", + "name": "Revello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.65451000", + "longitude": "7.39026000" + }, + { + "id": "59342", + "name": "Revigliasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01589000", + "longitude": "7.73306000" + }, + { + "id": "59343", + "name": "Revigliasco d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85755000", + "longitude": "8.16044000" + }, + { + "id": "59361", + "name": "Ribordone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43255000", + "longitude": "7.50231000" + }, + { + "id": "59363", + "name": "Ricaldone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73235000", + "longitude": "8.46814000" + }, + { + "id": "59364", + "name": "Ricca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66127000", + "longitude": "8.04527000" + }, + { + "id": "59376", + "name": "Rifreddo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.65073000", + "longitude": "7.34642000" + }, + { + "id": "59382", + "name": "Rima", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88542000", + "longitude": "7.99864000" + }, + { + "id": "59383", + "name": "Rimasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86025000", + "longitude": "8.06412000" + }, + { + "id": "59384", + "name": "Rimella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90807000", + "longitude": "8.18222000" + }, + { + "id": "59414", + "name": "Rittana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35103000", + "longitude": "7.39843000" + }, + { + "id": "59415", + "name": "Riva", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89252000", + "longitude": "7.38189000" + }, + { + "id": "59417", + "name": "Riva Presso Chieri", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98338000", + "longitude": "7.87313000" + }, + { + "id": "59418", + "name": "Riva Valdobbia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83097000", + "longitude": "7.95661000" + }, + { + "id": "59421", + "name": "Rivalba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11669000", + "longitude": "7.88811000" + }, + { + "id": "59423", + "name": "Rivalta Bormida", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70975000", + "longitude": "8.55175000" + }, + { + "id": "59424", + "name": "Rivalta di Torino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03268000", + "longitude": "7.52042000" + }, + { + "id": "59427", + "name": "Rivara", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33042000", + "longitude": "7.64900000" + }, + { + "id": "59428", + "name": "Rivarolo Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32829000", + "longitude": "7.72110000" + }, + { + "id": "59431", + "name": "Rivarone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97686000", + "longitude": "8.71565000" + }, + { + "id": "59432", + "name": "Rivarossa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24954000", + "longitude": "7.71953000" + }, + { + "id": "59434", + "name": "Rive", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21364000", + "longitude": "8.41701000" + }, + { + "id": "59441", + "name": "Rivoli", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07073000", + "longitude": "7.51465000" + }, + { + "id": "59448", + "name": "Roapiana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34079000", + "longitude": "7.82329000" + }, + { + "id": "59449", + "name": "Roaschia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27023000", + "longitude": "7.45573000" + }, + { + "id": "59450", + "name": "Roascio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41714000", + "longitude": "8.02234000" + }, + { + "id": "59451", + "name": "Roasio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60457000", + "longitude": "8.28482000" + }, + { + "id": "59452", + "name": "Roata Rossi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44383000", + "longitude": "7.52572000" + }, + { + "id": "59453", + "name": "Roatto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95205000", + "longitude": "8.02693000" + }, + { + "id": "59454", + "name": "Robassomero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19841000", + "longitude": "7.56754000" + }, + { + "id": "59462", + "name": "Robella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10165000", + "longitude": "8.10193000" + }, + { + "id": "59463", + "name": "Robilante", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29288000", + "longitude": "7.51367000" + }, + { + "id": "59464", + "name": "Roburent", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30633000", + "longitude": "7.89224000" + }, + { + "id": "59465", + "name": "Rocca Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30870000", + "longitude": "7.57875000" + }, + { + "id": "59467", + "name": "Rocca Cigliè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.44523000", + "longitude": "7.95094000" + }, + { + "id": "59481", + "name": "Rocca d'Arazzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.87205000", + "longitude": "8.28464000" + }, + { + "id": "59468", + "name": "Rocca De' Baldi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.42363000", + "longitude": "7.76114000" + }, + { + "id": "59469", + "name": "Rocca Grimalda", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67145000", + "longitude": "8.64845000" + }, + { + "id": "59493", + "name": "Roccabruna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47453000", + "longitude": "7.34373000" + }, + { + "id": "59497", + "name": "Roccaforte Ligure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67780000", + "longitude": "9.02800000" + }, + { + "id": "59498", + "name": "Roccaforte Mondovì", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31721000", + "longitude": "7.74426000" + }, + { + "id": "59523", + "name": "Roccasparvera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34213000", + "longitude": "7.44153000" + }, + { + "id": "59527", + "name": "Roccaverano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59224000", + "longitude": "8.27214000" + }, + { + "id": "59529", + "name": "Roccavione", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31355000", + "longitude": "7.47845000" + }, + { + "id": "59536", + "name": "Rocchetta Belbo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63604000", + "longitude": "8.17534000" + }, + { + "id": "59537", + "name": "Rocchetta Ligure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70655000", + "longitude": "9.05046000" + }, + { + "id": "59540", + "name": "Rocchetta Palafea", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70744000", + "longitude": "8.34534000" + }, + { + "id": "59542", + "name": "Rocchetta Tanaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.85865000", + "longitude": "8.34564000" + }, + { + "id": "59545", + "name": "Roddi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67964000", + "longitude": "7.97544000" + }, + { + "id": "59546", + "name": "Roddino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57384000", + "longitude": "8.01914000" + }, + { + "id": "59548", + "name": "Rodello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62854000", + "longitude": "8.05684000" + }, + { + "id": "59568", + "name": "Roletto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92444000", + "longitude": "7.33232000" + }, + { + "id": "59571", + "name": "Romagnano Sesia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63279000", + "longitude": "8.38697000" + }, + { + "id": "59577", + "name": "Romano Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39925000", + "longitude": "7.86885000" + }, + { + "id": "59584", + "name": "Romentino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46296000", + "longitude": "8.71811000" + }, + { + "id": "59602", + "name": "Ronco Biellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57846000", + "longitude": "8.09072000" + }, + { + "id": "59604", + "name": "Ronco Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50081000", + "longitude": "7.54702000" + }, + { + "id": "59615", + "name": "Rondissone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24630000", + "longitude": "7.96426000" + }, + { + "id": "59616", + "name": "Ronsecco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25284000", + "longitude": "8.27749000" + }, + { + "id": "59620", + "name": "Roppolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42056000", + "longitude": "8.06972000" + }, + { + "id": "59622", + "name": "Rorà", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79214000", + "longitude": "7.19902000" + }, + { + "id": "59621", + "name": "Roreto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66932000", + "longitude": "7.83423000" + }, + { + "id": "59628", + "name": "Rosazza", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67576000", + "longitude": "7.97712000" + }, + { + "id": "59640", + "name": "Rosignano Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08055000", + "longitude": "8.39974000" + }, + { + "id": "59645", + "name": "Rossa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83327000", + "longitude": "8.12432000" + }, + { + "id": "59646", + "name": "Rossana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54470000", + "longitude": "7.43193000" + }, + { + "id": "59652", + "name": "Rosta", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06795000", + "longitude": "7.46512000" + }, + { + "id": "59666", + "name": "Roure", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00214000", + "longitude": "7.13161000" + }, + { + "id": "59668", + "name": "Rovasenda", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53866000", + "longitude": "8.31592000" + }, + { + "id": "59691", + "name": "Rubiana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13622000", + "longitude": "7.38439000" + }, + { + "id": "59695", + "name": "Rueglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46826000", + "longitude": "7.75462000" + }, + { + "id": "59697", + "name": "Ruffia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70598000", + "longitude": "7.60391000" + }, + { + "id": "59712", + "name": "Sabbia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85720000", + "longitude": "8.23580000" + }, + { + "id": "59724", + "name": "Sagliano Micca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62576000", + "longitude": "8.04332000" + }, + { + "id": "59740", + "name": "Sala Biellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50856000", + "longitude": "7.95800000" + }, + { + "id": "59744", + "name": "Sala Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07546000", + "longitude": "8.36119000" + }, + { + "id": "59749", + "name": "Salasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32556000", + "longitude": "8.26423000" + }, + { + "id": "59750", + "name": "Salassa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36175000", + "longitude": "7.68297000" + }, + { + "id": "59751", + "name": "Salbertrand", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07350000", + "longitude": "6.88744000" + }, + { + "id": "59754", + "name": "Sale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97932000", + "longitude": "8.80963000" + }, + { + "id": "59757", + "name": "Sale delle Langhe", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39523000", + "longitude": "8.08014000" + }, + { + "id": "59756", + "name": "Sale San Giovanni", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39914000", + "longitude": "8.07794000" + }, + { + "id": "59760", + "name": "Salerano Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45806000", + "longitude": "7.85112000" + }, + { + "id": "59766", + "name": "Sali Vercellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30986000", + "longitude": "8.32893000" + }, + { + "id": "59769", + "name": "Saliceto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41334000", + "longitude": "8.16864000" + }, + { + "id": "59778", + "name": "Salmour", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57556000", + "longitude": "7.79148000" + }, + { + "id": "59784", + "name": "Saluggia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23687000", + "longitude": "8.01460000" + }, + { + "id": "59785", + "name": "Salussola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44666000", + "longitude": "8.11100000" + }, + { + "id": "59786", + "name": "Saluzzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64671000", + "longitude": "7.49309000" + }, + { + "id": "59794", + "name": "Salza di Pinerolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94004000", + "longitude": "7.05241000" + }, + { + "id": "59808", + "name": "Sambuco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33510000", + "longitude": "7.07878000" + }, + { + "id": "59813", + "name": "Samone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44914000", + "longitude": "7.84198000" + }, + { + "id": "59815", + "name": "Sampeyre", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.57846000", + "longitude": "7.19039000" + }, + { + "id": "59827", + "name": "San Benedetto Belbo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49014000", + "longitude": "8.05784000" + }, + { + "id": "59834", + "name": "San Benigno Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22617000", + "longitude": "7.78427000" + }, + { + "id": "59835", + "name": "San Bernardino Verbano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95638000", + "longitude": "8.51922000" + }, + { + "id": "59855", + "name": "San Carlo Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24455000", + "longitude": "7.60572000" + }, + { + "id": "59876", + "name": "San Colombano Belmonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38225000", + "longitude": "7.62101000" + }, + { + "id": "59883", + "name": "San Cristoforo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69304000", + "longitude": "8.74939000" + }, + { + "id": "59887", + "name": "San Damiano d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83344000", + "longitude": "8.06353000" + }, + { + "id": "59885", + "name": "San Damiano Macra", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48848000", + "longitude": "7.25606000" + }, + { + "id": "59890", + "name": "San Defendente", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39088000", + "longitude": "7.49091000" + }, + { + "id": "59893", + "name": "San Didero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13544000", + "longitude": "7.21301000" + }, + { + "id": "59927", + "name": "San Francesco al Campo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22732000", + "longitude": "7.65479000" + }, + { + "id": "59936", + "name": "San Germano Chisone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90204000", + "longitude": "7.23662000" + }, + { + "id": "59937", + "name": "San Germano Vercellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35090000", + "longitude": "8.24717000" + }, + { + "id": "59945", + "name": "San Giacomo Vercellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49816000", + "longitude": "8.32673000" + }, + { + "id": "59948", + "name": "San Gillio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14050000", + "longitude": "7.53285000" + }, + { + "id": "59953", + "name": "San Giorgio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10778000", + "longitude": "8.41421000" + }, + { + "id": "59955", + "name": "San Giorgio Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33557000", + "longitude": "7.79823000" + }, + { + "id": "59958", + "name": "San Giorgio Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10735000", + "longitude": "8.41614000" + }, + { + "id": "59961", + "name": "San Giorgio Scarampi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61094000", + "longitude": "8.24244000" + }, + { + "id": "59977", + "name": "San Giorio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12752000", + "longitude": "7.17683000" + }, + { + "id": "60006", + "name": "San Giuliano Vecchio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88902000", + "longitude": "8.76057000" + }, + { + "id": "60010", + "name": "San Giuseppe", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14701000", + "longitude": "7.04271000" + }, + { + "id": "60017", + "name": "San Giusto Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31535000", + "longitude": "7.81001000" + }, + { + "id": "60037", + "name": "San Lorenzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12720000", + "longitude": "8.20065000" + }, + { + "id": "60071", + "name": "San Martino Alfieri", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81795000", + "longitude": "8.10994000" + }, + { + "id": "60074", + "name": "San Martino Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39453000", + "longitude": "7.81622000" + }, + { + "id": "60098", + "name": "San Marzano Oliveto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75445000", + "longitude": "8.29534000" + }, + { + "id": "60102", + "name": "San Maurizio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21705000", + "longitude": "7.63052000" + }, + { + "id": "60103", + "name": "San Maurizio D'Opaglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77299000", + "longitude": "8.39599000" + }, + { + "id": "60110", + "name": "San Mauro Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10359000", + "longitude": "7.76803000" + }, + { + "id": "60118", + "name": "San Michele Mondovì", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37595000", + "longitude": "7.90829000" + }, + { + "id": "60131", + "name": "San Nazzaro Sesia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43804000", + "longitude": "8.42498000" + }, + { + "id": "60159", + "name": "San Paolo Solbrito", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95065000", + "longitude": "7.97073000" + }, + { + "id": "60180", + "name": "San Pietro Mosezzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45455000", + "longitude": "8.54450000" + }, + { + "id": "60182", + "name": "San Pietro Val Lemina", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90654000", + "longitude": "7.31092000" + }, + { + "id": "60209", + "name": "San Ponso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35101000", + "longitude": "7.67111000" + }, + { + "id": "60219", + "name": "San Raffaele Cimena", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14665000", + "longitude": "7.84932000" + }, + { + "id": "60223", + "name": "San Rocco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.39653000", + "longitude": "7.47230000" + }, + { + "id": "60231", + "name": "San Salvatore Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99489000", + "longitude": "8.56639000" + }, + { + "id": "60236", + "name": "San Sebastiano Curone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78633000", + "longitude": "9.06446000" + }, + { + "id": "60238", + "name": "San Sebastiano da Po", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16755000", + "longitude": "7.95723000" + }, + { + "id": "60241", + "name": "San Secondo di Pinerolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86644000", + "longitude": "7.29842000" + }, + { + "id": "60299", + "name": "Sandigliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52204000", + "longitude": "8.07660000" + }, + { + "id": "60303", + "name": "Sanfrè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75180000", + "longitude": "7.80289000" + }, + { + "id": "60302", + "name": "Sanfront", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64698000", + "longitude": "7.32243000" + }, + { + "id": "60304", + "name": "Sangano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02508000", + "longitude": "7.44987000" + }, + { + "id": "60317", + "name": "Sant'Agata Fossili", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78475000", + "longitude": "8.92115000" + }, + { + "id": "60329", + "name": "Sant'Albano Stura", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50759000", + "longitude": "7.72282000" + }, + { + "id": "60337", + "name": "Sant'Ambrogio di Torino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09622000", + "longitude": "7.36600000" + }, + { + "id": "60378", + "name": "Sant'Antonino di Susa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10763000", + "longitude": "7.27333000" + }, + { + "id": "60381", + "name": "Sant'Antonio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75887000", + "longitude": "8.06996000" + }, + { + "id": "60466", + "name": "Santa Maria Maggiore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13683000", + "longitude": "8.46108000" + }, + { + "id": "60500", + "name": "Santa Vittoria d'Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69864000", + "longitude": "7.93733000" + }, + { + "id": "60505", + "name": "Santena", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94624000", + "longitude": "7.77303000" + }, + { + "id": "60508", + "name": "Santhià", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36795000", + "longitude": "8.17012000" + }, + { + "id": "60510", + "name": "Santino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95606000", + "longitude": "8.51914000" + }, + { + "id": "60512", + "name": "Santo Stefano Belbo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.71023000", + "longitude": "8.23269000" + }, + { + "id": "60515", + "name": "Santo Stefano Roero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78844000", + "longitude": "7.94093000" + }, + { + "id": "60544", + "name": "Sardigliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.75240000", + "longitude": "8.89575000" + }, + { + "id": "60547", + "name": "Sarezzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86878000", + "longitude": "8.91237000" + }, + { + "id": "60581", + "name": "Sauze d'Oulx", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02659000", + "longitude": "6.86074000" + }, + { + "id": "60582", + "name": "Sauze di Cesana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94058000", + "longitude": "6.85988000" + }, + { + "id": "60587", + "name": "Savigliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.64808000", + "longitude": "7.65677000" + }, + { + "id": "60600", + "name": "Savonera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11368000", + "longitude": "7.61506000" + }, + { + "id": "60603", + "name": "Scagnello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33333000", + "longitude": "7.98644000" + }, + { + "id": "60608", + "name": "Scalenghe", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88990000", + "longitude": "7.49423000" + }, + { + "id": "60634", + "name": "Scarmagno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38492000", + "longitude": "7.84110000" + }, + { + "id": "60635", + "name": "Scarnafigi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67944000", + "longitude": "7.56513000" + }, + { + "id": "60657", + "name": "Sciolze", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09453000", + "longitude": "7.87818000" + }, + { + "id": "60663", + "name": "Scopa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79297000", + "longitude": "8.11402000" + }, + { + "id": "60664", + "name": "Scopello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77369000", + "longitude": "8.09435000" + }, + { + "id": "60672", + "name": "Scurzolengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96485000", + "longitude": "8.27914000" + }, + { + "id": "60711", + "name": "Selve Marcone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61976000", + "longitude": "8.08742000" + }, + { + "id": "60733", + "name": "Seppiana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05828000", + "longitude": "8.21661000" + }, + { + "id": "60748", + "name": "Serole", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55404000", + "longitude": "8.25974000" + }, + { + "id": "60760", + "name": "Serralunga d'Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.61004000", + "longitude": "7.99944000" + }, + { + "id": "60761", + "name": "Serralunga di Crea", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10110000", + "longitude": "8.28069000" + }, + { + "id": "60772", + "name": "Serravalle Langhe", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.55995000", + "longitude": "8.05944000" + }, + { + "id": "60774", + "name": "Serravalle Scrivia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72277000", + "longitude": "8.85635000" + }, + { + "id": "60775", + "name": "Serravalle Sesia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68485000", + "longitude": "8.30850000" + }, + { + "id": "60779", + "name": "Serre", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54033000", + "longitude": "7.09032000" + }, + { + "id": "60790", + "name": "Sessame", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67064000", + "longitude": "8.33684000" + }, + { + "id": "60804", + "name": "Sestriere", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95864000", + "longitude": "6.87751000" + }, + { + "id": "60809", + "name": "Settime", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96175000", + "longitude": "8.11433000" + }, + { + "id": "60813", + "name": "Settimo Rottaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40776000", + "longitude": "7.99352000" + }, + { + "id": "60815", + "name": "Settimo Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13925000", + "longitude": "7.77008000" + }, + { + "id": "60816", + "name": "Settimo Vittone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54929000", + "longitude": "7.83328000" + }, + { + "id": "60823", + "name": "Sezzadio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78485000", + "longitude": "8.57255000" + }, + { + "id": "60854", + "name": "Sillavengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52067000", + "longitude": "8.44103000" + }, + { + "id": "60856", + "name": "Silvano d'Orba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68580000", + "longitude": "8.67182000" + }, + { + "id": "60867", + "name": "Sinio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.60034000", + "longitude": "8.01994000" + }, + { + "id": "60886", + "name": "Sizzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57663000", + "longitude": "8.43613000" + }, + { + "id": "60898", + "name": "Soglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99625000", + "longitude": "8.07843000" + }, + { + "id": "60914", + "name": "Solero", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91835000", + "longitude": "8.50754000" + }, + { + "id": "60922", + "name": "Solonghello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12905000", + "longitude": "8.28323000" + }, + { + "id": "60927", + "name": "Somano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.53534000", + "longitude": "8.00784000" + }, + { + "id": "60932", + "name": "Sommariva del Bosco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.77257000", + "longitude": "7.78177000" + }, + { + "id": "60931", + "name": "Sommariva Perno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74564000", + "longitude": "7.90063000" + }, + { + "id": "60943", + "name": "Soprana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63947000", + "longitude": "8.19892000" + }, + { + "id": "60952", + "name": "Sordevolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57346000", + "longitude": "7.97342000" + }, + { + "id": "60962", + "name": "Soriso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74037000", + "longitude": "8.40953000" + }, + { + "id": "60972", + "name": "Sostegno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65287000", + "longitude": "8.26982000" + }, + { + "id": "60987", + "name": "Sozzago", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39832000", + "longitude": "8.72271000" + }, + { + "id": "60991", + "name": "Sparone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41442000", + "longitude": "7.54516000" + }, + { + "id": "61007", + "name": "Spigno Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54314000", + "longitude": "8.33395000" + }, + { + "id": "61018", + "name": "Spineto Scrivia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83735000", + "longitude": "8.87375000" + }, + { + "id": "61020", + "name": "Spinetta Marengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88554000", + "longitude": "8.67750000" + }, + { + "id": "61038", + "name": "Staffa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96855000", + "longitude": "7.96708000" + }, + { + "id": "61058", + "name": "Stazzano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72728000", + "longitude": "8.86846000" + }, + { + "id": "61087", + "name": "Strambinello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42306000", + "longitude": "7.76992000" + }, + { + "id": "61088", + "name": "Strambino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37990000", + "longitude": "7.88967000" + }, + { + "id": "61093", + "name": "Stresa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88158000", + "longitude": "8.53834000" + }, + { + "id": "61095", + "name": "Strevi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69985000", + "longitude": "8.52470000" + }, + { + "id": "61100", + "name": "Stroppiana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23037000", + "longitude": "8.45461000" + }, + { + "id": "61101", + "name": "Stroppo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50653000", + "longitude": "7.12652000" + }, + { + "id": "61122", + "name": "Suno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63137000", + "longitude": "8.54437000" + }, + { + "id": "61128", + "name": "Susa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13677000", + "longitude": "7.05809000" + }, + { + "id": "61143", + "name": "Tagliaferro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97850000", + "longitude": "7.66430000" + }, + { + "id": "61146", + "name": "Tagliolo Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63835000", + "longitude": "8.66585000" + }, + { + "id": "61164", + "name": "Tarantasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.49322000", + "longitude": "7.54459000" + }, + { + "id": "61172", + "name": "Tassarolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72811000", + "longitude": "8.77164000" + }, + { + "id": "61179", + "name": "Tavagnasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54448000", + "longitude": "7.82293000" + }, + { + "id": "61194", + "name": "Tavigliano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62206000", + "longitude": "8.05172000" + }, + { + "id": "61218", + "name": "Terdobbiate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37588000", + "longitude": "8.69458000" + }, + { + "id": "61231", + "name": "Ternengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58896000", + "longitude": "8.11372000" + }, + { + "id": "61253", + "name": "Terruggia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08199000", + "longitude": "8.44428000" + }, + { + "id": "61256", + "name": "Terzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67045000", + "longitude": "8.42164000" + }, + { + "id": "61266", + "name": "Tetti Neirotti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05338000", + "longitude": "7.54077000" + }, + { + "id": "61267", + "name": "Tettorosso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.47284000", + "longitude": "7.34291000" + }, + { + "id": "61275", + "name": "Ticineto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09627000", + "longitude": "8.55315000" + }, + { + "id": "61278", + "name": "Tigliole", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88625000", + "longitude": "8.07663000" + }, + { + "id": "61294", + "name": "Toceno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14468000", + "longitude": "8.46902000" + }, + { + "id": "61300", + "name": "Tollegno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59077000", + "longitude": "8.05089000" + }, + { + "id": "61308", + "name": "Tonco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02344000", + "longitude": "8.18942000" + }, + { + "id": "61309", + "name": "Tonengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11765000", + "longitude": "8.00213000" + }, + { + "id": "61310", + "name": "Tonengo-Casale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28609000", + "longitude": "7.93964000" + }, + { + "id": "61329", + "name": "Torino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13333000", + "longitude": "7.36667000" + }, + { + "id": "61333", + "name": "Tornaco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35651000", + "longitude": "8.71745000" + }, + { + "id": "61344", + "name": "Torrazza Piemonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21535000", + "longitude": "7.97673000" + }, + { + "id": "61346", + "name": "Torrazzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49874000", + "longitude": "7.95428000" + }, + { + "id": "61350", + "name": "Torre Bormida", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56274000", + "longitude": "8.15444000" + }, + { + "id": "61352", + "name": "Torre Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39206000", + "longitude": "7.75982000" + }, + { + "id": "61356", + "name": "Torre Mondovì", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35283000", + "longitude": "7.89964000" + }, + { + "id": "61359", + "name": "Torre Pellice", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.82102000", + "longitude": "7.21672000" + }, + { + "id": "61360", + "name": "Torre San Giorgio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.73574000", + "longitude": "7.52813000" + }, + { + "id": "61388", + "name": "Torresina", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.43364000", + "longitude": "8.03674000" + }, + { + "id": "61407", + "name": "Torrion Quartara", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41819000", + "longitude": "8.61472000" + }, + { + "id": "61412", + "name": "Tortona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89784000", + "longitude": "8.86374000" + }, + { + "id": "61436", + "name": "Trana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03862000", + "longitude": "7.42100000" + }, + { + "id": "61442", + "name": "Trarego", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03435000", + "longitude": "8.66998000" + }, + { + "id": "61446", + "name": "Trasquera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21338000", + "longitude": "8.21271000" + }, + { + "id": "61448", + "name": "Trausella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48996000", + "longitude": "7.76312000" + }, + { + "id": "61452", + "name": "Traversella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50907000", + "longitude": "7.74938000" + }, + { + "id": "61454", + "name": "Traves", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26795000", + "longitude": "7.43081000" + }, + { + "id": "61466", + "name": "Trecate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43399000", + "longitude": "8.73640000" + }, + { + "id": "61476", + "name": "Treiso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.68974000", + "longitude": "8.08814000" + }, + { + "id": "61507", + "name": "Treville", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09685000", + "longitude": "8.35954000" + }, + { + "id": "61512", + "name": "Trezzo Tinella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.67704000", + "longitude": "8.10754000" + }, + { + "id": "61520", + "name": "Tricerro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23570000", + "longitude": "8.32746000" + }, + { + "id": "61529", + "name": "Trinità", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.50730000", + "longitude": "7.75637000" + }, + { + "id": "61532", + "name": "Trino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19538000", + "longitude": "8.29621000" + }, + { + "id": "61536", + "name": "Trisobbio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66063000", + "longitude": "8.58621000" + }, + { + "id": "61540", + "name": "Trivero-Prativero-Ponzone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66047000", + "longitude": "8.17402000" + }, + { + "id": "61548", + "name": "Trofarello", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98238000", + "longitude": "7.74688000" + }, + { + "id": "61553", + "name": "Trontano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12248000", + "longitude": "8.33322000" + }, + { + "id": "61555", + "name": "Tronzano Vercellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34226000", + "longitude": "8.17368000" + }, + { + "id": "61575", + "name": "Turin", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07049000", + "longitude": "7.68682000" + }, + { + "id": "61617", + "name": "Usseaux", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04894000", + "longitude": "7.02851000" + }, + { + "id": "61618", + "name": "Usseglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23274000", + "longitude": "7.21993000" + }, + { + "id": "61624", + "name": "Vaccheria", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72700000", + "longitude": "8.04295000" + }, + { + "id": "61635", + "name": "Vaglio Serra", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.79635000", + "longitude": "8.33894000" + }, + { + "id": "61639", + "name": "Vaie", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10234000", + "longitude": "7.28941000" + }, + { + "id": "61645", + "name": "Val della Torre", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15515000", + "longitude": "7.44501000" + }, + { + "id": "61652", + "name": "Valdengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56706000", + "longitude": "8.13832000" + }, + { + "id": "61654", + "name": "Valdieri", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.27763000", + "longitude": "7.39763000" + }, + { + "id": "61659", + "name": "Valduggia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72722000", + "longitude": "8.32730000" + }, + { + "id": "61663", + "name": "Valentino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15558000", + "longitude": "8.09391000" + }, + { + "id": "61664", + "name": "Valenza", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01242000", + "longitude": "8.64379000" + }, + { + "id": "61669", + "name": "Valfenera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90175000", + "longitude": "7.96433000" + }, + { + "id": "61673", + "name": "Valgioie", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06400000", + "longitude": "7.34927000" + }, + { + "id": "61675", + "name": "Valgrana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.41181000", + "longitude": "7.38068000" + }, + { + "id": "61681", + "name": "Vallanzengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60327000", + "longitude": "8.15042000" + }, + { + "id": "61689", + "name": "Valle Mosso", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63069000", + "longitude": "8.14764000" + }, + { + "id": "61691", + "name": "Valle San Bartolomeo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95017000", + "longitude": "8.64040000" + }, + { + "id": "61692", + "name": "Valle San Nicolao", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60706000", + "longitude": "8.14102000" + }, + { + "id": "61723", + "name": "Vallo Torinese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22355000", + "longitude": "7.49632000" + }, + { + "id": "61726", + "name": "Valloriate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33763000", + "longitude": "7.37393000" + }, + { + "id": "61728", + "name": "Valmacca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10101000", + "longitude": "8.58382000" + }, + { + "id": "61729", + "name": "Valmadonna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.97444000", + "longitude": "8.61146000" + }, + { + "id": "61731", + "name": "Valmala", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54423000", + "longitude": "7.34603000" + }, + { + "id": "61736", + "name": "Valperga", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37004000", + "longitude": "7.66124000" + }, + { + "id": "61737", + "name": "Valprato Soana", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52166000", + "longitude": "7.54948000" + }, + { + "id": "61741", + "name": "Valstrona", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90767000", + "longitude": "8.34322000" + }, + { + "id": "61755", + "name": "Vanzone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97785000", + "longitude": "8.10826000" + }, + { + "id": "61756", + "name": "Vaprio D'Agogna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60322000", + "longitude": "8.55402000" + }, + { + "id": "61759", + "name": "Varallo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81383000", + "longitude": "8.25814000" + }, + { + "id": "61760", + "name": "Varallo Pombia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66784000", + "longitude": "8.62850000" + }, + { + "id": "61771", + "name": "Varisella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20835000", + "longitude": "7.48381000" + }, + { + "id": "61776", + "name": "Varzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.20736000", + "longitude": "8.25267000" + }, + { + "id": "61784", + "name": "Vauda Canavese Superiore", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27947000", + "longitude": "7.61945000" + }, + { + "id": "61797", + "name": "Veglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64057000", + "longitude": "8.11412000" + }, + { + "id": "61809", + "name": "Venaria Reale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12597000", + "longitude": "7.63136000" + }, + { + "id": "61811", + "name": "Venasca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56134000", + "longitude": "7.39698000" + }, + { + "id": "61812", + "name": "Venaus", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15710000", + "longitude": "7.01070000" + }, + { + "id": "61834", + "name": "Verbania", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92136000", + "longitude": "8.55183000" + }, + { + "id": "61838", + "name": "Vercelli", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32163000", + "longitude": "8.41989000" + }, + { + "id": "61844", + "name": "Verduno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66614000", + "longitude": "7.93074000" + }, + { + "id": "61849", + "name": "Vergnasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48803000", + "longitude": "8.08553000" + }, + { + "id": "61853", + "name": "Vernante", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24447000", + "longitude": "7.53455000" + }, + { + "id": "61861", + "name": "Verolengo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19040000", + "longitude": "7.97126000" + }, + { + "id": "61868", + "name": "Verrone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50824000", + "longitude": "8.11514000" + }, + { + "id": "61870", + "name": "Verrua Savoia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15675000", + "longitude": "8.09223000" + }, + { + "id": "61874", + "name": "Veruno", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68887000", + "longitude": "8.52863000" + }, + { + "id": "61878", + "name": "Verzuolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.59279000", + "longitude": "7.48164000" + }, + { + "id": "61882", + "name": "Vesime", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.63535000", + "longitude": "8.22683000" + }, + { + "id": "61883", + "name": "Vespolate", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34953000", + "longitude": "8.66878000" + }, + { + "id": "61886", + "name": "Vestignè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38655000", + "longitude": "7.95336000" + }, + { + "id": "61892", + "name": "Vezza d'Alba", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.76274000", + "longitude": "8.00793000" + }, + { + "id": "61902", + "name": "Viale", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00015000", + "longitude": "8.04993000" + }, + { + "id": "61903", + "name": "Vialfrè", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38076000", + "longitude": "7.81822000" + }, + { + "id": "61906", + "name": "Viarigi", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98055000", + "longitude": "8.35714000" + }, + { + "id": "62196", + "name": "Viù", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23785000", + "longitude": "7.37333000" + }, + { + "id": "61916", + "name": "Vico Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49342000", + "longitude": "7.77887000" + }, + { + "id": "61921", + "name": "Vicoforte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36393000", + "longitude": "7.86264000" + }, + { + "id": "61923", + "name": "Vicolungo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47522000", + "longitude": "8.46124000" + }, + { + "id": "61932", + "name": "Vidracco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43066000", + "longitude": "7.75742000" + }, + { + "id": "61936", + "name": "Viganella", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05173000", + "longitude": "8.19374000" + }, + { + "id": "61951", + "name": "Vigliano Biellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56317000", + "longitude": "8.10509000" + }, + { + "id": "61952", + "name": "Vigliano d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.83405000", + "longitude": "8.22914000" + }, + { + "id": "61956", + "name": "Vignale Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00996000", + "longitude": "8.39703000" + }, + { + "id": "61963", + "name": "Vignole Borbera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.70819000", + "longitude": "8.89026000" + }, + { + "id": "61965", + "name": "Vignolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.36364000", + "longitude": "7.47208000" + }, + { + "id": "61966", + "name": "Vignone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96118000", + "longitude": "8.56372000" + }, + { + "id": "61974", + "name": "Vigone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84236000", + "longitude": "7.49774000" + }, + { + "id": "61979", + "name": "Viguzzolo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90567000", + "longitude": "8.91968000" + }, + { + "id": "61982", + "name": "Villa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.74606000", + "longitude": "7.90066000" + }, + { + "id": "62038", + "name": "Villa del Bosco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61669000", + "longitude": "8.27776000" + }, + { + "id": "62021", + "name": "Villa San Secondo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00513000", + "longitude": "8.13462000" + }, + { + "id": "62044", + "name": "Villa-Borgo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.69865000", + "longitude": "7.93486000" + }, + { + "id": "62051", + "name": "Villadeati", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07225000", + "longitude": "8.16793000" + }, + { + "id": "62053", + "name": "Villadossola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07080000", + "longitude": "8.26709000" + }, + { + "id": "62054", + "name": "Villafalletto", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.54624000", + "longitude": "7.54069000" + }, + { + "id": "62060", + "name": "Villafranca d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91539000", + "longitude": "8.02658000" + }, + { + "id": "62057", + "name": "Villafranca Piemonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.78824000", + "longitude": "7.50788000" + }, + { + "id": "62079", + "name": "Villalvernia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81387000", + "longitude": "8.85532000" + }, + { + "id": "62085", + "name": "Villamiroglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13455000", + "longitude": "8.17103000" + }, + { + "id": "62096", + "name": "Villanova Biellese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48156000", + "longitude": "8.19432000" + }, + { + "id": "62097", + "name": "Villanova Canavese", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24355000", + "longitude": "7.55212000" + }, + { + "id": "62107", + "name": "Villanova d'Asti", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94299000", + "longitude": "7.93671000" + }, + { + "id": "62099", + "name": "Villanova Mondovì", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.34804000", + "longitude": "7.76752000" + }, + { + "id": "62100", + "name": "Villanova Monferrato", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18111000", + "longitude": "8.47813000" + }, + { + "id": "62102", + "name": "Villanova Solaro", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.72994000", + "longitude": "7.57443000" + }, + { + "id": "62121", + "name": "Villar Dora", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11465000", + "longitude": "7.38352000" + }, + { + "id": "62122", + "name": "Villar Focchiardo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11244000", + "longitude": "7.23841000" + }, + { + "id": "62123", + "name": "Villar Pellice", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.80893000", + "longitude": "7.15978000" + }, + { + "id": "62124", + "name": "Villar Perosa", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.91849000", + "longitude": "7.24821000" + }, + { + "id": "62125", + "name": "Villar San Costanzo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.48473000", + "longitude": "7.38223000" + }, + { + "id": "62126", + "name": "Villarbasse", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04514000", + "longitude": "7.46842000" + }, + { + "id": "62127", + "name": "Villarboit", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43775000", + "longitude": "8.33694000" + }, + { + "id": "62128", + "name": "Villareggia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30885000", + "longitude": "7.97724000" + }, + { + "id": "62130", + "name": "Villaromagnano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.84965000", + "longitude": "8.88775000" + }, + { + "id": "62141", + "name": "Villastellone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92201000", + "longitude": "7.74360000" + }, + { + "id": "62142", + "name": "Villata", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38650000", + "longitude": "8.43279000" + }, + { + "id": "62152", + "name": "Villette", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13188000", + "longitude": "8.53422000" + }, + { + "id": "62160", + "name": "Vinadio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.30759000", + "longitude": "7.17628000" + }, + { + "id": "62162", + "name": "Vinchio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.81095000", + "longitude": "8.32094000" + }, + { + "id": "62164", + "name": "Vinovo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94674000", + "longitude": "7.63252000" + }, + { + "id": "62165", + "name": "Vinzaglio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32309000", + "longitude": "8.51979000" + }, + { + "id": "62166", + "name": "Viola", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29081000", + "longitude": "7.96491000" + }, + { + "id": "62169", + "name": "Virle Piemonte", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.86369000", + "longitude": "7.57033000" + }, + { + "id": "62171", + "name": "Vische", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33566000", + "longitude": "7.94482000" + }, + { + "id": "62174", + "name": "Visone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.66184000", + "longitude": "8.50075000" + }, + { + "id": "62177", + "name": "Vistrorio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44147000", + "longitude": "7.76781000" + }, + { + "id": "62192", + "name": "Viverone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42726000", + "longitude": "8.04942000" + }, + { + "id": "62199", + "name": "Vocca", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83269000", + "longitude": "8.19580000" + }, + { + "id": "62203", + "name": "Vogogna", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01002000", + "longitude": "8.29137000" + }, + { + "id": "62210", + "name": "Volpedo", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.88887000", + "longitude": "8.98615000" + }, + { + "id": "62211", + "name": "Volpeglino", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89296000", + "longitude": "8.95945000" + }, + { + "id": "62212", + "name": "Volpiano", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19940000", + "longitude": "7.77546000" + }, + { + "id": "62214", + "name": "Voltaggio", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.62095000", + "longitude": "8.84274000" + }, + { + "id": "62223", + "name": "Volvera", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95484000", + "longitude": "7.51142000" + }, + { + "id": "62225", + "name": "Vottignasco", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "44.56413000", + "longitude": "7.57913000" + }, + { + "id": "62261", + "name": "Zimone", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44912000", + "longitude": "8.03734000" + }, + { + "id": "62278", + "name": "Zubiena", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49266000", + "longitude": "7.99552000" + }, + { + "id": "62284", + "name": "Zumaglia", + "state_id": 1702, + "state_code": "21", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59386000", + "longitude": "8.08942000" + }, + { + "id": "135239", + "name": "Abbasanta", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12812000", + "longitude": "8.81760000" + }, + { + "id": "135299", + "name": "Aggius", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92995000", + "longitude": "9.06517000" + }, + { + "id": "135305", + "name": "Aglientu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07906000", + "longitude": "9.11267000" + }, + { + "id": "135323", + "name": "Aidomaggiore", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17147000", + "longitude": "8.85679000" + }, + { + "id": "135453", + "name": "Alà dei Sardi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65007000", + "longitude": "9.32783000" + }, + { + "id": "135348", + "name": "Albagiara", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.78724000", + "longitude": "8.86184000" + }, + { + "id": "135393", + "name": "Ales", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.76830000", + "longitude": "8.81520000" + }, + { + "id": "135404", + "name": "Alghero", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55969000", + "longitude": "8.31953000" + }, + { + "id": "135414", + "name": "Allai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95701000", + "longitude": "8.86354000" + }, + { + "id": "135494", + "name": "Anela", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.44176000", + "longitude": "9.05743000" + }, + { + "id": "135553", + "name": "Arbatax", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93444000", + "longitude": "9.70556000" + }, + { + "id": "135556", + "name": "Arborea", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.77276000", + "longitude": "8.58129000" + }, + { + "id": "135558", + "name": "Arbus", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.52616000", + "longitude": "8.59970000" + }, + { + "id": "135576", + "name": "Ardara", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62140000", + "longitude": "8.80987000" + }, + { + "id": "135577", + "name": "Ardauli", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.08436000", + "longitude": "8.91228000" + }, + { + "id": "135607", + "name": "Aritzo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95903000", + "longitude": "9.19265000" + }, + { + "id": "135617", + "name": "Armungia", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.52154000", + "longitude": "9.38066000" + }, + { + "id": "135646", + "name": "Arzachena", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "41.07620000", + "longitude": "9.39055000" + }, + { + "id": "135648", + "name": "Arzana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.91742000", + "longitude": "9.52766000" + }, + { + "id": "135665", + "name": "Assemini", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.29123000", + "longitude": "8.99879000" + }, + { + "id": "135668", + "name": "Assolo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.80915000", + "longitude": "8.91932000" + }, + { + "id": "135671", + "name": "Asuni", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.87101000", + "longitude": "8.94603000" + }, + { + "id": "135683", + "name": "Atzara", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.99249000", + "longitude": "9.07616000" + }, + { + "id": "135695", + "name": "Austis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.07122000", + "longitude": "9.08878000" + }, + { + "id": "135730", + "name": "Bacu Abis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.24301000", + "longitude": "8.46491000" + }, + { + "id": "135733", + "name": "Badesi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.96460000", + "longitude": "8.88235000" + }, + { + "id": "135790", + "name": "Ballao", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.54919000", + "longitude": "9.36178000" + }, + { + "id": "135800", + "name": "Banari", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.57056000", + "longitude": "8.70052000" + }, + { + "id": "135801", + "name": "Bancali", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73549000", + "longitude": "8.46328000" + }, + { + "id": "135808", + "name": "Baradili", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.72189000", + "longitude": "8.89731000" + }, + { + "id": "135815", + "name": "Baratili San Pietro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.99220000", + "longitude": "8.55586000" + }, + { + "id": "135846", + "name": "Baressa", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.71308000", + "longitude": "8.87459000" + }, + { + "id": "135854", + "name": "Bari Sardo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.84135000", + "longitude": "9.64606000" + }, + { + "id": "135869", + "name": "Barrali", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.47532000", + "longitude": "9.10204000" + }, + { + "id": "135872", + "name": "Barumini", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.70215000", + "longitude": "9.00338000" + }, + { + "id": "135912", + "name": "Bauladu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.02055000", + "longitude": "8.67192000" + }, + { + "id": "135913", + "name": "Baunei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03132000", + "longitude": "9.66374000" + }, + { + "id": "135969", + "name": "Belvì", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.96181000", + "longitude": "9.18419000" + }, + { + "id": "135974", + "name": "Benetutti", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45689000", + "longitude": "9.16754000" + }, + { + "id": "135982", + "name": "Berchidda", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78476000", + "longitude": "9.16510000" + }, + { + "id": "136017", + "name": "Bessude", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55449000", + "longitude": "8.72753000" + }, + { + "id": "136045", + "name": "Bidonì", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.11305000", + "longitude": "8.93643000" + }, + { + "id": "136057", + "name": "Birori", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26593000", + "longitude": "8.81570000" + }, + { + "id": "136070", + "name": "Bitti", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.47956000", + "longitude": "9.38403000" + }, + { + "id": "136112", + "name": "Bolotana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.32440000", + "longitude": "8.96109000" + }, + { + "id": "136123", + "name": "Bonarcado", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09836000", + "longitude": "8.65534000" + }, + { + "id": "136140", + "name": "Bonnanaro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.53265000", + "longitude": "8.76389000" + }, + { + "id": "136141", + "name": "Bono", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.41387000", + "longitude": "9.03187000" + }, + { + "id": "136142", + "name": "Bonorva", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.41839000", + "longitude": "8.76831000" + }, + { + "id": "136225", + "name": "Boroneddu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.11262000", + "longitude": "8.87023000" + }, + { + "id": "136226", + "name": "Borore", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21576000", + "longitude": "8.80365000" + }, + { + "id": "136230", + "name": "Bortigali", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28268000", + "longitude": "8.83946000" + }, + { + "id": "136231", + "name": "Bortigiadas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.89167000", + "longitude": "9.04352000" + }, + { + "id": "136233", + "name": "Borutta", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.52236000", + "longitude": "8.74352000" + }, + { + "id": "136236", + "name": "Bosa", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.29927000", + "longitude": "8.49827000" + }, + { + "id": "136262", + "name": "Bottidda", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39242000", + "longitude": "9.01039000" + }, + { + "id": "136390", + "name": "Buddusò", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.57723000", + "longitude": "9.25839000" + }, + { + "id": "136392", + "name": "Budoni", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.70467000", + "longitude": "9.70384000" + }, + { + "id": "136395", + "name": "Buggerru", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.39831000", + "longitude": "8.40186000" + }, + { + "id": "136403", + "name": "Bultei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45720000", + "longitude": "9.06367000" + }, + { + "id": "136404", + "name": "Bulzi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84666000", + "longitude": "8.83026000" + }, + { + "id": "136411", + "name": "Burcei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.34379000", + "longitude": "9.36027000" + }, + { + "id": "136413", + "name": "Burgos", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39081000", + "longitude": "8.99558000" + }, + { + "id": "136417", + "name": "Busachi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03422000", + "longitude": "8.88848000" + }, + { + "id": "136450", + "name": "Cabras", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.92871000", + "longitude": "8.53242000" + }, + { + "id": "136468", + "name": "Cagliari", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.23054000", + "longitude": "9.11917000" + }, + { + "id": "136485", + "name": "Cala Gonone", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28086000", + "longitude": "9.62971000" + }, + { + "id": "136490", + "name": "Calangianus", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92027000", + "longitude": "9.19343000" + }, + { + "id": "136495", + "name": "Calasetta", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.10697000", + "longitude": "8.36803000" + }, + { + "id": "136788", + "name": "Capoterra", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.17520000", + "longitude": "8.97199000" + }, + { + "id": "136852", + "name": "Carbonia", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.16465000", + "longitude": "8.52130000" + }, + { + "id": "136859", + "name": "Cardedu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.79714000", + "longitude": "9.62652000" + }, + { + "id": "136873", + "name": "Cargeghe", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.66894000", + "longitude": "8.61521000" + }, + { + "id": "136888", + "name": "Carloforte", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.14081000", + "longitude": "8.30390000" + }, + { + "id": "137314", + "name": "Castelsardo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91256000", + "longitude": "8.71453000" + }, + { + "id": "137335", + "name": "Castiadas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.23704000", + "longitude": "9.49975000" + }, + { + "id": "137637", + "name": "Cheremule", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.50455000", + "longitude": "8.72582000" + }, + { + "id": "137649", + "name": "Chiaramonti", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74829000", + "longitude": "8.82114000" + }, + { + "id": "137827", + "name": "Codaruina", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92847000", + "longitude": "8.82398000" + }, + { + "id": "137838", + "name": "Codrongianos", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65603000", + "longitude": "8.68140000" + }, + { + "id": "137903", + "name": "Collinas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.64059000", + "longitude": "8.83955000" + }, + { + "id": "138070", + "name": "Cortoghiana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.21177000", + "longitude": "8.46548000" + }, + { + "id": "138089", + "name": "Cossoine", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.43068000", + "longitude": "8.71578000" + }, + { + "id": "138185", + "name": "Cuglieri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.18804000", + "longitude": "8.56806000" + }, + { + "id": "138199", + "name": "Curcuris", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.74625000", + "longitude": "8.83154000" + }, + { + "id": "138236", + "name": "Decimomannu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31033000", + "longitude": "8.96964000" + }, + { + "id": "138237", + "name": "Decimoputzu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.33522000", + "longitude": "8.91440000" + }, + { + "id": "138258", + "name": "Desulo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.01462000", + "longitude": "9.23061000" + }, + { + "id": "138283", + "name": "Dolianova", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.37791000", + "longitude": "9.17697000" + }, + { + "id": "138293", + "name": "Domus de Maria", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "38.94451000", + "longitude": "8.86250000" + }, + { + "id": "138294", + "name": "Domusnovas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.32404000", + "longitude": "8.64921000" + }, + { + "id": "138299", + "name": "Donigala Fenugheddu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93501000", + "longitude": "8.57311000" + }, + { + "id": "138304", + "name": "Donorì", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.43182000", + "longitude": "9.12674000" + }, + { + "id": "138306", + "name": "Dorgali", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.29221000", + "longitude": "9.58702000" + }, + { + "id": "138336", + "name": "Dualchi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.22935000", + "longitude": "8.89723000" + }, + { + "id": "138352", + "name": "Elini", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.89952000", + "longitude": "9.53198000" + }, + { + "id": "138354", + "name": "Elmas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.26878000", + "longitude": "9.05021000" + }, + { + "id": "138377", + "name": "Erula", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79244000", + "longitude": "8.94418000" + }, + { + "id": "138380", + "name": "Escalaplano", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.62574000", + "longitude": "9.35350000" + }, + { + "id": "138381", + "name": "Escolca", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.69861000", + "longitude": "9.12139000" + }, + { + "id": "138385", + "name": "Esporlatu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.38456000", + "longitude": "8.98983000" + }, + { + "id": "138387", + "name": "Esterzili", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.78041000", + "longitude": "9.28357000" + }, + { + "id": "138566", + "name": "Florinas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.64900000", + "longitude": "8.66548000" + }, + { + "id": "138568", + "name": "Fluminimaggiore", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.43878000", + "longitude": "8.49758000" + }, + { + "id": "138569", + "name": "Flussio", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26545000", + "longitude": "8.53810000" + }, + { + "id": "138590", + "name": "Fonni", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.11932000", + "longitude": "9.25347000" + }, + { + "id": "138623", + "name": "Fordongianus", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.99436000", + "longitude": "8.81019000" + }, + { + "id": "138759", + "name": "Furtei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.56253000", + "longitude": "8.94773000" + }, + { + "id": "138773", + "name": "Gadoni", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.91388000", + "longitude": "9.18560000" + }, + { + "id": "138792", + "name": "Gairo Sant'Elena", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.84972000", + "longitude": "9.50472000" + }, + { + "id": "138822", + "name": "Galtellì", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.38451000", + "longitude": "9.61241000" + }, + { + "id": "138879", + "name": "Gavoi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.16130000", + "longitude": "9.19462000" + }, + { + "id": "138901", + "name": "Genoni", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.79361000", + "longitude": "9.00797000" + }, + { + "id": "138902", + "name": "Genuri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.74327000", + "longitude": "8.92407000" + }, + { + "id": "138915", + "name": "Gergei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.69878000", + "longitude": "9.09965000" + }, + { + "id": "138924", + "name": "Gesico", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.61636000", + "longitude": "9.10665000" + }, + { + "id": "138927", + "name": "Gesturi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.73237000", + "longitude": "9.02077000" + }, + { + "id": "138934", + "name": "Ghilarza", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12119000", + "longitude": "8.83612000" + }, + { + "id": "138950", + "name": "Giave", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.45224000", + "longitude": "8.75175000" + }, + { + "id": "138954", + "name": "Giba", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.07151000", + "longitude": "8.63580000" + }, + { + "id": "138982", + "name": "Girasole", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95205000", + "longitude": "9.66098000" + }, + { + "id": "139014", + "name": "Golfo Aranci", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98333000", + "longitude": "9.63333000" + }, + { + "id": "139017", + "name": "Goni", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.57906000", + "longitude": "9.28519000" + }, + { + "id": "139018", + "name": "Gonnesa", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.26535000", + "longitude": "8.47038000" + }, + { + "id": "139019", + "name": "Gonnoscodina", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.69962000", + "longitude": "8.83598000" + }, + { + "id": "139020", + "name": "Gonnosfanadiga", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.49426000", + "longitude": "8.66200000" + }, + { + "id": "139021", + "name": "Gonnosnò", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.76104000", + "longitude": "8.87135000" + }, + { + "id": "139022", + "name": "Gonnostramatza", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.68306000", + "longitude": "8.83283000" + }, + { + "id": "139150", + "name": "Guamaggiore", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.56849000", + "longitude": "9.07391000" + }, + { + "id": "139168", + "name": "Guasila", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.55980000", + "longitude": "9.04404000" + }, + { + "id": "139184", + "name": "Guspini", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.53954000", + "longitude": "8.63502000" + }, + { + "id": "139191", + "name": "Iglesias", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30920000", + "longitude": "8.53720000" + }, + { + "id": "139194", + "name": "Ilbono", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.89258000", + "longitude": "9.54582000" + }, + { + "id": "139196", + "name": "Illorai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.35271000", + "longitude": "9.00170000" + }, + { + "id": "139221", + "name": "Irgoli", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40999000", + "longitude": "9.63135000" + }, + { + "id": "139234", + "name": "Isili", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.73952000", + "longitude": "9.11114000" + }, + { + "id": "139269", + "name": "Ittireddu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.54398000", + "longitude": "8.90118000" + }, + { + "id": "139270", + "name": "Ittiri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.59151000", + "longitude": "8.56976000" + }, + { + "id": "139277", + "name": "Jerzu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.79289000", + "longitude": "9.51785000" + }, + { + "id": "139287", + "name": "La Caletta", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.60988000", + "longitude": "9.75062000" + }, + { + "id": "139293", + "name": "La Maddalena", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.14429000", + "longitude": "9.01223000" + }, + { + "id": "139316", + "name": "Laconi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.85325000", + "longitude": "9.05196000" + }, + { + "id": "139319", + "name": "Laerru", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.81705000", + "longitude": "8.83650000" + }, + { + "id": "139360", + "name": "Lanusei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.87927000", + "longitude": "9.54022000" + }, + { + "id": "139377", + "name": "Las Plassas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.67979000", + "longitude": "8.98442000" + }, + { + "id": "139438", + "name": "Lei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30641000", + "longitude": "8.91858000" + }, + { + "id": "139491", + "name": "Li Punti-San Giovanni", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.76338000", + "longitude": "8.48900000" + }, + { + "id": "139564", + "name": "Loceri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.85816000", + "longitude": "9.58368000" + }, + { + "id": "139567", + "name": "Loculi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40696000", + "longitude": "9.61056000" + }, + { + "id": "139574", + "name": "Lodè", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.59137000", + "longitude": "9.53873000" + }, + { + "id": "139571", + "name": "Lodine", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14926000", + "longitude": "9.21873000" + }, + { + "id": "139577", + "name": "Loiri Porto San Paolo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.84262000", + "longitude": "9.49820000" + }, + { + "id": "139618", + "name": "Lotzorai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.96940000", + "longitude": "9.66350000" + }, + { + "id": "139627", + "name": "Lu Bagnu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90184000", + "longitude": "8.68555000" + }, + { + "id": "139653", + "name": "Lula", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.47048000", + "longitude": "9.48684000" + }, + { + "id": "139657", + "name": "Lunamatrona", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.64943000", + "longitude": "8.89966000" + }, + { + "id": "139663", + "name": "Luogosanto", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "41.04681000", + "longitude": "9.20553000" + }, + { + "id": "139668", + "name": "Luras", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.93643000", + "longitude": "9.17480000" + }, + { + "id": "139703", + "name": "Macomer", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26233000", + "longitude": "8.76733000" + }, + { + "id": "139740", + "name": "Magomadas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26321000", + "longitude": "8.52327000" + }, + { + "id": "139781", + "name": "Mamoiada", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21487000", + "longitude": "9.28189000" + }, + { + "id": "139784", + "name": "Mandas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.65514000", + "longitude": "9.12955000" + }, + { + "id": "139817", + "name": "Mara", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.41019000", + "longitude": "8.63664000" + }, + { + "id": "139818", + "name": "Maracalagonis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.28574000", + "longitude": "9.22874000" + }, + { + "id": "139916", + "name": "Marrubiu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.75124000", + "longitude": "8.63766000" + }, + { + "id": "139939", + "name": "Martis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77804000", + "longitude": "8.80897000" + }, + { + "id": "139950", + "name": "Masainas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.04993000", + "longitude": "8.62924000" + }, + { + "id": "139991", + "name": "Masullas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.70044000", + "longitude": "8.78371000" + }, + { + "id": "140013", + "name": "Meana Sardo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.94467000", + "longitude": "9.07355000" + }, + { + "id": "140148", + "name": "Milis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.05045000", + "longitude": "8.63702000" + }, + { + "id": "140191", + "name": "Modolo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.27535000", + "longitude": "8.53002000" + }, + { + "id": "140200", + "name": "Mogorella", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.86447000", + "longitude": "8.85913000" + }, + { + "id": "140201", + "name": "Mogoro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.68415000", + "longitude": "8.77661000" + }, + { + "id": "140261", + "name": "Monastir", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.38360000", + "longitude": "9.04445000" + }, + { + "id": "140302", + "name": "Monserrato", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.25642000", + "longitude": "9.14440000" + }, + { + "id": "140467", + "name": "Monteleone Rocca Doria", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.47206000", + "longitude": "8.56071000" + }, + { + "id": "140553", + "name": "Monti", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.80715000", + "longitude": "9.32553000" + }, + { + "id": "140590", + "name": "Montresta", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37365000", + "longitude": "8.49962000" + }, + { + "id": "140609", + "name": "Mores", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.54745000", + "longitude": "8.83302000" + }, + { + "id": "140614", + "name": "Morgongiori", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.74630000", + "longitude": "8.77041000" + }, + { + "id": "140686", + "name": "Muravera", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.41972000", + "longitude": "9.57471000" + }, + { + "id": "140695", + "name": "Muros", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67902000", + "longitude": "8.61780000" + }, + { + "id": "140699", + "name": "Musei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30232000", + "longitude": "8.66613000" + }, + { + "id": "140715", + "name": "Narbolia", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.04784000", + "longitude": "8.57552000" + }, + { + "id": "140716", + "name": "Narcao", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.16750000", + "longitude": "8.67500000" + }, + { + "id": "140742", + "name": "Neoneli", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.06475000", + "longitude": "8.94673000" + }, + { + "id": "140805", + "name": "Noragugume", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.22443000", + "longitude": "8.92012000" + }, + { + "id": "140806", + "name": "Norbello", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.13475000", + "longitude": "8.83203000" + }, + { + "id": "140843", + "name": "Nughedu San Nicolò", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.55736000", + "longitude": "9.02142000" + }, + { + "id": "140844", + "name": "Nughedu Santa Vittoria", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.10135000", + "longitude": "8.95247000" + }, + { + "id": "140845", + "name": "Nule", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.46266000", + "longitude": "9.19076000" + }, + { + "id": "140846", + "name": "Nulvi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78447000", + "longitude": "8.74358000" + }, + { + "id": "140849", + "name": "Nuoro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.31991000", + "longitude": "9.32568000" + }, + { + "id": "140853", + "name": "Nurachi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.97451000", + "longitude": "8.53965000" + }, + { + "id": "140854", + "name": "Nuragus", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.77771000", + "longitude": "9.03724000" + }, + { + "id": "140855", + "name": "Nurallao", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.78908000", + "longitude": "9.07802000" + }, + { + "id": "140856", + "name": "Nuraminis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.44258000", + "longitude": "9.01395000" + }, + { + "id": "140857", + "name": "Nuraxinieddu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93843000", + "longitude": "8.59910000" + }, + { + "id": "140858", + "name": "Nureci", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.82329000", + "longitude": "8.97484000" + }, + { + "id": "140859", + "name": "Nurri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.71122000", + "longitude": "9.22990000" + }, + { + "id": "140864", + "name": "Nuxis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.15456000", + "longitude": "8.73953000" + }, + { + "id": "140884", + "name": "Olbia", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92337000", + "longitude": "9.49802000" + }, + { + "id": "140896", + "name": "Olia Speciosa", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.27806000", + "longitude": "9.52500000" + }, + { + "id": "140897", + "name": "Oliena", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.27617000", + "longitude": "9.40193000" + }, + { + "id": "140905", + "name": "Ollastra", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95095000", + "longitude": "8.73423000" + }, + { + "id": "140906", + "name": "Ollolai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.16805000", + "longitude": "9.17776000" + }, + { + "id": "140908", + "name": "Olmedo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.65156000", + "longitude": "8.38021000" + }, + { + "id": "140916", + "name": "Olzai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.18238000", + "longitude": "9.14679000" + }, + { + "id": "140921", + "name": "Onanì", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.48536000", + "longitude": "9.44324000" + }, + { + "id": "140924", + "name": "Onifai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40694000", + "longitude": "9.65005000" + }, + { + "id": "140925", + "name": "Oniferi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.27196000", + "longitude": "9.17033000" + }, + { + "id": "140937", + "name": "Orani", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.25200000", + "longitude": "9.18149000" + }, + { + "id": "140950", + "name": "Orgosolo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.20530000", + "longitude": "9.35445000" + }, + { + "id": "140960", + "name": "Oristano", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.90360000", + "longitude": "8.59257000" + }, + { + "id": "140966", + "name": "Orosei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.37826000", + "longitude": "9.69248000" + }, + { + "id": "140967", + "name": "Orotelli", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.30663000", + "longitude": "9.12150000" + }, + { + "id": "140969", + "name": "Orroli", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.69237000", + "longitude": "9.24995000" + }, + { + "id": "140980", + "name": "Ortacesus", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.53904000", + "longitude": "9.08695000" + }, + { + "id": "140991", + "name": "Ortueri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03545000", + "longitude": "8.98591000" + }, + { + "id": "140992", + "name": "Orune", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.40786000", + "longitude": "9.36963000" + }, + { + "id": "141002", + "name": "Oschiri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.71977000", + "longitude": "9.10102000" + }, + { + "id": "141003", + "name": "Osidda", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.52368000", + "longitude": "9.22053000" + }, + { + "id": "141006", + "name": "Osilo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.74349000", + "longitude": "8.67113000" + }, + { + "id": "141008", + "name": "Osini", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.82257000", + "longitude": "9.49640000" + }, + { + "id": "141026", + "name": "Ossi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67483000", + "longitude": "8.59254000" + }, + { + "id": "141047", + "name": "Ottana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.23402000", + "longitude": "9.04459000" + }, + { + "id": "141049", + "name": "Ottava", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78525000", + "longitude": "8.47543000" + }, + { + "id": "141059", + "name": "Ovodda", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09525000", + "longitude": "9.16103000" + }, + { + "id": "141062", + "name": "Ozieri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58630000", + "longitude": "9.00340000" + }, + { + "id": "141067", + "name": "Pabillonis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.59228000", + "longitude": "8.72143000" + }, + { + "id": "141086", + "name": "Padria", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39635000", + "longitude": "8.62992000" + }, + { + "id": "141087", + "name": "Padru", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.76619000", + "longitude": "9.52100000" + }, + { + "id": "58225", + "name": "Palau", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "41.17936000", + "longitude": "9.38190000" + }, + { + "id": "58257", + "name": "Palmas Arborea", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.87670000", + "longitude": "8.64391000" + }, + { + "id": "58349", + "name": "Pattada", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.58067000", + "longitude": "9.11129000" + }, + { + "id": "58352", + "name": "Pau", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.79167000", + "longitude": "8.80222000" + }, + { + "id": "58354", + "name": "Pauli Arbarei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.66183000", + "longitude": "8.92212000" + }, + { + "id": "58355", + "name": "Paulilatino", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.08470000", + "longitude": "8.76449000" + }, + { + "id": "58416", + "name": "Perdasdefogu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.67959000", + "longitude": "9.44082000" + }, + { + "id": "58417", + "name": "Perdaxius", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.16028000", + "longitude": "8.61083000" + }, + { + "id": "58421", + "name": "Perfugas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83231000", + "longitude": "8.88354000" + }, + { + "id": "58669", + "name": "Pimentel", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.48718000", + "longitude": "9.06516000" + }, + { + "id": "58705", + "name": "Piscinas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.07435000", + "longitude": "8.66634000" + }, + { + "id": "58739", + "name": "Ploaghe", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67068000", + "longitude": "8.74962000" + }, + { + "id": "58766", + "name": "Poggio dei Pini", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.14717000", + "longitude": "8.97139000" + }, + { + "id": "58821", + "name": "Pompu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.72518000", + "longitude": "8.79640000" + }, + { + "id": "58925", + "name": "Porto Cervo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "41.14063000", + "longitude": "9.53267000" + }, + { + "id": "58938", + "name": "Porto Torres", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.83375000", + "longitude": "8.40531000" + }, + { + "id": "58949", + "name": "Portoscuso", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.20739000", + "longitude": "8.38086000" + }, + { + "id": "58952", + "name": "Posada", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63203000", + "longitude": "9.71904000" + }, + { + "id": "58987", + "name": "Pozzomaggiore", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39767000", + "longitude": "8.65931000" + }, + { + "id": "59119", + "name": "Provincia di Cagliari", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.24502000", + "longitude": "9.09119000" + }, + { + "id": "59153", + "name": "Provincia di Nuoro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21397000", + "longitude": "9.37095000" + }, + { + "id": "59154", + "name": "Provincia di Oristano", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.01682000", + "longitude": "8.73131000" + }, + { + "id": "59173", + "name": "Provincia di Sassari", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77014000", + "longitude": "8.75885000" + }, + { + "id": "59200", + "name": "Pula", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.00727000", + "longitude": "9.00223000" + }, + { + "id": "59208", + "name": "Putifigari", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.56145000", + "longitude": "8.46063000" + }, + { + "id": "59231", + "name": "Quartu Sant'Elena", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.22935000", + "longitude": "9.25004000" + }, + { + "id": "59232", + "name": "Quartucciu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.25262000", + "longitude": "9.17764000" + }, + { + "id": "59392", + "name": "Riola Sardo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.99361000", + "longitude": "8.54127000" + }, + { + "id": "59574", + "name": "Romana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.48439000", + "longitude": "8.58571000" + }, + { + "id": "59700", + "name": "Ruinas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.90631000", + "longitude": "8.89705000" + }, + { + "id": "59722", + "name": "Sadali", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.81456000", + "longitude": "9.27246000" + }, + { + "id": "59723", + "name": "Sagama", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26155000", + "longitude": "8.57752000" + }, + { + "id": "59799", + "name": "Samassi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.48208000", + "longitude": "8.90538000" + }, + { + "id": "59800", + "name": "Samatzai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.48297000", + "longitude": "9.03466000" + }, + { + "id": "59816", + "name": "Samugheo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.94854000", + "longitude": "8.94152000" + }, + { + "id": "59824", + "name": "San Basilio", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.53785000", + "longitude": "9.19753000" + }, + { + "id": "59930", + "name": "San Gavino Monreale", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.55008000", + "longitude": "8.79065000" + }, + { + "id": "59989", + "name": "San Giovanni Suergiu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.10955000", + "longitude": "8.52039000" + }, + { + "id": "60135", + "name": "San Nicola", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.61055000", + "longitude": "8.98841000" + }, + { + "id": "60149", + "name": "San Nicolò d'Arcidano", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.68417000", + "longitude": "8.64361000" + }, + { + "id": "60143", + "name": "San Nicolo'Gerrei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.49833000", + "longitude": "9.30611000" + }, + { + "id": "60249", + "name": "San Sperate", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.35758000", + "longitude": "9.00814000" + }, + { + "id": "60253", + "name": "San Teodoro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.77354000", + "longitude": "9.66929000" + }, + { + "id": "60264", + "name": "San Vero Milis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.01377000", + "longitude": "8.59833000" + }, + { + "id": "60272", + "name": "San Vito", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.44142000", + "longitude": "9.54065000" + }, + { + "id": "60308", + "name": "Sanluri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.56176000", + "longitude": "8.89969000" + }, + { + "id": "60345", + "name": "Sant'Andrea Frius", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.47917000", + "longitude": "9.17000000" + }, + { + "id": "60374", + "name": "Sant'Anna Arresi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.00618000", + "longitude": "8.64236000" + }, + { + "id": "60377", + "name": "Sant'Antioco", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.07017000", + "longitude": "8.45243000" + }, + { + "id": "60384", + "name": "Sant'Antonio di Gallura", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.99146000", + "longitude": "9.30153000" + }, + { + "id": "60439", + "name": "Santa Giusta", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.88070000", + "longitude": "8.60916000" + }, + { + "id": "60461", + "name": "Santa Maria Coghinas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90423000", + "longitude": "8.86383000" + }, + { + "id": "60467", + "name": "Santa Maria Navarrese", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.99029000", + "longitude": "9.68398000" + }, + { + "id": "60495", + "name": "Santa Teresa Gallura", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "41.23859000", + "longitude": "9.18873000" + }, + { + "id": "60501", + "name": "Santadi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.09356000", + "longitude": "8.71259000" + }, + { + "id": "60531", + "name": "Santu Lussurgiu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.14110000", + "longitude": "8.65539000" + }, + { + "id": "60543", + "name": "Sardara", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.61465000", + "longitude": "8.82088000" + }, + { + "id": "60557", + "name": "Sarroch", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.06577000", + "longitude": "9.00937000" + }, + { + "id": "60562", + "name": "Sarule", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.22796000", + "longitude": "9.16644000" + }, + { + "id": "60568", + "name": "Sassari", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.72586000", + "longitude": "8.55552000" + }, + { + "id": "60624", + "name": "Scano di Montiferro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21525000", + "longitude": "8.58692000" + }, + { + "id": "60682", + "name": "Sedilo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.17292000", + "longitude": "8.91993000" + }, + { + "id": "60683", + "name": "Sedini", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.85277000", + "longitude": "8.81670000" + }, + { + "id": "60687", + "name": "Segariu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.56403000", + "longitude": "8.98163000" + }, + { + "id": "60693", + "name": "Selargius", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.25779000", + "longitude": "9.16323000" + }, + { + "id": "60697", + "name": "Selegas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.56780000", + "longitude": "9.10348000" + }, + { + "id": "60713", + "name": "Semestene", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.39846000", + "longitude": "8.72542000" + }, + { + "id": "60721", + "name": "Seneghe", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.08128000", + "longitude": "8.61353000" + }, + { + "id": "60725", + "name": "Senis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.82318000", + "longitude": "8.93916000" + }, + { + "id": "60729", + "name": "Sennariolo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.21235000", + "longitude": "8.55572000" + }, + { + "id": "60730", + "name": "Sennori", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.78780000", + "longitude": "8.59285000" + }, + { + "id": "60731", + "name": "Senorbì", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.53341000", + "longitude": "9.13168000" + }, + { + "id": "60736", + "name": "Serdiana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.37457000", + "longitude": "9.15851000" + }, + { + "id": "60762", + "name": "Serramanna", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.42335000", + "longitude": "8.92243000" + }, + { + "id": "60781", + "name": "Serrenti", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.49277000", + "longitude": "8.97659000" + }, + { + "id": "60782", + "name": "Serri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.70150000", + "longitude": "9.14490000" + }, + { + "id": "60805", + "name": "Sestu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.29846000", + "longitude": "9.09248000" + }, + { + "id": "60814", + "name": "Settimo San Pietro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.29110000", + "longitude": "9.18570000" + }, + { + "id": "60818", + "name": "Setzu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.72306000", + "longitude": "8.93972000" + }, + { + "id": "60819", + "name": "Seui", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.83908000", + "longitude": "9.32347000" + }, + { + "id": "60820", + "name": "Seulo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.86955000", + "longitude": "9.23606000" + }, + { + "id": "60833", + "name": "Siamaggiore", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.94966000", + "longitude": "8.63461000" + }, + { + "id": "60834", + "name": "Siamanna", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.91936000", + "longitude": "8.76185000" + }, + { + "id": "60837", + "name": "Siapiccia", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.92765000", + "longitude": "8.76270000" + }, + { + "id": "60841", + "name": "Siddi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.67255000", + "longitude": "8.88815000" + }, + { + "id": "60848", + "name": "Silanus", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28709000", + "longitude": "8.89199000" + }, + { + "id": "60858", + "name": "Silì", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.91789000", + "longitude": "8.62194000" + }, + { + "id": "60850", + "name": "Siligo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.57483000", + "longitude": "8.72835000" + }, + { + "id": "60851", + "name": "Siliqua", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30100000", + "longitude": "8.80584000" + }, + { + "id": "60852", + "name": "Silius", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.51695000", + "longitude": "9.29360000" + }, + { + "id": "60859", + "name": "Simala", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.72099000", + "longitude": "8.82802000" + }, + { + "id": "60860", + "name": "Simaxis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.92995000", + "longitude": "8.68979000" + }, + { + "id": "60864", + "name": "Sindia", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.29518000", + "longitude": "8.65707000" + }, + { + "id": "60865", + "name": "Sini", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.75353000", + "longitude": "8.90486000" + }, + { + "id": "60868", + "name": "Siniscola", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.57344000", + "longitude": "9.69695000" + }, + { + "id": "60869", + "name": "Sinnai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.30286000", + "longitude": "9.20283000" + }, + { + "id": "60873", + "name": "Siris", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.71228000", + "longitude": "8.77507000" + }, + { + "id": "60882", + "name": "Siurgus Donigala", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.59961000", + "longitude": "9.18746000" + }, + { + "id": "60895", + "name": "Soddì", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.12991000", + "longitude": "8.87798000" + }, + { + "id": "60901", + "name": "Solanas", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.93031000", + "longitude": "8.55340000" + }, + { + "id": "60908", + "name": "Solarussa", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95499000", + "longitude": "8.67393000" + }, + { + "id": "60913", + "name": "Soleminis", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.34760000", + "longitude": "9.18127000" + }, + { + "id": "60955", + "name": "Sorgono", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.02595000", + "longitude": "9.10203000" + }, + { + "id": "60965", + "name": "Sorradile", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.10634000", + "longitude": "8.93236000" + }, + { + "id": "60967", + "name": "Sorso", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.79949000", + "longitude": "8.57570000" + }, + { + "id": "61077", + "name": "Stintino", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.95201000", + "longitude": "8.21978000" + }, + { + "id": "61106", + "name": "Su Planu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.25487000", + "longitude": "9.10660000" + }, + { + "id": "61112", + "name": "Suelli", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.56257000", + "longitude": "9.13245000" + }, + { + "id": "61121", + "name": "Suni", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.28085000", + "longitude": "8.54942000" + }, + { + "id": "61139", + "name": "Tadasuni", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.10995000", + "longitude": "8.88353000" + }, + { + "id": "61153", + "name": "Talana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.04157000", + "longitude": "9.49554000" + }, + { + "id": "61207", + "name": "Telti", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.87575000", + "longitude": "9.35328000" + }, + { + "id": "61210", + "name": "Tempio Pausania", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.90068000", + "longitude": "9.10456000" + }, + { + "id": "61222", + "name": "Tergu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.86652000", + "longitude": "8.71467000" + }, + { + "id": "61238", + "name": "Terralba", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.72056000", + "longitude": "8.63504000" + }, + { + "id": "61254", + "name": "Tertenia", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.69518000", + "longitude": "9.57878000" + }, + { + "id": "61265", + "name": "Teti", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09737000", + "longitude": "9.11923000" + }, + { + "id": "61268", + "name": "Teulada", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "38.96658000", + "longitude": "8.77149000" + }, + { + "id": "61272", + "name": "Thiesi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.52398000", + "longitude": "8.72001000" + }, + { + "id": "61273", + "name": "Tiana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.06746000", + "longitude": "9.14817000" + }, + { + "id": "61279", + "name": "Tinnura", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.26916000", + "longitude": "8.54815000" + }, + { + "id": "61286", + "name": "Tissi", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.67832000", + "longitude": "8.56127000" + }, + { + "id": "61307", + "name": "Tonara", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.02465000", + "longitude": "9.17204000" + }, + { + "id": "61340", + "name": "Torpè", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.62780000", + "longitude": "9.67916000" + }, + { + "id": "61342", + "name": "Torralba", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.51296000", + "longitude": "8.76532000" + }, + { + "id": "61411", + "name": "Tortolì", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.92626000", + "longitude": "9.65569000" + }, + { + "id": "61430", + "name": "Tramatza", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.00292000", + "longitude": "8.64944000" + }, + { + "id": "61447", + "name": "Tratalias", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.10347000", + "longitude": "8.57858000" + }, + { + "id": "61498", + "name": "Tresnuraghes", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.25235000", + "longitude": "8.52092000" + }, + { + "id": "61523", + "name": "Triei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.03498000", + "longitude": "9.63995000" + }, + { + "id": "61530", + "name": "Trinità d'Agultu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98589000", + "longitude": "8.91377000" + }, + { + "id": "61531", + "name": "Trinità d'Agultu e Vignola", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.98377000", + "longitude": "8.91562000" + }, + { + "id": "61567", + "name": "Tuili", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.71477000", + "longitude": "8.96020000" + }, + { + "id": "61568", + "name": "Tula", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.73246000", + "longitude": "8.98392000" + }, + { + "id": "61576", + "name": "Turri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.70476000", + "longitude": "8.91656000" + }, + { + "id": "61593", + "name": "Ulassai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.81033000", + "longitude": "9.49962000" + }, + { + "id": "61596", + "name": "Ulà Tirso", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.04570000", + "longitude": "8.90326000" + }, + { + "id": "61600", + "name": "Uras", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.69799000", + "longitude": "8.70143000" + }, + { + "id": "61607", + "name": "Uri", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.63841000", + "longitude": "8.48881000" + }, + { + "id": "61609", + "name": "Urzulei", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.09284000", + "longitude": "9.50800000" + }, + { + "id": "61611", + "name": "Usellus", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.80833000", + "longitude": "8.85167000" + }, + { + "id": "61612", + "name": "Usini", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.66416000", + "longitude": "8.53919000" + }, + { + "id": "61614", + "name": "Ussana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.39374000", + "longitude": "9.07496000" + }, + { + "id": "61615", + "name": "Ussaramanna", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.69250000", + "longitude": "8.90850000" + }, + { + "id": "61616", + "name": "Ussassai", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.80998000", + "longitude": "9.39508000" + }, + { + "id": "61620", + "name": "Uta", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.29186000", + "longitude": "8.95234000" + }, + { + "id": "61706", + "name": "Valledoria", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.92867000", + "longitude": "8.82321000" + }, + { + "id": "61714", + "name": "Vallermosa", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.36389000", + "longitude": "8.79556000" + }, + { + "id": "61929", + "name": "Viddalba", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.91259000", + "longitude": "8.89009000" + }, + { + "id": "62020", + "name": "Villa San Pietro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.03554000", + "longitude": "8.99695000" + }, + { + "id": "62023", + "name": "Villa Sant'Antonio", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.85915000", + "longitude": "8.90153000" + }, + { + "id": "62029", + "name": "Villa Verde", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.79551000", + "longitude": "8.82114000" + }, + { + "id": "62050", + "name": "Villacidro", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.45734000", + "longitude": "8.74105000" + }, + { + "id": "62072", + "name": "Villagrande Strisaili", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.95929000", + "longitude": "9.50943000" + }, + { + "id": "62082", + "name": "Villamar", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.61884000", + "longitude": "8.95877000" + }, + { + "id": "62084", + "name": "Villamassargia", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.27484000", + "longitude": "8.64110000" + }, + { + "id": "62101", + "name": "Villanova Monteleone", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "40.50264000", + "longitude": "8.47115000" + }, + { + "id": "62103", + "name": "Villanova Truschedu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.98842000", + "longitude": "8.75177000" + }, + { + "id": "62104", + "name": "Villanova Tulo", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.77995000", + "longitude": "9.21424000" + }, + { + "id": "62111", + "name": "Villanovaforru", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.63196000", + "longitude": "8.86979000" + }, + { + "id": "62112", + "name": "Villanovafranca", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.64442000", + "longitude": "9.00244000" + }, + { + "id": "62116", + "name": "Villaperuccio", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.11183000", + "longitude": "8.67004000" + }, + { + "id": "62120", + "name": "Villaputzu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.44058000", + "longitude": "9.57564000" + }, + { + "id": "62133", + "name": "Villasalto", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.49209000", + "longitude": "9.39023000" + }, + { + "id": "62136", + "name": "Villasimius", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.14481000", + "longitude": "9.51823000" + }, + { + "id": "62138", + "name": "Villasor", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.38130000", + "longitude": "8.94270000" + }, + { + "id": "62139", + "name": "Villaspeciosa", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.31142000", + "longitude": "8.92584000" + }, + { + "id": "62144", + "name": "Villaurbana", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.88505000", + "longitude": "8.77831000" + }, + { + "id": "62240", + "name": "Zeddiani", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.98898000", + "longitude": "8.59580000" + }, + { + "id": "62252", + "name": "Zerfaliu", + "state_id": 1715, + "state_code": "88", + "country_id": 107, + "country_code": "IT", + "latitude": "39.96088000", + "longitude": "8.70971000" + }, + { + "id": "135246", + "name": "Acate", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.02318000", + "longitude": "14.49302000" + }, + { + "id": "135256", + "name": "Aci Bonaccorsi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.59640000", + "longitude": "15.10724000" + }, + { + "id": "135257", + "name": "Aci Castello", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.55564000", + "longitude": "15.14535000" + }, + { + "id": "135258", + "name": "Aci Catena", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.60614000", + "longitude": "15.14165000" + }, + { + "id": "135259", + "name": "Aci Sant'Antonio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.60499000", + "longitude": "15.12294000" + }, + { + "id": "135260", + "name": "Aci Trezza", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56385000", + "longitude": "15.16136000" + }, + { + "id": "135262", + "name": "Acireale", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.60886000", + "longitude": "15.16577000" + }, + { + "id": "135263", + "name": "Acitrezza", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.55960000", + "longitude": "15.15990000" + }, + { + "id": "135279", + "name": "Acquaviva Platani", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.57174000", + "longitude": "13.70156000" + }, + { + "id": "135282", + "name": "Acquedolci", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05708000", + "longitude": "14.58550000" + }, + { + "id": "135287", + "name": "Adrano", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.66358000", + "longitude": "14.83283000" + }, + { + "id": "135300", + "name": "Agira", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.65580000", + "longitude": "14.51972000" + }, + { + "id": "135302", + "name": "Agliandroni-Paternella", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.13280000", + "longitude": "13.06884000" + }, + { + "id": "135318", + "name": "Agrigento", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.45000000", + "longitude": "13.50000000" + }, + { + "id": "135324", + "name": "Aidone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.41468000", + "longitude": "14.44542000" + }, + { + "id": "135454", + "name": "Alì", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02678000", + "longitude": "15.41910000" + }, + { + "id": "135455", + "name": "Alì Terme", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.00506000", + "longitude": "15.42269000" + }, + { + "id": "135389", + "name": "Alcamo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.97790000", + "longitude": "12.96473000" + }, + { + "id": "135390", + "name": "Alcara Li Fusi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02143000", + "longitude": "14.70142000" + }, + { + "id": "135396", + "name": "Alessandria della Rocca", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56767000", + "longitude": "13.45343000" + }, + { + "id": "135406", + "name": "Alia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.77867000", + "longitude": "13.71391000" + }, + { + "id": "135412", + "name": "Alimena", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.69310000", + "longitude": "14.11369000" + }, + { + "id": "135413", + "name": "Aliminusa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.86395000", + "longitude": "13.78126000" + }, + { + "id": "135433", + "name": "Altavilla Milicia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.03800000", + "longitude": "13.54947000" + }, + { + "id": "135444", + "name": "Altofonte", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04298000", + "longitude": "13.29434000" + }, + { + "id": "135519", + "name": "Antillo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.97937000", + "longitude": "15.24029000" + }, + { + "id": "135550", + "name": "Aragona", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.39904000", + "longitude": "13.61974000" + }, + { + "id": "135669", + "name": "Assoro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.62210000", + "longitude": "14.41810000" + }, + { + "id": "135685", + "name": "Augusta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.24065000", + "longitude": "15.22121000" + }, + { + "id": "135713", + "name": "Avola", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.90840000", + "longitude": "15.13937000" + }, + { + "id": "135747", + "name": "Bagheria", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.07892000", + "longitude": "13.51237000" + }, + { + "id": "135787", + "name": "Balestrate", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05125000", + "longitude": "13.00724000" + }, + { + "id": "135834", + "name": "Barcellona Pozzo di Gotto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.14772000", + "longitude": "15.21469000" + }, + { + "id": "135868", + "name": "Barrafranca", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.37850000", + "longitude": "14.20270000" + }, + { + "id": "135885", + "name": "Basicò", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.06077000", + "longitude": "15.06263000" + }, + { + "id": "135911", + "name": "Baucina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.92521000", + "longitude": "13.53636000" + }, + { + "id": "135953", + "name": "Belmonte Mezzagno", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04653000", + "longitude": "13.39207000" + }, + { + "id": "135957", + "name": "Belpasso", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.59192000", + "longitude": "14.97985000" + }, + { + "id": "135960", + "name": "Belvedere", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.08839000", + "longitude": "15.21314000" + }, + { + "id": "135966", + "name": "Belvedere-Piano Tavola", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.52955000", + "longitude": "14.98786000" + }, + { + "id": "136028", + "name": "Biancavilla", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.64442000", + "longitude": "14.86685000" + }, + { + "id": "136060", + "name": "Bisacquino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.70352000", + "longitude": "13.26051000" + }, + { + "id": "136075", + "name": "Bivona", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.61797000", + "longitude": "13.43895000" + }, + { + "id": "136083", + "name": "Blufi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.75205000", + "longitude": "14.07296000" + }, + { + "id": "136110", + "name": "Bolognetta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.97120000", + "longitude": "13.45627000" + }, + { + "id": "136120", + "name": "Bompensiere", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.47240000", + "longitude": "13.78140000" + }, + { + "id": "136121", + "name": "Bompietro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.74394000", + "longitude": "14.09470000" + }, + { + "id": "136157", + "name": "Borgetto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04664000", + "longitude": "13.14071000" + }, + { + "id": "136349", + "name": "Brolo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.15623000", + "longitude": "14.82799000" + }, + { + "id": "136353", + "name": "Bronte", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.78863000", + "longitude": "14.83377000" + }, + { + "id": "136361", + "name": "Brucoli", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.28191000", + "longitude": "15.18836000" + }, + { + "id": "136384", + "name": "Buccheri", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.12494000", + "longitude": "14.85222000" + }, + { + "id": "136412", + "name": "Burgio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.60094000", + "longitude": "13.28826000" + }, + { + "id": "136423", + "name": "Buscemi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.08604000", + "longitude": "14.88499000" + }, + { + "id": "136425", + "name": "Buseto Palizzolo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.00339000", + "longitude": "12.70911000" + }, + { + "id": "136436", + "name": "Butera", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.19100000", + "longitude": "14.18232000" + }, + { + "id": "136451", + "name": "Caccamo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.93357000", + "longitude": "13.66808000" + }, + { + "id": "136489", + "name": "Calamonaci", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.52566000", + "longitude": "13.29053000" + }, + { + "id": "136493", + "name": "Calascibetta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.59024000", + "longitude": "14.27180000" + }, + { + "id": "136496", + "name": "Calatabiano", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82049000", + "longitude": "15.23069000" + }, + { + "id": "136497", + "name": "Calatafimi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91440000", + "longitude": "12.86364000" + }, + { + "id": "136540", + "name": "Caltabellotta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.57543000", + "longitude": "13.21632000" + }, + { + "id": "136541", + "name": "Caltagirone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.23785000", + "longitude": "14.51551000" + }, + { + "id": "136543", + "name": "Caltanissetta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.49025000", + "longitude": "14.06216000" + }, + { + "id": "136544", + "name": "Caltavuturo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82040000", + "longitude": "13.89158000" + }, + { + "id": "136571", + "name": "Camastra", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.25380000", + "longitude": "13.79211000" + }, + { + "id": "136594", + "name": "Cammarata", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.63361000", + "longitude": "13.62722000" + }, + { + "id": "136609", + "name": "Campanella-Gianforma", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.92630000", + "longitude": "14.83360000" + }, + { + "id": "136639", + "name": "Campobello di Licata", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.25759000", + "longitude": "13.91811000" + }, + { + "id": "136640", + "name": "Campobello di Mazara", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.63464000", + "longitude": "12.74946000" + }, + { + "id": "136650", + "name": "Campofelice di Fitalia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82686000", + "longitude": "13.48572000" + }, + { + "id": "136651", + "name": "Campofelice di Roccella", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.99270000", + "longitude": "13.87648000" + }, + { + "id": "136654", + "name": "Campofiorito", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.75374000", + "longitude": "13.26875000" + }, + { + "id": "136656", + "name": "Campofranco", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.51208000", + "longitude": "13.71213000" + }, + { + "id": "136674", + "name": "Camporeale", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.88612000", + "longitude": "13.10107000" + }, + { + "id": "136677", + "name": "Camporotondo Etneo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56565000", + "longitude": "15.00319000" + }, + { + "id": "136690", + "name": "Canalicchio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.54097000", + "longitude": "15.09645000" + }, + { + "id": "136712", + "name": "Canicattì", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.35842000", + "longitude": "13.84786000" + }, + { + "id": "136711", + "name": "Canicattini Bagni", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.03171000", + "longitude": "15.06388000" + }, + { + "id": "136721", + "name": "Canneto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.49505000", + "longitude": "14.96037000" + }, + { + "id": "136725", + "name": "Cannizzaro-Favara", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.06163000", + "longitude": "13.27167000" + }, + { + "id": "136758", + "name": "Capaci", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17107000", + "longitude": "13.23930000" + }, + { + "id": "136776", + "name": "Capizzi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.84788000", + "longitude": "14.47976000" + }, + { + "id": "136778", + "name": "Capo d'Orlando", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.14262000", + "longitude": "14.73292000" + }, + { + "id": "136810", + "name": "Capri Leone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.08682000", + "longitude": "14.72959000" + }, + { + "id": "136880", + "name": "Carini", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.13240000", + "longitude": "13.18274000" + }, + { + "id": "136886", + "name": "Carlentini", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.28071000", + "longitude": "15.01020000" + }, + { + "id": "136900", + "name": "Caronia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02381000", + "longitude": "14.44142000" + }, + { + "id": "136931", + "name": "Carrozziere", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.03760000", + "longitude": "15.27195000" + }, + { + "id": "136932", + "name": "Carruba", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.69062000", + "longitude": "15.18815000" + }, + { + "id": "136933", + "name": "Carrubazza-Motta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.55323000", + "longitude": "15.10819000" + }, + { + "id": "136950", + "name": "Casa Santa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02514000", + "longitude": "12.54840000" + }, + { + "id": "137010", + "name": "Casalvecchio Siculo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.95850000", + "longitude": "15.32371000" + }, + { + "id": "137102", + "name": "Cassaro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.10571000", + "longitude": "14.94697000" + }, + { + "id": "137103", + "name": "Cassibile", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.97862000", + "longitude": "15.20061000" + }, + { + "id": "137125", + "name": "Castanea delle Furie", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.26165000", + "longitude": "15.52178000" + }, + { + "id": "137170", + "name": "Castel di Judica", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.49475000", + "longitude": "14.64744000" + }, + { + "id": "137172", + "name": "Castel di Lucio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.88698000", + "longitude": "14.31116000" + }, + { + "id": "137183", + "name": "Castelbuono", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.92530000", + "longitude": "14.08665000" + }, + { + "id": "137188", + "name": "Casteldaccia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05121000", + "longitude": "13.53041000" + }, + { + "id": "137209", + "name": "Castell'Umberto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.08626000", + "longitude": "14.80686000" + }, + { + "id": "137212", + "name": "Castellammare del Golfo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02653000", + "longitude": "12.88183000" + }, + { + "id": "137216", + "name": "Castellana Sicula", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.78686000", + "longitude": "14.03906000" + }, + { + "id": "137268", + "name": "Castelluzzo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.10096000", + "longitude": "12.73599000" + }, + { + "id": "137275", + "name": "Castelmola", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.85829000", + "longitude": "15.27713000" + }, + { + "id": "137318", + "name": "Casteltermini", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.53874000", + "longitude": "13.64601000" + }, + { + "id": "137329", + "name": "Castelvetrano", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.68081000", + "longitude": "12.79194000" + }, + { + "id": "137357", + "name": "Castiglione di Sicilia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.88150000", + "longitude": "15.12156000" + }, + { + "id": "137380", + "name": "Castrofilippo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.35046000", + "longitude": "13.75001000" + }, + { + "id": "137385", + "name": "Castronuovo di Sicilia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.67894000", + "longitude": "13.60346000" + }, + { + "id": "137387", + "name": "Castroreale", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09857000", + "longitude": "15.21012000" + }, + { + "id": "137391", + "name": "Catania", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.47169000", + "longitude": "14.84731000" + }, + { + "id": "137394", + "name": "Catenanuova", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56876000", + "longitude": "14.69076000" + }, + { + "id": "137397", + "name": "Cattolica Eraclea", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.44069000", + "longitude": "13.39265000" + }, + { + "id": "137403", + "name": "Cava d'Aliga", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.72964000", + "longitude": "14.69031000" + }, + { + "id": "137458", + "name": "Cefalà Diana", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91565000", + "longitude": "13.46325000" + }, + { + "id": "137459", + "name": "Cefalù", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.03856000", + "longitude": "14.02285000" + }, + { + "id": "137504", + "name": "Centuripe", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.62336000", + "longitude": "14.74049000" + }, + { + "id": "137511", + "name": "Cerami", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.80953000", + "longitude": "14.50660000" + }, + { + "id": "137529", + "name": "Cerda", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.90578000", + "longitude": "13.81496000" + }, + { + "id": "137598", + "name": "Cerza", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.54297000", + "longitude": "15.10510000" + }, + { + "id": "137609", + "name": "Cesarò", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.84476000", + "longitude": "14.71308000" + }, + { + "id": "137643", + "name": "Chianchitta-Pallio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82108000", + "longitude": "15.25317000" + }, + { + "id": "137644", + "name": "Chianchitta-Trappitello", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82984000", + "longitude": "15.25077000" + }, + { + "id": "137648", + "name": "Chiaramonte Gulfi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.03050000", + "longitude": "14.70302000" + }, + { + "id": "137687", + "name": "Chiusa Sclafani", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.67692000", + "longitude": "13.27074000" + }, + { + "id": "137700", + "name": "Ciaculli", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.07530000", + "longitude": "13.40719000" + }, + { + "id": "137702", + "name": "Cianciana", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.51896000", + "longitude": "13.43349000" + }, + { + "id": "137705", + "name": "Ciavolo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.77943000", + "longitude": "12.53774000" + }, + { + "id": "137724", + "name": "Ciminna", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.89765000", + "longitude": "13.55966000" + }, + { + "id": "137735", + "name": "Cinisi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16082000", + "longitude": "13.10099000" + }, + { + "id": "137771", + "name": "Città Giardino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.10444000", + "longitude": "15.21172000" + }, + { + "id": "137894", + "name": "Collesano", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91809000", + "longitude": "13.93702000" + }, + { + "id": "137942", + "name": "Comiso", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.94893000", + "longitude": "14.60731000" + }, + { + "id": "137943", + "name": "Comitini", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.40735000", + "longitude": "13.64530000" + }, + { + "id": "137965", + "name": "Condrò", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17375000", + "longitude": "15.32660000" + }, + { + "id": "137977", + "name": "Contessa Entellina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.73005000", + "longitude": "13.18425000" + }, + { + "id": "138017", + "name": "Corleone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.81338000", + "longitude": "13.30170000" + }, + { + "id": "138216", + "name": "Custonaci", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.07931000", + "longitude": "12.68571000" + }, + { + "id": "138242", + "name": "Delia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.35796000", + "longitude": "13.92867000" + }, + { + "id": "138300", + "name": "Donnalucata", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.76117000", + "longitude": "14.64022000" + }, + { + "id": "138360", + "name": "Enna", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.58333000", + "longitude": "14.43333000" + }, + { + "id": "138374", + "name": "Erice", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.03785000", + "longitude": "12.58778000" + }, + { + "id": "138389", + "name": "Evangelisti-Rubino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98412000", + "longitude": "15.17324000" + }, + { + "id": "138417", + "name": "Falcone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.11698000", + "longitude": "15.07965000" + }, + { + "id": "138450", + "name": "Faro Superiore", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.26794000", + "longitude": "15.58268000" + }, + { + "id": "138459", + "name": "Favara", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.31754000", + "longitude": "13.66226000" + }, + { + "id": "138462", + "name": "Favignana", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.92951000", + "longitude": "12.32958000" + }, + { + "id": "138481", + "name": "Ferla", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.11978000", + "longitude": "14.93881000" + }, + { + "id": "138503", + "name": "Ficarazzi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09229000", + "longitude": "13.46390000" + }, + { + "id": "138505", + "name": "Ficarra", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.10849000", + "longitude": "14.82990000" + }, + { + "id": "138534", + "name": "Finale", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.01891000", + "longitude": "14.16151000" + }, + { + "id": "138551", + "name": "Fiumedinisi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02596000", + "longitude": "15.38099000" + }, + { + "id": "138553", + "name": "Fiumefreddo Sicilia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.79146000", + "longitude": "15.20919000" + }, + { + "id": "138564", + "name": "Floresta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98779000", + "longitude": "14.91096000" + }, + { + "id": "138565", + "name": "Floridia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.08343000", + "longitude": "15.15332000" + }, + { + "id": "138587", + "name": "Fondachelli-Fantina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98476000", + "longitude": "15.17519000" + }, + { + "id": "138664", + "name": "Forza d'Agrò", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91539000", + "longitude": "15.33409000" + }, + { + "id": "138698", + "name": "Francavilla di Sicilia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.90197000", + "longitude": "15.13821000" + }, + { + "id": "138703", + "name": "Francofonte", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.22477000", + "longitude": "14.87488000" + }, + { + "id": "138727", + "name": "Frazzanò", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.07202000", + "longitude": "14.74407000" + }, + { + "id": "138748", + "name": "Fulgatore-Torretta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.94977000", + "longitude": "12.69303000" + }, + { + "id": "138756", + "name": "Furci Siculo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.96159000", + "longitude": "15.37763000" + }, + { + "id": "138757", + "name": "Furnari", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.10436000", + "longitude": "15.12358000" + }, + { + "id": "138775", + "name": "Gaggi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.85995000", + "longitude": "15.22126000" + }, + { + "id": "138782", + "name": "Gagliano Castelferrato", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.70967000", + "longitude": "14.53524000" + }, + { + "id": "138794", + "name": "Galati Mamertino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.03176000", + "longitude": "14.77145000" + }, + { + "id": "138819", + "name": "Gallodoro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.90206000", + "longitude": "15.29359000" + }, + { + "id": "138840", + "name": "Gangi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.79565000", + "longitude": "14.20437000" + }, + { + "id": "138889", + "name": "Gela", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.07381000", + "longitude": "14.24038000" + }, + { + "id": "138908", + "name": "Geraci Siculo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.85901000", + "longitude": "14.15333000" + }, + { + "id": "138937", + "name": "Giacalone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.03276000", + "longitude": "13.23695000" + }, + { + "id": "138940", + "name": "Giammoro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.20372000", + "longitude": "15.30666000" + }, + { + "id": "138944", + "name": "Giardina Gallotti", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.35073000", + "longitude": "13.52272000" + }, + { + "id": "138945", + "name": "Giardinello", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.08706000", + "longitude": "13.15648000" + }, + { + "id": "138946", + "name": "Giardini-Naxos", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82755000", + "longitude": "15.26713000" + }, + { + "id": "138948", + "name": "Giarratana", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.04741000", + "longitude": "14.79454000" + }, + { + "id": "138949", + "name": "Giarre", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.72440000", + "longitude": "15.18165000" + }, + { + "id": "138973", + "name": "Gioiosa Marea", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17373000", + "longitude": "14.89932000" + }, + { + "id": "138989", + "name": "Giuliana", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.67280000", + "longitude": "13.23737000" + }, + { + "id": "139004", + "name": "Gliaca", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16317000", + "longitude": "14.84768000" + }, + { + "id": "139010", + "name": "Godrano", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.90310000", + "longitude": "13.42823000" + }, + { + "id": "139058", + "name": "Grammichele", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.21326000", + "longitude": "14.63311000" + }, + { + "id": "139066", + "name": "Graniti", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.88986000", + "longitude": "15.22459000" + }, + { + "id": "139076", + "name": "Gratteri", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.96607000", + "longitude": "13.97314000" + }, + { + "id": "139082", + "name": "Gravina di Catania", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56085000", + "longitude": "15.06292000" + }, + { + "id": "139125", + "name": "Grotte", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.40346000", + "longitude": "13.69889000" + }, + { + "id": "139149", + "name": "Gualtieri Sicaminò", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16267000", + "longitude": "15.31699000" + }, + { + "id": "139177", + "name": "Guidomandri Marina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04528000", + "longitude": "15.46303000" + }, + { + "id": "139235", + "name": "Isnello", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.94324000", + "longitude": "14.00724000" + }, + { + "id": "139249", + "name": "Isola delle Femmine", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.19123000", + "longitude": "13.24691000" + }, + { + "id": "139259", + "name": "Ispica", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.78622000", + "longitude": "14.90530000" + }, + { + "id": "139267", + "name": "Itala", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05144000", + "longitude": "15.43706000" + }, + { + "id": "139282", + "name": "Joppolo Giancaxio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.38681000", + "longitude": "13.55586000" + }, + { + "id": "139284", + "name": "Kamma", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.79701000", + "longitude": "12.03617000" + }, + { + "id": "139349", + "name": "Lampedusa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "35.50142000", + "longitude": "12.60964000" + }, + { + "id": "139372", + "name": "Larderia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.14101000", + "longitude": "15.50287000" + }, + { + "id": "139379", + "name": "Lascari", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.00067000", + "longitude": "13.94053000" + }, + { + "id": "139416", + "name": "Lavinaio-Monterosso", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.64097000", + "longitude": "15.10462000" + }, + { + "id": "139444", + "name": "Leni", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.55534000", + "longitude": "14.82497000" + }, + { + "id": "139454", + "name": "Lentini", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.28556000", + "longitude": "14.99737000" + }, + { + "id": "139457", + "name": "Leonforte", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.64197000", + "longitude": "14.39766000" + }, + { + "id": "139463", + "name": "Lercara Friddi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.74657000", + "longitude": "13.60391000" + }, + { + "id": "139477", + "name": "Letojanni", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.88050000", + "longitude": "15.30735000" + }, + { + "id": "139493", + "name": "Librizzi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09719000", + "longitude": "14.95909000" + }, + { + "id": "139494", + "name": "Licata", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.10267000", + "longitude": "13.93972000" + }, + { + "id": "139498", + "name": "Licodia Eubea", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.15674000", + "longitude": "14.70555000" + }, + { + "id": "139522", + "name": "Limina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.94076000", + "longitude": "15.27119000" + }, + { + "id": "139530", + "name": "Linera", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.66380000", + "longitude": "15.13653000" + }, + { + "id": "139531", + "name": "Linguaglossa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.84243000", + "longitude": "15.13774000" + }, + { + "id": "139533", + "name": "Lipari", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.46743000", + "longitude": "14.95398000" + }, + { + "id": "139595", + "name": "Longi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02617000", + "longitude": "14.75306000" + }, + { + "id": "139630", + "name": "Lucca Sicula", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.57783000", + "longitude": "13.30579000" + }, + { + "id": "139763", + "name": "Maletto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82914000", + "longitude": "14.86403000" + }, + { + "id": "139764", + "name": "Malfa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.57730000", + "longitude": "14.83598000" + }, + { + "id": "139776", + "name": "Malvagna", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91752000", + "longitude": "15.05548000" + }, + { + "id": "139783", + "name": "Mandanici", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.00356000", + "longitude": "15.31669000" + }, + { + "id": "139799", + "name": "Maniace", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.88306000", + "longitude": "14.79808000" + }, + { + "id": "139833", + "name": "Marausa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.94166000", + "longitude": "12.50948000" + }, + { + "id": "139869", + "name": "Marianopoli", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.59840000", + "longitude": "13.91520000" + }, + { + "id": "139880", + "name": "Marina di Caronia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.03545000", + "longitude": "14.44182000" + }, + { + "id": "139893", + "name": "Marina di Ragusa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.78575000", + "longitude": "14.55474000" + }, + { + "id": "139898", + "name": "Marinella", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.59475000", + "longitude": "12.84434000" + }, + { + "id": "139899", + "name": "Marineo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.95185000", + "longitude": "13.41781000" + }, + { + "id": "139919", + "name": "Marsala", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.79920000", + "longitude": "12.43670000" + }, + { + "id": "139952", + "name": "Mascali", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.75794000", + "longitude": "15.19662000" + }, + { + "id": "139953", + "name": "Mascalucia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.57465000", + "longitude": "15.04964000" + }, + { + "id": "140002", + "name": "Maugeri", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.58608000", + "longitude": "15.11785000" + }, + { + "id": "140004", + "name": "Mazara del Vallo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.65535000", + "longitude": "12.58986000" + }, + { + "id": "140003", + "name": "Mazara II", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.68146000", + "longitude": "12.60074000" + }, + { + "id": "140007", + "name": "Mazzarino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.30188000", + "longitude": "14.20959000" + }, + { + "id": "140009", + "name": "Mazzarrà Sant'Andrea", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.08969000", + "longitude": "15.13535000" + }, + { + "id": "140008", + "name": "Mazzarrone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.08834000", + "longitude": "14.56128000" + }, + { + "id": "140044", + "name": "Melia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.90384000", + "longitude": "15.27499000" + }, + { + "id": "140047", + "name": "Melilli", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.17821000", + "longitude": "15.13020000" + }, + { + "id": "140064", + "name": "Menfi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.60409000", + "longitude": "12.96889000" + }, + { + "id": "140090", + "name": "Merì", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16630000", + "longitude": "15.24970000" + }, + { + "id": "140098", + "name": "Messina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05000000", + "longitude": "14.86667000" + }, + { + "id": "140120", + "name": "Mezzojuso", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.86509000", + "longitude": "13.46509000" + }, + { + "id": "140145", + "name": "Milazzo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.22008000", + "longitude": "15.24023000" + }, + { + "id": "140146", + "name": "Milena", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.47133000", + "longitude": "13.73613000" + }, + { + "id": "140150", + "name": "Militello in Val di Catania", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.27594000", + "longitude": "14.79342000" + }, + { + "id": "140149", + "name": "Militello Rosmarino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04575000", + "longitude": "14.67584000" + }, + { + "id": "140153", + "name": "Milo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.72450000", + "longitude": "15.11554000" + }, + { + "id": "140156", + "name": "Mineo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.26494000", + "longitude": "14.69381000" + }, + { + "id": "140168", + "name": "Mirabella Imbaccari", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.32702000", + "longitude": "14.44605000" + }, + { + "id": "140177", + "name": "Mirto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.08439000", + "longitude": "14.74609000" + }, + { + "id": "140180", + "name": "Misilmeri", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.03183000", + "longitude": "13.44795000" + }, + { + "id": "140184", + "name": "Misterbianco", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.51803000", + "longitude": "15.00913000" + }, + { + "id": "140185", + "name": "Mistretta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.92823000", + "longitude": "14.35780000" + }, + { + "id": "140189", + "name": "Modica", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.85868000", + "longitude": "14.75966000" + }, + { + "id": "140205", + "name": "Moio Alcantara", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.90056000", + "longitude": "15.05072000" + }, + { + "id": "140280", + "name": "Monforte San Giorgio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.15733000", + "longitude": "15.38132000" + }, + { + "id": "140287", + "name": "Mongiuffi Melia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.90336000", + "longitude": "15.27539000" + }, + { + "id": "140297", + "name": "Monreale", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.08125000", + "longitude": "13.28947000" + }, + { + "id": "140311", + "name": "Montagnareale", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.13216000", + "longitude": "14.94658000" + }, + { + "id": "140317", + "name": "Montalbano Elicona", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02360000", + "longitude": "15.01393000" + }, + { + "id": "140329", + "name": "Montallegro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.39121000", + "longitude": "13.35179000" + }, + { + "id": "140428", + "name": "Montedoro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.45431000", + "longitude": "13.81684000" + }, + { + "id": "140473", + "name": "Montelepre", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09026000", + "longitude": "13.17518000" + }, + { + "id": "140483", + "name": "Montemaggiore Belsito", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.84818000", + "longitude": "13.76206000" + }, + { + "id": "140522", + "name": "Monterosso Almo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.08884000", + "longitude": "14.76498000" + }, + { + "id": "140546", + "name": "Montevago", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.70224000", + "longitude": "12.98584000" + }, + { + "id": "140657", + "name": "Motta Camastra", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.89431000", + "longitude": "15.17008000" + }, + { + "id": "140664", + "name": "Motta d'Affermo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98096000", + "longitude": "14.30337000" + }, + { + "id": "140661", + "name": "Motta Sant'Anastasia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.51205000", + "longitude": "14.96628000" + }, + { + "id": "140704", + "name": "Mussomeli", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.58067000", + "longitude": "13.75214000" + }, + { + "id": "140721", + "name": "Naro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.29248000", + "longitude": "13.79337000" + }, + { + "id": "140724", + "name": "Naso", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.12215000", + "longitude": "14.78702000" + }, + { + "id": "140763", + "name": "Nicolosi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.62148000", + "longitude": "15.02785000" + }, + { + "id": "140765", + "name": "Nicosia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.74747000", + "longitude": "14.39218000" + }, + { + "id": "140771", + "name": "Niscemi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.14649000", + "longitude": "14.39381000" + }, + { + "id": "140772", + "name": "Nissoria", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.65410000", + "longitude": "14.44810000" + }, + { + "id": "140775", + "name": "Nizza di Sicilia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.99081000", + "longitude": "15.40956000" + }, + { + "id": "140812", + "name": "Noto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.89244000", + "longitude": "15.06977000" + }, + { + "id": "140823", + "name": "Novara di Sicilia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.01538000", + "longitude": "15.13134000" + }, + { + "id": "140848", + "name": "Nunziata", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.75858000", + "longitude": "15.17058000" + }, + { + "id": "140851", + "name": "Nuova Gibellina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.80704000", + "longitude": "12.86954000" + }, + { + "id": "140852", + "name": "Nuovo Centro Urbano Poggioreale", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.76404000", + "longitude": "13.03594000" + }, + { + "id": "140900", + "name": "Oliveri", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.12515000", + "longitude": "15.06068000" + }, + { + "id": "141068", + "name": "Pace del Mela", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17997000", + "longitude": "15.30629000" + }, + { + "id": "141069", + "name": "Paceco", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98026000", + "longitude": "12.55766000" + }, + { + "id": "141071", + "name": "Pachino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.71522000", + "longitude": "15.09019000" + }, + { + "id": "58204", + "name": "Pagliara", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98546000", + "longitude": "15.35969000" + }, + { + "id": "58221", + "name": "Palagonia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.32955000", + "longitude": "14.74474000" + }, + { + "id": "58228", + "name": "Palazzo Adriano", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.68066000", + "longitude": "13.37941000" + }, + { + "id": "58232", + "name": "Palazzolo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56224000", + "longitude": "14.92987000" + }, + { + "id": "58233", + "name": "Palazzolo Acreide", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.06261000", + "longitude": "14.90593000" + }, + { + "id": "58240", + "name": "Palermo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.81667000", + "longitude": "13.58333000" + }, + { + "id": "58254", + "name": "Palma di Montechiaro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.19066000", + "longitude": "13.76603000" + }, + { + "id": "58284", + "name": "Pantelleria", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.82836000", + "longitude": "11.94611000" + }, + { + "id": "58316", + "name": "Partanna", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.72680000", + "longitude": "12.88917000" + }, + { + "id": "58317", + "name": "Partinico", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04657000", + "longitude": "13.11785000" + }, + { + "id": "58338", + "name": "Pasteria-Lapide", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.81012000", + "longitude": "15.22818000" + }, + { + "id": "58346", + "name": "Paternò", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56675000", + "longitude": "14.90254000" + }, + { + "id": "58350", + "name": "Patti", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.14736000", + "longitude": "14.96409000" + }, + { + "id": "58373", + "name": "Pedagaggi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.19182000", + "longitude": "14.93654000" + }, + { + "id": "58374", + "name": "Pedalino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.02320000", + "longitude": "14.58116000" + }, + { + "id": "58375", + "name": "Pedara", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.62386000", + "longitude": "15.05672000" + }, + { + "id": "58409", + "name": "Pennisi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.64945000", + "longitude": "15.12385000" + }, + { + "id": "58477", + "name": "Petralia Soprana", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.80064000", + "longitude": "14.10813000" + }, + { + "id": "58478", + "name": "Petralia Sottana", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.80919000", + "longitude": "14.09293000" + }, + { + "id": "58487", + "name": "Petrosino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.71271000", + "longitude": "12.49964000" + }, + { + "id": "58491", + "name": "Pettineo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.96793000", + "longitude": "14.29118000" + }, + { + "id": "58514", + "name": "Piana degli Albanesi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.99372000", + "longitude": "13.28464000" + }, + { + "id": "58540", + "name": "Piano dei Geli", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09919000", + "longitude": "13.27478000" + }, + { + "id": "58539", + "name": "Piano Maglio-Blandino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05793000", + "longitude": "13.30909000" + }, + { + "id": "58547", + "name": "Pianoconte", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.47432000", + "longitude": "14.92857000" + }, + { + "id": "58565", + "name": "Piazza Armerina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.38417000", + "longitude": "14.36921000" + }, + { + "id": "58589", + "name": "Piedimonte Etneo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.80677000", + "longitude": "15.17516000" + }, + { + "id": "58622", + "name": "Pietraperzia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.41852000", + "longitude": "14.13739000" + }, + { + "id": "58692", + "name": "Pioppo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05000000", + "longitude": "13.23333000" + }, + { + "id": "58701", + "name": "Piraino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16127000", + "longitude": "14.86100000" + }, + { + "id": "58794", + "name": "Polizzi Generosa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.81159000", + "longitude": "14.00268000" + }, + { + "id": "58800", + "name": "Pollina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.99309000", + "longitude": "14.14586000" + }, + { + "id": "58916", + "name": "Portella di Mare", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.07304000", + "longitude": "13.46199000" + }, + { + "id": "58928", + "name": "Porto Empedocle", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.28942000", + "longitude": "13.52494000" + }, + { + "id": "58948", + "name": "Portopalo di Capo Passero", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.68219000", + "longitude": "15.13378000" + }, + { + "id": "58979", + "name": "Pozzallo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.73028000", + "longitude": "14.84672000" + }, + { + "id": "59081", + "name": "Priolo Gargallo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.15512000", + "longitude": "15.18248000" + }, + { + "id": "59084", + "name": "Prizzi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.72088000", + "longitude": "13.43435000" + }, + { + "id": "59120", + "name": "Provincia di Caltanissetta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.37448000", + "longitude": "14.06421000" + }, + { + "id": "59176", + "name": "Provincia di Siracusa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.08805000", + "longitude": "15.27924000" + }, + { + "id": "59256", + "name": "Racalmuto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.40498000", + "longitude": "13.72995000" + }, + { + "id": "59258", + "name": "Raccuja", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05583000", + "longitude": "14.91044000" + }, + { + "id": "59262", + "name": "Raddusa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.47529000", + "longitude": "14.53521000" + }, + { + "id": "59266", + "name": "Raffadali", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.40214000", + "longitude": "13.53175000" + }, + { + "id": "59267", + "name": "Ragalna", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.63455000", + "longitude": "14.94698000" + }, + { + "id": "59269", + "name": "Ragusa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.91667000", + "longitude": "14.60000000" + }, + { + "id": "59272", + "name": "Ramacca", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.38616000", + "longitude": "14.69241000" + }, + { + "id": "59280", + "name": "Randazzo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.87736000", + "longitude": "14.95012000" + }, + { + "id": "59295", + "name": "Ravanusa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.26659000", + "longitude": "13.96834000" + }, + { + "id": "59305", + "name": "Realmonte", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.30847000", + "longitude": "13.46429000" + }, + { + "id": "59318", + "name": "Regalbuto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.65195000", + "longitude": "14.63915000" + }, + { + "id": "59326", + "name": "Reitano", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.97198000", + "longitude": "14.34418000" + }, + { + "id": "59337", + "name": "Resuttano", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.67865000", + "longitude": "14.02946000" + }, + { + "id": "59359", + "name": "Ribera", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.49773000", + "longitude": "13.26676000" + }, + { + "id": "59373", + "name": "Riesi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.28079000", + "longitude": "14.08317000" + }, + { + "id": "59381", + "name": "Rilievo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91638000", + "longitude": "12.54058000" + }, + { + "id": "59412", + "name": "Riposto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.73183000", + "longitude": "15.20576000" + }, + { + "id": "59485", + "name": "Rocca di Capri Leone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.10677000", + "longitude": "14.71032000" + }, + { + "id": "59496", + "name": "Roccafiorita", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.93086000", + "longitude": "15.26739000" + }, + { + "id": "59506", + "name": "Roccalumera", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.97554000", + "longitude": "15.39439000" + }, + { + "id": "59508", + "name": "Roccamena", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.83824000", + "longitude": "13.15513000" + }, + { + "id": "59513", + "name": "Roccapalumba", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.80825000", + "longitude": "13.63671000" + }, + { + "id": "59526", + "name": "Roccavaldina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.18296000", + "longitude": "15.37402000" + }, + { + "id": "59533", + "name": "Roccella Valdemone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.93289000", + "longitude": "15.00997000" + }, + { + "id": "59555", + "name": "Rodì", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.10823000", + "longitude": "15.16933000" + }, + { + "id": "59585", + "name": "Rometta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17007000", + "longitude": "15.41429000" + }, + { + "id": "59586", + "name": "Rometta Marea", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.23264000", + "longitude": "15.40955000" + }, + { + "id": "59643", + "name": "Rosolini", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.82145000", + "longitude": "14.95132000" + }, + { + "id": "59747", + "name": "Salaparuta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.75694000", + "longitude": "13.00981000" + }, + { + "id": "59758", + "name": "Salemi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82199000", + "longitude": "12.80506000" + }, + { + "id": "59805", + "name": "Sambuca di Sicilia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.65294000", + "longitude": "13.11462000" + }, + { + "id": "59841", + "name": "San Biagio Platani", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.50927000", + "longitude": "13.52844000" + }, + { + "id": "59862", + "name": "San Cataldo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.48412000", + "longitude": "13.98542000" + }, + { + "id": "59868", + "name": "San Cipirello", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.96067000", + "longitude": "13.17732000" + }, + { + "id": "59873", + "name": "San Ciro-Ulmi-Filci", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.83328000", + "longitude": "12.78229000" + }, + { + "id": "59878", + "name": "San Cono", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.28992000", + "longitude": "14.36709000" + }, + { + "id": "59919", + "name": "San Filippo del Mela", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17007000", + "longitude": "15.27338000" + }, + { + "id": "59928", + "name": "San Fratello", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.01556000", + "longitude": "14.59818000" + }, + { + "id": "59951", + "name": "San Giorgio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16834000", + "longitude": "14.94825000" + }, + { + "id": "59979", + "name": "San Giovanni", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.73538000", + "longitude": "15.15887000" + }, + { + "id": "59983", + "name": "San Giovanni Gemini", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.62785000", + "longitude": "13.64357000" + }, + { + "id": "60001", + "name": "San Giovanni la Punta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.57690000", + "longitude": "15.09371000" + }, + { + "id": "60012", + "name": "San Giuseppe Jato", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.97331000", + "longitude": "13.18889000" + }, + { + "id": "60024", + "name": "San Gregorio di Catania", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56764000", + "longitude": "15.11120000" + }, + { + "id": "60032", + "name": "San Leone Mosè", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.26497000", + "longitude": "13.58434000" + }, + { + "id": "60063", + "name": "San Marco d'Alunzio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.07261000", + "longitude": "14.70093000" + }, + { + "id": "60105", + "name": "San Mauro Castelverde", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91478000", + "longitude": "14.18961000" + }, + { + "id": "60123", + "name": "San Michele di Ganzaria", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.28042000", + "longitude": "14.42633000" + }, + { + "id": "60164", + "name": "San Pier Niceto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.16050000", + "longitude": "15.34982000" + }, + { + "id": "60167", + "name": "San Piero Patti", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05214000", + "longitude": "14.96816000" + }, + { + "id": "60177", + "name": "San Pietro Clarenza", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56885000", + "longitude": "15.02289000" + }, + { + "id": "60233", + "name": "San Salvatore di Fitalia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.06841000", + "longitude": "14.77799000" + }, + { + "id": "60252", + "name": "San Teodoro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.84797000", + "longitude": "14.69878000" + }, + { + "id": "60276", + "name": "San Vito Lo Capo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.17395000", + "longitude": "12.73599000" + }, + { + "id": "60323", + "name": "Sant'Agata di Militello", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.06838000", + "longitude": "14.63600000" + }, + { + "id": "60318", + "name": "Sant'Agata Li Battiati", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.55745000", + "longitude": "15.07999000" + }, + { + "id": "60334", + "name": "Sant'Alessio Siculo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.92516000", + "longitude": "15.34968000" + }, + { + "id": "60336", + "name": "Sant'Alfio", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.74393000", + "longitude": "15.13952000" + }, + { + "id": "60365", + "name": "Sant'Angelo di Brolo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.11518000", + "longitude": "14.88403000" + }, + { + "id": "60360", + "name": "Sant'Angelo Muxaro", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.48014000", + "longitude": "13.54554000" + }, + { + "id": "60415", + "name": "Santa Caterina Villarmosa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.59034000", + "longitude": "14.03554000" + }, + { + "id": "60422", + "name": "Santa Cristina Gela", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98514000", + "longitude": "13.32747000" + }, + { + "id": "60426", + "name": "Santa Croce Camerina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.82842000", + "longitude": "14.52538000" + }, + { + "id": "60433", + "name": "Santa Domenica Vittoria", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91624000", + "longitude": "14.96288000" + }, + { + "id": "60434", + "name": "Santa Elisabetta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.43171000", + "longitude": "13.55386000" + }, + { + "id": "60437", + "name": "Santa Flavia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.10448000", + "longitude": "13.53340000" + }, + { + "id": "60447", + "name": "Santa Lucia del Mela", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.14408000", + "longitude": "15.28055000" + }, + { + "id": "60453", + "name": "Santa Margherita di Belice", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.69281000", + "longitude": "13.01584000" + }, + { + "id": "60476", + "name": "Santa Maria di Licodia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.61684000", + "longitude": "14.89337000" + }, + { + "id": "60481", + "name": "Santa Maria la Stella", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.62349000", + "longitude": "15.12071000" + }, + { + "id": "60483", + "name": "Santa Marina Salina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.56117000", + "longitude": "14.87077000" + }, + { + "id": "60487", + "name": "Santa Ninfa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.77042000", + "longitude": "12.87744000" + }, + { + "id": "60496", + "name": "Santa Teresa di Riva", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.94635000", + "longitude": "15.36671000" + }, + { + "id": "60498", + "name": "Santa Venerina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.69103000", + "longitude": "15.13880000" + }, + { + "id": "60521", + "name": "Santo Stefano di Camastra", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.01295000", + "longitude": "14.35142000" + }, + { + "id": "60514", + "name": "Santo Stefano Quisquina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.62606000", + "longitude": "13.48976000" + }, + { + "id": "60535", + "name": "Saponara", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.19241000", + "longitude": "15.43442000" + }, + { + "id": "60536", + "name": "Saponara Marittima", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.23121000", + "longitude": "15.42621000" + }, + { + "id": "60564", + "name": "Sasi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.90217000", + "longitude": "12.88788000" + }, + { + "id": "60595", + "name": "Savoca", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.95326000", + "longitude": "15.34009000" + }, + { + "id": "60609", + "name": "Scaletta Zanclea", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04796000", + "longitude": "15.46769000" + }, + { + "id": "60649", + "name": "Sciacca", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.50693000", + "longitude": "13.08399000" + }, + { + "id": "60650", + "name": "Sciara", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.91511000", + "longitude": "13.76177000" + }, + { + "id": "60653", + "name": "Scicli", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.79014000", + "longitude": "14.70280000" + }, + { + "id": "60656", + "name": "Scillato", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.85778000", + "longitude": "13.90632000" + }, + { + "id": "60659", + "name": "Sclafani Bagni", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82175000", + "longitude": "13.85476000" + }, + { + "id": "60660", + "name": "Scoglitti", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.89424000", + "longitude": "14.43355000" + }, + { + "id": "60666", + "name": "Scordia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.29548000", + "longitude": "14.84058000" + }, + { + "id": "60759", + "name": "Serradifalco", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.45384000", + "longitude": "13.88046000" + }, + { + "id": "60826", + "name": "Sfaranda", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.05815000", + "longitude": "14.83147000" + }, + { + "id": "60827", + "name": "Sferracavallo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.20000000", + "longitude": "13.28333000" + }, + { + "id": "60840", + "name": "Siculiana", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.33515000", + "longitude": "13.42432000" + }, + { + "id": "60862", + "name": "Sinagra", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.08191000", + "longitude": "14.85009000" + }, + { + "id": "60871", + "name": "Siracusa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.07542000", + "longitude": "15.28664000" + }, + { + "id": "60903", + "name": "Solarino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.10136000", + "longitude": "15.11988000" + }, + { + "id": "60933", + "name": "Sommatino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.33471000", + "longitude": "13.99739000" + }, + { + "id": "60968", + "name": "Sortino", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.15881000", + "longitude": "15.02998000" + }, + { + "id": "60988", + "name": "Spadafora", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.22349000", + "longitude": "15.38178000" + }, + { + "id": "60992", + "name": "Sparta'", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.29371000", + "longitude": "15.53503000" + }, + { + "id": "60997", + "name": "Sperlinga", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.76653000", + "longitude": "14.35075000" + }, + { + "id": "61132", + "name": "Sutera", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.52493000", + "longitude": "13.73274000" + }, + { + "id": "61161", + "name": "Taormina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.85358000", + "longitude": "15.28851000" + }, + { + "id": "61226", + "name": "Terme", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.13586000", + "longitude": "15.15658000" + }, + { + "id": "61228", + "name": "Termini Imerese", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98225000", + "longitude": "13.69729000" + }, + { + "id": "61245", + "name": "Terrasini", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.14621000", + "longitude": "13.08319000" + }, + { + "id": "61312", + "name": "Tonnara di Bonagia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.06309000", + "longitude": "12.59434000" + }, + { + "id": "61313", + "name": "Tonnarella", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.12539000", + "longitude": "15.11348000" + }, + { + "id": "61354", + "name": "Torre Colonna-Sperone", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02986000", + "longitude": "13.57377000" + }, + { + "id": "61383", + "name": "Torregrotta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.20262000", + "longitude": "15.35010000" + }, + { + "id": "61386", + "name": "Torrenova", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.09246000", + "longitude": "14.67917000" + }, + { + "id": "61389", + "name": "Torretta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.13036000", + "longitude": "13.23549000" + }, + { + "id": "61418", + "name": "Tortorici", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.02973000", + "longitude": "14.82212000" + }, + { + "id": "61427", + "name": "Trabia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.00420000", + "longitude": "13.63393000" + }, + { + "id": "61440", + "name": "Trapani", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.83333000", + "longitude": "12.66667000" + }, + { + "id": "61441", + "name": "Trappeto", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.06875000", + "longitude": "13.03794000" + }, + { + "id": "61457", + "name": "Tre Fontane", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56989000", + "longitude": "12.72423000" + }, + { + "id": "61465", + "name": "Trecastagni", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.61543000", + "longitude": "15.07796000" + }, + { + "id": "61478", + "name": "Tremestieri Etneo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.56494000", + "longitude": "15.07863000" + }, + { + "id": "61534", + "name": "Tripi", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04673000", + "longitude": "15.09670000" + }, + { + "id": "61535", + "name": "Triscina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.58717000", + "longitude": "12.78912000" + }, + { + "id": "61550", + "name": "Troina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.78437000", + "longitude": "14.59605000" + }, + { + "id": "61580", + "name": "Tusa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.98385000", + "longitude": "14.23606000" + }, + { + "id": "61586", + "name": "Ucria", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04624000", + "longitude": "14.88087000" + }, + { + "id": "61619", + "name": "Ustica", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.70985000", + "longitude": "13.19293000" + }, + { + "id": "61653", + "name": "Valderice", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.04005000", + "longitude": "12.61505000" + }, + { + "id": "61655", + "name": "Valdina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.19351000", + "longitude": "15.36980000" + }, + { + "id": "61678", + "name": "Valguarnera Caropepe", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.49527000", + "longitude": "14.39025000" + }, + { + "id": "61705", + "name": "Valledolmo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.74703000", + "longitude": "13.82811000" + }, + { + "id": "61710", + "name": "Vallelunga Pratameno", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.68205000", + "longitude": "13.83156000" + }, + { + "id": "61747", + "name": "Valverde", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.57695000", + "longitude": "15.12419000" + }, + { + "id": "61750", + "name": "Vambolieri", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.57417000", + "longitude": "15.16019000" + }, + { + "id": "61818", + "name": "Venetico Marina", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.21928000", + "longitude": "15.36648000" + }, + { + "id": "61819", + "name": "Venetico Superiore", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.19307000", + "longitude": "15.38119000" + }, + { + "id": "61826", + "name": "Ventimiglia di Sicilia", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.92361000", + "longitude": "13.56768000" + }, + { + "id": "61901", + "name": "Viagrande", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.61032000", + "longitude": "15.09794000" + }, + { + "id": "61911", + "name": "Vicari", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.82371000", + "longitude": "13.56889000" + }, + { + "id": "61954", + "name": "Vigliatore 2", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.12221000", + "longitude": "15.13066000" + }, + { + "id": "61993", + "name": "Villa Ciambra", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.06129000", + "longitude": "13.32000000" + }, + { + "id": "62047", + "name": "Villabate", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.07789000", + "longitude": "13.44275000" + }, + { + "id": "62058", + "name": "Villafranca Sicula", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.58761000", + "longitude": "13.29048000" + }, + { + "id": "62059", + "name": "Villafranca Tirrena", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "38.23952000", + "longitude": "15.43885000" + }, + { + "id": "62063", + "name": "Villafrati", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.90646000", + "longitude": "13.48486000" + }, + { + "id": "62068", + "name": "Villaggio del Pino-Le Ginestre", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.58292000", + "longitude": "15.00377000" + }, + { + "id": "62076", + "name": "Villalba", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.65457000", + "longitude": "13.84452000" + }, + { + "id": "62131", + "name": "Villarosa", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.58753000", + "longitude": "14.17089000" + }, + { + "id": "62135", + "name": "Villaseta", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.29877000", + "longitude": "13.55919000" + }, + { + "id": "62137", + "name": "Villasmundo", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.25132000", + "longitude": "15.09087000" + }, + { + "id": "62178", + "name": "Vita", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.86886000", + "longitude": "12.82755000" + }, + { + "id": "62184", + "name": "Vittoria", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "36.95151000", + "longitude": "14.52788000" + }, + { + "id": "62193", + "name": "Vizzini", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.16188000", + "longitude": "14.75712000" + }, + { + "id": "62229", + "name": "Zafferana Etnea", + "state_id": 1709, + "state_code": "82", + "country_id": 107, + "country_code": "IT", + "latitude": "37.67895000", + "longitude": "15.10432000" + }, + { + "id": "135338", + "name": "Ala", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76072000", + "longitude": "11.00458000" + }, + { + "id": "135370", + "name": "Albiano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14451000", + "longitude": "11.19459000" + }, + { + "id": "135391", + "name": "Aldeno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97758000", + "longitude": "11.09276000" + }, + { + "id": "135392", + "name": "Aldino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.36581000", + "longitude": "11.35508000" + }, + { + "id": "135465", + "name": "Amblar", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39541000", + "longitude": "11.14677000" + }, + { + "id": "135481", + "name": "Andalo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16649000", + "longitude": "11.00432000" + }, + { + "id": "135492", + "name": "Andriano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.51762000", + "longitude": "11.23137000" + }, + { + "id": "135514", + "name": "Anterivo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.27810000", + "longitude": "11.36665000" + }, + { + "id": "135570", + "name": "Arco", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91772000", + "longitude": "10.88672000" + }, + { + "id": "135698", + "name": "Avelengo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.64557000", + "longitude": "11.22419000" + }, + { + "id": "135711", + "name": "Avio", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73396000", + "longitude": "10.93938000" + }, + { + "id": "135734", + "name": "Badia", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.60816000", + "longitude": "11.89630000" + }, + { + "id": "135831", + "name": "Barbiano - Barbian", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.60332000", + "longitude": "11.52138000" + }, + { + "id": "135882", + "name": "Baselga di Pinè", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.13250000", + "longitude": "11.24648000" + }, + { + "id": "135999", + "name": "Bersone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94440000", + "longitude": "10.63317000" + }, + { + "id": "136013", + "name": "Besenello", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94356000", + "longitude": "11.10908000" + }, + { + "id": "136048", + "name": "Bieno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08151000", + "longitude": "11.55609000" + }, + { + "id": "136078", + "name": "Bleggio Superiore", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02480000", + "longitude": "10.83837000" + }, + { + "id": "136091", + "name": "Bocenago", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11858000", + "longitude": "10.75884000" + }, + { + "id": "136102", + "name": "Bolbeno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03260000", + "longitude": "10.73787000" + }, + { + "id": "136109", + "name": "Bolognano-Vignole", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91196000", + "longitude": "10.90497000" + }, + { + "id": "136115", + "name": "Bolzano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.71667000", + "longitude": "11.50000000" + }, + { + "id": "136132", + "name": "Bondo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00030000", + "longitude": "10.69197000" + }, + { + "id": "136133", + "name": "Bondone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80649000", + "longitude": "10.55027000" + }, + { + "id": "136194", + "name": "Borgo Valsugana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05119000", + "longitude": "11.45756000" + }, + { + "id": "136249", + "name": "Bosentino-Migazzone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00180000", + "longitude": "11.22318000" + }, + { + "id": "136284", + "name": "Braies", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.72023000", + "longitude": "12.13339000" + }, + { + "id": "136296", + "name": "Breguzzo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00679000", + "longitude": "10.69761000" + }, + { + "id": "136305", + "name": "Brennero - Brenner", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.93813000", + "longitude": "11.44247000" + }, + { + "id": "136310", + "name": "Brentonico", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81910000", + "longitude": "10.95508000" + }, + { + "id": "136315", + "name": "Bresimo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41181000", + "longitude": "10.96817000" + }, + { + "id": "136318", + "name": "Bressanone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.71503000", + "longitude": "11.65598000" + }, + { + "id": "136321", + "name": "Brez", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.43220000", + "longitude": "11.10578000" + }, + { + "id": "136339", + "name": "Brione", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89488000", + "longitude": "10.58975000" + }, + { + "id": "136354", + "name": "Bronzolo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40346000", + "longitude": "11.32078000" + }, + { + "id": "136371", + "name": "Brunico", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.79942000", + "longitude": "11.93429000" + }, + { + "id": "136457", + "name": "Caderzone Terme", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12945000", + "longitude": "10.75619000" + }, + { + "id": "136458", + "name": "Cadine", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08960000", + "longitude": "11.06847000" + }, + { + "id": "136459", + "name": "Cadipietra", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.99576000", + "longitude": "11.98026000" + }, + { + "id": "136473", + "name": "Cagnò", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39431000", + "longitude": "11.04117000" + }, + { + "id": "136476", + "name": "Caines", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.69794000", + "longitude": "11.17122000" + }, + { + "id": "136477", + "name": "Caines - Kuens", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.70002000", + "longitude": "11.16987000" + }, + { + "id": "136498", + "name": "Calavino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04606000", + "longitude": "10.98402000" + }, + { + "id": "136501", + "name": "Calceranica al Lago", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00460000", + "longitude": "11.24368000" + }, + { + "id": "136511", + "name": "Caldaro sulla Strada del Vino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41326000", + "longitude": "11.24616000" + }, + { + "id": "136515", + "name": "Caldes", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.36686000", + "longitude": "10.94037000" + }, + { + "id": "136520", + "name": "Caldonazzo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99367000", + "longitude": "11.26426000" + }, + { + "id": "136533", + "name": "Calliano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93299000", + "longitude": "11.09503000" + }, + { + "id": "136624", + "name": "Campitello di Fassa", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.47579000", + "longitude": "11.74110000" + }, + { + "id": "136636", + "name": "Campo di Trens", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.87412000", + "longitude": "11.48605000" + }, + { + "id": "136633", + "name": "Campo Tures", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.90844000", + "longitude": "11.96036000" + }, + { + "id": "136645", + "name": "Campodenno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25791000", + "longitude": "11.03317000" + }, + { + "id": "136686", + "name": "Canal San Bovo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15667000", + "longitude": "11.72998000" + }, + { + "id": "136693", + "name": "Canazei", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.47627000", + "longitude": "11.76929000" + }, + { + "id": "136811", + "name": "Capriana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26281000", + "longitude": "11.33801000" + }, + { + "id": "136833", + "name": "Carano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29151000", + "longitude": "11.43978000" + }, + { + "id": "136857", + "name": "Cardano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.49336000", + "longitude": "11.39295000" + }, + { + "id": "136883", + "name": "Carisolo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16880000", + "longitude": "10.75887000" + }, + { + "id": "136948", + "name": "Carzano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07091000", + "longitude": "11.49379000" + }, + { + "id": "137135", + "name": "Castel Condino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91439000", + "longitude": "10.60277000" + }, + { + "id": "137179", + "name": "Castelbello", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.62885000", + "longitude": "10.90719000" + }, + { + "id": "137180", + "name": "Castelbello-Ciardes - Kastelbell-Tschars", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.62832000", + "longitude": "10.90666000" + }, + { + "id": "137194", + "name": "Castelfondo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.45623000", + "longitude": "11.11785000" + }, + { + "id": "137253", + "name": "Castello Molina di Fiemme", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28241000", + "longitude": "11.43348000" + }, + { + "id": "137254", + "name": "Castello Tesino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06302000", + "longitude": "11.63247000" + }, + { + "id": "137281", + "name": "Castelnuovo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05412000", + "longitude": "11.48916000" + }, + { + "id": "137311", + "name": "Castelrotto", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.56662000", + "longitude": "11.56098000" + }, + { + "id": "137413", + "name": "Cavalese", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29048000", + "longitude": "11.45862000" + }, + { + "id": "137421", + "name": "Cavareno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40780000", + "longitude": "11.13934000" + }, + { + "id": "137431", + "name": "Cavedago", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18486000", + "longitude": "11.03277000" + }, + { + "id": "137432", + "name": "Cavedine", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99520000", + "longitude": "10.97358000" + }, + { + "id": "137438", + "name": "Cavizzana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.36721000", + "longitude": "10.95817000" + }, + { + "id": "137484", + "name": "Cembra", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17489000", + "longitude": "11.22174000" + }, + { + "id": "137494", + "name": "Centa San Nicolò", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96930000", + "longitude": "11.23238000" + }, + { + "id": "137502", + "name": "Centrale", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16118000", + "longitude": "11.30293000" + }, + { + "id": "137554", + "name": "Cermes", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.63277000", + "longitude": "11.14696000" + }, + { + "id": "137579", + "name": "Certosa", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.70450000", + "longitude": "10.91088000" + }, + { + "id": "137662", + "name": "Chienes", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.80680000", + "longitude": "11.84002000" + }, + { + "id": "137686", + "name": "Chiusa", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.64001000", + "longitude": "11.56573000" + }, + { + "id": "137723", + "name": "Cimego", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91190000", + "longitude": "10.61337000" + }, + { + "id": "137728", + "name": "Cimoneri", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98426000", + "longitude": "11.07155000" + }, + { + "id": "137739", + "name": "Cinte Tesino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05726000", + "longitude": "11.61435000" + }, + { + "id": "137752", + "name": "Cis", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39841000", + "longitude": "11.00327000" + }, + { + "id": "137780", + "name": "Civezzano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09133000", + "longitude": "11.18468000" + }, + { + "id": "137811", + "name": "Cles", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.36294000", + "longitude": "11.03276000" + }, + { + "id": "137815", + "name": "Cloz", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41620000", + "longitude": "11.08589000" + }, + { + "id": "137844", + "name": "Cogolo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.35252000", + "longitude": "10.69282000" + }, + { + "id": "137855", + "name": "Collalbo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.53988000", + "longitude": "11.45933000" + }, + { + "id": "137861", + "name": "Colle Isarco", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.93857000", + "longitude": "11.44245000" + }, + { + "id": "137946", + "name": "Commezzadura", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32171000", + "longitude": "10.83957000" + }, + { + "id": "137962", + "name": "Condino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88167000", + "longitude": "10.59366000" + }, + { + "id": "138004", + "name": "Coredo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.34906000", + "longitude": "11.09001000" + }, + { + "id": "138023", + "name": "Cornaiano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.46329000", + "longitude": "11.28115000" + }, + { + "id": "138028", + "name": "Cornedo All'Isarco", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.48990000", + "longitude": "11.40647000" + }, + { + "id": "138050", + "name": "Cortaccia sulla Strada del Vino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.31401000", + "longitude": "11.22388000" + }, + { + "id": "138068", + "name": "Cortina sulla Strada del Vino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26941000", + "longitude": "11.22188000" + }, + { + "id": "138073", + "name": "Corvara in Badia", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.55037000", + "longitude": "11.87342000" + }, + { + "id": "138116", + "name": "Covelo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97919000", + "longitude": "11.06971000" + }, + { + "id": "138149", + "name": "Creto", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94110000", + "longitude": "10.64027000" + }, + { + "id": "138173", + "name": "Croviana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.34480000", + "longitude": "10.90313000" + }, + { + "id": "138192", + "name": "Cunevo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28641000", + "longitude": "11.03457000" + }, + { + "id": "138205", + "name": "Curon Venosta", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.80832000", + "longitude": "10.54265000" + }, + { + "id": "138223", + "name": "Daiano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30161000", + "longitude": "11.44908000" + }, + { + "id": "138226", + "name": "Dambel", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40471000", + "longitude": "11.09307000" + }, + { + "id": "138228", + "name": "Daone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94720000", + "longitude": "10.62107000" + }, + { + "id": "138248", + "name": "Denno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.27424000", + "longitude": "11.04913000" + }, + { + "id": "138267", + "name": "Dimaro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32573000", + "longitude": "10.87342000" + }, + { + "id": "138273", + "name": "Dobbiaco", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.72878000", + "longitude": "12.22225000" + }, + { + "id": "138295", + "name": "Don", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.38931000", + "longitude": "11.13647000" + }, + { + "id": "138311", + "name": "Dorsino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07270000", + "longitude": "10.89737000" + }, + { + "id": "138328", + "name": "Drena", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96926000", + "longitude": "10.94540000" + }, + { + "id": "138331", + "name": "Dro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96121000", + "longitude": "10.91201000" + }, + { + "id": "138350", + "name": "Egna", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.31777000", + "longitude": "11.27337000" + }, + { + "id": "138400", + "name": "Faedo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19241000", + "longitude": "11.16128000" + }, + { + "id": "138410", + "name": "Fai della Paganella", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17801000", + "longitude": "11.06950000" + }, + { + "id": "138426", + "name": "Falzes", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.81359000", + "longitude": "11.88308000" + }, + { + "id": "138461", + "name": "Faver", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18131000", + "longitude": "11.23728000" + }, + { + "id": "138502", + "name": "Fiavè", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00457000", + "longitude": "10.84225000" + }, + { + "id": "138558", + "name": "Fiè Allo Sciliar", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.51672000", + "longitude": "11.50128000" + }, + { + "id": "138508", + "name": "Fiera di Primiero", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17621000", + "longitude": "11.82879000" + }, + { + "id": "138509", + "name": "Fierozzo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11131000", + "longitude": "11.31848000" + }, + { + "id": "138560", + "name": "Flavon", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29809000", + "longitude": "11.02993000" + }, + { + "id": "138580", + "name": "Folgaria", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91543000", + "longitude": "11.16820000" + }, + { + "id": "138589", + "name": "Fondo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.43880000", + "longitude": "11.13723000" + }, + { + "id": "138592", + "name": "Fontana Nuova-Bevia", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41159000", + "longitude": "10.96843000" + }, + { + "id": "138643", + "name": "Fornace", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.11805000", + "longitude": "11.20751000" + }, + { + "id": "138662", + "name": "Fortezza", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.78963000", + "longitude": "11.60998000" + }, + { + "id": "138710", + "name": "Frassilongo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08991000", + "longitude": "11.29718000" + }, + { + "id": "138725", + "name": "Fraviano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29691000", + "longitude": "10.69197000" + }, + { + "id": "138751", + "name": "Funes - Villnoess", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.64282000", + "longitude": "11.67828000" + }, + { + "id": "138793", + "name": "Gais", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.83658000", + "longitude": "11.94931000" + }, + { + "id": "138836", + "name": "Ganda", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.55459000", + "longitude": "10.78042000" + }, + { + "id": "138855", + "name": "Gargazzone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.58456000", + "longitude": "11.20156000" + }, + { + "id": "138861", + "name": "Garniga Nuova", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00310000", + "longitude": "11.08738000" + }, + { + "id": "138974", + "name": "Gionghi-Cappella", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93680000", + "longitude": "11.27478000" + }, + { + "id": "138980", + "name": "Giovo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15581000", + "longitude": "11.15278000" + }, + { + "id": "139000", + "name": "Giustino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15130000", + "longitude": "10.76777000" + }, + { + "id": "139005", + "name": "Glorenza", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.67105000", + "longitude": "10.55684000" + }, + { + "id": "139077", + "name": "Grauno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.23032000", + "longitude": "11.29847000" + }, + { + "id": "139100", + "name": "Grigno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01569000", + "longitude": "11.63563000" + }, + { + "id": "139138", + "name": "Grumes", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22117000", + "longitude": "11.29346000" + }, + { + "id": "139198", + "name": "Imer", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14931000", + "longitude": "11.78919000" + }, + { + "id": "139232", + "name": "Isera", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88760000", + "longitude": "11.00918000" + }, + { + "id": "139307", + "name": "La Valle - Wengen", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.65763000", + "longitude": "11.92399000" + }, + { + "id": "139315", + "name": "Laces", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.61641000", + "longitude": "10.85726000" + }, + { + "id": "139321", + "name": "Laghetti", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.27473000", + "longitude": "11.24011000" + }, + { + "id": "139329", + "name": "Lagundo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.68113000", + "longitude": "11.12572000" + }, + { + "id": "139335", + "name": "Laion", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.60809000", + "longitude": "11.56559000" + }, + { + "id": "139336", + "name": "Laives", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.42679000", + "longitude": "11.33841000" + }, + { + "id": "139352", + "name": "Lana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.61209000", + "longitude": "11.15653000" + }, + { + "id": "139371", + "name": "Lardaro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96946000", + "longitude": "10.66126000" + }, + { + "id": "139378", + "name": "Lasa", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.61783000", + "longitude": "10.69777000" + }, + { + "id": "139380", + "name": "Lases", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14560000", + "longitude": "11.21932000" + }, + { + "id": "139381", + "name": "Lasino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02420000", + "longitude": "10.98357000" + }, + { + "id": "139399", + "name": "Lauregno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.45431000", + "longitude": "11.06177000" + }, + { + "id": "139418", + "name": "Lavis", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14131000", + "longitude": "11.10931000" + }, + { + "id": "139455", + "name": "Leone-Santa Elisabetta", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.73166000", + "longitude": "11.64944000" + }, + { + "id": "139488", + "name": "Levico Terme", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01217000", + "longitude": "11.30427000" + }, + { + "id": "139541", + "name": "Lisignago", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16061000", + "longitude": "11.18768000" + }, + { + "id": "139549", + "name": "Livo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40471000", + "longitude": "11.01927000" + }, + { + "id": "139573", + "name": "Lodrone-Darzo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82962000", + "longitude": "10.53560000" + }, + { + "id": "139583", + "name": "Lona-Lases", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14421000", + "longitude": "11.21958000" + }, + { + "id": "139671", + "name": "Luserna", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92260000", + "longitude": "11.32289000" + }, + { + "id": "139678", + "name": "Luson - Luesen", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.74623000", + "longitude": "11.76098000" + }, + { + "id": "139712", + "name": "Madrano-Canzolino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08440000", + "longitude": "11.21736000" + }, + { + "id": "139743", + "name": "Magrè sulla Strada del Vino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28791000", + "longitude": "11.21068000" + }, + { + "id": "139779", + "name": "Malè", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.35356000", + "longitude": "10.91246000" + }, + { + "id": "139769", + "name": "Malles Venosta", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.68791000", + "longitude": "10.54655000" + }, + { + "id": "139774", + "name": "Malosco", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.43611000", + "longitude": "11.14627000" + }, + { + "id": "139852", + "name": "Marco", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84258000", + "longitude": "11.00925000" + }, + { + "id": "139903", + "name": "Marlengo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.65262000", + "longitude": "11.14546000" + }, + { + "id": "139987", + "name": "Massimeno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14070000", + "longitude": "10.77317000" + }, + { + "id": "139999", + "name": "Mattarello", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00865000", + "longitude": "11.12984000" + }, + { + "id": "140011", + "name": "Mazzin", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.45742000", + "longitude": "11.70018000" + }, + { + "id": "140709", + "name": "Mühlen in Taufers", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.89926000", + "longitude": "11.94317000" + }, + { + "id": "140015", + "name": "Meano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12457000", + "longitude": "11.11761000" + }, + { + "id": "140031", + "name": "Meiern", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.56503000", + "longitude": "10.78270000" + }, + { + "id": "140057", + "name": "Meltina", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.58744000", + "longitude": "11.25487000" + }, + { + "id": "140068", + "name": "Merano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.66817000", + "longitude": "11.15953000" + }, + { + "id": "140105", + "name": "Mezzana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.31671000", + "longitude": "10.80007000" + }, + { + "id": "140113", + "name": "Mezzano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15393000", + "longitude": "11.80876000" + }, + { + "id": "140118", + "name": "Mezzocorona", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21159000", + "longitude": "11.12253000" + }, + { + "id": "140123", + "name": "Mezzolombardo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.20774000", + "longitude": "11.09636000" + }, + { + "id": "140165", + "name": "Miola di Pinè", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12668000", + "longitude": "11.24850000" + }, + { + "id": "140193", + "name": "Moena", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.37655000", + "longitude": "11.65941000" + }, + { + "id": "140215", + "name": "Molina di Ledro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87095000", + "longitude": "10.77408000" + }, + { + "id": "140233", + "name": "Molveno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14238000", + "longitude": "10.96300000" + }, + { + "id": "140268", + "name": "Monclassico", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.33410000", + "longitude": "10.88604000" + }, + { + "id": "140291", + "name": "Monguelfo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.75774000", + "longitude": "12.10556000" + }, + { + "id": "140308", + "name": "Montagna", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.33033000", + "longitude": "11.30027000" + }, + { + "id": "140312", + "name": "Montagne", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05850000", + "longitude": "10.75127000" + }, + { + "id": "140615", + "name": "Mori", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85187000", + "longitude": "10.98052000" + }, + { + "id": "140644", + "name": "Moscheri", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86875000", + "longitude": "11.07383000" + }, + { + "id": "140649", + "name": "Moso in Passiria", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.83154000", + "longitude": "11.16708000" + }, + { + "id": "140710", + "name": "Nago-Torbole", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87594000", + "longitude": "10.89106000" + }, + { + "id": "140711", + "name": "Nalles", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.54341000", + "longitude": "11.20625000" + }, + { + "id": "140712", + "name": "Nanno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.31481000", + "longitude": "11.04747000" + }, + { + "id": "140726", + "name": "Naturno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.64801000", + "longitude": "11.00129000" + }, + { + "id": "140729", + "name": "Nave San Rocco", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16771000", + "longitude": "11.10508000" + }, + { + "id": "140732", + "name": "Naz-Sciaves - Natz-Schabs", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.76883000", + "longitude": "11.66558000" + }, + { + "id": "140792", + "name": "Nogaredo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91300000", + "longitude": "11.02388000" + }, + { + "id": "140801", + "name": "Nomi", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92923000", + "longitude": "11.07198000" + }, + { + "id": "140813", + "name": "Nova Levante", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.42899000", + "longitude": "11.53942000" + }, + { + "id": "140815", + "name": "Nova Ponente", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41404000", + "longitude": "11.42523000" + }, + { + "id": "140820", + "name": "Novaledo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02340000", + "longitude": "11.36607000" + }, + { + "id": "140936", + "name": "Ora", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.34687000", + "longitude": "11.29747000" + }, + { + "id": "140986", + "name": "Ortisei", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.57603000", + "longitude": "11.67176000" + }, + { + "id": "141015", + "name": "Ospedaletto", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04286000", + "longitude": "11.55439000" + }, + { + "id": "141025", + "name": "Ossana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30651000", + "longitude": "10.73757000" + }, + { + "id": "141074", + "name": "Padergnone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05982000", + "longitude": "10.98478000" + }, + { + "id": "58271", + "name": "Palù del Fersina", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12951000", + "longitude": "11.35088000" + }, + { + "id": "58275", + "name": "Panchià", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28648000", + "longitude": "11.54061000" + }, + { + "id": "58298", + "name": "Parcines", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.68422000", + "longitude": "11.07337000" + }, + { + "id": "58397", + "name": "Pellizzano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30980000", + "longitude": "10.75790000" + }, + { + "id": "58398", + "name": "Pelugo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08850000", + "longitude": "10.72387000" + }, + { + "id": "58413", + "name": "Perca", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.79343000", + "longitude": "11.98339000" + }, + { + "id": "58423", + "name": "Pergine Valsugana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06434000", + "longitude": "11.23758000" + }, + { + "id": "58563", + "name": "Piazza", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87705000", + "longitude": "11.15809000" + }, + { + "id": "58618", + "name": "Pietramurata", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02033000", + "longitude": "10.94316000" + }, + { + "id": "58648", + "name": "Pieve di Bono", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94220000", + "longitude": "10.64027000" + }, + { + "id": "58652", + "name": "Pieve di Ledro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88848000", + "longitude": "10.73124000" + }, + { + "id": "58640", + "name": "Pieve Tesino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06820000", + "longitude": "11.61122000" + }, + { + "id": "58676", + "name": "Pineta", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.43994000", + "longitude": "11.34727000" + }, + { + "id": "58683", + "name": "Pinzolo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15976000", + "longitude": "10.76376000" + }, + { + "id": "58736", + "name": "Plaus", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.65623000", + "longitude": "11.04178000" + }, + { + "id": "58812", + "name": "Pomarolo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92810000", + "longitude": "11.04308000" + }, + { + "id": "58835", + "name": "Ponte Arche", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03526000", + "longitude": "10.87320000" + }, + { + "id": "58841", + "name": "Ponte Gardena", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.59712000", + "longitude": "11.53088000" + }, + { + "id": "58960", + "name": "Postal", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.60949000", + "longitude": "11.19313000" + }, + { + "id": "58971", + "name": "Povo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06698000", + "longitude": "11.15503000" + }, + { + "id": "58974", + "name": "Pozza di Fassa", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.42806000", + "longitude": "11.68711000" + }, + { + "id": "59011", + "name": "Praso", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95000000", + "longitude": "10.63627000" + }, + { + "id": "59020", + "name": "Prati", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.90003000", + "longitude": "11.46507000" + }, + { + "id": "59028", + "name": "Prato Allo Stelvio", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.61901000", + "longitude": "10.59136000" + }, + { + "id": "59044", + "name": "Predazzo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.31140000", + "longitude": "11.59960000" + }, + { + "id": "59045", + "name": "Predoi", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "47.04031000", + "longitude": "12.10663000" + }, + { + "id": "59061", + "name": "Preore", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04663000", + "longitude": "10.75969000" + }, + { + "id": "59073", + "name": "Prezzo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93470000", + "longitude": "10.63297000" + }, + { + "id": "59098", + "name": "Proves - Proveis", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.47661000", + "longitude": "11.02247000" + }, + { + "id": "59105", + "name": "Provincia autonoma di Trento", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06966000", + "longitude": "11.12177000" + }, + { + "id": "59253", + "name": "Rabbi Fonti", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39886000", + "longitude": "10.84951000" + }, + { + "id": "59254", + "name": "Rablà", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.67044000", + "longitude": "11.06458000" + }, + { + "id": "59259", + "name": "Racines", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.86667000", + "longitude": "11.30000000" + }, + { + "id": "59260", + "name": "Racines - Ratschings", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.88183000", + "longitude": "11.37827000" + }, + { + "id": "59268", + "name": "Ragoli", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05423000", + "longitude": "10.77855000" + }, + { + "id": "59292", + "name": "Rasun Anterselva - Rasen-Antholz", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.77853000", + "longitude": "12.04729000" + }, + { + "id": "59301", + "name": "Ravina", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03944000", + "longitude": "11.11215000" + }, + { + "id": "59333", + "name": "Renon - Ritten", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.54152000", + "longitude": "11.45728000" + }, + { + "id": "59345", + "name": "Revò", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39226000", + "longitude": "11.05808000" + }, + { + "id": "59371", + "name": "Ried", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.92993000", + "longitude": "11.52414000" + }, + { + "id": "59375", + "name": "Rifiano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.70287000", + "longitude": "11.18057000" + }, + { + "id": "59389", + "name": "Rio di Pusteria", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.79658000", + "longitude": "11.66754000" + }, + { + "id": "59413", + "name": "Riscone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.77685000", + "longitude": "11.95149000" + }, + { + "id": "59419", + "name": "Riva del Garda", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88577000", + "longitude": "10.84117000" + }, + { + "id": "59549", + "name": "Rodengo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.80000000", + "longitude": "11.70000000" + }, + { + "id": "59550", + "name": "Rodengo - Rodeneck", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.77953000", + "longitude": "11.69048000" + }, + { + "id": "59570", + "name": "Romagnano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01807000", + "longitude": "11.10563000" + }, + { + "id": "59573", + "name": "Romallo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39721000", + "longitude": "11.06617000" + }, + { + "id": "59583", + "name": "Romeno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39452000", + "longitude": "11.11920000" + }, + { + "id": "59593", + "name": "Roncegno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04934000", + "longitude": "11.40824000" + }, + { + "id": "59595", + "name": "Ronchi Valsugana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06841000", + "longitude": "11.43519000" + }, + { + "id": "59612", + "name": "Roncone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98270000", + "longitude": "10.66817000" + }, + { + "id": "59618", + "name": "Ronzo-Chienis", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88960000", + "longitude": "10.95008000" + }, + { + "id": "59619", + "name": "Ronzone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.42437000", + "longitude": "11.15275000" + }, + { + "id": "59681", + "name": "Roverè della Luna", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25008000", + "longitude": "11.17233000" + }, + { + "id": "59679", + "name": "Rovereto", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89040000", + "longitude": "11.04053000" + }, + { + "id": "59698", + "name": "Ruffrè", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41481000", + "longitude": "11.17777000" + }, + { + "id": "59702", + "name": "Rumo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.44141000", + "longitude": "11.01857000" + }, + { + "id": "59714", + "name": "Sabbionara", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74152000", + "longitude": "10.95740000" + }, + { + "id": "59726", + "name": "Sagron Mis", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19471000", + "longitude": "11.94320000" + }, + { + "id": "59779", + "name": "Salorno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.24062000", + "longitude": "11.21192000" + }, + { + "id": "59814", + "name": "Samone", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08161000", + "longitude": "11.52259000" + }, + { + "id": "59836", + "name": "San Bernardo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40088000", + "longitude": "10.84445000" + }, + { + "id": "59851", + "name": "San Candido", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.73240000", + "longitude": "12.27855000" + }, + { + "id": "59907", + "name": "San Felice", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.49429000", + "longitude": "11.13022000" + }, + { + "id": "59932", + "name": "San Genesio", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.65800000", + "longitude": "11.92456000" + }, + { + "id": "59933", + "name": "San Genesio Atesino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.53460000", + "longitude": "11.32971000" + }, + { + "id": "59943", + "name": "San Giacomo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.45624000", + "longitude": "11.33365000" + }, + { + "id": "60031", + "name": "San Leonardo in Passiria", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.81282000", + "longitude": "11.24577000" + }, + { + "id": "60047", + "name": "San Lorenzo di Sebato", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.78514000", + "longitude": "11.90812000" + }, + { + "id": "60048", + "name": "San Lorenzo in Banale", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07660000", + "longitude": "10.90847000" + }, + { + "id": "60069", + "name": "San Martino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.81097000", + "longitude": "12.22684000" + }, + { + "id": "60089", + "name": "San Martino in Badia", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.68153000", + "longitude": "11.89809000" + }, + { + "id": "60092", + "name": "San Martino in Passiria", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.78392000", + "longitude": "11.22727000" + }, + { + "id": "60114", + "name": "San Michele", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.45472000", + "longitude": "11.26178000" + }, + { + "id": "60117", + "name": "San Michele All'Adige", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18967000", + "longitude": "11.13212000" + }, + { + "id": "60151", + "name": "San Pancrazio", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.58600000", + "longitude": "11.08571000" + }, + { + "id": "60155", + "name": "San Paolo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.47207000", + "longitude": "11.26021000" + }, + { + "id": "60170", + "name": "San Pietro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.64133000", + "longitude": "11.68277000" + }, + { + "id": "60266", + "name": "San Vigilio", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.69884000", + "longitude": "11.93104000" + }, + { + "id": "60411", + "name": "Sant'Orsola", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10901000", + "longitude": "11.30201000" + }, + { + "id": "60412", + "name": "Sant'Orsola Terme", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10881000", + "longitude": "11.30238000" + }, + { + "id": "60423", + "name": "Santa Cristina Valgardena", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.56299000", + "longitude": "11.73216000" + }, + { + "id": "60497", + "name": "Santa Valburga", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.55000000", + "longitude": "11.00000000" + }, + { + "id": "60533", + "name": "Sanzeno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.36614000", + "longitude": "11.07559000" + }, + { + "id": "60546", + "name": "Sarentino", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.64121000", + "longitude": "11.35411000" + }, + { + "id": "60555", + "name": "Sarnonico", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41941000", + "longitude": "11.14177000" + }, + { + "id": "60637", + "name": "Scena", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.68840000", + "longitude": "11.18855000" + }, + { + "id": "60638", + "name": "Scena - Schenna", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.69012000", + "longitude": "11.18627000" + }, + { + "id": "60652", + "name": "Sciaves", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.76859000", + "longitude": "11.66607000" + }, + { + "id": "60671", + "name": "Scurelle", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06451000", + "longitude": "11.50569000" + }, + { + "id": "60690", + "name": "Segonzano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.19021000", + "longitude": "11.25988000" + }, + { + "id": "60703", + "name": "Selva", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.55472000", + "longitude": "11.76038000" + }, + { + "id": "60705", + "name": "Selva dei Molini", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.89031000", + "longitude": "11.85832000" + }, + { + "id": "60719", + "name": "Senale", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.51077000", + "longitude": "11.11012000" + }, + { + "id": "60720", + "name": "Senales", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.70602000", + "longitude": "10.90846000" + }, + { + "id": "60794", + "name": "Sesto", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.70216000", + "longitude": "12.34962000" + }, + { + "id": "60830", + "name": "Sfruz", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.33961000", + "longitude": "11.12377000" + }, + { + "id": "60847", + "name": "Silandro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.62831000", + "longitude": "10.76809000" + }, + { + "id": "60866", + "name": "Sinigo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.63488000", + "longitude": "11.17926000" + }, + { + "id": "60877", + "name": "Siror", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18784000", + "longitude": "11.83116000" + }, + { + "id": "60883", + "name": "Siusi", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.54133000", + "longitude": "11.55868000" + }, + { + "id": "60887", + "name": "Sluderno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.66524000", + "longitude": "10.58345000" + }, + { + "id": "60888", + "name": "Smarano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.34311000", + "longitude": "11.10977000" + }, + { + "id": "60942", + "name": "Soprabolzano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.52899000", + "longitude": "11.40408000" + }, + { + "id": "60945", + "name": "Soraga", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39462000", + "longitude": "11.66619000" + }, + { + "id": "60976", + "name": "Sover", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22171000", + "longitude": "11.31568000" + }, + { + "id": "60996", + "name": "Spera", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07031000", + "longitude": "11.50899000" + }, + { + "id": "61005", + "name": "Spiazzo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10360000", + "longitude": "10.73937000" + }, + { + "id": "61029", + "name": "Spormaggiore", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.21853000", + "longitude": "11.04805000" + }, + { + "id": "61030", + "name": "Sporminore", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.23692000", + "longitude": "11.02919000" + }, + { + "id": "61045", + "name": "Stanghe", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.88219000", + "longitude": "11.37764000" + }, + { + "id": "61065", + "name": "Stelvio", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.59767000", + "longitude": "10.54580000" + }, + { + "id": "61066", + "name": "Stenico", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05124000", + "longitude": "10.85562000" + }, + { + "id": "61081", + "name": "Storo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84925000", + "longitude": "10.58022000" + }, + { + "id": "61092", + "name": "Strembo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12030000", + "longitude": "10.75087000" + }, + { + "id": "61097", + "name": "Strigno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06690000", + "longitude": "11.52224000" + }, + { + "id": "61149", + "name": "Taio", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32139000", + "longitude": "11.06624000" + }, + { + "id": "61173", + "name": "Tassullo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.34298000", + "longitude": "11.04539000" + }, + { + "id": "61208", + "name": "Telve", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07011000", + "longitude": "11.48022000" + }, + { + "id": "61209", + "name": "Telve di Sopra", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07131000", + "longitude": "11.47179000" + }, + { + "id": "61213", + "name": "Tenna", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01570000", + "longitude": "11.26428000" + }, + { + "id": "61214", + "name": "Tenno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91937000", + "longitude": "10.83160000" + }, + { + "id": "61220", + "name": "Terento", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.82992000", + "longitude": "11.78288000" + }, + { + "id": "61223", + "name": "Terlago", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.09737000", + "longitude": "11.04505000" + }, + { + "id": "61224", + "name": "Terlano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.53216000", + "longitude": "11.24689000" + }, + { + "id": "61227", + "name": "Termeno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.34151000", + "longitude": "11.24228000" + }, + { + "id": "61237", + "name": "Terragnolo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87830000", + "longitude": "11.15468000" + }, + { + "id": "61250", + "name": "Terres", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30991000", + "longitude": "11.02307000" + }, + { + "id": "61258", + "name": "Terzolas", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.36111000", + "longitude": "10.92587000" + }, + { + "id": "61260", + "name": "Tesero", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29184000", + "longitude": "11.50946000" + }, + { + "id": "61261", + "name": "Tesimo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.56542000", + "longitude": "11.16937000" + }, + { + "id": "61281", + "name": "Tione di Trento", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03550000", + "longitude": "10.72679000" + }, + { + "id": "61283", + "name": "Tires", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.46817000", + "longitude": "11.52704000" + }, + { + "id": "61285", + "name": "Tirolo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.69102000", + "longitude": "11.15427000" + }, + { + "id": "61306", + "name": "Tonadico", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18111000", + "longitude": "11.83939000" + }, + { + "id": "61319", + "name": "Torcegno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07431000", + "longitude": "11.44979000" + }, + { + "id": "61431", + "name": "Trambileno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86890000", + "longitude": "11.07338000" + }, + { + "id": "61438", + "name": "Transacqua", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17367000", + "longitude": "11.83279000" + }, + { + "id": "61483", + "name": "Trento", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06787000", + "longitude": "11.12108000" + }, + { + "id": "61491", + "name": "Tres", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32179000", + "longitude": "11.09654000" + }, + { + "id": "61546", + "name": "Trodena", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32181000", + "longitude": "11.34982000" + }, + { + "id": "61560", + "name": "Tubre", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.64403000", + "longitude": "10.46328000" + }, + { + "id": "61561", + "name": "Tuenno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32844000", + "longitude": "11.02306000" + }, + { + "id": "61595", + "name": "Ultimo - Ulten", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.54832000", + "longitude": "11.00417000" + }, + { + "id": "61628", + "name": "Vadena", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41361000", + "longitude": "11.30498000" + }, + { + "id": "61649", + "name": "Valda", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.20721000", + "longitude": "11.26488000" + }, + { + "id": "61651", + "name": "Valdaora di Mezzo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.76027000", + "longitude": "12.02951000" + }, + { + "id": "61670", + "name": "Valfloriana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.24971000", + "longitude": "11.34308000" + }, + { + "id": "61682", + "name": "Vallarsa", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78280000", + "longitude": "11.11788000" + }, + { + "id": "61685", + "name": "Valle Aurina - Ahrntal", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.99623000", + "longitude": "11.97988000" + }, + { + "id": "61697", + "name": "Valle di Casies - Gsies", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.76833000", + "longitude": "12.17939000" + }, + { + "id": "61751", + "name": "Vandoies - Vintl", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.81513000", + "longitude": "11.72068000" + }, + { + "id": "61752", + "name": "Vandoies di Sotto", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.81600000", + "longitude": "11.72183000" + }, + { + "id": "61767", + "name": "Varena", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30671000", + "longitude": "11.45828000" + }, + { + "id": "61773", + "name": "Varna", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.73901000", + "longitude": "11.63749000" + }, + { + "id": "61783", + "name": "Vattaro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99388000", + "longitude": "11.21792000" + }, + { + "id": "61807", + "name": "Velturno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.66705000", + "longitude": "11.59712000" + }, + { + "id": "61831", + "name": "Verano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.60442000", + "longitude": "11.22565000" + }, + { + "id": "61832", + "name": "Verano - Voeran", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.60472000", + "longitude": "11.22607000" + }, + { + "id": "61850", + "name": "Verla", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15793000", + "longitude": "11.15331000" + }, + { + "id": "61852", + "name": "Vermiglio", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29691000", + "longitude": "10.69136000" + }, + { + "id": "61876", + "name": "Vervò", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.30989000", + "longitude": "11.11972000" + }, + { + "id": "61894", + "name": "Vezzano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.07867000", + "longitude": "10.99735000" + }, + { + "id": "61960", + "name": "Vignola", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04436000", + "longitude": "11.27738000" + }, + { + "id": "61968", + "name": "Vigo di Fassa", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41898000", + "longitude": "11.67418000" + }, + { + "id": "61969", + "name": "Vigo di Ton", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26531000", + "longitude": "11.08798000" + }, + { + "id": "61972", + "name": "Vigolo Vattaro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00523000", + "longitude": "11.19790000" + }, + { + "id": "61983", + "name": "Villa", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.74591000", + "longitude": "11.76243000" + }, + { + "id": "62001", + "name": "Villa Lagarina", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91843000", + "longitude": "11.03303000" + }, + { + "id": "62014", + "name": "Villa Rendena", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06270000", + "longitude": "10.71250000" + }, + { + "id": "62043", + "name": "Villa-Agnedo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05421000", + "longitude": "11.52839000" + }, + { + "id": "62046", + "name": "Villabassa", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.73781000", + "longitude": "12.17266000" + }, + { + "id": "62087", + "name": "Villandro", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.63086000", + "longitude": "11.53808000" + }, + { + "id": "62088", + "name": "Villandro - Villanders", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.63082000", + "longitude": "11.53708000" + }, + { + "id": "62168", + "name": "Vipiteno", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.89313000", + "longitude": "11.42961000" + }, + { + "id": "62204", + "name": "Volano", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91718000", + "longitude": "11.06351000" + }, + { + "id": "62232", + "name": "Zambana", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.15170000", + "longitude": "11.09618000" + }, + { + "id": "62258", + "name": "Ziano di Fiemme", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28572000", + "longitude": "11.56496000" + }, + { + "id": "62280", + "name": "Zuclo", + "state_id": 1725, + "state_code": "32", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03430000", + "longitude": "10.75107000" + }, + { + "id": "135238", + "name": "Abbadia San Salvatore", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.88120000", + "longitude": "11.67220000" + }, + { + "id": "135244", + "name": "Abetone", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.14595000", + "longitude": "10.66407000" + }, + { + "id": "135276", + "name": "Acquaviva", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.11566000", + "longitude": "11.86249000" + }, + { + "id": "135301", + "name": "Agliana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90246000", + "longitude": "11.00531000" + }, + { + "id": "135371", + "name": "Albiano Magra", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17574000", + "longitude": "9.91619000" + }, + { + "id": "135378", + "name": "Albinia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.50278000", + "longitude": "11.21027000" + }, + { + "id": "135446", + "name": "Altopascio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81618000", + "longitude": "10.67668000" + }, + { + "id": "135466", + "name": "Ambra", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.41465000", + "longitude": "11.60291000" + }, + { + "id": "135478", + "name": "Anchione", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82612000", + "longitude": "10.75844000" + }, + { + "id": "135497", + "name": "Anghiari", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54104000", + "longitude": "12.05832000" + }, + { + "id": "135513", + "name": "Antella", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72774000", + "longitude": "11.32233000" + }, + { + "id": "135554", + "name": "Arbia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.29342000", + "longitude": "11.40978000" + }, + { + "id": "135567", + "name": "Arcidosso", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87162000", + "longitude": "11.53599000" + }, + { + "id": "135590", + "name": "Arezzo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.46276000", + "longitude": "11.88068000" + }, + { + "id": "135654", + "name": "Asciano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.23232000", + "longitude": "11.56655000" + }, + { + "id": "135687", + "name": "Aulla", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20632000", + "longitude": "9.97853000" + }, + { + "id": "135696", + "name": "Avane", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79049000", + "longitude": "10.40982000" + }, + { + "id": "135739", + "name": "Badia al Pino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40424000", + "longitude": "11.77228000" + }, + { + "id": "135738", + "name": "Badia Tedalda", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.70887000", + "longitude": "12.18425000" + }, + { + "id": "135757", + "name": "Bagni di Lucca", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00513000", + "longitude": "10.55310000" + }, + { + "id": "135761", + "name": "Bagno a Ripoli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.75115000", + "longitude": "11.32252000" + }, + { + "id": "135760", + "name": "Bagno Roselle", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.81114000", + "longitude": "11.13859000" + }, + { + "id": "135774", + "name": "Bagnone", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31494000", + "longitude": "9.99507000" + }, + { + "id": "135817", + "name": "Barba", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88291000", + "longitude": "10.97608000" + }, + { + "id": "135822", + "name": "Barbarasco", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24150000", + "longitude": "9.94571000" + }, + { + "id": "135828", + "name": "Barberino di Mugello", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99930000", + "longitude": "11.23676000" + }, + { + "id": "135827", + "name": "Barberino Val d'Elsa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.53987000", + "longitude": "11.17178000" + }, + { + "id": "135848", + "name": "Barga", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07310000", + "longitude": "10.47789000" + }, + { + "id": "135907", + "name": "Battifolle-Ruscello-Poggiola", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.45000000", + "longitude": "11.80000000" + }, + { + "id": "135941", + "name": "Bellavista", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.44197000", + "longitude": "11.16051000" + }, + { + "id": "135968", + "name": "Belverde", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.34820000", + "longitude": "11.30763000" + }, + { + "id": "136021", + "name": "Bettolle", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.20676000", + "longitude": "11.80365000" + }, + { + "id": "136039", + "name": "Bibbiena", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69876000", + "longitude": "11.81474000" + }, + { + "id": "136040", + "name": "Bibbona", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.26822000", + "longitude": "10.59510000" + }, + { + "id": "136049", + "name": "Bientina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.70826000", + "longitude": "10.62116000" + }, + { + "id": "136164", + "name": "Borghetto-Melara", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.09852000", + "longitude": "9.99073000" + }, + { + "id": "136197", + "name": "Borgo a Buggiano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.87522000", + "longitude": "10.73482000" + }, + { + "id": "136198", + "name": "Borgo a Mozzano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.97946000", + "longitude": "10.54489000" + }, + { + "id": "136184", + "name": "Borgo San Lorenzo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.95548000", + "longitude": "11.38561000" + }, + { + "id": "136280", + "name": "Braccagni", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87285000", + "longitude": "11.07266000" + }, + { + "id": "136389", + "name": "Bucine", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.47685000", + "longitude": "11.61399000" + }, + { + "id": "136407", + "name": "Buonconvento", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.13314000", + "longitude": "11.48363000" + }, + { + "id": "136437", + "name": "Buti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72857000", + "longitude": "10.58450000" + }, + { + "id": "136503", + "name": "Calci", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72597000", + "longitude": "10.51791000" + }, + { + "id": "136505", + "name": "Calcinaia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.68352000", + "longitude": "10.61653000" + }, + { + "id": "136518", + "name": "Caldine", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82834000", + "longitude": "11.30442000" + }, + { + "id": "136522", + "name": "Calenzano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85447000", + "longitude": "11.16608000" + }, + { + "id": "136567", + "name": "Camaiore", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.94265000", + "longitude": "10.29754000" + }, + { + "id": "136602", + "name": "Campagnatico", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.88283000", + "longitude": "11.27394000" + }, + { + "id": "136615", + "name": "Campi Bisenzio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82450000", + "longitude": "11.13027000" + }, + { + "id": "136618", + "name": "Campiglia Marittima", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.06001000", + "longitude": "10.61453000" + }, + { + "id": "136626", + "name": "Campo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.70811000", + "longitude": "10.47703000" + }, + { + "id": "136637", + "name": "Campo nell'Elba", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.74802000", + "longitude": "10.23332000" + }, + { + "id": "136632", + "name": "Campo Tizzoro", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03994000", + "longitude": "10.85237000" + }, + { + "id": "136675", + "name": "Camporgiano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.15927000", + "longitude": "10.33300000" + }, + { + "id": "136684", + "name": "Camucia-Monsigliolo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25926000", + "longitude": "11.97114000" + }, + { + "id": "136737", + "name": "Cantagallo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.02205000", + "longitude": "11.07971000" + }, + { + "id": "136738", + "name": "Cantagrillo-Casalguidi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86937000", + "longitude": "10.91386000" + }, + { + "id": "136759", + "name": "Capalbio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.45342000", + "longitude": "11.42175000" + }, + { + "id": "136760", + "name": "Capanne-Prato-Cinquale", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99720000", + "longitude": "10.15636000" + }, + { + "id": "136761", + "name": "Capannoli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.58856000", + "longitude": "10.67328000" + }, + { + "id": "136762", + "name": "Capannori", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84171000", + "longitude": "10.57271000" + }, + { + "id": "136783", + "name": "Capoliveri", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.74569000", + "longitude": "10.37753000" + }, + { + "id": "136784", + "name": "Capolona", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.56685000", + "longitude": "11.86374000" + }, + { + "id": "136799", + "name": "Capraia e Limite", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.74535000", + "longitude": "10.98342000" + }, + { + "id": "136798", + "name": "Capraia Isola", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05064000", + "longitude": "9.84298000" + }, + { + "id": "136807", + "name": "Caprese Michelangelo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.64031000", + "longitude": "11.98546000" + }, + { + "id": "136864", + "name": "Careggine", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11995000", + "longitude": "10.32540000" + }, + { + "id": "136892", + "name": "Carmignano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81027000", + "longitude": "11.01494000" + }, + { + "id": "136923", + "name": "Carraia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.89534000", + "longitude": "11.18190000" + }, + { + "id": "136924", + "name": "Carrara", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07926000", + "longitude": "10.09789000" + }, + { + "id": "136977", + "name": "Casale Marittimo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.29727000", + "longitude": "10.61658000" + }, + { + "id": "137047", + "name": "Casciana Terme", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52668000", + "longitude": "10.61812000" + }, + { + "id": "137048", + "name": "Cascina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67557000", + "longitude": "10.55494000" + }, + { + "id": "137051", + "name": "Cascine-La Croce", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72885000", + "longitude": "10.61471000" + }, + { + "id": "137080", + "name": "Casola in Lunigiana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20045000", + "longitude": "10.17679000" + }, + { + "id": "137082", + "name": "Casole d'Elsa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.34115000", + "longitude": "11.04794000" + }, + { + "id": "137117", + "name": "Castagneto Carducci", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.16073000", + "longitude": "10.61092000" + }, + { + "id": "137166", + "name": "Castel del Piano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89228000", + "longitude": "11.53903000" + }, + { + "id": "137153", + "name": "Castel San Niccolò", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.74445000", + "longitude": "11.70913000" + }, + { + "id": "137193", + "name": "Castelfiorentino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60963000", + "longitude": "10.96772000" + }, + { + "id": "137199", + "name": "Castelfranco di Sopra", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.62156000", + "longitude": "11.55885000" + }, + { + "id": "137200", + "name": "Castelfranco di Sotto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.70368000", + "longitude": "10.74630000" + }, + { + "id": "137208", + "name": "Castell'Azzara", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.77275000", + "longitude": "11.69794000" + }, + { + "id": "137246", + "name": "Castellina in Chianti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.46438000", + "longitude": "11.28950000" + }, + { + "id": "137244", + "name": "Castellina Marittima", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.41301000", + "longitude": "10.57594000" + }, + { + "id": "137245", + "name": "Castellina Scalo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40476000", + "longitude": "11.20908000" + }, + { + "id": "137283", + "name": "Castelnuovo Berardenga", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.34548000", + "longitude": "11.50039000" + }, + { + "id": "137296", + "name": "Castelnuovo dei Sabbioni", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54093000", + "longitude": "11.45234000" + }, + { + "id": "137302", + "name": "Castelnuovo di Garfagnana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11260000", + "longitude": "10.40518000" + }, + { + "id": "137304", + "name": "Castelnuovo di Val di Cecina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.21148000", + "longitude": "10.90413000" + }, + { + "id": "137336", + "name": "Castiglion Fibocchi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52742000", + "longitude": "11.76151000" + }, + { + "id": "137337", + "name": "Castiglion Fiorentino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.34308000", + "longitude": "11.91995000" + }, + { + "id": "137350", + "name": "Castiglione d'Orcia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.00460000", + "longitude": "11.61451000" + }, + { + "id": "137354", + "name": "Castiglione della Pescaia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.76854000", + "longitude": "10.87746000" + }, + { + "id": "137356", + "name": "Castiglione di Garfagnana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.15248000", + "longitude": "10.41212000" + }, + { + "id": "137393", + "name": "Catena", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84254000", + "longitude": "11.01658000" + }, + { + "id": "137417", + "name": "Cavallina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.98353000", + "longitude": "11.23147000" + }, + { + "id": "137444", + "name": "Cavriglia-Monastero", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52025000", + "longitude": "11.48693000" + }, + { + "id": "137454", + "name": "Cecina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.30621000", + "longitude": "10.51729000" + }, + { + "id": "137486", + "name": "Cenaia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60637000", + "longitude": "10.53571000" + }, + { + "id": "137519", + "name": "Cerbaia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.68519000", + "longitude": "11.12889000" + }, + { + "id": "137563", + "name": "Cerreto Guidi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.75851000", + "longitude": "10.88191000" + }, + { + "id": "137578", + "name": "Certaldo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54768000", + "longitude": "11.03924000" + }, + { + "id": "137601", + "name": "Cesa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.31624000", + "longitude": "11.81262000" + }, + { + "id": "137622", + "name": "Cetona", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.96655000", + "longitude": "11.90268000" + }, + { + "id": "137645", + "name": "Chianciano Terme", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.04181000", + "longitude": "11.81205000" + }, + { + "id": "137646", + "name": "Chianni", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48153000", + "longitude": "10.64133000" + }, + { + "id": "137656", + "name": "Chiassa-Tregozzano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.51251000", + "longitude": "11.89134000" + }, + { + "id": "137670", + "name": "Chiesina Uzzanese", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83891000", + "longitude": "10.72044000" + }, + { + "id": "137671", + "name": "Chiesino-Collodi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67954000", + "longitude": "10.61106000" + }, + { + "id": "137681", + "name": "Chitignano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.66163000", + "longitude": "11.88135000" + }, + { + "id": "137695", + "name": "Chiusdino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.15454000", + "longitude": "11.08310000" + }, + { + "id": "137696", + "name": "Chiusi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.01418000", + "longitude": "11.94791000" + }, + { + "id": "137698", + "name": "Chiusi della Verna", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69745000", + "longitude": "11.93504000" + }, + { + "id": "137697", + "name": "Chiusi Scalo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.99613000", + "longitude": "11.95412000" + }, + { + "id": "137733", + "name": "Cinigiano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89059000", + "longitude": "11.39196000" + }, + { + "id": "137741", + "name": "Cintolese", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84606000", + "longitude": "10.82644000" + }, + { + "id": "137804", + "name": "Civitella in Val di Chiana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.41731000", + "longitude": "11.72290000" + }, + { + "id": "137797", + "name": "Civitella Marittima", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.99408000", + "longitude": "11.28116000" + }, + { + "id": "137873", + "name": "Colle di Val d'Elsa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.42107000", + "longitude": "11.12739000" + }, + { + "id": "137893", + "name": "Collesalvetti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.59073000", + "longitude": "10.47523000" + }, + { + "id": "137935", + "name": "Comano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29335000", + "longitude": "10.13109000" + }, + { + "id": "137937", + "name": "Comeana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79334000", + "longitude": "11.05825000" + }, + { + "id": "137949", + "name": "Compiobbi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78485000", + "longitude": "11.35909000" + }, + { + "id": "138005", + "name": "Coreglia Antelminelli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.06278000", + "longitude": "10.52426000" + }, + { + "id": "138046", + "name": "Corsanico-Bargecchia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90828000", + "longitude": "10.30621000" + }, + { + "id": "138071", + "name": "Cortona", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.27467000", + "longitude": "11.98533000" + }, + { + "id": "138146", + "name": "Crespina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.57304000", + "longitude": "10.56431000" + }, + { + "id": "138217", + "name": "Cutigliano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.10059000", + "longitude": "10.75617000" + }, + { + "id": "138265", + "name": "Dicomano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.89267000", + "longitude": "11.52182000" + }, + { + "id": "138303", + "name": "Donoratico", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.16927000", + "longitude": "10.56744000" + }, + { + "id": "138356", + "name": "Empoli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.71795000", + "longitude": "10.94758000" + }, + { + "id": "138391", + "name": "Fabbriche di Vallico", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99765000", + "longitude": "10.42790000" + }, + { + "id": "138402", + "name": "Faella", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.62652000", + "longitude": "11.51844000" + }, + { + "id": "138456", + "name": "Fauglia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.57110000", + "longitude": "10.51383000" + }, + { + "id": "138511", + "name": "Fiesole", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.80455000", + "longitude": "11.29487000" + }, + { + "id": "138519", + "name": "Figline Valdarno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.61995000", + "longitude": "11.47191000" + }, + { + "id": "138525", + "name": "Filattiera", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.33005000", + "longitude": "9.93308000" + }, + { + "id": "138528", + "name": "Filettole", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81307000", + "longitude": "10.40239000" + }, + { + "id": "138543", + "name": "Firenzuola", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11968000", + "longitude": "11.38185000" + }, + { + "id": "138556", + "name": "Fivizzano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.23784000", + "longitude": "10.12650000" + }, + { + "id": "138563", + "name": "Florence", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77925000", + "longitude": "11.24626000" + }, + { + "id": "138578", + "name": "Foiano della Chiana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25318000", + "longitude": "11.81647000" + }, + { + "id": "138584", + "name": "Follonica", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.92779000", + "longitude": "10.76451000" + }, + { + "id": "138593", + "name": "Fontana delle Monache", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11386000", + "longitude": "10.27943000" + }, + { + "id": "138608", + "name": "Fonteblanda", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.56463000", + "longitude": "11.17325000" + }, + { + "id": "138622", + "name": "Forcoli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60374000", + "longitude": "10.70514000" + }, + { + "id": "138645", + "name": "Fornacelle", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92377000", + "longitude": "11.03525000" + }, + { + "id": "138646", + "name": "Fornacette", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67023000", + "longitude": "10.58512000" + }, + { + "id": "138650", + "name": "Fornaci di Barga", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04899000", + "longitude": "10.47111000" + }, + { + "id": "138661", + "name": "Forte dei Marmi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96388000", + "longitude": "10.17478000" + }, + { + "id": "138665", + "name": "Fosciandora", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11495000", + "longitude": "10.45850000" + }, + { + "id": "138666", + "name": "Fosdinovo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.13320000", + "longitude": "10.01778000" + }, + { + "id": "138746", + "name": "Fucecchio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73292000", + "longitude": "10.79749000" + }, + { + "id": "138768", + "name": "Gabella", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72360000", + "longitude": "10.49726000" + }, + { + "id": "138791", + "name": "Gaiole in Chianti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.46697000", + "longitude": "11.43386000" + }, + { + "id": "138803", + "name": "Galliano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.01725000", + "longitude": "11.29353000" + }, + { + "id": "138807", + "name": "Gallicano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.05833000", + "longitude": "10.44209000" + }, + { + "id": "138829", + "name": "Gambassi Terme", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.53576000", + "longitude": "10.95161000" + }, + { + "id": "138880", + "name": "Gavorrano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.92526000", + "longitude": "10.90681000" + }, + { + "id": "138890", + "name": "Gello", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.75402000", + "longitude": "10.42386000" + }, + { + "id": "138958", + "name": "Giglio Castello", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.36486000", + "longitude": "10.90140000" + }, + { + "id": "138964", + "name": "Ginestra Fiorentina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.70939000", + "longitude": "11.07384000" + }, + { + "id": "138978", + "name": "Giovi-Ponte alla Chiassa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52634000", + "longitude": "11.86558000" + }, + { + "id": "138994", + "name": "Giuncugnano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.21055000", + "longitude": "10.24719000" + }, + { + "id": "139073", + "name": "Grassina Ponte a Ema", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73333000", + "longitude": "11.30000000" + }, + { + "id": "139092", + "name": "Greve in Chianti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.58514000", + "longitude": "11.31712000" + }, + { + "id": "139118", + "name": "Grosseto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.76296000", + "longitude": "11.10941000" + }, + { + "id": "139166", + "name": "Guardistallo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.31408000", + "longitude": "10.62944000" + }, + { + "id": "139170", + "name": "Guasticce", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.59805000", + "longitude": "10.40865000" + }, + { + "id": "139171", + "name": "Guazzino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.21276000", + "longitude": "11.78209000" + }, + { + "id": "139193", + "name": "Il Romito", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.64908000", + "longitude": "10.64538000" + }, + { + "id": "139202", + "name": "Impruneta", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.68453000", + "longitude": "11.25434000" + }, + { + "id": "139205", + "name": "Incisa in Val d'Arno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.65480000", + "longitude": "11.44901000" + }, + { + "id": "139237", + "name": "Isola D'Arbia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25864000", + "longitude": "11.37866000" + }, + { + "id": "139244", + "name": "Isola del Giglio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.35791000", + "longitude": "10.90724000" + }, + { + "id": "139265", + "name": "Istia D'Ombrone-Le Stiacciole", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.78243000", + "longitude": "11.18820000" + }, + { + "id": "139288", + "name": "La California", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.26938000", + "longitude": "10.54313000" + }, + { + "id": "139298", + "name": "La Pieve-Molino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73725000", + "longitude": "11.62033000" + }, + { + "id": "139301", + "name": "La Rotta", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.65850000", + "longitude": "10.67837000" + }, + { + "id": "139337", + "name": "Lajatico", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.47457000", + "longitude": "10.72844000" + }, + { + "id": "139350", + "name": "Lamporecchio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.80742000", + "longitude": "10.87733000" + }, + { + "id": "139370", + "name": "Larciano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83365000", + "longitude": "10.89001000" + }, + { + "id": "139374", + "name": "Lari", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.56606000", + "longitude": "10.59211000" + }, + { + "id": "139385", + "name": "Lastra a Signa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.76998000", + "longitude": "11.11271000" + }, + { + "id": "139387", + "name": "Laterina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.50193000", + "longitude": "11.71737000" + }, + { + "id": "139423", + "name": "Lazzeretto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78305000", + "longitude": "10.86054000" + }, + { + "id": "139424", + "name": "Le Casine-Perignano-Spinelli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60000000", + "longitude": "10.58333000" + }, + { + "id": "139495", + "name": "Licciana Nardi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.26472000", + "longitude": "10.03725000" + }, + { + "id": "139523", + "name": "Limite", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.74450000", + "longitude": "10.97996000" + }, + { + "id": "139551", + "name": "Livorno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54427000", + "longitude": "10.32615000" + }, + { + "id": "139587", + "name": "Londa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86344000", + "longitude": "11.56425000" + }, + { + "id": "139607", + "name": "Lorenzana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.53533000", + "longitude": "10.53477000" + }, + { + "id": "139613", + "name": "Loro Ciuffenna", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.58827000", + "longitude": "11.62885000" + }, + { + "id": "139629", + "name": "Lucca", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84369000", + "longitude": "10.50447000" + }, + { + "id": "139632", + "name": "Lucignano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.27259000", + "longitude": "11.74599000" + }, + { + "id": "139637", + "name": "Luco Mugello", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00032000", + "longitude": "11.39611000" + }, + { + "id": "139711", + "name": "Madonna dell'Acqua", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.74264000", + "longitude": "10.37513000" + }, + { + "id": "139730", + "name": "Magliano in Toscana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.59802000", + "longitude": "11.29234000" + }, + { + "id": "139770", + "name": "Malmantile", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.74717000", + "longitude": "11.07285000" + }, + { + "id": "139782", + "name": "Manciano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.58875000", + "longitude": "11.51806000" + }, + { + "id": "139810", + "name": "Mantignano-Ugnano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78200000", + "longitude": "11.16958000" + }, + { + "id": "139845", + "name": "Marciana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.79301000", + "longitude": "10.16870000" + }, + { + "id": "139846", + "name": "Marciana Marina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.80256000", + "longitude": "10.19488000" + }, + { + "id": "139848", + "name": "Marciano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.30651000", + "longitude": "11.79171000" + }, + { + "id": "139849", + "name": "Marciano della Chiana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.30494000", + "longitude": "11.78644000" + }, + { + "id": "139851", + "name": "Marcignana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.71830000", + "longitude": "10.88436000" + }, + { + "id": "139864", + "name": "Margine Coperta-Traversagna", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.87977000", + "longitude": "10.75733000" + }, + { + "id": "139879", + "name": "Marina di Campo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.74260000", + "longitude": "10.23428000" + }, + { + "id": "139881", + "name": "Marina di Carrara", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03837000", + "longitude": "10.04142000" + }, + { + "id": "139888", + "name": "Marina di Grosseto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.71908000", + "longitude": "10.98138000" + }, + { + "id": "139889", + "name": "Marina di Massa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00380000", + "longitude": "10.10674000" + }, + { + "id": "139891", + "name": "Marina di Pisa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.66667000", + "longitude": "10.26667000" + }, + { + "id": "139892", + "name": "Marina di Pisa-Tirrenia-Calambrone", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.62719000", + "longitude": "10.29204000" + }, + { + "id": "139904", + "name": "Marliana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93385000", + "longitude": "10.77021000" + }, + { + "id": "139915", + "name": "Marradi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07353000", + "longitude": "11.61092000" + }, + { + "id": "139929", + "name": "Marti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.65453000", + "longitude": "10.74058000" + }, + { + "id": "139966", + "name": "Massa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90925000", + "longitude": "10.74441000" + }, + { + "id": "139973", + "name": "Massa Marittima", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.04779000", + "longitude": "10.89293000" + }, + { + "id": "139980", + "name": "Massarosa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86638000", + "longitude": "10.34458000" + }, + { + "id": "140072", + "name": "Mercatale", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.63677000", + "longitude": "11.22790000" + }, + { + "id": "140073", + "name": "Mercatale-San Quirico", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04426000", + "longitude": "11.15163000" + }, + { + "id": "140102", + "name": "Metato", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77352000", + "longitude": "10.37106000" + }, + { + "id": "140134", + "name": "Migliarino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.76589000", + "longitude": "10.33951000" + }, + { + "id": "140163", + "name": "Minucciano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.17000000", + "longitude": "10.20807000" + }, + { + "id": "140211", + "name": "Molazzana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.07175000", + "longitude": "10.41780000" + }, + { + "id": "140224", + "name": "Molino del Piano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81098000", + "longitude": "11.39992000" + }, + { + "id": "140303", + "name": "Monsummano Terme", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86720000", + "longitude": "10.81295000" + }, + { + "id": "140314", + "name": "Montaione", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.55144000", + "longitude": "10.91371000" + }, + { + "id": "140319", + "name": "Montalcino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05397000", + "longitude": "11.48853000" + }, + { + "id": "140326", + "name": "Montale", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93486000", + "longitude": "11.01655000" + }, + { + "id": "140330", + "name": "Montalto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.49912000", + "longitude": "11.66380000" + }, + { + "id": "140352", + "name": "Monte Argentario", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.43452000", + "longitude": "11.11954000" + }, + { + "id": "140377", + "name": "Monte San Savino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.33213000", + "longitude": "11.72663000" + }, + { + "id": "140392", + "name": "Montebonello", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83027000", + "longitude": "11.48655000" + }, + { + "id": "140399", + "name": "Montecalvoli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.68576000", + "longitude": "10.66508000" + }, + { + "id": "140400", + "name": "Montecarlo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.85218000", + "longitude": "10.66742000" + }, + { + "id": "140405", + "name": "Montecatini Val di Cecina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.39234000", + "longitude": "10.74904000" + }, + { + "id": "140406", + "name": "Montecatini-Terme", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88153000", + "longitude": "10.77230000" + }, + { + "id": "140481", + "name": "Montelupo Fiorentino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72958000", + "longitude": "11.00997000" + }, + { + "id": "140493", + "name": "Montemignaio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73985000", + "longitude": "11.61883000" + }, + { + "id": "140498", + "name": "Montemurlo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92686000", + "longitude": "11.03718000" + }, + { + "id": "140510", + "name": "Montepulciano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09998000", + "longitude": "11.78704000" + }, + { + "id": "140511", + "name": "Montepulciano Stazione", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.13520000", + "longitude": "11.85545000" + }, + { + "id": "140513", + "name": "Monterchi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48733000", + "longitude": "12.11054000" + }, + { + "id": "140517", + "name": "Monteriggioni", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.38994000", + "longitude": "11.22323000" + }, + { + "id": "140519", + "name": "Monteroni d'Arbia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.22968000", + "longitude": "11.42228000" + }, + { + "id": "140527", + "name": "Monterotondo Marittimo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.14556000", + "longitude": "10.85591000" + }, + { + "id": "140537", + "name": "Montescudaio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.32603000", + "longitude": "10.62602000" + }, + { + "id": "140543", + "name": "Montespertoli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.64260000", + "longitude": "11.07331000" + }, + { + "id": "140547", + "name": "Montevarchi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52520000", + "longitude": "11.57238000" + }, + { + "id": "140550", + "name": "Monteverdi Marittimo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.17787000", + "longitude": "10.71133000" + }, + { + "id": "140554", + "name": "Monti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.24864000", + "longitude": "10.00854000" + }, + { + "id": "140570", + "name": "Monticiano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.13965000", + "longitude": "11.17710000" + }, + { + "id": "140571", + "name": "Montieri", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.13113000", + "longitude": "11.01663000" + }, + { + "id": "140574", + "name": "Montignoso", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.02405000", + "longitude": "10.17259000" + }, + { + "id": "140580", + "name": "Montopoli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67354000", + "longitude": "10.74951000" + }, + { + "id": "140682", + "name": "Mulazzo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.31564000", + "longitude": "9.89101000" + }, + { + "id": "140692", + "name": "Murlo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.16114000", + "longitude": "11.38794000" + }, + { + "id": "140940", + "name": "Orbetello", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.44158000", + "longitude": "11.22140000" + }, + { + "id": "140941", + "name": "Orbetello Scalo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.44866000", + "longitude": "11.24936000" + }, + { + "id": "140943", + "name": "Orciano Pisano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.49444000", + "longitude": "10.51151000" + }, + { + "id": "140947", + "name": "Orentano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77907000", + "longitude": "10.65939000" + }, + { + "id": "140985", + "name": "Ortignano Raggiolo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67995000", + "longitude": "11.74883000" + }, + { + "id": "140996", + "name": "Orzignano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77408000", + "longitude": "10.42382000" + }, + { + "id": "58222", + "name": "Palaia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60567000", + "longitude": "10.77020000" + }, + { + "id": "58237", + "name": "Palazzuolo sul Senio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.11298000", + "longitude": "11.54270000" + }, + { + "id": "58252", + "name": "Pallerone", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20485000", + "longitude": "10.00279000" + }, + { + "id": "58286", + "name": "Panzano in Chianti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54422000", + "longitude": "11.31438000" + }, + { + "id": "58347", + "name": "Patigno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35316000", + "longitude": "9.76297000" + }, + { + "id": "58367", + "name": "Peccioli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54963000", + "longitude": "10.71720000" + }, + { + "id": "58390", + "name": "Pelago", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77255000", + "longitude": "11.50148000" + }, + { + "id": "58422", + "name": "Pergine Valdarno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.47028000", + "longitude": "11.68552000" + }, + { + "id": "58448", + "name": "Pescaglia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96517000", + "longitude": "10.41292000" + }, + { + "id": "58457", + "name": "Pescia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88710000", + "longitude": "10.68849000" + }, + { + "id": "58509", + "name": "Pian di Mugnone", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81810000", + "longitude": "11.29585000" + }, + { + "id": "58510", + "name": "Pian di Scò", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.64195000", + "longitude": "11.54523000" + }, + { + "id": "58517", + "name": "Piancastagnaio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.85067000", + "longitude": "11.69014000" + }, + { + "id": "58541", + "name": "Piano di Conca", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.89413000", + "longitude": "10.29493000" + }, + { + "id": "58542", + "name": "Piano di Coreglia-Ghivizzano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03333000", + "longitude": "10.51667000" + }, + { + "id": "58544", + "name": "Piano di Mommio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90954000", + "longitude": "10.27435000" + }, + { + "id": "58569", + "name": "Piazza al Serchio-San Michele", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.18455000", + "longitude": "10.29689000" + }, + { + "id": "58597", + "name": "Pienza", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.07873000", + "longitude": "11.67671000" + }, + { + "id": "58625", + "name": "Pietrasanta", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.95952000", + "longitude": "10.22784000" + }, + { + "id": "58643", + "name": "Pieve a Nievole", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88119000", + "longitude": "10.79990000" + }, + { + "id": "58644", + "name": "Pieve al Toppo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40761000", + "longitude": "11.79686000" + }, + { + "id": "58635", + "name": "Pieve Fosciana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.13067000", + "longitude": "10.40952000" + }, + { + "id": "58639", + "name": "Pieve Santo Stefano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67145000", + "longitude": "12.04124000" + }, + { + "id": "58689", + "name": "Piombino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.92554000", + "longitude": "10.52585000" + }, + { + "id": "58702", + "name": "Pisa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.70853000", + "longitude": "10.40360000" + }, + { + "id": "58714", + "name": "Pistoia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93064000", + "longitude": "10.92365000" + }, + { + "id": "58716", + "name": "Piteglio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.02790000", + "longitude": "10.76571000" + }, + { + "id": "58718", + "name": "Pitigliano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.63582000", + "longitude": "11.67462000" + }, + { + "id": "58744", + "name": "Podenzana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.20625000", + "longitude": "9.94199000" + }, + { + "id": "58747", + "name": "Poggetto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82790000", + "longitude": "11.03847000" + }, + { + "id": "58749", + "name": "Poggibonsi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.47064000", + "longitude": "11.14804000" + }, + { + "id": "58750", + "name": "Poggio A Caiano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81378000", + "longitude": "11.05186000" + }, + { + "id": "58808", + "name": "Pomarance", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.29592000", + "longitude": "10.87223000" + }, + { + "id": "58825", + "name": "Ponsacco", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.62307000", + "longitude": "10.62661000" + }, + { + "id": "58830", + "name": "Pontasserchio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77953000", + "longitude": "10.41673000" + }, + { + "id": "58831", + "name": "Pontassieve", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77477000", + "longitude": "11.43109000" + }, + { + "id": "58833", + "name": "Ponte A Elsa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.68907000", + "longitude": "10.89281000" + }, + { + "id": "58851", + "name": "Ponte a Poppi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73171000", + "longitude": "11.76663000" + }, + { + "id": "58834", + "name": "Ponte A Tressa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25158000", + "longitude": "11.39514000" + }, + { + "id": "58836", + "name": "Ponte Buggianese", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84599000", + "longitude": "10.74789000" + }, + { + "id": "58869", + "name": "Pontedera", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.66141000", + "longitude": "10.63067000" + }, + { + "id": "58878", + "name": "Pontestazzemese", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99665000", + "longitude": "10.29439000" + }, + { + "id": "58886", + "name": "Ponticino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48012000", + "longitude": "11.71622000" + }, + { + "id": "58893", + "name": "Pontremoli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.37515000", + "longitude": "9.87888000" + }, + { + "id": "58901", + "name": "Poppi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72123000", + "longitude": "11.76642000" + }, + { + "id": "58903", + "name": "Porcari", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84152000", + "longitude": "10.61632000" + }, + { + "id": "58923", + "name": "Porto Azzurro", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.76754000", + "longitude": "10.39723000" + }, + { + "id": "58929", + "name": "Porto Ercole", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.40171000", + "longitude": "11.20523000" + }, + { + "id": "58936", + "name": "Porto Santo Stefano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.43825000", + "longitude": "11.11542000" + }, + { + "id": "58944", + "name": "Portoferraio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.81233000", + "longitude": "10.31297000" + }, + { + "id": "58978", + "name": "Pozzale-Case Nuove", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69584000", + "longitude": "10.95651000" + }, + { + "id": "59018", + "name": "Pratantico-Indicatore", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48071000", + "longitude": "11.80531000" + }, + { + "id": "59026", + "name": "Prato", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88050000", + "longitude": "11.09699000" + }, + { + "id": "59036", + "name": "Pratovecchio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78685000", + "longitude": "11.72353000" + }, + { + "id": "59100", + "name": "Province of Arezzo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.53333000", + "longitude": "11.83333000" + }, + { + "id": "59102", + "name": "Province of Florence", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83333000", + "longitude": "11.33333000" + }, + { + "id": "59103", + "name": "Province of Pisa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.41667000", + "longitude": "10.71667000" + }, + { + "id": "59136", + "name": "Provincia di Grosseto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.83333000", + "longitude": "11.25000000" + }, + { + "id": "59143", + "name": "Provincia di Livorno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.23333000", + "longitude": "10.58333000" + }, + { + "id": "59145", + "name": "Provincia di Lucca", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.03333000", + "longitude": "10.45000000" + }, + { + "id": "59148", + "name": "Provincia di Massa-Carrara", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.25000000", + "longitude": "10.05000000" + }, + { + "id": "59162", + "name": "Provincia di Pistoia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96667000", + "longitude": "10.83333000" + }, + { + "id": "59165", + "name": "Provincia di Prato", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88046000", + "longitude": "11.09686000" + }, + { + "id": "59175", + "name": "Provincia di Siena", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.21667000", + "longitude": "11.40000000" + }, + { + "id": "59218", + "name": "Quarata", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.49859000", + "longitude": "11.82742000" + }, + { + "id": "59224", + "name": "Quarrata", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.84837000", + "longitude": "10.97888000" + }, + { + "id": "59237", + "name": "Quattro Strade", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.74148000", + "longitude": "11.08070000" + }, + { + "id": "59240", + "name": "Quercianella", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.45959000", + "longitude": "10.36757000" + }, + { + "id": "59261", + "name": "Radda in Chianti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.48540000", + "longitude": "11.37437000" + }, + { + "id": "59263", + "name": "Radicofani", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89618000", + "longitude": "11.76839000" + }, + { + "id": "59264", + "name": "Radicondoli", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.26047000", + "longitude": "11.04582000" + }, + { + "id": "59286", + "name": "Rapolano Terme", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.29498000", + "longitude": "11.60264000" + }, + { + "id": "59290", + "name": "Rassina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.64737000", + "longitude": "11.83632000" + }, + { + "id": "59319", + "name": "Reggello", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67967000", + "longitude": "11.52976000" + }, + { + "id": "59360", + "name": "Ribolla", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.97087000", + "longitude": "11.03555000" + }, + { + "id": "59379", + "name": "Rignano sull'Arno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72145000", + "longitude": "11.45183000" + }, + { + "id": "59386", + "name": "Rio Marina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.81395000", + "longitude": "10.42600000" + }, + { + "id": "59390", + "name": "Rio nell'Elba", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.81169000", + "longitude": "10.40085000" + }, + { + "id": "59400", + "name": "Ripa-Pozzi-Querceta-Ponterosso", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.97806000", + "longitude": "10.20372000" + }, + { + "id": "59407", + "name": "Riparbella", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.36417000", + "longitude": "10.59799000" + }, + { + "id": "59505", + "name": "Roccalbegna", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.78630000", + "longitude": "11.50788000" + }, + { + "id": "59525", + "name": "Roccastrada", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.00888000", + "longitude": "11.16762000" + }, + { + "id": "59617", + "name": "Ronta", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.00310000", + "longitude": "11.42894000" + }, + { + "id": "59638", + "name": "Rosia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.24611000", + "longitude": "11.22176000" + }, + { + "id": "59639", + "name": "Rosignano Marittimo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40686000", + "longitude": "10.47231000" + }, + { + "id": "59641", + "name": "Rosignano Solvay-Castiglioncello", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.38946000", + "longitude": "10.43615000" + }, + { + "id": "59699", + "name": "Rufina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82396000", + "longitude": "11.48673000" + }, + { + "id": "59710", + "name": "S.P. in Palazzi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.32776000", + "longitude": "10.50881000" + }, + { + "id": "59770", + "name": "Saline", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.36185000", + "longitude": "10.81354000" + }, + { + "id": "59803", + "name": "Sambuca", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.57344000", + "longitude": "11.21407000" + }, + { + "id": "59804", + "name": "Sambuca Pistoiese", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.10435000", + "longitude": "10.99961000" + }, + { + "id": "59857", + "name": "San Casciano dei Bagni", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87008000", + "longitude": "11.87656000" + }, + { + "id": "59858", + "name": "San Casciano in Val di Pesa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.65975000", + "longitude": "11.18494000" + }, + { + "id": "59872", + "name": "San Cipriano-S.Barbara-Centinale", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.56863000", + "longitude": "11.48467000" + }, + { + "id": "59895", + "name": "San Donato", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.70298000", + "longitude": "10.78754000" + }, + { + "id": "59900", + "name": "San Donnino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79547000", + "longitude": "11.14654000" + }, + { + "id": "59926", + "name": "San Francesco", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.77483000", + "longitude": "11.44842000" + }, + { + "id": "59949", + "name": "San Gimignano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.47380000", + "longitude": "11.02975000" + }, + { + "id": "59993", + "name": "San Giovanni d'Asso", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.15334000", + "longitude": "11.58938000" + }, + { + "id": "59990", + "name": "San Giovanni Valdarno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.56757000", + "longitude": "11.52987000" + }, + { + "id": "60005", + "name": "San Giuliano Terme", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.76372000", + "longitude": "10.43856000" + }, + { + "id": "60016", + "name": "San Giustino Valdarno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.55269000", + "longitude": "11.70497000" + }, + { + "id": "60018", + "name": "San Godenzo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92504000", + "longitude": "11.61982000" + }, + { + "id": "60026", + "name": "San Jacopo al Girone", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.76956000", + "longitude": "11.34032000" + }, + { + "id": "60059", + "name": "San Marcello Pistoiese", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.05583000", + "longitude": "10.79366000" + }, + { + "id": "60091", + "name": "San Martino in Freddana-Monsagrati", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90921000", + "longitude": "10.43778000" + }, + { + "id": "60104", + "name": "San Mauro", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79418000", + "longitude": "11.12499000" + }, + { + "id": "60127", + "name": "San Miniato", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.67954000", + "longitude": "10.84975000" + }, + { + "id": "60128", + "name": "San Miniato Basso", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69332000", + "longitude": "10.84119000" + }, + { + "id": "60166", + "name": "San Pierino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.71423000", + "longitude": "10.81374000" + }, + { + "id": "60168", + "name": "San Piero a Sieve", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96251000", + "longitude": "11.32426000" + }, + { + "id": "60175", + "name": "San Pietro Belvedere", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.57011000", + "longitude": "10.66604000" + }, + { + "id": "60217", + "name": "San Quirico d'Orcia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05782000", + "longitude": "11.60525000" + }, + { + "id": "60224", + "name": "San Rocco", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82316000", + "longitude": "10.86121000" + }, + { + "id": "60227", + "name": "San Romano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.68922000", + "longitude": "10.76900000" + }, + { + "id": "60228", + "name": "San Romano in Garfagnana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.16945000", + "longitude": "10.34690000" + }, + { + "id": "60267", + "name": "San Vincenzo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09061000", + "longitude": "10.54246000" + }, + { + "id": "60285", + "name": "San Vito-Cerreto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.02300000", + "longitude": "10.17212000" + }, + { + "id": "60313", + "name": "Sansepolcro", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.57258000", + "longitude": "12.13858000" + }, + { + "id": "60332", + "name": "Sant'Albino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.07098000", + "longitude": "11.80684000" + }, + { + "id": "60430", + "name": "Santa Croce sull'Arno", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.71709000", + "longitude": "10.77242000" + }, + { + "id": "60436", + "name": "Santa Fiora", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.83129000", + "longitude": "11.58474000" + }, + { + "id": "60443", + "name": "Santa Luce", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.47143000", + "longitude": "10.56269000" + }, + { + "id": "60444", + "name": "Santa Lucia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.88296000", + "longitude": "10.70307000" + }, + { + "id": "60470", + "name": "Santa Maria a Monte", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.70793000", + "longitude": "10.69196000" + }, + { + "id": "60560", + "name": "Sarteano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.99193000", + "longitude": "11.86472000" + }, + { + "id": "60570", + "name": "Sassetta", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.12874000", + "longitude": "10.64359000" + }, + { + "id": "60617", + "name": "Scandicci", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.75423000", + "longitude": "11.18794000" + }, + { + "id": "60625", + "name": "Scansano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.68779000", + "longitude": "11.32975000" + }, + { + "id": "60632", + "name": "Scarlino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.90799000", + "longitude": "10.85148000" + }, + { + "id": "60633", + "name": "Scarlino Scalo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.93992000", + "longitude": "10.83766000" + }, + { + "id": "60636", + "name": "Scarperia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99357000", + "longitude": "11.35415000" + }, + { + "id": "60673", + "name": "Seano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83035000", + "longitude": "11.02122000" + }, + { + "id": "60688", + "name": "Seggiano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.92897000", + "longitude": "11.55736000" + }, + { + "id": "60709", + "name": "Selvatelle", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.56281000", + "longitude": "10.69091000" + }, + { + "id": "60717", + "name": "Semproniano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.72923000", + "longitude": "11.54134000" + }, + { + "id": "60735", + "name": "Seravezza", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.99471000", + "longitude": "10.22720000" + }, + { + "id": "60773", + "name": "Serravalle Pistoiese", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90605000", + "longitude": "10.83271000" + }, + { + "id": "60780", + "name": "Serre di Rapolano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.25658000", + "longitude": "11.61655000" + }, + { + "id": "60793", + "name": "Sestino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.70966000", + "longitude": "12.29785000" + }, + { + "id": "60797", + "name": "Sesto Fiorentino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83193000", + "longitude": "11.19924000" + }, + { + "id": "60843", + "name": "Sieci", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78847000", + "longitude": "11.39445000" + }, + { + "id": "60844", + "name": "Siena", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.31822000", + "longitude": "11.33064000" + }, + { + "id": "60846", + "name": "Signa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79420000", + "longitude": "11.10360000" + }, + { + "id": "60853", + "name": "Sillano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.22298000", + "longitude": "10.30235000" + }, + { + "id": "60863", + "name": "Sinalunga", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.21492000", + "longitude": "11.74507000" + }, + { + "id": "60894", + "name": "Soci", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.72821000", + "longitude": "11.81096000" + }, + { + "id": "60947", + "name": "Sorano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.68118000", + "longitude": "11.71943000" + }, + { + "id": "60983", + "name": "Sovicille", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.28033000", + "longitude": "11.22828000" + }, + { + "id": "61004", + "name": "Spianate", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.81075000", + "longitude": "10.71510000" + }, + { + "id": "61006", + "name": "Spicchio-Sovigliana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.73016000", + "longitude": "10.93921000" + }, + { + "id": "61037", + "name": "Stabbia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78266000", + "longitude": "10.83475000" + }, + { + "id": "61040", + "name": "Staggia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.42182000", + "longitude": "11.18364000" + }, + { + "id": "61050", + "name": "Stazione", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.91460000", + "longitude": "11.01414000" + }, + { + "id": "61052", + "name": "Stazione Masotti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.90984000", + "longitude": "10.85386000" + }, + { + "id": "61069", + "name": "Stia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.79877000", + "longitude": "11.70894000" + }, + { + "id": "61070", + "name": "Stiava", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.89720000", + "longitude": "10.31798000" + }, + { + "id": "61083", + "name": "Strada", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.74452000", + "longitude": "11.71007000" + }, + { + "id": "61085", + "name": "Strada in Chianti", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.65874000", + "longitude": "11.29678000" + }, + { + "id": "61094", + "name": "Strettoia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.98987000", + "longitude": "10.19357000" + }, + { + "id": "61108", + "name": "Subbiano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.57815000", + "longitude": "11.87140000" + }, + { + "id": "61135", + "name": "Suvereto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.07669000", + "longitude": "10.67740000" + }, + { + "id": "61155", + "name": "Talla", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.60185000", + "longitude": "11.78714000" + }, + { + "id": "61180", + "name": "Tavarnelle Val di Pesa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.56184000", + "longitude": "11.17152000" + }, + { + "id": "61181", + "name": "Tavarnuzze", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.71019000", + "longitude": "11.21721000" + }, + { + "id": "61186", + "name": "Taverne D'Arbia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.29490000", + "longitude": "11.39483000" + }, + { + "id": "61204", + "name": "Tegoleto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.39458000", + "longitude": "11.78530000" + }, + { + "id": "61234", + "name": "Terontola", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.21009000", + "longitude": "12.01113000" + }, + { + "id": "61243", + "name": "Terranuova Bracciolini", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.55081000", + "longitude": "11.58075000" + }, + { + "id": "61244", + "name": "Terrarossa", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.23362000", + "longitude": "9.96110000" + }, + { + "id": "61251", + "name": "Terricciola", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.52505000", + "longitude": "10.67961000" + }, + { + "id": "61372", + "name": "Torre del Lago Puccini", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.82887000", + "longitude": "10.28912000" + }, + { + "id": "61385", + "name": "Torrenieri", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.08566000", + "longitude": "11.54839000" + }, + { + "id": "61410", + "name": "Torrita di Siena", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.17245000", + "longitude": "11.78376000" + }, + { + "id": "61472", + "name": "Treggiaia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.62305000", + "longitude": "10.67325000" + }, + { + "id": "61490", + "name": "Trequanda", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.18749000", + "longitude": "11.66818000" + }, + { + "id": "61492", + "name": "Tresana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.25425000", + "longitude": "9.91288000" + }, + { + "id": "61589", + "name": "Uggia-Pazzera-Bizzarrino", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.83434000", + "longitude": "10.83154000" + }, + { + "id": "61594", + "name": "Uliveto Terme", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69609000", + "longitude": "10.51728000" + }, + { + "id": "61621", + "name": "Uzzano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.89728000", + "longitude": "10.70403000" + }, + { + "id": "61623", + "name": "Vacchereccia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.56099000", + "longitude": "11.50131000" + }, + { + "id": "61627", + "name": "Vada", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.35264000", + "longitude": "10.45564000" + }, + { + "id": "61633", + "name": "Vaglia", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.91070000", + "longitude": "11.27997000" + }, + { + "id": "61637", + "name": "Vaiano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.96792000", + "longitude": "11.12374000" + }, + { + "id": "61646", + "name": "Val di Cava", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.63832000", + "longitude": "10.64896000" + }, + { + "id": "61658", + "name": "Valdottavo", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.94187000", + "longitude": "10.48115000" + }, + { + "id": "61666", + "name": "Valenzatico", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86680000", + "longitude": "10.96497000" + }, + { + "id": "61787", + "name": "Vecchiano-Nodica", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78334000", + "longitude": "10.38440000" + }, + { + "id": "61829", + "name": "Venturina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.02883000", + "longitude": "10.60147000" + }, + { + "id": "61857", + "name": "Vernio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.04755000", + "longitude": "11.15052000" + }, + { + "id": "61879", + "name": "Vescovado", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.16953000", + "longitude": "11.39198000" + }, + { + "id": "61905", + "name": "Viareggio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86693000", + "longitude": "10.25020000" + }, + { + "id": "61910", + "name": "Vicarello", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.61238000", + "longitude": "10.46515000" + }, + { + "id": "61913", + "name": "Vicchio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.93413000", + "longitude": "11.46004000" + }, + { + "id": "61915", + "name": "Viciomaggio", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.43218000", + "longitude": "11.77323000" + }, + { + "id": "61925", + "name": "Vicopisano", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.69305000", + "longitude": "10.58359000" + }, + { + "id": "61957", + "name": "Vignale Riotorto", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "42.97998000", + "longitude": "10.68471000" + }, + { + "id": "61964", + "name": "Vignole-Olmi", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.86696000", + "longitude": "10.99045000" + }, + { + "id": "61986", + "name": "Villa Basilica", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.92572000", + "longitude": "10.64518000" + }, + { + "id": "61994", + "name": "Villa Collemandina", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.15855000", + "longitude": "10.39760000" + }, + { + "id": "62062", + "name": "Villafranca in Lunigiana", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.29844000", + "longitude": "9.95347000" + }, + { + "id": "62163", + "name": "Vinci", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.78133000", + "longitude": "10.92365000" + }, + { + "id": "62218", + "name": "Volterra", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40251000", + "longitude": "10.86152000" + }, + { + "id": "62253", + "name": "Zeri", + "state_id": 1664, + "state_code": "52", + "country_id": 107, + "country_code": "IT", + "latitude": "44.35375000", + "longitude": "9.76318000" + }, + { + "id": "135275", + "name": "Acquasparta", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.68915000", + "longitude": "12.54275000" + }, + { + "id": "135417", + "name": "Allerona", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.81174000", + "longitude": "11.97451000" + }, + { + "id": "135447", + "name": "Alviano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.59084000", + "longitude": "12.29775000" + }, + { + "id": "135468", + "name": "Amelia", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.55177000", + "longitude": "12.42076000" + }, + { + "id": "135635", + "name": "Arrone", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.58266000", + "longitude": "12.76714000" + }, + { + "id": "135666", + "name": "Assisi", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.06671000", + "longitude": "12.62109000" + }, + { + "id": "135681", + "name": "Attigliano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.51505000", + "longitude": "12.29455000" + }, + { + "id": "135710", + "name": "Avigliano Umbro", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.65303000", + "longitude": "12.42571000" + }, + { + "id": "135880", + "name": "Baschi", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.67324000", + "longitude": "12.21762000" + }, + { + "id": "135898", + "name": "Bastardo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87144000", + "longitude": "12.55943000" + }, + { + "id": "135901", + "name": "Bastia umbra", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.06425000", + "longitude": "12.54612000" + }, + { + "id": "136022", + "name": "Bettona", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.01124000", + "longitude": "12.48698000" + }, + { + "id": "136024", + "name": "Bevagna", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.93748000", + "longitude": "12.61488000" + }, + { + "id": "136368", + "name": "Bruna", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.82071000", + "longitude": "12.68851000" + }, + { + "id": "136559", + "name": "Calvi dell'Umbria", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.40421000", + "longitude": "12.56771000" + }, + { + "id": "136612", + "name": "Campello sul Clitunno", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.82685000", + "longitude": "12.76931000" + }, + { + "id": "136719", + "name": "Cannara", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.99540000", + "longitude": "12.58202000" + }, + { + "id": "136772", + "name": "Capitan Loreto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.01731000", + "longitude": "12.64750000" + }, + { + "id": "136951", + "name": "Casa del Diavolo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.18762000", + "longitude": "12.44923000" + }, + { + "id": "137045", + "name": "Cascia", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.71790000", + "longitude": "13.01697000" + }, + { + "id": "137140", + "name": "Castel Giorgio", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.70697000", + "longitude": "11.97717000" + }, + { + "id": "137147", + "name": "Castel Ritaldi", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.82247000", + "longitude": "12.67420000" + }, + { + "id": "137159", + "name": "Castel Viscardo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.75359000", + "longitude": "12.00072000" + }, + { + "id": "137319", + "name": "Casteltodino", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.66667000", + "longitude": "12.50000000" + }, + { + "id": "137353", + "name": "Castiglione del Lago", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.12457000", + "longitude": "12.03982000" + }, + { + "id": "137520", + "name": "Cerbara", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.49913000", + "longitude": "12.21113000" + }, + { + "id": "137569", + "name": "Cerreto di Spoleto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.82188000", + "longitude": "12.92032000" + }, + { + "id": "137683", + "name": "Chiugiana-La Commenda", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09823000", + "longitude": "12.30818000" + }, + { + "id": "137713", + "name": "Ciconia", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.73356000", + "longitude": "12.13400000" + }, + { + "id": "137744", + "name": "Cipolleto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.32393000", + "longitude": "12.57688000" + }, + { + "id": "137764", + "name": "Citerna", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.49882000", + "longitude": "12.11376000" + }, + { + "id": "137773", + "name": "Città della Pieve", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.95934000", + "longitude": "12.00696000" + }, + { + "id": "137774", + "name": "Città di Castello", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.46556000", + "longitude": "12.23750000" + }, + { + "id": "137858", + "name": "Collazzone", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.90147000", + "longitude": "12.43582000" + }, + { + "id": "137888", + "name": "Collepepe", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.91548000", + "longitude": "12.39486000" + }, + { + "id": "137920", + "name": "Colombella", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.15262000", + "longitude": "12.48239000" + }, + { + "id": "137999", + "name": "Corciano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.12821000", + "longitude": "12.28684000" + }, + { + "id": "138103", + "name": "Costacciaro", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.35866000", + "longitude": "12.71262000" + }, + { + "id": "138104", + "name": "Costano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.04420000", + "longitude": "12.53410000" + }, + { + "id": "138252", + "name": "Deruta", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.98465000", + "longitude": "12.41760000" + }, + { + "id": "138397", + "name": "Fabro", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87267000", + "longitude": "12.01540000" + }, + { + "id": "138398", + "name": "Fabro Scalo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87605000", + "longitude": "12.04624000" + }, + { + "id": "138479", + "name": "Ferentillo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.62027000", + "longitude": "12.78726000" + }, + { + "id": "138506", + "name": "Ficulle", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.83194000", + "longitude": "12.06801000" + }, + { + "id": "138582", + "name": "Foligno", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.95488000", + "longitude": "12.70268000" + }, + { + "id": "138614", + "name": "Fontignano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.02436000", + "longitude": "12.19190000" + }, + { + "id": "138658", + "name": "Fornole", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.54218000", + "longitude": "12.45576000" + }, + { + "id": "138677", + "name": "Fossato di Vico", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.29644000", + "longitude": "12.76121000" + }, + { + "id": "138721", + "name": "Fratta Todina", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.85684000", + "longitude": "12.36366000" + }, + { + "id": "138943", + "name": "Giano dell'Umbria", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.83384000", + "longitude": "12.57777000" + }, + { + "id": "138976", + "name": "Giove", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.50988000", + "longitude": "12.33015000" + }, + { + "id": "139146", + "name": "Gualdo Cattaneo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.91228000", + "longitude": "12.55666000" + }, + { + "id": "139147", + "name": "Gualdo Tadino", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.22941000", + "longitude": "12.77862000" + }, + { + "id": "139158", + "name": "Guardea", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.62370000", + "longitude": "12.29928000" + }, + { + "id": "139173", + "name": "Gubbio", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.34996000", + "longitude": "12.57309000" + }, + { + "id": "139317", + "name": "Lacugnano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09475000", + "longitude": "12.33150000" + }, + { + "id": "139539", + "name": "Lisciano Niccone", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.24684000", + "longitude": "12.14305000" + }, + { + "id": "139647", + "name": "Lugnano in Teverina", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.57592000", + "longitude": "12.33336000" + }, + { + "id": "139720", + "name": "Magione", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.14179000", + "longitude": "12.21169000" + }, + { + "id": "139809", + "name": "Mantignana", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.15992000", + "longitude": "12.28855000" + }, + { + "id": "139920", + "name": "Marsciano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.92093000", + "longitude": "12.35066000" + }, + { + "id": "139974", + "name": "Massa Martana", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.77312000", + "longitude": "12.52579000" + }, + { + "id": "140028", + "name": "Meggiano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.75474000", + "longitude": "12.86379000" + }, + { + "id": "140354", + "name": "Monte Castello di Vibio", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.84040000", + "longitude": "12.35240000" + }, + { + "id": "140359", + "name": "Monte Grimano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.46667000", + "longitude": "12.46667000" + }, + { + "id": "140380", + "name": "Monte Santa Maria Tiberina", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.43688000", + "longitude": "12.16220000" + }, + { + "id": "140404", + "name": "Montecastrilli", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.65087000", + "longitude": "12.48811000" + }, + { + "id": "140409", + "name": "Montecchio", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.66234000", + "longitude": "12.28803000" + }, + { + "id": "140430", + "name": "Montefalco", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.89084000", + "longitude": "12.64827000" + }, + { + "id": "140447", + "name": "Montefranco", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.59835000", + "longitude": "12.76376000" + }, + { + "id": "140450", + "name": "Montegabbione", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.91973000", + "longitude": "12.09212000" + }, + { + "id": "140469", + "name": "Monteleone d'Orvieto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.92171000", + "longitude": "12.05347000" + }, + { + "id": "140472", + "name": "Monteleone di Spoleto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.65046000", + "longitude": "12.95158000" + }, + { + "id": "140579", + "name": "Montone", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.36078000", + "longitude": "12.32346000" + }, + { + "id": "140719", + "name": "Narni", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.51956000", + "longitude": "12.52758000" + }, + { + "id": "140720", + "name": "Narni Scalo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.53620000", + "longitude": "12.51680000" + }, + { + "id": "140786", + "name": "Nocera Umbra", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.11400000", + "longitude": "12.78925000" + }, + { + "id": "140807", + "name": "Norcia", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.79105000", + "longitude": "13.09600000" + }, + { + "id": "140993", + "name": "Orvieto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.71924000", + "longitude": "12.11249000" + }, + { + "id": "140994", + "name": "Orvieto Scalo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.72088000", + "longitude": "12.13402000" + }, + { + "id": "141001", + "name": "Oscano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.15863000", + "longitude": "12.33776000" + }, + { + "id": "141021", + "name": "Ospedalicchio", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.07812000", + "longitude": "12.50074000" + }, + { + "id": "141039", + "name": "Osteria del Gatto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.28504000", + "longitude": "12.74504000" + }, + { + "id": "141046", + "name": "Otricoli", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.42079000", + "longitude": "12.47737000" + }, + { + "id": "141072", + "name": "Paciano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.02288000", + "longitude": "12.06788000" + }, + { + "id": "141089", + "name": "Padule-San Marco", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.32880000", + "longitude": "12.60942000" + }, + { + "id": "58227", + "name": "Palazzo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.09708000", + "longitude": "12.56436000" + }, + { + "id": "58278", + "name": "Panicale", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.02830000", + "longitude": "12.09993000" + }, + { + "id": "58283", + "name": "Pantalla", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87287000", + "longitude": "12.39861000" + }, + { + "id": "58314", + "name": "Parrano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.86624000", + "longitude": "12.11026000" + }, + { + "id": "58325", + "name": "Passaggio", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.02239000", + "longitude": "12.50781000" + }, + { + "id": "58328", + "name": "Passignano sul Trasimeno", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.19043000", + "longitude": "12.13535000" + }, + { + "id": "58404", + "name": "Penna in Teverina", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.49342000", + "longitude": "12.35845000" + }, + { + "id": "58446", + "name": "Perugia", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.11220000", + "longitude": "12.38878000" + }, + { + "id": "58482", + "name": "Petrignano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.10269000", + "longitude": "12.53239000" + }, + { + "id": "58595", + "name": "Piegaro", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.96596000", + "longitude": "12.08409000" + }, + { + "id": "58615", + "name": "Pietralunga", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.43609000", + "longitude": "12.42921000" + }, + { + "id": "58666", + "name": "Pila", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05329000", + "longitude": "12.32857000" + }, + { + "id": "58715", + "name": "Pistrino", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.50966000", + "longitude": "12.15181000" + }, + { + "id": "58767", + "name": "Poggiodomo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.71237000", + "longitude": "12.93251000" + }, + { + "id": "58792", + "name": "Polino", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.58423000", + "longitude": "12.84437000" + }, + { + "id": "58839", + "name": "Ponte Felcino", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.13049000", + "longitude": "12.44914000" + }, + { + "id": "58845", + "name": "Ponte Pattoli", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.17807000", + "longitude": "12.42842000" + }, + { + "id": "58877", + "name": "Ponterio-Pian di Porto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.80769000", + "longitude": "12.41024000" + }, + { + "id": "58902", + "name": "Porano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.68099000", + "longitude": "12.10331000" + }, + { + "id": "58990", + "name": "Pozzuolo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.12165000", + "longitude": "11.95599000" + }, + { + "id": "59042", + "name": "Preci", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.88069000", + "longitude": "13.03747000" + }, + { + "id": "59158", + "name": "Provincia di Perugia", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05000000", + "longitude": "12.55000000" + }, + { + "id": "59180", + "name": "Provincia di Terni", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.68333000", + "longitude": "12.31667000" + }, + { + "id": "59444", + "name": "Rivotorto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.04406000", + "longitude": "12.62069000" + }, + { + "id": "59931", + "name": "San Gemini", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.61378000", + "longitude": "12.54528000" + }, + { + "id": "59940", + "name": "San Giacomo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.79387000", + "longitude": "12.75243000" + }, + { + "id": "60015", + "name": "San Giustino", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.54660000", + "longitude": "12.17528000" + }, + { + "id": "60090", + "name": "San Martino in Campo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.03608000", + "longitude": "12.40265000" + }, + { + "id": "60096", + "name": "San Martino in Trignano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.74125000", + "longitude": "12.66836000" + }, + { + "id": "60133", + "name": "San Niccolò di Celle", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.01667000", + "longitude": "12.38333000" + }, + { + "id": "60239", + "name": "San Secondo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40468000", + "longitude": "12.23389000" + }, + { + "id": "60254", + "name": "San Terenziano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.86731000", + "longitude": "12.47319000" + }, + { + "id": "60261", + "name": "San Venanzo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.86886000", + "longitude": "12.26853000" + }, + { + "id": "60341", + "name": "Sant'Anatolia di Narco", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.73319000", + "longitude": "12.83576000" + }, + { + "id": "60471", + "name": "Santa Maria degli Angeli", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05691000", + "longitude": "12.57497000" + }, + { + "id": "60641", + "name": "Scheggia", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.40364000", + "longitude": "12.66584000" + }, + { + "id": "60642", + "name": "Scheggino", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.71304000", + "longitude": "12.83007000" + }, + { + "id": "60696", + "name": "Selci-Lama", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.51719000", + "longitude": "12.21293000" + }, + { + "id": "60699", + "name": "Sellano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.88735000", + "longitude": "12.92311000" + }, + { + "id": "60716", + "name": "Semonte-Casamorcia", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.36826000", + "longitude": "12.53064000" + }, + { + "id": "60828", + "name": "Sferracavallo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.72631000", + "longitude": "12.09569000" + }, + { + "id": "60845", + "name": "Sigillo", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.33111000", + "longitude": "12.74059000" + }, + { + "id": "60995", + "name": "Spello", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.99231000", + "longitude": "12.66632000" + }, + { + "id": "61026", + "name": "Spoleto", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.74071000", + "longitude": "12.73899000" + }, + { + "id": "61055", + "name": "Stazione di Allerona", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.78550000", + "longitude": "12.03726000" + }, + { + "id": "61056", + "name": "Stazione di Padule", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.30766000", + "longitude": "12.61557000" + }, + { + "id": "61098", + "name": "Stroncone", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.51196000", + "longitude": "12.64770000" + }, + { + "id": "61187", + "name": "Tavernelle", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.00333000", + "longitude": "12.14520000" + }, + { + "id": "61232", + "name": "Terni", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.56335000", + "longitude": "12.64329000" + }, + { + "id": "61295", + "name": "Todi", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.77881000", + "longitude": "12.41202000" + }, + { + "id": "61327", + "name": "Torgiano", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.02761000", + "longitude": "12.44015000" + }, + { + "id": "61499", + "name": "Trestina", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.36597000", + "longitude": "12.23701000" + }, + { + "id": "61501", + "name": "Trevi", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "42.87769000", + "longitude": "12.74938000" + }, + { + "id": "61569", + "name": "Tuoro sul Trasimeno", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.20654000", + "longitude": "12.07465000" + }, + { + "id": "61597", + "name": "Umbertide", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.30341000", + "longitude": "12.33749000" + }, + { + "id": "61668", + "name": "Valfabbrica", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.15784000", + "longitude": "12.60202000" + }, + { + "id": "61742", + "name": "Valtopina", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.05674000", + "longitude": "12.75307000" + }, + { + "id": "61898", + "name": "Via Lippia", + "state_id": 1683, + "state_code": "55", + "country_id": 107, + "country_code": "IT", + "latitude": "43.08611000", + "longitude": "12.48106000" + }, + { + "id": "135235", + "name": "Abano Terme", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35753000", + "longitude": "11.78725000" + }, + { + "id": "135242", + "name": "Abbazia Pisani", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61270000", + "longitude": "11.85429000" + }, + { + "id": "135290", + "name": "Adria", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05445000", + "longitude": "12.05599000" + }, + { + "id": "135292", + "name": "Affi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55297000", + "longitude": "10.78640000" + }, + { + "id": "135307", + "name": "Agna", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17051000", + "longitude": "11.95625000" + }, + { + "id": "135312", + "name": "Agordo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28201000", + "longitude": "12.03608000" + }, + { + "id": "135321", + "name": "Agugliaro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32510000", + "longitude": "11.58496000" + }, + { + "id": "135343", + "name": "Alano di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90681000", + "longitude": "11.90840000" + }, + { + "id": "135355", + "name": "Albaredo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66725000", + "longitude": "12.01095000" + }, + { + "id": "135358", + "name": "Albaredo d'Adige", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31859000", + "longitude": "11.27843000" + }, + { + "id": "135368", + "name": "Albettone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35811000", + "longitude": "11.58430000" + }, + { + "id": "135376", + "name": "Albignasego", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34705000", + "longitude": "11.86781000" + }, + { + "id": "135415", + "name": "Alleghe", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.40718000", + "longitude": "12.02336000" + }, + { + "id": "135424", + "name": "Alonte", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36589000", + "longitude": "11.42710000" + }, + { + "id": "135427", + "name": "Alpo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37687000", + "longitude": "10.91979000" + }, + { + "id": "135436", + "name": "Altavilla Vicentina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51329000", + "longitude": "11.46877000" + }, + { + "id": "135441", + "name": "Altissimo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61429000", + "longitude": "11.25189000" + }, + { + "id": "135442", + "name": "Altivole", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75370000", + "longitude": "11.95620000" + }, + { + "id": "135498", + "name": "Angiari", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22318000", + "longitude": "11.27680000" + }, + { + "id": "135503", + "name": "Anguillara Veneta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14249000", + "longitude": "11.88461000" + }, + { + "id": "135506", + "name": "Annone Veneto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78965000", + "longitude": "12.68646000" + }, + { + "id": "135555", + "name": "Arbizzano-Santa Maria", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49489000", + "longitude": "10.93831000" + }, + { + "id": "135559", + "name": "Arcade", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78428000", + "longitude": "12.21972000" + }, + { + "id": "135572", + "name": "Arcole", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36125000", + "longitude": "11.28750000" + }, + { + "id": "135575", + "name": "Arcugnano-Torri", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49579000", + "longitude": "11.54770000" + }, + { + "id": "135598", + "name": "Ariano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94604000", + "longitude": "12.12448000" + }, + { + "id": "135605", + "name": "Arino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43854000", + "longitude": "12.05443000" + }, + { + "id": "135611", + "name": "Arlesega", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46126000", + "longitude": "11.71942000" + }, + { + "id": "135632", + "name": "Arquà Petrarca", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26911000", + "longitude": "11.72045000" + }, + { + "id": "135633", + "name": "Arquà Polesine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01008000", + "longitude": "11.73981000" + }, + { + "id": "135634", + "name": "Arre", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21748000", + "longitude": "11.92858000" + }, + { + "id": "135639", + "name": "Arsiè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98211000", + "longitude": "11.75794000" + }, + { + "id": "135637", + "name": "Arsiero", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80422000", + "longitude": "11.35582000" + }, + { + "id": "135651", + "name": "Arzergrande", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27278000", + "longitude": "12.04840000" + }, + { + "id": "135652", + "name": "Arzignano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52027000", + "longitude": "11.33446000" + }, + { + "id": "135658", + "name": "Asiago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87588000", + "longitude": "11.51223000" + }, + { + "id": "135659", + "name": "Asigliano Veneto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30469000", + "longitude": "11.44640000" + }, + { + "id": "135662", + "name": "Asolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78854000", + "longitude": "11.91701000" + }, + { + "id": "135663", + "name": "Asparetto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21991000", + "longitude": "11.18263000" + }, + { + "id": "135693", + "name": "Auronzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.55920000", + "longitude": "12.42456000" + }, + { + "id": "135735", + "name": "Badia Calavena", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56463000", + "longitude": "11.15197000" + }, + { + "id": "135737", + "name": "Badia Polesine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09508000", + "longitude": "11.49443000" + }, + { + "id": "135741", + "name": "Badoere", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63420000", + "longitude": "12.08518000" + }, + { + "id": "135765", + "name": "Bagnoli di Sopra", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18667000", + "longitude": "11.88433000" + }, + { + "id": "135766", + "name": "Bagnolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27238000", + "longitude": "10.89081000" + }, + { + "id": "135772", + "name": "Bagnolo di Po", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01548000", + "longitude": "11.50091000" + }, + { + "id": "135791", + "name": "Ballò", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45581000", + "longitude": "12.07124000" + }, + { + "id": "135807", + "name": "Baone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24174000", + "longitude": "11.68463000" + }, + { + "id": "135821", + "name": "Barbarano Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40912000", + "longitude": "11.54342000" + }, + { + "id": "135832", + "name": "Barbisano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88224000", + "longitude": "12.18632000" + }, + { + "id": "135833", + "name": "Barbona", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10339000", + "longitude": "11.70486000" + }, + { + "id": "135842", + "name": "Bardolino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54114000", + "longitude": "10.73298000" + }, + { + "id": "135871", + "name": "Baruchella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06601000", + "longitude": "11.45208000" + }, + { + "id": "135893", + "name": "Bassano del Grappa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76656000", + "longitude": "11.72739000" + }, + { + "id": "135897", + "name": "Bassone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45110000", + "longitude": "10.89449000" + }, + { + "id": "135899", + "name": "Bastia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38609000", + "longitude": "11.65196000" + }, + { + "id": "135905", + "name": "Battaglia Terme", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28531000", + "longitude": "11.78375000" + }, + { + "id": "135916", + "name": "Beccacivetta-Azzano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37435000", + "longitude": "10.96133000" + }, + { + "id": "135927", + "name": "Belfiore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38189000", + "longitude": "11.21085000" + }, + { + "id": "135949", + "name": "Belluno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14262000", + "longitude": "12.21560000" + }, + { + "id": "135961", + "name": "Belvedere", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69001000", + "longitude": "11.77180000" + }, + { + "id": "135988", + "name": "Bergantino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06145000", + "longitude": "11.25237000" + }, + { + "id": "136002", + "name": "Bertipaglia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31594000", + "longitude": "11.88547000" + }, + { + "id": "136026", + "name": "Bevilacqua", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23249000", + "longitude": "11.39496000" + }, + { + "id": "136027", + "name": "Biancade", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64867000", + "longitude": "12.35753000" + }, + { + "id": "136037", + "name": "Bibano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90751000", + "longitude": "12.43266000" + }, + { + "id": "136042", + "name": "Bibione", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63565000", + "longitude": "13.03616000" + }, + { + "id": "136050", + "name": "Bigolino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86669000", + "longitude": "12.01693000" + }, + { + "id": "136084", + "name": "Boara Pisani", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10809000", + "longitude": "11.78271000" + }, + { + "id": "136100", + "name": "Bojon-Lova", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33981000", + "longitude": "12.08282000" + }, + { + "id": "136117", + "name": "Bolzano Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60221000", + "longitude": "11.62198000" + }, + { + "id": "136127", + "name": "Bonavicina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24426000", + "longitude": "11.18419000" + }, + { + "id": "136128", + "name": "Bonavigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25831000", + "longitude": "11.27944000" + }, + { + "id": "136137", + "name": "Bonferraro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18380000", + "longitude": "11.01201000" + }, + { + "id": "136146", + "name": "Borca", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.43452000", + "longitude": "12.22230000" + }, + { + "id": "136215", + "name": "Borgoricco-San Michele delle Badesse-Sant'Eufemia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53520000", + "longitude": "11.94111000" + }, + { + "id": "136229", + "name": "Borso del Grappa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81025000", + "longitude": "11.77367000" + }, + { + "id": "136232", + "name": "Bortolot", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.38608000", + "longitude": "12.17371000" + }, + { + "id": "136237", + "name": "Bosaro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99878000", + "longitude": "11.76471000" + }, + { + "id": "136239", + "name": "Boschi Sant'Anna", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21768000", + "longitude": "11.35620000" + }, + { + "id": "136240", + "name": "Bosco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44337000", + "longitude": "11.79530000" + }, + { + "id": "136241", + "name": "Bosco Chiesanuova", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62103000", + "longitude": "11.03224000" + }, + { + "id": "136245", + "name": "Boscochiaro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13658000", + "longitude": "12.12182000" + }, + { + "id": "136263", + "name": "Bottrighe", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02552000", + "longitude": "12.08236000" + }, + { + "id": "136274", + "name": "Bovolenta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26892000", + "longitude": "11.93576000" + }, + { + "id": "136275", + "name": "Bovolone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26142000", + "longitude": "11.11786000" + }, + { + "id": "136283", + "name": "Braglia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98446000", + "longitude": "12.03377000" + }, + { + "id": "136292", + "name": "Breda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72250000", + "longitude": "12.33083000" + }, + { + "id": "136294", + "name": "Breganze", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70489000", + "longitude": "11.56074000" + }, + { + "id": "136303", + "name": "Brendola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47849000", + "longitude": "11.43947000" + }, + { + "id": "136309", + "name": "Brentino Belluno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65689000", + "longitude": "10.89368000" + }, + { + "id": "136311", + "name": "Brenzone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69989000", + "longitude": "10.76058000" + }, + { + "id": "136319", + "name": "Bressanvido", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64651000", + "longitude": "11.63437000" + }, + { + "id": "136346", + "name": "Brogliano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58919000", + "longitude": "11.36549000" + }, + { + "id": "136348", + "name": "Brognoligo-Costalunga", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44869000", + "longitude": "11.29379000" + }, + { + "id": "136363", + "name": "Brugine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29696000", + "longitude": "11.99200000" + }, + { + "id": "136410", + "name": "Burano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48548000", + "longitude": "12.41696000" + }, + { + "id": "136427", + "name": "Buso", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06491000", + "longitude": "11.84772000" + }, + { + "id": "136432", + "name": "Bussolengo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46903000", + "longitude": "10.85371000" + }, + { + "id": "136438", + "name": "Buttapietra", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34110000", + "longitude": "10.99915000" + }, + { + "id": "136446", + "name": "Ca' degli Oppi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29550000", + "longitude": "11.13029000" + }, + { + "id": "136442", + "name": "Ca' Rainati", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75764000", + "longitude": "11.85113000" + }, + { + "id": "136443", + "name": "Ca' Savio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45375000", + "longitude": "12.45729000" + }, + { + "id": "136444", + "name": "Ca' Tiepolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94861000", + "longitude": "12.33917000" + }, + { + "id": "136460", + "name": "Cadoneghe", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44282000", + "longitude": "11.92749000" + }, + { + "id": "136464", + "name": "Caerano di San Marco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78160000", + "longitude": "11.99851000" + }, + { + "id": "136487", + "name": "Calalzo di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.44643000", + "longitude": "12.38176000" + }, + { + "id": "136516", + "name": "Caldierino-Rota", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41616000", + "longitude": "11.15696000" + }, + { + "id": "136517", + "name": "Caldiero", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41439000", + "longitude": "11.17739000" + }, + { + "id": "136519", + "name": "Caldogno-Rettorgole-Cresole", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60780000", + "longitude": "11.50280000" + }, + { + "id": "136534", + "name": "Calmasino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52099000", + "longitude": "10.75206000" + }, + { + "id": "136542", + "name": "Caltana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48278000", + "longitude": "12.03002000" + }, + { + "id": "136546", + "name": "Calto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99072000", + "longitude": "11.35854000" + }, + { + "id": "136547", + "name": "Caltrano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77346000", + "longitude": "11.45570000" + }, + { + "id": "136554", + "name": "Calvene", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76615000", + "longitude": "11.51146000" + }, + { + "id": "136569", + "name": "Camalò", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75324000", + "longitude": "12.17165000" + }, + { + "id": "136593", + "name": "Camisano Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52156000", + "longitude": "11.70817000" + }, + { + "id": "136600", + "name": "Campagna Lupia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35381000", + "longitude": "12.09727000" + }, + { + "id": "136603", + "name": "Campagnola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27866000", + "longitude": "11.99902000" + }, + { + "id": "136606", + "name": "Campalto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48062000", + "longitude": "12.28747000" + }, + { + "id": "136614", + "name": "Campese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80580000", + "longitude": "11.71289000" + }, + { + "id": "136619", + "name": "Campiglia dei Berici", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33546000", + "longitude": "11.54210000" + }, + { + "id": "136631", + "name": "Campo San Martino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54868000", + "longitude": "11.82809000" + }, + { + "id": "136644", + "name": "Campodarsego", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49815000", + "longitude": "11.92194000" + }, + { + "id": "136649", + "name": "Campodoro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48947000", + "longitude": "11.75268000" + }, + { + "id": "136663", + "name": "Campolongo Maggiore Liettoli", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33944000", + "longitude": "12.02417000" + }, + { + "id": "136666", + "name": "Campolongo sul Brenta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82710000", + "longitude": "11.70080000" + }, + { + "id": "136671", + "name": "Camponogara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37954000", + "longitude": "12.08638000" + }, + { + "id": "136679", + "name": "Camposampiero", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56368000", + "longitude": "11.93534000" + }, + { + "id": "136689", + "name": "Canale d'Agordo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.35693000", + "longitude": "11.91429000" + }, + { + "id": "136691", + "name": "Canaro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93394000", + "longitude": "11.67541000" + }, + { + "id": "136696", + "name": "Canda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03608000", + "longitude": "11.50331000" + }, + { + "id": "136699", + "name": "Candelù", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73499000", + "longitude": "12.37224000" + }, + { + "id": "136702", + "name": "Candiana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22184000", + "longitude": "11.99256000" + }, + { + "id": "136704", + "name": "Candide", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.58913000", + "longitude": "12.51476000" + }, + { + "id": "136713", + "name": "Caniezza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85274000", + "longitude": "11.89900000" + }, + { + "id": "136735", + "name": "Canove di Roana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86350000", + "longitude": "11.47350000" + }, + { + "id": "136754", + "name": "Caorle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59656000", + "longitude": "12.87580000" + }, + { + "id": "136773", + "name": "Capitello", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20792000", + "longitude": "11.14014000" + }, + { + "id": "136792", + "name": "Cappella Maggiore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97222000", + "longitude": "12.35855000" + }, + { + "id": "136822", + "name": "Caprino Veronese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60489000", + "longitude": "10.79518000" + }, + { + "id": "136851", + "name": "Carbonera", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69182000", + "longitude": "12.28255000" + }, + { + "id": "136854", + "name": "Carceri", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19508000", + "longitude": "11.62115000" + }, + { + "id": "136893", + "name": "Carmignano di Brenta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62578000", + "longitude": "11.70599000" + }, + { + "id": "136912", + "name": "Carpesica", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95335000", + "longitude": "12.29126000" + }, + { + "id": "136925", + "name": "Carrara San Giorgio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29259000", + "longitude": "11.81841000" + }, + { + "id": "136934", + "name": "Carrè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74880000", + "longitude": "11.45779000" + }, + { + "id": "136938", + "name": "Cartigliano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71300000", + "longitude": "11.69560000" + }, + { + "id": "136942", + "name": "Cartura", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26839000", + "longitude": "11.85681000" + }, + { + "id": "136955", + "name": "Casacorba", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65944000", + "longitude": "12.03889000" + }, + { + "id": "136979", + "name": "Casale di Scodosia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19225000", + "longitude": "11.47442000" + }, + { + "id": "136980", + "name": "Casale sul Sile", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59638000", + "longitude": "12.32655000" + }, + { + "id": "136984", + "name": "Casaleone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16821000", + "longitude": "11.19401000" + }, + { + "id": "137008", + "name": "Casalserugo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31549000", + "longitude": "11.91232000" + }, + { + "id": "137059", + "name": "Caselle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74965000", + "longitude": "11.98004000" + }, + { + "id": "137068", + "name": "Casier", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64229000", + "longitude": "12.29328000" + }, + { + "id": "137085", + "name": "Casoni", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75943000", + "longitude": "11.81045000" + }, + { + "id": "137114", + "name": "Cassola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73360000", + "longitude": "11.79940000" + }, + { + "id": "137116", + "name": "Castagnaro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.11795000", + "longitude": "11.40911000" + }, + { + "id": "137120", + "name": "Castagnole", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68852000", + "longitude": "12.18260000" + }, + { + "id": "137176", + "name": "Castelbaldo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12226000", + "longitude": "11.45517000" + }, + { + "id": "137187", + "name": "Castelcucco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83024000", + "longitude": "11.88296000" + }, + { + "id": "137198", + "name": "Castelfranco Veneto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67146000", + "longitude": "11.92755000" + }, + { + "id": "137202", + "name": "Castelgomberto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58267000", + "longitude": "11.39007000" + }, + { + "id": "137204", + "name": "Castelguglielmo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02539000", + "longitude": "11.53690000" + }, + { + "id": "137262", + "name": "Castello di Godego", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69270000", + "longitude": "11.87998000" + }, + { + "id": "137270", + "name": "Castelmassa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01826000", + "longitude": "11.31505000" + }, + { + "id": "137274", + "name": "Castelminio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64493000", + "longitude": "11.98734000" + }, + { + "id": "137277", + "name": "Castelnovo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61557000", + "longitude": "11.45938000" + }, + { + "id": "137278", + "name": "Castelnovo Bariano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02738000", + "longitude": "11.28760000" + }, + { + "id": "137297", + "name": "Castelnuovo del Garda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43878000", + "longitude": "10.75978000" + }, + { + "id": "137362", + "name": "Castion", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12147000", + "longitude": "12.23507000" + }, + { + "id": "137411", + "name": "Cavajon Veronese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54009000", + "longitude": "10.77048000" + }, + { + "id": "137412", + "name": "Cavalcaselle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43695000", + "longitude": "10.72652000" + }, + { + "id": "137419", + "name": "Cavallino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47456000", + "longitude": "12.54855000" + }, + { + "id": "137424", + "name": "Cavarzere", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13518000", + "longitude": "12.08453000" + }, + { + "id": "137425", + "name": "Cavaso del Tomba", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86071000", + "longitude": "11.89840000" + }, + { + "id": "137437", + "name": "Cavino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51709000", + "longitude": "11.88466000" + }, + { + "id": "137447", + "name": "Cazzago-Ex Polo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44159000", + "longitude": "12.07406000" + }, + { + "id": "137449", + "name": "Cazzano di Tramigna", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47309000", + "longitude": "11.20289000" + }, + { + "id": "137460", + "name": "Ceggia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68700000", + "longitude": "12.64228000" + }, + { + "id": "137463", + "name": "Celat-San Tomaso Agordino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.38072000", + "longitude": "11.97439000" + }, + { + "id": "137483", + "name": "Cellore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48646000", + "longitude": "11.17831000" + }, + { + "id": "137489", + "name": "Cencenighe Agordino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.35184000", + "longitude": "11.96823000" + }, + { + "id": "137490", + "name": "Cendon", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63804000", + "longitude": "12.32505000" + }, + { + "id": "137492", + "name": "Ceneselli", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01377000", + "longitude": "11.36936000" + }, + { + "id": "137501", + "name": "Centrale", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72737000", + "longitude": "11.48031000" + }, + { + "id": "137530", + "name": "Cerea", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18936000", + "longitude": "11.21661000" + }, + { + "id": "137531", + "name": "Cereda-Cozza Cornedo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60181000", + "longitude": "11.36740000" + }, + { + "id": "137532", + "name": "Ceregnano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04811000", + "longitude": "11.86792000" + }, + { + "id": "137574", + "name": "Cerro Veronese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57449000", + "longitude": "11.04159000" + }, + { + "id": "137583", + "name": "Cervarese Santa Croce", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42439000", + "longitude": "11.68790000" + }, + { + "id": "137608", + "name": "Cesarolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71884000", + "longitude": "13.01555000" + }, + { + "id": "137615", + "name": "Cesiomaggiore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08675000", + "longitude": "11.98539000" + }, + { + "id": "137616", + "name": "Cessalto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71356000", + "longitude": "12.61302000" + }, + { + "id": "137641", + "name": "Chiampo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54746000", + "longitude": "11.28285000" + }, + { + "id": "137650", + "name": "Chiarano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72959000", + "longitude": "12.57166000" + }, + { + "id": "137677", + "name": "Chioggia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21857000", + "longitude": "12.27774000" + }, + { + "id": "137684", + "name": "Chiuppano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76300000", + "longitude": "11.45777000" + }, + { + "id": "137703", + "name": "Ciano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82389000", + "longitude": "12.05417000" + }, + { + "id": "137706", + "name": "Cibiana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.38856000", + "longitude": "12.28658000" + }, + { + "id": "137720", + "name": "Cimadolmo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78524000", + "longitude": "12.36510000" + }, + { + "id": "137740", + "name": "Cinto Caomaggiore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82758000", + "longitude": "12.78126000" + }, + { + "id": "137758", + "name": "Cismon del Grappa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92026000", + "longitude": "11.72816000" + }, + { + "id": "137759", + "name": "Cison di Valmarino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.96694000", + "longitude": "12.14267000" + }, + { + "id": "137765", + "name": "Cittadella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64523000", + "longitude": "11.78453000" + }, + { + "id": "137829", + "name": "Codevigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26628000", + "longitude": "12.09961000" + }, + { + "id": "137833", + "name": "Codiverno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47583000", + "longitude": "11.94556000" + }, + { + "id": "137836", + "name": "Codognè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86047000", + "longitude": "12.41284000" + }, + { + "id": "137843", + "name": "Cogollo del Cengio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78397000", + "longitude": "11.42527000" + }, + { + "id": "137846", + "name": "Col San Martino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90020000", + "longitude": "12.11575000" + }, + { + "id": "137932", + "name": "Colà", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47428000", + "longitude": "10.74257000" + }, + { + "id": "137865", + "name": "Colle Santa Lucia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.44852000", + "longitude": "12.01399000" + }, + { + "id": "137867", + "name": "Colle Umberto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94238000", + "longitude": "12.34228000" + }, + { + "id": "137912", + "name": "Cologna Veneta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30777000", + "longitude": "11.38032000" + }, + { + "id": "137917", + "name": "Colognola ai Colli", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43369000", + "longitude": "11.18429000" + }, + { + "id": "137958", + "name": "Conco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80043000", + "longitude": "11.60962000" + }, + { + "id": "137959", + "name": "Concordia Sagittaria", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76118000", + "longitude": "12.82362000" + }, + { + "id": "137966", + "name": "Conegliano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88805000", + "longitude": "12.30201000" + }, + { + "id": "137973", + "name": "Conscio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61701000", + "longitude": "12.28219000" + }, + { + "id": "137975", + "name": "Conselve", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23154000", + "longitude": "11.87498000" + }, + { + "id": "137992", + "name": "Corbanese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94570000", + "longitude": "12.24027000" + }, + { + "id": "137995", + "name": "Corbola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00272000", + "longitude": "12.08567000" + }, + { + "id": "137996", + "name": "Corbolone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74962000", + "longitude": "12.66969000" + }, + { + "id": "138002", + "name": "Cordignano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94936000", + "longitude": "12.41567000" + }, + { + "id": "138029", + "name": "Cornedo Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61626000", + "longitude": "11.33225000" + }, + { + "id": "138036", + "name": "Cornuda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83152000", + "longitude": "12.00598000" + }, + { + "id": "138041", + "name": "Correzzola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23548000", + "longitude": "12.06739000" + }, + { + "id": "138045", + "name": "Corrubbio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48685000", + "longitude": "10.90359000" + }, + { + "id": "138055", + "name": "Corte", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30835000", + "longitude": "12.07174000" + }, + { + "id": "138067", + "name": "Cortina d'Ampezzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.53690000", + "longitude": "12.13903000" + }, + { + "id": "138081", + "name": "Cosniga-Zoppè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88750000", + "longitude": "12.36028000" + }, + { + "id": "138099", + "name": "Costa di Rovigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05181000", + "longitude": "11.69560000" + }, + { + "id": "138102", + "name": "Costabissara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58252000", + "longitude": "11.48529000" + }, + { + "id": "138108", + "name": "Costermano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58606000", + "longitude": "10.73900000" + }, + { + "id": "138118", + "name": "Covolo-Levada", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84828000", + "longitude": "12.00515000" + }, + { + "id": "138128", + "name": "Creazzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53154000", + "longitude": "11.47789000" + }, + { + "id": "138140", + "name": "Crepaldo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59495000", + "longitude": "12.69655000" + }, + { + "id": "138142", + "name": "Crespadoro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62019000", + "longitude": "11.22589000" + }, + { + "id": "138143", + "name": "Crespano del Grappa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82793000", + "longitude": "11.83358000" + }, + { + "id": "138147", + "name": "Crespino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98527000", + "longitude": "11.88958000" + }, + { + "id": "138156", + "name": "Crispi Cavour", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58190000", + "longitude": "11.50113000" + }, + { + "id": "138160", + "name": "Crocetta del Montello", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83667000", + "longitude": "12.03361000" + }, + { + "id": "138161", + "name": "Crocetta-Nogarè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82707000", + "longitude": "12.03013000" + }, + { + "id": "138208", + "name": "Curtarolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52366000", + "longitude": "11.83691000" + }, + { + "id": "138227", + "name": "Danta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.56700000", + "longitude": "12.52055000" + }, + { + "id": "138255", + "name": "Dese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52962000", + "longitude": "12.30363000" + }, + { + "id": "138281", + "name": "Dolcè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60069000", + "longitude": "10.85248000" + }, + { + "id": "138285", + "name": "Dolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42528000", + "longitude": "12.08429000" + }, + { + "id": "138289", + "name": "Domegge di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.45666000", + "longitude": "12.40724000" + }, + { + "id": "138296", + "name": "Don", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22144000", + "longitude": "11.95598000" + }, + { + "id": "138305", + "name": "Donzella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93047000", + "longitude": "12.33119000" + }, + { + "id": "138319", + "name": "Dossobuono", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39333000", + "longitude": "10.91054000" + }, + { + "id": "138320", + "name": "Dosson", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63605000", + "longitude": "12.25409000" + }, + { + "id": "138338", + "name": "Due Carrare", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29151000", + "longitude": "11.82402000" + }, + { + "id": "138339", + "name": "Dueville", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63556000", + "longitude": "11.55135000" + }, + { + "id": "138358", + "name": "Enego", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94161000", + "longitude": "11.70550000" + }, + { + "id": "138366", + "name": "Eraclea", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57766000", + "longitude": "12.67320000" + }, + { + "id": "138370", + "name": "Erbè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24231000", + "longitude": "10.97135000" + }, + { + "id": "138368", + "name": "Erbezzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63960000", + "longitude": "11.00057000" + }, + { + "id": "138386", + "name": "Este", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22338000", + "longitude": "11.66379000" + }, + { + "id": "138413", + "name": "Falcade Alto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.35549000", + "longitude": "11.85712000" + }, + { + "id": "138427", + "name": "Falzè di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86796000", + "longitude": "12.17891000" + }, + { + "id": "138428", + "name": "Falzè-Signoressa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75028000", + "longitude": "12.10722000" + }, + { + "id": "138431", + "name": "Fane", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57904000", + "longitude": "10.96425000" + }, + { + "id": "138436", + "name": "Fanzolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71218000", + "longitude": "11.99023000" + }, + { + "id": "138442", + "name": "Fara Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74369000", + "longitude": "11.54529000" + }, + { + "id": "138451", + "name": "Farra d'Alpago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12079000", + "longitude": "12.35876000" + }, + { + "id": "138453", + "name": "Farra di Soligo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90528000", + "longitude": "12.12444000" + }, + { + "id": "138475", + "name": "Feltre", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.02085000", + "longitude": "11.90031000" + }, + { + "id": "138490", + "name": "Ferrara di Monte Baldo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67408000", + "longitude": "10.85911000" + }, + { + "id": "138504", + "name": "Ficarolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.95425000", + "longitude": "11.43662000" + }, + { + "id": "138513", + "name": "Fiesso", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41954000", + "longitude": "12.03378000" + }, + { + "id": "138515", + "name": "Fiesso d'Artico", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42139000", + "longitude": "12.02944000" + }, + { + "id": "138514", + "name": "Fiesso Umbertiano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96072000", + "longitude": "11.60576000" + }, + { + "id": "138583", + "name": "Follina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.95352000", + "longitude": "12.11985000" + }, + { + "id": "138594", + "name": "Fontanafredda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29159000", + "longitude": "11.66172000" + }, + { + "id": "138601", + "name": "Fontanelle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83345000", + "longitude": "12.46625000" + }, + { + "id": "138606", + "name": "Fontaniva", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63516000", + "longitude": "11.75381000" + }, + { + "id": "138615", + "name": "Fonzaso", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.01640000", + "longitude": "11.79897000" + }, + { + "id": "138627", + "name": "Forette", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34221000", + "longitude": "10.94460000" + }, + { + "id": "138647", + "name": "Fornaci", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65170000", + "longitude": "12.43738000" + }, + { + "id": "138651", + "name": "Fornase", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47586000", + "longitude": "12.16273000" + }, + { + "id": "138657", + "name": "Forno di Zoldo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.35010000", + "longitude": "12.17913000" + }, + { + "id": "138670", + "name": "Fossalta di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64497000", + "longitude": "12.50902000" + }, + { + "id": "138671", + "name": "Fossalta di Portogruaro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79329000", + "longitude": "12.90998000" + }, + { + "id": "138673", + "name": "Fossalunga", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69160000", + "longitude": "12.05320000" + }, + { + "id": "138682", + "name": "Fossò", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38580000", + "longitude": "12.04627000" + }, + { + "id": "138683", + "name": "Foza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89703000", + "longitude": "11.63053000" + }, + { + "id": "138700", + "name": "Francenigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90799000", + "longitude": "12.50347000" + }, + { + "id": "138711", + "name": "Frassinelle Polesine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99518000", + "longitude": "11.69881000" + }, + { + "id": "138719", + "name": "Fratta Polesine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02819000", + "longitude": "11.64265000" + }, + { + "id": "138729", + "name": "Fregona", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.00795000", + "longitude": "12.33864000" + }, + { + "id": "138731", + "name": "Frescada", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62878000", + "longitude": "12.23671000" + }, + { + "id": "138749", + "name": "Fumane", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54160000", + "longitude": "10.88548000" + }, + { + "id": "138763", + "name": "Fusine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.37589000", + "longitude": "12.12547000" + }, + { + "id": "138787", + "name": "Gaiarine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88083000", + "longitude": "12.48142000" + }, + { + "id": "138788", + "name": "Gaiba", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94573000", + "longitude": "11.48087000" + }, + { + "id": "138810", + "name": "Galliera Veneta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66750000", + "longitude": "11.82217000" + }, + { + "id": "138812", + "name": "Gallio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88506000", + "longitude": "11.53417000" + }, + { + "id": "138821", + "name": "Galta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39095000", + "longitude": "12.02340000" + }, + { + "id": "138824", + "name": "Galzignano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30798000", + "longitude": "11.73134000" + }, + { + "id": "138831", + "name": "Gambellara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45979000", + "longitude": "11.34009000" + }, + { + "id": "138835", + "name": "Gambugliano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58799000", + "longitude": "11.43859000" + }, + { + "id": "138849", + "name": "Garda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57889000", + "longitude": "10.71763000" + }, + { + "id": "138874", + "name": "Gavello", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02469000", + "longitude": "11.91368000" + }, + { + "id": "138884", + "name": "Gazzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58241000", + "longitude": "11.70724000" + }, + { + "id": "138887", + "name": "Gazzolo-Volpino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37536000", + "longitude": "11.31319000" + }, + { + "id": "138938", + "name": "Giacciano con Baruchella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06718000", + "longitude": "11.45040000" + }, + { + "id": "138951", + "name": "Giavenale", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70006000", + "longitude": "11.40002000" + }, + { + "id": "138953", + "name": "Giavera del Montello", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79374000", + "longitude": "12.16667000" + }, + { + "id": "138986", + "name": "Giudecca", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42477000", + "longitude": "12.32906000" + }, + { + "id": "139007", + "name": "Godega", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92859000", + "longitude": "12.39687000" + }, + { + "id": "139027", + "name": "Gorgo al Monticano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79139000", + "longitude": "12.55000000" + }, + { + "id": "139028", + "name": "Gorgo della Chiesa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78747000", + "longitude": "12.56270000" + }, + { + "id": "139043", + "name": "Gosaldo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.22142000", + "longitude": "11.95570000" + }, + { + "id": "139062", + "name": "Grancona", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42189000", + "longitude": "11.45160000" + }, + { + "id": "139069", + "name": "Grantorto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60268000", + "longitude": "11.73175000" + }, + { + "id": "139071", + "name": "Granze", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15649000", + "longitude": "11.71471000" + }, + { + "id": "139094", + "name": "Grezzana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52272000", + "longitude": "11.01743000" + }, + { + "id": "139098", + "name": "Grignano Polesine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04350000", + "longitude": "11.74682000" + }, + { + "id": "139103", + "name": "Grisignano di Zocco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48681000", + "longitude": "11.70794000" + }, + { + "id": "139132", + "name": "Gruaro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83472000", + "longitude": "12.84111000" + }, + { + "id": "139133", + "name": "Gruaro-Bagnara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84167000", + "longitude": "12.85111000" + }, + { + "id": "139142", + "name": "Grumolo delle Abbadesse", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51692000", + "longitude": "11.67198000" + }, + { + "id": "139141", + "name": "Grumolo Pedemonte", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72430000", + "longitude": "11.49236000" + }, + { + "id": "139153", + "name": "Guarda Veneta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98188000", + "longitude": "11.80178000" + }, + { + "id": "139190", + "name": "Iesolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53311000", + "longitude": "12.64475000" + }, + { + "id": "139195", + "name": "Illasi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46663000", + "longitude": "11.18165000" + }, + { + "id": "139248", + "name": "Isola della Scala", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26943000", + "longitude": "11.00824000" + }, + { + "id": "139239", + "name": "Isola Rizza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29228000", + "longitude": "11.19900000" + }, + { + "id": "139241", + "name": "Isola Vicentina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62930000", + "longitude": "11.44608000" + }, + { + "id": "139266", + "name": "Istrana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67691000", + "longitude": "12.10119000" + }, + { + "id": "139304", + "name": "La Salute di Livenza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65366000", + "longitude": "12.80131000" + }, + { + "id": "139308", + "name": "La Valle Agordina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.28198000", + "longitude": "12.06844000" + }, + { + "id": "139323", + "name": "Laghi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82450000", + "longitude": "11.27249000" + }, + { + "id": "139340", + "name": "Lama Pezzoli", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04357000", + "longitude": "11.90942000" + }, + { + "id": "139347", + "name": "Lamon", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04717000", + "longitude": "11.74991000" + }, + { + "id": "139348", + "name": "Lamosano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.17276000", + "longitude": "12.38691000" + }, + { + "id": "139353", + "name": "Lancenigo-Villorba", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71289000", + "longitude": "12.25697000" + }, + { + "id": "139384", + "name": "Lastebasse", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91510000", + "longitude": "11.27389000" + }, + { + "id": "139409", + "name": "Lavagno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43869000", + "longitude": "11.13409000" + }, + { + "id": "139420", + "name": "Lazise", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50499000", + "longitude": "10.73923000" + }, + { + "id": "139435", + "name": "Legnago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19365000", + "longitude": "11.30227000" + }, + { + "id": "139437", + "name": "Legnaro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34238000", + "longitude": "11.96482000" + }, + { + "id": "139443", + "name": "Lendinara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.08301000", + "longitude": "11.60318000" + }, + { + "id": "139452", + "name": "Lentiai", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.04504000", + "longitude": "12.02053000" + }, + { + "id": "139482", + "name": "Levada", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73442000", + "longitude": "12.47128000" + }, + { + "id": "139500", + "name": "Lido", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41050000", + "longitude": "12.36649000" + }, + { + "id": "139506", + "name": "Lido di Jesolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50694000", + "longitude": "12.64694000" + }, + { + "id": "139515", + "name": "Limana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10039000", + "longitude": "12.18552000" + }, + { + "id": "139519", + "name": "Limena", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46948000", + "longitude": "11.84574000" + }, + { + "id": "139540", + "name": "Lisiera", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57848000", + "longitude": "11.61178000" + }, + { + "id": "139548", + "name": "Livinallongo del Col di Lana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.48162000", + "longitude": "11.95399000" + }, + { + "id": "139560", + "name": "Locara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41207000", + "longitude": "11.33262000" + }, + { + "id": "139590", + "name": "Longare", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47726000", + "longitude": "11.60696000" + }, + { + "id": "139591", + "name": "Longarone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.26579000", + "longitude": "12.29992000" + }, + { + "id": "139594", + "name": "Longhi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90744000", + "longitude": "11.31132000" + }, + { + "id": "139601", + "name": "Lonigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38576000", + "longitude": "11.38402000" + }, + { + "id": "139603", + "name": "Loreggia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59733000", + "longitude": "11.94769000" + }, + { + "id": "139604", + "name": "Loreggiola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60892000", + "longitude": "11.91899000" + }, + { + "id": "139606", + "name": "Lorenzago di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.47954000", + "longitude": "12.45984000" + }, + { + "id": "139608", + "name": "Loreo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06213000", + "longitude": "12.18812000" + }, + { + "id": "139612", + "name": "Loria Bessica", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73000000", + "longitude": "11.86540000" + }, + { + "id": "139623", + "name": "Lozzo Atestino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29384000", + "longitude": "11.60495000" + }, + { + "id": "139624", + "name": "Lozzo di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.48644000", + "longitude": "12.44493000" + }, + { + "id": "139643", + "name": "Lugagnano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43327000", + "longitude": "10.88402000" + }, + { + "id": "139645", + "name": "Lughignano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62533000", + "longitude": "12.32478000" + }, + { + "id": "139649", + "name": "Lugo di Vicenza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74550000", + "longitude": "11.52869000" + }, + { + "id": "139650", + "name": "Lugugnana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73277000", + "longitude": "12.95958000" + }, + { + "id": "139656", + "name": "Lumignano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45968000", + "longitude": "11.58786000" + }, + { + "id": "139675", + "name": "Lusia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.09848000", + "longitude": "11.66511000" + }, + { + "id": "139676", + "name": "Lusiana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78428000", + "longitude": "11.57478000" + }, + { + "id": "139680", + "name": "Lutrano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81415000", + "longitude": "12.47316000" + }, + { + "id": "139686", + "name": "Maccacari", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14276000", + "longitude": "11.13499000" + }, + { + "id": "139714", + "name": "Maerne", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52313000", + "longitude": "12.15477000" + }, + { + "id": "139744", + "name": "Magugnano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70084000", + "longitude": "10.76229000" + }, + { + "id": "139758", + "name": "Malcesine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76140000", + "longitude": "10.80863000" + }, + { + "id": "139772", + "name": "Malo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65910000", + "longitude": "11.41601000" + }, + { + "id": "139789", + "name": "Mandriola-Sant'Agostino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36926000", + "longitude": "11.85101000" + }, + { + "id": "139804", + "name": "Mansuè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82118000", + "longitude": "12.53510000" + }, + { + "id": "139820", + "name": "Marano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46345000", + "longitude": "12.11715000" + }, + { + "id": "139828", + "name": "Marano di Valpolicella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55637000", + "longitude": "10.91622000" + }, + { + "id": "139826", + "name": "Marano Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69600000", + "longitude": "11.43237000" + }, + { + "id": "139843", + "name": "Marchesino-Bovo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36667000", + "longitude": "11.00000000" + }, + { + "id": "139854", + "name": "Marcon-Gaggio-Colmello", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56444000", + "longitude": "12.29889000" + }, + { + "id": "139856", + "name": "Mardimago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10703000", + "longitude": "11.83744000" + }, + { + "id": "139858", + "name": "Mareno di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84572000", + "longitude": "12.33703000" + }, + { + "id": "139910", + "name": "Marola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53994000", + "longitude": "11.62593000" + }, + { + "id": "139913", + "name": "Marostica", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74541000", + "longitude": "11.66237000" + }, + { + "id": "139927", + "name": "Martellago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54383000", + "longitude": "12.16363000" + }, + { + "id": "139956", + "name": "Maser", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80740000", + "longitude": "11.97500000" + }, + { + "id": "139958", + "name": "Maserada sul Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75195000", + "longitude": "12.31773000" + }, + { + "id": "139959", + "name": "Maserà di Padova", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31827000", + "longitude": "11.86543000" + }, + { + "id": "139960", + "name": "Masi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.10888000", + "longitude": "11.48921000" + }, + { + "id": "139964", + "name": "Mason Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71860000", + "longitude": "11.60680000" + }, + { + "id": "139979", + "name": "Massanzago-Ca' Baglioni-San Dono", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55630000", + "longitude": "12.00731000" + }, + { + "id": "140026", + "name": "Meduna di Livenza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81720000", + "longitude": "12.62828000" + }, + { + "id": "140029", + "name": "Megliadino San Fidenzio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21739000", + "longitude": "11.51600000" + }, + { + "id": "140030", + "name": "Megliadino San Vitale", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19577000", + "longitude": "11.52402000" + }, + { + "id": "140033", + "name": "Mejaniga", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45768000", + "longitude": "11.90644000" + }, + { + "id": "140034", + "name": "Mel", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.06379000", + "longitude": "12.09000000" + }, + { + "id": "140035", + "name": "Melara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06421000", + "longitude": "11.20117000" + }, + { + "id": "140039", + "name": "Meledo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43821000", + "longitude": "11.41560000" + }, + { + "id": "140066", + "name": "Meolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61970000", + "longitude": "12.45236000" + }, + { + "id": "140086", + "name": "Merlara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16700000", + "longitude": "11.44504000" + }, + { + "id": "140099", + "name": "Mestre", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49167000", + "longitude": "12.24538000" + }, + { + "id": "140100", + "name": "Mestrino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44139000", + "longitude": "11.75931000" + }, + { + "id": "140109", + "name": "Mezzane di Sotto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48199000", + "longitude": "11.12729000" + }, + { + "id": "140126", + "name": "Miane", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94341000", + "longitude": "12.09246000" + }, + { + "id": "140139", + "name": "Mignagola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68868000", + "longitude": "12.32154000" + }, + { + "id": "140157", + "name": "Minerbe", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23198000", + "longitude": "11.35249000" + }, + { + "id": "140166", + "name": "Mira Taglio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43460000", + "longitude": "12.12942000" + }, + { + "id": "140175", + "name": "Mirano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49458000", + "longitude": "12.10775000" + }, + { + "id": "140199", + "name": "Mogliano Veneto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55594000", + "longitude": "12.24294000" + }, + { + "id": "140225", + "name": "Molino-Mozzi-Bittarelli", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61254000", + "longitude": "11.23500000" + }, + { + "id": "140260", + "name": "Monastier di Treviso", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65778000", + "longitude": "12.41750000" + }, + { + "id": "140282", + "name": "Monfumo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83080000", + "longitude": "11.92030000" + }, + { + "id": "140292", + "name": "Moniego", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56126000", + "longitude": "12.08705000" + }, + { + "id": "140301", + "name": "Monselice", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23900000", + "longitude": "11.74984000" + }, + { + "id": "140310", + "name": "Montagnana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.23229000", + "longitude": "11.46483000" + }, + { + "id": "140384", + "name": "Monte di Malo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66011000", + "longitude": "11.36127000" + }, + { + "id": "140388", + "name": "Montebello Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45919000", + "longitude": "11.38272000" + }, + { + "id": "140391", + "name": "Montebelluna", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77504000", + "longitude": "12.04904000" + }, + { + "id": "140408", + "name": "Montecchia di Crosara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48190000", + "longitude": "11.25438000" + }, + { + "id": "140411", + "name": "Montecchio Maggiore-Alte Ceccato", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50369000", + "longitude": "11.41200000" + }, + { + "id": "140412", + "name": "Montecchio Precalcino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66570000", + "longitude": "11.56360000" + }, + { + "id": "140445", + "name": "Monteforte d'Alpone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42013000", + "longitude": "11.28446000" + }, + { + "id": "140451", + "name": "Montegalda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44609000", + "longitude": "11.67500000" + }, + { + "id": "140452", + "name": "Montegaldella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43717000", + "longitude": "11.67022000" + }, + { + "id": "140461", + "name": "Montegrotto Terme", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33119000", + "longitude": "11.78634000" + }, + { + "id": "140490", + "name": "Montemerlo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38033000", + "longitude": "11.70815000" + }, + { + "id": "140551", + "name": "Monteviale", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55920000", + "longitude": "11.45715000" + }, + { + "id": "140563", + "name": "Monticelli-Fontana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42965000", + "longitude": "11.13729000" + }, + { + "id": "140566", + "name": "Monticello Conte Otto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59784000", + "longitude": "11.57234000" + }, + { + "id": "140568", + "name": "Monticello di Fara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42896000", + "longitude": "11.39042000" + }, + { + "id": "140583", + "name": "Montorio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45826000", + "longitude": "11.06589000" + }, + { + "id": "140588", + "name": "Montorso Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49089000", + "longitude": "11.36019000" + }, + { + "id": "140616", + "name": "Moriago della Battaglia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86589000", + "longitude": "12.10077000" + }, + { + "id": "140648", + "name": "Mosnigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86303000", + "longitude": "12.07852000" + }, + { + "id": "140652", + "name": "Mossano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41951000", + "longitude": "11.55382000" + }, + { + "id": "140655", + "name": "Motta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59540000", + "longitude": "11.49798000" + }, + { + "id": "140665", + "name": "Motta di Livenza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77552000", + "longitude": "12.60411000" + }, + { + "id": "140674", + "name": "Mozzecane", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30763000", + "longitude": "10.81554000" + }, + { + "id": "140685", + "name": "Murano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45857000", + "longitude": "12.35683000" + }, + { + "id": "140688", + "name": "Mure", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73419000", + "longitude": "11.61065000" + }, + { + "id": "140696", + "name": "Musano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72646000", + "longitude": "12.11785000" + }, + { + "id": "140700", + "name": "Musestre", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58864000", + "longitude": "12.37249000" + }, + { + "id": "140701", + "name": "Musile di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62057000", + "longitude": "12.54177000" + }, + { + "id": "140703", + "name": "Mussolente", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77920000", + "longitude": "11.80620000" + }, + { + "id": "140735", + "name": "Negrar", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52918000", + "longitude": "10.93899000" + }, + { + "id": "140748", + "name": "Nervesa della Battaglia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81232000", + "longitude": "12.19837000" + }, + { + "id": "140776", + "name": "Noale", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54596000", + "longitude": "12.06445000" + }, + { + "id": "140791", + "name": "Nogara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18109000", + "longitude": "11.06008000" + }, + { + "id": "140793", + "name": "Nogarole Rocca", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29027000", + "longitude": "10.88342000" + }, + { + "id": "140794", + "name": "Nogarole Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56019000", + "longitude": "11.28829000" + }, + { + "id": "140826", + "name": "Nove", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72159000", + "longitude": "11.67833000" + }, + { + "id": "140831", + "name": "Noventa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41429000", + "longitude": "11.95101000" + }, + { + "id": "140833", + "name": "Noventa di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65981000", + "longitude": "12.53322000" + }, + { + "id": "140832", + "name": "Noventa Vicentina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29438000", + "longitude": "11.54843000" + }, + { + "id": "140839", + "name": "Novoledo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64647000", + "longitude": "11.50952000" + }, + { + "id": "140868", + "name": "Occhiobello", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.92240000", + "longitude": "11.58139000" + }, + { + "id": "140872", + "name": "Oderzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78114000", + "longitude": "12.49442000" + }, + { + "id": "140912", + "name": "Oltre Brenta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41207000", + "longitude": "11.99803000" + }, + { + "id": "140930", + "name": "Onè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78374000", + "longitude": "11.87404000" + }, + { + "id": "140926", + "name": "Onigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85701000", + "longitude": "11.99073000" + }, + { + "id": "140933", + "name": "Oppeano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30331000", + "longitude": "11.18005000" + }, + { + "id": "140949", + "name": "Orgiano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33366000", + "longitude": "11.45953000" + }, + { + "id": "140962", + "name": "Ormelle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77780000", + "longitude": "12.42429000" + }, + { + "id": "140970", + "name": "Orsago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92965000", + "longitude": "12.42712000" + }, + { + "id": "141016", + "name": "Ospedaletto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66194000", + "longitude": "12.07884000" + }, + { + "id": "141018", + "name": "Ospedaletto Euganeo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21842000", + "longitude": "11.60345000" + }, + { + "id": "141022", + "name": "Ospitale di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.32808000", + "longitude": "12.32263000" + }, + { + "id": "141076", + "name": "Padernello", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68152000", + "longitude": "12.12685000" + }, + { + "id": "141077", + "name": "Paderno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82791000", + "longitude": "11.85605000" + }, + { + "id": "141082", + "name": "Paderno del Grappa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.82860000", + "longitude": "11.85770000" + }, + { + "id": "141085", + "name": "Padova", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40797000", + "longitude": "11.88586000" + }, + { + "id": "141093", + "name": "Paese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67417000", + "longitude": "12.16389000" + }, + { + "id": "58270", + "name": "Palù", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32473000", + "longitude": "11.15635000" + }, + { + "id": "58292", + "name": "Papozze", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98578000", + "longitude": "12.03092000" + }, + { + "id": "58312", + "name": "Parona", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47882000", + "longitude": "10.94414000" + }, + { + "id": "58326", + "name": "Passarella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59436000", + "longitude": "12.60537000" + }, + { + "id": "58340", + "name": "Pastrengo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49588000", + "longitude": "10.79897000" + }, + { + "id": "58377", + "name": "Pedavena", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.03951000", + "longitude": "11.88310000" + }, + { + "id": "58378", + "name": "Pedemonte", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90840000", + "longitude": "11.30859000" + }, + { + "id": "58380", + "name": "Pederiva", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42254000", + "longitude": "11.46568000" + }, + { + "id": "58381", + "name": "Pederobba", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87567000", + "longitude": "11.94977000" + }, + { + "id": "58388", + "name": "Pegolotte", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19178000", + "longitude": "12.03791000" + }, + { + "id": "58394", + "name": "Pellestrina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27716000", + "longitude": "12.30238000" + }, + { + "id": "58412", + "name": "Perarolo di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.39383000", + "longitude": "12.35636000" + }, + { + "id": "58433", + "name": "Pernumia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.25899000", + "longitude": "11.78721000" + }, + { + "id": "58434", + "name": "Pero", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70635000", + "longitude": "12.34867000" + }, + { + "id": "58449", + "name": "Pescantina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48548000", + "longitude": "10.86796000" + }, + { + "id": "58456", + "name": "Peschiera del Garda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43912000", + "longitude": "10.68614000" + }, + { + "id": "58468", + "name": "Peseggia-Gardigiano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56167000", + "longitude": "12.17944000" + }, + { + "id": "58494", + "name": "Pettorazza Grimani", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13585000", + "longitude": "11.98779000" + }, + { + "id": "58496", + "name": "Pezzan", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69341000", + "longitude": "12.09616000" + }, + { + "id": "58503", + "name": "Piacenza d'Adige", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12749000", + "longitude": "11.54333000" + }, + { + "id": "58530", + "name": "Pianezze", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74141000", + "longitude": "11.62700000" + }, + { + "id": "58535", + "name": "Pianiga", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45708000", + "longitude": "12.00762000" + }, + { + "id": "58560", + "name": "Piavon", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76429000", + "longitude": "12.52673000" + }, + { + "id": "58562", + "name": "Piazza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21585000", + "longitude": "11.14244000" + }, + { + "id": "58575", + "name": "Piazzola sul Brenta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53845000", + "longitude": "11.78437000" + }, + { + "id": "58583", + "name": "Pie' Falcade", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.35660000", + "longitude": "11.87207000" + }, + { + "id": "58631", + "name": "Pieve", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53924000", + "longitude": "11.82930000" + }, + { + "id": "58645", + "name": "Pieve d'Alpago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.16658000", + "longitude": "12.35344000" + }, + { + "id": "58649", + "name": "Pieve di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.42466000", + "longitude": "12.36416000" + }, + { + "id": "58653", + "name": "Pieve di Soligo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89836000", + "longitude": "12.17128000" + }, + { + "id": "58674", + "name": "Pincara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00064000", + "longitude": "11.62101000" + }, + { + "id": "58690", + "name": "Piombino Dese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60964000", + "longitude": "11.99416000" + }, + { + "id": "58691", + "name": "Pionca", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46591000", + "longitude": "11.96232000" + }, + { + "id": "58695", + "name": "Piove di Sacco-Piovega", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29665000", + "longitude": "12.03683000" + }, + { + "id": "58696", + "name": "Piovene Rocchette", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75601000", + "longitude": "11.43273000" + }, + { + "id": "58778", + "name": "Poiana Maggiore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.29039000", + "longitude": "11.50250000" + }, + { + "id": "58779", + "name": "Poianella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63041000", + "longitude": "11.62853000" + }, + { + "id": "58780", + "name": "Poiano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47029000", + "longitude": "11.01875000" + }, + { + "id": "58784", + "name": "Polesella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.96457000", + "longitude": "11.74887000" + }, + { + "id": "58805", + "name": "Polverara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.30945000", + "longitude": "11.95474000" + }, + { + "id": "58826", + "name": "Ponso", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18232000", + "longitude": "11.57933000" + }, + { + "id": "58854", + "name": "Ponte di Barbarano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39206000", + "longitude": "11.57847000" + }, + { + "id": "58855", + "name": "Ponte di Castegnero", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43672000", + "longitude": "11.60069000" + }, + { + "id": "58857", + "name": "Ponte di Nanto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42427000", + "longitude": "11.59400000" + }, + { + "id": "58858", + "name": "Ponte di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71904000", + "longitude": "12.46186000" + }, + { + "id": "58860", + "name": "Ponte nelle Alpi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18083000", + "longitude": "12.28333000" + }, + { + "id": "58861", + "name": "Ponte nelle Alpi-Polpet", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18833000", + "longitude": "12.27833000" + }, + { + "id": "58848", + "name": "Ponte San Nicolò", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36718000", + "longitude": "11.92341000" + }, + { + "id": "58864", + "name": "Pontecchio Polesine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02020000", + "longitude": "11.81321000" + }, + { + "id": "58874", + "name": "Pontelongo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24590000", + "longitude": "12.02582000" + }, + { + "id": "58895", + "name": "Ponzano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71541000", + "longitude": "12.20444000" + }, + { + "id": "58904", + "name": "Porcellengo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70613000", + "longitude": "12.14225000" + }, + { + "id": "58937", + "name": "Porto Tolle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.94969000", + "longitude": "12.32453000" + }, + { + "id": "58940", + "name": "Porto Viro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02678000", + "longitude": "12.21754000" + }, + { + "id": "58942", + "name": "Portobuffolè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85665000", + "longitude": "12.53761000" + }, + { + "id": "58946", + "name": "Portogruaro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78071000", + "longitude": "12.84052000" + }, + { + "id": "58955", + "name": "Posina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79106000", + "longitude": "11.26244000" + }, + { + "id": "58957", + "name": "Possagno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.84795000", + "longitude": "11.88467000" + }, + { + "id": "58963", + "name": "Postioma", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71753000", + "longitude": "12.15218000" + }, + { + "id": "58967", + "name": "Pove del Grappa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79820000", + "longitude": "11.72990000" + }, + { + "id": "58968", + "name": "Povegliano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75947000", + "longitude": "12.20944000" + }, + { + "id": "58969", + "name": "Povegliano Veronese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34730000", + "longitude": "10.88056000" + }, + { + "id": "58985", + "name": "Pozzoleone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64965000", + "longitude": "11.67098000" + }, + { + "id": "58988", + "name": "Pozzonovo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19629000", + "longitude": "11.79171000" + }, + { + "id": "58995", + "name": "Pradelle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28315000", + "longitude": "10.87083000" + }, + { + "id": "59004", + "name": "Pramaggiore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81500000", + "longitude": "12.73889000" + }, + { + "id": "59005", + "name": "Pramaggiore Blessaglia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.80528000", + "longitude": "12.72500000" + }, + { + "id": "59040", + "name": "Preara-Moraro-Levà Nord", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67996000", + "longitude": "11.54286000" + }, + { + "id": "59048", + "name": "Preganziol", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60139000", + "longitude": "12.23722000" + }, + { + "id": "59068", + "name": "Pressana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.28258000", + "longitude": "11.40724000" + }, + { + "id": "59082", + "name": "Priula-Colfosco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81998000", + "longitude": "12.25847000" + }, + { + "id": "59113", + "name": "Provincia di Belluno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25000000", + "longitude": "12.13333000" + }, + { + "id": "59155", + "name": "Provincia di Padova", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35000000", + "longitude": "11.81667000" + }, + { + "id": "59171", + "name": "Provincia di Rovigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.03333000", + "longitude": "11.83333000" + }, + { + "id": "59181", + "name": "Provincia di Treviso", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83333000", + "longitude": "12.21667000" + }, + { + "id": "59185", + "name": "Provincia di Venezia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44045000", + "longitude": "12.32632000" + }, + { + "id": "59187", + "name": "Provincia di Verona", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41667000", + "longitude": "11.03333000" + }, + { + "id": "59189", + "name": "Provincia di Vicenza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66667000", + "longitude": "11.45000000" + }, + { + "id": "59206", + "name": "Puos d'Alpago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14154000", + "longitude": "12.36176000" + }, + { + "id": "59210", + "name": "Quaderni", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32915000", + "longitude": "10.78951000" + }, + { + "id": "59230", + "name": "Quarto d'Altino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57944000", + "longitude": "12.37333000" + }, + { + "id": "59241", + "name": "Quero", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92094000", + "longitude": "11.93151000" + }, + { + "id": "59250", + "name": "Quinto di Treviso", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64351000", + "longitude": "12.16509000" + }, + { + "id": "59249", + "name": "Quinto Vicentino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57534000", + "longitude": "11.62815000" + }, + { + "id": "59271", + "name": "Raldon", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34921000", + "longitude": "11.03786000" + }, + { + "id": "59275", + "name": "Ramon", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71386000", + "longitude": "11.86828000" + }, + { + "id": "59313", + "name": "Recoaro Terme", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70373000", + "longitude": "11.22216000" + }, + { + "id": "59317", + "name": "Refrontolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92305000", + "longitude": "12.20865000" + }, + { + "id": "59334", + "name": "Resana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63535000", + "longitude": "11.95472000" + }, + { + "id": "59344", + "name": "Revine", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99935000", + "longitude": "12.25561000" + }, + { + "id": "59372", + "name": "Riese Pio X", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72858000", + "longitude": "11.91801000" + }, + { + "id": "59422", + "name": "Rivalta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65714000", + "longitude": "10.89336000" + }, + { + "id": "59425", + "name": "Rivamonte Agordino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.25226000", + "longitude": "12.02303000" + }, + { + "id": "59442", + "name": "Rivoli Veronese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57249000", + "longitude": "10.81178000" + }, + { + "id": "59447", + "name": "Roana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87696000", + "longitude": "11.45274000" + }, + { + "id": "59461", + "name": "Robegano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54253000", + "longitude": "12.11924000" + }, + { + "id": "59474", + "name": "Rocca Pietore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.43392000", + "longitude": "11.97679000" + }, + { + "id": "59578", + "name": "Romano d'Ezzelino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77902000", + "longitude": "11.76657000" + }, + { + "id": "59589", + "name": "Roncade", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62165000", + "longitude": "12.37643000" + }, + { + "id": "59591", + "name": "Roncanova", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14318000", + "longitude": "11.10349000" + }, + { + "id": "59613", + "name": "Roncà", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47987000", + "longitude": "11.29323000" + }, + { + "id": "59597", + "name": "Ronchi di Campanile", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45790000", + "longitude": "11.77483000" + }, + { + "id": "59601", + "name": "Ronco All'Adige", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33647000", + "longitude": "11.23658000" + }, + { + "id": "59653", + "name": "Rosà", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70198000", + "longitude": "11.76141000" + }, + { + "id": "59633", + "name": "Rosegaferro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34361000", + "longitude": "10.80854000" + }, + { + "id": "59642", + "name": "Rosolina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07674000", + "longitude": "12.22977000" + }, + { + "id": "59649", + "name": "Rossano Veneto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70308000", + "longitude": "11.80369000" + }, + { + "id": "59663", + "name": "Rottanova", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14361000", + "longitude": "12.01849000" + }, + { + "id": "59665", + "name": "Rotzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86190000", + "longitude": "11.39619000" + }, + { + "id": "59680", + "name": "Roverè Veronese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59329000", + "longitude": "11.06999000" + }, + { + "id": "59675", + "name": "Roverchiara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26799000", + "longitude": "11.24510000" + }, + { + "id": "59676", + "name": "Roveredo di Guà", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27309000", + "longitude": "11.44420000" + }, + { + "id": "59685", + "name": "Rovigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.06982000", + "longitude": "11.79022000" + }, + { + "id": "59690", + "name": "Rubano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42514000", + "longitude": "11.79146000" + }, + { + "id": "59718", + "name": "Saccolongo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40152000", + "longitude": "11.74863000" + }, + { + "id": "59719", + "name": "Sachet", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.36982000", + "longitude": "11.93129000" + }, + { + "id": "59748", + "name": "Salara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.98586000", + "longitude": "11.42655000" + }, + { + "id": "59752", + "name": "Salcedo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75783000", + "longitude": "11.56621000" + }, + { + "id": "59763", + "name": "Saletto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22889000", + "longitude": "11.53780000" + }, + { + "id": "59764", + "name": "Saletto-San Bartolomeo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72639000", + "longitude": "12.39556000" + }, + { + "id": "59765", + "name": "Salgareda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70500000", + "longitude": "12.48833000" + }, + { + "id": "59773", + "name": "Salionze", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40493000", + "longitude": "10.72259000" + }, + { + "id": "59776", + "name": "Salizzole", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24004000", + "longitude": "11.09540000" + }, + { + "id": "59788", + "name": "Salvatronda", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67425000", + "longitude": "11.97709000" + }, + { + "id": "59795", + "name": "Salzano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52221000", + "longitude": "12.10151000" + }, + { + "id": "59802", + "name": "Sambruson", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41039000", + "longitude": "12.10311000" + }, + { + "id": "59809", + "name": "Sambughe", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59401000", + "longitude": "12.21824000" + }, + { + "id": "59826", + "name": "San Bellino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02943000", + "longitude": "11.59222000" + }, + { + "id": "59839", + "name": "San Biagio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37518000", + "longitude": "11.73713000" + }, + { + "id": "59844", + "name": "San Biagio di Callalta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68361000", + "longitude": "12.37722000" + }, + { + "id": "59846", + "name": "San Bonifacio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39595000", + "longitude": "11.27352000" + }, + { + "id": "59901", + "name": "San Donà di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63019000", + "longitude": "12.56810000" + }, + { + "id": "59917", + "name": "San Fidenzio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21622000", + "longitude": "11.51802000" + }, + { + "id": "59920", + "name": "San Fior di Sopra", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.92219000", + "longitude": "12.36137000" + }, + { + "id": "59922", + "name": "San Floriano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51796000", + "longitude": "10.90817000" + }, + { + "id": "59924", + "name": "San Floriano-Olmi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67349000", + "longitude": "12.33039000" + }, + { + "id": "59938", + "name": "San Germano dei Berici", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40179000", + "longitude": "11.47130000" + }, + { + "id": "59965", + "name": "San Giorgio al Tagliamento-Pozzi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79639000", + "longitude": "12.96361000" + }, + { + "id": "59968", + "name": "San Giorgio delle Pertiche", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54100000", + "longitude": "11.89401000" + }, + { + "id": "59969", + "name": "San Giorgio di Livenza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65330000", + "longitude": "12.79692000" + }, + { + "id": "59974", + "name": "San Giorgio in Bosco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58863000", + "longitude": "11.80736000" + }, + { + "id": "59975", + "name": "San Giorgio in Salici", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42676000", + "longitude": "10.78906000" + }, + { + "id": "59984", + "name": "San Giovanni Ilarione", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51927000", + "longitude": "11.23707000" + }, + { + "id": "59987", + "name": "San Giovanni Lupatoto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38193000", + "longitude": "11.04474000" + }, + { + "id": "60019", + "name": "San Gregorio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.34286000", + "longitude": "11.29933000" + }, + { + "id": "60025", + "name": "San Gregorio nelle Alpi", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10391000", + "longitude": "12.02670000" + }, + { + "id": "60034", + "name": "San Liberale", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54778000", + "longitude": "12.34139000" + }, + { + "id": "60070", + "name": "San Martino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.90807000", + "longitude": "12.34132000" + }, + { + "id": "60073", + "name": "San Martino Buon Albergo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42083000", + "longitude": "11.09562000" + }, + { + "id": "60086", + "name": "San Martino di Lupari", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65128000", + "longitude": "11.86004000" + }, + { + "id": "60087", + "name": "San Martino di Venezze", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.12532000", + "longitude": "11.87018000" + }, + { + "id": "60112", + "name": "San Mauro di Saline", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56452000", + "longitude": "11.11234000" + }, + { + "id": "60121", + "name": "San Michele al Tagliamento", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.76435000", + "longitude": "12.99494000" + }, + { + "id": "60124", + "name": "San Michele di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.79667000", + "longitude": "12.34634000" + }, + { + "id": "60129", + "name": "San Nazario", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83982000", + "longitude": "11.68893000" + }, + { + "id": "60147", + "name": "San Nicolò Comelico", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.58253000", + "longitude": "12.52730000" + }, + { + "id": "60171", + "name": "San Pietro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44209000", + "longitude": "11.12968000" + }, + { + "id": "60191", + "name": "San Pietro di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.57190000", + "longitude": "12.58690000" + }, + { + "id": "60193", + "name": "San Pietro di Feletto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91391000", + "longitude": "12.25101000" + }, + { + "id": "60194", + "name": "San Pietro di Morubio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24248000", + "longitude": "11.22700000" + }, + { + "id": "60196", + "name": "San Pietro in Cariano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51751000", + "longitude": "10.88624000" + }, + { + "id": "60199", + "name": "San Pietro in Gu", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60879000", + "longitude": "11.67355000" + }, + { + "id": "60202", + "name": "San Pietro in Volta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31542000", + "longitude": "12.31518000" + }, + { + "id": "60181", + "name": "San Pietro Mussolino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58359000", + "longitude": "11.25930000" + }, + { + "id": "60183", + "name": "San Pietro Valdastico", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88670000", + "longitude": "11.36159000" + }, + { + "id": "60185", + "name": "San Pietro Viminario", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24501000", + "longitude": "11.82049000" + }, + { + "id": "60207", + "name": "San Polo di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78969000", + "longitude": "12.39287000" + }, + { + "id": "60216", + "name": "San Quirico", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67685000", + "longitude": "11.27260000" + }, + { + "id": "60250", + "name": "San Stino di Livenza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72559000", + "longitude": "12.68971000" + }, + { + "id": "60262", + "name": "San Vendemiano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.88732000", + "longitude": "12.35164000" + }, + { + "id": "60263", + "name": "San Vendemiano-Fossamerlo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89180000", + "longitude": "12.32992000" + }, + { + "id": "60273", + "name": "San Vito", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75514000", + "longitude": "11.91553000" + }, + { + "id": "60279", + "name": "San Vito al Mantico", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47163000", + "longitude": "10.89243000" + }, + { + "id": "60284", + "name": "San Vito di Leguzzano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68494000", + "longitude": "11.38872000" + }, + { + "id": "60290", + "name": "San Zeno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63381000", + "longitude": "10.73046000" + }, + { + "id": "60292", + "name": "San Zeno di Montagna", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63749000", + "longitude": "10.73218000" + }, + { + "id": "60293", + "name": "San Zeno-San Giuseppe", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.75727000", + "longitude": "11.76208000" + }, + { + "id": "60297", + "name": "San Zenone degli Ezzelini", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78040000", + "longitude": "11.83720000" + }, + { + "id": "60301", + "name": "Sandrà", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46067000", + "longitude": "10.78686000" + }, + { + "id": "60300", + "name": "Sandrigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66083000", + "longitude": "11.58921000" + }, + { + "id": "60307", + "name": "Sanguinetto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18567000", + "longitude": "11.14412000" + }, + { + "id": "60331", + "name": "Sant'Alberto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61306000", + "longitude": "12.13472000" + }, + { + "id": "60338", + "name": "Sant'Ambrogio di Valpollicella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52089000", + "longitude": "10.83618000" + }, + { + "id": "60343", + "name": "Sant'Andrea", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64664000", + "longitude": "11.89639000" + }, + { + "id": "60351", + "name": "Sant'Angelo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52031000", + "longitude": "12.01862000" + }, + { + "id": "60366", + "name": "Sant'Angelo di Piove di Sacco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31735000", + "longitude": "12.00941000" + }, + { + "id": "60373", + "name": "Sant'Anna", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.16610000", + "longitude": "12.27355000" + }, + { + "id": "60375", + "name": "Sant'Anna d'Alfaedo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.62719000", + "longitude": "10.95168000" + }, + { + "id": "60386", + "name": "Sant'Apollinare", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.04115000", + "longitude": "11.82533000" + }, + { + "id": "60393", + "name": "Sant'Elena", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.18744000", + "longitude": "11.71169000" + }, + { + "id": "60420", + "name": "Santa Cristina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64350000", + "longitude": "12.13903000" + }, + { + "id": "60440", + "name": "Santa Giustina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08118000", + "longitude": "12.03822000" + }, + { + "id": "60442", + "name": "Santa Giustina in Colle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57506000", + "longitude": "11.90039000" + }, + { + "id": "60448", + "name": "Santa Lucia di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86159000", + "longitude": "12.29390000" + }, + { + "id": "60452", + "name": "Santa Margherita d'Adige", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21210000", + "longitude": "11.55759000" + }, + { + "id": "60456", + "name": "Santa Maria", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99115000", + "longitude": "12.22992000" + }, + { + "id": "60477", + "name": "Santa Maria di Non", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51322000", + "longitude": "11.85364000" + }, + { + "id": "60478", + "name": "Santa Maria di Sala", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50699000", + "longitude": "12.03565000" + }, + { + "id": "60465", + "name": "Santa Maria Maddalena", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.90231000", + "longitude": "11.60663000" + }, + { + "id": "60502", + "name": "Santandrà", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74778000", + "longitude": "12.20111000" + }, + { + "id": "60520", + "name": "Santo Stefano di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.55827000", + "longitude": "12.54956000" + }, + { + "id": "60526", + "name": "Santo Stefano-Bonaldo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36718000", + "longitude": "11.33199000" + }, + { + "id": "60530", + "name": "Santorso", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73383000", + "longitude": "11.38785000" + }, + { + "id": "60534", + "name": "Saonara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36529000", + "longitude": "11.98481000" + }, + { + "id": "60541", + "name": "Sarcedo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70134000", + "longitude": "11.52963000" + }, + { + "id": "60545", + "name": "Sarego", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40769000", + "longitude": "11.40190000" + }, + { + "id": "60550", + "name": "Sarmede", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97625000", + "longitude": "12.38581000" + }, + { + "id": "60551", + "name": "Sarmeola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42400000", + "longitude": "11.81674000" + }, + { + "id": "60612", + "name": "Scaltenigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47120000", + "longitude": "12.08106000" + }, + { + "id": "60630", + "name": "Scardovari", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.89765000", + "longitude": "12.45462000" + }, + { + "id": "60644", + "name": "Schiavon", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69654000", + "longitude": "11.64573000" + }, + { + "id": "60647", + "name": "Schio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71262000", + "longitude": "11.35671000" + }, + { + "id": "60661", + "name": "Scomigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.94255000", + "longitude": "12.32014000" + }, + { + "id": "60669", + "name": "Scorzè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57405000", + "longitude": "12.11156000" + }, + { + "id": "60681", + "name": "Sedico", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.10563000", + "longitude": "12.09330000" + }, + { + "id": "60692", + "name": "Segusino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.91701000", + "longitude": "11.95560000" + }, + { + "id": "60706", + "name": "Selva del Montello", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78835000", + "longitude": "12.14350000" + }, + { + "id": "60707", + "name": "Selva di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.45028000", + "longitude": "12.05694000" + }, + { + "id": "60708", + "name": "Selva di Progno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61139000", + "longitude": "11.13799000" + }, + { + "id": "60710", + "name": "Selvazzano Dentro", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38764000", + "longitude": "11.79232000" + }, + { + "id": "60738", + "name": "Seren del Grappa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.99594000", + "longitude": "11.85624000" + }, + { + "id": "60746", + "name": "Sernaglia della Battaglia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.87147000", + "longitude": "12.13302000" + }, + { + "id": "60787", + "name": "Servo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05844000", + "longitude": "11.78657000" + }, + { + "id": "60810", + "name": "Settimo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47929000", + "longitude": "10.90910000" + }, + { + "id": "60849", + "name": "Silea", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.65444000", + "longitude": "12.29701000" + }, + { + "id": "60890", + "name": "Soave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41955000", + "longitude": "11.24594000" + }, + { + "id": "60893", + "name": "Soccher-Paiane-Casan-Arsie", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.18120000", + "longitude": "12.31001000" + }, + { + "id": "60900", + "name": "Solagna", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81951000", + "longitude": "11.71787000" + }, + { + "id": "60915", + "name": "Solesino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17922000", + "longitude": "11.74647000" + }, + { + "id": "60930", + "name": "Sommacampagna", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40528000", + "longitude": "10.84382000" + }, + { + "id": "60935", + "name": "Sona", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43271000", + "longitude": "10.83990000" + }, + { + "id": "60956", + "name": "Sorgà", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.21328000", + "longitude": "10.97989000" + }, + { + "id": "60970", + "name": "Sospirolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.14134000", + "longitude": "12.07365000" + }, + { + "id": "60971", + "name": "Sossano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35754000", + "longitude": "11.50819000" + }, + { + "id": "60982", + "name": "Soverzene", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.20331000", + "longitude": "12.30301000" + }, + { + "id": "60985", + "name": "Sovizzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52669000", + "longitude": "11.44610000" + }, + { + "id": "60986", + "name": "Sovramonte", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05861000", + "longitude": "11.78660000" + }, + { + "id": "61015", + "name": "Spinea-Orgnano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49107000", + "longitude": "12.15500000" + }, + { + "id": "61021", + "name": "Spinimbecco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.14398000", + "longitude": "11.37202000" + }, + { + "id": "61032", + "name": "Spresiano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77908000", + "longitude": "12.25628000" + }, + { + "id": "61044", + "name": "Stallavena-Lugo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.56289000", + "longitude": "10.99669000" + }, + { + "id": "61046", + "name": "Stanghella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13509000", + "longitude": "11.75741000" + }, + { + "id": "61071", + "name": "Stienta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.93970000", + "longitude": "11.54375000" + }, + { + "id": "61073", + "name": "Stigliano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52362000", + "longitude": "12.04377000" + }, + { + "id": "61082", + "name": "Stra", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41123000", + "longitude": "12.01418000" + }, + { + "id": "61104", + "name": "Strà-Montanara-Pieve", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42367000", + "longitude": "11.15749000" + }, + { + "id": "61119", + "name": "Summaga", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77406000", + "longitude": "12.79792000" + }, + { + "id": "61129", + "name": "Susegana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85604000", + "longitude": "12.25741000" + }, + { + "id": "61141", + "name": "Taggì", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46070000", + "longitude": "11.81865000" + }, + { + "id": "61144", + "name": "Taglio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02222000", + "longitude": "12.21083000" + }, + { + "id": "61145", + "name": "Taglio di Po", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.00189000", + "longitude": "12.21386000" + }, + { + "id": "61147", + "name": "Taibon Agordino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.29838000", + "longitude": "12.01312000" + }, + { + "id": "61157", + "name": "Talponada", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70351000", + "longitude": "12.49053000" + }, + { + "id": "61159", + "name": "Tambre", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.12632000", + "longitude": "12.41941000" + }, + { + "id": "61171", + "name": "Tarzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.97711000", + "longitude": "12.22917000" + }, + { + "id": "61189", + "name": "Tavernelle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51498000", + "longitude": "11.44860000" + }, + { + "id": "61195", + "name": "Tavo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50066000", + "longitude": "11.86079000" + }, + { + "id": "61203", + "name": "Teglio Veneto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.81637000", + "longitude": "12.88414000" + }, + { + "id": "61212", + "name": "Tencarola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39490000", + "longitude": "11.80919000" + }, + { + "id": "61236", + "name": "Terradura", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32290000", + "longitude": "11.82425000" + }, + { + "id": "61246", + "name": "Terrassa Padovana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.24409000", + "longitude": "11.90271000" + }, + { + "id": "61249", + "name": "Terrazzo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17260000", + "longitude": "11.39485000" + }, + { + "id": "61252", + "name": "Terrossa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.46340000", + "longitude": "11.31860000" + }, + { + "id": "61263", + "name": "Tessera", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.50241000", + "longitude": "12.32632000" + }, + { + "id": "61270", + "name": "Tezze", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.69011000", + "longitude": "11.70672000" + }, + { + "id": "61271", + "name": "Thiene", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70880000", + "longitude": "11.47959000" + }, + { + "id": "61304", + "name": "Tombelle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.39845000", + "longitude": "11.98213000" + }, + { + "id": "61305", + "name": "Tombolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63916000", + "longitude": "11.82435000" + }, + { + "id": "61311", + "name": "Tonezza del Cimone", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85889000", + "longitude": "11.34592000" + }, + { + "id": "61374", + "name": "Torre di Mosto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68629000", + "longitude": "12.70027000" + }, + { + "id": "61379", + "name": "Torrebelvicino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.71583000", + "longitude": "11.31869000" + }, + { + "id": "61382", + "name": "Torreglia", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.33617000", + "longitude": "11.73608000" + }, + { + "id": "61387", + "name": "Torreselle", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.63026000", + "longitude": "12.02250000" + }, + { + "id": "61394", + "name": "Torri del Benaco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.61013000", + "longitude": "10.68669000" + }, + { + "id": "61395", + "name": "Torri di Quartesolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51901000", + "longitude": "11.62469000" + }, + { + "id": "61458", + "name": "Trebaseleghe", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59295000", + "longitude": "12.04392000" + }, + { + "id": "61469", + "name": "Trecenta", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.02937000", + "longitude": "11.45931000" + }, + { + "id": "61474", + "name": "Tregnago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51397000", + "longitude": "11.16421000" + }, + { + "id": "61480", + "name": "Tremignon", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.52076000", + "longitude": "11.80577000" + }, + { + "id": "61486", + "name": "Treponti", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.36727000", + "longitude": "11.70905000" + }, + { + "id": "61500", + "name": "Trevenzuolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.26974000", + "longitude": "10.93386000" + }, + { + "id": "61505", + "name": "Trevignano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73670000", + "longitude": "12.06719000" + }, + { + "id": "61509", + "name": "Treviso", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.66673000", + "longitude": "12.24160000" + }, + { + "id": "61515", + "name": "Tribano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.20912000", + "longitude": "11.83639000" + }, + { + "id": "61522", + "name": "Trichiana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.08130000", + "longitude": "12.14091000" + }, + { + "id": "61537", + "name": "Trissino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.55994000", + "longitude": "11.37678000" + }, + { + "id": "61542", + "name": "Trivignano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53197000", + "longitude": "12.18687000" + }, + { + "id": "61601", + "name": "Urbana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.19278000", + "longitude": "11.44490000" + }, + { + "id": "61636", + "name": "Vago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.41986000", + "longitude": "11.13020000" + }, + { + "id": "61650", + "name": "Valdagno", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64498000", + "longitude": "11.29886000" + }, + { + "id": "61657", + "name": "Valdobbiadene", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.89689000", + "longitude": "11.98245000" + }, + { + "id": "61661", + "name": "Valeggio sul Mincio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35333000", + "longitude": "10.73635000" + }, + { + "id": "61672", + "name": "Valgatara", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53467000", + "longitude": "10.91191000" + }, + { + "id": "61680", + "name": "Vallada Agordina", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.36442000", + "longitude": "11.93399000" + }, + { + "id": "61727", + "name": "Vallà", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.70711000", + "longitude": "11.93271000" + }, + { + "id": "61696", + "name": "Valle di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41806000", + "longitude": "12.33431000" + }, + { + "id": "61717", + "name": "Vallese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32827000", + "longitude": "11.08608000" + }, + { + "id": "61719", + "name": "Valli", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.22342000", + "longitude": "12.18990000" + }, + { + "id": "61720", + "name": "Valli del Pasubio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.74030000", + "longitude": "11.26354000" + }, + { + "id": "61725", + "name": "Vallonga", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.27248000", + "longitude": "12.07860000" + }, + { + "id": "61740", + "name": "Valstagna", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.85108000", + "longitude": "11.66642000" + }, + { + "id": "61758", + "name": "Varago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.73726000", + "longitude": "12.31083000" + }, + { + "id": "61777", + "name": "Vas", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.93804000", + "longitude": "11.93579000" + }, + { + "id": "61786", + "name": "Vazzola", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.83511000", + "longitude": "12.40851000" + }, + { + "id": "62226", + "name": "Vò", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32829000", + "longitude": "11.64150000" + }, + { + "id": "61791", + "name": "Vedelago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.68722000", + "longitude": "12.01853000" + }, + { + "id": "61795", + "name": "Veggiano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44719000", + "longitude": "11.71280000" + }, + { + "id": "61804", + "name": "Velo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78983000", + "longitude": "11.36725000" + }, + { + "id": "61806", + "name": "Velo d'Astico", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.78840000", + "longitude": "11.36769000" + }, + { + "id": "61805", + "name": "Velo Veronese", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60669000", + "longitude": "11.09519000" + }, + { + "id": "61815", + "name": "Venegazzù", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77934000", + "longitude": "12.09148000" + }, + { + "id": "61822", + "name": "Venice", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43713000", + "longitude": "12.33265000" + }, + { + "id": "61863", + "name": "Verona", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42990000", + "longitude": "10.98444000" + }, + { + "id": "61864", + "name": "Veronella", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.32378000", + "longitude": "11.32582000" + }, + { + "id": "61880", + "name": "Vescovana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.13422000", + "longitude": "11.71261000" + }, + { + "id": "61885", + "name": "Vestenanova", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.57421000", + "longitude": "11.22868000" + }, + { + "id": "61889", + "name": "Veternigo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51765000", + "longitude": "12.05793000" + }, + { + "id": "61914", + "name": "Vicenza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54672000", + "longitude": "11.54750000" + }, + { + "id": "61931", + "name": "Vidor", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.86659000", + "longitude": "12.04517000" + }, + { + "id": "61941", + "name": "Vigardolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.60599000", + "longitude": "11.58856000" + }, + { + "id": "61942", + "name": "Vigasio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.31780000", + "longitude": "10.94371000" + }, + { + "id": "61950", + "name": "Vighizzolo d'Este", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17629000", + "longitude": "11.62471000" + }, + { + "id": "61967", + "name": "Vigo di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.49904000", + "longitude": "12.47111000" + }, + { + "id": "61970", + "name": "Vigodarzere", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.45751000", + "longitude": "11.88555000" + }, + { + "id": "61975", + "name": "Vigonovo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38691000", + "longitude": "12.00642000" + }, + { + "id": "61977", + "name": "Vigonza", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43484000", + "longitude": "11.97465000" + }, + { + "id": "61985", + "name": "Villa Bartolomea", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.15461000", + "longitude": "11.35380000" + }, + { + "id": "62035", + "name": "Villa d'Asolo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77193000", + "longitude": "11.89981000" + }, + { + "id": "62039", + "name": "Villa del Conte", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.58475000", + "longitude": "11.85942000" + }, + { + "id": "61996", + "name": "Villa Estense", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.17465000", + "longitude": "11.67022000" + }, + { + "id": "62048", + "name": "Villabruna-Umin", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.05675000", + "longitude": "11.92700000" + }, + { + "id": "62052", + "name": "Villadose", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.07219000", + "longitude": "11.89899000" + }, + { + "id": "62061", + "name": "Villafranca di Verona", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.35405000", + "longitude": "10.84462000" + }, + { + "id": "62056", + "name": "Villafranca Padovana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.49189000", + "longitude": "11.79350000" + }, + { + "id": "62064", + "name": "Villaga", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.40273000", + "longitude": "11.53468000" + }, + { + "id": "62065", + "name": "Villaganzerla", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.43612000", + "longitude": "11.61859000" + }, + { + "id": "62066", + "name": "Villaggio Montegrappa", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.54643000", + "longitude": "11.61428000" + }, + { + "id": "62073", + "name": "Villaguattera", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.44409000", + "longitude": "11.81767000" + }, + { + "id": "62083", + "name": "Villamarzana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.01457000", + "longitude": "11.69225000" + }, + { + "id": "62091", + "name": "Villanova", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.48890000", + "longitude": "11.97471000" + }, + { + "id": "62109", + "name": "Villanova del Ghebbo Canton", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.05933000", + "longitude": "11.64314000" + }, + { + "id": "62098", + "name": "Villanova Marchesana", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "44.99231000", + "longitude": "11.96675000" + }, + { + "id": "62143", + "name": "Villatora", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.38768000", + "longitude": "11.96736000" + }, + { + "id": "62146", + "name": "Villaverla", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.64939000", + "longitude": "11.49176000" + }, + { + "id": "62185", + "name": "Vittorio Veneto", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.98026000", + "longitude": "12.30065000" + }, + { + "id": "62200", + "name": "Vodo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.41921000", + "longitude": "12.24557000" + }, + { + "id": "62205", + "name": "Volargne", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.53684000", + "longitude": "10.81820000" + }, + { + "id": "62208", + "name": "Volpago del Montello", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.77770000", + "longitude": "12.11857000" + }, + { + "id": "62215", + "name": "Voltago", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.27252000", + "longitude": "12.00640000" + }, + { + "id": "62216", + "name": "Voltago Agordino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.27139000", + "longitude": "12.00574000" + }, + { + "id": "62236", + "name": "Zanè", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72200000", + "longitude": "11.44932000" + }, + { + "id": "62241", + "name": "Zelarino", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.51508000", + "longitude": "12.20790000" + }, + { + "id": "62247", + "name": "Zenson di Piave", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.67971000", + "longitude": "12.48913000" + }, + { + "id": "62254", + "name": "Zermeghedo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.47585000", + "longitude": "11.37438000" + }, + { + "id": "62255", + "name": "Zero Branco", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.59952000", + "longitude": "12.16381000" + }, + { + "id": "62256", + "name": "Zevio", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.37209000", + "longitude": "11.12929000" + }, + { + "id": "62275", + "name": "Zoppè di Cadore", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "46.38583000", + "longitude": "12.17368000" + }, + { + "id": "62277", + "name": "Zovencedo", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.42893000", + "longitude": "11.50387000" + }, + { + "id": "62281", + "name": "Zugliano", + "state_id": 1753, + "state_code": "34", + "country_id": 107, + "country_code": "IT", + "latitude": "45.72980000", + "longitude": "11.52399000" + }, + { + "id": "62295", + "name": "Aenon Town", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21027000", + "longitude": "-77.39851000" + }, + { + "id": "62302", + "name": "Alley", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.79036000", + "longitude": "-77.27085000" + }, + { + "id": "62307", + "name": "Alston", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17639000", + "longitude": "-77.43468000" + }, + { + "id": "62319", + "name": "Ashley", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01440000", + "longitude": "-77.34019000" + }, + { + "id": "62331", + "name": "Banks", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.83222000", + "longitude": "-77.30731000" + }, + { + "id": "62344", + "name": "Beckford Kraal", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08545000", + "longitude": "-77.32399000" + }, + { + "id": "62387", + "name": "Brandon Hill", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15110000", + "longitude": "-77.23663000" + }, + { + "id": "62391", + "name": "Brixton Hill", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02039000", + "longitude": "-77.31744000" + }, + { + "id": "62397", + "name": "Bucknor", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00619000", + "longitude": "-77.23749000" + }, + { + "id": "62398", + "name": "Bucks Common", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98228000", + "longitude": "-77.23846000" + }, + { + "id": "62406", + "name": "Bushy Park", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98243000", + "longitude": "-77.25135000" + }, + { + "id": "62446", + "name": "Chapelton", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08333000", + "longitude": "-77.26667000" + }, + { + "id": "62449", + "name": "Chateau", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98972000", + "longitude": "-77.18737000" + }, + { + "id": "62462", + "name": "Cockpit", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88872000", + "longitude": "-77.15835000" + }, + { + "id": "62463", + "name": "Coffee Piece", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13835000", + "longitude": "-77.40648000" + }, + { + "id": "62466", + "name": "Colonels Ridge", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13525000", + "longitude": "-77.25550000" + }, + { + "id": "62485", + "name": "Coxswain", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10272000", + "longitude": "-77.23444000" + }, + { + "id": "62489", + "name": "Crofts Hill", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13268000", + "longitude": "-77.20507000" + }, + { + "id": "62491", + "name": "Crooked River", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14289000", + "longitude": "-77.30000000" + }, + { + "id": "62496", + "name": "Cumberland", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10522000", + "longitude": "-77.41617000" + }, + { + "id": "62497", + "name": "Curatoe Hill", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.93982000", + "longitude": "-77.24836000" + }, + { + "id": "62504", + "name": "Dawkins", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05540000", + "longitude": "-77.33303000" + }, + { + "id": "62533", + "name": "Effortville", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99270000", + "longitude": "-77.21860000" + }, + { + "id": "62565", + "name": "Four Paths", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97089000", + "longitude": "-77.29599000" + }, + { + "id": "62566", + "name": "Frankfield", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14971000", + "longitude": "-77.36498000" + }, + { + "id": "62570", + "name": "Freetown", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92192000", + "longitude": "-77.14781000" + }, + { + "id": "62585", + "name": "Gimme-me-bit", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88946000", + "longitude": "-77.28469000" + }, + { + "id": "62590", + "name": "Glenmuir", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96801000", + "longitude": "-77.25394000" + }, + { + "id": "62602", + "name": "Grantham", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15839000", + "longitude": "-77.39643000" + }, + { + "id": "62606", + "name": "Gravel Hill", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.90968000", + "longitude": "-77.33354000" + }, + { + "id": "62638", + "name": "Hayes", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.87569000", + "longitude": "-77.23711000" + }, + { + "id": "62640", + "name": "Hazard", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95382000", + "longitude": "-77.23147000" + }, + { + "id": "62661", + "name": "Inverness", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.91195000", + "longitude": "-77.19032000" + }, + { + "id": "62670", + "name": "James Hill", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18750000", + "longitude": "-77.33700000" + }, + { + "id": "62676", + "name": "Johns Hall", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18876000", + "longitude": "-77.38063000" + }, + { + "id": "62683", + "name": "Kellits", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16184000", + "longitude": "-77.27049000" + }, + { + "id": "62712", + "name": "Limit", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15287000", + "longitude": "-77.47121000" + }, + { + "id": "62715", + "name": "Lionel Town", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.81007000", + "longitude": "-77.24061000" + }, + { + "id": "62727", + "name": "Longville Park", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.91188000", + "longitude": "-77.15983000" + }, + { + "id": "62728", + "name": "Longwood", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.80754000", + "longitude": "-77.28728000" + }, + { + "id": "62764", + "name": "May Pen", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96454000", + "longitude": "-77.24515000" + }, + { + "id": "62765", + "name": "May Pen Proper", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97034000", + "longitude": "-77.23911000" + }, + { + "id": "62776", + "name": "Milk River", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.87560000", + "longitude": "-77.35139000" + }, + { + "id": "62777", + "name": "Mineral Heights", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94183000", + "longitude": "-77.23276000" + }, + { + "id": "62778", + "name": "Mitchell Town", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.81281000", + "longitude": "-77.20531000" + }, + { + "id": "62788", + "name": "Moores", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02926000", + "longitude": "-77.18540000" + }, + { + "id": "62790", + "name": "Morgans Forest", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19088000", + "longitude": "-77.41021000" + }, + { + "id": "62791", + "name": "Morgans Pass", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.12123000", + "longitude": "-77.27493000" + }, + { + "id": "62793", + "name": "Mount Airy", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01843000", + "longitude": "-77.36357000" + }, + { + "id": "62812", + "name": "New Denbigh", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98563000", + "longitude": "-77.27104000" + }, + { + "id": "62817", + "name": "New Longsville", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03072000", + "longitude": "-77.23048000" + }, + { + "id": "62836", + "name": "Old Denbigh", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96116000", + "longitude": "-77.26701000" + }, + { + "id": "62846", + "name": "Orange Hill", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.11788000", + "longitude": "-77.35942000" + }, + { + "id": "62847", + "name": "Osbourne Store", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95892000", + "longitude": "-77.32827000" + }, + { + "id": "62848", + "name": "Paisley", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96293000", + "longitude": "-77.22368000" + }, + { + "id": "62849", + "name": "Palmers Cross", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95000000", + "longitude": "-77.20338000" + }, + { + "id": "62858", + "name": "Part of Banana Ground", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08022000", + "longitude": "-77.40971000" + }, + { + "id": "62859", + "name": "Part of Douglas Castle", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18703000", + "longitude": "-77.27538000" + }, + { + "id": "62861", + "name": "Part of Kellits", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17159000", + "longitude": "-77.25120000" + }, + { + "id": "62871", + "name": "Peckham", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17147000", + "longitude": "-77.39766000" + }, + { + "id": "62875", + "name": "Pennants", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.11025000", + "longitude": "-77.31306000" + }, + { + "id": "62886", + "name": "Pleasant Valley", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01101000", + "longitude": "-77.29027000" + }, + { + "id": "62897", + "name": "Portland Cottage", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.74620000", + "longitude": "-77.18772000" + }, + { + "id": "62901", + "name": "Porus", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05202000", + "longitude": "-77.40007000" + }, + { + "id": "62910", + "name": "Race Course", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.84019000", + "longitude": "-77.28223000" + }, + { + "id": "62930", + "name": "Richmond Park", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05172000", + "longitude": "-77.37642000" + }, + { + "id": "62934", + "name": "Ritchies", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13904000", + "longitude": "-77.42893000" + }, + { + "id": "62942", + "name": "Rock", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99122000", + "longitude": "-77.33702000" + }, + { + "id": "62944", + "name": "Rock River", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.06548000", + "longitude": "-77.19707000" + }, + { + "id": "62946", + "name": "Rocky Point", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.77695000", + "longitude": "-77.24816000" + }, + { + "id": "62964", + "name": "Salt River", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.84143000", + "longitude": "-77.17413000" + }, + { + "id": "62969", + "name": "Sandy Bay", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95105000", + "longitude": "-77.16225000" + }, + { + "id": "62970", + "name": "Sanguinetti", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15585000", + "longitude": "-77.42938000" + }, + { + "id": "62984", + "name": "Sedgepond", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.84753000", + "longitude": "-77.32638000" + }, + { + "id": "62992", + "name": "Silent Hill", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19152000", + "longitude": "-77.45918000" + }, + { + "id": "62998", + "name": "Smithville", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.11977000", + "longitude": "-77.38561000" + }, + { + "id": "63006", + "name": "Spaldings", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16875000", + "longitude": "-77.45798000" + }, + { + "id": "63040", + "name": "Summerfield", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09433000", + "longitude": "-77.28429000" + }, + { + "id": "63048", + "name": "Thompson Town", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08968000", + "longitude": "-77.37186000" + }, + { + "id": "63053", + "name": "Tollgate", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97195000", + "longitude": "-77.36566000" + }, + { + "id": "63061", + "name": "Treadlight", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99264000", + "longitude": "-77.25531000" + }, + { + "id": "63067", + "name": "Trout Hall", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13779000", + "longitude": "-77.33299000" + }, + { + "id": "63071", + "name": "Turners", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.06647000", + "longitude": "-77.23523000" + }, + { + "id": "63087", + "name": "Water Lane", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.82452000", + "longitude": "-77.25946000" + }, + { + "id": "63119", + "name": "Woodhall", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04757000", + "longitude": "-77.27575000" + }, + { + "id": "63127", + "name": "York Town", + "state_id": 3753, + "state_code": "13", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92515000", + "longitude": "-77.30002000" + }, + { + "id": "62322", + "name": "Askenish", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38492000", + "longitude": "-78.14910000" + }, + { + "id": "62409", + "name": "Cacoon", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.41642000", + "longitude": "-78.20730000" + }, + { + "id": "62410", + "name": "Cacoon Castle", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40247000", + "longitude": "-78.01336000" + }, + { + "id": "62422", + "name": "Cascade", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39747000", + "longitude": "-78.10337000" + }, + { + "id": "62425", + "name": "Cash Hill", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.36920000", + "longitude": "-78.10938000" + }, + { + "id": "62432", + "name": "Cauldwell", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38583000", + "longitude": "-78.24110000" + }, + { + "id": "62443", + "name": "Chambers Pen", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40520000", + "longitude": "-78.15975000" + }, + { + "id": "62452", + "name": "Chester Castle", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33822000", + "longitude": "-77.94722000" + }, + { + "id": "62479", + "name": "Copse", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39466000", + "longitude": "-77.97678000" + }, + { + "id": "62484", + "name": "Cousins Cove", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.42425000", + "longitude": "-78.23752000" + }, + { + "id": "62512", + "name": "Dias", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39379000", + "longitude": "-78.18562000" + }, + { + "id": "62608", + "name": "Great Valley", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.41169000", + "longitude": "-78.05023000" + }, + { + "id": "62610", + "name": "Green Island", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38399000", + "longitude": "-78.27015000" + }, + { + "id": "62620", + "name": "Haddington", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.42043000", + "longitude": "-78.00383000" + }, + { + "id": "62657", + "name": "Hopewell", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44321000", + "longitude": "-78.02636000" + }, + { + "id": "62672", + "name": "Jericho", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43744000", + "longitude": "-78.13028000" + }, + { + "id": "62685", + "name": "Kendal", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.36287000", + "longitude": "-78.22720000" + }, + { + "id": "62693", + "name": "Kingsvale", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38087000", + "longitude": "-78.20523000" + }, + { + "id": "62702", + "name": "Lances Bay", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43819000", + "longitude": "-78.21442000" + }, + { + "id": "62723", + "name": "Logwood", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34878000", + "longitude": "-78.29620000" + }, + { + "id": "62731", + "name": "Lucea", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45095000", + "longitude": "-78.17356000" + }, + { + "id": "62732", + "name": "Lucea East", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.42198000", + "longitude": "-78.16675000" + }, + { + "id": "62733", + "name": "Lucea West", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44238000", + "longitude": "-78.18663000" + }, + { + "id": "62752", + "name": "March Town", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32951000", + "longitude": "-78.27656000" + }, + { + "id": "62758", + "name": "Maryland", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38679000", + "longitude": "-78.12825000" + }, + { + "id": "62799", + "name": "Mount Peto", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.35747000", + "longitude": "-78.02289000" + }, + { + "id": "62844", + "name": "Orange Bay", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34266000", + "longitude": "-78.32005000" + }, + { + "id": "62873", + "name": "Pell River", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37886000", + "longitude": "-78.21904000" + }, + { + "id": "62890", + "name": "Pondside", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40222000", + "longitude": "-78.07344000" + }, + { + "id": "62913", + "name": "Ramble", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34674000", + "longitude": "-77.98802000" + }, + { + "id": "62945", + "name": "Rock Spring", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34797000", + "longitude": "-78.24392000" + }, + { + "id": "62968", + "name": "Sandy Bay", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43750000", + "longitude": "-78.08383000" + }, + { + "id": "62972", + "name": "Santoy", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.35875000", + "longitude": "-78.28386000" + }, + { + "id": "63038", + "name": "Success", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37729000", + "longitude": "-78.05105000" + }, + { + "id": "63120", + "name": "Woodlands", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44555000", + "longitude": "-77.99963000" + }, + { + "id": "63123", + "name": "Woodsville", + "state_id": 3749, + "state_code": "09", + "country_id": 108, + "country_code": "JM", + "latitude": "18.36950000", + "longitude": "-78.07217000" + }, + { + "id": "62305", + "name": "Allman Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98297000", + "longitude": "-76.78685000" + }, + { + "id": "62380", + "name": "Bournemouth Gardens", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97009000", + "longitude": "-76.76266000" + }, + { + "id": "62416", + "name": "Campbell Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97914000", + "longitude": "-76.78134000" + }, + { + "id": "62439", + "name": "Central Down Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96958000", + "longitude": "-76.79264000" + }, + { + "id": "62498", + "name": "D'Aguilar Town\/ Rennock Lodge", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97001000", + "longitude": "-76.73701000" + }, + { + "id": "62509", + "name": "Denham Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97812000", + "longitude": "-76.79984000" + }, + { + "id": "62530", + "name": "East Down Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97197000", + "longitude": "-76.78471000" + }, + { + "id": "62558", + "name": "Fletchers Land", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97968000", + "longitude": "-76.79100000" + }, + { + "id": "62567", + "name": "Franklyn Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97787000", + "longitude": "-76.77339000" + }, + { + "id": "62629", + "name": "Hannah Town\/ Craig Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97998000", + "longitude": "-76.79430000" + }, + { + "id": "62679", + "name": "Johnson Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97771000", + "longitude": "-76.75593000" + }, + { + "id": "62691", + "name": "Kingston", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99702000", + "longitude": "-76.79358000" + }, + { + "id": "62692", + "name": "Kingston Gardens", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97836000", + "longitude": "-76.78681000" + }, + { + "id": "62748", + "name": "Manley Meadows", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96907000", + "longitude": "-76.77116000" + }, + { + "id": "62825", + "name": "Newport East", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97421000", + "longitude": "-76.80663000" + }, + { + "id": "62827", + "name": "Newton Square", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97352000", + "longitude": "-76.77207000" + }, + { + "id": "62831", + "name": "Norman Gardens", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97803000", + "longitude": "-76.75940000" + }, + { + "id": "62866", + "name": "Passmore Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97301000", + "longitude": "-76.77650000" + }, + { + "id": "62895", + "name": "Port Royal", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.93738000", + "longitude": "-76.84062000" + }, + { + "id": "62911", + "name": "Rae Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96773000", + "longitude": "-76.77965000" + }, + { + "id": "62949", + "name": "Rollington Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97687000", + "longitude": "-76.76523000" + }, + { + "id": "63005", + "name": "Southside", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96569000", + "longitude": "-76.78624000" + }, + { + "id": "63016", + "name": "Springfield", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97117000", + "longitude": "-76.75607000" + }, + { + "id": "63052", + "name": "Tivoli Gardens", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97326000", + "longitude": "-76.80090000" + }, + { + "id": "63096", + "name": "West Down Town", + "state_id": 3748, + "state_code": "01", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97294000", + "longitude": "-76.79704000" + }, + { + "id": "62304", + "name": "Alligator Pond", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88369000", + "longitude": "-77.56068000" + }, + { + "id": "62321", + "name": "Asia\/Pratville", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.91584000", + "longitude": "-77.41563000" + }, + { + "id": "62323", + "name": "Auchtembeddie", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22543000", + "longitude": "-77.60361000" + }, + { + "id": "62349", + "name": "Bellefield", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09266000", + "longitude": "-77.44004000" + }, + { + "id": "62354", + "name": "Bethany", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15373000", + "longitude": "-77.55032000" + }, + { + "id": "62366", + "name": "Blue Mountain", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07095000", + "longitude": "-77.42840000" + }, + { + "id": "62374", + "name": "Bombay", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.11780000", + "longitude": "-77.44940000" + }, + { + "id": "62407", + "name": "Butt-Up", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97313000", + "longitude": "-77.57777000" + }, + { + "id": "62437", + "name": "Cedar Grove", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01225000", + "longitude": "-77.49630000" + }, + { + "id": "62444", + "name": "Chantilly", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10447000", + "longitude": "-77.46625000" + }, + { + "id": "62453", + "name": "Christiana", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18015000", + "longitude": "-77.49045000" + }, + { + "id": "62454", + "name": "Chudleigh", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15148000", + "longitude": "-77.50707000" + }, + { + "id": "62460", + "name": "Cobbla", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14060000", + "longitude": "-77.46998000" + }, + { + "id": "62465", + "name": "Coleyville", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19993000", + "longitude": "-77.51924000" + }, + { + "id": "62467", + "name": "Comfort", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05390000", + "longitude": "-77.42477000" + }, + { + "id": "62470", + "name": "Comfort Hall", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18789000", + "longitude": "-77.61041000" + }, + { + "id": "62474", + "name": "Content", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07444000", + "longitude": "-77.45116000" + }, + { + "id": "62486", + "name": "Craig Head", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23658000", + "longitude": "-77.56295000" + }, + { + "id": "62492", + "name": "Cross Keys", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.90727000", + "longitude": "-77.50111000" + }, + { + "id": "62510", + "name": "Devon", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16595000", + "longitude": "-77.52507000" + }, + { + "id": "62517", + "name": "Downs", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95004000", + "longitude": "-77.57313000" + }, + { + "id": "62536", + "name": "Ellen Street", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96796000", + "longitude": "-77.43931000" + }, + { + "id": "62543", + "name": "Evergreen", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15096000", + "longitude": "-77.59965000" + }, + { + "id": "62547", + "name": "Fairfield", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03117000", + "longitude": "-77.57535000" + }, + { + "id": "62571", + "name": "French Park", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95572000", + "longitude": "-77.54471000" + }, + { + "id": "62581", + "name": "George's Valley", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03172000", + "longitude": "-77.48081000" + }, + { + "id": "62595", + "name": "Good Intent", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20806000", + "longitude": "-77.57086000" + }, + { + "id": "62613", + "name": "Greenvale", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03928000", + "longitude": "-77.53239000" + }, + { + "id": "62617", + "name": "Grove Place", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10467000", + "longitude": "-77.52923000" + }, + { + "id": "62618", + "name": "Grove Town", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88606000", + "longitude": "-77.45882000" + }, + { + "id": "62633", + "name": "Harmons", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98171000", + "longitude": "-77.41208000" + }, + { + "id": "62635", + "name": "Harry Watch", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17314000", + "longitude": "-77.57611000" + }, + { + "id": "62636", + "name": "Hatfield", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01557000", + "longitude": "-77.54009000" + }, + { + "id": "62641", + "name": "Heartease", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04878000", + "longitude": "-77.48238000" + }, + { + "id": "62646", + "name": "Hibernia", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17575000", + "longitude": "-77.54830000" + }, + { + "id": "62659", + "name": "Huntley", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.06647000", + "longitude": "-77.58171000" + }, + { + "id": "62686", + "name": "Kendal", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08318000", + "longitude": "-77.50320000" + }, + { + "id": "62697", + "name": "Knockpatrick", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99027000", + "longitude": "-77.49270000" + }, + { + "id": "62701", + "name": "Lancaster", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.93603000", + "longitude": "-77.46134000" + }, + { + "id": "62716", + "name": "Litchfield", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13502000", + "longitude": "-77.52448000" + }, + { + "id": "62740", + "name": "Maidstone", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10165000", + "longitude": "-77.57284000" + }, + { + "id": "62745", + "name": "Mandeville", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04168000", + "longitude": "-77.50714000" + }, + { + "id": "62746", + "name": "Mandeville Proper", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04453000", + "longitude": "-77.50574000" + }, + { + "id": "62753", + "name": "Marlie Hill", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.86692000", + "longitude": "-77.50835000" + }, + { + "id": "62763", + "name": "May Day", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00951000", + "longitude": "-77.47606000" + }, + { + "id": "62769", + "name": "Medina", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.12236000", + "longitude": "-77.59643000" + }, + { + "id": "62773", + "name": "Mike Town", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04253000", + "longitude": "-77.55490000" + }, + { + "id": "62775", + "name": "Mile Gully", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13395000", + "longitude": "-77.56556000" + }, + { + "id": "62813", + "name": "New Forest", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92010000", + "longitude": "-77.55867000" + }, + { + "id": "62814", + "name": "New Green", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07663000", + "longitude": "-77.52569000" + }, + { + "id": "62824", + "name": "Newport", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96293000", + "longitude": "-77.50486000" + }, + { + "id": "62837", + "name": "Old England", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98503000", + "longitude": "-77.46017000" + }, + { + "id": "62856", + "name": "Part Of Banana Ground", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07912000", + "longitude": "-77.42134000" + }, + { + "id": "62857", + "name": "Part Of Gutters", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00642000", + "longitude": "-77.57903000" + }, + { + "id": "62864", + "name": "Part of Spaldings", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15819000", + "longitude": "-77.46627000" + }, + { + "id": "62882", + "name": "Pike", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23229000", + "longitude": "-77.53790000" + }, + { + "id": "62887", + "name": "Plowden", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89178000", + "longitude": "-77.53846000" + }, + { + "id": "62900", + "name": "Porus", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03535000", + "longitude": "-77.41166000" + }, + { + "id": "62905", + "name": "Prospect", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98244000", + "longitude": "-77.56775000" + }, + { + "id": "62929", + "name": "Richmond", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02560000", + "longitude": "-77.46337000" + }, + { + "id": "62941", + "name": "Robins Hall", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20405000", + "longitude": "-77.55007000" + }, + { + "id": "62953", + "name": "Rose Hill", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92471000", + "longitude": "-77.52340000" + }, + { + "id": "62958", + "name": "Royal Flat", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04965000", + "longitude": "-77.46830000" + }, + { + "id": "62978", + "name": "Scotts Pass", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99920000", + "longitude": "-77.39820000" + }, + { + "id": "63000", + "name": "Snowdon", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94198000", + "longitude": "-77.49137000" + }, + { + "id": "63002", + "name": "Somerset", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08036000", + "longitude": "-77.54306000" + }, + { + "id": "63014", + "name": "Spring Ground", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16233000", + "longitude": "-77.47977000" + }, + { + "id": "63018", + "name": "Spur Tree", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00650000", + "longitude": "-77.55664000" + }, + { + "id": "63025", + "name": "St. Paul's", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13144000", + "longitude": "-77.61200000" + }, + { + "id": "63043", + "name": "Swaby's Hope", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98608000", + "longitude": "-77.53326000" + }, + { + "id": "63055", + "name": "Top Hill", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.11622000", + "longitude": "-77.50344000" + }, + { + "id": "63076", + "name": "Victoria Town", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "17.90472000", + "longitude": "-77.37795000" + }, + { + "id": "63080", + "name": "Walderston", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.11637000", + "longitude": "-77.48614000" + }, + { + "id": "63092", + "name": "Watham", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00675000", + "longitude": "-77.51873000" + }, + { + "id": "63107", + "name": "Williamsfield", + "state_id": 3754, + "state_code": "12", + "country_id": 108, + "country_code": "JM", + "latitude": "18.06664000", + "longitude": "-77.46582000" + }, + { + "id": "62327", + "name": "Balcarres", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16735000", + "longitude": "-76.72061000" + }, + { + "id": "62330", + "name": "Bangor Ridge", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13637000", + "longitude": "-76.68903000" + }, + { + "id": "62351", + "name": "Belvedere", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20772000", + "longitude": "-76.69671000" + }, + { + "id": "62362", + "name": "Black Hill", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21786000", + "longitude": "-76.59758000" + }, + { + "id": "62378", + "name": "Boundbrook", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17573000", + "longitude": "-76.47079000" + }, + { + "id": "62388", + "name": "Breastworks", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16000000", + "longitude": "-76.46612000" + }, + { + "id": "62399", + "name": "Buff Bay", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23287000", + "longitude": "-76.66118000" + }, + { + "id": "62408", + "name": "Bybrook", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14641000", + "longitude": "-76.65726000" + }, + { + "id": "62423", + "name": "Cascade", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09377000", + "longitude": "-76.71223000" + }, + { + "id": "62427", + "name": "Castle Comfort", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14217000", + "longitude": "-76.34634000" + }, + { + "id": "62440", + "name": "Central Port Antonio", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18763000", + "longitude": "-76.45343000" + }, + { + "id": "62447", + "name": "Charles Town", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20526000", + "longitude": "-76.66390000" + }, + { + "id": "62458", + "name": "Claverty Cottage", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14876000", + "longitude": "-76.63923000" + }, + { + "id": "62468", + "name": "Comfort Castle", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04833000", + "longitude": "-76.41614000" + }, + { + "id": "62518", + "name": "Drapers", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17121000", + "longitude": "-76.40612000" + }, + { + "id": "62528", + "name": "Durham", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08566000", + "longitude": "-76.51562000" + }, + { + "id": "62548", + "name": "Fairy Hill", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16508000", + "longitude": "-76.36595000" + }, + { + "id": "62552", + "name": "Fellowship", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.12783000", + "longitude": "-76.47202000" + }, + { + "id": "62575", + "name": "Fruitfulvale", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10891000", + "longitude": "-76.58617000" + }, + { + "id": "62642", + "name": "Hectors River", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00089000", + "longitude": "-76.27055000" + }, + { + "id": "62652", + "name": "Hope Bay", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18754000", + "longitude": "-76.57579000" + }, + { + "id": "62687", + "name": "Kensington", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.06765000", + "longitude": "-76.30053000" + }, + { + "id": "62724", + "name": "Long Bay", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08581000", + "longitude": "-76.32515000" + }, + { + "id": "62726", + "name": "Long Road", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00864000", + "longitude": "-76.29482000" + }, + { + "id": "62744", + "name": "Manchioneal", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04444000", + "longitude": "-76.27735000" + }, + { + "id": "62787", + "name": "Moore Town", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07767000", + "longitude": "-76.42577000" + }, + { + "id": "62800", + "name": "Mount Pleasant", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16325000", + "longitude": "-76.50472000" + }, + { + "id": "62829", + "name": "Nonsuch", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13819000", + "longitude": "-76.40467000" + }, + { + "id": "62832", + "name": "Norwich", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18819000", + "longitude": "-76.47705000" + }, + { + "id": "62843", + "name": "Orange Bay", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20306000", + "longitude": "-76.62250000" + }, + { + "id": "62892", + "name": "Port Antonio", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17615000", + "longitude": "-76.45090000" + }, + { + "id": "62904", + "name": "Prospect", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17481000", + "longitude": "-76.43550000" + }, + { + "id": "62943", + "name": "Rock Hall", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16170000", + "longitude": "-76.53050000" + }, + { + "id": "62989", + "name": "Sherwood Forest", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15428000", + "longitude": "-76.37821000" + }, + { + "id": "62990", + "name": "Shirley Castle", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15657000", + "longitude": "-76.61112000" + }, + { + "id": "62994", + "name": "Skibo", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17318000", + "longitude": "-76.62752000" + }, + { + "id": "62999", + "name": "Snow Hill", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19474000", + "longitude": "-76.49350000" + }, + { + "id": "63015", + "name": "Spring Hill", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.12591000", + "longitude": "-76.72909000" + }, + { + "id": "63024", + "name": "St. Margaret's Bay", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19084000", + "longitude": "-76.52888000" + }, + { + "id": "63045", + "name": "Swift River", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15770000", + "longitude": "-76.57869000" + }, + { + "id": "63060", + "name": "Tranquility", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18028000", + "longitude": "-76.68150000" + }, + { + "id": "63113", + "name": "Windsor", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10673000", + "longitude": "-76.44631000" + }, + { + "id": "63114", + "name": "Windsor Castle", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24888000", + "longitude": "-76.69029000" + }, + { + "id": "63115", + "name": "Windsor Forest", + "state_id": 3752, + "state_code": "04", + "country_id": 108, + "country_code": "JM", + "latitude": "18.12057000", + "longitude": "-76.33876000" + }, + { + "id": "62316", + "name": "Arcadia", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03737000", + "longitude": "-76.78201000" + }, + { + "id": "62317", + "name": "Arlene Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03713000", + "longitude": "-76.81791000" + }, + { + "id": "62318", + "name": "Arnett Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99150000", + "longitude": "-76.79829000" + }, + { + "id": "62324", + "name": "August Town", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99556000", + "longitude": "-76.73673000" + }, + { + "id": "62334", + "name": "Barbican", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03549000", + "longitude": "-76.76987000" + }, + { + "id": "62357", + "name": "Beverley Hills", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00833000", + "longitude": "-76.76208000" + }, + { + "id": "62361", + "name": "Bito", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97363000", + "longitude": "-76.66625000" + }, + { + "id": "62365", + "name": "Bloxborough", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99581000", + "longitude": "-76.64767000" + }, + { + "id": "62377", + "name": "Boucher Park", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00344000", + "longitude": "-76.81257000" + }, + { + "id": "62385", + "name": "Brandon Hill", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14822000", + "longitude": "-76.80513000" + }, + { + "id": "62400", + "name": "Bull Bay\/ Seven Mile", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95247000", + "longitude": "-76.68404000" + }, + { + "id": "62417", + "name": "Cane River", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98098000", + "longitude": "-76.68624000" + }, + { + "id": "62426", + "name": "Cassia Park", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02047000", + "longitude": "-76.80665000" + }, + { + "id": "62433", + "name": "Cavaliers", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09677000", + "longitude": "-76.84321000" + }, + { + "id": "62450", + "name": "Cherry Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04963000", + "longitude": "-76.77867000" + }, + { + "id": "62461", + "name": "Cockburn Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00357000", + "longitude": "-76.82435000" + }, + { + "id": "62471", + "name": "Constant Spring", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05078000", + "longitude": "-76.79372000" + }, + { + "id": "62472", + "name": "Constant Spring Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02942000", + "longitude": "-76.79956000" + }, + { + "id": "62473", + "name": "Constitution Hill", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01488000", + "longitude": "-76.70515000" + }, + { + "id": "62476", + "name": "Content Gap", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04082000", + "longitude": "-76.69070000" + }, + { + "id": "62478", + "name": "Cooreville Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02244000", + "longitude": "-76.84852000" + }, + { + "id": "62493", + "name": "Cross Roads", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99454000", + "longitude": "-76.78810000" + }, + { + "id": "62499", + "name": "Dallas", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98463000", + "longitude": "-76.71256000" + }, + { + "id": "62506", + "name": "Delacree Park\/ Union Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99210000", + "longitude": "-76.82240000" + }, + { + "id": "62507", + "name": "Delacree Pen", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99579000", + "longitude": "-76.81709000" + }, + { + "id": "62519", + "name": "Drewsland", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02381000", + "longitude": "-76.82626000" + }, + { + "id": "62520", + "name": "Drumblair", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02354000", + "longitude": "-76.78759000" + }, + { + "id": "62523", + "name": "Duhaney Park", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03086000", + "longitude": "-76.84617000" + }, + { + "id": "62531", + "name": "Eastwood Park Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01891000", + "longitude": "-76.80072000" + }, + { + "id": "62537", + "name": "Elleston Flats\/ Mona Commons", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00945000", + "longitude": "-76.74034000" + }, + { + "id": "62554", + "name": "Ferry", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02771000", + "longitude": "-76.86720000" + }, + { + "id": "62562", + "name": "Forest Hills Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03848000", + "longitude": "-76.82868000" + }, + { + "id": "62563", + "name": "Forest Hills\/ Plantation Height", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04300000", + "longitude": "-76.85140000" + }, + { + "id": "62594", + "name": "Golden Spring", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09446000", + "longitude": "-76.79727000" + }, + { + "id": "62598", + "name": "Gordon Town", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03762000", + "longitude": "-76.72353000" + }, + { + "id": "62603", + "name": "Grants Pen", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03258000", + "longitude": "-76.78887000" + }, + { + "id": "62614", + "name": "Greenwich Town\/ Newport West", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98438000", + "longitude": "-76.82559000" + }, + { + "id": "62623", + "name": "Half Way Tree", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01248000", + "longitude": "-76.79928000" + }, + { + "id": "62624", + "name": "Half-Way-Tree", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01259000", + "longitude": "-76.79582000" + }, + { + "id": "62630", + "name": "Harbour View", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95146000", + "longitude": "-76.71662000" + }, + { + "id": "62637", + "name": "Havendale", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05429000", + "longitude": "-76.80870000" + }, + { + "id": "62644", + "name": "Hermitage", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98351000", + "longitude": "-76.74102000" + }, + { + "id": "62653", + "name": "Hope Pastures\/ UTECH", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02306000", + "longitude": "-76.74987000" + }, + { + "id": "62654", + "name": "Hope Tavern", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01233000", + "longitude": "-76.73202000" + }, + { + "id": "62658", + "name": "Hughenden", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03037000", + "longitude": "-76.81728000" + }, + { + "id": "62663", + "name": "Irish Town", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.06234000", + "longitude": "-76.70262000" + }, + { + "id": "62667", + "name": "Jacks Hill", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03872000", + "longitude": "-76.74892000" + }, + { + "id": "62681", + "name": "Jones Town", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98422000", + "longitude": "-76.79691000" + }, + { + "id": "62684", + "name": "Kencot", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00041000", + "longitude": "-76.79835000" + }, + { + "id": "62695", + "name": "Kintyre", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02133000", + "longitude": "-76.72688000" + }, + { + "id": "62703", + "name": "Lawrence Tavern", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13742000", + "longitude": "-76.84736000" + }, + { + "id": "62708", + "name": "Liguanea", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02097000", + "longitude": "-76.76827000" + }, + { + "id": "62741", + "name": "Majestic Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00023000", + "longitude": "-76.83295000" + }, + { + "id": "62749", + "name": "Mannings Hill", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07052000", + "longitude": "-76.81288000" + }, + { + "id": "62750", + "name": "Mannings Hill (Rural)", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08169000", + "longitude": "-76.82328000" + }, + { + "id": "62757", + "name": "Marverley", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02676000", + "longitude": "-76.82652000" + }, + { + "id": "62759", + "name": "Maryland", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05166000", + "longitude": "-76.74320000" + }, + { + "id": "62761", + "name": "Mavis Bank", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03333000", + "longitude": "-76.66667000" + }, + { + "id": "62762", + "name": "Maxfield Park", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99937000", + "longitude": "-76.80800000" + }, + { + "id": "62766", + "name": "Meadowbrook", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04708000", + "longitude": "-76.81553000" + }, + { + "id": "62767", + "name": "Meadowbrook Estate", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03738000", + "longitude": "-76.82964000" + }, + { + "id": "62780", + "name": "Molynes Four Roads", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01035000", + "longitude": "-76.81112000" + }, + { + "id": "62781", + "name": "Molynes Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01980000", + "longitude": "-76.81621000" + }, + { + "id": "62782", + "name": "Mona Heights", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01331000", + "longitude": "-76.75086000" + }, + { + "id": "62796", + "name": "Mount James", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.12069000", + "longitude": "-76.77394000" + }, + { + "id": "62804", + "name": "Mountain View Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99186000", + "longitude": "-76.76070000" + }, + { + "id": "62810", + "name": "Nannyville", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99677000", + "longitude": "-76.76949000" + }, + { + "id": "62815", + "name": "New Haven", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02953000", + "longitude": "-76.85425000" + }, + { + "id": "62816", + "name": "New Kingston", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00747000", + "longitude": "-76.78319000" + }, + { + "id": "62830", + "name": "Norbrook", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05483000", + "longitude": "-76.78498000" + }, + { + "id": "62834", + "name": "Oaklands", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03558000", + "longitude": "-76.79563000" + }, + { + "id": "62851", + "name": "Papine", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01536000", + "longitude": "-76.73868000" + }, + { + "id": "62853", + "name": "Parks Road", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09802000", + "longitude": "-76.85941000" + }, + { + "id": "62867", + "name": "Patrick City", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03185000", + "longitude": "-76.83774000" + }, + { + "id": "62874", + "name": "Pembroke Hall", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03113000", + "longitude": "-76.83003000" + }, + { + "id": "62876", + "name": "Penwood", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01952000", + "longitude": "-76.83094000" + }, + { + "id": "62908", + "name": "Queensborough\/ Tunbridge", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04289000", + "longitude": "-76.82119000" + }, + { + "id": "62917", + "name": "Red Hills (Rural)", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.06777000", + "longitude": "-76.86093000" + }, + { + "id": "62918", + "name": "Red Hills Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03000000", + "longitude": "-76.80994000" + }, + { + "id": "62919", + "name": "Red Hills\/ Sterling Castle", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05946000", + "longitude": "-76.84028000" + }, + { + "id": "62931", + "name": "Richmond Park", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00560000", + "longitude": "-76.80464000" + }, + { + "id": "62938", + "name": "Riverton City", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01443000", + "longitude": "-76.84897000" + }, + { + "id": "62947", + "name": "Roehampton", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04320000", + "longitude": "-76.80841000" + }, + { + "id": "62955", + "name": "Rose Town", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98697000", + "longitude": "-76.80726000" + }, + { + "id": "62982", + "name": "Seaview Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00619000", + "longitude": "-76.84106000" + }, + { + "id": "62983", + "name": "Seaward Pen", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01900000", + "longitude": "-76.82368000" + }, + { + "id": "62986", + "name": "Seymour Lands", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01291000", + "longitude": "-76.77706000" + }, + { + "id": "63026", + "name": "St. Peter's", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07881000", + "longitude": "-76.67202000" + }, + { + "id": "63028", + "name": "Stadium Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99501000", + "longitude": "-76.77644000" + }, + { + "id": "63033", + "name": "Stony Hill", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07916000", + "longitude": "-76.78473000" + }, + { + "id": "63044", + "name": "Swallowfield", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00486000", + "longitude": "-76.77439000" + }, + { + "id": "63047", + "name": "Temple Hall", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10471000", + "longitude": "-76.81818000" + }, + { + "id": "63051", + "name": "Three Oaks\/ Glendale", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03128000", + "longitude": "-76.82447000" + }, + { + "id": "63056", + "name": "Tower Hill", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01183000", + "longitude": "-76.82807000" + }, + { + "id": "63059", + "name": "Trafalgar Park", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01280000", + "longitude": "-76.78465000" + }, + { + "id": "63063", + "name": "Trench Town", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98743000", + "longitude": "-76.80118000" + }, + { + "id": "63074", + "name": "University", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00094000", + "longitude": "-76.74769000" + }, + { + "id": "63077", + "name": "Vineyard Town", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98690000", + "longitude": "-76.77059000" + }, + { + "id": "63082", + "name": "Waltham Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01085000", + "longitude": "-76.82049000" + }, + { + "id": "63085", + "name": "Washington Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02174000", + "longitude": "-76.84020000" + }, + { + "id": "63090", + "name": "Waterhouse", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01231000", + "longitude": "-76.83505000" + }, + { + "id": "63102", + "name": "Whitehall", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03838000", + "longitude": "-76.80583000" + }, + { + "id": "63104", + "name": "Whitfield Town", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99212000", + "longitude": "-76.80910000" + }, + { + "id": "63111", + "name": "Wilton Gardens\/ Rema", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98287000", + "longitude": "-76.80422000" + }, + { + "id": "63117", + "name": "Woodford", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07362000", + "longitude": "-76.74632000" + }, + { + "id": "63118", + "name": "Woodford Park", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98712000", + "longitude": "-76.78117000" + }, + { + "id": "63128", + "name": "Zaidie Gardens", + "state_id": 3751, + "state_code": "02", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02566000", + "longitude": "-76.80978000" + }, + { + "id": "62291", + "name": "Aboukir", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25090000", + "longitude": "-77.34327000" + }, + { + "id": "62300", + "name": "Alderton", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28706000", + "longitude": "-77.20832000" + }, + { + "id": "62301", + "name": "Alexandria", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.30411000", + "longitude": "-77.35311000" + }, + { + "id": "62308", + "name": "Alva", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29679000", + "longitude": "-77.31717000" + }, + { + "id": "62329", + "name": "Bamboo", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39216000", + "longitude": "-77.26429000" + }, + { + "id": "62345", + "name": "Beecher Town", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38465000", + "longitude": "-77.11617000" + }, + { + "id": "62352", + "name": "Bensonton", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22315000", + "longitude": "-77.20861000" + }, + { + "id": "62364", + "name": "Blackstonedge", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27357000", + "longitude": "-77.04254000" + }, + { + "id": "62373", + "name": "Bohemia", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21239000", + "longitude": "-77.46954000" + }, + { + "id": "62376", + "name": "Borobridge", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19779000", + "longitude": "-77.42755000" + }, + { + "id": "62396", + "name": "Browns Town", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38464000", + "longitude": "-77.35286000" + }, + { + "id": "62412", + "name": "Calderwood", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25641000", + "longitude": "-77.27144000" + }, + { + "id": "62424", + "name": "Cascade", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23209000", + "longitude": "-77.46255000" + }, + { + "id": "62435", + "name": "Cave Valley", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23268000", + "longitude": "-77.36337000" + }, + { + "id": "62442", + "name": "Chalky Hill", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37964000", + "longitude": "-77.17520000" + }, + { + "id": "62451", + "name": "Chester", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44786000", + "longitude": "-77.26503000" + }, + { + "id": "62456", + "name": "Claremont", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32556000", + "longitude": "-77.20643000" + }, + { + "id": "62464", + "name": "Cole Gate", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37967000", + "longitude": "-77.08518000" + }, + { + "id": "62477", + "name": "Content Garden", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40977000", + "longitude": "-77.07540000" + }, + { + "id": "62494", + "name": "Cuffie Ridge", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22793000", + "longitude": "-77.42054000" + }, + { + "id": "62514", + "name": "Discovery Bay", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43725000", + "longitude": "-77.41815000" + }, + { + "id": "62542", + "name": "Epworth", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.36083000", + "longitude": "-77.13342000" + }, + { + "id": "62545", + "name": "Exchange", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37265000", + "longitude": "-77.06572000" + }, + { + "id": "62549", + "name": "Faith's Pen", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22963000", + "longitude": "-77.08804000" + }, + { + "id": "62583", + "name": "Gibraltar", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.35079000", + "longitude": "-77.42142000" + }, + { + "id": "62593", + "name": "Golden Grove", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32956000", + "longitude": "-77.12256000" + }, + { + "id": "62607", + "name": "Great Pond", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40227000", + "longitude": "-77.08511000" + }, + { + "id": "62647", + "name": "Higgin Land", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34119000", + "longitude": "-77.27072000" + }, + { + "id": "62650", + "name": "Hinds Town", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.35425000", + "longitude": "-77.09812000" + }, + { + "id": "62662", + "name": "Inverness", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27531000", + "longitude": "-77.36862000" + }, + { + "id": "62710", + "name": "Lime Hall", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39742000", + "longitude": "-77.21051000" + }, + { + "id": "62711", + "name": "Lime Tree Gardens", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34545000", + "longitude": "-77.38645000" + }, + { + "id": "62714", + "name": "Linton Park", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.26081000", + "longitude": "-77.42221000" + }, + { + "id": "62737", + "name": "Macknie", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21191000", + "longitude": "-77.28016000" + }, + { + "id": "62738", + "name": "Madras", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29112000", + "longitude": "-77.44875000" + }, + { + "id": "62751", + "name": "Mansfield", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40265000", + "longitude": "-77.09488000" + }, + { + "id": "62783", + "name": "Moneague", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28307000", + "longitude": "-77.13855000" + }, + { + "id": "62798", + "name": "Mount Moriah", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20617000", + "longitude": "-77.44094000" + }, + { + "id": "62803", + "name": "Mount Zion", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43377000", + "longitude": "-77.28028000" + }, + { + "id": "62835", + "name": "Ocho Rios", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40760000", + "longitude": "-77.10312000" + }, + { + "id": "62855", + "name": "Parry Town", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38359000", + "longitude": "-77.10345000" + }, + { + "id": "62881", + "name": "Philadelphia", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40005000", + "longitude": "-77.32735000" + }, + { + "id": "62883", + "name": "Pimento Walk", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39578000", + "longitude": "-77.11383000" + }, + { + "id": "62903", + "name": "Priory", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43660000", + "longitude": "-77.24551000" + }, + { + "id": "62935", + "name": "River Head", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.26030000", + "longitude": "-77.07782000" + }, + { + "id": "62959", + "name": "Runaway Bay", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45962000", + "longitude": "-77.33570000" + }, + { + "id": "62962", + "name": "Saint Ann’s Bay", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43581000", + "longitude": "-77.20098000" + }, + { + "id": "63019", + "name": "St. Ann's Bay", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.42989000", + "longitude": "-77.20775000" + }, + { + "id": "63020", + "name": "St. D'Acre", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33300000", + "longitude": "-77.36297000" + }, + { + "id": "63029", + "name": "Steer Town", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.42852000", + "longitude": "-77.17101000" + }, + { + "id": "63037", + "name": "Sturge Town", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.41631000", + "longitude": "-77.31988000" + }, + { + "id": "63081", + "name": "Walkers Wood", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.31939000", + "longitude": "-77.07082000" + }, + { + "id": "63093", + "name": "Watt Town", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29427000", + "longitude": "-77.41466000" + }, + { + "id": "63126", + "name": "York Castle", + "state_id": 3744, + "state_code": "06", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27515000", + "longitude": "-77.22923000" + }, + { + "id": "62292", + "name": "Above Rocks", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.11432000", + "longitude": "-76.87590000" + }, + { + "id": "62338", + "name": "Bartons", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02895000", + "longitude": "-77.13322000" + }, + { + "id": "62348", + "name": "Bellas Gate", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04715000", + "longitude": "-77.14906000" + }, + { + "id": "62369", + "name": "Bog Walk", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10205000", + "longitude": "-77.00541000" + }, + { + "id": "62372", + "name": "Bogwalk", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10468000", + "longitude": "-76.98792000" + }, + { + "id": "62382", + "name": "Braeton", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94174000", + "longitude": "-76.88635000" + }, + { + "id": "62389", + "name": "Bridgeport", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96264000", + "longitude": "-76.87809000" + }, + { + "id": "62395", + "name": "Browns Hill", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05358000", + "longitude": "-77.11855000" + }, + { + "id": "62436", + "name": "Caymanas", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03824000", + "longitude": "-76.89833000" + }, + { + "id": "62441", + "name": "Central Village", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99992000", + "longitude": "-76.92393000" + }, + { + "id": "62488", + "name": "Crescent", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03621000", + "longitude": "-76.97626000" + }, + { + "id": "62490", + "name": "Cromarty", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95840000", + "longitude": "-76.98457000" + }, + { + "id": "62495", + "name": "Cumberland", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97650000", + "longitude": "-76.88208000" + }, + { + "id": "62532", + "name": "Edgewater", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96448000", + "longitude": "-76.86547000" + }, + { + "id": "62540", + "name": "Ensom", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01778000", + "longitude": "-76.96221000" + }, + { + "id": "62544", + "name": "Ewarton", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18333000", + "longitude": "-77.08536000" + }, + { + "id": "62587", + "name": "Ginger Ridge", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.07688000", + "longitude": "-77.16865000" + }, + { + "id": "62589", + "name": "Glengoffe", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15214000", + "longitude": "-76.89057000" + }, + { + "id": "62591", + "name": "Golden Acres", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01950000", + "longitude": "-76.98040000" + }, + { + "id": "62609", + "name": "Greater Portmore", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95228000", + "longitude": "-76.91133000" + }, + { + "id": "62612", + "name": "Greendale", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01251000", + "longitude": "-76.94831000" + }, + { + "id": "62616", + "name": "Gregory Park", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99490000", + "longitude": "-76.88302000" + }, + { + "id": "62628", + "name": "Hampton Green", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00544000", + "longitude": "-76.96818000" + }, + { + "id": "62631", + "name": "Harewood", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17277000", + "longitude": "-76.94395000" + }, + { + "id": "62632", + "name": "Harkers Hall", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13149000", + "longitude": "-76.91350000" + }, + { + "id": "62643", + "name": "Hellshire", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89669000", + "longitude": "-76.96187000" + }, + { + "id": "62660", + "name": "Independence City", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97783000", + "longitude": "-76.87498000" + }, + { + "id": "62689", + "name": "Keystone", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01652000", + "longitude": "-76.93525000" + }, + { + "id": "62696", + "name": "Kitson Town", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03487000", + "longitude": "-77.04028000" + }, + { + "id": "62713", + "name": "Linstead", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13683000", + "longitude": "-77.03171000" + }, + { + "id": "62722", + "name": "Lluidas Vale", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14977000", + "longitude": "-77.16853000" + }, + { + "id": "62808", + "name": "Naggo Head", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96415000", + "longitude": "-76.88820000" + }, + { + "id": "62838", + "name": "Old Harbour", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94144000", + "longitude": "-77.10898000" + }, + { + "id": "62839", + "name": "Old Harbour Bay", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.90918000", + "longitude": "-77.09718000" + }, + { + "id": "62840", + "name": "Old Harbour Road", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95797000", + "longitude": "-77.02730000" + }, + { + "id": "62860", + "name": "Part of Guys Hill", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24525000", + "longitude": "-76.99081000" + }, + { + "id": "62862", + "name": "Part of Keystone", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03965000", + "longitude": "-76.95113000" + }, + { + "id": "62863", + "name": "Part of Rock Hall", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09119000", + "longitude": "-76.88804000" + }, + { + "id": "62865", + "name": "Passage Fort", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97788000", + "longitude": "-76.86793000" + }, + { + "id": "62870", + "name": "Pear Tree Grove", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22515000", + "longitude": "-76.95293000" + }, + { + "id": "62888", + "name": "Point Hill", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09361000", + "longitude": "-77.10480000" + }, + { + "id": "62898", + "name": "Portmore", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95032000", + "longitude": "-76.88215000" + }, + { + "id": "62920", + "name": "Redwood", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21026000", + "longitude": "-76.98536000" + }, + { + "id": "62937", + "name": "Riversdale", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17802000", + "longitude": "-76.96636000" + }, + { + "id": "62995", + "name": "Sligoville", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08203000", + "longitude": "-76.93991000" + }, + { + "id": "63007", + "name": "Spanish Town", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99107000", + "longitude": "-76.95742000" + }, + { + "id": "63008", + "name": "Spanish Town Central", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98014000", + "longitude": "-76.92294000" + }, + { + "id": "63021", + "name": "St. John's East", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00090000", + "longitude": "-76.97466000" + }, + { + "id": "63022", + "name": "St. John's West", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00539000", + "longitude": "-77.00755000" + }, + { + "id": "63066", + "name": "Troja", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20485000", + "longitude": "-76.93196000" + }, + { + "id": "63089", + "name": "Waterford", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99340000", + "longitude": "-76.86090000" + }, + { + "id": "63091", + "name": "Watermount", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "18.06686000", + "longitude": "-77.09112000" + }, + { + "id": "63095", + "name": "West Cumberland", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97890000", + "longitude": "-76.88662000" + }, + { + "id": "63108", + "name": "Willowdene", + "state_id": 3746, + "state_code": "14", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99189000", + "longitude": "-76.98199000" + }, + { + "id": "62290", + "name": "Aberdeen", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20508000", + "longitude": "-77.67932000" + }, + { + "id": "62293", + "name": "Accompong", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22985000", + "longitude": "-77.74816000" + }, + { + "id": "62303", + "name": "Alligator Pond", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.86932000", + "longitude": "-77.56769000" + }, + { + "id": "62326", + "name": "Balaclava", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17228000", + "longitude": "-77.64375000" + }, + { + "id": "62328", + "name": "Ballards Valley", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.87949000", + "longitude": "-77.63086000" + }, + { + "id": "62333", + "name": "Barbary Hall", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96800000", + "longitude": "-77.77961000" + }, + { + "id": "62360", + "name": "Bigwoods", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.93338000", + "longitude": "-77.71897000" + }, + { + "id": "62363", + "name": "Black River", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02636000", + "longitude": "-77.84873000" + }, + { + "id": "62371", + "name": "Bogue", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13619000", + "longitude": "-77.66970000" + }, + { + "id": "62381", + "name": "Braes River", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09351000", + "longitude": "-77.66487000" + }, + { + "id": "62390", + "name": "Brighton", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14836000", + "longitude": "-77.85604000" + }, + { + "id": "62393", + "name": "Brompton", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.06795000", + "longitude": "-77.88821000" + }, + { + "id": "62401", + "name": "Bull Savanna", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88678000", + "longitude": "-77.59022000" + }, + { + "id": "62402", + "name": "Bull Savannah", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88056000", + "longitude": "-77.59000000" + }, + { + "id": "62405", + "name": "Burnt Savannah", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.03177000", + "longitude": "-77.74936000" + }, + { + "id": "62419", + "name": "Carisbrook", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.14742000", + "longitude": "-77.77367000" + }, + { + "id": "62483", + "name": "Cotterwood", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09492000", + "longitude": "-77.91553000" + }, + { + "id": "62487", + "name": "Crawford", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05060000", + "longitude": "-77.91596000" + }, + { + "id": "62534", + "name": "Elderslie", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22416000", + "longitude": "-77.79381000" + }, + { + "id": "62577", + "name": "Fullerswood", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01527000", + "longitude": "-77.77572000" + }, + { + "id": "62584", + "name": "Giddy Hall", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.09702000", + "longitude": "-77.86764000" + }, + { + "id": "62586", + "name": "Ginger Hill", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19180000", + "longitude": "-77.84867000" + }, + { + "id": "62599", + "name": "Goshen", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04964000", + "longitude": "-77.64136000" + }, + { + "id": "62651", + "name": "Holland", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10358000", + "longitude": "-77.80164000" + }, + { + "id": "62655", + "name": "Hopeton", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95626000", + "longitude": "-77.66239000" + }, + { + "id": "62682", + "name": "Junction", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.91467000", + "longitude": "-77.59894000" + }, + { + "id": "62699", + "name": "Lacovia", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.08844000", + "longitude": "-77.75350000" + }, + { + "id": "62705", + "name": "Leeds", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.01399000", + "longitude": "-77.68374000" + }, + { + "id": "62717", + "name": "Lititz", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94033000", + "longitude": "-77.59511000" + }, + { + "id": "62739", + "name": "Maggotty", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17343000", + "longitude": "-77.76681000" + }, + { + "id": "62743", + "name": "Malvern", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96667000", + "longitude": "-77.70000000" + }, + { + "id": "62770", + "name": "Merrywood", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21793000", + "longitude": "-77.83773000" + }, + { + "id": "62771", + "name": "Middle Quarters", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.11455000", + "longitude": "-77.83808000" + }, + { + "id": "62805", + "name": "Mountainside", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98077000", + "longitude": "-77.74786000" + }, + { + "id": "62806", + "name": "Mulgrave", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21164000", + "longitude": "-77.82018000" + }, + { + "id": "62807", + "name": "Myersville", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99699000", + "longitude": "-77.62425000" + }, + { + "id": "62809", + "name": "Nain", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96526000", + "longitude": "-77.60528000" + }, + { + "id": "62818", + "name": "New Market", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15362000", + "longitude": "-77.90962000" + }, + { + "id": "62823", + "name": "Newell", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92103000", + "longitude": "-77.74653000" + }, + { + "id": "62826", + "name": "Newton", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.11095000", + "longitude": "-77.72352000" + }, + { + "id": "62854", + "name": "Parottee", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96174000", + "longitude": "-77.81774000" + }, + { + "id": "62872", + "name": "Pedro Plains", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88569000", + "longitude": "-77.71337000" + }, + { + "id": "62877", + "name": "Pepper", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02105000", + "longitude": "-77.61284000" + }, + { + "id": "62884", + "name": "Pisgah", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19605000", + "longitude": "-77.88671000" + }, + { + "id": "62889", + "name": "Pondside", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98153000", + "longitude": "-77.79450000" + }, + { + "id": "62902", + "name": "Potsdam", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.91872000", + "longitude": "-77.66869000" + }, + { + "id": "62909", + "name": "Quick Step", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23281000", + "longitude": "-77.67831000" + }, + { + "id": "62915", + "name": "Red Bank", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.93776000", + "longitude": "-77.62585000" + }, + { + "id": "62923", + "name": "Retirement", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20740000", + "longitude": "-77.76698000" + }, + { + "id": "62951", + "name": "Rose Hall", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92654000", + "longitude": "-77.64153000" + }, + { + "id": "62960", + "name": "Russels", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98638000", + "longitude": "-77.65065000" + }, + { + "id": "62971", + "name": "Santa Cruz", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05336000", + "longitude": "-77.69836000" + }, + { + "id": "62976", + "name": "Scholefield", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02375000", + "longitude": "-77.71884000" + }, + { + "id": "62993", + "name": "Siloah", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16334000", + "longitude": "-77.71061000" + }, + { + "id": "62996", + "name": "Slipe", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.05740000", + "longitude": "-77.79687000" + }, + { + "id": "63004", + "name": "Southfield", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88212000", + "longitude": "-77.66988000" + }, + { + "id": "63017", + "name": "Springfield", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17662000", + "longitude": "-77.87392000" + }, + { + "id": "63049", + "name": "Thornton", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19564000", + "longitude": "-77.72246000" + }, + { + "id": "63054", + "name": "Top Hill", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89317000", + "longitude": "-77.63793000" + }, + { + "id": "63062", + "name": "Treasure Beach", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89550000", + "longitude": "-77.76051000" + }, + { + "id": "63083", + "name": "Warminister", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96238000", + "longitude": "-77.63956000" + }, + { + "id": "63086", + "name": "Watchwell", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "17.93876000", + "longitude": "-77.77250000" + }, + { + "id": "63100", + "name": "White Hill", + "state_id": 3743, + "state_code": "11", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15646000", + "longitude": "-77.81067000" + }, + { + "id": "62294", + "name": "Adelphi", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45060000", + "longitude": "-77.78590000" + }, + { + "id": "62298", + "name": "Albion", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.48471000", + "longitude": "-77.91408000" + }, + { + "id": "62312", + "name": "Anchovy", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.41030000", + "longitude": "-77.93166000" + }, + { + "id": "62315", + "name": "Arcadia", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24993000", + "longitude": "-77.79228000" + }, + { + "id": "62337", + "name": "Barrett Town", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.50871000", + "longitude": "-77.79625000" + }, + { + "id": "62358", + "name": "Bickersteth", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.36335000", + "longitude": "-77.93651000" + }, + { + "id": "62370", + "name": "Bogue", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43722000", + "longitude": "-77.92022000" + }, + { + "id": "62386", + "name": "Brandon Hill", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.47767000", + "longitude": "-77.91117000" + }, + { + "id": "62415", + "name": "Cambridge", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.31308000", + "longitude": "-77.89546000" + }, + { + "id": "62418", + "name": "Canterbury", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.47919000", + "longitude": "-77.91655000" + }, + { + "id": "62429", + "name": "Catadupa", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28052000", + "longitude": "-77.86579000" + }, + { + "id": "62430", + "name": "Catherine Hall", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46258000", + "longitude": "-77.92286000" + }, + { + "id": "62431", + "name": "Catherine Mount", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45672000", + "longitude": "-77.89691000" + }, + { + "id": "62469", + "name": "Comfort Hall", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.41270000", + "longitude": "-77.91814000" + }, + { + "id": "62480", + "name": "Coral Gardens", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.50791000", + "longitude": "-77.88034000" + }, + { + "id": "62481", + "name": "Cornwall", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.48930000", + "longitude": "-77.81016000" + }, + { + "id": "62516", + "name": "Down Town Montego Bay", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.47726000", + "longitude": "-77.92031000" + }, + { + "id": "62525", + "name": "Dumfries", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.42973000", + "longitude": "-77.75593000" + }, + { + "id": "62546", + "name": "Fairfield", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45079000", + "longitude": "-77.91235000" + }, + { + "id": "62551", + "name": "Farm Heights", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46869000", + "longitude": "-77.87760000" + }, + { + "id": "62555", + "name": "Flagstaff", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.35412000", + "longitude": "-77.77132000" + }, + { + "id": "62556", + "name": "Flamstead", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.31409000", + "longitude": "-77.81316000" + }, + { + "id": "62557", + "name": "Flankers", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.50265000", + "longitude": "-77.90831000" + }, + { + "id": "62560", + "name": "Flower Hill", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.48426000", + "longitude": "-77.83913000" + }, + { + "id": "62572", + "name": "Friendship", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44590000", + "longitude": "-77.86242000" + }, + { + "id": "62579", + "name": "Garlands", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27811000", + "longitude": "-77.78908000" + }, + { + "id": "62588", + "name": "Glendevon", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.48488000", + "longitude": "-77.89710000" + }, + { + "id": "62597", + "name": "Goodwill", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46950000", + "longitude": "-77.75646000" + }, + { + "id": "62604", + "name": "Granville", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44191000", + "longitude": "-77.89402000" + }, + { + "id": "62611", + "name": "Green Pond", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.47361000", + "longitude": "-77.87779000" + }, + { + "id": "62615", + "name": "Greenwood", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.49768000", + "longitude": "-77.75243000" + }, + { + "id": "62656", + "name": "Hopeton", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39858000", + "longitude": "-77.86826000" + }, + { + "id": "62664", + "name": "Ironshore", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.51323000", + "longitude": "-77.85108000" + }, + { + "id": "62665", + "name": "Irwin", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44949000", + "longitude": "-77.87722000" + }, + { + "id": "62675", + "name": "John's Hall", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.42849000", + "longitude": "-77.85010000" + }, + { + "id": "62709", + "name": "Lilliput", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.50591000", + "longitude": "-77.77686000" + }, + { + "id": "62730", + "name": "Lottery", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.41499000", + "longitude": "-77.80696000" + }, + { + "id": "62742", + "name": "Maldon", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33831000", + "longitude": "-77.80998000" + }, + { + "id": "62754", + "name": "Maroon Town", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34464000", + "longitude": "-77.79544000" + }, + { + "id": "62779", + "name": "Mocho", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29135000", + "longitude": "-77.82580000" + }, + { + "id": "62784", + "name": "Montego Bay", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.47116000", + "longitude": "-77.91883000" + }, + { + "id": "62785", + "name": "Montego Hill", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.48038000", + "longitude": "-77.88150000" + }, + { + "id": "62786", + "name": "Montpelier", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37612000", + "longitude": "-77.91357000" + }, + { + "id": "62794", + "name": "Mount Carey", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38888000", + "longitude": "-77.94374000" + }, + { + "id": "62795", + "name": "Mount Horeb", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33322000", + "longitude": "-77.86675000" + }, + { + "id": "62801", + "name": "Mount Salem", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46601000", + "longitude": "-77.90793000" + }, + { + "id": "62828", + "name": "Niagara", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.26534000", + "longitude": "-77.81879000" + }, + { + "id": "62833", + "name": "Norwood", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.49217000", + "longitude": "-77.88634000" + }, + { + "id": "62842", + "name": "Orange", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45395000", + "longitude": "-77.82779000" + }, + { + "id": "62852", + "name": "Paradise", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.49401000", + "longitude": "-77.90982000" + }, + { + "id": "62885", + "name": "Pitfour", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43206000", + "longitude": "-77.89007000" + }, + { + "id": "62899", + "name": "Porto Bello", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46607000", + "longitude": "-77.86989000" + }, + { + "id": "62914", + "name": "Reading", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43723000", + "longitude": "-77.94730000" + }, + { + "id": "62922", + "name": "Retirement", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43742000", + "longitude": "-77.88004000" + }, + { + "id": "62926", + "name": "Retrieve", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28901000", + "longitude": "-77.90081000" + }, + { + "id": "62948", + "name": "Roehampton", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39897000", + "longitude": "-77.89926000" + }, + { + "id": "62950", + "name": "Rose Hall", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.51228000", + "longitude": "-77.81833000" + }, + { + "id": "62952", + "name": "Rose Heights", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46945000", + "longitude": "-77.89533000" + }, + { + "id": "62954", + "name": "Rose Mount Garden", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46394000", + "longitude": "-77.89397000" + }, + { + "id": "62956", + "name": "Rosemount", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.47484000", + "longitude": "-77.89216000" + }, + { + "id": "62965", + "name": "Salt Spring", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.48687000", + "longitude": "-77.86554000" + }, + { + "id": "62985", + "name": "Seven Rivers", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34702000", + "longitude": "-77.91378000" + }, + { + "id": "63003", + "name": "Somerton", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40496000", + "longitude": "-77.77071000" + }, + { + "id": "63010", + "name": "Spot Valley", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.47869000", + "longitude": "-77.79106000" + }, + { + "id": "63032", + "name": "Stonehenge", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24231000", + "longitude": "-77.85042000" + }, + { + "id": "63039", + "name": "Summer Hill", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37360000", + "longitude": "-77.79350000" + }, + { + "id": "63041", + "name": "Sunderland", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39794000", + "longitude": "-77.82734000" + }, + { + "id": "63046", + "name": "Tangle River", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34337000", + "longitude": "-77.83621000" + }, + { + "id": "63057", + "name": "Tower Hill\/Moy Hall", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44044000", + "longitude": "-77.96022000" + }, + { + "id": "63070", + "name": "Tucker", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44900000", + "longitude": "-77.89438000" + }, + { + "id": "63073", + "name": "Unity Hall", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43304000", + "longitude": "-77.97684000" + }, + { + "id": "63075", + "name": "Vaughnsfield", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32135000", + "longitude": "-77.78051000" + }, + { + "id": "63094", + "name": "Welcome Hall", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.36898000", + "longitude": "-77.83673000" + }, + { + "id": "63097", + "name": "West Green", + "state_id": 3745, + "state_code": "08", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46244000", + "longitude": "-77.91757000" + }, + { + "id": "62309", + "name": "Amiel Town", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34027000", + "longitude": "-76.97612000" + }, + { + "id": "62313", + "name": "Annotto Bay", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27170000", + "longitude": "-76.76523000" + }, + { + "id": "62325", + "name": "Baileys Vale", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34527000", + "longitude": "-76.92593000" + }, + { + "id": "62342", + "name": "Baxter Mountain", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20405000", + "longitude": "-76.77198000" + }, + { + "id": "62347", + "name": "Belfield", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27347000", + "longitude": "-76.83574000" + }, + { + "id": "62375", + "name": "Bonnygate", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32869000", + "longitude": "-76.94606000" + }, + { + "id": "62383", + "name": "Brainerd", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16988000", + "longitude": "-76.86890000" + }, + { + "id": "62392", + "name": "Broadgate", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22847000", + "longitude": "-76.80788000" + }, + { + "id": "62414", + "name": "Camberwell", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23930000", + "longitude": "-76.78088000" + }, + { + "id": "62421", + "name": "Carron Hall", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27797000", + "longitude": "-76.95246000" + }, + { + "id": "62428", + "name": "Castleton", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17618000", + "longitude": "-76.78340000" + }, + { + "id": "62448", + "name": "Charles Town", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38918000", + "longitude": "-77.03978000" + }, + { + "id": "62459", + "name": "Clonmel", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24281000", + "longitude": "-76.83137000" + }, + { + "id": "62511", + "name": "Devon Pen", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21561000", + "longitude": "-76.82440000" + }, + { + "id": "62515", + "name": "Dover", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25534000", + "longitude": "-76.70811000" + }, + { + "id": "62539", + "name": "Enfield", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22036000", + "longitude": "-76.73745000" + }, + { + "id": "62541", + "name": "Epson", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25220000", + "longitude": "-76.72641000" + }, + { + "id": "62559", + "name": "Flint River", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23790000", + "longitude": "-76.92173000" + }, + { + "id": "62568", + "name": "Free Hill", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.35439000", + "longitude": "-76.94317000" + }, + { + "id": "62573", + "name": "Friendship Gap", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19719000", + "longitude": "-76.81960000" + }, + { + "id": "62578", + "name": "Galina", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40265000", + "longitude": "-76.90041000" + }, + { + "id": "62580", + "name": "Gayle", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34278000", + "longitude": "-77.00211000" + }, + { + "id": "62619", + "name": "Guys Hill", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.26243000", + "longitude": "-76.99561000" + }, + { + "id": "62626", + "name": "Hampstead", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32051000", + "longitude": "-76.90477000" + }, + { + "id": "62648", + "name": "Highgate", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27739000", + "longitude": "-76.89554000" + }, + { + "id": "62666", + "name": "Islington", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32160000", + "longitude": "-76.84102000" + }, + { + "id": "62668", + "name": "Jacks River", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37220000", + "longitude": "-76.94101000" + }, + { + "id": "62671", + "name": "Jeffery Town", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28956000", + "longitude": "-77.00343000" + }, + { + "id": "62698", + "name": "Labyrinth", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34419000", + "longitude": "-77.03227000" + }, + { + "id": "62725", + "name": "Long Road", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21337000", + "longitude": "-76.75009000" + }, + { + "id": "62734", + "name": "Lucky Hill", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.30252000", + "longitude": "-77.01678000" + }, + { + "id": "62747", + "name": "Mango Valley", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37481000", + "longitude": "-76.97694000" + }, + { + "id": "62756", + "name": "Martin", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.30118000", + "longitude": "-76.87257000" + }, + { + "id": "62760", + "name": "Mason Hall", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39662000", + "longitude": "-76.92063000" + }, + { + "id": "62774", + "name": "Mile Gully", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.31801000", + "longitude": "-76.96051000" + }, + { + "id": "62841", + "name": "Oracabessa", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40319000", + "longitude": "-76.94641000" + }, + { + "id": "62893", + "name": "Port Maria", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.36849000", + "longitude": "-76.88946000" + }, + { + "id": "62906", + "name": "Prospect", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.41273000", + "longitude": "-77.04119000" + }, + { + "id": "62924", + "name": "Retreat", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37865000", + "longitude": "-77.01590000" + }, + { + "id": "62928", + "name": "Richmond", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21113000", + "longitude": "-76.88301000" + }, + { + "id": "62940", + "name": "Robins Bay", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.31236000", + "longitude": "-76.81783000" + }, + { + "id": "62967", + "name": "Sandside", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33888000", + "longitude": "-76.89551000" + }, + { + "id": "62977", + "name": "Scotts Hall", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19083000", + "longitude": "-76.83942000" + }, + { + "id": "63121", + "name": "Woodpark", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29734000", + "longitude": "-76.98114000" + }, + { + "id": "63122", + "name": "Woodside", + "state_id": 3747, + "state_code": "05", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25258000", + "longitude": "-76.92679000" + }, + { + "id": "62296", + "name": "Airy Castle", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92506000", + "longitude": "-76.34216000" + }, + { + "id": "62299", + "name": "Albion", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.90119000", + "longitude": "-76.60761000" + }, + { + "id": "62311", + "name": "Amity Hall", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96759000", + "longitude": "-76.25698000" + }, + { + "id": "62314", + "name": "Arcadia", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92230000", + "longitude": "-76.30030000" + }, + { + "id": "62332", + "name": "Baptist", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.87666000", + "longitude": "-76.57837000" + }, + { + "id": "62335", + "name": "Barking Lodge", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89279000", + "longitude": "-76.28922000" + }, + { + "id": "62339", + "name": "Bath", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94820000", + "longitude": "-76.34916000" + }, + { + "id": "62355", + "name": "Bethel", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98527000", + "longitude": "-76.58050000" + }, + { + "id": "62438", + "name": "Cedar Valley", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "18.02815000", + "longitude": "-76.59556000" + }, + { + "id": "62455", + "name": "Church Corner", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88718000", + "longitude": "-76.41898000" + }, + { + "id": "62500", + "name": "Dalvey", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.90241000", + "longitude": "-76.25001000" + }, + { + "id": "62502", + "name": "Danvers Pen", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92880000", + "longitude": "-76.47586000" + }, + { + "id": "62522", + "name": "Duckenfield", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92205000", + "longitude": "-76.22657000" + }, + { + "id": "62524", + "name": "Duhaney Pen", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89402000", + "longitude": "-76.43193000" + }, + { + "id": "62529", + "name": "Easington", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92397000", + "longitude": "-76.58824000" + }, + { + "id": "62535", + "name": "Eleven Miles", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.93745000", + "longitude": "-76.64337000" + }, + { + "id": "62561", + "name": "Font Hill", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94055000", + "longitude": "-76.51169000" + }, + { + "id": "62592", + "name": "Golden Grove", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.93361000", + "longitude": "-76.27254000" + }, + { + "id": "62622", + "name": "Hagley Gap", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "18.04845000", + "longitude": "-76.62777000" + }, + { + "id": "62627", + "name": "Hampton Court", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.91782000", + "longitude": "-76.26131000" + }, + { + "id": "62639", + "name": "Hayfield", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98199000", + "longitude": "-76.36841000" + }, + { + "id": "62649", + "name": "Hillside", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99619000", + "longitude": "-76.49082000" + }, + { + "id": "62677", + "name": "Johns Town", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89659000", + "longitude": "-76.36136000" + }, + { + "id": "62678", + "name": "Johnson Mountain", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.98091000", + "longitude": "-76.31986000" + }, + { + "id": "62680", + "name": "Jones Pen", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95068000", + "longitude": "-76.54775000" + }, + { + "id": "62706", + "name": "Leith Hall", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.87973000", + "longitude": "-76.34331000" + }, + { + "id": "62719", + "name": "Llandewey", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94477000", + "longitude": "-76.62245000" + }, + { + "id": "62721", + "name": "Lloyds", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.91504000", + "longitude": "-76.54085000" + }, + { + "id": "62735", + "name": "Lyssons", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88708000", + "longitude": "-76.37961000" + }, + { + "id": "62772", + "name": "Middleton", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.93971000", + "longitude": "-76.43558000" + }, + { + "id": "62789", + "name": "Morant Bay", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.88145000", + "longitude": "-76.40927000" + }, + { + "id": "62797", + "name": "Mount Lebanus", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97544000", + "longitude": "-76.53891000" + }, + { + "id": "62820", + "name": "New Monkland", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99158000", + "longitude": "-76.57333000" + }, + { + "id": "62850", + "name": "Pamphret", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.87570000", + "longitude": "-76.51736000" + }, + { + "id": "62869", + "name": "Pear Tree", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.91162000", + "longitude": "-76.31676000" + }, + { + "id": "62891", + "name": "Poormans Corner", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89152000", + "longitude": "-76.58351000" + }, + { + "id": "62894", + "name": "Port Morant", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89947000", + "longitude": "-76.34286000" + }, + { + "id": "62907", + "name": "Prospect", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.87404000", + "longitude": "-76.34956000" + }, + { + "id": "62912", + "name": "Ramble", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96791000", + "longitude": "-76.62630000" + }, + { + "id": "62925", + "name": "Retreat", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.87760000", + "longitude": "-76.36795000" + }, + { + "id": "62932", + "name": "Richmond Vale", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97435000", + "longitude": "-76.59044000" + }, + { + "id": "62936", + "name": "River Head", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99237000", + "longitude": "-76.61082000" + }, + { + "id": "62957", + "name": "Rowlandsfield", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.97355000", + "longitude": "-76.28781000" + }, + { + "id": "62980", + "name": "Seaforth", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94421000", + "longitude": "-76.45661000" + }, + { + "id": "63001", + "name": "Somerset", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "18.00976000", + "longitude": "-76.54595000" + }, + { + "id": "63011", + "name": "Spring Bank", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95995000", + "longitude": "-76.32596000" + }, + { + "id": "63012", + "name": "Spring Garden", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.91749000", + "longitude": "-76.42978000" + }, + { + "id": "63042", + "name": "Sunning Hill", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95612000", + "longitude": "-76.40931000" + }, + { + "id": "63064", + "name": "Trinity Ville", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.96076000", + "longitude": "-76.51427000" + }, + { + "id": "63065", + "name": "Trinityville", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95720000", + "longitude": "-76.49420000" + }, + { + "id": "63098", + "name": "Wheelerfield", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.95874000", + "longitude": "-76.29623000" + }, + { + "id": "63099", + "name": "White Hall", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.99805000", + "longitude": "-76.43105000" + }, + { + "id": "63101", + "name": "White Horses", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.89620000", + "longitude": "-76.47076000" + }, + { + "id": "63109", + "name": "Wilmington", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92856000", + "longitude": "-76.38962000" + }, + { + "id": "63112", + "name": "Winchester", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.94177000", + "longitude": "-76.29823000" + }, + { + "id": "63124", + "name": "Yallahs", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.87480000", + "longitude": "-76.56245000" + }, + { + "id": "63125", + "name": "York", + "state_id": 3750, + "state_code": "03", + "country_id": 108, + "country_code": "JM", + "latitude": "17.92849000", + "longitude": "-76.43983000" + }, + { + "id": "62297", + "name": "Albert Town", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29434000", + "longitude": "-77.54239000" + }, + { + "id": "62306", + "name": "Alps", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.35498000", + "longitude": "-77.50897000" + }, + { + "id": "62379", + "name": "Bounty Hall", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45801000", + "longitude": "-77.71663000" + }, + { + "id": "62384", + "name": "Brampton", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44262000", + "longitude": "-77.46424000" + }, + { + "id": "62403", + "name": "Bunkers Hill", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.36198000", + "longitude": "-77.68612000" + }, + { + "id": "62457", + "name": "Clarks Town", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.42244000", + "longitude": "-77.53328000" + }, + { + "id": "62501", + "name": "Daniel Town", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46395000", + "longitude": "-77.61592000" + }, + { + "id": "62505", + "name": "Deeside", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.35976000", + "longitude": "-77.73721000" + }, + { + "id": "62521", + "name": "Duanvale", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.40267000", + "longitude": "-77.59615000" + }, + { + "id": "62526", + "name": "Duncans", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46800000", + "longitude": "-77.53633000" + }, + { + "id": "62550", + "name": "Falmouth", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.49358000", + "longitude": "-77.65587000" + }, + { + "id": "62569", + "name": "Freemans Hall", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28384000", + "longitude": "-77.50180000" + }, + { + "id": "62605", + "name": "Granville", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45053000", + "longitude": "-77.68847000" + }, + { + "id": "62625", + "name": "Hampden", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.44217000", + "longitude": "-77.73203000" + }, + { + "id": "62669", + "name": "Jackson Town", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.41781000", + "longitude": "-77.48458000" + }, + { + "id": "62674", + "name": "Joe Hut", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.26742000", + "longitude": "-77.49616000" + }, + { + "id": "62694", + "name": "Kinloss", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39641000", + "longitude": "-77.56968000" + }, + { + "id": "62729", + "name": "Lorrimers", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23026000", + "longitude": "-77.49207000" + }, + { + "id": "62755", + "name": "Martha Brae", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46960000", + "longitude": "-77.65909000" + }, + { + "id": "62878", + "name": "Perth Town", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.43106000", + "longitude": "-77.62583000" + }, + { + "id": "62921", + "name": "Refuge", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45101000", + "longitude": "-77.57751000" + }, + { + "id": "62933", + "name": "Rio Bueno", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.46406000", + "longitude": "-77.48042000" + }, + { + "id": "62963", + "name": "Salt Marsh", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.48423000", + "longitude": "-77.71184000" + }, + { + "id": "62966", + "name": "Samuels Prospect", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45103000", + "longitude": "-77.51440000" + }, + { + "id": "62975", + "name": "Sawyers", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.37880000", + "longitude": "-77.49689000" + }, + { + "id": "62988", + "name": "Sherwood Content", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.38227000", + "longitude": "-77.63643000" + }, + { + "id": "63009", + "name": "Spicy Hill", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.45763000", + "longitude": "-77.54751000" + }, + { + "id": "63013", + "name": "Spring Garden", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29368000", + "longitude": "-77.56698000" + }, + { + "id": "63027", + "name": "St. Vincent", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33424000", + "longitude": "-77.54790000" + }, + { + "id": "63030", + "name": "Stettin", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28224000", + "longitude": "-77.54095000" + }, + { + "id": "63031", + "name": "Stewart Town", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.39887000", + "longitude": "-77.45187000" + }, + { + "id": "63068", + "name": "Troy", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24924000", + "longitude": "-77.60978000" + }, + { + "id": "63072", + "name": "Ulster Spring", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32113000", + "longitude": "-77.49681000" + }, + { + "id": "63078", + "name": "Wait-A-Bit", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25332000", + "longitude": "-77.50837000" + }, + { + "id": "63079", + "name": "Wakefield", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.41460000", + "longitude": "-77.70908000" + }, + { + "id": "63084", + "name": "Warsop", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.26178000", + "longitude": "-77.56774000" + }, + { + "id": "63110", + "name": "Wilson's Run", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28468000", + "longitude": "-77.69323000" + }, + { + "id": "63116", + "name": "Wirefence", + "state_id": 3755, + "state_code": "07", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25310000", + "longitude": "-77.53276000" + }, + { + "id": "62289", + "name": "12th Street", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21097000", + "longitude": "-78.13603000" + }, + { + "id": "62310", + "name": "Amity", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27361000", + "longitude": "-77.89805000" + }, + { + "id": "62320", + "name": "Ashton", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23139000", + "longitude": "-77.92074000" + }, + { + "id": "62336", + "name": "Barneyside", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27670000", + "longitude": "-77.96964000" + }, + { + "id": "62340", + "name": "Bath", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25734000", + "longitude": "-78.11751000" + }, + { + "id": "62341", + "name": "Bath Mountain", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.34428000", + "longitude": "-78.09928000" + }, + { + "id": "62343", + "name": "Beaufort", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23417000", + "longitude": "-77.95007000" + }, + { + "id": "62346", + "name": "Beeston Spring", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16012000", + "longitude": "-77.97545000" + }, + { + "id": "62350", + "name": "Belvedere", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25219000", + "longitude": "-77.93208000" + }, + { + "id": "62353", + "name": "Berkshire", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21293000", + "longitude": "-77.90373000" + }, + { + "id": "62356", + "name": "Bethel Town", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29503000", + "longitude": "-77.95112000" + }, + { + "id": "62359", + "name": "Big Bridge", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23318000", + "longitude": "-78.16717000" + }, + { + "id": "62367", + "name": "Bluefields", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.16602000", + "longitude": "-78.02702000" + }, + { + "id": "62368", + "name": "Bog", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.15631000", + "longitude": "-77.94364000" + }, + { + "id": "62394", + "name": "Broughton", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21747000", + "longitude": "-78.22894000" + }, + { + "id": "62404", + "name": "Burnt Savannah", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.31676000", + "longitude": "-78.12628000" + }, + { + "id": "62411", + "name": "Cairn Curran", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22840000", + "longitude": "-78.01130000" + }, + { + "id": "62413", + "name": "Caledonia", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25866000", + "longitude": "-78.01173000" + }, + { + "id": "62420", + "name": "Carmel", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17326000", + "longitude": "-77.93929000" + }, + { + "id": "62434", + "name": "Cave", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21019000", + "longitude": "-78.04070000" + }, + { + "id": "62445", + "name": "Chantilly", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23059000", + "longitude": "-78.12462000" + }, + { + "id": "62475", + "name": "Content", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18288000", + "longitude": "-77.99915000" + }, + { + "id": "62482", + "name": "Cornwall Mountian", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28722000", + "longitude": "-77.98674000" + }, + { + "id": "62503", + "name": "Darliston", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23731000", + "longitude": "-77.97626000" + }, + { + "id": "62508", + "name": "Delveland", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29709000", + "longitude": "-78.23962000" + }, + { + "id": "62513", + "name": "Dillion Bigwoods", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.20944000", + "longitude": "-77.99078000" + }, + { + "id": "62527", + "name": "Dundee", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23679000", + "longitude": "-77.88698000" + }, + { + "id": "62538", + "name": "Enfield", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21404000", + "longitude": "-77.95270000" + }, + { + "id": "62553", + "name": "Ferris", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22265000", + "longitude": "-78.05588000" + }, + { + "id": "62564", + "name": "Fort Williams", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29834000", + "longitude": "-78.06331000" + }, + { + "id": "62574", + "name": "Frome", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27974000", + "longitude": "-78.14903000" + }, + { + "id": "62576", + "name": "Fullersfield", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.29890000", + "longitude": "-78.19976000" + }, + { + "id": "62582", + "name": "Georges Plain", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27650000", + "longitude": "-78.13118000" + }, + { + "id": "62596", + "name": "Gooden's River", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24223000", + "longitude": "-78.12840000" + }, + { + "id": "62600", + "name": "Grange", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33161000", + "longitude": "-78.08036000" + }, + { + "id": "62601", + "name": "Grange Hill", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33083000", + "longitude": "-78.18398000" + }, + { + "id": "62621", + "name": "Haddo", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28606000", + "longitude": "-78.01893000" + }, + { + "id": "62634", + "name": "Harmony Town", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21987000", + "longitude": "-78.13687000" + }, + { + "id": "62645", + "name": "Hertford", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27181000", + "longitude": "-78.09078000" + }, + { + "id": "62673", + "name": "Jerusalem", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32458000", + "longitude": "-78.21563000" + }, + { + "id": "62688", + "name": "Kentucky", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19931000", + "longitude": "-78.01767000" + }, + { + "id": "62690", + "name": "Kilmarnoch", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.12407000", + "longitude": "-77.92774000" + }, + { + "id": "62700", + "name": "Lambs River", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.26823000", + "longitude": "-77.91414000" + }, + { + "id": "62704", + "name": "Leamington", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21352000", + "longitude": "-77.92743000" + }, + { + "id": "62707", + "name": "Lenox Bigwoods", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21392000", + "longitude": "-77.97214000" + }, + { + "id": "62718", + "name": "Little London", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24523000", + "longitude": "-78.22653000" + }, + { + "id": "62720", + "name": "Llandilo", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23439000", + "longitude": "-78.13895000" + }, + { + "id": "62736", + "name": "Mackfield", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.31163000", + "longitude": "-78.02471000" + }, + { + "id": "62768", + "name": "Mearnsville", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.18856000", + "longitude": "-78.02870000" + }, + { + "id": "62792", + "name": "Mount Airy", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24738000", + "longitude": "-78.32279000" + }, + { + "id": "62802", + "name": "Mount Stewart", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.30411000", + "longitude": "-77.99274000" + }, + { + "id": "62811", + "name": "Negril", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.26844000", + "longitude": "-78.34810000" + }, + { + "id": "62819", + "name": "New Market Oval", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21370000", + "longitude": "-78.13813000" + }, + { + "id": "62821", + "name": "New Roads", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.19124000", + "longitude": "-77.93608000" + }, + { + "id": "62822", + "name": "New Works", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.17248000", + "longitude": "-77.96645000" + }, + { + "id": "62845", + "name": "Orange Hill", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23418000", + "longitude": "-78.30277000" + }, + { + "id": "62868", + "name": "Paul Island", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27200000", + "longitude": "-78.18614000" + }, + { + "id": "62879", + "name": "Petersfield", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.26588000", + "longitude": "-78.05755000" + }, + { + "id": "62880", + "name": "Petersville", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.13700000", + "longitude": "-77.95046000" + }, + { + "id": "62896", + "name": "Porters Mountain", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.32909000", + "longitude": "-78.04910000" + }, + { + "id": "62916", + "name": "Red Hills", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.30550000", + "longitude": "-78.11280000" + }, + { + "id": "62927", + "name": "Revival", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24255000", + "longitude": "-78.28437000" + }, + { + "id": "62939", + "name": "Roaring River", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.30118000", + "longitude": "-78.04324000" + }, + { + "id": "62961", + "name": "Russia", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21649000", + "longitude": "-78.12361000" + }, + { + "id": "62973", + "name": "Savanna-la-Mar", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21895000", + "longitude": "-78.13320000" + }, + { + "id": "62974", + "name": "Savannah-la-mar Business Dist.", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21962000", + "longitude": "-78.13034000" + }, + { + "id": "62979", + "name": "Seaford Town", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.24339000", + "longitude": "-77.90504000" + }, + { + "id": "62981", + "name": "Seaton Crescent", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.21675000", + "longitude": "-78.13603000" + }, + { + "id": "62987", + "name": "Shefield", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.28412000", + "longitude": "-78.29169000" + }, + { + "id": "62991", + "name": "Shoalin Grotto", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22059000", + "longitude": "-78.14019000" + }, + { + "id": "62997", + "name": "Smithfield", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.22275000", + "longitude": "-78.08785000" + }, + { + "id": "63023", + "name": "St. Leonards", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25533000", + "longitude": "-77.88889000" + }, + { + "id": "63034", + "name": "Strathbogie", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23855000", + "longitude": "-78.11714000" + }, + { + "id": "63035", + "name": "Strawberry", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.30676000", + "longitude": "-78.08945000" + }, + { + "id": "63036", + "name": "Struie", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25317000", + "longitude": "-77.95656000" + }, + { + "id": "63050", + "name": "Three Mile River", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.25706000", + "longitude": "-78.14275000" + }, + { + "id": "63058", + "name": "Town Head", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33898000", + "longitude": "-78.13569000" + }, + { + "id": "63069", + "name": "Truro", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.31301000", + "longitude": "-78.15489000" + }, + { + "id": "63088", + "name": "Water Works", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.23319000", + "longitude": "-78.04296000" + }, + { + "id": "63103", + "name": "Whitehouse", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.10275000", + "longitude": "-77.95697000" + }, + { + "id": "63105", + "name": "Whithorn", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.27111000", + "longitude": "-78.03811000" + }, + { + "id": "63106", + "name": "Williamsfield", + "state_id": 3742, + "state_code": "10", + "country_id": 108, + "country_code": "JM", + "latitude": "18.33393000", + "longitude": "-78.06957000" + }, + { + "id": "63223", + "name": "Aisai-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.17234000", + "longitude": "136.69478000" + }, + { + "id": "63237", + "name": "Ama-gun", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.17174000", + "longitude": "136.82308000" + }, + { + "id": "63246", + "name": "Anjō-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.94341000", + "longitude": "137.07165000" + }, + { + "id": "64715", + "name": "Ōbu", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.01756000", + "longitude": "136.94947000" + }, + { + "id": "64716", + "name": "Ōbu-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.01920000", + "longitude": "136.95424000" + }, + { + "id": "63305", + "name": "Chiryū", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.00000000", + "longitude": "137.03333000" + }, + { + "id": "63306", + "name": "Chiryū-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.99862000", + "longitude": "137.05000000" + }, + { + "id": "63307", + "name": "Chita", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.00267000", + "longitude": "136.86420000" + }, + { + "id": "63308", + "name": "Chita-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.97048000", + "longitude": "136.86490000" + }, + { + "id": "63382", + "name": "Gamagōri", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.83333000", + "longitude": "137.23333000" + }, + { + "id": "63383", + "name": "Gamagōri-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.82759000", + "longitude": "137.22752000" + }, + { + "id": "63433", + "name": "Handa", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88333000", + "longitude": "136.93333000" + }, + { + "id": "63434", + "name": "Handa-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.89903000", + "longitude": "136.92660000" + }, + { + "id": "63453", + "name": "Hekinan", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88333000", + "longitude": "136.98333000" + }, + { + "id": "63454", + "name": "Hekinan-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.87955000", + "longitude": "136.99155000" + }, + { + "id": "63542", + "name": "Ichinomiya", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.30000000", + "longitude": "136.80000000" + }, + { + "id": "63543", + "name": "Ichinomiya-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.31037000", + "longitude": "136.79237000" + }, + { + "id": "63573", + "name": "Inazawa", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.25000000", + "longitude": "136.78333000" + }, + { + "id": "63574", + "name": "Inazawa-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.24814000", + "longitude": "136.77979000" + }, + { + "id": "63576", + "name": "Inuyama", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.37995000", + "longitude": "136.94295000" + }, + { + "id": "63577", + "name": "Inuyama-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.36232000", + "longitude": "136.98072000" + }, + { + "id": "63598", + "name": "Ishiki", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.80000000", + "longitude": "137.01667000" + }, + { + "id": "63624", + "name": "Iwakura", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.28333000", + "longitude": "136.86667000" + }, + { + "id": "63625", + "name": "Iwakura-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.27927000", + "longitude": "136.86885000" + }, + { + "id": "63711", + "name": "Kanie", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.13333000", + "longitude": "136.80000000" + }, + { + "id": "63723", + "name": "Kariya", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.98333000", + "longitude": "136.98333000" + }, + { + "id": "63725", + "name": "Kariya-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.01098000", + "longitude": "137.00166000" + }, + { + "id": "63745", + "name": "Kasugai", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.24762000", + "longitude": "136.97229000" + }, + { + "id": "63746", + "name": "Kasugai-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.24762000", + "longitude": "136.97226000" + }, + { + "id": "63896", + "name": "Kōnan", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.33165000", + "longitude": "136.87042000" + }, + { + "id": "63897", + "name": "Kōnan-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.33137000", + "longitude": "136.87077000" + }, + { + "id": "63811", + "name": "Kitanagoya", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.24702000", + "longitude": "136.87832000" + }, + { + "id": "63812", + "name": "Kitanagoya-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.24640000", + "longitude": "136.87293000" + }, + { + "id": "63816", + "name": "Kiyosu-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.21325000", + "longitude": "136.84771000" + }, + { + "id": "63835", + "name": "Komaki", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.28333000", + "longitude": "136.91667000" + }, + { + "id": "63836", + "name": "Komaki-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.29103000", + "longitude": "136.91196000" + }, + { + "id": "63850", + "name": "Kozakai-chō", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.80000000", + "longitude": "137.35889000" + }, + { + "id": "63875", + "name": "Kuroda", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.35000000", + "longitude": "136.78333000" + }, + { + "id": "64017", + "name": "Miyoshi-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.09480000", + "longitude": "137.08870000" + }, + { + "id": "64063", + "name": "Nagakute-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.18335000", + "longitude": "137.04895000" + }, + { + "id": "64078", + "name": "Nagoya", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.18147000", + "longitude": "136.90641000" + }, + { + "id": "64152", + "name": "Nishio", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.86667000", + "longitude": "137.05000000" + }, + { + "id": "64153", + "name": "Nishio-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.86223000", + "longitude": "137.05433000" + }, + { + "id": "64158", + "name": "Nisshin-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.13114000", + "longitude": "137.03934000" + }, + { + "id": "64197", + "name": "Okazaki-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.95245000", + "longitude": "137.25783000" + }, + { + "id": "64218", + "name": "Owariasahi-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.21652000", + "longitude": "137.03542000" + }, + { + "id": "64304", + "name": "Seto", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.23333000", + "longitude": "137.10000000" + }, + { + "id": "64305", + "name": "Seto-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.22340000", + "longitude": "137.08414000" + }, + { + "id": "64345", + "name": "Shinshiro", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.90000000", + "longitude": "137.50000000" + }, + { + "id": "64346", + "name": "Shinshiro-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.96073000", + "longitude": "137.54360000" + }, + { + "id": "64372", + "name": "Sobue", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.25000000", + "longitude": "136.71667000" + }, + { + "id": "64410", + "name": "Tahara", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.66667000", + "longitude": "137.26667000" + }, + { + "id": "64411", + "name": "Tahara-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.64140000", + "longitude": "137.18314000" + }, + { + "id": "64420", + "name": "Takahama", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.91667000", + "longitude": "136.98333000" + }, + { + "id": "64421", + "name": "Takahama-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.93337000", + "longitude": "136.99490000" + }, + { + "id": "64450", + "name": "Taketoyo", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.85000000", + "longitude": "136.91667000" + }, + { + "id": "64568", + "name": "Tōkai-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.02676000", + "longitude": "136.89846000" + }, + { + "id": "64493", + "name": "Tokoname", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88333000", + "longitude": "136.85000000" + }, + { + "id": "64494", + "name": "Tokoname-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88929000", + "longitude": "136.85299000" + }, + { + "id": "64522", + "name": "Toyoake", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.03800000", + "longitude": "136.99931000" + }, + { + "id": "64523", + "name": "Toyoake-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.06248000", + "longitude": "137.00887000" + }, + { + "id": "64524", + "name": "Toyohama", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.70933000", + "longitude": "136.93425000" + }, + { + "id": "64525", + "name": "Toyohashi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.76667000", + "longitude": "137.38333000" + }, + { + "id": "64526", + "name": "Toyohashi-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.74050000", + "longitude": "137.40714000" + }, + { + "id": "64527", + "name": "Toyokawa", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.81667000", + "longitude": "137.40000000" + }, + { + "id": "64528", + "name": "Toyokawa-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "34.85032000", + "longitude": "137.36175000" + }, + { + "id": "64534", + "name": "Toyota-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.08700000", + "longitude": "137.15000000" + }, + { + "id": "64560", + "name": "Tsushima", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.16667000", + "longitude": "136.71667000" + }, + { + "id": "64562", + "name": "Tsushima-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.17718000", + "longitude": "136.74168000" + }, + { + "id": "64662", + "name": "Yatomi-shi", + "state_id": 827, + "state_code": "23", + "country_id": 109, + "country_code": "JP", + "latitude": "35.10938000", + "longitude": "136.72451000" + }, + { + "id": "63233", + "name": "Akita", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.71667000", + "longitude": "140.11667000" + }, + { + "id": "63234", + "name": "Akita Shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.71043000", + "longitude": "140.23207000" + }, + { + "id": "64719", + "name": "Ōdate", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "40.27178000", + "longitude": "140.55756000" + }, + { + "id": "64720", + "name": "Ōdate-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "40.30000000", + "longitude": "140.55000000" + }, + { + "id": "64736", + "name": "Ōmagari", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.45000000", + "longitude": "140.48333000" + }, + { + "id": "63318", + "name": "Daisen", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.44116000", + "longitude": "140.48961000" + }, + { + "id": "63319", + "name": "Daisen-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.53710000", + "longitude": "140.44139000" + }, + { + "id": "63432", + "name": "Hanawa", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "40.18361000", + "longitude": "140.78722000" + }, + { + "id": "63675", + "name": "Kakunodatemachi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.58926000", + "longitude": "140.56724000" + }, + { + "id": "63751", + "name": "Katagami", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.87869000", + "longitude": "139.99767000" + }, + { + "id": "63752", + "name": "Katagami-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.87209000", + "longitude": "140.04910000" + }, + { + "id": "63780", + "name": "Kazuno Shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "40.21035000", + "longitude": "140.83030000" + }, + { + "id": "63798", + "name": "Kitaakita-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "40.23446000", + "longitude": "140.39978000" + }, + { + "id": "64137", + "name": "Nikaho-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.19677000", + "longitude": "139.97305000" + }, + { + "id": "64168", + "name": "Noshiro", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "40.20838000", + "longitude": "140.02740000" + }, + { + "id": "64169", + "name": "Noshiro Shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "40.20289000", + "longitude": "140.14486000" + }, + { + "id": "64185", + "name": "Oga", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.87100000", + "longitude": "139.84926000" + }, + { + "id": "64186", + "name": "Oga-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.93793000", + "longitude": "139.83611000" + }, + { + "id": "64299", + "name": "Semboku-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.75709000", + "longitude": "140.66998000" + }, + { + "id": "64430", + "name": "Takanosu", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "40.22268000", + "longitude": "140.36611000" + }, + { + "id": "64482", + "name": "Tennō", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.90000000", + "longitude": "139.96667000" + }, + { + "id": "64674", + "name": "Yokote", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.31691000", + "longitude": "140.55034000" + }, + { + "id": "64675", + "name": "Yokote-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.28369000", + "longitude": "140.54432000" + }, + { + "id": "64698", + "name": "Yurihonjō", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.38950000", + "longitude": "140.05813000" + }, + { + "id": "64699", + "name": "Yurihonjō-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.29336000", + "longitude": "140.16498000" + }, + { + "id": "64701", + "name": "Yuzawa", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.16667000", + "longitude": "140.50000000" + }, + { + "id": "64702", + "name": "Yuzawa-shi", + "state_id": 829, + "state_code": "05", + "country_id": 109, + "country_code": "JP", + "latitude": "39.03658000", + "longitude": "140.54267000" + }, + { + "id": "63249", + "name": "Aomori", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.81667000", + "longitude": "140.73333000" + }, + { + "id": "63250", + "name": "Aomori Shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.77001000", + "longitude": "140.75423000" + }, + { + "id": "63394", + "name": "Goshogawara", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.80444000", + "longitude": "140.44139000" + }, + { + "id": "63395", + "name": "Goshogawara Shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.91657000", + "longitude": "140.46998000" + }, + { + "id": "63408", + "name": "Hachinohe", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.50000000", + "longitude": "141.50000000" + }, + { + "id": "63409", + "name": "Hachinohe Shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.47389000", + "longitude": "141.48125000" + }, + { + "id": "63491", + "name": "Hirakawa", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.58728000", + "longitude": "140.57107000" + }, + { + "id": "63492", + "name": "Hirakawa Shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.51832000", + "longitude": "140.70048000" + }, + { + "id": "63497", + "name": "Hirosaki", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.59306000", + "longitude": "140.47250000" + }, + { + "id": "63498", + "name": "Hirosaki Shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.60512000", + "longitude": "140.38460000" + }, + { + "id": "63876", + "name": "Kuroishi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.64581000", + "longitude": "140.58354000" + }, + { + "id": "63877", + "name": "Kuroishi Shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.61709000", + "longitude": "140.70467000" + }, + { + "id": "63983", + "name": "Misawa", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.68682000", + "longitude": "141.38969000" + }, + { + "id": "63984", + "name": "Misawa Shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.74647000", + "longitude": "141.38124000" + }, + { + "id": "64054", + "name": "Mutsu", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "41.28944000", + "longitude": "141.21694000" + }, + { + "id": "64055", + "name": "Mutsu-shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "41.29090000", + "longitude": "141.03327000" + }, + { + "id": "64098", + "name": "Namioka", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.71069000", + "longitude": "140.59048000" + }, + { + "id": "64333", + "name": "Shimokizukuri", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.81609000", + "longitude": "140.37539000" + }, + { + "id": "64520", + "name": "Towada Shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.56736000", + "longitude": "141.05794000" + }, + { + "id": "64541", + "name": "Tsugaru", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.80357000", + "longitude": "140.40299000" + }, + { + "id": "64542", + "name": "Tsugaru Shi", + "state_id": 839, + "state_code": "02", + "country_id": 109, + "country_code": "JP", + "latitude": "40.86988000", + "longitude": "140.34963000" + }, + { + "id": "64728", + "name": "Ōita", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.23333000", + "longitude": "131.60000000" + }, + { + "id": "64729", + "name": "Ōita-shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.17980000", + "longitude": "131.64085000" + }, + { + "id": "63283", + "name": "Beppu", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.27945000", + "longitude": "131.49751000" + }, + { + "id": "63284", + "name": "Beppu Shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.28573000", + "longitude": "131.45280000" + }, + { + "id": "63288", + "name": "Bungo-ōno Shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "32.97249000", + "longitude": "131.51210000" + }, + { + "id": "63287", + "name": "Bungo-Takada-shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.55670000", + "longitude": "131.44506000" + }, + { + "id": "63472", + "name": "Hiji", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.37081000", + "longitude": "131.53025000" + }, + { + "id": "63502", + "name": "Hita", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.32130000", + "longitude": "130.94098000" + }, + { + "id": "63503", + "name": "Hita Shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.24452000", + "longitude": "130.95063000" + }, + { + "id": "63813", + "name": "Kitsuki", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.41998000", + "longitude": "131.61837000" + }, + { + "id": "63814", + "name": "Kitsuki Shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.44729000", + "longitude": "131.53670000" + }, + { + "id": "63863", + "name": "Kunisaki-shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.56543000", + "longitude": "131.73157000" + }, + { + "id": "64089", + "name": "Nakatsu", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.59811000", + "longitude": "131.18830000" + }, + { + "id": "64090", + "name": "Nakatsu Shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.46458000", + "longitude": "131.12642000" + }, + { + "id": "64248", + "name": "Saiki", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "32.95000000", + "longitude": "131.90000000" + }, + { + "id": "64249", + "name": "Saiki-shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "32.88598000", + "longitude": "131.77600000" + }, + { + "id": "64443", + "name": "Takedamachi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "32.96667000", + "longitude": "131.40000000" + }, + { + "id": "64449", + "name": "Taketa-shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "32.99774000", + "longitude": "131.32724000" + }, + { + "id": "64544", + "name": "Tsukawaki", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.27668000", + "longitude": "131.15628000" + }, + { + "id": "64549", + "name": "Tsukumi-shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.06667000", + "longitude": "131.86667000" + }, + { + "id": "64550", + "name": "Tsukumiura", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.07539000", + "longitude": "131.86907000" + }, + { + "id": "64559", + "name": "Tsurusaki", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.24528000", + "longitude": "131.69165000" + }, + { + "id": "64601", + "name": "Usa Shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.44996000", + "longitude": "131.33662000" + }, + { + "id": "64605", + "name": "Usuki", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.12342000", + "longitude": "131.80401000" + }, + { + "id": "64606", + "name": "Usuki Shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.07223000", + "longitude": "131.74457000" + }, + { + "id": "64694", + "name": "Yufu-shi", + "state_id": 822, + "state_code": "44", + "country_id": 109, + "country_code": "JP", + "latitude": "33.17923000", + "longitude": "131.43219000" + }, + { + "id": "64751", + "name": "Ōsaka-sayama Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.49645000", + "longitude": "135.54894000" + }, + { + "id": "63320", + "name": "Daitō Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.71284000", + "longitude": "135.63576000" + }, + { + "id": "63321", + "name": "Daitōchō", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.71378000", + "longitude": "135.62033000" + }, + { + "id": "63343", + "name": "Fujiidera-shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.57422000", + "longitude": "135.59730000" + }, + { + "id": "63405", + "name": "Habikino-shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.55775000", + "longitude": "135.60631000" + }, + { + "id": "63435", + "name": "Hannan", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.33333000", + "longitude": "135.25000000" + }, + { + "id": "63436", + "name": "Hannan Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.33115000", + "longitude": "135.23521000" + }, + { + "id": "63471", + "name": "Higashiōsaka Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.67112000", + "longitude": "135.61760000" + }, + { + "id": "63489", + "name": "Hirakata", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.81352000", + "longitude": "135.64914000" + }, + { + "id": "63490", + "name": "Hirakata Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.81762000", + "longitude": "135.68171000" + }, + { + "id": "63533", + "name": "Ibaraki", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.81641000", + "longitude": "135.56828000" + }, + { + "id": "63534", + "name": "Ibaraki Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.85588000", + "longitude": "135.54998000" + }, + { + "id": "63554", + "name": "Ikeda", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.82208000", + "longitude": "135.42980000" + }, + { + "id": "63555", + "name": "Ikeda Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.83443000", + "longitude": "135.43825000" + }, + { + "id": "63640", + "name": "Izumi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.48333000", + "longitude": "135.43333000" + }, + { + "id": "63643", + "name": "Izumi Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.43135000", + "longitude": "135.47164000" + }, + { + "id": "63646", + "name": "Izumiōtsu", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.50000000", + "longitude": "135.40000000" + }, + { + "id": "63647", + "name": "Izumiōtsu Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.50647000", + "longitude": "135.40462000" + }, + { + "id": "63644", + "name": "Izumisano", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.41667000", + "longitude": "135.31667000" + }, + { + "id": "63645", + "name": "Izumisano Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.37398000", + "longitude": "135.33682000" + }, + { + "id": "63655", + "name": "Kadoma", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.73810000", + "longitude": "135.57442000" + }, + { + "id": "63656", + "name": "Kadoma Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.73215000", + "longitude": "135.59935000" + }, + { + "id": "63665", + "name": "Kaizuka", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.45000000", + "longitude": "135.35000000" + }, + { + "id": "63666", + "name": "Kaizuka Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.40105000", + "longitude": "135.38510000" + }, + { + "id": "63734", + "name": "Kashihara", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.58333000", + "longitude": "135.61667000" + }, + { + "id": "63741", + "name": "Kashiwara-shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.57920000", + "longitude": "135.62867000" + }, + { + "id": "63753", + "name": "Katano Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.77215000", + "longitude": "135.68693000" + }, + { + "id": "63766", + "name": "Kawachi-nagano Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.40547000", + "longitude": "135.56692000" + }, + { + "id": "63795", + "name": "Kishiwada", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.46667000", + "longitude": "135.36667000" + }, + { + "id": "63796", + "name": "Kishiwada Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.42747000", + "longitude": "135.41605000" + }, + { + "id": "63929", + "name": "Matsubara", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.56667000", + "longitude": "135.55000000" + }, + { + "id": "63930", + "name": "Matsubara-shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.57726000", + "longitude": "135.55206000" + }, + { + "id": "63976", + "name": "Mino", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.82691000", + "longitude": "135.47057000" + }, + { + "id": "63981", + "name": "Minoo Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.85590000", + "longitude": "135.47926000" + }, + { + "id": "63987", + "name": "Mishima-gun", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.89887000", + "longitude": "135.65325000" + }, + { + "id": "64029", + "name": "Moriguchi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.73333000", + "longitude": "135.56667000" + }, + { + "id": "64123", + "name": "Neyagawa", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.76615000", + "longitude": "135.62759000" + }, + { + "id": "64124", + "name": "Neyagawa Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.76539000", + "longitude": "135.62696000" + }, + { + "id": "64214", + "name": "Osaka", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.69374000", + "longitude": "135.50218000" + }, + { + "id": "64256", + "name": "Sakai", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.58333000", + "longitude": "135.46667000" + }, + { + "id": "64257", + "name": "Sakai Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.53166000", + "longitude": "135.49460000" + }, + { + "id": "64301", + "name": "Sennan Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.35164000", + "longitude": "135.29176000" + }, + { + "id": "64307", + "name": "Settsu Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.77220000", + "longitude": "135.56824000" + }, + { + "id": "64319", + "name": "Shijonawate Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.73242000", + "longitude": "135.66784000" + }, + { + "id": "64379", + "name": "Suita", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.76143000", + "longitude": "135.51567000" + }, + { + "id": "64380", + "name": "Suita Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.78556000", + "longitude": "135.51909000" + }, + { + "id": "64417", + "name": "Tajiri", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.42695000", + "longitude": "135.24552000" + }, + { + "id": "64425", + "name": "Takaishi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.51667000", + "longitude": "135.43333000" + }, + { + "id": "64426", + "name": "Takaishi Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.52868000", + "longitude": "135.42958000" + }, + { + "id": "64440", + "name": "Takatsuki", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.84833000", + "longitude": "135.61678000" + }, + { + "id": "64441", + "name": "Takatsuki Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88079000", + "longitude": "135.60792000" + }, + { + "id": "64512", + "name": "Tondabayashi Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.48882000", + "longitude": "135.59431000" + }, + { + "id": "64513", + "name": "Tondabayashichō", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.50065000", + "longitude": "135.60211000" + }, + { + "id": "64529", + "name": "Toyonaka", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.78244000", + "longitude": "135.46932000" + }, + { + "id": "64530", + "name": "Toyonaka Shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.78191000", + "longitude": "135.47276000" + }, + { + "id": "64654", + "name": "Yao", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.61667000", + "longitude": "135.60000000" + }, + { + "id": "64655", + "name": "Yao-shi", + "state_id": 859, + "state_code": "27", + "country_id": 109, + "country_code": "JP", + "latitude": "34.62629000", + "longitude": "135.60099000" + }, + { + "id": "63213", + "name": "Abiko", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.86667000", + "longitude": "140.01667000" + }, + { + "id": "63214", + "name": "Abiko-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.86947000", + "longitude": "140.06510000" + }, + { + "id": "63258", + "name": "Asahi-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73443000", + "longitude": "140.65549000" + }, + { + "id": "64712", + "name": "Ōami", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.51667000", + "longitude": "140.31667000" + }, + { + "id": "64713", + "name": "Ōamishirasato-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.51279000", + "longitude": "140.34295000" + }, + { + "id": "64724", + "name": "Ōhara", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.24761000", + "longitude": "140.39289000" + }, + { + "id": "63314", + "name": "Chōshi-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.74303000", + "longitude": "140.77552000" + }, + { + "id": "63293", + "name": "Chiba", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.60000000", + "longitude": "140.11667000" + }, + { + "id": "63375", + "name": "Funabashi-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.69455000", + "longitude": "139.98255000" + }, + { + "id": "63381", + "name": "Futtsu", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.31080000", + "longitude": "139.81877000" + }, + { + "id": "63441", + "name": "Hasaki", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73333000", + "longitude": "140.83333000" + }, + { + "id": "63520", + "name": "Honchō", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70129000", + "longitude": "139.98648000" + }, + { + "id": "63537", + "name": "Ichihara", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.51667000", + "longitude": "140.08333000" + }, + { + "id": "63538", + "name": "Ichihara Shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.42484000", + "longitude": "140.13725000" + }, + { + "id": "63539", + "name": "Ichikawa Shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71865000", + "longitude": "139.93294000" + }, + { + "id": "63578", + "name": "Inzai-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.81207000", + "longitude": "140.14098000" + }, + { + "id": "63603", + "name": "Isumi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.23005000", + "longitude": "140.40492000" + }, + { + "id": "63604", + "name": "Isumi Shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.27777000", + "longitude": "140.34335000" + }, + { + "id": "63677", + "name": "Kamagaya Shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.77289000", + "longitude": "139.99883000" + }, + { + "id": "63702", + "name": "Kamogawa", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.09690000", + "longitude": "140.10030000" + }, + { + "id": "63703", + "name": "Kamogawa-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.10000000", + "longitude": "140.10000000" + }, + { + "id": "63739", + "name": "Kashiwa", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.86224000", + "longitude": "139.97732000" + }, + { + "id": "63740", + "name": "Kashiwa Shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.86017000", + "longitude": "139.99386000" + }, + { + "id": "63754", + "name": "Katori-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.88333000", + "longitude": "140.51667000" + }, + { + "id": "63760", + "name": "Katsuura", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.14621000", + "longitude": "140.31507000" + }, + { + "id": "63762", + "name": "Katsuura-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.17535000", + "longitude": "140.26760000" + }, + { + "id": "63787", + "name": "Kimitsu", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.35043000", + "longitude": "139.87029000" + }, + { + "id": "63793", + "name": "Kisarazu", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.38329000", + "longitude": "139.93254000" + }, + { + "id": "63794", + "name": "Kisarazu Shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.36981000", + "longitude": "139.98749000" + }, + { + "id": "63932", + "name": "Matsudo Shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.79574000", + "longitude": "139.92908000" + }, + { + "id": "63966", + "name": "Minamibōsō Shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.03657000", + "longitude": "139.92847000" + }, + { + "id": "64022", + "name": "Mobara", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.42583000", + "longitude": "140.29608000" + }, + { + "id": "64023", + "name": "Mobara Shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.44981000", + "longitude": "140.30163000" + }, + { + "id": "64069", + "name": "Nagareyama", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.85630000", + "longitude": "139.90266000" + }, + { + "id": "64070", + "name": "Nagareyama-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.85631000", + "longitude": "139.90266000" + }, + { + "id": "64107", + "name": "Narashino-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.68091000", + "longitude": "140.03418000" + }, + { + "id": "64108", + "name": "Narita", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.78333000", + "longitude": "140.31667000" + }, + { + "id": "64109", + "name": "Narita-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.81547000", + "longitude": "140.35757000" + }, + { + "id": "64112", + "name": "Narutō", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.60000000", + "longitude": "140.41667000" + }, + { + "id": "64163", + "name": "Noda", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.94897000", + "longitude": "139.86793000" + }, + { + "id": "64164", + "name": "Noda-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.98516000", + "longitude": "139.86215000" + }, + { + "id": "64204", + "name": "Omigawa", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.85000000", + "longitude": "140.61667000" + }, + { + "id": "64268", + "name": "Sakura", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71667000", + "longitude": "140.23333000" + }, + { + "id": "64269", + "name": "Sakura-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70619000", + "longitude": "140.21326000" + }, + { + "id": "64275", + "name": "Sambu-gun", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.68843000", + "longitude": "140.45346000" + }, + { + "id": "64279", + "name": "Sanmu", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.62756000", + "longitude": "140.41762000" + }, + { + "id": "64280", + "name": "Sanmu-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.62397000", + "longitude": "140.42079000" + }, + { + "id": "64295", + "name": "Sawara", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.88333000", + "longitude": "140.50000000" + }, + { + "id": "64404", + "name": "Sōsa-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.69983000", + "longitude": "140.55366000" + }, + { + "id": "64357", + "name": "Shiroi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.80000000", + "longitude": "140.06667000" + }, + { + "id": "64358", + "name": "Shiroi-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.80164000", + "longitude": "140.06005000" + }, + { + "id": "64362", + "name": "Shisui", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71667000", + "longitude": "140.26667000" + }, + { + "id": "64373", + "name": "Sodegaura-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.41642000", + "longitude": "140.01771000" + }, + { + "id": "64474", + "name": "Tateyama", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "34.98333000", + "longitude": "139.86667000" + }, + { + "id": "64475", + "name": "Tateyama-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "34.97156000", + "longitude": "139.86163000" + }, + { + "id": "64566", + "name": "Tōgane", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.55000000", + "longitude": "140.36667000" + }, + { + "id": "64567", + "name": "Tōgane-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.56517000", + "longitude": "140.36707000" + }, + { + "id": "64508", + "name": "Tomisato-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.72024000", + "longitude": "140.34080000" + }, + { + "id": "64598", + "name": "Urayasu-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.64250000", + "longitude": "139.90192000" + }, + { + "id": "64629", + "name": "Yachimata", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65000000", + "longitude": "140.31667000" + }, + { + "id": "64630", + "name": "Yachimata-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.64241000", + "longitude": "140.29686000" + }, + { + "id": "64631", + "name": "Yachiyo-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73921000", + "longitude": "140.10502000" + }, + { + "id": "64703", + "name": "Yōkaichiba", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70000000", + "longitude": "140.55000000" + }, + { + "id": "64690", + "name": "Yotsukaidō", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65000000", + "longitude": "140.16667000" + }, + { + "id": "64691", + "name": "Yotsukaidō-shi", + "state_id": 821, + "state_code": "12", + "country_id": 109, + "country_code": "JP", + "latitude": "35.67167000", + "longitude": "140.17912000" + }, + { + "id": "64770", + "name": "Ōzu", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.50000000", + "longitude": "132.55000000" + }, + { + "id": "64771", + "name": "Ōzu-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.50619000", + "longitude": "132.54430000" + }, + { + "id": "63529", + "name": "Hōjō", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.97661000", + "longitude": "132.77767000" + }, + { + "id": "63560", + "name": "Imabari-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "34.06667000", + "longitude": "132.99791000" + }, + { + "id": "63636", + "name": "Iyo", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.75139000", + "longitude": "132.70139000" + }, + { + "id": "63637", + "name": "Iyo-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.68493000", + "longitude": "132.68909000" + }, + { + "id": "63774", + "name": "Kawanoechō", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "34.01654000", + "longitude": "133.57844000" + }, + { + "id": "63783", + "name": "Kihoku-chō", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.25592000", + "longitude": "132.68343000" + }, + { + "id": "63925", + "name": "Masaki-chō", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.78757000", + "longitude": "132.71124000" + }, + { + "id": "63941", + "name": "Matsuyama-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.83568000", + "longitude": "132.76224000" + }, + { + "id": "64131", + "name": "Niihama", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.96047000", + "longitude": "133.30522000" + }, + { + "id": "64132", + "name": "Niihama-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.90670000", + "longitude": "133.33250000" + }, + { + "id": "64245", + "name": "Saijō", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.91667000", + "longitude": "133.18333000" + }, + { + "id": "64246", + "name": "Saijō-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.86100000", + "longitude": "133.10832000" + }, + { + "id": "64297", + "name": "Seiyo-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.39408000", + "longitude": "132.63262000" + }, + { + "id": "64322", + "name": "Shikoku-chūō Shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.93538000", + "longitude": "133.53622000" + }, + { + "id": "64575", + "name": "Tōon-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.79099000", + "longitude": "132.87234000" + }, + { + "id": "64613", + "name": "Uwajima", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.22375000", + "longitude": "132.56001000" + }, + { + "id": "64614", + "name": "Uwajima-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.22325000", + "longitude": "132.56069000" + }, + { + "id": "64667", + "name": "Yawatahama-shi", + "state_id": 865, + "state_code": "38", + "country_id": 109, + "country_code": "JP", + "latitude": "33.46302000", + "longitude": "132.42336000" + }, + { + "id": "63257", + "name": "Asahi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.97259000", + "longitude": "136.12455000" + }, + { + "id": "63276", + "name": "Awara-shi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "36.22777000", + "longitude": "136.25154000" + }, + { + "id": "64726", + "name": "Ōi-gun", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.49238000", + "longitude": "135.49311000" + }, + { + "id": "64748", + "name": "Ōno-shi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.90837000", + "longitude": "136.61696000" + }, + { + "id": "63329", + "name": "Echizen-shi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.88946000", + "longitude": "136.17723000" + }, + { + "id": "63363", + "name": "Fukui-shi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06667000", + "longitude": "136.21667000" + }, + { + "id": "63763", + "name": "Katsuyama", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06173000", + "longitude": "136.50101000" + }, + { + "id": "63764", + "name": "Katsuyama Shi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "36.08440000", + "longitude": "136.52178000" + }, + { + "id": "63924", + "name": "Maruoka", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "36.15340000", + "longitude": "136.27029000" + }, + { + "id": "63955", + "name": "Mikuni", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "36.21706000", + "longitude": "136.15185000" + }, + { + "id": "64176", + "name": "Obama", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.49576000", + "longitude": "135.74604000" + }, + { + "id": "64177", + "name": "Obama-shi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.45000000", + "longitude": "135.70000000" + }, + { + "id": "64209", + "name": "Ono", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.98106000", + "longitude": "136.48727000" + }, + { + "id": "64236", + "name": "Sabae", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.94647000", + "longitude": "136.18498000" + }, + { + "id": "64237", + "name": "Sabae-shi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.95932000", + "longitude": "136.21835000" + }, + { + "id": "64259", + "name": "Sakai-shi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "36.16406000", + "longitude": "136.25544000" + }, + { + "id": "64444", + "name": "Takefu", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.90393000", + "longitude": "136.16687000" + }, + { + "id": "64553", + "name": "Tsuruga", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.64547000", + "longitude": "136.05580000" + }, + { + "id": "64554", + "name": "Tsuruga-shi", + "state_id": 848, + "state_code": "18", + "country_id": 109, + "country_code": "JP", + "latitude": "35.63730000", + "longitude": "136.08068000" + }, + { + "id": "63239", + "name": "Amagi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.41804000", + "longitude": "130.65413000" + }, + { + "id": "63263", + "name": "Asakura Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.41684000", + "longitude": "130.74167000" + }, + { + "id": "64730", + "name": "Ōkawa", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.20566000", + "longitude": "130.37527000" + }, + { + "id": "64731", + "name": "Ōkawa-shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.20736000", + "longitude": "130.38253000" + }, + { + "id": "64745", + "name": "Ōmuta", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.03333000", + "longitude": "130.45000000" + }, + { + "id": "64746", + "name": "Ōmuta Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.04616000", + "longitude": "130.46912000" + }, + { + "id": "64749", + "name": "Ōnojō", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.53567000", + "longitude": "130.47861000" + }, + { + "id": "64750", + "name": "Ōnojō Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.51302000", + "longitude": "130.47925000" + }, + { + "id": "63290", + "name": "Buzen", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.61153000", + "longitude": "131.13002000" + }, + { + "id": "63291", + "name": "Buzen-shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.56743000", + "longitude": "131.08578000" + }, + { + "id": "63298", + "name": "Chikugo Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.20748000", + "longitude": "130.49122000" + }, + { + "id": "63302", + "name": "Chikushino-shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.49631000", + "longitude": "130.51560000" + }, + { + "id": "63325", + "name": "Dazaifu-shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.50000000", + "longitude": "130.53333000" + }, + { + "id": "63365", + "name": "Fukuoka", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.60000000", + "longitude": "130.41667000" + }, + { + "id": "63366", + "name": "Fukuoka-shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.56894000", + "longitude": "130.35764000" + }, + { + "id": "63372", + "name": "Fukutsu Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.77982000", + "longitude": "130.49804000" + }, + { + "id": "63551", + "name": "Iizuka", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.63654000", + "longitude": "130.68678000" + }, + { + "id": "63552", + "name": "Iizuka Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.61353000", + "longitude": "130.66098000" + }, + { + "id": "63614", + "name": "Itoshima-shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.53317000", + "longitude": "130.17975000" + }, + { + "id": "63676", + "name": "Kama Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.53663000", + "longitude": "130.74028000" + }, + { + "id": "63708", + "name": "Kanda", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.78333000", + "longitude": "130.98333000" + }, + { + "id": "63744", + "name": "Kasuga Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.52404000", + "longitude": "130.45641000" + }, + { + "id": "63776", + "name": "Kawasaki", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.59993000", + "longitude": "130.81495000" + }, + { + "id": "63808", + "name": "Kitakyushu", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.85181000", + "longitude": "130.85034000" + }, + { + "id": "63823", + "name": "Koga", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.73333000", + "longitude": "130.46667000" + }, + { + "id": "63825", + "name": "Koga-shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.72139000", + "longitude": "130.49947000" + }, + { + "id": "63879", + "name": "Kurume", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.31667000", + "longitude": "130.51667000" + }, + { + "id": "63880", + "name": "Kurume Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.30358000", + "longitude": "130.56549000" + }, + { + "id": "63907", + "name": "Maebaru-chūō", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.55916000", + "longitude": "130.20148000" + }, + { + "id": "64005", + "name": "Miyama Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.12369000", + "longitude": "130.49540000" + }, + { + "id": "64007", + "name": "Miyata", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.70811000", + "longitude": "130.65297000" + }, + { + "id": "64008", + "name": "Miyawaka Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.71559000", + "longitude": "130.61506000" + }, + { + "id": "64044", + "name": "Munakata-shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.80000000", + "longitude": "130.55000000" + }, + { + "id": "64084", + "name": "Nakama", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.81688000", + "longitude": "130.70962000" + }, + { + "id": "64085", + "name": "Nakama Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.82081000", + "longitude": "130.70862000" + }, + { + "id": "64174", + "name": "Nōgata", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.74051000", + "longitude": "130.72263000" + }, + { + "id": "64175", + "name": "Nōgata Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.75116000", + "longitude": "130.74592000" + }, + { + "id": "64147", + "name": "Nishifukuma", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.76627000", + "longitude": "130.47461000" + }, + { + "id": "64189", + "name": "Ogōri-shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.38333000", + "longitude": "130.56667000" + }, + { + "id": "64207", + "name": "Onga-gun", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.85699000", + "longitude": "130.63626000" + }, + { + "id": "64287", + "name": "Sasaguri", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.61561000", + "longitude": "130.55105000" + }, + { + "id": "64303", + "name": "Setakamachi-takayanagi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.14858000", + "longitude": "130.46548000" + }, + { + "id": "64318", + "name": "Shiida", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.65341000", + "longitude": "131.05797000" + }, + { + "id": "64340", + "name": "Shingū", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.71399000", + "longitude": "130.43130000" + }, + { + "id": "64408", + "name": "Tagawa", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.63333000", + "longitude": "130.80000000" + }, + { + "id": "64409", + "name": "Tagawa Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.63159000", + "longitude": "130.79966000" + }, + { + "id": "64468", + "name": "Tanushimarumachi-toyoki", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.35000000", + "longitude": "130.68333000" + }, + { + "id": "64543", + "name": "Tsuiki", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.67307000", + "longitude": "131.03776000" + }, + { + "id": "64588", + "name": "Ukiha Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.31184000", + "longitude": "130.79325000" + }, + { + "id": "64589", + "name": "Umi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.56826000", + "longitude": "130.51009000" + }, + { + "id": "64648", + "name": "Yame Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.23302000", + "longitude": "130.62775000" + }, + { + "id": "64650", + "name": "Yanagawa", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.16667000", + "longitude": "130.40000000" + }, + { + "id": "64651", + "name": "Yanagawa Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.14932000", + "longitude": "130.40725000" + }, + { + "id": "64689", + "name": "Yoshitomi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.60247000", + "longitude": "131.17599000" + }, + { + "id": "64696", + "name": "Yukuhashi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.72873000", + "longitude": "130.98300000" + }, + { + "id": "64697", + "name": "Yukuhashi Shi", + "state_id": 861, + "state_code": "40", + "country_id": 109, + "country_code": "JP", + "latitude": "33.71404000", + "longitude": "130.97108000" + }, + { + "id": "63224", + "name": "Aizu-wakamatsu Shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.45071000", + "longitude": "139.96814000" + }, + { + "id": "63323", + "name": "Date-shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.81667000", + "longitude": "140.51667000" + }, + { + "id": "63370", + "name": "Fukushima", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.75000000", + "longitude": "140.46667000" + }, + { + "id": "63371", + "name": "Fukushima Shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.78643000", + "longitude": "140.38849000" + }, + { + "id": "63377", + "name": "Funehikimachi-funehiki", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.44722000", + "longitude": "140.57710000" + }, + { + "id": "63513", + "name": "Hobaramachi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.81667000", + "longitude": "140.55000000" + }, + { + "id": "63572", + "name": "Inawashiro", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.56667000", + "longitude": "140.11667000" + }, + { + "id": "63597", + "name": "Ishikawa", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.15000000", + "longitude": "140.45000000" + }, + { + "id": "63621", + "name": "Iwaki", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.05000000", + "longitude": "140.88333000" + }, + { + "id": "63622", + "name": "Iwaki-shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.08333000", + "longitude": "140.83333000" + }, + { + "id": "63899", + "name": "Kōriyama", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.40000000", + "longitude": "140.38333000" + }, + { + "id": "63900", + "name": "Kōriyama Shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.41277000", + "longitude": "140.29507000" + }, + { + "id": "63806", + "name": "Kitakata", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.65000000", + "longitude": "139.86667000" + }, + { + "id": "63807", + "name": "Kitakata-shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.68333000", + "longitude": "139.90000000" + }, + { + "id": "63950", + "name": "Miharu", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.43333000", + "longitude": "140.48333000" + }, + { + "id": "63962", + "name": "Minami-Sōma", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.62908000", + "longitude": "140.97868000" + }, + { + "id": "63971", + "name": "Minamisōma Shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.63108000", + "longitude": "140.92852000" + }, + { + "id": "64039", + "name": "Motomiya", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.51391000", + "longitude": "140.40063000" + }, + { + "id": "64040", + "name": "Motomiya-shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.51218000", + "longitude": "140.39841000" + }, + { + "id": "64097", + "name": "Namie", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.48333000", + "longitude": "141.00000000" + }, + { + "id": "64127", + "name": "Nihommatsu", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.58333000", + "longitude": "140.43333000" + }, + { + "id": "64128", + "name": "Nihonmatsu Shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.58402000", + "longitude": "140.49543000" + }, + { + "id": "64402", + "name": "Sōma", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.79283000", + "longitude": "140.92941000" + }, + { + "id": "64403", + "name": "Sōma Shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.78193000", + "longitude": "140.87321000" + }, + { + "id": "64353", + "name": "Shirakawa Shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.12225000", + "longitude": "140.24963000" + }, + { + "id": "64381", + "name": "Sukagawa", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.28333000", + "longitude": "140.38333000" + }, + { + "id": "64382", + "name": "Sukagawa Shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.29342000", + "longitude": "140.31691000" + }, + { + "id": "64461", + "name": "Tamura", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.43055000", + "longitude": "140.60335000" + }, + { + "id": "64462", + "name": "Tamura-shi", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.43793000", + "longitude": "140.57384000" + }, + { + "id": "64652", + "name": "Yanagawamachi-saiwaichō", + "state_id": 847, + "state_code": "07", + "country_id": 109, + "country_code": "JP", + "latitude": "37.85000000", + "longitude": "140.60000000" + }, + { + "id": "64723", + "name": "Ōgaki-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.36485000", + "longitude": "136.60189000" + }, + { + "id": "63332", + "name": "Ena-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.44722000", + "longitude": "137.41810000" + }, + { + "id": "63402", + "name": "Gōdo", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.41667000", + "longitude": "136.60000000" + }, + { + "id": "63384", + "name": "Gero", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.80000000", + "longitude": "137.23333000" + }, + { + "id": "63385", + "name": "Gero-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.75000000", + "longitude": "137.25000000" + }, + { + "id": "63386", + "name": "Gifu-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.44826000", + "longitude": "136.76470000" + }, + { + "id": "63398", + "name": "Gujō", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73691000", + "longitude": "136.95852000" + }, + { + "id": "63399", + "name": "Gujō-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83298000", + "longitude": "136.94561000" + }, + { + "id": "63442", + "name": "Hashima", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.32900000", + "longitude": "136.68051000" + }, + { + "id": "63443", + "name": "Hashima-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.30740000", + "longitude": "136.70161000" + }, + { + "id": "63455", + "name": "Hida", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "36.24483000", + "longitude": "137.17323000" + }, + { + "id": "63456", + "name": "Hida Shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "36.33272000", + "longitude": "137.20568000" + }, + { + "id": "63664", + "name": "Kaizu-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.21381000", + "longitude": "136.62443000" + }, + { + "id": "63668", + "name": "Kakamigahara-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.40283000", + "longitude": "136.87829000" + }, + { + "id": "63710", + "name": "Kani-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.40589000", + "longitude": "137.06602000" + }, + { + "id": "63729", + "name": "Kasamatsuchō", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.36667000", + "longitude": "136.76667000" + }, + { + "id": "63977", + "name": "Mino", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.53333000", + "longitude": "136.91667000" + }, + { + "id": "63978", + "name": "Mino-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.57892000", + "longitude": "136.90120000" + }, + { + "id": "63979", + "name": "Minokamo", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.48199000", + "longitude": "137.02166000" + }, + { + "id": "63980", + "name": "Minokamo-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.48386000", + "longitude": "137.02658000" + }, + { + "id": "63989", + "name": "Mitake", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.41667000", + "longitude": "137.13333000" + }, + { + "id": "64018", + "name": "Mizuho-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.39663000", + "longitude": "136.67022000" + }, + { + "id": "64019", + "name": "Mizunami", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.36667000", + "longitude": "137.25000000" + }, + { + "id": "64020", + "name": "Mizunami-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.38935000", + "longitude": "137.27360000" + }, + { + "id": "64041", + "name": "Motosu-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65553000", + "longitude": "136.61991000" + }, + { + "id": "64091", + "name": "Nakatsugawa", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.48333000", + "longitude": "137.50000000" + }, + { + "id": "64092", + "name": "Nakatsugawa-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.56656000", + "longitude": "137.47433000" + }, + { + "id": "64298", + "name": "Seki-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.48333000", + "longitude": "136.91667000" + }, + { + "id": "64415", + "name": "Tajimi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.31667000", + "longitude": "137.13333000" + }, + { + "id": "64416", + "name": "Tajimi-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.33401000", + "longitude": "137.11258000" + }, + { + "id": "64442", + "name": "Takayama Shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "36.13181000", + "longitude": "137.28585000" + }, + { + "id": "64469", + "name": "Tarui", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.36667000", + "longitude": "136.53333000" + }, + { + "id": "64491", + "name": "Toki", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.35000000", + "longitude": "137.18333000" + }, + { + "id": "64492", + "name": "Toki-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.32418000", + "longitude": "137.20748000" + }, + { + "id": "64640", + "name": "Yamagata-shi", + "state_id": 858, + "state_code": "21", + "country_id": 109, + "country_code": "JP", + "latitude": "35.59892000", + "longitude": "136.74311000" + }, + { + "id": "63217", + "name": "Agatsuma-gun", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.57368000", + "longitude": "138.67243000" + }, + { + "id": "63247", + "name": "Annaka", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.33011000", + "longitude": "138.89585000" + }, + { + "id": "63248", + "name": "Annaka Shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.34079000", + "longitude": "138.77647000" + }, + { + "id": "64737", + "name": "Ōmamachō-ōmama", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.43181000", + "longitude": "139.27534000" + }, + { + "id": "64757", + "name": "Ōta", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.30000000", + "longitude": "139.36667000" + }, + { + "id": "64759", + "name": "Ōta-shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.30000000", + "longitude": "139.36667000" + }, + { + "id": "63350", + "name": "Fujioka", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.24624000", + "longitude": "139.07204000" + }, + { + "id": "63351", + "name": "Fujioka Shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.19213000", + "longitude": "138.99918000" + }, + { + "id": "63588", + "name": "Isesaki", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.31667000", + "longitude": "139.20000000" + }, + { + "id": "63589", + "name": "Isesaki Shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.32126000", + "longitude": "139.21823000" + }, + { + "id": "63709", + "name": "Kanekomachi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.41097000", + "longitude": "138.99621000" + }, + { + "id": "63790", + "name": "Kiryū", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.40000000", + "longitude": "139.33333000" + }, + { + "id": "63791", + "name": "Kiryū Shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.45702000", + "longitude": "139.30962000" + }, + { + "id": "63908", + "name": "Maebashi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.40000000", + "longitude": "139.08333000" + }, + { + "id": "63909", + "name": "Maebashi Shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.41432000", + "longitude": "139.13110000" + }, + { + "id": "63946", + "name": "Midori", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.44492000", + "longitude": "139.28448000" + }, + { + "id": "63947", + "name": "Midori Shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.53044000", + "longitude": "139.34728000" + }, + { + "id": "64088", + "name": "Nakanojōmachi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.58717000", + "longitude": "138.84083000" + }, + { + "id": "64170", + "name": "Numata", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.63333000", + "longitude": "139.05000000" + }, + { + "id": "64171", + "name": "Numata Shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.67371000", + "longitude": "139.18353000" + }, + { + "id": "64258", + "name": "Sakai-nakajima", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.26667000", + "longitude": "139.25000000" + }, + { + "id": "64312", + "name": "Shibukawa", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.48333000", + "longitude": "139.00000000" + }, + { + "id": "64313", + "name": "Shibukawa-shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.50000000", + "longitude": "138.98333000" + }, + { + "id": "64436", + "name": "Takasaki", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.33333000", + "longitude": "139.01667000" + }, + { + "id": "64437", + "name": "Takasaki Shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.40538000", + "longitude": "138.89227000" + }, + { + "id": "64456", + "name": "Tamamura", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.30000000", + "longitude": "139.11667000" + }, + { + "id": "64472", + "name": "Tatebayashi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.25000000", + "longitude": "139.53333000" + }, + { + "id": "64473", + "name": "Tatebayashi-shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.24597000", + "longitude": "139.53533000" + }, + { + "id": "64506", + "name": "Tomioka", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.25411000", + "longitude": "138.89813000" + }, + { + "id": "64507", + "name": "Tomioka-shi", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.25000000", + "longitude": "138.88333000" + }, + { + "id": "64684", + "name": "Yoshii", + "state_id": 862, + "state_code": "10", + "country_id": 109, + "country_code": "JP", + "latitude": "36.25000000", + "longitude": "138.98333000" + }, + { + "id": "63230", + "name": "Aki-takata Shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.70248000", + "longitude": "132.67770000" + }, + { + "id": "64747", + "name": "Ōno-hara", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.28333000", + "longitude": "132.26667000" + }, + { + "id": "64760", + "name": "Ōtake", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.20754000", + "longitude": "132.22063000" + }, + { + "id": "64761", + "name": "Ōtake-shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.25787000", + "longitude": "132.18756000" + }, + { + "id": "63335", + "name": "Etajima-shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.21989000", + "longitude": "132.44345000" + }, + { + "id": "63337", + "name": "Fuchū-shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.56667000", + "longitude": "133.23333000" + }, + { + "id": "63338", + "name": "Fuchūchō", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.57350000", + "longitude": "133.23513000" + }, + { + "id": "63373", + "name": "Fukuyama", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.48333000", + "longitude": "133.36667000" + }, + { + "id": "63374", + "name": "Fukuyama Shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.52342000", + "longitude": "133.33779000" + }, + { + "id": "63449", + "name": "Hatsukaichi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.35000000", + "longitude": "132.33333000" + }, + { + "id": "63450", + "name": "Hatsukaichi-shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.35000000", + "longitude": "132.30000000" + }, + { + "id": "63459", + "name": "Higashihiroshima Shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.44755000", + "longitude": "132.76116000" + }, + { + "id": "63499", + "name": "Hiroshima", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.40000000", + "longitude": "132.45000000" + }, + { + "id": "63500", + "name": "Hiroshima-shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.47942000", + "longitude": "132.45312000" + }, + { + "id": "63575", + "name": "Innoshima", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.28333000", + "longitude": "133.18333000" + }, + { + "id": "63712", + "name": "Kannabechō-yahiro", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.55808000", + "longitude": "133.41796000" + }, + { + "id": "63868", + "name": "Kure", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.23222000", + "longitude": "132.56658000" + }, + { + "id": "63869", + "name": "Kure-shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.22448000", + "longitude": "132.62914000" + }, + { + "id": "63948", + "name": "Mihara", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.40000000", + "longitude": "133.08333000" + }, + { + "id": "63949", + "name": "Mihara Shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.45817000", + "longitude": "133.00395000" + }, + { + "id": "63998", + "name": "Miyajima", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.29907000", + "longitude": "132.32186000" + }, + { + "id": "64013", + "name": "Miyoshi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.80000000", + "longitude": "132.85000000" + }, + { + "id": "64014", + "name": "Miyoshi Shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.79201000", + "longitude": "132.86435000" + }, + { + "id": "64212", + "name": "Onomichi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.41667000", + "longitude": "133.20000000" + }, + { + "id": "64213", + "name": "Onomichi-shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.42630000", + "longitude": "133.16329000" + }, + { + "id": "64368", + "name": "Shōbara", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.85000000", + "longitude": "133.01667000" + }, + { + "id": "64369", + "name": "Shōbara-shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.94831000", + "longitude": "133.06769000" + }, + { + "id": "64347", + "name": "Shin’ichi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.55543000", + "longitude": "133.27297000" + }, + { + "id": "64445", + "name": "Takehara", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.33833000", + "longitude": "132.91667000" + }, + { + "id": "64446", + "name": "Takehara-shi", + "state_id": 828, + "state_code": "34", + "country_id": 109, + "country_code": "JP", + "latitude": "34.35000000", + "longitude": "132.90000000" + }, + { + "id": "63211", + "name": "Abashiri", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "44.02127000", + "longitude": "144.26971000" + }, + { + "id": "63212", + "name": "Abashiri Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.98565000", + "longitude": "144.21051000" + }, + { + "id": "63225", + "name": "Akabira", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.55139000", + "longitude": "142.05306000" + }, + { + "id": "63226", + "name": "Akabira-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.56790000", + "longitude": "142.06281000" + }, + { + "id": "63259", + "name": "Asahikawa", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.77063000", + "longitude": "142.36489000" + }, + { + "id": "63264", + "name": "Ashibetsu", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.50972000", + "longitude": "142.18556000" + }, + { + "id": "63265", + "name": "Ashibetsu-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.42542000", + "longitude": "142.20161000" + }, + { + "id": "63285", + "name": "Bibai", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.32472000", + "longitude": "141.85861000" + }, + { + "id": "63309", + "name": "Chitose", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.81944000", + "longitude": "141.65222000" + }, + { + "id": "63310", + "name": "Chitose Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.80048000", + "longitude": "141.50951000" + }, + { + "id": "63322", + "name": "Date", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.46806000", + "longitude": "140.86806000" + }, + { + "id": "63324", + "name": "Date-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.49337000", + "longitude": "140.89142000" + }, + { + "id": "63326", + "name": "Ebetsu", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.10806000", + "longitude": "141.55056000" + }, + { + "id": "63333", + "name": "Eniwa-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.88333000", + "longitude": "141.56667000" + }, + { + "id": "63356", + "name": "Fukagawa", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.70806000", + "longitude": "142.03917000" + }, + { + "id": "63357", + "name": "Fukagawa-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.79334000", + "longitude": "142.09923000" + }, + { + "id": "63378", + "name": "Furano-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.28182000", + "longitude": "142.47349000" + }, + { + "id": "63416", + "name": "Hakodate", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "41.77583000", + "longitude": "140.73667000" + }, + { + "id": "63417", + "name": "Hakodate Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "41.83754000", + "longitude": "140.92597000" + }, + { + "id": "63516", + "name": "Hokuto", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "41.81626000", + "longitude": "140.63472000" + }, + { + "id": "63519", + "name": "Hokuto-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "41.86411000", + "longitude": "140.55424000" + }, + { + "id": "63521", + "name": "Honchō", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "41.89440000", + "longitude": "140.69386000" + }, + { + "id": "63594", + "name": "Ishikari", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.23972000", + "longitude": "141.35389000" + }, + { + "id": "63595", + "name": "Ishikari-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.46596000", + "longitude": "141.44298000" + }, + { + "id": "63626", + "name": "Iwamizawa", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.20028000", + "longitude": "141.75972000" + }, + { + "id": "63627", + "name": "Iwamizawa-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.18086000", + "longitude": "141.79744000" + }, + { + "id": "63628", + "name": "Iwanai", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.97444000", + "longitude": "140.50889000" + }, + { + "id": "63691", + "name": "Kamiiso", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "41.82013000", + "longitude": "140.64482000" + }, + { + "id": "63692", + "name": "Kamikawa", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.84000000", + "longitude": "142.77111000" + }, + { + "id": "63800", + "name": "Kitahiroshima", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.97583000", + "longitude": "141.56722000" + }, + { + "id": "63801", + "name": "Kitahiroshima-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.98581000", + "longitude": "141.55678000" + }, + { + "id": "63809", + "name": "Kitami", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.80306000", + "longitude": "143.89083000" + }, + { + "id": "63851", + "name": "Ktiami Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.85160000", + "longitude": "143.71520000" + }, + { + "id": "63886", + "name": "Kushiro", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.97500000", + "longitude": "144.37472000" + }, + { + "id": "63887", + "name": "Kushiro Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.15910000", + "longitude": "144.06647000" + }, + { + "id": "63917", + "name": "Makubetsu", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "45.37139000", + "longitude": "141.82111000" + }, + { + "id": "63951", + "name": "Mikasa", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.25581000", + "longitude": "141.88818000" + }, + { + "id": "63952", + "name": "Mikasa-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.23976000", + "longitude": "141.99273000" + }, + { + "id": "64024", + "name": "Mombetsu", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "44.35250000", + "longitude": "143.35250000" + }, + { + "id": "64025", + "name": "Monbetsu Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "44.20323000", + "longitude": "143.29293000" + }, + { + "id": "64038", + "name": "Motomachi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.82634000", + "longitude": "144.09638000" + }, + { + "id": "64049", + "name": "Muroran", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.31722000", + "longitude": "140.98806000" + }, + { + "id": "64050", + "name": "Muroran-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.36659000", + "longitude": "140.98845000" + }, + { + "id": "64117", + "name": "Nayoro", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "44.35056000", + "longitude": "142.45778000" + }, + { + "id": "64118", + "name": "Nayoro Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "44.33951000", + "longitude": "142.45932000" + }, + { + "id": "64120", + "name": "Nemuro", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.32361000", + "longitude": "145.57500000" + }, + { + "id": "64121", + "name": "Nemuro-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.33333000", + "longitude": "145.61667000" + }, + { + "id": "64145", + "name": "Niseko Town", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.77871000", + "longitude": "140.66903000" + }, + { + "id": "64161", + "name": "Noboribetsu", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.45215000", + "longitude": "141.17914000" + }, + { + "id": "64162", + "name": "Noboribetsu-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.46565000", + "longitude": "141.07578000" + }, + { + "id": "64180", + "name": "Obihiro", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.91722000", + "longitude": "143.20444000" + }, + { + "id": "64181", + "name": "Obihiro Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.75736000", + "longitude": "143.03061000" + }, + { + "id": "64215", + "name": "Otaru", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.18944000", + "longitude": "141.00222000" + }, + { + "id": "64216", + "name": "Otaru-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.15628000", + "longitude": "141.02572000" + }, + { + "id": "64217", + "name": "Otofuke", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.99167000", + "longitude": "143.20028000" + }, + { + "id": "64224", + "name": "Rebun Gun", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "45.38263000", + "longitude": "141.02839000" + }, + { + "id": "64227", + "name": "Rishiri Gun", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "45.18244000", + "longitude": "141.22859000" + }, + { + "id": "64228", + "name": "Rishiri Town", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "45.15928000", + "longitude": "141.19629000" + }, + { + "id": "64230", + "name": "Rumoi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.93444000", + "longitude": "141.64278000" + }, + { + "id": "64231", + "name": "Rumoi-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.88560000", + "longitude": "141.75567000" + }, + { + "id": "64285", + "name": "Sapporo", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.06667000", + "longitude": "141.35000000" + }, + { + "id": "64286", + "name": "Sapporo-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.06667000", + "longitude": "141.35000000" + }, + { + "id": "64310", + "name": "Shibetsu", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.65899000", + "longitude": "145.13197000" + }, + { + "id": "64311", + "name": "Shibetsu Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "44.11522000", + "longitude": "142.54054000" + }, + { + "id": "64329", + "name": "Shimo-furano", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.35000000", + "longitude": "142.38333000" + }, + { + "id": "64354", + "name": "Shiraoi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.55000000", + "longitude": "141.35000000" + }, + { + "id": "64365", + "name": "Shizunai-furukawachō", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.33389000", + "longitude": "142.36694000" + }, + { + "id": "64386", + "name": "Sunagawa", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.48639000", + "longitude": "141.90556000" + }, + { + "id": "64387", + "name": "Sunagawa-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.50328000", + "longitude": "141.93274000" + }, + { + "id": "64451", + "name": "Takikawa", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.55278000", + "longitude": "141.90639000" + }, + { + "id": "64452", + "name": "Takikawa-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.60837000", + "longitude": "141.94988000" + }, + { + "id": "64565", + "name": "Tōbetsu", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.21694000", + "longitude": "141.51694000" + }, + { + "id": "64501", + "name": "Tomakomai", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.63694000", + "longitude": "141.60333000" + }, + { + "id": "64502", + "name": "Tomakomai Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "42.68226000", + "longitude": "141.57948000" + }, + { + "id": "64607", + "name": "Utashinai", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.51667000", + "longitude": "142.05000000" + }, + { + "id": "64608", + "name": "Utashinai-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.49366000", + "longitude": "142.03878000" + }, + { + "id": "64619", + "name": "Wakkanai", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "45.40944000", + "longitude": "141.67389000" + }, + { + "id": "64620", + "name": "Wakkanai Shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "45.33243000", + "longitude": "141.82831000" + }, + { + "id": "64704", + "name": "Yūbari", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.03778000", + "longitude": "141.95778000" + }, + { + "id": "64705", + "name": "Yūbari-shi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.04336000", + "longitude": "142.11065000" + }, + { + "id": "64668", + "name": "Yoichi", + "state_id": 832, + "state_code": "01", + "country_id": 109, + "country_code": "JP", + "latitude": "43.20389000", + "longitude": "140.77028000" + }, + { + "id": "63220", + "name": "Aioi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.80361000", + "longitude": "134.46806000" + }, + { + "id": "63221", + "name": "Aioi Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.82719000", + "longitude": "134.46699000" + }, + { + "id": "63228", + "name": "Akashi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.65524000", + "longitude": "135.00687000" + }, + { + "id": "63229", + "name": "Akashi Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.68277000", + "longitude": "134.94029000" + }, + { + "id": "63238", + "name": "Amagasaki Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.73544000", + "longitude": "135.41181000" + }, + { + "id": "63256", + "name": "Asago-shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.26249000", + "longitude": "134.82527000" + }, + { + "id": "63267", + "name": "Ashiya", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.72807000", + "longitude": "135.30264000" + }, + { + "id": "63268", + "name": "Ashiya Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.74853000", + "longitude": "135.29759000" + }, + { + "id": "63275", + "name": "Awaji Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.49749000", + "longitude": "134.91331000" + }, + { + "id": "63367", + "name": "Fukura", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.25765000", + "longitude": "134.71535000" + }, + { + "id": "63478", + "name": "Himeji", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.81667000", + "longitude": "134.70000000" + }, + { + "id": "63479", + "name": "Himeji Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.90134000", + "longitude": "134.66316000" + }, + { + "id": "63608", + "name": "Itami", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.78427000", + "longitude": "135.40126000" + }, + { + "id": "63609", + "name": "Itami Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.78675000", + "longitude": "135.40562000" + }, + { + "id": "63671", + "name": "Kakogawa Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.78472000", + "longitude": "134.84897000" + }, + { + "id": "63672", + "name": "Kakogawachō-honmachi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.76943000", + "longitude": "134.82905000" + }, + { + "id": "63724", + "name": "Kariya", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.75136000", + "longitude": "134.38734000" + }, + { + "id": "63726", + "name": "Kasai Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.92476000", + "longitude": "134.85359000" + }, + { + "id": "63765", + "name": "Katō Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.92714000", + "longitude": "135.02134000" + }, + { + "id": "63772", + "name": "Kawanishi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.81667000", + "longitude": "135.41667000" + }, + { + "id": "63773", + "name": "Kawanishi Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.87955000", + "longitude": "135.40919000" + }, + { + "id": "63820", + "name": "Kobe", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.69130000", + "longitude": "135.18300000" + }, + { + "id": "63953", + "name": "Miki", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.80000000", + "longitude": "134.98333000" + }, + { + "id": "63954", + "name": "Miki Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.83553000", + "longitude": "135.05822000" + }, + { + "id": "63965", + "name": "Minamiawaji Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.27530000", + "longitude": "134.76465000" + }, + { + "id": "64148", + "name": "Nishinomiya Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.78194000", + "longitude": "135.30247000" + }, + { + "id": "64149", + "name": "Nishinomiya-hama", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.71562000", + "longitude": "135.33199000" + }, + { + "id": "64156", + "name": "Nishiwaki", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.98419000", + "longitude": "134.97407000" + }, + { + "id": "64157", + "name": "Nishiwaki-shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.01098000", + "longitude": "134.99650000" + }, + { + "id": "64208", + "name": "Ono", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.85000000", + "longitude": "134.93333000" + }, + { + "id": "64210", + "name": "Ono Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.85750000", + "longitude": "134.95129000" + }, + { + "id": "64276", + "name": "Sanda Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.95506000", + "longitude": "135.21660000" + }, + { + "id": "64277", + "name": "Sandachō", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88444000", + "longitude": "135.22694000" + }, + { + "id": "64288", + "name": "Sasayama", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.06667000", + "longitude": "135.21667000" + }, + { + "id": "64289", + "name": "Sasayama-shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.07523000", + "longitude": "135.23087000" + }, + { + "id": "64352", + "name": "Shirahamachō-usazakiminami", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.78333000", + "longitude": "134.71667000" + }, + { + "id": "64363", + "name": "Shisō-shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.15466000", + "longitude": "134.54337000" + }, + { + "id": "64384", + "name": "Sumoto", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.34322000", + "longitude": "134.88911000" + }, + { + "id": "64385", + "name": "Sumoto Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.34533000", + "longitude": "134.85858000" + }, + { + "id": "64418", + "name": "Taka-gun", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.08473000", + "longitude": "134.90474000" + }, + { + "id": "64433", + "name": "Takarazuka", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.79936000", + "longitude": "135.35697000" + }, + { + "id": "64434", + "name": "Takarazuka Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.86008000", + "longitude": "135.33197000" + }, + { + "id": "64435", + "name": "Takasago Shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.77796000", + "longitude": "134.78665000" + }, + { + "id": "64466", + "name": "Tanba-shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.17715000", + "longitude": "135.04972000" + }, + { + "id": "64477", + "name": "Tatsuno-shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88804000", + "longitude": "134.51910000" + }, + { + "id": "64478", + "name": "Tatsunochō-tominaga", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.86437000", + "longitude": "134.55200000" + }, + { + "id": "64531", + "name": "Toyooka", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.54008000", + "longitude": "134.82038000" + }, + { + "id": "64532", + "name": "Toyooka-shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.51384000", + "longitude": "134.82724000" + }, + { + "id": "64627", + "name": "Yabu", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.40304000", + "longitude": "134.77118000" + }, + { + "id": "64628", + "name": "Yabu-shi", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.38333000", + "longitude": "134.81667000" + }, + { + "id": "64647", + "name": "Yamazakichō-nakabirose", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "35.00000000", + "longitude": "134.55000000" + }, + { + "id": "64658", + "name": "Yashiro", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.91667000", + "longitude": "134.96667000" + }, + { + "id": "64678", + "name": "Yonedacho Sendo", + "state_id": 831, + "state_code": "28", + "country_id": 109, + "country_code": "JP", + "latitude": "34.77560000", + "longitude": "134.82551000" + }, + { + "id": "63244", + "name": "Ami", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.03333000", + "longitude": "140.20000000" + }, + { + "id": "64714", + "name": "Ōarai", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.31409000", + "longitude": "140.58389000" + }, + { + "id": "64742", + "name": "Ōmiya", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.55000000", + "longitude": "140.41667000" + }, + { + "id": "63281", + "name": "Bandō", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06997000", + "longitude": "139.86705000" + }, + { + "id": "63282", + "name": "Bandō-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06384000", + "longitude": "139.88787000" + }, + { + "id": "63300", + "name": "Chikusei", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.31600000", + "longitude": "139.98238000" + }, + { + "id": "63301", + "name": "Chikusei-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.28938000", + "longitude": "139.98692000" + }, + { + "id": "63317", + "name": "Daigo", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.76667000", + "longitude": "140.35000000" + }, + { + "id": "63331", + "name": "Edosaki", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.95000000", + "longitude": "140.31667000" + }, + { + "id": "63354", + "name": "Fujishiro", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.91667000", + "longitude": "140.11667000" + }, + { + "id": "63376", + "name": "Funaishikawa", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.46667000", + "longitude": "140.56667000" + }, + { + "id": "63504", + "name": "Hitachi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.60000000", + "longitude": "140.65000000" + }, + { + "id": "63505", + "name": "Hitachi-Naka", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.39659000", + "longitude": "140.53479000" + }, + { + "id": "63506", + "name": "Hitachi-ota", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.55130000", + "longitude": "140.52821000" + }, + { + "id": "63507", + "name": "Hitachi-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.62492000", + "longitude": "140.61876000" + }, + { + "id": "63509", + "name": "Hitachiōmiya-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.61371000", + "longitude": "140.33990000" + }, + { + "id": "63510", + "name": "Hitachiōta-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.64836000", + "longitude": "140.50536000" + }, + { + "id": "63508", + "name": "Hitachinaka-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.39596000", + "longitude": "140.55789000" + }, + { + "id": "63515", + "name": "Hokota-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.17337000", + "longitude": "140.51993000" + }, + { + "id": "63570", + "name": "Inashiki", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.95633000", + "longitude": "140.32356000" + }, + { + "id": "63571", + "name": "Inashiki-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.94563000", + "longitude": "140.36889000" + }, + { + "id": "63592", + "name": "Ishige", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.11667000", + "longitude": "139.96667000" + }, + { + "id": "63601", + "name": "Ishioka", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.18333000", + "longitude": "140.26667000" + }, + { + "id": "63602", + "name": "Ishioka-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.22776000", + "longitude": "140.21786000" + }, + { + "id": "63606", + "name": "Itako", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.93333000", + "longitude": "140.55000000" + }, + { + "id": "63607", + "name": "Itako-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.96100000", + "longitude": "140.56210000" + }, + { + "id": "63620", + "name": "Iwai", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.05000000", + "longitude": "139.90000000" + }, + { + "id": "63631", + "name": "Iwase", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.35000000", + "longitude": "140.10000000" + }, + { + "id": "63653", + "name": "Jōsō-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06409000", + "longitude": "139.96397000" + }, + { + "id": "63698", + "name": "Kamisu-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.85126000", + "longitude": "140.71171000" + }, + { + "id": "63727", + "name": "Kasama", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.38333000", + "longitude": "140.26667000" + }, + { + "id": "63728", + "name": "Kasama-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.35651000", + "longitude": "140.26935000" + }, + { + "id": "63738", + "name": "Kashima-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.96536000", + "longitude": "140.64474000" + }, + { + "id": "63749", + "name": "Kasumigaura", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.15326000", + "longitude": "140.24635000" + }, + { + "id": "63750", + "name": "Kasumigaura-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.10937000", + "longitude": "140.30205000" + }, + { + "id": "63759", + "name": "Katsuta", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.38333000", + "longitude": "140.53333000" + }, + { + "id": "63802", + "name": "Kitaibaraki", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.78671000", + "longitude": "140.74901000" + }, + { + "id": "63803", + "name": "Kitaibaraki-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.83987000", + "longitude": "140.68736000" + }, + { + "id": "63824", + "name": "Koga", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.18333000", + "longitude": "139.71667000" + }, + { + "id": "63826", + "name": "Koga-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.17975000", + "longitude": "139.77534000" + }, + { + "id": "63914", + "name": "Makabe", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.26667000", + "longitude": "140.10000000" + }, + { + "id": "63990", + "name": "Mito", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.35000000", + "longitude": "140.45000000" + }, + { + "id": "63991", + "name": "Mito-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.37053000", + "longitude": "140.43559000" + }, + { + "id": "63993", + "name": "Mitsukaidō", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.01667000", + "longitude": "139.98333000" + }, + { + "id": "64032", + "name": "Moriya", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.93333000", + "longitude": "140.00000000" + }, + { + "id": "64033", + "name": "Moriya-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.95140000", + "longitude": "139.97539000" + }, + { + "id": "64081", + "name": "Naka", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.05000000", + "longitude": "140.16667000" + }, + { + "id": "64082", + "name": "Naka-gun", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.46934000", + "longitude": "140.47943000" + }, + { + "id": "64093", + "name": "Namegata", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.00705000", + "longitude": "140.49623000" + }, + { + "id": "64094", + "name": "Namegata-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06526000", + "longitude": "140.47173000" + }, + { + "id": "64202", + "name": "Okunoya", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.28333000", + "longitude": "140.41667000" + }, + { + "id": "64205", + "name": "Omitama-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.20403000", + "longitude": "140.35980000" + }, + { + "id": "64233", + "name": "Ryūgasaki", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.90000000", + "longitude": "140.18333000" + }, + { + "id": "64234", + "name": "Ryūgasaki-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.92249000", + "longitude": "140.18527000" + }, + { + "id": "64255", + "name": "Sakai", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.10000000", + "longitude": "139.80000000" + }, + { + "id": "64271", + "name": "Sakuragawa", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.25052000", + "longitude": "140.11565000" + }, + { + "id": "64272", + "name": "Sakuragawa-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.32746000", + "longitude": "140.10792000" + }, + { + "id": "64332", + "name": "Shimodate", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.30000000", + "longitude": "139.98333000" + }, + { + "id": "64337", + "name": "Shimotsuma-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.18743000", + "longitude": "139.96642000" + }, + { + "id": "64419", + "name": "Takahagi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.71667000", + "longitude": "140.71667000" + }, + { + "id": "64510", + "name": "Tomobe", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.35000000", + "longitude": "140.30000000" + }, + { + "id": "64515", + "name": "Toride", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.90000000", + "longitude": "140.08333000" + }, + { + "id": "64516", + "name": "Toride-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.91286000", + "longitude": "140.08009000" + }, + { + "id": "64540", + "name": "Tsuchiura-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.08333000", + "longitude": "140.20000000" + }, + { + "id": "64545", + "name": "Tsukuba", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.20000000", + "longitude": "140.10000000" + }, + { + "id": "64546", + "name": "Tsukuba-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.10532000", + "longitude": "140.08174000" + }, + { + "id": "64547", + "name": "Tsukubamirai", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.98411000", + "longitude": "140.00929000" + }, + { + "id": "64548", + "name": "Tsukubamirai-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.98201000", + "longitude": "140.03812000" + }, + { + "id": "64603", + "name": "Ushiku", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.96667000", + "longitude": "140.13333000" + }, + { + "id": "64604", + "name": "Ushiku-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "35.97175000", + "longitude": "140.18578000" + }, + { + "id": "64706", + "name": "Yūki", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.30000000", + "longitude": "139.88333000" + }, + { + "id": "64707", + "name": "Yūki-shi", + "state_id": 851, + "state_code": "08", + "country_id": 109, + "country_code": "JP", + "latitude": "36.26127000", + "longitude": "139.86403000" + }, + { + "id": "63420", + "name": "Hakui", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.88333000", + "longitude": "136.78333000" + }, + { + "id": "63421", + "name": "Hakui Shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.91136000", + "longitude": "136.81626000" + }, + { + "id": "63422", + "name": "Hakusan Shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.27558000", + "longitude": "136.66966000" + }, + { + "id": "63657", + "name": "Kaga Shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.25503000", + "longitude": "136.37963000" + }, + { + "id": "63660", + "name": "Kahoku Shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.74365000", + "longitude": "136.73273000" + }, + { + "id": "63706", + "name": "Kanazawa", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.60000000", + "longitude": "136.61667000" + }, + { + "id": "63707", + "name": "Kanazawa-shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.51919000", + "longitude": "136.70836000" + }, + { + "id": "63837", + "name": "Komatsu", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.40263000", + "longitude": "136.45088000" + }, + { + "id": "63938", + "name": "Matsutō", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.51667000", + "longitude": "136.56667000" + }, + { + "id": "64099", + "name": "Nanao Shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "37.07844000", + "longitude": "136.92860000" + }, + { + "id": "64165", + "name": "Nomi Shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.43593000", + "longitude": "136.54456000" + }, + { + "id": "64166", + "name": "Nonoichi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.53333000", + "longitude": "136.61667000" + }, + { + "id": "64167", + "name": "Nonoichi-shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.52288000", + "longitude": "136.60589000" + }, + { + "id": "64394", + "name": "Suzu", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "37.43459000", + "longitude": "137.26009000" + }, + { + "id": "64395", + "name": "Suzu Shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "37.45533000", + "longitude": "137.22587000" + }, + { + "id": "64539", + "name": "Tsubata", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.67012000", + "longitude": "136.74030000" + }, + { + "id": "64556", + "name": "Tsurugi-asahimachi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "36.45000000", + "longitude": "136.63333000" + }, + { + "id": "64615", + "name": "Wajima Shi", + "state_id": 830, + "state_code": "17", + "country_id": 109, + "country_code": "JP", + "latitude": "37.33753000", + "longitude": "136.88757000" + }, + { + "id": "64721", + "name": "Ōfunato", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.07167000", + "longitude": "141.71667000" + }, + { + "id": "64722", + "name": "Ōfunato-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.06667000", + "longitude": "141.71667000" + }, + { + "id": "64755", + "name": "Ōshū", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.13927000", + "longitude": "141.16850000" + }, + { + "id": "64756", + "name": "Ōshū-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.12962000", + "longitude": "141.09479000" + }, + { + "id": "64765", + "name": "Ōtsuchi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.36667000", + "longitude": "141.90000000" + }, + { + "id": "63406", + "name": "Hachimantai", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.89979000", + "longitude": "141.12989000" + }, + { + "id": "63407", + "name": "Hachimantai Shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "40.02390000", + "longitude": "140.99113000" + }, + { + "id": "63430", + "name": "Hanamaki", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.38333000", + "longitude": "141.11667000" + }, + { + "id": "63431", + "name": "Hanamaki Shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.44187000", + "longitude": "141.16751000" + }, + { + "id": "63541", + "name": "Ichinohe", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "40.21965000", + "longitude": "141.28986000" + }, + { + "id": "63544", + "name": "Ichinoseki", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "38.91667000", + "longitude": "141.13333000" + }, + { + "id": "63545", + "name": "Ichinoseki-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "38.91667000", + "longitude": "141.13333000" + }, + { + "id": "63634", + "name": "Iwate-gun", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.97238000", + "longitude": "141.22719000" + }, + { + "id": "63678", + "name": "Kamaishi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.27694000", + "longitude": "141.86801000" + }, + { + "id": "63679", + "name": "Kamaishi-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.28748000", + "longitude": "141.79854000" + }, + { + "id": "63804", + "name": "Kitakami", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.28333000", + "longitude": "141.11667000" + }, + { + "id": "63805", + "name": "Kitakami-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.30765000", + "longitude": "141.00795000" + }, + { + "id": "63854", + "name": "Kuji", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "40.18778000", + "longitude": "141.76889000" + }, + { + "id": "63855", + "name": "Kuji-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "40.14364000", + "longitude": "141.65918000" + }, + { + "id": "64000", + "name": "Miyako", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.64691000", + "longitude": "141.94057000" + }, + { + "id": "64001", + "name": "Miyako-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.65724000", + "longitude": "141.85144000" + }, + { + "id": "64021", + "name": "Mizusawa", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.13333000", + "longitude": "141.13333000" + }, + { + "id": "64030", + "name": "Morioka", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.70000000", + "longitude": "141.15000000" + }, + { + "id": "64031", + "name": "Morioka-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.74546000", + "longitude": "141.26915000" + }, + { + "id": "64140", + "name": "Ninohe", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "40.29081000", + "longitude": "141.31334000" + }, + { + "id": "64141", + "name": "Ninohe Shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "40.23798000", + "longitude": "141.19576000" + }, + { + "id": "64226", + "name": "Rikuzentakata-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.04082000", + "longitude": "141.57703000" + }, + { + "id": "64364", + "name": "Shizukuishi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.69414000", + "longitude": "140.98442000" + }, + { + "id": "64453", + "name": "Takizawa-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.80000000", + "longitude": "141.06667000" + }, + { + "id": "64573", + "name": "Tōno", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.31667000", + "longitude": "141.53333000" + }, + { + "id": "64574", + "name": "Tōno-shi", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.36479000", + "longitude": "141.50922000" + }, + { + "id": "64636", + "name": "Yamada", + "state_id": 856, + "state_code": "03", + "country_id": 109, + "country_code": "JP", + "latitude": "39.46667000", + "longitude": "141.95000000" + }, + { + "id": "63460", + "name": "Higashikagawa Shi", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.21158000", + "longitude": "134.33350000" + }, + { + "id": "63718", + "name": "Kan’onji Shi", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.08457000", + "longitude": "133.67448000" + }, + { + "id": "63719", + "name": "Kan’onjichō", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.12760000", + "longitude": "133.64598000" + }, + { + "id": "63921", + "name": "Marugame", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.28333000", + "longitude": "133.78333000" + }, + { + "id": "63922", + "name": "Marugame Shi", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.28560000", + "longitude": "133.81535000" + }, + { + "id": "63992", + "name": "Mitoyo Shi", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.16176000", + "longitude": "133.72282000" + }, + { + "id": "64260", + "name": "Sakaide Shi", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.32403000", + "longitude": "133.89222000" + }, + { + "id": "64261", + "name": "Sakaidechō", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.32278000", + "longitude": "133.83560000" + }, + { + "id": "64283", + "name": "Sanuki-shi", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.26615000", + "longitude": "134.20941000" + }, + { + "id": "64317", + "name": "Shido", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.32333000", + "longitude": "134.17333000" + }, + { + "id": "64406", + "name": "Tadotsu", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.27500000", + "longitude": "133.75000000" + }, + { + "id": "64427", + "name": "Takamatsu", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.33333000", + "longitude": "134.05000000" + }, + { + "id": "64428", + "name": "Takamatsu Shi", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.26852000", + "longitude": "134.05450000" + }, + { + "id": "64514", + "name": "Tonoshō", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.48047000", + "longitude": "134.17017000" + }, + { + "id": "64710", + "name": "Zentsūji Shi", + "state_id": 864, + "state_code": "37", + "country_id": 109, + "country_code": "JP", + "latitude": "34.22581000", + "longitude": "133.77692000" + }, + { + "id": "63222", + "name": "Aira Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.78460000", + "longitude": "130.60668000" + }, + { + "id": "63235", + "name": "Akune", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "32.01667000", + "longitude": "130.20000000" + }, + { + "id": "63236", + "name": "Akune Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "32.02516000", + "longitude": "130.19768000" + }, + { + "id": "63242", + "name": "Amami", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "28.37690000", + "longitude": "129.49379000" + }, + { + "id": "63243", + "name": "Amami Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "28.34542000", + "longitude": "129.50221000" + }, + { + "id": "64733", + "name": "Ōkuchi-shinohara", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "32.06779000", + "longitude": "130.62439000" + }, + { + "id": "63428", + "name": "Hamanoichi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.71667000", + "longitude": "130.73333000" + }, + { + "id": "63485", + "name": "Hioki", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.58333000", + "longitude": "130.35000000" + }, + { + "id": "63486", + "name": "Hioki Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.59929000", + "longitude": "130.38208000" + }, + { + "id": "63535", + "name": "Ibusuki", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.23333000", + "longitude": "130.65000000" + }, + { + "id": "63536", + "name": "Ibusuki Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.22962000", + "longitude": "130.58060000" + }, + { + "id": "63540", + "name": "Ichikikushikino Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.73281000", + "longitude": "130.28893000" + }, + { + "id": "63553", + "name": "Ijūin", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.61667000", + "longitude": "130.40000000" + }, + { + "id": "63580", + "name": "Isa Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "32.05835000", + "longitude": "130.60104000" + }, + { + "id": "63641", + "name": "Izumi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "32.08333000", + "longitude": "130.36667000" + }, + { + "id": "63642", + "name": "Izumi Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "32.06412000", + "longitude": "130.36097000" + }, + { + "id": "63658", + "name": "Kagoshima", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.56667000", + "longitude": "130.55000000" + }, + { + "id": "63659", + "name": "Kagoshima Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.58003000", + "longitude": "130.52806000" + }, + { + "id": "63667", + "name": "Kajiki", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.73333000", + "longitude": "130.66667000" + }, + { + "id": "63713", + "name": "Kanoya", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.38333000", + "longitude": "130.85000000" + }, + { + "id": "63714", + "name": "Kanoya Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.42664000", + "longitude": "130.86735000" + }, + { + "id": "63732", + "name": "Kaseda-shirakame", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.41667000", + "longitude": "130.31667000" + }, + { + "id": "63789", + "name": "Kirishima Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.80558000", + "longitude": "130.78164000" + }, + { + "id": "63829", + "name": "Kokubu-matsuki", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.73333000", + "longitude": "130.76667000" + }, + { + "id": "63847", + "name": "Koseda", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "30.38796000", + "longitude": "130.64924000" + }, + { + "id": "63849", + "name": "Koshima", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "30.23461000", + "longitude": "130.53517000" + }, + { + "id": "63873", + "name": "Kurio", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "30.27123000", + "longitude": "130.42360000" + }, + { + "id": "63883", + "name": "Kushikino", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.71667000", + "longitude": "130.26667000" + }, + { + "id": "63918", + "name": "Makurazaki", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.26667000", + "longitude": "130.31667000" + }, + { + "id": "63919", + "name": "Makurazaki Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.29139000", + "longitude": "130.30681000" + }, + { + "id": "63967", + "name": "Minamikyushu Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.34038000", + "longitude": "130.43677000" + }, + { + "id": "63969", + "name": "Minamisatsuma Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.38793000", + "longitude": "130.26961000" + }, + { + "id": "64006", + "name": "Miyanoura", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "30.42690000", + "longitude": "130.57151000" + }, + { + "id": "64073", + "name": "Nagata", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "30.39516000", + "longitude": "130.42548000" + }, + { + "id": "64119", + "name": "Naze", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "28.36667000", + "longitude": "129.48333000" + }, + { + "id": "64150", + "name": "Nishinoomote", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "30.73333000", + "longitude": "131.00000000" + }, + { + "id": "64151", + "name": "Nishinoomote Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "30.70536000", + "longitude": "131.01521000" + }, + { + "id": "64291", + "name": "Satsumasendai", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.81667000", + "longitude": "130.30000000" + }, + { + "id": "64292", + "name": "Satsumasendai Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.82376000", + "longitude": "130.25899000" + }, + { + "id": "64314", + "name": "Shibushi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.47600000", + "longitude": "131.10114000" + }, + { + "id": "64315", + "name": "Shibushi-shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.48333000", + "longitude": "131.10000000" + }, + { + "id": "64374", + "name": "Soo Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.65615000", + "longitude": "130.97470000" + }, + { + "id": "64375", + "name": "Sueyoshichō-ninokata", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.65000000", + "longitude": "131.01667000" + }, + { + "id": "64470", + "name": "Tarumizu", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.48333000", + "longitude": "130.70000000" + }, + { + "id": "64471", + "name": "Tarumizu Shi", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "31.51583000", + "longitude": "130.76046000" + }, + { + "id": "64693", + "name": "Yudomari", + "state_id": 840, + "state_code": "46", + "country_id": 109, + "country_code": "JP", + "latitude": "30.23470000", + "longitude": "130.47942000" + }, + { + "id": "63272", + "name": "Atsugi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.44272000", + "longitude": "139.36931000" + }, + { + "id": "63273", + "name": "Atsugi Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.46513000", + "longitude": "139.32707000" + }, + { + "id": "63279", + "name": "Ayase Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.43995000", + "longitude": "139.43089000" + }, + { + "id": "64727", + "name": "Ōiso", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.31558000", + "longitude": "139.31625000" + }, + { + "id": "63296", + "name": "Chigasaki", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.33638000", + "longitude": "139.40434000" + }, + { + "id": "63297", + "name": "Chigasaki Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.34429000", + "longitude": "139.40958000" + }, + { + "id": "63327", + "name": "Ebina Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.43762000", + "longitude": "139.39307000" + }, + { + "id": "63352", + "name": "Fujisawa", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.34926000", + "longitude": "139.47666000" + }, + { + "id": "63353", + "name": "Fujisawa Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.36814000", + "longitude": "139.45899000" + }, + { + "id": "63411", + "name": "Hadano", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.37111000", + "longitude": "139.22361000" + }, + { + "id": "63412", + "name": "Hadano-shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.40000000", + "longitude": "139.20000000" + }, + { + "id": "63418", + "name": "Hakone", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.18945000", + "longitude": "139.02649000" + }, + { + "id": "63451", + "name": "Hayama", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.27651000", + "longitude": "139.57733000" + }, + { + "id": "63495", + "name": "Hiratsuka", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.32785000", + "longitude": "139.33735000" + }, + { + "id": "63496", + "name": "Hiratsuka Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.35099000", + "longitude": "139.32013000" + }, + { + "id": "63586", + "name": "Isehara", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.39932000", + "longitude": "139.31019000" + }, + { + "id": "63587", + "name": "Isehara Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.41011000", + "longitude": "139.29203000" + }, + { + "id": "63680", + "name": "Kamakura", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.30889000", + "longitude": "139.55028000" + }, + { + "id": "63681", + "name": "Kamakura Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.33000000", + "longitude": "139.53798000" + }, + { + "id": "63775", + "name": "Kawasaki", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.52056000", + "longitude": "139.71722000" + }, + { + "id": "63777", + "name": "Kawasaki-shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.56996000", + "longitude": "139.62854000" + }, + { + "id": "63963", + "name": "Minamiashigara", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.31947000", + "longitude": "139.10960000" + }, + { + "id": "63964", + "name": "Minamiashigara Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.30991000", + "longitude": "139.07016000" + }, + { + "id": "63968", + "name": "Minamirinkan", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.49527000", + "longitude": "139.44279000" + }, + { + "id": "63996", + "name": "Miura", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.14000000", + "longitude": "139.61917000" + }, + { + "id": "63997", + "name": "Miura Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.16754000", + "longitude": "139.64104000" + }, + { + "id": "64142", + "name": "Ninomiya", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.30150000", + "longitude": "139.25581000" + }, + { + "id": "64183", + "name": "Odawara", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.25556000", + "longitude": "139.15972000" + }, + { + "id": "64184", + "name": "Odawara-shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.25000000", + "longitude": "139.13333000" + }, + { + "id": "64243", + "name": "Sagamihara-shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.55000000", + "longitude": "139.35000000" + }, + { + "id": "64642", + "name": "Yamakita", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.36344000", + "longitude": "139.07975000" + }, + { + "id": "64644", + "name": "Yamato-shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.46934000", + "longitude": "139.46165000" + }, + { + "id": "64670", + "name": "Yokohama", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.43333000", + "longitude": "139.65000000" + }, + { + "id": "64671", + "name": "Yokohama Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.46225000", + "longitude": "139.57645000" + }, + { + "id": "64672", + "name": "Yokosuka", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.28361000", + "longitude": "139.66722000" + }, + { + "id": "64673", + "name": "Yokosuka Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.24985000", + "longitude": "139.66033000" + }, + { + "id": "64695", + "name": "Yugawara", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.15000000", + "longitude": "139.06667000" + }, + { + "id": "64708", + "name": "Zama", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.48790000", + "longitude": "139.39101000" + }, + { + "id": "64709", + "name": "Zama Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.48752000", + "longitude": "139.40925000" + }, + { + "id": "64711", + "name": "Zushi Shi", + "state_id": 842, + "state_code": "14", + "country_id": 109, + "country_code": "JP", + "latitude": "35.29900000", + "longitude": "139.59125000" + }, + { + "id": "63240", + "name": "Amakusa Gun", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.48513000", + "longitude": "130.07240000" + }, + { + "id": "63241", + "name": "Amakusa Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.38515000", + "longitude": "130.15014000" + }, + { + "id": "63253", + "name": "Arao Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.97619000", + "longitude": "130.47562000" + }, + { + "id": "63269", + "name": "Aso-shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.95608000", + "longitude": "131.09458000" + }, + { + "id": "64769", + "name": "Ōzu", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.88040000", + "longitude": "130.87161000" + }, + { + "id": "63511", + "name": "Hitoyoshi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.21667000", + "longitude": "130.75000000" + }, + { + "id": "63512", + "name": "Hitoyoshi Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.17298000", + "longitude": "130.74013000" + }, + { + "id": "63522", + "name": "Hondomachi-hondo", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.45993000", + "longitude": "130.16713000" + }, + { + "id": "63525", + "name": "Honmachi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.50439000", + "longitude": "130.59952000" + }, + { + "id": "63687", + "name": "Kamiamakusa Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.49550000", + "longitude": "130.40816000" + }, + { + "id": "63901", + "name": "Kōshi Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.89305000", + "longitude": "130.76867000" + }, + { + "id": "63784", + "name": "Kikuchi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.98333000", + "longitude": "130.81667000" + }, + { + "id": "63785", + "name": "Kikuchi Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.99107000", + "longitude": "130.85523000" + }, + { + "id": "63859", + "name": "Kumamoto", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.80589000", + "longitude": "130.69181000" + }, + { + "id": "63860", + "name": "Kumamoto Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.79733000", + "longitude": "130.69171000" + }, + { + "id": "63931", + "name": "Matsubase", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.65000000", + "longitude": "130.66667000" + }, + { + "id": "63959", + "name": "Minamata", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.21667000", + "longitude": "130.40000000" + }, + { + "id": "63960", + "name": "Minamata Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.17055000", + "longitude": "130.46211000" + }, + { + "id": "64457", + "name": "Tamana", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.94716000", + "longitude": "130.57446000" + }, + { + "id": "64458", + "name": "Tamana Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.91550000", + "longitude": "130.56018000" + }, + { + "id": "64580", + "name": "Uekimachi-mōno", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.89964000", + "longitude": "130.68898000" + }, + { + "id": "64587", + "name": "Uki Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.62669000", + "longitude": "130.65491000" + }, + { + "id": "64602", + "name": "Ushibukamachi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.20142000", + "longitude": "130.02171000" + }, + { + "id": "64609", + "name": "Uto", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.68333000", + "longitude": "130.66667000" + }, + { + "id": "64610", + "name": "Uto Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.68092000", + "longitude": "130.61308000" + }, + { + "id": "64637", + "name": "Yamaga Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "33.05587000", + "longitude": "130.72309000" + }, + { + "id": "64664", + "name": "Yatsushiro Shi", + "state_id": 846, + "state_code": "43", + "country_id": 109, + "country_code": "JP", + "latitude": "32.49063000", + "longitude": "130.74972000" + }, + { + "id": "63254", + "name": "Arashiyama", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.01481000", + "longitude": "135.67755000" + }, + { + "id": "63277", + "name": "Ayabe", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.30000000", + "longitude": "135.25000000" + }, + { + "id": "63278", + "name": "Ayabe-shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.35263000", + "longitude": "135.34465000" + }, + { + "id": "63361", + "name": "Fukuchiyama-shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.32404000", + "longitude": "135.11332000" + }, + { + "id": "63654", + "name": "Jōyō Shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.84566000", + "longitude": "135.79760000" + }, + { + "id": "63683", + "name": "Kameoka", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.00000000", + "longitude": "135.58333000" + }, + { + "id": "63684", + "name": "Kameoka-shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.01021000", + "longitude": "135.53900000" + }, + { + "id": "63689", + "name": "Kamigyō-ku", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.02954000", + "longitude": "135.75666000" + }, + { + "id": "63817", + "name": "Kizugawa-shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.73781000", + "longitude": "135.82128000" + }, + { + "id": "63891", + "name": "Kyōtanabe Shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.80779000", + "longitude": "135.76300000" + }, + { + "id": "63892", + "name": "Kyōtango-shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.63089000", + "longitude": "135.04785000" + }, + { + "id": "63890", + "name": "Kyoto", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.02107000", + "longitude": "135.75385000" + }, + { + "id": "63912", + "name": "Maizuru", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.45000000", + "longitude": "135.33333000" + }, + { + "id": "63913", + "name": "Maizuru-shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.47009000", + "longitude": "135.34003000" + }, + { + "id": "64011", + "name": "Miyazu", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.53333000", + "longitude": "135.18333000" + }, + { + "id": "64012", + "name": "Miyazu-shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.55596000", + "longitude": "135.17662000" + }, + { + "id": "64043", + "name": "Mukō Shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.94975000", + "longitude": "135.70269000" + }, + { + "id": "64068", + "name": "Nagaokakyō Shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.92840000", + "longitude": "135.67881000" + }, + { + "id": "64102", + "name": "Nantan-shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "35.22740000", + "longitude": "135.55939000" + }, + { + "id": "64463", + "name": "Tanabe", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.82242000", + "longitude": "135.76604000" + }, + { + "id": "64584", + "name": "Uji", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.89044000", + "longitude": "135.80325000" + }, + { + "id": "64585", + "name": "Uji Shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.90296000", + "longitude": "135.82039000" + }, + { + "id": "64665", + "name": "Yawata", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.87009000", + "longitude": "135.70270000" + }, + { + "id": "64666", + "name": "Yawata Shi", + "state_id": 834, + "state_code": "26", + "country_id": 109, + "country_code": "JP", + "latitude": "34.86662000", + "longitude": "135.71470000" + }, + { + "id": "63501", + "name": "Hisai-motomachi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.66667000", + "longitude": "136.46667000" + }, + { + "id": "63546", + "name": "Iga-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.76855000", + "longitude": "136.13013000" + }, + { + "id": "63567", + "name": "Inabe", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "35.11344000", + "longitude": "136.57205000" + }, + { + "id": "63568", + "name": "Inabe-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "35.16061000", + "longitude": "136.50788000" + }, + { + "id": "63584", + "name": "Ise", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.48333000", + "longitude": "136.70000000" + }, + { + "id": "63585", + "name": "Ise-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.46740000", + "longitude": "136.71585000" + }, + { + "id": "63685", + "name": "Kameyama", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.85000000", + "longitude": "136.45000000" + }, + { + "id": "63686", + "name": "Kameyama Shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.86866000", + "longitude": "136.39345000" + }, + { + "id": "63767", + "name": "Kawage", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.80447000", + "longitude": "136.54645000" + }, + { + "id": "63840", + "name": "Komono", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "35.00000000", + "longitude": "136.51667000" + }, + { + "id": "63861", + "name": "Kumano", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "33.90389000", + "longitude": "136.12214000" + }, + { + "id": "63862", + "name": "Kumano-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "33.92290000", + "longitude": "136.02646000" + }, + { + "id": "63888", + "name": "Kuwana", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "35.05192000", + "longitude": "136.66958000" + }, + { + "id": "63889", + "name": "Kuwana-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "35.06176000", + "longitude": "136.68348000" + }, + { + "id": "63942", + "name": "Matsuzaka-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.56667000", + "longitude": "136.53333000" + }, + { + "id": "64057", + "name": "Nabari", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.61667000", + "longitude": "136.08333000" + }, + { + "id": "64058", + "name": "Nabari-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.62643000", + "longitude": "136.10825000" + }, + { + "id": "64219", + "name": "Owase", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.06667000", + "longitude": "136.20000000" + }, + { + "id": "64323", + "name": "Shima", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.33333000", + "longitude": "136.83333000" + }, + { + "id": "64324", + "name": "Shima-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.33795000", + "longitude": "136.81336000" + }, + { + "id": "64396", + "name": "Suzuka", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88333000", + "longitude": "136.58333000" + }, + { + "id": "64397", + "name": "Suzuka-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88114000", + "longitude": "136.58443000" + }, + { + "id": "64485", + "name": "Toba", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.48330000", + "longitude": "136.84186000" + }, + { + "id": "64486", + "name": "Toba-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.48333000", + "longitude": "136.83333000" + }, + { + "id": "64535", + "name": "Tsu", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.73333000", + "longitude": "136.51667000" + }, + { + "id": "64536", + "name": "Tsu-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.71706000", + "longitude": "136.50616000" + }, + { + "id": "64581", + "name": "Ueno-ebisumachi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.75856000", + "longitude": "136.13108000" + }, + { + "id": "64669", + "name": "Yokkaichi-shi", + "state_id": 833, + "state_code": "24", + "country_id": 109, + "country_code": "JP", + "latitude": "34.96475000", + "longitude": "136.62443000" + }, + { + "id": "64732", + "name": "Ōkawara", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.05000000", + "longitude": "140.73361000" + }, + { + "id": "64752", + "name": "Ōsaki", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.58866000", + "longitude": "140.97300000" + }, + { + "id": "64753", + "name": "Ōsaki Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.68005000", + "longitude": "140.84669000" + }, + { + "id": "63379", + "name": "Furukawa", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.57167000", + "longitude": "140.95556000" + }, + { + "id": "63462", + "name": "Higashimatshushima Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.41089000", + "longitude": "141.17717000" + }, + { + "id": "63463", + "name": "Higashimatsushima", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.40886000", + "longitude": "141.17901000" + }, + { + "id": "63599", + "name": "Ishinomaki", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.41667000", + "longitude": "141.30000000" + }, + { + "id": "63600", + "name": "Ishinomaki Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.47918000", + "longitude": "141.37226000" + }, + { + "id": "63629", + "name": "Iwanuma", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.10472000", + "longitude": "140.85944000" + }, + { + "id": "63630", + "name": "Iwanuma-shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.11667000", + "longitude": "140.88333000" + }, + { + "id": "63673", + "name": "Kakuda", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "37.97451000", + "longitude": "140.77202000" + }, + { + "id": "63674", + "name": "Kakuda Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "37.98828000", + "longitude": "140.77903000" + }, + { + "id": "63781", + "name": "Kesennuma", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.90112000", + "longitude": "141.57746000" + }, + { + "id": "63782", + "name": "Kesennuma Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.91377000", + "longitude": "141.55711000" + }, + { + "id": "63828", + "name": "Kogota", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.55000000", + "longitude": "141.05000000" + }, + { + "id": "63870", + "name": "Kurihara", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.75000000", + "longitude": "141.00000000" + }, + { + "id": "63871", + "name": "Kurihara Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.80895000", + "longitude": "140.94034000" + }, + { + "id": "63923", + "name": "Marumori", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "37.91667000", + "longitude": "140.76667000" + }, + { + "id": "63937", + "name": "Matsushima", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.37357000", + "longitude": "141.06105000" + }, + { + "id": "64116", + "name": "Natori Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.16729000", + "longitude": "140.86666000" + }, + { + "id": "64206", + "name": "Onagawa Chō", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.44660000", + "longitude": "141.44794000" + }, + { + "id": "64225", + "name": "Rifu", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.33092000", + "longitude": "140.97691000" + }, + { + "id": "64300", + "name": "Sendai", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.26667000", + "longitude": "140.86667000" + }, + { + "id": "64348", + "name": "Shiogama", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.31667000", + "longitude": "141.03333000" + }, + { + "id": "64359", + "name": "Shiroishi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.00333000", + "longitude": "140.61833000" + }, + { + "id": "64360", + "name": "Shiroishi Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "37.99691000", + "longitude": "140.57944000" + }, + { + "id": "64407", + "name": "Tagajō Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.29535000", + "longitude": "140.99910000" + }, + { + "id": "64503", + "name": "Tome Shi", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.68583000", + "longitude": "141.25745000" + }, + { + "id": "64509", + "name": "Tomiya", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.39306000", + "longitude": "140.88611000" + }, + { + "id": "64622", + "name": "Wakuya", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.54465000", + "longitude": "141.13461000" + }, + { + "id": "64625", + "name": "Watari", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.03500000", + "longitude": "140.85111000" + }, + { + "id": "64626", + "name": "Watari-gun", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "37.99640000", + "longitude": "140.87909000" + }, + { + "id": "64649", + "name": "Yamoto", + "state_id": 857, + "state_code": "04", + "country_id": 109, + "country_code": "JP", + "latitude": "38.42738000", + "longitude": "141.21487000" + }, + { + "id": "63328", + "name": "Ebino-shi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "32.01667000", + "longitude": "130.80000000" + }, + { + "id": "63527", + "name": "Hyūga-shi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "32.37710000", + "longitude": "131.52275000" + }, + { + "id": "63818", + "name": "Kobayashi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "31.98333000", + "longitude": "130.98333000" + }, + { + "id": "63819", + "name": "Kobayashi Shi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "32.04556000", + "longitude": "131.02762000" + }, + { + "id": "63884", + "name": "Kushima", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "31.48621000", + "longitude": "131.24210000" + }, + { + "id": "63885", + "name": "Kushima Shi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "31.48571000", + "longitude": "131.26485000" + }, + { + "id": "64003", + "name": "Miyakonojō", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "31.73333000", + "longitude": "131.06667000" + }, + { + "id": "64004", + "name": "Miyakonojō Shi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "31.80920000", + "longitude": "131.07904000" + }, + { + "id": "64009", + "name": "Miyazaki", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "31.91667000", + "longitude": "131.41667000" + }, + { + "id": "64010", + "name": "Miyazaki-shi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "31.96192000", + "longitude": "131.38455000" + }, + { + "id": "64125", + "name": "Nichinan", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "31.60000000", + "longitude": "131.36667000" + }, + { + "id": "64126", + "name": "Nichinan Shi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "31.63737000", + "longitude": "131.33409000" + }, + { + "id": "64159", + "name": "Nobeoka", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "32.58333000", + "longitude": "131.66667000" + }, + { + "id": "64160", + "name": "Nobeoka-shi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "32.67238000", + "longitude": "131.64311000" + }, + { + "id": "64252", + "name": "Saito-shi", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "32.17288000", + "longitude": "131.31543000" + }, + { + "id": "64429", + "name": "Takanabe", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "32.13333000", + "longitude": "131.50000000" + }, + { + "id": "64551", + "name": "Tsuma", + "state_id": 855, + "state_code": "45", + "country_id": 109, + "country_code": "JP", + "latitude": "32.10000000", + "longitude": "131.40000000" + }, + { + "id": "63280", + "name": "Azumino-Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.32716000", + "longitude": "137.83988000" + }, + { + "id": "64734", + "name": "Ōmachi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.50000000", + "longitude": "137.86667000" + }, + { + "id": "64735", + "name": "Ōmachi-shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.55000000", + "longitude": "137.75000000" + }, + { + "id": "63299", + "name": "Chikuma Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.50624000", + "longitude": "138.12352000" + }, + { + "id": "63303", + "name": "Chino", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "35.99440000", + "longitude": "138.15428000" + }, + { + "id": "63304", + "name": "Chino Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.02522000", + "longitude": "138.24668000" + }, + { + "id": "63419", + "name": "Hakuba", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.69818000", + "longitude": "137.86185000" + }, + { + "id": "63526", + "name": "Hotaka", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.33960000", + "longitude": "137.88254000" + }, + { + "id": "63547", + "name": "Iida", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "35.51965000", + "longitude": "137.82074000" + }, + { + "id": "63548", + "name": "Iida-shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "35.42287000", + "longitude": "137.89381000" + }, + { + "id": "63549", + "name": "Iiyama", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.85000000", + "longitude": "138.36667000" + }, + { + "id": "63550", + "name": "Iiyama Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.91249000", + "longitude": "138.38345000" + }, + { + "id": "63565", + "name": "Ina", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "35.82756000", + "longitude": "137.95378000" + }, + { + "id": "63566", + "name": "Ina-shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "35.79079000", + "longitude": "138.07402000" + }, + { + "id": "63693", + "name": "Kamimaruko", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.31865000", + "longitude": "138.27329000" + }, + { + "id": "63833", + "name": "Komagane", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71657000", + "longitude": "137.93745000" + }, + { + "id": "63834", + "name": "Komagane-shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "35.72770000", + "longitude": "137.94783000" + }, + { + "id": "63841", + "name": "Komoro", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.31667000", + "longitude": "138.43333000" + }, + { + "id": "63842", + "name": "Komoro Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.33905000", + "longitude": "138.43503000" + }, + { + "id": "63935", + "name": "Matsumoto", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.23333000", + "longitude": "137.96667000" + }, + { + "id": "63936", + "name": "Matsumoto Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.20418000", + "longitude": "137.81419000" + }, + { + "id": "64064", + "name": "Nagano", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.65000000", + "longitude": "138.18333000" + }, + { + "id": "64065", + "name": "Nagano Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.65257000", + "longitude": "138.11694000" + }, + { + "id": "64086", + "name": "Nakano Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.76940000", + "longitude": "138.34717000" + }, + { + "id": "64193", + "name": "Okaya", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.05659000", + "longitude": "138.04510000" + }, + { + "id": "64194", + "name": "Okaya Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.07917000", + "longitude": "138.04805000" + }, + { + "id": "64266", + "name": "Saku", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.21667000", + "longitude": "138.48333000" + }, + { + "id": "64267", + "name": "Saku Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.21577000", + "longitude": "138.44529000" + }, + { + "id": "64349", + "name": "Shiojiri", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.10000000", + "longitude": "137.96667000" + }, + { + "id": "64350", + "name": "Shiojiri-shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.08333000", + "longitude": "137.93333000" + }, + { + "id": "64390", + "name": "Suwa", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.03799000", + "longitude": "138.11308000" + }, + { + "id": "64391", + "name": "Suwa Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.02899000", + "longitude": "138.11357000" + }, + { + "id": "64392", + "name": "Suzaka", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.65000000", + "longitude": "138.31667000" + }, + { + "id": "64393", + "name": "Suzaka-shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.65000000", + "longitude": "138.31667000" + }, + { + "id": "64476", + "name": "Tatsuno", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "35.98426000", + "longitude": "137.99721000" + }, + { + "id": "64571", + "name": "Tōmi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.35582000", + "longitude": "138.36093000" + }, + { + "id": "64572", + "name": "Tōmi Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.37387000", + "longitude": "138.36866000" + }, + { + "id": "64533", + "name": "Toyoshina", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.29991000", + "longitude": "137.90108000" + }, + { + "id": "64578", + "name": "Ueda", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.40265000", + "longitude": "138.28161000" + }, + { + "id": "64579", + "name": "Ueda Shi", + "state_id": 843, + "state_code": "20", + "country_id": 109, + "country_code": "JP", + "latitude": "36.38352000", + "longitude": "138.24186000" + }, + { + "id": "64743", + "name": "Ōmura", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.92139000", + "longitude": "129.95389000" + }, + { + "id": "64744", + "name": "Ōmura-shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.93978000", + "longitude": "129.99297000" + }, + { + "id": "63362", + "name": "Fukuechō", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.69732000", + "longitude": "128.84561000" + }, + { + "id": "63397", + "name": "Gotō Shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.69892000", + "longitude": "128.76871000" + }, + { + "id": "63487", + "name": "Hirado", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "33.36853000", + "longitude": "129.55247000" + }, + { + "id": "63488", + "name": "Hirado Shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "33.31596000", + "longitude": "129.48688000" + }, + { + "id": "63557", + "name": "Iki Shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "33.78554000", + "longitude": "129.71670000" + }, + { + "id": "63581", + "name": "Isahaya", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.84111000", + "longitude": "130.04306000" + }, + { + "id": "63582", + "name": "Isahaya-shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.86912000", + "longitude": "130.06369000" + }, + { + "id": "63939", + "name": "Matsuura", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "33.34058000", + "longitude": "129.69504000" + }, + { + "id": "63940", + "name": "Matsuura Shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "33.35334000", + "longitude": "129.73504000" + }, + { + "id": "63970", + "name": "Minamishimabara-shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.67565000", + "longitude": "130.25695000" + }, + { + "id": "64071", + "name": "Nagasaki", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.75000000", + "longitude": "129.88333000" + }, + { + "id": "64072", + "name": "Nagasaki-shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.78206000", + "longitude": "129.82715000" + }, + { + "id": "64182", + "name": "Obita", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.81667000", + "longitude": "129.88333000" + }, + { + "id": "64247", + "name": "Saikai-shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.99259000", + "longitude": "129.68200000" + }, + { + "id": "64290", + "name": "Sasebo Shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "33.18992000", + "longitude": "129.68960000" + }, + { + "id": "64325", + "name": "Shimabara", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.78333000", + "longitude": "130.36667000" + }, + { + "id": "64326", + "name": "Shimabara-shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.79429000", + "longitude": "130.32925000" + }, + { + "id": "64490", + "name": "Togitsu", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.83333000", + "longitude": "129.85000000" + }, + { + "id": "64561", + "name": "Tsushima Shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "34.40845000", + "longitude": "129.32599000" + }, + { + "id": "64591", + "name": "Unzen-shi", + "state_id": 849, + "state_code": "42", + "country_id": 109, + "country_code": "JP", + "latitude": "32.78390000", + "longitude": "130.22828000" + }, + { + "id": "63389", + "name": "Gojō", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.35000000", + "longitude": "135.70000000" + }, + { + "id": "63390", + "name": "Gojō-shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.35081000", + "longitude": "135.69489000" + }, + { + "id": "63391", + "name": "Gose", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.45000000", + "longitude": "135.73333000" + }, + { + "id": "63415", + "name": "Haibara-akanedai", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.53333000", + "longitude": "135.95000000" + }, + { + "id": "63530", + "name": "Hōryūji", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.61234000", + "longitude": "135.73754000" + }, + { + "id": "63558", + "name": "Ikoma", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.68333000", + "longitude": "135.70000000" + }, + { + "id": "63559", + "name": "Ikoma-shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.69187000", + "longitude": "135.70057000" + }, + { + "id": "63733", + "name": "Kashiba-shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.54107000", + "longitude": "135.69918000" + }, + { + "id": "63735", + "name": "Kashihara-shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.50352000", + "longitude": "135.78986000" + }, + { + "id": "63755", + "name": "Katsuragi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.48562000", + "longitude": "135.69698000" + }, + { + "id": "63756", + "name": "Katsuragi Shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.49682000", + "longitude": "135.70464000" + }, + { + "id": "64106", + "name": "Nara-shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.68506000", + "longitude": "135.80485000" + }, + { + "id": "64273", + "name": "Sakurai", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.50000000", + "longitude": "135.85000000" + }, + { + "id": "64274", + "name": "Sakurai-shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.51816000", + "longitude": "135.84320000" + }, + { + "id": "64479", + "name": "Tawaramoto", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.55420000", + "longitude": "135.79297000" + }, + { + "id": "64483", + "name": "Tenri", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.58333000", + "longitude": "135.83333000" + }, + { + "id": "64484", + "name": "Tenri-shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.59619000", + "longitude": "135.83736000" + }, + { + "id": "64577", + "name": "Uda Shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.52035000", + "longitude": "135.99787000" + }, + { + "id": "64645", + "name": "Yamatokōriyama-shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.64917000", + "longitude": "135.78278000" + }, + { + "id": "64646", + "name": "Yamatotakada-shi", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.51490000", + "longitude": "135.73660000" + }, + { + "id": "64687", + "name": "Yoshino-chō", + "state_id": 824, + "state_code": "29", + "country_id": 109, + "country_code": "JP", + "latitude": "34.39611000", + "longitude": "135.85768000" + }, + { + "id": "63216", + "name": "Agano Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.81420000", + "longitude": "139.25914000" + }, + { + "id": "63251", + "name": "Arai", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.00059000", + "longitude": "138.22590000" + }, + { + "id": "63392", + "name": "Gosen", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.73333000", + "longitude": "139.16667000" + }, + { + "id": "63393", + "name": "Gosen Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.65643000", + "longitude": "139.22634000" + }, + { + "id": "63610", + "name": "Itoigawa", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.03333000", + "longitude": "137.85000000" + }, + { + "id": "63611", + "name": "Itoigawa Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "36.96626000", + "longitude": "137.89402000" + }, + { + "id": "63651", + "name": "Jōetsu", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.14828000", + "longitude": "138.23642000" + }, + { + "id": "63652", + "name": "Jōetsu Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.12010000", + "longitude": "138.33752000" + }, + { + "id": "63682", + "name": "Kameda-honchō", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.87214000", + "longitude": "139.10990000" + }, + { + "id": "63699", + "name": "Kamo", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.66442000", + "longitude": "139.03502000" + }, + { + "id": "63700", + "name": "Kamo Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.62209000", + "longitude": "139.11068000" + }, + { + "id": "63742", + "name": "Kashiwazaki", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.36667000", + "longitude": "138.55000000" + }, + { + "id": "63743", + "name": "Kashiwazaki Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.29913000", + "longitude": "138.58654000" + }, + { + "id": "63915", + "name": "Maki", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.75000000", + "longitude": "138.88333000" + }, + { + "id": "63972", + "name": "Minamiuonuma Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.05587000", + "longitude": "138.93735000" + }, + { + "id": "63994", + "name": "Mitsuke", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.53333000", + "longitude": "138.93333000" + }, + { + "id": "63995", + "name": "Mitsuke Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.52465000", + "longitude": "138.93711000" + }, + { + "id": "64042", + "name": "Muikamachi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.06667000", + "longitude": "138.88333000" + }, + { + "id": "64045", + "name": "Murakami Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "38.31023000", + "longitude": "139.61733000" + }, + { + "id": "64046", + "name": "Muramatsu", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.69257000", + "longitude": "139.17127000" + }, + { + "id": "64056", + "name": "Myoko-shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.00000000", + "longitude": "138.25000000" + }, + { + "id": "64066", + "name": "Nagaoka", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.45000000", + "longitude": "138.85000000" + }, + { + "id": "64067", + "name": "Nagaoka Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.44516000", + "longitude": "138.85678000" + }, + { + "id": "64129", + "name": "Niigata", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.88637000", + "longitude": "139.00589000" + }, + { + "id": "64130", + "name": "Niigata Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.82738000", + "longitude": "139.03303000" + }, + { + "id": "64135", + "name": "Niitsu-honchō", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.80024000", + "longitude": "139.12240000" + }, + { + "id": "64191", + "name": "Ojiya", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.30000000", + "longitude": "138.80000000" + }, + { + "id": "64192", + "name": "Ojiya-shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.30000000", + "longitude": "138.80000000" + }, + { + "id": "64232", + "name": "Ryōtsu-minato", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "38.07817000", + "longitude": "138.43939000" + }, + { + "id": "64238", + "name": "Sado Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "38.04439000", + "longitude": "138.38984000" + }, + { + "id": "64278", + "name": "Sanjō Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.54068000", + "longitude": "139.08983000" + }, + { + "id": "64308", + "name": "Shibata", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.95000000", + "longitude": "139.33333000" + }, + { + "id": "64309", + "name": "Shibata Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.90732000", + "longitude": "139.42786000" + }, + { + "id": "64351", + "name": "Shiozawa", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.03757000", + "longitude": "138.84867000" + }, + { + "id": "64361", + "name": "Shirone", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.76354000", + "longitude": "139.02199000" + }, + { + "id": "64378", + "name": "Suibara", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.84608000", + "longitude": "139.23039000" + }, + { + "id": "64412", + "name": "Tainai", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "38.06646000", + "longitude": "139.37436000" + }, + { + "id": "64413", + "name": "Tainai Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "38.00587000", + "longitude": "139.48053000" + }, + { + "id": "64569", + "name": "Tōkamachi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.13333000", + "longitude": "138.76667000" + }, + { + "id": "64570", + "name": "Tōkamachi-shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.13333000", + "longitude": "138.76667000" + }, + { + "id": "64488", + "name": "Tochio-honchō", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.47642000", + "longitude": "138.99513000" + }, + { + "id": "64537", + "name": "Tsubame", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.66450000", + "longitude": "138.92518000" + }, + { + "id": "64538", + "name": "Tsubame Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.66541000", + "longitude": "138.88619000" + }, + { + "id": "64592", + "name": "Uonuma", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.24488000", + "longitude": "138.96234000" + }, + { + "id": "64593", + "name": "Uonuma Shi", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.22088000", + "longitude": "139.09795000" + }, + { + "id": "64683", + "name": "Yoshida-kasugachō", + "state_id": 841, + "state_code": "15", + "country_id": 109, + "country_code": "JP", + "latitude": "37.68333000", + "longitude": "138.88333000" + }, + { + "id": "63227", + "name": "Akaiwa Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.83767000", + "longitude": "134.01792000" + }, + { + "id": "63262", + "name": "Asakuchi Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.53607000", + "longitude": "133.59456000" + }, + { + "id": "63286", + "name": "Bizen Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.79504000", + "longitude": "134.23510000" + }, + { + "id": "63531", + "name": "Ibara", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.60000000", + "longitude": "133.46667000" + }, + { + "id": "63532", + "name": "Ibara Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.65033000", + "longitude": "133.47371000" + }, + { + "id": "63701", + "name": "Kamogatachō-kamogata", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.53745000", + "longitude": "133.58967000" + }, + { + "id": "63730", + "name": "Kasaoka", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.50597000", + "longitude": "133.50391000" + }, + { + "id": "63731", + "name": "Kasaoka Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.51520000", + "longitude": "133.50618000" + }, + { + "id": "63865", + "name": "Kurashiki", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.58333000", + "longitude": "133.76667000" + }, + { + "id": "63866", + "name": "Kurashiki Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.55466000", + "longitude": "133.74826000" + }, + { + "id": "63920", + "name": "Maniwa-shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "35.13549000", + "longitude": "133.69358000" + }, + { + "id": "63957", + "name": "Mimasaka-shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "35.04419000", + "longitude": "134.23052000" + }, + { + "id": "64133", + "name": "Niimi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.98333000", + "longitude": "133.46667000" + }, + { + "id": "64134", + "name": "Niimi Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "35.01571000", + "longitude": "133.44900000" + }, + { + "id": "64195", + "name": "Okayama", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.65000000", + "longitude": "133.93333000" + }, + { + "id": "64196", + "name": "Okayama Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.71251000", + "longitude": "133.92329000" + }, + { + "id": "64398", + "name": "Sōja", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.67534000", + "longitude": "133.75091000" + }, + { + "id": "64399", + "name": "Sōja Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.70269000", + "longitude": "133.70218000" + }, + { + "id": "64306", + "name": "Setouchi Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.66539000", + "longitude": "134.14161000" + }, + { + "id": "64422", + "name": "Takahashi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.78333000", + "longitude": "133.61667000" + }, + { + "id": "64423", + "name": "Takahashi Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.82103000", + "longitude": "133.52435000" + }, + { + "id": "64459", + "name": "Tamano", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.51745000", + "longitude": "133.94574000" + }, + { + "id": "64460", + "name": "Tamano Shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "34.52507000", + "longitude": "133.93769000" + }, + { + "id": "64563", + "name": "Tsuyama", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "35.05215000", + "longitude": "133.99885000" + }, + { + "id": "64564", + "name": "Tsuyama-shi", + "state_id": 820, + "state_code": "33", + "country_id": 109, + "country_code": "JP", + "latitude": "35.14048000", + "longitude": "134.03181000" + }, + { + "id": "63292", + "name": "Chatan", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.30948000", + "longitude": "127.77024000" + }, + { + "id": "63387", + "name": "Ginowan Shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.27620000", + "longitude": "127.75742000" + }, + { + "id": "63400", + "name": "Gushikawa", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.35937000", + "longitude": "127.86735000" + }, + { + "id": "63493", + "name": "Hirara", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "24.80379000", + "longitude": "125.30222000" + }, + { + "id": "63590", + "name": "Ishigaki", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "24.34478000", + "longitude": "124.15717000" + }, + { + "id": "63591", + "name": "Ishigaki-shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "24.39401000", + "longitude": "124.20113000" + }, + { + "id": "63596", + "name": "Ishikawa", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.42333000", + "longitude": "127.82139000" + }, + { + "id": "63612", + "name": "Itoman", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.12647000", + "longitude": "127.66918000" + }, + { + "id": "63613", + "name": "Itoman Shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.11795000", + "longitude": "127.68710000" + }, + { + "id": "63757", + "name": "Katsuren-haebaru", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.33294000", + "longitude": "127.87403000" + }, + { + "id": "64002", + "name": "Miyakojima Shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "24.78574000", + "longitude": "125.30132000" + }, + { + "id": "64076", + "name": "Nago", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.61502000", + "longitude": "127.98543000" + }, + { + "id": "64077", + "name": "Nago Shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.58507000", + "longitude": "128.02466000" + }, + { + "id": "64079", + "name": "Naha", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.21667000", + "longitude": "127.68333000" + }, + { + "id": "64080", + "name": "Naha Shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.21077000", + "longitude": "127.68645000" + }, + { + "id": "64083", + "name": "Nakagami-gun", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.30917000", + "longitude": "127.77722000" + }, + { + "id": "64100", + "name": "Nanjō", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.14447000", + "longitude": "127.76697000" + }, + { + "id": "64101", + "name": "Nanjō Shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.16371000", + "longitude": "127.77874000" + }, + { + "id": "64200", + "name": "Okinawa", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.33583000", + "longitude": "127.80139000" + }, + { + "id": "64201", + "name": "Okinawa Shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.35313000", + "longitude": "127.80754000" + }, + { + "id": "64504", + "name": "Tomigusuku", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.18583000", + "longitude": "127.68192000" + }, + { + "id": "64505", + "name": "Tomigusuku-shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.16667000", + "longitude": "127.66667000" + }, + { + "id": "64596", + "name": "Urasoe Shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.25106000", + "longitude": "127.71512000" + }, + { + "id": "64600", + "name": "Uruma Shi", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "26.36777000", + "longitude": "127.87373000" + }, + { + "id": "64677", + "name": "Yonakuni", + "state_id": 853, + "state_code": "47", + "country_id": 109, + "country_code": "JP", + "latitude": "24.46667000", + "longitude": "123.00000000" + }, + { + "id": "63562", + "name": "Imari Shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.30409000", + "longitude": "129.88598000" + }, + { + "id": "63563", + "name": "Imarichō-kō", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.27362000", + "longitude": "129.87877000" + }, + { + "id": "63717", + "name": "Kanzaki Shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.34446000", + "longitude": "130.35883000" + }, + { + "id": "63721", + "name": "Karatsu", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.44250000", + "longitude": "129.96972000" + }, + { + "id": "63722", + "name": "Karatsu Shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.41802000", + "longitude": "129.99775000" + }, + { + "id": "63736", + "name": "Kashima", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.10611000", + "longitude": "130.09056000" + }, + { + "id": "63737", + "name": "Kashima Shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.06203000", + "longitude": "130.09396000" + }, + { + "id": "63999", + "name": "Miyaki-gun", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.35298000", + "longitude": "130.45711000" + }, + { + "id": "64188", + "name": "Ogi-shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.26667000", + "longitude": "130.20000000" + }, + { + "id": "64239", + "name": "Saga", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.23333000", + "longitude": "130.30000000" + }, + { + "id": "64240", + "name": "Saga Shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.32558000", + "longitude": "130.26430000" + }, + { + "id": "64447", + "name": "Takeo Shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.20413000", + "longitude": "129.99775000" + }, + { + "id": "64448", + "name": "Takeochō-takeo", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.19009000", + "longitude": "130.02084000" + }, + { + "id": "64454", + "name": "Taku Shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.27829000", + "longitude": "130.10523000" + }, + { + "id": "64518", + "name": "Tosu Shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.37825000", + "longitude": "130.49001000" + }, + { + "id": "64599", + "name": "Ureshino Shi", + "state_id": 863, + "state_code": "41", + "country_id": 109, + "country_code": "JP", + "latitude": "33.09558000", + "longitude": "130.01495000" + }, + { + "id": "63218", + "name": "Ageo Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.97043000", + "longitude": "139.58159000" + }, + { + "id": "63219", + "name": "Ageoshimo", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.97145000", + "longitude": "139.61382000" + }, + { + "id": "63260", + "name": "Asaka", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.80472000", + "longitude": "139.60194000" + }, + { + "id": "63261", + "name": "Asaka-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.80000000", + "longitude": "139.60000000" + }, + { + "id": "64725", + "name": "Ōi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.85091000", + "longitude": "139.51998000" + }, + { + "id": "64754", + "name": "Ōsato-gun", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.11132000", + "longitude": "139.20281000" + }, + { + "id": "63294", + "name": "Chichibu", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.99028000", + "longitude": "139.07639000" + }, + { + "id": "63295", + "name": "Chichibu-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.95966000", + "longitude": "138.93347000" + }, + { + "id": "63345", + "name": "Fujimi-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.85393000", + "longitude": "139.55478000" + }, + { + "id": "63346", + "name": "Fujimino Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.86505000", + "longitude": "139.51524000" + }, + { + "id": "63358", + "name": "Fukaya-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.20000000", + "longitude": "139.28333000" + }, + { + "id": "63359", + "name": "Fukayachō", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.20000000", + "longitude": "139.28333000" + }, + { + "id": "63360", + "name": "Fukiage-fujimi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.10000000", + "longitude": "139.45000000" + }, + { + "id": "63401", + "name": "Gyōda", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.14074000", + "longitude": "139.46011000" + }, + { + "id": "63437", + "name": "Hannō", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.85194000", + "longitude": "139.31806000" + }, + { + "id": "63438", + "name": "Hannō-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.85567000", + "longitude": "139.32777000" + }, + { + "id": "63439", + "name": "Hanyū", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.16667000", + "longitude": "139.53333000" + }, + { + "id": "63440", + "name": "Hanyū-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.17251000", + "longitude": "139.55338000" + }, + { + "id": "63446", + "name": "Hasuda", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.97113000", + "longitude": "139.64910000" + }, + { + "id": "63447", + "name": "Hasuda-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.00147000", + "longitude": "139.64981000" + }, + { + "id": "63448", + "name": "Hatogaya-honchō", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83314000", + "longitude": "139.74250000" + }, + { + "id": "63457", + "name": "Hidaka-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.90859000", + "longitude": "139.34346000" + }, + { + "id": "63464", + "name": "Higashimatsuyama Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.03183000", + "longitude": "139.39138000" + }, + { + "id": "63475", + "name": "Hiki-gun", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.02757000", + "longitude": "139.33415000" + }, + { + "id": "63523", + "name": "Honjō", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.23780000", + "longitude": "139.19023000" + }, + { + "id": "63524", + "name": "Honjō Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.19925000", + "longitude": "139.14627000" + }, + { + "id": "63579", + "name": "Iruma-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.81802000", + "longitude": "139.36754000" + }, + { + "id": "63635", + "name": "Iwatsuki", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.96474000", + "longitude": "139.69644000" + }, + { + "id": "63688", + "name": "Kamifukuoka", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.87266000", + "longitude": "139.51369000" + }, + { + "id": "63747", + "name": "Kasukabe", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.98308000", + "longitude": "139.74966000" + }, + { + "id": "63748", + "name": "Kasukabe Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.98270000", + "longitude": "139.77574000" + }, + { + "id": "63768", + "name": "Kawagoe", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.90861000", + "longitude": "139.48528000" + }, + { + "id": "63769", + "name": "Kawagoe-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.91149000", + "longitude": "139.47924000" + }, + { + "id": "63770", + "name": "Kawaguchi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.80521000", + "longitude": "139.71072000" + }, + { + "id": "63771", + "name": "Kawaguchi-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83389000", + "longitude": "139.73252000" + }, + { + "id": "63778", + "name": "Kazo", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.11667000", + "longitude": "139.60000000" + }, + { + "id": "63779", + "name": "Kazo-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.13670000", + "longitude": "139.61992000" + }, + { + "id": "63898", + "name": "Kōnosu", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06868000", + "longitude": "139.51684000" + }, + { + "id": "63792", + "name": "Kisai", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.10000000", + "longitude": "139.58333000" + }, + { + "id": "63810", + "name": "Kitamoto Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.02615000", + "longitude": "139.53043000" + }, + { + "id": "63822", + "name": "Kodamachō-kodamaminami", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.18497000", + "longitude": "139.13191000" + }, + { + "id": "63844", + "name": "Konosu-Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06634000", + "longitude": "139.52010000" + }, + { + "id": "63848", + "name": "Koshigaya Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.90108000", + "longitude": "139.79023000" + }, + { + "id": "63856", + "name": "Kuki-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.07664000", + "longitude": "139.64941000" + }, + { + "id": "63857", + "name": "Kukichūō", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06739000", + "longitude": "139.67498000" + }, + { + "id": "63858", + "name": "Kumagaya Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.16028000", + "longitude": "139.37256000" + }, + { + "id": "63872", + "name": "Kurihashi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.13333000", + "longitude": "139.70000000" + }, + { + "id": "63944", + "name": "Menuma", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.22245000", + "longitude": "139.38205000" + }, + { + "id": "63982", + "name": "Misato Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83221000", + "longitude": "139.87185000" + }, + { + "id": "64036", + "name": "Morohongō", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.93556000", + "longitude": "139.30444000" + }, + { + "id": "64136", + "name": "Niiza-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.79345000", + "longitude": "139.56559000" + }, + { + "id": "64187", + "name": "Ogawa", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.05342000", + "longitude": "139.26612000" + }, + { + "id": "64198", + "name": "Okegawa", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.00000000", + "longitude": "139.55722000" + }, + { + "id": "64199", + "name": "Okegawa-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.00000000", + "longitude": "139.55000000" + }, + { + "id": "64250", + "name": "Saitama", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.90807000", + "longitude": "139.65657000" + }, + { + "id": "64251", + "name": "Saitama-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.86100000", + "longitude": "139.64554000" + }, + { + "id": "64253", + "name": "Sakado", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.95694000", + "longitude": "139.38889000" + }, + { + "id": "64254", + "name": "Sakado-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.96776000", + "longitude": "139.40595000" + }, + { + "id": "64293", + "name": "Satte", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.07254000", + "longitude": "139.72615000" + }, + { + "id": "64294", + "name": "Satte Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.07081000", + "longitude": "139.74022000" + }, + { + "id": "64296", + "name": "Sayama", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.85295000", + "longitude": "139.41212000" + }, + { + "id": "64400", + "name": "Sōka", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83643000", + "longitude": "139.79957000" + }, + { + "id": "64401", + "name": "Sōka Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83868000", + "longitude": "139.80216000" + }, + { + "id": "64370", + "name": "Shōbu", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.06667000", + "longitude": "139.60000000" + }, + { + "id": "64320", + "name": "Shiki", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83333000", + "longitude": "139.58333000" + }, + { + "id": "64321", + "name": "Shiki Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83698000", + "longitude": "139.58347000" + }, + { + "id": "64335", + "name": "Shimotoda", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.81500000", + "longitude": "139.68530000" + }, + { + "id": "64355", + "name": "Shiraoka", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.01839000", + "longitude": "139.66034000" + }, + { + "id": "64356", + "name": "Shiraoka-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.01667000", + "longitude": "139.66667000" + }, + { + "id": "64377", + "name": "Sugito", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.03107000", + "longitude": "139.72636000" + }, + { + "id": "64489", + "name": "Toda-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.81477000", + "longitude": "139.65699000" + }, + { + "id": "64495", + "name": "Tokorozawa", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.79916000", + "longitude": "139.46903000" + }, + { + "id": "64496", + "name": "Tokorozawa-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.79968000", + "longitude": "139.45817000" + }, + { + "id": "64555", + "name": "Tsurugashima-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.93571000", + "longitude": "139.39456000" + }, + { + "id": "64623", + "name": "Wakō-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.78934000", + "longitude": "139.61988000" + }, + { + "id": "64621", + "name": "Wako", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.78944000", + "longitude": "139.62333000" + }, + { + "id": "64624", + "name": "Warabi-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.82526000", + "longitude": "139.68550000" + }, + { + "id": "64656", + "name": "Yashio", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.82255000", + "longitude": "139.83905000" + }, + { + "id": "64657", + "name": "Yashio-shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.80918000", + "longitude": "139.84669000" + }, + { + "id": "64681", + "name": "Yono", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.88333000", + "longitude": "139.63333000" + }, + { + "id": "64682", + "name": "Yorii", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "36.11567000", + "longitude": "139.19429000" + }, + { + "id": "64685", + "name": "Yoshikawa", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.89232000", + "longitude": "139.84184000" + }, + { + "id": "64686", + "name": "Yoshikawa Shi", + "state_id": 860, + "state_code": "11", + "country_id": 109, + "country_code": "JP", + "latitude": "35.89512000", + "longitude": "139.86090000" + }, + { + "id": "64740", + "name": "Ōmihachiman", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.12861000", + "longitude": "136.09760000" + }, + { + "id": "64741", + "name": "Ōmihachiman-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.15251000", + "longitude": "136.06964000" + }, + { + "id": "64764", + "name": "Ōtsu-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.10203000", + "longitude": "135.92452000" + }, + { + "id": "63470", + "name": "Higashiōmi-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.10890000", + "longitude": "136.17920000" + }, + { + "id": "63476", + "name": "Hikone", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.25000000", + "longitude": "136.25000000" + }, + { + "id": "63477", + "name": "Hikone-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.23036000", + "longitude": "136.20760000" + }, + { + "id": "63482", + "name": "Hino", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.00000000", + "longitude": "136.25000000" + }, + { + "id": "63895", + "name": "Kōka-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "34.91667000", + "longitude": "136.16667000" + }, + { + "id": "63799", + "name": "Kitahama", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.16667000", + "longitude": "135.91667000" + }, + { + "id": "63843", + "name": "Konan-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.01667000", + "longitude": "136.08333000" + }, + { + "id": "63881", + "name": "Kusatsu", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.01667000", + "longitude": "135.96667000" + }, + { + "id": "63882", + "name": "Kusatsu-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.02758000", + "longitude": "135.93840000" + }, + { + "id": "63910", + "name": "Maibara", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.31667000", + "longitude": "136.28333000" + }, + { + "id": "63911", + "name": "Maibara-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.38457000", + "longitude": "136.37741000" + }, + { + "id": "63958", + "name": "Minakuchichō-matoba", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "34.96667000", + "longitude": "136.16667000" + }, + { + "id": "64034", + "name": "Moriyama", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.06667000", + "longitude": "135.98333000" + }, + { + "id": "64035", + "name": "Moriyama-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.08815000", + "longitude": "135.96869000" + }, + { + "id": "64059", + "name": "Nagahama", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.38333000", + "longitude": "136.26667000" + }, + { + "id": "64060", + "name": "Nagahama-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.42256000", + "longitude": "136.26272000" + }, + { + "id": "64229", + "name": "Rittō-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "34.99603000", + "longitude": "136.01412000" + }, + { + "id": "64438", + "name": "Takashima", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.41347000", + "longitude": "136.01612000" + }, + { + "id": "64439", + "name": "Takashima-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.35448000", + "longitude": "136.02859000" + }, + { + "id": "64659", + "name": "Yasu-shi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.06801000", + "longitude": "136.02327000" + }, + { + "id": "64692", + "name": "Youkaichi", + "state_id": 845, + "state_code": "25", + "country_id": 109, + "country_code": "JP", + "latitude": "35.11626000", + "longitude": "136.19768000" + }, + { + "id": "64717", + "name": "Ōda Shi", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.13958000", + "longitude": "132.48811000" + }, + { + "id": "64718", + "name": "Ōdachō-ōda", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.19025000", + "longitude": "132.50846000" + }, + { + "id": "63403", + "name": "Gōtsu Shi", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "34.98095000", + "longitude": "132.29488000" + }, + { + "id": "63404", + "name": "Gōtsuchō", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.00856000", + "longitude": "132.22570000" + }, + { + "id": "63423", + "name": "Hamada", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "34.88333000", + "longitude": "132.08333000" + }, + { + "id": "63424", + "name": "Hamada Shi", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "34.82809000", + "longitude": "132.13914000" + }, + { + "id": "63494", + "name": "Hiratachō", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.43333000", + "longitude": "132.81667000" + }, + { + "id": "63648", + "name": "Izumo", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.36667000", + "longitude": "132.76667000" + }, + { + "id": "63649", + "name": "Izumo Shi", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.33858000", + "longitude": "132.73903000" + }, + { + "id": "63927", + "name": "Masuda", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "34.66667000", + "longitude": "131.85000000" + }, + { + "id": "63928", + "name": "Masuda Shi", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "34.62909000", + "longitude": "131.94590000" + }, + { + "id": "63933", + "name": "Matsue", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.48333000", + "longitude": "133.05000000" + }, + { + "id": "63934", + "name": "Matsue Shi", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.47702000", + "longitude": "133.05917000" + }, + { + "id": "64590", + "name": "Unnan Shi", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.24918000", + "longitude": "132.89478000" + }, + { + "id": "64660", + "name": "Yasugi Shi", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.33570000", + "longitude": "133.19761000" + }, + { + "id": "64661", + "name": "Yasugichō", + "state_id": 826, + "state_code": "32", + "country_id": 109, + "country_code": "JP", + "latitude": "35.42146000", + "longitude": "133.24224000" + }, + { + "id": "63270", + "name": "Atami", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.08834000", + "longitude": "139.05325000" + }, + { + "id": "63271", + "name": "Atami-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.08957000", + "longitude": "139.06357000" + }, + { + "id": "64768", + "name": "Ōyama", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.60359000", + "longitude": "138.21719000" + }, + { + "id": "63340", + "name": "Fuji Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.20106000", + "longitude": "138.69905000" + }, + { + "id": "63342", + "name": "Fujieda Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.91956000", + "longitude": "138.23379000" + }, + { + "id": "63347", + "name": "Fujinomiya", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.21667000", + "longitude": "138.61667000" + }, + { + "id": "63348", + "name": "Fujinomiya Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.31753000", + "longitude": "138.62375000" + }, + { + "id": "63368", + "name": "Fukuroi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.75000000", + "longitude": "137.91667000" + }, + { + "id": "63369", + "name": "Fukuroi-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.74175000", + "longitude": "137.92805000" + }, + { + "id": "63396", + "name": "Gotenba Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.29893000", + "longitude": "138.87902000" + }, + { + "id": "63425", + "name": "Hamakita", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.80000000", + "longitude": "137.78333000" + }, + { + "id": "63426", + "name": "Hamamatsu", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.70000000", + "longitude": "137.73333000" + }, + { + "id": "63427", + "name": "Hamamatsu-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.95375000", + "longitude": "137.80733000" + }, + { + "id": "63452", + "name": "Heda", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.96277000", + "longitude": "138.78543000" + }, + { + "id": "63616", + "name": "Itō", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.96667000", + "longitude": "139.08333000" + }, + { + "id": "63617", + "name": "Itō Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.93563000", + "longitude": "139.08725000" + }, + { + "id": "63632", + "name": "Iwata", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.70000000", + "longitude": "137.85000000" + }, + { + "id": "63633", + "name": "Iwata-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.74451000", + "longitude": "137.85043000" + }, + { + "id": "63638", + "name": "Izu", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.97159000", + "longitude": "138.94643000" + }, + { + "id": "63639", + "name": "Izu-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.92201000", + "longitude": "138.92585000" + }, + { + "id": "63650", + "name": "Izunokuni-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.03799000", + "longitude": "138.97295000" + }, + { + "id": "63669", + "name": "Kakegawa", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.76667000", + "longitude": "138.01667000" + }, + { + "id": "63670", + "name": "Kakegawa Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.77993000", + "longitude": "138.01897000" + }, + { + "id": "63705", + "name": "Kanaya", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.82022000", + "longitude": "138.12775000" + }, + { + "id": "63786", + "name": "Kikugawa-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.75000000", + "longitude": "138.10000000" + }, + { + "id": "63845", + "name": "Kosai", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.70053000", + "longitude": "137.52253000" + }, + { + "id": "63846", + "name": "Kosai-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.73092000", + "longitude": "137.51643000" + }, + { + "id": "63916", + "name": "Makinohara Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.73226000", + "longitude": "138.18567000" + }, + { + "id": "63985", + "name": "Mishima", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.11667000", + "longitude": "138.91667000" + }, + { + "id": "63986", + "name": "Mishima Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.13940000", + "longitude": "138.94882000" + }, + { + "id": "64028", + "name": "Mori", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.83333000", + "longitude": "137.93333000" + }, + { + "id": "64172", + "name": "Numazu-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.09491000", + "longitude": "138.86667000" + }, + { + "id": "64203", + "name": "Omaezaki-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.60000000", + "longitude": "138.21667000" + }, + { + "id": "64244", + "name": "Sagara", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.68503000", + "longitude": "138.20461000" + }, + { + "id": "64327", + "name": "Shimada", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.81667000", + "longitude": "138.18333000" + }, + { + "id": "64328", + "name": "Shimada-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.91220000", + "longitude": "138.12662000" + }, + { + "id": "64330", + "name": "Shimoda", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.67652000", + "longitude": "138.94456000" + }, + { + "id": "64331", + "name": "Shimoda-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.70879000", + "longitude": "138.92148000" + }, + { + "id": "64366", + "name": "Shizuoka", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.98333000", + "longitude": "138.38333000" + }, + { + "id": "64367", + "name": "Shizuoka-shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.20164000", + "longitude": "138.31426000" + }, + { + "id": "64388", + "name": "Susono", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.17388000", + "longitude": "138.90691000" + }, + { + "id": "64389", + "name": "Susono Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "35.22551000", + "longitude": "138.87734000" + }, + { + "id": "64634", + "name": "Yaizu", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.86877000", + "longitude": "138.31952000" + }, + { + "id": "64635", + "name": "Yaizu Shi", + "state_id": 825, + "state_code": "22", + "country_id": 109, + "country_code": "JP", + "latitude": "34.84008000", + "longitude": "138.30127000" + }, + { + "id": "63266", + "name": "Ashikaga", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.33333000", + "longitude": "139.45000000" + }, + { + "id": "64762", + "name": "Ōtawara", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.86667000", + "longitude": "140.03333000" + }, + { + "id": "64763", + "name": "Ōtawara-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.86129000", + "longitude": "140.11915000" + }, + { + "id": "63349", + "name": "Fujioka", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.25000000", + "longitude": "139.65000000" + }, + { + "id": "63561", + "name": "Imaichi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.71667000", + "longitude": "139.68333000" + }, + { + "id": "63694", + "name": "Kaminokawa", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.43333000", + "longitude": "139.91667000" + }, + { + "id": "63715", + "name": "Kanuma", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.55000000", + "longitude": "139.73333000" + }, + { + "id": "63716", + "name": "Kanuma-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.57550000", + "longitude": "139.64149000" + }, + { + "id": "63720", + "name": "Karasuyama", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.65000000", + "longitude": "140.15000000" + }, + { + "id": "63878", + "name": "Kuroiso", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.96667000", + "longitude": "140.05000000" + }, + { + "id": "63926", + "name": "Mashiko", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.46667000", + "longitude": "140.10000000" + }, + { + "id": "63945", + "name": "Mibu", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.41667000", + "longitude": "139.80000000" + }, + { + "id": "64026", + "name": "Mooka", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.43333000", + "longitude": "140.01667000" + }, + { + "id": "64027", + "name": "Mooka-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.45000000", + "longitude": "140.05000000" + }, + { + "id": "64037", + "name": "Motegi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.51667000", + "longitude": "140.18333000" + }, + { + "id": "64113", + "name": "Nasukarasuyama", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.65233000", + "longitude": "140.16084000" + }, + { + "id": "64114", + "name": "Nasukarasuyama-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.66270000", + "longitude": "140.13405000" + }, + { + "id": "64115", + "name": "Nasushiobara-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.99085000", + "longitude": "139.91052000" + }, + { + "id": "64139", + "name": "Nikkō", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.75000000", + "longitude": "139.61667000" + }, + { + "id": "64138", + "name": "Nikko-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.75000000", + "longitude": "139.70000000" + }, + { + "id": "64222", + "name": "Oyama", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.30000000", + "longitude": "139.80000000" + }, + { + "id": "64223", + "name": "Oyama-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.30800000", + "longitude": "139.80195000" + }, + { + "id": "64270", + "name": "Sakura-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.72362000", + "longitude": "140.00289000" + }, + { + "id": "64281", + "name": "Sano", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.31667000", + "longitude": "139.58333000" + }, + { + "id": "64282", + "name": "Sano-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.42406000", + "longitude": "139.53578000" + }, + { + "id": "64336", + "name": "Shimotsuke-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.40291000", + "longitude": "139.86111000" + }, + { + "id": "64467", + "name": "Tanuma", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.36667000", + "longitude": "139.58333000" + }, + { + "id": "64487", + "name": "Tochigi-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.41128000", + "longitude": "139.69357000" + }, + { + "id": "64586", + "name": "Ujiie", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.68333000", + "longitude": "139.96667000" + }, + { + "id": "64611", + "name": "Utsunomiya", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.56667000", + "longitude": "139.88333000" + }, + { + "id": "64612", + "name": "Utsunomiya-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.59688000", + "longitude": "139.88657000" + }, + { + "id": "64632", + "name": "Yaita", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.80000000", + "longitude": "139.93333000" + }, + { + "id": "64633", + "name": "Yaita-shi", + "state_id": 854, + "state_code": "09", + "country_id": 109, + "country_code": "JP", + "latitude": "36.82746000", + "longitude": "139.89809000" + }, + { + "id": "63245", + "name": "Anan Shi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "33.87716000", + "longitude": "134.60644000" + }, + { + "id": "63274", + "name": "Awa-shi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.10000000", + "longitude": "134.25000000" + }, + { + "id": "63556", + "name": "Ikedachō", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.02849000", + "longitude": "133.80616000" + }, + { + "id": "63593", + "name": "Ishii", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.06752000", + "longitude": "134.44208000" + }, + { + "id": "63704", + "name": "Kamojimachō-jōgejima", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.06803000", + "longitude": "134.35033000" + }, + { + "id": "63761", + "name": "Katsuura Gun", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "33.91380000", + "longitude": "134.42641000" + }, + { + "id": "63838", + "name": "Komatsushima Shi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "33.98071000", + "longitude": "134.59529000" + }, + { + "id": "63839", + "name": "Komatsushimachō", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.00000000", + "longitude": "134.58333000" + }, + { + "id": "63956", + "name": "Mima Shi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.01889000", + "longitude": "134.14333000" + }, + { + "id": "64015", + "name": "Miyoshi Shi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "33.93349000", + "longitude": "133.85184000" + }, + { + "id": "64016", + "name": "Miyoshi-gun", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.03647000", + "longitude": "133.91818000" + }, + { + "id": "64110", + "name": "Naruto-shi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.17881000", + "longitude": "134.61357000" + }, + { + "id": "64111", + "name": "Narutochō-mitsuishi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.19933000", + "longitude": "134.60932000" + }, + { + "id": "64497", + "name": "Tokushima", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.06667000", + "longitude": "134.56667000" + }, + { + "id": "64498", + "name": "Tokushima Shi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.04922000", + "longitude": "134.52359000" + }, + { + "id": "64618", + "name": "Wakimachi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.06667000", + "longitude": "134.15000000" + }, + { + "id": "64688", + "name": "Yoshinogawa Shi", + "state_id": 836, + "state_code": "36", + "country_id": 109, + "country_code": "JP", + "latitude": "34.03705000", + "longitude": "134.28354000" + }, + { + "id": "63215", + "name": "Adachi Ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.77880000", + "longitude": "139.79509000" + }, + { + "id": "63231", + "name": "Akiruno-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73285000", + "longitude": "139.22525000" + }, + { + "id": "63232", + "name": "Akishima-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70782000", + "longitude": "139.36418000" + }, + { + "id": "63252", + "name": "Arakawa Ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73993000", + "longitude": "139.78130000" + }, + { + "id": "64738", + "name": "Ōme", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.78389000", + "longitude": "139.24306000" + }, + { + "id": "64739", + "name": "Ōme-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.78814000", + "longitude": "139.27501000" + }, + { + "id": "64758", + "name": "Ōta-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.56126000", + "longitude": "139.71605000" + }, + { + "id": "63289", + "name": "Bunkyō-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71745000", + "longitude": "139.74729000" + }, + { + "id": "63312", + "name": "Chōfu", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65924000", + "longitude": "139.54837000" + }, + { + "id": "63313", + "name": "Chōfu-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65000000", + "longitude": "139.55000000" + }, + { + "id": "63315", + "name": "Chūō Ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.66993000", + "longitude": "139.77705000" + }, + { + "id": "63311", + "name": "Chiyoda-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.69402000", + "longitude": "139.75363000" + }, + { + "id": "63330", + "name": "Edogawa Ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.69242000", + "longitude": "139.87567000" + }, + { + "id": "63336", + "name": "Fuchū-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.66667000", + "longitude": "139.50000000" + }, + { + "id": "63380", + "name": "Fussa", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73667000", + "longitude": "139.32361000" + }, + { + "id": "63410", + "name": "Hachiōji", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65583000", + "longitude": "139.32389000" + }, + { + "id": "63429", + "name": "Hamura-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.76351000", + "longitude": "139.31411000" + }, + { + "id": "63458", + "name": "Higashi-murayama-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.75529000", + "longitude": "139.46972000" + }, + { + "id": "63461", + "name": "Higashikurume-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.75821000", + "longitude": "139.52954000" + }, + { + "id": "63465", + "name": "Higashimurayama", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.75459000", + "longitude": "139.46852000" + }, + { + "id": "63468", + "name": "Higashiyamato", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.76298000", + "longitude": "139.44575000" + }, + { + "id": "63469", + "name": "Higashiyamato-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.75031000", + "longitude": "139.42660000" + }, + { + "id": "63483", + "name": "Hino", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.67306000", + "longitude": "139.40028000" + }, + { + "id": "63484", + "name": "Hino-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.66333000", + "longitude": "139.39865000" + }, + { + "id": "63569", + "name": "Inagi-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.63290000", + "longitude": "139.49291000" + }, + { + "id": "63605", + "name": "Itabashi-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.75118000", + "longitude": "139.70927000" + }, + { + "id": "63615", + "name": "Itsukaichi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.72528000", + "longitude": "139.21778000" + }, + { + "id": "63697", + "name": "Kamirenjaku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.69423000", + "longitude": "139.55495000" + }, + { + "id": "63758", + "name": "Katsushika Ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.75324000", + "longitude": "139.85567000" + }, + { + "id": "63903", + "name": "Kōtō-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.66667000", + "longitude": "139.81667000" + }, + { + "id": "63797", + "name": "Kita-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.75264000", + "longitude": "139.73348000" + }, + { + "id": "63815", + "name": "Kiyose-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.78551000", + "longitude": "139.52628000" + }, + { + "id": "63821", + "name": "Kodaira-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.72738000", + "longitude": "139.48173000" + }, + { + "id": "63827", + "name": "Koganei-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70108000", + "longitude": "139.51104000" + }, + { + "id": "63830", + "name": "Kokubunji", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70222000", + "longitude": "139.47556000" + }, + { + "id": "63831", + "name": "Kokubunji-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70552000", + "longitude": "139.46125000" + }, + { + "id": "63832", + "name": "Komae-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.63487000", + "longitude": "139.57723000" + }, + { + "id": "63864", + "name": "Kunitachi-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.68634000", + "longitude": "139.43878000" + }, + { + "id": "63905", + "name": "Machida", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.54028000", + "longitude": "139.45083000" + }, + { + "id": "63906", + "name": "Machida-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.57626000", + "longitude": "139.42998000" + }, + { + "id": "63943", + "name": "Meguro-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.64146000", + "longitude": "139.69817000" + }, + { + "id": "63974", + "name": "Minato-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65000000", + "longitude": "139.73333000" + }, + { + "id": "63988", + "name": "Mitaka-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.68351000", + "longitude": "139.55963000" + }, + { + "id": "64051", + "name": "Musashimurayama-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.75037000", + "longitude": "139.38391000" + }, + { + "id": "64052", + "name": "Musashino", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70611000", + "longitude": "139.55944000" + }, + { + "id": "64053", + "name": "Musashino-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71771000", + "longitude": "139.56600000" + }, + { + "id": "64087", + "name": "Nakano-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71091000", + "longitude": "139.66248000" + }, + { + "id": "64122", + "name": "Nerima-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73551000", + "longitude": "139.65168000" + }, + { + "id": "64146", + "name": "Nishi-Tokyo-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.72526000", + "longitude": "139.53830000" + }, + { + "id": "64155", + "name": "Nishitōkyō-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73485000", + "longitude": "139.54624000" + }, + { + "id": "64302", + "name": "Setagaya-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.64657000", + "longitude": "139.65325000" + }, + { + "id": "64316", + "name": "Shibuya-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.66404000", + "longitude": "139.69821000" + }, + { + "id": "64338", + "name": "Shinagawa-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.60902000", + "longitude": "139.73017000" + }, + { + "id": "64342", + "name": "Shinjuku-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.69384000", + "longitude": "139.70355000" + }, + { + "id": "64376", + "name": "Suginami-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.69951000", + "longitude": "139.63641000" + }, + { + "id": "64383", + "name": "Sumida-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71072000", + "longitude": "139.80150000" + }, + { + "id": "64405", + "name": "Tachikawa-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71447000", + "longitude": "139.40453000" + }, + { + "id": "64414", + "name": "Taitō-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71261000", + "longitude": "139.78000000" + }, + { + "id": "64455", + "name": "Tama-shi", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.63054000", + "longitude": "139.43976000" + }, + { + "id": "64465", + "name": "Tanashichō", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.72922000", + "longitude": "139.53813000" + }, + { + "id": "64500", + "name": "Tokyo", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.68950000", + "longitude": "139.69171000" + }, + { + "id": "64517", + "name": "Toshima-ku", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.73246000", + "longitude": "139.71540000" + }, + { + "id": "64597", + "name": "Urayasu", + "state_id": 823, + "state_code": "13", + "country_id": 109, + "country_code": "JP", + "latitude": "35.67056000", + "longitude": "139.88861000" + }, + { + "id": "63867", + "name": "Kurayoshi-shi", + "state_id": 850, + "state_code": "31", + "country_id": 109, + "country_code": "JP", + "latitude": "35.39110000", + "longitude": "133.74577000" + }, + { + "id": "64262", + "name": "Sakaiminato", + "state_id": 850, + "state_code": "31", + "country_id": 109, + "country_code": "JP", + "latitude": "35.53774000", + "longitude": "133.23094000" + }, + { + "id": "64263", + "name": "Sakaiminato Shi", + "state_id": 850, + "state_code": "31", + "country_id": 109, + "country_code": "JP", + "latitude": "35.52034000", + "longitude": "133.22704000" + }, + { + "id": "64519", + "name": "Tottori-shi", + "state_id": 850, + "state_code": "31", + "country_id": 109, + "country_code": "JP", + "latitude": "35.43255000", + "longitude": "134.15576000" + }, + { + "id": "64676", + "name": "Yonago Shi", + "state_id": 850, + "state_code": "31", + "country_id": 109, + "country_code": "JP", + "latitude": "35.43486000", + "longitude": "133.35873000" + }, + { + "id": "63364", + "name": "Fukumitsu", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.55751000", + "longitude": "136.86945000" + }, + { + "id": "63480", + "name": "Himi Shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.87218000", + "longitude": "136.94066000" + }, + { + "id": "63481", + "name": "Himimachi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.85609000", + "longitude": "136.98850000" + }, + { + "id": "63564", + "name": "Imizu Shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.72939000", + "longitude": "137.08784000" + }, + { + "id": "63690", + "name": "Kamiichi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.70000000", + "longitude": "137.36667000" + }, + { + "id": "63874", + "name": "Kurobe-shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.90123000", + "longitude": "137.44955000" + }, + { + "id": "64095", + "name": "Namerikawa", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.75965000", + "longitude": "137.36215000" + }, + { + "id": "64096", + "name": "Namerikawa-shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.74934000", + "longitude": "137.38129000" + }, + { + "id": "64103", + "name": "Nanto Shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.45260000", + "longitude": "136.91430000" + }, + { + "id": "64104", + "name": "Nanto-shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.56922000", + "longitude": "136.91162000" + }, + { + "id": "64154", + "name": "Nishishinminato", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.77957000", + "longitude": "137.07576000" + }, + { + "id": "64173", + "name": "Nyūzen", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.93744000", + "longitude": "137.50059000" + }, + { + "id": "64220", + "name": "Oyabe", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.66667000", + "longitude": "136.85000000" + }, + { + "id": "64221", + "name": "Oyabe Shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.66349000", + "longitude": "136.85499000" + }, + { + "id": "64431", + "name": "Takaoka", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.75000000", + "longitude": "137.01667000" + }, + { + "id": "64432", + "name": "Takaoka Shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.74257000", + "longitude": "136.96263000" + }, + { + "id": "64511", + "name": "Tonami Shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.62395000", + "longitude": "136.98899000" + }, + { + "id": "64521", + "name": "Toyama Shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.55146000", + "longitude": "137.29872000" + }, + { + "id": "64594", + "name": "Uozu", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.80000000", + "longitude": "137.40000000" + }, + { + "id": "64595", + "name": "Uozu Shi", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.76234000", + "longitude": "137.48984000" + }, + { + "id": "64663", + "name": "Yatsuomachi-higashikumisaka", + "state_id": 838, + "state_code": "16", + "country_id": 109, + "country_code": "JP", + "latitude": "36.56667000", + "longitude": "137.13333000" + }, + { + "id": "63255", + "name": "Arida Shi", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.07937000", + "longitude": "135.14230000" + }, + { + "id": "63388", + "name": "Gobō", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "33.88153000", + "longitude": "135.16960000" + }, + { + "id": "63444", + "name": "Hashimoto", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.31667000", + "longitude": "135.61667000" + }, + { + "id": "63445", + "name": "Hashimoto Shi", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.32417000", + "longitude": "135.61045000" + }, + { + "id": "63618", + "name": "Iwade", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.25000000", + "longitude": "135.31667000" + }, + { + "id": "63619", + "name": "Iwade Shi", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.28089000", + "longitude": "135.30560000" + }, + { + "id": "63662", + "name": "Kainan", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.15166000", + "longitude": "135.21398000" + }, + { + "id": "63663", + "name": "Kainan Shi", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.14182000", + "longitude": "135.22400000" + }, + { + "id": "63904", + "name": "Kōya", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.21294000", + "longitude": "135.62244000" + }, + { + "id": "63788", + "name": "Kinokawa Shi", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.25400000", + "longitude": "135.39412000" + }, + { + "id": "63973", + "name": "Minato", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.21520000", + "longitude": "135.15010000" + }, + { + "id": "64339", + "name": "Shingū", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "33.73333000", + "longitude": "135.98333000" + }, + { + "id": "64341", + "name": "Shingū-shi", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "33.76663000", + "longitude": "135.85863000" + }, + { + "id": "64464", + "name": "Tanabe-shi", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "33.82731000", + "longitude": "135.57786000" + }, + { + "id": "64616", + "name": "Wakayama", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.23333000", + "longitude": "135.16667000" + }, + { + "id": "64617", + "name": "Wakayama Shi", + "state_id": 844, + "state_code": "30", + "country_id": 109, + "country_code": "JP", + "latitude": "34.24252000", + "longitude": "135.19595000" + }, + { + "id": "63466", + "name": "Higashine", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.43889000", + "longitude": "140.40056000" + }, + { + "id": "63467", + "name": "Higashine Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.42559000", + "longitude": "140.46670000" + }, + { + "id": "63695", + "name": "Kaminoyama", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.15389000", + "longitude": "140.27361000" + }, + { + "id": "63696", + "name": "Kaminoyama-shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.13333000", + "longitude": "140.33333000" + }, + { + "id": "64047", + "name": "Murayama", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.46972000", + "longitude": "140.41441000" + }, + { + "id": "64048", + "name": "Murayama Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.51671000", + "longitude": "140.33518000" + }, + { + "id": "64061", + "name": "Nagai", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.10361000", + "longitude": "140.03500000" + }, + { + "id": "64062", + "name": "Nagai-shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.16667000", + "longitude": "140.00000000" + }, + { + "id": "64105", + "name": "Nanyō Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.10319000", + "longitude": "140.15609000" + }, + { + "id": "64178", + "name": "Obanazawa", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.60333000", + "longitude": "140.40194000" + }, + { + "id": "64179", + "name": "Obanazawa Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.59362000", + "longitude": "140.47681000" + }, + { + "id": "64241", + "name": "Sagae", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.37250000", + "longitude": "140.27250000" + }, + { + "id": "64242", + "name": "Sagae-shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.45000000", + "longitude": "140.23333000" + }, + { + "id": "64264", + "name": "Sakata", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.91667000", + "longitude": "139.85500000" + }, + { + "id": "64265", + "name": "Sakata Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.92490000", + "longitude": "139.98427000" + }, + { + "id": "64343", + "name": "Shinjō", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.75861000", + "longitude": "140.30083000" + }, + { + "id": "64344", + "name": "Shinjō Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.78819000", + "longitude": "140.33989000" + }, + { + "id": "64424", + "name": "Takahata", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.00250000", + "longitude": "140.19111000" + }, + { + "id": "64480", + "name": "Tendō", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.35361000", + "longitude": "140.36972000" + }, + { + "id": "64481", + "name": "Tendō Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.35819000", + "longitude": "140.39652000" + }, + { + "id": "64557", + "name": "Tsuruoka", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.72167000", + "longitude": "139.82167000" + }, + { + "id": "64558", + "name": "Tsuruoka Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.58507000", + "longitude": "139.80839000" + }, + { + "id": "64638", + "name": "Yamagata", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.23333000", + "longitude": "140.36667000" + }, + { + "id": "64639", + "name": "Yamagata Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "38.24907000", + "longitude": "140.37272000" + }, + { + "id": "64679", + "name": "Yonezawa", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "37.91000000", + "longitude": "140.11667000" + }, + { + "id": "64680", + "name": "Yonezawa Shi", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "37.84998000", + "longitude": "140.12160000" + }, + { + "id": "64700", + "name": "Yuza", + "state_id": 837, + "state_code": "06", + "country_id": 109, + "country_code": "JP", + "latitude": "39.01573000", + "longitude": "139.92909000" + }, + { + "id": "63413", + "name": "Hagi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.40000000", + "longitude": "131.41667000" + }, + { + "id": "63414", + "name": "Hagi Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.43206000", + "longitude": "131.50623000" + }, + { + "id": "63528", + "name": "Hōfu", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.05000000", + "longitude": "131.56667000" + }, + { + "id": "63473", + "name": "Hikari", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "33.95500000", + "longitude": "131.95000000" + }, + { + "id": "63474", + "name": "Hikari Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "33.98247000", + "longitude": "131.97485000" + }, + { + "id": "63514", + "name": "Hofu Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.07287000", + "longitude": "131.56808000" + }, + { + "id": "63623", + "name": "Iwakuni Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.20608000", + "longitude": "132.06286000" + }, + { + "id": "63852", + "name": "Kudamatsu", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.00000000", + "longitude": "131.86667000" + }, + { + "id": "63853", + "name": "Kudamatsu Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.03243000", + "longitude": "131.88683000" + }, + { + "id": "63975", + "name": "Mine Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.21083000", + "longitude": "131.25170000" + }, + { + "id": "64074", + "name": "Nagato", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.38333000", + "longitude": "131.20000000" + }, + { + "id": "64075", + "name": "Nagato Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.34880000", + "longitude": "131.14703000" + }, + { + "id": "64190", + "name": "Ogōri-shimogō", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.10000000", + "longitude": "131.40000000" + }, + { + "id": "64211", + "name": "Onoda", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.00139000", + "longitude": "131.18361000" + }, + { + "id": "64284", + "name": "Sanyōonoda Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.03956000", + "longitude": "131.15417000" + }, + { + "id": "64371", + "name": "Shūnan Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.15136000", + "longitude": "131.82498000" + }, + { + "id": "64334", + "name": "Shimonoseki Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.17277000", + "longitude": "130.98766000" + }, + { + "id": "64499", + "name": "Tokuyama", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.05000000", + "longitude": "131.81667000" + }, + { + "id": "64576", + "name": "Ube", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "33.94306000", + "longitude": "131.25111000" + }, + { + "id": "64641", + "name": "Yamaguchi Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "34.17753000", + "longitude": "131.54667000" + }, + { + "id": "64653", + "name": "Yanai Shi", + "state_id": 835, + "state_code": "35", + "country_id": 109, + "country_code": "JP", + "latitude": "33.96243000", + "longitude": "132.13111000" + }, + { + "id": "64766", + "name": "Ōtsuki", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.61851000", + "longitude": "138.97396000" + }, + { + "id": "64767", + "name": "Ōtsuki-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.64285000", + "longitude": "138.91993000" + }, + { + "id": "63316", + "name": "Chūō-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.58418000", + "longitude": "138.54110000" + }, + { + "id": "63334", + "name": "Enzan", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70000000", + "longitude": "138.73333000" + }, + { + "id": "63339", + "name": "Fuefuki-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.59955000", + "longitude": "138.68067000" + }, + { + "id": "63341", + "name": "Fuji-yoshida Shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.43915000", + "longitude": "138.79368000" + }, + { + "id": "63344", + "name": "Fujikawaguchiko", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.48933000", + "longitude": "138.68832000" + }, + { + "id": "63355", + "name": "Fujiyoshida", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.44032000", + "longitude": "138.79586000" + }, + { + "id": "63517", + "name": "Hokuto", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83458000", + "longitude": "138.39606000" + }, + { + "id": "63518", + "name": "Hokuto-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.83717000", + "longitude": "138.39375000" + }, + { + "id": "63583", + "name": "Isawa", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65000000", + "longitude": "138.63333000" + }, + { + "id": "63661", + "name": "Kai-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71627000", + "longitude": "138.51871000" + }, + { + "id": "63893", + "name": "Kōfu", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.66667000", + "longitude": "138.56667000" + }, + { + "id": "63894", + "name": "Kōfu-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.69606000", + "longitude": "138.61261000" + }, + { + "id": "63902", + "name": "Kōshū-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.72649000", + "longitude": "138.79178000" + }, + { + "id": "63961", + "name": "Minami Alps-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65065000", + "longitude": "138.35413000" + }, + { + "id": "64143", + "name": "Nirasaki", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.70000000", + "longitude": "138.45000000" + }, + { + "id": "64144", + "name": "Nirasaki-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.71772000", + "longitude": "138.41200000" + }, + { + "id": "64235", + "name": "Ryūō", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65000000", + "longitude": "138.50000000" + }, + { + "id": "64552", + "name": "Tsuru-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.53660000", + "longitude": "138.91489000" + }, + { + "id": "64582", + "name": "Uenohara", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.61667000", + "longitude": "139.11667000" + }, + { + "id": "64583", + "name": "Uenohara-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.65000000", + "longitude": "139.05000000" + }, + { + "id": "64643", + "name": "Yamanashi-shi", + "state_id": 852, + "state_code": "19", + "country_id": 109, + "country_code": "JP", + "latitude": "35.79691000", + "longitude": "138.69743000" + }, + { + "id": "63199", + "name": "Şakhrah", + "state_id": 963, + "state_code": "AJ", + "country_id": 111, + "country_code": "JO", + "latitude": "32.37087000", + "longitude": "35.84267000" + }, + { + "id": "63202", + "name": "Ḩalāwah", + "state_id": 963, + "state_code": "AJ", + "country_id": 111, + "country_code": "JO", + "latitude": "32.38433000", + "longitude": "35.66167000" + }, + { + "id": "63206", + "name": "‘Ajlūn", + "state_id": 963, + "state_code": "AJ", + "country_id": 111, + "country_code": "JO", + "latitude": "32.33326000", + "longitude": "35.75279000" + }, + { + "id": "63207", + "name": "‘Anjarah", + "state_id": 963, + "state_code": "AJ", + "country_id": 111, + "country_code": "JO", + "latitude": "32.30630000", + "longitude": "35.75653000" + }, + { + "id": "63208", + "name": "‘Ayn Jannah", + "state_id": 963, + "state_code": "AJ", + "country_id": 111, + "country_code": "JO", + "latitude": "32.33466000", + "longitude": "35.76370000" + }, + { + "id": "63133", + "name": "Al Jīzah", + "state_id": 965, + "state_code": "AM", + "country_id": 111, + "country_code": "JO", + "latitude": "31.69893000", + "longitude": "35.95530000" + }, + { + "id": "63132", + "name": "Al Jubayhah", + "state_id": 965, + "state_code": "AM", + "country_id": 111, + "country_code": "JO", + "latitude": "32.01071000", + "longitude": "35.89802000" + }, + { + "id": "63141", + "name": "Amman", + "state_id": 965, + "state_code": "AM", + "country_id": 111, + "country_code": "JO", + "latitude": "31.95522000", + "longitude": "35.94503000" + }, + { + "id": "63203", + "name": "Ḩayy al Bunayyāt", + "state_id": 965, + "state_code": "AM", + "country_id": 111, + "country_code": "JO", + "latitude": "31.89603000", + "longitude": "35.88465000" + }, + { + "id": "63204", + "name": "Ḩayy al Quwaysimah", + "state_id": 965, + "state_code": "AM", + "country_id": 111, + "country_code": "JO", + "latitude": "31.91037000", + "longitude": "35.94975000" + }, + { + "id": "63162", + "name": "Jāwā", + "state_id": 965, + "state_code": "AM", + "country_id": 111, + "country_code": "JO", + "latitude": "31.85247000", + "longitude": "35.93928000" + }, + { + "id": "63185", + "name": "Saḩāb", + "state_id": 965, + "state_code": "AM", + "country_id": 111, + "country_code": "JO", + "latitude": "31.87032000", + "longitude": "36.00479000" + }, + { + "id": "63192", + "name": "Umm as Summāq", + "state_id": 965, + "state_code": "AM", + "country_id": 111, + "country_code": "JO", + "latitude": "31.88542000", + "longitude": "35.85430000" + }, + { + "id": "63194", + "name": "Wādī as Sīr", + "state_id": 965, + "state_code": "AM", + "country_id": 111, + "country_code": "JO", + "latitude": "31.95450000", + "longitude": "35.81831000" + }, + { + "id": "63142", + "name": "Aqaba", + "state_id": 959, + "state_code": "AQ", + "country_id": 111, + "country_code": "JO", + "latitude": "29.52667000", + "longitude": "35.00778000" + }, + { + "id": "63188", + "name": "Tala Bay", + "state_id": 959, + "state_code": "AQ", + "country_id": 111, + "country_code": "JO", + "latitude": "29.40842000", + "longitude": "34.97918000" + }, + { + "id": "63134", + "name": "Al Karāmah", + "state_id": 961, + "state_code": "BA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.95439000", + "longitude": "35.58033000" + }, + { + "id": "63145", + "name": "As Salţ", + "state_id": 961, + "state_code": "BA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.03917000", + "longitude": "35.72722000" + }, + { + "id": "63195", + "name": "Yarqā", + "state_id": 961, + "state_code": "BA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.97583000", + "longitude": "35.69638000" + }, + { + "id": "63151", + "name": "Aţ Ţayyibah", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.54304000", + "longitude": "35.71756000" + }, + { + "id": "63152", + "name": "Aţ Ţurrah", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.63979000", + "longitude": "35.98943000" + }, + { + "id": "63144", + "name": "Ar Ramthā", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.55873000", + "longitude": "36.00816000" + }, + { + "id": "63146", + "name": "Ash Shajarah", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.64391000", + "longitude": "35.94175000" + }, + { + "id": "63148", + "name": "Aydūn", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.50528000", + "longitude": "35.85809000" + }, + { + "id": "63200", + "name": "Şammā", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.57102000", + "longitude": "35.68984000" + }, + { + "id": "63201", + "name": "Ḩakamā", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.59354000", + "longitude": "35.88320000" + }, + { + "id": "63205", + "name": "Ḩātim", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.64492000", + "longitude": "35.77771000" + }, + { + "id": "63155", + "name": "Bayt Īdis", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.43775000", + "longitude": "35.69765000" + }, + { + "id": "63154", + "name": "Bayt Yāfā", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.52253000", + "longitude": "35.78618000" + }, + { + "id": "63158", + "name": "Dayr Yūsuf", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.48701000", + "longitude": "35.79635000" + }, + { + "id": "63159", + "name": "Irbid", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.55556000", + "longitude": "35.85000000" + }, + { + "id": "63161", + "name": "Judita", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.40792000", + "longitude": "35.70802000" + }, + { + "id": "63163", + "name": "Kafr Abīl", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.41752000", + "longitude": "35.66305000" + }, + { + "id": "63164", + "name": "Kafr Asad", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.59800000", + "longitude": "35.71266000" + }, + { + "id": "63165", + "name": "Kafr Sawm", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.68527000", + "longitude": "35.80102000" + }, + { + "id": "63167", + "name": "Kharjā", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.65988000", + "longitude": "35.88782000" + }, + { + "id": "63168", + "name": "Kitim", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.43834000", + "longitude": "35.89677000" + }, + { + "id": "63169", + "name": "Kurayyimah", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.27639000", + "longitude": "35.59938000" + }, + { + "id": "63172", + "name": "Malkā", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.67645000", + "longitude": "35.74851000" + }, + { + "id": "63176", + "name": "Qumaym", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.57174000", + "longitude": "35.73452000" + }, + { + "id": "63184", + "name": "Saḩam al Kaffārāt", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.69848000", + "longitude": "35.77438000" + }, + { + "id": "63186", + "name": "Sāl", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.56897000", + "longitude": "35.91185000" + }, + { + "id": "63189", + "name": "Tibnah", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.47521000", + "longitude": "35.73056000" + }, + { + "id": "63190", + "name": "Umm Qays", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.65348000", + "longitude": "35.68457000" + }, + { + "id": "63193", + "name": "Waqqāş", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.54214000", + "longitude": "35.60508000" + }, + { + "id": "63197", + "name": "Zaḩar", + "state_id": 960, + "state_code": "IR", + "country_id": 111, + "country_code": "JO", + "latitude": "32.56670000", + "longitude": "35.77811000" + }, + { + "id": "63136", + "name": "Al Kittah", + "state_id": 966, + "state_code": "JA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.27685000", + "longitude": "35.84114000" + }, + { + "id": "63153", + "name": "Balīlā", + "state_id": 966, + "state_code": "JA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.39109000", + "longitude": "35.93832000" + }, + { + "id": "63156", + "name": "Burmā", + "state_id": 966, + "state_code": "JA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.21930000", + "longitude": "35.78507000" + }, + { + "id": "63160", + "name": "Jarash", + "state_id": 966, + "state_code": "JA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.28082000", + "longitude": "35.89929000" + }, + { + "id": "63175", + "name": "Qafqafā", + "state_id": 966, + "state_code": "JA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.34851000", + "longitude": "35.93864000" + }, + { + "id": "63178", + "name": "Raymūn", + "state_id": 966, + "state_code": "JA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.28202000", + "longitude": "35.82779000" + }, + { + "id": "63183", + "name": "Sakib", + "state_id": 966, + "state_code": "JA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.28431000", + "longitude": "35.80909000" + }, + { + "id": "63187", + "name": "Sūf", + "state_id": 966, + "state_code": "JA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.31372000", + "longitude": "35.83713000" + }, + { + "id": "63129", + "name": "Adir", + "state_id": 956, + "state_code": "KA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.20217000", + "longitude": "35.76155000" + }, + { + "id": "63135", + "name": "Al Khinzīrah", + "state_id": 956, + "state_code": "KA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.05056000", + "longitude": "35.60606000" + }, + { + "id": "63137", + "name": "Al Mazār al Janūbī", + "state_id": 956, + "state_code": "KA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.06722000", + "longitude": "35.69486000" + }, + { + "id": "63138", + "name": "Al Qaşr", + "state_id": 956, + "state_code": "KA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.31407000", + "longitude": "35.74393000" + }, + { + "id": "63143", + "name": "Ar Rabbah", + "state_id": 956, + "state_code": "KA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.26923000", + "longitude": "35.73829000" + }, + { + "id": "63209", + "name": "‘Ayy", + "state_id": 956, + "state_code": "KA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.13371000", + "longitude": "35.64375000" + }, + { + "id": "63210", + "name": "‘Izrā", + "state_id": 956, + "state_code": "KA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.15889000", + "longitude": "35.69278000" + }, + { + "id": "63166", + "name": "Karak City", + "state_id": 956, + "state_code": "KA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.16368000", + "longitude": "35.76204000" + }, + { + "id": "63182", + "name": "Safi", + "state_id": 956, + "state_code": "KA", + "country_id": 111, + "country_code": "JO", + "latitude": "31.03608000", + "longitude": "35.46544000" + }, + { + "id": "63150", + "name": "Aţ Ţayyibah", + "state_id": 964, + "state_code": "MN", + "country_id": 111, + "country_code": "JO", + "latitude": "30.25125000", + "longitude": "35.46570000" + }, + { + "id": "63131", + "name": "Al Jafr", + "state_id": 964, + "state_code": "MN", + "country_id": 111, + "country_code": "JO", + "latitude": "30.31840000", + "longitude": "36.17775000" + }, + { + "id": "63139", + "name": "Al Quwayrah", + "state_id": 964, + "state_code": "MN", + "country_id": 111, + "country_code": "JO", + "latitude": "29.80045000", + "longitude": "35.31160000" + }, + { + "id": "63147", + "name": "Ash Shawbak", + "state_id": 964, + "state_code": "MN", + "country_id": 111, + "country_code": "JO", + "latitude": "30.52134000", + "longitude": "35.57135000" + }, + { + "id": "63170", + "name": "Ma'an", + "state_id": 964, + "state_code": "MN", + "country_id": 111, + "country_code": "JO", + "latitude": "30.19624000", + "longitude": "35.73405000" + }, + { + "id": "63174", + "name": "Petra", + "state_id": 964, + "state_code": "MN", + "country_id": 111, + "country_code": "JO", + "latitude": "30.32096000", + "longitude": "35.47895000" + }, + { + "id": "63177", + "name": "Qīr Moāv", + "state_id": 964, + "state_code": "MN", + "country_id": 111, + "country_code": "JO", + "latitude": "31.18248000", + "longitude": "35.69999000" + }, + { + "id": "63173", + "name": "Mādabā", + "state_id": 958, + "state_code": "MD", + "country_id": 111, + "country_code": "JO", + "latitude": "31.71599000", + "longitude": "35.79392000" + }, + { + "id": "63140", + "name": "Al Ḩamrā’", + "state_id": 962, + "state_code": "MA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.44017000", + "longitude": "36.15265000" + }, + { + "id": "63198", + "name": "Şabḩā", + "state_id": 962, + "state_code": "MA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.32696000", + "longitude": "36.50159000" + }, + { + "id": "63171", + "name": "Mafraq", + "state_id": 962, + "state_code": "MA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.34289000", + "longitude": "36.20804000" + }, + { + "id": "63179", + "name": "Rehab", + "state_id": 962, + "state_code": "MA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.32341000", + "longitude": "36.09087000" + }, + { + "id": "63180", + "name": "Rukban", + "state_id": 962, + "state_code": "MA", + "country_id": 111, + "country_code": "JO", + "latitude": "33.31405000", + "longitude": "38.70342000" + }, + { + "id": "63191", + "name": "Umm al Qiţţayn", + "state_id": 962, + "state_code": "MA", + "country_id": 111, + "country_code": "JO", + "latitude": "32.31449000", + "longitude": "36.62826000" + }, + { + "id": "63149", + "name": "Aţ Ţafīlah", + "state_id": 957, + "state_code": "AT", + "country_id": 111, + "country_code": "JO", + "latitude": "30.83752000", + "longitude": "35.60442000" + }, + { + "id": "63157", + "name": "Buşayrā", + "state_id": 957, + "state_code": "AT", + "country_id": 111, + "country_code": "JO", + "latitude": "30.73256000", + "longitude": "35.60943000" + }, + { + "id": "63130", + "name": "Al Azraq ash Shamālī", + "state_id": 967, + "state_code": "AZ", + "country_id": 111, + "country_code": "JO", + "latitude": "31.88209000", + "longitude": "36.83017000" + }, + { + "id": "63181", + "name": "Russeifa", + "state_id": 967, + "state_code": "AZ", + "country_id": 111, + "country_code": "JO", + "latitude": "32.01778000", + "longitude": "36.04639000" + }, + { + "id": "63196", + "name": "Zarqa", + "state_id": 967, + "state_code": "AZ", + "country_id": 111, + "country_code": "JO", + "latitude": "32.07275000", + "longitude": "36.08796000" + }, + { + "id": "65596", + "name": "Akkol", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.99374000", + "longitude": "70.94704000" + }, + { + "id": "65597", + "name": "Akkol’", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.29617000", + "longitude": "69.59997000" + }, + { + "id": "65600", + "name": "Aksu", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.44422000", + "longitude": "71.95761000" + }, + { + "id": "65619", + "name": "Astrakhan", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.53092000", + "longitude": "69.79684000" + }, + { + "id": "65624", + "name": "Atbasar", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.80652000", + "longitude": "68.35996000" + }, + { + "id": "65632", + "name": "Balkashino", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.51779000", + "longitude": "68.75160000" + }, + { + "id": "65647", + "name": "Bestobe", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.49795000", + "longitude": "73.09592000" + }, + { + "id": "65665", + "name": "Derzhavīnsk", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.09922000", + "longitude": "66.31557000" + }, + { + "id": "65672", + "name": "Egindiköl", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.05412000", + "longitude": "69.47928000" + }, + { + "id": "65676", + "name": "Esil", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.95495000", + "longitude": "66.40841000" + }, + { + "id": "65698", + "name": "Kokshetau", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.28333000", + "longitude": "69.40000000" + }, + { + "id": "65703", + "name": "Krasnogorskiy", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.24560000", + "longitude": "66.52081000" + }, + { + "id": "65720", + "name": "Makinsk", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.63290000", + "longitude": "70.41911000" + }, + { + "id": "65781", + "name": "Shantobe", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.45376000", + "longitude": "68.17475000" + }, + { + "id": "65784", + "name": "Shchuchinsk", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.93592000", + "longitude": "70.18895000" + }, + { + "id": "65787", + "name": "Shortandy", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.69946000", + "longitude": "70.99457000" + }, + { + "id": "65796", + "name": "Stepnogorsk", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.35062000", + "longitude": "71.88161000" + }, + { + "id": "65797", + "name": "Stepnyak", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.83489000", + "longitude": "70.78861000" + }, + { + "id": "65830", + "name": "Yermentau", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.62364000", + "longitude": "73.10265000" + }, + { + "id": "65832", + "name": "Zavodskoy", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.47031000", + "longitude": "72.01514000" + }, + { + "id": "65840", + "name": "Zhaqsy", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.91058000", + "longitude": "67.31665000" + }, + { + "id": "65847", + "name": "Zholymbet", + "state_id": 145, + "state_code": "AKM", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.74211000", + "longitude": "71.71245000" + }, + { + "id": "65605", + "name": "Aktobe", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.27969000", + "longitude": "57.20718000" + }, + { + "id": "65636", + "name": "Batamshinskiy", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.56022000", + "longitude": "58.27715000" + }, + { + "id": "65638", + "name": "Bayganin", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.68975000", + "longitude": "55.87512000" + }, + { + "id": "65674", + "name": "Embi", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.82981000", + "longitude": "58.15042000" + }, + { + "id": "65687", + "name": "Kandyagash", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.46912000", + "longitude": "57.41914000" + }, + { + "id": "65697", + "name": "Khromtau", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.25117000", + "longitude": "58.44003000" + }, + { + "id": "65725", + "name": "Martuk", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.74746000", + "longitude": "56.50611000" + }, + { + "id": "65779", + "name": "Shalqar", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.83333000", + "longitude": "59.60000000" + }, + { + "id": "65788", + "name": "Shubarkuduk", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.14391000", + "longitude": "56.48196000" + }, + { + "id": "65790", + "name": "Shubarshi", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.58022000", + "longitude": "57.18289000" + }, + { + "id": "65808", + "name": "Temir", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.14132000", + "longitude": "57.12855000" + }, + { + "id": "65831", + "name": "Yrghyz", + "state_id": 151, + "state_code": "AKT", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.61667000", + "longitude": "61.26667000" + }, + { + "id": "65607", + "name": "Almaty", + "state_id": 152, + "state_code": "ALA", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.25667000", + "longitude": "76.92861000" + }, + { + "id": "65852", + "name": "Ülken", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.21194000", + "longitude": "73.97861000" + }, + { + "id": "65631", + "name": "Bakanas", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.80838000", + "longitude": "76.27214000" + }, + { + "id": "65633", + "name": "Balpyk Bī", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.90225000", + "longitude": "78.23157000" + }, + { + "id": "65656", + "name": "Burunday", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.35567000", + "longitude": "76.85477000" + }, + { + "id": "65661", + "name": "Chemolgan", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.37633000", + "longitude": "76.62456000" + }, + { + "id": "65668", + "name": "Druzhba", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.25332000", + "longitude": "82.48044000" + }, + { + "id": "65675", + "name": "Esik", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.35520000", + "longitude": "77.45245000" + }, + { + "id": "65689", + "name": "Kapshagay", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.86681000", + "longitude": "77.06304000" + }, + { + "id": "65694", + "name": "Kegen", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.02143000", + "longitude": "79.22055000" + }, + { + "id": "65715", + "name": "Lepsy", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.23500000", + "longitude": "78.94556000" + }, + { + "id": "65726", + "name": "Matay", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.89500000", + "longitude": "78.71806000" + }, + { + "id": "65742", + "name": "Otegen Batyra", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.41949000", + "longitude": "77.02020000" + }, + { + "id": "65746", + "name": "Pervomayka", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.37361000", + "longitude": "76.94000000" + }, + { + "id": "65763", + "name": "Sarkand", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.41126000", + "longitude": "79.91545000" + }, + { + "id": "65767", + "name": "Saryozek", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.36178000", + "longitude": "77.97279000" + }, + { + "id": "65800", + "name": "Taldykorgan", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.01556000", + "longitude": "78.37389000" + }, + { + "id": "65801", + "name": "Talghar", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.30348000", + "longitude": "77.24085000" + }, + { + "id": "65807", + "name": "Tekeli", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.83322000", + "longitude": "78.83089000" + }, + { + "id": "65818", + "name": "Turgen", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.40056000", + "longitude": "77.59333000" + }, + { + "id": "65823", + "name": "Ush-Tyube", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.25201000", + "longitude": "77.98007000" + }, + { + "id": "65841", + "name": "Zharkent", + "state_id": 143, + "state_code": "ALM", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.16660000", + "longitude": "80.00655000" + }, + { + "id": "65598", + "name": "Akkol’", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.77177000", + "longitude": "53.18580000" + }, + { + "id": "65625", + "name": "Atyrau", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.11667000", + "longitude": "51.88333000" + }, + { + "id": "65635", + "name": "Balykshi", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.06667000", + "longitude": "51.86667000" + }, + { + "id": "65639", + "name": "Bayshonas", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.24139000", + "longitude": "52.94111000" + }, + { + "id": "65667", + "name": "Dossor", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.52722000", + "longitude": "52.98111000" + }, + { + "id": "65684", + "name": "Inderbor", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.55000000", + "longitude": "51.78333000" + }, + { + "id": "65719", + "name": "Makhambet", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.66667000", + "longitude": "51.58333000" + }, + { + "id": "65722", + "name": "Maloye Ganyushkino", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.60000000", + "longitude": "49.26667000" + }, + { + "id": "65723", + "name": "Maqat", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.65000000", + "longitude": "53.31667000" + }, + { + "id": "65729", + "name": "Miyaly", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.88504000", + "longitude": "53.79194000" + }, + { + "id": "65751", + "name": "Qaraton", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.43528000", + "longitude": "53.48639000" + }, + { + "id": "65759", + "name": "Qulsary", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.95307000", + "longitude": "54.01978000" + }, + { + "id": "65778", + "name": "Shalkar", + "state_id": 153, + "state_code": "ATY", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.03333000", + "longitude": "48.90000000" + }, + { + "id": "65630", + "name": "Baikonur", + "state_id": 155, + "state_code": "BAY", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.61667000", + "longitude": "63.31667000" + }, + { + "id": "65608", + "name": "Altayskiy", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.24593000", + "longitude": "82.36252000" + }, + { + "id": "65613", + "name": "Aqtoghay", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.95000000", + "longitude": "79.66667000" + }, + { + "id": "65621", + "name": "Asūbulaq", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.55688000", + "longitude": "83.06355000" + }, + { + "id": "65626", + "name": "Auezov", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.71003000", + "longitude": "81.58018000" + }, + { + "id": "65627", + "name": "Ayagoz", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.96447000", + "longitude": "80.43437000" + }, + { + "id": "65853", + "name": "Ūst’-Talovka", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.54927000", + "longitude": "81.84997000" + }, + { + "id": "65643", + "name": "Belogorskīy", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.47698000", + "longitude": "83.14803000" + }, + { + "id": "65645", + "name": "Belousovka", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.13287000", + "longitude": "82.52481000" + }, + { + "id": "65651", + "name": "Borodulikha", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.71841000", + "longitude": "80.92950000" + }, + { + "id": "65681", + "name": "Georgīevka", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.32671000", + "longitude": "81.57373000" + }, + { + "id": "65682", + "name": "Glubokoye", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.13887000", + "longitude": "82.31114000" + }, + { + "id": "65705", + "name": "Kurchatov", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.75617000", + "longitude": "78.54188000" + }, + { + "id": "65706", + "name": "Kurchum", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.56603000", + "longitude": "83.66146000" + }, + { + "id": "65721", + "name": "Maleyevsk", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.81441000", + "longitude": "84.29102000" + }, + { + "id": "65738", + "name": "Ognevka", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.68351000", + "longitude": "83.01674000" + }, + { + "id": "65749", + "name": "Priisk Boko", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.06028000", + "longitude": "81.64528000" + }, + { + "id": "65753", + "name": "Qaraūyl", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.94509000", + "longitude": "79.25502000" + }, + { + "id": "65761", + "name": "Ridder", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.34413000", + "longitude": "83.51287000" + }, + { + "id": "65774", + "name": "Semey", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.42675000", + "longitude": "80.26669000" + }, + { + "id": "65782", + "name": "Shar", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.58720000", + "longitude": "81.04883000" + }, + { + "id": "65785", + "name": "Shemonaīkha", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.62811000", + "longitude": "81.91213000" + }, + { + "id": "65798", + "name": "Suykbulak", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.70837000", + "longitude": "81.04854000" + }, + { + "id": "65821", + "name": "Tūghyl", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.72521000", + "longitude": "84.20629000" + }, + { + "id": "65822", + "name": "Urzhar", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.09302000", + "longitude": "81.62939000" + }, + { + "id": "65824", + "name": "Ust-Kamenogorsk", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.97143000", + "longitude": "82.60586000" + }, + { + "id": "65833", + "name": "Zaysan", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.46657000", + "longitude": "84.87144000" + }, + { + "id": "65835", + "name": "Zhalghyztobe", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.21094000", + "longitude": "81.21596000" + }, + { + "id": "65838", + "name": "Zhanga Buqtyrma", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.62950000", + "longitude": "83.52475000" + }, + { + "id": "65845", + "name": "Zhezkent", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.93112000", + "longitude": "81.36150000" + }, + { + "id": "65850", + "name": "Zyryanovsk", + "state_id": 154, + "state_code": "VOS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.72654000", + "longitude": "84.27318000" + }, + { + "id": "65610", + "name": "Aqbaqay", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.00000000", + "longitude": "72.78333000" + }, + { + "id": "65663", + "name": "Chu", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.60334000", + "longitude": "73.75919000" + }, + { + "id": "65680", + "name": "Georgiyevka", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.03882000", + "longitude": "74.71287000" + }, + { + "id": "65683", + "name": "Granitogorsk", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.74400000", + "longitude": "73.46848000" + }, + { + "id": "65692", + "name": "Karatau", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.17869000", + "longitude": "70.46768000" + }, + { + "id": "65696", + "name": "Khantaū", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.22744000", + "longitude": "73.79555000" + }, + { + "id": "65717", + "name": "Lugovoy", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.94197000", + "longitude": "72.76098000" + }, + { + "id": "65718", + "name": "Lugovoye", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.91010000", + "longitude": "72.72066000" + }, + { + "id": "65728", + "name": "Merke", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.86976000", + "longitude": "73.18463000" + }, + { + "id": "65730", + "name": "Moyynkum", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.28461000", + "longitude": "72.93920000" + }, + { + "id": "65733", + "name": "Mynaral", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.41611000", + "longitude": "73.68444000" + }, + { + "id": "65743", + "name": "Oytal", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.90573000", + "longitude": "73.26972000" + }, + { + "id": "65766", + "name": "Sarykemer", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.00000000", + "longitude": "71.50000000" + }, + { + "id": "65791", + "name": "Shyghanaq", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.83056000", + "longitude": "70.00194000" + }, + { + "id": "65803", + "name": "Taraz", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.90000000", + "longitude": "71.36667000" + }, + { + "id": "65839", + "name": "Zhangatas", + "state_id": 147, + "state_code": "ZHA", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.56222000", + "longitude": "69.73428000" + }, + { + "id": "65594", + "name": "Abay", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.63575000", + "longitude": "72.86164000" + }, + { + "id": "65595", + "name": "Abay Qalasy", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.63333000", + "longitude": "72.88333000" + }, + { + "id": "65601", + "name": "Aksu-Ayuly", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.76788000", + "longitude": "73.67272000" + }, + { + "id": "65602", + "name": "Aktas", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.77952000", + "longitude": "72.96128000" + }, + { + "id": "65603", + "name": "Aktau", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.03333000", + "longitude": "72.83333000" + }, + { + "id": "65606", + "name": "Aktogay", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.16667000", + "longitude": "75.30000000" + }, + { + "id": "65609", + "name": "Aqadyr", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.26014000", + "longitude": "72.85851000" + }, + { + "id": "65612", + "name": "Aqshataū", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.98917000", + "longitude": "74.05750000" + }, + { + "id": "65614", + "name": "Aqtoghay Aūdany", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.50000000", + "longitude": "74.75000000" + }, + { + "id": "65623", + "name": "Atasū", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.68659000", + "longitude": "71.64469000" + }, + { + "id": "65634", + "name": "Balqash", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.84806000", + "longitude": "74.99500000" + }, + { + "id": "65653", + "name": "Bukhar-Zhyrau", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.85658000", + "longitude": "73.68118000" + }, + { + "id": "65666", + "name": "Dolinka", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.67685000", + "longitude": "72.67822000" + }, + { + "id": "65690", + "name": "Karagandy", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.80187000", + "longitude": "73.10211000" + }, + { + "id": "65711", + "name": "Kīevka", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.26212000", + "longitude": "71.54839000" + }, + { + "id": "65699", + "name": "Koktal", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.65000000", + "longitude": "73.51667000" + }, + { + "id": "65707", + "name": "Kushoky", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.23091000", + "longitude": "73.40146000" + }, + { + "id": "65709", + "name": "Kyzylzhar", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.98197000", + "longitude": "72.60761000" + }, + { + "id": "65731", + "name": "Moyynty", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.22111000", + "longitude": "73.36694000" + }, + { + "id": "65735", + "name": "Novodolinskiy", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.70650000", + "longitude": "72.70807000" + }, + { + "id": "65741", + "name": "Osakarovka", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.56219000", + "longitude": "72.57089000" + }, + { + "id": "65748", + "name": "Prigorodnoye", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.69244000", + "longitude": "75.58438000" + }, + { + "id": "65750", + "name": "Priozersk", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.03106000", + "longitude": "73.70247000" + }, + { + "id": "65752", + "name": "Qarazhal", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.00627000", + "longitude": "70.79607000" + }, + { + "id": "65754", + "name": "Qarqaraly", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.41287000", + "longitude": "75.47286000" + }, + { + "id": "65768", + "name": "Saryshaghan", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.11917000", + "longitude": "73.61917000" + }, + { + "id": "65770", + "name": "Sayaq", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.00000000", + "longitude": "77.26667000" + }, + { + "id": "65776", + "name": "Shakhan", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.81958000", + "longitude": "72.65407000" + }, + { + "id": "65777", + "name": "Shakhtinsk", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.70885000", + "longitude": "72.59212000" + }, + { + "id": "65783", + "name": "Shashūbay", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.81694000", + "longitude": "75.04028000" + }, + { + "id": "65789", + "name": "Shubarköl", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.88222000", + "longitude": "68.80722000" + }, + { + "id": "65794", + "name": "Soran", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.79080000", + "longitude": "72.83744000" + }, + { + "id": "65810", + "name": "Temirtau", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.05494000", + "longitude": "72.96464000" + }, + { + "id": "65814", + "name": "Tokarevka", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.11573000", + "longitude": "73.16034000" + }, + { + "id": "65825", + "name": "Verkhniye Kayrakty", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.68333000", + "longitude": "73.28333000" + }, + { + "id": "65836", + "name": "Zhambyl", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.20694000", + "longitude": "71.39694000" + }, + { + "id": "65842", + "name": "Zharyk", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.85692000", + "longitude": "72.83598000" + }, + { + "id": "65846", + "name": "Zhezqazghan", + "state_id": 150, + "state_code": "KAR", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.78333000", + "longitude": "67.76667000" + }, + { + "id": "65616", + "name": "Arkalyk", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.24915000", + "longitude": "66.92027000" + }, + { + "id": "65628", + "name": "Ayat", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.83554000", + "longitude": "62.52078000" + }, + { + "id": "65652", + "name": "Borovskoy", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.79270000", + "longitude": "64.18268000" + }, + { + "id": "65671", + "name": "Dzhetygara", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.19019000", + "longitude": "61.19894000" + }, + { + "id": "65679", + "name": "Fyodorovka", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.63809000", + "longitude": "62.69653000" + }, + { + "id": "65691", + "name": "Karasu", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.65995000", + "longitude": "65.48421000" + }, + { + "id": "65701", + "name": "Komsomolets", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.75019000", + "longitude": "62.05840000" + }, + { + "id": "65702", + "name": "Kostanay", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.21435000", + "longitude": "63.62463000" + }, + { + "id": "65716", + "name": "Lisakovsk", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.54707000", + "longitude": "62.49987000" + }, + { + "id": "65740", + "name": "Ordzhonikidze", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.44772000", + "longitude": "61.74942000" + }, + { + "id": "65755", + "name": "Qashar", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.36799000", + "longitude": "62.86839000" + }, + { + "id": "65760", + "name": "Qusmuryn", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.45107000", + "longitude": "64.61977000" + }, + { + "id": "65762", + "name": "Rudnyy", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.97290000", + "longitude": "63.11677000" + }, + { + "id": "65813", + "name": "Tobol", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.69366000", + "longitude": "62.59140000" + }, + { + "id": "65815", + "name": "Torghay", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.63389000", + "longitude": "63.49806000" + }, + { + "id": "65816", + "name": "Troyebratskiy", + "state_id": 157, + "state_code": "KUS", + "country_id": 112, + "country_code": "KZ", + "latitude": "54.44306000", + "longitude": "66.07982000" + }, + { + "id": "65615", + "name": "Aral", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "46.80000000", + "longitude": "61.66667000" + }, + { + "id": "65629", + "name": "Ayteke Bi", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.84607000", + "longitude": "62.15264000" + }, + { + "id": "65642", + "name": "Belköl", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.81162000", + "longitude": "65.58796000" + }, + { + "id": "65669", + "name": "Dzhalagash", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.08333000", + "longitude": "64.66667000" + }, + { + "id": "65708", + "name": "Kyzylorda", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.85278000", + "longitude": "65.50917000" + }, + { + "id": "65757", + "name": "Qazaly", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.76278000", + "longitude": "62.10750000" + }, + { + "id": "65773", + "name": "Sekseūil", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "47.09000000", + "longitude": "61.15194000" + }, + { + "id": "65780", + "name": "Shalqīya", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.00947000", + "longitude": "67.41062000" + }, + { + "id": "65792", + "name": "Shīeli", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.16882000", + "longitude": "66.73887000" + }, + { + "id": "65804", + "name": "Tasböget", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.77384000", + "longitude": "65.55227000" + }, + { + "id": "65811", + "name": "Terenozek", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.05053000", + "longitude": "64.98395000" + }, + { + "id": "65827", + "name": "Yanykurgan", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.90652000", + "longitude": "67.24637000" + }, + { + "id": "65848", + "name": "Zhosaly", + "state_id": 142, + "state_code": "KZY", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.48778000", + "longitude": "64.07806000" + }, + { + "id": "65604", + "name": "Aktau", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.65000000", + "longitude": "51.16667000" + }, + { + "id": "65851", + "name": "Ömirzaq", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.59786000", + "longitude": "51.24171000" + }, + { + "id": "65641", + "name": "Baūtīno", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.54479000", + "longitude": "50.24629000" + }, + { + "id": "65648", + "name": "Beyneu", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "45.31667000", + "longitude": "55.20000000" + }, + { + "id": "65678", + "name": "Fort-Shevchenko", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.50654000", + "longitude": "50.26388000" + }, + { + "id": "65732", + "name": "Munayshy", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.49111000", + "longitude": "52.10861000" + }, + { + "id": "65772", + "name": "Sayötesh", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.32781000", + "longitude": "53.53246000" + }, + { + "id": "65786", + "name": "Shetpe", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.16667000", + "longitude": "52.11667000" + }, + { + "id": "65806", + "name": "Taūshyq", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.34678000", + "longitude": "51.34932000" + }, + { + "id": "65829", + "name": "Yeraliyev", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.18032000", + "longitude": "51.68116000" + }, + { + "id": "65837", + "name": "Zhanaozen", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.34116000", + "longitude": "52.86192000" + }, + { + "id": "65844", + "name": "Zhetibay", + "state_id": 141, + "state_code": "MAN", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.59417000", + "longitude": "52.07889000" + }, + { + "id": "65657", + "name": "Būrabay", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.08382000", + "longitude": "70.31379000" + }, + { + "id": "65649", + "name": "Birlestik", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.58414000", + "longitude": "68.35382000" + }, + { + "id": "65650", + "name": "Bishkul", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "54.77763000", + "longitude": "69.09951000" + }, + { + "id": "65654", + "name": "Bulayevo", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "54.90596000", + "longitude": "70.44155000" + }, + { + "id": "65710", + "name": "Kzyltu", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.63589000", + "longitude": "72.34079000" + }, + { + "id": "65736", + "name": "Novoishimskiy", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.19806000", + "longitude": "66.76944000" + }, + { + "id": "65747", + "name": "Petropavl", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "54.86667000", + "longitude": "69.15000000" + }, + { + "id": "65775", + "name": "Sergeyevka", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.88139000", + "longitude": "67.40882000" + }, + { + "id": "65793", + "name": "Smirnovo", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "54.51480000", + "longitude": "69.42732000" + }, + { + "id": "65799", + "name": "Taiynsha", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.84796000", + "longitude": "69.76773000" + }, + { + "id": "65802", + "name": "Talshik", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.63736000", + "longitude": "71.87404000" + }, + { + "id": "65812", + "name": "Timiryazevo", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.74947000", + "longitude": "66.48852000" + }, + { + "id": "65826", + "name": "Volodarskoye", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.29270000", + "longitude": "68.10500000" + }, + { + "id": "65828", + "name": "Yavlenka", + "state_id": 144, + "state_code": "SEV", + "country_id": 112, + "country_code": "KZ", + "latitude": "54.34525000", + "longitude": "68.45740000" + }, + { + "id": "65737", + "name": "Nur-Sultan", + "state_id": 156, + "state_code": "AST", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.18010000", + "longitude": "71.44598000" + }, + { + "id": "65599", + "name": "Aksu", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.04023000", + "longitude": "76.92748000" + }, + { + "id": "65637", + "name": "Bayanaul", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.79304000", + "longitude": "75.70123000" + }, + { + "id": "65644", + "name": "Belogor’ye", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.52983000", + "longitude": "77.47146000" + }, + { + "id": "65673", + "name": "Ekibastuz", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.72371000", + "longitude": "75.32287000" + }, + { + "id": "65685", + "name": "Irtyshsk", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.33365000", + "longitude": "75.45775000" + }, + { + "id": "65686", + "name": "Kalkaman", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.95349000", + "longitude": "76.02723000" + }, + { + "id": "65713", + "name": "Leninskiy", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.25346000", + "longitude": "76.78211000" + }, + { + "id": "65727", + "name": "Mayqayyng", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.45981000", + "longitude": "75.80232000" + }, + { + "id": "65744", + "name": "Pavlodar", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "52.28333000", + "longitude": "76.96667000" + }, + { + "id": "65756", + "name": "Qashyr", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.06649000", + "longitude": "76.10489000" + }, + { + "id": "65843", + "name": "Zhelezinka", + "state_id": 146, + "state_code": "PAV", + "country_id": 112, + "country_code": "KZ", + "latitude": "53.53880000", + "longitude": "75.31326000" + }, + { + "id": "65617", + "name": "Arys", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.43015000", + "longitude": "68.80870000" + }, + { + "id": "65618", + "name": "Ashchysay", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.55370000", + "longitude": "68.89792000" + }, + { + "id": "65620", + "name": "Asyqata", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "40.89460000", + "longitude": "68.36430000" + }, + { + "id": "65622", + "name": "Atakent", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "40.84782000", + "longitude": "68.50643000" + }, + { + "id": "65640", + "name": "Bayzhansay", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.16708000", + "longitude": "69.91459000" + }, + { + "id": "65646", + "name": "Belyye Vody", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.42193000", + "longitude": "69.82709000" + }, + { + "id": "65659", + "name": "Chardara", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "41.25832000", + "longitude": "67.96991000" + }, + { + "id": "65660", + "name": "Chayan", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.03399000", + "longitude": "69.38048000" + }, + { + "id": "65664", + "name": "Chulakkurgan", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.76453000", + "longitude": "69.17856000" + }, + { + "id": "65688", + "name": "Kantagi", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.52786000", + "longitude": "68.58287000" + }, + { + "id": "65695", + "name": "Kentau", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.51672000", + "longitude": "68.50463000" + }, + { + "id": "65700", + "name": "Kokterek", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.49442000", + "longitude": "70.25478000" + }, + { + "id": "65712", + "name": "Lenger", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.18152000", + "longitude": "69.88582000" + }, + { + "id": "65714", + "name": "Leninskoye", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "41.75640000", + "longitude": "69.38390000" + }, + { + "id": "65724", + "name": "Maqtaaral Aūdany", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "40.75000000", + "longitude": "68.58333000" + }, + { + "id": "65734", + "name": "Myrzakent", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "40.66338000", + "longitude": "68.54510000" + }, + { + "id": "65758", + "name": "Qogham", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.82774000", + "longitude": "68.28074000" + }, + { + "id": "65764", + "name": "Saryaghash", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "41.46042000", + "longitude": "69.16791000" + }, + { + "id": "65765", + "name": "Saryaghash Aūdany", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "41.66667000", + "longitude": "68.83333000" + }, + { + "id": "65769", + "name": "Sastobe", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.55330000", + "longitude": "69.99835000" + }, + { + "id": "65795", + "name": "Sozaq Aūdany", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "44.83333000", + "longitude": "68.50000000" + }, + { + "id": "65809", + "name": "Temirlanovka", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.59998000", + "longitude": "69.25836000" + }, + { + "id": "65817", + "name": "Turar Ryskulov", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.53340000", + "longitude": "70.34960000" + }, + { + "id": "65819", + "name": "Turkestan", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "43.29733000", + "longitude": "68.25175000" + }, + { + "id": "65820", + "name": "Tyul’kubas", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.48578000", + "longitude": "70.29601000" + }, + { + "id": "65834", + "name": "Zhabagly", + "state_id": 149, + "state_code": "YUZ", + "country_id": 112, + "country_code": "KZ", + "latitude": "42.43781000", + "longitude": "70.47841000" + }, + { + "id": "65611", + "name": "Aqsay", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.16810000", + "longitude": "52.99782000" + }, + { + "id": "65655", + "name": "Burlin", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.42724000", + "longitude": "52.71392000" + }, + { + "id": "65658", + "name": "Chapaev", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.20000000", + "longitude": "51.16667000" + }, + { + "id": "65662", + "name": "Chingirlau", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.09878000", + "longitude": "54.08426000" + }, + { + "id": "65670", + "name": "Dzhambeyty", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "50.25676000", + "longitude": "52.59895000" + }, + { + "id": "65677", + "name": "Fedorovka", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.22102000", + "longitude": "51.95723000" + }, + { + "id": "65693", + "name": "Kaztalovka", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.76612000", + "longitude": "48.68903000" + }, + { + "id": "65704", + "name": "Krūgloozernoe", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.07854000", + "longitude": "51.28992000" + }, + { + "id": "65739", + "name": "Oral", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.23333000", + "longitude": "51.36667000" + }, + { + "id": "65745", + "name": "Peremetnoe", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.19925000", + "longitude": "50.85544000" + }, + { + "id": "65771", + "name": "Saykhin", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "48.85611000", + "longitude": "46.83361000" + }, + { + "id": "65805", + "name": "Tasqala", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "51.11073000", + "longitude": "50.29454000" + }, + { + "id": "65849", + "name": "Zhänibek", + "state_id": 148, + "state_code": "ZAP", + "country_id": 112, + "country_code": "KZ", + "latitude": "49.42207000", + "longitude": "46.84705000" + }, + { + "id": "64774", + "name": "Baringo", + "state_id": 181, + "state_code": "01", + "country_id": 113, + "country_code": "KE", + "latitude": "0.46667000", + "longitude": "35.96667000" + }, + { + "id": "64781", + "name": "Eldama Ravine", + "state_id": 181, + "state_code": "01", + "country_id": 113, + "country_code": "KE", + "latitude": "0.05196000", + "longitude": "35.72734000" + }, + { + "id": "64790", + "name": "Kabarnet", + "state_id": 181, + "state_code": "01", + "country_id": 113, + "country_code": "KE", + "latitude": "0.49194000", + "longitude": "35.74303000" + }, + { + "id": "64870", + "name": "Sotik", + "state_id": 210, + "state_code": "02", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.69069000", + "longitude": "35.11102000" + }, + { + "id": "64871", + "name": "Sotik Post", + "state_id": 210, + "state_code": "02", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.78129000", + "longitude": "35.34156000" + }, + { + "id": "64776", + "name": "Bungoma", + "state_id": 168, + "state_code": "03", + "country_id": 113, + "country_code": "KE", + "latitude": "0.56350000", + "longitude": "34.56055000" + }, + { + "id": "64827", + "name": "Malikisi", + "state_id": 168, + "state_code": "03", + "country_id": 113, + "country_code": "KE", + "latitude": "0.67694000", + "longitude": "34.42167000" + }, + { + "id": "64877", + "name": "Webuye", + "state_id": 168, + "state_code": "03", + "country_id": 113, + "country_code": "KE", + "latitude": "0.60040000", + "longitude": "34.77119000" + }, + { + "id": "64777", + "name": "Busia", + "state_id": 161, + "state_code": "04", + "country_id": 113, + "country_code": "KE", + "latitude": "0.46005000", + "longitude": "34.11169000" + }, + { + "id": "64821", + "name": "Luanda", + "state_id": 161, + "state_code": "04", + "country_id": 113, + "country_code": "KE", + "latitude": "0.31354000", + "longitude": "34.07146000" + }, + { + "id": "64822", + "name": "Lugulu", + "state_id": 161, + "state_code": "04", + "country_id": 113, + "country_code": "KE", + "latitude": "0.39337000", + "longitude": "34.30399000" + }, + { + "id": "64826", + "name": "Malaba", + "state_id": 161, + "state_code": "04", + "country_id": 113, + "country_code": "KE", + "latitude": "0.63513000", + "longitude": "34.28165000" + }, + { + "id": "64848", + "name": "Nambare", + "state_id": 161, + "state_code": "04", + "country_id": 113, + "country_code": "KE", + "latitude": "0.45813000", + "longitude": "34.25353000" + }, + { + "id": "64861", + "name": "Port Victoria", + "state_id": 161, + "state_code": "04", + "country_id": 113, + "country_code": "KE", + "latitude": "0.09809000", + "longitude": "33.97248000" + }, + { + "id": "64783", + "name": "Embu", + "state_id": 163, + "state_code": "06", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.53987000", + "longitude": "37.45743000" + }, + { + "id": "64784", + "name": "Garissa", + "state_id": 196, + "state_code": "07", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.45275000", + "longitude": "39.64601000" + }, + { + "id": "64787", + "name": "Homa Bay", + "state_id": 195, + "state_code": "08", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.52731000", + "longitude": "34.45714000" + }, + { + "id": "64860", + "name": "Oyugis", + "state_id": 195, + "state_code": "08", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.50974000", + "longitude": "34.73067000" + }, + { + "id": "64863", + "name": "Rachuonyo District", + "state_id": 195, + "state_code": "08", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.44000000", + "longitude": "34.73900000" + }, + { + "id": "64788", + "name": "Isiolo", + "state_id": 170, + "state_code": "09", + "country_id": 113, + "country_code": "KE", + "latitude": "0.35462000", + "longitude": "37.58218000" + }, + { + "id": "64791", + "name": "Kajiado", + "state_id": 197, + "state_code": "10", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.85238000", + "longitude": "36.77683000" + }, + { + "id": "64824", + "name": "Magadi", + "state_id": 197, + "state_code": "10", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.90122000", + "longitude": "36.28700000" + }, + { + "id": "64853", + "name": "Ngong", + "state_id": 197, + "state_code": "10", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.35270000", + "longitude": "36.66990000" + }, + { + "id": "64778", + "name": "Butere", + "state_id": 158, + "state_code": "11", + "country_id": 113, + "country_code": "KE", + "latitude": "0.20694000", + "longitude": "34.49006000" + }, + { + "id": "64792", + "name": "Kakamega", + "state_id": 158, + "state_code": "11", + "country_id": 113, + "country_code": "KE", + "latitude": "0.28422000", + "longitude": "34.75229000" + }, + { + "id": "64842", + "name": "Mumias", + "state_id": 158, + "state_code": "11", + "country_id": 113, + "country_code": "KE", + "latitude": "0.33474000", + "longitude": "34.48796000" + }, + { + "id": "64799", + "name": "Kericho", + "state_id": 193, + "state_code": "12", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.36774000", + "longitude": "35.28314000" + }, + { + "id": "64809", + "name": "Kipkelion", + "state_id": 193, + "state_code": "12", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.19982000", + "longitude": "35.46735000" + }, + { + "id": "64818", + "name": "Litein", + "state_id": 193, + "state_code": "12", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.58249000", + "longitude": "35.18969000" + }, + { + "id": "64820", + "name": "Londiani", + "state_id": 193, + "state_code": "12", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.16552000", + "longitude": "35.59359000" + }, + { + "id": "64802", + "name": "Kiambu", + "state_id": 199, + "state_code": "13", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.17139000", + "longitude": "36.83556000" + }, + { + "id": "64805", + "name": "Kikuyu", + "state_id": 199, + "state_code": "13", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.24627000", + "longitude": "36.66291000" + }, + { + "id": "64817", + "name": "Limuru", + "state_id": 199, + "state_code": "13", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.11360000", + "longitude": "36.64205000" + }, + { + "id": "64789", + "name": "Iten", + "state_id": 174, + "state_code": "14", + "country_id": 113, + "country_code": "KE", + "latitude": "0.67028000", + "longitude": "35.50806000" + }, + { + "id": "64797", + "name": "Kapsowar", + "state_id": 174, + "state_code": "14", + "country_id": 113, + "country_code": "KE", + "latitude": "0.97890000", + "longitude": "35.55854000" + }, + { + "id": "64806", + "name": "Kilifi", + "state_id": 174, + "state_code": "14", + "country_id": 113, + "country_code": "KE", + "latitude": "-3.63045000", + "longitude": "39.84992000" + }, + { + "id": "64828", + "name": "Malindi", + "state_id": 174, + "state_code": "14", + "country_id": 113, + "country_code": "KE", + "latitude": "-3.21799000", + "longitude": "40.11692000" + }, + { + "id": "64832", + "name": "Mariakani", + "state_id": 174, + "state_code": "14", + "country_id": 113, + "country_code": "KE", + "latitude": "-3.86261000", + "longitude": "39.47458000" + }, + { + "id": "64872", + "name": "Takaungu", + "state_id": 174, + "state_code": "14", + "country_id": 113, + "country_code": "KE", + "latitude": "-3.68350000", + "longitude": "39.85687000" + }, + { + "id": "64801", + "name": "Kerugoya", + "state_id": 167, + "state_code": "15", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.49887000", + "longitude": "37.28031000" + }, + { + "id": "64866", + "name": "Sagana", + "state_id": 167, + "state_code": "15", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.66806000", + "longitude": "37.20875000" + }, + { + "id": "64810", + "name": "Kisii", + "state_id": 159, + "state_code": "16", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.68174000", + "longitude": "34.76666000" + }, + { + "id": "64857", + "name": "Ogembo", + "state_id": 159, + "state_code": "16", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.80116000", + "longitude": "34.72579000" + }, + { + "id": "64772", + "name": "Ahero", + "state_id": 171, + "state_code": "17", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.17359000", + "longitude": "34.91890000" + }, + { + "id": "64811", + "name": "Kisumu", + "state_id": 171, + "state_code": "17", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.10221000", + "longitude": "34.76171000" + }, + { + "id": "64841", + "name": "Muhoroni", + "state_id": 171, + "state_code": "17", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.15816000", + "longitude": "35.19645000" + }, + { + "id": "64813", + "name": "Kitui", + "state_id": 211, + "state_code": "18", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.36696000", + "longitude": "38.01055000" + }, + { + "id": "64844", + "name": "Mwingi", + "state_id": 211, + "state_code": "18", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.93605000", + "longitude": "38.05955000" + }, + { + "id": "64785", + "name": "Gazi", + "state_id": 173, + "state_code": "19", + "country_id": 113, + "country_code": "KE", + "latitude": "-4.42402000", + "longitude": "39.50588000" + }, + { + "id": "64807", + "name": "Kinango", + "state_id": 173, + "state_code": "19", + "country_id": 113, + "country_code": "KE", + "latitude": "-4.13723000", + "longitude": "39.31528000" + }, + { + "id": "64815", + "name": "Kwale", + "state_id": 173, + "state_code": "19", + "country_id": 113, + "country_code": "KE", + "latitude": "-4.17375000", + "longitude": "39.45206000" + }, + { + "id": "64867", + "name": "Sawa Sawa", + "state_id": 173, + "state_code": "19", + "country_id": 113, + "country_code": "KE", + "latitude": "-4.47166000", + "longitude": "39.48463000" + }, + { + "id": "64868", + "name": "Shimoni", + "state_id": 173, + "state_code": "19", + "country_id": 113, + "country_code": "KE", + "latitude": "-4.64756000", + "longitude": "39.38175000" + }, + { + "id": "64850", + "name": "Nanyuki", + "state_id": 164, + "state_code": "20", + "country_id": 113, + "country_code": "KE", + "latitude": "0.00624000", + "longitude": "37.07398000" + }, + { + "id": "64854", + "name": "Nyahururu", + "state_id": 164, + "state_code": "20", + "country_id": 113, + "country_code": "KE", + "latitude": "0.03813000", + "longitude": "36.36339000" + }, + { + "id": "64865", + "name": "Rumuruti", + "state_id": 164, + "state_code": "20", + "country_id": 113, + "country_code": "KE", + "latitude": "0.27250000", + "longitude": "36.53806000" + }, + { + "id": "64816", + "name": "Lamu", + "state_id": 166, + "state_code": "21", + "country_id": 113, + "country_code": "KE", + "latitude": "-2.27169000", + "longitude": "40.90201000" + }, + { + "id": "64878", + "name": "Witu", + "state_id": 166, + "state_code": "21", + "country_id": 113, + "country_code": "KE", + "latitude": "-2.38892000", + "longitude": "40.43827000" + }, + { + "id": "64773", + "name": "Athi River", + "state_id": 184, + "state_code": "22", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.45630000", + "longitude": "36.97826000" + }, + { + "id": "64794", + "name": "Kangundo", + "state_id": 184, + "state_code": "22", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.30342000", + "longitude": "37.34813000" + }, + { + "id": "64814", + "name": "Konza", + "state_id": 184, + "state_code": "22", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.73947000", + "longitude": "37.13195000" + }, + { + "id": "64823", + "name": "Machakos", + "state_id": 184, + "state_code": "22", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.52233000", + "longitude": "37.26521000" + }, + { + "id": "64825", + "name": "Makueni Boma", + "state_id": 188, + "state_code": "23", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.80388000", + "longitude": "37.62405000" + }, + { + "id": "64840", + "name": "Mtito Andei", + "state_id": 188, + "state_code": "23", + "country_id": 113, + "country_code": "KE", + "latitude": "-2.68987000", + "longitude": "38.16687000" + }, + { + "id": "64879", + "name": "Wote", + "state_id": 188, + "state_code": "23", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.78079000", + "longitude": "37.62882000" + }, + { + "id": "64829", + "name": "Mandera", + "state_id": 187, + "state_code": "24", + "country_id": 113, + "country_code": "KE", + "latitude": "3.93726000", + "longitude": "41.85688000" + }, + { + "id": "64833", + "name": "Marsabit", + "state_id": 194, + "state_code": "25", + "country_id": 113, + "country_code": "KE", + "latitude": "2.33468000", + "longitude": "37.99086000" + }, + { + "id": "64839", + "name": "Moyale", + "state_id": 194, + "state_code": "25", + "country_id": 113, + "country_code": "KE", + "latitude": "3.52661000", + "longitude": "39.05610000" + }, + { + "id": "64834", + "name": "Maua", + "state_id": 198, + "state_code": "26", + "country_id": 113, + "country_code": "KE", + "latitude": "0.23320000", + "longitude": "37.94086000" + }, + { + "id": "64835", + "name": "Meru", + "state_id": 198, + "state_code": "26", + "country_id": 113, + "country_code": "KE", + "latitude": "0.04626000", + "longitude": "37.65587000" + }, + { + "id": "64803", + "name": "Kihancha", + "state_id": 190, + "state_code": "27", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.19347000", + "longitude": "34.61967000" + }, + { + "id": "64836", + "name": "Migori", + "state_id": 190, + "state_code": "27", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.06343000", + "longitude": "34.47313000" + }, + { + "id": "64838", + "name": "Mombasa", + "state_id": 200, + "state_code": "28", + "country_id": 113, + "country_code": "KE", + "latitude": "-4.05466000", + "longitude": "39.66359000" + }, + { + "id": "64793", + "name": "Kangema", + "state_id": 178, + "state_code": "29", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.68553000", + "longitude": "36.96463000" + }, + { + "id": "64798", + "name": "Karuri", + "state_id": 178, + "state_code": "29", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.70000000", + "longitude": "37.18333000" + }, + { + "id": "64830", + "name": "Maragua", + "state_id": 178, + "state_code": "29", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.79602000", + "longitude": "37.13292000" + }, + { + "id": "64843", + "name": "Murang’a", + "state_id": 178, + "state_code": "29", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.72104000", + "longitude": "37.15259000" + }, + { + "id": "64845", + "name": "Nairobi", + "state_id": 191, + "state_code": "110", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.28333000", + "longitude": "36.81667000" + }, + { + "id": "64862", + "name": "Pumwani", + "state_id": 191, + "state_code": "110", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.28333000", + "longitude": "36.85000000" + }, + { + "id": "64874", + "name": "Thika", + "state_id": 191, + "state_code": "110", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.03326000", + "longitude": "37.06933000" + }, + { + "id": "64804", + "name": "Kijabe", + "state_id": 203, + "state_code": "31", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.93334000", + "longitude": "36.57233000" + }, + { + "id": "64837", + "name": "Molo", + "state_id": 203, + "state_code": "31", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.24849000", + "longitude": "35.73194000" + }, + { + "id": "64846", + "name": "Naivasha", + "state_id": 203, + "state_code": "31", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.71383000", + "longitude": "36.43261000" + }, + { + "id": "64847", + "name": "Nakuru", + "state_id": 203, + "state_code": "31", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.30719000", + "longitude": "36.07225000" + }, + { + "id": "64864", + "name": "Rongai", + "state_id": 203, + "state_code": "31", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.17344000", + "longitude": "35.86313000" + }, + { + "id": "64796", + "name": "Kapsabet", + "state_id": 165, + "state_code": "32", + "country_id": 113, + "country_code": "KE", + "latitude": "0.20387000", + "longitude": "35.10500000" + }, + { + "id": "64849", + "name": "Nandi Hills", + "state_id": 165, + "state_code": "32", + "country_id": 113, + "country_code": "KE", + "latitude": "0.10366000", + "longitude": "35.18426000" + }, + { + "id": "64852", + "name": "Narok", + "state_id": 175, + "state_code": "33", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.08083000", + "longitude": "35.87111000" + }, + { + "id": "64800", + "name": "Keroka", + "state_id": 209, + "state_code": "34", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.77612000", + "longitude": "34.94678000" + }, + { + "id": "64855", + "name": "Nyamira", + "state_id": 209, + "state_code": "34", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.56333000", + "longitude": "34.93583000" + }, + { + "id": "64858", + "name": "Ol Kalou", + "state_id": 192, + "state_code": "35", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.27088000", + "longitude": "36.37917000" + }, + { + "id": "64851", + "name": "Naro Moru", + "state_id": 180, + "state_code": "36", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.16357000", + "longitude": "37.01773000" + }, + { + "id": "64856", + "name": "Nyeri", + "state_id": 180, + "state_code": "36", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.42013000", + "longitude": "36.94759000" + }, + { + "id": "64859", + "name": "Othaya", + "state_id": 180, + "state_code": "36", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.54655000", + "longitude": "36.93178000" + }, + { + "id": "64831", + "name": "Maralal", + "state_id": 207, + "state_code": "37", + "country_id": 113, + "country_code": "KE", + "latitude": "1.09667000", + "longitude": "36.69806000" + }, + { + "id": "64775", + "name": "Bondo", + "state_id": 186, + "state_code": "38", + "country_id": 113, + "country_code": "KE", + "latitude": "0.23522000", + "longitude": "34.28086000" + }, + { + "id": "64869", + "name": "Siaya", + "state_id": 186, + "state_code": "38", + "country_id": 113, + "country_code": "KE", + "latitude": "0.06070000", + "longitude": "34.28806000" + }, + { + "id": "64881", + "name": "Yala", + "state_id": 186, + "state_code": "38", + "country_id": 113, + "country_code": "KE", + "latitude": "0.09438000", + "longitude": "34.53602000" + }, + { + "id": "64786", + "name": "Hola", + "state_id": 205, + "state_code": "40", + "country_id": 113, + "country_code": "KE", + "latitude": "-1.48256000", + "longitude": "40.03341000" + }, + { + "id": "64808", + "name": "Kipini", + "state_id": 205, + "state_code": "40", + "country_id": 113, + "country_code": "KE", + "latitude": "-2.52565000", + "longitude": "40.52620000" + }, + { + "id": "64780", + "name": "Chuka", + "state_id": 185, + "state_code": "41", + "country_id": 113, + "country_code": "KE", + "latitude": "-0.33316000", + "longitude": "37.64587000" + }, + { + "id": "64812", + "name": "Kitale", + "state_id": 183, + "state_code": "42", + "country_id": 113, + "country_code": "KE", + "latitude": "1.01572000", + "longitude": "35.00622000" + }, + { + "id": "64819", + "name": "Lodwar", + "state_id": 206, + "state_code": "43", + "country_id": 113, + "country_code": "KE", + "latitude": "3.11988000", + "longitude": "35.59642000" + }, + { + "id": "64782", + "name": "Eldoret", + "state_id": 169, + "state_code": "44", + "country_id": 113, + "country_code": "KE", + "latitude": "0.52036000", + "longitude": "35.26993000" + }, + { + "id": "64876", + "name": "Wajir", + "state_id": 182, + "state_code": "46", + "country_id": 113, + "country_code": "KE", + "latitude": "1.74710000", + "longitude": "40.05732000" + }, + { + "id": "64779", + "name": "Chepareria", + "state_id": 208, + "state_code": "47", + "country_id": 113, + "country_code": "KE", + "latitude": "1.30583000", + "longitude": "35.20365000" + }, + { + "id": "64795", + "name": "Kapenguria", + "state_id": 208, + "state_code": "47", + "country_id": 113, + "country_code": "KE", + "latitude": "1.23889000", + "longitude": "35.11194000" + }, + { + "id": "64873", + "name": "Taveta", + "state_id": 208, + "state_code": "47", + "country_id": 113, + "country_code": "KE", + "latitude": "-3.39879000", + "longitude": "37.68336000" + }, + { + "id": "64875", + "name": "Voi", + "state_id": 208, + "state_code": "47", + "country_id": 113, + "country_code": "KE", + "latitude": "-3.39605000", + "longitude": "38.55609000" + }, + { + "id": "64880", + "name": "Wundanyi", + "state_id": 208, + "state_code": "47", + "country_id": 113, + "country_code": "KE", + "latitude": "-3.39642000", + "longitude": "38.35729000" + }, + { + "id": "65041", + "name": "Abaiang", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.85293000", + "longitude": "172.94369000" + }, + { + "id": "65042", + "name": "Abemama", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "0.40000000", + "longitude": "173.86667000" + }, + { + "id": "65043", + "name": "Ambo Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.35317000", + "longitude": "173.04259000" + }, + { + "id": "65044", + "name": "Aranuka", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "0.16428000", + "longitude": "173.60579000" + }, + { + "id": "65045", + "name": "Arorae", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "-2.63493000", + "longitude": "176.82229000" + }, + { + "id": "65046", + "name": "Bairiki Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.32924000", + "longitude": "172.97522000" + }, + { + "id": "65047", + "name": "Banaba", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "-0.85500000", + "longitude": "169.53800000" + }, + { + "id": "65049", + "name": "Banraeaba Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.34540000", + "longitude": "173.03464000" + }, + { + "id": "65050", + "name": "Beru", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "-1.32957000", + "longitude": "175.98072000" + }, + { + "id": "65051", + "name": "Betio Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.35797000", + "longitude": "172.92105000" + }, + { + "id": "65052", + "name": "Bikenibeu Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.36730000", + "longitude": "173.12415000" + }, + { + "id": "65053", + "name": "Bonriki Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.38081000", + "longitude": "173.13887000" + }, + { + "id": "65054", + "name": "Buota Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.39078000", + "longitude": "173.13082000" + }, + { + "id": "65055", + "name": "Butaritari", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "3.17205000", + "longitude": "172.79675000" + }, + { + "id": "65056", + "name": "Eita Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.36154000", + "longitude": "173.08113000" + }, + { + "id": "65059", + "name": "Kuria", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "0.26522000", + "longitude": "173.38881000" + }, + { + "id": "65061", + "name": "Maiana", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "0.91869000", + "longitude": "172.99759000" + }, + { + "id": "65062", + "name": "Makin", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "3.38816000", + "longitude": "172.99656000" + }, + { + "id": "65063", + "name": "Makin Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "3.36440000", + "longitude": "172.98352000" + }, + { + "id": "65064", + "name": "Marakei", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "2.01077000", + "longitude": "173.27637000" + }, + { + "id": "65066", + "name": "Nawerewere Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.36362000", + "longitude": "173.13935000" + }, + { + "id": "65067", + "name": "Nikunau", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "-1.36567000", + "longitude": "176.46412000" + }, + { + "id": "65068", + "name": "Nonouti", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "-0.66667000", + "longitude": "174.35000000" + }, + { + "id": "65069", + "name": "Onotoa", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "-1.88587000", + "longitude": "175.56393000" + }, + { + "id": "65070", + "name": "Rawannawi Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "2.05379000", + "longitude": "173.26354000" + }, + { + "id": "65071", + "name": "Tabiteuea", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "-1.42241000", + "longitude": "174.89805000" + }, + { + "id": "65074", + "name": "Tamana", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "-2.50113000", + "longitude": "175.98621000" + }, + { + "id": "65075", + "name": "Tarawa", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.32780000", + "longitude": "172.97696000" + }, + { + "id": "65076", + "name": "Teaoraereke Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.33309000", + "longitude": "173.01162000" + }, + { + "id": "65077", + "name": "Temaiku Village", + "state_id": 1831, + "state_code": "G", + "country_id": 114, + "country_code": "KI", + "latitude": "1.36292000", + "longitude": "173.16226000" + }, + { + "id": "65048", + "name": "Banana Village", + "state_id": 1832, + "state_code": "L", + "country_id": 114, + "country_code": "KI", + "latitude": "1.98329000", + "longitude": "-157.36526000" + }, + { + "id": "65058", + "name": "Kiritimati", + "state_id": 1832, + "state_code": "L", + "country_id": 114, + "country_code": "KI", + "latitude": "1.94000000", + "longitude": "-157.47500000" + }, + { + "id": "65060", + "name": "London Village", + "state_id": 1832, + "state_code": "L", + "country_id": 114, + "country_code": "KI", + "latitude": "1.98487000", + "longitude": "-157.47502000" + }, + { + "id": "65065", + "name": "Napari Village", + "state_id": 1832, + "state_code": "L", + "country_id": 114, + "country_code": "KI", + "latitude": "3.90806000", + "longitude": "-159.38832000" + }, + { + "id": "65072", + "name": "Tabuaeran", + "state_id": 1832, + "state_code": "L", + "country_id": 114, + "country_code": "KI", + "latitude": "3.86667000", + "longitude": "-159.33333000" + }, + { + "id": "65073", + "name": "Tabwakea Village", + "state_id": 1832, + "state_code": "L", + "country_id": 114, + "country_code": "KI", + "latitude": "2.01643000", + "longitude": "-157.48773000" + }, + { + "id": "65078", + "name": "Teraina", + "state_id": 1832, + "state_code": "L", + "country_id": 114, + "country_code": "KI", + "latitude": "4.68764000", + "longitude": "-160.38803000" + }, + { + "id": "65057", + "name": "Kanton", + "state_id": 1830, + "state_code": "P", + "country_id": 114, + "country_code": "KI", + "latitude": "-2.81000000", + "longitude": "-171.67800000" + }, + { + "id": "65186", + "name": "Changgang-gun", + "state_id": 3998, + "state_code": "04", + "country_id": 115, + "country_code": "KP", + "latitude": "41.06333000", + "longitude": "126.72556000" + }, + { + "id": "65188", + "name": "Chasŏng", + "state_id": 3998, + "state_code": "04", + "country_id": 115, + "country_code": "KP", + "latitude": "41.46083000", + "longitude": "126.64139000" + }, + { + "id": "65208", + "name": "Kanggye", + "state_id": 3998, + "state_code": "04", + "country_id": 115, + "country_code": "KP", + "latitude": "40.96946000", + "longitude": "126.58523000" + }, + { + "id": "65221", + "name": "Manp’o", + "state_id": 3998, + "state_code": "04", + "country_id": 115, + "country_code": "KP", + "latitude": "41.15472000", + "longitude": "126.28944000" + }, + { + "id": "65181", + "name": "Anbyŏn-ŭp", + "state_id": 3999, + "state_code": "07", + "country_id": 115, + "country_code": "KP", + "latitude": "39.04250000", + "longitude": "127.52389000" + }, + { + "id": "65198", + "name": "Hoeyang", + "state_id": 3999, + "state_code": "07", + "country_id": 115, + "country_code": "KP", + "latitude": "38.71028000", + "longitude": "127.59833000" + }, + { + "id": "65214", + "name": "Kosan", + "state_id": 3999, + "state_code": "07", + "country_id": 115, + "country_code": "KP", + "latitude": "38.85583000", + "longitude": "127.41806000" + }, + { + "id": "65250", + "name": "T’ongch’ŏn-ŭp", + "state_id": 3999, + "state_code": "07", + "country_id": 115, + "country_code": "KP", + "latitude": "38.95389000", + "longitude": "127.89167000" + }, + { + "id": "65252", + "name": "Wŏnsan", + "state_id": 3999, + "state_code": "07", + "country_id": 115, + "country_code": "KP", + "latitude": "39.15278000", + "longitude": "127.44361000" + }, + { + "id": "65183", + "name": "Aoji", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "42.52448000", + "longitude": "130.39718000" + }, + { + "id": "65189", + "name": "Chongjin", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "41.79556000", + "longitude": "129.77583000" + }, + { + "id": "65195", + "name": "Hau-ri", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "41.20056000", + "longitude": "129.47028000" + }, + { + "id": "65196", + "name": "Hoemul-li", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "41.43389000", + "longitude": "129.67000000" + }, + { + "id": "65197", + "name": "Hoeryŏng", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "42.44113000", + "longitude": "129.74601000" + }, + { + "id": "65210", + "name": "Kilju", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "40.96417000", + "longitude": "129.32778000" + }, + { + "id": "65211", + "name": "Kimch’aek-si", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "40.66889000", + "longitude": "129.18972000" + }, + { + "id": "65213", + "name": "Komusan Il-tong", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "42.10914000", + "longitude": "129.69997000" + }, + { + "id": "65219", + "name": "Kyŏngsŏng", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "41.58778000", + "longitude": "129.60611000" + }, + { + "id": "65220", + "name": "Kyŏngwŏn", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "42.81361000", + "longitude": "130.15278000" + }, + { + "id": "65222", + "name": "Musan-ŭp", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "42.22609000", + "longitude": "129.20776000" + }, + { + "id": "65224", + "name": "Namyang-dong", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "42.95000000", + "longitude": "129.86667000" + }, + { + "id": "65225", + "name": "Nanam", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "41.71361000", + "longitude": "129.68444000" + }, + { + "id": "65227", + "name": "Onsŏng", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "42.95722000", + "longitude": "129.99333000" + }, + { + "id": "65230", + "name": "Puryŏng", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "42.06056000", + "longitude": "129.71167000" + }, + { + "id": "65247", + "name": "Sŭngam-nodongjagu", + "state_id": 3995, + "state_code": "09", + "country_id": 115, + "country_code": "KP", + "latitude": "41.66972000", + "longitude": "129.66889000" + }, + { + "id": "65180", + "name": "Anak", + "state_id": 4004, + "state_code": "06", + "country_id": 115, + "country_code": "KP", + "latitude": "38.51083000", + "longitude": "125.49417000" + }, + { + "id": "65203", + "name": "Hŭkkyo-ri", + "state_id": 4004, + "state_code": "06", + "country_id": 115, + "country_code": "KP", + "latitude": "38.79861000", + "longitude": "125.79194000" + }, + { + "id": "65200", + "name": "Hwangju-ŭp", + "state_id": 4004, + "state_code": "06", + "country_id": 115, + "country_code": "KP", + "latitude": "38.67028000", + "longitude": "125.77611000" + }, + { + "id": "65212", + "name": "Koksan", + "state_id": 4004, + "state_code": "06", + "country_id": 115, + "country_code": "KP", + "latitude": "38.78194000", + "longitude": "126.66639000" + }, + { + "id": "65237", + "name": "Sariwŏn", + "state_id": 4004, + "state_code": "06", + "country_id": 115, + "country_code": "KP", + "latitude": "38.50722000", + "longitude": "125.75583000" + }, + { + "id": "65240", + "name": "Sinmak", + "state_id": 4004, + "state_code": "06", + "country_id": 115, + "country_code": "KP", + "latitude": "38.41667000", + "longitude": "126.23333000" + }, + { + "id": "65243", + "name": "Songnim", + "state_id": 4004, + "state_code": "06", + "country_id": 115, + "country_code": "KP", + "latitude": "38.75417000", + "longitude": "125.64500000" + }, + { + "id": "65259", + "name": "Ŭiju", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "40.19944000", + "longitude": "124.53167000" + }, + { + "id": "65191", + "name": "Chŏngju", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "39.69333000", + "longitude": "125.21028000" + }, + { + "id": "65192", + "name": "Chŏngju-gun", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "39.70944000", + "longitude": "125.25278000" + }, + { + "id": "65216", + "name": "Kujang-ŭp", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "39.86722000", + "longitude": "126.03028000" + }, + { + "id": "65217", + "name": "Kusŏng", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "39.98111000", + "longitude": "125.24472000" + }, + { + "id": "65218", + "name": "Kwaksan", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "39.68750000", + "longitude": "125.08278000" + }, + { + "id": "65228", + "name": "Panghyŏn-dong", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "39.88722000", + "longitude": "125.24139000" + }, + { + "id": "65229", + "name": "Pukchil-lodongjagu", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "40.20194000", + "longitude": "125.74833000" + }, + { + "id": "65234", + "name": "Sakchu-ŭp", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "40.38944000", + "longitude": "125.04667000" + }, + { + "id": "65242", + "name": "Sinŭiju", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "40.10056000", + "longitude": "124.39806000" + }, + { + "id": "65255", + "name": "Yŏmju-ŭp", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "39.89333000", + "longitude": "124.59806000" + }, + { + "id": "65257", + "name": "Yŏngbyŏn", + "state_id": 4002, + "state_code": "03", + "country_id": 115, + "country_code": "KP", + "latitude": "39.81333000", + "longitude": "125.80417000" + }, + { + "id": "65190", + "name": "Chunghwa", + "state_id": 4005, + "state_code": "01", + "country_id": 115, + "country_code": "KP", + "latitude": "38.86389000", + "longitude": "125.80000000" + }, + { + "id": "65207", + "name": "Kangdong-ŭp", + "state_id": 4005, + "state_code": "01", + "country_id": 115, + "country_code": "KP", + "latitude": "39.14250000", + "longitude": "126.09611000" + }, + { + "id": "65231", + "name": "Pyongyang", + "state_id": 4005, + "state_code": "01", + "country_id": 115, + "country_code": "KP", + "latitude": "39.03385000", + "longitude": "125.75432000" + }, + { + "id": "65248", + "name": "Sŭngho 1-tong", + "state_id": 4005, + "state_code": "01", + "country_id": 115, + "country_code": "KP", + "latitude": "38.99139000", + "longitude": "125.97778000" + }, + { + "id": "65244", + "name": "Sunan", + "state_id": 4005, + "state_code": "01", + "country_id": 115, + "country_code": "KP", + "latitude": "39.19833000", + "longitude": "125.69000000" + }, + { + "id": "65246", + "name": "Sŏnbong", + "state_id": 4001, + "state_code": "13", + "country_id": 115, + "country_code": "KP", + "latitude": "42.35118000", + "longitude": "130.38307000" + }, + { + "id": "65251", + "name": "Ungsang-nodongjagu", + "state_id": 4001, + "state_code": "13", + "country_id": 115, + "country_code": "KP", + "latitude": "42.35778000", + "longitude": "130.46222000" + }, + { + "id": "65201", + "name": "Hyesan", + "state_id": 3996, + "state_code": "10", + "country_id": 115, + "country_code": "KP", + "latitude": "41.40167000", + "longitude": "128.17778000" + }, + { + "id": "65202", + "name": "Hyesan-dong", + "state_id": 3996, + "state_code": "10", + "country_id": 115, + "country_code": "KP", + "latitude": "41.39756000", + "longitude": "128.17873000" + }, + { + "id": "65209", + "name": "Kapsan-ŭp", + "state_id": 3996, + "state_code": "10", + "country_id": 115, + "country_code": "KP", + "latitude": "41.09028000", + "longitude": "128.29333000" + }, + { + "id": "65249", + "name": "Sŭngjibaegam", + "state_id": 3996, + "state_code": "10", + "country_id": 115, + "country_code": "KP", + "latitude": "41.24278000", + "longitude": "128.79889000" + }, + { + "id": "65194", + "name": "Hamhŭng", + "state_id": 4000, + "state_code": "08", + "country_id": 115, + "country_code": "KP", + "latitude": "39.91833000", + "longitude": "127.53639000" + }, + { + "id": "65204", + "name": "Hŭngnam", + "state_id": 4000, + "state_code": "08", + "country_id": 115, + "country_code": "KP", + "latitude": "39.83167000", + "longitude": "127.61861000" + }, + { + "id": "65199", + "name": "Hongwŏn", + "state_id": 4000, + "state_code": "08", + "country_id": 115, + "country_code": "KP", + "latitude": "40.02528000", + "longitude": "127.95583000" + }, + { + "id": "65205", + "name": "Iwŏn-ŭp", + "state_id": 4000, + "state_code": "08", + "country_id": 115, + "country_code": "KP", + "latitude": "40.32306000", + "longitude": "128.65528000" + }, + { + "id": "65215", + "name": "Kowŏn-ŭp", + "state_id": 4000, + "state_code": "08", + "country_id": 115, + "country_code": "KP", + "latitude": "39.43806000", + "longitude": "127.24306000" + }, + { + "id": "65235", + "name": "Samho-rodongjagu", + "state_id": 4000, + "state_code": "08", + "country_id": 115, + "country_code": "KP", + "latitude": "39.94750000", + "longitude": "127.87111000" + }, + { + "id": "65241", + "name": "Sinsang-ni", + "state_id": 4000, + "state_code": "08", + "country_id": 115, + "country_code": "KP", + "latitude": "39.65028000", + "longitude": "127.40583000" + }, + { + "id": "65258", + "name": "Yŏnggwang-ŭp", + "state_id": 4000, + "state_code": "08", + "country_id": 115, + "country_code": "KP", + "latitude": "40.01833000", + "longitude": "127.45472000" + }, + { + "id": "65254", + "name": "Yuktae-dong", + "state_id": 4000, + "state_code": "08", + "country_id": 115, + "country_code": "KP", + "latitude": "40.02472000", + "longitude": "128.15972000" + }, + { + "id": "65184", + "name": "Ayang-ni", + "state_id": 4003, + "state_code": "05", + "country_id": 115, + "country_code": "KP", + "latitude": "38.24306000", + "longitude": "125.78000000" + }, + { + "id": "65185", + "name": "Chaeryŏng-ŭp", + "state_id": 4003, + "state_code": "05", + "country_id": 115, + "country_code": "KP", + "latitude": "38.39917000", + "longitude": "125.61556000" + }, + { + "id": "65187", + "name": "Changyŏn", + "state_id": 4003, + "state_code": "05", + "country_id": 115, + "country_code": "KP", + "latitude": "38.25083000", + "longitude": "125.09611000" + }, + { + "id": "65193", + "name": "Haeju", + "state_id": 4003, + "state_code": "05", + "country_id": 115, + "country_code": "KP", + "latitude": "38.04056000", + "longitude": "125.71472000" + }, + { + "id": "65206", + "name": "Kaesŏng", + "state_id": 4003, + "state_code": "05", + "country_id": 115, + "country_code": "KP", + "latitude": "37.97083000", + "longitude": "126.55444000" + }, + { + "id": "65226", + "name": "Ongjin", + "state_id": 4003, + "state_code": "05", + "country_id": 115, + "country_code": "KP", + "latitude": "37.93472000", + "longitude": "125.36194000" + }, + { + "id": "65232", + "name": "Pyŏksŏng-ŭp", + "state_id": 4003, + "state_code": "05", + "country_id": 115, + "country_code": "KP", + "latitude": "38.04750000", + "longitude": "125.55667000" + }, + { + "id": "65256", + "name": "Yŏnan-ŭp", + "state_id": 4003, + "state_code": "05", + "country_id": 115, + "country_code": "KP", + "latitude": "37.90889000", + "longitude": "126.16111000" + }, + { + "id": "65182", + "name": "Anju", + "state_id": 3997, + "state_code": "02", + "country_id": 115, + "country_code": "KP", + "latitude": "39.61778000", + "longitude": "125.66472000" + }, + { + "id": "65223", + "name": "Namp’o", + "state_id": 3997, + "state_code": "02", + "country_id": 115, + "country_code": "KP", + "latitude": "38.73750000", + "longitude": "125.40778000" + }, + { + "id": "65233", + "name": "P’yŏngsŏng", + "state_id": 3997, + "state_code": "02", + "country_id": 115, + "country_code": "KP", + "latitude": "39.24639000", + "longitude": "125.87194000" + }, + { + "id": "65236", + "name": "Sangsŏng-ni", + "state_id": 3997, + "state_code": "02", + "country_id": 115, + "country_code": "KP", + "latitude": "39.16944000", + "longitude": "126.88556000" + }, + { + "id": "65238", + "name": "Sil-li", + "state_id": 3997, + "state_code": "02", + "country_id": 115, + "country_code": "KP", + "latitude": "39.49472000", + "longitude": "125.47361000" + }, + { + "id": "65239", + "name": "Sinanju", + "state_id": 3997, + "state_code": "02", + "country_id": 115, + "country_code": "KP", + "latitude": "39.59806000", + "longitude": "125.60972000" + }, + { + "id": "65245", + "name": "Sunch’ŏn", + "state_id": 3997, + "state_code": "02", + "country_id": 115, + "country_code": "KP", + "latitude": "39.43167000", + "longitude": "125.93278000" + }, + { + "id": "65253", + "name": "Yonggang-ŭp", + "state_id": 3997, + "state_code": "02", + "country_id": 115, + "country_code": "KP", + "latitude": "38.85611000", + "longitude": "125.42444000" + }, + { + "id": "65276", + "name": "Buk-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.19724000", + "longitude": "128.99134000" + }, + { + "id": "65278", + "name": "Busan", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.10168000", + "longitude": "129.03004000" + }, + { + "id": "65313", + "name": "Dongnae-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.20447000", + "longitude": "129.07800000" + }, + { + "id": "65325", + "name": "Gangseo-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.15930000", + "longitude": "128.93300000" + }, + { + "id": "65331", + "name": "Geumjeong-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.25863000", + "longitude": "129.09010000" + }, + { + "id": "65333", + "name": "Gijang", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.24417000", + "longitude": "129.21389000" + }, + { + "id": "65334", + "name": "Gijang-gun", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.29721000", + "longitude": "129.20076000" + }, + { + "id": "65375", + "name": "Haeundae-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.16665000", + "longitude": "129.16792000" + }, + { + "id": "65421", + "name": "Jung-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.10594000", + "longitude": "129.03331000" + }, + { + "id": "65452", + "name": "Nam-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.13648000", + "longitude": "129.08266000" + }, + { + "id": "65477", + "name": "Saha-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.08552000", + "longitude": "128.98725000" + }, + { + "id": "65482", + "name": "Sasang-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.14479000", + "longitude": "128.97986000" + }, + { + "id": "65484", + "name": "Seo-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.12529000", + "longitude": "129.01946000" + }, + { + "id": "65513", + "name": "Suyeong-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.15627000", + "longitude": "129.11253000" + }, + { + "id": "65552", + "name": "Yeongdo-gu", + "state_id": 3860, + "state_code": "26", + "country_id": 116, + "country_code": "KR", + "latitude": "35.07849000", + "longitude": "129.06483000" + }, + { + "id": "65300", + "name": "Daegu", + "state_id": 3846, + "state_code": "27", + "country_id": 116, + "country_code": "KR", + "latitude": "35.87028000", + "longitude": "128.59111000" + }, + { + "id": "65302", + "name": "Dalseo-gu", + "state_id": 3846, + "state_code": "27", + "country_id": 116, + "country_code": "KR", + "latitude": "35.82569000", + "longitude": "128.52403000" + }, + { + "id": "65303", + "name": "Dalseong-gun", + "state_id": 3846, + "state_code": "27", + "country_id": 116, + "country_code": "KR", + "latitude": "35.77467000", + "longitude": "128.42955000" + }, + { + "id": "65307", + "name": "Dong-gu", + "state_id": 3846, + "state_code": "27", + "country_id": 116, + "country_code": "KR", + "latitude": "35.88566000", + "longitude": "128.63296000" + }, + { + "id": "65394", + "name": "Hwawŏn", + "state_id": 3846, + "state_code": "27", + "country_id": 116, + "country_code": "KR", + "latitude": "35.80167000", + "longitude": "128.50083000" + }, + { + "id": "65422", + "name": "Jung-gu", + "state_id": 3846, + "state_code": "27", + "country_id": 116, + "country_code": "KR", + "latitude": "35.86678000", + "longitude": "128.59538000" + }, + { + "id": "65485", + "name": "Seo-gu", + "state_id": 3846, + "state_code": "27", + "country_id": 116, + "country_code": "KR", + "latitude": "35.87465000", + "longitude": "128.55109000" + }, + { + "id": "65511", + "name": "Suseong-gu", + "state_id": 3846, + "state_code": "27", + "country_id": 116, + "country_code": "KR", + "latitude": "35.85905000", + "longitude": "128.62625000" + }, + { + "id": "65301", + "name": "Daejeon", + "state_id": 3850, + "state_code": "30", + "country_id": 116, + "country_code": "KR", + "latitude": "36.34913000", + "longitude": "127.38493000" + }, + { + "id": "65486", + "name": "Seo-gu", + "state_id": 3850, + "state_code": "30", + "country_id": 116, + "country_code": "KR", + "latitude": "36.27211000", + "longitude": "127.33100000" + }, + { + "id": "65503", + "name": "Sintansin", + "state_id": 3850, + "state_code": "30", + "country_id": 116, + "country_code": "KR", + "latitude": "36.45361000", + "longitude": "127.43111000" + }, + { + "id": "65506", + "name": "Songgangdong", + "state_id": 3850, + "state_code": "30", + "country_id": 116, + "country_code": "KR", + "latitude": "36.43387000", + "longitude": "127.37587000" + }, + { + "id": "65567", + "name": "Yuseong-gu", + "state_id": 3850, + "state_code": "30", + "country_id": 116, + "country_code": "KR", + "latitude": "36.36685000", + "longitude": "127.32700000" + }, + { + "id": "65293", + "name": "Cheorwon-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.24391000", + "longitude": "127.44522000" + }, + { + "id": "65297", + "name": "Chuncheon", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.87472000", + "longitude": "127.73417000" + }, + { + "id": "65298", + "name": "Chuncheon-si", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.88048000", + "longitude": "127.72776000" + }, + { + "id": "65311", + "name": "Donghae-si", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.52345000", + "longitude": "129.11357000" + }, + { + "id": "65322", + "name": "Gangneung", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.75266000", + "longitude": "128.87239000" + }, + { + "id": "65323", + "name": "Gangneung-si", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.75190000", + "longitude": "128.87825000" + }, + { + "id": "65349", + "name": "Goseong-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.37945000", + "longitude": "128.46755000" + }, + { + "id": "65383", + "name": "Hoengseong-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.48817000", + "longitude": "127.98570000" + }, + { + "id": "65385", + "name": "Hongch’ŏn", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.69180000", + "longitude": "127.88570000" + }, + { + "id": "65384", + "name": "Hongcheon-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.76058000", + "longitude": "128.02823000" + }, + { + "id": "65388", + "name": "Hwacheon", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.10705000", + "longitude": "127.70632000" + }, + { + "id": "65389", + "name": "Hwacheon-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.14212000", + "longitude": "127.67615000" + }, + { + "id": "65401", + "name": "Inje-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.04416000", + "longitude": "128.27876000" + }, + { + "id": "65411", + "name": "Jeongseon-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.38911000", + "longitude": "128.72995000" + }, + { + "id": "65430", + "name": "Kosong", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.37881000", + "longitude": "128.46760000" + }, + { + "id": "65459", + "name": "Neietsu", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.18447000", + "longitude": "128.46821000" + }, + { + "id": "65473", + "name": "Pyeongchang", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.37028000", + "longitude": "128.39306000" + }, + { + "id": "65474", + "name": "Pyeongchang-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.36820000", + "longitude": "128.39550000" + }, + { + "id": "65478", + "name": "Samcheok-si", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.45013000", + "longitude": "129.16626000" + }, + { + "id": "65481", + "name": "Santyoku", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.44056000", + "longitude": "129.17083000" + }, + { + "id": "65504", + "name": "Sokcho", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.20701000", + "longitude": "128.59181000" + }, + { + "id": "65505", + "name": "Sokcho-si", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.20725000", + "longitude": "128.59275000" + }, + { + "id": "65515", + "name": "Taebaek-si", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.16520000", + "longitude": "128.98570000" + }, + { + "id": "65519", + "name": "T’aebaek", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.17590000", + "longitude": "128.98890000" + }, + { + "id": "65518", + "name": "Tonghae", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.54389000", + "longitude": "129.10694000" + }, + { + "id": "65534", + "name": "Wŏnju", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.35139000", + "longitude": "127.94528000" + }, + { + "id": "65533", + "name": "Wonju-si", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "37.32104000", + "longitude": "127.92132000" + }, + { + "id": "65536", + "name": "Yanggu", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.10583000", + "longitude": "127.98944000" + }, + { + "id": "65537", + "name": "Yanggu-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.10160000", + "longitude": "127.98555000" + }, + { + "id": "65543", + "name": "Yangyang-gun", + "state_id": 3862, + "state_code": "42", + "country_id": 116, + "country_code": "KR", + "latitude": "38.06215000", + "longitude": "128.61471000" + }, + { + "id": "65362", + "name": "Gwangju", + "state_id": 3858, + "state_code": "29", + "country_id": 116, + "country_code": "KR", + "latitude": "35.15472000", + "longitude": "126.91556000" + }, + { + "id": "65366", + "name": "Gwangsan-gu", + "state_id": 3858, + "state_code": "29", + "country_id": 116, + "country_code": "KR", + "latitude": "35.16158000", + "longitude": "126.80810000" + }, + { + "id": "65437", + "name": "Masan", + "state_id": 3858, + "state_code": "29", + "country_id": 116, + "country_code": "KR", + "latitude": "35.12725000", + "longitude": "126.83149000" + }, + { + "id": "65262", + "name": "Ansan-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.32361000", + "longitude": "126.82194000" + }, + { + "id": "65263", + "name": "Anseong", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.01083000", + "longitude": "127.27028000" + }, + { + "id": "65264", + "name": "Anyang-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.39250000", + "longitude": "126.92694000" + }, + { + "id": "65274", + "name": "Bucheon-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.50440000", + "longitude": "126.76625000" + }, + { + "id": "65310", + "name": "Dongducheon", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.91889000", + "longitude": "127.06897000" + }, + { + "id": "65326", + "name": "Gapyeong", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.83101000", + "longitude": "127.51059000" + }, + { + "id": "65327", + "name": "Gapyeong-gun", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.83080000", + "longitude": "127.51522000" + }, + { + "id": "65339", + "name": "Gimpo-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.63637000", + "longitude": "126.69270000" + }, + { + "id": "65350", + "name": "Goyang-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.65639000", + "longitude": "126.83500000" + }, + { + "id": "65352", + "name": "Gunpo-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.34261000", + "longitude": "126.92149000" + }, + { + "id": "65356", + "name": "Guri-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.59860000", + "longitude": "127.13940000" + }, + { + "id": "65359", + "name": "Gwacheon-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.43407000", + "longitude": "126.99989000" + }, + { + "id": "65363", + "name": "Gwangju", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.41000000", + "longitude": "127.25722000" + }, + { + "id": "65364", + "name": "Gwangju-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.40329000", + "longitude": "127.29855000" + }, + { + "id": "65365", + "name": "Gwangmyeong-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.44435000", + "longitude": "126.86499000" + }, + { + "id": "65378", + "name": "Hanam", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.54000000", + "longitude": "127.20556000" + }, + { + "id": "65379", + "name": "Hanam-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.53895000", + "longitude": "127.21250000" + }, + { + "id": "65390", + "name": "Hwado", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.65250000", + "longitude": "127.30750000" + }, + { + "id": "65391", + "name": "Hwaseong-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.20682000", + "longitude": "126.81690000" + }, + { + "id": "65395", + "name": "Icheon-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.27642000", + "longitude": "127.43692000" + }, + { + "id": "65433", + "name": "Kwangmyŏng", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.47722000", + "longitude": "126.86639000" + }, + { + "id": "65448", + "name": "Munsan", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.85944000", + "longitude": "126.78500000" + }, + { + "id": "65456", + "name": "Namyangju", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.63667000", + "longitude": "127.21417000" + }, + { + "id": "65457", + "name": "Namyangju-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.65217000", + "longitude": "127.24010000" + }, + { + "id": "65465", + "name": "Osan", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.15222000", + "longitude": "127.07056000" + }, + { + "id": "65466", + "name": "Osan-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.16230000", + "longitude": "127.05246000" + }, + { + "id": "65467", + "name": "Paju-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.75952000", + "longitude": "126.77772000" + }, + { + "id": "65468", + "name": "Pocheon-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.89370000", + "longitude": "127.20028000" + }, + { + "id": "65472", + "name": "Pubal", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.29167000", + "longitude": "127.50778000" + }, + { + "id": "65475", + "name": "Pyeongtaek", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.01372000", + "longitude": "126.98748000" + }, + { + "id": "65495", + "name": "Seongnam-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.41875000", + "longitude": "127.12877000" + }, + { + "id": "65499", + "name": "Siheung", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.39067000", + "longitude": "126.78880000" + }, + { + "id": "65512", + "name": "Suwon", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.29111000", + "longitude": "127.00889000" + }, + { + "id": "65520", + "name": "Uijeongbu-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.73865000", + "longitude": "127.04770000" + }, + { + "id": "65523", + "name": "Uiwang-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.34500000", + "longitude": "126.97575000" + }, + { + "id": "65529", + "name": "Wabu", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.58972000", + "longitude": "127.22028000" + }, + { + "id": "65538", + "name": "Yangju", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.83311000", + "longitude": "127.06169000" + }, + { + "id": "65539", + "name": "Yangju-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.81732000", + "longitude": "127.04600000" + }, + { + "id": "65540", + "name": "Yangp'yŏng", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.48972000", + "longitude": "127.49056000" + }, + { + "id": "65541", + "name": "Yangpyeong-gun", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.48880000", + "longitude": "127.49222000" + }, + { + "id": "65545", + "name": "Yeoju-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.29562000", + "longitude": "127.63668000" + }, + { + "id": "65546", + "name": "Yeoncheon-gun", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "38.09404000", + "longitude": "127.07577000" + }, + { + "id": "65564", + "name": "Yongin-si", + "state_id": 3847, + "state_code": "41", + "country_id": 116, + "country_code": "KR", + "latitude": "37.23825000", + "longitude": "127.17795000" + }, + { + "id": "65277", + "name": "Bupyeong-gu", + "state_id": 3848, + "state_code": "28", + "country_id": 116, + "country_code": "KR", + "latitude": "37.49720000", + "longitude": "126.71107000" + }, + { + "id": "65400", + "name": "Incheon", + "state_id": 3848, + "state_code": "28", + "country_id": 116, + "country_code": "KR", + "latitude": "37.45646000", + "longitude": "126.70515000" + }, + { + "id": "65438", + "name": "Michuhol", + "state_id": 3848, + "state_code": "28", + "country_id": 116, + "country_code": "KR", + "latitude": "37.46362000", + "longitude": "126.65000000" + }, + { + "id": "65560", + "name": "Yeonsu-gu", + "state_id": 3848, + "state_code": "28", + "country_id": 116, + "country_code": "KR", + "latitude": "37.41911000", + "longitude": "126.66489000" + }, + { + "id": "65317", + "name": "Gaigeturi", + "state_id": 3853, + "state_code": "49", + "country_id": 116, + "country_code": "KR", + "latitude": "33.46444000", + "longitude": "126.31833000" + }, + { + "id": "65406", + "name": "Jeju City", + "state_id": 3853, + "state_code": "49", + "country_id": 116, + "country_code": "KR", + "latitude": "33.50972000", + "longitude": "126.52194000" + }, + { + "id": "65407", + "name": "Jeju-si", + "state_id": 3853, + "state_code": "49", + "country_id": 116, + "country_code": "KR", + "latitude": "33.45578000", + "longitude": "126.53928000" + }, + { + "id": "65490", + "name": "Seogwipo", + "state_id": 3853, + "state_code": "49", + "country_id": 116, + "country_code": "KR", + "latitude": "33.25333000", + "longitude": "126.56181000" + }, + { + "id": "65268", + "name": "Boeun-gun", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.49489000", + "longitude": "127.72865000" + }, + { + "id": "65289", + "name": "Cheongju-si", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.63722000", + "longitude": "127.48972000" + }, + { + "id": "65295", + "name": "Chinch'ŏn", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.85667000", + "longitude": "127.44333000" + }, + { + "id": "65299", + "name": "Chungju-si", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "37.01791000", + "longitude": "127.87713000" + }, + { + "id": "65305", + "name": "Danyang-gun", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.98615000", + "longitude": "128.36945000" + }, + { + "id": "65315", + "name": "Eumseong-gun", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.92602000", + "longitude": "127.68070000" + }, + { + "id": "65341", + "name": "Goesan-gun", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.77179000", + "longitude": "127.81426000" + }, + { + "id": "65405", + "name": "Jecheon-si", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "37.06206000", + "longitude": "128.14065000" + }, + { + "id": "65414", + "name": "Jeungpyeong-gun", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.78377000", + "longitude": "127.59858000" + }, + { + "id": "65416", + "name": "Jincheon-gun", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.88281000", + "longitude": "127.42768000" + }, + { + "id": "65429", + "name": "Koesan", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.81083000", + "longitude": "127.79472000" + }, + { + "id": "65463", + "name": "Okcheon", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.30120000", + "longitude": "127.56800000" + }, + { + "id": "65464", + "name": "Okcheon-gun", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.26642000", + "longitude": "127.58324000" + }, + { + "id": "65553", + "name": "Yeongdong", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.17500000", + "longitude": "127.77639000" + }, + { + "id": "65554", + "name": "Yeongdong-gun", + "state_id": 3854, + "state_code": "43", + "country_id": 116, + "country_code": "KR", + "latitude": "36.21658000", + "longitude": "127.79374000" + }, + { + "id": "65260", + "name": "Andong", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.56636000", + "longitude": "128.72275000" + }, + { + "id": "65261", + "name": "Andong-si", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.56667000", + "longitude": "128.71667000" + }, + { + "id": "65269", + "name": "Bonghwa-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.88951000", + "longitude": "128.73573000" + }, + { + "id": "65288", + "name": "Cheongdo-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "35.67166000", + "longitude": "128.78509000" + }, + { + "id": "65290", + "name": "Cheongsong gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.43351000", + "longitude": "129.05700000" + }, + { + "id": "65291", + "name": "Cheongsong-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.43288000", + "longitude": "129.05159000" + }, + { + "id": "65294", + "name": "Chilgok-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.01512000", + "longitude": "128.46138000" + }, + { + "id": "65314", + "name": "Eisen", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.82167000", + "longitude": "128.63083000" + }, + { + "id": "65335", + "name": "Gimcheon", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.12176000", + "longitude": "128.11981000" + }, + { + "id": "65336", + "name": "Gimcheon-si", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.14481000", + "longitude": "128.11157000" + }, + { + "id": "65346", + "name": "Goryeong-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "35.74959000", + "longitude": "128.29707000" + }, + { + "id": "65351", + "name": "Gumi-si", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.21009000", + "longitude": "128.35442000" + }, + { + "id": "65355", + "name": "Gunwi-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.16995000", + "longitude": "128.64705000" + }, + { + "id": "65369", + "name": "Gyeongju", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "35.84278000", + "longitude": "129.21167000" + }, + { + "id": "65370", + "name": "Gyeongsan-si", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "35.83333000", + "longitude": "128.80000000" + }, + { + "id": "65381", + "name": "Hayang", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "35.91333000", + "longitude": "128.82000000" + }, + { + "id": "65382", + "name": "Heunghae", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.10945000", + "longitude": "129.34517000" + }, + { + "id": "65408", + "name": "Jenzan", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.24083000", + "longitude": "128.29750000" + }, + { + "id": "65431", + "name": "Kunwi", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.23472000", + "longitude": "128.57278000" + }, + { + "id": "65446", + "name": "Mungyeong", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.59458000", + "longitude": "128.19946000" + }, + { + "id": "65447", + "name": "Mungyeong-si", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.58755000", + "longitude": "128.18624000" + }, + { + "id": "65469", + "name": "Pohang", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.02917000", + "longitude": "129.36481000" + }, + { + "id": "65470", + "name": "Pohang-si", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.08333000", + "longitude": "129.36667000" + }, + { + "id": "65480", + "name": "Sangju", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.41528000", + "longitude": "128.16056000" + }, + { + "id": "65494", + "name": "Seongju-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "35.91888000", + "longitude": "128.28838000" + }, + { + "id": "65522", + "name": "Uiseong-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.36122000", + "longitude": "128.61517000" + }, + { + "id": "65524", + "name": "Uljin-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.91968000", + "longitude": "129.31966000" + }, + { + "id": "65526", + "name": "Ulleung-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "37.50442000", + "longitude": "130.86084000" + }, + { + "id": "65530", + "name": "Waegwan", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "35.99251000", + "longitude": "128.39785000" + }, + { + "id": "65544", + "name": "Yecheon-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.65272000", + "longitude": "128.43007000" + }, + { + "id": "65549", + "name": "Yeongcheon-si", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.00000000", + "longitude": "129.00000000" + }, + { + "id": "65550", + "name": "Yeongdeok-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.48125000", + "longitude": "129.31078000" + }, + { + "id": "65557", + "name": "Yeongju-si", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.87459000", + "longitude": "128.58631000" + }, + { + "id": "65558", + "name": "Yeongyang-gun", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "36.69592000", + "longitude": "129.14196000" + }, + { + "id": "65559", + "name": "Yeonil", + "state_id": 3855, + "state_code": "47", + "country_id": 116, + "country_code": "KR", + "latitude": "35.99526000", + "longitude": "129.35162000" + }, + { + "id": "65273", + "name": "Buan-gun", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.70000000", + "longitude": "126.66667000" + }, + { + "id": "65283", + "name": "Changsu", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.64842000", + "longitude": "127.51523000" + }, + { + "id": "65338", + "name": "Gimje-si", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.80701000", + "longitude": "126.90755000" + }, + { + "id": "65340", + "name": "Gochang-gun", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.43483000", + "longitude": "126.70047000" + }, + { + "id": "65353", + "name": "Gunsan", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.97861000", + "longitude": "126.71139000" + }, + { + "id": "65354", + "name": "Gunsan-si", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.93583000", + "longitude": "126.68338000" + }, + { + "id": "65396", + "name": "Iksan", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.94389000", + "longitude": "126.95444000" + }, + { + "id": "65397", + "name": "Iksan-si", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "36.03718000", + "longitude": "126.98897000" + }, + { + "id": "65398", + "name": "Imsil", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.61306000", + "longitude": "127.27944000" + }, + { + "id": "65399", + "name": "Imsil-gun", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.62160000", + "longitude": "127.23187000" + }, + { + "id": "65404", + "name": "Jangsu-gun", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.62504000", + "longitude": "127.56358000" + }, + { + "id": "65409", + "name": "Jeongeup", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.60004000", + "longitude": "126.91699000" + }, + { + "id": "65410", + "name": "Jeongeup-si", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.60000000", + "longitude": "126.91667000" + }, + { + "id": "65412", + "name": "Jeonju", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.82194000", + "longitude": "127.14889000" + }, + { + "id": "65413", + "name": "Jeonju-si", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.83333000", + "longitude": "127.15000000" + }, + { + "id": "65415", + "name": "Jinan-gun", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.80472000", + "longitude": "127.47579000" + }, + { + "id": "65426", + "name": "Kimje", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.80167000", + "longitude": "126.88889000" + }, + { + "id": "65428", + "name": "Koch'ang", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.43333000", + "longitude": "126.70000000" + }, + { + "id": "65445", + "name": "Muju-gun", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.93172000", + "longitude": "127.71118000" + }, + { + "id": "65455", + "name": "Namwon", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.44821000", + "longitude": "127.38007000" + }, + { + "id": "65458", + "name": "Nangen", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.41000000", + "longitude": "127.38583000" + }, + { + "id": "65471", + "name": "Puan", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.72806000", + "longitude": "126.73194000" + }, + { + "id": "65508", + "name": "Sunchang-gun", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.37651000", + "longitude": "127.14967000" + }, + { + "id": "65532", + "name": "Wanju", + "state_id": 3851, + "state_code": "45", + "country_id": 116, + "country_code": "KR", + "latitude": "35.84509000", + "longitude": "127.14752000" + }, + { + "id": "65483", + "name": "Sejong", + "state_id": 3861, + "state_code": "50", + "country_id": 116, + "country_code": "KR", + "latitude": "36.59245000", + "longitude": "127.29223000" + }, + { + "id": "65306", + "name": "Dobong-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.65066000", + "longitude": "127.03011000" + }, + { + "id": "65309", + "name": "Dongdaemun-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.58189000", + "longitude": "127.05408000" + }, + { + "id": "65312", + "name": "Dongjak-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.50056000", + "longitude": "126.95149000" + }, + { + "id": "65316", + "name": "Eunpyeong-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.61846000", + "longitude": "126.92780000" + }, + { + "id": "65318", + "name": "Gangbuk-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.63490000", + "longitude": "127.02015000" + }, + { + "id": "65319", + "name": "Gangdong-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.55274000", + "longitude": "127.14546000" + }, + { + "id": "65321", + "name": "Gangnam-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.49510000", + "longitude": "127.06278000" + }, + { + "id": "65324", + "name": "Gangseo-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.56227000", + "longitude": "126.81622000" + }, + { + "id": "65330", + "name": "Geumcheon-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.47486000", + "longitude": "126.89106000" + }, + { + "id": "65357", + "name": "Guro-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.49447000", + "longitude": "126.85020000" + }, + { + "id": "65360", + "name": "Gwanak-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.47876000", + "longitude": "126.95235000" + }, + { + "id": "65361", + "name": "Gwangjin-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.53913000", + "longitude": "127.08366000" + }, + { + "id": "65419", + "name": "Jongno-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.57290000", + "longitude": "126.97928000" + }, + { + "id": "65420", + "name": "Jung-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.55986000", + "longitude": "126.99398000" + }, + { + "id": "65424", + "name": "Jungnang-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.60199000", + "longitude": "127.10461000" + }, + { + "id": "65436", + "name": "Mapo-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.55438000", + "longitude": "126.90926000" + }, + { + "id": "65462", + "name": "Nowon-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.66045000", + "longitude": "127.06718000" + }, + { + "id": "65488", + "name": "Seocho-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.49447000", + "longitude": "127.01088000" + }, + { + "id": "65489", + "name": "Seodaemun-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.57809000", + "longitude": "126.93506000" + }, + { + "id": "65491", + "name": "Seongbuk-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.60267000", + "longitude": "127.01448000" + }, + { + "id": "65492", + "name": "Seongdong-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.54784000", + "longitude": "127.02461000" + }, + { + "id": "65498", + "name": "Seoul", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.56600000", + "longitude": "126.97840000" + }, + { + "id": "65507", + "name": "Songpa-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.50210000", + "longitude": "127.11113000" + }, + { + "id": "65535", + "name": "Yangcheon-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.52157000", + "longitude": "126.85827000" + }, + { + "id": "65551", + "name": "Yeongdeungpo-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.52606000", + "longitude": "126.90308000" + }, + { + "id": "65565", + "name": "Yongsan-dong", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.54450000", + "longitude": "126.98370000" + }, + { + "id": "65566", + "name": "Yongsan-gu", + "state_id": 3849, + "state_code": "11", + "country_id": 116, + "country_code": "KR", + "latitude": "37.53391000", + "longitude": "126.97750000" + }, + { + "id": "65265", + "name": "Asan", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.78361000", + "longitude": "127.00417000" + }, + { + "id": "65266", + "name": "Asan-si", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.80791000", + "longitude": "126.97769000" + }, + { + "id": "65270", + "name": "Boryeong", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.34931000", + "longitude": "126.59772000" + }, + { + "id": "65271", + "name": "Boryeong-si", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.35649000", + "longitude": "126.59444000" + }, + { + "id": "65279", + "name": "Buyeo", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.27472000", + "longitude": "126.90906000" + }, + { + "id": "65280", + "name": "Buyeo-gun", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.26257000", + "longitude": "126.85802000" + }, + { + "id": "65286", + "name": "Cheonan", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.80650000", + "longitude": "127.15220000" + }, + { + "id": "65287", + "name": "Cheonan-si", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.80488000", + "longitude": "127.19431000" + }, + { + "id": "65292", + "name": "Cheongyang-gun", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.41676000", + "longitude": "126.79419000" + }, + { + "id": "65332", + "name": "Geumsan-gun", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.13381000", + "longitude": "127.48062000" + }, + { + "id": "65344", + "name": "Gongju", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.45556000", + "longitude": "127.12472000" + }, + { + "id": "65345", + "name": "Gongju-si", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.50000000", + "longitude": "127.08333000" + }, + { + "id": "65371", + "name": "Gyeryong-si", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.29304000", + "longitude": "127.22575000" + }, + { + "id": "65386", + "name": "Hongseong", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.60090000", + "longitude": "126.66500000" + }, + { + "id": "65387", + "name": "Hongseong-gun", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.56705000", + "longitude": "126.62626000" + }, + { + "id": "65427", + "name": "Kinzan", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.10306000", + "longitude": "127.48889000" + }, + { + "id": "65460", + "name": "Nonsan", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.20389000", + "longitude": "127.08472000" + }, + { + "id": "65461", + "name": "Nonsan-si", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.19774000", + "longitude": "127.12143000" + }, + { + "id": "65487", + "name": "Seocheon-gun", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.10600000", + "longitude": "126.69716000" + }, + { + "id": "65493", + "name": "Seonghwan", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.91556000", + "longitude": "127.13139000" + }, + { + "id": "65496", + "name": "Seosan", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.78167000", + "longitude": "126.45222000" + }, + { + "id": "65497", + "name": "Seosan-si", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.78518000", + "longitude": "126.46568000" + }, + { + "id": "65514", + "name": "Taean-gun", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.70036000", + "longitude": "126.28391000" + }, + { + "id": "65516", + "name": "Taesal-li", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.97140000", + "longitude": "126.45420000" + }, + { + "id": "65517", + "name": "Tangjin", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.89444000", + "longitude": "126.62972000" + }, + { + "id": "65568", + "name": "Yŏnmu", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.12944000", + "longitude": "127.10000000" + }, + { + "id": "65562", + "name": "Yesan", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.67756000", + "longitude": "126.84272000" + }, + { + "id": "65563", + "name": "Yesan-gun", + "state_id": 3859, + "state_code": "44", + "country_id": 116, + "country_code": "KR", + "latitude": "36.68218000", + "longitude": "126.79592000" + }, + { + "id": "65281", + "name": "Changnyeong", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.54145000", + "longitude": "128.49506000" + }, + { + "id": "65282", + "name": "Changnyeong-gun", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.50822000", + "longitude": "128.49020000" + }, + { + "id": "65284", + "name": "Changwon", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.22806000", + "longitude": "128.68111000" + }, + { + "id": "65285", + "name": "Changwon-si", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.27533000", + "longitude": "128.65152000" + }, + { + "id": "65296", + "name": "Chinju", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.19278000", + "longitude": "128.08472000" + }, + { + "id": "65328", + "name": "Geochang-gun", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.73034000", + "longitude": "127.90149000" + }, + { + "id": "65329", + "name": "Geoje-si", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "34.90000000", + "longitude": "128.66666000" + }, + { + "id": "65337", + "name": "Gimhae-si", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.25000000", + "longitude": "128.86667000" + }, + { + "id": "65347", + "name": "Goseong", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "34.97631000", + "longitude": "128.32361000" + }, + { + "id": "65348", + "name": "Goseong-gun", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.01478000", + "longitude": "128.28244000" + }, + { + "id": "65372", + "name": "Hadong-gun", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.13628000", + "longitude": "127.77291000" + }, + { + "id": "65376", + "name": "Haman-gun", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.29117000", + "longitude": "128.42970000" + }, + { + "id": "65380", + "name": "Hapcheon-gun", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.57410000", + "longitude": "128.13841000" + }, + { + "id": "65418", + "name": "Jinju-si", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.20445000", + "longitude": "128.12408000" + }, + { + "id": "65425", + "name": "Kimhae", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.23417000", + "longitude": "128.88111000" + }, + { + "id": "65435", + "name": "Kyosai", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "34.85028000", + "longitude": "128.58861000" + }, + { + "id": "65439", + "name": "Miryang", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.49333000", + "longitude": "128.74889000" + }, + { + "id": "65440", + "name": "Miryang-si", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.49750000", + "longitude": "128.78690000" + }, + { + "id": "65449", + "name": "Naesŏ", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.24972000", + "longitude": "128.52000000" + }, + { + "id": "65454", + "name": "Namhae-gun", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "34.80433000", + "longitude": "127.92708000" + }, + { + "id": "65476", + "name": "Sacheon-si", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.00385000", + "longitude": "128.06857000" + }, + { + "id": "65479", + "name": "Sancheong-gun", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.36625000", + "longitude": "127.87065000" + }, + { + "id": "65502", + "name": "Sinhyeon", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "34.88250000", + "longitude": "128.62667000" + }, + { + "id": "65521", + "name": "Uiryeong-gun", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.39230000", + "longitude": "128.26917000" + }, + { + "id": "65528", + "name": "Ungsang", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.40611000", + "longitude": "129.16861000" + }, + { + "id": "65542", + "name": "Yangsan", + "state_id": 3857, + "state_code": "48", + "country_id": 116, + "country_code": "KR", + "latitude": "35.34199000", + "longitude": "129.03358000" + }, + { + "id": "65267", + "name": "Beolgyo", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.84897000", + "longitude": "127.34052000" + }, + { + "id": "65272", + "name": "Boseong-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.84622000", + "longitude": "127.22189000" + }, + { + "id": "65304", + "name": "Damyang-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.33976000", + "longitude": "126.99125000" + }, + { + "id": "65320", + "name": "Gangjin-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.61787000", + "longitude": "126.76758000" + }, + { + "id": "65342", + "name": "Goheung-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.58333000", + "longitude": "127.33333000" + }, + { + "id": "65343", + "name": "Gokseong-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.21449000", + "longitude": "127.26280000" + }, + { + "id": "65358", + "name": "Gurye-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.23616000", + "longitude": "127.50129000" + }, + { + "id": "65367", + "name": "Gwangyang", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.94140000", + "longitude": "127.69569000" + }, + { + "id": "65368", + "name": "Gwangyang-si", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.04007000", + "longitude": "127.60949000" + }, + { + "id": "65373", + "name": "Haenam", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.57111000", + "longitude": "126.59889000" + }, + { + "id": "65374", + "name": "Haenam-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.54047000", + "longitude": "126.51870000" + }, + { + "id": "65377", + "name": "Hampyeong-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.14988000", + "longitude": "126.53337000" + }, + { + "id": "65392", + "name": "Hwasun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.06125000", + "longitude": "126.98746000" + }, + { + "id": "65393", + "name": "Hwasun-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.00468000", + "longitude": "127.02648000" + }, + { + "id": "65402", + "name": "Jangheung-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.70555000", + "longitude": "126.94905000" + }, + { + "id": "65403", + "name": "Jangseong-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.32734000", + "longitude": "126.76817000" + }, + { + "id": "65417", + "name": "Jindo-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.41958000", + "longitude": "126.22599000" + }, + { + "id": "65432", + "name": "Kurye", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.20944000", + "longitude": "127.46444000" + }, + { + "id": "65434", + "name": "Kwangyang", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.97528000", + "longitude": "127.58917000" + }, + { + "id": "65441", + "name": "Mokpo", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.81282000", + "longitude": "126.39181000" + }, + { + "id": "65442", + "name": "Mokpo-si", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.81226000", + "longitude": "126.39179000" + }, + { + "id": "65443", + "name": "Muan", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.99014000", + "longitude": "126.47899000" + }, + { + "id": "65444", + "name": "Muan-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.95642000", + "longitude": "126.44041000" + }, + { + "id": "65450", + "name": "Naju", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.02920000", + "longitude": "126.71750000" + }, + { + "id": "65451", + "name": "Naju-si", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.05683000", + "longitude": "126.67362000" + }, + { + "id": "65500", + "name": "Sinan", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.82620000", + "longitude": "126.10863000" + }, + { + "id": "65501", + "name": "Sinan-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.83107000", + "longitude": "126.09872000" + }, + { + "id": "65509", + "name": "Suncheon", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.95050000", + "longitude": "127.48784000" + }, + { + "id": "65510", + "name": "Suncheon-si", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.97162000", + "longitude": "127.46096000" + }, + { + "id": "65531", + "name": "Wando-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.31182000", + "longitude": "126.73845000" + }, + { + "id": "65547", + "name": "Yeongam", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.80059000", + "longitude": "126.69669000" + }, + { + "id": "65548", + "name": "Yeongam-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.79790000", + "longitude": "126.62651000" + }, + { + "id": "65555", + "name": "Yeonggwang", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.27814000", + "longitude": "126.51181000" + }, + { + "id": "65556", + "name": "Yeonggwang-gun", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "35.28711000", + "longitude": "126.43616000" + }, + { + "id": "65561", + "name": "Yeosu", + "state_id": 3856, + "state_code": "46", + "country_id": 116, + "country_code": "KR", + "latitude": "34.76062000", + "longitude": "127.66215000" + }, + { + "id": "65275", + "name": "Buk-gu", + "state_id": 3852, + "state_code": "31", + "country_id": 116, + "country_code": "KR", + "latitude": "35.58243000", + "longitude": "129.36049000" + }, + { + "id": "65308", + "name": "Dong-gu", + "state_id": 3852, + "state_code": "31", + "country_id": 116, + "country_code": "KR", + "latitude": "35.50470000", + "longitude": "129.41860000" + }, + { + "id": "65423", + "name": "Jung-gu", + "state_id": 3852, + "state_code": "31", + "country_id": 116, + "country_code": "KR", + "latitude": "35.56840000", + "longitude": "129.33226000" + }, + { + "id": "65453", + "name": "Nam-gu", + "state_id": 3852, + "state_code": "31", + "country_id": 116, + "country_code": "KR", + "latitude": "35.54382000", + "longitude": "129.32917000" + }, + { + "id": "65525", + "name": "Ulju-gun", + "state_id": 3852, + "state_code": "31", + "country_id": 116, + "country_code": "KR", + "latitude": "35.56233000", + "longitude": "129.12690000" + }, + { + "id": "65527", + "name": "Ulsan", + "state_id": 3852, + "state_code": "31", + "country_id": 116, + "country_code": "KR", + "latitude": "35.53722000", + "longitude": "129.31667000" + }, + { + "id": "65572", + "name": "Al Aḩmadī", + "state_id": 977, + "state_code": "AH", + "country_id": 117, + "country_code": "KW", + "latitude": "29.07694000", + "longitude": "48.08389000" + }, + { + "id": "65574", + "name": "Al Faḩāḩīl", + "state_id": 977, + "state_code": "AH", + "country_id": 117, + "country_code": "KW", + "latitude": "29.08250000", + "longitude": "48.13028000" + }, + { + "id": "65575", + "name": "Al Finţās", + "state_id": 977, + "state_code": "AH", + "country_id": 117, + "country_code": "KW", + "latitude": "29.17389000", + "longitude": "48.12111000" + }, + { + "id": "65578", + "name": "Al Mahbūlah", + "state_id": 977, + "state_code": "AH", + "country_id": 117, + "country_code": "KW", + "latitude": "29.14500000", + "longitude": "48.13028000" + }, + { + "id": "65579", + "name": "Al Manqaf", + "state_id": 977, + "state_code": "AH", + "country_id": 117, + "country_code": "KW", + "latitude": "29.09611000", + "longitude": "48.13278000" + }, + { + "id": "65580", + "name": "Al Wafrah", + "state_id": 977, + "state_code": "AH", + "country_id": 117, + "country_code": "KW", + "latitude": "28.63917000", + "longitude": "47.93056000" + }, + { + "id": "65582", + "name": "Ar Riqqah", + "state_id": 977, + "state_code": "AH", + "country_id": 117, + "country_code": "KW", + "latitude": "29.14583000", + "longitude": "48.09472000" + }, + { + "id": "65573", + "name": "Al Farwānīyah", + "state_id": 975, + "state_code": "FA", + "country_id": 117, + "country_code": "KW", + "latitude": "29.27750000", + "longitude": "47.95861000" + }, + { + "id": "65589", + "name": "Janūb as Surrah", + "state_id": 975, + "state_code": "FA", + "country_id": 117, + "country_code": "KW", + "latitude": "29.26917000", + "longitude": "47.97806000" + }, + { + "id": "65577", + "name": "Al Jahrā’", + "state_id": 972, + "state_code": "JA", + "country_id": 117, + "country_code": "KW", + "latitude": "29.33750000", + "longitude": "47.65806000" + }, + { + "id": "65571", + "name": "Ad Dasmah", + "state_id": 976, + "state_code": "KU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.36500000", + "longitude": "48.00139000" + }, + { + "id": "65584", + "name": "Ar Rābiyah", + "state_id": 976, + "state_code": "KU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.29500000", + "longitude": "47.93306000" + }, + { + "id": "65586", + "name": "Ash Shāmīyah", + "state_id": 976, + "state_code": "KU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.34722000", + "longitude": "47.96167000" + }, + { + "id": "65587", + "name": "Az Zawr", + "state_id": 976, + "state_code": "KU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.44250000", + "longitude": "48.27472000" + }, + { + "id": "65590", + "name": "Kuwait City", + "state_id": 976, + "state_code": "KU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.36972000", + "longitude": "47.97833000" + }, + { + "id": "65583", + "name": "Ar Rumaythīyah", + "state_id": 973, + "state_code": "HA", + "country_id": 117, + "country_code": "KW", + "latitude": "29.31167000", + "longitude": "48.07417000" + }, + { + "id": "65585", + "name": "As Sālimīyah", + "state_id": 973, + "state_code": "HA", + "country_id": 117, + "country_code": "KW", + "latitude": "29.33389000", + "longitude": "48.07611000" + }, + { + "id": "65593", + "name": "Ḩawallī", + "state_id": 973, + "state_code": "HA", + "country_id": 117, + "country_code": "KW", + "latitude": "29.33278000", + "longitude": "48.02861000" + }, + { + "id": "65588", + "name": "Bayān", + "state_id": 973, + "state_code": "HA", + "country_id": 117, + "country_code": "KW", + "latitude": "29.30320000", + "longitude": "48.04881000" + }, + { + "id": "65591", + "name": "Salwá", + "state_id": 973, + "state_code": "HA", + "country_id": 117, + "country_code": "KW", + "latitude": "29.29583000", + "longitude": "48.07861000" + }, + { + "id": "65569", + "name": "Abu Al Hasaniya", + "state_id": 974, + "state_code": "MU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.19076000", + "longitude": "48.11355000" + }, + { + "id": "65570", + "name": "Abu Fatira", + "state_id": 974, + "state_code": "MU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.19746000", + "longitude": "48.10278000" + }, + { + "id": "65576", + "name": "Al Funayţīs", + "state_id": 974, + "state_code": "MU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.22528000", + "longitude": "48.10167000" + }, + { + "id": "65581", + "name": "Al-Masayel", + "state_id": 974, + "state_code": "MU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.23930000", + "longitude": "48.08862000" + }, + { + "id": "65592", + "name": "Şabāḩ as Sālim", + "state_id": 974, + "state_code": "MU", + "country_id": 117, + "country_code": "KW", + "latitude": "29.25722000", + "longitude": "48.05722000" + }, + { + "id": "64886", + "name": "Aydarken", + "state_id": 998, + "state_code": "B", + "country_id": 118, + "country_code": "KG", + "latitude": "39.94319000", + "longitude": "71.34184000" + }, + { + "id": "64888", + "name": "Batken", + "state_id": 998, + "state_code": "B", + "country_id": 118, + "country_code": "KG", + "latitude": "40.06259000", + "longitude": "70.81939000" + }, + { + "id": "64896", + "name": "Iradan", + "state_id": 998, + "state_code": "B", + "country_id": 118, + "country_code": "KG", + "latitude": "40.26667000", + "longitude": "72.10000000" + }, + { + "id": "64897", + "name": "Isfana", + "state_id": 998, + "state_code": "B", + "country_id": 118, + "country_code": "KG", + "latitude": "39.83895000", + "longitude": "69.52760000" + }, + { + "id": "64909", + "name": "Karavan", + "state_id": 998, + "state_code": "B", + "country_id": 118, + "country_code": "KG", + "latitude": "40.29513000", + "longitude": "72.18627000" + }, + { + "id": "64915", + "name": "Kyzyl-Kyya", + "state_id": 998, + "state_code": "B", + "country_id": 118, + "country_code": "KG", + "latitude": "40.25684000", + "longitude": "72.12793000" + }, + { + "id": "64923", + "name": "Suluktu", + "state_id": 998, + "state_code": "B", + "country_id": 118, + "country_code": "KG", + "latitude": "39.93652000", + "longitude": "69.56779000" + }, + { + "id": "64891", + "name": "Bishkek", + "state_id": 1001, + "state_code": "GB", + "country_id": 118, + "country_code": "KG", + "latitude": "42.87000000", + "longitude": "74.59000000" + }, + { + "id": "64884", + "name": "Alamudunskiy Rayon", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.81985000", + "longitude": "74.59398000" + }, + { + "id": "64890", + "name": "Belovodskoye", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.82944000", + "longitude": "74.10830000" + }, + { + "id": "64894", + "name": "Chuyskiy Rayon", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.66667000", + "longitude": "75.33333000" + }, + { + "id": "64898", + "name": "Ivanovka", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.88778000", + "longitude": "75.08500000" + }, + { + "id": "64902", + "name": "Kaindy", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.82469000", + "longitude": "73.67585000" + }, + { + "id": "64903", + "name": "Kant", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.89106000", + "longitude": "74.85077000" + }, + { + "id": "64906", + "name": "Kara-Balta", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.81423000", + "longitude": "73.84813000" + }, + { + "id": "64911", + "name": "Kemin", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.78611000", + "longitude": "75.69167000" + }, + { + "id": "64917", + "name": "Lebedinovka", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.88454000", + "longitude": "74.67819000" + }, + { + "id": "64921", + "name": "Sokulukskiy Rayon", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.83333000", + "longitude": "74.33333000" + }, + { + "id": "64922", + "name": "Sosnovka", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.63707000", + "longitude": "73.89608000" + }, + { + "id": "64928", + "name": "Tokmok", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.84194000", + "longitude": "75.30149000" + }, + { + "id": "64934", + "name": "Ysyk-Ata", + "state_id": 1004, + "state_code": "C", + "country_id": 118, + "country_code": "KG", + "latitude": "42.72665000", + "longitude": "75.07444000" + }, + { + "id": "64882", + "name": "Ak-Suu", + "state_id": 1002, + "state_code": "Y", + "country_id": 118, + "country_code": "KG", + "latitude": "42.49948000", + "longitude": "78.52702000" + }, + { + "id": "64887", + "name": "Balykchy", + "state_id": 1002, + "state_code": "Y", + "country_id": 118, + "country_code": "KG", + "latitude": "42.46017000", + "longitude": "76.18709000" + }, + { + "id": "64892", + "name": "Cholpon-Ata", + "state_id": 1002, + "state_code": "Y", + "country_id": 118, + "country_code": "KG", + "latitude": "42.64944000", + "longitude": "77.08225000" + }, + { + "id": "64901", + "name": "Kadzhi-Say", + "state_id": 1002, + "state_code": "Y", + "country_id": 118, + "country_code": "KG", + "latitude": "42.14107000", + "longitude": "77.17848000" + }, + { + "id": "64908", + "name": "Karakol", + "state_id": 1002, + "state_code": "Y", + "country_id": 118, + "country_code": "KG", + "latitude": "42.49068000", + "longitude": "78.39362000" + }, + { + "id": "64916", + "name": "Kyzyl-Suu", + "state_id": 1002, + "state_code": "Y", + "country_id": 118, + "country_code": "KG", + "latitude": "42.34211000", + "longitude": "78.00644000" + }, + { + "id": "64931", + "name": "Tyup", + "state_id": 1002, + "state_code": "Y", + "country_id": 118, + "country_code": "KG", + "latitude": "42.72760000", + "longitude": "78.36476000" + }, + { + "id": "64883", + "name": "Ala-Buka", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "41.40806000", + "longitude": "71.46306000" + }, + { + "id": "64889", + "name": "Bazar-Korgon", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "41.03760000", + "longitude": "72.74586000" + }, + { + "id": "64899", + "name": "Jalal-Abad", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "40.93333000", + "longitude": "73.00000000" + }, + { + "id": "64910", + "name": "Kazarman", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "41.40500000", + "longitude": "74.03700000" + }, + { + "id": "64912", + "name": "Kerben", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "41.49399000", + "longitude": "71.75826000" + }, + { + "id": "64913", + "name": "Kochkor-Ata", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "41.03709000", + "longitude": "72.48320000" + }, + { + "id": "64924", + "name": "Suzak", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "40.89820000", + "longitude": "72.90481000" + }, + { + "id": "64927", + "name": "Tash-Kumyr", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "41.34612000", + "longitude": "72.21707000" + }, + { + "id": "64929", + "name": "Toktogul", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "41.87442000", + "longitude": "72.94192000" + }, + { + "id": "64930", + "name": "Toktogul District", + "state_id": 1000, + "state_code": "J", + "country_id": 118, + "country_code": "KG", + "latitude": "41.75000000", + "longitude": "73.00000000" + }, + { + "id": "64885", + "name": "At-Bashi", + "state_id": 999, + "state_code": "N", + "country_id": 118, + "country_code": "KG", + "latitude": "41.16951000", + "longitude": "75.80099000" + }, + { + "id": "64900", + "name": "Jumgal", + "state_id": 999, + "state_code": "N", + "country_id": 118, + "country_code": "KG", + "latitude": "41.94924000", + "longitude": "74.40566000" + }, + { + "id": "64918", + "name": "Naryn", + "state_id": 999, + "state_code": "N", + "country_id": 118, + "country_code": "KG", + "latitude": "41.42866000", + "longitude": "75.99111000" + }, + { + "id": "64893", + "name": "Chong-Alay District", + "state_id": 1005, + "state_code": "O", + "country_id": 118, + "country_code": "KG", + "latitude": "39.47614000", + "longitude": "72.33017000" + }, + { + "id": "64895", + "name": "Daroot-Korgon", + "state_id": 1005, + "state_code": "O", + "country_id": 118, + "country_code": "KG", + "latitude": "39.55274000", + "longitude": "72.20518000" + }, + { + "id": "64904", + "name": "Kara Kulja", + "state_id": 1005, + "state_code": "O", + "country_id": 118, + "country_code": "KG", + "latitude": "40.64095000", + "longitude": "73.49411000" + }, + { + "id": "64905", + "name": "Kara Suu", + "state_id": 1005, + "state_code": "O", + "country_id": 118, + "country_code": "KG", + "latitude": "40.70460000", + "longitude": "72.86666000" + }, + { + "id": "64914", + "name": "Kyzyl-Eshme", + "state_id": 1005, + "state_code": "O", + "country_id": 118, + "country_code": "KG", + "latitude": "39.56559000", + "longitude": "72.27153000" + }, + { + "id": "64919", + "name": "Nookat", + "state_id": 1005, + "state_code": "O", + "country_id": 118, + "country_code": "KG", + "latitude": "40.26597000", + "longitude": "72.61834000" + }, + { + "id": "64920", + "name": "Osh", + "state_id": 1005, + "state_code": "O", + "country_id": 118, + "country_code": "KG", + "latitude": "40.52828000", + "longitude": "72.79850000" + }, + { + "id": "64932", + "name": "Uzgen", + "state_id": 1005, + "state_code": "O", + "country_id": 118, + "country_code": "KG", + "latitude": "40.76994000", + "longitude": "73.30068000" + }, + { + "id": "64933", + "name": "Uzgen District", + "state_id": 1005, + "state_code": "O", + "country_id": 118, + "country_code": "KG", + "latitude": "40.55000000", + "longitude": "73.30000000" + }, + { + "id": "64907", + "name": "Kara-Buurinskiy Rayon", + "state_id": 997, + "state_code": "T", + "country_id": 118, + "country_code": "KG", + "latitude": "42.50000000", + "longitude": "71.41667000" + }, + { + "id": "64925", + "name": "Talas", + "state_id": 997, + "state_code": "T", + "country_id": 118, + "country_code": "KG", + "latitude": "42.52277000", + "longitude": "72.24274000" + }, + { + "id": "64926", + "name": "Talasskiy Rayon", + "state_id": 997, + "state_code": "T", + "country_id": 118, + "country_code": "KG", + "latitude": "42.18647000", + "longitude": "72.69408000" + }, + { + "id": "65855", + "name": "Attapeu", + "state_id": 982, + "state_code": "AT", + "country_id": 119, + "country_code": "LA", + "latitude": "14.81071000", + "longitude": "106.83184000" + }, + { + "id": "65891", + "name": "Muang Phouvong", + "state_id": 982, + "state_code": "AT", + "country_id": 119, + "country_code": "LA", + "latitude": "14.56821000", + "longitude": "107.01087000" + }, + { + "id": "65895", + "name": "Muang Samakhixai", + "state_id": 982, + "state_code": "AT", + "country_id": 119, + "country_code": "LA", + "latitude": "14.80539000", + "longitude": "106.78164000" + }, + { + "id": "65897", + "name": "Muang Sanamxai", + "state_id": 982, + "state_code": "AT", + "country_id": 119, + "country_code": "LA", + "latitude": "14.73807000", + "longitude": "106.41328000" + }, + { + "id": "65898", + "name": "Muang Sanxai", + "state_id": 982, + "state_code": "AT", + "country_id": 119, + "country_code": "LA", + "latitude": "15.02944000", + "longitude": "107.23158000" + }, + { + "id": "65912", + "name": "Muang Xaiséttha", + "state_id": 982, + "state_code": "AT", + "country_id": 119, + "country_code": "LA", + "latitude": "14.90594000", + "longitude": "106.97894000" + }, + { + "id": "65856", + "name": "Ban Houakhoua", + "state_id": 991, + "state_code": "BK", + "country_id": 119, + "country_code": "LA", + "latitude": "20.24670000", + "longitude": "100.45401000" + }, + { + "id": "65857", + "name": "Ban Houayxay", + "state_id": 991, + "state_code": "BK", + "country_id": 119, + "country_code": "LA", + "latitude": "20.27000000", + "longitude": "100.41780000" + }, + { + "id": "65872", + "name": "Muang Houayxay", + "state_id": 991, + "state_code": "BK", + "country_id": 119, + "country_code": "LA", + "latitude": "20.38763000", + "longitude": "100.62687000" + }, + { + "id": "65881", + "name": "Muang Meung", + "state_id": 991, + "state_code": "BK", + "country_id": 119, + "country_code": "LA", + "latitude": "20.67585000", + "longitude": "100.52639000" + }, + { + "id": "65885", + "name": "Muang Paktha", + "state_id": 991, + "state_code": "BK", + "country_id": 119, + "country_code": "LA", + "latitude": "20.09108000", + "longitude": "100.59940000" + }, + { + "id": "65889", + "name": "Muang Pha Oudôm", + "state_id": 991, + "state_code": "BK", + "country_id": 119, + "country_code": "LA", + "latitude": "20.18744000", + "longitude": "100.92600000" + }, + { + "id": "65908", + "name": "Muang Tônpheung", + "state_id": 991, + "state_code": "BK", + "country_id": 119, + "country_code": "LA", + "latitude": "20.53465000", + "longitude": "100.29624000" + }, + { + "id": "65858", + "name": "Ban Nahin", + "state_id": 985, + "state_code": "BL", + "country_id": 119, + "country_code": "LA", + "latitude": "18.24253000", + "longitude": "104.21281000" + }, + { + "id": "65918", + "name": "Pakxan", + "state_id": 985, + "state_code": "BL", + "country_id": 119, + "country_code": "LA", + "latitude": "18.39420000", + "longitude": "103.66110000" + }, + { + "id": "65860", + "name": "Champasak", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "14.89204000", + "longitude": "105.87787000" + }, + { + "id": "65868", + "name": "Muang Bachiangchaleunsook", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "15.24426000", + "longitude": "105.96716000" + }, + { + "id": "65869", + "name": "Muang Champasak", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "14.85704000", + "longitude": "105.75334000" + }, + { + "id": "65874", + "name": "Muang Không", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "14.14696000", + "longitude": "105.95938000" + }, + { + "id": "65882", + "name": "Muang Mounlapamôk", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "14.28922000", + "longitude": "105.56832000" + }, + { + "id": "65887", + "name": "Muang Pakxé", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "15.13139000", + "longitude": "105.81612000" + }, + { + "id": "65886", + "name": "Muang Pakxong", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "15.09810000", + "longitude": "106.43398000" + }, + { + "id": "65888", + "name": "Muang Pathoumphon", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "14.68453000", + "longitude": "106.06357000" + }, + { + "id": "65894", + "name": "Muang Phônthong", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "15.10669000", + "longitude": "105.64890000" + }, + { + "id": "65901", + "name": "Muang Soukhouma", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "14.62560000", + "longitude": "105.67520000" + }, + { + "id": "65913", + "name": "Muang Xanasômboun", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "15.34107000", + "longitude": "105.73703000" + }, + { + "id": "65917", + "name": "Pakse", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "15.12022000", + "longitude": "105.79898000" + }, + { + "id": "65919", + "name": "Pakxong", + "state_id": 996, + "state_code": "CH", + "country_id": 119, + "country_code": "LA", + "latitude": "15.18154000", + "longitude": "106.23038000" + }, + { + "id": "65928", + "name": "Xam Neua", + "state_id": 989, + "state_code": "HO", + "country_id": 119, + "country_code": "LA", + "latitude": "20.40764000", + "longitude": "104.06560000" + }, + { + "id": "65929", + "name": "Xam Nua", + "state_id": 989, + "state_code": "HO", + "country_id": 119, + "country_code": "LA", + "latitude": "20.41640000", + "longitude": "104.04500000" + }, + { + "id": "65903", + "name": "Muang Thakhèk", + "state_id": 986, + "state_code": "KH", + "country_id": 119, + "country_code": "LA", + "latitude": "17.40880000", + "longitude": "104.82639000" + }, + { + "id": "65924", + "name": "Thakhèk", + "state_id": 986, + "state_code": "KH", + "country_id": 119, + "country_code": "LA", + "latitude": "17.41027000", + "longitude": "104.83068000" + }, + { + "id": "65864", + "name": "Luang Namtha", + "state_id": 992, + "state_code": "LM", + "country_id": 119, + "country_code": "LA", + "latitude": "20.94860000", + "longitude": "101.40188000" + }, + { + "id": "65880", + "name": "Muang Louang Namtha", + "state_id": 992, + "state_code": "LM", + "country_id": 119, + "country_code": "LA", + "latitude": "21.00424000", + "longitude": "101.44785000" + }, + { + "id": "65865", + "name": "Luang Prabang", + "state_id": 978, + "state_code": "LP", + "country_id": 119, + "country_code": "LA", + "latitude": "19.88601000", + "longitude": "102.13503000" + }, + { + "id": "65914", + "name": "Muang Xay", + "state_id": 988, + "state_code": "OU", + "country_id": 119, + "country_code": "LA", + "latitude": "20.69229000", + "longitude": "101.98368000" + }, + { + "id": "65920", + "name": "Phôngsali", + "state_id": 987, + "state_code": "PH", + "country_id": 119, + "country_code": "LA", + "latitude": "21.68080000", + "longitude": "102.10030000" + }, + { + "id": "65921", + "name": "Sainyabuli", + "state_id": 993, + "state_code": "XA", + "country_id": 119, + "country_code": "LA", + "latitude": "19.25756000", + "longitude": "101.71032000" + }, + { + "id": "65875", + "name": "Muang Khôngxédôn", + "state_id": 981, + "state_code": "SL", + "country_id": 119, + "country_code": "LA", + "latitude": "15.54626000", + "longitude": "105.77051000" + }, + { + "id": "65876", + "name": "Muang Lakhonphéng", + "state_id": 981, + "state_code": "SL", + "country_id": 119, + "country_code": "LA", + "latitude": "15.83308000", + "longitude": "105.59745000" + }, + { + "id": "65878", + "name": "Muang Laongam", + "state_id": 981, + "state_code": "SL", + "country_id": 119, + "country_code": "LA", + "latitude": "15.47745000", + "longitude": "106.14111000" + }, + { + "id": "65896", + "name": "Muang Samouay", + "state_id": 981, + "state_code": "SL", + "country_id": 119, + "country_code": "LA", + "latitude": "16.35868000", + "longitude": "106.87480000" + }, + { + "id": "65899", + "name": "Muang Saravan", + "state_id": 981, + "state_code": "SL", + "country_id": 119, + "country_code": "LA", + "latitude": "15.71587000", + "longitude": "106.36158000" + }, + { + "id": "65902", + "name": "Muang Ta-Ôy", + "state_id": 981, + "state_code": "SL", + "country_id": 119, + "country_code": "LA", + "latitude": "16.07765000", + "longitude": "106.70304000" + }, + { + "id": "65907", + "name": "Muang Toumlan", + "state_id": 981, + "state_code": "SL", + "country_id": 119, + "country_code": "LA", + "latitude": "16.02236000", + "longitude": "106.23837000" + }, + { + "id": "65909", + "name": "Muang Vapi", + "state_id": 981, + "state_code": "SL", + "country_id": 119, + "country_code": "LA", + "latitude": "15.75005000", + "longitude": "105.95529000" + }, + { + "id": "65922", + "name": "Salavan", + "state_id": 981, + "state_code": "SL", + "country_id": 119, + "country_code": "LA", + "latitude": "15.71652000", + "longitude": "106.41744000" + }, + { + "id": "65861", + "name": "Kaysone Phomvihane", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.54943000", + "longitude": "104.82339000" + }, + { + "id": "65866", + "name": "Muang Alsaphangthong", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.72645000", + "longitude": "105.39326000" + }, + { + "id": "65867", + "name": "Muang Atsaphan", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.94740000", + "longitude": "105.40290000" + }, + { + "id": "65870", + "name": "Muang Champhon", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.49363000", + "longitude": "105.22020000" + }, + { + "id": "65883", + "name": "Muang Nong", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.38458000", + "longitude": "106.50419000" + }, + { + "id": "65884", + "name": "Muang Outhoumphon", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.66667000", + "longitude": "105.05000000" + }, + { + "id": "65890", + "name": "Muang Phin", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.44316000", + "longitude": "106.03019000" + }, + { + "id": "65900", + "name": "Muang Songkhon", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.17116000", + "longitude": "105.30729000" + }, + { + "id": "65904", + "name": "Muang Thapangthong", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.09132000", + "longitude": "105.81038000" + }, + { + "id": "65910", + "name": "Muang Vilabouli", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.94067000", + "longitude": "105.93677000" + }, + { + "id": "65911", + "name": "Muang Xaibouli", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.94432000", + "longitude": "104.92312000" + }, + { + "id": "65915", + "name": "Muang Xayphoothong", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.37370000", + "longitude": "105.02165000" + }, + { + "id": "65916", + "name": "Muang Xônbouli", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.40036000", + "longitude": "105.57388000" + }, + { + "id": "65923", + "name": "Savannakhet", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.57030000", + "longitude": "104.76220000" + }, + { + "id": "65925", + "name": "Thaphalanxay", + "state_id": 990, + "state_code": "SV", + "country_id": 119, + "country_code": "LA", + "latitude": "16.70000000", + "longitude": "105.60000000" + }, + { + "id": "65859", + "name": "Ban Thatèng", + "state_id": 984, + "state_code": "XE", + "country_id": 119, + "country_code": "LA", + "latitude": "15.43317000", + "longitude": "106.38272000" + }, + { + "id": "65862", + "name": "Lamam", + "state_id": 984, + "state_code": "XE", + "country_id": 119, + "country_code": "LA", + "latitude": "15.41705000", + "longitude": "106.69461000" + }, + { + "id": "65871", + "name": "Muang Dakchung", + "state_id": 984, + "state_code": "XE", + "country_id": 119, + "country_code": "LA", + "latitude": "15.38199000", + "longitude": "107.31847000" + }, + { + "id": "65873", + "name": "Muang Khaleum", + "state_id": 984, + "state_code": "XE", + "country_id": 119, + "country_code": "LA", + "latitude": "15.79886000", + "longitude": "107.04529000" + }, + { + "id": "65877", + "name": "Muang Laman", + "state_id": 984, + "state_code": "XE", + "country_id": 119, + "country_code": "LA", + "latitude": "15.41273000", + "longitude": "106.81706000" + }, + { + "id": "65906", + "name": "Muang Thatèng", + "state_id": 984, + "state_code": "XE", + "country_id": 119, + "country_code": "LA", + "latitude": "15.42745000", + "longitude": "106.48149000" + }, + { + "id": "65927", + "name": "Vientiane", + "state_id": 979, + "state_code": "VT", + "country_id": 119, + "country_code": "LA", + "latitude": "17.96667000", + "longitude": "102.60000000" + }, + { + "id": "65892", + "name": "Muang Phôn-Hông", + "state_id": 980, + "state_code": "VI", + "country_id": 119, + "country_code": "LA", + "latitude": "18.49530000", + "longitude": "102.41530000" + }, + { + "id": "65926", + "name": "Vangviang", + "state_id": 980, + "state_code": "VI", + "country_id": 119, + "country_code": "LA", + "latitude": "18.92350000", + "longitude": "102.44784000" + }, + { + "id": "65854", + "name": "Anouvong district", + "state_id": 983, + "state_code": "XS", + "country_id": 119, + "country_code": "LA", + "latitude": "18.89731000", + "longitude": "103.09274000" + }, + { + "id": "65863", + "name": "Longchaeng", + "state_id": 983, + "state_code": "XS", + "country_id": 119, + "country_code": "LA", + "latitude": "18.89394000", + "longitude": "103.14274000" + }, + { + "id": "65879", + "name": "Muang Longxan", + "state_id": 983, + "state_code": "XS", + "country_id": 119, + "country_code": "LA", + "latitude": "18.61782000", + "longitude": "102.88079000" + }, + { + "id": "65905", + "name": "Muang Thathôm", + "state_id": 983, + "state_code": "XS", + "country_id": 119, + "country_code": "LA", + "latitude": "19.00130000", + "longitude": "103.61572000" + }, + { + "id": "65893", + "name": "Muang Phônsavan", + "state_id": 995, + "state_code": "XI", + "country_id": 119, + "country_code": "LA", + "latitude": "19.44940000", + "longitude": "103.19170000" + }, + { + "id": "66868", + "name": "Aglona", + "state_id": 4445, + "state_code": "001", + "country_id": 120, + "country_code": "LV", + "latitude": "56.13274000", + "longitude": "27.00682000" + }, + { + "id": "66870", + "name": "Aizkraukle", + "state_id": 4472, + "state_code": "002", + "country_id": 120, + "country_code": "LV", + "latitude": "56.60477000", + "longitude": "25.25534000" + }, + { + "id": "66871", + "name": "Aizpute", + "state_id": 4496, + "state_code": "003", + "country_id": 120, + "country_code": "LV", + "latitude": "56.72108000", + "longitude": "21.60156000" + }, + { + "id": "66872", + "name": "Aknīste", + "state_id": 4499, + "state_code": "004", + "country_id": 120, + "country_code": "LV", + "latitude": "56.16152000", + "longitude": "25.74783000" + }, + { + "id": "66875", + "name": "Alūksne", + "state_id": 4487, + "state_code": "007", + "country_id": 120, + "country_code": "LV", + "latitude": "57.42162000", + "longitude": "27.04662000" + }, + { + "id": "66873", + "name": "Aloja", + "state_id": 4484, + "state_code": "005", + "country_id": 120, + "country_code": "LV", + "latitude": "57.76723000", + "longitude": "24.87743000" + }, + { + "id": "66966", + "name": "Staicele", + "state_id": 4484, + "state_code": "005", + "country_id": 120, + "country_code": "LV", + "latitude": "57.83579000", + "longitude": "24.74706000" + }, + { + "id": "66874", + "name": "Alsunga", + "state_id": 4485, + "state_code": "006", + "country_id": 120, + "country_code": "LV", + "latitude": "56.98194000", + "longitude": "21.55938000" + }, + { + "id": "66876", + "name": "Ape", + "state_id": 4457, + "state_code": "009", + "country_id": 120, + "country_code": "LV", + "latitude": "57.53928000", + "longitude": "26.69291000" + }, + { + "id": "66877", + "name": "Auce", + "state_id": 4481, + "state_code": "010", + "country_id": 120, + "country_code": "LV", + "latitude": "56.45981000", + "longitude": "22.90169000" + }, + { + "id": "66991", + "name": "Ķegums", + "state_id": 4412, + "state_code": "051", + "country_id": 120, + "country_code": "LV", + "latitude": "56.74510000", + "longitude": "24.72439000" + }, + { + "id": "66992", + "name": "Ķekava", + "state_id": 4435, + "state_code": "052", + "country_id": 120, + "country_code": "LV", + "latitude": "56.82662000", + "longitude": "24.23000000" + }, + { + "id": "66879", + "name": "Baloži", + "state_id": 4435, + "state_code": "052", + "country_id": 120, + "country_code": "LV", + "latitude": "56.87643000", + "longitude": "24.11825000" + }, + { + "id": "66990", + "name": "Ērgļi", + "state_id": 4444, + "state_code": "030", + "country_id": 120, + "country_code": "LV", + "latitude": "56.89752000", + "longitude": "25.63668000" + }, + { + "id": "66940", + "name": "Piņķi", + "state_id": 4427, + "state_code": "012", + "country_id": 120, + "country_code": "LV", + "latitude": "56.94189000", + "longitude": "23.91365000" + }, + { + "id": "66878", + "name": "Baldone", + "state_id": 4482, + "state_code": "013", + "country_id": 120, + "country_code": "LV", + "latitude": "56.74451000", + "longitude": "24.40078000" + }, + { + "id": "66880", + "name": "Baltinava", + "state_id": 4498, + "state_code": "014", + "country_id": 120, + "country_code": "LV", + "latitude": "56.94394000", + "longitude": "27.64401000" + }, + { + "id": "66881", + "name": "Balvi", + "state_id": 4505, + "state_code": "015", + "country_id": 120, + "country_code": "LV", + "latitude": "57.13130000", + "longitude": "27.26583000" + }, + { + "id": "66882", + "name": "Bauska", + "state_id": 4465, + "state_code": "016", + "country_id": 120, + "country_code": "LV", + "latitude": "56.40794000", + "longitude": "24.19443000" + }, + { + "id": "66931", + "name": "Mūrmuiža", + "state_id": 4471, + "state_code": "017", + "country_id": 120, + "country_code": "LV", + "latitude": "57.47312000", + "longitude": "25.49174000" + }, + { + "id": "66884", + "name": "Brocēni", + "state_id": 4468, + "state_code": "018", + "country_id": 120, + "country_code": "LV", + "latitude": "56.67890000", + "longitude": "22.56945000" + }, + { + "id": "66885", + "name": "Carnikava", + "state_id": 4454, + "state_code": "020", + "country_id": 120, + "country_code": "LV", + "latitude": "57.12935000", + "longitude": "24.28423000" + }, + { + "id": "66888", + "name": "Cēsis", + "state_id": 4469, + "state_code": "022", + "country_id": 120, + "country_code": "LV", + "latitude": "57.31188000", + "longitude": "25.27456000" + }, + { + "id": "66886", + "name": "Cesvaine", + "state_id": 4414, + "state_code": "021", + "country_id": 120, + "country_code": "LV", + "latitude": "56.96754000", + "longitude": "26.30764000" + }, + { + "id": "66887", + "name": "Cibla", + "state_id": 4410, + "state_code": "023", + "country_id": 120, + "country_code": "LV", + "latitude": "56.54980000", + "longitude": "27.88370000" + }, + { + "id": "66889", + "name": "Dagda", + "state_id": 4504, + "state_code": "024", + "country_id": 120, + "country_code": "LV", + "latitude": "56.09512000", + "longitude": "27.53723000" + }, + { + "id": "66891", + "name": "Daugavpils", + "state_id": 4492, + "state_code": "025", + "country_id": 120, + "country_code": "LV", + "latitude": "55.88333000", + "longitude": "26.53333000" + }, + { + "id": "66892", + "name": "Dobele", + "state_id": 4437, + "state_code": "026", + "country_id": 120, + "country_code": "LV", + "latitude": "56.62372000", + "longitude": "23.27510000" + }, + { + "id": "66893", + "name": "Dundaga", + "state_id": 4428, + "state_code": "027", + "country_id": 120, + "country_code": "LV", + "latitude": "57.50498000", + "longitude": "22.35041000" + }, + { + "id": "66920", + "name": "Lieģi", + "state_id": 4458, + "state_code": "028", + "country_id": 120, + "country_code": "LV", + "latitude": "56.58173000", + "longitude": "21.33399000" + }, + { + "id": "66965", + "name": "Smārde", + "state_id": 4448, + "state_code": "029", + "country_id": 120, + "country_code": "LV", + "latitude": "56.95420000", + "longitude": "23.33736000" + }, + { + "id": "66895", + "name": "Garkalne", + "state_id": 4510, + "state_code": "031", + "country_id": 120, + "country_code": "LV", + "latitude": "57.04486000", + "longitude": "24.41951000" + }, + { + "id": "66896", + "name": "Grobiņa", + "state_id": 4470, + "state_code": "032", + "country_id": 120, + "country_code": "LV", + "latitude": "56.53521000", + "longitude": "21.16782000" + }, + { + "id": "66897", + "name": "Gulbene", + "state_id": 4400, + "state_code": "033", + "country_id": 120, + "country_code": "LV", + "latitude": "57.17767000", + "longitude": "26.75291000" + }, + { + "id": "66898", + "name": "Iecava", + "state_id": 4441, + "state_code": "034", + "country_id": 120, + "country_code": "LV", + "latitude": "56.59766000", + "longitude": "24.20763000" + }, + { + "id": "66899", + "name": "Ikšķile", + "state_id": 4511, + "state_code": "035", + "country_id": 120, + "country_code": "LV", + "latitude": "56.83399000", + "longitude": "24.49679000" + }, + { + "id": "66900", + "name": "Ilūkste", + "state_id": 4399, + "state_code": "036", + "country_id": 120, + "country_code": "LV", + "latitude": "55.97754000", + "longitude": "26.29655000" + }, + { + "id": "66901", + "name": "Inčukalns", + "state_id": 4449, + "state_code": "037", + "country_id": 120, + "country_code": "LV", + "latitude": "57.09867000", + "longitude": "24.68630000" + }, + { + "id": "66979", + "name": "Vangaži", + "state_id": 4449, + "state_code": "037", + "country_id": 120, + "country_code": "LV", + "latitude": "57.09358000", + "longitude": "24.54468000" + }, + { + "id": "66904", + "name": "Jaunjelgava", + "state_id": 4475, + "state_code": "038", + "country_id": 120, + "country_code": "LV", + "latitude": "56.61319000", + "longitude": "25.08316000" + }, + { + "id": "66905", + "name": "Jaunpils", + "state_id": 4489, + "state_code": "040", + "country_id": 120, + "country_code": "LV", + "latitude": "56.73137000", + "longitude": "23.01247000" + }, + { + "id": "66909", + "name": "Jūrmala", + "state_id": 4446, + "state_code": "JUR", + "country_id": 120, + "country_code": "LV", + "latitude": "56.96800000", + "longitude": "23.77038000" + }, + { + "id": "66908", + "name": "Jēkabpils", + "state_id": 4438, + "state_code": "042", + "country_id": 120, + "country_code": "LV", + "latitude": "56.49903000", + "longitude": "25.85735000" + }, + { + "id": "66914", + "name": "Krustpils", + "state_id": 4438, + "state_code": "042", + "country_id": 120, + "country_code": "LV", + "latitude": "56.51068000", + "longitude": "25.86117000" + }, + { + "id": "66906", + "name": "Jelgava", + "state_id": 4500, + "state_code": "JEL", + "country_id": 120, + "country_code": "LV", + "latitude": "56.65000000", + "longitude": "23.71278000" + }, + { + "id": "66973", + "name": "Tīreļi", + "state_id": 4424, + "state_code": "041", + "country_id": 120, + "country_code": "LV", + "latitude": "56.83991000", + "longitude": "23.58902000" + }, + { + "id": "66910", + "name": "Kandava", + "state_id": 4420, + "state_code": "043", + "country_id": 120, + "country_code": "LV", + "latitude": "57.04087000", + "longitude": "22.77466000" + }, + { + "id": "66917", + "name": "Kārsava", + "state_id": 4453, + "state_code": "044", + "country_id": 120, + "country_code": "LV", + "latitude": "56.78405000", + "longitude": "27.68829000" + }, + { + "id": "66912", + "name": "Kocēni", + "state_id": 4495, + "state_code": "045", + "country_id": 120, + "country_code": "LV", + "latitude": "57.52057000", + "longitude": "25.33821000" + }, + { + "id": "66913", + "name": "Koknese", + "state_id": 4452, + "state_code": "046", + "country_id": 120, + "country_code": "LV", + "latitude": "56.65163000", + "longitude": "25.43637000" + }, + { + "id": "66915", + "name": "Krāslava", + "state_id": 4474, + "state_code": "047", + "country_id": 120, + "country_code": "LV", + "latitude": "55.89514000", + "longitude": "27.16799000" + }, + { + "id": "66916", + "name": "Kuldīga", + "state_id": 4490, + "state_code": "050", + "country_id": 120, + "country_code": "LV", + "latitude": "56.97399000", + "longitude": "21.95721000" + }, + { + "id": "66924", + "name": "Līgatne", + "state_id": 4488, + "state_code": "055", + "country_id": 120, + "country_code": "LV", + "latitude": "57.23429000", + "longitude": "25.04059000" + }, + { + "id": "66925", + "name": "Līvāni", + "state_id": 4401, + "state_code": "056", + "country_id": 120, + "country_code": "LV", + "latitude": "56.35431000", + "longitude": "26.17579000" + }, + { + "id": "66918", + "name": "Lielvārde", + "state_id": 4512, + "state_code": "053", + "country_id": 120, + "country_code": "LV", + "latitude": "56.72066000", + "longitude": "24.80743000" + }, + { + "id": "66911", + "name": "Karosta", + "state_id": 4460, + "state_code": "LPX", + "country_id": 120, + "country_code": "LV", + "latitude": "56.55128000", + "longitude": "21.01287000" + }, + { + "id": "66919", + "name": "Liepāja", + "state_id": 4460, + "state_code": "LPX", + "country_id": 120, + "country_code": "LV", + "latitude": "56.50474000", + "longitude": "21.01085000" + }, + { + "id": "66921", + "name": "Limbaži", + "state_id": 4418, + "state_code": "054", + "country_id": 120, + "country_code": "LV", + "latitude": "57.51287000", + "longitude": "24.71941000" + }, + { + "id": "66922", + "name": "Lubāna", + "state_id": 4419, + "state_code": "057", + "country_id": 120, + "country_code": "LV", + "latitude": "56.90425000", + "longitude": "26.71606000" + }, + { + "id": "66923", + "name": "Ludza", + "state_id": 4501, + "state_code": "058", + "country_id": 120, + "country_code": "LV", + "latitude": "56.53958000", + "longitude": "27.71891000" + }, + { + "id": "66926", + "name": "Madona", + "state_id": 4433, + "state_code": "059", + "country_id": 120, + "country_code": "LV", + "latitude": "56.85329000", + "longitude": "26.21698000" + }, + { + "id": "66927", + "name": "Mazsalaca", + "state_id": 4513, + "state_code": "060", + "country_id": 120, + "country_code": "LV", + "latitude": "57.86329000", + "longitude": "25.05475000" + }, + { + "id": "66929", + "name": "Mālpils", + "state_id": 4461, + "state_code": "061", + "country_id": 120, + "country_code": "LV", + "latitude": "57.01010000", + "longitude": "24.95783000" + }, + { + "id": "66930", + "name": "Mārupe", + "state_id": 4450, + "state_code": "062", + "country_id": 120, + "country_code": "LV", + "latitude": "56.90544000", + "longitude": "24.05113000" + }, + { + "id": "66932", + "name": "Naukšēni", + "state_id": 4398, + "state_code": "064", + "country_id": 120, + "country_code": "LV", + "latitude": "57.88349000", + "longitude": "25.45609000" + }, + { + "id": "66934", + "name": "Nīca", + "state_id": 4436, + "state_code": "066", + "country_id": 120, + "country_code": "LV", + "latitude": "56.34601000", + "longitude": "21.06401000" + }, + { + "id": "66933", + "name": "Nereta", + "state_id": 4432, + "state_code": "065", + "country_id": 120, + "country_code": "LV", + "latitude": "56.20279000", + "longitude": "25.30752000" + }, + { + "id": "66907", + "name": "Jumprava", + "state_id": 4416, + "state_code": "067", + "country_id": 120, + "country_code": "LV", + "latitude": "56.67613000", + "longitude": "24.97210000" + }, + { + "id": "66935", + "name": "Ogre", + "state_id": 4416, + "state_code": "067", + "country_id": 120, + "country_code": "LV", + "latitude": "56.81620000", + "longitude": "24.61401000" + }, + { + "id": "66936", + "name": "Olaine", + "state_id": 4417, + "state_code": "068", + "country_id": 120, + "country_code": "LV", + "latitude": "56.79472000", + "longitude": "23.93580000" + }, + { + "id": "66937", + "name": "Ozolnieki", + "state_id": 4442, + "state_code": "069", + "country_id": 120, + "country_code": "LV", + "latitude": "56.68986000", + "longitude": "23.77610000" + }, + { + "id": "66967", + "name": "Stalbe", + "state_id": 4507, + "state_code": "070", + "country_id": 120, + "country_code": "LV", + "latitude": "57.37065000", + "longitude": "25.03106000" + }, + { + "id": "66944", + "name": "Pāvilosta", + "state_id": 4467, + "state_code": "071", + "country_id": 120, + "country_code": "LV", + "latitude": "56.88791000", + "longitude": "21.18593000" + }, + { + "id": "66945", + "name": "Pļaviņas", + "state_id": 4405, + "state_code": "072", + "country_id": 120, + "country_code": "LV", + "latitude": "56.61780000", + "longitude": "25.72552000" + }, + { + "id": "66902", + "name": "Jaunaglona", + "state_id": 4483, + "state_code": "073", + "country_id": 120, + "country_code": "LV", + "latitude": "56.16066000", + "longitude": "27.00714000" + }, + { + "id": "66941", + "name": "Preiļi", + "state_id": 4483, + "state_code": "073", + "country_id": 120, + "country_code": "LV", + "latitude": "56.29444000", + "longitude": "26.72459000" + }, + { + "id": "66943", + "name": "Priekuļi", + "state_id": 4506, + "state_code": "075", + "country_id": 120, + "country_code": "LV", + "latitude": "57.31500000", + "longitude": "25.36147000" + }, + { + "id": "66942", + "name": "Priekule", + "state_id": 4429, + "state_code": "074", + "country_id": 120, + "country_code": "LV", + "latitude": "56.44679000", + "longitude": "21.58968000" + }, + { + "id": "66946", + "name": "Rauna", + "state_id": 4479, + "state_code": "076", + "country_id": 120, + "country_code": "LV", + "latitude": "57.33173000", + "longitude": "25.60947000" + }, + { + "id": "66954", + "name": "Rūjiena", + "state_id": 4426, + "state_code": "084", + "country_id": 120, + "country_code": "LV", + "latitude": "57.89752000", + "longitude": "25.33155000" + }, + { + "id": "66953", + "name": "Rēzekne", + "state_id": 4509, + "state_code": "REZ", + "country_id": 120, + "country_code": "LV", + "latitude": "56.51028000", + "longitude": "27.34000000" + }, + { + "id": "66947", + "name": "Riebiņi", + "state_id": 4502, + "state_code": "078", + "country_id": 120, + "country_code": "LV", + "latitude": "56.34280000", + "longitude": "26.79995000" + }, + { + "id": "66883", + "name": "Bolderaja", + "state_id": 4491, + "state_code": "RIX", + "country_id": 120, + "country_code": "LV", + "latitude": "57.03132000", + "longitude": "24.05571000" + }, + { + "id": "66890", + "name": "Daugavgrīva", + "state_id": 4491, + "state_code": "RIX", + "country_id": 120, + "country_code": "LV", + "latitude": "57.04315000", + "longitude": "24.03613000" + }, + { + "id": "66903", + "name": "Jaunciems", + "state_id": 4491, + "state_code": "RIX", + "country_id": 120, + "country_code": "LV", + "latitude": "57.03910000", + "longitude": "24.17413000" + }, + { + "id": "66928", + "name": "Mežaparks", + "state_id": 4491, + "state_code": "RIX", + "country_id": 120, + "country_code": "LV", + "latitude": "57.00008000", + "longitude": "24.15997000" + }, + { + "id": "66948", + "name": "Riga", + "state_id": 4491, + "state_code": "RIX", + "country_id": 120, + "country_code": "LV", + "latitude": "56.94600000", + "longitude": "24.10589000" + }, + { + "id": "66949", + "name": "Roja", + "state_id": 4440, + "state_code": "079", + "country_id": 120, + "country_code": "LV", + "latitude": "57.50146000", + "longitude": "22.80881000" + }, + { + "id": "66950", + "name": "Ropaži", + "state_id": 4493, + "state_code": "080", + "country_id": 120, + "country_code": "LV", + "latitude": "56.97470000", + "longitude": "24.63295000" + }, + { + "id": "66951", + "name": "Rucava", + "state_id": 4503, + "state_code": "081", + "country_id": 120, + "country_code": "LV", + "latitude": "56.16314000", + "longitude": "21.16156000" + }, + { + "id": "66952", + "name": "Rugāji", + "state_id": 4423, + "state_code": "082", + "country_id": 120, + "country_code": "LV", + "latitude": "57.00325000", + "longitude": "27.13371000" + }, + { + "id": "66938", + "name": "Pilsrundāle", + "state_id": 4404, + "state_code": "083", + "country_id": 120, + "country_code": "LV", + "latitude": "56.41812000", + "longitude": "24.01625000" + }, + { + "id": "66869", + "name": "Ainaži", + "state_id": 4396, + "state_code": "086", + "country_id": 120, + "country_code": "LV", + "latitude": "57.86348000", + "longitude": "24.35853000" + }, + { + "id": "66956", + "name": "Salacgrīva", + "state_id": 4396, + "state_code": "086", + "country_id": 120, + "country_code": "LV", + "latitude": "57.75312000", + "longitude": "24.35895000" + }, + { + "id": "66957", + "name": "Salaspils", + "state_id": 4402, + "state_code": "087", + "country_id": 120, + "country_code": "LV", + "latitude": "56.86014000", + "longitude": "24.36544000" + }, + { + "id": "66958", + "name": "Saldus", + "state_id": 4439, + "state_code": "088", + "country_id": 120, + "country_code": "LV", + "latitude": "56.66363000", + "longitude": "22.48807000" + }, + { + "id": "66959", + "name": "Saulkrasti", + "state_id": 4443, + "state_code": "089", + "country_id": 120, + "country_code": "LV", + "latitude": "57.26224000", + "longitude": "24.41471000" + }, + { + "id": "66894", + "name": "Engure", + "state_id": 4408, + "state_code": "090", + "country_id": 120, + "country_code": "LV", + "latitude": "57.16061000", + "longitude": "23.22527000" + }, + { + "id": "66971", + "name": "Tukums", + "state_id": 4408, + "state_code": "090", + "country_id": 120, + "country_code": "LV", + "latitude": "56.96764000", + "longitude": "23.15554000" + }, + { + "id": "66961", + "name": "Sigulda", + "state_id": 4476, + "state_code": "091", + "country_id": 120, + "country_code": "LV", + "latitude": "57.15375000", + "longitude": "24.85953000" + }, + { + "id": "66963", + "name": "Skrīveri", + "state_id": 4415, + "state_code": "092", + "country_id": 120, + "country_code": "LV", + "latitude": "56.64500000", + "longitude": "25.12058000" + }, + { + "id": "66962", + "name": "Skrunda", + "state_id": 4447, + "state_code": "093", + "country_id": 120, + "country_code": "LV", + "latitude": "56.67749000", + "longitude": "22.01649000" + }, + { + "id": "66964", + "name": "Smiltene", + "state_id": 4462, + "state_code": "094", + "country_id": 120, + "country_code": "LV", + "latitude": "57.42444000", + "longitude": "25.90164000" + }, + { + "id": "66974", + "name": "Ulbroka", + "state_id": 4478, + "state_code": "095", + "country_id": 120, + "country_code": "LV", + "latitude": "56.93630000", + "longitude": "24.30387000" + }, + { + "id": "66960", + "name": "Seda", + "state_id": 4494, + "state_code": "096", + "country_id": 120, + "country_code": "LV", + "latitude": "57.65042000", + "longitude": "25.75089000" + }, + { + "id": "66969", + "name": "Strenči", + "state_id": 4494, + "state_code": "096", + "country_id": 120, + "country_code": "LV", + "latitude": "57.62574000", + "longitude": "25.68535000" + }, + { + "id": "66955", + "name": "Sabile", + "state_id": 4459, + "state_code": "097", + "country_id": 120, + "country_code": "LV", + "latitude": "57.04577000", + "longitude": "22.57261000" + }, + { + "id": "66968", + "name": "Stende", + "state_id": 4459, + "state_code": "097", + "country_id": 120, + "country_code": "LV", + "latitude": "57.14497000", + "longitude": "22.53482000" + }, + { + "id": "66970", + "name": "Talsi", + "state_id": 4459, + "state_code": "097", + "country_id": 120, + "country_code": "LV", + "latitude": "57.24562000", + "longitude": "22.58137000" + }, + { + "id": "66976", + "name": "Valdemārpils", + "state_id": 4459, + "state_code": "097", + "country_id": 120, + "country_code": "LV", + "latitude": "57.37068000", + "longitude": "22.59188000" + }, + { + "id": "66972", + "name": "Tērvete", + "state_id": 4480, + "state_code": "098", + "country_id": 120, + "country_code": "LV", + "latitude": "56.47989000", + "longitude": "23.38895000" + }, + { + "id": "66988", + "name": "Zelmeņi", + "state_id": 4480, + "state_code": "098", + "country_id": 120, + "country_code": "LV", + "latitude": "56.45167000", + "longitude": "23.35194000" + }, + { + "id": "66975", + "name": "Vaiņode", + "state_id": 4508, + "state_code": "100", + "country_id": 120, + "country_code": "LV", + "latitude": "56.41848000", + "longitude": "21.85405000" + }, + { + "id": "66977", + "name": "Valka", + "state_id": 4425, + "state_code": "101", + "country_id": 120, + "country_code": "LV", + "latitude": "57.77520000", + "longitude": "26.01013000" + }, + { + "id": "66978", + "name": "Valmiera", + "state_id": 4473, + "state_code": "VMR", + "country_id": 120, + "country_code": "LV", + "latitude": "57.54108000", + "longitude": "25.42751000" + }, + { + "id": "66980", + "name": "Varakļāni", + "state_id": 4431, + "state_code": "102", + "country_id": 120, + "country_code": "LV", + "latitude": "56.60826000", + "longitude": "26.75377000" + }, + { + "id": "66983", + "name": "Vecvārkava", + "state_id": 4406, + "state_code": "103", + "country_id": 120, + "country_code": "LV", + "latitude": "56.19838000", + "longitude": "26.50811000" + }, + { + "id": "66981", + "name": "Vecpiebalga", + "state_id": 4466, + "state_code": "104", + "country_id": 120, + "country_code": "LV", + "latitude": "57.06090000", + "longitude": "25.81624000" + }, + { + "id": "66982", + "name": "Vecumnieki", + "state_id": 4397, + "state_code": "105", + "country_id": 120, + "country_code": "LV", + "latitude": "56.60608000", + "longitude": "24.52232000" + }, + { + "id": "66984", + "name": "Ventspils", + "state_id": 4421, + "state_code": "VEN", + "country_id": 120, + "country_code": "LV", + "latitude": "57.38988000", + "longitude": "21.57288000" + }, + { + "id": "66939", + "name": "Piltene", + "state_id": 4403, + "state_code": "106", + "country_id": 120, + "country_code": "LV", + "latitude": "57.22426000", + "longitude": "21.67439000" + }, + { + "id": "66986", + "name": "Viļaka", + "state_id": 4477, + "state_code": "108", + "country_id": 120, + "country_code": "LV", + "latitude": "57.18458000", + "longitude": "27.67220000" + }, + { + "id": "66987", + "name": "Viļāni", + "state_id": 4486, + "state_code": "109", + "country_id": 120, + "country_code": "LV", + "latitude": "56.55253000", + "longitude": "26.92449000" + }, + { + "id": "66985", + "name": "Viesīte", + "state_id": 4456, + "state_code": "107", + "country_id": 120, + "country_code": "LV", + "latitude": "56.34751000", + "longitude": "25.55514000" + }, + { + "id": "66989", + "name": "Zilupe", + "state_id": 4430, + "state_code": "110", + "country_id": 120, + "country_code": "LV", + "latitude": "56.38616000", + "longitude": "28.12165000" + }, + { + "id": "65939", + "name": "Caza de Aakkar", + "state_id": 2285, + "state_code": "AK", + "country_id": 121, + "country_code": "LB", + "latitude": "34.53333000", + "longitude": "36.16667000" + }, + { + "id": "65933", + "name": "Baalbek", + "state_id": 2283, + "state_code": "BH", + "country_id": 121, + "country_code": "LB", + "latitude": "34.00583000", + "longitude": "36.21806000" + }, + { + "id": "65941", + "name": "Caza de Baalbek", + "state_id": 2283, + "state_code": "BH", + "country_id": 121, + "country_code": "LB", + "latitude": "34.09822000", + "longitude": "36.27157000" + }, + { + "id": "65936", + "name": "Beirut", + "state_id": 2286, + "state_code": "BA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.89332000", + "longitude": "35.50157000" + }, + { + "id": "65951", + "name": "Ra’s Bayrūt", + "state_id": 2286, + "state_code": "BA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.90000000", + "longitude": "35.48333000" + }, + { + "id": "65930", + "name": "Aanjar", + "state_id": 2287, + "state_code": "BI", + "country_id": 121, + "country_code": "LB", + "latitude": "33.72778000", + "longitude": "35.93111000" + }, + { + "id": "65955", + "name": "Zahlé", + "state_id": 2287, + "state_code": "BI", + "country_id": 121, + "country_code": "LB", + "latitude": "33.84675000", + "longitude": "35.90203000" + }, + { + "id": "65932", + "name": "Baabda", + "state_id": 2282, + "state_code": "JL", + "country_id": 121, + "country_code": "LB", + "latitude": "33.83389000", + "longitude": "35.54417000" + }, + { + "id": "65938", + "name": "Bhamdoûn el Mhatta", + "state_id": 2282, + "state_code": "JL", + "country_id": 121, + "country_code": "LB", + "latitude": "33.80861000", + "longitude": "35.65972000" + }, + { + "id": "65937", + "name": "Bhamdoun", + "state_id": 2282, + "state_code": "JL", + "country_id": 121, + "country_code": "LB", + "latitude": "33.79500000", + "longitude": "35.65111000" + }, + { + "id": "65940", + "name": "Caza de Baabda", + "state_id": 2282, + "state_code": "JL", + "country_id": 121, + "country_code": "LB", + "latitude": "33.84592000", + "longitude": "35.66791000" + }, + { + "id": "65947", + "name": "Jbaïl", + "state_id": 2282, + "state_code": "JL", + "country_id": 121, + "country_code": "LB", + "latitude": "34.12111000", + "longitude": "35.64806000" + }, + { + "id": "65948", + "name": "Jounieh", + "state_id": 2282, + "state_code": "JL", + "country_id": 121, + "country_code": "LB", + "latitude": "33.98083000", + "longitude": "35.61778000" + }, + { + "id": "65931", + "name": "Ain Ebel", + "state_id": 2288, + "state_code": "NA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.11023000", + "longitude": "35.40251000" + }, + { + "id": "65942", + "name": "Caza de Bent Jbaïl", + "state_id": 2288, + "state_code": "NA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.15964000", + "longitude": "35.41137000" + }, + { + "id": "65943", + "name": "Caza de Nabatîyé", + "state_id": 2288, + "state_code": "NA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.39435000", + "longitude": "35.44483000" + }, + { + "id": "65946", + "name": "Habboûch", + "state_id": 2288, + "state_code": "NA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.40729000", + "longitude": "35.48169000" + }, + { + "id": "65949", + "name": "Marjayoûn", + "state_id": 2288, + "state_code": "NA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.36028000", + "longitude": "35.59111000" + }, + { + "id": "65950", + "name": "Nabatîyé et Tahta", + "state_id": 2288, + "state_code": "NA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.37889000", + "longitude": "35.48389000" + }, + { + "id": "65934", + "name": "Batroûn", + "state_id": 2284, + "state_code": "AS", + "country_id": 121, + "country_code": "LB", + "latitude": "34.25528000", + "longitude": "35.65806000" + }, + { + "id": "65935", + "name": "Bcharré", + "state_id": 2284, + "state_code": "AS", + "country_id": 121, + "country_code": "LB", + "latitude": "34.25083000", + "longitude": "36.01056000" + }, + { + "id": "65953", + "name": "Tripoli", + "state_id": 2284, + "state_code": "AS", + "country_id": 121, + "country_code": "LB", + "latitude": "34.43352000", + "longitude": "35.84415000" + }, + { + "id": "65944", + "name": "En Nâqoûra", + "state_id": 2281, + "state_code": "JA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.11806000", + "longitude": "35.13972000" + }, + { + "id": "65945", + "name": "Ghazieh", + "state_id": 2281, + "state_code": "JA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.51750000", + "longitude": "35.36889000" + }, + { + "id": "65952", + "name": "Sidon", + "state_id": 2281, + "state_code": "JA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.55751000", + "longitude": "35.37148000" + }, + { + "id": "65954", + "name": "Tyre", + "state_id": 2281, + "state_code": "JA", + "country_id": 121, + "country_code": "LB", + "latitude": "33.27333000", + "longitude": "35.19389000" + }, + { + "id": "66574", + "name": "Teyateyaneng", + "state_id": 3030, + "state_code": "D", + "country_id": 122, + "country_code": "LS", + "latitude": "-29.14719000", + "longitude": "27.74895000" + }, + { + "id": "66564", + "name": "Butha-Buthe", + "state_id": 3029, + "state_code": "B", + "country_id": 122, + "country_code": "LS", + "latitude": "-28.76659000", + "longitude": "28.24937000" + }, + { + "id": "66565", + "name": "Leribe", + "state_id": 3026, + "state_code": "C", + "country_id": 122, + "country_code": "LS", + "latitude": "-28.87185000", + "longitude": "28.04501000" + }, + { + "id": "66567", + "name": "Maputsoe", + "state_id": 3026, + "state_code": "C", + "country_id": 122, + "country_code": "LS", + "latitude": "-28.88660000", + "longitude": "27.89915000" + }, + { + "id": "66566", + "name": "Mafeteng", + "state_id": 3022, + "state_code": "E", + "country_id": 122, + "country_code": "LS", + "latitude": "-29.82299000", + "longitude": "27.23744000" + }, + { + "id": "66568", + "name": "Maseru", + "state_id": 3028, + "state_code": "A", + "country_id": 122, + "country_code": "LS", + "latitude": "-29.31667000", + "longitude": "27.48333000" + }, + { + "id": "66571", + "name": "Nako", + "state_id": 3028, + "state_code": "A", + "country_id": 122, + "country_code": "LS", + "latitude": "-29.61667000", + "longitude": "27.76667000" + }, + { + "id": "66569", + "name": "Mohale’s Hoek", + "state_id": 3023, + "state_code": "F", + "country_id": 122, + "country_code": "LS", + "latitude": "-30.15137000", + "longitude": "27.47691000" + }, + { + "id": "66570", + "name": "Mokhotlong", + "state_id": 3024, + "state_code": "J", + "country_id": 122, + "country_code": "LS", + "latitude": "-29.28939000", + "longitude": "29.06751000" + }, + { + "id": "66572", + "name": "Qacha’s Nek", + "state_id": 3025, + "state_code": "H", + "country_id": 122, + "country_code": "LS", + "latitude": "-30.11537000", + "longitude": "28.68936000" + }, + { + "id": "66573", + "name": "Quthing", + "state_id": 3027, + "state_code": "G", + "country_id": 122, + "country_code": "LS", + "latitude": "-30.40001000", + "longitude": "27.70027000" + }, + { + "id": "66575", + "name": "Thaba-Tseka", + "state_id": 3031, + "state_code": "K", + "country_id": 122, + "country_code": "LS", + "latitude": "-29.52204000", + "longitude": "28.60840000" + }, + { + "id": "66561", + "name": "Tubmanburg", + "state_id": 3041, + "state_code": "BM", + "country_id": 123, + "country_code": "LR", + "latitude": "6.87064000", + "longitude": "-10.82110000" + }, + { + "id": "66553", + "name": "Gbarnga", + "state_id": 3034, + "state_code": "BG", + "country_id": 123, + "country_code": "LR", + "latitude": "6.99543000", + "longitude": "-9.47122000" + }, + { + "id": "66548", + "name": "Bopolu", + "state_id": 3044, + "state_code": "GP", + "country_id": 123, + "country_code": "LR", + "latitude": "7.06667000", + "longitude": "-10.48750000" + }, + { + "id": "66549", + "name": "Buchanan", + "state_id": 3040, + "state_code": "GB", + "country_id": 123, + "country_code": "LR", + "latitude": "5.87693000", + "longitude": "-10.04964000" + }, + { + "id": "66559", + "name": "Robertsport", + "state_id": 3036, + "state_code": "CM", + "country_id": 123, + "country_code": "LR", + "latitude": "6.75329000", + "longitude": "-11.36710000" + }, + { + "id": "66563", + "name": "Zwedru", + "state_id": 3039, + "state_code": "GG", + "country_id": 123, + "country_code": "LR", + "latitude": "6.06846000", + "longitude": "-8.13559000" + }, + { + "id": "66546", + "name": "Barclayville", + "state_id": 3045, + "state_code": "GK", + "country_id": 123, + "country_code": "LR", + "latitude": "4.67443000", + "longitude": "-8.23306000" + }, + { + "id": "66562", + "name": "Voinjama", + "state_id": 3037, + "state_code": "LO", + "country_id": 123, + "country_code": "LR", + "latitude": "8.42194000", + "longitude": "-9.74778000" + }, + { + "id": "66556", + "name": "Kakata", + "state_id": 3043, + "state_code": "MG", + "country_id": 123, + "country_code": "LR", + "latitude": "6.53104000", + "longitude": "-10.35368000" + }, + { + "id": "66555", + "name": "Harper", + "state_id": 3042, + "state_code": "MY", + "country_id": 123, + "country_code": "LR", + "latitude": "4.37820000", + "longitude": "-7.71081000" + }, + { + "id": "66547", + "name": "Bensonville", + "state_id": 3032, + "state_code": "MO", + "country_id": 123, + "country_code": "LR", + "latitude": "6.44716000", + "longitude": "-10.61283000" + }, + { + "id": "66557", + "name": "Monrovia", + "state_id": 3032, + "state_code": "MO", + "country_id": 123, + "country_code": "LR", + "latitude": "6.30054000", + "longitude": "-10.79690000" + }, + { + "id": "66552", + "name": "Ganta", + "state_id": 3046, + "state_code": "NI", + "country_id": 123, + "country_code": "LR", + "latitude": "7.30222000", + "longitude": "-8.53083000" + }, + { + "id": "66558", + "name": "New Yekepa", + "state_id": 3046, + "state_code": "NI", + "country_id": 123, + "country_code": "LR", + "latitude": "7.57944000", + "longitude": "-8.53778000" + }, + { + "id": "66560", + "name": "Sanniquellie", + "state_id": 3046, + "state_code": "NI", + "country_id": 123, + "country_code": "LR", + "latitude": "7.36215000", + "longitude": "-8.71326000" + }, + { + "id": "66550", + "name": "Cestos City", + "state_id": 3033, + "state_code": "RI", + "country_id": 123, + "country_code": "LR", + "latitude": "5.45683000", + "longitude": "-9.58167000" + }, + { + "id": "66551", + "name": "Fish Town", + "state_id": 3038, + "state_code": "RG", + "country_id": 123, + "country_code": "LR", + "latitude": "5.19739000", + "longitude": "-7.87579000" + }, + { + "id": "66554", + "name": "Greenville", + "state_id": 3035, + "state_code": "SI", + "country_id": 123, + "country_code": "LR", + "latitude": "5.01133000", + "longitude": "-9.03880000" + }, + { + "id": "66993", + "name": "Ajdabiya", + "state_id": 2964, + "state_code": "WA", + "country_id": 124, + "country_code": "LY", + "latitude": "30.75545000", + "longitude": "20.22625000" + }, + { + "id": "66997", + "name": "Al Burayqah", + "state_id": 2964, + "state_code": "WA", + "country_id": 124, + "country_code": "LY", + "latitude": "30.40624000", + "longitude": "19.57386000" + }, + { + "id": "67006", + "name": "Awjilah", + "state_id": 2964, + "state_code": "WA", + "country_id": 124, + "country_code": "LY", + "latitude": "29.10806000", + "longitude": "21.28694000" + }, + { + "id": "67007", + "name": "Az Zuwaytīnah", + "state_id": 2964, + "state_code": "WA", + "country_id": 124, + "country_code": "LY", + "latitude": "30.95220000", + "longitude": "20.12022000" + }, + { + "id": "67017", + "name": "Gialo", + "state_id": 2964, + "state_code": "WA", + "country_id": 124, + "country_code": "LY", + "latitude": "29.03333000", + "longitude": "21.55000000" + }, + { + "id": "67020", + "name": "Marādah", + "state_id": 2964, + "state_code": "WA", + "country_id": 124, + "country_code": "LY", + "latitude": "29.22054000", + "longitude": "19.20454000" + }, + { + "id": "67010", + "name": "Benghazi", + "state_id": 2981, + "state_code": "BA", + "country_id": 124, + "country_code": "LY", + "latitude": "32.11486000", + "longitude": "20.06859000" + }, + { + "id": "67026", + "name": "Qaryat Sulūq", + "state_id": 2981, + "state_code": "BA", + "country_id": 124, + "country_code": "LY", + "latitude": "31.66818000", + "longitude": "20.25205000" + }, + { + "id": "67003", + "name": "Al Qubbah", + "state_id": 2966, + "state_code": "DR", + "country_id": 124, + "country_code": "LY", + "latitude": "32.75684000", + "longitude": "22.24106000" + }, + { + "id": "67012", + "name": "Darnah", + "state_id": 2966, + "state_code": "DR", + "country_id": 124, + "country_code": "LY", + "latitude": "32.76704000", + "longitude": "22.63669000" + }, + { + "id": "67015", + "name": "Ghat", + "state_id": 2969, + "state_code": "GT", + "country_id": 124, + "country_code": "LY", + "latitude": "24.96334000", + "longitude": "10.18003000" + }, + { + "id": "66996", + "name": "Al Bayḑā’", + "state_id": 2980, + "state_code": "JA", + "country_id": 124, + "country_code": "LY", + "latitude": "32.76272000", + "longitude": "21.75506000" + }, + { + "id": "67014", + "name": "Gharyan", + "state_id": 2974, + "state_code": "JG", + "country_id": 124, + "country_code": "LY", + "latitude": "32.17222000", + "longitude": "13.02028000" + }, + { + "id": "67016", + "name": "Giado", + "state_id": 2974, + "state_code": "JG", + "country_id": 124, + "country_code": "LY", + "latitude": "31.95506000", + "longitude": "12.02901000" + }, + { + "id": "67022", + "name": "Mizdah", + "state_id": 2974, + "state_code": "JG", + "country_id": 124, + "country_code": "LY", + "latitude": "31.44934000", + "longitude": "12.98530000" + }, + { + "id": "67036", + "name": "Yafran", + "state_id": 2974, + "state_code": "JG", + "country_id": 124, + "country_code": "LY", + "latitude": "32.06329000", + "longitude": "12.52859000" + }, + { + "id": "67039", + "name": "Zintan", + "state_id": 2974, + "state_code": "JG", + "country_id": 124, + "country_code": "LY", + "latitude": "31.93155000", + "longitude": "12.25291000" + }, + { + "id": "67004", + "name": "Al ‘Azīzīyah", + "state_id": 2979, + "state_code": "JI", + "country_id": 124, + "country_code": "LY", + "latitude": "32.53194000", + "longitude": "13.01750000" + }, + { + "id": "67018", + "name": "Hūn", + "state_id": 2970, + "state_code": "JU", + "country_id": 124, + "country_code": "LY", + "latitude": "29.12684000", + "longitude": "15.94772000" + }, + { + "id": "67035", + "name": "Waddān", + "state_id": 2970, + "state_code": "JU", + "country_id": 124, + "country_code": "LY", + "latitude": "29.16140000", + "longitude": "16.13904000" + }, + { + "id": "66999", + "name": "Al Jawf", + "state_id": 2972, + "state_code": "KF", + "country_id": 124, + "country_code": "LY", + "latitude": "24.19890000", + "longitude": "23.29093000" + }, + { + "id": "67005", + "name": "At Tāj", + "state_id": 2972, + "state_code": "KF", + "country_id": 124, + "country_code": "LY", + "latitude": "24.20487000", + "longitude": "23.28570000" + }, + { + "id": "66994", + "name": "Al Abyār", + "state_id": 2968, + "state_code": "MJ", + "country_id": 124, + "country_code": "LY", + "latitude": "32.19000000", + "longitude": "20.59653000" + }, + { + "id": "67001", + "name": "Al Marj", + "state_id": 2968, + "state_code": "MJ", + "country_id": 124, + "country_code": "LY", + "latitude": "32.49257000", + "longitude": "20.82909000" + }, + { + "id": "67033", + "name": "Tūkrah", + "state_id": 2968, + "state_code": "MJ", + "country_id": 124, + "country_code": "LY", + "latitude": "32.53414000", + "longitude": "20.57911000" + }, + { + "id": "67009", + "name": "Bani Walid", + "state_id": 2978, + "state_code": "MI", + "country_id": 124, + "country_code": "LY", + "latitude": "31.74554000", + "longitude": "13.98354000" + }, + { + "id": "67023", + "name": "Mişrātah", + "state_id": 2978, + "state_code": "MI", + "country_id": 124, + "country_code": "LY", + "latitude": "32.37535000", + "longitude": "15.09254000" + }, + { + "id": "67040", + "name": "Zliten", + "state_id": 2978, + "state_code": "MI", + "country_id": 124, + "country_code": "LY", + "latitude": "32.46739000", + "longitude": "14.56874000" + }, + { + "id": "67000", + "name": "Al Khums", + "state_id": 2961, + "state_code": "MB", + "country_id": 124, + "country_code": "LY", + "latitude": "32.64861000", + "longitude": "14.26191000" + }, + { + "id": "67021", + "name": "Masallātah", + "state_id": 2961, + "state_code": "MB", + "country_id": 124, + "country_code": "LY", + "latitude": "32.61667000", + "longitude": "14.00000000" + }, + { + "id": "67031", + "name": "Tarhuna", + "state_id": 2961, + "state_code": "MB", + "country_id": 124, + "country_code": "LY", + "latitude": "32.43501000", + "longitude": "13.63320000" + }, + { + "id": "67002", + "name": "Al Qaţrūn", + "state_id": 2967, + "state_code": "MQ", + "country_id": 124, + "country_code": "LY", + "latitude": "24.95139000", + "longitude": "14.64861000" + }, + { + "id": "67024", + "name": "Murzuq", + "state_id": 2967, + "state_code": "MQ", + "country_id": 124, + "country_code": "LY", + "latitude": "25.91552000", + "longitude": "13.91839000" + }, + { + "id": "67013", + "name": "Ghadāmis", + "state_id": 2976, + "state_code": "NL", + "country_id": 124, + "country_code": "LY", + "latitude": "30.13366000", + "longitude": "9.50072000" + }, + { + "id": "67025", + "name": "Nālūt", + "state_id": 2976, + "state_code": "NL", + "country_id": 124, + "country_code": "LY", + "latitude": "31.86848000", + "longitude": "10.98120000" + }, + { + "id": "66995", + "name": "Al Ajaylat", + "state_id": 2962, + "state_code": "NQ", + "country_id": 124, + "country_code": "LY", + "latitude": "32.75718000", + "longitude": "12.37633000" + }, + { + "id": "67037", + "name": "Zalţan", + "state_id": 2962, + "state_code": "NQ", + "country_id": 124, + "country_code": "LY", + "latitude": "32.94699000", + "longitude": "11.86668000" + }, + { + "id": "67041", + "name": "Zuwārah", + "state_id": 2962, + "state_code": "NQ", + "country_id": 124, + "country_code": "LY", + "latitude": "32.93120000", + "longitude": "12.08199000" + }, + { + "id": "66998", + "name": "Al Jadīd", + "state_id": 2965, + "state_code": "SB", + "country_id": 124, + "country_code": "LY", + "latitude": "27.05000000", + "longitude": "14.40000000" + }, + { + "id": "67028", + "name": "Sabhā", + "state_id": 2965, + "state_code": "SB", + "country_id": 124, + "country_code": "LY", + "latitude": "27.03766000", + "longitude": "14.42832000" + }, + { + "id": "67027", + "name": "Qasr Abu Hadi", + "state_id": 2977, + "state_code": "SR", + "country_id": 124, + "country_code": "LY", + "latitude": "31.05926000", + "longitude": "16.65905000" + }, + { + "id": "67029", + "name": "Sirte", + "state_id": 2977, + "state_code": "SR", + "country_id": 124, + "country_code": "LY", + "latitude": "31.20892000", + "longitude": "16.58866000" + }, + { + "id": "67030", + "name": "Tagiura", + "state_id": 2971, + "state_code": "TB", + "country_id": 124, + "country_code": "LY", + "latitude": "32.88167000", + "longitude": "13.35056000" + }, + { + "id": "67032", + "name": "Tripoli", + "state_id": 2971, + "state_code": "TB", + "country_id": 124, + "country_code": "LY", + "latitude": "32.88743000", + "longitude": "13.18733000" + }, + { + "id": "67034", + "name": "Ubari", + "state_id": 2973, + "state_code": "WD", + "country_id": 124, + "country_code": "LY", + "latitude": "26.59034000", + "longitude": "12.77511000" + }, + { + "id": "67011", + "name": "Brak", + "state_id": 2975, + "state_code": "WS", + "country_id": 124, + "country_code": "LY", + "latitude": "27.54956000", + "longitude": "14.27139000" + }, + { + "id": "67019", + "name": "Idrī", + "state_id": 2975, + "state_code": "WS", + "country_id": 124, + "country_code": "LY", + "latitude": "27.44707000", + "longitude": "13.05173000" + }, + { + "id": "67008", + "name": "Az Zāwīyah", + "state_id": 2963, + "state_code": "ZA", + "country_id": 124, + "country_code": "LY", + "latitude": "32.75710000", + "longitude": "12.72764000" + }, + { + "id": "67042", + "name": "Şabrātah", + "state_id": 2963, + "state_code": "ZA", + "country_id": 124, + "country_code": "LY", + "latitude": "32.79335000", + "longitude": "12.48845000" + }, + { + "id": "67043", + "name": "Şurmān", + "state_id": 2963, + "state_code": "ZA", + "country_id": 124, + "country_code": "LY", + "latitude": "32.75668000", + "longitude": "12.57159000" + }, + { + "id": "67038", + "name": "Zawiya", + "state_id": 2963, + "state_code": "ZA", + "country_id": 124, + "country_code": "LY", + "latitude": "32.75222000", + "longitude": "12.72778000" + }, + { + "id": "66437", + "name": "Balzers", + "state_id": 458, + "state_code": "01", + "country_id": 125, + "country_code": "LI", + "latitude": "47.06665000", + "longitude": "9.50251000" + }, + { + "id": "66438", + "name": "Eschen", + "state_id": 451, + "state_code": "02", + "country_id": 125, + "country_code": "LI", + "latitude": "47.21071000", + "longitude": "9.52223000" + }, + { + "id": "66439", + "name": "Gamprin", + "state_id": 457, + "state_code": "03", + "country_id": 125, + "country_code": "LI", + "latitude": "47.22038000", + "longitude": "9.50935000" + }, + { + "id": "66440", + "name": "Mauren", + "state_id": 455, + "state_code": "04", + "country_id": 125, + "country_code": "LI", + "latitude": "47.21805000", + "longitude": "9.54420000" + }, + { + "id": "66441", + "name": "Planken", + "state_id": 454, + "state_code": "05", + "country_id": 125, + "country_code": "LI", + "latitude": "47.18516000", + "longitude": "9.54437000" + }, + { + "id": "66442", + "name": "Ruggell", + "state_id": 453, + "state_code": "06", + "country_id": 125, + "country_code": "LI", + "latitude": "47.23799000", + "longitude": "9.52540000" + }, + { + "id": "66443", + "name": "Schaan", + "state_id": 450, + "state_code": "07", + "country_id": 125, + "country_code": "LI", + "latitude": "47.16498000", + "longitude": "9.50867000" + }, + { + "id": "66444", + "name": "Schellenberg", + "state_id": 449, + "state_code": "08", + "country_id": 125, + "country_code": "LI", + "latitude": "47.23123000", + "longitude": "9.54678000" + }, + { + "id": "66445", + "name": "Triesen", + "state_id": 459, + "state_code": "09", + "country_id": 125, + "country_code": "LI", + "latitude": "47.10752000", + "longitude": "9.52815000" + }, + { + "id": "66446", + "name": "Triesenberg", + "state_id": 456, + "state_code": "10", + "country_id": 125, + "country_code": "LI", + "latitude": "47.11815000", + "longitude": "9.54197000" + }, + { + "id": "66447", + "name": "Vaduz", + "state_id": 452, + "state_code": "11", + "country_id": 125, + "country_code": "LI", + "latitude": "47.14151000", + "longitude": "9.52154000" + }, + { + "id": "66580", + "name": "Alytaus rajonas", + "state_id": 1605, + "state_code": "02", + "country_id": 126, + "country_code": "LT", + "latitude": "54.40000000", + "longitude": "24.05000000" + }, + { + "id": "66581", + "name": "Alytus", + "state_id": 1605, + "state_code": "02", + "country_id": 126, + "country_code": "LT", + "latitude": "54.39635000", + "longitude": "24.04142000" + }, + { + "id": "66592", + "name": "Daugai", + "state_id": 1605, + "state_code": "02", + "country_id": 126, + "country_code": "LT", + "latitude": "54.36667000", + "longitude": "24.33333000" + }, + { + "id": "66593", + "name": "Druskininkai", + "state_id": 1605, + "state_code": "02", + "country_id": 126, + "country_code": "LT", + "latitude": "54.01573000", + "longitude": "23.98703000" + }, + { + "id": "66630", + "name": "Lazdijai", + "state_id": 1605, + "state_code": "02", + "country_id": 126, + "country_code": "LT", + "latitude": "54.23333000", + "longitude": "23.51667000" + }, + { + "id": "66678", + "name": "Simnas", + "state_id": 1605, + "state_code": "02", + "country_id": 126, + "country_code": "LT", + "latitude": "54.38200000", + "longitude": "23.64600000" + }, + { + "id": "66694", + "name": "Varėna", + "state_id": 1605, + "state_code": "02", + "country_id": 126, + "country_code": "LT", + "latitude": "54.21667000", + "longitude": "24.56667000" + }, + { + "id": "66695", + "name": "Veisiejai", + "state_id": 1605, + "state_code": "02", + "country_id": 126, + "country_code": "LT", + "latitude": "54.10110000", + "longitude": "23.69614000" + }, + { + "id": "66577", + "name": "Akmenė", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "56.25000000", + "longitude": "22.75000000" + }, + { + "id": "66578", + "name": "Akmenės Rajonas", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "56.31667000", + "longitude": "22.90000000" + }, + { + "id": "66710", + "name": "Šeduva", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "55.74930000", + "longitude": "23.75610000" + }, + { + "id": "66712", + "name": "Šiauliai", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "55.93333000", + "longitude": "23.31667000" + }, + { + "id": "66713", + "name": "Šiaulių rajonas", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "55.93333000", + "longitude": "23.31667000" + }, + { + "id": "66721", + "name": "Žagarė", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "56.36149000", + "longitude": "23.25094000" + }, + { + "id": "66607", + "name": "Joniškis", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "56.23333000", + "longitude": "23.61667000" + }, + { + "id": "66619", + "name": "Kelmė", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "55.63333000", + "longitude": "22.93333000" + }, + { + "id": "66627", + "name": "Kuršėnai", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "56.00318000", + "longitude": "22.93662000" + }, + { + "id": "66633", + "name": "Linkuva", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "56.08596000", + "longitude": "23.97061000" + }, + { + "id": "66642", + "name": "Naujoji Akmene", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "56.31667000", + "longitude": "22.90000000" + }, + { + "id": "66649", + "name": "Pakruojis", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "55.96667000", + "longitude": "23.86667000" + }, + { + "id": "66663", + "name": "Radviliškis", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "55.81667000", + "longitude": "23.53333000" + }, + { + "id": "66662", + "name": "Radviliskis", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "55.81667000", + "longitude": "23.53333000" + }, + { + "id": "66688", + "name": "Tytuvėnėliai", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "55.62345000", + "longitude": "23.17162000" + }, + { + "id": "66696", + "name": "Venta", + "state_id": 1609, + "state_code": "43", + "country_id": 126, + "country_code": "LT", + "latitude": "56.19162000", + "longitude": "22.69528000" + }, + { + "id": "66576", + "name": "Akademija (Kaunas)", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.89640000", + "longitude": "23.82411000" + }, + { + "id": "66579", + "name": "Aleksotas", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.88037000", + "longitude": "23.90842000" + }, + { + "id": "66584", + "name": "Ariogala", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "55.26200000", + "longitude": "23.47700000" + }, + { + "id": "66714", + "name": "Šilainiai", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.92911000", + "longitude": "23.88599000" + }, + { + "id": "66723", + "name": "Žiežmariai", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.80725000", + "longitude": "24.44073000" + }, + { + "id": "66588", + "name": "Birštonas", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.61667000", + "longitude": "24.03333000" + }, + { + "id": "66591", + "name": "Dainava (Kaunas)", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.91525000", + "longitude": "23.96831000" + }, + { + "id": "66598", + "name": "Ežerėlis", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.88315000", + "longitude": "23.60396000" + }, + { + "id": "66595", + "name": "Eiguliai", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.93133000", + "longitude": "23.93243000" + }, + { + "id": "66601", + "name": "Garliava", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.82139000", + "longitude": "23.87130000" + }, + { + "id": "66605", + "name": "Jieznas", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.59937000", + "longitude": "24.17593000" + }, + { + "id": "66606", + "name": "Jonava", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "55.08333000", + "longitude": "24.28333000" + }, + { + "id": "66611", + "name": "Kaišiadorys", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.86667000", + "longitude": "24.45000000" + }, + { + "id": "66614", + "name": "Karmėlava", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.97055000", + "longitude": "24.06182000" + }, + { + "id": "66615", + "name": "Kaunas", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.90272000", + "longitude": "23.90961000" + }, + { + "id": "66616", + "name": "Kauno rajonas", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.92410000", + "longitude": "23.96145000" + }, + { + "id": "66629", + "name": "Kėdainiai", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "55.28333000", + "longitude": "23.96667000" + }, + { + "id": "66624", + "name": "Kulautuva", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.94212000", + "longitude": "23.64218000" + }, + { + "id": "66636", + "name": "Mastaiciai", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.81998000", + "longitude": "23.84462000" + }, + { + "id": "66661", + "name": "Prienai", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.63333000", + "longitude": "23.95000000" + }, + { + "id": "66664", + "name": "Ramučiai", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.94830000", + "longitude": "24.03050000" + }, + { + "id": "66666", + "name": "Raseiniai", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "55.36667000", + "longitude": "23.11667000" + }, + { + "id": "66674", + "name": "Sargėnai", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "54.94933000", + "longitude": "23.88316000" + }, + { + "id": "66701", + "name": "Vilkija", + "state_id": 1580, + "state_code": "15", + "country_id": 126, + "country_code": "LT", + "latitude": "55.04609000", + "longitude": "23.58552000" + }, + { + "id": "66716", + "name": "Šilutė", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.35000000", + "longitude": "21.48333000" + }, + { + "id": "66718", + "name": "Šventoji", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "56.02610000", + "longitude": "21.08411000" + }, + { + "id": "66722", + "name": "Žemaičių Naumiestis", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.35941000", + "longitude": "21.70364000" + }, + { + "id": "66600", + "name": "Gargždai", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.70951000", + "longitude": "21.39441000" + }, + { + "id": "66620", + "name": "Klaipėda", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.71667000", + "longitude": "21.11667000" + }, + { + "id": "66621", + "name": "Klaipėdos rajonas", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.71667000", + "longitude": "21.40000000" + }, + { + "id": "66622", + "name": "Kretinga", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.88880000", + "longitude": "21.24448000" + }, + { + "id": "66644", + "name": "Neringa", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.36667000", + "longitude": "21.06667000" + }, + { + "id": "66645", + "name": "Nida", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.30860000", + "longitude": "20.99651000" + }, + { + "id": "66650", + "name": "Palanga", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.91750000", + "longitude": "21.06861000" + }, + { + "id": "66660", + "name": "Priekulė", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.55427000", + "longitude": "21.31903000" + }, + { + "id": "66670", + "name": "Rusnė", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.29820000", + "longitude": "21.37120000" + }, + { + "id": "66673", + "name": "Salantai", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "56.05650000", + "longitude": "21.56890000" + }, + { + "id": "66677", + "name": "Silute", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "55.34889000", + "longitude": "21.48306000" + }, + { + "id": "66681", + "name": "Skuodas", + "state_id": 1604, + "state_code": "21", + "country_id": 126, + "country_code": "LT", + "latitude": "56.26667000", + "longitude": "21.53333000" + }, + { + "id": "66708", + "name": "Šakiai", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.95339000", + "longitude": "23.04779000" + }, + { + "id": "66602", + "name": "Gelgaudiškis", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "55.07688000", + "longitude": "22.97699000" + }, + { + "id": "66612", + "name": "Kalvarija", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.41700000", + "longitude": "23.22300000" + }, + { + "id": "66613", + "name": "Kalvarija Municipality", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.41468000", + "longitude": "23.22484000" + }, + { + "id": "66617", + "name": "Kazlų Rūda", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.74900000", + "longitude": "23.49000000" + }, + { + "id": "66618", + "name": "Kazlų Rūda Municipality", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.74751000", + "longitude": "23.49272000" + }, + { + "id": "66623", + "name": "Kudirkos Naumiestis", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.77353000", + "longitude": "22.86138000" + }, + { + "id": "66628", + "name": "Kybartai", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.63858000", + "longitude": "22.76316000" + }, + { + "id": "66634", + "name": "Marijampolė", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.55991000", + "longitude": "23.35412000" + }, + { + "id": "66635", + "name": "Marijampolė Municipality", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.56667000", + "longitude": "23.35000000" + }, + { + "id": "66672", + "name": "Sakiai", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.95000000", + "longitude": "23.05000000" + }, + { + "id": "66700", + "name": "Vilkaviškis District Municipality", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.65000000", + "longitude": "23.03333000" + }, + { + "id": "66699", + "name": "Vilkaviskis", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.65167000", + "longitude": "23.03222000" + }, + { + "id": "66705", + "name": "Virbalis", + "state_id": 1610, + "state_code": "25", + "country_id": 126, + "country_code": "LT", + "latitude": "54.62858000", + "longitude": "22.82272000" + }, + { + "id": "66589", + "name": "Biržai", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "56.20000000", + "longitude": "24.75000000" + }, + { + "id": "66587", + "name": "Birzai", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "56.20000000", + "longitude": "24.75000000" + }, + { + "id": "66608", + "name": "Juodupė", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "56.08700000", + "longitude": "25.60700000" + }, + { + "id": "66626", + "name": "Kupiškis", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "55.83333000", + "longitude": "24.96667000" + }, + { + "id": "66625", + "name": "Kupiskis", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "55.84027000", + "longitude": "24.97976000" + }, + { + "id": "66646", + "name": "Obeliai", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "55.96895000", + "longitude": "25.15648000" + }, + { + "id": "66651", + "name": "Panevėžys", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "55.73333000", + "longitude": "24.35000000" + }, + { + "id": "66652", + "name": "Panevėžys City", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "55.73600000", + "longitude": "24.34347000" + }, + { + "id": "66653", + "name": "Panevėžys District Municipality", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "55.73301000", + "longitude": "24.37609000" + }, + { + "id": "66654", + "name": "Pasvalys", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "56.06667000", + "longitude": "24.40000000" + }, + { + "id": "66665", + "name": "Ramygala", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "55.51400000", + "longitude": "24.30000000" + }, + { + "id": "66669", + "name": "Rokiškis", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "55.96667000", + "longitude": "25.58333000" + }, + { + "id": "66692", + "name": "Vabalninkas", + "state_id": 1614, + "state_code": "33", + "country_id": 126, + "country_code": "LT", + "latitude": "55.98151000", + "longitude": "24.74828000" + }, + { + "id": "66715", + "name": "Šilalė", + "state_id": 1573, + "state_code": "TA", + "country_id": 126, + "country_code": "LT", + "latitude": "55.46667000", + "longitude": "22.20000000" + }, + { + "id": "66590", + "name": "Būgai", + "state_id": 1573, + "state_code": "TA", + "country_id": 126, + "country_code": "LT", + "latitude": "55.41387000", + "longitude": "22.60894000" + }, + { + "id": "66609", + "name": "Jurbarkas", + "state_id": 1573, + "state_code": "TA", + "country_id": 126, + "country_code": "LT", + "latitude": "55.10859000", + "longitude": "22.79885000" + }, + { + "id": "66648", + "name": "Pagėgiai", + "state_id": 1573, + "state_code": "TA", + "country_id": 126, + "country_code": "LT", + "latitude": "55.13400000", + "longitude": "21.90446000" + }, + { + "id": "66684", + "name": "Tauragė", + "state_id": 1573, + "state_code": "TA", + "country_id": 126, + "country_code": "LT", + "latitude": "55.25000000", + "longitude": "22.28333000" + }, + { + "id": "66683", + "name": "Taurage", + "state_id": 1573, + "state_code": "TA", + "country_id": 126, + "country_code": "LT", + "latitude": "55.25222000", + "longitude": "22.28972000" + }, + { + "id": "66638", + "name": "Mažeikiai", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "56.31667000", + "longitude": "22.33333000" + }, + { + "id": "66637", + "name": "Mazeikiai", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "56.31667000", + "longitude": "22.33333000" + }, + { + "id": "66657", + "name": "Plateliai", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "56.04657000", + "longitude": "21.81615000" + }, + { + "id": "66659", + "name": "Plungė", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "55.91667000", + "longitude": "21.85000000" + }, + { + "id": "66658", + "name": "Plunge", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "55.91139000", + "longitude": "21.84417000" + }, + { + "id": "66668", + "name": "Rietavas", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "55.72375000", + "longitude": "21.93266000" + }, + { + "id": "66675", + "name": "Seda", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "56.16854000", + "longitude": "22.09071000" + }, + { + "id": "66686", + "name": "Telšiai", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "55.98333000", + "longitude": "22.25000000" + }, + { + "id": "66685", + "name": "Telsiai", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "55.98139000", + "longitude": "22.24722000" + }, + { + "id": "66693", + "name": "Varniai", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "55.74435000", + "longitude": "22.37251000" + }, + { + "id": "66697", + "name": "Viekšniai", + "state_id": 1608, + "state_code": "51", + "country_id": 126, + "country_code": "LT", + "latitude": "56.23598000", + "longitude": "22.51667000" + }, + { + "id": "66583", + "name": "Anykščiai", + "state_id": 1621, + "state_code": "UT", + "country_id": 126, + "country_code": "LT", + "latitude": "55.53333000", + "longitude": "25.10000000" + }, + { + "id": "66582", + "name": "Anyksciai", + "state_id": 1621, + "state_code": "UT", + "country_id": 126, + "country_code": "LT", + "latitude": "55.52557000", + "longitude": "25.10264000" + }, + { + "id": "66594", + "name": "Dūkštas", + "state_id": 1621, + "state_code": "UT", + "country_id": 126, + "country_code": "LT", + "latitude": "55.52200000", + "longitude": "26.32100000" + }, + { + "id": "66604", + "name": "Ignalina", + "state_id": 1621, + "state_code": "UT", + "country_id": 126, + "country_code": "LT", + "latitude": "55.35000000", + "longitude": "26.16667000" + }, + { + "id": "66640", + "name": "Molėtai", + "state_id": 1621, + "state_code": "UT", + "country_id": 126, + "country_code": "LT", + "latitude": "55.22469000", + "longitude": "25.41688000" + }, + { + "id": "66639", + "name": "Moletai", + "state_id": 1621, + "state_code": "UT", + "country_id": 126, + "country_code": "LT", + "latitude": "55.23333000", + "longitude": "25.41667000" + }, + { + "id": "66691", + "name": "Utena", + "state_id": 1621, + "state_code": "UT", + "country_id": 126, + "country_code": "LT", + "latitude": "55.49764000", + "longitude": "25.59918000" + }, + { + "id": "66706", + "name": "Visaginas", + "state_id": 1621, + "state_code": "UT", + "country_id": 126, + "country_code": "LT", + "latitude": "55.60000000", + "longitude": "26.41667000" + }, + { + "id": "66707", + "name": "Zarasai", + "state_id": 1621, + "state_code": "UT", + "country_id": 126, + "country_code": "LT", + "latitude": "55.73333000", + "longitude": "26.25000000" + }, + { + "id": "66585", + "name": "Aukstadvaris", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.57946000", + "longitude": "24.52683000" + }, + { + "id": "66709", + "name": "Šalčininkai", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.30000000", + "longitude": "25.38333000" + }, + { + "id": "66711", + "name": "Šeškinė", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.70972000", + "longitude": "25.25053000" + }, + { + "id": "66717", + "name": "Širvintos", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "55.04400000", + "longitude": "24.95446000" + }, + { + "id": "66720", + "name": "Švenčionėliai", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "55.16163000", + "longitude": "26.00177000" + }, + { + "id": "66719", + "name": "Švenčionys", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "55.13500000", + "longitude": "26.15900000" + }, + { + "id": "66586", + "name": "Baltoji Vokė", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.60002000", + "longitude": "25.19318000" + }, + { + "id": "66596", + "name": "Eišiškės", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.17414000", + "longitude": "24.99917000" + }, + { + "id": "66597", + "name": "Elektrėnai", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.78544000", + "longitude": "24.66302000" + }, + { + "id": "66599", + "name": "Fabijoniškės", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.73333000", + "longitude": "25.24167000" + }, + { + "id": "66603", + "name": "Grigiškės", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.68333000", + "longitude": "25.08333000" + }, + { + "id": "66610", + "name": "Justiniškės", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.71664000", + "longitude": "25.21740000" + }, + { + "id": "66631", + "name": "Lazdynai", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.66815000", + "longitude": "25.20684000" + }, + { + "id": "66632", + "name": "Lentvaris", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.64364000", + "longitude": "25.05162000" + }, + { + "id": "66641", + "name": "Naujamiestis", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.67951000", + "longitude": "25.26855000" + }, + { + "id": "66643", + "name": "Nemenčinė", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.84776000", + "longitude": "25.46992000" + }, + { + "id": "66655", + "name": "Pašilaičiai", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.73429000", + "longitude": "25.21912000" + }, + { + "id": "66647", + "name": "Pabradė", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.98100000", + "longitude": "25.76100000" + }, + { + "id": "66656", + "name": "Pilaitė", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.69981000", + "longitude": "25.18393000" + }, + { + "id": "66667", + "name": "Rasos", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.67877000", + "longitude": "25.31173000" + }, + { + "id": "66671", + "name": "Rūdiškės", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.51609000", + "longitude": "24.83084000" + }, + { + "id": "66676", + "name": "Senieji Trakai", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.60900000", + "longitude": "24.98000000" + }, + { + "id": "66679", + "name": "Sirvintos", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "55.05000000", + "longitude": "24.95000000" + }, + { + "id": "66680", + "name": "Skaidiškės", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.61398000", + "longitude": "25.39573000" + }, + { + "id": "66682", + "name": "Svencionys", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "55.15000000", + "longitude": "26.16667000" + }, + { + "id": "66687", + "name": "Trakai", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.63783000", + "longitude": "24.93433000" + }, + { + "id": "66690", + "name": "Ukmergė", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "55.25000000", + "longitude": "24.75000000" + }, + { + "id": "66689", + "name": "Ukmerge", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "55.25000000", + "longitude": "24.75000000" + }, + { + "id": "66698", + "name": "Vievis", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.76667000", + "longitude": "24.80000000" + }, + { + "id": "66702", + "name": "Vilkpėdė", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.66969000", + "longitude": "25.24770000" + }, + { + "id": "66703", + "name": "Vilnius", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.68916000", + "longitude": "25.27980000" + }, + { + "id": "66704", + "name": "Vilnius District Municipality", + "state_id": 1606, + "state_code": "57", + "country_id": 126, + "country_code": "LT", + "latitude": "54.73333000", + "longitude": "25.38333000" + }, + { + "id": "66726", + "name": "Bascharage", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.56727000", + "longitude": "5.90730000" + }, + { + "id": "66745", + "name": "Bridel", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.65579000", + "longitude": "6.07999000" + }, + { + "id": "66747", + "name": "Capellen", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.64500000", + "longitude": "5.99083000" + }, + { + "id": "66748", + "name": "Clemency", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.59667000", + "longitude": "5.87583000" + }, + { + "id": "66759", + "name": "Dippach", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.58701000", + "longitude": "5.98330000" + }, + { + "id": "66762", + "name": "Eischen", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.68556000", + "longitude": "5.87861000" + }, + { + "id": "66773", + "name": "Garnich", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.61667000", + "longitude": "5.95250000" + }, + { + "id": "66778", + "name": "Hautcharage", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.57499000", + "longitude": "5.90970000" + }, + { + "id": "66783", + "name": "Hobscheid", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.68861000", + "longitude": "5.91472000" + }, + { + "id": "66793", + "name": "Käerjeng", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.58311000", + "longitude": "5.89892000" + }, + { + "id": "66788", + "name": "Kehlen", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.66833000", + "longitude": "6.03583000" + }, + { + "id": "66791", + "name": "Koerich", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.67000000", + "longitude": "5.95000000" + }, + { + "id": "66792", + "name": "Kopstal", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.66444000", + "longitude": "6.07306000" + }, + { + "id": "66802", + "name": "Mamer", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.62750000", + "longitude": "6.02333000" + }, + { + "id": "66839", + "name": "Schouweiler", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.58250000", + "longitude": "5.95639000" + }, + { + "id": "66842", + "name": "Septfontaines", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.70111000", + "longitude": "5.96722000" + }, + { + "id": "66845", + "name": "Steinfort", + "state_id": 1518, + "state_code": "CA", + "country_id": 127, + "country_code": "LU", + "latitude": "49.66139000", + "longitude": "5.91917000" + }, + { + "id": "66749", + "name": "Clervaux", + "state_id": 1521, + "state_code": "CL", + "country_id": 127, + "country_code": "LU", + "latitude": "50.05472000", + "longitude": "6.03139000" + }, + { + "id": "66784", + "name": "Hosingen", + "state_id": 1521, + "state_code": "CL", + "country_id": 127, + "country_code": "LU", + "latitude": "50.01218000", + "longitude": "6.09089000" + }, + { + "id": "66819", + "name": "Parc Hosingen", + "state_id": 1521, + "state_code": "CL", + "country_id": 127, + "country_code": "LU", + "latitude": "49.99744000", + "longitude": "6.09067000" + }, + { + "id": "66849", + "name": "Troisvierges", + "state_id": 1521, + "state_code": "CL", + "country_id": 127, + "country_code": "LU", + "latitude": "50.12111000", + "longitude": "6.00028000" + }, + { + "id": "66862", + "name": "Weiswampach", + "state_id": 1521, + "state_code": "CL", + "country_id": 127, + "country_code": "LU", + "latitude": "50.13722000", + "longitude": "6.07500000" + }, + { + "id": "66865", + "name": "Wincrange", + "state_id": 1521, + "state_code": "CL", + "country_id": 127, + "country_code": "LU", + "latitude": "50.05333000", + "longitude": "5.91917000" + }, + { + "id": "66737", + "name": "Bettendorf", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.87667000", + "longitude": "6.21806000" + }, + { + "id": "66743", + "name": "Bourscheid", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.90862000", + "longitude": "6.06750000" + }, + { + "id": "66752", + "name": "Commune de la Vallée de l’Ernz", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.82149000", + "longitude": "6.21746000" + }, + { + "id": "66757", + "name": "Diekirch", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.86778000", + "longitude": "6.15583000" + }, + { + "id": "66764", + "name": "Erpeldange", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.86472000", + "longitude": "6.11472000" + }, + { + "id": "66767", + "name": "Ettelbruck", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.84750000", + "longitude": "6.10417000" + }, + { + "id": "66769", + "name": "Feulen", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.85000000", + "longitude": "6.01667000" + }, + { + "id": "66804", + "name": "Medernach", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.80955000", + "longitude": "6.21521000" + }, + { + "id": "66807", + "name": "Mertzig", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.83389000", + "longitude": "6.00750000" + }, + { + "id": "66815", + "name": "Niederfeulen", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.85556000", + "longitude": "6.04722000" + }, + { + "id": "66826", + "name": "Reisdorf", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.86861000", + "longitude": "6.26778000" + }, + { + "id": "66837", + "name": "Schieren", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.83056000", + "longitude": "6.09861000" + }, + { + "id": "66859", + "name": "Warken", + "state_id": 1513, + "state_code": "DI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.85918000", + "longitude": "6.08415000" + }, + { + "id": "66728", + "name": "Beaufort", + "state_id": 1515, + "state_code": "EC", + "country_id": 127, + "country_code": "LU", + "latitude": "49.83583000", + "longitude": "6.29167000" + }, + { + "id": "66729", + "name": "Bech", + "state_id": 1515, + "state_code": "EC", + "country_id": 127, + "country_code": "LU", + "latitude": "49.75260000", + "longitude": "6.36379000" + }, + { + "id": "66732", + "name": "Berdorf", + "state_id": 1515, + "state_code": "EC", + "country_id": 127, + "country_code": "LU", + "latitude": "49.82051000", + "longitude": "6.34945000" + }, + { + "id": "66753", + "name": "Consdorf", + "state_id": 1515, + "state_code": "EC", + "country_id": 127, + "country_code": "LU", + "latitude": "49.78018000", + "longitude": "6.33950000" + }, + { + "id": "66761", + "name": "Echternach", + "state_id": 1515, + "state_code": "EC", + "country_id": 127, + "country_code": "LU", + "latitude": "49.81212000", + "longitude": "6.41846000" + }, + { + "id": "66808", + "name": "Mompach", + "state_id": 1515, + "state_code": "EC", + "country_id": 127, + "country_code": "LU", + "latitude": "49.74611000", + "longitude": "6.46500000" + }, + { + "id": "66831", + "name": "Rosport", + "state_id": 1515, + "state_code": "EC", + "country_id": 127, + "country_code": "LU", + "latitude": "49.80470000", + "longitude": "6.50532000" + }, + { + "id": "66856", + "name": "Waldbillig", + "state_id": 1515, + "state_code": "EC", + "country_id": 127, + "country_code": "LU", + "latitude": "49.79636000", + "longitude": "6.28431000" + }, + { + "id": "66725", + "name": "Aspelt", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.52278000", + "longitude": "6.22472000" + }, + { + "id": "66731", + "name": "Belvaux", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.51014000", + "longitude": "5.92414000" + }, + { + "id": "66733", + "name": "Bergem", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.52500000", + "longitude": "6.04222000" + }, + { + "id": "66736", + "name": "Bettembourg", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.51861000", + "longitude": "6.10278000" + }, + { + "id": "66755", + "name": "Crauthem", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.53556000", + "longitude": "6.14694000" + }, + { + "id": "66758", + "name": "Differdange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.52417000", + "longitude": "5.89139000" + }, + { + "id": "66760", + "name": "Dudelange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.48056000", + "longitude": "6.08750000" + }, + { + "id": "66765", + "name": "Esch-sur-Alzette", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.49583000", + "longitude": "5.98056000" + }, + { + "id": "66772", + "name": "Frisange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.51616000", + "longitude": "6.18858000" + }, + { + "id": "66787", + "name": "Kayl", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.48917000", + "longitude": "6.03972000" + }, + { + "id": "66795", + "name": "Lamadelaine", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.54639000", + "longitude": "5.85639000" + }, + { + "id": "66798", + "name": "Leudelange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.56833000", + "longitude": "6.06528000" + }, + { + "id": "66809", + "name": "Mondercange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.53306000", + "longitude": "5.98833000" + }, + { + "id": "66814", + "name": "Niedercorn", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.53611000", + "longitude": "5.89306000" + }, + { + "id": "66817", + "name": "Obercorn", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.51361000", + "longitude": "5.89611000" + }, + { + "id": "66822", + "name": "Pétange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.55833000", + "longitude": "5.88056000" + }, + { + "id": "66820", + "name": "Pontpierre", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.53639000", + "longitude": "6.02944000" + }, + { + "id": "66824", + "name": "Reckange-sur-Mess", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.56250000", + "longitude": "6.00889000" + }, + { + "id": "66828", + "name": "Rodange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.54639000", + "longitude": "5.84083000" + }, + { + "id": "66829", + "name": "Roeser", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.53721000", + "longitude": "6.14629000" + }, + { + "id": "66832", + "name": "Rumelange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.45964000", + "longitude": "6.03089000" + }, + { + "id": "66835", + "name": "Sanem", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.54806000", + "longitude": "5.92889000" + }, + { + "id": "66838", + "name": "Schifflange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.50639000", + "longitude": "6.01278000" + }, + { + "id": "66843", + "name": "Soleuvre", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.52148000", + "longitude": "5.93781000" + }, + { + "id": "66851", + "name": "Tétange", + "state_id": 1517, + "state_code": "ES", + "country_id": 127, + "country_code": "LU", + "latitude": "49.47583000", + "longitude": "6.04222000" + }, + { + "id": "66738", + "name": "Betzdorf", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.68333000", + "longitude": "6.35000000" + }, + { + "id": "66740", + "name": "Biwer", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.70605000", + "longitude": "6.37201000" + }, + { + "id": "66771", + "name": "Flaxweiler", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.66602000", + "longitude": "6.34321000" + }, + { + "id": "66775", + "name": "Gonderange", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.69537000", + "longitude": "6.24577000" + }, + { + "id": "66776", + "name": "Grevenmacher", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.67751000", + "longitude": "6.44022000" + }, + { + "id": "66786", + "name": "Junglinster", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.70722000", + "longitude": "6.25306000" + }, + { + "id": "66803", + "name": "Manternach", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.70278000", + "longitude": "6.42639000" + }, + { + "id": "66806", + "name": "Mertert", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.70261000", + "longitude": "6.47966000" + }, + { + "id": "66860", + "name": "Wasserbillig", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.71534000", + "longitude": "6.49861000" + }, + { + "id": "66867", + "name": "Wormeldange", + "state_id": 1525, + "state_code": "GR", + "country_id": 127, + "country_code": "LU", + "latitude": "49.61114000", + "longitude": "6.40546000" + }, + { + "id": "66724", + "name": "Alzingen", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.56500000", + "longitude": "6.16361000" + }, + { + "id": "66746", + "name": "Béreldange", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.65507000", + "longitude": "6.11874000" + }, + { + "id": "66734", + "name": "Bertrange", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.61111000", + "longitude": "6.05000000" + }, + { + "id": "66754", + "name": "Contern", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.58194000", + "longitude": "6.22667000" + }, + { + "id": "66768", + "name": "Fentange", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.56278000", + "longitude": "6.15389000" + }, + { + "id": "66780", + "name": "Heisdorf", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.67207000", + "longitude": "6.14202000" + }, + { + "id": "66781", + "name": "Helmsange", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.65278000", + "longitude": "6.14139000" + }, + { + "id": "66782", + "name": "Hesperange", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.56806000", + "longitude": "6.15139000" + }, + { + "id": "66785", + "name": "Itzig", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.58769000", + "longitude": "6.17065000" + }, + { + "id": "66790", + "name": "Kirchberg", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.62389000", + "longitude": "6.14944000" + }, + { + "id": "66801", + "name": "Luxembourg", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.61167000", + "longitude": "6.13000000" + }, + { + "id": "66812", + "name": "Müllendorf", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.68028000", + "longitude": "6.13000000" + }, + { + "id": "66811", + "name": "Moutfort", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.58528000", + "longitude": "6.25556000" + }, + { + "id": "66813", + "name": "Niederanven", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.65196000", + "longitude": "6.26199000" + }, + { + "id": "66818", + "name": "Olm", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.65722000", + "longitude": "6.00028000" + }, + { + "id": "66834", + "name": "Sandweiler", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.61471000", + "longitude": "6.22221000" + }, + { + "id": "66840", + "name": "Schrassig", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.61014000", + "longitude": "6.25903000" + }, + { + "id": "66841", + "name": "Schuttrange", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.62056000", + "longitude": "6.26861000" + }, + { + "id": "66846", + "name": "Steinsel", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.67694000", + "longitude": "6.12389000" + }, + { + "id": "66847", + "name": "Strassen", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.62056000", + "longitude": "6.07333000" + }, + { + "id": "66858", + "name": "Walferdange", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.66321000", + "longitude": "6.13224000" + }, + { + "id": "66861", + "name": "Weiler-la-Tour", + "state_id": 1527, + "state_code": "LU", + "country_id": 127, + "country_code": "LU", + "latitude": "49.54083000", + "longitude": "6.20083000" + }, + { + "id": "66739", + "name": "Bissen", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.78733000", + "longitude": "6.06540000" + }, + { + "id": "66741", + "name": "Boevange-sur-Attert", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.77256000", + "longitude": "6.01532000" + }, + { + "id": "66750", + "name": "Colmar", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.81028000", + "longitude": "6.09722000" + }, + { + "id": "66770", + "name": "Fischbach", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.74600000", + "longitude": "6.18702000" + }, + { + "id": "66779", + "name": "Heffingen", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.76907000", + "longitude": "6.24049000" + }, + { + "id": "66796", + "name": "Larochette", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.78362000", + "longitude": "6.21891000" + }, + { + "id": "66799", + "name": "Lintgen", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.72243000", + "longitude": "6.13016000" + }, + { + "id": "66800", + "name": "Lorentzweiler", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.70131000", + "longitude": "6.14234000" + }, + { + "id": "66805", + "name": "Mersch", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.74889000", + "longitude": "6.10611000" + }, + { + "id": "66816", + "name": "Nommern", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.78694000", + "longitude": "6.17472000" + }, + { + "id": "66830", + "name": "Rollingen", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.74167000", + "longitude": "6.11444000" + }, + { + "id": "66850", + "name": "Tuntange", + "state_id": 1522, + "state_code": "ME", + "country_id": 127, + "country_code": "LU", + "latitude": "49.71778000", + "longitude": "6.01028000" + }, + { + "id": "66730", + "name": "Beckerich", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.73056000", + "longitude": "5.88722000" + }, + { + "id": "66735", + "name": "Bettborn", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.79528000", + "longitude": "5.94111000" + }, + { + "id": "66751", + "name": "Commune de Préizerdaul", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.80114000", + "longitude": "5.93299000" + }, + { + "id": "66763", + "name": "Ell", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.76389000", + "longitude": "5.85722000" + }, + { + "id": "66777", + "name": "Grosbous", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.82778000", + "longitude": "5.96722000" + }, + { + "id": "66823", + "name": "Rambrouch", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.83083000", + "longitude": "5.84500000" + }, + { + "id": "66825", + "name": "Redange-sur-Attert", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.76437000", + "longitude": "5.88997000" + }, + { + "id": "66833", + "name": "Saeul", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.72722000", + "longitude": "5.98639000" + }, + { + "id": "66852", + "name": "Useldange", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.76972000", + "longitude": "5.98222000" + }, + { + "id": "66854", + "name": "Vichten", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.80306000", + "longitude": "6.00000000" + }, + { + "id": "66855", + "name": "Wahl", + "state_id": 1516, + "state_code": "RD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.83667000", + "longitude": "5.90639000" + }, + { + "id": "66744", + "name": "Bous", + "state_id": 1519, + "state_code": "RM", + "country_id": 127, + "country_code": "LU", + "latitude": "49.55389000", + "longitude": "6.32917000" + }, + { + "id": "66756", + "name": "Dalheim", + "state_id": 1519, + "state_code": "RM", + "country_id": 127, + "country_code": "LU", + "latitude": "49.54083000", + "longitude": "6.25972000" + }, + { + "id": "66797", + "name": "Lenningen", + "state_id": 1519, + "state_code": "RM", + "country_id": 127, + "country_code": "LU", + "latitude": "49.59861000", + "longitude": "6.36806000" + }, + { + "id": "66810", + "name": "Mondorf-les-Bains", + "state_id": 1519, + "state_code": "RM", + "country_id": 127, + "country_code": "LU", + "latitude": "49.50500000", + "longitude": "6.28111000" + }, + { + "id": "66827", + "name": "Remich", + "state_id": 1519, + "state_code": "RM", + "country_id": 127, + "country_code": "LU", + "latitude": "49.54500000", + "longitude": "6.36694000" + }, + { + "id": "66836", + "name": "Schengen", + "state_id": 1519, + "state_code": "RM", + "country_id": 127, + "country_code": "LU", + "latitude": "49.47000000", + "longitude": "6.36200000" + }, + { + "id": "66844", + "name": "Stadtbredimus", + "state_id": 1519, + "state_code": "RM", + "country_id": 127, + "country_code": "LU", + "latitude": "49.56278000", + "longitude": "6.36444000" + }, + { + "id": "66857", + "name": "Waldbredimus", + "state_id": 1519, + "state_code": "RM", + "country_id": 127, + "country_code": "LU", + "latitude": "49.55676000", + "longitude": "6.28789000" + }, + { + "id": "66821", + "name": "Putscheid", + "state_id": 1523, + "state_code": "VD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.96083000", + "longitude": "6.14306000" + }, + { + "id": "66848", + "name": "Tandel", + "state_id": 1523, + "state_code": "VD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.89750000", + "longitude": "6.18333000" + }, + { + "id": "66853", + "name": "Vianden", + "state_id": 1523, + "state_code": "VD", + "country_id": 127, + "country_code": "LU", + "latitude": "49.93500000", + "longitude": "6.20889000" + }, + { + "id": "66727", + "name": "Bavigne", + "state_id": 1526, + "state_code": "WI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.92194000", + "longitude": "5.84944000" + }, + { + "id": "66742", + "name": "Boulaide", + "state_id": 1526, + "state_code": "WI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.88778000", + "longitude": "5.81639000" + }, + { + "id": "66766", + "name": "Esch-sur-Sûre", + "state_id": 1526, + "state_code": "WI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.91139000", + "longitude": "5.93639000" + }, + { + "id": "66774", + "name": "Goesdorf", + "state_id": 1526, + "state_code": "WI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.92131000", + "longitude": "5.96601000" + }, + { + "id": "66789", + "name": "Kiischpelt", + "state_id": 1526, + "state_code": "WI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.97835000", + "longitude": "6.00760000" + }, + { + "id": "66794", + "name": "Lac de la Haute-Sûre", + "state_id": 1526, + "state_code": "WI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.91667000", + "longitude": "5.83333000" + }, + { + "id": "66863", + "name": "Wiltz", + "state_id": 1526, + "state_code": "WI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.96547000", + "longitude": "5.93390000" + }, + { + "id": "66864", + "name": "Wilwerwiltz", + "state_id": 1526, + "state_code": "WI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.98889000", + "longitude": "5.99917000" + }, + { + "id": "66866", + "name": "Winseler", + "state_id": 1526, + "state_code": "WI", + "country_id": 127, + "country_code": "LU", + "latitude": "49.96778000", + "longitude": "5.89028000" + }, + { + "id": "67574", + "name": "Арачиново", + "state_id": 656, + "state_code": "02", + "country_id": 129, + "country_code": "MK", + "latitude": "42.02639000", + "longitude": "21.56194000" + }, + { + "id": "67525", + "name": "Shtip", + "state_id": 661, + "state_code": "83", + "country_id": 129, + "country_code": "MK", + "latitude": "41.74583000", + "longitude": "22.19583000" + }, + { + "id": "67571", + "name": "Šuto Orizare", + "state_id": 680, + "state_code": "84", + "country_id": 129, + "country_code": "MK", + "latitude": "42.04000000", + "longitude": "21.42500000" + }, + { + "id": "67413", + "name": "Dobarce", + "state_id": 668, + "state_code": "30", + "country_id": 129, + "country_code": "MK", + "latitude": "41.95530000", + "longitude": "21.08875000" + }, + { + "id": "67467", + "name": "Larce", + "state_id": 668, + "state_code": "30", + "country_id": 129, + "country_code": "MK", + "latitude": "41.93319000", + "longitude": "21.12628000" + }, + { + "id": "67522", + "name": "Sedlarevo", + "state_id": 668, + "state_code": "30", + "country_id": 129, + "country_code": "MK", + "latitude": "41.88306000", + "longitude": "21.12750000" + }, + { + "id": "67536", + "name": "Strimnica", + "state_id": 668, + "state_code": "30", + "country_id": 129, + "country_code": "MK", + "latitude": "41.96719000", + "longitude": "21.03598000" + }, + { + "id": "67563", + "name": "Zelino", + "state_id": 668, + "state_code": "30", + "country_id": 129, + "country_code": "MK", + "latitude": "41.98028000", + "longitude": "21.06417000" + }, + { + "id": "67567", + "name": "Čaška", + "state_id": 676, + "state_code": "80", + "country_id": 129, + "country_code": "MK", + "latitude": "41.65056000", + "longitude": "21.66222000" + }, + { + "id": "67395", + "name": "Bogomila", + "state_id": 676, + "state_code": "80", + "country_id": 129, + "country_code": "MK", + "latitude": "41.59306000", + "longitude": "21.47167000" + }, + { + "id": "67566", + "name": "Čair", + "state_id": 704, + "state_code": "79", + "country_id": 129, + "country_code": "MK", + "latitude": "42.01528000", + "longitude": "21.44111000" + }, + { + "id": "67569", + "name": "Češinovo", + "state_id": 644, + "state_code": "81", + "country_id": 129, + "country_code": "MK", + "latitude": "41.87148000", + "longitude": "22.28961000" + }, + { + "id": "67494", + "name": "Oblesevo", + "state_id": 644, + "state_code": "81", + "country_id": 129, + "country_code": "MK", + "latitude": "41.88333000", + "longitude": "22.33389000" + }, + { + "id": "67582", + "name": "Чучер - Сандево", + "state_id": 715, + "state_code": "82", + "country_id": 129, + "country_code": "MK", + "latitude": "42.10361000", + "longitude": "21.38222000" + }, + { + "id": "67390", + "name": "Berovo", + "state_id": 716, + "state_code": "03", + "country_id": 129, + "country_code": "MK", + "latitude": "41.70306000", + "longitude": "22.85778000" + }, + { + "id": "67519", + "name": "Rusinovo", + "state_id": 716, + "state_code": "03", + "country_id": 129, + "country_code": "MK", + "latitude": "41.68728000", + "longitude": "22.80849000" + }, + { + "id": "67556", + "name": "Vladimirovo", + "state_id": 716, + "state_code": "03", + "country_id": 129, + "country_code": "MK", + "latitude": "41.71000000", + "longitude": "22.79278000" + }, + { + "id": "67391", + "name": "Bistrica", + "state_id": 679, + "state_code": "04", + "country_id": 129, + "country_code": "MK", + "latitude": "40.97892000", + "longitude": "21.36580000" + }, + { + "id": "67392", + "name": "Bitola", + "state_id": 679, + "state_code": "04", + "country_id": 129, + "country_code": "MK", + "latitude": "41.03143000", + "longitude": "21.33474000" + }, + { + "id": "67403", + "name": "Capari", + "state_id": 679, + "state_code": "04", + "country_id": 129, + "country_code": "MK", + "latitude": "41.05656000", + "longitude": "21.17884000" + }, + { + "id": "67420", + "name": "Dolno Orizari", + "state_id": 679, + "state_code": "04", + "country_id": 129, + "country_code": "MK", + "latitude": "41.05028000", + "longitude": "21.37944000" + }, + { + "id": "67430", + "name": "Gorno Orizari", + "state_id": 679, + "state_code": "04", + "country_id": 129, + "country_code": "MK", + "latitude": "41.05188000", + "longitude": "21.34548000" + }, + { + "id": "67464", + "name": "Kukurečani", + "state_id": 679, + "state_code": "04", + "country_id": 129, + "country_code": "MK", + "latitude": "41.09562000", + "longitude": "21.32454000" + }, + { + "id": "67472", + "name": "Logovardi", + "state_id": 679, + "state_code": "04", + "country_id": 129, + "country_code": "MK", + "latitude": "41.03096000", + "longitude": "21.40967000" + }, + { + "id": "67394", + "name": "Bogdanci", + "state_id": 649, + "state_code": "05", + "country_id": 129, + "country_code": "MK", + "latitude": "41.20306000", + "longitude": "22.57556000" + }, + { + "id": "67534", + "name": "Stojakovo", + "state_id": 649, + "state_code": "05", + "country_id": 129, + "country_code": "MK", + "latitude": "41.15556000", + "longitude": "22.57750000" + }, + { + "id": "67396", + "name": "Bogovinje", + "state_id": 721, + "state_code": "06", + "country_id": 129, + "country_code": "MK", + "latitude": "41.92361000", + "longitude": "20.91361000" + }, + { + "id": "67421", + "name": "Dolno Palčište", + "state_id": 721, + "state_code": "06", + "country_id": 129, + "country_code": "MK", + "latitude": "41.96859000", + "longitude": "20.92899000" + }, + { + "id": "67434", + "name": "Gradec", + "state_id": 721, + "state_code": "06", + "country_id": 129, + "country_code": "MK", + "latitude": "41.89611000", + "longitude": "20.90417000" + }, + { + "id": "67447", + "name": "Kamenjane", + "state_id": 721, + "state_code": "06", + "country_id": 129, + "country_code": "MK", + "latitude": "41.94568000", + "longitude": "20.92894000" + }, + { + "id": "67398", + "name": "Bosilovo", + "state_id": 652, + "state_code": "07", + "country_id": 129, + "country_code": "MK", + "latitude": "41.44056000", + "longitude": "22.72778000" + }, + { + "id": "67441", + "name": "Ilovica", + "state_id": 652, + "state_code": "07", + "country_id": 129, + "country_code": "MK", + "latitude": "41.47224000", + "longitude": "22.80480000" + }, + { + "id": "67523", + "name": "Sekirnik", + "state_id": 652, + "state_code": "07", + "country_id": 129, + "country_code": "MK", + "latitude": "41.43999000", + "longitude": "22.79536000" + }, + { + "id": "67568", + "name": "Čelopek", + "state_id": 660, + "state_code": "08", + "country_id": 129, + "country_code": "MK", + "latitude": "41.93167000", + "longitude": "21.01333000" + }, + { + "id": "67399", + "name": "Brvenica", + "state_id": 660, + "state_code": "08", + "country_id": 129, + "country_code": "MK", + "latitude": "41.96722000", + "longitude": "20.98083000" + }, + { + "id": "67439", + "name": "Gurgurnica", + "state_id": 660, + "state_code": "08", + "country_id": 129, + "country_code": "MK", + "latitude": "41.84508000", + "longitude": "21.10538000" + }, + { + "id": "67483", + "name": "Miletino", + "state_id": 660, + "state_code": "08", + "country_id": 129, + "country_code": "MK", + "latitude": "41.90753000", + "longitude": "21.01601000" + }, + { + "id": "67401", + "name": "Butel", + "state_id": 694, + "state_code": "09", + "country_id": 129, + "country_code": "MK", + "latitude": "42.03083000", + "longitude": "21.44667000" + }, + { + "id": "67512", + "name": "Radishani", + "state_id": 694, + "state_code": "09", + "country_id": 129, + "country_code": "MK", + "latitude": "42.06111000", + "longitude": "21.44778000" + }, + { + "id": "67405", + "name": "Centar Župa", + "state_id": 720, + "state_code": "78", + "country_id": 129, + "country_code": "MK", + "latitude": "41.47849000", + "longitude": "20.55945000" + }, + { + "id": "67388", + "name": "Belčišta", + "state_id": 645, + "state_code": "22", + "country_id": 129, + "country_code": "MK", + "latitude": "41.30278000", + "longitude": "20.83028000" + }, + { + "id": "67481", + "name": "Mešeišta", + "state_id": 645, + "state_code": "22", + "country_id": 129, + "country_code": "MK", + "latitude": "41.23814000", + "longitude": "20.77414000" + }, + { + "id": "67408", + "name": "Delcevo", + "state_id": 695, + "state_code": "23", + "country_id": 129, + "country_code": "MK", + "latitude": "41.96722000", + "longitude": "22.76944000" + }, + { + "id": "67410", + "name": "Demir Hisar", + "state_id": 687, + "state_code": "25", + "country_id": 129, + "country_code": "MK", + "latitude": "41.22097000", + "longitude": "21.20302000" + }, + { + "id": "67528", + "name": "Slepče", + "state_id": 687, + "state_code": "25", + "country_id": 129, + "country_code": "MK", + "latitude": "41.23333000", + "longitude": "21.17500000" + }, + { + "id": "67529", + "name": "Sopotnica", + "state_id": 687, + "state_code": "25", + "country_id": 129, + "country_code": "MK", + "latitude": "41.29594000", + "longitude": "21.15357000" + }, + { + "id": "67411", + "name": "Demir Kapija", + "state_id": 655, + "state_code": "24", + "country_id": 129, + "country_code": "MK", + "latitude": "41.40613000", + "longitude": "22.24631000" + }, + { + "id": "67533", + "name": "Star Dojran", + "state_id": 697, + "state_code": "26", + "country_id": 129, + "country_code": "MK", + "latitude": "41.18647000", + "longitude": "22.72030000" + }, + { + "id": "67572", + "name": "Žitoše", + "state_id": 675, + "state_code": "27", + "country_id": 129, + "country_code": "MK", + "latitude": "41.41991000", + "longitude": "21.29078000" + }, + { + "id": "67407", + "name": "Crnilište", + "state_id": 675, + "state_code": "27", + "country_id": 129, + "country_code": "MK", + "latitude": "41.53025000", + "longitude": "21.41416000" + }, + { + "id": "67412", + "name": "Desovo", + "state_id": 675, + "state_code": "27", + "country_id": 129, + "country_code": "MK", + "latitude": "41.46278000", + "longitude": "21.49111000" + }, + { + "id": "67418", + "name": "Dolneni", + "state_id": 675, + "state_code": "27", + "country_id": 129, + "country_code": "MK", + "latitude": "41.42579000", + "longitude": "21.45402000" + }, + { + "id": "67468", + "name": "Lažani", + "state_id": 675, + "state_code": "27", + "country_id": 129, + "country_code": "MK", + "latitude": "41.44222000", + "longitude": "21.31583000" + }, + { + "id": "67406", + "name": "Cresevo", + "state_id": 707, + "state_code": "17", + "country_id": 129, + "country_code": "MK", + "latitude": "42.05083000", + "longitude": "21.50972000" + }, + { + "id": "67427", + "name": "Gevgelija", + "state_id": 648, + "state_code": "18", + "country_id": 129, + "country_code": "MK", + "latitude": "41.14166000", + "longitude": "22.50141000" + }, + { + "id": "67484", + "name": "Miravci", + "state_id": 648, + "state_code": "18", + "country_id": 129, + "country_code": "MK", + "latitude": "41.30925000", + "longitude": "22.43641000" + }, + { + "id": "67428", + "name": "Gjorče Petro", + "state_id": 722, + "state_code": "29", + "country_id": 129, + "country_code": "MK", + "latitude": "42.00778000", + "longitude": "21.35306000" + }, + { + "id": "67404", + "name": "Cegrane", + "state_id": 693, + "state_code": "19", + "country_id": 129, + "country_code": "MK", + "latitude": "41.83889000", + "longitude": "20.97583000" + }, + { + "id": "67417", + "name": "Dolna Banjica", + "state_id": 693, + "state_code": "19", + "country_id": 129, + "country_code": "MK", + "latitude": "41.78611000", + "longitude": "20.90611000" + }, + { + "id": "67426", + "name": "Forino", + "state_id": 693, + "state_code": "19", + "country_id": 129, + "country_code": "MK", + "latitude": "41.82334000", + "longitude": "20.96174000" + }, + { + "id": "67433", + "name": "Gostivar", + "state_id": 693, + "state_code": "19", + "country_id": 129, + "country_code": "MK", + "latitude": "41.79601000", + "longitude": "20.90819000" + }, + { + "id": "67531", + "name": "Srbinovo", + "state_id": 693, + "state_code": "19", + "country_id": 129, + "country_code": "MK", + "latitude": "41.70586000", + "longitude": "20.95859000" + }, + { + "id": "67560", + "name": "Vrutok", + "state_id": 693, + "state_code": "19", + "country_id": 129, + "country_code": "MK", + "latitude": "41.76861000", + "longitude": "20.83917000" + }, + { + "id": "67436", + "name": "Gradsko", + "state_id": 708, + "state_code": "20", + "country_id": 129, + "country_code": "MK", + "latitude": "41.57750000", + "longitude": "21.94278000" + }, + { + "id": "67397", + "name": "Bojane", + "state_id": 684, + "state_code": "85", + "country_id": 129, + "country_code": "MK", + "latitude": "42.00009000", + "longitude": "21.19265000" + }, + { + "id": "67423", + "name": "Dračevo", + "state_id": 684, + "state_code": "85", + "country_id": 129, + "country_code": "MK", + "latitude": "41.93667000", + "longitude": "21.52167000" + }, + { + "id": "67471", + "name": "Ljubin", + "state_id": 684, + "state_code": "85", + "country_id": 129, + "country_code": "MK", + "latitude": "42.00139000", + "longitude": "21.30917000" + }, + { + "id": "67521", + "name": "Saraj", + "state_id": 684, + "state_code": "85", + "country_id": 129, + "country_code": "MK", + "latitude": "42.00000000", + "longitude": "21.32778000" + }, + { + "id": "67546", + "name": "Usje", + "state_id": 684, + "state_code": "85", + "country_id": 129, + "country_code": "MK", + "latitude": "41.95871000", + "longitude": "21.45835000" + }, + { + "id": "67440", + "name": "Ilinden", + "state_id": 690, + "state_code": "34", + "country_id": 129, + "country_code": "MK", + "latitude": "41.99451000", + "longitude": "21.58002000" + }, + { + "id": "67446", + "name": "Kadino", + "state_id": 690, + "state_code": "34", + "country_id": 129, + "country_code": "MK", + "latitude": "41.96889000", + "longitude": "21.60139000" + }, + { + "id": "67478", + "name": "Marino", + "state_id": 690, + "state_code": "34", + "country_id": 129, + "country_code": "MK", + "latitude": "41.98776000", + "longitude": "21.59148000" + }, + { + "id": "67482", + "name": "Miladinovci", + "state_id": 690, + "state_code": "34", + "country_id": 129, + "country_code": "MK", + "latitude": "41.98029000", + "longitude": "21.64982000" + }, + { + "id": "67573", + "name": "Јурумлери", + "state_id": 690, + "state_code": "34", + "country_id": 129, + "country_code": "MK", + "latitude": "41.96722000", + "longitude": "21.55694000" + }, + { + "id": "67575", + "name": "Идризово", + "state_id": 690, + "state_code": "34", + "country_id": 129, + "country_code": "MK", + "latitude": "41.96083000", + "longitude": "21.57556000" + }, + { + "id": "67445", + "name": "Jegunovce", + "state_id": 678, + "state_code": "35", + "country_id": 129, + "country_code": "MK", + "latitude": "42.07238000", + "longitude": "21.12367000" + }, + { + "id": "67559", + "name": "Vratnica", + "state_id": 678, + "state_code": "35", + "country_id": 129, + "country_code": "MK", + "latitude": "42.14333000", + "longitude": "21.11694000" + }, + { + "id": "67449", + "name": "Karbinci", + "state_id": 674, + "state_code": "37", + "country_id": 129, + "country_code": "MK", + "latitude": "41.81758000", + "longitude": "22.23529000" + }, + { + "id": "67526", + "name": "Skopje", + "state_id": 681, + "state_code": "38", + "country_id": 129, + "country_code": "MK", + "latitude": "41.99646000", + "longitude": "21.43141000" + }, + { + "id": "67450", + "name": "Kavadarci", + "state_id": 713, + "state_code": "36", + "country_id": 129, + "country_code": "MK", + "latitude": "41.43306000", + "longitude": "22.01194000" + }, + { + "id": "67550", + "name": "Vataša", + "state_id": 713, + "state_code": "36", + "country_id": 129, + "country_code": "MK", + "latitude": "41.41694000", + "longitude": "22.01889000" + }, + { + "id": "67424", + "name": "Drugovo", + "state_id": 688, + "state_code": "40", + "country_id": 129, + "country_code": "MK", + "latitude": "41.48490000", + "longitude": "20.92636000" + }, + { + "id": "67452", + "name": "Kičevo", + "state_id": 688, + "state_code": "40", + "country_id": 129, + "country_code": "MK", + "latitude": "41.51267000", + "longitude": "20.95886000" + }, + { + "id": "67530", + "name": "Srbica", + "state_id": 688, + "state_code": "40", + "country_id": 129, + "country_code": "MK", + "latitude": "41.58672000", + "longitude": "21.03027000" + }, + { + "id": "67535", + "name": "Strelci", + "state_id": 688, + "state_code": "40", + "country_id": 129, + "country_code": "MK", + "latitude": "41.54046000", + "longitude": "21.00563000" + }, + { + "id": "67545", + "name": "Tuin", + "state_id": 688, + "state_code": "40", + "country_id": 129, + "country_code": "MK", + "latitude": "41.61944000", + "longitude": "21.04528000" + }, + { + "id": "67557", + "name": "Vraneštica", + "state_id": 688, + "state_code": "40", + "country_id": 129, + "country_code": "MK", + "latitude": "41.44496000", + "longitude": "21.02683000" + }, + { + "id": "67561", + "name": "Zajas", + "state_id": 688, + "state_code": "40", + "country_id": 129, + "country_code": "MK", + "latitude": "41.60722000", + "longitude": "20.93833000" + }, + { + "id": "67451", + "name": "Kisela Voda", + "state_id": 686, + "state_code": "39", + "country_id": 129, + "country_code": "MK", + "latitude": "41.94889000", + "longitude": "21.50278000" + }, + { + "id": "67453", + "name": "Kochani", + "state_id": 723, + "state_code": "42", + "country_id": 129, + "country_code": "MK", + "latitude": "41.91639000", + "longitude": "22.41278000" + }, + { + "id": "67501", + "name": "Orizari", + "state_id": 723, + "state_code": "42", + "country_id": 129, + "country_code": "MK", + "latitude": "41.92262000", + "longitude": "22.44628000" + }, + { + "id": "67455", + "name": "Konče", + "state_id": 665, + "state_code": "41", + "country_id": 129, + "country_code": "MK", + "latitude": "41.49511000", + "longitude": "22.38359000" + }, + { + "id": "67458", + "name": "Kratovo", + "state_id": 641, + "state_code": "43", + "country_id": 129, + "country_code": "MK", + "latitude": "42.07838000", + "longitude": "22.18070000" + }, + { + "id": "67459", + "name": "Kriva Palanka", + "state_id": 677, + "state_code": "44", + "country_id": 129, + "country_code": "MK", + "latitude": "42.20088000", + "longitude": "22.33244000" + }, + { + "id": "67460", + "name": "Krivogashtani", + "state_id": 647, + "state_code": "45", + "country_id": 129, + "country_code": "MK", + "latitude": "41.33611000", + "longitude": "21.33306000" + }, + { + "id": "67495", + "name": "Obršani", + "state_id": 647, + "state_code": "45", + "country_id": 129, + "country_code": "MK", + "latitude": "41.28168000", + "longitude": "21.36150000" + }, + { + "id": "67576", + "name": "Клечовце", + "state_id": 647, + "state_code": "45", + "country_id": 129, + "country_code": "MK", + "latitude": "42.11611000", + "longitude": "21.85722000" + }, + { + "id": "67402", + "name": "Bučin", + "state_id": 714, + "state_code": "46", + "country_id": 129, + "country_code": "MK", + "latitude": "41.27377000", + "longitude": "21.31692000" + }, + { + "id": "67461", + "name": "Krusevo", + "state_id": 714, + "state_code": "46", + "country_id": 129, + "country_code": "MK", + "latitude": "41.36889000", + "longitude": "21.24889000" + }, + { + "id": "67387", + "name": "Bedinje", + "state_id": 683, + "state_code": "47", + "country_id": 129, + "country_code": "MK", + "latitude": "42.14167000", + "longitude": "21.69639000" + }, + { + "id": "67465", + "name": "Kumanovo", + "state_id": 683, + "state_code": "47", + "country_id": 129, + "country_code": "MK", + "latitude": "42.13222000", + "longitude": "21.71444000" + }, + { + "id": "67516", + "name": "Romanovci", + "state_id": 683, + "state_code": "47", + "country_id": 129, + "country_code": "MK", + "latitude": "42.09472000", + "longitude": "21.69306000" + }, + { + "id": "67443", + "name": "Izvor", + "state_id": 659, + "state_code": "48", + "country_id": 129, + "country_code": "MK", + "latitude": "42.20322000", + "longitude": "21.57812000" + }, + { + "id": "67469", + "name": "Lipkovo", + "state_id": 659, + "state_code": "48", + "country_id": 129, + "country_code": "MK", + "latitude": "42.15639000", + "longitude": "21.58528000" + }, + { + "id": "67473", + "name": "Lojane", + "state_id": 659, + "state_code": "48", + "country_id": 129, + "country_code": "MK", + "latitude": "42.23276000", + "longitude": "21.66550000" + }, + { + "id": "67480", + "name": "Matejce", + "state_id": 659, + "state_code": "48", + "country_id": 129, + "country_code": "MK", + "latitude": "42.12556000", + "longitude": "21.59778000" + }, + { + "id": "67502", + "name": "Otlja", + "state_id": 659, + "state_code": "48", + "country_id": 129, + "country_code": "MK", + "latitude": "42.14315000", + "longitude": "21.58675000" + }, + { + "id": "67547", + "name": "Vaksince", + "state_id": 659, + "state_code": "48", + "country_id": 129, + "country_code": "MK", + "latitude": "42.20611000", + "longitude": "21.66306000" + }, + { + "id": "67579", + "name": "Слупчане", + "state_id": 659, + "state_code": "48", + "country_id": 129, + "country_code": "MK", + "latitude": "42.17333000", + "longitude": "21.62778000" + }, + { + "id": "67474", + "name": "Lozovo", + "state_id": 705, + "state_code": "49", + "country_id": 129, + "country_code": "MK", + "latitude": "41.78389000", + "longitude": "21.90556000" + }, + { + "id": "67476", + "name": "Makedonska Kamenica", + "state_id": 701, + "state_code": "51", + "country_id": 129, + "country_code": "MK", + "latitude": "42.02079000", + "longitude": "22.58760000" + }, + { + "id": "67477", + "name": "Makedonski Brod", + "state_id": 692, + "state_code": "52", + "country_id": 129, + "country_code": "MK", + "latitude": "41.51361000", + "longitude": "21.21528000" + }, + { + "id": "67520", + "name": "Samokov", + "state_id": 692, + "state_code": "52", + "country_id": 129, + "country_code": "MK", + "latitude": "41.68331000", + "longitude": "21.14625000" + }, + { + "id": "67518", + "name": "Rostusa", + "state_id": 669, + "state_code": "50", + "country_id": 129, + "country_code": "MK", + "latitude": "41.61000000", + "longitude": "20.60000000" + }, + { + "id": "67389", + "name": "Beranci", + "state_id": 653, + "state_code": "53", + "country_id": 129, + "country_code": "MK", + "latitude": "41.15969000", + "longitude": "21.35963000" + }, + { + "id": "67416", + "name": "Dobruševo", + "state_id": 653, + "state_code": "53", + "country_id": 129, + "country_code": "MK", + "latitude": "41.16861000", + "longitude": "21.48250000" + }, + { + "id": "67422", + "name": "Dolno Srpci", + "state_id": 653, + "state_code": "53", + "country_id": 129, + "country_code": "MK", + "latitude": "41.17480000", + "longitude": "21.36464000" + }, + { + "id": "67486", + "name": "Mogila", + "state_id": 653, + "state_code": "53", + "country_id": 129, + "country_code": "MK", + "latitude": "41.10833000", + "longitude": "21.37861000" + }, + { + "id": "67490", + "name": "Negotino", + "state_id": 664, + "state_code": "54", + "country_id": 129, + "country_code": "MK", + "latitude": "41.48456000", + "longitude": "22.09056000" + }, + { + "id": "67492", + "name": "Novaci", + "state_id": 696, + "state_code": "55", + "country_id": 129, + "country_code": "MK", + "latitude": "41.04197000", + "longitude": "21.45866000" + }, + { + "id": "67493", + "name": "Novo Selo", + "state_id": 718, + "state_code": "56", + "country_id": 129, + "country_code": "MK", + "latitude": "41.41486000", + "longitude": "22.88164000" + }, + { + "id": "67540", + "name": "Sušica", + "state_id": 718, + "state_code": "56", + "country_id": 129, + "country_code": "MK", + "latitude": "41.43982000", + "longitude": "22.83676000" + }, + { + "id": "67456", + "name": "Kosel", + "state_id": 699, + "state_code": "58", + "country_id": 129, + "country_code": "MK", + "latitude": "41.17444000", + "longitude": "20.83556000" + }, + { + "id": "67496", + "name": "Ohrid", + "state_id": 699, + "state_code": "58", + "country_id": 129, + "country_code": "MK", + "latitude": "41.11722000", + "longitude": "20.80194000" + }, + { + "id": "67497", + "name": "Ohrid Opština", + "state_id": 699, + "state_code": "58", + "country_id": 129, + "country_code": "MK", + "latitude": "41.16667000", + "longitude": "20.83333000" + }, + { + "id": "67503", + "name": "Pehčevo", + "state_id": 685, + "state_code": "60", + "country_id": 129, + "country_code": "MK", + "latitude": "41.76226000", + "longitude": "22.88921000" + }, + { + "id": "67532", + "name": "Sredno Konjare", + "state_id": 698, + "state_code": "59", + "country_id": 129, + "country_code": "MK", + "latitude": "41.95743000", + "longitude": "21.71494000" + }, + { + "id": "67577", + "name": "Петровец", + "state_id": 698, + "state_code": "59", + "country_id": 129, + "country_code": "MK", + "latitude": "41.93889000", + "longitude": "21.61500000" + }, + { + "id": "67470", + "name": "Lisičani", + "state_id": 670, + "state_code": "61", + "country_id": 129, + "country_code": "MK", + "latitude": "41.46139000", + "longitude": "21.05444000" + }, + { + "id": "67506", + "name": "Plasnica", + "state_id": 670, + "state_code": "61", + "country_id": 129, + "country_code": "MK", + "latitude": "41.46722000", + "longitude": "21.12306000" + }, + { + "id": "67448", + "name": "Kanatlarci", + "state_id": 666, + "state_code": "62", + "country_id": 129, + "country_code": "MK", + "latitude": "41.21028000", + "longitude": "21.50333000" + }, + { + "id": "67479", + "name": "Markov Grad", + "state_id": 666, + "state_code": "62", + "country_id": 129, + "country_code": "MK", + "latitude": "41.35722000", + "longitude": "21.53250000" + }, + { + "id": "67509", + "name": "Prilep", + "state_id": 666, + "state_code": "62", + "country_id": 129, + "country_code": "MK", + "latitude": "41.34514000", + "longitude": "21.55504000" + }, + { + "id": "67544", + "name": "Topolčani", + "state_id": 666, + "state_code": "62", + "country_id": 129, + "country_code": "MK", + "latitude": "41.22772000", + "longitude": "21.43113000" + }, + { + "id": "67510", + "name": "Probishtip", + "state_id": 646, + "state_code": "63", + "country_id": 129, + "country_code": "MK", + "latitude": "42.00306000", + "longitude": "22.17861000" + }, + { + "id": "67564", + "name": "Zletovo", + "state_id": 646, + "state_code": "63", + "country_id": 129, + "country_code": "MK", + "latitude": "41.98861000", + "longitude": "22.23611000" + }, + { + "id": "67499", + "name": "Oraovica", + "state_id": 709, + "state_code": "64", + "country_id": 129, + "country_code": "MK", + "latitude": "41.62583000", + "longitude": "22.51333000" + }, + { + "id": "67507", + "name": "Podareš", + "state_id": 709, + "state_code": "64", + "country_id": 129, + "country_code": "MK", + "latitude": "41.61389000", + "longitude": "22.54222000" + }, + { + "id": "67514", + "name": "Radovis", + "state_id": 709, + "state_code": "64", + "country_id": 129, + "country_code": "MK", + "latitude": "41.63833000", + "longitude": "22.46472000" + }, + { + "id": "67578", + "name": "Ранковце", + "state_id": 717, + "state_code": "65", + "country_id": 129, + "country_code": "MK", + "latitude": "42.16964000", + "longitude": "22.11617000" + }, + { + "id": "67437", + "name": "Grnčari", + "state_id": 712, + "state_code": "66", + "country_id": 129, + "country_code": "MK", + "latitude": "41.01722000", + "longitude": "21.05333000" + }, + { + "id": "67444", + "name": "Jankovec", + "state_id": 712, + "state_code": "66", + "country_id": 129, + "country_code": "MK", + "latitude": "41.11028000", + "longitude": "21.01139000" + }, + { + "id": "67457", + "name": "Krani", + "state_id": 712, + "state_code": "66", + "country_id": 129, + "country_code": "MK", + "latitude": "40.93934000", + "longitude": "21.10911000" + }, + { + "id": "67515", + "name": "Resen", + "state_id": 712, + "state_code": "66", + "country_id": 129, + "country_code": "MK", + "latitude": "41.08934000", + "longitude": "21.01092000" + }, + { + "id": "67517", + "name": "Rosoman", + "state_id": 691, + "state_code": "67", + "country_id": 129, + "country_code": "MK", + "latitude": "41.51671000", + "longitude": "21.94585000" + }, + { + "id": "67400", + "name": "Bukovik", + "state_id": 667, + "state_code": "68", + "country_id": 129, + "country_code": "MK", + "latitude": "41.96833000", + "longitude": "21.23694000" + }, + { + "id": "67438", + "name": "Grčec", + "state_id": 667, + "state_code": "68", + "country_id": 129, + "country_code": "MK", + "latitude": "41.98806000", + "longitude": "21.33028000" + }, + { + "id": "67454", + "name": "Kondovo", + "state_id": 667, + "state_code": "68", + "country_id": 129, + "country_code": "MK", + "latitude": "42.01167000", + "longitude": "21.31361000" + }, + { + "id": "67462", + "name": "Krušopek", + "state_id": 667, + "state_code": "68", + "country_id": 129, + "country_code": "MK", + "latitude": "41.97833000", + "longitude": "21.35444000" + }, + { + "id": "67580", + "name": "Сопиште", + "state_id": 719, + "state_code": "70", + "country_id": 129, + "country_code": "MK", + "latitude": "41.95472000", + "longitude": "21.42750000" + }, + { + "id": "67581", + "name": "Старо Нагоричане", + "state_id": 643, + "state_code": "71", + "country_id": 129, + "country_code": "MK", + "latitude": "42.19806000", + "longitude": "21.82861000" + }, + { + "id": "67409", + "name": "Delogožda", + "state_id": 700, + "state_code": "72", + "country_id": 129, + "country_code": "MK", + "latitude": "41.25728000", + "longitude": "20.72180000" + }, + { + "id": "67466", + "name": "Labunista", + "state_id": 700, + "state_code": "72", + "country_id": 129, + "country_code": "MK", + "latitude": "41.26861000", + "longitude": "20.59611000" + }, + { + "id": "67475", + "name": "Lukovo", + "state_id": 700, + "state_code": "72", + "country_id": 129, + "country_code": "MK", + "latitude": "41.35339000", + "longitude": "20.60637000" + }, + { + "id": "67485", + "name": "Mislesevo", + "state_id": 700, + "state_code": "72", + "country_id": 129, + "country_code": "MK", + "latitude": "41.18500000", + "longitude": "20.70861000" + }, + { + "id": "67498", + "name": "Oktisi", + "state_id": 700, + "state_code": "72", + "country_id": 129, + "country_code": "MK", + "latitude": "41.23250000", + "longitude": "20.60722000" + }, + { + "id": "67513", + "name": "Radolista", + "state_id": 700, + "state_code": "72", + "country_id": 129, + "country_code": "MK", + "latitude": "41.16417000", + "longitude": "20.62333000" + }, + { + "id": "67537", + "name": "Struga", + "state_id": 700, + "state_code": "72", + "country_id": 129, + "country_code": "MK", + "latitude": "41.17799000", + "longitude": "20.67784000" + }, + { + "id": "67552", + "name": "Velesta", + "state_id": 700, + "state_code": "72", + "country_id": 129, + "country_code": "MK", + "latitude": "41.24083000", + "longitude": "20.64389000" + }, + { + "id": "67463", + "name": "Kuklis", + "state_id": 710, + "state_code": "73", + "country_id": 129, + "country_code": "MK", + "latitude": "41.40528000", + "longitude": "22.66528000" + }, + { + "id": "67488", + "name": "Murtino", + "state_id": 710, + "state_code": "73", + "country_id": 129, + "country_code": "MK", + "latitude": "41.41537000", + "longitude": "22.72589000" + }, + { + "id": "67538", + "name": "Strumica", + "state_id": 710, + "state_code": "73", + "country_id": 129, + "country_code": "MK", + "latitude": "41.43750000", + "longitude": "22.64333000" + }, + { + "id": "67553", + "name": "Veljusa", + "state_id": 710, + "state_code": "73", + "country_id": 129, + "country_code": "MK", + "latitude": "41.47611000", + "longitude": "22.56750000" + }, + { + "id": "67386", + "name": "Batinci", + "state_id": 711, + "state_code": "74", + "country_id": 129, + "country_code": "MK", + "latitude": "41.91909000", + "longitude": "21.47978000" + }, + { + "id": "67419", + "name": "Dolno Količani", + "state_id": 711, + "state_code": "74", + "country_id": 129, + "country_code": "MK", + "latitude": "41.88639000", + "longitude": "21.48556000" + }, + { + "id": "67487", + "name": "Morani", + "state_id": 711, + "state_code": "74", + "country_id": 129, + "country_code": "MK", + "latitude": "41.90978000", + "longitude": "21.54997000" + }, + { + "id": "67539", + "name": "Studeničane", + "state_id": 711, + "state_code": "74", + "country_id": 129, + "country_code": "MK", + "latitude": "41.92208000", + "longitude": "21.53483000" + }, + { + "id": "67432", + "name": "Gorobinci", + "state_id": 640, + "state_code": "69", + "country_id": 129, + "country_code": "MK", + "latitude": "41.87507000", + "longitude": "21.87599000" + }, + { + "id": "67541", + "name": "Sveti Nikole", + "state_id": 640, + "state_code": "69", + "country_id": 129, + "country_code": "MK", + "latitude": "41.86956000", + "longitude": "21.95274000" + }, + { + "id": "67491", + "name": "Nerašte", + "state_id": 654, + "state_code": "75", + "country_id": 129, + "country_code": "MK", + "latitude": "42.10711000", + "longitude": "21.10810000" + }, + { + "id": "67500", + "name": "Orashac", + "state_id": 654, + "state_code": "75", + "country_id": 129, + "country_code": "MK", + "latitude": "42.06250000", + "longitude": "21.79972000" + }, + { + "id": "67511", + "name": "Pršovce", + "state_id": 654, + "state_code": "75", + "country_id": 129, + "country_code": "MK", + "latitude": "42.08336000", + "longitude": "21.05994000" + }, + { + "id": "67527", + "name": "Slatino", + "state_id": 654, + "state_code": "75", + "country_id": 129, + "country_code": "MK", + "latitude": "42.06784000", + "longitude": "21.03902000" + }, + { + "id": "67542", + "name": "Tearce", + "state_id": 654, + "state_code": "75", + "country_id": 129, + "country_code": "MK", + "latitude": "42.07666000", + "longitude": "21.05310000" + }, + { + "id": "67570", + "name": "Šipkovica", + "state_id": 663, + "state_code": "76", + "country_id": 129, + "country_code": "MK", + "latitude": "42.03500000", + "longitude": "20.91556000" + }, + { + "id": "67425", + "name": "Džepčište", + "state_id": 663, + "state_code": "76", + "country_id": 129, + "country_code": "MK", + "latitude": "42.03287000", + "longitude": "20.99817000" + }, + { + "id": "67415", + "name": "Dobrošte", + "state_id": 663, + "state_code": "76", + "country_id": 129, + "country_code": "MK", + "latitude": "42.10333000", + "longitude": "21.07778000" + }, + { + "id": "67429", + "name": "Golema Rečica", + "state_id": 663, + "state_code": "76", + "country_id": 129, + "country_code": "MK", + "latitude": "41.98803000", + "longitude": "20.94517000" + }, + { + "id": "67505", + "name": "Pirok", + "state_id": 663, + "state_code": "76", + "country_id": 129, + "country_code": "MK", + "latitude": "41.91083000", + "longitude": "20.91056000" + }, + { + "id": "67508", + "name": "Poroj", + "state_id": 663, + "state_code": "76", + "country_id": 129, + "country_code": "MK", + "latitude": "42.02913000", + "longitude": "20.99266000" + }, + { + "id": "67524", + "name": "Selce", + "state_id": 663, + "state_code": "76", + "country_id": 129, + "country_code": "MK", + "latitude": "42.03482000", + "longitude": "20.94035000" + }, + { + "id": "67543", + "name": "Tetovo", + "state_id": 663, + "state_code": "76", + "country_id": 129, + "country_code": "MK", + "latitude": "42.00973000", + "longitude": "20.97155000" + }, + { + "id": "67504", + "name": "Pirava", + "state_id": 671, + "state_code": "10", + "country_id": 129, + "country_code": "MK", + "latitude": "41.32042000", + "longitude": "22.53047000" + }, + { + "id": "67548", + "name": "Valandovo", + "state_id": 671, + "state_code": "10", + "country_id": 129, + "country_code": "MK", + "latitude": "41.31744000", + "longitude": "22.56002000" + }, + { + "id": "67549", + "name": "Vasilevo", + "state_id": 658, + "state_code": "11", + "country_id": 129, + "country_code": "MK", + "latitude": "41.47408000", + "longitude": "22.64301000" + }, + { + "id": "67431", + "name": "Gorno Orizari", + "state_id": 651, + "state_code": "13", + "country_id": 129, + "country_code": "MK", + "latitude": "41.68583000", + "longitude": "21.73475000" + }, + { + "id": "67442", + "name": "Ivankovci", + "state_id": 651, + "state_code": "13", + "country_id": 129, + "country_code": "MK", + "latitude": "41.84889000", + "longitude": "21.82028000" + }, + { + "id": "67551", + "name": "Veles", + "state_id": 651, + "state_code": "13", + "country_id": 129, + "country_code": "MK", + "latitude": "41.71556000", + "longitude": "21.77556000" + }, + { + "id": "67554", + "name": "Vevčani", + "state_id": 662, + "state_code": "12", + "country_id": 129, + "country_code": "MK", + "latitude": "41.24056000", + "longitude": "20.59333000" + }, + { + "id": "67393", + "name": "Blatec", + "state_id": 672, + "state_code": "14", + "country_id": 129, + "country_code": "MK", + "latitude": "41.83668000", + "longitude": "22.57909000" + }, + { + "id": "67435", + "name": "Gradec", + "state_id": 672, + "state_code": "14", + "country_id": 129, + "country_code": "MK", + "latitude": "41.85068000", + "longitude": "22.51132000" + }, + { + "id": "67555", + "name": "Vinica", + "state_id": 672, + "state_code": "14", + "country_id": 129, + "country_code": "MK", + "latitude": "41.88278000", + "longitude": "22.50917000" + }, + { + "id": "67414", + "name": "Dobri Dol", + "state_id": 689, + "state_code": "16", + "country_id": 129, + "country_code": "MK", + "latitude": "41.86520000", + "longitude": "20.89009000" + }, + { + "id": "67489", + "name": "Negotino", + "state_id": 689, + "state_code": "16", + "country_id": 129, + "country_code": "MK", + "latitude": "41.87792000", + "longitude": "20.88389000" + }, + { + "id": "67558", + "name": "Vrapčište", + "state_id": 689, + "state_code": "16", + "country_id": 129, + "country_code": "MK", + "latitude": "41.83439000", + "longitude": "20.88563000" + }, + { + "id": "67562", + "name": "Zelenikovo", + "state_id": 706, + "state_code": "32", + "country_id": 129, + "country_code": "MK", + "latitude": "41.88413000", + "longitude": "21.58848000" + }, + { + "id": "67565", + "name": "Zrnovci", + "state_id": 673, + "state_code": "33", + "country_id": 129, + "country_code": "MK", + "latitude": "41.85417000", + "longitude": "22.44444000" + }, + { + "id": "67377", + "name": "Ampasimanolotra", + "state_id": 2950, + "state_code": "D", + "country_id": 130, + "country_code": "MG", + "latitude": "-18.81667000", + "longitude": "49.06667000" + }, + { + "id": "67378", + "name": "Andovoranto", + "state_id": 2950, + "state_code": "D", + "country_id": 130, + "country_code": "MG", + "latitude": "-18.95443000", + "longitude": "49.10940000" + }, + { + "id": "67379", + "name": "Mahanoro", + "state_id": 2950, + "state_code": "D", + "country_id": 130, + "country_code": "MG", + "latitude": "-19.90000000", + "longitude": "48.80000000" + }, + { + "id": "67380", + "name": "Mahavelona", + "state_id": 2950, + "state_code": "D", + "country_id": 130, + "country_code": "MG", + "latitude": "-17.68475000", + "longitude": "49.50869000" + }, + { + "id": "67381", + "name": "Marolambo", + "state_id": 2950, + "state_code": "D", + "country_id": 130, + "country_code": "MG", + "latitude": "-20.05000000", + "longitude": "48.11667000" + }, + { + "id": "67382", + "name": "Toamasina", + "state_id": 2950, + "state_code": "D", + "country_id": 130, + "country_code": "MG", + "latitude": "-18.14920000", + "longitude": "49.40234000" + }, + { + "id": "67383", + "name": "Toamasina I", + "state_id": 2950, + "state_code": "D", + "country_id": 130, + "country_code": "MG", + "latitude": "-18.13863000", + "longitude": "49.39203000" + }, + { + "id": "67384", + "name": "Toamasina II", + "state_id": 2950, + "state_code": "D", + "country_id": 130, + "country_code": "MG", + "latitude": "-17.94053000", + "longitude": "49.14608000" + }, + { + "id": "67385", + "name": "Vohibinany", + "state_id": 2950, + "state_code": "D", + "country_id": 130, + "country_code": "MG", + "latitude": "-17.35000000", + "longitude": "49.03333000" + }, + { + "id": "67950", + "name": "Chipoka", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.99329000", + "longitude": "34.51566000" + }, + { + "id": "67955", + "name": "Dedza", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.37790000", + "longitude": "34.33322000" + }, + { + "id": "67956", + "name": "Dedza District", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.26273000", + "longitude": "34.18559000" + }, + { + "id": "67957", + "name": "Dowa", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.65399000", + "longitude": "33.93754000" + }, + { + "id": "67958", + "name": "Dowa District", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.60098000", + "longitude": "33.82378000" + }, + { + "id": "67961", + "name": "Kasungu", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.03333000", + "longitude": "33.48333000" + }, + { + "id": "67962", + "name": "Kasungu District", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.00000000", + "longitude": "33.41667000" + }, + { + "id": "67964", + "name": "Lilongwe", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.96692000", + "longitude": "33.78725000" + }, + { + "id": "67965", + "name": "Lilongwe District", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.01962000", + "longitude": "33.68407000" + }, + { + "id": "67973", + "name": "Mchinji", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.79841000", + "longitude": "32.88019000" + }, + { + "id": "67974", + "name": "Mchinji District", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.76230000", + "longitude": "33.07998000" + }, + { + "id": "67976", + "name": "Mponela", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.53194000", + "longitude": "33.74008000" + }, + { + "id": "67987", + "name": "Nkhotakota", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-12.92744000", + "longitude": "34.29614000" + }, + { + "id": "67988", + "name": "Nkhotakota District", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-12.80417000", + "longitude": "34.08298000" + }, + { + "id": "67991", + "name": "Ntcheu", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.82027000", + "longitude": "34.63586000" + }, + { + "id": "67992", + "name": "Ntcheu District", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.75000000", + "longitude": "34.75000000" + }, + { + "id": "67993", + "name": "Ntchisi", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.52775000", + "longitude": "33.91490000" + }, + { + "id": "67994", + "name": "Ntchisi District", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.29574000", + "longitude": "33.90798000" + }, + { + "id": "67999", + "name": "Salima", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.78040000", + "longitude": "34.45870000" + }, + { + "id": "68000", + "name": "Salima District", + "state_id": 3092, + "state_code": "C", + "country_id": 131, + "country_code": "MW", + "latitude": "-13.71959000", + "longitude": "34.40184000" + }, + { + "id": "67953", + "name": "Chitipa", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-9.70237000", + "longitude": "33.26969000" + }, + { + "id": "67954", + "name": "Chitipa District", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-9.92727000", + "longitude": "33.42541000" + }, + { + "id": "67959", + "name": "Karonga", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-9.93333000", + "longitude": "33.93333000" + }, + { + "id": "67960", + "name": "Karonga District", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-10.11153000", + "longitude": "33.88151000" + }, + { + "id": "67963", + "name": "Likoma District", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-12.06065000", + "longitude": "34.73608000" + }, + { + "id": "67966", + "name": "Livingstonia", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-10.60602000", + "longitude": "34.10628000" + }, + { + "id": "67981", + "name": "Mzimba", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-11.90000000", + "longitude": "33.60000000" + }, + { + "id": "67982", + "name": "Mzimba District", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-11.85428000", + "longitude": "33.60778000" + }, + { + "id": "67983", + "name": "Mzuzu", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-11.46556000", + "longitude": "34.02071000" + }, + { + "id": "67985", + "name": "Nkhata Bay", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-11.60659000", + "longitude": "34.29073000" + }, + { + "id": "67986", + "name": "Nkhata Bay District", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-11.65304000", + "longitude": "34.05322000" + }, + { + "id": "67997", + "name": "Rumphi", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-11.01863000", + "longitude": "33.85746000" + }, + { + "id": "67998", + "name": "Rumphi District", + "state_id": 3105, + "state_code": "N", + "country_id": 131, + "country_code": "MW", + "latitude": "-10.80292000", + "longitude": "33.80524000" + }, + { + "id": "67944", + "name": "Balaka", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.97928000", + "longitude": "34.95575000" + }, + { + "id": "67945", + "name": "Balaka District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.04839000", + "longitude": "35.05910000" + }, + { + "id": "67946", + "name": "Blantyre", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.78499000", + "longitude": "35.00854000" + }, + { + "id": "67947", + "name": "Blantyre District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.64732000", + "longitude": "34.93956000" + }, + { + "id": "67948", + "name": "Chikwawa", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-16.03352000", + "longitude": "34.80091000" + }, + { + "id": "67949", + "name": "Chikwawa District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-16.16667000", + "longitude": "34.75000000" + }, + { + "id": "67951", + "name": "Chiradzulu", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.67461000", + "longitude": "35.14071000" + }, + { + "id": "67952", + "name": "Chiradzulu District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.75268000", + "longitude": "35.21576000" + }, + { + "id": "67967", + "name": "Liwonde", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.06665000", + "longitude": "35.22543000" + }, + { + "id": "67968", + "name": "Luchenza", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-16.00693000", + "longitude": "35.30947000" + }, + { + "id": "67969", + "name": "Machinga", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.16849000", + "longitude": "35.30002000" + }, + { + "id": "67970", + "name": "Machinga District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.94583000", + "longitude": "35.57367000" + }, + { + "id": "67971", + "name": "Mangochi", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.47815000", + "longitude": "35.26448000" + }, + { + "id": "67972", + "name": "Mangochi District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.39296000", + "longitude": "35.34658000" + }, + { + "id": "67975", + "name": "Monkey Bay", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-14.08239000", + "longitude": "34.91652000" + }, + { + "id": "67977", + "name": "Mulanje", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-16.03163000", + "longitude": "35.50000000" + }, + { + "id": "67978", + "name": "Mulanje District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.93440000", + "longitude": "35.49990000" + }, + { + "id": "67979", + "name": "Mwanza", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.60262000", + "longitude": "34.52479000" + }, + { + "id": "67980", + "name": "Mwanza District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.63337000", + "longitude": "34.51682000" + }, + { + "id": "67984", + "name": "Neno District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.45051000", + "longitude": "34.70034000" + }, + { + "id": "67989", + "name": "Nsanje", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-16.91995000", + "longitude": "35.26199000" + }, + { + "id": "67990", + "name": "Nsanje District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-16.75000000", + "longitude": "35.16667000" + }, + { + "id": "67995", + "name": "Phalombe", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.80635000", + "longitude": "35.65067000" + }, + { + "id": "67996", + "name": "Phalombe District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.66667000", + "longitude": "35.66667000" + }, + { + "id": "68001", + "name": "Thyolo", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-16.06775000", + "longitude": "35.14046000" + }, + { + "id": "68002", + "name": "Thyolo District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-16.10583000", + "longitude": "35.15060000" + }, + { + "id": "68003", + "name": "Zomba", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.38596000", + "longitude": "35.31880000" + }, + { + "id": "68004", + "name": "Zomba District", + "state_id": 3106, + "state_code": "S", + "country_id": 131, + "country_code": "MW", + "latitude": "-15.43007000", + "longitude": "35.41829000" + }, + { + "id": "76416", + "name": "Bakri", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.04410000", + "longitude": "102.65270000" + }, + { + "id": "76424", + "name": "Batu Pahat", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.85480000", + "longitude": "102.93250000" + }, + { + "id": "76433", + "name": "Buloh Kasap", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.55360000", + "longitude": "102.76400000" + }, + { + "id": "76435", + "name": "Chaah", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.24900000", + "longitude": "103.04800000" + }, + { + "id": "76437", + "name": "Daerah Batu Pahat", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.93333000", + "longitude": "103.00000000" + }, + { + "id": "76438", + "name": "Daerah Johor Baharu", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.65000000", + "longitude": "103.60000000" + }, + { + "id": "76439", + "name": "Daerah Keluang", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.20000000", + "longitude": "103.33333000" + }, + { + "id": "76440", + "name": "Daerah Kota Tinggi", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.81667000", + "longitude": "103.96667000" + }, + { + "id": "76441", + "name": "Daerah Mersing", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.31667000", + "longitude": "103.71667000" + }, + { + "id": "76442", + "name": "Daerah Muar", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.25000000", + "longitude": "102.75000000" + }, + { + "id": "76443", + "name": "Daerah Pontian", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.50000000", + "longitude": "103.50000000" + }, + { + "id": "76444", + "name": "Daerah Segamat", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.60000000", + "longitude": "102.81667000" + }, + { + "id": "76455", + "name": "Johor Bahru", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.46550000", + "longitude": "103.75780000" + }, + { + "id": "76473", + "name": "Kampung Pasir Gudang Baru", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.47260000", + "longitude": "103.87800000" + }, + { + "id": "76474", + "name": "Kampung Simpang Renggam", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.82780000", + "longitude": "103.30000000" + }, + { + "id": "76480", + "name": "Kelapa Sawit", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.66980000", + "longitude": "103.53270000" + }, + { + "id": "76487", + "name": "Kluang", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.03046000", + "longitude": "103.31689000" + }, + { + "id": "76491", + "name": "Kota Tinggi", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.73810000", + "longitude": "103.89990000" + }, + { + "id": "76508", + "name": "Kulai", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.65610000", + "longitude": "103.60320000" + }, + { + "id": "76510", + "name": "Labis", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.38500000", + "longitude": "103.02100000" + }, + { + "id": "76524", + "name": "Mersing", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.43120000", + "longitude": "103.84050000" + }, + { + "id": "76526", + "name": "Muar", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.04420000", + "longitude": "102.56890000" + }, + { + "id": "76535", + "name": "Parit Raja", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.86810000", + "longitude": "103.11240000" + }, + { + "id": "76538", + "name": "Pekan Nenas", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.51000000", + "longitude": "103.51410000" + }, + { + "id": "76544", + "name": "Pontian Kechil", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.48660000", + "longitude": "103.38960000" + }, + { + "id": "76556", + "name": "Segamat", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.51480000", + "longitude": "102.81580000" + }, + { + "id": "76565", + "name": "Skudai", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.53741000", + "longitude": "103.65779000" + }, + { + "id": "76573", + "name": "Taman Senai", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.60060000", + "longitude": "103.64190000" + }, + { + "id": "76576", + "name": "Tangkak", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.26730000", + "longitude": "102.54530000" + }, + { + "id": "76586", + "name": "Ulu Tiram", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "1.60000000", + "longitude": "103.81667000" + }, + { + "id": "76587", + "name": "Yong Peng", + "state_id": 1950, + "state_code": "01", + "country_id": 132, + "country_code": "MY", + "latitude": "2.01360000", + "longitude": "103.06590000" + }, + { + "id": "76410", + "name": "Alor Setar", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.12104000", + "longitude": "100.36014000" + }, + { + "id": "76412", + "name": "Ayer Hangat", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.42062000", + "longitude": "99.82199000" + }, + { + "id": "76426", + "name": "Bedong", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "5.72743000", + "longitude": "100.50876000" + }, + { + "id": "76449", + "name": "Gurun", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "5.81717000", + "longitude": "100.47381000" + }, + { + "id": "76454", + "name": "Jitra", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.26812000", + "longitude": "100.42167000" + }, + { + "id": "76470", + "name": "Kampung Kilim", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.40550000", + "longitude": "99.85020000" + }, + { + "id": "76471", + "name": "Kampung Kok", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.36759000", + "longitude": "99.68252000" + }, + { + "id": "76492", + "name": "Kuah", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.32649000", + "longitude": "99.84320000" + }, + { + "id": "76495", + "name": "Kuala Kedah", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.10000000", + "longitude": "100.30000000" + }, + { + "id": "76503", + "name": "Kuala Teriang", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.36377000", + "longitude": "99.71532000" + }, + { + "id": "76509", + "name": "Kulim", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "5.36499000", + "longitude": "100.56177000" + }, + { + "id": "76514", + "name": "Langkawi", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.35608000", + "longitude": "99.78375000" + }, + { + "id": "76529", + "name": "Padang Mat Sirat", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "6.35423000", + "longitude": "99.73404000" + }, + { + "id": "76569", + "name": "Sungai Petani", + "state_id": 1947, + "state_code": "02", + "country_id": 132, + "country_code": "MY", + "latitude": "5.64700000", + "longitude": "100.48772000" + }, + { + "id": "76448", + "name": "Gua Musang", + "state_id": 1946, + "state_code": "03", + "country_id": 132, + "country_code": "MY", + "latitude": "4.88441000", + "longitude": "101.96857000" + }, + { + "id": "76460", + "name": "Kampong Kadok", + "state_id": 1946, + "state_code": "03", + "country_id": 132, + "country_code": "MY", + "latitude": "6.00000000", + "longitude": "102.25000000" + }, + { + "id": "76462", + "name": "Kampong Pangkal Kalong", + "state_id": 1946, + "state_code": "03", + "country_id": 132, + "country_code": "MY", + "latitude": "5.91667000", + "longitude": "102.21667000" + }, + { + "id": "76489", + "name": "Kota Bharu", + "state_id": 1946, + "state_code": "03", + "country_id": 132, + "country_code": "MY", + "latitude": "6.12361000", + "longitude": "102.24333000" + }, + { + "id": "76536", + "name": "Pasir Mas", + "state_id": 1946, + "state_code": "03", + "country_id": 132, + "country_code": "MY", + "latitude": "6.04934000", + "longitude": "102.13987000" + }, + { + "id": "76541", + "name": "Peringat", + "state_id": 1946, + "state_code": "03", + "country_id": 132, + "country_code": "MY", + "latitude": "6.03333000", + "longitude": "102.28333000" + }, + { + "id": "76585", + "name": "Tumpat", + "state_id": 1946, + "state_code": "03", + "country_id": 132, + "country_code": "MY", + "latitude": "6.19775000", + "longitude": "102.17098000" + }, + { + "id": "76497", + "name": "Kuala Lumpur", + "state_id": 1949, + "state_code": "14", + "country_id": 132, + "country_code": "MY", + "latitude": "3.14120000", + "longitude": "101.68653000" + }, + { + "id": "76511", + "name": "Labuan", + "state_id": 1935, + "state_code": "15", + "country_id": 132, + "country_code": "MY", + "latitude": "5.28028000", + "longitude": "115.24750000" + }, + { + "id": "76409", + "name": "Alor Gajah", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.38040000", + "longitude": "102.20890000" + }, + { + "id": "76421", + "name": "Batu Berendam", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.24870000", + "longitude": "102.24600000" + }, + { + "id": "76427", + "name": "Bemban", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.26840000", + "longitude": "102.37460000" + }, + { + "id": "76432", + "name": "Bukit Rambai", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.25940000", + "longitude": "102.18380000" + }, + { + "id": "76461", + "name": "Kampong Masjid Tanah", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.35000000", + "longitude": "102.11667000" + }, + { + "id": "76463", + "name": "Kampung Ayer Keroh", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.26540000", + "longitude": "102.28010000" + }, + { + "id": "76464", + "name": "Kampung Ayer Molek", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.21390000", + "longitude": "102.32780000" + }, + { + "id": "76468", + "name": "Kampung Bukit Baharu", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.21520000", + "longitude": "102.28510000" + }, + { + "id": "76486", + "name": "Klebang Besar", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.21860000", + "longitude": "102.19950000" + }, + { + "id": "76501", + "name": "Kuala Sungai Baru", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.35940000", + "longitude": "102.03530000" + }, + { + "id": "76520", + "name": "Malacca", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.19600000", + "longitude": "102.24050000" + }, + { + "id": "76546", + "name": "Pulau Sebang", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.45500000", + "longitude": "102.23290000" + }, + { + "id": "76570", + "name": "Sungai Udang", + "state_id": 1941, + "state_code": "04", + "country_id": 132, + "country_code": "MY", + "latitude": "2.26900000", + "longitude": "102.14270000" + }, + { + "id": "76415", + "name": "Bahau", + "state_id": 1948, + "state_code": "05", + "country_id": 132, + "country_code": "MY", + "latitude": "2.80790000", + "longitude": "102.40490000" + }, + { + "id": "76465", + "name": "Kampung Baharu Nilai", + "state_id": 1948, + "state_code": "05", + "country_id": 132, + "country_code": "MY", + "latitude": "2.80330000", + "longitude": "101.79720000" + }, + { + "id": "76499", + "name": "Kuala Pilah", + "state_id": 1948, + "state_code": "05", + "country_id": 132, + "country_code": "MY", + "latitude": "2.73890000", + "longitude": "102.24870000" + }, + { + "id": "76545", + "name": "Port Dickson", + "state_id": 1948, + "state_code": "05", + "country_id": 132, + "country_code": "MY", + "latitude": "2.53718000", + "longitude": "101.80571000" + }, + { + "id": "76559", + "name": "Seremban", + "state_id": 1948, + "state_code": "05", + "country_id": 132, + "country_code": "MY", + "latitude": "2.72970000", + "longitude": "101.93810000" + }, + { + "id": "76574", + "name": "Tampin", + "state_id": 1948, + "state_code": "05", + "country_id": 132, + "country_code": "MY", + "latitude": "2.47010000", + "longitude": "102.23020000" + }, + { + "id": "76428", + "name": "Bentong Town", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "3.52229000", + "longitude": "101.90866000" + }, + { + "id": "76452", + "name": "Jerantut", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "3.93600000", + "longitude": "102.36260000" + }, + { + "id": "76469", + "name": "Kampung Bukit Tinggi, Bentong", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "3.34944000", + "longitude": "101.82631000" + }, + { + "id": "76477", + "name": "Kampung Tekek", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "2.81470000", + "longitude": "104.15920000" + }, + { + "id": "76496", + "name": "Kuala Lipis", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "4.18420000", + "longitude": "102.04680000" + }, + { + "id": "76505", + "name": "Kuantan", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "3.80770000", + "longitude": "103.32600000" + }, + { + "id": "76523", + "name": "Mentekab", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "3.48540000", + "longitude": "102.34840000" + }, + { + "id": "76537", + "name": "Pekan", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "3.48360000", + "longitude": "103.39960000" + }, + { + "id": "76551", + "name": "Raub", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "3.78990000", + "longitude": "101.85700000" + }, + { + "id": "76575", + "name": "Tanah Rata", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "4.46361000", + "longitude": "101.37630000" + }, + { + "id": "76584", + "name": "Temerluh", + "state_id": 1940, + "state_code": "06", + "country_id": 132, + "country_code": "MY", + "latitude": "3.45060000", + "longitude": "102.41760000" + }, + { + "id": "76422", + "name": "Batu Feringgi", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.47090000", + "longitude": "100.24529000" + }, + { + "id": "76431", + "name": "Bukit Mertajam", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.36301000", + "longitude": "100.46670000" + }, + { + "id": "76434", + "name": "Butterworth", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.39910000", + "longitude": "100.36382000" + }, + { + "id": "76447", + "name": "George Town", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.41123000", + "longitude": "100.33543000" + }, + { + "id": "76456", + "name": "Juru", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.31201000", + "longitude": "100.44229000" + }, + { + "id": "76467", + "name": "Kampung Batu Feringgi", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.46948000", + "longitude": "100.24449000" + }, + { + "id": "76475", + "name": "Kampung Sungai Ara", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.32699000", + "longitude": "100.27348000" + }, + { + "id": "76482", + "name": "Kepala Batas", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.51707000", + "longitude": "100.42650000" + }, + { + "id": "76528", + "name": "Nibong Tebal", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.16586000", + "longitude": "100.47793000" + }, + { + "id": "76540", + "name": "Perai", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.38333000", + "longitude": "100.38333000" + }, + { + "id": "76542", + "name": "Permatang Kuching", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.46339000", + "longitude": "100.38144000" + }, + { + "id": "76555", + "name": "Seberang Perai", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.38770000", + "longitude": "100.42603000" + }, + { + "id": "76578", + "name": "Tanjung Tokong", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.46061000", + "longitude": "100.30742000" + }, + { + "id": "76580", + "name": "Tasek Glugor", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.48032000", + "longitude": "100.49849000" + }, + { + "id": "76582", + "name": "Telaga Batu", + "state_id": 1939, + "state_code": "07", + "country_id": 132, + "country_code": "MY", + "latitude": "5.46667000", + "longitude": "100.23333000" + }, + { + "id": "76414", + "name": "Bagan Serai", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "5.01080000", + "longitude": "100.54101000" + }, + { + "id": "76423", + "name": "Batu Gajah", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.46916000", + "longitude": "101.04107000" + }, + { + "id": "76429", + "name": "Bidur", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.11667000", + "longitude": "101.28333000" + }, + { + "id": "76450", + "name": "Ipoh", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.58410000", + "longitude": "101.08290000" + }, + { + "id": "76457", + "name": "Kampar", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.30000000", + "longitude": "101.15000000" + }, + { + "id": "76459", + "name": "Kampong Dungun", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "3.21667000", + "longitude": "101.31667000" + }, + { + "id": "76494", + "name": "Kuala Kangsar", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.76667000", + "longitude": "100.93333000" + }, + { + "id": "76519", + "name": "Lumut", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.23230000", + "longitude": "100.62980000" + }, + { + "id": "76532", + "name": "Pantai Remis", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.45570000", + "longitude": "100.62880000" + }, + { + "id": "76534", + "name": "Parit Buntar", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "5.12671000", + "longitude": "100.49316000" + }, + { + "id": "76564", + "name": "Simpang Empat", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.95000000", + "longitude": "100.63333000" + }, + { + "id": "76571", + "name": "Taiping", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.85000000", + "longitude": "100.73333000" + }, + { + "id": "76579", + "name": "Tapah Road", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.16667000", + "longitude": "101.20000000" + }, + { + "id": "76583", + "name": "Teluk Intan", + "state_id": 1943, + "state_code": "08", + "country_id": 132, + "country_code": "MY", + "latitude": "4.02219000", + "longitude": "101.02083000" + }, + { + "id": "76478", + "name": "Kangar", + "state_id": 1938, + "state_code": "09", + "country_id": 132, + "country_code": "MY", + "latitude": "6.44140000", + "longitude": "100.19862000" + }, + { + "id": "76498", + "name": "Kuala Perlis", + "state_id": 1938, + "state_code": "09", + "country_id": 132, + "country_code": "MY", + "latitude": "6.40000000", + "longitude": "100.13333000" + }, + { + "id": "76531", + "name": "Pantai Cenang", + "state_id": 1938, + "state_code": "09", + "country_id": 132, + "country_code": "MY", + "latitude": "6.29369000", + "longitude": "99.72786000" + }, + { + "id": "76549", + "name": "Putrajaya", + "state_id": 1945, + "state_code": "16", + "country_id": 132, + "country_code": "MY", + "latitude": "2.93527000", + "longitude": "101.69112000" + }, + { + "id": "76417", + "name": "Bandar Labuan", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.28883000", + "longitude": "115.26924000" + }, + { + "id": "76425", + "name": "Beaufort", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.34730000", + "longitude": "115.74550000" + }, + { + "id": "76446", + "name": "Donggongon", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.90702000", + "longitude": "116.10146000" + }, + { + "id": "76481", + "name": "Keningau", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.33780000", + "longitude": "116.16020000" + }, + { + "id": "76484", + "name": "Kinarut", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.82310000", + "longitude": "116.04660000" + }, + { + "id": "76488", + "name": "Kota Belud", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "6.35100000", + "longitude": "116.43050000" + }, + { + "id": "76490", + "name": "Kota Kinabalu", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.97490000", + "longitude": "116.07240000" + }, + { + "id": "76507", + "name": "Kudat", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "6.88732000", + "longitude": "116.82364000" + }, + { + "id": "76513", + "name": "Lahad Datu", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.02298000", + "longitude": "118.32897000" + }, + { + "id": "76533", + "name": "Papar", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.73333000", + "longitude": "115.93333000" + }, + { + "id": "76547", + "name": "Putatan", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.92580000", + "longitude": "116.06094000" + }, + { + "id": "76550", + "name": "Ranau", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.95380000", + "longitude": "116.66410000" + }, + { + "id": "76553", + "name": "Sandakan", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.84020000", + "longitude": "118.11790000" + }, + { + "id": "76558", + "name": "Semporna", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "4.48178000", + "longitude": "118.61119000" + }, + { + "id": "76572", + "name": "Taman Rajawali", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "5.89477000", + "longitude": "118.04576000" + }, + { + "id": "76581", + "name": "Tawau", + "state_id": 1936, + "state_code": "12", + "country_id": 132, + "country_code": "MY", + "latitude": "4.24482000", + "longitude": "117.89115000" + }, + { + "id": "76430", + "name": "Bintulu", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "3.16667000", + "longitude": "113.03333000" + }, + { + "id": "76445", + "name": "Data Kakus", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "2.65465000", + "longitude": "113.62249000" + }, + { + "id": "76479", + "name": "Kapit", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "1.99546000", + "longitude": "112.93254000" + }, + { + "id": "76506", + "name": "Kuching", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "1.55000000", + "longitude": "110.33333000" + }, + { + "id": "76515", + "name": "Lawas", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "4.86040000", + "longitude": "115.40900000" + }, + { + "id": "76516", + "name": "Lidung Jelo", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "2.64848000", + "longitude": "114.78653000" + }, + { + "id": "76517", + "name": "Limbang", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "4.75000000", + "longitude": "115.00000000" + }, + { + "id": "76518", + "name": "Long Ampan Aing or Abanang", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "2.65671000", + "longitude": "114.73675000" + }, + { + "id": "76522", + "name": "Marudi", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "4.18333000", + "longitude": "114.31667000" + }, + { + "id": "76525", + "name": "Miri", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "4.39928000", + "longitude": "113.99163000" + }, + { + "id": "76527", + "name": "Mukah", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "2.89435000", + "longitude": "112.09145000" + }, + { + "id": "76554", + "name": "Sarikei", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "2.11667000", + "longitude": "111.51667000" + }, + { + "id": "76562", + "name": "Sibu", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "2.30000000", + "longitude": "111.81667000" + }, + { + "id": "76563", + "name": "Simanggang", + "state_id": 1937, + "state_code": "13", + "country_id": 132, + "country_code": "MY", + "latitude": "1.24722000", + "longitude": "111.45278000" + }, + { + "id": "76411", + "name": "Ampang", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.15000000", + "longitude": "101.76667000" + }, + { + "id": "76413", + "name": "Bagan Pulau Ketam", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.01667000", + "longitude": "101.26667000" + }, + { + "id": "76418", + "name": "Banting", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "2.81360000", + "longitude": "101.50185000" + }, + { + "id": "76419", + "name": "Batang Berjuntai", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.38333000", + "longitude": "101.41667000" + }, + { + "id": "76420", + "name": "Batu Arang", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.31667000", + "longitude": "101.46667000" + }, + { + "id": "76451", + "name": "Jenjarum", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "2.87240000", + "longitude": "101.49484000" + }, + { + "id": "76458", + "name": "Kampong Baharu Balakong", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.03333000", + "longitude": "101.75000000" + }, + { + "id": "76466", + "name": "Kampung Baru Subang", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.15000000", + "longitude": "101.53333000" + }, + { + "id": "76476", + "name": "Kampung Tanjung Karang", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.42420000", + "longitude": "101.18490000" + }, + { + "id": "76485", + "name": "Klang", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.03667000", + "longitude": "101.44333000" + }, + { + "id": "76500", + "name": "Kuala Selangor", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.35000000", + "longitude": "101.25000000" + }, + { + "id": "76504", + "name": "Kuang", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.25940000", + "longitude": "101.55410000" + }, + { + "id": "76512", + "name": "Ladang Seri Kundang", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.28560000", + "longitude": "101.51900000" + }, + { + "id": "76539", + "name": "Pelabuhan Klang", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "2.99959000", + "longitude": "101.39287000" + }, + { + "id": "76543", + "name": "Petaling Jaya", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.10726000", + "longitude": "101.60671000" + }, + { + "id": "76548", + "name": "Putra Heights", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "2.99361000", + "longitude": "101.57255000" + }, + { + "id": "76552", + "name": "Rawang", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.32130000", + "longitude": "101.57670000" + }, + { + "id": "76557", + "name": "Semenyih", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "2.95160000", + "longitude": "101.84300000" + }, + { + "id": "76560", + "name": "Serendah", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.36460000", + "longitude": "101.60410000" + }, + { + "id": "76561", + "name": "Shah Alam", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.08507000", + "longitude": "101.53281000" + }, + { + "id": "76566", + "name": "Subang Jaya", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.04384000", + "longitude": "101.58062000" + }, + { + "id": "76567", + "name": "Sungai Besar", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "3.67460000", + "longitude": "100.98670000" + }, + { + "id": "76568", + "name": "Sungai Pelek New Village", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "2.65000000", + "longitude": "101.70000000" + }, + { + "id": "76577", + "name": "Tanjung Sepat", + "state_id": 1944, + "state_code": "10", + "country_id": 132, + "country_code": "MY", + "latitude": "2.65790000", + "longitude": "101.56290000" + }, + { + "id": "76436", + "name": "Cukai", + "state_id": 1942, + "state_code": "11", + "country_id": 132, + "country_code": "MY", + "latitude": "4.25000000", + "longitude": "103.41667000" + }, + { + "id": "76453", + "name": "Jertih", + "state_id": 1942, + "state_code": "11", + "country_id": 132, + "country_code": "MY", + "latitude": "5.73360000", + "longitude": "102.48970000" + }, + { + "id": "76472", + "name": "Kampung Kuala Besut", + "state_id": 1942, + "state_code": "11", + "country_id": 132, + "country_code": "MY", + "latitude": "5.83297000", + "longitude": "102.55061000" + }, + { + "id": "76483", + "name": "Kertih", + "state_id": 1942, + "state_code": "11", + "country_id": 132, + "country_code": "MY", + "latitude": "4.51410000", + "longitude": "103.44830000" + }, + { + "id": "76493", + "name": "Kuala Besut", + "state_id": 1942, + "state_code": "11", + "country_id": 132, + "country_code": "MY", + "latitude": "5.83303000", + "longitude": "102.55514000" + }, + { + "id": "76502", + "name": "Kuala Terengganu", + "state_id": 1942, + "state_code": "11", + "country_id": 132, + "country_code": "MY", + "latitude": "5.33020000", + "longitude": "103.14080000" + }, + { + "id": "76521", + "name": "Marang", + "state_id": 1942, + "state_code": "11", + "country_id": 132, + "country_code": "MY", + "latitude": "5.20560000", + "longitude": "103.20590000" + }, + { + "id": "76530", + "name": "Paka", + "state_id": 1942, + "state_code": "11", + "country_id": 132, + "country_code": "MY", + "latitude": "4.63740000", + "longitude": "103.43680000" + }, + { + "id": "67929", + "name": "Hithadhoo", + "state_id": 2594, + "state_code": "01", + "country_id": 133, + "country_code": "MV", + "latitude": "-0.60000000", + "longitude": "73.08333000" + }, + { + "id": "67937", + "name": "Meedhoo", + "state_id": 2594, + "state_code": "01", + "country_id": 133, + "country_code": "MV", + "latitude": "-0.58333000", + "longitude": "73.23333000" + }, + { + "id": "67931", + "name": "Kudahuvadhoo", + "state_id": 2590, + "state_code": "17", + "country_id": 133, + "country_code": "MV", + "latitude": "2.67075000", + "longitude": "72.89437000" + }, + { + "id": "67943", + "name": "Viligili", + "state_id": 2598, + "state_code": "27", + "country_id": 133, + "country_code": "MV", + "latitude": "0.75906000", + "longitude": "73.43296000" + }, + { + "id": "67940", + "name": "Thinadhoo", + "state_id": 2603, + "state_code": "28", + "country_id": 133, + "country_code": "MV", + "latitude": "0.53060000", + "longitude": "72.99969000" + }, + { + "id": "67927", + "name": "Fuvahmulah", + "state_id": 2595, + "state_code": "29", + "country_id": 133, + "country_code": "MV", + "latitude": "-0.29878000", + "longitude": "73.42403000" + }, + { + "id": "67923", + "name": "Dhidhdhoo", + "state_id": 2586, + "state_code": "07", + "country_id": 133, + "country_code": "MV", + "latitude": "6.88744000", + "longitude": "73.11402000" + }, + { + "id": "67932", + "name": "Kulhudhuffushi", + "state_id": 2597, + "state_code": "23", + "country_id": 133, + "country_code": "MV", + "latitude": "6.62207000", + "longitude": "73.06998000" + }, + { + "id": "67928", + "name": "Guraidhoo", + "state_id": 2596, + "state_code": "26", + "country_id": 133, + "country_code": "MV", + "latitude": "3.90045000", + "longitude": "73.46623000" + }, + { + "id": "67930", + "name": "Hulhumale", + "state_id": 2596, + "state_code": "26", + "country_id": 133, + "country_code": "MV", + "latitude": "4.21169000", + "longitude": "73.54008000" + }, + { + "id": "67933", + "name": "Maafushi", + "state_id": 2596, + "state_code": "26", + "country_id": 133, + "country_code": "MV", + "latitude": "3.94231000", + "longitude": "73.49070000" + }, + { + "id": "67935", + "name": "Male", + "state_id": 2596, + "state_code": "26", + "country_id": 133, + "country_code": "MV", + "latitude": "4.17521000", + "longitude": "73.50916000" + }, + { + "id": "67925", + "name": "Fonadhoo", + "state_id": 2601, + "state_code": "05", + "country_id": 133, + "country_code": "MV", + "latitude": "1.83243000", + "longitude": "73.50257000" + }, + { + "id": "67939", + "name": "Naifaru", + "state_id": 2607, + "state_code": "03", + "country_id": 133, + "country_code": "MV", + "latitude": "5.44438000", + "longitude": "73.36571000" + }, + { + "id": "67938", + "name": "Muli", + "state_id": 2608, + "state_code": "12", + "country_id": 133, + "country_code": "MV", + "latitude": "2.91667000", + "longitude": "73.56667000" + }, + { + "id": "67936", + "name": "Manadhoo", + "state_id": 2592, + "state_code": "25", + "country_id": 133, + "country_code": "MV", + "latitude": "5.76687000", + "longitude": "73.41360000" + }, + { + "id": "67941", + "name": "Ugoofaaru", + "state_id": 2602, + "state_code": "13", + "country_id": 133, + "country_code": "MV", + "latitude": "5.66812000", + "longitude": "73.03017000" + }, + { + "id": "67926", + "name": "Funadhoo", + "state_id": 2585, + "state_code": "24", + "country_id": 133, + "country_code": "MV", + "latitude": "6.15091000", + "longitude": "73.29013000" + }, + { + "id": "67934", + "name": "Mahibadhoo", + "state_id": 2606, + "state_code": "SC", + "country_id": 133, + "country_code": "MV", + "latitude": "3.75713000", + "longitude": "72.96893000" + }, + { + "id": "67942", + "name": "Veymandoo", + "state_id": 2591, + "state_code": "08", + "country_id": 133, + "country_code": "MV", + "latitude": "2.18772000", + "longitude": "73.09556000" + }, + { + "id": "67924", + "name": "Felidhoo", + "state_id": 2584, + "state_code": "04", + "country_id": 133, + "country_code": "MV", + "latitude": "3.47182000", + "longitude": "73.54699000" + }, + { + "id": "67587", + "name": "Bamako", + "state_id": 253, + "state_code": "BKO", + "country_id": 134, + "country_code": "ML", + "latitude": "12.65000000", + "longitude": "-8.00000000" + }, + { + "id": "67584", + "name": "Ansongo", + "state_id": 258, + "state_code": "7", + "country_id": 134, + "country_code": "ML", + "latitude": "15.65970000", + "longitude": "0.50220000" + }, + { + "id": "67592", + "name": "Cercle de Bourem", + "state_id": 258, + "state_code": "7", + "country_id": 134, + "country_code": "ML", + "latitude": "17.71192000", + "longitude": "-0.34284000" + }, + { + "id": "67601", + "name": "Gao", + "state_id": 258, + "state_code": "7", + "country_id": 134, + "country_code": "ML", + "latitude": "16.27167000", + "longitude": "-0.04472000" + }, + { + "id": "67602", + "name": "Gao Cercle", + "state_id": 258, + "state_code": "7", + "country_id": 134, + "country_code": "ML", + "latitude": "16.72237000", + "longitude": "0.43984000" + }, + { + "id": "67605", + "name": "Inékar", + "state_id": 258, + "state_code": "7", + "country_id": 134, + "country_code": "ML", + "latitude": "15.95944000", + "longitude": "3.14111000" + }, + { + "id": "67586", + "name": "Bafoulabé", + "state_id": 252, + "state_code": "1", + "country_id": 134, + "country_code": "ML", + "latitude": "13.80650000", + "longitude": "-10.83210000" + }, + { + "id": "67608", + "name": "Kayes", + "state_id": 252, + "state_code": "1", + "country_id": 134, + "country_code": "ML", + "latitude": "14.44693000", + "longitude": "-11.44448000" + }, + { + "id": "67611", + "name": "Kita", + "state_id": 252, + "state_code": "1", + "country_id": 134, + "country_code": "ML", + "latitude": "13.03490000", + "longitude": "-9.48950000" + }, + { + "id": "67612", + "name": "Kokofata", + "state_id": 252, + "state_code": "1", + "country_id": 134, + "country_code": "ML", + "latitude": "12.88333000", + "longitude": "-9.95000000" + }, + { + "id": "67623", + "name": "Sagalo", + "state_id": 252, + "state_code": "1", + "country_id": 134, + "country_code": "ML", + "latitude": "12.20000000", + "longitude": "-10.70000000" + }, + { + "id": "67583", + "name": "Abeïbara", + "state_id": 257, + "state_code": "8", + "country_id": 134, + "country_code": "ML", + "latitude": "19.11667000", + "longitude": "1.75000000" + }, + { + "id": "67595", + "name": "Cercle d’Abeïbara", + "state_id": 257, + "state_code": "8", + "country_id": 134, + "country_code": "ML", + "latitude": "19.48878000", + "longitude": "2.20025000" + }, + { + "id": "67609", + "name": "Kidal", + "state_id": 257, + "state_code": "8", + "country_id": 134, + "country_code": "ML", + "latitude": "18.44111000", + "longitude": "1.40778000" + }, + { + "id": "67588", + "name": "Banamba", + "state_id": 250, + "state_code": "2", + "country_id": 134, + "country_code": "ML", + "latitude": "13.54773000", + "longitude": "-7.44808000" + }, + { + "id": "67606", + "name": "Kangaba", + "state_id": 250, + "state_code": "2", + "country_id": 134, + "country_code": "ML", + "latitude": "11.93333000", + "longitude": "-8.41667000" + }, + { + "id": "67607", + "name": "Kati", + "state_id": 250, + "state_code": "2", + "country_id": 134, + "country_code": "ML", + "latitude": "12.74409000", + "longitude": "-8.07257000" + }, + { + "id": "67613", + "name": "Kolokani", + "state_id": 250, + "state_code": "2", + "country_id": 134, + "country_code": "ML", + "latitude": "13.57280000", + "longitude": "-8.03390000" + }, + { + "id": "67615", + "name": "Koulikoro", + "state_id": 250, + "state_code": "2", + "country_id": 134, + "country_code": "ML", + "latitude": "12.86273000", + "longitude": "-7.55985000" + }, + { + "id": "67589", + "name": "Bandiagara", + "state_id": 255, + "state_code": "5", + "country_id": 134, + "country_code": "ML", + "latitude": "14.35005000", + "longitude": "-3.61038000" + }, + { + "id": "67598", + "name": "Djénné", + "state_id": 255, + "state_code": "5", + "country_id": 134, + "country_code": "ML", + "latitude": "13.90608000", + "longitude": "-4.55332000" + }, + { + "id": "67599", + "name": "Douentza", + "state_id": 255, + "state_code": "5", + "country_id": 134, + "country_code": "ML", + "latitude": "15.00155000", + "longitude": "-2.94978000" + }, + { + "id": "67600", + "name": "Douentza Cercle", + "state_id": 255, + "state_code": "5", + "country_id": 134, + "country_code": "ML", + "latitude": "15.06947000", + "longitude": "-2.40875000" + }, + { + "id": "67620", + "name": "Mopti", + "state_id": 255, + "state_code": "5", + "country_id": 134, + "country_code": "ML", + "latitude": "14.48430000", + "longitude": "-4.18296000" + }, + { + "id": "67629", + "name": "Ténenkou", + "state_id": 255, + "state_code": "5", + "country_id": 134, + "country_code": "ML", + "latitude": "14.45722000", + "longitude": "-4.91690000" + }, + { + "id": "67590", + "name": "Baroueli", + "state_id": 249, + "state_code": "4", + "country_id": 134, + "country_code": "ML", + "latitude": "13.07489000", + "longitude": "-6.57171000" + }, + { + "id": "67594", + "name": "Cercle de San", + "state_id": 249, + "state_code": "4", + "country_id": 134, + "country_code": "ML", + "latitude": "13.17895000", + "longitude": "-5.01617000" + }, + { + "id": "67618", + "name": "Ké-Macina", + "state_id": 249, + "state_code": "4", + "country_id": 134, + "country_code": "ML", + "latitude": "13.96410000", + "longitude": "-5.35791000" + }, + { + "id": "67610", + "name": "Kinmparana", + "state_id": 249, + "state_code": "4", + "country_id": 134, + "country_code": "ML", + "latitude": "12.84217000", + "longitude": "-4.92450000" + }, + { + "id": "67619", + "name": "Markala", + "state_id": 249, + "state_code": "4", + "country_id": 134, + "country_code": "ML", + "latitude": "13.70210000", + "longitude": "-6.06590000" + }, + { + "id": "67624", + "name": "San", + "state_id": 249, + "state_code": "4", + "country_id": 134, + "country_code": "ML", + "latitude": "13.30335000", + "longitude": "-4.89562000" + }, + { + "id": "67627", + "name": "Ségou", + "state_id": 249, + "state_code": "4", + "country_id": 134, + "country_code": "ML", + "latitude": "13.43170000", + "longitude": "-6.21570000" + }, + { + "id": "67626", + "name": "Sokolo", + "state_id": 249, + "state_code": "4", + "country_id": 134, + "country_code": "ML", + "latitude": "14.73280000", + "longitude": "-6.12190000" + }, + { + "id": "67591", + "name": "Bougouni", + "state_id": 254, + "state_code": "3", + "country_id": 134, + "country_code": "ML", + "latitude": "11.41769000", + "longitude": "-7.48323000" + }, + { + "id": "67614", + "name": "Kolondiéba", + "state_id": 254, + "state_code": "3", + "country_id": 134, + "country_code": "ML", + "latitude": "11.08943000", + "longitude": "-6.89290000" + }, + { + "id": "67616", + "name": "Koutiala", + "state_id": 254, + "state_code": "3", + "country_id": 134, + "country_code": "ML", + "latitude": "12.39173000", + "longitude": "-5.46421000" + }, + { + "id": "67617", + "name": "Koutiala Cercle", + "state_id": 254, + "state_code": "3", + "country_id": 134, + "country_code": "ML", + "latitude": "12.35311000", + "longitude": "-5.58390000" + }, + { + "id": "67622", + "name": "Ntossoni", + "state_id": 254, + "state_code": "3", + "country_id": 134, + "country_code": "ML", + "latitude": "12.53040000", + "longitude": "-5.77003000" + }, + { + "id": "67625", + "name": "Sikasso", + "state_id": 254, + "state_code": "3", + "country_id": 134, + "country_code": "ML", + "latitude": "11.31755000", + "longitude": "-5.66654000" + }, + { + "id": "67630", + "name": "Yorosso", + "state_id": 254, + "state_code": "3", + "country_id": 134, + "country_code": "ML", + "latitude": "12.35811000", + "longitude": "-4.77688000" + }, + { + "id": "67585", + "name": "Araouane", + "state_id": 248, + "state_code": "6", + "country_id": 134, + "country_code": "ML", + "latitude": "18.90476000", + "longitude": "-3.52649000" + }, + { + "id": "67593", + "name": "Cercle de Goundam", + "state_id": 248, + "state_code": "6", + "country_id": 134, + "country_code": "ML", + "latitude": "18.60035000", + "longitude": "-4.99306000" + }, + { + "id": "67597", + "name": "Diré", + "state_id": 248, + "state_code": "6", + "country_id": 134, + "country_code": "ML", + "latitude": "12.28333000", + "longitude": "-10.96667000" + }, + { + "id": "67596", + "name": "Dire", + "state_id": 248, + "state_code": "6", + "country_id": 134, + "country_code": "ML", + "latitude": "16.28017000", + "longitude": "-3.31302000" + }, + { + "id": "67603", + "name": "Goundam", + "state_id": 248, + "state_code": "6", + "country_id": 134, + "country_code": "ML", + "latitude": "16.41453000", + "longitude": "-3.67075000" + }, + { + "id": "67604", + "name": "Gourma-Rharous Cercle", + "state_id": 248, + "state_code": "6", + "country_id": 134, + "country_code": "ML", + "latitude": "16.07979000", + "longitude": "-1.76981000" + }, + { + "id": "67621", + "name": "Niafunké", + "state_id": 248, + "state_code": "6", + "country_id": 134, + "country_code": "ML", + "latitude": "15.93220000", + "longitude": "-3.99060000" + }, + { + "id": "67628", + "name": "Timbuktu", + "state_id": 248, + "state_code": "6", + "country_id": 134, + "country_code": "ML", + "latitude": "16.77348000", + "longitude": "-3.00742000" + }, + { + "id": "67758", + "name": "Attard", + "state_id": 110, + "state_code": "01", + "country_id": 135, + "country_code": "MT", + "latitude": "35.88972000", + "longitude": "14.44250000" + }, + { + "id": "67821", + "name": "Ħamrun", + "state_id": 105, + "state_code": "18", + "country_id": 135, + "country_code": "MT", + "latitude": "35.88472000", + "longitude": "14.48444000" + }, + { + "id": "67822", + "name": "Żabbar", + "state_id": 123, + "state_code": "64", + "country_id": 135, + "country_code": "MT", + "latitude": "35.87611000", + "longitude": "14.53500000" + }, + { + "id": "67773", + "name": "Haz-Zebbug", + "state_id": 85, + "state_code": "65", + "country_id": 135, + "country_code": "MT", + "latitude": "35.87194000", + "longitude": "14.44111000" + }, + { + "id": "67823", + "name": "Żebbuġ", + "state_id": 80, + "state_code": "66", + "country_id": 135, + "country_code": "MT", + "latitude": "36.07222000", + "longitude": "14.23583000" + }, + { + "id": "67824", + "name": "Żejtun", + "state_id": 135, + "state_code": "67", + "country_id": 135, + "country_code": "MT", + "latitude": "35.85583000", + "longitude": "14.53306000" + }, + { + "id": "67825", + "name": "Żurrieq", + "state_id": 76, + "state_code": "68", + "country_id": 135, + "country_code": "MT", + "latitude": "35.83111000", + "longitude": "14.47417000" + }, + { + "id": "67759", + "name": "Balzan", + "state_id": 108, + "state_code": "02", + "country_id": 135, + "country_code": "MT", + "latitude": "35.90028000", + "longitude": "14.45500000" + }, + { + "id": "67761", + "name": "Birżebbuġa", + "state_id": 88, + "state_code": "05", + "country_id": 135, + "country_code": "MT", + "latitude": "35.82583000", + "longitude": "14.52694000" + }, + { + "id": "67817", + "name": "Vittoriosa", + "state_id": 107, + "state_code": "03", + "country_id": 135, + "country_code": "MT", + "latitude": "35.89222000", + "longitude": "14.51833000" + }, + { + "id": "67760", + "name": "Birkirkara", + "state_id": 97, + "state_code": "04", + "country_id": 135, + "country_code": "MT", + "latitude": "35.89722000", + "longitude": "14.46111000" + }, + { + "id": "67762", + "name": "Cospicua", + "state_id": 138, + "state_code": "06", + "country_id": 135, + "country_code": "MT", + "latitude": "35.88556000", + "longitude": "14.52750000" + }, + { + "id": "67763", + "name": "Dingli", + "state_id": 117, + "state_code": "07", + "country_id": 135, + "country_code": "MT", + "latitude": "35.86139000", + "longitude": "14.38222000" + }, + { + "id": "67764", + "name": "Fgura", + "state_id": 129, + "state_code": "08", + "country_id": 135, + "country_code": "MT", + "latitude": "35.87028000", + "longitude": "14.51333000" + }, + { + "id": "67765", + "name": "Floriana", + "state_id": 84, + "state_code": "09", + "country_id": 135, + "country_code": "MT", + "latitude": "35.89583000", + "longitude": "14.50833000" + }, + { + "id": "67766", + "name": "Fontana", + "state_id": 134, + "state_code": "10", + "country_id": 135, + "country_code": "MT", + "latitude": "36.03750000", + "longitude": "14.23611000" + }, + { + "id": "67768", + "name": "Għajnsielem", + "state_id": 130, + "state_code": "13", + "country_id": 135, + "country_code": "MT", + "latitude": "36.02639000", + "longitude": "14.28500000" + }, + { + "id": "67772", + "name": "Hal Gharghur", + "state_id": 130, + "state_code": "13", + "country_id": 135, + "country_code": "MT", + "latitude": "35.92409000", + "longitude": "14.45118000" + }, + { + "id": "67770", + "name": "Għaxaq", + "state_id": 120, + "state_code": "15", + "country_id": 135, + "country_code": "MT", + "latitude": "35.84889000", + "longitude": "14.51667000" + }, + { + "id": "67767", + "name": "Gudja", + "state_id": 106, + "state_code": "16", + "country_id": 135, + "country_code": "MT", + "latitude": "35.84917000", + "longitude": "14.50306000" + }, + { + "id": "67771", + "name": "Gżira", + "state_id": 124, + "state_code": "17", + "country_id": 135, + "country_code": "MT", + "latitude": "35.90583000", + "longitude": "14.48806000" + }, + { + "id": "67769", + "name": "Għarb", + "state_id": 113, + "state_code": "12", + "country_id": 135, + "country_code": "MT", + "latitude": "36.06000000", + "longitude": "14.20889000" + }, + { + "id": "67781", + "name": "L-Iklin", + "state_id": 93, + "state_code": "19", + "country_id": 135, + "country_code": "MT", + "latitude": "35.90414000", + "longitude": "14.45415000" + }, + { + "id": "67777", + "name": "Imġarr", + "state_id": 99, + "state_code": "21", + "country_id": 135, + "country_code": "MT", + "latitude": "35.92056000", + "longitude": "14.36639000" + }, + { + "id": "67791", + "name": "Mġarr", + "state_id": 99, + "state_code": "21", + "country_id": 135, + "country_code": "MT", + "latitude": "36.02528000", + "longitude": "14.29500000" + }, + { + "id": "67789", + "name": "Mqabba", + "state_id": 91, + "state_code": "22", + "country_id": 135, + "country_code": "MT", + "latitude": "35.84763000", + "longitude": "14.46824000" + }, + { + "id": "67775", + "name": "Imsida", + "state_id": 82, + "state_code": "23", + "country_id": 135, + "country_code": "MT", + "latitude": "35.89250000", + "longitude": "14.48278000" + }, + { + "id": "67780", + "name": "Kirkop", + "state_id": 82, + "state_code": "23", + "country_id": 135, + "country_code": "MT", + "latitude": "35.84222000", + "longitude": "14.48528000" + }, + { + "id": "67776", + "name": "Imtarfa", + "state_id": 126, + "state_code": "24", + "country_id": 135, + "country_code": "MT", + "latitude": "35.89333000", + "longitude": "14.39889000" + }, + { + "id": "67782", + "name": "Lija", + "state_id": 126, + "state_code": "24", + "country_id": 135, + "country_code": "MT", + "latitude": "35.90056000", + "longitude": "14.44639000" + }, + { + "id": "67783", + "name": "Luqa", + "state_id": 77, + "state_code": "25", + "country_id": 135, + "country_code": "MT", + "latitude": "35.85889000", + "longitude": "14.48861000" + }, + { + "id": "67809", + "name": "Senglea", + "state_id": 77, + "state_code": "25", + "country_id": 135, + "country_code": "MT", + "latitude": "35.88750000", + "longitude": "14.51694000" + }, + { + "id": "67778", + "name": "Kalkara", + "state_id": 128, + "state_code": "26", + "country_id": 135, + "country_code": "MT", + "latitude": "35.88917000", + "longitude": "14.53278000" + }, + { + "id": "67779", + "name": "Kerċem", + "state_id": 137, + "state_code": "27", + "country_id": 135, + "country_code": "MT", + "latitude": "36.04194000", + "longitude": "14.22667000" + }, + { + "id": "67785", + "name": "Marsaskala", + "state_id": 137, + "state_code": "27", + "country_id": 135, + "country_code": "MT", + "latitude": "35.86220000", + "longitude": "14.56701000" + }, + { + "id": "67786", + "name": "Marsaxlokk", + "state_id": 78, + "state_code": "28", + "country_id": 135, + "country_code": "MT", + "latitude": "35.84194000", + "longitude": "14.54306000" + }, + { + "id": "67784", + "name": "Marsa", + "state_id": 109, + "state_code": "31", + "country_id": 135, + "country_code": "MT", + "latitude": "35.87917000", + "longitude": "14.49528000" + }, + { + "id": "67787", + "name": "Mellieħa", + "state_id": 96, + "state_code": "34", + "country_id": 135, + "country_code": "MT", + "latitude": "35.95639000", + "longitude": "14.36222000" + }, + { + "id": "67790", + "name": "Munxar", + "state_id": 132, + "state_code": "36", + "country_id": 135, + "country_code": "MT", + "latitude": "36.03000000", + "longitude": "14.23333000" + }, + { + "id": "67792", + "name": "Nadur", + "state_id": 133, + "state_code": "37", + "country_id": 135, + "country_code": "MT", + "latitude": "36.03778000", + "longitude": "14.29417000" + }, + { + "id": "67793", + "name": "Naxxar", + "state_id": 112, + "state_code": "38", + "country_id": 135, + "country_code": "MT", + "latitude": "35.91361000", + "longitude": "14.44361000" + }, + { + "id": "67794", + "name": "Paola", + "state_id": 115, + "state_code": "39", + "country_id": 135, + "country_code": "MT", + "latitude": "35.87306000", + "longitude": "14.49889000" + }, + { + "id": "67795", + "name": "Pembroke", + "state_id": 125, + "state_code": "40", + "country_id": 135, + "country_code": "MT", + "latitude": "35.93056000", + "longitude": "14.47639000" + }, + { + "id": "67796", + "name": "Pietà", + "state_id": 127, + "state_code": "41", + "country_id": 135, + "country_code": "MT", + "latitude": "35.89472000", + "longitude": "14.49500000" + }, + { + "id": "67797", + "name": "Qala", + "state_id": 79, + "state_code": "42", + "country_id": 135, + "country_code": "MT", + "latitude": "36.03611000", + "longitude": "14.30944000" + }, + { + "id": "67798", + "name": "Qormi", + "state_id": 119, + "state_code": "43", + "country_id": 135, + "country_code": "MT", + "latitude": "35.87601000", + "longitude": "14.47200000" + }, + { + "id": "67799", + "name": "Qrendi", + "state_id": 111, + "state_code": "44", + "country_id": 135, + "country_code": "MT", + "latitude": "35.83472000", + "longitude": "14.45833000" + }, + { + "id": "67803", + "name": "San Lawrenz", + "state_id": 87, + "state_code": "50", + "country_id": 135, + "country_code": "MT", + "latitude": "36.05556000", + "longitude": "14.20361000" + }, + { + "id": "67805", + "name": "San Ġiljan", + "state_id": 75, + "state_code": "49", + "country_id": 135, + "country_code": "MT", + "latitude": "35.91839000", + "longitude": "14.48977000" + }, + { + "id": "67804", + "name": "San Pawl il-Baħar", + "state_id": 116, + "state_code": "52", + "country_id": 135, + "country_code": "MT", + "latitude": "35.95064000", + "longitude": "14.41561000" + }, + { + "id": "67806", + "name": "Sannat", + "state_id": 116, + "state_code": "52", + "country_id": 135, + "country_code": "MT", + "latitude": "36.02444000", + "longitude": "14.24278000" + }, + { + "id": "67808", + "name": "Santa Venera", + "state_id": 94, + "state_code": "53", + "country_id": 135, + "country_code": "MT", + "latitude": "35.89083000", + "longitude": "14.47417000" + }, + { + "id": "67774", + "name": "Imdina", + "state_id": 136, + "state_code": "20", + "country_id": 135, + "country_code": "MT", + "latitude": "35.88694000", + "longitude": "14.40250000" + }, + { + "id": "67810", + "name": "Siġġiewi", + "state_id": 98, + "state_code": "55", + "country_id": 135, + "country_code": "MT", + "latitude": "35.85556000", + "longitude": "14.43639000" + }, + { + "id": "67811", + "name": "Sliema", + "state_id": 104, + "state_code": "56", + "country_id": 135, + "country_code": "MT", + "latitude": "35.91250000", + "longitude": "14.50194000" + }, + { + "id": "67801", + "name": "Saint John", + "state_id": 100, + "state_code": "48", + "country_id": 135, + "country_code": "MT", + "latitude": "35.90556000", + "longitude": "14.47611000" + }, + { + "id": "67788", + "name": "Mosta", + "state_id": 139, + "state_code": "51", + "country_id": 135, + "country_code": "MT", + "latitude": "35.90917000", + "longitude": "14.42556000" + }, + { + "id": "67802", + "name": "Saint Lucia", + "state_id": 139, + "state_code": "51", + "country_id": 135, + "country_code": "MT", + "latitude": "36.04306000", + "longitude": "14.21722000" + }, + { + "id": "67807", + "name": "Santa Luċija", + "state_id": 139, + "state_code": "51", + "country_id": 135, + "country_code": "MT", + "latitude": "35.86278000", + "longitude": "14.50750000" + }, + { + "id": "67812", + "name": "Swieqi", + "state_id": 86, + "state_code": "57", + "country_id": 135, + "country_code": "MT", + "latitude": "35.92250000", + "longitude": "14.48000000" + }, + { + "id": "67814", + "name": "Ta’ Xbiex", + "state_id": 122, + "state_code": "58", + "country_id": 135, + "country_code": "MT", + "latitude": "35.89917000", + "longitude": "14.49444000" + }, + { + "id": "67813", + "name": "Tarxien", + "state_id": 103, + "state_code": "59", + "country_id": 135, + "country_code": "MT", + "latitude": "35.86583000", + "longitude": "14.51500000" + }, + { + "id": "67815", + "name": "Valletta", + "state_id": 95, + "state_code": "60", + "country_id": 135, + "country_code": "MT", + "latitude": "35.89972000", + "longitude": "14.51472000" + }, + { + "id": "67800", + "name": "Rabat", + "state_id": 101, + "state_code": "45", + "country_id": 135, + "country_code": "MT", + "latitude": "35.88152000", + "longitude": "14.39872000" + }, + { + "id": "67816", + "name": "Victoria", + "state_id": 101, + "state_code": "45", + "country_id": 135, + "country_code": "MT", + "latitude": "36.04444000", + "longitude": "14.23972000" + }, + { + "id": "67818", + "name": "Xagħra", + "state_id": 114, + "state_code": "61", + "country_id": 135, + "country_code": "MT", + "latitude": "36.05000000", + "longitude": "14.26444000" + }, + { + "id": "67819", + "name": "Xewkija", + "state_id": 121, + "state_code": "62", + "country_id": 135, + "country_code": "MT", + "latitude": "36.03278000", + "longitude": "14.25806000" + }, + { + "id": "67820", + "name": "Xgħajra", + "state_id": 81, + "state_code": "63", + "country_id": 135, + "country_code": "MT", + "latitude": "35.88556000", + "longitude": "14.54750000" + }, + { + "id": "67746", + "name": "Atar", + "state_id": 3344, + "state_code": "07", + "country_id": 139, + "country_code": "MR", + "latitude": "20.51770000", + "longitude": "-13.04857000" + }, + { + "id": "67748", + "name": "Chingueṭṭi", + "state_id": 3344, + "state_code": "07", + "country_id": 139, + "country_code": "MR", + "latitude": "20.46300000", + "longitude": "-12.36200000" + }, + { + "id": "67747", + "name": "Barkéwol", + "state_id": 3349, + "state_code": "03", + "country_id": 139, + "country_code": "MR", + "latitude": "16.64039000", + "longitude": "-12.49849000" + }, + { + "id": "67750", + "name": "Kiffa", + "state_id": 3349, + "state_code": "03", + "country_id": 139, + "country_code": "MR", + "latitude": "16.62073000", + "longitude": "-11.40208000" + }, + { + "id": "67745", + "name": "Aleg", + "state_id": 3339, + "state_code": "05", + "country_id": 139, + "country_code": "MR", + "latitude": "17.05314000", + "longitude": "-13.91312000" + }, + { + "id": "67757", + "name": "’Elb el Jmel", + "state_id": 3339, + "state_code": "05", + "country_id": 139, + "country_code": "MR", + "latitude": "17.01050000", + "longitude": "-13.97102000" + }, + { + "id": "67751", + "name": "Nouadhibou", + "state_id": 3346, + "state_code": "08", + "country_id": 139, + "country_code": "MR", + "latitude": "20.94188000", + "longitude": "-17.03842000" + }, + { + "id": "67749", + "name": "Kaédi", + "state_id": 3341, + "state_code": "04", + "country_id": 139, + "country_code": "MR", + "latitude": "16.15027000", + "longitude": "-13.50370000" + }, + { + "id": "67754", + "name": "Sélibaby", + "state_id": 3350, + "state_code": "10", + "country_id": 139, + "country_code": "MR", + "latitude": "15.15846000", + "longitude": "-12.18430000" + }, + { + "id": "67752", + "name": "Néma", + "state_id": 3338, + "state_code": "01", + "country_id": 139, + "country_code": "MR", + "latitude": "16.61702000", + "longitude": "-7.25649000" + }, + { + "id": "67743", + "name": "Aioun", + "state_id": 3351, + "state_code": "02", + "country_id": 139, + "country_code": "MR", + "latitude": "16.66140000", + "longitude": "-9.61490000" + }, + { + "id": "67744", + "name": "Akjoujt", + "state_id": 3342, + "state_code": "12", + "country_id": 139, + "country_code": "MR", + "latitude": "19.74657000", + "longitude": "-14.38531000" + }, + { + "id": "67756", + "name": "Zouerate", + "state_id": 3340, + "state_code": "11", + "country_id": 139, + "country_code": "MR", + "latitude": "22.73542000", + "longitude": "-12.47134000" + }, + { + "id": "67753", + "name": "Rosso", + "state_id": 3348, + "state_code": "06", + "country_id": 139, + "country_code": "MR", + "latitude": "16.51378000", + "longitude": "-15.80503000" + }, + { + "id": "67755", + "name": "Tékane", + "state_id": 3348, + "state_code": "06", + "country_id": 139, + "country_code": "MR", + "latitude": "16.60175000", + "longitude": "-15.34866000" + }, + { + "id": "67922", + "name": "Vingt Cinq", + "state_id": 3248, + "state_code": "AG", + "country_id": 140, + "country_code": "MU", + "latitude": "-10.38803000", + "longitude": "56.61795000" + }, + { + "id": "67844", + "name": "Cargados Carajos", + "state_id": 3251, + "state_code": "CC", + "country_id": 140, + "country_code": "MU", + "latitude": "-16.60329000", + "longitude": "59.65851000" + }, + { + "id": "67834", + "name": "Bel Air Rivière Sèche", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.25777000", + "longitude": "57.74976000" + }, + { + "id": "67836", + "name": "Bon Accueil", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.17083000", + "longitude": "57.65639000" + }, + { + "id": "67837", + "name": "Brisée Verdière", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.16389000", + "longitude": "57.64667000" + }, + { + "id": "67842", + "name": "Camp de Masque", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.23694000", + "longitude": "57.66333000" + }, + { + "id": "67840", + "name": "Camp Ithier", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.21583000", + "longitude": "57.74556000" + }, + { + "id": "67846", + "name": "Centre de Flacq", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.18972000", + "longitude": "57.71444000" + }, + { + "id": "67850", + "name": "Clémencia", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.26389000", + "longitude": "57.70611000" + }, + { + "id": "67858", + "name": "Ecroignard", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.22611000", + "longitude": "57.73611000" + }, + { + "id": "67868", + "name": "Grande Rivière Sud Est", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.28611000", + "longitude": "57.77583000" + }, + { + "id": "67870", + "name": "Lalmatie", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.18972000", + "longitude": "57.66111000" + }, + { + "id": "67871", + "name": "Laventure", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.14583000", + "longitude": "57.67667000" + }, + { + "id": "67876", + "name": "Mare La Chaux", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.19806000", + "longitude": "57.74944000" + }, + { + "id": "67884", + "name": "Olivia", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.28778000", + "longitude": "57.73097000" + }, + { + "id": "67897", + "name": "Poste de Flacq", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.16306000", + "longitude": "57.73056000" + }, + { + "id": "67901", + "name": "Quatre Cocos", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.20151000", + "longitude": "57.77448000" + }, + { + "id": "67902", + "name": "Quatre Soeurs", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.29917000", + "longitude": "57.77056000" + }, + { + "id": "67903", + "name": "Queen Victoria", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.22000000", + "longitude": "57.70750000" + }, + { + "id": "67911", + "name": "Saint Julien", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.22639000", + "longitude": "57.63639000" + }, + { + "id": "67913", + "name": "Sebastopol", + "state_id": 3254, + "state_code": "FL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.29070000", + "longitude": "57.68779000" + }, + { + "id": "67831", + "name": "Bambous Virieux", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.34278000", + "longitude": "57.75750000" + }, + { + "id": "67833", + "name": "Beau Vallon", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.41889000", + "longitude": "57.69528000" + }, + { + "id": "67835", + "name": "Bois des Amourettes", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.36306000", + "longitude": "57.73111000" + }, + { + "id": "67849", + "name": "Cluny", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.36694000", + "longitude": "57.60389000" + }, + { + "id": "67866", + "name": "Grand Sable", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.31417000", + "longitude": "57.76444000" + }, + { + "id": "67874", + "name": "Mahébourg", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.40806000", + "longitude": "57.70000000" + }, + { + "id": "67881", + "name": "New Grove", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.40861000", + "longitude": "57.61361000" + }, + { + "id": "67883", + "name": "Nouvelle France", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.37056000", + "longitude": "57.56111000" + }, + { + "id": "67891", + "name": "Plaine Magnien", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.42967000", + "longitude": "57.66968000" + }, + { + "id": "67908", + "name": "Rose Belle", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.40028000", + "longitude": "57.59667000" + }, + { + "id": "67910", + "name": "Saint Hubert", + "state_id": 3264, + "state_code": "GP", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.36417000", + "longitude": "57.63833000" + }, + { + "id": "67841", + "name": "Camp Thorel", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.21472000", + "longitude": "57.61611000" + }, + { + "id": "67855", + "name": "Dagotière", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.24476000", + "longitude": "57.56188000" + }, + { + "id": "67856", + "name": "Dubreuil", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.30132000", + "longitude": "57.59861000" + }, + { + "id": "67877", + "name": "Melrose", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.26972000", + "longitude": "57.63194000" + }, + { + "id": "67879", + "name": "Moka", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.21889000", + "longitude": "57.49583000" + }, + { + "id": "67885", + "name": "Pailles", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.19271000", + "longitude": "57.48826000" + }, + { + "id": "67898", + "name": "Providence", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.24472000", + "longitude": "57.61222000" + }, + { + "id": "67899", + "name": "Quartier Militaire", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.24790000", + "longitude": "57.59737000" + }, + { + "id": "67912", + "name": "Saint Pierre", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.21750000", + "longitude": "57.52083000" + }, + { + "id": "67921", + "name": "Verdun", + "state_id": 3253, + "state_code": "MO", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.23417000", + "longitude": "57.55476000" + }, + { + "id": "67828", + "name": "Arsenal", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.10556000", + "longitude": "57.53528000" + }, + { + "id": "67838", + "name": "Calebasses", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.11167000", + "longitude": "57.55389000" + }, + { + "id": "67851", + "name": "Congomah", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.14889000", + "longitude": "57.59083000" + }, + { + "id": "67853", + "name": "Crève Coeur", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.19111000", + "longitude": "57.55722000" + }, + { + "id": "67861", + "name": "Fond du Sac", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.04732000", + "longitude": "57.58400000" + }, + { + "id": "67872", + "name": "Le Hochet", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.13500000", + "longitude": "57.52111000" + }, + { + "id": "67873", + "name": "Long Mountain", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.14306000", + "longitude": "57.56222000" + }, + { + "id": "67880", + "name": "Morcellement Saint André", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.07199000", + "longitude": "57.56833000" + }, + { + "id": "67882", + "name": "Notre Dame", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.14056000", + "longitude": "57.55306000" + }, + { + "id": "67886", + "name": "Pamplemousses", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.10389000", + "longitude": "57.57028000" + }, + { + "id": "67892", + "name": "Plaine des Papayes", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.06500000", + "longitude": "57.57250000" + }, + { + "id": "67894", + "name": "Pointe aux Piments", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.06494000", + "longitude": "57.52347000" + }, + { + "id": "67917", + "name": "Terre Rouge", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.12611000", + "longitude": "57.52444000" + }, + { + "id": "67919", + "name": "Triolet", + "state_id": 3250, + "state_code": "PA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.05760000", + "longitude": "57.55025000" + }, + { + "id": "67832", + "name": "Beau Bassin-Rose Hill", + "state_id": 3263, + "state_code": "PW", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.23325000", + "longitude": "57.46609000" + }, + { + "id": "67854", + "name": "Curepipe", + "state_id": 3263, + "state_code": "PW", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.31628000", + "longitude": "57.52594000" + }, + { + "id": "67857", + "name": "Ebene", + "state_id": 3263, + "state_code": "PW", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.24494000", + "longitude": "57.49163000" + }, + { + "id": "67878", + "name": "Midlands", + "state_id": 3263, + "state_code": "PW", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.31907000", + "longitude": "57.57016000" + }, + { + "id": "67900", + "name": "Quatre Bornes", + "state_id": 3263, + "state_code": "PW", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.26381000", + "longitude": "57.47910000" + }, + { + "id": "67920", + "name": "Vacoas", + "state_id": 3263, + "state_code": "PW", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.29806000", + "longitude": "57.47833000" + }, + { + "id": "67895", + "name": "Port Louis", + "state_id": 3260, + "state_code": "PL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.16194000", + "longitude": "57.49889000" + }, + { + "id": "67827", + "name": "Amaury", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.13083000", + "longitude": "57.65917000" + }, + { + "id": "67843", + "name": "Cap Malheureux", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-19.98417000", + "longitude": "57.61417000" + }, + { + "id": "67852", + "name": "Cottage", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.05972000", + "longitude": "57.62917000" + }, + { + "id": "67859", + "name": "Espérance Trébuchet", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.06972000", + "longitude": "57.64194000" + }, + { + "id": "67862", + "name": "Goodlands", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.03841000", + "longitude": "57.65055000" + }, + { + "id": "67863", + "name": "Grand Baie", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.01816000", + "longitude": "57.58015000" + }, + { + "id": "67865", + "name": "Grand Gaube", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.00639000", + "longitude": "57.66083000" + }, + { + "id": "67875", + "name": "Mapou", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.07583000", + "longitude": "57.60139000" + }, + { + "id": "67887", + "name": "Petit Raffray", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.02022000", + "longitude": "57.62296000" + }, + { + "id": "67890", + "name": "Piton", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.09028000", + "longitude": "57.63028000" + }, + { + "id": "67893", + "name": "Plaines des Roches", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.11167000", + "longitude": "57.69083000" + }, + { + "id": "67905", + "name": "Rivière du Rempart", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.10306000", + "longitude": "57.68472000" + }, + { + "id": "67906", + "name": "Roche Terre", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.01861000", + "longitude": "57.64472000" + }, + { + "id": "67907", + "name": "Roches Noire", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.11111000", + "longitude": "57.71222000" + }, + { + "id": "67918", + "name": "The Vale", + "state_id": 3261, + "state_code": "RR", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.03018000", + "longitude": "57.60219000" + }, + { + "id": "67826", + "name": "Albion", + "state_id": 3259, + "state_code": "BL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.20814000", + "longitude": "57.40766000" + }, + { + "id": "67830", + "name": "Bambous", + "state_id": 3259, + "state_code": "BL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.25667000", + "longitude": "57.40611000" + }, + { + "id": "67845", + "name": "Cascavelle", + "state_id": 3259, + "state_code": "BL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.28694000", + "longitude": "57.40722000" + }, + { + "id": "67860", + "name": "Flic en Flac", + "state_id": 3259, + "state_code": "BL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.27417000", + "longitude": "57.36306000" + }, + { + "id": "67867", + "name": "Grande Rivière Noire", + "state_id": 3259, + "state_code": "BL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.36028000", + "longitude": "57.36611000" + }, + { + "id": "67869", + "name": "Gros Cailloux", + "state_id": 3259, + "state_code": "BL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.20722000", + "longitude": "57.43000000" + }, + { + "id": "67888", + "name": "Petite Case Noyale", + "state_id": 3259, + "state_code": "BL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.39306000", + "longitude": "57.36500000" + }, + { + "id": "67889", + "name": "Petite Rivière", + "state_id": 3259, + "state_code": "BL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.19551000", + "longitude": "57.44592000" + }, + { + "id": "67916", + "name": "Tamarin", + "state_id": 3259, + "state_code": "BL", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.32556000", + "longitude": "57.37056000" + }, + { + "id": "67829", + "name": "Baie aux Huîtres", + "state_id": 3249, + "state_code": "RO", + "country_id": 140, + "country_code": "MU", + "latitude": "-19.69444000", + "longitude": "63.40833000" + }, + { + "id": "67896", + "name": "Port Mathurin", + "state_id": 3249, + "state_code": "RO", + "country_id": 140, + "country_code": "MU", + "latitude": "-19.68333000", + "longitude": "63.41667000" + }, + { + "id": "67839", + "name": "Camp Diable", + "state_id": 3257, + "state_code": "SA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.46278000", + "longitude": "57.57889000" + }, + { + "id": "67847", + "name": "Chamouny", + "state_id": 3257, + "state_code": "SA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.48222000", + "longitude": "57.46611000" + }, + { + "id": "67848", + "name": "Chemin Grenier", + "state_id": 3257, + "state_code": "SA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.48722000", + "longitude": "57.46556000" + }, + { + "id": "67864", + "name": "Grand Bois", + "state_id": 3257, + "state_code": "SA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.41889000", + "longitude": "57.54417000" + }, + { + "id": "67904", + "name": "Rivière des Anguilles", + "state_id": 3257, + "state_code": "SA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.48528000", + "longitude": "57.55083000" + }, + { + "id": "67909", + "name": "Saint Aubin", + "state_id": 3257, + "state_code": "SA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.49600000", + "longitude": "57.55000000" + }, + { + "id": "67914", + "name": "Souillac", + "state_id": 3257, + "state_code": "SA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.51667000", + "longitude": "57.51667000" + }, + { + "id": "67915", + "name": "Surinam", + "state_id": 3257, + "state_code": "SA", + "country_id": 140, + "country_code": "MU", + "latitude": "-20.50972000", + "longitude": "57.50528000" + }, + { + "id": "68127", + "name": "Aguascalientes", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.88333000", + "longitude": "-102.30000000" + }, + { + "id": "68336", + "name": "Arboledas Paso Blanco [Fraccionamiento]", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.96361000", + "longitude": "-102.30194000" + }, + { + "id": "68342", + "name": "Arellano", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.80106000", + "longitude": "-102.27384000" + }, + { + "id": "68380", + "name": "Asientos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.23333000", + "longitude": "-102.08333000" + }, + { + "id": "68616", + "name": "Bimbaletes Aguascalientes (El Álamo)", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.23444000", + "longitude": "-102.01917000" + }, + { + "id": "68752", + "name": "Calvillo", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.85000000", + "longitude": "-102.71666000" + }, + { + "id": "68820", + "name": "Carboneras", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.18311000", + "longitude": "-102.24601000" + }, + { + "id": "68844", + "name": "Cartagena [Fraccionamiento]", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95639000", + "longitude": "-102.27639000" + }, + { + "id": "68900", + "name": "Centro de Arriba", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.73123000", + "longitude": "-102.49888000" + }, + { + "id": "69197", + "name": "Ciénega Grande", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.19434000", + "longitude": "-102.01940000" + }, + { + "id": "69486", + "name": "Corral de Barrancos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95028000", + "longitude": "-102.33222000" + }, + { + "id": "69507", + "name": "Cosío", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.36667000", + "longitude": "-102.30000000" + }, + { + "id": "69510", + "name": "Cotorina", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.75154000", + "longitude": "-102.26832000" + }, + { + "id": "69539", + "name": "Crucero Las Pilas", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.82722000", + "longitude": "-102.76033000" + }, + { + "id": "69634", + "name": "Cumbres III", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.92222000", + "longitude": "-102.23750000" + }, + { + "id": "69813", + "name": "Ejido la Guayana (Rancho Seco)", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.98028000", + "longitude": "-102.27306000" + }, + { + "id": "69837", + "name": "El Bajío", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.24558000", + "longitude": "-102.30825000" + }, + { + "id": "69899", + "name": "El Chayote", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.28667000", + "longitude": "-102.23900000" + }, + { + "id": "69935", + "name": "El Cuervero (Cuerveros)", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.86056000", + "longitude": "-102.68389000" + }, + { + "id": "70023", + "name": "El Llano", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.91667000", + "longitude": "-101.96666000" + }, + { + "id": "70154", + "name": "El Refugio de Peñuelas", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.71635000", + "longitude": "-102.28941000" + }, + { + "id": "70155", + "name": "El Refugio de Providencia (Providencia)", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.34667000", + "longitude": "-102.25778000" + }, + { + "id": "70185", + "name": "El Salero", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.38706000", + "longitude": "-102.32323000" + }, + { + "id": "70240", + "name": "El Tule", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.08438000", + "longitude": "-102.09100000" + }, + { + "id": "70285", + "name": "Emiliano Zapata", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.10635000", + "longitude": "-102.30056000" + }, + { + "id": "70315", + "name": "Escaleras", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.25054000", + "longitude": "-102.33377000" + }, + { + "id": "70387", + "name": "Ex-Viñedos Guadalupe", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95944000", + "longitude": "-102.27417000" + }, + { + "id": "70535", + "name": "General Ignacio Zaragoza", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.88136000", + "longitude": "-102.46454000" + }, + { + "id": "70608", + "name": "Guadalupe de Atlas", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.26653000", + "longitude": "-102.03118000" + }, + { + "id": "70989", + "name": "Jaltiche de Arriba", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.77525000", + "longitude": "-102.78849000" + }, + { + "id": "70993", + "name": "Jaltomate", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.01528000", + "longitude": "-102.14583000" + }, + { + "id": "71007", + "name": "Jarillas", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.29611000", + "longitude": "-102.06333000" + }, + { + "id": "71024", + "name": "Jesús Gómez Portugal", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.99607000", + "longitude": "-102.29095000" + }, + { + "id": "71025", + "name": "Jesús Gómez Portugal (Margaritas)", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.99917000", + "longitude": "-102.29139000" + }, + { + "id": "71032", + "name": "Jesús María", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.96667000", + "longitude": "-102.35000000" + }, + { + "id": "71232", + "name": "La Concepción", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03537000", + "longitude": "-102.29989000" + }, + { + "id": "71267", + "name": "La Escondida", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03573000", + "longitude": "-102.25931000" + }, + { + "id": "71340", + "name": "La Labor", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.96207000", + "longitude": "-102.69626000" + }, + { + "id": "71369", + "name": "La Loma de los Negritos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.87056000", + "longitude": "-102.35000000" + }, + { + "id": "71431", + "name": "La Panadera", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.86398000", + "longitude": "-102.69832000" + }, + { + "id": "71467", + "name": "La Punta", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.32411000", + "longitude": "-102.29212000" + }, + { + "id": "71656", + "name": "Las Ánimas", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.09057000", + "longitude": "-102.26684000" + }, + { + "id": "71627", + "name": "Las Norias de Ojocaliente", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.88944000", + "longitude": "-102.21738000" + }, + { + "id": "71893", + "name": "Lázaro Cárdenas", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.17137000", + "longitude": "-102.02704000" + }, + { + "id": "71774", + "name": "Los Arquitos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.92299000", + "longitude": "-102.38554000" + }, + { + "id": "71785", + "name": "Los Caños", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.78167000", + "longitude": "-102.46750000" + }, + { + "id": "71792", + "name": "Los Conos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.89739000", + "longitude": "-101.99487000" + }, + { + "id": "71903", + "name": "Macario J. Gómez [Colonia]", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.98056000", + "longitude": "-102.25139000" + }, + { + "id": "71948", + "name": "Malpaso", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.85896000", + "longitude": "-102.66441000" + }, + { + "id": "71986", + "name": "Maravillas", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95408000", + "longitude": "-102.32982000" + }, + { + "id": "72079", + "name": "Mesa Grande", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.80529000", + "longitude": "-102.72181000" + }, + { + "id": "72155", + "name": "Miravalle", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.97250000", + "longitude": "-102.31139000" + }, + { + "id": "72187", + "name": "Molinos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.16278000", + "longitude": "-102.09472000" + }, + { + "id": "72221", + "name": "Montoro", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.75603000", + "longitude": "-102.30219000" + }, + { + "id": "72353", + "name": "Noria del Borrego (Norias)", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.28722000", + "longitude": "-102.04194000" + }, + { + "id": "72354", + "name": "Norias del Paso Hondo", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.86177000", + "longitude": "-102.20681000" + }, + { + "id": "72491", + "name": "Ojo de Agua de Crucitas", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.96426000", + "longitude": "-101.95202000" + }, + { + "id": "72498", + "name": "Ojocaliente", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.87390000", + "longitude": "-102.67684000" + }, + { + "id": "72562", + "name": "Pabellón de Arteaga", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.15000000", + "longitude": "-102.26666000" + }, + { + "id": "72563", + "name": "Pabellón de Hidalgo", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.17871000", + "longitude": "-102.34014000" + }, + { + "id": "72604", + "name": "Palo Alto", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.91801000", + "longitude": "-101.96453000" + }, + { + "id": "72652", + "name": "Paredes", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.14958000", + "longitude": "-102.48232000" + }, + { + "id": "72671", + "name": "Paseos de la Providencia [Fraccionamiento]", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.02425000", + "longitude": "-102.27711000" + }, + { + "id": "72672", + "name": "Paseos de las Haciendas [Fraccionamiento]", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.99222000", + "longitude": "-102.34361000" + }, + { + "id": "72675", + "name": "Paso Blanco", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.97361000", + "longitude": "-102.31694000" + }, + { + "id": "72755", + "name": "Peñuelas (El Cienegal)", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.72250000", + "longitude": "-102.27583000" + }, + { + "id": "72777", + "name": "Pilotos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03722000", + "longitude": "-101.95917000" + }, + { + "id": "72835", + "name": "Pocitos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.92167000", + "longitude": "-102.33472000" + }, + { + "id": "72964", + "name": "Puertecito de la Virgen", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.96028000", + "longitude": "-102.26889000" + }, + { + "id": "73133", + "name": "Rincón de Romos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.23333000", + "longitude": "-102.31666000" + }, + { + "id": "73315", + "name": "San Antonio", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.22823000", + "longitude": "-102.25034000" + }, + { + "id": "73374", + "name": "San Antonio de los Horcones", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.99832000", + "longitude": "-102.32663000" + }, + { + "id": "73376", + "name": "San Antonio de los Ríos", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.16104000", + "longitude": "-102.47118000" + }, + { + "id": "73365", + "name": "San Antonio de Peñuelas", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.67471000", + "longitude": "-102.30010000" + }, + { + "id": "73616", + "name": "San Francisco de los Romo", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03307000", + "longitude": "-102.22902000" + }, + { + "id": "73650", + "name": "San Ignacio", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.89269000", + "longitude": "-102.33974000" + }, + { + "id": "73693", + "name": "San Jacinto", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.34861000", + "longitude": "-102.23361000" + }, + { + "id": "73819", + "name": "San José de Gracia", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.15000000", + "longitude": "-102.41666000" + }, + { + "id": "74058", + "name": "San Luis de Letras", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.13551000", + "longitude": "-102.29729000" + }, + { + "id": "74475", + "name": "San Sebastián [Fraccionamiento]", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.82139000", + "longitude": "-102.27111000" + }, + { + "id": "74490", + "name": "San Tadeo", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.91954000", + "longitude": "-102.70043000" + }, + { + "id": "74680", + "name": "Santa Isabel [Fraccionamiento]", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.08111000", + "longitude": "-102.26778000" + }, + { + "id": "74807", + "name": "Santa María de la Paz", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.38786000", + "longitude": "-102.25697000" + }, + { + "id": "74839", + "name": "Santa Rosa (El Huizache)", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.93500000", + "longitude": "-102.02194000" + }, + { + "id": "74869", + "name": "Santiago", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.11948000", + "longitude": "-102.33769000" + }, + { + "id": "75415", + "name": "Tepetates", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95667000", + "longitude": "-102.32167000" + }, + { + "id": "75446", + "name": "Tepezalá", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21667000", + "longitude": "-102.16666000" + }, + { + "id": "75913", + "name": "Valladolid", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.02111000", + "longitude": "-102.31500000" + }, + { + "id": "75915", + "name": "Valle Huejúcar (Fraccionamiento Popular) [Fraccionamiento]", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.83111000", + "longitude": "-102.75028000" + }, + { + "id": "76024", + "name": "Villa Juárez", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "22.09447000", + "longitude": "-102.06930000" + }, + { + "id": "76026", + "name": "Villa Licenciado Jesús Terán (Calvillito)", + "state_id": 3456, + "state_code": "AGU", + "country_id": 142, + "country_code": "MX", + "latitude": "21.82528000", + "longitude": "-102.18778000" + }, + { + "id": "68194", + "name": "Alfonso Garzón [Granjas Familiares]", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.54667000", + "longitude": "-116.61722000" + }, + { + "id": "68586", + "name": "Benito García (El Zorrillo)", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.67111000", + "longitude": "-116.51139000" + }, + { + "id": "68596", + "name": "Benito Juárez", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.56852000", + "longitude": "-114.99422000" + }, + { + "id": "68689", + "name": "Buenos Aires", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.42278000", + "longitude": "-116.94111000" + }, + { + "id": "68757", + "name": "Camalú", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.84222000", + "longitude": "-116.06328000" + }, + { + "id": "68906", + "name": "Cereso del Hongo", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.48417000", + "longitude": "-116.25056000" + }, + { + "id": "69150", + "name": "Ciudad Coahuila (Kilómetro Cincuenta y Siete)", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.19556000", + "longitude": "-115.00250000" + }, + { + "id": "69172", + "name": "Ciudad Morelos", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.34389000", + "longitude": "-117.01056000" + }, + { + "id": "69260", + "name": "Colinas del Sol", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.40306000", + "longitude": "-117.03056000" + }, + { + "id": "69310", + "name": "Colonia Gómez Morín", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.88167000", + "longitude": "-116.54389000" + }, + { + "id": "69323", + "name": "Colonia Lomas de San Ramón (Triquis)", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.70167000", + "longitude": "-116.00278000" + }, + { + "id": "69339", + "name": "Colonia Nueva Era", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.50667000", + "longitude": "-115.92250000" + }, + { + "id": "69376", + "name": "Colonia Venustiano Carranza", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.23700000", + "longitude": "-115.16656000" + }, + { + "id": "69677", + "name": "Delta", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.35497000", + "longitude": "-115.19617000" + }, + { + "id": "69691", + "name": "Doctor Alberto Oviedo Mota", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.22756000", + "longitude": "-115.16792000" + }, + { + "id": "69732", + "name": "Durango", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.24865000", + "longitude": "-115.25227000" + }, + { + "id": "69762", + "name": "Ejido Doctor Alberto Oviedo Mota (El Indiviso)", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.02444000", + "longitude": "-114.98361000" + }, + { + "id": "69765", + "name": "Ejido General Leandro Valle", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.62167000", + "longitude": "-115.96583000" + }, + { + "id": "69768", + "name": "Ejido Javier Rojo Gómez", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.49389000", + "longitude": "-116.82222000" + }, + { + "id": "69770", + "name": "Ejido Jiquilpan", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.50131000", + "longitude": "-115.06382000" + }, + { + "id": "69774", + "name": "Ejido Lázaro Cárdenas", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.60794000", + "longitude": "-115.02076000" + }, + { + "id": "69776", + "name": "Ejido Michoacán de Ocampo", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.46512000", + "longitude": "-115.31003000" + }, + { + "id": "69778", + "name": "Ejido Netzahualcóyotl", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.62444000", + "longitude": "-115.06222000" + }, + { + "id": "69780", + "name": "Ejido Nuevo León", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.41103000", + "longitude": "-115.18827000" + }, + { + "id": "69782", + "name": "Ejido Ojo de Agua", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.47556000", + "longitude": "-116.78917000" + }, + { + "id": "69785", + "name": "Ejido Pátzcuaro", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.35139000", + "longitude": "-115.06583000" + }, + { + "id": "69784", + "name": "Ejido Plan de Ayala", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.22023000", + "longitude": "-115.03158000" + }, + { + "id": "69786", + "name": "Ejido Quintana Roo", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.46844000", + "longitude": "-115.08250000" + }, + { + "id": "69787", + "name": "Ejido Saltillo", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.42430000", + "longitude": "-115.12480000" + }, + { + "id": "69792", + "name": "Ejido Sinaloa", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.54734000", + "longitude": "-115.27041000" + }, + { + "id": "69793", + "name": "Ejido Sonora", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.28749000", + "longitude": "-115.23134000" + }, + { + "id": "69794", + "name": "Ejido Tabasco", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.56187000", + "longitude": "-114.92659000" + }, + { + "id": "69795", + "name": "Ejido Toluca", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.43050000", + "longitude": "-115.08316000" + }, + { + "id": "69798", + "name": "Ejido Vicente Guerrero", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.39593000", + "longitude": "-115.14026000" + }, + { + "id": "69800", + "name": "Ejido Yucatán", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.60435000", + "longitude": "-115.09380000" + }, + { + "id": "70066", + "name": "El Niño", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.50750000", + "longitude": "-116.79194000" + }, + { + "id": "70116", + "name": "El Porvenir", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.07606000", + "longitude": "-116.62473000" + }, + { + "id": "70178", + "name": "El Rosario de Arriba", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.05984000", + "longitude": "-115.72448000" + }, + { + "id": "70203", + "name": "El Sauzal de Rodríguez", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.89329000", + "longitude": "-116.69256000" + }, + { + "id": "70289", + "name": "Emiliano Zapata", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.75417000", + "longitude": "-116.00306000" + }, + { + "id": "70305", + "name": "Ensenada", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.86667000", + "longitude": "-116.61666000" + }, + { + "id": "70337", + "name": "Estación Coahuila", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.19304000", + "longitude": "-114.99933000" + }, + { + "id": "70349", + "name": "Estación Pescaderos", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.31196000", + "longitude": "-115.13823000" + }, + { + "id": "70449", + "name": "Fraccionamiento del Valle", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.91139000", + "longitude": "-116.26056000" + }, + { + "id": "70484", + "name": "Francisco Zarco", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.09872000", + "longitude": "-116.56863000" + }, + { + "id": "70599", + "name": "Guadalupe Victoria", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.28924000", + "longitude": "-115.10534000" + }, + { + "id": "70633", + "name": "Guerrero Negro", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "27.96891000", + "longitude": "-114.04427000" + }, + { + "id": "70655", + "name": "Hacienda Tecate", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.56500000", + "longitude": "-116.52500000" + }, + { + "id": "70673", + "name": "Hermosillo", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.51097000", + "longitude": "-114.92278000" + }, + { + "id": "70888", + "name": "Islas Agrarias Grupo A", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.61096000", + "longitude": "-115.33151000" + }, + { + "id": "70889", + "name": "Islas Agrarias Grupo B", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.60034000", + "longitude": "-115.27172000" + }, + { + "id": "71277", + "name": "La Esperanza [Granjas Familiares]", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.46278000", + "longitude": "-117.10500000" + }, + { + "id": "71463", + "name": "La Providencia", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.96889000", + "longitude": "-116.15861000" + }, + { + "id": "71581", + "name": "Las Brisas", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.96056000", + "longitude": "-116.16444000" + }, + { + "id": "71597", + "name": "Las Delicias", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.40889000", + "longitude": "-116.94361000" + }, + { + "id": "71891", + "name": "Lázaro Cárdenas", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.52815000", + "longitude": "-115.92617000" + }, + { + "id": "71676", + "name": "Licenciado Gustavo Díaz Ordaz", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.97506000", + "longitude": "-116.15565000" + }, + { + "id": "71753", + "name": "Lomas de Santa Anita", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.54278000", + "longitude": "-116.65139000" + }, + { + "id": "71757", + "name": "Lomas de Tlatelolco", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.48306000", + "longitude": "-116.80167000" + }, + { + "id": "71766", + "name": "Los Algodones", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.70000000", + "longitude": "-114.73333000" + }, + { + "id": "71867", + "name": "Los Valles", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.39250000", + "longitude": "-116.95500000" + }, + { + "id": "71883", + "name": "Luis Rodríguez (El Vergel)", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.40722000", + "longitude": "-115.88722000" + }, + { + "id": "71908", + "name": "Maclovio Herrera (Colonia Aviación)", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.54194000", + "longitude": "-116.63611000" + }, + { + "id": "71909", + "name": "Maclovio Rojas", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.47306000", + "longitude": "-116.80278000" + }, + { + "id": "72099", + "name": "Mexicali", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.50513000", + "longitude": "-115.14771000" + }, + { + "id": "73014", + "name": "Pórticos de San Antonio", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.44250000", + "longitude": "-117.03417000" + }, + { + "id": "72815", + "name": "Playas de Rosarito", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.34342000", + "longitude": "-117.03186000" + }, + { + "id": "72824", + "name": "Poblado Chulavista (El Chorizo)", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.74722000", + "longitude": "-116.00306000" + }, + { + "id": "72827", + "name": "Poblado Lázaro Cárdenas (La Veintiocho)", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.37333000", + "longitude": "-115.06528000" + }, + { + "id": "72904", + "name": "Primo Tapia", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.22226000", + "longitude": "-116.91390000" + }, + { + "id": "72910", + "name": "Progreso", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.58039000", + "longitude": "-115.58479000" + }, + { + "id": "72926", + "name": "Puebla", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.56654000", + "longitude": "-115.35340000" + }, + { + "id": "72930", + "name": "Pueblo Benito García", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.51583000", + "longitude": "-115.93278000" + }, + { + "id": "73035", + "name": "Quinta del Cedro", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.43750000", + "longitude": "-117.06583000" + }, + { + "id": "73061", + "name": "Rancho La Gloria", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.44619000", + "longitude": "-117.00103000" + }, + { + "id": "73071", + "name": "Rancho Verde", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.91611000", + "longitude": "-116.58833000" + }, + { + "id": "73147", + "name": "Rodolfo Sánchez Taboada", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.72099000", + "longitude": "-116.57184000" + }, + { + "id": "73164", + "name": "Rosarito", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.36044000", + "longitude": "-117.04645000" + }, + { + "id": "73165", + "name": "Rumorosa", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.52396000", + "longitude": "-116.05397000" + }, + { + "id": "73229", + "name": "Salvador Rosas Magallón", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.90139000", + "longitude": "-116.54778000" + }, + { + "id": "73510", + "name": "San Felipe", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.02468000", + "longitude": "-114.83919000" + }, + { + "id": "74042", + "name": "San Luis", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.43167000", + "longitude": "-116.95361000" + }, + { + "id": "74421", + "name": "San Quintín", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.57228000", + "longitude": "-115.94607000" + }, + { + "id": "74492", + "name": "San Vicente", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "31.32518000", + "longitude": "-116.24662000" + }, + { + "id": "74560", + "name": "Santa Anita", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.10083000", + "longitude": "-116.86917000" + }, + { + "id": "74663", + "name": "Santa Fé", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.67984000", + "longitude": "-115.97653000" + }, + { + "id": "74673", + "name": "Santa Isabel", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.63330000", + "longitude": "-115.57605000" + }, + { + "id": "75267", + "name": "Tecate", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.55029000", + "longitude": "-116.63223000" + }, + { + "id": "75276", + "name": "Tecolots", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.56667000", + "longitude": "-114.98333000" + }, + { + "id": "75469", + "name": "Terrazas del Valle", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.48750000", + "longitude": "-116.82667000" + }, + { + "id": "75562", + "name": "Tijuana", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.50223000", + "longitude": "-116.97212000" + }, + { + "id": "76103", + "name": "Viñas del Sol", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.62694000", + "longitude": "-115.54667000" + }, + { + "id": "75976", + "name": "Vicente Guerrero", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "30.73097000", + "longitude": "-115.99071000" + }, + { + "id": "76072", + "name": "Villa del Campo", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.50750000", + "longitude": "-116.73833000" + }, + { + "id": "76074", + "name": "Villa del Prado 2da Sección", + "state_id": 3457, + "state_code": "BCN", + "country_id": 142, + "country_code": "MX", + "latitude": "32.42389000", + "longitude": "-116.97167000" + }, + { + "id": "68498", + "name": "Bahía Asunción", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "27.14231000", + "longitude": "-114.29582000" + }, + { + "id": "68499", + "name": "Bahía Tortugas", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "27.69056000", + "longitude": "-114.89660000" + }, + { + "id": "68704", + "name": "Cabo San Lucas", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "22.89088000", + "longitude": "-109.91238000" + }, + { + "id": "68967", + "name": "Chametla", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "24.09926000", + "longitude": "-110.37395000" + }, + { + "id": "69151", + "name": "Ciudad Constitución", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "25.03210000", + "longitude": "-111.66256000" + }, + { + "id": "69162", + "name": "Ciudad Insurgentes", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "25.26345000", + "longitude": "-111.77444000" + }, + { + "id": "69382", + "name": "Colonia del Sol", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "22.91273000", + "longitude": "-109.92655000" + }, + { + "id": "69427", + "name": "Comondú", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "26.06667000", + "longitude": "-111.81666000" + }, + { + "id": "69893", + "name": "El Centenario", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "24.10250000", + "longitude": "-110.41444000" + }, + { + "id": "70100", + "name": "El Pescadero", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.36417000", + "longitude": "-110.16833000" + }, + { + "id": "70206", + "name": "El Silencio", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "27.46801000", + "longitude": "-113.29987000" + }, + { + "id": "71436", + "name": "La Paz", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "24.14437000", + "longitude": "-110.30050000" + }, + { + "id": "71453", + "name": "La Playa", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.06417000", + "longitude": "-109.66833000" + }, + { + "id": "71479", + "name": "La Rivera", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.59458000", + "longitude": "-109.58523000" + }, + { + "id": "71619", + "name": "Las Margaritas", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "27.61833000", + "longitude": "-113.45361000" + }, + { + "id": "71630", + "name": "Las Palmas", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "22.93672000", + "longitude": "-109.94235000" + }, + { + "id": "71651", + "name": "Las Veredas", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.15028000", + "longitude": "-109.70611000" + }, + { + "id": "71762", + "name": "Loreto", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "26.01217000", + "longitude": "-111.34888000" + }, + { + "id": "71777", + "name": "Los Barriles", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.68273000", + "longitude": "-109.69953000" + }, + { + "id": "71781", + "name": "Los Cabos", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.27663000", + "longitude": "-109.75322000" + }, + { + "id": "72073", + "name": "Melitón Albáñez Domínguez", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.66139000", + "longitude": "-110.42083000" + }, + { + "id": "72153", + "name": "Miraflores", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.36975000", + "longitude": "-109.77436000" + }, + { + "id": "72251", + "name": "Mulegé", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "26.60000000", + "longitude": "-112.33333000" + }, + { + "id": "72965", + "name": "Puerto Adolfo Lopez Mateos", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "25.19224000", + "longitude": "-112.11680000" + }, + { + "id": "72974", + "name": "Puerto San Carlos", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "24.78874000", + "longitude": "-112.10504000" + }, + { + "id": "73543", + "name": "San Francisco", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "27.64500000", + "longitude": "-113.41917000" + }, + { + "id": "73834", + "name": "San José del Cabo", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.05888000", + "longitude": "-109.69771000" + }, + { + "id": "74855", + "name": "Santa Rosalía", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "27.34045000", + "longitude": "-112.26761000" + }, + { + "id": "75719", + "name": "Todos Santos", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "23.44688000", + "longitude": "-110.22308000" + }, + { + "id": "75988", + "name": "Villa Alberto Andrés Alvarado Arámburo", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "27.64444000", + "longitude": "-113.38472000" + }, + { + "id": "76037", + "name": "Villa Morelos", + "state_id": 3460, + "state_code": "BCS", + "country_id": 142, + "country_code": "MX", + "latitude": "24.93000000", + "longitude": "-111.62806000" + }, + { + "id": "68019", + "name": "Abelardo L. Rodríguez", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72842000", + "longitude": "-90.90456000" + }, + { + "id": "68197", + "name": "Alfredo V. Bonfil", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53032000", + "longitude": "-90.18214000" + }, + { + "id": "68223", + "name": "Altamira de Zináparo", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.58208000", + "longitude": "-90.25610000" + }, + { + "id": "68393", + "name": "Atasta", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61954000", + "longitude": "-92.10326000" + }, + { + "id": "68481", + "name": "Bacabchén", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28903000", + "longitude": "-90.05602000" + }, + { + "id": "68696", + "name": "Bécal", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44172000", + "longitude": "-90.02738000" + }, + { + "id": "68606", + "name": "Benito Juárez Uno", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27695000", + "longitude": "-91.09914000" + }, + { + "id": "68630", + "name": "Bolonchén de Rejón", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00386000", + "longitude": "-89.74663000" + }, + { + "id": "68726", + "name": "Calakmul", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00000000", + "longitude": "-89.75000000" + }, + { + "id": "68741", + "name": "Calkiní", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38583000", + "longitude": "-89.98764000" + }, + { + "id": "68770", + "name": "Campeche", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84386000", + "longitude": "-90.52554000" + }, + { + "id": "68789", + "name": "Candelaria", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00000000", + "longitude": "-90.75000000" + }, + { + "id": "68827", + "name": "Carmen", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63000000", + "longitude": "-91.83000000" + }, + { + "id": "68838", + "name": "Carrillo Puerto", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09400000", + "longitude": "-90.52279000" + }, + { + "id": "68858", + "name": "Castamay", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83782000", + "longitude": "-90.43181000" + }, + { + "id": "68968", + "name": "Champotón", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35042000", + "longitude": "-90.70991000" + }, + { + "id": "69019", + "name": "Chicbul", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77558000", + "longitude": "-90.92429000" + }, + { + "id": "69087", + "name": "Chiná", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76993000", + "longitude": "-90.49595000" + }, + { + "id": "69117", + "name": "Chunchintok", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36145000", + "longitude": "-89.58218000" + }, + { + "id": "69195", + "name": "Ciudad del Carmen", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64592000", + "longitude": "-91.82991000" + }, + { + "id": "69294", + "name": "Colonia Emiliano Zapata", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.66504000", + "longitude": "-92.31088000" + }, + { + "id": "69463", + "name": "Constitución", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62675000", + "longitude": "-90.13584000" + }, + { + "id": "69636", + "name": "Cumpich", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18612000", + "longitude": "-89.97081000" + }, + { + "id": "69689", + "name": "División del Norte", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52946000", + "longitude": "-90.76416000" + }, + { + "id": "69712", + "name": "Don Samuel", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.36000000", + "longitude": "-90.85722000" + }, + { + "id": "69735", + "name": "Dzibalchén", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45847000", + "longitude": "-89.73111000" + }, + { + "id": "69741", + "name": "Dzitbalché", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31857000", + "longitude": "-90.05611000" + }, + { + "id": "69824", + "name": "El Aguacatal", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21361000", + "longitude": "-91.51095000" + }, + { + "id": "70058", + "name": "El Naranjo", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02193000", + "longitude": "-91.12654000" + }, + { + "id": "70324", + "name": "Escárcega", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61404000", + "longitude": "-90.72870000" + }, + { + "id": "70662", + "name": "Hampolol", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92716000", + "longitude": "-90.38924000" + }, + { + "id": "70663", + "name": "Haro", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.44418000", + "longitude": "-90.79153000" + }, + { + "id": "70664", + "name": "Hecelchakán", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16667000", + "longitude": "-90.13333000" + }, + { + "id": "70707", + "name": "Hool", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51294000", + "longitude": "-90.44631000" + }, + { + "id": "70708", + "name": "Hopelchén", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74671000", + "longitude": "-89.84437000" + }, + { + "id": "70883", + "name": "Isla Aguada", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78714000", + "longitude": "-91.49277000" + }, + { + "id": "70892", + "name": "Iturbide", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57903000", + "longitude": "-89.60222000" + }, + { + "id": "71331", + "name": "La Joya", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48028000", + "longitude": "-90.67333000" + }, + { + "id": "71354", + "name": "La Libertad", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57042000", + "longitude": "-90.51399000" + }, + { + "id": "71663", + "name": "Lerma", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80404000", + "longitude": "-90.60088000" + }, + { + "id": "71677", + "name": "Licenciado Gustavo Díaz Ordaz (18 de Marzo)", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63222000", + "longitude": "-91.00278000" + }, + { + "id": "71808", + "name": "Los Laureles", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48778000", + "longitude": "-89.99444000" + }, + { + "id": "71951", + "name": "Mamantel", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52512000", + "longitude": "-91.08885000" + }, + { + "id": "72016", + "name": "Matamoros", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.58414000", + "longitude": "-90.64669000" + }, + { + "id": "72030", + "name": "Maya Tecún I", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15292000", + "longitude": "-90.50641000" + }, + { + "id": "72405", + "name": "Nuevo Progreso", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62294000", + "longitude": "-92.29124000" + }, + { + "id": "72426", + "name": "Nunkiní", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.40046000", + "longitude": "-90.14803000" + }, + { + "id": "72584", + "name": "Palizada", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25261000", + "longitude": "-92.07779000" + }, + { + "id": "72759", + "name": "Pich", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48568000", + "longitude": "-90.11795000" + }, + { + "id": "72830", + "name": "Pocboc", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23541000", + "longitude": "-90.10219000" + }, + { + "id": "72847", + "name": "Pomuch", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13727000", + "longitude": "-90.17488000" + }, + { + "id": "73190", + "name": "Sabancuy", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97270000", + "longitude": "-91.17783000" + }, + { + "id": "73331", + "name": "San Antonio Cárdenas", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61399000", + "longitude": "-92.22341000" + }, + { + "id": "73347", + "name": "San Antonio Sahcabchén", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30696000", + "longitude": "-90.13778000" + }, + { + "id": "73573", + "name": "San Francisco Kobén", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91516000", + "longitude": "-90.41709000" + }, + { + "id": "74299", + "name": "San Pablo Pixtún", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13361000", + "longitude": "-90.73194000" + }, + { + "id": "74608", + "name": "Santa Cruz", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20339000", + "longitude": "-90.11771000" + }, + { + "id": "74624", + "name": "Santa Cruz Ex-Hacienda", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39684000", + "longitude": "-90.24068000" + }, + { + "id": "74636", + "name": "Santa Cruz Pueblo", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33359000", + "longitude": "-90.10342000" + }, + { + "id": "75003", + "name": "Santo Domingo Kesté", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49972000", + "longitude": "-90.51139000" + }, + { + "id": "75065", + "name": "Seybaplaya", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63994000", + "longitude": "-90.68706000" + }, + { + "id": "75076", + "name": "Sihochac", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50120000", + "longitude": "-90.58472000" + }, + { + "id": "75137", + "name": "Suc-Tuc", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71259000", + "longitude": "-90.03768000" + }, + { + "id": "75215", + "name": "Tankuché", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.50743000", + "longitude": "-90.24164000" + }, + { + "id": "75345", + "name": "Tenabo", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83333000", + "longitude": "-90.00000000" + }, + { + "id": "75390", + "name": "Tepakán", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39716000", + "longitude": "-90.04075000" + }, + { + "id": "75563", + "name": "Tikinmul", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76611000", + "longitude": "-90.22306000" + }, + { + "id": "75865", + "name": "Ukúm", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24197000", + "longitude": "-89.33529000" + }, + { + "id": "76029", + "name": "Villa Madero", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52833000", + "longitude": "-90.69917000" + }, + { + "id": "76130", + "name": "Xbacab", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94139000", + "longitude": "-90.72194000" + }, + { + "id": "76151", + "name": "Xmabén", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23530000", + "longitude": "-89.31426000" + }, + { + "id": "76204", + "name": "Xpujil", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50760000", + "longitude": "-89.39437000" + }, + { + "id": "76358", + "name": "Zoh-Laguna", + "state_id": 3475, + "state_code": "CAM", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59306000", + "longitude": "-89.41714000" + }, + { + "id": "68007", + "name": "1ra. Sección de Izapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.92083000", + "longitude": "-92.17083000" + }, + { + "id": "68008", + "name": "2da. Sección de Medio Monte", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.88194000", + "longitude": "-92.18444000" + }, + { + "id": "68013", + "name": "Abasolo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82140000", + "longitude": "-92.21611000" + }, + { + "id": "68024", + "name": "Acacoyagua", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.41414000", + "longitude": "-92.68169000" + }, + { + "id": "68029", + "name": "Acala", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.55625000", + "longitude": "-92.80449000" + }, + { + "id": "68036", + "name": "Acapetahua", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.28189000", + "longitude": "-92.68987000" + }, + { + "id": "68089", + "name": "Adolfo López Mateos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21600000", + "longitude": "-93.47895000" + }, + { + "id": "68101", + "name": "Agrónomos Mexicanos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.35000000", + "longitude": "-93.53000000" + }, + { + "id": "68102", + "name": "Agua Azul", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.81432000", + "longitude": "-91.52391000" + }, + { + "id": "68105", + "name": "Agua Blanca Serranía", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26781000", + "longitude": "-91.83564000" + }, + { + "id": "68120", + "name": "Agua Zarca", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.63417000", + "longitude": "-92.14472000" + }, + { + "id": "68122", + "name": "Aguacatenango", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.47388000", + "longitude": "-92.40875000" + }, + { + "id": "68130", + "name": "Agustín de Iturbide", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.07523000", + "longitude": "-92.19858000" + }, + { + "id": "68135", + "name": "Ahuacatlán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.04030000", + "longitude": "-92.18036000" + }, + { + "id": "68165", + "name": "Ajilhó", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98376000", + "longitude": "-92.93804000" + }, + { + "id": "68186", + "name": "Aldama", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.91667000", + "longitude": "-92.68333000" + }, + { + "id": "68195", + "name": "Alfonso Moguel", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.66750000", + "longitude": "-93.50639000" + }, + { + "id": "68224", + "name": "Altamirano", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88333000", + "longitude": "-92.15000000" + }, + { + "id": "68234", + "name": "Amado Nervo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.23107000", + "longitude": "-92.24581000" + }, + { + "id": "68247", + "name": "Amatán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.36667000", + "longitude": "-92.81667000" + }, + { + "id": "68237", + "name": "Amatenango de la Frontera", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.43333000", + "longitude": "-92.11667000" + }, + { + "id": "68238", + "name": "Amatenango del Valle", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.52722000", + "longitude": "-92.43472000" + }, + { + "id": "68264", + "name": "América Libre", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.61462000", + "longitude": "-92.99185000" + }, + { + "id": "68295", + "name": "Apas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.71066000", + "longitude": "-92.79335000" + }, + { + "id": "68320", + "name": "Aquiles Serdán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.93980000", + "longitude": "-92.51444000" + }, + { + "id": "68349", + "name": "Arimatea", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.34139000", + "longitude": "-91.87639000" + }, + { + "id": "68355", + "name": "Arriaga", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.23589000", + "longitude": "-93.89995000" + }, + { + "id": "68358", + "name": "Arroyo Grande", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.19122000", + "longitude": "-92.87207000" + }, + { + "id": "68359", + "name": "Arroyo Granizo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03716000", + "longitude": "-91.42563000" + }, + { + "id": "68363", + "name": "Arroyo Palenque", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.39167000", + "longitude": "-92.10444000" + }, + { + "id": "68378", + "name": "Arvenza Uno", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.77972000", + "longitude": "-92.72028000" + }, + { + "id": "68445", + "name": "Aurora Ermita", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.23583000", + "longitude": "-92.87389000" + }, + { + "id": "68446", + "name": "Aurora Esquipulas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.11704000", + "longitude": "-92.47626000" + }, + { + "id": "68474", + "name": "Azteca", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.21775000", + "longitude": "-93.94557000" + }, + { + "id": "68475", + "name": "Aztlán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76919000", + "longitude": "-92.92316000" + }, + { + "id": "76395", + "name": "Álvaro Obregón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.92231000", + "longitude": "-92.37813000" + }, + { + "id": "76404", + "name": "Ángel Albino Corzo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.86624000", + "longitude": "-92.72324000" + }, + { + "id": "76405", + "name": "Ángel Albino Corzo (Guadalupe)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.12639000", + "longitude": "-93.27500000" + }, + { + "id": "68487", + "name": "Bachajón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03963000", + "longitude": "-92.18986000" + }, + { + "id": "68504", + "name": "Bajucu", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.47520000", + "longitude": "-92.06471000" + }, + { + "id": "68567", + "name": "Bautista Chico", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.79972000", + "longitude": "-92.71194000" + }, + { + "id": "68570", + "name": "Bejucal de Ocampo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.45535000", + "longitude": "-92.15835000" + }, + { + "id": "68574", + "name": "Belisario Domínguez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.29944000", + "longitude": "-92.38056000" + }, + { + "id": "68576", + "name": "Bella Vista", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.58333000", + "longitude": "-92.21667000" + }, + { + "id": "68585", + "name": "Benemérito de las Américas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.51599000", + "longitude": "-90.65371000" + }, + { + "id": "68601", + "name": "Benito Juárez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.05500000", + "longitude": "-92.19111000" + }, + { + "id": "68611", + "name": "Berriozábal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80000000", + "longitude": "-93.26667000" + }, + { + "id": "68612", + "name": "Betania", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.60639000", + "longitude": "-92.52194000" + }, + { + "id": "68625", + "name": "Bochil", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99625000", + "longitude": "-92.89218000" + }, + { + "id": "68626", + "name": "Bochojbo Alto", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73583000", + "longitude": "-92.71694000" + }, + { + "id": "68649", + "name": "Brisas Barra de Suchiate", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.53588000", + "longitude": "-92.22414000" + }, + { + "id": "68673", + "name": "Buenavista", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.24278000", + "longitude": "-91.98778000" + }, + { + "id": "68676", + "name": "Buenavista (Matasanos)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.10778000", + "longitude": "-93.06694000" + }, + { + "id": "68686", + "name": "Buenos Aires", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.88980000", + "longitude": "-92.48121000" + }, + { + "id": "68702", + "name": "Cabeza de Toro", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.93698000", + "longitude": "-93.78256000" + }, + { + "id": "68705", + "name": "Cacahoatán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.99201000", + "longitude": "-92.16376000" + }, + { + "id": "68715", + "name": "Cacaté", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84534000", + "longitude": "-92.83485000" + }, + { + "id": "68753", + "name": "Calzada Larga", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.35115000", + "longitude": "-93.31518000" + }, + { + "id": "68786", + "name": "Cancuc", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.91667000", + "longitude": "-92.48333000" + }, + { + "id": "68801", + "name": "Cantón las Delicias", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.10245000", + "longitude": "-92.50002000" + }, + { + "id": "68799", + "name": "Cantón Rancho Nuevo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.06742000", + "longitude": "-92.52565000" + }, + { + "id": "68800", + "name": "Cantón Villaflor", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.11424000", + "longitude": "-92.35261000" + }, + { + "id": "68797", + "name": "Cantioc", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26222000", + "longitude": "-92.40694000" + }, + { + "id": "68829", + "name": "Carmen Yalchuch", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.64482000", + "longitude": "-92.36245000" + }, + { + "id": "68830", + "name": "Carmen Zacatal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.08083000", + "longitude": "-92.80250000" + }, + { + "id": "68837", + "name": "Carrillo Puerto", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.01120000", + "longitude": "-92.19552000" + }, + { + "id": "68856", + "name": "Cash", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.26426000", + "longitude": "-92.09775000" + }, + { + "id": "68862", + "name": "Catazajá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.73333000", + "longitude": "-92.01667000" + }, + { + "id": "68864", + "name": "Catishtic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78028000", + "longitude": "-92.73778000" + }, + { + "id": "69657", + "name": "Cálido", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09889000", + "longitude": "-92.78750000" + }, + { + "id": "68884", + "name": "Cebadilla 1ra. Sección", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.86381000", + "longitude": "-92.27969000" + }, + { + "id": "68895", + "name": "Cenobio Aguilar (La Trinidad)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.40472000", + "longitude": "-92.31944000" + }, + { + "id": "68905", + "name": "Cereso 14 (El Amate)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.59472000", + "longitude": "-93.80278000" + }, + { + "id": "68946", + "name": "Chacaljocóm", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.29919000", + "longitude": "-92.18345000" + }, + { + "id": "68949", + "name": "Chacoma", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87611000", + "longitude": "-92.49139000" + }, + { + "id": "68955", + "name": "Chalam", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88771000", + "longitude": "-92.55009000" + }, + { + "id": "68960", + "name": "Chalchihuitán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96667000", + "longitude": "-92.65000000" + }, + { + "id": "68969", + "name": "Chamula", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78416000", + "longitude": "-92.68959000" + }, + { + "id": "68970", + "name": "Chamulapita", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.06892000", + "longitude": "-92.36942000" + }, + { + "id": "68973", + "name": "Chanal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.65750000", + "longitude": "-92.25750000" + }, + { + "id": "68980", + "name": "Chapallal Grande", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.29631000", + "longitude": "-92.94519000" + }, + { + "id": "68989", + "name": "Chapultenango", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33333000", + "longitude": "-93.13333000" + }, + { + "id": "69010", + "name": "Chiapa de Corzo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.70770000", + "longitude": "-93.01184000" + }, + { + "id": "69011", + "name": "Chiapilla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.55397000", + "longitude": "-92.72594000" + }, + { + "id": "69034", + "name": "Chicoasén", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96528000", + "longitude": "-93.10472000" + }, + { + "id": "69037", + "name": "Chicomuselo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.74420000", + "longitude": "-92.28330000" + }, + { + "id": "69048", + "name": "Chicumtantic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86556000", + "longitude": "-92.60528000" + }, + { + "id": "69055", + "name": "Chihuahua", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.02966000", + "longitude": "-91.97331000" + }, + { + "id": "69075", + "name": "Chilón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.11667000", + "longitude": "-92.28333000" + }, + { + "id": "69071", + "name": "Chiloljá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88528000", + "longitude": "-92.42472000" + }, + { + "id": "69079", + "name": "Chimhucum", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.89000000", + "longitude": "-92.53139000" + }, + { + "id": "69092", + "name": "Chiquinival", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99111000", + "longitude": "-91.96028000" + }, + { + "id": "69093", + "name": "Chiquinshulum", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07194000", + "longitude": "-92.59806000" + }, + { + "id": "69096", + "name": "Chixtontic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.89080000", + "longitude": "-92.45793000" + }, + { + "id": "69113", + "name": "Chulum Cárdenas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38417000", + "longitude": "-92.57389000" + }, + { + "id": "69114", + "name": "Chulum Juárez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33194000", + "longitude": "-92.53389000" + }, + { + "id": "69136", + "name": "Cintalapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.68778000", + "longitude": "-93.71083000" + }, + { + "id": "69137", + "name": "Cintalapa de Figueroa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.68393000", + "longitude": "-93.71814000" + }, + { + "id": "69153", + "name": "Ciudad Cuauhtémoc", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.66587000", + "longitude": "-92.00388000" + }, + { + "id": "69160", + "name": "Ciudad Hidalgo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.68148000", + "longitude": "-92.15217000" + }, + { + "id": "69222", + "name": "Coapilla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.13137000", + "longitude": "-93.15946000" + }, + { + "id": "69342", + "name": "Colonia Obrera", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.09806000", + "longitude": "-92.49806000" + }, + { + "id": "69417", + "name": "Comalapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.65924000", + "longitude": "-92.14237000" + }, + { + "id": "69425", + "name": "Comitán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.24710000", + "longitude": "-92.13515000" + }, + { + "id": "69432", + "name": "Concepción", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80908000", + "longitude": "-92.96526000" + }, + { + "id": "69453", + "name": "Congregación Reforma", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.78208000", + "longitude": "-92.31424000" + }, + { + "id": "69465", + "name": "Constitución", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07556000", + "longitude": "-92.52417000" + }, + { + "id": "69469", + "name": "Copainalá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09366000", + "longitude": "-93.21059000" + }, + { + "id": "69474", + "name": "Copoya", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.71191000", + "longitude": "-93.12089000" + }, + { + "id": "69535", + "name": "Cristóbal Colón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.19194000", + "longitude": "-91.62917000" + }, + { + "id": "69536", + "name": "Cristóbal Obregón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.43246000", + "longitude": "-93.45689000" + }, + { + "id": "69548", + "name": "Cruztón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76167000", + "longitude": "-92.57917000" + }, + { + "id": "69580", + "name": "Cuauhtémoc", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.55000000", + "longitude": "-93.71611000" + }, + { + "id": "69606", + "name": "Cuchulumtic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.77722000", + "longitude": "-92.70417000" + }, + { + "id": "69665", + "name": "Damasco", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16161000", + "longitude": "-91.60058000" + }, + { + "id": "69683", + "name": "Diamante de Echeverría", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.11181000", + "longitude": "-92.87931000" + }, + { + "id": "69685", + "name": "Dieciséis de Septiembre", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.29715000", + "longitude": "-93.17490000" + }, + { + "id": "69693", + "name": "Doctor Belisario Domínguez (La Barra)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.88947000", + "longitude": "-93.70404000" + }, + { + "id": "69695", + "name": "Doctor Domingo Chanona", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.34611000", + "longitude": "-93.41667000" + }, + { + "id": "69700", + "name": "Doctor Rodulfo Figueroa (Tierra Blanca)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.85083000", + "longitude": "-92.06222000" + }, + { + "id": "69701", + "name": "Doctor Samuel León Brindis", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43528000", + "longitude": "-91.93194000" + }, + { + "id": "69707", + "name": "Dolores Jaltenango", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.89694000", + "longitude": "-92.77777000" + }, + { + "id": "69755", + "name": "Efraín A. Gutiérrez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.34442000", + "longitude": "-92.19927000" + }, + { + "id": "69756", + "name": "Egipto", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26207000", + "longitude": "-91.97150000" + }, + { + "id": "69832", + "name": "El Arenal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.17273000", + "longitude": "-92.69923000" + }, + { + "id": "70264", + "name": "El Águila", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.09334000", + "longitude": "-92.18512000" + }, + { + "id": "70267", + "name": "El Ámbar", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02500000", + "longitude": "-92.83417000" + }, + { + "id": "70268", + "name": "El Ámbar (El Ámbar de Echeverría)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.09639000", + "longitude": "-92.83333000" + }, + { + "id": "69848", + "name": "El Bosque", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06273000", + "longitude": "-92.72147000" + }, + { + "id": "69855", + "name": "El Calvario", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21750000", + "longitude": "-92.55694000" + }, + { + "id": "69870", + "name": "El Carmen", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.57549000", + "longitude": "-93.12865000" + }, + { + "id": "69876", + "name": "El Carmen (El Limón)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.89056000", + "longitude": "-93.16528000" + }, + { + "id": "69892", + "name": "El Censo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86287000", + "longitude": "-91.55988000" + }, + { + "id": "69920", + "name": "El Consuelo Ulapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.38662000", + "longitude": "-92.79228000" + }, + { + "id": "69923", + "name": "El Copal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96729000", + "longitude": "-92.92625000" + }, + { + "id": "69924", + "name": "El Copalar", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87694000", + "longitude": "-93.21389000" + }, + { + "id": "69950", + "name": "El Edén", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.29191000", + "longitude": "-91.63755000" + }, + { + "id": "69952", + "name": "El Encanto", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.73083000", + "longitude": "-92.41028000" + }, + { + "id": "69960", + "name": "El Espinal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.36862000", + "longitude": "-94.10449000" + }, + { + "id": "70001", + "name": "El Jardín", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16657000", + "longitude": "-92.59933000" + }, + { + "id": "70007", + "name": "El Jobo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.70369000", + "longitude": "-93.10569000" + }, + { + "id": "70014", + "name": "El Limar", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.41491000", + "longitude": "-92.40293000" + }, + { + "id": "70015", + "name": "El Limonar", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97026000", + "longitude": "-91.37820000" + }, + { + "id": "70032", + "name": "El Mango", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16236000", + "longitude": "-92.05985000" + }, + { + "id": "70067", + "name": "El Nopal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.91161000", + "longitude": "-92.84471000" + }, + { + "id": "70076", + "name": "El Pacayal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.59849000", + "longitude": "-92.04254000" + }, + { + "id": "70081", + "name": "El Palmar (San Gabriel)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84556000", + "longitude": "-93.01639000" + }, + { + "id": "70082", + "name": "El Palmar Grande", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.49858000", + "longitude": "-92.25518000" + }, + { + "id": "70083", + "name": "El Palmarcito", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.49728000", + "longitude": "-93.21387000" + }, + { + "id": "70091", + "name": "El Paraíso", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24639000", + "longitude": "-92.55694000" + }, + { + "id": "70095", + "name": "El Parral", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.37035000", + "longitude": "-93.00567000" + }, + { + "id": "70114", + "name": "El Portal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.67726000", + "longitude": "-92.09588000" + }, + { + "id": "70118", + "name": "El Porvenir", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.43092000", + "longitude": "-92.26447000" + }, + { + "id": "70120", + "name": "El Porvenir Agrarista", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.16465000", + "longitude": "-91.83575000" + }, + { + "id": "70122", + "name": "El Porvenir de Velasco Suárez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.45695000", + "longitude": "-92.27987000" + }, + { + "id": "70128", + "name": "El Pozo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92034000", + "longitude": "-92.41166000" + }, + { + "id": "70133", + "name": "El Progreso", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87694000", + "longitude": "-93.22222000" + }, + { + "id": "70139", + "name": "El Puerto", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.42575000", + "longitude": "-92.43059000" + }, + { + "id": "70143", + "name": "El Ramal (Porvenir)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.86583000", + "longitude": "-92.94556000" + }, + { + "id": "70182", + "name": "El Sacrificio", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.87283000", + "longitude": "-92.22782000" + }, + { + "id": "70205", + "name": "El Sibal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98000000", + "longitude": "-91.49111000" + }, + { + "id": "70235", + "name": "El Triunfo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.20200000", + "longitude": "-91.85916000" + }, + { + "id": "70237", + "name": "El Triunfo 1ra. Sección (Cardona)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.60778000", + "longitude": "-93.23306000" + }, + { + "id": "70238", + "name": "El Triunfo de las Tres Maravillas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.64694000", + "longitude": "-92.15639000" + }, + { + "id": "70244", + "name": "El Tumbo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07779000", + "longitude": "-91.62595000" + }, + { + "id": "70246", + "name": "El Tzay", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86361000", + "longitude": "-92.31222000" + }, + { + "id": "70255", + "name": "El Vergel", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.57951000", + "longitude": "-92.08148000" + }, + { + "id": "70260", + "name": "El Zapotal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.74991000", + "longitude": "-91.44192000" + }, + { + "id": "70263", + "name": "El Zapotillo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.83700000", + "longitude": "-92.95152000" + }, + { + "id": "70276", + "name": "Emiliano Zapata", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.74058000", + "longitude": "-91.76635000" + }, + { + "id": "70323", + "name": "Escuintla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.33333000", + "longitude": "-92.63333000" + }, + { + "id": "70343", + "name": "Estación Huehuetán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.01091000", + "longitude": "-92.40662000" + }, + { + "id": "70354", + "name": "Estación San Manuel", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65256000", + "longitude": "-93.38427000" + }, + { + "id": "70357", + "name": "Estación Tuzantán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.10643000", + "longitude": "-92.45092000" + }, + { + "id": "70373", + "name": "Estrella de Belén", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38722000", + "longitude": "-91.95861000" + }, + { + "id": "70392", + "name": "Faja de Oro", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.03244000", + "longitude": "-92.15634000" + }, + { + "id": "70405", + "name": "Flor de Cacao", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.12889000", + "longitude": "-90.45111000" + }, + { + "id": "70469", + "name": "Francisco I. Madero", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87427000", + "longitude": "-93.21678000" + }, + { + "id": "70473", + "name": "Francisco León", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.31667000", + "longitude": "-93.25000000" + }, + { + "id": "70475", + "name": "Francisco Sarabia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94583000", + "longitude": "-93.01306000" + }, + { + "id": "70480", + "name": "Francisco Villa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.21426000", + "longitude": "-93.33697000" + }, + { + "id": "70492", + "name": "Frontera Corozal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.81473000", + "longitude": "-90.88351000" + }, + { + "id": "70493", + "name": "Frontera Hidalgo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.77744000", + "longitude": "-92.17741000" + }, + { + "id": "70501", + "name": "Gabriel Esquinca", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94056000", + "longitude": "-93.17555000" + }, + { + "id": "70512", + "name": "Galecio Narcia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.58820000", + "longitude": "-93.02052000" + }, + { + "id": "70571", + "name": "Guadalupe", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.98033000", + "longitude": "-92.33938000" + }, + { + "id": "70583", + "name": "Guadalupe Grijalva", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.69899000", + "longitude": "-92.16414000" + }, + { + "id": "70605", + "name": "Guadalupe Victoria", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.40500000", + "longitude": "-92.55250000" + }, + { + "id": "70619", + "name": "Guaquitepec", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98017000", + "longitude": "-92.28795000" + }, + { + "id": "70829", + "name": "Héroes de Chapultepec", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.06920000", + "longitude": "-92.28621000" + }, + { + "id": "70669", + "name": "Hermenegildo Galeana", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.57722000", + "longitude": "-93.35944000" + }, + { + "id": "70682", + "name": "Hidalgo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.16249000", + "longitude": "-92.63030000" + }, + { + "id": "70688", + "name": "Hidalgo Joshil", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22743000", + "longitude": "-92.34719000" + }, + { + "id": "70762", + "name": "Huehuetán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.01981000", + "longitude": "-92.38249000" + }, + { + "id": "70801", + "name": "Huitiupán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.17240000", + "longitude": "-92.68621000" + }, + { + "id": "70821", + "name": "Huixtla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.13915000", + "longitude": "-92.46410000" + }, + { + "id": "70822", + "name": "Huizachal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.05184000", + "longitude": "-93.80011000" + }, + { + "id": "70838", + "name": "Ignacio Allende", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.52556000", + "longitude": "-92.99222000" + }, + { + "id": "70842", + "name": "Ignacio López Rayón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.62164000", + "longitude": "-92.18678000" + }, + { + "id": "70845", + "name": "Ignacio Ramírez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.11091000", + "longitude": "-93.87323000" + }, + { + "id": "70857", + "name": "Ignacio Zaragoza", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.29000000", + "longitude": "-92.93806000" + }, + { + "id": "70858", + "name": "Ignacio Zaragoza (El Morro)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.59944000", + "longitude": "-93.35083000" + }, + { + "id": "70869", + "name": "Independencia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.08611000", + "longitude": "-92.83824000" + }, + { + "id": "70916", + "name": "Ixhuatán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.29341000", + "longitude": "-93.00829000" + }, + { + "id": "70923", + "name": "Ixtacomitán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43093000", + "longitude": "-93.09704000" + }, + { + "id": "70926", + "name": "Ixtapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80320000", + "longitude": "-92.90532000" + }, + { + "id": "70933", + "name": "Ixtapangajoya", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.49849000", + "longitude": "-93.00155000" + }, + { + "id": "70973", + "name": "Jalisco", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.43033000", + "longitude": "-91.97499000" + }, + { + "id": "70983", + "name": "Jaltenango de la Paz", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.87314000", + "longitude": "-92.72437000" + }, + { + "id": "71006", + "name": "Jardínes del Grijalva", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72847000", + "longitude": "-93.03463000" + }, + { + "id": "71019", + "name": "Jericó", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.28713000", + "longitude": "-92.96630000" + }, + { + "id": "71020", + "name": "Jerusalén", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.36806000", + "longitude": "-92.06083000" + }, + { + "id": "71033", + "name": "Jesús María Garza", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39669000", + "longitude": "-93.29368000" + }, + { + "id": "71054", + "name": "Jiquilpan (Estación Bonanza)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.34194000", + "longitude": "-92.74750000" + }, + { + "id": "71055", + "name": "Jiquipilas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.66806000", + "longitude": "-93.64667000" + }, + { + "id": "71059", + "name": "Jitotol", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06723000", + "longitude": "-92.86111000" + }, + { + "id": "71064", + "name": "Joaquín Miguel Gutiérrez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.37000000", + "longitude": "-93.36556000" + }, + { + "id": "71065", + "name": "Joaquín Miguel Gutiérrez (Margaritas)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.55028000", + "longitude": "-93.09306000" + }, + { + "id": "71071", + "name": "Joljá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.20459000", + "longitude": "-92.49946000" + }, + { + "id": "71074", + "name": "Jolsibaquil", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.25972000", + "longitude": "-92.48167000" + }, + { + "id": "71075", + "name": "Joltealal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07683000", + "longitude": "-92.62163000" + }, + { + "id": "71076", + "name": "Jomanichim", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.90056000", + "longitude": "-92.47222000" + }, + { + "id": "71097", + "name": "José María Morelos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.04189000", + "longitude": "-91.83201000" + }, + { + "id": "71105", + "name": "José María Morelos y Pavón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24105000", + "longitude": "-92.70231000" + }, + { + "id": "71108", + "name": "José María Pino Suárez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.50571000", + "longitude": "-93.73910000" + }, + { + "id": "71087", + "name": "Joshil", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24667000", + "longitude": "-92.36278000" + }, + { + "id": "71112", + "name": "Juan Aldama", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.60939000", + "longitude": "-93.02826000" + }, + { + "id": "71129", + "name": "Juan del Grijalva", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72806000", + "longitude": "-92.97750000" + }, + { + "id": "71145", + "name": "Juárez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.60572000", + "longitude": "-93.19433000" + }, + { + "id": "71137", + "name": "Julián Grajales", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.42917000", + "longitude": "-93.71417000" + }, + { + "id": "71143", + "name": "Justo Sierra", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.54248000", + "longitude": "-92.05737000" + }, + { + "id": "71168", + "name": "Kotolte", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86444000", + "longitude": "-92.46111000" + }, + { + "id": "71195", + "name": "La Candelaria", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.74289000", + "longitude": "-92.52156000" + }, + { + "id": "71210", + "name": "La Ceiba", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.13371000", + "longitude": "-92.51887000" + }, + { + "id": "71226", + "name": "La Competencia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.23588000", + "longitude": "-92.75718000" + }, + { + "id": "71242", + "name": "La Concordia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.11774000", + "longitude": "-92.69018000" + }, + { + "id": "71271", + "name": "La Esperanza", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.15191000", + "longitude": "-91.86874000" + }, + { + "id": "71276", + "name": "La Esperanza (El Zapotal)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.44917000", + "longitude": "-93.16417000" + }, + { + "id": "71292", + "name": "La Floresta", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.50915000", + "longitude": "-92.31251000" + }, + { + "id": "71302", + "name": "La Gloria", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.96389000", + "longitude": "-91.96500000" + }, + { + "id": "71307", + "name": "La Grandeza", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.51033000", + "longitude": "-92.22603000" + }, + { + "id": "71323", + "name": "La Independencia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.25263000", + "longitude": "-92.02371000" + }, + { + "id": "71324", + "name": "La Independencia (Las Pilas)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.67750000", + "longitude": "-93.24944000" + }, + { + "id": "71343", + "name": "La Laguna", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.69357000", + "longitude": "-91.94929000" + }, + { + "id": "71379", + "name": "La Línea", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.13078000", + "longitude": "-94.03563000" + }, + { + "id": "71351", + "name": "La Libertad", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.59167000", + "longitude": "-92.19315000" + }, + { + "id": "71434", + "name": "La Patria", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.22975000", + "longitude": "-91.91148000" + }, + { + "id": "71448", + "name": "La Pimienta", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.14111000", + "longitude": "-92.76222000" + }, + { + "id": "71477", + "name": "La Rinconada", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.59333000", + "longitude": "-92.26806000" + }, + { + "id": "71502", + "name": "La Tigrilla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.98769000", + "longitude": "-92.85220000" + }, + { + "id": "71516", + "name": "La Trinitaria", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.11859000", + "longitude": "-92.05201000" + }, + { + "id": "71540", + "name": "Lacandón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02141000", + "longitude": "-91.59523000" + }, + { + "id": "71557", + "name": "Laguna del Cofre", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.62751000", + "longitude": "-92.64143000" + }, + { + "id": "71571", + "name": "Larráinzar", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88392000", + "longitude": "-92.71329000" + }, + { + "id": "71579", + "name": "Las Brisas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.51681000", + "longitude": "-93.11763000" + }, + { + "id": "71586", + "name": "Las Chicharras", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.67089000", + "longitude": "-92.21070000" + }, + { + "id": "71596", + "name": "Las Delicias", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.96932000", + "longitude": "-91.86315000" + }, + { + "id": "71599", + "name": "Las Flechas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.70028000", + "longitude": "-93.02639000" + }, + { + "id": "71616", + "name": "Las Maravillas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95951000", + "longitude": "-93.32012000" + }, + { + "id": "71617", + "name": "Las Margaritas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.31265000", + "longitude": "-91.98107000" + }, + { + "id": "71628", + "name": "Las Ollas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78146000", + "longitude": "-92.55278000" + }, + { + "id": "71637", + "name": "Las Rosas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.36574000", + "longitude": "-92.37040000" + }, + { + "id": "71642", + "name": "Las Tazas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.75722000", + "longitude": "-91.61500000" + }, + { + "id": "71888", + "name": "Lázaro Cárdenas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.60417000", + "longitude": "-93.79139000" + }, + { + "id": "71896", + "name": "Lázaro Cárdenas (Chilil)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.67611000", + "longitude": "-92.48917000" + }, + { + "id": "71670", + "name": "Libertad Melchor Ocampo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.37389000", + "longitude": "-93.47500000" + }, + { + "id": "71671", + "name": "Libertad Ventanas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.53954000", + "longitude": "-92.27576000" + }, + { + "id": "71693", + "name": "Llano de la Lima", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.86596000", + "longitude": "-92.29714000" + }, + { + "id": "71713", + "name": "Loma Bonita", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78697000", + "longitude": "-92.07651000" + }, + { + "id": "71741", + "name": "Lomantán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.43999000", + "longitude": "-92.06445000" + }, + { + "id": "71782", + "name": "Los Cafetales", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.86745000", + "longitude": "-92.30200000" + }, + { + "id": "71793", + "name": "Los Corazones", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.21026000", + "longitude": "-94.07391000" + }, + { + "id": "71819", + "name": "Los Naranjos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26446000", + "longitude": "-92.61972000" + }, + { + "id": "71827", + "name": "Los Palacios", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.85718000", + "longitude": "-92.25821000" + }, + { + "id": "71832", + "name": "Los Pinos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92083000", + "longitude": "-92.10861000" + }, + { + "id": "71834", + "name": "Los Plátanos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00556000", + "longitude": "-92.74264000" + }, + { + "id": "71836", + "name": "Los Pozos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.64770000", + "longitude": "-92.40726000" + }, + { + "id": "71853", + "name": "Los Riegos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.30457000", + "longitude": "-92.12425000" + }, + { + "id": "71880", + "name": "Luis Espinoza", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03167000", + "longitude": "-93.02694000" + }, + { + "id": "71915", + "name": "Macvilhó", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.85760000", + "longitude": "-92.69419000" + }, + { + "id": "71942", + "name": "Majastic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.28944000", + "longitude": "-92.62833000" + }, + { + "id": "71943", + "name": "Majomut", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84917000", + "longitude": "-92.65944000" + }, + { + "id": "71966", + "name": "Manuel Ávila Camacho", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.14647000", + "longitude": "-93.01701000" + }, + { + "id": "71968", + "name": "Manuel Ávila Camacho (Ponte Duro)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.80973000", + "longitude": "-93.58933000" + }, + { + "id": "71961", + "name": "Manuel Lazos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.97159000", + "longitude": "-92.18726000" + }, + { + "id": "71977", + "name": "Mapastepec", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.43358000", + "longitude": "-92.90039000" + }, + { + "id": "71981", + "name": "Maravilla Tenejapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.20391000", + "longitude": "-91.26093000" + }, + { + "id": "71982", + "name": "Maravillas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09693000", + "longitude": "-92.89107000" + }, + { + "id": "71993", + "name": "Mariano Matamoros", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.48119000", + "longitude": "-92.58472000" + }, + { + "id": "71995", + "name": "Mariscal Subikuski", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33250000", + "longitude": "-92.38083000" + }, + { + "id": "71998", + "name": "Marqués de Comillas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.21471000", + "longitude": "-90.75917000" + }, + { + "id": "72000", + "name": "Marte R. Gómez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.92653000", + "longitude": "-92.44389000" + }, + { + "id": "72023", + "name": "Matzam", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78917000", + "longitude": "-92.47694000" + }, + { + "id": "72036", + "name": "Mazapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.38773000", + "longitude": "-92.18780000" + }, + { + "id": "72038", + "name": "Mazapa de Madero", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.36461000", + "longitude": "-92.18762000" + }, + { + "id": "72049", + "name": "Mazatán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.86319000", + "longitude": "-92.45030000" + }, + { + "id": "72262", + "name": "Mérida", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.56750000", + "longitude": "-93.81722000" + }, + { + "id": "72087", + "name": "Metapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.83624000", + "longitude": "-92.19186000" + }, + { + "id": "72128", + "name": "Miguel Hidalgo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.35060000", + "longitude": "-92.62852000" + }, + { + "id": "72135", + "name": "Miguel Utrilla (Los Chorros)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94278000", + "longitude": "-92.47972000" + }, + { + "id": "72158", + "name": "Misija", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26611000", + "longitude": "-92.38167000" + }, + { + "id": "72161", + "name": "Mitontic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87540000", + "longitude": "-92.57130000" + }, + { + "id": "72163", + "name": "Mitzitón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.64639000", + "longitude": "-92.54333000" + }, + { + "id": "72164", + "name": "Mixcum", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.02560000", + "longitude": "-92.14080000" + }, + { + "id": "72205", + "name": "Monte Redondo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.65217000", + "longitude": "-92.05045000" + }, + { + "id": "72212", + "name": "Montecristo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.69263000", + "longitude": "-92.61999000" + }, + { + "id": "72213", + "name": "Montecristo de Guerrero", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.67526000", + "longitude": "-92.64399000" + }, + { + "id": "72218", + "name": "Monterrey", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.06191000", + "longitude": "-93.36928000" + }, + { + "id": "72226", + "name": "Morelia (Victórico Rodolfo Grajales)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72306000", + "longitude": "-91.96778000" + }, + { + "id": "72241", + "name": "Motozintla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.36694000", + "longitude": "-92.24605000" + }, + { + "id": "72246", + "name": "Moyos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35889000", + "longitude": "-92.64134000" + }, + { + "id": "72256", + "name": "Muquén", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80641000", + "longitude": "-92.61006000" + }, + { + "id": "72265", + "name": "Nachig", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73056000", + "longitude": "-92.72528000" + }, + { + "id": "72285", + "name": "Narciso Mendoza", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.57996000", + "longitude": "-92.98911000" + }, + { + "id": "72296", + "name": "Navenchauc", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73501000", + "longitude": "-92.77900000" + }, + { + "id": "72323", + "name": "Nicolás Bravo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.51058000", + "longitude": "-92.99222000" + }, + { + "id": "72329", + "name": "Nicolás Ruíz", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.44833000", + "longitude": "-92.60361000" + }, + { + "id": "72328", + "name": "Nicolás Ruiz", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.43714000", + "longitude": "-92.58522000" + }, + { + "id": "72359", + "name": "Nueva América", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.92281000", + "longitude": "-92.30587000" + }, + { + "id": "72362", + "name": "Nueva Colombia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.69670000", + "longitude": "-92.72111000" + }, + { + "id": "72364", + "name": "Nueva Esperanza", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24746000", + "longitude": "-92.45524000" + }, + { + "id": "72366", + "name": "Nueva Independencia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.78259000", + "longitude": "-92.20883000" + }, + { + "id": "72368", + "name": "Nueva Libertad", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.09038000", + "longitude": "-92.80813000" + }, + { + "id": "72369", + "name": "Nueva Libertad (El Colorado)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.89861000", + "longitude": "-92.05917000" + }, + { + "id": "72370", + "name": "Nueva Morelia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.61784000", + "longitude": "-92.14517000" + }, + { + "id": "72371", + "name": "Nueva Palestina", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.81722000", + "longitude": "-91.26000000" + }, + { + "id": "72375", + "name": "Nueva Sesecapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.40205000", + "longitude": "-92.82239000" + }, + { + "id": "72376", + "name": "Nueva Tenochtitlán (Rizo de Oro)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.47639000", + "longitude": "-94.08056000" + }, + { + "id": "72378", + "name": "Nuevo Amatenango", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.50852000", + "longitude": "-92.10958000" + }, + { + "id": "72380", + "name": "Nuevo Carmen Tonapac", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.69667000", + "longitude": "-92.95556000" + }, + { + "id": "72385", + "name": "Nuevo Francisco León", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03031000", + "longitude": "-91.32216000" + }, + { + "id": "72389", + "name": "Nuevo Juan del Grijalva", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.42722000", + "longitude": "-93.37222000" + }, + { + "id": "72391", + "name": "Nuevo León", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.48629000", + "longitude": "-92.57140000" + }, + { + "id": "72393", + "name": "Nuevo Limar", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.45514000", + "longitude": "-92.39890000" + }, + { + "id": "72398", + "name": "Nuevo México", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.46944000", + "longitude": "-93.43806000" + }, + { + "id": "72395", + "name": "Nuevo Milenio Valdivia", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.50306000", + "longitude": "-92.94861000" + }, + { + "id": "72399", + "name": "Nuevo Naranjo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.15444000", + "longitude": "-93.43333000" + }, + { + "id": "72401", + "name": "Nuevo Nicapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63464000", + "longitude": "-93.07238000" + }, + { + "id": "72402", + "name": "Nuevo Pacayal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.66010000", + "longitude": "-92.31538000" + }, + { + "id": "72407", + "name": "Nuevo Pumpuapa (Cereso)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.92562000", + "longitude": "-92.36533000" + }, + { + "id": "72409", + "name": "Nuevo San Juan Chamula", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.14426000", + "longitude": "-91.44379000" + }, + { + "id": "72413", + "name": "Nuevo Sitalá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.13936000", + "longitude": "-92.48287000" + }, + { + "id": "72419", + "name": "Nuevo Vicente Guerrero", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.03860000", + "longitude": "-92.97542000" + }, + { + "id": "72420", + "name": "Nuevo Vicente Guerrero (El Chichonal)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.48528000", + "longitude": "-92.87139000" + }, + { + "id": "72421", + "name": "Nuevo Volcán Chichonal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.77263000", + "longitude": "-93.10955000" + }, + { + "id": "72423", + "name": "Nuevo Xochimilco", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.45442000", + "longitude": "-93.36904000" + }, + { + "id": "72447", + "name": "Ochusjob", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.22482000", + "longitude": "-92.25201000" + }, + { + "id": "72448", + "name": "Ococh", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.83806000", + "longitude": "-92.47528000" + }, + { + "id": "72450", + "name": "Ocosingo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.90639000", + "longitude": "-92.09374000" + }, + { + "id": "72452", + "name": "Ocotepec", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22620000", + "longitude": "-93.16440000" + }, + { + "id": "72464", + "name": "Ocozocoautla de Espinosa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76231000", + "longitude": "-93.37476000" + }, + { + "id": "72467", + "name": "Octavio Paz", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.85778000", + "longitude": "-92.26389000" + }, + { + "id": "72484", + "name": "Ojo de Agua", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.15773000", + "longitude": "-91.75794000" + }, + { + "id": "72508", + "name": "Omoa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.83292000", + "longitude": "-92.23279000" + }, + { + "id": "72510", + "name": "Once de Abril", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.05199000", + "longitude": "-92.14224000" + }, + { + "id": "72534", + "name": "Ostuacán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.40664000", + "longitude": "-93.33643000" + }, + { + "id": "72535", + "name": "Osumacinta", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93611000", + "longitude": "-93.09028000" + }, + { + "id": "72546", + "name": "Oxchuc", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78588000", + "longitude": "-92.34455000" + }, + { + "id": "72550", + "name": "Oxinam", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86306000", + "longitude": "-92.54917000" + }, + { + "id": "72564", + "name": "Pablo L. Sidar", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.83053000", + "longitude": "-92.27977000" + }, + { + "id": "72571", + "name": "Pacú", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.63584000", + "longitude": "-93.13437000" + }, + { + "id": "72582", + "name": "Palenque", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.50953000", + "longitude": "-91.98248000" + }, + { + "id": "72625", + "name": "Pantelhó", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00563000", + "longitude": "-92.47165000" + }, + { + "id": "72626", + "name": "Pantepec", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.18842000", + "longitude": "-93.04998000" + }, + { + "id": "72650", + "name": "Paraíso del Grijalva", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.22576000", + "longitude": "-92.64318000" + }, + { + "id": "72653", + "name": "Paredón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.05083000", + "longitude": "-93.86667000" + }, + { + "id": "72680", + "name": "Paso Hondo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.68390000", + "longitude": "-92.01860000" + }, + { + "id": "72704", + "name": "Pasté", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.70420000", + "longitude": "-92.74111000" + }, + { + "id": "72709", + "name": "Patosil", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.75210000", + "longitude": "-92.74133000" + }, + { + "id": "72712", + "name": "Patria Nueva (San José el Contento)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92778000", + "longitude": "-92.11361000" + }, + { + "id": "72714", + "name": "Pavencul", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.20249000", + "longitude": "-92.17993000" + }, + { + "id": "72736", + "name": "Perla de Acapulco", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.79570000", + "longitude": "-91.47793000" + }, + { + "id": "72742", + "name": "Petalcingo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22715000", + "longitude": "-92.41511000" + }, + { + "id": "72761", + "name": "Pichucalco", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51000000", + "longitude": "-93.11591000" + }, + { + "id": "72766", + "name": "Piedra Labrada", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.68226000", + "longitude": "-92.30538000" + }, + { + "id": "72774", + "name": "Pijijiapan", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.68618000", + "longitude": "-93.20938000" + }, + { + "id": "72795", + "name": "Plan de Agua Prieta", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.13111000", + "longitude": "-92.79139000" + }, + { + "id": "72798", + "name": "Plan de Ayala", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.47152000", + "longitude": "-92.02735000" + }, + { + "id": "72846", + "name": "Pomposo Castellanos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.59033000", + "longitude": "-93.86688000" + }, + { + "id": "72861", + "name": "Potrerillo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.63096000", + "longitude": "-92.02059000" + }, + { + "id": "72891", + "name": "Presidente Echeverría (Laja Tendida)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33583000", + "longitude": "-92.66861000" + }, + { + "id": "72895", + "name": "Primer Cantón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.12056000", + "longitude": "-92.44000000" + }, + { + "id": "72907", + "name": "Profresor Roberto Barrios", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.32583000", + "longitude": "-91.92639000" + }, + { + "id": "72927", + "name": "Puebla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.91583000", + "longitude": "-92.50389000" + }, + { + "id": "72938", + "name": "Pueblo Nuevo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16027000", + "longitude": "-92.89977000" + }, + { + "id": "72971", + "name": "Puerto Madero", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.72076000", + "longitude": "-92.42146000" + }, + { + "id": "72983", + "name": "Pugchén Mumuntic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86389000", + "longitude": "-92.82361000" + }, + { + "id": "72986", + "name": "Punta Arena", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.74601000", + "longitude": "-92.05871000" + }, + { + "id": "73024", + "name": "Querétaro", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.83752000", + "longitude": "-92.75774000" + }, + { + "id": "73036", + "name": "Quintana Roo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.60667000", + "longitude": "-93.56194000" + }, + { + "id": "73046", + "name": "Rafael Pascacio Gamboa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.91818000", + "longitude": "-93.26833000" + }, + { + "id": "73047", + "name": "Rafael Ramírez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.46199000", + "longitude": "-91.94523000" + }, + { + "id": "73052", + "name": "Ramón F. Balboa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.47427000", + "longitude": "-91.40318000" + }, + { + "id": "73082", + "name": "Raudales Malpaso", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.18833000", + "longitude": "-93.60583000" + }, + { + "id": "73087", + "name": "Rayón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.20137000", + "longitude": "-93.01110000" + }, + { + "id": "73084", + "name": "Raymundo Enríquez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.86722000", + "longitude": "-92.31466000" + }, + { + "id": "73168", + "name": "Río Blanco", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.20501000", + "longitude": "-91.63429000" + }, + { + "id": "73171", + "name": "Río Chancalá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33454000", + "longitude": "-91.68430000" + }, + { + "id": "73178", + "name": "Río Jordán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24611000", + "longitude": "-91.93306000" + }, + { + "id": "73094", + "name": "Reforma", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.86876000", + "longitude": "-93.22673000" + }, + { + "id": "73096", + "name": "Reforma y Planada", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38694000", + "longitude": "-92.86583000" + }, + { + "id": "73100", + "name": "Revolución Mexicana", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.17156000", + "longitude": "-93.07666000" + }, + { + "id": "73106", + "name": "Ricardo Flores Magón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39397000", + "longitude": "-92.69618000" + }, + { + "id": "73118", + "name": "Rincón Chamula", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.20718000", + "longitude": "-92.93912000" + }, + { + "id": "73143", + "name": "Rizo de Oro", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.97088000", + "longitude": "-92.48316000" + }, + { + "id": "73145", + "name": "Roblada Grande", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.48909000", + "longitude": "-93.19499000" + }, + { + "id": "73151", + "name": "Rodulfo Figueroa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.92006000", + "longitude": "-91.90370000" + }, + { + "id": "73153", + "name": "Romerillo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76528000", + "longitude": "-92.56750000" + }, + { + "id": "73192", + "name": "Sabanilla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.30308000", + "longitude": "-92.58368000" + }, + { + "id": "73195", + "name": "Sabinalito", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.70186000", + "longitude": "-91.98636000" + }, + { + "id": "73198", + "name": "Saclamantón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78833000", + "longitude": "-92.63500000" + }, + { + "id": "73225", + "name": "Saltillo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39359000", + "longitude": "-91.94890000" + }, + { + "id": "73227", + "name": "Salto de Agua", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.55435000", + "longitude": "-92.33941000" + }, + { + "id": "73230", + "name": "Salvador Urbina", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.03535000", + "longitude": "-92.20805000" + }, + { + "id": "73278", + "name": "San Andrés Duraznal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.15653000", + "longitude": "-92.79606000" + }, + { + "id": "73325", + "name": "San Antonio Buenavista", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.15234000", + "longitude": "-91.65020000" + }, + { + "id": "73326", + "name": "San Antonio Bulujib", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99667000", + "longitude": "-92.29667000" + }, + { + "id": "73380", + "name": "San Antonio del Monte", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76028000", + "longitude": "-92.65306000" + }, + { + "id": "73455", + "name": "San Caralampio", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.82935000", + "longitude": "-92.03555000" + }, + { + "id": "73466", + "name": "San Cayetano", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96119000", + "longitude": "-92.76016000" + }, + { + "id": "73483", + "name": "San Cristóbal de las Casas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73176000", + "longitude": "-92.64126000" + }, + { + "id": "73526", + "name": "San Felipe Tizapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.27616000", + "longitude": "-92.61300000" + }, + { + "id": "73535", + "name": "San Fernando", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87153000", + "longitude": "-93.20759000" + }, + { + "id": "73547", + "name": "San Francisco (El Calvito)", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.32167000", + "longitude": "-92.56194000" + }, + { + "id": "73569", + "name": "San Francisco Jaconá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26278000", + "longitude": "-93.03250000" + }, + { + "id": "73588", + "name": "San Francisco Pujiltic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.27922000", + "longitude": "-92.45319000" + }, + { + "id": "73665", + "name": "San Isidro", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.74373000", + "longitude": "-93.35276000" + }, + { + "id": "73691", + "name": "San Isidro las Banderas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.23028000", + "longitude": "-93.06028000" + }, + { + "id": "73720", + "name": "San Jerónimo Tulijá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22361000", + "longitude": "-91.78972000" + }, + { + "id": "73756", + "name": "San José Chapayal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.30056000", + "longitude": "-92.89028000" + }, + { + "id": "73855", + "name": "San José las Chicharras", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.64363000", + "longitude": "-92.20659000" + }, + { + "id": "73803", + "name": "San José Yashitinín", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.65472000", + "longitude": "-92.44500000" + }, + { + "id": "73804", + "name": "San José Yocnajab", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.25383000", + "longitude": "-92.08698000" + }, + { + "id": "74021", + "name": "San Lucas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.61167000", + "longitude": "-92.71806000" + }, + { + "id": "74061", + "name": "San Luqueño", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.01278000", + "longitude": "-93.84583000" + }, + { + "id": "74150", + "name": "San Miguel", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.36324000", + "longitude": "-92.00762000" + }, + { + "id": "74242", + "name": "San Miguel la Sardina", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.29417000", + "longitude": "-93.35250000" + }, + { + "id": "74290", + "name": "San Pablo Huacano", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.19583000", + "longitude": "-93.20750000" + }, + { + "id": "74321", + "name": "San Pedro Buenavista", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.08333000", + "longitude": "-93.11667000" + }, + { + "id": "74362", + "name": "San Pedro Nichtalucum", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03444000", + "longitude": "-92.72694000" + }, + { + "id": "74420", + "name": "San Quintín", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.40672000", + "longitude": "-91.34575000" + }, + { + "id": "74510", + "name": "San Vicente la Mesilla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.17861000", + "longitude": "-92.29333000" + }, + { + "id": "74653", + "name": "Santa Elena", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.89267000", + "longitude": "-91.58987000" + }, + { + "id": "74704", + "name": "Santa María", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35230000", + "longitude": "-92.07679000" + }, + { + "id": "74829", + "name": "Santa Rita", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.13167000", + "longitude": "-91.97500000" + }, + { + "id": "74989", + "name": "Santiago el Pinar", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94838000", + "longitude": "-92.72074000" + }, + { + "id": "74936", + "name": "Santiago Pojcol", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99148000", + "longitude": "-91.98071000" + }, + { + "id": "74993", + "name": "Santo Domingo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.03067000", + "longitude": "-92.10361000" + }, + { + "id": "75019", + "name": "Santo Domingo de las Palmas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.13667000", + "longitude": "-91.32194000" + }, + { + "id": "75068", + "name": "Señor del Pozo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.29625000", + "longitude": "-92.11165000" + }, + { + "id": "75069", + "name": "Shoctic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22361000", + "longitude": "-92.48806000" + }, + { + "id": "75070", + "name": "Sibacá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93093000", + "longitude": "-92.14006000" + }, + { + "id": "75071", + "name": "Sibaniljá Pocolum", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87639000", + "longitude": "-92.46111000" + }, + { + "id": "75081", + "name": "Siltepec", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.55717000", + "longitude": "-92.32314000" + }, + { + "id": "75084", + "name": "Simojovel", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.14736000", + "longitude": "-92.67154000" + }, + { + "id": "75085", + "name": "Simojovel de Allende", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.14036000", + "longitude": "-92.71394000" + }, + { + "id": "75089", + "name": "Sinaloa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.89261000", + "longitude": "-92.12896000" + }, + { + "id": "75099", + "name": "Sitalá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02417000", + "longitude": "-92.30694000" + }, + { + "id": "75107", + "name": "Socoltenango", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.17412000", + "longitude": "-92.36658000" + }, + { + "id": "75109", + "name": "Soconusco", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.31502000", + "longitude": "-92.72645000" + }, + { + "id": "75119", + "name": "Solosuchiapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.39364000", + "longitude": "-93.01301000" + }, + { + "id": "75129", + "name": "Soyaló", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.91352000", + "longitude": "-92.96579000" + }, + { + "id": "75133", + "name": "Soyatitán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.29427000", + "longitude": "-92.42402000" + }, + { + "id": "75138", + "name": "Suchiapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.60775000", + "longitude": "-93.10003000" + }, + { + "id": "75139", + "name": "Suchiate", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.64138000", + "longitude": "-92.22252000" + }, + { + "id": "75161", + "name": "Tacuba Nueva", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09028000", + "longitude": "-92.37028000" + }, + { + "id": "75172", + "name": "Talismán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.96333000", + "longitude": "-92.14722000" + }, + { + "id": "75176", + "name": "Tamaulipas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.77189000", + "longitude": "-93.40718000" + }, + { + "id": "75214", + "name": "Taniperla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82222000", + "longitude": "-91.52333000" + }, + { + "id": "75221", + "name": "Tapachula", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.90385000", + "longitude": "-92.25749000" + }, + { + "id": "75222", + "name": "Tapalapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22618000", + "longitude": "-93.11552000" + }, + { + "id": "75227", + "name": "Tapilula", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.25355000", + "longitude": "-93.00933000" + }, + { + "id": "75288", + "name": "Tecpatán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.13676000", + "longitude": "-93.31133000" + }, + { + "id": "75352", + "name": "Tenango", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96667000", + "longitude": "-92.41667000" + }, + { + "id": "75371", + "name": "Tentic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86333000", + "longitude": "-92.68222000" + }, + { + "id": "75381", + "name": "Teopisca", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.54182000", + "longitude": "-92.47405000" + }, + { + "id": "75506", + "name": "Texcaltic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.79550000", + "longitude": "-92.18737000" + }, + { + "id": "75556", + "name": "Tierra y Libertad", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.37889000", + "longitude": "-93.86056000" + }, + { + "id": "75565", + "name": "Tila", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.30054000", + "longitude": "-92.42730000" + }, + { + "id": "75569", + "name": "Tiltepec", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39389000", + "longitude": "-93.86972000" + }, + { + "id": "75574", + "name": "Tinajas 1ra. Sección", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.71750000", + "longitude": "-92.32861000" + }, + { + "id": "75715", + "name": "Tocob Leglemal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.23389000", + "longitude": "-92.37833000" + }, + { + "id": "75738", + "name": "Tonalá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.08977000", + "longitude": "-93.75489000" + }, + { + "id": "75750", + "name": "Totolapa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.54357000", + "longitude": "-92.68019000" + }, + { + "id": "75771", + "name": "Tres Cerros", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.91556000", + "longitude": "-92.47278000" + }, + { + "id": "75777", + "name": "Tres Picos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.88209000", + "longitude": "-93.52867000" + }, + { + "id": "75805", + "name": "Tumbala", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27746000", + "longitude": "-92.31700000" + }, + { + "id": "75825", + "name": "Tuxtla", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.75973000", + "longitude": "-93.11308000" + }, + { + "id": "75827", + "name": "Tuxtla Chico", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.93945000", + "longitude": "-92.16730000" + }, + { + "id": "75831", + "name": "Tuzantán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.14711000", + "longitude": "-92.42237000" + }, + { + "id": "75833", + "name": "Tz'Aquiviljok", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.85528000", + "longitude": "-92.45972000" + }, + { + "id": "75835", + "name": "Tzajalá", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.13559000", + "longitude": "-92.39328000" + }, + { + "id": "75834", + "name": "Tzajalchén", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84165000", + "longitude": "-92.46014000" + }, + { + "id": "75836", + "name": "Tzeltal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93944000", + "longitude": "-92.47778000" + }, + { + "id": "75840", + "name": "Tzimol", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.18356000", + "longitude": "-92.18934000" + }, + { + "id": "75842", + "name": "Tzinil", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.25778000", + "longitude": "-92.32222000" + }, + { + "id": "75848", + "name": "Tziscao", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.08155000", + "longitude": "-91.66641000" + }, + { + "id": "75850", + "name": "Tzoeptic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88278000", + "longitude": "-92.56806000" + }, + { + "id": "75852", + "name": "Tzontehuitz", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.83314000", + "longitude": "-92.57965000" + }, + { + "id": "75853", + "name": "Tzopilja", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73972000", + "longitude": "-92.30917000" + }, + { + "id": "75860", + "name": "Ubilio García", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.08405000", + "longitude": "-91.47241000" + }, + { + "id": "75881", + "name": "Unión Buena Vista", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.48582000", + "longitude": "-92.81823000" + }, + { + "id": "75882", + "name": "Unión Buenavista", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.79527000", + "longitude": "-92.54417000" + }, + { + "id": "75885", + "name": "Unión Juárez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.28083000", + "longitude": "-92.39972000" + }, + { + "id": "75886", + "name": "Unión Roja", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.04658000", + "longitude": "-92.21653000" + }, + { + "id": "75901", + "name": "Usipa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.50028000", + "longitude": "-92.43806000" + }, + { + "id": "75940", + "name": "Vega del Rosario", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.52083000", + "longitude": "-92.30720000" + }, + { + "id": "75943", + "name": "Veinte de Noviembre", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.97730000", + "longitude": "-92.26509000" + }, + { + "id": "75963", + "name": "Venustiano Carranza", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.32314000", + "longitude": "-92.55844000" + }, + { + "id": "75966", + "name": "Veracruz", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.40417000", + "longitude": "-91.99944000" + }, + { + "id": "75967", + "name": "Verapaz", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.71166000", + "longitude": "-92.06199000" + }, + { + "id": "75973", + "name": "Vicente Guerrero", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.66028000", + "longitude": "-93.58306000" + }, + { + "id": "75986", + "name": "Vida Mejor I", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.86972000", + "longitude": "-92.30778000" + }, + { + "id": "75995", + "name": "Villa Comaltitlán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.18645000", + "longitude": "-92.59053000" + }, + { + "id": "75996", + "name": "Villa Corzo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.18510000", + "longitude": "-93.26881000" + }, + { + "id": "76010", + "name": "Villa Hidalgo", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.30457000", + "longitude": "-93.15466000" + }, + { + "id": "76077", + "name": "Villaflores", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.34149000", + "longitude": "-93.33191000" + }, + { + "id": "76081", + "name": "Villahermosa Yaluma", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33366000", + "longitude": "-92.07771000" + }, + { + "id": "76084", + "name": "Villamorelos", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.48000000", + "longitude": "-93.92778000" + }, + { + "id": "76100", + "name": "Viva Cárdenas", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.83570000", + "longitude": "-93.19333000" + }, + { + "id": "76101", + "name": "Viva México", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "14.91008000", + "longitude": "-92.32609000" + }, + { + "id": "76163", + "name": "Xochiltepec", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.12780000", + "longitude": "-92.43388000" + }, + { + "id": "76211", + "name": "Yajalón", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.18519000", + "longitude": "-92.32715000" + }, + { + "id": "76214", + "name": "Yaltem", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84402000", + "longitude": "-92.79057000" + }, + { + "id": "76217", + "name": "Yasha", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39141000", + "longitude": "-92.06878000" + }, + { + "id": "76218", + "name": "Yashanal", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82889000", + "longitude": "-92.45194000" + }, + { + "id": "76238", + "name": "Yibeljoj", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95750000", + "longitude": "-92.50361000" + }, + { + "id": "76244", + "name": "Yoshib", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84528000", + "longitude": "-92.44611000" + }, + { + "id": "76278", + "name": "Zacatonal de Juárez", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27097000", + "longitude": "-92.79936000" + }, + { + "id": "76282", + "name": "Zacualpa", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "15.16820000", + "longitude": "-92.62705000" + }, + { + "id": "76295", + "name": "Zamora Pico de Oro", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33205000", + "longitude": "-90.76560000" + }, + { + "id": "76317", + "name": "Zaragoza", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00906000", + "longitude": "-91.64033000" + }, + { + "id": "76323", + "name": "Zaragoza la Montaña", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.41653000", + "longitude": "-92.20512000" + }, + { + "id": "76331", + "name": "Zequentic", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.71694000", + "longitude": "-92.82667000" + }, + { + "id": "76340", + "name": "Zinacantán", + "state_id": 3451, + "state_code": "CHP", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76020000", + "longitude": "-92.72257000" + }, + { + "id": "68018", + "name": "Abdenago C. García", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.98937000", + "longitude": "-107.55210000" + }, + { + "id": "68091", + "name": "Adolfo López Mateos", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.46667000", + "longitude": "-107.30000000" + }, + { + "id": "68162", + "name": "Ahumada", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.48174000", + "longitude": "-106.48832000" + }, + { + "id": "68187", + "name": "Aldama", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.93636000", + "longitude": "-105.71098000" + }, + { + "id": "68208", + "name": "Allende", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.07787000", + "longitude": "-105.28789000" + }, + { + "id": "68259", + "name": "Ampliación Colonia Lázaro Cárdenas", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.38333000", + "longitude": "-105.61667000" + }, + { + "id": "68286", + "name": "Anáhuac", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.48396000", + "longitude": "-106.74720000" + }, + { + "id": "68323", + "name": "Aquiles Serdán", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.58454000", + "longitude": "-105.88108000" + }, + { + "id": "68379", + "name": "Ascensión", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.27914000", + "longitude": "-107.73149000" + }, + { + "id": "68477", + "name": "Baborigame", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.42962000", + "longitude": "-107.26857000" + }, + { + "id": "68491", + "name": "Bachíniva", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.76801000", + "longitude": "-107.25559000" + }, + { + "id": "68497", + "name": "Bahuichivo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.40950000", + "longitude": "-108.06740000" + }, + { + "id": "68508", + "name": "Balleza", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.95154000", + "longitude": "-106.34921000" + }, + { + "id": "68563", + "name": "Basaseachic", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.20626000", + "longitude": "-108.21270000" + }, + { + "id": "68565", + "name": "Basúchil", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.52479000", + "longitude": "-107.40172000" + }, + { + "id": "68566", + "name": "Batopilas", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.02846000", + "longitude": "-107.74125000" + }, + { + "id": "68598", + "name": "Benito Juárez", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.74624000", + "longitude": "-107.93966000" + }, + { + "id": "68627", + "name": "Bocoyna", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.84133000", + "longitude": "-107.58918000" + }, + { + "id": "68638", + "name": "Boquilla de Babisas (La Boquilla de Conchos)", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.54861000", + "longitude": "-105.40361000" + }, + { + "id": "68667", + "name": "Buenaventura", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.02116000", + "longitude": "-107.19308000" + }, + { + "id": "68758", + "name": "Camargo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.82905000", + "longitude": "-104.78012000" + }, + { + "id": "68822", + "name": "Carichí", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.74601000", + "longitude": "-107.07795000" + }, + { + "id": "68834", + "name": "Carretas", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.24920000", + "longitude": "-106.51062000" + }, + { + "id": "68853", + "name": "Casas Grandes", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.38269000", + "longitude": "-107.95628000" + }, + { + "id": "68907", + "name": "Cerocahui", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.29906000", + "longitude": "-108.05500000" + }, + { + "id": "69126", + "name": "Chínipas", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.39502000", + "longitude": "-108.53730000" + }, + { + "id": "69056", + "name": "Chihuahua", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.82669000", + "longitude": "-106.19876000" + }, + { + "id": "69154", + "name": "Ciudad Delicias", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.19013000", + "longitude": "-105.47012000" + }, + { + "id": "69270", + "name": "Colonia Abraham González (La Quemada)", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.20667000", + "longitude": "-105.40750000" + }, + { + "id": "69286", + "name": "Colonia Campesina", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.14028000", + "longitude": "-105.52667000" + }, + { + "id": "69300", + "name": "Colonia Felipe Ángeles", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.38550000", + "longitude": "-105.51184000" + }, + { + "id": "69338", + "name": "Colonia Nicolás Bravo (Kilómetro Noventa y Dos)", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.09222000", + "longitude": "-105.52778000" + }, + { + "id": "69356", + "name": "Colonia Revolución", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.24167000", + "longitude": "-105.44361000" + }, + { + "id": "69371", + "name": "Colonia Terrazas", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.23795000", + "longitude": "-105.46527000" + }, + { + "id": "69443", + "name": "Conchos", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.58745000", + "longitude": "-105.33358000" + }, + { + "id": "69452", + "name": "Congregación Ortíz", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.25375000", + "longitude": "-105.51922000" + }, + { + "id": "69515", + "name": "Coyame", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.46141000", + "longitude": "-105.09404000" + }, + { + "id": "69516", + "name": "Coyame del Sotol", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.68793000", + "longitude": "-105.13855000" + }, + { + "id": "69532", + "name": "Creel", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.75054000", + "longitude": "-107.63520000" + }, + { + "id": "69583", + "name": "Cuauhtémoc", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.40884000", + "longitude": "-106.86319000" + }, + { + "id": "69648", + "name": "Cusihuiriachi", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.23980000", + "longitude": "-106.83477000" + }, + { + "id": "69676", + "name": "Delicias", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.16948000", + "longitude": "-105.44913000" + }, + { + "id": "69729", + "name": "Dr. Belisario Domínguez", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.98462000", + "longitude": "-106.45234000" + }, + { + "id": "69758", + "name": "Ejido Benito Juárez", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.14937000", + "longitude": "-106.88362000" + }, + { + "id": "69763", + "name": "Ejido El Largo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.68333000", + "longitude": "-108.26667000" + }, + { + "id": "69764", + "name": "Ejido El Vergel", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.47133000", + "longitude": "-106.38320000" + }, + { + "id": "69771", + "name": "Ejido La Quemada", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.84761000", + "longitude": "-107.02152000" + }, + { + "id": "70045", + "name": "El Molino", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.16608000", + "longitude": "-105.53783000" + }, + { + "id": "70074", + "name": "El Oro", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.86320000", + "longitude": "-105.84838000" + }, + { + "id": "70200", + "name": "El Sauz", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.05056000", + "longitude": "-106.25280000" + }, + { + "id": "70224", + "name": "El Terrero", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.18152000", + "longitude": "-107.38740000" + }, + { + "id": "70242", + "name": "El Tule", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.07325000", + "longitude": "-106.31735000" + }, + { + "id": "70338", + "name": "Estación Conchos", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.97326000", + "longitude": "-105.28843000" + }, + { + "id": "70339", + "name": "Estación Consuelo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.33118000", + "longitude": "-105.59471000" + }, + { + "id": "70511", + "name": "Galeana", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.10916000", + "longitude": "-107.63167000" + }, + { + "id": "70645", + "name": "Gómez Farías", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.35981000", + "longitude": "-107.73960000" + }, + { + "id": "70560", + "name": "Gran Morelos", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.24841000", + "longitude": "-106.49357000" + }, + { + "id": "70568", + "name": "Guachochi", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.17004000", + "longitude": "-107.29404000" + }, + { + "id": "70575", + "name": "Guadalupe", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.82737000", + "longitude": "-105.64057000" + }, + { + "id": "70602", + "name": "Guadalupe Victoria", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.53396000", + "longitude": "-107.73835000" + }, + { + "id": "70613", + "name": "Guadalupe y Calvo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.09117000", + "longitude": "-106.96260000" + }, + { + "id": "70628", + "name": "Guazapares", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.44005000", + "longitude": "-108.23338000" + }, + { + "id": "70631", + "name": "Guerrero", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.42888000", + "longitude": "-107.50377000" + }, + { + "id": "70689", + "name": "Hidalgo del Parral", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.07964000", + "longitude": "-105.70722000" + }, + { + "id": "70765", + "name": "Huejotitán", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.05623000", + "longitude": "-106.17819000" + }, + { + "id": "70852", + "name": "Ignacio Zaragoza", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.64248000", + "longitude": "-107.76375000" + }, + { + "id": "70870", + "name": "Independencia", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.09231000", + "longitude": "-107.54322000" + }, + { + "id": "71002", + "name": "Janos", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.88909000", + "longitude": "-108.19431000" + }, + { + "id": "71049", + "name": "Jiménez", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.33333000", + "longitude": "-105.40000000" + }, + { + "id": "71090", + "name": "José Esteban Coronado", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.73722000", + "longitude": "-105.15833000" + }, + { + "id": "71094", + "name": "José Mariano Jiménez", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.13076000", + "longitude": "-104.92391000" + }, + { + "id": "71146", + "name": "Juárez", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.72024000", + "longitude": "-106.46084000" + }, + { + "id": "71135", + "name": "Julimes", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.42376000", + "longitude": "-105.42727000" + }, + { + "id": "71159", + "name": "Kilómetro Noventa y Nueve", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.12668000", + "longitude": "-105.58018000" + }, + { + "id": "71244", + "name": "La Constitución", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.92077000", + "longitude": "-106.79620000" + }, + { + "id": "71249", + "name": "La Cruz", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.86359000", + "longitude": "-105.19596000" + }, + { + "id": "71336", + "name": "La Junta", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.48003000", + "longitude": "-107.32948000" + }, + { + "id": "71594", + "name": "Las Cruces", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.43278000", + "longitude": "-107.38958000" + }, + { + "id": "71649", + "name": "Las Varas", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.15659000", + "longitude": "-105.34058000" + }, + { + "id": "71650", + "name": "Las Varas (Estación Babícora)", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.48083000", + "longitude": "-108.02556000" + }, + { + "id": "71654", + "name": "Las Yerbitas [Aserradero]", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.08025000", + "longitude": "-106.77969000" + }, + { + "id": "71890", + "name": "Lázaro Cárdenas", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.39051000", + "longitude": "-105.62346000" + }, + { + "id": "71712", + "name": "Loma Blanca", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.57996000", + "longitude": "-106.29604000" + }, + { + "id": "71917", + "name": "Madera", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.19366000", + "longitude": "-108.14684000" + }, + { + "id": "71937", + "name": "Maguarichi", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.81655000", + "longitude": "-107.96866000" + }, + { + "id": "71958", + "name": "Manuel Benavides", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.94431000", + "longitude": "-103.91889000" + }, + { + "id": "71964", + "name": "Manuel Ojinaga", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.56444000", + "longitude": "-104.41639000" + }, + { + "id": "71990", + "name": "Mariano Balleza", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.95389000", + "longitude": "-106.34611000" + }, + { + "id": "72015", + "name": "Matachí", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.84287000", + "longitude": "-107.75503000" + }, + { + "id": "72017", + "name": "Matamoros", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.76209000", + "longitude": "-105.58523000" + }, + { + "id": "72075", + "name": "Meoqui", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.27226000", + "longitude": "-105.48046000" + }, + { + "id": "72081", + "name": "Mesa del Huracán", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.67045000", + "longitude": "-108.25182000" + }, + { + "id": "72122", + "name": "Miguel Ahumada", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.61861000", + "longitude": "-106.51222000" + }, + { + "id": "72132", + "name": "Miguel Hidalgo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.15361000", + "longitude": "-105.39389000" + }, + { + "id": "72207", + "name": "Monte Verde", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.91401000", + "longitude": "-108.71573000" + }, + { + "id": "72229", + "name": "Morelos", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.67289000", + "longitude": "-107.67665000" + }, + { + "id": "72236", + "name": "Moris", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.14888000", + "longitude": "-108.52325000" + }, + { + "id": "72272", + "name": "Naica", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.85736000", + "longitude": "-105.49233000" + }, + { + "id": "72273", + "name": "Namiquipa", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.25173000", + "longitude": "-107.41400000" + }, + { + "id": "72317", + "name": "Nicolas Bravo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.35306000", + "longitude": "-107.93440000" + }, + { + "id": "72334", + "name": "Ninguno [CERESO]", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.60972000", + "longitude": "-105.94028000" + }, + { + "id": "72344", + "name": "Nonoava", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.43854000", + "longitude": "-106.73285000" + }, + { + "id": "72381", + "name": "Nuevo Casas Grandes", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "30.41552000", + "longitude": "-107.91166000" + }, + { + "id": "72440", + "name": "Ocampo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.19367000", + "longitude": "-108.36760000" + }, + { + "id": "72466", + "name": "Octaviano López", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.00250000", + "longitude": "-105.03306000" + }, + { + "id": "72479", + "name": "Ojinaga", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.31371000", + "longitude": "-104.44840000" + }, + { + "id": "72530", + "name": "Orranteño", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.18272000", + "longitude": "-105.33774000" + }, + { + "id": "72532", + "name": "Oscar Soto Maynez", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.02963000", + "longitude": "-107.47242000" + }, + { + "id": "72660", + "name": "Parral", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.93022000", + "longitude": "-105.66640000" + }, + { + "id": "72748", + "name": "Peña Blanca", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.28984000", + "longitude": "-107.71130000" + }, + { + "id": "72858", + "name": "Porvenir", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.24038000", + "longitude": "-105.87664000" + }, + { + "id": "72886", + "name": "Praxédis Guerrero", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.36667000", + "longitude": "-106.01667000" + }, + { + "id": "72884", + "name": "Praxedis G. Guerrero", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.37061000", + "longitude": "-106.00616000" + }, + { + "id": "72929", + "name": "Pueblito de Allende", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.99065000", + "longitude": "-105.32686000" + }, + { + "id": "72972", + "name": "Puerto Palomas", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.77718000", + "longitude": "-107.63439000" + }, + { + "id": "73142", + "name": "Riva Palacio", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.81462000", + "longitude": "-106.64990000" + }, + { + "id": "73149", + "name": "Rodrígo M. Quevedo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.91982000", + "longitude": "-107.52079000" + }, + { + "id": "73159", + "name": "Rosales", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.18753000", + "longitude": "-105.55717000" + }, + { + "id": "73163", + "name": "Rosario", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.25616000", + "longitude": "-106.29878000" + }, + { + "id": "73232", + "name": "Samachique", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.30156000", + "longitude": "-107.53897000" + }, + { + "id": "73234", + "name": "Samalayuca", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.34242000", + "longitude": "-106.47981000" + }, + { + "id": "73239", + "name": "San Agustín", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.51674000", + "longitude": "-106.25548000" + }, + { + "id": "73266", + "name": "San Andrés", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.54726000", + "longitude": "-106.50350000" + }, + { + "id": "73451", + "name": "San Buenaventura", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.84320000", + "longitude": "-107.46067000" + }, + { + "id": "73460", + "name": "San Carlos", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "29.10665000", + "longitude": "-103.90722000" + }, + { + "id": "73609", + "name": "San Francisco de Borja", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.90171000", + "longitude": "-106.68562000" + }, + { + "id": "73610", + "name": "San Francisco de Conchos", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.57356000", + "longitude": "-105.37779000" + }, + { + "id": "73620", + "name": "San Francisco del Oro", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.89417000", + "longitude": "-105.90594000" + }, + { + "id": "73667", + "name": "San Isidro", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "31.54683000", + "longitude": "-106.27868000" + }, + { + "id": "73982", + "name": "San Juanito", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.97295000", + "longitude": "-107.60199000" + }, + { + "id": "73992", + "name": "San Lorenzo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.15352000", + "longitude": "-106.47695000" + }, + { + "id": "74425", + "name": "San Rafael", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.49750000", + "longitude": "-107.89099000" + }, + { + "id": "74565", + "name": "Santa Bárbara", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.80381000", + "longitude": "-105.82024000" + }, + { + "id": "74657", + "name": "Santa Eulalia", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.59450000", + "longitude": "-105.88796000" + }, + { + "id": "74674", + "name": "Santa Isabel", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.34166000", + "longitude": "-106.37220000" + }, + { + "id": "75044", + "name": "Saucillo", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.03055000", + "longitude": "-105.29376000" + }, + { + "id": "75098", + "name": "Sisoguichi", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.78304000", + "longitude": "-107.49517000" + }, + { + "id": "75856", + "name": "Témoris", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.27569000", + "longitude": "-108.27946000" + }, + { + "id": "75344", + "name": "Temósachic", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.95469000", + "longitude": "-107.82957000" + }, + { + "id": "75730", + "name": "Tomochic", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.35273000", + "longitude": "-107.84576000" + }, + { + "id": "75816", + "name": "Turuachi", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.13139000", + "longitude": "-106.70417000" + }, + { + "id": "75894", + "name": "Urique", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.21122000", + "longitude": "-107.91415000" + }, + { + "id": "75897", + "name": "Uruachi", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.84669000", + "longitude": "-108.36712000" + }, + { + "id": "75910", + "name": "Valentín Gómez Farías", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.21667000", + "longitude": "-106.58333000" + }, + { + "id": "75919", + "name": "Valle de Allende", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "26.93527000", + "longitude": "-105.39271000" + }, + { + "id": "75927", + "name": "Valle de Zaragoza", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.45066000", + "longitude": "-105.80847000" + }, + { + "id": "75928", + "name": "Valle del Rosario", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "27.31881000", + "longitude": "-106.29551000" + }, + { + "id": "76252", + "name": "Yécora", + "state_id": 3447, + "state_code": "CHH", + "country_id": 142, + "country_code": "MX", + "latitude": "28.37154000", + "longitude": "-108.92781000" + }, + { + "id": "68014", + "name": "Abasolo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.18219000", + "longitude": "-101.42757000" + }, + { + "id": "68114", + "name": "Agua Nueva", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.18934000", + "longitude": "-101.08840000" + }, + { + "id": "68175", + "name": "Albia", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.66537000", + "longitude": "-103.36253000" + }, + { + "id": "68188", + "name": "Alejo González (Bilbao)", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.82194000", + "longitude": "-103.19472000" + }, + { + "id": "68374", + "name": "Arteaga", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.44528000", + "longitude": "-100.84667000" + }, + { + "id": "68639", + "name": "Boquilla de las Perlas", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.32803000", + "longitude": "-103.28870000" + }, + { + "id": "68788", + "name": "Candela", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "26.83840000", + "longitude": "-100.66630000" + }, + { + "id": "68859", + "name": "Castaños", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "26.78932000", + "longitude": "-101.43211000" + }, + { + "id": "69112", + "name": "Chula Vista", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.04083000", + "longitude": "-103.36611000" + }, + { + "id": "69142", + "name": "Ciudad Acuña", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "29.32322000", + "longitude": "-100.95217000" + }, + { + "id": "69169", + "name": "Ciudad Melchor Múzquiz", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.87933000", + "longitude": "-101.51615000" + }, + { + "id": "69202", + "name": "Cloete", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.92097000", + "longitude": "-101.17576000" + }, + { + "id": "69291", + "name": "Colonia Diana Laura Riojas de Colosio", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "26.97722000", + "longitude": "-101.48083000" + }, + { + "id": "69377", + "name": "Colonia Venustiano Carranza", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.63861000", + "longitude": "-100.55667000" + }, + { + "id": "69430", + "name": "Compuertas", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.74681000", + "longitude": "-103.30250000" + }, + { + "id": "69445", + "name": "Concordia", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.77982000", + "longitude": "-103.11696000" + }, + { + "id": "69520", + "name": "Coyote", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.69510000", + "longitude": "-103.28420000" + }, + { + "id": "69570", + "name": "Cuatro Ciénegas de Carranza", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "26.98542000", + "longitude": "-102.06386000" + }, + { + "id": "69797", + "name": "Ejido Venustiano Carranza", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.35091000", + "longitude": "-102.95698000" + }, + { + "id": "69858", + "name": "El Cambio", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.64048000", + "longitude": "-103.32710000" + }, + { + "id": "69919", + "name": "El Consuelo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.57131000", + "longitude": "-103.27620000" + }, + { + "id": "69936", + "name": "El Cuije", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.69670000", + "longitude": "-103.34107000" + }, + { + "id": "70012", + "name": "El Lequeitio", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.84673000", + "longitude": "-103.27890000" + }, + { + "id": "70063", + "name": "El Nilo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.73363000", + "longitude": "-102.94297000" + }, + { + "id": "70099", + "name": "El Perú", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.60290000", + "longitude": "-103.34423000" + }, + { + "id": "70119", + "name": "El Porvenir (El Porvenir de Arriba)", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.77444000", + "longitude": "-103.32528000" + }, + { + "id": "70158", + "name": "El Retiro", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.82758000", + "longitude": "-103.13004000" + }, + { + "id": "70321", + "name": "Escuadrón Doscientos Uno", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.67433000", + "longitude": "-103.34829000" + }, + { + "id": "70452", + "name": "Fraccionamiento la Noria", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.55722000", + "longitude": "-103.34361000" + }, + { + "id": "70491", + "name": "Frontera", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "26.92814000", + "longitude": "-101.45212000" + }, + { + "id": "70529", + "name": "General Cepeda", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.37767000", + "longitude": "-101.47571000" + }, + { + "id": "70550", + "name": "Gilita", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.39314000", + "longitude": "-103.19976000" + }, + { + "id": "70561", + "name": "Granada", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.64127000", + "longitude": "-103.26710000" + }, + { + "id": "70630", + "name": "Guerrero", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.30992000", + "longitude": "-100.38048000" + }, + { + "id": "70828", + "name": "Hércules", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.04306000", + "longitude": "-103.79111000" + }, + { + "id": "70683", + "name": "Hidalgo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.78994000", + "longitude": "-99.87699000" + }, + { + "id": "70710", + "name": "Hormiguero", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.68386000", + "longitude": "-103.34121000" + }, + { + "id": "70714", + "name": "Huachichil", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.21114000", + "longitude": "-100.82570000" + }, + { + "id": "70802", + "name": "Huitrón", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85748000", + "longitude": "-103.34825000" + }, + { + "id": "70956", + "name": "Jaboncillo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.74809000", + "longitude": "-103.26550000" + }, + { + "id": "71051", + "name": "Jiménez", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "29.06975000", + "longitude": "-100.67895000" + }, + { + "id": "71240", + "name": "La Concha", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.63524000", + "longitude": "-103.38136000" + }, + { + "id": "71248", + "name": "La Cruz", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "26.99339000", + "longitude": "-101.49580000" + }, + { + "id": "71268", + "name": "La Esmeralda", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.28735000", + "longitude": "-103.66283000" + }, + { + "id": "71273", + "name": "La Esperanza", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.56631000", + "longitude": "-103.28123000" + }, + { + "id": "71289", + "name": "La Fe", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.84743000", + "longitude": "-103.20117000" + }, + { + "id": "71293", + "name": "La Florida", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.76811000", + "longitude": "-103.32424000" + }, + { + "id": "71374", + "name": "La Luz", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.72621000", + "longitude": "-103.24540000" + }, + { + "id": "71425", + "name": "La Palma", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.60830000", + "longitude": "-103.32228000" + }, + { + "id": "71432", + "name": "La Partida", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.59181000", + "longitude": "-103.29994000" + }, + { + "id": "71435", + "name": "La Paz", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.59390000", + "longitude": "-103.35852000" + }, + { + "id": "71442", + "name": "La Perla", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.49696000", + "longitude": "-103.35088000" + }, + { + "id": "71449", + "name": "La Pinta", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.90281000", + "longitude": "-103.26476000" + }, + { + "id": "71559", + "name": "Laguna del Rey (Químicas del Rey)", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.03056000", + "longitude": "-103.36667000" + }, + { + "id": "71566", + "name": "Lamadrid", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.05087000", + "longitude": "-101.79552000" + }, + { + "id": "71623", + "name": "Las Mieleras", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.39948000", + "longitude": "-103.26740000" + }, + { + "id": "71869", + "name": "Los Álamos", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.35645000", + "longitude": "-100.94564000" + }, + { + "id": "71878", + "name": "Luchanas", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.79091000", + "longitude": "-103.19384000" + }, + { + "id": "71984", + "name": "Maravillas", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.65872000", + "longitude": "-103.34079000" + }, + { + "id": "72018", + "name": "Matamoros", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.52699000", + "longitude": "-103.22850000" + }, + { + "id": "72035", + "name": "Mayran", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.67296000", + "longitude": "-102.84288000" + }, + { + "id": "72144", + "name": "Minas de Barroterán", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.65144000", + "longitude": "-101.28212000" + }, + { + "id": "72191", + "name": "Monclova", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "26.90687000", + "longitude": "-101.42056000" + }, + { + "id": "72270", + "name": "Nadadores", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.02819000", + "longitude": "-101.59420000" + }, + { + "id": "72294", + "name": "Nava", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.42071000", + "longitude": "-100.76565000" + }, + { + "id": "72373", + "name": "Nueva Rosita", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.94028000", + "longitude": "-101.21812000" + }, + { + "id": "72392", + "name": "Nuevo León", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.71863000", + "longitude": "-103.29471000" + }, + { + "id": "72438", + "name": "Ocampo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.31477000", + "longitude": "-102.39660000" + }, + { + "id": "72446", + "name": "Ocho de Enero", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "26.99733000", + "longitude": "-101.49598000" + }, + { + "id": "72581", + "name": "Palau", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.89232000", + "longitude": "-101.42319000" + }, + { + "id": "72654", + "name": "Paredón", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.94580000", + "longitude": "-100.93449000" + }, + { + "id": "72661", + "name": "Parras de la Fuente", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.44185000", + "longitude": "-102.17808000" + }, + { + "id": "72772", + "name": "Piedras Negras", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.70007000", + "longitude": "-100.52353000" + }, + { + "id": "72902", + "name": "Primero de Mayo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.23675000", + "longitude": "-101.22360000" + }, + { + "id": "72909", + "name": "Progreso", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.42841000", + "longitude": "-100.98892000" + }, + { + "id": "72993", + "name": "Purísima", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.68038000", + "longitude": "-103.32218000" + }, + { + "id": "73049", + "name": "Ramos Arizpe", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.53928000", + "longitude": "-100.94742000" + }, + { + "id": "73056", + "name": "Rancho Alegre", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.50237000", + "longitude": "-103.32789000" + }, + { + "id": "73169", + "name": "Río Bravo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.31254000", + "longitude": "-100.91668000" + }, + { + "id": "73196", + "name": "Sabinas", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.85591000", + "longitude": "-101.11738000" + }, + { + "id": "73199", + "name": "Sacramento", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.00264000", + "longitude": "-101.72463000" + }, + { + "id": "73226", + "name": "Saltillo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.42321000", + "longitude": "-101.00530000" + }, + { + "id": "73370", + "name": "San Antonio de las Alazanas", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.27166000", + "longitude": "-100.57835000" + }, + { + "id": "73379", + "name": "San Antonio del Coyote", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.69444000", + "longitude": "-103.28556000" + }, + { + "id": "73450", + "name": "San Buenaventura", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.06193000", + "longitude": "-101.54891000" + }, + { + "id": "73459", + "name": "San Carlos", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "29.02844000", + "longitude": "-100.90217000" + }, + { + "id": "73509", + "name": "San Esteban de Abajo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.70903000", + "longitude": "-103.00047000" + }, + { + "id": "73608", + "name": "San Francisco de Arriba", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.75028000", + "longitude": "-103.15631000" + }, + { + "id": "73648", + "name": "San Ignacio", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.73643000", + "longitude": "-103.09049000" + }, + { + "id": "73808", + "name": "San José de Aura", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.58778000", + "longitude": "-101.37250000" + }, + { + "id": "73965", + "name": "San Juan de la Vaquería", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.25275000", + "longitude": "-101.22011000" + }, + { + "id": "73963", + "name": "San Juan de Sabinas", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.92942000", + "longitude": "-101.30495000" + }, + { + "id": "73989", + "name": "San Lorenzo", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.72272000", + "longitude": "-103.15350000" + }, + { + "id": "74065", + "name": "San Marcos", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.66667000", + "longitude": "-103.00910000" + }, + { + "id": "74152", + "name": "San Miguel", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.69924000", + "longitude": "-102.95072000" + }, + { + "id": "74555", + "name": "Santa Ana del Pilar", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.70938000", + "longitude": "-103.30840000" + }, + { + "id": "74662", + "name": "Santa Fé", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.56665000", + "longitude": "-103.33200000" + }, + { + "id": "75020", + "name": "Santo Niño Aguanaval", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.43118000", + "longitude": "-103.27909000" + }, + { + "id": "75058", + "name": "Seis de Octubre (Santo Niño)", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.76389000", + "longitude": "-103.23889000" + }, + { + "id": "75072", + "name": "Sierra Mojada", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.28861000", + "longitude": "-103.70124000" + }, + { + "id": "75118", + "name": "Solima", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.66249000", + "longitude": "-103.27560000" + }, + { + "id": "75162", + "name": "Tacubaya", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.68361000", + "longitude": "-103.06861000" + }, + { + "id": "75748", + "name": "Torreón", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.54389000", + "longitude": "-103.41898000" + }, + { + "id": "75946", + "name": "Veinte de Noviembre", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.71193000", + "longitude": "-103.32960000" + }, + { + "id": "75947", + "name": "Veinte de Noviembre (Santa Lucía)", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.78923000", + "longitude": "-103.15127000" + }, + { + "id": "75956", + "name": "Ventana", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.32695000", + "longitude": "-103.47772000" + }, + { + "id": "75987", + "name": "Viesca", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.33923000", + "longitude": "-102.80493000" + }, + { + "id": "76025", + "name": "Villa Las Esperanzas", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "27.74274000", + "longitude": "-101.35295000" + }, + { + "id": "76051", + "name": "Villa Unión", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.22228000", + "longitude": "-100.72624000" + }, + { + "id": "76049", + "name": "Villa Union", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.21667000", + "longitude": "-100.71667000" + }, + { + "id": "76092", + "name": "Virginias", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "25.80083000", + "longitude": "-103.27235000" + }, + { + "id": "76318", + "name": "Zaragoza", + "state_id": 3471, + "state_code": "COA", + "country_id": 142, + "country_code": "MX", + "latitude": "28.49320000", + "longitude": "-100.92230000" + }, + { + "id": "68179", + "name": "Alcaraces", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36433000", + "longitude": "-103.57676000" + }, + { + "id": "68354", + "name": "Armería", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95554000", + "longitude": "-103.98357000" + }, + { + "id": "68443", + "name": "Augusto Gómez Villanueva", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02154000", + "longitude": "-104.00156000" + }, + { + "id": "68732", + "name": "Caleras", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99687000", + "longitude": "-103.87898000" + }, + { + "id": "68768", + "name": "Camotlán de Miraflores", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22033000", + "longitude": "-104.23491000" + }, + { + "id": "68933", + "name": "Cerro de Ortega", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75080000", + "longitude": "-103.72155000" + }, + { + "id": "69186", + "name": "Ciudad de Armería", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93780000", + "longitude": "-103.96417000" + }, + { + "id": "69193", + "name": "Ciudad de Villa de Álvarez", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26722000", + "longitude": "-103.73778000" + }, + { + "id": "69247", + "name": "Cofradía", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43333000", + "longitude": "-103.55000000" + }, + { + "id": "69248", + "name": "Cofradía de Juárez", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96261000", + "longitude": "-103.95549000" + }, + { + "id": "69249", + "name": "Cofradía de Morelos", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86785000", + "longitude": "-103.83668000" + }, + { + "id": "69251", + "name": "Cofradía de Suchitlán", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40954000", + "longitude": "-103.70043000" + }, + { + "id": "69416", + "name": "Comala", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32717000", + "longitude": "-103.75926000" + }, + { + "id": "69477", + "name": "Coquimatlán", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20625000", + "longitude": "-103.80952000" + }, + { + "id": "69582", + "name": "Cuauhtémoc", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32861000", + "longitude": "-103.60284000" + }, + { + "id": "69653", + "name": "Cuyutlán", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91937000", + "longitude": "-104.06873000" + }, + { + "id": "69911", + "name": "El Colomo", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06101000", + "longitude": "-104.25853000" + }, + { + "id": "70059", + "name": "El Naranjo", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13016000", + "longitude": "-104.41821000" + }, + { + "id": "70233", + "name": "El Trapiche", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27787000", + "longitude": "-103.66090000" + }, + { + "id": "70942", + "name": "Ixtlahuacán", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00119000", + "longitude": "-103.73638000" + }, + { + "id": "70972", + "name": "Jalipa", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12275000", + "longitude": "-104.26737000" + }, + { + "id": "71212", + "name": "La Central", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14276000", + "longitude": "-104.43819000" + }, + { + "id": "71862", + "name": "Los Tepames", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09389000", + "longitude": "-103.62250000" + }, + { + "id": "71918", + "name": "Madrid", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08459000", + "longitude": "-103.87123000" + }, + { + "id": "72146", + "name": "Minatitlán", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36667000", + "longitude": "-104.06667000" + }, + { + "id": "72787", + "name": "Piscila", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15889000", + "longitude": "-103.70105000" + }, + { + "id": "72933", + "name": "Pueblo Juárez (La Magdalena)", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16722000", + "longitude": "-103.93111000" + }, + { + "id": "73026", + "name": "Quesería", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38708000", + "longitude": "-103.57243000" + }, + { + "id": "73130", + "name": "Rincón de López", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05308000", + "longitude": "-103.93241000" + }, + { + "id": "75142", + "name": "Suchitlán", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37541000", + "longitude": "-103.71141000" + }, + { + "id": "75285", + "name": "Tecomán", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89473000", + "longitude": "-103.87345000" + }, + { + "id": "75959", + "name": "Venustiano Carranza", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01112000", + "longitude": "-104.11033000" + }, + { + "id": "76285", + "name": "Zacualpan", + "state_id": 3472, + "state_code": "COL", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36318000", + "longitude": "-103.82433000" + }, + { + "id": "68016", + "name": "Abasolo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.31145000", + "longitude": "-104.65580000" + }, + { + "id": "68278", + "name": "Antonio Amaro", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.27684000", + "longitude": "-104.01873000" + }, + { + "id": "68341", + "name": "Arcinas", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.77556000", + "longitude": "-103.40913000" + }, + { + "id": "68376", + "name": "Arturo Martínez Adame", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.83157000", + "longitude": "-103.38291000" + }, + { + "id": "76400", + "name": "Álvaro Obregón", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.51417000", + "longitude": "-103.50500000" + }, + { + "id": "68510", + "name": "Banco Nacional", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.87139000", + "longitude": "-103.35667000" + }, + { + "id": "68513", + "name": "Banderas del Águila", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.92596000", + "longitude": "-105.33950000" + }, + { + "id": "68609", + "name": "Bermejillo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.88682000", + "longitude": "-103.62069000" + }, + { + "id": "68736", + "name": "California", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.76090000", + "longitude": "-103.37556000" + }, + { + "id": "68785", + "name": "Canatlán", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.52576000", + "longitude": "-104.77327000" + }, + { + "id": "68885", + "name": "Ceballos", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "26.52580000", + "longitude": "-104.12950000" + }, + { + "id": "69199", + "name": "Ciénega de Nuestra Señora de Guadalupe", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.06223000", + "longitude": "-106.32900000" + }, + { + "id": "69131", + "name": "Cieneguillas", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.05472000", + "longitude": "-104.05186000" + }, + { + "id": "69133", + "name": "Cinco de Febrero", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.07657000", + "longitude": "-104.50467000" + }, + { + "id": "69134", + "name": "Cinco de Mayo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.10181000", + "longitude": "-104.57449000" + }, + { + "id": "69158", + "name": "Ciudad Guadalupe Victoria", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.44401000", + "longitude": "-104.12156000" + }, + { + "id": "69163", + "name": "Ciudad Lerdo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.53718000", + "longitude": "-103.52456000" + }, + { + "id": "69575", + "name": "Cuauhtemoc", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.29037000", + "longitude": "-103.80913000" + }, + { + "id": "69611", + "name": "Cuencamé", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.64123000", + "longitude": "-103.73772000" + }, + { + "id": "69612", + "name": "Cuencamé de Ceniceros", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.87116000", + "longitude": "-103.69731000" + }, + { + "id": "69686", + "name": "Diez de Octubre", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.72849000", + "longitude": "-104.63626000" + }, + { + "id": "69835", + "name": "El Arenal", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.06527000", + "longitude": "-104.43387000" + }, + { + "id": "69948", + "name": "El Durazno", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.47042000", + "longitude": "-106.92742000" + }, + { + "id": "69986", + "name": "El Huarache (El Guarache)", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.52000000", + "longitude": "-103.48667000" + }, + { + "id": "70027", + "name": "El Lucero", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.87830000", + "longitude": "-103.40209000" + }, + { + "id": "70060", + "name": "El Nayar", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.96422000", + "longitude": "-104.69541000" + }, + { + "id": "70144", + "name": "El Rayo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.52112000", + "longitude": "-103.60821000" + }, + { + "id": "70190", + "name": "El Salto", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.77781000", + "longitude": "-105.36192000" + }, + { + "id": "70256", + "name": "El Vergel", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.63965000", + "longitude": "-103.52139000" + }, + { + "id": "70284", + "name": "Emiliano Zapata", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.44218000", + "longitude": "-103.88784000" + }, + { + "id": "70325", + "name": "Esfuerzos Unidos", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.82214000", + "longitude": "-104.99000000" + }, + { + "id": "70326", + "name": "Esmeralda", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.74326000", + "longitude": "-103.43097000" + }, + { + "id": "70379", + "name": "Eureka de Media Luna (Eureka)", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.79889000", + "longitude": "-103.37361000" + }, + { + "id": "70399", + "name": "Felipe Carrillo Puerto", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.33305000", + "longitude": "-104.01105000" + }, + { + "id": "70467", + "name": "Francisco I. Madero", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.40091000", + "longitude": "-104.31980000" + }, + { + "id": "70502", + "name": "Gabriel Hernández (Mancinas)", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.81167000", + "longitude": "-104.02444000" + }, + { + "id": "70646", + "name": "Gómez Palacio", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.56985000", + "longitude": "-103.49588000" + }, + { + "id": "70527", + "name": "General Calixto Contreras", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.42916000", + "longitude": "-104.04592000" + }, + { + "id": "70540", + "name": "General Lázaro Cárdenas", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.29372000", + "longitude": "-103.99800000" + }, + { + "id": "70616", + "name": "Guanaceví", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.99610000", + "longitude": "-106.10898000" + }, + { + "id": "70623", + "name": "Guatimapé", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.80733000", + "longitude": "-104.91994000" + }, + { + "id": "70686", + "name": "Hidalgo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "26.02409000", + "longitude": "-104.82823000" + }, + { + "id": "70837", + "name": "Ignacio Allende", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.47432000", + "longitude": "-103.99710000" + }, + { + "id": "70846", + "name": "Ignacio Ramírez", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.50796000", + "longitude": "-104.08751000" + }, + { + "id": "70851", + "name": "Ignacio Zaragoza", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.13643000", + "longitude": "-103.38430000" + }, + { + "id": "70872", + "name": "Indé", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.91248000", + "longitude": "-105.22319000" + }, + { + "id": "71010", + "name": "Jauja", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.92894000", + "longitude": "-103.37382000" + }, + { + "id": "71050", + "name": "Jiménez", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.83051000", + "longitude": "-103.35733000" + }, + { + "id": "71092", + "name": "José Guadalupe Aguilera (Santa Lucía)", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.45420000", + "longitude": "-104.70888000" + }, + { + "id": "71093", + "name": "José Guadalupe Rodríguez", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.31912000", + "longitude": "-104.08002000" + }, + { + "id": "71100", + "name": "José María Morelos", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.01270000", + "longitude": "-105.20882000" + }, + { + "id": "71109", + "name": "José María Pino Suárez", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.87733000", + "longitude": "-104.49104000" + }, + { + "id": "71111", + "name": "José Refugio Salcido", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.96444000", + "longitude": "-104.51806000" + }, + { + "id": "71117", + "name": "Juan E. García", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.49206000", + "longitude": "-103.69170000" + }, + { + "id": "71215", + "name": "La Ciudad", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.73052000", + "longitude": "-105.68882000" + }, + { + "id": "71291", + "name": "La Flor", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.68138000", + "longitude": "-103.36837000" + }, + { + "id": "71305", + "name": "La Goma", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.48460000", + "longitude": "-103.68884000" + }, + { + "id": "71332", + "name": "La Joya", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.83750000", + "longitude": "-103.99861000" + }, + { + "id": "71364", + "name": "La Loma", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.46401000", + "longitude": "-103.67351000" + }, + { + "id": "71373", + "name": "La Luz", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.63481000", + "longitude": "-103.61093000" + }, + { + "id": "71455", + "name": "La Popular", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.67951000", + "longitude": "-103.46621000" + }, + { + "id": "71595", + "name": "Las Cuevas", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.49815000", + "longitude": "-103.54950000" + }, + { + "id": "71667", + "name": "León Guzmán", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.49986000", + "longitude": "-103.65924000" + }, + { + "id": "71687", + "name": "Llano Grande", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.86367000", + "longitude": "-105.20558000" + }, + { + "id": "71769", + "name": "Los Angeles", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.52206000", + "longitude": "-103.56757000" + }, + { + "id": "71978", + "name": "Mapimí", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "26.19095000", + "longitude": "-104.05463000" + }, + { + "id": "72107", + "name": "Mezquital", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "22.88401000", + "longitude": "-104.55350000" + }, + { + "id": "72286", + "name": "Narciso Mendoza", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.01310000", + "longitude": "-103.96620000" + }, + { + "id": "72299", + "name": "Nazareno", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.39916000", + "longitude": "-103.42065000" + }, + { + "id": "72301", + "name": "Nazas", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.22462000", + "longitude": "-104.11458000" + }, + { + "id": "72324", + "name": "Nicolás Bravo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.39010000", + "longitude": "-104.74374000" + }, + { + "id": "72341", + "name": "Nogales", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.98130000", + "longitude": "-104.72229000" + }, + { + "id": "72343", + "name": "Nombre de Dios", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.84891000", + "longitude": "-104.24712000" + }, + { + "id": "72387", + "name": "Nuevo Ideal", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.88544000", + "longitude": "-105.07552000" + }, + { + "id": "72442", + "name": "Ocampo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "26.55251000", + "longitude": "-105.75999000" + }, + { + "id": "72528", + "name": "Orizaba", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.95750000", + "longitude": "-104.07389000" + }, + { + "id": "72666", + "name": "Pasaje", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.92775000", + "longitude": "-103.80746000" + }, + { + "id": "72683", + "name": "Paso Nacional", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.26311000", + "longitude": "-104.01941000" + }, + { + "id": "72701", + "name": "Pastor Rovaix", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.68230000", + "longitude": "-103.51019000" + }, + { + "id": "73008", + "name": "Pánuco de Coronado", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.53972000", + "longitude": "-104.32707000" + }, + { + "id": "72723", + "name": "Pedriceña", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.11858000", + "longitude": "-103.78942000" + }, + { + "id": "72758", + "name": "Picardías", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.32466000", + "longitude": "-103.48588000" + }, + { + "id": "72943", + "name": "Pueblo Nuevo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.41405000", + "longitude": "-105.34021000" + }, + { + "id": "73051", + "name": "Ramón Corona", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.18611000", + "longitude": "-103.63028000" + }, + { + "id": "73108", + "name": "Ricardo Flores Magón", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.46250000", + "longitude": "-104.53040000" + }, + { + "id": "73146", + "name": "Rodeo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.17860000", + "longitude": "-104.55950000" + }, + { + "id": "73392", + "name": "San Atenógenes (La Villita)", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.99056000", + "longitude": "-104.01722000" + }, + { + "id": "73437", + "name": "San Bernardino de Milpillas Chico", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.38463000", + "longitude": "-105.15314000" + }, + { + "id": "73440", + "name": "San Bernardo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "26.16986000", + "longitude": "-105.66251000" + }, + { + "id": "73512", + "name": "San Felipe", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.69278000", + "longitude": "-103.38250000" + }, + { + "id": "73613", + "name": "San Francisco de Horizonte (Horizonte)", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.93690000", + "longitude": "-103.41688000" + }, + { + "id": "73619", + "name": "San Francisco del Mezquital", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.47444000", + "longitude": "-104.39490000" + }, + { + "id": "73571", + "name": "San Francisco Javier", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.72572000", + "longitude": "-104.03371000" + }, + { + "id": "73694", + "name": "San Jacinto", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.48030000", + "longitude": "-103.73750000" + }, + { + "id": "73816", + "name": "San José de Gracia", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.47510000", + "longitude": "-104.74189000" + }, + { + "id": "73827", + "name": "San José de Viñedo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.64865000", + "longitude": "-103.40255000" + }, + { + "id": "73828", + "name": "San José de Zaragoza", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.22753000", + "longitude": "-103.46650000" + }, + { + "id": "73961", + "name": "San Juan de Guadalupe", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.63273000", + "longitude": "-102.78180000" + }, + { + "id": "73975", + "name": "San Juan del Rio del Centauro del Norte", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.77824000", + "longitude": "-104.45833000" + }, + { + "id": "73984", + "name": "San Julio", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.93639000", + "longitude": "-103.42083000" + }, + { + "id": "74229", + "name": "San Miguel de Cruces", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.41255000", + "longitude": "-105.84152000" + }, + { + "id": "74411", + "name": "San Pedro del Gallo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.56411000", + "longitude": "-104.29284000" + }, + { + "id": "74593", + "name": "Santa Catarina de Tepehuanes", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.33961000", + "longitude": "-105.72445000" + }, + { + "id": "74598", + "name": "Santa Clara", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.47500000", + "longitude": "-103.35694000" + }, + { + "id": "74628", + "name": "Santa Cruz Luján", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.72478000", + "longitude": "-103.35860000" + }, + { + "id": "74814", + "name": "Santa María del Oro", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.94944000", + "longitude": "-105.36444000" + }, + { + "id": "74883", + "name": "Santiago Bayacora", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.89373000", + "longitude": "-104.61276000" + }, + { + "id": "74935", + "name": "Santiago Papasquiaro", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.04389000", + "longitude": "-105.41917000" + }, + { + "id": "75039", + "name": "Sapioris", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.45248000", + "longitude": "-103.71612000" + }, + { + "id": "75155", + "name": "Súchil", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.62193000", + "longitude": "-103.92320000" + }, + { + "id": "75051", + "name": "Sebastián Lerdo de Tejada", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.95444000", + "longitude": "-104.63639000" + }, + { + "id": "75056", + "name": "Seis de Enero", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.52052000", + "longitude": "-103.60150000" + }, + { + "id": "75057", + "name": "Seis de Octubre", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.81361000", + "longitude": "-103.57333000" + }, + { + "id": "75180", + "name": "Tamazula", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.05586000", + "longitude": "-106.76728000" + }, + { + "id": "75181", + "name": "Tamazula de Victoria", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.96818000", + "longitude": "-106.96717000" + }, + { + "id": "75249", + "name": "Tayoltita", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.10278000", + "longitude": "-105.93083000" + }, + { + "id": "75409", + "name": "Tepehuanes", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.47838000", + "longitude": "-106.20884000" + }, + { + "id": "75627", + "name": "Tlahualilo de Zaragoza", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "26.10593000", + "longitude": "-103.44257000" + }, + { + "id": "75743", + "name": "Topia", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.21090000", + "longitude": "-106.57134000" + }, + { + "id": "75767", + "name": "Transporte", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.63411000", + "longitude": "-103.54070000" + }, + { + "id": "75950", + "name": "Velardeña", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.06472000", + "longitude": "-103.73668000" + }, + { + "id": "75952", + "name": "Venecia", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.77844000", + "longitude": "-103.35266000" + }, + { + "id": "75962", + "name": "Venustiano Carranza", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.47158000", + "longitude": "-104.62630000" + }, + { + "id": "75977", + "name": "Vicente Guerrero", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.73429000", + "longitude": "-103.98487000" + }, + { + "id": "75985", + "name": "Victoria de Durango", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "24.02032000", + "longitude": "-104.65756000" + }, + { + "id": "76065", + "name": "Villa de Guadalupe", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.51444000", + "longitude": "-103.48917000" + }, + { + "id": "76004", + "name": "Villa Gregorio García", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.75221000", + "longitude": "-103.35215000" + }, + { + "id": "76015", + "name": "Villa Hidalgo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "26.24833000", + "longitude": "-104.91441000" + }, + { + "id": "76022", + "name": "Villa Juárez", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "25.49203000", + "longitude": "-103.59389000" + }, + { + "id": "76035", + "name": "Villa Montemorelos", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.99154000", + "longitude": "-104.48045000" + }, + { + "id": "76039", + "name": "Villa Ocampo", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "26.44085000", + "longitude": "-105.50640000" + }, + { + "id": "76053", + "name": "Villa Unión", + "state_id": 3453, + "state_code": "DUR", + "country_id": 142, + "country_code": "MX", + "latitude": "23.97460000", + "longitude": "-104.04705000" + }, + { + "id": "68015", + "name": "Abasolo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44997000", + "longitude": "-101.53073000" + }, + { + "id": "68087", + "name": "Acámbaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03085000", + "longitude": "-100.72194000" + }, + { + "id": "68088", + "name": "Adjuntas del Río", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.11667000", + "longitude": "-100.86806000" + }, + { + "id": "68125", + "name": "Aguas Buenas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97028000", + "longitude": "-101.37250000" + }, + { + "id": "68181", + "name": "Alcocer", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86867000", + "longitude": "-100.70456000" + }, + { + "id": "68185", + "name": "Aldama", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81641000", + "longitude": "-101.31467000" + }, + { + "id": "68191", + "name": "Alfaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14941000", + "longitude": "-101.60611000" + }, + { + "id": "68253", + "name": "Ameche", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55261000", + "longitude": "-100.58367000" + }, + { + "id": "68296", + "name": "Apaseo el Alto", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45798000", + "longitude": "-100.62081000" + }, + { + "id": "68297", + "name": "Apaseo el Grande", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54495000", + "longitude": "-100.68462000" + }, + { + "id": "68329", + "name": "Arandas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72468000", + "longitude": "-101.37296000" + }, + { + "id": "68392", + "name": "Atarjea", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.26777000", + "longitude": "-99.71914000" + }, + { + "id": "68505", + "name": "Bajío de Bonillas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94944000", + "longitude": "-101.49528000" + }, + { + "id": "68562", + "name": "Barrón", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.67667000", + "longitude": "-101.08423000" + }, + { + "id": "68523", + "name": "Barretos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93933000", + "longitude": "-101.64282000" + }, + { + "id": "68543", + "name": "Barrio de Guadalupe del Mezquitillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94417000", + "longitude": "-101.80083000" + }, + { + "id": "68640", + "name": "Boquillas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41642000", + "longitude": "-101.43333000" + }, + { + "id": "68681", + "name": "Buenavista de Cortés", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37326000", + "longitude": "-101.87021000" + }, + { + "id": "68874", + "name": "Cañada de Bustos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90436000", + "longitude": "-101.31260000" + }, + { + "id": "68875", + "name": "Cañada de Caracheo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37552000", + "longitude": "-100.94549000" + }, + { + "id": "68879", + "name": "Cañada de Negros", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.92636000", + "longitude": "-101.92115000" + }, + { + "id": "68733", + "name": "Caleras de Ameche", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56133000", + "longitude": "-100.56013000" + }, + { + "id": "68754", + "name": "Calzada del Tepozán", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73762000", + "longitude": "-101.88299000" + }, + { + "id": "68813", + "name": "Capulín de Bustos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88242000", + "longitude": "-101.30680000" + }, + { + "id": "68842", + "name": "Carrizal Grande", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70634000", + "longitude": "-101.30600000" + }, + { + "id": "69660", + "name": "Cárdenas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.63012000", + "longitude": "-101.22040000" + }, + { + "id": "68891", + "name": "Celaya", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52353000", + "longitude": "-100.81570000" + }, + { + "id": "68899", + "name": "Centro Familiar la Soledad", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13500000", + "longitude": "-101.74972000" + }, + { + "id": "68904", + "name": "Cerano", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10877000", + "longitude": "-101.38710000" + }, + { + "id": "68910", + "name": "Cerrito de Gasca", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61829000", + "longitude": "-101.06200000" + }, + { + "id": "68915", + "name": "Cerritos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88552000", + "longitude": "-100.59880000" + }, + { + "id": "68923", + "name": "Cerro Colorado", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.40111000", + "longitude": "-101.32451000" + }, + { + "id": "68928", + "name": "Cerro Gordo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59294000", + "longitude": "-101.12684000" + }, + { + "id": "68971", + "name": "Chamácuaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10444000", + "longitude": "-100.82756000" + }, + { + "id": "68997", + "name": "Charco de Pantoja", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38949000", + "longitude": "-101.35436000" + }, + { + "id": "69029", + "name": "Chichimequillas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03716000", + "longitude": "-101.44274000" + }, + { + "id": "69094", + "name": "Chirimoya (Estación Chirimoya)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.59278000", + "longitude": "-101.09139000" + }, + { + "id": "69124", + "name": "Churipitzeo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41185000", + "longitude": "-101.74206000" + }, + { + "id": "69129", + "name": "Cieneguilla", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.24833000", + "longitude": "-100.27389000" + }, + { + "id": "69168", + "name": "Ciudad Manuel Doblado", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72888000", + "longitude": "-101.95226000" + }, + { + "id": "69205", + "name": "Coachiti", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55944000", + "longitude": "-100.58944000" + }, + { + "id": "69264", + "name": "Colonia 18 de Marzo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55556000", + "longitude": "-101.03556000" + }, + { + "id": "69302", + "name": "Colonia Fraccionamiento el Puente", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52361000", + "longitude": "-100.89667000" + }, + { + "id": "69304", + "name": "Colonia Francisco Javier Mina", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97944000", + "longitude": "-101.41639000" + }, + { + "id": "69393", + "name": "Colonia la Calzada (La Olla)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.50278000", + "longitude": "-100.95889000" + }, + { + "id": "69319", + "name": "Colonia Latinoamericana", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03028000", + "longitude": "-101.70583000" + }, + { + "id": "69332", + "name": "Colonia Morelos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36832000", + "longitude": "-101.89937000" + }, + { + "id": "69336", + "name": "Colonia Morelos de Guadalupe de Rivera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59556000", + "longitude": "-101.44833000" + }, + { + "id": "69341", + "name": "Colonia Nuevo México", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.98475000", + "longitude": "-101.48502000" + }, + { + "id": "69345", + "name": "Colonia Padre Hidalgo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.17056000", + "longitude": "-100.93556000" + }, + { + "id": "69349", + "name": "Colonia Patria Nueva", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52833000", + "longitude": "-100.87944000" + }, + { + "id": "69350", + "name": "Colonia Pedro María Anaya", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52611000", + "longitude": "-100.87778000" + }, + { + "id": "69353", + "name": "Colonia Rafael Corrales Ayala", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90194000", + "longitude": "-101.51611000" + }, + { + "id": "69367", + "name": "Colonia San Luis Rey", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93556000", + "longitude": "-100.73611000" + }, + { + "id": "69421", + "name": "Comanjilla", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06510000", + "longitude": "-101.47303000" + }, + { + "id": "69428", + "name": "Comonfort", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72278000", + "longitude": "-100.75946000" + }, + { + "id": "69482", + "name": "Coroneo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20001000", + "longitude": "-100.36546000" + }, + { + "id": "69488", + "name": "Corral de Piedras de Arriba", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97577000", + "longitude": "-100.59474000" + }, + { + "id": "69490", + "name": "Corralejo de Arriba", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89667000", + "longitude": "-100.65444000" + }, + { + "id": "69494", + "name": "Cortazar", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48362000", + "longitude": "-100.96237000" + }, + { + "id": "69565", + "name": "Cuarta Brigada", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62194000", + "longitude": "-101.28001000" + }, + { + "id": "69605", + "name": "Cuchicuato", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66092000", + "longitude": "-101.46203000" + }, + { + "id": "69616", + "name": "Cuerámaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62546000", + "longitude": "-101.67242000" + }, + { + "id": "69620", + "name": "Cuesta de Peñones", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08400000", + "longitude": "-100.23671000" + }, + { + "id": "69642", + "name": "Cupareo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22876000", + "longitude": "-101.01806000" + }, + { + "id": "69670", + "name": "De Parral", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45611000", + "longitude": "-101.00778000" + }, + { + "id": "69674", + "name": "Delgado de Abajo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71749000", + "longitude": "-100.89338000" + }, + { + "id": "69675", + "name": "Delgado de Arriba", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72222000", + "longitude": "-100.90080000" + }, + { + "id": "69680", + "name": "Derramadero Segundo (Infiernillo)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.09750000", + "longitude": "-100.51417000" + }, + { + "id": "69699", + "name": "Doctor Mora", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14246000", + "longitude": "-100.31966000" + }, + { + "id": "69706", + "name": "Dolores Hidalgo Cuna de la Independencia Nacional", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15611000", + "longitude": "-100.93250000" + }, + { + "id": "69710", + "name": "Don Diego", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69791000", + "longitude": "-100.90209000" + }, + { + "id": "69711", + "name": "Don Francisco", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90281000", + "longitude": "-100.91873000" + }, + { + "id": "69730", + "name": "Duarte", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08712000", + "longitude": "-101.52431000" + }, + { + "id": "69769", + "name": "Ejido Jesús María", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14194000", + "longitude": "-100.91167000" + }, + { + "id": "69814", + "name": "Ejido la Joya", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14325000", + "longitude": "-101.73922000" + }, + { + "id": "69823", + "name": "El Acebuche", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22311000", + "longitude": "-100.74196000" + }, + { + "id": "69860", + "name": "El Canario", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15694000", + "longitude": "-101.33556000" + }, + { + "id": "69865", + "name": "El Capulín", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.04043000", + "longitude": "-100.32220000" + }, + { + "id": "69868", + "name": "El Caracol", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56718000", + "longitude": "-100.98290000" + }, + { + "id": "69872", + "name": "El Carmen", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64009000", + "longitude": "-101.37259000" + }, + { + "id": "69880", + "name": "El Carretón", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.63045000", + "longitude": "-100.98064000" + }, + { + "id": "69883", + "name": "El Carrizalito", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70371000", + "longitude": "-101.32439000" + }, + { + "id": "69887", + "name": "El Castillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58072000", + "longitude": "-100.49297000" + }, + { + "id": "69852", + "name": "El CERESO", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02222000", + "longitude": "-101.68917000" + }, + { + "id": "69901", + "name": "El Chinaco (El Pujido)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52222000", + "longitude": "-100.91972000" + }, + { + "id": "69909", + "name": "El Coecillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97651000", + "longitude": "-101.45010000" + }, + { + "id": "69925", + "name": "El Copalillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72745000", + "longitude": "-101.34570000" + }, + { + "id": "69944", + "name": "El Divisador", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57722000", + "longitude": "-101.15806000" + }, + { + "id": "69957", + "name": "El Escoplo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91004000", + "longitude": "-101.51127000" + }, + { + "id": "69959", + "name": "El Espejo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44094000", + "longitude": "-100.55417000" + }, + { + "id": "69968", + "name": "El Fresno", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27322000", + "longitude": "-100.49154000" + }, + { + "id": "69975", + "name": "El Gallinero", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.18208000", + "longitude": "-100.95996000" + }, + { + "id": "69992", + "name": "El Huizache", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41934000", + "longitude": "-100.95978000" + }, + { + "id": "69997", + "name": "El Jaguey", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91499000", + "longitude": "-101.63426000" + }, + { + "id": "70020", + "name": "El Llanito", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12143000", + "longitude": "-100.95110000" + }, + { + "id": "70029", + "name": "El Maguey", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.98035000", + "longitude": "-101.84651000" + }, + { + "id": "70036", + "name": "El Mezquitillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96213000", + "longitude": "-101.80857000" + }, + { + "id": "70049", + "name": "El Moral", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13030000", + "longitude": "-101.28862000" + }, + { + "id": "70053", + "name": "El Nacimiento", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53596000", + "longitude": "-100.61017000" + }, + { + "id": "70054", + "name": "El Naranjillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71417000", + "longitude": "-101.00056000" + }, + { + "id": "70102", + "name": "El Picacho", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71016000", + "longitude": "-100.63704000" + }, + { + "id": "70141", + "name": "El Puesto", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46890000", + "longitude": "-100.82763000" + }, + { + "id": "70149", + "name": "El Recuerdo de Ancón (Xoconoxtle de Arriba)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.63806000", + "longitude": "-101.12694000" + }, + { + "id": "70156", + "name": "El Refugio de los Sauces", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01488000", + "longitude": "-101.53084000" + }, + { + "id": "70181", + "name": "El Sabino", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28131000", + "longitude": "-101.00224000" + }, + { + "id": "70192", + "name": "El Salto de Espejo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45045000", + "longitude": "-100.50587000" + }, + { + "id": "70195", + "name": "El Salvador (Ranchito San José del Carmen)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28750000", + "longitude": "-100.87722000" + }, + { + "id": "70201", + "name": "El Sauz (El Sauz de Villaseñor)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41056000", + "longitude": "-100.79667000" + }, + { + "id": "70212", + "name": "El Tecolote", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88407000", + "longitude": "-101.92432000" + }, + { + "id": "70216", + "name": "El Tejocote (El Domingo)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.67611000", + "longitude": "-100.91500000" + }, + { + "id": "70245", + "name": "El Tunal", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56944000", + "longitude": "-100.61995000" + }, + { + "id": "70248", + "name": "El Varal", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34845000", + "longitude": "-101.60028000" + }, + { + "id": "70257", + "name": "El Vicarlo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58211000", + "longitude": "-100.67120000" + }, + { + "id": "70261", + "name": "El Zapote", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.73563000", + "longitude": "-101.04905000" + }, + { + "id": "70299", + "name": "Empalme Escobedo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.67250000", + "longitude": "-100.74675000" + }, + { + "id": "70341", + "name": "Estación Corralejo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47000000", + "longitude": "-101.61639000" + }, + { + "id": "70360", + "name": "Estación de San Francisco", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03722000", + "longitude": "-101.82472000" + }, + { + "id": "70344", + "name": "Estación Joaquín", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56082000", + "longitude": "-101.51993000" + }, + { + "id": "70361", + "name": "Estación la Piedad", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36750000", + "longitude": "-101.99806000" + }, + { + "id": "70350", + "name": "Estación Pénjamo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39470000", + "longitude": "-101.69188000" + }, + { + "id": "70364", + "name": "Estancia del Llano", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51101000", + "longitude": "-100.72637000" + }, + { + "id": "70367", + "name": "Estanzuela de Romero", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18477000", + "longitude": "-100.50448000" + }, + { + "id": "70372", + "name": "Estrada", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52918000", + "longitude": "-100.86550000" + }, + { + "id": "70384", + "name": "Ex-Hacienda del Copal", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74083000", + "longitude": "-101.33528000" + }, + { + "id": "70499", + "name": "Fábrica de Melchor", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.67223000", + "longitude": "-100.90171000" + }, + { + "id": "70451", + "name": "Fraccionamiento la Mezquitera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00972000", + "longitude": "-101.83472000" + }, + { + "id": "70456", + "name": "Fraccionamiento las Liebres", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64750000", + "longitude": "-101.39556000" + }, + { + "id": "70431", + "name": "Fraccionamiento Paraíso Real", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.11250000", + "longitude": "-101.58083000" + }, + { + "id": "70432", + "name": "Fraccionamiento Paseo de las Torres", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.16833000", + "longitude": "-101.75806000" + }, + { + "id": "70433", + "name": "Fraccionamiento Praderas de la Venta", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53611000", + "longitude": "-101.00000000" + }, + { + "id": "70445", + "name": "Fraccionamiento Villa Jardín", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99167000", + "longitude": "-101.85194000" + }, + { + "id": "70446", + "name": "Fraccionamiento Villas de Guanajuato", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96028000", + "longitude": "-101.29806000" + }, + { + "id": "70485", + "name": "Franco", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94327000", + "longitude": "-101.46180000" + }, + { + "id": "70486", + "name": "Franco Tavera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60595000", + "longitude": "-100.92700000" + }, + { + "id": "70495", + "name": "Frías", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79945000", + "longitude": "-101.99644000" + }, + { + "id": "70505", + "name": "Gachupines", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.76259000", + "longitude": "-101.56247000" + }, + { + "id": "70513", + "name": "Galerade Panales", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29452000", + "longitude": "-100.81452000" + }, + { + "id": "70521", + "name": "Gasca", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60444000", + "longitude": "-100.85639000" + }, + { + "id": "70522", + "name": "Gavia de Rionda", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.83357000", + "longitude": "-101.61647000" + }, + { + "id": "70574", + "name": "Guadalupe", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.71644000", + "longitude": "-100.97645000" + }, + { + "id": "70609", + "name": "Guadalupe de Paso Blanco", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75498000", + "longitude": "-101.40345000" + }, + { + "id": "70610", + "name": "Guadalupe de Rivera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60499000", + "longitude": "-101.46745000" + }, + { + "id": "70611", + "name": "Guadalupe de Tambula", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86645000", + "longitude": "-100.57620000" + }, + { + "id": "70612", + "name": "Guadalupe del Monte", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55688000", + "longitude": "-100.64064000" + }, + { + "id": "70618", + "name": "Guanajuato", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01858000", + "longitude": "-101.25910000" + }, + { + "id": "70650", + "name": "Hacienda Arriba", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.23366000", + "longitude": "-101.70393000" + }, + { + "id": "70659", + "name": "Hacienda de la Bolsa", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37524000", + "longitude": "-101.10425000" + }, + { + "id": "70658", + "name": "Hacienda de Márquez", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.78037000", + "longitude": "-101.35979000" + }, + { + "id": "70712", + "name": "Hoya de Cintora (La Hoya de Arriba)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36444000", + "longitude": "-101.20833000" + }, + { + "id": "70734", + "name": "Huanímaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36783000", + "longitude": "-101.49869000" + }, + { + "id": "70803", + "name": "Huitzatarito", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49213000", + "longitude": "-101.57064000" + }, + { + "id": "70832", + "name": "Ibarrilla", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.18664000", + "longitude": "-101.64576000" + }, + { + "id": "70876", + "name": "Irapuato", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.67675000", + "longitude": "-101.35628000" + }, + { + "id": "70880", + "name": "Irámuco", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96156000", + "longitude": "-100.92202000" + }, + { + "id": "70982", + "name": "Jalpilla", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73129000", + "longitude": "-100.72090000" + }, + { + "id": "70995", + "name": "Jamaica", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14364000", + "longitude": "-100.73430000" + }, + { + "id": "71004", + "name": "Jaral del Progreso", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37237000", + "longitude": "-101.06249000" + }, + { + "id": "71013", + "name": "Jauregui", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59280000", + "longitude": "-100.71940000" + }, + { + "id": "71149", + "name": "Jícamas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27602000", + "longitude": "-101.35916000" + }, + { + "id": "71021", + "name": "Jerécuaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15467000", + "longitude": "-100.50860000" + }, + { + "id": "71038", + "name": "Jesús del Monte", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91504000", + "longitude": "-101.74129000" + }, + { + "id": "71066", + "name": "Jocoqui", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58201000", + "longitude": "-100.69870000" + }, + { + "id": "71123", + "name": "Juan Martín", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47301000", + "longitude": "-100.74691000" + }, + { + "id": "71144", + "name": "Juventino Rosas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64337000", + "longitude": "-100.99286000" + }, + { + "id": "71170", + "name": "La Aldea", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90166000", + "longitude": "-101.47852000" + }, + { + "id": "71174", + "name": "La Angostura", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27733000", + "longitude": "-101.11005000" + }, + { + "id": "71178", + "name": "La Aurora", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62667000", + "longitude": "-100.75750000" + }, + { + "id": "71189", + "name": "La Caja", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71146000", + "longitude": "-101.43769000" + }, + { + "id": "71190", + "name": "La Calera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80119000", + "longitude": "-101.33207000" + }, + { + "id": "71203", + "name": "La Capilla", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55655000", + "longitude": "-101.30019000" + }, + { + "id": "71216", + "name": "La Ciénega", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.30050000", + "longitude": "-100.48027000" + }, + { + "id": "71214", + "name": "La Cieneguita", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94630000", + "longitude": "-100.78966000" + }, + { + "id": "71224", + "name": "La Compañía", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37760000", + "longitude": "-101.15852000" + }, + { + "id": "71251", + "name": "La Cruz", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45694000", + "longitude": "-100.79583000" + }, + { + "id": "71252", + "name": "La Cruz del Palmar", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96973000", + "longitude": "-100.84354000" + }, + { + "id": "71255", + "name": "La Cuevita", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33872000", + "longitude": "-100.57891000" + }, + { + "id": "71262", + "name": "La Ermita", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15194000", + "longitude": "-101.73306000" + }, + { + "id": "71266", + "name": "La Escondida", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.68723000", + "longitude": "-101.53446000" + }, + { + "id": "71285", + "name": "La Estancia de San José del Carmen", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29555000", + "longitude": "-100.86083000" + }, + { + "id": "71288", + "name": "La Estrella", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39050000", + "longitude": "-101.92109000" + }, + { + "id": "71299", + "name": "La Gavia", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39431000", + "longitude": "-100.88122000" + }, + { + "id": "71334", + "name": "La Joya de Calvillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74883000", + "longitude": "-101.60847000" + }, + { + "id": "71338", + "name": "La Labor", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53388000", + "longitude": "-100.70200000" + }, + { + "id": "71341", + "name": "La Laborcita", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10636000", + "longitude": "-101.55170000" + }, + { + "id": "71350", + "name": "La Laja", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52946000", + "longitude": "-100.76170000" + }, + { + "id": "71362", + "name": "La Lobera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.35815000", + "longitude": "-101.54030000" + }, + { + "id": "71376", + "name": "La Luz", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55386000", + "longitude": "-101.18097000" + }, + { + "id": "71402", + "name": "La Moncada", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28348000", + "longitude": "-100.80502000" + }, + { + "id": "71409", + "name": "La Norita", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55409000", + "longitude": "-100.51660000" + }, + { + "id": "71412", + "name": "La Ordeña", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.68988000", + "longitude": "-101.11830000" + }, + { + "id": "71415", + "name": "La Ortiga", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96222000", + "longitude": "-101.00056000" + }, + { + "id": "71421", + "name": "La Palma", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51560000", + "longitude": "-100.69787000" + }, + { + "id": "71429", + "name": "La Palmita (La Palmita de San Gabriel)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49806000", + "longitude": "-100.87806000" + }, + { + "id": "71470", + "name": "La Purísima", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51444000", + "longitude": "-100.67250000" + }, + { + "id": "71481", + "name": "La Sabana", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.19956000", + "longitude": "-100.68956000" + }, + { + "id": "71484", + "name": "La Sardina", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88118000", + "longitude": "-101.66440000" + }, + { + "id": "71485", + "name": "La Sauceda", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89831000", + "longitude": "-101.19124000" + }, + { + "id": "71491", + "name": "La Soledad", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60792000", + "longitude": "-101.41558000" + }, + { + "id": "71504", + "name": "La Tinaja", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49028000", + "longitude": "-101.21556000" + }, + { + "id": "71511", + "name": "La Trinidad", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56333000", + "longitude": "-100.78361000" + }, + { + "id": "71539", + "name": "Labor de Peralta", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.40885000", + "longitude": "-101.40901000" + }, + { + "id": "71544", + "name": "Ladrilleras del Refugio", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08472000", + "longitude": "-101.55361000" + }, + { + "id": "71552", + "name": "Laguna de Guadalupe", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.80046000", + "longitude": "-101.35689000" + }, + { + "id": "71548", + "name": "Laguna Larga", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54131000", + "longitude": "-101.48451000" + }, + { + "id": "71549", + "name": "Laguna Larga de Cortés", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39270000", + "longitude": "-101.94062000" + }, + { + "id": "71570", + "name": "Landín", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75392000", + "longitude": "-100.90592000" + }, + { + "id": "71657", + "name": "Las Ánimas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39709000", + "longitude": "-101.79964000" + }, + { + "id": "71584", + "name": "Las Cañas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29586000", + "longitude": "-101.41823000" + }, + { + "id": "71605", + "name": "Las Huertas Tercera Sección", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65278000", + "longitude": "-101.39306000" + }, + { + "id": "71610", + "name": "Las Liebres", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.83532000", + "longitude": "-101.47062000" + }, + { + "id": "71620", + "name": "Las Masas (La Luz Masas)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59917000", + "longitude": "-101.54278000" + }, + { + "id": "71646", + "name": "Las Trojas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71111000", + "longitude": "-100.78083000" + }, + { + "id": "71666", + "name": "León", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.09309000", + "longitude": "-101.64501000" + }, + { + "id": "71668", + "name": "León de los Aldama", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12908000", + "longitude": "-101.67374000" + }, + { + "id": "71701", + "name": "Lo de Juárez", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.76833000", + "longitude": "-101.34111000" + }, + { + "id": "71735", + "name": "Loma de la Esperanza", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65927000", + "longitude": "-101.55670000" + }, + { + "id": "71733", + "name": "Loma de Yerbabuena", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06056000", + "longitude": "-101.44944000" + }, + { + "id": "71734", + "name": "Loma de Zempoala", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29182000", + "longitude": "-101.08023000" + }, + { + "id": "71723", + "name": "Loma Pelada", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57222000", + "longitude": "-101.29417000" + }, + { + "id": "71724", + "name": "Loma Tendida", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37560000", + "longitude": "-101.31057000" + }, + { + "id": "71772", + "name": "Los Arcos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.04928000", + "longitude": "-101.68864000" + }, + { + "id": "71871", + "name": "Los Ángeles", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55361000", + "longitude": "-100.94167000" + }, + { + "id": "71796", + "name": "Los Desmontes", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95662000", + "longitude": "-100.73917000" + }, + { + "id": "71798", + "name": "Los Dolores (Las Quince Letras)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.31778000", + "longitude": "-100.56583000" + }, + { + "id": "71799", + "name": "Los Dulces Nombres", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64806000", + "longitude": "-100.96472000" + }, + { + "id": "71801", + "name": "Los Fierros", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19353000", + "longitude": "-100.75941000" + }, + { + "id": "71802", + "name": "Los Galvan", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06377000", + "longitude": "-100.80114000" + }, + { + "id": "71812", + "name": "Los Lorenzos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07229000", + "longitude": "-101.37580000" + }, + { + "id": "71813", + "name": "Los Mancera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47028000", + "longitude": "-100.80389000" + }, + { + "id": "71815", + "name": "Los Medranos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88283000", + "longitude": "-101.43640000" + }, + { + "id": "71822", + "name": "Los Nicolases", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.85806000", + "longitude": "-101.31750000" + }, + { + "id": "71824", + "name": "Los Ocotes", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41560000", + "longitude": "-101.96108000" + }, + { + "id": "71838", + "name": "Los Prietos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57513000", + "longitude": "-101.26574000" + }, + { + "id": "71841", + "name": "Los Ramírez", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01942000", + "longitude": "-101.64411000" + }, + { + "id": "71843", + "name": "Los Remedios", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.18492000", + "longitude": "-100.19919000" + }, + { + "id": "71855", + "name": "Los Rodríguez", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.04311000", + "longitude": "-100.64361000" + }, + { + "id": "71876", + "name": "Loza de Barrera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.98461000", + "longitude": "-101.52972000" + }, + { + "id": "71877", + "name": "Loza de los Padres", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07181000", + "longitude": "-101.54603000" + }, + { + "id": "71879", + "name": "Lucio Blanco (Los Gavilanes)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.11528000", + "longitude": "-101.55111000" + }, + { + "id": "71933", + "name": "Magdalena de Araceo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30935000", + "longitude": "-101.17861000" + }, + { + "id": "71944", + "name": "Malagana (San Antonio del Monte)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.04670000", + "longitude": "-101.75350000" + }, + { + "id": "71959", + "name": "Manuel Doblado", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72085000", + "longitude": "-101.85600000" + }, + { + "id": "71980", + "name": "Maravatío del Encinal", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20513000", + "longitude": "-100.96211000" + }, + { + "id": "71989", + "name": "Marfil", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99165000", + "longitude": "-101.28434000" + }, + { + "id": "71999", + "name": "Marroquín", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51138000", + "longitude": "-100.55946000" + }, + { + "id": "72065", + "name": "Medina", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14972000", + "longitude": "-101.62250000" + }, + { + "id": "72066", + "name": "Medio Sitio", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86948000", + "longitude": "-101.35689000" + }, + { + "id": "72074", + "name": "Menores", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.92028000", + "longitude": "-101.39500000" + }, + { + "id": "72078", + "name": "Merino", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49424000", + "longitude": "-100.88411000" + }, + { + "id": "72101", + "name": "Mexicanos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52903000", + "longitude": "-101.07064000" + }, + { + "id": "72110", + "name": "Mezquite de Luna", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29765000", + "longitude": "-101.89260000" + }, + { + "id": "72111", + "name": "Mezquite de Sotelo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00825000", + "longitude": "-101.50287000" + }, + { + "id": "72109", + "name": "Mezquite Gordo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81463000", + "longitude": "-101.49277000" + }, + { + "id": "72148", + "name": "Mineral de la Luz", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06456000", + "longitude": "-101.33806000" + }, + { + "id": "72160", + "name": "Misión de Chichimecas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.28496000", + "longitude": "-100.48658000" + }, + { + "id": "72185", + "name": "Molino de San José", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.57083000", + "longitude": "-101.26389000" + }, + { + "id": "72186", + "name": "Molino de Santa Ana", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.82874000", + "longitude": "-101.34929000" + }, + { + "id": "72197", + "name": "Monte Blanco", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.35472000", + "longitude": "-101.52750000" + }, + { + "id": "72209", + "name": "Monte del Coecillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97900000", + "longitude": "-101.43542000" + }, + { + "id": "72201", + "name": "Monte Grande", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99806000", + "longitude": "-101.86333000" + }, + { + "id": "72223", + "name": "Morales", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.77821000", + "longitude": "-100.80932000" + }, + { + "id": "72238", + "name": "Moroleón", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12571000", + "longitude": "-101.19208000" + }, + { + "id": "72314", + "name": "Neutla", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70800000", + "longitude": "-100.83957000" + }, + { + "id": "72331", + "name": "Nigromante", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96194000", + "longitude": "-100.78028000" + }, + { + "id": "72435", + "name": "Obrajuelo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10820000", + "longitude": "-100.84950000" + }, + { + "id": "72441", + "name": "Ocampo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.64653000", + "longitude": "-101.48012000" + }, + { + "id": "72489", + "name": "Ojo de Agua de Ballesteros", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22821000", + "longitude": "-100.82424000" + }, + { + "id": "72495", + "name": "Ojo de Agua de la Trinidad", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39356000", + "longitude": "-100.63255000" + }, + { + "id": "72492", + "name": "Ojo de Agua de Mendoza", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16585000", + "longitude": "-100.56909000" + }, + { + "id": "72496", + "name": "Ojo de Agua del Refugio", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01386000", + "longitude": "-100.31687000" + }, + { + "id": "72483", + "name": "Ojo Seco", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38687000", + "longitude": "-100.79659000" + }, + { + "id": "72517", + "name": "Orduña de Abajo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75806000", + "longitude": "-100.78278000" + }, + { + "id": "72518", + "name": "Orduña de Arriba", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.76583000", + "longitude": "-100.79262000" + }, + { + "id": "72537", + "name": "Otates", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.40064000", + "longitude": "-101.48169000" + }, + { + "id": "72601", + "name": "Palmillas de San Juan", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.76873000", + "longitude": "-100.86432000" + }, + { + "id": "72608", + "name": "Palo Colorado", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00836000", + "longitude": "-100.72917000" + }, + { + "id": "72621", + "name": "Panales Jamaica (Cañones)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29556000", + "longitude": "-100.82306000" + }, + { + "id": "72649", + "name": "Parangarico", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19232000", + "longitude": "-101.16550000" + }, + { + "id": "72663", + "name": "Parácuaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14381000", + "longitude": "-100.76352000" + }, + { + "id": "72692", + "name": "Paso de Pirules", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.95028000", + "longitude": "-101.29972000" + }, + { + "id": "72716", + "name": "Paxtle", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05897000", + "longitude": "-101.40390000" + }, + { + "id": "73011", + "name": "Pénjamo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43108000", + "longitude": "-101.72261000" + }, + { + "id": "72754", + "name": "Peñuelas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71676000", + "longitude": "-101.29749000" + }, + { + "id": "72731", + "name": "Peralta", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47350000", + "longitude": "-101.40811000" + }, + { + "id": "72792", + "name": "Piñícuaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04751000", + "longitude": "-101.24097000" + }, + { + "id": "72773", + "name": "Piedras de Lumbre", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25097000", + "longitude": "-100.59972000" + }, + { + "id": "72771", + "name": "Piedras Negras", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43059000", + "longitude": "-101.39158000" + }, + { + "id": "72800", + "name": "Plan de Ayala", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07209000", + "longitude": "-101.72165000" + }, + { + "id": "72794", + "name": "Plan Guanajuato (La Sandía)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.92167000", + "longitude": "-101.69694000" + }, + { + "id": "72805", + "name": "Plancarte", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58681000", + "longitude": "-100.79620000" + }, + { + "id": "72864", + "name": "Potrerillos (Guanajal)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08154000", + "longitude": "-101.86986000" + }, + { + "id": "72874", + "name": "Pozos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62003000", + "longitude": "-100.89560000" + }, + { + "id": "72883", + "name": "Prados del Rosario", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02194000", + "longitude": "-100.39250000" + }, + { + "id": "72887", + "name": "Presa Blanca", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64146000", + "longitude": "-100.79241000" + }, + { + "id": "72896", + "name": "Primera Fracción de Crespo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49638000", + "longitude": "-100.85150000" + }, + { + "id": "72922", + "name": "Providencia", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.35439000", + "longitude": "-101.01895000" + }, + { + "id": "72923", + "name": "Providencia de Nápoles", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02297000", + "longitude": "-101.45775000" + }, + { + "id": "72941", + "name": "Pueblo Nuevo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52516000", + "longitude": "-101.37196000" + }, + { + "id": "72959", + "name": "Puentecillas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93187000", + "longitude": "-101.27873000" + }, + { + "id": "72963", + "name": "Puerta del Monte", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25853000", + "longitude": "-101.02597000" + }, + { + "id": "72996", + "name": "Purísima de Bustos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03150000", + "longitude": "-101.87833000" + }, + { + "id": "72997", + "name": "Purísima de Covarrubias", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61932000", + "longitude": "-101.48340000" + }, + { + "id": "72999", + "name": "Purísima del Progreso", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79333000", + "longitude": "-101.33028000" + }, + { + "id": "73000", + "name": "Purísima del Rincón", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94704000", + "longitude": "-101.90939000" + }, + { + "id": "72989", + "name": "Puroagua", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07913000", + "longitude": "-100.45291000" + }, + { + "id": "73078", + "name": "Rancho de Guadalupe", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21639000", + "longitude": "-101.01000000" + }, + { + "id": "73068", + "name": "Rancho Nuevo de la Cruz", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65105000", + "longitude": "-101.51786000" + }, + { + "id": "73069", + "name": "Rancho Nuevo de la Luz", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96246000", + "longitude": "-101.64573000" + }, + { + "id": "73070", + "name": "Rancho Nuevo del Llanito", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.82361000", + "longitude": "-101.36861000" + }, + { + "id": "73074", + "name": "Rancho Viejo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02091000", + "longitude": "-100.77142000" + }, + { + "id": "73180", + "name": "Río Laja", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.20326000", + "longitude": "-100.92339000" + }, + { + "id": "73124", + "name": "Rincón de Cano", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05519000", + "longitude": "-100.24196000" + }, + { + "id": "73132", + "name": "Rincón de Parangueo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.42193000", + "longitude": "-101.25101000" + }, + { + "id": "73134", + "name": "Rincón de Tamayo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.42344000", + "longitude": "-100.75470000" + }, + { + "id": "73137", + "name": "Rincón del Centeno", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66076000", + "longitude": "-100.88532000" + }, + { + "id": "73115", + "name": "Rinconadas del Bosque", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.08528000", + "longitude": "-101.19833000" + }, + { + "id": "73144", + "name": "Rizos de la Joya (Rizos del Saucillo)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14861000", + "longitude": "-101.76194000" + }, + { + "id": "73156", + "name": "Romita", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.87127000", + "longitude": "-101.51683000" + }, + { + "id": "73157", + "name": "Roque", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58228000", + "longitude": "-100.83727000" + }, + { + "id": "73209", + "name": "Salamanca", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57196000", + "longitude": "-101.19154000" + }, + { + "id": "73220", + "name": "Salitrillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03629000", + "longitude": "-101.45650000" + }, + { + "id": "73231", + "name": "Salvatierra", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21322000", + "longitude": "-100.88023000" + }, + { + "id": "73258", + "name": "San Agustín de las Flores", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00727000", + "longitude": "-101.43710000" + }, + { + "id": "73279", + "name": "San Andrés Enguaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19472000", + "longitude": "-101.23639000" + }, + { + "id": "73327", + "name": "San Antonio Calichar", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49669000", + "longitude": "-100.51775000" + }, + { + "id": "73364", + "name": "San Antonio de Corrales", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74556000", + "longitude": "-100.96361000" + }, + { + "id": "73375", + "name": "San Antonio de los Morales", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58055000", + "longitude": "-100.91020000" + }, + { + "id": "73377", + "name": "San Antonio de los Tepetates", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.04472000", + "longitude": "-101.67611000" + }, + { + "id": "73366", + "name": "San Antonio de Romerillo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60784000", + "longitude": "-100.94854000" + }, + { + "id": "73383", + "name": "San Antonio el Chico", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62798000", + "longitude": "-101.28373000" + }, + { + "id": "73387", + "name": "San Antonio el Rico", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.82308000", + "longitude": "-101.37161000" + }, + { + "id": "73332", + "name": "San Antonio Eménguaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13997000", + "longitude": "-100.87874000" + }, + { + "id": "73334", + "name": "San Antonio Gallardo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62833000", + "longitude": "-100.76778000" + }, + { + "id": "73345", + "name": "San Antonio Primero", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.09417000", + "longitude": "-100.52844000" + }, + { + "id": "73355", + "name": "San Antonio Texas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.98556000", + "longitude": "-101.49000000" + }, + { + "id": "74512", + "name": "San Ángel", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90193000", + "longitude": "-101.91895000" + }, + { + "id": "73411", + "name": "San Bartolo de Berrios", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.61240000", + "longitude": "-101.06845000" + }, + { + "id": "73419", + "name": "San Bartolomé Aguas Calientes", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49556000", + "longitude": "-100.54833000" + }, + { + "id": "73438", + "name": "San Bernardo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96764000", + "longitude": "-101.86972000" + }, + { + "id": "73442", + "name": "San Bernardo Peña Blanca", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46167000", + "longitude": "-101.48250000" + }, + { + "id": "73465", + "name": "San Cayetano", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60357000", + "longitude": "-100.82021000" + }, + { + "id": "73472", + "name": "San Cristóbal", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65787000", + "longitude": "-101.47683000" + }, + { + "id": "73489", + "name": "San Diego", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88838000", + "longitude": "-101.40973000" + }, + { + "id": "73495", + "name": "San Diego de Alcalá", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03062000", + "longitude": "-100.86350000" + }, + { + "id": "73496", + "name": "San Diego de la Unión", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.46749000", + "longitude": "-100.87310000" + }, + { + "id": "73505", + "name": "San Elías", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.63529000", + "longitude": "-100.84120000" + }, + { + "id": "73511", + "name": "San Felipe", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.47831000", + "longitude": "-101.21566000" + }, + { + "id": "73521", + "name": "San Felipe Quiriceo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44303000", + "longitude": "-101.28960000" + }, + { + "id": "73542", + "name": "San Francisco", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.63387000", + "longitude": "-101.05884000" + }, + { + "id": "73546", + "name": "San Francisco (Baños de Agua Caliente)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07389000", + "longitude": "-101.47278000" + }, + { + "id": "73611", + "name": "San Francisco de Durán", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00513000", + "longitude": "-101.61990000" + }, + { + "id": "73621", + "name": "San Francisco del Rincón", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01843000", + "longitude": "-101.85515000" + }, + { + "id": "73625", + "name": "San Gabriel", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12949000", + "longitude": "-100.83496000" + }, + { + "id": "73633", + "name": "San Gabriel y San Ignacio", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44028000", + "longitude": "-101.60816000" + }, + { + "id": "73640", + "name": "San Gregorio", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54694000", + "longitude": "-101.62847000" + }, + { + "id": "73651", + "name": "San Ignacio", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.28194000", + "longitude": "-100.53722000" + }, + { + "id": "73654", + "name": "San Ignacio de Hidalgo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91167000", + "longitude": "-101.86056000" + }, + { + "id": "73655", + "name": "San Ignacio de Rivera (Ojo de Agua)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55926000", + "longitude": "-101.46127000" + }, + { + "id": "73656", + "name": "San Ignacio de San José Parangueo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41473000", + "longitude": "-101.29780000" + }, + { + "id": "73686", + "name": "San Isidro de Gamboa", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39501000", + "longitude": "-100.52705000" + }, + { + "id": "73687", + "name": "San Isidro de la Concepción", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62776000", + "longitude": "-100.78570000" + }, + { + "id": "73688", + "name": "San Isidro de la Estacada", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14746000", + "longitude": "-100.68473000" + }, + { + "id": "73689", + "name": "San Isidro de los Sauces", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02103000", + "longitude": "-101.53724000" + }, + { + "id": "73697", + "name": "San Javier", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66729000", + "longitude": "-101.42940000" + }, + { + "id": "73724", + "name": "San Jerónimo de Araceo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32507000", + "longitude": "-101.18195000" + }, + { + "id": "73807", + "name": "San José de Agua Azul", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48662000", + "longitude": "-100.65587000" + }, + { + "id": "73809", + "name": "San José de Ayala", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38709000", + "longitude": "-101.44143000" + }, + { + "id": "73811", + "name": "San José de Bernalejo (El Guayabo)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64000000", + "longitude": "-101.40139000" + }, + { + "id": "73813", + "name": "San José de Cervera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96778000", + "longitude": "-101.30250000" + }, + { + "id": "73814", + "name": "San José de Durán (Los Troncoso)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06306000", + "longitude": "-101.67417000" + }, + { + "id": "73820", + "name": "San José de Guanajuato", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55601000", + "longitude": "-100.89277000" + }, + { + "id": "73831", + "name": "San José de la Montaña", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60037000", + "longitude": "-101.07228000" + }, + { + "id": "73833", + "name": "San José de las Pilas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65227000", + "longitude": "-101.04523000" + }, + { + "id": "73822", + "name": "San José de Llanos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.85568000", + "longitude": "-101.30897000" + }, + { + "id": "73823", + "name": "San José de Mendoza", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.68965000", + "longitude": "-101.21353000" + }, + { + "id": "73824", + "name": "San José de Rancho Nuevo (Los Arrieros)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.59639000", + "longitude": "-101.00389000" + }, + { + "id": "73835", + "name": "San José del Cerrito de Camargo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41917000", + "longitude": "-101.04222000" + }, + { + "id": "73837", + "name": "San José del Potrero", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12815000", + "longitude": "-101.59737000" + }, + { + "id": "73842", + "name": "San José del Rodeo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.92083000", + "longitude": "-101.21639000" + }, + { + "id": "73845", + "name": "San José del Torreón", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.47444000", + "longitude": "-101.47056000" + }, + { + "id": "73850", + "name": "San José el Nuevo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44389000", + "longitude": "-100.77194000" + }, + { + "id": "73769", + "name": "San José Iturbide", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00153000", + "longitude": "-100.38416000" + }, + { + "id": "73786", + "name": "San José Temascatío", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69183000", + "longitude": "-101.26028000" + }, + { + "id": "73798", + "name": "San José Viborillas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56778000", + "longitude": "-100.63361000" + }, + { + "id": "73871", + "name": "San Juan Bautista Cacalote", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34806000", + "longitude": "-100.78833000" + }, + { + "id": "73959", + "name": "San Juan de Abajo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05623000", + "longitude": "-101.63544000" + }, + { + "id": "73966", + "name": "San Juan de la Vega", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62521000", + "longitude": "-100.76141000" + }, + { + "id": "73962", + "name": "San Juan de Otates", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.11562000", + "longitude": "-101.55773000" + }, + { + "id": "73974", + "name": "San Juan del Llanito", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51369000", + "longitude": "-100.53980000" + }, + { + "id": "73893", + "name": "San Juan Grande", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37627000", + "longitude": "-101.52677000" + }, + { + "id": "73903", + "name": "San Juan Jaripeo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00601000", + "longitude": "-100.76052000" + }, + { + "id": "73914", + "name": "San Juan Pan de Arriba", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.47151000", + "longitude": "-100.92021000" + }, + { + "id": "73991", + "name": "San Lorenzo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46687000", + "longitude": "-100.71970000" + }, + { + "id": "74023", + "name": "San Lucas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29341000", + "longitude": "-100.55238000" + }, + { + "id": "74060", + "name": "San Luis de la Paz", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.29771000", + "longitude": "-100.51736000" + }, + { + "id": "74228", + "name": "San Miguel de Allende", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91528000", + "longitude": "-100.74389000" + }, + { + "id": "74233", + "name": "San Miguel del Arenal", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99083000", + "longitude": "-101.48556000" + }, + { + "id": "74176", + "name": "San Miguel Eménguaro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16402000", + "longitude": "-100.88596000" + }, + { + "id": "74191", + "name": "San Miguel Octopan", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57428000", + "longitude": "-100.74780000" + }, + { + "id": "74270", + "name": "San Nicolás de la Condesa", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23259000", + "longitude": "-100.78108000" + }, + { + "id": "74272", + "name": "San Nicolás de los Agustinos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24614000", + "longitude": "-100.96679000" + }, + { + "id": "74275", + "name": "San Nicolás del Cármen", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.27405000", + "longitude": "-100.55032000" + }, + { + "id": "74258", + "name": "San Nicolás Parangueo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39356000", + "longitude": "-101.25364000" + }, + { + "id": "74263", + "name": "San Nicolás Temascatío", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72486000", + "longitude": "-101.24874000" + }, + { + "id": "74298", + "name": "San Pablo Pejo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03375000", + "longitude": "-100.93763000" + }, + { + "id": "74404", + "name": "San Pedro de Ibarra", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.48320000", + "longitude": "-101.54046000" + }, + { + "id": "74409", + "name": "San Pedro de los Naranjos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22716000", + "longitude": "-100.93782000" + }, + { + "id": "74378", + "name": "San Pedro Tenango", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.50769000", + "longitude": "-100.63247000" + }, + { + "id": "74440", + "name": "San Roque", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59966000", + "longitude": "-101.34182000" + }, + { + "id": "74442", + "name": "San Roque de Montes", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01000000", + "longitude": "-101.81083000" + }, + { + "id": "74443", + "name": "San Roque de Torres", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97138000", + "longitude": "-101.85290000" + }, + { + "id": "74450", + "name": "San Salvador Torrecillas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55981000", + "longitude": "-100.95784000" + }, + { + "id": "74478", + "name": "San Sebastián de Salitre", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10278000", + "longitude": "-100.48086000" + }, + { + "id": "74494", + "name": "San Vicente", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.82864000", + "longitude": "-101.34130000" + }, + { + "id": "74507", + "name": "San Vicente de Flores", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62172000", + "longitude": "-101.25296000" + }, + { + "id": "74523", + "name": "Santa Ana", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05917000", + "longitude": "-101.67583000" + }, + { + "id": "74544", + "name": "Santa Ana Pacueco", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34722000", + "longitude": "-102.01583000" + }, + { + "id": "74558", + "name": "Santa Anita", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47028000", + "longitude": "-100.81500000" + }, + { + "id": "74566", + "name": "Santa Bárbara", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.53716000", + "longitude": "-101.37787000" + }, + { + "id": "74579", + "name": "Santa Catarina", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15134000", + "longitude": "-100.06954000" + }, + { + "id": "74599", + "name": "Santa Clara", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17904000", + "longitude": "-101.43350000" + }, + { + "id": "74648", + "name": "Santa Cruz de Juventino Rosas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.63658000", + "longitude": "-100.97956000" + }, + { + "id": "74659", + "name": "Santa Fe de la Purísima", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49556000", + "longitude": "-100.89278000" + }, + { + "id": "74816", + "name": "Santa María del Refugio", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44030000", + "longitude": "-100.80032000" + }, + { + "id": "74838", + "name": "Santa Rosa", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.55181000", + "longitude": "-101.09210000" + }, + { + "id": "74850", + "name": "Santa Rosa de Lima", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07179000", + "longitude": "-101.19723000" + }, + { + "id": "74852", + "name": "Santa Rosa de Rivas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.78112000", + "longitude": "-101.53632000" + }, + { + "id": "74853", + "name": "Santa Rosa los Angeles", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56585000", + "longitude": "-100.92356000" + }, + { + "id": "74860", + "name": "Santa Teresa", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.95973000", + "longitude": "-101.31644000" + }, + { + "id": "74862", + "name": "Santa Teresita de Don Diego", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88000000", + "longitude": "-100.77861000" + }, + { + "id": "74885", + "name": "Santiago Capitiro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30427000", + "longitude": "-101.01767000" + }, + { + "id": "74983", + "name": "Santiago de Cuenda", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59956000", + "longitude": "-100.99405000" + }, + { + "id": "74921", + "name": "Santiago Maravatío", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17297000", + "longitude": "-100.99468000" + }, + { + "id": "75028", + "name": "Santo Tomás Huatzindeo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22205000", + "longitude": "-100.92068000" + }, + { + "id": "75040", + "name": "Sarabia", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52256000", + "longitude": "-101.06163000" + }, + { + "id": "75063", + "name": "Serrano", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.77830000", + "longitude": "-101.39540000" + }, + { + "id": "75079", + "name": "Silao", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94356000", + "longitude": "-101.42703000" + }, + { + "id": "75080", + "name": "Silao de la Victoria", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93718000", + "longitude": "-101.44987000" + }, + { + "id": "75082", + "name": "Silva", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94617000", + "longitude": "-101.85687000" + }, + { + "id": "75114", + "name": "Soledad Nueva", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.27942000", + "longitude": "-100.92249000" + }, + { + "id": "75126", + "name": "Sotelo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45773000", + "longitude": "-101.07766000" + }, + { + "id": "75141", + "name": "Suchitlán", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53320000", + "longitude": "-101.02360000" + }, + { + "id": "75178", + "name": "Tamazula", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44228000", + "longitude": "-101.55330000" + }, + { + "id": "75229", + "name": "Tarandacuao", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00094000", + "longitude": "-100.51856000" + }, + { + "id": "75232", + "name": "Taretán", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.77880000", + "longitude": "-101.33526000" + }, + { + "id": "75233", + "name": "Tarimoro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28336000", + "longitude": "-100.75477000" + }, + { + "id": "75305", + "name": "Tejocote de Calera", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17918000", + "longitude": "-101.39710000" + }, + { + "id": "75358", + "name": "Tenango el Nuevo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53111000", + "longitude": "-100.67170000" + }, + { + "id": "75362", + "name": "Tenería del Santuario", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59955000", + "longitude": "-100.79790000" + }, + { + "id": "75464", + "name": "Tequisquiapan", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07996000", + "longitude": "-100.82067000" + }, + { + "id": "75551", + "name": "Tierra Fría", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46145000", + "longitude": "-101.03927000" + }, + { + "id": "75728", + "name": "Tomelopitos", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59463000", + "longitude": "-101.36846000" + }, + { + "id": "75798", + "name": "Tulillos de Abajo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08563000", + "longitude": "-100.48411000" + }, + { + "id": "75812", + "name": "Tupataro", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59512000", + "longitude": "-101.64637000" + }, + { + "id": "75891", + "name": "Uriangato", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14085000", + "longitude": "-101.18251000" + }, + { + "id": "75895", + "name": "Urireo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21314000", + "longitude": "-100.84188000" + }, + { + "id": "75907", + "name": "Valencia de Cerro Gordo", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60133000", + "longitude": "-101.08173000" + }, + { + "id": "75908", + "name": "Valencianita", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74701000", + "longitude": "-101.30223000" + }, + { + "id": "75924", + "name": "Valle de Santiago", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39140000", + "longitude": "-101.19222000" + }, + { + "id": "75934", + "name": "Valtierrilla", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53244000", + "longitude": "-101.12761000" + }, + { + "id": "75982", + "name": "Victoria", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21183000", + "longitude": "-100.21545000" + }, + { + "id": "75984", + "name": "Victoria de Cortazar", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33460000", + "longitude": "-101.03173000" + }, + { + "id": "76079", + "name": "Villagrán", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51452000", + "longitude": "-100.99745000" + }, + { + "id": "76088", + "name": "Villas de Irapuato", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.68722000", + "longitude": "-101.40528000" + }, + { + "id": "76135", + "name": "Xichú", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "21.34418000", + "longitude": "-99.99970000" + }, + { + "id": "76183", + "name": "Xoconoxtle el Grande", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93857000", + "longitude": "-100.98149000" + }, + { + "id": "76233", + "name": "Yerbabuena", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96319000", + "longitude": "-101.27448000" + }, + { + "id": "76248", + "name": "Yuriria", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21081000", + "longitude": "-101.13212000" + }, + { + "id": "76250", + "name": "Yustis", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58233000", + "longitude": "-100.86392000" + }, + { + "id": "76297", + "name": "Zangarro (Zangarro Nuevo)", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.85806000", + "longitude": "-101.27278000" + }, + { + "id": "76302", + "name": "Zapote de Barajas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37536000", + "longitude": "-101.69964000" + }, + { + "id": "76303", + "name": "Zapote de Cestao", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48362000", + "longitude": "-101.67596000" + }, + { + "id": "76304", + "name": "Zapote de Palomas", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58444000", + "longitude": "-101.11500000" + }, + { + "id": "76305", + "name": "Zapote de Peralta", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45068000", + "longitude": "-101.39481000" + }, + { + "id": "76306", + "name": "Zapotillo de Mogotes", + "state_id": 3469, + "state_code": "GUA", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37850000", + "longitude": "-101.24795000" + }, + { + "id": "68005", + "name": "10 de Abril", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82917000", + "longitude": "-99.74083000" + }, + { + "id": "68026", + "name": "Acahuizotla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.36054000", + "longitude": "-99.46759000" + }, + { + "id": "68030", + "name": "Acalco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.50575000", + "longitude": "-99.16670000" + }, + { + "id": "68034", + "name": "Acamixtla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.56512000", + "longitude": "-99.56599000" + }, + { + "id": "68037", + "name": "Acapetlahuaya", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41942000", + "longitude": "-100.07237000" + }, + { + "id": "68039", + "name": "Acapulco de Juárez", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84942000", + "longitude": "-99.90891000" + }, + { + "id": "68040", + "name": "Acatempa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.64333000", + "longitude": "-99.36639000" + }, + { + "id": "68041", + "name": "Acatempan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.31809000", + "longitude": "-99.88298000" + }, + { + "id": "68045", + "name": "Acatepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.17482000", + "longitude": "-98.97603000" + }, + { + "id": "68048", + "name": "Acatlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65807000", + "longitude": "-99.16944000" + }, + { + "id": "68077", + "name": "Acuitlapan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60155000", + "longitude": "-99.54260000" + }, + { + "id": "68119", + "name": "Agua Zarca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.62365000", + "longitude": "-98.70245000" + }, + { + "id": "68124", + "name": "Aguas Blancas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03654000", + "longitude": "-100.06300000" + }, + { + "id": "68126", + "name": "Aguas Calientes", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84250000", + "longitude": "-99.64056000" + }, + { + "id": "68132", + "name": "Ahuacachahue (Ndog'yo Itún Tichi)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82861000", + "longitude": "-98.98556000" + }, + { + "id": "68140", + "name": "Ahuacuotzingo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.74253000", + "longitude": "-98.91781000" + }, + { + "id": "68141", + "name": "Ahuajutla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43043000", + "longitude": "-98.29029000" + }, + { + "id": "68146", + "name": "Ahuatepec Pueblo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.60577000", + "longitude": "-98.58970000" + }, + { + "id": "68152", + "name": "Ahuehuepan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00625000", + "longitude": "-99.49995000" + }, + { + "id": "68158", + "name": "Ahuexotitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.52849000", + "longitude": "-99.24398000" + }, + { + "id": "68160", + "name": "Ahuihuiyuco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.62958000", + "longitude": "-99.22738000" + }, + { + "id": "68168", + "name": "Ajuchitlán del Progreso", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15189000", + "longitude": "-100.48353000" + }, + { + "id": "68180", + "name": "Alcholoa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.15110000", + "longitude": "-100.40837000" + }, + { + "id": "68182", + "name": "Alcozacán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.50444000", + "longitude": "-99.09500000" + }, + { + "id": "68183", + "name": "Alcozauca de Guerrero", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.46481000", + "longitude": "-98.38428000" + }, + { + "id": "68211", + "name": "Almolonga", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63826000", + "longitude": "-99.29502000" + }, + { + "id": "68218", + "name": "Alpoyeca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.64600000", + "longitude": "-98.51004000" + }, + { + "id": "68220", + "name": "Alpuyecancingo de las Montañas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67083000", + "longitude": "-98.85194000" + }, + { + "id": "68240", + "name": "Amatillo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82028000", + "longitude": "-99.66611000" + }, + { + "id": "68263", + "name": "Amuco de la Reforma", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.29361000", + "longitude": "-100.63972000" + }, + { + "id": "68287", + "name": "Apalani", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.85361000", + "longitude": "-99.58944000" + }, + { + "id": "68289", + "name": "Apango", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.74121000", + "longitude": "-99.32909000" + }, + { + "id": "68291", + "name": "Apantla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03972000", + "longitude": "-99.16944000" + }, + { + "id": "68302", + "name": "Apaxtla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07628000", + "longitude": "-99.99562000" + }, + { + "id": "68303", + "name": "Apaxtla de Castrejón", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13127000", + "longitude": "-99.93255000" + }, + { + "id": "68307", + "name": "Apipilulco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19104000", + "longitude": "-99.67205000" + }, + { + "id": "68333", + "name": "Aratichanguío", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.47877000", + "longitude": "-101.36211000" + }, + { + "id": "68338", + "name": "Arcelia", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.26627000", + "longitude": "-100.19066000" + }, + { + "id": "68339", + "name": "Arcelia de Rodríguez", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73668000", + "longitude": "-98.64486000" + }, + { + "id": "68348", + "name": "Arenal de Álvarez (Arenal de Paco)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.12611000", + "longitude": "-100.45500000" + }, + { + "id": "68397", + "name": "Atenango del Río", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10526000", + "longitude": "-99.10777000" + }, + { + "id": "68401", + "name": "Atenxoxola", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.48819000", + "longitude": "-99.14285000" + }, + { + "id": "68413", + "name": "Atlamajac", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.55528000", + "longitude": "-98.54722000" + }, + { + "id": "68414", + "name": "Atlamajalcingo del Río", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.52667000", + "longitude": "-98.65556000" + }, + { + "id": "68421", + "name": "Atliaca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65168000", + "longitude": "-99.37471000" + }, + { + "id": "68423", + "name": "Atlixtac", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51434000", + "longitude": "-98.90305000" + }, + { + "id": "68434", + "name": "Atoyac de Álvarez", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.20667000", + "longitude": "-100.43306000" + }, + { + "id": "68437", + "name": "Atzacoaloya", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.54659000", + "longitude": "-99.13757000" + }, + { + "id": "68449", + "name": "Axaxacualco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80387000", + "longitude": "-99.46175000" + }, + { + "id": "68450", + "name": "Axixintla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60222000", + "longitude": "-99.51806000" + }, + { + "id": "68457", + "name": "Ayahualulco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.50066000", + "longitude": "-99.18264000" + }, + { + "id": "68467", + "name": "Ayotzinapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.55628000", + "longitude": "-98.76346000" + }, + { + "id": "68471", + "name": "Ayutla de los Libres", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96376000", + "longitude": "-99.09616000" + }, + { + "id": "68473", + "name": "Azoyú", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.64925000", + "longitude": "-98.57828000" + }, + { + "id": "68503", + "name": "Bajos del Ejido", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96086000", + "longitude": "-99.97169000" + }, + { + "id": "68519", + "name": "Barra de Tecoanapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.50864000", + "longitude": "-98.73216000" + }, + { + "id": "68528", + "name": "Barrio Nuevo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.72075000", + "longitude": "-101.63657000" + }, + { + "id": "68529", + "name": "Barrio Nuevo de los Muertos", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.89278000", + "longitude": "-99.54389000" + }, + { + "id": "68660", + "name": "Buena Vista", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96250000", + "longitude": "-98.58077000" + }, + { + "id": "68666", + "name": "Buena Vista de la Salud", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26082000", + "longitude": "-99.50183000" + }, + { + "id": "68679", + "name": "Buenavista de Allende", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00086000", + "longitude": "-99.21325000" + }, + { + "id": "68682", + "name": "Buenavista de Cuéllar", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.45958000", + "longitude": "-99.40868000" + }, + { + "id": "68710", + "name": "Cacalotenango", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54639000", + "longitude": "-99.64361000" + }, + { + "id": "68713", + "name": "Cacalutla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.12433000", + "longitude": "-100.35038000" + }, + { + "id": "68719", + "name": "Cahuatache", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.41624000", + "longitude": "-98.53184000" + }, + { + "id": "68722", + "name": "Cajelitos", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26778000", + "longitude": "-99.49306000" + }, + { + "id": "68769", + "name": "Campanario", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.83534000", + "longitude": "-99.57178000" + }, + { + "id": "68843", + "name": "Carrizalillo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.85077000", + "longitude": "-99.71263000" + }, + { + "id": "68869", + "name": "Caxitepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.29449000", + "longitude": "-98.96741000" + }, + { + "id": "68871", + "name": "Cayaco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.04743000", + "longitude": "-100.26859000" + }, + { + "id": "68934", + "name": "Cerro de Piedra", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.77646000", + "longitude": "-99.63037000" + }, + { + "id": "68944", + "name": "Chacalapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80682000", + "longitude": "-98.45788000" + }, + { + "id": "68974", + "name": "Changata", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27306000", + "longitude": "-100.58528000" + }, + { + "id": "69000", + "name": "Chaucingo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30038000", + "longitude": "-99.11535000" + }, + { + "id": "69012", + "name": "Chiaucingo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.74207000", + "longitude": "-98.69720000" + }, + { + "id": "69026", + "name": "Chichihualco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65902000", + "longitude": "-99.67624000" + }, + { + "id": "69051", + "name": "Chiepetepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.56568000", + "longitude": "-98.73364000" + }, + { + "id": "69062", + "name": "Chilacachapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27394000", + "longitude": "-99.76177000" + }, + { + "id": "69065", + "name": "Chilapa de Álvarez", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.59917000", + "longitude": "-99.17389000" + }, + { + "id": "69072", + "name": "Chilpancingo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.55060000", + "longitude": "-99.50578000" + }, + { + "id": "69105", + "name": "Chontalcoatlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65421000", + "longitude": "-99.57380000" + }, + { + "id": "69143", + "name": "Ciudad Altamirano", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.35820000", + "longitude": "-100.66965000" + }, + { + "id": "69190", + "name": "Ciudad de Huitzuco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30334000", + "longitude": "-99.33376000" + }, + { + "id": "69204", + "name": "Coachimalco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.62523000", + "longitude": "-98.68122000" + }, + { + "id": "69208", + "name": "Coacoyula de Álvarez", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07635000", + "longitude": "-99.63050000" + }, + { + "id": "69209", + "name": "Coacoyulichán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.79484000", + "longitude": "-98.93551000" + }, + { + "id": "69210", + "name": "Coacoyulillo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33471000", + "longitude": "-99.64859000" + }, + { + "id": "69214", + "name": "Coahuayutla de Guerrero", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.31469000", + "longitude": "-101.73574000" + }, + { + "id": "69215", + "name": "Coahuayutla de José María Izazaga", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27847000", + "longitude": "-101.63863000" + }, + { + "id": "69227", + "name": "Coatepec Costales", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33922000", + "longitude": "-99.72140000" + }, + { + "id": "69235", + "name": "Cochoapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72190000", + "longitude": "-98.37196000" + }, + { + "id": "69236", + "name": "Cochoapa el Grande", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.19280000", + "longitude": "-98.45592000" + }, + { + "id": "69244", + "name": "Cocula", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14296000", + "longitude": "-99.70452000" + }, + { + "id": "69263", + "name": "Colombia de Guadalupe", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.08840000", + "longitude": "-98.75901000" + }, + { + "id": "69273", + "name": "Colonia Aeropuerto", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.62028000", + "longitude": "-101.45889000" + }, + { + "id": "69278", + "name": "Colonia Alborada", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88151000", + "longitude": "-99.81779000" + }, + { + "id": "69288", + "name": "Colonia Constitución", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.53667000", + "longitude": "-98.59944000" + }, + { + "id": "69387", + "name": "Colonia el Pedregal", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34961000", + "longitude": "-99.85642000" + }, + { + "id": "69324", + "name": "Colonia Luces en el Mar", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92162000", + "longitude": "-100.01526000" + }, + { + "id": "69340", + "name": "Colonia Nueva Revolución", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.89833000", + "longitude": "-99.80583000" + }, + { + "id": "69355", + "name": "Colonia Renacimiento", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76278000", + "longitude": "-98.18222000" + }, + { + "id": "69411", + "name": "Colotepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.04104000", + "longitude": "-99.21273000" + }, + { + "id": "69412", + "name": "Colotlipa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.41242000", + "longitude": "-99.16711000" + }, + { + "id": "69470", + "name": "Copala", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.60674000", + "longitude": "-98.94094000" + }, + { + "id": "69471", + "name": "Copalillo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97003000", + "longitude": "-99.05436000" + }, + { + "id": "69472", + "name": "Copanatoyac", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.42911000", + "longitude": "-98.70006000" + }, + { + "id": "69484", + "name": "Corral Falso", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24472000", + "longitude": "-100.56000000" + }, + { + "id": "69514", + "name": "Coyahualco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.74139000", + "longitude": "-98.56667000" + }, + { + "id": "69526", + "name": "Coyuca de Benítez", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00895000", + "longitude": "-100.08714000" + }, + { + "id": "69527", + "name": "Coyuca de Catalán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.32614000", + "longitude": "-100.69898000" + }, + { + "id": "69528", + "name": "Coyuquilla Norte", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38027000", + "longitude": "-101.05631000" + }, + { + "id": "69543", + "name": "Cruz Grande", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72241000", + "longitude": "-99.12356000" + }, + { + "id": "69544", + "name": "Cruz Quemada", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99722000", + "longitude": "-99.17964000" + }, + { + "id": "69553", + "name": "Cuajinicuilapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.47347000", + "longitude": "-98.41389000" + }, + { + "id": "69554", + "name": "Cualác", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.72928000", + "longitude": "-98.67254000" + }, + { + "id": "69557", + "name": "Cuanacaxtitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.79953000", + "longitude": "-98.63992000" + }, + { + "id": "69571", + "name": "Cuatzoquitengo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.28822000", + "longitude": "-98.61523000" + }, + { + "id": "69577", + "name": "Cuauhtenango", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.54625000", + "longitude": "-99.20683000" + }, + { + "id": "69587", + "name": "Cuautepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.70520000", + "longitude": "-98.98471000" + }, + { + "id": "69621", + "name": "Cuetzala del Progreso", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13472000", + "longitude": "-99.83190000" + }, + { + "id": "69633", + "name": "Cumbre de Barranca Honda", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73167000", + "longitude": "-98.33667000" + }, + { + "id": "69641", + "name": "Cuonetzingo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.52722000", + "longitude": "-99.26583000" + }, + { + "id": "69651", + "name": "Cutzamala de Pinzón", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46783000", + "longitude": "-100.58089000" + }, + { + "id": "69654", + "name": "Cuyuxtlahuaca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.48213000", + "longitude": "-98.34456000" + }, + { + "id": "69716", + "name": "Dos Arroyos", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02060000", + "longitude": "-99.64966000" + }, + { + "id": "69779", + "name": "Ejido Nuevo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97405000", + "longitude": "-99.73702000" + }, + { + "id": "69799", + "name": "Ejido Viejo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94812000", + "longitude": "-99.94606000" + }, + { + "id": "69843", + "name": "El Bejuco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82488000", + "longitude": "-99.70720000" + }, + { + "id": "69869", + "name": "El Carmen", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95036000", + "longitude": "-98.23764000" + }, + { + "id": "69907", + "name": "El Coacoyul", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63810000", + "longitude": "-101.47571000" + }, + { + "id": "69916", + "name": "El Conchero", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94266000", + "longitude": "-99.96233000" + }, + { + "id": "69930", + "name": "El Cortés", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78063000", + "longitude": "-99.50210000" + }, + { + "id": "69929", + "name": "El Cortijo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98972000", + "longitude": "-99.14889000" + }, + { + "id": "69947", + "name": "El Durazno", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.52828000", + "longitude": "-99.29057000" + }, + { + "id": "69951", + "name": "El Embarcadero", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96417000", + "longitude": "-100.00167000" + }, + { + "id": "69956", + "name": "El Escondido", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22068000", + "longitude": "-100.31208000" + }, + { + "id": "69964", + "name": "El Espinalillo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98472000", + "longitude": "-100.12694000" + }, + { + "id": "69967", + "name": "El Fresno", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43143000", + "longitude": "-99.58605000" + }, + { + "id": "70004", + "name": "El Jicaral", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.12617000", + "longitude": "-98.19697000" + }, + { + "id": "70017", + "name": "El Limón", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99556000", + "longitude": "-99.37750000" + }, + { + "id": "70034", + "name": "El Mesón", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84570000", + "longitude": "-99.05868000" + }, + { + "id": "70035", + "name": "El Metlapil", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84167000", + "longitude": "-99.74889000" + }, + { + "id": "70055", + "name": "El Naranjito", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98801000", + "longitude": "-102.15752000" + }, + { + "id": "70071", + "name": "El Ocotito", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24603000", + "longitude": "-99.51525000" + }, + { + "id": "70086", + "name": "El Papayo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03468000", + "longitude": "-100.24788000" + }, + { + "id": "70090", + "name": "El Paraíso", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.34361000", + "longitude": "-100.22806000" + }, + { + "id": "70098", + "name": "El Pericón", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98001000", + "longitude": "-99.32573000" + }, + { + "id": "70107", + "name": "El Pitahayo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.53236000", + "longitude": "-98.52760000" + }, + { + "id": "70113", + "name": "El Polvorín", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.57833000", + "longitude": "-98.80139000" + }, + { + "id": "70123", + "name": "El Potrerillo (Potrerillo del Rincón)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95806000", + "longitude": "-98.73083000" + }, + { + "id": "70153", + "name": "El Refugio", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03833000", + "longitude": "-99.20056000" + }, + { + "id": "70161", + "name": "El Rincón (Santa Cruz del Rincón)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99611000", + "longitude": "-98.73528000" + }, + { + "id": "70189", + "name": "El Salto", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86460000", + "longitude": "-99.76543000" + }, + { + "id": "70210", + "name": "El Súchil", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22694000", + "longitude": "-100.63917000" + }, + { + "id": "70214", + "name": "El Tejocote", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.32903000", + "longitude": "-98.65866000" + }, + { + "id": "70225", + "name": "El Terrero", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.12934000", + "longitude": "-100.31819000" + }, + { + "id": "70226", + "name": "El Ticui", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21639000", + "longitude": "-100.44472000" + }, + { + "id": "70316", + "name": "Escalerilla Lagunas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.37806000", + "longitude": "-98.84667000" + }, + { + "id": "70401", + "name": "Fermín Rabadán Cervantes", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.31528000", + "longitude": "-99.56722000" + }, + { + "id": "70407", + "name": "Florencio Villarreal", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.70143000", + "longitude": "-99.15247000" + }, + { + "id": "70528", + "name": "General Canuto A. Neri", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43072000", + "longitude": "-100.10110000" + }, + { + "id": "70534", + "name": "General Heliodoro Castillo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.74297000", + "longitude": "-100.02859000" + }, + { + "id": "70604", + "name": "Guadalupe Victoria", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.75611000", + "longitude": "-98.18167000" + }, + { + "id": "70625", + "name": "Guayameo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30407000", + "longitude": "-101.26167000" + }, + { + "id": "70657", + "name": "Hacienda de Cabañas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09731000", + "longitude": "-100.47163000" + }, + { + "id": "70709", + "name": "Horcasitas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88821000", + "longitude": "-98.74609000" + }, + { + "id": "70728", + "name": "Huamuchapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94349000", + "longitude": "-99.31884000" + }, + { + "id": "70729", + "name": "Huamuxtitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78905000", + "longitude": "-98.55569000" + }, + { + "id": "70763", + "name": "Huehuetán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.63583000", + "longitude": "-98.55889000" + }, + { + "id": "70778", + "name": "Hueycantenango", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.44873000", + "longitude": "-99.02440000" + }, + { + "id": "70779", + "name": "Hueyitlalpan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67528000", + "longitude": "-99.29556000" + }, + { + "id": "70810", + "name": "Huitziltepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.75610000", + "longitude": "-99.47983000" + }, + { + "id": "70815", + "name": "Huitzuco de los Figueroa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.29064000", + "longitude": "-99.26361000" + }, + { + "id": "70820", + "name": "Huixtepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.65361000", + "longitude": "-98.30455000" + }, + { + "id": "70861", + "name": "Iguala de la Independencia", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34536000", + "longitude": "-99.54130000" + }, + { + "id": "70862", + "name": "Igualapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.75528000", + "longitude": "-98.48370000" + }, + { + "id": "70865", + "name": "Iliatenco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03524000", + "longitude": "-98.67721000" + }, + { + "id": "70897", + "name": "Ixcamilpa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02769000", + "longitude": "-98.69643000" + }, + { + "id": "70900", + "name": "Ixcapuzalco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51204000", + "longitude": "-99.88755000" + }, + { + "id": "70902", + "name": "Ixcateopan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.61812000", + "longitude": "-98.51405000" + }, + { + "id": "70903", + "name": "Ixcateopan de Cuauhtémoc", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50139000", + "longitude": "-99.79139000" + }, + { + "id": "70906", + "name": "Ixcatla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.42250000", + "longitude": "-98.99944000" + }, + { + "id": "70927", + "name": "Ixtapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.66782000", + "longitude": "-101.64165000" + }, + { + "id": "70928", + "name": "Ixtapa-Zihuatanejo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.64344000", + "longitude": "-101.55212000" + }, + { + "id": "70949", + "name": "Izotepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.58500000", + "longitude": "-99.95444000" + }, + { + "id": "70966", + "name": "Jalapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.71227000", + "longitude": "-99.05564000" + }, + { + "id": "70971", + "name": "Jaleaca de Catalán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.44636000", + "longitude": "-99.85968000" + }, + { + "id": "71042", + "name": "Jicayán de Tovar", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.12716000", + "longitude": "-98.23622000" + }, + { + "id": "71073", + "name": "Jolotichán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.75222000", + "longitude": "-98.73056000" + }, + { + "id": "71136", + "name": "Julián Blanco (Dos Caminos)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21889000", + "longitude": "-99.52472000" + }, + { + "id": "71157", + "name": "Kilómetro 30", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99778000", + "longitude": "-99.78000000" + }, + { + "id": "71158", + "name": "Kilómetro 40", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.04944000", + "longitude": "-99.77056000" + }, + { + "id": "71179", + "name": "La Azozuca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82139000", + "longitude": "-99.04194000" + }, + { + "id": "71228", + "name": "La Concepción", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87867000", + "longitude": "-99.65140000" + }, + { + "id": "71234", + "name": "La Concepción (La Concha)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76778000", + "longitude": "-99.69250000" + }, + { + "id": "71243", + "name": "La Concordia", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.90583000", + "longitude": "-98.97583000" + }, + { + "id": "71260", + "name": "La Dicha", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76720000", + "longitude": "-99.01058000" + }, + { + "id": "71269", + "name": "La Esperanza", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.76022000", + "longitude": "-99.24726000" + }, + { + "id": "71280", + "name": "La Estación", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76734000", + "longitude": "-99.66716000" + }, + { + "id": "71310", + "name": "La Guadalupe", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.68883000", + "longitude": "-98.26222000" + }, + { + "id": "71378", + "name": "La Luz de Juárez", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.53500000", + "longitude": "-98.34833000" + }, + { + "id": "71400", + "name": "La Mohonera", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63839000", + "longitude": "-99.20222000" + }, + { + "id": "71418", + "name": "La Palma", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.08148000", + "longitude": "-99.50994000" + }, + { + "id": "71492", + "name": "La Soledad", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92000000", + "longitude": "-98.16694000" + }, + { + "id": "71522", + "name": "La Unión", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98561000", + "longitude": "-101.80655000" + }, + { + "id": "71563", + "name": "Lagunillas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.82438000", + "longitude": "-101.71074000" + }, + { + "id": "71655", + "name": "Las Ánimas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97284000", + "longitude": "-99.31964000" + }, + { + "id": "71591", + "name": "Las Compuertas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.19559000", + "longitude": "-100.00840000" + }, + { + "id": "71593", + "name": "Las Cruces", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97304000", + "longitude": "-99.44515000" + }, + { + "id": "71613", + "name": "Las Lomas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98194000", + "longitude": "-100.09500000" + }, + { + "id": "71622", + "name": "Las Mesas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00794000", + "longitude": "-99.45786000" + }, + { + "id": "71634", + "name": "Las Plazuelas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87417000", + "longitude": "-99.78556000" + }, + { + "id": "71647", + "name": "Las Tunas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.11972000", + "longitude": "-100.48311000" + }, + { + "id": "71652", + "name": "Las Vigas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76144000", + "longitude": "-99.22942000" + }, + { + "id": "71694", + "name": "Llano de la Puerta", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.74355000", + "longitude": "-99.52721000" + }, + { + "id": "71683", + "name": "Llano Grande", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94010000", + "longitude": "-99.43353000" + }, + { + "id": "71706", + "name": "Lodo Grande", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.60972000", + "longitude": "-99.21194000" + }, + { + "id": "71746", + "name": "Lomas de Chapultepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.71615000", + "longitude": "-99.61021000" + }, + { + "id": "71749", + "name": "Lomas de San Juan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98468000", + "longitude": "-99.80384000" + }, + { + "id": "71764", + "name": "Los Achotes", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.60056000", + "longitude": "-101.41750000" + }, + { + "id": "71767", + "name": "Los Almendros", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.61167000", + "longitude": "-101.43917000" + }, + { + "id": "71874", + "name": "Los Órganos de San Agustín", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93488000", + "longitude": "-99.82329000" + }, + { + "id": "71811", + "name": "Los Liros", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73972000", + "longitude": "-98.21722000" + }, + { + "id": "71817", + "name": "Los Mogotes", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94170000", + "longitude": "-100.07653000" + }, + { + "id": "71858", + "name": "Los Sauces", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.26656000", + "longitude": "-99.83502000" + }, + { + "id": "71860", + "name": "Los Saucitos", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98549000", + "longitude": "-99.29998000" + }, + { + "id": "71863", + "name": "Los Tepetates", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.05893000", + "longitude": "-99.24728000" + }, + { + "id": "71946", + "name": "Malinaltepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.17825000", + "longitude": "-98.70573000" + }, + { + "id": "71997", + "name": "Marquelia", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.58335000", + "longitude": "-98.81686000" + }, + { + "id": "72027", + "name": "Maxela", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.05364000", + "longitude": "-99.59473000" + }, + { + "id": "72031", + "name": "Mayanalán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17290000", + "longitude": "-99.43259000" + }, + { + "id": "72046", + "name": "Mazatlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43620000", + "longitude": "-99.46483000" + }, + { + "id": "72071", + "name": "Melchor Ocampo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35895000", + "longitude": "-98.44754000" + }, + { + "id": "72094", + "name": "Metlapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.31019000", + "longitude": "-99.60910000" + }, + { + "id": "72095", + "name": "Metlatónoc", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.12361000", + "longitude": "-98.55806000" + }, + { + "id": "72105", + "name": "Mezcala", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93240000", + "longitude": "-99.60257000" + }, + { + "id": "72173", + "name": "Mochitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38348000", + "longitude": "-99.36727000" + }, + { + "id": "72179", + "name": "Mohoneras", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.23500000", + "longitude": "-99.51611000" + }, + { + "id": "72211", + "name": "Montecillos", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39106000", + "longitude": "-98.49818000" + }, + { + "id": "72227", + "name": "Morelita", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27025000", + "longitude": "-100.56403000" + }, + { + "id": "72248", + "name": "Moyotepec (Moyotepec de Juárez)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33167000", + "longitude": "-98.68556000" + }, + { + "id": "72308", + "name": "Nejapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.61389000", + "longitude": "-99.14500000" + }, + { + "id": "72365", + "name": "Nueva Frontera", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88806000", + "longitude": "-99.81583000" + }, + { + "id": "72379", + "name": "Nuevo Balsas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.03253000", + "longitude": "-99.75913000" + }, + { + "id": "72386", + "name": "Nuevo Guerrero", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22583000", + "longitude": "-100.52583000" + }, + { + "id": "72428", + "name": "Nuxco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.20954000", + "longitude": "-100.75622000" + }, + { + "id": "72454", + "name": "Ocotequila", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.44944000", + "longitude": "-98.67750000" + }, + { + "id": "72455", + "name": "Ocotillo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03551000", + "longitude": "-99.87671000" + }, + { + "id": "72458", + "name": "Ocotlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93947000", + "longitude": "-99.36919000" + }, + { + "id": "72500", + "name": "Olinalá", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.86441000", + "longitude": "-98.75153000" + }, + { + "id": "72506", + "name": "Ometepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.68044000", + "longitude": "-98.38266000" + }, + { + "id": "72555", + "name": "Oxtotitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19004000", + "longitude": "-99.93248000" + }, + { + "id": "72558", + "name": "Oztotitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67232000", + "longitude": "-99.02464000" + }, + { + "id": "72577", + "name": "Paintla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50333000", + "longitude": "-99.65528000" + }, + { + "id": "72596", + "name": "Palmillas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52202000", + "longitude": "-99.42563000" + }, + { + "id": "72607", + "name": "Palo Blanco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.40355000", + "longitude": "-99.46622000" + }, + { + "id": "72616", + "name": "Palos Blancos", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.55851000", + "longitude": "-101.33180000" + }, + { + "id": "72628", + "name": "Pantitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63972000", + "longitude": "-99.10972000" + }, + { + "id": "72629", + "name": "Pantla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.73861000", + "longitude": "-101.63639000" + }, + { + "id": "72635", + "name": "Papanoa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.32551000", + "longitude": "-101.04166000" + }, + { + "id": "72644", + "name": "Paraje Montero (Paraje Montero de Zaragoza)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16349000", + "longitude": "-98.70394000" + }, + { + "id": "72667", + "name": "Pascala del Oro", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.05472000", + "longitude": "-98.80972000" + }, + { + "id": "72686", + "name": "Paso de Arena", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30333000", + "longitude": "-100.84639000" + }, + { + "id": "72681", + "name": "Paso Morelos", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22123000", + "longitude": "-99.20984000" + }, + { + "id": "72705", + "name": "Patambó", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22377000", + "longitude": "-100.87390000" + }, + { + "id": "72708", + "name": "Patlicha", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43944000", + "longitude": "-98.72167000" + }, + { + "id": "72741", + "name": "Petacalco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98167000", + "longitude": "-102.10841000" + }, + { + "id": "72743", + "name": "Petaquillas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.48636000", + "longitude": "-99.45633000" + }, + { + "id": "72744", + "name": "Petatlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.53768000", + "longitude": "-101.26798000" + }, + { + "id": "72775", + "name": "Pilcaya", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71128000", + "longitude": "-99.62655000" + }, + { + "id": "72793", + "name": "Placeres del Oro", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23578000", + "longitude": "-100.90200000" + }, + { + "id": "72806", + "name": "Platanillo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06478000", + "longitude": "-99.91088000" + }, + { + "id": "72831", + "name": "Pochahuizco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.66472000", + "longitude": "-99.22278000" + }, + { + "id": "72832", + "name": "Pochotillo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02075000", + "longitude": "-99.42725000" + }, + { + "id": "72833", + "name": "Pochutla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65907000", + "longitude": "-98.89798000" + }, + { + "id": "72837", + "name": "Pololcingo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28105000", + "longitude": "-99.39254000" + }, + { + "id": "72932", + "name": "Pueblo Hidalgo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95210000", + "longitude": "-98.65596000" + }, + { + "id": "72934", + "name": "Pueblo Madero (El Playón)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.12611000", + "longitude": "-99.67250000" + }, + { + "id": "72949", + "name": "Pueblo Viejo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09774000", + "longitude": "-99.98811000" + }, + { + "id": "72985", + "name": "Pungarabato", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34938000", + "longitude": "-100.63890000" + }, + { + "id": "73019", + "name": "Quechultenango", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.41425000", + "longitude": "-99.24221000" + }, + { + "id": "73021", + "name": "Querendas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34250000", + "longitude": "-100.63444000" + }, + { + "id": "73028", + "name": "Quetzalapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78551000", + "longitude": "-98.50272000" + }, + { + "id": "73079", + "name": "Rancho de las Lomas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.73972000", + "longitude": "-99.24583000" + }, + { + "id": "73076", + "name": "Rancho Viejo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86500000", + "longitude": "-99.28944000" + }, + { + "id": "73077", + "name": "Rancho Viejo (Rancho Nuevo de la Democracia)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03257000", + "longitude": "-98.22389000" + }, + { + "id": "73193", + "name": "Sabanillas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00038000", + "longitude": "-99.70266000" + }, + { + "id": "73253", + "name": "San Agustín Oapan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.95250000", + "longitude": "-99.43806000" + }, + { + "id": "73292", + "name": "San Andrés Playa Encantada (El Podrido)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.69222000", + "longitude": "-99.63389000" + }, + { + "id": "73330", + "name": "San Antonio Coyahuacán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.86194000", + "longitude": "-98.68000000" + }, + { + "id": "73372", + "name": "San Antonio de las Huertas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28151000", + "longitude": "-100.51828000" + }, + { + "id": "74511", + "name": "San Ángel", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.48193000", + "longitude": "-99.16558000" + }, + { + "id": "73471", + "name": "San Cristóbal", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82221000", + "longitude": "-98.40283000" + }, + { + "id": "73540", + "name": "San Francisco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00583000", + "longitude": "-99.28306000" + }, + { + "id": "73584", + "name": "San Francisco Oxtutla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96172000", + "longitude": "-98.98495000" + }, + { + "id": "73586", + "name": "San Francisco Ozomatlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.92537000", + "longitude": "-99.33902000" + }, + { + "id": "73639", + "name": "San Gregorio", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62967000", + "longitude": "-99.59386000" + }, + { + "id": "73678", + "name": "San Isidro Gallinero (El Gallinero)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88139000", + "longitude": "-99.71417000" + }, + { + "id": "73725", + "name": "San Jerónimo de Juárez", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.13915000", + "longitude": "-100.47067000" + }, + { + "id": "73727", + "name": "San Jerónimo el Grande", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21167000", + "longitude": "-100.50179000" + }, + { + "id": "73698", + "name": "San Jeronimito", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.56818000", + "longitude": "-101.34562000" + }, + { + "id": "73771", + "name": "San José Ixtapa (Barrio Viejo)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.70222000", + "longitude": "-101.61944000" + }, + { + "id": "73854", + "name": "San José la Hacienda", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97944000", + "longitude": "-99.06667000" + }, + { + "id": "73781", + "name": "San José Poliutla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27310000", + "longitude": "-100.39070000" + }, + { + "id": "73960", + "name": "San Juan de Dios (Naranjas de Dios)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54972000", + "longitude": "-99.55583000" + }, + { + "id": "73945", + "name": "San Juan Totolcintla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.90667000", + "longitude": "-99.32694000" + }, + { + "id": "73990", + "name": "San Lorenzo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27352000", + "longitude": "-100.61122000" + }, + { + "id": "74043", + "name": "San Luis Acatlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80901000", + "longitude": "-98.73331000" + }, + { + "id": "74057", + "name": "San Luis de La Loma", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27000000", + "longitude": "-100.89369000" + }, + { + "id": "74053", + "name": "San Luis San Pedro", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26514000", + "longitude": "-100.88093000" + }, + { + "id": "74063", + "name": "San Marcos", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.79772000", + "longitude": "-99.38921000" + }, + { + "id": "74085", + "name": "San Martín", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.46311000", + "longitude": "-99.29436000" + }, + { + "id": "74103", + "name": "San Martín Pachivia (Pachivia)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40855000", + "longitude": "-99.78759000" + }, + { + "id": "74104", + "name": "San Martín Peras", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35919000", + "longitude": "-98.23718000" + }, + { + "id": "74167", + "name": "San Miguel Axoxuca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.54930000", + "longitude": "-98.66163000" + }, + { + "id": "74232", + "name": "San Miguel de las Palmas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25203000", + "longitude": "-99.20081000" + }, + { + "id": "74239", + "name": "San Miguel el Grande", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24533000", + "longitude": "-98.23553000" + }, + { + "id": "74201", + "name": "San Miguel Tecuiciapan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96218000", + "longitude": "-99.41518000" + }, + { + "id": "74218", + "name": "San Miguel Totolapan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16132000", + "longitude": "-100.39049000" + }, + { + "id": "74244", + "name": "San Miguelito", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63583000", + "longitude": "-101.43750000" + }, + { + "id": "74246", + "name": "San Nicolás", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.41775000", + "longitude": "-98.51923000" + }, + { + "id": "74284", + "name": "San Pablo Atzompa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24722000", + "longitude": "-98.37000000" + }, + { + "id": "74322", + "name": "San Pedro Cacahuatepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.81500000", + "longitude": "-99.66833000" + }, + { + "id": "74332", + "name": "San Pedro Cuitlapan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97306000", + "longitude": "-98.25167000" + }, + { + "id": "74341", + "name": "San Pedro Huitzapula Norte (Huitzapula Norte)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.42642000", + "longitude": "-98.80588000" + }, + { + "id": "74417", + "name": "San Pedro las Playas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82286000", + "longitude": "-99.73158000" + }, + { + "id": "74429", + "name": "San Rafael", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22667000", + "longitude": "-98.42417000" + }, + { + "id": "74491", + "name": "San Vicente", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51426000", + "longitude": "-99.68377000" + }, + { + "id": "74503", + "name": "San Vicente Palapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.32430000", + "longitude": "-99.41104000" + }, + { + "id": "74506", + "name": "San Vicente Zoyatlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.32250000", + "longitude": "-98.36417000" + }, + { + "id": "74559", + "name": "Santa Anita", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.42583000", + "longitude": "-98.71889000" + }, + { + "id": "74567", + "name": "Santa Bárbara", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33082000", + "longitude": "-100.63991000" + }, + { + "id": "74575", + "name": "Santa Catarina", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.54835000", + "longitude": "-99.17500000" + }, + { + "id": "74607", + "name": "Santa Cruz", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.53310000", + "longitude": "-98.40269000" + }, + { + "id": "74646", + "name": "Santa Cruz Yucucani", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07650000", + "longitude": "-98.11298000" + }, + { + "id": "74658", + "name": "Santa Fe Tepetlapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54915000", + "longitude": "-99.42467000" + }, + { + "id": "74703", + "name": "Santa María", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.77012000", + "longitude": "-98.39105000" + }, + { + "id": "74858", + "name": "Santa Teresa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22966000", + "longitude": "-99.50697000" + }, + { + "id": "74958", + "name": "Santiago Tilapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.25889000", + "longitude": "-98.26107000" + }, + { + "id": "75087", + "name": "Sinahua", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28111000", + "longitude": "-100.60028000" + }, + { + "id": "75210", + "name": "Tanganhuato", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28608000", + "longitude": "-100.61178000" + }, + { + "id": "75246", + "name": "Taxco el Viejo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.48342000", + "longitude": "-99.58420000" + }, + { + "id": "75855", + "name": "Técpan de Galeana", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21976000", + "longitude": "-100.63032000" + }, + { + "id": "75261", + "name": "Tecalpulco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.48808000", + "longitude": "-99.60282000" + }, + { + "id": "75275", + "name": "Tecolcuautla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78650000", + "longitude": "-98.94828000" + }, + { + "id": "75293", + "name": "Tecuexcontitlán (Tecoescontitlán)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14254000", + "longitude": "-99.57787000" + }, + { + "id": "75298", + "name": "Tehuilotepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.55167000", + "longitude": "-99.58111000" + }, + { + "id": "75302", + "name": "Tehuixtla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.31680000", + "longitude": "-99.93300000" + }, + { + "id": "75320", + "name": "Teloloapan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.35802000", + "longitude": "-99.93621000" + }, + { + "id": "75364", + "name": "Tenexpa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.18486000", + "longitude": "-100.67088000" + }, + { + "id": "75405", + "name": "Tepechicotlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.48317000", + "longitude": "-99.41549000" + }, + { + "id": "75407", + "name": "Tepecoacuilco de Trujano", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28750000", + "longitude": "-99.46423000" + }, + { + "id": "75423", + "name": "Tepetixtla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21541000", + "longitude": "-100.11771000" + }, + { + "id": "75452", + "name": "Tepozcuautla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.62222000", + "longitude": "-99.22778000" + }, + { + "id": "75458", + "name": "Tequicuilco", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10387000", + "longitude": "-99.19812000" + }, + { + "id": "75487", + "name": "Tetipac", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65209000", + "longitude": "-99.67783000" + }, + { + "id": "75489", + "name": "Tetitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.15899000", + "longitude": "-100.63981000" + }, + { + "id": "75500", + "name": "Texca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.01170000", + "longitude": "-99.82474000" + }, + { + "id": "75549", + "name": "Tierra Colorada", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16571000", + "longitude": "-99.52791000" + }, + { + "id": "75593", + "name": "Tixtla de Guerrero", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.56732000", + "longitude": "-99.39799000" + }, + { + "id": "75594", + "name": "Tixtlancingo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.05780000", + "longitude": "-99.96177000" + }, + { + "id": "75603", + "name": "Tlacoachistlahuaca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92618000", + "longitude": "-98.25896000" + }, + { + "id": "75604", + "name": "Tlacoapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24642000", + "longitude": "-98.76947000" + }, + { + "id": "75606", + "name": "Tlacoaxtla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.55485000", + "longitude": "-99.20081000" + }, + { + "id": "75616", + "name": "Tlacotepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78978000", + "longitude": "-99.97961000" + }, + { + "id": "75628", + "name": "Tlahuapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.37500000", + "longitude": "-98.33750000" + }, + { + "id": "75635", + "name": "Tlalchapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.42915000", + "longitude": "-100.45396000" + }, + { + "id": "75638", + "name": "Tlalcozotitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88355000", + "longitude": "-99.13083000" + }, + { + "id": "75641", + "name": "Tlalixtaquilla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.57674000", + "longitude": "-98.36727000" + }, + { + "id": "75652", + "name": "Tlaltempanapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.73611000", + "longitude": "-99.17722000" + }, + { + "id": "75660", + "name": "Tlamacazapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.49649000", + "longitude": "-99.50037000" + }, + { + "id": "75667", + "name": "Tlamixtlahuacan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.50306000", + "longitude": "-99.22583000" + }, + { + "id": "75673", + "name": "Tlanipatla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80806000", + "longitude": "-99.45139000" + }, + { + "id": "75675", + "name": "Tlapa de Comonfort", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.54528000", + "longitude": "-98.57599000" + }, + { + "id": "75681", + "name": "Tlapehuala", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27215000", + "longitude": "-100.45164000" + }, + { + "id": "75683", + "name": "Tlaquiltepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.73143000", + "longitude": "-98.54736000" + }, + { + "id": "75689", + "name": "Tlatlauquitepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.54825000", + "longitude": "-98.82711000" + }, + { + "id": "75691", + "name": "Tlatzala", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.61498000", + "longitude": "-98.54970000" + }, + { + "id": "75696", + "name": "Tlaxcalixtlahuaca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98179000", + "longitude": "-98.77843000" + }, + { + "id": "75701", + "name": "Tlaxinga (Clatzinga)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.52106000", + "longitude": "-99.19331000" + }, + { + "id": "75702", + "name": "Tlaxmalac", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.36115000", + "longitude": "-99.41316000" + }, + { + "id": "75732", + "name": "Tonalapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.49056000", + "longitude": "-99.24194000" + }, + { + "id": "75733", + "name": "Tonalapa del Sur", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.09766000", + "longitude": "-99.55938000" + }, + { + "id": "75739", + "name": "Tonalá", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86167000", + "longitude": "-99.05444000" + }, + { + "id": "75745", + "name": "Topiltepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65037000", + "longitude": "-99.22252000" + }, + { + "id": "75756", + "name": "Totomixtlahuaca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.15819000", + "longitude": "-98.80317000" + }, + { + "id": "75758", + "name": "Tototepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43227000", + "longitude": "-98.58715000" + }, + { + "id": "75776", + "name": "Tres Palos", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82959000", + "longitude": "-99.77813000" + }, + { + "id": "75800", + "name": "Tulimán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02865000", + "longitude": "-99.25572000" + }, + { + "id": "75807", + "name": "Tuncingo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.85083000", + "longitude": "-99.78917000" + }, + { + "id": "75818", + "name": "Tutepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92167000", + "longitude": "-99.15639000" + }, + { + "id": "75819", + "name": "Tuxpan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34933000", + "longitude": "-99.47965000" + }, + { + "id": "75929", + "name": "Valle del Río", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97607000", + "longitude": "-99.93639000" + }, + { + "id": "75916", + "name": "Valle Luz", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13071000", + "longitude": "-100.33983000" + }, + { + "id": "75931", + "name": "Vallecitos de Zaragoza", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.92028000", + "longitude": "-101.32361000" + }, + { + "id": "76007", + "name": "Villa Hermosa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93861000", + "longitude": "-99.33000000" + }, + { + "id": "76008", + "name": "Villa Hermosa (Las Pozas)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63361000", + "longitude": "-101.46639000" + }, + { + "id": "76016", + "name": "Villa Hidalgo (El Cubo)", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16167000", + "longitude": "-100.31500000" + }, + { + "id": "76031", + "name": "Villa Madero", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41120000", + "longitude": "-100.44857000" + }, + { + "id": "76038", + "name": "Villa Nicolás Bravo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21426000", + "longitude": "-100.54790000" + }, + { + "id": "76042", + "name": "Villa Rotaria", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.19444000", + "longitude": "-100.66917000" + }, + { + "id": "76116", + "name": "Xalatzala", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.47355000", + "longitude": "-98.57355000" + }, + { + "id": "76117", + "name": "Xalitla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.99744000", + "longitude": "-99.54438000" + }, + { + "id": "76120", + "name": "Xalpatlahuac", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.47066000", + "longitude": "-98.60675000" + }, + { + "id": "76121", + "name": "Xalpatláhuac", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38885000", + "longitude": "-98.56011000" + }, + { + "id": "76124", + "name": "Xaltianguis", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09834000", + "longitude": "-99.71557000" + }, + { + "id": "76155", + "name": "Xochapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38398000", + "longitude": "-98.45103000" + }, + { + "id": "76162", + "name": "Xochihuehuetlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.89242000", + "longitude": "-98.47886000" + }, + { + "id": "76170", + "name": "Xochipala", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.81180000", + "longitude": "-99.63977000" + }, + { + "id": "76171", + "name": "Xochistlahuaca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.81680000", + "longitude": "-98.18687000" + }, + { + "id": "76174", + "name": "Xochitepec", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.18250000", + "longitude": "-99.22639000" + }, + { + "id": "76187", + "name": "Xocoyolzintla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.71278000", + "longitude": "-98.98194000" + }, + { + "id": "76234", + "name": "Yetla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99355000", + "longitude": "-100.00328000" + }, + { + "id": "76236", + "name": "Yetlancingo", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.72130000", + "longitude": "-99.11538000" + }, + { + "id": "76237", + "name": "Yextla", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.60446000", + "longitude": "-99.93446000" + }, + { + "id": "76242", + "name": "Yoloxóchitl", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.81605000", + "longitude": "-98.68627000" + }, + { + "id": "76253", + "name": "Zacacoyuca", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25029000", + "longitude": "-99.52763000" + }, + { + "id": "76267", + "name": "Zacapuato", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.66867000", + "longitude": "-100.60653000" + }, + { + "id": "76279", + "name": "Zacatula", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00983000", + "longitude": "-102.17946000" + }, + { + "id": "76281", + "name": "Zacoalpan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.74491000", + "longitude": "-98.28763000" + }, + { + "id": "76286", + "name": "Zacualpan", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.08895000", + "longitude": "-100.32590000" + }, + { + "id": "76310", + "name": "Zapotitlán Tablas", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.42417000", + "longitude": "-98.78056000" + }, + { + "id": "76326", + "name": "Zelocotitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.44640000", + "longitude": "-99.10620000" + }, + { + "id": "76335", + "name": "Zilacayotitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.29491000", + "longitude": "-98.54976000" + }, + { + "id": "76350", + "name": "Zirándaro", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.36395000", + "longitude": "-101.19046000" + }, + { + "id": "76351", + "name": "Zirándaro de los Chávez", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.47622000", + "longitude": "-100.97915000" + }, + { + "id": "76352", + "name": "Zitlala", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.71969000", + "longitude": "-99.19569000" + }, + { + "id": "76354", + "name": "Zizicazapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51556000", + "longitude": "-99.15250000" + }, + { + "id": "76366", + "name": "Zoquiapa", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.54472000", + "longitude": "-99.27694000" + }, + { + "id": "76372", + "name": "Zoquitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.34194000", + "longitude": "-98.94917000" + }, + { + "id": "76375", + "name": "Zotoltitlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.71426000", + "longitude": "-99.29177000" + }, + { + "id": "76378", + "name": "Zoyatlán", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "16.70917000", + "longitude": "-98.73349000" + }, + { + "id": "76387", + "name": "Zumpango", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93521000", + "longitude": "-98.68304000" + }, + { + "id": "76388", + "name": "Zumpango del Río", + "state_id": 3459, + "state_code": "GRO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65437000", + "longitude": "-99.52725000" + }, + { + "id": "68025", + "name": "Acahuasco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96254000", + "longitude": "-98.59656000" + }, + { + "id": "68043", + "name": "Acatepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.95367000", + "longitude": "-98.27373000" + }, + { + "id": "68047", + "name": "Acatlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14562000", + "longitude": "-98.43959000" + }, + { + "id": "68055", + "name": "Acaxochitlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16674000", + "longitude": "-98.18971000" + }, + { + "id": "68057", + "name": "Acayuca", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02567000", + "longitude": "-98.84110000" + }, + { + "id": "68062", + "name": "Acoapa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12116000", + "longitude": "-98.48701000" + }, + { + "id": "68067", + "name": "Acoxcatlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97343000", + "longitude": "-98.77793000" + }, + { + "id": "68068", + "name": "Acoyotla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12551000", + "longitude": "-98.77729000" + }, + { + "id": "68073", + "name": "Actopan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28451000", + "longitude": "-98.91525000" + }, + { + "id": "68148", + "name": "Ahuatitla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.16495000", + "longitude": "-98.66594000" + }, + { + "id": "68154", + "name": "Ahuehuetitla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.08444000", + "longitude": "-98.41667000" + }, + { + "id": "68163", + "name": "Ajacuba", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14326000", + "longitude": "-99.06141000" + }, + { + "id": "68190", + "name": "Alfajayucan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41183000", + "longitude": "-99.38388000" + }, + { + "id": "68214", + "name": "Almoloya", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74335000", + "longitude": "-98.33939000" + }, + { + "id": "68288", + "name": "Apan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71128000", + "longitude": "-98.45086000" + }, + { + "id": "68399", + "name": "Atengo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17526000", + "longitude": "-99.32714000" + }, + { + "id": "68406", + "name": "Atitalaquia", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05691000", + "longitude": "-99.21779000" + }, + { + "id": "68416", + "name": "Atlapexco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02507000", + "longitude": "-98.36834000" + }, + { + "id": "68431", + "name": "Atotonilco de Tula", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97025000", + "longitude": "-99.23866000" + }, + { + "id": "68432", + "name": "Atotonilco el Grande", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28632000", + "longitude": "-98.66850000" + }, + { + "id": "76396", + "name": "Álvaro Obregón", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70662000", + "longitude": "-99.37323000" + }, + { + "id": "68515", + "name": "Bangandhó", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48277000", + "longitude": "-99.14901000" + }, + { + "id": "68524", + "name": "Barrio Aztlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46562000", + "longitude": "-98.08553000" + }, + { + "id": "68590", + "name": "Benito Juárez", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16047000", + "longitude": "-98.82606000" + }, + { + "id": "68632", + "name": "Bomanxotha", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51542000", + "longitude": "-99.66679000" + }, + { + "id": "68633", + "name": "Bomintzha", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01400000", + "longitude": "-99.27277000" + }, + { + "id": "68634", + "name": "Bondojito", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44395000", + "longitude": "-99.70022000" + }, + { + "id": "68873", + "name": "Cañada", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99798000", + "longitude": "-99.23947000" + }, + { + "id": "68878", + "name": "Cañada de Madero", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96528000", + "longitude": "-99.39389000" + }, + { + "id": "68744", + "name": "Calnali", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90221000", + "longitude": "-98.57029000" + }, + { + "id": "68748", + "name": "Caltimacan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53672000", + "longitude": "-99.37000000" + }, + { + "id": "68761", + "name": "Camelia (Barrio la Camelia)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14917000", + "longitude": "-98.72222000" + }, + { + "id": "68773", + "name": "Campestre Villas del Álamo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10167000", + "longitude": "-98.70722000" + }, + { + "id": "68795", + "name": "Cantera de Villagrán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84083000", + "longitude": "-99.30917000" + }, + { + "id": "68796", + "name": "Cantinela", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45778000", + "longitude": "-99.21028000" + }, + { + "id": "68819", + "name": "Carboneras", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09000000", + "longitude": "-98.70528000" + }, + { + "id": "68821", + "name": "Cardonal", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05689000", + "longitude": "-99.23025000" + }, + { + "id": "68832", + "name": "Carpinteros", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58606000", + "longitude": "-98.53964000" + }, + { + "id": "68870", + "name": "Caxuxi", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30522000", + "longitude": "-98.99067000" + }, + { + "id": "68917", + "name": "Cerritos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.35306000", + "longitude": "-99.01222000" + }, + { + "id": "68948", + "name": "Chachahuantla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20182000", + "longitude": "-98.13261000" + }, + { + "id": "68954", + "name": "Chalahuiyapa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15088000", + "longitude": "-98.36429000" + }, + { + "id": "68981", + "name": "Chapantongo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28635000", + "longitude": "-99.41319000" + }, + { + "id": "68987", + "name": "Chapulhuacanito", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.20911000", + "longitude": "-98.67016000" + }, + { + "id": "68988", + "name": "Chapulhuacán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15731000", + "longitude": "-98.90361000" + }, + { + "id": "68999", + "name": "Chatipán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02006000", + "longitude": "-98.52731000" + }, + { + "id": "69018", + "name": "Chicavasco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19715000", + "longitude": "-98.95386000" + }, + { + "id": "69020", + "name": "Chichatla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.95833000", + "longitude": "-98.62946000" + }, + { + "id": "69069", + "name": "Chilcuautla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33059000", + "longitude": "-99.23117000" + }, + { + "id": "69070", + "name": "Chililico", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13444000", + "longitude": "-98.43556000" + }, + { + "id": "69076", + "name": "Chimalapa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18806000", + "longitude": "-98.16000000" + }, + { + "id": "69078", + "name": "Chimalpa y Tlalayote", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66522000", + "longitude": "-98.51224000" + }, + { + "id": "69138", + "name": "Cipreses", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05889000", + "longitude": "-98.76750000" + }, + { + "id": "69178", + "name": "Ciudad Sahagun", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77557000", + "longitude": "-98.57471000" + }, + { + "id": "69211", + "name": "Coacuilco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10377000", + "longitude": "-98.58643000" + }, + { + "id": "69257", + "name": "Colinas de Plata", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07833000", + "longitude": "-98.72667000" + }, + { + "id": "69267", + "name": "Colonia 28 de Mayo (Santa Rosa)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16611000", + "longitude": "-98.39000000" + }, + { + "id": "69285", + "name": "Colonia Benito Juárez", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88985000", + "longitude": "-98.80661000" + }, + { + "id": "69301", + "name": "Colonia Felipe Ángeles", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05417000", + "longitude": "-98.41861000" + }, + { + "id": "69305", + "name": "Colonia Guadalupe", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93917000", + "longitude": "-98.76556000" + }, + { + "id": "69330", + "name": "Colonia Militar", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11139000", + "longitude": "-98.70306000" + }, + { + "id": "69334", + "name": "Colonia Morelos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89056000", + "longitude": "-98.81667000" + }, + { + "id": "69335", + "name": "Colonia Morelos (El Nueve)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22500000", + "longitude": "-99.14111000" + }, + { + "id": "69365", + "name": "Colonia San Juan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19028000", + "longitude": "-99.28278000" + }, + { + "id": "69370", + "name": "Colonia Sesenta y Dos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00528000", + "longitude": "-99.34583000" + }, + { + "id": "69372", + "name": "Colonia Teñhe", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19291000", + "longitude": "-99.17866000" + }, + { + "id": "69449", + "name": "Conejos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97570000", + "longitude": "-99.24337000" + }, + { + "id": "69523", + "name": "Coyotillos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99980000", + "longitude": "-99.15817000" + }, + { + "id": "69560", + "name": "Cuapaxtitla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13292000", + "longitude": "-98.55264000" + }, + { + "id": "69567", + "name": "Cuatolol", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.11967000", + "longitude": "-98.82563000" + }, + { + "id": "69588", + "name": "Cuautepec de Hinojosa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03557000", + "longitude": "-98.31015000" + }, + { + "id": "69601", + "name": "Cuazahuatl", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01637000", + "longitude": "-98.88691000" + }, + { + "id": "69664", + "name": "Dajiedi", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31114000", + "longitude": "-98.94006000" + }, + { + "id": "69667", + "name": "Dantzibojay", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43934000", + "longitude": "-99.58587000" + }, + { + "id": "69669", + "name": "Daxtha", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27994000", + "longitude": "-98.97964000" + }, + { + "id": "69751", + "name": "Déxtho de Victoria", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32528000", + "longitude": "-99.02389000" + }, + { + "id": "69678", + "name": "Dengantzha", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27211000", + "longitude": "-99.12098000" + }, + { + "id": "69687", + "name": "Dios Padre", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46469000", + "longitude": "-99.20132000" + }, + { + "id": "69709", + "name": "Don Antonio", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87444000", + "longitude": "-98.93472000" + }, + { + "id": "69724", + "name": "Doxey", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09169000", + "longitude": "-99.24362000" + }, + { + "id": "69833", + "name": "El Arenal", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22258000", + "longitude": "-98.90957000" + }, + { + "id": "69840", + "name": "El Barrido", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45028000", + "longitude": "-99.19083000" + }, + { + "id": "69845", + "name": "El Bingú", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59296000", + "longitude": "-99.14315000" + }, + { + "id": "69850", + "name": "El Boxtha", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25972000", + "longitude": "-98.97417000" + }, + { + "id": "69863", + "name": "El Capulín", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00898000", + "longitude": "-98.27613000" + }, + { + "id": "69904", + "name": "El Cid", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86722000", + "longitude": "-98.92694000" + }, + { + "id": "69913", + "name": "El Colorado", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21528000", + "longitude": "-99.00222000" + }, + { + "id": "69987", + "name": "El Huaxtho", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23444000", + "longitude": "-98.96222000" + }, + { + "id": "69991", + "name": "El Huixmí", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07569000", + "longitude": "-98.81972000" + }, + { + "id": "69998", + "name": "El Jagüey", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24691000", + "longitude": "-99.61516000" + }, + { + "id": "70003", + "name": "El Jiadi", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24842000", + "longitude": "-98.92815000" + }, + { + "id": "70021", + "name": "El Llano", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06537000", + "longitude": "-99.31976000" + }, + { + "id": "70040", + "name": "El Mirador", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03000000", + "longitude": "-98.81056000" + }, + { + "id": "70050", + "name": "El Moreno (San Miguel Moreno)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30139000", + "longitude": "-99.17361000" + }, + { + "id": "70065", + "name": "El Nith", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48778000", + "longitude": "-99.19194000" + }, + { + "id": "70072", + "name": "El Olvera", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27000000", + "longitude": "-99.02556000" + }, + { + "id": "70094", + "name": "El Paredón", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86686000", + "longitude": "-98.25224000" + }, + { + "id": "70106", + "name": "El Pintor", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15932000", + "longitude": "-98.41284000" + }, + { + "id": "70150", + "name": "El Refugio", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00480000", + "longitude": "-99.18835000" + }, + { + "id": "70160", + "name": "El Rincón", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27334000", + "longitude": "-98.90431000" + }, + { + "id": "70167", + "name": "El Roble", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05806000", + "longitude": "-98.75833000" + }, + { + "id": "70172", + "name": "El Rosario", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24842000", + "longitude": "-99.02539000" + }, + { + "id": "70197", + "name": "El Saucillo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07694000", + "longitude": "-98.73722000" + }, + { + "id": "70198", + "name": "El Saucillo (Fraccionamiento)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06778000", + "longitude": "-98.73194000" + }, + { + "id": "70209", + "name": "El Susto", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05905000", + "longitude": "-98.49303000" + }, + { + "id": "70219", + "name": "El Tepeyac", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05073000", + "longitude": "-98.31063000" + }, + { + "id": "70220", + "name": "El Tephé", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44861000", + "longitude": "-99.17500000" + }, + { + "id": "70252", + "name": "El Venado", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06291000", + "longitude": "-98.76018000" + }, + { + "id": "70272", + "name": "Eloxochitlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72703000", + "longitude": "-98.87693000" + }, + { + "id": "70278", + "name": "Emiliano Zapata", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65490000", + "longitude": "-98.54497000" + }, + { + "id": "70310", + "name": "Epazoyucan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02654000", + "longitude": "-98.63802000" + }, + { + "id": "70359", + "name": "Estación de Apulco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28611000", + "longitude": "-98.34750000" + }, + { + "id": "70408", + "name": "Fontezuelas", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48853000", + "longitude": "-98.87164000" + }, + { + "id": "70409", + "name": "Forjadores de Pachuca", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05500000", + "longitude": "-98.76333000" + }, + { + "id": "70412", + "name": "Fraccionamiento Carlos Salinas de Gortari", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11028000", + "longitude": "-98.43028000" + }, + { + "id": "70448", + "name": "Fraccionamiento del Magisterio Tulancinguense", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07639000", + "longitude": "-98.39972000" + }, + { + "id": "70518", + "name": "Gandhó", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54525000", + "longitude": "-99.68737000" + }, + { + "id": "70532", + "name": "General Felipe Ángeles (Los Ángeles)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89750000", + "longitude": "-98.92611000" + }, + { + "id": "70544", + "name": "General Pedro María Anaya", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15600000", + "longitude": "-99.34800000" + }, + { + "id": "70587", + "name": "Guadalupe Minerva", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12583000", + "longitude": "-98.71389000" + }, + { + "id": "70597", + "name": "Guadalupe Victoria", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03748000", + "longitude": "-98.26864000" + }, + { + "id": "70726", + "name": "Hualula", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70877000", + "longitude": "-98.83688000" + }, + { + "id": "70739", + "name": "Huasca de Ocampo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20357000", + "longitude": "-98.57603000" + }, + { + "id": "70746", + "name": "Huautla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03105000", + "longitude": "-98.28685000" + }, + { + "id": "70757", + "name": "Huehuetla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53204000", + "longitude": "-98.03311000" + }, + { + "id": "70767", + "name": "Huejutla de Reyes", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14000000", + "longitude": "-98.41944000" + }, + { + "id": "70773", + "name": "Hueyapa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08506000", + "longitude": "-98.68871000" + }, + { + "id": "70788", + "name": "Huichapan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37593000", + "longitude": "-99.64869000" + }, + { + "id": "70799", + "name": "Huitel", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16707000", + "longitude": "-99.27860000" + }, + { + "id": "70800", + "name": "Huitepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05451000", + "longitude": "-98.72291000" + }, + { + "id": "70804", + "name": "Huitzila", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81137000", + "longitude": "-98.95583000" + }, + { + "id": "70812", + "name": "Huitzitzilingo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.17295000", + "longitude": "-98.65693000" + }, + { + "id": "70847", + "name": "Ignacio Zaragoza", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01574000", + "longitude": "-99.32101000" + }, + { + "id": "70879", + "name": "Irolo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73452000", + "longitude": "-98.59641000" + }, + { + "id": "70907", + "name": "Ixcatlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08134000", + "longitude": "-98.53468000" + }, + { + "id": "70908", + "name": "Ixcuinquitlapilco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11091000", + "longitude": "-98.93980000" + }, + { + "id": "70918", + "name": "Ixmiquilpan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47841000", + "longitude": "-99.21697000" + }, + { + "id": "70937", + "name": "Ixtlahuaca", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88368000", + "longitude": "-98.70379000" + }, + { + "id": "70957", + "name": "Jacala", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00952000", + "longitude": "-99.19134000" + }, + { + "id": "70961", + "name": "Jagüey Blanco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27639000", + "longitude": "-99.15222000" + }, + { + "id": "70962", + "name": "Jagüey de Téllez (Estación Téllez)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98056000", + "longitude": "-98.78833000" + }, + { + "id": "70975", + "name": "Jalpa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10908000", + "longitude": "-98.71313000" + }, + { + "id": "70986", + "name": "Jaltepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11552000", + "longitude": "-98.41712000" + }, + { + "id": "70990", + "name": "Jaltocan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13284000", + "longitude": "-98.53898000" + }, + { + "id": "70992", + "name": "Jaltocán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15063000", + "longitude": "-98.52451000" + }, + { + "id": "71014", + "name": "Javier Rojo Gómez", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06972000", + "longitude": "-98.41778000" + }, + { + "id": "71078", + "name": "Jonacapa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43358000", + "longitude": "-99.53306000" + }, + { + "id": "71103", + "name": "José María Morelos (San José)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68250000", + "longitude": "-98.57639000" + }, + { + "id": "71110", + "name": "José María Pino Suárez", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24722000", + "longitude": "-99.42111000" + }, + { + "id": "71138", + "name": "Julián Villagrán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39645000", + "longitude": "-99.10431000" + }, + { + "id": "71172", + "name": "La Amistad", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00833000", + "longitude": "-99.32028000" + }, + { + "id": "71185", + "name": "La Boveda", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12496000", + "longitude": "-98.12468000" + }, + { + "id": "71219", + "name": "La Colonia", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05472000", + "longitude": "-98.77028000" + }, + { + "id": "71247", + "name": "La Cruz", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17603000", + "longitude": "-99.24156000" + }, + { + "id": "71278", + "name": "La Esquina", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54712000", + "longitude": "-99.70770000" + }, + { + "id": "71282", + "name": "La Estancia", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29889000", + "longitude": "-98.68944000" + }, + { + "id": "71286", + "name": "La Estanzuela", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17828000", + "longitude": "-98.75703000" + }, + { + "id": "71342", + "name": "La Laguna", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73447000", + "longitude": "-98.49989000" + }, + { + "id": "71348", + "name": "La Lagunilla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06787000", + "longitude": "-98.47801000" + }, + { + "id": "71363", + "name": "La Loma", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16959000", + "longitude": "-99.37882000" + }, + { + "id": "71394", + "name": "La Mesilla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48949000", + "longitude": "-99.67676000" + }, + { + "id": "71465", + "name": "La Providencia Siglo XXI", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06417000", + "longitude": "-98.71722000" + }, + { + "id": "71472", + "name": "La Reforma", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07327000", + "longitude": "-98.87057000" + }, + { + "id": "71482", + "name": "La Sabinita", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36286000", + "longitude": "-99.63423000" + }, + { + "id": "71483", + "name": "La Sala (La Caliente)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20722000", + "longitude": "-98.87250000" + }, + { + "id": "71507", + "name": "La Trinidad", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95975000", + "longitude": "-98.70942000" + }, + { + "id": "71561", + "name": "Lagunilla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34306000", + "longitude": "-99.02737000" + }, + { + "id": "71885", + "name": "Lázaro Cárdenas", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64032000", + "longitude": "-98.47166000" + }, + { + "id": "71681", + "name": "Lindavista", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02611000", + "longitude": "-98.79778000" + }, + { + "id": "71688", + "name": "Llano Largo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30111000", + "longitude": "-99.76556000" + }, + { + "id": "71707", + "name": "Lolotla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00922000", + "longitude": "-98.73116000" + }, + { + "id": "71790", + "name": "Los Cides", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80439000", + "longitude": "-98.51870000" + }, + { + "id": "71845", + "name": "Los Reyes", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15529000", + "longitude": "-98.16424000" + }, + { + "id": "71856", + "name": "Los Romeros", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02976000", + "longitude": "-98.41496000" + }, + { + "id": "71857", + "name": "Los Sabinos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31535000", + "longitude": "-98.64862000" + }, + { + "id": "71866", + "name": "Los Tuzos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05389000", + "longitude": "-98.75639000" + }, + { + "id": "71905", + "name": "Machetla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05946000", + "longitude": "-98.49445000" + }, + { + "id": "71936", + "name": "Magisterio Digno", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05694000", + "longitude": "-98.76889000" + }, + { + "id": "71938", + "name": "Maguey Blanco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.42357000", + "longitude": "-99.17032000" + }, + { + "id": "71952", + "name": "Mamithi", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41003000", + "longitude": "-99.65797000" + }, + { + "id": "71955", + "name": "Mangas", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18647000", + "longitude": "-99.24799000" + }, + { + "id": "71967", + "name": "Manuel Ávila Camacho", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11194000", + "longitude": "-98.70694000" + }, + { + "id": "72055", + "name": "Mecatlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93573000", + "longitude": "-98.40305000" + }, + { + "id": "72067", + "name": "Melchor Ocampo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94540000", + "longitude": "-99.28171000" + }, + { + "id": "72090", + "name": "Metepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26375000", + "longitude": "-98.34366000" + }, + { + "id": "72091", + "name": "Metepec Primero", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14167000", + "longitude": "-98.43222000" + }, + { + "id": "72096", + "name": "Metztitlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56753000", + "longitude": "-98.79696000" + }, + { + "id": "72112", + "name": "Mezquititlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53307000", + "longitude": "-98.63749000" + }, + { + "id": "72120", + "name": "Michimaloya", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09151000", + "longitude": "-99.39885000" + }, + { + "id": "72149", + "name": "Mineral del Monte", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13830000", + "longitude": "-98.67364000" + }, + { + "id": "72166", + "name": "Mixquiahuala de Juarez", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23031000", + "longitude": "-99.21396000" + }, + { + "id": "72181", + "name": "Molango", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.78693000", + "longitude": "-98.72878000" + }, + { + "id": "72195", + "name": "Monte Alegre", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98250000", + "longitude": "-99.34139000" + }, + { + "id": "72240", + "name": "Motovatha", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18377000", + "longitude": "-99.20514000" + }, + { + "id": "72255", + "name": "Munitepec de Madero", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12858000", + "longitude": "-99.19948000" + }, + { + "id": "72277", + "name": "Nantzha", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05317000", + "longitude": "-99.36856000" + }, + { + "id": "72345", + "name": "Nopala de Villagran", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25198000", + "longitude": "-99.64541000" + }, + { + "id": "72382", + "name": "Nuevo Centro de Población Agrícola el Chacón", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07028000", + "longitude": "-98.73944000" + }, + { + "id": "72437", + "name": "Ocampo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00896000", + "longitude": "-99.23926000" + }, + { + "id": "72477", + "name": "Ohuatipa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89308000", + "longitude": "-98.26197000" + }, + { + "id": "72487", + "name": "Ojo de Agua", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97635000", + "longitude": "-99.44498000" + }, + { + "id": "72507", + "name": "Omitlán de Juárez", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16980000", + "longitude": "-98.64842000" + }, + { + "id": "72520", + "name": "Oriental de Zapata", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98528000", + "longitude": "-99.03167000" + }, + { + "id": "72529", + "name": "Orizabita", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58338000", + "longitude": "-99.20874000" + }, + { + "id": "72548", + "name": "Oxeloco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91889000", + "longitude": "-98.32556000" + }, + { + "id": "72717", + "name": "Pañhé", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52167000", + "longitude": "-99.69667000" + }, + { + "id": "72566", + "name": "Pachiquita", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.84608000", + "longitude": "-98.33478000" + }, + { + "id": "72569", + "name": "Pachuca de Soto", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11697000", + "longitude": "-98.73329000" + }, + { + "id": "72570", + "name": "Pachuquilla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07099000", + "longitude": "-98.69572000" + }, + { + "id": "72573", + "name": "Pahactla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97440000", + "longitude": "-98.35634000" + }, + { + "id": "72575", + "name": "Pahuatlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06940000", + "longitude": "-98.47667000" + }, + { + "id": "72598", + "name": "Palmillas", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21859000", + "longitude": "-99.19840000" + }, + { + "id": "72620", + "name": "Panales", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46965000", + "longitude": "-99.26674000" + }, + { + "id": "72630", + "name": "Panuaya", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19500000", + "longitude": "-99.27083000" + }, + { + "id": "72637", + "name": "Papatlatla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90154000", + "longitude": "-98.45192000" + }, + { + "id": "72659", + "name": "Parque de Poblamiento Solidaridad", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15194000", + "longitude": "-98.38611000" + }, + { + "id": "72658", + "name": "Parque Urbano Napateco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14278000", + "longitude": "-98.34083000" + }, + { + "id": "72670", + "name": "Paseos de la Pradera", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89111000", + "longitude": "-99.23806000" + }, + { + "id": "72710", + "name": "Patria Nueva", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37151000", + "longitude": "-99.05172000" + }, + { + "id": "72715", + "name": "Paxtepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05278000", + "longitude": "-98.43139000" + }, + { + "id": "72721", + "name": "Pedregal de San José", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06616000", + "longitude": "-98.40703000" + }, + { + "id": "72779", + "name": "Pino Suárez", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24577000", + "longitude": "-99.42107000" + }, + { + "id": "72785", + "name": "Pisaflores", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.19417000", + "longitude": "-99.00551000" + }, + { + "id": "72855", + "name": "Portezuelo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48687000", + "longitude": "-99.30610000" + }, + { + "id": "72876", + "name": "Pozuelos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49271000", + "longitude": "-99.05974000" + }, + { + "id": "72879", + "name": "Praderas del Potrero", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88472000", + "longitude": "-99.23028000" + }, + { + "id": "72890", + "name": "Presas", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15946000", + "longitude": "-99.25242000" + }, + { + "id": "72561", + "name": "PRI Chacón", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.08139000", + "longitude": "-98.73694000" + }, + { + "id": "72905", + "name": "Privada del Álamo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09833000", + "longitude": "-98.70028000" + }, + { + "id": "72914", + "name": "Progreso", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01972000", + "longitude": "-99.23861000" + }, + { + "id": "72918", + "name": "Progreso de Alvaro Obregon", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24929000", + "longitude": "-99.18988000" + }, + { + "id": "72931", + "name": "Pueblo Hidalgo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.11447000", + "longitude": "-98.67817000" + }, + { + "id": "72940", + "name": "Pueblo Nuevo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45511000", + "longitude": "-99.16652000" + }, + { + "id": "73184", + "name": "Río Seco Puente de Doria", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21094000", + "longitude": "-98.50077000" + }, + { + "id": "73097", + "name": "Residencial Arboledas", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06444000", + "longitude": "-99.30167000" + }, + { + "id": "73113", + "name": "Rinconada de los Ángeles", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02611000", + "longitude": "-98.71139000" + }, + { + "id": "73114", + "name": "Rinconadas de San Francisco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06611000", + "longitude": "-98.76806000" + }, + { + "id": "73116", + "name": "Rinconadas del Venado I", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06361000", + "longitude": "-98.76333000" + }, + { + "id": "73117", + "name": "Rincones de la Hacienda", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12000000", + "longitude": "-98.40167000" + }, + { + "id": "73140", + "name": "Rio de la Soledad", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11500000", + "longitude": "-98.71194000" + }, + { + "id": "73219", + "name": "Salitrillo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82937000", + "longitude": "-99.21594000" + }, + { + "id": "73255", + "name": "San Agustín Tlaxiaca", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11510000", + "longitude": "-98.88640000" + }, + { + "id": "73257", + "name": "San Agustín Zapotlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87550000", + "longitude": "-98.71426000" + }, + { + "id": "73265", + "name": "San Andrés", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05446000", + "longitude": "-99.38008000" + }, + { + "id": "73268", + "name": "San Andrés (San Andrés Chichayotla)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.92667000", + "longitude": "-98.56333000" + }, + { + "id": "73314", + "name": "San Antonio", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53204000", + "longitude": "-99.71038000" + }, + { + "id": "73384", + "name": "San Antonio el Grande", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45683000", + "longitude": "-98.03484000" + }, + { + "id": "73386", + "name": "San Antonio el Paso", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14722000", + "longitude": "-98.61611000" + }, + { + "id": "73363", + "name": "San Antonio Zaragoza", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25497000", + "longitude": "-98.99828000" + }, + { + "id": "73408", + "name": "San Bartolo Ozocalpan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22336000", + "longitude": "-99.48906000" + }, + { + "id": "73409", + "name": "San Bartolo Tutotepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39841000", + "longitude": "-98.20080000" + }, + { + "id": "73448", + "name": "San Buenaventura", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82083000", + "longitude": "-99.32209000" + }, + { + "id": "73477", + "name": "San Cristóbal Chacón", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.08028000", + "longitude": "-98.73278000" + }, + { + "id": "73506", + "name": "San Esteban", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54452000", + "longitude": "-98.06004000" + }, + { + "id": "73518", + "name": "San Felipe Orizatlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.17109000", + "longitude": "-98.60744000" + }, + { + "id": "73539", + "name": "San Francisco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01819000", + "longitude": "-98.48699000" + }, + { + "id": "73550", + "name": "San Francisco Atotonilco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19472000", + "longitude": "-98.15167000" + }, + { + "id": "73624", + "name": "San Gabriel", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17154000", + "longitude": "-99.33502000" + }, + { + "id": "73626", + "name": "San Gabriel Azteca", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88039000", + "longitude": "-98.61610000" + }, + { + "id": "73638", + "name": "San Gregorio", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49808000", + "longitude": "-98.01809000" + }, + { + "id": "73652", + "name": "San Ignacio Nopala", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83528000", + "longitude": "-99.34556000" + }, + { + "id": "73658", + "name": "San Ildefonso", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99629000", + "longitude": "-99.37193000" + }, + { + "id": "73664", + "name": "San Isidro", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78927000", + "longitude": "-98.59141000" + }, + { + "id": "73728", + "name": "San Joaquín", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.50542000", + "longitude": "-99.77600000" + }, + { + "id": "73738", + "name": "San José", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06917000", + "longitude": "-98.59444000" + }, + { + "id": "73742", + "name": "San José Atlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33833000", + "longitude": "-99.67396000" + }, + { + "id": "73748", + "name": "San José Boxay", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26236000", + "longitude": "-99.10085000" + }, + { + "id": "73760", + "name": "San José Corral Blanco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90884000", + "longitude": "-98.17811000" + }, + { + "id": "73777", + "name": "San José Ocotillos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20687000", + "longitude": "-98.61306000" + }, + { + "id": "73860", + "name": "San Juan Achichilco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17868000", + "longitude": "-99.31462000" + }, + { + "id": "73862", + "name": "San Juan Ahuehueco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.04167000", + "longitude": "-98.90694000" + }, + { + "id": "73896", + "name": "San Juan Hueyapan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03000000", + "longitude": "-98.28194000" + }, + { + "id": "73925", + "name": "San Juan Solís", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15830000", + "longitude": "-98.93147000" + }, + { + "id": "73932", + "name": "San Juan Tepa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21579000", + "longitude": "-99.06592000" + }, + { + "id": "73940", + "name": "San Juan Tilcuautla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15873000", + "longitude": "-98.80112000" + }, + { + "id": "73941", + "name": "San Juan Tizahuapán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05073000", + "longitude": "-98.66540000" + }, + { + "id": "73995", + "name": "San Lorenzo Achiotepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59732000", + "longitude": "-98.06876000" + }, + { + "id": "74010", + "name": "San Lorenzo Sayula", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98921000", + "longitude": "-98.29774000" + }, + { + "id": "74055", + "name": "San Luis Tecuhautitlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76736000", + "longitude": "-98.88868000" + }, + { + "id": "74064", + "name": "San Marcos", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03056000", + "longitude": "-99.33547000" + }, + { + "id": "74071", + "name": "San Marcos Guaquilpan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59853000", + "longitude": "-98.62866000" + }, + { + "id": "74115", + "name": "San Mateo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18267000", + "longitude": "-98.24657000" + }, + { + "id": "74170", + "name": "San Miguel Cerezo (El Cerezo)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15909000", + "longitude": "-98.72853000" + }, + { + "id": "74220", + "name": "San Miguel Vindho", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99447000", + "longitude": "-99.31782000" + }, + { + "id": "74247", + "name": "San Nicolás", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32218000", + "longitude": "-98.18781000" + }, + { + "id": "74276", + "name": "San Nicolás el Chico", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09580000", + "longitude": "-98.38776000" + }, + { + "id": "74262", + "name": "San Nicolás Tecomatlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17944000", + "longitude": "-99.03639000" + }, + { + "id": "74308", + "name": "San Pablo el Grande", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36127000", + "longitude": "-98.15999000" + }, + { + "id": "74384", + "name": "San Pedro Tlachichilco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16109000", + "longitude": "-98.26415000" + }, + { + "id": "74390", + "name": "San Pedro Tlaquilpan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94514000", + "longitude": "-98.75293000" + }, + { + "id": "74444", + "name": "San Salvador", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28583000", + "longitude": "-99.01457000" + }, + { + "id": "74469", + "name": "San Sebastián Tenochtitlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27988000", + "longitude": "-99.68879000" + }, + { + "id": "74526", + "name": "Santa Ana Ahuehuepan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12288000", + "longitude": "-99.34497000" + }, + { + "id": "74528", + "name": "Santa Ana Azcapotzaltongo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94325000", + "longitude": "-99.38800000" + }, + { + "id": "74529", + "name": "Santa Ana Batha", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37944000", + "longitude": "-99.19186000" + }, + { + "id": "74553", + "name": "Santa Ana de Allende", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12301000", + "longitude": "-98.98606000" + }, + { + "id": "74534", + "name": "Santa Ana Hueytlalpan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17484000", + "longitude": "-98.31209000" + }, + { + "id": "74545", + "name": "Santa Ana Tlachiahualpa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76869000", + "longitude": "-98.90885000" + }, + { + "id": "74548", + "name": "Santa Ana Tzacuala", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19798000", + "longitude": "-98.20403000" + }, + { + "id": "74863", + "name": "Santa Úrsula", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.42030000", + "longitude": "-98.10478000" + }, + { + "id": "74564", + "name": "Santa Bárbara", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66666000", + "longitude": "-98.56920000" + }, + { + "id": "74574", + "name": "Santa Catarina", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10045000", + "longitude": "-98.38077000" + }, + { + "id": "74600", + "name": "Santa Clara", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69889000", + "longitude": "-98.57778000" + }, + { + "id": "74606", + "name": "Santa Cruz", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.19813000", + "longitude": "-98.49395000" + }, + { + "id": "74656", + "name": "Santa Elena Paliseca", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99805000", + "longitude": "-98.24144000" + }, + { + "id": "74706", + "name": "Santa María Actipac", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85547000", + "longitude": "-98.74561000" + }, + { + "id": "74711", + "name": "Santa María Amajac", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22949000", + "longitude": "-98.99833000" + }, + { + "id": "74712", + "name": "Santa María Apaxco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95524000", + "longitude": "-99.18680000" + }, + { + "id": "74715", + "name": "Santa María Asunción", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15508000", + "longitude": "-98.27037000" + }, + { + "id": "74720", + "name": "Santa María Batha", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22413000", + "longitude": "-99.25174000" + }, + { + "id": "74745", + "name": "Santa María Ilucan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99222000", + "longitude": "-99.33951000" + }, + { + "id": "74823", + "name": "Santa María la Calera", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03072000", + "longitude": "-98.71929000" + }, + { + "id": "74754", + "name": "Santa María Magdalena", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97398000", + "longitude": "-99.37387000" + }, + { + "id": "74761", + "name": "Santa María Nativitas", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03901000", + "longitude": "-98.29535000" + }, + { + "id": "74772", + "name": "Santa María Quelites", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85391000", + "longitude": "-99.34773000" + }, + { + "id": "74793", + "name": "Santa María Xigui", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46111000", + "longitude": "-99.34500000" + }, + { + "id": "74694", + "name": "Santa Maria Amealco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23771000", + "longitude": "-99.54963000" + }, + { + "id": "74696", + "name": "Santa Maria Macua", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13605000", + "longitude": "-99.47544000" + }, + { + "id": "74825", + "name": "Santa Mónica", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98363000", + "longitude": "-98.62143000" + }, + { + "id": "74856", + "name": "Santa Teresa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88989000", + "longitude": "-98.38330000" + }, + { + "id": "74872", + "name": "Santiago Acayutlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19719000", + "longitude": "-99.29534000" + }, + { + "id": "74896", + "name": "Santiago Cuaula", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60136000", + "longitude": "-98.64941000" + }, + { + "id": "74982", + "name": "Santiago de Anaya", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38410000", + "longitude": "-98.96512000" + }, + { + "id": "74910", + "name": "Santiago Jaltepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10972000", + "longitude": "-98.71111000" + }, + { + "id": "74949", + "name": "Santiago Tepeyahualco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84864000", + "longitude": "-98.66970000" + }, + { + "id": "74955", + "name": "Santiago Tezontlale", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16217000", + "longitude": "-99.09865000" + }, + { + "id": "74962", + "name": "Santiago Tlaltepoxco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88365000", + "longitude": "-99.26046000" + }, + { + "id": "74963", + "name": "Santiago Tlapacoya", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10925000", + "longitude": "-98.83037000" + }, + { + "id": "74964", + "name": "Santiago Tlapanaloya", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87056000", + "longitude": "-99.35083000" + }, + { + "id": "74965", + "name": "Santiago Tlautla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96222000", + "longitude": "-99.36909000" + }, + { + "id": "74967", + "name": "Santiago Tulantepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03618000", + "longitude": "-98.35563000" + }, + { + "id": "75022", + "name": "Santo Tomas", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90364000", + "longitude": "-98.56882000" + }, + { + "id": "75095", + "name": "Singuilucan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98964000", + "longitude": "-98.51923000" + }, + { + "id": "75173", + "name": "Talol", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12025000", + "longitude": "-98.62655000" + }, + { + "id": "75203", + "name": "Tancazahuela", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.18300000", + "longitude": "-98.43483000" + }, + { + "id": "75236", + "name": "Tasquillo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54698000", + "longitude": "-99.34562000" + }, + { + "id": "75244", + "name": "Taxadho", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43330000", + "longitude": "-99.14934000" + }, + { + "id": "75253", + "name": "Teacalco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80561000", + "longitude": "-98.85209000" + }, + { + "id": "75258", + "name": "Tecacahuaco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94133000", + "longitude": "-98.33889000" + }, + { + "id": "75286", + "name": "Tecozautla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53302000", + "longitude": "-99.64662000" + }, + { + "id": "75297", + "name": "Tehuetlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05337000", + "longitude": "-98.50853000" + }, + { + "id": "75323", + "name": "Teltipán de Juárez", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11527000", + "longitude": "-99.20146000" + }, + { + "id": "75327", + "name": "Temango", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13143000", + "longitude": "-98.69051000" + }, + { + "id": "75353", + "name": "Tenango", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22714000", + "longitude": "-99.29068000" + }, + { + "id": "75355", + "name": "Tenango de Doria", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33828000", + "longitude": "-98.22805000" + }, + { + "id": "75372", + "name": "Teocalco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.08582000", + "longitude": "-99.28289000" + }, + { + "id": "75375", + "name": "Teofani", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32284000", + "longitude": "-99.04300000" + }, + { + "id": "75399", + "name": "Tepatepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24568000", + "longitude": "-99.08981000" + }, + { + "id": "75404", + "name": "Tepeapulco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80470000", + "longitude": "-98.50153000" + }, + { + "id": "75408", + "name": "Tepehuacán de Guerrero", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01350000", + "longitude": "-98.84184000" + }, + { + "id": "75410", + "name": "Tepeitic", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24123000", + "longitude": "-99.29084000" + }, + { + "id": "75411", + "name": "Tepeji del Río de Ocampo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90481000", + "longitude": "-99.34379000" + }, + { + "id": "75414", + "name": "Tepepa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13440000", + "longitude": "-98.17131000" + }, + { + "id": "75418", + "name": "Tepetitla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96140000", + "longitude": "-98.38400000" + }, + { + "id": "75420", + "name": "Tepetitlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18301000", + "longitude": "-99.38882000" + }, + { + "id": "75440", + "name": "Tepexititla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13205000", + "longitude": "-98.44735000" + }, + { + "id": "75449", + "name": "Tepojaco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84070000", + "longitude": "-98.94759000" + }, + { + "id": "75485", + "name": "Tetepango", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10168000", + "longitude": "-99.15108000" + }, + { + "id": "75501", + "name": "Texcaco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.83982000", + "longitude": "-98.61613000" + }, + { + "id": "75505", + "name": "Texcaltepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03028000", + "longitude": "-98.32417000" + }, + { + "id": "75510", + "name": "Texcapa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.09228000", + "longitude": "-98.85403000" + }, + { + "id": "75512", + "name": "Texcatepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27655000", + "longitude": "-99.25375000" + }, + { + "id": "75523", + "name": "Tezapotla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.17381000", + "longitude": "-98.81242000" + }, + { + "id": "75529", + "name": "Tezontepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88063000", + "longitude": "-98.81972000" + }, + { + "id": "75530", + "name": "Tezontepec de Aldama", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19073000", + "longitude": "-99.27429000" + }, + { + "id": "75531", + "name": "Tezoquipa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05639000", + "longitude": "-99.20472000" + }, + { + "id": "75536", + "name": "Tianguistengo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72796000", + "longitude": "-98.63209000" + }, + { + "id": "75537", + "name": "Tianguistengo (La Romera)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91417000", + "longitude": "-99.32583000" + }, + { + "id": "75568", + "name": "Tiltepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31394000", + "longitude": "-98.68288000" + }, + { + "id": "75573", + "name": "Tinajas", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89739000", + "longitude": "-99.36662000" + }, + { + "id": "75595", + "name": "Tizayuca", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83721000", + "longitude": "-98.97607000" + }, + { + "id": "75611", + "name": "Tlacomulco", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15301000", + "longitude": "-98.12027000" + }, + { + "id": "75622", + "name": "Tlacpac", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14889000", + "longitude": "-98.21694000" + }, + { + "id": "75630", + "name": "Tlahuelilpan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13087000", + "longitude": "-99.22677000" + }, + { + "id": "75631", + "name": "Tlahuelompa (San Francisco Tlahuelompa)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65082000", + "longitude": "-98.57522000" + }, + { + "id": "75632", + "name": "Tlahuiltepa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89805000", + "longitude": "-98.96263000" + }, + { + "id": "75636", + "name": "Tlalchiyahualica", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97086000", + "longitude": "-98.39975000" + }, + { + "id": "75643", + "name": "Tlalminulpa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07491000", + "longitude": "-99.22220000" + }, + { + "id": "75661", + "name": "Tlamaco (San Gerónimo Tlamaco)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03472000", + "longitude": "-99.22917000" + }, + { + "id": "75668", + "name": "Tlanalapa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82525000", + "longitude": "-98.59449000" + }, + { + "id": "75670", + "name": "Tlanchinol", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03005000", + "longitude": "-98.64996000" + }, + { + "id": "75695", + "name": "Tlaxcalilla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37731000", + "longitude": "-99.81545000" + }, + { + "id": "75700", + "name": "Tlaxcoapan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09163000", + "longitude": "-99.22042000" + }, + { + "id": "75703", + "name": "Tlaxocoyucan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22895000", + "longitude": "-98.49034000" + }, + { + "id": "75720", + "name": "Tolcayuca", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94112000", + "longitude": "-98.91908000" + }, + { + "id": "75791", + "name": "Tula de Allende", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05161000", + "longitude": "-99.34397000" + }, + { + "id": "75792", + "name": "Tulancingo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.08355000", + "longitude": "-98.36288000" + }, + { + "id": "75793", + "name": "Tulancingo de Bravo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11983000", + "longitude": "-98.36049000" + }, + { + "id": "75801", + "name": "Tulipanes", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06028000", + "longitude": "-98.76722000" + }, + { + "id": "75809", + "name": "Tunititlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24938000", + "longitude": "-99.24433000" + }, + { + "id": "75871", + "name": "Unidad Habitacional Antonio Osorio de León (Bojay)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04389000", + "longitude": "-99.24472000" + }, + { + "id": "75876", + "name": "Unidad Minera 11 de Julio", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10472000", + "longitude": "-98.72278000" + }, + { + "id": "75878", + "name": "Unidades Habitacionales", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06389000", + "longitude": "-98.42056000" + }, + { + "id": "75957", + "name": "Ventoquipa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03361000", + "longitude": "-98.33778000" + }, + { + "id": "75972", + "name": "Vicente Guerrero", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16567000", + "longitude": "-99.05746000" + }, + { + "id": "75980", + "name": "Vicente Guerrero (San Javier)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94991000", + "longitude": "-98.90135000" + }, + { + "id": "76099", + "name": "Vito", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99014000", + "longitude": "-99.19898000" + }, + { + "id": "76147", + "name": "Xiquila", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07803000", + "longitude": "-98.44315000" + }, + { + "id": "76148", + "name": "Xiteje de Zapata", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09728000", + "longitude": "-99.38872000" + }, + { + "id": "76157", + "name": "Xochiatipan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.85794000", + "longitude": "-98.28206000" + }, + { + "id": "76158", + "name": "Xochiatipan de Castillo", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.83510000", + "longitude": "-98.28556000" + }, + { + "id": "76160", + "name": "Xochicoatlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79715000", + "longitude": "-98.63718000" + }, + { + "id": "76178", + "name": "Xochitlán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29585000", + "longitude": "-99.18741000" + }, + { + "id": "76191", + "name": "Xolostitla de Morelos (Xolostitla)", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06639000", + "longitude": "-98.63861000" + }, + { + "id": "76202", + "name": "Xoxolpa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.87574000", + "longitude": "-98.42386000" + }, + { + "id": "76210", + "name": "Yahualica", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91485000", + "longitude": "-98.37868000" + }, + { + "id": "76241", + "name": "Yolotepec", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38767000", + "longitude": "-99.07307000" + }, + { + "id": "76254", + "name": "Zacacuautla", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21500000", + "longitude": "-98.22887000" + }, + { + "id": "76258", + "name": "Zacamulpa", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00583000", + "longitude": "-99.25694000" + }, + { + "id": "76289", + "name": "Zacualtipanito", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15407000", + "longitude": "-98.79997000" + }, + { + "id": "76290", + "name": "Zacualtipán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65002000", + "longitude": "-98.65628000" + }, + { + "id": "76312", + "name": "Zapotlán de Juárez", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97709000", + "longitude": "-98.86420000" + }, + { + "id": "76328", + "name": "Zempoala", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93850000", + "longitude": "-98.66871000" + }, + { + "id": "76336", + "name": "Zimapan", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73814000", + "longitude": "-99.38180000" + }, + { + "id": "76356", + "name": "Zocea", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43760000", + "longitude": "-99.35742000" + }, + { + "id": "76371", + "name": "Zoquitipán", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90902000", + "longitude": "-98.43242000" + }, + { + "id": "76374", + "name": "Zothé", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36959000", + "longitude": "-99.71581000" + }, + { + "id": "76376", + "name": "Zotoluca", + "state_id": 3470, + "state_code": "HID", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61063000", + "longitude": "-98.51094000" + }, + { + "id": "68023", + "name": "Acachuén", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84715000", + "longitude": "-102.09272000" + }, + { + "id": "68031", + "name": "Acalpican de Morelos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01854000", + "longitude": "-102.34033000" + }, + { + "id": "68032", + "name": "Acambay", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95522000", + "longitude": "-99.84428000" + }, + { + "id": "68054", + "name": "Acatzingo (Acatzingo de la Piedra)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92389000", + "longitude": "-99.58861000" + }, + { + "id": "68063", + "name": "Acolman de Netzahualcóyotl", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63976000", + "longitude": "-98.90777000" + }, + { + "id": "68079", + "name": "Acuitlapilco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90873000", + "longitude": "-99.78464000" + }, + { + "id": "68082", + "name": "Aculco de Espinoza", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09867000", + "longitude": "-99.82757000" + }, + { + "id": "68104", + "name": "Agua Blanca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22056000", + "longitude": "-99.47056000" + }, + { + "id": "68107", + "name": "Agua Caliente", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90011000", + "longitude": "-100.17186000" + }, + { + "id": "68111", + "name": "Agua Escondida", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97893000", + "longitude": "-99.57829000" + }, + { + "id": "68133", + "name": "Ahuacatitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89414000", + "longitude": "-99.70867000" + }, + { + "id": "68134", + "name": "Ahuacatitlán Cuarto y Quinto Cuartel", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96222000", + "longitude": "-99.98694000" + }, + { + "id": "68178", + "name": "Alborada Jaltenco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66194000", + "longitude": "-99.06889000" + }, + { + "id": "68215", + "name": "Almoloya de Alquisiras", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84217000", + "longitude": "-99.86416000" + }, + { + "id": "68216", + "name": "Almoloya del Río", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16046000", + "longitude": "-99.48740000" + }, + { + "id": "68235", + "name": "Amanalco de Becerra", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31667000", + "longitude": "-100.01667000" + }, + { + "id": "68239", + "name": "Amatepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68222000", + "longitude": "-100.18583000" + }, + { + "id": "68252", + "name": "Amecameca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12384000", + "longitude": "-98.76649000" + }, + { + "id": "68260", + "name": "Ampliación San Mateo (Colonia Solidaridad)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61639000", + "longitude": "-99.14722000" + }, + { + "id": "68261", + "name": "Ampliación Tezoyuca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58057000", + "longitude": "-98.92053000" + }, + { + "id": "68301", + "name": "Apaxco de Ocampo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97512000", + "longitude": "-99.17112000" + }, + { + "id": "68334", + "name": "Arbolada los Sauces", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81583000", + "longitude": "-99.04417000" + }, + { + "id": "68346", + "name": "Arenal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38111000", + "longitude": "-98.94278000" + }, + { + "id": "68400", + "name": "Atenguillo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56361000", + "longitude": "-98.87639000" + }, + { + "id": "68407", + "name": "Atizapán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25000000", + "longitude": "-99.55000000" + }, + { + "id": "68411", + "name": "Atlacomulco de Fabela", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79919000", + "longitude": "-99.87500000" + }, + { + "id": "68418", + "name": "Atlatongo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66776000", + "longitude": "-98.90402000" + }, + { + "id": "68419", + "name": "Atlautla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02188000", + "longitude": "-98.77859000" + }, + { + "id": "68448", + "name": "Axapusco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72456000", + "longitude": "-98.75863000" + }, + { + "id": "68453", + "name": "Axotlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69417000", + "longitude": "-99.23944000" + }, + { + "id": "68461", + "name": "Ayapango", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12692000", + "longitude": "-98.79988000" + }, + { + "id": "68525", + "name": "Barrio Bordo Nuevo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37917000", + "longitude": "-99.67333000" + }, + { + "id": "68526", + "name": "Barrio Chiquichuca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32139000", + "longitude": "-100.21278000" + }, + { + "id": "68527", + "name": "Barrio Cuarto (La Loma)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76861000", + "longitude": "-99.67694000" + }, + { + "id": "68536", + "name": "Barrio de Arriba de San Juan Xoconusco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32040000", + "longitude": "-100.27020000" + }, + { + "id": "68537", + "name": "Barrio de Boyecha", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70778000", + "longitude": "-99.68444000" + }, + { + "id": "68538", + "name": "Barrio de Canales", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37333000", + "longitude": "-99.37556000" + }, + { + "id": "68539", + "name": "Barrio de Centro del Cerrillo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53694000", + "longitude": "-99.95417000" + }, + { + "id": "68540", + "name": "Barrio de Ensido", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49389000", + "longitude": "-99.37444000" + }, + { + "id": "68541", + "name": "Barrio de España", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86139000", + "longitude": "-99.08167000" + }, + { + "id": "68542", + "name": "Barrio de Guadalupe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23054000", + "longitude": "-98.93090000" + }, + { + "id": "68544", + "name": "Barrio de Jesús Fracción Primera", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36778000", + "longitude": "-99.68694000" + }, + { + "id": "68554", + "name": "Barrio de la Barranca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43583000", + "longitude": "-99.55833000" + }, + { + "id": "68545", + "name": "Barrio de México", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28250000", + "longitude": "-99.82833000" + }, + { + "id": "68547", + "name": "Barrio de Puentecillas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53558000", + "longitude": "-99.98463000" + }, + { + "id": "68548", + "name": "Barrio de San Isidro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52139000", + "longitude": "-99.95861000" + }, + { + "id": "68549", + "name": "Barrio de San Juan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41420000", + "longitude": "-99.53717000" + }, + { + "id": "68551", + "name": "Barrio de San Miguel", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51232000", + "longitude": "-99.95467000" + }, + { + "id": "68552", + "name": "Barrio de San Pedro la Cabecera", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56528000", + "longitude": "-99.75000000" + }, + { + "id": "68553", + "name": "Barrio de San Ramón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37361000", + "longitude": "-99.33111000" + }, + { + "id": "68555", + "name": "Barrio del Cajón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39139000", + "longitude": "-99.65806000" + }, + { + "id": "68556", + "name": "Barrio el Boncho", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42611000", + "longitude": "-100.10639000" + }, + { + "id": "68557", + "name": "Barrio el Vivero", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45306000", + "longitude": "-100.03528000" + }, + { + "id": "68558", + "name": "Barrio la Joya", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42000000", + "longitude": "-100.09972000" + }, + { + "id": "68559", + "name": "Barrio la Tenería", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69361000", + "longitude": "-99.79194000" + }, + { + "id": "68560", + "name": "Barrio los Tules", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42917000", + "longitude": "-100.07472000" + }, + { + "id": "68531", + "name": "Barrio San Joaquín el Junco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56417000", + "longitude": "-99.77333000" + }, + { + "id": "68532", + "name": "Barrio San Miguel Dorami", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44622000", + "longitude": "-99.34296000" + }, + { + "id": "68533", + "name": "Barrio Santa Cruz", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35139000", + "longitude": "-99.66278000" + }, + { + "id": "68534", + "name": "Barrio Tepetitlán Emilio Portes Gil", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65306000", + "longitude": "-99.88667000" + }, + { + "id": "68535", + "name": "Barrio Tlatenco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73917000", + "longitude": "-99.19167000" + }, + { + "id": "68571", + "name": "Bejucos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77802000", + "longitude": "-100.42778000" + }, + { + "id": "68572", + "name": "Belem", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63334000", + "longitude": "-98.79664000" + }, + { + "id": "68595", + "name": "Benito Juárez", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43765000", + "longitude": "-99.85384000" + }, + { + "id": "68620", + "name": "Bobashi de Guadalupe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87583000", + "longitude": "-99.91167000" + }, + { + "id": "68642", + "name": "Boshindó", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91922000", + "longitude": "-99.84075000" + }, + { + "id": "68645", + "name": "Bosques de la Magdalena", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35778000", + "longitude": "-98.94750000" + }, + { + "id": "68670", + "name": "Buenavista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60833000", + "longitude": "-99.16944000" + }, + { + "id": "68687", + "name": "Buenos Aires", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61745000", + "longitude": "-99.66790000" + }, + { + "id": "68876", + "name": "Cañada de Cisneros", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69534000", + "longitude": "-99.33570000" + }, + { + "id": "68877", + "name": "Cañada de Guadarrama", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31272000", + "longitude": "-99.78972000" + }, + { + "id": "68701", + "name": "Cabecera de Indígenas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37213000", + "longitude": "-100.13667000" + }, + { + "id": "68709", + "name": "Cacalomacan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25311000", + "longitude": "-99.70623000" + }, + { + "id": "68721", + "name": "Caja de Agua", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64329000", + "longitude": "-99.36497000" + }, + { + "id": "68738", + "name": "Calimaya", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16324000", + "longitude": "-99.61810000" + }, + { + "id": "68740", + "name": "Calixtlahuaca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33651000", + "longitude": "-99.68923000" + }, + { + "id": "68750", + "name": "Calvario Buenavista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70387000", + "longitude": "-99.95674000" + }, + { + "id": "68751", + "name": "Calvario del Carmen", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63562000", + "longitude": "-100.01030000" + }, + { + "id": "68783", + "name": "Canalejas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97867000", + "longitude": "-99.60548000" + }, + { + "id": "68808", + "name": "Capula", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87018000", + "longitude": "-99.96075000" + }, + { + "id": "68811", + "name": "Capulhuac de Mirafuentes", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19354000", + "longitude": "-99.46585000" + }, + { + "id": "68815", + "name": "Carapán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86003000", + "longitude": "-102.03644000" + }, + { + "id": "68849", + "name": "Casa Nueva", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83333000", + "longitude": "-99.20944000" + }, + { + "id": "68854", + "name": "Casas Viejas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15167000", + "longitude": "-100.10778000" + }, + { + "id": "68855", + "name": "Caserío de Cortés", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19861000", + "longitude": "-98.95444000" + }, + { + "id": "68887", + "name": "Cedro de la Manzana", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69213000", + "longitude": "-100.11656000" + }, + { + "id": "68892", + "name": "Celayita", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24113000", + "longitude": "-99.86142000" + }, + { + "id": "68919", + "name": "Cerritos del Pilar", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44508000", + "longitude": "-100.01909000" + }, + { + "id": "68935", + "name": "Cerro de San Francisco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37038000", + "longitude": "-99.35162000" + }, + { + "id": "68939", + "name": "Cerro del Murciélago", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28194000", + "longitude": "-99.75472000" + }, + { + "id": "68931", + "name": "Cerro La Calera", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18333000", + "longitude": "-99.81667000" + }, + { + "id": "68957", + "name": "Chalchihuapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97694000", + "longitude": "-99.57472000" + }, + { + "id": "68962", + "name": "Chalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26174000", + "longitude": "-98.89775000" + }, + { + "id": "68963", + "name": "Chalma", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93048000", + "longitude": "-99.43505000" + }, + { + "id": "68965", + "name": "Chalmita", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93433000", + "longitude": "-99.42325000" + }, + { + "id": "68977", + "name": "Chapa de Mota", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82420000", + "longitude": "-99.55252000" + }, + { + "id": "68982", + "name": "Chaparaco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96061000", + "longitude": "-102.26092000" + }, + { + "id": "68990", + "name": "Chapultepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20216000", + "longitude": "-99.56176000" + }, + { + "id": "69013", + "name": "Chiautla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54895000", + "longitude": "-98.88236000" + }, + { + "id": "69036", + "name": "Chicoloapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41687000", + "longitude": "-98.90202000" + }, + { + "id": "69040", + "name": "Chiconcuac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55939000", + "longitude": "-98.89884000" + }, + { + "id": "69066", + "name": "Chilchota", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84654000", + "longitude": "-102.11716000" + }, + { + "id": "69073", + "name": "Chiltepec de Hidalgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91266000", + "longitude": "-99.83450000" + }, + { + "id": "69077", + "name": "Chimalpa Viejo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44956000", + "longitude": "-99.34435000" + }, + { + "id": "69108", + "name": "Chosto de los Jarros", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86333000", + "longitude": "-99.91000000" + }, + { + "id": "69165", + "name": "Ciudad López Mateos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55793000", + "longitude": "-99.25675000" + }, + { + "id": "69173", + "name": "Ciudad Nezahualcoyotl", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40061000", + "longitude": "-99.01483000" + }, + { + "id": "69203", + "name": "Coacalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62923000", + "longitude": "-99.10689000" + }, + { + "id": "69221", + "name": "Coamilpa de Juárez", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19778000", + "longitude": "-99.44361000" + }, + { + "id": "69225", + "name": "Coatepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38485000", + "longitude": "-98.84546000" + }, + { + "id": "69228", + "name": "Coatepec Harinas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89492000", + "longitude": "-99.72153000" + }, + { + "id": "69239", + "name": "Cocotitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23336000", + "longitude": "-98.86596000" + }, + { + "id": "69265", + "name": "Colonia 2 de Septiembre", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70056000", + "longitude": "-99.11667000" + }, + { + "id": "69268", + "name": "Colonia 3 de Mayo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82726000", + "longitude": "-99.69304000" + }, + { + "id": "69269", + "name": "Colonia 3 de Mayo (La Cruz)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98083000", + "longitude": "-99.16361000" + }, + { + "id": "69271", + "name": "Colonia Adolfo López Mateos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40056000", + "longitude": "-99.45944000" + }, + { + "id": "69274", + "name": "Colonia Agrícola Analco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34972000", + "longitude": "-99.47500000" + }, + { + "id": "69277", + "name": "Colonia Agrícola Álvaro Obregón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22806000", + "longitude": "-99.55583000" + }, + { + "id": "69281", + "name": "Colonia Arboledas (San Andrés)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20250000", + "longitude": "-99.58083000" + }, + { + "id": "69282", + "name": "Colonia Aviación Autopan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37917000", + "longitude": "-99.69278000" + }, + { + "id": "69283", + "name": "Colonia Azteca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07806000", + "longitude": "-99.65417000" + }, + { + "id": "69405", + "name": "Colonia Álvaro Obregón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37691000", + "longitude": "-99.49484000" + }, + { + "id": "69284", + "name": "Colonia Bellavista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29820000", + "longitude": "-99.80879000" + }, + { + "id": "69290", + "name": "Colonia Cuauhtémoc", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25122000", + "longitude": "-99.79717000" + }, + { + "id": "69292", + "name": "Colonia Doctor Gustavo Baz", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41056000", + "longitude": "-99.92167000" + }, + { + "id": "69385", + "name": "Colonia el Mirador", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67167000", + "longitude": "-99.35722000" + }, + { + "id": "69388", + "name": "Colonia el Pirame", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24083000", + "longitude": "-99.47194000" + }, + { + "id": "69389", + "name": "Colonia el Refugio", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22694000", + "longitude": "-99.69417000" + }, + { + "id": "69391", + "name": "Colonia el Salado", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58389000", + "longitude": "-98.99139000" + }, + { + "id": "69296", + "name": "Colonia Emiliano Zapata", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39111000", + "longitude": "-99.52528000" + }, + { + "id": "69298", + "name": "Colonia Emiliano Zapata Ejido de Tenancingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95361000", + "longitude": "-99.55889000" + }, + { + "id": "69306", + "name": "Colonia Guadalupe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71306000", + "longitude": "-99.24972000" + }, + { + "id": "69307", + "name": "Colonia Guadalupe Victoria", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49917000", + "longitude": "-98.91917000" + }, + { + "id": "69308", + "name": "Colonia Guadalupe Victoria (La Capilla)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40222000", + "longitude": "-99.45417000" + }, + { + "id": "69309", + "name": "Colonia Gustavo Baz Prada", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42139000", + "longitude": "-99.01361000" + }, + { + "id": "69314", + "name": "Colonia Isidro Fabela", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30056000", + "longitude": "-99.52278000" + }, + { + "id": "69318", + "name": "Colonia Juárez", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99583000", + "longitude": "-99.14944000" + }, + { + "id": "69392", + "name": "Colonia la Asunción", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69083000", + "longitude": "-99.06417000" + }, + { + "id": "69395", + "name": "Colonia la Libertad", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18528000", + "longitude": "-99.50278000" + }, + { + "id": "69325", + "name": "Colonia Lázaro Cárdenas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51306000", + "longitude": "-98.92000000" + }, + { + "id": "69326", + "name": "Colonia Lázaro Cárdenas (Los Hornos)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63167000", + "longitude": "-99.15333000" + }, + { + "id": "69322", + "name": "Colonia Lindavista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49156000", + "longitude": "-99.12475000" + }, + { + "id": "69399", + "name": "Colonia los Aguiluchos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72611000", + "longitude": "-99.09028000" + }, + { + "id": "69400", + "name": "Colonia los Cedros", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31167000", + "longitude": "-99.54111000" + }, + { + "id": "69402", + "name": "Colonia los Remedios", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73444000", + "longitude": "-98.79111000" + }, + { + "id": "69333", + "name": "Colonia Morelos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63778000", + "longitude": "-99.33917000" + }, + { + "id": "69346", + "name": "Colonia Palma", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56444000", + "longitude": "-99.42417000" + }, + { + "id": "69360", + "name": "Colonia Río Lerma (Tic Ti)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80556000", + "longitude": "-99.89722000" + }, + { + "id": "69354", + "name": "Colonia Reforma Tlalmimilolpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38806000", + "longitude": "-99.48889000" + }, + { + "id": "69357", + "name": "Colonia Ricardo Flores Magón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26833000", + "longitude": "-99.75833000" + }, + { + "id": "69359", + "name": "Colonia Rincón Villa del Valle", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20966000", + "longitude": "-100.11917000" + }, + { + "id": "69363", + "name": "Colonia San Francisco de Asís", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57861000", + "longitude": "-99.75444000" + }, + { + "id": "69368", + "name": "Colonia San Ramón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96833000", + "longitude": "-99.57222000" + }, + { + "id": "69373", + "name": "Colonia Tulteca Teopan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56139000", + "longitude": "-98.84417000" + }, + { + "id": "69379", + "name": "Colonia Wenceslao Labra", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82773000", + "longitude": "-99.12435000" + }, + { + "id": "69409", + "name": "Colorines", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17829000", + "longitude": "-100.21817000" + }, + { + "id": "69434", + "name": "Concepción Caro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77139000", + "longitude": "-99.90917000" + }, + { + "id": "69440", + "name": "Concepción del Monte", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65128000", + "longitude": "-100.15440000" + }, + { + "id": "69438", + "name": "Concepción Jolalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58399000", + "longitude": "-98.84643000" + }, + { + "id": "69442", + "name": "Concepción la Venta", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69144000", + "longitude": "-100.15181000" + }, + { + "id": "69448", + "name": "Conejeras", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01271000", + "longitude": "-99.96202000" + }, + { + "id": "69455", + "name": "Conjunto Habitacional Ecológico SUTEYM", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36889000", + "longitude": "-99.77861000" + }, + { + "id": "69458", + "name": "Conjunto Urbano la Loma I", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32639000", + "longitude": "-99.73194000" + }, + { + "id": "69467", + "name": "Contepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95432000", + "longitude": "-100.16385000" + }, + { + "id": "69501", + "name": "Coscomate del Progreso", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93416000", + "longitude": "-99.51902000" + }, + { + "id": "69521", + "name": "Coyotepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77722000", + "longitude": "-99.21295000" + }, + { + "id": "69530", + "name": "Cozotlán Norte", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70833000", + "longitude": "-98.86000000" + }, + { + "id": "69552", + "name": "Cuadrilla de Dolores", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14000000", + "longitude": "-100.06944000" + }, + { + "id": "69551", + "name": "Cuadrilla Vieja", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51205000", + "longitude": "-99.98692000" + }, + { + "id": "69590", + "name": "Cuautitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67052000", + "longitude": "-99.17989000" + }, + { + "id": "69592", + "name": "Cuautlacingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69405000", + "longitude": "-98.78385000" + }, + { + "id": "69610", + "name": "Cuecuecuatitla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01349000", + "longitude": "-98.84351000" + }, + { + "id": "69613", + "name": "Cuendo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80028000", + "longitude": "-99.94778000" + }, + { + "id": "69679", + "name": "Denjhi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92116000", + "longitude": "-99.53561000" + }, + { + "id": "69682", + "name": "Detiña (San Antonio Detiña)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97028000", + "longitude": "-99.88389000" + }, + { + "id": "69688", + "name": "Dios Padre", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61474000", + "longitude": "-100.06499000" + }, + { + "id": "69702", + "name": "Dolores", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06059000", + "longitude": "-100.32211000" + }, + { + "id": "69704", + "name": "Dolores Hidalgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65528000", + "longitude": "-99.92639000" + }, + { + "id": "69715", + "name": "Dongu", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84295000", + "longitude": "-99.58651000" + }, + { + "id": "69723", + "name": "Dotegiare", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70705000", + "longitude": "-100.04354000" + }, + { + "id": "69725", + "name": "Doxhicho", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89999000", + "longitude": "-99.55727000" + }, + { + "id": "69728", + "name": "Doxtejé Centro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97035000", + "longitude": "-99.95324000" + }, + { + "id": "69726", + "name": "Doxteje Barrio Primero", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95972000", + "longitude": "-99.95861000" + }, + { + "id": "69727", + "name": "Doxteje Centro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97528000", + "longitude": "-99.95472000" + }, + { + "id": "69752", + "name": "Ecatepec de Morelos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60378000", + "longitude": "-99.05514000" + }, + { + "id": "69753", + "name": "Ecatzingo de Hidalgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95508000", + "longitude": "-98.75198000" + }, + { + "id": "69802", + "name": "Ejido de Coscomate del Progreso", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93379000", + "longitude": "-99.54720000" + }, + { + "id": "69803", + "name": "Ejido de Dolores", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43083000", + "longitude": "-99.61278000" + }, + { + "id": "69804", + "name": "Ejido de Guadalupe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63765000", + "longitude": "-99.27178000" + }, + { + "id": "69807", + "name": "Ejido de la Finca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88635000", + "longitude": "-99.62693000" + }, + { + "id": "69805", + "name": "Ejido de Mozoquilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42417000", + "longitude": "-99.52833000" + }, + { + "id": "69806", + "name": "Ejido de San Mateo Coapexco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94889000", + "longitude": "-99.64249000" + }, + { + "id": "69808", + "name": "Ejido del Tejocote", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48474000", + "longitude": "-99.27847000" + }, + { + "id": "69809", + "name": "Ejido del Tunal Nenaxi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74389000", + "longitude": "-99.90889000" + }, + { + "id": "69810", + "name": "Ejido el Castillo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43583000", + "longitude": "-99.30583000" + }, + { + "id": "69817", + "name": "Ejido la Soledad", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64500000", + "longitude": "-100.10639000" + }, + { + "id": "69773", + "name": "Ejido Loma de Malacota", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65753000", + "longitude": "-99.67122000" + }, + { + "id": "69777", + "name": "Ejido Miraflores", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57000000", + "longitude": "-99.39750000" + }, + { + "id": "69783", + "name": "Ejido Palma (Ejido San Francisco)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56889000", + "longitude": "-99.40889000" + }, + { + "id": "69788", + "name": "Ejido San Cristóbal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54250000", + "longitude": "-98.89417000" + }, + { + "id": "69789", + "name": "Ejido San Diego", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41329000", + "longitude": "-99.82537000" + }, + { + "id": "69791", + "name": "Ejido San Lorenzo Cuauhtenco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30139000", + "longitude": "-99.75028000" + }, + { + "id": "69831", + "name": "El Arco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22528000", + "longitude": "-100.13167000" + }, + { + "id": "70266", + "name": "El Águila (La Mesa)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16694000", + "longitude": "-99.40639000" + }, + { + "id": "69853", + "name": "El Cabi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18986000", + "longitude": "-98.85371000" + }, + { + "id": "69875", + "name": "El Carmen (El Desierto del Carmen)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92028000", + "longitude": "-99.55667000" + }, + { + "id": "69878", + "name": "El Carmen Ocotepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68722000", + "longitude": "-99.97417000" + }, + { + "id": "69941", + "name": "El Cóporo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28306000", + "longitude": "-99.83528000" + }, + { + "id": "69894", + "name": "El Cerrillo Vista Hermosa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32337000", + "longitude": "-99.54250000" + }, + { + "id": "69895", + "name": "El Cerrito", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35528000", + "longitude": "-99.34833000" + }, + { + "id": "69914", + "name": "El Colorado", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09639000", + "longitude": "-99.76278000" + }, + { + "id": "69915", + "name": "El Coloso", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09778000", + "longitude": "-99.59778000" + }, + { + "id": "69921", + "name": "El Contadero de Matamoros", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23734000", + "longitude": "-99.80990000" + }, + { + "id": "69938", + "name": "El Curtidor", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29167000", + "longitude": "-99.83500000" + }, + { + "id": "69954", + "name": "El Esclavo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67667000", + "longitude": "-99.37139000" + }, + { + "id": "69962", + "name": "El Espinal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46756000", + "longitude": "-100.06051000" + }, + { + "id": "69980", + "name": "El Habillal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00699000", + "longitude": "-102.37263000" + }, + { + "id": "69982", + "name": "El Hielo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42583000", + "longitude": "-99.35556000" + }, + { + "id": "69996", + "name": "El Jacal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40500000", + "longitude": "-100.08944000" + }, + { + "id": "70025", + "name": "El Llano del Compromiso", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25472000", + "longitude": "-99.47917000" + }, + { + "id": "70024", + "name": "El Llano Santa María", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78389000", + "longitude": "-99.08639000" + }, + { + "id": "70030", + "name": "El Magueyal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94250000", + "longitude": "-99.57462000" + }, + { + "id": "70042", + "name": "El Mogote", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16583000", + "longitude": "-99.91444000" + }, + { + "id": "70069", + "name": "El Obraje", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72269000", + "longitude": "-99.96259000" + }, + { + "id": "70070", + "name": "El Ocotal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67983000", + "longitude": "-99.47008000" + }, + { + "id": "70075", + "name": "El Oro de Hidalgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80272000", + "longitude": "-100.13081000" + }, + { + "id": "70077", + "name": "El Palacio", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35139000", + "longitude": "-99.35667000" + }, + { + "id": "70084", + "name": "El Palmito", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91733000", + "longitude": "-99.68127000" + }, + { + "id": "70097", + "name": "El Pedregal de Guadalupe Hidalgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25278000", + "longitude": "-99.46500000" + }, + { + "id": "70103", + "name": "El Pilar", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24201000", + "longitude": "-101.40209000" + }, + { + "id": "70104", + "name": "El Pino", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35139000", + "longitude": "-98.94833000" + }, + { + "id": "70109", + "name": "El Plan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37452000", + "longitude": "-99.80049000" + }, + { + "id": "70121", + "name": "El Porvenir I", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31694000", + "longitude": "-99.72889000" + }, + { + "id": "70124", + "name": "El Potrero", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30625000", + "longitude": "-99.99393000" + }, + { + "id": "70126", + "name": "El Potrero de San Diego", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48899000", + "longitude": "-100.08210000" + }, + { + "id": "70135", + "name": "El Progreso Hidalgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84639000", + "longitude": "-99.61417000" + }, + { + "id": "70140", + "name": "El Puerto Magú", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68846000", + "longitude": "-99.37290000" + }, + { + "id": "70147", + "name": "El Recodo de San José Axalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20278000", + "longitude": "-98.90278000" + }, + { + "id": "70164", + "name": "El Rincón de la Candelaria", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79000000", + "longitude": "-99.84306000" + }, + { + "id": "70165", + "name": "El Rincón de los Perales", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54222000", + "longitude": "-99.82806000" + }, + { + "id": "70170", + "name": "El Rosal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10126000", + "longitude": "-99.68555000" + }, + { + "id": "70186", + "name": "El Salitre", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95250000", + "longitude": "-99.58972000" + }, + { + "id": "70217", + "name": "El Tepetatal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34581000", + "longitude": "-99.77086000" + }, + { + "id": "70223", + "name": "El Terrero", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79028000", + "longitude": "-99.64528000" + }, + { + "id": "70286", + "name": "Emiliano Zapata", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34361000", + "longitude": "-98.97472000" + }, + { + "id": "70292", + "name": "Emiliano Zapata (San José Bata)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91111000", + "longitude": "-99.00667000" + }, + { + "id": "70293", + "name": "Emiliano Zapata (Santo Domingo)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57972000", + "longitude": "-99.78806000" + }, + { + "id": "70297", + "name": "Emilio Portes Gil", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64444000", + "longitude": "-99.91667000" + }, + { + "id": "70312", + "name": "Epitacio Huerta", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13493000", + "longitude": "-100.29321000" + }, + { + "id": "70376", + "name": "Etúcuaro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89286000", + "longitude": "-102.12945000" + }, + { + "id": "70382", + "name": "Ex-Hacienda de Guadalupe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80889000", + "longitude": "-98.97250000" + }, + { + "id": "70388", + "name": "Ex-hacienda de Xalpa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82150000", + "longitude": "-99.18275000" + }, + { + "id": "70381", + "name": "Ex-Hacienda Santa Inés", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70667000", + "longitude": "-99.07250000" + }, + { + "id": "70386", + "name": "Ex-Rancho San Dimas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17389000", + "longitude": "-99.56528000" + }, + { + "id": "70498", + "name": "Fábrica Concepción", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63445000", + "longitude": "-100.13596000" + }, + { + "id": "70462", + "name": "Fracción San Roque (El Prieto)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68722000", + "longitude": "-99.17222000" + }, + { + "id": "70416", + "name": "Fraccionamiento Colinas del Sol", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37222000", + "longitude": "-99.74028000" + }, + { + "id": "70423", + "name": "Fraccionamiento Hacienda del Bosque", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72667000", + "longitude": "-98.96861000" + }, + { + "id": "70453", + "name": "Fraccionamiento la Trinidad", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82917000", + "longitude": "-99.08278000" + }, + { + "id": "70436", + "name": "Fraccionamiento Real de San Pablo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38944000", + "longitude": "-99.64861000" + }, + { + "id": "70439", + "name": "Fraccionamiento Rinconada del Valle", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41111000", + "longitude": "-99.57417000" + }, + { + "id": "70460", + "name": "Fraccionamiento y Club de Golf los Encinos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28917000", + "longitude": "-99.48000000" + }, + { + "id": "70489", + "name": "Fresno Nichi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56694000", + "longitude": "-99.94889000" + }, + { + "id": "70496", + "name": "Fuentes del Valle", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63250000", + "longitude": "-99.13861000" + }, + { + "id": "70507", + "name": "Galaxias Toluca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39806000", + "longitude": "-99.65000000" + }, + { + "id": "70510", + "name": "Galeana", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03585000", + "longitude": "-101.57150000" + }, + { + "id": "70519", + "name": "Ganzda", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99000000", + "longitude": "-99.84750000" + }, + { + "id": "70564", + "name": "Granjas Ampliación Santa Rosa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59278000", + "longitude": "-98.96667000" + }, + { + "id": "70577", + "name": "Guadalupe Buenavista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61194000", + "longitude": "-100.12720000" + }, + { + "id": "70578", + "name": "Guadalupe Cachi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60111000", + "longitude": "-99.82500000" + }, + { + "id": "70580", + "name": "Guadalupe Coté", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61075000", + "longitude": "-99.98499000" + }, + { + "id": "70594", + "name": "Guadalupe Totoltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34833000", + "longitude": "-99.56417000" + }, + { + "id": "70637", + "name": "Gunyo Poniente (San José Gunyo)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11149000", + "longitude": "-99.83861000" + }, + { + "id": "70730", + "name": "Huancito", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84889000", + "longitude": "-102.06784000" + }, + { + "id": "70761", + "name": "Huehuetoca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82819000", + "longitude": "-99.20370000" + }, + { + "id": "70768", + "name": "Huemetla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71500000", + "longitude": "-99.73583000" + }, + { + "id": "70782", + "name": "Hueypoxtla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91301000", + "longitude": "-99.07384000" + }, + { + "id": "70791", + "name": "Huilango", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68056000", + "longitude": "-99.25639000" + }, + { + "id": "70814", + "name": "Huitzoltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76737000", + "longitude": "-99.80014000" + }, + { + "id": "70818", + "name": "Huixquilucan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35985000", + "longitude": "-99.35016000" + }, + { + "id": "70819", + "name": "Huixquilucan de Degollado", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36028000", + "longitude": "-99.34980000" + }, + { + "id": "70836", + "name": "Ignacio Allende", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34426000", + "longitude": "-99.36146000" + }, + { + "id": "70929", + "name": "Ixtapaluca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31556000", + "longitude": "-98.88284000" + }, + { + "id": "70931", + "name": "Ixtapan de la Sal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84369000", + "longitude": "-99.67671000" + }, + { + "id": "70932", + "name": "Ixtapan del Oro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26303000", + "longitude": "-100.26459000" + }, + { + "id": "70940", + "name": "Ixtlahuaca de Cuauhtémoc", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88139000", + "longitude": "-98.86028000" + }, + { + "id": "70941", + "name": "Ixtlahuaca de Rayón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56889000", + "longitude": "-99.76694000" + }, + { + "id": "70960", + "name": "Jacona de Plancarte", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95232000", + "longitude": "-102.30781000" + }, + { + "id": "70974", + "name": "Jalmolonga (La Hacienda)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91835000", + "longitude": "-99.49407000" + }, + { + "id": "70978", + "name": "Jalpa de los Baños", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67833000", + "longitude": "-99.87389000" + }, + { + "id": "70984", + "name": "Jaltenco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75298000", + "longitude": "-99.09390000" + }, + { + "id": "70999", + "name": "Janambo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20642000", + "longitude": "-101.52644000" + }, + { + "id": "71000", + "name": "Janamuato", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09961000", + "longitude": "-101.58540000" + }, + { + "id": "71023", + "name": "Jesús Carranza (Rancho de Jesús)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94528000", + "longitude": "-99.63056000" + }, + { + "id": "71036", + "name": "Jesús del Monte", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37500000", + "longitude": "-99.29444000" + }, + { + "id": "71027", + "name": "Jesús María", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41773000", + "longitude": "-99.99696000" + }, + { + "id": "71039", + "name": "Jicaltepec Autopan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37167000", + "longitude": "-99.64083000" + }, + { + "id": "71040", + "name": "Jicaltepec Cuexcontitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37306000", + "longitude": "-99.62750000" + }, + { + "id": "71045", + "name": "Jilotepec de Molina Enríquez", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95194000", + "longitude": "-99.53278000" + }, + { + "id": "71046", + "name": "Jilotzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86889000", + "longitude": "-99.06194000" + }, + { + "id": "71056", + "name": "Jiquipilco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55644000", + "longitude": "-99.60833000" + }, + { + "id": "71067", + "name": "Jocotitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70991000", + "longitude": "-99.78867000" + }, + { + "id": "71083", + "name": "Joquicingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05032000", + "longitude": "-99.53375000" + }, + { + "id": "71084", + "name": "Jorge Jiménez Cantú", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30972000", + "longitude": "-98.84667000" + }, + { + "id": "71085", + "name": "Jorobas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82389000", + "longitude": "-99.24833000" + }, + { + "id": "71132", + "name": "Juchitepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10059000", + "longitude": "-98.87880000" + }, + { + "id": "71169", + "name": "La Albarrada (San Francisco la Albarrada)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06750000", + "longitude": "-100.07528000" + }, + { + "id": "71207", + "name": "La Cañada", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48639000", + "longitude": "-99.59889000" + }, + { + "id": "71187", + "name": "La Cabecera", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35611000", + "longitude": "-99.74806000" + }, + { + "id": "71188", + "name": "La Cabecera Concepción", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70361000", + "longitude": "-99.94111000" + }, + { + "id": "71192", + "name": "La Calle", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28628000", + "longitude": "-101.63679000" + }, + { + "id": "71194", + "name": "La Campanilla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50983000", + "longitude": "-99.94230000" + }, + { + "id": "71198", + "name": "La Candelaria Tlapala", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24042000", + "longitude": "-98.84766000" + }, + { + "id": "71199", + "name": "La Cantera", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86375000", + "longitude": "-102.40838000" + }, + { + "id": "71204", + "name": "La Caridad", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94778000", + "longitude": "-99.83694000" + }, + { + "id": "71217", + "name": "La Ciénega", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95611000", + "longitude": "-99.58139000" + }, + { + "id": "71220", + "name": "La Colonia", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14444000", + "longitude": "-98.78667000" + }, + { + "id": "71225", + "name": "La Compañía", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16460000", + "longitude": "-100.07966000" + }, + { + "id": "71227", + "name": "La Comunidad", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02111000", + "longitude": "-99.57611000" + }, + { + "id": "71233", + "name": "La Concepción", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69611000", + "longitude": "-99.30028000" + }, + { + "id": "71235", + "name": "La Concepción Coatipac (La Conchita)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18188000", + "longitude": "-99.56833000" + }, + { + "id": "71238", + "name": "La Concepción de Hidalgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45054000", + "longitude": "-99.53139000" + }, + { + "id": "71239", + "name": "La Concepción de los Baños", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68249000", + "longitude": "-99.86104000" + }, + { + "id": "71236", + "name": "La Concepción Enyege", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56472000", + "longitude": "-99.84139000" + }, + { + "id": "71237", + "name": "La Concepción Xochicuautla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38226000", + "longitude": "-99.44050000" + }, + { + "id": "71245", + "name": "La Constitución Toltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34861000", + "longitude": "-99.54917000" + }, + { + "id": "71253", + "name": "La Cruz y Carrizal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83021000", + "longitude": "-99.42168000" + }, + { + "id": "71270", + "name": "La Esperanza", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68377000", + "longitude": "-99.51575000" + }, + { + "id": "71283", + "name": "La Estancia Sector Uno (La Estancia)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87056000", + "longitude": "-99.79167000" + }, + { + "id": "71290", + "name": "La Finca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89047000", + "longitude": "-99.64028000" + }, + { + "id": "71303", + "name": "La Glorieta", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41154000", + "longitude": "-99.38562000" + }, + { + "id": "71309", + "name": "La Guadalupana", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55414000", + "longitude": "-99.90922000" + }, + { + "id": "71315", + "name": "La Herradura", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04000000", + "longitude": "-99.58472000" + }, + { + "id": "71333", + "name": "La Joya", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27639000", + "longitude": "-99.75889000" + }, + { + "id": "71365", + "name": "La Loma", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01966000", + "longitude": "-100.01027000" + }, + { + "id": "71368", + "name": "La Loma Cuexcontitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38000000", + "longitude": "-99.64889000" + }, + { + "id": "71381", + "name": "La Magdalena", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94796000", + "longitude": "-99.99947000" + }, + { + "id": "71382", + "name": "La Magdalena Chichicaspa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41237000", + "longitude": "-99.32555000" + }, + { + "id": "71387", + "name": "La Magdalena de los Reyes (La Magdalena)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18972000", + "longitude": "-99.41000000" + }, + { + "id": "71383", + "name": "La Magdalena Tenexpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46333000", + "longitude": "-99.58861000" + }, + { + "id": "71389", + "name": "La Mesa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58748000", + "longitude": "-100.17373000" + }, + { + "id": "71392", + "name": "La Mesa de Chosto", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85250000", + "longitude": "-99.89028000" + }, + { + "id": "71433", + "name": "La Pastoría", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54306000", + "longitude": "-98.91111000" + }, + { + "id": "71451", + "name": "La Planada", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78129000", + "longitude": "-99.18267000" + }, + { + "id": "71452", + "name": "La Planada (El Arenal)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33333000", + "longitude": "-99.67694000" + }, + { + "id": "71459", + "name": "La Presita Segundo Cuartel", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16278000", + "longitude": "-99.87278000" + }, + { + "id": "71462", + "name": "La Providencia", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75833000", + "longitude": "-99.14667000" + }, + { + "id": "71466", + "name": "La Puerta del Pilar", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46018000", + "longitude": "-100.01577000" + }, + { + "id": "71468", + "name": "La Purificación", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52441000", + "longitude": "-98.81731000" + }, + { + "id": "71480", + "name": "La Rosa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48519000", + "longitude": "-99.32984000" + }, + { + "id": "71496", + "name": "La Soledad Barrio", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09194000", + "longitude": "-99.82306000" + }, + { + "id": "71510", + "name": "La Trinidad", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96639000", + "longitude": "-99.58083000" + }, + { + "id": "71536", + "name": "La Y", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39806000", + "longitude": "-99.58972000" + }, + { + "id": "71555", + "name": "Laguna de Tabernillas (El Resbaloso)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46139000", + "longitude": "-99.87833000" + }, + { + "id": "71604", + "name": "Las Huertas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97222000", + "longitude": "-99.55611000" + }, + { + "id": "71615", + "name": "Las Manzanas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95069000", + "longitude": "-99.56109000" + }, + { + "id": "71631", + "name": "Las Peñas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44972000", + "longitude": "-99.99944000" + }, + { + "id": "71633", + "name": "Las Pintas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89667000", + "longitude": "-98.88694000" + }, + { + "id": "71636", + "name": "Las Ranas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20860000", + "longitude": "-101.47810000" + }, + { + "id": "71638", + "name": "Las Rosas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54631000", + "longitude": "-100.15986000" + }, + { + "id": "71664", + "name": "Lerma de Villada", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28881000", + "longitude": "-99.51163000" + }, + { + "id": "71695", + "name": "Llano de la Y", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40278000", + "longitude": "-99.61639000" + }, + { + "id": "71696", + "name": "Llano de las Flores (Barrio del Hueso)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43583000", + "longitude": "-99.32250000" + }, + { + "id": "71692", + "name": "Llano de Zacapexco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70405000", + "longitude": "-99.48507000" + }, + { + "id": "71684", + "name": "Llano Grande", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82733000", + "longitude": "-99.76774000" + }, + { + "id": "71708", + "name": "Loma Alta", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68944000", + "longitude": "-99.44917000" + }, + { + "id": "71710", + "name": "Loma Alta Taxhimay", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84222000", + "longitude": "-99.40806000" + }, + { + "id": "71716", + "name": "Loma Bonita", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18722000", + "longitude": "-100.21500000" + }, + { + "id": "71726", + "name": "Loma de Guadalupe (La Biznaga)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65219000", + "longitude": "-99.36873000" + }, + { + "id": "71728", + "name": "Loma de Juárez", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43523000", + "longitude": "-100.09020000" + }, + { + "id": "71729", + "name": "Loma de San Francisco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28333000", + "longitude": "-99.80917000" + }, + { + "id": "71730", + "name": "Loma de San José", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64222000", + "longitude": "-99.32778000" + }, + { + "id": "71731", + "name": "Loma de San Miguel", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34194000", + "longitude": "-99.79167000" + }, + { + "id": "71739", + "name": "Loma del Río", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60056000", + "longitude": "-99.35056000" + }, + { + "id": "71720", + "name": "Loma Larga", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62750000", + "longitude": "-99.34611000" + }, + { + "id": "71721", + "name": "Loma Larga (Barrio de Loma Larga)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86722000", + "longitude": "-99.11611000" + }, + { + "id": "71744", + "name": "Lomas de Altavista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36139000", + "longitude": "-98.94472000" + }, + { + "id": "71751", + "name": "Lomas de San Pablo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20250000", + "longitude": "-98.91778000" + }, + { + "id": "71752", + "name": "Lomas de San Sebastián", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38206000", + "longitude": "-98.93320000" + }, + { + "id": "71755", + "name": "Lomas de Tenopalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70232000", + "longitude": "-99.11237000" + }, + { + "id": "71771", + "name": "Los Arana", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70981000", + "longitude": "-99.50222000" + }, + { + "id": "71780", + "name": "Los Berros", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39771000", + "longitude": "-100.04840000" + }, + { + "id": "71807", + "name": "Los Hucuares", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89916000", + "longitude": "-102.49759000" + }, + { + "id": "71823", + "name": "Los Nogales", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85734000", + "longitude": "-102.15612000" + }, + { + "id": "71842", + "name": "Los Remedios", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97810000", + "longitude": "-102.67954000" + }, + { + "id": "71844", + "name": "Los Reyes", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68524000", + "longitude": "-99.76450000" + }, + { + "id": "71847", + "name": "Los Reyes Acaquilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36357000", + "longitude": "-98.97707000" + }, + { + "id": "71848", + "name": "Los Reyes Acatlixhuayán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20889000", + "longitude": "-98.88242000" + }, + { + "id": "71861", + "name": "Los Saucos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16520000", + "longitude": "-99.99895000" + }, + { + "id": "71884", + "name": "Luvianos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94554000", + "longitude": "-100.42448000" + }, + { + "id": "71922", + "name": "Magdalena Atlicpac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36906000", + "longitude": "-98.94935000" + }, + { + "id": "71945", + "name": "Malinalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94847000", + "longitude": "-99.49619000" + }, + { + "id": "71957", + "name": "Manto del Río Ejido", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84008000", + "longitude": "-99.92729000" + }, + { + "id": "71969", + "name": "Manzana Quinta (La Cañada)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54222000", + "longitude": "-99.60250000" + }, + { + "id": "71970", + "name": "Manzana Segunda", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56722000", + "longitude": "-99.59389000" + }, + { + "id": "71971", + "name": "Manzana Sexta Parte Centro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52750000", + "longitude": "-99.60528000" + }, + { + "id": "71972", + "name": "Manzana Tercera de Santa Cruz Tepexpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56917000", + "longitude": "-99.70361000" + }, + { + "id": "72025", + "name": "Mavoro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70417000", + "longitude": "-99.82222000" + }, + { + "id": "72028", + "name": "Maxtleca de Galeana", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02889000", + "longitude": "-99.55722000" + }, + { + "id": "72034", + "name": "Mayorazgo de León", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46889000", + "longitude": "-99.74365000" + }, + { + "id": "72069", + "name": "Melchor Ocampo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70186000", + "longitude": "-99.14485000" + }, + { + "id": "72088", + "name": "Metepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25934000", + "longitude": "-99.60175000" + }, + { + "id": "72100", + "name": "Mexicaltzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21130000", + "longitude": "-99.58469000" + }, + { + "id": "72103", + "name": "Mextepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46118000", + "longitude": "-99.89126000" + }, + { + "id": "72104", + "name": "Mezapa la Fábrica", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17556000", + "longitude": "-99.44528000" + }, + { + "id": "72142", + "name": "Mina México", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41014000", + "longitude": "-99.72771000" + }, + { + "id": "72143", + "name": "Mina Vieja", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55250000", + "longitude": "-99.94389000" + }, + { + "id": "72152", + "name": "Miraflores", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22210000", + "longitude": "-98.80741000" + }, + { + "id": "72183", + "name": "Molino Abajo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44972000", + "longitude": "-99.60222000" + }, + { + "id": "72198", + "name": "Monte Calvario", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10444000", + "longitude": "-99.59528000" + }, + { + "id": "72210", + "name": "Montecillo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45711000", + "longitude": "-98.90835000" + }, + { + "id": "72233", + "name": "Morelos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74542000", + "longitude": "-99.64687000" + }, + { + "id": "72290", + "name": "Naucalpan de Juárez", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47851000", + "longitude": "-99.23963000" + }, + { + "id": "72311", + "name": "Nepantla de Sor Juana Inés de la Cruz", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98028000", + "longitude": "-98.84083000" + }, + { + "id": "72327", + "name": "Nicolás Romero", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64177000", + "longitude": "-99.30680000" + }, + { + "id": "72347", + "name": "Nopaltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77829000", + "longitude": "-98.71046000" + }, + { + "id": "72358", + "name": "Nueva Ameyalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29790000", + "longitude": "-99.50483000" + }, + { + "id": "72374", + "name": "Nueva Santa Rosa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59028000", + "longitude": "-98.96000000" + }, + { + "id": "72449", + "name": "Ocopulco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58972000", + "longitude": "-98.89694000" + }, + { + "id": "72463", + "name": "Ocoyoacac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27127000", + "longitude": "-99.45787000" + }, + { + "id": "72468", + "name": "Octeyuco Dos Mil", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96333000", + "longitude": "-99.58806000" + }, + { + "id": "72470", + "name": "Ocuilan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99043000", + "longitude": "-99.40910000" + }, + { + "id": "72471", + "name": "Ocuilan de Arteaga", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97784000", + "longitude": "-99.41986000" + }, + { + "id": "72474", + "name": "Ocumicho", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79654000", + "longitude": "-102.22169000" + }, + { + "id": "72485", + "name": "Ojo de Agua", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68028000", + "longitude": "-99.01000000" + }, + { + "id": "72542", + "name": "Otumba", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69985000", + "longitude": "-98.75638000" + }, + { + "id": "72543", + "name": "Otzoloapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11728000", + "longitude": "-100.29684000" + }, + { + "id": "72544", + "name": "Otzolotepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43526000", + "longitude": "-99.54407000" + }, + { + "id": "72554", + "name": "Oxtotipac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65521000", + "longitude": "-98.79319000" + }, + { + "id": "72560", + "name": "Ozumba de Alzate", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03689000", + "longitude": "-98.79516000" + }, + { + "id": "72583", + "name": "Palizada", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50611000", + "longitude": "-100.10033000" + }, + { + "id": "72588", + "name": "Palmar Chico", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.69593000", + "longitude": "-100.36852000" + }, + { + "id": "72600", + "name": "Palmillas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69361000", + "longitude": "-99.95028000" + }, + { + "id": "72615", + "name": "Palos Amarillos (Palos Amarillos Yebuciví)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53944000", + "longitude": "-99.91667000" + }, + { + "id": "72633", + "name": "Papalotla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56341000", + "longitude": "-98.85681000" + }, + { + "id": "72647", + "name": "Paraje el Mirador", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39944000", + "longitude": "-99.32694000" + }, + { + "id": "72648", + "name": "Paraje la Pera", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38056000", + "longitude": "-99.34500000" + }, + { + "id": "72646", + "name": "Paraje Trejo (El Chaparral)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40556000", + "longitude": "-99.31222000" + }, + { + "id": "72669", + "name": "Paseos de San Juan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78194000", + "longitude": "-99.01750000" + }, + { + "id": "72706", + "name": "Pathé", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92695000", + "longitude": "-99.83957000" + }, + { + "id": "72809", + "name": "Playa Azul", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98170000", + "longitude": "-102.34761000" + }, + { + "id": "72817", + "name": "Plaza Nueva", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92944000", + "longitude": "-99.43444000" + }, + { + "id": "72843", + "name": "Polígonos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41612000", + "longitude": "-98.99091000" + }, + { + "id": "72838", + "name": "Polotitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21988000", + "longitude": "-99.82205000" + }, + { + "id": "72839", + "name": "Polotitlán de la Ilustración", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22530000", + "longitude": "-99.81537000" + }, + { + "id": "72841", + "name": "Polvillos (San Bartolo Quinta Sección)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23611000", + "longitude": "-100.08000000" + }, + { + "id": "72849", + "name": "Popo Park", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06510000", + "longitude": "-98.78087000" + }, + { + "id": "72852", + "name": "Porfirío Díaz", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92875000", + "longitude": "-99.72684000" + }, + { + "id": "72860", + "name": "Pothé", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47417000", + "longitude": "-99.60306000" + }, + { + "id": "72868", + "name": "Potreros", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25414000", + "longitude": "-101.65747000" + }, + { + "id": "72881", + "name": "Prados de San Juan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63998000", + "longitude": "-98.97519000" + }, + { + "id": "72880", + "name": "Prados San Francisco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72154000", + "longitude": "-99.08366000" + }, + { + "id": "72897", + "name": "Primera de Analco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90250000", + "longitude": "-99.77556000" + }, + { + "id": "72906", + "name": "Profesor Carlos Hank González", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37222000", + "longitude": "-98.93889000" + }, + { + "id": "72917", + "name": "Progreso Industrial", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63635000", + "longitude": "-99.35687000" + }, + { + "id": "72939", + "name": "Pueblo Nuevo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67419000", + "longitude": "-99.61750000" + }, + { + "id": "72944", + "name": "Pueblo Nuevo Tlalmimilolpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39222000", + "longitude": "-99.50167000" + }, + { + "id": "72958", + "name": "Puentecillas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02568000", + "longitude": "-99.97806000" + }, + { + "id": "72969", + "name": "Puerto Escondido (Tepeolulco Puerto Escondido)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55194000", + "longitude": "-99.09806000" + }, + { + "id": "72994", + "name": "Purísima Concepción Mayorazgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69159000", + "longitude": "-100.00211000" + }, + { + "id": "73029", + "name": "Quetzalapa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94056000", + "longitude": "-99.59694000" + }, + { + "id": "73039", + "name": "Quinto Barrio (Ejido Cahuacán)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62222000", + "longitude": "-99.41806000" + }, + { + "id": "73055", + "name": "Rancho Alegre", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62528000", + "longitude": "-99.68361000" + }, + { + "id": "73174", + "name": "Río Frío de Juárez", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35336000", + "longitude": "-98.67057000" + }, + { + "id": "73121", + "name": "Rincón de Aguirre", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89947000", + "longitude": "-100.13659000" + }, + { + "id": "73127", + "name": "Rincón de Guadalupe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27404000", + "longitude": "-99.99648000" + }, + { + "id": "73129", + "name": "Rincón de Jaimes", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89844000", + "longitude": "-100.16536000" + }, + { + "id": "73135", + "name": "Rincón de los Pirules", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73932000", + "longitude": "-100.03022000" + }, + { + "id": "73120", + "name": "Rincón Verde", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49639000", + "longitude": "-99.29083000" + }, + { + "id": "73218", + "name": "Salitrillo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43333000", + "longitude": "-99.85000000" + }, + { + "id": "73238", + "name": "San Agustín", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94224000", + "longitude": "-99.93913000" + }, + { + "id": "73243", + "name": "San Agustín Berros", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40272000", + "longitude": "-100.01048000" + }, + { + "id": "73244", + "name": "San Agustín Buenavista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04337000", + "longitude": "-99.48960000" + }, + { + "id": "73246", + "name": "San Agustín Citlali", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48025000", + "longitude": "-99.80222000" + }, + { + "id": "73260", + "name": "San Agustín de las Palmas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32607000", + "longitude": "-100.14911000" + }, + { + "id": "73248", + "name": "San Agustín Huitzizilapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42000000", + "longitude": "-99.46360000" + }, + { + "id": "73251", + "name": "San Agustín Mextepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63292000", + "longitude": "-99.92654000" + }, + { + "id": "73252", + "name": "San Agustín Mimbres", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45069000", + "longitude": "-99.55626000" + }, + { + "id": "73264", + "name": "San Alejo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83857000", + "longitude": "-99.72922000" + }, + { + "id": "73307", + "name": "San Andrés de las Peras", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55653000", + "longitude": "-98.79202000" + }, + { + "id": "73308", + "name": "San Andrés de los Gama", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03766000", + "longitude": "-99.97403000" + }, + { + "id": "73309", + "name": "San Andrés del Pedregal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58104000", + "longitude": "-99.86860000" + }, + { + "id": "73285", + "name": "San Andrés Metla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21695000", + "longitude": "-98.84167000" + }, + { + "id": "73287", + "name": "San Andrés Nicolás Bravo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76778000", + "longitude": "-99.46528000" + }, + { + "id": "73288", + "name": "San Andrés Ocotepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90361000", + "longitude": "-100.04667000" + }, + { + "id": "73297", + "name": "San Andrés Tepetitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89833000", + "longitude": "-99.91972000" + }, + { + "id": "73298", + "name": "San Andrés Timilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87610000", + "longitude": "-99.73375000" + }, + { + "id": "73299", + "name": "San Andrés Tlalamac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96694000", + "longitude": "-98.80778000" + }, + { + "id": "73319", + "name": "San Antonio Acahualco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27400000", + "longitude": "-99.77169000" + }, + { + "id": "73323", + "name": "San Antonio Bonixi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49226000", + "longitude": "-99.72686000" + }, + { + "id": "73324", + "name": "San Antonio Buenavista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26083000", + "longitude": "-99.71194000" + }, + { + "id": "73369", + "name": "San Antonio de la Laguna", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30134000", + "longitude": "-100.07179000" + }, + { + "id": "73371", + "name": "San Antonio de las Huertas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56222000", + "longitude": "-99.97111000" + }, + { + "id": "73373", + "name": "San Antonio de las Palmas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71806000", + "longitude": "-98.85684000" + }, + { + "id": "73382", + "name": "San Antonio del Rosario", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40012000", + "longitude": "-100.30874000" + }, + { + "id": "73385", + "name": "San Antonio el Llanito", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27750000", + "longitude": "-99.49500000" + }, + { + "id": "73333", + "name": "San Antonio Enchisi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75472000", + "longitude": "-99.81667000" + }, + { + "id": "73335", + "name": "San Antonio Guaracha", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94592000", + "longitude": "-102.55590000" + }, + { + "id": "73388", + "name": "San Antonio la Isla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17317000", + "longitude": "-99.55400000" + }, + { + "id": "73341", + "name": "San Antonio Nixini", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67472000", + "longitude": "-99.68472000" + }, + { + "id": "73349", + "name": "San Antonio Solís", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99965000", + "longitude": "-100.08622000" + }, + { + "id": "73357", + "name": "San Antonio Tlaltecahuacán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15795000", + "longitude": "-98.76895000" + }, + { + "id": "73361", + "name": "San Antonio Xahuento", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69167000", + "longitude": "-99.10722000" + }, + { + "id": "73398", + "name": "San Bartolito Tlaltelolco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19170000", + "longitude": "-99.56136000" + }, + { + "id": "73399", + "name": "San Bartolo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24496000", + "longitude": "-100.05329000" + }, + { + "id": "73403", + "name": "San Bartolo Cuautlalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81510000", + "longitude": "-99.01044000" + }, + { + "id": "73412", + "name": "San Bartolo del Llano", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59069000", + "longitude": "-99.74099000" + }, + { + "id": "73413", + "name": "San Bartolo del Llano (San Isidro)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30528000", + "longitude": "-99.82750000" + }, + { + "id": "73414", + "name": "San Bartolo del Progreso", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10156000", + "longitude": "-99.40409000" + }, + { + "id": "73415", + "name": "San Bartolo el Viejo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29889000", + "longitude": "-99.82389000" + }, + { + "id": "73405", + "name": "San Bartolo Lanzados", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86639000", + "longitude": "-99.89389000" + }, + { + "id": "73406", + "name": "San Bartolo Morelos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78643000", + "longitude": "-99.66879000" + }, + { + "id": "73407", + "name": "San Bartolo Oxtotitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61902000", + "longitude": "-99.61347000" + }, + { + "id": "73418", + "name": "San Bartolomé", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00944000", + "longitude": "-99.67856000" + }, + { + "id": "73420", + "name": "San Bartolomé Atlatlahuca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06963000", + "longitude": "-99.60981000" + }, + { + "id": "73422", + "name": "San Bartolomé Coatepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39776000", + "longitude": "-99.31211000" + }, + { + "id": "73434", + "name": "San Bernardino", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47667000", + "longitude": "-98.89635000" + }, + { + "id": "73443", + "name": "San Bernardo Tlalmimilolpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56179000", + "longitude": "-98.79288000" + }, + { + "id": "73452", + "name": "San Buenaventura", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30250000", + "longitude": "-98.86306000" + }, + { + "id": "73462", + "name": "San Carlos Autopan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38583000", + "longitude": "-99.68722000" + }, + { + "id": "73481", + "name": "San Cristóbal Nexquipayac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58010000", + "longitude": "-98.93053000" + }, + { + "id": "73491", + "name": "San Diego", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97291000", + "longitude": "-99.58530000" + }, + { + "id": "73497", + "name": "San Diego del Cerrito", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50795000", + "longitude": "-100.00684000" + }, + { + "id": "73493", + "name": "San Diego Huehuecalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09276000", + "longitude": "-98.76336000" + }, + { + "id": "73499", + "name": "San Diego la Huerta", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14472000", + "longitude": "-99.63333000" + }, + { + "id": "73501", + "name": "San Diego los Padres Cuexcontitlán Sección 5 B", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37611000", + "longitude": "-99.61222000" + }, + { + "id": "73515", + "name": "San Felipe Coamango", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85902000", + "longitude": "-99.60675000" + }, + { + "id": "73531", + "name": "San Felipe del Progreso", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71440000", + "longitude": "-99.95197000" + }, + { + "id": "73532", + "name": "San Felipe el Mirasol", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20266000", + "longitude": "-99.42113000" + }, + { + "id": "73520", + "name": "San Felipe Pueblo Nuevo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76778000", + "longitude": "-99.75833000" + }, + { + "id": "73522", + "name": "San Felipe Santiago", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39039000", + "longitude": "-100.10639000" + }, + { + "id": "73527", + "name": "San Felipe Tlalmimilolpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23934000", + "longitude": "-99.64215000" + }, + { + "id": "73545", + "name": "San Francisco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94931000", + "longitude": "-99.64723000" + }, + { + "id": "73549", + "name": "San Francisco Acuautla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34564000", + "longitude": "-98.86034000" + }, + { + "id": "73551", + "name": "San Francisco Ayotuzco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36583000", + "longitude": "-99.35694000" + }, + { + "id": "73553", + "name": "San Francisco Chalchihuapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77000000", + "longitude": "-99.82167000" + }, + { + "id": "73554", + "name": "San Francisco Chejé", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68044000", + "longitude": "-99.74877000" + }, + { + "id": "73561", + "name": "San Francisco Cuaxusco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26755000", + "longitude": "-99.61925000" + }, + { + "id": "73612", + "name": "San Francisco de Guzmán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62028000", + "longitude": "-99.77472000" + }, + { + "id": "73577", + "name": "San Francisco Magú", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68540000", + "longitude": "-99.34800000" + }, + { + "id": "73578", + "name": "San Francisco Mazapa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69142000", + "longitude": "-98.83442000" + }, + { + "id": "73579", + "name": "San Francisco Mihualtepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24507000", + "longitude": "-100.09830000" + }, + { + "id": "73583", + "name": "San Francisco Oxtotilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16926000", + "longitude": "-99.90273000" + }, + { + "id": "73589", + "name": "San Francisco Putla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12778000", + "longitude": "-99.63556000" + }, + { + "id": "73591", + "name": "San Francisco Solis", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92969000", + "longitude": "-100.04506000" + }, + { + "id": "73595", + "name": "San Francisco Tenopalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71259000", + "longitude": "-99.11616000" + }, + { + "id": "73596", + "name": "San Francisco Tepeolulco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83291000", + "longitude": "-99.98834000" + }, + { + "id": "73597", + "name": "San Francisco Tepexoxica", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06043000", + "longitude": "-99.54783000" + }, + { + "id": "73601", + "name": "San Francisco Tlalcilalcalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29474000", + "longitude": "-99.76771000" + }, + { + "id": "73602", + "name": "San Francisco Tlaltica", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65833000", + "longitude": "-98.77500000" + }, + { + "id": "73605", + "name": "San Francisco Xochicuautla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37291000", + "longitude": "-99.44530000" + }, + { + "id": "73628", + "name": "San Gabriel Ixtla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25782000", + "longitude": "-100.12400000" + }, + { + "id": "73631", + "name": "San Gabriel Zepayautla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01306000", + "longitude": "-99.55194000" + }, + { + "id": "73634", + "name": "San Gaspar", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77750000", + "longitude": "-99.54861000" + }, + { + "id": "73636", + "name": "San Gaspar Tonatico", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80671000", + "longitude": "-99.66917000" + }, + { + "id": "73644", + "name": "San Gregorio Cuautzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25962000", + "longitude": "-98.85742000" + }, + { + "id": "73657", + "name": "San Ildefonso", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56111000", + "longitude": "-99.78583000" + }, + { + "id": "73668", + "name": "San Isidro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33972000", + "longitude": "-98.95056000" + }, + { + "id": "73672", + "name": "San Isidro (El Reservado)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30694000", + "longitude": "-99.77889000" + }, + { + "id": "73675", + "name": "San Isidro Boxipe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60111000", + "longitude": "-99.89083000" + }, + { + "id": "73692", + "name": "San Jacinto", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36288000", + "longitude": "-99.32308000" + }, + { + "id": "73700", + "name": "San Jerónimo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24255000", + "longitude": "-100.02224000" + }, + { + "id": "73703", + "name": "San Jerónimo Amanalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51791000", + "longitude": "-98.75673000" + }, + { + "id": "73705", + "name": "San Jerónimo Bonchete", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63106000", + "longitude": "-99.94949000" + }, + { + "id": "73710", + "name": "San Jerónimo Cuatro Vientos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29306000", + "longitude": "-98.84167000" + }, + { + "id": "73726", + "name": "San Jerónimo de los Jarros", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87861000", + "longitude": "-99.92333000" + }, + { + "id": "73711", + "name": "San Jerónimo Ixtapantongo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53872000", + "longitude": "-99.76779000" + }, + { + "id": "73719", + "name": "San Jerónimo Totoltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31494000", + "longitude": "-100.20290000" + }, + { + "id": "73729", + "name": "San Joaquín Coapango", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54043000", + "longitude": "-98.82739000" + }, + { + "id": "73730", + "name": "San Joaquín del Monte", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41967000", + "longitude": "-99.90161000" + }, + { + "id": "73732", + "name": "San Jorge Pueblo Nuevo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25417000", + "longitude": "-99.62778000" + }, + { + "id": "73746", + "name": "San José Barbabosa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27583000", + "longitude": "-99.72000000" + }, + { + "id": "73747", + "name": "San José Boqui", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70167000", + "longitude": "-99.72861000" + }, + { + "id": "73755", + "name": "San José Chalmita", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85862000", + "longitude": "-99.54831000" + }, + { + "id": "73838", + "name": "San José del Progreso", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93443000", + "longitude": "-99.79230000" + }, + { + "id": "73840", + "name": "San José del Puente", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72056000", + "longitude": "-99.19667000" + }, + { + "id": "73841", + "name": "San José del Rincón Centro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66216000", + "longitude": "-100.15315000" + }, + { + "id": "73843", + "name": "San José del Sitio", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60263000", + "longitude": "-99.66627000" + }, + { + "id": "73846", + "name": "San José del Tunal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79056000", + "longitude": "-99.84000000" + }, + { + "id": "73848", + "name": "San José el Cuartel", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95972000", + "longitude": "-99.57722000" + }, + { + "id": "73852", + "name": "San José el Vidrio", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65333000", + "longitude": "-99.38417000" + }, + { + "id": "73765", + "name": "San José Guadalupe Otzacatipan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34472000", + "longitude": "-99.59194000" + }, + { + "id": "73856", + "name": "San José las Lomas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47936000", + "longitude": "-99.67052000" + }, + { + "id": "73857", + "name": "San José las Palmas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36724000", + "longitude": "-98.93368000" + }, + { + "id": "73774", + "name": "San José Mezapa Sección I", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16306000", + "longitude": "-99.45500000" + }, + { + "id": "73779", + "name": "San José Pathé", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43528000", + "longitude": "-99.63111000" + }, + { + "id": "73785", + "name": "San José Tejamanil", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43139000", + "longitude": "-99.35889000" + }, + { + "id": "73789", + "name": "San José Tenería (Tenería)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95028000", + "longitude": "-99.54306000" + }, + { + "id": "73794", + "name": "San José Tlacotitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98583000", + "longitude": "-98.80611000" + }, + { + "id": "73796", + "name": "San José Toxi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86803000", + "longitude": "-99.93736000" + }, + { + "id": "73799", + "name": "San José Villa de Allende", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37521000", + "longitude": "-100.14850000" + }, + { + "id": "73859", + "name": "San Juan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24677000", + "longitude": "-100.03040000" + }, + { + "id": "73867", + "name": "San Juan Atezcapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16736000", + "longitude": "-100.18491000" + }, + { + "id": "73879", + "name": "San Juan Coajomulco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75306000", + "longitude": "-99.96861000" + }, + { + "id": "73883", + "name": "San Juan Cote Ejido", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60516000", + "longitude": "-99.95913000" + }, + { + "id": "73885", + "name": "San Juan Coxtocan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13932000", + "longitude": "-98.84728000" + }, + { + "id": "73888", + "name": "San Juan Daxthi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09838000", + "longitude": "-99.52599000" + }, + { + "id": "73967", + "name": "San Juan de las Huertas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24755000", + "longitude": "-99.75834000" + }, + { + "id": "73968", + "name": "San Juan de las Manzanas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55111000", + "longitude": "-99.83833000" + }, + { + "id": "73970", + "name": "San Juan de los Jarros", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86194000", + "longitude": "-99.91611000" + }, + { + "id": "73901", + "name": "San Juan Jalpa Centro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69806000", + "longitude": "-99.93000000" + }, + { + "id": "73928", + "name": "San Juan Tehuixtitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05428000", + "longitude": "-98.76718000" + }, + { + "id": "73933", + "name": "San Juan Tepecoculco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98306000", + "longitude": "-98.78750000" + }, + { + "id": "73942", + "name": "San Juan Tlacotompa (Tlacotompa)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94111000", + "longitude": "-98.79056000" + }, + { + "id": "73943", + "name": "San Juan Tomasquillo Herradura", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17222000", + "longitude": "-99.40389000" + }, + { + "id": "73944", + "name": "San Juan Totolapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53093000", + "longitude": "-98.72691000" + }, + { + "id": "73947", + "name": "San Juan Tuxtepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85865000", + "longitude": "-99.63289000" + }, + { + "id": "73951", + "name": "San Juan Xoconusco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31159000", + "longitude": "-100.25930000" + }, + { + "id": "73979", + "name": "San Juan y San Pedro Tezompa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20680000", + "longitude": "-98.96073000" + }, + { + "id": "73981", + "name": "San Juanico Sector Uno", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93458000", + "longitude": "-99.76778000" + }, + { + "id": "74003", + "name": "San Lorenzo Huehuetitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13417000", + "longitude": "-99.48222000" + }, + { + "id": "74006", + "name": "San Lorenzo Malacota", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64950000", + "longitude": "-99.61363000" + }, + { + "id": "74013", + "name": "San Lorenzo Tlacotepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81250000", + "longitude": "-99.91222000" + }, + { + "id": "74015", + "name": "San Lorenzo Tlalmimilolpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66731000", + "longitude": "-98.87221000" + }, + { + "id": "74017", + "name": "San Lorenzo Toxico", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50917000", + "longitude": "-99.76278000" + }, + { + "id": "74024", + "name": "San Lucas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97806000", + "longitude": "-99.66056000" + }, + { + "id": "74025", + "name": "San Lucas Amalinalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27046000", + "longitude": "-98.86403000" + }, + { + "id": "74039", + "name": "San Lucas del Pulque", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10139000", + "longitude": "-100.02806000" + }, + { + "id": "74029", + "name": "San Lucas Huitzilhuacán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58694000", + "longitude": "-98.88362000" + }, + { + "id": "74030", + "name": "San Lucas Ocotepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67833000", + "longitude": "-99.97194000" + }, + { + "id": "74035", + "name": "San Lucas Texcaltitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30065000", + "longitude": "-100.17163000" + }, + { + "id": "74037", + "name": "San Lucas Totolmaloya", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16333000", + "longitude": "-99.89722000" + }, + { + "id": "74046", + "name": "San Luis Anáhuac (Toriles)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79679000", + "longitude": "-99.40029000" + }, + { + "id": "74049", + "name": "San Luis Boro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81316000", + "longitude": "-99.85580000" + }, + { + "id": "74054", + "name": "San Luis Taxhimay", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83972000", + "longitude": "-99.39861000" + }, + { + "id": "74081", + "name": "San Marcos de la Loma", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50112000", + "longitude": "-99.96041000" + }, + { + "id": "74072", + "name": "San Marcos Huixtoco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29668000", + "longitude": "-98.86369000" + }, + { + "id": "74073", + "name": "San Marcos Nepantla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66930000", + "longitude": "-98.93198000" + }, + { + "id": "74074", + "name": "San Marcos Tecomaxusco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98152000", + "longitude": "-98.76035000" + }, + { + "id": "74076", + "name": "San Marcos Tlazalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80611000", + "longitude": "-99.71750000" + }, + { + "id": "74077", + "name": "San Marcos Yachihuacaltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32319000", + "longitude": "-99.67910000" + }, + { + "id": "74086", + "name": "San Martín", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21570000", + "longitude": "-101.61140000" + }, + { + "id": "74088", + "name": "San Martín Ahuatepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68139000", + "longitude": "-98.72806000" + }, + { + "id": "74089", + "name": "San Martín Azcatepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68667000", + "longitude": "-98.97278000" + }, + { + "id": "74090", + "name": "San Martín Cachihuapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70789000", + "longitude": "-99.43124000" + }, + { + "id": "74093", + "name": "San Martín Coapaxtongo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99417000", + "longitude": "-99.57000000" + }, + { + "id": "74094", + "name": "San Martín Cuautlalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27618000", + "longitude": "-98.83167000" + }, + { + "id": "74113", + "name": "San Martín de las Pirámides", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70582000", + "longitude": "-98.83554000" + }, + { + "id": "74095", + "name": "San Martín Ejido", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07156000", + "longitude": "-99.69393000" + }, + { + "id": "74101", + "name": "San Martín Obispo (San Martín San Pedro)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31944000", + "longitude": "-100.07472000" + }, + { + "id": "74105", + "name": "San Martín Tequesquipan (Tequesquipan)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05806000", + "longitude": "-99.94667000" + }, + { + "id": "74110", + "name": "San Martín Toltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35194000", + "longitude": "-99.70583000" + }, + { + "id": "74112", + "name": "San Martín Tuchicuitlapilco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09397000", + "longitude": "-99.64669000" + }, + { + "id": "74146", + "name": "San Matías Cuijingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08487000", + "longitude": "-98.85307000" + }, + { + "id": "74116", + "name": "San Mateo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27950000", + "longitude": "-100.01510000" + }, + { + "id": "74117", + "name": "San Mateo Almomoloha", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14590000", + "longitude": "-99.93478000" + }, + { + "id": "74119", + "name": "San Mateo Atenco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26757000", + "longitude": "-99.53214000" + }, + { + "id": "74122", + "name": "San Mateo Capulhuac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47028000", + "longitude": "-99.52611000" + }, + { + "id": "74124", + "name": "San Mateo Coapexco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96163000", + "longitude": "-99.68346000" + }, + { + "id": "74143", + "name": "San Mateo el Viejo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91441000", + "longitude": "-99.91080000" + }, + { + "id": "74126", + "name": "San Mateo Huitzilzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22906000", + "longitude": "-98.92504000" + }, + { + "id": "74127", + "name": "San Mateo Ixtacalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69920000", + "longitude": "-99.17159000" + }, + { + "id": "74128", + "name": "San Mateo Ixtlahuaca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60651000", + "longitude": "-99.80098000" + }, + { + "id": "74129", + "name": "San Mateo Mozoquilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43414000", + "longitude": "-99.55466000" + }, + { + "id": "74137", + "name": "San Mateo Tecalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05315000", + "longitude": "-98.79576000" + }, + { + "id": "74138", + "name": "San Mateo Texcalyacac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16667000", + "longitude": "-99.46667000" + }, + { + "id": "74139", + "name": "San Mateo Tlalchichilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34277000", + "longitude": "-99.75769000" + }, + { + "id": "74140", + "name": "San Mateo Xoloc", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70650000", + "longitude": "-99.24818000" + }, + { + "id": "74149", + "name": "San Miguel", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99105000", + "longitude": "-99.66555000" + }, + { + "id": "74155", + "name": "San Miguel Agua Bendita", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63037000", + "longitude": "-100.07933000" + }, + { + "id": "74159", + "name": "San Miguel Almoloyan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35500000", + "longitude": "-99.79932000" + }, + { + "id": "74165", + "name": "San Miguel Atlamajac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74884000", + "longitude": "-98.93335000" + }, + { + "id": "74172", + "name": "San Miguel Coatlinchán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44999000", + "longitude": "-98.87274000" + }, + { + "id": "74234", + "name": "San Miguel del Centro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72067000", + "longitude": "-100.10875000" + }, + { + "id": "74177", + "name": "San Miguel Enyege", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56984000", + "longitude": "-99.85962000" + }, + { + "id": "74181", + "name": "San Miguel Hila", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59361000", + "longitude": "-99.32528000" + }, + { + "id": "74183", + "name": "San Miguel Ixtapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80728000", + "longitude": "-100.15245000" + }, + { + "id": "74184", + "name": "San Miguel Jaltocan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72306000", + "longitude": "-99.05028000" + }, + { + "id": "74185", + "name": "San Miguel Laderas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88319000", + "longitude": "-99.69686000" + }, + { + "id": "74187", + "name": "San Miguel Mimlapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44829000", + "longitude": "-99.46328000" + }, + { + "id": "74192", + "name": "San Miguel Oxtotilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14380000", + "longitude": "-99.89590000" + }, + { + "id": "74199", + "name": "San Miguel Tecomatlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97833000", + "longitude": "-99.52861000" + }, + { + "id": "74200", + "name": "San Miguel Tecpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53213000", + "longitude": "-99.39803000" + }, + { + "id": "74206", + "name": "San Miguel Tenochtitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76028000", + "longitude": "-99.92250000" + }, + { + "id": "74213", + "name": "San Miguel Tlaixpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50958000", + "longitude": "-98.81083000" + }, + { + "id": "74217", + "name": "San Miguel Totocuitlapilco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22889000", + "longitude": "-99.59417000" + }, + { + "id": "74222", + "name": "San Miguel Xoltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25265000", + "longitude": "-100.08320000" + }, + { + "id": "74224", + "name": "San Miguel Yuxtepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54056000", + "longitude": "-99.71250000" + }, + { + "id": "74252", + "name": "San Nicolás", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93333000", + "longitude": "-99.56833000" + }, + { + "id": "74253", + "name": "San Nicolás Amealco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32599000", + "longitude": "-99.87146000" + }, + { + "id": "74277", + "name": "San Nicolás el Oro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80593000", + "longitude": "-100.11753000" + }, + { + "id": "74256", + "name": "San Nicolás Guadalupe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61412000", + "longitude": "-100.03080000" + }, + { + "id": "74266", + "name": "San Nicolás Tolentino", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35889000", + "longitude": "-99.57167000" + }, + { + "id": "74282", + "name": "San Pablo Atlazalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21742000", + "longitude": "-98.90763000" + }, + { + "id": "74283", + "name": "San Pablo Atotonilco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79627000", + "longitude": "-99.82301000" + }, + { + "id": "74304", + "name": "San Pablo de las Salinas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66658000", + "longitude": "-99.09477000" + }, + { + "id": "74306", + "name": "San Pablo de los Gallos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67722000", + "longitude": "-99.24611000" + }, + { + "id": "74307", + "name": "San Pablo de los Remedios", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64111000", + "longitude": "-99.83833000" + }, + { + "id": "74291", + "name": "San Pablo Huantepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98216000", + "longitude": "-99.49126000" + }, + { + "id": "74294", + "name": "San Pablo Ixayoc", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47317000", + "longitude": "-98.79522000" + }, + { + "id": "74295", + "name": "San Pablo Ixquitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70944000", + "longitude": "-98.78833000" + }, + { + "id": "74300", + "name": "San Pablo Tecalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67309000", + "longitude": "-98.95837000" + }, + { + "id": "74301", + "name": "San Pablo Tejalpa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86667000", + "longitude": "-99.59111000" + }, + { + "id": "74310", + "name": "San Pedro Abajo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48093000", + "longitude": "-99.56700000" + }, + { + "id": "74314", + "name": "San Pedro Arriba", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48641000", + "longitude": "-99.56253000" + }, + { + "id": "74315", + "name": "San Pedro Arriba 3ra. Sección", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50083000", + "longitude": "-99.55722000" + }, + { + "id": "74323", + "name": "San Pedro Chiautzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57111000", + "longitude": "-98.78878000" + }, + { + "id": "74326", + "name": "San Pedro Cholula", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26444000", + "longitude": "-99.48639000" + }, + { + "id": "74406", + "name": "San Pedro de la Hortaliza (Ejido Almoloyán)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38806000", + "longitude": "-99.81778000" + }, + { + "id": "74407", + "name": "San Pedro de los Baños", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66873000", + "longitude": "-99.83533000" + }, + { + "id": "74408", + "name": "San Pedro de los Metates", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89907000", + "longitude": "-99.85827000" + }, + { + "id": "74412", + "name": "San Pedro del Rincón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43515000", + "longitude": "-100.01353000" + }, + { + "id": "74413", + "name": "San Pedro del Rosal", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77806000", + "longitude": "-99.81250000" + }, + { + "id": "74333", + "name": "San Pedro Denxhi Centro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25026000", + "longitude": "-99.96731000" + }, + { + "id": "74414", + "name": "San Pedro el Alto", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58429000", + "longitude": "-99.88050000" + }, + { + "id": "74342", + "name": "San Pedro Huitzizilapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40573000", + "longitude": "-99.47813000" + }, + { + "id": "74350", + "name": "San Pedro Limón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.58200000", + "longitude": "-100.30707000" + }, + { + "id": "74351", + "name": "San Pedro Los Baños", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62537000", + "longitude": "-99.82170000" + }, + { + "id": "74361", + "name": "San Pedro Nexapa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08365000", + "longitude": "-98.73724000" + }, + { + "id": "74373", + "name": "San Pedro Tarímbaro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80799000", + "longitude": "-100.22541000" + }, + { + "id": "74376", + "name": "San Pedro Tejalpa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25809000", + "longitude": "-99.79232000" + }, + { + "id": "74379", + "name": "San Pedro Tenayac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04667000", + "longitude": "-100.17694000" + }, + { + "id": "74380", + "name": "San Pedro Tepetitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62839000", + "longitude": "-98.88839000" + }, + { + "id": "74424", + "name": "San Rafael", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20959000", + "longitude": "-98.75636000" + }, + { + "id": "74441", + "name": "San Roque", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48028000", + "longitude": "-99.96056000" + }, + { + "id": "74446", + "name": "San Salvador Atenco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55170000", + "longitude": "-98.91867000" + }, + { + "id": "74449", + "name": "San Salvador Tizatlalli", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26028000", + "longitude": "-99.59083000" + }, + { + "id": "74457", + "name": "San Sebastián", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75101000", + "longitude": "-99.21441000" + }, + { + "id": "74460", + "name": "San Sebastián Buenos Aires", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72722000", + "longitude": "-99.60361000" + }, + { + "id": "74461", + "name": "San Sebastián Chimalpa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38151000", + "longitude": "-98.95505000" + }, + { + "id": "74474", + "name": "San Sebastián Xolalpa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67653000", + "longitude": "-98.84529000" + }, + { + "id": "74487", + "name": "San Simón de Guerrero", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02276000", + "longitude": "-100.00645000" + }, + { + "id": "74488", + "name": "San Simón de la Laguna", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29273000", + "longitude": "-100.08070000" + }, + { + "id": "74489", + "name": "San Simón el Alto", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99653000", + "longitude": "-99.50344000" + }, + { + "id": "74481", + "name": "San Simonito", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99139000", + "longitude": "-99.54000000" + }, + { + "id": "74495", + "name": "San Vicente (Calpulalpan Tercera Manzana)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03722000", + "longitude": "-99.64167000" + }, + { + "id": "74497", + "name": "San Vicente Chimalhuacán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02381000", + "longitude": "-98.80176000" + }, + { + "id": "74515", + "name": "Sanata Lucía", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74807000", + "longitude": "-98.98069000" + }, + { + "id": "74522", + "name": "Santa Ana", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98750000", + "longitude": "-99.41333000" + }, + { + "id": "74535", + "name": "Santa Ana Ixtlahuaca (Santa Ana Ixtlahuacingo)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58472000", + "longitude": "-99.88750000" + }, + { + "id": "74536", + "name": "Santa Ana Ixtlahuatzingo (Santa Ana)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97056000", + "longitude": "-99.62361000" + }, + { + "id": "74537", + "name": "Santa Ana Jilotzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54116000", + "longitude": "-99.39477000" + }, + { + "id": "74557", + "name": "Santa Ana la Ladera", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59583000", + "longitude": "-99.87000000" + }, + { + "id": "74540", + "name": "Santa Ana Mayorazgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42951000", + "longitude": "-99.51270000" + }, + { + "id": "74542", + "name": "Santa Ana Nextlalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74171000", + "longitude": "-99.07496000" + }, + { + "id": "74543", + "name": "Santa Ana Nichi Ejido", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58441000", + "longitude": "-99.98905000" + }, + { + "id": "74551", + "name": "Santa Ana Zicatecoyan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57167000", + "longitude": "-100.22000000" + }, + { + "id": "74576", + "name": "Santa Catarina", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63659000", + "longitude": "-98.92651000" + }, + { + "id": "74581", + "name": "Santa Catarina Ayotzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20948000", + "longitude": "-98.92985000" + }, + { + "id": "74594", + "name": "Santa Catarina del Monte", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48404000", + "longitude": "-98.77239000" + }, + { + "id": "74602", + "name": "Santa Clara de Juárez", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71909000", + "longitude": "-99.60695000" + }, + { + "id": "74609", + "name": "Santa Cruz", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83333000", + "longitude": "-99.98333000" + }, + { + "id": "74618", + "name": "Santa Cruz Atizapán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17692000", + "longitude": "-99.48852000" + }, + { + "id": "74620", + "name": "Santa Cruz Bombatevi", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80500000", + "longitude": "-99.88667000" + }, + { + "id": "74621", + "name": "Santa Cruz Cuauhtenco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24907000", + "longitude": "-99.72939000" + }, + { + "id": "74650", + "name": "Santa Cruz del Monte", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76702000", + "longitude": "-99.22867000" + }, + { + "id": "74626", + "name": "Santa Cruz Huitzizilapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39694000", + "longitude": "-99.44806000" + }, + { + "id": "74629", + "name": "Santa Cruz Mextepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65972000", + "longitude": "-99.95306000" + }, + { + "id": "74638", + "name": "Santa Cruz Pueblo Nuevo (Pueblo Nuevo)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10000000", + "longitude": "-99.65806000" + }, + { + "id": "74665", + "name": "Santa Gertrudis", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73333000", + "longitude": "-99.36667000" + }, + { + "id": "74676", + "name": "Santa Isabel Chalma", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15712000", + "longitude": "-98.76533000" + }, + { + "id": "74678", + "name": "Santa Isabel Ixtapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58655000", + "longitude": "-98.94667000" + }, + { + "id": "74682", + "name": "Santa Juana Centro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42406000", + "longitude": "-99.75063000" + }, + { + "id": "74683", + "name": "Santa Juana Primera Sección", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39018000", + "longitude": "-99.75186000" + }, + { + "id": "74686", + "name": "Santa Lucía", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02749000", + "longitude": "-99.38683000" + }, + { + "id": "74702", + "name": "Santa María", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85704000", + "longitude": "-99.55486000" + }, + { + "id": "74708", + "name": "Santa María Ajoloapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97694000", + "longitude": "-99.04472000" + }, + { + "id": "74714", + "name": "Santa María Aranzazú (Santa María)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98833000", + "longitude": "-99.65056000" + }, + { + "id": "74723", + "name": "Santa María Canchesdá", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85521000", + "longitude": "-100.05592000" + }, + { + "id": "74728", + "name": "Santa María Chimalhuacán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42155000", + "longitude": "-98.95038000" + }, + { + "id": "74729", + "name": "Santa María Citendejé", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78190000", + "longitude": "-99.92863000" + }, + { + "id": "74733", + "name": "Santa María Cuevas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86611000", + "longitude": "-99.09875000" + }, + { + "id": "74805", + "name": "Santa María de Guadalupe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82111000", + "longitude": "-99.12778000" + }, + { + "id": "74811", + "name": "Santa María del Llano", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63444000", + "longitude": "-99.72500000" + }, + { + "id": "74813", + "name": "Santa María del Monte", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28973000", + "longitude": "-99.82355000" + }, + { + "id": "74735", + "name": "Santa María Endare", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72556000", + "longitude": "-99.81583000" + }, + { + "id": "74742", + "name": "Santa María Huecatitla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72511000", + "longitude": "-99.16911000" + }, + { + "id": "74743", + "name": "Santa María Huexoculco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25804000", + "longitude": "-98.82050000" + }, + { + "id": "74750", + "name": "Santa María Jajalpa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11167000", + "longitude": "-99.53583000" + }, + { + "id": "74822", + "name": "Santa María la Asunción", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26750000", + "longitude": "-99.55250000" + }, + { + "id": "74756", + "name": "Santa María Magdalena Cahuacán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63804000", + "longitude": "-99.41349000" + }, + { + "id": "74759", + "name": "Santa María Mazatla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51528000", + "longitude": "-99.38694000" + }, + { + "id": "74762", + "name": "Santa María Nativitas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21139000", + "longitude": "-99.62944000" + }, + { + "id": "74767", + "name": "Santa María Palapa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73589000", + "longitude": "-98.84834000" + }, + { + "id": "74769", + "name": "Santa María Pipioltepec (Pipioltepec)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24056000", + "longitude": "-100.09750000" + }, + { + "id": "74774", + "name": "Santa María Rayón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14808000", + "longitude": "-99.57974000" + }, + { + "id": "74778", + "name": "Santa María Tecuanulco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50660000", + "longitude": "-98.76211000" + }, + { + "id": "74787", + "name": "Santa María Tlalmimilolpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39130000", + "longitude": "-99.47088000" + }, + { + "id": "74789", + "name": "Santa María Totoltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30653000", + "longitude": "-99.59279000" + }, + { + "id": "74803", + "name": "Santa María Zolotepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41728000", + "longitude": "-99.49327000" + }, + { + "id": "74699", + "name": "Santa Martha", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43145000", + "longitude": "-98.91744000" + }, + { + "id": "74827", + "name": "Santa Mónica", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99306000", + "longitude": "-99.42361000" + }, + { + "id": "74849", + "name": "Santa Rosa de Lima", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78587000", + "longitude": "-100.09606000" + }, + { + "id": "74861", + "name": "Santa Teresa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84500000", + "longitude": "-99.23333000" + }, + { + "id": "74874", + "name": "Santiago Acutzilapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78640000", + "longitude": "-99.76569000" + }, + { + "id": "74886", + "name": "Santiago Casandeje", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76972000", + "longitude": "-99.96917000" + }, + { + "id": "74890", + "name": "Santiago Chimalpa (Chimalpa)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56917000", + "longitude": "-98.89167000" + }, + { + "id": "74892", + "name": "Santiago Citendejé", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78139000", + "longitude": "-99.92917000" + }, + { + "id": "74893", + "name": "Santiago Coachochitlan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86289000", + "longitude": "-100.03455000" + }, + { + "id": "74897", + "name": "Santiago Cuautenco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14803000", + "longitude": "-98.74685000" + }, + { + "id": "74898", + "name": "Santiago Cuautlalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68417000", + "longitude": "-99.28870000" + }, + { + "id": "74987", + "name": "Santiago del Monte", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40141000", + "longitude": "-99.94186000" + }, + { + "id": "74904", + "name": "Santiago Huitlapaltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28676000", + "longitude": "-100.20649000" + }, + { + "id": "74920", + "name": "Santiago Mamalhuazuca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99659000", + "longitude": "-98.79602000" + }, + { + "id": "74932", + "name": "Santiago Oxtempan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78034000", + "longitude": "-100.12191000" + }, + { + "id": "74934", + "name": "Santiago Oxtotitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96146000", + "longitude": "-99.66827000" + }, + { + "id": "74942", + "name": "Santiago Tejocotillos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43308000", + "longitude": "-99.45155000" + }, + { + "id": "74947", + "name": "Santiago Tepetitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63807000", + "longitude": "-98.81841000" + }, + { + "id": "74950", + "name": "Santiago Tepopula", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14399000", + "longitude": "-98.85692000" + }, + { + "id": "74954", + "name": "Santiago Teyahualco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65985000", + "longitude": "-99.12493000" + }, + { + "id": "74956", + "name": "Santiago Tianguistenco de Galeana", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18024000", + "longitude": "-99.46644000" + }, + { + "id": "74961", + "name": "Santiago Tlacotepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22708000", + "longitude": "-99.67083000" + }, + { + "id": "74966", + "name": "Santiago Tolman", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72781000", + "longitude": "-98.79011000" + }, + { + "id": "74974", + "name": "Santiago Yancuitlalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38404000", + "longitude": "-99.30471000" + }, + { + "id": "74975", + "name": "Santiago Yeché", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70853000", + "longitude": "-99.71190000" + }, + { + "id": "74980", + "name": "Santiago Zacualuca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70038000", + "longitude": "-98.92908000" + }, + { + "id": "74991", + "name": "Santiaguito Tlalcilalcalli", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34032000", + "longitude": "-99.72717000" + }, + { + "id": "75017", + "name": "Santo Domingo de Guzmán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59306000", + "longitude": "-99.77972000" + }, + { + "id": "75008", + "name": "Santo Domingo Shomege (Shomege)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84524000", + "longitude": "-99.90166000" + }, + { + "id": "75023", + "name": "Santo Tomás", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84524000", + "longitude": "-102.08571000" + }, + { + "id": "75025", + "name": "Santo Tomás Atzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17270000", + "longitude": "-98.77873000" + }, + { + "id": "75027", + "name": "Santo Tomás Chiconautla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63894000", + "longitude": "-99.00755000" + }, + { + "id": "75033", + "name": "Santo Tomás de los Plátanos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18310000", + "longitude": "-100.25999000" + }, + { + "id": "75050", + "name": "Sebastián Lerdo de Tejada", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38972000", + "longitude": "-99.72528000" + }, + { + "id": "75053", + "name": "Sección del Cerrito", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55889000", + "longitude": "-99.67833000" + }, + { + "id": "75075", + "name": "Sierra de Guadalupe", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59250000", + "longitude": "-99.15944000" + }, + { + "id": "75101", + "name": "Sitio Ejido", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45334000", + "longitude": "-99.90069000" + }, + { + "id": "75110", + "name": "Solalpan 1ra. Sección", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49278000", + "longitude": "-99.57444000" + }, + { + "id": "75130", + "name": "Soyaniquilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01488000", + "longitude": "-99.53022000" + }, + { + "id": "75146", + "name": "Sultepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85855000", + "longitude": "-99.96588000" + }, + { + "id": "75197", + "name": "Tamándaro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94941000", + "longitude": "-102.28416000" + }, + { + "id": "75201", + "name": "Tanaquillo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84611000", + "longitude": "-102.09797000" + }, + { + "id": "75209", + "name": "Tangancícuaro de Arista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88733000", + "longitude": "-102.20636000" + }, + { + "id": "75234", + "name": "Tarécuato", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84359000", + "longitude": "-102.46485000" + }, + { + "id": "75264", + "name": "Tecamachalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35992000", + "longitude": "-98.95957000" + }, + { + "id": "75269", + "name": "Tecaxic", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32270000", + "longitude": "-99.71524000" + }, + { + "id": "75294", + "name": "Tecámac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71288000", + "longitude": "-98.96895000" + }, + { + "id": "75295", + "name": "Tecámac de Felipe Villanueva", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71306000", + "longitude": "-98.96833000" + }, + { + "id": "75270", + "name": "Techachaltitla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36500000", + "longitude": "-98.94056000" + }, + { + "id": "75271", + "name": "Techichili", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17139000", + "longitude": "-99.42222000" + }, + { + "id": "75272", + "name": "Tecoac (Santa María Nativitas)", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78917000", + "longitude": "-99.85306000" + }, + { + "id": "75280", + "name": "Tecomatepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83903000", + "longitude": "-99.70363000" + }, + { + "id": "75303", + "name": "Tejalpa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25167000", + "longitude": "-99.76580000" + }, + { + "id": "75306", + "name": "Tejupilco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86162000", + "longitude": "-100.23277000" + }, + { + "id": "75307", + "name": "Tejupilco de Hidalgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90475000", + "longitude": "-100.15275000" + }, + { + "id": "75326", + "name": "Temamatla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20306000", + "longitude": "-98.86921000" + }, + { + "id": "75330", + "name": "Temascalapa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82766000", + "longitude": "-98.90171000" + }, + { + "id": "75331", + "name": "Temascalcingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91635000", + "longitude": "-100.00369000" + }, + { + "id": "75332", + "name": "Temascaltepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06561000", + "longitude": "-99.98379000" + }, + { + "id": "75333", + "name": "Temascaltepec de González", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04409000", + "longitude": "-100.04236000" + }, + { + "id": "75339", + "name": "Temoaya", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46747000", + "longitude": "-99.59407000" + }, + { + "id": "75349", + "name": "Tenancingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96057000", + "longitude": "-99.57561000" + }, + { + "id": "75350", + "name": "Tenancingo de Degollado", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96136000", + "longitude": "-99.59030000" + }, + { + "id": "75354", + "name": "Tenango de Arista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10446000", + "longitude": "-99.58980000" + }, + { + "id": "75357", + "name": "Tenango del Aire", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15774000", + "longitude": "-98.85687000" + }, + { + "id": "75361", + "name": "Tenería", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97322000", + "longitude": "-100.09299000" + }, + { + "id": "75366", + "name": "Tengüecho", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83836000", + "longitude": "-102.34347000" + }, + { + "id": "75368", + "name": "Tenjay", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80768000", + "longitude": "-99.55221000" + }, + { + "id": "75378", + "name": "Teoloyucan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74423000", + "longitude": "-99.18113000" + }, + { + "id": "75382", + "name": "Teotihuacán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68862000", + "longitude": "-98.86110000" + }, + { + "id": "75383", + "name": "Teotihuacán de Arista", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68972000", + "longitude": "-98.86083000" + }, + { + "id": "75392", + "name": "Tepalcatepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93556000", + "longitude": "-99.59917000" + }, + { + "id": "75419", + "name": "Tepetitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57266000", + "longitude": "-98.87053000" + }, + { + "id": "75425", + "name": "Tepetlaoxtoc", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57495000", + "longitude": "-98.81910000" + }, + { + "id": "75426", + "name": "Tepetlaoxtoc de Hidalgo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57437000", + "longitude": "-98.81835000" + }, + { + "id": "75428", + "name": "Tepetlixpa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03007000", + "longitude": "-98.82125000" + }, + { + "id": "75431", + "name": "Tepetongo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90877000", + "longitude": "-100.13356000" + }, + { + "id": "75434", + "name": "Tepetzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93806000", + "longitude": "-99.61250000" + }, + { + "id": "75441", + "name": "Tepexpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61387000", + "longitude": "-98.93640000" + }, + { + "id": "75450", + "name": "Tepotzotlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72116000", + "longitude": "-99.22391000" + }, + { + "id": "75451", + "name": "Tepoxtepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96278000", + "longitude": "-99.55639000" + }, + { + "id": "75457", + "name": "Tequexquináhuac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47757000", + "longitude": "-98.82485000" + }, + { + "id": "75461", + "name": "Tequisistlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59642000", + "longitude": "-98.94105000" + }, + { + "id": "75462", + "name": "Tequisistlán Primero", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60002000", + "longitude": "-98.95689000" + }, + { + "id": "75465", + "name": "Tequixquiac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90944000", + "longitude": "-99.14472000" + }, + { + "id": "75466", + "name": "Tercera Manzana de Zaragoza", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89556000", + "longitude": "-99.75278000" + }, + { + "id": "75467", + "name": "Teremendo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78530000", + "longitude": "-101.47980000" + }, + { + "id": "75507", + "name": "Texcaltitlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93997000", + "longitude": "-99.93763000" + }, + { + "id": "75509", + "name": "Texcalyacac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13253000", + "longitude": "-99.50163000" + }, + { + "id": "75511", + "name": "Texcapilla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94574000", + "longitude": "-99.89535000" + }, + { + "id": "75515", + "name": "Texcoco de Mora", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51194000", + "longitude": "-98.88293000" + }, + { + "id": "75533", + "name": "Tezoyuca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59283000", + "longitude": "-98.91084000" + }, + { + "id": "75546", + "name": "Tierra Blanca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50667000", + "longitude": "-99.58389000" + }, + { + "id": "75571", + "name": "Timilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88017000", + "longitude": "-99.72552000" + }, + { + "id": "75589", + "name": "Tixmadeje Chiquito", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96556000", + "longitude": "-99.91444000" + }, + { + "id": "75612", + "name": "Tlacomulco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12111000", + "longitude": "-99.44750000" + }, + { + "id": "75642", + "name": "Tlalmanalco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20521000", + "longitude": "-98.80115000" + }, + { + "id": "75645", + "name": "Tlalnepantla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54005000", + "longitude": "-99.19538000" + }, + { + "id": "75648", + "name": "Tlalnepantla de Baz", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54054000", + "longitude": "-99.19341000" + }, + { + "id": "75651", + "name": "Tlaltecahuacán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57896000", + "longitude": "-98.88067000" + }, + { + "id": "75666", + "name": "Tlaminca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13571000", + "longitude": "-99.43999000" + }, + { + "id": "75690", + "name": "Tlatlaya", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61773000", + "longitude": "-100.20779000" + }, + { + "id": "75707", + "name": "Tlazala de Fabela", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55857000", + "longitude": "-99.41469000" + }, + { + "id": "75708", + "name": "Tlazazalca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97085000", + "longitude": "-102.05842000" + }, + { + "id": "75723", + "name": "Toluca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32780000", + "longitude": "-99.66024000" + }, + { + "id": "75740", + "name": "Tonanitla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68794000", + "longitude": "-99.05342000" + }, + { + "id": "75741", + "name": "Tonatico", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78199000", + "longitude": "-99.64363000" + }, + { + "id": "75753", + "name": "Totolmajac", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92694000", + "longitude": "-99.68593000" + }, + { + "id": "75765", + "name": "Transfiguración", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57712000", + "longitude": "-99.41951000" + }, + { + "id": "75772", + "name": "Tres Estrellas", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58697000", + "longitude": "-100.02281000" + }, + { + "id": "75775", + "name": "Tres Mezquites", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26203000", + "longitude": "-101.62735000" + }, + { + "id": "75794", + "name": "Tulantongo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53159000", + "longitude": "-98.87464000" + }, + { + "id": "75802", + "name": "Tultepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68500000", + "longitude": "-99.12806000" + }, + { + "id": "75803", + "name": "Tultitlán de Mariano Escobedo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64655000", + "longitude": "-99.16787000" + }, + { + "id": "75813", + "name": "Tupátaro", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81375000", + "longitude": "-100.30543000" + }, + { + "id": "75814", + "name": "Turcio Segunda Sección", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36527000", + "longitude": "-99.96009000" + }, + { + "id": "75868", + "name": "Unidad Acaquilpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36694000", + "longitude": "-98.93917000" + }, + { + "id": "75875", + "name": "Unidad Habitacional Santa Teresa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21611000", + "longitude": "-99.55222000" + }, + { + "id": "75877", + "name": "Unidad San Miguel Jagüeyes", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82361000", + "longitude": "-99.28889000" + }, + { + "id": "75900", + "name": "Urén", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84564000", + "longitude": "-102.10524000" + }, + { + "id": "75921", + "name": "Valle de Bravo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19501000", + "longitude": "-100.13132000" + }, + { + "id": "75937", + "name": "Vare Chiquichuca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35539000", + "longitude": "-100.19493000" + }, + { + "id": "75948", + "name": "Veintidós de Febrero", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61139000", + "longitude": "-99.34667000" + }, + { + "id": "75954", + "name": "Venta de Bravo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86376000", + "longitude": "-100.17323000" + }, + { + "id": "75955", + "name": "Venta de Ocotillos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47141000", + "longitude": "-99.95879000" + }, + { + "id": "75997", + "name": "Villa Cuauhtémoc", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41676000", + "longitude": "-99.55872000" + }, + { + "id": "76060", + "name": "Villa de Almoloya de Juárez", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36915000", + "longitude": "-99.75836000" + }, + { + "id": "76073", + "name": "Villa del Carbón", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72875000", + "longitude": "-99.46362000" + }, + { + "id": "76005", + "name": "Villa Guerrero", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96211000", + "longitude": "-99.64061000" + }, + { + "id": "76027", + "name": "Villa Luvianos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91667000", + "longitude": "-100.40000000" + }, + { + "id": "76036", + "name": "Villa Morelos", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00335000", + "longitude": "-101.41360000" + }, + { + "id": "76048", + "name": "Villa URBI del Rey", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84132000", + "longitude": "-99.25719000" + }, + { + "id": "76056", + "name": "Villa Victoria", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43693000", + "longitude": "-99.99589000" + }, + { + "id": "76076", + "name": "Villachuato", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14848000", + "longitude": "-101.63460000" + }, + { + "id": "76089", + "name": "Villas de la Laguna", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83611000", + "longitude": "-99.09000000" + }, + { + "id": "76091", + "name": "Villas del Campo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18028000", + "longitude": "-99.61222000" + }, + { + "id": "76093", + "name": "Vista Hermosa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51616000", + "longitude": "-99.22335000" + }, + { + "id": "76114", + "name": "Xalatlaco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18314000", + "longitude": "-99.41844000" + }, + { + "id": "76132", + "name": "Xhimojay", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92144000", + "longitude": "-99.64232000" + }, + { + "id": "76133", + "name": "Xhitey", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98163000", + "longitude": "-99.52779000" + }, + { + "id": "76134", + "name": "Xhixhata", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97056000", + "longitude": "-99.54611000" + }, + { + "id": "76136", + "name": "Xico", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27032000", + "longitude": "-98.95088000" + }, + { + "id": "76165", + "name": "Xochimanca", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49052000", + "longitude": "-98.82433000" + }, + { + "id": "76186", + "name": "Xocotlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51633000", + "longitude": "-98.84633000" + }, + { + "id": "76193", + "name": "Xometla", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64281000", + "longitude": "-98.88171000" + }, + { + "id": "76194", + "name": "Xonacatlan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40000000", + "longitude": "-99.53300000" + }, + { + "id": "76195", + "name": "Xonacatlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40513000", + "longitude": "-99.52807000" + }, + { + "id": "76257", + "name": "Zacamulpa", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35565000", + "longitude": "-99.33145000" + }, + { + "id": "76259", + "name": "Zacamulpa Tlalmimilolpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38934000", + "longitude": "-99.44615000" + }, + { + "id": "76260", + "name": "Zacango", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95611000", + "longitude": "-99.69806000" + }, + { + "id": "76280", + "name": "Zacazonapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07317000", + "longitude": "-100.25515000" + }, + { + "id": "76283", + "name": "Zacualpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71895000", + "longitude": "-99.77605000" + }, + { + "id": "76311", + "name": "Zapotlán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54667000", + "longitude": "-98.90306000" + }, + { + "id": "76330", + "name": "Zentlalpan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15003000", + "longitude": "-98.78494000" + }, + { + "id": "76339", + "name": "Zinacantepec", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28428000", + "longitude": "-99.73394000" + }, + { + "id": "76344", + "name": "Zipiajo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79445000", + "longitude": "-101.55250000" + }, + { + "id": "76365", + "name": "Zopoco", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84029000", + "longitude": "-102.07483000" + }, + { + "id": "76367", + "name": "Zoquiapan", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31769000", + "longitude": "-98.84967000" + }, + { + "id": "76379", + "name": "Zoyatzingo", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09023000", + "longitude": "-98.78359000" + }, + { + "id": "76383", + "name": "Zula", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22011000", + "longitude": "-98.88950000" + }, + { + "id": "76384", + "name": "Zumpahuacán", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91642000", + "longitude": "-99.56568000" + }, + { + "id": "76385", + "name": "Zumpango", + "state_id": 3450, + "state_code": "MEX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79670000", + "longitude": "-99.09946000" + }, + { + "id": "68472", + "name": "Azcapotzalco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48698000", + "longitude": "-99.18594000" + }, + { + "id": "76401", + "name": "Álvaro Obregón", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37496000", + "longitude": "-99.21976000" + }, + { + "id": "68588", + "name": "Benito Juarez", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39840000", + "longitude": "-99.15766000" + }, + { + "id": "68597", + "name": "Benito Juárez", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37270000", + "longitude": "-99.15640000" + }, + { + "id": "69255", + "name": "Col. Bosques de las Lomas", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37893000", + "longitude": "-99.26587000" + }, + { + "id": "69383", + "name": "Colonia del Valle", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38611000", + "longitude": "-99.16204000" + }, + { + "id": "69337", + "name": "Colonia Nativitas", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38119000", + "longitude": "-99.13685000" + }, + { + "id": "69517", + "name": "Coyoacán", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34670000", + "longitude": "-99.16174000" + }, + { + "id": "69581", + "name": "Cuauhtémoc", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44506000", + "longitude": "-99.14612000" + }, + { + "id": "69672", + "name": "Delegación Cuajimalpa de Morelos", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36920000", + "longitude": "-99.29089000" + }, + { + "id": "70638", + "name": "Gustavo A. Madero", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48407000", + "longitude": "-99.11144000" + }, + { + "id": "70639", + "name": "Gustavo Adolfo Madero", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49392000", + "longitude": "-99.11075000" + }, + { + "id": "70950", + "name": "Iztacalco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39528000", + "longitude": "-99.09778000" + }, + { + "id": "70952", + "name": "Iztapalapa", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35529000", + "longitude": "-99.06224000" + }, + { + "id": "71756", + "name": "Lomas de Tepemecatl", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23861000", + "longitude": "-99.23944000" + }, + { + "id": "71923", + "name": "Magdalena Contreras", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33212000", + "longitude": "-99.21118000" + }, + { + "id": "72102", + "name": "Mexico City", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42847000", + "longitude": "-99.12766000" + }, + { + "id": "72130", + "name": "Miguel Hidalgo", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43411000", + "longitude": "-99.20024000" + }, + { + "id": "72138", + "name": "Milpa Alta", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19251000", + "longitude": "-99.02317000" + }, + { + "id": "72836", + "name": "Polanco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43332000", + "longitude": "-99.19919000" + }, + { + "id": "73286", + "name": "San Andrés Mixquic", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22512000", + "longitude": "-98.96408000" + }, + { + "id": "73352", + "name": "San Antonio Tecómitl", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21778000", + "longitude": "-98.98806000" + }, + { + "id": "73416", + "name": "San Bartolome Xicomulco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20607000", + "longitude": "-99.06820000" + }, + { + "id": "73592", + "name": "San Francisco Tecoxpa", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19167000", + "longitude": "-99.00639000" + }, + { + "id": "73900", + "name": "San Juan Ixtayopan", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23187000", + "longitude": "-98.99867000" + }, + { + "id": "73996", + "name": "San Lorenzo Acopilco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33002000", + "longitude": "-99.32721000" + }, + { + "id": "74014", + "name": "San Lorenzo Tlacoyucan", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17605000", + "longitude": "-99.03219000" + }, + { + "id": "74157", + "name": "San Miguel Ajusco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22201000", + "longitude": "-99.20242000" + }, + { + "id": "74216", + "name": "San Miguel Topilejo", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20264000", + "longitude": "-99.14193000" + }, + { + "id": "74297", + "name": "San Pablo Oztotepec", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18652000", + "longitude": "-99.07361000" + }, + { + "id": "74318", + "name": "San Pedro Atocpan", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20160000", + "longitude": "-99.04963000" + }, + { + "id": "74447", + "name": "San Salvador Cuauhtenco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19276000", + "longitude": "-99.08983000" + }, + { + "id": "74546", + "name": "Santa Ana Tlacotenco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17569000", + "longitude": "-98.99788000" + }, + { + "id": "74592", + "name": "Santa Catarina Yecahuizotl", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31205000", + "longitude": "-98.96461000" + }, + { + "id": "75481", + "name": "Tetelco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21673000", + "longitude": "-98.97295000" + }, + { + "id": "75649", + "name": "Tlalpan", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29513000", + "longitude": "-99.16206000" + }, + { + "id": "75711", + "name": "Tláhuac", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28689000", + "longitude": "-99.00507000" + }, + { + "id": "75960", + "name": "Venustiano Carranza", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44361000", + "longitude": "-99.10499000" + }, + { + "id": "76166", + "name": "Xochimilco", + "state_id": 3473, + "state_code": "CMX", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25465000", + "longitude": "-99.10356000" + }, + { + "id": "68084", + "name": "Acuítzio del Canje", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49585000", + "longitude": "-101.33321000" + }, + { + "id": "68080", + "name": "Acuitzio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47178000", + "longitude": "-101.32921000" + }, + { + "id": "68099", + "name": "Agostitlán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53818000", + "longitude": "-100.61849000" + }, + { + "id": "68108", + "name": "Agua Caliente", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06519000", + "longitude": "-101.73466000" + }, + { + "id": "68129", + "name": "Aguililla", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73742000", + "longitude": "-102.78934000" + }, + { + "id": "68161", + "name": "Ahuirán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66574000", + "longitude": "-102.07347000" + }, + { + "id": "68169", + "name": "Ajuno", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51262000", + "longitude": "-101.72280000" + }, + { + "id": "68271", + "name": "Angahuán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54790000", + "longitude": "-102.22563000" + }, + { + "id": "68272", + "name": "Angamacutiro de la Unión", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14998000", + "longitude": "-101.71113000" + }, + { + "id": "68276", + "name": "Ansihuacuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19984000", + "longitude": "-101.80670000" + }, + { + "id": "68282", + "name": "Antúnez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01451000", + "longitude": "-102.20432000" + }, + { + "id": "68283", + "name": "Antúnez (Morelos)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01278000", + "longitude": "-102.20389000" + }, + { + "id": "68300", + "name": "Apatzingán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08864000", + "longitude": "-102.35704000" + }, + { + "id": "68305", + "name": "Apeo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88722000", + "longitude": "-100.34194000" + }, + { + "id": "68309", + "name": "Apo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42722000", + "longitude": "-102.41126000" + }, + { + "id": "68312", + "name": "Aporo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67021000", + "longitude": "-100.41068000" + }, + { + "id": "68314", + "name": "Aputzio de Juárez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34183000", + "longitude": "-100.34689000" + }, + { + "id": "68315", + "name": "Aquila", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59970000", + "longitude": "-103.50454000" + }, + { + "id": "68317", + "name": "Aquiles Córdova Morán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70685000", + "longitude": "-100.53615000" + }, + { + "id": "68322", + "name": "Aquiles Serdán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00357000", + "longitude": "-102.21609000" + }, + { + "id": "68330", + "name": "Arantepacua", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59580000", + "longitude": "-101.96860000" + }, + { + "id": "68331", + "name": "Aranza", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66418000", + "longitude": "-102.02365000" + }, + { + "id": "68332", + "name": "Araró", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91136000", + "longitude": "-100.82460000" + }, + { + "id": "68350", + "name": "Ario de Rayón", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02651000", + "longitude": "-102.34814000" + }, + { + "id": "68351", + "name": "Ario de Rosales", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20900000", + "longitude": "-101.70743000" + }, + { + "id": "68373", + "name": "Arteaga", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.35779000", + "longitude": "-102.29122000" + }, + { + "id": "68388", + "name": "Atacheo de Regalado", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05874000", + "longitude": "-102.18703000" + }, + { + "id": "68390", + "name": "Atapaneo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73892000", + "longitude": "-101.11576000" + }, + { + "id": "68391", + "name": "Atapán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65057000", + "longitude": "-102.42463000" + }, + { + "id": "68395", + "name": "Atecucario de la Constitución (Atecuario)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06444000", + "longitude": "-102.23861000" + }, + { + "id": "68430", + "name": "Atotonilco", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94111000", + "longitude": "-100.22306000" + }, + { + "id": "76399", + "name": "Álvaro Obregón", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82096000", + "longitude": "-101.04008000" + }, + { + "id": "68573", + "name": "Belisario Domínguez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87140000", + "longitude": "-100.97184000" + }, + { + "id": "68578", + "name": "Bellas Fuentes", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82132000", + "longitude": "-101.67950000" + }, + { + "id": "68599", + "name": "Benito Juárez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23333000", + "longitude": "-100.46667000" + }, + { + "id": "68623", + "name": "Bocaneo (San Pedro)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83861000", + "longitude": "-100.81722000" + }, + { + "id": "68636", + "name": "Bonifacio Moreno (El Aguaje)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99167000", + "longitude": "-102.71083000" + }, + { + "id": "68652", + "name": "Briseñas", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25149000", + "longitude": "-102.57124000" + }, + { + "id": "68653", + "name": "Briseñas de Matamoros", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26821000", + "longitude": "-102.56195000" + }, + { + "id": "68675", + "name": "Buenavista", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18802000", + "longitude": "-102.58471000" + }, + { + "id": "68680", + "name": "Buenavista de Benito Juárez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46034000", + "longitude": "-98.63735000" + }, + { + "id": "68678", + "name": "Buenavista Tomatlán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21281000", + "longitude": "-102.58735000" + }, + { + "id": "68688", + "name": "Buenos Aires", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02444000", + "longitude": "-102.28583000" + }, + { + "id": "68880", + "name": "Cañada de Ramírez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29637000", + "longitude": "-101.96360000" + }, + { + "id": "68749", + "name": "Caltzontzín", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42340000", + "longitude": "-102.00673000" + }, + { + "id": "68782", + "name": "Camémbaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42722000", + "longitude": "-100.39889000" + }, + { + "id": "68772", + "name": "Campestre Tarímbaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77500000", + "longitude": "-101.12917000" + }, + { + "id": "68793", + "name": "Cantabria", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83994000", + "longitude": "-101.72652000" + }, + { + "id": "68804", + "name": "Capacho", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96457000", + "longitude": "-101.23117000" + }, + { + "id": "68814", + "name": "Capácuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54741000", + "longitude": "-102.05184000" + }, + { + "id": "68810", + "name": "Capula", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70000000", + "longitude": "-101.80000000" + }, + { + "id": "68845", + "name": "Carácuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98513000", + "longitude": "-101.04164000" + }, + { + "id": "68831", + "name": "Carona", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52667000", + "longitude": "-102.45074000" + }, + { + "id": "68866", + "name": "Caurio de Guadalupe", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92455000", + "longitude": "-101.86067000" + }, + { + "id": "68896", + "name": "Cenobio Moreno", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09629000", + "longitude": "-102.50415000" + }, + { + "id": "68924", + "name": "Cerro Colorado de Ocampo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31712000", + "longitude": "-100.46538000" + }, + { + "id": "68976", + "name": "Chapa", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37976000", + "longitude": "-101.66556000" + }, + { + "id": "68992", + "name": "Charapán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65112000", + "longitude": "-102.25190000" + }, + { + "id": "68991", + "name": "Charapendo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26383000", + "longitude": "-102.06610000" + }, + { + "id": "68998", + "name": "Charo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74966000", + "longitude": "-101.04571000" + }, + { + "id": "69004", + "name": "Chavinda", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00625000", + "longitude": "-102.46015000" + }, + { + "id": "69007", + "name": "Cherán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68536000", + "longitude": "-101.95368000" + }, + { + "id": "69008", + "name": "Cherán Atzicuirín (Cheranástico)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70000000", + "longitude": "-102.01556000" + }, + { + "id": "69067", + "name": "Chilchota", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84190000", + "longitude": "-102.08477000" + }, + { + "id": "69091", + "name": "Chiquimitío", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79507000", + "longitude": "-101.25208000" + }, + { + "id": "69095", + "name": "Chitejé de Garabato", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10111000", + "longitude": "-100.18899000" + }, + { + "id": "69111", + "name": "Chucándiro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90008000", + "longitude": "-101.33380000" + }, + { + "id": "69122", + "name": "Chupio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17836000", + "longitude": "-101.44599000" + }, + { + "id": "69123", + "name": "Churintzio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15056000", + "longitude": "-102.06469000" + }, + { + "id": "69125", + "name": "Churumuco de Morelos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.66333000", + "longitude": "-101.64741000" + }, + { + "id": "69161", + "name": "Ciudad Hidalgo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69270000", + "longitude": "-100.55445000" + }, + { + "id": "69164", + "name": "Ciudad Lázaro Cárdenas", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97066000", + "longitude": "-102.22124000" + }, + { + "id": "69213", + "name": "Coahuayana de Hidalgo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.70224000", + "longitude": "-103.66145000" + }, + { + "id": "69212", + "name": "Coahuayana Viejo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75119000", + "longitude": "-103.66798000" + }, + { + "id": "69219", + "name": "Coajomulco", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03375000", + "longitude": "-99.20428000" + }, + { + "id": "69220", + "name": "Coalcomán de Vázquez Pallares", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77750000", + "longitude": "-103.16000000" + }, + { + "id": "69243", + "name": "Cocucho", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69477000", + "longitude": "-102.18925000" + }, + { + "id": "69245", + "name": "Coeneo de la Libertad", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82195000", + "longitude": "-101.58470000" + }, + { + "id": "69254", + "name": "Cojumatlán de Régules", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11858000", + "longitude": "-102.85182000" + }, + { + "id": "69279", + "name": "Colonia Antorcha Campesina (Santa Rosa)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68000000", + "longitude": "-100.52611000" + }, + { + "id": "69280", + "name": "Colonia Aquiles Córdoba Morán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70667000", + "longitude": "-100.53528000" + }, + { + "id": "69381", + "name": "Colonia de Guadalupe", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80083000", + "longitude": "-100.91556000" + }, + { + "id": "69293", + "name": "Colonia Ecológica Asociación de Lucha Social (Lucha Social)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68833000", + "longitude": "-100.60917000" + }, + { + "id": "69386", + "name": "Colonia el Mirador (Llano del Ejido)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67583000", + "longitude": "-100.55361000" + }, + { + "id": "69297", + "name": "Colonia Emiliano Zapata (San Juan Zitácuaro)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44778000", + "longitude": "-100.30583000" + }, + { + "id": "69313", + "name": "Colonia Independencia", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61556000", + "longitude": "-100.32389000" + }, + { + "id": "69398", + "name": "Colonia las Malvinas (Colonia Antorcha)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87833000", + "longitude": "-102.22583000" + }, + { + "id": "69329", + "name": "Colonia Miguel Hidalgo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78583000", + "longitude": "-101.10139000" + }, + { + "id": "69378", + "name": "Colonia Vista Bella (Lomas del Peaje)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49083000", + "longitude": "-101.59389000" + }, + { + "id": "69415", + "name": "Comachuén", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57132000", + "longitude": "-101.90433000" + }, + { + "id": "69422", + "name": "Comanjá", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74696000", + "longitude": "-101.69080000" + }, + { + "id": "69447", + "name": "Condémbaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29292000", + "longitude": "-102.30401000" + }, + { + "id": "69457", + "name": "Conjunto Habitacional el Trébol", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76694000", + "longitude": "-101.15472000" + }, + { + "id": "69456", + "name": "Conjunto Habitacional Villas del Pedregal", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68361000", + "longitude": "-101.30361000" + }, + { + "id": "69475", + "name": "Copándaro (Copándaro del Cuatro)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90057000", + "longitude": "-101.65945000" + }, + { + "id": "69476", + "name": "Copándaro de Galeana", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89254000", + "longitude": "-101.21394000" + }, + { + "id": "69495", + "name": "Corupo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60912000", + "longitude": "-102.23479000" + }, + { + "id": "69509", + "name": "Cotija de la Paz", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80922000", + "longitude": "-102.70198000" + }, + { + "id": "69533", + "name": "Crescencio Morales (San Mateo)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49111000", + "longitude": "-100.24306000" + }, + { + "id": "69556", + "name": "Cuamio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03390000", + "longitude": "-101.15167000" + }, + { + "id": "69558", + "name": "Cuanajo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48485000", + "longitude": "-101.50794000" + }, + { + "id": "69564", + "name": "Cuaracurío", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06102000", + "longitude": "-101.14774000" + }, + { + "id": "69566", + "name": "Cuartel la Mesa (El Asoleadero)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56972000", + "longitude": "-100.28694000" + }, + { + "id": "69568", + "name": "Cuatro Caminos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98826000", + "longitude": "-102.10360000" + }, + { + "id": "69607", + "name": "Cucuchucho", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58275000", + "longitude": "-101.63111000" + }, + { + "id": "69629", + "name": "Cuitzeo del Porvenir", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97025000", + "longitude": "-101.14290000" + }, + { + "id": "69638", + "name": "Cumuato", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25724000", + "longitude": "-102.59060000" + }, + { + "id": "69643", + "name": "Cuparátaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85071000", + "longitude": "-101.08903000" + }, + { + "id": "69645", + "name": "Cupuán del Río", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77806000", + "longitude": "-102.18778000" + }, + { + "id": "69646", + "name": "Curimeo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02043000", + "longitude": "-101.69534000" + }, + { + "id": "69647", + "name": "Curungueo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46459000", + "longitude": "-100.34340000" + }, + { + "id": "69649", + "name": "Cuto de la Esperanza", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73083000", + "longitude": "-101.34028000" + }, + { + "id": "69650", + "name": "Cuto del Porvenir", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86976000", + "longitude": "-101.14339000" + }, + { + "id": "69684", + "name": "Dieciocho de Marzo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23138000", + "longitude": "-102.70570000" + }, + { + "id": "69690", + "name": "División del Norte", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08193000", + "longitude": "-102.61218000" + }, + { + "id": "69697", + "name": "Doctor Miguel Silva (San Guillermo)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96583000", + "longitude": "-101.17417000" + }, + { + "id": "69713", + "name": "Donaciano Ojeda", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49093000", + "longitude": "-100.27952000" + }, + { + "id": "69754", + "name": "Ecuandureo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16188000", + "longitude": "-102.19340000" + }, + { + "id": "69811", + "name": "Ejido el Rosario", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57185000", + "longitude": "-100.27673000" + }, + { + "id": "69828", + "name": "El Alvareño", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30078000", + "longitude": "-102.43723000" + }, + { + "id": "69854", + "name": "El Cahulote de Santa Ana", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07611000", + "longitude": "-101.58250000" + }, + { + "id": "69866", + "name": "El Capulín", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22795000", + "longitude": "-102.48991000" + }, + { + "id": "69940", + "name": "El Césped", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88250000", + "longitude": "-100.13972000" + }, + { + "id": "69896", + "name": "El Ceñidor", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00276000", + "longitude": "-102.19035000" + }, + { + "id": "69898", + "name": "El Chauz", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89195000", + "longitude": "-102.03978000" + }, + { + "id": "69910", + "name": "El Colegio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77333000", + "longitude": "-101.17750000" + }, + { + "id": "69934", + "name": "El Cuenqueño", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32745000", + "longitude": "-102.45760000" + }, + { + "id": "69937", + "name": "El Cuitzillo Grande", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77972000", + "longitude": "-101.11694000" + }, + { + "id": "69949", + "name": "El Durazno", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65314000", + "longitude": "-101.17139000" + }, + { + "id": "69966", + "name": "El Fortín", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18005000", + "longitude": "-102.60051000" + }, + { + "id": "69969", + "name": "El Fuerte", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37215000", + "longitude": "-102.06709000" + }, + { + "id": "69977", + "name": "El Guaco", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06711000", + "longitude": "-102.05760000" + }, + { + "id": "70013", + "name": "El Letrero", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96339000", + "longitude": "-102.11025000" + }, + { + "id": "70031", + "name": "El Maluco", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14434000", + "longitude": "-101.67528000" + }, + { + "id": "70087", + "name": "El Paracho", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10819000", + "longitude": "-102.52272000" + }, + { + "id": "70096", + "name": "El Pedregal", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51083000", + "longitude": "-101.44917000" + }, + { + "id": "70110", + "name": "El Platanal", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06200000", + "longitude": "-102.57779000" + }, + { + "id": "70163", + "name": "El Rincón de San Felipe (Tercera Manzana San Felipe)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50639000", + "longitude": "-100.37278000" + }, + { + "id": "70202", + "name": "El Sauz de Abajo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07500000", + "longitude": "-102.26833000" + }, + { + "id": "70221", + "name": "El Tequesquite", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30174000", + "longitude": "-102.28833000" + }, + { + "id": "70228", + "name": "El Tigre (Segunda Manzana de Crescencio Morales)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47361000", + "longitude": "-100.24417000" + }, + { + "id": "70287", + "name": "Emiliano Zapata", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33780000", + "longitude": "-101.93550000" + }, + { + "id": "70314", + "name": "Erongarícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58881000", + "longitude": "-101.72110000" + }, + { + "id": "70351", + "name": "Estación Queréndaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88285000", + "longitude": "-100.94861000" + }, + { + "id": "70377", + "name": "Etúcuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41939000", + "longitude": "-101.21547000" + }, + { + "id": "70383", + "name": "Ex-Hacienda de Guadalupe", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78417000", + "longitude": "-101.21472000" + }, + { + "id": "70397", + "name": "Felipe Carrillo Puerto", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16325000", + "longitude": "-102.70834000" + }, + { + "id": "70415", + "name": "Fraccionamiento Colinas Universidad", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01833000", + "longitude": "-102.73694000" + }, + { + "id": "70420", + "name": "Fraccionamiento Ex-Hacienda el Refugio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95083000", + "longitude": "-102.25639000" + }, + { + "id": "70421", + "name": "Fraccionamiento Galaxia Tarímbaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76167000", + "longitude": "-101.19444000" + }, + { + "id": "70424", + "name": "Fraccionamiento Laureles Eréndira", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77222000", + "longitude": "-101.13056000" + }, + { + "id": "70426", + "name": "Fraccionamiento Metrópolis II", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75639000", + "longitude": "-101.20444000" + }, + { + "id": "70428", + "name": "Fraccionamiento Misión del Valle", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76556000", + "longitude": "-101.12167000" + }, + { + "id": "70429", + "name": "Fraccionamiento Monte Olivo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98472000", + "longitude": "-102.25111000" + }, + { + "id": "70434", + "name": "Fraccionamiento Privadas del Sol", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75222000", + "longitude": "-101.19139000" + }, + { + "id": "70441", + "name": "Fraccionamiento San Miguel", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07111000", + "longitude": "-102.68667000" + }, + { + "id": "70477", + "name": "Francisco Sarabia (Cerrito Pelón)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03086000", + "longitude": "-102.70158000" + }, + { + "id": "70478", + "name": "Francisco Serrato (San Bartolo)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50680000", + "longitude": "-100.26000000" + }, + { + "id": "70481", + "name": "Francisco Villa", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87500000", + "longitude": "-100.93583000" + }, + { + "id": "70516", + "name": "Gambara", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93230000", + "longitude": "-102.11240000" + }, + { + "id": "70533", + "name": "General Francisco Villa", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74304000", + "longitude": "-102.24920000" + }, + { + "id": "70549", + "name": "Gildardo Magaña (Los Ángeles)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54889000", + "longitude": "-102.45861000" + }, + { + "id": "70567", + "name": "Guacamayas", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01932000", + "longitude": "-102.21225000" + }, + { + "id": "70643", + "name": "Guándaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19201000", + "longitude": "-101.87398000" + }, + { + "id": "70830", + "name": "Héroes de Chapultepec (Rodeo de San Antonio)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31111000", + "longitude": "-101.50250000" + }, + { + "id": "70681", + "name": "Heróica Zitácuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43612000", + "longitude": "-100.35733000" + }, + { + "id": "70723", + "name": "Huajúmbaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68210000", + "longitude": "-100.74065000" + }, + { + "id": "70731", + "name": "Huandacareo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99136000", + "longitude": "-101.27610000" + }, + { + "id": "70732", + "name": "Huanguitío", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39707000", + "longitude": "-100.48732000" + }, + { + "id": "70733", + "name": "Huaniqueo de Morales", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89682000", + "longitude": "-101.50450000" + }, + { + "id": "70771", + "name": "Huetamo de Núñez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62926000", + "longitude": "-100.89700000" + }, + { + "id": "70797", + "name": "Huiramba", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52645000", + "longitude": "-101.45959000" + }, + { + "id": "70831", + "name": "Ibarra", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22967000", + "longitude": "-102.62373000" + }, + { + "id": "70833", + "name": "Ichán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85806000", + "longitude": "-102.05417000" + }, + { + "id": "70863", + "name": "Ihuatzio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56647000", + "longitude": "-101.61649000" + }, + { + "id": "70868", + "name": "Indaparapeo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78767000", + "longitude": "-100.96907000" + }, + { + "id": "70873", + "name": "Infiernillo (Morelos de Infiernillo)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28250000", + "longitude": "-101.90111000" + }, + { + "id": "70875", + "name": "Irapeo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69334000", + "longitude": "-101.05842000" + }, + { + "id": "70877", + "name": "Iratzio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64583000", + "longitude": "-101.41194000" + }, + { + "id": "70878", + "name": "Irimbo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70083000", + "longitude": "-100.47847000" + }, + { + "id": "70881", + "name": "Isaac Arriaga (Santa Ana Mancera)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24583000", + "longitude": "-101.49361000" + }, + { + "id": "70891", + "name": "Istaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32806000", + "longitude": "-101.75361000" + }, + { + "id": "70945", + "name": "Ixtlán de los Hervores", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16895000", + "longitude": "-102.39480000" + }, + { + "id": "70954", + "name": "J. Jesús Díaz Tzirio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76667000", + "longitude": "-102.39722000" + }, + { + "id": "70959", + "name": "Jacona", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94951000", + "longitude": "-102.31788000" + }, + { + "id": "70996", + "name": "Jamaica", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85577000", + "longitude": "-101.13486000" + }, + { + "id": "71001", + "name": "Janitzio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57327000", + "longitude": "-101.65189000" + }, + { + "id": "71009", + "name": "Jarácuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56058000", + "longitude": "-101.67785000" + }, + { + "id": "71008", + "name": "Jaripeo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68026000", + "longitude": "-101.08545000" + }, + { + "id": "71037", + "name": "Jesús del Monte", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65151000", + "longitude": "-101.15227000" + }, + { + "id": "71057", + "name": "Jiquílpan de Juárez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99482000", + "longitude": "-102.71969000" + }, + { + "id": "71102", + "name": "José María Morelos (La Yegüería)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86389000", + "longitude": "-100.87917000" + }, + { + "id": "71134", + "name": "Jucutacato", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37771000", + "longitude": "-102.07924000" + }, + { + "id": "71140", + "name": "Jungapeo de Juárez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45915000", + "longitude": "-100.49483000" + }, + { + "id": "71171", + "name": "La Aldea", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74306000", + "longitude": "-101.13500000" + }, + { + "id": "71173", + "name": "La Angostura", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19639000", + "longitude": "-102.44167000" + }, + { + "id": "71191", + "name": "La Calera (Nacimientos)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27528000", + "longitude": "-101.57556000" + }, + { + "id": "71261", + "name": "La Encarnación", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41242000", + "longitude": "-100.39211000" + }, + { + "id": "71263", + "name": "La Ermita (Nueva Jerusalén)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07444000", + "longitude": "-101.50667000" + }, + { + "id": "71275", + "name": "La Esperanza", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05559000", + "longitude": "-102.41104000" + }, + { + "id": "71284", + "name": "La Estancia de Amezcua", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00735000", + "longitude": "-102.24487000" + }, + { + "id": "71297", + "name": "La Fundición (Quinta Manzana)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45528000", + "longitude": "-100.30361000" + }, + { + "id": "71304", + "name": "La Goleta", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73904000", + "longitude": "-101.08127000" + }, + { + "id": "71316", + "name": "La Higuerilla (Los Lirios)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92250000", + "longitude": "-100.27639000" + }, + { + "id": "71317", + "name": "La Higuerita (Colonia San Rafael)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61861000", + "longitude": "-102.48444000" + }, + { + "id": "71319", + "name": "La Huacana", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96312000", + "longitude": "-101.80720000" + }, + { + "id": "71322", + "name": "La Ibérica (La Gotera)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16472000", + "longitude": "-101.91611000" + }, + { + "id": "71375", + "name": "La Luz", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15234000", + "longitude": "-102.48528000" + }, + { + "id": "71391", + "name": "La Mesa (La Mesa de Cedano)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44861000", + "longitude": "-100.32722000" + }, + { + "id": "71396", + "name": "La Mintzita (Piedra Dura)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65194000", + "longitude": "-101.27750000" + }, + { + "id": "71397", + "name": "La Mira", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.03349000", + "longitude": "-102.32566000" + }, + { + "id": "71398", + "name": "La Mira Tumbiscatio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68333000", + "longitude": "-102.28333000" + }, + { + "id": "71401", + "name": "La Mojonera", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70366000", + "longitude": "-101.83343000" + }, + { + "id": "71414", + "name": "La Orilla", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "17.99583000", + "longitude": "-102.22694000" + }, + { + "id": "71423", + "name": "La Palma", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14780000", + "longitude": "-102.75850000" + }, + { + "id": "71427", + "name": "La Palma (Las Palmas)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77111000", + "longitude": "-101.14083000" + }, + { + "id": "71445", + "name": "La Piedad", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34239000", + "longitude": "-102.03050000" + }, + { + "id": "71450", + "name": "La Placita de Morelos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.53270000", + "longitude": "-103.58841000" + }, + { + "id": "71454", + "name": "La Plaza del Limón", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13524000", + "longitude": "-102.43117000" + }, + { + "id": "71478", + "name": "La Rinconoda", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04363000", + "longitude": "-102.28850000" + }, + { + "id": "71486", + "name": "La Sauceda", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09390000", + "longitude": "-102.34512000" + }, + { + "id": "71494", + "name": "La Soledad", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52111000", + "longitude": "-100.48333000" + }, + { + "id": "71565", + "name": "Lagunillas", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57070000", + "longitude": "-101.41941000" + }, + { + "id": "71583", + "name": "Las Cañadas", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29750000", + "longitude": "-101.97806000" + }, + { + "id": "71585", + "name": "Las Cañas", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.56583000", + "longitude": "-101.97611000" + }, + { + "id": "71588", + "name": "Las Cieneguitas", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24884000", + "longitude": "-102.24505000" + }, + { + "id": "71609", + "name": "Las Letras", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23083000", + "longitude": "-101.43361000" + }, + { + "id": "71898", + "name": "Lázaro Cárdenas (La Purísima)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86972000", + "longitude": "-101.02306000" + }, + { + "id": "71737", + "name": "Loma de los Hoyos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03556000", + "longitude": "-102.44278000" + }, + { + "id": "71758", + "name": "Lomas de la Maestranza", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68750000", + "longitude": "-101.33028000" + }, + { + "id": "71760", + "name": "Lombardía", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15806000", + "longitude": "-102.05111000" + }, + { + "id": "71783", + "name": "Los Cajones", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20964000", + "longitude": "-101.91317000" + }, + { + "id": "71789", + "name": "Los Charcos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26459000", + "longitude": "-102.40815000" + }, + { + "id": "71804", + "name": "Los Guajes", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26111000", + "longitude": "-102.14164000" + }, + { + "id": "71809", + "name": "Los Limones", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60032000", + "longitude": "-102.53038000" + }, + { + "id": "71831", + "name": "Los Pilares", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32582000", + "longitude": "-102.37322000" + }, + { + "id": "71852", + "name": "Los Reyes de Salgado", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59042000", + "longitude": "-102.47242000" + }, + { + "id": "71906", + "name": "Macho de Agua", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44184000", + "longitude": "-100.24100000" + }, + { + "id": "71914", + "name": "Macutzio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49917000", + "longitude": "-100.35500000" + }, + { + "id": "71965", + "name": "Manuel Villalongín", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23750000", + "longitude": "-101.52667000" + }, + { + "id": "71973", + "name": "Manzana de San Luis", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56236000", + "longitude": "-100.27703000" + }, + { + "id": "71974", + "name": "Manzana la Cofradía", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54944000", + "longitude": "-100.35583000" + }, + { + "id": "71979", + "name": "Maravatío de Ocampo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89113000", + "longitude": "-100.44443000" + }, + { + "id": "71992", + "name": "Mariano Escobedo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96481000", + "longitude": "-101.06206000" + }, + { + "id": "72086", + "name": "Mesón Nuevo (Cañada de la Magdalena)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81474000", + "longitude": "-101.16597000" + }, + { + "id": "72147", + "name": "Mineral de Angangueo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62056000", + "longitude": "-100.28436000" + }, + { + "id": "72194", + "name": "Montaña Monarca (Punta Altozano)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66056000", + "longitude": "-101.16556000" + }, + { + "id": "72214", + "name": "Monteleón", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30841000", + "longitude": "-102.20813000" + }, + { + "id": "72225", + "name": "Morelia", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70078000", + "longitude": "-101.18443000" + }, + { + "id": "72231", + "name": "Morelos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64889000", + "longitude": "-101.23889000" + }, + { + "id": "72271", + "name": "Nahuatzén", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65506000", + "longitude": "-101.91704000" + }, + { + "id": "72280", + "name": "Naranja de Tapia", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77708000", + "longitude": "-101.75947000" + }, + { + "id": "72338", + "name": "Nocupétaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04392000", + "longitude": "-101.16187000" + }, + { + "id": "72367", + "name": "Nueva Italia de Ruiz", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02492000", + "longitude": "-102.09318000" + }, + { + "id": "72410", + "name": "Nuevo San Juan Parangaricutiro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41857000", + "longitude": "-102.13087000" + }, + { + "id": "72417", + "name": "Nuevo Urecho", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16602000", + "longitude": "-101.86816000" + }, + { + "id": "72424", + "name": "Nuevo Zirosto", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54808000", + "longitude": "-102.34747000" + }, + { + "id": "72425", + "name": "Numarán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25580000", + "longitude": "-101.94988000" + }, + { + "id": "72427", + "name": "Nurío", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65656000", + "longitude": "-102.12957000" + }, + { + "id": "72439", + "name": "Ocampo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58241000", + "longitude": "-100.33913000" + }, + { + "id": "72475", + "name": "Ocurio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48254000", + "longitude": "-100.42344000" + }, + { + "id": "72490", + "name": "Ojo de Agua de Bucio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78048000", + "longitude": "-100.72815000" + }, + { + "id": "72497", + "name": "Ojo de Rana", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04839000", + "longitude": "-102.89314000" + }, + { + "id": "72514", + "name": "Opopeo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41163000", + "longitude": "-101.60515000" + }, + { + "id": "72579", + "name": "Pajacuarán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11909000", + "longitude": "-102.56623000" + }, + { + "id": "72618", + "name": "Pamatácuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69177000", + "longitude": "-102.34576000" + }, + { + "id": "72622", + "name": "Panindícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98518000", + "longitude": "-101.76096000" + }, + { + "id": "72639", + "name": "Paracho de Verduzco", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64745000", + "longitude": "-102.04897000" + }, + { + "id": "72640", + "name": "Paracuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14926000", + "longitude": "-102.21871000" + }, + { + "id": "72641", + "name": "Parahuén", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35177000", + "longitude": "-101.69204000" + }, + { + "id": "72665", + "name": "Parícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26133000", + "longitude": "-100.45867000" + }, + { + "id": "72687", + "name": "Paso de Hidalgo (Paso de Álamos)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27278000", + "longitude": "-102.54528000" + }, + { + "id": "72690", + "name": "Paso de Núñez (Buenavista)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89472000", + "longitude": "-100.94667000" + }, + { + "id": "72700", + "name": "Pastor Ortíz", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30552000", + "longitude": "-101.59588000" + }, + { + "id": "72713", + "name": "Patuán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39231000", + "longitude": "-101.91651000" + }, + { + "id": "73009", + "name": "Páreo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33259000", + "longitude": "-102.45219000" + }, + { + "id": "73010", + "name": "Pátzcuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51594000", + "longitude": "-101.60887000" + }, + { + "id": "72751", + "name": "Peña del Panal", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77333000", + "longitude": "-101.18944000" + }, + { + "id": "72720", + "name": "Pedernales", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14133000", + "longitude": "-101.46889000" + }, + { + "id": "72729", + "name": "Penjamillo de Degollado", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10410000", + "longitude": "-101.93444000" + }, + { + "id": "72732", + "name": "Peribán de Ramos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52010000", + "longitude": "-102.41397000" + }, + { + "id": "72762", + "name": "Pichátaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57289000", + "longitude": "-101.80737000" + }, + { + "id": "72784", + "name": "Pinzándaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10928000", + "longitude": "-102.54082000" + }, + { + "id": "72844", + "name": "Pomacuarán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62198000", + "longitude": "-102.10286000" + }, + { + "id": "72869", + "name": "Poturo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82592000", + "longitude": "-101.61335000" + }, + { + "id": "72889", + "name": "Presa del Rosario", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06789000", + "longitude": "-102.40909000" + }, + { + "id": "73006", + "name": "Puácuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60280000", + "longitude": "-101.67419000" + }, + { + "id": "72951", + "name": "Pueblo Viejo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77638000", + "longitude": "-100.81474000" + }, + { + "id": "72960", + "name": "Puentecillas (Tercera Manzana de Zirahuato)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50500000", + "longitude": "-100.40500000" + }, + { + "id": "72976", + "name": "Puerto de Buenavista (Lázaro Cárdenas)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68806000", + "longitude": "-101.12722000" + }, + { + "id": "72992", + "name": "Purépero de Echáiz", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91039000", + "longitude": "-102.00625000" + }, + { + "id": "72988", + "name": "Purechucho", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.58227000", + "longitude": "-100.88843000" + }, + { + "id": "72990", + "name": "Puruarán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09630000", + "longitude": "-101.52234000" + }, + { + "id": "72991", + "name": "Puruándiro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.08886000", + "longitude": "-101.51579000" + }, + { + "id": "73023", + "name": "Queréndaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69745000", + "longitude": "-100.84379000" + }, + { + "id": "73033", + "name": "Quinceo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59470000", + "longitude": "-101.99977000" + }, + { + "id": "73042", + "name": "Quiroga", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66557000", + "longitude": "-101.52287000" + }, + { + "id": "73075", + "name": "Rancho Viejo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24878000", + "longitude": "-100.41737000" + }, + { + "id": "73177", + "name": "Río Grande", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34417000", + "longitude": "-102.00556000" + }, + { + "id": "73089", + "name": "Real Hacienda (Metrópolis)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75056000", + "longitude": "-101.19694000" + }, + { + "id": "73125", + "name": "Rincón de Cedeños (Rincón de Dolores)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67806000", + "longitude": "-100.57639000" + }, + { + "id": "73126", + "name": "Rincón de Curungueo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48336000", + "longitude": "-100.34414000" + }, + { + "id": "73131", + "name": "Rincón de Nicolás Romero (Cedros Tercera Manzana)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41361000", + "longitude": "-100.29750000" + }, + { + "id": "73154", + "name": "Romero de Guzmán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02974000", + "longitude": "-102.25876000" + }, + { + "id": "73155", + "name": "Romero de Torres", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02435000", + "longitude": "-102.25295000" + }, + { + "id": "73203", + "name": "Sahuayo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05792000", + "longitude": "-102.75119000" + }, + { + "id": "73204", + "name": "Sahuayo de Morelos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05859000", + "longitude": "-102.71575000" + }, + { + "id": "73212", + "name": "Salguero", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41401000", + "longitude": "-100.62583000" + }, + { + "id": "73261", + "name": "San Agustín del Maíz", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89910000", + "longitude": "-101.16467000" + }, + { + "id": "73263", + "name": "San Agustín del Pulque", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96267000", + "longitude": "-101.07327000" + }, + { + "id": "73275", + "name": "San Andrés Coru", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46680000", + "longitude": "-101.94490000" + }, + { + "id": "73305", + "name": "San Andrés Ziróndaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66943000", + "longitude": "-101.63221000" + }, + { + "id": "73317", + "name": "San Antonio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66722000", + "longitude": "-101.26806000" + }, + { + "id": "73389", + "name": "San Antonio la Labor", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02942000", + "longitude": "-102.30075000" + }, + { + "id": "73340", + "name": "San Antonio Molinos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07533000", + "longitude": "-100.21501000" + }, + { + "id": "73350", + "name": "San Antonio Tariácuri", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88249000", + "longitude": "-101.74715000" + }, + { + "id": "73359", + "name": "San Antonio Villalongín", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53456000", + "longitude": "-100.75271000" + }, + { + "id": "73404", + "name": "San Bartolo Cuitareo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65139000", + "longitude": "-100.60111000" + }, + { + "id": "73429", + "name": "San Benito", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70714000", + "longitude": "-102.32170000" + }, + { + "id": "73433", + "name": "San Bernabé de las Canteras", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76639000", + "longitude": "-101.16333000" + }, + { + "id": "73530", + "name": "San Felipe de los Herreros", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61701000", + "longitude": "-102.18128000" + }, + { + "id": "73533", + "name": "San Felipe los Alzati (Colonia Nueva)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48972000", + "longitude": "-100.37389000" + }, + { + "id": "73587", + "name": "San Francisco Peribán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55601000", + "longitude": "-102.39844000" + }, + { + "id": "73641", + "name": "San Gregorio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19470000", + "longitude": "-102.54890000" + }, + { + "id": "73671", + "name": "San Isidro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76806000", + "longitude": "-100.20361000" + }, + { + "id": "73673", + "name": "San Isidro Alta Huerta", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72472000", + "longitude": "-100.63889000" + }, + { + "id": "73713", + "name": "San Jerónimo Purenchecuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67924000", + "longitude": "-101.61230000" + }, + { + "id": "73762", + "name": "San José Cuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98833000", + "longitude": "-101.25194000" + }, + { + "id": "73817", + "name": "San José de Gracia", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98966000", + "longitude": "-103.02198000" + }, + { + "id": "73766", + "name": "San José Huipana", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27752000", + "longitude": "-101.46990000" + }, + { + "id": "73875", + "name": "San Juan Benito Juárez (San Juan Tararameo)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91694000", + "longitude": "-101.12861000" + }, + { + "id": "73889", + "name": "San Juan De Los Platanos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13710000", + "longitude": "-102.43929000" + }, + { + "id": "73971", + "name": "San Juan de los Plátanos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13563000", + "longitude": "-102.43848000" + }, + { + "id": "73964", + "name": "San Juan de Viña", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34427000", + "longitude": "-101.47866000" + }, + { + "id": "73983", + "name": "San Juanito Itzícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67572000", + "longitude": "-101.25457000" + }, + { + "id": "73994", + "name": "San Lorenzo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98917000", + "longitude": "-101.64583000" + }, + { + "id": "74004", + "name": "San Lorenzo Itzícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67673000", + "longitude": "-101.28096000" + }, + { + "id": "74009", + "name": "San Lorenzo Queréndaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66750000", + "longitude": "-100.48861000" + }, + { + "id": "74022", + "name": "San Lucas", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59031000", + "longitude": "-100.78529000" + }, + { + "id": "74028", + "name": "San Lucas Huarirapeo (La Mesa de San Lucas)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67861000", + "longitude": "-100.62389000" + }, + { + "id": "74032", + "name": "San Lucas Pío", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79361000", + "longitude": "-100.92472000" + }, + { + "id": "74111", + "name": "San Martín Totolán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98520000", + "longitude": "-102.68017000" + }, + { + "id": "74178", + "name": "San Miguel Epejan", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06632000", + "longitude": "-101.81584000" + }, + { + "id": "74257", + "name": "San Nicolás Obispo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65272000", + "longitude": "-101.31571000" + }, + { + "id": "74410", + "name": "San Pedro de los Sauces", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78639000", + "longitude": "-101.13778000" + }, + { + "id": "74348", + "name": "San Pedro Jácuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71496000", + "longitude": "-100.64493000" + }, + { + "id": "74433", + "name": "San Rafael Tecario", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21080000", + "longitude": "-101.50627000" + }, + { + "id": "74456", + "name": "San Sebastián", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57158000", + "longitude": "-102.48066000" + }, + { + "id": "74524", + "name": "Santa Ana", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58222000", + "longitude": "-100.46889000" + }, + { + "id": "74527", + "name": "Santa Ana Amatlán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16097000", + "longitude": "-102.54059000" + }, + { + "id": "74530", + "name": "Santa Ana Chapitiro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52611000", + "longitude": "-101.65250000" + }, + { + "id": "74554", + "name": "Santa Ana de Guerrero (El Cascabel)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27639000", + "longitude": "-100.44139000" + }, + { + "id": "74539", + "name": "Santa Ana Maya", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00690000", + "longitude": "-101.02189000" + }, + { + "id": "74552", + "name": "Santa Ana Zirosto", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53512000", + "longitude": "-102.32442000" + }, + { + "id": "74569", + "name": "Santa Casilda", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15284000", + "longitude": "-101.95373000" + }, + { + "id": "74577", + "name": "Santa Catarina", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29033000", + "longitude": "-102.39845000" + }, + { + "id": "74603", + "name": "Santa Clara de Valladares", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63658000", + "longitude": "-102.49120000" + }, + { + "id": "74604", + "name": "Santa Clara del Cobre", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40580000", + "longitude": "-101.63998000" + }, + { + "id": "74605", + "name": "Santa Clara del Tule", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82389000", + "longitude": "-100.82694000" + }, + { + "id": "74655", + "name": "Santa Elena", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85861000", + "longitude": "-100.40833000" + }, + { + "id": "74664", + "name": "Santa Fé de la Laguna", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67257000", + "longitude": "-101.55487000" + }, + { + "id": "74660", + "name": "Santa Fe del Río", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20358000", + "longitude": "-101.82695000" + }, + { + "id": "74681", + "name": "Santa Juana", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43019000", + "longitude": "-101.56106000" + }, + { + "id": "74809", + "name": "Santa María de los Ángeles", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78629000", + "longitude": "-100.19938000" + }, + { + "id": "74744", + "name": "Santa María Huiramangaro (San Juan Tumbio)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51306000", + "longitude": "-101.76528000" + }, + { + "id": "74790", + "name": "Santa María Urapicho", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68139000", + "longitude": "-102.11194000" + }, + { + "id": "74840", + "name": "Santa Rosa (Santa Bárbara)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38333000", + "longitude": "-102.03611000" + }, + { + "id": "74882", + "name": "Santiago Azajo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70666000", + "longitude": "-101.68659000" + }, + { + "id": "74937", + "name": "Santiago Puriatzícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88306000", + "longitude": "-100.58861000" + }, + { + "id": "74941", + "name": "Santiago Tangamandapio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95568000", + "longitude": "-102.43546000" + }, + { + "id": "74970", + "name": "Santiago Undameo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59515000", + "longitude": "-101.28480000" + }, + { + "id": "75059", + "name": "Senguio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75386000", + "longitude": "-100.33771000" + }, + { + "id": "75064", + "name": "Sevina", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62898000", + "longitude": "-101.90057000" + }, + { + "id": "75152", + "name": "Susupuato de Guerrero", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21505000", + "longitude": "-100.40798000" + }, + { + "id": "75164", + "name": "Tacámbaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24033000", + "longitude": "-101.44730000" + }, + { + "id": "75165", + "name": "Tacámbaro de Codallos", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23502000", + "longitude": "-101.45824000" + }, + { + "id": "75166", + "name": "Tacátzcuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73009000", + "longitude": "-102.54742000" + }, + { + "id": "75157", + "name": "Tacicuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66980000", + "longitude": "-101.35967000" + }, + { + "id": "75163", + "name": "Tacuro (Santa María Tacuro)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85696000", + "longitude": "-102.05084000" + }, + { + "id": "75167", + "name": "Tafetán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41876000", + "longitude": "-100.90817000" + }, + { + "id": "75199", + "name": "Tanaco", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73943000", + "longitude": "-102.08146000" + }, + { + "id": "75205", + "name": "Tancítaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33843000", + "longitude": "-102.36264000" + }, + { + "id": "75208", + "name": "Tangancícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88294000", + "longitude": "-102.22859000" + }, + { + "id": "75211", + "name": "Tanhuato de Guerrero", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28552000", + "longitude": "-102.33113000" + }, + { + "id": "75235", + "name": "Tarímbaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79578000", + "longitude": "-101.17782000" + }, + { + "id": "75230", + "name": "Tarejero", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81941000", + "longitude": "-101.71564000" + }, + { + "id": "75231", + "name": "Taretán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33420000", + "longitude": "-101.91849000" + }, + { + "id": "75243", + "name": "Tavera", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06126000", + "longitude": "-101.55910000" + }, + { + "id": "75266", + "name": "Tecario", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23247000", + "longitude": "-101.54443000" + }, + { + "id": "75282", + "name": "Tecomatán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11514000", + "longitude": "-102.49634000" + }, + { + "id": "75393", + "name": "Tepalcatepec", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18666000", + "longitude": "-102.84930000" + }, + { + "id": "75454", + "name": "Tepuxtepec", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99135000", + "longitude": "-100.22566000" + }, + { + "id": "75557", + "name": "Tierras Coloradas (San Pedro)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71889000", + "longitude": "-100.64639000" + }, + { + "id": "75577", + "name": "Tingambato", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50109000", + "longitude": "-101.85327000" + }, + { + "id": "75578", + "name": "Tingüindín", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73921000", + "longitude": "-102.48120000" + }, + { + "id": "75580", + "name": "Tiquicheo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90301000", + "longitude": "-100.73731000" + }, + { + "id": "75581", + "name": "Tiquicheo de Nicolás Romero", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08089000", + "longitude": "-100.82552000" + }, + { + "id": "75582", + "name": "Tiríndaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77121000", + "longitude": "-101.74350000" + }, + { + "id": "75583", + "name": "Tirípetio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54897000", + "longitude": "-101.34667000" + }, + { + "id": "75650", + "name": "Tlalpujahua de Rayón", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80523000", + "longitude": "-100.17409000" + }, + { + "id": "75718", + "name": "Tocumbo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70177000", + "longitude": "-102.52323000" + }, + { + "id": "75729", + "name": "Tomendán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31142000", + "longitude": "-101.86030000" + }, + { + "id": "75747", + "name": "Toreo Bajo (El Toreo Bajo)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44472000", + "longitude": "-102.00444000" + }, + { + "id": "75806", + "name": "Tumbiscatío de Ruiz", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52667000", + "longitude": "-102.37823000" + }, + { + "id": "75808", + "name": "Tungareo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90833000", + "longitude": "-100.36639000" + }, + { + "id": "75817", + "name": "Turícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57085000", + "longitude": "-101.93747000" + }, + { + "id": "75815", + "name": "Turicato", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05402000", + "longitude": "-101.41899000" + }, + { + "id": "75820", + "name": "Tuxpan", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56788000", + "longitude": "-100.46189000" + }, + { + "id": "75830", + "name": "Tuzantla", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20289000", + "longitude": "-100.56679000" + }, + { + "id": "75843", + "name": "Tzintzimeo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87028000", + "longitude": "-100.97778000" + }, + { + "id": "75844", + "name": "Tzintzingareo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76376000", + "longitude": "-100.48524000" + }, + { + "id": "75845", + "name": "Tzintzuntzan", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60593000", + "longitude": "-101.54798000" + }, + { + "id": "75846", + "name": "Tzintzuntzán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62847000", + "longitude": "-101.57831000" + }, + { + "id": "75847", + "name": "Tziritzícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95609000", + "longitude": "-100.45945000" + }, + { + "id": "75849", + "name": "Tzitzio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44492000", + "longitude": "-100.90849000" + }, + { + "id": "75861", + "name": "Ucareo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89850000", + "longitude": "-100.68595000" + }, + { + "id": "75892", + "name": "Uricho", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57104000", + "longitude": "-101.71614000" + }, + { + "id": "75893", + "name": "Uripitio", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95338000", + "longitude": "-100.53800000" + }, + { + "id": "75898", + "name": "Uruapan", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41116000", + "longitude": "-102.05644000" + }, + { + "id": "75899", + "name": "Uruétaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79056000", + "longitude": "-101.08778000" + }, + { + "id": "75902", + "name": "Uspero", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01421000", + "longitude": "-102.26907000" + }, + { + "id": "75918", + "name": "Valle Verde", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47250000", + "longitude": "-100.35528000" + }, + { + "id": "75961", + "name": "Venustiano Carranza", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11553000", + "longitude": "-102.65391000" + }, + { + "id": "76019", + "name": "Villa Jiménez", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92306000", + "longitude": "-101.74694000" + }, + { + "id": "76030", + "name": "Villa Madero", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39150000", + "longitude": "-101.27883000" + }, + { + "id": "76032", + "name": "Villa Magna", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68361000", + "longitude": "-101.32667000" + }, + { + "id": "76057", + "name": "Villa Victoria", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75749000", + "longitude": "-103.36967000" + }, + { + "id": "76083", + "name": "Villamar", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02040000", + "longitude": "-102.59655000" + }, + { + "id": "76090", + "name": "Villas de la Loma", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69000000", + "longitude": "-101.29944000" + }, + { + "id": "76097", + "name": "Vista Hermosa de Negrete", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27169000", + "longitude": "-102.47488000" + }, + { + "id": "76249", + "name": "Yurécuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33606000", + "longitude": "-102.28382000" + }, + { + "id": "76268", + "name": "Zacapú", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81396000", + "longitude": "-101.79157000" + }, + { + "id": "76266", + "name": "Zacapu", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82189000", + "longitude": "-101.78928000" + }, + { + "id": "76294", + "name": "Zamora", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98550000", + "longitude": "-102.28387000" + }, + { + "id": "76321", + "name": "Zaragoza (Puerto de Medina)", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87389000", + "longitude": "-100.11778000" + }, + { + "id": "76332", + "name": "Zicuicho", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66309000", + "longitude": "-102.33314000" + }, + { + "id": "76333", + "name": "Zicuirán", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87788000", + "longitude": "-101.96867000" + }, + { + "id": "76342", + "name": "Zinapécuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86006000", + "longitude": "-100.82857000" + }, + { + "id": "76343", + "name": "Zináparo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16937000", + "longitude": "-101.99923000" + }, + { + "id": "76345", + "name": "Ziquítaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06212000", + "longitude": "-101.89033000" + }, + { + "id": "76346", + "name": "Ziracuaretiro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41887000", + "longitude": "-101.90884000" + }, + { + "id": "76347", + "name": "Zirahuato de los Bernal", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52124000", + "longitude": "-100.40662000" + }, + { + "id": "76348", + "name": "Zirahuén", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45334000", + "longitude": "-101.73170000" + }, + { + "id": "76349", + "name": "Zirimícuaro", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40792000", + "longitude": "-101.95840000" + }, + { + "id": "76389", + "name": "Zurumbeneo", + "state_id": 3474, + "state_code": "MIC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69981000", + "longitude": "-101.01113000" + }, + { + "id": "68020", + "name": "Abelardo L. Rodríguez", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73750000", + "longitude": "-98.98528000" + }, + { + "id": "68033", + "name": "Acamilpa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71695000", + "longitude": "-99.15724000" + }, + { + "id": "68060", + "name": "Achichipico", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94861000", + "longitude": "-98.82611000" + }, + { + "id": "68090", + "name": "Adolfo López Mateos", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80083000", + "longitude": "-100.00055000" + }, + { + "id": "68156", + "name": "Ahuehuetzingo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68024000", + "longitude": "-99.30834000" + }, + { + "id": "68199", + "name": "Alfredo V. Bonfil (Chacampalco)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65528000", + "longitude": "-99.15417000" + }, + { + "id": "68219", + "name": "Alpuyeca", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74006000", + "longitude": "-99.25937000" + }, + { + "id": "68231", + "name": "Amacuitlapilco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.69611000", + "longitude": "-98.81167000" + }, + { + "id": "68232", + "name": "Amacuzac", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60056000", + "longitude": "-99.37252000" + }, + { + "id": "68245", + "name": "Amatlán de Quetzalcoatl", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97537000", + "longitude": "-99.03742000" + }, + { + "id": "68249", + "name": "Amayuca", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72408000", + "longitude": "-98.79812000" + }, + { + "id": "68255", + "name": "Amilcingo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74274000", + "longitude": "-98.77089000" + }, + { + "id": "68270", + "name": "Anenecuilco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77738000", + "longitude": "-98.98907000" + }, + { + "id": "68366", + "name": "Arroyo Vista Hermosa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33082000", + "longitude": "-99.53694000" + }, + { + "id": "68409", + "name": "Atlacahualoya", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54057000", + "longitude": "-98.72982000" + }, + { + "id": "68410", + "name": "Atlacholoaya", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74238000", + "longitude": "-99.22656000" + }, + { + "id": "68417", + "name": "Atlatlahucan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93554000", + "longitude": "-98.89496000" + }, + { + "id": "68429", + "name": "Atotonilco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64947000", + "longitude": "-98.83117000" + }, + { + "id": "68451", + "name": "Axochiapan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50246000", + "longitude": "-98.75358000" + }, + { + "id": "68459", + "name": "Ayala", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72604000", + "longitude": "-98.95106000" + }, + { + "id": "68635", + "name": "Bonifacio García", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71786000", + "longitude": "-99.12011000" + }, + { + "id": "68671", + "name": "Buenavista", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80082000", + "longitude": "-100.04385000" + }, + { + "id": "68731", + "name": "Calera Chica", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85833000", + "longitude": "-99.18194000" + }, + { + "id": "68742", + "name": "Calle Real", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48858000", + "longitude": "-99.61332000" + }, + { + "id": "68851", + "name": "Casahuatlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57271000", + "longitude": "-99.39051000" + }, + { + "id": "68918", + "name": "Cerritos de Cárdenas", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96942000", + "longitude": "-100.02254000" + }, + { + "id": "68956", + "name": "Chalcatzingo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68951000", + "longitude": "-98.77434000" + }, + { + "id": "69002", + "name": "Chavarría", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72575000", + "longitude": "-99.46826000" + }, + { + "id": "69041", + "name": "Chiconcuac", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78278000", + "longitude": "-99.20722000" + }, + { + "id": "69081", + "name": "Chinameca", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62220000", + "longitude": "-98.99766000" + }, + { + "id": "69145", + "name": "Ciudad Ayala", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76694000", + "longitude": "-98.98222000" + }, + { + "id": "69201", + "name": "Cliserio Alanís (San Gaspar)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86111000", + "longitude": "-99.16000000" + }, + { + "id": "69218", + "name": "Coahuixtla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57417000", + "longitude": "-99.37000000" + }, + { + "id": "69229", + "name": "Coatetelco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72963000", + "longitude": "-99.32605000" + }, + { + "id": "69230", + "name": "Coatlán del Río", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74423000", + "longitude": "-99.43324000" + }, + { + "id": "69240", + "name": "Cocoyoc", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88417000", + "longitude": "-98.98194000" + }, + { + "id": "69242", + "name": "Cocoyotla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75445000", + "longitude": "-99.45075000" + }, + { + "id": "69406", + "name": "Colonia Ángel Bocanegra (Adolfo López Mateos)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92639000", + "longitude": "-99.02972000" + }, + { + "id": "69384", + "name": "Colonia el Florido", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73833000", + "longitude": "-99.36722000" + }, + { + "id": "69396", + "name": "Colonia las Arboledas", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78528000", + "longitude": "-98.93972000" + }, + { + "id": "69401", + "name": "Colonia los Cerritos", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95389000", + "longitude": "-99.19250000" + }, + { + "id": "69343", + "name": "Colonia Obrera", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93167000", + "longitude": "-99.03889000" + }, + { + "id": "69347", + "name": "Colonia Palo Prieto (Chipitongo)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.70417000", + "longitude": "-99.11278000" + }, + { + "id": "69361", + "name": "Colonia San Francisco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89611000", + "longitude": "-98.90361000" + }, + { + "id": "69462", + "name": "Constancio Farfán (La Pascuala)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74194000", + "longitude": "-98.95389000" + }, + { + "id": "69572", + "name": "Cuauchichinola", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.66389000", + "longitude": "-99.37583000" + }, + { + "id": "69576", + "name": "Cuauhtempan (San Andrés Cuauhtempan)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97472000", + "longitude": "-98.94639000" + }, + { + "id": "69591", + "name": "Cuautla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81060000", + "longitude": "-98.93525000" + }, + { + "id": "69614", + "name": "Cuentepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86159000", + "longitude": "-99.32611000" + }, + { + "id": "69615", + "name": "Cuernavaca", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95532000", + "longitude": "-99.24002000" + }, + { + "id": "69721", + "name": "Dos Ríos", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37467000", + "longitude": "-99.34359000" + }, + { + "id": "69871", + "name": "El Carmen", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88796000", + "longitude": "-98.95732000" + }, + { + "id": "69965", + "name": "El Estudiante", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57760000", + "longitude": "-99.29712000" + }, + { + "id": "70039", + "name": "El Mirador", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77139000", + "longitude": "-99.34139000" + }, + { + "id": "70168", + "name": "El Rodeo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77864000", + "longitude": "-99.32269000" + }, + { + "id": "70188", + "name": "El Salitre", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.67583000", + "longitude": "-98.95806000" + }, + { + "id": "70277", + "name": "Emiliano Zapata", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84065000", + "longitude": "-99.18463000" + }, + { + "id": "70291", + "name": "Emiliano Zapata (Casahuates)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93056000", + "longitude": "-98.95889000" + }, + { + "id": "70307", + "name": "Enthavi", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49842000", + "longitude": "-99.57502000" + }, + { + "id": "70385", + "name": "Ex-Hacienda el Hospital", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83111000", + "longitude": "-98.99667000" + }, + { + "id": "70400", + "name": "Felipe Neri (Cuatepec)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03944000", + "longitude": "-98.94361000" + }, + { + "id": "70425", + "name": "Fraccionamiento Lomas de Ahuatlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95444000", + "longitude": "-99.25722000" + }, + { + "id": "70443", + "name": "Fraccionamiento Universo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96167000", + "longitude": "-99.18639000" + }, + { + "id": "70508", + "name": "Galeana", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63810000", + "longitude": "-99.21240000" + }, + { + "id": "70698", + "name": "Higuerón", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57750000", + "longitude": "-99.18056000" + }, + { + "id": "70721", + "name": "Huajintlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60923000", + "longitude": "-99.42432000" + }, + { + "id": "70741", + "name": "Huatecalco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.67676000", + "longitude": "-99.14354000" + }, + { + "id": "70754", + "name": "Huazulco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75299000", + "longitude": "-98.77535000" + }, + { + "id": "70756", + "name": "Huecahuasco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93694000", + "longitude": "-98.78250000" + }, + { + "id": "70770", + "name": "Huepalcalco (San Miguel)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90889000", + "longitude": "-98.75000000" + }, + { + "id": "70774", + "name": "Hueyapan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88970000", + "longitude": "-98.68200000" + }, + { + "id": "70798", + "name": "Huitchila", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63880000", + "longitude": "-98.92529000" + }, + { + "id": "70806", + "name": "Huitzilac", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02983000", + "longitude": "-99.26788000" + }, + { + "id": "70809", + "name": "Huitzililla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.69425000", + "longitude": "-98.89687000" + }, + { + "id": "70840", + "name": "Ignacio Bastida (Santa Catarina Tlayca)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94028000", + "longitude": "-99.01444000" + }, + { + "id": "70871", + "name": "Independencia", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87716000", + "longitude": "-99.12237000" + }, + { + "id": "70894", + "name": "Itzamatitlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90942000", + "longitude": "-99.02236000" + }, + { + "id": "70943", + "name": "Ixtlilco el Chico", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.55833000", + "longitude": "-98.84694000" + }, + { + "id": "70985", + "name": "Jaltepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72960000", + "longitude": "-98.63456000" + }, + { + "id": "71003", + "name": "Jantetelco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71828000", + "longitude": "-98.77760000" + }, + { + "id": "71041", + "name": "Jicarero", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61488000", + "longitude": "-99.22344000" + }, + { + "id": "71061", + "name": "Jiutepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88139000", + "longitude": "-99.17778000" + }, + { + "id": "71069", + "name": "Jojutla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61472000", + "longitude": "-99.18028000" + }, + { + "id": "71079", + "name": "Jonacatepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68081000", + "longitude": "-98.80336000" + }, + { + "id": "71124", + "name": "Juan Morales", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81139000", + "longitude": "-98.92194000" + }, + { + "id": "71139", + "name": "Jumiltepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91359000", + "longitude": "-98.77666000" + }, + { + "id": "71320", + "name": "La Huanica", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45956000", + "longitude": "-99.50079000" + }, + { + "id": "71330", + "name": "La Joya", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.66667000", + "longitude": "-99.46667000" + }, + { + "id": "71517", + "name": "La Unidad Huitzizilapan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42223000", + "longitude": "-99.39771000" + }, + { + "id": "71897", + "name": "Lázaro Cárdenas (El Empalme)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93222000", + "longitude": "-99.02528000" + }, + { + "id": "71715", + "name": "Loma Bonita", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93144000", + "longitude": "-99.17564000" + }, + { + "id": "71743", + "name": "Lomas de Ahuatepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97139000", + "longitude": "-99.18972000" + }, + { + "id": "71773", + "name": "Los Arcos", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88722000", + "longitude": "-99.02417000" + }, + { + "id": "71987", + "name": "Marcelino Rodríguez (San Ignacio)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57889000", + "longitude": "-98.74361000" + }, + { + "id": "72043", + "name": "Mazatepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72795000", + "longitude": "-99.36339000" + }, + { + "id": "72089", + "name": "Metepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87889000", + "longitude": "-98.74667000" + }, + { + "id": "72114", + "name": "Miacatlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76203000", + "longitude": "-99.35944000" + }, + { + "id": "72119", + "name": "Michapa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.70241000", + "longitude": "-99.47907000" + }, + { + "id": "72126", + "name": "Miguel Bocanegra", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84574000", + "longitude": "-99.11193000" + }, + { + "id": "72170", + "name": "Mixtlalcingo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80333000", + "longitude": "-98.90028000" + }, + { + "id": "72247", + "name": "Moyotepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72084000", + "longitude": "-98.99471000" + }, + { + "id": "72287", + "name": "Narciso Mendoza", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87417000", + "longitude": "-98.96972000" + }, + { + "id": "72312", + "name": "Nepopualco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99926000", + "longitude": "-98.94270000" + }, + { + "id": "72335", + "name": "Ninguno [Centro de Readaptación Social de Atlacholoaya]", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75778000", + "longitude": "-99.22944000" + }, + { + "id": "72430", + "name": "Oacalco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92342000", + "longitude": "-99.02935000" + }, + { + "id": "72434", + "name": "Oaxtepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91825000", + "longitude": "-98.95644000" + }, + { + "id": "72462", + "name": "Ocoxaltepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93500000", + "longitude": "-98.75250000" + }, + { + "id": "72473", + "name": "Ocuituco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87731000", + "longitude": "-98.77323000" + }, + { + "id": "72501", + "name": "Olintepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74056000", + "longitude": "-98.98722000" + }, + { + "id": "73013", + "name": "Pérez de Galeana", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97933000", + "longitude": "-99.14164000" + }, + { + "id": "72750", + "name": "Peña Flores (Palo Verde)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86722000", + "longitude": "-98.96833000" + }, + { + "id": "72724", + "name": "Pedro Amaro", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59639000", + "longitude": "-99.17306000" + }, + { + "id": "72911", + "name": "Progreso", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88008000", + "longitude": "-99.15260000" + }, + { + "id": "72936", + "name": "Pueblo Nuevo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.70068000", + "longitude": "-99.15277000" + }, + { + "id": "72945", + "name": "Pueblo Nuevo de Morelos", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76245000", + "longitude": "-99.05385000" + }, + { + "id": "72956", + "name": "Puente de Ixtla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61472000", + "longitude": "-99.31806000" + }, + { + "id": "73005", + "name": "Puxtla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81000000", + "longitude": "-98.98250000" + }, + { + "id": "73016", + "name": "Quebrantadero", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52429000", + "longitude": "-98.79023000" + }, + { + "id": "73101", + "name": "Reyes Acozac", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77550000", + "longitude": "-98.98079000" + }, + { + "id": "73210", + "name": "Salazar", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30767000", + "longitude": "-99.38863000" + }, + { + "id": "73276", + "name": "San Andrés Cuexcontitlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35892000", + "longitude": "-99.62151000" + }, + { + "id": "73306", + "name": "San Andrés de la Cal", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95694000", + "longitude": "-99.11444000" + }, + { + "id": "73289", + "name": "San Andrés Ocotlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19297000", + "longitude": "-99.58612000" + }, + { + "id": "73329", + "name": "San Antonio Chiverías", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65222000", + "longitude": "-99.22139000" + }, + { + "id": "73381", + "name": "San Antonio del Puente", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41832000", + "longitude": "-99.61734000" + }, + { + "id": "73428", + "name": "San Bartolomé Tlaltelulco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22738000", + "longitude": "-99.62964000" + }, + { + "id": "73487", + "name": "San Diego", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00833000", + "longitude": "-99.65434000" + }, + { + "id": "73492", + "name": "San Diego Alcalá", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45121000", + "longitude": "-99.62115000" + }, + { + "id": "73494", + "name": "San Diego Linares", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38628000", + "longitude": "-99.63748000" + }, + { + "id": "73525", + "name": "San Felipe Teotitlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80431000", + "longitude": "-98.70106000" + }, + { + "id": "73555", + "name": "San Francisco Chimalpa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44279000", + "longitude": "-99.34398000" + }, + { + "id": "73599", + "name": "San Francisco Tetetla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11669000", + "longitude": "-99.60141000" + }, + { + "id": "73606", + "name": "San Francisco Zacacalco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92875000", + "longitude": "-98.98279000" + }, + { + "id": "73632", + "name": "San Gabriel las Palmas", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61417000", + "longitude": "-99.34694000" + }, + { + "id": "73635", + "name": "San Gaspar Tlahuelilpan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24290000", + "longitude": "-99.54568000" + }, + { + "id": "73701", + "name": "San Jerónimo Acazulco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26563000", + "longitude": "-99.41629000" + }, + { + "id": "73706", + "name": "San Jerónimo Chicahualco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28279000", + "longitude": "-99.59290000" + }, + { + "id": "73737", + "name": "San José", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00777000", + "longitude": "-99.66345000" + }, + { + "id": "73752", + "name": "San José Buenavista el Grande", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40833000", + "longitude": "-99.58141000" + }, + { + "id": "73759", + "name": "San José Comalco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47097000", + "longitude": "-99.62627000" + }, + { + "id": "73849", + "name": "San José el Llanito", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30337000", + "longitude": "-99.47950000" + }, + { + "id": "73801", + "name": "San José Vista Hermosa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65443000", + "longitude": "-99.26622000" + }, + { + "id": "73734", + "name": "San Jose Solís", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99877000", + "longitude": "-100.04922000" + }, + { + "id": "73863", + "name": "San Juan Ahuehueyo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71500000", + "longitude": "-98.93278000" + }, + { + "id": "73978", + "name": "San Juan la Isla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13027000", + "longitude": "-99.57076000" + }, + { + "id": "73917", + "name": "San Juan Pueblo Nuevo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77583000", + "longitude": "-99.01976000" + }, + { + "id": "73937", + "name": "San Juan Texcalpan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93583000", + "longitude": "-98.92889000" + }, + { + "id": "73939", + "name": "San Juan Tilapa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22021000", + "longitude": "-99.66012000" + }, + { + "id": "73950", + "name": "San Juan Xochiaca", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01349000", + "longitude": "-99.53938000" + }, + { + "id": "73955", + "name": "San Juan Yautepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34887000", + "longitude": "-99.34045000" + }, + { + "id": "73957", + "name": "San Juan Zitlaltepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81207000", + "longitude": "-99.14526000" + }, + { + "id": "74001", + "name": "San Lorenzo Cuauhtenco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19573000", + "longitude": "-99.63156000" + }, + { + "id": "74007", + "name": "San Lorenzo Nenamicoyan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13699000", + "longitude": "-99.63877000" + }, + { + "id": "74008", + "name": "San Lorenzo Oyamel", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43355000", + "longitude": "-99.57761000" + }, + { + "id": "74048", + "name": "San Luis Ayucán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49597000", + "longitude": "-99.36312000" + }, + { + "id": "74080", + "name": "San Marcos de la Cruz", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18682000", + "longitude": "-99.65430000" + }, + { + "id": "74118", + "name": "San Mateo Atarasquíllo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32304000", + "longitude": "-99.46156000" + }, + { + "id": "74131", + "name": "San Mateo Otzacatipan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33273000", + "longitude": "-99.60345000" + }, + { + "id": "74151", + "name": "San Miguel", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86852000", + "longitude": "-99.13448000" + }, + { + "id": "74158", + "name": "San Miguel Almaya", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21047000", + "longitude": "-99.44195000" + }, + { + "id": "74162", + "name": "San Miguel Ameyalco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30681000", + "longitude": "-99.45880000" + }, + { + "id": "74164", + "name": "San Miguel Atepoxco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74498000", + "longitude": "-98.74038000" + }, + { + "id": "74168", + "name": "San Miguel Balderas", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10943000", + "longitude": "-99.65165000" + }, + { + "id": "74231", + "name": "San Miguel de La Victoria", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05611000", + "longitude": "-99.59109000" + }, + { + "id": "74219", + "name": "San Miguel Totoltepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32402000", + "longitude": "-99.57779000" + }, + { + "id": "74255", + "name": "San Nicolás Coatepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13735000", + "longitude": "-99.42948000" + }, + { + "id": "74259", + "name": "San Nicolás Peralta", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35954000", + "longitude": "-99.48555000" + }, + { + "id": "74261", + "name": "San Nicolás Solís", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99107000", + "longitude": "-100.02610000" + }, + { + "id": "74264", + "name": "San Nicolás Tlazala", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22623000", + "longitude": "-99.46372000" + }, + { + "id": "74285", + "name": "San Pablo Autopan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35638000", + "longitude": "-99.65724000" + }, + { + "id": "74312", + "name": "San Pedro Apatlaco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79306000", + "longitude": "-98.95972000" + }, + { + "id": "74316", + "name": "San Pedro Atlapulco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24402000", + "longitude": "-99.39505000" + }, + { + "id": "74325", + "name": "San Pedro Chochula", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26359000", + "longitude": "-99.48590000" + }, + { + "id": "74339", + "name": "San Pedro Huaquilpan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98840000", + "longitude": "-98.86777000" + }, + { + "id": "74375", + "name": "San Pedro Techuchulco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11359000", + "longitude": "-99.52425000" + }, + { + "id": "74386", + "name": "San Pedro Tlaltizapan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19973000", + "longitude": "-99.49956000" + }, + { + "id": "74392", + "name": "San Pedro Totoltepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31108000", + "longitude": "-99.57197000" + }, + { + "id": "74395", + "name": "San Pedro Tultepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26514000", + "longitude": "-99.50934000" + }, + { + "id": "74397", + "name": "San Pedro Xalpa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82666000", + "longitude": "-99.18466000" + }, + { + "id": "74403", + "name": "San Pedro Zictepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03659000", + "longitude": "-99.57771000" + }, + { + "id": "74437", + "name": "San Rafael Zaragoza", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64166000", + "longitude": "-99.00399000" + }, + { + "id": "74454", + "name": "San Sebastián", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78431000", + "longitude": "-99.05560000" + }, + { + "id": "74508", + "name": "San Vicente de Juárez", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68343000", + "longitude": "-98.98517000" + }, + { + "id": "74538", + "name": "Santa Ana Jilotzingo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45617000", + "longitude": "-99.48836000" + }, + { + "id": "74572", + "name": "Santa Catarina", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96972000", + "longitude": "-99.14028000" + }, + { + "id": "74619", + "name": "Santa Cruz Ayotuxco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38273000", + "longitude": "-99.37192000" + }, + { + "id": "74637", + "name": "Santa Cruz Pueblo Nuevo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09864000", + "longitude": "-99.65531000" + }, + { + "id": "74709", + "name": "Santa María Ajoloapan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76360000", + "longitude": "-98.95908000" + }, + { + "id": "74716", + "name": "Santa María Atarasquillo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32831000", + "longitude": "-99.46899000" + }, + { + "id": "74757", + "name": "Santa María Magdalena Ocotitlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23713000", + "longitude": "-99.62418000" + }, + { + "id": "74698", + "name": "Santa Martha", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05977000", + "longitude": "-99.38132000" + }, + { + "id": "74846", + "name": "Santa Rosa Treinta", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.70025000", + "longitude": "-99.18357000" + }, + { + "id": "74877", + "name": "Santiago Analco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33116000", + "longitude": "-99.45208000" + }, + { + "id": "74933", + "name": "Santiago Oxthoc", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11599000", + "longitude": "-99.54422000" + }, + { + "id": "74969", + "name": "Santiago Tílapa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18953000", + "longitude": "-99.42089000" + }, + { + "id": "74945", + "name": "Santiago Tepatlaxco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47485000", + "longitude": "-99.34410000" + }, + { + "id": "74999", + "name": "Santo Domingo Aztacameca", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78223000", + "longitude": "-98.76811000" + }, + { + "id": "75004", + "name": "Santo Domingo Ocotitlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01445000", + "longitude": "-99.06101000" + }, + { + "id": "75259", + "name": "Tecajec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79806000", + "longitude": "-98.81500000" + }, + { + "id": "75301", + "name": "Tehuixtla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.55944000", + "longitude": "-99.27119000" + }, + { + "id": "75319", + "name": "Telixtac", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.56031000", + "longitude": "-98.77625000" + }, + { + "id": "75336", + "name": "Temimilcingo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72954000", + "longitude": "-99.16071000" + }, + { + "id": "75337", + "name": "Temixco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85254000", + "longitude": "-99.22537000" + }, + { + "id": "75338", + "name": "Temoac", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77222000", + "longitude": "-98.77750000" + }, + { + "id": "75351", + "name": "Tenango", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62253000", + "longitude": "-98.75175000" + }, + { + "id": "75365", + "name": "Tenextepango", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72889000", + "longitude": "-98.95778000" + }, + { + "id": "75394", + "name": "Tepalcingo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60151000", + "longitude": "-98.86942000" + }, + { + "id": "75432", + "name": "Tepetzingo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78537000", + "longitude": "-99.17758000" + }, + { + "id": "75453", + "name": "Tepoztlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98622000", + "longitude": "-99.10051000" + }, + { + "id": "75456", + "name": "Tequesquitengo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61096000", + "longitude": "-99.26025000" + }, + { + "id": "75474", + "name": "Tetecala", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73009000", + "longitude": "-99.40021000" + }, + { + "id": "75475", + "name": "Tetecalita", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76823000", + "longitude": "-99.17749000" + }, + { + "id": "75476", + "name": "Tetecolala", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92250000", + "longitude": "-99.16278000" + }, + { + "id": "75479", + "name": "Tetela del Volcán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89306000", + "longitude": "-98.72972000" + }, + { + "id": "75483", + "name": "Tetelilla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61349000", + "longitude": "-98.77356000" + }, + { + "id": "75502", + "name": "Texcala", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93444000", + "longitude": "-98.79472000" + }, + { + "id": "75532", + "name": "Tezoyuca", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80498000", + "longitude": "-99.20212000" + }, + { + "id": "75538", + "name": "Tianguistongo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00612000", + "longitude": "-99.03845000" + }, + { + "id": "75542", + "name": "Ticumán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75671000", + "longitude": "-99.11991000" + }, + { + "id": "75552", + "name": "Tierra Larga (Campo Nuevo)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86444000", + "longitude": "-98.94806000" + }, + { + "id": "75570", + "name": "Tilzapotla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.48916000", + "longitude": "-99.27442000" + }, + { + "id": "75598", + "name": "Tlachaloya", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44846000", + "longitude": "-99.66225000" + }, + { + "id": "75617", + "name": "Tlacotepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81444000", + "longitude": "-98.74514000" + }, + { + "id": "75626", + "name": "Tlacuitlapa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12209000", + "longitude": "-99.41534000" + }, + { + "id": "75646", + "name": "Tlalnepantla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00885000", + "longitude": "-98.99613000" + }, + { + "id": "75655", + "name": "Tlaltenanguito", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49822000", + "longitude": "-99.58309000" + }, + { + "id": "75658", + "name": "Tlaltetelco (San Miguel Tlaltetelco)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95222000", + "longitude": "-98.88806000" + }, + { + "id": "75659", + "name": "Tlaltizapán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68630000", + "longitude": "-99.11868000" + }, + { + "id": "75679", + "name": "Tlapanaloya", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93619000", + "longitude": "-99.09664000" + }, + { + "id": "75682", + "name": "Tlaquiltenango", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63429000", + "longitude": "-99.16320000" + }, + { + "id": "75686", + "name": "Tlatenchi", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59639000", + "longitude": "-99.18639000" + }, + { + "id": "75705", + "name": "Tlayacapan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95556000", + "longitude": "-98.98111000" + }, + { + "id": "75752", + "name": "Totolapan", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98487000", + "longitude": "-98.92073000" + }, + { + "id": "75780", + "name": "Tres de Mayo", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86861000", + "longitude": "-99.20833000" + }, + { + "id": "75774", + "name": "Tres Marías", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05490000", + "longitude": "-99.24301000" + }, + { + "id": "75870", + "name": "Unidad Habitacional 10 de Abril", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75444000", + "longitude": "-98.91611000" + }, + { + "id": "75872", + "name": "Unidad Habitacional José María Morelos y Pavón", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82028000", + "longitude": "-99.26222000" + }, + { + "id": "75873", + "name": "Unidad Habitacional Mariano Matamoros", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74750000", + "longitude": "-98.85222000" + }, + { + "id": "75874", + "name": "Unidad Habitacional Rinconada Acolapa", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89722000", + "longitude": "-99.13139000" + }, + { + "id": "75926", + "name": "Valle de Vázquez", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52858000", + "longitude": "-99.06943000" + }, + { + "id": "76043", + "name": "Villa Santiago", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97972000", + "longitude": "-99.18528000" + }, + { + "id": "76119", + "name": "Xalostoc", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72251000", + "longitude": "-98.89877000" + }, + { + "id": "76159", + "name": "Xochicalco (Cirenio Longares)", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78722000", + "longitude": "-99.29944000" + }, + { + "id": "76172", + "name": "Xochitepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78080000", + "longitude": "-99.23049000" + }, + { + "id": "76177", + "name": "Xochitlán", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88865000", + "longitude": "-98.81209000" + }, + { + "id": "76201", + "name": "Xoxocotla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68415000", + "longitude": "-99.24577000" + }, + { + "id": "76221", + "name": "Yautepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88188000", + "longitude": "-99.06715000" + }, + { + "id": "76228", + "name": "Yecapixteca", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88230000", + "longitude": "-98.90272000" + }, + { + "id": "76229", + "name": "Yecapixtla", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88333000", + "longitude": "-98.86500000" + }, + { + "id": "76263", + "name": "Zacapalco", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63917000", + "longitude": "-98.95944000" + }, + { + "id": "76274", + "name": "Zacatepec", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65409000", + "longitude": "-99.18981000" + }, + { + "id": "76288", + "name": "Zacualpan de Amilpas", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78389000", + "longitude": "-98.76583000" + }, + { + "id": "76322", + "name": "Zaragoza de Guadalupe", + "state_id": 3465, + "state_code": "MOR", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14830000", + "longitude": "-99.64405000" + }, + { + "id": "68038", + "name": "Acaponeta", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.49396000", + "longitude": "-105.36369000" + }, + { + "id": "68136", + "name": "Ahuacatlán", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05405000", + "longitude": "-104.48398000" + }, + { + "id": "68236", + "name": "Amapa", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.78359000", + "longitude": "-105.25482000" + }, + { + "id": "68244", + "name": "Amatlán de Cañas", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80699000", + "longitude": "-104.40408000" + }, + { + "id": "68321", + "name": "Aquiles Serdán", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.38198000", + "longitude": "-104.88891000" + }, + { + "id": "68404", + "name": "Aticama", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.48387000", + "longitude": "-105.19787000" + }, + { + "id": "68427", + "name": "Atonalisco", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.66551000", + "longitude": "-104.83949000" + }, + { + "id": "68447", + "name": "Aután", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.68973000", + "longitude": "-105.30750000" + }, + { + "id": "68579", + "name": "Bellavista", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.56236000", + "longitude": "-104.88267000" + }, + { + "id": "68656", + "name": "Bucerías", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75626000", + "longitude": "-105.33438000" + }, + { + "id": "68881", + "name": "Cañada del Tabaco", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.70972000", + "longitude": "-105.35417000" + }, + { + "id": "68756", + "name": "Camalotita", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.40453000", + "longitude": "-105.43156000" + }, + { + "id": "68764", + "name": "Camichín de Jauja", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.46532000", + "longitude": "-104.80080000" + }, + { + "id": "68979", + "name": "Chapalilla", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.18852000", + "longitude": "-104.63783000" + }, + { + "id": "69064", + "name": "Chilapa", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03138000", + "longitude": "-105.23057000" + }, + { + "id": "69295", + "name": "Colonia Emiliano Zapata", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.82861000", + "longitude": "-105.21972000" + }, + { + "id": "69348", + "name": "Colonia Paraíso Escondido", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05333000", + "longitude": "-105.23833000" + }, + { + "id": "69429", + "name": "Compostela", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.23777000", + "longitude": "-104.90010000" + }, + { + "id": "69489", + "name": "Corral del Risco (Punta de Mita)", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.77361000", + "longitude": "-105.51667000" + }, + { + "id": "69546", + "name": "Cruz de Huanacaxtle", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75415000", + "longitude": "-105.37734000" + }, + { + "id": "69555", + "name": "Cuamiles", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.92347000", + "longitude": "-105.25405000" + }, + { + "id": "69827", + "name": "El Ahuacate", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.51535000", + "longitude": "-104.94436000" + }, + { + "id": "69849", + "name": "El Botadero", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.75404000", + "longitude": "-105.28640000" + }, + { + "id": "69861", + "name": "El Capomal", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.83935000", + "longitude": "-105.12116000" + }, + { + "id": "69928", + "name": "El Corte", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.72025000", + "longitude": "-105.24488000" + }, + { + "id": "70005", + "name": "El Jicote", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.72545000", + "longitude": "-105.05787000" + }, + { + "id": "70022", + "name": "El Llano", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.41854000", + "longitude": "-105.17963000" + }, + { + "id": "70175", + "name": "El Rosario", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89195000", + "longitude": "-104.46836000" + }, + { + "id": "70211", + "name": "El Tamarindo", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95810000", + "longitude": "-105.23220000" + }, + { + "id": "70230", + "name": "El Tizate", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.80179000", + "longitude": "-105.11670000" + }, + { + "id": "70247", + "name": "El Vado de San Pedro", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.94742000", + "longitude": "-105.18005000" + }, + { + "id": "70253", + "name": "El Venado", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.94426000", + "longitude": "-105.00100000" + }, + { + "id": "70283", + "name": "Emiliano Zapata", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.36477000", + "longitude": "-104.91283000" + }, + { + "id": "70398", + "name": "Felipe Carrillo Puerto", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13200000", + "longitude": "-104.86068000" + }, + { + "id": "70468", + "name": "Francisco I. Madero", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.58186000", + "longitude": "-104.81927000" + }, + { + "id": "70601", + "name": "Guadalupe Victoria", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.67972000", + "longitude": "-105.32750000" + }, + { + "id": "70692", + "name": "Higuera Blanca", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79746000", + "longitude": "-105.46747000" + }, + { + "id": "70718", + "name": "Huajicori", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.63667000", + "longitude": "-105.31972000" + }, + { + "id": "70719", + "name": "Huajimic", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.68347000", + "longitude": "-104.31542000" + }, + { + "id": "70930", + "name": "Ixtapan de la Concepción", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.30774000", + "longitude": "-105.15773000" + }, + { + "id": "70946", + "name": "Ixtlán del Río", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03907000", + "longitude": "-104.37116000" + }, + { + "id": "70969", + "name": "Jalcocotán", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.48122000", + "longitude": "-105.09851000" + }, + { + "id": "71030", + "name": "Jesús María", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.25056000", + "longitude": "-104.51792000" + }, + { + "id": "71077", + "name": "Jomulco", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10394000", + "longitude": "-104.42378000" + }, + { + "id": "71118", + "name": "Juan Escutia (Borbollón)", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.16741000", + "longitude": "-104.86698000" + }, + { + "id": "71200", + "name": "La Cantera", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.50308000", + "longitude": "-104.82237000" + }, + { + "id": "71246", + "name": "La Corregidora", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.44417000", + "longitude": "-104.81222000" + }, + { + "id": "71295", + "name": "La Fortuna", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.55285000", + "longitude": "-104.95077000" + }, + { + "id": "71312", + "name": "La Guásima", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.40607000", + "longitude": "-105.38767000" + }, + { + "id": "71339", + "name": "La Labor", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.37299000", + "longitude": "-104.71910000" + }, + { + "id": "71355", + "name": "La Libertad", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.59347000", + "longitude": "-105.17365000" + }, + { + "id": "71422", + "name": "La Palma", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.49172000", + "longitude": "-105.17817000" + }, + { + "id": "71444", + "name": "La Peñita de Jaltomba", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03884000", + "longitude": "-105.24792000" + }, + { + "id": "71457", + "name": "La Presa", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.34358000", + "longitude": "-105.39350000" + }, + { + "id": "71537", + "name": "La Yesca", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.31871000", + "longitude": "-104.01161000" + }, + { + "id": "71606", + "name": "Las Jarretaderas", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69250000", + "longitude": "-105.27389000" + }, + { + "id": "71648", + "name": "Las Varas", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.18021000", + "longitude": "-105.13595000" + }, + { + "id": "71697", + "name": "Llano del Tigre", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.12707000", + "longitude": "-105.30581000" + }, + { + "id": "71702", + "name": "Lo de Lamedo", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.53843000", + "longitude": "-104.93945000" + }, + { + "id": "71703", + "name": "Lo de Marcos", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.95509000", + "longitude": "-105.35223000" + }, + { + "id": "71765", + "name": "Los Aguajes", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10729000", + "longitude": "-104.35447000" + }, + { + "id": "71826", + "name": "Los Otates", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.70427000", + "longitude": "-105.37622000" + }, + { + "id": "72263", + "name": "Méxpan", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03567000", + "longitude": "-104.41479000" + }, + { + "id": "72057", + "name": "Mecatán", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.53643000", + "longitude": "-105.11946000" + }, + { + "id": "72082", + "name": "Mesa del Nayar", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21770000", + "longitude": "-104.65352000" + }, + { + "id": "72106", + "name": "Mezcales", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73072000", + "longitude": "-105.28257000" + }, + { + "id": "72139", + "name": "Milpas Viejas", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.36478000", + "longitude": "-105.47549000" + }, + { + "id": "72180", + "name": "Mojarras", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.42592000", + "longitude": "-104.60851000" + }, + { + "id": "72220", + "name": "Monteón", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99108000", + "longitude": "-105.29988000" + }, + { + "id": "72295", + "name": "Navarrete", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.64841000", + "longitude": "-105.11539000" + }, + { + "id": "72418", + "name": "Nuevo Vallarta", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70169000", + "longitude": "-105.29417000" + }, + { + "id": "72585", + "name": "Palma Grande", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.99333000", + "longitude": "-105.38944000" + }, + { + "id": "72592", + "name": "Palmar de Cuautla", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21972000", + "longitude": "-105.64750000" + }, + { + "id": "72624", + "name": "Pantanal", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.42824000", + "longitude": "-104.86122000" + }, + { + "id": "72734", + "name": "Pericos", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.04925000", + "longitude": "-105.35402000" + }, + { + "id": "72872", + "name": "Pozo de Ibarra", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.86692000", + "longitude": "-105.27949000" + }, + { + "id": "72961", + "name": "Puerta de Mangos", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.71853000", + "longitude": "-105.33534000" + }, + { + "id": "72982", + "name": "Puga", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.58443000", + "longitude": "-104.82318000" + }, + { + "id": "73032", + "name": "Quimichis", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.36122000", + "longitude": "-105.53913000" + }, + { + "id": "73128", + "name": "Rincón de Guayabitos", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02315000", + "longitude": "-105.27054000" + }, + { + "id": "73158", + "name": "Rosa Blanca", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12454000", + "longitude": "-104.35811000" + }, + { + "id": "73161", + "name": "Rosamorada", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.12208000", + "longitude": "-105.20640000" + }, + { + "id": "73166", + "name": "Ruíz", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95107000", + "longitude": "-105.14380000" + }, + { + "id": "73445", + "name": "San Blas", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.54333000", + "longitude": "-105.28558000" + }, + { + "id": "73464", + "name": "San Cayetano", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.44949000", + "longitude": "-104.81702000" + }, + { + "id": "73469", + "name": "San Clemente de Lima", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73722000", + "longitude": "-105.27083000" + }, + { + "id": "73513", + "name": "San Felipe Aztatán", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.38374000", + "longitude": "-105.41980000" + }, + { + "id": "73541", + "name": "San Francisco", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90196000", + "longitude": "-105.41279000" + }, + { + "id": "73818", + "name": "San José de Gracia", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.48105000", + "longitude": "-105.37869000" + }, + { + "id": "73870", + "name": "San Juan Bautista", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.14359000", + "longitude": "-105.09750000" + }, + { + "id": "73958", + "name": "San Juan de Abajo", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81484000", + "longitude": "-105.19154000" + }, + { + "id": "74059", + "name": "San Luis de Lozada", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.50297000", + "longitude": "-104.70552000" + }, + { + "id": "74349", + "name": "San Pedro Lagunillas", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21920000", + "longitude": "-104.75228000" + }, + { + "id": "74493", + "name": "San Vicente", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95043000", + "longitude": "-105.29710000" + }, + { + "id": "74611", + "name": "Santa Cruz", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.98118000", + "longitude": "-105.60169000" + }, + { + "id": "74672", + "name": "Santa Isabel", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.16304000", + "longitude": "-104.62374000" + }, + { + "id": "74815", + "name": "Santa María del Oro", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.33390000", + "longitude": "-104.58696000" + }, + { + "id": "74859", + "name": "Santa Teresa", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.49730000", + "longitude": "-104.76547000" + }, + { + "id": "74984", + "name": "Santiago de Pochotitán", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.58159000", + "longitude": "-104.69858000" + }, + { + "id": "74907", + "name": "Santiago Ixcuintla", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.81295000", + "longitude": "-105.20844000" + }, + { + "id": "75045", + "name": "Sauta", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.72116000", + "longitude": "-105.14249000" + }, + { + "id": "75048", + "name": "Sayulilla", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.43822000", + "longitude": "-105.39137000" + }, + { + "id": "75049", + "name": "Sayulita", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.87006000", + "longitude": "-105.43992000" + }, + { + "id": "75060", + "name": "Sentispac", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.80478000", + "longitude": "-105.34593000" + }, + { + "id": "75289", + "name": "Tecuala", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "22.39815000", + "longitude": "-105.45808000" + }, + { + "id": "75447", + "name": "Tepic", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.50951000", + "longitude": "-104.89569000" + }, + { + "id": "75455", + "name": "Tequepexpan", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21571000", + "longitude": "-104.56958000" + }, + { + "id": "75473", + "name": "Testerazo", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.40242000", + "longitude": "-104.89420000" + }, + { + "id": "75488", + "name": "Tetitlán", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12903000", + "longitude": "-104.61613000" + }, + { + "id": "75887", + "name": "Unión de Corrientes", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.97644000", + "longitude": "-105.43026000" + }, + { + "id": "75904", + "name": "Uzeta", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.11497000", + "longitude": "-104.60171000" + }, + { + "id": "75920", + "name": "Valle de Banderas", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80792000", + "longitude": "-105.24813000" + }, + { + "id": "76013", + "name": "Villa Hidalgo", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.74185000", + "longitude": "-105.23096000" + }, + { + "id": "76020", + "name": "Villa Juárez", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.68917000", + "longitude": "-105.38972000" + }, + { + "id": "76209", + "name": "Yago", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.83601000", + "longitude": "-105.06451000" + }, + { + "id": "76284", + "name": "Zacualpan", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.24715000", + "longitude": "-105.16570000" + }, + { + "id": "76301", + "name": "Zapotanito", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.30533000", + "longitude": "-104.60899000" + }, + { + "id": "76313", + "name": "Zapotán", + "state_id": 3477, + "state_code": "NAY", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08936000", + "longitude": "-104.86246000" + }, + { + "id": "68123", + "name": "Agualeguas", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.31362000", + "longitude": "-99.53728000" + }, + { + "id": "68203", + "name": "Alianza Real", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85139000", + "longitude": "-100.38278000" + }, + { + "id": "68285", + "name": "Anáhuac", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "27.24457000", + "longitude": "-100.13229000" + }, + { + "id": "68328", + "name": "Aramberri", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "24.09984000", + "longitude": "-99.81729000" + }, + { + "id": "68375", + "name": "Artemio Treviño", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.83528000", + "longitude": "-100.14278000" + }, + { + "id": "68644", + "name": "Bosques de San Pedro", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.60139000", + "longitude": "-100.17972000" + }, + { + "id": "68661", + "name": "Buena Vista", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85222000", + "longitude": "-100.36000000" + }, + { + "id": "68694", + "name": "Bustamante", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.55567000", + "longitude": "-100.50603000" + }, + { + "id": "68717", + "name": "Cadereyta", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.58333000", + "longitude": "-99.98333000" + }, + { + "id": "68718", + "name": "Cadereyta Jiménez", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.58896000", + "longitude": "-100.00156000" + }, + { + "id": "68826", + "name": "Carmen", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.93650000", + "longitude": "-100.36396000" + }, + { + "id": "68861", + "name": "Catarino Rodríguez", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "24.84542000", + "longitude": "-100.32046000" + }, + { + "id": "68908", + "name": "Cerralvo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.09766000", + "longitude": "-99.65340000" + }, + { + "id": "69080", + "name": "China", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.69997000", + "longitude": "-99.23454000" + }, + { + "id": "69198", + "name": "Ciénega de Flores", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.95467000", + "longitude": "-100.16695000" + }, + { + "id": "69144", + "name": "Ciudad Apodaca", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.78195000", + "longitude": "-100.18839000" + }, + { + "id": "69146", + "name": "Ciudad Benito Juárez", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.64724000", + "longitude": "-100.09582000" + }, + { + "id": "69148", + "name": "Ciudad Cerralvo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.08499000", + "longitude": "-99.61508000" + }, + { + "id": "69185", + "name": "Ciudad de Allende", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.27673000", + "longitude": "-100.01442000" + }, + { + "id": "69194", + "name": "Ciudad de Villaldama", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.49952000", + "longitude": "-100.42508000" + }, + { + "id": "69156", + "name": "Ciudad General Escobedo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.79698000", + "longitude": "-100.31791000" + }, + { + "id": "69157", + "name": "Ciudad General Terán", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.25857000", + "longitude": "-99.68371000" + }, + { + "id": "69177", + "name": "Ciudad Sabinas Hidalgo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.50358000", + "longitude": "-100.18187000" + }, + { + "id": "69180", + "name": "Ciudad Satélite del Norte", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.91448000", + "longitude": "-100.26542000" + }, + { + "id": "69259", + "name": "Colinas del Aeropuerto", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.81705000", + "longitude": "-100.10258000" + }, + { + "id": "69450", + "name": "Congregación Calles", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.22528000", + "longitude": "-99.93472000" + }, + { + "id": "69692", + "name": "Doctor Arroyo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "23.67211000", + "longitude": "-100.18134000" + }, + { + "id": "69694", + "name": "Doctor Coss", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.92492000", + "longitude": "-99.18316000" + }, + { + "id": "69696", + "name": "Doctor González", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85983000", + "longitude": "-99.94409000" + }, + { + "id": "70288", + "name": "Emiliano Zapata", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.91028000", + "longitude": "-100.28056000" + }, + { + "id": "70308", + "name": "Entronque Laredo-Salinas Victoria", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85500000", + "longitude": "-100.24722000" + }, + { + "id": "70417", + "name": "Fraccionamiento Cosmópolis Octavo Sector", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.82528000", + "longitude": "-100.24611000" + }, + { + "id": "70427", + "name": "Fraccionamiento Misión de San Javier", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.74556000", + "longitude": "-100.15194000" + }, + { + "id": "70435", + "name": "Fraccionamiento Real Palmas", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.90417000", + "longitude": "-100.15972000" + }, + { + "id": "70509", + "name": "Galeana", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "24.82455000", + "longitude": "-100.07601000" + }, + { + "id": "70520", + "name": "García", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.81201000", + "longitude": "-100.59874000" + }, + { + "id": "70526", + "name": "General Bravo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.79239000", + "longitude": "-99.18147000" + }, + { + "id": "70546", + "name": "General Zuazua", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.89491000", + "longitude": "-100.10800000" + }, + { + "id": "70573", + "name": "Guadalupe", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.67678000", + "longitude": "-100.25646000" + }, + { + "id": "70653", + "name": "Hacienda San Pedro", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.91472000", + "longitude": "-100.16278000" + }, + { + "id": "70827", + "name": "Héctor Caballero", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.63556000", + "longitude": "-100.12667000" + }, + { + "id": "70724", + "name": "Hualahuises", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "24.88295000", + "longitude": "-99.67490000" + }, + { + "id": "70893", + "name": "Iturbide", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "24.72596000", + "longitude": "-99.90406000" + }, + { + "id": "71005", + "name": "Jardines de la Silla (Jardines)", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.62944000", + "longitude": "-100.18778000" + }, + { + "id": "71176", + "name": "La Ascensión", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "24.32392000", + "longitude": "-99.91410000" + }, + { + "id": "71542", + "name": "Ladrillera (Entronque Pesquería)", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.80306000", + "longitude": "-100.10111000" + }, + { + "id": "71567", + "name": "Lampazos de Naranjo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "27.02549000", + "longitude": "-100.50528000" + }, + { + "id": "71643", + "name": "Las Torres", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.95167000", + "longitude": "-100.31806000" + }, + { + "id": "71644", + "name": "Las Torres de Guadalupe", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.80611000", + "longitude": "-100.62250000" + }, + { + "id": "71679", + "name": "Linares", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "24.85798000", + "longitude": "-99.56768000" + }, + { + "id": "71740", + "name": "Loma la Paz", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.71111000", + "longitude": "-100.13472000" + }, + { + "id": "71750", + "name": "Lomas de San Martín", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.74722000", + "longitude": "-100.11972000" + }, + { + "id": "71828", + "name": "Los Parques", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.79073000", + "longitude": "-100.46992000" + }, + { + "id": "71839", + "name": "Los Ramones", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.69716000", + "longitude": "-99.62529000" + }, + { + "id": "72007", + "name": "Marín", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.87946000", + "longitude": "-100.03028000" + }, + { + "id": "72045", + "name": "Mazatlan", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.18909000", + "longitude": "-99.82865000" + }, + { + "id": "72141", + "name": "Mina", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.00110000", + "longitude": "-100.52988000" + }, + { + "id": "72159", + "name": "Misión San Pablo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.74000000", + "longitude": "-100.14417000" + }, + { + "id": "72162", + "name": "Mitras Poniente", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.77583000", + "longitude": "-100.42583000" + }, + { + "id": "72192", + "name": "Monclova Primer Sector", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.81472000", + "longitude": "-100.40306000" + }, + { + "id": "72193", + "name": "Monclova Segundo Sector", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.81531000", + "longitude": "-100.39682000" + }, + { + "id": "72202", + "name": "Monte Kristal", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.62611000", + "longitude": "-100.15694000" + }, + { + "id": "72215", + "name": "Montemorelos", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.16697000", + "longitude": "-99.84430000" + }, + { + "id": "72219", + "name": "Monterrey", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.67507000", + "longitude": "-100.31847000" + }, + { + "id": "72664", + "name": "Parás", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.50013000", + "longitude": "-99.52156000" + }, + { + "id": "72657", + "name": "Parque Industrial Ciudad Mitras", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.78861000", + "longitude": "-100.44778000" + }, + { + "id": "72668", + "name": "Paseo de San Javier", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.73972000", + "longitude": "-100.13444000" + }, + { + "id": "72740", + "name": "Pesquería", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.78543000", + "longitude": "-100.05098000" + }, + { + "id": "72854", + "name": "Portal de las Salinas", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.98222000", + "longitude": "-100.14333000" + }, + { + "id": "72878", + "name": "Praderas de San Francisco", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.81833000", + "longitude": "-100.40250000" + }, + { + "id": "72882", + "name": "Prados de Santa Rosa", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.79808000", + "longitude": "-100.22687000" + }, + { + "id": "72937", + "name": "Pueblo Nuevo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.48409000", + "longitude": "-99.75987000" + }, + { + "id": "73085", + "name": "Rayones", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.01799000", + "longitude": "-100.07362000" + }, + { + "id": "73185", + "name": "Río Verde", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "24.90081000", + "longitude": "-99.54345000" + }, + { + "id": "73091", + "name": "Real del Sol", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.93833000", + "longitude": "-100.18111000" + }, + { + "id": "73215", + "name": "Salinas Victoria", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.96329000", + "longitude": "-100.29091000" + }, + { + "id": "73316", + "name": "San Antonio", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.63868000", + "longitude": "-100.05844000" + }, + { + "id": "73825", + "name": "San José de Raíces", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "24.57145000", + "longitude": "-100.24002000" + }, + { + "id": "73858", + "name": "San Juan", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.54280000", + "longitude": "-99.84091000" + }, + { + "id": "74273", + "name": "San Nicolás de los Garza", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.74167000", + "longitude": "-100.30222000" + }, + { + "id": "74336", + "name": "San Pedro Garza García", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.66040000", + "longitude": "-100.40651000" + }, + { + "id": "74335", + "name": "San Pedro Garza Garcia", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.65716000", + "longitude": "-100.40268000" + }, + { + "id": "74427", + "name": "San Rafael", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.03060000", + "longitude": "-100.55139000" + }, + { + "id": "74837", + "name": "Santa Rosa", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.82463000", + "longitude": "-100.22164000" + }, + { + "id": "74868", + "name": "Santiago", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.42533000", + "longitude": "-100.15205000" + }, + { + "id": "75083", + "name": "Simeprodeso (Colectivo Nuevo)", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85306000", + "longitude": "-100.29167000" + }, + { + "id": "75880", + "name": "Unión Agropecuarios Lázaro Cárdenas del Norte", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.83222000", + "longitude": "-100.38417000" + }, + { + "id": "75922", + "name": "Valle de Juárez", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.63778000", + "longitude": "-100.15833000" + }, + { + "id": "75923", + "name": "Valle de Lincoln", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.79333000", + "longitude": "-100.47778000" + }, + { + "id": "75925", + "name": "Valle de Vaquerías", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.63250000", + "longitude": "-100.14694000" + }, + { + "id": "75930", + "name": "Vallecillo", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.66033000", + "longitude": "-99.98744000" + }, + { + "id": "76082", + "name": "Villaldama", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "26.47039000", + "longitude": "-100.38726000" + }, + { + "id": "76087", + "name": "Villas de Alcalá", + "state_id": 3452, + "state_code": "NLE", + "country_id": 142, + "country_code": "MX", + "latitude": "25.91528000", + "longitude": "-100.18528000" + }, + { + "id": "68052", + "name": "Acatlán de Pérez Figueroa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.53973000", + "longitude": "-96.60568000" + }, + { + "id": "68121", + "name": "Agua del Espino", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.59095000", + "longitude": "-96.80204000" + }, + { + "id": "68155", + "name": "Ahuehuetitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67130000", + "longitude": "-98.32024000" + }, + { + "id": "68173", + "name": "Albarradas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06752000", + "longitude": "-96.20012000" + }, + { + "id": "68212", + "name": "Almolonga", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60848000", + "longitude": "-96.66099000" + }, + { + "id": "68275", + "name": "Animas Trujano", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99086000", + "longitude": "-96.71319000" + }, + { + "id": "68310", + "name": "Apoala", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.64845000", + "longitude": "-97.13608000" + }, + { + "id": "68356", + "name": "Arroyo Chical (Nuevo Arroyo Chicali)", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21611000", + "longitude": "-96.33667000" + }, + { + "id": "68357", + "name": "Arroyo Choápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97028000", + "longitude": "-96.15722000" + }, + { + "id": "68368", + "name": "Arroyo de Banco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80312000", + "longitude": "-96.34794000" + }, + { + "id": "68369", + "name": "Arroyo de Enmedio", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.49750000", + "longitude": "-96.54722000" + }, + { + "id": "68362", + "name": "Arroyo Limón", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.90008000", + "longitude": "-95.96175000" + }, + { + "id": "68367", + "name": "Arroyo Zapotillo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07639000", + "longitude": "-96.54417000" + }, + { + "id": "68383", + "name": "Asunción Cacalotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03470000", + "longitude": "-95.93361000" + }, + { + "id": "68384", + "name": "Asunción Ixtaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.50315000", + "longitude": "-95.06121000" + }, + { + "id": "68385", + "name": "Asunción Nochixtlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.45916000", + "longitude": "-97.22605000" + }, + { + "id": "68386", + "name": "Asunción Ocotlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76195000", + "longitude": "-96.72137000" + }, + { + "id": "68387", + "name": "Asunción Tlacolulita", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.22612000", + "longitude": "-95.76620000" + }, + { + "id": "68463", + "name": "Ayoquezco de Aldama", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.68370000", + "longitude": "-96.84287000" + }, + { + "id": "68468", + "name": "Ayotzintepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67261000", + "longitude": "-96.12855000" + }, + { + "id": "68469", + "name": "Ayutla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02756000", + "longitude": "-96.07632000" + }, + { + "id": "76394", + "name": "Álvaro Obregón", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.29811000", + "longitude": "-95.08392000" + }, + { + "id": "68502", + "name": "Bajos de Chila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.92343000", + "longitude": "-97.12113000" + }, + { + "id": "68530", + "name": "Barrio San Diego", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27917000", + "longitude": "-97.67417000" + }, + { + "id": "68584", + "name": "Benemérito Juárez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.11944000", + "longitude": "-96.00194000" + }, + { + "id": "68593", + "name": "Benito Juárez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.88178000", + "longitude": "-96.32405000" + }, + { + "id": "68605", + "name": "Benito Juárez II (San Martín)", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14056000", + "longitude": "-96.46139000" + }, + { + "id": "68614", + "name": "Bethania", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.91939000", + "longitude": "-96.00459000" + }, + { + "id": "68650", + "name": "Brisas de Zicatela", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.83694000", + "longitude": "-97.04194000" + }, + { + "id": "68723", + "name": "Cajonos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16801000", + "longitude": "-96.26174000" + }, + { + "id": "68737", + "name": "Calihualá", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.53134000", + "longitude": "-98.27792000" + }, + { + "id": "68762", + "name": "Camelia Roja", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02833000", + "longitude": "-96.20806000" + }, + { + "id": "68767", + "name": "Camotinchan", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.55873000", + "longitude": "-98.12433000" + }, + { + "id": "68790", + "name": "Candelaria Loxicha", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.92638000", + "longitude": "-96.49268000" + }, + { + "id": "68812", + "name": "Capulálpam de Méndez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.30972000", + "longitude": "-96.44656000" + }, + { + "id": "68921", + "name": "Cerro Armadillo Grande", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.86611000", + "longitude": "-96.30861000" + }, + { + "id": "68938", + "name": "Cerro del Aire", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.11012000", + "longitude": "-97.20438000" + }, + { + "id": "68932", + "name": "Cerro Quemado", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15417000", + "longitude": "-96.57500000" + }, + { + "id": "68952", + "name": "Chahuite", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.30000000", + "longitude": "-94.18333000" + }, + { + "id": "68953", + "name": "Chahuites", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.28842000", + "longitude": "-94.19478000" + }, + { + "id": "69015", + "name": "Chicahua", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63667000", + "longitude": "-97.19497000" + }, + { + "id": "69017", + "name": "Chicapa de Castro", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.43844000", + "longitude": "-94.82206000" + }, + { + "id": "69200", + "name": "Ciénega de Zimatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.89366000", + "longitude": "-96.76801000" + }, + { + "id": "69128", + "name": "Cieneguilla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.32353000", + "longitude": "-97.31762000" + }, + { + "id": "69189", + "name": "Ciudad de Huajuapan de León", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80787000", + "longitude": "-97.77956000" + }, + { + "id": "69223", + "name": "Coatecas Altas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.53926000", + "longitude": "-96.66878000" + }, + { + "id": "69253", + "name": "Coixtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.72021000", + "longitude": "-97.31880000" + }, + { + "id": "69262", + "name": "Collantes", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.18810000", + "longitude": "-97.97184000" + }, + { + "id": "69315", + "name": "Colonia Jordán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.38893000", + "longitude": "-95.20203000" + }, + { + "id": "69317", + "name": "Colonia Juárez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.20967000", + "longitude": "-95.02722000" + }, + { + "id": "69394", + "name": "Colonia la Central", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.08666000", + "longitude": "-96.51619000" + }, + { + "id": "69352", + "name": "Colonia Progreso", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80111000", + "longitude": "-95.07972000" + }, + { + "id": "69358", + "name": "Colonia Rincón Viejo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88678000", + "longitude": "-95.04731000" + }, + { + "id": "69366", + "name": "Colonia San Luis", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.38000000", + "longitude": "-95.24111000" + }, + { + "id": "69439", + "name": "Concepción Pápalo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.85391000", + "longitude": "-96.84472000" + }, + { + "id": "69461", + "name": "Constancia del Rosario", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03820000", + "longitude": "-97.94125000" + }, + { + "id": "69466", + "name": "Constitución Mexicana", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.34102000", + "longitude": "-95.37326000" + }, + { + "id": "69487", + "name": "Corral de Piedra", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24528000", + "longitude": "-96.30556000" + }, + { + "id": "69491", + "name": "Corralero", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.23846000", + "longitude": "-98.18952000" + }, + { + "id": "69505", + "name": "Cosoltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14255000", + "longitude": "-97.79084000" + }, + { + "id": "69538", + "name": "Crucecita", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.76889000", + "longitude": "-96.13500000" + }, + { + "id": "69563", + "name": "Cuapinolito (Azulillo)", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.82194000", + "longitude": "-96.31833000" + }, + { + "id": "69579", + "name": "Cuauhtémoc", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.10149000", + "longitude": "-94.88532000" + }, + { + "id": "69625", + "name": "Cuicatlan", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80272000", + "longitude": "-96.95939000" + }, + { + "id": "69627", + "name": "Cuilapan de Guerrero", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97756000", + "longitude": "-96.78081000" + }, + { + "id": "69714", + "name": "Donaji", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22950000", + "longitude": "-95.05295000" + }, + { + "id": "69819", + "name": "Ejutla de Crespo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.56623000", + "longitude": "-96.73123000" + }, + { + "id": "69830", + "name": "El Arador", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.54111000", + "longitude": "-97.18194000" + }, + { + "id": "69836", + "name": "El Bajío", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88917000", + "longitude": "-95.03528000" + }, + { + "id": "69842", + "name": "El Barrio de la Soledad", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80131000", + "longitude": "-95.03909000" + }, + { + "id": "69856", + "name": "El Camalote", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.87250000", + "longitude": "-96.62361000" + }, + { + "id": "69857", + "name": "El Camarón", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.55745000", + "longitude": "-96.02868000" + }, + { + "id": "69867", + "name": "El Capulín (La Nueva Pochota)", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22972000", + "longitude": "-96.27806000" + }, + { + "id": "69881", + "name": "El Carrizal", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.06438000", + "longitude": "-95.39308000" + }, + { + "id": "69884", + "name": "El Carrizo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.25453000", + "longitude": "-98.03080000" + }, + { + "id": "69902", + "name": "El Chocolate", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93191000", + "longitude": "-95.08946000" + }, + { + "id": "69906", + "name": "El Ciruelo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.31780000", + "longitude": "-98.25707000" + }, + { + "id": "69933", + "name": "El Coyul", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.91472000", + "longitude": "-95.81028000" + }, + { + "id": "69963", + "name": "El Espinal", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.46751000", + "longitude": "-95.04198000" + }, + { + "id": "70044", + "name": "El Molino", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.77536000", + "longitude": "-97.75227000" + }, + { + "id": "70051", + "name": "El Morro", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.09745000", + "longitude": "-95.37906000" + }, + { + "id": "70115", + "name": "El Porvenir", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.47446000", + "longitude": "-95.25596000" + }, + { + "id": "70171", + "name": "El Rosario", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.04271000", + "longitude": "-96.69209000" + }, + { + "id": "70274", + "name": "Eloxochitlán de Flores Magón", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17724000", + "longitude": "-96.87538000" + }, + { + "id": "70301", + "name": "Encinal Colorado", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00995000", + "longitude": "-95.10732000" + }, + { + "id": "70347", + "name": "Estación Mogoñé", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99472000", + "longitude": "-95.03667000" + }, + { + "id": "70404", + "name": "Flor Batavia", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98475000", + "longitude": "-96.51880000" + }, + { + "id": "70414", + "name": "Fraccionamiento Ciudad Yagul", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97750000", + "longitude": "-96.46194000" + }, + { + "id": "70419", + "name": "Fraccionamiento Ex-Hacienda Catano", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22750000", + "longitude": "-96.81556000" + }, + { + "id": "70437", + "name": "Fraccionamiento Real del Valle", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93278000", + "longitude": "-96.76778000" + }, + { + "id": "70438", + "name": "Fraccionamiento Riberas de San Jerónimo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.11250000", + "longitude": "-96.77722000" + }, + { + "id": "70440", + "name": "Fraccionamiento San Miguel", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21278000", + "longitude": "-96.78694000" + }, + { + "id": "70470", + "name": "Francisco Ibarra Ramos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97781000", + "longitude": "-97.91748000" + }, + { + "id": "70543", + "name": "General Pascual Fentes", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.43472000", + "longitude": "-94.26270000" + }, + { + "id": "70582", + "name": "Guadalupe Etla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.17268000", + "longitude": "-96.81022000" + }, + { + "id": "70584", + "name": "Guadalupe Hidalgo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.14950000", + "longitude": "-96.81109000" + }, + { + "id": "70596", + "name": "Guadalupe Victoria", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.89627000", + "longitude": "-95.84981000" + }, + { + "id": "70614", + "name": "Guamúchil", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.36937000", + "longitude": "-94.66863000" + }, + { + "id": "70636", + "name": "Guixé", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.46991000", + "longitude": "-96.70271000" + }, + { + "id": "70651", + "name": "Hacienda Blanca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.13994000", + "longitude": "-96.77590000" + }, + { + "id": "70676", + "name": "Heroica Ciudad de Ejutla de Crespo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.57835000", + "longitude": "-96.73079000" + }, + { + "id": "70677", + "name": "Heroica Ciudad de Juchitán de Zaragoza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.44873000", + "longitude": "-94.98619000" + }, + { + "id": "70678", + "name": "Heroica Ciudad de Tlaxiaco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26916000", + "longitude": "-97.68053000" + }, + { + "id": "70720", + "name": "Huajintepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.61003000", + "longitude": "-98.23028000" + }, + { + "id": "70745", + "name": "Huautepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10138000", + "longitude": "-96.79590000" + }, + { + "id": "70753", + "name": "Huazantlán del Río", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.21932000", + "longitude": "-95.12864000" + }, + { + "id": "70853", + "name": "Ignacio Zaragoza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.53556000", + "longitude": "-95.89361000" + }, + { + "id": "70886", + "name": "Isla Soyaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.20107000", + "longitude": "-96.48325000" + }, + { + "id": "70919", + "name": "Ixpantepec Nieves", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.50690000", + "longitude": "-98.04264000" + }, + { + "id": "70934", + "name": "Ixtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.56052000", + "longitude": "-95.10375000" + }, + { + "id": "70944", + "name": "Ixtlán de Juárez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33211000", + "longitude": "-96.48812000" + }, + { + "id": "70964", + "name": "Jalapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.50000000", + "longitude": "-95.46667000" + }, + { + "id": "70987", + "name": "Jaltepec de Candayoc", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35495000", + "longitude": "-95.41428000" + }, + { + "id": "70988", + "name": "Jaltepetongo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.68623000", + "longitude": "-97.03569000" + }, + { + "id": "70998", + "name": "Jamiltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.28258000", + "longitude": "-97.82446000" + }, + { + "id": "71095", + "name": "José María Morelos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.20389000", + "longitude": "-97.93000000" + }, + { + "id": "71133", + "name": "Juchitán de Zaragoza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.43603000", + "longitude": "-95.01975000" + }, + { + "id": "71181", + "name": "La Barra de Colotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.82546000", + "longitude": "-97.02882000" + }, + { + "id": "71183", + "name": "La Blanca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.59482000", + "longitude": "-94.69256000" + }, + { + "id": "71208", + "name": "La Cañada", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07000000", + "longitude": "-96.77806000" + }, + { + "id": "71196", + "name": "La Candelaria", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21833000", + "longitude": "-95.93306000" + }, + { + "id": "71264", + "name": "La Erradura", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.83402000", + "longitude": "-96.33478000" + }, + { + "id": "71321", + "name": "La Humedad", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.58222000", + "longitude": "-97.66724000" + }, + { + "id": "71337", + "name": "La Junta", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.82778000", + "longitude": "-97.74556000" + }, + { + "id": "71371", + "name": "La Luz", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.11477000", + "longitude": "-97.59570000" + }, + { + "id": "71395", + "name": "La Mina", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98689000", + "longitude": "-96.09978000" + }, + { + "id": "71407", + "name": "La Noria", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.25444000", + "longitude": "-95.22056000" + }, + { + "id": "71437", + "name": "La Pe", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.63027000", + "longitude": "-96.79766000" + }, + { + "id": "71471", + "name": "La Reforma", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.62414000", + "longitude": "-97.84544000" + }, + { + "id": "71500", + "name": "La Tabaquera", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33582000", + "longitude": "-96.45129000" + }, + { + "id": "71527", + "name": "La Venta", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.57109000", + "longitude": "-94.81773000" + }, + { + "id": "71529", + "name": "La Ventosa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.55188000", + "longitude": "-94.94762000" + }, + { + "id": "71574", + "name": "Las Amilpas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.36667000", + "longitude": "-94.61667000" + }, + { + "id": "71618", + "name": "Las Margaritas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25501000", + "longitude": "-96.28421000" + }, + { + "id": "71887", + "name": "Lázaro Cárdenas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72818000", + "longitude": "-94.85981000" + }, + { + "id": "71690", + "name": "Llano de Agua", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10611000", + "longitude": "-96.81083000" + }, + { + "id": "71689", + "name": "Llano Suchiapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86611000", + "longitude": "-95.05389000" + }, + { + "id": "71714", + "name": "Loma Bonita", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10721000", + "longitude": "-95.87904000" + }, + { + "id": "71718", + "name": "Loma Chapultepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.11972000", + "longitude": "-96.83917000" + }, + { + "id": "71870", + "name": "Los Ángeles", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.39485000", + "longitude": "-95.16540000" + }, + { + "id": "71821", + "name": "Los Naranjos Esquipulas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.98167000", + "longitude": "-96.45889000" + }, + { + "id": "71916", + "name": "Macín Chico", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06820000", + "longitude": "-96.27184000" + }, + { + "id": "71911", + "name": "Macuilxóchitl de Artigas Carranza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.01583000", + "longitude": "-96.54000000" + }, + { + "id": "71921", + "name": "Magdalena Apasco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.24083000", + "longitude": "-96.82083000" + }, + { + "id": "71925", + "name": "Magdalena Jaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.32318000", + "longitude": "-97.22122000" + }, + { + "id": "71926", + "name": "Magdalena Mixtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.89659000", + "longitude": "-96.90618000" + }, + { + "id": "71927", + "name": "Magdalena Ocotlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.70865000", + "longitude": "-96.71010000" + }, + { + "id": "71928", + "name": "Magdalena Teitipac", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.90393000", + "longitude": "-96.55840000" + }, + { + "id": "71929", + "name": "Magdalena Tequisistlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39929000", + "longitude": "-95.60204000" + }, + { + "id": "71930", + "name": "Magdalena Tlacotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.50416000", + "longitude": "-95.20248000" + }, + { + "id": "71931", + "name": "Magdalena Yodocono de Porfirio Díaz", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38470000", + "longitude": "-97.35530000" + }, + { + "id": "71932", + "name": "Magdalena Zahuatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38978000", + "longitude": "-97.22747000" + }, + { + "id": "71954", + "name": "Mancuernas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.38940000", + "longitude": "-98.11018000" + }, + { + "id": "72005", + "name": "María Lombardo de Caso", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.44931000", + "longitude": "-95.42821000" + }, + { + "id": "71996", + "name": "Mariscala de Juárez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.85972000", + "longitude": "-98.14083000" + }, + { + "id": "72024", + "name": "Matías Romero", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87902000", + "longitude": "-95.03939000" + }, + { + "id": "72048", + "name": "Mazatlán Villa de Flores", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.03264000", + "longitude": "-96.91404000" + }, + { + "id": "72052", + "name": "Mazín Grande", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.11630000", + "longitude": "-96.30956000" + }, + { + "id": "72077", + "name": "Merced del Potrero", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.04679000", + "longitude": "-96.07048000" + }, + { + "id": "72085", + "name": "Mesones Hidalgo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92208000", + "longitude": "-97.99765000" + }, + { + "id": "72117", + "name": "Miahuatlán de Porfirio Díaz", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33276000", + "longitude": "-96.59562000" + }, + { + "id": "72165", + "name": "Mixistlán de la Reforma", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.14669000", + "longitude": "-96.10669000" + }, + { + "id": "72217", + "name": "Montenegro la Lana", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.59296000", + "longitude": "-95.86510000" + }, + { + "id": "72275", + "name": "Nanahuatípam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13414000", + "longitude": "-97.12501000" + }, + { + "id": "72288", + "name": "Nativitas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.66160000", + "longitude": "-97.33566000" + }, + { + "id": "72300", + "name": "Nazareno Etla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.17667000", + "longitude": "-96.83264000" + }, + { + "id": "72309", + "name": "Nejapa de Madero", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.60571000", + "longitude": "-95.97855000" + }, + { + "id": "72332", + "name": "Niltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.56401000", + "longitude": "-94.61373000" + }, + { + "id": "72388", + "name": "Nuevo Ixcatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.64145000", + "longitude": "-95.43807000" + }, + { + "id": "72403", + "name": "Nuevo Paso Nazareno (Chichicazapa)", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.29667000", + "longitude": "-96.34722000" + }, + { + "id": "72411", + "name": "Nuevo San Martín", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.57987000", + "longitude": "-95.52346000" + }, + { + "id": "72432", + "name": "Oaxaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06542000", + "longitude": "-96.72365000" + }, + { + "id": "72433", + "name": "Oaxaca de Juárez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.11345000", + "longitude": "-96.73556000" + }, + { + "id": "72460", + "name": "Ocotlán de Morelos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.79151000", + "longitude": "-96.67455000" + }, + { + "id": "72612", + "name": "Palomares", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.13830000", + "longitude": "-95.06266000" + }, + { + "id": "72631", + "name": "Papaloapan", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16087000", + "longitude": "-96.09383000" + }, + { + "id": "72678", + "name": "Paso Canoa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01274000", + "longitude": "-96.23786000" + }, + { + "id": "72685", + "name": "Paso Real de Sarabia", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07389000", + "longitude": "-95.04667000" + }, + { + "id": "72749", + "name": "Peña Colorada", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.47778000", + "longitude": "-97.79417000" + }, + { + "id": "72764", + "name": "Piedra Blanca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98861000", + "longitude": "-95.01278000" + }, + { + "id": "72769", + "name": "Piedra de Amolar", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.12000000", + "longitude": "-96.45122000" + }, + { + "id": "72782", + "name": "Pinotepa de Don Luis", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.42716000", + "longitude": "-97.97678000" + }, + { + "id": "72781", + "name": "Pinotepa Nacional", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.34014000", + "longitude": "-98.05297000" + }, + { + "id": "72810", + "name": "Playa Chica", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06139000", + "longitude": "-96.51833000" + }, + { + "id": "72818", + "name": "Pluma Hidalgo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.92127000", + "longitude": "-96.42977000" + }, + { + "id": "72885", + "name": "Praxedis de Guerrero", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72000000", + "longitude": "-96.64000000" + }, + { + "id": "72915", + "name": "Progreso", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.04528000", + "longitude": "-97.57028000" + }, + { + "id": "72948", + "name": "Pueblo Viejo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.90750000", + "longitude": "-96.05778000" + }, + { + "id": "72981", + "name": "Puerto Ángel", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.66898000", + "longitude": "-96.49095000" + }, + { + "id": "72968", + "name": "Puerto Escondido", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.87037000", + "longitude": "-97.07726000" + }, + { + "id": "73002", + "name": "Putla Villa de Guerrero", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02630000", + "longitude": "-97.92854000" + }, + { + "id": "73020", + "name": "Quelové", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.98273000", + "longitude": "-96.67890000" + }, + { + "id": "73034", + "name": "Quinicuena", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.53101000", + "longitude": "-97.52385000" + }, + { + "id": "73060", + "name": "Rancho Grande", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.35389000", + "longitude": "-96.34944000" + }, + { + "id": "73072", + "name": "Rancho Viejo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33966000", + "longitude": "-97.96399000" + }, + { + "id": "73172", + "name": "Río Chiquito", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.61989000", + "longitude": "-95.93688000" + }, + { + "id": "73175", + "name": "Río Grande", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.01079000", + "longitude": "-97.43574000" + }, + { + "id": "73182", + "name": "Río Pachiñe", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96870000", + "longitude": "-95.06533000" + }, + { + "id": "73095", + "name": "Reforma de Pineda", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.40103000", + "longitude": "-94.45786000" + }, + { + "id": "73102", + "name": "Reyes Etla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.20220000", + "longitude": "-96.81802000" + }, + { + "id": "73103", + "name": "Reyes Mantecón", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.90717000", + "longitude": "-96.72702000" + }, + { + "id": "73119", + "name": "Rincón Moreno", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.23007000", + "longitude": "-95.31327000" + }, + { + "id": "73152", + "name": "Rojas de Cuauhtémoc", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00861000", + "longitude": "-96.61944000" + }, + { + "id": "73213", + "name": "Salina Cruz", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.17535000", + "longitude": "-95.19424000" + }, + { + "id": "73240", + "name": "San Agustín Amatengo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.51086000", + "longitude": "-96.78919000" + }, + { + "id": "73241", + "name": "San Agustín Atenango", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.61150000", + "longitude": "-98.01095000" + }, + { + "id": "73245", + "name": "San Agustín Chayuco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.40234000", + "longitude": "-97.80823000" + }, + { + "id": "73259", + "name": "San Agustín de las Juntas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.01211000", + "longitude": "-96.71180000" + }, + { + "id": "73247", + "name": "San Agustín Etla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.18654000", + "longitude": "-96.76661000" + }, + { + "id": "73250", + "name": "San Agustín Loxicha", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.01687000", + "longitude": "-96.61615000" + }, + { + "id": "73256", + "name": "San Agustín Yatareni", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.08635000", + "longitude": "-96.67845000" + }, + { + "id": "73237", + "name": "San Agustin de las Juntas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00389000", + "longitude": "-96.70806000" + }, + { + "id": "73273", + "name": "San Andrés Chicahuaxtla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.15698000", + "longitude": "-97.83703000" + }, + { + "id": "73277", + "name": "San Andrés Dinicuiti", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.68812000", + "longitude": "-97.72669000" + }, + { + "id": "73280", + "name": "San Andrés Hidalgo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13734000", + "longitude": "-96.80604000" + }, + { + "id": "73281", + "name": "San Andrés Huaxpaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.32952000", + "longitude": "-97.91647000" + }, + { + "id": "73282", + "name": "San Andrés Huayápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.10264000", + "longitude": "-96.66556000" + }, + { + "id": "73284", + "name": "San Andrés Ixtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07112000", + "longitude": "-96.82635000" + }, + { + "id": "73290", + "name": "San Andrés Paxtlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.21621000", + "longitude": "-96.50783000" + }, + { + "id": "73293", + "name": "San Andrés Sinaxtla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.46928000", + "longitude": "-97.28298000" + }, + { + "id": "73294", + "name": "San Andrés Solaga", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27254000", + "longitude": "-96.23610000" + }, + { + "id": "73296", + "name": "San Andrés Teotilalpam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.95414000", + "longitude": "-96.65607000" + }, + { + "id": "73302", + "name": "San Andrés Yaá", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.29290000", + "longitude": "-96.15384000" + }, + { + "id": "73303", + "name": "San Andrés Zabache", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.59917000", + "longitude": "-96.85889000" + }, + { + "id": "73304", + "name": "San Andrés Zautla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.18697000", + "longitude": "-96.86419000" + }, + { + "id": "73311", + "name": "San Antonino Castillo Velasco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80900000", + "longitude": "-96.69267000" + }, + { + "id": "73313", + "name": "San Antonino el Alto", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.81984000", + "longitude": "-97.02719000" + }, + { + "id": "73312", + "name": "San Antonino Monte Verde", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51869000", + "longitude": "-97.72654000" + }, + { + "id": "73321", + "name": "San Antonio Arrazola", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03972000", + "longitude": "-96.79034000" + }, + { + "id": "73368", + "name": "San Antonio de la Cal", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02921000", + "longitude": "-96.70094000" + }, + { + "id": "73336", + "name": "San Antonio Huitepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92888000", + "longitude": "-97.14670000" + }, + { + "id": "73391", + "name": "San Antonio las Palmas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67167000", + "longitude": "-96.09083000" + }, + { + "id": "73343", + "name": "San Antonio Ocotlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.64929000", + "longitude": "-98.16585000" + }, + { + "id": "73354", + "name": "San Antonio Tepetlapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.54391000", + "longitude": "-98.06551000" + }, + { + "id": "73394", + "name": "San Baltazar Chichicapam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76151000", + "longitude": "-96.48970000" + }, + { + "id": "73395", + "name": "San Baltazar Guelavila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.79638000", + "longitude": "-96.30542000" + }, + { + "id": "73396", + "name": "San Baltazar Loxicha", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.07670000", + "longitude": "-96.78740000" + }, + { + "id": "73397", + "name": "San Baltazar Yatzachi el Bajo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22958000", + "longitude": "-96.22046000" + }, + { + "id": "73400", + "name": "San Bartolo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.09222000", + "longitude": "-96.10750000" + }, + { + "id": "73401", + "name": "San Bartolo Coyotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94877000", + "longitude": "-96.70977000" + }, + { + "id": "73402", + "name": "San Bartolo Coyotespec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95837000", + "longitude": "-96.70930000" + }, + { + "id": "73410", + "name": "San Bartolo Yautepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.42935000", + "longitude": "-95.97438000" + }, + { + "id": "73421", + "name": "San Bartolomé Ayautla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.03239000", + "longitude": "-96.67078000" + }, + { + "id": "73425", + "name": "San Bartolomé Loxícha", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.96981000", + "longitude": "-96.70957000" + }, + { + "id": "73426", + "name": "San Bartolomé Quialana", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.90302000", + "longitude": "-96.50169000" + }, + { + "id": "73430", + "name": "San Benito Encinal", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98722000", + "longitude": "-95.91056000" + }, + { + "id": "73441", + "name": "San Bernardo Mixtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82579000", + "longitude": "-96.89911000" + }, + { + "id": "73447", + "name": "San Blas Atempa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33103000", + "longitude": "-95.22559000" + }, + { + "id": "73463", + "name": "San Carlos Yautepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.49699000", + "longitude": "-96.10648000" + }, + { + "id": "73475", + "name": "San Cristóbal Amatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.31713000", + "longitude": "-96.40785000" + }, + { + "id": "73476", + "name": "San Cristóbal Amoltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.28428000", + "longitude": "-97.57216000" + }, + { + "id": "73479", + "name": "San Cristóbal Honduras", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.32528000", + "longitude": "-97.04111000" + }, + { + "id": "73480", + "name": "San Cristóbal Lachirioag", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33582000", + "longitude": "-96.16503000" + }, + { + "id": "73504", + "name": "San Dionisio del Mar", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.32371000", + "longitude": "-94.75830000" + }, + { + "id": "73502", + "name": "San Dionisio Ocotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80457000", + "longitude": "-96.39334000" + }, + { + "id": "73503", + "name": "San Dionisio Ocotlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.74704000", + "longitude": "-96.68002000" + }, + { + "id": "73507", + "name": "San Esteban Atatlahuca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06716000", + "longitude": "-97.67836000" + }, + { + "id": "73514", + "name": "San Felipe Cihualtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.47763000", + "longitude": "-95.36767000" + }, + { + "id": "73517", + "name": "San Felipe Jalapa de Díaz", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07120000", + "longitude": "-96.53562000" + }, + { + "id": "73528", + "name": "San Felipe Tílpam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.18889000", + "longitude": "-96.58639000" + }, + { + "id": "73524", + "name": "San Felipe Tejalápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.11134000", + "longitude": "-96.85420000" + }, + { + "id": "73529", + "name": "San Felipe Usila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88790000", + "longitude": "-96.52474000" + }, + { + "id": "73552", + "name": "San Francisco Cajonos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.18086000", + "longitude": "-96.26465000" + }, + { + "id": "73556", + "name": "San Francisco Chindúa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.42809000", + "longitude": "-97.31266000" + }, + { + "id": "73557", + "name": "San Francisco Coatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.18175000", + "longitude": "-96.76099000" + }, + { + "id": "73558", + "name": "San Francisco Cozoaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.81476000", + "longitude": "-96.72396000" + }, + { + "id": "73617", + "name": "San Francisco del Mar", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33987000", + "longitude": "-94.51529000" + }, + { + "id": "73618", + "name": "San Francisco del Mar Viejo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.23185000", + "longitude": "-94.63297000" + }, + { + "id": "73565", + "name": "San Francisco Huehuetlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19725000", + "longitude": "-96.94805000" + }, + { + "id": "73567", + "name": "San Francisco Ixhuatan", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.35109000", + "longitude": "-94.48402000" + }, + { + "id": "73568", + "name": "San Francisco Ixhuatán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.31382000", + "longitude": "-94.47711000" + }, + { + "id": "73570", + "name": "San Francisco Jaltepetongo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38579000", + "longitude": "-97.26481000" + }, + { + "id": "73572", + "name": "San Francisco Javier", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02861000", + "longitude": "-96.77750000" + }, + { + "id": "73574", + "name": "San Francisco Lachigoló", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.01624000", + "longitude": "-96.59947000" + }, + { + "id": "73575", + "name": "San Francisco Logueche", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.37576000", + "longitude": "-96.37907000" + }, + { + "id": "73576", + "name": "San Francisco Loxicha", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.90658000", + "longitude": "-96.61295000" + }, + { + "id": "73581", + "name": "San Francisco Nuxaño", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38173000", + "longitude": "-97.34262000" + }, + { + "id": "73585", + "name": "San Francisco Ozolotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.10079000", + "longitude": "-96.22181000" + }, + { + "id": "73590", + "name": "San Francisco Sola", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.51584000", + "longitude": "-96.97488000" + }, + { + "id": "73593", + "name": "San Francisco Telixtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.29684000", + "longitude": "-96.90529000" + }, + { + "id": "73604", + "name": "San Francisco Tutla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07092000", + "longitude": "-96.66810000" + }, + { + "id": "73629", + "name": "San Gabriel Mixtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.09593000", + "longitude": "-97.08237000" + }, + { + "id": "73660", + "name": "San Ildefonso Amatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33390000", + "longitude": "-96.49122000" + }, + { + "id": "73662", + "name": "San Ildefonso Villa Alta", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33827000", + "longitude": "-96.15232000" + }, + { + "id": "73674", + "name": "San Isidro Apango", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.80952000", + "longitude": "-96.35856000" + }, + { + "id": "73681", + "name": "San Isidro Monjas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00167000", + "longitude": "-96.74861000" + }, + { + "id": "73695", + "name": "San Jacinto Amilpas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.10188000", + "longitude": "-96.76228000" + }, + { + "id": "73708", + "name": "San Jerónimo Coatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.23211000", + "longitude": "-96.87047000" + }, + { + "id": "73714", + "name": "San Jerónimo Silacayoapilla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.81021000", + "longitude": "-97.84488000" + }, + { + "id": "73715", + "name": "San Jerónimo Sosola", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.36685000", + "longitude": "-97.03291000" + }, + { + "id": "73716", + "name": "San Jerónimo Taviche", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.71468000", + "longitude": "-96.59360000" + }, + { + "id": "73717", + "name": "San Jerónimo Tecóatl", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16633000", + "longitude": "-96.91256000" + }, + { + "id": "73718", + "name": "San Jerónimo Tlacochahuaya", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00843000", + "longitude": "-96.55522000" + }, + { + "id": "73722", + "name": "San Jerónimo Yahuiche", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.10861000", + "longitude": "-96.76972000" + }, + { + "id": "73731", + "name": "San Jorge Nuchita", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65921000", + "longitude": "-98.10153000" + }, + { + "id": "73744", + "name": "San José Ayuquila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.94221000", + "longitude": "-97.96861000" + }, + { + "id": "73754", + "name": "San José Chacalapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.82957000", + "longitude": "-96.46390000" + }, + { + "id": "73758", + "name": "San José Chiltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.94734000", + "longitude": "-96.16957000" + }, + { + "id": "73832", + "name": "San José de las Flores", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35076000", + "longitude": "-95.39837000" + }, + { + "id": "73839", + "name": "San José del Progreso", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.69909000", + "longitude": "-96.68148000" + }, + { + "id": "73764", + "name": "San José Estancia Grande", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.36545000", + "longitude": "-98.25092000" + }, + { + "id": "73853", + "name": "San José la Garzona", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.68029000", + "longitude": "-96.63853000" + }, + { + "id": "73772", + "name": "San José Lachiguirí", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.37784000", + "longitude": "-96.33589000" + }, + { + "id": "73780", + "name": "San José Piedras Negras", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.83658000", + "longitude": "-96.59151000" + }, + { + "id": "73782", + "name": "San José Río Manzo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67003000", + "longitude": "-95.88012000" + }, + { + "id": "73787", + "name": "San José Tenango", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15084000", + "longitude": "-96.71744000" + }, + { + "id": "73861", + "name": "San Juan Achiutla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35019000", + "longitude": "-97.50804000" + }, + { + "id": "73866", + "name": "San Juan Atepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.42819000", + "longitude": "-96.53968000" + }, + { + "id": "73980", + "name": "San Juan Ñumí", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.39734000", + "longitude": "-97.70624000" + }, + { + "id": "73872", + "name": "San Juan Bautista Jayacatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.42458000", + "longitude": "-96.82639000" + }, + { + "id": "73874", + "name": "San Juan Bautista la Raya", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98617000", + "longitude": "-96.72472000" + }, + { + "id": "73873", + "name": "San Juan Bautista Lo de Soto", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.51197000", + "longitude": "-98.34772000" + }, + { + "id": "73876", + "name": "San Juan Cabeza del Río", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.75285000", + "longitude": "-97.88240000" + }, + { + "id": "73877", + "name": "San Juan Cacahuatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.61532000", + "longitude": "-98.15501000" + }, + { + "id": "73878", + "name": "San Juan Chilateca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.83042000", + "longitude": "-96.66915000" + }, + { + "id": "73880", + "name": "San Juan Coatzospam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.04998000", + "longitude": "-96.76304000" + }, + { + "id": "73881", + "name": "San Juan Colorado", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.46066000", + "longitude": "-97.95431000" + }, + { + "id": "73884", + "name": "San Juan Cotzocón", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16373000", + "longitude": "-95.78259000" + }, + { + "id": "73969", + "name": "San Juan de los Cues", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.04654000", + "longitude": "-97.06020000" + }, + { + "id": "73973", + "name": "San Juan del Estado", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27430000", + "longitude": "-96.79912000" + }, + { + "id": "73977", + "name": "San Juan del Río", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.49278000", + "longitude": "-95.76028000" + }, + { + "id": "73890", + "name": "San Juan Diuxi", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.28597000", + "longitude": "-97.37005000" + }, + { + "id": "73894", + "name": "San Juan Guelavía", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95507000", + "longitude": "-96.54359000" + }, + { + "id": "73895", + "name": "San Juan Guichicovi", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96231000", + "longitude": "-95.09418000" + }, + { + "id": "73898", + "name": "San Juan Ihualtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.75656000", + "longitude": "-98.28518000" + }, + { + "id": "73902", + "name": "San Juan Jaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35264000", + "longitude": "-95.66263000" + }, + { + "id": "73904", + "name": "San Juan Jicayán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.47583000", + "longitude": "-98.01250000" + }, + { + "id": "73905", + "name": "San Juan Juquila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93585000", + "longitude": "-95.91889000" + }, + { + "id": "73906", + "name": "San Juan Juquila Vijanos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33734000", + "longitude": "-96.27421000" + }, + { + "id": "73907", + "name": "San Juan Lachao", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.15891000", + "longitude": "-97.12449000" + }, + { + "id": "73908", + "name": "San Juan Lagunas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99748000", + "longitude": "-97.93066000" + }, + { + "id": "73909", + "name": "San Juan Mazatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02988000", + "longitude": "-95.44606000" + }, + { + "id": "73910", + "name": "San Juan Metaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.17563000", + "longitude": "-95.91174000" + }, + { + "id": "73911", + "name": "San Juan Mixtepec -Dto. 08 -", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.31676000", + "longitude": "-97.86147000" + }, + { + "id": "73912", + "name": "San Juan Mixtepec -Dto. 26 -", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.27667000", + "longitude": "-96.29917000" + }, + { + "id": "73913", + "name": "San Juan Ozolotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.13320000", + "longitude": "-96.25925000" + }, + { + "id": "73916", + "name": "San Juan Petlapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.46916000", + "longitude": "-96.03610000" + }, + { + "id": "73919", + "name": "San Juan Quiahue", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.30220000", + "longitude": "-97.31729000" + }, + { + "id": "73920", + "name": "San Juan Quiotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.60156000", + "longitude": "-96.58731000" + }, + { + "id": "73922", + "name": "San Juan Sautla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.85800000", + "longitude": "-96.67445000" + }, + { + "id": "73923", + "name": "San Juan Sayultepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.44736000", + "longitude": "-97.29375000" + }, + { + "id": "73926", + "name": "San Juan Tabaá", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.30495000", + "longitude": "-96.20718000" + }, + { + "id": "73929", + "name": "San Juan Teitipac", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92630000", + "longitude": "-96.60954000" + }, + { + "id": "73934", + "name": "San Juan Teposcolula", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.58142000", + "longitude": "-97.41686000" + }, + { + "id": "73953", + "name": "San Juan Yaeé", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43083000", + "longitude": "-96.28880000" + }, + { + "id": "73952", + "name": "San Juan Yaee", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43000000", + "longitude": "-96.28355000" + }, + { + "id": "73954", + "name": "San Juan Yatzona", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.40184000", + "longitude": "-96.16878000" + }, + { + "id": "73956", + "name": "San Juan Zapotitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80528000", + "longitude": "-96.60639000" + }, + { + "id": "73986", + "name": "San Juán Lachigalla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.58947000", + "longitude": "-96.55052000" + }, + { + "id": "73988", + "name": "San Lorenzo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39483000", + "longitude": "-97.87403000" + }, + { + "id": "73997", + "name": "San Lorenzo Albarradas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.91129000", + "longitude": "-96.25826000" + }, + { + "id": "73999", + "name": "San Lorenzo Cacaotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.12774000", + "longitude": "-96.80244000" + }, + { + "id": "74002", + "name": "San Lorenzo Cuaunecuiltitla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.20694000", + "longitude": "-96.91139000" + }, + { + "id": "74018", + "name": "San Lorenzo Victoria", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63190000", + "longitude": "-98.12383000" + }, + { + "id": "74019", + "name": "San Lorenzo Vista Hermosa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.95888000", + "longitude": "-98.06852000" + }, + { + "id": "74027", + "name": "San Lucas Camotlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94473000", + "longitude": "-95.71382000" + }, + { + "id": "74031", + "name": "San Lucas Ojitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.05767000", + "longitude": "-96.39825000" + }, + { + "id": "74033", + "name": "San Lucas Quiavini", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.89555000", + "longitude": "-96.46813000" + }, + { + "id": "74038", + "name": "San Lucas Zoquiápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13669000", + "longitude": "-96.90545000" + }, + { + "id": "74045", + "name": "San Luis Amatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.38652000", + "longitude": "-96.49824000" + }, + { + "id": "74062", + "name": "San Marcial Ozolotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.08903000", + "longitude": "-96.40561000" + }, + { + "id": "74067", + "name": "San Marcos Arteaga", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.72238000", + "longitude": "-97.86034000" + }, + { + "id": "74078", + "name": "San Marcos Zacatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.14344000", + "longitude": "-97.35725000" + }, + { + "id": "74114", + "name": "San Martín de los Canseco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.65655000", + "longitude": "-96.72777000" + }, + { + "id": "74098", + "name": "San Martín Itunyoso", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22806000", + "longitude": "-97.88083000" + }, + { + "id": "74099", + "name": "San Martín Lachila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.61186000", + "longitude": "-96.84882000" + }, + { + "id": "74107", + "name": "San Martín Tilcajete", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86008000", + "longitude": "-96.69490000" + }, + { + "id": "74121", + "name": "San Mateo Cajonos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16147000", + "longitude": "-96.20777000" + }, + { + "id": "74142", + "name": "San Mateo del Mar", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.21054000", + "longitude": "-94.98218000" + }, + { + "id": "74125", + "name": "San Mateo Etlatongo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.41609000", + "longitude": "-97.27389000" + }, + { + "id": "74130", + "name": "San Mateo Nejápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65604000", + "longitude": "-98.41662000" + }, + { + "id": "74134", + "name": "San Mateo Piñas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.00049000", + "longitude": "-96.33449000" + }, + { + "id": "74135", + "name": "San Mateo Sindihui", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00456000", + "longitude": "-97.35066000" + }, + { + "id": "74141", + "name": "San Mateo Yoloxochitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14157000", + "longitude": "-96.86417000" + }, + { + "id": "74148", + "name": "San Melchor Betaza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.25267000", + "longitude": "-96.15284000" + }, + { + "id": "74153", + "name": "San Miguel Abejones", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43684000", + "longitude": "-96.60866000" + }, + { + "id": "74154", + "name": "San Miguel Achiutla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.30900000", + "longitude": "-97.48392000" + }, + { + "id": "74160", + "name": "San Miguel Aloápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.41136000", + "longitude": "-96.69154000" + }, + { + "id": "74171", + "name": "San Miguel Chimalapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.71424000", + "longitude": "-94.74811000" + }, + { + "id": "74173", + "name": "San Miguel Coatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.19701000", + "longitude": "-96.69458000" + }, + { + "id": "74237", + "name": "San Miguel del Puerto", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.92169000", + "longitude": "-96.17499000" + }, + { + "id": "74238", + "name": "San Miguel del Valle", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02083000", + "longitude": "-96.41727000" + }, + { + "id": "74175", + "name": "San Miguel Ejutla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.58053000", + "longitude": "-96.73897000" + }, + { + "id": "74240", + "name": "San Miguel el Grande", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06466000", + "longitude": "-97.61547000" + }, + { + "id": "74241", + "name": "San Miguel el Grande Villa Juárez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.04669000", + "longitude": "-97.62160000" + }, + { + "id": "74180", + "name": "San Miguel Figueroa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.78639000", + "longitude": "-96.40417000" + }, + { + "id": "74188", + "name": "San Miguel Mixtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.77719000", + "longitude": "-96.95726000" + }, + { + "id": "74189", + "name": "San Miguel Monteverde", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.53111000", + "longitude": "-97.79250000" + }, + { + "id": "74193", + "name": "San Miguel Panixtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.26012000", + "longitude": "-97.37710000" + }, + { + "id": "74195", + "name": "San Miguel Peras", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93903000", + "longitude": "-97.01119000" + }, + { + "id": "74196", + "name": "San Miguel Quetzaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97380000", + "longitude": "-95.76045000" + }, + { + "id": "74197", + "name": "San Miguel Suchixtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.07765000", + "longitude": "-96.46299000" + }, + { + "id": "74198", + "name": "San Miguel Tecomatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.39454000", + "longitude": "-97.26845000" + }, + { + "id": "74203", + "name": "San Miguel Tenango", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.26659000", + "longitude": "-95.59532000" + }, + { + "id": "74207", + "name": "San Miguel Tetepelcingo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39789000", + "longitude": "-97.90127000" + }, + { + "id": "74210", + "name": "San Miguel Tilquiapam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78218000", + "longitude": "-96.58165000" + }, + { + "id": "74211", + "name": "San Miguel Tlacamama", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.41547000", + "longitude": "-98.06301000" + }, + { + "id": "74212", + "name": "San Miguel Tlacotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.45621000", + "longitude": "-98.00547000" + }, + { + "id": "74251", + "name": "San Nicolás", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.42010000", + "longitude": "-96.74133000" + }, + { + "id": "74260", + "name": "San Nicolás Quialana", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84335000", + "longitude": "-96.77892000" + }, + { + "id": "74286", + "name": "San Pablo Coatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.22429000", + "longitude": "-96.78379000" + }, + { + "id": "74287", + "name": "San Pablo Cuatro Venados", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.98120000", + "longitude": "-96.89103000" + }, + { + "id": "74288", + "name": "San Pablo Etla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.14397000", + "longitude": "-96.74812000" + }, + { + "id": "74289", + "name": "San Pablo Güilá", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80324000", + "longitude": "-96.44025000" + }, + { + "id": "74292", + "name": "San Pablo Huitzo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27708000", + "longitude": "-96.88661000" + }, + { + "id": "74293", + "name": "San Pablo Huixtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.81948000", + "longitude": "-96.78128000" + }, + { + "id": "74296", + "name": "San Pablo Macuiltianguis", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.53348000", + "longitude": "-96.55212000" + }, + { + "id": "74303", + "name": "San Pablo Villa de Mitla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92283000", + "longitude": "-96.35990000" + }, + { + "id": "74311", + "name": "San Pedro Amuzgos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.65388000", + "longitude": "-98.09175000" + }, + { + "id": "74313", + "name": "San Pedro Apóstol", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73657000", + "longitude": "-96.72509000" + }, + { + "id": "74319", + "name": "San Pedro Atoyac", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.49005000", + "longitude": "-97.98585000" + }, + { + "id": "74328", + "name": "San Pedro Comitancillo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.49134000", + "longitude": "-95.15649000" + }, + { + "id": "74329", + "name": "San Pedro Coxcaltepec Cántaros", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.49933000", + "longitude": "-97.13802000" + }, + { + "id": "74415", + "name": "San Pedro el Alto", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.01077000", + "longitude": "-96.47591000" + }, + { + "id": "74338", + "name": "San Pedro Huamelula", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.02697000", + "longitude": "-95.66735000" + }, + { + "id": "74340", + "name": "San Pedro Huilotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.24607000", + "longitude": "-95.15094000" + }, + { + "id": "74344", + "name": "San Pedro Ixcatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14575000", + "longitude": "-96.50953000" + }, + { + "id": "74345", + "name": "San Pedro Ixtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06360000", + "longitude": "-96.81841000" + }, + { + "id": "74346", + "name": "San Pedro Jicayán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.45179000", + "longitude": "-98.01425000" + }, + { + "id": "74347", + "name": "San Pedro Juchaltengo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.34530000", + "longitude": "-97.08954000" + }, + { + "id": "74352", + "name": "San Pedro Martir", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.74317000", + "longitude": "-96.71118000" + }, + { + "id": "74358", + "name": "San Pedro Mártir", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.74458000", + "longitude": "-96.71340000" + }, + { + "id": "74359", + "name": "San Pedro Mártir Quiechapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.41516000", + "longitude": "-96.24451000" + }, + { + "id": "74360", + "name": "San Pedro Mártir Yucuxaco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43245000", + "longitude": "-97.61100000" + }, + { + "id": "74354", + "name": "San Pedro Mixtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.27060000", + "longitude": "-96.28406000" + }, + { + "id": "74363", + "name": "San Pedro Ocopetatillo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.18638000", + "longitude": "-96.91166000" + }, + { + "id": "74364", + "name": "San Pedro Ocotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95501000", + "longitude": "-95.84563000" + }, + { + "id": "74365", + "name": "San Pedro Ozumacín", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67861000", + "longitude": "-96.22556000" + }, + { + "id": "74368", + "name": "San Pedro Pochutla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.74587000", + "longitude": "-96.46601000" + }, + { + "id": "74369", + "name": "San Pedro Quiatoni", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78295000", + "longitude": "-96.03085000" + }, + { + "id": "74371", + "name": "San Pedro Sochiápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.82803000", + "longitude": "-96.66274000" + }, + { + "id": "74372", + "name": "San Pedro Tapanatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.37107000", + "longitude": "-94.19313000" + }, + { + "id": "74374", + "name": "San Pedro Taviche", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.63858000", + "longitude": "-96.53687000" + }, + { + "id": "74382", + "name": "San Pedro Teutila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97773000", + "longitude": "-96.70599000" + }, + { + "id": "74383", + "name": "San Pedro Tidaá", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.34122000", + "longitude": "-97.37239000" + }, + { + "id": "74391", + "name": "San Pedro Topiltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43633000", + "longitude": "-97.34403000" + }, + { + "id": "74393", + "name": "San Pedro Totolápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.66915000", + "longitude": "-96.30755000" + }, + { + "id": "74394", + "name": "San Pedro Tulixtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.53972000", + "longitude": "-98.03472000" + }, + { + "id": "74418", + "name": "San Pedro y San Pablo Teposcolula", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.50179000", + "longitude": "-97.48836000" + }, + { + "id": "74419", + "name": "San Pedro y San Pablo Tequistepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06106000", + "longitude": "-97.71816000" + }, + { + "id": "74401", + "name": "San Pedro Yólox", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.58907000", + "longitude": "-96.55235000" + }, + { + "id": "74438", + "name": "San Raymundo Jalpam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97164000", + "longitude": "-96.75699000" + }, + { + "id": "74439", + "name": "San Roque", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.78682000", + "longitude": "-96.46342000" + }, + { + "id": "74452", + "name": "San Sebastian Teitipac", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95192000", + "longitude": "-96.61427000" + }, + { + "id": "74458", + "name": "San Sebastián Abasolo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99432000", + "longitude": "-96.58701000" + }, + { + "id": "74462", + "name": "San Sebastián Coatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.20212000", + "longitude": "-96.82645000" + }, + { + "id": "74479", + "name": "San Sebastián del Monte", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67778000", + "longitude": "-98.02194000" + }, + { + "id": "74463", + "name": "San Sebastián Etla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16437000", + "longitude": "-96.78343000" + }, + { + "id": "74464", + "name": "San Sebastián Ixcapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.54548000", + "longitude": "-98.14478000" + }, + { + "id": "74465", + "name": "San Sebastián Nicananduta", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51657000", + "longitude": "-97.68370000" + }, + { + "id": "74466", + "name": "San Sebastián Nopalera", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.94310000", + "longitude": "-97.77793000" + }, + { + "id": "74467", + "name": "San Sebastián Río Hondo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.18380000", + "longitude": "-96.46535000" + }, + { + "id": "74468", + "name": "San Sebastián Tecomaxtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.34721000", + "longitude": "-98.03167000" + }, + { + "id": "74472", + "name": "San Sebastián Tutla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.04755000", + "longitude": "-96.68158000" + }, + { + "id": "74484", + "name": "San Simón Almolongas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.40659000", + "longitude": "-96.71927000" + }, + { + "id": "74498", + "name": "San Vicente Coatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.38852000", + "longitude": "-96.84390000" + }, + { + "id": "74501", + "name": "San Vicente Lachixío", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.70502000", + "longitude": "-97.01864000" + }, + { + "id": "74502", + "name": "San Vicente Nuñu", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.45648000", + "longitude": "-97.44319000" + }, + { + "id": "74504", + "name": "San Vicente Piñas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78527000", + "longitude": "-98.06041000" + }, + { + "id": "74519", + "name": "Santa Ana", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.05455000", + "longitude": "-95.08509000" + }, + { + "id": "74556", + "name": "Santa Ana del Valle", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99488000", + "longitude": "-96.47112000" + }, + { + "id": "74547", + "name": "Santa Ana Tlapacoyan", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.74340000", + "longitude": "-96.83688000" + }, + { + "id": "74550", + "name": "Santa Ana Zegache", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.83706000", + "longitude": "-96.72948000" + }, + { + "id": "74571", + "name": "Santa Catalina Quierí", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.31972000", + "longitude": "-96.26694000" + }, + { + "id": "74582", + "name": "Santa Catarina Cuixtla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.30616000", + "longitude": "-96.64236000" + }, + { + "id": "74583", + "name": "Santa Catarina Juquila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.23819000", + "longitude": "-97.29161000" + }, + { + "id": "74584", + "name": "Santa Catarina Loxicha", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.06327000", + "longitude": "-96.71942000" + }, + { + "id": "74585", + "name": "Santa Catarina Mechoacán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33591000", + "longitude": "-97.83707000" + }, + { + "id": "74586", + "name": "Santa Catarina Minas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.77969000", + "longitude": "-96.61536000" + }, + { + "id": "74587", + "name": "Santa Catarina Quiané", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88255000", + "longitude": "-96.74067000" + }, + { + "id": "74588", + "name": "Santa Catarina Roatina", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.27917000", + "longitude": "-96.51778000" + }, + { + "id": "74589", + "name": "Santa Catarina Tayata", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.34715000", + "longitude": "-97.55822000" + }, + { + "id": "74595", + "name": "Santa Cecilia Jalieza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88383000", + "longitude": "-96.61558000" + }, + { + "id": "74614", + "name": "Santa Cruz Acatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16369000", + "longitude": "-96.87503000" + }, + { + "id": "74616", + "name": "Santa Cruz Amilpas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.05833000", + "longitude": "-96.68333000" + }, + { + "id": "74647", + "name": "Santa Cruz de Bravo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.58096000", + "longitude": "-98.22378000" + }, + { + "id": "74649", + "name": "Santa Cruz de Juárez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15045000", + "longitude": "-96.83541000" + }, + { + "id": "74627", + "name": "Santa Cruz Lachixolana", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22784000", + "longitude": "-96.85561000" + }, + { + "id": "74630", + "name": "Santa Cruz Mixtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.79283000", + "longitude": "-96.88072000" + }, + { + "id": "74631", + "name": "Santa Cruz Nundaco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.17109000", + "longitude": "-97.72382000" + }, + { + "id": "74633", + "name": "Santa Cruz Ozolotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.07041000", + "longitude": "-96.30246000" + }, + { + "id": "74634", + "name": "Santa Cruz Papalutla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95667000", + "longitude": "-96.58444000" + }, + { + "id": "74639", + "name": "Santa Cruz Tacache de Mina", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.82898000", + "longitude": "-98.15297000" + }, + { + "id": "74640", + "name": "Santa Cruz Tayata", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35718000", + "longitude": "-97.56843000" + }, + { + "id": "74644", + "name": "Santa Cruz Xitla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.32321000", + "longitude": "-96.67369000" + }, + { + "id": "74645", + "name": "Santa Cruz Xoxocotlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02958000", + "longitude": "-96.73518000" + }, + { + "id": "74661", + "name": "Santa Fe y la Mar", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.76611000", + "longitude": "-96.31611000" + }, + { + "id": "74666", + "name": "Santa Gertrudis", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.78580000", + "longitude": "-96.80024000" + }, + { + "id": "74670", + "name": "Santa Inés de Zaragoza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26946000", + "longitude": "-97.15120000" + }, + { + "id": "74671", + "name": "Santa Inés del Monte", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92387000", + "longitude": "-96.86238000" + }, + { + "id": "74669", + "name": "Santa Inés Yatzeche", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80444000", + "longitude": "-96.75486000" + }, + { + "id": "74685", + "name": "Santa Lucía", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.18860000", + "longitude": "-96.61404000" + }, + { + "id": "74691", + "name": "Santa Lucía del Camino", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06667000", + "longitude": "-96.68069000" + }, + { + "id": "74688", + "name": "Santa Lucía Ocotlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72986000", + "longitude": "-96.66514000" + }, + { + "id": "74690", + "name": "Santa Lucía Teotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.14256000", + "longitude": "-97.20872000" + }, + { + "id": "74692", + "name": "Santa Magdalena Jicotlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80819000", + "longitude": "-97.47389000" + }, + { + "id": "74705", + "name": "Santa María Acatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.14841000", + "longitude": "-97.51261000" + }, + { + "id": "74710", + "name": "Santa María Alotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09259000", + "longitude": "-95.85423000" + }, + { + "id": "74713", + "name": "Santa María Apazco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.62226000", + "longitude": "-97.08524000" + }, + { + "id": "74719", + "name": "Santa María Atzompa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09835000", + "longitude": "-96.78495000" + }, + { + "id": "74722", + "name": "Santa María Camotlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.89688000", + "longitude": "-97.69200000" + }, + { + "id": "74724", + "name": "Santa María Chachoápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.52570000", + "longitude": "-97.28422000" + }, + { + "id": "74725", + "name": "Santa María Chico Ometepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.17500000", + "longitude": "-97.96670000" + }, + { + "id": "74726", + "name": "Santa María Chilapa de Díaz", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51667000", + "longitude": "-97.68333000" + }, + { + "id": "74727", + "name": "Santa María Chimalapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.90639000", + "longitude": "-94.68333000" + }, + { + "id": "74730", + "name": "Santa María Colotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.89737000", + "longitude": "-96.93951000" + }, + { + "id": "74731", + "name": "Santa María Cortijo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.45151000", + "longitude": "-98.28549000" + }, + { + "id": "74732", + "name": "Santa María Coyotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.96663000", + "longitude": "-96.70513000" + }, + { + "id": "74817", + "name": "Santa María del Rosario", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.34848000", + "longitude": "-97.60247000" + }, + { + "id": "74819", + "name": "Santa María del Tule", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.04712000", + "longitude": "-96.63573000" + }, + { + "id": "74734", + "name": "Santa María Ecatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.28498000", + "longitude": "-95.87997000" + }, + { + "id": "74737", + "name": "Santa María Guelacé", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00151000", + "longitude": "-96.60946000" + }, + { + "id": "74738", + "name": "Santa María Guenagati", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.73862000", + "longitude": "-95.35440000" + }, + { + "id": "74739", + "name": "Santa María Huamelula", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.99245000", + "longitude": "-95.70382000" + }, + { + "id": "74740", + "name": "Santa María Huatulco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.83267000", + "longitude": "-96.32063000" + }, + { + "id": "74741", + "name": "Santa María Huazolotitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.30359000", + "longitude": "-97.91293000" + }, + { + "id": "74746", + "name": "Santa María Ipalapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.63944000", + "longitude": "-98.03154000" + }, + { + "id": "74749", + "name": "Santa María Jacatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.86068000", + "longitude": "-96.21174000" + }, + { + "id": "74751", + "name": "Santa María Jalapa del Marqués", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.44027000", + "longitude": "-95.44454000" + }, + { + "id": "74752", + "name": "Santa María Jicaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.37917000", + "longitude": "-98.04333000" + }, + { + "id": "74821", + "name": "Santa María la Asunción", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10722000", + "longitude": "-96.81917000" + }, + { + "id": "74753", + "name": "Santa María Lachixío", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72694000", + "longitude": "-97.01889000" + }, + { + "id": "74760", + "name": "Santa María Mixtequilla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.39111000", + "longitude": "-95.27798000" + }, + { + "id": "74763", + "name": "Santa María Nativitas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.64714000", + "longitude": "-97.32925000" + }, + { + "id": "74764", + "name": "Santa María Nduayaco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.40832000", + "longitude": "-97.50586000" + }, + { + "id": "74771", + "name": "Santa María Pápalo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78452000", + "longitude": "-96.79727000" + }, + { + "id": "74768", + "name": "Santa María Petapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.82060000", + "longitude": "-95.11913000" + }, + { + "id": "74770", + "name": "Santa María Puxmetacán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.26861000", + "longitude": "-95.62333000" + }, + { + "id": "74773", + "name": "Santa María Quiegolani", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.28978000", + "longitude": "-96.04156000" + }, + { + "id": "74775", + "name": "Santa María Sola", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.56615000", + "longitude": "-97.01297000" + }, + { + "id": "74779", + "name": "Santa María Temaxcalapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38036000", + "longitude": "-96.16137000" + }, + { + "id": "74780", + "name": "Santa María Temaxcaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.16552000", + "longitude": "-97.19710000" + }, + { + "id": "74781", + "name": "Santa María Teopoxco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16655000", + "longitude": "-96.95488000" + }, + { + "id": "74782", + "name": "Santa María Tepantlali", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99663000", + "longitude": "-96.00883000" + }, + { + "id": "74785", + "name": "Santa María Tiltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.06270000", + "longitude": "-97.17036000" + }, + { + "id": "74786", + "name": "Santa María Tlalixtac", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93618000", + "longitude": "-96.73402000" + }, + { + "id": "74788", + "name": "Santa María Tonameca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.74805000", + "longitude": "-96.54704000" + }, + { + "id": "74791", + "name": "Santa María Velato", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.50421000", + "longitude": "-96.64514000" + }, + { + "id": "74792", + "name": "Santa María Xadani", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.94825000", + "longitude": "-96.07364000" + }, + { + "id": "74795", + "name": "Santa María Yavesía", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.23531000", + "longitude": "-96.43062000" + }, + { + "id": "74796", + "name": "Santa María Yolotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.88134000", + "longitude": "-97.48014000" + }, + { + "id": "74797", + "name": "Santa María Yucuhiti", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.01873000", + "longitude": "-97.76951000" + }, + { + "id": "74798", + "name": "Santa María Yucunicoco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.23754000", + "longitude": "-97.91698000" + }, + { + "id": "74799", + "name": "Santa María Zacatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76369000", + "longitude": "-97.99028000" + }, + { + "id": "74801", + "name": "Santa María Zaniza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.65531000", + "longitude": "-97.33785000" + }, + { + "id": "74802", + "name": "Santa María Zapotitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.12781000", + "longitude": "-95.85239000" + }, + { + "id": "74804", + "name": "Santa María Zoquitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.55886000", + "longitude": "-96.35325000" + }, + { + "id": "74693", + "name": "Santa Margarita Huitepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93817000", + "longitude": "-95.66944000" + }, + { + "id": "74700", + "name": "Santa Martha Chichihualtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.64948000", + "longitude": "-96.77451000" + }, + { + "id": "74835", + "name": "Santa Rosa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.31655000", + "longitude": "-95.09944000" + }, + { + "id": "74842", + "name": "Santa Rosa Caxtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.30306000", + "longitude": "-98.01694000" + }, + { + "id": "74851", + "name": "Santa Rosa de Lima", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.07111000", + "longitude": "-97.62333000" + }, + { + "id": "74876", + "name": "Santiago Amoltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.64263000", + "longitude": "-97.49674000" + }, + { + "id": "74878", + "name": "Santiago Apostol", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.80381000", + "longitude": "-96.72046000" + }, + { + "id": "74879", + "name": "Santiago Astata", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.98775000", + "longitude": "-95.67571000" + }, + { + "id": "74881", + "name": "Santiago Ayuquililla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93310000", + "longitude": "-97.95769000" + }, + { + "id": "74884", + "name": "Santiago Cacaloxtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.73444000", + "longitude": "-97.74139000" + }, + { + "id": "74888", + "name": "Santiago Chazumba", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19012000", + "longitude": "-97.67983000" + }, + { + "id": "74889", + "name": "Santiago Chilixtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.90611000", + "longitude": "-97.89528000" + }, + { + "id": "74891", + "name": "Santiago Choápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.36084000", + "longitude": "-95.92219000" + }, + { + "id": "74895", + "name": "Santiago Comaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.56547000", + "longitude": "-96.54873000" + }, + { + "id": "74899", + "name": "Santiago Cuixtla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.06196000", + "longitude": "-97.18586000" + }, + { + "id": "74988", + "name": "Santiago del Río", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.44838000", + "longitude": "-98.09111000" + }, + { + "id": "74900", + "name": "Santiago Etla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.15250000", + "longitude": "-96.78972000" + }, + { + "id": "74901", + "name": "Santiago Huajolotitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.82783000", + "longitude": "-97.73266000" + }, + { + "id": "74902", + "name": "Santiago Huauclilla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.45179000", + "longitude": "-97.07277000" + }, + { + "id": "74903", + "name": "Santiago Huaxolotipac", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.97383000", + "longitude": "-97.08610000" + }, + { + "id": "74905", + "name": "Santiago Ihuitlán Plumas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88057000", + "longitude": "-97.43215000" + }, + { + "id": "74906", + "name": "Santiago Ixcuintepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93540000", + "longitude": "-95.62282000" + }, + { + "id": "74908", + "name": "Santiago Ixtaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.68833000", + "longitude": "-94.90583000" + }, + { + "id": "74909", + "name": "Santiago Ixtayutla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.56649000", + "longitude": "-97.65285000" + }, + { + "id": "74911", + "name": "Santiago Jicayán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.47884000", + "longitude": "-98.01018000" + }, + { + "id": "74912", + "name": "Santiago Jocotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.12837000", + "longitude": "-97.43760000" + }, + { + "id": "74913", + "name": "Santiago Juxtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33462000", + "longitude": "-98.01147000" + }, + { + "id": "74914", + "name": "Santiago Lachiguiri", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.68706000", + "longitude": "-95.53067000" + }, + { + "id": "74915", + "name": "Santiago Lalopa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.41786000", + "longitude": "-96.24893000" + }, + { + "id": "74916", + "name": "Santiago Laollaga", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.58418000", + "longitude": "-95.20707000" + }, + { + "id": "74917", + "name": "Santiago Laxopa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21842000", + "longitude": "-96.31099000" + }, + { + "id": "74918", + "name": "Santiago Llano Grande", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.48833000", + "longitude": "-98.28972000" + }, + { + "id": "74919", + "name": "Santiago Malacatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.01639000", + "longitude": "-95.60750000" + }, + { + "id": "74922", + "name": "Santiago Matatlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86470000", + "longitude": "-96.38261000" + }, + { + "id": "74925", + "name": "Santiago Miltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98461000", + "longitude": "-97.69006000" + }, + { + "id": "74927", + "name": "Santiago Nejapilla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.41983000", + "longitude": "-97.37411000" + }, + { + "id": "74928", + "name": "Santiago Niltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.52438000", + "longitude": "-94.59337000" + }, + { + "id": "74930", + "name": "Santiago Nundíche", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33136000", + "longitude": "-97.67392000" + }, + { + "id": "74929", + "name": "Santiago Nundiche", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.34392000", + "longitude": "-97.66988000" + }, + { + "id": "74931", + "name": "Santiago Nuyoó", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.00937000", + "longitude": "-97.75000000" + }, + { + "id": "74938", + "name": "Santiago Quiavicuzas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86297000", + "longitude": "-95.71616000" + }, + { + "id": "74940", + "name": "Santiago Suchilquitongo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.25316000", + "longitude": "-96.87825000" + }, + { + "id": "74944", + "name": "Santiago Tenango", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.32489000", + "longitude": "-97.00467000" + }, + { + "id": "74948", + "name": "Santiago Tepextla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.34065000", + "longitude": "-98.44684000" + }, + { + "id": "74951", + "name": "Santiago Tetepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.32172000", + "longitude": "-97.74794000" + }, + { + "id": "74952", + "name": "Santiago Texcalcingo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21438000", + "longitude": "-96.97358000" + }, + { + "id": "74953", + "name": "Santiago Textitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.69264000", + "longitude": "-97.25884000" + }, + { + "id": "74957", + "name": "Santiago Tilantongo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.28464000", + "longitude": "-97.33879000" + }, + { + "id": "74959", + "name": "Santiago Tillo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.46497000", + "longitude": "-97.32040000" + }, + { + "id": "74971", + "name": "Santiago Xanica", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.01009000", + "longitude": "-96.22462000" + }, + { + "id": "74972", + "name": "Santiago Yaitepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.22628000", + "longitude": "-97.26953000" + }, + { + "id": "74976", + "name": "Santiago Yogana", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.46130000", + "longitude": "-96.78786000" + }, + { + "id": "74977", + "name": "Santiago Yolomécatl", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.47237000", + "longitude": "-97.56981000" + }, + { + "id": "74978", + "name": "Santiago Yosondúa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.87601000", + "longitude": "-97.57607000" + }, + { + "id": "74979", + "name": "Santiago Zacatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16005000", + "longitude": "-95.91455000" + }, + { + "id": "74981", + "name": "Santiago Zoochila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22000000", + "longitude": "-96.24167000" + }, + { + "id": "74996", + "name": "Santo Domingo Albarradas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07257000", + "longitude": "-96.19076000" + }, + { + "id": "74997", + "name": "Santo Domingo Armenta", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.33194000", + "longitude": "-98.37778000" + }, + { + "id": "75000", + "name": "Santo Domingo Chihuitán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.59135000", + "longitude": "-95.16331000" + }, + { + "id": "75018", + "name": "Santo Domingo de Morelos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.83397000", + "longitude": "-96.66695000" + }, + { + "id": "75002", + "name": "Santo Domingo Jalieza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86848000", + "longitude": "-96.62919000" + }, + { + "id": "75005", + "name": "Santo Domingo Ozolotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.17103000", + "longitude": "-96.32044000" + }, + { + "id": "75006", + "name": "Santo Domingo Petapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.81869000", + "longitude": "-95.14072000" + }, + { + "id": "75007", + "name": "Santo Domingo Roayaga", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.33782000", + "longitude": "-96.11506000" + }, + { + "id": "75009", + "name": "Santo Domingo Tehuantepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.32463000", + "longitude": "-95.24104000" + }, + { + "id": "75010", + "name": "Santo Domingo Tepuxtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95584000", + "longitude": "-96.05823000" + }, + { + "id": "75011", + "name": "Santo Domingo Tlatayapam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.40778000", + "longitude": "-97.34581000" + }, + { + "id": "75012", + "name": "Santo Domingo Tomaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.06117000", + "longitude": "-96.62280000" + }, + { + "id": "75013", + "name": "Santo Domingo Tonalá", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67352000", + "longitude": "-97.96556000" + }, + { + "id": "75014", + "name": "Santo Domingo Yanhuitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.53283000", + "longitude": "-97.35332000" + }, + { + "id": "75015", + "name": "Santo Domingo Yodohino", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.61694000", + "longitude": "-97.68289000" + }, + { + "id": "75016", + "name": "Santo Domingo Zanatepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.48307000", + "longitude": "-94.34754000" + }, + { + "id": "75024", + "name": "Santo Tomás", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.04194000", + "longitude": "-96.51389000" + }, + { + "id": "75029", + "name": "Santo Tomás Jalieza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.84469000", + "longitude": "-96.67063000" + }, + { + "id": "75030", + "name": "Santo Tomás Mazaltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.17222000", + "longitude": "-96.87083000" + }, + { + "id": "75031", + "name": "Santo Tomás Ocotepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.12204000", + "longitude": "-97.77344000" + }, + { + "id": "75032", + "name": "Santo Tomás Tamazulapam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.27064000", + "longitude": "-96.58193000" + }, + { + "id": "75035", + "name": "Santos Reyes Nopala", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.10694000", + "longitude": "-97.14435000" + }, + { + "id": "75036", + "name": "Santos Reyes Pápalo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80532000", + "longitude": "-96.86157000" + }, + { + "id": "75037", + "name": "Santos Reyes Tepejillo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43782000", + "longitude": "-97.93845000" + }, + { + "id": "75038", + "name": "Santos Reyes Yucuná", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.77400000", + "longitude": "-98.00172000" + }, + { + "id": "75054", + "name": "Sector H Tres", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.76611000", + "longitude": "-96.14694000" + }, + { + "id": "75078", + "name": "Silacayoápam", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.50297000", + "longitude": "-98.13966000" + }, + { + "id": "75102", + "name": "Sitio de Xitlapehua", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.35139000", + "longitude": "-96.53215000" + }, + { + "id": "75112", + "name": "Soledad Etla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.16556000", + "longitude": "-96.82212000" + }, + { + "id": "75115", + "name": "Soledad Salinas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.66229000", + "longitude": "-96.00266000" + }, + { + "id": "75177", + "name": "Tamazola", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67020000", + "longitude": "-98.22084000" + }, + { + "id": "75182", + "name": "Tamazulapam Villa del Progreso", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.67710000", + "longitude": "-97.57315000" + }, + { + "id": "75183", + "name": "Tamazulápam del Espíritu Santo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.05500000", + "longitude": "-96.06528000" + }, + { + "id": "75207", + "name": "Tanetze de Zaragoza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.37616000", + "longitude": "-96.30111000" + }, + { + "id": "75213", + "name": "Taniche", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.56860000", + "longitude": "-96.75514000" + }, + { + "id": "75224", + "name": "Tapanalá", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "15.96659000", + "longitude": "-95.72476000" + }, + { + "id": "75238", + "name": "Tatahuicapá", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.55113000", + "longitude": "-95.64088000" + }, + { + "id": "75239", + "name": "Tataltepec de Valdés", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.30549000", + "longitude": "-97.54615000" + }, + { + "id": "75283", + "name": "Tecomavaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.95577000", + "longitude": "-97.02263000" + }, + { + "id": "75329", + "name": "Temascal", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24285000", + "longitude": "-96.40165000" + }, + { + "id": "75374", + "name": "Teococuilco de Marcos Pérez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.35270000", + "longitude": "-96.61528000" + }, + { + "id": "75376", + "name": "Teojomulco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.59032000", + "longitude": "-97.22493000" + }, + { + "id": "75384", + "name": "Teotitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13179000", + "longitude": "-97.07056000" + }, + { + "id": "75385", + "name": "Teotitlán del Valle", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.02975000", + "longitude": "-96.51926000" + }, + { + "id": "75412", + "name": "Tepenixtlahuaca", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.29236000", + "longitude": "-97.49184000" + }, + { + "id": "75427", + "name": "Tepetlapa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.66601000", + "longitude": "-98.39188000" + }, + { + "id": "75477", + "name": "Tetela", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50887000", + "longitude": "-96.45880000" + }, + { + "id": "75514", + "name": "Texcatitlán", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.71259000", + "longitude": "-97.06625000" + }, + { + "id": "75519", + "name": "Texmelucan", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.58510000", + "longitude": "-97.19907000" + }, + { + "id": "75526", + "name": "Tezoatlán de Segura y Luna", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65388000", + "longitude": "-97.81068000" + }, + { + "id": "75601", + "name": "Tlachichilco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.62220000", + "longitude": "-98.34312000" + }, + { + "id": "75605", + "name": "Tlacoatzintepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.85985000", + "longitude": "-96.58647000" + }, + { + "id": "75609", + "name": "Tlacolula de Matamoros", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95471000", + "longitude": "-96.47590000" + }, + { + "id": "75633", + "name": "Tlahuitoltepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.09746000", + "longitude": "-96.06279000" + }, + { + "id": "75640", + "name": "Tlalixtac de Cabrera", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.07112000", + "longitude": "-96.64710000" + }, + { + "id": "75757", + "name": "Totontepec Villa de Morelos", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.25679000", + "longitude": "-96.02786000" + }, + { + "id": "75760", + "name": "Toxpalan", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10125000", + "longitude": "-97.05869000" + }, + { + "id": "75783", + "name": "Trinidad de Viguera", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.13059000", + "longitude": "-96.75025000" + }, + { + "id": "75782", + "name": "Trinidad Zaachila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.92135000", + "longitude": "-96.76384000" + }, + { + "id": "75823", + "name": "Tuxtepec", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.08830000", + "longitude": "-96.12535000" + }, + { + "id": "75884", + "name": "Unión Hidalgo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.47230000", + "longitude": "-94.82952000" + }, + { + "id": "75906", + "name": "Valdeflores", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.76588000", + "longitude": "-96.82435000" + }, + { + "id": "75911", + "name": "Valerio Trujano", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78130000", + "longitude": "-96.97852000" + }, + { + "id": "75917", + "name": "Valle Nacional", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.77579000", + "longitude": "-96.30174000" + }, + { + "id": "75941", + "name": "Vega del Sol", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80972000", + "longitude": "-96.21694000" + }, + { + "id": "75970", + "name": "Vicente Camalote", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51443000", + "longitude": "-96.52915000" + }, + { + "id": "75978", + "name": "Vicente Guerrero", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93306000", + "longitude": "-96.70139000" + }, + { + "id": "75994", + "name": "Villa Chalcatongo de Hidalgo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.03247000", + "longitude": "-97.57057000" + }, + { + "id": "75999", + "name": "Villa Díaz Ordaz", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.99578000", + "longitude": "-96.43231000" + }, + { + "id": "76064", + "name": "Villa de Etla", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.20615000", + "longitude": "-96.79890000" + }, + { + "id": "76068", + "name": "Villa de Tamazulápam del Progreso", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.69300000", + "longitude": "-97.57366000" + }, + { + "id": "76069", + "name": "Villa de Tututepec de Melchor Ocampo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.04794000", + "longitude": "-97.53109000" + }, + { + "id": "76070", + "name": "Villa de Zaachila", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.95098000", + "longitude": "-96.74938000" + }, + { + "id": "76009", + "name": "Villa Hidalgo", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.18409000", + "longitude": "-96.17831000" + }, + { + "id": "76044", + "name": "Villa Sola de Vega", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.51844000", + "longitude": "-96.97810000" + }, + { + "id": "76045", + "name": "Villa Talea de Castro", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.36489000", + "longitude": "-96.24722000" + }, + { + "id": "76047", + "name": "Villa Tejúpam de la Unión", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.66250000", + "longitude": "-97.47083000" + }, + { + "id": "76095", + "name": "Vista Hermosa", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.79639000", + "longitude": "-97.75694000" + }, + { + "id": "76109", + "name": "Xaaga", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.90420000", + "longitude": "-96.32779000" + }, + { + "id": "76111", + "name": "Xagacía", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.15436000", + "longitude": "-96.26753000" + }, + { + "id": "76181", + "name": "Xochitonalco", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.09443000", + "longitude": "-96.84848000" + }, + { + "id": "76208", + "name": "Yaganiza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.14495000", + "longitude": "-96.22960000" + }, + { + "id": "76212", + "name": "Yalina", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.23969000", + "longitude": "-96.26233000" + }, + { + "id": "76219", + "name": "Yatzachi", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.22588000", + "longitude": "-96.22137000" + }, + { + "id": "76225", + "name": "Yaxe", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.72595000", + "longitude": "-96.47191000" + }, + { + "id": "76235", + "name": "Yetla de Juárez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.66559000", + "longitude": "-97.99124000" + }, + { + "id": "76247", + "name": "Yucuita", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51073000", + "longitude": "-97.26965000" + }, + { + "id": "76251", + "name": "Yutanduchi de Guerrero", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.04020000", + "longitude": "-97.29795000" + }, + { + "id": "76269", + "name": "Zacatal", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.93982000", + "longitude": "-95.20312000" + }, + { + "id": "76308", + "name": "Zapotitlán Lagunas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.75621000", + "longitude": "-98.38958000" + }, + { + "id": "76309", + "name": "Zapotitlán Palmas", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88965000", + "longitude": "-97.81849000" + }, + { + "id": "76316", + "name": "Zaragoza", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.66923000", + "longitude": "-97.79322000" + }, + { + "id": "76324", + "name": "Zarzal", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "17.01419000", + "longitude": "-95.03738000" + }, + { + "id": "76338", + "name": "Zimatlán de Álvarez", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.86939000", + "longitude": "-96.78435000" + }, + { + "id": "76357", + "name": "Zocoteaca de León", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "16.63818000", + "longitude": "-98.00276000" + }, + { + "id": "76360", + "name": "Zona Urbana Ejidal", + "state_id": 3448, + "state_code": "OAX", + "country_id": 142, + "country_code": "MX", + "latitude": "18.53250000", + "longitude": "-96.58917000" + }, + { + "id": "68006", + "name": "18 de Marzo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96889000", + "longitude": "-98.16028000" + }, + { + "id": "68027", + "name": "Acajete", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11154000", + "longitude": "-97.95231000" + }, + { + "id": "68042", + "name": "Acateno", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11324000", + "longitude": "-97.22710000" + }, + { + "id": "68044", + "name": "Acatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37236000", + "longitude": "-97.03651000" + }, + { + "id": "68049", + "name": "Acatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22374000", + "longitude": "-98.07685000" + }, + { + "id": "68051", + "name": "Acatlán de Osorio", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.20250000", + "longitude": "-98.04864000" + }, + { + "id": "68053", + "name": "Acatzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98196000", + "longitude": "-97.78363000" + }, + { + "id": "68056", + "name": "Acaxtlahuacán de Albino Zertuche", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01714000", + "longitude": "-98.54018000" + }, + { + "id": "68069", + "name": "Acteopan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76388000", + "longitude": "-98.71366000" + }, + { + "id": "68070", + "name": "Actipan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93689000", + "longitude": "-97.90252000" + }, + { + "id": "68071", + "name": "Actipan de Morelos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96003000", + "longitude": "-97.79904000" + }, + { + "id": "68074", + "name": "Acuaco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76250000", + "longitude": "-97.56444000" + }, + { + "id": "68076", + "name": "Acuexcomac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03742000", + "longitude": "-98.38501000" + }, + { + "id": "68137", + "name": "Ahuacatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13722000", + "longitude": "-98.00750000" + }, + { + "id": "68143", + "name": "Ahuatempan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41269000", + "longitude": "-98.01850000" + }, + { + "id": "68145", + "name": "Ahuatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85831000", + "longitude": "-97.91764000" + }, + { + "id": "68147", + "name": "Ahuatepec de Camino", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04087000", + "longitude": "-97.43457000" + }, + { + "id": "68149", + "name": "Ahuatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57930000", + "longitude": "-98.27791000" + }, + { + "id": "68150", + "name": "Ahuaxintitla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25325000", + "longitude": "-97.89561000" + }, + { + "id": "68151", + "name": "Ahuazotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04535000", + "longitude": "-98.16332000" + }, + { + "id": "68153", + "name": "Ahuehuetitla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21272000", + "longitude": "-98.21949000" + }, + { + "id": "68164", + "name": "Ajalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37908000", + "longitude": "-97.25867000" + }, + { + "id": "68176", + "name": "Albino Zertuche", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01275000", + "longitude": "-98.55511000" + }, + { + "id": "68201", + "name": "Alhuaca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.56795000", + "longitude": "-97.16594000" + }, + { + "id": "68204", + "name": "Aljojuca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09933000", + "longitude": "-97.52973000" + }, + { + "id": "68206", + "name": "Allende", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53879000", + "longitude": "-97.59711000" + }, + { + "id": "68210", + "name": "Almecatla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14286000", + "longitude": "-98.23597000" + }, + { + "id": "68213", + "name": "Almolonga", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.47627000", + "longitude": "-97.96353000" + }, + { + "id": "68226", + "name": "Altepexi", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37035000", + "longitude": "-97.29966000" + }, + { + "id": "68242", + "name": "Amatitlán de Azueta", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17631000", + "longitude": "-98.07640000" + }, + { + "id": "68254", + "name": "Ameluca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56344000", + "longitude": "-97.82571000" + }, + { + "id": "68256", + "name": "Amixtlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04778000", + "longitude": "-97.79918000" + }, + { + "id": "68257", + "name": "Amozoc", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05019000", + "longitude": "-98.04154000" + }, + { + "id": "68258", + "name": "Amozoc de Mota", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04611000", + "longitude": "-98.04500000" + }, + { + "id": "68268", + "name": "Analco de Ponciano Arriaga (Santa Cruz Analco)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26444000", + "longitude": "-98.50028000" + }, + { + "id": "68290", + "name": "Apango de Zaragoza", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06833000", + "longitude": "-97.94028000" + }, + { + "id": "68292", + "name": "Apantéopan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35820000", + "longitude": "-97.19104000" + }, + { + "id": "68293", + "name": "Apapantilla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.40356000", + "longitude": "-97.84665000" + }, + { + "id": "68298", + "name": "Apatauyan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79911000", + "longitude": "-97.44440000" + }, + { + "id": "68327", + "name": "Aquixtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77957000", + "longitude": "-97.93526000" + }, + { + "id": "68377", + "name": "Artículo Primero Constitucional", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97412000", + "longitude": "-98.15848000" + }, + { + "id": "68389", + "name": "Atalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84374000", + "longitude": "-97.56008000" + }, + { + "id": "68394", + "name": "Atecax", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69870000", + "longitude": "-97.36698000" + }, + { + "id": "68396", + "name": "Atempan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83945000", + "longitude": "-97.45855000" + }, + { + "id": "68398", + "name": "Atencingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51347000", + "longitude": "-98.60542000" + }, + { + "id": "68402", + "name": "Atexcal", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.36391000", + "longitude": "-97.68770000" + }, + { + "id": "68408", + "name": "Atla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27527000", + "longitude": "-98.12469000" + }, + { + "id": "68420", + "name": "Atlequizayan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01214000", + "longitude": "-97.62423000" + }, + { + "id": "68422", + "name": "Atlixco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90815000", + "longitude": "-98.43613000" + }, + { + "id": "68426", + "name": "Atoluca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85500000", + "longitude": "-97.35361000" + }, + { + "id": "68435", + "name": "Atoyatempan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81925000", + "longitude": "-97.91390000" + }, + { + "id": "68438", + "name": "Atzala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54639000", + "longitude": "-98.55306000" + }, + { + "id": "68440", + "name": "Atzalán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82472000", + "longitude": "-97.44417000" + }, + { + "id": "68441", + "name": "Atzingo (La Cumbre)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97972000", + "longitude": "-97.96861000" + }, + { + "id": "68442", + "name": "Atzitzintla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89915000", + "longitude": "-97.32440000" + }, + { + "id": "68455", + "name": "Axutla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.18938000", + "longitude": "-98.38935000" + }, + { + "id": "68456", + "name": "Axuxco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23045000", + "longitude": "-97.20739000" + }, + { + "id": "68464", + "name": "Ayotla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.67004000", + "longitude": "-98.37266000" + }, + { + "id": "68465", + "name": "Ayotoxco de Guerrero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09589000", + "longitude": "-97.40961000" + }, + { + "id": "68470", + "name": "Ayutla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54503000", + "longitude": "-98.50537000" + }, + { + "id": "68476", + "name": "Azumbilla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64552000", + "longitude": "-97.39815000" + }, + { + "id": "76393", + "name": "Álamos Tepetitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19619000", + "longitude": "-97.43858000" + }, + { + "id": "76398", + "name": "Álvaro Obregón", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02781000", + "longitude": "-97.90219000" + }, + { + "id": "68546", + "name": "Barrio de Nuevo León", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08861000", + "longitude": "-98.29000000" + }, + { + "id": "68581", + "name": "Bellavista de Victoria (San José Bellavista)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87639000", + "longitude": "-97.54389000" + }, + { + "id": "68592", + "name": "Benito Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81654000", + "longitude": "-97.79108000" + }, + { + "id": "68608", + "name": "Beristain", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09426000", + "longitude": "-98.13290000" + }, + { + "id": "68615", + "name": "Bienvenido", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12235000", + "longitude": "-97.74434000" + }, + { + "id": "68662", + "name": "Buena Vista", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12767000", + "longitude": "-97.45373000" + }, + { + "id": "68674", + "name": "Buenavista", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25767000", + "longitude": "-97.07531000" + }, + { + "id": "68683", + "name": "Buenavista de Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94500000", + "longitude": "-97.82778000" + }, + { + "id": "68677", + "name": "Buenavista Tetela", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91967000", + "longitude": "-98.17632000" + }, + { + "id": "68690", + "name": "Buenos Aires", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15333000", + "longitude": "-97.74833000" + }, + { + "id": "68712", + "name": "Cacaloxúchitl", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78747000", + "longitude": "-98.48614000" + }, + { + "id": "68724", + "name": "Cala Norte", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84778000", + "longitude": "-97.42306000" + }, + { + "id": "68725", + "name": "Cala Sur", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83278000", + "longitude": "-97.42111000" + }, + { + "id": "68739", + "name": "Calipan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.29519000", + "longitude": "-97.16376000" + }, + { + "id": "68743", + "name": "Calmeca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63501000", + "longitude": "-98.63414000" + }, + { + "id": "68746", + "name": "Calpanería Atezquilla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65556000", + "longitude": "-97.99528000" + }, + { + "id": "68765", + "name": "Camocuautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03805000", + "longitude": "-97.75853000" + }, + { + "id": "68766", + "name": "Camotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04720000", + "longitude": "-98.06825000" + }, + { + "id": "68791", + "name": "Candelaria Portezuelo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04194000", + "longitude": "-97.70083000" + }, + { + "id": "68828", + "name": "Carmen Serdán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03639000", + "longitude": "-97.81194000" + }, + { + "id": "68846", + "name": "Casa Blanca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04222000", + "longitude": "-98.11889000" + }, + { + "id": "68868", + "name": "Caxhuacán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06359000", + "longitude": "-97.60688000" + }, + { + "id": "68958", + "name": "Chalchihuapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97183000", + "longitude": "-98.33698000" + }, + { + "id": "68986", + "name": "Chapulco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62586000", + "longitude": "-97.40474000" + }, + { + "id": "69014", + "name": "Chiautla de Tapia", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30149000", + "longitude": "-98.60339000" + }, + { + "id": "69016", + "name": "Chicahuaxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14250000", + "longitude": "-97.94556000" + }, + { + "id": "69022", + "name": "Chichicapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40056000", + "longitude": "-97.04694000" + }, + { + "id": "69025", + "name": "Chichicuautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39073000", + "longitude": "-97.39394000" + }, + { + "id": "69032", + "name": "Chichiquila", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20073000", + "longitude": "-97.06691000" + }, + { + "id": "69042", + "name": "Chiconcuautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09517000", + "longitude": "-97.93896000" + }, + { + "id": "69045", + "name": "Chicontla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24402000", + "longitude": "-97.83063000" + }, + { + "id": "69052", + "name": "Chietla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52028000", + "longitude": "-98.57889000" + }, + { + "id": "69053", + "name": "Chigmecatitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64634000", + "longitude": "-98.07203000" + }, + { + "id": "69054", + "name": "Chignahuapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83866000", + "longitude": "-98.03171000" + }, + { + "id": "69059", + "name": "Chila", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96747000", + "longitude": "-97.87478000" + }, + { + "id": "69060", + "name": "Chila de Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28113000", + "longitude": "-98.20937000" + }, + { + "id": "69061", + "name": "Chila de la Sal", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10975000", + "longitude": "-98.48574000" + }, + { + "id": "69068", + "name": "Chilchotla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26916000", + "longitude": "-97.19916000" + }, + { + "id": "69084", + "name": "Chinantla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23423000", + "longitude": "-98.27627000" + }, + { + "id": "69085", + "name": "Chinautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81996000", + "longitude": "-97.38859000" + }, + { + "id": "69088", + "name": "Chipahuatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06111000", + "longitude": "-97.68861000" + }, + { + "id": "69089", + "name": "Chipilo de Francisco Javier Mina", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00611000", + "longitude": "-98.33056000" + }, + { + "id": "69103", + "name": "Cholula", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06406000", + "longitude": "-98.30352000" + }, + { + "id": "69135", + "name": "Cinco de Mayo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13167000", + "longitude": "-97.63000000" + }, + { + "id": "69187", + "name": "Ciudad de Chiautla de Tapia", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30000000", + "longitude": "-98.60389000" + }, + { + "id": "69188", + "name": "Ciudad de Cuetzalan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01861000", + "longitude": "-97.52111000" + }, + { + "id": "69192", + "name": "Ciudad de Tlatlauquitepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85278000", + "longitude": "-97.49528000" + }, + { + "id": "69181", + "name": "Ciudad Serdán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98856000", + "longitude": "-97.44643000" + }, + { + "id": "69217", + "name": "Coahuixco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80556000", + "longitude": "-97.41028000" + }, + { + "id": "69226", + "name": "Coatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06236000", + "longitude": "-97.73069000" + }, + { + "id": "69232", + "name": "Coatzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61199000", + "longitude": "-98.17267000" + }, + { + "id": "69252", + "name": "Cohuecán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78268000", + "longitude": "-98.72085000" + }, + { + "id": "69276", + "name": "Colonia Agrícola de Ocotepec (Colonia San José)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92972000", + "longitude": "-98.54444000" + }, + { + "id": "69344", + "name": "Colonia Obrera", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22944000", + "longitude": "-97.79750000" + }, + { + "id": "69413", + "name": "Colucan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50905000", + "longitude": "-98.48078000" + }, + { + "id": "69420", + "name": "Comaltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85893000", + "longitude": "-97.59938000" + }, + { + "id": "69433", + "name": "Concepción Capulac (La Ex-Hacienda)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09444000", + "longitude": "-98.06139000" + }, + { + "id": "69436", + "name": "Concepción Cuautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86722000", + "longitude": "-97.98475000" + }, + { + "id": "69473", + "name": "Copila", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27300000", + "longitude": "-98.08294000" + }, + { + "id": "69480", + "name": "Coronango", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12090000", + "longitude": "-98.30594000" + }, + { + "id": "69481", + "name": "Coronel Tito Hernández", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45642000", + "longitude": "-97.73607000" + }, + { + "id": "69511", + "name": "Coxcatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.26709000", + "longitude": "-97.15078000" + }, + { + "id": "69512", + "name": "Coxolico", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.45104000", + "longitude": "-97.02991000" + }, + { + "id": "69519", + "name": "Coyomeapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28206000", + "longitude": "-96.99336000" + }, + { + "id": "69522", + "name": "Coyotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41656000", + "longitude": "-97.82703000" + }, + { + "id": "69549", + "name": "Cuacnopalan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81758000", + "longitude": "-97.51116000" + }, + { + "id": "69550", + "name": "Cuacuila", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17205000", + "longitude": "-98.03150000" + }, + { + "id": "69559", + "name": "Cuanalá", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10917000", + "longitude": "-98.32788000" + }, + { + "id": "69562", + "name": "Cuapiaxtla de Madero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91544000", + "longitude": "-97.82382000" + }, + { + "id": "69569", + "name": "Cuatro Caminos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.49130000", + "longitude": "-97.12901000" + }, + { + "id": "69573", + "name": "Cuauhtamazaco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02500000", + "longitude": "-97.48722000" + }, + { + "id": "69584", + "name": "Cuauhtémoc", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22306000", + "longitude": "-97.33833000" + }, + { + "id": "69586", + "name": "Cuautempan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91612000", + "longitude": "-97.79097000" + }, + { + "id": "69589", + "name": "Cuautinchán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95463000", + "longitude": "-98.01566000" + }, + { + "id": "69593", + "name": "Cuautlancingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08995000", + "longitude": "-98.27319000" + }, + { + "id": "69595", + "name": "Cuautotola", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06841000", + "longitude": "-97.79806000" + }, + { + "id": "69596", + "name": "Cuautotolapan (San José)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43299000", + "longitude": "-97.12091000" + }, + { + "id": "69598", + "name": "Cuaxoxpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80806000", + "longitude": "-97.34583000" + }, + { + "id": "69599", + "name": "Cuaxuxpa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46211000", + "longitude": "-97.03556000" + }, + { + "id": "69600", + "name": "Cuayuca de Andrade", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.44416000", + "longitude": "-98.19193000" + }, + { + "id": "69618", + "name": "Cuesta Blanca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84536000", + "longitude": "-97.46753000" + }, + { + "id": "69622", + "name": "Cuetzalan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01766000", + "longitude": "-97.52277000" + }, + { + "id": "69623", + "name": "Cuetzalan del Progreso", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03857000", + "longitude": "-97.49268000" + }, + { + "id": "69624", + "name": "Cuexpala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62720000", + "longitude": "-98.55842000" + }, + { + "id": "69652", + "name": "Cuyoaco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60192000", + "longitude": "-97.62024000" + }, + { + "id": "69705", + "name": "Dolores Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75697000", + "longitude": "-97.86062000" + }, + { + "id": "69708", + "name": "Domingo Arenas", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13998000", + "longitude": "-98.45678000" + }, + { + "id": "69862", + "name": "El Capulo (La Quebradora)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94944000", + "longitude": "-98.26889000" + }, + { + "id": "69874", + "name": "El Carmen", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24167000", + "longitude": "-97.20111000" + }, + { + "id": "69897", + "name": "El Chacal", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22228000", + "longitude": "-97.46025000" + }, + { + "id": "69953", + "name": "El Encanto del Cerril", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93194000", + "longitude": "-98.42556000" + }, + { + "id": "69973", + "name": "El Fuerte de la Unión", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43077000", + "longitude": "-97.56064000" + }, + { + "id": "70041", + "name": "El Mirador", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55694000", + "longitude": "-97.77194000" + }, + { + "id": "70047", + "name": "El Molino", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81333000", + "longitude": "-97.58028000" + }, + { + "id": "70080", + "name": "El Palmar", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13972000", + "longitude": "-97.05306000" + }, + { + "id": "70132", + "name": "El Progreso", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01917000", + "longitude": "-97.36472000" + }, + { + "id": "70162", + "name": "El Rincón Citlaltépetl", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15556000", + "longitude": "-97.89444000" + }, + { + "id": "70251", + "name": "El Veladero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96421000", + "longitude": "-97.48289000" + }, + { + "id": "70273", + "name": "Eloxochitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50883000", + "longitude": "-96.92271000" + }, + { + "id": "70275", + "name": "Emancipación Quetzalapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17333000", + "longitude": "-97.39203000" + }, + { + "id": "70295", + "name": "Emilio Carranza (Santa Cruz)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71278000", + "longitude": "-97.65278000" + }, + { + "id": "70296", + "name": "Emilio Portes Gil", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30751000", + "longitude": "-97.51027000" + }, + { + "id": "70327", + "name": "Esperanza", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85853000", + "longitude": "-97.37641000" + }, + { + "id": "70466", + "name": "Francisco I. Madero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24985000", + "longitude": "-97.22648000" + }, + { + "id": "70471", + "name": "Francisco Ignacio Madero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.49306000", + "longitude": "-97.46384000" + }, + { + "id": "70476", + "name": "Francisco Sarabia", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96417000", + "longitude": "-98.31389000" + }, + { + "id": "70482", + "name": "Francisco Villa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84446000", + "longitude": "-97.76336000" + }, + { + "id": "70483", + "name": "Francisco Z. Mena", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72614000", + "longitude": "-97.81882000" + }, + { + "id": "70506", + "name": "Galaxia la Calera", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99900000", + "longitude": "-98.15250000" + }, + { + "id": "70647", + "name": "Gómez Poniente", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77250000", + "longitude": "-97.48694000" + }, + { + "id": "70531", + "name": "General Felipe Ángeles", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00786000", + "longitude": "-97.68282000" + }, + { + "id": "70548", + "name": "Gilberto Camacho", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37365000", + "longitude": "-97.88546000" + }, + { + "id": "70556", + "name": "González Ortega", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34268000", + "longitude": "-97.27023000" + }, + { + "id": "70559", + "name": "Grajales", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22796000", + "longitude": "-97.80307000" + }, + { + "id": "70576", + "name": "Guadalupe", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06521000", + "longitude": "-98.14673000" + }, + { + "id": "70579", + "name": "Guadalupe Calderón", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96611000", + "longitude": "-97.85833000" + }, + { + "id": "70581", + "name": "Guadalupe Enríquez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89374000", + "longitude": "-97.58759000" + }, + { + "id": "70586", + "name": "Guadalupe Libertad", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18789000", + "longitude": "-97.38744000" + }, + { + "id": "70588", + "name": "Guadalupe Morelos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02556000", + "longitude": "-97.80417000" + }, + { + "id": "70589", + "name": "Guadalupe Santa Ana", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.09140000", + "longitude": "-98.12079000" + }, + { + "id": "70590", + "name": "Guadalupe Sarabia", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53096000", + "longitude": "-97.42752000" + }, + { + "id": "70598", + "name": "Guadalupe Victoria", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29110000", + "longitude": "-97.34290000" + }, + { + "id": "70607", + "name": "Guadalupe Zaragoza", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35833000", + "longitude": "-98.53750000" + }, + { + "id": "70668", + "name": "Hermenegildo Galeana", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25667000", + "longitude": "-98.10222000" + }, + { + "id": "70706", + "name": "Honey", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25454000", + "longitude": "-98.23090000" + }, + { + "id": "70715", + "name": "Huachinantla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28175000", + "longitude": "-98.96796000" + }, + { + "id": "70717", + "name": "Huahuaxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91627000", + "longitude": "-97.63717000" + }, + { + "id": "70722", + "name": "Huajoyuca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51240000", + "longitude": "-97.93737000" + }, + { + "id": "70738", + "name": "Huaquechula", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77116000", + "longitude": "-98.54460000" + }, + { + "id": "70742", + "name": "Huatlatlauca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.69189000", + "longitude": "-98.03819000" + }, + { + "id": "70744", + "name": "Huauchinango", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17376000", + "longitude": "-98.05491000" + }, + { + "id": "70747", + "name": "Huautla de Jiménez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13150000", + "longitude": "-96.84088000" + }, + { + "id": "70748", + "name": "Huaxcaleca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23401000", + "longitude": "-97.07696000" + }, + { + "id": "70758", + "name": "Huehuetla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10391000", + "longitude": "-97.62507000" + }, + { + "id": "70759", + "name": "Huehuetlan el Chico", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37347000", + "longitude": "-98.69002000" + }, + { + "id": "70760", + "name": "Huehuetlán el Grande", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74693000", + "longitude": "-98.15770000" + }, + { + "id": "70764", + "name": "Huejonapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46971000", + "longitude": "-97.92149000" + }, + { + "id": "70766", + "name": "Huejotzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15892000", + "longitude": "-98.40824000" + }, + { + "id": "70775", + "name": "Hueyapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91856000", + "longitude": "-97.41023000" + }, + { + "id": "70777", + "name": "Hueyapán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88276000", + "longitude": "-97.44537000" + }, + { + "id": "70780", + "name": "Hueyotlipan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89148000", + "longitude": "-97.86575000" + }, + { + "id": "70783", + "name": "Hueytamalco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94029000", + "longitude": "-97.28848000" + }, + { + "id": "70785", + "name": "Hueytlalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02707000", + "longitude": "-97.69694000" + }, + { + "id": "70790", + "name": "Huilacapixtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21232000", + "longitude": "-98.08185000" + }, + { + "id": "70807", + "name": "Huitzilac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60669000", + "longitude": "-97.74207000" + }, + { + "id": "70808", + "name": "Huitzilan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96750000", + "longitude": "-97.69441000" + }, + { + "id": "70811", + "name": "Huitziltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76693000", + "longitude": "-97.85963000" + }, + { + "id": "70813", + "name": "Huitzmaloc", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.45639000", + "longitude": "-96.94056000" + }, + { + "id": "70816", + "name": "Huixcolotla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92073000", + "longitude": "-97.77166000" + }, + { + "id": "70834", + "name": "Icxotitla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24253000", + "longitude": "-98.10069000" + }, + { + "id": "70839", + "name": "Ignacio Allende (Concepción)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01055000", + "longitude": "-97.63448000" + }, + { + "id": "70843", + "name": "Ignacio Manuel Altamirano", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36722000", + "longitude": "-98.58306000" + }, + { + "id": "70856", + "name": "Ignacio Zaragoza", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27889000", + "longitude": "-97.19944000" + }, + { + "id": "70896", + "name": "Itzoteno", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41656000", + "longitude": "-97.43776000" + }, + { + "id": "70898", + "name": "Ixcamilpa de Guerrero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.03036000", + "longitude": "-98.71770000" + }, + { + "id": "70901", + "name": "Ixcaquixtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.47131000", + "longitude": "-97.84214000" + }, + { + "id": "70921", + "name": "Ixtacamaxtitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62352000", + "longitude": "-97.81539000" + }, + { + "id": "70925", + "name": "Ixtahuiata (La Legua)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84389000", + "longitude": "-97.33556000" + }, + { + "id": "70935", + "name": "Ixtepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03936000", + "longitude": "-97.64262000" + }, + { + "id": "70936", + "name": "Ixticpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81419000", + "longitude": "-97.34454000" + }, + { + "id": "70938", + "name": "Ixtlahuaca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82309000", + "longitude": "-97.33496000" + }, + { + "id": "70939", + "name": "Ixtlahuaca Barrio", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83889000", + "longitude": "-98.01444000" + }, + { + "id": "70947", + "name": "Ixtolco de Morelos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90553000", + "longitude": "-97.81762000" + }, + { + "id": "70953", + "name": "Izúcar de Matamoros", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60157000", + "longitude": "-98.46152000" + }, + { + "id": "70980", + "name": "Jalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44324000", + "longitude": "-97.85610000" + }, + { + "id": "70991", + "name": "Jaltocan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61968000", + "longitude": "-97.81787000" + }, + { + "id": "71034", + "name": "Jesús Nazareno", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87667000", + "longitude": "-97.62306000" + }, + { + "id": "71043", + "name": "Jicolapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96596000", + "longitude": "-97.97345000" + }, + { + "id": "71047", + "name": "Jilotzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03250000", + "longitude": "-97.90250000" + }, + { + "id": "71070", + "name": "Jolalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.32495000", + "longitude": "-98.84489000" + }, + { + "id": "71080", + "name": "Jonotla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03032000", + "longitude": "-97.57530000" + }, + { + "id": "71082", + "name": "Jopala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16353000", + "longitude": "-97.69285000" + }, + { + "id": "71099", + "name": "José María Morelos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14147000", + "longitude": "-97.46809000" + }, + { + "id": "71115", + "name": "Juan C. Bonilla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12101000", + "longitude": "-98.34091000" + }, + { + "id": "71128", + "name": "Juan de la Granja", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22118000", + "longitude": "-97.80884000" + }, + { + "id": "71119", + "name": "Juan Galindo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21980000", + "longitude": "-97.99083000" + }, + { + "id": "71125", + "name": "Juan N. Méndez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52411000", + "longitude": "-97.74829000" + }, + { + "id": "71147", + "name": "Juárez Coronaco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36056000", + "longitude": "-98.52500000" + }, + { + "id": "71205", + "name": "La Cañada", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49898000", + "longitude": "-97.73400000" + }, + { + "id": "71223", + "name": "La Compañia", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97080000", + "longitude": "-97.72280000" + }, + { + "id": "71298", + "name": "La Galarza", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.66778000", + "longitude": "-98.45528000" + }, + { + "id": "71301", + "name": "La Gloria", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39561000", + "longitude": "-97.28246000" + }, + { + "id": "71346", + "name": "La Laguna", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79944000", + "longitude": "-97.73667000" + }, + { + "id": "71357", + "name": "La Libertad", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75583000", + "longitude": "-97.60722000" + }, + { + "id": "71380", + "name": "La Magdalena", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25698000", + "longitude": "-98.27534000" + }, + { + "id": "71384", + "name": "La Magdalena Tetela Morelos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04922000", + "longitude": "-97.94131000" + }, + { + "id": "71386", + "name": "La Magdalena Yancuitlalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91083000", + "longitude": "-98.58944000" + }, + { + "id": "71416", + "name": "La Pahua", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61181000", + "longitude": "-97.85358000" + }, + { + "id": "71469", + "name": "La Purísima", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82974000", + "longitude": "-97.57301000" + }, + { + "id": "71476", + "name": "La Resurrección", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10279000", + "longitude": "-98.13013000" + }, + { + "id": "71493", + "name": "La Soledad", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81000000", + "longitude": "-97.76417000" + }, + { + "id": "71512", + "name": "La Trinidad Chautenco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09000000", + "longitude": "-98.26389000" + }, + { + "id": "71515", + "name": "La Trinidad Tianguismanalco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89417000", + "longitude": "-98.03250000" + }, + { + "id": "71520", + "name": "La Unión", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26181000", + "longitude": "-97.87135000" + }, + { + "id": "71524", + "name": "La Unión Ejido Mexcaltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60806000", + "longitude": "-97.71056000" + }, + { + "id": "71541", + "name": "Lacapan Camallagne", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12862000", + "longitude": "-97.65343000" + }, + { + "id": "71545", + "name": "Lafragua", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30684000", + "longitude": "-97.29748000" + }, + { + "id": "71589", + "name": "Las Colonias de Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19611000", + "longitude": "-97.97667000" + }, + { + "id": "71607", + "name": "Las Lajas", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99831000", + "longitude": "-98.07332000" + }, + { + "id": "71611", + "name": "Las Lomas", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82390000", + "longitude": "-97.61227000" + }, + { + "id": "71626", + "name": "Las Nieves", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.18361000", + "longitude": "-98.04611000" + }, + { + "id": "71894", + "name": "Lázaro Cárdenas", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14306000", + "longitude": "-97.40056000" + }, + { + "id": "71658", + "name": "Leacaman", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09861000", + "longitude": "-97.64306000" + }, + { + "id": "71672", + "name": "Libertad Álvaro Obregón", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13452000", + "longitude": "-97.76728000" + }, + { + "id": "71674", + "name": "Libres", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46574000", + "longitude": "-97.68737000" + }, + { + "id": "71682", + "name": "Lipuntahuaca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.09119000", + "longitude": "-97.63026000" + }, + { + "id": "71709", + "name": "Loma Alta", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79716000", + "longitude": "-98.02712000" + }, + { + "id": "71717", + "name": "Loma Bonita", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51333000", + "longitude": "-96.86778000" + }, + { + "id": "71747", + "name": "Lomas de Romero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91444000", + "longitude": "-97.71722000" + }, + { + "id": "71754", + "name": "Lomas de Santa Cruz", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92444000", + "longitude": "-97.73000000" + }, + { + "id": "71872", + "name": "Los Ángeles Tetela", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88995000", + "longitude": "-98.16712000" + }, + { + "id": "71794", + "name": "Los Cristales (Talican)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87237000", + "longitude": "-97.59424000" + }, + { + "id": "71800", + "name": "Los Encinos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17917000", + "longitude": "-98.39833000" + }, + { + "id": "71803", + "name": "Los Garcías", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80333000", + "longitude": "-97.39417000" + }, + { + "id": "71851", + "name": "Los Reyes de Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96457000", + "longitude": "-97.82541000" + }, + { + "id": "71850", + "name": "Los Reyes Tlanechicolpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03250000", + "longitude": "-98.35250000" + }, + { + "id": "71924", + "name": "Magdalena Cuayucatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54972000", + "longitude": "-97.48472000" + }, + { + "id": "71953", + "name": "Manantiales", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17316000", + "longitude": "-97.11064000" + }, + { + "id": "71960", + "name": "Manuel Edgardo Ávalos (San Isidro)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06778000", + "longitude": "-97.39194000" + }, + { + "id": "72021", + "name": "Matlahuacales Aquiles Serdán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76196000", + "longitude": "-98.05375000" + }, + { + "id": "72022", + "name": "Matzaco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.55953000", + "longitude": "-98.48820000" + }, + { + "id": "72040", + "name": "Mazapiltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11912000", + "longitude": "-97.70280000" + }, + { + "id": "72042", + "name": "Mazatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01695000", + "longitude": "-97.41891000" + }, + { + "id": "72259", + "name": "Máximo Serdán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26298000", + "longitude": "-97.82825000" + }, + { + "id": "72053", + "name": "Mecapalapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52684000", + "longitude": "-97.85643000" + }, + { + "id": "72093", + "name": "Metlaltoyuca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73556000", + "longitude": "-97.85194000" + }, + { + "id": "72098", + "name": "Mexcalcuautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86657000", + "longitude": "-97.39154000" + }, + { + "id": "72115", + "name": "Miahuatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54983000", + "longitude": "-97.43953000" + }, + { + "id": "72118", + "name": "Michac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85241000", + "longitude": "-98.05127000" + }, + { + "id": "72129", + "name": "Miguel Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75764000", + "longitude": "-97.28209000" + }, + { + "id": "72134", + "name": "Miguel Negrete", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95222000", + "longitude": "-97.82917000" + }, + { + "id": "72156", + "name": "Miravalles", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34130000", + "longitude": "-97.53854000" + }, + { + "id": "72168", + "name": "Mixtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91153000", + "longitude": "-97.89786000" + }, + { + "id": "72232", + "name": "Morelos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75472000", + "longitude": "-97.57750000" + }, + { + "id": "72234", + "name": "Morelos Cañada", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73549000", + "longitude": "-97.42068000" + }, + { + "id": "72249", + "name": "Moyotzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24811000", + "longitude": "-98.40486000" + }, + { + "id": "72274", + "name": "Nanacatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00366000", + "longitude": "-97.67584000" + }, + { + "id": "72291", + "name": "Naupan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23131000", + "longitude": "-98.10881000" + }, + { + "id": "72293", + "name": "Nauzontla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95952000", + "longitude": "-97.60314000" + }, + { + "id": "72302", + "name": "Nealtican", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04990000", + "longitude": "-98.42720000" + }, + { + "id": "72303", + "name": "Necaxa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21271000", + "longitude": "-98.01188000" + }, + { + "id": "72304", + "name": "Necoxcalco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46092000", + "longitude": "-97.29827000" + }, + { + "id": "72305", + "name": "Necoxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.39811000", + "longitude": "-97.35999000" + }, + { + "id": "72310", + "name": "Nenehuaca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14389000", + "longitude": "-97.04222000" + }, + { + "id": "72315", + "name": "Nexpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88389000", + "longitude": "-97.42333000" + }, + { + "id": "72316", + "name": "Nexticapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82722000", + "longitude": "-97.55417000" + }, + { + "id": "72325", + "name": "Nicolás Bravo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61983000", + "longitude": "-97.33230000" + }, + { + "id": "72349", + "name": "Nopalucan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20114000", + "longitude": "-97.82391000" + }, + { + "id": "72350", + "name": "Nopalucán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21840000", + "longitude": "-97.82272000" + }, + { + "id": "72397", + "name": "Nuevo México", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45492000", + "longitude": "-97.61757000" + }, + { + "id": "72400", + "name": "Nuevo Necaxa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21049000", + "longitude": "-98.00657000" + }, + { + "id": "72453", + "name": "Ocotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55519000", + "longitude": "-97.65078000" + }, + { + "id": "72457", + "name": "Ocotlamanic", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.32389000", + "longitude": "-97.09667000" + }, + { + "id": "72459", + "name": "Ocotlán de Betancourt", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79752000", + "longitude": "-97.53664000" + }, + { + "id": "72461", + "name": "Ocotlán de Venustiano Carranza", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79111000", + "longitude": "-97.66917000" + }, + { + "id": "72502", + "name": "Olintla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10196000", + "longitude": "-97.68427000" + }, + { + "id": "72505", + "name": "Ometepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85439000", + "longitude": "-97.85350000" + }, + { + "id": "72519", + "name": "Oriental", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37614000", + "longitude": "-97.62051000" + }, + { + "id": "72556", + "name": "Oyameles de Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69736000", + "longitude": "-97.53376000" + }, + { + "id": "72557", + "name": "Ozelonacaxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04657000", + "longitude": "-97.61440000" + }, + { + "id": "72576", + "name": "Pahuatlán de Valle", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27800000", + "longitude": "-98.14997000" + }, + { + "id": "72591", + "name": "Palmar de Bravo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83573000", + "longitude": "-97.54704000" + }, + { + "id": "72593", + "name": "Palmarito Tochapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90135000", + "longitude": "-97.63833000" + }, + { + "id": "72627", + "name": "Pantepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55146000", + "longitude": "-97.87453000" + }, + { + "id": "72632", + "name": "Papaloctipan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.42429000", + "longitude": "-97.95535000" + }, + { + "id": "72638", + "name": "Papatlazolco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17750000", + "longitude": "-97.99167000" + }, + { + "id": "72679", + "name": "Paso Carretas", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91993000", + "longitude": "-97.25153000" + }, + { + "id": "72682", + "name": "Paso Nacional", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14385000", + "longitude": "-97.35769000" + }, + { + "id": "72707", + "name": "Patla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24821000", + "longitude": "-97.85295000" + }, + { + "id": "72735", + "name": "Pericotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60670000", + "longitude": "-97.63098000" + }, + { + "id": "72745", + "name": "Petlalcingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.08463000", + "longitude": "-97.91750000" + }, + { + "id": "72747", + "name": "Pezmatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84664000", + "longitude": "-97.48529000" + }, + { + "id": "72756", + "name": "Piaxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.08403000", + "longitude": "-98.21988000" + }, + { + "id": "72834", + "name": "Pochálcatl", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00295000", + "longitude": "-97.85408000" + }, + { + "id": "72903", + "name": "Primero de Mayo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08167000", + "longitude": "-98.09778000" + }, + { + "id": "72912", + "name": "Progreso", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48833000", + "longitude": "-97.67722000" + }, + { + "id": "72919", + "name": "Progreso de Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96167000", + "longitude": "-97.75556000" + }, + { + "id": "72925", + "name": "Puebla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03793000", + "longitude": "-98.20346000" + }, + { + "id": "73003", + "name": "Putlunichuchut (Vista Hermosa)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15593000", + "longitude": "-97.61557000" + }, + { + "id": "73015", + "name": "Quamila", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16632000", + "longitude": "-97.91855000" + }, + { + "id": "73017", + "name": "Quecholac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95471000", + "longitude": "-97.65858000" + }, + { + "id": "73018", + "name": "Quechulac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37273000", + "longitude": "-97.34783000" + }, + { + "id": "73044", + "name": "Rafael J. García", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25413000", + "longitude": "-97.18315000" + }, + { + "id": "73059", + "name": "Rancho Chico", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74667000", + "longitude": "-97.66500000" + }, + { + "id": "73066", + "name": "Rancho Nuevo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.58139000", + "longitude": "-97.22472000" + }, + { + "id": "73107", + "name": "Ricardo Flores Magón", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19224000", + "longitude": "-97.61961000" + }, + { + "id": "73136", + "name": "Rincón de los Reyes", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19444000", + "longitude": "-97.16056000" + }, + { + "id": "73223", + "name": "Saltillo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29644000", + "longitude": "-97.29661000" + }, + { + "id": "73236", + "name": "San Acateno", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87527000", + "longitude": "-97.36686000" + }, + { + "id": "73242", + "name": "San Agustín Atzompa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20174000", + "longitude": "-98.51384000" + }, + { + "id": "73249", + "name": "San Agustín Huixaxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91778000", + "longitude": "-98.39694000" + }, + { + "id": "73254", + "name": "San Agustín Tlaxco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05630000", + "longitude": "-97.99158000" + }, + { + "id": "73267", + "name": "San Andrés", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79000000", + "longitude": "-97.33889000" + }, + { + "id": "73270", + "name": "San Andrés Azumiatla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90417000", + "longitude": "-98.25278000" + }, + { + "id": "73271", + "name": "San Andrés Cacaloapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.58364000", + "longitude": "-97.58711000" + }, + { + "id": "73272", + "name": "San Andrés Calpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10356000", + "longitude": "-98.46188000" + }, + { + "id": "73274", + "name": "San Andrés Cholula", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05144000", + "longitude": "-98.29526000" + }, + { + "id": "73283", + "name": "San Andrés Hueyacatitla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25600000", + "longitude": "-98.53628000" + }, + { + "id": "73291", + "name": "San Andrés Payuca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52563000", + "longitude": "-97.61782000" + }, + { + "id": "73301", + "name": "San Andrés Yahuitlalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67333000", + "longitude": "-97.72694000" + }, + { + "id": "73318", + "name": "San Antonio", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75611000", + "longitude": "-97.35694000" + }, + { + "id": "73320", + "name": "San Antonio Alpanocan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87722000", + "longitude": "-98.71083000" + }, + { + "id": "73322", + "name": "San Antonio Atotonilco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37466000", + "longitude": "-98.46584000" + }, + { + "id": "73328", + "name": "San Antonio Cañada", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51604000", + "longitude": "-97.29412000" + }, + { + "id": "73337", + "name": "San Antonio Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79379000", + "longitude": "-97.98964000" + }, + { + "id": "73390", + "name": "San Antonio la Portilla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79611000", + "longitude": "-97.76278000" + }, + { + "id": "73338", + "name": "San Antonio Matlahuacales", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75528000", + "longitude": "-98.08194000" + }, + { + "id": "73339", + "name": "San Antonio Mihuacán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15333000", + "longitude": "-98.30472000" + }, + { + "id": "73342", + "name": "San Antonio Ocopetlatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24703000", + "longitude": "-97.94621000" + }, + { + "id": "73344", + "name": "San Antonio Portezuelo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99889000", + "longitude": "-97.71361000" + }, + { + "id": "73348", + "name": "San Antonio Soledad", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78414000", + "longitude": "-97.40738000" + }, + { + "id": "73351", + "name": "San Antonio Tecolco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85222000", + "longitude": "-97.77806000" + }, + { + "id": "73356", + "name": "San Antonio Tlacamilco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06271000", + "longitude": "-97.93024000" + }, + { + "id": "73358", + "name": "San Antonio Tlatenco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17339000", + "longitude": "-98.49996000" + }, + { + "id": "73360", + "name": "San Antonio Virreyes", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40989000", + "longitude": "-97.63697000" + }, + { + "id": "73393", + "name": "San Baltazar Atlimeyaya", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98694000", + "longitude": "-98.48111000" + }, + { + "id": "73417", + "name": "San Bartolomé", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91765000", + "longitude": "-97.61912000" + }, + { + "id": "73424", + "name": "San Bartolomé Hueyapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02528000", + "longitude": "-97.93056000" + }, + { + "id": "73432", + "name": "San Bernabé Temoxtitla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99722000", + "longitude": "-98.33083000" + }, + { + "id": "73435", + "name": "San Bernardino Lagunas", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60374000", + "longitude": "-97.26566000" + }, + { + "id": "73436", + "name": "San Bernardino Tlaxcalancingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02867000", + "longitude": "-98.27698000" + }, + { + "id": "73449", + "name": "San Buenaventura", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90204000", + "longitude": "-97.92616000" + }, + { + "id": "73454", + "name": "San Buenaventura Tecaltzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24778000", + "longitude": "-98.46056000" + }, + { + "id": "73457", + "name": "San Carlos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43882000", + "longitude": "-97.69035000" + }, + { + "id": "73478", + "name": "San Cristóbal Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02194000", + "longitude": "-97.81028000" + }, + { + "id": "73484", + "name": "San Cristóbal los Nava", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99528000", + "longitude": "-97.83194000" + }, + { + "id": "73482", + "name": "San Cristóbal Xochimilpa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06639000", + "longitude": "-97.90750000" + }, + { + "id": "73490", + "name": "San Diego", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85667000", + "longitude": "-97.36111000" + }, + { + "id": "73498", + "name": "San Diego el Organal", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73083000", + "longitude": "-98.51667000" + }, + { + "id": "73500", + "name": "San Diego la Mesa Tochimiltzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79205000", + "longitude": "-98.31631000" + }, + { + "id": "73622", + "name": "San Félix Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89888000", + "longitude": "-98.39908000" + }, + { + "id": "73623", + "name": "San Félix Rijo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62028000", + "longitude": "-98.55028000" + }, + { + "id": "73516", + "name": "San Felipe Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46792000", + "longitude": "-98.55898000" + }, + { + "id": "73519", + "name": "San Felipe Otlaltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40152000", + "longitude": "-97.90786000" + }, + { + "id": "73544", + "name": "San Francisco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77722000", + "longitude": "-97.32806000" + }, + { + "id": "73559", + "name": "San Francisco Cuapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06835000", + "longitude": "-98.36562000" + }, + { + "id": "73560", + "name": "San Francisco Cuautlancingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99690000", + "longitude": "-97.41491000" + }, + { + "id": "73566", + "name": "San Francisco Independencia (Santa María Aserradero)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06889000", + "longitude": "-97.43028000" + }, + { + "id": "73582", + "name": "San Francisco Ocotlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13411000", + "longitude": "-98.28345000" + }, + { + "id": "73598", + "name": "San Francisco Tepeyecac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24861000", + "longitude": "-98.43833000" + }, + { + "id": "73603", + "name": "San Francisco Tláloc", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36972000", + "longitude": "-98.47722000" + }, + { + "id": "73607", + "name": "San Francisco Zacapexpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.88028000", + "longitude": "-97.59611000" + }, + { + "id": "73627", + "name": "San Gabriel Chilac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.32596000", + "longitude": "-97.34697000" + }, + { + "id": "73630", + "name": "San Gabriel Tetzoyocán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75727000", + "longitude": "-97.70324000" + }, + { + "id": "73642", + "name": "San Gregorio Atzompa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02349000", + "longitude": "-98.34822000" + }, + { + "id": "73643", + "name": "San Gregorio Aztotoacan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26444000", + "longitude": "-98.49194000" + }, + { + "id": "73645", + "name": "San Hipólito", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94069000", + "longitude": "-97.87322000" + }, + { + "id": "73670", + "name": "San Isidro", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79639000", + "longitude": "-97.38361000" + }, + { + "id": "73679", + "name": "San Isidro Huilotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88083000", + "longitude": "-98.38306000" + }, + { + "id": "73682", + "name": "San Isidro Monterrosas", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85667000", + "longitude": "-97.57528000" + }, + { + "id": "73684", + "name": "San Isidro Vista Hermosa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50556000", + "longitude": "-97.40028000" + }, + { + "id": "73702", + "name": "San Jerónimo Almoloya", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94111000", + "longitude": "-98.01056000" + }, + { + "id": "73704", + "name": "San Jerónimo Axochitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27833000", + "longitude": "-97.26278000" + }, + { + "id": "73707", + "name": "San Jerónimo Coaltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00389000", + "longitude": "-97.86639000" + }, + { + "id": "73709", + "name": "San Jerónimo Coyula", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89438000", + "longitude": "-98.51706000" + }, + { + "id": "73712", + "name": "San Jerónimo Ocotitla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03127000", + "longitude": "-97.96359000" + }, + { + "id": "73721", + "name": "San Jerónimo Xayacatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22034000", + "longitude": "-97.91288000" + }, + { + "id": "73739", + "name": "San José", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80306000", + "longitude": "-97.33389000" + }, + { + "id": "73740", + "name": "San José Acateno", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13067000", + "longitude": "-97.20997000" + }, + { + "id": "73741", + "name": "San José Alchichica", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43433000", + "longitude": "-97.38992000" + }, + { + "id": "73749", + "name": "San José Buena Vista", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40528000", + "longitude": "-97.26833000" + }, + { + "id": "73750", + "name": "San José Buenavista", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65951000", + "longitude": "-97.57911000" + }, + { + "id": "73753", + "name": "San José Carpinteros", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99472000", + "longitude": "-97.91167000" + }, + { + "id": "73757", + "name": "San José Chiapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24105000", + "longitude": "-97.76642000" + }, + { + "id": "73763", + "name": "San José Cuyachapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85466000", + "longitude": "-97.31398000" + }, + { + "id": "73815", + "name": "San José de Gracia", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64342000", + "longitude": "-97.84729000" + }, + { + "id": "73770", + "name": "San José Ixtapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71599000", + "longitude": "-97.45940000" + }, + { + "id": "73773", + "name": "San José Manzanitos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26111000", + "longitude": "-97.21472000" + }, + { + "id": "73775", + "name": "San José Monte Chiquito", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.49611000", + "longitude": "-97.43806000" + }, + { + "id": "73778", + "name": "San José Ozumba", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23306000", + "longitude": "-97.72833000" + }, + { + "id": "73793", + "name": "San José Tilapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16361000", + "longitude": "-97.10137000" + }, + { + "id": "73795", + "name": "San José Tlacuitlapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.70763000", + "longitude": "-97.62538000" + }, + { + "id": "73864", + "name": "San Juan Amecac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83469000", + "longitude": "-98.65909000" + }, + { + "id": "73865", + "name": "San Juan Atenco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08670000", + "longitude": "-97.54074000" + }, + { + "id": "73868", + "name": "San Juan Atzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.29862000", + "longitude": "-97.38614000" + }, + { + "id": "73869", + "name": "San Juan Atzompa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73899000", + "longitude": "-98.00738000" + }, + { + "id": "73882", + "name": "San Juan Colón", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57722000", + "longitude": "-98.55833000" + }, + { + "id": "73886", + "name": "San Juan Cuauhtémoc", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38845000", + "longitude": "-98.59764000" + }, + { + "id": "73887", + "name": "San Juan Cuautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24416000", + "longitude": "-96.95673000" + }, + { + "id": "73891", + "name": "San Juan Epatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64272000", + "longitude": "-98.37250000" + }, + { + "id": "73897", + "name": "San Juan Huiluco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78904000", + "longitude": "-98.44941000" + }, + { + "id": "73899", + "name": "San Juan Ixcaquixtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46067000", + "longitude": "-97.83103000" + }, + { + "id": "73915", + "name": "San Juan Pancoac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14917000", + "longitude": "-98.44194000" + }, + { + "id": "73921", + "name": "San Juan Raboso", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57153000", + "longitude": "-98.43962000" + }, + { + "id": "73927", + "name": "San Juan Tahitic", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93605000", + "longitude": "-97.55082000" + }, + { + "id": "73930", + "name": "San Juan Tejaluca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89917000", + "longitude": "-98.40472000" + }, + { + "id": "73931", + "name": "San Juan Tejupa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85519000", + "longitude": "-98.54124000" + }, + { + "id": "73935", + "name": "San Juan Tepulco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11709000", + "longitude": "-97.98847000" + }, + { + "id": "73936", + "name": "San Juan Tetla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21550000", + "longitude": "-98.50481000" + }, + { + "id": "73938", + "name": "San Juan Tezongo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84472000", + "longitude": "-97.36389000" + }, + { + "id": "73946", + "name": "San Juan Tuxco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25942000", + "longitude": "-98.45166000" + }, + { + "id": "73949", + "name": "San Juan Xiutetelco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79563000", + "longitude": "-97.32578000" + }, + { + "id": "73993", + "name": "San Lorenzo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.35054000", + "longitude": "-97.93630000" + }, + { + "id": "74000", + "name": "San Lorenzo Chiautzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20432000", + "longitude": "-98.46747000" + }, + { + "id": "74005", + "name": "San Lorenzo Joya de Rodríguez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05444000", + "longitude": "-97.85333000" + }, + { + "id": "74016", + "name": "San Lorenzo Tlaxipehuala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13028000", + "longitude": "-97.97361000" + }, + { + "id": "74026", + "name": "San Lucas Atzala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10378000", + "longitude": "-98.48201000" + }, + { + "id": "74040", + "name": "San Lucas el Grande", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30583000", + "longitude": "-98.47833000" + }, + { + "id": "74041", + "name": "San Lucas el Viejo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.67724000", + "longitude": "-97.71824000" + }, + { + "id": "74044", + "name": "San Luis Ajajalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93624000", + "longitude": "-97.93386000" + }, + { + "id": "74050", + "name": "San Luis Coyotzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19818000", + "longitude": "-98.43716000" + }, + { + "id": "74056", + "name": "San Luis Tehuiloyocan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03924000", + "longitude": "-98.33749000" + }, + { + "id": "74070", + "name": "San Marcos Eloxochitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02528000", + "longitude": "-97.87194000" + }, + { + "id": "74075", + "name": "San Marcos Tlacoyalco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.67388000", + "longitude": "-97.60354000" + }, + { + "id": "74087", + "name": "San Martín", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78250000", + "longitude": "-97.34028000" + }, + { + "id": "74091", + "name": "San Martín Caltenco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88487000", + "longitude": "-97.81887000" + }, + { + "id": "74096", + "name": "San Martín Esperilla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73221000", + "longitude": "-97.54741000" + }, + { + "id": "74100", + "name": "San Martín Mazateopan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.45278000", + "longitude": "-96.81611000" + }, + { + "id": "74102", + "name": "San Martín Ojo de Agua", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01245000", + "longitude": "-97.39201000" + }, + { + "id": "74106", + "name": "San Martín Texmelucan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26929000", + "longitude": "-98.42831000" + }, + { + "id": "74108", + "name": "San Martín Tlamapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97750000", + "longitude": "-98.39694000" + }, + { + "id": "74109", + "name": "San Martín Tlapala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96667000", + "longitude": "-98.45889000" + }, + { + "id": "74083", + "name": "San Martin Texmelucan de Labastida", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28431000", + "longitude": "-98.43885000" + }, + { + "id": "74145", + "name": "San Matías Atzala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25127000", + "longitude": "-98.48167000" + }, + { + "id": "74120", + "name": "San Mateo Ayecac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27898000", + "longitude": "-98.39466000" + }, + { + "id": "74123", + "name": "San Mateo Capultitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19500000", + "longitude": "-98.41528000" + }, + { + "id": "74132", + "name": "San Mateo Ozolco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09994000", + "longitude": "-98.51566000" + }, + { + "id": "74133", + "name": "San Mateo Parra", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99139000", + "longitude": "-97.86167000" + }, + { + "id": "74136", + "name": "San Mateo Soltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09868000", + "longitude": "-97.76054000" + }, + { + "id": "74144", + "name": "San Matias Tlalancaleca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32536000", + "longitude": "-98.49863000" + }, + { + "id": "74156", + "name": "San Miguel Aguacomulican", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82222000", + "longitude": "-98.55056000" + }, + { + "id": "74163", + "name": "San Miguel Analco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18087000", + "longitude": "-98.33933000" + }, + { + "id": "74166", + "name": "San Miguel Atlapulco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79243000", + "longitude": "-98.19482000" + }, + { + "id": "74169", + "name": "San Miguel Canoa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15194000", + "longitude": "-98.10306000" + }, + { + "id": "74235", + "name": "San Miguel del Milagro", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24123000", + "longitude": "-98.33352000" + }, + { + "id": "74236", + "name": "San Miguel del Progreso", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98972000", + "longitude": "-97.66667000" + }, + { + "id": "74179", + "name": "San Miguel Espejo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09500000", + "longitude": "-98.06667000" + }, + { + "id": "74182", + "name": "San Miguel Ixitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00082000", + "longitude": "-97.77483000" + }, + { + "id": "74190", + "name": "San Miguel Ocotenco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06660000", + "longitude": "-97.45245000" + }, + { + "id": "74194", + "name": "San Miguel Papaxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06278000", + "longitude": "-98.39000000" + }, + { + "id": "74202", + "name": "San Miguel Tecuitlapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12118000", + "longitude": "-97.54714000" + }, + { + "id": "74204", + "name": "San Miguel Tenango", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90877000", + "longitude": "-97.93474000" + }, + { + "id": "74205", + "name": "San Miguel Tenextatiloyan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70973000", + "longitude": "-97.59769000" + }, + { + "id": "74208", + "name": "San Miguel Tianguistenco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29389000", + "longitude": "-98.53083000" + }, + { + "id": "74209", + "name": "San Miguel Tianguizolco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15861000", + "longitude": "-98.44083000" + }, + { + "id": "74223", + "name": "San Miguel Xoxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16763000", + "longitude": "-98.30758000" + }, + { + "id": "74226", + "name": "San Miguel Zoapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08433000", + "longitude": "-97.35359000" + }, + { + "id": "74227", + "name": "San Miguel Zozutla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75430000", + "longitude": "-97.65478000" + }, + { + "id": "74245", + "name": "San Nicolas Buenos Aires", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16488000", + "longitude": "-97.55131000" + }, + { + "id": "74254", + "name": "San Nicolás Buenos Aires", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22104000", + "longitude": "-97.52160000" + }, + { + "id": "74274", + "name": "San Nicolás de los Ranchos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07139000", + "longitude": "-98.48601000" + }, + { + "id": "74267", + "name": "San Nicolás Tolentino", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.55078000", + "longitude": "-98.50371000" + }, + { + "id": "74268", + "name": "San Nicolás Zecalacoayan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19917000", + "longitude": "-98.48833000" + }, + { + "id": "74269", + "name": "San Nicolás Zoyapetlayoca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92417000", + "longitude": "-97.86528000" + }, + { + "id": "74278", + "name": "San Pablito", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30071000", + "longitude": "-98.16201000" + }, + { + "id": "74280", + "name": "San Pablo Ahuatempa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98139000", + "longitude": "-98.35889000" + }, + { + "id": "74281", + "name": "San Pablo Anicano", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14237000", + "longitude": "-98.12565000" + }, + { + "id": "74305", + "name": "San Pablo de las Tunas", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99556000", + "longitude": "-97.70972000" + }, + { + "id": "74317", + "name": "San Pedro Atmatla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.91083000", + "longitude": "-97.96750000" + }, + { + "id": "74320", + "name": "San Pedro Benito Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94722000", + "longitude": "-98.55139000" + }, + { + "id": "74327", + "name": "San Pedro Cholula", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07395000", + "longitude": "-98.36011000" + }, + { + "id": "74331", + "name": "San Pedro Cuayuca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.48214000", + "longitude": "-98.18316000" + }, + { + "id": "74343", + "name": "San Pedro Itztla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27466000", + "longitude": "-97.93449000" + }, + { + "id": "74416", + "name": "San Pedro la Joya", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06528000", + "longitude": "-97.83806000" + }, + { + "id": "74353", + "name": "San Pedro Matamoros", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36972000", + "longitude": "-98.55472000" + }, + { + "id": "74366", + "name": "San Pedro Petlacotla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41186000", + "longitude": "-97.91443000" + }, + { + "id": "74377", + "name": "San Pedro Temamatla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92553000", + "longitude": "-97.51198000" + }, + { + "id": "74381", + "name": "San Pedro Tetitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25972000", + "longitude": "-97.32306000" + }, + { + "id": "74388", + "name": "San Pedro Tlaolantongo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23120000", + "longitude": "-97.80213000" + }, + { + "id": "74399", + "name": "San Pedro Yancuitlalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07750000", + "longitude": "-98.48333000" + }, + { + "id": "74400", + "name": "San Pedro Yeloixtlahuaca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07881000", + "longitude": "-98.06492000" + }, + { + "id": "74402", + "name": "San Pedro Zacachimalpa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94278000", + "longitude": "-98.15611000" + }, + { + "id": "74431", + "name": "San Rafael Ixtapalucan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29193000", + "longitude": "-98.55829000" + }, + { + "id": "74436", + "name": "San Rafael Tlanalapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29167000", + "longitude": "-98.46806000" + }, + { + "id": "74445", + "name": "San Salvador (Naranjillo)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83139000", + "longitude": "-97.31500000" + }, + { + "id": "74448", + "name": "San Salvador El Seco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13325000", + "longitude": "-97.64167000" + }, + { + "id": "74451", + "name": "San Salvador el Verde", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27002000", + "longitude": "-98.51648000" + }, + { + "id": "74453", + "name": "San Sebastián", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85502000", + "longitude": "-97.37061000" + }, + { + "id": "74459", + "name": "San Sebastián Alcomunga", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43705000", + "longitude": "-97.02683000" + }, + { + "id": "74476", + "name": "San Sebastián de Aparicio", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10333000", + "longitude": "-98.16083000" + }, + { + "id": "74470", + "name": "San Sebastián Teteles", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03241000", + "longitude": "-97.79021000" + }, + { + "id": "74471", + "name": "San Sebastián Tlacotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.36518000", + "longitude": "-96.83309000" + }, + { + "id": "74473", + "name": "San Sebastián Villanueva", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06085000", + "longitude": "-97.71935000" + }, + { + "id": "74483", + "name": "San Simón", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96733000", + "longitude": "-97.71197000" + }, + { + "id": "74485", + "name": "San Simón Atzitzintla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26336000", + "longitude": "-98.47584000" + }, + { + "id": "74496", + "name": "San Vicente Boquerón", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27984000", + "longitude": "-98.05540000" + }, + { + "id": "74499", + "name": "San Vicente Coyotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40439000", + "longitude": "-97.82924000" + }, + { + "id": "74516", + "name": "Sanctorum", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09917000", + "longitude": "-98.25417000" + }, + { + "id": "74525", + "name": "Santa Ana Acozautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95556000", + "longitude": "-98.38306000" + }, + { + "id": "74532", + "name": "Santa Ana Coapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83109000", + "longitude": "-97.89167000" + }, + { + "id": "74533", + "name": "Santa Ana Coatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83667000", + "longitude": "-98.43472000" + }, + { + "id": "74541", + "name": "Santa Ana Necoxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61312000", + "longitude": "-98.38307000" + }, + { + "id": "74549", + "name": "Santa Ana Xalmimilulco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21287000", + "longitude": "-98.38207000" + }, + { + "id": "74590", + "name": "Santa Catarina Tlaltempan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61583000", + "longitude": "-98.08083000" + }, + { + "id": "74591", + "name": "Santa Catarina Villanueva", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99917000", + "longitude": "-97.61472000" + }, + { + "id": "74596", + "name": "Santa Cecilia Tepetitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19254000", + "longitude": "-97.43395000" + }, + { + "id": "74597", + "name": "Santa Clara", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97616000", + "longitude": "-98.30140000" + }, + { + "id": "74601", + "name": "Santa Clara Huitziltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76890000", + "longitude": "-97.88117000" + }, + { + "id": "74613", + "name": "Santa Cruz Acapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40556000", + "longitude": "-97.32611000" + }, + { + "id": "74615", + "name": "Santa Cruz Ajajalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95169000", + "longitude": "-97.94998000" + }, + { + "id": "74622", + "name": "Santa Cruz Cuautomatitla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88917000", + "longitude": "-98.65917000" + }, + { + "id": "74651", + "name": "Santa Cruz el Porvenir", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33178000", + "longitude": "-98.34801000" + }, + { + "id": "74625", + "name": "Santa Cruz Huitziltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73318000", + "longitude": "-97.87599000" + }, + { + "id": "74632", + "name": "Santa Cruz Otlatla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37222000", + "longitude": "-98.62250000" + }, + { + "id": "74642", + "name": "Santa Cruz Texmalaquilla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94306000", + "longitude": "-97.28750000" + }, + { + "id": "74643", + "name": "Santa Cruz Xaltetela", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87417000", + "longitude": "-97.58083000" + }, + { + "id": "74667", + "name": "Santa Inés Tecuexcomac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29385000", + "longitude": "-98.34717000" + }, + { + "id": "74668", + "name": "Santa Inés Varela la Luz", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15473000", + "longitude": "-97.38867000" + }, + { + "id": "74677", + "name": "Santa Isabel Cholula", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99667000", + "longitude": "-98.37944000" + }, + { + "id": "74687", + "name": "Santa Lucía Cosamaloapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88361000", + "longitude": "-98.35194000" + }, + { + "id": "74717", + "name": "Santa María Atexcac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13602000", + "longitude": "-98.49684000" + }, + { + "id": "74812", + "name": "Santa María del Monte", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54117000", + "longitude": "-97.19990000" + }, + { + "id": "74736", + "name": "Santa María Guadalupe Tecola", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90639000", + "longitude": "-98.19597000" + }, + { + "id": "74747", + "name": "Santa María Ixtiyucán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18688000", + "longitude": "-97.81094000" + }, + { + "id": "74820", + "name": "Santa María la Alta", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59982000", + "longitude": "-97.65809000" + }, + { + "id": "74758", + "name": "Santa María Malacatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94147000", + "longitude": "-98.30218000" + }, + { + "id": "74765", + "name": "Santa María Nenetzintla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05413000", + "longitude": "-97.96664000" + }, + { + "id": "74766", + "name": "Santa María Nepopualco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15085000", + "longitude": "-98.49105000" + }, + { + "id": "74777", + "name": "Santa María Techachalco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95369000", + "longitude": "-97.47041000" + }, + { + "id": "74784", + "name": "Santa María Texmelucan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29417000", + "longitude": "-98.53778000" + }, + { + "id": "74794", + "name": "Santa María Xonacatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08944000", + "longitude": "-98.10361000" + }, + { + "id": "74800", + "name": "Santa María Zacatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12333000", + "longitude": "-98.36528000" + }, + { + "id": "74695", + "name": "Santa Maria Coatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10924000", + "longitude": "-97.59253000" + }, + { + "id": "74701", + "name": "Santa Martha Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98500000", + "longitude": "-98.32444000" + }, + { + "id": "74831", + "name": "Santa Rita", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36410000", + "longitude": "-97.81689000" + }, + { + "id": "74833", + "name": "Santa Rita Tlahuapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33211000", + "longitude": "-98.57688000" + }, + { + "id": "74836", + "name": "Santa Rosa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87704000", + "longitude": "-97.78122000" + }, + { + "id": "74870", + "name": "Santiago", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81194000", + "longitude": "-97.32361000" + }, + { + "id": "74871", + "name": "Santiago Acatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99334000", + "longitude": "-97.93375000" + }, + { + "id": "74873", + "name": "Santiago Acozac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95694000", + "longitude": "-97.81167000" + }, + { + "id": "74875", + "name": "Santiago Alseseca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84511000", + "longitude": "-97.70716000" + }, + { + "id": "74880", + "name": "Santiago Atzitzihuacán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82472000", + "longitude": "-98.58167000" + }, + { + "id": "74894", + "name": "Santiago Coltzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38318000", + "longitude": "-98.53483000" + }, + { + "id": "74926", + "name": "Santiago Momoxpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07361000", + "longitude": "-98.26694000" + }, + { + "id": "74943", + "name": "Santiago Tenango", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00335000", + "longitude": "-97.64430000" + }, + { + "id": "74973", + "name": "Santiago Yancuictlalpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06092000", + "longitude": "-97.47223000" + }, + { + "id": "74998", + "name": "Santo Domingo Atoyatempan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90444000", + "longitude": "-98.37306000" + }, + { + "id": "75001", + "name": "Santo Domingo Huehuetlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73940000", + "longitude": "-98.16438000" + }, + { + "id": "75021", + "name": "Santo Nombre", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.67389000", + "longitude": "-97.67611000" + }, + { + "id": "75026", + "name": "Santo Tomás Chautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96573000", + "longitude": "-98.15288000" + }, + { + "id": "75052", + "name": "Sección 23", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78778000", + "longitude": "-97.37917000" + }, + { + "id": "75113", + "name": "Soledad Morelos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82808000", + "longitude": "-98.48952000" + }, + { + "id": "75120", + "name": "Soltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12111000", + "longitude": "-97.70861000" + }, + { + "id": "75124", + "name": "Sosa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80111000", + "longitude": "-97.39611000" + }, + { + "id": "75159", + "name": "Tacopan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83750000", + "longitude": "-97.43111000" + }, + { + "id": "75200", + "name": "Tanamacoyan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89056000", + "longitude": "-97.42972000" + }, + { + "id": "75212", + "name": "Tanhuixco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82056000", + "longitude": "-97.46722000" + }, + { + "id": "75241", + "name": "Tatauzoquico", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82833000", + "longitude": "-97.52694000" + }, + { + "id": "75242", + "name": "Tatoxcac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86944000", + "longitude": "-97.57306000" + }, + { + "id": "75254", + "name": "Teacalco de Dorantes (San José Teacalco)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80444000", + "longitude": "-98.50722000" + }, + { + "id": "75260", + "name": "Tecali", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90060000", + "longitude": "-97.97064000" + }, + { + "id": "75263", + "name": "Tecamachalco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88352000", + "longitude": "-97.73344000" + }, + { + "id": "75277", + "name": "Tecoltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.32515000", + "longitude": "-97.07868000" + }, + { + "id": "75281", + "name": "Tecomatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06956000", + "longitude": "-98.30690000" + }, + { + "id": "75287", + "name": "Tecpantzacoalco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.47694000", + "longitude": "-97.03944000" + }, + { + "id": "75291", + "name": "Tecuanipa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88117000", + "longitude": "-98.61895000" + }, + { + "id": "75292", + "name": "Tecuanipan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01316000", + "longitude": "-98.39843000" + }, + { + "id": "75296", + "name": "Tehuacán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46422000", + "longitude": "-97.39735000" + }, + { + "id": "75300", + "name": "Tehuitzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.36169000", + "longitude": "-98.30763000" + }, + { + "id": "75304", + "name": "Tejaluca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63677000", + "longitude": "-98.25046000" + }, + { + "id": "75321", + "name": "Teloxtoc", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37919000", + "longitude": "-97.58021000" + }, + { + "id": "75322", + "name": "Telpatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.48417000", + "longitude": "-97.15222000" + }, + { + "id": "75325", + "name": "Temalacayuca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60439000", + "longitude": "-97.55735000" + }, + { + "id": "75335", + "name": "Temextla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60910000", + "longitude": "-97.66714000" + }, + { + "id": "75347", + "name": "Tenampulco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18593000", + "longitude": "-97.40264000" + }, + { + "id": "75356", + "name": "Tenango de las Flores", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20583000", + "longitude": "-97.98806000" + }, + { + "id": "75379", + "name": "Teontepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.49217000", + "longitude": "-97.52962000" + }, + { + "id": "75380", + "name": "Teopantlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71219000", + "longitude": "-98.26341000" + }, + { + "id": "75386", + "name": "Teotlalco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46645000", + "longitude": "-98.81346000" + }, + { + "id": "75387", + "name": "Teotlaltzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23088000", + "longitude": "-98.50077000" + }, + { + "id": "75395", + "name": "Tepanco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.55686000", + "longitude": "-97.56130000" + }, + { + "id": "75396", + "name": "Tepango", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00314000", + "longitude": "-97.79651000" + }, + { + "id": "75397", + "name": "Tepango de Rodríguez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00161000", + "longitude": "-97.78366000" + }, + { + "id": "75398", + "name": "Tepapayeca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.67036000", + "longitude": "-98.52944000" + }, + { + "id": "75401", + "name": "Tepatlaxco de Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08067000", + "longitude": "-97.97338000" + }, + { + "id": "75402", + "name": "Tepazolco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.69967000", + "longitude": "-97.69637000" + }, + { + "id": "75403", + "name": "Tepeaca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96688000", + "longitude": "-97.89980000" + }, + { + "id": "75413", + "name": "Tepeojuma", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72468000", + "longitude": "-98.44633000" + }, + { + "id": "75416", + "name": "Tepeteno de Iturbide", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.79583000", + "longitude": "-97.49722000" + }, + { + "id": "75422", + "name": "Tepetitán Reyeshogpan de Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.08361000", + "longitude": "-97.49361000" + }, + { + "id": "75424", + "name": "Tepetlacolco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64104000", + "longitude": "-97.69284000" + }, + { + "id": "75433", + "name": "Tepetzingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.42185000", + "longitude": "-97.33785000" + }, + { + "id": "75436", + "name": "Tepetzintla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95318000", + "longitude": "-97.84725000" + }, + { + "id": "75437", + "name": "Tepetzitzintla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.47159000", + "longitude": "-97.11931000" + }, + { + "id": "75438", + "name": "Tepexco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64150000", + "longitude": "-98.69064000" + }, + { + "id": "75439", + "name": "Tepexi de Rodríguez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.58108000", + "longitude": "-97.92606000" + }, + { + "id": "75442", + "name": "Tepeyahualco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45781000", + "longitude": "-97.46240000" + }, + { + "id": "75443", + "name": "Tepeyahualco de Cuauhtémoc", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81098000", + "longitude": "-97.86749000" + }, + { + "id": "75445", + "name": "Tepeyehualco de Hidalgo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48867000", + "longitude": "-97.49254000" + }, + { + "id": "75478", + "name": "Tetela de Ocampo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81770000", + "longitude": "-97.80691000" + }, + { + "id": "75480", + "name": "Tetelcingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23917000", + "longitude": "-98.02667000" + }, + { + "id": "75482", + "name": "Teteles de Avila Castillo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.85748000", + "longitude": "-97.45703000" + }, + { + "id": "75503", + "name": "Texcala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.39716000", + "longitude": "-97.44519000" + }, + { + "id": "75504", + "name": "Texcalapa de Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06490000", + "longitude": "-97.98876000" + }, + { + "id": "75521", + "name": "Texocoyohuac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77778000", + "longitude": "-97.59028000" + }, + { + "id": "75524", + "name": "Tezhuatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81167000", + "longitude": "-97.46250000" + }, + { + "id": "75525", + "name": "Teziutlan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.81730000", + "longitude": "-97.35992000" + }, + { + "id": "75528", + "name": "Tezonteopan de Bonilla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74803000", + "longitude": "-98.49134000" + }, + { + "id": "75535", + "name": "Tianguismanalco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97624000", + "longitude": "-98.44861000" + }, + { + "id": "75553", + "name": "Tierra Negra", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24333000", + "longitude": "-97.95667000" + }, + { + "id": "75566", + "name": "Tilapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60495000", + "longitude": "-98.54575000" + }, + { + "id": "75597", + "name": "Tlacamilco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07590000", + "longitude": "-97.91640000" + }, + { + "id": "75602", + "name": "Tlachichuca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11485000", + "longitude": "-97.41915000" + }, + { + "id": "75615", + "name": "Tlacotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68193000", + "longitude": "-97.65602000" + }, + { + "id": "75618", + "name": "Tlacotepec (San Mateo)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06028000", + "longitude": "-97.84917000" + }, + { + "id": "75619", + "name": "Tlacotepec de Benito Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.66151000", + "longitude": "-97.63459000" + }, + { + "id": "75620", + "name": "Tlacotepec de José Manzo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27194000", + "longitude": "-98.48472000" + }, + { + "id": "75625", + "name": "Tlacuilotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38033000", + "longitude": "-97.98624000" + }, + { + "id": "75629", + "name": "Tlahuapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36494000", + "longitude": "-98.57345000" + }, + { + "id": "75634", + "name": "Tlaixpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91217000", + "longitude": "-97.73818000" + }, + { + "id": "75653", + "name": "Tlaltenango", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17165000", + "longitude": "-98.34072000" + }, + { + "id": "75656", + "name": "Tlaltepango", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14531000", + "longitude": "-97.87723000" + }, + { + "id": "75662", + "name": "Tlamanca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67457000", + "longitude": "-97.69640000" + }, + { + "id": "75663", + "name": "Tlamanca de Hernández", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95597000", + "longitude": "-97.81489000" + }, + { + "id": "75665", + "name": "Tlamaya Grande", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14689000", + "longitude": "-97.80313000" + }, + { + "id": "75669", + "name": "Tlanalapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25084000", + "longitude": "-97.27604000" + }, + { + "id": "75671", + "name": "Tlancualpican", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43333000", + "longitude": "-98.70000000" + }, + { + "id": "75672", + "name": "Tlanepantla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86310000", + "longitude": "-97.88701000" + }, + { + "id": "75674", + "name": "Tlaola", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13861000", + "longitude": "-97.92306000" + }, + { + "id": "75676", + "name": "Tlapacoya", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13512000", + "longitude": "-97.83347000" + }, + { + "id": "75680", + "name": "Tlapanalá", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.69585000", + "longitude": "-98.53561000" + }, + { + "id": "75684", + "name": "Tlatempa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94484000", + "longitude": "-97.93526000" + }, + { + "id": "75688", + "name": "Tlatlauquitepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84765000", + "longitude": "-97.49718000" + }, + { + "id": "75694", + "name": "Tlaxcalantongo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31397000", + "longitude": "-97.87199000" + }, + { + "id": "75697", + "name": "Tlaxco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.42345000", + "longitude": "-98.02917000" + }, + { + "id": "75699", + "name": "Tlaxco (Santiago Tlaxco)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05788000", + "longitude": "-97.96249000" + }, + { + "id": "75704", + "name": "Tlaxpanaloya", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22589000", + "longitude": "-98.12036000" + }, + { + "id": "75706", + "name": "Tlayehualancingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03301000", + "longitude": "-97.82661000" + }, + { + "id": "75710", + "name": "Tlixco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27389000", + "longitude": "-96.99972000" + }, + { + "id": "75713", + "name": "Tochimilco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89062000", + "longitude": "-98.57154000" + }, + { + "id": "75714", + "name": "Tochtepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83928000", + "longitude": "-97.82282000" + }, + { + "id": "75725", + "name": "Tomaquilapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75635000", + "longitude": "-97.32161000" + }, + { + "id": "75726", + "name": "Tomatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89399000", + "longitude": "-97.97346000" + }, + { + "id": "75736", + "name": "Tonalixco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.98111000", + "longitude": "-97.83944000" + }, + { + "id": "75754", + "name": "Totoltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65255000", + "longitude": "-98.34706000" + }, + { + "id": "75755", + "name": "Totoltepec de Guerrero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22560000", + "longitude": "-97.85511000" + }, + { + "id": "75761", + "name": "Toxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06632000", + "longitude": "-97.94748000" + }, + { + "id": "75762", + "name": "Tozihuic", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25138000", + "longitude": "-97.09697000" + }, + { + "id": "75785", + "name": "Tronconal", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80500000", + "longitude": "-98.48361000" + }, + { + "id": "75789", + "name": "Tula", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.53857000", + "longitude": "-97.90935000" + }, + { + "id": "75796", + "name": "Tulcingo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "17.99891000", + "longitude": "-98.40925000" + }, + { + "id": "75797", + "name": "Tulcingo de Valle", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.04370000", + "longitude": "-98.44074000" + }, + { + "id": "75799", + "name": "Tulimanca", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46944000", + "longitude": "-97.14000000" + }, + { + "id": "75826", + "name": "Tuxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00037000", + "longitude": "-97.65526000" + }, + { + "id": "75828", + "name": "Tuzamapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06572000", + "longitude": "-97.57520000" + }, + { + "id": "75832", + "name": "Tuzuapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90110000", + "longitude": "-97.66693000" + }, + { + "id": "75837", + "name": "Tzicatlacoyan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84071000", + "longitude": "-98.04840000" + }, + { + "id": "75839", + "name": "Tzicatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.45073000", + "longitude": "-98.75574000" + }, + { + "id": "75841", + "name": "Tzinacapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02944000", + "longitude": "-97.54047000" + }, + { + "id": "75869", + "name": "Unidad Grajales INFONAVIT", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24126000", + "longitude": "-97.81068000" + }, + { + "id": "75953", + "name": "Venta Grande", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11893000", + "longitude": "-98.09944000" + }, + { + "id": "75958", + "name": "Venustiano Carranza", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.50667000", + "longitude": "-97.66806000" + }, + { + "id": "75979", + "name": "Vicente Guerrero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12322000", + "longitude": "-97.65417000" + }, + { + "id": "75992", + "name": "Villa Avila Camacho", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38593000", + "longitude": "-97.87989000" + }, + { + "id": "75998", + "name": "Villa Cuauhtémoc", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77839000", + "longitude": "-98.09719000" + }, + { + "id": "76034", + "name": "Villa Mariano Matamoros", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32659000", + "longitude": "-98.37827000" + }, + { + "id": "76110", + "name": "Xacaxomulco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18866000", + "longitude": "-97.14703000" + }, + { + "id": "76112", + "name": "Xalacapan de Lucke", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.90403000", + "longitude": "-97.59047000" + }, + { + "id": "76118", + "name": "Xalitzintla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08170000", + "longitude": "-98.51620000" + }, + { + "id": "76122", + "name": "Xaltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88163000", + "longitude": "-97.60825000" + }, + { + "id": "76123", + "name": "Xaltepuxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17546000", + "longitude": "-97.97208000" + }, + { + "id": "76125", + "name": "Xalticpac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84301000", + "longitude": "-97.59556000" + }, + { + "id": "76129", + "name": "Xayacatlán de Bravo", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23712000", + "longitude": "-97.97524000" + }, + { + "id": "76139", + "name": "Xicotepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31813000", + "longitude": "-97.90889000" + }, + { + "id": "76140", + "name": "Xicotepec de Juárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27605000", + "longitude": "-97.96111000" + }, + { + "id": "76141", + "name": "Xicotlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.08110000", + "longitude": "-98.59359000" + }, + { + "id": "76145", + "name": "Xilocuautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13948000", + "longitude": "-98.02341000" + }, + { + "id": "76146", + "name": "Xiloxochico de Rafael Ávila Camacho", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04583000", + "longitude": "-97.49083000" + }, + { + "id": "76149", + "name": "Xitlama", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30344000", + "longitude": "-97.01743000" + }, + { + "id": "76150", + "name": "Xiutetelco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75755000", + "longitude": "-97.34252000" + }, + { + "id": "76156", + "name": "Xochiapulco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82110000", + "longitude": "-97.65947000" + }, + { + "id": "76161", + "name": "Xochicuautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05377000", + "longitude": "-97.88912000" + }, + { + "id": "76164", + "name": "Xochiltepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65272000", + "longitude": "-98.32540000" + }, + { + "id": "76168", + "name": "Xochimilco", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84167000", + "longitude": "-97.72583000" + }, + { + "id": "76169", + "name": "Xochinanacatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19482000", + "longitude": "-97.89765000" + }, + { + "id": "76173", + "name": "Xochitepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22833000", + "longitude": "-98.87611000" + }, + { + "id": "76175", + "name": "Xochitlan Todos Santos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.70395000", + "longitude": "-97.77609000" + }, + { + "id": "76176", + "name": "Xochitlaxco (San Baltazar)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.94139000", + "longitude": "-97.86361000" + }, + { + "id": "76180", + "name": "Xochitlán de Vicente Suárez", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.95002000", + "longitude": "-97.64375000" + }, + { + "id": "76179", + "name": "Xochitlán Todos Santos", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68080000", + "longitude": "-97.77750000" + }, + { + "id": "76184", + "name": "Xocotepéc", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36758000", + "longitude": "-97.17093000" + }, + { + "id": "76190", + "name": "Xoloateno", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83111000", + "longitude": "-97.36944000" + }, + { + "id": "76192", + "name": "Xolotla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25801000", + "longitude": "-98.13325000" + }, + { + "id": "76196", + "name": "Xonalpu", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12833000", + "longitude": "-97.61056000" + }, + { + "id": "76197", + "name": "Xonocuautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78873000", + "longitude": "-97.51627000" + }, + { + "id": "76203", + "name": "Xoxonacatla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00750000", + "longitude": "-97.94056000" + }, + { + "id": "76205", + "name": "Xuchapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52650000", + "longitude": "-98.45705000" + }, + { + "id": "76216", + "name": "Yaonahuac", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87076000", + "longitude": "-97.46587000" + }, + { + "id": "76231", + "name": "Yehualtepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79518000", + "longitude": "-97.66160000" + }, + { + "id": "76243", + "name": "Yopi", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82667000", + "longitude": "-97.38028000" + }, + { + "id": "76261", + "name": "Zacaola", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88099000", + "longitude": "-97.84762000" + }, + { + "id": "76262", + "name": "Zacapala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57810000", + "longitude": "-98.04505000" + }, + { + "id": "76264", + "name": "Zacapechpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05441000", + "longitude": "-98.35109000" + }, + { + "id": "76265", + "name": "Zacapoaxtla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87271000", + "longitude": "-97.58899000" + }, + { + "id": "76275", + "name": "Zacatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26631000", + "longitude": "-97.53280000" + }, + { + "id": "76277", + "name": "Zacatlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93550000", + "longitude": "-97.96125000" + }, + { + "id": "76291", + "name": "Zahuatlán de Morelos (San José)", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98333000", + "longitude": "-97.86750000" + }, + { + "id": "76307", + "name": "Zapotitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00209000", + "longitude": "-97.71385000" + }, + { + "id": "76315", + "name": "Zaragoza", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77097000", + "longitude": "-97.55506000" + }, + { + "id": "76325", + "name": "Zautla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72013000", + "longitude": "-97.65952000" + }, + { + "id": "76327", + "name": "Zempoala", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.08670000", + "longitude": "-97.99850000" + }, + { + "id": "76334", + "name": "Zihuateutla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28699000", + "longitude": "-97.81998000" + }, + { + "id": "76341", + "name": "Zinacatepec", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33516000", + "longitude": "-97.24621000" + }, + { + "id": "76355", + "name": "Zoatecpan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93444000", + "longitude": "-97.62028000" + }, + { + "id": "76359", + "name": "Zolonquiapa", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57611000", + "longitude": "-98.52722000" + }, + { + "id": "76363", + "name": "Zongozotla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97930000", + "longitude": "-97.72751000" + }, + { + "id": "76368", + "name": "Zoquiapan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00735000", + "longitude": "-97.59691000" + }, + { + "id": "76369", + "name": "Zoquiopan", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.00898000", + "longitude": "-97.59606000" + }, + { + "id": "76373", + "name": "Zoquitlán", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37700000", + "longitude": "-96.98165000" + }, + { + "id": "76377", + "name": "Zoyatitla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.82343000", + "longitude": "-97.81831000" + }, + { + "id": "76380", + "name": "Zoyotla", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92778000", + "longitude": "-97.69389000" + }, + { + "id": "76381", + "name": "Zozocolco de Guerrero", + "state_id": 3476, + "state_code": "PUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10396000", + "longitude": "-97.56934000" + }, + { + "id": "68103", + "name": "Agua Azul", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60271000", + "longitude": "-100.20472000" + }, + { + "id": "68112", + "name": "Agua Fría", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15304000", + "longitude": "-99.80638000" + }, + { + "id": "68118", + "name": "Agua Zarca", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.22003000", + "longitude": "-99.09075000" + }, + { + "id": "68138", + "name": "Ahuacatlán de Guadalupe", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21472000", + "longitude": "-99.54056000" + }, + { + "id": "68166", + "name": "Ajuchitlancito", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47601000", + "longitude": "-100.21583000" + }, + { + "id": "68167", + "name": "Ajuchitlán", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70713000", + "longitude": "-100.02008000" + }, + { + "id": "68189", + "name": "Alfajayucan", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75370000", + "longitude": "-100.21773000" + }, + { + "id": "68250", + "name": "Amazcala", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70339000", + "longitude": "-100.26511000" + }, + { + "id": "68251", + "name": "Amealco", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18758000", + "longitude": "-100.14485000" + }, + { + "id": "68294", + "name": "Apapátaro", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46806000", + "longitude": "-100.36861000" + }, + { + "id": "68340", + "name": "Arcila", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41037000", + "longitude": "-100.10993000" + }, + { + "id": "68365", + "name": "Arroyo Seco", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.54777000", + "longitude": "-99.68832000" + }, + { + "id": "68428", + "name": "Atongo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.77288000", + "longitude": "-100.23953000" + }, + { + "id": "68577", + "name": "Bella Vista del Río", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69000000", + "longitude": "-99.57139000" + }, + { + "id": "68610", + "name": "Bernal", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74030000", + "longitude": "-99.94125000" + }, + { + "id": "68641", + "name": "Bordo Blanco", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49631000", + "longitude": "-99.92855000" + }, + { + "id": "68646", + "name": "Boxasní", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.67083000", + "longitude": "-99.84861000" + }, + { + "id": "68647", + "name": "Boyé", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.68091000", + "longitude": "-99.73933000" + }, + { + "id": "68648", + "name": "Bravo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39977000", + "longitude": "-100.42423000" + }, + { + "id": "68672", + "name": "Buenavista", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.82372000", + "longitude": "-100.47009000" + }, + { + "id": "68716", + "name": "Cadereyta", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69701000", + "longitude": "-99.81624000" + }, + { + "id": "68727", + "name": "Calamanda", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54672000", + "longitude": "-100.18616000" + }, + { + "id": "68817", + "name": "Carbonera", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80518000", + "longitude": "-100.17117000" + }, + { + "id": "68848", + "name": "Casa Blanca", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38658000", + "longitude": "-100.02009000" + }, + { + "id": "68890", + "name": "Ceja de Bravo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37856000", + "longitude": "-100.39423000" + }, + { + "id": "68937", + "name": "Cerro de la Cruz", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81474000", + "longitude": "-100.50109000" + }, + { + "id": "68926", + "name": "Cerro Gordo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37329000", + "longitude": "-99.91385000" + }, + { + "id": "68995", + "name": "Charco Blanco", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43404000", + "longitude": "-100.47244000" + }, + { + "id": "69028", + "name": "Chichimequillas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.76512000", + "longitude": "-100.33588000" + }, + { + "id": "69414", + "name": "Colón", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.78323000", + "longitude": "-100.05149000" + }, + { + "id": "69258", + "name": "Colinas de Santa Cruz Segunda Sección", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62361000", + "longitude": "-100.46667000" + }, + { + "id": "69403", + "name": "Colonia los Ángeles", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53523000", + "longitude": "-100.48828000" + }, + { + "id": "69446", + "name": "Concá", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.44477000", + "longitude": "-99.63582000" + }, + { + "id": "69524", + "name": "Coyotillos", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59938000", + "longitude": "-100.20898000" + }, + { + "id": "69703", + "name": "Dolores Cuadrilla de Enmedio", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.35257000", + "longitude": "-100.07967000" + }, + { + "id": "69847", + "name": "El Blanco", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61119000", + "longitude": "-100.10159000" + }, + { + "id": "69873", + "name": "El Carmen", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57445000", + "longitude": "-100.28804000" + }, + { + "id": "69889", + "name": "El Cazadero", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30011000", + "longitude": "-99.87186000" + }, + { + "id": "69905", + "name": "El Ciervo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61834000", + "longitude": "-99.87242000" + }, + { + "id": "69912", + "name": "El Colorado", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56185000", + "longitude": "-100.24520000" + }, + { + "id": "69931", + "name": "El Coto", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39491000", + "longitude": "-100.13465000" + }, + { + "id": "69976", + "name": "El Gallo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66973000", + "longitude": "-100.04677000" + }, + { + "id": "69999", + "name": "El Jaral", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.40647000", + "longitude": "-100.45524000" + }, + { + "id": "70002", + "name": "El Jazmín", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34444000", + "longitude": "-100.04667000" + }, + { + "id": "70026", + "name": "El Lobo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72904000", + "longitude": "-100.20226000" + }, + { + "id": "70037", + "name": "El Milagro", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47429000", + "longitude": "-100.34918000" + }, + { + "id": "70052", + "name": "El Nabo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69389000", + "longitude": "-100.48028000" + }, + { + "id": "70073", + "name": "El Organal", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47751000", + "longitude": "-100.05457000" + }, + { + "id": "70078", + "name": "El Palmar", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69347000", + "longitude": "-99.70645000" + }, + { + "id": "70089", + "name": "El Paraíso", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56402000", + "longitude": "-100.21617000" + }, + { + "id": "70105", + "name": "El Pinto", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80270000", + "longitude": "-100.41096000" + }, + { + "id": "70129", + "name": "El Pozo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.63750000", + "longitude": "-100.33306000" + }, + { + "id": "70136", + "name": "El Pueblito", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53996000", + "longitude": "-100.43817000" + }, + { + "id": "70159", + "name": "El Rincón", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74111000", + "longitude": "-99.78472000" + }, + { + "id": "70177", + "name": "El Rosario", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39180000", + "longitude": "-100.06583000" + }, + { + "id": "70204", + "name": "El Saúz", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47774000", + "longitude": "-100.11540000" + }, + { + "id": "70187", + "name": "El Salitre", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66596000", + "longitude": "-100.42288000" + }, + { + "id": "70215", + "name": "El Tejocote", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61976000", + "longitude": "-100.03447000" + }, + { + "id": "70250", + "name": "El Vegil", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43111000", + "longitude": "-100.35024000" + }, + { + "id": "70311", + "name": "Epigmenio González", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55090000", + "longitude": "-100.16505000" + }, + { + "id": "70319", + "name": "Escolasticas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.42809000", + "longitude": "-100.21186000" + }, + { + "id": "70328", + "name": "Esperanza", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64610000", + "longitude": "-100.11128000" + }, + { + "id": "70391", + "name": "Ezequiel Montes", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66481000", + "longitude": "-99.89960000" + }, + { + "id": "70497", + "name": "Fuentezuelas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55586000", + "longitude": "-99.98209000" + }, + { + "id": "70514", + "name": "Galeras", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61759000", + "longitude": "-100.15731000" + }, + { + "id": "70515", + "name": "Galindo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39725000", + "longitude": "-100.09840000" + }, + { + "id": "70541", + "name": "General Lázaro Cárdenas (El Colorado)", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56389000", + "longitude": "-100.24389000" + }, + { + "id": "70591", + "name": "Guadalupe Septién", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52746000", + "longitude": "-100.11352000" + }, + { + "id": "70660", + "name": "Hacienda la Cruz [Fraccionamiento]", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.63333000", + "longitude": "-100.26278000" + }, + { + "id": "70697", + "name": "Higuerillas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91625000", + "longitude": "-99.76556000" + }, + { + "id": "70796", + "name": "Huimilpan", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37199000", + "longitude": "-100.27737000" + }, + { + "id": "70844", + "name": "Ignacio Pérez", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52225000", + "longitude": "-100.11129000" + }, + { + "id": "70979", + "name": "Jalpan", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21802000", + "longitude": "-99.47152000" + }, + { + "id": "71031", + "name": "Jesús María", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62274000", + "longitude": "-100.25631000" + }, + { + "id": "71063", + "name": "Joaquín Herrera", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48300000", + "longitude": "-100.43854000" + }, + { + "id": "71068", + "name": "Jofrito", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86154000", + "longitude": "-100.41884000" + }, + { + "id": "71142", + "name": "Juriquilla", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71277000", + "longitude": "-100.45568000" + }, + { + "id": "71182", + "name": "La Barreta", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.82806000", + "longitude": "-100.50647000" + }, + { + "id": "71206", + "name": "La Cañada", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60805000", + "longitude": "-100.33275000" + }, + { + "id": "71211", + "name": "La Ceja", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38026000", + "longitude": "-100.26505000" + }, + { + "id": "71257", + "name": "La D", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44046000", + "longitude": "-100.15296000" + }, + { + "id": "71279", + "name": "La Estacada", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.82151000", + "longitude": "-100.40763000" + }, + { + "id": "71281", + "name": "La Estancia", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.42123000", + "longitude": "-100.06616000" + }, + { + "id": "71296", + "name": "La Fuente", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55255000", + "longitude": "-100.03591000" + }, + { + "id": "71306", + "name": "La Gotera", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86319000", + "longitude": "-100.37575000" + }, + { + "id": "71308", + "name": "La Griega", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66642000", + "longitude": "-100.24012000" + }, + { + "id": "71349", + "name": "La Laja", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57468000", + "longitude": "-99.98070000" + }, + { + "id": "71360", + "name": "La Lira", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47554000", + "longitude": "-100.16145000" + }, + { + "id": "71361", + "name": "La Llave", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46628000", + "longitude": "-99.99373000" + }, + { + "id": "71366", + "name": "La Loma", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60000000", + "longitude": "-100.23889000" + }, + { + "id": "71377", + "name": "La Luz", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86857000", + "longitude": "-100.43839000" + }, + { + "id": "71403", + "name": "La Monja", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.84275000", + "longitude": "-100.49754000" + }, + { + "id": "71404", + "name": "La Negreta", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52647000", + "longitude": "-100.45053000" + }, + { + "id": "71406", + "name": "La Noria", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51261000", + "longitude": "-100.34610000" + }, + { + "id": "71420", + "name": "La Palma", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52219000", + "longitude": "-100.17392000" + }, + { + "id": "71446", + "name": "La Piedad", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57890000", + "longitude": "-100.25573000" + }, + { + "id": "71456", + "name": "La Pradera", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65889000", + "longitude": "-100.34222000" + }, + { + "id": "71489", + "name": "La Solana", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73835000", + "longitude": "-100.39469000" + }, + { + "id": "71495", + "name": "La Soledad", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16944000", + "longitude": "-100.19111000" + }, + { + "id": "71506", + "name": "La Tortuga", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56703000", + "longitude": "-99.92317000" + }, + { + "id": "71508", + "name": "La Trinidad", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51560000", + "longitude": "-99.96283000" + }, + { + "id": "71526", + "name": "La Valla", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49966000", + "longitude": "-100.02689000" + }, + { + "id": "71530", + "name": "La Versolilla", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.87306000", + "longitude": "-100.37889000" + }, + { + "id": "71556", + "name": "Laguna de Vaquerías", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.35392000", + "longitude": "-100.13515000" + }, + { + "id": "71564", + "name": "Lagunillas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45876000", + "longitude": "-100.29500000" + }, + { + "id": "71568", + "name": "Landa de Matamoros", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.18484000", + "longitude": "-99.31985000" + }, + { + "id": "71608", + "name": "Las Lajitas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80360000", + "longitude": "-100.40107000" + }, + { + "id": "71641", + "name": "Las Taponas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41747000", + "longitude": "-100.38421000" + }, + { + "id": "71722", + "name": "Loma Linda", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.40079000", + "longitude": "-100.03132000" + }, + { + "id": "71778", + "name": "Los Baños", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79050000", + "longitude": "-100.31310000" + }, + { + "id": "71779", + "name": "Los Benitos", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.68500000", + "longitude": "-99.95611000" + }, + { + "id": "71788", + "name": "Los Cerritos", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56204000", + "longitude": "-100.06338000" + }, + { + "id": "71795", + "name": "Los Cues", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.50194000", + "longitude": "-100.26417000" + }, + { + "id": "71825", + "name": "Los Olvera", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53434000", + "longitude": "-100.40795000" + }, + { + "id": "71835", + "name": "Los Pocitos", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80000000", + "longitude": "-100.31408000" + }, + { + "id": "71875", + "name": "Lourdes", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51271000", + "longitude": "-100.47643000" + }, + { + "id": "72084", + "name": "Mesillas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13653000", + "longitude": "-100.00157000" + }, + { + "id": "72190", + "name": "Mompaní", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69214000", + "longitude": "-100.50679000" + }, + { + "id": "72216", + "name": "Montenegro", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.76333000", + "longitude": "-100.42861000" + }, + { + "id": "72333", + "name": "Ninguno [CERESO]", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.67361000", + "longitude": "-100.36028000" + }, + { + "id": "72351", + "name": "Noria Nueva", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55671000", + "longitude": "-100.12502000" + }, + { + "id": "72488", + "name": "Ojo de Agua", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34746000", + "longitude": "-100.03528000" + }, + { + "id": "72595", + "name": "Palmillas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33631000", + "longitude": "-99.94035000" + }, + { + "id": "72605", + "name": "Palo Alto", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54065000", + "longitude": "-100.22130000" + }, + { + "id": "72673", + "name": "Paseos del Marqués", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60389000", + "longitude": "-100.24028000" + }, + { + "id": "72674", + "name": "Paseos del Pedregal", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66417000", + "longitude": "-100.39806000" + }, + { + "id": "72688", + "name": "Paso de Mata", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34230000", + "longitude": "-99.92712000" + }, + { + "id": "72711", + "name": "Patria Nueva", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.63222000", + "longitude": "-100.47694000" + }, + { + "id": "72752", + "name": "Peñamiller", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05408000", + "longitude": "-99.81573000" + }, + { + "id": "72725", + "name": "Pedro Escobedo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49963000", + "longitude": "-100.14278000" + }, + { + "id": "72763", + "name": "Pie de Gallo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.78351000", + "longitude": "-100.49243000" + }, + { + "id": "72778", + "name": "Pinal de Amoles", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13448000", + "longitude": "-99.62590000" + }, + { + "id": "72783", + "name": "Pintillo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79667000", + "longitude": "-100.41694000" + }, + { + "id": "72888", + "name": "Presa de Rayas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80712000", + "longitude": "-100.22252000" + }, + { + "id": "72962", + "name": "Puerta de Palmillas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31204000", + "longitude": "-99.91629000" + }, + { + "id": "72975", + "name": "Puerto de Aguirre", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80652000", + "longitude": "-100.43213000" + }, + { + "id": "72977", + "name": "Puerto de Carroza", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89862000", + "longitude": "-100.41164000" + }, + { + "id": "72978", + "name": "Puerto de Chiquihuite", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70083000", + "longitude": "-99.83528000" + }, + { + "id": "72979", + "name": "Puerto de Nieto", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88975000", + "longitude": "-100.53814000" + }, + { + "id": "72995", + "name": "Purísima de Arista", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "21.31090000", + "longitude": "-99.51215000" + }, + { + "id": "72998", + "name": "Purísima de Cubos (La Purísima)", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60028000", + "longitude": "-100.11833000" + }, + { + "id": "73025", + "name": "Querétaro", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72105000", + "longitude": "-100.44738000" + }, + { + "id": "73058", + "name": "Rancho Bellavista [Fraccionamiento]", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60667000", + "longitude": "-100.44972000" + }, + { + "id": "73211", + "name": "Saldarriaga", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62781000", + "longitude": "-100.29307000" + }, + { + "id": "73367", + "name": "San Antonio de la Cal", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.76693000", + "longitude": "-99.93771000" + }, + { + "id": "73468", + "name": "San Clemente", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51509000", + "longitude": "-100.08459000" + }, + { + "id": "73615", + "name": "San Francisco de la Palma", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66028000", + "longitude": "-100.51528000" + }, + { + "id": "73659", + "name": "San Ildefonso", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56750000", + "longitude": "-100.17262000" + }, + { + "id": "73661", + "name": "San Ildefonso Tultepec", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14381000", + "longitude": "-99.95946000" + }, + { + "id": "73677", + "name": "San Isidro Buenavista", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.78874000", + "longitude": "-100.44908000" + }, + { + "id": "73680", + "name": "San Isidro Miranda", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57018000", + "longitude": "-100.32425000" + }, + { + "id": "73696", + "name": "San Javier", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75265000", + "longitude": "-99.71683000" + }, + { + "id": "73751", + "name": "San José Buenavista", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73482000", + "longitude": "-100.40997000" + }, + { + "id": "73830", + "name": "San José de la Laja", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61844000", + "longitude": "-99.97550000" + }, + { + "id": "73836", + "name": "San José del Jagüey", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73722000", + "longitude": "-99.92444000" + }, + { + "id": "73847", + "name": "San José el Alto", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65339000", + "longitude": "-100.38218000" + }, + { + "id": "73768", + "name": "San José Itho", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16544000", + "longitude": "-100.12704000" + }, + { + "id": "73791", + "name": "San José Tepuzas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.35417000", + "longitude": "-100.37528000" + }, + { + "id": "73736", + "name": "San Jose de los Olvera", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55307000", + "longitude": "-100.41518000" + }, + { + "id": "73976", + "name": "San Juan del Río", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38886000", + "longitude": "-99.99577000" + }, + { + "id": "74084", + "name": "San Martín", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72282000", + "longitude": "-99.97522000" + }, + { + "id": "74097", + "name": "San Martín Florida", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75662000", + "longitude": "-99.82508000" + }, + { + "id": "74161", + "name": "San Miguel Amazcala", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75056000", + "longitude": "-100.23556000" + }, + { + "id": "74243", + "name": "San Miguelito", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73709000", + "longitude": "-100.50276000" + }, + { + "id": "74248", + "name": "San Nicolás", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47689000", + "longitude": "-99.93749000" + }, + { + "id": "74271", + "name": "San Nicolás de la Torre", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07806000", + "longitude": "-100.10139000" + }, + { + "id": "74302", + "name": "San Pablo Tolimán", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.85703000", + "longitude": "-99.89985000" + }, + { + "id": "74309", + "name": "San Pedro", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32055000", + "longitude": "-100.28466000" + }, + { + "id": "74357", + "name": "San Pedro Mártir", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61795000", + "longitude": "-100.47024000" + }, + { + "id": "74426", + "name": "San Rafael", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75246000", + "longitude": "-100.28583000" + }, + { + "id": "74477", + "name": "San Sebastián de Las Barrancas Sur", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26565000", + "longitude": "-99.93622000" + }, + { + "id": "74509", + "name": "San Vicente el Alto", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56857000", + "longitude": "-100.16495000" + }, + { + "id": "74500", + "name": "San Vicente Ferrer", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72703000", + "longitude": "-100.34584000" + }, + { + "id": "74568", + "name": "Santa Bárbara de La Cueva", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29632000", + "longitude": "-99.96296000" + }, + { + "id": "74578", + "name": "Santa Catarina", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.77678000", + "longitude": "-100.45233000" + }, + { + "id": "74610", + "name": "Santa Cruz", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71179000", + "longitude": "-100.30414000" + }, + { + "id": "74623", + "name": "Santa Cruz Escandón", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.41603000", + "longitude": "-99.95563000" + }, + { + "id": "74721", + "name": "Santa María Begoña", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74662000", + "longitude": "-100.31765000" + }, + { + "id": "74755", + "name": "Santa María Magdalena", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59690000", + "longitude": "-100.44749000" + }, + { + "id": "74824", + "name": "Santa Matilde", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43268000", + "longitude": "-100.02611000" + }, + { + "id": "74848", + "name": "Santa Rosa de Lima", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66565000", + "longitude": "-99.97851000" + }, + { + "id": "74843", + "name": "Santa Rosa Jauregui", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74122000", + "longitude": "-100.44843000" + }, + { + "id": "74847", + "name": "Santa Rosa Xajay", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43667000", + "longitude": "-99.89923000" + }, + { + "id": "74985", + "name": "Santiago de Querétaro", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58806000", + "longitude": "-100.38806000" + }, + { + "id": "74923", + "name": "Santiago Mexquititlán Barrio 4to.", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06306000", + "longitude": "-100.06833000" + }, + { + "id": "74992", + "name": "Santillán", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60073000", + "longitude": "-99.93951000" + }, + { + "id": "75062", + "name": "Sergio Villaseñor", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64500000", + "longitude": "-100.42083000" + }, + { + "id": "75463", + "name": "Tequisquiapan", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52250000", + "longitude": "-99.89167000" + }, + { + "id": "75543", + "name": "Tierra Blanca", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.78026000", + "longitude": "-100.38000000" + }, + { + "id": "75614", + "name": "Tlacote el Bajo", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66139000", + "longitude": "-100.50769000" + }, + { + "id": "75721", + "name": "Tolimán", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90845000", + "longitude": "-99.93040000" + }, + { + "id": "75889", + "name": "Urecho", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65388000", + "longitude": "-100.07402000" + }, + { + "id": "75951", + "name": "Venceremos", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55083000", + "longitude": "-100.39806000" + }, + { + "id": "75968", + "name": "Viborillas", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60882000", + "longitude": "-100.18558000" + }, + { + "id": "76006", + "name": "Villa Guerrero", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69704000", + "longitude": "-99.76093000" + }, + { + "id": "76041", + "name": "Villa Progreso", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64234000", + "longitude": "-99.83501000" + }, + { + "id": "76086", + "name": "Villas Fundadores [Fraccionamiento]", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37778000", + "longitude": "-99.90944000" + }, + { + "id": "76096", + "name": "Vista Hermosa (Cuasinada)", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36861000", + "longitude": "-100.01250000" + }, + { + "id": "76098", + "name": "Visthá", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44670000", + "longitude": "-99.97673000" + }, + { + "id": "76102", + "name": "Vizarrón", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.83218000", + "longitude": "-99.72011000" + }, + { + "id": "76245", + "name": "Yosphí", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17083000", + "longitude": "-99.95222000" + }, + { + "id": "76296", + "name": "Zamorano", + "state_id": 3455, + "state_code": "QUE", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80819000", + "longitude": "-100.11797000" + }, + { + "id": "68171", + "name": "Akumal", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39693000", + "longitude": "-87.31444000" + }, + { + "id": "68198", + "name": "Alfredo V. Bonfil", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08776000", + "longitude": "-86.84706000" + }, + { + "id": "76397", + "name": "Álvaro Obregón", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.29900000", + "longitude": "-88.65145000" + }, + { + "id": "68483", + "name": "Bacalar", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68109000", + "longitude": "-88.39333000" + }, + { + "id": "68602", + "name": "Benito Juárez", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02029000", + "longitude": "-87.04101000" + }, + { + "id": "68714", + "name": "Cacao", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19458000", + "longitude": "-88.69529000" + }, + { + "id": "68730", + "name": "Calderitas", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.55564000", + "longitude": "-88.25518000" + }, + { + "id": "68787", + "name": "Cancún", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "21.17429000", + "longitude": "-86.84656000" + }, + { + "id": "68803", + "name": "Caobas", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.44497000", + "longitude": "-89.10498000" + }, + { + "id": "68825", + "name": "Carlos A. Madrazo", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50172000", + "longitude": "-88.52508000" + }, + { + "id": "69009", + "name": "Chetumal", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51413000", + "longitude": "-88.30381000" + }, + { + "id": "69090", + "name": "Chiquilá", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "21.43273000", + "longitude": "-87.33559000" + }, + { + "id": "69119", + "name": "Chunhuhub", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58533000", + "longitude": "-88.59220000" + }, + { + "id": "69149", + "name": "Ciudad Chemuyil", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34861000", + "longitude": "-87.35306000" + }, + { + "id": "69234", + "name": "Coba", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48298000", + "longitude": "-87.73888000" + }, + { + "id": "69241", + "name": "Cocoyol", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16448000", + "longitude": "-88.69080000" + }, + { + "id": "69531", + "name": "Cozumel", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.50038000", + "longitude": "-86.94272000" + }, + { + "id": "69745", + "name": "Dziuche", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89744000", + "longitude": "-88.80949000" + }, + { + "id": "69748", + "name": "Dzula", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60328000", + "longitude": "-88.41566000" + }, + { + "id": "70229", + "name": "El Tintal", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89194000", + "longitude": "-87.46611000" + }, + { + "id": "70394", + "name": "Felipe Carrillo Puerto", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57750000", + "longitude": "-88.04529000" + }, + { + "id": "70749", + "name": "Huay Max", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04173000", + "longitude": "-88.52588000" + }, + { + "id": "70750", + "name": "Huay-Pix", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51664000", + "longitude": "-88.42614000" + }, + { + "id": "70855", + "name": "Ignacio Zaragoza", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88167000", + "longitude": "-87.52500000" + }, + { + "id": "70884", + "name": "Isla Holbox", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "21.52391000", + "longitude": "-87.37798000" + }, + { + "id": "70885", + "name": "Isla Mujeres", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "21.23114000", + "longitude": "-86.73105000" + }, + { + "id": "71015", + "name": "Javier Rojo Gómez", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27389000", + "longitude": "-88.68111000" + }, + { + "id": "71098", + "name": "José María Morelos", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74887000", + "longitude": "-88.70866000" + }, + { + "id": "71086", + "name": "Jose Narciso Rovirosa", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10620000", + "longitude": "-88.72565000" + }, + { + "id": "71127", + "name": "Juan Sarabia", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50035000", + "longitude": "-88.48013000" + }, + { + "id": "71152", + "name": "Kancabchén", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71492000", + "longitude": "-88.86211000" + }, + { + "id": "71154", + "name": "Kantunilkín", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10182000", + "longitude": "-87.48644000" + }, + { + "id": "71460", + "name": "La Presumida", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80083000", + "longitude": "-88.75389000" + }, + { + "id": "71519", + "name": "La Unión", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "17.89918000", + "longitude": "-88.88092000" + }, + { + "id": "71895", + "name": "Lázaro Cárdenas", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99900000", + "longitude": "-87.44275000" + }, + { + "id": "71659", + "name": "Leona Vicario", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.98970000", + "longitude": "-87.20224000" + }, + { + "id": "71797", + "name": "Los Divorciados", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07687000", + "longitude": "-88.45647000" + }, + { + "id": "72029", + "name": "Maya Balam", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93917000", + "longitude": "-88.39972000" + }, + { + "id": "72237", + "name": "Morocoy", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60324000", + "longitude": "-88.81097000" + }, + { + "id": "72319", + "name": "Nicolás Bravo", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.45910000", + "longitude": "-88.92802000" + }, + { + "id": "72422", + "name": "Nuevo Xcán", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86917000", + "longitude": "-87.60306000" + }, + { + "id": "72540", + "name": "Othón P. Blanco", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.52309000", + "longitude": "-88.38672000" + }, + { + "id": "72814", + "name": "Playa del Carmen", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62740000", + "longitude": "-87.07987000" + }, + { + "id": "72842", + "name": "Polyuc", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60889000", + "longitude": "-88.56148000" + }, + { + "id": "72892", + "name": "Presidente Juárez", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32836000", + "longitude": "-88.56164000" + }, + { + "id": "72924", + "name": "Pucté", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23237000", + "longitude": "-88.66760000" + }, + { + "id": "72966", + "name": "Puerto Aventuras", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.50075000", + "longitude": "-87.22647000" + }, + { + "id": "73188", + "name": "Saban", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03450000", + "longitude": "-88.53891000" + }, + { + "id": "73194", + "name": "Sabidos", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.35716000", + "longitude": "-88.58743000" + }, + { + "id": "73310", + "name": "San Angel", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "21.23535000", + "longitude": "-87.43156000" + }, + { + "id": "74845", + "name": "Santa Rosa Segundo", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97778000", + "longitude": "-88.26250000" + }, + { + "id": "75067", + "name": "Señor", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.84424000", + "longitude": "-88.13524000" + }, + { + "id": "75061", + "name": "Sergio Butrón Casas", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51390000", + "longitude": "-88.56883000" + }, + { + "id": "75136", + "name": "Subteniente López", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.49546000", + "longitude": "-88.39126000" + }, + { + "id": "75448", + "name": "Tepich", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24212000", + "longitude": "-88.25694000" + }, + { + "id": "75559", + "name": "Tihosuco", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19642000", + "longitude": "-88.37361000" + }, + { + "id": "75804", + "name": "Tulum", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22618000", + "longitude": "-87.51702000" + }, + { + "id": "75863", + "name": "Ucum", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50258000", + "longitude": "-88.51836000" + }, + { + "id": "76105", + "name": "X Cabil", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.16542000", + "longitude": "-88.46398000" + }, + { + "id": "76107", + "name": "X-Hazil Sur", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39167000", + "longitude": "-88.07417000" + }, + { + "id": "76108", + "name": "X-pichil", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69529000", + "longitude": "-88.37681000" + }, + { + "id": "76207", + "name": "Xul-Ha", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "18.55108000", + "longitude": "-88.46363000" + }, + { + "id": "76255", + "name": "Zacalaca", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "20.06240000", + "longitude": "-88.59606000" + }, + { + "id": "76361", + "name": "Zona Urbana Ejido Isla Mujeres", + "state_id": 3467, + "state_code": "ROO", + "country_id": 142, + "country_code": "MX", + "latitude": "21.22472000", + "longitude": "-86.85361000" + }, + { + "id": "68106", + "name": "Agua Buena", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95791000", + "longitude": "-99.39416000" + }, + { + "id": "68116", + "name": "Agua Señora", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.23750000", + "longitude": "-101.04222000" + }, + { + "id": "68142", + "name": "Ahualulco del Sonido Trece", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.40019000", + "longitude": "-101.16614000" + }, + { + "id": "68157", + "name": "Ahuehueyo Primero Centro", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.34500000", + "longitude": "-98.83722000" + }, + { + "id": "68172", + "name": "Alaquines", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.12973000", + "longitude": "-99.60093000" + }, + { + "id": "68174", + "name": "Alberto Carrera Torres", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.77240000", + "longitude": "-101.01193000" + }, + { + "id": "68262", + "name": "Ampliación la Hincada", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21528000", + "longitude": "-99.23611000" + }, + { + "id": "68326", + "name": "Aquismón", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.62159000", + "longitude": "-99.01984000" + }, + { + "id": "68372", + "name": "Arroyos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.05455000", + "longitude": "-100.90520000" + }, + { + "id": "68444", + "name": "Aurelio Manrique", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.28750000", + "longitude": "-98.65083000" + }, + { + "id": "68454", + "name": "Axtla de Terrazas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.43923000", + "longitude": "-98.87508000" + }, + { + "id": "76407", + "name": "Ébano", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21808000", + "longitude": "-98.37706000" + }, + { + "id": "68619", + "name": "Bledos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.84148000", + "longitude": "-101.11651000" + }, + { + "id": "68624", + "name": "Bocas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.51817000", + "longitude": "-101.02186000" + }, + { + "id": "68833", + "name": "Carranco", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.82002000", + "longitude": "-101.09699000" + }, + { + "id": "69658", + "name": "Cárdenas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.00144000", + "longitude": "-99.64247000" + }, + { + "id": "68911", + "name": "Cerrito de Jaral", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.22361000", + "longitude": "-101.06250000" + }, + { + "id": "68912", + "name": "Cerrito de Zavala", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.53690000", + "longitude": "-100.97683000" + }, + { + "id": "68916", + "name": "Cerritos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.42835000", + "longitude": "-100.28474000" + }, + { + "id": "68936", + "name": "Cerro de San Pedro", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21780000", + "longitude": "-100.79961000" + }, + { + "id": "68927", + "name": "Cerro Gordo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.97448000", + "longitude": "-100.80661000" + }, + { + "id": "68961", + "name": "Chalchocoyo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.31444000", + "longitude": "-98.79194000" + }, + { + "id": "68994", + "name": "Charcas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.12943000", + "longitude": "-101.11346000" + }, + { + "id": "69038", + "name": "Chiconamel", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.36806000", + "longitude": "-98.71917000" + }, + { + "id": "69196", + "name": "Ciudad del Maíz", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.40187000", + "longitude": "-99.60468000" + }, + { + "id": "69155", + "name": "Ciudad Fernández", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.94045000", + "longitude": "-100.01153000" + }, + { + "id": "69179", + "name": "Ciudad Satélite", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.11083000", + "longitude": "-100.79583000" + }, + { + "id": "69183", + "name": "Ciudad Valles", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.99631000", + "longitude": "-99.01093000" + }, + { + "id": "69404", + "name": "Colonia Álvaro Obregón", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.25183000", + "longitude": "-99.67416000" + }, + { + "id": "69374", + "name": "Colonia Veinte de Noviembre", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.97917000", + "longitude": "-100.04981000" + }, + { + "id": "69478", + "name": "Corcovado", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.39517000", + "longitude": "-100.69337000" + }, + { + "id": "69666", + "name": "Damian Carmona", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.09723000", + "longitude": "-99.29216000" + }, + { + "id": "69681", + "name": "Derramaderos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.57025000", + "longitude": "-100.93226000" + }, + { + "id": "69731", + "name": "Dulce Grande", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.00175000", + "longitude": "-102.17405000" + }, + { + "id": "69812", + "name": "Ejido el Saucillo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.83666000", + "longitude": "-100.99490000" + }, + { + "id": "69766", + "name": "Ejido Gogorrón (Ex-Hacienda de Gogorrón)", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.84019000", + "longitude": "-100.91138000" + }, + { + "id": "69815", + "name": "Ejido la Pitahaya (Santo Domingo)", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.60611000", + "longitude": "-100.76111000" + }, + { + "id": "69818", + "name": "Ejido los Huastecos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.95917000", + "longitude": "-98.65028000" + }, + { + "id": "69790", + "name": "Ejido San José Xilatzén", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.67472000", + "longitude": "-98.92750000" + }, + { + "id": "69841", + "name": "El Barril", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.07509000", + "longitude": "-102.15374000" + }, + { + "id": "69864", + "name": "El Capulín", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.82806000", + "longitude": "-100.03743000" + }, + { + "id": "69882", + "name": "El Carrizal", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.34146000", + "longitude": "-101.16778000" + }, + { + "id": "69972", + "name": "El Fuerte", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.71289000", + "longitude": "-100.66445000" + }, + { + "id": "69988", + "name": "El Huexco", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.34075000", + "longitude": "-98.75350000" + }, + { + "id": "69995", + "name": "El Jabalí", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.88431000", + "longitude": "-100.05315000" + }, + { + "id": "70000", + "name": "El Jaralito", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03851000", + "longitude": "-100.82119000" + }, + { + "id": "70057", + "name": "El Naranjo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.52597000", + "longitude": "-99.32968000" + }, + { + "id": "70101", + "name": "El Peñasco", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.32534000", + "longitude": "-100.95014000" + }, + { + "id": "70174", + "name": "El Rosario", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.73411000", + "longitude": "-100.92631000" + }, + { + "id": "70218", + "name": "El Tepetate", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.01344000", + "longitude": "-101.24195000" + }, + { + "id": "70281", + "name": "Emiliano Zapata", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.92149000", + "longitude": "-100.91358000" + }, + { + "id": "70303", + "name": "Enramadas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.88316000", + "longitude": "-100.78204000" + }, + { + "id": "70304", + "name": "Enrique Estrada", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.24030000", + "longitude": "-100.88869000" + }, + { + "id": "70309", + "name": "Entronque de Matehuala (El Huizache)", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.92500000", + "longitude": "-100.45889000" + }, + { + "id": "70317", + "name": "Escalerillas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.11167000", + "longitude": "-101.07305000" + }, + { + "id": "70356", + "name": "Estación Tamuín", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.07750000", + "longitude": "-98.81111000" + }, + { + "id": "70366", + "name": "Estanzuela", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.26889000", + "longitude": "-101.00806000" + }, + { + "id": "70461", + "name": "Fracción Milpillas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.22778000", + "longitude": "-100.96417000" + }, + { + "id": "70565", + "name": "Granjenal", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.39270000", + "longitude": "-100.06893000" + }, + { + "id": "70569", + "name": "Guadalcázar", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.61804000", + "longitude": "-100.39936000" + }, + { + "id": "70606", + "name": "Guadalupe Victoria", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.16333000", + "longitude": "-101.07000000" + }, + { + "id": "70674", + "name": "Hernández", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.03337000", + "longitude": "-102.03763000" + }, + { + "id": "70691", + "name": "Higinio Olivo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.98012000", + "longitude": "-99.57935000" + }, + { + "id": "70789", + "name": "Huichihuayan", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.48369000", + "longitude": "-98.96840000" + }, + { + "id": "70866", + "name": "Illescas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.24066000", + "longitude": "-102.14463000" + }, + { + "id": "70951", + "name": "Iztacapa", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.37000000", + "longitude": "-98.94167000" + }, + { + "id": "70981", + "name": "Jalpilla", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.39571000", + "longitude": "-98.87229000" + }, + { + "id": "71028", + "name": "Jesús María", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.15488000", + "longitude": "-102.19253000" + }, + { + "id": "71272", + "name": "La Esperanza", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.00788000", + "longitude": "-100.76496000" + }, + { + "id": "71314", + "name": "La Herradura", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.44250000", + "longitude": "-98.94917000" + }, + { + "id": "71359", + "name": "La Lima", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.92722000", + "longitude": "-99.10278000" + }, + { + "id": "71393", + "name": "La Mesa de los Conejos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.10316000", + "longitude": "-101.05309000" + }, + { + "id": "71447", + "name": "La Pila", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03425000", + "longitude": "-100.86786000" + }, + { + "id": "71474", + "name": "La Reforma", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.99879000", + "longitude": "-100.09452000" + }, + { + "id": "71498", + "name": "La Subida", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.90506000", + "longitude": "-99.09892000" + }, + { + "id": "71528", + "name": "La Ventilla", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.77389000", + "longitude": "-101.03028000" + }, + { + "id": "71553", + "name": "Laguna de San Vicente", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.94603000", + "longitude": "-100.85926000" + }, + { + "id": "71554", + "name": "Laguna de Santa Rita", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.11449000", + "longitude": "-100.84713000" + }, + { + "id": "71558", + "name": "Laguna del Mante", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21954000", + "longitude": "-98.98758000" + }, + { + "id": "71576", + "name": "Las Armas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.69685000", + "longitude": "-98.96752000" + }, + { + "id": "71629", + "name": "Las Palmas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03339000", + "longitude": "-98.87407000" + }, + { + "id": "71868", + "name": "Los Zacatones", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.96139000", + "longitude": "-102.05556000" + }, + { + "id": "71941", + "name": "Maitinez", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.37167000", + "longitude": "-99.29306000" + }, + { + "id": "71985", + "name": "Maravillas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.23876000", + "longitude": "-101.01073000" + }, + { + "id": "72002", + "name": "Martinez", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.06790000", + "longitude": "-99.62546000" + }, + { + "id": "72020", + "name": "Matehuala", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.64824000", + "longitude": "-100.64334000" + }, + { + "id": "72177", + "name": "Moctezuma", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.74787000", + "longitude": "-101.08219000" + }, + { + "id": "72204", + "name": "Monte Obscuro", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21972000", + "longitude": "-101.02879000" + }, + { + "id": "72307", + "name": "Negritas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.79361000", + "longitude": "-100.16015000" + }, + { + "id": "72355", + "name": "Norias del Refugio", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.01334000", + "longitude": "-100.47189000" + }, + { + "id": "72372", + "name": "Nueva Primavera", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.91342000", + "longitude": "-98.85785000" + }, + { + "id": "72384", + "name": "Nuevo Crucitas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.10833000", + "longitude": "-99.20444000" + }, + { + "id": "72414", + "name": "Nuevo Tampaón", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.06223000", + "longitude": "-98.56548000" + }, + { + "id": "72472", + "name": "Ocuiltzapoyo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.32444000", + "longitude": "-98.72861000" + }, + { + "id": "72482", + "name": "Ojo Caliente", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.84678000", + "longitude": "-100.75375000" + }, + { + "id": "72486", + "name": "Ojo de Agua", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.44378000", + "longitude": "-100.09283000" + }, + { + "id": "72494", + "name": "Ojo de Agua de Solano", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.98533000", + "longitude": "-100.07946000" + }, + { + "id": "72578", + "name": "Paisanos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.20361000", + "longitude": "-101.03583000" + }, + { + "id": "72586", + "name": "Palma Pegada", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.71046000", + "longitude": "-101.79187000" + }, + { + "id": "72590", + "name": "Palmar Primero", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.37079000", + "longitude": "-101.09827000" + }, + { + "id": "72611", + "name": "Palo Seco (El Gato)", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.35417000", + "longitude": "-100.19194000" + }, + { + "id": "72613", + "name": "Palomas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.48124000", + "longitude": "-99.84922000" + }, + { + "id": "72651", + "name": "Pardo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.88379000", + "longitude": "-100.85617000" + }, + { + "id": "72676", + "name": "Paso Blanco", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.20611000", + "longitude": "-101.07056000" + }, + { + "id": "72677", + "name": "Paso Bonito", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.32528000", + "longitude": "-101.26167000" + }, + { + "id": "72702", + "name": "Pastora", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.13595000", + "longitude": "-100.05691000" + }, + { + "id": "72727", + "name": "Pemucho", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.19738000", + "longitude": "-98.83015000" + }, + { + "id": "72730", + "name": "Peotillos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.49386000", + "longitude": "-100.61128000" + }, + { + "id": "72760", + "name": "Picholco", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.38797000", + "longitude": "-98.85338000" + }, + { + "id": "72848", + "name": "Ponciano Arriaga", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.26222000", + "longitude": "-98.58972000" + }, + { + "id": "72856", + "name": "Portezuelo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.16980000", + "longitude": "-100.82559000" + }, + { + "id": "72877", + "name": "Pozuelos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.08943000", + "longitude": "-101.11523000" + }, + { + "id": "72913", + "name": "Progreso", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.22833000", + "longitude": "-100.12806000" + }, + { + "id": "72980", + "name": "Puerto de Providencia", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.36528000", + "longitude": "-101.06556000" + }, + { + "id": "72984", + "name": "Pujal-Coy", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.17600000", + "longitude": "-98.50512000" + }, + { + "id": "73064", + "name": "Rancho Nuevo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.22216000", + "longitude": "-100.92287000" + }, + { + "id": "73081", + "name": "Rascón", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.97075000", + "longitude": "-99.25742000" + }, + { + "id": "73086", + "name": "Rayón", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.84329000", + "longitude": "-99.64258000" + }, + { + "id": "73090", + "name": "Real de Catorce", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.68996000", + "longitude": "-100.88676000" + }, + { + "id": "73138", + "name": "Rincón del Porvenir", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.32306000", + "longitude": "-101.17639000" + }, + { + "id": "73112", + "name": "Rinconada", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.25332000", + "longitude": "-100.94974000" + }, + { + "id": "73141", + "name": "Rioverde", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.93115000", + "longitude": "-99.99488000" + }, + { + "id": "73148", + "name": "Rodrigo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.89158000", + "longitude": "-100.95363000" + }, + { + "id": "73216", + "name": "Salinas de Hidalgo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.62795000", + "longitude": "-101.71417000" + }, + { + "id": "73217", + "name": "Salitral de Carrera", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.86605000", + "longitude": "-102.08305000" + }, + { + "id": "73467", + "name": "San Ciro de Acosta", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.65072000", + "longitude": "-99.81916000" + }, + { + "id": "73486", + "name": "San Diego", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.91692000", + "longitude": "-100.10100000" + }, + { + "id": "73537", + "name": "San Francisco", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.07479000", + "longitude": "-99.86001000" + }, + { + "id": "73562", + "name": "San Francisco Cuayalab", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.73260000", + "longitude": "-98.71754000" + }, + { + "id": "73666", + "name": "San Isidro", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.86600000", + "longitude": "-100.77506000" + }, + { + "id": "73844", + "name": "San José del Tapanco", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.77097000", + "longitude": "-99.90847000" + }, + { + "id": "74051", + "name": "San Luis Potosí", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.14982000", + "longitude": "-100.97916000" + }, + { + "id": "74092", + "name": "San Martín Chalchicuautla", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.37033000", + "longitude": "-98.65697000" + }, + { + "id": "74250", + "name": "San Nicolás", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.67740000", + "longitude": "-98.77778000" + }, + { + "id": "74265", + "name": "San Nicolás Tolentino", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.24898000", + "longitude": "-100.55240000" + }, + { + "id": "74505", + "name": "San Vicente Tancuayalab", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.71886000", + "longitude": "-98.58769000" + }, + { + "id": "74573", + "name": "Santa Catarina", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.65624000", + "longitude": "-99.49548000" + }, + { + "id": "74818", + "name": "Santa María del Río", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.79615000", + "longitude": "-100.73815000" + }, + { + "id": "74697", + "name": "Santa Martha", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.34278000", + "longitude": "-98.70639000" + }, + { + "id": "74828", + "name": "Santa Rita", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.98168000", + "longitude": "-99.84412000" + }, + { + "id": "74887", + "name": "Santiago Centro", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.20528000", + "longitude": "-98.86361000" + }, + { + "id": "74995", + "name": "Santo Domingo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.28325000", + "longitude": "-100.16965000" + }, + { + "id": "75046", + "name": "Sauz de Calera", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.86729000", + "longitude": "-102.18755000" + }, + { + "id": "75153", + "name": "Sánchez", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.78709000", + "longitude": "-100.69615000" + }, + { + "id": "75105", + "name": "Socavón (El Carmen)", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.85139000", + "longitude": "-100.87184000" + }, + { + "id": "75117", + "name": "Soledad de Graciano Sánchez", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.18912000", + "longitude": "-100.93792000" + }, + { + "id": "75150", + "name": "Suspiro Picacho", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21103000", + "longitude": "-101.08597000" + }, + { + "id": "75175", + "name": "Tamasopo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.92426000", + "longitude": "-99.39365000" + }, + { + "id": "75184", + "name": "Tamazunchale", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.25993000", + "longitude": "-98.78935000" + }, + { + "id": "75196", + "name": "Tamán", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.23216000", + "longitude": "-98.87945000" + }, + { + "id": "75198", + "name": "Tamápatz", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.56654000", + "longitude": "-99.07764000" + }, + { + "id": "75185", + "name": "Tambaca", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.96083000", + "longitude": "-99.30106000" + }, + { + "id": "75186", + "name": "Tamcuime", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.60137000", + "longitude": "-99.01077000" + }, + { + "id": "75188", + "name": "Tampacán", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.40201000", + "longitude": "-98.72819000" + }, + { + "id": "75189", + "name": "Tampate", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.63639000", + "longitude": "-99.02552000" + }, + { + "id": "75190", + "name": "Tampemoche", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.68943000", + "longitude": "-99.08174000" + }, + { + "id": "75195", + "name": "Tamuín", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.00554000", + "longitude": "-98.77972000" + }, + { + "id": "75202", + "name": "Tancanhuitz", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.59790000", + "longitude": "-98.96773000" + }, + { + "id": "75206", + "name": "Tandzumadz", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.56528000", + "longitude": "-98.98028000" + }, + { + "id": "75217", + "name": "Tanquián de Escobedo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.60587000", + "longitude": "-98.66275000" + }, + { + "id": "75220", + "name": "Tanute", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.65243000", + "longitude": "-99.03765000" + }, + { + "id": "75251", + "name": "Tazaquil", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.49111000", + "longitude": "-98.94000000" + }, + { + "id": "75324", + "name": "Temalacaco", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.41389000", + "longitude": "-98.84694000" + }, + { + "id": "75363", + "name": "Tenexio", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.37667000", + "longitude": "-98.87944000" + }, + { + "id": "75555", + "name": "Tierra Nueva", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.66904000", + "longitude": "-100.57287000" + }, + { + "id": "75623", + "name": "Tlacuilola", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.23750000", + "longitude": "-98.86806000" + }, + { + "id": "75647", + "name": "Tlalnepantla", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.18000000", + "longitude": "-98.84611000" + }, + { + "id": "75716", + "name": "Tocoy", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.63861000", + "longitude": "-98.87083000" + }, + { + "id": "75936", + "name": "Vanegas", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "23.88459000", + "longitude": "-100.95148000" + }, + { + "id": "76066", + "name": "Villa de Ramos", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.83045000", + "longitude": "-101.91079000" + }, + { + "id": "76067", + "name": "Villa de Reyes", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.80309000", + "longitude": "-100.93418000" + }, + { + "id": "76011", + "name": "Villa Hidalgo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.45049000", + "longitude": "-100.67827000" + }, + { + "id": "76058", + "name": "Villa Zaragoza", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03716000", + "longitude": "-100.73088000" + }, + { + "id": "76144", + "name": "Xilitla", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.38681000", + "longitude": "-98.99009000" + }, + { + "id": "76232", + "name": "Yerbabuena", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.68586000", + "longitude": "-100.76728000" + }, + { + "id": "76292", + "name": "Zamachihue", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "22.50986000", + "longitude": "-99.65620000" + }, + { + "id": "76314", + "name": "Zapuyo", + "state_id": 3461, + "state_code": "SLP", + "country_id": 142, + "country_code": "MX", + "latitude": "21.35472000", + "longitude": "-98.92139000" + }, + { + "id": "68092", + "name": "Adolfo López Mateos (El Tamarindo)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.89639000", + "longitude": "-107.63278000" + }, + { + "id": "68096", + "name": "Adolfo Ruíz Cortínes", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.75000000", + "longitude": "-108.75000000" + }, + { + "id": "68094", + "name": "Adolfo Ruiz Cortines", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.70275000", + "longitude": "-108.71975000" + }, + { + "id": "68109", + "name": "Agua Caliente Grande (De Gastélum)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.53762000", + "longitude": "-108.34814000" + }, + { + "id": "68117", + "name": "Agua Verde", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.89259000", + "longitude": "-105.97355000" + }, + { + "id": "68131", + "name": "Ahome", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.91985000", + "longitude": "-109.17320000" + }, + { + "id": "68192", + "name": "Alfonso G. Calderón (Poblado Siete)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.06528000", + "longitude": "-109.01972000" + }, + { + "id": "68193", + "name": "Alfonso G. Calderón Velarde", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.78556000", + "longitude": "-108.60222000" + }, + { + "id": "68200", + "name": "Alfredo V. Bonfil (Siete Ejidos)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.64306000", + "longitude": "-108.23333000" + }, + { + "id": "68202", + "name": "Alhuey", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.37806000", + "longitude": "-108.13028000" + }, + { + "id": "68225", + "name": "Altata", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.63403000", + "longitude": "-107.93101000" + }, + { + "id": "68274", + "name": "Angostura", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.36586000", + "longitude": "-108.16107000" + }, + { + "id": "68311", + "name": "Apoderado", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.90867000", + "longitude": "-105.92458000" + }, + { + "id": "68478", + "name": "Baburia", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.84289000", + "longitude": "-108.20276000" + }, + { + "id": "68488", + "name": "Bachigualatito", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.71344000", + "longitude": "-107.46938000" + }, + { + "id": "68489", + "name": "Bachoco", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.69687000", + "longitude": "-108.81437000" + }, + { + "id": "68490", + "name": "Bachomobampo Número Dos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.73888000", + "longitude": "-109.14776000" + }, + { + "id": "68493", + "name": "Bacorehuis", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.31749000", + "longitude": "-109.08510000" + }, + { + "id": "68494", + "name": "Bacubirito", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.80944000", + "longitude": "-107.91500000" + }, + { + "id": "68495", + "name": "Badiraguato", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.36525000", + "longitude": "-107.55083000" + }, + { + "id": "68496", + "name": "Bagojo Colectivo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.87417000", + "longitude": "-109.11778000" + }, + { + "id": "68509", + "name": "Bamoa", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.70523000", + "longitude": "-108.34614000" + }, + { + "id": "68517", + "name": "Bariometo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.76695000", + "longitude": "-107.66254000" + }, + { + "id": "68561", + "name": "Barrón", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.12322000", + "longitude": "-106.27650000" + }, + { + "id": "68580", + "name": "Bellavista", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.81373000", + "longitude": "-107.46188000" + }, + { + "id": "68600", + "name": "Benito Juárez", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.77373000", + "longitude": "-109.03311000" + }, + { + "id": "68604", + "name": "Benito Juárez (Vinatería)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.97376000", + "longitude": "-108.87315000" + }, + { + "id": "68658", + "name": "Buen Retiro (El Retiro)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.46194000", + "longitude": "-108.47833000" + }, + { + "id": "68711", + "name": "Cacalotán", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.06779000", + "longitude": "-105.84194000" + }, + { + "id": "68720", + "name": "Caimanero", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.60564000", + "longitude": "-108.44247000" + }, + { + "id": "68774", + "name": "Campo Balbuena", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.74688000", + "longitude": "-107.54975000" + }, + { + "id": "68781", + "name": "Campo la Arrocera", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.84500000", + "longitude": "-108.91833000" + }, + { + "id": "68778", + "name": "Campo Pesquero el Colorado", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.75828000", + "longitude": "-109.31510000" + }, + { + "id": "68835", + "name": "Carricitos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.97595000", + "longitude": "-108.93130000" + }, + { + "id": "68847", + "name": "Casa Blanca", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.43036000", + "longitude": "-108.42308000" + }, + { + "id": "68700", + "name": "CERESO Nuevo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.89139000", + "longitude": "-109.04222000" + }, + { + "id": "68909", + "name": "Cerrillos (Campo 35)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.87806000", + "longitude": "-108.90139000" + }, + { + "id": "68920", + "name": "Cerro Agudo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.59796000", + "longitude": "-107.96310000" + }, + { + "id": "68941", + "name": "Ceuta", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.90042000", + "longitude": "-106.92847000" + }, + { + "id": "68966", + "name": "Chametla", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.87750000", + "longitude": "-105.95750000" + }, + { + "id": "68993", + "name": "Charay", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.02140000", + "longitude": "-108.83090000" + }, + { + "id": "69057", + "name": "Chihuahuita", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.15469000", + "longitude": "-109.05496000" + }, + { + "id": "69086", + "name": "Chinobampo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.39000000", + "longitude": "-108.36440000" + }, + { + "id": "69100", + "name": "Choix", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.70901000", + "longitude": "-108.32545000" + }, + { + "id": "69250", + "name": "Cofradía de Navolato (Cofradía de los Rocha)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.76806000", + "longitude": "-107.64806000" + }, + { + "id": "69266", + "name": "Colonia 24 de Febrero", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.64722000", + "longitude": "-108.64917000" + }, + { + "id": "69275", + "name": "Colonia Agrícola México (Palmitas)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.10972000", + "longitude": "-107.94472000" + }, + { + "id": "69328", + "name": "Colonia Michoacana", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.72476000", + "longitude": "-107.63201000" + }, + { + "id": "69431", + "name": "Concentración 5 de Febrero", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85639000", + "longitude": "-108.62944000" + }, + { + "id": "69444", + "name": "Concordia", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.28694000", + "longitude": "-106.06389000" + }, + { + "id": "69460", + "name": "Constancia", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.96219000", + "longitude": "-108.89937000" + }, + { + "id": "69479", + "name": "Corerepe", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.62786000", + "longitude": "-108.71488000" + }, + { + "id": "69496", + "name": "Cosalá", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.41501000", + "longitude": "-106.69073000" + }, + { + "id": "69506", + "name": "Costa Azul", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.10183000", + "longitude": "-108.13735000" + }, + { + "id": "69525", + "name": "Coyotitán", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.79416000", + "longitude": "-106.60080000" + }, + { + "id": "69534", + "name": "Cristo Rey", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.58167000", + "longitude": "-105.72444000" + }, + { + "id": "69542", + "name": "Cruz Blanca", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.67460000", + "longitude": "-108.37090000" + }, + { + "id": "69602", + "name": "Cubiri de Portelas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.78677000", + "longitude": "-108.25966000" + }, + { + "id": "69631", + "name": "Culiacancito", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.82538000", + "longitude": "-107.53445000" + }, + { + "id": "69632", + "name": "Culiacán", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.79032000", + "longitude": "-107.38782000" + }, + { + "id": "69668", + "name": "Dautillos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.72167000", + "longitude": "-107.97528000" + }, + { + "id": "69722", + "name": "Dos de Abril", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.91116000", + "longitude": "-108.94077000" + }, + { + "id": "69759", + "name": "Ejido Cajón Ojo de Agua Número Dos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.90000000", + "longitude": "-105.97139000" + }, + { + "id": "69760", + "name": "Ejido Cinco de Mayo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85055000", + "longitude": "-108.95932000" + }, + { + "id": "69761", + "name": "Ejido Cohuibampo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.94094000", + "longitude": "-109.15880000" + }, + { + "id": "69775", + "name": "Ejido Mayocoba", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.93824000", + "longitude": "-109.22130000" + }, + { + "id": "69781", + "name": "Ejido Ohuira", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.71663000", + "longitude": "-108.97850000" + }, + { + "id": "69796", + "name": "Ejido Tosalibampo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.98100000", + "longitude": "-109.11270000" + }, + { + "id": "69826", + "name": "El Aguajito", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.95965000", + "longitude": "-109.32970000" + }, + { + "id": "69851", + "name": "El Burrión", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.53878000", + "longitude": "-108.41286000" + }, + { + "id": "69885", + "name": "El Carrizo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.01416000", + "longitude": "-106.85196000" + }, + { + "id": "69888", + "name": "El Castillo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.54353000", + "longitude": "-107.70364000" + }, + { + "id": "69943", + "name": "El Diez", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.72389000", + "longitude": "-107.45194000" + }, + { + "id": "69945", + "name": "El Dorado", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.32283000", + "longitude": "-107.36298000" + }, + { + "id": "69970", + "name": "El Fuerte", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.41686000", + "longitude": "-108.61828000" + }, + { + "id": "69978", + "name": "El Guayabo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.94132000", + "longitude": "-109.13880000" + }, + { + "id": "69979", + "name": "El Habal", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.35014000", + "longitude": "-106.41834000" + }, + { + "id": "69984", + "name": "El Higueral", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.31044000", + "longitude": "-107.34800000" + }, + { + "id": "69985", + "name": "El Huajote", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.12889000", + "longitude": "-106.05889000" + }, + { + "id": "69990", + "name": "El Huitusi", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.50974000", + "longitude": "-108.77875000" + }, + { + "id": "70018", + "name": "El Limón de los Ramos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.91361000", + "longitude": "-107.52333000" + }, + { + "id": "70046", + "name": "El Molino", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.57147000", + "longitude": "-107.66483000" + }, + { + "id": "70064", + "name": "El Nio", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.62455000", + "longitude": "-108.40029000" + }, + { + "id": "70112", + "name": "El Pochotal", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.99541000", + "longitude": "-108.84355000" + }, + { + "id": "70127", + "name": "El Potrero de Sataya", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.69000000", + "longitude": "-107.70917000" + }, + { + "id": "70130", + "name": "El Pozole", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.91472000", + "longitude": "-105.91333000" + }, + { + "id": "70131", + "name": "El Progreso", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.43104000", + "longitude": "-108.59195000" + }, + { + "id": "70142", + "name": "El Quelite", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.55897000", + "longitude": "-106.46738000" + }, + { + "id": "70151", + "name": "El Refugio", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.99619000", + "longitude": "-109.29990000" + }, + { + "id": "70166", + "name": "El Roble", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.24556000", + "longitude": "-106.20583000" + }, + { + "id": "70176", + "name": "El Rosario", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.25556000", + "longitude": "-107.18278000" + }, + { + "id": "70180", + "name": "El Sabino", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.68325000", + "longitude": "-108.39349000" + }, + { + "id": "70184", + "name": "El Saladito", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.86987000", + "longitude": "-106.84784000" + }, + { + "id": "70249", + "name": "El Varal (San Sebastián Número Uno)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.64278000", + "longitude": "-108.42500000" + }, + { + "id": "70254", + "name": "El Verde", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.36461000", + "longitude": "-106.13514000" + }, + { + "id": "70259", + "name": "El Walamo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.14009000", + "longitude": "-106.24500000" + }, + { + "id": "70269", + "name": "Eldorado", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.32444000", + "longitude": "-107.36722000" + }, + { + "id": "70270", + "name": "Elota", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.03463000", + "longitude": "-106.84491000" + }, + { + "id": "70300", + "name": "Empaque Tarriba", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.90028000", + "longitude": "-106.93111000" + }, + { + "id": "70318", + "name": "Escamillas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.27217000", + "longitude": "-106.24670000" + }, + { + "id": "70322", + "name": "Escuinapa", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.83279000", + "longitude": "-105.77772000" + }, + { + "id": "70335", + "name": "Estación Capomas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.60066000", + "longitude": "-108.22333000" + }, + { + "id": "70336", + "name": "Estación Chimaneco", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.95430000", + "longitude": "-107.74913000" + }, + { + "id": "70348", + "name": "Estación Obispo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.29306000", + "longitude": "-107.15944000" + }, + { + "id": "70352", + "name": "Estación Rosales", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.83719000", + "longitude": "-107.58005000" + }, + { + "id": "70333", + "name": "Estacion Bamoa", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.70842000", + "longitude": "-108.31298000" + }, + { + "id": "70393", + "name": "Felipe Angeles", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.86763000", + "longitude": "-109.04080000" + }, + { + "id": "70403", + "name": "Flor Azul", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.86987000", + "longitude": "-109.00839000" + }, + { + "id": "70459", + "name": "Fraccionamiento los Ángeles", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.18833000", + "longitude": "-106.33000000" + }, + { + "id": "70503", + "name": "Gabriel Leyva Solano (Zapotillo Dos)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.88306000", + "longitude": "-109.00917000" + }, + { + "id": "70504", + "name": "Gabriel Leyva Velázquez", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.79111000", + "longitude": "-108.56333000" + }, + { + "id": "70517", + "name": "Gambino", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.65168000", + "longitude": "-108.38680000" + }, + { + "id": "70524", + "name": "Genaro Estrada", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.93611000", + "longitude": "-108.39639000" + }, + { + "id": "70547", + "name": "General Ángel Flores (La Palma)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.81917000", + "longitude": "-107.65667000" + }, + { + "id": "70557", + "name": "Goros Número Dos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.87694000", + "longitude": "-109.04417000" + }, + { + "id": "70600", + "name": "Guadalupe Victoria", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.29933000", + "longitude": "-107.27061000" + }, + { + "id": "70615", + "name": "Guamúchil", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.45870000", + "longitude": "-108.07732000" + }, + { + "id": "70620", + "name": "Guasave", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.56745000", + "longitude": "-108.46756000" + }, + { + "id": "70621", + "name": "Guasavito", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.55298000", + "longitude": "-108.43501000" + }, + { + "id": "70640", + "name": "Gustavo Díaz Ordaz", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.26692000", + "longitude": "-108.09486000" + }, + { + "id": "70666", + "name": "Heriberto Valdez Romero (El Guayabo)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.94056000", + "longitude": "-109.13722000" + }, + { + "id": "70694", + "name": "Higuera de los Vega", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.65500000", + "longitude": "-107.95778000" + }, + { + "id": "70693", + "name": "Higuera de Zaragoza", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.96892000", + "longitude": "-109.30420000" + }, + { + "id": "70695", + "name": "Higueras de Abuya", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.26058000", + "longitude": "-107.07090000" + }, + { + "id": "70696", + "name": "Higueras de los Natoches", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.95653000", + "longitude": "-108.97741000" + }, + { + "id": "70769", + "name": "Huepaco", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.98417000", + "longitude": "-108.86056000" + }, + { + "id": "70887", + "name": "Isla del Bosque", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.73306000", + "longitude": "-105.84556000" + }, + { + "id": "71016", + "name": "Javier Rojo Gómez", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.49472000", + "longitude": "-108.37750000" + }, + { + "id": "71029", + "name": "Jesús María", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.08897000", + "longitude": "-107.45220000" + }, + { + "id": "71060", + "name": "Jitzamuri", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.21508000", + "longitude": "-109.26330000" + }, + { + "id": "71114", + "name": "Juan Aldama (El Tigre)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.93972000", + "longitude": "-107.82083000" + }, + { + "id": "71121", + "name": "Juan José Ríos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.75781000", + "longitude": "-108.82420000" + }, + { + "id": "71186", + "name": "La Brecha", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.37078000", + "longitude": "-108.41922000" + }, + { + "id": "71230", + "name": "La Concepción", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.39450000", + "longitude": "-106.16890000" + }, + { + "id": "71241", + "name": "La Concha (La Concepción)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.53250000", + "longitude": "-105.45250000" + }, + { + "id": "71250", + "name": "La Cruz", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.92126000", + "longitude": "-106.89250000" + }, + { + "id": "71259", + "name": "La Despensa", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.99137000", + "longitude": "-109.27274000" + }, + { + "id": "71274", + "name": "La Esperanza", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.34872000", + "longitude": "-108.18678000" + }, + { + "id": "71367", + "name": "La Loma (La Loma de Quila)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.38061000", + "longitude": "-107.22649000" + }, + { + "id": "71405", + "name": "La Noria", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.70909000", + "longitude": "-108.49185000" + }, + { + "id": "71408", + "name": "La Noria de San Antonio", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.50653000", + "longitude": "-106.31459000" + }, + { + "id": "71424", + "name": "La Palma", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.38286000", + "longitude": "-108.15909000" + }, + { + "id": "71430", + "name": "La Palmita y Anexos (La Presita)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.90917000", + "longitude": "-107.45194000" + }, + { + "id": "71458", + "name": "La Presita", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.70734000", + "longitude": "-108.58523000" + }, + { + "id": "71475", + "name": "La Reforma", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.08164000", + "longitude": "-108.05673000" + }, + { + "id": "71509", + "name": "La Trinidad", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.73367000", + "longitude": "-108.48409000" + }, + { + "id": "71543", + "name": "Ladrilleras de Ocoro", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.59806000", + "longitude": "-108.44944000" + }, + { + "id": "71572", + "name": "Las Aguamitas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.57556000", + "longitude": "-107.80056000" + }, + { + "id": "71575", + "name": "Las Arenitas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.37245000", + "longitude": "-107.53612000" + }, + { + "id": "71580", + "name": "Las Brisas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.49022000", + "longitude": "-108.24587000" + }, + { + "id": "71592", + "name": "Las Compuertas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.84202000", + "longitude": "-109.01980000" + }, + { + "id": "71600", + "name": "Las Grullas Margen Derecha", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.87770000", + "longitude": "-109.33773000" + }, + { + "id": "71601", + "name": "Las Grullas Margen Izquierda", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85306000", + "longitude": "-109.32917000" + }, + { + "id": "71625", + "name": "Las Moras", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.65745000", + "longitude": "-108.45807000" + }, + { + "id": "71635", + "name": "Las Quemazones", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.68583000", + "longitude": "-108.45243000" + }, + { + "id": "71892", + "name": "Lázaro Cárdenas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.04918000", + "longitude": "-108.79858000" + }, + { + "id": "71665", + "name": "Leyva Solano", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.66163000", + "longitude": "-108.63700000" + }, + { + "id": "71675", + "name": "Licenciado Benito Juárez (Campo Gobierno)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.65667000", + "longitude": "-107.54500000" + }, + { + "id": "71686", + "name": "Llano Grande", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.75187000", + "longitude": "-108.08636000" + }, + { + "id": "71700", + "name": "Lo de Jesús (Campo Romero)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.68000000", + "longitude": "-107.54556000" + }, + { + "id": "71770", + "name": "Los Angeles", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.60289000", + "longitude": "-108.48095000" + }, + { + "id": "71816", + "name": "Los Mochis", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.79302000", + "longitude": "-108.99808000" + }, + { + "id": "71837", + "name": "Los Pozos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.00944000", + "longitude": "-106.15250000" + }, + { + "id": "71902", + "name": "Macapule", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.88607000", + "longitude": "-109.14820000" + }, + { + "id": "71988", + "name": "Marcol", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.49445000", + "longitude": "-108.51586000" + }, + { + "id": "71994", + "name": "Maripa", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.86371000", + "longitude": "-108.15737000" + }, + { + "id": "72047", + "name": "Mazatlán", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.23290000", + "longitude": "-106.40620000" + }, + { + "id": "72068", + "name": "Melchor Ocampo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.04699000", + "longitude": "-107.89463000" + }, + { + "id": "72083", + "name": "Mesillas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.24652000", + "longitude": "-106.04783000" + }, + { + "id": "72136", + "name": "Miguel Valdez Quintero (El Corazón)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.49417000", + "longitude": "-107.31778000" + }, + { + "id": "72171", + "name": "Mochicahui", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.95095000", + "longitude": "-108.92991000" + }, + { + "id": "72172", + "name": "Mochis", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.82720000", + "longitude": "-109.05120000" + }, + { + "id": "72176", + "name": "Mocorito", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.48202000", + "longitude": "-107.92008000" + }, + { + "id": "72282", + "name": "Naranjo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.80633000", + "longitude": "-108.48127000" + }, + { + "id": "72298", + "name": "Navolato", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.76610000", + "longitude": "-107.70225000" + }, + { + "id": "72412", + "name": "Nuevo San Miguel", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.96306000", + "longitude": "-109.05401000" + }, + { + "id": "72493", + "name": "Ojo de Agua de Palmillas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.61972000", + "longitude": "-105.60389000" + }, + { + "id": "72516", + "name": "Orba (Infiernito)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.68944000", + "longitude": "-108.36278000" + }, + { + "id": "72533", + "name": "Oso Viejo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.39944000", + "longitude": "-107.17139000" + }, + { + "id": "72603", + "name": "Palmito del Verde", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.65861000", + "longitude": "-105.77111000" + }, + { + "id": "72617", + "name": "Palos Verdes", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.37937000", + "longitude": "-108.45831000" + }, + { + "id": "72733", + "name": "Pericos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.08093000", + "longitude": "-107.69966000" + }, + { + "id": "72757", + "name": "Piaxtla de Abajo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.83254000", + "longitude": "-106.65923000" + }, + { + "id": "72789", + "name": "Pitahayal", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.47076000", + "longitude": "-108.36818000" + }, + { + "id": "72801", + "name": "Plan de Ayala (Campo Cinco)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.76910000", + "longitude": "-109.04121000" + }, + { + "id": "72828", + "name": "Poblado Número Cinco", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.22250000", + "longitude": "-109.06167000" + }, + { + "id": "72853", + "name": "Portaceli", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.34809000", + "longitude": "-107.30594000" + }, + { + "id": "72857", + "name": "Portugués de Gálvez", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.72780000", + "longitude": "-108.39572000" + }, + { + "id": "72863", + "name": "Potrerillo del Norote", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.02143000", + "longitude": "-106.97397000" + }, + { + "id": "72866", + "name": "Potrero de los Sánchez (Estación Techa)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.11000000", + "longitude": "-107.90111000" + }, + { + "id": "72901", + "name": "Primero de Mayo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.73942000", + "longitude": "-108.93491000" + }, + { + "id": "72942", + "name": "Pueblo Nuevo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.99111000", + "longitude": "-106.95639000" + }, + { + "id": "72950", + "name": "Pueblo Viejo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.61413000", + "longitude": "-108.41581000" + }, + { + "id": "72954", + "name": "Pueblos Unidos", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.29250000", + "longitude": "-107.15139000" + }, + { + "id": "73031", + "name": "Quila", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.42362000", + "longitude": "-107.22186000" + }, + { + "id": "73054", + "name": "Ranchito de Castro", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.58688000", + "longitude": "-108.41767000" + }, + { + "id": "73092", + "name": "Recoveco", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.99356000", + "longitude": "-107.72796000" + }, + { + "id": "73110", + "name": "Ricardo Flores Magón", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.74056000", + "longitude": "-108.99583000" + }, + { + "id": "73208", + "name": "Salado", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.50775000", + "longitude": "-107.15872000" + }, + { + "id": "73444", + "name": "San Blas", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "26.08019000", + "longitude": "-108.76110000" + }, + { + "id": "73488", + "name": "San Diego", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.38250000", + "longitude": "-107.33135000" + }, + { + "id": "73614", + "name": "San Francisco de Tacuichamona", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.36160000", + "longitude": "-107.07630000" + }, + { + "id": "73647", + "name": "San Ignacio", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.94105000", + "longitude": "-106.42467000" + }, + { + "id": "73669", + "name": "San Isidro", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.97722000", + "longitude": "-109.25111000" + }, + { + "id": "74225", + "name": "San Miguel Zapotitlan", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.94831000", + "longitude": "-109.04738000" + }, + { + "id": "74337", + "name": "San Pedro Guasave", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.53809000", + "longitude": "-108.45673000" + }, + { + "id": "74428", + "name": "San Rafael", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.49390000", + "longitude": "-108.30527000" + }, + { + "id": "74514", + "name": "Sanalona", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.80222000", + "longitude": "-107.14000000" + }, + { + "id": "75090", + "name": "Sinaloa", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.94103000", + "longitude": "-108.09076000" + }, + { + "id": "75091", + "name": "Sinaloa de Leyva", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.82190000", + "longitude": "-108.22261000" + }, + { + "id": "75096", + "name": "Siqueros", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.34177000", + "longitude": "-106.24124000" + }, + { + "id": "75179", + "name": "Tamazula", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.44639000", + "longitude": "-108.45528000" + }, + { + "id": "75216", + "name": "Tanques", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.06349000", + "longitude": "-107.01360000" + }, + { + "id": "75247", + "name": "Taxtes", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.91625000", + "longitude": "-108.93545000" + }, + { + "id": "75255", + "name": "Teacapan", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.53959000", + "longitude": "-105.73623000" + }, + { + "id": "75290", + "name": "Tecualilla", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "22.76667000", + "longitude": "-105.67167000" + }, + { + "id": "75746", + "name": "Topolobampo", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.60084000", + "longitude": "-109.05230000" + }, + { + "id": "75773", + "name": "Tres Garantías", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.88567000", + "longitude": "-108.71837000" + }, + { + "id": "75932", + "name": "Vallejo (Porvenir Vallejo)", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "25.88278000", + "longitude": "-109.07361000" + }, + { + "id": "76062", + "name": "Villa de Costa Rica", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.59167000", + "longitude": "-107.38836000" + }, + { + "id": "76023", + "name": "Villa Juárez", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "24.65869000", + "longitude": "-107.54059000" + }, + { + "id": "76052", + "name": "Villa Unión", + "state_id": 3449, + "state_code": "SIN", + "country_id": 142, + "country_code": "MX", + "latitude": "23.18992000", + "longitude": "-106.21947000" + }, + { + "id": "68009", + "name": "31 de Octubre", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.29583000", + "longitude": "-110.03750000" + }, + { + "id": "68064", + "name": "Aconchi", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.82628000", + "longitude": "-110.22492000" + }, + { + "id": "68097", + "name": "Aduana del Sásabe", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.47076000", + "longitude": "-111.54608000" + }, + { + "id": "68098", + "name": "Agiabampo Uno", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.36686000", + "longitude": "-109.14572000" + }, + { + "id": "68115", + "name": "Agua Prieta", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.33071000", + "longitude": "-109.54876000" + }, + { + "id": "68207", + "name": "Allende", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.19201000", + "longitude": "-109.90730000" + }, + { + "id": "68280", + "name": "Antonio Rosales", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.35111000", + "longitude": "-109.85306000" + }, + { + "id": "68352", + "name": "Arivechi", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.92765000", + "longitude": "-109.18681000" + }, + { + "id": "68353", + "name": "Arizpe", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.33690000", + "longitude": "-110.16649000" + }, + { + "id": "68405", + "name": "Atil", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.84361000", + "longitude": "-111.58361000" + }, + { + "id": "76392", + "name": "Álamos", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.02326000", + "longitude": "-108.93440000" + }, + { + "id": "68480", + "name": "Bacabachi", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.89471000", + "longitude": "-109.39320000" + }, + { + "id": "68482", + "name": "Bacadéhuachi", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.80872000", + "longitude": "-109.14054000" + }, + { + "id": "68484", + "name": "Bacame Nuevo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.15899000", + "longitude": "-109.59286000" + }, + { + "id": "68485", + "name": "Bacanora", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.98152000", + "longitude": "-109.40012000" + }, + { + "id": "68486", + "name": "Bacerac", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.35565000", + "longitude": "-108.93147000" + }, + { + "id": "68492", + "name": "Bacobampo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.98239000", + "longitude": "-109.65350000" + }, + { + "id": "68500", + "name": "Bahía de Kino", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.82278000", + "longitude": "-111.94083000" + }, + { + "id": "68501", + "name": "Bahía de Lobos", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.35167000", + "longitude": "-110.45472000" + }, + { + "id": "68564", + "name": "Basconcobe", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.95491000", + "longitude": "-109.66860000" + }, + { + "id": "68568", + "name": "Bavispe", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.47931000", + "longitude": "-108.93982000" + }, + { + "id": "68695", + "name": "Bácum", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.55142000", + "longitude": "-110.08330000" + }, + { + "id": "68607", + "name": "Benjamín Hill", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.16904000", + "longitude": "-111.11403000" + }, + { + "id": "68654", + "name": "Buaysiacobe", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.06795000", + "longitude": "-109.68628000" + }, + { + "id": "68655", + "name": "Buayums", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.86336000", + "longitude": "-109.43427000" + }, + { + "id": "68775", + "name": "Campo Carretero", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.77154000", + "longitude": "-110.85380000" + }, + { + "id": "68779", + "name": "Campo Sesenta", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.45000000", + "longitude": "-110.10000000" + }, + { + "id": "68784", + "name": "Cananea", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.98699000", + "longitude": "-110.29062000" + }, + { + "id": "68816", + "name": "Carbo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.68306000", + "longitude": "-110.95619000" + }, + { + "id": "68902", + "name": "Centro de Readaptación Social Nuevo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.18444000", + "longitude": "-110.96778000" + }, + { + "id": "69110", + "name": "Chucarit", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.03157000", + "longitude": "-109.58421000" + }, + { + "id": "69174", + "name": "Ciudad Obregón", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.48642000", + "longitude": "-109.94083000" + }, + { + "id": "69238", + "name": "Cocorit", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.57519000", + "longitude": "-109.95910000" + }, + { + "id": "69585", + "name": "Cuauhtémoc (Campo Cinco)", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.43333000", + "longitude": "-110.01667000" + }, + { + "id": "69608", + "name": "Cucurpe", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.33049000", + "longitude": "-110.70609000" + }, + { + "id": "69635", + "name": "Cumpas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.99587000", + "longitude": "-109.78087000" + }, + { + "id": "69772", + "name": "Ejido Lagunitas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "32.31956000", + "longitude": "-114.89568000" + }, + { + "id": "69932", + "name": "El Coyote", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.82877000", + "longitude": "-112.61531000" + }, + { + "id": "69942", + "name": "El Diamante (La Retranca)", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.84556000", + "longitude": "-112.63972000" + }, + { + "id": "70093", + "name": "El Paredoncito", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.05920000", + "longitude": "-109.91286000" + }, + { + "id": "70146", + "name": "El Recodo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.07722000", + "longitude": "-109.52750000" + }, + { + "id": "70169", + "name": "El Rodeo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.01482000", + "longitude": "-109.64254000" + }, + { + "id": "70183", + "name": "El Sahuaral", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.92633000", + "longitude": "-109.66643000" + }, + { + "id": "70196", + "name": "El Saneal", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.91150000", + "longitude": "-109.38817000" + }, + { + "id": "70208", + "name": "El Siviral (Jigica)", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.10222000", + "longitude": "-109.50083000" + }, + { + "id": "70231", + "name": "El Tobarito", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.37057000", + "longitude": "-109.89379000" + }, + { + "id": "70298", + "name": "Empalme", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.96166000", + "longitude": "-110.81411000" + }, + { + "id": "70329", + "name": "Esperanza", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.57916000", + "longitude": "-109.92980000" + }, + { + "id": "70332", + "name": "Esqueda", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.72412000", + "longitude": "-109.58930000" + }, + { + "id": "70340", + "name": "Estación Corral", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.62889000", + "longitude": "-109.96611000" + }, + { + "id": "70346", + "name": "Estación Llano", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.36149000", + "longitude": "-111.10381000" + }, + { + "id": "70358", + "name": "Estación Zamora", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.26116000", + "longitude": "-110.88653000" + }, + { + "id": "70374", + "name": "Etchojoa", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.91094000", + "longitude": "-109.62610000" + }, + { + "id": "70375", + "name": "Etchoropo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.76727000", + "longitude": "-109.68236000" + }, + { + "id": "70472", + "name": "Francisco Javier Mina", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.46217000", + "longitude": "-110.10893000" + }, + { + "id": "70494", + "name": "Fronteras", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.89753000", + "longitude": "-109.55968000" + }, + { + "id": "70553", + "name": "Golfo de Santa Clara", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.68689000", + "longitude": "-114.49797000" + }, + { + "id": "70563", + "name": "Granados", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.86195000", + "longitude": "-109.31016000" + }, + { + "id": "70626", + "name": "Guaymitas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.11028000", + "longitude": "-109.43833000" + }, + { + "id": "70644", + "name": "Guásimas (De Belem)", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.88583000", + "longitude": "-110.58167000" + }, + { + "id": "70672", + "name": "Hermosillo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.10260000", + "longitude": "-110.97732000" + }, + { + "id": "70675", + "name": "Heroica Caborca", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.71825000", + "longitude": "-112.15822000" + }, + { + "id": "70679", + "name": "Heroica Guaymas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.91928000", + "longitude": "-110.89755000" + }, + { + "id": "70716", + "name": "Huachinera", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.21027000", + "longitude": "-108.95854000" + }, + { + "id": "70740", + "name": "Huatabampo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.82610000", + "longitude": "-109.64220000" + }, + { + "id": "70825", + "name": "Huásabas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.90772000", + "longitude": "-109.30098000" + }, + { + "id": "70826", + "name": "Huépac", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.91135000", + "longitude": "-110.21323000" + }, + { + "id": "70867", + "name": "Imuris", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.78955000", + "longitude": "-110.84596000" + }, + { + "id": "70890", + "name": "Islita", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "32.38312000", + "longitude": "-114.86864000" + }, + { + "id": "71017", + "name": "Jecopaco", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.19831000", + "longitude": "-109.76946000" + }, + { + "id": "71058", + "name": "Jitonhueca", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.06167000", + "longitude": "-109.60500000" + }, + { + "id": "71107", + "name": "José María Morelos y Pavón", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.09786000", + "longitude": "-110.69030000" + }, + { + "id": "71141", + "name": "Juraré", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.80191000", + "longitude": "-109.70198000" + }, + { + "id": "71184", + "name": "La Bocana", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.88711000", + "longitude": "-109.66797000" + }, + { + "id": "71222", + "name": "La Colorada", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.80348000", + "longitude": "-110.57994000" + }, + { + "id": "71356", + "name": "La Libertad", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.91313000", + "longitude": "-112.69179000" + }, + { + "id": "71390", + "name": "La Mesa", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.15972000", + "longitude": "-110.97444000" + }, + { + "id": "71426", + "name": "La Palma", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.05028000", + "longitude": "-110.70111000" + }, + { + "id": "71461", + "name": "La Providencia", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.72268000", + "longitude": "-111.58687000" + }, + { + "id": "71521", + "name": "La Unión", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.81961000", + "longitude": "-109.60831000" + }, + { + "id": "71534", + "name": "La Victoria", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.12215000", + "longitude": "-110.89080000" + }, + { + "id": "71578", + "name": "Las Bocas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.58821000", + "longitude": "-109.33622000" + }, + { + "id": "71621", + "name": "Las Mercedes [Agropecuaria]", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.36389000", + "longitude": "-110.95167000" + }, + { + "id": "71725", + "name": "Loma de Bácum", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.58707000", + "longitude": "-110.08601000" + }, + { + "id": "71727", + "name": "Loma de Guamúchil", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.61157000", + "longitude": "-109.98730000" + }, + { + "id": "71738", + "name": "Loma del Refugio", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.12194000", + "longitude": "-109.45917000" + }, + { + "id": "71776", + "name": "Los Bahuises", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.11667000", + "longitude": "-109.46722000" + }, + { + "id": "71806", + "name": "Los Hoyos", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.12444000", + "longitude": "-109.78222000" + }, + { + "id": "71934", + "name": "Magdalena de Kino", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.62789000", + "longitude": "-110.96203000" + }, + { + "id": "72001", + "name": "Marte R. Gómez (Tobarito)", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.36778000", + "longitude": "-109.88583000" + }, + { + "id": "72008", + "name": "Masiaca", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.76427000", + "longitude": "-109.23496000" + }, + { + "id": "72050", + "name": "Mazatán", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.00503000", + "longitude": "-110.13785000" + }, + { + "id": "72113", + "name": "Mi Patria es Primero", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.05122000", + "longitude": "-110.67780000" + }, + { + "id": "72124", + "name": "Miguel Alemán (La Doce)", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.84028000", + "longitude": "-111.47750000" + }, + { + "id": "72140", + "name": "Milpillas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.20534000", + "longitude": "-108.64493000" + }, + { + "id": "72178", + "name": "Moctezuma", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.80615000", + "longitude": "-109.67949000" + }, + { + "id": "72184", + "name": "Molino de Camou", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.20409000", + "longitude": "-110.75768000" + }, + { + "id": "72222", + "name": "Mora Villalobos", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.51145000", + "longitude": "-110.05610000" + }, + { + "id": "72239", + "name": "Moroncarit", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.73307000", + "longitude": "-109.61676000" + }, + { + "id": "72266", + "name": "Naco", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.32701000", + "longitude": "-109.94669000" + }, + { + "id": "72268", + "name": "Nacozari de García", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.37489000", + "longitude": "-109.68898000" + }, + { + "id": "72267", + "name": "Nacozari Viejo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.40000000", + "longitude": "-109.65000000" + }, + { + "id": "72297", + "name": "Navojoa", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.07028000", + "longitude": "-109.44372000" + }, + { + "id": "72429", + "name": "Nácori Chico", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.68726000", + "longitude": "-108.98020000" + }, + { + "id": "72340", + "name": "Nogales", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.30862000", + "longitude": "-110.94217000" + }, + { + "id": "72394", + "name": "Nuevo Michoacán (Estación Riíto)", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "32.16611000", + "longitude": "-114.96167000" + }, + { + "id": "72509", + "name": "Onavas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.46083000", + "longitude": "-109.53013000" + }, + { + "id": "72513", + "name": "Opodepe", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.92573000", + "longitude": "-110.62933000" + }, + { + "id": "72515", + "name": "Oquitoa", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.74197000", + "longitude": "-111.73463000" + }, + { + "id": "72531", + "name": "Ortiz", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.28786000", + "longitude": "-110.71410000" + }, + { + "id": "72655", + "name": "Paredón Colorado", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.07929000", + "longitude": "-109.93363000" + }, + { + "id": "72739", + "name": "Pesqueira", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.37972000", + "longitude": "-110.89611000" + }, + { + "id": "72790", + "name": "Pitiquito", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.67663000", + "longitude": "-112.05466000" + }, + { + "id": "72819", + "name": "Plutarco Elías Calles (La Y Griega)", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.80194000", + "longitude": "-112.71833000" + }, + { + "id": "72859", + "name": "Potam", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.62600000", + "longitude": "-110.41580000" + }, + { + "id": "72871", + "name": "Pozo Dulce", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.84506000", + "longitude": "-109.75350000" + }, + { + "id": "72900", + "name": "Primero de Mayo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.38825000", + "longitude": "-110.12163000" + }, + { + "id": "72916", + "name": "Progreso (Campo 47)", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.34028000", + "longitude": "-110.09361000" + }, + { + "id": "72921", + "name": "Providencia", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.51219000", + "longitude": "-109.99080000" + }, + { + "id": "72935", + "name": "Pueblo Mayo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.20361000", + "longitude": "-109.55500000" + }, + { + "id": "72953", + "name": "Pueblo Yaqui", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.35521000", + "longitude": "-110.03444000" + }, + { + "id": "72973", + "name": "Puerto Peñasco", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.31716000", + "longitude": "-113.53799000" + }, + { + "id": "73022", + "name": "Querobabi", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.05062000", + "longitude": "-111.02649000" + }, + { + "id": "73027", + "name": "Quetchehueca", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.26365000", + "longitude": "-109.94920000" + }, + { + "id": "73041", + "name": "Quiriego", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.51987000", + "longitude": "-109.25233000" + }, + { + "id": "73088", + "name": "Rayón", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.71195000", + "longitude": "-110.56749000" + }, + { + "id": "73160", + "name": "Rosales", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.13294000", + "longitude": "-109.43843000" + }, + { + "id": "73162", + "name": "Rosario", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.84111000", + "longitude": "-109.36806000" + }, + { + "id": "73201", + "name": "Sahuaral de Otero", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.88487000", + "longitude": "-109.73175000" + }, + { + "id": "73202", + "name": "Sahuaripa", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.05408000", + "longitude": "-109.23399000" + }, + { + "id": "73439", + "name": "San Bernardo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.39909000", + "longitude": "-108.84440000" + }, + { + "id": "73461", + "name": "San Carlos", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.95749000", + "longitude": "-111.04354000" + }, + { + "id": "73649", + "name": "San Ignacio", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.69695000", + "longitude": "-110.92207000" + }, + { + "id": "73653", + "name": "San Ignacio Río Muerto", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.41656000", + "longitude": "-110.24584000" + }, + { + "id": "73810", + "name": "San José de Bacum", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.51477000", + "longitude": "-110.14308000" + }, + { + "id": "73821", + "name": "San José de Guaymas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.98644000", + "longitude": "-110.88064000" + }, + { + "id": "74052", + "name": "San Luis Río Colorado", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "32.45612000", + "longitude": "-114.77186000" + }, + { + "id": "74230", + "name": "San Miguel de Horcasitas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.48737000", + "longitude": "-110.72479000" + }, + { + "id": "74405", + "name": "San Pedro de la Cueva", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.28684000", + "longitude": "-109.73696000" + }, + { + "id": "74370", + "name": "San Pedro Río Mayo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.02094000", + "longitude": "-109.63198000" + }, + { + "id": "74521", + "name": "Santa Ana", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.54075000", + "longitude": "-111.11888000" + }, + { + "id": "74612", + "name": "Santa Cruz", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.23362000", + "longitude": "-110.59618000" + }, + { + "id": "74806", + "name": "Santa María de Guaymas", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.14255000", + "longitude": "-110.69301000" + }, + { + "id": "74810", + "name": "Santa María del Buáraje", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.30118000", + "longitude": "-109.80256000" + }, + { + "id": "75154", + "name": "Sáric", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.10328000", + "longitude": "-111.37931000" + }, + { + "id": "75088", + "name": "Sinahuiza", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.91105000", + "longitude": "-109.43901000" + }, + { + "id": "75104", + "name": "Siviral", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.10145000", + "longitude": "-109.50236000" + }, + { + "id": "75121", + "name": "Sonoita", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "31.86165000", + "longitude": "-112.85129000" + }, + { + "id": "75134", + "name": "Soyopa", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.76424000", + "longitude": "-109.63453000" + }, + { + "id": "75135", + "name": "Suaqui Grande", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "28.39383000", + "longitude": "-109.88798000" + }, + { + "id": "75388", + "name": "Tepache", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.53275000", + "longitude": "-109.53134000" + }, + { + "id": "75544", + "name": "Tierra Blanca", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.18773000", + "longitude": "-109.34514000" + }, + { + "id": "75786", + "name": "Tubutama", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.88458000", + "longitude": "-111.46514000" + }, + { + "id": "75890", + "name": "Ures", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.42708000", + "longitude": "-110.38760000" + }, + { + "id": "75969", + "name": "Vicam", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.64354000", + "longitude": "-110.29351000" + }, + { + "id": "75975", + "name": "Vicente Guerrero", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.53786000", + "longitude": "-109.97697000" + }, + { + "id": "76014", + "name": "Villa Hidalgo", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "30.16183000", + "longitude": "-109.32154000" + }, + { + "id": "76021", + "name": "Villa Juárez", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "27.12851000", + "longitude": "-109.83921000" + }, + { + "id": "76040", + "name": "Villa Pesqueira", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "29.11813000", + "longitude": "-109.96753000" + }, + { + "id": "76222", + "name": "Yavaros", + "state_id": 3468, + "state_code": "SON", + "country_id": 142, + "country_code": "MX", + "latitude": "26.70483000", + "longitude": "-109.52103000" + }, + { + "id": "68022", + "name": "Acachapan y Colmena 3ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.04858000", + "longitude": "-92.77750000" + }, + { + "id": "68233", + "name": "Amado Gómez", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14684000", + "longitude": "-93.35618000" + }, + { + "id": "68265", + "name": "Anacleto Canabal 2da. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97556000", + "longitude": "-93.02417000" + }, + { + "id": "68266", + "name": "Anacleto Canabal 3ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01830000", + "longitude": "-92.98992000" + }, + { + "id": "68269", + "name": "Andrés Quintana Roo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.70771000", + "longitude": "-93.01077000" + }, + { + "id": "68299", + "name": "Apatzingán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.60803000", + "longitude": "-91.06687000" + }, + { + "id": "68318", + "name": "Aquiles Serdán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78333000", + "longitude": "-92.28333000" + }, + { + "id": "68324", + "name": "Aquiles Serdán (San Fernando)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80556000", + "longitude": "-92.48972000" + }, + { + "id": "68325", + "name": "Aquiles Serdán 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.82474000", + "longitude": "-92.73977000" + }, + { + "id": "68343", + "name": "Arena 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.20139000", + "longitude": "-93.36694000" + }, + { + "id": "68344", + "name": "Arena 6ta. Sección (La Bolsa)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16218000", + "longitude": "-93.39539000" + }, + { + "id": "68345", + "name": "Arena de Hidalgo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.45827000", + "longitude": "-91.58847000" + }, + { + "id": "68361", + "name": "Arroyo Hondo Abejonal", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97739000", + "longitude": "-93.41039000" + }, + { + "id": "68382", + "name": "Astapa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78165000", + "longitude": "-92.84938000" + }, + { + "id": "68460", + "name": "Ayapa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22410000", + "longitude": "-93.11158000" + }, + { + "id": "76402", + "name": "Álvaro Obregón (Santa Cruz)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.39422000", + "longitude": "-92.79982000" + }, + { + "id": "76403", + "name": "Álvaro Obregón 2da. Sección (El Lechugal)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.39287000", + "longitude": "-92.79119000" + }, + { + "id": "68507", + "name": "Balancán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80903000", + "longitude": "-91.53682000" + }, + { + "id": "68512", + "name": "Banderas (Guatacalca 2da. Sección)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15167000", + "longitude": "-92.89881000" + }, + { + "id": "68521", + "name": "Barrancas y Amate 3ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97100000", + "longitude": "-92.76173000" + }, + { + "id": "68582", + "name": "Belén", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78907000", + "longitude": "-92.61137000" + }, + { + "id": "68587", + "name": "Benito González", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.86993000", + "longitude": "-92.70834000" + }, + { + "id": "68591", + "name": "Benito Juárez", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.42573000", + "longitude": "-92.80285000" + }, + { + "id": "68603", + "name": "Benito Juárez (La Playita)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93231000", + "longitude": "-93.36472000" + }, + { + "id": "68613", + "name": "Betania", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28003000", + "longitude": "-93.32081000" + }, + { + "id": "68618", + "name": "Blasillo 1ra. Sección (Nicolás Bravo)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07861000", + "longitude": "-93.91833000" + }, + { + "id": "68637", + "name": "Boquiapa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16111000", + "longitude": "-93.13750000" + }, + { + "id": "68643", + "name": "Bosque de Saloya", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01611000", + "longitude": "-92.95806000" + }, + { + "id": "68651", + "name": "Brisas del Carrizal", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01556000", + "longitude": "-92.97083000" + }, + { + "id": "68663", + "name": "Buena Vista (Apasco)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65556000", + "longitude": "-92.44389000" + }, + { + "id": "68664", + "name": "Buena Vista (Puxcatán)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.73073000", + "longitude": "-92.61996000" + }, + { + "id": "68665", + "name": "Buena Vista 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14417000", + "longitude": "-92.74972000" + }, + { + "id": "68668", + "name": "Buenavista", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.91667000", + "longitude": "-92.53333000" + }, + { + "id": "68697", + "name": "C-32 (Licenciado Francisco Trujillo Gurría)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96833000", + "longitude": "-93.50139000" + }, + { + "id": "68698", + "name": "C-41 (Licenciado Carlos A. Madrazo)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.92306000", + "longitude": "-93.44806000" + }, + { + "id": "68802", + "name": "Caobanal 1ra. Sección (Mezcalapa)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.64858000", + "longitude": "-93.39464000" + }, + { + "id": "68805", + "name": "Caparroso", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34500000", + "longitude": "-92.80361000" + }, + { + "id": "68806", + "name": "Capitán Felipe Castellanos Díaz (San Pedro)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.77306000", + "longitude": "-91.14750000" + }, + { + "id": "69659", + "name": "Cárdenas", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00135000", + "longitude": "-93.37559000" + }, + { + "id": "69663", + "name": "Cúlico 2da. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14116000", + "longitude": "-93.13222000" + }, + { + "id": "68889", + "name": "Ceiba 1ra. Sección (Jahuactal)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06222000", + "longitude": "-93.11306000" + }, + { + "id": "68898", + "name": "Centro", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98633000", + "longitude": "-92.88674000" + }, + { + "id": "68943", + "name": "Chablé", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.85895000", + "longitude": "-91.78130000" + }, + { + "id": "69021", + "name": "Chichicapa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.26228000", + "longitude": "-93.18210000" + }, + { + "id": "69023", + "name": "Chichicastle 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30417000", + "longitude": "-92.43139000" + }, + { + "id": "69106", + "name": "Chontalpa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.66614000", + "longitude": "-93.48115000" + }, + { + "id": "69175", + "name": "Ciudad Pemex", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88268000", + "longitude": "-92.48406000" + }, + { + "id": "69237", + "name": "Cocohital", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.39527000", + "longitude": "-93.34527000" + }, + { + "id": "69418", + "name": "Comalcalco", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.26316000", + "longitude": "-93.22397000" + }, + { + "id": "69464", + "name": "Constitución", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07278000", + "longitude": "-92.87194000" + }, + { + "id": "69493", + "name": "Corriente 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15767000", + "longitude": "-92.99372000" + }, + { + "id": "69609", + "name": "Cucuyulapa Primera Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.99082000", + "longitude": "-93.25619000" + }, + { + "id": "69637", + "name": "Cumuapa 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98519000", + "longitude": "-93.13806000" + }, + { + "id": "69640", + "name": "Cunduacán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06557000", + "longitude": "-93.17302000" + }, + { + "id": "69644", + "name": "Cupilco", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23947000", + "longitude": "-93.12767000" + }, + { + "id": "69718", + "name": "Dos Ceibas", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.04112000", + "longitude": "-93.03561000" + }, + { + "id": "69719", + "name": "Dos Montes", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98774000", + "longitude": "-92.82832000" + }, + { + "id": "69838", + "name": "El Bajío", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98173000", + "longitude": "-92.78229000" + }, + { + "id": "69844", + "name": "El Bellote (Miguel de la Madrid)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.42528000", + "longitude": "-93.15083000" + }, + { + "id": "69891", + "name": "El Cedro", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02699000", + "longitude": "-92.94760000" + }, + { + "id": "69918", + "name": "El Congo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.82522000", + "longitude": "-92.43887000" + }, + { + "id": "69946", + "name": "El Dorado", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88323000", + "longitude": "-93.36788000" + }, + { + "id": "69958", + "name": "El Escribano", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41028000", + "longitude": "-93.22167000" + }, + { + "id": "70148", + "name": "El Recreo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28058000", + "longitude": "-93.09285000" + }, + { + "id": "70227", + "name": "El Tigre", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10194000", + "longitude": "-92.94194000" + }, + { + "id": "70232", + "name": "El Tortuguero", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.31413000", + "longitude": "-93.28499000" + }, + { + "id": "70234", + "name": "El Triunfo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.92241000", + "longitude": "-91.16946000" + }, + { + "id": "70239", + "name": "El Tular", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15429000", + "longitude": "-93.33820000" + }, + { + "id": "70302", + "name": "Encrucijada 3ra. Sección (Las Calzadas)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25491000", + "longitude": "-93.55619000" + }, + { + "id": "70368", + "name": "Estapilla", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.54491000", + "longitude": "-91.40503000" + }, + { + "id": "70380", + "name": "Eureka y Belén", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.55968000", + "longitude": "-92.92899000" + }, + { + "id": "70430", + "name": "Fraccionamiento Ocuiltzapotlán Dos", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10889000", + "longitude": "-92.86778000" + }, + { + "id": "70464", + "name": "Francisco I. Madero", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34047000", + "longitude": "-93.20999000" + }, + { + "id": "70474", + "name": "Francisco Rueda", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.82917000", + "longitude": "-93.93389000" + }, + { + "id": "70490", + "name": "Frontera", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54326000", + "longitude": "-92.64530000" + }, + { + "id": "70523", + "name": "Gaviotas Sur (El Cedral)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.95373000", + "longitude": "-92.89071000" + }, + { + "id": "70539", + "name": "General Luis Felipe Domínguez Suárez", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65639000", + "longitude": "-91.53667000" + }, + { + "id": "70551", + "name": "Gobernador Cruz", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43364000", + "longitude": "-92.87180000" + }, + { + "id": "70552", + "name": "Gobernadores", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24694000", + "longitude": "-93.18528000" + }, + { + "id": "70566", + "name": "Gregorio Méndez", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19639000", + "longitude": "-93.10222000" + }, + { + "id": "70622", + "name": "Guatacalca", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16599000", + "longitude": "-92.97871000" + }, + { + "id": "70627", + "name": "Guaytalpa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21727000", + "longitude": "-93.03235000" + }, + { + "id": "70649", + "name": "Habanero 1ra. Sección (Venustiano Carranza)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96778000", + "longitude": "-93.32806000" + }, + { + "id": "70670", + "name": "Hermenegildo Galeana 2da. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17054000", + "longitude": "-93.13508000" + }, + { + "id": "70713", + "name": "Huacapa y Amestoy", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.05377000", + "longitude": "-93.19694000" + }, + { + "id": "70735", + "name": "Huapacal 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.92667000", + "longitude": "-93.76639000" + }, + { + "id": "70736", + "name": "Huapacal 2da. Sección (Punta Brava)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19722000", + "longitude": "-93.17194000" + }, + { + "id": "70737", + "name": "Huapinol", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.92285000", + "longitude": "-92.91090000" + }, + { + "id": "70795", + "name": "Huimanguillo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.83366000", + "longitude": "-93.38926000" + }, + { + "id": "70835", + "name": "Ignacio Allende", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.38299000", + "longitude": "-92.84418000" + }, + { + "id": "70841", + "name": "Ignacio Gutiérrez Gómez", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24948000", + "longitude": "-93.39748000" + }, + { + "id": "70854", + "name": "Ignacio Zaragoza", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40139000", + "longitude": "-92.95944000" + }, + { + "id": "70859", + "name": "Ignacio Zaragoza 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33157000", + "longitude": "-93.33508000" + }, + { + "id": "70874", + "name": "Iquinuapa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19583000", + "longitude": "-93.12056000" + }, + { + "id": "70965", + "name": "Jalapa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.72168000", + "longitude": "-92.81272000" + }, + { + "id": "70968", + "name": "Jalapita", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41506000", + "longitude": "-92.99483000" + }, + { + "id": "70977", + "name": "Jalpa de Méndez", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17633000", + "longitude": "-93.06300000" + }, + { + "id": "70994", + "name": "Jalupa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13687000", + "longitude": "-93.04534000" + }, + { + "id": "71048", + "name": "Jiménez", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16043000", + "longitude": "-92.93336000" + }, + { + "id": "71072", + "name": "Jolochero 2da. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.12000000", + "longitude": "-92.79833000" + }, + { + "id": "71081", + "name": "Jonuta", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.08984000", + "longitude": "-92.13807000" + }, + { + "id": "71089", + "name": "José Colomo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.94691000", + "longitude": "-92.46659000" + }, + { + "id": "71209", + "name": "La Ceiba", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14436000", + "longitude": "-92.77805000" + }, + { + "id": "71256", + "name": "La Curva", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.86604000", + "longitude": "-92.48814000" + }, + { + "id": "71265", + "name": "La Escalera", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.84361000", + "longitude": "-92.52556000" + }, + { + "id": "71287", + "name": "La Estrella", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60302000", + "longitude": "-92.58256000" + }, + { + "id": "71358", + "name": "La Lima", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.91056000", + "longitude": "-92.93389000" + }, + { + "id": "71370", + "name": "La Lucha", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.18069000", + "longitude": "-93.32176000" + }, + { + "id": "71388", + "name": "La Manga 2da. Sección (El Jobal)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01917000", + "longitude": "-92.86944000" + }, + { + "id": "71417", + "name": "La Palma", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97980000", + "longitude": "-92.80555000" + }, + { + "id": "71440", + "name": "La Península", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.94347000", + "longitude": "-93.36148000" + }, + { + "id": "71499", + "name": "La Sábana", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.44461000", + "longitude": "-92.88411000" + }, + { + "id": "71487", + "name": "La Selva", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02333000", + "longitude": "-92.96306000" + }, + { + "id": "71518", + "name": "La Unión", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.84839000", + "longitude": "-92.49628000" + }, + { + "id": "71531", + "name": "La Victoria", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59102000", + "longitude": "-92.63284000" + }, + { + "id": "71546", + "name": "Lagartera 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06277000", + "longitude": "-92.88563000" + }, + { + "id": "71669", + "name": "Libertad", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.41027000", + "longitude": "-92.71502000" + }, + { + "id": "71761", + "name": "Lomitas", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06434000", + "longitude": "-92.96201000" + }, + { + "id": "71786", + "name": "Los Cenotes", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.63461000", + "longitude": "-91.03759000" + }, + { + "id": "71859", + "name": "Los Sauces", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.03335000", + "longitude": "-92.91693000" + }, + { + "id": "71881", + "name": "Luis Gil Pérez", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.87541000", + "longitude": "-93.07124000" + }, + { + "id": "71910", + "name": "Mactún", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.58980000", + "longitude": "-91.29298000" + }, + { + "id": "71912", + "name": "Macultepec", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15026000", + "longitude": "-92.86092000" + }, + { + "id": "71913", + "name": "Macuspana", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.76052000", + "longitude": "-92.59539000" + }, + { + "id": "72044", + "name": "Mazateupa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.20217000", + "longitude": "-93.00933000" + }, + { + "id": "72054", + "name": "Mecatepec", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88988000", + "longitude": "-93.52498000" + }, + { + "id": "72059", + "name": "Mecoacán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23855000", + "longitude": "-93.08187000" + }, + { + "id": "72060", + "name": "Mecoacán 2da. Sección (San Lorenzo)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27790000", + "longitude": "-93.09095000" + }, + { + "id": "72063", + "name": "Medellín y Madero Segunda Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.11351000", + "longitude": "-92.85400000" + }, + { + "id": "72070", + "name": "Melchor Ocampo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.03694000", + "longitude": "-93.36250000" + }, + { + "id": "72127", + "name": "Miguel Hidalgo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25691000", + "longitude": "-93.31073000" + }, + { + "id": "72133", + "name": "Miguel Hidalgo 2da. Sección B (La Natividad)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07861000", + "longitude": "-93.35056000" + }, + { + "id": "72200", + "name": "Monte Grande", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93541000", + "longitude": "-92.26444000" + }, + { + "id": "72203", + "name": "Monte Largo 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.83567000", + "longitude": "-92.60664000" + }, + { + "id": "72235", + "name": "Morelos Piedra 3ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14389000", + "longitude": "-93.22000000" + }, + { + "id": "72252", + "name": "Multé", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.68850000", + "longitude": "-91.37944000" + }, + { + "id": "72264", + "name": "Nacajuca", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16971000", + "longitude": "-93.01843000" + }, + { + "id": "72313", + "name": "Netzahualcóyotl", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.71086000", + "longitude": "-91.44322000" + }, + { + "id": "72321", + "name": "Nicolás Bravo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15504000", + "longitude": "-93.08304000" + }, + { + "id": "72326", + "name": "Nicolás Bravo 5ta. Sección (Punta Brava)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27827000", + "longitude": "-93.12872000" + }, + { + "id": "72356", + "name": "Norte 1ra. Sección (San Julián)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30139000", + "longitude": "-93.20944000" + }, + { + "id": "72363", + "name": "Nueva División del Bayo (Guatemala)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.84000000", + "longitude": "-92.48889000" + }, + { + "id": "72416", + "name": "Nuevo Torno Largo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43228000", + "longitude": "-93.16443000" + }, + { + "id": "72443", + "name": "Occidente (San Francisco)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33130000", + "longitude": "-93.25238000" + }, + { + "id": "72444", + "name": "Occidente 4ta. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30347000", + "longitude": "-93.23388000" + }, + { + "id": "72469", + "name": "Ocuapan", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.85430000", + "longitude": "-93.48978000" + }, + { + "id": "72499", + "name": "Olcuatitán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19045000", + "longitude": "-92.96114000" + }, + { + "id": "72521", + "name": "Oriente 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33889000", + "longitude": "-93.20056000" + }, + { + "id": "72522", + "name": "Oriente 1ra. Sección (Santo Domingo)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.26417000", + "longitude": "-93.20306000" + }, + { + "id": "72523", + "name": "Oriente 2da. Sección (Palma Huaca)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.32917000", + "longitude": "-93.18528000" + }, + { + "id": "72524", + "name": "Oriente 2da. Sección (San Cayetano)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.18667000", + "longitude": "-93.22944000" + }, + { + "id": "72525", + "name": "Oriente 6ta. Sección (Los Mulatos)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16722000", + "longitude": "-93.23583000" + }, + { + "id": "72549", + "name": "Oxiacaque", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21386000", + "longitude": "-92.94674000" + }, + { + "id": "72553", + "name": "Oxolotán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.37947000", + "longitude": "-92.74933000" + }, + { + "id": "72565", + "name": "Pablo L. Sidar", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.90028000", + "longitude": "-93.02917000" + }, + { + "id": "72610", + "name": "Palo Mulato", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02035000", + "longitude": "-93.76943000" + }, + { + "id": "72614", + "name": "Palomas", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.65466000", + "longitude": "-92.47800000" + }, + { + "id": "72642", + "name": "Paraiso", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40116000", + "longitude": "-93.21406000" + }, + { + "id": "72656", + "name": "Parilla", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.91552000", + "longitude": "-92.91612000" + }, + { + "id": "72662", + "name": "Parrilla II", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.87900000", + "longitude": "-92.92235000" + }, + { + "id": "72694", + "name": "Paso de la Mina 2da. Sección (Barrial)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.95278000", + "longitude": "-93.69083000" + }, + { + "id": "72695", + "name": "Paso de la Mina 3ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96335000", + "longitude": "-93.66582000" + }, + { + "id": "73012", + "name": "Pénjamo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43444000", + "longitude": "-93.09306000" + }, + { + "id": "72718", + "name": "Pechucalco", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.09361000", + "longitude": "-93.16611000" + }, + { + "id": "72719", + "name": "Pechucalco 2da. Sección (Las Cruces)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.12694000", + "longitude": "-93.19056000" + }, + { + "id": "72726", + "name": "Pejelagartero 1ra. Sección (Plataforma)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.05500000", + "longitude": "-93.82472000" + }, + { + "id": "72816", + "name": "Playas del Rosario", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.85308000", + "longitude": "-92.93219000" + }, + { + "id": "72821", + "name": "Poblado C-11 José María Morelos y Pavón", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17419000", + "longitude": "-93.62356000" + }, + { + "id": "72822", + "name": "Poblado C-21 Licenciado Benito Juárez García", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06778000", + "longitude": "-93.56139000" + }, + { + "id": "72823", + "name": "Poblado C-33 20 de Noviembre", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96750000", + "longitude": "-93.56500000" + }, + { + "id": "72845", + "name": "Pomoca", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.04972000", + "longitude": "-92.93056000" + }, + { + "id": "72862", + "name": "Potrerillo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25472000", + "longitude": "-93.13472000" + }, + { + "id": "72946", + "name": "Pueblo Nuevo de las Raíces", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.84572000", + "longitude": "-92.87930000" + }, + { + "id": "72947", + "name": "Pueblo Viejo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19990000", + "longitude": "-93.08546000" + }, + { + "id": "72967", + "name": "Puerto Ceiba", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41081000", + "longitude": "-93.17890000" + }, + { + "id": "73004", + "name": "Puxcatán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.45083000", + "longitude": "-92.68712000" + }, + { + "id": "73040", + "name": "Quintín Arauz", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37275000", + "longitude": "-93.21879000" + }, + { + "id": "73062", + "name": "Rancho Nuevo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07201000", + "longitude": "-93.07252000" + }, + { + "id": "73083", + "name": "Raya Zaragoza", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.40595000", + "longitude": "-92.68519000" + }, + { + "id": "73187", + "name": "Río de Teapa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78342000", + "longitude": "-92.90033000" + }, + { + "id": "73183", + "name": "Río Seco 2da. Sección (Santiaguito)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13750000", + "longitude": "-93.27583000" + }, + { + "id": "73186", + "name": "Río Viejo Primera Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93913000", + "longitude": "-92.98022000" + }, + { + "id": "73093", + "name": "Reforma", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21398000", + "longitude": "-93.34291000" + }, + { + "id": "73221", + "name": "Saloya 2da. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.05306000", + "longitude": "-92.93639000" + }, + { + "id": "73235", + "name": "Samarkanda", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.04216000", + "longitude": "-92.91050000" + }, + { + "id": "73456", + "name": "San Carlos", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.55221000", + "longitude": "-91.15408000" + }, + { + "id": "74482", + "name": "San Simón", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23687000", + "longitude": "-93.03416000" + }, + { + "id": "74854", + "name": "Santa Rosalía", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.08851000", + "longitude": "-93.35806000" + }, + { + "id": "74864", + "name": "Santana 2da. Sección B (La Palma)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17505000", + "longitude": "-93.43180000" + }, + { + "id": "75041", + "name": "Sargento López 2da. Sección (El Chuzo)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19953000", + "longitude": "-93.29235000" + }, + { + "id": "75086", + "name": "Simón Sarlat", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34447000", + "longitude": "-92.80811000" + }, + { + "id": "75132", + "name": "Soyataco", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.20995000", + "longitude": "-93.07430000" + }, + { + "id": "75160", + "name": "Tacotalpa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.59638000", + "longitude": "-92.82596000" + }, + { + "id": "75194", + "name": "Tamulte de las Sabanas", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16168000", + "longitude": "-92.78354000" + }, + { + "id": "75226", + "name": "Tapijulapa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.46208000", + "longitude": "-92.77908000" + }, + { + "id": "75228", + "name": "Tapotzingo", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.20443000", + "longitude": "-93.01421000" + }, + { + "id": "75245", + "name": "Taxco", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13917000", + "longitude": "-93.00528000" + }, + { + "id": "75256", + "name": "Teapa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.54970000", + "longitude": "-92.95211000" + }, + { + "id": "75278", + "name": "Tecoluta 2da. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24408000", + "longitude": "-93.01956000" + }, + { + "id": "75284", + "name": "Tecominoacán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.92122000", + "longitude": "-93.56318000" + }, + { + "id": "75370", + "name": "Tenosique", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.47290000", + "longitude": "-91.42360000" + }, + { + "id": "75421", + "name": "Tepetitán", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.81987000", + "longitude": "-92.37269000" + }, + { + "id": "75460", + "name": "Tequila 1ra. Sección (La Aurora)", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88000000", + "longitude": "-92.72306000" + }, + { + "id": "75766", + "name": "Transito Tular", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33849000", + "longitude": "-93.40283000" + }, + { + "id": "75770", + "name": "Tres Bocas 1ra. Sección", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93231000", + "longitude": "-93.87444000" + }, + { + "id": "75787", + "name": "Tucta", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19346000", + "longitude": "-92.99535000" + }, + { + "id": "75944", + "name": "Veinte de Noviembre", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.84699000", + "longitude": "-92.58910000" + }, + { + "id": "75971", + "name": "Vicente Guerrero", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51323000", + "longitude": "-92.92236000" + }, + { + "id": "75990", + "name": "Villa Aldama", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24088000", + "longitude": "-93.35068000" + }, + { + "id": "76075", + "name": "Villa la Venta", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.09863000", + "longitude": "-94.04593000" + }, + { + "id": "76046", + "name": "Villa Tecolutilla", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28338000", + "longitude": "-93.33398000" + }, + { + "id": "76054", + "name": "Villa Vicente Guerrero", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "18.39007000", + "longitude": "-92.89607000" + }, + { + "id": "76080", + "name": "Villahermosa", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98689000", + "longitude": "-92.93028000" + }, + { + "id": "76142", + "name": "Xicoténcatl", + "state_id": 3454, + "state_code": "TAB", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51833000", + "longitude": "-92.70474000" + }, + { + "id": "68012", + "name": "Abasolo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.05844000", + "longitude": "-98.37333000" + }, + { + "id": "68184", + "name": "Aldama", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.92157000", + "longitude": "-98.07519000" + }, + { + "id": "68196", + "name": "Alfredo V. Bonfil", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.56203000", + "longitude": "-98.23952000" + }, + { + "id": "68221", + "name": "Altamira", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.39215000", + "longitude": "-97.93867000" + }, + { + "id": "68284", + "name": "Anáhuac", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.77638000", + "longitude": "-97.77413000" + }, + { + "id": "68277", + "name": "Antiguo Morelos", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.54950000", + "longitude": "-99.08123000" + }, + { + "id": "68522", + "name": "Barretal", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.08337000", + "longitude": "-99.12526000" + }, + { + "id": "68692", + "name": "Burgos", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.94722000", + "longitude": "-98.79921000" + }, + { + "id": "68693", + "name": "Bustamante", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.43524000", + "longitude": "-99.75875000" + }, + { + "id": "68759", + "name": "Camargo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.23130000", + "longitude": "-98.85019000" + }, + { + "id": "68818", + "name": "Carboneras", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.62766000", + "longitude": "-97.71755000" + }, + { + "id": "68839", + "name": "Carrillo Puerto", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.43139000", + "longitude": "-97.96417000" + }, + { + "id": "68852", + "name": "Casas", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.72686000", + "longitude": "-98.73662000" + }, + { + "id": "68699", + "name": "CEFERESO Número 3", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.84722000", + "longitude": "-97.63333000" + }, + { + "id": "69147", + "name": "Ciudad Camargo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.31437000", + "longitude": "-98.83378000" + }, + { + "id": "69159", + "name": "Ciudad Gustavo Díaz Ordaz", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.23186000", + "longitude": "-98.59560000" + }, + { + "id": "69166", + "name": "Ciudad Madero", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.27228000", + "longitude": "-97.83623000" + }, + { + "id": "69167", + "name": "Ciudad Mante", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.74304000", + "longitude": "-98.97390000" + }, + { + "id": "69171", + "name": "Ciudad Miguel Alemán", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.39952000", + "longitude": "-99.02836000" + }, + { + "id": "69176", + "name": "Ciudad Río Bravo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.98729000", + "longitude": "-98.09414000" + }, + { + "id": "69182", + "name": "Ciudad Tula", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.99732000", + "longitude": "-99.71101000" + }, + { + "id": "69184", + "name": "Ciudad Victoria", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.74174000", + "longitude": "-99.14599000" + }, + { + "id": "69419", + "name": "Comales", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.18187000", + "longitude": "-98.92037000" + }, + { + "id": "69540", + "name": "Cruillas", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.75658000", + "longitude": "-98.53739000" + }, + { + "id": "69578", + "name": "Cuauhtémoc", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.54408000", + "longitude": "-98.15074000" + }, + { + "id": "69822", + "name": "El Abra", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.62058000", + "longitude": "-99.02142000" + }, + { + "id": "69839", + "name": "El Barrancón del Tío Blas (El Barrancón)", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.01556000", + "longitude": "-97.71694000" + }, + { + "id": "69859", + "name": "El Campanario y Oradel", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "27.47306000", + "longitude": "-99.62000000" + }, + { + "id": "69922", + "name": "El Control", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.95867000", + "longitude": "-97.81281000" + }, + { + "id": "69974", + "name": "El Galaneño", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.76091000", + "longitude": "-97.54507000" + }, + { + "id": "70016", + "name": "El Limón", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.82498000", + "longitude": "-99.00512000" + }, + { + "id": "70033", + "name": "El Mante", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.67241000", + "longitude": "-98.93820000" + }, + { + "id": "70145", + "name": "El Realito", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.66528000", + "longitude": "-97.87540000" + }, + { + "id": "70355", + "name": "Estación Santa Engracia", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.01528000", + "longitude": "-99.20194000" + }, + { + "id": "70371", + "name": "Esteros", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.52005000", + "longitude": "-98.12607000" + }, + { + "id": "70648", + "name": "Güémez", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.90693000", + "longitude": "-99.06872000" + }, + { + "id": "70555", + "name": "González", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.82735000", + "longitude": "-98.42713000" + }, + { + "id": "70558", + "name": "Graciano Sánchez", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.65430000", + "longitude": "-98.55467000" + }, + { + "id": "70595", + "name": "Guadalupe Victoria", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.08205000", + "longitude": "-98.23340000" + }, + { + "id": "70629", + "name": "Guemes", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.91865000", + "longitude": "-99.00609000" + }, + { + "id": "70632", + "name": "Guerrero", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.90952000", + "longitude": "-99.45995000" + }, + { + "id": "70635", + "name": "Guillermo Zúñiga", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.01548000", + "longitude": "-99.20074000" + }, + { + "id": "70641", + "name": "Gustavo Díaz Ordaz", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.16130000", + "longitude": "-98.64045000" + }, + { + "id": "70680", + "name": "Heroica Matamoros", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.87972000", + "longitude": "-97.50417000" + }, + { + "id": "70684", + "name": "Hidalgo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.24812000", + "longitude": "-99.43897000" + }, + { + "id": "71012", + "name": "Jaumave", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.40621000", + "longitude": "-99.38072000" + }, + { + "id": "71052", + "name": "Jiménez", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.26262000", + "longitude": "-98.49656000" + }, + { + "id": "71218", + "name": "La Colonia", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.43880000", + "longitude": "-98.01729000" + }, + { + "id": "71352", + "name": "La Libertad", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.79079000", + "longitude": "-99.19132000" + }, + { + "id": "71399", + "name": "La Misión", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.80326000", + "longitude": "-99.17025000" + }, + { + "id": "71438", + "name": "La Pedrera", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.39353000", + "longitude": "-97.88210000" + }, + { + "id": "71443", + "name": "La Pesca", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.78660000", + "longitude": "-97.77712000" + }, + { + "id": "71603", + "name": "Las Higuerillas", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.26222000", + "longitude": "-97.43611000" + }, + { + "id": "71889", + "name": "Lázaro Cárdenas", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.97090000", + "longitude": "-100.05357000" + }, + { + "id": "71901", + "name": "López Rayón", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.49758000", + "longitude": "-98.45979000" + }, + { + "id": "71698", + "name": "Llera", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.26609000", + "longitude": "-98.91836000" + }, + { + "id": "71699", + "name": "Llera de Canales", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.31774000", + "longitude": "-99.02608000" + }, + { + "id": "71759", + "name": "Lomas del Real", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.52052000", + "longitude": "-97.89913000" + }, + { + "id": "71775", + "name": "Los Aztecas", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.50093000", + "longitude": "-98.61417000" + }, + { + "id": "71784", + "name": "Los Cavazos", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.14803000", + "longitude": "-98.34508000" + }, + { + "id": "71805", + "name": "Los Guerra", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.39429000", + "longitude": "-99.07972000" + }, + { + "id": "71907", + "name": "Maclovio Herrera", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.50062000", + "longitude": "-98.08545000" + }, + { + "id": "71935", + "name": "Magdaleno Cedillo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.78882000", + "longitude": "-99.93799000" + }, + { + "id": "71940", + "name": "Mainero", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.58503000", + "longitude": "-99.56313000" + }, + { + "id": "72019", + "name": "Matamoros", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.72171000", + "longitude": "-97.60135000" + }, + { + "id": "72260", + "name": "Méndez", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.11819000", + "longitude": "-98.58666000" + }, + { + "id": "72121", + "name": "Mier", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.42969000", + "longitude": "-99.15212000" + }, + { + "id": "72123", + "name": "Miguel Alemán", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.26713000", + "longitude": "-99.06203000" + }, + { + "id": "72151", + "name": "Miquihuana", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.57575000", + "longitude": "-99.75438000" + }, + { + "id": "72154", + "name": "Miramar", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.36094000", + "longitude": "-97.89997000" + }, + { + "id": "72320", + "name": "Nicolás Bravo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.00180000", + "longitude": "-98.25927000" + }, + { + "id": "72360", + "name": "Nueva Apolonia", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.49743000", + "longitude": "-98.63103000" + }, + { + "id": "72361", + "name": "Nueva Ciudad Guerrero", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.56219000", + "longitude": "-99.22863000" + }, + { + "id": "72377", + "name": "Nueva Villa de Padilla", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.04784000", + "longitude": "-98.90085000" + }, + { + "id": "72383", + "name": "Nuevo Cereso Regional de Altamira", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.46056000", + "longitude": "-98.00833000" + }, + { + "id": "72390", + "name": "Nuevo Laredo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "27.47629000", + "longitude": "-99.51639000" + }, + { + "id": "72396", + "name": "Nuevo Morelos", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.53604000", + "longitude": "-99.21934000" + }, + { + "id": "72404", + "name": "Nuevo Progreso", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.05530000", + "longitude": "-97.95217000" + }, + { + "id": "72415", + "name": "Nuevo Tantoán", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.42623000", + "longitude": "-98.56834000" + }, + { + "id": "72436", + "name": "Ocampo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.84695000", + "longitude": "-99.33866000" + }, + { + "id": "72572", + "name": "Padilla", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.05571000", + "longitude": "-98.89671000" + }, + { + "id": "72597", + "name": "Palmillas", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.30225000", + "longitude": "-99.54896000" + }, + { + "id": "72799", + "name": "Plan de Ayala", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.54028000", + "longitude": "-98.76722000" + }, + { + "id": "72898", + "name": "Primero de Mayo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.96058000", + "longitude": "-98.94992000" + }, + { + "id": "73038", + "name": "Quintero", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.66289000", + "longitude": "-99.03584000" + }, + { + "id": "73050", + "name": "Ramírez", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.95180000", + "longitude": "-97.78558000" + }, + { + "id": "73170", + "name": "Río Bravo", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.83854000", + "longitude": "-98.03879000" + }, + { + "id": "73104", + "name": "Reynosa", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.08061000", + "longitude": "-98.28835000" + }, + { + "id": "73105", + "name": "Ricardo Flores Magón", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.45115000", + "longitude": "-97.90739000" + }, + { + "id": "73346", + "name": "San Antonio Rayón", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.42079000", + "longitude": "-98.41648000" + }, + { + "id": "73458", + "name": "San Carlos", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.58223000", + "longitude": "-98.94208000" + }, + { + "id": "73534", + "name": "San Fernando", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.84749000", + "longitude": "-98.14828000" + }, + { + "id": "73637", + "name": "San Germán", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.21681000", + "longitude": "-97.92186000" + }, + { + "id": "74249", + "name": "San Nicolás", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.69377000", + "longitude": "-98.83000000" + }, + { + "id": "74518", + "name": "Santa Adelaida", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.85414000", + "longitude": "-97.65216000" + }, + { + "id": "74562", + "name": "Santa Apolonia", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.64303000", + "longitude": "-97.98486000" + }, + { + "id": "74865", + "name": "Santander Jiménez", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.21682000", + "longitude": "-98.48433000" + }, + { + "id": "75127", + "name": "Soto la Marina", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.76953000", + "longitude": "-98.20442000" + }, + { + "id": "75191", + "name": "Tampico", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.29508000", + "longitude": "-97.93595000" + }, + { + "id": "75193", + "name": "Tampiquito", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.83333000", + "longitude": "-98.19469000" + }, + { + "id": "75790", + "name": "Tula", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.97028000", + "longitude": "-99.70257000" + }, + { + "id": "75879", + "name": "Unidos Avanzamos", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.43389000", + "longitude": "-97.97167000" + }, + { + "id": "75896", + "name": "Ursulo Galván", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.72779000", + "longitude": "-98.32191000" + }, + { + "id": "75905", + "name": "Valadeces", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "26.23176000", + "longitude": "-98.67726000" + }, + { + "id": "75914", + "name": "Valle Hermoso", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.67207000", + "longitude": "-97.81313000" + }, + { + "id": "75935", + "name": "Vamos Tamaulipas", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "25.98667000", + "longitude": "-98.22167000" + }, + { + "id": "75983", + "name": "Victoria", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "23.75836000", + "longitude": "-99.13489000" + }, + { + "id": "76033", + "name": "Villa Mainero", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.56007000", + "longitude": "-99.61561000" + }, + { + "id": "76078", + "name": "Villagrán", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "24.47264000", + "longitude": "-99.49107000" + }, + { + "id": "76143", + "name": "Xicoténcatl", + "state_id": 3463, + "state_code": "TAM", + "country_id": 142, + "country_code": "MX", + "latitude": "22.99623000", + "longitude": "-98.94218000" + }, + { + "id": "68066", + "name": "Acopinalco del Peñón", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65929000", + "longitude": "-98.16299000" + }, + { + "id": "68075", + "name": "Acuamanala", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22361000", + "longitude": "-98.20056000" + }, + { + "id": "68078", + "name": "Acuitlapilco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27333000", + "longitude": "-98.23542000" + }, + { + "id": "68085", + "name": "Acxotla del Monte", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25208000", + "longitude": "-98.16777000" + }, + { + "id": "68086", + "name": "Acxotla del Río", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32417000", + "longitude": "-98.23750000" + }, + { + "id": "68229", + "name": "Altzayanca", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43121000", + "longitude": "-97.79555000" + }, + { + "id": "68248", + "name": "Amaxac de Guerrero", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34661000", + "longitude": "-98.17057000" + }, + { + "id": "68306", + "name": "Apetatitlán Antonio Carbajal", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33622000", + "longitude": "-98.17912000" + }, + { + "id": "68308", + "name": "Apizaco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41333000", + "longitude": "-98.14358000" + }, + { + "id": "68403", + "name": "Atexcatzingo", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46882000", + "longitude": "-98.14716000" + }, + { + "id": "68415", + "name": "Atlangatepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53220000", + "longitude": "-98.20888000" + }, + { + "id": "68424", + "name": "Atlzayanca", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43111000", + "longitude": "-97.79556000" + }, + { + "id": "68462", + "name": "Ayometitla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20722000", + "longitude": "-98.19306000" + }, + { + "id": "68583", + "name": "Belén Atzitzimititlán", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34694000", + "longitude": "-98.19000000" + }, + { + "id": "68589", + "name": "Benito Juárez", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37391000", + "longitude": "-97.90900000" + }, + { + "id": "68747", + "name": "Calpulalpan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58867000", + "longitude": "-98.56972000" + }, + { + "id": "68809", + "name": "Capula", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53642000", + "longitude": "-98.04219000" + }, + { + "id": "69191", + "name": "Ciudad de Nanacamilpa", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49339000", + "longitude": "-98.53665000" + }, + { + "id": "69289", + "name": "Colonia Cuauhtémoc", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33182000", + "longitude": "-97.96487000" + }, + { + "id": "69312", + "name": "Colonia Ignacio Allende", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35667000", + "longitude": "-97.78389000" + }, + { + "id": "69364", + "name": "Colonia San Isidro", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41167000", + "longitude": "-98.11278000" + }, + { + "id": "69375", + "name": "Colonia Venustiano Carranza", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40005000", + "longitude": "-98.05822000" + }, + { + "id": "69435", + "name": "Concepción Chimalpa", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21639000", + "longitude": "-98.19806000" + }, + { + "id": "69437", + "name": "Concepción Hidalgo", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39810000", + "longitude": "-97.81951000" + }, + { + "id": "69468", + "name": "Contla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32932000", + "longitude": "-98.16640000" + }, + { + "id": "69561", + "name": "Cuapiaxtla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29588000", + "longitude": "-97.76880000" + }, + { + "id": "69597", + "name": "Cuaxomulco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35264000", + "longitude": "-98.09670000" + }, + { + "id": "69877", + "name": "El Carmen Aztama", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22972000", + "longitude": "-98.21944000" + }, + { + "id": "69879", + "name": "El Carmen Xalpatlahuaya", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39193000", + "longitude": "-97.98167000" + }, + { + "id": "70173", + "name": "El Rosario", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66109000", + "longitude": "-98.22892000" + }, + { + "id": "70279", + "name": "Emiliano Zapata", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55861000", + "longitude": "-97.91667000" + }, + { + "id": "70395", + "name": "Felipe Carrillo Puerto", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39922000", + "longitude": "-97.85520000" + }, + { + "id": "70454", + "name": "Fraccionamiento la Virgen", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32306000", + "longitude": "-98.27389000" + }, + { + "id": "70463", + "name": "Francisco I. Madero", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52096000", + "longitude": "-98.49052000" + }, + { + "id": "70479", + "name": "Francisco Villa", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58630000", + "longitude": "-98.46225000" + }, + { + "id": "70585", + "name": "Guadalupe Hidalgo", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22611000", + "longitude": "-98.18750000" + }, + { + "id": "70592", + "name": "Guadalupe Texcalac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43839000", + "longitude": "-98.07806000" + }, + { + "id": "70593", + "name": "Guadalupe Tlachco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32852000", + "longitude": "-98.11044000" + }, + { + "id": "70725", + "name": "Hualcaltzinco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40056000", + "longitude": "-98.16000000" + }, + { + "id": "70727", + "name": "Huamantla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31451000", + "longitude": "-97.92520000" + }, + { + "id": "70781", + "name": "Hueyotlipan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47088000", + "longitude": "-98.34778000" + }, + { + "id": "70792", + "name": "Huiloapan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38679000", + "longitude": "-98.26992000" + }, + { + "id": "70848", + "name": "Ignacio Zaragoza", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29228000", + "longitude": "-97.92122000" + }, + { + "id": "71026", + "name": "Jesús Huitznahuac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34251000", + "longitude": "-98.12807000" + }, + { + "id": "71035", + "name": "Jesús Tepactepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22917000", + "longitude": "-98.31417000" + }, + { + "id": "71096", + "name": "José María Morelos", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31750000", + "longitude": "-97.97789000" + }, + { + "id": "71177", + "name": "La Aurora", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25680000", + "longitude": "-98.22320000" + }, + { + "id": "71197", + "name": "La Candelaria Teotlalpan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33306000", + "longitude": "-98.22556000" + }, + { + "id": "71385", + "name": "La Magdalena Tlaltelulco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28287000", + "longitude": "-98.19609000" + }, + { + "id": "71490", + "name": "La Soledad", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53841000", + "longitude": "-98.61750000" + }, + { + "id": "71513", + "name": "La Trinidad Chimalpa", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32944000", + "longitude": "-98.24528000" + }, + { + "id": "71514", + "name": "La Trinidad Tenexyecac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33596000", + "longitude": "-98.31476000" + }, + { + "id": "71562", + "name": "Lagunilla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63607000", + "longitude": "-98.27434000" + }, + { + "id": "71886", + "name": "Lázaro Cárdenas", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53750000", + "longitude": "-97.98222000" + }, + { + "id": "71830", + "name": "Los Pilares", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27159000", + "longitude": "-97.94703000" + }, + { + "id": "71849", + "name": "Los Reyes Quiahuixtlan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33955000", + "longitude": "-98.25155000" + }, + { + "id": "72037", + "name": "Mazapa", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54083000", + "longitude": "-98.55684000" + }, + { + "id": "72041", + "name": "Mazatecochco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17865000", + "longitude": "-98.18677000" + }, + { + "id": "72258", + "name": "Muñoz", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47458000", + "longitude": "-98.20963000" + }, + { + "id": "72289", + "name": "Natívitas", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23333000", + "longitude": "-98.31472000" + }, + { + "id": "72322", + "name": "Nicolás Bravo", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42213000", + "longitude": "-97.96759000" + }, + { + "id": "72623", + "name": "Panotla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31619000", + "longitude": "-98.27013000" + }, + { + "id": "72634", + "name": "Papalotla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16861000", + "longitude": "-98.20389000" + }, + { + "id": "73053", + "name": "Ranchería de Pocitos", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39389000", + "longitude": "-97.75944000" + }, + { + "id": "73269", + "name": "San Andrés Ahuashuatepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37831000", + "longitude": "-98.10654000" + }, + { + "id": "73423", + "name": "San Bartolomé Cuahuixmatlac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29333000", + "longitude": "-98.14806000" + }, + { + "id": "73427", + "name": "San Bartolomé Tenango", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25253000", + "longitude": "-98.29172000" + }, + { + "id": "73431", + "name": "San Benito Xaltocan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40594000", + "longitude": "-98.16683000" + }, + { + "id": "73453", + "name": "San Buenaventura Atempan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32667000", + "longitude": "-98.22194000" + }, + { + "id": "73470", + "name": "San Cosme Atlamaxac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23840000", + "longitude": "-98.22513000" + }, + { + "id": "73485", + "name": "San Damián Texoloc", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27833000", + "longitude": "-98.28544000" + }, + { + "id": "73508", + "name": "San Esteban Tizatlán", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33911000", + "longitude": "-98.21374000" + }, + { + "id": "73523", + "name": "San Felipe Sultepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59083000", + "longitude": "-98.61528000" + }, + { + "id": "73563", + "name": "San Francisco Cuexcontzi", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32023000", + "longitude": "-97.71092000" + }, + { + "id": "73594", + "name": "San Francisco Temetzontla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35028000", + "longitude": "-98.28861000" + }, + { + "id": "73600", + "name": "San Francisco Tlacuilohcan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40167000", + "longitude": "-98.19278000" + }, + { + "id": "73646", + "name": "San Hipólito Chimalpa", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31963000", + "longitude": "-98.25004000" + }, + { + "id": "73676", + "name": "San Isidro Buen Suceso", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15489000", + "longitude": "-98.10492000" + }, + { + "id": "73723", + "name": "San Jerónimo Zacualpan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24083000", + "longitude": "-98.26139000" + }, + { + "id": "73733", + "name": "San Jorge Tezoquipan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32094000", + "longitude": "-98.31319000" + }, + { + "id": "73743", + "name": "San José Atoyatenco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25083000", + "longitude": "-98.35528000" + }, + { + "id": "73745", + "name": "San José Aztatla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31004000", + "longitude": "-98.12655000" + }, + { + "id": "73761", + "name": "San José Cuamantzingo", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51555000", + "longitude": "-98.25373000" + }, + { + "id": "73784", + "name": "San José Teacalco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33558000", + "longitude": "-98.06455000" + }, + { + "id": "73790", + "name": "San José Tepeyahualco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59944000", + "longitude": "-98.26889000" + }, + { + "id": "73792", + "name": "San José Tetel", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43313000", + "longitude": "-98.15948000" + }, + { + "id": "73800", + "name": "San José Villarreal", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53278000", + "longitude": "-97.89750000" + }, + { + "id": "73802", + "name": "San José Xicohténcatl", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35440000", + "longitude": "-97.83081000" + }, + { + "id": "73918", + "name": "San Juan Quetzalcoapan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37947000", + "longitude": "-98.07113000" + }, + { + "id": "73998", + "name": "San Lorenzo Axocomanitla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22389000", + "longitude": "-98.24861000" + }, + { + "id": "74011", + "name": "San Lorenzo Sóltepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60422000", + "longitude": "-98.31356000" + }, + { + "id": "74020", + "name": "San Lorenzo Xaltelulco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34075000", + "longitude": "-98.10585000" + }, + { + "id": "74034", + "name": "San Lucas Tecopilco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48626000", + "longitude": "-98.25605000" + }, + { + "id": "74036", + "name": "San Lucas Tlacochcalco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34261000", + "longitude": "-98.14641000" + }, + { + "id": "74047", + "name": "San Luis Apizaquito", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42524000", + "longitude": "-98.11709000" + }, + { + "id": "74069", + "name": "San Marcos Contla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19923000", + "longitude": "-98.19950000" + }, + { + "id": "74147", + "name": "San Matías Tepetomatitlán", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35389000", + "longitude": "-98.19490000" + }, + { + "id": "74174", + "name": "San Miguel Contla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36111000", + "longitude": "-98.13250000" + }, + { + "id": "74215", + "name": "San Miguel Tlamahuco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32417000", + "longitude": "-98.23972000" + }, + { + "id": "74221", + "name": "San Miguel Xochitecatitla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23877000", + "longitude": "-98.35422000" + }, + { + "id": "74334", + "name": "San Pedro Ecatepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52158000", + "longitude": "-98.15468000" + }, + { + "id": "74355", + "name": "San Pedro Muñoztla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28167000", + "longitude": "-98.16693000" + }, + { + "id": "74385", + "name": "San Pedro Tlacotepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39579000", + "longitude": "-98.04589000" + }, + { + "id": "74396", + "name": "San Pedro Xalcaltzinco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22778000", + "longitude": "-98.22806000" + }, + { + "id": "74398", + "name": "San Pedro Xochiteotla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30788000", + "longitude": "-98.13858000" + }, + { + "id": "74434", + "name": "San Rafael Tenanyecac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24786000", + "longitude": "-98.37121000" + }, + { + "id": "74435", + "name": "San Rafael Tepatlaxco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29833000", + "longitude": "-98.11972000" + }, + { + "id": "74486", + "name": "San Simón Tlatlahuquitepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39842000", + "longitude": "-98.22396000" + }, + { + "id": "74480", + "name": "San Simeón Xipetzingo", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48004000", + "longitude": "-98.29284000" + }, + { + "id": "74517", + "name": "Sanctórum", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49333000", + "longitude": "-98.47156000" + }, + { + "id": "74531", + "name": "Santa Ana Chiautempan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30661000", + "longitude": "-98.18773000" + }, + { + "id": "74561", + "name": "Santa Anita Huiloac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38841000", + "longitude": "-98.14362000" + }, + { + "id": "74563", + "name": "Santa Apolonia Teacalco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24153000", + "longitude": "-98.31188000" + }, + { + "id": "74580", + "name": "Santa Catarina Ayometla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19833000", + "longitude": "-98.21361000" + }, + { + "id": "74617", + "name": "Santa Cruz Aquiahuac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23944000", + "longitude": "-98.28222000" + }, + { + "id": "74635", + "name": "Santa Cruz Pocitos", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37924000", + "longitude": "-97.76116000" + }, + { + "id": "74641", + "name": "Santa Cruz Tetela", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29250000", + "longitude": "-98.20778000" + }, + { + "id": "74679", + "name": "Santa Isabel Xiloxoxtla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26786000", + "longitude": "-98.21399000" + }, + { + "id": "74684", + "name": "Santa Justina Ecatepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31083000", + "longitude": "-98.35500000" + }, + { + "id": "74718", + "name": "Santa María Atlihuetzian", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37697000", + "longitude": "-98.17775000" + }, + { + "id": "74748", + "name": "Santa María Ixtulco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32529000", + "longitude": "-98.20843000" + }, + { + "id": "74783", + "name": "Santa María Texcalac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42333000", + "longitude": "-98.08663000" + }, + { + "id": "74924", + "name": "Santiago Michac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21985000", + "longitude": "-98.33932000" + }, + { + "id": "74946", + "name": "Santiago Tepeticpac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33476000", + "longitude": "-98.22692000" + }, + { + "id": "74960", + "name": "Santiago Tlacochcalco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26861000", + "longitude": "-98.22306000" + }, + { + "id": "75034", + "name": "Santo Tomás la Concordia", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22917000", + "longitude": "-98.31944000" + }, + { + "id": "75348", + "name": "Tenancingo", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14725000", + "longitude": "-98.20132000" + }, + { + "id": "75377", + "name": "Teolocholco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24333000", + "longitude": "-98.19083000" + }, + { + "id": "75417", + "name": "Tepetitla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26531000", + "longitude": "-98.37645000" + }, + { + "id": "75444", + "name": "Tepeyanco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24558000", + "longitude": "-98.23409000" + }, + { + "id": "75470", + "name": "Terrenate", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47666000", + "longitude": "-97.92020000" + }, + { + "id": "75491", + "name": "Tetla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44204000", + "longitude": "-98.10325000" + }, + { + "id": "75493", + "name": "Tetlanohcán", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26030000", + "longitude": "-98.16433000" + }, + { + "id": "75685", + "name": "Tlatempan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33167000", + "longitude": "-98.20306000" + }, + { + "id": "75693", + "name": "Tlaxcala", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31905000", + "longitude": "-98.19982000" + }, + { + "id": "75698", + "name": "Tlaxco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61442000", + "longitude": "-98.11997000" + }, + { + "id": "75712", + "name": "Tocatlán", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38865000", + "longitude": "-98.02740000" + }, + { + "id": "75724", + "name": "Toluca de Guadalupe", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46898000", + "longitude": "-97.95588000" + }, + { + "id": "75744", + "name": "Topilco de Juárez", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42095000", + "longitude": "-98.19990000" + }, + { + "id": "75749", + "name": "Totolac", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32580000", + "longitude": "-98.25834000" + }, + { + "id": "75851", + "name": "Tzompantepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37608000", + "longitude": "-98.09014000" + }, + { + "id": "75883", + "name": "Unión Ejidal Tierra y Libertad", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65750000", + "longitude": "-98.33750000" + }, + { + "id": "75991", + "name": "Villa Alta", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.29263000", + "longitude": "-98.40110000" + }, + { + "id": "76063", + "name": "Villa de El Carmen Tequexquitla", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32426000", + "longitude": "-97.65350000" + }, + { + "id": "76055", + "name": "Villa Vicente Guerrero", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.12123000", + "longitude": "-98.16572000" + }, + { + "id": "76126", + "name": "Xaltocan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42427000", + "longitude": "-98.21033000" + }, + { + "id": "76138", + "name": "Xicohtzinco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.17371000", + "longitude": "-98.23377000" + }, + { + "id": "76188", + "name": "Xocoyucan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.30932000", + "longitude": "-98.37471000" + }, + { + "id": "76220", + "name": "Yauhquemehcan", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40697000", + "longitude": "-98.18230000" + }, + { + "id": "76273", + "name": "Zacatelco", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21583000", + "longitude": "-98.23972000" + }, + { + "id": "76319", + "name": "Zaragoza", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31861000", + "longitude": "-98.26389000" + }, + { + "id": "76337", + "name": "Zimatepec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42131000", + "longitude": "-98.16462000" + }, + { + "id": "76353", + "name": "Zitlaltépec", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20389000", + "longitude": "-97.90722000" + }, + { + "id": "76386", + "name": "Zumpango", + "state_id": 3458, + "state_code": "TLA", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55770000", + "longitude": "-98.22407000" + }, + { + "id": "68017", + "name": "Abasolo del Valle", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78306000", + "longitude": "-95.54556000" + }, + { + "id": "68021", + "name": "Abrevadero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28222000", + "longitude": "-95.21444000" + }, + { + "id": "68028", + "name": "Acajete", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56815000", + "longitude": "-97.03333000" + }, + { + "id": "68046", + "name": "Acatla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74944000", + "longitude": "-97.21833000" + }, + { + "id": "68050", + "name": "Acatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69648000", + "longitude": "-96.84367000" + }, + { + "id": "68058", + "name": "Acayucan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.94979000", + "longitude": "-94.91386000" + }, + { + "id": "68059", + "name": "Acazónica", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21284000", + "longitude": "-96.58978000" + }, + { + "id": "68061", + "name": "Achotal de Moreno", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.73652000", + "longitude": "-95.13395000" + }, + { + "id": "68065", + "name": "Acontitla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.68206000", + "longitude": "-97.38469000" + }, + { + "id": "68072", + "name": "Actopan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50427000", + "longitude": "-96.61668000" + }, + { + "id": "68081", + "name": "Acula", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50563000", + "longitude": "-95.77427000" + }, + { + "id": "68083", + "name": "Acultzingo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71894000", + "longitude": "-97.30367000" + }, + { + "id": "68093", + "name": "Adolfo Moreno", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72472000", + "longitude": "-97.23806000" + }, + { + "id": "68095", + "name": "Adolfo Ruíz Cortines", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59585000", + "longitude": "-97.30585000" + }, + { + "id": "68100", + "name": "Agrícola Lázaro Cárdenas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81361000", + "longitude": "-97.19833000" + }, + { + "id": "68110", + "name": "Agua Dulce", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13909000", + "longitude": "-94.14527000" + }, + { + "id": "68128", + "name": "Aguilera", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.81083000", + "longitude": "-95.01500000" + }, + { + "id": "68139", + "name": "Ahuacatán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78351000", + "longitude": "-97.29780000" + }, + { + "id": "68144", + "name": "Ahuateno", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00245000", + "longitude": "-98.15055000" + }, + { + "id": "68159", + "name": "Ahueyahualco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71974000", + "longitude": "-97.25984000" + }, + { + "id": "68177", + "name": "Alborada", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44851000", + "longitude": "-96.87109000" + }, + { + "id": "68205", + "name": "Allende", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15514000", + "longitude": "-94.39289000" + }, + { + "id": "68209", + "name": "Almagres", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80750000", + "longitude": "-94.91750000" + }, + { + "id": "68217", + "name": "Alpatláhuac", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10155000", + "longitude": "-97.12174000" + }, + { + "id": "68227", + "name": "Alto Lucero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.95361000", + "longitude": "-97.44194000" + }, + { + "id": "68228", + "name": "Altotonga", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76613000", + "longitude": "-97.24514000" + }, + { + "id": "68230", + "name": "Alvarado", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77143000", + "longitude": "-95.76181000" + }, + { + "id": "68241", + "name": "Amatitlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43371000", + "longitude": "-95.68388000" + }, + { + "id": "68243", + "name": "Amatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.33519000", + "longitude": "-97.75704000" + }, + { + "id": "68246", + "name": "Amatlán de los Reyes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84658000", + "longitude": "-96.91595000" + }, + { + "id": "68267", + "name": "Anahuac", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.20275000", + "longitude": "-97.85506000" + }, + { + "id": "68273", + "name": "Angel R. Cabada", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60798000", + "longitude": "-95.39724000" + }, + { + "id": "68281", + "name": "Antón Lizardo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05962000", + "longitude": "-95.99272000" + }, + { + "id": "68279", + "name": "Antonio J Bermúdez", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.15046000", + "longitude": "-98.15873000" + }, + { + "id": "68304", + "name": "Apazapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33175000", + "longitude": "-96.65058000" + }, + { + "id": "68316", + "name": "Aquila", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78958000", + "longitude": "-97.32319000" + }, + { + "id": "68319", + "name": "Aquiles Serdán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.87206000", + "longitude": "-98.14794000" + }, + { + "id": "68335", + "name": "Arboledas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20722000", + "longitude": "-96.21444000" + }, + { + "id": "68337", + "name": "Arbolillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81631000", + "longitude": "-95.83601000" + }, + { + "id": "68347", + "name": "Arenal Santa Ana", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.78951000", + "longitude": "-95.76970000" + }, + { + "id": "68370", + "name": "Arroyo del Maíz Uno", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53667000", + "longitude": "-97.41528000" + }, + { + "id": "68371", + "name": "Arroyo del Potrero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14554000", + "longitude": "-97.06520000" + }, + { + "id": "68360", + "name": "Arroyo Hondo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02317000", + "longitude": "-96.87372000" + }, + { + "id": "68364", + "name": "Arroyo San Isidro", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.48667000", + "longitude": "-95.41333000" + }, + { + "id": "76408", + "name": "Úrsulo Galván", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40531000", + "longitude": "-96.36090000" + }, + { + "id": "68381", + "name": "Astacinga", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.56900000", + "longitude": "-97.10376000" + }, + { + "id": "68412", + "name": "Atlahuilco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68308000", + "longitude": "-97.11553000" + }, + { + "id": "68433", + "name": "Atoyac", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93182000", + "longitude": "-96.80203000" + }, + { + "id": "68436", + "name": "Atzacan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90724000", + "longitude": "-97.08307000" + }, + { + "id": "68439", + "name": "Atzalan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78864000", + "longitude": "-97.24195000" + }, + { + "id": "68452", + "name": "Axochío", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37175000", + "longitude": "-95.29985000" + }, + { + "id": "68458", + "name": "Ayahualulco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38613000", + "longitude": "-97.14853000" + }, + { + "id": "68466", + "name": "Ayotuxtla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64885000", + "longitude": "-98.30264000" + }, + { + "id": "76390", + "name": "Álamo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91154000", + "longitude": "-97.67554000" + }, + { + "id": "76391", + "name": "Álamo Temapache", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.98922000", + "longitude": "-97.70592000" + }, + { + "id": "76406", + "name": "Ángel R. Cabada", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59601000", + "longitude": "-95.44580000" + }, + { + "id": "68511", + "name": "Banderas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99083000", + "longitude": "-97.39361000" + }, + { + "id": "68514", + "name": "Banderilla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58893000", + "longitude": "-96.93727000" + }, + { + "id": "68516", + "name": "Bara de Chachalacas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40643000", + "longitude": "-96.34159000" + }, + { + "id": "68518", + "name": "Barra de Cazones", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72307000", + "longitude": "-97.20320000" + }, + { + "id": "68520", + "name": "Barrancas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06918000", + "longitude": "-94.58691000" + }, + { + "id": "68550", + "name": "Barrio de San Miguel", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64333000", + "longitude": "-97.12389000" + }, + { + "id": "68575", + "name": "Bella Esperanza", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.43329000", + "longitude": "-96.86648000" + }, + { + "id": "68594", + "name": "Benito Juárez", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88635000", + "longitude": "-98.20594000" + }, + { + "id": "68617", + "name": "Blanca Espuma", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58117000", + "longitude": "-96.68819000" + }, + { + "id": "68621", + "name": "Boca del Monte", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15451000", + "longitude": "-96.83270000" + }, + { + "id": "68622", + "name": "Boca del Rio", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10464000", + "longitude": "-96.10405000" + }, + { + "id": "68659", + "name": "Buena Vista", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04278000", + "longitude": "-96.85667000" + }, + { + "id": "68669", + "name": "Buenavista", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89306000", + "longitude": "-97.03694000" + }, + { + "id": "68685", + "name": "Buenos Aires", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46463000", + "longitude": "-95.24879000" + }, + { + "id": "68691", + "name": "Buenos Aires (San Isidro)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.84028000", + "longitude": "-97.60139000" + }, + { + "id": "68703", + "name": "Cabezas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37167000", + "longitude": "-96.38278000" + }, + { + "id": "68706", + "name": "Cacahuatal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83098000", + "longitude": "-96.84192000" + }, + { + "id": "68728", + "name": "Calcahualco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13698000", + "longitude": "-97.14201000" + }, + { + "id": "68734", + "name": "Calería", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.42883000", + "longitude": "-95.17737000" + }, + { + "id": "68735", + "name": "Calichar Palma Sola", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44155000", + "longitude": "-97.55103000" + }, + { + "id": "68755", + "name": "Calzadas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.10121000", + "longitude": "-94.45524000" + }, + { + "id": "68760", + "name": "Camarón de Tejeda", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00810000", + "longitude": "-96.56807000" + }, + { + "id": "68763", + "name": "Camerino Z. Mendoza", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78246000", + "longitude": "-97.16016000" + }, + { + "id": "68776", + "name": "Campo Chico", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83639000", + "longitude": "-97.02802000" + }, + { + "id": "68780", + "name": "Campo de Águila", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06750000", + "longitude": "-94.98611000" + }, + { + "id": "68777", + "name": "Campo Grande", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82296000", + "longitude": "-97.01265000" + }, + { + "id": "68807", + "name": "Capoluca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80639000", + "longitude": "-97.02722000" + }, + { + "id": "68823", + "name": "Caristay", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64538000", + "longitude": "-97.30593000" + }, + { + "id": "68824", + "name": "Carlos A. Carrillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37477000", + "longitude": "-95.75444000" + }, + { + "id": "68840", + "name": "Carrillo Puerto", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81314000", + "longitude": "-96.58230000" + }, + { + "id": "68841", + "name": "Carrizal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59552000", + "longitude": "-97.25676000" + }, + { + "id": "68857", + "name": "Casitas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25532000", + "longitude": "-96.80114000" + }, + { + "id": "68860", + "name": "Castillo de Teayo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74927000", + "longitude": "-97.63030000" + }, + { + "id": "68863", + "name": "Catemaco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.42131000", + "longitude": "-95.11398000" + }, + { + "id": "68867", + "name": "Caxapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43103000", + "longitude": "-96.77456000" + }, + { + "id": "68872", + "name": "Cazones de Herrera", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70423000", + "longitude": "-97.30994000" + }, + { + "id": "69661", + "name": "Córdoba", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88420000", + "longitude": "-96.92559000" + }, + { + "id": "69662", + "name": "Córdoba (Santa Leticia)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90861000", + "longitude": "-96.97889000" + }, + { + "id": "68886", + "name": "Cecilio Terán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81480000", + "longitude": "-97.22526000" + }, + { + "id": "68894", + "name": "Cementeras del Pital", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17694000", + "longitude": "-96.89583000" + }, + { + "id": "68901", + "name": "Centro de Readaptación Social", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62500000", + "longitude": "-97.22028000" + }, + { + "id": "68914", + "name": "Cerritos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13329000", + "longitude": "-96.60931000" + }, + { + "id": "68922", + "name": "Cerro Azul", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.19200000", + "longitude": "-97.74088000" + }, + { + "id": "68925", + "name": "Cerro Gordo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56951000", + "longitude": "-96.64835000" + }, + { + "id": "68929", + "name": "Cerro Grande", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.23861000", + "longitude": "-97.68194000" + }, + { + "id": "68930", + "name": "Cerro Guzmán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23543000", + "longitude": "-96.37856000" + }, + { + "id": "68940", + "name": "Cerro las Iguanas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41083000", + "longitude": "-95.19972000" + }, + { + "id": "68945", + "name": "Chacalapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07860000", + "longitude": "-94.70280000" + }, + { + "id": "68947", + "name": "Chacaltianguis", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30528000", + "longitude": "-95.84167000" + }, + { + "id": "68964", + "name": "Chalma", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.20799000", + "longitude": "-98.37526000" + }, + { + "id": "68984", + "name": "Chapopote Chico", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13704000", + "longitude": "-98.24780000" + }, + { + "id": "68985", + "name": "Chapopote Núñez", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93167000", + "longitude": "-97.68274000" + }, + { + "id": "69001", + "name": "Chavarrillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42551000", + "longitude": "-96.79458000" + }, + { + "id": "69003", + "name": "Chavaxtla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13016000", + "longitude": "-96.83054000" + }, + { + "id": "69024", + "name": "Chichicaxtle", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34306000", + "longitude": "-96.46861000" + }, + { + "id": "69035", + "name": "Chicola", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90139000", + "longitude": "-97.10806000" + }, + { + "id": "69039", + "name": "Chiconamel", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.24326000", + "longitude": "-98.45426000" + }, + { + "id": "69043", + "name": "Chiconquiaco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74208000", + "longitude": "-96.81851000" + }, + { + "id": "69044", + "name": "Chicontepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97214000", + "longitude": "-98.17239000" + }, + { + "id": "69046", + "name": "Chicualoque", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38272000", + "longitude": "-97.66163000" + }, + { + "id": "69047", + "name": "Chicuasen", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52785000", + "longitude": "-96.67224000" + }, + { + "id": "69063", + "name": "Chilapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98861000", + "longitude": "-97.15417000" + }, + { + "id": "69074", + "name": "Chiltoyac", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.57708000", + "longitude": "-96.86660000" + }, + { + "id": "69082", + "name": "Chinameca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02195000", + "longitude": "-94.67945000" + }, + { + "id": "69083", + "name": "Chinampa de Gorostiza", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.35959000", + "longitude": "-97.73484000" + }, + { + "id": "69097", + "name": "Chocamán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01214000", + "longitude": "-97.03291000" + }, + { + "id": "69104", + "name": "Chonegal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57523000", + "longitude": "-95.39347000" + }, + { + "id": "69107", + "name": "Chontla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.39198000", + "longitude": "-97.97877000" + }, + { + "id": "69115", + "name": "Chumatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20574000", + "longitude": "-97.59402000" + }, + { + "id": "69120", + "name": "Chuniapan de Arriba", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34803000", + "longitude": "-95.18156000" + }, + { + "id": "69140", + "name": "Citlaltépec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.32912000", + "longitude": "-97.87861000" + }, + { + "id": "69141", + "name": "Citlaltépetl", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.34351000", + "longitude": "-97.89201000" + }, + { + "id": "69152", + "name": "Ciudad Cuauhtémoc", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.18439000", + "longitude": "-97.83472000" + }, + { + "id": "69170", + "name": "Ciudad Mendoza", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80645000", + "longitude": "-97.17870000" + }, + { + "id": "69206", + "name": "Coacoatzintla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65163000", + "longitude": "-96.94043000" + }, + { + "id": "69207", + "name": "Coacotla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93656000", + "longitude": "-94.66711000" + }, + { + "id": "69216", + "name": "Coahuitlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27543000", + "longitude": "-97.70022000" + }, + { + "id": "69224", + "name": "Coatepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45229000", + "longitude": "-96.96148000" + }, + { + "id": "69231", + "name": "Coatzacoalcos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14905000", + "longitude": "-94.44470000" + }, + { + "id": "69233", + "name": "Coatzintla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48699000", + "longitude": "-97.46823000" + }, + { + "id": "69246", + "name": "Coetzala", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78521000", + "longitude": "-96.91697000" + }, + { + "id": "69256", + "name": "Colatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81642000", + "longitude": "-98.09697000" + }, + { + "id": "69261", + "name": "Colipa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92323000", + "longitude": "-96.72713000" + }, + { + "id": "69272", + "name": "Colonia Adolfo Ruiz Cortines (Colonia Obrera)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25694000", + "longitude": "-96.16139000" + }, + { + "id": "69407", + "name": "Colonia Úrsulo Galván", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42862000", + "longitude": "-96.97842000" + }, + { + "id": "69287", + "name": "Colonia Chalchihuecan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21417000", + "longitude": "-96.21444000" + }, + { + "id": "69390", + "name": "Colonia el Renacimiento", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21889000", + "longitude": "-96.21639000" + }, + { + "id": "69397", + "name": "Colonia las Flores", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.36167000", + "longitude": "-97.69306000" + }, + { + "id": "69320", + "name": "Colonia Lealtad", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96306000", + "longitude": "-94.90250000" + }, + { + "id": "69321", + "name": "Colonia Libertad", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67734000", + "longitude": "-97.21262000" + }, + { + "id": "69327", + "name": "Colonia Manuel González", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11495000", + "longitude": "-96.85939000" + }, + { + "id": "69369", + "name": "Colonia Santa Bárbara", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50191000", + "longitude": "-96.87817000" + }, + { + "id": "69408", + "name": "Colonias Pedernales", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04583000", + "longitude": "-97.05139000" + }, + { + "id": "69410", + "name": "Colorines", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88472000", + "longitude": "-96.97833000" + }, + { + "id": "69423", + "name": "Comapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13889000", + "longitude": "-96.71374000" + }, + { + "id": "69424", + "name": "Comején", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06126000", + "longitude": "-94.88552000" + }, + { + "id": "69426", + "name": "Comoapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40684000", + "longitude": "-95.17415000" + }, + { + "id": "69454", + "name": "Congregación el Tajín", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43047000", + "longitude": "-97.38183000" + }, + { + "id": "69451", + "name": "Congregación Hidalgo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93750000", + "longitude": "-94.97056000" + }, + { + "id": "69483", + "name": "Corozal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.54627000", + "longitude": "-98.55444000" + }, + { + "id": "69485", + "name": "Corral Nuevo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.11461000", + "longitude": "-95.11542000" + }, + { + "id": "69492", + "name": "Corralillos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48273000", + "longitude": "-97.52582000" + }, + { + "id": "69497", + "name": "Cosamaloapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.36759000", + "longitude": "-95.79857000" + }, + { + "id": "69498", + "name": "Cosamaloapan de Carpio", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30163000", + "longitude": "-95.95967000" + }, + { + "id": "69499", + "name": "Cosautlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33196000", + "longitude": "-96.99030000" + }, + { + "id": "69500", + "name": "Cosautlán de Carvajal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.32878000", + "longitude": "-96.97719000" + }, + { + "id": "69502", + "name": "Coscomatepec de Bravo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07275000", + "longitude": "-97.04685000" + }, + { + "id": "69503", + "name": "Cosolapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60055000", + "longitude": "-96.68524000" + }, + { + "id": "69504", + "name": "Cosoleacaque", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.99913000", + "longitude": "-94.63590000" + }, + { + "id": "69508", + "name": "Cotaxtla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83555000", + "longitude": "-96.39640000" + }, + { + "id": "69513", + "name": "Coxquihui", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18398000", + "longitude": "-97.58568000" + }, + { + "id": "69518", + "name": "Coyolito", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22777000", + "longitude": "-96.87039000" + }, + { + "id": "69529", + "name": "Coyutla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24720000", + "longitude": "-97.65824000" + }, + { + "id": "69541", + "name": "Cruz Blanca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63744000", + "longitude": "-97.16691000" + }, + { + "id": "69547", + "name": "Cruz del Milagro", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.90833000", + "longitude": "-95.01083000" + }, + { + "id": "69545", + "name": "Cruz Verde", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13750000", + "longitude": "-97.10861000" + }, + { + "id": "69574", + "name": "Cuauhtamingo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76472000", + "longitude": "-97.31417000" + }, + { + "id": "69594", + "name": "Cuautlapán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87747000", + "longitude": "-97.02291000" + }, + { + "id": "69604", + "name": "Cucharas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.61568000", + "longitude": "-97.66099000" + }, + { + "id": "69617", + "name": "Cuesta Amarilla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34667000", + "longitude": "-95.23389000" + }, + { + "id": "69619", + "name": "Cuesta de Laja", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.29333000", + "longitude": "-95.22111000" + }, + { + "id": "69626", + "name": "Cuichapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.93889000", + "longitude": "-94.28000000" + }, + { + "id": "69628", + "name": "Cuitláhuac", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81429000", + "longitude": "-96.72281000" + }, + { + "id": "69630", + "name": "Cuiyachapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04569000", + "longitude": "-97.17436000" + }, + { + "id": "69671", + "name": "Dehesa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.94167000", + "longitude": "-94.99806000" + }, + { + "id": "69673", + "name": "Delfino Victoria (Santa Fe)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20750000", + "longitude": "-96.27333000" + }, + { + "id": "69698", + "name": "Doctor Montes de Oca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93477000", + "longitude": "-97.55585000" + }, + { + "id": "69717", + "name": "Dos Bocas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.41087000", + "longitude": "-95.70732000" + }, + { + "id": "69720", + "name": "Dos Ríos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48417000", + "longitude": "-96.79944000" + }, + { + "id": "69757", + "name": "Ejidal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90380000", + "longitude": "-96.22583000" + }, + { + "id": "69816", + "name": "Ejido la Piña (Maromilla)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02861000", + "longitude": "-96.78361000" + }, + { + "id": "69825", + "name": "El Aguacate", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19808000", + "longitude": "-94.97053000" + }, + { + "id": "69829", + "name": "El Anono", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.25559000", + "longitude": "-97.65648000" + }, + { + "id": "69834", + "name": "El Arenal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26829000", + "longitude": "-97.59250000" + }, + { + "id": "70265", + "name": "El Águila", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.63072000", + "longitude": "-97.45632000" + }, + { + "id": "69846", + "name": "El Blanco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07418000", + "longitude": "-95.28053000" + }, + { + "id": "69886", + "name": "El Castillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54661000", + "longitude": "-96.86425000" + }, + { + "id": "69900", + "name": "El Chico", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46570000", + "longitude": "-96.83642000" + }, + { + "id": "69903", + "name": "El Chote", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.40167000", + "longitude": "-97.34389000" + }, + { + "id": "69908", + "name": "El Cocuite", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71765000", + "longitude": "-96.08442000" + }, + { + "id": "69917", + "name": "El Conejo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53140000", + "longitude": "-97.15383000" + }, + { + "id": "69927", + "name": "El Corte", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.45226000", + "longitude": "-95.73510000" + }, + { + "id": "69955", + "name": "El Escobillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.51450000", + "longitude": "-97.19791000" + }, + { + "id": "69961", + "name": "El Espinal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.62444000", + "longitude": "-96.87250000" + }, + { + "id": "69981", + "name": "El Hatito", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27750000", + "longitude": "-96.39361000" + }, + { + "id": "69983", + "name": "El Higo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.76708000", + "longitude": "-98.45186000" + }, + { + "id": "69994", + "name": "El Huérfano", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.74082000", + "longitude": "-96.74528000" + }, + { + "id": "69989", + "name": "El Huidero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.38750000", + "longitude": "-95.17917000" + }, + { + "id": "69993", + "name": "El Humo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.17568000", + "longitude": "-97.94169000" + }, + { + "id": "70006", + "name": "El Jobo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.01405000", + "longitude": "-97.16461000" + }, + { + "id": "70008", + "name": "El Juile", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.74412000", + "longitude": "-94.98946000" + }, + { + "id": "70010", + "name": "El Laurel", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27409000", + "longitude": "-95.32900000" + }, + { + "id": "70011", + "name": "El Lencero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48897000", + "longitude": "-96.81622000" + }, + { + "id": "70019", + "name": "El Lindero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.31278000", + "longitude": "-98.22000000" + }, + { + "id": "70028", + "name": "El Maguey", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83295000", + "longitude": "-96.73434000" + }, + { + "id": "70038", + "name": "El Mirador", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01168000", + "longitude": "-97.94387000" + }, + { + "id": "70043", + "name": "El Molino", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.91602000", + "longitude": "-98.29885000" + }, + { + "id": "70048", + "name": "El Mollejon", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54222000", + "longitude": "-97.41111000" + }, + { + "id": "70056", + "name": "El Naranjito", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.99785000", + "longitude": "-94.60666000" + }, + { + "id": "70062", + "name": "El Nigromante", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.76472000", + "longitude": "-95.75722000" + }, + { + "id": "70079", + "name": "El Palmar", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80330000", + "longitude": "-96.66560000" + }, + { + "id": "70085", + "name": "El Panorama", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.28918000", + "longitude": "-97.63554000" + }, + { + "id": "70088", + "name": "El Paraíso", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.51592000", + "longitude": "-95.14271000" + }, + { + "id": "70092", + "name": "El Paraíso (La Charca)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42889000", + "longitude": "-96.35500000" + }, + { + "id": "70108", + "name": "El Pital", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.15695000", + "longitude": "-96.89805000" + }, + { + "id": "70117", + "name": "El Porvenir", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92083000", + "longitude": "-96.92583000" + }, + { + "id": "70125", + "name": "El Potrero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.67822000", + "longitude": "-97.25499000" + }, + { + "id": "70134", + "name": "El Progreso", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.11417000", + "longitude": "-97.01444000" + }, + { + "id": "70137", + "name": "El Pueblito", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88639000", + "longitude": "-96.96946000" + }, + { + "id": "70138", + "name": "El Pueblito (Garbanzal)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59389000", + "longitude": "-96.92417000" + }, + { + "id": "70157", + "name": "El Remolino", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38921000", + "longitude": "-97.21213000" + }, + { + "id": "70193", + "name": "El Salto de Eyipantla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.38954000", + "longitude": "-95.20285000" + }, + { + "id": "70213", + "name": "El Tejar", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07433000", + "longitude": "-96.16097000" + }, + { + "id": "70222", + "name": "El Terrero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53709000", + "longitude": "-96.79907000" + }, + { + "id": "70236", + "name": "El Triunfo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42136000", + "longitude": "-97.22002000" + }, + { + "id": "70243", + "name": "El Tulín", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24750000", + "longitude": "-94.95373000" + }, + { + "id": "70258", + "name": "El Volador", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64294000", + "longitude": "-97.24885000" + }, + { + "id": "70262", + "name": "El Zapote Bravo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66200000", + "longitude": "-97.99907000" + }, + { + "id": "70271", + "name": "Elotepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18820000", + "longitude": "-97.03768000" + }, + { + "id": "70290", + "name": "Emiliano Zapata", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45766000", + "longitude": "-96.76584000" + }, + { + "id": "70306", + "name": "Entabladero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27515000", + "longitude": "-97.55114000" + }, + { + "id": "70320", + "name": "Escolín de Olarte", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49840000", + "longitude": "-97.42336000" + }, + { + "id": "70330", + "name": "Espinal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26997000", + "longitude": "-97.48927000" + }, + { + "id": "70342", + "name": "Estación Dobladero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.11500000", + "longitude": "-95.76611000" + }, + { + "id": "70345", + "name": "Estación Juanita", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.80889000", + "longitude": "-95.21750000" + }, + { + "id": "70365", + "name": "Estanzuela", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46081000", + "longitude": "-96.85819000" + }, + { + "id": "70369", + "name": "Estero de Milpas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.25370000", + "longitude": "-97.45082000" + }, + { + "id": "70370", + "name": "Estero del Ídolo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88953000", + "longitude": "-97.65878000" + }, + { + "id": "70389", + "name": "Ex-hacienda la Concepción", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84855000", + "longitude": "-96.82437000" + }, + { + "id": "70390", + "name": "Excola", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13876000", + "longitude": "-97.12251000" + }, + { + "id": "70396", + "name": "Felipe Carrillo Puerto", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.13578000", + "longitude": "-96.95164000" + }, + { + "id": "70402", + "name": "Filomeno Mata", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20004000", + "longitude": "-97.70392000" + }, + { + "id": "70410", + "name": "Fortín de las Flores", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90806000", + "longitude": "-97.00000000" + }, + { + "id": "70411", + "name": "Fraccionamiento Arboledas San Ramón", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09417000", + "longitude": "-96.15667000" + }, + { + "id": "70413", + "name": "Fraccionamiento Ciudad Olmeca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15056000", + "longitude": "-94.55250000" + }, + { + "id": "70418", + "name": "Fraccionamiento Costa Dorada", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20833000", + "longitude": "-96.21639000" + }, + { + "id": "70422", + "name": "Fraccionamiento Geovillas los Pinos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21722000", + "longitude": "-96.22639000" + }, + { + "id": "70450", + "name": "Fraccionamiento la Florida", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58667000", + "longitude": "-97.42833000" + }, + { + "id": "70455", + "name": "Fraccionamiento las Fuentes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49611000", + "longitude": "-96.88639000" + }, + { + "id": "70458", + "name": "Fraccionamiento los Álamos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92389000", + "longitude": "-96.97528000" + }, + { + "id": "70457", + "name": "Fraccionamiento los Prados", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97778000", + "longitude": "-94.63917000" + }, + { + "id": "70442", + "name": "Fraccionamiento Santa Cruz", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97194000", + "longitude": "-94.89500000" + }, + { + "id": "70444", + "name": "Fraccionamiento Valle Dorado", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86889000", + "longitude": "-97.12222000" + }, + { + "id": "70447", + "name": "Fraccionamiento Villas de la Llave", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91583000", + "longitude": "-96.99111000" + }, + { + "id": "70465", + "name": "Francisco I. Madero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52718000", + "longitude": "-97.27067000" + }, + { + "id": "70487", + "name": "Fredepo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88056000", + "longitude": "-96.97694000" + }, + { + "id": "70500", + "name": "Gabino Barreda", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17922000", + "longitude": "-96.09162000" + }, + { + "id": "70525", + "name": "General Alatriste (San Joaquín)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84028000", + "longitude": "-96.79361000" + }, + { + "id": "70536", + "name": "General Juan José Baz (San José del Corral)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82167000", + "longitude": "-96.81806000" + }, + { + "id": "70542", + "name": "General Miguel Alemán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89346000", + "longitude": "-96.79239000" + }, + { + "id": "70570", + "name": "Guadalupe", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81560000", + "longitude": "-96.92444000" + }, + { + "id": "70603", + "name": "Guadalupe Victoria", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55472000", + "longitude": "-96.96056000" + }, + { + "id": "70624", + "name": "Guayalejo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.38306000", + "longitude": "-98.48306000" + }, + { + "id": "70634", + "name": "Guillermo Prieto", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16077000", + "longitude": "-94.27658000" + }, + { + "id": "70642", + "name": "Gutiérrez Zamora", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45347000", + "longitude": "-97.08588000" + }, + { + "id": "70654", + "name": "Hacienda Sotavento", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13361000", + "longitude": "-96.18139000" + }, + { + "id": "70665", + "name": "Helio García Alfaro", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.25968000", + "longitude": "-94.28849000" + }, + { + "id": "70667", + "name": "Hermanos Cedillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.25194000", + "longitude": "-94.61129000" + }, + { + "id": "70671", + "name": "Hermenegildo J. Aldana", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00611000", + "longitude": "-94.61222000" + }, + { + "id": "70687", + "name": "Hidalgo Amajac", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90500000", + "longitude": "-97.62944000" + }, + { + "id": "70690", + "name": "Hidalgotitlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.77051000", + "longitude": "-94.64703000" + }, + { + "id": "70711", + "name": "Hornitos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.46083000", + "longitude": "-96.42111000" + }, + { + "id": "70743", + "name": "Huatusco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14876000", + "longitude": "-96.96760000" + }, + { + "id": "70751", + "name": "Huayacanes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.91844000", + "longitude": "-95.27767000" + }, + { + "id": "70752", + "name": "Huayacocotla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53671000", + "longitude": "-98.48080000" + }, + { + "id": "70755", + "name": "Huazuntlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15667000", + "longitude": "-94.79306000" + }, + { + "id": "70772", + "name": "Huexotitla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.76984000", + "longitude": "-98.08872000" + }, + { + "id": "70776", + "name": "Hueyapan de Ocampo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14479000", + "longitude": "-95.14873000" + }, + { + "id": "70784", + "name": "Hueytepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32635000", + "longitude": "-97.02680000" + }, + { + "id": "70793", + "name": "Huiloapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75000000", + "longitude": "-97.31667000" + }, + { + "id": "70794", + "name": "Huiloapan de Cuauhtémoc", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81722000", + "longitude": "-97.15444000" + }, + { + "id": "70805", + "name": "Huitzila", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.71898000", + "longitude": "-97.17033000" + }, + { + "id": "70817", + "name": "Huixcolotla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.66556000", + "longitude": "-96.49750000" + }, + { + "id": "70860", + "name": "Ignacio de la Llave", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72580000", + "longitude": "-95.98696000" + }, + { + "id": "70849", + "name": "Ignacio Zaragoza", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71222000", + "longitude": "-97.22500000" + }, + { + "id": "70864", + "name": "Ilamatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.78053000", + "longitude": "-98.44320000" + }, + { + "id": "70882", + "name": "Isla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06369000", + "longitude": "-95.55320000" + }, + { + "id": "70899", + "name": "Ixcapantla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02571000", + "longitude": "-96.97052000" + }, + { + "id": "70904", + "name": "Ixcatepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.23695000", + "longitude": "-98.00689000" + }, + { + "id": "70905", + "name": "Ixcatla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07528000", + "longitude": "-96.91889000" + }, + { + "id": "70909", + "name": "Ixhuacán de los Reyes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35526000", + "longitude": "-97.11751000" + }, + { + "id": "70910", + "name": "Ixhuapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01333000", + "longitude": "-94.87667000" + }, + { + "id": "70911", + "name": "Ixhuapán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17612000", + "longitude": "-94.79886000" + }, + { + "id": "70912", + "name": "Ixhuatlancillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89766000", + "longitude": "-97.14899000" + }, + { + "id": "70913", + "name": "Ixhuatlán de Madero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.68879000", + "longitude": "-98.01177000" + }, + { + "id": "70914", + "name": "Ixhuatlán del Café", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04179000", + "longitude": "-96.92694000" + }, + { + "id": "70915", + "name": "Ixhuatlán del Sureste", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.01368000", + "longitude": "-94.37794000" + }, + { + "id": "70920", + "name": "Ixpila", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11837000", + "longitude": "-96.96675000" + }, + { + "id": "70922", + "name": "Ixtacapa el Chico", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.49001000", + "longitude": "-96.74246000" + }, + { + "id": "70924", + "name": "Ixtaczoquitlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85364000", + "longitude": "-97.06229000" + }, + { + "id": "70958", + "name": "Jacarandas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.49556000", + "longitude": "-96.85278000" + }, + { + "id": "70963", + "name": "Jalacingo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80333000", + "longitude": "-97.30830000" + }, + { + "id": "70967", + "name": "Jalapilla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82642000", + "longitude": "-97.08865000" + }, + { + "id": "70970", + "name": "Jalcomulco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33185000", + "longitude": "-96.76250000" + }, + { + "id": "70997", + "name": "Jamapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04179000", + "longitude": "-96.24143000" + }, + { + "id": "71148", + "name": "Jáltipan de Morelos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96542000", + "longitude": "-94.71396000" + }, + { + "id": "71022", + "name": "Jesús Carranza", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43526000", + "longitude": "-95.02637000" + }, + { + "id": "71044", + "name": "Jilotepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61184000", + "longitude": "-96.95169000" + }, + { + "id": "71062", + "name": "Joachín", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63855000", + "longitude": "-96.23318000" + }, + { + "id": "71088", + "name": "José Cardel", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36810000", + "longitude": "-96.36951000" + }, + { + "id": "71091", + "name": "José F. Gutiérrez", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02526000", + "longitude": "-94.61028000" + }, + { + "id": "71116", + "name": "Juan Díaz Covarrubias", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15964000", + "longitude": "-95.18675000" + }, + { + "id": "71120", + "name": "Juan Jacobo Torres [Bodega de Totontepec]", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33645000", + "longitude": "-95.26033000" + }, + { + "id": "71122", + "name": "Juan Marcos (San José Buenavista)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72917000", + "longitude": "-97.19667000" + }, + { + "id": "71126", + "name": "Juan Rodríguez Clara", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.99283000", + "longitude": "-95.40099000" + }, + { + "id": "71131", + "name": "Juchique de Ferrer", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83985000", + "longitude": "-96.69463000" + }, + { + "id": "71175", + "name": "La Antigua", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31619000", + "longitude": "-96.31736000" + }, + { + "id": "71193", + "name": "La Camelia", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89631000", + "longitude": "-97.77247000" + }, + { + "id": "71201", + "name": "La Capilla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89442000", + "longitude": "-96.24132000" + }, + { + "id": "71213", + "name": "La Cerquilla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.90786000", + "longitude": "-95.05497000" + }, + { + "id": "71221", + "name": "La Colonia Guadalupe", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.34387000", + "longitude": "-97.62223000" + }, + { + "id": "71229", + "name": "La Concepción", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.60620000", + "longitude": "-96.90016000" + }, + { + "id": "71254", + "name": "La Cuesta", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79028000", + "longitude": "-97.16806000" + }, + { + "id": "71258", + "name": "La Defensa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10507000", + "longitude": "-96.96079000" + }, + { + "id": "71300", + "name": "La Gloria", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42631000", + "longitude": "-96.40211000" + }, + { + "id": "71311", + "name": "La Guadalupe", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37336000", + "longitude": "-96.91925000" + }, + { + "id": "71313", + "name": "La Guásima", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53973000", + "longitude": "-97.24950000" + }, + { + "id": "71318", + "name": "La Horqueta (Poblado Doce)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.21012000", + "longitude": "-94.20249000" + }, + { + "id": "71325", + "name": "La Isla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60000000", + "longitude": "-96.15000000" + }, + { + "id": "71326", + "name": "La Isla (Kilómetro 10)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60806000", + "longitude": "-97.50139000" + }, + { + "id": "71328", + "name": "La Isla de Chapachapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12186000", + "longitude": "-96.88208000" + }, + { + "id": "71327", + "name": "La Isla Km 10", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60677000", + "longitude": "-97.49950000" + }, + { + "id": "71329", + "name": "La Joya", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61099000", + "longitude": "-97.02687000" + }, + { + "id": "71335", + "name": "La Junta", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.49136000", + "longitude": "-96.65720000" + }, + { + "id": "71344", + "name": "La Laguna", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48214000", + "longitude": "-96.93366000" + }, + { + "id": "71347", + "name": "La Laguna y Monte del Castillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98334000", + "longitude": "-96.07806000" + }, + { + "id": "71353", + "name": "La Libertad", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05345000", + "longitude": "-96.97314000" + }, + { + "id": "71410", + "name": "La Nueva Era", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.69861000", + "longitude": "-95.80833000" + }, + { + "id": "71411", + "name": "La Nueva Victoria", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.65639000", + "longitude": "-95.25806000" + }, + { + "id": "71413", + "name": "La Orduña", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45141000", + "longitude": "-96.93598000" + }, + { + "id": "71419", + "name": "La Palma", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17941000", + "longitude": "-97.06718000" + }, + { + "id": "71428", + "name": "La Palmilla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02041000", + "longitude": "-97.14553000" + }, + { + "id": "71441", + "name": "La Perla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92817000", + "longitude": "-97.13362000" + }, + { + "id": "71464", + "name": "La Providencia", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75304000", + "longitude": "-96.77087000" + }, + { + "id": "71473", + "name": "La Reforma", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59664000", + "longitude": "-96.63302000" + }, + { + "id": "71488", + "name": "La Sidra", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93380000", + "longitude": "-97.07989000" + }, + { + "id": "71497", + "name": "La Sombra", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75076000", + "longitude": "-96.71420000" + }, + { + "id": "71503", + "name": "La Tinaja", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76082000", + "longitude": "-96.46283000" + }, + { + "id": "71505", + "name": "La Toma", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.45278000", + "longitude": "-97.19361000" + }, + { + "id": "71523", + "name": "La Unión", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89222000", + "longitude": "-97.66528000" + }, + { + "id": "71525", + "name": "La Unión Paso Largo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14224000", + "longitude": "-96.99995000" + }, + { + "id": "71532", + "name": "La Victoria", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.37486000", + "longitude": "-95.12213000" + }, + { + "id": "71535", + "name": "La Victoria (La Peñita)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93694000", + "longitude": "-97.37250000" + }, + { + "id": "71547", + "name": "Laguna Chica (Pueblo Nuevo)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.54306000", + "longitude": "-96.73306000" + }, + { + "id": "71551", + "name": "Laguna de Farfán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80327000", + "longitude": "-96.64386000" + }, + { + "id": "71560", + "name": "Laguneta", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34298000", + "longitude": "-95.15181000" + }, + { + "id": "71569", + "name": "Landero y Coss", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73935000", + "longitude": "-96.85009000" + }, + { + "id": "71573", + "name": "Las Amapolas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.15194000", + "longitude": "-96.19778000" + }, + { + "id": "71577", + "name": "Las Barrillas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.18617000", + "longitude": "-94.59542000" + }, + { + "id": "71587", + "name": "Las Choapas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.91177000", + "longitude": "-94.09646000" + }, + { + "id": "71602", + "name": "Las Higueras", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.03693000", + "longitude": "-96.62199000" + }, + { + "id": "71612", + "name": "Las Lomas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26067000", + "longitude": "-97.61528000" + }, + { + "id": "71614", + "name": "Las Lomas de Tacamichapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.86611000", + "longitude": "-94.70833000" + }, + { + "id": "71624", + "name": "Las Minas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70449000", + "longitude": "-97.14699000" + }, + { + "id": "71639", + "name": "Las Sabanetas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.12661000", + "longitude": "-95.82265000" + }, + { + "id": "71640", + "name": "Las Sabinas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.31806000", + "longitude": "-97.88083000" + }, + { + "id": "71645", + "name": "Las Trancas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50444000", + "longitude": "-96.86444000" + }, + { + "id": "71653", + "name": "Las Vigas de Ramírez", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63722000", + "longitude": "-97.09821000" + }, + { + "id": "71900", + "name": "Lázaro Cárdenas (Santana)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22500000", + "longitude": "-97.59306000" + }, + { + "id": "71662", + "name": "Lerdo de Tejada", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62936000", + "longitude": "-95.51968000" + }, + { + "id": "71678", + "name": "Limones", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.33820000", + "longitude": "-96.92336000" + }, + { + "id": "71680", + "name": "Lindavista", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.08899000", + "longitude": "-95.77597000" + }, + { + "id": "71691", + "name": "Llano de Enmedio", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.78328000", + "longitude": "-98.01364000" + }, + { + "id": "71685", + "name": "Llano Grande", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.37035000", + "longitude": "-96.88002000" + }, + { + "id": "71711", + "name": "Loma Angosta", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78309000", + "longitude": "-96.67588000" + }, + { + "id": "71736", + "name": "Loma de los Carmona", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10556000", + "longitude": "-96.39369000" + }, + { + "id": "71732", + "name": "Loma de Sogotegoyo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.21896000", + "longitude": "-94.97373000" + }, + { + "id": "71719", + "name": "Loma Grande", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92250000", + "longitude": "-97.23083000" + }, + { + "id": "71745", + "name": "Lomas de Barrillas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14806000", + "longitude": "-94.52639000" + }, + { + "id": "71748", + "name": "Lomas de Río Medio Cuatro", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19333000", + "longitude": "-96.21056000" + }, + { + "id": "71742", + "name": "Lomas Verdes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50446000", + "longitude": "-96.88899000" + }, + { + "id": "71768", + "name": "Los Altos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.50976000", + "longitude": "-97.75705000" + }, + { + "id": "71873", + "name": "Los Ídolos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.41173000", + "longitude": "-96.51808000" + }, + { + "id": "71787", + "name": "Los Cerritos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07884000", + "longitude": "-94.61668000" + }, + { + "id": "71810", + "name": "Los Lirios", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50058000", + "longitude": "-95.38828000" + }, + { + "id": "71814", + "name": "Los Mangos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24361000", + "longitude": "-95.12222000" + }, + { + "id": "71818", + "name": "Los Molinos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59565000", + "longitude": "-97.21513000" + }, + { + "id": "71820", + "name": "Los Naranjos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33111000", + "longitude": "-95.24167000" + }, + { + "id": "71829", + "name": "Los Pescados", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56114000", + "longitude": "-97.14848000" + }, + { + "id": "71833", + "name": "Los Pinos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.44389000", + "longitude": "-95.24333000" + }, + { + "id": "71846", + "name": "Los Reyes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.67428000", + "longitude": "-97.03851000" + }, + { + "id": "71854", + "name": "Los Robles", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97305000", + "longitude": "-96.11768000" + }, + { + "id": "71864", + "name": "Los Tigres (San Marcos)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.89056000", + "longitude": "-95.34944000" + }, + { + "id": "71865", + "name": "Los Torrentes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20194000", + "longitude": "-96.21139000" + }, + { + "id": "71904", + "name": "Macedonio Alonso", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27417000", + "longitude": "-97.69194000" + }, + { + "id": "71919", + "name": "Mafafas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65866000", + "longitude": "-96.75591000" + }, + { + "id": "71920", + "name": "Magdalena", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76066000", + "longitude": "-97.04385000" + }, + { + "id": "71939", + "name": "Mahuixtlan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40948000", + "longitude": "-96.91750000" + }, + { + "id": "71949", + "name": "Maltrata", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81091000", + "longitude": "-97.27538000" + }, + { + "id": "71962", + "name": "Manuel León", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85365000", + "longitude": "-96.87124000" + }, + { + "id": "71963", + "name": "Manuel María Contreras", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44617000", + "longitude": "-97.48329000" + }, + { + "id": "71976", + "name": "Mapachapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.02979000", + "longitude": "-94.56700000" + }, + { + "id": "72006", + "name": "María de la Torre", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12915000", + "longitude": "-96.99544000" + }, + { + "id": "71991", + "name": "Mariano Escobedo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91333000", + "longitude": "-97.13000000" + }, + { + "id": "72004", + "name": "Martínez de la Torre", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07082000", + "longitude": "-97.06078000" + }, + { + "id": "72013", + "name": "Mata de Indio", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.23028000", + "longitude": "-96.84136000" + }, + { + "id": "72009", + "name": "Mata Loma", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.13172000", + "longitude": "-96.29587000" + }, + { + "id": "72010", + "name": "Mata Naranjo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77746000", + "longitude": "-96.71333000" + }, + { + "id": "72011", + "name": "Mata Obscura", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21795000", + "longitude": "-96.85426000" + }, + { + "id": "72012", + "name": "Mata Tenatito (Casco Hacienda)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72187000", + "longitude": "-96.66288000" + }, + { + "id": "72014", + "name": "Matacapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43472000", + "longitude": "-95.16583000" + }, + { + "id": "72051", + "name": "Mazumiapam", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30744000", + "longitude": "-95.33044000" + }, + { + "id": "72056", + "name": "Mecatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.21349000", + "longitude": "-97.65741000" + }, + { + "id": "72058", + "name": "Mecayapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22001000", + "longitude": "-94.83794000" + }, + { + "id": "72061", + "name": "Medellín", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00418000", + "longitude": "-96.15836000" + }, + { + "id": "72062", + "name": "Medellín de Bravo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05869000", + "longitude": "-96.15781000" + }, + { + "id": "72064", + "name": "Medias Aguas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.66776000", + "longitude": "-95.02857000" + }, + { + "id": "72072", + "name": "Melchor Ocampo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.83972000", + "longitude": "-97.30667000" + }, + { + "id": "72076", + "name": "Mequetla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79468000", + "longitude": "-97.68855000" + }, + { + "id": "72080", + "name": "Mesa de Guadalupe", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56403000", + "longitude": "-96.69948000" + }, + { + "id": "72092", + "name": "Metlac Hernández (Metlac Primero)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97750000", + "longitude": "-97.14306000" + }, + { + "id": "72097", + "name": "Mexcala", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.69556000", + "longitude": "-97.16472000" + }, + { + "id": "72116", + "name": "Miahuatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73629000", + "longitude": "-96.88062000" + }, + { + "id": "72131", + "name": "Miguel Hidalgo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55316000", + "longitude": "-97.50200000" + }, + { + "id": "72145", + "name": "Minatitlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00011000", + "longitude": "-94.55690000" + }, + { + "id": "72150", + "name": "Minzapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13873000", + "longitude": "-94.72733000" + }, + { + "id": "72157", + "name": "Misantla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.92992000", + "longitude": "-96.85194000" + }, + { + "id": "72167", + "name": "Mixquiapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70111000", + "longitude": "-97.27839000" + }, + { + "id": "72169", + "name": "Mixtla de Altamirano", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59591000", + "longitude": "-96.99293000" + }, + { + "id": "72188", + "name": "Moloacán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.98544000", + "longitude": "-94.34714000" + }, + { + "id": "72196", + "name": "Monte Blanco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96642000", + "longitude": "-97.01684000" + }, + { + "id": "72206", + "name": "Monte Salas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93722000", + "longitude": "-97.01833000" + }, + { + "id": "72208", + "name": "Monte Verde Chivería", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.70304000", + "longitude": "-96.69601000" + }, + { + "id": "72224", + "name": "Moralillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.22552000", + "longitude": "-97.91213000" + }, + { + "id": "72228", + "name": "Morelos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17986000", + "longitude": "-94.94981000" + }, + { + "id": "72243", + "name": "Motzorongo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64252000", + "longitude": "-96.72949000" + }, + { + "id": "72245", + "name": "Moyoapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91681000", + "longitude": "-97.04559000" + }, + { + "id": "72250", + "name": "Mozomboa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.50437000", + "longitude": "-96.47738000" + }, + { + "id": "72254", + "name": "Mundo Nuevo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.08831000", + "longitude": "-94.39024000" + }, + { + "id": "72276", + "name": "Nanchital de Lázaro Cárdenas del Río", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07117000", + "longitude": "-94.40756000" + }, + { + "id": "72278", + "name": "Naolinco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.63666000", + "longitude": "-96.85254000" + }, + { + "id": "72279", + "name": "Naolinco de Victoria", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.65474000", + "longitude": "-96.87320000" + }, + { + "id": "72281", + "name": "Naranjal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.79836000", + "longitude": "-96.95972000" + }, + { + "id": "72283", + "name": "Naranjos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.35087000", + "longitude": "-97.68656000" + }, + { + "id": "72284", + "name": "Naranjos Amatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.31139000", + "longitude": "-97.69131000" + }, + { + "id": "72292", + "name": "Nautla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20795000", + "longitude": "-96.77305000" + }, + { + "id": "72306", + "name": "Necoxtla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77861000", + "longitude": "-97.15361000" + }, + { + "id": "72336", + "name": "Niños Héroes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.43493000", + "longitude": "-94.49884000" + }, + { + "id": "72318", + "name": "Nicolás Blanco (San Pancho)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35250000", + "longitude": "-96.33833000" + }, + { + "id": "72339", + "name": "Nogales", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82776000", + "longitude": "-97.16311000" + }, + { + "id": "72346", + "name": "Nopalapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.11211000", + "longitude": "-95.33093000" + }, + { + "id": "72348", + "name": "Nopaltepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.27686000", + "longitude": "-95.99921000" + }, + { + "id": "72357", + "name": "Novara", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.19968000", + "longitude": "-96.10806000" + }, + { + "id": "72406", + "name": "Nuevo Progreso", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61820000", + "longitude": "-97.50756000" + }, + { + "id": "72408", + "name": "Nuevo San José Independencia", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.38968000", + "longitude": "-96.06138000" + }, + { + "id": "72431", + "name": "Oasis", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20167000", + "longitude": "-96.21917000" + }, + { + "id": "72445", + "name": "Ocelota", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.39920000", + "longitude": "-95.28333000" + }, + { + "id": "72451", + "name": "Ocotal Chico", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25771000", + "longitude": "-94.86047000" + }, + { + "id": "72456", + "name": "Ocotitlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04256000", + "longitude": "-96.90832000" + }, + { + "id": "72465", + "name": "Ocozotepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25895000", + "longitude": "-94.91040000" + }, + { + "id": "72476", + "name": "Ohuapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25077000", + "longitude": "-96.98686000" + }, + { + "id": "72478", + "name": "Ohuilapam", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.40204000", + "longitude": "-95.26279000" + }, + { + "id": "72480", + "name": "Ojite Rancho Nuevo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96944000", + "longitude": "-97.52806000" + }, + { + "id": "72503", + "name": "Oluta", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.92972000", + "longitude": "-94.89662000" + }, + { + "id": "72504", + "name": "Omealca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.74732000", + "longitude": "-96.78520000" + }, + { + "id": "72526", + "name": "Orilla del Monte", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66078000", + "longitude": "-97.29274000" + }, + { + "id": "72527", + "name": "Orizaba", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85195000", + "longitude": "-97.09957000" + }, + { + "id": "72536", + "name": "Otates", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.52100000", + "longitude": "-96.71576000" + }, + { + "id": "72538", + "name": "Otatitlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.17706000", + "longitude": "-96.03350000" + }, + { + "id": "72539", + "name": "Oteapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.00173000", + "longitude": "-94.66615000" + }, + { + "id": "72541", + "name": "Otilpan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.55722000", + "longitude": "-96.97667000" + }, + { + "id": "72545", + "name": "Oviedo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.04478000", + "longitude": "-98.40043000" + }, + { + "id": "72559", + "name": "Ozuluama de Mascareñas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.66040000", + "longitude": "-97.85049000" + }, + { + "id": "72567", + "name": "Pacho Nuevo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47717000", + "longitude": "-96.87842000" + }, + { + "id": "72568", + "name": "Pacho Viejo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.48239000", + "longitude": "-96.91659000" + }, + { + "id": "72574", + "name": "Pahua Hueca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96139000", + "longitude": "-97.05511000" + }, + { + "id": "72580", + "name": "Pajapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.26267000", + "longitude": "-94.69172000" + }, + { + "id": "72587", + "name": "Palma Sola", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.77132000", + "longitude": "-96.43225000" + }, + { + "id": "72589", + "name": "Palmar Grande", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51511000", + "longitude": "-96.77880000" + }, + { + "id": "72594", + "name": "Palmas de Abajo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59001000", + "longitude": "-96.43659000" + }, + { + "id": "72599", + "name": "Palmillas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81525000", + "longitude": "-96.77167000" + }, + { + "id": "72602", + "name": "Palmira", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88278000", + "longitude": "-97.11139000" + }, + { + "id": "72606", + "name": "Palo Bendito", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.45710000", + "longitude": "-98.50017000" + }, + { + "id": "72609", + "name": "Palo Gacho", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.39104000", + "longitude": "-96.63675000" + }, + { + "id": "72636", + "name": "Papantla de Olarte", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44655000", + "longitude": "-97.32494000" + }, + { + "id": "72643", + "name": "Paraiso Novillero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.25294000", + "longitude": "-95.93610000" + }, + { + "id": "72645", + "name": "Paraje Nuevo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87886000", + "longitude": "-96.86066000" + }, + { + "id": "72691", + "name": "Paso de Ovejas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.28450000", + "longitude": "-96.44037000" + }, + { + "id": "72693", + "name": "Paso de Valencia", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27186000", + "longitude": "-97.33346000" + }, + { + "id": "72696", + "name": "Paso del Correo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31619000", + "longitude": "-97.27216000" + }, + { + "id": "72697", + "name": "Paso del Macho", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.97098000", + "longitude": "-96.72419000" + }, + { + "id": "72698", + "name": "Paso del Toro", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03500000", + "longitude": "-96.13555000" + }, + { + "id": "72684", + "name": "Paso Nacional", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76639000", + "longitude": "-95.74861000" + }, + { + "id": "73007", + "name": "Pánuco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.05373000", + "longitude": "-98.18498000" + }, + { + "id": "72753", + "name": "Peñuela", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86432000", + "longitude": "-96.89327000" + }, + { + "id": "72737", + "name": "Perote", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56233000", + "longitude": "-97.24235000" + }, + { + "id": "72738", + "name": "Perseverancia", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.21990000", + "longitude": "-97.99627000" + }, + { + "id": "72767", + "name": "Piedra Parada", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34654000", + "longitude": "-96.96013000" + }, + { + "id": "72768", + "name": "Piedra Pinta", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.99115000", + "longitude": "-97.19538000" + }, + { + "id": "72770", + "name": "Piedras Negras", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77026000", + "longitude": "-96.17178000" + }, + { + "id": "72776", + "name": "Piletas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.58806000", + "longitude": "-96.97861000" + }, + { + "id": "72786", + "name": "Pisaflores", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60941000", + "longitude": "-97.92782000" + }, + { + "id": "72796", + "name": "Plan de Arroyos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.89297000", + "longitude": "-97.10888000" + }, + { + "id": "72797", + "name": "Plan de Ayala", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54889000", + "longitude": "-97.47129000" + }, + { + "id": "72802", + "name": "Plan de Iguala", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.03638000", + "longitude": "-98.46457000" + }, + { + "id": "72803", + "name": "Plan de las Hayas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.75963000", + "longitude": "-96.67594000" + }, + { + "id": "72804", + "name": "Plan del Río", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40184000", + "longitude": "-96.65250000" + }, + { + "id": "72808", + "name": "Platón Sánchez", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.27182000", + "longitude": "-98.37456000" + }, + { + "id": "72812", + "name": "Playa de Chachalacas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42352000", + "longitude": "-96.32280000" + }, + { + "id": "72813", + "name": "Playa de la Libertad", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.08306000", + "longitude": "-96.09778000" + }, + { + "id": "72811", + "name": "Playa Vicente", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.83107000", + "longitude": "-95.81189000" + }, + { + "id": "72820", + "name": "Poblado 10", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27722000", + "longitude": "-94.45194000" + }, + { + "id": "72825", + "name": "Poblado Cinco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27453000", + "longitude": "-94.55152000" + }, + { + "id": "72826", + "name": "Poblado Dos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.31895000", + "longitude": "-96.03986000" + }, + { + "id": "72829", + "name": "Poblado Tres", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.28929000", + "longitude": "-96.09114000" + }, + { + "id": "72840", + "name": "Polutla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52799000", + "longitude": "-97.25884000" + }, + { + "id": "72867", + "name": "Potrero del Llano", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07970000", + "longitude": "-97.72814000" + }, + { + "id": "72865", + "name": "Potrero Viejo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87733000", + "longitude": "-96.84357000" + }, + { + "id": "72870", + "name": "Poza Rica de Hidalgo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53315000", + "longitude": "-97.45946000" + }, + { + "id": "72893", + "name": "Presidio", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06933000", + "longitude": "-96.97209000" + }, + { + "id": "72894", + "name": "Presidio (Plan de Libres)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68056000", + "longitude": "-96.77194000" + }, + { + "id": "72899", + "name": "Primero de Mayo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.22524000", + "longitude": "-97.81940000" + }, + { + "id": "72920", + "name": "Progreso de Zaragoza", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.27490000", + "longitude": "-97.71163000" + }, + { + "id": "72928", + "name": "Pueblillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.25438000", + "longitude": "-97.25523000" + }, + { + "id": "72952", + "name": "Pueblo Viejo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.16081000", + "longitude": "-97.91013000" + }, + { + "id": "72957", + "name": "Puente de Piedra", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60550000", + "longitude": "-97.19601000" + }, + { + "id": "72955", + "name": "Puente Jula", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20018000", + "longitude": "-96.34828000" + }, + { + "id": "72970", + "name": "Puerto Esmeralda", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.14778000", + "longitude": "-94.51778000" + }, + { + "id": "72987", + "name": "Puntilla Aldama", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18915000", + "longitude": "-96.90693000" + }, + { + "id": "73030", + "name": "Quiamoloapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.06180000", + "longitude": "-94.99574000" + }, + { + "id": "73043", + "name": "Rafael Delgado", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81014000", + "longitude": "-97.07172000" + }, + { + "id": "73045", + "name": "Rafael Lucio", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.59308000", + "longitude": "-96.99023000" + }, + { + "id": "73057", + "name": "Rancho Alegre", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20722000", + "longitude": "-97.63889000" + }, + { + "id": "73080", + "name": "Rancho del Padre", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06553000", + "longitude": "-96.17281000" + }, + { + "id": "73065", + "name": "Rancho Nuevo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.67250000", + "longitude": "-97.20611000" + }, + { + "id": "73073", + "name": "Rancho Viejo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44451000", + "longitude": "-96.78168000" + }, + { + "id": "73167", + "name": "Río Blanco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83036000", + "longitude": "-97.15600000" + }, + { + "id": "73181", + "name": "Río Medio [Granja]", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.20972000", + "longitude": "-96.20889000" + }, + { + "id": "73099", + "name": "Residencial las Olas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.11861000", + "longitude": "-94.56611000" + }, + { + "id": "73098", + "name": "Residencial Tajín", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59806000", + "longitude": "-97.41694000" + }, + { + "id": "73109", + "name": "Ricardo Flores Magón", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.51444000", + "longitude": "-97.49500000" + }, + { + "id": "73122", + "name": "Rincón de Barrabás", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00590000", + "longitude": "-96.53640000" + }, + { + "id": "73123", + "name": "Rincón de Buena Vista", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75556000", + "longitude": "-96.86861000" + }, + { + "id": "73111", + "name": "Rinconada", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.35438000", + "longitude": "-96.56581000" + }, + { + "id": "73150", + "name": "Rodríguez Tejeda", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.63198000", + "longitude": "-96.41526000" + }, + { + "id": "73189", + "name": "Sabanas de Xalostoc", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22223000", + "longitude": "-97.53525000" + }, + { + "id": "73191", + "name": "Sabaneta", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.22325000", + "longitude": "-95.08082000" + }, + { + "id": "73207", + "name": "Saladero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.42380000", + "longitude": "-97.54381000" + }, + { + "id": "73214", + "name": "Salinas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89022000", + "longitude": "-95.94299000" + }, + { + "id": "73222", + "name": "Saltabarranca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.59119000", + "longitude": "-95.53226000" + }, + { + "id": "73224", + "name": "Saltillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.15893000", + "longitude": "-94.85325000" + }, + { + "id": "73228", + "name": "Salvador Díaz Mirón", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.78580000", + "longitude": "-96.87314000" + }, + { + "id": "73262", + "name": "San Agustín del Palmar", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51679000", + "longitude": "-96.72085000" + }, + { + "id": "73295", + "name": "San Andrés Tenejapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77389000", + "longitude": "-97.08583000" + }, + { + "id": "73300", + "name": "San Andrés Tuxtla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.44870000", + "longitude": "-95.21327000" + }, + { + "id": "73362", + "name": "San Antonio Xoquitla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.34056000", + "longitude": "-97.16500000" + }, + { + "id": "73474", + "name": "San Cristóbal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.82979000", + "longitude": "-97.12392000" + }, + { + "id": "73536", + "name": "San Fernando", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.26900000", + "longitude": "-94.88483000" + }, + { + "id": "73538", + "name": "San Francisco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55254000", + "longitude": "-98.00209000" + }, + { + "id": "73548", + "name": "San Francisco (Mata Clara)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.81444000", + "longitude": "-96.74611000" + }, + { + "id": "73580", + "name": "San Francisco Nacaxtle", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11083000", + "longitude": "-96.59583000" + }, + { + "id": "73663", + "name": "San Isidro", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.89111000", + "longitude": "-97.12583000" + }, + { + "id": "73690", + "name": "San Isidro el Berro", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.92722000", + "longitude": "-97.20556000" + }, + { + "id": "73683", + "name": "San Isidro Palotal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94417000", + "longitude": "-96.96583000" + }, + { + "id": "73685", + "name": "San Isidro Xoteapan (San Isidro Texcaltitán)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46778000", + "longitude": "-95.23806000" + }, + { + "id": "73805", + "name": "San José de Abajo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.77583000", + "longitude": "-96.77722000" + }, + { + "id": "73806", + "name": "San José de Abajo [Unidad Habitacional]", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.91972000", + "longitude": "-96.96361000" + }, + { + "id": "73826", + "name": "San José de Tapia", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84722000", + "longitude": "-96.95389000" + }, + { + "id": "73767", + "name": "San José Independencia", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75583000", + "longitude": "-96.94500000" + }, + { + "id": "73776", + "name": "San José Neria", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.99333000", + "longitude": "-96.99917000" + }, + { + "id": "73783", + "name": "San José Súchil", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.88778000", + "longitude": "-97.23722000" + }, + { + "id": "73788", + "name": "San José Tenejapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01556000", + "longitude": "-96.84306000" + }, + { + "id": "73972", + "name": "San Juan de los Reyes (Luis Valenzuela)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51778000", + "longitude": "-95.44889000" + }, + { + "id": "73892", + "name": "San Juan Evangelista", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88615000", + "longitude": "-95.13961000" + }, + { + "id": "73924", + "name": "San Juan Seco de Valencia", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.30946000", + "longitude": "-95.15605000" + }, + { + "id": "73948", + "name": "San Juan Volador", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.26355000", + "longitude": "-94.65180000" + }, + { + "id": "73985", + "name": "San Julián", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.25680000", + "longitude": "-96.26717000" + }, + { + "id": "73987", + "name": "San Leoncio Jamaya", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31288000", + "longitude": "-97.58127000" + }, + { + "id": "74012", + "name": "San Lorenzo Tenochtitlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.75500000", + "longitude": "-94.76028000" + }, + { + "id": "74068", + "name": "San Marcos Atesquilapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.68972000", + "longitude": "-96.88537000" + }, + { + "id": "74079", + "name": "San Marcos de León", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42377000", + "longitude": "-96.96442000" + }, + { + "id": "74186", + "name": "San Miguel Mecatepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.52896000", + "longitude": "-97.48744000" + }, + { + "id": "74214", + "name": "San Miguel Tlalpoalán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.73981000", + "longitude": "-97.22662000" + }, + { + "id": "74330", + "name": "San Pedro Coyutla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.22410000", + "longitude": "-98.43002000" + }, + { + "id": "74356", + "name": "San Pedro Mártir", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97870000", + "longitude": "-94.61033000" + }, + { + "id": "74387", + "name": "San Pedro Tlanixco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06259000", + "longitude": "-99.65237000" + }, + { + "id": "74389", + "name": "San Pedro Tlapacoyan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05806000", + "longitude": "-97.09833000" + }, + { + "id": "74422", + "name": "San Rafael", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18862000", + "longitude": "-96.86737000" + }, + { + "id": "74430", + "name": "San Rafael Calería", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.94039000", + "longitude": "-96.94394000" + }, + { + "id": "74432", + "name": "San Rafael Río Seco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87608000", + "longitude": "-96.88127000" + }, + { + "id": "74455", + "name": "San Sebastián", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21724000", + "longitude": "-98.13271000" + }, + { + "id": "74570", + "name": "Santa Catalina", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.16353000", + "longitude": "-95.20779000" + }, + { + "id": "74675", + "name": "Santa Isabel", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19222000", + "longitude": "-97.52917000" + }, + { + "id": "74689", + "name": "Santa Lucía Potrerillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.96917000", + "longitude": "-97.02417000" + }, + { + "id": "74776", + "name": "Santa María Tatetla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.27278000", + "longitude": "-96.71251000" + }, + { + "id": "74830", + "name": "Santa Rita", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16736000", + "longitude": "-96.26000000" + }, + { + "id": "74834", + "name": "Santa Rosa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.47078000", + "longitude": "-96.46514000" + }, + { + "id": "74841", + "name": "Santa Rosa Abata", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46190000", + "longitude": "-95.16765000" + }, + { + "id": "74844", + "name": "Santa Rosa Loma Larga", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23098000", + "longitude": "-95.08710000" + }, + { + "id": "74857", + "name": "Santa Teresa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.69562000", + "longitude": "-95.67276000" + }, + { + "id": "74866", + "name": "Santiago", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.44884000", + "longitude": "-95.83037000" + }, + { + "id": "74986", + "name": "Santiago de la Peña", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94512000", + "longitude": "-97.40493000" + }, + { + "id": "74939", + "name": "Santiago Sochiapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.61585000", + "longitude": "-95.65276000" + }, + { + "id": "74968", + "name": "Santiago Tuxtla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46576000", + "longitude": "-95.30060000" + }, + { + "id": "75042", + "name": "Sasaltitla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93518000", + "longitude": "-98.19703000" + }, + { + "id": "75047", + "name": "Sayula de Alemán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.88191000", + "longitude": "-94.95986000" + }, + { + "id": "75074", + "name": "Sierra de Agua", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75028000", + "longitude": "-97.24167000" + }, + { + "id": "75077", + "name": "Sihuapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43663000", + "longitude": "-95.17833000" + }, + { + "id": "75094", + "name": "Sinapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.53480000", + "longitude": "-95.29287000" + }, + { + "id": "75106", + "name": "Sochiapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.19292000", + "longitude": "-96.93989000" + }, + { + "id": "75108", + "name": "Soconusco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.96315000", + "longitude": "-94.88097000" + }, + { + "id": "75111", + "name": "Soledad Atzompa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.75499000", + "longitude": "-97.15040000" + }, + { + "id": "75116", + "name": "Soledad de Doblado", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04637000", + "longitude": "-96.42142000" + }, + { + "id": "75122", + "name": "Sonora", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.11219000", + "longitude": "-96.63531000" + }, + { + "id": "75123", + "name": "Sontecomapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50289000", + "longitude": "-95.03507000" + }, + { + "id": "75125", + "name": "Soteapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23391000", + "longitude": "-94.87296000" + }, + { + "id": "75131", + "name": "Soyata", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.36889000", + "longitude": "-95.28222000" + }, + { + "id": "75140", + "name": "Suchilapan del Río", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.38611000", + "longitude": "-94.98806000" + }, + { + "id": "75149", + "name": "Sumidero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.90393000", + "longitude": "-97.02152000" + }, + { + "id": "75174", + "name": "Tamalín", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.33936000", + "longitude": "-97.81188000" + }, + { + "id": "75187", + "name": "Tamiahua", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.27881000", + "longitude": "-97.44620000" + }, + { + "id": "75192", + "name": "Tampico Alto", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "22.11240000", + "longitude": "-97.80184000" + }, + { + "id": "75204", + "name": "Tancoco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.28622000", + "longitude": "-97.79139000" + }, + { + "id": "75218", + "name": "Tantima", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.33228000", + "longitude": "-97.83327000" + }, + { + "id": "75219", + "name": "Tantoyuca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.39307000", + "longitude": "-98.18453000" + }, + { + "id": "75223", + "name": "Tapalapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.53250000", + "longitude": "-95.30631000" + }, + { + "id": "75237", + "name": "Tatahuicapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.24621000", + "longitude": "-94.76124000" + }, + { + "id": "75240", + "name": "Tatatila", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.69320000", + "longitude": "-97.11160000" + }, + { + "id": "75250", + "name": "Taza de Agua Ojo Zarco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78333000", + "longitude": "-97.20222000" + }, + { + "id": "75857", + "name": "Túxpam de Rodríguez Cano", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.95777000", + "longitude": "-97.40805000" + }, + { + "id": "75257", + "name": "Teayo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74419000", + "longitude": "-97.67966000" + }, + { + "id": "75262", + "name": "Tecama", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00379000", + "longitude": "-96.98529000" + }, + { + "id": "75265", + "name": "Tecamalucan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.76098000", + "longitude": "-97.22516000" + }, + { + "id": "75274", + "name": "Tecolapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.57037000", + "longitude": "-95.33969000" + }, + { + "id": "75279", + "name": "Tecolutla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48049000", + "longitude": "-97.01309000" + }, + { + "id": "75299", + "name": "Tehuipango", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.51964000", + "longitude": "-97.05438000" + }, + { + "id": "75328", + "name": "Temapache", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06611000", + "longitude": "-97.64207000" + }, + { + "id": "75342", + "name": "Tempoal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.56506000", + "longitude": "-98.37907000" + }, + { + "id": "75343", + "name": "Tempoal de Sánchez", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.51998000", + "longitude": "-98.38829000" + }, + { + "id": "75346", + "name": "Tenampa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.24626000", + "longitude": "-96.86858000" + }, + { + "id": "75359", + "name": "Tenantitla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.77031000", + "longitude": "-98.14433000" + }, + { + "id": "75360", + "name": "Tenenexpan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.14105000", + "longitude": "-96.39454000" + }, + { + "id": "75367", + "name": "Tenixtepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.02116000", + "longitude": "-97.14729000" + }, + { + "id": "75369", + "name": "Tenochtitlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.80917000", + "longitude": "-96.91611000" + }, + { + "id": "75373", + "name": "Teocelo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.38560000", + "longitude": "-96.97371000" + }, + { + "id": "75400", + "name": "Tepatlaxco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.06927000", + "longitude": "-96.84481000" + }, + { + "id": "75429", + "name": "Tepetlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.67318000", + "longitude": "-96.79734000" + }, + { + "id": "75435", + "name": "Tepetzintla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.16410000", + "longitude": "-97.85236000" + }, + { + "id": "75459", + "name": "Tequila", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72998000", + "longitude": "-97.06991000" + }, + { + "id": "75471", + "name": "Tesechoacan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.13749000", + "longitude": "-95.65835000" + }, + { + "id": "75484", + "name": "Teteltzingo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.05141000", + "longitude": "-97.14465000" + }, + { + "id": "75492", + "name": "Tetla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.98709000", + "longitude": "-97.06085000" + }, + { + "id": "75494", + "name": "Tetlatzinga", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.69472000", + "longitude": "-97.18444000" + }, + { + "id": "75495", + "name": "Tetlaxco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04044000", + "longitude": "-97.06393000" + }, + { + "id": "75496", + "name": "Tetzacual", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.77329000", + "longitude": "-98.26876000" + }, + { + "id": "75497", + "name": "Texalpan de Abajo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.42749000", + "longitude": "-95.25614000" + }, + { + "id": "75498", + "name": "Texalpan de Arriba", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.42944000", + "longitude": "-95.24417000" + }, + { + "id": "75508", + "name": "Texcaltitán Xoteapan (Texcaltitán)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.44667000", + "longitude": "-95.25333000" + }, + { + "id": "75513", + "name": "Texcatepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58505000", + "longitude": "-98.36538000" + }, + { + "id": "75516", + "name": "Texhuacán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.62233000", + "longitude": "-97.04025000" + }, + { + "id": "75517", + "name": "Texin", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36598000", + "longitude": "-97.00487000" + }, + { + "id": "75518", + "name": "Texistepec", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.89476000", + "longitude": "-94.81711000" + }, + { + "id": "75520", + "name": "Texmola", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.93972000", + "longitude": "-97.24389000" + }, + { + "id": "75527", + "name": "Tezonapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.60706000", + "longitude": "-96.68417000" + }, + { + "id": "75547", + "name": "Tierra Blanca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.87500000", + "longitude": "-97.46000000" + }, + { + "id": "75548", + "name": "Tierra Blanca Booxter", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99479000", + "longitude": "-97.71681000" + }, + { + "id": "75550", + "name": "Tierra Colorada", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22544000", + "longitude": "-96.36929000" + }, + { + "id": "75554", + "name": "Tierra Nueva", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.93925000", + "longitude": "-97.01644000" + }, + { + "id": "75560", + "name": "Tihuatlan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71449000", + "longitude": "-97.53335000" + }, + { + "id": "75561", + "name": "Tihuatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65485000", + "longitude": "-97.52598000" + }, + { + "id": "75567", + "name": "Tilapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.34917000", + "longitude": "-95.32806000" + }, + { + "id": "75575", + "name": "Tinajitas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.61806000", + "longitude": "-96.44250000" + }, + { + "id": "75576", + "name": "Tincontlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.82141000", + "longitude": "-97.69083000" + }, + { + "id": "75600", + "name": "Tlachichilco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62123000", + "longitude": "-98.19900000" + }, + { + "id": "75607", + "name": "Tlacojalpan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23096000", + "longitude": "-95.94682000" + }, + { + "id": "75608", + "name": "Tlacolula", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.09177000", + "longitude": "-97.95960000" + }, + { + "id": "75610", + "name": "Tlacolulan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.66687000", + "longitude": "-97.00194000" + }, + { + "id": "75613", + "name": "Tlacotalpan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.61333000", + "longitude": "-95.65890000" + }, + { + "id": "75621", + "name": "Tlacotepec de Mejía", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18946000", + "longitude": "-96.83805000" + }, + { + "id": "75624", + "name": "Tlacuilolapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.97778000", + "longitude": "-94.26306000" + }, + { + "id": "75637", + "name": "Tlalconteno", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44863000", + "longitude": "-97.24642000" + }, + { + "id": "75639", + "name": "Tlalixcoyan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80222000", + "longitude": "-96.06056000" + }, + { + "id": "75644", + "name": "Tlalnelhuayocan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56681000", + "longitude": "-96.97534000" + }, + { + "id": "75657", + "name": "Tlaltetela", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.31421000", + "longitude": "-96.90105000" + }, + { + "id": "75664", + "name": "Tlamatoca", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.09336000", + "longitude": "-96.93685000" + }, + { + "id": "75677", + "name": "Tlapacoyan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.96268000", + "longitude": "-97.21141000" + }, + { + "id": "75678", + "name": "Tlapala", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26165000", + "longitude": "-96.91878000" + }, + { + "id": "75687", + "name": "Tlatilpa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.73389000", + "longitude": "-97.14417000" + }, + { + "id": "75692", + "name": "Tlatzala", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.72861000", + "longitude": "-97.14111000" + }, + { + "id": "75709", + "name": "Tlilapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.80560000", + "longitude": "-97.09867000" + }, + { + "id": "75717", + "name": "Tocuila", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.95000000", + "longitude": "-97.01667000" + }, + { + "id": "75722", + "name": "Tolome", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.26667000", + "longitude": "-96.39472000" + }, + { + "id": "75727", + "name": "Tomatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.03102000", + "longitude": "-97.00986000" + }, + { + "id": "75731", + "name": "Tonalaco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42931000", + "longitude": "-97.13271000" + }, + { + "id": "75734", + "name": "Tonalapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46833000", + "longitude": "-95.22000000" + }, + { + "id": "75737", + "name": "Tonalá", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.20714000", + "longitude": "-94.14174000" + }, + { + "id": "75735", + "name": "Tonalixco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78194000", + "longitude": "-97.05972000" + }, + { + "id": "75742", + "name": "Tonayán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.71228000", + "longitude": "-96.91959000" + }, + { + "id": "75751", + "name": "Totolapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55800000", + "longitude": "-97.47636000" + }, + { + "id": "75759", + "name": "Totutla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.21169000", + "longitude": "-96.96118000" + }, + { + "id": "75763", + "name": "Tozongo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.10031000", + "longitude": "-97.06087000" + }, + { + "id": "75769", + "name": "Trapiche del Rosario", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.54306000", + "longitude": "-96.74111000" + }, + { + "id": "75768", + "name": "Trapiche Viejo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84306000", + "longitude": "-96.94556000" + }, + { + "id": "75778", + "name": "Tres Valles", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23915000", + "longitude": "-96.13569000" + }, + { + "id": "75779", + "name": "Tres Zapotes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.46827000", + "longitude": "-95.43710000" + }, + { + "id": "75784", + "name": "Tronconal", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.56404000", + "longitude": "-96.86324000" + }, + { + "id": "75788", + "name": "Tula", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.58672000", + "longitude": "-95.37679000" + }, + { + "id": "75795", + "name": "Tulapam", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.31434000", + "longitude": "-95.22619000" + }, + { + "id": "75821", + "name": "Tuxpan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94633000", + "longitude": "-97.42603000" + }, + { + "id": "75822", + "name": "Tuxpanguillo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.78229000", + "longitude": "-97.01283000" + }, + { + "id": "75824", + "name": "Tuxtilla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.18790000", + "longitude": "-95.88014000" + }, + { + "id": "75829", + "name": "Tuzamapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.40253000", + "longitude": "-96.86360000" + }, + { + "id": "75838", + "name": "Tzicatlán", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.67396000", + "longitude": "-98.23604000" + }, + { + "id": "75888", + "name": "Unión y Progreso", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.87278000", + "longitude": "-97.11917000" + }, + { + "id": "75903", + "name": "Uxpanapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.27501000", + "longitude": "-94.42594000" + }, + { + "id": "75909", + "name": "Valente Diaz", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.16347000", + "longitude": "-96.21648000" + }, + { + "id": "75938", + "name": "Vargas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.22774000", + "longitude": "-96.32046000" + }, + { + "id": "75939", + "name": "Vega de Alatorre", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.02823000", + "longitude": "-96.64751000" + }, + { + "id": "75942", + "name": "Vegas de la Soledad y Soledad Dos", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94476000", + "longitude": "-97.83273000" + }, + { + "id": "75945", + "name": "Veinte de Noviembre", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.86500000", + "longitude": "-96.95472000" + }, + { + "id": "75949", + "name": "Veintiuno de Agosto", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.72500000", + "longitude": "-97.27222000" + }, + { + "id": "75964", + "name": "Venustiano Carranza (Peña Blanca)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.64194000", + "longitude": "-94.75417000" + }, + { + "id": "75965", + "name": "Veracruz", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.18095000", + "longitude": "-96.14290000" + }, + { + "id": "75974", + "name": "Vicente Guerrero", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.49594000", + "longitude": "-94.71940000" + }, + { + "id": "75981", + "name": "Vicente Herrera", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57695000", + "longitude": "-97.34973000" + }, + { + "id": "75989", + "name": "Villa Aldama", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.64861000", + "longitude": "-97.22333000" + }, + { + "id": "75993", + "name": "Villa Azueta", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.07418000", + "longitude": "-95.71225000" + }, + { + "id": "76071", + "name": "Villa de las Flores", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.57639000", + "longitude": "-97.43361000" + }, + { + "id": "76000", + "name": "Villa Emiliano Zapata", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.36353000", + "longitude": "-96.65776000" + }, + { + "id": "76001", + "name": "Villa Emilio Carranza", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.97020000", + "longitude": "-96.61162000" + }, + { + "id": "76017", + "name": "Villa Independencia", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05523000", + "longitude": "-97.05214000" + }, + { + "id": "76028", + "name": "Villa Lázaro Cárdenas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46193000", + "longitude": "-97.70024000" + }, + { + "id": "76050", + "name": "Villa Unión", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.85438000", + "longitude": "-96.98246000" + }, + { + "id": "76059", + "name": "Villa Zempoala", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.44422000", + "longitude": "-96.40773000" + }, + { + "id": "76094", + "name": "Vista Hermosa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.92361000", + "longitude": "-95.06083000" + }, + { + "id": "76113", + "name": "Xalapa de Enríquez", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.53124000", + "longitude": "-96.91589000" + }, + { + "id": "76115", + "name": "Xalatlaco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.04972000", + "longitude": "-97.04111000" + }, + { + "id": "76137", + "name": "Xico", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.42178000", + "longitude": "-97.00819000" + }, + { + "id": "76152", + "name": "Xoampolco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.76055000", + "longitude": "-97.22965000" + }, + { + "id": "76167", + "name": "Xochimilco", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86302000", + "longitude": "-98.06967000" + }, + { + "id": "76182", + "name": "Xococapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80917000", + "longitude": "-98.35118000" + }, + { + "id": "76185", + "name": "Xocotla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.01511000", + "longitude": "-97.10092000" + }, + { + "id": "76198", + "name": "Xopilapa", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.50472000", + "longitude": "-97.07944000" + }, + { + "id": "76199", + "name": "Xoteapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.43470000", + "longitude": "-95.26645000" + }, + { + "id": "76200", + "name": "Xoxocotla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.64658000", + "longitude": "-97.15244000" + }, + { + "id": "76215", + "name": "Yanga", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.83288000", + "longitude": "-96.79837000" + }, + { + "id": "76230", + "name": "Yecuatla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.86614000", + "longitude": "-96.77836000" + }, + { + "id": "76256", + "name": "Zacamixtle", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "21.24762000", + "longitude": "-97.72155000" + }, + { + "id": "76270", + "name": "Zacate Colorado", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49735000", + "longitude": "-97.52416000" + }, + { + "id": "76271", + "name": "Zacate Colorado Segundo (Fraternidad)", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.68333000", + "longitude": "-95.97111000" + }, + { + "id": "76276", + "name": "Zacatla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.00528000", + "longitude": "-97.13437000" + }, + { + "id": "76287", + "name": "Zacualpan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49929000", + "longitude": "-98.33931000" + }, + { + "id": "76293", + "name": "Zamora", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.58101000", + "longitude": "-95.48361000" + }, + { + "id": "76298", + "name": "Zapoapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.84018000", + "longitude": "-96.99297000" + }, + { + "id": "76299", + "name": "Zapoapan de Amapan", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.23778000", + "longitude": "-95.18452000" + }, + { + "id": "76300", + "name": "Zapoapan de Cabañas", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.33395000", + "longitude": "-95.09725000" + }, + { + "id": "76320", + "name": "Zaragoza", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "17.94871000", + "longitude": "-94.64361000" + }, + { + "id": "76329", + "name": "Zentla", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "19.07237000", + "longitude": "-96.75442000" + }, + { + "id": "76362", + "name": "Zongolica", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "18.66673000", + "longitude": "-96.99707000" + }, + { + "id": "76364", + "name": "Zontecomatlán de López y Fuentes", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74173000", + "longitude": "-98.29972000" + }, + { + "id": "76382", + "name": "Zozocolco de Hidalgo", + "state_id": 3464, + "state_code": "VER", + "country_id": 142, + "country_code": "MX", + "latitude": "20.14048000", + "longitude": "-97.57567000" + }, + { + "id": "68010", + "name": "Abala", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64745000", + "longitude": "-89.68094000" + }, + { + "id": "68011", + "name": "Abalá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66493000", + "longitude": "-89.65672000" + }, + { + "id": "68035", + "name": "Acanceh", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81269000", + "longitude": "-89.45295000" + }, + { + "id": "68170", + "name": "Akil", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.26547000", + "longitude": "-89.34787000" + }, + { + "id": "68479", + "name": "Baca", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10874000", + "longitude": "-89.39866000" + }, + { + "id": "68569", + "name": "Becanchén", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "19.87467000", + "longitude": "-89.21732000" + }, + { + "id": "68628", + "name": "Bokoba", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00755000", + "longitude": "-89.17913000" + }, + { + "id": "68629", + "name": "Bokobá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00641000", + "longitude": "-89.17641000" + }, + { + "id": "68631", + "name": "Bolón", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.85010000", + "longitude": "-89.83193000" + }, + { + "id": "68657", + "name": "Buctzotz", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.20303000", + "longitude": "-88.79271000" + }, + { + "id": "68708", + "name": "Cacalchén", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.98804000", + "longitude": "-89.23802000" + }, + { + "id": "68707", + "name": "Cacalchen", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.98358000", + "longitude": "-89.22686000" + }, + { + "id": "68729", + "name": "Calcehtoc", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.56807000", + "longitude": "-89.91242000" + }, + { + "id": "68745", + "name": "Calotmul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02494000", + "longitude": "-88.12581000" + }, + { + "id": "68771", + "name": "Campestre Flamboyanes", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21000000", + "longitude": "-89.65778000" + }, + { + "id": "68792", + "name": "Cansahcab", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15749000", + "longitude": "-89.10131000" + }, + { + "id": "68794", + "name": "Cantamayec", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43186000", + "longitude": "-89.07176000" + }, + { + "id": "68865", + "name": "Caucel", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01539000", + "longitude": "-89.70347000" + }, + { + "id": "68893", + "name": "Celestún", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.85973000", + "longitude": "-90.39902000" + }, + { + "id": "68897", + "name": "Cenotillo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96621000", + "longitude": "-88.60438000" + }, + { + "id": "68903", + "name": "Cepeda", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.50600000", + "longitude": "-90.10979000" + }, + { + "id": "68942", + "name": "Chablekal", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.09647000", + "longitude": "-89.57774000" + }, + { + "id": "68951", + "name": "Chacsinkín", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18176000", + "longitude": "-89.00786000" + }, + { + "id": "68950", + "name": "Chacsinkin", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.17222000", + "longitude": "-89.01654000" + }, + { + "id": "68972", + "name": "Chan Cenote", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99142000", + "longitude": "-87.78564000" + }, + { + "id": "68975", + "name": "Chankom", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49656000", + "longitude": "-88.56928000" + }, + { + "id": "68978", + "name": "Chapab", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48633000", + "longitude": "-89.46779000" + }, + { + "id": "69005", + "name": "Chelem", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.26967000", + "longitude": "-89.74006000" + }, + { + "id": "69006", + "name": "Chemax", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.65613000", + "longitude": "-87.93640000" + }, + { + "id": "69033", + "name": "Chichén-Itzá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66667000", + "longitude": "-88.56667000" + }, + { + "id": "69030", + "name": "Chichimila", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.63176000", + "longitude": "-88.21689000" + }, + { + "id": "69031", + "name": "Chichimilá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46641000", + "longitude": "-88.18044000" + }, + { + "id": "69049", + "name": "Chicxulub Pueblo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14527000", + "longitude": "-89.51331000" + }, + { + "id": "69050", + "name": "Chicxulub Puerto", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.29618000", + "longitude": "-89.59867000" + }, + { + "id": "69058", + "name": "Chikindzonot", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33436000", + "longitude": "-88.48630000" + }, + { + "id": "69098", + "name": "Chochola", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75087000", + "longitude": "-89.83041000" + }, + { + "id": "69099", + "name": "Chocholá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75112000", + "longitude": "-89.84547000" + }, + { + "id": "69101", + "name": "Cholul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.04255000", + "longitude": "-89.55875000" + }, + { + "id": "69102", + "name": "Cholul Cantón", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01078000", + "longitude": "-89.29147000" + }, + { + "id": "69109", + "name": "Chuburná", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.25778000", + "longitude": "-89.79843000" + }, + { + "id": "69116", + "name": "Chumayel", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.42833000", + "longitude": "-89.30111000" + }, + { + "id": "69118", + "name": "Chunchucmil", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64303000", + "longitude": "-90.21413000" + }, + { + "id": "69139", + "name": "Citilcum", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.95146000", + "longitude": "-89.11805000" + }, + { + "id": "69380", + "name": "Colonia Yucatán", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21305000", + "longitude": "-87.72416000" + }, + { + "id": "69459", + "name": "Conkal", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07365000", + "longitude": "-89.51995000" + }, + { + "id": "69603", + "name": "Cuch Holoch", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43450000", + "longitude": "-90.09694000" + }, + { + "id": "69639", + "name": "Cuncunul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62333000", + "longitude": "-88.34637000" + }, + { + "id": "69655", + "name": "Cuzama", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74202000", + "longitude": "-89.31732000" + }, + { + "id": "69656", + "name": "Cuzamá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72176000", + "longitude": "-89.33463000" + }, + { + "id": "69733", + "name": "Dzan", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38888000", + "longitude": "-89.46855000" + }, + { + "id": "69750", + "name": "Dzán", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39036000", + "longitude": "-89.46185000" + }, + { + "id": "69734", + "name": "Dzemul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21036000", + "longitude": "-89.30956000" + }, + { + "id": "69736", + "name": "Dzibikak", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90046000", + "longitude": "-89.79532000" + }, + { + "id": "69738", + "name": "Dzidzantún", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.28932000", + "longitude": "-89.02844000" + }, + { + "id": "69737", + "name": "Dzidzantun", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.24898000", + "longitude": "-89.04205000" + }, + { + "id": "69740", + "name": "Dzilam de Bravo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.43361000", + "longitude": "-88.66838000" + }, + { + "id": "69739", + "name": "Dzilam González", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.28098000", + "longitude": "-88.92957000" + }, + { + "id": "69744", + "name": "Dzitás", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.84089000", + "longitude": "-88.52908000" + }, + { + "id": "69742", + "name": "Dzitnup", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64725000", + "longitude": "-88.24453000" + }, + { + "id": "69743", + "name": "Dzityá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05186000", + "longitude": "-89.67851000" + }, + { + "id": "69746", + "name": "Dzoncauich", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.09826000", + "longitude": "-88.85402000" + }, + { + "id": "69747", + "name": "Dzonot Carretero", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.40084000", + "longitude": "-87.87860000" + }, + { + "id": "69749", + "name": "Dzununcan", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86469000", + "longitude": "-89.65380000" + }, + { + "id": "69820", + "name": "Ekmul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96460000", + "longitude": "-89.35004000" + }, + { + "id": "69821", + "name": "Ekpedz", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.31647000", + "longitude": "-88.43064000" + }, + { + "id": "69939", + "name": "El Cuyo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.51568000", + "longitude": "-87.67878000" + }, + { + "id": "70280", + "name": "Emiliano Zapata", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.22605000", + "longitude": "-89.46813000" + }, + { + "id": "70331", + "name": "Espita", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01098000", + "longitude": "-88.30681000" + }, + { + "id": "70378", + "name": "Euan", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99660000", + "longitude": "-89.34248000" + }, + { + "id": "70661", + "name": "Halachó", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47770000", + "longitude": "-90.08104000" + }, + { + "id": "70699", + "name": "Hocaba", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81620000", + "longitude": "-89.24626000" + }, + { + "id": "70700", + "name": "Hocabá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80841000", + "longitude": "-89.23790000" + }, + { + "id": "70702", + "name": "Hoctún", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.87271000", + "longitude": "-89.19647000" + }, + { + "id": "70701", + "name": "Hoctun", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86513000", + "longitude": "-89.20125000" + }, + { + "id": "70703", + "name": "Holca", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.75647000", + "longitude": "-88.92916000" + }, + { + "id": "70705", + "name": "Homún", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69058000", + "longitude": "-89.24464000" + }, + { + "id": "70704", + "name": "Homun", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73918000", + "longitude": "-89.28490000" + }, + { + "id": "70787", + "name": "Huhí", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70776000", + "longitude": "-89.15234000" + }, + { + "id": "70786", + "name": "Huhi", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72603000", + "longitude": "-89.16072000" + }, + { + "id": "70823", + "name": "Hunucmá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01723000", + "longitude": "-89.87551000" + }, + { + "id": "70824", + "name": "Hunuku", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.85230000", + "longitude": "-88.08946000" + }, + { + "id": "70895", + "name": "Itzincab Palomeque", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91644000", + "longitude": "-89.69823000" + }, + { + "id": "70917", + "name": "Ixil", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15235000", + "longitude": "-89.48182000" + }, + { + "id": "70948", + "name": "Izamal", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93537000", + "longitude": "-89.01802000" + }, + { + "id": "71150", + "name": "Kanasín", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93482000", + "longitude": "-89.55871000" + }, + { + "id": "71151", + "name": "Kancab", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.19571000", + "longitude": "-89.34563000" + }, + { + "id": "71153", + "name": "Kantunil", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79645000", + "longitude": "-89.03539000" + }, + { + "id": "71155", + "name": "Kanxoc", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61555000", + "longitude": "-88.09764000" + }, + { + "id": "71156", + "name": "Kaua", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.62476000", + "longitude": "-88.42440000" + }, + { + "id": "71160", + "name": "Kimbila", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93403000", + "longitude": "-89.12470000" + }, + { + "id": "71161", + "name": "Kinchil", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.91519000", + "longitude": "-89.94825000" + }, + { + "id": "71162", + "name": "Kini", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.13557000", + "longitude": "-89.31691000" + }, + { + "id": "71163", + "name": "Kinil", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32379000", + "longitude": "-89.13285000" + }, + { + "id": "71164", + "name": "Kochol", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.61867000", + "longitude": "-90.15906000" + }, + { + "id": "71165", + "name": "Komchén", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10342000", + "longitude": "-89.66242000" + }, + { + "id": "71166", + "name": "Kopoma", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64906000", + "longitude": "-89.89989000" + }, + { + "id": "71167", + "name": "Kopomá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64258000", + "longitude": "-89.90765000" + }, + { + "id": "71590", + "name": "Las Coloradas", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.60767000", + "longitude": "-87.99045000" + }, + { + "id": "71660", + "name": "Leona Vicario", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90944000", + "longitude": "-89.60111000" + }, + { + "id": "71661", + "name": "Lepan", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71243000", + "longitude": "-89.49719000" + }, + { + "id": "71673", + "name": "Libre Unión", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70635000", + "longitude": "-88.80959000" + }, + { + "id": "71705", + "name": "Loché", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.38828000", + "longitude": "-88.14566000" + }, + { + "id": "71950", + "name": "Mama", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.47857000", + "longitude": "-89.36498000" + }, + { + "id": "71975", + "name": "Maní", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.37097000", + "longitude": "-89.37760000" + }, + { + "id": "71956", + "name": "Mani", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.38774000", + "longitude": "-89.39189000" + }, + { + "id": "72026", + "name": "Maxcanú", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.58456000", + "longitude": "-90.00100000" + }, + { + "id": "72032", + "name": "Mayapan", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.46839000", + "longitude": "-89.21395000" + }, + { + "id": "72033", + "name": "Mayapán", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49482000", + "longitude": "-89.19105000" + }, + { + "id": "72261", + "name": "Mérida", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97537000", + "longitude": "-89.61696000" + }, + { + "id": "72174", + "name": "Mococha", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10621000", + "longitude": "-89.45217000" + }, + { + "id": "72175", + "name": "Mocochá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.11100000", + "longitude": "-89.45403000" + }, + { + "id": "72182", + "name": "Molas", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81665000", + "longitude": "-89.62998000" + }, + { + "id": "72242", + "name": "Motul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.09571000", + "longitude": "-89.28332000" + }, + { + "id": "72253", + "name": "Muna", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.48794000", + "longitude": "-89.71387000" + }, + { + "id": "72257", + "name": "Muxupip", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.04728000", + "longitude": "-89.32810000" + }, + { + "id": "72269", + "name": "Nacuche", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.92466000", + "longitude": "-88.29582000" + }, + { + "id": "72342", + "name": "Nolo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00947000", + "longitude": "-89.42312000" + }, + { + "id": "72512", + "name": "Opichén", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55769000", + "longitude": "-89.87240000" + }, + { + "id": "72511", + "name": "Opichen", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.55169000", + "longitude": "-89.85714000" + }, + { + "id": "72547", + "name": "Oxcum", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94514000", + "longitude": "-89.76189000" + }, + { + "id": "72551", + "name": "Oxkutzcab", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24086000", + "longitude": "-89.44600000" + }, + { + "id": "72552", + "name": "Oxkutzkab", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.30734000", + "longitude": "-89.41809000" + }, + { + "id": "72619", + "name": "Panabá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.29598000", + "longitude": "-88.26982000" + }, + { + "id": "72728", + "name": "Pencuyut", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29408000", + "longitude": "-89.28947000" + }, + { + "id": "72746", + "name": "Peto", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.12776000", + "longitude": "-88.92282000" + }, + { + "id": "72788", + "name": "Piste", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69972000", + "longitude": "-88.58889000" + }, + { + "id": "72791", + "name": "Pixoy", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71642000", + "longitude": "-88.26431000" + }, + { + "id": "72850", + "name": "Popola", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.73324000", + "longitude": "-88.23744000" + }, + { + "id": "72851", + "name": "Popolnah", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.99350000", + "longitude": "-87.56281000" + }, + { + "id": "72908", + "name": "Progreso", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.28306000", + "longitude": "-89.66123000" + }, + { + "id": "73001", + "name": "Pustunich", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.36914000", + "longitude": "-89.51187000" + }, + { + "id": "73037", + "name": "Quintana Roo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.84464000", + "longitude": "-88.65081000" + }, + { + "id": "73179", + "name": "Río Lagartos", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.59670000", + "longitude": "-88.15773000" + }, + { + "id": "73197", + "name": "Sacalum", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49749000", + "longitude": "-89.59035000" + }, + { + "id": "73200", + "name": "Sahcaba", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79174000", + "longitude": "-89.18138000" + }, + { + "id": "73233", + "name": "Samahil", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86433000", + "longitude": "-89.91398000" + }, + { + "id": "73353", + "name": "San Antonio Tedzidz", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.83560000", + "longitude": "-89.97575000" + }, + { + "id": "73564", + "name": "San Francisco Grande", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70071000", + "longitude": "-88.47345000" + }, + { + "id": "73797", + "name": "San José Tzal", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.82418000", + "longitude": "-89.66049000" + }, + { + "id": "74324", + "name": "San Pedro Chimay", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86465000", + "longitude": "-89.57960000" + }, + { + "id": "74423", + "name": "San Rafael", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70323000", + "longitude": "-90.15843000" + }, + { + "id": "74513", + "name": "Sanahcat", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.77587000", + "longitude": "-89.21091000" + }, + { + "id": "74652", + "name": "Santa Elena", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32890000", + "longitude": "-89.64363000" + }, + { + "id": "74707", + "name": "Santa María Acú", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54644000", + "longitude": "-90.16365000" + }, + { + "id": "74994", + "name": "Santo Domingo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60000000", + "longitude": "-90.11667000" + }, + { + "id": "75066", + "name": "Seyé", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.83568000", + "longitude": "-89.37174000" + }, + { + "id": "75073", + "name": "Sierra Papacal", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12522000", + "longitude": "-89.73018000" + }, + { + "id": "75093", + "name": "Sinanché", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.27623000", + "longitude": "-89.20096000" + }, + { + "id": "75092", + "name": "Sinanche", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.22591000", + "longitude": "-89.18495000" + }, + { + "id": "75097", + "name": "Sisal", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.16700000", + "longitude": "-90.02532000" + }, + { + "id": "75100", + "name": "Sitilpech", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.94049000", + "longitude": "-88.95677000" + }, + { + "id": "75103", + "name": "Sitpach", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.02652000", + "longitude": "-89.52120000" + }, + { + "id": "75128", + "name": "Sotuta", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59678000", + "longitude": "-89.00815000" + }, + { + "id": "75143", + "name": "Sucilá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15650000", + "longitude": "-88.31405000" + }, + { + "id": "75144", + "name": "Sucopó", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.16155000", + "longitude": "-88.04742000" + }, + { + "id": "75145", + "name": "Sudzal", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81427000", + "longitude": "-88.90030000" + }, + { + "id": "75147", + "name": "Suma", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.10591000", + "longitude": "-89.15487000" + }, + { + "id": "75148", + "name": "Suma de Hidalgo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.08643000", + "longitude": "-89.14766000" + }, + { + "id": "75170", + "name": "Tahdziú", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24217000", + "longitude": "-88.90977000" + }, + { + "id": "75168", + "name": "Tahdzibichen", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.44916000", + "longitude": "-88.83068000" + }, + { + "id": "75169", + "name": "Tahdziu", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20508000", + "longitude": "-88.94555000" + }, + { + "id": "75171", + "name": "Tahmek", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.87360000", + "longitude": "-89.25473000" + }, + { + "id": "75252", + "name": "Teabo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.40059000", + "longitude": "-89.28316000" + }, + { + "id": "75268", + "name": "Tecax", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.20520000", + "longitude": "-89.28522000" + }, + { + "id": "75273", + "name": "Tecoh", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69640000", + "longitude": "-89.45174000" + }, + { + "id": "75308", + "name": "Tekal de Venegas", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.01487000", + "longitude": "-88.94658000" + }, + { + "id": "75310", + "name": "Tekantó", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00585000", + "longitude": "-89.10552000" + }, + { + "id": "75309", + "name": "Tekanto", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00968000", + "longitude": "-89.10723000" + }, + { + "id": "75311", + "name": "Tekax", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.04039000", + "longitude": "-89.26448000" + }, + { + "id": "75312", + "name": "Tekik de Regil", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81671000", + "longitude": "-89.56144000" + }, + { + "id": "75313", + "name": "Tekit", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.53465000", + "longitude": "-89.33315000" + }, + { + "id": "75314", + "name": "Tekoh", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74361000", + "longitude": "-89.47406000" + }, + { + "id": "75315", + "name": "Tekom", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.60303000", + "longitude": "-88.26490000" + }, + { + "id": "75316", + "name": "Telchac Pueblo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.20312000", + "longitude": "-89.26945000" + }, + { + "id": "75317", + "name": "Telchac Puerto", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.34121000", + "longitude": "-89.26333000" + }, + { + "id": "75318", + "name": "Telchaquillo", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64693000", + "longitude": "-89.46367000" + }, + { + "id": "75334", + "name": "Temax", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.15105000", + "longitude": "-88.94039000" + }, + { + "id": "75341", + "name": "Temozón", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86318000", + "longitude": "-88.12128000" + }, + { + "id": "75340", + "name": "Temozon", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.80393000", + "longitude": "-88.20155000" + }, + { + "id": "75389", + "name": "Tepakan", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.04882000", + "longitude": "-89.03873000" + }, + { + "id": "75391", + "name": "Tepakán", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06185000", + "longitude": "-89.02240000" + }, + { + "id": "75472", + "name": "Tesoco", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.72259000", + "longitude": "-88.15456000" + }, + { + "id": "75490", + "name": "Tetiz", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96316000", + "longitude": "-89.93384000" + }, + { + "id": "75499", + "name": "Texan de Palomeque", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.93750000", + "longitude": "-89.83333000" + }, + { + "id": "75522", + "name": "Teya", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.05071000", + "longitude": "-89.07310000" + }, + { + "id": "75539", + "name": "Tibolón", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.66541000", + "longitude": "-88.93929000" + }, + { + "id": "75540", + "name": "Ticopó", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88893000", + "longitude": "-89.44107000" + }, + { + "id": "75541", + "name": "Ticul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.39833000", + "longitude": "-89.53541000" + }, + { + "id": "75558", + "name": "Tiholop", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.33234000", + "longitude": "-88.68958000" + }, + { + "id": "75564", + "name": "Tikuch", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70301000", + "longitude": "-88.11272000" + }, + { + "id": "75572", + "name": "Timucuy", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.81023000", + "longitude": "-89.51383000" + }, + { + "id": "75579", + "name": "Tinum", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.70004000", + "longitude": "-88.51631000" + }, + { + "id": "75584", + "name": "Tixcacalcupul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.43929000", + "longitude": "-88.30028000" + }, + { + "id": "75585", + "name": "Tixcacaltuyub", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.49316000", + "longitude": "-88.91637000" + }, + { + "id": "75586", + "name": "Tixcancal", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03588000", + "longitude": "-87.85047000" + }, + { + "id": "75587", + "name": "Tixhualactún", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.64403000", + "longitude": "-88.14308000" + }, + { + "id": "75588", + "name": "Tixkokob", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.00220000", + "longitude": "-89.39484000" + }, + { + "id": "75590", + "name": "Tixmehuac", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.24682000", + "longitude": "-89.08695000" + }, + { + "id": "75592", + "name": "Tixpéhual", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.96761000", + "longitude": "-89.46744000" + }, + { + "id": "75591", + "name": "Tixpehual", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.97739000", + "longitude": "-89.44203000" + }, + { + "id": "75596", + "name": "Tizimín", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.14268000", + "longitude": "-88.15101000" + }, + { + "id": "75810", + "name": "Tunkas", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.90294000", + "longitude": "-88.75171000" + }, + { + "id": "75811", + "name": "Tunkás", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.89032000", + "longitude": "-88.75337000" + }, + { + "id": "75854", + "name": "Tzucacab", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.07237000", + "longitude": "-89.05022000" + }, + { + "id": "75858", + "name": "Uayalceh de Peón", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.69345000", + "longitude": "-89.59483000" + }, + { + "id": "75859", + "name": "Uayma", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.71781000", + "longitude": "-88.31693000" + }, + { + "id": "75864", + "name": "Ucú", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.03135000", + "longitude": "-89.74466000" + }, + { + "id": "75862", + "name": "Uci", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.12682000", + "longitude": "-89.26827000" + }, + { + "id": "75866", + "name": "Uman", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.88213000", + "longitude": "-89.74649000" + }, + { + "id": "75867", + "name": "Umán", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.86575000", + "longitude": "-89.76093000" + }, + { + "id": "75912", + "name": "Valladolid", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.68812000", + "longitude": "-88.19936000" + }, + { + "id": "76106", + "name": "X-Cán", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.85715000", + "longitude": "-87.66915000" + }, + { + "id": "76127", + "name": "Xanabá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.83611000", + "longitude": "-89.01372000" + }, + { + "id": "76128", + "name": "Xaya", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.29653000", + "longitude": "-89.18674000" + }, + { + "id": "76131", + "name": "Xcanatún", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.07664000", + "longitude": "-89.63028000" + }, + { + "id": "76153", + "name": "Xocchel", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.83341000", + "longitude": "-89.18322000" + }, + { + "id": "76154", + "name": "Xocen", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.59770000", + "longitude": "-88.16430000" + }, + { + "id": "76189", + "name": "Xohuayan", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.18805000", + "longitude": "-89.38319000" + }, + { + "id": "76206", + "name": "Xul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.10128000", + "longitude": "-89.46274000" + }, + { + "id": "76213", + "name": "Yalkoba", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.79167000", + "longitude": "-88.03673000" + }, + { + "id": "76223", + "name": "Yaxcabá", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.54846000", + "longitude": "-88.82714000" + }, + { + "id": "76224", + "name": "Yaxcopoil", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.74498000", + "longitude": "-89.72217000" + }, + { + "id": "76226", + "name": "Yaxhachen", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.05177000", + "longitude": "-89.56604000" + }, + { + "id": "76227", + "name": "Yaxkukul", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.06139000", + "longitude": "-89.41932000" + }, + { + "id": "76240", + "name": "Yobaín", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.28304000", + "longitude": "-89.11893000" + }, + { + "id": "76239", + "name": "Yobain", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.23435000", + "longitude": "-89.11488000" + }, + { + "id": "76246", + "name": "Yotholin", + "state_id": 3466, + "state_code": "YUC", + "country_id": 142, + "country_code": "MX", + "latitude": "20.32786000", + "longitude": "-89.45429000" + }, + { + "id": "68113", + "name": "Agua Gorda", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.10669000", + "longitude": "-101.92182000" + }, + { + "id": "68222", + "name": "Altamira", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.38173000", + "longitude": "-102.98674000" + }, + { + "id": "68313", + "name": "Apozol", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.46952000", + "longitude": "-103.09076000" + }, + { + "id": "68425", + "name": "Atolinga", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.80659000", + "longitude": "-103.46496000" + }, + { + "id": "68506", + "name": "Bajío de San Nicolás", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.56499000", + "longitude": "-102.00784000" + }, + { + "id": "68684", + "name": "Buenavista de Trujillo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.15200000", + "longitude": "-103.18767000" + }, + { + "id": "68882", + "name": "Cañas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.74366000", + "longitude": "-103.24400000" + }, + { + "id": "68883", + "name": "Cañitas de Felipe Pescador", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.60371000", + "longitude": "-102.72704000" + }, + { + "id": "68798", + "name": "Cantuna", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.62460000", + "longitude": "-103.34630000" + }, + { + "id": "68836", + "name": "Carrillo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.20400000", + "longitude": "-102.98676000" + }, + { + "id": "68850", + "name": "Casa de Cerros", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.88499000", + "longitude": "-102.52124000" + }, + { + "id": "68888", + "name": "Cedros", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.67919000", + "longitude": "-101.77387000" + }, + { + "id": "68913", + "name": "Cerrito de la Cruz", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.65781000", + "longitude": "-102.27263000" + }, + { + "id": "68959", + "name": "Chalchihuites", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.47498000", + "longitude": "-103.88293000" + }, + { + "id": "68983", + "name": "Chaparrosa", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.08339000", + "longitude": "-102.27728000" + }, + { + "id": "68996", + "name": "Charco Blanco", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.86306000", + "longitude": "-103.65750000" + }, + { + "id": "69027", + "name": "Chichimequillas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.23894000", + "longitude": "-102.57850000" + }, + { + "id": "69121", + "name": "Chupaderos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.15883000", + "longitude": "-102.32535000" + }, + { + "id": "69127", + "name": "Cicacalco", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.71575000", + "longitude": "-103.31286000" + }, + { + "id": "69130", + "name": "Cieneguillas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.75698000", + "longitude": "-102.66267000" + }, + { + "id": "69132", + "name": "Cieneguitas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.71363000", + "longitude": "-102.49317000" + }, + { + "id": "69299", + "name": "Colonia Felipe Ángeles", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.54872000", + "longitude": "-102.79243000" + }, + { + "id": "69303", + "name": "Colonia Francisco García Salinas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.81084000", + "longitude": "-103.18180000" + }, + { + "id": "69311", + "name": "Colonia Hidalgo (El Tecolote)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.32972000", + "longitude": "-102.03583000" + }, + { + "id": "69316", + "name": "Colonia José María Morelos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.36794000", + "longitude": "-101.79449000" + }, + { + "id": "69331", + "name": "Colonia Montemariana (Colonia Mariana)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.32639000", + "longitude": "-103.11222000" + }, + { + "id": "69351", + "name": "Colonia Plenitud", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.23250000", + "longitude": "-103.07500000" + }, + { + "id": "69362", + "name": "Colonia San Francisco (San Francisco)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.30361000", + "longitude": "-101.82056000" + }, + { + "id": "69441", + "name": "Concepción del Oro", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.61326000", + "longitude": "-101.41844000" + }, + { + "id": "69537", + "name": "Crisóstomos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.22961000", + "longitude": "-101.99615000" + }, + { + "id": "69767", + "name": "Ejido Hidalgo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.30083000", + "longitude": "-102.03861000" + }, + { + "id": "69801", + "name": "Ejido Zaragoza", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.94786000", + "longitude": "-103.66322000" + }, + { + "id": "69890", + "name": "El Cazadero", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.67250000", + "longitude": "-103.12220000" + }, + { + "id": "69926", + "name": "El Copetillo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.14333000", + "longitude": "-102.00139000" + }, + { + "id": "69971", + "name": "El Fuerte", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.85414000", + "longitude": "-103.12207000" + }, + { + "id": "70009", + "name": "El Lampotal", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.89583000", + "longitude": "-102.41944000" + }, + { + "id": "70061", + "name": "El Nigromante", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.15373000", + "longitude": "-101.71056000" + }, + { + "id": "70068", + "name": "El Obraje", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.18059000", + "longitude": "-101.59057000" + }, + { + "id": "70111", + "name": "El Plateado de Joaquín Amaro", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.93622000", + "longitude": "-103.09267000" + }, + { + "id": "70152", + "name": "El Refugio", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.37028000", + "longitude": "-101.76083000" + }, + { + "id": "70179", + "name": "El Rucio", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.40743000", + "longitude": "-102.08194000" + }, + { + "id": "70191", + "name": "El Salto", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.19556000", + "longitude": "-103.06750000" + }, + { + "id": "70194", + "name": "El Salvador", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.52093000", + "longitude": "-100.86631000" + }, + { + "id": "70199", + "name": "El Saucito (El Horno)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.73111000", + "longitude": "-102.09528000" + }, + { + "id": "70207", + "name": "El Sitio", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.96418000", + "longitude": "-101.58832000" + }, + { + "id": "70241", + "name": "El Tule", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.64128000", + "longitude": "-102.03830000" + }, + { + "id": "70282", + "name": "Emiliano Zapata", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.71873000", + "longitude": "-103.19220000" + }, + { + "id": "70294", + "name": "Emilio Carranza", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.10390000", + "longitude": "-103.66746000" + }, + { + "id": "70313", + "name": "Ermita de Guadalupe", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.58579000", + "longitude": "-103.03133000" + }, + { + "id": "70334", + "name": "Estación Camacho", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.44038000", + "longitude": "-102.37283000" + }, + { + "id": "70353", + "name": "Estación San José", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.18972000", + "longitude": "-102.78472000" + }, + { + "id": "70363", + "name": "Estancia de Ánimas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.48795000", + "longitude": "-101.99526000" + }, + { + "id": "70362", + "name": "Estancia de Guadalupe", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.28063000", + "longitude": "-101.65745000" + }, + { + "id": "70406", + "name": "Florencia", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.50392000", + "longitude": "-103.55353000" + }, + { + "id": "70488", + "name": "Fresnillo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.18126000", + "longitude": "-102.87136000" + }, + { + "id": "70530", + "name": "General Enrique Estrada", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.99747000", + "longitude": "-102.74255000" + }, + { + "id": "70537", + "name": "General Juan José Ríos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.32549000", + "longitude": "-103.40575000" + }, + { + "id": "70538", + "name": "General Lauro G. Caloca (El Rascón)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.37806000", + "longitude": "-102.05750000" + }, + { + "id": "70545", + "name": "General Pánfilo Natera", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.66461000", + "longitude": "-102.11007000" + }, + { + "id": "70554", + "name": "Gonzales Ortega", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.18056000", + "longitude": "-102.47589000" + }, + { + "id": "70562", + "name": "Granadas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.10083000", + "longitude": "-101.86332000" + }, + { + "id": "70572", + "name": "Guadalupe", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.74753000", + "longitude": "-102.51874000" + }, + { + "id": "70617", + "name": "Guanajuatillo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.71649000", + "longitude": "-102.14330000" + }, + { + "id": "70652", + "name": "Hacienda Nueva", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.82461000", + "longitude": "-102.60836000" + }, + { + "id": "70656", + "name": "Hacienda Toribio", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.08333000", + "longitude": "-102.68333000" + }, + { + "id": "70685", + "name": "Hidalgo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.97833000", + "longitude": "-103.66034000" + }, + { + "id": "70850", + "name": "Ignacio Zaragoza", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.94342000", + "longitude": "-103.41693000" + }, + { + "id": "70955", + "name": "J. Jesús González Ortega (San Mateo)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.88722000", + "longitude": "-103.48528000" + }, + { + "id": "70976", + "name": "Jalpa", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.63448000", + "longitude": "-102.97919000" + }, + { + "id": "71011", + "name": "Jaula de Abajo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.02824000", + "longitude": "-101.59193000" + }, + { + "id": "71018", + "name": "Jerez de García Salinas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.64971000", + "longitude": "-102.99032000" + }, + { + "id": "71053", + "name": "Jiménez del Teul", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.25378000", + "longitude": "-103.79855000" + }, + { + "id": "71101", + "name": "José María Morelos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.32278000", + "longitude": "-103.01444000" + }, + { + "id": "71104", + "name": "José María Morelos (Santa Mónica)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.60556000", + "longitude": "-103.11028000" + }, + { + "id": "71106", + "name": "José María Morelos y Pavón", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.86288000", + "longitude": "-103.14193000" + }, + { + "id": "71113", + "name": "Juan Aldama", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.29188000", + "longitude": "-103.39272000" + }, + { + "id": "71130", + "name": "Juchipila", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.40862000", + "longitude": "-103.11663000" + }, + { + "id": "71180", + "name": "La Ballena", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.45572000", + "longitude": "-101.70809000" + }, + { + "id": "71202", + "name": "La Capilla", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.68642000", + "longitude": "-102.23750000" + }, + { + "id": "71231", + "name": "La Concepción", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.51574000", + "longitude": "-102.26604000" + }, + { + "id": "71294", + "name": "La Florida", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.80474000", + "longitude": "-103.07648000" + }, + { + "id": "71345", + "name": "La Laguna", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.21351000", + "longitude": "-103.18280000" + }, + { + "id": "71372", + "name": "La Luz", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.88000000", + "longitude": "-102.31028000" + }, + { + "id": "71439", + "name": "La Pendencia", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.43780000", + "longitude": "-101.57606000" + }, + { + "id": "71501", + "name": "La Tesorera", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.69707000", + "longitude": "-102.11670000" + }, + { + "id": "71533", + "name": "La Victoria", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.25701000", + "longitude": "-101.62957000" + }, + { + "id": "71538", + "name": "La Zacatecana", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.73053000", + "longitude": "-102.47462000" + }, + { + "id": "71550", + "name": "Laguna Seca", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.06180000", + "longitude": "-102.49558000" + }, + { + "id": "71582", + "name": "Las Catarinas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.09115000", + "longitude": "-102.61597000" + }, + { + "id": "71598", + "name": "Las Esperanzas (El Ranchito)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.84972000", + "longitude": "-103.13111000" + }, + { + "id": "71632", + "name": "Las Pilas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.84000000", + "longitude": "-102.61278000" + }, + { + "id": "71899", + "name": "Lázaro Cárdenas (Rancho Grande)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.45056000", + "longitude": "-102.96250000" + }, + { + "id": "71704", + "name": "Lobatos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.82280000", + "longitude": "-103.40580000" + }, + { + "id": "71763", + "name": "Loreto", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.27248000", + "longitude": "-101.98898000" + }, + { + "id": "71791", + "name": "Los Condes", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.83889000", + "longitude": "-103.07861000" + }, + { + "id": "71840", + "name": "Los Ramírez", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.84505000", + "longitude": "-103.03447000" + }, + { + "id": "71882", + "name": "Luis Moya", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.43237000", + "longitude": "-102.24864000" + }, + { + "id": "71947", + "name": "Malpaso", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.62627000", + "longitude": "-102.76194000" + }, + { + "id": "71983", + "name": "Maravillas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.39988000", + "longitude": "-102.01676000" + }, + { + "id": "72003", + "name": "Martínez Domínguez", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.74806000", + "longitude": "-102.48111000" + }, + { + "id": "72039", + "name": "Mazapil", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.63867000", + "longitude": "-101.55455000" + }, + { + "id": "72108", + "name": "Mezquital del Oro", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21667000", + "longitude": "-103.36278000" + }, + { + "id": "72125", + "name": "Miguel Auza", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.29421000", + "longitude": "-103.45090000" + }, + { + "id": "72137", + "name": "Milagros", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.49986000", + "longitude": "-102.18365000" + }, + { + "id": "72189", + "name": "Momax", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.92260000", + "longitude": "-103.31307000" + }, + { + "id": "72199", + "name": "Monte Escobedo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.30362000", + "longitude": "-103.56751000" + }, + { + "id": "72230", + "name": "Morelos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.86215000", + "longitude": "-102.61061000" + }, + { + "id": "72244", + "name": "Moyahua de Estrada", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.26658000", + "longitude": "-103.16610000" + }, + { + "id": "72330", + "name": "Nieves", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.99609000", + "longitude": "-103.02013000" + }, + { + "id": "72337", + "name": "Nochistlán de Mejía", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.36435000", + "longitude": "-102.84590000" + }, + { + "id": "72352", + "name": "Noria de Ángeles", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.44321000", + "longitude": "-101.90846000" + }, + { + "id": "72481", + "name": "Ojitos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.30969000", + "longitude": "-103.34610000" + }, + { + "id": "72689", + "name": "Paso de Méndez", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.51588000", + "longitude": "-102.46956000" + }, + { + "id": "72699", + "name": "Pastelera", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.74420000", + "longitude": "-103.09700000" + }, + { + "id": "72703", + "name": "Pastoría", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.48615000", + "longitude": "-102.08184000" + }, + { + "id": "72722", + "name": "Pedregoso", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.25274000", + "longitude": "-101.75757000" + }, + { + "id": "72765", + "name": "Piedra Gorda", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.50759000", + "longitude": "-102.33187000" + }, + { + "id": "72780", + "name": "Pinos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.29571000", + "longitude": "-101.57579000" + }, + { + "id": "72807", + "name": "Plateros", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.22922000", + "longitude": "-102.84290000" + }, + { + "id": "72873", + "name": "Pozo de Jarillas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.65279000", + "longitude": "-102.19782000" + }, + { + "id": "72875", + "name": "Pozos de Gamboa", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.94861000", + "longitude": "-102.57010000" + }, + { + "id": "73048", + "name": "Rafael Yáñez Sosa (El Mezquite)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.32833000", + "longitude": "-102.61028000" + }, + { + "id": "73063", + "name": "Rancho Nuevo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.40783000", + "longitude": "-102.34863000" + }, + { + "id": "73067", + "name": "Rancho Nuevo de Morelos (De Guadalupe)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.34056000", + "longitude": "-101.78528000" + }, + { + "id": "73173", + "name": "Río Florido", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.34464000", + "longitude": "-102.99039000" + }, + { + "id": "73176", + "name": "Río Grande", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.82647000", + "longitude": "-103.03034000" + }, + { + "id": "73139", + "name": "Rio de Medina", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.50260000", + "longitude": "-103.01791000" + }, + { + "id": "73205", + "name": "Sain Alto", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.58086000", + "longitude": "-103.24807000" + }, + { + "id": "73206", + "name": "Sain Bajo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.61627000", + "longitude": "-103.17447000" + }, + { + "id": "73378", + "name": "San Antonio del Cipres", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.93857000", + "longitude": "-102.48710000" + }, + { + "id": "73446", + "name": "San Blas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.29899000", + "longitude": "-101.95497000" + }, + { + "id": "73473", + "name": "San Cristóbal", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.59085000", + "longitude": "-102.23390000" + }, + { + "id": "73699", + "name": "San Jerónimo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.65402000", + "longitude": "-102.49182000" + }, + { + "id": "73812", + "name": "San José de Castellanos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.10930000", + "longitude": "-101.55091000" + }, + { + "id": "73829", + "name": "San José de la Era", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.85073000", + "longitude": "-102.42239000" + }, + { + "id": "73851", + "name": "San José el Saladillo (El Saladillo)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.68500000", + "longitude": "-102.03778000" + }, + { + "id": "73735", + "name": "San Jose de Lourdes", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.27645000", + "longitude": "-103.00973000" + }, + { + "id": "74066", + "name": "San Marcos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.27744000", + "longitude": "-101.95196000" + }, + { + "id": "74082", + "name": "San Martin", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.67117000", + "longitude": "-103.75007000" + }, + { + "id": "74279", + "name": "San Pablo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.55937000", + "longitude": "-102.09990000" + }, + { + "id": "74367", + "name": "San Pedro Piedra Gorda", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.44753000", + "longitude": "-102.34875000" + }, + { + "id": "74520", + "name": "Santa Ana", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.39194000", + "longitude": "-101.47401000" + }, + { + "id": "74654", + "name": "Santa Elena", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.59240000", + "longitude": "-102.07141000" + }, + { + "id": "74808", + "name": "Santa María de los Ángeles", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.28383000", + "longitude": "-101.86508000" + }, + { + "id": "74826", + "name": "Santa Mónica", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.75480000", + "longitude": "-102.42220000" + }, + { + "id": "74832", + "name": "Santa Rita", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.91194000", + "longitude": "-102.41833000" + }, + { + "id": "74867", + "name": "Santiago", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.45477000", + "longitude": "-101.45898000" + }, + { + "id": "74990", + "name": "Santiaguillo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.14718000", + "longitude": "-102.65240000" + }, + { + "id": "75043", + "name": "Sauceda de La Borda", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.83035000", + "longitude": "-102.50264000" + }, + { + "id": "75055", + "name": "Seis de Enero", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.36856000", + "longitude": "-103.07468000" + }, + { + "id": "75151", + "name": "Susticacán", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.60937000", + "longitude": "-103.09671000" + }, + { + "id": "75156", + "name": "Tabasco", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.86286000", + "longitude": "-102.91105000" + }, + { + "id": "75158", + "name": "Tacoaleche", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.82010000", + "longitude": "-102.40476000" + }, + { + "id": "75225", + "name": "Tapias de Santa Cruz (Pedro Ruiz González)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.18889000", + "longitude": "-103.13111000" + }, + { + "id": "75248", + "name": "Tayahua", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.09355000", + "longitude": "-102.87195000" + }, + { + "id": "75534", + "name": "Teúl de González Ortega", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.46340000", + "longitude": "-103.46131000" + }, + { + "id": "75406", + "name": "Tepechitlán", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.67063000", + "longitude": "-103.32640000" + }, + { + "id": "75430", + "name": "Tepetongo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.45847000", + "longitude": "-103.15120000" + }, + { + "id": "75468", + "name": "Terminal de Providencia", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "24.69254000", + "longitude": "-101.46575000" + }, + { + "id": "75486", + "name": "Tetillas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.71464000", + "longitude": "-102.90844000" + }, + { + "id": "75545", + "name": "Tierra Blanca", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.34796000", + "longitude": "-102.06536000" + }, + { + "id": "75599", + "name": "Tlachichila", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.55745000", + "longitude": "-102.78613000" + }, + { + "id": "75654", + "name": "Tlaltenango de Sánchez Román", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.78221000", + "longitude": "-103.30298000" + }, + { + "id": "75764", + "name": "Trancoso", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.73542000", + "longitude": "-102.36697000" + }, + { + "id": "75781", + "name": "Trinidad García de la Cadena", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "21.21035000", + "longitude": "-103.46532000" + }, + { + "id": "75933", + "name": "Valparaíso", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.77104000", + "longitude": "-103.56991000" + }, + { + "id": "76104", + "name": "Víctor Rosales", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.94889000", + "longitude": "-102.70222000" + }, + { + "id": "76061", + "name": "Villa de Cos", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.29329000", + "longitude": "-102.35020000" + }, + { + "id": "76002", + "name": "Villa García", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.16169000", + "longitude": "-101.95556000" + }, + { + "id": "76003", + "name": "Villa González Ortega", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.51222000", + "longitude": "-101.91616000" + }, + { + "id": "76012", + "name": "Villa Hidalgo", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.35682000", + "longitude": "-101.71259000" + }, + { + "id": "76018", + "name": "Villa Insurgentes (El Calabazal)", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "23.74306000", + "longitude": "-103.84250000" + }, + { + "id": "76085", + "name": "Villanueva", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.35527000", + "longitude": "-102.88264000" + }, + { + "id": "76272", + "name": "Zacatecas", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.76843000", + "longitude": "-102.58141000" + }, + { + "id": "76370", + "name": "Zoquite", + "state_id": 3462, + "state_code": "ZAC", + "country_id": 142, + "country_code": "MX", + "latitude": "22.78533000", + "longitude": "-102.42248000" + }, + { + "id": "39155", + "name": "Eot Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.38540000", + "longitude": "151.73920000" + }, + { + "id": "39156", + "name": "Ettal Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "5.59200000", + "longitude": "153.56000000" + }, + { + "id": "39159", + "name": "Fananu Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.55811000", + "longitude": "151.90822000" + }, + { + "id": "39160", + "name": "Fanapanges Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.35300000", + "longitude": "151.66760000" + }, + { + "id": "39163", + "name": "Fefen Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.35300000", + "longitude": "151.83100000" + }, + { + "id": "39164", + "name": "Fonoton Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.48600000", + "longitude": "151.87940000" + }, + { + "id": "39167", + "name": "Houk Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "6.68300000", + "longitude": "149.30000000" + }, + { + "id": "39173", + "name": "Kuttu Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "5.45300000", + "longitude": "153.45600000" + }, + { + "id": "39175", + "name": "Lekinioch Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "5.50700000", + "longitude": "153.81900000" + }, + { + "id": "39177", + "name": "Losap Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "6.89400000", + "longitude": "152.73900000" + }, + { + "id": "39180", + "name": "Makur Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.98500000", + "longitude": "150.12600000" + }, + { + "id": "39182", + "name": "Moch Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "5.49180000", + "longitude": "153.53850000" + }, + { + "id": "39184", + "name": "Murilo", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.69242000", + "longitude": "152.33934000" + }, + { + "id": "39185", + "name": "Murilo Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.69200000", + "longitude": "152.34200000" + }, + { + "id": "39186", + "name": "Namoluk Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "5.91500000", + "longitude": "153.13600000" + }, + { + "id": "39187", + "name": "Nema", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "6.98922000", + "longitude": "152.57377000" + }, + { + "id": "39188", + "name": "Nema Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "6.99300000", + "longitude": "152.57400000" + }, + { + "id": "39192", + "name": "Nomwin Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.43000000", + "longitude": "151.74500000" + }, + { + "id": "39194", + "name": "Oneop Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "5.50660000", + "longitude": "153.70900000" + }, + { + "id": "39195", + "name": "Onou Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.79900000", + "longitude": "150.29000000" + }, + { + "id": "39196", + "name": "Onoun Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.57500000", + "longitude": "149.68550000" + }, + { + "id": "39197", + "name": "Paata-Tupunion Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.37600000", + "longitude": "151.58300000" + }, + { + "id": "39199", + "name": "Parem Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.36200000", + "longitude": "151.78900000" + }, + { + "id": "39200", + "name": "Piherarh Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.56900000", + "longitude": "150.41800000" + }, + { + "id": "39201", + "name": "Piis-Emwar Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "6.83400000", + "longitude": "152.70000000" + }, + { + "id": "39202", + "name": "Piis-Panewu Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.67800000", + "longitude": "151.76340000" + }, + { + "id": "39204", + "name": "Pollap Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.63971000", + "longitude": "149.43011000" + }, + { + "id": "39205", + "name": "Polowat Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.35500000", + "longitude": "149.18200000" + }, + { + "id": "39206", + "name": "Pwene Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.33700000", + "longitude": "151.58400000" + }, + { + "id": "39207", + "name": "Ramanum Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.41350000", + "longitude": "151.66460000" + }, + { + "id": "39210", + "name": "Ruo Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.60900000", + "longitude": "152.24400000" + }, + { + "id": "39213", + "name": "Satowan Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "5.33400000", + "longitude": "153.73650000" + }, + { + "id": "39214", + "name": "Siis Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.29500000", + "longitude": "151.82460000" + }, + { + "id": "39216", + "name": "Ta Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "5.28420000", + "longitude": "153.64650000" + }, + { + "id": "39218", + "name": "Tamatam Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.53898000", + "longitude": "149.41175000" + }, + { + "id": "39220", + "name": "Tolensom Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.33300000", + "longitude": "151.62300000" + }, + { + "id": "39222", + "name": "Tonoas Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.38100000", + "longitude": "151.89000000" + }, + { + "id": "39224", + "name": "Udot-Fonuweisom Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.38900000", + "longitude": "151.70800000" + }, + { + "id": "39226", + "name": "Uman-Fonuweisom Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.29900000", + "longitude": "151.87700000" + }, + { + "id": "39227", + "name": "Unanu Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "8.75000000", + "longitude": "150.33950000" + }, + { + "id": "39230", + "name": "Weno", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.44648000", + "longitude": "151.84135000" + }, + { + "id": "39231", + "name": "Weno Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.44000000", + "longitude": "151.88100000" + }, + { + "id": "39233", + "name": "Wonei Municipality", + "state_id": 2580, + "state_code": "TRK", + "country_id": 143, + "country_code": "FM", + "latitude": "7.38700000", + "longitude": "151.60100000" + }, + { + "id": "39176", + "name": "Lelu Municipality", + "state_id": 2583, + "state_code": "KSA", + "country_id": 143, + "country_code": "FM", + "latitude": "5.34865000", + "longitude": "163.01917000" + }, + { + "id": "39181", + "name": "Malem Municipality", + "state_id": 2583, + "state_code": "KSA", + "country_id": 143, + "country_code": "FM", + "latitude": "5.27507000", + "longitude": "163.01685000" + }, + { + "id": "39217", + "name": "Tafunsak Municipality", + "state_id": 2583, + "state_code": "KSA", + "country_id": 143, + "country_code": "FM", + "latitude": "5.34993000", + "longitude": "162.96965000" + }, + { + "id": "39219", + "name": "Tofol", + "state_id": 2583, + "state_code": "KSA", + "country_id": 143, + "country_code": "FM", + "latitude": "5.32479000", + "longitude": "163.00781000" + }, + { + "id": "39228", + "name": "Utwe Municipality", + "state_id": 2583, + "state_code": "KSA", + "country_id": 143, + "country_code": "FM", + "latitude": "5.27511000", + "longitude": "162.95617000" + }, + { + "id": "39169", + "name": "Kitti Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.82490000", + "longitude": "158.16081000" + }, + { + "id": "39170", + "name": "Kolonia", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.96400000", + "longitude": "158.20620000" + }, + { + "id": "39171", + "name": "Kolonia Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.96400000", + "longitude": "158.20580000" + }, + { + "id": "39172", + "name": "Kolonia Town", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.96400000", + "longitude": "158.20600000" + }, + { + "id": "39179", + "name": "Madolenihm Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.86759000", + "longitude": "158.31277000" + }, + { + "id": "39183", + "name": "Mokil Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.68916000", + "longitude": "159.76610000" + }, + { + "id": "39189", + "name": "Nett Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.95152000", + "longitude": "158.22437000" + }, + { + "id": "39190", + "name": "Ngatik", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "5.78849000", + "longitude": "157.15954000" + }, + { + "id": "39193", + "name": "Nukuoro Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "3.84100000", + "longitude": "154.93000000" + }, + { + "id": "39198", + "name": "Palikir - National Government Center", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.92477000", + "longitude": "158.16109000" + }, + { + "id": "39203", + "name": "Pingelap Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.20908000", + "longitude": "160.71033000" + }, + { + "id": "39211", + "name": "Sapwuahfik Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "5.81500000", + "longitude": "157.28000000" + }, + { + "id": "39215", + "name": "Sokehs Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.93273000", + "longitude": "158.14270000" + }, + { + "id": "39223", + "name": "U Municipality", + "state_id": 2581, + "state_code": "PNI", + "country_id": 143, + "country_code": "FM", + "latitude": "6.94972000", + "longitude": "158.27361000" + }, + { + "id": "39153", + "name": "Colonia", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.51638000", + "longitude": "138.12167000" + }, + { + "id": "39154", + "name": "Dalipebinaw Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.52229000", + "longitude": "138.08540000" + }, + { + "id": "39157", + "name": "Fais", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.76600000", + "longitude": "140.52000000" + }, + { + "id": "39158", + "name": "Fais Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.76600000", + "longitude": "140.51900000" + }, + { + "id": "39161", + "name": "Fanif Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.56056000", + "longitude": "138.11333000" + }, + { + "id": "39162", + "name": "Faraulep Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "8.58800000", + "longitude": "144.50650000" + }, + { + "id": "39165", + "name": "Gagil Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.54722000", + "longitude": "138.19028000" + }, + { + "id": "39166", + "name": "Gilman Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.44611000", + "longitude": "138.06389000" + }, + { + "id": "39168", + "name": "Kanifay Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.46735000", + "longitude": "138.05935000" + }, + { + "id": "39174", + "name": "Lamotrek Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "7.49100000", + "longitude": "146.30300000" + }, + { + "id": "39178", + "name": "Maap Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.58975000", + "longitude": "138.17119000" + }, + { + "id": "39191", + "name": "Ngulu Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "8.45000000", + "longitude": "137.48100000" + }, + { + "id": "39208", + "name": "Rull Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.50773000", + "longitude": "138.11540000" + }, + { + "id": "39209", + "name": "Rumung Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.62428000", + "longitude": "138.15745000" + }, + { + "id": "39212", + "name": "Satawal Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "7.38200000", + "longitude": "147.03180000" + }, + { + "id": "39221", + "name": "Tomil Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.52517000", + "longitude": "138.15488000" + }, + { + "id": "39225", + "name": "Ulithi Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.90000000", + "longitude": "139.60000000" + }, + { + "id": "39229", + "name": "Weloy Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "9.52712000", + "longitude": "138.11909000" + }, + { + "id": "39232", + "name": "Woleai Municipality", + "state_id": 2582, + "state_code": "YAP", + "country_id": 143, + "country_code": "FM", + "latitude": "7.34500000", + "longitude": "143.85700000" + }, + { + "id": "67271", + "name": "Anenii Noi", + "state_id": 4368, + "state_code": "AN", + "country_id": 144, + "country_code": "MD", + "latitude": "46.87839000", + "longitude": "29.23483000" + }, + { + "id": "67337", + "name": "Varniţa", + "state_id": 4368, + "state_code": "AN", + "country_id": 144, + "country_code": "MD", + "latitude": "46.86606000", + "longitude": "29.46636000" + }, + { + "id": "67272", + "name": "Basarabeasca", + "state_id": 4379, + "state_code": "BS", + "country_id": 144, + "country_code": "MD", + "latitude": "46.33170000", + "longitude": "28.96365000" + }, + { + "id": "67280", + "name": "Bălţi", + "state_id": 4393, + "state_code": "BA", + "country_id": 144, + "country_code": "MD", + "latitude": "47.76314000", + "longitude": "27.92932000" + }, + { + "id": "67273", + "name": "Bender", + "state_id": 4362, + "state_code": "BD", + "country_id": 144, + "country_code": "MD", + "latitude": "46.83156000", + "longitude": "29.47769000" + }, + { + "id": "67276", + "name": "Briceni", + "state_id": 4375, + "state_code": "BR", + "country_id": 144, + "country_code": "MD", + "latitude": "48.36289000", + "longitude": "27.07787000" + }, + { + "id": "67281", + "name": "Cahul", + "state_id": 4391, + "state_code": "CA", + "country_id": 144, + "country_code": "MD", + "latitude": "45.90425000", + "longitude": "28.19929000" + }, + { + "id": "67305", + "name": "Giurgiuleşti", + "state_id": 4391, + "state_code": "CA", + "country_id": 144, + "country_code": "MD", + "latitude": "45.48167000", + "longitude": "28.19722000" + }, + { + "id": "67283", + "name": "Cantemir", + "state_id": 4380, + "state_code": "CT", + "country_id": 144, + "country_code": "MD", + "latitude": "46.27743000", + "longitude": "28.20270000" + }, + { + "id": "67310", + "name": "Iargara", + "state_id": 4380, + "state_code": "CT", + "country_id": 144, + "country_code": "MD", + "latitude": "46.42520000", + "longitude": "28.42676000" + }, + { + "id": "67339", + "name": "Vişniovca", + "state_id": 4380, + "state_code": "CT", + "country_id": 144, + "country_code": "MD", + "latitude": "46.33260000", + "longitude": "28.44797000" + }, + { + "id": "67294", + "name": "Călăraşi", + "state_id": 4366, + "state_code": "CL", + "country_id": 144, + "country_code": "MD", + "latitude": "47.25560000", + "longitude": "28.30987000" + }, + { + "id": "67295", + "name": "Căuşeni", + "state_id": 4365, + "state_code": "CS", + "country_id": 144, + "country_code": "MD", + "latitude": "46.63674000", + "longitude": "29.41114000" + }, + { + "id": "67286", + "name": "Chiţcani", + "state_id": 4365, + "state_code": "CS", + "country_id": 144, + "country_code": "MD", + "latitude": "46.78296000", + "longitude": "29.61682000" + }, + { + "id": "67285", + "name": "Chisinau", + "state_id": 4373, + "state_code": "CU", + "country_id": 144, + "country_code": "MD", + "latitude": "47.00556000", + "longitude": "28.85750000" + }, + { + "id": "67288", + "name": "Ciorescu", + "state_id": 4373, + "state_code": "CU", + "country_id": 144, + "country_code": "MD", + "latitude": "47.13000000", + "longitude": "28.88937000" + }, + { + "id": "67292", + "name": "Cricova", + "state_id": 4373, + "state_code": "CU", + "country_id": 144, + "country_code": "MD", + "latitude": "47.13835000", + "longitude": "28.86156000" + }, + { + "id": "67327", + "name": "Sîngera", + "state_id": 4373, + "state_code": "CU", + "country_id": 144, + "country_code": "MD", + "latitude": "46.91557000", + "longitude": "28.96673000" + }, + { + "id": "67326", + "name": "Stăuceni", + "state_id": 4373, + "state_code": "CU", + "country_id": 144, + "country_code": "MD", + "latitude": "47.09643000", + "longitude": "28.86791000" + }, + { + "id": "67336", + "name": "Vadul lui Vodă", + "state_id": 4373, + "state_code": "CU", + "country_id": 144, + "country_code": "MD", + "latitude": "47.09009000", + "longitude": "29.07570000" + }, + { + "id": "67338", + "name": "Vatra", + "state_id": 4373, + "state_code": "CU", + "country_id": 144, + "country_code": "MD", + "latitude": "47.07460000", + "longitude": "28.73685000" + }, + { + "id": "67287", + "name": "Cimişlia", + "state_id": 4360, + "state_code": "CM", + "country_id": 144, + "country_code": "MD", + "latitude": "46.52685000", + "longitude": "28.76441000" + }, + { + "id": "67293", + "name": "Criuleni", + "state_id": 4390, + "state_code": "CR", + "country_id": 144, + "country_code": "MD", + "latitude": "47.21307000", + "longitude": "29.15926000" + }, + { + "id": "67277", + "name": "Briceni", + "state_id": 4384, + "state_code": "DO", + "country_id": 144, + "country_code": "MD", + "latitude": "48.35628000", + "longitude": "27.70293000" + }, + { + "id": "67298", + "name": "Donduşeni", + "state_id": 4384, + "state_code": "DO", + "country_id": 144, + "country_code": "MD", + "latitude": "48.24268000", + "longitude": "27.61010000" + }, + { + "id": "67299", + "name": "Drochia", + "state_id": 4392, + "state_code": "DR", + "country_id": 144, + "country_code": "MD", + "latitude": "48.03555000", + "longitude": "27.81293000" + }, + { + "id": "67289", + "name": "Cocieri", + "state_id": 4383, + "state_code": "DU", + "country_id": 144, + "country_code": "MD", + "latitude": "47.30170000", + "longitude": "29.11755000" + }, + { + "id": "67335", + "name": "Ustia", + "state_id": 4383, + "state_code": "DU", + "country_id": 144, + "country_code": "MD", + "latitude": "47.25524000", + "longitude": "29.12406000" + }, + { + "id": "67301", + "name": "Edineţ", + "state_id": 4387, + "state_code": "ED", + "country_id": 144, + "country_code": "MD", + "latitude": "48.17215000", + "longitude": "27.30337000" + }, + { + "id": "67341", + "name": "Şoldăneşti", + "state_id": 4388, + "state_code": "SD", + "country_id": 144, + "country_code": "MD", + "latitude": "47.81608000", + "longitude": "28.79718000" + }, + { + "id": "67342", + "name": "Ştefan Vodă", + "state_id": 4378, + "state_code": "SV", + "country_id": 144, + "country_code": "MD", + "latitude": "46.51287000", + "longitude": "29.66193000" + }, + { + "id": "67303", + "name": "Fălești", + "state_id": 4381, + "state_code": "FA", + "country_id": 144, + "country_code": "MD", + "latitude": "47.57667000", + "longitude": "27.71264000" + }, + { + "id": "67302", + "name": "Floreşti", + "state_id": 4370, + "state_code": "FL", + "country_id": 144, + "country_code": "MD", + "latitude": "47.89137000", + "longitude": "28.29312000" + }, + { + "id": "67304", + "name": "Ghindești", + "state_id": 4370, + "state_code": "FL", + "country_id": 144, + "country_code": "MD", + "latitude": "47.85482000", + "longitude": "28.37679000" + }, + { + "id": "67313", + "name": "Mărculeşti", + "state_id": 4370, + "state_code": "FL", + "country_id": 144, + "country_code": "MD", + "latitude": "47.86897000", + "longitude": "28.24109000" + }, + { + "id": "67279", + "name": "Bugeac", + "state_id": 4385, + "state_code": "GA", + "country_id": 144, + "country_code": "MD", + "latitude": "46.36554000", + "longitude": "28.66250000" + }, + { + "id": "67284", + "name": "Ceadîr-Lunga", + "state_id": 4385, + "state_code": "GA", + "country_id": 144, + "country_code": "MD", + "latitude": "46.06169000", + "longitude": "28.83078000" + }, + { + "id": "67290", + "name": "Comrat", + "state_id": 4385, + "state_code": "GA", + "country_id": 144, + "country_code": "MD", + "latitude": "46.29456000", + "longitude": "28.65650000" + }, + { + "id": "67340", + "name": "Vulcăneşti", + "state_id": 4385, + "state_code": "GA", + "country_id": 144, + "country_code": "MD", + "latitude": "45.68492000", + "longitude": "28.40613000" + }, + { + "id": "67306", + "name": "Glodeni", + "state_id": 4367, + "state_code": "GL", + "country_id": 144, + "country_code": "MD", + "latitude": "47.77513000", + "longitude": "27.51891000" + }, + { + "id": "67296", + "name": "Dancu", + "state_id": 4382, + "state_code": "HI", + "country_id": 144, + "country_code": "MD", + "latitude": "46.75818000", + "longitude": "28.20716000" + }, + { + "id": "67308", + "name": "Hînceşti", + "state_id": 4382, + "state_code": "HI", + "country_id": 144, + "country_code": "MD", + "latitude": "46.83047000", + "longitude": "28.59064000" + }, + { + "id": "67309", + "name": "Ialoveni", + "state_id": 4369, + "state_code": "IA", + "country_id": 144, + "country_code": "MD", + "latitude": "46.94346000", + "longitude": "28.78233000" + }, + { + "id": "67314", + "name": "Nisporeni", + "state_id": 4363, + "state_code": "NI", + "country_id": 144, + "country_code": "MD", + "latitude": "47.08159000", + "longitude": "28.17138000" + }, + { + "id": "67315", + "name": "Ocniţa", + "state_id": 4389, + "state_code": "OC", + "country_id": 144, + "country_code": "MD", + "latitude": "48.38274000", + "longitude": "27.43805000" + }, + { + "id": "67317", + "name": "Otaci", + "state_id": 4389, + "state_code": "OC", + "country_id": 144, + "country_code": "MD", + "latitude": "48.43285000", + "longitude": "27.79912000" + }, + { + "id": "67316", + "name": "Orhei", + "state_id": 4361, + "state_code": "OR", + "country_id": 144, + "country_code": "MD", + "latitude": "47.38494000", + "longitude": "28.82446000" + }, + { + "id": "67321", + "name": "Rîşcani", + "state_id": 4376, + "state_code": "RI", + "country_id": 144, + "country_code": "MD", + "latitude": "47.94792000", + "longitude": "27.56376000" + }, + { + "id": "67319", + "name": "Rezina", + "state_id": 4394, + "state_code": "RE", + "country_id": 144, + "country_code": "MD", + "latitude": "47.74928000", + "longitude": "28.96583000" + }, + { + "id": "67322", + "name": "Saharna", + "state_id": 4394, + "state_code": "RE", + "country_id": 144, + "country_code": "MD", + "latitude": "47.69107000", + "longitude": "28.97458000" + }, + { + "id": "67274", + "name": "Bilicenii Vechi", + "state_id": 4364, + "state_code": "SI", + "country_id": 144, + "country_code": "MD", + "latitude": "47.65580000", + "longitude": "28.04734000" + }, + { + "id": "67275", + "name": "Biruinţa", + "state_id": 4364, + "state_code": "SI", + "country_id": 144, + "country_code": "MD", + "latitude": "47.81353000", + "longitude": "28.07004000" + }, + { + "id": "67328", + "name": "Sîngerei", + "state_id": 4364, + "state_code": "SI", + "country_id": 144, + "country_code": "MD", + "latitude": "47.63632000", + "longitude": "28.14296000" + }, + { + "id": "67324", + "name": "Soroca", + "state_id": 4374, + "state_code": "SO", + "country_id": 144, + "country_code": "MD", + "latitude": "48.15659000", + "longitude": "28.28489000" + }, + { + "id": "67278", + "name": "Bucovăţ", + "state_id": 4377, + "state_code": "ST", + "country_id": 144, + "country_code": "MD", + "latitude": "47.19064000", + "longitude": "28.45802000" + }, + { + "id": "67325", + "name": "Strășeni", + "state_id": 4377, + "state_code": "ST", + "country_id": 144, + "country_code": "MD", + "latitude": "47.14216000", + "longitude": "28.60774000" + }, + { + "id": "67329", + "name": "Taraclia", + "state_id": 4372, + "state_code": "TA", + "country_id": 144, + "country_code": "MD", + "latitude": "45.90273000", + "longitude": "28.66816000" + }, + { + "id": "67333", + "name": "Tvardița", + "state_id": 4372, + "state_code": "TA", + "country_id": 144, + "country_code": "MD", + "latitude": "46.14826000", + "longitude": "28.96491000" + }, + { + "id": "67312", + "name": "Mîndreşti", + "state_id": 4371, + "state_code": "TE", + "country_id": 144, + "country_code": "MD", + "latitude": "47.50525000", + "longitude": "28.27687000" + }, + { + "id": "67330", + "name": "Teleneşti", + "state_id": 4371, + "state_code": "TE", + "country_id": 144, + "country_code": "MD", + "latitude": "47.50110000", + "longitude": "28.36536000" + }, + { + "id": "67282", + "name": "Camenca", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "48.03233000", + "longitude": "28.69899000" + }, + { + "id": "67291", + "name": "Crasnoe", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "46.64844000", + "longitude": "29.80403000" + }, + { + "id": "67297", + "name": "Dnestrovsc", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "46.61640000", + "longitude": "29.91926000" + }, + { + "id": "67300", + "name": "Dubăsari", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "47.26562000", + "longitude": "29.16667000" + }, + { + "id": "67307", + "name": "Hryhoriopol", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "47.15413000", + "longitude": "29.30008000" + }, + { + "id": "67311", + "name": "Maiac", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "47.23727000", + "longitude": "29.38498000" + }, + { + "id": "67318", + "name": "Pervomaisc", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "46.73253000", + "longitude": "29.96170000" + }, + { + "id": "67320", + "name": "Rîbniţa", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "47.76817000", + "longitude": "29.01000000" + }, + { + "id": "67323", + "name": "Slobozia", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "46.72927000", + "longitude": "29.70446000" + }, + { + "id": "67331", + "name": "Tiraspol", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "46.84274000", + "longitude": "29.62909000" + }, + { + "id": "67332", + "name": "Tiraspolul Nou", + "state_id": 4395, + "state_code": "SN", + "country_id": 144, + "country_code": "MD", + "latitude": "46.82874000", + "longitude": "29.52174000" + }, + { + "id": "67334", + "name": "Ungheni", + "state_id": 4386, + "state_code": "UN", + "country_id": 144, + "country_code": "MD", + "latitude": "47.21079000", + "longitude": "27.80047000" + }, + { + "id": "67734", + "name": "Tsetserleg", + "state_id": 1973, + "state_code": "073", + "country_id": 146, + "country_code": "MN", + "latitude": "47.47500000", + "longitude": "101.45417000" + }, + { + "id": "67713", + "name": "Dalandzadgad", + "state_id": 1967, + "state_code": "053", + "country_id": 146, + "country_code": "MN", + "latitude": "43.57083000", + "longitude": "104.42500000" + }, + { + "id": "67720", + "name": "Hanhongor", + "state_id": 1967, + "state_code": "053", + "country_id": 146, + "country_code": "MN", + "latitude": "43.77345000", + "longitude": "104.47998000" + }, + { + "id": "67730", + "name": "Nomgon Sum", + "state_id": 1967, + "state_code": "053", + "country_id": 146, + "country_code": "MN", + "latitude": "42.41462000", + "longitude": "105.05640000" + }, + { + "id": "67707", + "name": "Arvayheer", + "state_id": 1965, + "state_code": "055", + "country_id": 146, + "country_code": "MN", + "latitude": "46.26389000", + "longitude": "102.77500000" + }, + { + "id": "67721", + "name": "Harhorin", + "state_id": 1965, + "state_code": "055", + "country_id": 146, + "country_code": "MN", + "latitude": "47.19753000", + "longitude": "102.82379000" + }, + { + "id": "67722", + "name": "Hovd", + "state_id": 1965, + "state_code": "055", + "country_id": 146, + "country_code": "MN", + "latitude": "44.67024000", + "longitude": "102.17491000" + }, + { + "id": "67723", + "name": "Kharkhorin", + "state_id": 1965, + "state_code": "055", + "country_id": 146, + "country_code": "MN", + "latitude": "47.19245000", + "longitude": "102.81349000" + }, + { + "id": "67729", + "name": "Nariynteel", + "state_id": 1965, + "state_code": "055", + "country_id": 146, + "country_code": "MN", + "latitude": "45.95950000", + "longitude": "101.45977000" + }, + { + "id": "67706", + "name": "Altay", + "state_id": 1969, + "state_code": "071", + "country_id": 146, + "country_code": "MN", + "latitude": "48.29359000", + "longitude": "89.51488000" + }, + { + "id": "67740", + "name": "Ölgii", + "state_id": 1969, + "state_code": "071", + "country_id": 146, + "country_code": "MN", + "latitude": "48.96833000", + "longitude": "89.96250000" + }, + { + "id": "67733", + "name": "Tsengel", + "state_id": 1969, + "state_code": "071", + "country_id": 146, + "country_code": "MN", + "latitude": "48.94314000", + "longitude": "89.14358000" + }, + { + "id": "67709", + "name": "Bayanhongor", + "state_id": 1976, + "state_code": "069", + "country_id": 146, + "country_code": "MN", + "latitude": "46.19444000", + "longitude": "100.71806000" + }, + { + "id": "67710", + "name": "Bulgan", + "state_id": 1961, + "state_code": "067", + "country_id": 146, + "country_code": "MN", + "latitude": "48.81250000", + "longitude": "103.53472000" + }, + { + "id": "67714", + "name": "Darhan", + "state_id": 1962, + "state_code": "037", + "country_id": 146, + "country_code": "MN", + "latitude": "49.48667000", + "longitude": "105.92278000" + }, + { + "id": "67711", + "name": "Choibalsan", + "state_id": 1963, + "state_code": "061", + "country_id": 146, + "country_code": "MN", + "latitude": "48.07257000", + "longitude": "114.53264000" + }, + { + "id": "67718", + "name": "Ereencav", + "state_id": 1963, + "state_code": "061", + "country_id": 146, + "country_code": "MN", + "latitude": "49.88070000", + "longitude": "115.72526000" + }, + { + "id": "67725", + "name": "Mandalgovi", + "state_id": 1970, + "state_code": "059", + "country_id": 146, + "country_code": "MN", + "latitude": "45.76250000", + "longitude": "106.27083000" + }, + { + "id": "67705", + "name": "Altai", + "state_id": 1972, + "state_code": "065", + "country_id": 146, + "country_code": "MN", + "latitude": "46.37222000", + "longitude": "96.25833000" + }, + { + "id": "67712", + "name": "Choyr", + "state_id": 1978, + "state_code": "064", + "country_id": 146, + "country_code": "MN", + "latitude": "46.36111000", + "longitude": "108.36111000" + }, + { + "id": "67719", + "name": "Hanh", + "state_id": 1975, + "state_code": "041", + "country_id": 146, + "country_code": "MN", + "latitude": "51.50265000", + "longitude": "100.66395000" + }, + { + "id": "67726", + "name": "Murun-kuren", + "state_id": 1975, + "state_code": "041", + "country_id": 146, + "country_code": "MN", + "latitude": "49.63417000", + "longitude": "100.16250000" + }, + { + "id": "67732", + "name": "Tsengel", + "state_id": 1975, + "state_code": "041", + "country_id": 146, + "country_code": "MN", + "latitude": "49.47833000", + "longitude": "100.88944000" + }, + { + "id": "67735", + "name": "Turt", + "state_id": 1975, + "state_code": "041", + "country_id": 146, + "country_code": "MN", + "latitude": "51.50725000", + "longitude": "100.66257000" + }, + { + "id": "67739", + "name": "Undurkhaan", + "state_id": 1974, + "state_code": "039", + "country_id": 146, + "country_code": "MN", + "latitude": "47.31944000", + "longitude": "110.65556000" + }, + { + "id": "67741", + "name": "Üyönch", + "state_id": 1964, + "state_code": "043", + "country_id": 146, + "country_code": "MN", + "latitude": "46.04786000", + "longitude": "92.02612000" + }, + { + "id": "67724", + "name": "Khovd", + "state_id": 1964, + "state_code": "043", + "country_id": 146, + "country_code": "MN", + "latitude": "48.00556000", + "longitude": "91.64194000" + }, + { + "id": "67728", + "name": "Möst", + "state_id": 1964, + "state_code": "043", + "country_id": 146, + "country_code": "MN", + "latitude": "46.67712000", + "longitude": "92.78521000" + }, + { + "id": "67717", + "name": "Erdenet", + "state_id": 1966, + "state_code": "035", + "country_id": 146, + "country_code": "MN", + "latitude": "49.03333000", + "longitude": "104.08333000" + }, + { + "id": "67708", + "name": "Baruun-Urt", + "state_id": 1977, + "state_code": "051", + "country_id": 146, + "country_code": "MN", + "latitude": "46.68056000", + "longitude": "113.27917000" + }, + { + "id": "67716", + "name": "Dzüünharaa", + "state_id": 1980, + "state_code": "049", + "country_id": 146, + "country_code": "MN", + "latitude": "48.85229000", + "longitude": "106.45786000" + }, + { + "id": "67731", + "name": "Sühbaatar", + "state_id": 1980, + "state_code": "049", + "country_id": 146, + "country_code": "MN", + "latitude": "50.23139000", + "longitude": "106.20778000" + }, + { + "id": "67715", + "name": "Dzuunmod", + "state_id": 1968, + "state_code": "047", + "country_id": 146, + "country_code": "MN", + "latitude": "47.70694000", + "longitude": "106.95278000" + }, + { + "id": "67727", + "name": "Möngönmorĭt", + "state_id": 1968, + "state_code": "047", + "country_id": 146, + "country_code": "MN", + "latitude": "48.19504000", + "longitude": "108.48295000" + }, + { + "id": "67737", + "name": "Ulaanhudag", + "state_id": 1968, + "state_code": "047", + "country_id": 146, + "country_code": "MN", + "latitude": "47.33333000", + "longitude": "104.50000000" + }, + { + "id": "67742", + "name": "Зуунмод", + "state_id": 1968, + "state_code": "047", + "country_id": 146, + "country_code": "MN", + "latitude": "47.70693000", + "longitude": "106.95276000" + }, + { + "id": "67736", + "name": "Ulaangom", + "state_id": 1971, + "state_code": "046", + "country_id": 146, + "country_code": "MN", + "latitude": "49.98111000", + "longitude": "92.06667000" + }, + { + "id": "67738", + "name": "Uliastay", + "state_id": 1979, + "state_code": "057", + "country_id": 146, + "country_code": "MN", + "latitude": "47.74167000", + "longitude": "96.84444000" + }, + { + "id": "67343", + "name": "Andrijevica", + "state_id": 23, + "state_code": "01", + "country_id": 147, + "country_code": "ME", + "latitude": "42.73389000", + "longitude": "19.79194000" + }, + { + "id": "67374", + "name": "Šavnik", + "state_id": 18, + "state_code": "18", + "country_id": 147, + "country_code": "ME", + "latitude": "42.95639000", + "longitude": "19.09667000" + }, + { + "id": "67376", + "name": "Žabljak", + "state_id": 32, + "state_code": "21", + "country_id": 147, + "country_code": "ME", + "latitude": "43.15423000", + "longitude": "19.12325000" + }, + { + "id": "67375", + "name": "Šušanj", + "state_id": 13, + "state_code": "02", + "country_id": 147, + "country_code": "ME", + "latitude": "42.11556000", + "longitude": "19.08833000" + }, + { + "id": "67344", + "name": "Bar", + "state_id": 13, + "state_code": "02", + "country_id": 147, + "country_code": "ME", + "latitude": "42.09306000", + "longitude": "19.10028000" + }, + { + "id": "67369", + "name": "Stari Bar", + "state_id": 13, + "state_code": "02", + "country_id": 147, + "country_code": "ME", + "latitude": "42.09700000", + "longitude": "19.13600000" + }, + { + "id": "67370", + "name": "Sutomore", + "state_id": 13, + "state_code": "02", + "country_id": 147, + "country_code": "ME", + "latitude": "42.14278000", + "longitude": "19.04667000" + }, + { + "id": "67345", + "name": "Berane", + "state_id": 21, + "state_code": "03", + "country_id": 147, + "country_code": "ME", + "latitude": "42.84250000", + "longitude": "19.87333000" + }, + { + "id": "67346", + "name": "Bijelo Polje", + "state_id": 25, + "state_code": "04", + "country_id": 147, + "country_code": "ME", + "latitude": "43.03834000", + "longitude": "19.74758000" + }, + { + "id": "67347", + "name": "Budva", + "state_id": 30, + "state_code": "05", + "country_id": 147, + "country_code": "ME", + "latitude": "42.28639000", + "longitude": "18.84000000" + }, + { + "id": "67360", + "name": "Petrovac na Moru", + "state_id": 30, + "state_code": "05", + "country_id": 147, + "country_code": "ME", + "latitude": "42.20556000", + "longitude": "18.94250000" + }, + { + "id": "67349", + "name": "Danilovgrad", + "state_id": 14, + "state_code": "07", + "country_id": 147, + "country_code": "ME", + "latitude": "42.55384000", + "longitude": "19.14608000" + }, + { + "id": "67368", + "name": "Spuž", + "state_id": 14, + "state_code": "07", + "country_id": 147, + "country_code": "ME", + "latitude": "42.51500000", + "longitude": "19.19500000" + }, + { + "id": "67353", + "name": "Gusinje", + "state_id": 24, + "state_code": "22", + "country_id": 147, + "country_code": "ME", + "latitude": "42.56194000", + "longitude": "19.83389000" + }, + { + "id": "67354", + "name": "Kolašin", + "state_id": 31, + "state_code": "09", + "country_id": 147, + "country_code": "ME", + "latitude": "42.82229000", + "longitude": "19.51653000" + }, + { + "id": "67350", + "name": "Dobrota", + "state_id": 26, + "state_code": "10", + "country_id": 147, + "country_code": "ME", + "latitude": "42.45417000", + "longitude": "18.76833000" + }, + { + "id": "67355", + "name": "Kotor", + "state_id": 26, + "state_code": "10", + "country_id": 147, + "country_code": "ME", + "latitude": "42.42067000", + "longitude": "18.76825000" + }, + { + "id": "67365", + "name": "Prčanj", + "state_id": 26, + "state_code": "10", + "country_id": 147, + "country_code": "ME", + "latitude": "42.45750000", + "longitude": "18.74222000" + }, + { + "id": "67366", + "name": "Risan", + "state_id": 26, + "state_code": "10", + "country_id": 147, + "country_code": "ME", + "latitude": "42.51500000", + "longitude": "18.69556000" + }, + { + "id": "67358", + "name": "Mojkovac", + "state_id": 22, + "state_code": "11", + "country_id": 147, + "country_code": "ME", + "latitude": "42.96044000", + "longitude": "19.58330000" + }, + { + "id": "67359", + "name": "Nikšić", + "state_id": 17, + "state_code": "12", + "country_id": 147, + "country_code": "ME", + "latitude": "42.77310000", + "longitude": "18.94446000" + }, + { + "id": "67348", + "name": "Cetinje", + "state_id": 28, + "state_code": "06", + "country_id": 147, + "country_code": "ME", + "latitude": "42.39063000", + "longitude": "18.91417000" + }, + { + "id": "67361", + "name": "Plav", + "state_id": 19, + "state_code": "13", + "country_id": 147, + "country_code": "ME", + "latitude": "42.59694000", + "longitude": "19.94556000" + }, + { + "id": "67362", + "name": "Pljevlja", + "state_id": 20, + "state_code": "14", + "country_id": 147, + "country_code": "ME", + "latitude": "43.35670000", + "longitude": "19.35843000" + }, + { + "id": "67363", + "name": "Plužine", + "state_id": 16, + "state_code": "15", + "country_id": 147, + "country_code": "ME", + "latitude": "43.15278000", + "longitude": "18.83944000" + }, + { + "id": "67351", + "name": "Golubovci", + "state_id": 27, + "state_code": "16", + "country_id": 147, + "country_code": "ME", + "latitude": "42.33500000", + "longitude": "19.23111000" + }, + { + "id": "67352", + "name": "Goričani", + "state_id": 27, + "state_code": "16", + "country_id": 147, + "country_code": "ME", + "latitude": "42.33222000", + "longitude": "19.21194000" + }, + { + "id": "67356", + "name": "Mataguži", + "state_id": 27, + "state_code": "16", + "country_id": 147, + "country_code": "ME", + "latitude": "42.32361000", + "longitude": "19.27278000" + }, + { + "id": "67357", + "name": "Mojanovići", + "state_id": 27, + "state_code": "16", + "country_id": 147, + "country_code": "ME", + "latitude": "42.34167000", + "longitude": "19.22139000" + }, + { + "id": "67364", + "name": "Podgorica", + "state_id": 27, + "state_code": "16", + "country_id": 147, + "country_code": "ME", + "latitude": "42.44111000", + "longitude": "19.26361000" + }, + { + "id": "67372", + "name": "Tuzi", + "state_id": 27, + "state_code": "16", + "country_id": 147, + "country_code": "ME", + "latitude": "42.36556000", + "longitude": "19.33139000" + }, + { + "id": "67367", + "name": "Rožaje", + "state_id": 15, + "state_code": "17", + "country_id": 147, + "country_code": "ME", + "latitude": "42.83299000", + "longitude": "20.16652000" + }, + { + "id": "67371", + "name": "Tivat", + "state_id": 29, + "state_code": "19", + "country_id": 147, + "country_code": "ME", + "latitude": "42.43639000", + "longitude": "18.69611000" + }, + { + "id": "67373", + "name": "Ulcinj", + "state_id": 33, + "state_code": "20", + "country_id": 147, + "country_code": "ME", + "latitude": "41.92936000", + "longitude": "19.22436000" + }, + { + "id": "67046", + "name": "Agadir", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.42018000", + "longitude": "-9.59815000" + }, + { + "id": "67047", + "name": "Agadir Melloul", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.22492000", + "longitude": "-7.79601000" + }, + { + "id": "67048", + "name": "Agadir-Ida-ou-Tnan", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.58333000", + "longitude": "-9.50000000" + }, + { + "id": "67062", + "name": "Aoulouz", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.67307000", + "longitude": "-8.18087000" + }, + { + "id": "67063", + "name": "Aourir", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.49238000", + "longitude": "-9.63550000" + }, + { + "id": "67065", + "name": "Arazane", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.50346000", + "longitude": "-8.60637000" + }, + { + "id": "67068", + "name": "Argana", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.78250000", + "longitude": "-9.11968000" + }, + { + "id": "67084", + "name": "Bigoudine", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.72376000", + "longitude": "-9.21097000" + }, + { + "id": "67102", + "name": "Chtouka-Ait-Baha", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.02948000", + "longitude": "-9.30909000" + }, + { + "id": "67136", + "name": "Inezgane", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.35535000", + "longitude": "-9.53639000" + }, + { + "id": "67137", + "name": "Inezgane-Ait Melloul", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.10000000", + "longitude": "-9.03333000" + }, + { + "id": "67185", + "name": "Ouijjane", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "29.62777000", + "longitude": "-9.53959000" + }, + { + "id": "67190", + "name": "Oulad Teïma", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.39467000", + "longitude": "-9.20897000" + }, + { + "id": "67194", + "name": "Reggada", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "29.58016000", + "longitude": "-9.70086000" + }, + { + "id": "67208", + "name": "Sidi Ifni", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "29.37975000", + "longitude": "-10.17299000" + }, + { + "id": "67223", + "name": "Tadrart", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.77477000", + "longitude": "-9.45951000" + }, + { + "id": "67224", + "name": "Tafraout", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "29.72449000", + "longitude": "-8.97470000" + }, + { + "id": "67225", + "name": "Taghazout", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.54259000", + "longitude": "-9.71115000" + }, + { + "id": "67227", + "name": "Taliouine", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.52917000", + "longitude": "-7.91262000" + }, + { + "id": "67231", + "name": "Tamri", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.69602000", + "longitude": "-9.82972000" + }, + { + "id": "67233", + "name": "Tanalt", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "29.77548000", + "longitude": "-9.16796000" + }, + { + "id": "67241", + "name": "Taroudannt", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.50000000", + "longitude": "-8.41667000" + }, + { + "id": "67242", + "name": "Taroudant", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "30.47028000", + "longitude": "-8.87695000" + }, + { + "id": "67243", + "name": "Tarsouat", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "29.58153000", + "longitude": "-9.02664000" + }, + { + "id": "67244", + "name": "Tata", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "29.66667000", + "longitude": "-7.83333000" + }, + { + "id": "67259", + "name": "Tiznit", + "state_id": 3297, + "state_code": "ASZ", + "country_id": 149, + "country_code": "MA", + "latitude": "29.58333000", + "longitude": "-9.50000000" + }, + { + "id": "67071", + "name": "Azemmour", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.28952000", + "longitude": "-8.34250000" + }, + { + "id": "67079", + "name": "Benslimane", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.50000000", + "longitude": "-7.16667000" + }, + { + "id": "67081", + "name": "Berrechid", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.26553000", + "longitude": "-7.58754000" + }, + { + "id": "67082", + "name": "Berrechid Province", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.26582000", + "longitude": "-7.58142000" + }, + { + "id": "67091", + "name": "Boulaouane", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "32.85995000", + "longitude": "-8.05555000" + }, + { + "id": "67093", + "name": "Bouskoura", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.44976000", + "longitude": "-7.65239000" + }, + { + "id": "67094", + "name": "Bouznika", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.78942000", + "longitude": "-7.15968000" + }, + { + "id": "67098", + "name": "Casablanca", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.58840000", + "longitude": "-7.55785000" + }, + { + "id": "67110", + "name": "El Jadid", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.25682000", + "longitude": "-8.50882000" + }, + { + "id": "67113", + "name": "El-Jadida", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "32.90000000", + "longitude": "-8.50000000" + }, + { + "id": "67162", + "name": "Mediouna", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.52012000", + "longitude": "-7.50350000" + }, + { + "id": "67170", + "name": "Mohammedia", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.68607000", + "longitude": "-7.38298000" + }, + { + "id": "67174", + "name": "Nouaceur", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.45839000", + "longitude": "-7.64726000" + }, + { + "id": "67175", + "name": "Oualidia", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "32.73372000", + "longitude": "-9.03059000" + }, + { + "id": "67188", + "name": "Oulad Frej", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "32.95956000", + "longitude": "-8.22740000" + }, + { + "id": "67203", + "name": "Settat", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.00103000", + "longitude": "-7.61662000" + }, + { + "id": "67204", + "name": "Settat Province", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.08333000", + "longitude": "-7.41667000" + }, + { + "id": "67206", + "name": "Sidi Bennour", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "32.64896000", + "longitude": "-8.42686000" + }, + { + "id": "67215", + "name": "Sidi Smai’il", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "32.82461000", + "longitude": "-8.51122000" + }, + { + "id": "67258", + "name": "Tit Mellil", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.55808000", + "longitude": "-7.48647000" + }, + { + "id": "67265", + "name": "Zawyat an Nwaçer", + "state_id": 3303, + "state_code": "06", + "country_id": 149, + "country_code": "MA", + "latitude": "33.37981000", + "longitude": "-7.61932000" + }, + { + "id": "67049", + "name": "Agdz", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "30.69356000", + "longitude": "-6.44628000" + }, + { + "id": "67060", + "name": "Alnif", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.11411000", + "longitude": "-5.17154000" + }, + { + "id": "67061", + "name": "Aoufous", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.68000000", + "longitude": "-4.17000000" + }, + { + "id": "67067", + "name": "Arfoud", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.43530000", + "longitude": "-4.23258000" + }, + { + "id": "67114", + "name": "Errachidia", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.75000000", + "longitude": "-4.50000000" + }, + { + "id": "67133", + "name": "Imilchil", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "32.15309000", + "longitude": "-5.62453000" + }, + { + "id": "67140", + "name": "Jebel Tiskaouine", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.02722000", + "longitude": "-5.11643000" + }, + { + "id": "67142", + "name": "Jorf", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.49442000", + "longitude": "-4.40598000" + }, + { + "id": "67145", + "name": "Kelaat Mgouna", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.24573000", + "longitude": "-6.13260000" + }, + { + "id": "67165", + "name": "Mhamid", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "29.82000000", + "longitude": "-5.72000000" + }, + { + "id": "67168", + "name": "Midelt", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "32.68055000", + "longitude": "-4.73691000" + }, + { + "id": "67177", + "name": "Ouarzazat", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "30.91894000", + "longitude": "-6.89341000" + }, + { + "id": "67178", + "name": "Ouarzazate", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "30.94130000", + "longitude": "-6.90285000" + }, + { + "id": "67196", + "name": "Reçani", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.28318000", + "longitude": "-4.26565000" + }, + { + "id": "67246", + "name": "Taznakht", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "30.57836000", + "longitude": "-7.20341000" + }, + { + "id": "67247", + "name": "Telouet", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.28925000", + "longitude": "-7.23789000" + }, + { + "id": "67255", + "name": "Tinghir", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.51472000", + "longitude": "-5.53278000" + }, + { + "id": "67256", + "name": "Tinghir Province", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "31.51965000", + "longitude": "-5.52999000" + }, + { + "id": "67264", + "name": "Zagora", + "state_id": 3290, + "state_code": "08", + "country_id": 149, + "country_code": "MA", + "latitude": "30.34839000", + "longitude": "-5.83649000" + }, + { + "id": "67076", + "name": "Aïn Leuh", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.28984000", + "longitude": "-5.33863000" + }, + { + "id": "67053", + "name": "Aknoul", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.65371000", + "longitude": "-3.86754000" + }, + { + "id": "67059", + "name": "Almis Marmoucha", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.32000000", + "longitude": "-4.18000000" + }, + { + "id": "67074", + "name": "Azrou", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.43443000", + "longitude": "-5.22126000" + }, + { + "id": "67083", + "name": "Bhalil", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.85194000", + "longitude": "-4.87228000" + }, + { + "id": "67088", + "name": "Bouarouss", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.36000000", + "longitude": "-4.81000000" + }, + { + "id": "67092", + "name": "Boulemane", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.16667000", + "longitude": "-4.00000000" + }, + { + "id": "67109", + "name": "El Hajeb", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.68786000", + "longitude": "-5.37100000" + }, + { + "id": "67112", + "name": "El-Hajeb", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.72883000", + "longitude": "-5.46119000" + }, + { + "id": "67122", + "name": "Fès", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.03313000", + "longitude": "-5.00028000" + }, + { + "id": "67123", + "name": "Fès al Bali", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.07010000", + "longitude": "-4.95473000" + }, + { + "id": "67118", + "name": "Fes", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.04000000", + "longitude": "-4.87000000" + }, + { + "id": "67124", + "name": "Galaz", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.54424000", + "longitude": "-4.80355000" + }, + { + "id": "67125", + "name": "Ghouazi", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.47737000", + "longitude": "-5.30235000" + }, + { + "id": "67128", + "name": "Guercif", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.22568000", + "longitude": "-3.35361000" + }, + { + "id": "67132", + "name": "Ifrane", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.33333000", + "longitude": "-5.25000000" + }, + { + "id": "67164", + "name": "Meknès", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.89352000", + "longitude": "-5.54727000" + }, + { + "id": "67163", + "name": "Meknes", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.97761000", + "longitude": "-5.52496000" + }, + { + "id": "67169", + "name": "Missour", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.04893000", + "longitude": "-3.98947000" + }, + { + "id": "67171", + "name": "Moulay Bouchta", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.48922000", + "longitude": "-5.13023000" + }, + { + "id": "67172", + "name": "Moulay-Yacoub", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.14558000", + "longitude": "-5.10259000" + }, + { + "id": "67179", + "name": "Oued Amlil", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.20000000", + "longitude": "-4.28000000" + }, + { + "id": "67189", + "name": "Oulad Tayeb", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.94633000", + "longitude": "-4.99509000" + }, + { + "id": "67192", + "name": "Ourtzagh", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.53477000", + "longitude": "-4.96878000" + }, + { + "id": "67200", + "name": "Sefrou", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.79979000", + "longitude": "-4.68000000" + }, + { + "id": "67226", + "name": "Tahla", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.04965000", + "longitude": "-4.42162000" + }, + { + "id": "67228", + "name": "Talzemt", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.59000000", + "longitude": "-4.19000000" + }, + { + "id": "67237", + "name": "Taounate", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.50000000", + "longitude": "-4.83333000" + }, + { + "id": "67245", + "name": "Taza", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "34.25000000", + "longitude": "-3.75000000" + }, + { + "id": "67261", + "name": "Tmourghout", + "state_id": 3313, + "state_code": "03", + "country_id": 149, + "country_code": "MA", + "latitude": "33.90650000", + "longitude": "-4.02696000" + }, + { + "id": "67070", + "name": "Assa-Zag", + "state_id": 3305, + "state_code": "10", + "country_id": 149, + "country_code": "MA", + "latitude": "28.16667000", + "longitude": "-9.41667000" + }, + { + "id": "67126", + "name": "Guelmim", + "state_id": 3305, + "state_code": "10", + "country_id": 149, + "country_code": "MA", + "latitude": "28.75000000", + "longitude": "-10.00000000" + }, + { + "id": "67209", + "name": "Sidi Ifni", + "state_id": 3305, + "state_code": "10", + "country_id": 149, + "country_code": "MA", + "latitude": "29.37719000", + "longitude": "-10.17111000" + }, + { + "id": "67232", + "name": "Tan-Tan", + "state_id": 3305, + "state_code": "10", + "country_id": 149, + "country_code": "MA", + "latitude": "28.08333000", + "longitude": "-11.08333000" + }, + { + "id": "67066", + "name": "Arbaoua", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.90239000", + "longitude": "-5.94871000" + }, + { + "id": "67130", + "name": "Had Kourt", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.61588000", + "longitude": "-5.74040000" + }, + { + "id": "67146", + "name": "Kenitra", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.26101000", + "longitude": "-6.58020000" + }, + { + "id": "67147", + "name": "Kenitra Province", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.58333000", + "longitude": "-6.33333000" + }, + { + "id": "67149", + "name": "Khemisset", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "33.66667000", + "longitude": "-6.25000000" + }, + { + "id": "67161", + "name": "Mechraa Bel Ksiri", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.57373000", + "longitude": "-5.95585000" + }, + { + "id": "67191", + "name": "Oulmes", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "33.42585000", + "longitude": "-6.00137000" + }, + { + "id": "67193", + "name": "Rabat", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.01325000", + "longitude": "-6.83255000" + }, + { + "id": "67199", + "name": "Sale", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.05310000", + "longitude": "-6.79846000" + }, + { + "id": "67207", + "name": "Sidi Bousber", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.56283000", + "longitude": "-5.36208000" + }, + { + "id": "67211", + "name": "Sidi Qacem", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.22149000", + "longitude": "-5.70775000" + }, + { + "id": "67213", + "name": "Sidi Redouane", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.68692000", + "longitude": "-5.44538000" + }, + { + "id": "67214", + "name": "Sidi Slimane", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.26479000", + "longitude": "-5.92598000" + }, + { + "id": "67216", + "name": "Sidi Yahia El Gharb", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.30494000", + "longitude": "-6.30404000" + }, + { + "id": "67217", + "name": "Sidi-Kacem", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.58333000", + "longitude": "-5.75000000" + }, + { + "id": "67218", + "name": "Skhirate", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "33.85270000", + "longitude": "-7.03171000" + }, + { + "id": "67219", + "name": "Skhirate-Temara", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "33.77000000", + "longitude": "-6.87000000" + }, + { + "id": "67222", + "name": "Souq Larb’a al Gharb", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.68664000", + "longitude": "-6.00272000" + }, + { + "id": "67248", + "name": "Temara", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "33.92866000", + "longitude": "-6.90656000" + }, + { + "id": "67249", + "name": "Teroual", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "34.67452000", + "longitude": "-5.27331000" + }, + { + "id": "67252", + "name": "Tiflet", + "state_id": 3308, + "state_code": "KEN", + "country_id": 149, + "country_code": "MA", + "latitude": "33.89469000", + "longitude": "-6.30649000" + }, + { + "id": "67050", + "name": "Aguelmous", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "33.16139000", + "longitude": "-5.84626000" + }, + { + "id": "67055", + "name": "Al Fqih Ben Çalah", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.50213000", + "longitude": "-6.68771000" + }, + { + "id": "67072", + "name": "Azilal", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "31.96156000", + "longitude": "-6.57109000" + }, + { + "id": "67073", + "name": "Azilal Province", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "31.91667000", + "longitude": "-6.50000000" + }, + { + "id": "67077", + "name": "Beni Mellal", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.33725000", + "longitude": "-6.34983000" + }, + { + "id": "67078", + "name": "Beni-Mellal", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.50000000", + "longitude": "-6.33333000" + }, + { + "id": "67090", + "name": "Boujniba", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.90046000", + "longitude": "-6.77464000" + }, + { + "id": "67096", + "name": "Bzou", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.09171000", + "longitude": "-7.04786000" + }, + { + "id": "67103", + "name": "Dar Ould Zidouh", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.31247000", + "longitude": "-6.90494000" + }, + { + "id": "67105", + "name": "Demnate", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "31.73443000", + "longitude": "-7.00505000" + }, + { + "id": "67111", + "name": "El Ksiba", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.57286000", + "longitude": "-6.01947000" + }, + { + "id": "67121", + "name": "Fquih Ben Salah Province", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.50108000", + "longitude": "-6.68415000" + }, + { + "id": "67131", + "name": "Ifrane", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "31.70217000", + "longitude": "-6.34940000" + }, + { + "id": "67138", + "name": "Isseksi", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.22981000", + "longitude": "-6.27661000" + }, + { + "id": "67139", + "name": "Itzer", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.87830000", + "longitude": "-5.05150000" + }, + { + "id": "67143", + "name": "Kasba Tadla", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.59770000", + "longitude": "-6.26844000" + }, + { + "id": "67148", + "name": "Kerrouchen", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.79639000", + "longitude": "-5.31880000" + }, + { + "id": "67150", + "name": "Khenifra", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.93333000", + "longitude": "-5.66667000" + }, + { + "id": "67151", + "name": "Khouribga", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.88108000", + "longitude": "-6.90630000" + }, + { + "id": "67152", + "name": "Khouribga Province", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.93333000", + "longitude": "-6.60000000" + }, + { + "id": "67167", + "name": "Midelt", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.68520000", + "longitude": "-4.74512000" + }, + { + "id": "67176", + "name": "Ouaoula", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "31.87000000", + "longitude": "-6.75000000" + }, + { + "id": "67181", + "name": "Oued Zem", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.86270000", + "longitude": "-6.57359000" + }, + { + "id": "67210", + "name": "Sidi Jaber", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.38952000", + "longitude": "-6.42095000" + }, + { + "id": "67254", + "name": "Timoulilt", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.20368000", + "longitude": "-6.46660000" + }, + { + "id": "67266", + "name": "Zawyat ech Cheïkh", + "state_id": 3317, + "state_code": "KHN", + "country_id": 149, + "country_code": "MA", + "latitude": "32.64445000", + "longitude": "-5.91826000" + }, + { + "id": "67052", + "name": "Akhfennir", + "state_id": 3298, + "state_code": "11", + "country_id": 149, + "country_code": "MA", + "latitude": "28.09455000", + "longitude": "-12.05157000" + }, + { + "id": "67089", + "name": "Boujdour", + "state_id": 3298, + "state_code": "11", + "country_id": 149, + "country_code": "MA", + "latitude": "25.66172000", + "longitude": "-13.68419000" + }, + { + "id": "67115", + "name": "Es-Semara", + "state_id": 3298, + "state_code": "11", + "country_id": 149, + "country_code": "MA", + "latitude": "27.75000000", + "longitude": "-11.00000000" + }, + { + "id": "67127", + "name": "Gueltat Zemmour", + "state_id": 3298, + "state_code": "11", + "country_id": 149, + "country_code": "MA", + "latitude": "25.14276000", + "longitude": "-12.37168000" + }, + { + "id": "67154", + "name": "Laayoune", + "state_id": 3298, + "state_code": "11", + "country_id": 149, + "country_code": "MA", + "latitude": "27.83333000", + "longitude": "-12.33333000" + }, + { + "id": "67220", + "name": "Smara", + "state_id": 3298, + "state_code": "11", + "country_id": 149, + "country_code": "MA", + "latitude": "26.73841000", + "longitude": "-11.67194000" + }, + { + "id": "67239", + "name": "Tarfaya", + "state_id": 3298, + "state_code": "11", + "country_id": 149, + "country_code": "MA", + "latitude": "27.93901000", + "longitude": "-12.92082000" + }, + { + "id": "67075", + "name": "Aïn Beni Mathar", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.00970000", + "longitude": "-2.03238000" + }, + { + "id": "67051", + "name": "Ahfir", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.95368000", + "longitude": "-2.10027000" + }, + { + "id": "67054", + "name": "Al Aaroui", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "35.01090000", + "longitude": "-3.00938000" + }, + { + "id": "67080", + "name": "Berkane", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.61000000", + "longitude": "-2.57000000" + }, + { + "id": "67087", + "name": "Bouarfa", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "32.53379000", + "longitude": "-1.96209000" + }, + { + "id": "67104", + "name": "Debdou", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "33.98228000", + "longitude": "-3.04263000" + }, + { + "id": "67107", + "name": "Driouch Province", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.97670000", + "longitude": "-3.38842000" + }, + { + "id": "67108", + "name": "El Aïoun", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.58319000", + "longitude": "-2.50612000" + }, + { + "id": "67119", + "name": "Figuig", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "32.83333000", + "longitude": "-2.25000000" + }, + { + "id": "67129", + "name": "Guercif Province", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.25041000", + "longitude": "-3.32542000" + }, + { + "id": "67141", + "name": "Jerada", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.23662000", + "longitude": "-2.04284000" + }, + { + "id": "67157", + "name": "Madagh", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "35.01032000", + "longitude": "-2.33701000" + }, + { + "id": "67166", + "name": "Midar", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.94025000", + "longitude": "-3.53311000" + }, + { + "id": "67173", + "name": "Nador", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "35.00000000", + "longitude": "-3.00000000" + }, + { + "id": "67186", + "name": "Oujda-Angad", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.23600000", + "longitude": "-2.29400000" + }, + { + "id": "67198", + "name": "Saidia", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "35.08195000", + "longitude": "-2.22897000" + }, + { + "id": "67201", + "name": "Selouane", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "35.07313000", + "longitude": "-2.94230000" + }, + { + "id": "67238", + "name": "Taourirt", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.40731000", + "longitude": "-2.89732000" + }, + { + "id": "67260", + "name": "Tiztoutine", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.97159000", + "longitude": "-3.15273000" + }, + { + "id": "67267", + "name": "Zaïo", + "state_id": 3271, + "state_code": "02", + "country_id": 149, + "country_code": "MA", + "latitude": "34.94282000", + "longitude": "-2.73290000" + }, + { + "id": "67064", + "name": "Aousserd", + "state_id": 3319, + "state_code": "OUD", + "country_id": 149, + "country_code": "MA", + "latitude": "21.91977000", + "longitude": "-15.02068000" + }, + { + "id": "67134", + "name": "Imlili", + "state_id": 3319, + "state_code": "OUD", + "country_id": 149, + "country_code": "MA", + "latitude": "22.65580000", + "longitude": "-15.60719000" + }, + { + "id": "67182", + "name": "Oued-Ed-Dahab", + "state_id": 3319, + "state_code": "OUD", + "country_id": 149, + "country_code": "MA", + "latitude": "23.64201000", + "longitude": "-14.44934000" + }, + { + "id": "67044", + "name": "Abadou", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.57917000", + "longitude": "-7.31308000" + }, + { + "id": "67045", + "name": "Adassil", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.10783000", + "longitude": "-8.49083000" + }, + { + "id": "67057", + "name": "Al-Haouz", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.34083000", + "longitude": "-7.91076000" + }, + { + "id": "67086", + "name": "Bouabout", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.26554000", + "longitude": "-9.17865000" + }, + { + "id": "67101", + "name": "Chichaoua", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.26365000", + "longitude": "-8.84411000" + }, + { + "id": "67116", + "name": "Essaouira", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.50675000", + "longitude": "-9.75655000" + }, + { + "id": "67144", + "name": "Kelaa-Des-Sraghna", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "32.16667000", + "longitude": "-7.75000000" + }, + { + "id": "67158", + "name": "Marrakech", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.63623000", + "longitude": "-8.01041000" + }, + { + "id": "67159", + "name": "Marrakesh", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.63416000", + "longitude": "-7.99994000" + }, + { + "id": "67187", + "name": "Oukaïmedene", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.20603000", + "longitude": "-7.86089000" + }, + { + "id": "67195", + "name": "Rehamna", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "32.24581000", + "longitude": "-7.93144000" + }, + { + "id": "67197", + "name": "Safi", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "32.16667000", + "longitude": "-8.83333000" + }, + { + "id": "67205", + "name": "Setti Fatma", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.22508000", + "longitude": "-7.67751000" + }, + { + "id": "67212", + "name": "Sidi Rahhal", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.65031000", + "longitude": "-7.47288000" + }, + { + "id": "67221", + "name": "Smimou", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.21014000", + "longitude": "-9.70863000" + }, + { + "id": "67229", + "name": "Tamanar", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.00087000", + "longitude": "-9.67802000" + }, + { + "id": "67236", + "name": "Taouloukoult", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.22218000", + "longitude": "-9.07943000" + }, + { + "id": "67251", + "name": "Tidili Mesfioua", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.46586000", + "longitude": "-7.61199000" + }, + { + "id": "67253", + "name": "Timezgadiouine", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "30.88366000", + "longitude": "-9.04548000" + }, + { + "id": "67263", + "name": "Youssoufia", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "32.24634000", + "longitude": "-8.52941000" + }, + { + "id": "67268", + "name": "Zerkten", + "state_id": 3311, + "state_code": "SAF", + "country_id": 149, + "country_code": "MA", + "latitude": "31.44470000", + "longitude": "-7.39224000" + }, + { + "id": "67056", + "name": "Al Hoceïma", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.25165000", + "longitude": "-3.93723000" + }, + { + "id": "67058", + "name": "Al-Hoceima", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.00000000", + "longitude": "-4.25000000" + }, + { + "id": "67069", + "name": "Asilah", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.46522000", + "longitude": "-6.03415000" + }, + { + "id": "67085", + "name": "Bni Bouayach", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.10506000", + "longitude": "-3.84028000" + }, + { + "id": "67095", + "name": "Brikcha", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "34.96732000", + "longitude": "-5.57295000" + }, + { + "id": "67097", + "name": "Cap Negro II", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.65970000", + "longitude": "-5.28525000" + }, + { + "id": "67099", + "name": "Chefchaouen Province", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.00000000", + "longitude": "-5.08333000" + }, + { + "id": "67100", + "name": "Chefchaouene", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.16878000", + "longitude": "-5.26360000" + }, + { + "id": "67106", + "name": "Derdara", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.11041000", + "longitude": "-5.29015000" + }, + { + "id": "67117", + "name": "Fahs-Anjra", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.74000000", + "longitude": "-5.68000000" + }, + { + "id": "67120", + "name": "Fnidek", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.84906000", + "longitude": "-5.35747000" + }, + { + "id": "67135", + "name": "Imzouren", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.14637000", + "longitude": "-3.85063000" + }, + { + "id": "67153", + "name": "Ksar El Kebir", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.00044000", + "longitude": "-5.90378000" + }, + { + "id": "67155", + "name": "Larache", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.16667000", + "longitude": "-5.83333000" + }, + { + "id": "67156", + "name": "M'Diq-Fnideq", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.85743000", + "longitude": "-5.35858000" + }, + { + "id": "67160", + "name": "Martil", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.61662000", + "longitude": "-5.27522000" + }, + { + "id": "67180", + "name": "Oued Laou", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.44840000", + "longitude": "-5.09627000" + }, + { + "id": "67183", + "name": "Ouezzane", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "34.79584000", + "longitude": "-5.57849000" + }, + { + "id": "67184", + "name": "Ouezzane Province", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "34.79759000", + "longitude": "-5.58603000" + }, + { + "id": "67202", + "name": "Senada", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.07452000", + "longitude": "-4.21583000" + }, + { + "id": "67230", + "name": "Tamorot", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "34.93632000", + "longitude": "-4.77940000" + }, + { + "id": "67234", + "name": "Tanger-Assilah", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.59000000", + "longitude": "-5.90000000" + }, + { + "id": "67235", + "name": "Tangier", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.76727000", + "longitude": "-5.79975000" + }, + { + "id": "67240", + "name": "Targuist", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "34.93769000", + "longitude": "-4.31856000" + }, + { + "id": "67262", + "name": "Tétouan", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.57845000", + "longitude": "-5.36837000" + }, + { + "id": "67250", + "name": "Tetouan", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.58333000", + "longitude": "-5.50000000" + }, + { + "id": "67257", + "name": "Tirhanimîne", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.23619000", + "longitude": "-3.95453000" + }, + { + "id": "67269", + "name": "Zinat", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "35.43000000", + "longitude": "-5.40000000" + }, + { + "id": "67270", + "name": "Zoumi", + "state_id": 3324, + "state_code": "01", + "country_id": 149, + "country_code": "MA", + "latitude": "34.80321000", + "longitude": "-5.34458000" + }, + { + "id": "76595", + "name": "Chiure", + "state_id": 3327, + "state_code": "P", + "country_id": 150, + "country_code": "MZ", + "latitude": "-13.46665000", + "longitude": "39.70317000" + }, + { + "id": "76614", + "name": "Mocímboa", + "state_id": 3327, + "state_code": "P", + "country_id": 150, + "country_code": "MZ", + "latitude": "-11.31667000", + "longitude": "40.35000000" + }, + { + "id": "76615", + "name": "Montepuez", + "state_id": 3327, + "state_code": "P", + "country_id": 150, + "country_code": "MZ", + "latitude": "-13.12556000", + "longitude": "38.99972000" + }, + { + "id": "76621", + "name": "Pemba", + "state_id": 3327, + "state_code": "P", + "country_id": 150, + "country_code": "MZ", + "latitude": "-12.97395000", + "longitude": "40.51775000" + }, + { + "id": "76592", + "name": "Chibuto", + "state_id": 3329, + "state_code": "G", + "country_id": 150, + "country_code": "MZ", + "latitude": "-24.68667000", + "longitude": "33.53056000" + }, + { + "id": "76596", + "name": "Chokwé", + "state_id": 3329, + "state_code": "G", + "country_id": 150, + "country_code": "MZ", + "latitude": "-24.53333000", + "longitude": "32.98333000" + }, + { + "id": "76604", + "name": "Macia", + "state_id": 3329, + "state_code": "G", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.02694000", + "longitude": "33.09889000" + }, + { + "id": "76625", + "name": "Xai-Xai", + "state_id": 3329, + "state_code": "G", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.05194000", + "longitude": "33.64417000" + }, + { + "id": "76601", + "name": "Inhambane", + "state_id": 3330, + "state_code": "I", + "country_id": 150, + "country_code": "MZ", + "latitude": "-23.86500000", + "longitude": "35.38333000" + }, + { + "id": "76612", + "name": "Maxixe", + "state_id": 3330, + "state_code": "I", + "country_id": 150, + "country_code": "MZ", + "latitude": "-23.85972000", + "longitude": "35.34722000" + }, + { + "id": "76593", + "name": "Chimoio", + "state_id": 3337, + "state_code": "B", + "country_id": 150, + "country_code": "MZ", + "latitude": "-19.11639000", + "longitude": "33.48333000" + }, + { + "id": "76602", + "name": "KaTembe", + "state_id": 3335, + "state_code": "MPM", + "country_id": 150, + "country_code": "MZ", + "latitude": "-26.02985000", + "longitude": "32.53204000" + }, + { + "id": "76608", + "name": "Maputo", + "state_id": 3335, + "state_code": "MPM", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.96553000", + "longitude": "32.58322000" + }, + { + "id": "76591", + "name": "Boane District", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-26.02900000", + "longitude": "32.38900000" + }, + { + "id": "76597", + "name": "Concelho de Matola", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.83472000", + "longitude": "32.49516000" + }, + { + "id": "76605", + "name": "Magude District", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.02389000", + "longitude": "32.65150000" + }, + { + "id": "76607", + "name": "Manhica", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.34035000", + "longitude": "32.84234000" + }, + { + "id": "76609", + "name": "Marracuene District", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.73938000", + "longitude": "32.67436000" + }, + { + "id": "76610", + "name": "Matola", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.96222000", + "longitude": "32.45889000" + }, + { + "id": "76611", + "name": "Matutiune District", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-26.43418000", + "longitude": "32.58820000" + }, + { + "id": "76613", + "name": "Moamba District", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.60934000", + "longitude": "32.24321000" + }, + { + "id": "76618", + "name": "Namaacha District", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-26.10900000", + "longitude": "32.18000000" + }, + { + "id": "76623", + "name": "Ressano Garcia", + "state_id": 3332, + "state_code": "L", + "country_id": 150, + "country_code": "MZ", + "latitude": "-25.44278000", + "longitude": "31.99528000" + }, + { + "id": "76589", + "name": "António Enes", + "state_id": 3336, + "state_code": "N", + "country_id": 150, + "country_code": "MZ", + "latitude": "-16.23250000", + "longitude": "39.90861000" + }, + { + "id": "76600", + "name": "Ilha de Moçambique", + "state_id": 3336, + "state_code": "N", + "country_id": 150, + "country_code": "MZ", + "latitude": "-15.03417000", + "longitude": "40.73583000" + }, + { + "id": "76616", + "name": "Mutuáli", + "state_id": 3336, + "state_code": "N", + "country_id": 150, + "country_code": "MZ", + "latitude": "-14.87056000", + "longitude": "37.00444000" + }, + { + "id": "76617", + "name": "Nacala", + "state_id": 3336, + "state_code": "N", + "country_id": 150, + "country_code": "MZ", + "latitude": "-14.56257000", + "longitude": "40.68538000" + }, + { + "id": "76619", + "name": "Nampula", + "state_id": 3336, + "state_code": "N", + "country_id": 150, + "country_code": "MZ", + "latitude": "-15.11646000", + "longitude": "39.26660000" + }, + { + "id": "76598", + "name": "Cuamba", + "state_id": 3333, + "state_code": "A", + "country_id": 150, + "country_code": "MZ", + "latitude": "-14.80306000", + "longitude": "36.53722000" + }, + { + "id": "76603", + "name": "Lichinga", + "state_id": 3333, + "state_code": "A", + "country_id": 150, + "country_code": "MZ", + "latitude": "-13.31278000", + "longitude": "35.24056000" + }, + { + "id": "76606", + "name": "Mandimba", + "state_id": 3333, + "state_code": "A", + "country_id": 150, + "country_code": "MZ", + "latitude": "-14.35250000", + "longitude": "35.65056000" + }, + { + "id": "76590", + "name": "Beira", + "state_id": 3331, + "state_code": "S", + "country_id": 150, + "country_code": "MZ", + "latitude": "-19.84361000", + "longitude": "34.83889000" + }, + { + "id": "76599", + "name": "Dondo", + "state_id": 3331, + "state_code": "S", + "country_id": 150, + "country_code": "MZ", + "latitude": "-19.60944000", + "longitude": "34.74306000" + }, + { + "id": "76620", + "name": "Nhamatanda District", + "state_id": 3331, + "state_code": "S", + "country_id": 150, + "country_code": "MZ", + "latitude": "-19.34900000", + "longitude": "34.26800000" + }, + { + "id": "76624", + "name": "Tete", + "state_id": 3334, + "state_code": "T", + "country_id": 150, + "country_code": "MZ", + "latitude": "-16.15639000", + "longitude": "33.58667000" + }, + { + "id": "76588", + "name": "Alto Molócuè", + "state_id": 3328, + "state_code": "Q", + "country_id": 150, + "country_code": "MZ", + "latitude": "-15.64932000", + "longitude": "37.66384000" + }, + { + "id": "76594", + "name": "Chinde", + "state_id": 3328, + "state_code": "Q", + "country_id": 150, + "country_code": "MZ", + "latitude": "-18.58111000", + "longitude": "36.45861000" + }, + { + "id": "76622", + "name": "Quelimane", + "state_id": 3328, + "state_code": "Q", + "country_id": 150, + "country_code": "MZ", + "latitude": "-17.87861000", + "longitude": "36.88833000" + }, + { + "id": "67633", + "name": "Bogale", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "16.29415000", + "longitude": "95.39742000" + }, + { + "id": "67639", + "name": "Hinthada", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "17.64944000", + "longitude": "95.45705000" + }, + { + "id": "67646", + "name": "Kyaiklat", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "16.44502000", + "longitude": "95.72373000" + }, + { + "id": "67656", + "name": "Maubin", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "16.73148000", + "longitude": "95.65441000" + }, + { + "id": "67659", + "name": "Mawlamyinegyunn", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "16.37720000", + "longitude": "95.26488000" + }, + { + "id": "67666", + "name": "Myanaung", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "18.28651000", + "longitude": "95.32014000" + }, + { + "id": "67673", + "name": "Nyaungdon", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "17.04459000", + "longitude": "95.63957000" + }, + { + "id": "67677", + "name": "Pathein", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "16.77919000", + "longitude": "94.73212000" + }, + { + "id": "67680", + "name": "Pyapon", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "16.28543000", + "longitude": "95.67882000" + }, + { + "id": "67701", + "name": "Wakema", + "state_id": 2142, + "state_code": "07", + "country_id": 151, + "country_code": "MM", + "latitude": "16.60333000", + "longitude": "95.18278000" + }, + { + "id": "67631", + "name": "Bago", + "state_id": 2141, + "state_code": "02", + "country_id": 151, + "country_code": "MM", + "latitude": "17.33521000", + "longitude": "96.48135000" + }, + { + "id": "67651", + "name": "Letpandan", + "state_id": 2141, + "state_code": "02", + "country_id": 151, + "country_code": "MM", + "latitude": "17.78664000", + "longitude": "95.75076000" + }, + { + "id": "67674", + "name": "Nyaunglebin", + "state_id": 2141, + "state_code": "02", + "country_id": 151, + "country_code": "MM", + "latitude": "17.95363000", + "longitude": "96.72247000" + }, + { + "id": "67678", + "name": "Paungde", + "state_id": 2141, + "state_code": "02", + "country_id": 151, + "country_code": "MM", + "latitude": "18.49167000", + "longitude": "95.50591000" + }, + { + "id": "67681", + "name": "Pyay", + "state_id": 2141, + "state_code": "02", + "country_id": 151, + "country_code": "MM", + "latitude": "18.82464000", + "longitude": "95.22216000" + }, + { + "id": "67684", + "name": "Pyu", + "state_id": 2141, + "state_code": "02", + "country_id": 151, + "country_code": "MM", + "latitude": "18.48130000", + "longitude": "96.43742000" + }, + { + "id": "67694", + "name": "Taungoo", + "state_id": 2141, + "state_code": "02", + "country_id": 151, + "country_code": "MM", + "latitude": "18.94291000", + "longitude": "96.43408000" + }, + { + "id": "67695", + "name": "Thanatpin", + "state_id": 2141, + "state_code": "02", + "country_id": 151, + "country_code": "MM", + "latitude": "17.29136000", + "longitude": "96.57523000" + }, + { + "id": "67696", + "name": "Tharyarwady", + "state_id": 2141, + "state_code": "02", + "country_id": 151, + "country_code": "MM", + "latitude": "17.65399000", + "longitude": "95.78813000" + }, + { + "id": "67637", + "name": "Falam", + "state_id": 2137, + "state_code": "14", + "country_id": 151, + "country_code": "MM", + "latitude": "22.91335000", + "longitude": "93.67779000" + }, + { + "id": "67638", + "name": "Hakha", + "state_id": 2137, + "state_code": "14", + "country_id": 151, + "country_code": "MM", + "latitude": "22.64452000", + "longitude": "93.61076000" + }, + { + "id": "67632", + "name": "Bhamo", + "state_id": 2143, + "state_code": "11", + "country_id": 151, + "country_code": "MM", + "latitude": "24.25256000", + "longitude": "97.23357000" + }, + { + "id": "67671", + "name": "Myitkyina", + "state_id": 2143, + "state_code": "11", + "country_id": 151, + "country_code": "MM", + "latitude": "25.38327000", + "longitude": "97.39637000" + }, + { + "id": "67652", + "name": "Loikaw", + "state_id": 2144, + "state_code": "12", + "country_id": 151, + "country_code": "MM", + "latitude": "19.67798000", + "longitude": "97.20975000" + }, + { + "id": "67636", + "name": "Dellok", + "state_id": 2133, + "state_code": "13", + "country_id": 151, + "country_code": "MM", + "latitude": "16.04072000", + "longitude": "97.91773000" + }, + { + "id": "67640", + "name": "Hpa-An", + "state_id": 2133, + "state_code": "13", + "country_id": 151, + "country_code": "MM", + "latitude": "16.88953000", + "longitude": "97.63482000" + }, + { + "id": "67644", + "name": "Klonhtoug", + "state_id": 2133, + "state_code": "13", + "country_id": 151, + "country_code": "MM", + "latitude": "15.95411000", + "longitude": "98.43250000" + }, + { + "id": "67648", + "name": "Kyain Seikgyi Township", + "state_id": 2133, + "state_code": "13", + "country_id": 151, + "country_code": "MM", + "latitude": "15.82288000", + "longitude": "98.25257000" + }, + { + "id": "67661", + "name": "Mikenaungea", + "state_id": 2133, + "state_code": "13", + "country_id": 151, + "country_code": "MM", + "latitude": "15.95846000", + "longitude": "98.42721000" + }, + { + "id": "67667", + "name": "Myawadi", + "state_id": 2133, + "state_code": "13", + "country_id": 151, + "country_code": "MM", + "latitude": "16.68911000", + "longitude": "98.50893000" + }, + { + "id": "67679", + "name": "Pulei", + "state_id": 2133, + "state_code": "13", + "country_id": 151, + "country_code": "MM", + "latitude": "16.06243000", + "longitude": "97.88280000" + }, + { + "id": "67690", + "name": "Tagondaing", + "state_id": 2133, + "state_code": "13", + "country_id": 151, + "country_code": "MM", + "latitude": "16.06750000", + "longitude": "97.90694000" + }, + { + "id": "67691", + "name": "Tamoowoug", + "state_id": 2133, + "state_code": "13", + "country_id": 151, + "country_code": "MM", + "latitude": "16.03447000", + "longitude": "97.91458000" + }, + { + "id": "67634", + "name": "Chauk", + "state_id": 2136, + "state_code": "03", + "country_id": 151, + "country_code": "MM", + "latitude": "20.89921000", + "longitude": "94.81784000" + }, + { + "id": "67653", + "name": "Magway", + "state_id": 2136, + "state_code": "03", + "country_id": 151, + "country_code": "MM", + "latitude": "20.14956000", + "longitude": "94.93246000" + }, + { + "id": "67662", + "name": "Minbu", + "state_id": 2136, + "state_code": "03", + "country_id": 151, + "country_code": "MM", + "latitude": "20.18059000", + "longitude": "94.87595000" + }, + { + "id": "67668", + "name": "Myaydo", + "state_id": 2136, + "state_code": "03", + "country_id": 151, + "country_code": "MM", + "latitude": "19.36838000", + "longitude": "95.21512000" + }, + { + "id": "67676", + "name": "Pakokku", + "state_id": 2136, + "state_code": "03", + "country_id": 151, + "country_code": "MM", + "latitude": "21.33489000", + "longitude": "95.08438000" + }, + { + "id": "67692", + "name": "Taungdwingyi", + "state_id": 2136, + "state_code": "03", + "country_id": 151, + "country_code": "MM", + "latitude": "20.00650000", + "longitude": "95.54531000" + }, + { + "id": "67698", + "name": "Thayetmyo", + "state_id": 2136, + "state_code": "03", + "country_id": 151, + "country_code": "MM", + "latitude": "19.32076000", + "longitude": "95.18272000" + }, + { + "id": "67704", + "name": "Yenangyaung", + "state_id": 2136, + "state_code": "03", + "country_id": 151, + "country_code": "MM", + "latitude": "20.46504000", + "longitude": "94.87120000" + }, + { + "id": "67649", + "name": "Kyaukse", + "state_id": 2134, + "state_code": "04", + "country_id": 151, + "country_code": "MM", + "latitude": "21.60560000", + "longitude": "96.13508000" + }, + { + "id": "67654", + "name": "Mandalay", + "state_id": 2134, + "state_code": "04", + "country_id": 151, + "country_code": "MM", + "latitude": "21.97473000", + "longitude": "96.08359000" + }, + { + "id": "67660", + "name": "Meiktila", + "state_id": 2134, + "state_code": "04", + "country_id": 151, + "country_code": "MM", + "latitude": "20.87776000", + "longitude": "95.85844000" + }, + { + "id": "67663", + "name": "Mogok", + "state_id": 2134, + "state_code": "04", + "country_id": 151, + "country_code": "MM", + "latitude": "22.91766000", + "longitude": "96.50982000" + }, + { + "id": "67670", + "name": "Myingyan", + "state_id": 2134, + "state_code": "04", + "country_id": 151, + "country_code": "MM", + "latitude": "21.46002000", + "longitude": "95.38840000" + }, + { + "id": "67675", + "name": "Nyaungshwe", + "state_id": 2134, + "state_code": "04", + "country_id": 151, + "country_code": "MM", + "latitude": "20.66084000", + "longitude": "96.93405000" + }, + { + "id": "67682", + "name": "Pyin Oo Lwin", + "state_id": 2134, + "state_code": "04", + "country_id": 151, + "country_code": "MM", + "latitude": "22.03501000", + "longitude": "96.45683000" + }, + { + "id": "67702", + "name": "Yamethin", + "state_id": 2134, + "state_code": "04", + "country_id": 151, + "country_code": "MM", + "latitude": "20.43189000", + "longitude": "96.13875000" + }, + { + "id": "67645", + "name": "Kyaikkami", + "state_id": 2147, + "state_code": "15", + "country_id": 151, + "country_code": "MM", + "latitude": "16.07686000", + "longitude": "97.56388000" + }, + { + "id": "67647", + "name": "Kyaikto", + "state_id": 2147, + "state_code": "15", + "country_id": 151, + "country_code": "MM", + "latitude": "17.30858000", + "longitude": "97.01124000" + }, + { + "id": "67655", + "name": "Martaban", + "state_id": 2147, + "state_code": "15", + "country_id": 151, + "country_code": "MM", + "latitude": "16.52834000", + "longitude": "97.61570000" + }, + { + "id": "67658", + "name": "Mawlamyine", + "state_id": 2147, + "state_code": "15", + "country_id": 151, + "country_code": "MM", + "latitude": "16.49051000", + "longitude": "97.62825000" + }, + { + "id": "67665", + "name": "Mudon", + "state_id": 2147, + "state_code": "15", + "country_id": 151, + "country_code": "MM", + "latitude": "16.25624000", + "longitude": "97.72460000" + }, + { + "id": "67697", + "name": "Thaton", + "state_id": 2147, + "state_code": "15", + "country_id": 151, + "country_code": "MM", + "latitude": "16.91867000", + "longitude": "97.37001000" + }, + { + "id": "67672", + "name": "Nay Pyi Taw", + "state_id": 2146, + "state_code": "18", + "country_id": 151, + "country_code": "MM", + "latitude": "19.74500000", + "longitude": "96.12972000" + }, + { + "id": "67683", + "name": "Pyinmana", + "state_id": 2146, + "state_code": "18", + "country_id": 151, + "country_code": "MM", + "latitude": "19.73810000", + "longitude": "96.20742000" + }, + { + "id": "67687", + "name": "Sittwe", + "state_id": 2138, + "state_code": "16", + "country_id": 151, + "country_code": "MM", + "latitude": "20.14624000", + "longitude": "92.89835000" + }, + { + "id": "67657", + "name": "Mawlaik", + "state_id": 2145, + "state_code": "01", + "country_id": 151, + "country_code": "MM", + "latitude": "23.64254000", + "longitude": "94.40478000" + }, + { + "id": "67664", + "name": "Monywa", + "state_id": 2145, + "state_code": "01", + "country_id": 151, + "country_code": "MM", + "latitude": "22.10856000", + "longitude": "95.13583000" + }, + { + "id": "67685", + "name": "Sagaing", + "state_id": 2145, + "state_code": "01", + "country_id": 151, + "country_code": "MM", + "latitude": "21.87870000", + "longitude": "95.97965000" + }, + { + "id": "67686", + "name": "Shwebo", + "state_id": 2145, + "state_code": "01", + "country_id": 151, + "country_code": "MM", + "latitude": "22.56925000", + "longitude": "95.69818000" + }, + { + "id": "67650", + "name": "Lashio", + "state_id": 2139, + "state_code": "17", + "country_id": 151, + "country_code": "MM", + "latitude": "22.93590000", + "longitude": "97.74980000" + }, + { + "id": "67689", + "name": "Tachilek", + "state_id": 2139, + "state_code": "17", + "country_id": 151, + "country_code": "MM", + "latitude": "20.44750000", + "longitude": "99.88083000" + }, + { + "id": "67693", + "name": "Taunggyi", + "state_id": 2139, + "state_code": "17", + "country_id": 151, + "country_code": "MM", + "latitude": "20.78919000", + "longitude": "97.03776000" + }, + { + "id": "67635", + "name": "Dawei", + "state_id": 2140, + "state_code": "05", + "country_id": 151, + "country_code": "MM", + "latitude": "14.08230000", + "longitude": "98.19151000" + }, + { + "id": "67642", + "name": "Kawthoung", + "state_id": 2140, + "state_code": "05", + "country_id": 151, + "country_code": "MM", + "latitude": "9.98238000", + "longitude": "98.55034000" + }, + { + "id": "67669", + "name": "Myeik", + "state_id": 2140, + "state_code": "05", + "country_id": 151, + "country_code": "MM", + "latitude": "12.43954000", + "longitude": "98.60028000" + }, + { + "id": "67641", + "name": "Kanbe", + "state_id": 2135, + "state_code": "06", + "country_id": 151, + "country_code": "MM", + "latitude": "16.70728000", + "longitude": "96.00168000" + }, + { + "id": "67643", + "name": "Kayan", + "state_id": 2135, + "state_code": "06", + "country_id": 151, + "country_code": "MM", + "latitude": "16.90802000", + "longitude": "96.56037000" + }, + { + "id": "67688", + "name": "Syriam", + "state_id": 2135, + "state_code": "06", + "country_id": 151, + "country_code": "MM", + "latitude": "16.76887000", + "longitude": "96.24503000" + }, + { + "id": "67699", + "name": "Thongwa", + "state_id": 2135, + "state_code": "06", + "country_id": 151, + "country_code": "MM", + "latitude": "16.75998000", + "longitude": "96.52498000" + }, + { + "id": "67700", + "name": "Twante", + "state_id": 2135, + "state_code": "06", + "country_id": 151, + "country_code": "MM", + "latitude": "16.71047000", + "longitude": "95.92866000" + }, + { + "id": "67703", + "name": "Yangon", + "state_id": 2135, + "state_code": "06", + "country_id": 151, + "country_code": "MM", + "latitude": "16.80528000", + "longitude": "96.15611000" + }, + { + "id": "76626", + "name": "Arandis", + "state_id": 43, + "state_code": "ER", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.41667000", + "longitude": "14.96667000" + }, + { + "id": "76633", + "name": "Hentiesbaai", + "state_id": 43, + "state_code": "ER", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.11667000", + "longitude": "14.28333000" + }, + { + "id": "76636", + "name": "Karibib", + "state_id": 43, + "state_code": "ER", + "country_id": 152, + "country_code": "NA", + "latitude": "-21.93333000", + "longitude": "15.83333000" + }, + { + "id": "76648", + "name": "Omaruru", + "state_id": 43, + "state_code": "ER", + "country_id": 152, + "country_code": "NA", + "latitude": "-21.43333000", + "longitude": "15.93333000" + }, + { + "id": "76659", + "name": "Otjimbingwe", + "state_id": 43, + "state_code": "ER", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.35000000", + "longitude": "16.13333000" + }, + { + "id": "76666", + "name": "Swakopmund", + "state_id": 43, + "state_code": "ER", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.67842000", + "longitude": "14.52663000" + }, + { + "id": "76667", + "name": "Swakopmund Constituency", + "state_id": 43, + "state_code": "ER", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.63199000", + "longitude": "14.60119000" + }, + { + "id": "76670", + "name": "Usakos", + "state_id": 43, + "state_code": "ER", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.00000000", + "longitude": "15.60000000" + }, + { + "id": "76671", + "name": "Walvis Bay", + "state_id": 43, + "state_code": "ER", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.95750000", + "longitude": "14.50528000" + }, + { + "id": "76627", + "name": "Aranos", + "state_id": 38, + "state_code": "HA", + "country_id": 152, + "country_code": "NA", + "latitude": "-24.13333000", + "longitude": "19.11667000" + }, + { + "id": "76634", + "name": "Hoachanas", + "state_id": 38, + "state_code": "HA", + "country_id": 152, + "country_code": "NA", + "latitude": "-23.91667000", + "longitude": "18.05000000" + }, + { + "id": "76643", + "name": "Maltahöhe", + "state_id": 38, + "state_code": "HA", + "country_id": 152, + "country_code": "NA", + "latitude": "-24.83333000", + "longitude": "16.98333000" + }, + { + "id": "76644", + "name": "Mariental", + "state_id": 38, + "state_code": "HA", + "country_id": 152, + "country_code": "NA", + "latitude": "-24.63333000", + "longitude": "17.96667000" + }, + { + "id": "76663", + "name": "Rehoboth", + "state_id": 38, + "state_code": "HA", + "country_id": 152, + "country_code": "NA", + "latitude": "-23.31700000", + "longitude": "17.09000000" + }, + { + "id": "76629", + "name": "Bethanie", + "state_id": 45, + "state_code": "KA", + "country_id": 152, + "country_code": "NA", + "latitude": "-26.48333000", + "longitude": "17.15000000" + }, + { + "id": "76635", + "name": "Karasburg", + "state_id": 45, + "state_code": "KA", + "country_id": 152, + "country_code": "NA", + "latitude": "-28.01667000", + "longitude": "18.75000000" + }, + { + "id": "76639", + "name": "Keetmanshoop", + "state_id": 45, + "state_code": "KA", + "country_id": 152, + "country_code": "NA", + "latitude": "-26.58333000", + "longitude": "18.13333000" + }, + { + "id": "76642", + "name": "Lüderitz", + "state_id": 45, + "state_code": "KA", + "country_id": 152, + "country_code": "NA", + "latitude": "-26.64807000", + "longitude": "15.15383000" + }, + { + "id": "76655", + "name": "Oranjemund", + "state_id": 45, + "state_code": "KA", + "country_id": 152, + "country_code": "NA", + "latitude": "-28.55000000", + "longitude": "16.43333000" + }, + { + "id": "76668", + "name": "Tses", + "state_id": 45, + "state_code": "KA", + "country_id": 152, + "country_code": "NA", + "latitude": "-25.88333000", + "longitude": "18.00000000" + }, + { + "id": "76672", + "name": "Warmbad", + "state_id": 45, + "state_code": "KA", + "country_id": 152, + "country_code": "NA", + "latitude": "-28.45000000", + "longitude": "18.73333000" + }, + { + "id": "76664", + "name": "Rundu", + "state_id": 36, + "state_code": "KE", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.93333000", + "longitude": "19.76667000" + }, + { + "id": "76638", + "name": "Katutura", + "state_id": 44, + "state_code": "KH", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.52306000", + "longitude": "17.06028000" + }, + { + "id": "76673", + "name": "Windhoek", + "state_id": 44, + "state_code": "KH", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.55941000", + "longitude": "17.08323000" + }, + { + "id": "76630", + "name": "Epupa Constituency", + "state_id": 34, + "state_code": "KU", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.00388000", + "longitude": "13.24825000" + }, + { + "id": "76640", + "name": "Khorixas", + "state_id": 34, + "state_code": "KU", + "country_id": 152, + "country_code": "NA", + "latitude": "-20.36667000", + "longitude": "14.96667000" + }, + { + "id": "76641", + "name": "Khorixas Constituency", + "state_id": 34, + "state_code": "KU", + "country_id": 152, + "country_code": "NA", + "latitude": "-20.36792000", + "longitude": "14.95996000" + }, + { + "id": "76653", + "name": "Opuwo", + "state_id": 34, + "state_code": "KU", + "country_id": 152, + "country_code": "NA", + "latitude": "-18.06068000", + "longitude": "13.83998000" + }, + { + "id": "76654", + "name": "Opuwo Constituency", + "state_id": 34, + "state_code": "KU", + "country_id": 152, + "country_code": "NA", + "latitude": "-18.54247000", + "longitude": "13.51617000" + }, + { + "id": "76662", + "name": "Outjo", + "state_id": 34, + "state_code": "KU", + "country_id": 152, + "country_code": "NA", + "latitude": "-20.11667000", + "longitude": "16.15000000" + }, + { + "id": "76665", + "name": "Sesfontein Constituency", + "state_id": 34, + "state_code": "KU", + "country_id": 152, + "country_code": "NA", + "latitude": "-19.56106000", + "longitude": "13.76530000" + }, + { + "id": "76657", + "name": "Oshikango", + "state_id": 40, + "state_code": "OW", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.40000000", + "longitude": "15.88333000" + }, + { + "id": "76631", + "name": "Gobabis", + "state_id": 41, + "state_code": "OH", + "country_id": 152, + "country_code": "NA", + "latitude": "-22.45000000", + "longitude": "18.96667000" + }, + { + "id": "76646", + "name": "Okahao", + "state_id": 39, + "state_code": "OS", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.88758000", + "longitude": "15.06677000" + }, + { + "id": "76651", + "name": "Ongandjera", + "state_id": 39, + "state_code": "OS", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.88333000", + "longitude": "15.06667000" + }, + { + "id": "76661", + "name": "Outapi", + "state_id": 39, + "state_code": "OS", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.50000000", + "longitude": "14.98333000" + }, + { + "id": "76650", + "name": "Ondangwa", + "state_id": 37, + "state_code": "ON", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.91667000", + "longitude": "15.95000000" + }, + { + "id": "76652", + "name": "Ongwediva", + "state_id": 37, + "state_code": "ON", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.78333000", + "longitude": "15.76667000" + }, + { + "id": "76656", + "name": "Oshakati", + "state_id": 37, + "state_code": "ON", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.78833000", + "longitude": "15.70436000" + }, + { + "id": "76649", + "name": "Omuthiya", + "state_id": 42, + "state_code": "OT", + "country_id": 152, + "country_code": "NA", + "latitude": "-18.36463000", + "longitude": "16.58146000" + }, + { + "id": "76669", + "name": "Tsumeb", + "state_id": 42, + "state_code": "OT", + "country_id": 152, + "country_code": "NA", + "latitude": "-19.23333000", + "longitude": "17.71667000" + }, + { + "id": "76632", + "name": "Grootfontein", + "state_id": 46, + "state_code": "OD", + "country_id": 152, + "country_code": "NA", + "latitude": "-19.56667000", + "longitude": "18.11667000" + }, + { + "id": "76645", + "name": "Okahandja", + "state_id": 46, + "state_code": "OD", + "country_id": 152, + "country_code": "NA", + "latitude": "-21.98333000", + "longitude": "16.91667000" + }, + { + "id": "76647", + "name": "Okakarara", + "state_id": 46, + "state_code": "OD", + "country_id": 152, + "country_code": "NA", + "latitude": "-20.58333000", + "longitude": "17.43333000" + }, + { + "id": "76658", + "name": "Otavi", + "state_id": 46, + "state_code": "OD", + "country_id": 152, + "country_code": "NA", + "latitude": "-19.65000000", + "longitude": "17.33333000" + }, + { + "id": "76660", + "name": "Otjiwarongo", + "state_id": 46, + "state_code": "OD", + "country_id": 152, + "country_code": "NA", + "latitude": "-20.46369000", + "longitude": "16.64772000" + }, + { + "id": "76628", + "name": "Bagani", + "state_id": 47, + "state_code": "CA", + "country_id": 152, + "country_code": "NA", + "latitude": "-18.11065000", + "longitude": "21.61645000" + }, + { + "id": "76637", + "name": "Katima Mulilo", + "state_id": 47, + "state_code": "CA", + "country_id": 152, + "country_code": "NA", + "latitude": "-17.50000000", + "longitude": "24.26667000" + }, + { + "id": "79762", + "name": "Arijejen", + "state_id": 4656, + "state_code": "01", + "country_id": 153, + "country_code": "NR", + "latitude": "-0.52545000", + "longitude": "166.91247000" + }, + { + "id": "79761", + "name": "Anabar", + "state_id": 4658, + "state_code": "02", + "country_id": 153, + "country_code": "NR", + "latitude": "-0.50845000", + "longitude": "166.95326000" + }, + { + "id": "79763", + "name": "Baiti", + "state_id": 4660, + "state_code": "05", + "country_id": 153, + "country_code": "NR", + "latitude": "-0.50803000", + "longitude": "166.92945000" + }, + { + "id": "79764", + "name": "Ijuw", + "state_id": 4661, + "state_code": "10", + "country_id": 153, + "country_code": "NR", + "latitude": "-0.52100000", + "longitude": "166.95813000" + }, + { + "id": "79765", + "name": "Menen", + "state_id": 4657, + "state_code": "11", + "country_id": 153, + "country_code": "NR", + "latitude": "-0.54539000", + "longitude": "166.94871000" + }, + { + "id": "79766", + "name": "Uaboe", + "state_id": 4655, + "state_code": "13", + "country_id": 153, + "country_code": "NR", + "latitude": "-0.51393000", + "longitude": "166.92384000" + }, + { + "id": "79767", + "name": "Yaren", + "state_id": 4664, + "state_code": "14", + "country_id": 153, + "country_code": "NR", + "latitude": "-0.55085000", + "longitude": "166.92520000" + }, + { + "id": "79705", + "name": "Banepā", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.63245000", + "longitude": "85.52192000" + }, + { + "id": "79707", + "name": "Bharatpur", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.67680000", + "longitude": "84.43589000" + }, + { + "id": "79713", + "name": "Birgañj", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.01709000", + "longitude": "84.88080000" + }, + { + "id": "79722", + "name": "Dhulikhel", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.62210000", + "longitude": "85.54281000" + }, + { + "id": "79726", + "name": "Gaur", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "26.76448000", + "longitude": "85.27841000" + }, + { + "id": "79728", + "name": "Hari Bdr Tamang House", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.62890000", + "longitude": "85.45893000" + }, + { + "id": "79729", + "name": "Hetauda", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.42839000", + "longitude": "85.03219000" + }, + { + "id": "79732", + "name": "Jaleshwar", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "26.64921000", + "longitude": "85.80017000" + }, + { + "id": "79733", + "name": "Janakpur", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "26.72882000", + "longitude": "85.92628000" + }, + { + "id": "79759", + "name": "kankrabari Dovan", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.62881000", + "longitude": "85.45934000" + }, + { + "id": "79735", + "name": "Kathmandu", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.70169000", + "longitude": "85.32060000" + }, + { + "id": "79737", + "name": "Kirtipur", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.67872000", + "longitude": "85.27750000" + }, + { + "id": "79740", + "name": "Madhyapur Thimi", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.68056000", + "longitude": "85.38750000" + }, + { + "id": "79742", + "name": "Malaṅgawā", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "26.85658000", + "longitude": "85.55940000" + }, + { + "id": "79743", + "name": "Nagarkot", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.71522000", + "longitude": "85.52075000" + }, + { + "id": "79746", + "name": "Panauti", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.58466000", + "longitude": "85.52122000" + }, + { + "id": "79747", + "name": "Panauti̇̄", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.58453000", + "longitude": "85.51484000" + }, + { + "id": "79749", + "name": "Pātan", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.67658000", + "longitude": "85.31417000" + }, + { + "id": "79751", + "name": "Rāmechhāp", + "state_id": 2073, + "state_code": "1", + "country_id": 154, + "country_code": "NP", + "latitude": "27.32560000", + "longitude": "86.08768000" + }, + { + "id": "79706", + "name": "Bhadrapur", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.54404000", + "longitude": "88.09436000" + }, + { + "id": "79709", + "name": "Bhojpur", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "27.17150000", + "longitude": "87.04607000" + }, + { + "id": "79711", + "name": "Biratnagar", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.45505000", + "longitude": "87.27007000" + }, + { + "id": "79720", + "name": "Dhankutā", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.98333000", + "longitude": "87.33333000" + }, + { + "id": "79721", + "name": "Dharān", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.81436000", + "longitude": "87.27972000" + }, + { + "id": "79730", + "name": "Ilām", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.90943000", + "longitude": "87.92824000" + }, + { + "id": "79731", + "name": "Inaruwa", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.60675000", + "longitude": "87.14780000" + }, + { + "id": "79736", + "name": "Khanbari", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "27.37604000", + "longitude": "87.20767000" + }, + { + "id": "79738", + "name": "Lahān", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.72022000", + "longitude": "86.48258000" + }, + { + "id": "79739", + "name": "Lobujya", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "27.95000000", + "longitude": "86.81667000" + }, + { + "id": "79744", + "name": "Namche Bazar", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "27.80528000", + "longitude": "86.71058000" + }, + { + "id": "79750", + "name": "Rājbirāj", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.53968000", + "longitude": "86.74796000" + }, + { + "id": "79753", + "name": "Siraha", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.65422000", + "longitude": "86.20795000" + }, + { + "id": "79754", + "name": "Titahari", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.66371000", + "longitude": "87.27403000" + }, + { + "id": "79755", + "name": "Triyuga", + "state_id": 2069, + "state_code": "4", + "country_id": 154, + "country_code": "NP", + "latitude": "26.79190000", + "longitude": "86.69900000" + }, + { + "id": "79760", + "name": "Ṭikāpur", + "state_id": 2068, + "state_code": "5", + "country_id": 154, + "country_code": "NP", + "latitude": "28.52823000", + "longitude": "81.11798000" + }, + { + "id": "79717", + "name": "Dadeldhurā", + "state_id": 2068, + "state_code": "5", + "country_id": 154, + "country_code": "NP", + "latitude": "29.29842000", + "longitude": "80.58059000" + }, + { + "id": "79719", + "name": "Dhangaḍhi̇̄", + "state_id": 2068, + "state_code": "5", + "country_id": 154, + "country_code": "NP", + "latitude": "28.70137000", + "longitude": "80.58975000" + }, + { + "id": "79724", + "name": "Dipayal", + "state_id": 2068, + "state_code": "5", + "country_id": 154, + "country_code": "NP", + "latitude": "29.26083000", + "longitude": "80.94000000" + }, + { + "id": "79741", + "name": "Mahendranagar", + "state_id": 2068, + "state_code": "5", + "country_id": 154, + "country_code": "NP", + "latitude": "28.96399000", + "longitude": "80.17715000" + }, + { + "id": "79710", + "name": "Bhojpur", + "state_id": 2066, + "state_code": "2", + "country_id": 154, + "country_code": "NP", + "latitude": "27.93565000", + "longitude": "81.77555000" + }, + { + "id": "79712", + "name": "Birendranagar", + "state_id": 2066, + "state_code": "2", + "country_id": 154, + "country_code": "NP", + "latitude": "28.60194000", + "longitude": "81.63389000" + }, + { + "id": "79718", + "name": "Dailekh", + "state_id": 2066, + "state_code": "2", + "country_id": 154, + "country_code": "NP", + "latitude": "28.84434000", + "longitude": "81.71011000" + }, + { + "id": "79727", + "name": "Gulariyā", + "state_id": 2066, + "state_code": "2", + "country_id": 154, + "country_code": "NP", + "latitude": "28.20580000", + "longitude": "81.34532000" + }, + { + "id": "79734", + "name": "Jumla", + "state_id": 2066, + "state_code": "2", + "country_id": 154, + "country_code": "NP", + "latitude": "29.27472000", + "longitude": "82.18383000" + }, + { + "id": "79745", + "name": "Nepalgunj", + "state_id": 2066, + "state_code": "2", + "country_id": 154, + "country_code": "NP", + "latitude": "28.05000000", + "longitude": "81.61667000" + }, + { + "id": "79756", + "name": "Tulsīpur", + "state_id": 2066, + "state_code": "2", + "country_id": 154, + "country_code": "NP", + "latitude": "28.13099000", + "longitude": "82.29726000" + }, + { + "id": "79715", + "name": "Bāglung", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "28.27189000", + "longitude": "83.58975000" + }, + { + "id": "79708", + "name": "Bhattarai Danda", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "27.88333000", + "longitude": "83.93333000" + }, + { + "id": "79714", + "name": "Butwāl", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "27.70055000", + "longitude": "83.44836000" + }, + { + "id": "79716", + "name": "Chitre", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "28.42673000", + "longitude": "83.69076000" + }, + { + "id": "79725", + "name": "Dārchulā", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "29.83000000", + "longitude": "80.55000000" + }, + { + "id": "79723", + "name": "Dihi", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "27.87552000", + "longitude": "83.92759000" + }, + { + "id": "79748", + "name": "Pokhara", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "28.26689000", + "longitude": "83.96851000" + }, + { + "id": "79752", + "name": "Siddharthanagar", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "27.50000000", + "longitude": "83.45000000" + }, + { + "id": "79757", + "name": "Tānsen", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "27.86731000", + "longitude": "83.54670000" + }, + { + "id": "79758", + "name": "Wāliṅ", + "state_id": 2067, + "state_code": "3", + "country_id": 154, + "country_code": "NP", + "latitude": "27.98370000", + "longitude": "83.75925000" + }, + { + "id": "77306", + "name": "Aalden", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.79000000", + "longitude": "6.71806000" + }, + { + "id": "77344", + "name": "Angelslo", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.78090000", + "longitude": "6.92645000" + }, + { + "id": "77349", + "name": "Annen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.05750000", + "longitude": "6.71944000" + }, + { + "id": "77357", + "name": "Assen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.99667000", + "longitude": "6.56250000" + }, + { + "id": "77376", + "name": "Ballast", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.67218000", + "longitude": "6.73299000" + }, + { + "id": "77380", + "name": "Barger-Oosterveld", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.77000000", + "longitude": "6.95833000" + }, + { + "id": "77381", + "name": "Bargeres", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.76152000", + "longitude": "6.88145000" + }, + { + "id": "77395", + "name": "Beilen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.86333000", + "longitude": "6.51389000" + }, + { + "id": "77456", + "name": "Borger", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.92333000", + "longitude": "6.79306000" + }, + { + "id": "77519", + "name": "Coevorden", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.66103000", + "longitude": "6.74046000" + }, + { + "id": "77528", + "name": "Dalen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.69917000", + "longitude": "6.75556000" + }, + { + "id": "77552", + "name": "De Loo", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.67167000", + "longitude": "6.73967000" + }, + { + "id": "77563", + "name": "De Wijk", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.67333000", + "longitude": "6.29028000" + }, + { + "id": "77581", + "name": "Diever", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.85417000", + "longitude": "6.31806000" + }, + { + "id": "77620", + "name": "Dwingeloo", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.83417000", + "longitude": "6.36944000" + }, + { + "id": "77628", + "name": "Eelde", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.13583000", + "longitude": "6.56250000" + }, + { + "id": "77634", + "name": "Eext", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.01750000", + "longitude": "6.73472000" + }, + { + "id": "77653", + "name": "Emmen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.77917000", + "longitude": "6.90694000" + }, + { + "id": "77654", + "name": "Emmer-Compascuum", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.81167000", + "longitude": "7.04722000" + }, + { + "id": "77655", + "name": "Emmer-Erfscheidenveen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.80667000", + "longitude": "6.98889000" + }, + { + "id": "77656", + "name": "Emmerhout", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.78755000", + "longitude": "6.93881000" + }, + { + "id": "77657", + "name": "Emmermeer", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.80071000", + "longitude": "6.89315000" + }, + { + "id": "77658", + "name": "Emmerschans", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.80083000", + "longitude": "6.93889000" + }, + { + "id": "77671", + "name": "Exloo", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.88250000", + "longitude": "6.86389000" + }, + { + "id": "77684", + "name": "Gasselte", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.97167000", + "longitude": "6.79444000" + }, + { + "id": "77685", + "name": "Gasselternijveen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.98833000", + "longitude": "6.85278000" + }, + { + "id": "77696", + "name": "Gemeente Aa en Hunze", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.00445000", + "longitude": "6.74908000" + }, + { + "id": "77714", + "name": "Gemeente Assen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.99635000", + "longitude": "6.55255000" + }, + { + "id": "77735", + "name": "Gemeente Borger-Odoorn", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.90501000", + "longitude": "6.88042000" + }, + { + "id": "77750", + "name": "Gemeente Coevorden", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.74344000", + "longitude": "6.72487000" + }, + { + "id": "77758", + "name": "Gemeente De Wolden", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.70102000", + "longitude": "6.37277000" + }, + { + "id": "77783", + "name": "Gemeente Emmen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.75243000", + "longitude": "6.95938000" + }, + { + "id": "77831", + "name": "Gemeente Hoogeveen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71820000", + "longitude": "6.51803000" + }, + { + "id": "77871", + "name": "Gemeente Meppel", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.70885000", + "longitude": "6.19727000" + }, + { + "id": "77874", + "name": "Gemeente Midden-Drenthe", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.86716000", + "longitude": "6.53840000" + }, + { + "id": "77887", + "name": "Gemeente Noordenveld", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.11494000", + "longitude": "6.44622000" + }, + { + "id": "77958", + "name": "Gemeente Tynaarlo", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.10417000", + "longitude": "6.60271000" + }, + { + "id": "77991", + "name": "Gemeente Westerveld", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.82700000", + "longitude": "6.29060000" + }, + { + "id": "78031", + "name": "Gieten", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.00500000", + "longitude": "6.76389000" + }, + { + "id": "78104", + "name": "Havelte", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.76941000", + "longitude": "6.24015000" + }, + { + "id": "78181", + "name": "Hoogeveen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.72250000", + "longitude": "6.47639000" + }, + { + "id": "78235", + "name": "Klazienaveen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.72417000", + "longitude": "6.99028000" + }, + { + "id": "78241", + "name": "Koekange", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.69917000", + "longitude": "6.31667000" + }, + { + "id": "78255", + "name": "Krakeel", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.72339000", + "longitude": "6.51146000" + }, + { + "id": "78354", + "name": "Marsdijk", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.01766000", + "longitude": "6.58527000" + }, + { + "id": "78381", + "name": "Meppel", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.69583000", + "longitude": "6.19444000" + }, + { + "id": "78431", + "name": "Nieuw-Buinen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.96250000", + "longitude": "6.95000000" + }, + { + "id": "78432", + "name": "Nieuw-Dordrecht", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.74833000", + "longitude": "6.96806000" + }, + { + "id": "78436", + "name": "Nieuw-Roden", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.13167000", + "longitude": "6.39722000" + }, + { + "id": "78463", + "name": "Noordbarge", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.77237000", + "longitude": "6.88713000" + }, + { + "id": "78473", + "name": "Norg", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.06667000", + "longitude": "6.45833000" + }, + { + "id": "78484", + "name": "Odoorn", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.84917000", + "longitude": "6.85139000" + }, + { + "id": "78516", + "name": "Oosterhesselen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.75417000", + "longitude": "6.72222000" + }, + { + "id": "78581", + "name": "Paterswolde", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.14500000", + "longitude": "6.56528000" + }, + { + "id": "78583", + "name": "Peelo", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.01719000", + "longitude": "6.56208000" + }, + { + "id": "78585", + "name": "Peize", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.14667000", + "longitude": "6.49722000" + }, + { + "id": "78633", + "name": "Roden", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.13750000", + "longitude": "6.42083000" + }, + { + "id": "78636", + "name": "Rolde", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.98417000", + "longitude": "6.64861000" + }, + { + "id": "78648", + "name": "Ruinen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.76250000", + "longitude": "6.35417000" + }, + { + "id": "78649", + "name": "Ruinerwold", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.72333000", + "longitude": "6.24861000" + }, + { + "id": "78679", + "name": "Schoonebeek", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.66250000", + "longitude": "6.88472000" + }, + { + "id": "78681", + "name": "Schoonoord", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.84583000", + "longitude": "6.75556000" + }, + { + "id": "78709", + "name": "Sleen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.77167000", + "longitude": "6.80278000" + }, + { + "id": "78796", + "name": "Tweede Exloërmond", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.90917000", + "longitude": "6.93333000" + }, + { + "id": "78802", + "name": "Tynaarlo", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.07750000", + "longitude": "6.61667000" + }, + { + "id": "78809", + "name": "Uffelte", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.79000000", + "longitude": "6.28056000" + }, + { + "id": "78832", + "name": "Valthe", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.84583000", + "longitude": "6.89444000" + }, + { + "id": "78833", + "name": "Valthermond", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.88167000", + "longitude": "6.96250000" + }, + { + "id": "78838", + "name": "Veenoord", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71087000", + "longitude": "6.84869000" + }, + { + "id": "78857", + "name": "Vledder", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.85583000", + "longitude": "6.20833000" + }, + { + "id": "78885", + "name": "Vries", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.07417000", + "longitude": "6.57778000" + }, + { + "id": "78917", + "name": "Weiteveen", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.67250000", + "longitude": "6.98750000" + }, + { + "id": "78935", + "name": "Westerbork", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.85000000", + "longitude": "6.60833000" + }, + { + "id": "78943", + "name": "Westlaren", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.08480000", + "longitude": "6.66469000" + }, + { + "id": "78976", + "name": "Wolfsbos", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71734000", + "longitude": "6.49881000" + }, + { + "id": "79028", + "name": "Zuidlaren", + "state_id": 2613, + "state_code": "DR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.09417000", + "longitude": "6.68194000" + }, + { + "id": "77327", + "name": "Almere Stad", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.37025000", + "longitude": "5.21413000" + }, + { + "id": "77427", + "name": "Biddinghuizen", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.45500000", + "longitude": "5.69306000" + }, + { + "id": "77612", + "name": "Dronten", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.52500000", + "longitude": "5.71806000" + }, + { + "id": "77652", + "name": "Emmeloord", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71083000", + "longitude": "5.74861000" + }, + { + "id": "77661", + "name": "Ens", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.63667000", + "longitude": "5.82778000" + }, + { + "id": "77704", + "name": "Gemeente Almere", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.36861000", + "longitude": "5.23750000" + }, + { + "id": "77773", + "name": "Gemeente Dronten", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.50000000", + "longitude": "5.71667000" + }, + { + "id": "77855", + "name": "Gemeente Lelystad", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.47542000", + "longitude": "5.43811000" + }, + { + "id": "77888", + "name": "Gemeente Noordoostpolder", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71703000", + "longitude": "5.77248000" + }, + { + "id": "77963", + "name": "Gemeente Urk", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.66585000", + "longitude": "5.62371000" + }, + { + "id": "78008", + "name": "Gemeente Zeewolde", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.34420000", + "longitude": "5.45904000" + }, + { + "id": "78288", + "name": "Lelystad", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.50833000", + "longitude": "5.47500000" + }, + { + "id": "78819", + "name": "Urk", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.66250000", + "longitude": "5.60139000" + }, + { + "id": "79002", + "name": "Zeewolde", + "state_id": 2619, + "state_code": "FL", + "country_id": 156, + "country_code": "NL", + "latitude": "52.33000000", + "longitude": "5.54167000" + }, + { + "id": "77321", + "name": "Akkrum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.05024000", + "longitude": "5.83087000" + }, + { + "id": "77323", + "name": "Aldeboarn", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.05000000", + "longitude": "5.90000000" + }, + { + "id": "77324", + "name": "Aldlân-Oost", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.18860000", + "longitude": "5.82825000" + }, + { + "id": "77351", + "name": "Appelscha", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.95526000", + "longitude": "6.35053000" + }, + { + "id": "77359", + "name": "Augustinusga", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21785000", + "longitude": "6.16170000" + }, + { + "id": "77373", + "name": "Bakhuizen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.86975000", + "longitude": "5.45926000" + }, + { + "id": "77374", + "name": "Bakkeveen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.08072000", + "longitude": "6.25671000" + }, + { + "id": "77375", + "name": "Balk", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.89756000", + "longitude": "5.57964000" + }, + { + "id": "77394", + "name": "Beetsterzwaag", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.05914000", + "longitude": "6.07711000" + }, + { + "id": "77420", + "name": "Berltsum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.24370000", + "longitude": "5.65101000" + }, + { + "id": "77431", + "name": "Bilgaard", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21551000", + "longitude": "5.79574000" + }, + { + "id": "77452", + "name": "Bolsward", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.06555000", + "longitude": "5.53176000" + }, + { + "id": "77453", + "name": "Boornbergum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.08284000", + "longitude": "6.04578000" + }, + { + "id": "77487", + "name": "Broeksterwâld", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.27466000", + "longitude": "5.99648000" + }, + { + "id": "77501", + "name": "Buitenpost", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.25166000", + "longitude": "6.14483000" + }, + { + "id": "77505", + "name": "Burdaard", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.29421000", + "longitude": "5.87897000" + }, + { + "id": "77507", + "name": "Burgum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.19243000", + "longitude": "5.99009000" + }, + { + "id": "77510", + "name": "Camminghaburen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.20973000", + "longitude": "5.84318000" + }, + { + "id": "77530", + "name": "Damwâld", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.29046000", + "longitude": "5.99785000" + }, + { + "id": "77535", + "name": "De Domp", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.03113000", + "longitude": "5.67716000" + }, + { + "id": "77537", + "name": "De Drait", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.09743000", + "longitude": "6.06791000" + }, + { + "id": "77538", + "name": "De Fryske Marren", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.96906000", + "longitude": "5.77246000" + }, + { + "id": "77541", + "name": "De Greiden", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.94960000", + "longitude": "5.91366000" + }, + { + "id": "77548", + "name": "De Knipe", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.96829000", + "longitude": "5.97116000" + }, + { + "id": "77561", + "name": "De Westereen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.25731000", + "longitude": "6.03630000" + }, + { + "id": "77588", + "name": "Dokkum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.32224000", + "longitude": "5.99697000" + }, + { + "id": "77593", + "name": "Donkerbroek", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.01734000", + "longitude": "6.23927000" + }, + { + "id": "77602", + "name": "Drachten", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.11254000", + "longitude": "6.09890000" + }, + { + "id": "77603", + "name": "Drachtstercompagnie", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.13462000", + "longitude": "6.14153000" + }, + { + "id": "77610", + "name": "Drogeham", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.20213000", + "longitude": "6.11183000" + }, + { + "id": "77611", + "name": "Dronryp", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.20000000", + "longitude": "5.65000000" + }, + { + "id": "77621", + "name": "Eastermar", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.17466000", + "longitude": "6.05999000" + }, + { + "id": "77622", + "name": "Echtenerbrug", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.87141000", + "longitude": "5.82147000" + }, + { + "id": "77673", + "name": "Feanwâlden", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.23558000", + "longitude": "5.98832000" + }, + { + "id": "77675", + "name": "Ferwert", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.33784000", + "longitude": "5.82533000" + }, + { + "id": "77678", + "name": "Franeker", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.18546000", + "longitude": "5.54123000" + }, + { + "id": "77683", + "name": "Garyp", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.16667000", + "longitude": "5.96667000" + }, + { + "id": "77699", + "name": "Gemeente Achtkarspelen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21167000", + "longitude": "6.13776000" + }, + { + "id": "77707", + "name": "Gemeente Ameland", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.45024000", + "longitude": "5.78277000" + }, + { + "id": "77755", + "name": "Gemeente Dantumadiel", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.29113000", + "longitude": "5.99545000" + }, + { + "id": "77809", + "name": "Gemeente Harlingen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.17525000", + "longitude": "5.41806000" + }, + { + "id": "77814", + "name": "Gemeente Heerenveen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.94220000", + "longitude": "6.04410000" + }, + { + "id": "77851", + "name": "Gemeente Leeuwarden", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.18602000", + "longitude": "5.81111000" + }, + { + "id": "77900", + "name": "Gemeente Ooststellingwerf", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.98264000", + "longitude": "6.27515000" + }, + { + "id": "77903", + "name": "Gemeente Opsterland", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.04849000", + "longitude": "6.12128000" + }, + { + "id": "77932", + "name": "Gemeente Schiermonnikoog", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.48707000", + "longitude": "6.22917000" + }, + { + "id": "77939", + "name": "Gemeente Smallingerland", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.11667000", + "longitude": "6.03333000" + }, + { + "id": "77950", + "name": "Gemeente Terschelling", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.40000000", + "longitude": "5.35000000" + }, + { + "id": "77959", + "name": "Gemeente Tytsjerksteradiel", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.19966000", + "longitude": "5.95802000" + }, + { + "id": "77976", + "name": "Gemeente Vlieland", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.25320000", + "longitude": "4.95071000" + }, + { + "id": "77994", + "name": "Gemeente Weststellingwerf", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.87647000", + "longitude": "6.01998000" + }, + { + "id": "78042", + "name": "Gorredijk", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.00659000", + "longitude": "6.06402000" + }, + { + "id": "78047", + "name": "Goutum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.17734000", + "longitude": "5.80370000" + }, + { + "id": "78068", + "name": "Grou", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.09456000", + "longitude": "5.83745000" + }, + { + "id": "78073", + "name": "Gytsjerk", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.24293000", + "longitude": "5.89502000" + }, + { + "id": "78086", + "name": "Hallum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.30657000", + "longitude": "5.78379000" + }, + { + "id": "78095", + "name": "Harkema", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.18333000", + "longitude": "6.13333000" + }, + { + "id": "78097", + "name": "Harlingen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.17477000", + "longitude": "5.42244000" + }, + { + "id": "78103", + "name": "Haulerwijk", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.06468000", + "longitude": "6.33453000" + }, + { + "id": "78106", + "name": "Heechterp", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.20963000", + "longitude": "5.82250000" + }, + { + "id": "78107", + "name": "Heeg", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.96860000", + "longitude": "5.61075000" + }, + { + "id": "78114", + "name": "Heerenveen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.95929000", + "longitude": "5.91854000" + }, + { + "id": "78162", + "name": "Hoek", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.20455000", + "longitude": "5.80192000" + }, + { + "id": "78170", + "name": "Hollum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.43940000", + "longitude": "5.63805000" + }, + { + "id": "78172", + "name": "Holwerd", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.36815000", + "longitude": "5.90073000" + }, + { + "id": "78193", + "name": "Huizum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.19170000", + "longitude": "5.81119000" + }, + { + "id": "78198", + "name": "Hurdegaryp", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21333000", + "longitude": "5.94137000" + }, + { + "id": "78200", + "name": "IJlst", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.01009000", + "longitude": "5.62312000" + }, + { + "id": "78206", + "name": "Jirnsum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.07753000", + "longitude": "5.79254000" + }, + { + "id": "78207", + "name": "Joure", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.96570000", + "longitude": "5.80301000" + }, + { + "id": "78208", + "name": "Jubbega", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.00396000", + "longitude": "6.12183000" + }, + { + "id": "78243", + "name": "Kollum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.27695000", + "longitude": "6.15293000" + }, + { + "id": "78244", + "name": "Kollumerzwaag", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.26224000", + "longitude": "6.07544000" + }, + { + "id": "78247", + "name": "Kootstertille", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21261000", + "longitude": "6.09209000" + }, + { + "id": "78254", + "name": "Koudum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.91551000", + "longitude": "5.44834000" + }, + { + "id": "78272", + "name": "Langweer", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.95836000", + "longitude": "5.72173000" + }, + { + "id": "78283", + "name": "Leeuwarden", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.20139000", + "longitude": "5.80859000" + }, + { + "id": "78289", + "name": "Lemmer", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.84618000", + "longitude": "5.70912000" + }, + { + "id": "78343", + "name": "Makkum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.05458000", + "longitude": "5.40231000" + }, + { + "id": "78347", + "name": "Mantgum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.12865000", + "longitude": "5.71924000" + }, + { + "id": "78353", + "name": "Marrum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.32277000", + "longitude": "5.80198000" + }, + { + "id": "78355", + "name": "Marsum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21050000", + "longitude": "5.72637000" + }, + { + "id": "78380", + "name": "Menaam", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21797000", + "longitude": "5.66124000" + }, + { + "id": "78403", + "name": "Minnertsga", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.25104000", + "longitude": "5.59513000" + }, + { + "id": "78427", + "name": "Nes", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.44502000", + "longitude": "5.77400000" + }, + { + "id": "78442", + "name": "Nieuwehorne", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.95113000", + "longitude": "6.06342000" + }, + { + "id": "78460", + "name": "Noardburgum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.22135000", + "longitude": "6.00523000" + }, + { + "id": "78472", + "name": "Noordwolde", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.88964000", + "longitude": "6.14153000" + }, + { + "id": "78486", + "name": "Oentsjerk", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.25000000", + "longitude": "5.90000000" + }, + { + "id": "78493", + "name": "Oldeberkoop", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.93788000", + "longitude": "6.13089000" + }, + { + "id": "78507", + "name": "Oost-Vlieland", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.29703000", + "longitude": "5.07431000" + }, + { + "id": "78524", + "name": "Oosterwolde", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.99164000", + "longitude": "6.29096000" + }, + { + "id": "78533", + "name": "Opeinde", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.13410000", + "longitude": "6.05656000" + }, + { + "id": "78539", + "name": "Oppenhuizen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.01194000", + "longitude": "5.69495000" + }, + { + "id": "78542", + "name": "Oranjewoud", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.94579000", + "longitude": "5.95038000" + }, + { + "id": "78560", + "name": "Oudega", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.12504000", + "longitude": "5.99888000" + }, + { + "id": "78561", + "name": "Oudehaske", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.95709000", + "longitude": "5.87095000" + }, + { + "id": "78562", + "name": "Oudemirdum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.85019000", + "longitude": "5.53544000" + }, + { + "id": "78566", + "name": "Oudeschoot", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.93343000", + "longitude": "5.95579000" + }, + { + "id": "78643", + "name": "Rottevalle", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.14523000", + "longitude": "6.10411000" + }, + { + "id": "78766", + "name": "Sûdwest Fryslân", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.01056000", + "longitude": "5.52580000" + }, + { + "id": "78661", + "name": "Scharnegoutum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.06051000", + "longitude": "5.67822000" + }, + { + "id": "78670", + "name": "Schiermonnikoog", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.48025000", + "longitude": "6.15209000" + }, + { + "id": "78689", + "name": "Sexbierum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21823000", + "longitude": "5.48402000" + }, + { + "id": "78694", + "name": "Sint Annaparochie", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.27620000", + "longitude": "5.65727000" + }, + { + "id": "78696", + "name": "Sint Jacobiparochie", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.27291000", + "longitude": "5.60354000" + }, + { + "id": "78700", + "name": "Sint Nicolaasga", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.92293000", + "longitude": "5.74242000" + }, + { + "id": "78707", + "name": "Sintjohannesga", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.93157000", + "longitude": "5.85588000" + }, + { + "id": "78717", + "name": "Sneek", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.03297000", + "longitude": "5.65890000" + }, + { + "id": "78741", + "name": "Stadsfenne", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.03987000", + "longitude": "5.67844000" + }, + { + "id": "78759", + "name": "Stiens", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.26234000", + "longitude": "5.75769000" + }, + { + "id": "78765", + "name": "Surhuisterveen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.18477000", + "longitude": "6.17031000" + }, + { + "id": "78773", + "name": "Ternaard", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.38203000", + "longitude": "5.96523000" + }, + { + "id": "78785", + "name": "Tijnje", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.03058000", + "longitude": "5.99193000" + }, + { + "id": "78787", + "name": "Tinga", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.02064000", + "longitude": "5.64575000" + }, + { + "id": "78799", + "name": "Twijzel", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.23152000", + "longitude": "6.08952000" + }, + { + "id": "78800", + "name": "Twijzelerheide", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.24015000", + "longitude": "6.04591000" + }, + { + "id": "78803", + "name": "Tytsjerk", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21343000", + "longitude": "5.90961000" + }, + { + "id": "78804", + "name": "Tzummarum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.23733000", + "longitude": "5.54612000" + }, + { + "id": "78818", + "name": "Ureterp", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.09244000", + "longitude": "6.16718000" + }, + { + "id": "78890", + "name": "Waadhoeke", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.18947000", + "longitude": "5.50793000" + }, + { + "id": "78905", + "name": "Warga", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.15145000", + "longitude": "5.84404000" + }, + { + "id": "78930", + "name": "West-Terschelling", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.35911000", + "longitude": "5.21482000" + }, + { + "id": "78932", + "name": "Westeinde", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.20853000", + "longitude": "5.76812000" + }, + { + "id": "78957", + "name": "Wijnjewoude", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.05814000", + "longitude": "6.20470000" + }, + { + "id": "78966", + "name": "Wirdum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.14893000", + "longitude": "5.80387000" + }, + { + "id": "78970", + "name": "Witmarsum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.10452000", + "longitude": "5.46902000" + }, + { + "id": "78978", + "name": "Wolvega", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.87545000", + "longitude": "5.99691000" + }, + { + "id": "78979", + "name": "Wommels", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.10883000", + "longitude": "5.58749000" + }, + { + "id": "78982", + "name": "Workum", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.97969000", + "longitude": "5.44710000" + }, + { + "id": "78987", + "name": "Woudsend", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.94357000", + "longitude": "5.62843000" + }, + { + "id": "79026", + "name": "Zuiderburen", + "state_id": 2622, + "state_code": "FR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.17340000", + "longitude": "5.84271000" + }, + { + "id": "77300", + "name": "'s-Heerenberg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87670000", + "longitude": "6.25877000" + }, + { + "id": "77309", + "name": "Aalst", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.78250000", + "longitude": "5.12778000" + }, + { + "id": "77310", + "name": "Aalten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92500000", + "longitude": "6.58056000" + }, + { + "id": "77319", + "name": "Afferden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88000000", + "longitude": "5.63472000" + }, + { + "id": "77331", + "name": "Alverna", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.80417000", + "longitude": "5.75972000" + }, + { + "id": "77337", + "name": "Ammerzoden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.74917000", + "longitude": "5.22083000" + }, + { + "id": "77343", + "name": "Andelst", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90833000", + "longitude": "5.72917000" + }, + { + "id": "77345", + "name": "Angeren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91583000", + "longitude": "5.95833000" + }, + { + "id": "77346", + "name": "Angerlo", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99583000", + "longitude": "6.13472000" + }, + { + "id": "77348", + "name": "Anklaar", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23111000", + "longitude": "5.98497000" + }, + { + "id": "77350", + "name": "Apeldoorn", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21000000", + "longitude": "5.96944000" + }, + { + "id": "77356", + "name": "Arnhem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.98000000", + "longitude": "5.91111000" + }, + { + "id": "77369", + "name": "Babberich", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90750000", + "longitude": "6.11111000" + }, + { + "id": "77372", + "name": "Bakenberg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00511000", + "longitude": "5.87710000" + }, + { + "id": "77382", + "name": "Barneveld", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.14000000", + "longitude": "5.58472000" + }, + { + "id": "77388", + "name": "Beek gem Montferland", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90667000", + "longitude": "6.18750000" + }, + { + "id": "77389", + "name": "Beekbergen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.16000000", + "longitude": "5.96389000" + }, + { + "id": "77392", + "name": "Beesd", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88750000", + "longitude": "5.19167000" + }, + { + "id": "77399", + "name": "Beltrum", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06667000", + "longitude": "6.56389000" + }, + { + "id": "77400", + "name": "Bemmel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89167000", + "longitude": "5.89861000" + }, + { + "id": "77402", + "name": "Bennekom", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99833000", + "longitude": "5.67639000" + }, + { + "id": "77405", + "name": "Berg en Bos", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22009000", + "longitude": "5.93340000" + }, + { + "id": "77406", + "name": "Berg en Dal", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82167000", + "longitude": "5.91667000" + }, + { + "id": "77409", + "name": "Bergharen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85083000", + "longitude": "5.66944000" + }, + { + "id": "77415", + "name": "Berkelland", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10606000", + "longitude": "6.56748000" + }, + { + "id": "77424", + "name": "Beuningen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.86083000", + "longitude": "5.76667000" + }, + { + "id": "77425", + "name": "Beusichem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95000000", + "longitude": "5.29167000" + }, + { + "id": "77433", + "name": "Binnenstad", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21304000", + "longitude": "5.95957000" + }, + { + "id": "77454", + "name": "Borculo", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.11583000", + "longitude": "6.52222000" + }, + { + "id": "77470", + "name": "Brakel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81750000", + "longitude": "5.09028000" + }, + { + "id": "77471", + "name": "Brakkenstein", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81324000", + "longitude": "5.86539000" + }, + { + "id": "77474", + "name": "Bredevoort", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.94167000", + "longitude": "6.62083000" + }, + { + "id": "77475", + "name": "Bredeweg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.76019000", + "longitude": "5.94189000" + }, + { + "id": "77481", + "name": "Brinkhorst", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21302000", + "longitude": "5.95167000" + }, + { + "id": "77489", + "name": "Bruchem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.78667000", + "longitude": "5.23611000" + }, + { + "id": "77492", + "name": "Brummelhof", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20503000", + "longitude": "5.96789000" + }, + { + "id": "77493", + "name": "Brummen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.09000000", + "longitude": "6.15556000" + }, + { + "id": "77506", + "name": "Burgemeesterswijk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.98943000", + "longitude": "5.89597000" + }, + { + "id": "77522", + "name": "Componistenkwartier", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18977000", + "longitude": "5.96609000" + }, + { + "id": "77523", + "name": "Corlaer", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21639000", + "longitude": "5.46535000" + }, + { + "id": "77527", + "name": "Culemborg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95500000", + "longitude": "5.22778000" + }, + { + "id": "77534", + "name": "De Bouwhof", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18546000", + "longitude": "5.94704000" + }, + { + "id": "77543", + "name": "De Haven", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21045000", + "longitude": "5.97407000" + }, + { + "id": "77545", + "name": "De Heeze", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20061000", + "longitude": "5.95365000" + }, + { + "id": "77554", + "name": "De Mheen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21954000", + "longitude": "5.99141000" + }, + { + "id": "77564", + "name": "Deest", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89000000", + "longitude": "5.66667000" + }, + { + "id": "77565", + "name": "Deil", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88417000", + "longitude": "5.24306000" + }, + { + "id": "77579", + "name": "Dieren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05250000", + "longitude": "6.10000000" + }, + { + "id": "77586", + "name": "Doesburg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01250000", + "longitude": "6.13889000" + }, + { + "id": "77587", + "name": "Doetinchem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.96500000", + "longitude": "6.28889000" + }, + { + "id": "77596", + "name": "Doornenburg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89000000", + "longitude": "6.00000000" + }, + { + "id": "77597", + "name": "Doornspijk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.41833000", + "longitude": "5.81806000" + }, + { + "id": "77598", + "name": "Doornsteeg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23000000", + "longitude": "5.45417000" + }, + { + "id": "77599", + "name": "Doorwerth", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97917000", + "longitude": "5.79722000" + }, + { + "id": "77606", + "name": "Driehuizen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20879000", + "longitude": "5.94442000" + }, + { + "id": "77607", + "name": "Driel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95917000", + "longitude": "5.81389000" + }, + { + "id": "77613", + "name": "Drumpt", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89700000", + "longitude": "5.41043000" + }, + { + "id": "77614", + "name": "Druten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88833000", + "longitude": "5.60556000" + }, + { + "id": "77617", + "name": "Duiven", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.94667000", + "longitude": "6.01389000" + }, + { + "id": "77625", + "name": "Ede", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.03333000", + "longitude": "5.65833000" + }, + { + "id": "77626", + "name": "Ederveen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06333000", + "longitude": "5.57778000" + }, + { + "id": "77627", + "name": "Eefde", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.16667000", + "longitude": "6.22500000" + }, + { + "id": "77630", + "name": "Eerbeek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10500000", + "longitude": "6.05833000" + }, + { + "id": "77639", + "name": "Eibergen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10000000", + "longitude": "6.64861000" + }, + { + "id": "77645", + "name": "Elburg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.44750000", + "longitude": "5.84306000" + }, + { + "id": "77646", + "name": "Elden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95833000", + "longitude": "5.88194000" + }, + { + "id": "77647", + "name": "Ellecom", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.03250000", + "longitude": "6.08750000" + }, + { + "id": "77650", + "name": "Elspeet", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29167000", + "longitude": "5.78889000" + }, + { + "id": "77651", + "name": "Elst", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91917000", + "longitude": "5.84167000" + }, + { + "id": "77659", + "name": "Emst", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.31583000", + "longitude": "5.97361000" + }, + { + "id": "77664", + "name": "Epe", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.34750000", + "longitude": "5.98333000" + }, + { + "id": "77665", + "name": "Epse", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22500000", + "longitude": "6.20000000" + }, + { + "id": "77666", + "name": "Ermelo", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29833000", + "longitude": "5.62222000" + }, + { + "id": "77670", + "name": "Etten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91667000", + "longitude": "6.33611000" + }, + { + "id": "77681", + "name": "Gameren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.80083000", + "longitude": "5.20417000" + }, + { + "id": "77682", + "name": "Garderen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23083000", + "longitude": "5.71389000" + }, + { + "id": "77689", + "name": "Geitenkamp", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00379000", + "longitude": "5.93862000" + }, + { + "id": "77690", + "name": "Geldermalsen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88083000", + "longitude": "5.28889000" + }, + { + "id": "77691", + "name": "Geldermalsen-West", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87968000", + "longitude": "5.28015000" + }, + { + "id": "77698", + "name": "Gemeente Aalten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92420000", + "longitude": "6.56574000" + }, + { + "id": "77711", + "name": "Gemeente Apeldoorn", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18722000", + "longitude": "5.91969000" + }, + { + "id": "77713", + "name": "Gemeente Arnhem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00113000", + "longitude": "5.89641000" + }, + { + "id": "77719", + "name": "Gemeente Barneveld", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.16880000", + "longitude": "5.63985000" + }, + { + "id": "77723", + "name": "Gemeente Berg en Dal", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.78412000", + "longitude": "5.92968000" + }, + { + "id": "77729", + "name": "Gemeente Beuningen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85950000", + "longitude": "5.74362000" + }, + { + "id": "77742", + "name": "Gemeente Bronckhorst", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04401000", + "longitude": "6.30378000" + }, + { + "id": "77743", + "name": "Gemeente Brummen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.11063000", + "longitude": "6.11791000" + }, + { + "id": "77747", + "name": "Gemeente Buren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90901000", + "longitude": "5.33403000" + }, + { + "id": "77753", + "name": "Gemeente Culemborg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.94465000", + "longitude": "5.20946000" + }, + { + "id": "77767", + "name": "Gemeente Doesburg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01935000", + "longitude": "6.14855000" + }, + { + "id": "77768", + "name": "Gemeente Doetinchem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.96216000", + "longitude": "6.27955000" + }, + { + "id": "77774", + "name": "Gemeente Druten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87184000", + "longitude": "5.61322000" + }, + { + "id": "77775", + "name": "Gemeente Duiven", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.94740000", + "longitude": "6.01720000" + }, + { + "id": "77778", + "name": "Gemeente Ede", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08118000", + "longitude": "5.74490000" + }, + { + "id": "77782", + "name": "Gemeente Elburg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.41487000", + "longitude": "5.84868000" + }, + { + "id": "77786", + "name": "Gemeente Epe", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.33394000", + "longitude": "5.96175000" + }, + { + "id": "77787", + "name": "Gemeente Ermelo", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.28826000", + "longitude": "5.65538000" + }, + { + "id": "77807", + "name": "Gemeente Harderwijk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.34540000", + "longitude": "5.63948000" + }, + { + "id": "77810", + "name": "Gemeente Hattem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.47566000", + "longitude": "6.05195000" + }, + { + "id": "77813", + "name": "Gemeente Heerde", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.38833000", + "longitude": "6.03889000" + }, + { + "id": "77824", + "name": "Gemeente Heumen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.77438000", + "longitude": "5.81312000" + }, + { + "id": "77858", + "name": "Gemeente Lingewaard", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89558000", + "longitude": "5.94577000" + }, + { + "id": "77860", + "name": "Gemeente Lochem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18478000", + "longitude": "6.33700000" + }, + { + "id": "77865", + "name": "Gemeente Maasdriel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.77337000", + "longitude": "5.29711000" + }, + { + "id": "77877", + "name": "Gemeente Montferland", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91925000", + "longitude": "6.21333000" + }, + { + "id": "77880", + "name": "Gemeente Neder-Betuwe", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91442000", + "longitude": "5.57147000" + }, + { + "id": "77884", + "name": "Gemeente Nijkerk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21700000", + "longitude": "5.48300000" + }, + { + "id": "77885", + "name": "Gemeente Nijmegen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84168000", + "longitude": "5.83813000" + }, + { + "id": "77891", + "name": "Gemeente Nunspeet", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.33524000", + "longitude": "5.78771000" + }, + { + "id": "77895", + "name": "Gemeente Oldebroek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.44502000", + "longitude": "5.90086000" + }, + { + "id": "77907", + "name": "Gemeente Overbetuwe", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91843000", + "longitude": "5.78686000" + }, + { + "id": "77913", + "name": "Gemeente Putten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.24438000", + "longitude": "5.57827000" + }, + { + "id": "77916", + "name": "Gemeente Renkum", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99036000", + "longitude": "5.78723000" + }, + { + "id": "77919", + "name": "Gemeente Rheden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.03386000", + "longitude": "6.04547000" + }, + { + "id": "77927", + "name": "Gemeente Rozendaal", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.03913000", + "longitude": "5.97268000" + }, + { + "id": "77930", + "name": "Gemeente Scherpenzeel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08773000", + "longitude": "5.48698000" + }, + { + "id": "77954", + "name": "Gemeente Tiel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88463000", + "longitude": "5.40429000" + }, + { + "id": "77980", + "name": "Gemeente Voorst", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22965000", + "longitude": "6.09992000" + }, + { + "id": "77985", + "name": "Gemeente Wageningen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.96876000", + "longitude": "5.66675000" + }, + { + "id": "77990", + "name": "Gemeente West Maas en Waal", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84494000", + "longitude": "5.51074000" + }, + { + "id": "77992", + "name": "Gemeente Westervoort", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95949000", + "longitude": "5.97435000" + }, + { + "id": "77997", + "name": "Gemeente Wijchen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81884000", + "longitude": "5.69862000" + }, + { + "id": "78000", + "name": "Gemeente Winterswijk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97226000", + "longitude": "6.72544000" + }, + { + "id": "78006", + "name": "Gemeente Zaltbommel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.78680000", + "longitude": "5.15254000" + }, + { + "id": "78010", + "name": "Gemeente Zevenaar", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95376000", + "longitude": "6.07727000" + }, + { + "id": "78015", + "name": "Gemeente Zutphen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13145000", + "longitude": "6.23132000" + }, + { + "id": "78022", + "name": "Gendringen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87333000", + "longitude": "6.37639000" + }, + { + "id": "78023", + "name": "Gendt", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87750000", + "longitude": "5.97083000" + }, + { + "id": "78027", + "name": "Giesbeek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99333000", + "longitude": "6.06667000" + }, + { + "id": "78043", + "name": "Gorssel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20167000", + "longitude": "6.20139000" + }, + { + "id": "78061", + "name": "Groesbeek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.77667000", + "longitude": "5.93611000" + }, + { + "id": "78062", + "name": "Groessen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93167000", + "longitude": "6.02639000" + }, + { + "id": "78069", + "name": "Gulden Bodem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99428000", + "longitude": "5.89080000" + }, + { + "id": "78074", + "name": "Haaften", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81583000", + "longitude": "5.21111000" + }, + { + "id": "78076", + "name": "Haalderen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88750000", + "longitude": "5.92917000" + }, + { + "id": "78092", + "name": "Harderwijk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.34167000", + "longitude": "5.62083000" + }, + { + "id": "78098", + "name": "Harskamp", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13000000", + "longitude": "5.75278000" + }, + { + "id": "78100", + "name": "Hatert", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.80635000", + "longitude": "5.83057000" + }, + { + "id": "78101", + "name": "Hattem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.47500000", + "longitude": "6.06389000" + }, + { + "id": "78102", + "name": "Hattemerbroek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.47417000", + "longitude": "6.02222000" + }, + { + "id": "78105", + "name": "Hedel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.74802000", + "longitude": "5.26134000" + }, + { + "id": "78109", + "name": "Heelsum", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.98417000", + "longitude": "5.75833000" + }, + { + "id": "78113", + "name": "Heerde", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.38723000", + "longitude": "6.04016000" + }, + { + "id": "78115", + "name": "Heerewaarden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81769000", + "longitude": "5.39300000" + }, + { + "id": "78120", + "name": "Hees", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84136000", + "longitude": "5.82846000" + }, + { + "id": "78141", + "name": "Hengelo", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05083000", + "longitude": "6.30972000" + }, + { + "id": "78143", + "name": "Hengstdal", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83333000", + "longitude": "5.88333000" + }, + { + "id": "78148", + "name": "Herwijnen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82667000", + "longitude": "5.12917000" + }, + { + "id": "78149", + "name": "Het Loo", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23390000", + "longitude": "5.95275000" + }, + { + "id": "78151", + "name": "Heteren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95667000", + "longitude": "5.75556000" + }, + { + "id": "78153", + "name": "Heumen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.76500000", + "longitude": "5.84444000" + }, + { + "id": "78183", + "name": "Hoogkamp", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99630000", + "longitude": "5.88026000" + }, + { + "id": "78188", + "name": "Horssen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85583000", + "longitude": "5.60972000" + }, + { + "id": "78196", + "name": "Hummelo", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00417000", + "longitude": "6.23333000" + }, + { + "id": "78197", + "name": "Hunnerberg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84209000", + "longitude": "5.87876000" + }, + { + "id": "78204", + "name": "Ingen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95917000", + "longitude": "5.48472000" + }, + { + "id": "78221", + "name": "Keijenborg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02917000", + "longitude": "6.29444000" + }, + { + "id": "78225", + "name": "Kerkdriel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.77167000", + "longitude": "5.33472000" + }, + { + "id": "78229", + "name": "Kerschoten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23333000", + "longitude": "5.96667000" + }, + { + "id": "78231", + "name": "Kesteren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93500000", + "longitude": "5.56944000" + }, + { + "id": "78248", + "name": "Kootwijkerbroek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15083000", + "longitude": "5.66944000" + }, + { + "id": "78273", + "name": "Laren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19417000", + "longitude": "6.36528000" + }, + { + "id": "78282", + "name": "Leesten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12790000", + "longitude": "6.23217000" + }, + { + "id": "78290", + "name": "Lent", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.86167000", + "longitude": "5.86667000" + }, + { + "id": "78295", + "name": "Leuth", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83917000", + "longitude": "5.99167000" + }, + { + "id": "78297", + "name": "Lichtenvoorde", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.98667000", + "longitude": "6.56667000" + }, + { + "id": "78299", + "name": "Lienden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.94833000", + "longitude": "5.51806000" + }, + { + "id": "78309", + "name": "Lindenholt", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83270000", + "longitude": "5.79340000" + }, + { + "id": "78315", + "name": "Lobith", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.86250000", + "longitude": "6.11806000" + }, + { + "id": "78316", + "name": "Lochem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15917000", + "longitude": "6.41111000" + }, + { + "id": "78317", + "name": "Loenen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.11750000", + "longitude": "6.01944000" + }, + { + "id": "78327", + "name": "Lunteren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08500000", + "longitude": "5.62222000" + }, + { + "id": "78345", + "name": "Malburgen West", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.96811000", + "longitude": "5.89743000" + }, + { + "id": "78357", + "name": "Matendonk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19766000", + "longitude": "6.01115000" + }, + { + "id": "78358", + "name": "Matendreef", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19993000", + "longitude": "5.98592000" + }, + { + "id": "78359", + "name": "Matengaarde", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19793000", + "longitude": "5.99570000" + }, + { + "id": "78360", + "name": "Matenhoeve", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19056000", + "longitude": "6.01338000" + }, + { + "id": "78361", + "name": "Matenhorst", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20482000", + "longitude": "5.99304000" + }, + { + "id": "78362", + "name": "Matenveld", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18767000", + "longitude": "5.99879000" + }, + { + "id": "78363", + "name": "Maurik", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.96083000", + "longitude": "5.42222000" + }, + { + "id": "78386", + "name": "Meteren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.86500000", + "longitude": "5.28333000" + }, + { + "id": "78420", + "name": "Nederhemert", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.76518000", + "longitude": "5.16817000" + }, + { + "id": "78421", + "name": "Nederhemert-Noord", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.76322000", + "longitude": "5.17305000" + }, + { + "id": "78423", + "name": "Nederwoud", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10083000", + "longitude": "5.57083000" + }, + { + "id": "78424", + "name": "Neede", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13417000", + "longitude": "6.61389000" + }, + { + "id": "78452", + "name": "Nijkerk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22000000", + "longitude": "5.48611000" + }, + { + "id": "78453", + "name": "Nijkerkerveen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19500000", + "longitude": "5.46667000" + }, + { + "id": "78454", + "name": "Nijmegen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84250000", + "longitude": "5.85278000" + }, + { + "id": "78476", + "name": "Nunspeet", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.37917000", + "longitude": "5.78611000" + }, + { + "id": "78481", + "name": "Ochten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91000000", + "longitude": "5.56944000" + }, + { + "id": "78494", + "name": "Oldebroek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.44500000", + "longitude": "5.90139000" + }, + { + "id": "78505", + "name": "Ooij", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85465000", + "longitude": "5.93915000" + }, + { + "id": "78506", + "name": "Oost Gelre", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00425000", + "longitude": "6.54958000" + }, + { + "id": "78513", + "name": "Oostendorp", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.44722000", + "longitude": "5.85443000" + }, + { + "id": "78514", + "name": "Oosterbeek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.98583000", + "longitude": "5.84583000" + }, + { + "id": "78520", + "name": "Oosterhout", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88000000", + "longitude": "5.82639000" + }, + { + "id": "78531", + "name": "Ooy", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91917000", + "longitude": "6.05833000" + }, + { + "id": "78532", + "name": "Ooyerhoek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12838000", + "longitude": "6.22307000" + }, + { + "id": "78534", + "name": "Ophemert", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84500000", + "longitude": "5.38750000" + }, + { + "id": "78535", + "name": "Opheusden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93167000", + "longitude": "5.63194000" + }, + { + "id": "78537", + "name": "Opijnen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82917000", + "longitude": "5.29861000" + }, + { + "id": "78543", + "name": "Orden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20113000", + "longitude": "5.93417000" + }, + { + "id": "78549", + "name": "Otterlo", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10000000", + "longitude": "5.77222000" + }, + { + "id": "78557", + "name": "Oude IJsselstreek", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89963000", + "longitude": "6.38078000" + }, + { + "id": "78569", + "name": "Overasselt", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.76000000", + "longitude": "5.78889000" + }, + { + "id": "78576", + "name": "Pannerden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89083000", + "longitude": "6.03889000" + }, + { + "id": "78598", + "name": "Puiflijk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87833000", + "longitude": "5.59028000" + }, + { + "id": "78602", + "name": "Putten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25917000", + "longitude": "5.60694000" + }, + { + "id": "78614", + "name": "Renkum", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97667000", + "longitude": "5.73333000" + }, + { + "id": "78618", + "name": "Rheden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00500000", + "longitude": "6.02917000" + }, + { + "id": "78631", + "name": "Rivierenkwartier", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18914000", + "longitude": "5.97665000" + }, + { + "id": "78639", + "name": "Rossum", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.80083000", + "longitude": "5.33333000" + }, + { + "id": "78645", + "name": "Rozendaal", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00583000", + "longitude": "5.96250000" + }, + { + "id": "78650", + "name": "Ruurlo", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08833000", + "longitude": "6.45000000" + }, + { + "id": "78666", + "name": "Scherpenzeel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08000000", + "longitude": "5.48889000" + }, + { + "id": "78692", + "name": "Silvolde", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90917000", + "longitude": "6.38750000" + }, + { + "id": "78716", + "name": "Sluisoord", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22291000", + "longitude": "5.98145000" + }, + { + "id": "78724", + "name": "Spainkbos", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22228000", + "longitude": "5.94738000" + }, + { + "id": "78735", + "name": "Sprengenbos", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21902000", + "longitude": "5.94163000" + }, + { + "id": "78736", + "name": "Sprengenweg-Noord", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21839000", + "longitude": "5.95068000" + }, + { + "id": "78737", + "name": "Sprenkelaar", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22512000", + "longitude": "5.99922000" + }, + { + "id": "78739", + "name": "Staatsliedenkwartier", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19951000", + "longitude": "5.97691000" + }, + { + "id": "78749", + "name": "Steenderen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06417000", + "longitude": "6.18750000" + }, + { + "id": "78753", + "name": "Stegeslag", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.94151000", + "longitude": "6.06194000" + }, + { + "id": "78757", + "name": "Sterrenberg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99350000", + "longitude": "5.88387000" + }, + { + "id": "78770", + "name": "Terborg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92000000", + "longitude": "6.35417000" + }, + { + "id": "78775", + "name": "Terschuur", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.16500000", + "longitude": "5.51667000" + }, + { + "id": "78777", + "name": "Terwolde", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.28333000", + "longitude": "6.10000000" + }, + { + "id": "78783", + "name": "Tiel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88667000", + "longitude": "5.42917000" + }, + { + "id": "78789", + "name": "Tolkamer", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85500000", + "longitude": "6.10278000" + }, + { + "id": "78791", + "name": "Tricht", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89083000", + "longitude": "5.26806000" + }, + { + "id": "78798", + "name": "Twello", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23667000", + "longitude": "6.10278000" + }, + { + "id": "78806", + "name": "Uddel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25917000", + "longitude": "5.78056000" + }, + { + "id": "78810", + "name": "Ugchelen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18464000", + "longitude": "5.93177000" + }, + { + "id": "78825", + "name": "Vaassen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.28583000", + "longitude": "5.96667000" + }, + { + "id": "78826", + "name": "Valburg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91167000", + "longitude": "5.79028000" + }, + { + "id": "78827", + "name": "Valendries", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.80658000", + "longitude": "5.73445000" + }, + { + "id": "78834", + "name": "Varsseveld", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.94333000", + "longitude": "6.45833000" + }, + { + "id": "78842", + "name": "Velp", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99500000", + "longitude": "5.97361000" + }, + { + "id": "78867", + "name": "Vogelkwartier", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19777000", + "longitude": "5.96721000" + }, + { + "id": "78877", + "name": "Voorst", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.17000000", + "longitude": "6.14167000" + }, + { + "id": "78878", + "name": "Voorthuizen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18667000", + "longitude": "5.60556000" + }, + { + "id": "78879", + "name": "Vorden", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10500000", + "longitude": "6.30972000" + }, + { + "id": "78881", + "name": "Vredenburg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95355000", + "longitude": "5.90284000" + }, + { + "id": "78889", + "name": "Vuren", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82500000", + "longitude": "5.04583000" + }, + { + "id": "78894", + "name": "Waardenburg", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83250000", + "longitude": "5.25694000" + }, + { + "id": "78900", + "name": "Wageningen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97000000", + "longitude": "5.66667000" + }, + { + "id": "78903", + "name": "Wapenveld", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.42917000", + "longitude": "6.07361000" + }, + { + "id": "78907", + "name": "Warnsveld", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13750000", + "longitude": "6.23056000" + }, + { + "id": "78918", + "name": "Wekerom", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.11250000", + "longitude": "5.71389000" + }, + { + "id": "78920", + "name": "Welgelegen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21397000", + "longitude": "5.97643000" + }, + { + "id": "78928", + "name": "West Betuwe", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.86158000", + "longitude": "5.20935000" + }, + { + "id": "78933", + "name": "Westeneng", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12750000", + "longitude": "5.71528000" + }, + { + "id": "78934", + "name": "Westenenk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19624000", + "longitude": "5.95656000" + }, + { + "id": "78939", + "name": "Westervoort", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95583000", + "longitude": "5.97222000" + }, + { + "id": "78950", + "name": "Wijchen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.80917000", + "longitude": "5.72500000" + }, + { + "id": "78962", + "name": "Winkewijert", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19082000", + "longitude": "5.95794000" + }, + { + "id": "78965", + "name": "Winterswijk", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97250000", + "longitude": "6.71944000" + }, + { + "id": "78967", + "name": "Wisch", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92648000", + "longitude": "6.41705000" + }, + { + "id": "78975", + "name": "Wolfheze", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00333000", + "longitude": "5.79028000" + }, + { + "id": "78985", + "name": "Woudhuis", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21323000", + "longitude": "6.01124000" + }, + { + "id": "78996", + "name": "Zaltbommel", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81000000", + "longitude": "5.24444000" + }, + { + "id": "78999", + "name": "Zeddam", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90333000", + "longitude": "6.25972000" + }, + { + "id": "79006", + "name": "Zelhem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00667000", + "longitude": "6.34861000" + }, + { + "id": "79008", + "name": "Zetten", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92833000", + "longitude": "5.71389000" + }, + { + "id": "79009", + "name": "Zevenaar", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93000000", + "longitude": "6.07083000" + }, + { + "id": "79012", + "name": "Zevenhuizen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21816000", + "longitude": "5.97841000" + }, + { + "id": "79015", + "name": "Zoelen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91250000", + "longitude": "5.40278000" + }, + { + "id": "79019", + "name": "Zonnemaat", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93115000", + "longitude": "6.06235000" + }, + { + "id": "79030", + "name": "Zuilichem", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.80917000", + "longitude": "5.13611000" + }, + { + "id": "79032", + "name": "Zutphen", + "state_id": 2611, + "state_code": "GE", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13833000", + "longitude": "6.20139000" + }, + { + "id": "77318", + "name": "Aduard", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.25667000", + "longitude": "6.45972000" + }, + { + "id": "77352", + "name": "Appingedam", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.32167000", + "longitude": "6.85833000" + }, + { + "id": "77370", + "name": "Baflo", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.36250000", + "longitude": "6.51389000" + }, + { + "id": "77384", + "name": "Bedum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.30083000", + "longitude": "6.60278000" + }, + { + "id": "77398", + "name": "Bellingwolde", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.11583000", + "longitude": "7.16528000" + }, + { + "id": "77441", + "name": "Blijham", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.10917000", + "longitude": "7.07639000" + }, + { + "id": "77517", + "name": "Coendersborg", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.19410000", + "longitude": "6.58944000" + }, + { + "id": "77562", + "name": "De Wijert", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.19450000", + "longitude": "6.57117000" + }, + { + "id": "77569", + "name": "Delfzijl", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.33000000", + "longitude": "6.91806000" + }, + { + "id": "77629", + "name": "Eenrum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.36250000", + "longitude": "6.45833000" + }, + { + "id": "77635", + "name": "Eexta", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.16386000", + "longitude": "6.98344000" + }, + { + "id": "77672", + "name": "Farmsum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.32167000", + "longitude": "6.92639000" + }, + { + "id": "77694", + "name": "Gemeente Oldambt", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.16859000", + "longitude": "7.04224000" + }, + { + "id": "77712", + "name": "Gemeente Appingedam", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.31926000", + "longitude": "6.84864000" + }, + { + "id": "77760", + "name": "Gemeente Delfzijl", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.30019000", + "longitude": "6.93129000" + }, + { + "id": "77800", + "name": "Gemeente Groningen", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.22369000", + "longitude": "6.56479000" + }, + { + "id": "77863", + "name": "Gemeente Loppersum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.33849000", + "longitude": "6.72149000" + }, + { + "id": "77910", + "name": "Gemeente Pekela", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.05969000", + "longitude": "6.96510000" + }, + { + "id": "77943", + "name": "Gemeente Stadskanaal", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.00005000", + "longitude": "6.98906000" + }, + { + "id": "77968", + "name": "Gemeente Veendam", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.08951000", + "longitude": "6.87923000" + }, + { + "id": "78035", + "name": "Glimmen", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.13917000", + "longitude": "6.62917000" + }, + { + "id": "78056", + "name": "Grijpskerk", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.26250000", + "longitude": "6.30833000" + }, + { + "id": "78063", + "name": "Groningen", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21917000", + "longitude": "6.56667000" + }, + { + "id": "78067", + "name": "Grootegast", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21250000", + "longitude": "6.27361000" + }, + { + "id": "78093", + "name": "Haren", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.17209000", + "longitude": "6.60931000" + }, + { + "id": "78096", + "name": "Harkstede", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.21333000", + "longitude": "6.69861000" + }, + { + "id": "78129", + "name": "Heiligerlee", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.15667000", + "longitude": "7.00972000" + }, + { + "id": "78136", + "name": "Helpman", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.19794000", + "longitude": "6.57978000" + }, + { + "id": "78182", + "name": "Hoogezand", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.16167000", + "longitude": "6.76111000" + }, + { + "id": "78250", + "name": "Korrewegwijk", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.23235000", + "longitude": "6.56804000" + }, + { + "id": "78276", + "name": "Leek", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.16250000", + "longitude": "6.37639000" + }, + { + "id": "78278", + "name": "Leens", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.36000000", + "longitude": "6.37917000" + }, + { + "id": "78322", + "name": "Loppersum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.33167000", + "longitude": "6.74722000" + }, + { + "id": "78356", + "name": "Marum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.14417000", + "longitude": "6.26250000" + }, + { + "id": "78366", + "name": "Meeden", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.14000000", + "longitude": "6.92639000" + }, + { + "id": "78392", + "name": "Middelstum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.34667000", + "longitude": "6.64167000" + }, + { + "id": "78393", + "name": "Midden-Groningen", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.15113000", + "longitude": "6.83313000" + }, + { + "id": "78396", + "name": "Midwolda", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.19500000", + "longitude": "7.01389000" + }, + { + "id": "78428", + "name": "Niekerk", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.22500000", + "longitude": "6.35278000" + }, + { + "id": "78439", + "name": "Nieuwe Pekela", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.07917000", + "longitude": "6.96528000" + }, + { + "id": "78447", + "name": "Nieuwolda", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.24417000", + "longitude": "6.97500000" + }, + { + "id": "78464", + "name": "Noordbroek", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.19500000", + "longitude": "6.87361000" + }, + { + "id": "78469", + "name": "Noordhorn", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.26167000", + "longitude": "6.39583000" + }, + { + "id": "78480", + "name": "Obergum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.33333000", + "longitude": "6.51667000" + }, + { + "id": "78495", + "name": "Oldehove", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.30333000", + "longitude": "6.39583000" + }, + { + "id": "78499", + "name": "Ommelanderwijk", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.08917000", + "longitude": "6.90556000" + }, + { + "id": "78503", + "name": "Onstwedde", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.03500000", + "longitude": "7.04028000" + }, + { + "id": "78518", + "name": "Oosterhoogebrug", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.22892000", + "longitude": "6.60141000" + }, + { + "id": "78523", + "name": "Oosterpark", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.22370000", + "longitude": "6.58530000" + }, + { + "id": "78558", + "name": "Oude Pekela", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.10417000", + "longitude": "7.00972000" + }, + { + "id": "78612", + "name": "Reitdiep", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.24252000", + "longitude": "6.51957000" + }, + { + "id": "78652", + "name": "Sappemeer", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.16417000", + "longitude": "6.79028000" + }, + { + "id": "78662", + "name": "Scheemda", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.17333000", + "longitude": "6.97222000" + }, + { + "id": "78673", + "name": "Schildwolde", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.23327000", + "longitude": "6.81566000" + }, + { + "id": "78685", + "name": "Sellingen", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.94583000", + "longitude": "7.15139000" + }, + { + "id": "78686", + "name": "Selwerd", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.23520000", + "longitude": "6.55450000" + }, + { + "id": "78691", + "name": "Siddeburen", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.25000000", + "longitude": "6.86806000" + }, + { + "id": "78712", + "name": "Slochteren", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.22078000", + "longitude": "6.80547000" + }, + { + "id": "78732", + "name": "Spijk", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.39000000", + "longitude": "6.83750000" + }, + { + "id": "78742", + "name": "Stadskanaal", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.98947000", + "longitude": "6.95040000" + }, + { + "id": "78768", + "name": "Ten Boer", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.27583000", + "longitude": "6.69444000" + }, + { + "id": "78769", + "name": "Ter Apel", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "52.87667000", + "longitude": "7.05972000" + }, + { + "id": "78793", + "name": "Tuikwerd", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.31667000", + "longitude": "6.90000000" + }, + { + "id": "78813", + "name": "Uithuizen", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.40750000", + "longitude": "6.67083000" + }, + { + "id": "78814", + "name": "Uithuizermeeden", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.41417000", + "longitude": "6.72361000" + }, + { + "id": "78816", + "name": "Ulrum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.35917000", + "longitude": "6.33333000" + }, + { + "id": "78821", + "name": "Usquert", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.40250000", + "longitude": "6.61111000" + }, + { + "id": "78836", + "name": "Veendam", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.10667000", + "longitude": "6.87917000" + }, + { + "id": "78856", + "name": "Vlagtwedde", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.02750000", + "longitude": "7.10833000" + }, + { + "id": "78899", + "name": "Wagenborgen", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.25583000", + "longitude": "6.93333000" + }, + { + "id": "78904", + "name": "Warffum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.39250000", + "longitude": "6.55833000" + }, + { + "id": "78938", + "name": "Westerlee", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.14583000", + "longitude": "6.98750000" + }, + { + "id": "78940", + "name": "Westerwolde", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.02800000", + "longitude": "7.15671000" + }, + { + "id": "78958", + "name": "Wildervank", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.08083000", + "longitude": "6.86250000" + }, + { + "id": "78963", + "name": "Winschoten", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.14417000", + "longitude": "7.03472000" + }, + { + "id": "78964", + "name": "Winsum", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.33000000", + "longitude": "6.52083000" + }, + { + "id": "79021", + "name": "Zoutkamp", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.33917000", + "longitude": "6.30417000" + }, + { + "id": "79025", + "name": "Zuidbroek", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.16333000", + "longitude": "6.86111000" + }, + { + "id": "79027", + "name": "Zuidhorn", + "state_id": 2617, + "state_code": "GR", + "country_id": 156, + "country_code": "NL", + "latitude": "53.24667000", + "longitude": "6.40278000" + }, + { + "id": "77316", + "name": "Abdissenbosch", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.91667000", + "longitude": "6.03333000" + }, + { + "id": "77332", + "name": "Amby", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86215000", + "longitude": "5.73226000" + }, + { + "id": "77333", + "name": "America", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.43667000", + "longitude": "5.97917000" + }, + { + "id": "77339", + "name": "Amstenrade", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.93917000", + "longitude": "5.92361000" + }, + { + "id": "77353", + "name": "Arcen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47667000", + "longitude": "6.18056000" + }, + { + "id": "77367", + "name": "Baarlo", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.33083000", + "longitude": "6.09444000" + }, + { + "id": "77378", + "name": "Banholt", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.79000000", + "longitude": "5.80833000" + }, + { + "id": "77385", + "name": "Beegden", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.18917000", + "longitude": "5.91944000" + }, + { + "id": "77387", + "name": "Beek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.94083000", + "longitude": "5.79722000" + }, + { + "id": "77391", + "name": "Beersdal", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.90597000", + "longitude": "5.96440000" + }, + { + "id": "77393", + "name": "Beesel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.26833000", + "longitude": "6.03889000" + }, + { + "id": "77397", + "name": "Belfort", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.84698000", + "longitude": "5.65991000" + }, + { + "id": "77404", + "name": "Berg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86167000", + "longitude": "5.78333000" + }, + { + "id": "77413", + "name": "Beringe", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.33667000", + "longitude": "5.94861000" + }, + { + "id": "77429", + "name": "Biesland", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.84110000", + "longitude": "5.67573000" + }, + { + "id": "77438", + "name": "Bleijerheide", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.85538000", + "longitude": "6.06789000" + }, + { + "id": "77442", + "name": "Blitterswijck", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53083000", + "longitude": "6.10833000" + }, + { + "id": "77447", + "name": "Bocholtz", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.81833000", + "longitude": "6.00556000" + }, + { + "id": "77457", + "name": "Borgharen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87750000", + "longitude": "5.68750000" + }, + { + "id": "77458", + "name": "Born", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.03167000", + "longitude": "5.80972000" + }, + { + "id": "77468", + "name": "Brabander", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53583000", + "longitude": "5.96806000" + }, + { + "id": "77469", + "name": "Brachterbeek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.14694000", + "longitude": "5.90446000" + }, + { + "id": "77484", + "name": "Broekhem", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87119000", + "longitude": "5.82069000" + }, + { + "id": "77486", + "name": "Broeksittard", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.00290000", + "longitude": "5.89511000" + }, + { + "id": "77491", + "name": "Brukske", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52101000", + "longitude": "5.99270000" + }, + { + "id": "77495", + "name": "Brunssum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.94667000", + "longitude": "5.97083000" + }, + { + "id": "77496", + "name": "Buchten", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.04333000", + "longitude": "5.80972000" + }, + { + "id": "77500", + "name": "Budschop", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.28511000", + "longitude": "5.75898000" + }, + { + "id": "77502", + "name": "Bunde", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.89667000", + "longitude": "5.73194000" + }, + { + "id": "77516", + "name": "Chevremont", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87554000", + "longitude": "6.05981000" + }, + { + "id": "77544", + "name": "De Heeg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.82454000", + "longitude": "5.72309000" + }, + { + "id": "77585", + "name": "Doenrade", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.96750000", + "longitude": "5.90694000" + }, + { + "id": "77636", + "name": "Egchel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.31417000", + "longitude": "5.97222000" + }, + { + "id": "77640", + "name": "Eijsden", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.78000000", + "longitude": "5.71770000" + }, + { + "id": "77641", + "name": "Eijsden-Margraten", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.80090000", + "longitude": "5.77408000" + }, + { + "id": "77643", + "name": "Einighausen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.00167000", + "longitude": "5.82778000" + }, + { + "id": "77649", + "name": "Elsloo", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.94917000", + "longitude": "5.77083000" + }, + { + "id": "77693", + "name": "Geleen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.97417000", + "longitude": "5.82917000" + }, + { + "id": "77720", + "name": "Gemeente Beek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.93237000", + "longitude": "5.80587000" + }, + { + "id": "77722", + "name": "Gemeente Beesel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.27016000", + "longitude": "6.06771000" + }, + { + "id": "77724", + "name": "Gemeente Bergen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57717000", + "longitude": "6.09014000" + }, + { + "id": "77744", + "name": "Gemeente Brunssum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.94451000", + "longitude": "5.97618000" + }, + { + "id": "77776", + "name": "Gemeente Echt-Susteren", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.10000000", + "longitude": "5.86667000" + }, + { + "id": "77792", + "name": "Gemeente Gennep", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.70063000", + "longitude": "5.98447000" + }, + { + "id": "77816", + "name": "Gemeente Heerlen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.88777000", + "longitude": "5.97407000" + }, + { + "id": "77833", + "name": "Gemeente Horst aan de Maas", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.45931000", + "longitude": "6.10254000" + }, + { + "id": "77842", + "name": "Gemeente Kerkrade", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87337000", + "longitude": "6.04876000" + }, + { + "id": "77856", + "name": "Gemeente Leudal", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.24371000", + "longitude": "5.89815000" + }, + { + "id": "77866", + "name": "Gemeente Maasgouw", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.15426000", + "longitude": "5.87712000" + }, + { + "id": "77868", + "name": "Gemeente Maastricht", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.85000000", + "longitude": "5.70000000" + }, + { + "id": "77870", + "name": "Gemeente Meerssen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.89518000", + "longitude": "5.75711000" + }, + { + "id": "77879", + "name": "Gemeente Mook en Middelaar", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.74777000", + "longitude": "5.90200000" + }, + { + "id": "77881", + "name": "Gemeente Nederweert", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.28813000", + "longitude": "5.77157000" + }, + { + "id": "77909", + "name": "Gemeente Peel en Maas", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.32353000", + "longitude": "5.97261000" + }, + { + "id": "77924", + "name": "Gemeente Roerdalen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.13492000", + "longitude": "6.03542000" + }, + { + "id": "77925", + "name": "Gemeente Roermond", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.19999000", + "longitude": "6.00900000" + }, + { + "id": "77933", + "name": "Gemeente Simpelveld", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.82901000", + "longitude": "5.98410000" + }, + { + "id": "77936", + "name": "Gemeente Sittard-Geleen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.01074000", + "longitude": "5.82288000" + }, + { + "id": "77948", + "name": "Gemeente Stein", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.97358000", + "longitude": "5.76126000" + }, + { + "id": "77966", + "name": "Gemeente Vaals", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.77848000", + "longitude": "5.97674000" + }, + { + "id": "77973", + "name": "Gemeente Venlo", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.39277000", + "longitude": "6.16041000" + }, + { + "id": "77974", + "name": "Gemeente Venray", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51412000", + "longitude": "5.95927000" + }, + { + "id": "77978", + "name": "Gemeente Voerendaal", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87117000", + "longitude": "5.91495000" + }, + { + "id": "77988", + "name": "Gemeente Weert", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.23418000", + "longitude": "5.69067000" + }, + { + "id": "78024", + "name": "Gennep", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69833000", + "longitude": "5.97361000" + }, + { + "id": "78049", + "name": "Gracht", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.85175000", + "longitude": "6.02793000" + }, + { + "id": "78051", + "name": "Grashoek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.36083000", + "longitude": "5.94306000" + }, + { + "id": "78054", + "name": "Grevenbicht", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.03833000", + "longitude": "5.77500000" + }, + { + "id": "78064", + "name": "Gronsveld", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.81083000", + "longitude": "5.73056000" + }, + { + "id": "78070", + "name": "Gulpen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.81583000", + "longitude": "5.88889000" + }, + { + "id": "78071", + "name": "Gulpen-Wittem", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.81374000", + "longitude": "5.89296000" + }, + { + "id": "78072", + "name": "Guttecoven", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.01500000", + "longitude": "5.81806000" + }, + { + "id": "78078", + "name": "Haanrade", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87981000", + "longitude": "6.07411000" + }, + { + "id": "78084", + "name": "Haelen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.23583000", + "longitude": "5.95694000" + }, + { + "id": "78108", + "name": "Heel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.17917000", + "longitude": "5.89444000" + }, + { + "id": "78112", + "name": "Heer", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.83836000", + "longitude": "5.72989000" + }, + { + "id": "78119", + "name": "Heerlen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.88365000", + "longitude": "5.98154000" + }, + { + "id": "78125", + "name": "Hegelsom", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.43917000", + "longitude": "6.03889000" + }, + { + "id": "78126", + "name": "Heide", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.06833000", + "longitude": "5.87222000" + }, + { + "id": "78127", + "name": "Heijen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.67500000", + "longitude": "5.98056000" + }, + { + "id": "78132", + "name": "Heksenberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.92068000", + "longitude": "5.97373000" + }, + { + "id": "78133", + "name": "Helden", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.31917000", + "longitude": "6.00000000" + }, + { + "id": "78145", + "name": "Herkenbosch", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.15333000", + "longitude": "6.06389000" + }, + { + "id": "78147", + "name": "Herten", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.18083000", + "longitude": "5.96250000" + }, + { + "id": "78152", + "name": "Heugem", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.82791000", + "longitude": "5.70774000" + }, + { + "id": "78156", + "name": "Heythuysen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.25000000", + "longitude": "5.89861000" + }, + { + "id": "78164", + "name": "Hoensbroek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.92387000", + "longitude": "5.92528000" + }, + { + "id": "78171", + "name": "Holtum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.04750000", + "longitude": "5.82222000" + }, + { + "id": "78173", + "name": "Holz", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86415000", + "longitude": "6.07424000" + }, + { + "id": "78187", + "name": "Hopel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.89245000", + "longitude": "6.05046000" + }, + { + "id": "78190", + "name": "Houthem", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87250000", + "longitude": "5.79306000" + }, + { + "id": "78194", + "name": "Hulsberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.88917000", + "longitude": "5.85556000" + }, + { + "id": "78199", + "name": "Husken", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.89567000", + "longitude": "5.95648000" + }, + { + "id": "78209", + "name": "Kaalheide", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86505000", + "longitude": "6.03643000" + }, + { + "id": "78211", + "name": "Kakert", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.90414000", + "longitude": "6.00463000" + }, + { + "id": "78220", + "name": "Keent", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.24218000", + "longitude": "5.70079000" + }, + { + "id": "78222", + "name": "Kelpen-Oler", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.21817000", + "longitude": "5.82602000" + }, + { + "id": "78224", + "name": "Kerensheide", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.97210000", + "longitude": "5.77666000" + }, + { + "id": "78228", + "name": "Kerkrade", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86583000", + "longitude": "6.06250000" + }, + { + "id": "78230", + "name": "Kessel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.29167000", + "longitude": "6.05417000" + }, + { + "id": "78238", + "name": "Klimmen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87583000", + "longitude": "5.88056000" + }, + { + "id": "78245", + "name": "Koningsbosch", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.05167000", + "longitude": "5.95833000" + }, + { + "id": "78246", + "name": "Koningslust", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35750000", + "longitude": "5.99306000" + }, + { + "id": "78259", + "name": "Kruisberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.94234000", + "longitude": "5.96519000" + }, + { + "id": "78262", + "name": "Kunrade", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87769000", + "longitude": "5.93107000" + }, + { + "id": "78267", + "name": "Landgraaf", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.91333000", + "longitude": "6.05722000" + }, + { + "id": "78275", + "name": "Lauradorp", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.91229000", + "longitude": "6.04591000" + }, + { + "id": "78284", + "name": "Leeuwen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.21032000", + "longitude": "5.99862000" + }, + { + "id": "78292", + "name": "Leuken", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.25288000", + "longitude": "5.73460000" + }, + { + "id": "78293", + "name": "Leunen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51000000", + "longitude": "5.97917000" + }, + { + "id": "78296", + "name": "Lichtenberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.90220000", + "longitude": "6.02523000" + }, + { + "id": "78305", + "name": "Limbricht", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.01167000", + "longitude": "5.83750000" + }, + { + "id": "78306", + "name": "Limmel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86718000", + "longitude": "5.70719000" + }, + { + "id": "78308", + "name": "Lindenheuvel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.98509000", + "longitude": "5.81667000" + }, + { + "id": "78310", + "name": "Linne", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.15500000", + "longitude": "5.93889000" + }, + { + "id": "78324", + "name": "Lottum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.46167000", + "longitude": "6.16111000" + }, + { + "id": "78334", + "name": "Maasbracht", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.13929000", + "longitude": "5.88627000" + }, + { + "id": "78335", + "name": "Maasbree", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35750000", + "longitude": "6.04861000" + }, + { + "id": "78340", + "name": "Maastricht", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.84833000", + "longitude": "5.68889000" + }, + { + "id": "78344", + "name": "Malberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86244000", + "longitude": "5.65419000" + }, + { + "id": "78348", + "name": "Margraten", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.82083000", + "longitude": "5.82083000" + }, + { + "id": "78350", + "name": "Mariarade", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.92906000", + "longitude": "5.92738000" + }, + { + "id": "78364", + "name": "Mechelen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.79583000", + "longitude": "5.92639000" + }, + { + "id": "78368", + "name": "Meerlo", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51333000", + "longitude": "6.08472000" + }, + { + "id": "78369", + "name": "Meerssen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.88750000", + "longitude": "5.75000000" + }, + { + "id": "78371", + "name": "Meezenbroek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.89680000", + "longitude": "5.99051000" + }, + { + "id": "78374", + "name": "Meijel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.34417000", + "longitude": "5.88472000" + }, + { + "id": "78376", + "name": "Melderslo", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.46167000", + "longitude": "6.08611000" + }, + { + "id": "78377", + "name": "Melick", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.15917000", + "longitude": "6.01667000" + }, + { + "id": "78383", + "name": "Merkelbeek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.95389000", + "longitude": "5.94069000" + }, + { + "id": "78384", + "name": "Merselo", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53000000", + "longitude": "5.92778000" + }, + { + "id": "78385", + "name": "Merum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.17333000", + "longitude": "5.95972000" + }, + { + "id": "78402", + "name": "Milsbeek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.72500000", + "longitude": "5.94861000" + }, + { + "id": "78405", + "name": "Moesel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.23828000", + "longitude": "5.71778000" + }, + { + "id": "78410", + "name": "Montfort", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.12583000", + "longitude": "5.94861000" + }, + { + "id": "78411", + "name": "Mook", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.75250000", + "longitude": "5.88194000" + }, + { + "id": "78414", + "name": "Munstergeleen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.97500000", + "longitude": "5.86389000" + }, + { + "id": "78422", + "name": "Nederweert", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.28583000", + "longitude": "5.74861000" + }, + { + "id": "78425", + "name": "Neerbeek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.95000000", + "longitude": "5.81528000" + }, + { + "id": "78435", + "name": "Nieuw-Lotbroek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.91283000", + "longitude": "5.92798000" + }, + { + "id": "78438", + "name": "Nieuwdorp", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.96216000", + "longitude": "5.77297000" + }, + { + "id": "78477", + "name": "Nuth", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.91750000", + "longitude": "5.88611000" + }, + { + "id": "78478", + "name": "Obbicht", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.02833000", + "longitude": "5.78056000" + }, + { + "id": "78488", + "name": "Offenbeek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.28225000", + "longitude": "6.09500000" + }, + { + "id": "78489", + "name": "Oirlo", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51167000", + "longitude": "6.03750000" + }, + { + "id": "78490", + "name": "Oirsbeek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.95083000", + "longitude": "5.90833000" + }, + { + "id": "78528", + "name": "Oostrum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52917000", + "longitude": "6.01667000" + }, + { + "id": "78536", + "name": "Ophoven", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.99036000", + "longitude": "5.85868000" + }, + { + "id": "78545", + "name": "Ospel", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.29750000", + "longitude": "5.78472000" + }, + { + "id": "78550", + "name": "Ottersum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.70333000", + "longitude": "5.98333000" + }, + { + "id": "78553", + "name": "Oud-Caberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86539000", + "longitude": "5.66444000" + }, + { + "id": "78571", + "name": "Overhoven", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.00869000", + "longitude": "5.86628000" + }, + { + "id": "78577", + "name": "Panningen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.32667000", + "longitude": "5.97917000" + }, + { + "id": "78580", + "name": "Passart", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.92389000", + "longitude": "5.94674000" + }, + { + "id": "78584", + "name": "Peij", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.09417000", + "longitude": "5.89583000" + }, + { + "id": "78594", + "name": "Posterholt", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.12333000", + "longitude": "6.03472000" + }, + { + "id": "78595", + "name": "Pottenberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.85135000", + "longitude": "5.65668000" + }, + { + "id": "78600", + "name": "Puth", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.95417000", + "longitude": "5.87361000" + }, + { + "id": "78617", + "name": "Reuver", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.28417000", + "longitude": "6.07778000" + }, + { + "id": "78635", + "name": "Roermond", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.19417000", + "longitude": "5.98750000" + }, + { + "id": "78638", + "name": "Roosteren", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.08333000", + "longitude": "5.81806000" + }, + { + "id": "78641", + "name": "Rothem", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.87667000", + "longitude": "5.73889000" + }, + { + "id": "78660", + "name": "Scharn", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.85000000", + "longitude": "5.73333000" + }, + { + "id": "78672", + "name": "Schilberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.09917000", + "longitude": "5.88611000" + }, + { + "id": "78674", + "name": "Schimmert", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.90667000", + "longitude": "5.82361000" + }, + { + "id": "78675", + "name": "Schinnen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.94333000", + "longitude": "5.88889000" + }, + { + "id": "78676", + "name": "Schinveld", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.96917000", + "longitude": "5.97917000" + }, + { + "id": "78688", + "name": "Sevenum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41250000", + "longitude": "6.03750000" + }, + { + "id": "78690", + "name": "Sibbe", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.84417000", + "longitude": "5.82639000" + }, + { + "id": "78693", + "name": "Simpelveld", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.83417000", + "longitude": "5.98194000" + }, + { + "id": "78698", + "name": "Sint Joost", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.11750000", + "longitude": "5.89861000" + }, + { + "id": "78701", + "name": "Sint Odiliënberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.14333000", + "longitude": "6.00000000" + }, + { + "id": "78708", + "name": "Sittard", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.99833000", + "longitude": "5.86944000" + }, + { + "id": "78727", + "name": "Spaubeek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.94000000", + "longitude": "5.84306000" + }, + { + "id": "78730", + "name": "Spekholzerheide", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.85559000", + "longitude": "6.02471000" + }, + { + "id": "78740", + "name": "Stadbroek", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.00187000", + "longitude": "5.87656000" + }, + { + "id": "78754", + "name": "Stein", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.96917000", + "longitude": "5.76667000" + }, + { + "id": "78762", + "name": "Stramproy", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.19417000", + "longitude": "5.71944000" + }, + { + "id": "78767", + "name": "Tegelen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.34417000", + "longitude": "6.13611000" + }, + { + "id": "78776", + "name": "Terwinselen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86659000", + "longitude": "6.02471000" + }, + { + "id": "78782", + "name": "Thorn", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.16167000", + "longitude": "5.84167000" + }, + { + "id": "78784", + "name": "Tienray", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49500000", + "longitude": "6.09306000" + }, + { + "id": "78805", + "name": "Ubachsberg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.85333000", + "longitude": "5.94861000" + }, + { + "id": "78815", + "name": "Ulestraten", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.90583000", + "longitude": "5.78194000" + }, + { + "id": "78820", + "name": "Urmond", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.99083000", + "longitude": "5.77222000" + }, + { + "id": "78823", + "name": "Vaals", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.77083000", + "longitude": "6.01806000" + }, + { + "id": "78829", + "name": "Valkenburg", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.86523000", + "longitude": "5.83205000" + }, + { + "id": "78830", + "name": "Valkenburg aan de Geul", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.85711000", + "longitude": "5.83489000" + }, + { + "id": "78844", + "name": "Veltum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51954000", + "longitude": "5.96032000" + }, + { + "id": "78847", + "name": "Venlo", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.37000000", + "longitude": "6.16806000" + }, + { + "id": "78848", + "name": "Venray", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52500000", + "longitude": "5.97500000" + }, + { + "id": "78852", + "name": "Vijlen", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.78833000", + "longitude": "5.96528000" + }, + { + "id": "78863", + "name": "Vlodrop", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.13333000", + "longitude": "6.07639000" + }, + { + "id": "78865", + "name": "Voerendaal", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.88327000", + "longitude": "5.92978000" + }, + { + "id": "78884", + "name": "Vrieheide", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.92192000", + "longitude": "5.96701000" + }, + { + "id": "78902", + "name": "Wanssum", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53583000", + "longitude": "6.07639000" + }, + { + "id": "78912", + "name": "Waubach", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.91833000", + "longitude": "6.05000000" + }, + { + "id": "78914", + "name": "Weert", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.25167000", + "longitude": "5.70694000" + }, + { + "id": "78921", + "name": "Well", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.55000000", + "longitude": "6.08889000" + }, + { + "id": "78922", + "name": "Wellerlooi", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53417000", + "longitude": "6.13611000" + }, + { + "id": "78927", + "name": "Wessem", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.15954000", + "longitude": "5.88146000" + }, + { + "id": "78955", + "name": "Wijlre", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.83333000", + "longitude": "5.89583000" + }, + { + "id": "78956", + "name": "Wijnandsrade", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.90583000", + "longitude": "5.88333000" + }, + { + "id": "78974", + "name": "Wolder", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "50.83752000", + "longitude": "5.65938000" + }, + { + "id": "78991", + "name": "Ysselsteyn", + "state_id": 2615, + "state_code": "LI", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49000000", + "longitude": "5.89722000" + }, + { + "id": "77297", + "name": "'s Gravenmoer", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65594000", + "longitude": "4.94076000" + }, + { + "id": "77301", + "name": "'s-Hertogenbosch", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69917000", + "longitude": "5.30417000" + }, + { + "id": "77302", + "name": "'t Hofke", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44943000", + "longitude": "5.51926000" + }, + { + "id": "77305", + "name": "Aalburg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.75482000", + "longitude": "5.13156000" + }, + { + "id": "77308", + "name": "Aalst", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.39667000", + "longitude": "5.47778000" + }, + { + "id": "77312", + "name": "Aarle-Rixtel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50976000", + "longitude": "5.63839000" + }, + { + "id": "77315", + "name": "Abcoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52750000", + "longitude": "5.08333000" + }, + { + "id": "77320", + "name": "Akert", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41407000", + "longitude": "5.55960000" + }, + { + "id": "77328", + "name": "Almkerk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.77083000", + "longitude": "4.95972000" + }, + { + "id": "77329", + "name": "Alphen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48167000", + "longitude": "4.95833000" + }, + { + "id": "77342", + "name": "Andel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.78333000", + "longitude": "5.05833000" + }, + { + "id": "77358", + "name": "Asten", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.40417000", + "longitude": "5.74861000" + }, + { + "id": "77365", + "name": "Baardwijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69246000", + "longitude": "5.09628000" + }, + { + "id": "77366", + "name": "Baarle-Nassau", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44750000", + "longitude": "4.92917000" + }, + { + "id": "77371", + "name": "Bakel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50333000", + "longitude": "5.74028000" + }, + { + "id": "77383", + "name": "Bavel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56583000", + "longitude": "4.83056000" + }, + { + "id": "77386", + "name": "Beek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52890000", + "longitude": "5.63382000" + }, + { + "id": "77390", + "name": "Beers", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.72583000", + "longitude": "5.82778000" + }, + { + "id": "77396", + "name": "Belcrum", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.59911000", + "longitude": "4.76994000" + }, + { + "id": "77407", + "name": "Bergeijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.30182000", + "longitude": "5.33946000" + }, + { + "id": "77408", + "name": "Bergen op Zoom", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49500000", + "longitude": "4.29167000" + }, + { + "id": "77410", + "name": "Berghem", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.76991000", + "longitude": "5.56827000" + }, + { + "id": "77419", + "name": "Berlicum", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.67750000", + "longitude": "5.40000000" + }, + { + "id": "77421", + "name": "Besoijen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68333000", + "longitude": "5.05000000" + }, + { + "id": "77422", + "name": "Best", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50750000", + "longitude": "5.39028000" + }, + { + "id": "77423", + "name": "Besterd", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56380000", + "longitude": "5.08658000" + }, + { + "id": "77428", + "name": "Biesdonk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60613000", + "longitude": "4.78515000" + }, + { + "id": "77434", + "name": "Bitswijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66870000", + "longitude": "5.60921000" + }, + { + "id": "77435", + "name": "Blaarthem", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.42501000", + "longitude": "5.45784000" + }, + { + "id": "77436", + "name": "Bladel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.36833000", + "longitude": "5.22083000" + }, + { + "id": "77450", + "name": "Boekel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60333000", + "longitude": "5.67500000" + }, + { + "id": "77464", + "name": "Bosschenhoofd", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56083000", + "longitude": "4.54028000" + }, + { + "id": "77466", + "name": "Boxmeer", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64667000", + "longitude": "5.94722000" + }, + { + "id": "77467", + "name": "Boxtel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.59083000", + "longitude": "5.32917000" + }, + { + "id": "77472", + "name": "Brand", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.45839000", + "longitude": "5.62427000" + }, + { + "id": "77473", + "name": "Breda", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58656000", + "longitude": "4.77596000" + }, + { + "id": "77478", + "name": "Breugel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51750000", + "longitude": "5.51111000" + }, + { + "id": "77485", + "name": "Broekhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54801000", + "longitude": "5.09175000" + }, + { + "id": "77497", + "name": "Budel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.27167000", + "longitude": "5.57500000" + }, + { + "id": "77498", + "name": "Budel-Dorplein", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.23667000", + "longitude": "5.58750000" + }, + { + "id": "77499", + "name": "Budel-Schoot", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.24750000", + "longitude": "5.56528000" + }, + { + "id": "77515", + "name": "Chaam", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50583000", + "longitude": "4.86111000" + }, + { + "id": "77518", + "name": "Coevering", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41742000", + "longitude": "5.57463000" + }, + { + "id": "77525", + "name": "Cranendonck", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.30417000", + "longitude": "5.58889000" + }, + { + "id": "77526", + "name": "Cuijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.73083000", + "longitude": "5.87917000" + }, + { + "id": "77533", + "name": "De Blaak", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54626000", + "longitude": "5.04465000" + }, + { + "id": "77536", + "name": "De Doornakkers", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.43844000", + "longitude": "5.50887000" + }, + { + "id": "77550", + "name": "De Kruiskamp", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69978000", + "longitude": "5.26032000" + }, + { + "id": "77557", + "name": "De Reit", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56038000", + "longitude": "5.04932000" + }, + { + "id": "77559", + "name": "De Rompert", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.71667000", + "longitude": "5.31667000" + }, + { + "id": "77571", + "name": "Den Dungen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66500000", + "longitude": "5.37222000" + }, + { + "id": "77575", + "name": "Deuteren", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68667000", + "longitude": "5.26667000" + }, + { + "id": "77580", + "name": "Diessen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47583000", + "longitude": "5.17500000" + }, + { + "id": "77582", + "name": "Dinteloord", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.63500000", + "longitude": "4.36944000" + }, + { + "id": "77590", + "name": "Dommelen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.34624000", + "longitude": "5.43394000" + }, + { + "id": "77591", + "name": "Dongen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.62667000", + "longitude": "4.93889000" + }, + { + "id": "77592", + "name": "Donk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53843000", + "longitude": "5.62914000" + }, + { + "id": "77594", + "name": "Doonheide", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56667000", + "longitude": "5.69444000" + }, + { + "id": "77601", + "name": "Dorst", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.59000000", + "longitude": "4.85694000" + }, + { + "id": "77619", + "name": "Duizel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.36833000", + "longitude": "5.29722000" + }, + { + "id": "77623", + "name": "Eckart", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47320000", + "longitude": "5.49449000" + }, + { + "id": "77631", + "name": "Eerde", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60417000", + "longitude": "5.49861000" + }, + { + "id": "77632", + "name": "Eerschot", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56833000", + "longitude": "5.47361000" + }, + { + "id": "77633", + "name": "Eersel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35750000", + "longitude": "5.31806000" + }, + { + "id": "77642", + "name": "Eindhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44083000", + "longitude": "5.47778000" + }, + { + "id": "77644", + "name": "Ekenrooi", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.39656000", + "longitude": "5.48624000" + }, + { + "id": "77648", + "name": "Elshout", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.70083000", + "longitude": "5.14167000" + }, + { + "id": "77663", + "name": "Enschot", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57846000", + "longitude": "5.13885000" + }, + { + "id": "77667", + "name": "Erp", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60000000", + "longitude": "5.60694000" + }, + { + "id": "77668", + "name": "Esch", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61083000", + "longitude": "5.29028000" + }, + { + "id": "77676", + "name": "Fijnaart", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.63750000", + "longitude": "4.46944000" + }, + { + "id": "77680", + "name": "Gageldonk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60167000", + "longitude": "4.73889000" + }, + { + "id": "77686", + "name": "Geenhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35935000", + "longitude": "5.46021000" + }, + { + "id": "77687", + "name": "Geertruidenberg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.70167000", + "longitude": "4.85694000" + }, + { + "id": "77688", + "name": "Geffen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.74000000", + "longitude": "5.46389000" + }, + { + "id": "77692", + "name": "Geldrop", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.42167000", + "longitude": "5.55972000" + }, + { + "id": "77695", + "name": "Gemeente 's-Hertogenbosch", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68267000", + "longitude": "5.30056000" + }, + { + "id": "77706", + "name": "Gemeente Alphen-Chaam", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50341000", + "longitude": "4.88013000" + }, + { + "id": "77715", + "name": "Gemeente Asten", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.39231000", + "longitude": "5.77910000" + }, + { + "id": "77716", + "name": "Gemeente Baarle-Nassau", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.43544000", + "longitude": "4.91180000" + }, + { + "id": "77726", + "name": "Gemeente Bergen op Zoom", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50451000", + "longitude": "4.29108000" + }, + { + "id": "77727", + "name": "Gemeente Bernheze", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68556000", + "longitude": "5.52378000" + }, + { + "id": "77728", + "name": "Gemeente Best", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50000000", + "longitude": "5.38333000" + }, + { + "id": "77731", + "name": "Gemeente Bladel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35000000", + "longitude": "5.21667000" + }, + { + "id": "77734", + "name": "Gemeente Boekel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60489000", + "longitude": "5.69357000" + }, + { + "id": "77738", + "name": "Gemeente Boxmeer", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.63333000", + "longitude": "5.95000000" + }, + { + "id": "77739", + "name": "Gemeente Boxtel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58472000", + "longitude": "5.32654000" + }, + { + "id": "77740", + "name": "Gemeente Breda", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57790000", + "longitude": "4.76039000" + }, + { + "id": "77751", + "name": "Gemeente Cranendonck", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.27746000", + "longitude": "5.58373000" + }, + { + "id": "77752", + "name": "Gemeente Cuijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.71739000", + "longitude": "5.85773000" + }, + { + "id": "77763", + "name": "Gemeente Deurne", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.43701000", + "longitude": "5.82245000" + }, + { + "id": "77769", + "name": "Gemeente Dongen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.63754000", + "longitude": "4.95361000" + }, + { + "id": "77772", + "name": "Gemeente Drimmelen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66667000", + "longitude": "4.78333000" + }, + { + "id": "77780", + "name": "Gemeente Eersel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.39579000", + "longitude": "5.31956000" + }, + { + "id": "77781", + "name": "Gemeente Eindhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.45037000", + "longitude": "5.45279000" + }, + { + "id": "77788", + "name": "Gemeente Etten-Leur", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57711000", + "longitude": "4.64253000" + }, + { + "id": "77789", + "name": "Gemeente Geertruidenberg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69634000", + "longitude": "4.87836000" + }, + { + "id": "77790", + "name": "Gemeente Geldrop-Mierlo", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.43372000", + "longitude": "5.59926000" + }, + { + "id": "77791", + "name": "Gemeente Gemert-Bakel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52554000", + "longitude": "5.72802000" + }, + { + "id": "77793", + "name": "Gemeente Gilze en Rijen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.55656000", + "longitude": "4.91253000" + }, + { + "id": "77796", + "name": "Gemeente Goirle", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50875000", + "longitude": "5.03381000" + }, + { + "id": "77799", + "name": "Gemeente Grave", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.73970000", + "longitude": "5.74366000" + }, + { + "id": "77802", + "name": "Gemeente Haaren", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61831000", + "longitude": "5.22779000" + }, + { + "id": "77805", + "name": "Gemeente Halderberge", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58925000", + "longitude": "4.50597000" + }, + { + "id": "77817", + "name": "Gemeente Heeze-Leende", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.36404000", + "longitude": "5.55870000" + }, + { + "id": "77821", + "name": "Gemeente Helmond", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47968000", + "longitude": "5.65559000" + }, + { + "id": "77825", + "name": "Gemeente Heusden", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69975000", + "longitude": "5.16598000" + }, + { + "id": "77827", + "name": "Gemeente Hilvarenbeek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47772000", + "longitude": "5.14778000" + }, + { + "id": "77845", + "name": "Gemeente Laarbeek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52643000", + "longitude": "5.61283000" + }, + { + "id": "77846", + "name": "Gemeente Landerd", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.71151000", + "longitude": "5.66580000" + }, + { + "id": "77861", + "name": "Gemeente Loon op Zand", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.63782000", + "longitude": "5.04860000" + }, + { + "id": "77875", + "name": "Gemeente Mill en Sint Hubert", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68712000", + "longitude": "5.77077000" + }, + { + "id": "77876", + "name": "Gemeente Moerdijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.63933000", + "longitude": "4.56379000" + }, + { + "id": "77890", + "name": "Gemeente Nuenen, Gerwen en Nederwetten", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.46667000", + "longitude": "5.53333000" + }, + { + "id": "77893", + "name": "Gemeente Oirschot", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49062000", + "longitude": "5.28959000" + }, + { + "id": "77894", + "name": "Gemeente Oisterwijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.55289000", + "longitude": "5.20188000" + }, + { + "id": "77899", + "name": "Gemeente Oosterhout", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.63435000", + "longitude": "4.86399000" + }, + { + "id": "77904", + "name": "Gemeente Oss", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.78103000", + "longitude": "5.58111000" + }, + { + "id": "77918", + "name": "Gemeente Reusel-De Mierden", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.38047000", + "longitude": "5.15790000" + }, + { + "id": "77928", + "name": "Gemeente Rucphen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52357000", + "longitude": "4.56586000" + }, + { + "id": "77934", + "name": "Gemeente Sint Anthonis", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61826000", + "longitude": "5.84354000" + }, + { + "id": "77935", + "name": "Gemeente Sint-Michielsgestel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66076000", + "longitude": "5.37851000" + }, + { + "id": "77941", + "name": "Gemeente Someren", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.38233000", + "longitude": "5.71049000" + }, + { + "id": "77942", + "name": "Gemeente Son en Breugel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50970000", + "longitude": "5.49934000" + }, + { + "id": "77946", + "name": "Gemeente Steenbergen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60081000", + "longitude": "4.32077000" + }, + { + "id": "77955", + "name": "Gemeente Tilburg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57787000", + "longitude": "5.06555000" + }, + { + "id": "77960", + "name": "Gemeente Uden", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65682000", + "longitude": "5.61258000" + }, + { + "id": "77967", + "name": "Gemeente Valkenswaard", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.32575000", + "longitude": "5.45323000" + }, + { + "id": "77971", + "name": "Gemeente Veldhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41253000", + "longitude": "5.38052000" + }, + { + "id": "77981", + "name": "Gemeente Vught", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65822000", + "longitude": "5.26746000" + }, + { + "id": "77982", + "name": "Gemeente Waalre", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.38757000", + "longitude": "5.46380000" + }, + { + "id": "77983", + "name": "Gemeente Waalwijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68970000", + "longitude": "5.01721000" + }, + { + "id": "78001", + "name": "Gemeente Woensdrecht", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.40948000", + "longitude": "4.33512000" + }, + { + "id": "78014", + "name": "Gemeente Zundert", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47352000", + "longitude": "4.64180000" + }, + { + "id": "78019", + "name": "Gemert", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.55583000", + "longitude": "5.69028000" + }, + { + "id": "78020", + "name": "Gemonde", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61833000", + "longitude": "5.35694000" + }, + { + "id": "78021", + "name": "Genderen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.73583000", + "longitude": "5.08750000" + }, + { + "id": "78025", + "name": "Genoenhuis", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.40917000", + "longitude": "5.53889000" + }, + { + "id": "78026", + "name": "Gerwen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49000000", + "longitude": "5.56250000" + }, + { + "id": "78028", + "name": "Giessen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.79000000", + "longitude": "5.03056000" + }, + { + "id": "78033", + "name": "Gilze", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54417000", + "longitude": "4.94028000" + }, + { + "id": "78034", + "name": "Ginneken", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56593000", + "longitude": "4.79310000" + }, + { + "id": "78038", + "name": "Goirle", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52083000", + "longitude": "5.06667000" + }, + { + "id": "78052", + "name": "Grasrijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.43916000", + "longitude": "5.41544000" + }, + { + "id": "78053", + "name": "Grave", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.75902000", + "longitude": "5.73882000" + }, + { + "id": "78059", + "name": "Groenewoud", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53860000", + "longitude": "5.09028000" + }, + { + "id": "78079", + "name": "Haaren", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60250000", + "longitude": "5.22222000" + }, + { + "id": "78082", + "name": "Haarsteeg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.71167000", + "longitude": "5.19861000" + }, + { + "id": "78087", + "name": "Halsteren", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52834000", + "longitude": "4.26785000" + }, + { + "id": "78088", + "name": "Handel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58000000", + "longitude": "5.70972000" + }, + { + "id": "78089", + "name": "Hapert", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.36833000", + "longitude": "5.25694000" + }, + { + "id": "78090", + "name": "Haps", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68917000", + "longitude": "5.86111000" + }, + { + "id": "78118", + "name": "Heerle", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51917000", + "longitude": "4.35972000" + }, + { + "id": "78121", + "name": "Heesch", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.73362000", + "longitude": "5.52672000" + }, + { + "id": "78122", + "name": "Heesterakker", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48610000", + "longitude": "5.49681000" + }, + { + "id": "78123", + "name": "Heeswijk-Dinther", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65083000", + "longitude": "5.47500000" + }, + { + "id": "78124", + "name": "Heeze", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.38280000", + "longitude": "5.57145000" + }, + { + "id": "78135", + "name": "Helmond", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48167000", + "longitude": "5.66111000" + }, + { + "id": "78137", + "name": "Helvoirt", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.63167000", + "longitude": "5.23056000" + }, + { + "id": "78146", + "name": "Herpen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.77167000", + "longitude": "5.64167000" + }, + { + "id": "78154", + "name": "Heusden", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.38417000", + "longitude": "5.76389000" + }, + { + "id": "78155", + "name": "Heusdenhout", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58811000", + "longitude": "4.81930000" + }, + { + "id": "78158", + "name": "Hilvarenbeek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48583000", + "longitude": "5.13750000" + }, + { + "id": "78165", + "name": "Hoeven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57917000", + "longitude": "4.58333000" + }, + { + "id": "78168", + "name": "Hoge Vucht", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60794000", + "longitude": "4.79150000" + }, + { + "id": "78177", + "name": "Hooge Mierde", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.38750000", + "longitude": "5.12917000" + }, + { + "id": "78178", + "name": "Hooge Zwaluwe", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68750000", + "longitude": "4.74444000" + }, + { + "id": "78179", + "name": "Hoogeloon", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.39750000", + "longitude": "5.26806000" + }, + { + "id": "78180", + "name": "Hoogerheide", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.42417000", + "longitude": "4.32500000" + }, + { + "id": "78191", + "name": "Huijbergen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.43250000", + "longitude": "4.37639000" + }, + { + "id": "78205", + "name": "Jagershoef", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47330000", + "longitude": "5.46720000" + }, + { + "id": "78212", + "name": "Kalsdonk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53973000", + "longitude": "4.47111000" + }, + { + "id": "78237", + "name": "Klein-Zundert", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48083000", + "longitude": "4.65417000" + }, + { + "id": "78240", + "name": "Klundert", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66500000", + "longitude": "4.53472000" + }, + { + "id": "78252", + "name": "Korvel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54954000", + "longitude": "5.07079000" + }, + { + "id": "78258", + "name": "Krooswijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64665000", + "longitude": "4.59203000" + }, + { + "id": "78260", + "name": "Kruisland", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56917000", + "longitude": "4.40972000" + }, + { + "id": "78264", + "name": "Lage Mierde", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.40583000", + "longitude": "5.14722000" + }, + { + "id": "78265", + "name": "Lakerlopen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.43791000", + "longitude": "5.50106000" + }, + { + "id": "78270", + "name": "Langenboom", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.70417000", + "longitude": "5.73056000" + }, + { + "id": "78277", + "name": "Leende", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35083000", + "longitude": "5.55417000" + }, + { + "id": "78281", + "name": "Leest", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60983000", + "longitude": "5.54312000" + }, + { + "id": "78291", + "name": "Lepelstraat", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54833000", + "longitude": "4.27639000" + }, + { + "id": "78298", + "name": "Liempde", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56917000", + "longitude": "5.37222000" + }, + { + "id": "78300", + "name": "Lierop", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41917000", + "longitude": "5.67917000" + }, + { + "id": "78301", + "name": "Lieshout", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52036000", + "longitude": "5.59479000" + }, + { + "id": "78302", + "name": "Liessel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41333000", + "longitude": "5.82083000" + }, + { + "id": "78304", + "name": "Lievendaal", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44219000", + "longitude": "5.43405000" + }, + { + "id": "78314", + "name": "Lith", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.80583000", + "longitude": "5.43889000" + }, + { + "id": "78319", + "name": "Loon op Zand", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.62750000", + "longitude": "5.07500000" + }, + { + "id": "78320", + "name": "Loosbroek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.67833000", + "longitude": "5.50694000" + }, + { + "id": "78325", + "name": "Loven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56480000", + "longitude": "5.09748000" + }, + { + "id": "78329", + "name": "Luyksgestel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.28917000", + "longitude": "5.32361000" + }, + { + "id": "78330", + "name": "Maarheeze", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.31167000", + "longitude": "5.61667000" + }, + { + "id": "78337", + "name": "Maaskantje", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65833000", + "longitude": "5.37083000" + }, + { + "id": "78341", + "name": "Made", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.67667000", + "longitude": "4.79306000" + }, + { + "id": "78349", + "name": "Mariahout", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54083000", + "longitude": "5.57222000" + }, + { + "id": "78367", + "name": "Meerhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44267000", + "longitude": "5.41102000" + }, + { + "id": "78370", + "name": "Meerveldhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41705000", + "longitude": "5.41618000" + }, + { + "id": "78372", + "name": "Megen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82167000", + "longitude": "5.56250000" + }, + { + "id": "78373", + "name": "Meierijstad", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.59968000", + "longitude": "5.50278000" + }, + { + "id": "78379", + "name": "Melle", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66244000", + "longitude": "5.63367000" + }, + { + "id": "78387", + "name": "Middelbeers", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.46667000", + "longitude": "5.25000000" + }, + { + "id": "78390", + "name": "Middelrode", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66417000", + "longitude": "5.41944000" + }, + { + "id": "78398", + "name": "Mierlo", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44000000", + "longitude": "5.61944000" + }, + { + "id": "78401", + "name": "Milheeze", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50167000", + "longitude": "5.77917000" + }, + { + "id": "78404", + "name": "Moerdijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.70167000", + "longitude": "4.62639000" + }, + { + "id": "78406", + "name": "Molenhoek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.71113000", + "longitude": "5.36809000" + }, + { + "id": "78415", + "name": "Muschberg en Geestenberg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44384000", + "longitude": "5.52329000" + }, + { + "id": "78418", + "name": "Naastenbest", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50484000", + "longitude": "5.38579000" + }, + { + "id": "78426", + "name": "Neerkant", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.36833000", + "longitude": "5.86667000" + }, + { + "id": "78437", + "name": "Nieuw-Vossemeer", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.59000000", + "longitude": "4.21806000" + }, + { + "id": "78446", + "name": "Nieuwkuijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69000000", + "longitude": "5.18194000" + }, + { + "id": "78455", + "name": "Nijnsel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.55083000", + "longitude": "5.48333000" + }, + { + "id": "78457", + "name": "Nispen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48331000", + "longitude": "4.46131000" + }, + { + "id": "78459", + "name": "Nistelrode", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.70417000", + "longitude": "5.56250000" + }, + { + "id": "78467", + "name": "Noordgeest", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50917000", + "longitude": "4.27917000" + }, + { + "id": "78468", + "name": "Noordhoek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64250000", + "longitude": "4.53194000" + }, + { + "id": "78474", + "name": "Nuenen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47000000", + "longitude": "5.55278000" + }, + { + "id": "78483", + "name": "Odiliapeel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64333000", + "longitude": "5.70556000" + }, + { + "id": "78487", + "name": "Oerle", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.42255000", + "longitude": "5.37163000" + }, + { + "id": "78491", + "name": "Oirschot", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50500000", + "longitude": "5.31389000" + }, + { + "id": "78492", + "name": "Oisterwijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57917000", + "longitude": "5.18889000" + }, + { + "id": "78510", + "name": "Oosteind", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64418000", + "longitude": "4.89784000" + }, + { + "id": "78512", + "name": "Oostelbeers", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47171000", + "longitude": "5.26897000" + }, + { + "id": "78519", + "name": "Oosterhout", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64500000", + "longitude": "4.85972000" + }, + { + "id": "78544", + "name": "Orthen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.70613000", + "longitude": "5.30468000" + }, + { + "id": "78546", + "name": "Oss", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.76500000", + "longitude": "5.51806000" + }, + { + "id": "78547", + "name": "Ossendrecht", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.39417000", + "longitude": "4.32639000" + }, + { + "id": "78551", + "name": "Oud Gastel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58667000", + "longitude": "4.45972000" + }, + { + "id": "78572", + "name": "Overloon", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57167000", + "longitude": "5.94722000" + }, + { + "id": "78596", + "name": "Princenhage", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57632000", + "longitude": "4.73906000" + }, + { + "id": "78597", + "name": "Prinsenbeek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.59833000", + "longitude": "4.71250000" + }, + { + "id": "78601", + "name": "Putte", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.36000000", + "longitude": "4.39583000" + }, + { + "id": "78603", + "name": "Quirijnstok", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58430000", + "longitude": "5.09810000" + }, + { + "id": "78605", + "name": "Raam", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65967000", + "longitude": "5.63637000" + }, + { + "id": "78606", + "name": "Raamsdonk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68750000", + "longitude": "4.90833000" + }, + { + "id": "78607", + "name": "Raamsdonksveer", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69667000", + "longitude": "4.87361000" + }, + { + "id": "78609", + "name": "Ravenstein", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.79667000", + "longitude": "5.65000000" + }, + { + "id": "78610", + "name": "Reek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.74583000", + "longitude": "5.68194000" + }, + { + "id": "78616", + "name": "Reusel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.36250000", + "longitude": "5.16528000" + }, + { + "id": "78622", + "name": "Riethoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35417000", + "longitude": "5.38750000" + }, + { + "id": "78623", + "name": "Rijen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.59083000", + "longitude": "4.91944000" + }, + { + "id": "78627", + "name": "Rijsbergen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51750000", + "longitude": "4.69722000" + }, + { + "id": "78629", + "name": "Rijswijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.79750000", + "longitude": "5.02500000" + }, + { + "id": "78637", + "name": "Roosendaal", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53083000", + "longitude": "4.46528000" + }, + { + "id": "78646", + "name": "Rucphen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53167000", + "longitude": "4.55833000" + }, + { + "id": "78651", + "name": "Salderes", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51505000", + "longitude": "5.38991000" + }, + { + "id": "78657", + "name": "Schaijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.74583000", + "longitude": "5.63194000" + }, + { + "id": "78671", + "name": "Schijndel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.62250000", + "longitude": "5.43194000" + }, + { + "id": "78684", + "name": "Schutsboom", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.46152000", + "longitude": "5.62260000" + }, + { + "id": "78695", + "name": "Sint Anthonis", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.62667000", + "longitude": "5.88194000" + }, + { + "id": "78704", + "name": "Sint Willebrord", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54833000", + "longitude": "4.58889000" + }, + { + "id": "78705", + "name": "Sint-Michielsgestel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64167000", + "longitude": "5.35278000" + }, + { + "id": "78706", + "name": "Sint-Oedenrode", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56750000", + "longitude": "5.45972000" + }, + { + "id": "78718", + "name": "Soerendonk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.30083000", + "longitude": "5.57500000" + }, + { + "id": "78721", + "name": "Someren", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.38500000", + "longitude": "5.71111000" + }, + { + "id": "78722", + "name": "Someren-Eind", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35750000", + "longitude": "5.73333000" + }, + { + "id": "78723", + "name": "Son", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51136000", + "longitude": "5.49282000" + }, + { + "id": "78729", + "name": "Speelheide", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50607000", + "longitude": "5.40519000" + }, + { + "id": "78738", + "name": "Sprundel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53750000", + "longitude": "4.59722000" + }, + { + "id": "78743", + "name": "Stampersgat", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61333000", + "longitude": "4.44444000" + }, + { + "id": "78744", + "name": "Standdaarbuiten", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61333000", + "longitude": "4.51389000" + }, + { + "id": "78748", + "name": "Steenbergen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58417000", + "longitude": "4.31944000" + }, + { + "id": "78750", + "name": "Steensel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.37667000", + "longitude": "5.35278000" + }, + { + "id": "78756", + "name": "Stepekolk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.45500000", + "longitude": "5.61251000" + }, + { + "id": "78772", + "name": "Terheijden", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64333000", + "longitude": "4.75417000" + }, + { + "id": "78778", + "name": "Teteringen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60917000", + "longitude": "4.82083000" + }, + { + "id": "78780", + "name": "Theereheide", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.63843000", + "longitude": "5.33729000" + }, + { + "id": "78786", + "name": "Tilburg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.55551000", + "longitude": "5.09130000" + }, + { + "id": "78788", + "name": "Tivoli", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.42069000", + "longitude": "5.50818000" + }, + { + "id": "78790", + "name": "Tongelre", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44889000", + "longitude": "5.51978000" + }, + { + "id": "78807", + "name": "Uden", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66083000", + "longitude": "5.61944000" + }, + { + "id": "78808", + "name": "Udenhout", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60917000", + "longitude": "5.14306000" + }, + { + "id": "78817", + "name": "Ulvenhout", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54907000", + "longitude": "4.79931000" + }, + { + "id": "78824", + "name": "Vaartbroek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47954000", + "longitude": "5.49806000" + }, + { + "id": "78831", + "name": "Valkenswaard", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35083000", + "longitude": "5.45972000" + }, + { + "id": "78835", + "name": "Veen", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.77750000", + "longitude": "5.10833000" + }, + { + "id": "78839", + "name": "Veghel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61667000", + "longitude": "5.54861000" + }, + { + "id": "78840", + "name": "Veldhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41833000", + "longitude": "5.40278000" + }, + { + "id": "78845", + "name": "Ven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64000000", + "longitude": "5.55000000" + }, + { + "id": "78846", + "name": "Venhorst", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60833000", + "longitude": "5.73750000" + }, + { + "id": "78853", + "name": "Villapark", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44144000", + "longitude": "5.49385000" + }, + { + "id": "78859", + "name": "Vliedberg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68961000", + "longitude": "5.19031000" + }, + { + "id": "78860", + "name": "Vlierden", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44500000", + "longitude": "5.75833000" + }, + { + "id": "78864", + "name": "Vlokhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.46667000", + "longitude": "5.48333000" + }, + { + "id": "78869", + "name": "Voldijn", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.40052000", + "longitude": "5.47196000" + }, + { + "id": "78871", + "name": "Volkel", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.64250000", + "longitude": "5.65417000" + }, + { + "id": "78880", + "name": "Vorstenbosch", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65250000", + "longitude": "5.55000000" + }, + { + "id": "78888", + "name": "Vught", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65333000", + "longitude": "5.28750000" + }, + { + "id": "78891", + "name": "Waalre", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.38667000", + "longitude": "5.44444000" + }, + { + "id": "78892", + "name": "Waalwijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68250000", + "longitude": "5.07083000" + }, + { + "id": "78898", + "name": "Wagenberg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66500000", + "longitude": "4.74861000" + }, + { + "id": "78901", + "name": "Wanroij", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65750000", + "longitude": "5.81806000" + }, + { + "id": "78908", + "name": "Waspik", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.68667000", + "longitude": "4.94444000" + }, + { + "id": "78911", + "name": "Waterdonken", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.60959000", + "longitude": "4.80452000" + }, + { + "id": "78919", + "name": "Welberg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57667000", + "longitude": "4.33056000" + }, + { + "id": "78924", + "name": "Werkendam", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81000000", + "longitude": "4.89444000" + }, + { + "id": "78926", + "name": "Wernhout", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.45500000", + "longitude": "4.64167000" + }, + { + "id": "78937", + "name": "Westerhoven", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.33250000", + "longitude": "5.39583000" + }, + { + "id": "78949", + "name": "Wijbosch", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61667000", + "longitude": "5.46806000" + }, + { + "id": "78959", + "name": "Wilhelminadorp", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49742000", + "longitude": "5.39223000" + }, + { + "id": "78968", + "name": "Wisselaar", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61285000", + "longitude": "4.78444000" + }, + { + "id": "78971", + "name": "Woensdrecht", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.42897000", + "longitude": "4.30355000" + }, + { + "id": "78972", + "name": "Woenselse Heide", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48333000", + "longitude": "5.46667000" + }, + { + "id": "78986", + "name": "Woudrichem", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81500000", + "longitude": "5.00139000" + }, + { + "id": "78988", + "name": "Wouw", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52167000", + "longitude": "4.39028000" + }, + { + "id": "78997", + "name": "Zandberg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57333000", + "longitude": "4.78472000" + }, + { + "id": "79000", + "name": "Zeeland", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69750000", + "longitude": "5.67639000" + }, + { + "id": "79001", + "name": "Zeelst", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.42421000", + "longitude": "5.41566000" + }, + { + "id": "79003", + "name": "Zegge", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.55667000", + "longitude": "4.51806000" + }, + { + "id": "79004", + "name": "Zeilberg", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.45469000", + "longitude": "5.81878000" + }, + { + "id": "79007", + "name": "Zesgehuchten", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41667000", + "longitude": "5.55000000" + }, + { + "id": "79010", + "name": "Zevenbergschen Hoek", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.67250000", + "longitude": "4.67917000" + }, + { + "id": "79014", + "name": "Zijtaart", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.59250000", + "longitude": "5.54167000" + }, + { + "id": "79018", + "name": "Zonderwijk", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41141000", + "longitude": "5.39361000" + }, + { + "id": "79031", + "name": "Zundert", + "state_id": 2623, + "state_code": "NB", + "country_id": 156, + "country_code": "NL", + "latitude": "51.47167000", + "longitude": "4.65556000" + }, + { + "id": "77303", + "name": "'t Zand", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.83667000", + "longitude": "4.75556000" + }, + { + "id": "77307", + "name": "Aalsmeer", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25917000", + "longitude": "4.75972000" + }, + { + "id": "77313", + "name": "Abbekerk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.73167000", + "longitude": "5.01806000" + }, + { + "id": "77325", + "name": "Alkmaar", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.63167000", + "longitude": "4.74861000" + }, + { + "id": "77338", + "name": "Amstelveen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30083000", + "longitude": "4.86389000" + }, + { + "id": "77340", + "name": "Amsterdam", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.37403000", + "longitude": "4.88969000" + }, + { + "id": "77341", + "name": "Amsterdam-Zuidoost", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30750000", + "longitude": "4.97222000" + }, + { + "id": "77347", + "name": "Ankeveense Rade", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25891000", + "longitude": "5.10160000" + }, + { + "id": "77361", + "name": "Avenhorn", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.61750000", + "longitude": "4.95139000" + }, + { + "id": "77377", + "name": "Bangert", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.73582000", + "longitude": "5.18010000" + }, + { + "id": "77401", + "name": "Bennebroek", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.32083000", + "longitude": "4.59861000" + }, + { + "id": "77417", + "name": "Berkhout", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.64083000", + "longitude": "5.00139000" + }, + { + "id": "77426", + "name": "Beverwijk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.48333000", + "longitude": "4.65694000" + }, + { + "id": "77430", + "name": "Bijvanck", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.28585000", + "longitude": "5.26534000" + }, + { + "id": "77437", + "name": "Blaricum", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.27250000", + "longitude": "5.24167000" + }, + { + "id": "77443", + "name": "Bloemendaal", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.40250000", + "longitude": "4.62222000" + }, + { + "id": "77476", + "name": "Breezand", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.89000000", + "longitude": "4.80417000" + }, + { + "id": "77482", + "name": "Broek in Waterland", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.43417000", + "longitude": "4.99583000" + }, + { + "id": "77483", + "name": "Broek op Langedijk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.67417000", + "longitude": "4.80556000" + }, + { + "id": "77508", + "name": "Bussum", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.27333000", + "longitude": "5.16111000" + }, + { + "id": "77509", + "name": "Callantsoog", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.84000000", + "longitude": "4.69583000" + }, + { + "id": "77514", + "name": "Castricum", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.54833000", + "longitude": "4.66944000" + }, + { + "id": "77521", + "name": "Commandeurs", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.50902000", + "longitude": "4.65843000" + }, + { + "id": "77539", + "name": "De Glip", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.33083000", + "longitude": "4.61111000" + }, + { + "id": "77540", + "name": "De Goorn", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.62583000", + "longitude": "4.94722000" + }, + { + "id": "77549", + "name": "De Koog", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "53.09750000", + "longitude": "4.76111000" + }, + { + "id": "77553", + "name": "De Maer", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.51901000", + "longitude": "4.68171000" + }, + { + "id": "77555", + "name": "De Noord", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.70750000", + "longitude": "4.85139000" + }, + { + "id": "77558", + "name": "De Rijp", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.55667000", + "longitude": "4.84583000" + }, + { + "id": "77570", + "name": "Den Burg", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "53.05417000", + "longitude": "4.79722000" + }, + { + "id": "77573", + "name": "Den Helder", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.95988000", + "longitude": "4.75933000" + }, + { + "id": "77574", + "name": "Den Oever", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.93353000", + "longitude": "5.03079000" + }, + { + "id": "77577", + "name": "Diemen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.33964000", + "longitude": "4.96256000" + }, + { + "id": "77583", + "name": "Dirkshorn", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.75000000", + "longitude": "4.77500000" + }, + { + "id": "77609", + "name": "Driemond", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30583000", + "longitude": "5.01667000" + }, + { + "id": "77618", + "name": "Duivendrecht", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.32941000", + "longitude": "4.93964000" + }, + { + "id": "77624", + "name": "Edam", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.51215000", + "longitude": "5.04805000" + }, + { + "id": "77637", + "name": "Egmond aan Zee", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.62040000", + "longitude": "4.62705000" + }, + { + "id": "77638", + "name": "Egmond-Binnen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.59583000", + "longitude": "4.65556000" + }, + { + "id": "77660", + "name": "Enkhuizen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.70333000", + "longitude": "5.29167000" + }, + { + "id": "77697", + "name": "Gemeente Aalsmeer", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26406000", + "longitude": "4.76532000" + }, + { + "id": "77702", + "name": "Gemeente Alkmaar", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.62890000", + "longitude": "4.74403000" + }, + { + "id": "77709", + "name": "Gemeente Amstelveen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29840000", + "longitude": "4.85767000" + }, + { + "id": "77710", + "name": "Gemeente Amsterdam", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.37302000", + "longitude": "4.89856000" + }, + { + "id": "77721", + "name": "Gemeente Beemster", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.55402000", + "longitude": "4.91810000" + }, + { + "id": "77725", + "name": "Gemeente Bergen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.65783000", + "longitude": "4.67610000" + }, + { + "id": "77730", + "name": "Gemeente Beverwijk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.48273000", + "longitude": "4.65468000" + }, + { + "id": "77732", + "name": "Gemeente Blaricum", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.28548000", + "longitude": "5.26830000" + }, + { + "id": "77733", + "name": "Gemeente Bloemendaal", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.36230000", + "longitude": "4.58968000" + }, + { + "id": "77749", + "name": "Gemeente Castricum", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.55577000", + "longitude": "4.68945000" + }, + { + "id": "77762", + "name": "Gemeente Den Helder", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.92366000", + "longitude": "4.75793000" + }, + { + "id": "77765", + "name": "Gemeente Diemen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.34163000", + "longitude": "4.96805000" + }, + { + "id": "77771", + "name": "Gemeente Drechterland", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.66454000", + "longitude": "5.16569000" + }, + { + "id": "77777", + "name": "Gemeente Edam-Volendam", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.50556000", + "longitude": "5.05920000" + }, + { + "id": "77784", + "name": "Gemeente Enkhuizen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71653000", + "longitude": "5.27615000" + }, + { + "id": "77803", + "name": "Gemeente Haarlem", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.38074000", + "longitude": "4.64400000" + }, + { + "id": "77804", + "name": "Gemeente Haarlemmermeer", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30623000", + "longitude": "4.68418000" + }, + { + "id": "77811", + "name": "Gemeente Heemskerk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.50945000", + "longitude": "4.65386000" + }, + { + "id": "77812", + "name": "Gemeente Heemstede", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.34719000", + "longitude": "4.61838000" + }, + { + "id": "77815", + "name": "Gemeente Heerhugowaard", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.68210000", + "longitude": "4.84363000" + }, + { + "id": "77818", + "name": "Gemeente Heiloo", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.60122000", + "longitude": "4.70945000" + }, + { + "id": "77828", + "name": "Gemeente Hilversum", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22252000", + "longitude": "5.16789000" + }, + { + "id": "77830", + "name": "Gemeente Hollands Kroon", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.84882000", + "longitude": "4.90711000" + }, + { + "id": "77832", + "name": "Gemeente Hoorn", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.64312000", + "longitude": "5.05779000" + }, + { + "id": "77835", + "name": "Gemeente Huizen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29664000", + "longitude": "5.24132000" + }, + { + "id": "77843", + "name": "Gemeente Koggenland", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.64163000", + "longitude": "4.94909000" + }, + { + "id": "77847", + "name": "Gemeente Landsmeer", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.43100000", + "longitude": "4.91570000" + }, + { + "id": "77848", + "name": "Gemeente Langedijk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.69151000", + "longitude": "4.78659000" + }, + { + "id": "77850", + "name": "Gemeente Laren", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.24518000", + "longitude": "5.21701000" + }, + { + "id": "77869", + "name": "Gemeente Medemblik", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.72496000", + "longitude": "5.12204000" + }, + { + "id": "77901", + "name": "Gemeente Oostzaan", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.43780000", + "longitude": "4.87604000" + }, + { + "id": "77902", + "name": "Gemeente Opmeer", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71468000", + "longitude": "4.95334000" + }, + { + "id": "77905", + "name": "Gemeente Ouder-Amstel", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30659000", + "longitude": "4.91432000" + }, + { + "id": "77912", + "name": "Gemeente Purmerend", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.50515000", + "longitude": "4.95243000" + }, + { + "id": "77929", + "name": "Gemeente Schagen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.78823000", + "longitude": "4.79965000" + }, + { + "id": "77945", + "name": "Gemeente Stede Broec", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.69617000", + "longitude": "5.22389000" + }, + { + "id": "77951", + "name": "Gemeente Texel", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "53.07883000", + "longitude": "4.81166000" + }, + { + "id": "77961", + "name": "Gemeente Uitgeest", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.52855000", + "longitude": "4.71176000" + }, + { + "id": "77962", + "name": "Gemeente Uithoorn", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23999000", + "longitude": "4.83072000" + }, + { + "id": "77972", + "name": "Gemeente Velsen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.45182000", + "longitude": "4.63211000" + }, + { + "id": "77987", + "name": "Gemeente Waterland", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.43760000", + "longitude": "5.01371000" + }, + { + "id": "77989", + "name": "Gemeente Weesp", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30575000", + "longitude": "5.04152000" + }, + { + "id": "77998", + "name": "Gemeente Wijdemeren", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22756000", + "longitude": "5.08445000" + }, + { + "id": "78003", + "name": "Gemeente Wormerland", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.49700000", + "longitude": "4.83364000" + }, + { + "id": "78005", + "name": "Gemeente Zaanstad", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.45308000", + "longitude": "4.81253000" + }, + { + "id": "78007", + "name": "Gemeente Zandvoort", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.35769000", + "longitude": "4.54388000" + }, + { + "id": "78039", + "name": "Gooise Meren", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29735000", + "longitude": "5.13371000" + }, + { + "id": "78081", + "name": "Haarlem", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.38084000", + "longitude": "4.63683000" + }, + { + "id": "78085", + "name": "Halfweg", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.38250000", + "longitude": "4.75417000" + }, + { + "id": "78094", + "name": "Harenkarspel", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.73416000", + "longitude": "4.77682000" + }, + { + "id": "78110", + "name": "Heemskerk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.51108000", + "longitude": "4.67165000" + }, + { + "id": "78111", + "name": "Heemstede", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.34992000", + "longitude": "4.62301000" + }, + { + "id": "78116", + "name": "Heerhugowaard", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.67144000", + "longitude": "4.84862000" + }, + { + "id": "78130", + "name": "Heiloo", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.60252000", + "longitude": "4.68815000" + }, + { + "id": "78138", + "name": "Hem", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.66083000", + "longitude": "5.18333000" + }, + { + "id": "78144", + "name": "Hensbroek", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.65833000", + "longitude": "4.88472000" + }, + { + "id": "78159", + "name": "Hilversum", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22333000", + "longitude": "5.17639000" + }, + { + "id": "78160", + "name": "Hilversumse Meent", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.27115000", + "longitude": "5.13729000" + }, + { + "id": "78161", + "name": "Hippolytushoef", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.90750000", + "longitude": "4.96250000" + }, + { + "id": "78166", + "name": "Hofgeest", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.44333000", + "longitude": "4.65833000" + }, + { + "id": "78175", + "name": "Hoofddorp", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30250000", + "longitude": "4.68889000" + }, + { + "id": "78185", + "name": "Hoogwoud", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71583000", + "longitude": "4.93889000" + }, + { + "id": "78186", + "name": "Hoorn", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.64250000", + "longitude": "5.05972000" + }, + { + "id": "78192", + "name": "Huizen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29917000", + "longitude": "5.24167000" + }, + { + "id": "78203", + "name": "Ilpendam", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.46333000", + "longitude": "4.95000000" + }, + { + "id": "78210", + "name": "Kadoelen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.41750000", + "longitude": "4.90561000" + }, + { + "id": "78227", + "name": "Kerkelanden", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21755000", + "longitude": "5.13575000" + }, + { + "id": "78251", + "name": "Kortenhoef", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23917000", + "longitude": "5.10694000" + }, + { + "id": "78261", + "name": "Kudelstaart", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23417000", + "longitude": "4.75139000" + }, + { + "id": "78268", + "name": "Landsmeer", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.43083000", + "longitude": "4.91528000" + }, + { + "id": "78269", + "name": "Langeheit", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.49200000", + "longitude": "4.75849000" + }, + { + "id": "78274", + "name": "Laren", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25667000", + "longitude": "5.22778000" + }, + { + "id": "78307", + "name": "Limmen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.56917000", + "longitude": "4.69444000" + }, + { + "id": "78313", + "name": "Lisserbroek", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25667000", + "longitude": "4.57222000" + }, + { + "id": "78328", + "name": "Lutjebroek", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.69750000", + "longitude": "5.20417000" + }, + { + "id": "78352", + "name": "Marken", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.45833000", + "longitude": "5.10278000" + }, + { + "id": "78365", + "name": "Medemblik", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.77167000", + "longitude": "5.10556000" + }, + { + "id": "78394", + "name": "Middenbeemster", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.54917000", + "longitude": "4.91250000" + }, + { + "id": "78395", + "name": "Middenmeer", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.80667000", + "longitude": "4.99861000" + }, + { + "id": "78397", + "name": "Midwoud", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71667000", + "longitude": "5.07500000" + }, + { + "id": "78407", + "name": "Monnickendam", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.45833000", + "longitude": "5.03750000" + }, + { + "id": "78412", + "name": "Muiden", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.33000000", + "longitude": "5.06944000" + }, + { + "id": "78413", + "name": "Muiderberg", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.32583000", + "longitude": "5.12083000" + }, + { + "id": "78417", + "name": "Naarden", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29583000", + "longitude": "5.16250000" + }, + { + "id": "78434", + "name": "Nieuw-Loosdrecht", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19917000", + "longitude": "5.13889000" + }, + { + "id": "78440", + "name": "Nieuwe-Niedorp", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.74000000", + "longitude": "4.89861000" + }, + { + "id": "78462", + "name": "Noord-Scharwoude", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.69833000", + "longitude": "4.81111000" + }, + { + "id": "78479", + "name": "Obdam", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.67583000", + "longitude": "4.90694000" + }, + { + "id": "78502", + "name": "Onderdijk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.74333000", + "longitude": "5.13750000" + }, + { + "id": "78511", + "name": "Oosteinde", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.27917000", + "longitude": "4.79583000" + }, + { + "id": "78515", + "name": "Oosterblokker", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.66917000", + "longitude": "5.11806000" + }, + { + "id": "78525", + "name": "Oosterzij", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.58500000", + "longitude": "4.70556000" + }, + { + "id": "78526", + "name": "Oosthuizen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.57250000", + "longitude": "4.99583000" + }, + { + "id": "78538", + "name": "Opmeer", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.70667000", + "longitude": "4.94444000" + }, + { + "id": "78540", + "name": "Opperdoes", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.75915000", + "longitude": "5.07534000" + }, + { + "id": "78554", + "name": "Oud-Loosdrecht", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20667000", + "longitude": "5.08056000" + }, + { + "id": "78563", + "name": "Ouderkerk aan de Amstel", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29504000", + "longitude": "4.90746000" + }, + { + "id": "78565", + "name": "Oudeschild", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "53.03917000", + "longitude": "4.84722000" + }, + { + "id": "78568", + "name": "Oudkarspel", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.71583000", + "longitude": "4.80556000" + }, + { + "id": "78574", + "name": "Overveen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.39167000", + "longitude": "4.61389000" + }, + { + "id": "78588", + "name": "Petten", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.76667000", + "longitude": "4.66111000" + }, + { + "id": "78599", + "name": "Purmerend", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.50500000", + "longitude": "4.95972000" + }, + { + "id": "78655", + "name": "Schagen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.78750000", + "longitude": "4.79861000" + }, + { + "id": "78656", + "name": "Schagerbrug", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.80250000", + "longitude": "4.75833000" + }, + { + "id": "78664", + "name": "Schermerhorn", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.60083000", + "longitude": "4.89167000" + }, + { + "id": "78702", + "name": "Sint Pancras", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.66000000", + "longitude": "4.78333000" + }, + { + "id": "78713", + "name": "Slootdorp", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.84250000", + "longitude": "4.97222000" + }, + { + "id": "78731", + "name": "Spierdijk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.65083000", + "longitude": "4.94306000" + }, + { + "id": "78761", + "name": "Stompetoren", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.61333000", + "longitude": "4.82083000" + }, + { + "id": "78801", + "name": "Twisk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.74083000", + "longitude": "5.05278000" + }, + { + "id": "78811", + "name": "Uitgeest", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.52917000", + "longitude": "4.70972000" + }, + { + "id": "78812", + "name": "Uithoorn", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23750000", + "longitude": "4.82639000" + }, + { + "id": "78843", + "name": "Velsen-Zuid", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.46000000", + "longitude": "4.65000000" + }, + { + "id": "78851", + "name": "Vijfhuizen", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.35083000", + "longitude": "4.67778000" + }, + { + "id": "78866", + "name": "Vogelenzang", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.31917000", + "longitude": "4.57778000" + }, + { + "id": "78870", + "name": "Volendam", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.49500000", + "longitude": "5.07083000" + }, + { + "id": "78896", + "name": "Waarland", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.72667000", + "longitude": "4.83194000" + }, + { + "id": "78910", + "name": "Waterakkers", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.50440000", + "longitude": "4.65608000" + }, + { + "id": "78915", + "name": "Weesp", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30750000", + "longitude": "5.04167000" + }, + { + "id": "78945", + "name": "Westwoud", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.68500000", + "longitude": "5.13472000" + }, + { + "id": "78947", + "name": "Wieringerwaard", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.83583000", + "longitude": "4.86528000" + }, + { + "id": "78948", + "name": "Wieringerwerf", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.85083000", + "longitude": "5.02639000" + }, + { + "id": "78951", + "name": "Wijdenes", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.63500000", + "longitude": "5.15694000" + }, + { + "id": "78953", + "name": "Wijk aan Zee", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.49360000", + "longitude": "4.59409000" + }, + { + "id": "78961", + "name": "Winkel", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.75417000", + "longitude": "4.90278000" + }, + { + "id": "78993", + "name": "Zaandam", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.43854000", + "longitude": "4.82643000" + }, + { + "id": "78994", + "name": "Zaandijk", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.47494000", + "longitude": "4.80686000" + }, + { + "id": "78995", + "name": "Zaanstad", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.45313000", + "longitude": "4.81356000" + }, + { + "id": "78998", + "name": "Zandvoort", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.37125000", + "longitude": "4.53306000" + }, + { + "id": "79024", + "name": "Zuid-Scharwoude", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.68667000", + "longitude": "4.80833000" + }, + { + "id": "79033", + "name": "Zwaagdijk-Oost", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.70750000", + "longitude": "5.14028000" + }, + { + "id": "79034", + "name": "Zwaanshoek", + "state_id": 2612, + "state_code": "NH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.31250000", + "longitude": "4.61667000" + }, + { + "id": "77326", + "name": "Almelo", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.35667000", + "longitude": "6.66250000" + }, + { + "id": "77363", + "name": "Baalder", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.58579000", + "longitude": "6.65299000" + }, + { + "id": "77418", + "name": "Berkum", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.52395000", + "longitude": "6.13655000" + }, + { + "id": "77446", + "name": "Blokzijl", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.72667000", + "longitude": "5.96111000" + }, + { + "id": "77455", + "name": "Borgele", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.27630000", + "longitude": "6.14926000" + }, + { + "id": "77459", + "name": "Borne", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30136000", + "longitude": "6.74820000" + }, + { + "id": "77462", + "name": "Boskamp", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.33083000", + "longitude": "6.12778000" + }, + { + "id": "77494", + "name": "Brunnepe", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.56185000", + "longitude": "5.90343000" + }, + { + "id": "77529", + "name": "Dalfsen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.51167000", + "longitude": "6.25694000" + }, + { + "id": "77546", + "name": "De Hoven", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.24901000", + "longitude": "6.14367000" + }, + { + "id": "77566", + "name": "Delden", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26000000", + "longitude": "6.71111000" + }, + { + "id": "77572", + "name": "Den Ham", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.46583000", + "longitude": "6.49583000" + }, + { + "id": "77576", + "name": "Deventer", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25500000", + "longitude": "6.16389000" + }, + { + "id": "77578", + "name": "Diepenheim", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20000000", + "longitude": "6.55556000" + }, + { + "id": "77662", + "name": "Enschede", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21833000", + "longitude": "6.89583000" + }, + { + "id": "77677", + "name": "Flevowijk", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.54583000", + "longitude": "5.91338000" + }, + { + "id": "77679", + "name": "Frankhuis", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.52500000", + "longitude": "6.06806000" + }, + { + "id": "77703", + "name": "Gemeente Almelo", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.34463000", + "longitude": "6.65942000" + }, + { + "id": "77736", + "name": "Gemeente Borne", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.31120000", + "longitude": "6.74404000" + }, + { + "id": "77754", + "name": "Gemeente Dalfsen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.52461000", + "longitude": "6.27214000" + }, + { + "id": "77764", + "name": "Gemeente Deventer", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26927000", + "longitude": "6.23795000" + }, + { + "id": "77766", + "name": "Gemeente Dinkelland", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.37108000", + "longitude": "6.89294000" + }, + { + "id": "77785", + "name": "Gemeente Enschede", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21909000", + "longitude": "6.88041000" + }, + { + "id": "77801", + "name": "Gemeente Haaksbergen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15514000", + "longitude": "6.75404000" + }, + { + "id": "77806", + "name": "Gemeente Hardenberg", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.59312000", + "longitude": "6.53476000" + }, + { + "id": "77819", + "name": "Gemeente Hellendoorn", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.39022000", + "longitude": "6.46434000" + }, + { + "id": "77823", + "name": "Gemeente Hengelo", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25910000", + "longitude": "6.77876000" + }, + { + "id": "77829", + "name": "Gemeente Hof van Twente", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.24341000", + "longitude": "6.59749000" + }, + { + "id": "77839", + "name": "Gemeente Kampen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.56181000", + "longitude": "5.91535000" + }, + { + "id": "77864", + "name": "Gemeente Losser", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29819000", + "longitude": "7.00106000" + }, + { + "id": "77896", + "name": "Gemeente Oldenzaal", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30750000", + "longitude": "6.90750000" + }, + { + "id": "77897", + "name": "Gemeente Olst-Wijhe", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.35734000", + "longitude": "6.13481000" + }, + { + "id": "77898", + "name": "Gemeente Ommen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.51659000", + "longitude": "6.45631000" + }, + { + "id": "77914", + "name": "Gemeente Raalte", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.40299000", + "longitude": "6.28773000" + }, + { + "id": "77922", + "name": "Gemeente Rijssen-Holten", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29000000", + "longitude": "6.42515000" + }, + { + "id": "77944", + "name": "Gemeente Staphorst", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.63241000", + "longitude": "6.20737000" + }, + { + "id": "77947", + "name": "Gemeente Steenwijkerland", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.75587000", + "longitude": "6.04028000" + }, + { + "id": "77956", + "name": "Gemeente Tubbergen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.40451000", + "longitude": "6.78241000" + }, + { + "id": "77957", + "name": "Gemeente Twenterand", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.44974000", + "longitude": "6.56122000" + }, + { + "id": "77996", + "name": "Gemeente Wierden", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.34247000", + "longitude": "6.55795000" + }, + { + "id": "78016", + "name": "Gemeente Zwartewaterland", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.60240000", + "longitude": "6.07402000" + }, + { + "id": "78018", + "name": "Gemeente Zwolle", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.51264000", + "longitude": "6.09359000" + }, + { + "id": "78032", + "name": "Giethoorn", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.74000000", + "longitude": "6.07917000" + }, + { + "id": "78040", + "name": "Goor", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23333000", + "longitude": "6.58611000" + }, + { + "id": "78050", + "name": "Grafhorst", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.58250000", + "longitude": "5.93333000" + }, + { + "id": "78075", + "name": "Haaksbergen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15667000", + "longitude": "6.73889000" + }, + { + "id": "78080", + "name": "Haarle", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.35917000", + "longitude": "6.38056000" + }, + { + "id": "78091", + "name": "Hardenberg", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.57583000", + "longitude": "6.61944000" + }, + { + "id": "78099", + "name": "Hasselt", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.59267000", + "longitude": "6.09527000" + }, + { + "id": "78131", + "name": "Heino", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.43661000", + "longitude": "6.23282000" + }, + { + "id": "78140", + "name": "Hengelo", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26583000", + "longitude": "6.79306000" + }, + { + "id": "78142", + "name": "Hengevelde", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19917000", + "longitude": "6.63611000" + }, + { + "id": "78150", + "name": "Het Oostrik", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25000000", + "longitude": "6.21667000" + }, + { + "id": "78213", + "name": "Kampen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.55500000", + "longitude": "5.91111000" + }, + { + "id": "78236", + "name": "Klein Driene", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26935000", + "longitude": "6.81613000" + }, + { + "id": "78323", + "name": "Losser", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26083000", + "longitude": "7.00417000" + }, + { + "id": "78342", + "name": "Magele", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.46917000", + "longitude": "6.52083000" + }, + { + "id": "78351", + "name": "Markelo", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23500000", + "longitude": "6.49861000" + }, + { + "id": "78375", + "name": "Mekkelholt", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23645000", + "longitude": "6.89058000" + }, + { + "id": "78448", + "name": "Nieuwoord", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.46667000", + "longitude": "6.55000000" + }, + { + "id": "78456", + "name": "Nijrees", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.33500000", + "longitude": "6.66389000" + }, + { + "id": "78496", + "name": "Oldemarkt", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.82083000", + "longitude": "5.97500000" + }, + { + "id": "78497", + "name": "Oldenzaal", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.31333000", + "longitude": "6.92917000" + }, + { + "id": "78498", + "name": "Olst", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.33750000", + "longitude": "6.10972000" + }, + { + "id": "78500", + "name": "Ommen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.52083000", + "longitude": "6.42083000" + }, + { + "id": "78517", + "name": "Oosterholt", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.55917000", + "longitude": "5.95556000" + }, + { + "id": "78522", + "name": "Oostermeenthe", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.79319000", + "longitude": "6.13138000" + }, + { + "id": "78530", + "name": "Ootmarsum", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.40833000", + "longitude": "6.90139000" + }, + { + "id": "78582", + "name": "Pathmos", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21397000", + "longitude": "6.87555000" + }, + { + "id": "78589", + "name": "Pierik", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.50141000", + "longitude": "6.11170000" + }, + { + "id": "78604", + "name": "Raalte", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.38583000", + "longitude": "6.27500000" + }, + { + "id": "78640", + "name": "Rossum", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.35167000", + "longitude": "6.92222000" + }, + { + "id": "78658", + "name": "Schalkhaar", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26833000", + "longitude": "6.19444000" + }, + { + "id": "78697", + "name": "Sint Jansklooster", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.67750000", + "longitude": "6.00556000" + }, + { + "id": "78745", + "name": "Staphorst", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.64500000", + "longitude": "6.21111000" + }, + { + "id": "78751", + "name": "Steenwijk", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.78750000", + "longitude": "6.12083000" + }, + { + "id": "78752", + "name": "Steenwijkerwold", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.80417000", + "longitude": "6.06389000" + }, + { + "id": "78792", + "name": "Tubbergen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.40750000", + "longitude": "6.78472000" + }, + { + "id": "78795", + "name": "Tuk", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.79667000", + "longitude": "6.09444000" + }, + { + "id": "78797", + "name": "Twekkelerveld", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23064000", + "longitude": "6.86004000" + }, + { + "id": "78872", + "name": "Vollenhove", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.68083000", + "longitude": "5.95417000" + }, + { + "id": "78886", + "name": "Vriezenveen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.40833000", + "longitude": "6.62222000" + }, + { + "id": "78887", + "name": "Vroomshoop", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.46083000", + "longitude": "6.56528000" + }, + { + "id": "78936", + "name": "Westerhaar-Vriezenveensewijk", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.45583000", + "longitude": "6.62361000" + }, + { + "id": "78946", + "name": "Wierden", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.35917000", + "longitude": "6.59306000" + }, + { + "id": "78952", + "name": "Wijhe", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.38667000", + "longitude": "6.13472000" + }, + { + "id": "78980", + "name": "Woolde", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.27210000", + "longitude": "6.75891000" + }, + { + "id": "78981", + "name": "Wooldrik", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21667000", + "longitude": "6.91667000" + }, + { + "id": "79023", + "name": "Zuid-Berghuizen", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30083000", + "longitude": "6.93333000" + }, + { + "id": "79036", + "name": "Zwolle", + "state_id": 2618, + "state_code": "OV", + "country_id": 156, + "country_code": "NL", + "latitude": "52.51250000", + "longitude": "6.09444000" + }, + { + "id": "77298", + "name": "'s-Gravenland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92336000", + "longitude": "4.55315000" + }, + { + "id": "77299", + "name": "'s-Gravenzande", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00167000", + "longitude": "4.16528000" + }, + { + "id": "77317", + "name": "Adegeest", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13621000", + "longitude": "4.45249000" + }, + { + "id": "77322", + "name": "Alblasserdam", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.86583000", + "longitude": "4.66111000" + }, + { + "id": "77330", + "name": "Alphen aan den Rijn", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12917000", + "longitude": "4.65546000" + }, + { + "id": "77336", + "name": "Ammerstol", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92750000", + "longitude": "4.80833000" + }, + { + "id": "77354", + "name": "Arkel", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.86417000", + "longitude": "4.99444000" + }, + { + "id": "77379", + "name": "Barendrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85667000", + "longitude": "4.53472000" + }, + { + "id": "77403", + "name": "Benthuizen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07750000", + "longitude": "4.54444000" + }, + { + "id": "77411", + "name": "Bergschenhoek", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99000000", + "longitude": "4.49861000" + }, + { + "id": "77412", + "name": "Bergstoep", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92250000", + "longitude": "4.78472000" + }, + { + "id": "77414", + "name": "Berkel en Rodenrijs", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99313000", + "longitude": "4.47865000" + }, + { + "id": "77416", + "name": "Berkenwoude", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.94500000", + "longitude": "4.70694000" + }, + { + "id": "77432", + "name": "Binnenhof", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.16418000", + "longitude": "4.53644000" + }, + { + "id": "77439", + "name": "Bleiswijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01083000", + "longitude": "4.53194000" + }, + { + "id": "77440", + "name": "Bleskensgraaf", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87250000", + "longitude": "4.78333000" + }, + { + "id": "77444", + "name": "Bloemendaal", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02878000", + "longitude": "4.69440000" + }, + { + "id": "77445", + "name": "Bloemhof", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89723000", + "longitude": "4.49943000" + }, + { + "id": "77448", + "name": "Bodegraven", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08250000", + "longitude": "4.75000000" + }, + { + "id": "77449", + "name": "Bodegraven-Reeuwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06541000", + "longitude": "4.76634000" + }, + { + "id": "77451", + "name": "Bolnes", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89500000", + "longitude": "4.57917000" + }, + { + "id": "77463", + "name": "Boskoop", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07500000", + "longitude": "4.65556000" + }, + { + "id": "77465", + "name": "Boven-Hardinxveld", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82333000", + "longitude": "4.88194000" + }, + { + "id": "77480", + "name": "Brielle", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90167000", + "longitude": "4.16250000" + }, + { + "id": "77511", + "name": "Capelle aan den IJssel", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92917000", + "longitude": "4.57778000" + }, + { + "id": "77512", + "name": "Capelle-West", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91667000", + "longitude": "4.56667000" + }, + { + "id": "77513", + "name": "Carnisse", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88932000", + "longitude": "4.47758000" + }, + { + "id": "77547", + "name": "De Kieviet", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12333000", + "longitude": "4.35839000" + }, + { + "id": "77551", + "name": "De Lier", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97500000", + "longitude": "4.24861000" + }, + { + "id": "77556", + "name": "De Peulen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82362000", + "longitude": "4.82165000" + }, + { + "id": "77567", + "name": "Delfshaven", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90488000", + "longitude": "4.45315000" + }, + { + "id": "77568", + "name": "Delft", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00667000", + "longitude": "4.35556000" + }, + { + "id": "77584", + "name": "Dirksland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.74917000", + "longitude": "4.10000000" + }, + { + "id": "77600", + "name": "Dordrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81000000", + "longitude": "4.67361000" + }, + { + "id": "77605", + "name": "Driebruggen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04417000", + "longitude": "4.80000000" + }, + { + "id": "77608", + "name": "Driemanspolder", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05176000", + "longitude": "4.48504000" + }, + { + "id": "77615", + "name": "Duindorp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.09078000", + "longitude": "4.26038000" + }, + { + "id": "77616", + "name": "Duinzigt", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10485000", + "longitude": "4.32494000" + }, + { + "id": "77669", + "name": "Essesteijn", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08534000", + "longitude": "4.37263000" + }, + { + "id": "77674", + "name": "Feijenoord", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91169000", + "longitude": "4.50645000" + }, + { + "id": "77700", + "name": "Gemeente Alblasserdam", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85985000", + "longitude": "4.66321000" + }, + { + "id": "77701", + "name": "Gemeente Albrandswaard", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85792000", + "longitude": "4.40833000" + }, + { + "id": "77705", + "name": "Gemeente Alphen aan den Rijn", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12974000", + "longitude": "4.68892000" + }, + { + "id": "77718", + "name": "Gemeente Barendrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84974000", + "longitude": "4.52540000" + }, + { + "id": "77741", + "name": "Gemeente Brielle", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88819000", + "longitude": "4.18481000" + }, + { + "id": "77748", + "name": "Gemeente Capelle aan den IJssel", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93567000", + "longitude": "4.57819000" + }, + { + "id": "77759", + "name": "Gemeente Delft", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99968000", + "longitude": "4.36405000" + }, + { + "id": "77761", + "name": "Gemeente Den Haag", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06866000", + "longitude": "4.28635000" + }, + { + "id": "77770", + "name": "Gemeente Dordrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.79901000", + "longitude": "4.74159000" + }, + { + "id": "77794", + "name": "Gemeente Goeree-Overflakkee", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.75351000", + "longitude": "4.11264000" + }, + { + "id": "77797", + "name": "Gemeente Gorinchem", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83873000", + "longitude": "4.97713000" + }, + { + "id": "77798", + "name": "Gemeente Gouda", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01917000", + "longitude": "4.70790000" + }, + { + "id": "77808", + "name": "Gemeente Hardinxveld-Giessendam", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82594000", + "longitude": "4.86428000" + }, + { + "id": "77820", + "name": "Gemeente Hellevoetsluis", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83333000", + "longitude": "4.13333000" + }, + { + "id": "77822", + "name": "Gemeente Hendrik-Ido-Ambacht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84273000", + "longitude": "4.63975000" + }, + { + "id": "77826", + "name": "Gemeente Hillegom", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29616000", + "longitude": "4.57822000" + }, + { + "id": "77838", + "name": "Gemeente Kaag en Braassem", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19393000", + "longitude": "4.65516000" + }, + { + "id": "77841", + "name": "Gemeente Katwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19029000", + "longitude": "4.42129000" + }, + { + "id": "77844", + "name": "Gemeente Krimpen aan den IJssel", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91458000", + "longitude": "4.58819000" + }, + { + "id": "77849", + "name": "Gemeente Lansingerland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00389000", + "longitude": "4.51088000" + }, + { + "id": "77852", + "name": "Gemeente Leiden", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15274000", + "longitude": "4.48360000" + }, + { + "id": "77853", + "name": "Gemeente Leiderdorp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15707000", + "longitude": "4.54318000" + }, + { + "id": "77854", + "name": "Gemeente Leidschendam-Voorburg", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07833000", + "longitude": "4.40139000" + }, + { + "id": "77859", + "name": "Gemeente Lisse", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25601000", + "longitude": "4.54526000" + }, + { + "id": "77867", + "name": "Gemeente Maassluis", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92332000", + "longitude": "4.24722000" + }, + { + "id": "77873", + "name": "Gemeente Midden-Delfland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.96528000", + "longitude": "4.30525000" + }, + { + "id": "77883", + "name": "Gemeente Nieuwkoop", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.17198000", + "longitude": "4.78006000" + }, + { + "id": "77889", + "name": "Gemeente Noordwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26953000", + "longitude": "4.46354000" + }, + { + "id": "77892", + "name": "Gemeente Oegstgeest", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18256000", + "longitude": "4.46676000" + }, + { + "id": "77908", + "name": "Gemeente Papendrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83175000", + "longitude": "4.69125000" + }, + { + "id": "77911", + "name": "Gemeente Pijnacker-Nootdorp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02615000", + "longitude": "4.41944000" + }, + { + "id": "77921", + "name": "Gemeente Ridderkerk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.86969000", + "longitude": "4.59785000" + }, + { + "id": "77923", + "name": "Gemeente Rijswijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.03490000", + "longitude": "4.32785000" + }, + { + "id": "77926", + "name": "Gemeente Rotterdam", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88246000", + "longitude": "4.28784000" + }, + { + "id": "77931", + "name": "Gemeente Schiedam", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92650000", + "longitude": "4.38675000" + }, + { + "id": "77937", + "name": "Gemeente Sliedrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82999000", + "longitude": "4.77191000" + }, + { + "id": "77952", + "name": "Gemeente Teylingen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21556000", + "longitude": "4.50648000" + }, + { + "id": "77975", + "name": "Gemeente Vlaardingen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91754000", + "longitude": "4.32570000" + }, + { + "id": "77979", + "name": "Gemeente Voorschoten", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12533000", + "longitude": "4.44014000" + }, + { + "id": "77984", + "name": "Gemeente Waddinxveen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04247000", + "longitude": "4.64486000" + }, + { + "id": "77986", + "name": "Gemeente Wassenaar", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13791000", + "longitude": "4.37546000" + }, + { + "id": "77993", + "name": "Gemeente Westland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99671000", + "longitude": "4.22729000" + }, + { + "id": "77995", + "name": "Gemeente Westvoorne", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89308000", + "longitude": "4.08922000" + }, + { + "id": "78011", + "name": "Gemeente Zoetermeer", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05954000", + "longitude": "4.48832000" + }, + { + "id": "78012", + "name": "Gemeente Zoeterwoude", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.11410000", + "longitude": "4.51142000" + }, + { + "id": "78013", + "name": "Gemeente Zuidplas", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01574000", + "longitude": "4.61048000" + }, + { + "id": "78017", + "name": "Gemeente Zwijndrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82399000", + "longitude": "4.61258000" + }, + { + "id": "78029", + "name": "Giessenburg", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85083000", + "longitude": "4.89028000" + }, + { + "id": "78030", + "name": "Giessendam", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83257000", + "longitude": "4.83583000" + }, + { + "id": "78036", + "name": "Goedereede", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81750000", + "longitude": "3.98056000" + }, + { + "id": "78041", + "name": "Gorinchem", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83652000", + "longitude": "4.97243000" + }, + { + "id": "78044", + "name": "Gouda", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01667000", + "longitude": "4.70833000" + }, + { + "id": "78045", + "name": "Gouderak", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.98417000", + "longitude": "4.67778000" + }, + { + "id": "78046", + "name": "Goudswaard", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.79417000", + "longitude": "4.27639000" + }, + { + "id": "78048", + "name": "Gouwsluis", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.11943000", + "longitude": "4.66899000" + }, + { + "id": "78060", + "name": "Groenswaard", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05154000", + "longitude": "4.64541000" + }, + { + "id": "78065", + "name": "Groot IJsselmonde", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88264000", + "longitude": "4.54937000" + }, + { + "id": "78066", + "name": "Groot-Ammers", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92333000", + "longitude": "4.82361000" + }, + { + "id": "78083", + "name": "Haastrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00074000", + "longitude": "4.77639000" + }, + { + "id": "78117", + "name": "Heerjansdam", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83583000", + "longitude": "4.56389000" + }, + { + "id": "78128", + "name": "Heijplaat", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89333000", + "longitude": "4.42083000" + }, + { + "id": "78134", + "name": "Hellevoetsluis", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83333000", + "longitude": "4.13333000" + }, + { + "id": "78139", + "name": "Hendrik-Ido-Ambacht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84417000", + "longitude": "4.63889000" + }, + { + "id": "78157", + "name": "Hillegom", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.29083000", + "longitude": "4.58333000" + }, + { + "id": "78163", + "name": "Hoek van Holland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97750000", + "longitude": "4.13333000" + }, + { + "id": "78167", + "name": "Hoge Mors", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15616000", + "longitude": "4.46025000" + }, + { + "id": "78174", + "name": "Honselersdijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00665000", + "longitude": "4.22441000" + }, + { + "id": "78176", + "name": "Hoogblokland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87500000", + "longitude": "4.97639000" + }, + { + "id": "78184", + "name": "Hoogmade", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.16917000", + "longitude": "4.58194000" + }, + { + "id": "78216", + "name": "Katendrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90074000", + "longitude": "4.48254000" + }, + { + "id": "78218", + "name": "Katwijk aan den Rijn", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19417000", + "longitude": "4.42222000" + }, + { + "id": "78217", + "name": "Katwijk aan Zee", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20333000", + "longitude": "4.39861000" + }, + { + "id": "78226", + "name": "Kerkehout", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.11018000", + "longitude": "4.37957000" + }, + { + "id": "78232", + "name": "Kijkduin", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06765000", + "longitude": "4.22188000" + }, + { + "id": "78233", + "name": "Klaaswaal", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.77000000", + "longitude": "4.44583000" + }, + { + "id": "78249", + "name": "Kop van Zuid", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90553000", + "longitude": "4.48706000" + }, + { + "id": "78256", + "name": "Krimpen aan den IJssel", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91667000", + "longitude": "4.60278000" + }, + { + "id": "78257", + "name": "Krimpenerwaard", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.98171000", + "longitude": "4.77828000" + }, + { + "id": "78263", + "name": "Kwintsheul", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01333000", + "longitude": "4.25556000" + }, + { + "id": "78285", + "name": "Leiden", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15833000", + "longitude": "4.49306000" + }, + { + "id": "78286", + "name": "Leiderdorp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15833000", + "longitude": "4.52917000" + }, + { + "id": "78287", + "name": "Leimuiden", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22417000", + "longitude": "4.66944000" + }, + { + "id": "78303", + "name": "Liesveld", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93250000", + "longitude": "4.83194000" + }, + { + "id": "78312", + "name": "Lisse", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26000000", + "longitude": "4.55694000" + }, + { + "id": "78318", + "name": "Lombardijen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87380000", + "longitude": "4.52192000" + }, + { + "id": "78336", + "name": "Maasdijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95917000", + "longitude": "4.21389000" + }, + { + "id": "78338", + "name": "Maasland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93417000", + "longitude": "4.27222000" + }, + { + "id": "78339", + "name": "Maassluis", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92333000", + "longitude": "4.25000000" + }, + { + "id": "78382", + "name": "Merenwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.17655000", + "longitude": "4.50885000" + }, + { + "id": "78389", + "name": "Middelharnis", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.75750000", + "longitude": "4.16528000" + }, + { + "id": "78391", + "name": "Middelsluis", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.74250000", + "longitude": "4.44167000" + }, + { + "id": "78400", + "name": "Mijnsheerenland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.79667000", + "longitude": "4.48750000" + }, + { + "id": "78408", + "name": "Monster", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02583000", + "longitude": "4.17500000" + }, + { + "id": "78416", + "name": "Naaldwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99417000", + "longitude": "4.20972000" + }, + { + "id": "78419", + "name": "Neder-Hardinxveld", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82879000", + "longitude": "4.85489000" + }, + { + "id": "78430", + "name": "Nieuw-Beijerland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81250000", + "longitude": "4.34306000" + }, + { + "id": "78433", + "name": "Nieuw-Lekkerland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88915000", + "longitude": "4.68653000" + }, + { + "id": "78443", + "name": "Nieuwenhoorn", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85417000", + "longitude": "4.14306000" + }, + { + "id": "78445", + "name": "Nieuwkoop", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15083000", + "longitude": "4.77639000" + }, + { + "id": "78449", + "name": "Nieuwpoort", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93583000", + "longitude": "4.86806000" + }, + { + "id": "78450", + "name": "Nieuwveen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19667000", + "longitude": "4.75694000" + }, + { + "id": "78458", + "name": "Nissewaard", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83716000", + "longitude": "4.27540000" + }, + { + "id": "78461", + "name": "Noord-Hofland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.14059000", + "longitude": "4.45864000" + }, + { + "id": "78465", + "name": "Noordeinde", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01667000", + "longitude": "4.48333000" + }, + { + "id": "78466", + "name": "Noordeloos", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90333000", + "longitude": "4.94167000" + }, + { + "id": "78470", + "name": "Noordwijk-Binnen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.23400000", + "longitude": "4.44474000" + }, + { + "id": "78471", + "name": "Noordwijkerhout", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.26167000", + "longitude": "4.49306000" + }, + { + "id": "78475", + "name": "Numansdorp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.73167000", + "longitude": "4.43750000" + }, + { + "id": "78485", + "name": "Oegstgeest", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18000000", + "longitude": "4.46944000" + }, + { + "id": "78501", + "name": "Ommoord", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95951000", + "longitude": "4.54533000" + }, + { + "id": "78509", + "name": "Oostdorp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.14994000", + "longitude": "4.39319000" + }, + { + "id": "78529", + "name": "Oostvoorne", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91250000", + "longitude": "4.09861000" + }, + { + "id": "78541", + "name": "Oranjewijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04922000", + "longitude": "4.65374000" + }, + { + "id": "78552", + "name": "Oud-Beijerland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82417000", + "longitude": "4.41250000" + }, + { + "id": "78556", + "name": "Ouddorp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81167000", + "longitude": "3.93472000" + }, + { + "id": "78559", + "name": "Oude Wetering", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21417000", + "longitude": "4.64444000" + }, + { + "id": "78564", + "name": "Ouderkerk aan den IJssel", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93417000", + "longitude": "4.63611000" + }, + { + "id": "78573", + "name": "Overschie", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93863000", + "longitude": "4.42766000" + }, + { + "id": "78575", + "name": "Palenstein", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05579000", + "longitude": "4.50869000" + }, + { + "id": "78578", + "name": "Papendrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.83167000", + "longitude": "4.68750000" + }, + { + "id": "78579", + "name": "Papenveer", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18500000", + "longitude": "4.72500000" + }, + { + "id": "78586", + "name": "Pendrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87152000", + "longitude": "4.46901000" + }, + { + "id": "78587", + "name": "Pernis", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88833000", + "longitude": "4.38889000" + }, + { + "id": "78590", + "name": "Piershil", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.79333000", + "longitude": "4.31389000" + }, + { + "id": "78591", + "name": "Pijnacker", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01954000", + "longitude": "4.42946000" + }, + { + "id": "78592", + "name": "Poeldijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02417000", + "longitude": "4.21944000" + }, + { + "id": "78611", + "name": "Reeuwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04667000", + "longitude": "4.72500000" + }, + { + "id": "78620", + "name": "Rhoon", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85750000", + "longitude": "4.42222000" + }, + { + "id": "78621", + "name": "Ridderkerk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87250000", + "longitude": "4.60278000" + }, + { + "id": "78624", + "name": "Rijnsaterwoude", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19583000", + "longitude": "4.67083000" + }, + { + "id": "78625", + "name": "Rijnsburg", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19000000", + "longitude": "4.44167000" + }, + { + "id": "78626", + "name": "Rijpwetering", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19250000", + "longitude": "4.58333000" + }, + { + "id": "78628", + "name": "Rijsoord", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.85083000", + "longitude": "4.59583000" + }, + { + "id": "78630", + "name": "Rijswijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.03634000", + "longitude": "4.32501000" + }, + { + "id": "78632", + "name": "Rockanje", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87167000", + "longitude": "4.07083000" + }, + { + "id": "78634", + "name": "Roelofarendsveen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20333000", + "longitude": "4.63333000" + }, + { + "id": "78642", + "name": "Rotterdam", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92250000", + "longitude": "4.47917000" + }, + { + "id": "78644", + "name": "Rozenburg", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.90417000", + "longitude": "4.24861000" + }, + { + "id": "78647", + "name": "Rugge", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89921000", + "longitude": "4.15231000" + }, + { + "id": "78654", + "name": "Sassenheim", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22500000", + "longitude": "4.52222000" + }, + { + "id": "78663", + "name": "Schelluinen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84333000", + "longitude": "4.92639000" + }, + { + "id": "78667", + "name": "Scheveningen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10461000", + "longitude": "4.27557000" + }, + { + "id": "78668", + "name": "Schiebroek", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95838000", + "longitude": "4.47124000" + }, + { + "id": "78669", + "name": "Schiedam", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91917000", + "longitude": "4.38889000" + }, + { + "id": "78677", + "name": "Schipluiden", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97583000", + "longitude": "4.31389000" + }, + { + "id": "78680", + "name": "Schoonhoven", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.94750000", + "longitude": "4.84861000" + }, + { + "id": "78710", + "name": "Sliedrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.82083000", + "longitude": "4.77639000" + }, + { + "id": "78711", + "name": "Slikkerveer", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88531000", + "longitude": "4.60494000" + }, + { + "id": "78726", + "name": "Spangen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91688000", + "longitude": "4.43539000" + }, + { + "id": "78733", + "name": "Spijkenisse", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.84500000", + "longitude": "4.32917000" + }, + { + "id": "78734", + "name": "Spoorwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05347000", + "longitude": "4.31339000" + }, + { + "id": "78746", + "name": "Statenkwartier", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.09311000", + "longitude": "4.27577000" + }, + { + "id": "78755", + "name": "Stein", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00333000", + "longitude": "4.78194000" + }, + { + "id": "78760", + "name": "Stolwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97250000", + "longitude": "4.77361000" + }, + { + "id": "78763", + "name": "Strijen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.74521000", + "longitude": "4.55083000" + }, + { + "id": "78764", + "name": "Strijp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.03083000", + "longitude": "4.30139000" + }, + { + "id": "78771", + "name": "Terbregge", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95328000", + "longitude": "4.51537000" + }, + { + "id": "78779", + "name": "The Hague", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07667000", + "longitude": "4.29861000" + }, + { + "id": "78794", + "name": "Tuindorp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.93032000", + "longitude": "4.37840000" + }, + { + "id": "78828", + "name": "Valkenburg", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18000000", + "longitude": "4.43194000" + }, + { + "id": "78850", + "name": "Vierpolders", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87917000", + "longitude": "4.17917000" + }, + { + "id": "78855", + "name": "Vlaardingen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.91250000", + "longitude": "4.34167000" + }, + { + "id": "78861", + "name": "Vlietwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12436000", + "longitude": "4.45736000" + }, + { + "id": "78868", + "name": "Vogelwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07631000", + "longitude": "4.24790000" + }, + { + "id": "78873", + "name": "Vondelwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05497000", + "longitude": "4.65314000" + }, + { + "id": "78874", + "name": "Voorburg", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07417000", + "longitude": "4.35972000" + }, + { + "id": "78875", + "name": "Voorhout", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.22167000", + "longitude": "4.48472000" + }, + { + "id": "78876", + "name": "Voorschoten", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12750000", + "longitude": "4.44861000" + }, + { + "id": "78883", + "name": "Vreewijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.88428000", + "longitude": "4.51967000" + }, + { + "id": "78895", + "name": "Waarder", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06083000", + "longitude": "4.82083000" + }, + { + "id": "78897", + "name": "Waddinxveen", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04500000", + "longitude": "4.65139000" + }, + { + "id": "78906", + "name": "Warmond", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19667000", + "longitude": "4.50278000" + }, + { + "id": "78909", + "name": "Wassenaar", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.14583000", + "longitude": "4.40278000" + }, + { + "id": "78913", + "name": "Weerestein", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.30381000", + "longitude": "4.58861000" + }, + { + "id": "78916", + "name": "Weijpoort", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08167000", + "longitude": "4.80278000" + }, + { + "id": "78944", + "name": "Westmaas", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.78667000", + "longitude": "4.47500000" + }, + { + "id": "78983", + "name": "Woubrugge", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.17000000", + "longitude": "4.63611000" + }, + { + "id": "78990", + "name": "Ypenburg", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04098000", + "longitude": "4.36981000" + }, + { + "id": "79011", + "name": "Zevenhoven", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18167000", + "longitude": "4.77917000" + }, + { + "id": "79016", + "name": "Zoetermeer", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05750000", + "longitude": "4.49306000" + }, + { + "id": "79017", + "name": "Zoeterwoude-Dorp", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12000000", + "longitude": "4.49583000" + }, + { + "id": "79022", + "name": "Zuid-Beijerland", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.75083000", + "longitude": "4.36806000" + }, + { + "id": "79029", + "name": "Zuidwijk", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.87532000", + "longitude": "4.48514000" + }, + { + "id": "79035", + "name": "Zwijndrecht", + "state_id": 2614, + "state_code": "ZH", + "country_id": 156, + "country_code": "NL", + "latitude": "51.81750000", + "longitude": "4.63333000" + }, + { + "id": "77314", + "name": "Abcoude", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.27250000", + "longitude": "4.96944000" + }, + { + "id": "77334", + "name": "Amerongen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.00250000", + "longitude": "5.45972000" + }, + { + "id": "77335", + "name": "Amersfoort", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15500000", + "longitude": "5.38750000" + }, + { + "id": "77360", + "name": "Austerlitz", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08000000", + "longitude": "5.31528000" + }, + { + "id": "77364", + "name": "Baambrugge", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.24583000", + "longitude": "4.98889000" + }, + { + "id": "77368", + "name": "Baarn", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21167000", + "longitude": "5.28750000" + }, + { + "id": "77461", + "name": "Bosch en Duin", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.11667000", + "longitude": "5.24167000" + }, + { + "id": "77479", + "name": "Breukelen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.17417000", + "longitude": "5.00139000" + }, + { + "id": "77503", + "name": "Bunnik", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06667000", + "longitude": "5.19861000" + }, + { + "id": "77504", + "name": "Bunschoten", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.24304000", + "longitude": "5.37884000" + }, + { + "id": "77524", + "name": "Cothen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99667000", + "longitude": "5.30833000" + }, + { + "id": "77532", + "name": "De Bilt", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.11000000", + "longitude": "5.18056000" + }, + { + "id": "77542", + "name": "De Hagen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99381000", + "longitude": "5.10263000" + }, + { + "id": "77560", + "name": "De Uithof", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08526000", + "longitude": "5.17456000" + }, + { + "id": "77595", + "name": "Doorn", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.03343000", + "longitude": "5.34571000" + }, + { + "id": "77604", + "name": "Driebergen-Rijsenburg", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05333000", + "longitude": "5.28056000" + }, + { + "id": "77708", + "name": "Gemeente Amersfoort", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.17375000", + "longitude": "5.38954000" + }, + { + "id": "77717", + "name": "Gemeente Baarn", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20602000", + "longitude": "5.27144000" + }, + { + "id": "77745", + "name": "Gemeente Bunnik", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04228000", + "longitude": "5.21664000" + }, + { + "id": "77746", + "name": "Gemeente Bunschoten", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.24249000", + "longitude": "5.35837000" + }, + { + "id": "77756", + "name": "Gemeente De Bilt", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.14137000", + "longitude": "5.16828000" + }, + { + "id": "77757", + "name": "Gemeente De Ronde Venen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21515000", + "longitude": "4.90123000" + }, + { + "id": "77779", + "name": "Gemeente Eemnes", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25253000", + "longitude": "5.28391000" + }, + { + "id": "77834", + "name": "Gemeente Houten", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02683000", + "longitude": "5.16941000" + }, + { + "id": "77837", + "name": "Gemeente IJsselstein", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02912000", + "longitude": "5.02868000" + }, + { + "id": "77857", + "name": "Gemeente Leusden", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12418000", + "longitude": "5.41245000" + }, + { + "id": "77862", + "name": "Gemeente Lopik", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.98991000", + "longitude": "4.94851000" + }, + { + "id": "77878", + "name": "Gemeente Montfoort", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04767000", + "longitude": "4.94844000" + }, + { + "id": "77882", + "name": "Gemeente Nieuwegein", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02843000", + "longitude": "5.09539000" + }, + { + "id": "77906", + "name": "Gemeente Oudewater", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02840000", + "longitude": "4.86243000" + }, + { + "id": "77917", + "name": "Gemeente Renswoude", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07294000", + "longitude": "5.53352000" + }, + { + "id": "77920", + "name": "Gemeente Rhenen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.96151000", + "longitude": "5.57058000" + }, + { + "id": "77940", + "name": "Gemeente Soest", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15636000", + "longitude": "5.29854000" + }, + { + "id": "77964", + "name": "Gemeente Utrecht", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.09675000", + "longitude": "5.03708000" + }, + { + "id": "77965", + "name": "Gemeente Utrechtse Heuvelrug", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.03486000", + "longitude": "5.35738000" + }, + { + "id": "77969", + "name": "Gemeente Veenendaal", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02459000", + "longitude": "5.55562000" + }, + { + "id": "77999", + "name": "Gemeente Wijk bij Duurstede", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97452000", + "longitude": "5.33661000" + }, + { + "id": "78002", + "name": "Gemeente Woerden", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10675000", + "longitude": "4.90066000" + }, + { + "id": "78004", + "name": "Gemeente Woudenberg", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08055000", + "longitude": "5.39810000" + }, + { + "id": "78009", + "name": "Gemeente Zeist", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08847000", + "longitude": "5.23275000" + }, + { + "id": "78058", + "name": "Groenekan", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.12333000", + "longitude": "5.15278000" + }, + { + "id": "78169", + "name": "Hollandsche Rading", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.17500000", + "longitude": "5.17778000" + }, + { + "id": "78189", + "name": "Houten", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02833000", + "longitude": "5.16806000" + }, + { + "id": "78201", + "name": "IJsselstein", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02000000", + "longitude": "5.04306000" + }, + { + "id": "78219", + "name": "Kedichem", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.86000000", + "longitude": "5.05000000" + }, + { + "id": "78223", + "name": "Kerckebosch", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07844000", + "longitude": "5.26584000" + }, + { + "id": "78271", + "name": "Langenoord", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.18768000", + "longitude": "5.38034000" + }, + { + "id": "78279", + "name": "Leerdam", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.89333000", + "longitude": "5.09167000" + }, + { + "id": "78280", + "name": "Leersum", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01167000", + "longitude": "5.42778000" + }, + { + "id": "78294", + "name": "Leusden", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13250000", + "longitude": "5.43194000" + }, + { + "id": "78311", + "name": "Linschoten", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06250000", + "longitude": "4.91528000" + }, + { + "id": "78321", + "name": "Lopik", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97250000", + "longitude": "4.94861000" + }, + { + "id": "78326", + "name": "Lunetten", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06178000", + "longitude": "5.13474000" + }, + { + "id": "78331", + "name": "Maarn", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.06417000", + "longitude": "5.37083000" + }, + { + "id": "78332", + "name": "Maarssen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13917000", + "longitude": "5.04167000" + }, + { + "id": "78333", + "name": "Maartensdijk", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.15500000", + "longitude": "5.17500000" + }, + { + "id": "78399", + "name": "Mijdrecht", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.20667000", + "longitude": "4.86250000" + }, + { + "id": "78409", + "name": "Montfoort", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04583000", + "longitude": "4.95278000" + }, + { + "id": "78441", + "name": "Nieuwegein", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02917000", + "longitude": "5.08056000" + }, + { + "id": "78451", + "name": "Nijenheim", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08689000", + "longitude": "5.21852000" + }, + { + "id": "78482", + "name": "Odijk", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.05250000", + "longitude": "5.23611000" + }, + { + "id": "78504", + "name": "Oog in Al", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08636000", + "longitude": "5.08470000" + }, + { + "id": "78567", + "name": "Oudewater", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02500000", + "longitude": "4.86806000" + }, + { + "id": "78570", + "name": "Overberg", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.04000000", + "longitude": "5.49444000" + }, + { + "id": "78608", + "name": "Randenbroek", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.14863000", + "longitude": "5.40120000" + }, + { + "id": "78615", + "name": "Renswoude", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07333000", + "longitude": "5.54028000" + }, + { + "id": "78619", + "name": "Rhenen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.95917000", + "longitude": "5.56806000" + }, + { + "id": "78682", + "name": "Schoonrewoerd", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.92083000", + "longitude": "5.11667000" + }, + { + "id": "78719", + "name": "Soest", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.17333000", + "longitude": "5.29167000" + }, + { + "id": "78720", + "name": "Soestdijk", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19083000", + "longitude": "5.28472000" + }, + { + "id": "78725", + "name": "Spakenburg", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.25000000", + "longitude": "5.36667000" + }, + { + "id": "78728", + "name": "Spechtenkamp", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.13926000", + "longitude": "5.01758000" + }, + { + "id": "78758", + "name": "Stichtse Vecht", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.17679000", + "longitude": "5.01259000" + }, + { + "id": "78822", + "name": "Utrecht", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.09083000", + "longitude": "5.12222000" + }, + { + "id": "78837", + "name": "Veenendaal", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02863000", + "longitude": "5.55891000" + }, + { + "id": "78841", + "name": "Veldhuizen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.07537000", + "longitude": "5.01234000" + }, + { + "id": "78849", + "name": "Vianen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.99250000", + "longitude": "5.09167000" + }, + { + "id": "78854", + "name": "Vinkeveen", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.21507000", + "longitude": "4.93372000" + }, + { + "id": "78858", + "name": "Vleuten", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.10583000", + "longitude": "5.01528000" + }, + { + "id": "78882", + "name": "Vreeswijk", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.01088000", + "longitude": "5.09285000" + }, + { + "id": "78925", + "name": "Werkhoven", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.02500000", + "longitude": "5.24444000" + }, + { + "id": "78954", + "name": "Wijk bij Duurstede", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "51.97417000", + "longitude": "5.34167000" + }, + { + "id": "78960", + "name": "Wilnis", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.19667000", + "longitude": "4.89722000" + }, + { + "id": "78973", + "name": "Woerden", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08500000", + "longitude": "4.88333000" + }, + { + "id": "78984", + "name": "Woudenberg", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.08083000", + "longitude": "5.41667000" + }, + { + "id": "79005", + "name": "Zeist", + "state_id": 2610, + "state_code": "UT", + "country_id": 156, + "country_code": "NL", + "latitude": "52.09000000", + "longitude": "5.23333000" + }, + { + "id": "77304", + "name": "Aagtekerke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54667000", + "longitude": "3.50972000" + }, + { + "id": "77311", + "name": "Aardenburg", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.27333000", + "longitude": "3.44722000" + }, + { + "id": "77355", + "name": "Arnemuiden", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50167000", + "longitude": "3.67500000" + }, + { + "id": "77362", + "name": "Axel", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.26667000", + "longitude": "3.90833000" + }, + { + "id": "77460", + "name": "Borssele", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.42333000", + "longitude": "3.73472000" + }, + { + "id": "77477", + "name": "Breskens", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.39583000", + "longitude": "3.55556000" + }, + { + "id": "77488", + "name": "Brouwershaven", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.72667000", + "longitude": "3.91250000" + }, + { + "id": "77490", + "name": "Bruinisse", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.66167000", + "longitude": "4.09444000" + }, + { + "id": "77520", + "name": "Colijnsplaat", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.59917000", + "longitude": "3.84861000" + }, + { + "id": "77531", + "name": "Dauwendaele", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49299000", + "longitude": "3.62624000" + }, + { + "id": "77589", + "name": "Domburg", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56333000", + "longitude": "3.49583000" + }, + { + "id": "77737", + "name": "Gemeente Borsele", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44191000", + "longitude": "3.81127000" + }, + { + "id": "77795", + "name": "Gemeente Goes", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51500000", + "longitude": "3.83949000" + }, + { + "id": "77836", + "name": "Gemeente Hulst", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.31897000", + "longitude": "4.08690000" + }, + { + "id": "77840", + "name": "Gemeente Kapelle", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48223000", + "longitude": "3.96524000" + }, + { + "id": "77872", + "name": "Gemeente Middelburg", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49719000", + "longitude": "3.65459000" + }, + { + "id": "77886", + "name": "Gemeente Noord-Beveland", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57226000", + "longitude": "3.78353000" + }, + { + "id": "77915", + "name": "Gemeente Reimerswaal", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.42040000", + "longitude": "4.13169000" + }, + { + "id": "77938", + "name": "Gemeente Sluis", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.33490000", + "longitude": "3.51974000" + }, + { + "id": "77949", + "name": "Gemeente Terneuzen", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.28550000", + "longitude": "3.82817000" + }, + { + "id": "77953", + "name": "Gemeente Tholen", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58336000", + "longitude": "4.13373000" + }, + { + "id": "77970", + "name": "Gemeente Veere", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53902000", + "longitude": "3.55688000" + }, + { + "id": "77977", + "name": "Gemeente Vlissingen", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.45914000", + "longitude": "3.62325000" + }, + { + "id": "78037", + "name": "Goes", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50417000", + "longitude": "3.88889000" + }, + { + "id": "78055", + "name": "Griffioen", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50548000", + "longitude": "3.59598000" + }, + { + "id": "78057", + "name": "Grijpskerke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53417000", + "longitude": "3.56111000" + }, + { + "id": "78077", + "name": "Haamstede", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69682000", + "longitude": "3.74299000" + }, + { + "id": "78195", + "name": "Hulst", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.28000000", + "longitude": "4.05278000" + }, + { + "id": "78202", + "name": "IJzendijke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.32167000", + "longitude": "3.61667000" + }, + { + "id": "78214", + "name": "Kamperland", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57167000", + "longitude": "3.70417000" + }, + { + "id": "78215", + "name": "Kapelle", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48627000", + "longitude": "3.95804000" + }, + { + "id": "78234", + "name": "Klarenbeek", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50964000", + "longitude": "3.61132000" + }, + { + "id": "78239", + "name": "Kloetinge", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49833000", + "longitude": "3.91528000" + }, + { + "id": "78242", + "name": "Koewacht", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.22833000", + "longitude": "3.97361000" + }, + { + "id": "78253", + "name": "Koudekerke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48167000", + "longitude": "3.55417000" + }, + { + "id": "78266", + "name": "Lammerenburg", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.46667000", + "longitude": "3.55833000" + }, + { + "id": "78346", + "name": "Malta", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65000000", + "longitude": "3.93333000" + }, + { + "id": "78378", + "name": "Meliskerke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51417000", + "longitude": "3.50972000" + }, + { + "id": "78388", + "name": "Middelburg", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50000000", + "longitude": "3.61389000" + }, + { + "id": "78429", + "name": "Nieuw- en Sint Joosland", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.48333000", + "longitude": "3.65694000" + }, + { + "id": "78444", + "name": "Nieuwerkerk", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65083000", + "longitude": "4.00139000" + }, + { + "id": "78508", + "name": "Oostburg", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.32583000", + "longitude": "3.48750000" + }, + { + "id": "78521", + "name": "Oosterland", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65000000", + "longitude": "4.03611000" + }, + { + "id": "78527", + "name": "Oostkapelle", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.56667000", + "longitude": "3.55139000" + }, + { + "id": "78548", + "name": "Othene", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.33083000", + "longitude": "3.85972000" + }, + { + "id": "78555", + "name": "Oud-Vossemeer", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.57083000", + "longitude": "4.19861000" + }, + { + "id": "78593", + "name": "Poortvliet", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54417000", + "longitude": "4.14306000" + }, + { + "id": "78613", + "name": "Renesse", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.73250000", + "longitude": "3.77500000" + }, + { + "id": "78653", + "name": "Sas van Gent", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.22750000", + "longitude": "3.79861000" + }, + { + "id": "78659", + "name": "Scharendijke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.73583000", + "longitude": "3.84306000" + }, + { + "id": "78665", + "name": "Scherpenisse", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54667000", + "longitude": "4.10556000" + }, + { + "id": "78678", + "name": "Schoondijke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.35417000", + "longitude": "3.55556000" + }, + { + "id": "78683", + "name": "Schouwen-Duiveland", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.69294000", + "longitude": "3.88676000" + }, + { + "id": "78687", + "name": "Serooskerke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.54833000", + "longitude": "3.59444000" + }, + { + "id": "78699", + "name": "Sint Laurens", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52750000", + "longitude": "3.60278000" + }, + { + "id": "78703", + "name": "Sint Philipsland", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.61667000", + "longitude": "4.16528000" + }, + { + "id": "78714", + "name": "Sluis", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.30833000", + "longitude": "3.38611000" + }, + { + "id": "78715", + "name": "Sluiskil", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.27833000", + "longitude": "3.83611000" + }, + { + "id": "78747", + "name": "Stavenisse", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58750000", + "longitude": "4.01250000" + }, + { + "id": "78774", + "name": "Terneuzen", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.33583000", + "longitude": "3.82778000" + }, + { + "id": "78781", + "name": "Tholen", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53167000", + "longitude": "4.22083000" + }, + { + "id": "78862", + "name": "Vlissingen", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.44250000", + "longitude": "3.57361000" + }, + { + "id": "78893", + "name": "Waarde", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.41750000", + "longitude": "4.06806000" + }, + { + "id": "78923", + "name": "Wemeldinge", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.51833000", + "longitude": "3.99722000" + }, + { + "id": "78929", + "name": "West-Souburg", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.46417000", + "longitude": "3.59167000" + }, + { + "id": "78931", + "name": "Westdorpe", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.23250000", + "longitude": "3.82639000" + }, + { + "id": "78941", + "name": "Westerzicht", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.46252000", + "longitude": "3.58687000" + }, + { + "id": "78942", + "name": "Westkapelle", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.52917000", + "longitude": "3.44028000" + }, + { + "id": "78969", + "name": "Wissenkerke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.58500000", + "longitude": "3.74722000" + }, + { + "id": "78977", + "name": "Wolphaartsdijk", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.53167000", + "longitude": "3.81944000" + }, + { + "id": "78989", + "name": "Yerseke", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.49250000", + "longitude": "4.05000000" + }, + { + "id": "78992", + "name": "Zaamslag", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.31250000", + "longitude": "3.91250000" + }, + { + "id": "79013", + "name": "Zierikzee", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.65000000", + "longitude": "3.91944000" + }, + { + "id": "79020", + "name": "Zoutelande", + "state_id": 2620, + "state_code": "ZE", + "country_id": 156, + "country_code": "NL", + "latitude": "51.50167000", + "longitude": "3.48472000" + }, + { + "id": "79773", + "name": "Auckland", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.84853000", + "longitude": "174.76349000" + }, + { + "id": "79823", + "name": "Mangere", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.96807000", + "longitude": "174.79875000" + }, + { + "id": "79824", + "name": "Manukau City", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.99282000", + "longitude": "174.87986000" + }, + { + "id": "79833", + "name": "Muriwai Beach", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.81667000", + "longitude": "174.45000000" + }, + { + "id": "79834", + "name": "Murrays Bay", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.72819000", + "longitude": "174.75019000" + }, + { + "id": "79843", + "name": "North Shore", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.80000000", + "longitude": "174.75000000" + }, + { + "id": "79852", + "name": "Pakuranga", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.88333000", + "longitude": "174.91667000" + }, + { + "id": "79854", + "name": "Papakura", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.06573000", + "longitude": "174.94393000" + }, + { + "id": "79856", + "name": "Parakai", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.65000000", + "longitude": "174.43333000" + }, + { + "id": "79865", + "name": "Pukekohe East", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.20000000", + "longitude": "174.95000000" + }, + { + "id": "79869", + "name": "Red Hill", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.05820000", + "longitude": "174.97019000" + }, + { + "id": "79873", + "name": "Rosebank", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.87495000", + "longitude": "174.66991000" + }, + { + "id": "79874", + "name": "Rothesay Bay", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.72602000", + "longitude": "174.74064000" + }, + { + "id": "79885", + "name": "Takanini", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.04820000", + "longitude": "174.90019000" + }, + { + "id": "79886", + "name": "Tamaki", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.88820000", + "longitude": "174.86019000" + }, + { + "id": "79896", + "name": "Titirangi", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.93754000", + "longitude": "174.65584000" + }, + { + "id": "79907", + "name": "Waitakere", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.91754000", + "longitude": "174.65773000" + }, + { + "id": "79910", + "name": "Waiuku", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.24806000", + "longitude": "174.73489000" + }, + { + "id": "79914", + "name": "Warkworth", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.40000000", + "longitude": "174.66667000" + }, + { + "id": "79917", + "name": "Wellsford", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.28333000", + "longitude": "174.51667000" + }, + { + "id": "79924", + "name": "Wiri", + "state_id": 4072, + "state_code": "AUK", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.99820000", + "longitude": "174.86019000" + }, + { + "id": "79791", + "name": "Edgecumbe", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.98333000", + "longitude": "176.83333000" + }, + { + "id": "79809", + "name": "Katikati", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.55000000", + "longitude": "175.91667000" + }, + { + "id": "79811", + "name": "Kawerau", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.10000000", + "longitude": "176.70000000" + }, + { + "id": "79821", + "name": "Maketu", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.76667000", + "longitude": "176.45000000" + }, + { + "id": "79835", + "name": "Murupara", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.46667000", + "longitude": "176.70000000" + }, + { + "id": "79845", + "name": "Opotiki", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.00915000", + "longitude": "177.28706000" + }, + { + "id": "79875", + "name": "Rotorua", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.13874000", + "longitude": "176.24516000" + }, + { + "id": "79889", + "name": "Tauranga", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.68611000", + "longitude": "176.16667000" + }, + { + "id": "79901", + "name": "Waihi Beach", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.40000000", + "longitude": "175.93333000" + }, + { + "id": "79919", + "name": "Whakatane", + "state_id": 4074, + "state_code": "BOP", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.95855000", + "longitude": "176.98545000" + }, + { + "id": "79769", + "name": "Amberley", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.15589000", + "longitude": "172.72975000" + }, + { + "id": "79771", + "name": "Ashburton", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.89834000", + "longitude": "171.73011000" + }, + { + "id": "79772", + "name": "Ashburton District", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.90000000", + "longitude": "171.75000000" + }, + { + "id": "79780", + "name": "Burnham", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.61667000", + "longitude": "172.31667000" + }, + { + "id": "79783", + "name": "Christchurch", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.53333000", + "longitude": "172.63333000" + }, + { + "id": "79784", + "name": "Christchurch City", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.64578000", + "longitude": "172.74586000" + }, + { + "id": "79788", + "name": "Darfield", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.48333000", + "longitude": "172.11667000" + }, + { + "id": "79795", + "name": "Geraldine", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-44.09061000", + "longitude": "171.24458000" + }, + { + "id": "79805", + "name": "Kaiapoi", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.37832000", + "longitude": "172.64013000" + }, + { + "id": "79816", + "name": "Leeston", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.76667000", + "longitude": "172.30000000" + }, + { + "id": "79818", + "name": "Lincoln", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.65000000", + "longitude": "172.48333000" + }, + { + "id": "79820", + "name": "Mackenzie District", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.93987000", + "longitude": "170.51913000" + }, + { + "id": "79829", + "name": "Methven", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.63333000", + "longitude": "171.65000000" + }, + { + "id": "79849", + "name": "Oxford", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.30000000", + "longitude": "172.18333000" + }, + { + "id": "79861", + "name": "Pleasant Point", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-44.26667000", + "longitude": "171.13333000" + }, + { + "id": "79864", + "name": "Prebbleton", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.58333000", + "longitude": "172.51667000" + }, + { + "id": "79868", + "name": "Rakaia", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.75000000", + "longitude": "172.01667000" + }, + { + "id": "79872", + "name": "Rolleston", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.58333000", + "longitude": "172.38333000" + }, + { + "id": "79877", + "name": "Selwyn District", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.32226000", + "longitude": "171.87064000" + }, + { + "id": "79893", + "name": "Timaru", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-44.39672000", + "longitude": "171.25364000" + }, + { + "id": "79894", + "name": "Timaru District", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-44.40000000", + "longitude": "171.21667000" + }, + { + "id": "79895", + "name": "Tinwald", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.91667000", + "longitude": "171.71667000" + }, + { + "id": "79902", + "name": "Waimakariri District", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.20750000", + "longitude": "172.33286000" + }, + { + "id": "79925", + "name": "Woodend", + "state_id": 4066, + "state_code": "CAN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.31667000", + "longitude": "172.66667000" + }, + { + "id": "79908", + "name": "Waitangi", + "state_id": 4067, + "state_code": "CIT", + "country_id": 158, + "country_code": "NZ", + "latitude": "-43.95353000", + "longitude": "-176.55973000" + }, + { + "id": "79796", + "name": "Gisborne", + "state_id": 4068, + "state_code": "GIS", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.65333000", + "longitude": "178.00417000" + }, + { + "id": "79800", + "name": "Hastings", + "state_id": 4075, + "state_code": "HKB", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.63810000", + "longitude": "176.84918000" + }, + { + "id": "79836", + "name": "Napier", + "state_id": 4075, + "state_code": "HKB", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.49260000", + "longitude": "176.91233000" + }, + { + "id": "79887", + "name": "Taradale", + "state_id": 4075, + "state_code": "HKB", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.53333000", + "longitude": "176.85000000" + }, + { + "id": "79906", + "name": "Wairoa", + "state_id": 4075, + "state_code": "HKB", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.03333000", + "longitude": "177.36667000" + }, + { + "id": "79779", + "name": "Bulls", + "state_id": 4060, + "state_code": "MWT", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.17487000", + "longitude": "175.38463000" + }, + { + "id": "79794", + "name": "Foxton", + "state_id": 4060, + "state_code": "MWT", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.46667000", + "longitude": "175.30000000" + }, + { + "id": "79803", + "name": "Horowhenua District", + "state_id": 4060, + "state_code": "MWT", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.57733000", + "longitude": "175.38071000" + }, + { + "id": "79817", + "name": "Levin", + "state_id": 4060, + "state_code": "MWT", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.63333000", + "longitude": "175.27500000" + }, + { + "id": "79822", + "name": "Manawatu District", + "state_id": 4060, + "state_code": "MWT", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.11979000", + "longitude": "175.67426000" + }, + { + "id": "79853", + "name": "Palmerston North", + "state_id": 4060, + "state_code": "MWT", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.35636000", + "longitude": "175.61113000" + }, + { + "id": "79904", + "name": "Waiouru", + "state_id": 4060, + "state_code": "MWT", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.47753000", + "longitude": "175.66834000" + }, + { + "id": "79913", + "name": "Wanganui", + "state_id": 4060, + "state_code": "MWT", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.93333000", + "longitude": "175.05000000" + }, + { + "id": "79775", + "name": "Blenheim", + "state_id": 4063, + "state_code": "MBH", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.51603000", + "longitude": "173.95280000" + }, + { + "id": "79860", + "name": "Picton", + "state_id": 4063, + "state_code": "MBH", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.29067000", + "longitude": "174.00801000" + }, + { + "id": "79837", + "name": "Nelson", + "state_id": 4070, + "state_code": "NSN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.27078000", + "longitude": "173.28404000" + }, + { + "id": "79768", + "name": "Ahipara", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.16667000", + "longitude": "173.16667000" + }, + { + "id": "79789", + "name": "Dargaville", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.93333000", + "longitude": "173.88333000" + }, + { + "id": "79793", + "name": "Far North District", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.03359000", + "longitude": "173.48841000" + }, + { + "id": "79806", + "name": "Kaipara District", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.99546000", + "longitude": "174.04688000" + }, + { + "id": "79807", + "name": "Kaitaia", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.11485000", + "longitude": "173.26366000" + }, + { + "id": "79810", + "name": "Kawakawa", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.38333000", + "longitude": "174.06667000" + }, + { + "id": "79813", + "name": "Kerikeri", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.22676000", + "longitude": "173.94739000" + }, + { + "id": "79828", + "name": "Maungatapere", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.75000000", + "longitude": "174.20000000" + }, + { + "id": "79831", + "name": "Moerewa", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.38333000", + "longitude": "174.03333000" + }, + { + "id": "79842", + "name": "Ngunguru", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.61667000", + "longitude": "174.50000000" + }, + { + "id": "79851", + "name": "Paihia", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.28067000", + "longitude": "174.09103000" + }, + { + "id": "79876", + "name": "Ruakaka", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.90818000", + "longitude": "174.45019000" + }, + { + "id": "79882", + "name": "Taipa", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-34.99604000", + "longitude": "173.46665000" + }, + { + "id": "79903", + "name": "Waimate North", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.31667000", + "longitude": "173.88333000" + }, + { + "id": "79921", + "name": "Whangarei", + "state_id": 4059, + "state_code": "NTL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-35.73167000", + "longitude": "174.32391000" + }, + { + "id": "79770", + "name": "Arrowtown", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-44.93837000", + "longitude": "168.81007000" + }, + { + "id": "79774", + "name": "Balclutha", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-46.23389000", + "longitude": "169.75000000" + }, + { + "id": "79785", + "name": "Clutha District", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-46.03883000", + "longitude": "169.60617000" + }, + { + "id": "79787", + "name": "Cromwell", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-45.03837000", + "longitude": "169.20008000" + }, + { + "id": "79790", + "name": "Dunedin", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-45.87416000", + "longitude": "170.50361000" + }, + { + "id": "79815", + "name": "Kingston", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-45.33288000", + "longitude": "168.71476000" + }, + { + "id": "79830", + "name": "Milton", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-46.12083000", + "longitude": "169.96944000" + }, + { + "id": "79844", + "name": "Oamaru", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-45.09758000", + "longitude": "170.97087000" + }, + { + "id": "79855", + "name": "Papatowai", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-46.56069000", + "longitude": "169.47068000" + }, + { + "id": "79863", + "name": "Portobello", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-45.85000000", + "longitude": "170.65000000" + }, + { + "id": "79866", + "name": "Queenstown", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-45.03023000", + "longitude": "168.66271000" + }, + { + "id": "79912", + "name": "Wanaka", + "state_id": 4062, + "state_code": "OTA", + "country_id": 158, + "country_code": "NZ", + "latitude": "-44.70000000", + "longitude": "169.15000000" + }, + { + "id": "79776", + "name": "Bluff", + "state_id": 4071, + "state_code": "STL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-46.60000000", + "longitude": "168.33333000" + }, + { + "id": "79797", + "name": "Gore", + "state_id": 4071, + "state_code": "STL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-46.10282000", + "longitude": "168.94357000" + }, + { + "id": "79804", + "name": "Invercargill", + "state_id": 4071, + "state_code": "STL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-46.40000000", + "longitude": "168.35000000" + }, + { + "id": "79871", + "name": "Riverton", + "state_id": 4071, + "state_code": "STL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-46.35000000", + "longitude": "168.01667000" + }, + { + "id": "79881", + "name": "Southland District", + "state_id": 4071, + "state_code": "STL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-45.77256000", + "longitude": "167.85266000" + }, + { + "id": "79890", + "name": "Te Anau", + "state_id": 4071, + "state_code": "STL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-45.41667000", + "longitude": "167.71667000" + }, + { + "id": "79923", + "name": "Winton", + "state_id": 4071, + "state_code": "STL", + "country_id": 158, + "country_code": "NZ", + "latitude": "-46.15000000", + "longitude": "168.33333000" + }, + { + "id": "79792", + "name": "Eltham", + "state_id": 4069, + "state_code": "TKI", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.42917000", + "longitude": "174.30000000" + }, + { + "id": "79801", + "name": "Hawera", + "state_id": 4069, + "state_code": "TKI", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.59167000", + "longitude": "174.28333000" + }, + { + "id": "79838", + "name": "New Plymouth", + "state_id": 4069, + "state_code": "TKI", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.06667000", + "longitude": "174.08333000" + }, + { + "id": "79839", + "name": "New Plymouth District", + "state_id": 4069, + "state_code": "TKI", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.05865000", + "longitude": "174.10309000" + }, + { + "id": "79846", + "name": "Opunake", + "state_id": 4069, + "state_code": "TKI", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.45556000", + "longitude": "173.85833000" + }, + { + "id": "79858", + "name": "Patea", + "state_id": 4069, + "state_code": "TKI", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.75833000", + "longitude": "174.48333000" + }, + { + "id": "79878", + "name": "South Taranaki District", + "state_id": 4069, + "state_code": "TKI", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.52156000", + "longitude": "174.37160000" + }, + { + "id": "79909", + "name": "Waitara", + "state_id": 4069, + "state_code": "TKI", + "country_id": 158, + "country_code": "NZ", + "latitude": "-39.00158000", + "longitude": "174.23836000" + }, + { + "id": "79777", + "name": "Brightwater", + "state_id": 4073, + "state_code": "TAS", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.38333000", + "longitude": "173.11667000" + }, + { + "id": "79825", + "name": "Mapua", + "state_id": 4073, + "state_code": "TAS", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.25000000", + "longitude": "173.10000000" + }, + { + "id": "79832", + "name": "Motueka", + "state_id": 4073, + "state_code": "TAS", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.13333000", + "longitude": "173.01667000" + }, + { + "id": "79870", + "name": "Richmond", + "state_id": 4073, + "state_code": "TAS", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.33333000", + "longitude": "173.18333000" + }, + { + "id": "79884", + "name": "Takaka", + "state_id": 4073, + "state_code": "TAS", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.85000000", + "longitude": "172.80000000" + }, + { + "id": "79911", + "name": "Wakefield", + "state_id": 4073, + "state_code": "TAS", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.40000000", + "longitude": "173.05000000" + }, + { + "id": "79781", + "name": "Cambridge", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.87822000", + "longitude": "175.44020000" + }, + { + "id": "79786", + "name": "Coromandel", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.76110000", + "longitude": "175.49634000" + }, + { + "id": "79799", + "name": "Hamilton", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.78333000", + "longitude": "175.28333000" + }, + { + "id": "79827", + "name": "Matamata", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.81060000", + "longitude": "175.76237000" + }, + { + "id": "79840", + "name": "Ngaruawahia", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.66738000", + "longitude": "175.15554000" + }, + { + "id": "79841", + "name": "Ngatea", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.28333000", + "longitude": "175.50000000" + }, + { + "id": "79848", + "name": "Otorohanga", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.18333000", + "longitude": "175.20000000" + }, + { + "id": "79850", + "name": "Paeroa", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.36667000", + "longitude": "175.66667000" + }, + { + "id": "79867", + "name": "Raglan", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.80000000", + "longitude": "174.88333000" + }, + { + "id": "79879", + "name": "South Waikato District", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.16797000", + "longitude": "175.88624000" + }, + { + "id": "79883", + "name": "Tairua", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.01667000", + "longitude": "175.85000000" + }, + { + "id": "79888", + "name": "Taupo", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.68333000", + "longitude": "176.08333000" + }, + { + "id": "79891", + "name": "Te Kauwhata", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.40000000", + "longitude": "175.15000000" + }, + { + "id": "79892", + "name": "Thames", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.13832000", + "longitude": "175.54011000" + }, + { + "id": "79897", + "name": "Tokoroa", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.23333000", + "longitude": "175.86667000" + }, + { + "id": "79898", + "name": "Turangi", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-38.99037000", + "longitude": "175.80837000" + }, + { + "id": "79900", + "name": "Waihi", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.38333000", + "longitude": "175.83333000" + }, + { + "id": "79920", + "name": "Whangamata", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-37.20000000", + "longitude": "175.86667000" + }, + { + "id": "79922", + "name": "Whitianga", + "state_id": 4061, + "state_code": "WKO", + "country_id": 158, + "country_code": "NZ", + "latitude": "-36.83333000", + "longitude": "175.70000000" + }, + { + "id": "79778", + "name": "Brooklyn", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.30586000", + "longitude": "174.76257000" + }, + { + "id": "79782", + "name": "Castlepoint", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.90000000", + "longitude": "176.21667000" + }, + { + "id": "79808", + "name": "Kapiti Coast District", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.85682000", + "longitude": "175.14690000" + }, + { + "id": "79812", + "name": "Kelburn", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.28333000", + "longitude": "174.76667000" + }, + { + "id": "79814", + "name": "Khandallah", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.24500000", + "longitude": "174.79422000" + }, + { + "id": "79819", + "name": "Lower Hutt", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.21667000", + "longitude": "174.91667000" + }, + { + "id": "79826", + "name": "Masterton", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.95972000", + "longitude": "175.65750000" + }, + { + "id": "79847", + "name": "Otaki", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.75833000", + "longitude": "175.15000000" + }, + { + "id": "79857", + "name": "Paraparaumu", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-40.91667000", + "longitude": "175.01667000" + }, + { + "id": "79859", + "name": "Petone", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.22827000", + "longitude": "174.87019000" + }, + { + "id": "79862", + "name": "Porirua", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.13333000", + "longitude": "174.85000000" + }, + { + "id": "79880", + "name": "South Wairarapa District", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.26731000", + "longitude": "175.38442000" + }, + { + "id": "79899", + "name": "Upper Hutt", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.13827000", + "longitude": "175.05020000" + }, + { + "id": "79905", + "name": "Waipawa", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.41222000", + "longitude": "175.51528000" + }, + { + "id": "79915", + "name": "Wellington", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.28664000", + "longitude": "174.77557000" + }, + { + "id": "79916", + "name": "Wellington City", + "state_id": 4065, + "state_code": "WGN", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.25300000", + "longitude": "174.75424000" + }, + { + "id": "79798", + "name": "Greymouth", + "state_id": 4064, + "state_code": "WTC", + "country_id": 158, + "country_code": "NZ", + "latitude": "-42.46667000", + "longitude": "171.20000000" + }, + { + "id": "79802", + "name": "Hokitika", + "state_id": 4064, + "state_code": "WTC", + "country_id": 158, + "country_code": "NZ", + "latitude": "-42.71667000", + "longitude": "170.96667000" + }, + { + "id": "79918", + "name": "Westport", + "state_id": 4064, + "state_code": "WTC", + "country_id": 158, + "country_code": "NZ", + "latitude": "-41.75262000", + "longitude": "171.60370000" + }, + { + "id": "77159", + "name": "Boaco", + "state_id": 946, + "state_code": "BO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.47224000", + "longitude": "-85.65860000" + }, + { + "id": "77163", + "name": "Camoapa", + "state_id": 946, + "state_code": "BO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.38383000", + "longitude": "-85.51277000" + }, + { + "id": "77260", + "name": "San José de los Remates", + "state_id": 946, + "state_code": "BO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.59750000", + "longitude": "-85.76174000" + }, + { + "id": "77265", + "name": "San Lorenzo", + "state_id": 946, + "state_code": "BO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.37830000", + "longitude": "-85.66646000" + }, + { + "id": "77273", + "name": "Santa Lucía", + "state_id": 946, + "state_code": "BO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.53262000", + "longitude": "-85.71074000" + }, + { + "id": "77285", + "name": "Teustepe", + "state_id": 946, + "state_code": "BO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.42030000", + "longitude": "-85.79798000" + }, + { + "id": "77176", + "name": "Diriamba", + "state_id": 950, + "state_code": "CA", + "country_id": 159, + "country_code": "NI", + "latitude": "11.85812000", + "longitude": "-86.23922000" + }, + { + "id": "77179", + "name": "Dolores", + "state_id": 950, + "state_code": "CA", + "country_id": 159, + "country_code": "NI", + "latitude": "11.85672000", + "longitude": "-86.21552000" + }, + { + "id": "77187", + "name": "El Rosario", + "state_id": 950, + "state_code": "CA", + "country_id": 159, + "country_code": "NI", + "latitude": "11.77756000", + "longitude": "-86.37374000" + }, + { + "id": "77195", + "name": "Jinotepe", + "state_id": 950, + "state_code": "CA", + "country_id": 159, + "country_code": "NI", + "latitude": "11.84962000", + "longitude": "-86.19903000" + }, + { + "id": "77202", + "name": "La Conquista", + "state_id": 950, + "state_code": "CA", + "country_id": 159, + "country_code": "NI", + "latitude": "11.73426000", + "longitude": "-86.19279000" + }, + { + "id": "77206", + "name": "La Paz de Carazo", + "state_id": 950, + "state_code": "CA", + "country_id": 159, + "country_code": "NI", + "latitude": "11.82311000", + "longitude": "-86.12781000" + }, + { + "id": "77236", + "name": "Municipio de San Marcos", + "state_id": 950, + "state_code": "CA", + "country_id": 159, + "country_code": "NI", + "latitude": "11.91784000", + "longitude": "-86.27474000" + }, + { + "id": "77267", + "name": "San Marcos", + "state_id": 950, + "state_code": "CA", + "country_id": 159, + "country_code": "NI", + "latitude": "11.90949000", + "longitude": "-86.20351000" + }, + { + "id": "77275", + "name": "Santa Teresa", + "state_id": 950, + "state_code": "CA", + "country_id": 159, + "country_code": "NI", + "latitude": "11.74321000", + "longitude": "-86.21413000" + }, + { + "id": "77165", + "name": "Chichigalpa", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "12.57758000", + "longitude": "-87.02705000" + }, + { + "id": "77166", + "name": "Chinandega", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "12.62937000", + "longitude": "-87.13105000" + }, + { + "id": "77167", + "name": "Cinco Pinos", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.22956000", + "longitude": "-86.86808000" + }, + { + "id": "77172", + "name": "Corinto", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "12.48250000", + "longitude": "-87.17304000" + }, + { + "id": "77186", + "name": "El Realejo", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "12.54333000", + "longitude": "-87.16517000" + }, + { + "id": "77190", + "name": "El Viejo", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "12.66348000", + "longitude": "-87.16663000" + }, + { + "id": "77196", + "name": "Jiquilillo", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "12.74593000", + "longitude": "-87.45160000" + }, + { + "id": "77232", + "name": "Municipio de San Francisco del Norte", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.21187000", + "longitude": "-86.77107000" + }, + { + "id": "77246", + "name": "Posoltega", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "12.54422000", + "longitude": "-86.97982000" + }, + { + "id": "77251", + "name": "Puerto Morazán", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "12.85042000", + "longitude": "-87.17167000" + }, + { + "id": "77278", + "name": "Santo Tomás del Norte", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.18610000", + "longitude": "-86.92267000" + }, + { + "id": "77280", + "name": "Somotillo", + "state_id": 954, + "state_code": "CI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.04387000", + "longitude": "-86.90506000" + }, + { + "id": "77155", + "name": "Acoyapa", + "state_id": 940, + "state_code": "CO", + "country_id": 159, + "country_code": "NI", + "latitude": "11.97028000", + "longitude": "-85.17113000" + }, + { + "id": "77170", + "name": "Comalapa", + "state_id": 940, + "state_code": "CO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.28345000", + "longitude": "-85.51081000" + }, + { + "id": "77174", + "name": "Cuapa", + "state_id": 940, + "state_code": "CO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.26875000", + "longitude": "-85.38205000" + }, + { + "id": "77181", + "name": "El Ayote", + "state_id": 940, + "state_code": "CO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.19046000", + "longitude": "-85.28737000" + }, + { + "id": "77197", + "name": "Juigalpa", + "state_id": 940, + "state_code": "CO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.10629000", + "longitude": "-85.36452000" + }, + { + "id": "77204", + "name": "La Libertad", + "state_id": 940, + "state_code": "CO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.21635000", + "longitude": "-85.16595000" + }, + { + "id": "77276", + "name": "Santo Domingo", + "state_id": 940, + "state_code": "CO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.26438000", + "longitude": "-85.08235000" + }, + { + "id": "77277", + "name": "Santo Tomás", + "state_id": 940, + "state_code": "CO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.06938000", + "longitude": "-85.09059000" + }, + { + "id": "77293", + "name": "Villa Sandino", + "state_id": 940, + "state_code": "CO", + "country_id": 159, + "country_code": "NI", + "latitude": "12.04830000", + "longitude": "-84.99362000" + }, + { + "id": "77171", + "name": "Condega", + "state_id": 945, + "state_code": "ES", + "country_id": 159, + "country_code": "NI", + "latitude": "13.36502000", + "longitude": "-86.39846000" + }, + { + "id": "77191", + "name": "Estelí", + "state_id": 945, + "state_code": "ES", + "country_id": 159, + "country_code": "NI", + "latitude": "13.09185000", + "longitude": "-86.35384000" + }, + { + "id": "77207", + "name": "La Trinidad", + "state_id": 945, + "state_code": "ES", + "country_id": 159, + "country_code": "NI", + "latitude": "12.96881000", + "longitude": "-86.23534000" + }, + { + "id": "77249", + "name": "Pueblo Nuevo", + "state_id": 945, + "state_code": "ES", + "country_id": 159, + "country_code": "NI", + "latitude": "13.37984000", + "longitude": "-86.48075000" + }, + { + "id": "77261", + "name": "San Juan de Limay", + "state_id": 945, + "state_code": "ES", + "country_id": 159, + "country_code": "NI", + "latitude": "13.17603000", + "longitude": "-86.61234000" + }, + { + "id": "77178", + "name": "Diriá", + "state_id": 943, + "state_code": "GR", + "country_id": 159, + "country_code": "NI", + "latitude": "11.88420000", + "longitude": "-86.05508000" + }, + { + "id": "77177", + "name": "Diriomo", + "state_id": 943, + "state_code": "GR", + "country_id": 159, + "country_code": "NI", + "latitude": "11.87631000", + "longitude": "-86.05184000" + }, + { + "id": "77192", + "name": "Granada", + "state_id": 943, + "state_code": "GR", + "country_id": 159, + "country_code": "NI", + "latitude": "11.92988000", + "longitude": "-85.95602000" + }, + { + "id": "77240", + "name": "Nandaime", + "state_id": 943, + "state_code": "GR", + "country_id": 159, + "country_code": "NI", + "latitude": "11.75696000", + "longitude": "-86.05286000" + }, + { + "id": "77183", + "name": "El Cuá", + "state_id": 955, + "state_code": "JI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.41667000", + "longitude": "-85.75000000" + }, + { + "id": "77194", + "name": "Jinotega", + "state_id": 955, + "state_code": "JI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.09103000", + "longitude": "-86.00234000" + }, + { + "id": "77201", + "name": "La Concordia", + "state_id": 955, + "state_code": "JI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.19528000", + "longitude": "-86.16659000" + }, + { + "id": "77210", + "name": "Las Praderas", + "state_id": 955, + "state_code": "JI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.17000000", + "longitude": "-85.85000000" + }, + { + "id": "77199", + "name": "LLano de La Cruz", + "state_id": 955, + "state_code": "JI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.12449000", + "longitude": "-86.00833000" + }, + { + "id": "77258", + "name": "San José de Bocay", + "state_id": 955, + "state_code": "JI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.54204000", + "longitude": "-85.53942000" + }, + { + "id": "77269", + "name": "San Rafael del Norte", + "state_id": 955, + "state_code": "JI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.21248000", + "longitude": "-86.11089000" + }, + { + "id": "77272", + "name": "San Sebastián de Yalí", + "state_id": 955, + "state_code": "JI", + "country_id": 159, + "country_code": "NI", + "latitude": "13.30540000", + "longitude": "-86.18641000" + }, + { + "id": "77154", + "name": "Achuapa", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "13.05370000", + "longitude": "-86.59004000" + }, + { + "id": "77184", + "name": "El Jicaral", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "12.72676000", + "longitude": "-86.38057000" + }, + { + "id": "77188", + "name": "El Sauce", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "12.88687000", + "longitude": "-86.53903000" + }, + { + "id": "77205", + "name": "La Paz Centro", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "12.34000000", + "longitude": "-86.67528000" + }, + { + "id": "77209", + "name": "Larreynaga", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "12.67692000", + "longitude": "-86.57193000" + }, + { + "id": "77212", + "name": "León", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "12.43787000", + "longitude": "-86.87804000" + }, + { + "id": "77239", + "name": "Nagarote", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "12.26593000", + "longitude": "-86.56474000" + }, + { + "id": "77252", + "name": "Quezalguaque", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "12.50683000", + "longitude": "-86.90292000" + }, + { + "id": "77274", + "name": "Santa Rosa del Peñón", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "12.80116000", + "longitude": "-86.36994000" + }, + { + "id": "77282", + "name": "Telica", + "state_id": 944, + "state_code": "LE", + "country_id": 159, + "country_code": "NI", + "latitude": "12.52200000", + "longitude": "-86.85938000" + }, + { + "id": "77211", + "name": "Las Sabanas", + "state_id": 948, + "state_code": "MD", + "country_id": 159, + "country_code": "NI", + "latitude": "13.34302000", + "longitude": "-86.62184000" + }, + { + "id": "77245", + "name": "Palacagüina", + "state_id": 948, + "state_code": "MD", + "country_id": 159, + "country_code": "NI", + "latitude": "13.45566000", + "longitude": "-86.40622000" + }, + { + "id": "77259", + "name": "San José de Cusmapa", + "state_id": 948, + "state_code": "MD", + "country_id": 159, + "country_code": "NI", + "latitude": "13.28841000", + "longitude": "-86.65539000" + }, + { + "id": "77263", + "name": "San Juan de Río Coco", + "state_id": 948, + "state_code": "MD", + "country_id": 159, + "country_code": "NI", + "latitude": "13.54476000", + "longitude": "-86.16499000" + }, + { + "id": "77266", + "name": "San Lucas", + "state_id": 948, + "state_code": "MD", + "country_id": 159, + "country_code": "NI", + "latitude": "13.41380000", + "longitude": "-86.61110000" + }, + { + "id": "77281", + "name": "Somoto", + "state_id": 948, + "state_code": "MD", + "country_id": 159, + "country_code": "NI", + "latitude": "13.48082000", + "longitude": "-86.58208000" + }, + { + "id": "77283", + "name": "Telpaneca", + "state_id": 948, + "state_code": "MD", + "country_id": 159, + "country_code": "NI", + "latitude": "13.53151000", + "longitude": "-86.28710000" + }, + { + "id": "77290", + "name": "Totogalpa", + "state_id": 948, + "state_code": "MD", + "country_id": 159, + "country_code": "NI", + "latitude": "13.56284000", + "longitude": "-86.49254000" + }, + { + "id": "77296", + "name": "Yalagüina", + "state_id": 948, + "state_code": "MD", + "country_id": 159, + "country_code": "NI", + "latitude": "13.48383000", + "longitude": "-86.49305000" + }, + { + "id": "77169", + "name": "Ciudad Sandino", + "state_id": 941, + "state_code": "MN", + "country_id": 159, + "country_code": "NI", + "latitude": "12.15889000", + "longitude": "-86.34417000" + }, + { + "id": "77182", + "name": "El Crucero", + "state_id": 941, + "state_code": "MN", + "country_id": 159, + "country_code": "NI", + "latitude": "11.99008000", + "longitude": "-86.30954000" + }, + { + "id": "77213", + "name": "Managua", + "state_id": 941, + "state_code": "MN", + "country_id": 159, + "country_code": "NI", + "latitude": "12.13282000", + "longitude": "-86.25040000" + }, + { + "id": "77214", + "name": "Masachapa", + "state_id": 941, + "state_code": "MN", + "country_id": 159, + "country_code": "NI", + "latitude": "11.78687000", + "longitude": "-86.51416000" + }, + { + "id": "77270", + "name": "San Rafael del Sur", + "state_id": 941, + "state_code": "MN", + "country_id": 159, + "country_code": "NI", + "latitude": "11.84854000", + "longitude": "-86.43839000" + }, + { + "id": "77286", + "name": "Ticuantepe", + "state_id": 941, + "state_code": "MN", + "country_id": 159, + "country_code": "NI", + "latitude": "12.02263000", + "longitude": "-86.20493000" + }, + { + "id": "77287", + "name": "Tipitapa", + "state_id": 941, + "state_code": "MN", + "country_id": 159, + "country_code": "NI", + "latitude": "12.19732000", + "longitude": "-86.09706000" + }, + { + "id": "77291", + "name": "Valle San Francisco", + "state_id": 941, + "state_code": "MN", + "country_id": 159, + "country_code": "NI", + "latitude": "12.51667000", + "longitude": "-86.28333000" + }, + { + "id": "77292", + "name": "Villa El Carmen", + "state_id": 941, + "state_code": "MN", + "country_id": 159, + "country_code": "NI", + "latitude": "11.98009000", + "longitude": "-86.50571000" + }, + { + "id": "77164", + "name": "Catarina", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.91197000", + "longitude": "-86.07383000" + }, + { + "id": "77200", + "name": "La Concepción", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.93711000", + "longitude": "-86.18976000" + }, + { + "id": "77215", + "name": "Masatepe", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.91445000", + "longitude": "-86.14458000" + }, + { + "id": "77216", + "name": "Masaya", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.97444000", + "longitude": "-86.09417000" + }, + { + "id": "77226", + "name": "Municipio de Masatepe", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.90567000", + "longitude": "-86.14946000" + }, + { + "id": "77228", + "name": "Municipio de Nandasmo", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.93333000", + "longitude": "-86.11667000" + }, + { + "id": "77229", + "name": "Municipio de Niquinohomo", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.88228000", + "longitude": "-86.10035000" + }, + { + "id": "77234", + "name": "Municipio de San Juan de Oriente", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.90517000", + "longitude": "-86.07460000" + }, + { + "id": "77241", + "name": "Nandasmo", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.92411000", + "longitude": "-86.12072000" + }, + { + "id": "77242", + "name": "Nindirí", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.00386000", + "longitude": "-86.12128000" + }, + { + "id": "77243", + "name": "Niquinohomo", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.90518000", + "longitude": "-86.09446000" + }, + { + "id": "77262", + "name": "San Juan de Oriente", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.90624000", + "longitude": "-86.07343000" + }, + { + "id": "77288", + "name": "Tisma", + "state_id": 953, + "state_code": "MS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.08194000", + "longitude": "-86.01739000" + }, + { + "id": "77168", + "name": "Ciudad Darío", + "state_id": 947, + "state_code": "MT", + "country_id": 159, + "country_code": "NI", + "latitude": "12.73143000", + "longitude": "-86.12402000" + }, + { + "id": "77217", + "name": "Matagalpa", + "state_id": 947, + "state_code": "MT", + "country_id": 159, + "country_code": "NI", + "latitude": "12.92559000", + "longitude": "-85.91747000" + }, + { + "id": "77218", + "name": "Matiguás", + "state_id": 947, + "state_code": "MT", + "country_id": 159, + "country_code": "NI", + "latitude": "12.83734000", + "longitude": "-85.46218000" + }, + { + "id": "77238", + "name": "Muy Muy", + "state_id": 947, + "state_code": "MT", + "country_id": 159, + "country_code": "NI", + "latitude": "12.76224000", + "longitude": "-85.62915000" + }, + { + "id": "77254", + "name": "Río Blanco", + "state_id": 947, + "state_code": "MT", + "country_id": 159, + "country_code": "NI", + "latitude": "12.93435000", + "longitude": "-85.22354000" + }, + { + "id": "77256", + "name": "San Dionisio", + "state_id": 947, + "state_code": "MT", + "country_id": 159, + "country_code": "NI", + "latitude": "12.76023000", + "longitude": "-85.85018000" + }, + { + "id": "77271", + "name": "San Ramón", + "state_id": 947, + "state_code": "MT", + "country_id": 159, + "country_code": "NI", + "latitude": "12.92344000", + "longitude": "-85.83898000" + }, + { + "id": "77284", + "name": "Terrabona", + "state_id": 947, + "state_code": "MT", + "country_id": 159, + "country_code": "NI", + "latitude": "12.73028000", + "longitude": "-85.96474000" + }, + { + "id": "77161", + "name": "Bonanza", + "state_id": 951, + "state_code": "AN", + "country_id": 159, + "country_code": "NI", + "latitude": "14.02885000", + "longitude": "-84.59103000" + }, + { + "id": "77248", + "name": "Prinzapolka", + "state_id": 951, + "state_code": "AN", + "country_id": 159, + "country_code": "NI", + "latitude": "13.40708000", + "longitude": "-83.56452000" + }, + { + "id": "77250", + "name": "Puerto Cabezas", + "state_id": 951, + "state_code": "AN", + "country_id": 159, + "country_code": "NI", + "latitude": "14.03507000", + "longitude": "-83.38882000" + }, + { + "id": "77279", + "name": "Siuna", + "state_id": 951, + "state_code": "AN", + "country_id": 159, + "country_code": "NI", + "latitude": "13.73321000", + "longitude": "-84.77725000" + }, + { + "id": "77294", + "name": "Waslala", + "state_id": 951, + "state_code": "AN", + "country_id": 159, + "country_code": "NI", + "latitude": "13.23333000", + "longitude": "-85.38333000" + }, + { + "id": "77295", + "name": "Waspán", + "state_id": 951, + "state_code": "AN", + "country_id": 159, + "country_code": "NI", + "latitude": "14.74189000", + "longitude": "-83.97170000" + }, + { + "id": "77180", + "name": "El Almendro", + "state_id": 949, + "state_code": "SJ", + "country_id": 159, + "country_code": "NI", + "latitude": "11.67859000", + "longitude": "-84.70269000" + }, + { + "id": "77193", + "name": "Greytown", + "state_id": 949, + "state_code": "SJ", + "country_id": 159, + "country_code": "NI", + "latitude": "10.94684000", + "longitude": "-83.73467000" + }, + { + "id": "77219", + "name": "Morrito", + "state_id": 949, + "state_code": "SJ", + "country_id": 159, + "country_code": "NI", + "latitude": "11.62118000", + "longitude": "-85.08052000" + }, + { + "id": "77255", + "name": "San Carlos", + "state_id": 949, + "state_code": "SJ", + "country_id": 159, + "country_code": "NI", + "latitude": "11.12360000", + "longitude": "-84.77795000" + }, + { + "id": "77268", + "name": "San Miguelito", + "state_id": 949, + "state_code": "SJ", + "country_id": 159, + "country_code": "NI", + "latitude": "11.40255000", + "longitude": "-84.89991000" + }, + { + "id": "77156", + "name": "Altagracia", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.56615000", + "longitude": "-85.57840000" + }, + { + "id": "77157", + "name": "Belén", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.50299000", + "longitude": "-85.88935000" + }, + { + "id": "77162", + "name": "Buenos Aires", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.46916000", + "longitude": "-85.81661000" + }, + { + "id": "77175", + "name": "Cárdenas", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.19639000", + "longitude": "-85.50890000" + }, + { + "id": "77220", + "name": "Moyogalpa", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.54006000", + "longitude": "-85.69795000" + }, + { + "id": "77222", + "name": "Municipio de Altagracia", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.47983000", + "longitude": "-85.54166000" + }, + { + "id": "77223", + "name": "Municipio de Belén", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.57193000", + "longitude": "-85.96316000" + }, + { + "id": "77224", + "name": "Municipio de Buenos Aires", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.51760000", + "longitude": "-85.78333000" + }, + { + "id": "77225", + "name": "Municipio de Cárdenas", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.14912000", + "longitude": "-85.42323000" + }, + { + "id": "77227", + "name": "Municipio de Moyogalpa", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.52632000", + "longitude": "-85.67329000" + }, + { + "id": "77230", + "name": "Municipio de Potosí", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.57854000", + "longitude": "-85.87764000" + }, + { + "id": "77231", + "name": "Municipio de Rivas", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.43931000", + "longitude": "-85.82700000" + }, + { + "id": "77233", + "name": "Municipio de San Jorge", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.42703000", + "longitude": "-85.78904000" + }, + { + "id": "77235", + "name": "Municipio de San Juan del Sur", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.22368000", + "longitude": "-85.78289000" + }, + { + "id": "77237", + "name": "Municipio de Tola", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.46009000", + "longitude": "-86.00789000" + }, + { + "id": "77247", + "name": "Potosí", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.49416000", + "longitude": "-85.85680000" + }, + { + "id": "77253", + "name": "Rivas", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.43716000", + "longitude": "-85.82632000" + }, + { + "id": "77257", + "name": "San Jorge", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.45584000", + "longitude": "-85.80308000" + }, + { + "id": "77264", + "name": "San Juan del Sur", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.25292000", + "longitude": "-85.87049000" + }, + { + "id": "77289", + "name": "Tola", + "state_id": 942, + "state_code": "RI", + "country_id": 159, + "country_code": "NI", + "latitude": "11.43927000", + "longitude": "-85.93891000" + }, + { + "id": "77158", + "name": "Bluefields", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.01366000", + "longitude": "-83.76353000" + }, + { + "id": "77160", + "name": "Bocana de Paiwas", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.78571000", + "longitude": "-85.12269000" + }, + { + "id": "77173", + "name": "Corn Island", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.17575000", + "longitude": "-83.06145000" + }, + { + "id": "77185", + "name": "El Rama", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.15965000", + "longitude": "-84.21952000" + }, + { + "id": "77189", + "name": "El Tortuguero", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.82247000", + "longitude": "-84.19629000" + }, + { + "id": "77198", + "name": "Kukrahill", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.24096000", + "longitude": "-83.74517000" + }, + { + "id": "77203", + "name": "La Cruz de Río Grande", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "13.11290000", + "longitude": "-84.18588000" + }, + { + "id": "77208", + "name": "Laguna de Perlas", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.34294000", + "longitude": "-83.67123000" + }, + { + "id": "77221", + "name": "Muelle de los Bueyes", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "12.06999000", + "longitude": "-84.53503000" + }, + { + "id": "77244", + "name": "Nueva Guinea", + "state_id": 952, + "state_code": "AS", + "country_id": 159, + "country_code": "NI", + "latitude": "11.68758000", + "longitude": "-84.45616000" + }, + { + "id": "76675", + "name": "Agadez", + "state_id": 71, + "state_code": "1", + "country_id": 160, + "country_code": "NE", + "latitude": "16.97333000", + "longitude": "7.99111000" + }, + { + "id": "76677", + "name": "Alaghsas", + "state_id": 71, + "state_code": "1", + "country_id": 160, + "country_code": "NE", + "latitude": "17.01870000", + "longitude": "8.01680000" + }, + { + "id": "76678", + "name": "Arlit", + "state_id": 71, + "state_code": "1", + "country_id": 160, + "country_code": "NE", + "latitude": "18.83409000", + "longitude": "7.43327000" + }, + { + "id": "76681", + "name": "Bilma", + "state_id": 71, + "state_code": "1", + "country_id": 160, + "country_code": "NE", + "latitude": "18.68532000", + "longitude": "12.91643000" + }, + { + "id": "76690", + "name": "Département de Bilma", + "state_id": 71, + "state_code": "1", + "country_id": 160, + "country_code": "NE", + "latitude": "20.50000000", + "longitude": "13.25000000" + }, + { + "id": "76711", + "name": "Département de Tchirozérine", + "state_id": 71, + "state_code": "1", + "country_id": 160, + "country_code": "NE", + "latitude": "17.43293000", + "longitude": "7.89321000" + }, + { + "id": "76694", + "name": "Département de Diffa", + "state_id": 72, + "state_code": "2", + "country_id": 160, + "country_code": "NE", + "latitude": "13.66667000", + "longitude": "12.50000000" + }, + { + "id": "76705", + "name": "Département de Maïné-Soroa", + "state_id": 72, + "state_code": "2", + "country_id": 160, + "country_code": "NE", + "latitude": "13.31206000", + "longitude": "12.08321000" + }, + { + "id": "76706", + "name": "Département de Nguigmi", + "state_id": 72, + "state_code": "2", + "country_id": 160, + "country_code": "NE", + "latitude": "14.20753000", + "longitude": "13.12177000" + }, + { + "id": "76686", + "name": "Diffa", + "state_id": 72, + "state_code": "2", + "country_id": 160, + "country_code": "NE", + "latitude": "13.31536000", + "longitude": "12.61135000" + }, + { + "id": "76729", + "name": "Maïné Soroa", + "state_id": 72, + "state_code": "2", + "country_id": 160, + "country_code": "NE", + "latitude": "13.21139000", + "longitude": "12.02410000" + }, + { + "id": "76731", + "name": "Nguigmi", + "state_id": 72, + "state_code": "2", + "country_id": 160, + "country_code": "NE", + "latitude": "14.24953000", + "longitude": "13.10921000" + }, + { + "id": "76683", + "name": "Boboye Department", + "state_id": 68, + "state_code": "3", + "country_id": 160, + "country_code": "NE", + "latitude": "13.08167000", + "longitude": "2.91083000" + }, + { + "id": "76695", + "name": "Département de Dogondoutchi", + "state_id": 68, + "state_code": "3", + "country_id": 160, + "country_code": "NE", + "latitude": "13.50000000", + "longitude": "4.00000000" + }, + { + "id": "76696", + "name": "Département de Dosso", + "state_id": 68, + "state_code": "3", + "country_id": 160, + "country_code": "NE", + "latitude": "12.83333000", + "longitude": "3.33333000" + }, + { + "id": "76698", + "name": "Département de Gaya", + "state_id": 68, + "state_code": "3", + "country_id": 160, + "country_code": "NE", + "latitude": "11.95970000", + "longitude": "3.46045000" + }, + { + "id": "76702", + "name": "Département de Loga", + "state_id": 68, + "state_code": "3", + "country_id": 160, + "country_code": "NE", + "latitude": "13.63333000", + "longitude": "3.50000000" + }, + { + "id": "76687", + "name": "Dogondoutchi", + "state_id": 68, + "state_code": "3", + "country_id": 160, + "country_code": "NE", + "latitude": "13.64030000", + "longitude": "4.02649000" + }, + { + "id": "76688", + "name": "Dosso", + "state_id": 68, + "state_code": "3", + "country_id": 160, + "country_code": "NE", + "latitude": "13.04900000", + "longitude": "3.19370000" + }, + { + "id": "76716", + "name": "Gaya", + "state_id": 68, + "state_code": "3", + "country_id": 160, + "country_code": "NE", + "latitude": "11.88435000", + "longitude": "3.44919000" + }, + { + "id": "76676", + "name": "Aguié", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "13.50601000", + "longitude": "7.77863000" + }, + { + "id": "76685", + "name": "Dakoro", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "14.51056000", + "longitude": "6.76500000" + }, + { + "id": "76714", + "name": "Département d’Aguié", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "13.46976000", + "longitude": "7.74219000" + }, + { + "id": "76693", + "name": "Département de Dakoro", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "14.75000000", + "longitude": "7.00000000" + }, + { + "id": "76704", + "name": "Département de Mayahi", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "14.10000000", + "longitude": "7.60000000" + }, + { + "id": "76712", + "name": "Département de Tessaoua", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "13.60000000", + "longitude": "7.90000000" + }, + { + "id": "76718", + "name": "Guidan Roumdji Department", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "13.65750000", + "longitude": "6.69583000" + }, + { + "id": "76724", + "name": "Madarounfa", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "13.28253000", + "longitude": "7.15495000" + }, + { + "id": "76726", + "name": "Maradi", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "13.50000000", + "longitude": "7.10174000" + }, + { + "id": "76728", + "name": "Mayahi", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "13.95532000", + "longitude": "7.67122000" + }, + { + "id": "76738", + "name": "Tessaoua", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "13.75737000", + "longitude": "7.98740000" + }, + { + "id": "76739", + "name": "Tibiri", + "state_id": 70, + "state_code": "4", + "country_id": 160, + "country_code": "NE", + "latitude": "13.56271000", + "longitude": "7.04848000" + }, + { + "id": "76674", + "name": "Abalak", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "15.41618000", + "longitude": "6.16975000" + }, + { + "id": "76682", + "name": "Birni N Konni", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "13.79599000", + "longitude": "5.25026000" + }, + { + "id": "76684", + "name": "Bouza", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "14.42293000", + "longitude": "6.04278000" + }, + { + "id": "76689", + "name": "Département d' Illéla", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "14.25000000", + "longitude": "5.00000000" + }, + { + "id": "76691", + "name": "Département de Birni Nkonni", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "13.90000000", + "longitude": "5.25000000" + }, + { + "id": "76692", + "name": "Département de Bouza", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "14.43333000", + "longitude": "6.00000000" + }, + { + "id": "76701", + "name": "Département de Keïta", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "14.80000000", + "longitude": "6.00000000" + }, + { + "id": "76703", + "name": "Département de Madaoua", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "13.99988000", + "longitude": "6.10012000" + }, + { + "id": "76709", + "name": "Département de Tahoua", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "14.80000000", + "longitude": "4.80000000" + }, + { + "id": "76710", + "name": "Département de Tchin-Tabaraden", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "15.86694000", + "longitude": "5.71042000" + }, + { + "id": "76719", + "name": "Illéla", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "14.46050000", + "longitude": "5.24370000" + }, + { + "id": "76720", + "name": "Keïta", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "14.75510000", + "longitude": "5.77490000" + }, + { + "id": "76723", + "name": "Madaoua", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "14.07300000", + "longitude": "5.96000000" + }, + { + "id": "76734", + "name": "Tahoua", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "14.88880000", + "longitude": "5.26920000" + }, + { + "id": "76736", + "name": "Tchintabaraden", + "state_id": 73, + "state_code": "5", + "country_id": 160, + "country_code": "NE", + "latitude": "15.89690000", + "longitude": "5.79850000" + }, + { + "id": "76679", + "name": "Ayorou", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "14.73075000", + "longitude": "0.91739000" + }, + { + "id": "76680", + "name": "Balleyara", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "13.72848000", + "longitude": "2.87503000" + }, + { + "id": "76697", + "name": "Département de Filingué", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "14.31645000", + "longitude": "3.23611000" + }, + { + "id": "76707", + "name": "Département de Ouallam", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "14.63333000", + "longitude": "2.25000000" + }, + { + "id": "76708", + "name": "Département de Say", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "13.03579000", + "longitude": "2.22112000" + }, + { + "id": "76715", + "name": "Filingué", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "14.35210000", + "longitude": "3.31680000" + }, + { + "id": "76721", + "name": "Kollo", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "13.30430000", + "longitude": "2.33900000" + }, + { + "id": "76722", + "name": "Kollo Department", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "13.57600000", + "longitude": "2.45200000" + }, + { + "id": "76732", + "name": "Ouallam", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "14.31641000", + "longitude": "2.08597000" + }, + { + "id": "76733", + "name": "Say", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "13.10070000", + "longitude": "2.36890000" + }, + { + "id": "76742", + "name": "Téra", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "14.00776000", + "longitude": "0.75306000" + }, + { + "id": "76737", + "name": "Tera Department", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "14.18600000", + "longitude": "0.84300000" + }, + { + "id": "76741", + "name": "Tillabéri", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "14.20711000", + "longitude": "1.45418000" + }, + { + "id": "76740", + "name": "Tillaberi Department", + "state_id": 67, + "state_code": "6", + "country_id": 160, + "country_code": "NE", + "latitude": "14.51600000", + "longitude": "1.44300000" + }, + { + "id": "76699", + "name": "Département de Gouré", + "state_id": 69, + "state_code": "7", + "country_id": 160, + "country_code": "NE", + "latitude": "14.01618000", + "longitude": "10.14722000" + }, + { + "id": "76700", + "name": "Département de Kantché", + "state_id": 69, + "state_code": "7", + "country_id": 160, + "country_code": "NE", + "latitude": "13.40000000", + "longitude": "8.60000000" + }, + { + "id": "76713", + "name": "Département de Tânout", + "state_id": 69, + "state_code": "7", + "country_id": 160, + "country_code": "NE", + "latitude": "14.75000000", + "longitude": "8.33333000" + }, + { + "id": "76717", + "name": "Gouré", + "state_id": 69, + "state_code": "7", + "country_id": 160, + "country_code": "NE", + "latitude": "13.98350000", + "longitude": "10.27035000" + }, + { + "id": "76725", + "name": "Magaria", + "state_id": 69, + "state_code": "7", + "country_id": 160, + "country_code": "NE", + "latitude": "12.99826000", + "longitude": "8.90991000" + }, + { + "id": "76727", + "name": "Matamey", + "state_id": 69, + "state_code": "7", + "country_id": 160, + "country_code": "NE", + "latitude": "13.42309000", + "longitude": "8.47485000" + }, + { + "id": "76730", + "name": "Mirriah", + "state_id": 69, + "state_code": "7", + "country_id": 160, + "country_code": "NE", + "latitude": "13.70727000", + "longitude": "9.15013000" + }, + { + "id": "76735", + "name": "Tanout", + "state_id": 69, + "state_code": "7", + "country_id": 160, + "country_code": "NE", + "latitude": "14.97089000", + "longitude": "8.88786000" + }, + { + "id": "76743", + "name": "Zinder", + "state_id": 69, + "state_code": "7", + "country_id": 160, + "country_code": "NE", + "latitude": "13.80716000", + "longitude": "8.98810000" + }, + { + "id": "76744", + "name": "Aba", + "state_id": 303, + "state_code": "AB", + "country_id": 161, + "country_code": "NG", + "latitude": "5.10658000", + "longitude": "7.36667000" + }, + { + "id": "76769", + "name": "Amaigbo", + "state_id": 303, + "state_code": "AB", + "country_id": 161, + "country_code": "NG", + "latitude": "5.78917000", + "longitude": "7.83829000" + }, + { + "id": "76779", + "name": "Arochukwu", + "state_id": 303, + "state_code": "AB", + "country_id": 161, + "country_code": "NG", + "latitude": "5.38941000", + "longitude": "7.91235000" + }, + { + "id": "76799", + "name": "Bende", + "state_id": 303, + "state_code": "AB", + "country_id": 161, + "country_code": "NG", + "latitude": "5.55874000", + "longitude": "7.63359000" + }, + { + "id": "77057", + "name": "Ohafia-Ifigh", + "state_id": 303, + "state_code": "AB", + "country_id": 161, + "country_code": "NG", + "latitude": "5.61455000", + "longitude": "7.81191000" + }, + { + "id": "77125", + "name": "Umuahia", + "state_id": 303, + "state_code": "AB", + "country_id": 161, + "country_code": "NG", + "latitude": "5.52491000", + "longitude": "7.49461000" + }, + { + "id": "76876", + "name": "Ganye", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "8.43497000", + "longitude": "12.05107000" + }, + { + "id": "76885", + "name": "Gombi", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.16756000", + "longitude": "12.73684000" + }, + { + "id": "76904", + "name": "Holma", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "9.89863000", + "longitude": "13.05450000" + }, + { + "id": "76962", + "name": "Jimeta", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "9.27949000", + "longitude": "12.45819000" + }, + { + "id": "77013", + "name": "Madagali", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.88942000", + "longitude": "13.62832000" + }, + { + "id": "77027", + "name": "Mayo-Belwa", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "9.05421000", + "longitude": "12.05794000" + }, + { + "id": "77035", + "name": "Mubi", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.26858000", + "longitude": "13.26701000" + }, + { + "id": "77041", + "name": "Ngurore", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "9.28871000", + "longitude": "12.24026000" + }, + { + "id": "77046", + "name": "Numan", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "9.46374000", + "longitude": "12.03062000" + }, + { + "id": "77114", + "name": "Toungo", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "8.11733000", + "longitude": "12.04611000" + }, + { + "id": "77146", + "name": "Yola", + "state_id": 320, + "state_code": "AD", + "country_id": 161, + "country_code": "NG", + "latitude": "9.20839000", + "longitude": "12.48146000" + }, + { + "id": "76858", + "name": "Eket", + "state_id": 304, + "state_code": "AK", + "country_id": 161, + "country_code": "NG", + "latitude": "4.64231000", + "longitude": "7.92438000" + }, + { + "id": "76865", + "name": "Esuk Oron", + "state_id": 304, + "state_code": "AK", + "country_id": 161, + "country_code": "NG", + "latitude": "4.80293000", + "longitude": "8.25341000" + }, + { + "id": "76937", + "name": "Ikot Ekpene", + "state_id": 304, + "state_code": "AK", + "country_id": 161, + "country_code": "NG", + "latitude": "5.18194000", + "longitude": "7.71481000" + }, + { + "id": "76955", + "name": "Itu", + "state_id": 304, + "state_code": "AK", + "country_id": 161, + "country_code": "NG", + "latitude": "5.20131000", + "longitude": "7.98373000" + }, + { + "id": "77129", + "name": "Uyo", + "state_id": 304, + "state_code": "AK", + "country_id": 161, + "country_code": "NG", + "latitude": "5.05127000", + "longitude": "7.93350000" + }, + { + "id": "76759", + "name": "Agulu", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.10045000", + "longitude": "7.06100000" + }, + { + "id": "76781", + "name": "Atani", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.01277000", + "longitude": "6.74768000" + }, + { + "id": "76785", + "name": "Awka", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.21269000", + "longitude": "7.07199000" + }, + { + "id": "76863", + "name": "Enugu-Ukwu", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.17146000", + "longitude": "7.00525000" + }, + { + "id": "76920", + "name": "Igbo-Ukwu", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.01798000", + "longitude": "7.02027000" + }, + { + "id": "76924", + "name": "Ihiala", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "5.85475000", + "longitude": "6.85944000" + }, + { + "id": "77043", + "name": "Nkpor", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.15038000", + "longitude": "6.83042000" + }, + { + "id": "77044", + "name": "Nnewi", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.01962000", + "longitude": "6.91729000" + }, + { + "id": "77068", + "name": "Onitsha", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.14978000", + "longitude": "6.78569000" + }, + { + "id": "77083", + "name": "Ozubulu", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "5.95753000", + "longitude": "6.85305000" + }, + { + "id": "77120", + "name": "Uga", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "5.93576000", + "longitude": "7.07930000" + }, + { + "id": "77128", + "name": "Uruobo-Okija", + "state_id": 315, + "state_code": "AN", + "country_id": 161, + "country_code": "NG", + "latitude": "5.90016000", + "longitude": "6.84312000" + }, + { + "id": "76786", + "name": "Azare", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.67478000", + "longitude": "10.19069000" + }, + { + "id": "76796", + "name": "Bauchi", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "10.31032000", + "longitude": "9.84388000" + }, + { + "id": "76810", + "name": "Boi", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "9.56109000", + "longitude": "9.50154000" + }, + { + "id": "76818", + "name": "Bununu", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "9.88224000", + "longitude": "9.68058000" + }, + { + "id": "76835", + "name": "Darazo", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "10.99920000", + "longitude": "10.41062000" + }, + { + "id": "76836", + "name": "Dass", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "10.00065000", + "longitude": "9.51596000" + }, + { + "id": "76843", + "name": "Dindima", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "10.22629000", + "longitude": "10.15132000" + }, + { + "id": "76844", + "name": "Disina", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.48135000", + "longitude": "9.91903000" + }, + { + "id": "76871", + "name": "Gabarin", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.10930000", + "longitude": "10.44410000" + }, + { + "id": "76898", + "name": "Gwaram", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "10.23295000", + "longitude": "10.28572000" + }, + { + "id": "76978", + "name": "Kari", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.24710000", + "longitude": "10.56100000" + }, + { + "id": "77005", + "name": "Lame", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "10.44154000", + "longitude": "9.23955000" + }, + { + "id": "77009", + "name": "Lere", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "9.71052000", + "longitude": "9.34029000" + }, + { + "id": "77015", + "name": "Madara", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.77980000", + "longitude": "10.44790000" + }, + { + "id": "77031", + "name": "Misau", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.31370000", + "longitude": "10.46664000" + }, + { + "id": "77095", + "name": "Sade", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.35950000", + "longitude": "10.67320000" + }, + { + "id": "77140", + "name": "Yamrat", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "10.11161000", + "longitude": "9.82604000" + }, + { + "id": "77141", + "name": "Yanda Bayo", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.50710000", + "longitude": "10.74590000" + }, + { + "id": "77147", + "name": "Yuli", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "9.69707000", + "longitude": "10.27350000" + }, + { + "id": "77148", + "name": "Zadawa", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.44960000", + "longitude": "10.36720000" + }, + { + "id": "77150", + "name": "Zalanga", + "state_id": 312, + "state_code": "BA", + "country_id": 161, + "country_code": "NG", + "latitude": "10.61432000", + "longitude": "10.17647000" + }, + { + "id": "76770", + "name": "Amassoma", + "state_id": 305, + "state_code": "BY", + "country_id": 161, + "country_code": "NG", + "latitude": "4.97032000", + "longitude": "6.10915000" + }, + { + "id": "77116", + "name": "Twon-Brass", + "state_id": 305, + "state_code": "BY", + "country_id": 161, + "country_code": "NG", + "latitude": "4.31231000", + "longitude": "6.24091000" + }, + { + "id": "77145", + "name": "Yenagoa", + "state_id": 305, + "state_code": "BY", + "country_id": 161, + "country_code": "NG", + "latitude": "4.92675000", + "longitude": "6.26764000" + }, + { + "id": "76767", + "name": "Aliade", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.29627000", + "longitude": "8.48278000" + }, + { + "id": "76811", + "name": "Boju", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.35572000", + "longitude": "7.89303000" + }, + { + "id": "76922", + "name": "Igbor", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.45123000", + "longitude": "8.60805000" + }, + { + "id": "77021", + "name": "Makurdi", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.73375000", + "longitude": "8.52139000" + }, + { + "id": "77049", + "name": "Ochobo", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.18045000", + "longitude": "7.98240000" + }, + { + "id": "77077", + "name": "Otukpa", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.10168000", + "longitude": "7.65945000" + }, + { + "id": "77110", + "name": "Takum", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.26667000", + "longitude": "9.98333000" + }, + { + "id": "77121", + "name": "Ugbokpo", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.65321000", + "longitude": "7.88410000" + }, + { + "id": "77142", + "name": "Yandev", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.36308000", + "longitude": "9.04235000" + }, + { + "id": "77149", + "name": "Zaki Biam", + "state_id": 291, + "state_code": "BE", + "country_id": 161, + "country_code": "NG", + "latitude": "7.50671000", + "longitude": "9.61040000" + }, + { + "id": "76793", + "name": "Bama", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.52134000", + "longitude": "13.68952000" + }, + { + "id": "76801", + "name": "Benisheikh", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.80919000", + "longitude": "12.49151000" + }, + { + "id": "76808", + "name": "Biu", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.61285000", + "longitude": "12.19458000" + }, + { + "id": "76814", + "name": "Bornu Yassu", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.27503000", + "longitude": "12.56856000" + }, + { + "id": "76825", + "name": "Damasak", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.10518000", + "longitude": "12.50854000" + }, + { + "id": "76827", + "name": "Damboa", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.15534000", + "longitude": "12.75638000" + }, + { + "id": "76842", + "name": "Dikwa", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.03609000", + "longitude": "13.91815000" + }, + { + "id": "76874", + "name": "Gamboru", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.37299000", + "longitude": "14.20690000" + }, + { + "id": "76901", + "name": "Gwoza", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.08313000", + "longitude": "13.69595000" + }, + { + "id": "76991", + "name": "Kukawa", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.92475000", + "longitude": "13.56617000" + }, + { + "id": "77016", + "name": "Magumeri", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.11451000", + "longitude": "12.82620000" + }, + { + "id": "77018", + "name": "Maiduguri", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.84692000", + "longitude": "13.15712000" + }, + { + "id": "77024", + "name": "Marte", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.36532000", + "longitude": "13.82930000" + }, + { + "id": "77030", + "name": "Miringa", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.73115000", + "longitude": "12.14626000" + }, + { + "id": "77033", + "name": "Monguno", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.67059000", + "longitude": "13.61224000" + }, + { + "id": "77040", + "name": "Ngala", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.34053000", + "longitude": "14.18670000" + }, + { + "id": "77101", + "name": "Shaffa", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.50673000", + "longitude": "12.33315000" + }, + { + "id": "77103", + "name": "Shani", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.21824000", + "longitude": "12.06059000" + }, + { + "id": "77113", + "name": "Tokombere", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.22135000", + "longitude": "13.48783000" + }, + { + "id": "77117", + "name": "Uba", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.45509000", + "longitude": "13.22233000" + }, + { + "id": "77138", + "name": "Wuyo", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.38522000", + "longitude": "11.69678000" + }, + { + "id": "77139", + "name": "Yajiwa", + "state_id": 307, + "state_code": "BO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.38623000", + "longitude": "12.71992000" + }, + { + "id": "76761", + "name": "Akankpa", + "state_id": 314, + "state_code": "CR", + "country_id": 161, + "country_code": "NG", + "latitude": "5.12640000", + "longitude": "8.18980000" + }, + { + "id": "76821", + "name": "Calabar", + "state_id": 314, + "state_code": "CR", + "country_id": 161, + "country_code": "NG", + "latitude": "4.95893000", + "longitude": "8.32695000" + }, + { + "id": "76873", + "name": "Gakem", + "state_id": 314, + "state_code": "CR", + "country_id": 161, + "country_code": "NG", + "latitude": "6.76963000", + "longitude": "8.99120000" + }, + { + "id": "76931", + "name": "Ikang", + "state_id": 314, + "state_code": "CR", + "country_id": 161, + "country_code": "NG", + "latitude": "4.78978000", + "longitude": "8.53160000" + }, + { + "id": "77122", + "name": "Ugep", + "state_id": 314, + "state_code": "CR", + "country_id": 161, + "country_code": "NG", + "latitude": "5.80865000", + "longitude": "8.08098000" + }, + { + "id": "76748", + "name": "Abraka", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.79023000", + "longitude": "6.10473000" + }, + { + "id": "76756", + "name": "Agbor", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "6.25375000", + "longitude": "6.19420000" + }, + { + "id": "76780", + "name": "Asaba", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "6.19824000", + "longitude": "6.73187000" + }, + { + "id": "76813", + "name": "Bomadi", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.16073000", + "longitude": "5.92375000" + }, + { + "id": "76820", + "name": "Burutu", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.35328000", + "longitude": "5.50826000" + }, + { + "id": "76996", + "name": "Kwale", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.70773000", + "longitude": "6.43402000" + }, + { + "id": "77047", + "name": "Obiaruku", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.84672000", + "longitude": "6.15290000" + }, + { + "id": "77056", + "name": "Ogwashi-Uku", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "6.17811000", + "longitude": "6.52461000" + }, + { + "id": "77071", + "name": "Orerokpe", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.63747000", + "longitude": "5.89013000" + }, + { + "id": "77086", + "name": "Patani", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.22885000", + "longitude": "6.19139000" + }, + { + "id": "77099", + "name": "Sapele", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.89405000", + "longitude": "5.67666000" + }, + { + "id": "77123", + "name": "Ughelli", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.48956000", + "longitude": "6.00407000" + }, + { + "id": "77126", + "name": "Umunede", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "6.26549000", + "longitude": "6.30962000" + }, + { + "id": "77133", + "name": "Warri", + "state_id": 316, + "state_code": "DE", + "country_id": 161, + "country_code": "NG", + "latitude": "5.51737000", + "longitude": "5.75006000" + }, + { + "id": "76745", + "name": "Abakaliki", + "state_id": 311, + "state_code": "EB", + "country_id": 161, + "country_code": "NG", + "latitude": "6.32485000", + "longitude": "8.11368000" + }, + { + "id": "76754", + "name": "Afikpo", + "state_id": 311, + "state_code": "EB", + "country_id": 161, + "country_code": "NG", + "latitude": "5.89258000", + "longitude": "7.93534000" + }, + { + "id": "76852", + "name": "Effium", + "state_id": 311, + "state_code": "EB", + "country_id": 161, + "country_code": "NG", + "latitude": "6.63105000", + "longitude": "8.05814000" + }, + { + "id": "76867", + "name": "Ezza-Ohu", + "state_id": 311, + "state_code": "EB", + "country_id": 161, + "country_code": "NG", + "latitude": "6.44094000", + "longitude": "8.08432000" + }, + { + "id": "76954", + "name": "Isieke", + "state_id": 311, + "state_code": "EB", + "country_id": 161, + "country_code": "NG", + "latitude": "6.38186000", + "longitude": "8.03736000" + }, + { + "id": "76757", + "name": "Agenebode", + "state_id": 318, + "state_code": "ED", + "country_id": 161, + "country_code": "NG", + "latitude": "7.10512000", + "longitude": "6.69381000" + }, + { + "id": "76782", + "name": "Auchi", + "state_id": 318, + "state_code": "ED", + "country_id": 161, + "country_code": "NG", + "latitude": "7.06756000", + "longitude": "6.26360000" + }, + { + "id": "76800", + "name": "Benin City", + "state_id": 318, + "state_code": "ED", + "country_id": 161, + "country_code": "NG", + "latitude": "6.33815000", + "longitude": "5.62575000" + }, + { + "id": "76859", + "name": "Ekpoma", + "state_id": 318, + "state_code": "ED", + "country_id": 161, + "country_code": "NG", + "latitude": "6.74300000", + "longitude": "6.14029000" + }, + { + "id": "76916", + "name": "Igarra", + "state_id": 318, + "state_code": "ED", + "country_id": 161, + "country_code": "NG", + "latitude": "7.29366000", + "longitude": "6.10432000" + }, + { + "id": "76944", + "name": "Illushi", + "state_id": 318, + "state_code": "ED", + "country_id": 161, + "country_code": "NG", + "latitude": "6.67033000", + "longitude": "6.62907000" + }, + { + "id": "77104", + "name": "Siluko", + "state_id": 318, + "state_code": "ED", + "country_id": 161, + "country_code": "NG", + "latitude": "6.53589000", + "longitude": "5.16005000" + }, + { + "id": "77118", + "name": "Ubiaja", + "state_id": 318, + "state_code": "ED", + "country_id": 161, + "country_code": "NG", + "latitude": "6.65581000", + "longitude": "6.38494000" + }, + { + "id": "77127", + "name": "Uromi", + "state_id": 318, + "state_code": "ED", + "country_id": 161, + "country_code": "NG", + "latitude": "6.70000000", + "longitude": "6.33333000" + }, + { + "id": "76752", + "name": "Ado-Ekiti", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.62329000", + "longitude": "5.22087000" + }, + { + "id": "76777", + "name": "Aramoko-Ekiti", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.70483000", + "longitude": "5.04054000" + }, + { + "id": "76853", + "name": "Efon-Alaaye", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.65649000", + "longitude": "4.92235000" + }, + { + "id": "76860", + "name": "Emure-Ekiti", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.43636000", + "longitude": "5.45925000" + }, + { + "id": "76913", + "name": "Ifaki", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.78942000", + "longitude": "5.24852000" + }, + { + "id": "76917", + "name": "Igbara-Odo", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.50251000", + "longitude": "5.06258000" + }, + { + "id": "76923", + "name": "Igede-Ekiti", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.66850000", + "longitude": "5.12627000" + }, + { + "id": "76930", + "name": "Ijero-Ekiti", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.81514000", + "longitude": "5.06716000" + }, + { + "id": "76934", + "name": "Ikere-Ekiti", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.49748000", + "longitude": "5.23041000" + }, + { + "id": "76950", + "name": "Ipoti", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.87377000", + "longitude": "5.07691000" + }, + { + "id": "76953", + "name": "Ise-Ekiti", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.46478000", + "longitude": "5.42333000" + }, + { + "id": "77058", + "name": "Oke Ila", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.95000000", + "longitude": "4.98333000" + }, + { + "id": "77066", + "name": "Omuo-Ekiti", + "state_id": 309, + "state_code": "EK", + "country_id": 161, + "country_code": "NG", + "latitude": "7.75833000", + "longitude": "5.72227000" + }, + { + "id": "76750", + "name": "Adani", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.73971000", + "longitude": "7.01117000" + }, + { + "id": "76762", + "name": "Ake-Eze", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "5.91677000", + "longitude": "7.67615000" + }, + { + "id": "76764", + "name": "Aku", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.70902000", + "longitude": "7.31826000" + }, + { + "id": "76768", + "name": "Amagunze", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.33063000", + "longitude": "7.65247000" + }, + { + "id": "76784", + "name": "Awgu", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.07278000", + "longitude": "7.47739000" + }, + { + "id": "76855", + "name": "Eha Amufu", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.65915000", + "longitude": "7.75961000" + }, + { + "id": "76861", + "name": "Enugu", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.44132000", + "longitude": "7.49883000" + }, + { + "id": "76862", + "name": "Enugu-Ezike", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.98270000", + "longitude": "7.45534000" + }, + { + "id": "76866", + "name": "Ete", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "7.08956000", + "longitude": "7.45341000" + }, + { + "id": "76933", + "name": "Ikem", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.77993000", + "longitude": "7.71484000" + }, + { + "id": "77028", + "name": "Mberubu", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.17310000", + "longitude": "7.63017000" + }, + { + "id": "77045", + "name": "Nsukka", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.85783000", + "longitude": "7.39577000" + }, + { + "id": "77048", + "name": "Obolo-Eke (1)", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.88333000", + "longitude": "7.63333000" + }, + { + "id": "77069", + "name": "Opi", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.78223000", + "longitude": "7.43319000" + }, + { + "id": "77119", + "name": "Udi", + "state_id": 289, + "state_code": "EN", + "country_id": 161, + "country_code": "NG", + "latitude": "6.31592000", + "longitude": "7.42086000" + }, + { + "id": "76749", + "name": "Abuja", + "state_id": 293, + "state_code": "FC", + "country_id": 161, + "country_code": "NG", + "latitude": "9.05785000", + "longitude": "7.49508000" + }, + { + "id": "76990", + "name": "Kuje", + "state_id": 293, + "state_code": "FC", + "country_id": 161, + "country_code": "NG", + "latitude": "8.87952000", + "longitude": "7.22756000" + }, + { + "id": "76997", + "name": "Kwali", + "state_id": 293, + "state_code": "FC", + "country_id": 161, + "country_code": "NG", + "latitude": "8.88346000", + "longitude": "7.01858000" + }, + { + "id": "77014", + "name": "Madala", + "state_id": 293, + "state_code": "FC", + "country_id": 161, + "country_code": "NG", + "latitude": "9.10444000", + "longitude": "7.21333000" + }, + { + "id": "76763", + "name": "Akko", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.28899000", + "longitude": "10.97320000" + }, + { + "id": "76794", + "name": "Bara", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.37444000", + "longitude": "10.72884000" + }, + { + "id": "76802", + "name": "Billiri", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "9.86545000", + "longitude": "11.22624000" + }, + { + "id": "76823", + "name": "Dadiya", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "9.61667000", + "longitude": "11.43333000" + }, + { + "id": "76839", + "name": "Deba", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.21187000", + "longitude": "11.38710000" + }, + { + "id": "76846", + "name": "Dukku", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.82379000", + "longitude": "10.77221000" + }, + { + "id": "76877", + "name": "Garko", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.17506000", + "longitude": "11.16458000" + }, + { + "id": "76884", + "name": "Gombe", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.28969000", + "longitude": "11.16729000" + }, + { + "id": "76903", + "name": "Hinna", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.30426000", + "longitude": "11.49905000" + }, + { + "id": "76968", + "name": "Kafarati", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.38304000", + "longitude": "11.09567000" + }, + { + "id": "76973", + "name": "Kaltungo", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "9.81998000", + "longitude": "11.30871000" + }, + { + "id": "76993", + "name": "Kumo", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "10.04807000", + "longitude": "11.21055000" + }, + { + "id": "77037", + "name": "Nafada", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.09596000", + "longitude": "11.33261000" + }, + { + "id": "77088", + "name": "Pindiga", + "state_id": 310, + "state_code": "GO", + "country_id": 161, + "country_code": "NG", + "latitude": "9.98433000", + "longitude": "10.95229000" + }, + { + "id": "76925", + "name": "Iho", + "state_id": 308, + "state_code": "IM", + "country_id": 161, + "country_code": "NG", + "latitude": "5.58225000", + "longitude": "7.09896000" + }, + { + "id": "77055", + "name": "Oguta", + "state_id": 308, + "state_code": "IM", + "country_id": 161, + "country_code": "NG", + "latitude": "5.71044000", + "longitude": "6.80936000" + }, + { + "id": "77062", + "name": "Okigwe", + "state_id": 308, + "state_code": "IM", + "country_id": 161, + "country_code": "NG", + "latitude": "5.82917000", + "longitude": "7.35056000" + }, + { + "id": "77073", + "name": "Orlu", + "state_id": 308, + "state_code": "IM", + "country_id": 161, + "country_code": "NG", + "latitude": "5.79565000", + "longitude": "7.03513000" + }, + { + "id": "77074", + "name": "Orodo", + "state_id": 308, + "state_code": "IM", + "country_id": 161, + "country_code": "NG", + "latitude": "5.61667000", + "longitude": "7.03333000" + }, + { + "id": "77078", + "name": "Owerri", + "state_id": 308, + "state_code": "IM", + "country_id": 161, + "country_code": "NG", + "latitude": "5.48363000", + "longitude": "7.03325000" + }, + { + "id": "76788", + "name": "Babura", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "12.77256000", + "longitude": "9.01525000" + }, + { + "id": "76806", + "name": "Birnin Kudu", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "11.45207000", + "longitude": "9.47856000" + }, + { + "id": "76807", + "name": "Birniwa", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "12.79070000", + "longitude": "10.23614000" + }, + { + "id": "76848", + "name": "Dutse", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "11.75618000", + "longitude": "9.33896000" + }, + { + "id": "76872", + "name": "Gagarawa", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "12.40848000", + "longitude": "9.52881000" + }, + { + "id": "76892", + "name": "Gumel", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "12.62690000", + "longitude": "9.38807000" + }, + { + "id": "76897", + "name": "Gwaram", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "11.27727000", + "longitude": "9.88385000" + }, + { + "id": "76902", + "name": "Hadejia", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "12.45347000", + "longitude": "10.04115000" + }, + { + "id": "76969", + "name": "Kafin Hausa", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "12.23933000", + "longitude": "9.91105000" + }, + { + "id": "76981", + "name": "Kazaure", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "12.64846000", + "longitude": "8.41178000" + }, + { + "id": "76985", + "name": "Kiyawa", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "11.78442000", + "longitude": "9.60690000" + }, + { + "id": "77022", + "name": "Mallammaduri", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "12.56427000", + "longitude": "9.95727000" + }, + { + "id": "77091", + "name": "Ringim", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "12.15143000", + "longitude": "9.16216000" + }, + { + "id": "77097", + "name": "Samamiya", + "state_id": 288, + "state_code": "JI", + "country_id": 161, + "country_code": "NG", + "latitude": "11.34873000", + "longitude": "9.63989000" + }, + { + "id": "76772", + "name": "Anchau", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.96245000", + "longitude": "8.39233000" + }, + { + "id": "76819", + "name": "Burumburum", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "11.39106000", + "longitude": "8.72341000" + }, + { + "id": "76849", + "name": "Dutsen Wai", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.85009000", + "longitude": "8.19900000" + }, + { + "id": "76905", + "name": "Hunkuyi", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "11.26680000", + "longitude": "7.64916000" + }, + { + "id": "76965", + "name": "Kachia", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "9.87342000", + "longitude": "7.95407000" + }, + { + "id": "76966", + "name": "Kaduna", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.52641000", + "longitude": "7.43879000" + }, + { + "id": "76967", + "name": "Kafanchan", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "9.58126000", + "longitude": "8.29260000" + }, + { + "id": "76970", + "name": "Kagoro", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "9.60776000", + "longitude": "8.39043000" + }, + { + "id": "76972", + "name": "Kajuru", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.32281000", + "longitude": "7.68462000" + }, + { + "id": "76989", + "name": "Kujama", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.45767000", + "longitude": "7.63808000" + }, + { + "id": "77010", + "name": "Lere", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.38584000", + "longitude": "8.57286000" + }, + { + "id": "77023", + "name": "Mando", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.71667000", + "longitude": "6.56667000" + }, + { + "id": "77098", + "name": "Saminaka", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.41227000", + "longitude": "8.68748000" + }, + { + "id": "77105", + "name": "Soba", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "10.98133000", + "longitude": "8.05749000" + }, + { + "id": "77106", + "name": "Sofo-Birnin-Gwari", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "11.01537000", + "longitude": "6.78036000" + }, + { + "id": "77151", + "name": "Zaria", + "state_id": 294, + "state_code": "KD", + "country_id": 161, + "country_code": "NG", + "latitude": "11.11128000", + "longitude": "7.72270000" + }, + { + "id": "76828", + "name": "Dan Gora", + "state_id": 300, + "state_code": "KN", + "country_id": 161, + "country_code": "NG", + "latitude": "11.53485000", + "longitude": "8.15224000" + }, + { + "id": "76880", + "name": "Gaya", + "state_id": 300, + "state_code": "KN", + "country_id": 161, + "country_code": "NG", + "latitude": "11.86064000", + "longitude": "9.00270000" + }, + { + "id": "76977", + "name": "Kano", + "state_id": 300, + "state_code": "KN", + "country_id": 161, + "country_code": "NG", + "latitude": "12.00012000", + "longitude": "8.51672000" + }, + { + "id": "76831", + "name": "Danja", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "11.37710000", + "longitude": "7.56097000" + }, + { + "id": "76833", + "name": "Dankama", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "13.29782000", + "longitude": "7.79492000" + }, + { + "id": "76838", + "name": "Daura", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "13.03299000", + "longitude": "8.32351000" + }, + { + "id": "76850", + "name": "Dutsin-Ma", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "12.45392000", + "longitude": "7.49723000" + }, + { + "id": "76870", + "name": "Funtua", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "11.47196000", + "longitude": "7.30699000" + }, + { + "id": "76887", + "name": "Gora", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "11.91294000", + "longitude": "7.66531000" + }, + { + "id": "76960", + "name": "Jibia", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "13.09378000", + "longitude": "7.22624000" + }, + { + "id": "76961", + "name": "Jikamshi", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "12.17328000", + "longitude": "7.77424000" + }, + { + "id": "76976", + "name": "Kankara", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "11.93114000", + "longitude": "7.41115000" + }, + { + "id": "76979", + "name": "Katsina", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "12.99082000", + "longitude": "7.60177000" + }, + { + "id": "77026", + "name": "Mashi", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "12.98044000", + "longitude": "7.94703000" + }, + { + "id": "77093", + "name": "Ruma", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "12.86260000", + "longitude": "7.23469000" + }, + { + "id": "77094", + "name": "Runka", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "12.44788000", + "longitude": "7.30918000" + }, + { + "id": "77131", + "name": "Wagini", + "state_id": 313, + "state_code": "KT", + "country_id": 161, + "country_code": "NG", + "latitude": "12.68781000", + "longitude": "7.19579000" + }, + { + "id": "76778", + "name": "Argungu", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "12.74482000", + "longitude": "4.52514000" + }, + { + "id": "76791", + "name": "Bagudo", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.40351000", + "longitude": "4.22571000" + }, + { + "id": "76798", + "name": "Bena", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.28444000", + "longitude": "5.93472000" + }, + { + "id": "76803", + "name": "Bin Yauri", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "10.78230000", + "longitude": "4.81135000" + }, + { + "id": "76805", + "name": "Birnin Kebbi", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "12.45389000", + "longitude": "4.19750000" + }, + { + "id": "76822", + "name": "Dabai", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.47651000", + "longitude": "5.20625000" + }, + { + "id": "76824", + "name": "Dakingari", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.64809000", + "longitude": "4.06177000" + }, + { + "id": "76891", + "name": "Gulma", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "12.64231000", + "longitude": "4.35545000" + }, + { + "id": "76896", + "name": "Gwandu", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "12.50204000", + "longitude": "4.64295000" + }, + { + "id": "76959", + "name": "Jega", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "12.22336000", + "longitude": "4.37971000" + }, + { + "id": "76974", + "name": "Kamba", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.85172000", + "longitude": "3.65478000" + }, + { + "id": "76975", + "name": "Kangiwa", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "12.55339000", + "longitude": "3.81814000" + }, + { + "id": "76983", + "name": "Kende", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.51966000", + "longitude": "4.26030000" + }, + { + "id": "77017", + "name": "Mahuta", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.55338000", + "longitude": "4.98138000" + }, + { + "id": "77019", + "name": "Maiyama", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "12.08225000", + "longitude": "4.36907000" + }, + { + "id": "77102", + "name": "Shanga", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.21374000", + "longitude": "4.57941000" + }, + { + "id": "77134", + "name": "Wasagu", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.37640000", + "longitude": "5.79536000" + }, + { + "id": "77153", + "name": "Zuru", + "state_id": 290, + "state_code": "KE", + "country_id": 161, + "country_code": "NG", + "latitude": "11.43522000", + "longitude": "5.23494000" + }, + { + "id": "76747", + "name": "Abocho", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.56770000", + "longitude": "6.98630000" + }, + { + "id": "76753", + "name": "Adoru", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "6.97694000", + "longitude": "7.16262000" + }, + { + "id": "76774", + "name": "Ankpa", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.40249000", + "longitude": "7.63196000" + }, + { + "id": "76816", + "name": "Bugana", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.99917000", + "longitude": "7.58361000" + }, + { + "id": "76840", + "name": "Dekina", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.68967000", + "longitude": "7.04380000" + }, + { + "id": "76854", + "name": "Egbe", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "8.21667000", + "longitude": "5.51667000" + }, + { + "id": "76909", + "name": "Icheu", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.70670000", + "longitude": "6.77180000" + }, + { + "id": "76910", + "name": "Idah", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.11345000", + "longitude": "6.73866000" + }, + { + "id": "76951", + "name": "Isanlu-Itedoijowa", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "8.27445000", + "longitude": "5.83528000" + }, + { + "id": "76964", + "name": "Kabba", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.82719000", + "longitude": "6.07502000" + }, + { + "id": "76988", + "name": "Koton-Karfe", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "8.09120000", + "longitude": "6.79782000" + }, + { + "id": "77011", + "name": "Lokoja", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.79688000", + "longitude": "6.74048000" + }, + { + "id": "77052", + "name": "Ogaminana", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.59383000", + "longitude": "6.21798000" + }, + { + "id": "77054", + "name": "Ogurugu", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "6.78636000", + "longitude": "6.95017000" + }, + { + "id": "77061", + "name": "Okene", + "state_id": 298, + "state_code": "KO", + "country_id": 161, + "country_code": "NG", + "latitude": "7.55122000", + "longitude": "6.23589000" + }, + { + "id": "76760", + "name": "Ajasse Ipo", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "8.23333000", + "longitude": "4.81667000" + }, + { + "id": "76809", + "name": "Bode Saadu", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "8.93900000", + "longitude": "4.78227000" + }, + { + "id": "76899", + "name": "Gwasero", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "9.48333000", + "longitude": "3.50000000" + }, + { + "id": "76946", + "name": "Ilorin", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "8.49664000", + "longitude": "4.54214000" + }, + { + "id": "76958", + "name": "Jebba", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "9.11972000", + "longitude": "4.82360000" + }, + { + "id": "76971", + "name": "Kaiama", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "9.60530000", + "longitude": "3.94101000" + }, + { + "id": "77001", + "name": "Lafiagi", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "8.85299000", + "longitude": "5.41641000" + }, + { + "id": "77051", + "name": "Offa", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "8.14911000", + "longitude": "4.72074000" + }, + { + "id": "77063", + "name": "Okuta", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "9.21667000", + "longitude": "3.18333000" + }, + { + "id": "77065", + "name": "Omu-Aran", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "8.13857000", + "longitude": "5.10260000" + }, + { + "id": "77087", + "name": "Patigi", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "8.72851000", + "longitude": "5.75561000" + }, + { + "id": "77109", + "name": "Suya", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "9.46667000", + "longitude": "3.18333000" + }, + { + "id": "77143", + "name": "Yashikera", + "state_id": 295, + "state_code": "KW", + "country_id": 161, + "country_code": "NG", + "latitude": "9.76667000", + "longitude": "3.40000000" + }, + { + "id": "76775", + "name": "Apapa", + "state_id": 306, + "state_code": "LA", + "country_id": 161, + "country_code": "NG", + "latitude": "6.44880000", + "longitude": "3.35901000" + }, + { + "id": "76789", + "name": "Badagry", + "state_id": 306, + "state_code": "LA", + "country_id": 161, + "country_code": "NG", + "latitude": "6.41502000", + "longitude": "2.88132000" + }, + { + "id": "76851", + "name": "Ebute Ikorodu", + "state_id": 306, + "state_code": "LA", + "country_id": 161, + "country_code": "NG", + "latitude": "6.60086000", + "longitude": "3.48818000" + }, + { + "id": "76857", + "name": "Ejirin", + "state_id": 306, + "state_code": "LA", + "country_id": 161, + "country_code": "NG", + "latitude": "6.61423000", + "longitude": "3.90019000" + }, + { + "id": "76864", + "name": "Epe", + "state_id": 306, + "state_code": "LA", + "country_id": 161, + "country_code": "NG", + "latitude": "6.58412000", + "longitude": "3.98336000" + }, + { + "id": "76932", + "name": "Ikeja", + "state_id": 306, + "state_code": "LA", + "country_id": 161, + "country_code": "NG", + "latitude": "6.59651000", + "longitude": "3.34205000" + }, + { + "id": "77002", + "name": "Lagos", + "state_id": 306, + "state_code": "LA", + "country_id": 161, + "country_code": "NG", + "latitude": "6.45407000", + "longitude": "3.39467000" + }, + { + "id": "77020", + "name": "Makoko", + "state_id": 306, + "state_code": "LA", + "country_id": 161, + "country_code": "NG", + "latitude": "6.49611000", + "longitude": "3.38778000" + }, + { + "id": "76815", + "name": "Buga", + "state_id": 301, + "state_code": "NA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.49056000", + "longitude": "7.34139000" + }, + { + "id": "76845", + "name": "Doma", + "state_id": 301, + "state_code": "NA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.39307000", + "longitude": "8.35544000" + }, + { + "id": "76982", + "name": "Keffi", + "state_id": 301, + "state_code": "NA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.84651000", + "longitude": "7.87354000" + }, + { + "id": "77000", + "name": "Lafia", + "state_id": 301, + "state_code": "NA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.49390000", + "longitude": "8.51532000" + }, + { + "id": "77038", + "name": "Nasarawa", + "state_id": 301, + "state_code": "NA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.53895000", + "longitude": "7.70821000" + }, + { + "id": "77132", + "name": "Wamba", + "state_id": 301, + "state_code": "NA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.94153000", + "longitude": "8.60315000" + }, + { + "id": "76783", + "name": "Auna", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "10.18805000", + "longitude": "4.72318000" + }, + { + "id": "76787", + "name": "Babana", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "10.42949000", + "longitude": "3.81495000" + }, + { + "id": "76790", + "name": "Badeggi", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "9.05630000", + "longitude": "6.14300000" + }, + { + "id": "76795", + "name": "Baro", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "8.61565000", + "longitude": "6.41850000" + }, + { + "id": "76812", + "name": "Bokani", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "9.43333000", + "longitude": "5.20000000" + }, + { + "id": "76847", + "name": "Duku", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "11.23610000", + "longitude": "4.90727000" + }, + { + "id": "76907", + "name": "Ibeto", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "10.48536000", + "longitude": "5.14501000" + }, + { + "id": "76986", + "name": "Konkwesso", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "10.84686000", + "longitude": "4.09835000" + }, + { + "id": "76987", + "name": "Kontagora", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "10.40319000", + "longitude": "5.47080000" + }, + { + "id": "76994", + "name": "Kusheriki", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "10.53283000", + "longitude": "6.44222000" + }, + { + "id": "76995", + "name": "Kuta", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "9.86864000", + "longitude": "6.71042000" + }, + { + "id": "77007", + "name": "Lapai", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "9.04439000", + "longitude": "6.57089000" + }, + { + "id": "77029", + "name": "Minna", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "9.61524000", + "longitude": "6.54776000" + }, + { + "id": "77039", + "name": "New Shagunnu", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "10.33957000", + "longitude": "4.46880000" + }, + { + "id": "77108", + "name": "Suleja", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "9.18059000", + "longitude": "7.17939000" + }, + { + "id": "77112", + "name": "Tegina", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "10.07060000", + "longitude": "6.19060000" + }, + { + "id": "77124", + "name": "Ukata", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "10.83122000", + "longitude": "5.82494000" + }, + { + "id": "77135", + "name": "Wawa", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "9.90222000", + "longitude": "4.41917000" + }, + { + "id": "77152", + "name": "Zungeru", + "state_id": 317, + "state_code": "NI", + "country_id": 161, + "country_code": "NG", + "latitude": "9.80726000", + "longitude": "6.15238000" + }, + { + "id": "76746", + "name": "Abeokuta", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "7.15571000", + "longitude": "3.34509000" + }, + { + "id": "76751", + "name": "Ado Odo", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.60000000", + "longitude": "2.93333000" + }, + { + "id": "76912", + "name": "Idi Iroko", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.63333000", + "longitude": "2.73333000" + }, + { + "id": "76914", + "name": "Ifo", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.81491000", + "longitude": "3.19518000" + }, + { + "id": "76926", + "name": "Ijebu-Ife", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.77837000", + "longitude": "4.03386000" + }, + { + "id": "76927", + "name": "Ijebu-Igbo", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.97198000", + "longitude": "3.99938000" + }, + { + "id": "76929", + "name": "Ijebu-Ode", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.81944000", + "longitude": "3.91731000" + }, + { + "id": "76940", + "name": "Ilaro", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.88901000", + "longitude": "3.01416000" + }, + { + "id": "76947", + "name": "Imeko", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "7.44888000", + "longitude": "2.84289000" + }, + { + "id": "76949", + "name": "Iperu", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.91002000", + "longitude": "3.66557000" + }, + { + "id": "76952", + "name": "Isara", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.99345000", + "longitude": "3.68148000" + }, + { + "id": "77080", + "name": "Owode", + "state_id": 323, + "state_code": "OG", + "country_id": 161, + "country_code": "NG", + "latitude": "6.94851000", + "longitude": "3.50561000" + }, + { + "id": "76755", + "name": "Agbabu", + "state_id": 321, + "state_code": "ON", + "country_id": 161, + "country_code": "NG", + "latitude": "6.58862000", + "longitude": "4.83430000" + }, + { + "id": "76765", + "name": "Akure", + "state_id": 321, + "state_code": "ON", + "country_id": 161, + "country_code": "NG", + "latitude": "7.25256000", + "longitude": "5.19312000" + }, + { + "id": "76911", + "name": "Idanre", + "state_id": 321, + "state_code": "ON", + "country_id": 161, + "country_code": "NG", + "latitude": "7.11270000", + "longitude": "5.11590000" + }, + { + "id": "76915", + "name": "Ifon", + "state_id": 321, + "state_code": "ON", + "country_id": 161, + "country_code": "NG", + "latitude": "6.92973000", + "longitude": "5.77368000" + }, + { + "id": "76939", + "name": "Ilare", + "state_id": 321, + "state_code": "ON", + "country_id": 161, + "country_code": "NG", + "latitude": "7.35067000", + "longitude": "5.11333000" + }, + { + "id": "77050", + "name": "Ode", + "state_id": 321, + "state_code": "ON", + "country_id": 161, + "country_code": "NG", + "latitude": "7.78990000", + "longitude": "5.71170000" + }, + { + "id": "77067", + "name": "Ondo", + "state_id": 321, + "state_code": "ON", + "country_id": 161, + "country_code": "NG", + "latitude": "7.09316000", + "longitude": "4.83528000" + }, + { + "id": "77070", + "name": "Ore", + "state_id": 321, + "state_code": "ON", + "country_id": 161, + "country_code": "NG", + "latitude": "6.74716000", + "longitude": "4.87610000" + }, + { + "id": "77079", + "name": "Owo", + "state_id": 321, + "state_code": "ON", + "country_id": 161, + "country_code": "NG", + "latitude": "7.19620000", + "longitude": "5.58681000" + }, + { + "id": "76776", + "name": "Apomu", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.35156000", + "longitude": "4.18335000" + }, + { + "id": "76856", + "name": "Ejigbo", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.90292000", + "longitude": "4.31419000" + }, + { + "id": "76881", + "name": "Gbongan", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.47734000", + "longitude": "4.35351000" + }, + { + "id": "76928", + "name": "Ijebu-Jesa", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.68287000", + "longitude": "4.81769000" + }, + { + "id": "76935", + "name": "Ikire", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.36983000", + "longitude": "4.18630000" + }, + { + "id": "76936", + "name": "Ikirun", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.91283000", + "longitude": "4.66741000" + }, + { + "id": "76938", + "name": "Ila Orangun", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "8.01714000", + "longitude": "4.90421000" + }, + { + "id": "76941", + "name": "Ile-Ife", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.48240000", + "longitude": "4.56032000" + }, + { + "id": "76942", + "name": "Ilesa", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.62789000", + "longitude": "4.74161000" + }, + { + "id": "76945", + "name": "Ilobu", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.84036000", + "longitude": "4.48557000" + }, + { + "id": "76948", + "name": "Inisa", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.85000000", + "longitude": "4.33333000" + }, + { + "id": "76956", + "name": "Iwo", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.63527000", + "longitude": "4.18156000" + }, + { + "id": "77032", + "name": "Modakeke", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.38299000", + "longitude": "4.26031000" + }, + { + "id": "77059", + "name": "Oke Mesi", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.81667000", + "longitude": "4.91667000" + }, + { + "id": "77064", + "name": "Olupona", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.60000000", + "longitude": "4.18333000" + }, + { + "id": "77075", + "name": "Osogbo", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.77104000", + "longitude": "4.55698000" + }, + { + "id": "77076", + "name": "Otan Ayegbaju", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "7.94783000", + "longitude": "4.78836000" + }, + { + "id": "77081", + "name": "Oyan", + "state_id": 322, + "state_code": "OS", + "country_id": 161, + "country_code": "NG", + "latitude": "8.05000000", + "longitude": "4.76667000" + }, + { + "id": "76758", + "name": "Ago Are", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "8.50000000", + "longitude": "3.41667000" + }, + { + "id": "76766", + "name": "Alapa", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "8.61667000", + "longitude": "4.38333000" + }, + { + "id": "76868", + "name": "Fiditi", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "7.71361000", + "longitude": "3.91722000" + }, + { + "id": "76906", + "name": "Ibadan", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "7.37756000", + "longitude": "3.90591000" + }, + { + "id": "76918", + "name": "Igbeti", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "8.74921000", + "longitude": "4.13113000" + }, + { + "id": "76919", + "name": "Igbo-Ora", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "7.43383000", + "longitude": "3.28788000" + }, + { + "id": "76921", + "name": "Igboho", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "8.83784000", + "longitude": "3.75628000" + }, + { + "id": "76984", + "name": "Kisi", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "9.08297000", + "longitude": "3.85196000" + }, + { + "id": "77004", + "name": "Lalupon", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "7.46791000", + "longitude": "4.06594000" + }, + { + "id": "77053", + "name": "Ogbomoso", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "8.13373000", + "longitude": "4.24014000" + }, + { + "id": "77060", + "name": "Okeho", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "8.03386000", + "longitude": "3.34759000" + }, + { + "id": "77072", + "name": "Orita Eruwa", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "7.55000000", + "longitude": "3.43333000" + }, + { + "id": "77082", + "name": "Oyo", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "7.85257000", + "longitude": "3.93125000" + }, + { + "id": "77096", + "name": "Saki", + "state_id": 296, + "state_code": "OY", + "country_id": 161, + "country_code": "NG", + "latitude": "8.66762000", + "longitude": "3.39393000" + }, + { + "id": "76771", + "name": "Amper", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "9.35509000", + "longitude": "9.70121000" + }, + { + "id": "76817", + "name": "Bukuru", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "9.79399000", + "longitude": "8.86397000" + }, + { + "id": "76841", + "name": "Dengi", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "9.36872000", + "longitude": "9.96223000" + }, + { + "id": "76963", + "name": "Jos", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "9.92849000", + "longitude": "8.89212000" + }, + { + "id": "76999", + "name": "Kwolla", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "8.90361000", + "longitude": "9.29086000" + }, + { + "id": "77006", + "name": "Langtang", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "9.14164000", + "longitude": "9.79101000" + }, + { + "id": "77084", + "name": "Pankshin", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "9.32541000", + "longitude": "9.43520000" + }, + { + "id": "77085", + "name": "Panyam", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "9.40756000", + "longitude": "9.21481000" + }, + { + "id": "77130", + "name": "Vom", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "9.72910000", + "longitude": "8.79138000" + }, + { + "id": "77144", + "name": "Yelwa", + "state_id": 302, + "state_code": "PL", + "country_id": 161, + "country_code": "NG", + "latitude": "8.83333000", + "longitude": "9.63333000" + }, + { + "id": "76804", + "name": "Binji", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.22294000", + "longitude": "4.90888000" + }, + { + "id": "76830", + "name": "Dange", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.85313000", + "longitude": "5.34572000" + }, + { + "id": "76875", + "name": "Gandi", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.96358000", + "longitude": "5.74337000" + }, + { + "id": "76889", + "name": "Goronyo", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.44226000", + "longitude": "5.67234000" + }, + { + "id": "76895", + "name": "Gwadabawa", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.35819000", + "longitude": "5.23812000" + }, + { + "id": "76943", + "name": "Illela", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.73064000", + "longitude": "5.29777000" + }, + { + "id": "77090", + "name": "Rabah", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.12257000", + "longitude": "5.50762000" + }, + { + "id": "77107", + "name": "Sokoto", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.06269000", + "longitude": "5.24322000" + }, + { + "id": "77111", + "name": "Tambuwal", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.40592000", + "longitude": "4.64605000" + }, + { + "id": "77137", + "name": "Wurno", + "state_id": 292, + "state_code": "SO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.29048000", + "longitude": "5.42373000" + }, + { + "id": "76792", + "name": "Baissa", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "7.23087000", + "longitude": "10.62444000" + }, + { + "id": "76797", + "name": "Beli", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "7.85868000", + "longitude": "10.97187000" + }, + { + "id": "76879", + "name": "Gassol", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.53535000", + "longitude": "10.44615000" + }, + { + "id": "76883", + "name": "Gembu", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "6.72556000", + "longitude": "11.25652000" + }, + { + "id": "76908", + "name": "Ibi", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.18122000", + "longitude": "9.74431000" + }, + { + "id": "76957", + "name": "Jalingo", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.89367000", + "longitude": "11.35960000" + }, + { + "id": "77008", + "name": "Lau", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "9.20827000", + "longitude": "11.27541000" + }, + { + "id": "77036", + "name": "Mutum Biyu", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "8.64138000", + "longitude": "10.77355000" + }, + { + "id": "77092", + "name": "Riti", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "7.90844000", + "longitude": "9.61688000" + }, + { + "id": "77136", + "name": "Wukari", + "state_id": 319, + "state_code": "TA", + "country_id": 161, + "country_code": "NG", + "latitude": "7.87139000", + "longitude": "9.77786000" + }, + { + "id": "76826", + "name": "Damaturu", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.74697000", + "longitude": "11.96083000" + }, + { + "id": "76832", + "name": "Dankalwa", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.74449000", + "longitude": "12.18545000" + }, + { + "id": "76834", + "name": "Dapchi", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.49536000", + "longitude": "11.49977000" + }, + { + "id": "76837", + "name": "Daura", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.55410000", + "longitude": "11.40600000" + }, + { + "id": "76869", + "name": "Fika", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.37700000", + "longitude": "11.23746000" + }, + { + "id": "76878", + "name": "Gashua", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.87398000", + "longitude": "11.04057000" + }, + { + "id": "76882", + "name": "Geidam", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.89439000", + "longitude": "11.92649000" + }, + { + "id": "76886", + "name": "Goniri", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.48451000", + "longitude": "12.31264000" + }, + { + "id": "76888", + "name": "Gorgoram", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.63958000", + "longitude": "10.70422000" + }, + { + "id": "76890", + "name": "Gujba", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.49959000", + "longitude": "11.93396000" + }, + { + "id": "76900", + "name": "Gwio Kura", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.67479000", + "longitude": "11.06690000" + }, + { + "id": "76992", + "name": "Kumagunnam", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.15498000", + "longitude": "10.63468000" + }, + { + "id": "77003", + "name": "Lajere", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.98022000", + "longitude": "11.44002000" + }, + { + "id": "77012", + "name": "Machina", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "13.13639000", + "longitude": "10.04924000" + }, + { + "id": "77042", + "name": "Nguru", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "12.87695000", + "longitude": "10.45536000" + }, + { + "id": "77089", + "name": "Potiskum", + "state_id": 297, + "state_code": "YO", + "country_id": 161, + "country_code": "NG", + "latitude": "11.71391000", + "longitude": "11.08108000" + }, + { + "id": "76773", + "name": "Anka", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "12.11347000", + "longitude": "5.92681000" + }, + { + "id": "76829", + "name": "Dan Sadau", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.29621000", + "longitude": "6.49520000" + }, + { + "id": "76893", + "name": "Gummi", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "12.14484000", + "longitude": "5.11776000" + }, + { + "id": "76894", + "name": "Gusau", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "12.17024000", + "longitude": "6.66412000" + }, + { + "id": "76980", + "name": "Kaura Namoda", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "12.59371000", + "longitude": "6.58648000" + }, + { + "id": "76998", + "name": "Kwatarkwashi", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "12.14082000", + "longitude": "6.82196000" + }, + { + "id": "77025", + "name": "Maru", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "12.33360000", + "longitude": "6.40372000" + }, + { + "id": "77034", + "name": "Moriki", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "12.87405000", + "longitude": "6.48754000" + }, + { + "id": "77100", + "name": "Sauri", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.72655000", + "longitude": "6.78374000" + }, + { + "id": "77115", + "name": "Tsafe", + "state_id": 299, + "state_code": "ZA", + "country_id": 161, + "country_code": "NG", + "latitude": "11.95775000", + "longitude": "6.92083000" + }, + { + "id": "79044", + "name": "Ask", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.07131000", + "longitude": "11.03620000" + }, + { + "id": "79045", + "name": "Asker", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.83734000", + "longitude": "10.43595000" + }, + { + "id": "79051", + "name": "Auli", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.03450000", + "longitude": "11.36046000" + }, + { + "id": "79054", + "name": "Aurskog-Høland", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.88321000", + "longitude": "11.56491000" + }, + { + "id": "79055", + "name": "Aursmoen", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.92763000", + "longitude": "11.44275000" + }, + { + "id": "79681", + "name": "Åneby", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.08926000", + "longitude": "10.86998000" + }, + { + "id": "79684", + "name": "Årnes", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.12237000", + "longitude": "11.47005000" + }, + { + "id": "79687", + "name": "Ås", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.66366000", + "longitude": "10.79101000" + }, + { + "id": "79094", + "name": "Bærum", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.88996000", + "longitude": "10.52649000" + }, + { + "id": "79073", + "name": "Billingstad", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.87548000", + "longitude": "10.48230000" + }, + { + "id": "79078", + "name": "Bjørkelangen", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.88357000", + "longitude": "11.56396000" + }, + { + "id": "79080", + "name": "Blakstad", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.81910000", + "longitude": "10.46450000" + }, + { + "id": "79106", + "name": "Drøbak", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.66333000", + "longitude": "10.62975000" + }, + { + "id": "79115", + "name": "Eidsvoll", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.32893000", + "longitude": "11.26119000" + }, + { + "id": "79123", + "name": "Enebakk", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.76452000", + "longitude": "11.14492000" + }, + { + "id": "79132", + "name": "Fagerstrand", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.73746000", + "longitude": "10.59404000" + }, + { + "id": "79137", + "name": "Fet", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.92216000", + "longitude": "11.16778000" + }, + { + "id": "79138", + "name": "Fetsund", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.92463000", + "longitude": "11.15711000" + }, + { + "id": "79145", + "name": "Fjellfoten", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.08967000", + "longitude": "11.47222000" + }, + { + "id": "79148", + "name": "Flateby", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.82951000", + "longitude": "11.15345000" + }, + { + "id": "79161", + "name": "Frogn", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.66665000", + "longitude": "10.63566000" + }, + { + "id": "79162", + "name": "Frogner", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.02463000", + "longitude": "11.10284000" + }, + { + "id": "79178", + "name": "Gjerdrum", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.07159000", + "longitude": "11.03597000" + }, + { + "id": "79239", + "name": "Hurdal", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.43518000", + "longitude": "11.06707000" + }, + { + "id": "79256", + "name": "Jessheim", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.14151000", + "longitude": "11.17515000" + }, + { + "id": "79276", + "name": "Kløfta", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.07407000", + "longitude": "11.13805000" + }, + { + "id": "79346", + "name": "Lørenskog", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.93209000", + "longitude": "10.96079000" + }, + { + "id": "79310", + "name": "Leirsund", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.99682000", + "longitude": "11.08746000" + }, + { + "id": "79324", + "name": "Lillestrøm", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.95597000", + "longitude": "11.04918000" + }, + { + "id": "79340", + "name": "Lysaker", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.90994000", + "longitude": "10.63545000" + }, + { + "id": "79355", + "name": "Maura", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.25830000", + "longitude": "11.03192000" + }, + { + "id": "79385", + "name": "Nannestad", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.21707000", + "longitude": "11.01200000" + }, + { + "id": "79389", + "name": "Nes", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.12252000", + "longitude": "11.46570000" + }, + { + "id": "79392", + "name": "Neskollen", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.12159000", + "longitude": "11.33926000" + }, + { + "id": "79394", + "name": "Nesodden", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.84220000", + "longitude": "10.64940000" + }, + { + "id": "79395", + "name": "Nesoddtangen", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.86244000", + "longitude": "10.66308000" + }, + { + "id": "79399", + "name": "Nittedal", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.04278000", + "longitude": "10.88167000" + }, + { + "id": "79420", + "name": "Oppegård", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.81149000", + "longitude": "10.79712000" + }, + { + "id": "79464", + "name": "Råholt", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.27513000", + "longitude": "11.17901000" + }, + { + "id": "79465", + "name": "Rælingen", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.92626000", + "longitude": "11.06527000" + }, + { + "id": "79458", + "name": "Rotnes", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.05707000", + "longitude": "10.86135000" + }, + { + "id": "79586", + "name": "Sørum", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.98709000", + "longitude": "11.24019000" + }, + { + "id": "79587", + "name": "Sørumsand", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.98621000", + "longitude": "11.24154000" + }, + { + "id": "79506", + "name": "Skedsmo", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.95448000", + "longitude": "11.03952000" + }, + { + "id": "79507", + "name": "Ski", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.72049000", + "longitude": "10.83882000" + }, + { + "id": "79522", + "name": "Skui", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.92746000", + "longitude": "10.44750000" + }, + { + "id": "79621", + "name": "Ullensaker", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "60.14401000", + "longitude": "11.17441000" + }, + { + "id": "79642", + "name": "Vestby", + "state_id": 1017, + "state_code": "02", + "country_id": 165, + "country_code": "NO", + "latitude": "59.60228000", + "longitude": "10.74807000" + }, + { + "id": "79043", + "name": "Aremark", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.22198000", + "longitude": "11.69582000" + }, + { + "id": "79046", + "name": "Askim", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.58464000", + "longitude": "11.16084000" + }, + { + "id": "79694", + "name": "Ørje", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.48023000", + "longitude": "11.66016000" + }, + { + "id": "79113", + "name": "Eidsberg", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.55148000", + "longitude": "11.33587000" + }, + { + "id": "79158", + "name": "Fossby", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.22218000", + "longitude": "11.69928000" + }, + { + "id": "79159", + "name": "Fredrikstad", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.21759000", + "longitude": "10.93787000" + }, + { + "id": "79199", + "name": "Halden", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.12258000", + "longitude": "11.38709000" + }, + { + "id": "79226", + "name": "Hobøl", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.62252000", + "longitude": "10.94979000" + }, + { + "id": "79241", + "name": "Hvaler", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.02809000", + "longitude": "11.03110000" + }, + { + "id": "79265", + "name": "Karlshus", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.35195000", + "longitude": "10.87226000" + }, + { + "id": "79278", + "name": "Knappstad", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.62424000", + "longitude": "11.03274000" + }, + { + "id": "79302", + "name": "Larkollen", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.33196000", + "longitude": "10.66687000" + }, + { + "id": "79317", + "name": "Lervik", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.27119000", + "longitude": "10.74610000" + }, + { + "id": "79352", + "name": "Marker", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.47952000", + "longitude": "11.65917000" + }, + { + "id": "79375", + "name": "Moss", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.43436000", + "longitude": "10.65968000" + }, + { + "id": "79378", + "name": "Mysen", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.55354000", + "longitude": "11.32578000" + }, + { + "id": "79435", + "name": "Rakkestad", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.42822000", + "longitude": "11.34350000" + }, + { + "id": "79463", + "name": "Råde", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.35162000", + "longitude": "10.87135000" + }, + { + "id": "79467", + "name": "Rømskog", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.74968000", + "longitude": "11.81122000" + }, + { + "id": "79460", + "name": "Rygge", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.40629000", + "longitude": "10.69298000" + }, + { + "id": "79461", + "name": "Ryggebyen", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.37500000", + "longitude": "10.75000000" + }, + { + "id": "79487", + "name": "Sarpsborg", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.28148000", + "longitude": "11.11167000" + }, + { + "id": "79509", + "name": "Skiptvet", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.47751000", + "longitude": "11.16171000" + }, + { + "id": "79513", + "name": "Skjærhalden", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.02526000", + "longitude": "11.03685000" + }, + { + "id": "79510", + "name": "Skjeberg", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.21148000", + "longitude": "11.19025000" + }, + { + "id": "79536", + "name": "Spydeberg", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.62028000", + "longitude": "11.08069000" + }, + { + "id": "79601", + "name": "Tomter", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.65910000", + "longitude": "10.99487000" + }, + { + "id": "79612", + "name": "Trøgstad", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.64016000", + "longitude": "11.31890000" + }, + { + "id": "79668", + "name": "Våler", + "state_id": 1022, + "state_code": "01", + "country_id": 165, + "country_code": "NO", + "latitude": "59.48870000", + "longitude": "10.86551000" + }, + { + "id": "79700", + "name": "Øvre Eiker", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.77111000", + "longitude": "9.90840000" + }, + { + "id": "79677", + "name": "Ål", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.63028000", + "longitude": "8.56115000" + }, + { + "id": "79685", + "name": "Åros", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.70610000", + "longitude": "10.51092000" + }, + { + "id": "79104", + "name": "Drammen", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.74389000", + "longitude": "10.20449000" + }, + { + "id": "79153", + "name": "Flå", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.42910000", + "longitude": "9.46611000" + }, + { + "id": "79150", + "name": "Flesberg", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.83283000", + "longitude": "9.58308000" + }, + { + "id": "79174", + "name": "Geilo", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.53369000", + "longitude": "8.20539000" + }, + { + "id": "79184", + "name": "Gol", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.69953000", + "longitude": "8.95024000" + }, + { + "id": "79247", + "name": "Hønefoss", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.16804000", + "longitude": "10.25647000" + }, + { + "id": "79217", + "name": "Hemsedal", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.86114000", + "longitude": "8.56537000" + }, + { + "id": "79227", + "name": "Hol", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.61528000", + "longitude": "8.30194000" + }, + { + "id": "79228", + "name": "Hole", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.08017000", + "longitude": "10.27840000" + }, + { + "id": "79240", + "name": "Hurum", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.61401000", + "longitude": "10.45763000" + }, + { + "id": "79242", + "name": "Hvittingfoss", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.48572000", + "longitude": "10.01173000" + }, + { + "id": "79281", + "name": "Kongsberg", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.66516000", + "longitude": "9.64653000" + }, + { + "id": "79289", + "name": "Krødsherad", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.17944000", + "longitude": "9.62124000" + }, + { + "id": "79320", + "name": "Lier", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.78663000", + "longitude": "10.24590000" + }, + { + "id": "79368", + "name": "Modum", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.97346000", + "longitude": "10.00468000" + }, + { + "id": "79388", + "name": "Nedre Eiker", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.75023000", + "longitude": "10.00736000" + }, + { + "id": "79390", + "name": "Nes", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.56804000", + "longitude": "9.10169000" + }, + { + "id": "79391", + "name": "Nesbyen", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.56809000", + "longitude": "9.10274000" + }, + { + "id": "79411", + "name": "Nore og Uvdal", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.26706000", + "longitude": "8.94635000" + }, + { + "id": "79412", + "name": "Noresund", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.17985000", + "longitude": "9.62411000" + }, + { + "id": "79432", + "name": "Prestfoss", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.04343000", + "longitude": "9.63520000" + }, + { + "id": "79471", + "name": "Røyken", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.74019000", + "longitude": "10.41321000" + }, + { + "id": "79451", + "name": "Ringerike", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.16018000", + "longitude": "10.25660000" + }, + { + "id": "79456", + "name": "Rollag", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.98413000", + "longitude": "9.29489000" + }, + { + "id": "79574", + "name": "Sætre", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.68129000", + "longitude": "10.52749000" + }, + { + "id": "79497", + "name": "Sigdal", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "60.04592000", + "longitude": "9.63673000" + }, + { + "id": "79515", + "name": "Skoger", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.71327000", + "longitude": "10.25356000" + }, + { + "id": "79597", + "name": "Tofte", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.54275000", + "longitude": "10.56138000" + }, + { + "id": "79604", + "name": "Tranby", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.80850000", + "longitude": "10.26114000" + }, + { + "id": "79653", + "name": "Vikersund", + "state_id": 1011, + "state_code": "06", + "country_id": 165, + "country_code": "NO", + "latitude": "59.96838000", + "longitude": "9.99107000" + }, + { + "id": "79039", + "name": "Alta", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "69.97675000", + "longitude": "23.29634000" + }, + { + "id": "79672", + "name": "Ávanuorri", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.99634000", + "longitude": "24.66217000" + }, + { + "id": "79691", + "name": "Øksfjord", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.23936000", + "longitude": "22.35070000" + }, + { + "id": "79093", + "name": "Båtsfjord", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.63428000", + "longitude": "29.71750000" + }, + { + "id": "79072", + "name": "Berlevåg", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.85778000", + "longitude": "29.08636000" + }, + { + "id": "79079", + "name": "Bjørnevatn", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "69.66745000", + "longitude": "29.98722000" + }, + { + "id": "79170", + "name": "Gamvik", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "71.04107000", + "longitude": "27.85144000" + }, + { + "id": "79203", + "name": "Hammerfest", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.66257000", + "longitude": "23.68295000" + }, + { + "id": "79209", + "name": "Hasvik", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.59164000", + "longitude": "22.30272000" + }, + { + "id": "79233", + "name": "Honningsvåg", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.98209000", + "longitude": "25.97037000" + }, + { + "id": "79264", + "name": "Karasjok", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "69.47224000", + "longitude": "25.51885000" + }, + { + "id": "79268", + "name": "Kautokeino", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "69.01151000", + "longitude": "23.04151000" + }, + { + "id": "79299", + "name": "Kárášjohka", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "69.47187000", + "longitude": "25.51122000" + }, + { + "id": "79270", + "name": "Kirkenes", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "69.72706000", + "longitude": "30.04578000" + }, + { + "id": "79272", + "name": "Kjøllefjord", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.94574000", + "longitude": "27.34650000" + }, + { + "id": "79290", + "name": "Kvalsund", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.49910000", + "longitude": "23.97393000" + }, + { + "id": "79301", + "name": "Lakselv", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.05133000", + "longitude": "24.97182000" + }, + { + "id": "79307", + "name": "Lebesby", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.94535000", + "longitude": "27.35134000" + }, + { + "id": "79329", + "name": "Loppa", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.23952000", + "longitude": "22.35136000" + }, + { + "id": "79381", + "name": "Måsøy", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.99654000", + "longitude": "24.66146000" + }, + { + "id": "79356", + "name": "Mehamn", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "71.04137000", + "longitude": "27.85133000" + }, + { + "id": "79396", + "name": "Nesseby", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "69.88541000", + "longitude": "28.43368000" + }, + { + "id": "79407", + "name": "Nordkapp", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.97808000", + "longitude": "25.97473000" + }, + { + "id": "79429", + "name": "Porsanger", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.05214000", + "longitude": "24.95592000" + }, + { + "id": "79462", + "name": "Rypefjord", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.64126000", + "longitude": "23.67213000" + }, + { + "id": "79582", + "name": "Sør-Varanger", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "69.72859000", + "longitude": "30.04264000" + }, + { + "id": "79588", + "name": "Tana", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.19976000", + "longitude": "28.18494000" + }, + { + "id": "79628", + "name": "Vadsø", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.07412000", + "longitude": "29.74922000" + }, + { + "id": "79633", + "name": "Vardø", + "state_id": 1016, + "state_code": "20", + "country_id": 165, + "country_code": "NO", + "latitude": "70.37040000", + "longitude": "31.10866000" + }, + { + "id": "79040", + "name": "Alvdal", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "62.10854000", + "longitude": "10.63483000" + }, + { + "id": "79679", + "name": "Åmot", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "61.13199000", + "longitude": "11.37328000" + }, + { + "id": "79690", + "name": "Åsnes", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.61363000", + "longitude": "12.01200000" + }, + { + "id": "79089", + "name": "Brumunddal", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.88095000", + "longitude": "10.93948000" + }, + { + "id": "79114", + "name": "Eidskog", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "59.98556000", + "longitude": "12.12502000" + }, + { + "id": "79122", + "name": "Elverum", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.88159000", + "longitude": "11.56314000" + }, + { + "id": "79124", + "name": "Engerdal", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "61.75774000", + "longitude": "11.95966000" + }, + { + "id": "79154", + "name": "Folldal", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "62.13329000", + "longitude": "9.99710000" + }, + { + "id": "79192", + "name": "Grue", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.45133000", + "longitude": "12.05489000" + }, + { + "id": "79201", + "name": "Hamar", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.79450000", + "longitude": "11.06798000" + }, + { + "id": "79254", + "name": "Innbygda", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "61.31484000", + "longitude": "12.26374000" + }, + { + "id": "79271", + "name": "Kirkenær", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.45790000", + "longitude": "12.05855000" + }, + { + "id": "79282", + "name": "Kongsvinger", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.19117000", + "longitude": "11.99916000" + }, + { + "id": "79284", + "name": "Koppang", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "61.57219000", + "longitude": "11.04659000" + }, + { + "id": "79347", + "name": "Løten", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.81771000", + "longitude": "11.34373000" + }, + { + "id": "79369", + "name": "Moelv", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.93333000", + "longitude": "10.70000000" + }, + { + "id": "79404", + "name": "Nord-Odal", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.39195000", + "longitude": "11.54151000" + }, + { + "id": "79422", + "name": "Os", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "62.49536000", + "longitude": "11.22807000" + }, + { + "id": "79444", + "name": "Rena", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "61.13222000", + "longitude": "11.37156000" + }, + { + "id": "79445", + "name": "Rendalen", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "61.89004000", + "longitude": "11.07694000" + }, + { + "id": "79452", + "name": "Ringsaker", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.88216000", + "longitude": "10.95030000" + }, + { + "id": "79477", + "name": "Sand", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.39220000", + "longitude": "11.54030000" + }, + { + "id": "79581", + "name": "Sør-Odal", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.25455000", + "longitude": "11.68246000" + }, + { + "id": "79504", + "name": "Skarnes", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.25391000", + "longitude": "11.68485000" + }, + { + "id": "79519", + "name": "Skotterud", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "59.98281000", + "longitude": "12.12825000" + }, + { + "id": "79535", + "name": "Spetalen", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.18333000", + "longitude": "11.90000000" + }, + { + "id": "79537", + "name": "Stange", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.71576000", + "longitude": "11.19069000" + }, + { + "id": "79547", + "name": "Stor-Elvdal", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "61.57198000", + "longitude": "11.04759000" + }, + { + "id": "79599", + "name": "Tolga", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "62.40984000", + "longitude": "10.99770000" + }, + { + "id": "79610", + "name": "Trysil", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "61.31549000", + "longitude": "12.26422000" + }, + { + "id": "79615", + "name": "Tynset", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "62.27387000", + "longitude": "10.77626000" + }, + { + "id": "79667", + "name": "Våler", + "state_id": 1019, + "state_code": "04", + "country_id": 165, + "country_code": "NO", + "latitude": "60.67845000", + "longitude": "11.83314000" + }, + { + "id": "79048", + "name": "Askøy", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.40916000", + "longitude": "5.22599000" + }, + { + "id": "79056", + "name": "Austevoll", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.09578000", + "longitude": "5.22722000" + }, + { + "id": "79057", + "name": "Austrheim", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.77742000", + "longitude": "4.93227000" + }, + { + "id": "79702", + "name": "Øygarden", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.59041000", + "longitude": "4.83890000" + }, + { + "id": "79703", + "name": "Øystese", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.38825000", + "longitude": "6.19251000" + }, + { + "id": "79675", + "name": "Ågotnes", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.40306000", + "longitude": "5.01927000" + }, + { + "id": "79097", + "name": "Bømlo", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.79384000", + "longitude": "5.17624000" + }, + { + "id": "79069", + "name": "Bergen", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.39200000", + "longitude": "5.32800000" + }, + { + "id": "79098", + "name": "Dale", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.58639000", + "longitude": "5.81888000" + }, + { + "id": "79112", + "name": "Eidfjord", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.46741000", + "longitude": "7.06971000" + }, + { + "id": "79119", + "name": "Eikelandsosen", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.24175000", + "longitude": "5.74433000" + }, + { + "id": "79125", + "name": "Espeland", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.38249000", + "longitude": "5.46570000" + }, + { + "id": "79126", + "name": "Etne", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.66472000", + "longitude": "5.93438000" + }, + { + "id": "79136", + "name": "Fedje", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.77873000", + "longitude": "4.71965000" + }, + { + "id": "79142", + "name": "Fitjar", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.91742000", + "longitude": "5.31637000" + }, + { + "id": "79144", + "name": "Fjell", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.36267000", + "longitude": "5.12194000" + }, + { + "id": "79160", + "name": "Frekhaug", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.51321000", + "longitude": "5.24252000" + }, + { + "id": "79166", + "name": "Fusa", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.24072000", + "longitude": "5.74458000" + }, + { + "id": "79187", + "name": "Granvin", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.52629000", + "longitude": "6.72178000" + }, + { + "id": "79198", + "name": "Hagavik", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.18076000", + "longitude": "5.40146000" + }, + { + "id": "79243", + "name": "Hylkje", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.51028000", + "longitude": "5.35444000" + }, + { + "id": "79252", + "name": "Indre Arna", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.41768000", + "longitude": "5.47087000" + }, + { + "id": "79258", + "name": "Jondal", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.27620000", + "longitude": "6.25257000" + }, + { + "id": "79269", + "name": "Kinsarvik", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.37567000", + "longitude": "6.71948000" + }, + { + "id": "79277", + "name": "Knappskog", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.37906000", + "longitude": "5.05602000" + }, + { + "id": "79279", + "name": "Knarvik", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.54530000", + "longitude": "5.28208000" + }, + { + "id": "79291", + "name": "Kvam", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.36977000", + "longitude": "6.14344000" + }, + { + "id": "79293", + "name": "Kvinnherad", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.98421000", + "longitude": "6.01227000" + }, + { + "id": "79311", + "name": "Leirvik", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.77977000", + "longitude": "5.50051000" + }, + { + "id": "79326", + "name": "Lindås", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.54910000", + "longitude": "5.28559000" + }, + { + "id": "79328", + "name": "Lonevåg", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.52556000", + "longitude": "5.49563000" + }, + { + "id": "79351", + "name": "Manger", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.64145000", + "longitude": "5.04136000" + }, + { + "id": "79354", + "name": "Masfjorden", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.79947000", + "longitude": "5.30035000" + }, + { + "id": "79357", + "name": "Meland", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.51777000", + "longitude": "5.24063000" + }, + { + "id": "79367", + "name": "Modalen", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.81735000", + "longitude": "5.80790000" + }, + { + "id": "79376", + "name": "Mosterhamn", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.69919000", + "longitude": "5.38585000" + }, + { + "id": "79413", + "name": "Norheimsund", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.37089000", + "longitude": "6.14562000" + }, + { + "id": "79417", + "name": "Odda", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.06697000", + "longitude": "6.54541000" + }, + { + "id": "79423", + "name": "Os", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.18547000", + "longitude": "5.46962000" + }, + { + "id": "79426", + "name": "Osterøy", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.52389000", + "longitude": "5.50551000" + }, + { + "id": "79434", + "name": "Radøy", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.64187000", + "longitude": "5.04110000" + }, + { + "id": "79457", + "name": "Rosendal", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.98589000", + "longitude": "6.01157000" + }, + { + "id": "79459", + "name": "Rubbestadneset", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.81559000", + "longitude": "5.26822000" + }, + { + "id": "79473", + "name": "Sagvåg", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.78139000", + "longitude": "5.38996000" + }, + { + "id": "79476", + "name": "Samnanger", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.37745000", + "longitude": "5.76219000" + }, + { + "id": "79485", + "name": "Sandsli", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.30323000", + "longitude": "5.28554000" + }, + { + "id": "79517", + "name": "Skogsvågen", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.25512000", + "longitude": "5.10161000" + }, + { + "id": "79548", + "name": "Stord", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.78092000", + "longitude": "5.49980000" + }, + { + "id": "79550", + "name": "Storebø", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.09485000", + "longitude": "5.22705000" + }, + { + "id": "79558", + "name": "Straume", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.36131000", + "longitude": "5.12199000" + }, + { + "id": "79564", + "name": "Sund", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.27019000", + "longitude": "5.07225000" + }, + { + "id": "79568", + "name": "Sveio", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "59.54303000", + "longitude": "5.35410000" + }, + { + "id": "79572", + "name": "Syfteland", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.23803000", + "longitude": "5.45285000" + }, + { + "id": "79617", + "name": "Tysnes", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.04076000", + "longitude": "5.53129000" + }, + { + "id": "79622", + "name": "Ullensvang", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.37501000", + "longitude": "6.72073000" + }, + { + "id": "79626", + "name": "Ulvik", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.56719000", + "longitude": "6.91871000" + }, + { + "id": "79629", + "name": "Vaksdal", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.59030000", + "longitude": "5.82272000" + }, + { + "id": "79662", + "name": "Voss", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.62780000", + "longitude": "6.41831000" + }, + { + "id": "79670", + "name": "Ytre Arna", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.46175000", + "longitude": "5.43265000" + }, + { + "id": "79671", + "name": "Ytrebygda", + "state_id": 1023, + "state_code": "12", + "country_id": 165, + "country_code": "NO", + "latitude": "60.30504000", + "longitude": "5.28236000" + }, + { + "id": "79050", + "name": "Aukra", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.80500000", + "longitude": "6.88722000" + }, + { + "id": "79052", + "name": "Aure", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "63.26750000", + "longitude": "8.52778000" + }, + { + "id": "79058", + "name": "Averøy", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "63.05344000", + "longitude": "7.63265000" + }, + { + "id": "79697", + "name": "Ørskog", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.48450000", + "longitude": "6.82025000" + }, + { + "id": "79698", + "name": "Ørsta", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.19937000", + "longitude": "6.13084000" + }, + { + "id": "79678", + "name": "Ålesund", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.47225000", + "longitude": "6.15492000" + }, + { + "id": "79680", + "name": "Åndalsnes", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.56749000", + "longitude": "7.68709000" + }, + { + "id": "79066", + "name": "Batnfjordsøra", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.89463000", + "longitude": "7.67251000" + }, + { + "id": "79086", + "name": "Brattvåg", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.59991000", + "longitude": "6.44426000" + }, + { + "id": "79111", + "name": "Eide", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.91570000", + "longitude": "7.44496000" + }, + { + "id": "79116", + "name": "Eidsvåg", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.77656000", + "longitude": "8.06550000" + }, + { + "id": "79121", + "name": "Elnesvågen", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.85426000", + "longitude": "7.13769000" + }, + { + "id": "79164", + "name": "Fræna", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.85375000", + "longitude": "7.15380000" + }, + { + "id": "79176", + "name": "Giske", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.50070000", + "longitude": "6.13472000" + }, + { + "id": "79177", + "name": "Gjemnes", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.89379000", + "longitude": "7.67714000" + }, + { + "id": "79200", + "name": "Halsa", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "63.11855000", + "longitude": "8.31536000" + }, + { + "id": "79205", + "name": "Haram", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.59898000", + "longitude": "6.44483000" + }, + { + "id": "79207", + "name": "Hareid", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.36742000", + "longitude": "6.02114000" + }, + { + "id": "79221", + "name": "Herøy", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.33333000", + "longitude": "5.63598000" + }, + { + "id": "79225", + "name": "Hjelset", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.78050000", + "longitude": "7.49277000" + }, + { + "id": "79234", + "name": "Hopen", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "63.46539000", + "longitude": "8.01437000" + }, + { + "id": "79288", + "name": "Kristiansund", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "63.11152000", + "longitude": "7.73198000" + }, + { + "id": "79303", + "name": "Larsnes", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.20282000", + "longitude": "5.57729000" + }, + { + "id": "79364", + "name": "Midsund", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.67614000", + "longitude": "6.67776000" + }, + { + "id": "79372", + "name": "Molde", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.73807000", + "longitude": "7.15882000" + }, + { + "id": "79397", + "name": "Nesset", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.77619000", + "longitude": "8.06623000" + }, + { + "id": "79405", + "name": "Norddal", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.29910000", + "longitude": "7.26145000" + }, + { + "id": "79410", + "name": "Nordstranda", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.51384000", + "longitude": "6.13166000" + }, + { + "id": "79440", + "name": "Rauma", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.56810000", + "longitude": "7.68612000" + }, + { + "id": "79448", + "name": "Rensvik", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "63.09843000", + "longitude": "7.82026000" + }, + { + "id": "79486", + "name": "Sandøy", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.78167000", + "longitude": "6.46875000" + }, + { + "id": "79481", + "name": "Sande", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.20455000", + "longitude": "5.57971000" + }, + { + "id": "79501", + "name": "Sjøholt", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.48263000", + "longitude": "6.81376000" + }, + { + "id": "79514", + "name": "Skodje", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.50306000", + "longitude": "6.69817000" + }, + { + "id": "79525", + "name": "Smøla", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "63.46526000", + "longitude": "8.01814000" + }, + { + "id": "79542", + "name": "Steinshamn", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.78389000", + "longitude": "6.47065000" + }, + { + "id": "79549", + "name": "Stordal", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.38214000", + "longitude": "6.98708000" + }, + { + "id": "79556", + "name": "Stranda", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.31132000", + "longitude": "6.93115000" + }, + { + "id": "79562", + "name": "Sula", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.44447000", + "longitude": "6.21229000" + }, + { + "id": "79565", + "name": "Sunndal", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.67464000", + "longitude": "8.56188000" + }, + { + "id": "79566", + "name": "Sunndalsøra", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.67519000", + "longitude": "8.56327000" + }, + { + "id": "79567", + "name": "Surnadal", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.97533000", + "longitude": "8.72490000" + }, + { + "id": "79573", + "name": "Sykkylven", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.38962000", + "longitude": "6.57825000" + }, + { + "id": "79593", + "name": "Tingvoll", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.91194000", + "longitude": "8.20673000" + }, + { + "id": "79600", + "name": "Tomra", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.58118000", + "longitude": "6.93106000" + }, + { + "id": "79623", + "name": "Ulstein", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.34423000", + "longitude": "5.85241000" + }, + { + "id": "79624", + "name": "Ulsteinvik", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.34317000", + "longitude": "5.84869000" + }, + { + "id": "79625", + "name": "Ulsteinvik weather pws station", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.34338000", + "longitude": "5.84385000" + }, + { + "id": "79632", + "name": "Vanylven", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.10003000", + "longitude": "5.55827000" + }, + { + "id": "79635", + "name": "Vatne", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.55826000", + "longitude": "6.61708000" + }, + { + "id": "79644", + "name": "Vestnes", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.62130000", + "longitude": "7.08966000" + }, + { + "id": "79660", + "name": "Volda", + "state_id": 1020, + "state_code": "15", + "country_id": 165, + "country_code": "NO", + "latitude": "62.14678000", + "longitude": "6.06800000" + }, + { + "id": "79038", + "name": "Alstahaug", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.97556000", + "longitude": "12.56836000" + }, + { + "id": "79042", + "name": "Andøy", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "69.08033000", + "longitude": "15.77637000" + }, + { + "id": "79041", + "name": "Andenes", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "69.31428000", + "longitude": "16.11939000" + }, + { + "id": "79692", + "name": "Øksnes", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.91463000", + "longitude": "15.08703000" + }, + { + "id": "79696", + "name": "Ørnes", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.86878000", + "longitude": "13.70579000" + }, + { + "id": "79061", + "name": "Ballangen", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.34365000", + "longitude": "16.83317000" + }, + { + "id": "79096", + "name": "Bø", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.68823000", + "longitude": "14.47899000" + }, + { + "id": "79067", + "name": "Beiarn", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.00725000", + "longitude": "14.57304000" + }, + { + "id": "79074", + "name": "Bindal", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.08780000", + "longitude": "12.37747000" + }, + { + "id": "79076", + "name": "Bjerkvik", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.54917000", + "longitude": "17.55709000" + }, + { + "id": "79081", + "name": "Bodø", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.28325000", + "longitude": "14.38319000" + }, + { + "id": "79082", + "name": "Bogen", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.52647000", + "longitude": "16.99280000" + }, + { + "id": "79091", + "name": "Brønnøy", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.46786000", + "longitude": "12.20626000" + }, + { + "id": "79092", + "name": "Brønnøysund", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.47487000", + "longitude": "12.21285000" + }, + { + "id": "79108", + "name": "Dønna", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.10606000", + "longitude": "12.48189000" + }, + { + "id": "79128", + "name": "Evenes", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.52334000", + "longitude": "17.00888000" + }, + { + "id": "79130", + "name": "Evjen", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.26667000", + "longitude": "13.73333000" + }, + { + "id": "79135", + "name": "Fauske", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.25963000", + "longitude": "15.39410000" + }, + { + "id": "79146", + "name": "Flakstad", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.09292000", + "longitude": "13.23310000" + }, + { + "id": "79175", + "name": "Gildeskål", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.03394000", + "longitude": "14.02582000" + }, + { + "id": "79181", + "name": "Gladstad", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.67683000", + "longitude": "11.96218000" + }, + { + "id": "79182", + "name": "Glomfjord", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.81663000", + "longitude": "13.94404000" + }, + { + "id": "79186", + "name": "Grane", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.53865000", + "longitude": "13.38499000" + }, + { + "id": "79189", + "name": "Gravdal", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.11832000", + "longitude": "13.55339000" + }, + { + "id": "79197", + "name": "Hadsel", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.56328000", + "longitude": "14.90835000" + }, + { + "id": "79202", + "name": "Hamarøy", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.08381000", + "longitude": "15.61671000" + }, + { + "id": "79210", + "name": "Hattfjelldal", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.59765000", + "longitude": "13.98948000" + }, + { + "id": "79213", + "name": "Hauknes", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.28333000", + "longitude": "14.06667000" + }, + { + "id": "79215", + "name": "Hemnes", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.07712000", + "longitude": "13.81350000" + }, + { + "id": "79216", + "name": "Hemnesberget", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.22489000", + "longitude": "13.61643000" + }, + { + "id": "79220", + "name": "Herøy", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.98427000", + "longitude": "12.28916000" + }, + { + "id": "79255", + "name": "Inndyr", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.03353000", + "longitude": "14.02663000" + }, + { + "id": "79263", + "name": "Kabelvåg", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.21066000", + "longitude": "14.47554000" + }, + { + "id": "79273", + "name": "Kjøpsvik", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.09696000", + "longitude": "16.37416000" + }, + { + "id": "79285", + "name": "Korgen", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.07662000", + "longitude": "13.82160000" + }, + { + "id": "79343", + "name": "Løding", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.30055000", + "longitude": "14.73852000" + }, + { + "id": "79344", + "name": "Lødingen", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.40998000", + "longitude": "15.99012000" + }, + { + "id": "79345", + "name": "Løpsmarka", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.31343000", + "longitude": "14.44934000" + }, + { + "id": "79309", + "name": "Leirfjord", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.06348000", + "longitude": "12.93667000" + }, + { + "id": "79313", + "name": "Leknes", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.14746000", + "longitude": "13.61151000" + }, + { + "id": "79314", + "name": "Leland", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.06406000", + "longitude": "12.94325000" + }, + { + "id": "79334", + "name": "Lurøy", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.41887000", + "longitude": "12.84248000" + }, + { + "id": "79362", + "name": "Meløy", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.87204000", + "longitude": "13.70763000" + }, + { + "id": "79358", + "name": "Melbu", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.50246000", + "longitude": "14.79962000" + }, + { + "id": "79366", + "name": "Mo i Rana", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.31278000", + "longitude": "14.14278000" + }, + { + "id": "79373", + "name": "Mosjøen", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.83599000", + "longitude": "13.19076000" + }, + { + "id": "79374", + "name": "Moskenes", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.93467000", + "longitude": "13.09109000" + }, + { + "id": "79377", + "name": "Myre", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.91400000", + "longitude": "15.07843000" + }, + { + "id": "79386", + "name": "Narvik", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.43896000", + "longitude": "17.42775000" + }, + { + "id": "79393", + "name": "Nesna", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.19796000", + "longitude": "13.02229000" + }, + { + "id": "79436", + "name": "Rana", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.31122000", + "longitude": "14.13996000" + }, + { + "id": "79466", + "name": "Rødøy", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.71195000", + "longitude": "13.28530000" + }, + { + "id": "79470", + "name": "Røst", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.51727000", + "longitude": "12.11564000" + }, + { + "id": "79442", + "name": "Reine", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.93249000", + "longitude": "13.08955000" + }, + { + "id": "79455", + "name": "Rognan", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.10021000", + "longitude": "15.39086000" + }, + { + "id": "79475", + "name": "Saltdal", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.10144000", + "longitude": "15.39458000" + }, + { + "id": "79484", + "name": "Sandnessjøen", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.02166000", + "longitude": "12.63158000" + }, + { + "id": "79577", + "name": "Sømna", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.31379000", + "longitude": "12.16729000" + }, + { + "id": "79583", + "name": "Sørfold", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.34803000", + "longitude": "15.59445000" + }, + { + "id": "79584", + "name": "Sørland", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.66564000", + "longitude": "12.69784000" + }, + { + "id": "79534", + "name": "Sortland", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.69618000", + "longitude": "15.41174000" + }, + { + "id": "79540", + "name": "Steigen", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.77625000", + "longitude": "15.01621000" + }, + { + "id": "79546", + "name": "Stokmarknes", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.56462000", + "longitude": "14.91075000" + }, + { + "id": "79557", + "name": "Straume", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.68880000", + "longitude": "14.47205000" + }, + { + "id": "79560", + "name": "Straumen", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.34769000", + "longitude": "15.60493000" + }, + { + "id": "79571", + "name": "Svolvær", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.23417000", + "longitude": "14.56834000" + }, + { + "id": "79591", + "name": "Terråk", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.08700000", + "longitude": "12.37148000" + }, + { + "id": "79595", + "name": "Tjeldsund", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.55557000", + "longitude": "16.36172000" + }, + { + "id": "79611", + "name": "Træna", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "66.50159000", + "longitude": "12.09645000" + }, + { + "id": "79607", + "name": "Trofors", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.53335000", + "longitude": "13.40631000" + }, + { + "id": "79616", + "name": "Tysfjord", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.09772000", + "longitude": "16.37591000" + }, + { + "id": "79663", + "name": "Vågan", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.23220000", + "longitude": "14.56226000" + }, + { + "id": "79669", + "name": "Værøy", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "67.66374000", + "longitude": "12.69337000" + }, + { + "id": "79637", + "name": "Vefsn", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.84109000", + "longitude": "13.20024000" + }, + { + "id": "79638", + "name": "Vega", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.67539000", + "longitude": "11.96456000" + }, + { + "id": "79647", + "name": "Vestvågøy", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "68.14830000", + "longitude": "13.61119000" + }, + { + "id": "79648", + "name": "Vevelstad", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.70002000", + "longitude": "12.43921000" + }, + { + "id": "79651", + "name": "Vik", + "state_id": 1025, + "state_code": "18", + "country_id": 165, + "country_code": "NO", + "latitude": "65.31254000", + "longitude": "12.16734000" + }, + { + "id": "79699", + "name": "Østre Toten", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.67659000", + "longitude": "10.81997000" + }, + { + "id": "79701", + "name": "Øyer", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.26495000", + "longitude": "10.41297000" + }, + { + "id": "79704", + "name": "Øystre Slidre", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.13377000", + "longitude": "9.07872000" + }, + { + "id": "79059", + "name": "Bagn", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.82249000", + "longitude": "9.55207000" + }, + { + "id": "79101", + "name": "Dokka", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.83500000", + "longitude": "10.07362000" + }, + { + "id": "79102", + "name": "Dombås", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "62.07554000", + "longitude": "9.12785000" + }, + { + "id": "79103", + "name": "Dovre", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.98582000", + "longitude": "9.24947000" + }, + { + "id": "79127", + "name": "Etnedal", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.88872000", + "longitude": "9.64031000" + }, + { + "id": "79131", + "name": "Fagernes", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.98584000", + "longitude": "9.23236000" + }, + { + "id": "79157", + "name": "Fossbergom", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.83772000", + "longitude": "8.56842000" + }, + { + "id": "79173", + "name": "Gausdal", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.22685000", + "longitude": "10.22145000" + }, + { + "id": "79180", + "name": "Gjøvik", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.79472000", + "longitude": "10.69287000" + }, + { + "id": "79185", + "name": "Gran", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.39293000", + "longitude": "10.56045000" + }, + { + "id": "79191", + "name": "Grua", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.25701000", + "longitude": "10.66222000" + }, + { + "id": "79237", + "name": "Hov", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.69870000", + "longitude": "10.35193000" + }, + { + "id": "79238", + "name": "Hundorp", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.55523000", + "longitude": "9.94069000" + }, + { + "id": "79257", + "name": "Jevnaker", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.24060000", + "longitude": "10.38587000" + }, + { + "id": "79315", + "name": "Lena", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.67391000", + "longitude": "10.81317000" + }, + { + "id": "79318", + "name": "Lesja", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "62.11785000", + "longitude": "8.86262000" + }, + { + "id": "79323", + "name": "Lillehammer", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.11464000", + "longitude": "10.46743000" + }, + { + "id": "79327", + "name": "Lom", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.83639000", + "longitude": "8.56811000" + }, + { + "id": "79333", + "name": "Lunner", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.29462000", + "longitude": "10.60860000" + }, + { + "id": "79402", + "name": "Nord-Aurdal", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.98531000", + "longitude": "9.23661000" + }, + { + "id": "79403", + "name": "Nord-Fron", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.59556000", + "longitude": "9.74830000" + }, + { + "id": "79408", + "name": "Nordre Land", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.83471000", + "longitude": "10.07543000" + }, + { + "id": "79427", + "name": "Otta", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.77120000", + "longitude": "9.53529000" + }, + { + "id": "79439", + "name": "Raufoss", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.72604000", + "longitude": "10.61330000" + }, + { + "id": "79443", + "name": "Reinsvoll", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.67977000", + "longitude": "10.62175000" + }, + { + "id": "79450", + "name": "Ringebu", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.52980000", + "longitude": "10.14180000" + }, + { + "id": "79578", + "name": "Søndre Land", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.69944000", + "longitude": "10.35086000" + }, + { + "id": "79579", + "name": "Sør-Aurdal", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.82242000", + "longitude": "9.54836000" + }, + { + "id": "79580", + "name": "Sør-Fron", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.55652000", + "longitude": "9.93949000" + }, + { + "id": "79490", + "name": "Sel", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.77278000", + "longitude": "9.53415000" + }, + { + "id": "79512", + "name": "Skjåk", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.88349000", + "longitude": "8.26490000" + }, + { + "id": "79520", + "name": "Skreia", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.65257000", + "longitude": "10.93564000" + }, + { + "id": "79606", + "name": "Tretten", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.31423000", + "longitude": "10.30066000" + }, + { + "id": "79630", + "name": "Vang", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.12564000", + "longitude": "8.57167000" + }, + { + "id": "79665", + "name": "Vågå", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.87565000", + "longitude": "9.09572000" + }, + { + "id": "79666", + "name": "Vågåmo", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.87505000", + "longitude": "9.09671000" + }, + { + "id": "79645", + "name": "Vestre Slidre", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.08842000", + "longitude": "8.98196000" + }, + { + "id": "79646", + "name": "Vestre Toten", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "60.72593000", + "longitude": "10.60764000" + }, + { + "id": "79659", + "name": "Vinstra", + "state_id": 1009, + "state_code": "05", + "country_id": 165, + "country_code": "NO", + "latitude": "61.59496000", + "longitude": "9.75134000" + }, + { + "id": "79425", + "name": "Oslo", + "state_id": 1007, + "state_code": "03", + "country_id": 165, + "country_code": "NO", + "latitude": "59.91273000", + "longitude": "10.74609000" + }, + { + "id": "79502", + "name": "Sjølyststranda", + "state_id": 1007, + "state_code": "03", + "country_id": 165, + "country_code": "NO", + "latitude": "59.92105000", + "longitude": "10.68017000" + }, + { + "id": "79693", + "name": "Ølen", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.60437000", + "longitude": "5.80799000" + }, + { + "id": "79676", + "name": "Åkrehamn", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.26053000", + "longitude": "5.18689000" + }, + { + "id": "79075", + "name": "Bjerkreim", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.63050000", + "longitude": "6.08130000" + }, + { + "id": "79083", + "name": "Bokn", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.23062000", + "longitude": "5.43524000" + }, + { + "id": "79090", + "name": "Bryne", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.73536000", + "longitude": "5.64766000" + }, + { + "id": "79109", + "name": "Egersund", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.45133000", + "longitude": "5.99970000" + }, + { + "id": "79117", + "name": "Eigersund", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.45236000", + "longitude": "6.00314000" + }, + { + "id": "79118", + "name": "Eike", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.39833000", + "longitude": "5.36389000" + }, + { + "id": "79141", + "name": "Finnøy", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.17117000", + "longitude": "5.87398000" + }, + { + "id": "79155", + "name": "Forsand", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.89929000", + "longitude": "6.09642000" + }, + { + "id": "79179", + "name": "Gjesdal", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.76478000", + "longitude": "5.85500000" + }, + { + "id": "79211", + "name": "Hauge i Dalane", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.34361000", + "longitude": "6.28121000" + }, + { + "id": "79212", + "name": "Haugesund", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.41015000", + "longitude": "5.27551000" + }, + { + "id": "79245", + "name": "Hå", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.61610000", + "longitude": "5.64497000" + }, + { + "id": "79224", + "name": "Hjelmeland", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.23668000", + "longitude": "6.17912000" + }, + { + "id": "79232", + "name": "Hommersåk", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.92556000", + "longitude": "5.85104000" + }, + { + "id": "79262", + "name": "Jørpeland", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.02251000", + "longitude": "6.04078000" + }, + { + "id": "79259", + "name": "Judaberg", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.17204000", + "longitude": "5.87617000" + }, + { + "id": "79267", + "name": "Karmøy", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.28079000", + "longitude": "5.30529000" + }, + { + "id": "79274", + "name": "Klepp", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.77655000", + "longitude": "5.63009000" + }, + { + "id": "79283", + "name": "Kopervik", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.28354000", + "longitude": "5.30669000" + }, + { + "id": "79295", + "name": "Kvitsøy", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.06471000", + "longitude": "5.40537000" + }, + { + "id": "79330", + "name": "Lund", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.45715000", + "longitude": "6.54871000" + }, + { + "id": "79336", + "name": "Lyefjell", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.73539000", + "longitude": "5.73615000" + }, + { + "id": "79371", + "name": "Moi", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.45674000", + "longitude": "6.55184000" + }, + { + "id": "79415", + "name": "Nærbø", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.66546000", + "longitude": "5.63788000" + }, + { + "id": "79437", + "name": "Randaberg", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.99870000", + "longitude": "5.62055000" + }, + { + "id": "79447", + "name": "Rennesøy", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.09899000", + "longitude": "5.69966000" + }, + { + "id": "79483", + "name": "Sandnes", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.84760000", + "longitude": "5.72855000" + }, + { + "id": "79488", + "name": "Sauda", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.65067000", + "longitude": "6.35312000" + }, + { + "id": "79575", + "name": "Sæveland", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.26667000", + "longitude": "5.20000000" + }, + { + "id": "79521", + "name": "Skudeneshavn", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.14856000", + "longitude": "5.25687000" + }, + { + "id": "79530", + "name": "Sokndal", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.34256000", + "longitude": "6.29425000" + }, + { + "id": "79531", + "name": "Sola", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.88806000", + "longitude": "5.64728000" + }, + { + "id": "79538", + "name": "Stavanger", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.96941000", + "longitude": "5.72856000" + }, + { + "id": "79555", + "name": "Strand", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.02353000", + "longitude": "6.04343000" + }, + { + "id": "79563", + "name": "Suldal", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.48571000", + "longitude": "6.25222000" + }, + { + "id": "79589", + "name": "Tananger", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.93618000", + "longitude": "5.57410000" + }, + { + "id": "79590", + "name": "Tau", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.06481000", + "longitude": "5.92250000" + }, + { + "id": "79592", + "name": "Time", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.73636000", + "longitude": "5.65297000" + }, + { + "id": "79618", + "name": "Tysvær", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.42159000", + "longitude": "5.44781000" + }, + { + "id": "79627", + "name": "Utsira", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.30565000", + "longitude": "4.88621000" + }, + { + "id": "79634", + "name": "Varhaug", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.61810000", + "longitude": "5.65702000" + }, + { + "id": "79636", + "name": "Vedavågen", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.29483000", + "longitude": "5.21874000" + }, + { + "id": "79650", + "name": "Vigrestad", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.57103000", + "longitude": "5.68182000" + }, + { + "id": "79654", + "name": "Vikeså", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "58.63759000", + "longitude": "6.09133000" + }, + { + "id": "79655", + "name": "Vikevåg", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.09754000", + "longitude": "5.69790000" + }, + { + "id": "79657", + "name": "Vindafjord", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.60543000", + "longitude": "5.80784000" + }, + { + "id": "79661", + "name": "Vormedal", + "state_id": 1021, + "state_code": "11", + "country_id": 165, + "country_code": "NO", + "latitude": "59.35607000", + "longitude": "5.31962000" + }, + { + "id": "79047", + "name": "Askvoll", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.34850000", + "longitude": "5.05318000" + }, + { + "id": "79053", + "name": "Aurland", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "60.90556000", + "longitude": "7.18734000" + }, + { + "id": "79682", + "name": "Årdal", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.23639000", + "longitude": "7.70204000" + }, + { + "id": "79683", + "name": "Årdalstangen", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.23581000", + "longitude": "7.70370000" + }, + { + "id": "79060", + "name": "Balestrand", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.20809000", + "longitude": "6.53551000" + }, + { + "id": "79088", + "name": "Bremanger", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.76862000", + "longitude": "5.28907000" + }, + { + "id": "79099", + "name": "Dale", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.36353000", + "longitude": "5.40036000" + }, + { + "id": "79110", + "name": "Eid", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.90684000", + "longitude": "5.99321000" + }, + { + "id": "79120", + "name": "Eivindvik", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "60.98133000", + "longitude": "5.07497000" + }, + { + "id": "79133", + "name": "Farnes", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.30850000", + "longitude": "7.79694000" + }, + { + "id": "79169", + "name": "Førde", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.45045000", + "longitude": "5.85397000" + }, + { + "id": "79143", + "name": "Fjaler", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.36383000", + "longitude": "5.39808000" + }, + { + "id": "79151", + "name": "Flora", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.59994000", + "longitude": "5.03144000" + }, + { + "id": "79152", + "name": "Florø", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.59957000", + "longitude": "5.03280000" + }, + { + "id": "79171", + "name": "Gaular", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.32564000", + "longitude": "5.79523000" + }, + { + "id": "79172", + "name": "Gaupne", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.40472000", + "longitude": "7.29458000" + }, + { + "id": "79183", + "name": "Gloppen", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.77728000", + "longitude": "6.21561000" + }, + { + "id": "79194", + "name": "Gulen", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "60.98192000", + "longitude": "5.07408000" + }, + { + "id": "79206", + "name": "Hardbakke", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.07562000", + "longitude": "4.84111000" + }, + { + "id": "79248", + "name": "Høyanger", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.21880000", + "longitude": "6.07308000" + }, + { + "id": "79218", + "name": "Hermansverk", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.18461000", + "longitude": "6.85016000" + }, + { + "id": "79235", + "name": "Hornindal", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.96925000", + "longitude": "6.52249000" + }, + { + "id": "79244", + "name": "Hyllestad", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.17036000", + "longitude": "5.29614000" + }, + { + "id": "79261", + "name": "Jølster", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.56923000", + "longitude": "6.48351000" + }, + { + "id": "79341", + "name": "Lærdal", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.09842000", + "longitude": "7.48101000" + }, + { + "id": "79342", + "name": "Lærdalsøyri", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.10001000", + "longitude": "7.47374000" + }, + { + "id": "79308", + "name": "Leikanger", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.18556000", + "longitude": "6.82199000" + }, + { + "id": "79335", + "name": "Luster", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.40310000", + "longitude": "7.29793000" + }, + { + "id": "79380", + "name": "Måløy", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.93535000", + "longitude": "5.11362000" + }, + { + "id": "79387", + "name": "Naustdal", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.51034000", + "longitude": "5.71719000" + }, + { + "id": "79406", + "name": "Nordfjordeid", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.91220000", + "longitude": "5.98557000" + }, + { + "id": "79478", + "name": "Sandane", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.77277000", + "longitude": "6.21496000" + }, + { + "id": "79479", + "name": "Sande", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.32511000", + "longitude": "5.79773000" + }, + { + "id": "79492", + "name": "Selje", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "62.04263000", + "longitude": "5.34449000" + }, + { + "id": "79529", + "name": "Sogndal", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.23144000", + "longitude": "7.10301000" + }, + { + "id": "79532", + "name": "Solund", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.07394000", + "longitude": "4.83876000" + }, + { + "id": "79561", + "name": "Stryn", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.90406000", + "longitude": "6.72400000" + }, + { + "id": "79569", + "name": "Svelgen", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.76976000", + "longitude": "5.29544000" + }, + { + "id": "79664", + "name": "Vågsøy", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.93544000", + "longitude": "5.11402000" + }, + { + "id": "79652", + "name": "Vik", + "state_id": 1018, + "state_code": "14", + "country_id": 165, + "country_code": "NO", + "latitude": "61.08863000", + "longitude": "6.58512000" + }, + { + "id": "79063", + "name": "Bamble", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.00146000", + "longitude": "9.74573000" + }, + { + "id": "79095", + "name": "Bø", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.41281000", + "longitude": "9.06618000" + }, + { + "id": "79100", + "name": "Dalen", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.44499000", + "longitude": "8.00492000" + }, + { + "id": "79105", + "name": "Drangedal", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.09655000", + "longitude": "9.05960000" + }, + { + "id": "79167", + "name": "Fyresdal", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.18651000", + "longitude": "8.08953000" + }, + { + "id": "79196", + "name": "Gvarv", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.38767000", + "longitude": "9.17240000" + }, + { + "id": "79219", + "name": "Herre", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.10351000", + "longitude": "9.56195000" + }, + { + "id": "79223", + "name": "Hjartdal", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.61276000", + "longitude": "8.94942000" + }, + { + "id": "79286", + "name": "Kragerø", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "58.86792000", + "longitude": "9.41099000" + }, + { + "id": "79294", + "name": "Kviteseid", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.40194000", + "longitude": "8.49459000" + }, + { + "id": "79332", + "name": "Lunde", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.29832000", + "longitude": "9.10268000" + }, + { + "id": "79398", + "name": "Nissedal", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.01958000", + "longitude": "8.52127000" + }, + { + "id": "79401", + "name": "Nome", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.28136000", + "longitude": "9.25678000" + }, + { + "id": "79414", + "name": "Notodden", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.55992000", + "longitude": "9.26046000" + }, + { + "id": "79430", + "name": "Porsgrunn", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.14190000", + "longitude": "9.65680000" + }, + { + "id": "79431", + "name": "Prestestranda", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.09773000", + "longitude": "9.05866000" + }, + { + "id": "79453", + "name": "Rjukan", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.87891000", + "longitude": "8.59411000" + }, + { + "id": "79489", + "name": "Sauherad", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.39642000", + "longitude": "9.24910000" + }, + { + "id": "79493", + "name": "Seljord", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.48274000", + "longitude": "8.62672000" + }, + { + "id": "79498", + "name": "Siljan", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.28251000", + "longitude": "9.73368000" + }, + { + "id": "79508", + "name": "Skien", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.20748000", + "longitude": "9.61052000" + }, + { + "id": "79594", + "name": "Tinn", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.83486000", + "longitude": "9.13528000" + }, + { + "id": "79598", + "name": "Tokke", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.44569000", + "longitude": "8.01388000" + }, + { + "id": "79620", + "name": "Ulefoss", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.28245000", + "longitude": "9.26548000" + }, + { + "id": "79658", + "name": "Vinje", + "state_id": 1024, + "state_code": "08", + "country_id": 165, + "country_code": "NO", + "latitude": "59.56924000", + "longitude": "7.98896000" + }, + { + "id": "79037", + "name": "Agdenes", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.50575000", + "longitude": "9.82623000" + }, + { + "id": "79695", + "name": "Ørland", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.68574000", + "longitude": "9.66633000" + }, + { + "id": "79673", + "name": "Å i Åfjord", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.96068000", + "longitude": "10.22468000" + }, + { + "id": "79674", + "name": "Åfjord", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.96196000", + "longitude": "10.22587000" + }, + { + "id": "79071", + "name": "Berkåk", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "62.82496000", + "longitude": "10.01177000" + }, + { + "id": "79077", + "name": "Bjugn", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.76522000", + "longitude": "9.80940000" + }, + { + "id": "79085", + "name": "Botngård", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.76484000", + "longitude": "9.80863000" + }, + { + "id": "79087", + "name": "Brekstad", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.68697000", + "longitude": "9.66541000" + }, + { + "id": "79139", + "name": "Fillan", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.60638000", + "longitude": "8.96961000" + }, + { + "id": "79147", + "name": "Flatanger", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.41282000", + "longitude": "11.03285000" + }, + { + "id": "79156", + "name": "Fosnes", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.65910000", + "longitude": "11.26535000" + }, + { + "id": "79165", + "name": "Frøya", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.73005000", + "longitude": "8.82426000" + }, + { + "id": "79163", + "name": "Frosta", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.58910000", + "longitude": "10.74230000" + }, + { + "id": "79190", + "name": "Grong", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.46397000", + "longitude": "12.31114000" + }, + { + "id": "79249", + "name": "Høylandet", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.62759000", + "longitude": "12.30041000" + }, + { + "id": "79214", + "name": "Hemne", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.29095000", + "longitude": "9.08893000" + }, + { + "id": "79222", + "name": "Hitra", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.54528000", + "longitude": "8.78029000" + }, + { + "id": "79230", + "name": "Holtålen", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "62.84318000", + "longitude": "11.29284000" + }, + { + "id": "79231", + "name": "Hommelvik", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.41083000", + "longitude": "10.79424000" + }, + { + "id": "79251", + "name": "Inderøy", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.87826000", + "longitude": "11.28424000" + }, + { + "id": "79253", + "name": "Indre Fosen", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.58897000", + "longitude": "9.95847000" + }, + { + "id": "79275", + "name": "Klæbu", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.30060000", + "longitude": "10.48188000" + }, + { + "id": "79280", + "name": "Kolvereid", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.86549000", + "longitude": "11.60465000" + }, + { + "id": "79298", + "name": "Kyrksæterøra", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.29057000", + "longitude": "9.08909000" + }, + { + "id": "79305", + "name": "Lauvsnes", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.50061000", + "longitude": "10.89396000" + }, + { + "id": "79312", + "name": "Leka", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "65.09244000", + "longitude": "11.70513000" + }, + { + "id": "79319", + "name": "Levanger", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.74585000", + "longitude": "11.29991000" + }, + { + "id": "79321", + "name": "Lierne", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.46413000", + "longitude": "13.59249000" + }, + { + "id": "79331", + "name": "Lundamo", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.15216000", + "longitude": "10.28555000" + }, + { + "id": "79348", + "name": "Malm", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.07534000", + "longitude": "11.22398000" + }, + { + "id": "79349", + "name": "Malvik", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.41057000", + "longitude": "10.79382000" + }, + { + "id": "79359", + "name": "Meldal", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.04598000", + "longitude": "9.71088000" + }, + { + "id": "79360", + "name": "Melhus", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.28755000", + "longitude": "10.27686000" + }, + { + "id": "79363", + "name": "Meråker", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.41423000", + "longitude": "11.74558000" + }, + { + "id": "79365", + "name": "Midtre Gauldal", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.03902000", + "longitude": "10.28701000" + }, + { + "id": "79382", + "name": "Namdalseid", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.10843000", + "longitude": "10.91862000" + }, + { + "id": "79383", + "name": "Namsos", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.47842000", + "longitude": "11.54182000" + }, + { + "id": "79384", + "name": "Namsskogan", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.92597000", + "longitude": "13.15932000" + }, + { + "id": "79416", + "name": "Nærøy", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.86298000", + "longitude": "11.60505000" + }, + { + "id": "79419", + "name": "Oppdal", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "62.59495000", + "longitude": "9.68761000" + }, + { + "id": "79421", + "name": "Orkdal", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.29989000", + "longitude": "9.84365000" + }, + { + "id": "79424", + "name": "Osen", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.29875000", + "longitude": "10.51284000" + }, + { + "id": "79428", + "name": "Overhalla", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.49380000", + "longitude": "11.94753000" + }, + { + "id": "79433", + "name": "Raarvihke - Røyrvik", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.88380000", + "longitude": "13.56310000" + }, + { + "id": "79438", + "name": "Ranemsletta", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.49447000", + "longitude": "11.94912000" + }, + { + "id": "79468", + "name": "Røros", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "62.57562000", + "longitude": "11.38730000" + }, + { + "id": "79469", + "name": "Rørvik", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.86185000", + "longitude": "11.23969000" + }, + { + "id": "79472", + "name": "Røyrvik", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.88394000", + "longitude": "13.56256000" + }, + { + "id": "79446", + "name": "Rennebu", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "62.82864000", + "longitude": "10.00487000" + }, + { + "id": "79449", + "name": "Rindal", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.05511000", + "longitude": "9.21274000" + }, + { + "id": "79454", + "name": "Roan", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.17281000", + "longitude": "10.22511000" + }, + { + "id": "79491", + "name": "Selbu", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.21770000", + "longitude": "11.03938000" + }, + { + "id": "79500", + "name": "Sistranda", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.72523000", + "longitude": "8.83318000" + }, + { + "id": "79505", + "name": "Skaun", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.32386000", + "longitude": "10.06745000" + }, + { + "id": "79516", + "name": "Skogn", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.70374000", + "longitude": "11.19262000" + }, + { + "id": "79527", + "name": "Snåase", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.24570000", + "longitude": "12.37779000" + }, + { + "id": "79528", + "name": "Snåase - Snåsa", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.24606000", + "longitude": "12.38294000" + }, + { + "id": "79526", + "name": "Snillfjord", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.39973000", + "longitude": "9.50194000" + }, + { + "id": "79541", + "name": "Steinkjer", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.19303000", + "longitude": "11.38505000" + }, + { + "id": "79543", + "name": "Stjørdal", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.56699000", + "longitude": "11.02730000" + }, + { + "id": "79544", + "name": "Stjørdalshalsen", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.46810000", + "longitude": "10.92618000" + }, + { + "id": "79559", + "name": "Straumen", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.87163000", + "longitude": "11.29617000" + }, + { + "id": "79609", + "name": "Trondheim", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.42811000", + "longitude": "10.39687000" + }, + { + "id": "79614", + "name": "Tydal", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.04477000", + "longitude": "11.65038000" + }, + { + "id": "79640", + "name": "Verdal", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "63.90023000", + "longitude": "11.72724000" + }, + { + "id": "79641", + "name": "Verran", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.07100000", + "longitude": "11.21795000" + }, + { + "id": "79656", + "name": "Vikna", + "state_id": 1006, + "state_code": "50", + "country_id": 165, + "country_code": "NO", + "latitude": "64.86362000", + "longitude": "11.24198000" + }, + { + "id": "79062", + "name": "Balsfjord", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.24024000", + "longitude": "19.22653000" + }, + { + "id": "79064", + "name": "Bardu", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.86058000", + "longitude": "18.35052000" + }, + { + "id": "79068", + "name": "Berg", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.44444000", + "longitude": "17.29950000" + }, + { + "id": "79084", + "name": "Borkenes", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.77261000", + "longitude": "16.17115000" + }, + { + "id": "79107", + "name": "Dyrøy", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.09154000", + "longitude": "17.69094000" + }, + { + "id": "79129", + "name": "Evenskjer", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.58283000", + "longitude": "16.57203000" + }, + { + "id": "79140", + "name": "Finnsnes", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.22959000", + "longitude": "17.98114000" + }, + { + "id": "79188", + "name": "Gratangen", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.69273000", + "longitude": "17.53186000" + }, + { + "id": "79193", + "name": "Gryllefjord", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.36304000", + "longitude": "17.05284000" + }, + { + "id": "79204", + "name": "Hansnes", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.96701000", + "longitude": "19.62752000" + }, + { + "id": "79208", + "name": "Harstad", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.79896000", + "longitude": "16.52930000" + }, + { + "id": "79250", + "name": "Ibestad", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.77866000", + "longitude": "17.17661000" + }, + { + "id": "79266", + "name": "Karlsøy", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.96185000", + "longitude": "19.61811000" + }, + { + "id": "79300", + "name": "Kåfjord", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.60400000", + "longitude": "20.53456000" + }, + { + "id": "79296", + "name": "Kvæfjord", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.77201000", + "longitude": "16.17294000" + }, + { + "id": "79297", + "name": "Kvænangen", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.93890000", + "longitude": "22.04935000" + }, + { + "id": "79306", + "name": "Lavangen", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.74722000", + "longitude": "17.80558000" + }, + { + "id": "79316", + "name": "Lenvik", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.23111000", + "longitude": "17.98739000" + }, + { + "id": "79338", + "name": "Lyngen", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.57621000", + "longitude": "20.21702000" + }, + { + "id": "79339", + "name": "Lyngseidet", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.57629000", + "longitude": "20.21887000" + }, + { + "id": "79379", + "name": "Målselv", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.12389000", + "longitude": "18.61498000" + }, + { + "id": "79370", + "name": "Moen", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.13043000", + "longitude": "18.61226000" + }, + { + "id": "79409", + "name": "Nordreisa", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.76825000", + "longitude": "21.02569000" + }, + { + "id": "79418", + "name": "Olderdalen", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.60407000", + "longitude": "20.53272000" + }, + { + "id": "79474", + "name": "Salangen", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.87669000", + "longitude": "17.83375000" + }, + { + "id": "79585", + "name": "Sørreisa", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.14697000", + "longitude": "18.15629000" + }, + { + "id": "79496", + "name": "Setermoen", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.86099000", + "longitude": "18.34857000" + }, + { + "id": "79503", + "name": "Sjøvegan", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.87363000", + "longitude": "17.84706000" + }, + { + "id": "79524", + "name": "Skånland", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "68.58378000", + "longitude": "16.57305000" + }, + { + "id": "79511", + "name": "Skjervøy", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "70.03379000", + "longitude": "20.97365000" + }, + { + "id": "79551", + "name": "Storfjord", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.26860000", + "longitude": "19.96089000" + }, + { + "id": "79552", + "name": "Storslett", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.76783000", + "longitude": "21.02466000" + }, + { + "id": "79553", + "name": "Storsteinnes", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.24081000", + "longitude": "19.23437000" + }, + { + "id": "79603", + "name": "Torsken", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.36184000", + "longitude": "17.05384000" + }, + { + "id": "79605", + "name": "Tranøy", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.17022000", + "longitude": "17.73480000" + }, + { + "id": "79608", + "name": "Tromsø", + "state_id": 1015, + "state_code": "19", + "country_id": 165, + "country_code": "NO", + "latitude": "69.64961000", + "longitude": "18.95702000" + }, + { + "id": "79049", + "name": "Audnedal", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.28378000", + "longitude": "7.35487000" + }, + { + "id": "79688", + "name": "Åseral", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.61730000", + "longitude": "7.41118000" + }, + { + "id": "79134", + "name": "Farsund", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.09538000", + "longitude": "6.80403000" + }, + { + "id": "79149", + "name": "Flekkefjord", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.29791000", + "longitude": "6.66345000" + }, + { + "id": "79246", + "name": "Hægebostad", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.37572000", + "longitude": "7.21973000" + }, + { + "id": "79260", + "name": "Justvik", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.19691000", + "longitude": "8.03107000" + }, + { + "id": "79287", + "name": "Kristiansand", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.14642000", + "longitude": "7.99687000" + }, + { + "id": "79292", + "name": "Kvinesdal", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.23894000", + "longitude": "6.71445000" + }, + { + "id": "79322", + "name": "Liknes", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.31216000", + "longitude": "6.96180000" + }, + { + "id": "79325", + "name": "Lindesnes", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.08435000", + "longitude": "7.30162000" + }, + { + "id": "79337", + "name": "Lyngdal", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.13829000", + "longitude": "7.06836000" + }, + { + "id": "79350", + "name": "Mandal", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.02633000", + "longitude": "7.45014000" + }, + { + "id": "79353", + "name": "Marnardal", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.19802000", + "longitude": "7.52802000" + }, + { + "id": "79400", + "name": "Nodeland", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.15517000", + "longitude": "7.83576000" + }, + { + "id": "79576", + "name": "Søgne", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.09663000", + "longitude": "7.81491000" + }, + { + "id": "79499", + "name": "Sirdal", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.66510000", + "longitude": "6.71585000" + }, + { + "id": "79523", + "name": "Skålevik", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.07955000", + "longitude": "8.01602000" + }, + { + "id": "79533", + "name": "Songdalen", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.15273000", + "longitude": "7.83677000" + }, + { + "id": "79554", + "name": "Strai", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.18930000", + "longitude": "7.92826000" + }, + { + "id": "79602", + "name": "Tonstad", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.66263000", + "longitude": "6.71694000" + }, + { + "id": "79613", + "name": "Tveit", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.23366000", + "longitude": "8.12199000" + }, + { + "id": "79631", + "name": "Vanse", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.09812000", + "longitude": "6.69184000" + }, + { + "id": "79639", + "name": "Vennesla", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.34271000", + "longitude": "7.97596000" + }, + { + "id": "79643", + "name": "Vestbygd", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.09991000", + "longitude": "6.58696000" + }, + { + "id": "79649", + "name": "Vigeland", + "state_id": 1014, + "state_code": "10", + "country_id": 165, + "country_code": "NO", + "latitude": "58.08437000", + "longitude": "7.30497000" + }, + { + "id": "79686", + "name": "Årøysund", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.18321000", + "longitude": "10.45743000" + }, + { + "id": "79689", + "name": "Åsgårdstrand", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.34938000", + "longitude": "10.46948000" + }, + { + "id": "79065", + "name": "Barkåker", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.31859000", + "longitude": "10.38963000" + }, + { + "id": "79070", + "name": "Berger", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.54994000", + "longitude": "10.38641000" + }, + { + "id": "79168", + "name": "Færder", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.22791000", + "longitude": "10.41530000" + }, + { + "id": "79195", + "name": "Gullhaug", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.50130000", + "longitude": "10.25224000" + }, + { + "id": "79229", + "name": "Holmestrand", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.48976000", + "longitude": "10.31515000" + }, + { + "id": "79236", + "name": "Horten", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.41547000", + "longitude": "10.48527000" + }, + { + "id": "79304", + "name": "Larvik", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.05234000", + "longitude": "10.02701000" + }, + { + "id": "79361", + "name": "Melsomvik", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.22394000", + "longitude": "10.33616000" + }, + { + "id": "79441", + "name": "Re", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.35056000", + "longitude": "10.24763000" + }, + { + "id": "79480", + "name": "Sande", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.59362000", + "longitude": "10.20757000" + }, + { + "id": "79482", + "name": "Sandefjord", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.12881000", + "longitude": "10.21971000" + }, + { + "id": "79494", + "name": "Selvik", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.56645000", + "longitude": "10.26004000" + }, + { + "id": "79495", + "name": "Sem", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.28230000", + "longitude": "10.33004000" + }, + { + "id": "79518", + "name": "Skoppum", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.38613000", + "longitude": "10.41077000" + }, + { + "id": "79539", + "name": "Stavern", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.00000000", + "longitude": "10.03333000" + }, + { + "id": "79545", + "name": "Stokke", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.22255000", + "longitude": "10.30055000" + }, + { + "id": "79570", + "name": "Svelvik", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.60677000", + "longitude": "10.40225000" + }, + { + "id": "79619", + "name": "Tønsberg", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.26754000", + "longitude": "10.40762000" + }, + { + "id": "79596", + "name": "Tjøme", + "state_id": 1008, + "state_code": "07", + "country_id": 165, + "country_code": "NO", + "latitude": "59.11090000", + "longitude": "10.39330000" + }, + { + "id": "79926", + "name": "Adam", + "state_id": 3058, + "state_code": "DA", + "country_id": 166, + "country_code": "OM", + "latitude": "22.37934000", + "longitude": "57.52718000" + }, + { + "id": "79930", + "name": "Bahlā’", + "state_id": 3058, + "state_code": "DA", + "country_id": 166, + "country_code": "OM", + "latitude": "22.97886000", + "longitude": "57.30470000" + }, + { + "id": "79934", + "name": "Bidbid", + "state_id": 3058, + "state_code": "DA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.40787000", + "longitude": "58.12830000" + }, + { + "id": "79937", + "name": "Izkī", + "state_id": 3058, + "state_code": "DA", + "country_id": 166, + "country_code": "OM", + "latitude": "22.93333000", + "longitude": "57.76667000" + }, + { + "id": "79942", + "name": "Nizwá", + "state_id": 3058, + "state_code": "DA", + "country_id": 166, + "country_code": "OM", + "latitude": "22.93333000", + "longitude": "57.53333000" + }, + { + "id": "79948", + "name": "Sufālat Samā’il", + "state_id": 3058, + "state_code": "DA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.31667000", + "longitude": "58.01667000" + }, + { + "id": "79953", + "name": "‘Ibrī", + "state_id": 3047, + "state_code": "ZA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.22573000", + "longitude": "56.51572000" + }, + { + "id": "79950", + "name": "Yanqul", + "state_id": 3047, + "state_code": "ZA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.58645000", + "longitude": "56.53969000" + }, + { + "id": "79928", + "name": "Al Khābūrah", + "state_id": 3048, + "state_code": "BS", + "country_id": 166, + "country_code": "OM", + "latitude": "23.97144000", + "longitude": "57.09313000" + }, + { + "id": "79929", + "name": "As Suwayq", + "state_id": 3048, + "state_code": "BS", + "country_id": 166, + "country_code": "OM", + "latitude": "23.84944000", + "longitude": "57.43861000" + }, + { + "id": "79952", + "name": "Şaḩam", + "state_id": 3048, + "state_code": "BS", + "country_id": 166, + "country_code": "OM", + "latitude": "24.17222000", + "longitude": "56.88861000" + }, + { + "id": "79939", + "name": "Liwá", + "state_id": 3048, + "state_code": "BS", + "country_id": 166, + "country_code": "OM", + "latitude": "24.53077000", + "longitude": "56.56300000" + }, + { + "id": "79946", + "name": "Shināş", + "state_id": 3048, + "state_code": "BS", + "country_id": 166, + "country_code": "OM", + "latitude": "24.74260000", + "longitude": "56.46698000" + }, + { + "id": "79947", + "name": "Sohar", + "state_id": 3048, + "state_code": "BS", + "country_id": 166, + "country_code": "OM", + "latitude": "24.34745000", + "longitude": "56.70937000" + }, + { + "id": "79931", + "name": "Barkā’", + "state_id": 3050, + "state_code": "BA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.67872000", + "longitude": "57.88605000" + }, + { + "id": "79933", + "name": "Bayt al ‘Awābī", + "state_id": 3050, + "state_code": "BA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.30324000", + "longitude": "57.52459000" + }, + { + "id": "79943", + "name": "Oman Smart Future City", + "state_id": 3050, + "state_code": "BA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.65270000", + "longitude": "57.59926000" + }, + { + "id": "79944", + "name": "Rustaq", + "state_id": 3050, + "state_code": "BA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.39083000", + "longitude": "57.42444000" + }, + { + "id": "79927", + "name": "Al Buraymī", + "state_id": 3059, + "state_code": "BU", + "country_id": 166, + "country_code": "OM", + "latitude": "24.25088000", + "longitude": "55.79312000" + }, + { + "id": "79936", + "name": "Haymā’", + "state_id": 3056, + "state_code": "WU", + "country_id": 166, + "country_code": "OM", + "latitude": "19.95931000", + "longitude": "56.27575000" + }, + { + "id": "79949", + "name": "Sur", + "state_id": 3051, + "state_code": "SH", + "country_id": 166, + "country_code": "OM", + "latitude": "22.56667000", + "longitude": "59.52889000" + }, + { + "id": "79951", + "name": "Şalālah", + "state_id": 3057, + "state_code": "ZU", + "country_id": 166, + "country_code": "OM", + "latitude": "17.01505000", + "longitude": "54.09237000" + }, + { + "id": "79935", + "name": "Dib Dibba", + "state_id": 3052, + "state_code": "MU", + "country_id": 166, + "country_code": "OM", + "latitude": "26.19778000", + "longitude": "56.25778000" + }, + { + "id": "79938", + "name": "Khasab", + "state_id": 3052, + "state_code": "MU", + "country_id": 166, + "country_code": "OM", + "latitude": "26.17993000", + "longitude": "56.24774000" + }, + { + "id": "79940", + "name": "Madḩā’ al Jadīdah", + "state_id": 3052, + "state_code": "MU", + "country_id": 166, + "country_code": "OM", + "latitude": "25.28345000", + "longitude": "56.33280000" + }, + { + "id": "79932", + "name": "Bawshar", + "state_id": 3055, + "state_code": "MA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.57769000", + "longitude": "58.39982000" + }, + { + "id": "79941", + "name": "Muscat", + "state_id": 3055, + "state_code": "MA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.58413000", + "longitude": "58.40778000" + }, + { + "id": "79945", + "name": "Seeb", + "state_id": 3055, + "state_code": "MA", + "country_id": 166, + "country_code": "OM", + "latitude": "23.67027000", + "longitude": "58.18911000" + }, + { + "id": "85368", + "name": "Bhimbar", + "state_id": 3172, + "state_code": "JK", + "country_id": 167, + "country_code": "PK", + "latitude": "32.97465000", + "longitude": "74.07846000" + }, + { + "id": "85562", + "name": "Kotli", + "state_id": 3172, + "state_code": "JK", + "country_id": 167, + "country_code": "PK", + "latitude": "33.51836000", + "longitude": "73.90220000" + }, + { + "id": "85563", + "name": "Kotli District", + "state_id": 3172, + "state_code": "JK", + "country_id": 167, + "country_code": "PK", + "latitude": "33.44559000", + "longitude": "73.91557000" + }, + { + "id": "85614", + "name": "Mirpur District", + "state_id": 3172, + "state_code": "JK", + "country_id": 167, + "country_code": "PK", + "latitude": "33.21556000", + "longitude": "73.75144000" + }, + { + "id": "85628", + "name": "Muzaffarābād", + "state_id": 3172, + "state_code": "JK", + "country_id": 167, + "country_code": "PK", + "latitude": "34.37002000", + "longitude": "73.47082000" + }, + { + "id": "85643", + "name": "New Mirpur", + "state_id": 3172, + "state_code": "JK", + "country_id": 167, + "country_code": "PK", + "latitude": "33.14782000", + "longitude": "73.75187000" + }, + { + "id": "85682", + "name": "Rawala Kot", + "state_id": 3172, + "state_code": "JK", + "country_id": 167, + "country_code": "PK", + "latitude": "33.85782000", + "longitude": "73.76043000" + }, + { + "id": "85334", + "name": "Alik Ghund", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.48976000", + "longitude": "67.52177000" + }, + { + "id": "85342", + "name": "Awārān District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "26.21157000", + "longitude": "65.42944000" + }, + { + "id": "85353", + "name": "Barkhan", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.89773000", + "longitude": "69.52558000" + }, + { + "id": "85375", + "name": "Bārkhān District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.98482000", + "longitude": "69.69944000" + }, + { + "id": "85360", + "name": "Bela", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "26.22718000", + "longitude": "66.31178000" + }, + { + "id": "85362", + "name": "Bhag", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.04174000", + "longitude": "67.82394000" + }, + { + "id": "85385", + "name": "Chaman", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.91769000", + "longitude": "66.45259000" + }, + { + "id": "85401", + "name": "Chāgai District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.98765000", + "longitude": "63.59087000" + }, + { + "id": "85397", + "name": "Chowki Jamali", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.01944000", + "longitude": "67.92083000" + }, + { + "id": "85402", + "name": "Dadhar", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.47489000", + "longitude": "67.65167000" + }, + { + "id": "85406", + "name": "Dalbandin", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.88846000", + "longitude": "64.40616000" + }, + { + "id": "85416", + "name": "Dera Bugti", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.03619000", + "longitude": "69.15849000" + }, + { + "id": "85417", + "name": "Dera Bugti District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.94250000", + "longitude": "69.06883000" + }, + { + "id": "85432", + "name": "Duki", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.15307000", + "longitude": "68.57323000" + }, + { + "id": "85442", + "name": "Gadani", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "25.11879000", + "longitude": "66.73219000" + }, + { + "id": "85445", + "name": "Garhi Khairo", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.06029000", + "longitude": "67.98033000" + }, + { + "id": "85459", + "name": "Gwadar", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "25.12163000", + "longitude": "62.32541000" + }, + { + "id": "85465", + "name": "Harnai", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.10077000", + "longitude": "67.93824000" + }, + { + "id": "85497", + "name": "Jāfarābād District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.30104000", + "longitude": "68.19783000" + }, + { + "id": "85489", + "name": "Jhal Magsi District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.36881000", + "longitude": "67.54300000" + }, + { + "id": "85495", + "name": "Jiwani", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "25.04852000", + "longitude": "61.74573000" + }, + { + "id": "85507", + "name": "Kalat", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.02663000", + "longitude": "66.59361000" + }, + { + "id": "85511", + "name": "Kalāt District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.88242000", + "longitude": "66.53165000" + }, + { + "id": "85530", + "name": "Khadan Khak", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.75236000", + "longitude": "67.71133000" + }, + { + "id": "85543", + "name": "Kharan", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.58459000", + "longitude": "65.41501000" + }, + { + "id": "85550", + "name": "Khārān District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "27.96308000", + "longitude": "64.57113000" + }, + { + "id": "85548", + "name": "Khuzdar", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "27.81193000", + "longitude": "66.61096000" + }, + { + "id": "85549", + "name": "Khuzdār District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "27.48680000", + "longitude": "66.58703000" + }, + { + "id": "85552", + "name": "Kohlu", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.89651000", + "longitude": "69.25324000" + }, + { + "id": "85556", + "name": "Kot Malik Barkhurdar", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.20379000", + "longitude": "66.98723000" + }, + { + "id": "85579", + "name": "Lasbela District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "25.78634000", + "longitude": "66.60330000" + }, + { + "id": "85584", + "name": "Loralai", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.37051000", + "longitude": "68.59795000" + }, + { + "id": "85585", + "name": "Loralai District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.30253000", + "longitude": "68.84636000" + }, + { + "id": "85586", + "name": "Mach", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.86371000", + "longitude": "67.33018000" + }, + { + "id": "85599", + "name": "Mastung", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.79966000", + "longitude": "66.84553000" + }, + { + "id": "85600", + "name": "Mastung District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.79455000", + "longitude": "66.72068000" + }, + { + "id": "85629", + "name": "Mūsa Khel District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.84937000", + "longitude": "69.90069000" + }, + { + "id": "85605", + "name": "Mehrabpur", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.10773000", + "longitude": "68.02554000" + }, + { + "id": "85635", + "name": "Nasīrābād District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.62643000", + "longitude": "68.12925000" + }, + { + "id": "85648", + "name": "Nushki", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.55218000", + "longitude": "66.02288000" + }, + { + "id": "85651", + "name": "Ormara", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "25.21018000", + "longitude": "64.63626000" + }, + { + "id": "85656", + "name": "Panjgūr District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "26.73750000", + "longitude": "64.20380000" + }, + { + "id": "85658", + "name": "Pasni", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "25.26302000", + "longitude": "63.46921000" + }, + { + "id": "85668", + "name": "Pishin", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.58176000", + "longitude": "66.99406000" + }, + { + "id": "85671", + "name": "Qila Saifullāh District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.95392000", + "longitude": "68.33996000" + }, + { + "id": "85672", + "name": "Quetta", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.18414000", + "longitude": "67.00141000" + }, + { + "id": "85673", + "name": "Quetta District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.17458000", + "longitude": "66.76203000" + }, + { + "id": "85721", + "name": "Sibi", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "29.54299000", + "longitude": "67.87726000" + }, + { + "id": "85727", + "name": "Sohbatpur", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.52038000", + "longitude": "68.54298000" + }, + { + "id": "85731", + "name": "Surab", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.49276000", + "longitude": "66.25999000" + }, + { + "id": "85755", + "name": "Turbat", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "26.00122000", + "longitude": "63.04849000" + }, + { + "id": "85760", + "name": "Usta Muhammad", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "28.17723000", + "longitude": "68.04367000" + }, + { + "id": "85761", + "name": "Uthal", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "25.80722000", + "longitude": "66.62194000" + }, + { + "id": "85771", + "name": "Zhob", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "31.34082000", + "longitude": "69.44930000" + }, + { + "id": "85772", + "name": "Zhob District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "31.36444000", + "longitude": "69.20749000" + }, + { + "id": "85773", + "name": "Ziarat", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.38244000", + "longitude": "67.72562000" + }, + { + "id": "85774", + "name": "Ziārat District", + "state_id": 3174, + "state_code": "BA", + "country_id": 167, + "country_code": "PK", + "latitude": "30.43591000", + "longitude": "67.50962000" + }, + { + "id": "85336", + "name": "Alizai", + "state_id": 3173, + "state_code": "TA", + "country_id": 167, + "country_code": "PK", + "latitude": "33.53613000", + "longitude": "70.34607000" + }, + { + "id": "85458", + "name": "Gulishah Kach", + "state_id": 3173, + "state_code": "TA", + "country_id": 167, + "country_code": "PK", + "latitude": "32.67087000", + "longitude": "70.33917000" + }, + { + "id": "85577", + "name": "Landi Kotal", + "state_id": 3173, + "state_code": "TA", + "country_id": 167, + "country_code": "PK", + "latitude": "34.09880000", + "longitude": "71.14108000" + }, + { + "id": "85611", + "name": "Miran Shah", + "state_id": 3173, + "state_code": "TA", + "country_id": 167, + "country_code": "PK", + "latitude": "33.00059000", + "longitude": "70.07117000" + }, + { + "id": "85645", + "name": "North Wazīristān Agency", + "state_id": 3173, + "state_code": "TA", + "country_id": 167, + "country_code": "PK", + "latitude": "32.95087000", + "longitude": "69.95764000" + }, + { + "id": "85717", + "name": "Shinpokh", + "state_id": 3173, + "state_code": "TA", + "country_id": 167, + "country_code": "PK", + "latitude": "34.32959000", + "longitude": "71.17852000" + }, + { + "id": "85728", + "name": "South Wazīristān Agency", + "state_id": 3173, + "state_code": "TA", + "country_id": 167, + "country_code": "PK", + "latitude": "32.30397000", + "longitude": "69.68207000" + }, + { + "id": "85764", + "name": "Wana", + "state_id": 3173, + "state_code": "TA", + "country_id": 167, + "country_code": "PK", + "latitude": "32.29889000", + "longitude": "69.57250000" + }, + { + "id": "85352", + "name": "Barishal", + "state_id": 3170, + "state_code": "GB", + "country_id": 167, + "country_code": "PK", + "latitude": "36.32162000", + "longitude": "74.69502000" + }, + { + "id": "85450", + "name": "Gilgit", + "state_id": 3170, + "state_code": "GB", + "country_id": 167, + "country_code": "PK", + "latitude": "35.91869000", + "longitude": "74.31245000" + }, + { + "id": "85724", + "name": "Skardu", + "state_id": 3170, + "state_code": "GB", + "country_id": 167, + "country_code": "PK", + "latitude": "35.29787000", + "longitude": "75.63372000" + }, + { + "id": "85475", + "name": "Islamabad", + "state_id": 3169, + "state_code": "IS", + "country_id": 167, + "country_code": "PK", + "latitude": "33.72148000", + "longitude": "73.04329000" + }, + { + "id": "85329", + "name": "Abbottabad", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.14630000", + "longitude": "73.21168000" + }, + { + "id": "85333", + "name": "Akora", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.00337000", + "longitude": "72.12561000" + }, + { + "id": "85337", + "name": "Aman Garh", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.00584000", + "longitude": "71.92971000" + }, + { + "id": "85338", + "name": "Amirabad", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.18729000", + "longitude": "73.09078000" + }, + { + "id": "85340", + "name": "Ashanagro Koto", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.10773000", + "longitude": "72.24517000" + }, + { + "id": "85345", + "name": "Baffa", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.43770000", + "longitude": "73.22368000" + }, + { + "id": "85351", + "name": "Bannu", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "32.98527000", + "longitude": "70.60403000" + }, + { + "id": "85356", + "name": "Bat Khela", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.61780000", + "longitude": "71.97247000" + }, + { + "id": "85357", + "name": "Battagram", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.67719000", + "longitude": "73.02329000" + }, + { + "id": "85358", + "name": "Battagram District", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.68051000", + "longitude": "73.00535000" + }, + { + "id": "85374", + "name": "Buner District", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.44301000", + "longitude": "72.49933000" + }, + { + "id": "85387", + "name": "Charsadda", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.14822000", + "longitude": "71.74060000" + }, + { + "id": "85390", + "name": "Cherat Cantonement", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "33.82342000", + "longitude": "71.89292000" + }, + { + "id": "85395", + "name": "Chitral", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "35.85180000", + "longitude": "71.78636000" + }, + { + "id": "85419", + "name": "Dera Ismail Khan", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "31.83129000", + "longitude": "70.90170000" + }, + { + "id": "85420", + "name": "Dera Ismāīl Khān District", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "31.85963000", + "longitude": "70.64879000" + }, + { + "id": "85430", + "name": "Doaba", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "33.42450000", + "longitude": "70.73676000" + }, + { + "id": "85463", + "name": "Hangu", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "33.53198000", + "longitude": "71.05950000" + }, + { + "id": "85464", + "name": "Haripur", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "33.99783000", + "longitude": "72.93493000" + }, + { + "id": "85470", + "name": "Havelian", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.05348000", + "longitude": "73.15993000" + }, + { + "id": "85504", + "name": "Kakad Wari Dir Upper", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.99798000", + "longitude": "72.07295000" + }, + { + "id": "85522", + "name": "Karak", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "33.11633000", + "longitude": "71.09354000" + }, + { + "id": "85536", + "name": "Khalabat", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.05997000", + "longitude": "72.88963000" + }, + { + "id": "85551", + "name": "Kohat", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "33.58196000", + "longitude": "71.44929000" + }, + { + "id": "85566", + "name": "Kulachi", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "31.93058000", + "longitude": "70.45959000" + }, + { + "id": "85570", + "name": "Lachi", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "33.38291000", + "longitude": "71.33733000" + }, + { + "id": "85574", + "name": "Lakki", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "32.60724000", + "longitude": "70.91234000" + }, + { + "id": "85597", + "name": "Mansehra", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.33023000", + "longitude": "73.19679000" + }, + { + "id": "85598", + "name": "Mardan", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.19794000", + "longitude": "72.04965000" + }, + { + "id": "85610", + "name": "Mingora", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.77950000", + "longitude": "72.36265000" + }, + { + "id": "85644", + "name": "Noorabad", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.25195000", + "longitude": "71.96656000" + }, + { + "id": "85646", + "name": "Nowshera", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.01583000", + "longitude": "71.98123000" + }, + { + "id": "85647", + "name": "Nowshera Cantonment", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "33.99829000", + "longitude": "71.99834000" + }, + { + "id": "85652", + "name": "Pabbi", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.00968000", + "longitude": "71.79445000" + }, + { + "id": "85654", + "name": "Paharpur", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "32.10502000", + "longitude": "70.97055000" + }, + { + "id": "85661", + "name": "Peshawar", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.00800000", + "longitude": "71.57849000" + }, + { + "id": "85686", + "name": "Risalpur Cantonment", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.06048000", + "longitude": "71.99276000" + }, + { + "id": "85700", + "name": "Sarai Naurang", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "32.82581000", + "longitude": "70.78107000" + }, + { + "id": "85705", + "name": "Shabqadar", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.21599000", + "longitude": "71.55480000" + }, + { + "id": "85716", + "name": "Shingli Bala", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.67872000", + "longitude": "72.98491000" + }, + { + "id": "85718", + "name": "Shorkot", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "31.91023000", + "longitude": "70.87757000" + }, + { + "id": "85733", + "name": "Swabi", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.12018000", + "longitude": "72.46982000" + }, + { + "id": "85745", + "name": "Tangi", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.30090000", + "longitude": "71.65238000" + }, + { + "id": "85747", + "name": "Tank", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "32.21707000", + "longitude": "70.38315000" + }, + { + "id": "85749", + "name": "Thal", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "35.47836000", + "longitude": "72.24383000" + }, + { + "id": "85754", + "name": "Topi", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.07034000", + "longitude": "72.62147000" + }, + { + "id": "85759", + "name": "Upper Dir", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "35.20740000", + "longitude": "71.87680000" + }, + { + "id": "85762", + "name": "Utmanzai", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.18775000", + "longitude": "71.76274000" + }, + { + "id": "85770", + "name": "Zaida", + "state_id": 3171, + "state_code": "KP", + "country_id": 167, + "country_code": "PK", + "latitude": "34.05950000", + "longitude": "72.46690000" + }, + { + "id": "85331", + "name": "Ahmadpur East", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.14269000", + "longitude": "71.25771000" + }, + { + "id": "85332", + "name": "Ahmadpur Sial", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.67791000", + "longitude": "71.74344000" + }, + { + "id": "85335", + "name": "Alipur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.38242000", + "longitude": "70.91106000" + }, + { + "id": "85339", + "name": "Arifwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.29058000", + "longitude": "73.06574000" + }, + { + "id": "85341", + "name": "Attock City", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.76671000", + "longitude": "72.35977000" + }, + { + "id": "85343", + "name": "Baddomalhi", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.99042000", + "longitude": "74.66410000" + }, + { + "id": "85347", + "name": "Bahawalnagar", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.99835000", + "longitude": "73.25272000" + }, + { + "id": "85348", + "name": "Bahawalpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.39779000", + "longitude": "71.67520000" + }, + { + "id": "85349", + "name": "Bakhri Ahmad Khan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.73586000", + "longitude": "70.83796000" + }, + { + "id": "85354", + "name": "Basirpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.57759000", + "longitude": "73.83912000" + }, + { + "id": "85355", + "name": "Basti Dosa", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.78769000", + "longitude": "70.86853000" + }, + { + "id": "85376", + "name": "Būrewāla", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.16667000", + "longitude": "72.65000000" + }, + { + "id": "85359", + "name": "Begowala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.43816000", + "longitude": "74.26794000" + }, + { + "id": "85363", + "name": "Bhakkar", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.62685000", + "longitude": "71.06471000" + }, + { + "id": "85364", + "name": "Bhalwal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.26576000", + "longitude": "72.89809000" + }, + { + "id": "85366", + "name": "Bhawana", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.56884000", + "longitude": "72.64917000" + }, + { + "id": "85367", + "name": "Bhera", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.48206000", + "longitude": "72.90865000" + }, + { + "id": "85371", + "name": "Bhopalwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.42968000", + "longitude": "74.36350000" + }, + { + "id": "85378", + "name": "Chak Azam Sahu", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.75202000", + "longitude": "73.02834000" + }, + { + "id": "85379", + "name": "Chak Five Hundred Seventy-five", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.54514000", + "longitude": "73.82891000" + }, + { + "id": "85380", + "name": "Chak Jhumra", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.56808000", + "longitude": "73.18317000" + }, + { + "id": "85381", + "name": "Chak One Hundred Twenty Nine Left", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.42919000", + "longitude": "73.04522000" + }, + { + "id": "85382", + "name": "Chak Thirty-one -Eleven Left", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.42388000", + "longitude": "72.69737000" + }, + { + "id": "85383", + "name": "Chak Two Hundred Forty-nine Thal Development Authority", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.17772000", + "longitude": "71.20480000" + }, + { + "id": "85384", + "name": "Chakwal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.93286000", + "longitude": "72.85394000" + }, + { + "id": "85388", + "name": "Chawinda", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.34434000", + "longitude": "74.70507000" + }, + { + "id": "85389", + "name": "Chenab Nagar", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.75511000", + "longitude": "72.91403000" + }, + { + "id": "85392", + "name": "Chichawatni", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.53010000", + "longitude": "72.69155000" + }, + { + "id": "85393", + "name": "Chiniot", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.72091000", + "longitude": "72.97836000" + }, + { + "id": "85394", + "name": "Chishtian", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.79713000", + "longitude": "72.85772000" + }, + { + "id": "85396", + "name": "Choa Saidan Shah", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.71962000", + "longitude": "72.98625000" + }, + { + "id": "85398", + "name": "Chuchar-kana Mandi", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.75000000", + "longitude": "73.80000000" + }, + { + "id": "85400", + "name": "Chunian", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.96621000", + "longitude": "73.97908000" + }, + { + "id": "85404", + "name": "Daira Din Panah", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.57053000", + "longitude": "70.93722000" + }, + { + "id": "85405", + "name": "Dajal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.55769000", + "longitude": "70.37614000" + }, + { + "id": "85407", + "name": "Dandot RS", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.64167000", + "longitude": "72.97500000" + }, + { + "id": "85409", + "name": "Darya Khan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.78447000", + "longitude": "71.10197000" + }, + { + "id": "85411", + "name": "Daska Kalan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.32422000", + "longitude": "74.35039000" + }, + { + "id": "85412", + "name": "Daud Khel", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.87533000", + "longitude": "71.57118000" + }, + { + "id": "85414", + "name": "Daultala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.19282000", + "longitude": "73.14099000" + }, + { + "id": "85418", + "name": "Dera Ghazi Khan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.04587000", + "longitude": "70.64029000" + }, + { + "id": "85421", + "name": "Dhanot", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.57991000", + "longitude": "71.75213000" + }, + { + "id": "85422", + "name": "Dhaunkal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.40613000", + "longitude": "74.13706000" + }, + { + "id": "85425", + "name": "Dijkot", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.21735000", + "longitude": "72.99621000" + }, + { + "id": "85426", + "name": "Dinan Bashnoian Wala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.76584000", + "longitude": "73.26557000" + }, + { + "id": "85427", + "name": "Dinga", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.64101000", + "longitude": "73.72039000" + }, + { + "id": "85428", + "name": "Dipalpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.66984000", + "longitude": "73.65306000" + }, + { + "id": "85433", + "name": "Dullewala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.83439000", + "longitude": "71.43639000" + }, + { + "id": "85434", + "name": "Dunga Bunga", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.74975000", + "longitude": "73.24294000" + }, + { + "id": "85435", + "name": "Dunyapur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.80275000", + "longitude": "71.74344000" + }, + { + "id": "85436", + "name": "Eminabad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.04237000", + "longitude": "74.25996000" + }, + { + "id": "85437", + "name": "Faisalabad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.41554000", + "longitude": "73.08969000" + }, + { + "id": "85438", + "name": "Faqirwali", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.46799000", + "longitude": "73.03489000" + }, + { + "id": "85439", + "name": "Faruka", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.88642000", + "longitude": "72.41362000" + }, + { + "id": "85440", + "name": "Fazilpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.17629000", + "longitude": "75.06583000" + }, + { + "id": "85441", + "name": "Fort Abbas", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.19344000", + "longitude": "72.85525000" + }, + { + "id": "85444", + "name": "Garh Maharaja", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.83383000", + "longitude": "71.90491000" + }, + { + "id": "85451", + "name": "Gojra", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.14926000", + "longitude": "72.68323000" + }, + { + "id": "85455", + "name": "Gujar Khan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.25411000", + "longitude": "73.30433000" + }, + { + "id": "85456", + "name": "Gujranwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.15567000", + "longitude": "74.18705000" + }, + { + "id": "85457", + "name": "Gujrat", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.57420000", + "longitude": "74.07542000" + }, + { + "id": "85460", + "name": "Hadali", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.64043000", + "longitude": "74.56898000" + }, + { + "id": "85461", + "name": "Hafizabad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.07095000", + "longitude": "73.68802000" + }, + { + "id": "85466", + "name": "Harnoli", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.27871000", + "longitude": "71.55429000" + }, + { + "id": "85467", + "name": "Harunabad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.61206000", + "longitude": "73.13802000" + }, + { + "id": "85468", + "name": "Hasilpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.69221000", + "longitude": "72.54566000" + }, + { + "id": "85469", + "name": "Haveli Lakha", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.45097000", + "longitude": "73.69371000" + }, + { + "id": "85471", + "name": "Hazro City", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.90990000", + "longitude": "72.49179000" + }, + { + "id": "85473", + "name": "Hujra Shah Muqim", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.74168000", + "longitude": "73.82327000" + }, + { + "id": "85478", + "name": "Jahanian Shah", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.80541000", + "longitude": "72.27740000" + }, + { + "id": "85479", + "name": "Jalalpur Jattan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.64118000", + "longitude": "74.20561000" + }, + { + "id": "85480", + "name": "Jalalpur Pirwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.50510000", + "longitude": "71.22202000" + }, + { + "id": "85481", + "name": "Jampur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.64235000", + "longitude": "70.59518000" + }, + { + "id": "85483", + "name": "Jand", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.43304000", + "longitude": "72.01877000" + }, + { + "id": "85484", + "name": "Jandiala Sher Khan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.82098000", + "longitude": "73.91815000" + }, + { + "id": "85485", + "name": "Jaranwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.33320000", + "longitude": "73.41868000" + }, + { + "id": "85487", + "name": "Jatoi Shimali", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.51827000", + "longitude": "70.84474000" + }, + { + "id": "85488", + "name": "Jauharabad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.29016000", + "longitude": "72.28182000" + }, + { + "id": "85490", + "name": "Jhang City", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.30568000", + "longitude": "72.32594000" + }, + { + "id": "85491", + "name": "Jhang Sadr", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.26981000", + "longitude": "72.31687000" + }, + { + "id": "85492", + "name": "Jhawarian", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.36192000", + "longitude": "72.62275000" + }, + { + "id": "85493", + "name": "Jhelum", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.93448000", + "longitude": "73.73102000" + }, + { + "id": "85499", + "name": "Kabirwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.40472000", + "longitude": "71.86269000" + }, + { + "id": "85501", + "name": "Kahna Nau", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.36709000", + "longitude": "74.36899000" + }, + { + "id": "85502", + "name": "Kahror Pakka", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.62430000", + "longitude": "71.91437000" + }, + { + "id": "85503", + "name": "Kahuta", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.59183000", + "longitude": "73.38736000" + }, + { + "id": "85505", + "name": "Kalabagh", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.96164000", + "longitude": "71.54638000" + }, + { + "id": "85506", + "name": "Kalaswala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.20081000", + "longitude": "74.64858000" + }, + { + "id": "85508", + "name": "Kaleke Mandi", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.97597000", + "longitude": "73.59999000" + }, + { + "id": "85509", + "name": "Kallar Kahar", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.77998000", + "longitude": "72.69793000" + }, + { + "id": "85510", + "name": "Kalur Kot", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.15512000", + "longitude": "71.26631000" + }, + { + "id": "85512", + "name": "Kamalia", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.72708000", + "longitude": "72.64607000" + }, + { + "id": "85513", + "name": "Kamar Mushani", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.84318000", + "longitude": "71.36192000" + }, + { + "id": "85515", + "name": "Kamoke", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.97526000", + "longitude": "74.22304000" + }, + { + "id": "85516", + "name": "Kamra", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.74698000", + "longitude": "73.51229000" + }, + { + "id": "85520", + "name": "Kanganpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.76468000", + "longitude": "74.12286000" + }, + { + "id": "85525", + "name": "Karor", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.22460000", + "longitude": "70.95153000" + }, + { + "id": "85527", + "name": "Kasur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.11866000", + "longitude": "74.45025000" + }, + { + "id": "85528", + "name": "Keshupur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.26000000", + "longitude": "72.50000000" + }, + { + "id": "85535", + "name": "Khairpur Tamewah", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.58139000", + "longitude": "72.23804000" + }, + { + "id": "85537", + "name": "Khandowa", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.74255000", + "longitude": "72.73478000" + }, + { + "id": "85538", + "name": "Khanewal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.30173000", + "longitude": "71.93212000" + }, + { + "id": "85539", + "name": "Khangah Dogran", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.83294000", + "longitude": "73.62213000" + }, + { + "id": "85540", + "name": "Khangarh", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.91446000", + "longitude": "71.16067000" + }, + { + "id": "85541", + "name": "Khanpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "28.64739000", + "longitude": "70.65694000" + }, + { + "id": "85544", + "name": "Kharian", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.81612000", + "longitude": "73.88697000" + }, + { + "id": "85545", + "name": "Khewra", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.64910000", + "longitude": "73.01059000" + }, + { + "id": "85546", + "name": "Khurrianwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.49936000", + "longitude": "73.26763000" + }, + { + "id": "85547", + "name": "Khushāb", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.29667000", + "longitude": "72.35250000" + }, + { + "id": "85553", + "name": "Kot Addu", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.46907000", + "longitude": "70.96699000" + }, + { + "id": "85555", + "name": "Kot Ghulam Muhammad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.33311000", + "longitude": "74.54694000" + }, + { + "id": "85557", + "name": "Kot Mumin", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.18843000", + "longitude": "73.02987000" + }, + { + "id": "85558", + "name": "Kot Radha Kishan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.17068000", + "longitude": "74.10126000" + }, + { + "id": "85559", + "name": "Kot Rajkour", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.41208000", + "longitude": "74.62855000" + }, + { + "id": "85560", + "name": "Kot Samaba", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "28.55207000", + "longitude": "70.46837000" + }, + { + "id": "85561", + "name": "Kot Sultan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.77370000", + "longitude": "70.93125000" + }, + { + "id": "85564", + "name": "Kotli Loharan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.58893000", + "longitude": "74.49466000" + }, + { + "id": "85567", + "name": "Kundian", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.45775000", + "longitude": "71.47892000" + }, + { + "id": "85568", + "name": "Kunjah", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.52982000", + "longitude": "73.97486000" + }, + { + "id": "85571", + "name": "Ladhewala Waraich", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.15692000", + "longitude": "74.11564000" + }, + { + "id": "85572", + "name": "Lahore", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.55800000", + "longitude": "74.35071000" + }, + { + "id": "85575", + "name": "Lala Musa", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.70138000", + "longitude": "73.95746000" + }, + { + "id": "85576", + "name": "Lalian", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.82462000", + "longitude": "72.80116000" + }, + { + "id": "85580", + "name": "Layyah", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.96128000", + "longitude": "70.93904000" + }, + { + "id": "85581", + "name": "Layyah District", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.96800000", + "longitude": "70.94300000" + }, + { + "id": "85582", + "name": "Liliani", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.20393000", + "longitude": "72.95120000" + }, + { + "id": "85583", + "name": "Lodhran", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.53390000", + "longitude": "71.63244000" + }, + { + "id": "85588", + "name": "Mailsi", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.80123000", + "longitude": "72.17398000" + }, + { + "id": "85589", + "name": "Malakwal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.55449000", + "longitude": "73.21274000" + }, + { + "id": "85590", + "name": "Malakwal City", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.55492000", + "longitude": "73.21220000" + }, + { + "id": "85592", + "name": "Mamu Kanjan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.83044000", + "longitude": "72.79943000" + }, + { + "id": "85593", + "name": "Mananwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.58803000", + "longitude": "73.68927000" + }, + { + "id": "85594", + "name": "Mandi Bahauddin", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.58704000", + "longitude": "73.49123000" + }, + { + "id": "85595", + "name": "Mangla", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.89306000", + "longitude": "72.38167000" + }, + { + "id": "85596", + "name": "Mankera", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.38771000", + "longitude": "71.44047000" + }, + { + "id": "85604", + "name": "Mehmand Chak", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.78518000", + "longitude": "73.82306000" + }, + { + "id": "85606", + "name": "Mian Channun", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.44067000", + "longitude": "72.35679000" + }, + { + "id": "85607", + "name": "Mianke Mor", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.20240000", + "longitude": "73.94857000" + }, + { + "id": "85608", + "name": "Mianwali", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.57756000", + "longitude": "71.52847000" + }, + { + "id": "85609", + "name": "Minchianabad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.16356000", + "longitude": "73.56858000" + }, + { + "id": "85619", + "name": "Mitha Tiwana", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.24540000", + "longitude": "72.10615000" + }, + { + "id": "85622", + "name": "Moza Shahwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.80563000", + "longitude": "70.84911000" + }, + { + "id": "85623", + "name": "Multan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.19679000", + "longitude": "71.47824000" + }, + { + "id": "85624", + "name": "Muridke", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.80258000", + "longitude": "74.25772000" + }, + { + "id": "85625", + "name": "Murree", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.90836000", + "longitude": "73.39030000" + }, + { + "id": "85626", + "name": "Mustafābād", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.89222000", + "longitude": "73.49889000" + }, + { + "id": "85627", + "name": "Muzaffargarh", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.07258000", + "longitude": "71.19379000" + }, + { + "id": "85631", + "name": "Nankana Sahib", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.45010000", + "longitude": "73.70653000" + }, + { + "id": "85632", + "name": "Narang Mandi", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.90376000", + "longitude": "74.51587000" + }, + { + "id": "85633", + "name": "Narowal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.10197000", + "longitude": "74.87303000" + }, + { + "id": "85638", + "name": "Naushahra Virkan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.96258000", + "longitude": "73.97117000" + }, + { + "id": "85641", + "name": "Nazir Town", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.30614000", + "longitude": "73.48330000" + }, + { + "id": "85649", + "name": "Nārowāl District", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.21114000", + "longitude": "74.95318000" + }, + { + "id": "85650", + "name": "Okara", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.81029000", + "longitude": "73.45155000" + }, + { + "id": "85655", + "name": "Pakpattan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.34314000", + "longitude": "73.38944000" + }, + { + "id": "85659", + "name": "Pasrur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.26286000", + "longitude": "74.66327000" + }, + { + "id": "85660", + "name": "Pattoki", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.02021000", + "longitude": "73.85333000" + }, + { + "id": "85662", + "name": "Phalia", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.43104000", + "longitude": "73.57900000" + }, + { + "id": "85663", + "name": "Pind Dadan Khan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.58662000", + "longitude": "73.04456000" + }, + { + "id": "85664", + "name": "Pindi Bhattian", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.89844000", + "longitude": "73.27339000" + }, + { + "id": "85665", + "name": "Pindi Gheb", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.24095000", + "longitude": "72.26480000" + }, + { + "id": "85667", + "name": "Pir Mahal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.76663000", + "longitude": "72.43455000" + }, + { + "id": "85670", + "name": "Qadirpur Ran", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.29184000", + "longitude": "71.67164000" + }, + { + "id": "85674", + "name": "Rahim Yar Khan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "28.41987000", + "longitude": "70.30345000" + }, + { + "id": "85675", + "name": "Raiwind", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.24895000", + "longitude": "74.21534000" + }, + { + "id": "85676", + "name": "Raja Jang", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.22078000", + "longitude": "74.25483000" + }, + { + "id": "85677", + "name": "Rajanpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.10408000", + "longitude": "70.32969000" + }, + { + "id": "85680", + "name": "Rasulnagar", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.32794000", + "longitude": "73.78040000" + }, + { + "id": "85683", + "name": "Rawalpindi", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.59733000", + "longitude": "73.04790000" + }, + { + "id": "85684", + "name": "Rawalpindi District", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.42987000", + "longitude": "73.23092000" + }, + { + "id": "85685", + "name": "Renala Khurd", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.87878000", + "longitude": "73.59857000" + }, + { + "id": "85688", + "name": "Rojhan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "28.68735000", + "longitude": "69.95350000" + }, + { + "id": "85690", + "name": "Saddiqabad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "28.30910000", + "longitude": "70.12652000" + }, + { + "id": "85691", + "name": "Sahiwal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.66595000", + "longitude": "73.10186000" + }, + { + "id": "85694", + "name": "Sambrial", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.47835000", + "longitude": "74.35338000" + }, + { + "id": "85696", + "name": "Sangla Hill", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.71667000", + "longitude": "73.38333000" + }, + { + "id": "85697", + "name": "Sanjwal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "33.76105000", + "longitude": "72.43315000" + }, + { + "id": "85699", + "name": "Sarai Alamgir", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.90495000", + "longitude": "73.75518000" + }, + { + "id": "85701", + "name": "Sarai Sidhu", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.59476000", + "longitude": "71.96990000" + }, + { + "id": "85702", + "name": "Sargodha", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.08586000", + "longitude": "72.67418000" + }, + { + "id": "85708", + "name": "Shahkot", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.57090000", + "longitude": "73.48531000" + }, + { + "id": "85709", + "name": "Shahpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.26820000", + "longitude": "72.46884000" + }, + { + "id": "85711", + "name": "Shahr Sultan", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.57517000", + "longitude": "71.02209000" + }, + { + "id": "85712", + "name": "Shakargarh", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.26361000", + "longitude": "75.16008000" + }, + { + "id": "85713", + "name": "Sharqpur Sharif", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.46116000", + "longitude": "74.10091000" + }, + { + "id": "85714", + "name": "Shekhupura", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.71287000", + "longitude": "73.98556000" + }, + { + "id": "85719", + "name": "Shujaabad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.88092000", + "longitude": "71.29344000" + }, + { + "id": "85720", + "name": "Sialkot", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.49268000", + "longitude": "74.53134000" + }, + { + "id": "85722", + "name": "Sillanwali", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.82539000", + "longitude": "72.54064000" + }, + { + "id": "85726", + "name": "Sodhri", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.46211000", + "longitude": "74.18207000" + }, + { + "id": "85729", + "name": "Sukheke Mandi", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.86541000", + "longitude": "73.50875000" + }, + { + "id": "85732", + "name": "Surkhpur", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.71816000", + "longitude": "74.44773000" + }, + { + "id": "85735", + "name": "Talagang", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.92766000", + "longitude": "72.41594000" + }, + { + "id": "85736", + "name": "Talamba", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.52693000", + "longitude": "72.24079000" + }, + { + "id": "85738", + "name": "Tandlianwala", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "31.03359000", + "longitude": "73.13268000" + }, + { + "id": "85748", + "name": "Taunsa", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.70358000", + "longitude": "70.65054000" + }, + { + "id": "85753", + "name": "Toba Tek Singh", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.97127000", + "longitude": "72.48275000" + }, + { + "id": "85763", + "name": "Vihari", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "30.04450000", + "longitude": "72.35560000" + }, + { + "id": "85766", + "name": "Wazirabad", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.44324000", + "longitude": "74.12000000" + }, + { + "id": "85767", + "name": "Yazman", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "29.12122000", + "longitude": "71.74459000" + }, + { + "id": "85768", + "name": "Zafarwal", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "32.34464000", + "longitude": "74.89990000" + }, + { + "id": "85769", + "name": "Zahir Pir", + "state_id": 3176, + "state_code": "PB", + "country_id": 167, + "country_code": "PK", + "latitude": "28.81284000", + "longitude": "70.52341000" + }, + { + "id": "85330", + "name": "Adilpur", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.93677000", + "longitude": "69.31941000" + }, + { + "id": "85344", + "name": "Badin", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.65600000", + "longitude": "68.83700000" + }, + { + "id": "85346", + "name": "Bagarji", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.75431000", + "longitude": "68.75866000" + }, + { + "id": "85350", + "name": "Bandhi", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.58761000", + "longitude": "68.30215000" + }, + { + "id": "85361", + "name": "Berani", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.78497000", + "longitude": "68.80754000" + }, + { + "id": "85365", + "name": "Bhan", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.55831000", + "longitude": "67.72139000" + }, + { + "id": "85369", + "name": "Bhiria", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.91041000", + "longitude": "68.19466000" + }, + { + "id": "85370", + "name": "Bhit Shah", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.80565000", + "longitude": "68.49143000" + }, + { + "id": "85372", + "name": "Bozdar Wada", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.18300000", + "longitude": "68.63580000" + }, + { + "id": "85373", + "name": "Bulri", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.86667000", + "longitude": "68.33333000" + }, + { + "id": "85377", + "name": "Chak", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.85838000", + "longitude": "68.83378000" + }, + { + "id": "85386", + "name": "Chamber", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.29362000", + "longitude": "68.81176000" + }, + { + "id": "85391", + "name": "Chhor", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.51260000", + "longitude": "69.78437000" + }, + { + "id": "85399", + "name": "Chuhar Jamali", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.39440000", + "longitude": "67.99298000" + }, + { + "id": "85403", + "name": "Dadu", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.73033000", + "longitude": "67.77690000" + }, + { + "id": "85408", + "name": "Daromehar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.79382000", + "longitude": "68.17978000" + }, + { + "id": "85410", + "name": "Darya Khan Marri", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.67765000", + "longitude": "68.28666000" + }, + { + "id": "85413", + "name": "Daulatpur", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.50158000", + "longitude": "67.97079000" + }, + { + "id": "85415", + "name": "Daur", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.45528000", + "longitude": "68.31835000" + }, + { + "id": "85423", + "name": "Dhoro Naro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.50484000", + "longitude": "69.57090000" + }, + { + "id": "85424", + "name": "Digri", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.15657000", + "longitude": "69.11098000" + }, + { + "id": "85429", + "name": "Diplo", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.46688000", + "longitude": "69.58114000" + }, + { + "id": "85431", + "name": "Dokri", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.37421000", + "longitude": "68.09715000" + }, + { + "id": "85443", + "name": "Gambat", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.35170000", + "longitude": "68.52150000" + }, + { + "id": "85446", + "name": "Garhiyasin", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.90631000", + "longitude": "68.51210000" + }, + { + "id": "85447", + "name": "Gharo", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.74182000", + "longitude": "67.58534000" + }, + { + "id": "85448", + "name": "Ghauspur", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.13882000", + "longitude": "69.08245000" + }, + { + "id": "85449", + "name": "Ghotki", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.00437000", + "longitude": "69.31569000" + }, + { + "id": "85452", + "name": "Goth Garelo", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.43521000", + "longitude": "68.07572000" + }, + { + "id": "85453", + "name": "Goth Phulji", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.88099000", + "longitude": "67.68239000" + }, + { + "id": "85454", + "name": "Goth Radhan", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.19846000", + "longitude": "67.95348000" + }, + { + "id": "85462", + "name": "Hala", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.81459000", + "longitude": "68.42198000" + }, + { + "id": "85472", + "name": "Hingorja", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.21088000", + "longitude": "68.41598000" + }, + { + "id": "85474", + "name": "Hyderabad", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.39242000", + "longitude": "68.37366000" + }, + { + "id": "85476", + "name": "Islamkot", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.69904000", + "longitude": "70.17982000" + }, + { + "id": "85477", + "name": "Jacobabad", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.28187000", + "longitude": "68.43761000" + }, + { + "id": "85482", + "name": "Jamshoro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.43608000", + "longitude": "68.28017000" + }, + { + "id": "85486", + "name": "Jati", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.35492000", + "longitude": "68.26732000" + }, + { + "id": "85498", + "name": "Jām Sāhib", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.29583000", + "longitude": "68.62917000" + }, + { + "id": "85494", + "name": "Jhol", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.95533000", + "longitude": "68.88871000" + }, + { + "id": "85496", + "name": "Johi", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.69225000", + "longitude": "67.61431000" + }, + { + "id": "85500", + "name": "Kadhan", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.48041000", + "longitude": "68.98551000" + }, + { + "id": "85514", + "name": "Kambar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.58753000", + "longitude": "68.00066000" + }, + { + "id": "85517", + "name": "Kandhkot", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.24574000", + "longitude": "69.17974000" + }, + { + "id": "85518", + "name": "Kandiari", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.91550000", + "longitude": "68.52193000" + }, + { + "id": "85519", + "name": "Kandiaro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.05918000", + "longitude": "68.21022000" + }, + { + "id": "85521", + "name": "Karachi", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.86080000", + "longitude": "67.01040000" + }, + { + "id": "85523", + "name": "Karaundi", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.89709000", + "longitude": "68.40643000" + }, + { + "id": "85524", + "name": "Kario Ghanwar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.80817000", + "longitude": "68.60483000" + }, + { + "id": "85526", + "name": "Kashmor", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.43260000", + "longitude": "69.58364000" + }, + { + "id": "85529", + "name": "Keti Bandar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.14422000", + "longitude": "67.45094000" + }, + { + "id": "85531", + "name": "Khadro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.14713000", + "longitude": "68.71777000" + }, + { + "id": "85532", + "name": "Khairpur", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.06437000", + "longitude": "69.70363000" + }, + { + "id": "85533", + "name": "Khairpur Mir’s", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.52948000", + "longitude": "68.75915000" + }, + { + "id": "85534", + "name": "Khairpur Nathan Shah", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.09064000", + "longitude": "67.73489000" + }, + { + "id": "85542", + "name": "Khanpur Mahar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.84088000", + "longitude": "69.41302000" + }, + { + "id": "85554", + "name": "Kot Diji", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.34156000", + "longitude": "68.70821000" + }, + { + "id": "85565", + "name": "Kotri", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.36566000", + "longitude": "68.30831000" + }, + { + "id": "85569", + "name": "Kunri", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.17874000", + "longitude": "69.56572000" + }, + { + "id": "85573", + "name": "Lakhi", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.84884000", + "longitude": "68.69972000" + }, + { + "id": "85578", + "name": "Larkana", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.55898000", + "longitude": "68.21204000" + }, + { + "id": "85587", + "name": "Madeji", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.75314000", + "longitude": "68.45166000" + }, + { + "id": "85591", + "name": "Malir Cantonment", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.94343000", + "longitude": "67.20591000" + }, + { + "id": "85601", + "name": "Matiari", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.59709000", + "longitude": "68.44670000" + }, + { + "id": "85602", + "name": "Matli", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.04290000", + "longitude": "68.65591000" + }, + { + "id": "85603", + "name": "Mehar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.18027000", + "longitude": "67.82051000" + }, + { + "id": "85612", + "name": "Miro Khan", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.75985000", + "longitude": "68.09195000" + }, + { + "id": "85613", + "name": "Mirpur Bhtoro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.72852000", + "longitude": "68.26010000" + }, + { + "id": "85615", + "name": "Mirpur Khas", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.52760000", + "longitude": "69.01255000" + }, + { + "id": "85616", + "name": "Mirpur Mathelo", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.02136000", + "longitude": "69.54914000" + }, + { + "id": "85617", + "name": "Mirpur Sakro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.54692000", + "longitude": "67.62797000" + }, + { + "id": "85618", + "name": "Mirwah Gorchani", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.30981000", + "longitude": "69.05019000" + }, + { + "id": "85620", + "name": "Mithi", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.73701000", + "longitude": "69.79707000" + }, + { + "id": "85621", + "name": "Moro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.66317000", + "longitude": "68.00016000" + }, + { + "id": "85630", + "name": "Nabisar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.06717000", + "longitude": "69.64340000" + }, + { + "id": "85634", + "name": "Nasirabad", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.38137000", + "longitude": "67.91644000" + }, + { + "id": "85636", + "name": "Naudero", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.66684000", + "longitude": "68.36090000" + }, + { + "id": "85637", + "name": "Naukot", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.85822000", + "longitude": "69.40153000" + }, + { + "id": "85639", + "name": "Naushahro Firoz", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.84010000", + "longitude": "68.12265000" + }, + { + "id": "85640", + "name": "Nawabshah", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.23939000", + "longitude": "68.40369000" + }, + { + "id": "85642", + "name": "New Bādāh", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.34167000", + "longitude": "68.03194000" + }, + { + "id": "85653", + "name": "Pad Idan", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.77455000", + "longitude": "68.30094000" + }, + { + "id": "85657", + "name": "Pano Aqil", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.85619000", + "longitude": "69.11111000" + }, + { + "id": "85666", + "name": "Pir Jo Goth", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.59178000", + "longitude": "68.61848000" + }, + { + "id": "85669", + "name": "Pithoro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.51122000", + "longitude": "69.37803000" + }, + { + "id": "85678", + "name": "Rajo Khanani", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.98391000", + "longitude": "68.85370000" + }, + { + "id": "85679", + "name": "Ranipur", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.28720000", + "longitude": "68.50623000" + }, + { + "id": "85681", + "name": "Ratodero", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.80227000", + "longitude": "68.28902000" + }, + { + "id": "85687", + "name": "Rohri", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.69203000", + "longitude": "68.89503000" + }, + { + "id": "85689", + "name": "Rustam", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.96705000", + "longitude": "68.80386000" + }, + { + "id": "85692", + "name": "Sakrand", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.13845000", + "longitude": "68.27444000" + }, + { + "id": "85693", + "name": "Samaro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.28143000", + "longitude": "69.39623000" + }, + { + "id": "85695", + "name": "Sanghar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.04694000", + "longitude": "68.94917000" + }, + { + "id": "85698", + "name": "Sann", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.04030000", + "longitude": "68.13763000" + }, + { + "id": "85734", + "name": "Sīta Road", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.03333000", + "longitude": "67.85000000" + }, + { + "id": "85703", + "name": "Sehwan", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.42495000", + "longitude": "67.86126000" + }, + { + "id": "85704", + "name": "Setharja Old", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.21270000", + "longitude": "68.46883000" + }, + { + "id": "85706", + "name": "Shahdad Kot", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.84726000", + "longitude": "67.90679000" + }, + { + "id": "85707", + "name": "Shahdadpur", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.92539000", + "longitude": "68.62280000" + }, + { + "id": "85710", + "name": "Shahpur Chakar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.15411000", + "longitude": "68.65013000" + }, + { + "id": "85715", + "name": "Shikarpur", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.95558000", + "longitude": "68.63823000" + }, + { + "id": "85723", + "name": "Sinjhoro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.03008000", + "longitude": "68.80867000" + }, + { + "id": "85725", + "name": "Sobhodero", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.30475000", + "longitude": "68.39715000" + }, + { + "id": "85730", + "name": "Sukkur", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.70323000", + "longitude": "68.85889000" + }, + { + "id": "85737", + "name": "Talhar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.88454000", + "longitude": "68.81437000" + }, + { + "id": "85739", + "name": "Tando Adam", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.76818000", + "longitude": "68.66196000" + }, + { + "id": "85740", + "name": "Tando Allahyar", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.46050000", + "longitude": "68.71745000" + }, + { + "id": "85741", + "name": "Tando Bago", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.78914000", + "longitude": "68.96535000" + }, + { + "id": "85742", + "name": "Tando Jam", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.42813000", + "longitude": "68.52923000" + }, + { + "id": "85743", + "name": "Tando Mitha Khan", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.99625000", + "longitude": "69.20251000" + }, + { + "id": "85744", + "name": "Tando Muhammad Khan", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.12384000", + "longitude": "68.53677000" + }, + { + "id": "85746", + "name": "Tangwani", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.27886000", + "longitude": "68.99760000" + }, + { + "id": "85750", + "name": "Tharu Shah", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "26.94230000", + "longitude": "68.11759000" + }, + { + "id": "85751", + "name": "Thatta", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "24.74745000", + "longitude": "67.92353000" + }, + { + "id": "85752", + "name": "Thul", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.24030000", + "longitude": "68.77550000" + }, + { + "id": "85756", + "name": "Ubauro", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "28.16429000", + "longitude": "69.73114000" + }, + { + "id": "85757", + "name": "Umarkot", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.36329000", + "longitude": "69.74184000" + }, + { + "id": "85758", + "name": "Umerkot District", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "25.37000000", + "longitude": "69.73000000" + }, + { + "id": "85765", + "name": "Warah", + "state_id": 3175, + "state_code": "SD", + "country_id": 167, + "country_code": "PK", + "latitude": "27.44805000", + "longitude": "67.79654000" + }, + { + "id": "89709", + "name": "Ngchemiangel", + "state_id": 4540, + "state_code": "002", + "country_id": 168, + "country_code": "PW", + "latitude": "7.44613000", + "longitude": "134.47678000" + }, + { + "id": "89712", + "name": "Ngetkib", + "state_id": 4528, + "state_code": "004", + "country_id": 168, + "country_code": "PW", + "latitude": "7.36451000", + "longitude": "134.51484000" + }, + { + "id": "89700", + "name": "Angaur State", + "state_id": 4538, + "state_code": "010", + "country_id": 168, + "country_code": "PW", + "latitude": "6.90601000", + "longitude": "134.12997000" + }, + { + "id": "89714", + "name": "Tobi Village", + "state_id": 4529, + "state_code": "050", + "country_id": 168, + "country_code": "PW", + "latitude": "3.00488000", + "longitude": "131.12168000" + }, + { + "id": "89702", + "name": "Kayangel", + "state_id": 4539, + "state_code": "100", + "country_id": 168, + "country_code": "PW", + "latitude": "8.08228000", + "longitude": "134.71725000" + }, + { + "id": "89704", + "name": "Koror", + "state_id": 4532, + "state_code": "150", + "country_id": 168, + "country_code": "PW", + "latitude": "7.33978000", + "longitude": "134.47326000" + }, + { + "id": "89705", + "name": "Koror Town", + "state_id": 4532, + "state_code": "150", + "country_id": 168, + "country_code": "PW", + "latitude": "7.34257000", + "longitude": "134.47888000" + }, + { + "id": "89706", + "name": "Melekeok Village", + "state_id": 4530, + "state_code": "212", + "country_id": 168, + "country_code": "PW", + "latitude": "7.49567000", + "longitude": "134.63671000" + }, + { + "id": "89715", + "name": "Ulimang", + "state_id": 4537, + "state_code": "214", + "country_id": 168, + "country_code": "PW", + "latitude": "7.62416000", + "longitude": "134.64208000" + }, + { + "id": "89707", + "name": "Mengellang", + "state_id": 4533, + "state_code": "218", + "country_id": 168, + "country_code": "PW", + "latitude": "7.69570000", + "longitude": "134.63054000" + }, + { + "id": "89708", + "name": "Ngardmau", + "state_id": 4527, + "state_code": "222", + "country_id": 168, + "country_code": "PW", + "latitude": "7.60986000", + "longitude": "134.57440000" + }, + { + "id": "89710", + "name": "Ngchesar Hamlet", + "state_id": 4536, + "state_code": "226", + "country_id": 168, + "country_code": "PW", + "latitude": "7.46932000", + "longitude": "134.60991000" + }, + { + "id": "89701", + "name": "Imeong Hamlet", + "state_id": 4541, + "state_code": "227", + "country_id": 168, + "country_code": "PW", + "latitude": "7.53134000", + "longitude": "134.52713000" + }, + { + "id": "89711", + "name": "Ngerkeai", + "state_id": 4534, + "state_code": "228", + "country_id": 168, + "country_code": "PW", + "latitude": "7.55456000", + "longitude": "134.63612000" + }, + { + "id": "89703", + "name": "Kloulklubed", + "state_id": 4526, + "state_code": "350", + "country_id": 168, + "country_code": "PW", + "latitude": "7.04192000", + "longitude": "134.25561000" + }, + { + "id": "89713", + "name": "Sonsorol Village", + "state_id": 4535, + "state_code": "370", + "country_id": 168, + "country_code": "PW", + "latitude": "5.32608000", + "longitude": "132.21943000" + }, + { + "id": "79962", + "name": "Almirante", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.30091000", + "longitude": "-82.40180000" + }, + { + "id": "79982", + "name": "Barranco", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.51984000", + "longitude": "-82.70424000" + }, + { + "id": "79983", + "name": "Barranco Adentro", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.52757000", + "longitude": "-82.73344000" + }, + { + "id": "79986", + "name": "Bastimentos", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.34707000", + "longitude": "-82.20880000" + }, + { + "id": "80000", + "name": "Bocas del Toro", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.34031000", + "longitude": "-82.24204000" + }, + { + "id": "80036", + "name": "Cauchero", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.15226000", + "longitude": "-82.26450000" + }, + { + "id": "80054", + "name": "Changuinola", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.43000000", + "longitude": "-82.52000000" + }, + { + "id": "80063", + "name": "Chiriquí Grande", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "8.94557000", + "longitude": "-82.11769000" + }, + { + "id": "80084", + "name": "Distrito Chiriquí Grande", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "8.94748000", + "longitude": "-82.12418000" + }, + { + "id": "80092", + "name": "Distrito de Bocas del Toro", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.36235000", + "longitude": "-82.26288000" + }, + { + "id": "80101", + "name": "Distrito de Changuinola", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.25000000", + "longitude": "-82.63333000" + }, + { + "id": "80170", + "name": "El Empalme", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.41667000", + "longitude": "-82.51667000" + }, + { + "id": "80202", + "name": "El Silencio", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.37222000", + "longitude": "-82.52877000" + }, + { + "id": "80217", + "name": "Guabito", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.48968000", + "longitude": "-82.61279000" + }, + { + "id": "80235", + "name": "Isla Bastimentos", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.30000000", + "longitude": "-82.13333000" + }, + { + "id": "80265", + "name": "La Mesa", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.49587000", + "longitude": "-82.67534000" + }, + { + "id": "80355", + "name": "Miramar", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "8.99482000", + "longitude": "-82.24147000" + }, + { + "id": "80437", + "name": "Punta Laurel", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.14100000", + "longitude": "-82.12717000" + }, + { + "id": "80438", + "name": "Punta Peña", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "8.91659000", + "longitude": "-82.18488000" + }, + { + "id": "80439", + "name": "Punta Róbalo", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.03631000", + "longitude": "-82.24952000" + }, + { + "id": "80537", + "name": "Valle del Risco", + "state_id": 1393, + "state_code": "1", + "country_id": 170, + "country_code": "PA", + "latitude": "9.23064000", + "longitude": "-82.42748000" + }, + { + "id": "79959", + "name": "Alanje", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.39791000", + "longitude": "-82.55947000" + }, + { + "id": "79961", + "name": "Algarrobos Arriba", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51550000", + "longitude": "-82.42263000" + }, + { + "id": "79963", + "name": "Alto Boquete", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.73458000", + "longitude": "-82.43213000" + }, + { + "id": "79974", + "name": "Aserrío de Gariché", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.48257000", + "longitude": "-82.79086000" + }, + { + "id": "79979", + "name": "Bajo Boquete", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.77058000", + "longitude": "-82.43306000" + }, + { + "id": "79985", + "name": "Barrio Guadalupe", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.86482000", + "longitude": "-82.56523000" + }, + { + "id": "80012", + "name": "Bágala", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.46399000", + "longitude": "-82.52617000" + }, + { + "id": "79992", + "name": "Bijagual", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51486000", + "longitude": "-82.33361000" + }, + { + "id": "79995", + "name": "Boca Chica", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.21911000", + "longitude": "-82.21592000" + }, + { + "id": "79999", + "name": "Boca del Monte", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.35296000", + "longitude": "-82.11379000" + }, + { + "id": "80002", + "name": "Boquerón", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.50510000", + "longitude": "-82.57025000" + }, + { + "id": "80003", + "name": "Boquete", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.78024000", + "longitude": "-82.44136000" + }, + { + "id": "80005", + "name": "Breñón", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.62491000", + "longitude": "-82.81277000" + }, + { + "id": "80010", + "name": "Bugaba", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.48255000", + "longitude": "-82.61991000" + }, + { + "id": "80011", + "name": "Bugabita Arriba", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.52143000", + "longitude": "-82.63638000" + }, + { + "id": "80038", + "name": "Cañas Gordas", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.74309000", + "longitude": "-82.91275000" + }, + { + "id": "80021", + "name": "Caimito", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.54162000", + "longitude": "-82.41900000" + }, + { + "id": "80023", + "name": "Caldera", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.64907000", + "longitude": "-82.38058000" + }, + { + "id": "80043", + "name": "Celmira", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.54026000", + "longitude": "-82.80022000" + }, + { + "id": "80051", + "name": "Cerro Punta", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.84968000", + "longitude": "-82.57261000" + }, + { + "id": "80052", + "name": "Cerro Viejo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.25349000", + "longitude": "-81.57658000" + }, + { + "id": "80062", + "name": "Chiriquí", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.39291000", + "longitude": "-82.31993000" + }, + { + "id": "80070", + "name": "Cochea Abajo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.50512000", + "longitude": "-82.35878000" + }, + { + "id": "80075", + "name": "Cordillera", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.70683000", + "longitude": "-82.60327000" + }, + { + "id": "80082", + "name": "David", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.42729000", + "longitude": "-82.43085000" + }, + { + "id": "80087", + "name": "Distrito de Alanje", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.39842000", + "longitude": "-82.64065000" + }, + { + "id": "80091", + "name": "Distrito de Barú", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.29482000", + "longitude": "-82.92726000" + }, + { + "id": "80093", + "name": "Distrito de Boquerón", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.61667000", + "longitude": "-82.56667000" + }, + { + "id": "80094", + "name": "Distrito de Boquete", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.74896000", + "longitude": "-82.36842000" + }, + { + "id": "80095", + "name": "Distrito de Bugaba", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.68786000", + "longitude": "-82.67937000" + }, + { + "id": "80107", + "name": "Distrito de David", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.40000000", + "longitude": "-82.40000000" + }, + { + "id": "80108", + "name": "Distrito de Dolega", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.61667000", + "longitude": "-82.45000000" + }, + { + "id": "80110", + "name": "Distrito de Gualaca", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.57398000", + "longitude": "-82.22207000" + }, + { + "id": "80132", + "name": "Distrito de Remedios", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.20253000", + "longitude": "-81.81163000" + }, + { + "id": "80133", + "name": "Distrito de Renacimiento", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.71667000", + "longitude": "-82.76667000" + }, + { + "id": "80137", + "name": "Distrito de San Félix", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.27768000", + "longitude": "-81.87377000" + }, + { + "id": "80138", + "name": "Distrito de San Lorenzo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.29366000", + "longitude": "-82.08922000" + }, + { + "id": "80145", + "name": "Distrito de Tolé", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.19015000", + "longitude": "-81.66007000" + }, + { + "id": "80147", + "name": "Divalá", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.41066000", + "longitude": "-82.71332000" + }, + { + "id": "80148", + "name": "Dolega District", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.56667000", + "longitude": "-82.41407000" + }, + { + "id": "80185", + "name": "El Nancito", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.23811000", + "longitude": "-81.73218000" + }, + { + "id": "80186", + "name": "El Palmar", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.30098000", + "longitude": "-82.85344000" + }, + { + "id": "80193", + "name": "El Porvenir", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.22919000", + "longitude": "-81.83278000" + }, + { + "id": "80203", + "name": "El Tejar", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.42973000", + "longitude": "-82.57294000" + }, + { + "id": "80210", + "name": "Finca Blanco", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.37979000", + "longitude": "-82.87385000" + }, + { + "id": "80229", + "name": "Gómez", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.56085000", + "longitude": "-82.74142000" + }, + { + "id": "80216", + "name": "Guabal", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.57466000", + "longitude": "-82.53730000" + }, + { + "id": "80218", + "name": "Guaca Arriba", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.53733000", + "longitude": "-82.49281000" + }, + { + "id": "80220", + "name": "Gualaca", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.53006000", + "longitude": "-82.29959000" + }, + { + "id": "80223", + "name": "Guarumal", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.34523000", + "longitude": "-82.53205000" + }, + { + "id": "80225", + "name": "Guayabal", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.62193000", + "longitude": "-82.57935000" + }, + { + "id": "80233", + "name": "Horconcitos", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.31142000", + "longitude": "-82.15102000" + }, + { + "id": "80247", + "name": "La Concepción", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51212000", + "longitude": "-82.61858000" + }, + { + "id": "80252", + "name": "La Esperanza", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.40344000", + "longitude": "-82.79197000" + }, + { + "id": "80254", + "name": "La Estrella", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51572000", + "longitude": "-82.67212000" + }, + { + "id": "80283", + "name": "Lajas Adentro", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.24981000", + "longitude": "-81.87779000" + }, + { + "id": "80284", + "name": "Lajas de Tolé", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.16994000", + "longitude": "-81.69654000" + }, + { + "id": "80295", + "name": "Las Lajas", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.24184000", + "longitude": "-81.86931000" + }, + { + "id": "80296", + "name": "Las Lomas", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.42927000", + "longitude": "-82.38743000" + }, + { + "id": "80311", + "name": "Limones", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.10007000", + "longitude": "-82.86679000" + }, + { + "id": "80326", + "name": "Los Algarrobos", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.49601000", + "longitude": "-82.42417000" + }, + { + "id": "80328", + "name": "Los Anastacios", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.53027000", + "longitude": "-82.42295000" + }, + { + "id": "80344", + "name": "Los Ángeles", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.52271000", + "longitude": "-82.19997000" + }, + { + "id": "80338", + "name": "Los Naranjos", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.79210000", + "longitude": "-82.44665000" + }, + { + "id": "80347", + "name": "Manaca Civil", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.32458000", + "longitude": "-82.81570000" + }, + { + "id": "80348", + "name": "Manaca Norte", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.33419000", + "longitude": "-82.81003000" + }, + { + "id": "80351", + "name": "Mata del Nance", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45056000", + "longitude": "-82.40057000" + }, + { + "id": "80360", + "name": "Monte Lirio", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.78935000", + "longitude": "-82.82865000" + }, + { + "id": "80378", + "name": "Nuevo San Carlitos", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45698000", + "longitude": "-82.43712000" + }, + { + "id": "80387", + "name": "Paja de Sombrero", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.68335000", + "longitude": "-82.31911000" + }, + { + "id": "80392", + "name": "Palmira", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.73401000", + "longitude": "-82.45887000" + }, + { + "id": "80393", + "name": "Palmira Centro", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.73956000", + "longitude": "-82.45228000" + }, + { + "id": "80395", + "name": "Paraíso", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.65842000", + "longitude": "-82.58625000" + }, + { + "id": "80402", + "name": "Paso Canoas Arriba", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.56516000", + "longitude": "-82.82214000" + }, + { + "id": "80405", + "name": "Pedregal", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.36586000", + "longitude": "-82.43524000" + }, + { + "id": "80418", + "name": "Plaza de Caisán", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.73672000", + "longitude": "-82.81968000" + }, + { + "id": "80424", + "name": "Potrerillos Abajo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.63978000", + "longitude": "-82.48560000" + }, + { + "id": "80425", + "name": "Potrerillos Arriba", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.68547000", + "longitude": "-82.49090000" + }, + { + "id": "80428", + "name": "Progreso", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.44669000", + "longitude": "-82.83859000" + }, + { + "id": "80430", + "name": "Pueblo Viejo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.25081000", + "longitude": "-81.66259000" + }, + { + "id": "80431", + "name": "Puerto Armuelles", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.27775000", + "longitude": "-82.86206000" + }, + { + "id": "80440", + "name": "Punta de Burica", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.03333000", + "longitude": "-82.86667000" + }, + { + "id": "80447", + "name": "Quebrada de Piedra", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.09418000", + "longitude": "-81.67915000" + }, + { + "id": "80449", + "name": "Querévalo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.37174000", + "longitude": "-82.52670000" + }, + { + "id": "80450", + "name": "Quinteño", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.47102000", + "longitude": "-82.39352000" + }, + { + "id": "80465", + "name": "Río Sereno", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.81741000", + "longitude": "-82.85731000" + }, + { + "id": "80451", + "name": "Remedios", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.22436000", + "longitude": "-81.82747000" + }, + { + "id": "80452", + "name": "Rincón", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.46374000", + "longitude": "-82.27951000" + }, + { + "id": "80455", + "name": "Rovira Arriba", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.63822000", + "longitude": "-82.49965000" + }, + { + "id": "80471", + "name": "San Andrés", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.60260000", + "longitude": "-82.72588000" + }, + { + "id": "80474", + "name": "San Carlos", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51663000", + "longitude": "-82.50906000" + }, + { + "id": "80478", + "name": "San Félix", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.29063000", + "longitude": "-81.86702000" + }, + { + "id": "80480", + "name": "San Isidro", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.53032000", + "longitude": "-82.82720000" + }, + { + "id": "80487", + "name": "San Lorenzo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.30561000", + "longitude": "-82.10114000" + }, + { + "id": "80491", + "name": "San Pablo Nuevo Abajo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.42558000", + "longitude": "-82.50173000" + }, + { + "id": "80492", + "name": "San Pablo Viejo Abajo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45339000", + "longitude": "-82.50179000" + }, + { + "id": "80497", + "name": "Santa Clara", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.83376000", + "longitude": "-82.77945000" + }, + { + "id": "80499", + "name": "Santa Cruz", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.23219000", + "longitude": "-81.91323000" + }, + { + "id": "80503", + "name": "Santa Marta", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51406000", + "longitude": "-82.69870000" + }, + { + "id": "80507", + "name": "Santa Rosa", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.59958000", + "longitude": "-82.68489000" + }, + { + "id": "80510", + "name": "Santo Domingo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.50803000", + "longitude": "-82.71295000" + }, + { + "id": "80511", + "name": "Santo Tomás", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.38959000", + "longitude": "-82.65058000" + }, + { + "id": "80513", + "name": "Sioguí Abajo", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.48678000", + "longitude": "-82.66539000" + }, + { + "id": "80514", + "name": "Sioguí Arriba", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.53865000", + "longitude": "-82.68619000" + }, + { + "id": "80517", + "name": "Sortova", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.54642000", + "longitude": "-82.65170000" + }, + { + "id": "80520", + "name": "Tijeras", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.47514000", + "longitude": "-82.56058000" + }, + { + "id": "80521", + "name": "Tinajas", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.55281000", + "longitude": "-82.45963000" + }, + { + "id": "80525", + "name": "Tolé", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.23989000", + "longitude": "-81.67168000" + }, + { + "id": "80539", + "name": "Veladero", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.23136000", + "longitude": "-81.65417000" + }, + { + "id": "80550", + "name": "Volcán", + "state_id": 1397, + "state_code": "4", + "country_id": 170, + "country_code": "PA", + "latitude": "8.77291000", + "longitude": "-82.63823000" + }, + { + "id": "79956", + "name": "Aguadulce", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.24183000", + "longitude": "-80.54609000" + }, + { + "id": "79957", + "name": "Aguas Blancas", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.50351000", + "longitude": "-80.31169000" + }, + { + "id": "79965", + "name": "Alto de La Estancia", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.58792000", + "longitude": "-80.18443000" + }, + { + "id": "79969", + "name": "Antón", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.39733000", + "longitude": "-80.26063000" + }, + { + "id": "79984", + "name": "Barranco Colorado", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.38937000", + "longitude": "-80.63546000" + }, + { + "id": "80039", + "name": "Cañaveral", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51700000", + "longitude": "-80.42916000" + }, + { + "id": "80013", + "name": "Caballero", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.54343000", + "longitude": "-80.19769000" + }, + { + "id": "80017", + "name": "Cabuya", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.54703000", + "longitude": "-80.16756000" + }, + { + "id": "80019", + "name": "Caimito", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.62271000", + "longitude": "-80.23919000" + }, + { + "id": "80032", + "name": "Capellanía", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.29858000", + "longitude": "-80.55480000" + }, + { + "id": "80058", + "name": "Chigoré", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.53035000", + "longitude": "-80.35117000" + }, + { + "id": "80059", + "name": "Chiguirí Arriba", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.67187000", + "longitude": "-80.18975000" + }, + { + "id": "80067", + "name": "Churuquita Chiquita", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.57555000", + "longitude": "-80.27161000" + }, + { + "id": "80068", + "name": "Churuquita Grande", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.59449000", + "longitude": "-80.27182000" + }, + { + "id": "80071", + "name": "Coclé", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45601000", + "longitude": "-80.42899000" + }, + { + "id": "80086", + "name": "Distrito de Aguadulce", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.21270000", + "longitude": "-80.61441000" + }, + { + "id": "80088", + "name": "Distrito de Antón", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45394000", + "longitude": "-80.18361000" + }, + { + "id": "80114", + "name": "Distrito de La Pintada", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.71801000", + "longitude": "-80.53946000" + }, + { + "id": "80122", + "name": "Distrito de Natá", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.34416000", + "longitude": "-80.60934000" + }, + { + "id": "80124", + "name": "Distrito de Olá", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.48053000", + "longitude": "-80.65324000" + }, + { + "id": "80085", + "name": "Distrito Penonomé", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.63000000", + "longitude": "-80.28333000" + }, + { + "id": "80157", + "name": "El Caño", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.40195000", + "longitude": "-80.51791000" + }, + { + "id": "80159", + "name": "El Chirú", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.39876000", + "longitude": "-80.18721000" + }, + { + "id": "80163", + "name": "El Coco", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.39716000", + "longitude": "-80.35000000" + }, + { + "id": "80165", + "name": "El Copé", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.62036000", + "longitude": "-80.58433000" + }, + { + "id": "80167", + "name": "El Cortezo", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.34556000", + "longitude": "-80.58721000" + }, + { + "id": "80168", + "name": "El Cristo", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.25071000", + "longitude": "-80.62093000" + }, + { + "id": "80194", + "name": "El Potrero", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.52146000", + "longitude": "-80.51681000" + }, + { + "id": "80198", + "name": "El Retiro", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.48014000", + "longitude": "-80.15426000" + }, + { + "id": "80201", + "name": "El Roble", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.16850000", + "longitude": "-80.65897000" + }, + { + "id": "80207", + "name": "Entradero", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.56880000", + "longitude": "-80.20743000" + }, + { + "id": "80209", + "name": "Farallón", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.35658000", + "longitude": "-80.13723000" + }, + { + "id": "80228", + "name": "Guzman", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51969000", + "longitude": "-80.58405000" + }, + { + "id": "80237", + "name": "Juan Díaz", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.46240000", + "longitude": "-80.28280000" + }, + { + "id": "80261", + "name": "La Loma", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.16667000", + "longitude": "-80.63742000" + }, + { + "id": "80275", + "name": "La Pintada", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.59299000", + "longitude": "-80.44349000" + }, + { + "id": "80293", + "name": "Las Huacas del Quije", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.46702000", + "longitude": "-80.75089000" + }, + { + "id": "80299", + "name": "Las Marias", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.88809000", + "longitude": "-80.21893000" + }, + { + "id": "80301", + "name": "Las Minas", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.64118000", + "longitude": "-80.39432000" + }, + { + "id": "80305", + "name": "Las Sabanas", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.58141000", + "longitude": "-80.67978000" + }, + { + "id": "80317", + "name": "Llano Grande", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.63817000", + "longitude": "-80.43848000" + }, + { + "id": "80320", + "name": "Llano Marín", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.47696000", + "longitude": "-80.32499000" + }, + { + "id": "80340", + "name": "Los Pollos", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.39898000", + "longitude": "-80.15731000" + }, + { + "id": "80366", + "name": "Natá", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.33209000", + "longitude": "-80.51969000" + }, + { + "id": "80370", + "name": "Nuestro Amo", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.44485000", + "longitude": "-80.58934000" + }, + { + "id": "80383", + "name": "Olá", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.41807000", + "longitude": "-80.65123000" + }, + { + "id": "80406", + "name": "Penonomé", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51889000", + "longitude": "-80.35727000" + }, + { + "id": "80411", + "name": "Piedras Gordas", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.63777000", + "longitude": "-80.51024000" + }, + { + "id": "80420", + "name": "Pocrí", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.25814000", + "longitude": "-80.55000000" + }, + { + "id": "80460", + "name": "Río Grande", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.42679000", + "longitude": "-80.48457000" + }, + { + "id": "80462", + "name": "Río Hato", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.37940000", + "longitude": "-80.16621000" + }, + { + "id": "80486", + "name": "San Juan de Dios", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.55119000", + "longitude": "-80.22623000" + }, + { + "id": "80522", + "name": "Toabré", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.65131000", + "longitude": "-80.32017000" + }, + { + "id": "80528", + "name": "Toza", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.34542000", + "longitude": "-80.64012000" + }, + { + "id": "80548", + "name": "Vista Hermosa", + "state_id": 1387, + "state_code": "2", + "country_id": 170, + "country_code": "PA", + "latitude": "8.52687000", + "longitude": "-80.37486000" + }, + { + "id": "80007", + "name": "Buena Vista", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.27356000", + "longitude": "-79.69551000" + }, + { + "id": "80035", + "name": "Cativá", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.36218000", + "longitude": "-79.83232000" + }, + { + "id": "80072", + "name": "Coclé del Norte", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.07540000", + "longitude": "-80.57177000" + }, + { + "id": "80073", + "name": "Colón", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.35451000", + "longitude": "-79.90011000" + }, + { + "id": "80078", + "name": "Cristóbal", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.35222000", + "longitude": "-79.90444000" + }, + { + "id": "80099", + "name": "Distrito de Chagres", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.12300000", + "longitude": "-80.11841000" + }, + { + "id": "80106", + "name": "Distrito de Colón", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.24313000", + "longitude": "-79.79463000" + }, + { + "id": "80109", + "name": "Distrito de Donoso", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.01999000", + "longitude": "-80.42967000" + }, + { + "id": "80131", + "name": "Distrito de Portobelo", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.49748000", + "longitude": "-79.60730000" + }, + { + "id": "80140", + "name": "Distrito de Santa Isabel", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.48333000", + "longitude": "-79.31667000" + }, + { + "id": "80174", + "name": "El Giral", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.24509000", + "longitude": "-79.69266000" + }, + { + "id": "80175", + "name": "El Guabo", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.07842000", + "longitude": "-80.08316000" + }, + { + "id": "80206", + "name": "El Valle de la Unión", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.23630000", + "longitude": "-79.65986000" + }, + { + "id": "80208", + "name": "Escobal", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.14373000", + "longitude": "-79.96439000" + }, + { + "id": "80214", + "name": "Gatún", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.28922000", + "longitude": "-79.77204000" + }, + { + "id": "80213", + "name": "Gatuncillo", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.24346000", + "longitude": "-79.64856000" + }, + { + "id": "80298", + "name": "Las Margaritas", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.32603000", + "longitude": "-79.89028000" + }, + { + "id": "80350", + "name": "María Chiquita", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.43991000", + "longitude": "-79.75455000" + }, + { + "id": "80354", + "name": "Miramar", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.57544000", + "longitude": "-79.33573000" + }, + { + "id": "80368", + "name": "Nombre de Dios", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.57937000", + "longitude": "-79.47109000" + }, + { + "id": "80376", + "name": "Nuevo Chagres", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.23979000", + "longitude": "-80.08267000" + }, + { + "id": "80379", + "name": "Nuevo San Juan", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.22205000", + "longitude": "-79.66602000" + }, + { + "id": "80380", + "name": "Nuevo Vigía", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.24263000", + "longitude": "-79.60756000" + }, + { + "id": "80388", + "name": "Palenque", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.56970000", + "longitude": "-79.36341000" + }, + { + "id": "80389", + "name": "Palmas Bellas", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.22838000", + "longitude": "-80.08503000" + }, + { + "id": "80391", + "name": "Palmira", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.54359000", + "longitude": "-79.21946000" + }, + { + "id": "80415", + "name": "Playa Chiquita", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.56620000", + "longitude": "-79.29185000" + }, + { + "id": "80423", + "name": "Portobelo", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.55303000", + "longitude": "-79.65693000" + }, + { + "id": "80433", + "name": "Puerto Escondido", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.19333000", + "longitude": "-80.08833000" + }, + { + "id": "80435", + "name": "Puerto Pilón", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.36316000", + "longitude": "-79.79333000" + }, + { + "id": "80443", + "name": "Quebrada Bonita Adentro", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.29662000", + "longitude": "-79.70606000" + }, + { + "id": "80457", + "name": "Río Alejandro", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.37149000", + "longitude": "-79.78809000" + }, + { + "id": "80459", + "name": "Río Duque", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.25688000", + "longitude": "-79.67937000" + }, + { + "id": "80464", + "name": "Río Rita", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.30296000", + "longitude": "-79.79234000" + }, + { + "id": "80469", + "name": "Sabanitas", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.34269000", + "longitude": "-79.80961000" + }, + { + "id": "80502", + "name": "Santa Isabel", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.53922000", + "longitude": "-79.19570000" + }, + { + "id": "80506", + "name": "Santa Rita Arriba", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.33032000", + "longitude": "-79.79363000" + }, + { + "id": "80541", + "name": "Viento Frío", + "state_id": 1386, + "state_code": "3", + "country_id": 170, + "country_code": "PA", + "latitude": "9.58263000", + "longitude": "-79.40690000" + }, + { + "id": "79997", + "name": "Boca de Cupé", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "8.03003000", + "longitude": "-77.58978000" + }, + { + "id": "80030", + "name": "Camogantí", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "8.04171000", + "longitude": "-77.88682000" + }, + { + "id": "80079", + "name": "Cucunatí", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "8.57508000", + "longitude": "-78.25671000" + }, + { + "id": "80102", + "name": "Distrito de Chepigana", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "7.84374000", + "longitude": "-77.83830000" + }, + { + "id": "80129", + "name": "Distrito de Pinogana", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "7.89343000", + "longitude": "-77.52562000" + }, + { + "id": "80212", + "name": "Garachiné", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "8.06684000", + "longitude": "-78.36436000" + }, + { + "id": "80236", + "name": "Jaqué", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "7.51826000", + "longitude": "-78.16343000" + }, + { + "id": "80270", + "name": "La Palma", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "8.40608000", + "longitude": "-78.13964000" + }, + { + "id": "80353", + "name": "Metetí", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "8.49909000", + "longitude": "-77.97897000" + }, + { + "id": "80362", + "name": "Mortí", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "8.84246000", + "longitude": "-77.97539000" + }, + { + "id": "80442", + "name": "Púcuro", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "7.97876000", + "longitude": "-77.48758000" + }, + { + "id": "80500", + "name": "Santa Fé", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "8.65525000", + "longitude": "-78.16140000" + }, + { + "id": "80552", + "name": "Yaviza", + "state_id": 1385, + "state_code": "5", + "country_id": 170, + "country_code": "PA", + "latitude": "8.15835000", + "longitude": "-77.69276000" + }, + { + "id": "79987", + "name": "Bayamón", + "state_id": 1396, + "state_code": "EM", + "country_id": 170, + "country_code": "PA", + "latitude": "7.96817000", + "longitude": "-78.21648000" + }, + { + "id": "80081", + "name": "Cémaco", + "state_id": 1396, + "state_code": "EM", + "country_id": 170, + "country_code": "PA", + "latitude": "8.08285000", + "longitude": "-77.54210000" + }, + { + "id": "80076", + "name": "Corozal", + "state_id": 1396, + "state_code": "EM", + "country_id": 170, + "country_code": "PA", + "latitude": "8.20108000", + "longitude": "-77.59637000" + }, + { + "id": "80470", + "name": "Sambú", + "state_id": 1396, + "state_code": "EM", + "country_id": 170, + "country_code": "PA", + "latitude": "7.82013000", + "longitude": "-78.11005000" + }, + { + "id": "80531", + "name": "Unión Chocó", + "state_id": 1396, + "state_code": "EM", + "country_id": 170, + "country_code": "PA", + "latitude": "8.08404000", + "longitude": "-77.53507000" + }, + { + "id": "80551", + "name": "Yape", + "state_id": 1396, + "state_code": "EM", + "country_id": 170, + "country_code": "PA", + "latitude": "8.09839000", + "longitude": "-77.59817000" + }, + { + "id": "79954", + "name": "Achutupo", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "9.19827000", + "longitude": "-77.98729000" + }, + { + "id": "79958", + "name": "Ailigandí", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "9.22810000", + "longitude": "-78.02778000" + }, + { + "id": "80034", + "name": "Cartí Sugdup", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "9.46460000", + "longitude": "-78.95931000" + }, + { + "id": "80192", + "name": "El Porvenir", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "9.55276000", + "longitude": "-78.95230000" + }, + { + "id": "80363", + "name": "Mulatupo", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "8.94672000", + "longitude": "-77.75080000" + }, + { + "id": "80365", + "name": "Narganá", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "9.44394000", + "longitude": "-78.58666000" + }, + { + "id": "80417", + "name": "Playón Chico", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "9.31128000", + "longitude": "-78.23270000" + }, + { + "id": "80434", + "name": "Puerto Obaldía", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "8.66632000", + "longitude": "-77.41922000" + }, + { + "id": "80479", + "name": "San Ignacio de Tupile", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "9.28905000", + "longitude": "-78.15206000" + }, + { + "id": "80530", + "name": "Tubualá", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "9.51667000", + "longitude": "-79.03333000" + }, + { + "id": "80534", + "name": "Ustupo", + "state_id": 1388, + "state_code": "KY", + "country_id": 170, + "country_code": "PA", + "latitude": "9.13112000", + "longitude": "-77.92620000" + }, + { + "id": "79998", + "name": "Boca de Parita", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.00796000", + "longitude": "-80.45320000" + }, + { + "id": "80015", + "name": "Cabuya", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.03138000", + "longitude": "-80.63227000" + }, + { + "id": "80049", + "name": "Cerro Largo", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.83377000", + "longitude": "-80.83168000" + }, + { + "id": "80064", + "name": "Chitré", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.96082000", + "longitude": "-80.42944000" + }, + { + "id": "80065", + "name": "Chumical", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.84482000", + "longitude": "-80.72627000" + }, + { + "id": "80066", + "name": "Chupampa", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.07620000", + "longitude": "-80.77656000" + }, + { + "id": "80105", + "name": "Distrito de Chitré", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.98333000", + "longitude": "-80.43333000" + }, + { + "id": "80115", + "name": "Distrito de Las Minas", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.76525000", + "longitude": "-80.82249000" + }, + { + "id": "80118", + "name": "Distrito de Los Pozos", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.70944000", + "longitude": "-80.64311000" + }, + { + "id": "80123", + "name": "Distrito de Ocú", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.90641000", + "longitude": "-80.79752000" + }, + { + "id": "80126", + "name": "Distrito de Parita", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.06240000", + "longitude": "-80.56373000" + }, + { + "id": "80128", + "name": "Distrito de Pesé", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.88194000", + "longitude": "-80.63261000" + }, + { + "id": "80141", + "name": "Distrito de Santa María", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.11667000", + "longitude": "-80.68333000" + }, + { + "id": "80153", + "name": "El Calabacito", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.71843000", + "longitude": "-80.59757000" + }, + { + "id": "80154", + "name": "El Capurí", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.72571000", + "longitude": "-80.64349000" + }, + { + "id": "80158", + "name": "El Cedro", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.68565000", + "longitude": "-80.65927000" + }, + { + "id": "80188", + "name": "El Pedregoso", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.93642000", + "longitude": "-80.63807000" + }, + { + "id": "80199", + "name": "El Rincón", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.11923000", + "longitude": "-80.61707000" + }, + { + "id": "80204", + "name": "El Toro", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.75110000", + "longitude": "-80.86943000" + }, + { + "id": "80241", + "name": "La Arena", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.96766000", + "longitude": "-80.46523000" + }, + { + "id": "80279", + "name": "La Trinidad", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.91457000", + "longitude": "-80.70332000" + }, + { + "id": "80289", + "name": "Las Guabas", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.90949000", + "longitude": "-80.80706000" + }, + { + "id": "80300", + "name": "Las Minas", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.79581000", + "longitude": "-80.74570000" + }, + { + "id": "80309", + "name": "Leones Arriba", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.76590000", + "longitude": "-80.84515000" + }, + { + "id": "80312", + "name": "Limón de Tijeras", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.81756000", + "longitude": "-80.91335000" + }, + { + "id": "80314", + "name": "Llano Bonito", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.97637000", + "longitude": "-80.41646000" + }, + { + "id": "80321", + "name": "Llano de La Cruz", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.95178000", + "longitude": "-80.64239000" + }, + { + "id": "80315", + "name": "Llano Grande", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.97406000", + "longitude": "-80.71103000" + }, + { + "id": "80330", + "name": "Los Canelos", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.11722000", + "longitude": "-80.70769000" + }, + { + "id": "80331", + "name": "Los Castillos", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.98565000", + "longitude": "-80.61886000" + }, + { + "id": "80333", + "name": "Los Cerritos", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.79746000", + "longitude": "-80.61071000" + }, + { + "id": "80334", + "name": "Los Cerros de Paja", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.71821000", + "longitude": "-80.67273000" + }, + { + "id": "80341", + "name": "Los Pozos", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.78300000", + "longitude": "-80.64524000" + }, + { + "id": "80358", + "name": "Monagrillo", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.98179000", + "longitude": "-80.43764000" + }, + { + "id": "80382", + "name": "Ocú", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.94052000", + "longitude": "-80.77936000" + }, + { + "id": "80401", + "name": "París", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.05053000", + "longitude": "-80.55409000" + }, + { + "id": "80398", + "name": "Parita", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.99393000", + "longitude": "-80.52097000" + }, + { + "id": "80410", + "name": "Peñas Chatas", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.01502000", + "longitude": "-80.80366000" + }, + { + "id": "80408", + "name": "Pesé", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.90863000", + "longitude": "-80.61433000" + }, + { + "id": "80413", + "name": "Pitaloza Arriba", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.64216000", + "longitude": "-80.66788000" + }, + { + "id": "80422", + "name": "Portobelillo", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.01738000", + "longitude": "-80.59538000" + }, + { + "id": "80427", + "name": "Potuga", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.06317000", + "longitude": "-80.62271000" + }, + { + "id": "80448", + "name": "Quebrada del Rosario", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.71238000", + "longitude": "-80.74222000" + }, + { + "id": "80453", + "name": "Rincón Hondo", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.84436000", + "longitude": "-80.60397000" + }, + { + "id": "80467", + "name": "Sabana Grande", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.88002000", + "longitude": "-80.63818000" + }, + { + "id": "80485", + "name": "San Juan Bautista", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "7.96099000", + "longitude": "-80.41283000" + }, + { + "id": "80504", + "name": "Santa María", + "state_id": 1389, + "state_code": "6", + "country_id": 170, + "country_code": "PA", + "latitude": "8.11143000", + "longitude": "-80.66582000" + }, + { + "id": "79955", + "name": "Agua Buena", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.83465000", + "longitude": "-80.39405000" + }, + { + "id": "79976", + "name": "Ave María", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.32481000", + "longitude": "-80.45361000" + }, + { + "id": "79978", + "name": "Bahía Honda", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.70517000", + "longitude": "-80.45342000" + }, + { + "id": "79980", + "name": "Bajo Corral", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.60463000", + "longitude": "-80.26016000" + }, + { + "id": "79988", + "name": "Bayano", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.63014000", + "longitude": "-80.38201000" + }, + { + "id": "79990", + "name": "Bella Vista", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.75000000", + "longitude": "-80.23333000" + }, + { + "id": "80037", + "name": "Cañas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.44713000", + "longitude": "-80.26480000" + }, + { + "id": "80029", + "name": "Cambutal", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.26534000", + "longitude": "-80.49105000" + }, + { + "id": "80042", + "name": "Cedro Arriba", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.78097000", + "longitude": "-80.53057000" + }, + { + "id": "80111", + "name": "Distrito de Guararé", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.77021000", + "longitude": "-80.37515000" + }, + { + "id": "80117", + "name": "Distrito de Las Tablas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.64843000", + "longitude": "-80.29933000" + }, + { + "id": "80119", + "name": "Distrito de Los Santos", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.88333000", + "longitude": "-80.45000000" + }, + { + "id": "80120", + "name": "Distrito de Macaracas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.65817000", + "longitude": "-80.53526000" + }, + { + "id": "80127", + "name": "Distrito de Pedasí", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.48528000", + "longitude": "-80.12747000" + }, + { + "id": "80130", + "name": "Distrito de Pocrí", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.63721000", + "longitude": "-80.16470000" + }, + { + "id": "80146", + "name": "Distrito de Tonosí", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.43597000", + "longitude": "-80.45828000" + }, + { + "id": "80156", + "name": "El Cañafístulo", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.61768000", + "longitude": "-80.23322000" + }, + { + "id": "80151", + "name": "El Cacao", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.44570000", + "longitude": "-80.40938000" + }, + { + "id": "80155", + "name": "El Carate", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.73124000", + "longitude": "-80.29691000" + }, + { + "id": "80161", + "name": "El Cocal", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.73697000", + "longitude": "-80.27980000" + }, + { + "id": "80166", + "name": "El Cortezo", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.42661000", + "longitude": "-80.63311000" + }, + { + "id": "80169", + "name": "El Ejido", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.91634000", + "longitude": "-80.38686000" + }, + { + "id": "80176", + "name": "El Guásimo", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.80640000", + "longitude": "-80.52991000" + }, + { + "id": "80177", + "name": "El Hato", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.79316000", + "longitude": "-80.38267000" + }, + { + "id": "80180", + "name": "El Macano", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.68489000", + "longitude": "-80.40309000" + }, + { + "id": "80181", + "name": "El Manantial", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.78245000", + "longitude": "-80.24713000" + }, + { + "id": "80184", + "name": "El Muñoz", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.67582000", + "longitude": "-80.32130000" + }, + { + "id": "80189", + "name": "El Pedregoso", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.69173000", + "longitude": "-80.32793000" + }, + { + "id": "80211", + "name": "Flores", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.48157000", + "longitude": "-80.40695000" + }, + { + "id": "80221", + "name": "Guararé", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.81531000", + "longitude": "-80.28345000" + }, + { + "id": "80222", + "name": "Guararé Arriba", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.80023000", + "longitude": "-80.35983000" + }, + { + "id": "80246", + "name": "La Colorada", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.82362000", + "longitude": "-80.55552000" + }, + { + "id": "80248", + "name": "La Enea", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.83333000", + "longitude": "-80.27417000" + }, + { + "id": "80253", + "name": "La Espigadilla", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.88389000", + "longitude": "-80.39039000" + }, + { + "id": "80260", + "name": "La Laja", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.73102000", + "longitude": "-80.25298000" + }, + { + "id": "80266", + "name": "La Mesa", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.65670000", + "longitude": "-80.61794000" + }, + { + "id": "80267", + "name": "La Miel", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.56022000", + "longitude": "-80.32736000" + }, + { + "id": "80271", + "name": "La Palma", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.71667000", + "longitude": "-80.38333000" + }, + { + "id": "80272", + "name": "La Pasera", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.79757000", + "longitude": "-80.30342000" + }, + { + "id": "80278", + "name": "La Tiza", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.75110000", + "longitude": "-80.29216000" + }, + { + "id": "80280", + "name": "La Tronosa", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.43609000", + "longitude": "-80.58698000" + }, + { + "id": "80282", + "name": "Lajamina", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.58587000", + "longitude": "-80.13212000" + }, + { + "id": "80287", + "name": "Las Cruces", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.82285000", + "longitude": "-80.43003000" + }, + { + "id": "80290", + "name": "Las Guabas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.81469000", + "longitude": "-80.50155000" + }, + { + "id": "80303", + "name": "Las Palmas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.68314000", + "longitude": "-80.49728000" + }, + { + "id": "80304", + "name": "Las Palmitas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.76523000", + "longitude": "-80.29350000" + }, + { + "id": "80306", + "name": "Las Tablas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.76472000", + "longitude": "-80.27483000" + }, + { + "id": "80307", + "name": "Las Trancas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.73400000", + "longitude": "-80.37384000" + }, + { + "id": "80313", + "name": "Llano Abajo", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.78598000", + "longitude": "-80.41060000" + }, + { + "id": "80322", + "name": "Llano de Piedra", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.65972000", + "longitude": "-80.56347000" + }, + { + "id": "80319", + "name": "Llano Largo", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.90607000", + "longitude": "-80.42561000" + }, + { + "id": "80329", + "name": "Los Asientos", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.51656000", + "longitude": "-80.13521000" + }, + { + "id": "80343", + "name": "Los Ángeles", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.88422000", + "longitude": "-80.35772000" + }, + { + "id": "80339", + "name": "Los Olivos", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.91589000", + "longitude": "-80.48884000" + }, + { + "id": "80342", + "name": "Los Santos", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.93333000", + "longitude": "-80.41667000" + }, + { + "id": "80346", + "name": "Macaracas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.73168000", + "longitude": "-80.55364000" + }, + { + "id": "80357", + "name": "Mogollón", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.64261000", + "longitude": "-80.45950000" + }, + { + "id": "80369", + "name": "Nuario", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.53047000", + "longitude": "-80.32692000" + }, + { + "id": "80385", + "name": "Oria Arriba", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.50505000", + "longitude": "-80.20567000" + }, + { + "id": "80390", + "name": "Palmira", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.66347000", + "longitude": "-80.35728000" + }, + { + "id": "80396", + "name": "Paraíso", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.68510000", + "longitude": "-80.16082000" + }, + { + "id": "80399", + "name": "Paritilla", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.62848000", + "longitude": "-80.17240000" + }, + { + "id": "80409", + "name": "Peña Blanca", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.71931000", + "longitude": "-80.28366000" + }, + { + "id": "80403", + "name": "Pedasí", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.53034000", + "longitude": "-80.02699000" + }, + { + "id": "80407", + "name": "Perales", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.77461000", + "longitude": "-80.32494000" + }, + { + "id": "80419", + "name": "Pocrí", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.65816000", + "longitude": "-80.12119000" + }, + { + "id": "80463", + "name": "Río Hondo", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.71192000", + "longitude": "-80.35904000" + }, + { + "id": "80468", + "name": "Sabana Grande", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.83543000", + "longitude": "-80.36490000" + }, + { + "id": "80481", + "name": "San José", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.67395000", + "longitude": "-80.24438000" + }, + { + "id": "80496", + "name": "Santa Ana Arriba", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.93300000", + "longitude": "-80.36369000" + }, + { + "id": "80509", + "name": "Santo Domingo", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.74614000", + "longitude": "-80.24173000" + }, + { + "id": "80512", + "name": "Sesteadero", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.73885000", + "longitude": "-80.24854000" + }, + { + "id": "80526", + "name": "Tonosí", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.40684000", + "longitude": "-80.44217000" + }, + { + "id": "80529", + "name": "Tres Quebradas", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.84018000", + "longitude": "-80.40740000" + }, + { + "id": "80536", + "name": "Valle Rico", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.62011000", + "longitude": "-80.35076000" + }, + { + "id": "80538", + "name": "Vallerriquito", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.62163000", + "longitude": "-80.31975000" + }, + { + "id": "80544", + "name": "Villa Lourdes", + "state_id": 1390, + "state_code": "7", + "country_id": 170, + "country_code": "PA", + "latitude": "7.81141000", + "longitude": "-80.47029000" + }, + { + "id": "79977", + "name": "Bahía Azul", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "9.14176000", + "longitude": "-81.89425000" + }, + { + "id": "79991", + "name": "Besiko", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.54863000", + "longitude": "-82.08980000" + }, + { + "id": "79993", + "name": "Bisira", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.89553000", + "longitude": "-81.85352000" + }, + { + "id": "79996", + "name": "Boca de Balsa", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.52995000", + "longitude": "-82.03132000" + }, + { + "id": "80009", + "name": "Buenos Aires", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.41384000", + "longitude": "-81.48440000" + }, + { + "id": "80028", + "name": "Camarón Arriba", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.38324000", + "longitude": "-81.99345000" + }, + { + "id": "80046", + "name": "Cerro Banco", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45797000", + "longitude": "-82.03081000" + }, + { + "id": "80048", + "name": "Cerro Caña", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.35174000", + "longitude": "-81.61050000" + }, + { + "id": "80050", + "name": "Cerro Plata", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.47733000", + "longitude": "-81.54585000" + }, + { + "id": "80057", + "name": "Chichica", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.35885000", + "longitude": "-81.66582000" + }, + { + "id": "80226", + "name": "Guayabito", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.53949000", + "longitude": "-81.48225000" + }, + { + "id": "80230", + "name": "Hato Chami", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.44281000", + "longitude": "-81.77196000" + }, + { + "id": "80231", + "name": "Hato Corotú", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.33516000", + "longitude": "-81.97030000" + }, + { + "id": "80239", + "name": "Kankintú", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.89503000", + "longitude": "-81.85750000" + }, + { + "id": "80240", + "name": "Kusapín", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "9.17119000", + "longitude": "-81.89621000" + }, + { + "id": "80285", + "name": "Lajero Arriba", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.29060000", + "longitude": "-81.77047000" + }, + { + "id": "80323", + "name": "Llano Ñopo", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.41996000", + "longitude": "-81.61865000" + }, + { + "id": "80325", + "name": "Loma Yuca", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.71817000", + "longitude": "-81.40492000" + }, + { + "id": "80364", + "name": "Müna", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.35035000", + "longitude": "-81.67219000" + }, + { + "id": "80356", + "name": "Mirono", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.40469000", + "longitude": "-81.83064000" + }, + { + "id": "80367", + "name": "Nole Düima", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.32682000", + "longitude": "-81.81531000" + }, + { + "id": "80381", + "name": "Nurun", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.47815000", + "longitude": "-81.47015000" + }, + { + "id": "80384", + "name": "Oma", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.35019000", + "longitude": "-81.80177000" + }, + { + "id": "80397", + "name": "Paredón Arriba", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45977000", + "longitude": "-81.19592000" + }, + { + "id": "80414", + "name": "Plan de Chorcha", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.46168000", + "longitude": "-82.15924000" + }, + { + "id": "80429", + "name": "Pueblo Nuevo", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.88070000", + "longitude": "-82.22411000" + }, + { + "id": "80444", + "name": "Quebrada Canoa", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.43333000", + "longitude": "-81.78333000" + }, + { + "id": "80445", + "name": "Quebrada Tula", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.84037000", + "longitude": "-81.99645000" + }, + { + "id": "80515", + "name": "Sitio Prado", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "8.37233000", + "longitude": "-81.58141000" + }, + { + "id": "80523", + "name": "Tobobe", + "state_id": 1391, + "state_code": "NB", + "country_id": 170, + "country_code": "PA", + "latitude": "9.12111000", + "longitude": "-81.82471000" + }, + { + "id": "79966", + "name": "Alto del Espino", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.84213000", + "longitude": "-79.84551000" + }, + { + "id": "79967", + "name": "Altos de San Francisco", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.86167000", + "longitude": "-79.79000000" + }, + { + "id": "79971", + "name": "Arenosa", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "9.03978000", + "longitude": "-79.95128000" + }, + { + "id": "79972", + "name": "Arosemena", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.97091000", + "longitude": "-79.96641000" + }, + { + "id": "79973", + "name": "Arraiján", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.95187000", + "longitude": "-79.66011000" + }, + { + "id": "79989", + "name": "Bejuco", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.60037000", + "longitude": "-79.88988000" + }, + { + "id": "80008", + "name": "Buenos Aires", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.63146000", + "longitude": "-79.94775000" + }, + { + "id": "80016", + "name": "Cabuya", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.57472000", + "longitude": "-79.92714000" + }, + { + "id": "80020", + "name": "Caimito", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.81143000", + "longitude": "-79.94738000" + }, + { + "id": "80033", + "name": "Capira", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.75636000", + "longitude": "-79.87996000" + }, + { + "id": "80044", + "name": "Cermeño", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.74082000", + "longitude": "-79.85299000" + }, + { + "id": "80047", + "name": "Cerro Cama", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "9.02802000", + "longitude": "-79.90744000" + }, + { + "id": "80053", + "name": "Chame", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.57753000", + "longitude": "-79.88595000" + }, + { + "id": "80069", + "name": "Cirí de Los Sotos", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.97206000", + "longitude": "-80.09209000" + }, + { + "id": "80083", + "name": "Distrito Arraiján", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.95000000", + "longitude": "-79.70000000" + }, + { + "id": "80097", + "name": "Distrito de Capira", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.76228000", + "longitude": "-79.88275000" + }, + { + "id": "80100", + "name": "Distrito de Chame", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.60000000", + "longitude": "-79.91667000" + }, + { + "id": "80112", + "name": "Distrito de La Chorrera", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.95000000", + "longitude": "-79.85000000" + }, + { + "id": "80135", + "name": "Distrito de San Carlos", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.53196000", + "longitude": "-80.06906000" + }, + { + "id": "80152", + "name": "El Cacao", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.76134000", + "longitude": "-80.01294000" + }, + { + "id": "80164", + "name": "El Coco", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.87009000", + "longitude": "-79.80415000" + }, + { + "id": "80171", + "name": "El Espavé", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.66161000", + "longitude": "-79.87584000" + }, + { + "id": "80172", + "name": "El Espino", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.83795000", + "longitude": "-79.84925000" + }, + { + "id": "80178", + "name": "El Higo", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.44731000", + "longitude": "-80.03603000" + }, + { + "id": "80179", + "name": "El Líbano", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.61685000", + "longitude": "-79.83483000" + }, + { + "id": "80219", + "name": "Guadalupe", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.85452000", + "longitude": "-79.81408000" + }, + { + "id": "80227", + "name": "Guayabito", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.54828000", + "longitude": "-80.01350000" + }, + { + "id": "80232", + "name": "Hato Montaña", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.91938000", + "longitude": "-79.73915000" + }, + { + "id": "80243", + "name": "La Chorrera", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.88028000", + "longitude": "-79.78333000" + }, + { + "id": "80250", + "name": "La Ermita", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45622000", + "longitude": "-80.06835000" + }, + { + "id": "80257", + "name": "La Herradura", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.84848000", + "longitude": "-79.80404000" + }, + { + "id": "80258", + "name": "La Laguna", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "9.04404000", + "longitude": "-79.84215000" + }, + { + "id": "80268", + "name": "La Mitra", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.84091000", + "longitude": "-79.78648000" + }, + { + "id": "80273", + "name": "La Pesa", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.85073000", + "longitude": "-79.82374000" + }, + { + "id": "80286", + "name": "Las Colinas", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.55000000", + "longitude": "-80.08333000" + }, + { + "id": "80294", + "name": "Las Lajas", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.54963000", + "longitude": "-79.93521000" + }, + { + "id": "80308", + "name": "Las Uvas", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45937000", + "longitude": "-80.00075000" + }, + { + "id": "80318", + "name": "Llano Largo", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.83463000", + "longitude": "-79.80765000" + }, + { + "id": "80336", + "name": "Los Llanitos", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.59787000", + "longitude": "-80.09503000" + }, + { + "id": "80352", + "name": "Mendoza", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "9.01471000", + "longitude": "-79.85073000" + }, + { + "id": "80371", + "name": "Nueva Arenosa", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.86944000", + "longitude": "-79.99472000" + }, + { + "id": "80373", + "name": "Nueva Gorgona", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.55000000", + "longitude": "-79.87547000" + }, + { + "id": "80374", + "name": "Nuevo Arraiján", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.92453000", + "longitude": "-79.72004000" + }, + { + "id": "80377", + "name": "Nuevo Emperador", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "9.00273000", + "longitude": "-79.73141000" + }, + { + "id": "80416", + "name": "Playa Leona", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.78389000", + "longitude": "-79.77547000" + }, + { + "id": "80426", + "name": "Potrero Grande", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.88051000", + "longitude": "-79.82795000" + }, + { + "id": "80432", + "name": "Puerto Caimito", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.87022000", + "longitude": "-79.71423000" + }, + { + "id": "80458", + "name": "Río Congo", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.96666000", + "longitude": "-79.76105000" + }, + { + "id": "80475", + "name": "San Carlos", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.47323000", + "longitude": "-79.96104000" + }, + { + "id": "80483", + "name": "San José", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.93333000", + "longitude": "-79.73333000" + }, + { + "id": "80495", + "name": "San Vicente de Bique", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.91143000", + "longitude": "-79.67360000" + }, + { + "id": "80498", + "name": "Santa Clara", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "9.02875000", + "longitude": "-79.75443000" + }, + { + "id": "80505", + "name": "Santa Rita", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.85681000", + "longitude": "-79.87954000" + }, + { + "id": "80518", + "name": "Sorá", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.63191000", + "longitude": "-80.00888000" + }, + { + "id": "80540", + "name": "Veracruz", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.88988000", + "longitude": "-79.62603000" + }, + { + "id": "80543", + "name": "Villa Carmen", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.79832000", + "longitude": "-79.86929000" + }, + { + "id": "80545", + "name": "Villa Rosario", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.77379000", + "longitude": "-79.87547000" + }, + { + "id": "80547", + "name": "Vista Alegre", + "state_id": 1394, + "state_code": "10", + "country_id": 170, + "country_code": "PA", + "latitude": "8.92772000", + "longitude": "-79.70280000" + }, + { + "id": "79960", + "name": "Alcalde Díaz", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.12016000", + "longitude": "-79.55641000" + }, + { + "id": "79968", + "name": "Ancón", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.96015000", + "longitude": "-79.55140000" + }, + { + "id": "80006", + "name": "Brujas", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.58536000", + "longitude": "-78.53008000" + }, + { + "id": "80041", + "name": "Cañita", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.22236000", + "longitude": "-78.89509000" + }, + { + "id": "80014", + "name": "Cabra Número Uno", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.10863000", + "longitude": "-79.33694000" + }, + { + "id": "80018", + "name": "Caimitillo", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.15559000", + "longitude": "-79.53974000" + }, + { + "id": "80027", + "name": "Calzada Larga", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.17272000", + "longitude": "-79.56212000" + }, + { + "id": "80045", + "name": "Cerro Azul", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.15735000", + "longitude": "-79.42097000" + }, + { + "id": "80055", + "name": "Chepillo", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.95396000", + "longitude": "-79.12856000" + }, + { + "id": "80056", + "name": "Chepo", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.17019000", + "longitude": "-79.10083000" + }, + { + "id": "80060", + "name": "Chilibre", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.15093000", + "longitude": "-79.62098000" + }, + { + "id": "80061", + "name": "Chimán", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.69125000", + "longitude": "-78.63570000" + }, + { + "id": "80074", + "name": "Contadora", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.62483000", + "longitude": "-79.03748000" + }, + { + "id": "80080", + "name": "Curundú", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.97092000", + "longitude": "-79.54612000" + }, + { + "id": "80090", + "name": "Distrito de Balboa", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.46667000", + "longitude": "-79.00000000" + }, + { + "id": "80103", + "name": "Distrito de Chepo", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.17391000", + "longitude": "-78.70374000" + }, + { + "id": "80104", + "name": "Distrito de Chimán", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.76043000", + "longitude": "-78.56470000" + }, + { + "id": "80125", + "name": "Distrito de Panamá", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.30612000", + "longitude": "-79.45246000" + }, + { + "id": "80144", + "name": "Distrito de Taboga", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.78333000", + "longitude": "-79.55833000" + }, + { + "id": "80160", + "name": "El Chorrillo", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.94964000", + "longitude": "-79.54715000" + }, + { + "id": "80196", + "name": "El Progreso", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.26667000", + "longitude": "-79.11667000" + }, + { + "id": "80215", + "name": "Gonzalillo", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.09183000", + "longitude": "-79.51928000" + }, + { + "id": "80234", + "name": "Howard", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.93942000", + "longitude": "-79.59097000" + }, + { + "id": "80238", + "name": "Juan Díaz", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.05000000", + "longitude": "-79.45000000" + }, + { + "id": "80242", + "name": "La Cabima", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.11865000", + "longitude": "-79.53660000" + }, + { + "id": "80245", + "name": "La Colorada", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.10224000", + "longitude": "-79.41600000" + }, + { + "id": "80249", + "name": "La Ensenada", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.36618000", + "longitude": "-78.84606000" + }, + { + "id": "80251", + "name": "La Esmeralda", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.26817000", + "longitude": "-78.92460000" + }, + { + "id": "80256", + "name": "La Guinea", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.34250000", + "longitude": "-78.93430000" + }, + { + "id": "80264", + "name": "La Mesa", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.17308000", + "longitude": "-79.27401000" + }, + { + "id": "80288", + "name": "Las Cumbres", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.08916000", + "longitude": "-79.52809000" + }, + { + "id": "80297", + "name": "Las Margaritas", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.18426000", + "longitude": "-79.08730000" + }, + { + "id": "80345", + "name": "Lídice", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.74869000", + "longitude": "-79.90974000" + }, + { + "id": "80337", + "name": "Los Lotes", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.12425000", + "longitude": "-79.28929000" + }, + { + "id": "80372", + "name": "Nueva Esperanza", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.10210000", + "longitude": "-79.33414000" + }, + { + "id": "80375", + "name": "Nuevo Belén", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.07939000", + "longitude": "-79.39556000" + }, + { + "id": "80386", + "name": "Pacora", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.07937000", + "longitude": "-79.28997000" + }, + { + "id": "80394", + "name": "Panamá", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.99360000", + "longitude": "-79.51973000" + }, + { + "id": "80400", + "name": "Parque Lefevre", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.01667000", + "longitude": "-79.48333000" + }, + { + "id": "80441", + "name": "Pásiga", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.93647000", + "longitude": "-78.90917000" + }, + { + "id": "80404", + "name": "Pedregal", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.06667000", + "longitude": "-79.43333000" + }, + { + "id": "80456", + "name": "Río Abajo", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.01667000", + "longitude": "-79.50000000" + }, + { + "id": "80472", + "name": "San Antonio", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.17290000", + "longitude": "-79.54743000" + }, + { + "id": "80476", + "name": "San Felipe", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.95118000", + "longitude": "-79.53726000" + }, + { + "id": "80489", + "name": "San Miguel", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.45685000", + "longitude": "-78.93695000" + }, + { + "id": "80490", + "name": "San Miguelito", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.05032000", + "longitude": "-79.47068000" + }, + { + "id": "80494", + "name": "San Vicente", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.11445000", + "longitude": "-79.59755000" + }, + { + "id": "80524", + "name": "Tocumen", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.08939000", + "longitude": "-79.38310000" + }, + { + "id": "80527", + "name": "Tortí", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.92132000", + "longitude": "-78.40546000" + }, + { + "id": "80533", + "name": "Unión de Azuero", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.15256000", + "longitude": "-79.17005000" + }, + { + "id": "80532", + "name": "Unión Santeña", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "8.83525000", + "longitude": "-78.65104000" + }, + { + "id": "80546", + "name": "Villa Unida", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.18908000", + "longitude": "-79.62452000" + }, + { + "id": "80549", + "name": "Vista Hermosa", + "state_id": 1395, + "state_code": "8", + "country_id": 170, + "country_code": "PA", + "latitude": "9.11178000", + "longitude": "-79.36113000" + }, + { + "id": "79964", + "name": "Alto de Jesús", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.26152000", + "longitude": "-81.48412000" + }, + { + "id": "79970", + "name": "Arenas", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.36865000", + "longitude": "-80.86268000" + }, + { + "id": "79975", + "name": "Atalaya", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.04213000", + "longitude": "-80.92528000" + }, + { + "id": "79981", + "name": "Barnizal", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.40460000", + "longitude": "-80.77765000" + }, + { + "id": "79994", + "name": "Bisvalles", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.18298000", + "longitude": "-81.22092000" + }, + { + "id": "80001", + "name": "Boquerón", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.24414000", + "longitude": "-80.85897000" + }, + { + "id": "80004", + "name": "Boró", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.16933000", + "longitude": "-81.30071000" + }, + { + "id": "80040", + "name": "Cañazas", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.32004000", + "longitude": "-81.21152000" + }, + { + "id": "80022", + "name": "Calabacito", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.24817000", + "longitude": "-81.08187000" + }, + { + "id": "80024", + "name": "Calidonia", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.95756000", + "longitude": "-81.38633000" + }, + { + "id": "80025", + "name": "Calobre", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.31886000", + "longitude": "-80.84067000" + }, + { + "id": "80026", + "name": "Calovébora", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.78703000", + "longitude": "-81.21056000" + }, + { + "id": "80031", + "name": "Canto del Llano", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.12472000", + "longitude": "-80.96374000" + }, + { + "id": "80077", + "name": "Corozal", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.07712000", + "longitude": "-81.43990000" + }, + { + "id": "80089", + "name": "Distrito de Atalaya", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.02899000", + "longitude": "-80.91739000" + }, + { + "id": "80098", + "name": "Distrito de Cañazas", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.35596000", + "longitude": "-81.28633000" + }, + { + "id": "80096", + "name": "Distrito de Calobre", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.39684000", + "longitude": "-80.85124000" + }, + { + "id": "80113", + "name": "Distrito de La Mesa", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.10976000", + "longitude": "-81.17767000" + }, + { + "id": "80116", + "name": "Distrito de Las Palmas", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.14532000", + "longitude": "-81.42849000" + }, + { + "id": "80121", + "name": "Distrito de Montijo", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.95316000", + "longitude": "-81.05301000" + }, + { + "id": "80134", + "name": "Distrito de Río de Jesús", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.91438000", + "longitude": "-81.16133000" + }, + { + "id": "80136", + "name": "Distrito de San Francisco", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.26965000", + "longitude": "-81.00108000" + }, + { + "id": "80139", + "name": "Distrito de Santa Fé", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.72063000", + "longitude": "-80.95858000" + }, + { + "id": "80142", + "name": "Distrito de Santiago", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.12425000", + "longitude": "-80.87827000" + }, + { + "id": "80143", + "name": "Distrito de Soná", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.84378000", + "longitude": "-81.36612000" + }, + { + "id": "80149", + "name": "El Alto", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51191000", + "longitude": "-81.03646000" + }, + { + "id": "80150", + "name": "El Barrito", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.96059000", + "longitude": "-80.94801000" + }, + { + "id": "80162", + "name": "El Coclá", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.32143000", + "longitude": "-80.92069000" + }, + { + "id": "80173", + "name": "El Espino de Santa Rosa", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.09286000", + "longitude": "-80.82380000" + }, + { + "id": "80182", + "name": "El Marañón", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.03582000", + "longitude": "-81.21489000" + }, + { + "id": "80183", + "name": "El María", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.02905000", + "longitude": "-81.44384000" + }, + { + "id": "80187", + "name": "El Pantano", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.53755000", + "longitude": "-81.06941000" + }, + { + "id": "80197", + "name": "El Pájaro", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.95342000", + "longitude": "-81.12154000" + }, + { + "id": "80190", + "name": "El Peñón", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.35000000", + "longitude": "-80.97620000" + }, + { + "id": "80191", + "name": "El Picador", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.37803000", + "longitude": "-81.25621000" + }, + { + "id": "80195", + "name": "El Potrero", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.37692000", + "longitude": "-80.79434000" + }, + { + "id": "80200", + "name": "El Rincón", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.18422000", + "longitude": "-81.43333000" + }, + { + "id": "80205", + "name": "El Uvito", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.11648000", + "longitude": "-80.98461000" + }, + { + "id": "80224", + "name": "Guarumal", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.79404000", + "longitude": "-81.25904000" + }, + { + "id": "80244", + "name": "La Colorada", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.01319000", + "longitude": "-80.98590000" + }, + { + "id": "80255", + "name": "La Garceana", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.93708000", + "longitude": "-81.01643000" + }, + { + "id": "80259", + "name": "La Laguna", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.33882000", + "longitude": "-80.72949000" + }, + { + "id": "80262", + "name": "La Loma", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.43708000", + "longitude": "-80.89118000" + }, + { + "id": "80263", + "name": "La Mesa", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.14707000", + "longitude": "-81.18114000" + }, + { + "id": "80269", + "name": "La Montañuela", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.02487000", + "longitude": "-80.86325000" + }, + { + "id": "80274", + "name": "La Peña", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.12784000", + "longitude": "-81.02693000" + }, + { + "id": "80276", + "name": "La Raya de Calobre", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.21630000", + "longitude": "-80.82729000" + }, + { + "id": "80277", + "name": "La Raya de Santa María", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.16429000", + "longitude": "-80.82143000" + }, + { + "id": "80281", + "name": "La Yeguada", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.43060000", + "longitude": "-80.85752000" + }, + { + "id": "80291", + "name": "Las Guías Abajo", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.19451000", + "longitude": "-80.75494000" + }, + { + "id": "80292", + "name": "Las Huacas", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.90167000", + "longitude": "-81.14056000" + }, + { + "id": "80302", + "name": "Las Palmas", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.13564000", + "longitude": "-81.45674000" + }, + { + "id": "80310", + "name": "Leones Arriba", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.75415000", + "longitude": "-81.11556000" + }, + { + "id": "80316", + "name": "Llano Grande", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.07473000", + "longitude": "-81.13626000" + }, + { + "id": "80324", + "name": "Lolá", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.09326000", + "longitude": "-81.47163000" + }, + { + "id": "80327", + "name": "Los Algarrobos", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.10898000", + "longitude": "-81.01355000" + }, + { + "id": "80332", + "name": "Los Castillos", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.02326000", + "longitude": "-81.11941000" + }, + { + "id": "80335", + "name": "Los Higos", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.20553000", + "longitude": "-80.86022000" + }, + { + "id": "80349", + "name": "Mariato District", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.67810000", + "longitude": "-81.00409000" + }, + { + "id": "80359", + "name": "Monjarás", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.36942000", + "longitude": "-80.86667000" + }, + { + "id": "80361", + "name": "Montijo", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.98858000", + "longitude": "-81.05643000" + }, + { + "id": "80412", + "name": "Piedras Gordas", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.52419000", + "longitude": "-80.91152000" + }, + { + "id": "80421", + "name": "Ponuga", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.88245000", + "longitude": "-80.97880000" + }, + { + "id": "80436", + "name": "Puerto Vidal", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.04834000", + "longitude": "-81.60499000" + }, + { + "id": "80446", + "name": "Quebrada de Oro", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.03548000", + "longitude": "-81.38692000" + }, + { + "id": "80466", + "name": "Río de Jesús", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.97882000", + "longitude": "-81.16162000" + }, + { + "id": "80461", + "name": "Río Grande", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.71907000", + "longitude": "-81.33423000" + }, + { + "id": "80454", + "name": "Rodeo Viejo", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.11205000", + "longitude": "-81.31684000" + }, + { + "id": "80473", + "name": "San Bartolo", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.21063000", + "longitude": "-81.27572000" + }, + { + "id": "80477", + "name": "San Francisco", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.06667000", + "longitude": "-81.36667000" + }, + { + "id": "80482", + "name": "San José", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.46704000", + "longitude": "-80.80514000" + }, + { + "id": "80484", + "name": "San Juan", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.30311000", + "longitude": "-81.01575000" + }, + { + "id": "80488", + "name": "San Marcelo", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.27252000", + "longitude": "-81.15988000" + }, + { + "id": "80493", + "name": "San Pedro del Espino", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.14011000", + "longitude": "-81.08663000" + }, + { + "id": "80501", + "name": "Santa Fé", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.51063000", + "longitude": "-81.07802000" + }, + { + "id": "80508", + "name": "Santiago de Veraguas", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.10000000", + "longitude": "-80.98333000" + }, + { + "id": "80516", + "name": "Soná", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.01223000", + "longitude": "-81.32163000" + }, + { + "id": "80519", + "name": "Tebario", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.71369000", + "longitude": "-80.97825000" + }, + { + "id": "80535", + "name": "Utirá", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "7.97208000", + "longitude": "-81.21777000" + }, + { + "id": "80542", + "name": "Viguí", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.33921000", + "longitude": "-81.49823000" + }, + { + "id": "80553", + "name": "Zapotillo", + "state_id": 1392, + "state_code": "9", + "country_id": 170, + "country_code": "PA", + "latitude": "8.00532000", + "longitude": "-81.50653000" + }, + { + "id": "81029", + "name": "Arawa", + "state_id": 4831, + "state_code": "NSB", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.22977000", + "longitude": "155.56598000" + }, + { + "id": "81033", + "name": "Central Bougainville", + "state_id": 4831, + "state_code": "NSB", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.22806000", + "longitude": "155.56583000" + }, + { + "id": "81063", + "name": "Kieta", + "state_id": 4831, + "state_code": "NSB", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.21462000", + "longitude": "155.63251000" + }, + { + "id": "81091", + "name": "North Bougainville", + "state_id": 4831, + "state_code": "NSB", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.42194000", + "longitude": "154.67278000" + }, + { + "id": "81097", + "name": "Panguna", + "state_id": 4831, + "state_code": "NSB", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.31639000", + "longitude": "155.48483000" + }, + { + "id": "81109", + "name": "South Bougainville", + "state_id": 4831, + "state_code": "NSB", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.74593000", + "longitude": "155.69640000" + }, + { + "id": "81024", + "name": "Abau", + "state_id": 4847, + "state_code": "CPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-10.08333000", + "longitude": "148.91667000" + }, + { + "id": "81041", + "name": "Goilala", + "state_id": 4847, + "state_code": "CPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-8.33333000", + "longitude": "147.00000000" + }, + { + "id": "81055", + "name": "Kairuku-Hiri", + "state_id": 4847, + "state_code": "CPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-9.13648000", + "longitude": "147.27905000" + }, + { + "id": "81104", + "name": "Rigo", + "state_id": 4847, + "state_code": "CPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-9.75000000", + "longitude": "147.83333000" + }, + { + "id": "81034", + "name": "Chuave", + "state_id": 4846, + "state_code": "CPK", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.16667000", + "longitude": "145.08333000" + }, + { + "id": "81043", + "name": "Gumine", + "state_id": 4846, + "state_code": "CPK", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.25000000", + "longitude": "144.88333000" + }, + { + "id": "81059", + "name": "Karimui Nomane", + "state_id": 4846, + "state_code": "CPK", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.58333000", + "longitude": "144.83333000" + }, + { + "id": "81062", + "name": "Kerowagi", + "state_id": 4846, + "state_code": "CPK", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.93333000", + "longitude": "144.88333000" + }, + { + "id": "81073", + "name": "Kundiawa", + "state_id": 4846, + "state_code": "CPK", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.91667000", + "longitude": "145.05000000" + }, + { + "id": "81107", + "name": "Sinasina Yonggamugl", + "state_id": 4846, + "state_code": "CPK", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.08333000", + "longitude": "145.01667000" + }, + { + "id": "81040", + "name": "Gazelle", + "state_id": 4834, + "state_code": "EBR", + "country_id": 171, + "country_code": "PG", + "latitude": "-4.48333000", + "longitude": "151.86667000" + }, + { + "id": "81069", + "name": "Kokopo", + "state_id": 4834, + "state_code": "EBR", + "country_id": 171, + "country_code": "PG", + "latitude": "-4.40000000", + "longitude": "152.28333000" + }, + { + "id": "81098", + "name": "Pomio", + "state_id": 4834, + "state_code": "EBR", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.50000000", + "longitude": "151.33333000" + }, + { + "id": "81102", + "name": "Rabaul", + "state_id": 4834, + "state_code": "EBR", + "country_id": 171, + "country_code": "PG", + "latitude": "-4.18333000", + "longitude": "152.16667000" + }, + { + "id": "81036", + "name": "Daulo", + "state_id": 4845, + "state_code": "EHG", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.98333000", + "longitude": "145.23333000" + }, + { + "id": "81042", + "name": "Goroka", + "state_id": 4845, + "state_code": "EHG", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.05000000", + "longitude": "145.38333000" + }, + { + "id": "81045", + "name": "Henganofi", + "state_id": 4845, + "state_code": "EHG", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.21667000", + "longitude": "145.66667000" + }, + { + "id": "81054", + "name": "Kainantu", + "state_id": 4845, + "state_code": "EHG", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.41667000", + "longitude": "145.91667000" + }, + { + "id": "81077", + "name": "Lufa", + "state_id": 4845, + "state_code": "EHG", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.45000000", + "longitude": "145.25000000" + }, + { + "id": "81095", + "name": "Obura Wonenara", + "state_id": 4845, + "state_code": "EHG", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.55434000", + "longitude": "145.97328000" + }, + { + "id": "81096", + "name": "Okapa", + "state_id": 4845, + "state_code": "EHG", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.63333000", + "longitude": "145.50000000" + }, + { + "id": "81118", + "name": "Unggai Bena", + "state_id": 4845, + "state_code": "EHG", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.11667000", + "longitude": "145.51667000" + }, + { + "id": "81056", + "name": "Kandep", + "state_id": 4848, + "state_code": "EPW", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.83333000", + "longitude": "143.55000000" + }, + { + "id": "81071", + "name": "Kompiam Ambum", + "state_id": 4848, + "state_code": "EPW", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.25000000", + "longitude": "144.00000000" + }, + { + "id": "81075", + "name": "Lagaip Porgera", + "state_id": 4848, + "state_code": "EPW", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.38333000", + "longitude": "143.16667000" + }, + { + "id": "81100", + "name": "Porgera", + "state_id": 4848, + "state_code": "EPW", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.46300000", + "longitude": "143.14800000" + }, + { + "id": "81122", + "name": "Wabag", + "state_id": 4848, + "state_code": "EPW", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.33333000", + "longitude": "143.65000000" + }, + { + "id": "81123", + "name": "Wapenamanda", + "state_id": 4848, + "state_code": "EPW", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.66667000", + "longitude": "143.91667000" + }, + { + "id": "81061", + "name": "Kerema", + "state_id": 4839, + "state_code": "GPK", + "country_id": 171, + "country_code": "PG", + "latitude": "-7.79600000", + "longitude": "146.09300000" + }, + { + "id": "81064", + "name": "Kikori", + "state_id": 4839, + "state_code": "GPK", + "country_id": 171, + "country_code": "PG", + "latitude": "-7.25000000", + "longitude": "144.33333000" + }, + { + "id": "81070", + "name": "Komo Margarima", + "state_id": 4833, + "state_code": "HLA", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.11667000", + "longitude": "143.00000000" + }, + { + "id": "81072", + "name": "Koroba-Lake Kopiago", + "state_id": 4833, + "state_code": "HLA", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.41667000", + "longitude": "142.50000000" + }, + { + "id": "81114", + "name": "Tari", + "state_id": 4833, + "state_code": "HLA", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.84500000", + "longitude": "142.94667000" + }, + { + "id": "81115", + "name": "Tari Pori", + "state_id": 4833, + "state_code": "HLA", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.28333000", + "longitude": "142.83333000" + }, + { + "id": "81028", + "name": "Angalimp South Wahgi", + "state_id": 4832, + "state_code": "JWK", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.05000000", + "longitude": "144.56667000" + }, + { + "id": "81051", + "name": "Jimi", + "state_id": 4832, + "state_code": "JWK", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.53333000", + "longitude": "144.56667000" + }, + { + "id": "81093", + "name": "North Wahgi", + "state_id": 4832, + "state_code": "JWK", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.80000000", + "longitude": "144.68333000" + }, + { + "id": "81031", + "name": "Bogia", + "state_id": 4843, + "state_code": "MPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-4.50000000", + "longitude": "145.00000000" + }, + { + "id": "81078", + "name": "Madang", + "state_id": 4843, + "state_code": "MPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.22152000", + "longitude": "145.78695000" + }, + { + "id": "81084", + "name": "Middle Ramu", + "state_id": 4843, + "state_code": "MPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-4.91667000", + "longitude": "144.75000000" + }, + { + "id": "81103", + "name": "Rai Coast", + "state_id": 4843, + "state_code": "MPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.72303000", + "longitude": "146.46149000" + }, + { + "id": "81111", + "name": "Sumkar", + "state_id": 4843, + "state_code": "MPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-4.80000000", + "longitude": "145.55000000" + }, + { + "id": "81119", + "name": "Usino Bundi", + "state_id": 4843, + "state_code": "MPM", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.53333000", + "longitude": "145.16667000" + }, + { + "id": "81076", + "name": "Lorengau", + "state_id": 4842, + "state_code": "MRL", + "country_id": 171, + "country_code": "PG", + "latitude": "-2.03410000", + "longitude": "147.27173000" + }, + { + "id": "81079", + "name": "Manus", + "state_id": 4842, + "state_code": "MRL", + "country_id": 171, + "country_code": "PG", + "latitude": "-2.09626000", + "longitude": "146.96612000" + }, + { + "id": "81027", + "name": "Alotau", + "state_id": 4849, + "state_code": "MBA", + "country_id": 171, + "country_code": "PG", + "latitude": "-10.25000000", + "longitude": "150.08333000" + }, + { + "id": "81038", + "name": "Esa’ala", + "state_id": 4849, + "state_code": "MBA", + "country_id": 171, + "country_code": "PG", + "latitude": "-9.58333000", + "longitude": "150.75000000" + }, + { + "id": "81066", + "name": "Kiriwina Goodenough", + "state_id": 4849, + "state_code": "MBA", + "country_id": 171, + "country_code": "PG", + "latitude": "-8.48333000", + "longitude": "151.06667000" + }, + { + "id": "81105", + "name": "Samarai", + "state_id": 4849, + "state_code": "MBA", + "country_id": 171, + "country_code": "PG", + "latitude": "-10.61038000", + "longitude": "150.66207000" + }, + { + "id": "81106", + "name": "Samarai Murua", + "state_id": 4849, + "state_code": "MBA", + "country_id": 171, + "country_code": "PG", + "latitude": "-10.49636000", + "longitude": "150.54703000" + }, + { + "id": "81032", + "name": "Bulolo", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-7.41667000", + "longitude": "146.75000000" + }, + { + "id": "81039", + "name": "Finschhafen", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.41667000", + "longitude": "147.50000000" + }, + { + "id": "81046", + "name": "Huon Gulf", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-7.18333000", + "longitude": "146.95000000" + }, + { + "id": "81052", + "name": "Kabwum", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.08333000", + "longitude": "147.00000000" + }, + { + "id": "81074", + "name": "Lae", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.50000000", + "longitude": "146.83333000" + }, + { + "id": "81080", + "name": "Markham", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.64153000", + "longitude": "146.86043000" + }, + { + "id": "81082", + "name": "Menyamya", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-7.25000000", + "longitude": "146.16667000" + }, + { + "id": "81089", + "name": "Nawae", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.46667000", + "longitude": "146.96667000" + }, + { + "id": "81117", + "name": "Tewai Siassi", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.15000000", + "longitude": "147.53333000" + }, + { + "id": "81124", + "name": "Wau", + "state_id": 4835, + "state_code": "MPL", + "country_id": 171, + "country_code": "PG", + "latitude": "-7.33778000", + "longitude": "146.71649000" + }, + { + "id": "81060", + "name": "Kavieng", + "state_id": 4841, + "state_code": "NIK", + "country_id": 171, + "country_code": "PG", + "latitude": "-3.00000000", + "longitude": "151.41667000" + }, + { + "id": "81087", + "name": "Namatanai", + "state_id": 4841, + "state_code": "NIK", + "country_id": 171, + "country_code": "PG", + "latitude": "-4.33333000", + "longitude": "152.83333000" + }, + { + "id": "81049", + "name": "Ijivitari", + "state_id": 4838, + "state_code": "NPP", + "country_id": 171, + "country_code": "PG", + "latitude": "-9.33333000", + "longitude": "148.58333000" + }, + { + "id": "81068", + "name": "Kokoda", + "state_id": 4838, + "state_code": "NPP", + "country_id": 171, + "country_code": "PG", + "latitude": "-8.87778000", + "longitude": "147.73642000" + }, + { + "id": "81099", + "name": "Popondetta", + "state_id": 4838, + "state_code": "NPP", + "country_id": 171, + "country_code": "PG", + "latitude": "-8.76536000", + "longitude": "148.23252000" + }, + { + "id": "81108", + "name": "Sohe", + "state_id": 4838, + "state_code": "NPP", + "country_id": 171, + "country_code": "PG", + "latitude": "-9.00000000", + "longitude": "147.91667000" + }, + { + "id": "81088", + "name": "National Capital District", + "state_id": 4837, + "state_code": "NCD", + "country_id": 171, + "country_code": "PG", + "latitude": "-9.42257000", + "longitude": "147.16641000" + }, + { + "id": "81101", + "name": "Port Moresby", + "state_id": 4837, + "state_code": "NCD", + "country_id": 171, + "country_code": "PG", + "latitude": "-9.47723000", + "longitude": "147.15089000" + }, + { + "id": "81025", + "name": "Aitape", + "state_id": 4836, + "state_code": "SAN", + "country_id": 171, + "country_code": "PG", + "latitude": "-3.13697000", + "longitude": "142.34913000" + }, + { + "id": "81026", + "name": "Aitape Lumi", + "state_id": 4836, + "state_code": "SAN", + "country_id": 171, + "country_code": "PG", + "latitude": "-3.25000000", + "longitude": "142.08333000" + }, + { + "id": "81094", + "name": "Nuku", + "state_id": 4836, + "state_code": "SAN", + "country_id": 171, + "country_code": "PG", + "latitude": "-3.66667000", + "longitude": "142.41667000" + }, + { + "id": "81116", + "name": "Telefomin", + "state_id": 4836, + "state_code": "SAN", + "country_id": 171, + "country_code": "PG", + "latitude": "-4.91667000", + "longitude": "141.66667000" + }, + { + "id": "81120", + "name": "Vanimo", + "state_id": 4836, + "state_code": "SAN", + "country_id": 171, + "country_code": "PG", + "latitude": "-2.68372000", + "longitude": "141.30195000" + }, + { + "id": "81121", + "name": "Vanimo Green", + "state_id": 4836, + "state_code": "SAN", + "country_id": 171, + "country_code": "PG", + "latitude": "-3.36667000", + "longitude": "141.35000000" + }, + { + "id": "81047", + "name": "Ialibu", + "state_id": 4844, + "state_code": "SHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.28208000", + "longitude": "143.99354000" + }, + { + "id": "81048", + "name": "Ialibu Pangia", + "state_id": 4844, + "state_code": "SHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.16667000", + "longitude": "144.00000000" + }, + { + "id": "81050", + "name": "Imbonggu", + "state_id": 4844, + "state_code": "SHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.16667000", + "longitude": "144.00000000" + }, + { + "id": "81053", + "name": "Kagua Erave", + "state_id": 4844, + "state_code": "SHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.66667000", + "longitude": "144.00000000" + }, + { + "id": "81081", + "name": "Mendi", + "state_id": 4844, + "state_code": "SHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.14755000", + "longitude": "143.65633000" + }, + { + "id": "81090", + "name": "Nipa Kutubu", + "state_id": 4844, + "state_code": "SHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.33333000", + "longitude": "143.33333000" + }, + { + "id": "81057", + "name": "Kandrian", + "state_id": 4830, + "state_code": "WBK", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.20655000", + "longitude": "149.54744000" + }, + { + "id": "81058", + "name": "Kandrian Gloucester", + "state_id": 4830, + "state_code": "WBK", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.08333000", + "longitude": "149.91667000" + }, + { + "id": "81065", + "name": "Kimbe", + "state_id": 4830, + "state_code": "WBK", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.55085000", + "longitude": "150.13766000" + }, + { + "id": "81112", + "name": "Talasea", + "state_id": 4830, + "state_code": "WBK", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.66667000", + "longitude": "149.58333000" + }, + { + "id": "81030", + "name": "Baiyer Mul", + "state_id": 4840, + "state_code": "WHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.53333000", + "longitude": "144.15000000" + }, + { + "id": "81037", + "name": "Dei", + "state_id": 4840, + "state_code": "WHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.68333000", + "longitude": "144.36667000" + }, + { + "id": "81044", + "name": "Hagen", + "state_id": 4840, + "state_code": "WHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.83333000", + "longitude": "144.28333000" + }, + { + "id": "81086", + "name": "Mount Hagen", + "state_id": 4840, + "state_code": "WHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.85746000", + "longitude": "144.23058000" + }, + { + "id": "81113", + "name": "Tambul Nebilyer", + "state_id": 4840, + "state_code": "WHM", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.98333000", + "longitude": "144.15000000" + }, + { + "id": "81035", + "name": "Daru", + "state_id": 4850, + "state_code": "WPD", + "country_id": 171, + "country_code": "PG", + "latitude": "-9.07786000", + "longitude": "143.20893000" + }, + { + "id": "81067", + "name": "Kiunga", + "state_id": 4850, + "state_code": "WPD", + "country_id": 171, + "country_code": "PG", + "latitude": "-6.12193000", + "longitude": "141.29061000" + }, + { + "id": "81083", + "name": "Middle Fly", + "state_id": 4850, + "state_code": "WPD", + "country_id": 171, + "country_code": "PG", + "latitude": "-7.16667000", + "longitude": "142.03333000" + }, + { + "id": "81085", + "name": "Morehead", + "state_id": 4850, + "state_code": "WPD", + "country_id": 171, + "country_code": "PG", + "latitude": "-8.71065000", + "longitude": "141.63668000" + }, + { + "id": "81092", + "name": "North Fly", + "state_id": 4850, + "state_code": "WPD", + "country_id": 171, + "country_code": "PG", + "latitude": "-5.72896000", + "longitude": "141.37482000" + }, + { + "id": "81110", + "name": "South Fly", + "state_id": 4850, + "state_code": "WPD", + "country_id": 171, + "country_code": "PG", + "latitude": "-8.61667000", + "longitude": "142.11667000" + }, + { + "id": "89736", + "name": "Capitán Pablo Lagerenza", + "state_id": 2785, + "state_code": "16", + "country_id": 172, + "country_code": "PY", + "latitude": "-19.91667000", + "longitude": "-60.78333000" + }, + { + "id": "89768", + "name": "Fuerte Olimpo", + "state_id": 2785, + "state_code": "16", + "country_id": 172, + "country_code": "PY", + "latitude": "-21.04153000", + "longitude": "-57.87377000" + }, + { + "id": "89743", + "name": "Cedrales", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.65668000", + "longitude": "-54.72272000" + }, + { + "id": "89745", + "name": "Ciudad del Este", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.50972000", + "longitude": "-54.61111000" + }, + { + "id": "89751", + "name": "Colonia Minga Porá", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.86667000", + "longitude": "-54.90000000" + }, + { + "id": "89759", + "name": "Doctor Juan León Mallorquín", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.43053000", + "longitude": "-55.25412000" + }, + { + "id": "89782", + "name": "Itakyry", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.98611000", + "longitude": "-55.14963000" + }, + { + "id": "89799", + "name": "Naranjal", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.96667000", + "longitude": "-55.18333000" + }, + { + "id": "89812", + "name": "Presidente Franco", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.56384000", + "longitude": "-54.61097000" + }, + { + "id": "89818", + "name": "San Alberto", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.96667000", + "longitude": "-54.90000000" + }, + { + "id": "89835", + "name": "Santa Rita", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.78333000", + "longitude": "-55.06667000" + }, + { + "id": "89852", + "name": "Yguazú", + "state_id": 2784, + "state_code": "10", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.46187000", + "longitude": "-55.00007000" + }, + { + "id": "89725", + "name": "Bella Vista", + "state_id": 2782, + "state_code": "13", + "country_id": 172, + "country_code": "PY", + "latitude": "-22.13333000", + "longitude": "-56.51667000" + }, + { + "id": "89734", + "name": "Capitán Bado", + "state_id": 2782, + "state_code": "13", + "country_id": 172, + "country_code": "PY", + "latitude": "-23.26667000", + "longitude": "-55.53333000" + }, + { + "id": "89807", + "name": "Pedro Juan Caballero", + "state_id": 2782, + "state_code": "13", + "country_id": 172, + "country_code": "PY", + "latitude": "-22.54722000", + "longitude": "-55.73333000" + }, + { + "id": "89744", + "name": "Cerrito", + "state_id": 2781, + "state_code": "12", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.34215000", + "longitude": "-57.64119000" + }, + { + "id": "89773", + "name": "General José Eduvigis Díaz", + "state_id": 2781, + "state_code": "12", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.20136000", + "longitude": "-58.36740000" + }, + { + "id": "89808", + "name": "Pilar", + "state_id": 2781, + "state_code": "12", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.85874000", + "longitude": "-58.30639000" + }, + { + "id": "89750", + "name": "Colonia Menno", + "state_id": 2780, + "state_code": "19", + "country_id": 172, + "country_code": "PY", + "latitude": "-22.36667000", + "longitude": "-59.81667000" + }, + { + "id": "89752", + "name": "Colonia Neuland", + "state_id": 2780, + "state_code": "19", + "country_id": 172, + "country_code": "PY", + "latitude": "-22.66667000", + "longitude": "-60.11667000" + }, + { + "id": "89766", + "name": "Filadelfia", + "state_id": 2780, + "state_code": "19", + "country_id": 172, + "country_code": "PY", + "latitude": "-22.33936000", + "longitude": "-60.03157000" + }, + { + "id": "89730", + "name": "Caaguazú", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.47104000", + "longitude": "-56.01603000" + }, + { + "id": "89740", + "name": "Carayaó", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.19750000", + "longitude": "-56.39878000" + }, + { + "id": "89742", + "name": "Cecilio Baez", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.07158000", + "longitude": "-56.24386000" + }, + { + "id": "89748", + "name": "Colonia General Alfredo Stroessner", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.36395000", + "longitude": "-55.70690000" + }, + { + "id": "89757", + "name": "Coronel Oviedo", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.44444000", + "longitude": "-56.44028000" + }, + { + "id": "89760", + "name": "Doctor Juan Manuel Frutos", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.38380000", + "longitude": "-55.83215000" + }, + { + "id": "89796", + "name": "Mbutuý", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.97518000", + "longitude": "-56.30927000" + }, + { + "id": "89816", + "name": "Repatriación", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.53333000", + "longitude": "-55.95000000" + }, + { + "id": "89823", + "name": "San Joaquín", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.02853000", + "longitude": "-56.04280000" + }, + { + "id": "89824", + "name": "San José", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.53333000", + "longitude": "-56.73333000" + }, + { + "id": "89853", + "name": "Yhú", + "state_id": 2773, + "state_code": "5", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.05784000", + "longitude": "-55.92267000" + }, + { + "id": "89716", + "name": "Abaí", + "state_id": 2775, + "state_code": "6", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.03333000", + "longitude": "-55.93333000" + }, + { + "id": "89728", + "name": "Buena Vista", + "state_id": 2775, + "state_code": "6", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.18387000", + "longitude": "-56.08171000" + }, + { + "id": "89732", + "name": "Caazapá", + "state_id": 2775, + "state_code": "6", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.19583000", + "longitude": "-56.36806000" + }, + { + "id": "89772", + "name": "General Higinio Morínigo", + "state_id": 2775, + "state_code": "6", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.95000000", + "longitude": "-55.91667000" + }, + { + "id": "89826", + "name": "San Juan Nepomuceno", + "state_id": 2775, + "state_code": "6", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.11229000", + "longitude": "-55.93861000" + }, + { + "id": "89850", + "name": "Yegros", + "state_id": 2775, + "state_code": "6", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.45000000", + "longitude": "-56.40000000" + }, + { + "id": "89855", + "name": "Yuty", + "state_id": 2775, + "state_code": "6", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.61471000", + "longitude": "-56.24607000" + }, + { + "id": "89747", + "name": "Colonia Catuete", + "state_id": 2771, + "state_code": "14", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.13333000", + "longitude": "-54.61667000" + }, + { + "id": "89758", + "name": "Corpus Christi", + "state_id": 2771, + "state_code": "14", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.08040000", + "longitude": "-54.93933000" + }, + { + "id": "89790", + "name": "La Paloma", + "state_id": 2771, + "state_code": "14", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.12957000", + "longitude": "-54.61376000" + }, + { + "id": "89803", + "name": "Nueva Esperanza", + "state_id": 2771, + "state_code": "14", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.50760000", + "longitude": "-54.85510000" + }, + { + "id": "89817", + "name": "Salto del Guairá", + "state_id": 2771, + "state_code": "14", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.06250000", + "longitude": "-54.30694000" + }, + { + "id": "89822", + "name": "San Isidro de Curuguaty", + "state_id": 2771, + "state_code": "14", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.47184000", + "longitude": "-55.69227000" + }, + { + "id": "89851", + "name": "Ygatimi", + "state_id": 2771, + "state_code": "14", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.12371000", + "longitude": "-55.64418000" + }, + { + "id": "89720", + "name": "Areguá", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.31250000", + "longitude": "-57.38472000" + }, + { + "id": "89733", + "name": "Capiatá", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.35520000", + "longitude": "-57.44545000" + }, + { + "id": "89765", + "name": "Fernando de la Mora", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.33860000", + "longitude": "-57.52167000" + }, + { + "id": "89774", + "name": "Guarambaré", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.49096000", + "longitude": "-57.45567000" + }, + { + "id": "89784", + "name": "Itauguá", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.39258000", + "longitude": "-57.35421000" + }, + { + "id": "89786", + "name": "Itá", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.50054000", + "longitude": "-57.36717000" + }, + { + "id": "89791", + "name": "Lambaré", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.34682000", + "longitude": "-57.60647000" + }, + { + "id": "89793", + "name": "Limpio", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.16611000", + "longitude": "-57.48562000" + }, + { + "id": "89794", + "name": "Mariano Roque Alonso", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.20791000", + "longitude": "-57.53202000" + }, + { + "id": "89802", + "name": "Nemby", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.39490000", + "longitude": "-57.53574000" + }, + { + "id": "89804", + "name": "Nueva Italia", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.61080000", + "longitude": "-57.46563000" + }, + { + "id": "89819", + "name": "San Antonio", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.42126000", + "longitude": "-57.54725000" + }, + { + "id": "89828", + "name": "San Lorenzo", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.33968000", + "longitude": "-57.50879000" + }, + { + "id": "89843", + "name": "Villa Elisa", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.36760000", + "longitude": "-57.59274000" + }, + { + "id": "89854", + "name": "Ypacarai", + "state_id": 2777, + "state_code": "11", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.40777000", + "longitude": "-57.28889000" + }, + { + "id": "89726", + "name": "Belén", + "state_id": 2779, + "state_code": "1", + "country_id": 172, + "country_code": "PY", + "latitude": "-23.46611000", + "longitude": "-57.26194000" + }, + { + "id": "89755", + "name": "Concepción", + "state_id": 2779, + "state_code": "1", + "country_id": 172, + "country_code": "PY", + "latitude": "-23.39985000", + "longitude": "-57.43236000" + }, + { + "id": "89777", + "name": "Horqueta", + "state_id": 2779, + "state_code": "1", + "country_id": 172, + "country_code": "PY", + "latitude": "-23.34278000", + "longitude": "-57.05972000" + }, + { + "id": "89718", + "name": "Altos", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.26263000", + "longitude": "-57.25443000" + }, + { + "id": "89722", + "name": "Arroyos y Esteros", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.05478000", + "longitude": "-57.09873000" + }, + { + "id": "89723", + "name": "Atyrá", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.27876000", + "longitude": "-57.17192000" + }, + { + "id": "89729", + "name": "Caacupé", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.38575000", + "longitude": "-57.14217000" + }, + { + "id": "89738", + "name": "Caraguatay", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.23844000", + "longitude": "-56.82693000" + }, + { + "id": "89762", + "name": "Emboscada", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.15000000", + "longitude": "-57.35000000" + }, + { + "id": "89764", + "name": "Eusebio Ayala", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.38276000", + "longitude": "-56.96088000" + }, + { + "id": "89779", + "name": "Isla Pucú", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.30853000", + "longitude": "-56.89986000" + }, + { + "id": "89780", + "name": "Itacurubí de la Cordillera", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.46158000", + "longitude": "-56.85333000" + }, + { + "id": "89811", + "name": "Piribebuy", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.46498000", + "longitude": "-57.04183000" + }, + { + "id": "89820", + "name": "San Bernardino", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.31067000", + "longitude": "-57.29628000" + }, + { + "id": "89833", + "name": "Santa Elena", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.41327000", + "longitude": "-56.79708000" + }, + { + "id": "89840", + "name": "Tobatí", + "state_id": 2783, + "state_code": "3", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.26111000", + "longitude": "-57.08329000" + }, + { + "id": "89749", + "name": "Colonia Mauricio José Troche", + "state_id": 2772, + "state_code": "4", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.56667000", + "longitude": "-56.28333000" + }, + { + "id": "89756", + "name": "Coronel Martínez", + "state_id": 2772, + "state_code": "4", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.75862000", + "longitude": "-56.61677000" + }, + { + "id": "89778", + "name": "Independencia", + "state_id": 2772, + "state_code": "4", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.69100000", + "longitude": "-56.26781000" + }, + { + "id": "89783", + "name": "Itapé", + "state_id": 2772, + "state_code": "4", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.85172000", + "longitude": "-56.61385000" + }, + { + "id": "89785", + "name": "Iturbe", + "state_id": 2772, + "state_code": "4", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.05508000", + "longitude": "-56.48463000" + }, + { + "id": "89795", + "name": "Mbocayaty", + "state_id": 2772, + "state_code": "4", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.71938000", + "longitude": "-56.42179000" + }, + { + "id": "89800", + "name": "Natalicio Talavera", + "state_id": 2772, + "state_code": "4", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.63333000", + "longitude": "-56.30000000" + }, + { + "id": "89846", + "name": "Villarrica", + "state_id": 2772, + "state_code": "4", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.74946000", + "longitude": "-56.43518000" + }, + { + "id": "89721", + "name": "Arquitecto Tomás Romero Pereira", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.48333000", + "longitude": "-55.25000000" + }, + { + "id": "89724", + "name": "Bella Vista", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.05000000", + "longitude": "-55.55000000" + }, + { + "id": "89735", + "name": "Capitán Miranda", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.20000000", + "longitude": "-55.80000000" + }, + { + "id": "89741", + "name": "Carmen del Paraná", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.22232000", + "longitude": "-56.15243000" + }, + { + "id": "89746", + "name": "Colonia Carlos Antonio López", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.39853000", + "longitude": "-54.75690000" + }, + { + "id": "89754", + "name": "Colonia San Lorenzo", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.49324000", + "longitude": "-54.79989000" + }, + { + "id": "89761", + "name": "Edelira", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.76734000", + "longitude": "-55.27872000" + }, + { + "id": "89763", + "name": "Encarnación", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.33056000", + "longitude": "-55.86667000" + }, + { + "id": "89767", + "name": "Fram", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.98333000", + "longitude": "-55.88333000" + }, + { + "id": "89769", + "name": "General Artigas", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.93522000", + "longitude": "-56.22168000" + }, + { + "id": "89770", + "name": "General Delgado", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.09046000", + "longitude": "-56.52474000" + }, + { + "id": "89776", + "name": "Hohenau", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.07315000", + "longitude": "-55.64247000" + }, + { + "id": "89787", + "name": "Jesús", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.05598000", + "longitude": "-55.74130000" + }, + { + "id": "89801", + "name": "Natalio", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.75702000", + "longitude": "-55.13777000" + }, + { + "id": "89805", + "name": "Obligado", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.03333000", + "longitude": "-55.63333000" + }, + { + "id": "89809", + "name": "Pirapó", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.86012000", + "longitude": "-55.54357000" + }, + { + "id": "89813", + "name": "Puerto Mayor Otaño", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.40000000", + "longitude": "-54.70000000" + }, + { + "id": "89821", + "name": "San Cosme y Damián", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.31741000", + "longitude": "-56.33087000" + }, + { + "id": "89827", + "name": "San Juan del Paraná", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.30168000", + "longitude": "-55.96509000" + }, + { + "id": "89832", + "name": "San Pedro del Paraná", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.83268000", + "longitude": "-56.20575000" + }, + { + "id": "89841", + "name": "Trinidad", + "state_id": 2778, + "state_code": "7", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.11667000", + "longitude": "-55.78333000" + }, + { + "id": "89788", + "name": "Juan de Ayolas", + "state_id": 2786, + "state_code": "8", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.38662000", + "longitude": "-56.84724000" + }, + { + "id": "89825", + "name": "San Juan Bautista", + "state_id": 2786, + "state_code": "8", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.66944000", + "longitude": "-57.14583000" + }, + { + "id": "89829", + "name": "San Miguel", + "state_id": 2786, + "state_code": "8", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.50000000", + "longitude": "-57.05000000" + }, + { + "id": "89830", + "name": "San Patricio", + "state_id": 2786, + "state_code": "8", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.96667000", + "longitude": "-56.81667000" + }, + { + "id": "89834", + "name": "Santa María", + "state_id": 2786, + "state_code": "8", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.78333000", + "longitude": "-56.93333000" + }, + { + "id": "89836", + "name": "Santa Rosa Misiones", + "state_id": 2786, + "state_code": "8", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.88730000", + "longitude": "-56.84905000" + }, + { + "id": "89837", + "name": "Santiago", + "state_id": 2786, + "state_code": "8", + "country_id": 172, + "country_code": "PY", + "latitude": "-27.14310000", + "longitude": "-56.76803000" + }, + { + "id": "89844", + "name": "Villa Florida", + "state_id": 2786, + "state_code": "8", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.38333000", + "longitude": "-57.15000000" + }, + { + "id": "89717", + "name": "Acahay", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.91667000", + "longitude": "-57.15000000" + }, + { + "id": "89731", + "name": "Caapucú", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.23523000", + "longitude": "-57.18212000" + }, + { + "id": "89739", + "name": "Carapeguá", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.80000000", + "longitude": "-57.23333000" + }, + { + "id": "89789", + "name": "La Colmena", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.88627000", + "longitude": "-56.84084000" + }, + { + "id": "89797", + "name": "Mbuyapey", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.21921000", + "longitude": "-56.75777000" + }, + { + "id": "89806", + "name": "Paraguarí", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.62083000", + "longitude": "-57.14722000" + }, + { + "id": "89810", + "name": "Pirayú", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.48406000", + "longitude": "-57.23490000" + }, + { + "id": "89815", + "name": "Quiindy", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.97606000", + "longitude": "-57.23353000" + }, + { + "id": "89838", + "name": "Sapucaí", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.66652000", + "longitude": "-56.95215000" + }, + { + "id": "89847", + "name": "Yaguarón", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.56139000", + "longitude": "-57.28343000" + }, + { + "id": "89849", + "name": "Ybycuí", + "state_id": 2774, + "state_code": "9", + "country_id": 172, + "country_code": "PY", + "latitude": "-26.01667000", + "longitude": "-57.05000000" + }, + { + "id": "89727", + "name": "Benjamín Aceval", + "state_id": 2770, + "state_code": "15", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.96667000", + "longitude": "-57.56667000" + }, + { + "id": "89798", + "name": "Nanawua", + "state_id": 2770, + "state_code": "15", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.27930000", + "longitude": "-57.70307000" + }, + { + "id": "89845", + "name": "Villa Hayes", + "state_id": 2770, + "state_code": "15", + "country_id": 172, + "country_code": "PY", + "latitude": "-25.09306000", + "longitude": "-57.52361000" + }, + { + "id": "89719", + "name": "Antequera", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.08526000", + "longitude": "-57.20221000" + }, + { + "id": "89737", + "name": "Capiíbary", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.80000000", + "longitude": "-56.03333000" + }, + { + "id": "89753", + "name": "Colonia Nueva Germania", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-23.91137000", + "longitude": "-56.70091000" + }, + { + "id": "89771", + "name": "General Elizardo Aquino", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.44417000", + "longitude": "-56.90061000" + }, + { + "id": "89775", + "name": "Guayaybi", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.53333000", + "longitude": "-56.43333000" + }, + { + "id": "89781", + "name": "Itacurubí del Rosario", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.53541000", + "longitude": "-56.82352000" + }, + { + "id": "89792", + "name": "Lima", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-23.88327000", + "longitude": "-56.48217000" + }, + { + "id": "89814", + "name": "Puerto Rosario", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.44127000", + "longitude": "-57.14272000" + }, + { + "id": "89831", + "name": "San Pedro de Ycuamandiyú", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.08534000", + "longitude": "-57.08745000" + }, + { + "id": "89839", + "name": "Tacuatí", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-23.45000000", + "longitude": "-56.58333000" + }, + { + "id": "89842", + "name": "Unión", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.80790000", + "longitude": "-56.52148000" + }, + { + "id": "89848", + "name": "Yataity del Norte", + "state_id": 2776, + "state_code": "2", + "country_id": 172, + "country_code": "PY", + "latitude": "-24.83333000", + "longitude": "-56.35000000" + }, + { + "id": "80572", + "name": "Bagua Grande", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.75611000", + "longitude": "-78.44111000" + }, + { + "id": "80582", + "name": "Cajaruro", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.73639000", + "longitude": "-78.42556000" + }, + { + "id": "80602", + "name": "Chachapoyas", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.23169000", + "longitude": "-77.86903000" + }, + { + "id": "80632", + "name": "Condorcanqui", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.16515000", + "longitude": "-78.03840000" + }, + { + "id": "80689", + "name": "La Peca", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.61111000", + "longitude": "-78.43500000" + }, + { + "id": "80781", + "name": "Provincia de Bagua", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.09006000", + "longitude": "-78.39972000" + }, + { + "id": "80784", + "name": "Provincia de Bongará", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.68341000", + "longitude": "-77.87308000" + }, + { + "id": "80803", + "name": "Provincia de Chachapoyas", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.27480000", + "longitude": "-77.81067000" + }, + { + "id": "80857", + "name": "Provincia de Luya", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.41667000", + "longitude": "-78.00000000" + }, + { + "id": "80885", + "name": "Provincia de Rodríguez de Mendoza", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.33333000", + "longitude": "-77.41667000" + }, + { + "id": "81006", + "name": "Utcubamba", + "state_id": 3685, + "state_code": "AMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.77031000", + "longitude": "-78.32850000" + }, + { + "id": "80554", + "name": "Abancay", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.63389000", + "longitude": "-72.88139000" + }, + { + "id": "80559", + "name": "Andahuaylas", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.65556000", + "longitude": "-73.38722000" + }, + { + "id": "80767", + "name": "Provincia de Abancay", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.66667000", + "longitude": "-72.91667000" + }, + { + "id": "80772", + "name": "Provincia de Andahuaylas", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.66667000", + "longitude": "-73.41667000" + }, + { + "id": "80775", + "name": "Provincia de Antabamba", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.41667000", + "longitude": "-72.75000000" + }, + { + "id": "80779", + "name": "Provincia de Aymaraes", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.41667000", + "longitude": "-73.25000000" + }, + { + "id": "80817", + "name": "Provincia de Cotabambas", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.00000000", + "longitude": "-72.20000000" + }, + { + "id": "80825", + "name": "Provincia de Grau", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.00000000", + "longitude": "-72.58333000" + }, + { + "id": "80946", + "name": "San Jerónimo", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.65138000", + "longitude": "-73.36388000" + }, + { + "id": "80984", + "name": "Talavera", + "state_id": 3699, + "state_code": "APU", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.65306000", + "longitude": "-73.42917000" + }, + { + "id": "80555", + "name": "Acarí", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.42393000", + "longitude": "-74.61361000" + }, + { + "id": "80561", + "name": "Arequipa", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.39889000", + "longitude": "-71.53500000" + }, + { + "id": "80588", + "name": "Camaná", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.62375000", + "longitude": "-72.71055000" + }, + { + "id": "80598", + "name": "Ccolo", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.50611000", + "longitude": "-71.49184000" + }, + { + "id": "80619", + "name": "Chivay", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.63833000", + "longitude": "-71.60111000" + }, + { + "id": "80627", + "name": "Cocachacra", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.08833000", + "longitude": "-71.75750000" + }, + { + "id": "80634", + "name": "Cotahuasi", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.21306000", + "longitude": "-72.88861000" + }, + { + "id": "80655", + "name": "Huarancante", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.76803000", + "longitude": "-71.45952000" + }, + { + "id": "80657", + "name": "Huarichancara", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.63972000", + "longitude": "-71.06111000" + }, + { + "id": "80673", + "name": "Jatun Orcochiri", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.75003000", + "longitude": "-71.34641000" + }, + { + "id": "80677", + "name": "Jayune", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.56277000", + "longitude": "-71.30312000" + }, + { + "id": "80704", + "name": "Llongasora", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.63951000", + "longitude": "-71.29921000" + }, + { + "id": "80705", + "name": "Lluta", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.01472000", + "longitude": "-72.01417000" + }, + { + "id": "80717", + "name": "Mollendo", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.02306000", + "longitude": "-72.01472000" + }, + { + "id": "80733", + "name": "Orcopampa", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.26611000", + "longitude": "-72.34167000" + }, + { + "id": "80777", + "name": "Provincia de Arequipa", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.33333000", + "longitude": "-71.50000000" + }, + { + "id": "80789", + "name": "Provincia de Camaná", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.41667000", + "longitude": "-72.83333000" + }, + { + "id": "80795", + "name": "Provincia de Caravelí", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.58333000", + "longitude": "-74.00000000" + }, + { + "id": "80798", + "name": "Provincia de Castilla", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.58333000", + "longitude": "-72.41667000" + }, + { + "id": "80800", + "name": "Provincia de Caylloma", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.66667000", + "longitude": "-71.58333000" + }, + { + "id": "80812", + "name": "Provincia de Condesuyos", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.58333000", + "longitude": "-72.83333000" + }, + { + "id": "80845", + "name": "Provincia de Islay", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.00000000", + "longitude": "-71.83333000" + }, + { + "id": "80851", + "name": "Provincia de La Unión", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.00000000", + "longitude": "-72.83333000" + }, + { + "id": "80914", + "name": "Pucara", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.97993000", + "longitude": "-71.45988000" + }, + { + "id": "80923", + "name": "Punta de Bombón", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.17190000", + "longitude": "-71.79240000" + }, + { + "id": "81012", + "name": "Vizcachane", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.80861000", + "longitude": "-71.20111000" + }, + { + "id": "81020", + "name": "Yura", + "state_id": 3681, + "state_code": "ARE", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.25223000", + "longitude": "-71.67969000" + }, + { + "id": "80568", + "name": "Ayacucho", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.15878000", + "longitude": "-74.22321000" + }, + { + "id": "80570", + "name": "Ayna", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.65000000", + "longitude": "-73.91667000" + }, + { + "id": "80633", + "name": "Coracora", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.03333000", + "longitude": "-73.78333000" + }, + { + "id": "80653", + "name": "Huanta", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.93333000", + "longitude": "-74.25000000" + }, + { + "id": "80755", + "name": "Paucar Del Sara Sara", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.12275000", + "longitude": "-73.26177000" + }, + { + "id": "80792", + "name": "Provincia de Cangallo", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.57300000", + "longitude": "-74.38900000" + }, + { + "id": "80829", + "name": "Provincia de Huamanga", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.20000000", + "longitude": "-74.25000000" + }, + { + "id": "80830", + "name": "Provincia de Huanca Sancos", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.07600000", + "longitude": "-74.42800000" + }, + { + "id": "80835", + "name": "Provincia de Huanta", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.50000000", + "longitude": "-74.16667000" + }, + { + "id": "80850", + "name": "Provincia de La Mar", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.91667000", + "longitude": "-73.83333000" + }, + { + "id": "80856", + "name": "Provincia de Lucanas", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.50000000", + "longitude": "-74.33333000" + }, + { + "id": "80873", + "name": "Provincia de Parinacochas", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.02965000", + "longitude": "-73.63487000" + }, + { + "id": "80895", + "name": "Provincia de Sucre", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.10300000", + "longitude": "-73.78600000" + }, + { + "id": "80908", + "name": "Provincia de Víctor Fajardo", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.75000000", + "longitude": "-74.33333000" + }, + { + "id": "80907", + "name": "Provincia de Vilcas Huamán", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.63200000", + "longitude": "-73.88800000" + }, + { + "id": "80924", + "name": "Puquio", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.70000000", + "longitude": "-74.13333000" + }, + { + "id": "80951", + "name": "San Miguel", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.01250000", + "longitude": "-73.98083000" + }, + { + "id": "80985", + "name": "Tambo", + "state_id": 3692, + "state_code": "AYA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.79847000", + "longitude": "-73.92438000" + }, + { + "id": "80564", + "name": "Asuncion", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.18987000", + "longitude": "-77.39878000" + }, + { + "id": "80594", + "name": "Carás", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.04692000", + "longitude": "-77.80901000" + }, + { + "id": "80592", + "name": "Carhuaz", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.28194000", + "longitude": "-77.64472000" + }, + { + "id": "80593", + "name": "Carlos Fermin Fitzcarrald", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.04415000", + "longitude": "-77.24168000" + }, + { + "id": "80615", + "name": "Chimbote", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.08528000", + "longitude": "-78.57833000" + }, + { + "id": "80628", + "name": "Coishco", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.02306000", + "longitude": "-78.61556000" + }, + { + "id": "80656", + "name": "Huaraz", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.52779000", + "longitude": "-77.52778000" + }, + { + "id": "80658", + "name": "Huarmey", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.06806000", + "longitude": "-78.15222000" + }, + { + "id": "80766", + "name": "Pomabamba", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.83333000", + "longitude": "-77.46667000" + }, + { + "id": "80770", + "name": "Provincia de Aija", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.83333000", + "longitude": "-77.66667000" + }, + { + "id": "80776", + "name": "Provincia de Antonio Raymondi", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.08333000", + "longitude": "-77.08333000" + }, + { + "id": "80782", + "name": "Provincia de Bolognesi", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.10723000", + "longitude": "-77.14804000" + }, + { + "id": "80796", + "name": "Provincia de Carhuaz", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.31700000", + "longitude": "-77.55100000" + }, + { + "id": "80797", + "name": "Provincia de Casma", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.47638000", + "longitude": "-78.24738000" + }, + { + "id": "80816", + "name": "Provincia de Corongo", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.58333000", + "longitude": "-77.91667000" + }, + { + "id": "80837", + "name": "Provincia de Huaraz", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.56109000", + "longitude": "-77.64605000" + }, + { + "id": "80838", + "name": "Provincia de Huari", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.33333000", + "longitude": "-77.16667000" + }, + { + "id": "80839", + "name": "Provincia de Huarmey", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.91667000", + "longitude": "-78.00000000" + }, + { + "id": "80841", + "name": "Provincia de Huaylas", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.91667000", + "longitude": "-77.83333000" + }, + { + "id": "80861", + "name": "Provincia de Mariscal Luzuriaga", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.83333000", + "longitude": "-77.25000000" + }, + { + "id": "80871", + "name": "Provincia de Pallasca", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.33333000", + "longitude": "-77.91667000" + }, + { + "id": "80880", + "name": "Provincia de Pomabamba", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.82311000", + "longitude": "-77.47559000" + }, + { + "id": "80883", + "name": "Provincia de Recuay", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.00000000", + "longitude": "-77.41667000" + }, + { + "id": "80890", + "name": "Provincia de Santa", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.00000000", + "longitude": "-78.25000000" + }, + { + "id": "80894", + "name": "Provincia de Sihuas", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.50000000", + "longitude": "-77.50000000" + }, + { + "id": "80911", + "name": "Provincia de Yungay", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.16667000", + "longitude": "-77.75000000" + }, + { + "id": "80919", + "name": "Puerto Santa", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.98772000", + "longitude": "-78.64727000" + }, + { + "id": "81017", + "name": "Yauya", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.98333000", + "longitude": "-77.30000000" + }, + { + "id": "81018", + "name": "Yungay", + "state_id": 3680, + "state_code": "ANC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.13833000", + "longitude": "-77.74361000" + }, + { + "id": "80573", + "name": "Bambamarca", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.68333000", + "longitude": "-78.53333000" + }, + { + "id": "80575", + "name": "Bellavista", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.66417000", + "longitude": "-78.67722000" + }, + { + "id": "80580", + "name": "Cajabamba", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.61667000", + "longitude": "-78.05000000" + }, + { + "id": "80581", + "name": "Cajamarca", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.16378000", + "longitude": "-78.50027000" + }, + { + "id": "80600", + "name": "Celendín", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.86590000", + "longitude": "-78.14585000" + }, + { + "id": "80623", + "name": "Chota", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.55000000", + "longitude": "-78.65000000" + }, + { + "id": "80678", + "name": "Jaén", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.70729000", + "longitude": "-78.80785000" + }, + { + "id": "80785", + "name": "Provincia de Cajabamba", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.50000000", + "longitude": "-78.16667000" + }, + { + "id": "80786", + "name": "Provincia de Cajamarca", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.33333000", + "longitude": "-78.41667000" + }, + { + "id": "80802", + "name": "Provincia de Celendín", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.83333000", + "longitude": "-78.25000000" + }, + { + "id": "80806", + "name": "Provincia de Chota", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.38332000", + "longitude": "-79.18055000" + }, + { + "id": "80814", + "name": "Provincia de Contumazá", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.33333000", + "longitude": "-78.91667000" + }, + { + "id": "80819", + "name": "Provincia de Cutervo", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.36667000", + "longitude": "-78.85000000" + }, + { + "id": "80826", + "name": "Provincia de Hualgayoc", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.68000000", + "longitude": "-78.53000000" + }, + { + "id": "80847", + "name": "Provincia de Jaén", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.71074000", + "longitude": "-79.00438000" + }, + { + "id": "80886", + "name": "Provincia de San Ignacio", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.08333000", + "longitude": "-79.00000000" + }, + { + "id": "80888", + "name": "Provincia de San Miguel", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.00000000", + "longitude": "-79.00000000" + }, + { + "id": "80891", + "name": "Provincia de Santa Cruz", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.83333000", + "longitude": "-79.00000000" + }, + { + "id": "80944", + "name": "San Ignacio", + "state_id": 3688, + "state_code": "CAJ", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.14583000", + "longitude": "-79.00139000" + }, + { + "id": "80587", + "name": "Callao", + "state_id": 3701, + "state_code": "CAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.05659000", + "longitude": "-77.11814000" + }, + { + "id": "80560", + "name": "Anta", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.47056000", + "longitude": "-72.14833000" + }, + { + "id": "80579", + "name": "Cahuanuyo", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.34147000", + "longitude": "-71.46311000" + }, + { + "id": "80584", + "name": "Calca", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.33333000", + "longitude": "-71.95000000" + }, + { + "id": "80586", + "name": "Callanca", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.18137000", + "longitude": "-71.14070000" + }, + { + "id": "80597", + "name": "Ccaquiracunca", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.27683000", + "longitude": "-71.45026000" + }, + { + "id": "80599", + "name": "Ccuntuma", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.12540000", + "longitude": "-71.41216000" + }, + { + "id": "80607", + "name": "Checacupe", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.02694000", + "longitude": "-71.45278000" + }, + { + "id": "80608", + "name": "Checca", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.47278000", + "longitude": "-71.39389000" + }, + { + "id": "80613", + "name": "Chignayhua", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.24610000", + "longitude": "-71.44442000" + }, + { + "id": "80617", + "name": "Chinchero", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.39222000", + "longitude": "-72.04778000" + }, + { + "id": "80629", + "name": "Combapata", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.10111000", + "longitude": "-71.42944000" + }, + { + "id": "80631", + "name": "Conchopata", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.46968000", + "longitude": "-71.19843000" + }, + { + "id": "80635", + "name": "Cullcuyre", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.09272000", + "longitude": "-71.33119000" + }, + { + "id": "80636", + "name": "Cusco", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.52264000", + "longitude": "-71.96734000" + }, + { + "id": "80661", + "name": "Huayna Alcalde", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.26989000", + "longitude": "-71.09599000" + }, + { + "id": "80676", + "name": "Jayobamba", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.09425000", + "longitude": "-71.33922000" + }, + { + "id": "80696", + "name": "Langui", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.43194000", + "longitude": "-71.27306000" + }, + { + "id": "80700", + "name": "Layo", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.49361000", + "longitude": "-71.15500000" + }, + { + "id": "80702", + "name": "Lima Pampa", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.08976000", + "longitude": "-71.33664000" + }, + { + "id": "80709", + "name": "Maranganí", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.35672000", + "longitude": "-71.16924000" + }, + { + "id": "80710", + "name": "Maras", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.33500000", + "longitude": "-72.15667000" + }, + { + "id": "80723", + "name": "Mosoc Cancha", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.28514000", + "longitude": "-71.08773000" + }, + { + "id": "80724", + "name": "Mosoc Llacta", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.12000000", + "longitude": "-71.47278000" + }, + { + "id": "80731", + "name": "Ollantaytambo", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.25722000", + "longitude": "-72.26306000" + }, + { + "id": "80735", + "name": "Oropesa", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.59278000", + "longitude": "-71.77194000" + }, + { + "id": "80748", + "name": "Pampamarca", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.14639000", + "longitude": "-71.45944000" + }, + { + "id": "80750", + "name": "Pangoa", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.11667000", + "longitude": "-73.00000000" + }, + { + "id": "80756", + "name": "Paucartambo", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.31522000", + "longitude": "-71.59364000" + }, + { + "id": "80763", + "name": "Pisac", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.42250000", + "longitude": "-71.84667000" + }, + { + "id": "80769", + "name": "Provincia de Acomayo", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.91667000", + "longitude": "-71.66667000" + }, + { + "id": "80774", + "name": "Provincia de Anta", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.50000000", + "longitude": "-72.33333000" + }, + { + "id": "80788", + "name": "Provincia de Calca", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.00000000", + "longitude": "-72.16667000" + }, + { + "id": "80790", + "name": "Provincia de Canas", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.41083000", + "longitude": "-71.33694000" + }, + { + "id": "80791", + "name": "Provincia de Canchis", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.08194000", + "longitude": "-71.18556000" + }, + { + "id": "80808", + "name": "Provincia de Chumbivilcas", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.41667000", + "longitude": "-72.00000000" + }, + { + "id": "80818", + "name": "Provincia de Cusco", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.50000000", + "longitude": "-72.00000000" + }, + { + "id": "80822", + "name": "Provincia de Espinar", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.75000000", + "longitude": "-71.41667000" + }, + { + "id": "80849", + "name": "Provincia de La Convención", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.00000000", + "longitude": "-73.00000000" + }, + { + "id": "80874", + "name": "Provincia de Paruro", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.91667000", + "longitude": "-71.91667000" + }, + { + "id": "80877", + "name": "Provincia de Paucartambo", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.16667000", + "longitude": "-71.41667000" + }, + { + "id": "80882", + "name": "Provincia de Quispicanchis", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.41667000", + "longitude": "-71.00000000" + }, + { + "id": "80906", + "name": "Provincia de Urubamba", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.25000000", + "longitude": "-72.33333000" + }, + { + "id": "80926", + "name": "Qquea", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.05417000", + "longitude": "-71.38583000" + }, + { + "id": "80928", + "name": "Queromarca", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.18391000", + "longitude": "-71.38343000" + }, + { + "id": "80953", + "name": "San Pablo", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.20278000", + "longitude": "-71.31556000" + }, + { + "id": "80960", + "name": "Santa Ana", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.86667000", + "longitude": "-72.71667000" + }, + { + "id": "80968", + "name": "Santo Tomas", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.44556000", + "longitude": "-72.08417000" + }, + { + "id": "80975", + "name": "Sicuani", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.26944000", + "longitude": "-71.22611000" + }, + { + "id": "80993", + "name": "Tinta", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.14500000", + "longitude": "-71.40694000" + }, + { + "id": "81000", + "name": "Tungasuca", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.16389000", + "longitude": "-71.47667000" + }, + { + "id": "81004", + "name": "Urcos", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.68611000", + "longitude": "-71.62278000" + }, + { + "id": "81005", + "name": "Urubamba", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.30472000", + "longitude": "-72.11583000" + }, + { + "id": "81015", + "name": "Yanaoca", + "state_id": 3691, + "state_code": "CUS", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.21806000", + "longitude": "-71.43167000" + }, + { + "id": "80651", + "name": "Huancavelica", + "state_id": 3679, + "state_code": "HUV", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.78261000", + "longitude": "-74.97266000" + }, + { + "id": "80662", + "name": "Huaytara", + "state_id": 3679, + "state_code": "HUV", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.65616000", + "longitude": "-75.09234000" + }, + { + "id": "80749", + "name": "Pampas", + "state_id": 3679, + "state_code": "HUV", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.39490000", + "longitude": "-74.86687000" + }, + { + "id": "80768", + "name": "Provincia de Acobamba", + "state_id": 3679, + "state_code": "HUV", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.75000000", + "longitude": "-74.66667000" + }, + { + "id": "80773", + "name": "Provincia de Angaraes", + "state_id": 3679, + "state_code": "HUV", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.00000000", + "longitude": "-74.75000000" + }, + { + "id": "80799", + "name": "Provincia de Castrovirreyna", + "state_id": 3679, + "state_code": "HUV", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.14535000", + "longitude": "-75.40598000" + }, + { + "id": "80810", + "name": "Provincia de Churcampa", + "state_id": 3679, + "state_code": "HUV", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.60000000", + "longitude": "-74.52000000" + }, + { + "id": "80833", + "name": "Provincia de Huancavelica", + "state_id": 3679, + "state_code": "HUV", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.66667000", + "longitude": "-75.25000000" + }, + { + "id": "80903", + "name": "Provincia de Tayacaja", + "state_id": 3679, + "state_code": "HUV", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.25000000", + "longitude": "-74.75000000" + }, + { + "id": "80558", + "name": "Ambo", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.13083000", + "longitude": "-76.20472000" + }, + { + "id": "80646", + "name": "Huacaybamba", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.99480000", + "longitude": "-76.81027000" + }, + { + "id": "80665", + "name": "Huánuco", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.93062000", + "longitude": "-76.24223000" + }, + { + "id": "80691", + "name": "La Unión", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.82702000", + "longitude": "-76.80199000" + }, + { + "id": "80699", + "name": "Lauricocha", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.20055000", + "longitude": "-76.70359000" + }, + { + "id": "80703", + "name": "Llata", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.41667000", + "longitude": "-76.78333000" + }, + { + "id": "80771", + "name": "Provincia de Ambo", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.16667000", + "longitude": "-76.16667000" + }, + { + "id": "80821", + "name": "Provincia de Dos de Mayo", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.91667000", + "longitude": "-76.75000000" + }, + { + "id": "80828", + "name": "Provincia de Huamalíes", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.25000000", + "longitude": "-76.50000000" + }, + { + "id": "80842", + "name": "Provincia de Huánuco", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.66667000", + "longitude": "-76.08333000" + }, + { + "id": "80855", + "name": "Provincia de Leoncio Prado", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.16667000", + "longitude": "-76.00000000" + }, + { + "id": "80859", + "name": "Provincia de Marañón", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.75000000", + "longitude": "-76.66667000" + }, + { + "id": "80869", + "name": "Provincia de Pachitea", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.95262000", + "longitude": "-75.81390000" + }, + { + "id": "80917", + "name": "Puerto Inca", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.36696000", + "longitude": "-75.08958000" + }, + { + "id": "80952", + "name": "San Miguel de Cauri", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.13818000", + "longitude": "-76.62288000" + }, + { + "id": "80992", + "name": "Tingo María", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.29532000", + "longitude": "-75.99574000" + }, + { + "id": "81014", + "name": "Yanacancha", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.24111000", + "longitude": "-76.64556000" + }, + { + "id": "81016", + "name": "Yarowilca", + "state_id": 3687, + "state_code": "HUC", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.80263000", + "longitude": "-76.59516000" + }, + { + "id": "80616", + "name": "Chincha Alta", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.40985000", + "longitude": "-76.13235000" + }, + { + "id": "80667", + "name": "Ica", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.06777000", + "longitude": "-75.72861000" + }, + { + "id": "80706", + "name": "Los Aquijes", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.09667000", + "longitude": "-75.69083000" + }, + { + "id": "80714", + "name": "Minas de Marcona", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.21194000", + "longitude": "-75.11028000" + }, + { + "id": "80729", + "name": "Nazca", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.83098000", + "longitude": "-74.93895000" + }, + { + "id": "80747", + "name": "Palpa", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.53361000", + "longitude": "-75.18556000" + }, + { + "id": "80752", + "name": "Paracas", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.86667000", + "longitude": "-76.26667000" + }, + { + "id": "80764", + "name": "Pisco", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.71029000", + "longitude": "-76.20538000" + }, + { + "id": "80805", + "name": "Provincia de Chincha", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.31791000", + "longitude": "-75.93930000" + }, + { + "id": "80843", + "name": "Provincia de Ica", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.33861000", + "longitude": "-75.64833000" + }, + { + "id": "80865", + "name": "Provincia de Nazca", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.00000000", + "longitude": "-75.08333000" + }, + { + "id": "80872", + "name": "Provincia de Palpa", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.41667000", + "longitude": "-75.16667000" + }, + { + "id": "80878", + "name": "Provincia de Pisco", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.80377000", + "longitude": "-75.94264000" + }, + { + "id": "80935", + "name": "Río Grande", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.51600000", + "longitude": "-75.19933000" + }, + { + "id": "80943", + "name": "San Clemente", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.66667000", + "longitude": "-76.15000000" + }, + { + "id": "80949", + "name": "San Juan Bautista", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.01083000", + "longitude": "-75.73583000" + }, + { + "id": "80964", + "name": "Santiago", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.18469000", + "longitude": "-75.71124000" + }, + { + "id": "80978", + "name": "Subtanjalla", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.01889000", + "longitude": "-75.75806000" + }, + { + "id": "81009", + "name": "Villa Tupac Amaru", + "state_id": 3700, + "state_code": "ICA", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.71135000", + "longitude": "-76.14980000" + }, + { + "id": "80556", + "name": "Acolla", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.73193000", + "longitude": "-75.54634000" + }, + { + "id": "80591", + "name": "Carhuamayo", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.91667000", + "longitude": "-76.03333000" + }, + { + "id": "80604", + "name": "Chanchamayo", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.05000000", + "longitude": "-75.31667000" + }, + { + "id": "80625", + "name": "Chupaca", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.06667000", + "longitude": "-75.28333000" + }, + { + "id": "80630", + "name": "Concepción", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.91762000", + "longitude": "-75.31401000" + }, + { + "id": "80652", + "name": "Huancayo", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.06513000", + "longitude": "-75.20486000" + }, + { + "id": "80659", + "name": "Huasahuasi", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.26527000", + "longitude": "-75.64722000" + }, + { + "id": "80663", + "name": "Huayucachi", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.13333000", + "longitude": "-75.23333000" + }, + { + "id": "80674", + "name": "Jauja", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.77584000", + "longitude": "-75.49656000" + }, + { + "id": "80685", + "name": "Junín", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.15895000", + "longitude": "-75.99304000" + }, + { + "id": "80688", + "name": "La Oroya", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.51893000", + "longitude": "-75.89935000" + }, + { + "id": "80713", + "name": "Mazamari", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.32583000", + "longitude": "-74.53083000" + }, + { + "id": "80720", + "name": "Morococha", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.59972000", + "longitude": "-76.14111000" + }, + { + "id": "80734", + "name": "Orcotuna", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.96886000", + "longitude": "-75.30780000" + }, + { + "id": "80758", + "name": "Perené", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.94510000", + "longitude": "-75.22394000" + }, + { + "id": "80761", + "name": "Pilcomay", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.04722000", + "longitude": "-75.24931000" + }, + { + "id": "80809", + "name": "Provincia de Chupaca", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.30000000", + "longitude": "-75.43300000" + }, + { + "id": "80811", + "name": "Provincia de Concepción", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.75000000", + "longitude": "-75.00000000" + }, + { + "id": "80834", + "name": "Provincia de Huancayo", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.17319000", + "longitude": "-75.16169000" + }, + { + "id": "80846", + "name": "Provincia de Jauja", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.72600000", + "longitude": "-75.54700000" + }, + { + "id": "80848", + "name": "Provincia de Junín", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.08333000", + "longitude": "-76.00000000" + }, + { + "id": "80893", + "name": "Provincia de Satipo", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.50000000", + "longitude": "-74.25000000" + }, + { + "id": "80902", + "name": "Provincia de Tarma", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.40562000", + "longitude": "-75.69129000" + }, + { + "id": "80909", + "name": "Provincia de Yauli", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.66667000", + "longitude": "-76.16667000" + }, + { + "id": "80940", + "name": "San Agustin", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.97195000", + "longitude": "-75.25562000" + }, + { + "id": "80947", + "name": "San Jerónimo", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.95591000", + "longitude": "-75.28411000" + }, + { + "id": "80954", + "name": "San Pedro de Cajas", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.25061000", + "longitude": "-75.86116000" + }, + { + "id": "80956", + "name": "San Ramón", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.12417000", + "longitude": "-75.35733000" + }, + { + "id": "80970", + "name": "Satipo", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.25222000", + "longitude": "-74.63861000" + }, + { + "id": "80974", + "name": "Sicaya", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.03333000", + "longitude": "-75.28333000" + }, + { + "id": "80991", + "name": "Tarma", + "state_id": 3693, + "state_code": "JUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.41899000", + "longitude": "-75.68992000" + }, + { + "id": "80562", + "name": "Ascope", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.71444000", + "longitude": "-79.10778000" + }, + { + "id": "80595", + "name": "Cascas", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.48333000", + "longitude": "-78.81667000" + }, + { + "id": "80610", + "name": "Chepén", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.22436000", + "longitude": "-79.42476000" + }, + { + "id": "80609", + "name": "Chepen", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.14367000", + "longitude": "-79.45674000" + }, + { + "id": "80611", + "name": "Chicama", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.84472000", + "longitude": "-79.14694000" + }, + { + "id": "80620", + "name": "Chocope", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.79139000", + "longitude": "-79.22167000" + }, + { + "id": "80643", + "name": "Gran Chimu", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.57976000", + "longitude": "-78.64718000" + }, + { + "id": "80644", + "name": "Guadalupe", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.25000000", + "longitude": "-79.48333000" + }, + { + "id": "80649", + "name": "Huamachuco", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.80000000", + "longitude": "-78.06667000" + }, + { + "id": "80682", + "name": "Julcan", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.17238000", + "longitude": "-78.46356000" + }, + { + "id": "80697", + "name": "Laredo", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.08965000", + "longitude": "-78.96020000" + }, + { + "id": "80715", + "name": "Moche", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.17111000", + "longitude": "-79.00917000" + }, + { + "id": "80736", + "name": "Otuzco", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.90000000", + "longitude": "-78.58333000" + }, + { + "id": "80741", + "name": "Pacanga", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.16667000", + "longitude": "-79.50000000" + }, + { + "id": "80742", + "name": "Pacasmayo", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.40056000", + "longitude": "-79.57139000" + }, + { + "id": "80745", + "name": "Paiján", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.73291000", + "longitude": "-79.30150000" + }, + { + "id": "80783", + "name": "Provincia de Bolívar", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.33333000", + "longitude": "-77.75000000" + }, + { + "id": "80866", + "name": "Provincia de Otuzco", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.90457000", + "longitude": "-78.56362000" + }, + { + "id": "80868", + "name": "Provincia de Pacasmayo", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.25000000", + "longitude": "-79.50000000" + }, + { + "id": "80876", + "name": "Provincia de Pataz", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.25000000", + "longitude": "-77.33333000" + }, + { + "id": "80892", + "name": "Provincia de Santiago de Chuco", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.33333000", + "longitude": "-78.25000000" + }, + { + "id": "80904", + "name": "Provincia de Trujillo", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.08333000", + "longitude": "-78.91667000" + }, + { + "id": "80915", + "name": "Pueblo Nuevo", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.18806000", + "longitude": "-79.51528000" + }, + { + "id": "80931", + "name": "Quiruvilca", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.96667000", + "longitude": "-78.20000000" + }, + { + "id": "80936", + "name": "Salaverry", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.22100000", + "longitude": "-78.97698000" + }, + { + "id": "80955", + "name": "San Pedro de Lloc", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.42890000", + "longitude": "-79.50416000" + }, + { + "id": "80959", + "name": "Sanchez Carrion", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.78538000", + "longitude": "-77.92586000" + }, + { + "id": "80965", + "name": "Santiago de Cao", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.95889000", + "longitude": "-79.23917000" + }, + { + "id": "80966", + "name": "Santiago de Chuco", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.14099000", + "longitude": "-78.17329000" + }, + { + "id": "80998", + "name": "Trujillo", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.11599000", + "longitude": "-79.02998000" + }, + { + "id": "81011", + "name": "Virú", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.41554000", + "longitude": "-78.75201000" + }, + { + "id": "81010", + "name": "Viru", + "state_id": 3683, + "state_code": "LAL", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.52199000", + "longitude": "-78.60355000" + }, + { + "id": "80612", + "name": "Chiclayo", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.77137000", + "longitude": "-79.84088000" + }, + { + "id": "80621", + "name": "Chongoyape", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.64056000", + "longitude": "-79.38917000" + }, + { + "id": "80641", + "name": "Eten", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.90806000", + "longitude": "-79.86417000" + }, + { + "id": "80642", + "name": "Ferreñafe", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.63889000", + "longitude": "-79.78889000" + }, + { + "id": "80675", + "name": "Jayanca", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.39083000", + "longitude": "-79.82194000" + }, + { + "id": "80694", + "name": "Lambayeque", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.70111000", + "longitude": "-79.90611000" + }, + { + "id": "80728", + "name": "Mórrope", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.53536000", + "longitude": "-80.01104000" + }, + { + "id": "80716", + "name": "Mochumí", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.54364000", + "longitude": "-79.86217000" + }, + { + "id": "80718", + "name": "Monsefú", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.87431000", + "longitude": "-79.86871000" + }, + { + "id": "80725", + "name": "Motupe", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.15194000", + "longitude": "-79.71417000" + }, + { + "id": "80732", + "name": "Olmos", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.98472000", + "longitude": "-79.74528000" + }, + { + "id": "80739", + "name": "Oyotún", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.84438000", + "longitude": "-79.30093000" + }, + { + "id": "80760", + "name": "Picsi", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.71778000", + "longitude": "-79.76972000" + }, + { + "id": "80762", + "name": "Pimentel", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.83667000", + "longitude": "-79.93417000" + }, + { + "id": "80804", + "name": "Provincia de Chiclayo", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.76667000", + "longitude": "-79.85000000" + }, + { + "id": "80823", + "name": "Provincia de Ferreñafe", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.33333000", + "longitude": "-79.50000000" + }, + { + "id": "80853", + "name": "Provincia de Lambayeque", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.08333000", + "longitude": "-80.08333000" + }, + { + "id": "80916", + "name": "Pueblo Nuevo", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.71667000", + "longitude": "-79.88333000" + }, + { + "id": "80932", + "name": "Reque", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.86556000", + "longitude": "-79.81778000" + }, + { + "id": "80972", + "name": "Saña", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.91888000", + "longitude": "-79.58200000" + }, + { + "id": "80948", + "name": "San José", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.73813000", + "longitude": "-79.82750000" + }, + { + "id": "80963", + "name": "Santa Rosa", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.75772000", + "longitude": "-79.82747000" + }, + { + "id": "81001", + "name": "Túcume", + "state_id": 3702, + "state_code": "LAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.50637000", + "longitude": "-79.85725000" + }, + { + "id": "80563", + "name": "Asentamiento Humano Nicolas de Pierola", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.93573000", + "longitude": "-76.70611000" + }, + { + "id": "80574", + "name": "Barranca", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.75000000", + "longitude": "-77.76667000" + }, + { + "id": "80585", + "name": "Caleta de Carquín", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.09250000", + "longitude": "-77.62667000" + }, + { + "id": "80603", + "name": "Chancay", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.57139000", + "longitude": "-77.26722000" + }, + { + "id": "80614", + "name": "Chilca", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.52111000", + "longitude": "-76.73722000" + }, + { + "id": "80622", + "name": "Chosica", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.94306000", + "longitude": "-76.70944000" + }, + { + "id": "80647", + "name": "Huacho", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.10667000", + "longitude": "-77.60500000" + }, + { + "id": "80648", + "name": "Hualmay", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.09639000", + "longitude": "-77.61389000" + }, + { + "id": "80654", + "name": "Huaral", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.49500000", + "longitude": "-77.20778000" + }, + { + "id": "80660", + "name": "Huaura", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.07000000", + "longitude": "-77.59944000" + }, + { + "id": "80671", + "name": "Imperial", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.05927000", + "longitude": "-76.35269000" + }, + { + "id": "80672", + "name": "Independencia", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.99000000", + "longitude": "-77.04583000" + }, + { + "id": "80708", + "name": "Mala", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.65806000", + "longitude": "-76.63083000" + }, + { + "id": "80712", + "name": "Matucana", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.85000000", + "longitude": "-76.40000000" + }, + { + "id": "80730", + "name": "Nuevo Imperial", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.07541000", + "longitude": "-76.31719000" + }, + { + "id": "80740", + "name": "Oyón", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.66846000", + "longitude": "-76.77165000" + }, + { + "id": "80738", + "name": "Oyon", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.75869000", + "longitude": "-76.87634000" + }, + { + "id": "80753", + "name": "Paramonga", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.66667000", + "longitude": "-77.83333000" + }, + { + "id": "80754", + "name": "Pativilca", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.70000000", + "longitude": "-77.78333000" + }, + { + "id": "80801", + "name": "Provincia de Cañete", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.75000000", + "longitude": "-76.33333000" + }, + { + "id": "80787", + "name": "Provincia de Cajatambo", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.66667000", + "longitude": "-77.00000000" + }, + { + "id": "80793", + "name": "Provincia de Canta", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.46667000", + "longitude": "-76.61667000" + }, + { + "id": "80836", + "name": "Provincia de Huaral", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.25000000", + "longitude": "-76.91667000" + }, + { + "id": "80840", + "name": "Provincia de Huarochirí", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.91667000", + "longitude": "-76.41667000" + }, + { + "id": "80910", + "name": "Provincia de Yauyos", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.41667000", + "longitude": "-76.00000000" + }, + { + "id": "80920", + "name": "Puerto Supe", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.80135000", + "longitude": "-77.74333000" + }, + { + "id": "80930", + "name": "Quilmaná", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.94860000", + "longitude": "-76.38112000" + }, + { + "id": "80933", + "name": "Ricardo Palma", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.91978000", + "longitude": "-76.65610000" + }, + { + "id": "80942", + "name": "San Bartolo", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.38333000", + "longitude": "-76.78333000" + }, + { + "id": "80945", + "name": "San Isidro", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.11667000", + "longitude": "-77.05000000" + }, + { + "id": "80950", + "name": "San Luis", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.07674000", + "longitude": "-76.99435000" + }, + { + "id": "80958", + "name": "San Vicente de Cañete", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.07556000", + "longitude": "-76.38528000" + }, + { + "id": "80962", + "name": "Santa María", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.00538000", + "longitude": "-76.89329000" + }, + { + "id": "80967", + "name": "Santiago de Surco", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.13588000", + "longitude": "-77.00742000" + }, + { + "id": "80971", + "name": "Sayán", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.13333000", + "longitude": "-77.19460000" + }, + { + "id": "80980", + "name": "Supe", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.79750000", + "longitude": "-77.71306000" + }, + { + "id": "81003", + "name": "Urb. Santo Domingo", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.87655000", + "longitude": "-77.03345000" + }, + { + "id": "81013", + "name": "Végueta", + "state_id": 3695, + "state_code": "LIM", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.02253000", + "longitude": "-77.64378000" + }, + { + "id": "80701", + "name": "Lima", + "state_id": 3690, + "state_code": "LMA", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.04318000", + "longitude": "-77.02824000" + }, + { + "id": "80666", + "name": "Iberia", + "state_id": 3678, + "state_code": "MDD", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.35000000", + "longitude": "-69.58333000" + }, + { + "id": "80858", + "name": "Provincia de Manú", + "state_id": 3678, + "state_code": "MDD", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.25000000", + "longitude": "-71.00000000" + }, + { + "id": "80898", + "name": "Provincia de Tahuamanú", + "state_id": 3678, + "state_code": "MDD", + "country_id": 173, + "country_code": "PE", + "latitude": "-11.25000000", + "longitude": "-70.50000000" + }, + { + "id": "80900", + "name": "Provincia de Tambopata", + "state_id": 3678, + "state_code": "MDD", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.19948000", + "longitude": "-70.05006000" + }, + { + "id": "80918", + "name": "Puerto Maldonado", + "state_id": 3678, + "state_code": "MDD", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.59331000", + "longitude": "-69.18913000" + }, + { + "id": "80939", + "name": "Salvación", + "state_id": 3678, + "state_code": "MDD", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.83605000", + "longitude": "-71.36490000" + }, + { + "id": "80987", + "name": "Tambopata", + "state_id": 3678, + "state_code": "MDD", + "country_id": 173, + "country_code": "PE", + "latitude": "-12.67191000", + "longitude": "-69.35547000" + }, + { + "id": "80670", + "name": "Ilo", + "state_id": 3698, + "state_code": "MOQ", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.63185000", + "longitude": "-71.34108000" + }, + { + "id": "80719", + "name": "Moquegua", + "state_id": 3698, + "state_code": "MOQ", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.19832000", + "longitude": "-70.93567000" + }, + { + "id": "80743", + "name": "Pacocha", + "state_id": 3698, + "state_code": "MOQ", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.64604000", + "longitude": "-71.34481000" + }, + { + "id": "80824", + "name": "Provincia de General Sánchez Cerro", + "state_id": 3698, + "state_code": "MOQ", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.50000000", + "longitude": "-70.66667000" + }, + { + "id": "80844", + "name": "Provincia de Ilo", + "state_id": 3698, + "state_code": "MOQ", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.49694000", + "longitude": "-71.16722000" + }, + { + "id": "80862", + "name": "Provincia de Mariscal Nieto", + "state_id": 3698, + "state_code": "MOQ", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.08361000", + "longitude": "-71.00333000" + }, + { + "id": "80996", + "name": "Torata", + "state_id": 3698, + "state_code": "MOQ", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.07694000", + "longitude": "-70.84333000" + }, + { + "id": "80601", + "name": "Cerro de Pasco", + "state_id": 3686, + "state_code": "PAS", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.66748000", + "longitude": "-76.25668000" + }, + { + "id": "80605", + "name": "Chaupimarca", + "state_id": 3686, + "state_code": "PAS", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.40696000", + "longitude": "-76.46168000" + }, + { + "id": "80737", + "name": "Oxapampa", + "state_id": 3686, + "state_code": "PAS", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.57750000", + "longitude": "-75.40167000" + }, + { + "id": "80757", + "name": "Paucartambo", + "state_id": 3686, + "state_code": "PAS", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.77326000", + "longitude": "-75.81109000" + }, + { + "id": "80820", + "name": "Provincia de Daniel Carrión", + "state_id": 3686, + "state_code": "PAS", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.50000000", + "longitude": "-76.50000000" + }, + { + "id": "80867", + "name": "Provincia de Oxapampa", + "state_id": 3686, + "state_code": "PAS", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.33333000", + "longitude": "-75.08333000" + }, + { + "id": "80875", + "name": "Provincia de Pasco", + "state_id": 3686, + "state_code": "PAS", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.66667000", + "longitude": "-76.08333000" + }, + { + "id": "80994", + "name": "Tinyahuarco", + "state_id": 3686, + "state_code": "PAS", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.76771000", + "longitude": "-76.27523000" + }, + { + "id": "81008", + "name": "Villa Rica", + "state_id": 3686, + "state_code": "PAS", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.73944000", + "longitude": "-75.26972000" + }, + { + "id": "80567", + "name": "Ayabaca", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.63983000", + "longitude": "-79.71491000" + }, + { + "id": "80577", + "name": "Bernal", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.45000000", + "longitude": "-80.75000000" + }, + { + "id": "80578", + "name": "Buenos Aires", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.26083000", + "longitude": "-79.96417000" + }, + { + "id": "80596", + "name": "Catacaos", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.26667000", + "longitude": "-80.68333000" + }, + { + "id": "80624", + "name": "Chulucanas", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.09250000", + "longitude": "-80.16250000" + }, + { + "id": "80638", + "name": "El Alto", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.26851000", + "longitude": "-81.21719000" + }, + { + "id": "80650", + "name": "Huancabamba", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.23861000", + "longitude": "-79.45056000" + }, + { + "id": "80686", + "name": "La Breita", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.25691000", + "longitude": "-80.88599000" + }, + { + "id": "80687", + "name": "La Huaca", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.91167000", + "longitude": "-80.96000000" + }, + { + "id": "80692", + "name": "La Unión", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.40232000", + "longitude": "-80.74224000" + }, + { + "id": "80698", + "name": "Las Lomas", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.65333000", + "longitude": "-80.24667000" + }, + { + "id": "80711", + "name": "Marcavelica", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.87778000", + "longitude": "-80.70528000" + }, + { + "id": "80727", + "name": "Máncora", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.10778000", + "longitude": "-81.04750000" + }, + { + "id": "80722", + "name": "Morropón", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.18680000", + "longitude": "-79.97076000" + }, + { + "id": "80721", + "name": "Morropon", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.25000000", + "longitude": "-80.00000000" + }, + { + "id": "80746", + "name": "Paita", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.08917000", + "longitude": "-81.11444000" + }, + { + "id": "80765", + "name": "Piura", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.19449000", + "longitude": "-80.63282000" + }, + { + "id": "80778", + "name": "Provincia de Ayabaca", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.75000000", + "longitude": "-79.83333000" + }, + { + "id": "80831", + "name": "Provincia de Huancabamba", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.50000000", + "longitude": "-79.58333000" + }, + { + "id": "80870", + "name": "Provincia de Paita", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.10189000", + "longitude": "-81.09695000" + }, + { + "id": "80879", + "name": "Provincia de Piura", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.21416000", + "longitude": "-80.40617000" + }, + { + "id": "80896", + "name": "Provincia de Sullana", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.50000000", + "longitude": "-80.66667000" + }, + { + "id": "80899", + "name": "Provincia de Talara", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.41667000", + "longitude": "-81.08333000" + }, + { + "id": "80927", + "name": "Querecotillo", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.83778000", + "longitude": "-80.64556000" + }, + { + "id": "80937", + "name": "Salinera Colán", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.03333000", + "longitude": "-81.06667000" + }, + { + "id": "80938", + "name": "Salitral", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.85722000", + "longitude": "-80.68111000" + }, + { + "id": "80973", + "name": "Sechura", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.55694000", + "longitude": "-80.82222000" + }, + { + "id": "80979", + "name": "Sullana", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.90389000", + "longitude": "-80.68528000" + }, + { + "id": "80983", + "name": "Talara", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.57722000", + "longitude": "-81.27194000" + }, + { + "id": "80986", + "name": "Tambo Grande", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.92694000", + "longitude": "-80.34472000" + }, + { + "id": "81007", + "name": "Vice", + "state_id": 3697, + "state_code": "PIU", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.41667000", + "longitude": "-80.78333000" + }, + { + "id": "80566", + "name": "Atuncolla", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.68333000", + "longitude": "-70.15000000" + }, + { + "id": "80569", + "name": "Ayaviri", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.88639000", + "longitude": "-70.58889000" + }, + { + "id": "80571", + "name": "Azángaro", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.90843000", + "longitude": "-70.19616000" + }, + { + "id": "81023", + "name": "Ñuñoa", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.47788000", + "longitude": "-70.63583000" + }, + { + "id": "80637", + "name": "Desaguadero", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.56556000", + "longitude": "-69.04167000" + }, + { + "id": "80639", + "name": "El Collao", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.72641000", + "longitude": "-69.75515000" + }, + { + "id": "80645", + "name": "Hacienda Huancane", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.82327000", + "longitude": "-70.88540000" + }, + { + "id": "80669", + "name": "Ilave", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.08333000", + "longitude": "-69.66667000" + }, + { + "id": "80683", + "name": "Juli", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.21667000", + "longitude": "-69.45000000" + }, + { + "id": "80684", + "name": "Juliaca", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.50000000", + "longitude": "-70.13333000" + }, + { + "id": "80690", + "name": "La Rinconada", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.63126000", + "longitude": "-69.44638000" + }, + { + "id": "80695", + "name": "Lampa", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.35000000", + "longitude": "-70.36667000" + }, + { + "id": "80707", + "name": "Macusani", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.08333000", + "longitude": "-70.43333000" + }, + { + "id": "80780", + "name": "Provincia de Azángaro", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.83333000", + "longitude": "-70.16667000" + }, + { + "id": "80794", + "name": "Provincia de Carabaya", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.83333000", + "longitude": "-70.25000000" + }, + { + "id": "80807", + "name": "Provincia de Chucuito", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.60545000", + "longitude": "-69.35761000" + }, + { + "id": "80832", + "name": "Provincia de Huancané", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.16667000", + "longitude": "-69.58333000" + }, + { + "id": "80854", + "name": "Provincia de Lampa", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.41667000", + "longitude": "-70.58333000" + }, + { + "id": "80863", + "name": "Provincia de Melgar", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.75000000", + "longitude": "-70.75000000" + }, + { + "id": "80881", + "name": "Provincia de Puno", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.00000000", + "longitude": "-70.00000000" + }, + { + "id": "80889", + "name": "Provincia de Sandia", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-13.83333000", + "longitude": "-69.33333000" + }, + { + "id": "80922", + "name": "Puno", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.84220000", + "longitude": "-70.01990000" + }, + { + "id": "80941", + "name": "San Antonio De Putina", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-14.71175000", + "longitude": "-69.61559000" + }, + { + "id": "80957", + "name": "San Roman", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.83333000", + "longitude": "-70.50000000" + }, + { + "id": "80961", + "name": "Santa Lucía", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.69788000", + "longitude": "-70.60610000" + }, + { + "id": "80988", + "name": "Taquile", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-15.76667000", + "longitude": "-69.68333000" + }, + { + "id": "81019", + "name": "Yunguyo", + "state_id": 3682, + "state_code": "PUN", + "country_id": 173, + "country_code": "PE", + "latitude": "-16.25000000", + "longitude": "-69.08333000" + }, + { + "id": "80576", + "name": "Bellavista", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.05614000", + "longitude": "-76.59110000" + }, + { + "id": "80606", + "name": "Chazuta", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.57087000", + "longitude": "-76.13753000" + }, + { + "id": "80640", + "name": "El Dorado", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.56298000", + "longitude": "-76.74130000" + }, + { + "id": "80664", + "name": "Huicungo", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.31860000", + "longitude": "-76.77556000" + }, + { + "id": "80679", + "name": "Jepelacio", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.11667000", + "longitude": "-76.95000000" + }, + { + "id": "80681", + "name": "Juanjuí", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.17697000", + "longitude": "-76.72774000" + }, + { + "id": "80693", + "name": "Lamas", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.41667000", + "longitude": "-76.53333000" + }, + { + "id": "80726", + "name": "Moyobamba", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.03416000", + "longitude": "-76.97168000" + }, + { + "id": "80759", + "name": "Picota", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.92033000", + "longitude": "-76.33142000" + }, + { + "id": "80827", + "name": "Provincia de Huallaga", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.75664000", + "longitude": "-76.90143000" + }, + { + "id": "80852", + "name": "Provincia de Lamas", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.33333000", + "longitude": "-76.66667000" + }, + { + "id": "80860", + "name": "Provincia de Mariscal Cáceres", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-7.27390000", + "longitude": "-77.18216000" + }, + { + "id": "80864", + "name": "Provincia de Moyobamba", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-5.75000000", + "longitude": "-77.25000000" + }, + { + "id": "80884", + "name": "Provincia de Rioja", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.00000000", + "longitude": "-77.41667000" + }, + { + "id": "80887", + "name": "Provincia de San Martín", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.58333000", + "longitude": "-76.16667000" + }, + { + "id": "80934", + "name": "Rioja", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.05675000", + "longitude": "-77.16651000" + }, + { + "id": "80969", + "name": "Saposoa", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.93395000", + "longitude": "-76.77158000" + }, + { + "id": "80976", + "name": "Sisa", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.61085000", + "longitude": "-76.69302000" + }, + { + "id": "80977", + "name": "Soritor", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.13917000", + "longitude": "-77.10389000" + }, + { + "id": "80981", + "name": "Tabalosos", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.35000000", + "longitude": "-76.68333000" + }, + { + "id": "80989", + "name": "Tarapoto", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-6.50139000", + "longitude": "-76.36556000" + }, + { + "id": "80995", + "name": "Tocache", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.18770000", + "longitude": "-76.52046000" + }, + { + "id": "81002", + "name": "Uchiza", + "state_id": 3694, + "state_code": "SAM", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.45917000", + "longitude": "-76.46333000" + }, + { + "id": "80583", + "name": "Calana", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.94167000", + "longitude": "-70.18694000" + }, + { + "id": "80590", + "name": "Candarave", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.26778000", + "longitude": "-70.24944000" + }, + { + "id": "80618", + "name": "Chipispaya", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.49790000", + "longitude": "-70.21714000" + }, + { + "id": "80626", + "name": "Chuquitira", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.28891000", + "longitude": "-70.04363000" + }, + { + "id": "80668", + "name": "Ilabaya", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.42083000", + "longitude": "-70.51333000" + }, + { + "id": "80680", + "name": "Jorge Basadre", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.57919000", + "longitude": "-70.73083000" + }, + { + "id": "80897", + "name": "Provincia de Tacna", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.83333000", + "longitude": "-70.50000000" + }, + { + "id": "80901", + "name": "Provincia de Tarata", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.41667000", + "longitude": "-70.08333000" + }, + { + "id": "80921", + "name": "Pujocucho", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.15778000", + "longitude": "-70.35222000" + }, + { + "id": "80929", + "name": "Quilahuani", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.31778000", + "longitude": "-70.25806000" + }, + { + "id": "80982", + "name": "Tacna", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-18.01465000", + "longitude": "-70.25362000" + }, + { + "id": "80990", + "name": "Tarata", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.47444000", + "longitude": "-70.03278000" + }, + { + "id": "80997", + "name": "Totoral", + "state_id": 3696, + "state_code": "TAC", + "country_id": 173, + "country_code": "PE", + "latitude": "-17.40620000", + "longitude": "-70.36464000" + }, + { + "id": "80557", + "name": "Aguas Verdes", + "state_id": 3689, + "state_code": "TUM", + "country_id": 173, + "country_code": "PE", + "latitude": "-3.48139000", + "longitude": "-80.24500000" + }, + { + "id": "80751", + "name": "Papayal", + "state_id": 3689, + "state_code": "TUM", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.07771000", + "longitude": "-80.73690000" + }, + { + "id": "80813", + "name": "Provincia de Contralmirante Villar", + "state_id": 3689, + "state_code": "TUM", + "country_id": 173, + "country_code": "PE", + "latitude": "-4.00000000", + "longitude": "-80.75000000" + }, + { + "id": "80905", + "name": "Provincia de Tumbes", + "state_id": 3689, + "state_code": "TUM", + "country_id": 173, + "country_code": "PE", + "latitude": "-3.75000000", + "longitude": "-80.41667000" + }, + { + "id": "80912", + "name": "Provincia de Zarumilla", + "state_id": 3689, + "state_code": "TUM", + "country_id": 173, + "country_code": "PE", + "latitude": "-3.66667000", + "longitude": "-80.25000000" + }, + { + "id": "80999", + "name": "Tumbes", + "state_id": 3689, + "state_code": "TUM", + "country_id": 173, + "country_code": "PE", + "latitude": "-3.56694000", + "longitude": "-80.45153000" + }, + { + "id": "81021", + "name": "Zarumilla", + "state_id": 3689, + "state_code": "TUM", + "country_id": 173, + "country_code": "PE", + "latitude": "-3.50306000", + "longitude": "-80.27306000" + }, + { + "id": "81022", + "name": "Zorritos", + "state_id": 3689, + "state_code": "TUM", + "country_id": 173, + "country_code": "PE", + "latitude": "-3.68046000", + "longitude": "-80.67819000" + }, + { + "id": "80565", + "name": "Atalaya", + "state_id": 3684, + "state_code": "UCA", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.38980000", + "longitude": "-73.21977000" + }, + { + "id": "80589", + "name": "Campoverde", + "state_id": 3684, + "state_code": "UCA", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.47533000", + "longitude": "-74.80709000" + }, + { + "id": "80744", + "name": "Padre Abad", + "state_id": 3684, + "state_code": "UCA", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.79680000", + "longitude": "-75.42850000" + }, + { + "id": "80815", + "name": "Provincia de Coronel Portillo", + "state_id": 3684, + "state_code": "UCA", + "country_id": 173, + "country_code": "PE", + "latitude": "-9.50000000", + "longitude": "-73.33333000" + }, + { + "id": "80913", + "name": "Pucallpa", + "state_id": 3684, + "state_code": "UCA", + "country_id": 173, + "country_code": "PE", + "latitude": "-8.37915000", + "longitude": "-74.55387000" + }, + { + "id": "80925", + "name": "Purus", + "state_id": 3684, + "state_code": "UCA", + "country_id": 173, + "country_code": "PE", + "latitude": "-10.37331000", + "longitude": "-71.58231000" + }, + { + "id": "81125", + "name": "Aanislag", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.07480000", + "longitude": "123.70300000" + }, + { + "id": "81134", + "name": "Abucay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.98200000", + "longitude": "123.64920000" + }, + { + "id": "81139", + "name": "Abuyog", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.94610000", + "longitude": "124.05190000" + }, + { + "id": "81164", + "name": "Agos", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.34340000", + "longitude": "123.39830000" + }, + { + "id": "81167", + "name": "Aguada", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.81667000", + "longitude": "123.83333000" + }, + { + "id": "81171", + "name": "Agupit", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.42250000", + "longitude": "123.32472000" + }, + { + "id": "81191", + "name": "Alayao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.28180000", + "longitude": "122.55240000" + }, + { + "id": "81284", + "name": "Antipolo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.52860000", + "longitude": "123.16220000" + }, + { + "id": "81287", + "name": "Anuling", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.20930000", + "longitude": "123.67610000" + }, + { + "id": "81290", + "name": "Apad", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.81500000", + "longitude": "122.76640000" + }, + { + "id": "81299", + "name": "Apud", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.13928000", + "longitude": "123.29164000" + }, + { + "id": "81315", + "name": "Armenia", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.25324000", + "longitude": "123.74361000" + }, + { + "id": "81317", + "name": "Aroroy", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.51110000", + "longitude": "123.39770000" + }, + { + "id": "81341", + "name": "Ayugan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.54690000", + "longitude": "123.32170000" + }, + { + "id": "81345", + "name": "Baao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.45490000", + "longitude": "123.36530000" + }, + { + "id": "81352", + "name": "Bacacay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.29340000", + "longitude": "123.79190000" + }, + { + "id": "81363", + "name": "Bacolod", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.22854000", + "longitude": "123.50851000" + }, + { + "id": "81368", + "name": "Bacon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.03778000", + "longitude": "124.04111000" + }, + { + "id": "81380", + "name": "Badian", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.03167000", + "longitude": "123.30778000" + }, + { + "id": "81387", + "name": "Bagacay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.98210000", + "longitude": "124.14150000" + }, + { + "id": "81388", + "name": "Bagahanlad", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.57970000", + "longitude": "123.66880000" + }, + { + "id": "81391", + "name": "Bagamanoc", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.94040000", + "longitude": "124.28962000" + }, + { + "id": "81411", + "name": "Bagumbayan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.45000000", + "longitude": "123.66667000" + }, + { + "id": "81416", + "name": "Bahay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.54370000", + "longitude": "123.04070000" + }, + { + "id": "81432", + "name": "Balading", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.39060000", + "longitude": "123.71210000" + }, + { + "id": "81448", + "name": "Balaogan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.43280000", + "longitude": "123.28180000" + }, + { + "id": "81453", + "name": "Balatan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.32111000", + "longitude": "123.23333000" + }, + { + "id": "81460", + "name": "Baleno", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.47390000", + "longitude": "123.49820000" + }, + { + "id": "81464", + "name": "Balete", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.01917000", + "longitude": "124.03194000" + }, + { + "id": "81468", + "name": "Baligang", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.15370000", + "longitude": "123.64320000" + }, + { + "id": "81473", + "name": "Balinad", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.29260000", + "longitude": "123.54540000" + }, + { + "id": "81486", + "name": "Baliuag Nuevo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.52140000", + "longitude": "123.20160000" + }, + { + "id": "81495", + "name": "Balogo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.28710000", + "longitude": "123.54960000" + }, + { + "id": "81499", + "name": "Balucawi", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.20130000", + "longitude": "123.84260000" + }, + { + "id": "81503", + "name": "Balud", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.03686000", + "longitude": "123.19351000" + }, + { + "id": "81513", + "name": "Banag", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.37889000", + "longitude": "123.70333000" + }, + { + "id": "81524", + "name": "Bangad", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.16125000", + "longitude": "123.40131000" + }, + { + "id": "81532", + "name": "Bangkirohan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.05530000", + "longitude": "123.74680000" + }, + { + "id": "81543", + "name": "Banocboc", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.30000000", + "longitude": "122.58333000" + }, + { + "id": "81560", + "name": "Bao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.64140000", + "longitude": "122.83140000" + }, + { + "id": "81566", + "name": "Baras", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.65880000", + "longitude": "124.37000000" + }, + { + "id": "81569", + "name": "Barayong", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.10000000", + "longitude": "123.71667000" + }, + { + "id": "81573", + "name": "Barcelona", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.86830000", + "longitude": "124.14190000" + }, + { + "id": "81576", + "name": "Bariw", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.13333000", + "longitude": "123.73333000" + }, + { + "id": "81586", + "name": "Barra", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.07170000", + "longitude": "123.63950000" + }, + { + "id": "81597", + "name": "Bascaron", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.10290000", + "longitude": "123.69990000" + }, + { + "id": "81601", + "name": "Basiad", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.15617000", + "longitude": "122.33749000" + }, + { + "id": "81604", + "name": "Basicao Coastal", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.04589000", + "longitude": "123.40423000" + }, + { + "id": "81608", + "name": "Basud", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.06500000", + "longitude": "122.96420000" + }, + { + "id": "81614", + "name": "Batana", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.24980000", + "longitude": "123.56410000" + }, + { + "id": "81625", + "name": "Bato", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.35280000", + "longitude": "123.36770000" + }, + { + "id": "81632", + "name": "Batobalane", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.23333000", + "longitude": "122.75000000" + }, + { + "id": "81637", + "name": "Batuan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.39760000", + "longitude": "123.76279000" + }, + { + "id": "81663", + "name": "Baybay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.40830000", + "longitude": "123.71350000" + }, + { + "id": "81672", + "name": "Beberon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.54440000", + "longitude": "123.14050000" + }, + { + "id": "81694", + "name": "Bigaa", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.19930000", + "longitude": "123.75660000" + }, + { + "id": "81714", + "name": "Binanwanaan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.70000000", + "longitude": "123.30000000" + }, + { + "id": "81721", + "name": "Binitayan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.29450000", + "longitude": "123.75790000" + }, + { + "id": "81725", + "name": "Binodegahan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.06140000", + "longitude": "123.45790000" + }, + { + "id": "81776", + "name": "Bolo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.75300000", + "longitude": "122.96580000" + }, + { + "id": "81782", + "name": "Bombon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.68870000", + "longitude": "123.20770000" + }, + { + "id": "81787", + "name": "Bonga", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.27990000", + "longitude": "123.75870000" + }, + { + "id": "81805", + "name": "Boton", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.92870000", + "longitude": "124.04790000" + }, + { + "id": "81819", + "name": "Buang", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.31150000", + "longitude": "123.64210000" + }, + { + "id": "81833", + "name": "Buenavista", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.17639000", + "longitude": "123.79056000" + }, + { + "id": "81837", + "name": "Buga", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.29660000", + "longitude": "123.35960000" + }, + { + "id": "81853", + "name": "Buhatan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.97550000", + "longitude": "124.04780000" + }, + { + "id": "81854", + "name": "Buhi", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.43220000", + "longitude": "123.51700000" + }, + { + "id": "81860", + "name": "Bula", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.47010000", + "longitude": "123.27800000" + }, + { + "id": "81866", + "name": "Bulan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.67139000", + "longitude": "123.87500000" + }, + { + "id": "81881", + "name": "Bulo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.41090000", + "longitude": "123.56720000" + }, + { + "id": "81887", + "name": "Buluang", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.30680000", + "longitude": "123.34250000" + }, + { + "id": "81890", + "name": "Bulusan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.74936000", + "longitude": "124.12087000" + }, + { + "id": "81902", + "name": "Burabod", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.26860000", + "longitude": "123.41620000" + }, + { + "id": "81903", + "name": "Buracan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.60000000", + "longitude": "123.50000000" + }, + { + "id": "81918", + "name": "Busing", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.15139000", + "longitude": "122.97139000" + }, + { + "id": "81921", + "name": "Butag", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.62920000", + "longitude": "123.93350000" + }, + { + "id": "81930", + "name": "Buyo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.11440000", + "longitude": "123.86660000" + }, + { + "id": "81963", + "name": "Cabcab", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.62680000", + "longitude": "124.05150000" + }, + { + "id": "81966", + "name": "Cabiguan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.90583000", + "longitude": "123.73139000" + }, + { + "id": "81971", + "name": "Cabitan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.29434000", + "longitude": "123.34121000" + }, + { + "id": "81975", + "name": "Cabognon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.18290000", + "longitude": "123.67770000" + }, + { + "id": "81980", + "name": "Cabugao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.59620000", + "longitude": "124.28040000" + }, + { + "id": "81985", + "name": "Cabusao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.72270000", + "longitude": "123.11690000" + }, + { + "id": "81988", + "name": "Caditaan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.80528000", + "longitude": "123.84917000" + }, + { + "id": "81990", + "name": "Cadlan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.59710000", + "longitude": "123.25700000" + }, + { + "id": "81998", + "name": "Cagmanaba", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.05501000", + "longitude": "123.29706000" + }, + { + "id": "82008", + "name": "Calabaca", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.30010000", + "longitude": "122.43364000" + }, + { + "id": "82009", + "name": "Calabanga", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.70680000", + "longitude": "123.20870000" + }, + { + "id": "82013", + "name": "Calachuchi", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.21775000", + "longitude": "123.53061000" + }, + { + "id": "82033", + "name": "Calasgasan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.08333000", + "longitude": "122.93333000" + }, + { + "id": "82035", + "name": "Calatagan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.58850000", + "longitude": "124.20650000" + }, + { + "id": "82062", + "name": "Calolbon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.59600000", + "longitude": "124.09910000" + }, + { + "id": "82079", + "name": "Camalig", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.18210000", + "longitude": "123.65430000" + }, + { + "id": "82080", + "name": "Camaligan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.62240000", + "longitude": "123.16670000" + }, + { + "id": "82100", + "name": "Canaman", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.64800000", + "longitude": "123.16990000" + }, + { + "id": "82120", + "name": "Canomoy", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.15735000", + "longitude": "123.27011000" + }, + { + "id": "82135", + "name": "Capalonga", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.33060000", + "longitude": "122.49370000" + }, + { + "id": "82141", + "name": "Capucnasan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.60000000", + "longitude": "123.21667000" + }, + { + "id": "82145", + "name": "Capuy", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.98333000", + "longitude": "123.93333000" + }, + { + "id": "82150", + "name": "Caramoan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.77070000", + "longitude": "123.86310000" + }, + { + "id": "82151", + "name": "Caramoran", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.98490000", + "longitude": "124.13470000" + }, + { + "id": "82153", + "name": "Caranan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.51670000", + "longitude": "123.01560000" + }, + { + "id": "82156", + "name": "Caraycayon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.61667000", + "longitude": "123.48333000" + }, + { + "id": "82182", + "name": "Carriedo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.93440000", + "longitude": "124.10500000" + }, + { + "id": "82192", + "name": "Casiguran", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.87361000", + "longitude": "124.00972000" + }, + { + "id": "82196", + "name": "Castilla", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.94861000", + "longitude": "123.88222000" + }, + { + "id": "82198", + "name": "Castillo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.73130000", + "longitude": "123.11660000" + }, + { + "id": "82200", + "name": "Catabangan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87770000", + "longitude": "122.66150000" + }, + { + "id": "82202", + "name": "Cataingan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.00300000", + "longitude": "123.99200000" + }, + { + "id": "82223", + "name": "Causip", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.51590000", + "longitude": "123.28340000" + }, + { + "id": "82250", + "name": "Claveria", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.90350000", + "longitude": "123.24570000" + }, + { + "id": "82304", + "name": "Cotmon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.11750000", + "longitude": "123.66370000" + }, + { + "id": "82310", + "name": "Culacling", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.78150000", + "longitude": "122.87670000" + }, + { + "id": "82319", + "name": "Cumadcad", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.98056000", + "longitude": "123.78917000" + }, + { + "id": "82321", + "name": "Curry", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.60000000", + "longitude": "123.30000000" + }, + { + "id": "82331", + "name": "Daet", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.11220000", + "longitude": "122.95530000" + }, + { + "id": "82336", + "name": "Daguit", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18950000", + "longitude": "122.72660000" + }, + { + "id": "82354", + "name": "Dalupaon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.55170000", + "longitude": "122.94570000" + }, + { + "id": "82369", + "name": "Dangcalan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.91680000", + "longitude": "123.58380000" + }, + { + "id": "82378", + "name": "Dapdap", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.21550000", + "longitude": "123.76620000" + }, + { + "id": "82382", + "name": "Daraga", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.14830000", + "longitude": "123.71240000" + }, + { + "id": "82406", + "name": "Del Gallego", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.92230000", + "longitude": "122.59540000" + }, + { + "id": "82412", + "name": "Del Rosario", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.30570000", + "longitude": "123.31330000" + }, + { + "id": "82429", + "name": "Dimasalang", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.19230000", + "longitude": "123.85920000" + }, + { + "id": "82460", + "name": "Donsol", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.90550000", + "longitude": "123.59490000" + }, + { + "id": "82471", + "name": "Dugcal", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.62410000", + "longitude": "123.16120000" + }, + { + "id": "82472", + "name": "Dugongan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.10250000", + "longitude": "122.90660000" + }, + { + "id": "82522", + "name": "Esperanza", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "11.73650000", + "longitude": "124.04200000" + }, + { + "id": "82528", + "name": "Estancia", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.35890000", + "longitude": "123.67960000" + }, + { + "id": "82535", + "name": "Fabrica", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.49000000", + "longitude": "123.29400000" + }, + { + "id": "82544", + "name": "Gabao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.99240000", + "longitude": "124.01690000" + }, + { + "id": "82553", + "name": "Gainza", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.61650000", + "longitude": "123.14190000" + }, + { + "id": "82556", + "name": "Gambalidio", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.62050000", + "longitude": "122.89130000" + }, + { + "id": "82569", + "name": "Garchitorena", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.88040000", + "longitude": "123.69460000" + }, + { + "id": "82572", + "name": "Gatbo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.58333000", + "longitude": "123.38333000" + }, + { + "id": "82589", + "name": "Gibgos", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.85900000", + "longitude": "123.76750000" + }, + { + "id": "82592", + "name": "Gigmoto", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.77960000", + "longitude": "124.39000000" + }, + { + "id": "82604", + "name": "Goa", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.69780000", + "longitude": "123.48920000" + }, + { + "id": "82616", + "name": "Gubat", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.92056000", + "longitude": "124.12306000" + }, + { + "id": "82623", + "name": "Guijalo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.73730000", + "longitude": "123.86800000" + }, + { + "id": "82629", + "name": "Guinacotan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.15690000", + "longitude": "122.86800000" + }, + { + "id": "82638", + "name": "Guinobatan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.19130000", + "longitude": "123.59870000" + }, + { + "id": "82655", + "name": "Gumaus", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.31030000", + "longitude": "122.72290000" + }, + { + "id": "82658", + "name": "Guruyan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.73889000", + "longitude": "123.93917000" + }, + { + "id": "82676", + "name": "Hamoraon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.22564000", + "longitude": "123.55151000" + }, + { + "id": "82682", + "name": "Herrera", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.26930000", + "longitude": "123.57690000" + }, + { + "id": "82688", + "name": "Himaao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.54480000", + "longitude": "123.30050000" + }, + { + "id": "82703", + "name": "Hobo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.51010000", + "longitude": "123.17920000" + }, + { + "id": "82736", + "name": "Imelda", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.03333000", + "longitude": "122.88333000" + }, + { + "id": "82742", + "name": "Inapatan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.39640000", + "longitude": "123.32270000" + }, + { + "id": "82764", + "name": "Iraya", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.25000000", + "longitude": "123.51667000" + }, + { + "id": "82765", + "name": "Iriga City", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.43240000", + "longitude": "123.41150000" + }, + { + "id": "82767", + "name": "Irosin", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.70013000", + "longitude": "124.03221000" + }, + { + "id": "82811", + "name": "Joroan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.48850000", + "longitude": "123.61890000" + }, + { + "id": "82812", + "name": "Jose Pañganiban", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.29060000", + "longitude": "122.69170000" + }, + { + "id": "82815", + "name": "Jovellar", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.06950000", + "longitude": "123.59990000" + }, + { + "id": "82816", + "name": "Juban", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.84778000", + "longitude": "123.98778000" + }, + { + "id": "82854", + "name": "Kaliliog", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.90390000", + "longitude": "123.29250000" + }, + { + "id": "82907", + "name": "Kinalansan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.70360000", + "longitude": "123.55310000" + }, + { + "id": "82961", + "name": "Labnig", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.37690000", + "longitude": "123.67880000" + }, + { + "id": "82962", + "name": "Labo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.15320000", + "longitude": "122.83030000" + }, + { + "id": "82968", + "name": "Lacag", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.15530000", + "longitude": "123.68120000" + }, + { + "id": "82979", + "name": "Lagonoy", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.73420000", + "longitude": "123.52070000" + }, + { + "id": "82985", + "name": "Lajong", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.83333000", + "longitude": "123.96667000" + }, + { + "id": "83018", + "name": "Lanigay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.31667000", + "longitude": "123.50000000" + }, + { + "id": "83023", + "name": "Lantangan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.19815000", + "longitude": "123.27101000" + }, + { + "id": "83041", + "name": "Larap", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.29900000", + "longitude": "122.65040000" + }, + { + "id": "83061", + "name": "Legaspi", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.14125000", + "longitude": "123.74073000" + }, + { + "id": "83092", + "name": "Libmanan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.69280000", + "longitude": "123.05960000" + }, + { + "id": "83093", + "name": "Libog", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.23490000", + "longitude": "123.77780000" + }, + { + "id": "83094", + "name": "Libon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.29970000", + "longitude": "123.43860000" + }, + { + "id": "83097", + "name": "Liboro", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.82450000", + "longitude": "122.72950000" + }, + { + "id": "83104", + "name": "Ligao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.21697000", + "longitude": "123.51924000" + }, + { + "id": "83122", + "name": "Limbuhan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "11.88377000", + "longitude": "124.05011000" + }, + { + "id": "83188", + "name": "Lourdes", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.38990000", + "longitude": "123.37350000" + }, + { + "id": "83194", + "name": "Lubigan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.74200000", + "longitude": "122.93730000" + }, + { + "id": "83207", + "name": "Lugui", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.11310000", + "longitude": "122.79350000" + }, + { + "id": "83211", + "name": "Luklukan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.32540000", + "longitude": "122.71240000" + }, + { + "id": "83234", + "name": "Luna", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.54920000", + "longitude": "123.73360000" + }, + { + "id": "83243", + "name": "Lupi", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.53333000", + "longitude": "123.15000000" + }, + { + "id": "83244", + "name": "Lupi Viejo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.78970000", + "longitude": "122.90980000" + }, + { + "id": "83254", + "name": "Maagnas", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.71920000", + "longitude": "123.66750000" + }, + { + "id": "83285", + "name": "Mabiton", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.83340000", + "longitude": "123.26120000" + }, + { + "id": "83296", + "name": "Macabugos", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.23620000", + "longitude": "123.30530000" + }, + { + "id": "83298", + "name": "Macalaya", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.88944000", + "longitude": "123.77111000" + }, + { + "id": "83320", + "name": "Magallanes", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.82917000", + "longitude": "123.83639000" + }, + { + "id": "83327", + "name": "Magarao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.66040000", + "longitude": "123.18690000" + }, + { + "id": "83340", + "name": "Magsalangi", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.18275000", + "longitude": "123.56661000" + }, + { + "id": "83354", + "name": "Mahaba", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.26760000", + "longitude": "123.55140000" + }, + { + "id": "83385", + "name": "Malabog", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.17380000", + "longitude": "123.68650000" + }, + { + "id": "83411", + "name": "Malasugui", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.14390000", + "longitude": "122.84710000" + }, + { + "id": "83412", + "name": "Malatap", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18710000", + "longitude": "122.51190000" + }, + { + "id": "83414", + "name": "Malawag", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.38333000", + "longitude": "123.28333000" + }, + { + "id": "83421", + "name": "Malbug", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.05630000", + "longitude": "123.64610000" + }, + { + "id": "83427", + "name": "Malidong", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.01333000", + "longitude": "123.45962000" + }, + { + "id": "83431", + "name": "Malilipot", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.31880000", + "longitude": "123.73850000" + }, + { + "id": "83437", + "name": "Malinao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.39920000", + "longitude": "123.70690000" + }, + { + "id": "83443", + "name": "Malinta", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.30144000", + "longitude": "123.55811000" + }, + { + "id": "83476", + "name": "Mambulo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.71667000", + "longitude": "123.05000000" + }, + { + "id": "83480", + "name": "Mampurog", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.04580000", + "longitude": "122.88360000" + }, + { + "id": "83489", + "name": "Manamrag", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.73510000", + "longitude": "124.10640000" + }, + { + "id": "83503", + "name": "Mandaon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.22594000", + "longitude": "123.28421000" + }, + { + "id": "83507", + "name": "Manga", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.27190000", + "longitude": "123.46230000" + }, + { + "id": "83526", + "name": "Manito", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.12350000", + "longitude": "123.86930000" + }, + { + "id": "83533", + "name": "Manquiring", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.73410000", + "longitude": "123.26900000" + }, + { + "id": "83547", + "name": "Maonon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.03643000", + "longitude": "123.37074000" + }, + { + "id": "83584", + "name": "Marintoc", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.28554000", + "longitude": "123.72281000" + }, + { + "id": "83589", + "name": "Marupit", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.62690000", + "longitude": "123.16630000" + }, + { + "id": "83597", + "name": "Masaraway", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.22680000", + "longitude": "123.61480000" + }, + { + "id": "83601", + "name": "Masbate", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.37169000", + "longitude": "123.62494000" + }, + { + "id": "83606", + "name": "Maslog", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.10460000", + "longitude": "123.77130000" + }, + { + "id": "83608", + "name": "Masoli", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.35930000", + "longitude": "123.38980000" + }, + { + "id": "83613", + "name": "Matacon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.32840000", + "longitude": "123.43560000" + }, + { + "id": "83631", + "name": "Matnog", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.58780000", + "longitude": "124.08750000" + }, + { + "id": "83640", + "name": "Mauraro", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.14940000", + "longitude": "123.59530000" + }, + { + "id": "83650", + "name": "Mayngaran", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.34920000", + "longitude": "123.59960000" + }, + { + "id": "83659", + "name": "Mercedes", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.10930000", + "longitude": "123.01090000" + }, + { + "id": "83665", + "name": "Miaga", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.23760000", + "longitude": "123.81670000" + }, + { + "id": "83671", + "name": "Milagros", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.21814000", + "longitude": "123.50951000" + }, + { + "id": "83672", + "name": "Milaor", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.59610000", + "longitude": "123.17720000" + }, + { + "id": "83674", + "name": "Miliroc", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.34490000", + "longitude": "123.70200000" + }, + { + "id": "83676", + "name": "Minalabac", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.56870000", + "longitude": "123.18380000" + }, + { + "id": "83692", + "name": "Mobo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.33630000", + "longitude": "123.65740000" + }, + { + "id": "83698", + "name": "Monbon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.73070000", + "longitude": "124.01890000" + }, + { + "id": "83704", + "name": "Monreal", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.64400000", + "longitude": "123.66480000" + }, + { + "id": "83720", + "name": "Muladbucad", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.23890000", + "longitude": "123.60570000" + }, + { + "id": "83732", + "name": "Naagas", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.43570000", + "longitude": "123.67810000" + }, + { + "id": "83734", + "name": "Nabangig", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.09890000", + "longitude": "123.95030000" + }, + { + "id": "83737", + "name": "Nabua", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.40750000", + "longitude": "123.37240000" + }, + { + "id": "83740", + "name": "Naga", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.61917000", + "longitude": "123.18139000" + }, + { + "id": "83780", + "name": "Naro", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "11.89697000", + "longitude": "123.67392000" + }, + { + "id": "83788", + "name": "Nato", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.61050000", + "longitude": "123.53560000" + }, + { + "id": "83837", + "name": "Ocampo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.55940000", + "longitude": "123.37610000" + }, + { + "id": "83842", + "name": "Odicon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.53000000", + "longitude": "123.05880000" + }, + { + "id": "83847", + "name": "Ogod", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.90090000", + "longitude": "123.61700000" + }, + { + "id": "83863", + "name": "Osiao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.09140000", + "longitude": "123.98110000" + }, + { + "id": "83867", + "name": "Osmeña", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.73150000", + "longitude": "123.33180000" + }, + { + "id": "83877", + "name": "Padang", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.21960000", + "longitude": "123.76550000" + }, + { + "id": "83910", + "name": "Palali", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.30622000", + "longitude": "122.48571000" + }, + { + "id": "83912", + "name": "Palanas", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.14580000", + "longitude": "123.92160000" + }, + { + "id": "83920", + "name": "Palestina", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.61170000", + "longitude": "123.24900000" + }, + { + "id": "83930", + "name": "Palsong", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.42480000", + "longitude": "123.29630000" + }, + { + "id": "83936", + "name": "Pambuhan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.97360000", + "longitude": "123.08370000" + }, + { + "id": "83939", + "name": "Pamplona", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.59160000", + "longitude": "123.08160000" + }, + { + "id": "83960", + "name": "Pandan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.04530000", + "longitude": "124.16940000" + }, + { + "id": "83970", + "name": "Panganiban", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.90033000", + "longitude": "124.29816000" + }, + { + "id": "83982", + "name": "Panguiranan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.06986000", + "longitude": "123.31851000" + }, + { + "id": "83989", + "name": "Paniqui", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.45320000", + "longitude": "123.38210000" + }, + { + "id": "83999", + "name": "Pantao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.19440000", + "longitude": "123.32710000" + }, + { + "id": "84011", + "name": "Parabcan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.70880000", + "longitude": "123.74500000" + }, + { + "id": "84012", + "name": "Paracale", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.28040000", + "longitude": "122.78810000" + }, + { + "id": "84026", + "name": "Pasacao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.51180000", + "longitude": "123.04260000" + }, + { + "id": "84057", + "name": "Paulba", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.71360000", + "longitude": "123.24960000" + }, + { + "id": "84060", + "name": "Pawa", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.17730000", + "longitude": "123.73010000" + }, + { + "id": "84062", + "name": "Pawican", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.07410000", + "longitude": "123.97060000" + }, + { + "id": "84063", + "name": "Pawili", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.51667000", + "longitude": "123.28333000" + }, + { + "id": "84076", + "name": "Peña", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.08900000", + "longitude": "123.93840000" + }, + { + "id": "84090", + "name": "Pilar", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.92310000", + "longitude": "123.67240000" + }, + { + "id": "84097", + "name": "Pili", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.98056000", + "longitude": "123.86417000" + }, + { + "id": "84112", + "name": "Pinit", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.56860000", + "longitude": "123.41400000" + }, + { + "id": "84119", + "name": "Pio Duran", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.02928000", + "longitude": "123.44496000" + }, + { + "id": "84129", + "name": "Placer", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "11.86870000", + "longitude": "123.91840000" + }, + { + "id": "84143", + "name": "Polangui", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.29230000", + "longitude": "123.48550000" + }, + { + "id": "84160", + "name": "Ponso", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.29100000", + "longitude": "123.51710000" + }, + { + "id": "84168", + "name": "Potot", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.20345000", + "longitude": "123.43191000" + }, + { + "id": "84175", + "name": "Prieto Diaz", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.04167000", + "longitude": "124.19389000" + }, + { + "id": "84185", + "name": "Province of Albay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.21667000", + "longitude": "123.55000000" + }, + { + "id": "84196", + "name": "Province of Camarines Norte", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.16667000", + "longitude": "122.75000000" + }, + { + "id": "84197", + "name": "Province of Camarines Sur", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.66667000", + "longitude": "123.33333000" + }, + { + "id": "84200", + "name": "Province of Catanduanes", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83333000", + "longitude": "124.25000000" + }, + { + "id": "84221", + "name": "Province of Masbate", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.16667000", + "longitude": "123.58333000" + }, + { + "id": "84241", + "name": "Province of Sorsogon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.83333000", + "longitude": "123.91667000" + }, + { + "id": "84286", + "name": "Puro", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.48410000", + "longitude": "123.38270000" + }, + { + "id": "84289", + "name": "Putiao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.01950000", + "longitude": "123.71480000" + }, + { + "id": "84299", + "name": "Quezon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.60000000", + "longitude": "123.95000000" + }, + { + "id": "84317", + "name": "Quitang", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.55130000", + "longitude": "123.05290000" + }, + { + "id": "84320", + "name": "Ragay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.81830000", + "longitude": "122.79230000" + }, + { + "id": "84330", + "name": "Rapu-Rapu", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.18660000", + "longitude": "124.12560000" + }, + { + "id": "84335", + "name": "Recodo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "11.94914000", + "longitude": "123.73695000" + }, + { + "id": "84341", + "name": "Rizal", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.97722000", + "longitude": "123.91417000" + }, + { + "id": "84368", + "name": "Sabang", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.73333000", + "longitude": "123.93333000" + }, + { + "id": "84371", + "name": "Sabang Indan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.21940000", + "longitude": "122.91510000" + }, + { + "id": "84389", + "name": "Sagnay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.60290000", + "longitude": "123.52250000" + }, + { + "id": "84390", + "name": "Sagpon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.15000000", + "longitude": "123.73333000" + }, + { + "id": "84391", + "name": "Sagrada", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.53010000", + "longitude": "123.45270000" + }, + { + "id": "84392", + "name": "Sagrada Familia", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.26900000", + "longitude": "123.39770000" + }, + { + "id": "84398", + "name": "Sagurong", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.78050000", + "longitude": "122.95940000" + }, + { + "id": "84412", + "name": "Salingogan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.43330000", + "longitude": "123.19230000" + }, + { + "id": "84414", + "name": "Salogon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.65860000", + "longitude": "123.52250000" + }, + { + "id": "84419", + "name": "Salvacion", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.06667000", + "longitude": "123.61667000" + }, + { + "id": "84436", + "name": "San Agustin", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.32630000", + "longitude": "123.41770000" + }, + { + "id": "84442", + "name": "San Andres", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.26140000", + "longitude": "123.77950000" + }, + { + "id": "84446", + "name": "San Antonio", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.37100000", + "longitude": "123.42020000" + }, + { + "id": "84474", + "name": "San Felipe", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.01840000", + "longitude": "122.92950000" + }, + { + "id": "84478", + "name": "San Fernando", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.56560000", + "longitude": "123.14530000" + }, + { + "id": "84488", + "name": "San Francisco", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.03670000", + "longitude": "123.78320000" + }, + { + "id": "84492", + "name": "San Gabriel", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.56667000", + "longitude": "123.10000000" + }, + { + "id": "84500", + "name": "San Isidro", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.97417000", + "longitude": "123.85722000" + }, + { + "id": "84508", + "name": "San Jacinto", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.56770000", + "longitude": "123.73370000" + }, + { + "id": "84517", + "name": "San Jose", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.35000000", + "longitude": "123.55000000" + }, + { + "id": "84537", + "name": "San Lucas", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.70620000", + "longitude": "123.20320000" + }, + { + "id": "84560", + "name": "San Miguel", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.41960000", + "longitude": "123.40820000" + }, + { + "id": "84579", + "name": "San Pascual", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.12888000", + "longitude": "122.97709000" + }, + { + "id": "84585", + "name": "San Pedro", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.01667000", + "longitude": "124.00000000" + }, + { + "id": "84595", + "name": "San Rafael", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.21667000", + "longitude": "123.60000000" + }, + { + "id": "84599", + "name": "San Ramon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.72210000", + "longitude": "123.54000000" + }, + { + "id": "84607", + "name": "San Roque", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.28370000", + "longitude": "123.74220000" + }, + { + "id": "84614", + "name": "San Sebastian", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.72830000", + "longitude": "123.59390000" + }, + { + "id": "84623", + "name": "San Vicente", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.10610000", + "longitude": "122.87330000" + }, + { + "id": "84658", + "name": "Santa Cruz", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.87630000", + "longitude": "124.05660000" + }, + { + "id": "84664", + "name": "Santa Elena", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.17023000", + "longitude": "122.38246000" + }, + { + "id": "84676", + "name": "Santa Justina", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.39670000", + "longitude": "123.47310000" + }, + { + "id": "84680", + "name": "Santa Magdalena", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.64800000", + "longitude": "124.10930000" + }, + { + "id": "84701", + "name": "Santa Rosa Sur", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.25900000", + "longitude": "122.72330000" + }, + { + "id": "84706", + "name": "Santa Teresita", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.47860000", + "longitude": "123.41910000" + }, + { + "id": "84720", + "name": "Santo Domingo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.42000000", + "longitude": "123.44860000" + }, + { + "id": "84724", + "name": "Santo Niño", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.10430000", + "longitude": "123.96820000" + }, + { + "id": "84822", + "name": "Sinuknipan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.88940000", + "longitude": "122.63750000" + }, + { + "id": "84826", + "name": "Sipocot", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.76800000", + "longitude": "122.97620000" + }, + { + "id": "84830", + "name": "Siruma", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.00000000", + "longitude": "123.25000000" + }, + { + "id": "84836", + "name": "Sogod", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83333000", + "longitude": "123.31667000" + }, + { + "id": "84848", + "name": "Sorsogon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.97389000", + "longitude": "123.99333000" + }, + { + "id": "84860", + "name": "Sugcad", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.36667000", + "longitude": "123.70000000" + }, + { + "id": "84861", + "name": "Sugod", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.98700000", + "longitude": "124.08050000" + }, + { + "id": "84891", + "name": "Tabaco", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.35861000", + "longitude": "123.73361000" + }, + { + "id": "84930", + "name": "Tagas", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.16667000", + "longitude": "123.71667000" + }, + { + "id": "84946", + "name": "Tagoytoy", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.41580000", + "longitude": "123.67800000" + }, + { + "id": "84980", + "name": "Talisay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.13430000", + "longitude": "122.92260000" + }, + { + "id": "84997", + "name": "Talubatib", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18250000", + "longitude": "122.78530000" + }, + { + "id": "85010", + "name": "Tambo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.54680000", + "longitude": "123.03580000" + }, + { + "id": "85054", + "name": "Tara", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.81667000", + "longitude": "122.98333000" + }, + { + "id": "85057", + "name": "Tariric", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.57230000", + "longitude": "123.22350000" + }, + { + "id": "85102", + "name": "Tigaon", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.63310000", + "longitude": "123.49680000" + }, + { + "id": "85104", + "name": "Tigbao", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.55460000", + "longitude": "123.33890000" + }, + { + "id": "85106", + "name": "Tigbaw", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.14830000", + "longitude": "123.59090000" + }, + { + "id": "85107", + "name": "Tigbinan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18648000", + "longitude": "122.46923000" + }, + { + "id": "85126", + "name": "Tinago", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.18333000", + "longitude": "123.65000000" + }, + { + "id": "85127", + "name": "Tinalmud", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.59410000", + "longitude": "122.87800000" + }, + { + "id": "85128", + "name": "Tinambac", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.81640000", + "longitude": "123.32610000" + }, + { + "id": "85130", + "name": "Tinampo", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.22825000", + "longitude": "123.50723000" + }, + { + "id": "85133", + "name": "Tinawagan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.65000000", + "longitude": "123.48333000" + }, + { + "id": "85149", + "name": "Tiwi", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.45850000", + "longitude": "123.68050000" + }, + { + "id": "85192", + "name": "Tubli", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93180000", + "longitude": "124.14780000" + }, + { + "id": "85198", + "name": "Tuburan", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.24170000", + "longitude": "123.55203000" + }, + { + "id": "85211", + "name": "Tugos", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.26667000", + "longitude": "122.75000000" + }, + { + "id": "85216", + "name": "Tulay na Lupa", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.09340000", + "longitude": "122.78620000" + }, + { + "id": "85219", + "name": "Tumalaytay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.27584000", + "longitude": "123.23201000" + }, + { + "id": "85247", + "name": "Umabay", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.30954000", + "longitude": "123.67961000" + }, + { + "id": "85269", + "name": "Usab", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.32974000", + "longitude": "123.58091000" + }, + { + "id": "85270", + "name": "Uson", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.22530000", + "longitude": "123.78340000" + }, + { + "id": "85271", + "name": "Utabi", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "12.64170000", + "longitude": "123.90920000" + }, + { + "id": "85288", + "name": "Viga", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87190000", + "longitude": "124.30910000" + }, + { + "id": "85295", + "name": "Villahermosa", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.04580000", + "longitude": "123.71330000" + }, + { + "id": "85304", + "name": "Vinzons", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "14.17370000", + "longitude": "122.90660000" + }, + { + "id": "85305", + "name": "Virac", + "state_id": 1337, + "state_code": "ALB", + "country_id": 174, + "country_code": "PH", + "latitude": "13.58480000", + "longitude": "124.23740000" + }, + { + "id": "81127", + "name": "Abaca", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.13420000", + "longitude": "122.71560000" + }, + { + "id": "81128", + "name": "Abangay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.96667000", + "longitude": "122.65000000" + }, + { + "id": "81129", + "name": "Abiera", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.57490000", + "longitude": "122.09000000" + }, + { + "id": "81130", + "name": "Abilay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.73333000", + "longitude": "122.50000000" + }, + { + "id": "81150", + "name": "Ag-ambulong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.36840000", + "longitude": "122.50940000" + }, + { + "id": "81152", + "name": "Aganan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.78333000", + "longitude": "122.53333000" + }, + { + "id": "81159", + "name": "Aglalana", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18030000", + "longitude": "122.65740000" + }, + { + "id": "81165", + "name": "Agpangi", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.57716000", + "longitude": "123.42320000" + }, + { + "id": "81170", + "name": "Aguisan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.16030000", + "longitude": "122.86150000" + }, + { + "id": "81174", + "name": "Ajuy", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.17240000", + "longitude": "123.01970000" + }, + { + "id": "81180", + "name": "Alacaygan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.84014000", + "longitude": "123.05830000" + }, + { + "id": "81199", + "name": "Alegria", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.64345000", + "longitude": "123.08360000" + }, + { + "id": "81211", + "name": "Alibunan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.14652000", + "longitude": "122.45911000" + }, + { + "id": "81212", + "name": "Alicante", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.89704000", + "longitude": "123.01850000" + }, + { + "id": "81216", + "name": "Alijis", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.45830000", + "longitude": "122.83480000" + }, + { + "id": "81218", + "name": "Alim", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.56490000", + "longitude": "122.48760000" + }, + { + "id": "81219", + "name": "Alimodian", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.82139000", + "longitude": "122.43111000" + }, + { + "id": "81220", + "name": "Alimono", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18550000", + "longitude": "122.71290000" + }, + { + "id": "81232", + "name": "Altavas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.53800000", + "longitude": "122.48700000" + }, + { + "id": "81245", + "name": "Ambulong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.57930000", + "longitude": "122.49870000" + }, + { + "id": "81263", + "name": "Andres Bonifacio", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.91667000", + "longitude": "123.25000000" + }, + { + "id": "81273", + "name": "Anini-y", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.43120000", + "longitude": "121.92700000" + }, + { + "id": "81277", + "name": "Anoring", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.25000000", + "longitude": "123.03333000" + }, + { + "id": "81285", + "name": "Antipolo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.35650000", + "longitude": "122.96460000" + }, + { + "id": "81301", + "name": "Aquino", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.82210000", + "longitude": "122.10880000" + }, + { + "id": "81302", + "name": "Araal", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.41950000", + "longitude": "123.04370000" + }, + { + "id": "81306", + "name": "Aranas Sur", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.56350000", + "longitude": "122.39010000" + }, + { + "id": "81307", + "name": "Aranda", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.23650000", + "longitude": "122.94670000" + }, + { + "id": "81310", + "name": "Arcangel", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.53950000", + "longitude": "122.34550000" + }, + { + "id": "81319", + "name": "Asia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.55060000", + "longitude": "122.51640000" + }, + { + "id": "81322", + "name": "Asturga", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.25449000", + "longitude": "122.80180000" + }, + { + "id": "81324", + "name": "Atabayan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.68333000", + "longitude": "122.41667000" + }, + { + "id": "81326", + "name": "Atipuluhan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.51336000", + "longitude": "122.96210000" + }, + { + "id": "81331", + "name": "Aurelliana", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.88490000", + "longitude": "121.97690000" + }, + { + "id": "81337", + "name": "Avila", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.69200000", + "longitude": "122.70900000" + }, + { + "id": "81670", + "name": "Bañga", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.63870000", + "longitude": "122.33410000" + }, + { + "id": "81354", + "name": "Bacalan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.54640000", + "longitude": "122.08490000" + }, + { + "id": "81366", + "name": "Bacolod City", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.66667000", + "longitude": "122.95000000" + }, + { + "id": "81378", + "name": "Bacuyangan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.63700000", + "longitude": "122.47210000" + }, + { + "id": "81382", + "name": "Badiangan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.00573000", + "longitude": "122.50051000" + }, + { + "id": "81383", + "name": "Badlan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.14140000", + "longitude": "122.52000000" + }, + { + "id": "81396", + "name": "Bago City", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.53333000", + "longitude": "122.83333000" + }, + { + "id": "81404", + "name": "Bagroy", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.20310000", + "longitude": "122.93620000" + }, + { + "id": "81412", + "name": "Bagumbayan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.44600000", + "longitude": "122.83480000" + }, + { + "id": "81421", + "name": "Bailan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.45840000", + "longitude": "122.83010000" + }, + { + "id": "81430", + "name": "Balabag", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.97000000", + "longitude": "121.91917000" + }, + { + "id": "81451", + "name": "Balasan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.47280000", + "longitude": "123.08780000" + }, + { + "id": "81462", + "name": "Balete", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.55560000", + "longitude": "122.38030000" + }, + { + "id": "81465", + "name": "Balibagan Oeste", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.80000000", + "longitude": "122.51667000" + }, + { + "id": "81487", + "name": "Baliwagan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.39710000", + "longitude": "122.89110000" + }, + { + "id": "81520", + "name": "Bancal", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.55910000", + "longitude": "123.15510000" + }, + { + "id": "81522", + "name": "Banga", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.50180000", + "longitude": "122.82890000" + }, + { + "id": "81570", + "name": "Barbaza", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.19572000", + "longitude": "122.03861000" + }, + { + "id": "81583", + "name": "Barotac Nuevo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.89417000", + "longitude": "122.70444000" + }, + { + "id": "81584", + "name": "Barotac Viejo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.04194000", + "longitude": "122.85222000" + }, + { + "id": "81602", + "name": "Basiao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.54861000", + "longitude": "122.63750000" + }, + { + "id": "81611", + "name": "Batad", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.41800000", + "longitude": "123.10800000" + }, + { + "id": "81613", + "name": "Batan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.58570000", + "longitude": "122.49710000" + }, + { + "id": "81628", + "name": "Bato", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.80854000", + "longitude": "123.37330000" + }, + { + "id": "81651", + "name": "Bay-ang", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.03472000", + "longitude": "122.94167000" + }, + { + "id": "81659", + "name": "Bayas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.43360000", + "longitude": "123.18160000" + }, + { + "id": "81677", + "name": "Belison", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.83840000", + "longitude": "121.96050000" + }, + { + "id": "81683", + "name": "Biao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.10880000", + "longitude": "122.97720000" + }, + { + "id": "81700", + "name": "Bilao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.48800000", + "longitude": "122.55990000" + }, + { + "id": "81706", + "name": "Binabaan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.01910000", + "longitude": "122.52210000" + }, + { + "id": "81710", + "name": "Binalbagan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.19480000", + "longitude": "122.85810000" + }, + { + "id": "81713", + "name": "Binantocan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.40730000", + "longitude": "122.86020000" + }, + { + "id": "81718", + "name": "Bingawan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.23300000", + "longitude": "122.56720000" + }, + { + "id": "81726", + "name": "Binon-an", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.39470000", + "longitude": "123.14260000" + }, + { + "id": "81727", + "name": "Binonga", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.77190000", + "longitude": "122.98170000" + }, + { + "id": "81739", + "name": "Bitadtun", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.49690000", + "longitude": "122.08511000" + }, + { + "id": "81757", + "name": "Bocana", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.01160000", + "longitude": "122.72170000" + }, + { + "id": "81765", + "name": "Bolanon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.91710000", + "longitude": "123.47340000" + }, + { + "id": "81769", + "name": "Bolilao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.88333000", + "longitude": "122.73333000" + }, + { + "id": "81777", + "name": "Bolo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.54028000", + "longitude": "122.75722000" + }, + { + "id": "81780", + "name": "Bolong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.81667000", + "longitude": "122.51667000" + }, + { + "id": "81807", + "name": "Brgy. Bachaw Norte, Kalibo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.71806000", + "longitude": "122.37806000" + }, + { + "id": "81808", + "name": "Brgy. Bulwang, Numancia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.72194000", + "longitude": "122.36111000" + }, + { + "id": "81809", + "name": "Brgy. Mabilo, New Washington", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.67778000", + "longitude": "122.40750000" + }, + { + "id": "81810", + "name": "Brgy. Nalook, kalibo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.68586000", + "longitude": "122.36916000" + }, + { + "id": "81811", + "name": "Brgy. New Buswang, Kalibo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.71222000", + "longitude": "122.38472000" + }, + { + "id": "81812", + "name": "Brgy. Tinigao, Kalibo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.70000000", + "longitude": "122.36667000" + }, + { + "id": "81829", + "name": "Buenavista", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.79874000", + "longitude": "123.55440000" + }, + { + "id": "81838", + "name": "Buga", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.71667000", + "longitude": "122.26667000" + }, + { + "id": "81841", + "name": "Bugang", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.74185000", + "longitude": "123.39330000" + }, + { + "id": "81844", + "name": "Bugasong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.04464000", + "longitude": "122.06463000" + }, + { + "id": "81859", + "name": "Bula", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.44800000", + "longitude": "122.56850000" + }, + { + "id": "81863", + "name": "Bulad", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.25480000", + "longitude": "122.99830000" + }, + { + "id": "81870", + "name": "Bulata", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.85990000", + "longitude": "122.40160000" + }, + { + "id": "81889", + "name": "Buluangan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.38707000", + "longitude": "123.33810000" + }, + { + "id": "81898", + "name": "Bungsuan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.24040000", + "longitude": "122.69760000" + }, + { + "id": "81905", + "name": "Buray", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.71500000", + "longitude": "122.45944000" + }, + { + "id": "81911", + "name": "Burias", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.44630000", + "longitude": "122.54970000" + }, + { + "id": "81914", + "name": "Buruanga", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.84428000", + "longitude": "121.88841000" + }, + { + "id": "81915", + "name": "Busay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.53780000", + "longitude": "122.88600000" + }, + { + "id": "81931", + "name": "Buyuan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.67086000", + "longitude": "122.35740000" + }, + { + "id": "81935", + "name": "Cabacungan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.32370000", + "longitude": "123.13310000" + }, + { + "id": "81938", + "name": "Cabadiangan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75340000", + "longitude": "122.47390000" + }, + { + "id": "81946", + "name": "Cabanbanan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.08520000", + "longitude": "122.95790000" + }, + { + "id": "81952", + "name": "Cabano", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.58690000", + "longitude": "122.70020000" + }, + { + "id": "81957", + "name": "Cabatuan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.87940000", + "longitude": "122.48600000" + }, + { + "id": "81967", + "name": "Cabilao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.53960000", + "longitude": "123.14360000" + }, + { + "id": "81968", + "name": "Cabilauan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.89222000", + "longitude": "122.65917000" + }, + { + "id": "81978", + "name": "Cabugao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.81028000", + "longitude": "122.54472000" + }, + { + "id": "81987", + "name": "Cadagmayan Norte", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.81667000", + "longitude": "122.50000000" + }, + { + "id": "81989", + "name": "Cadiz", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.94650000", + "longitude": "123.28800000" + }, + { + "id": "81996", + "name": "Cagbang", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.70000000", + "longitude": "122.49889000" + }, + { + "id": "82019", + "name": "Calampisauan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.60985000", + "longitude": "123.47650000" + }, + { + "id": "82030", + "name": "Calape", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.27360000", + "longitude": "122.97430000" + }, + { + "id": "82037", + "name": "Calatrava", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.59496000", + "longitude": "123.48380000" + }, + { + "id": "82043", + "name": "Calaya", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.49160000", + "longitude": "122.62550000" + }, + { + "id": "82055", + "name": "Calinog", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.11667000", + "longitude": "122.56667000" + }, + { + "id": "82058", + "name": "Calizo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.58190000", + "longitude": "122.38570000" + }, + { + "id": "82074", + "name": "Caluya", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.93100000", + "longitude": "121.54770000" + }, + { + "id": "82081", + "name": "Camalobalo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.27310000", + "longitude": "122.95050000" + }, + { + "id": "82083", + "name": "Camandag", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.33333000", + "longitude": "123.06667000" + }, + { + "id": "82084", + "name": "Camangcamang", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.17910000", + "longitude": "122.98650000" + }, + { + "id": "82091", + "name": "Camindangan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.91840000", + "longitude": "122.62960000" + }, + { + "id": "82092", + "name": "Camingawan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.89580000", + "longitude": "122.86250000" + }, + { + "id": "82109", + "name": "Candelaria", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.28930000", + "longitude": "122.52280000" + }, + { + "id": "82113", + "name": "Candoni", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.81700000", + "longitude": "122.60430000" + }, + { + "id": "82116", + "name": "Caningay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.82970000", + "longitude": "122.64420000" + }, + { + "id": "82121", + "name": "Canroma", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.36060000", + "longitude": "122.87900000" + }, + { + "id": "82122", + "name": "Cansilayan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.55976000", + "longitude": "123.01840000" + }, + { + "id": "82123", + "name": "Cansolungon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.15100000", + "longitude": "122.99780000" + }, + { + "id": "82130", + "name": "Canturay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.79370000", + "longitude": "122.45430000" + }, + { + "id": "82133", + "name": "Capaga", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.43790000", + "longitude": "122.74790000" + }, + { + "id": "82139", + "name": "Capitan Ramon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.76020000", + "longitude": "123.11480000" + }, + { + "id": "82146", + "name": "Carabalan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.09640000", + "longitude": "122.94600000" + }, + { + "id": "82160", + "name": "Caridad", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.49670000", + "longitude": "122.89740000" + }, + { + "id": "82164", + "name": "Carles", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.57260000", + "longitude": "123.13420000" + }, + { + "id": "82165", + "name": "Carmelo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.01667000", + "longitude": "122.81667000" + }, + { + "id": "82174", + "name": "Carmen Grande", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.37870000", + "longitude": "122.91560000" + }, + { + "id": "82184", + "name": "Cartagena", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.82030000", + "longitude": "122.40040000" + }, + { + "id": "82194", + "name": "Cassanayan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.51690000", + "longitude": "123.05120000" + }, + { + "id": "82211", + "name": "Caticlan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.93337000", + "longitude": "121.95981000" + }, + { + "id": "82220", + "name": "Catungan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.77060000", + "longitude": "122.01490000" + }, + { + "id": "82229", + "name": "Cawayan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.97180000", + "longitude": "122.62490000" + }, + { + "id": "82235", + "name": "Cayanguan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.68900000", + "longitude": "122.29090000" + }, + { + "id": "82236", + "name": "Cayhagan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.67830000", + "longitude": "122.43350000" + }, + { + "id": "82241", + "name": "Cervantes", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.87260000", + "longitude": "123.52090000" + }, + { + "id": "82243", + "name": "Chambrey", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.97680000", + "longitude": "123.16820000" + }, + { + "id": "82252", + "name": "Codcod", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.46337000", + "longitude": "123.24950000" + }, + { + "id": "82256", + "name": "Cogon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.46410000", + "longitude": "122.80300000" + }, + { + "id": "82259", + "name": "Colipapa", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.47260000", + "longitude": "122.56160000" + }, + { + "id": "82272", + "name": "Concepcion", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.69200000", + "longitude": "123.06080000" + }, + { + "id": "82277", + "name": "Concordia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.50767000", + "longitude": "122.54960000" + }, + { + "id": "82282", + "name": "Consolacion", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.32840000", + "longitude": "122.63320000" + }, + { + "id": "82283", + "name": "Constancia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.59596000", + "longitude": "122.64150000" + }, + { + "id": "82286", + "name": "Consuelo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.99960000", + "longitude": "122.75800000" + }, + { + "id": "82292", + "name": "Cordova", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.73028000", + "longitude": "122.40139000" + }, + { + "id": "82300", + "name": "Cortez", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.53010000", + "longitude": "122.39750000" + }, + { + "id": "82306", + "name": "Cuartero", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.34070000", + "longitude": "122.66940000" + }, + { + "id": "82312", + "name": "Culasi", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.42721000", + "longitude": "122.05601000" + }, + { + "id": "82326", + "name": "Da-an Sur", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.26120000", + "longitude": "122.42020000" + }, + { + "id": "82348", + "name": "Daliciasao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.98590000", + "longitude": "122.76180000" + }, + { + "id": "82360", + "name": "Damayan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.49360000", + "longitude": "122.55310000" + }, + { + "id": "82368", + "name": "Dancalan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.98210000", + "longitude": "122.73860000" + }, + { + "id": "82373", + "name": "Dao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.39370000", + "longitude": "122.68560000" + }, + { + "id": "82379", + "name": "Dapdapan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.49430000", + "longitude": "122.63140000" + }, + { + "id": "82402", + "name": "De la Paz", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.06444000", + "longitude": "122.77917000" + }, + { + "id": "82415", + "name": "Dian-ay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.83333000", + "longitude": "123.55000000" + }, + { + "id": "82440", + "name": "Dingle", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.99950000", + "longitude": "122.67110000" + }, + { + "id": "82465", + "name": "Dos Hermanas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.74210000", + "longitude": "123.03770000" + }, + { + "id": "82470", + "name": "Dueñas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.06698000", + "longitude": "122.61545000" + }, + { + "id": "82475", + "name": "Dulangan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.45610000", + "longitude": "122.95570000" + }, + { + "id": "82477", + "name": "Dulao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.54176000", + "longitude": "122.93830000" + }, + { + "id": "82483", + "name": "Dumalag", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.30800000", + "longitude": "122.62360000" + }, + { + "id": "82487", + "name": "Dumangas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.82500000", + "longitude": "122.71300000" + }, + { + "id": "82491", + "name": "Dumarao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.26540000", + "longitude": "122.68890000" + }, + { + "id": "82495", + "name": "Dungon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.71960000", + "longitude": "122.31600000" + }, + { + "id": "82497", + "name": "Duran", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.26180000", + "longitude": "122.59170000" + }, + { + "id": "82499", + "name": "East Valencia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.66800000", + "longitude": "122.71000000" + }, + { + "id": "82503", + "name": "Egaña", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.74720000", + "longitude": "122.00984000" + }, + { + "id": "82513", + "name": "Ermita", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.90000000", + "longitude": "122.71667000" + }, + { + "id": "82514", + "name": "Escalante", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.84028000", + "longitude": "123.49917000" + }, + { + "id": "82527", + "name": "Estancia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.45510000", + "longitude": "123.15200000" + }, + { + "id": "82533", + "name": "Eustaquio Lopez", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.81950000", + "longitude": "123.04120000" + }, + { + "id": "82537", + "name": "Feliciano", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.57870000", + "longitude": "122.35830000" + }, + { + "id": "82548", + "name": "Gabi", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.59560000", + "longitude": "123.33760000" + }, + { + "id": "82586", + "name": "Getulio", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.74700000", + "longitude": "122.66600000" + }, + { + "id": "82588", + "name": "Gibato", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.22510000", + "longitude": "122.81430000" + }, + { + "id": "82590", + "name": "Gibong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.86338000", + "longitude": "122.03941000" + }, + { + "id": "82596", + "name": "Gines-Patay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.93570000", + "longitude": "122.49320000" + }, + { + "id": "82608", + "name": "Granada", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.63333000", + "longitude": "123.35000000" + }, + { + "id": "82611", + "name": "Guadalupe", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.45447000", + "longitude": "123.37320000" + }, + { + "id": "82625", + "name": "Guiljungan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.98050000", + "longitude": "122.67420000" + }, + { + "id": "82627", + "name": "Guimbal", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.66330000", + "longitude": "122.32280000" + }, + { + "id": "82637", + "name": "Guinoaliuan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.65760000", + "longitude": "122.38510000" + }, + { + "id": "82641", + "name": "Guinticgan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.56410000", + "longitude": "123.12360000" + }, + { + "id": "82642", + "name": "Guintubhan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.20740000", + "longitude": "122.96270000" + }, + { + "id": "82649", + "name": "Guisijan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.09320000", + "longitude": "122.04610000" + }, + { + "id": "82664", + "name": "Hacienda Refugio", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.52166000", + "longitude": "123.44450000" + }, + { + "id": "82665", + "name": "Hacienda Santa Rosa", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.57226000", + "longitude": "123.10120000" + }, + { + "id": "82670", + "name": "Haguimit", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.39990000", + "longitude": "123.01780000" + }, + { + "id": "82677", + "name": "Hamtic", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.70230000", + "longitude": "121.98240000" + }, + { + "id": "82689", + "name": "Himamaylan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.09889000", + "longitude": "122.87056000" + }, + { + "id": "82690", + "name": "Himaya", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.45160000", + "longitude": "122.83250000" + }, + { + "id": "82696", + "name": "Hinigaran", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.27060000", + "longitude": "122.85070000" + }, + { + "id": "82702", + "name": "Hipona", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.41740000", + "longitude": "122.88250000" + }, + { + "id": "82709", + "name": "Ibajay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.81990000", + "longitude": "122.16200000" + }, + { + "id": "82713", + "name": "Idio", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.62380000", + "longitude": "122.09790000" + }, + { + "id": "82715", + "name": "Igang", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.91600000", + "longitude": "122.63880000" + }, + { + "id": "82716", + "name": "Igbaras", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.71565000", + "longitude": "122.26570000" + }, + { + "id": "82717", + "name": "Igbon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.21420000", + "longitude": "123.16550000" + }, + { + "id": "82718", + "name": "Igcocolo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.68966000", + "longitude": "122.31930000" + }, + { + "id": "82719", + "name": "Igmaya-an", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.54986000", + "longitude": "123.22060000" + }, + { + "id": "82731", + "name": "Ilog", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.02660000", + "longitude": "122.76840000" + }, + { + "id": "82732", + "name": "Iloilo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.69694000", + "longitude": "122.56444000" + }, + { + "id": "82733", + "name": "Imbang", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.79670000", + "longitude": "123.02130000" + }, + { + "id": "82745", + "name": "Inayauan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.90050000", + "longitude": "122.43400000" + }, + { + "id": "82754", + "name": "Intampilan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.48130000", + "longitude": "122.74340000" + }, + { + "id": "82770", + "name": "Isabela", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.20480000", + "longitude": "122.98880000" + }, + { + "id": "82777", + "name": "Ivisan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.52167000", + "longitude": "122.69083000" + }, + { + "id": "82781", + "name": "Jaena", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.41667000", + "longitude": "122.40000000" + }, + { + "id": "82783", + "name": "Jaguimitan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.14000000", + "longitude": "122.72360000" + }, + { + "id": "82786", + "name": "Jalaud", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.84360000", + "longitude": "122.64040000" + }, + { + "id": "82787", + "name": "Jamabalod", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.87880000", + "longitude": "122.62120000" + }, + { + "id": "82788", + "name": "Jamindan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.40023000", + "longitude": "122.49833000" + }, + { + "id": "82792", + "name": "Janiuay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.94930000", + "longitude": "122.50610000" + }, + { + "id": "82796", + "name": "Japitan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.76524000", + "longitude": "123.54440000" + }, + { + "id": "82797", + "name": "Jarigue", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.86538000", + "longitude": "121.44041000" + }, + { + "id": "82802", + "name": "Jayubó", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.05000000", + "longitude": "122.38333000" + }, + { + "id": "82805", + "name": "Jibao-an", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.78333000", + "longitude": "122.50000000" + }, + { + "id": "82810", + "name": "Jordan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.65836000", + "longitude": "122.59630000" + }, + { + "id": "82824", + "name": "Kabankalan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.98390000", + "longitude": "122.81423000" + }, + { + "id": "82827", + "name": "Kabilauan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.86100000", + "longitude": "122.57340000" + }, + { + "id": "82850", + "name": "Kalibo (poblacion)", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.70611000", + "longitude": "122.36444000" + }, + { + "id": "82853", + "name": "Kaliling", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.98040000", + "longitude": "122.48140000" + }, + { + "id": "82934", + "name": "Kumalisquis", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.50726000", + "longitude": "123.20300000" + }, + { + "id": "82936", + "name": "La Carlota", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.42420000", + "longitude": "122.92120000" + }, + { + "id": "82937", + "name": "La Castellana", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.32390000", + "longitude": "123.02150000" + }, + { + "id": "82941", + "name": "La Granja", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.40820000", + "longitude": "122.98980000" + }, + { + "id": "82951", + "name": "La Paz", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.41310000", + "longitude": "122.51620000" + }, + { + "id": "83059", + "name": "Lañgub", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.79754000", + "longitude": "123.53380000" + }, + { + "id": "82970", + "name": "Lacaron", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.42200000", + "longitude": "122.74220000" + }, + { + "id": "82988", + "name": "Lalab", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.57490000", + "longitude": "122.42840000" + }, + { + "id": "82989", + "name": "Lalagsan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.28240000", + "longitude": "123.01300000" + }, + { + "id": "82998", + "name": "Lambunao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.05563000", + "longitude": "122.47590000" + }, + { + "id": "83021", + "name": "Lanot", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.51917000", + "longitude": "122.75722000" + }, + { + "id": "83022", + "name": "Lantangan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.58820000", + "longitude": "123.32560000" + }, + { + "id": "83054", + "name": "Lawigan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.48562000", + "longitude": "122.04442000" + }, + { + "id": "83060", + "name": "Leganes", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.78722000", + "longitude": "122.58917000" + }, + { + "id": "83064", + "name": "Lemery", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.22580000", + "longitude": "122.92750000" + }, + { + "id": "83066", + "name": "Leon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.78085000", + "longitude": "122.38940000" + }, + { + "id": "83075", + "name": "Libacao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.18000000", + "longitude": "122.91370000" + }, + { + "id": "83088", + "name": "Libertad", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.03528000", + "longitude": "122.76944000" + }, + { + "id": "83129", + "name": "Linabuan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.65100000", + "longitude": "122.35750000" + }, + { + "id": "83130", + "name": "Linabuan Sur", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.65111000", + "longitude": "122.34500000" + }, + { + "id": "83135", + "name": "Linaon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.94990000", + "longitude": "122.44830000" + }, + { + "id": "83161", + "name": "Locmayan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.47260000", + "longitude": "122.51900000" + }, + { + "id": "83168", + "name": "Lono", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.51361000", + "longitude": "122.72972000" + }, + { + "id": "83169", + "name": "Lonoy", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.51222000", + "longitude": "122.55333000" + }, + { + "id": "83179", + "name": "Lopez Jaena", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.84780000", + "longitude": "123.41410000" + }, + { + "id": "83200", + "name": "Lucena", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.87940000", + "longitude": "122.59670000" + }, + { + "id": "83203", + "name": "Lucero", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.45420000", + "longitude": "122.46431000" + }, + { + "id": "83228", + "name": "Luna", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.96900000", + "longitude": "123.24190000" + }, + { + "id": "83245", + "name": "Lupo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.50760000", + "longitude": "122.47910000" + }, + { + "id": "83257", + "name": "Maao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.48960000", + "longitude": "122.99070000" + }, + { + "id": "83260", + "name": "Maasin", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.89250000", + "longitude": "122.43472000" + }, + { + "id": "83262", + "name": "Maayon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.38670000", + "longitude": "122.78590000" + }, + { + "id": "83276", + "name": "Mabini", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.79594000", + "longitude": "123.48460000" + }, + { + "id": "83308", + "name": "Madalag", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.89944000", + "longitude": "122.98280000" + }, + { + "id": "83323", + "name": "Magallon Cadre", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.28850000", + "longitude": "123.09220000" + }, + { + "id": "83332", + "name": "Magdalena", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.42360000", + "longitude": "121.97510000" + }, + { + "id": "83376", + "name": "Makato", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.71200000", + "longitude": "122.29220000" + }, + { + "id": "83387", + "name": "Malabonot", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.96817000", + "longitude": "121.92021000" + }, + { + "id": "83388", + "name": "Malabor", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.27292000", + "longitude": "122.04661000" + }, + { + "id": "83403", + "name": "Malangabang", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.23670000", + "longitude": "123.20620000" + }, + { + "id": "83415", + "name": "Malay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.90027000", + "longitude": "121.90911000" + }, + { + "id": "83419", + "name": "Malayo-an", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.09790000", + "longitude": "123.00910000" + }, + { + "id": "83434", + "name": "Malinao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.64390000", + "longitude": "122.30830000" + }, + { + "id": "83451", + "name": "Malocloc", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.50583000", + "longitude": "122.67833000" + }, + { + "id": "83452", + "name": "Maloco", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.78320000", + "longitude": "122.15200000" + }, + { + "id": "83470", + "name": "Mambagatan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.10930000", + "longitude": "122.88820000" + }, + { + "id": "83478", + "name": "Mambusao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.43355000", + "longitude": "122.59820000" + }, + { + "id": "83486", + "name": "Manalad", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.00560000", + "longitude": "122.77690000" + }, + { + "id": "83493", + "name": "Manapla", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.95803000", + "longitude": "123.12300000" + }, + { + "id": "83518", + "name": "Mangoso", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.41750000", + "longitude": "122.63820000" + }, + { + "id": "83522", + "name": "Manika", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.38801000", + "longitude": "122.27931000" + }, + { + "id": "83527", + "name": "Manjoy", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.35340000", + "longitude": "122.66630000" + }, + { + "id": "83529", + "name": "Manlucahoc", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.73990000", + "longitude": "122.49800000" + }, + { + "id": "83530", + "name": "Manoc-Manoc", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.94157000", + "longitude": "121.94281000" + }, + { + "id": "83535", + "name": "Mansilingan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.63111000", + "longitude": "122.97889000" + }, + { + "id": "83546", + "name": "Manup", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.53150000", + "longitude": "122.49800000" + }, + { + "id": "83553", + "name": "Mapili", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.10810000", + "longitude": "122.73930000" + }, + { + "id": "83559", + "name": "Maquiling", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.78094000", + "longitude": "123.39380000" + }, + { + "id": "83568", + "name": "Marawis", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.24530000", + "longitude": "122.88690000" + }, + { + "id": "83579", + "name": "Maribong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.10000000", + "longitude": "122.53333000" + }, + { + "id": "83581", + "name": "Maricalom", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.70490000", + "longitude": "122.41880000" + }, + { + "id": "83592", + "name": "Masaling", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.98180000", + "longitude": "122.53690000" + }, + { + "id": "83609", + "name": "Masonogan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.36860000", + "longitude": "122.67530000" + }, + { + "id": "83666", + "name": "Miagao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.64420000", + "longitude": "122.23520000" + }, + { + "id": "83667", + "name": "Mianay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.47160000", + "longitude": "122.70110000" + }, + { + "id": "83675", + "name": "Mina", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.93130000", + "longitude": "122.57450000" + }, + { + "id": "83682", + "name": "Minapasoc", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.69885000", + "longitude": "123.34900000" + }, + { + "id": "83689", + "name": "Minuyan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.51366000", + "longitude": "123.10490000" + }, + { + "id": "83690", + "name": "Miranda", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.30470000", + "longitude": "122.87780000" + }, + { + "id": "83694", + "name": "Moises Padilla", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.27028000", + "longitude": "123.07806000" + }, + { + "id": "83703", + "name": "Monpon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.91194000", + "longitude": "122.63778000" + }, + { + "id": "83708", + "name": "Montilla", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.20270000", + "longitude": "122.92610000" + }, + { + "id": "83710", + "name": "Morales", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.54560000", + "longitude": "122.37640000" + }, + { + "id": "83712", + "name": "Morobuan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.62566000", + "longitude": "122.55470000" + }, + { + "id": "83726", + "name": "Murcia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.60516000", + "longitude": "123.04170000" + }, + { + "id": "83736", + "name": "Nabas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.83100000", + "longitude": "122.08700000" + }, + { + "id": "83738", + "name": "Nabulao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.66160000", + "longitude": "122.45770000" + }, + { + "id": "83758", + "name": "Naili", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.76660000", + "longitude": "122.17650000" + }, + { + "id": "83760", + "name": "Naisud", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.80580000", + "longitude": "122.19390000" + }, + { + "id": "83774", + "name": "Nangka", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.85564000", + "longitude": "123.03590000" + }, + { + "id": "83777", + "name": "Napnapan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.70845000", + "longitude": "122.39300000" + }, + { + "id": "83778", + "name": "Napoles", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.50400000", + "longitude": "122.89790000" + }, + { + "id": "83787", + "name": "Nato", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.14920000", + "longitude": "122.86190000" + }, + { + "id": "83810", + "name": "New Pandanon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.55696000", + "longitude": "123.14750000" + }, + { + "id": "83813", + "name": "New Washington", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.65080000", + "longitude": "122.43220000" + }, + { + "id": "83827", + "name": "Nueva Valencia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.51077000", + "longitude": "122.53150000" + }, + { + "id": "83831", + "name": "Numancia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.70590000", + "longitude": "122.32840000" + }, + { + "id": "83839", + "name": "Ochanado", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.61390000", + "longitude": "122.48330000" + }, + { + "id": "83843", + "name": "Odiong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.28580000", + "longitude": "123.05260000" + }, + { + "id": "83848", + "name": "Ogtongon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.77334000", + "longitude": "123.52000000" + }, + { + "id": "83854", + "name": "Ondoy", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.81917000", + "longitude": "122.12611000" + }, + { + "id": "83856", + "name": "Oracon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.47820000", + "longitude": "122.58390000" + }, + { + "id": "83861", + "name": "Orong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.93730000", + "longitude": "122.82900000" + }, + { + "id": "83868", + "name": "Oton", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.69306000", + "longitude": "122.47361000" + }, + { + "id": "83875", + "name": "Pacol", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.45000000", + "longitude": "122.81667000" + }, + { + "id": "83905", + "name": "Pakiad", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.71278000", + "longitude": "122.52417000" + }, + { + "id": "83911", + "name": "Palampas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.52506000", + "longitude": "123.42080000" + }, + { + "id": "83953", + "name": "Panay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.55778000", + "longitude": "122.79417000" + }, + { + "id": "83954", + "name": "Panayacan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.76030000", + "longitude": "122.22360000" + }, + { + "id": "83962", + "name": "Pandan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.71950000", + "longitude": "122.09490000" + }, + { + "id": "83991", + "name": "Panitan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.46600000", + "longitude": "122.77250000" + }, + { + "id": "84015", + "name": "Paraiso", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.88490000", + "longitude": "123.36270000" + }, + { + "id": "84024", + "name": "Parion", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.47480000", + "longitude": "122.69720000" + }, + { + "id": "84031", + "name": "Pasil", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.83780000", + "longitude": "122.60980000" + }, + { + "id": "84034", + "name": "Passi", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.10778000", + "longitude": "122.64194000" + }, + { + "id": "84045", + "name": "Patique", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.23700000", + "longitude": "122.89930000" + }, + { + "id": "84047", + "name": "Patnongon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.91320000", + "longitude": "121.99370000" + }, + { + "id": "84049", + "name": "Patonan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.56816000", + "longitude": "123.47230000" + }, + { + "id": "84052", + "name": "Patria", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.74030000", + "longitude": "122.01710000" + }, + { + "id": "84058", + "name": "Pavia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.77611000", + "longitude": "122.54556000" + }, + { + "id": "84059", + "name": "Pawa", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.56285000", + "longitude": "122.81736000" + }, + { + "id": "84067", + "name": "Payao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.17850000", + "longitude": "122.92360000" + }, + { + "id": "84080", + "name": "Piape I", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.72880000", + "longitude": "121.97240000" + }, + { + "id": "84125", + "name": "Piña", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.63956000", + "longitude": "122.63820000" + }, + { + "id": "84089", + "name": "Pilar", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.48700000", + "longitude": "122.99630000" + }, + { + "id": "84095", + "name": "Pili", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.11960000", + "longitude": "123.01470000" + }, + { + "id": "84133", + "name": "Plaridel", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.89740000", + "longitude": "123.48940000" + }, + { + "id": "84136", + "name": "Platagata", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.30300000", + "longitude": "123.15670000" + }, + { + "id": "84148", + "name": "Polo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.58440000", + "longitude": "122.31220000" + }, + { + "id": "84155", + "name": "Polopina", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.20680000", + "longitude": "123.16590000" + }, + { + "id": "84158", + "name": "Ponong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.08290000", + "longitude": "122.62610000" + }, + { + "id": "84161", + "name": "Pontevedra", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.37460000", + "longitude": "122.86820000" + }, + { + "id": "84169", + "name": "Pototan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.94370000", + "longitude": "122.63520000" + }, + { + "id": "84173", + "name": "President Roxas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.43100000", + "longitude": "122.92790000" + }, + { + "id": "84179", + "name": "Prosperidad", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.51596000", + "longitude": "123.30850000" + }, + { + "id": "84184", + "name": "Province of Aklan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.66667000", + "longitude": "122.33333000" + }, + { + "id": "84186", + "name": "Province of Antique", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.16667000", + "longitude": "122.08333000" + }, + { + "id": "84199", + "name": "Province of Capiz", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.40000000", + "longitude": "122.56667000" + }, + { + "id": "84208", + "name": "Province of Guimaras", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.58092000", + "longitude": "122.62621000" + }, + { + "id": "84212", + "name": "Province of Iloilo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.00000000", + "longitude": "122.66667000" + }, + { + "id": "84226", + "name": "Province of Negros Occidental", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.41667000", + "longitude": "123.00000000" + }, + { + "id": "84272", + "name": "Pulupandan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.52030000", + "longitude": "122.80170000" + }, + { + "id": "84274", + "name": "Punao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.56516000", + "longitude": "123.40800000" + }, + { + "id": "84297", + "name": "Quezon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.43617000", + "longitude": "123.26040000" + }, + { + "id": "84307", + "name": "Quinagaringan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.12220000", + "longitude": "122.58750000" + }, + { + "id": "84312", + "name": "Quipot", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.28333000", + "longitude": "123.00000000" + }, + { + "id": "84346", + "name": "Rizal", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.88070000", + "longitude": "123.41780000" + }, + { + "id": "84358", + "name": "Rosario", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.58320000", + "longitude": "122.30190000" + }, + { + "id": "84363", + "name": "Roxas City", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.58528000", + "longitude": "122.75111000" + }, + { + "id": "84383", + "name": "Sagang", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.36120000", + "longitude": "123.07220000" + }, + { + "id": "84385", + "name": "Sagasa", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.46800000", + "longitude": "122.89390000" + }, + { + "id": "84387", + "name": "Sagay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.94472000", + "longitude": "123.42417000" + }, + { + "id": "84400", + "name": "Salamanca", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.74655000", + "longitude": "123.53000000" + }, + { + "id": "84417", + "name": "Salvacion", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.68333000", + "longitude": "122.61667000" + }, + { + "id": "84451", + "name": "San Antonio", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.80000000", + "longitude": "122.45000000" + }, + { + "id": "84466", + "name": "San Dionisio", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.27100000", + "longitude": "123.09640000" + }, + { + "id": "84469", + "name": "San Enrique", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.41610000", + "longitude": "122.85040000" + }, + { + "id": "84477", + "name": "San Fernando", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.70900000", + "longitude": "123.06950000" + }, + { + "id": "84487", + "name": "San Francisco", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.31961000", + "longitude": "122.05051000" + }, + { + "id": "84511", + "name": "San Joaquin", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.58800000", + "longitude": "122.13970000" + }, + { + "id": "84515", + "name": "San Jose", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.77028000", + "longitude": "122.53389000" + }, + { + "id": "84527", + "name": "San Juan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.38650000", + "longitude": "122.86510000" + }, + { + "id": "84558", + "name": "San Miguel", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.78000000", + "longitude": "122.46556000" + }, + { + "id": "84570", + "name": "San Nicolas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.68444000", + "longitude": "122.49556000" + }, + { + "id": "84574", + "name": "San Pablo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.91234000", + "longitude": "123.14180000" + }, + { + "id": "84583", + "name": "San Pedro", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.80180000", + "longitude": "121.94990000" + }, + { + "id": "84594", + "name": "San Rafael", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.17810000", + "longitude": "122.82730000" + }, + { + "id": "84601", + "name": "San Remigio", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.83278000", + "longitude": "122.08750000" + }, + { + "id": "84611", + "name": "San Salvador", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.00278000", + "longitude": "122.83528000" + }, + { + "id": "84642", + "name": "Santa Angel", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.30680000", + "longitude": "122.64080000" + }, + { + "id": "84643", + "name": "Santa Barbara", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.82306000", + "longitude": "122.53444000" + }, + { + "id": "84663", + "name": "Santa Cruz", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.63376000", + "longitude": "123.08210000" + }, + { + "id": "84690", + "name": "Santa Monica", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.73639000", + "longitude": "122.45333000" + }, + { + "id": "84703", + "name": "Santa Teresa", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.58546000", + "longitude": "122.56040000" + }, + { + "id": "84711", + "name": "Santiago", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.05806000", + "longitude": "122.91167000" + }, + { + "id": "84736", + "name": "Santol", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.17250000", + "longitude": "122.99470000" + }, + { + "id": "84745", + "name": "Sapian", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.49430000", + "longitude": "122.60270000" + }, + { + "id": "84748", + "name": "Sara", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.25790000", + "longitude": "123.01380000" + }, + { + "id": "84750", + "name": "Saravia", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.87754000", + "longitude": "122.96770000" + }, + { + "id": "84756", + "name": "Sebaste", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.59010000", + "longitude": "122.09450000" + }, + { + "id": "84757", + "name": "Semirara", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "12.06967000", + "longitude": "121.39861000" + }, + { + "id": "84769", + "name": "Sibaguan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.55778000", + "longitude": "122.71389000" + }, + { + "id": "84770", + "name": "Sibalom", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.79000000", + "longitude": "122.01780000" + }, + { + "id": "84772", + "name": "Sibucao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.41790000", + "longitude": "122.88700000" + }, + { + "id": "84786", + "name": "Sigma", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.42140000", + "longitude": "122.66620000" + }, + { + "id": "84825", + "name": "Sipalay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75194000", + "longitude": "122.40417000" + }, + { + "id": "84852", + "name": "Suay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.05330000", + "longitude": "122.84230000" + }, + { + "id": "84867", + "name": "Sulangan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.83000000", + "longitude": "122.69000000" + }, + { + "id": "84874", + "name": "Sumag", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.60139000", + "longitude": "122.91924000" + }, + { + "id": "84910", + "name": "Tabu", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.89230000", + "longitude": "122.70980000" + }, + { + "id": "84913", + "name": "Tabuc Pontevedra", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.48333000", + "longitude": "122.81667000" + }, + { + "id": "84960", + "name": "Talaban", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.12540000", + "longitude": "122.86710000" + }, + { + "id": "84979", + "name": "Talisay", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.73750000", + "longitude": "122.96660000" + }, + { + "id": "84989", + "name": "Taloc", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.57460000", + "longitude": "122.89540000" + }, + { + "id": "84990", + "name": "Talokgañgan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.00778000", + "longitude": "122.84500000" + }, + { + "id": "84992", + "name": "Talon", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.56000000", + "longitude": "122.68111000" + }, + { + "id": "85004", + "name": "Tambac", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.67050000", + "longitude": "122.41120000" + }, + { + "id": "85007", + "name": "Tambalisa", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.26980000", + "longitude": "123.16500000" + }, + { + "id": "85017", + "name": "Tamlang", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.82544000", + "longitude": "123.45410000" + }, + { + "id": "85035", + "name": "Tangalan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.77890000", + "longitude": "122.26340000" + }, + { + "id": "85045", + "name": "Tanza", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.83484000", + "longitude": "123.01100000" + }, + { + "id": "85047", + "name": "Tapas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.26130000", + "longitude": "122.53640000" + }, + { + "id": "85059", + "name": "Tarong", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.53140000", + "longitude": "123.13200000" + }, + { + "id": "85095", + "name": "Tibiao", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.29152000", + "longitude": "122.03541000" + }, + { + "id": "85105", + "name": "Tigbauan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.67466000", + "longitude": "122.37760000" + }, + { + "id": "85108", + "name": "Tiglauigan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.95270000", + "longitude": "123.35750000" + }, + { + "id": "85118", + "name": "Tigum", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.78333000", + "longitude": "122.56667000" + }, + { + "id": "85121", + "name": "Tiling", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.97360000", + "longitude": "122.65440000" + }, + { + "id": "85123", + "name": "Timpas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.47900000", + "longitude": "122.73240000" + }, + { + "id": "85138", + "name": "Tinogboc", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "12.00737000", + "longitude": "121.41221000" + }, + { + "id": "85139", + "name": "Tinongan", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.21500000", + "longitude": "123.03528000" + }, + { + "id": "85147", + "name": "Tiring", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.85000000", + "longitude": "122.50670000" + }, + { + "id": "85150", + "name": "Tiwi", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.92972000", + "longitude": "122.73417000" + }, + { + "id": "85151", + "name": "Tobias Fornier", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.51500000", + "longitude": "121.94610000" + }, + { + "id": "85152", + "name": "Toboso", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.71435000", + "longitude": "123.51620000" + }, + { + "id": "85173", + "name": "Tortosa", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.93294000", + "longitude": "123.09000000" + }, + { + "id": "85177", + "name": "Trapiche", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.68417000", + "longitude": "122.43222000" + }, + { + "id": "85207", + "name": "Tugas", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.61300000", + "longitude": "122.38220000" + }, + { + "id": "85224", + "name": "Tumcon Ilawod", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.91667000", + "longitude": "122.66667000" + }, + { + "id": "85238", + "name": "Tuyum", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.97690000", + "longitude": "122.55820000" + }, + { + "id": "85240", + "name": "Ualog", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.57396000", + "longitude": "123.39330000" + }, + { + "id": "85252", + "name": "Ungca", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.75000000", + "longitude": "122.55000000" + }, + { + "id": "85255", + "name": "Unidos", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.90677000", + "longitude": "122.00051000" + }, + { + "id": "85257", + "name": "Union", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.76120000", + "longitude": "121.89630000" + }, + { + "id": "85275", + "name": "Valderrama", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.40591000", + "longitude": "122.08371000" + }, + { + "id": "85278", + "name": "Valladolid", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.46160000", + "longitude": "122.82450000" + }, + { + "id": "85286", + "name": "Victorias", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.90154000", + "longitude": "123.07050000" + }, + { + "id": "85287", + "name": "Viejo Daan Banua", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.90354000", + "longitude": "123.05970000" + }, + { + "id": "85307", + "name": "Vista Alegre", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "9.99840000", + "longitude": "122.76630000" + }, + { + "id": "85309", + "name": "Vito", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.90310000", + "longitude": "123.51540000" + }, + { + "id": "85318", + "name": "Yapak", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "11.95000000", + "longitude": "121.93333000" + }, + { + "id": "85321", + "name": "Yubo", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.38960000", + "longitude": "123.06900000" + }, + { + "id": "85327", + "name": "Zarraga", + "state_id": 1336, + "state_code": "ANT", + "country_id": 174, + "country_code": "PH", + "latitude": "10.81972000", + "longitude": "122.60806000" + }, + { + "id": "81249", + "name": "Ampatuan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.86667000", + "longitude": "124.46667000" + }, + { + "id": "81260", + "name": "Andalan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.95944000", + "longitude": "121.39028000" + }, + { + "id": "81289", + "name": "Anuling", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.03556000", + "longitude": "121.00667000" + }, + { + "id": "81339", + "name": "Awang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.15306000", + "longitude": "124.22111000" + }, + { + "id": "81356", + "name": "Bacayawan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.76667000", + "longitude": "124.23333000" + }, + { + "id": "81379", + "name": "Badak", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.84722000", + "longitude": "124.72056000" + }, + { + "id": "81392", + "name": "Bagan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.92556000", + "longitude": "124.42028000" + }, + { + "id": "81424", + "name": "Baka", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.27611000", + "longitude": "124.26417000" + }, + { + "id": "81427", + "name": "Bakung", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "4.89111000", + "longitude": "119.79417000" + }, + { + "id": "81431", + "name": "Balabagan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.52639000", + "longitude": "124.11417000" + }, + { + "id": "81449", + "name": "Balas", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.68750000", + "longitude": "122.13806000" + }, + { + "id": "81472", + "name": "Balimbing", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.08250000", + "longitude": "119.96583000" + }, + { + "id": "81474", + "name": "Balindong", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.91667000", + "longitude": "124.20028000" + }, + { + "id": "81531", + "name": "Bangkal", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.06667000", + "longitude": "121.06667000" + }, + { + "id": "81542", + "name": "Bankaw", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.01920000", + "longitude": "120.00910000" + }, + { + "id": "81575", + "name": "Barira", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.48722000", + "longitude": "124.29917000" + }, + { + "id": "81590", + "name": "Barurao", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.89806000", + "longitude": "124.59750000" + }, + { + "id": "81631", + "name": "Bato Bato", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.03440000", + "longitude": "120.94630000" + }, + { + "id": "81646", + "name": "Baunu-Timbangan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.00547000", + "longitude": "120.99406000" + }, + { + "id": "81649", + "name": "Bawison", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.93750000", + "longitude": "120.87450000" + }, + { + "id": "81656", + "name": "Bayang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.79278000", + "longitude": "124.19167000" + }, + { + "id": "81657", + "name": "Bayanga", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.52139000", + "longitude": "124.25222000" + }, + { + "id": "81675", + "name": "Begang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.69090000", + "longitude": "122.01680000" + }, + { + "id": "81720", + "name": "Binidayan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.80668000", + "longitude": "124.16846000" + }, + { + "id": "81730", + "name": "Binuang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.95694000", + "longitude": "121.06000000" + }, + { + "id": "81751", + "name": "Blinsung", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.01806000", + "longitude": "124.18056000" + }, + { + "id": "81789", + "name": "Bongao", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.02917000", + "longitude": "119.77306000" + }, + { + "id": "81790", + "name": "Bongued", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.11667000", + "longitude": "124.40000000" + }, + { + "id": "81813", + "name": "Buadiposo-Buntong", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.96667000", + "longitude": "124.38333000" + }, + { + "id": "81817", + "name": "Bualan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.75000000", + "longitude": "124.26667000" + }, + { + "id": "81818", + "name": "Buan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.16080000", + "longitude": "120.04260000" + }, + { + "id": "81821", + "name": "Buansa", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.02580000", + "longitude": "120.96140000" + }, + { + "id": "81826", + "name": "Budta", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.20417000", + "longitude": "124.43972000" + }, + { + "id": "81843", + "name": "Bugasan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.44083000", + "longitude": "124.25917000" + }, + { + "id": "81873", + "name": "Buldon", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.50972000", + "longitude": "124.37139000" + }, + { + "id": "81876", + "name": "Buliok", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.01667000", + "longitude": "124.70000000" + }, + { + "id": "81879", + "name": "Bulit", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.11528000", + "longitude": "124.78944000" + }, + { + "id": "81886", + "name": "Buluan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.72028000", + "longitude": "124.80194000" + }, + { + "id": "81891", + "name": "Bumbaran", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.80000000", + "longitude": "124.65000000" + }, + { + "id": "81923", + "name": "Butig", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.72444000", + "longitude": "124.30083000" + }, + { + "id": "82024", + "name": "Calanogas", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.75000000", + "longitude": "124.10000000" + }, + { + "id": "82245", + "name": "City of Isabela", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.70407000", + "longitude": "121.97117000" + }, + { + "id": "82262", + "name": "Colonia", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.64361000", + "longitude": "122.15750000" + }, + { + "id": "82302", + "name": "Cotabato", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.22361000", + "longitude": "124.24639000" + }, + { + "id": "82329", + "name": "Dado", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.05000000", + "longitude": "124.45972000" + }, + { + "id": "82330", + "name": "Dadus", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.05750000", + "longitude": "124.32167000" + }, + { + "id": "82347", + "name": "Dalican", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.96667000", + "longitude": "124.40000000" + }, + { + "id": "82353", + "name": "Dalumangcob", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.21667000", + "longitude": "124.30000000" + }, + { + "id": "82357", + "name": "Damabalas", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.01556000", + "longitude": "124.51417000" + }, + { + "id": "82358", + "name": "Damatulan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.03889000", + "longitude": "124.48278000" + }, + { + "id": "82391", + "name": "Datu Paglas", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.76667000", + "longitude": "124.85000000" + }, + { + "id": "82392", + "name": "Datu Piang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.02833000", + "longitude": "124.50250000" + }, + { + "id": "82422", + "name": "Digal", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.75306000", + "longitude": "124.79639000" + }, + { + "id": "82436", + "name": "Dinaig", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.02556000", + "longitude": "124.31500000" + }, + { + "id": "82439", + "name": "Dinganen", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.32833000", + "longitude": "124.37833000" + }, + { + "id": "82500", + "name": "Ebcor Town", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.44056000", + "longitude": "124.39722000" + }, + { + "id": "82552", + "name": "Gadung", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.80250000", + "longitude": "124.02000000" + }, + { + "id": "82562", + "name": "Ganassi", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.82694000", + "longitude": "124.10344000" + }, + { + "id": "82564", + "name": "Gang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.24583000", + "longitude": "124.26639000" + }, + { + "id": "82643", + "name": "Guiong", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.41861000", + "longitude": "122.02583000" + }, + { + "id": "82714", + "name": "Idtig", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.79889000", + "longitude": "124.77278000" + }, + { + "id": "82808", + "name": "Jolo", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.05222000", + "longitude": "121.00222000" + }, + { + "id": "82825", + "name": "Kabasalan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.06667000", + "longitude": "124.65000000" + }, + { + "id": "82836", + "name": "Kagay", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.00880000", + "longitude": "120.90740000" + }, + { + "id": "82837", + "name": "Kajatian", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.03111000", + "longitude": "120.99194000" + }, + { + "id": "82842", + "name": "Kalang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.91972000", + "longitude": "121.36306000" + }, + { + "id": "82847", + "name": "Kalbugan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.95972000", + "longitude": "124.65917000" + }, + { + "id": "82858", + "name": "Kambing", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.94646000", + "longitude": "121.30757000" + }, + { + "id": "82862", + "name": "Kanlagay", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.87568000", + "longitude": "121.29146000" + }, + { + "id": "82864", + "name": "Kansipati", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.00111000", + "longitude": "121.23444000" + }, + { + "id": "82874", + "name": "Karungdong", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.88440000", + "longitude": "121.26300000" + }, + { + "id": "82877", + "name": "Katico", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.76015000", + "longitude": "124.73214000" + }, + { + "id": "82878", + "name": "Katidtuan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.18861000", + "longitude": "124.31528000" + }, + { + "id": "82882", + "name": "Katuli", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.43333000", + "longitude": "124.21667000" + }, + { + "id": "82884", + "name": "Kauran", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.79454000", + "longitude": "124.47034000" + }, + { + "id": "82915", + "name": "Kitango", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.94833000", + "longitude": "124.44111000" + }, + { + "id": "82917", + "name": "Kitapak", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.95333000", + "longitude": "124.42556000" + }, + { + "id": "82923", + "name": "Kolape", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.07028000", + "longitude": "119.89694000" + }, + { + "id": "82930", + "name": "Kulase", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.90520000", + "longitude": "120.95690000" + }, + { + "id": "82931", + "name": "Kulay-Kulay", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.94528000", + "longitude": "121.23250000" + }, + { + "id": "82932", + "name": "Kulempang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.51944000", + "longitude": "124.38972000" + }, + { + "id": "82935", + "name": "Kungtad", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.55720000", + "longitude": "120.84720000" + }, + { + "id": "82967", + "name": "Labuñgan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.10306000", + "longitude": "124.23500000" + }, + { + "id": "83000", + "name": "Laminusa", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.55490000", + "longitude": "120.91360000" + }, + { + "id": "83003", + "name": "Lamitan City", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.65020000", + "longitude": "122.12952000" + }, + { + "id": "83015", + "name": "Langpas", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.97500000", + "longitude": "120.94900000" + }, + { + "id": "83017", + "name": "Languyan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.26180000", + "longitude": "120.08070000" + }, + { + "id": "83042", + "name": "Larap", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "4.76154000", + "longitude": "119.40511000" + }, + { + "id": "83048", + "name": "Latung", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.50000000", + "longitude": "120.88333000" + }, + { + "id": "83057", + "name": "Layog", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.07667000", + "longitude": "124.73056000" + }, + { + "id": "83107", + "name": "Ligayan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "4.65442000", + "longitude": "119.47062000" + }, + { + "id": "83121", + "name": "Limbo", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.25167000", + "longitude": "124.24389000" + }, + { + "id": "83150", + "name": "Litayan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.33583000", + "longitude": "124.03472000" + }, + { + "id": "83174", + "name": "Lookan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.03700000", + "longitude": "120.10270000" + }, + { + "id": "83190", + "name": "Lu-uk", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.96840000", + "longitude": "121.31220000" + }, + { + "id": "83208", + "name": "Lugus", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.70361000", + "longitude": "120.82028000" + }, + { + "id": "83216", + "name": "Lumbac", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.73417000", + "longitude": "124.25278000" + }, + { + "id": "83219", + "name": "Lumbatan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.78500000", + "longitude": "124.25639000" + }, + { + "id": "83221", + "name": "Lumbayanague", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.78250000", + "longitude": "124.28000000" + }, + { + "id": "83251", + "name": "Lutayan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.61890000", + "longitude": "124.88156000" + }, + { + "id": "83252", + "name": "Luuk Datan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "4.81194000", + "longitude": "119.84528000" + }, + { + "id": "83309", + "name": "Madalum", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.85420000", + "longitude": "124.12048000" + }, + { + "id": "83310", + "name": "Madamba", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.83889000", + "longitude": "124.11029000" + }, + { + "id": "83324", + "name": "Maganoy", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.86472000", + "longitude": "124.44167000" + }, + { + "id": "83356", + "name": "Mahala", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.91667000", + "longitude": "121.13333000" + }, + { + "id": "83367", + "name": "Maimbung", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.93329000", + "longitude": "121.02494000" + }, + { + "id": "83378", + "name": "Makir", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.03083000", + "longitude": "124.30417000" + }, + { + "id": "83384", + "name": "Malabang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.59028000", + "longitude": "124.07028000" + }, + { + "id": "83463", + "name": "Maluso", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.54300000", + "longitude": "121.87530000" + }, + { + "id": "83542", + "name": "Manubul", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.47320000", + "longitude": "120.79860000" + }, + { + "id": "83544", + "name": "Manuk Mangkaw", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "4.80000000", + "longitude": "119.85000000" + }, + { + "id": "83563", + "name": "Marantao", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.95000000", + "longitude": "124.23333000" + }, + { + "id": "83567", + "name": "Marawi City", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "8.00340000", + "longitude": "124.28395000" + }, + { + "id": "83587", + "name": "Marogong", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.66667000", + "longitude": "124.15000000" + }, + { + "id": "83588", + "name": "Marsada", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.93139000", + "longitude": "121.10694000" + }, + { + "id": "83605", + "name": "Masiu", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.81167000", + "longitude": "124.31750000" + }, + { + "id": "83620", + "name": "Matanog", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.51611000", + "longitude": "124.25639000" + }, + { + "id": "83621", + "name": "Mataya", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.47111000", + "longitude": "124.37194000" + }, + { + "id": "83636", + "name": "Mauboh", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.99000000", + "longitude": "121.09361000" + }, + { + "id": "83673", + "name": "Mileb", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.89861000", + "longitude": "124.58389000" + }, + { + "id": "83802", + "name": "New Batu Batu", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.06667000", + "longitude": "119.88333000" + }, + { + "id": "83833", + "name": "Nuyo", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.41806000", + "longitude": "124.41083000" + }, + { + "id": "83890", + "name": "Pagaluñgan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.14167000", + "longitude": "124.38056000" + }, + { + "id": "83888", + "name": "Pagalungan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.05667000", + "longitude": "124.70083000" + }, + { + "id": "83892", + "name": "Pagatin", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.97306000", + "longitude": "124.47528000" + }, + { + "id": "83901", + "name": "Paitan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.66005000", + "longitude": "124.87183000" + }, + { + "id": "83944", + "name": "Panabuan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.96160000", + "longitude": "120.96270000" + }, + { + "id": "83946", + "name": "Panadtaban", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.90083000", + "longitude": "124.64278000" + }, + { + "id": "83959", + "name": "Pandakan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.98889000", + "longitude": "121.16583000" + }, + { + "id": "83963", + "name": "Pandan Niog", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.22820000", + "longitude": "120.56310000" + }, + { + "id": "83967", + "name": "Pang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.94837000", + "longitude": "121.28830000" + }, + { + "id": "84017", + "name": "Parang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.37035000", + "longitude": "124.26973000" + }, + { + "id": "84020", + "name": "Parangan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.08389000", + "longitude": "119.93833000" + }, + { + "id": "84021", + "name": "Parian Dakula", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.55667000", + "longitude": "120.77194000" + }, + { + "id": "84042", + "name": "Patikul", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.08917000", + "longitude": "121.10528000" + }, + { + "id": "84061", + "name": "Pawak", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "8.01634000", + "longitude": "124.25647000" + }, + { + "id": "84071", + "name": "Payuhan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.94167000", + "longitude": "120.90111000" + }, + { + "id": "84085", + "name": "Pidsandawan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.93222000", + "longitude": "124.59083000" + }, + { + "id": "84107", + "name": "Pinaring", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.22889000", + "longitude": "124.31056000" + }, + { + "id": "84122", + "name": "Pitogo", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.88823000", + "longitude": "121.31215000" + }, + { + "id": "84146", + "name": "Polloc", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.35340000", + "longitude": "124.22088000" + }, + { + "id": "84188", + "name": "Province of Basilan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.54729000", + "longitude": "122.11853000" + }, + { + "id": "84217", + "name": "Province of Lanao del Sur", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.85250000", + "longitude": "124.45862000" + }, + { + "id": "84219", + "name": "Province of Maguindanao", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.13333000", + "longitude": "124.30000000" + }, + { + "id": "84245", + "name": "Province of Sulu", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.00000000", + "longitude": "121.00000000" + }, + { + "id": "84249", + "name": "Province of Tawi-Tawi", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.20570000", + "longitude": "120.02650000" + }, + { + "id": "84254", + "name": "Pualas", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.81624000", + "longitude": "124.07105000" + }, + { + "id": "84275", + "name": "Punay", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.96139000", + "longitude": "121.19806000" + }, + { + "id": "84322", + "name": "Ramain", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.97083000", + "longitude": "124.34528000" + }, + { + "id": "84337", + "name": "Rimpeso", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.02389000", + "longitude": "124.10028000" + }, + { + "id": "84353", + "name": "Rominimbang", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.50000000", + "longitude": "124.30000000" + }, + { + "id": "84384", + "name": "Sagasa", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.77405000", + "longitude": "124.57408000" + }, + { + "id": "84395", + "name": "Saguiaran", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "8.03306000", + "longitude": "124.27000000" + }, + { + "id": "84428", + "name": "Sambuluan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.88333000", + "longitude": "124.70000000" + }, + { + "id": "84630", + "name": "Sanga-Sanga", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.07250000", + "longitude": "119.78528000" + }, + { + "id": "84654", + "name": "Santa Clara", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.67820000", + "longitude": "122.06000000" + }, + { + "id": "84739", + "name": "Sapa", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.15440000", + "longitude": "120.32410000" + }, + { + "id": "84741", + "name": "Sapadun", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.48333000", + "longitude": "124.25000000" + }, + { + "id": "84754", + "name": "Satan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.86306000", + "longitude": "124.40861000" + }, + { + "id": "84758", + "name": "Semut", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.66361000", + "longitude": "122.21889000" + }, + { + "id": "84764", + "name": "Siasi", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.54620000", + "longitude": "120.81450000" + }, + { + "id": "84801", + "name": "Simbahan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.30320000", + "longitude": "120.58360000" + }, + { + "id": "84804", + "name": "Simuay", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.27722000", + "longitude": "124.30722000" + }, + { + "id": "84805", + "name": "Simunul", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "4.89833000", + "longitude": "119.84944000" + }, + { + "id": "84824", + "name": "Sionogan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.00528000", + "longitude": "120.94861000" + }, + { + "id": "84833", + "name": "Sitangkai", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "4.66115000", + "longitude": "119.39647000" + }, + { + "id": "84849", + "name": "South Upi", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.83333000", + "longitude": "124.15000000" + }, + { + "id": "84871", + "name": "Sultan Kudarat", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.22889000", + "longitude": "124.25778000" + }, + { + "id": "84878", + "name": "Sumisip", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.41972000", + "longitude": "121.97139000" + }, + { + "id": "84894", + "name": "Tabiauan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.02806000", + "longitude": "121.89355000" + }, + { + "id": "84901", + "name": "Tablas", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.62917000", + "longitude": "122.17472000" + }, + { + "id": "84928", + "name": "Taganak", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.07328000", + "longitude": "118.31226000" + }, + { + "id": "84954", + "name": "Tairan Camp", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.64020000", + "longitude": "121.83950000" + }, + { + "id": "84973", + "name": "Talayan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.98056000", + "longitude": "124.38194000" + }, + { + "id": "84977", + "name": "Talipao", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.97639000", + "longitude": "121.11611000" + }, + { + "id": "84978", + "name": "Talipaw", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.91000000", + "longitude": "121.09444000" + }, + { + "id": "84988", + "name": "Talitay", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.03333000", + "longitude": "124.70000000" + }, + { + "id": "85022", + "name": "Tampakan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "4.92278000", + "longitude": "119.79389000" + }, + { + "id": "85023", + "name": "Tamparan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.87917000", + "longitude": "124.33306000" + }, + { + "id": "85048", + "name": "Tapayan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.29444000", + "longitude": "124.26611000" + }, + { + "id": "85051", + "name": "Tapikan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.85194000", + "longitude": "124.32250000" + }, + { + "id": "85063", + "name": "Taungoh", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "4.70654000", + "longitude": "119.49296000" + }, + { + "id": "85064", + "name": "Taviran", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.12333000", + "longitude": "124.31972000" + }, + { + "id": "85142", + "name": "Tinutulan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.10000000", + "longitude": "124.65000000" + }, + { + "id": "85145", + "name": "Tipo-Tipo", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.58139000", + "longitude": "122.17944000" + }, + { + "id": "85168", + "name": "Tongouson", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.02140000", + "longitude": "120.13280000" + }, + { + "id": "85187", + "name": "Tubaran", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.76667000", + "longitude": "124.16667000" + }, + { + "id": "85199", + "name": "Tuburan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "6.64389000", + "longitude": "122.27361000" + }, + { + "id": "85208", + "name": "Tugaya", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.88277000", + "longitude": "124.17400000" + }, + { + "id": "85223", + "name": "Tumbagaan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.36560000", + "longitude": "120.31390000" + }, + { + "id": "85228", + "name": "Tunggol", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.84458000", + "longitude": "121.15436000" + }, + { + "id": "85229", + "name": "Tungol", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.08083000", + "longitude": "124.75306000" + }, + { + "id": "85253", + "name": "Ungus-Ungus", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "5.05083000", + "longitude": "119.83972000" + }, + { + "id": "85262", + "name": "Upi", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.02583000", + "longitude": "124.16667000" + }, + { + "id": "85272", + "name": "Uyaan", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.86306000", + "longitude": "124.04111000" + }, + { + "id": "85312", + "name": "Wao", + "state_id": 1316, + "state_code": "14", + "country_id": 174, + "country_code": "PH", + "latitude": "7.68333000", + "longitude": "124.66667000" + }, + { + "id": "81126", + "name": "Abaca", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.92040000", + "longitude": "124.50510000" + }, + { + "id": "81131", + "name": "Abis", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.71730000", + "longitude": "122.94380000" + }, + { + "id": "81136", + "name": "Abucayan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.92900000", + "longitude": "123.91460000" + }, + { + "id": "81146", + "name": "Adlaon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.30000000", + "longitude": "123.90000000" + }, + { + "id": "81166", + "name": "Agsungot", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.43444000", + "longitude": "123.90611000" + }, + { + "id": "81169", + "name": "Aguining", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.08610000", + "longitude": "124.59440000" + }, + { + "id": "81187", + "name": "Alangilan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.27930000", + "longitude": "122.87890000" + }, + { + "id": "81188", + "name": "Alangilanan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.64200000", + "longitude": "123.10590000" + }, + { + "id": "81193", + "name": "Alburquerque", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.60806000", + "longitude": "123.95806000" + }, + { + "id": "81196", + "name": "Alcantara", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.97556000", + "longitude": "123.40611000" + }, + { + "id": "81198", + "name": "Alcoy", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.71020000", + "longitude": "123.50670000" + }, + { + "id": "81201", + "name": "Alegria", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.72890000", + "longitude": "123.33980000" + }, + { + "id": "81214", + "name": "Alicia", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.89490000", + "longitude": "124.44220000" + }, + { + "id": "81229", + "name": "Aloguinsan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.22190000", + "longitude": "123.54830000" + }, + { + "id": "81231", + "name": "Alpaco", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.24378000", + "longitude": "123.68250000" + }, + { + "id": "81246", + "name": "Amdos", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.88210000", + "longitude": "123.09720000" + }, + { + "id": "81247", + "name": "Amio", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.35710000", + "longitude": "122.94130000" + }, + { + "id": "81258", + "name": "Anda", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.74600000", + "longitude": "124.57670000" + }, + { + "id": "81275", + "name": "Anonang", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.00000000", + "longitude": "124.03333000" + }, + { + "id": "81276", + "name": "Anopog", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.25000000", + "longitude": "123.25000000" + }, + { + "id": "81279", + "name": "Antequera", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.78090000", + "longitude": "123.89880000" + }, + { + "id": "81281", + "name": "Antipolo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.16667000", + "longitude": "123.95000000" + }, + { + "id": "81293", + "name": "Apas", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.34076000", + "longitude": "123.90261000" + }, + { + "id": "81298", + "name": "Apoya", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.22070000", + "longitude": "122.90530000" + }, + { + "id": "81312", + "name": "Argao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.87944000", + "longitude": "123.59556000" + }, + { + "id": "81323", + "name": "Asturias", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.56690000", + "longitude": "123.71610000" + }, + { + "id": "81328", + "name": "Atop-atop", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.23220000", + "longitude": "123.76020000" + }, + { + "id": "81342", + "name": "Ayungon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.85890000", + "longitude": "123.14440000" + }, + { + "id": "81344", + "name": "Azagra", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.47790000", + "longitude": "123.13670000" + }, + { + "id": "81357", + "name": "Bachauan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.20670000", + "longitude": "123.96340000" + }, + { + "id": "81358", + "name": "Baclayon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.62639000", + "longitude": "123.89417000" + }, + { + "id": "81369", + "name": "Bacong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.73930000", + "longitude": "124.56560000" + }, + { + "id": "81381", + "name": "Badian", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.86472000", + "longitude": "123.39639000" + }, + { + "id": "81386", + "name": "Bagacay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.86640000", + "longitude": "123.91800000" + }, + { + "id": "81394", + "name": "Bagay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.19640000", + "longitude": "124.03500000" + }, + { + "id": "81405", + "name": "Bagtic", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.68640000", + "longitude": "123.01220000" + }, + { + "id": "81422", + "name": "Bairan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.19718000", + "longitude": "123.72710000" + }, + { + "id": "81423", + "name": "Bais", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.59111000", + "longitude": "123.12278000" + }, + { + "id": "81428", + "name": "Bal-os", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.44160000", + "longitude": "122.62570000" + }, + { + "id": "81439", + "name": "Balamban", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.50390000", + "longitude": "123.71560000" + }, + { + "id": "81457", + "name": "Balayong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.47440000", + "longitude": "123.06230000" + }, + { + "id": "81471", + "name": "Balilihan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75610000", + "longitude": "123.97300000" + }, + { + "id": "81492", + "name": "Balogo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.11480000", + "longitude": "123.17060000" + }, + { + "id": "81502", + "name": "Balud", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.14760000", + "longitude": "123.69530000" + }, + { + "id": "81536", + "name": "Banhigan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.85903000", + "longitude": "123.38926000" + }, + { + "id": "81539", + "name": "Banilad", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.27860000", + "longitude": "123.29360000" + }, + { + "id": "81553", + "name": "Bantayan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.16830000", + "longitude": "123.72230000" + }, + { + "id": "81574", + "name": "Barili", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.11500000", + "longitude": "123.51030000" + }, + { + "id": "81594", + "name": "Basak", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.22640000", + "longitude": "123.30640000" + }, + { + "id": "81596", + "name": "Basay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.40870000", + "longitude": "122.64000000" + }, + { + "id": "81599", + "name": "Basdiot", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.94718000", + "longitude": "123.37515000" + }, + { + "id": "81622", + "name": "Bateria", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.14160000", + "longitude": "124.02670000" + }, + { + "id": "81636", + "name": "Batuan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.78080000", + "longitude": "124.14840000" + }, + { + "id": "81643", + "name": "Baud", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.21110000", + "longitude": "123.70310000" + }, + { + "id": "81644", + "name": "Baugo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.31745000", + "longitude": "123.91900000" + }, + { + "id": "81661", + "name": "Bayawan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.36490000", + "longitude": "122.80400000" + }, + { + "id": "81673", + "name": "Becerril", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.65310000", + "longitude": "123.43440000" + }, + { + "id": "81681", + "name": "Biabas", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.80000000", + "longitude": "124.46667000" + }, + { + "id": "81685", + "name": "Biasong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.52290000", + "longitude": "123.73600000" + }, + { + "id": "81690", + "name": "Bien Unido", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.13729000", + "longitude": "124.37761000" + }, + { + "id": "81697", + "name": "Biking", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.59382000", + "longitude": "123.84303000" + }, + { + "id": "81701", + "name": "Bilar", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.70825000", + "longitude": "124.10717000" + }, + { + "id": "81723", + "name": "Binlod", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.91845000", + "longitude": "123.60743000" + }, + { + "id": "81745", + "name": "Biton", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.23279000", + "longitude": "123.99930000" + }, + { + "id": "81746", + "name": "Bitoon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.08040000", + "longitude": "123.45870000" + }, + { + "id": "81761", + "name": "Bogo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.85686000", + "longitude": "123.56417000" + }, + { + "id": "81763", + "name": "Bohol", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.83333000", + "longitude": "124.16667000" + }, + { + "id": "81772", + "name": "Bolisong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.69111000", + "longitude": "123.15167000" + }, + { + "id": "81774", + "name": "Boljoon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.62810000", + "longitude": "123.47850000" + }, + { + "id": "81783", + "name": "Bonawon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.13400000", + "longitude": "122.91930000" + }, + { + "id": "81784", + "name": "Bonbon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.22450000", + "longitude": "123.55730000" + }, + { + "id": "81794", + "name": "Bood", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.74508000", + "longitude": "123.82783000" + }, + { + "id": "81796", + "name": "Borbon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.83800000", + "longitude": "124.02970000" + }, + { + "id": "81803", + "name": "Botigues", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.09950000", + "longitude": "123.66750000" + }, + { + "id": "81815", + "name": "Buagsong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.25302000", + "longitude": "123.93909000" + }, + { + "id": "81820", + "name": "Buanoy", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.46746000", + "longitude": "123.69990000" + }, + { + "id": "81830", + "name": "Buenavista", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.13790000", + "longitude": "123.24390000" + }, + { + "id": "81842", + "name": "Bugas", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.89804000", + "longitude": "123.40492000" + }, + { + "id": "81849", + "name": "Bugsoc", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.78340000", + "longitude": "124.27120000" + }, + { + "id": "81869", + "name": "Bulasa", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.93206000", + "longitude": "123.61802000" + }, + { + "id": "81882", + "name": "Bulod", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.68333000", + "longitude": "123.15000000" + }, + { + "id": "81941", + "name": "Cabalawan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.74139000", + "longitude": "123.95250000" + }, + { + "id": "81947", + "name": "Cabangahan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.07810000", + "longitude": "122.94690000" + }, + { + "id": "81981", + "name": "Cabul-an", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.15684000", + "longitude": "124.04397000" + }, + { + "id": "82015", + "name": "Calamba", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.17550000", + "longitude": "123.28260000" + }, + { + "id": "82031", + "name": "Calape", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.89220000", + "longitude": "123.87480000" + }, + { + "id": "82048", + "name": "Calero", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.37331000", + "longitude": "123.99786000" + }, + { + "id": "82051", + "name": "Calidñgan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.10000000", + "longitude": "123.63333000" + }, + { + "id": "82057", + "name": "Calituban", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.23995000", + "longitude": "124.29190000" + }, + { + "id": "82069", + "name": "Calumboyan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.79129000", + "longitude": "124.02749000" + }, + { + "id": "82082", + "name": "Camambugan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.05844000", + "longitude": "124.43811000" + }, + { + "id": "82085", + "name": "Cambanay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.54361000", + "longitude": "123.98611000" + }, + { + "id": "82095", + "name": "Campoyo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.65640000", + "longitude": "123.14790000" + }, + { + "id": "82096", + "name": "Campusong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.81583000", + "longitude": "124.03222000" + }, + { + "id": "82099", + "name": "Can-asujan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.12990000", + "longitude": "123.65740000" + }, + { + "id": "82103", + "name": "Canauay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.06510000", + "longitude": "123.05240000" + }, + { + "id": "82106", + "name": "Candabong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.73430000", + "longitude": "124.53830000" + }, + { + "id": "82111", + "name": "Candijay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.81820000", + "longitude": "124.49770000" + }, + { + "id": "82115", + "name": "Canhaway", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75010000", + "longitude": "124.47220000" + }, + { + "id": "82117", + "name": "Canjulao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.66050000", + "longitude": "124.35320000" + }, + { + "id": "82118", + "name": "Canlaon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.38697000", + "longitude": "123.22270000" + }, + { + "id": "82119", + "name": "Canmaya Diot", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.93840000", + "longitude": "124.09420000" + }, + { + "id": "82124", + "name": "Cansuje", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.92314000", + "longitude": "123.49629000" + }, + { + "id": "82125", + "name": "Cantao-an", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.24258000", + "longitude": "123.74960000" + }, + { + "id": "82157", + "name": "Carcar", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.10610000", + "longitude": "123.64020000" + }, + { + "id": "82166", + "name": "Carmelo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.70510000", + "longitude": "123.79350000" + }, + { + "id": "82170", + "name": "Carmen", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.82230000", + "longitude": "124.19640000" + }, + { + "id": "82187", + "name": "Casala-an", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.11667000", + "longitude": "123.05000000" + }, + { + "id": "82189", + "name": "Casay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.82040000", + "longitude": "123.54960000" + }, + { + "id": "82205", + "name": "Catarman", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.60169000", + "longitude": "123.86111000" + }, + { + "id": "82212", + "name": "Caticugan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.10000000", + "longitude": "123.00000000" + }, + { + "id": "82213", + "name": "Catigbian", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.85010000", + "longitude": "123.99940000" + }, + { + "id": "82215", + "name": "Catmon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.71667000", + "longitude": "124.00000000" + }, + { + "id": "82216", + "name": "Catmondaan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.68692000", + "longitude": "124.01494000" + }, + { + "id": "82221", + "name": "Catungawan Sur", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.78170000", + "longitude": "124.46930000" + }, + { + "id": "82228", + "name": "Cawayan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.80391000", + "longitude": "123.53236000" + }, + { + "id": "82233", + "name": "Cayang", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.06667000", + "longitude": "123.98333000" + }, + { + "id": "82238", + "name": "Cebu City", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.31672000", + "longitude": "123.89071000" + }, + { + "id": "82246", + "name": "Clarin", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.96160000", + "longitude": "124.02520000" + }, + { + "id": "82253", + "name": "Cogan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.59306000", + "longitude": "124.01778000" + }, + { + "id": "82254", + "name": "Cogon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.03720000", + "longitude": "123.45390000" + }, + { + "id": "82257", + "name": "Cogon Cruz", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.50944000", + "longitude": "123.96972000" + }, + { + "id": "82258", + "name": "Cogtong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.83740000", + "longitude": "124.52910000" + }, + { + "id": "82261", + "name": "Colonia", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.65530000", + "longitude": "123.79110000" + }, + { + "id": "82269", + "name": "Compostela", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.45500000", + "longitude": "124.01060000" + }, + { + "id": "82281", + "name": "Consolacion", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.37660000", + "longitude": "123.95730000" + }, + { + "id": "82285", + "name": "Consuelo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.63480000", + "longitude": "124.30100000" + }, + { + "id": "82291", + "name": "Cordova", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.24394000", + "longitude": "123.94222000" + }, + { + "id": "82293", + "name": "Corella", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.68750000", + "longitude": "123.92180000" + }, + { + "id": "82298", + "name": "Cortes", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.72200000", + "longitude": "123.88000000" + }, + { + "id": "82327", + "name": "Daanbantayan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.24681000", + "longitude": "124.01462000" + }, + { + "id": "82334", + "name": "Dagohoy", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.90016000", + "longitude": "124.28322000" + }, + { + "id": "82343", + "name": "Dalaguete", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.76120000", + "longitude": "123.53490000" + }, + { + "id": "82362", + "name": "Damolog", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.77271000", + "longitude": "124.00639000" + }, + { + "id": "82366", + "name": "Danao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.55421000", + "longitude": "123.75648000" + }, + { + "id": "82380", + "name": "Dapitan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.26244000", + "longitude": "123.94970000" + }, + { + "id": "82390", + "name": "Datagon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.44610000", + "longitude": "123.08910000" + }, + { + "id": "82393", + "name": "Dauin", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.19140000", + "longitude": "123.26540000" + }, + { + "id": "82394", + "name": "Dauis", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.62528000", + "longitude": "123.86583000" + }, + { + "id": "82403", + "name": "De la Paz", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.70004000", + "longitude": "123.86433000" + }, + { + "id": "82432", + "name": "Dimiao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.60640000", + "longitude": "124.16330000" + }, + { + "id": "82449", + "name": "Doljo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.58745000", + "longitude": "123.73033000" + }, + { + "id": "82461", + "name": "Doong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.07860000", + "longitude": "123.63950000" + }, + { + "id": "82469", + "name": "Duero", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.70900000", + "longitude": "124.40550000" + }, + { + "id": "82481", + "name": "Dumaguete", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.30722000", + "longitude": "123.30261000" + }, + { + "id": "82488", + "name": "Dumanjog", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.05700000", + "longitude": "123.43610000" + }, + { + "id": "82506", + "name": "El Pardo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.66000000", + "longitude": "123.49440000" + }, + { + "id": "82509", + "name": "Enrique Villanueva", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.27610000", + "longitude": "123.64680000" + }, + { + "id": "82518", + "name": "Esperanza", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.69950000", + "longitude": "124.31430000" + }, + { + "id": "82525", + "name": "Estaca", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.69330000", + "longitude": "124.27220000" + }, + { + "id": "82549", + "name": "Gabi", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.26306000", + "longitude": "123.96139000" + }, + { + "id": "82570", + "name": "Garcia Hernandez", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.61440000", + "longitude": "124.29460000" + }, + { + "id": "82587", + "name": "Giawang", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.79220000", + "longitude": "124.50900000" + }, + { + "id": "82595", + "name": "Ginatilan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.56940000", + "longitude": "123.31280000" + }, + { + "id": "82610", + "name": "Guadalupe", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.11650000", + "longitude": "123.60720000" + }, + { + "id": "82614", + "name": "Guba", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.31310000", + "longitude": "123.26670000" + }, + { + "id": "82618", + "name": "Guibodangan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.11570000", + "longitude": "123.49440000" + }, + { + "id": "82622", + "name": "Guihulñgan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.12140000", + "longitude": "123.27420000" + }, + { + "id": "82632", + "name": "Guindarohan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.26111000", + "longitude": "123.76556000" + }, + { + "id": "82633", + "name": "Guindulman", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.76290000", + "longitude": "124.48780000" + }, + { + "id": "82651", + "name": "Guiwanon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.19750000", + "longitude": "123.70800000" + }, + { + "id": "82666", + "name": "Hagdan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.33333000", + "longitude": "123.90000000" + }, + { + "id": "82667", + "name": "Hagnaya", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.09240000", + "longitude": "123.94350000" + }, + { + "id": "82683", + "name": "Hibaiyo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.27260000", + "longitude": "123.32100000" + }, + { + "id": "82685", + "name": "Hilantagaan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.19430000", + "longitude": "123.81310000" + }, + { + "id": "82687", + "name": "Hilotongan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.14400000", + "longitude": "123.64260000" + }, + { + "id": "82691", + "name": "Himensulan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.59670000", + "longitude": "124.28210000" + }, + { + "id": "82697", + "name": "Hinlayagan Ilaud", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.03061000", + "longitude": "124.33457000" + }, + { + "id": "82729", + "name": "Ilihan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.90540000", + "longitude": "123.97040000" + }, + { + "id": "82740", + "name": "Inabanga", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.03070000", + "longitude": "124.06710000" + }, + { + "id": "82744", + "name": "Inayagan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.23478000", + "longitude": "123.76900000" + }, + { + "id": "82779", + "name": "Jaclupan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.30138000", + "longitude": "123.81650000" + }, + { + "id": "82782", + "name": "Jagna", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.65310000", + "longitude": "124.36970000" + }, + { + "id": "82789", + "name": "Jampang", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.90761000", + "longitude": "123.60015000" + }, + { + "id": "82791", + "name": "Jandayan Norte", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.16852000", + "longitude": "124.18148000" + }, + { + "id": "82794", + "name": "Jantianon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.44420000", + "longitude": "123.16570000" + }, + { + "id": "82795", + "name": "Japitan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.12790000", + "longitude": "123.50350000" + }, + { + "id": "82803", + "name": "Jetafe", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.14722000", + "longitude": "124.15389000" + }, + { + "id": "82806", + "name": "Jimalalud", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.97970000", + "longitude": "123.19990000" + }, + { + "id": "82818", + "name": "Jugno", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.46830000", + "longitude": "123.20380000" + }, + { + "id": "82820", + "name": "Kabac", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.23530000", + "longitude": "123.69790000" + }, + { + "id": "82832", + "name": "Kabungahan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.51667000", + "longitude": "123.98333000" + }, + { + "id": "82861", + "name": "Kandabong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.68590000", + "longitude": "123.07280000" + }, + { + "id": "82865", + "name": "Kaongkod", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.25028000", + "longitude": "123.75556000" + }, + { + "id": "82883", + "name": "Kauit", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18600000", + "longitude": "123.94590000" + }, + { + "id": "82926", + "name": "Kotkot", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.42500000", + "longitude": "124.00050000" + }, + { + "id": "82927", + "name": "Kuanos", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.28298000", + "longitude": "123.78000000" + }, + { + "id": "82942", + "name": "La Hacienda", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.88150000", + "longitude": "124.39230000" + }, + { + "id": "82943", + "name": "La Libertad", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.02660000", + "longitude": "123.23350000" + }, + { + "id": "83007", + "name": "Lanao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.25636000", + "longitude": "124.02423000" + }, + { + "id": "83009", + "name": "Lanas", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.26667000", + "longitude": "123.73333000" + }, + { + "id": "83014", + "name": "Langob", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.57740000", + "longitude": "123.73090000" + }, + { + "id": "83016", + "name": "Langtad", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.89094000", + "longitude": "123.60430000" + }, + { + "id": "83031", + "name": "Lapaz", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.98870000", + "longitude": "123.97970000" + }, + { + "id": "83037", + "name": "Lapu-Lapu City", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.31028000", + "longitude": "123.94944000" + }, + { + "id": "83058", + "name": "Lazi", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.12870000", + "longitude": "123.63560000" + }, + { + "id": "83070", + "name": "Lepanto", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.68450000", + "longitude": "123.40260000" + }, + { + "id": "83086", + "name": "Libertad", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.03040000", + "longitude": "124.02150000" + }, + { + "id": "83108", + "name": "Lila", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.59180000", + "longitude": "124.09580000" + }, + { + "id": "83111", + "name": "Liloan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.39910000", + "longitude": "123.99920000" + }, + { + "id": "83149", + "name": "Lipayran", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.05930000", + "longitude": "123.63420000" + }, + { + "id": "83157", + "name": "Loay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.60060000", + "longitude": "124.01420000" + }, + { + "id": "83159", + "name": "Loboc", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.63833000", + "longitude": "124.03482000" + }, + { + "id": "83162", + "name": "Logon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.33030000", + "longitude": "124.11460000" + }, + { + "id": "83165", + "name": "Lombog", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.77880000", + "longitude": "124.41740000" + }, + { + "id": "83175", + "name": "Loon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.79980000", + "longitude": "123.79290000" + }, + { + "id": "83206", + "name": "Lugo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.81672000", + "longitude": "123.98626000" + }, + { + "id": "83236", + "name": "Lunas", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.64020000", + "longitude": "123.75250000" + }, + { + "id": "83250", + "name": "Lut-od", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.25722000", + "longitude": "123.62944000" + }, + { + "id": "83263", + "name": "Maayong Tubig", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.16720000", + "longitude": "123.24690000" + }, + { + "id": "83654", + "name": "Maño", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.04167000", + "longitude": "123.94472000" + }, + { + "id": "83274", + "name": "Mabinay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.72722000", + "longitude": "122.90167000" + }, + { + "id": "83280", + "name": "Mabini", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.86490000", + "longitude": "124.52150000" + }, + { + "id": "83293", + "name": "Macaas", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.69885000", + "longitude": "124.01154000" + }, + { + "id": "83314", + "name": "Madridejos", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.79116000", + "longitude": "123.34620000" + }, + { + "id": "83329", + "name": "Magay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.47190000", + "longitude": "124.01320000" + }, + { + "id": "83361", + "name": "Mahayag", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.93490000", + "longitude": "124.31640000" + }, + { + "id": "83369", + "name": "Mainit", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.43350000", + "longitude": "123.35950000" + }, + { + "id": "83389", + "name": "Malabugas", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.36920000", + "longitude": "122.77020000" + }, + { + "id": "83390", + "name": "Malabuyoc", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.65250000", + "longitude": "123.32520000" + }, + { + "id": "83394", + "name": "Malaiba", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.33333000", + "longitude": "123.31667000" + }, + { + "id": "83422", + "name": "Malbug", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.73270000", + "longitude": "123.34020000" + }, + { + "id": "83423", + "name": "Malhiao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.88487000", + "longitude": "123.40641000" + }, + { + "id": "83441", + "name": "Malingin", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.05000000", + "longitude": "123.98333000" + }, + { + "id": "83453", + "name": "Maloh", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.05600000", + "longitude": "122.98510000" + }, + { + "id": "83462", + "name": "Malusay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.14390000", + "longitude": "123.27170000" + }, + { + "id": "83466", + "name": "Malway", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.13190000", + "longitude": "123.22030000" + }, + { + "id": "83488", + "name": "Manalongon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.22090000", + "longitude": "122.88600000" + }, + { + "id": "83500", + "name": "Mancilang", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.28350000", + "longitude": "123.74620000" + }, + { + "id": "83504", + "name": "Mandaue City", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.32361000", + "longitude": "123.92222000" + }, + { + "id": "83525", + "name": "Maninihon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.37110000", + "longitude": "122.84050000" + }, + { + "id": "83536", + "name": "Mantalongon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.81060000", + "longitude": "123.46170000" + }, + { + "id": "83540", + "name": "Mantiquil", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.16667000", + "longitude": "123.05000000" + }, + { + "id": "83565", + "name": "Maravilla", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.90110000", + "longitude": "123.89180000" + }, + { + "id": "83578", + "name": "Maribojoc", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.74170000", + "longitude": "123.84460000" + }, + { + "id": "83580", + "name": "Maricaban", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.15160000", + "longitude": "123.76790000" + }, + { + "id": "83590", + "name": "Masaba", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.53333000", + "longitude": "123.96667000" + }, + { + "id": "83643", + "name": "Maya", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.27442000", + "longitude": "124.05526000" + }, + { + "id": "83644", + "name": "Mayabon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.09610000", + "longitude": "123.17380000" + }, + { + "id": "83645", + "name": "Mayana", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75611000", + "longitude": "124.35222000" + }, + { + "id": "83647", + "name": "Mayapusi", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.62410000", + "longitude": "123.01880000" + }, + { + "id": "83655", + "name": "McKinley", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.08440000", + "longitude": "123.25920000" + }, + { + "id": "83656", + "name": "Medellin", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.12860000", + "longitude": "123.96220000" + }, + { + "id": "83660", + "name": "Mercedes", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.66860000", + "longitude": "124.40210000" + }, + { + "id": "83684", + "name": "Minglanilla", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.24498000", + "longitude": "123.79640000" + }, + { + "id": "83687", + "name": "Minolos", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.10190000", + "longitude": "123.47270000" + }, + { + "id": "83691", + "name": "Moalboal", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.94333000", + "longitude": "123.39917000" + }, + { + "id": "83705", + "name": "Montaneza", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.68460000", + "longitude": "123.32890000" + }, + { + "id": "83741", + "name": "Naga", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.20898000", + "longitude": "123.75800000" + }, + { + "id": "83744", + "name": "Nagbalaye", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.24920000", + "longitude": "122.87590000" + }, + { + "id": "83756", + "name": "Nahawan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.97110000", + "longitude": "124.04840000" + }, + { + "id": "83759", + "name": "Nailong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.05370000", + "longitude": "124.03850000" + }, + { + "id": "83762", + "name": "Nalundan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75000000", + "longitude": "123.06667000" + }, + { + "id": "83773", + "name": "Nangka", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.40230000", + "longitude": "122.82440000" + }, + { + "id": "83823", + "name": "Novallas", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.51170000", + "longitude": "123.12250000" + }, + { + "id": "83826", + "name": "Nueva Fuerza", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.84640000", + "longitude": "124.16700000" + }, + { + "id": "83828", + "name": "Nueva Vida Sur", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.78460000", + "longitude": "124.17450000" + }, + { + "id": "83829", + "name": "Nugas", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.69680000", + "longitude": "123.44150000" + }, + { + "id": "83836", + "name": "Obong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.74100000", + "longitude": "123.50980000" + }, + { + "id": "83838", + "name": "Ocaña", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.06560000", + "longitude": "123.62440000" + }, + { + "id": "83840", + "name": "Ocoy", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.17160000", + "longitude": "123.79480000" + }, + { + "id": "83849", + "name": "Okiot", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.56667000", + "longitude": "123.16667000" + }, + { + "id": "83865", + "name": "Oslob", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.52110000", + "longitude": "123.43150000" + }, + { + "id": "83869", + "name": "Owak", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.55000000", + "longitude": "123.70000000" + }, + { + "id": "83884", + "name": "Padre Zamora", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.06667000", + "longitude": "123.25000000" + }, + { + "id": "83904", + "name": "Pajo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.24121000", + "longitude": "124.01067000" + }, + { + "id": "83938", + "name": "Pamplona", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.47240000", + "longitude": "123.11920000" + }, + { + "id": "83949", + "name": "Panalipan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.64833000", + "longitude": "124.02167000" + }, + { + "id": "83955", + "name": "Panaytayon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.95000000", + "longitude": "123.98333000" + }, + { + "id": "83975", + "name": "Pangdan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.23078000", + "longitude": "123.73790000" + }, + { + "id": "83979", + "name": "Panglao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.57806000", + "longitude": "123.74583000" + }, + { + "id": "83995", + "name": "Panognawan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.16190000", + "longitude": "124.00500000" + }, + { + "id": "84039", + "name": "Patao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.22020000", + "longitude": "123.69250000" + }, + { + "id": "84065", + "name": "Payabon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75900000", + "longitude": "123.14120000" + }, + { + "id": "84070", + "name": "Paypay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.21520000", + "longitude": "123.97620000" + }, + { + "id": "84075", + "name": "Perrelos", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.11690000", + "longitude": "123.67380000" + }, + { + "id": "84093", + "name": "Pilar", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.82900000", + "longitude": "124.32730000" + }, + { + "id": "84106", + "name": "Pinamungahan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.27080000", + "longitude": "123.58390000" + }, + { + "id": "84108", + "name": "Pinayagan Norte", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.93333000", + "longitude": "123.95000000" + }, + { + "id": "84113", + "name": "Pinokawan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.34117000", + "longitude": "123.29390000" + }, + { + "id": "84121", + "name": "Pitogo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.12140000", + "longitude": "124.55330000" + }, + { + "id": "84150", + "name": "Polo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.48160000", + "longitude": "123.18020000" + }, + { + "id": "84165", + "name": "Poro", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.62920000", + "longitude": "124.40870000" + }, + { + "id": "84202", + "name": "Province of Cebu", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.39597000", + "longitude": "123.78021000" + }, + { + "id": "84227", + "name": "Province of Negros Oriental", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75000000", + "longitude": "123.00000000" + }, + { + "id": "84240", + "name": "Province of Siquijor", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.18333000", + "longitude": "123.56667000" + }, + { + "id": "84288", + "name": "Putat", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.78580000", + "longitude": "123.84690000" + }, + { + "id": "84354", + "name": "Ronda", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.99900000", + "longitude": "123.40950000" + }, + { + "id": "84365", + "name": "Saavedra", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.98517000", + "longitude": "123.37158000" + }, + { + "id": "84388", + "name": "Sagbayan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.91440000", + "longitude": "124.09190000" + }, + { + "id": "84427", + "name": "Samboan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.52760000", + "longitude": "123.30690000" + }, + { + "id": "84438", + "name": "San Agustin", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.63333000", + "longitude": "123.78333000" + }, + { + "id": "84482", + "name": "San Fernando", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.16240000", + "longitude": "123.70760000" + }, + { + "id": "84489", + "name": "San Francisco", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.64610000", + "longitude": "124.38160000" + }, + { + "id": "84502", + "name": "San Isidro", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.91667000", + "longitude": "123.88333000" + }, + { + "id": "84516", + "name": "San Jose", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.41194000", + "longitude": "123.23806000" + }, + { + "id": "84556", + "name": "San Miguel", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.22390000", + "longitude": "123.28530000" + }, + { + "id": "84577", + "name": "San Pascual", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.95380000", + "longitude": "124.42870000" + }, + { + "id": "84602", + "name": "San Remigio", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.08090000", + "longitude": "123.93810000" + }, + { + "id": "84606", + "name": "San Roque", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.09190000", + "longitude": "124.32262000" + }, + { + "id": "84627", + "name": "Sandayong Sur", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.49583000", + "longitude": "123.99889000" + }, + { + "id": "84629", + "name": "Sandolot", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.10472000", + "longitude": "123.01944000" + }, + { + "id": "84632", + "name": "Sangat", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.13600000", + "longitude": "123.68960000" + }, + { + "id": "84649", + "name": "Santa Catalina", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.33370000", + "longitude": "122.86370000" + }, + { + "id": "84657", + "name": "Santa Cruz", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.53520000", + "longitude": "123.10540000" + }, + { + "id": "84667", + "name": "Santa Fe", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.15440000", + "longitude": "123.80580000" + }, + { + "id": "84671", + "name": "Santa Filomena", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75181000", + "longitude": "123.34463000" + }, + { + "id": "84693", + "name": "Santa Nino", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.68900000", + "longitude": "123.78840000" + }, + { + "id": "84708", + "name": "Santander Poblacion", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.42527000", + "longitude": "123.33879000" + }, + { + "id": "84713", + "name": "Santiago", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.58970000", + "longitude": "124.30660000" + }, + { + "id": "84761", + "name": "Sevilla", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.70383000", + "longitude": "124.04829000" + }, + { + "id": "84765", + "name": "Siaton", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.06480000", + "longitude": "123.03390000" + }, + { + "id": "84771", + "name": "Sibonga", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.01680000", + "longitude": "123.61710000" + }, + { + "id": "84777", + "name": "Sibulan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.35840000", + "longitude": "123.28500000" + }, + { + "id": "84783", + "name": "Sierra Bullones", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.80810000", + "longitude": "124.29210000" + }, + { + "id": "84788", + "name": "Sikatuna", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.68830000", + "longitude": "123.97510000" + }, + { + "id": "84789", + "name": "Silab", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.43830000", + "longitude": "123.17920000" + }, + { + "id": "84795", + "name": "Sillon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.19900000", + "longitude": "123.76750000" + }, + { + "id": "84799", + "name": "Simala", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.97326000", + "longitude": "123.61648000" + }, + { + "id": "84827", + "name": "Siquijor", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.21420000", + "longitude": "123.51500000" + }, + { + "id": "84837", + "name": "Sogod", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.75083000", + "longitude": "123.99472000" + }, + { + "id": "84846", + "name": "Songculan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.62965000", + "longitude": "123.82897000" + }, + { + "id": "84866", + "name": "Sulangan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.13730000", + "longitude": "123.72280000" + }, + { + "id": "84892", + "name": "Tabalong", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.62157000", + "longitude": "123.81231000" + }, + { + "id": "84903", + "name": "Tabogon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.94120000", + "longitude": "124.02820000" + }, + { + "id": "84904", + "name": "Tabon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.80420000", + "longitude": "123.45630000" + }, + { + "id": "84908", + "name": "Tabonok", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.85120000", + "longitude": "123.87660000" + }, + { + "id": "84911", + "name": "Tabuan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.51556000", + "longitude": "122.85056000" + }, + { + "id": "84914", + "name": "Tabuelan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.82090000", + "longitude": "123.86890000" + }, + { + "id": "84917", + "name": "Tabunok", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.77673000", + "longitude": "124.01602000" + }, + { + "id": "84935", + "name": "Tagbilaran City", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.65556000", + "longitude": "123.85219000" + }, + { + "id": "84952", + "name": "Tagum Norte", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.07454000", + "longitude": "124.38925000" + }, + { + "id": "84955", + "name": "Tajao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.31480000", + "longitude": "123.58350000" + }, + { + "id": "84971", + "name": "Talangnan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.63400000", + "longitude": "123.33440000" + }, + { + "id": "84974", + "name": "Talibon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.14917000", + "longitude": "124.32500000" + }, + { + "id": "84981", + "name": "Talisay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.24472000", + "longitude": "123.84944000" + }, + { + "id": "85006", + "name": "Tambalan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.90850000", + "longitude": "123.08960000" + }, + { + "id": "85009", + "name": "Tambo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.89500000", + "longitude": "123.05560000" + }, + { + "id": "85013", + "name": "Tambongon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.96770000", + "longitude": "123.92440000" + }, + { + "id": "85016", + "name": "Tamiso", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.63140000", + "longitude": "123.08730000" + }, + { + "id": "85026", + "name": "Tampocon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.85000000", + "longitude": "123.13333000" + }, + { + "id": "85032", + "name": "Tandayag", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.45470000", + "longitude": "123.22990000" + }, + { + "id": "85036", + "name": "Tangke", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.25451000", + "longitude": "123.86516000" + }, + { + "id": "85037", + "name": "Tangnan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.60722000", + "longitude": "123.77357000" + }, + { + "id": "85039", + "name": "Tanjay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.51620000", + "longitude": "123.15800000" + }, + { + "id": "85052", + "name": "Tapilon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.27740000", + "longitude": "124.03060000" + }, + { + "id": "85053", + "name": "Tapon", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.06310000", + "longitude": "123.44530000" + }, + { + "id": "85066", + "name": "Tawala", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.55421000", + "longitude": "123.76955000" + }, + { + "id": "85072", + "name": "Tayasan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.92400000", + "longitude": "123.16990000" + }, + { + "id": "85079", + "name": "Taytayan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.87870000", + "longitude": "123.97710000" + }, + { + "id": "85080", + "name": "Tayud", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.37991000", + "longitude": "124.00522000" + }, + { + "id": "85096", + "name": "Tibigan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.95180000", + "longitude": "123.96220000" + }, + { + "id": "85115", + "name": "Tiguib", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.80080000", + "longitude": "123.13520000" + }, + { + "id": "85124", + "name": "Tinaan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.26667000", + "longitude": "123.75000000" + }, + { + "id": "85132", + "name": "Tinaogan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.77910000", + "longitude": "123.15030000" + }, + { + "id": "85134", + "name": "Tindog", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.12470000", + "longitude": "124.01180000" + }, + { + "id": "85141", + "name": "Tinubuan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18600000", + "longitude": "124.00780000" + }, + { + "id": "85146", + "name": "Tipolo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.01960000", + "longitude": "124.51440000" + }, + { + "id": "85157", + "name": "Toledo", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.37730000", + "longitude": "123.63860000" + }, + { + "id": "85165", + "name": "Tominhao", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.23563000", + "longitude": "124.03526000" + }, + { + "id": "85174", + "name": "Totolan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.63286000", + "longitude": "123.84702000" + }, + { + "id": "85179", + "name": "Trinidad", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.07955000", + "longitude": "124.34324000" + }, + { + "id": "85189", + "name": "Tubigagmanoc", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.62820000", + "longitude": "123.74890000" + }, + { + "id": "85195", + "name": "Tubod", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.99625000", + "longitude": "123.57252000" + }, + { + "id": "85197", + "name": "Tubod-dugoan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.04430000", + "longitude": "123.49940000" + }, + { + "id": "85200", + "name": "Tuburan", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.72730000", + "longitude": "123.82570000" + }, + { + "id": "85203", + "name": "Tudela", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.63830000", + "longitude": "124.47287000" + }, + { + "id": "85234", + "name": "Tutay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.24630000", + "longitude": "123.58050000" + }, + { + "id": "85241", + "name": "Ubay", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.05600000", + "longitude": "124.47294000" + }, + { + "id": "85246", + "name": "Uling", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.28048000", + "longitude": "123.71000000" + }, + { + "id": "85258", + "name": "Union", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.66950000", + "longitude": "124.32520000" + }, + { + "id": "85276", + "name": "Valencia", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.13600000", + "longitude": "123.61260000" + }, + { + "id": "85279", + "name": "Valle Hermoso", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.79390000", + "longitude": "124.23650000" + }, + { + "id": "85280", + "name": "Vallehermoso", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.33490000", + "longitude": "123.32590000" + }, + { + "id": "85325", + "name": "Zamboanguita", + "state_id": 1344, + "state_code": "BAN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.10250000", + "longitude": "123.19960000" + }, + { + "id": "81140", + "name": "Abuyog", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.74700000", + "longitude": "125.01070000" + }, + { + "id": "81186", + "name": "Alangalang", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.20611000", + "longitude": "124.84667000" + }, + { + "id": "81192", + "name": "Albuera", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.91580000", + "longitude": "124.69450000" + }, + { + "id": "81202", + "name": "Alegria", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.39840000", + "longitude": "124.32610000" + }, + { + "id": "81224", + "name": "Allen", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.50060000", + "longitude": "124.28490000" + }, + { + "id": "81225", + "name": "Almagro", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.91090000", + "longitude": "124.28580000" + }, + { + "id": "81228", + "name": "Almeria", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.62028000", + "longitude": "124.38167000" + }, + { + "id": "81236", + "name": "Alugan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.21880000", + "longitude": "125.48080000" + }, + { + "id": "81254", + "name": "Anahawan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.27722000", + "longitude": "125.26250000" + }, + { + "id": "81274", + "name": "Anito", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.44972000", + "longitude": "125.28861000" + }, + { + "id": "81318", + "name": "Arteche", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.26450000", + "longitude": "125.40480000" + }, + { + "id": "81348", + "name": "Babatngon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.42380000", + "longitude": "124.84490000" + }, + { + "id": "81435", + "name": "Balagtas", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.13330000", + "longitude": "124.51920000" + }, + { + "id": "81437", + "name": "Balagui", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.47520000", + "longitude": "124.53240000" + }, + { + "id": "81443", + "name": "Balangiga", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.10972000", + "longitude": "125.38750000" + }, + { + "id": "81444", + "name": "Balangkayan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.47139000", + "longitude": "125.51056000" + }, + { + "id": "81480", + "name": "Balinsacayao", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.68100000", + "longitude": "124.95950000" + }, + { + "id": "81491", + "name": "Balocawehay", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.72210000", + "longitude": "124.96780000" + }, + { + "id": "81496", + "name": "Balogo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.88680000", + "longitude": "124.71050000" + }, + { + "id": "81501", + "name": "Balud", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.61667000", + "longitude": "125.43333000" + }, + { + "id": "81552", + "name": "Bantayan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.52370000", + "longitude": "124.82830000" + }, + { + "id": "81555", + "name": "Bantiqui", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.92450000", + "longitude": "124.41540000" + }, + { + "id": "81567", + "name": "Baras", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18333000", + "longitude": "125.01667000" + }, + { + "id": "81589", + "name": "Barugo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.32417000", + "longitude": "124.73833000" + }, + { + "id": "81600", + "name": "Basey", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.28205000", + "longitude": "125.06986000" + }, + { + "id": "81609", + "name": "Basud", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.36630000", + "longitude": "124.36310000" + }, + { + "id": "81630", + "name": "Bato", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.32778000", + "longitude": "124.79111000" + }, + { + "id": "81662", + "name": "Baybay", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.67850000", + "longitude": "124.80060000" + }, + { + "id": "81703", + "name": "Biliran", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.48333000", + "longitude": "124.48333000" + }, + { + "id": "81705", + "name": "Bilwang", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.88340000", + "longitude": "124.46670000" + }, + { + "id": "81736", + "name": "Biri", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.68333000", + "longitude": "124.36361000" + }, + { + "id": "81738", + "name": "Bislig", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.07250000", + "longitude": "125.03361000" + }, + { + "id": "81742", + "name": "Bitanjuan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.59550000", + "longitude": "124.76630000" + }, + { + "id": "81754", + "name": "Bobon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.52460000", + "longitude": "124.56360000" + }, + { + "id": "81792", + "name": "Bontoc", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.35560000", + "longitude": "124.96970000" + }, + { + "id": "81798", + "name": "Borongan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.60806000", + "longitude": "125.43194000" + }, + { + "id": "81846", + "name": "Bugho", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.79210000", + "longitude": "124.93640000" + }, + { + "id": "81847", + "name": "Bugko", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.53560000", + "longitude": "124.79230000" + }, + { + "id": "81894", + "name": "Bunga", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.48380000", + "longitude": "124.59180000" + }, + { + "id": "81904", + "name": "Burauen", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.97556000", + "longitude": "124.89278000" + }, + { + "id": "81922", + "name": "Butazon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.30720000", + "longitude": "124.46200000" + }, + { + "id": "81936", + "name": "Cabacuñgan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.93333000", + "longitude": "124.98167000" + }, + { + "id": "81956", + "name": "Cabatuan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.52280000", + "longitude": "125.22020000" + }, + { + "id": "81960", + "name": "Cabay", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.44556000", + "longitude": "125.49333000" + }, + { + "id": "81973", + "name": "Cabodiongan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.66430000", + "longitude": "125.04560000" + }, + { + "id": "81977", + "name": "Cabucgayan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.47194000", + "longitude": "124.57500000" + }, + { + "id": "81992", + "name": "Cagamotan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.35583000", + "longitude": "125.28391000" + }, + { + "id": "82001", + "name": "Caibiran", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.57167000", + "longitude": "124.58222000" + }, + { + "id": "82032", + "name": "Calape", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.94250000", + "longitude": "125.02139000" + }, + { + "id": "82045", + "name": "Calbayog City", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.06680000", + "longitude": "124.59620000" + }, + { + "id": "82046", + "name": "Calbiga", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.62472000", + "longitude": "125.01639000" + }, + { + "id": "82068", + "name": "Calubian", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.44720000", + "longitude": "124.42810000" + }, + { + "id": "82098", + "name": "Can-Avid", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.99528000", + "longitude": "125.44722000" + }, + { + "id": "82114", + "name": "Canhandugan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.13500000", + "longitude": "124.77972000" + }, + { + "id": "82140", + "name": "Capoocan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.29333000", + "longitude": "124.64194000" + }, + { + "id": "82142", + "name": "Capul", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.42370000", + "longitude": "124.18110000" + }, + { + "id": "82155", + "name": "Caraycaray", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.55510000", + "longitude": "124.41500000" + }, + { + "id": "82161", + "name": "Caridad", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.83150000", + "longitude": "124.75180000" + }, + { + "id": "82163", + "name": "Carigara", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.29811000", + "longitude": "124.67895000" + }, + { + "id": "82206", + "name": "Catarman", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.49890000", + "longitude": "124.63770000" + }, + { + "id": "82208", + "name": "Catbalogan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.77528000", + "longitude": "124.88611000" + }, + { + "id": "82214", + "name": "Catmon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.53516000", + "longitude": "124.43115000" + }, + { + "id": "82218", + "name": "Catubig", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.40980000", + "longitude": "125.05480000" + }, + { + "id": "82240", + "name": "Cervantes", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.36861000", + "longitude": "124.65972000" + }, + { + "id": "82274", + "name": "Concepcion", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.40528000", + "longitude": "124.78306000" + }, + { + "id": "82284", + "name": "Consuegra", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.29760000", + "longitude": "124.51240000" + }, + { + "id": "82309", + "name": "Culaba", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.65778000", + "longitude": "124.54250000" + }, + { + "id": "82313", + "name": "Culasian", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.30694000", + "longitude": "124.61056000" + }, + { + "id": "82332", + "name": "Dagami", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.06083000", + "longitude": "124.90278000" + }, + { + "id": "82374", + "name": "Dao", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.09980000", + "longitude": "125.43720000" + }, + { + "id": "82377", + "name": "Dapdap", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.06200000", + "longitude": "125.48810000" + }, + { + "id": "82385", + "name": "Daram", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.63410000", + "longitude": "124.79470000" + }, + { + "id": "82452", + "name": "Dolores", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.03710000", + "longitude": "125.48250000" + }, + { + "id": "82462", + "name": "Doos", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.46528000", + "longitude": "124.72944000" + }, + { + "id": "82474", + "name": "Dulag", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.95250000", + "longitude": "125.03167000" + }, + { + "id": "82512", + "name": "Erenas", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.42450000", + "longitude": "124.32380000" + }, + { + "id": "82545", + "name": "Gabas", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.72970000", + "longitude": "124.79610000" + }, + { + "id": "82555", + "name": "Gamay", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.38542000", + "longitude": "125.29791000" + }, + { + "id": "82563", + "name": "Gandara", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.01300000", + "longitude": "124.81180000" + }, + { + "id": "82579", + "name": "General MacArthur", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.24639000", + "longitude": "125.53944000" + }, + { + "id": "82594", + "name": "Ginabuyan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.23830000", + "longitude": "124.40470000" + }, + { + "id": "82597", + "name": "Giporlos", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.12000000", + "longitude": "125.44944000" + }, + { + "id": "82631", + "name": "Guindapunan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.30278000", + "longitude": "124.70583000" + }, + { + "id": "82645", + "name": "Guirang", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.35000000", + "longitude": "125.11667000" + }, + { + "id": "82650", + "name": "Guiuan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.03088000", + "longitude": "125.72342000" + }, + { + "id": "82681", + "name": "Hernani", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.32583000", + "longitude": "125.61944000" + }, + { + "id": "82686", + "name": "Hilongos", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.37444000", + "longitude": "124.74972000" + }, + { + "id": "82694", + "name": "Hindang", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.43417000", + "longitude": "124.72917000" + }, + { + "id": "82695", + "name": "Hingatungan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.58400000", + "longitude": "125.18520000" + }, + { + "id": "82698", + "name": "Hinunangan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.39408000", + "longitude": "125.19768000" + }, + { + "id": "82699", + "name": "Hinundayan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.35230000", + "longitude": "125.25060000" + }, + { + "id": "82700", + "name": "Hipadpad", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.28550000", + "longitude": "125.23610000" + }, + { + "id": "82701", + "name": "Hipasngo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.66240000", + "longitude": "124.80850000" + }, + { + "id": "82710", + "name": "Ibarra", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.12472000", + "longitude": "124.88417000" + }, + { + "id": "82712", + "name": "Ichon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.09495000", + "longitude": "124.90168000" + }, + { + "id": "82741", + "name": "Inangatan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.25000000", + "longitude": "124.40000000" + }, + { + "id": "82755", + "name": "Ipil", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.97472000", + "longitude": "124.63639000" + }, + { + "id": "82769", + "name": "Isabel", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.92670000", + "longitude": "124.43400000" + }, + { + "id": "82798", + "name": "Jaro", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18375000", + "longitude": "124.78267000" + }, + { + "id": "82804", + "name": "Jiabong", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.76250000", + "longitude": "124.95194000" + }, + { + "id": "82817", + "name": "Jubasan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.48440000", + "longitude": "124.28720000" + }, + { + "id": "82819", + "name": "Julita", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.97472000", + "longitude": "124.96167000" + }, + { + "id": "82833", + "name": "Kabuynan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.08056000", + "longitude": "125.02472000" + }, + { + "id": "82859", + "name": "Kampokpok", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.29620000", + "longitude": "124.40500000" + }, + { + "id": "82860", + "name": "Kananya", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18670000", + "longitude": "124.56010000" + }, + { + "id": "82900", + "name": "Kilim", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.71180000", + "longitude": "124.79680000" + }, + { + "id": "82947", + "name": "La Paz", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.89250000", + "longitude": "124.95583000" + }, + { + "id": "82990", + "name": "Lalauigan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.58917000", + "longitude": "125.46972000" + }, + { + "id": "82993", + "name": "Lamak", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.39972000", + "longitude": "124.73889000" + }, + { + "id": "83026", + "name": "Lao", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.01806000", + "longitude": "124.55972000" + }, + { + "id": "83028", + "name": "Laoang", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.56980000", + "longitude": "125.01410000" + }, + { + "id": "83033", + "name": "Lapinig", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.31510000", + "longitude": "125.30320000" + }, + { + "id": "83044", + "name": "Las Navas", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.33920000", + "longitude": "125.03130000" + }, + { + "id": "83052", + "name": "Lavezares", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.53360000", + "longitude": "124.33050000" + }, + { + "id": "83072", + "name": "Leyte", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.36687000", + "longitude": "124.48239000" + }, + { + "id": "83076", + "name": "Libagon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.30083000", + "longitude": "125.05583000" + }, + { + "id": "83078", + "name": "Libas", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.93880000", + "longitude": "124.54500000" + }, + { + "id": "83084", + "name": "Libertad", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.91667000", + "longitude": "124.45000000" + }, + { + "id": "83090", + "name": "Liberty", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.87417000", + "longitude": "125.00250000" + }, + { + "id": "83112", + "name": "Liloan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.15811000", + "longitude": "125.11806000" + }, + { + "id": "83114", + "name": "Lim-oo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.15083000", + "longitude": "124.63083000" + }, + { + "id": "83123", + "name": "Limon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.28890000", + "longitude": "124.56710000" + }, + { + "id": "83155", + "name": "Llorente", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.41194000", + "longitude": "125.54583000" + }, + { + "id": "83170", + "name": "Looc", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.47880000", + "longitude": "124.55420000" + }, + { + "id": "83176", + "name": "Lope de Vega", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.29830000", + "longitude": "124.62380000" + }, + { + "id": "83261", + "name": "Maasin", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.13361000", + "longitude": "124.84472000" + }, + { + "id": "83282", + "name": "Mabini", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.41667000", + "longitude": "125.16667000" + }, + { + "id": "83292", + "name": "MacArthur", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.83472000", + "longitude": "124.99528000" + }, + { + "id": "83307", + "name": "Macrohon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.07972000", + "longitude": "124.94306000" + }, + { + "id": "83358", + "name": "Mahaplag", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.60450000", + "longitude": "124.96460000" + }, + { + "id": "83379", + "name": "Makiwalo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.51010000", + "longitude": "124.70600000" + }, + { + "id": "83392", + "name": "Malaga", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.23686000", + "longitude": "124.37529000" + }, + { + "id": "83396", + "name": "Malajog", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.11020000", + "longitude": "124.47930000" + }, + { + "id": "83430", + "name": "Malilinao", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.10694000", + "longitude": "124.50111000" + }, + { + "id": "83448", + "name": "Malitbog", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.16000000", + "longitude": "124.99917000" + }, + { + "id": "83538", + "name": "Mantang", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.87000000", + "longitude": "125.42833000" + }, + { + "id": "83550", + "name": "Mapanas", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.47502000", + "longitude": "125.25621000" + }, + { + "id": "83571", + "name": "Margen", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.01722000", + "longitude": "124.52833000" + }, + { + "id": "83585", + "name": "Maripipi", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.77917000", + "longitude": "124.34917000" + }, + { + "id": "83598", + "name": "Masarayao", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.08972000", + "longitude": "124.61750000" + }, + { + "id": "83607", + "name": "Maslog", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.15000000", + "longitude": "125.23333000" + }, + { + "id": "83617", + "name": "Matalom", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.28306000", + "longitude": "124.78778000" + }, + { + "id": "83630", + "name": "Matlang", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.89020000", + "longitude": "124.45540000" + }, + { + "id": "83648", + "name": "Maydolong", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.50021000", + "longitude": "125.49811000" + }, + { + "id": "83652", + "name": "Mayorga", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.90000000", + "longitude": "125.00000000" + }, + { + "id": "83653", + "name": "Maypangdan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.65194000", + "longitude": "125.45028000" + }, + { + "id": "83662", + "name": "Merida", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.90980000", + "longitude": "124.53760000" + }, + { + "id": "83701", + "name": "Mondragon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.51570000", + "longitude": "124.75230000" + }, + { + "id": "83715", + "name": "Motiong", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.78000000", + "longitude": "124.99972000" + }, + { + "id": "83746", + "name": "Naghalin", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.14560000", + "longitude": "124.56710000" + }, + { + "id": "83779", + "name": "Napuro", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.02730000", + "longitude": "124.70820000" + }, + { + "id": "83793", + "name": "Naval", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.56056000", + "longitude": "124.39750000" + }, + { + "id": "83798", + "name": "Nena", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.76583000", + "longitude": "125.41778000" + }, + { + "id": "83799", + "name": "Nenita", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.49167000", + "longitude": "124.80444000" + }, + { + "id": "83858", + "name": "Oras", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.14060000", + "longitude": "125.43970000" + }, + { + "id": "83860", + "name": "Ormoc", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.00639000", + "longitude": "124.60750000" + }, + { + "id": "83881", + "name": "Padre Burgos", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.03694000", + "longitude": "125.01917000" + }, + { + "id": "83896", + "name": "Pagsanghan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.96570000", + "longitude": "124.72120000" + }, + { + "id": "83914", + "name": "Palanit", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.32134000", + "longitude": "124.34341000" + }, + { + "id": "83915", + "name": "Palapag", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.54580000", + "longitude": "125.11470000" + }, + { + "id": "83916", + "name": "Palaroo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.40560000", + "longitude": "124.48300000" + }, + { + "id": "83922", + "name": "Palhi", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.64980000", + "longitude": "124.80620000" + }, + { + "id": "83927", + "name": "Palo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.15750000", + "longitude": "124.99083000" + }, + { + "id": "83929", + "name": "Palompon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.05080000", + "longitude": "124.38430000" + }, + { + "id": "83937", + "name": "Pambujan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.56420000", + "longitude": "124.92760000" + }, + { + "id": "83947", + "name": "Panalanoy", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.25111000", + "longitude": "125.00639000" + }, + { + "id": "83976", + "name": "Pangdan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.74444000", + "longitude": "124.91667000" + }, + { + "id": "83981", + "name": "Pangpang", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.56920000", + "longitude": "125.07400000" + }, + { + "id": "84035", + "name": "Pastrana", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.13667000", + "longitude": "124.88556000" + }, + { + "id": "84050", + "name": "Patong", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.33643000", + "longitude": "125.28521000" + }, + { + "id": "84064", + "name": "Pawing", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18000000", + "longitude": "125.00278000" + }, + { + "id": "84126", + "name": "Piña", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.19078000", + "longitude": "124.40150000" + }, + { + "id": "84105", + "name": "Pinamopoan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.31472000", + "longitude": "124.57389000" + }, + { + "id": "84115", + "name": "Pintuyan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.94410000", + "longitude": "125.24940000" + }, + { + "id": "84132", + "name": "Plaridel", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.56670000", + "longitude": "124.76450000" + }, + { + "id": "84144", + "name": "Polañge", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.39667000", + "longitude": "124.63111000" + }, + { + "id": "84141", + "name": "Polahongon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.52880000", + "longitude": "124.96940000" + }, + { + "id": "84207", + "name": "Province of Eastern Samar", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.53054000", + "longitude": "125.47647000" + }, + { + "id": "84218", + "name": "Province of Leyte", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.08138000", + "longitude": "124.82666000" + }, + { + "id": "84228", + "name": "Province of Northern Samar", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.33333000", + "longitude": "124.66667000" + }, + { + "id": "84238", + "name": "Province of Samar", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.83333000", + "longitude": "125.00000000" + }, + { + "id": "84243", + "name": "Province of Southern Leyte", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.33333000", + "longitude": "125.08333000" + }, + { + "id": "84258", + "name": "Puerto Bello", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.97330000", + "longitude": "124.53510000" + }, + { + "id": "84308", + "name": "Quinapundan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.15833000", + "longitude": "125.52194000" + }, + { + "id": "84342", + "name": "Rizal", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.17639000", + "longitude": "124.57944000" + }, + { + "id": "84356", + "name": "Rosario", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.52230000", + "longitude": "124.42500000" + }, + { + "id": "84366", + "name": "Sabang", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.07460000", + "longitude": "124.54140000" + }, + { + "id": "84399", + "name": "Saint Bernard", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.28333000", + "longitude": "125.18333000" + }, + { + "id": "84406", + "name": "Salcedo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.14694000", + "longitude": "125.66500000" + }, + { + "id": "84420", + "name": "Salvacion", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.61510000", + "longitude": "125.03900000" + }, + { + "id": "84452", + "name": "San Antonio", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.41290000", + "longitude": "124.27910000" + }, + { + "id": "84467", + "name": "San Eduardo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.16790000", + "longitude": "125.45030000" + }, + { + "id": "84485", + "name": "San Francisco", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.06000000", + "longitude": "125.16056000" + }, + { + "id": "84505", + "name": "San Isidro", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.40620000", + "longitude": "124.35210000" + }, + { + "id": "84510", + "name": "San Joaquin", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.16697000", + "longitude": "124.43003000" + }, + { + "id": "84512", + "name": "San Jorge", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.98083000", + "longitude": "124.82389000" + }, + { + "id": "84521", + "name": "San Jose", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.98889000", + "longitude": "125.03528000" + }, + { + "id": "84522", + "name": "San Jose de Buan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.05290000", + "longitude": "125.02510000" + }, + { + "id": "84529", + "name": "San Juan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.00056000", + "longitude": "124.53917000" + }, + { + "id": "84533", + "name": "San Julian", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.75361000", + "longitude": "125.45583000" + }, + { + "id": "84565", + "name": "San Miguel", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.26722000", + "longitude": "124.83250000" + }, + { + "id": "84587", + "name": "San Pedro", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.96100000", + "longitude": "124.81970000" + }, + { + "id": "84591", + "name": "San Policarpio", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.06860000", + "longitude": "124.56950000" + }, + { + "id": "84592", + "name": "San Policarpo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.17910000", + "longitude": "125.50720000" + }, + { + "id": "84605", + "name": "San Ricardo", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.91280000", + "longitude": "125.27670000" + }, + { + "id": "84609", + "name": "San Roque", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.05000000", + "longitude": "125.01667000" + }, + { + "id": "84612", + "name": "San Sebastian", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.71000000", + "longitude": "125.01806000" + }, + { + "id": "84621", + "name": "San Vicente", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.11830000", + "longitude": "124.56570000" + }, + { + "id": "84666", + "name": "Santa Fe", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18556000", + "longitude": "124.91611000" + }, + { + "id": "84682", + "name": "Santa Margarita", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.03778000", + "longitude": "124.65778000" + }, + { + "id": "84694", + "name": "Santa Paz", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.26667000", + "longitude": "124.78333000" + }, + { + "id": "84696", + "name": "Santa Rita", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.45020000", + "longitude": "124.94250000" + }, + { + "id": "84722", + "name": "Santo Niño", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.92630000", + "longitude": "124.44920000" + }, + { + "id": "84787", + "name": "Siguinon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.94230000", + "longitude": "124.68060000" + }, + { + "id": "84791", + "name": "Silago", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.52910000", + "longitude": "125.16180000" + }, + { + "id": "84793", + "name": "Silanga", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.81806000", + "longitude": "124.84306000" + }, + { + "id": "84797", + "name": "Silvino Lobos", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.30000000", + "longitude": "124.83333000" + }, + { + "id": "84838", + "name": "Sogod", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.38470000", + "longitude": "124.98140000" + }, + { + "id": "84865", + "name": "Sulangan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.93600000", + "longitude": "125.82640000" + }, + { + "id": "84868", + "name": "Sulat", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.81028000", + "longitude": "125.45444000" + }, + { + "id": "84893", + "name": "Tabango", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.30770000", + "longitude": "124.37300000" + }, + { + "id": "84898", + "name": "Tabing", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.40000000", + "longitude": "124.35000000" + }, + { + "id": "84907", + "name": "Tabonoc", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.35000000", + "longitude": "124.80000000" + }, + { + "id": "84909", + "name": "Tabontabon", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.04083000", + "longitude": "124.96111000" + }, + { + "id": "84920", + "name": "Tacloban", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.24333000", + "longitude": "125.00472000" + }, + { + "id": "84925", + "name": "Taft", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.90111000", + "longitude": "125.41889000" + }, + { + "id": "84929", + "name": "Tagapul-an", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.05000000", + "longitude": "124.15000000" + }, + { + "id": "84938", + "name": "Tagbubungang Diot", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.12570000", + "longitude": "124.40280000" + }, + { + "id": "84969", + "name": "Talalora", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.52930000", + "longitude": "124.83620000" + }, + { + "id": "84987", + "name": "Talisayan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.95000000", + "longitude": "124.70000000" + }, + { + "id": "85029", + "name": "Tanauan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.10944000", + "longitude": "125.01556000" + }, + { + "id": "85055", + "name": "Tarangnan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.90090000", + "longitude": "124.74590000" + }, + { + "id": "85129", + "name": "Tinambacan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.09430000", + "longitude": "124.50250000" + }, + { + "id": "85158", + "name": "Tolosa", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.10000000", + "longitude": "125.01667000" + }, + { + "id": "85161", + "name": "Tomas Oppus", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "10.25056000", + "longitude": "124.98306000" + }, + { + "id": "85201", + "name": "Tucdao", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.70110000", + "longitude": "124.47190000" + }, + { + "id": "85209", + "name": "Tugbong", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.01667000", + "longitude": "124.60000000" + }, + { + "id": "85225", + "name": "Tunga", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.24556000", + "longitude": "124.75167000" + }, + { + "id": "85235", + "name": "Tutubigan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.83972000", + "longitude": "125.06139000" + }, + { + "id": "85248", + "name": "Umaganhan", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.32920000", + "longitude": "124.37700000" + }, + { + "id": "85277", + "name": "Valencia", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.10889000", + "longitude": "124.57250000" + }, + { + "id": "85283", + "name": "Victoria", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.44722000", + "longitude": "124.31111000" + }, + { + "id": "85289", + "name": "Viga", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.51620000", + "longitude": "125.05280000" + }, + { + "id": "85294", + "name": "Villaba", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.21350000", + "longitude": "124.39210000" + }, + { + "id": "85299", + "name": "Villareal", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.56590000", + "longitude": "124.92810000" + }, + { + "id": "85306", + "name": "Viriato", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "12.29031000", + "longitude": "124.35333000" + }, + { + "id": "85317", + "name": "Wright", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.77028000", + "longitude": "125.02194000" + }, + { + "id": "85328", + "name": "Zumarraga", + "state_id": 1352, + "state_code": "BTN", + "country_id": 174, + "country_code": "PH", + "latitude": "11.63880000", + "longitude": "124.84170000" + }, + { + "id": "81148", + "name": "Adtugan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.81194000", + "longitude": "124.85444000" + }, + { + "id": "81160", + "name": "Aglayan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.05500000", + "longitude": "125.13417000" + }, + { + "id": "81172", + "name": "Agusan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.49056000", + "longitude": "124.73722000" + }, + { + "id": "81182", + "name": "Alae", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.42444000", + "longitude": "124.81278000" + }, + { + "id": "81189", + "name": "Alanib", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.02778000", + "longitude": "124.98611000" + }, + { + "id": "81234", + "name": "Alubijid", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.57333000", + "longitude": "124.47361000" + }, + { + "id": "81255", + "name": "Anakan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.84778000", + "longitude": "125.15139000" + }, + { + "id": "81270", + "name": "Ani-e", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.61361000", + "longitude": "124.87056000" + }, + { + "id": "81296", + "name": "Aplaya", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.60861000", + "longitude": "124.76806000" + }, + { + "id": "81330", + "name": "Aumbay", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.10260000", + "longitude": "125.78370000" + }, + { + "id": "81365", + "name": "Bacolod", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.11667000", + "longitude": "123.91667000" + }, + { + "id": "81389", + "name": "Bagakay", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.14540000", + "longitude": "123.81570000" + }, + { + "id": "81419", + "name": "Baikingon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.47222000", + "longitude": "124.55361000" + }, + { + "id": "81469", + "name": "Balila", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.00278000", + "longitude": "125.01306000" + }, + { + "id": "81470", + "name": "Balili", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.89500000", + "longitude": "123.73370000" + }, + { + "id": "81475", + "name": "Balingasag", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.74417000", + "longitude": "124.77694000" + }, + { + "id": "81478", + "name": "Balingoan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.00389000", + "longitude": "124.85194000" + }, + { + "id": "81488", + "name": "Baliwagan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.71861000", + "longitude": "124.79056000" + }, + { + "id": "81526", + "name": "Bangahan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.79634000", + "longitude": "124.73361000" + }, + { + "id": "81558", + "name": "Bantuanon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.01528000", + "longitude": "125.07083000" + }, + { + "id": "81585", + "name": "Baroy", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.02690000", + "longitude": "123.77840000" + }, + { + "id": "81587", + "name": "Barra", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.51028000", + "longitude": "124.60444000" + }, + { + "id": "81593", + "name": "Basak", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.04111000", + "longitude": "124.86278000" + }, + { + "id": "81626", + "name": "Bato", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.60270000", + "longitude": "123.64490000" + }, + { + "id": "81693", + "name": "Biga", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.35778000", + "longitude": "124.25972000" + }, + { + "id": "81722", + "name": "Binitinan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.71000000", + "longitude": "124.77556000" + }, + { + "id": "81731", + "name": "Binuangan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.91528000", + "longitude": "124.78833000" + }, + { + "id": "81779", + "name": "Bolo Bolo", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.55833000", + "longitude": "124.53000000" + }, + { + "id": "81785", + "name": "Bonbon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.10528000", + "longitude": "124.73389000" + }, + { + "id": "81791", + "name": "Bonifacio", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.05250000", + "longitude": "123.61420000" + }, + { + "id": "81799", + "name": "Boroon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.18278000", + "longitude": "124.17701000" + }, + { + "id": "81845", + "name": "Bugcaon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.04583000", + "longitude": "125.11278000" + }, + { + "id": "81848", + "name": "Bugo", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.50833000", + "longitude": "124.75944000" + }, + { + "id": "81916", + "name": "Busdi", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.27611000", + "longitude": "125.25139000" + }, + { + "id": "81948", + "name": "Cabangahan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.02278000", + "longitude": "125.13750000" + }, + { + "id": "81950", + "name": "Cabanglasan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.12139000", + "longitude": "125.32750000" + }, + { + "id": "81994", + "name": "Cagayan de Oro", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.48222000", + "longitude": "124.64722000" + }, + { + "id": "82011", + "name": "Calabugao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.45639000", + "longitude": "125.15889000" + }, + { + "id": "82017", + "name": "Calamba", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.55870000", + "longitude": "123.64250000" + }, + { + "id": "82104", + "name": "Canayan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.19556000", + "longitude": "125.14472000" + }, + { + "id": "82110", + "name": "Candiis", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.97028000", + "longitude": "125.18417000" + }, + { + "id": "82176", + "name": "Caromatan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.79590000", + "longitude": "123.71450000" + }, + { + "id": "82193", + "name": "Casisang", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.13806000", + "longitude": "125.12500000" + }, + { + "id": "82204", + "name": "Catarman", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.12556000", + "longitude": "124.67556000" + }, + { + "id": "82247", + "name": "Clarin", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.20230000", + "longitude": "123.85820000" + }, + { + "id": "82249", + "name": "Claveria", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.61000000", + "longitude": "124.89472000" + }, + { + "id": "82287", + "name": "Consuelo", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.90167000", + "longitude": "125.18750000" + }, + { + "id": "82301", + "name": "Cosina", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.10611000", + "longitude": "124.61972000" + }, + { + "id": "82338", + "name": "Dagumba-an", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.15306000", + "longitude": "124.59083000" + }, + { + "id": "82350", + "name": "Dalipuga", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.31583000", + "longitude": "124.25472000" + }, + { + "id": "82351", + "name": "Dalirig", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.37722000", + "longitude": "124.90139000" + }, + { + "id": "82352", + "name": "Dalorong", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.58583000", + "longitude": "125.13278000" + }, + { + "id": "82356", + "name": "Dalwangan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.20056000", + "longitude": "125.04056000" + }, + { + "id": "82361", + "name": "Damilag", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.35472000", + "longitude": "124.81222000" + }, + { + "id": "82365", + "name": "Damulog", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.48361000", + "longitude": "124.94306000" + }, + { + "id": "82367", + "name": "Dancagan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.60917000", + "longitude": "125.00417000" + }, + { + "id": "82428", + "name": "Dimaluna", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.12180000", + "longitude": "123.79950000" + }, + { + "id": "82431", + "name": "Dimayon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.06667000", + "longitude": "124.15000000" + }, + { + "id": "82451", + "name": "Dologon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.84083000", + "longitude": "125.04444000" + }, + { + "id": "82458", + "name": "Don Carlos", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.68000000", + "longitude": "125.00500000" + }, + { + "id": "82464", + "name": "Dorsalanam", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.30667000", + "longitude": "124.58556000" + }, + { + "id": "82484", + "name": "Dumalaguing", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.34694000", + "longitude": "125.05500000" + }, + { + "id": "82507", + "name": "El Salvador", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.56306000", + "longitude": "124.52250000" + }, + { + "id": "82521", + "name": "Esperanza", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.18083000", + "longitude": "124.00722000" + }, + { + "id": "82593", + "name": "Gimampang", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.47139000", + "longitude": "124.29667000" + }, + { + "id": "82598", + "name": "Gitagum", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.59667000", + "longitude": "124.40639000" + }, + { + "id": "82635", + "name": "Guinisiliban", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.09639000", + "longitude": "124.78278000" + }, + { + "id": "82671", + "name": "Halapitan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.91750000", + "longitude": "125.33000000" + }, + { + "id": "82692", + "name": "Hinapalanan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.64028000", + "longitude": "124.87306000" + }, + { + "id": "82721", + "name": "Igpit", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.51083000", + "longitude": "124.58667000" + }, + { + "id": "82734", + "name": "Imbatug", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.05444000", + "longitude": "125.28389000" + }, + { + "id": "82735", + "name": "Imelda", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.64703000", + "longitude": "122.95349000" + }, + { + "id": "82737", + "name": "Impalutao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.25778000", + "longitude": "125.02750000" + }, + { + "id": "82747", + "name": "Indulang", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.09028000", + "longitude": "124.58444000" + }, + { + "id": "82752", + "name": "Initao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.49972000", + "longitude": "124.30389000" + }, + { + "id": "82753", + "name": "Inobulan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.88639000", + "longitude": "124.79472000" + }, + { + "id": "82799", + "name": "Jasaan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.65417000", + "longitude": "124.75556000" + }, + { + "id": "82807", + "name": "Jimenez", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.33650000", + "longitude": "123.83830000" + }, + { + "id": "82822", + "name": "Kabalantian", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.37083000", + "longitude": "124.32750000" + }, + { + "id": "82830", + "name": "Kabulohan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.04333000", + "longitude": "125.27667000" + }, + { + "id": "82834", + "name": "Kadingilan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.60111000", + "longitude": "124.90861000" + }, + { + "id": "82843", + "name": "Kalanganan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.08333000", + "longitude": "124.24667000" + }, + { + "id": "82852", + "name": "Kalilangan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.74514000", + "longitude": "124.74777000" + }, + { + "id": "82856", + "name": "Kalugmanan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.27778000", + "longitude": "124.85972000" + }, + { + "id": "82868", + "name": "Kapatagan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.90030000", + "longitude": "123.76920000" + }, + { + "id": "82886", + "name": "Kauswagan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.19167000", + "longitude": "124.08472000" + }, + { + "id": "82888", + "name": "Kawit", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.18750000", + "longitude": "124.06667000" + }, + { + "id": "82893", + "name": "Kibangay", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.04972000", + "longitude": "124.89306000" + }, + { + "id": "82894", + "name": "Kibawe", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.56861000", + "longitude": "124.98778000" + }, + { + "id": "82896", + "name": "Kibonsod", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.00694000", + "longitude": "125.20944000" + }, + { + "id": "82898", + "name": "Kibureau", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.69750000", + "longitude": "125.23250000" + }, + { + "id": "82902", + "name": "Kimanuit", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.76039000", + "longitude": "124.72497000" + }, + { + "id": "82903", + "name": "Kimaya", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.56472000", + "longitude": "124.83972000" + }, + { + "id": "82914", + "name": "Kisolon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.33000000", + "longitude": "124.97694000" + }, + { + "id": "82916", + "name": "Kitaotao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.63972000", + "longitude": "125.00889000" + }, + { + "id": "82919", + "name": "Kitobo", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.57444000", + "longitude": "125.10500000" + }, + { + "id": "82922", + "name": "Kolambugan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.11440000", + "longitude": "123.89710000" + }, + { + "id": "82940", + "name": "La Fortuna", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.27972000", + "longitude": "125.00139000" + }, + { + "id": "82952", + "name": "La Roxas", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.86417000", + "longitude": "124.88694000" + }, + { + "id": "82977", + "name": "Lagindingan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.57472000", + "longitude": "124.44222000" + }, + { + "id": "82978", + "name": "Lagonglong", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.80722000", + "longitude": "124.79028000" + }, + { + "id": "82982", + "name": "Laguitas", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.08917000", + "longitude": "125.13056000" + }, + { + "id": "83013", + "name": "Langcangan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.47944000", + "longitude": "123.75583000" + }, + { + "id": "83019", + "name": "Lanipao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.95528000", + "longitude": "123.77667000" + }, + { + "id": "83024", + "name": "Lantapan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.99778000", + "longitude": "125.02778000" + }, + { + "id": "83030", + "name": "Lapase", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.19240000", + "longitude": "123.86320000" + }, + { + "id": "83035", + "name": "Lapining", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.92270000", + "longitude": "123.68830000" + }, + { + "id": "83087", + "name": "Libertad", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.56111000", + "longitude": "124.35139000" + }, + { + "id": "83095", + "name": "Libona", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.33889000", + "longitude": "124.73528000" + }, + { + "id": "83096", + "name": "Liboran", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.35472000", + "longitude": "124.64889000" + }, + { + "id": "83119", + "name": "Limbaan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.63960000", + "longitude": "125.82090000" + }, + { + "id": "83128", + "name": "Linabo", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.05417000", + "longitude": "125.15500000" + }, + { + "id": "83131", + "name": "Linamon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.18603000", + "longitude": "124.16276000" + }, + { + "id": "83138", + "name": "Lingating", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.33167000", + "longitude": "124.62889000" + }, + { + "id": "83141", + "name": "Lingion", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.18806000", + "longitude": "124.60972000" + }, + { + "id": "83151", + "name": "Little Baguio", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.89389000", + "longitude": "125.27639000" + }, + { + "id": "83172", + "name": "Looc", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.84333000", + "longitude": "124.79167000" + }, + { + "id": "83178", + "name": "Lopez Jaena", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.55280000", + "longitude": "123.76150000" + }, + { + "id": "83186", + "name": "Lourdes", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.52500000", + "longitude": "124.43222000" + }, + { + "id": "83205", + "name": "Lugait", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.34111000", + "longitude": "124.25917000" + }, + { + "id": "83222", + "name": "Lumbayao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.01667000", + "longitude": "125.16667000" + }, + { + "id": "83223", + "name": "Lumbia", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.39583000", + "longitude": "124.59389000" + }, + { + "id": "83235", + "name": "Lunao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.85028000", + "longitude": "125.05639000" + }, + { + "id": "83247", + "name": "Lurugan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.01667000", + "longitude": "124.96667000" + }, + { + "id": "83256", + "name": "Maanas", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.89389000", + "longitude": "125.03083000" + }, + { + "id": "83336", + "name": "Maglamin", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.05194000", + "longitude": "125.26167000" + }, + { + "id": "83343", + "name": "Magsaysay", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.02083000", + "longitude": "125.18250000" + }, + { + "id": "83363", + "name": "Mahinog", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.15778000", + "longitude": "124.78750000" + }, + { + "id": "83365", + "name": "Maigo", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.16130000", + "longitude": "123.95830000" + }, + { + "id": "83366", + "name": "Mailag", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.97028000", + "longitude": "125.13750000" + }, + { + "id": "83418", + "name": "Malaybalay", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.15750000", + "longitude": "125.12778000" + }, + { + "id": "83439", + "name": "Malinaw", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.82500000", + "longitude": "125.19306000" + }, + { + "id": "83446", + "name": "Malitbog", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53389000", + "longitude": "124.88306000" + }, + { + "id": "83459", + "name": "Maluko", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.37500000", + "longitude": "124.95389000" + }, + { + "id": "83472", + "name": "Mambajao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.25040000", + "longitude": "124.71560000" + }, + { + "id": "83473", + "name": "Mambatangan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.43333000", + "longitude": "124.83333000" + }, + { + "id": "83474", + "name": "Mambayaan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.78278000", + "longitude": "124.78417000" + }, + { + "id": "83481", + "name": "Mamungan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.11722000", + "longitude": "124.21861000" + }, + { + "id": "83485", + "name": "Managok", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.02889000", + "longitude": "125.18861000" + }, + { + "id": "83490", + "name": "Mananum", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.83333000", + "longitude": "124.95000000" + }, + { + "id": "83502", + "name": "Mandangoa", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.77278000", + "longitude": "124.79111000" + }, + { + "id": "83532", + "name": "Manolo Fortich", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.36972000", + "longitude": "124.86444000" + }, + { + "id": "83537", + "name": "Mantampay", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.16667000", + "longitude": "124.21667000" + }, + { + "id": "83539", + "name": "Manticao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.40417000", + "longitude": "124.28667000" + }, + { + "id": "83557", + "name": "Maputi", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.44972000", + "longitude": "124.29056000" + }, + { + "id": "83561", + "name": "Maramag", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.76333000", + "longitude": "125.00528000" + }, + { + "id": "83562", + "name": "Maranding", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.92480000", + "longitude": "123.77150000" + }, + { + "id": "83575", + "name": "Maria Cristina", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.16604000", + "longitude": "124.20396000" + }, + { + "id": "83576", + "name": "Mariano", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.83333000", + "longitude": "125.11667000" + }, + { + "id": "83610", + "name": "Mat-i", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.40194000", + "longitude": "124.34528000" + }, + { + "id": "83619", + "name": "Matangad", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.57694000", + "longitude": "124.37000000" + }, + { + "id": "83633", + "name": "Matungao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.13611000", + "longitude": "124.16417000" + }, + { + "id": "83657", + "name": "Medina", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.91222000", + "longitude": "125.02444000" + }, + { + "id": "83668", + "name": "Miaray", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.57472000", + "longitude": "125.04444000" + }, + { + "id": "83686", + "name": "Minlagas", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.87833000", + "longitude": "125.03889000" + }, + { + "id": "83696", + "name": "Molugan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53750000", + "longitude": "124.56222000" + }, + { + "id": "83709", + "name": "Moog", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.60111000", + "longitude": "124.46583000" + }, + { + "id": "83723", + "name": "Munai", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.97583000", + "longitude": "124.06361000" + }, + { + "id": "83733", + "name": "Naawan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.43444000", + "longitude": "124.28889000" + }, + { + "id": "83797", + "name": "Nañgka", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.16667000", + "longitude": "124.18333000" + }, + { + "id": "83776", + "name": "Napalitan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.77528000", + "longitude": "124.80222000" + }, + { + "id": "83785", + "name": "Natalungan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.53167000", + "longitude": "125.02361000" + }, + { + "id": "83731", + "name": "NIA Valencia", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.90639000", + "longitude": "125.09417000" + }, + { + "id": "83846", + "name": "Odiongan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.84583000", + "longitude": "125.16639000" + }, + { + "id": "83855", + "name": "Opol", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.52139000", + "longitude": "124.57111000" + }, + { + "id": "83862", + "name": "Oroquieta", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.48590000", + "longitude": "123.80480000" + }, + { + "id": "83870", + "name": "Ozamiz City", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.14810000", + "longitude": "123.84050000" + }, + { + "id": "83941", + "name": "Pan-an", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.21917000", + "longitude": "123.84028000" + }, + { + "id": "83950", + "name": "Panalo-on", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.91667000", + "longitude": "123.75000000" + }, + { + "id": "83961", + "name": "Pandan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.23880000", + "longitude": "124.72780000" + }, + { + "id": "83968", + "name": "Pangabuan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.05694000", + "longitude": "123.69583000" + }, + { + "id": "84000", + "name": "Pantao-Ragat", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.08333000", + "longitude": "124.13333000" + }, + { + "id": "84001", + "name": "Pantar", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.06611000", + "longitude": "124.25833000" + }, + { + "id": "84053", + "name": "Patrocinio", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.61250000", + "longitude": "124.84556000" + }, + { + "id": "84110", + "name": "Pines", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.45222000", + "longitude": "123.80750000" + }, + { + "id": "84134", + "name": "Plaridel", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.62140000", + "longitude": "123.71010000" + }, + { + "id": "84157", + "name": "Pongol", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.27861000", + "longitude": "124.74833000" + }, + { + "id": "84162", + "name": "Pontian", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.28111000", + "longitude": "124.90028000" + }, + { + "id": "84193", + "name": "Province of Bukidnon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.00000000", + "longitude": "125.00000000" + }, + { + "id": "84198", + "name": "Province of Camiguin", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.16667000", + "longitude": "124.75000000" + }, + { + "id": "84216", + "name": "Province of Lanao del Norte", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.00000000", + "longitude": "124.00000000" + }, + { + "id": "84224", + "name": "Province of Misamis Occidental", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.33333000", + "longitude": "123.70000000" + }, + { + "id": "84225", + "name": "Province of Misamis Oriental", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.75000000", + "longitude": "125.00000000" + }, + { + "id": "84253", + "name": "Pualas", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.01722000", + "longitude": "123.84806000" + }, + { + "id": "84282", + "name": "Punta Silum", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.38167000", + "longitude": "124.26944000" + }, + { + "id": "84296", + "name": "Quezon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.73028000", + "longitude": "125.09889000" + }, + { + "id": "84333", + "name": "Rebe", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.90760000", + "longitude": "123.81550000" + }, + { + "id": "84386", + "name": "Sagay", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.10590000", + "longitude": "124.72430000" + }, + { + "id": "84402", + "name": "Salawagan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.70528000", + "longitude": "125.11500000" + }, + { + "id": "84403", + "name": "Salay", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.85917000", + "longitude": "124.78917000" + }, + { + "id": "84409", + "name": "Salimbalan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.27417000", + "longitude": "124.72194000" + }, + { + "id": "84430", + "name": "Sampagar", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.51389000", + "longitude": "124.95528000" + }, + { + "id": "84460", + "name": "San Carlos", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.95972000", + "longitude": "125.07750000" + }, + { + "id": "84499", + "name": "San Isidro", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.25833000", + "longitude": "124.59306000" + }, + { + "id": "84514", + "name": "San Jose", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.73667000", + "longitude": "125.07028000" + }, + { + "id": "84543", + "name": "San Luis", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.48333000", + "longitude": "125.00000000" + }, + { + "id": "84552", + "name": "San Martin", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.56111000", + "longitude": "124.77139000" + }, + { + "id": "84562", + "name": "San Miguel", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.03000000", + "longitude": "124.75389000" + }, + { + "id": "84619", + "name": "San Vicente", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "7.65111000", + "longitude": "125.03444000" + }, + { + "id": "84635", + "name": "Sankanan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.31556000", + "longitude": "124.85806000" + }, + { + "id": "84641", + "name": "Santa Ana", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.51667000", + "longitude": "124.78333000" + }, + { + "id": "84665", + "name": "Santa Fe", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.34250000", + "longitude": "124.78083000" + }, + { + "id": "84744", + "name": "Sapang Dalaga", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53990000", + "longitude": "123.56240000" + }, + { + "id": "84790", + "name": "Silae", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.15889000", + "longitude": "125.28250000" + }, + { + "id": "84806", + "name": "Sinacaban", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.28640000", + "longitude": "123.83990000" + }, + { + "id": "84819", + "name": "Sinonoc", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.30960000", + "longitude": "123.84610000" + }, + { + "id": "84841", + "name": "Solana", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.62306000", + "longitude": "124.77056000" + }, + { + "id": "84859", + "name": "Sugbongkogon", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.95694000", + "longitude": "124.79111000" + }, + { + "id": "84877", + "name": "Sumilao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.28722000", + "longitude": "124.94556000" + }, + { + "id": "84879", + "name": "Sumpong", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.16333000", + "longitude": "125.11833000" + }, + { + "id": "84880", + "name": "Sungai", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.45139000", + "longitude": "124.40278000" + }, + { + "id": "84895", + "name": "Tabid", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.10850000", + "longitude": "123.78010000" + }, + { + "id": "84902", + "name": "Taboc", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.87833000", + "longitude": "124.79750000" + }, + { + "id": "84922", + "name": "Tacub", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.18750000", + "longitude": "124.10806000" + }, + { + "id": "84945", + "name": "Tagoloan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53954000", + "longitude": "124.75411000" + }, + { + "id": "84968", + "name": "Talakag", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.23361000", + "longitude": "124.60028000" + }, + { + "id": "84985", + "name": "Talisayan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.00030000", + "longitude": "124.88091000" + }, + { + "id": "85038", + "name": "Tangub", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.06180000", + "longitude": "123.74770000" + }, + { + "id": "85073", + "name": "Taypano", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.37083000", + "longitude": "124.55944000" + }, + { + "id": "85075", + "name": "Taytay", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.54111000", + "longitude": "124.53972000" + }, + { + "id": "85098", + "name": "Ticala-an", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.03528000", + "longitude": "124.62083000" + }, + { + "id": "85109", + "name": "Tignapalan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.26389000", + "longitude": "124.57472000" + }, + { + "id": "85185", + "name": "Tubao", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.33400000", + "longitude": "123.85470000" + }, + { + "id": "85190", + "name": "Tubigan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53222000", + "longitude": "124.31222000" + }, + { + "id": "85196", + "name": "Tubod", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.05550000", + "longitude": "123.79040000" + }, + { + "id": "85204", + "name": "Tudela", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.24720000", + "longitude": "123.84240000" + }, + { + "id": "85230", + "name": "Tuod", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.34333000", + "longitude": "124.35417000" + }, + { + "id": "85233", + "name": "Tupsan", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.19917000", + "longitude": "124.77694000" + }, + { + "id": "85256", + "name": "Unidos", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.59420000", + "longitude": "123.66800000" + }, + { + "id": "85298", + "name": "Villanueva", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "8.58889000", + "longitude": "124.77556000" + }, + { + "id": "85322", + "name": "Yumbing", + "state_id": 1363, + "state_code": "BEN", + "country_id": 174, + "country_code": "PH", + "latitude": "9.23930000", + "longitude": "124.65780000" + }, + { + "id": "81137", + "name": "Abulug", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.44528000", + "longitude": "121.45333000" + }, + { + "id": "81138", + "name": "Abut", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.35423000", + "longitude": "121.60138000" + }, + { + "id": "81143", + "name": "Accusilian", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.74791000", + "longitude": "121.46254000" + }, + { + "id": "81149", + "name": "Afusing Centro", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.85260000", + "longitude": "121.62690000" + }, + { + "id": "81158", + "name": "Aggugaddah", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.70016000", + "longitude": "121.80250000" + }, + { + "id": "81178", + "name": "Alabug", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.73261000", + "longitude": "121.46773000" + }, + { + "id": "81190", + "name": "Alannay", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.06114000", + "longitude": "121.58616000" + }, + { + "id": "81195", + "name": "Alcala", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.90210000", + "longitude": "121.65595000" + }, + { + "id": "81209", + "name": "Alibago", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.11667000", + "longitude": "121.86667000" + }, + { + "id": "81215", + "name": "Alicia", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.77936000", + "longitude": "121.69734000" + }, + { + "id": "81222", + "name": "Allacapan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.22598000", + "longitude": "121.55615000" + }, + { + "id": "81226", + "name": "Almaguer North", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.34970000", + "longitude": "121.09260000" + }, + { + "id": "81252", + "name": "Amulung", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.83570000", + "longitude": "121.72375000" + }, + { + "id": "81265", + "name": "Angadanan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.75526000", + "longitude": "121.74834000" + }, + { + "id": "81278", + "name": "Antagan Segunda", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.28268000", + "longitude": "121.87153000" + }, + { + "id": "81292", + "name": "Aparri", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.35660000", + "longitude": "121.64060000" + }, + { + "id": "81314", + "name": "Aritao", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.29790000", + "longitude": "121.03450000" + }, + { + "id": "81329", + "name": "Atulayan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.66480000", + "longitude": "121.69370000" + }, + { + "id": "81334", + "name": "Aurora", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.99065000", + "longitude": "121.63664000" + }, + { + "id": "81338", + "name": "Awallan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.92439000", + "longitude": "121.91305000" + }, + { + "id": "81360", + "name": "Bacnor East", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.03449000", + "longitude": "121.70375000" + }, + { + "id": "81395", + "name": "Baggabag B", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.50588000", + "longitude": "121.19014000" + }, + { + "id": "81401", + "name": "Bagong Tanza", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.98269000", + "longitude": "121.61109000" + }, + { + "id": "81406", + "name": "Bagu", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.42441000", + "longitude": "121.35573000" + }, + { + "id": "81413", + "name": "Bagumbayan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.72271000", + "longitude": "121.44695000" + }, + { + "id": "81489", + "name": "Ballesteros", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.41260000", + "longitude": "121.51520000" + }, + { + "id": "81511", + "name": "Bambang", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.38650000", + "longitude": "121.10660000" + }, + { + "id": "81525", + "name": "Bangad", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.49543000", + "longitude": "121.77714000" + }, + { + "id": "81528", + "name": "Banganan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.31440000", + "longitude": "121.05440000" + }, + { + "id": "81546", + "name": "Banquero", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.02305000", + "longitude": "121.77834000" + }, + { + "id": "81588", + "name": "Barucboc Norte", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.25857000", + "longitude": "121.60561000" + }, + { + "id": "81598", + "name": "Basco", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "20.44865000", + "longitude": "121.97017000" + }, + { + "id": "81612", + "name": "Batal", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.68750000", + "longitude": "121.60083000" + }, + { + "id": "81634", + "name": "Battung", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.72261000", + "longitude": "121.45914000" + }, + { + "id": "81641", + "name": "Bauan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.72256000", + "longitude": "121.68028000" + }, + { + "id": "81667", + "name": "Bayombong", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.48120000", + "longitude": "121.14970000" + }, + { + "id": "81676", + "name": "Belance", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.18333000", + "longitude": "121.25000000" + }, + { + "id": "81678", + "name": "Benito Soliven", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.98155000", + "longitude": "121.95994000" + }, + { + "id": "81709", + "name": "Binalan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.32750000", + "longitude": "121.54510000" + }, + { + "id": "81719", + "name": "Binguang", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.45893000", + "longitude": "121.79519000" + }, + { + "id": "81729", + "name": "Bintawan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.57588000", + "longitude": "121.18764000" + }, + { + "id": "81740", + "name": "Bitag Grande", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.90244000", + "longitude": "121.85013000" + }, + { + "id": "81786", + "name": "Bone South", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.24460000", + "longitude": "120.99580000" + }, + { + "id": "81850", + "name": "Buguey", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.28823000", + "longitude": "121.83310000" + }, + { + "id": "81880", + "name": "Buliwao", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.48333000", + "longitude": "121.23333000" + }, + { + "id": "81884", + "name": "Bulu", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.33333000", + "longitude": "121.76667000" + }, + { + "id": "81910", + "name": "Burgos", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.08914000", + "longitude": "121.70254000" + }, + { + "id": "81917", + "name": "Busilak", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.47750000", + "longitude": "121.12410000" + }, + { + "id": "81939", + "name": "Cabagan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.42782000", + "longitude": "121.76955000" + }, + { + "id": "81951", + "name": "Cabannungan Second", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.12490000", + "longitude": "121.85060000" + }, + { + "id": "81953", + "name": "Cabaritan East", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.41781000", + "longitude": "121.48872000" + }, + { + "id": "81954", + "name": "Cabarroguis", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.51105000", + "longitude": "121.52118000" + }, + { + "id": "81958", + "name": "Cabatuan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.95655000", + "longitude": "121.66854000" + }, + { + "id": "81970", + "name": "Cabiraoan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.32377000", + "longitude": "122.08595000" + }, + { + "id": "81982", + "name": "Cabulay", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.74556000", + "longitude": "121.49750000" + }, + { + "id": "82014", + "name": "Calamagui East", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.48815000", + "longitude": "121.76845000" + }, + { + "id": "82025", + "name": "Calantac", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.90904000", + "longitude": "121.72280000" + }, + { + "id": "82028", + "name": "Calaoagan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.04279000", + "longitude": "121.72325000" + }, + { + "id": "82053", + "name": "Calinaoan Malasin", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.35189000", + "longitude": "121.74074000" + }, + { + "id": "82061", + "name": "Calog Norte", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.36359000", + "longitude": "121.38533000" + }, + { + "id": "82077", + "name": "Camalaniugan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.27400000", + "longitude": "121.67480000" + }, + { + "id": "82138", + "name": "Capissayan Sur", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.05090000", + "longitude": "121.81770000" + }, + { + "id": "82162", + "name": "Carig", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.65929000", + "longitude": "121.74357000" + }, + { + "id": "82188", + "name": "Casambalangan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.37646000", + "longitude": "122.12745000" + }, + { + "id": "82207", + "name": "Catayauan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.16072000", + "longitude": "121.65271000" + }, + { + "id": "82251", + "name": "Claveria", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.60742000", + "longitude": "121.08322000" + }, + { + "id": "82290", + "name": "Cordon", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.67440000", + "longitude": "121.46580000" + }, + { + "id": "82317", + "name": "Cullalabo del Sur", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.10267000", + "longitude": "121.70394000" + }, + { + "id": "82341", + "name": "Dagupan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.70039000", + "longitude": "121.50448000" + }, + { + "id": "82345", + "name": "Dalaoig", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.94917000", + "longitude": "121.71480000" + }, + { + "id": "82383", + "name": "Daragutan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.00000000", + "longitude": "122.03333000" + }, + { + "id": "82389", + "name": "Dassun", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.74517000", + "longitude": "121.71137000" + }, + { + "id": "82413", + "name": "Diadi", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.72620000", + "longitude": "121.35890000" + }, + { + "id": "82414", + "name": "Diamantina", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.91795000", + "longitude": "121.62674000" + }, + { + "id": "82417", + "name": "Dibuluan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.51907000", + "longitude": "121.76472000" + }, + { + "id": "82418", + "name": "Dicabisagan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.08184000", + "longitude": "122.41574000" + }, + { + "id": "82419", + "name": "Dicamay", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.75606000", + "longitude": "122.00374000" + }, + { + "id": "82421", + "name": "Diffun", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.59000000", + "longitude": "121.50570000" + }, + { + "id": "82446", + "name": "Divisoria", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.52268000", + "longitude": "121.77421000" + }, + { + "id": "82448", + "name": "Dodan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.64107000", + "longitude": "121.79449000" + }, + { + "id": "82480", + "name": "Dumabato", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.31667000", + "longitude": "121.70000000" + }, + { + "id": "82501", + "name": "Echague", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.70509000", + "longitude": "121.67633000" + }, + { + "id": "82502", + "name": "Eden", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.03809000", + "longitude": "121.59799000" + }, + { + "id": "82508", + "name": "Enrile", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.55960000", + "longitude": "121.69740000" + }, + { + "id": "82523", + "name": "Esperanza East", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.02327000", + "longitude": "121.68402000" + }, + { + "id": "82529", + "name": "Estefania", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.79952000", + "longitude": "121.72310000" + }, + { + "id": "82542", + "name": "Furao", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.03466000", + "longitude": "121.79689000" + }, + { + "id": "82551", + "name": "Gadu", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.62920000", + "longitude": "121.61050000" + }, + { + "id": "82558", + "name": "Gammad", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.71040000", + "longitude": "121.74370000" + }, + { + "id": "82559", + "name": "Gamu", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.04975000", + "longitude": "121.83604000" + }, + { + "id": "82561", + "name": "Ganapi", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.20174000", + "longitude": "121.86524000" + }, + { + "id": "82568", + "name": "Gappal", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.83646000", + "longitude": "121.82184000" + }, + { + "id": "82573", + "name": "Gattaran", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.06157000", + "longitude": "121.64410000" + }, + { + "id": "82607", + "name": "Gonzaga", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.25937000", + "longitude": "121.99495000" + }, + { + "id": "82619", + "name": "Guiddam", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.33493000", + "longitude": "121.46617000" + }, + { + "id": "82711", + "name": "Ibung", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.60938000", + "longitude": "121.18614000" + }, + { + "id": "82722", + "name": "Iguig", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.75060000", + "longitude": "121.73645000" + }, + { + "id": "82723", + "name": "Ilagan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.14854000", + "longitude": "121.88924000" + }, + { + "id": "82748", + "name": "Ineangan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.31810000", + "longitude": "121.09300000" + }, + { + "id": "82760", + "name": "Iraga", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.70150000", + "longitude": "121.65460000" + }, + { + "id": "82774", + "name": "Itbayat", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "20.78733000", + "longitude": "121.84177000" + }, + { + "id": "82776", + "name": "Ivana", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "20.37005000", + "longitude": "121.91457000" + }, + { + "id": "82809", + "name": "Jones", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.55710000", + "longitude": "121.70290000" + }, + { + "id": "82875", + "name": "Kasibu", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.31670000", + "longitude": "121.29650000" + }, + { + "id": "82950", + "name": "La Paz", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.91075000", + "longitude": "121.66824000" + }, + { + "id": "82992", + "name": "Lallayug", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.70684000", + "longitude": "121.44175000" + }, + { + "id": "83020", + "name": "Lanna", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.69600000", + "longitude": "121.70014000" + }, + { + "id": "83032", + "name": "Lapi", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.71600000", + "longitude": "121.89775000" + }, + { + "id": "83043", + "name": "Larion Alto", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.63082000", + "longitude": "121.76062000" + }, + { + "id": "83046", + "name": "Lasam", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.06519000", + "longitude": "121.60065000" + }, + { + "id": "83199", + "name": "Lucban", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.33644000", + "longitude": "121.43082000" + }, + { + "id": "83229", + "name": "Luna", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.96975000", + "longitude": "121.72924000" + }, + { + "id": "83267", + "name": "Mabasa", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.32100000", + "longitude": "121.12620000" + }, + { + "id": "83281", + "name": "Mabini", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.09936000", + "longitude": "121.73454000" + }, + { + "id": "83291", + "name": "Mabuttal East", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.37620000", + "longitude": "121.51470000" + }, + { + "id": "83311", + "name": "Maddarulug Norte", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.60732000", + "longitude": "121.67670000" + }, + { + "id": "83312", + "name": "Maddela", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.34140000", + "longitude": "121.68490000" + }, + { + "id": "83317", + "name": "Magalalag", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.57732000", + "longitude": "121.73497000" + }, + { + "id": "83325", + "name": "Magapit", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.13741000", + "longitude": "121.66942000" + }, + { + "id": "83326", + "name": "Magapit, Aguiguican", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.10788000", + "longitude": "121.67705000" + }, + { + "id": "83333", + "name": "Magdalena", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.95225000", + "longitude": "121.66548000" + }, + { + "id": "83344", + "name": "Magsaysay", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.30813000", + "longitude": "121.77755000" + }, + { + "id": "83350", + "name": "Maguilling", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.76982000", + "longitude": "121.49778000" + }, + { + "id": "83359", + "name": "Mahatao", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "20.41585000", + "longitude": "121.94707000" + }, + { + "id": "83409", + "name": "Malasin", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.30450000", + "longitude": "121.10620000" + }, + { + "id": "83450", + "name": "Mallig", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.21284000", + "longitude": "121.61074000" + }, + { + "id": "83460", + "name": "Maluno Sur", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.99885000", + "longitude": "121.96434000" + }, + { + "id": "83494", + "name": "Manaring", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.17294000", + "longitude": "121.90254000" + }, + { + "id": "83509", + "name": "Manga", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.70123000", + "longitude": "121.86048000" + }, + { + "id": "83600", + "name": "Masaya Sur", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.50017000", + "longitude": "121.74743000" + }, + { + "id": "83604", + "name": "Masipi West", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.37933000", + "longitude": "121.83861000" + }, + { + "id": "83642", + "name": "Maxingal", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.21488000", + "longitude": "121.66815000" + }, + { + "id": "83678", + "name": "Minallo", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.98685000", + "longitude": "121.85394000" + }, + { + "id": "83679", + "name": "Minanga Norte", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.45233000", + "longitude": "121.78533000" + }, + { + "id": "83680", + "name": "Minante Segundo", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.90220000", + "longitude": "121.76191000" + }, + { + "id": "83688", + "name": "Minuri", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.53233000", + "longitude": "121.85532000" + }, + { + "id": "83719", + "name": "Mozzozzin Sur", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.45685000", + "longitude": "121.74607000" + }, + { + "id": "83730", + "name": "Muñoz East", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.15754000", + "longitude": "121.61354000" + }, + { + "id": "83724", + "name": "Mungo", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.72412000", + "longitude": "121.47096000" + }, + { + "id": "83735", + "name": "Nabannagan West", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.07156000", + "longitude": "121.53630000" + }, + { + "id": "83749", + "name": "Nagrumbuan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.89955000", + "longitude": "121.70974000" + }, + { + "id": "83751", + "name": "Nagtipunan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.21667000", + "longitude": "121.60000000" + }, + { + "id": "83755", + "name": "Naguilian", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.02315000", + "longitude": "121.83704000" + }, + { + "id": "83768", + "name": "Namuac", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.61090000", + "longitude": "121.16570000" + }, + { + "id": "83790", + "name": "Nattapian", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.67536000", + "longitude": "121.70296000" + }, + { + "id": "83879", + "name": "Paddaya", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.32361000", + "longitude": "121.73866000" + }, + { + "id": "83908", + "name": "Palagao Norte", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.04406000", + "longitude": "121.71871000" + }, + { + "id": "83940", + "name": "Pamplona", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.46639000", + "longitude": "121.34111000" + }, + { + "id": "83969", + "name": "Pangal Sur", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.60036000", + "longitude": "121.66979000" + }, + { + "id": "84037", + "name": "Pata", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.71520000", + "longitude": "121.50180000" + }, + { + "id": "84054", + "name": "Pattao", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.24694000", + "longitude": "121.81470000" + }, + { + "id": "84077", + "name": "Peñablanca", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.63342000", + "longitude": "121.78117000" + }, + { + "id": "84082", + "name": "Piat", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.79050000", + "longitude": "121.47800000" + }, + { + "id": "84098", + "name": "Pilig", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.34278000", + "longitude": "121.77389000" + }, + { + "id": "84114", + "name": "Pinoma", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.87421000", + "longitude": "121.70669000" + }, + { + "id": "84190", + "name": "Province of Batanes", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "20.45798000", + "longitude": "121.99410000" + }, + { + "id": "84195", + "name": "Province of Cagayan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.00000000", + "longitude": "121.83333000" + }, + { + "id": "84213", + "name": "Province of Isabela", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.00000000", + "longitude": "122.00000000" + }, + { + "id": "84230", + "name": "Province of Nueva Vizcaya", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.33333000", + "longitude": "121.33333000" + }, + { + "id": "84235", + "name": "Province of Quirino", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.28333000", + "longitude": "121.58333000" + }, + { + "id": "84298", + "name": "Quezon", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.31303000", + "longitude": "121.60654000" + }, + { + "id": "84303", + "name": "Quibal", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.71590000", + "longitude": "121.81135000" + }, + { + "id": "84314", + "name": "Quirino", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.13333000", + "longitude": "121.70000000" + }, + { + "id": "84318", + "name": "Ragan Norte", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.32318000", + "longitude": "121.77428000" + }, + { + "id": "84323", + "name": "Ramon", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.78416000", + "longitude": "121.53504000" + }, + { + "id": "84326", + "name": "Ramos West", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.69840000", + "longitude": "121.61360000" + }, + { + "id": "84336", + "name": "Reina Mercedes", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.98545000", + "longitude": "121.82664000" + }, + { + "id": "84344", + "name": "Rizal", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.71861000", + "longitude": "121.55528000" + }, + { + "id": "84361", + "name": "Roxas", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.11894000", + "longitude": "121.62014000" + }, + { + "id": "84375", + "name": "Sabtang", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "20.33566000", + "longitude": "121.87157000" + }, + { + "id": "84394", + "name": "Saguday", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.54280000", + "longitude": "121.56380000" + }, + { + "id": "84411", + "name": "Salinas", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.36950000", + "longitude": "121.01880000" + }, + { + "id": "84413", + "name": "Salinungan Proper", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.86906000", + "longitude": "121.61454000" + }, + { + "id": "84450", + "name": "San Antonio", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.27329000", + "longitude": "121.79121000" + }, + { + "id": "84457", + "name": "San Bernardo", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.40481000", + "longitude": "121.75155000" + }, + { + "id": "84483", + "name": "San Fernando", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.38920000", + "longitude": "121.13240000" + }, + { + "id": "84495", + "name": "San Guillermo", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.72540000", + "longitude": "121.80980000" + }, + { + "id": "84513", + "name": "San Jose", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.15000000", + "longitude": "121.60000000" + }, + { + "id": "84531", + "name": "San Juan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.40562000", + "longitude": "121.74745000" + }, + { + "id": "84542", + "name": "San Luis", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.96455000", + "longitude": "121.82784000" + }, + { + "id": "84545", + "name": "San Manuel", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.02375000", + "longitude": "121.63574000" + }, + { + "id": "84550", + "name": "San Mariano", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.98265000", + "longitude": "122.01404000" + }, + { + "id": "84554", + "name": "San Mateo", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.13754000", + "longitude": "121.74534000" + }, + { + "id": "84582", + "name": "San Pedro", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.20000000", + "longitude": "121.88333000" + }, + { + "id": "84625", + "name": "San Vicente", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.50746000", + "longitude": "122.15035000" + }, + { + "id": "84628", + "name": "Sandiat Centro", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.07295000", + "longitude": "121.63752000" + }, + { + "id": "84639", + "name": "Santa Ana", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.46986000", + "longitude": "122.14775000" + }, + { + "id": "84655", + "name": "Santa Cruz", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.51646000", + "longitude": "121.31052000" + }, + { + "id": "84669", + "name": "Santa Fe", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.15950000", + "longitude": "120.93810000" + }, + { + "id": "84689", + "name": "Santa Maria", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.14140000", + "longitude": "121.66473000" + }, + { + "id": "84695", + "name": "Santa Praxedes", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.56667000", + "longitude": "121.00000000" + }, + { + "id": "84705", + "name": "Santa Teresita", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.24720000", + "longitude": "121.91270000" + }, + { + "id": "84715", + "name": "Santiago", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.68808000", + "longitude": "121.54870000" + }, + { + "id": "84721", + "name": "Santo Domingo", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.15999000", + "longitude": "121.75183000" + }, + { + "id": "84726", + "name": "Santo Niño", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.88610000", + "longitude": "121.56910000" + }, + { + "id": "84733", + "name": "Santo Tomas", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.39972000", + "longitude": "121.76455000" + }, + { + "id": "84782", + "name": "Siempre Viva", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.22874000", + "longitude": "121.63294000" + }, + { + "id": "84794", + "name": "Sillawit", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.87316000", + "longitude": "121.75924000" + }, + { + "id": "84800", + "name": "Simanu Sur", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.48523000", + "longitude": "121.83426000" + }, + { + "id": "84802", + "name": "Simimbaan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.11856000", + "longitude": "121.58138000" + }, + { + "id": "84810", + "name": "Sinamar", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.90000000", + "longitude": "121.56667000" + }, + { + "id": "84814", + "name": "Sindon", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.06034000", + "longitude": "122.01514000" + }, + { + "id": "84840", + "name": "Solana", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.65280000", + "longitude": "121.69100000" + }, + { + "id": "84842", + "name": "Solano", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.51918000", + "longitude": "121.18124000" + }, + { + "id": "84850", + "name": "Soyung", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.70010000", + "longitude": "121.66550000" + }, + { + "id": "84949", + "name": "Taguing", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.94636000", + "longitude": "121.75521000" + }, + { + "id": "85049", + "name": "Tapel", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "18.28907000", + "longitude": "122.02915000" + }, + { + "id": "85180", + "name": "Tuao", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.58833000", + "longitude": "121.25778000" + }, + { + "id": "85212", + "name": "Tuguegarao", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.61577000", + "longitude": "121.72285000" + }, + { + "id": "85222", + "name": "Tumauini", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.27663000", + "longitude": "121.80854000" + }, + { + "id": "85231", + "name": "Tupang", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.90483000", + "longitude": "121.64099000" + }, + { + "id": "85242", + "name": "Uddiawan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "16.55888000", + "longitude": "121.15124000" + }, + { + "id": "85243", + "name": "Ugac Sur", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.61325000", + "longitude": "121.71583000" + }, + { + "id": "85244", + "name": "Ugad", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.30750000", + "longitude": "121.80042000" + }, + { + "id": "85263", + "name": "Upi", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.08262000", + "longitude": "121.83453000" + }, + { + "id": "85274", + "name": "Uyugan", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "20.35045000", + "longitude": "121.93777000" + }, + { + "id": "85319", + "name": "Yeban Norte", + "state_id": 1342, + "state_code": "02", + "country_id": 174, + "country_code": "PH", + "latitude": "17.02195000", + "longitude": "121.94194000" + }, + { + "id": "81147", + "name": "Adlay", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.40972000", + "longitude": "125.89750000" + }, + { + "id": "81153", + "name": "Agay", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.05361000", + "longitude": "125.58667000" + }, + { + "id": "81200", + "name": "Alegria", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.46694000", + "longitude": "125.57722000" + }, + { + "id": "81235", + "name": "Alubijid", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.96278000", + "longitude": "125.42583000" + }, + { + "id": "81240", + "name": "Amaga", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53083000", + "longitude": "126.07028000" + }, + { + "id": "81280", + "name": "Anticala", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.00444000", + "longitude": "125.64528000" + }, + { + "id": "81308", + "name": "Aras-asan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.88781000", + "longitude": "126.31120000" + }, + { + "id": "81336", + "name": "Aurora", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.59306000", + "longitude": "125.83750000" + }, + { + "id": "81364", + "name": "Bacolod", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.93167000", + "longitude": "126.28944000" + }, + { + "id": "81373", + "name": "Bacuag", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.60806000", + "longitude": "125.63889000" + }, + { + "id": "81415", + "name": "Bah-Bah", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.60722000", + "longitude": "125.91444000" + }, + { + "id": "81442", + "name": "Balangbalang", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.05694000", + "longitude": "125.62278000" + }, + { + "id": "81521", + "name": "Bancasi", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.96667000", + "longitude": "125.46667000" + }, + { + "id": "81533", + "name": "Bangonay", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.31444000", + "longitude": "125.55389000" + }, + { + "id": "81571", + "name": "Barcelona", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.15917000", + "longitude": "126.43417000" + }, + { + "id": "81579", + "name": "Barobo", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53528000", + "longitude": "126.12139000" + }, + { + "id": "81591", + "name": "Basa", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.07222000", + "longitude": "126.06417000" + }, + { + "id": "81592", + "name": "Basag", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.92548000", + "longitude": "125.62167000" + }, + { + "id": "81605", + "name": "Basilisa", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "10.00000000", + "longitude": "125.50000000" + }, + { + "id": "81653", + "name": "Bayabas", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.96972000", + "longitude": "126.28611000" + }, + { + "id": "81668", + "name": "Bayugan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.75611000", + "longitude": "125.76750000" + }, + { + "id": "81695", + "name": "Bigaan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.31722000", + "longitude": "126.28111000" + }, + { + "id": "81734", + "name": "Binucayan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.25000000", + "longitude": "125.71667000" + }, + { + "id": "81737", + "name": "Bislig", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.21528000", + "longitude": "126.31639000" + }, + { + "id": "81797", + "name": "Borbon", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.48417000", + "longitude": "125.89306000" + }, + { + "id": "81831", + "name": "Buenavista", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.97694000", + "longitude": "125.40889000" + }, + { + "id": "81892", + "name": "Bunawan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.16722000", + "longitude": "125.99083000" + }, + { + "id": "81908", + "name": "Burgos", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.26639000", + "longitude": "126.18833000" + }, + { + "id": "81925", + "name": "Butuan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.94917000", + "longitude": "125.54361000" + }, + { + "id": "81937", + "name": "Cabadbaran", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.12261000", + "longitude": "125.53549000" + }, + { + "id": "81997", + "name": "Cagdianao", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.92111000", + "longitude": "125.66917000" + }, + { + "id": "82000", + "name": "Cagwait", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.91861000", + "longitude": "126.30111000" + }, + { + "id": "82016", + "name": "Calamba", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.10361000", + "longitude": "125.59417000" + }, + { + "id": "82060", + "name": "Caloc-an", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.04694000", + "longitude": "125.53056000" + }, + { + "id": "82126", + "name": "Cantapoy", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.49056000", + "longitude": "125.43639000" + }, + { + "id": "82128", + "name": "Cantilan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.33361000", + "longitude": "125.97750000" + }, + { + "id": "82134", + "name": "Capalayan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.74056000", + "longitude": "125.54444000" + }, + { + "id": "82169", + "name": "Carmen", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.22639000", + "longitude": "126.01722000" + }, + { + "id": "82181", + "name": "Carrascal", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.37028000", + "longitude": "125.94917000" + }, + { + "id": "82224", + "name": "Causwagan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.44750000", + "longitude": "125.84028000" + }, + { + "id": "82248", + "name": "Claver", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.57250000", + "longitude": "125.73306000" + }, + { + "id": "82264", + "name": "Comagascas", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.13972000", + "longitude": "125.55972000" + }, + { + "id": "82299", + "name": "Cortes", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.27972000", + "longitude": "126.19111000" + }, + { + "id": "82308", + "name": "Cuevas", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.01917000", + "longitude": "126.09417000" + }, + { + "id": "82316", + "name": "Culit", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.94722000", + "longitude": "125.35694000" + }, + { + "id": "82375", + "name": "Dapa", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75944000", + "longitude": "126.05306000" + }, + { + "id": "82405", + "name": "Del Carmen, Surigao del Norte", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.86944000", + "longitude": "125.96972000" + }, + { + "id": "82410", + "name": "Del Pilar", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.15194000", + "longitude": "125.58472000" + }, + { + "id": "82433", + "name": "Dinagat", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.95611000", + "longitude": "125.59333000" + }, + { + "id": "82434", + "name": "Dinagat Islands", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "10.12301000", + "longitude": "125.55725000" + }, + { + "id": "82519", + "name": "Esperanza", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.67694000", + "longitude": "125.64694000" + }, + { + "id": "82560", + "name": "Gamut", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53153000", + "longitude": "126.24117000" + }, + { + "id": "82576", + "name": "General Luna", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.78417000", + "longitude": "126.15889000" + }, + { + "id": "82591", + "name": "Gigaquit", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.59444000", + "longitude": "125.69750000" + }, + { + "id": "82612", + "name": "Guadalupe", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.58278000", + "longitude": "125.70806000" + }, + { + "id": "82628", + "name": "Guinabsan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.89750000", + "longitude": "125.41611000" + }, + { + "id": "82693", + "name": "Hinatuan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.37222000", + "longitude": "126.33417000" + }, + { + "id": "82758", + "name": "Ipil", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.79070000", + "longitude": "125.43860000" + }, + { + "id": "82778", + "name": "Jabonga", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.34306000", + "longitude": "125.51556000" + }, + { + "id": "82784", + "name": "Jagupit", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.24222000", + "longitude": "125.55806000" + }, + { + "id": "82801", + "name": "Javier", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.48889000", + "longitude": "126.08500000" + }, + { + "id": "82885", + "name": "Kauswagan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.51667000", + "longitude": "125.75000000" + }, + { + "id": "82904", + "name": "Kinabhangan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.96917000", + "longitude": "125.35750000" + }, + { + "id": "82918", + "name": "Kitcharao", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.45500000", + "longitude": "125.57306000" + }, + { + "id": "82945", + "name": "La Paz", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.27083000", + "longitude": "125.79972000" + }, + { + "id": "82955", + "name": "La Union", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.08556000", + "longitude": "125.53583000" + }, + { + "id": "83025", + "name": "Lanuza", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.23417000", + "longitude": "126.06444000" + }, + { + "id": "83034", + "name": "Lapinigan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.42056000", + "longitude": "125.98250000" + }, + { + "id": "83074", + "name": "Lianga", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.63361000", + "longitude": "126.09472000" + }, + { + "id": "83081", + "name": "Libas", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.88333000", + "longitude": "125.98333000" + }, + { + "id": "83083", + "name": "Libertad", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.94417000", + "longitude": "125.50194000" + }, + { + "id": "83091", + "name": "Libjo", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "10.19778000", + "longitude": "125.53528000" + }, + { + "id": "83140", + "name": "Lingig", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.03889000", + "longitude": "126.41250000" + }, + { + "id": "83164", + "name": "Lombocan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.00767000", + "longitude": "125.50558000" + }, + { + "id": "83182", + "name": "Loreto", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.18694000", + "longitude": "125.85306000" + }, + { + "id": "83183", + "name": "Los Angeles", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.01250000", + "longitude": "125.60806000" + }, + { + "id": "83184", + "name": "Los Arcos", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.63278000", + "longitude": "125.98556000" + }, + { + "id": "83189", + "name": "Loyola", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.33492000", + "longitude": "126.33366000" + }, + { + "id": "83230", + "name": "Luna", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.73700000", + "longitude": "125.49760000" + }, + { + "id": "83265", + "name": "Mabahin", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.18556000", + "longitude": "126.17056000" + }, + { + "id": "83286", + "name": "Mabua", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.80390000", + "longitude": "125.44090000" + }, + { + "id": "83313", + "name": "Madrid", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.26211000", + "longitude": "125.96437000" + }, + { + "id": "83319", + "name": "Magallanes", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.02000000", + "longitude": "125.51722000" + }, + { + "id": "83370", + "name": "Mainit", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.53500000", + "longitude": "125.52306000" + }, + { + "id": "83433", + "name": "Malimono", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.61806000", + "longitude": "125.40222000" + }, + { + "id": "83492", + "name": "Manapa", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.97778000", + "longitude": "125.43944000" + }, + { + "id": "83582", + "name": "Marihatag", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.80590000", + "longitude": "126.29660000" + }, + { + "id": "83612", + "name": "Matabao", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.95722000", + "longitude": "125.39944000" + }, + { + "id": "83624", + "name": "Mati", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.73580000", + "longitude": "125.46800000" + }, + { + "id": "83649", + "name": "Maygatasan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.70944000", + "longitude": "125.71833000" + }, + { + "id": "83783", + "name": "Nasipit", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.96917000", + "longitude": "125.29472000" + }, + { + "id": "83986", + "name": "Panikian", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.32935000", + "longitude": "125.93380000" + }, + { + "id": "84018", + "name": "Parang", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.28149000", + "longitude": "125.94208000" + }, + { + "id": "84043", + "name": "Patin-ay", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.55056000", + "longitude": "125.93722000" + }, + { + "id": "84092", + "name": "Pilar", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.86500000", + "longitude": "126.09944000" + }, + { + "id": "84128", + "name": "Placer", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.65417000", + "longitude": "125.60250000" + }, + { + "id": "84178", + "name": "Prosperidad", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.58000000", + "longitude": "125.89639000" + }, + { + "id": "84182", + "name": "Province of Agusan del Norte", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.99360000", + "longitude": "125.57098000" + }, + { + "id": "84183", + "name": "Province of Agusan del Sur", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.50000000", + "longitude": "125.83333000" + }, + { + "id": "84246", + "name": "Province of Surigao del Norte", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.66303000", + "longitude": "125.52704000" + }, + { + "id": "84247", + "name": "Province of Surigao del Sur", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.80908000", + "longitude": "126.12854000" + }, + { + "id": "84280", + "name": "Punta", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.98972000", + "longitude": "125.34000000" + }, + { + "id": "84345", + "name": "Rizal", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.92917000", + "longitude": "125.39861000" + }, + { + "id": "84421", + "name": "Salvacion", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "7.99954000", + "longitude": "126.12480000" + }, + { + "id": "84455", + "name": "San Benito", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.95778000", + "longitude": "126.00694000" + }, + { + "id": "84486", + "name": "San Francisco", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53556000", + "longitude": "125.95000000" + }, + { + "id": "84503", + "name": "San Isidro", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.93694000", + "longitude": "126.08861000" + }, + { + "id": "84538", + "name": "San Luis", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.47806000", + "longitude": "125.74389000" + }, + { + "id": "84566", + "name": "San Miguel", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.96889000", + "longitude": "125.94500000" + }, + { + "id": "84634", + "name": "Sanghan", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.08556000", + "longitude": "125.57278000" + }, + { + "id": "84640", + "name": "Santa Ana", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.19278000", + "longitude": "125.56444000" + }, + { + "id": "84674", + "name": "Santa Josefa", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "7.99111000", + "longitude": "126.03000000" + }, + { + "id": "84684", + "name": "Santa Maria", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.03333000", + "longitude": "126.16250000" + }, + { + "id": "84691", + "name": "Santa Monica", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "10.02000000", + "longitude": "126.03833000" + }, + { + "id": "84730", + "name": "Santo Tomas", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.18583000", + "longitude": "125.80389000" + }, + { + "id": "84768", + "name": "Sibagat", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.82250000", + "longitude": "125.69750000" + }, + { + "id": "84820", + "name": "Sinubong", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.06840000", + "longitude": "125.93080000" + }, + { + "id": "84832", + "name": "Sison", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.66028000", + "longitude": "125.52861000" + }, + { + "id": "84835", + "name": "Socorro", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.62139000", + "longitude": "125.96667000" + }, + { + "id": "84882", + "name": "Surigao", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.78900000", + "longitude": "125.49500000" + }, + { + "id": "84927", + "name": "Tagana-an", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.69722000", + "longitude": "125.58556000" + }, + { + "id": "84936", + "name": "Tagbina", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.45194000", + "longitude": "126.17139000" + }, + { + "id": "84940", + "name": "Tagcatong", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.00222000", + "longitude": "125.25694000" + }, + { + "id": "84944", + "name": "Tago", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.02111000", + "longitude": "126.23167000" + }, + { + "id": "84961", + "name": "Talacogon", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.45611000", + "longitude": "125.78417000" + }, + { + "id": "84975", + "name": "Taligaman", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.90444000", + "longitude": "125.65583000" + }, + { + "id": "84982", + "name": "Talisay", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.81889000", + "longitude": "125.61556000" + }, + { + "id": "85031", + "name": "Tandag", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.07833000", + "longitude": "126.19861000" + }, + { + "id": "85099", + "name": "Tidman", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.29861000", + "longitude": "126.33889000" + }, + { + "id": "85101", + "name": "Tigao", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.20889000", + "longitude": "126.17611000" + }, + { + "id": "85178", + "name": "Trento", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.04583000", + "longitude": "126.06361000" + }, + { + "id": "85181", + "name": "Tubajon", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "10.33167000", + "longitude": "125.56194000" + }, + { + "id": "85188", + "name": "Tubay", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.16694000", + "longitude": "125.52389000" + }, + { + "id": "85194", + "name": "Tubod", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.56250000", + "longitude": "125.57083000" + }, + { + "id": "85226", + "name": "Tungao", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.78368000", + "longitude": "125.59587000" + }, + { + "id": "85254", + "name": "Unidad", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53556000", + "longitude": "126.22865000" + }, + { + "id": "85259", + "name": "Union", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "9.75667000", + "longitude": "126.11028000" + }, + { + "id": "85282", + "name": "Veruela", + "state_id": 1314, + "state_code": "13", + "country_id": 174, + "country_code": "PH", + "latitude": "8.07310000", + "longitude": "125.95580000" + }, + { + "id": "81135", + "name": "Abucay", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.73347000", + "longitude": "120.53358000" + }, + { + "id": "81144", + "name": "Acli", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.12279000", + "longitude": "120.64470000" + }, + { + "id": "81155", + "name": "Agbannawag", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.67920000", + "longitude": "121.08330000" + }, + { + "id": "81175", + "name": "Akle", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.04820000", + "longitude": "121.07330000" + }, + { + "id": "81207", + "name": "Aliaga", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.50000000", + "longitude": "120.84300000" + }, + { + "id": "81227", + "name": "Almendras", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.27576000", + "longitude": "120.69873000" + }, + { + "id": "81233", + "name": "Alua", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.31154000", + "longitude": "120.89433000" + }, + { + "id": "81238", + "name": "Amacalan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.58150000", + "longitude": "120.61120000" + }, + { + "id": "81253", + "name": "Amuñgan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.36520000", + "longitude": "119.95820000" + }, + { + "id": "81251", + "name": "Amucao", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.46405000", + "longitude": "120.68643000" + }, + { + "id": "81257", + "name": "Anao", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.14150000", + "longitude": "120.69136000" + }, + { + "id": "81266", + "name": "Angat", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.79278000", + "longitude": "120.87889000" + }, + { + "id": "81268", + "name": "Angeles City", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.15000000", + "longitude": "120.58333000" + }, + { + "id": "81282", + "name": "Antipolo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.61810000", + "longitude": "121.19000000" + }, + { + "id": "81291", + "name": "Apalit", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.95333000", + "longitude": "120.77000000" + }, + { + "id": "81309", + "name": "Arayat", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.15050000", + "longitude": "120.76970000" + }, + { + "id": "81311", + "name": "Arenas", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.17042000", + "longitude": "120.68571000" + }, + { + "id": "81316", + "name": "Arminia", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.43563000", + "longitude": "120.56379000" + }, + { + "id": "81349", + "name": "Babo-Pangulo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.08333000", + "longitude": "120.51667000" + }, + { + "id": "81351", + "name": "Bacabac", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.72477000", + "longitude": "120.42816000" + }, + { + "id": "81367", + "name": "Bacolor", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.00030000", + "longitude": "120.65200000" + }, + { + "id": "81371", + "name": "Bacsay", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.62063000", + "longitude": "120.34341000" + }, + { + "id": "81385", + "name": "Bagac", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.59620000", + "longitude": "120.39280000" + }, + { + "id": "81398", + "name": "Bagong Barrio", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.88993000", + "longitude": "120.94095000" + }, + { + "id": "81402", + "name": "Bagong-Sikat", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.48010000", + "longitude": "121.30730000" + }, + { + "id": "81417", + "name": "Bahay Pare", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.03238000", + "longitude": "120.88083000" + }, + { + "id": "81425", + "name": "Bakulong", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.53790000", + "longitude": "120.63850000" + }, + { + "id": "81434", + "name": "Balagtas", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.81667000", + "longitude": "120.86667000" + }, + { + "id": "81441", + "name": "Balanga", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.67611000", + "longitude": "120.53611000" + }, + { + "id": "81447", + "name": "Balaoang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.66330000", + "longitude": "120.51470000" + }, + { + "id": "81450", + "name": "Balas", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.04998000", + "longitude": "120.58611000" + }, + { + "id": "81452", + "name": "Balasing", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.85450000", + "longitude": "121.01270000" + }, + { + "id": "81456", + "name": "Balayang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.54950000", + "longitude": "120.69430000" + }, + { + "id": "81461", + "name": "Baler", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.75890000", + "longitude": "121.56070000" + }, + { + "id": "81466", + "name": "Balibago", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.16240000", + "longitude": "120.59540000" + }, + { + "id": "81477", + "name": "Balingcanaway", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.48215000", + "longitude": "120.68543000" + }, + { + "id": "81481", + "name": "Balite", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.64451000", + "longitude": "120.64196000" + }, + { + "id": "81485", + "name": "Baliuag", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.95472000", + "longitude": "120.89694000" + }, + { + "id": "81490", + "name": "Baloc", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.64350000", + "longitude": "120.88520000" + }, + { + "id": "81497", + "name": "Baloy", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.80530000", + "longitude": "120.77420000" + }, + { + "id": "81498", + "name": "Balsic", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.85906000", + "longitude": "120.48240000" + }, + { + "id": "81500", + "name": "Balucuc", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.95282000", + "longitude": "120.81452000" + }, + { + "id": "81506", + "name": "Balut", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.68333000", + "longitude": "120.55000000" + }, + { + "id": "81508", + "name": "Balutu", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.29875000", + "longitude": "120.69226000" + }, + { + "id": "81510", + "name": "Bamban", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.67470000", + "longitude": "120.33150000" + }, + { + "id": "81517", + "name": "Banawang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.61210000", + "longitude": "120.39000000" + }, + { + "id": "81523", + "name": "Bangad", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.50190000", + "longitude": "121.02750000" + }, + { + "id": "81537", + "name": "Bani", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.58230000", + "longitude": "119.93350000" + }, + { + "id": "81562", + "name": "Baquero Norte", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.71620000", + "longitude": "120.55430000" + }, + { + "id": "81621", + "name": "Batasan Bata", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.14442000", + "longitude": "120.94077000" + }, + { + "id": "81624", + "name": "Batitang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.40040000", + "longitude": "120.80276000" + }, + { + "id": "81655", + "name": "Bayanan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "13.35920000", + "longitude": "121.16990000" + }, + { + "id": "81674", + "name": "Beddeng", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.97728000", + "longitude": "120.08493000" + }, + { + "id": "81686", + "name": "Biay", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.74020000", + "longitude": "119.90670000" + }, + { + "id": "81687", + "name": "Bibiclat", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.52186000", + "longitude": "120.86235000" + }, + { + "id": "81689", + "name": "Bicos", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.66020000", + "longitude": "121.04140000" + }, + { + "id": "81692", + "name": "Biga", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "13.31060000", + "longitude": "121.16100000" + }, + { + "id": "81699", + "name": "Bilad", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.73676000", + "longitude": "120.43321000" + }, + { + "id": "81747", + "name": "Bituñgol", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.88333000", + "longitude": "121.03333000" + }, + { + "id": "81755", + "name": "Bobon Second", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.65653000", + "longitude": "120.38119000" + }, + { + "id": "81758", + "name": "Bocaue", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.79833000", + "longitude": "120.92611000" + }, + { + "id": "81760", + "name": "Bodega", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.92290000", + "longitude": "120.47982000" + }, + { + "id": "81773", + "name": "Bolitoc", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.73950000", + "longitude": "119.87690000" + }, + { + "id": "81788", + "name": "Bongabon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.63210000", + "longitude": "121.14480000" + }, + { + "id": "81804", + "name": "Botolan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.28960000", + "longitude": "120.02450000" + }, + { + "id": "81834", + "name": "Buenlag", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.62743000", + "longitude": "120.58199000" + }, + { + "id": "81836", + "name": "Buensuseso", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.19333000", + "longitude": "120.67314000" + }, + { + "id": "81867", + "name": "Bulaon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.08262000", + "longitude": "120.66288000" + }, + { + "id": "81868", + "name": "Bularit", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.56824000", + "longitude": "120.62167000" + }, + { + "id": "81872", + "name": "Bulawin", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.41730000", + "longitude": "119.95640000" + }, + { + "id": "81874", + "name": "Bulihan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.87581000", + "longitude": "120.89563000" + }, + { + "id": "81877", + "name": "Buliran", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.54602000", + "longitude": "120.95959000" + }, + { + "id": "81878", + "name": "Buliran Segundo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.26667000", + "longitude": "120.86667000" + }, + { + "id": "81885", + "name": "Bulualto", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.22127000", + "longitude": "120.95326000" + }, + { + "id": "81893", + "name": "Bundoc", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.48575000", + "longitude": "120.71743000" + }, + { + "id": "81901", + "name": "Bunol", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.66710000", + "longitude": "120.83440000" + }, + { + "id": "81907", + "name": "Burgos", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.72892000", + "longitude": "120.57224000" + }, + { + "id": "81920", + "name": "Bustos", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.95806000", + "longitude": "120.91778000" + }, + { + "id": "81944", + "name": "Cabanatuan City", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.48586000", + "longitude": "120.96648000" + }, + { + "id": "81949", + "name": "Cabangan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.15800000", + "longitude": "120.05690000" + }, + { + "id": "81962", + "name": "Cabayaoasan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.66323000", + "longitude": "120.55135000" + }, + { + "id": "81964", + "name": "Cabcaben", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.45400000", + "longitude": "120.59140000" + }, + { + "id": "81965", + "name": "Cabiao", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.24880000", + "longitude": "120.85480000" + }, + { + "id": "81974", + "name": "Cabog", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.31530000", + "longitude": "121.37030000" + }, + { + "id": "81991", + "name": "Cafe", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.33686000", + "longitude": "120.70623000" + }, + { + "id": "82006", + "name": "Calaba", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.30050000", + "longitude": "120.87423000" + }, + { + "id": "82022", + "name": "Calancuasan Norte", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.80137000", + "longitude": "120.64102000" + }, + { + "id": "82023", + "name": "Calangain", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.89815000", + "longitude": "120.55877000" + }, + { + "id": "82026", + "name": "Calantas", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.01933000", + "longitude": "120.51793000" + }, + { + "id": "82044", + "name": "Calayaan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.56739000", + "longitude": "120.51434000" + }, + { + "id": "82049", + "name": "Calibungan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.59820000", + "longitude": "120.72400000" + }, + { + "id": "82050", + "name": "Calibutbut", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.11494000", + "longitude": "120.59815000" + }, + { + "id": "82054", + "name": "Calingcuan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.33333000", + "longitude": "120.58333000" + }, + { + "id": "82072", + "name": "Calumpang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.17400000", + "longitude": "121.02490000" + }, + { + "id": "82073", + "name": "Calumpit", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.91639000", + "longitude": "120.76583000" + }, + { + "id": "82075", + "name": "Cama Juan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.39223000", + "longitude": "120.76848000" + }, + { + "id": "82076", + "name": "Camachile", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.64361000", + "longitude": "120.58083000" + }, + { + "id": "82088", + "name": "Camias", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.16679000", + "longitude": "120.97416000" + }, + { + "id": "82089", + "name": "Camiling", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.68660000", + "longitude": "120.41280000" + }, + { + "id": "82105", + "name": "Candaba", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.09560000", + "longitude": "120.82670000" + }, + { + "id": "82107", + "name": "Candating", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.15056000", + "longitude": "120.81847000" + }, + { + "id": "82137", + "name": "Capas", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.33117000", + "longitude": "120.58980000" + }, + { + "id": "82159", + "name": "Cardona", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.57220000", + "longitude": "120.58970000" + }, + { + "id": "82172", + "name": "Carmen", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.44702000", + "longitude": "120.82676000" + }, + { + "id": "82180", + "name": "Carranglan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.96130000", + "longitude": "121.06410000" + }, + { + "id": "82197", + "name": "Castillejos", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.93363000", + "longitude": "120.19785000" + }, + { + "id": "82222", + "name": "Cauayan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.15149000", + "longitude": "120.67166000" + }, + { + "id": "82226", + "name": "Cavite", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.67785000", + "longitude": "120.76978000" + }, + { + "id": "82232", + "name": "Cawayan Bugtong", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.63362000", + "longitude": "120.77695000" + }, + { + "id": "82265", + "name": "Comillas", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.39833000", + "longitude": "120.70045000" + }, + { + "id": "82267", + "name": "Communal", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "13.25480000", + "longitude": "121.13660000" + }, + { + "id": "82273", + "name": "Concepcion", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.32546000", + "longitude": "120.65723000" + }, + { + "id": "82288", + "name": "Conversion", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.89840000", + "longitude": "121.12770000" + }, + { + "id": "82315", + "name": "Culianin", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.91511000", + "longitude": "120.89847000" + }, + { + "id": "82318", + "name": "Culubasa", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.14431000", + "longitude": "120.65223000" + }, + { + "id": "82323", + "name": "Cut-cut Primero", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.48277000", + "longitude": "120.58604000" + }, + { + "id": "82324", + "name": "Cuyapo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.78194000", + "longitude": "120.66472000" + }, + { + "id": "82364", + "name": "Dampol", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.90128000", + "longitude": "120.82187000" + }, + { + "id": "82404", + "name": "Del Carmen", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.00544000", + "longitude": "120.53412000" + }, + { + "id": "82409", + "name": "Del Pilar", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.03601000", + "longitude": "120.69935000" + }, + { + "id": "82423", + "name": "Digdig", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.94900000", + "longitude": "120.97780000" + }, + { + "id": "82427", + "name": "Diliman Primero", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.02470000", + "longitude": "120.95208000" + }, + { + "id": "82437", + "name": "Dinalupihan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.87827000", + "longitude": "120.45221000" + }, + { + "id": "82438", + "name": "Dingalan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.38970000", + "longitude": "121.39290000" + }, + { + "id": "82467", + "name": "Doña Remedios Trinidad", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.00000000", + "longitude": "121.08333000" + }, + { + "id": "82454", + "name": "Dolores", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.09498000", + "longitude": "120.52889000" + }, + { + "id": "82489", + "name": "Dumarais", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.43455000", + "longitude": "120.69213000" + }, + { + "id": "82510", + "name": "Entablado", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.28661000", + "longitude": "120.86302000" + }, + { + "id": "82526", + "name": "Estacion", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.69944000", + "longitude": "120.60833000" + }, + { + "id": "82530", + "name": "Estipona", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.59020000", + "longitude": "120.63770000" + }, + { + "id": "82531", + "name": "Estrella", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.75000000", + "longitude": "121.03333000" + }, + { + "id": "82540", + "name": "Floridablanca", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.97750000", + "longitude": "120.52850000" + }, + { + "id": "82543", + "name": "Gabaldon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.45220000", + "longitude": "121.33870000" + }, + { + "id": "82567", + "name": "Gapan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.30720000", + "longitude": "120.94640000" + }, + { + "id": "82578", + "name": "General Luna", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.73060000", + "longitude": "121.17910000" + }, + { + "id": "82580", + "name": "General Mamerto Natividad", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.60250000", + "longitude": "121.05150000" + }, + { + "id": "82583", + "name": "General Tinio", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.35075000", + "longitude": "121.04773000" + }, + { + "id": "82585", + "name": "Gerona", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.60650000", + "longitude": "120.59780000" + }, + { + "id": "82613", + "name": "Guagua", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.96530000", + "longitude": "120.63250000" + }, + { + "id": "82617", + "name": "Gueset", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.95000000", + "longitude": "120.63333000" + }, + { + "id": "82620", + "name": "Guiguinto", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.83333000", + "longitude": "120.88333000" + }, + { + "id": "82626", + "name": "Guimba", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.66050000", + "longitude": "120.76830000" + }, + { + "id": "82647", + "name": "Guisguis", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.79280000", + "longitude": "119.97660000" + }, + { + "id": "82659", + "name": "Gutad", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.92740000", + "longitude": "120.48940000" + }, + { + "id": "82662", + "name": "Guyong", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.83610000", + "longitude": "120.97844000" + }, + { + "id": "82669", + "name": "Hagonoy", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.83413000", + "longitude": "120.73271000" + }, + { + "id": "82680", + "name": "Hermosa", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.83140000", + "longitude": "120.50810000" + }, + { + "id": "82706", + "name": "Iba", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.32760000", + "longitude": "119.97800000" + }, + { + "id": "82780", + "name": "Jaen", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.32750000", + "longitude": "120.91920000" + }, + { + "id": "82948", + "name": "La Paz", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.44125000", + "longitude": "120.72863000" + }, + { + "id": "82995", + "name": "Lambakin", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.75000000", + "longitude": "120.86667000" + }, + { + "id": "83010", + "name": "Lanat", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.79189000", + "longitude": "120.60461000" + }, + { + "id": "83049", + "name": "Laug", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.04659000", + "longitude": "120.75149000" + }, + { + "id": "83050", + "name": "Laur", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.58650000", + "longitude": "121.18340000" + }, + { + "id": "83053", + "name": "Lawang Kupang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.34807000", + "longitude": "120.85752000" + }, + { + "id": "83065", + "name": "Lennec", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.68350000", + "longitude": "120.73380000" + }, + { + "id": "83100", + "name": "Licab", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.54390000", + "longitude": "120.76340000" + }, + { + "id": "83101", + "name": "Liciada", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.91484000", + "longitude": "120.93182000" + }, + { + "id": "83106", + "name": "Ligaya", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.50910000", + "longitude": "121.28720000" + }, + { + "id": "83118", + "name": "Limay", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.56194000", + "longitude": "120.59833000" + }, + { + "id": "83145", + "name": "Liozon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.39930000", + "longitude": "119.93300000" + }, + { + "id": "83148", + "name": "Lipay", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.45610000", + "longitude": "119.92080000" + }, + { + "id": "83153", + "name": "Llanera", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.66350000", + "longitude": "121.01820000" + }, + { + "id": "83163", + "name": "Loma de Gato", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.78869000", + "longitude": "120.99889000" + }, + { + "id": "83166", + "name": "Lomboy", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.49255000", + "longitude": "120.71723000" + }, + { + "id": "83187", + "name": "Lourdes", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.96667000", + "longitude": "120.68333000" + }, + { + "id": "83193", + "name": "Lubao", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.94050000", + "longitude": "120.60110000" + }, + { + "id": "83197", + "name": "Lucapon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.69980000", + "longitude": "119.93200000" + }, + { + "id": "83242", + "name": "Lupao", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.87930000", + "longitude": "120.89830000" + }, + { + "id": "83258", + "name": "Maasim", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.99551000", + "longitude": "121.03082000" + }, + { + "id": "83264", + "name": "Mababanaba", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.49715000", + "longitude": "120.46053000" + }, + { + "id": "83266", + "name": "Mabalacat City", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.22303000", + "longitude": "120.57117000" + }, + { + "id": "83269", + "name": "Mabayo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.73180000", + "longitude": "120.27810000" + }, + { + "id": "83270", + "name": "Mabilang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.67511000", + "longitude": "120.48835000" + }, + { + "id": "83273", + "name": "Mabilog", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.39485000", + "longitude": "120.66573000" + }, + { + "id": "83279", + "name": "Mabini", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.60000000", + "longitude": "120.98333000" + }, + { + "id": "83294", + "name": "Macabebe", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.90890000", + "longitude": "120.71550000" + }, + { + "id": "83302", + "name": "Macapsing", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.67830000", + "longitude": "121.13190000" + }, + { + "id": "83303", + "name": "Macarse", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.42495000", + "longitude": "120.77476000" + }, + { + "id": "83304", + "name": "Macatbong", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.50480000", + "longitude": "121.07910000" + }, + { + "id": "83318", + "name": "Magalang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.21510000", + "longitude": "120.65960000" + }, + { + "id": "83337", + "name": "Magliman", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.03545000", + "longitude": "120.66421000" + }, + { + "id": "83348", + "name": "Magtangol", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.75800000", + "longitude": "120.91560000" + }, + { + "id": "83351", + "name": "Maguinao", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.02231000", + "longitude": "120.93409000" + }, + { + "id": "83386", + "name": "Malabon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.63610000", + "longitude": "119.93790000" + }, + { + "id": "83391", + "name": "Malacampa", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.64335000", + "longitude": "120.41109000" + }, + { + "id": "83428", + "name": "Maligaya", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.67470000", + "longitude": "120.88870000" + }, + { + "id": "83442", + "name": "Malino", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.12695000", + "longitude": "120.67431000" + }, + { + "id": "83454", + "name": "Malolos", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.84430000", + "longitude": "120.81039000" + }, + { + "id": "83455", + "name": "Maloma", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.11350000", + "longitude": "120.06390000" + }, + { + "id": "83458", + "name": "Maluid", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.54930000", + "longitude": "120.65280000" + }, + { + "id": "83461", + "name": "Malusac", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.85842000", + "longitude": "120.62120000" + }, + { + "id": "83475", + "name": "Mambog", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.31370000", + "longitude": "120.03040000" + }, + { + "id": "83479", + "name": "Mamonit", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.58719000", + "longitude": "120.39644000" + }, + { + "id": "83483", + "name": "Manacsac", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.59520000", + "longitude": "120.79110000" + }, + { + "id": "83496", + "name": "Manatal", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.87688000", + "longitude": "120.91639000" + }, + { + "id": "83506", + "name": "Mandili", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.17912000", + "longitude": "120.87726000" + }, + { + "id": "83515", + "name": "Mangga", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.25041000", + "longitude": "120.90876000" + }, + { + "id": "83520", + "name": "Manibaug Pasig", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.09621000", + "longitude": "120.56445000" + }, + { + "id": "83531", + "name": "Manogpi", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "13.31080000", + "longitude": "121.20400000" + }, + { + "id": "83548", + "name": "Mapalacsiao", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.42831000", + "longitude": "120.65252000" + }, + { + "id": "83549", + "name": "Mapalad", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.45133000", + "longitude": "121.08384000" + }, + { + "id": "83552", + "name": "Mapaniqui", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.10696000", + "longitude": "120.92287000" + }, + { + "id": "83558", + "name": "Maquiapo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.98561000", + "longitude": "120.55855000" + }, + { + "id": "83566", + "name": "Marawa", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.41727000", + "longitude": "120.83819000" + }, + { + "id": "83574", + "name": "Maria Aurora", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.79670000", + "longitude": "121.47370000" + }, + { + "id": "83583", + "name": "Marilao", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.75778000", + "longitude": "120.94833000" + }, + { + "id": "83586", + "name": "Mariveles", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.43385000", + "longitude": "120.48569000" + }, + { + "id": "83593", + "name": "Masalipit", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.14810000", + "longitude": "121.03730000" + }, + { + "id": "83595", + "name": "Masantol", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.89600000", + "longitude": "120.70920000" + }, + { + "id": "83603", + "name": "Masinloc", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.53630000", + "longitude": "119.95020000" + }, + { + "id": "83622", + "name": "Matayumtayum", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.51660000", + "longitude": "120.70980000" + }, + { + "id": "83634", + "name": "Maturanoc", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.65710000", + "longitude": "120.79210000" + }, + { + "id": "83646", + "name": "Mayantoc", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.61990000", + "longitude": "120.37700000" + }, + { + "id": "83663", + "name": "Mexico", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.06460000", + "longitude": "120.71980000" + }, + { + "id": "83664", + "name": "Meycauayan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.73694000", + "longitude": "120.96083000" + }, + { + "id": "83677", + "name": "Minalin", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.96760000", + "longitude": "120.68280000" + }, + { + "id": "83699", + "name": "Moncada", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.73540000", + "longitude": "120.57400000" + }, + { + "id": "83711", + "name": "Moriones", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.46116000", + "longitude": "120.46579000" + }, + { + "id": "83714", + "name": "Morong", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.67889000", + "longitude": "120.26611000" + }, + { + "id": "83716", + "name": "Motrico", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.41355000", + "longitude": "120.67653000" + }, + { + "id": "83729", + "name": "Muñoz", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.71611000", + "longitude": "120.90306000" + }, + { + "id": "83725", + "name": "Murcia", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.40425000", + "longitude": "120.60903000" + }, + { + "id": "83748", + "name": "Nagpandayan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.60138000", + "longitude": "120.76893000" + }, + { + "id": "83765", + "name": "Nambalan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.59911000", + "longitude": "120.46031000" + }, + { + "id": "83767", + "name": "Nampicuan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.73140000", + "longitude": "120.62500000" + }, + { + "id": "83770", + "name": "Nancamarinan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.67520000", + "longitude": "120.53640000" + }, + { + "id": "83815", + "name": "Nieves", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.32842000", + "longitude": "120.94892000" + }, + { + "id": "83819", + "name": "Niugan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.94607000", + "longitude": "120.96720000" + }, + { + "id": "83822", + "name": "Norzagaray", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.91090000", + "longitude": "121.04930000" + }, + { + "id": "83835", + "name": "Obando", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.70980000", + "longitude": "120.93620000" + }, + { + "id": "83852", + "name": "Olongapo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.82917000", + "longitude": "120.28278000" + }, + { + "id": "83857", + "name": "Orani", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.80060000", + "longitude": "120.53710000" + }, + { + "id": "83859", + "name": "Orion", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.62056000", + "longitude": "120.58167000" + }, + { + "id": "83874", + "name": "Paco Roman", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.65970000", + "longitude": "121.08770000" + }, + { + "id": "83878", + "name": "Padapada", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.55170000", + "longitude": "120.51630000" + }, + { + "id": "83903", + "name": "Paitan Norte", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.83333000", + "longitude": "120.74086000" + }, + { + "id": "83917", + "name": "Palauig", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.43500000", + "longitude": "119.90450000" + }, + { + "id": "83918", + "name": "Palayan City", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.54150000", + "longitude": "121.08480000" + }, + { + "id": "83932", + "name": "Palusapis", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.68324000", + "longitude": "120.86267000" + }, + { + "id": "83934", + "name": "Pamatawan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.92779000", + "longitude": "120.21363000" + }, + { + "id": "83942", + "name": "Panabingan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.37732000", + "longitude": "120.76492000" + }, + { + "id": "83951", + "name": "Panan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.21340000", + "longitude": "120.02720000" + }, + { + "id": "83956", + "name": "Pance", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.68850000", + "longitude": "120.62010000" + }, + { + "id": "83958", + "name": "Pandacaqui", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.17190000", + "longitude": "120.65457000" + }, + { + "id": "83965", + "name": "Pandi", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.86500000", + "longitude": "120.95722000" + }, + { + "id": "83966", + "name": "Pando", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.39395000", + "longitude": "120.68473000" + }, + { + "id": "83990", + "name": "Paniqui", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.66890000", + "longitude": "120.58060000" + }, + { + "id": "83994", + "name": "Panlinlang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.18333000", + "longitude": "120.70000000" + }, + { + "id": "83998", + "name": "Pantabangan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.81130000", + "longitude": "121.14430000" + }, + { + "id": "84004", + "name": "Pantubig", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.96806000", + "longitude": "120.95472000" + }, + { + "id": "84009", + "name": "Paombong", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.83111000", + "longitude": "120.78917000" + }, + { + "id": "84010", + "name": "Papaya", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.32016000", + "longitude": "120.83574000" + }, + { + "id": "84019", + "name": "Parang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.63310000", + "longitude": "120.44930000" + }, + { + "id": "84025", + "name": "Parista", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.85360000", + "longitude": "120.92820000" + }, + { + "id": "84056", + "name": "Pau", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.02790000", + "longitude": "120.72430000" + }, + { + "id": "84078", + "name": "Peñaranda", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.35116000", + "longitude": "121.00393000" + }, + { + "id": "84081", + "name": "Pias", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.34525000", + "longitude": "121.07473000" + }, + { + "id": "84127", + "name": "Piñahan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.62660000", + "longitude": "121.06210000" + }, + { + "id": "84091", + "name": "Pilar", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.66000000", + "longitude": "120.56528000" + }, + { + "id": "84104", + "name": "Pinambaran", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.20233000", + "longitude": "120.97797000" + }, + { + "id": "84118", + "name": "Pio", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.04741000", + "longitude": "120.51891000" + }, + { + "id": "84131", + "name": "Plaridel", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.88722000", + "longitude": "120.85722000" + }, + { + "id": "84137", + "name": "Poblacion, San Felipe", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.06222000", + "longitude": "120.07000000" + }, + { + "id": "84163", + "name": "Porac", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.07110000", + "longitude": "120.54230000" + }, + { + "id": "84164", + "name": "Porais", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.75510000", + "longitude": "121.04270000" + }, + { + "id": "84171", + "name": "Prado Siongco", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.87900000", + "longitude": "120.51292000" + }, + { + "id": "84187", + "name": "Province of Aurora", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98773000", + "longitude": "121.58020000" + }, + { + "id": "84189", + "name": "Province of Bataan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.66667000", + "longitude": "120.41667000" + }, + { + "id": "84194", + "name": "Province of Bulacan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.00000000", + "longitude": "121.08333000" + }, + { + "id": "84229", + "name": "Province of Nueva Ecija", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.58333000", + "longitude": "121.00000000" + }, + { + "id": "84232", + "name": "Province of Pampanga", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.06667000", + "longitude": "120.66667000" + }, + { + "id": "84248", + "name": "Province of Tarlac", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.50000000", + "longitude": "120.50000000" + }, + { + "id": "84250", + "name": "Province of Zambales", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.33333000", + "longitude": "120.16667000" + }, + { + "id": "84263", + "name": "Pulilan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.90167000", + "longitude": "120.84917000" + }, + { + "id": "84265", + "name": "Pulo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.96220000", + "longitude": "121.01470000" + }, + { + "id": "84266", + "name": "Pulong Gubat", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.85938000", + "longitude": "120.90599000" + }, + { + "id": "84267", + "name": "Pulong Sampalok", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.96110000", + "longitude": "121.06090000" + }, + { + "id": "84270", + "name": "Pulung Santol", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.04574000", + "longitude": "120.56188000" + }, + { + "id": "84271", + "name": "Pulungmasle", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.00040000", + "longitude": "120.55774000" + }, + { + "id": "84276", + "name": "Puncan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.90710000", + "longitude": "120.99070000" + }, + { + "id": "84283", + "name": "Pura", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.62480000", + "longitude": "120.64800000" + }, + { + "id": "84284", + "name": "Purac", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.25200000", + "longitude": "120.01690000" + }, + { + "id": "84292", + "name": "Putlod", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.37060000", + "longitude": "120.86750000" + }, + { + "id": "84294", + "name": "Quezon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.55120000", + "longitude": "120.81470000" + }, + { + "id": "84321", + "name": "Rajal Norte", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.44485000", + "longitude": "120.86256000" + }, + { + "id": "84325", + "name": "Ramos", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.66530000", + "longitude": "120.64060000" + }, + { + "id": "84347", + "name": "Rizal", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.71180000", + "longitude": "121.10610000" + }, + { + "id": "84367", + "name": "Sabang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.69510000", + "longitude": "120.25070000" + }, + { + "id": "84381", + "name": "Sagana", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.56890000", + "longitude": "121.15220000" + }, + { + "id": "84401", + "name": "Salapungan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.13390000", + "longitude": "120.92794000" + }, + { + "id": "84404", + "name": "Salaza", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.45410000", + "longitude": "119.95530000" + }, + { + "id": "84407", + "name": "Salcedo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.85722000", + "longitude": "120.60000000" + }, + { + "id": "84422", + "name": "Salvacion I", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.83960000", + "longitude": "120.91590000" + }, + { + "id": "84425", + "name": "Samal", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.76778000", + "longitude": "120.54306000" + }, + { + "id": "84432", + "name": "Sampaloc", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.81667000", + "longitude": "120.86667000" + }, + { + "id": "84439", + "name": "San Agustin", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.93333000", + "longitude": "120.15000000" + }, + { + "id": "84440", + "name": "San Alejandro", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.56098000", + "longitude": "120.84896000" + }, + { + "id": "84444", + "name": "San Andres", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.71928000", + "longitude": "120.77752000" + }, + { + "id": "84445", + "name": "San Anton", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.34780000", + "longitude": "120.91991000" + }, + { + "id": "84448", + "name": "San Antonio", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.94659000", + "longitude": "120.08673000" + }, + { + "id": "84454", + "name": "San Basilio", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.03341000", + "longitude": "120.58427000" + }, + { + "id": "84456", + "name": "San Benito", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.85155000", + "longitude": "120.42693000" + }, + { + "id": "84458", + "name": "San Carlos", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.03966000", + "longitude": "120.76285000" + }, + { + "id": "84461", + "name": "San Casimiro", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.55306000", + "longitude": "120.78083000" + }, + { + "id": "84463", + "name": "San Clemente", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.71240000", + "longitude": "120.35900000" + }, + { + "id": "84464", + "name": "San Cristobal", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.55382000", + "longitude": "120.76703000" + }, + { + "id": "84472", + "name": "San Fabian", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.59629000", + "longitude": "120.90663000" + }, + { + "id": "84475", + "name": "San Felipe", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.82608000", + "longitude": "120.59755000" + }, + { + "id": "84476", + "name": "San Felipe Old", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.50140000", + "longitude": "120.90780000" + }, + { + "id": "84481", + "name": "San Fernando", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.03425000", + "longitude": "120.68445000" + }, + { + "id": "84490", + "name": "San Francisco", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.35566000", + "longitude": "120.84001000" + }, + { + "id": "84497", + "name": "San Ildefonso", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.08090000", + "longitude": "120.94100000" + }, + { + "id": "84504", + "name": "San Isidro", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.02116000", + "longitude": "120.82019000" + }, + { + "id": "84506", + "name": "San Jacinto", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.54496000", + "longitude": "120.66959000" + }, + { + "id": "84518", + "name": "San Jose", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.03330000", + "longitude": "120.78330000" + }, + { + "id": "84523", + "name": "San Jose del Monte", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.81389000", + "longitude": "121.04528000" + }, + { + "id": "84526", + "name": "San Juan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.28970000", + "longitude": "120.06480000" + }, + { + "id": "84532", + "name": "San Juan de Mata", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.53520000", + "longitude": "120.53020000" + }, + { + "id": "84534", + "name": "San Leonardo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.36300000", + "longitude": "120.96390000" + }, + { + "id": "84536", + "name": "San Lorenzo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.48620000", + "longitude": "119.96220000" + }, + { + "id": "84541", + "name": "San Luis", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.04010000", + "longitude": "120.78830000" + }, + { + "id": "84546", + "name": "San Manuel", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.49053000", + "longitude": "120.66543000" + }, + { + "id": "84547", + "name": "San Marcelino", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.97418000", + "longitude": "120.15733000" + }, + { + "id": "84548", + "name": "San Mariano", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.32083000", + "longitude": "120.87609000" + }, + { + "id": "84553", + "name": "San Mateo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.20008000", + "longitude": "120.79460000" + }, + { + "id": "84559", + "name": "San Miguel", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.14230000", + "longitude": "120.97568000" + }, + { + "id": "84568", + "name": "San Narciso", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.01430000", + "longitude": "120.08030000" + }, + { + "id": "84573", + "name": "San Nicolas", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.58410000", + "longitude": "120.67650000" + }, + { + "id": "84580", + "name": "San Pascual", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.50152000", + "longitude": "120.66718000" + }, + { + "id": "84581", + "name": "San Patricio", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.09775000", + "longitude": "120.72876000" + }, + { + "id": "84597", + "name": "San Rafael", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.89906000", + "longitude": "120.69352000" + }, + { + "id": "84604", + "name": "San Ricardo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.59590000", + "longitude": "120.97270000" + }, + { + "id": "84608", + "name": "San Roque", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.00946000", + "longitude": "120.93831000" + }, + { + "id": "84610", + "name": "San Roque Dau First", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.97711000", + "longitude": "120.57688000" + }, + { + "id": "84615", + "name": "San Simon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.99960000", + "longitude": "120.78080000" + }, + { + "id": "84622", + "name": "San Vicente", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.29210000", + "longitude": "120.65498000" + }, + { + "id": "84626", + "name": "San Vincente", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "13.40680000", + "longitude": "121.17500000" + }, + { + "id": "84638", + "name": "Santa Ana", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.09550000", + "longitude": "120.76700000" + }, + { + "id": "84644", + "name": "Santa Barbara", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.38494000", + "longitude": "120.79611000" + }, + { + "id": "84660", + "name": "Santa Cruz", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.76540000", + "longitude": "119.90920000" + }, + { + "id": "84668", + "name": "Santa Fe", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.01030000", + "longitude": "120.21020000" + }, + { + "id": "84672", + "name": "Santa Ignacia", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.61690000", + "longitude": "120.43580000" + }, + { + "id": "84673", + "name": "Santa Ines West", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.55694000", + "longitude": "120.46448000" + }, + { + "id": "84675", + "name": "Santa Juliana", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.32826000", + "longitude": "120.42863000" + }, + { + "id": "84679", + "name": "Santa Lucia", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.36806000", + "longitude": "120.48643000" + }, + { + "id": "84686", + "name": "Santa Maria", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.52320000", + "longitude": "120.79250000" + }, + { + "id": "84692", + "name": "Santa Monica", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.35771000", + "longitude": "120.72006000" + }, + { + "id": "84697", + "name": "Santa Rita", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.99930000", + "longitude": "120.61170000" + }, + { + "id": "84700", + "name": "Santa Rosa", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.42380000", + "longitude": "120.93780000" + }, + { + "id": "84704", + "name": "Santa Teresa First", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.92650000", + "longitude": "120.55791000" + }, + { + "id": "84714", + "name": "Santiago", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.90371000", + "longitude": "120.51134000" + }, + { + "id": "84717", + "name": "Santo Cristo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.29683000", + "longitude": "120.89025000" + }, + { + "id": "84719", + "name": "Santo Domingo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.99120000", + "longitude": "120.74341000" + }, + { + "id": "84725", + "name": "Santo Niño", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.33433000", + "longitude": "120.62619000" + }, + { + "id": "84729", + "name": "Santo Rosario", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.64470000", + "longitude": "120.86120000" + }, + { + "id": "84734", + "name": "Santo Tomas", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.74977000", + "longitude": "120.96241000" + }, + { + "id": "84737", + "name": "Santol", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.16222000", + "longitude": "120.56750000" + }, + { + "id": "84742", + "name": "Sapang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.70320000", + "longitude": "120.52450000" + }, + { + "id": "84743", + "name": "Sapang Buho", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.59038000", + "longitude": "121.12454000" + }, + { + "id": "84746", + "name": "Sapol", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "13.36500000", + "longitude": "121.18930000" + }, + { + "id": "84755", + "name": "Saysain", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.56111000", + "longitude": "120.39250000" + }, + { + "id": "84762", + "name": "Sexmoan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.94380000", + "longitude": "120.62290000" + }, + { + "id": "84774", + "name": "Sibul", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.16900000", + "longitude": "121.06160000" + }, + { + "id": "84780", + "name": "Siclong", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.58080000", + "longitude": "121.22390000" + }, + { + "id": "84808", + "name": "Sinait", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.53670000", + "longitude": "120.58510000" + }, + { + "id": "84815", + "name": "Sinilian First", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.69327000", + "longitude": "120.45936000" + }, + { + "id": "84843", + "name": "Soledad", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.42838000", + "longitude": "120.98355000" + }, + { + "id": "84854", + "name": "Subic", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.87870000", + "longitude": "120.23194000" + }, + { + "id": "84863", + "name": "Suklayin", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.75740000", + "longitude": "121.55030000" + }, + { + "id": "84864", + "name": "Sula", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.45725000", + "longitude": "120.39553000" + }, + { + "id": "84872", + "name": "Sulucan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "14.79448000", + "longitude": "120.92594000" + }, + { + "id": "84890", + "name": "Tabacao", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.64973000", + "longitude": "120.94066000" + }, + { + "id": "84906", + "name": "Tabon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.27098000", + "longitude": "120.91273000" + }, + { + "id": "84912", + "name": "Tabuating", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.39210000", + "longitude": "120.94084000" + }, + { + "id": "84957", + "name": "Tal I Mun Doc", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.21210000", + "longitude": "120.68490000" + }, + { + "id": "84962", + "name": "Talaga", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.38403000", + "longitude": "120.58933000" + }, + { + "id": "84970", + "name": "Talang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.02488000", + "longitude": "120.83782000" + }, + { + "id": "84972", + "name": "Talavera", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.58830000", + "longitude": "120.91920000" + }, + { + "id": "84996", + "name": "Taltal", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.58780000", + "longitude": "119.94550000" + }, + { + "id": "84998", + "name": "Talugtug", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.77780000", + "longitude": "120.81110000" + }, + { + "id": "85056", + "name": "Tariji", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.52112000", + "longitude": "120.61442000" + }, + { + "id": "85058", + "name": "Tarlac City", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.48017000", + "longitude": "120.59794000" + }, + { + "id": "85061", + "name": "Tartaro", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.16667000", + "longitude": "121.01667000" + }, + { + "id": "85070", + "name": "Tayabo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.83450000", + "longitude": "121.03090000" + }, + { + "id": "85086", + "name": "Telabastagan", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.11854000", + "longitude": "120.60773000" + }, + { + "id": "85119", + "name": "Tikiw", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.31193000", + "longitude": "120.86116000" + }, + { + "id": "85131", + "name": "Tinang", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.37626000", + "longitude": "120.65343000" + }, + { + "id": "85166", + "name": "Tondod", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.71820000", + "longitude": "120.96800000" + }, + { + "id": "85239", + "name": "Uacon", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.67870000", + "longitude": "119.94030000" + }, + { + "id": "85251", + "name": "Umiray", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.22060000", + "longitude": "121.41110000" + }, + { + "id": "85264", + "name": "Upig", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.02551000", + "longitude": "120.99193000" + }, + { + "id": "85281", + "name": "Vargas", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.59332000", + "longitude": "120.48709000" + }, + { + "id": "85292", + "name": "Villa Aglipay", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.46605000", + "longitude": "120.45273000" + }, + { + "id": "85293", + "name": "Villa Isla", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.77030000", + "longitude": "120.86660000" + }, + { + "id": "85310", + "name": "Vizal San Pablo", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.06247000", + "longitude": "120.90021000" + }, + { + "id": "85311", + "name": "Vizal Santo Niño", + "state_id": 1345, + "state_code": "03", + "country_id": 174, + "country_code": "PH", + "latitude": "15.02924000", + "longitude": "120.90505000" + }, + { + "id": "81154", + "name": "Agbannawag", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.37641000", + "longitude": "121.54780000" + }, + { + "id": "81243", + "name": "Ambuclao", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.48333000", + "longitude": "120.75000000" + }, + { + "id": "81248", + "name": "Amlimay", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.69377000", + "longitude": "120.83704000" + }, + { + "id": "81250", + "name": "Ampusungan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.78040000", + "longitude": "120.72470000" + }, + { + "id": "81264", + "name": "Angad", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.58490000", + "longitude": "120.62570000" + }, + { + "id": "81294", + "name": "Apayao", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "18.03359000", + "longitude": "121.17920000" + }, + { + "id": "81327", + "name": "Atok", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.58355000", + "longitude": "120.69949000" + }, + { + "id": "81375", + "name": "Baculongan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.80000000", + "longitude": "120.83330000" + }, + { + "id": "81408", + "name": "Baguinge", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.77767000", + "longitude": "121.10624000" + }, + { + "id": "81409", + "name": "Baguio", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.41639000", + "longitude": "120.59306000" + }, + { + "id": "81426", + "name": "Bakun", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.78950000", + "longitude": "120.66310000" + }, + { + "id": "81458", + "name": "Balbalan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.44139000", + "longitude": "121.20194000" + }, + { + "id": "81515", + "name": "Banaue", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.91356000", + "longitude": "121.06184000" + }, + { + "id": "81529", + "name": "Bangao", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.82110000", + "longitude": "120.84040000" + }, + { + "id": "81534", + "name": "Bangued", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.60833000", + "longitude": "120.63806000" + }, + { + "id": "81551", + "name": "Bantay", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.43793000", + "longitude": "120.75775000" + }, + { + "id": "81577", + "name": "Barlig", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.03725000", + "longitude": "121.10384000" + }, + { + "id": "81645", + "name": "Bauko", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.98980000", + "longitude": "120.86710000" + }, + { + "id": "81652", + "name": "Bayabas", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.45000000", + "longitude": "120.51667000" + }, + { + "id": "81679", + "name": "Besao", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.09500000", + "longitude": "120.85790000" + }, + { + "id": "81680", + "name": "Betwagan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.08333000", + "longitude": "120.96667000" + }, + { + "id": "81759", + "name": "Bocos", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.92646000", + "longitude": "121.05734000" + }, + { + "id": "81764", + "name": "Bokod", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.48950000", + "longitude": "120.83130000" + }, + { + "id": "81770", + "name": "Boliney", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.40773000", + "longitude": "120.78115000" + }, + { + "id": "81793", + "name": "Bontoc", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.08731000", + "longitude": "120.97685000" + }, + { + "id": "81824", + "name": "Bucay", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.54040000", + "longitude": "120.71880000" + }, + { + "id": "81851", + "name": "Buguias", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.72267000", + "longitude": "120.82834000" + }, + { + "id": "81864", + "name": "Bulalacao", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.83580000", + "longitude": "120.80850000" + }, + { + "id": "81924", + "name": "Butigui", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.11534000", + "longitude": "121.43304000" + }, + { + "id": "82007", + "name": "Calaba", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.61780000", + "longitude": "120.61620000" + }, + { + "id": "82021", + "name": "Calanasan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "18.25500000", + "longitude": "121.03444000" + }, + { + "id": "82280", + "name": "Conner", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.79639000", + "longitude": "121.32750000" + }, + { + "id": "82335", + "name": "Daguioman", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.45093000", + "longitude": "120.91505000" + }, + { + "id": "82349", + "name": "Dalipey", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.80000000", + "longitude": "120.71667000" + }, + { + "id": "82355", + "name": "Dalupirip", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.32603000", + "longitude": "120.72414000" + }, + { + "id": "82370", + "name": "Danglas", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.70090000", + "longitude": "120.65560000" + }, + { + "id": "82455", + "name": "Dolores", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.64770000", + "longitude": "120.70910000" + }, + { + "id": "82539", + "name": "Flora", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "18.21630000", + "longitude": "121.41850000" + }, + { + "id": "82557", + "name": "Gambang", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.75000000", + "longitude": "120.78330000" + }, + { + "id": "82639", + "name": "Guinsadan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.96420000", + "longitude": "120.86800000" + }, + { + "id": "82678", + "name": "Hapao", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.87966000", + "longitude": "121.01604000" + }, + { + "id": "82775", + "name": "Itogon", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.36389000", + "longitude": "120.67694000" + }, + { + "id": "82829", + "name": "Kabugao", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "18.01698000", + "longitude": "121.18173000" + }, + { + "id": "82855", + "name": "Kalinga", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.42599000", + "longitude": "121.41609000" + }, + { + "id": "82867", + "name": "Kapangan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.57460000", + "longitude": "120.59710000" + }, + { + "id": "82892", + "name": "Kiangan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.77607000", + "longitude": "121.08584000" + }, + { + "id": "82897", + "name": "Kibungan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.69500000", + "longitude": "120.65530000" + }, + { + "id": "82946", + "name": "La Paz", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.67460000", + "longitude": "120.68640000" + }, + { + "id": "82953", + "name": "La Trinidad", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.45500000", + "longitude": "120.58750000" + }, + { + "id": "82973", + "name": "Lagangilang", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.61250000", + "longitude": "120.73580000" + }, + { + "id": "82975", + "name": "Lagawe", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.79997000", + "longitude": "121.11924000" + }, + { + "id": "82976", + "name": "Lagayan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.72080000", + "longitude": "120.70670000" + }, + { + "id": "83006", + "name": "Lamut", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.64907000", + "longitude": "121.22474000" + }, + { + "id": "83055", + "name": "Laya", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.47260000", + "longitude": "121.46780000" + }, + { + "id": "83102", + "name": "Licuan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.60890000", + "longitude": "120.90590000" + }, + { + "id": "83152", + "name": "Liwan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.51910000", + "longitude": "121.63200000" + }, + { + "id": "83156", + "name": "Loacan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.55000000", + "longitude": "120.66667000" + }, + { + "id": "83191", + "name": "Luba", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.31800000", + "longitude": "120.69450000" + }, + { + "id": "83195", + "name": "Lubuagan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.35480000", + "longitude": "121.17470000" + }, + { + "id": "83231", + "name": "Luna", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "18.32583000", + "longitude": "121.35361000" + }, + { + "id": "83482", + "name": "Manabo", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.43320000", + "longitude": "120.70530000" + }, + { + "id": "83528", + "name": "Mankayan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.86320000", + "longitude": "120.78290000" + }, + { + "id": "83697", + "name": "Monamon", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.88330000", + "longitude": "120.88330000" + }, + { + "id": "83717", + "name": "Mountain Province", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.08333000", + "longitude": "121.16667000" + }, + { + "id": "83771", + "name": "Nangalisan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.43440000", + "longitude": "120.47780000" + }, + { + "id": "83789", + "name": "Natonin", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.10925000", + "longitude": "121.27614000" + }, + { + "id": "83791", + "name": "Natubleng", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.69647000", + "longitude": "120.78054000" + }, + { + "id": "84013", + "name": "Paracelis", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.26667000", + "longitude": "121.46667000" + }, + { + "id": "84032", + "name": "Pasil", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.38333000", + "longitude": "121.13333000" + }, + { + "id": "84079", + "name": "Peñarrubia", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.56470000", + "longitude": "120.65190000" + }, + { + "id": "84084", + "name": "Pidigan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.57000000", + "longitude": "120.59030000" + }, + { + "id": "84094", + "name": "Pilar", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.41650000", + "longitude": "120.59540000" + }, + { + "id": "84117", + "name": "Pinukpuk", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.61667000", + "longitude": "121.40000000" + }, + { + "id": "84181", + "name": "Province of Abra", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.58333000", + "longitude": "120.75000000" + }, + { + "id": "84192", + "name": "Province of Benguet", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.50000000", + "longitude": "120.66667000" + }, + { + "id": "84209", + "name": "Province of Ifugao", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.83333000", + "longitude": "121.16667000" + }, + { + "id": "84372", + "name": "Sablan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.49300000", + "longitude": "120.49540000" + }, + { + "id": "84376", + "name": "Sadanga", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.16514000", + "longitude": "121.01724000" + }, + { + "id": "84377", + "name": "Sadsadan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.93330000", + "longitude": "120.86670000" + }, + { + "id": "84380", + "name": "Sagada", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.08400000", + "longitude": "120.89960000" + }, + { + "id": "84524", + "name": "San Juan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.68290000", + "longitude": "120.73240000" + }, + { + "id": "84600", + "name": "San Ramon", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.41350000", + "longitude": "120.70760000" + }, + { + "id": "84681", + "name": "Santa Marcela", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "18.28333000", + "longitude": "121.43333000" + }, + { + "id": "84889", + "name": "Tabaan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.30000000", + "longitude": "120.51667000" + }, + { + "id": "84899", + "name": "Tabio", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.85000000", + "longitude": "120.80000000" + }, + { + "id": "84916", + "name": "Tabuk", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.47378000", + "longitude": "121.46799000" + }, + { + "id": "84918", + "name": "Tacadang", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.72640000", + "longitude": "120.64050000" + }, + { + "id": "84924", + "name": "Tadian", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.99560000", + "longitude": "120.82030000" + }, + { + "id": "84994", + "name": "Taloy", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.33333000", + "longitude": "120.50000000" + }, + { + "id": "85043", + "name": "Tanudan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.29556000", + "longitude": "121.23778000" + }, + { + "id": "85082", + "name": "Tayum", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.61720000", + "longitude": "120.65420000" + }, + { + "id": "85135", + "name": "Tinglayan", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.27611000", + "longitude": "121.16250000" + }, + { + "id": "85170", + "name": "Topdac", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.55530000", + "longitude": "120.71160000" + }, + { + "id": "85191", + "name": "Tublay", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.54310000", + "longitude": "120.60960000" + }, + { + "id": "85205", + "name": "Tuding", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "16.41085000", + "longitude": "120.64220000" + }, + { + "id": "85300", + "name": "Villarosa", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "15.55000000", + "longitude": "120.75000000" + }, + { + "id": "85302", + "name": "Villaviciosa", + "state_id": 1335, + "state_code": "15", + "country_id": 174, + "country_code": "PH", + "latitude": "17.43790000", + "longitude": "120.62620000" + }, + { + "id": "81203", + "name": "Alejal", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.38417000", + "longitude": "125.66000000" + }, + { + "id": "81261", + "name": "Andili", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.46200000", + "longitude": "125.97010000" + }, + { + "id": "81262", + "name": "Andop", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.86111000", + "longitude": "125.75389000" + }, + { + "id": "81271", + "name": "Anibongan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.39333000", + "longitude": "125.71889000" + }, + { + "id": "81321", + "name": "Astorga", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.90722000", + "longitude": "125.45583000" + }, + { + "id": "81347", + "name": "Babag", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.73309000", + "longitude": "126.07130000" + }, + { + "id": "81374", + "name": "Baculin", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.45250000", + "longitude": "126.58417000" + }, + { + "id": "81393", + "name": "Baganga", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.57389000", + "longitude": "126.56000000" + }, + { + "id": "81438", + "name": "Balagunan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.49222000", + "longitude": "125.52111000" + }, + { + "id": "81445", + "name": "Balangonan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "5.57333000", + "longitude": "125.35389000" + }, + { + "id": "81507", + "name": "Balutakay", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.72111000", + "longitude": "125.35167000" + }, + { + "id": "81547", + "name": "Bansalan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.78611000", + "longitude": "125.21333000" + }, + { + "id": "81549", + "name": "Bantacan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.60400000", + "longitude": "126.12980000" + }, + { + "id": "81561", + "name": "Baon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.79562000", + "longitude": "126.08778000" + }, + { + "id": "81563", + "name": "Baracatan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.96750000", + "longitude": "125.41583000" + }, + { + "id": "81603", + "name": "Basiawan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.53417000", + "longitude": "125.48694000" + }, + { + "id": "81623", + "name": "Batiano", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.55340000", + "longitude": "126.49070000" + }, + { + "id": "81629", + "name": "Bato", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.04306000", + "longitude": "125.47306000" + }, + { + "id": "81633", + "name": "Batobato", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.82522000", + "longitude": "126.08458000" + }, + { + "id": "81665", + "name": "Baylo", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.85514000", + "longitude": "126.05563000" + }, + { + "id": "81684", + "name": "Biao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.16333000", + "longitude": "125.52111000" + }, + { + "id": "81716", + "name": "Bincoñgan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.36667000", + "longitude": "125.75000000" + }, + { + "id": "81743", + "name": "Bitaogan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.76842000", + "longitude": "126.07738000" + }, + { + "id": "81753", + "name": "Bobon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.86782000", + "longitude": "126.32838000" + }, + { + "id": "81768", + "name": "Bolila", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.37167000", + "longitude": "125.57139000" + }, + { + "id": "81801", + "name": "Boston", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.87111000", + "longitude": "126.36417000" + }, + { + "id": "81825", + "name": "Buclad", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.52778000", + "longitude": "125.75056000" + }, + { + "id": "81852", + "name": "Buhangin", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.49111000", + "longitude": "125.54750000" + }, + { + "id": "81858", + "name": "Bukid", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "5.57167000", + "longitude": "125.40556000" + }, + { + "id": "81861", + "name": "Bulacan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.56750000", + "longitude": "125.42111000" + }, + { + "id": "81895", + "name": "Bungabon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.22210000", + "longitude": "125.87310000" + }, + { + "id": "81927", + "name": "Butulan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "5.61444000", + "longitude": "125.43167000" + }, + { + "id": "81961", + "name": "Cabayangan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.40722000", + "longitude": "125.73306000" + }, + { + "id": "81969", + "name": "Cabinuangan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.68333000", + "longitude": "126.03333000" + }, + { + "id": "81984", + "name": "Caburan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "5.91806000", + "longitude": "125.64111000" + }, + { + "id": "82086", + "name": "Cambanugoy", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.54130000", + "longitude": "125.75530000" + }, + { + "id": "82097", + "name": "Camudmud", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.17611000", + "longitude": "125.69333000" + }, + { + "id": "82148", + "name": "Caraga", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.32972000", + "longitude": "126.56750000" + }, + { + "id": "82171", + "name": "Carmen", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.36056000", + "longitude": "125.70639000" + }, + { + "id": "82209", + "name": "Cateel", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.79139000", + "longitude": "126.45333000" + }, + { + "id": "82255", + "name": "Cogon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.15083000", + "longitude": "125.71722000" + }, + { + "id": "82268", + "name": "Compostela", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.67306000", + "longitude": "126.08889000" + }, + { + "id": "82270", + "name": "Compostela Valley", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.68333000", + "longitude": "126.11667000" + }, + { + "id": "82275", + "name": "Concepcion", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.75056000", + "longitude": "125.71194000" + }, + { + "id": "82294", + "name": "Corocotan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.39980000", + "longitude": "125.77270000" + }, + { + "id": "82296", + "name": "Coronon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.87917000", + "longitude": "125.44889000" + }, + { + "id": "82305", + "name": "Cuambog", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.30861000", + "longitude": "125.84806000" + }, + { + "id": "82311", + "name": "Culaman", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "5.96028000", + "longitude": "125.65861000" + }, + { + "id": "82328", + "name": "Dacudao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.21528000", + "longitude": "125.47139000" + }, + { + "id": "82395", + "name": "Davan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.91487000", + "longitude": "126.15323000" + }, + { + "id": "82396", + "name": "Davao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.07306000", + "longitude": "125.61278000" + }, + { + "id": "82411", + "name": "Del Pilar", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.56306000", + "longitude": "125.82667000" + }, + { + "id": "82425", + "name": "Digos", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.74972000", + "longitude": "125.35722000" + }, + { + "id": "82450", + "name": "Dolo", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.81028000", + "longitude": "125.19167000" + }, + { + "id": "82493", + "name": "Dumlan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.42750000", + "longitude": "125.88190000" + }, + { + "id": "82517", + "name": "Esperanza", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.49167000", + "longitude": "125.72806000" + }, + { + "id": "82547", + "name": "Gabi", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.62150000", + "longitude": "126.09200000" + }, + { + "id": "82550", + "name": "Gabuyan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.60806000", + "longitude": "125.66889000" + }, + { + "id": "82606", + "name": "Goma", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.79194000", + "longitude": "125.32083000" + }, + { + "id": "82621", + "name": "Guihing Proper", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.68444000", + "longitude": "125.35250000" + }, + { + "id": "82654", + "name": "Gumalang", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.20833000", + "longitude": "125.40361000" + }, + { + "id": "82657", + "name": "Gupitan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.77583000", + "longitude": "125.64056000" + }, + { + "id": "82668", + "name": "Hagonoy", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.68333000", + "longitude": "125.32556000" + }, + { + "id": "82684", + "name": "Hiju, Maco", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.38541000", + "longitude": "125.82822000" + }, + { + "id": "82720", + "name": "Ignit", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.70083000", + "longitude": "125.29194000" + }, + { + "id": "82724", + "name": "Ilangay", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.91284000", + "longitude": "126.05008000" + }, + { + "id": "82743", + "name": "Inawayan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.96083000", + "longitude": "125.47333000" + }, + { + "id": "82814", + "name": "Jovellar", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.06350000", + "longitude": "126.45558000" + }, + { + "id": "82846", + "name": "Kalbay", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "5.72333000", + "longitude": "125.49861000" + }, + { + "id": "82848", + "name": "Kalian", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.12306000", + "longitude": "125.70028000" + }, + { + "id": "82851", + "name": "Kaligutan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.70306000", + "longitude": "125.81306000" + }, + { + "id": "82866", + "name": "Kapalong", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.77056000", + "longitude": "125.55861000" + }, + { + "id": "82880", + "name": "Katipunan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.32028000", + "longitude": "125.62028000" + }, + { + "id": "82895", + "name": "Kiblawan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.61417000", + "longitude": "125.23667000" + }, + { + "id": "82905", + "name": "Kinablangan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.69280000", + "longitude": "126.54912000" + }, + { + "id": "82908", + "name": "Kinamayan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.49944000", + "longitude": "125.67361000" + }, + { + "id": "82909", + "name": "Kinangan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.30139000", + "longitude": "125.58500000" + }, + { + "id": "82944", + "name": "La Libertad", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.48028000", + "longitude": "125.64722000" + }, + { + "id": "82949", + "name": "La Paz", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.31583000", + "longitude": "125.73333000" + }, + { + "id": "82954", + "name": "La Union", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.70413000", + "longitude": "126.08798000" + }, + { + "id": "82969", + "name": "Lacaron", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.44889000", + "longitude": "125.57917000" + }, + { + "id": "82972", + "name": "Lacson", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.21194000", + "longitude": "125.44222000" + }, + { + "id": "82983", + "name": "Lais", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.33278000", + "longitude": "125.64639000" + }, + { + "id": "83002", + "name": "Lamitan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.08722000", + "longitude": "125.70222000" + }, + { + "id": "83038", + "name": "Lapuan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.14444000", + "longitude": "125.70083000" + }, + { + "id": "83047", + "name": "Lasang", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.26694000", + "longitude": "125.66500000" + }, + { + "id": "83098", + "name": "Libuganon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.34880000", + "longitude": "125.77820000" + }, + { + "id": "83116", + "name": "Limao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.07917000", + "longitude": "125.67361000" + }, + { + "id": "83125", + "name": "Limot", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.04050000", + "longitude": "126.27268000" + }, + { + "id": "83133", + "name": "Linao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.01720000", + "longitude": "125.99200000" + }, + { + "id": "83143", + "name": "Linoan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.62600000", + "longitude": "125.97410000" + }, + { + "id": "83210", + "name": "Lukatan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.00960000", + "longitude": "126.42118000" + }, + { + "id": "83232", + "name": "Luna", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.57639000", + "longitude": "125.66722000" + }, + { + "id": "83239", + "name": "Lungaog", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.52944000", + "longitude": "125.68778000" + }, + { + "id": "83246", + "name": "Lupon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.89814000", + "longitude": "126.00961000" + }, + { + "id": "83253", + "name": "Luzon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.51904000", + "longitude": "126.09408000" + }, + { + "id": "83277", + "name": "Mabini", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.31139000", + "longitude": "125.85278000" + }, + { + "id": "83287", + "name": "Mabuhay", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.33306000", + "longitude": "125.54750000" + }, + { + "id": "83306", + "name": "Maco", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.36194000", + "longitude": "125.85528000" + }, + { + "id": "83315", + "name": "Maduao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.29417000", + "longitude": "125.62583000" + }, + { + "id": "83328", + "name": "Magatos", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.55556000", + "longitude": "125.72667000" + }, + { + "id": "83335", + "name": "Magdug", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.54764000", + "longitude": "126.09508000" + }, + { + "id": "83338", + "name": "Magnaga", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.16940000", + "longitude": "125.89310000" + }, + { + "id": "83342", + "name": "Magsaysay", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.76667000", + "longitude": "125.18333000" + }, + { + "id": "83349", + "name": "Magugpo Poblacion", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.44750000", + "longitude": "125.80460000" + }, + { + "id": "83357", + "name": "Mahanob", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.57326000", + "longitude": "126.50684000" + }, + { + "id": "83362", + "name": "Mahayag", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.21667000", + "longitude": "125.61944000" + }, + { + "id": "83393", + "name": "Malagos", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.18500000", + "longitude": "125.42222000" + }, + { + "id": "83397", + "name": "Malalag", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.59583000", + "longitude": "125.39917000" + }, + { + "id": "83436", + "name": "Malinao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.65917000", + "longitude": "125.28667000" + }, + { + "id": "83445", + "name": "Malita", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.41500000", + "longitude": "125.61167000" + }, + { + "id": "83471", + "name": "Mambago", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.10556000", + "longitude": "125.69444000" + }, + { + "id": "83484", + "name": "Managa", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.74611000", + "longitude": "125.26806000" + }, + { + "id": "83487", + "name": "Manaloal", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.36611000", + "longitude": "125.66028000" + }, + { + "id": "83495", + "name": "Manat", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.53270000", + "longitude": "126.01730000" + }, + { + "id": "83499", + "name": "Manay", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.21500000", + "longitude": "126.53972000" + }, + { + "id": "83517", + "name": "Mangili", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.00333000", + "longitude": "125.68389000" + }, + { + "id": "83523", + "name": "Manikling", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.87907000", + "longitude": "126.06063000" + }, + { + "id": "83618", + "name": "Matanao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.67917000", + "longitude": "125.25500000" + }, + { + "id": "83625", + "name": "Mati", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.95508000", + "longitude": "126.21655000" + }, + { + "id": "83626", + "name": "Matiao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.08280000", + "longitude": "125.93620000" + }, + { + "id": "83632", + "name": "Matti", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.77056000", + "longitude": "125.30861000" + }, + { + "id": "83641", + "name": "Mawab", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.56667000", + "longitude": "125.98333000" + }, + { + "id": "83651", + "name": "Mayo", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.00211000", + "longitude": "126.33198000" + }, + { + "id": "83702", + "name": "Monkayo", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.81528000", + "longitude": "126.05444000" + }, + { + "id": "83707", + "name": "Montevista", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.69333000", + "longitude": "125.98889000" + }, + { + "id": "83739", + "name": "Nabunturan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.60778000", + "longitude": "125.96639000" + }, + { + "id": "83772", + "name": "Nangan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.47264000", + "longitude": "126.12438000" + }, + { + "id": "83775", + "name": "Nanyo", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.33306000", + "longitude": "125.63778000" + }, + { + "id": "83801", + "name": "New Baclayon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.58417000", + "longitude": "125.36944000" + }, + { + "id": "83803", + "name": "New Bohol", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.52330000", + "longitude": "125.83630000" + }, + { + "id": "83805", + "name": "New Corella", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.58660000", + "longitude": "125.82370000" + }, + { + "id": "83808", + "name": "New Leyte", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.50000000", + "longitude": "125.75000000" + }, + { + "id": "83811", + "name": "New Sibonga", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.56090000", + "longitude": "125.92980000" + }, + { + "id": "83812", + "name": "New Visayas", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.52333000", + "longitude": "125.62333000" + }, + { + "id": "83830", + "name": "Nuing", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "5.63278000", + "longitude": "125.43528000" + }, + { + "id": "83876", + "name": "Padada", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.64111000", + "longitude": "125.34500000" + }, + { + "id": "83886", + "name": "Pag-asa", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.57556000", + "longitude": "125.68389000" + }, + { + "id": "83894", + "name": "Pagsabangan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.48111000", + "longitude": "125.74944000" + }, + { + "id": "83926", + "name": "Palma Gil", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.64222000", + "longitude": "125.62917000" + }, + { + "id": "83943", + "name": "Panabo", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.30806000", + "longitude": "125.68417000" + }, + { + "id": "83964", + "name": "Pandasan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.28380000", + "longitude": "125.85350000" + }, + { + "id": "83977", + "name": "Pangian", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.46278000", + "longitude": "125.54528000" + }, + { + "id": "83985", + "name": "Panikian", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.01070000", + "longitude": "126.02418000" + }, + { + "id": "84005", + "name": "Pantukan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.16333000", + "longitude": "125.89917000" + }, + { + "id": "84028", + "name": "Pasian", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.92806000", + "longitude": "126.06722000" + }, + { + "id": "84156", + "name": "Pondaguitan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.36115000", + "longitude": "126.17778000" + }, + { + "id": "84205", + "name": "Province of Davao del Norte", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.45099000", + "longitude": "125.81543000" + }, + { + "id": "84206", + "name": "Province of Davao del Sur", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.79281000", + "longitude": "125.30182000" + }, + { + "id": "84204", + "name": "Province of Davao Oriental", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.16667000", + "longitude": "126.33333000" + }, + { + "id": "84277", + "name": "Pung-Pang", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.49750000", + "longitude": "125.46333000" + }, + { + "id": "84424", + "name": "Samal", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.07444000", + "longitude": "125.70833000" + }, + { + "id": "84434", + "name": "Sampao", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.59389000", + "longitude": "125.66111000" + }, + { + "id": "84441", + "name": "San Alfonso", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.78028000", + "longitude": "126.42028000" + }, + { + "id": "84449", + "name": "San Antonio", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.12000000", + "longitude": "125.73972000" + }, + { + "id": "84496", + "name": "San Ignacio", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.11890000", + "longitude": "126.48838000" + }, + { + "id": "84539", + "name": "San Luis", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.44139000", + "longitude": "126.55111000" + }, + { + "id": "84551", + "name": "San Mariano", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.50000000", + "longitude": "126.00000000" + }, + { + "id": "84561", + "name": "San Miguel", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.48500000", + "longitude": "125.67639000" + }, + { + "id": "84584", + "name": "San Pedro", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.34194000", + "longitude": "126.51750000" + }, + { + "id": "84598", + "name": "San Rafael", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.76389000", + "longitude": "126.45583000" + }, + { + "id": "84603", + "name": "San Remigio", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.92306000", + "longitude": "125.77583000" + }, + { + "id": "84656", + "name": "Santa Cruz", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.83694000", + "longitude": "125.41306000" + }, + { + "id": "84688", + "name": "Santa Maria", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.55361000", + "longitude": "125.47083000" + }, + { + "id": "84710", + "name": "Santiago", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.28889000", + "longitude": "126.57333000" + }, + { + "id": "84728", + "name": "Santo Niño", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.62361000", + "longitude": "125.62528000" + }, + { + "id": "84749", + "name": "Sarangani", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "5.40333000", + "longitude": "125.46361000" + }, + { + "id": "84776", + "name": "Sibulan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.93361000", + "longitude": "125.46222000" + }, + { + "id": "84784", + "name": "Sigaboy", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.65413000", + "longitude": "126.07268000" + }, + { + "id": "84803", + "name": "Simod", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.47583000", + "longitude": "125.34083000" + }, + { + "id": "84811", + "name": "Sinawilan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.75444000", + "longitude": "125.24639000" + }, + { + "id": "84812", + "name": "Sinayawan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.71250000", + "longitude": "125.30944000" + }, + { + "id": "84829", + "name": "Sirib", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.13333000", + "longitude": "125.40722000" + }, + { + "id": "84858", + "name": "Sugal", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "5.66222000", + "longitude": "125.46167000" + }, + { + "id": "84870", + "name": "Sulop", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.59861000", + "longitude": "125.34361000" + }, + { + "id": "84883", + "name": "Surup", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.39035000", + "longitude": "126.14558000" + }, + { + "id": "84887", + "name": "Suz-on", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.66278000", + "longitude": "125.63833000" + }, + { + "id": "84926", + "name": "Tagakpan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.11278000", + "longitude": "125.42917000" + }, + { + "id": "84941", + "name": "Tagdanua", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.20430000", + "longitude": "125.88410000" + }, + { + "id": "84943", + "name": "Tagnanan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.28361000", + "longitude": "125.84222000" + }, + { + "id": "84956", + "name": "Takub", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.85639000", + "longitude": "125.42250000" + }, + { + "id": "84964", + "name": "Talagutong", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.26444000", + "longitude": "125.66778000" + }, + { + "id": "84983", + "name": "Talisay", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.71973000", + "longitude": "126.09998000" + }, + { + "id": "84991", + "name": "Talomo", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.52861000", + "longitude": "125.72278000" + }, + { + "id": "85003", + "name": "Tamayong", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.13306000", + "longitude": "125.37972000" + }, + { + "id": "85011", + "name": "Tambo", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.15694000", + "longitude": "125.69917000" + }, + { + "id": "85015", + "name": "Tamisan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.84372000", + "longitude": "126.29838000" + }, + { + "id": "85027", + "name": "Tamugan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.23083000", + "longitude": "125.37639000" + }, + { + "id": "85040", + "name": "Tanlad", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.60222000", + "longitude": "125.44500000" + }, + { + "id": "85050", + "name": "Tapia", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.75417000", + "longitude": "126.01194000" + }, + { + "id": "85060", + "name": "Tarragona", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.04910000", + "longitude": "126.44708000" + }, + { + "id": "85067", + "name": "Tawan tawan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.16917000", + "longitude": "125.37278000" + }, + { + "id": "85078", + "name": "Taytayan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.73389000", + "longitude": "126.50194000" + }, + { + "id": "85093", + "name": "Tibagon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.23270000", + "longitude": "125.86280000" + }, + { + "id": "85094", + "name": "Tibanbang", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.63153000", + "longitude": "126.10548000" + }, + { + "id": "85097", + "name": "Tiblawan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.47834000", + "longitude": "126.10828000" + }, + { + "id": "85163", + "name": "Tombongon", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.07920000", + "longitude": "125.94860000" + }, + { + "id": "85182", + "name": "Tubalan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.49500000", + "longitude": "125.56611000" + }, + { + "id": "85184", + "name": "Tuban", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "6.82278000", + "longitude": "125.38694000" + }, + { + "id": "85193", + "name": "Tubod", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.37167000", + "longitude": "125.64472000" + }, + { + "id": "85206", + "name": "Tuganay", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.36889000", + "longitude": "125.72306000" + }, + { + "id": "85217", + "name": "Tuli", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.23333000", + "longitude": "125.41667000" + }, + { + "id": "85245", + "name": "Ula", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.13222000", + "longitude": "125.49222000" + }, + { + "id": "85315", + "name": "Wañgan", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.15972000", + "longitude": "125.44528000" + }, + { + "id": "85316", + "name": "Wines", + "state_id": 1340, + "state_code": "11", + "country_id": 174, + "country_code": "PH", + "latitude": "7.19389000", + "longitude": "125.38917000" + }, + { + "id": "81142", + "name": "Acao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.52556000", + "longitude": "120.37639000" + }, + { + "id": "81161", + "name": "Agno", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.11610000", + "longitude": "119.79930000" + }, + { + "id": "81163", + "name": "Agoo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.08333000", + "longitude": "120.10000000" + }, + { + "id": "81168", + "name": "Aguilar", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.88840000", + "longitude": "120.23780000" + }, + { + "id": "81179", + "name": "Alac", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98770000", + "longitude": "120.80650000" + }, + { + "id": "81185", + "name": "Alaminos", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.15611000", + "longitude": "119.98111000" + }, + { + "id": "81194", + "name": "Alcala", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.84722000", + "longitude": "120.52417000" + }, + { + "id": "81217", + "name": "Alilem", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.88610000", + "longitude": "120.53040000" + }, + { + "id": "81223", + "name": "Allangigan Primero", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.17393000", + "longitude": "120.49195000" + }, + { + "id": "81230", + "name": "Aloleng", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.13070000", + "longitude": "119.78240000" + }, + { + "id": "81241", + "name": "Amagbagan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.09140000", + "longitude": "120.52320000" + }, + { + "id": "81256", + "name": "Anambongan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.86634000", + "longitude": "120.38858000" + }, + { + "id": "81259", + "name": "Anda", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.28920000", + "longitude": "119.95000000" + }, + { + "id": "81267", + "name": "Angatel", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.80589000", + "longitude": "120.34326000" + }, + { + "id": "81286", + "name": "Anulid", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.82563000", + "longitude": "120.48834000" + }, + { + "id": "81313", + "name": "Aringay", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.39400000", + "longitude": "120.35450000" + }, + { + "id": "81320", + "name": "Asingan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00510000", + "longitude": "120.66950000" + }, + { + "id": "81346", + "name": "Baay", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.11880000", + "longitude": "120.57530000" + }, + { + "id": "81353", + "name": "Bacag", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.93000000", + "longitude": "120.58222000" + }, + { + "id": "81355", + "name": "Bacarra", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.25290000", + "longitude": "120.61250000" + }, + { + "id": "81359", + "name": "Bacnar", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.88641000", + "longitude": "120.34419000" + }, + { + "id": "81361", + "name": "Bacnotan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.72222000", + "longitude": "120.35250000" + }, + { + "id": "81372", + "name": "Bactad Proper", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.97842000", + "longitude": "120.61026000" + }, + { + "id": "81376", + "name": "Bacundao Weste", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.91536000", + "longitude": "120.47668000" + }, + { + "id": "81384", + "name": "Badoc", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.92650000", + "longitude": "120.47640000" + }, + { + "id": "81410", + "name": "Bagulin", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.60833000", + "longitude": "120.43944000" + }, + { + "id": "81420", + "name": "Bail", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.28670000", + "longitude": "120.40040000" + }, + { + "id": "81446", + "name": "Balaoan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.82190000", + "longitude": "120.40450000" + }, + { + "id": "81476", + "name": "Balingasay", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.35730000", + "longitude": "119.85640000" + }, + { + "id": "81479", + "name": "Balingueo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.95830000", + "longitude": "120.40973000" + }, + { + "id": "81494", + "name": "Balogo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.99032000", + "longitude": "120.28302000" + }, + { + "id": "81505", + "name": "Balungao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.89806000", + "longitude": "120.68833000" + }, + { + "id": "81509", + "name": "Baluyot", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.79586000", + "longitude": "120.46088000" + }, + { + "id": "81519", + "name": "Banayoyo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.23333000", + "longitude": "120.48333000" + }, + { + "id": "81527", + "name": "Bangan-Oda", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.10870000", + "longitude": "119.83070000" + }, + { + "id": "81530", + "name": "Bangar", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.89360000", + "longitude": "120.42430000" + }, + { + "id": "81535", + "name": "Bangui", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.53760000", + "longitude": "120.76710000" + }, + { + "id": "81538", + "name": "Bani", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.18500000", + "longitude": "119.86130000" + }, + { + "id": "81544", + "name": "Banog Sur", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.16542000", + "longitude": "119.89802000" + }, + { + "id": "81550", + "name": "Bantay", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.58472000", + "longitude": "120.38917000" + }, + { + "id": "81556", + "name": "Bantog", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00910000", + "longitude": "120.69290000" + }, + { + "id": "81565", + "name": "Barangobong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.87778000", + "longitude": "120.54833000" + }, + { + "id": "81578", + "name": "Baro", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.99895000", + "longitude": "120.67350000" + }, + { + "id": "81580", + "name": "Barong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.05760000", + "longitude": "120.73400000" + }, + { + "id": "81606", + "name": "Basing", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98505000", + "longitude": "120.26831000" + }, + { + "id": "81607", + "name": "Basista", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.85240000", + "longitude": "120.39760000" + }, + { + "id": "81610", + "name": "Batac City", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.05540000", + "longitude": "120.56489000" + }, + { + "id": "81616", + "name": "Bataquil", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.15528000", + "longitude": "120.52750000" + }, + { + "id": "81642", + "name": "Bauang", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.53083000", + "longitude": "120.33306000" + }, + { + "id": "81648", + "name": "Bautista", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.78362000", + "longitude": "120.49848000" + }, + { + "id": "81654", + "name": "Bayambang", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.81270000", + "longitude": "120.45570000" + }, + { + "id": "81658", + "name": "Bayaoas", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.83404000", + "longitude": "120.26478000" + }, + { + "id": "81688", + "name": "Bical Norte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.81471000", + "longitude": "120.43509000" + }, + { + "id": "81698", + "name": "Bil-Loca", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.08750000", + "longitude": "120.56870000" + }, + { + "id": "81707", + "name": "Binabalian", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.42020000", + "longitude": "119.92790000" + }, + { + "id": "81711", + "name": "Binalonan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.05030000", + "longitude": "120.59260000" + }, + { + "id": "81717", + "name": "Binday", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.12812000", + "longitude": "120.45238000" + }, + { + "id": "81724", + "name": "Binmaley", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.03232000", + "longitude": "120.26904000" + }, + { + "id": "81806", + "name": "Boñgalon", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00022000", + "longitude": "120.15904000" + }, + { + "id": "81756", + "name": "Bobonan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.13480000", + "longitude": "120.52710000" + }, + { + "id": "81762", + "name": "Bogtong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.75536000", + "longitude": "120.32899000" + }, + { + "id": "81766", + "name": "Bolaoit", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.93218000", + "longitude": "120.43073000" + }, + { + "id": "81771", + "name": "Bolingit", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.95873000", + "longitude": "120.34960000" + }, + { + "id": "81778", + "name": "Bolo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.99480000", + "longitude": "120.16470000" + }, + { + "id": "81802", + "name": "Botao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.91667000", + "longitude": "120.41667000" + }, + { + "id": "81827", + "name": "Bued", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.16086000", + "longitude": "119.99880000" + }, + { + "id": "81835", + "name": "Buenlag", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.82976000", + "longitude": "120.51139000" + }, + { + "id": "81840", + "name": "Bugallon", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.95280000", + "longitude": "120.21550000" + }, + { + "id": "81883", + "name": "Bulog", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.96020000", + "longitude": "120.40170000" + }, + { + "id": "81909", + "name": "Burgos", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.51658000", + "longitude": "120.64492000" + }, + { + "id": "81926", + "name": "Butubut Norte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.80340000", + "longitude": "120.43440000" + }, + { + "id": "81932", + "name": "Caabiangan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.08740000", + "longitude": "119.92450000" + }, + { + "id": "81933", + "name": "Caba", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.43160000", + "longitude": "120.34460000" + }, + { + "id": "81940", + "name": "Cabalaoangan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98333000", + "longitude": "120.78333000" + }, + { + "id": "81942", + "name": "Cabalitian", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.08830000", + "longitude": "120.79220000" + }, + { + "id": "81972", + "name": "Cabittaogan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.57788000", + "longitude": "120.35914000" + }, + { + "id": "81979", + "name": "Cabugao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.79310000", + "longitude": "120.45780000" + }, + { + "id": "81983", + "name": "Cabungan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.33999000", + "longitude": "119.99490000" + }, + { + "id": "82034", + "name": "Calasiao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.01110000", + "longitude": "120.36000000" + }, + { + "id": "82047", + "name": "Calepaan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.01950000", + "longitude": "120.61900000" + }, + { + "id": "82059", + "name": "Callaguip", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.07139000", + "longitude": "120.48667000" + }, + { + "id": "82063", + "name": "Calomboyan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.94652000", + "longitude": "120.30348000" + }, + { + "id": "82064", + "name": "Calongbuyan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.16478000", + "longitude": "120.42716000" + }, + { + "id": "82066", + "name": "Calsib", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.84711000", + "longitude": "120.26412000" + }, + { + "id": "82078", + "name": "Camaley", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.99724000", + "longitude": "120.30107000" + }, + { + "id": "82101", + "name": "Canan Norte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.90986000", + "longitude": "120.47763000" + }, + { + "id": "82102", + "name": "Canaoalan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.02902000", + "longitude": "120.29641000" + }, + { + "id": "82112", + "name": "Candon", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.19472000", + "longitude": "120.45167000" + }, + { + "id": "82129", + "name": "Cantoria", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.84410000", + "longitude": "120.40450000" + }, + { + "id": "82132", + "name": "Caoayan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.56194000", + "longitude": "120.39750000" + }, + { + "id": "82136", + "name": "Capandanan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.95943000", + "longitude": "120.69519000" + }, + { + "id": "82143", + "name": "Capulaan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.90497000", + "longitude": "120.53719000" + }, + { + "id": "82152", + "name": "Caramutan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.92074000", + "longitude": "120.61012000" + }, + { + "id": "82154", + "name": "Carasi", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.19889000", + "longitude": "120.86833000" + }, + { + "id": "82167", + "name": "Carmen", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.88642000", + "longitude": "120.59984000" + }, + { + "id": "82177", + "name": "Caronoan West", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.26330000", + "longitude": "120.44630000" + }, + { + "id": "82178", + "name": "Carot", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.34468000", + "longitude": "119.98005000" + }, + { + "id": "82183", + "name": "Carriedo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.03100000", + "longitude": "120.75490000" + }, + { + "id": "82186", + "name": "Carusucan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.96589000", + "longitude": "120.63598000" + }, + { + "id": "82201", + "name": "Catablan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.97570000", + "longitude": "120.49530000" + }, + { + "id": "82210", + "name": "Caterman", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.21738000", + "longitude": "120.42442000" + }, + { + "id": "82217", + "name": "Cato", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.83620000", + "longitude": "119.91510000" + }, + { + "id": "82219", + "name": "Catuday", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.29230000", + "longitude": "119.80620000" + }, + { + "id": "82234", + "name": "Cayanga", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.11508000", + "longitude": "120.39875000" + }, + { + "id": "82237", + "name": "Cayungnan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.13320000", + "longitude": "119.83750000" + }, + { + "id": "82242", + "name": "Cervantes", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.99090000", + "longitude": "120.73590000" + }, + { + "id": "82266", + "name": "Comillas Norte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.95900000", + "longitude": "120.74690000" + }, + { + "id": "82297", + "name": "Corrooy", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.79620000", + "longitude": "120.44530000" + }, + { + "id": "82320", + "name": "Currimao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.01820000", + "longitude": "120.48760000" + }, + { + "id": "82339", + "name": "Dagup", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.63722000", + "longitude": "120.44556000" + }, + { + "id": "82340", + "name": "Dagupan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.04313000", + "longitude": "120.33325000" + }, + { + "id": "82363", + "name": "Damortis", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.24051000", + "longitude": "120.40565000" + }, + { + "id": "82386", + "name": "Darapidap", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.20007000", + "longitude": "120.41802000" + }, + { + "id": "82388", + "name": "Dasol", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.99020000", + "longitude": "119.88280000" + }, + { + "id": "82397", + "name": "Davila", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.47260000", + "longitude": "120.57630000" + }, + { + "id": "82416", + "name": "Diaz", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.84630000", + "longitude": "120.83470000" + }, + { + "id": "82426", + "name": "Dilan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.08790000", + "longitude": "120.52070000" + }, + { + "id": "82441", + "name": "Dingras", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.10320000", + "longitude": "120.69670000" + }, + { + "id": "82456", + "name": "Domalanoan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00292000", + "longitude": "120.21154000" + }, + { + "id": "82457", + "name": "Domampot", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00000000", + "longitude": "120.65000000" + }, + { + "id": "82459", + "name": "Don Pedro", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.88518000", + "longitude": "120.43036000" + }, + { + "id": "82463", + "name": "Dorongan Punta", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.81476000", + "longitude": "120.32266000" + }, + { + "id": "82466", + "name": "Doyong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.97224000", + "longitude": "120.35386000" + }, + { + "id": "82479", + "name": "Dulig", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00212000", + "longitude": "120.16864000" + }, + { + "id": "82486", + "name": "Dumalneg", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.52540000", + "longitude": "120.80940000" + }, + { + "id": "82494", + "name": "Dumpay", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.88295000", + "longitude": "120.38899000" + }, + { + "id": "82504", + "name": "Eguia", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.90650000", + "longitude": "119.88580000" + }, + { + "id": "82515", + "name": "Esmeralda", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.86722000", + "longitude": "120.71500000" + }, + { + "id": "82524", + "name": "Espiritu", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.98090000", + "longitude": "120.65690000" + }, + { + "id": "82541", + "name": "Fuerte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.53418000", + "longitude": "120.36950000" + }, + { + "id": "82554", + "name": "Galimuyod", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.18444000", + "longitude": "120.47194000" + }, + { + "id": "82574", + "name": "Gayaman", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.01402000", + "longitude": "120.30757000" + }, + { + "id": "82609", + "name": "Gregorio del Pilar", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.13028000", + "longitude": "120.61194000" + }, + { + "id": "82624", + "name": "Guiling", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.84295000", + "longitude": "120.61513000" + }, + { + "id": "82646", + "name": "Guiset East", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.06667000", + "longitude": "120.68333000" + }, + { + "id": "82663", + "name": "Hacienda", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.93600000", + "longitude": "120.17860000" + }, + { + "id": "82675", + "name": "Halog West", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.36680000", + "longitude": "120.41470000" + }, + { + "id": "82730", + "name": "Ilioilio", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.96160000", + "longitude": "119.76580000" + }, + { + "id": "82739", + "name": "Inabaan Sur", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.26300000", + "longitude": "120.47810000" + }, + { + "id": "82749", + "name": "Infanta", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.82640000", + "longitude": "119.90770000" + }, + { + "id": "82771", + "name": "Isla", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.89507000", + "longitude": "120.30137000" + }, + { + "id": "82959", + "name": "Labayug", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.15280000", + "longitude": "120.56610000" + }, + { + "id": "82960", + "name": "Labney", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.10280000", + "longitude": "120.46550000" + }, + { + "id": "82964", + "name": "Labrador", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.02812000", + "longitude": "120.14424000" + }, + { + "id": "82974", + "name": "Lagasit", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.99340000", + "longitude": "120.79400000" + }, + { + "id": "82981", + "name": "Laguit Centro", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.94720000", + "longitude": "120.19040000" + }, + { + "id": "83027", + "name": "Laoag", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.19780000", + "longitude": "120.59570000" + }, + { + "id": "83068", + "name": "Leones East", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.36330000", + "longitude": "120.39190000" + }, + { + "id": "83069", + "name": "Lepa", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.88438000", + "longitude": "120.45089000" + }, + { + "id": "83080", + "name": "Libas", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.87789000", + "longitude": "120.31633000" + }, + { + "id": "83103", + "name": "Lidlidda", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.26930000", + "longitude": "120.52130000" + }, + { + "id": "83139", + "name": "Lingayen", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.02182000", + "longitude": "120.23194000" + }, + { + "id": "83142", + "name": "Linmansangan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.82980000", + "longitude": "120.29593000" + }, + { + "id": "83154", + "name": "Lloren", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.33310000", + "longitude": "120.43290000" + }, + { + "id": "83160", + "name": "Lobong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.08150000", + "longitude": "120.47040000" + }, + { + "id": "83167", + "name": "Longos", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.10734000", + "longitude": "120.39658000" + }, + { + "id": "83181", + "name": "Loqueb Este", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.94481000", + "longitude": "120.44607000" + }, + { + "id": "83196", + "name": "Lucap", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.19038000", + "longitude": "120.00221000" + }, + { + "id": "83202", + "name": "Lucero", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.40510000", + "longitude": "119.91240000" + }, + { + "id": "83233", + "name": "Luna", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.85280000", + "longitude": "120.37610000" + }, + { + "id": "83237", + "name": "Lunec", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.95395000", + "longitude": "120.48949000" + }, + { + "id": "83240", + "name": "Lungog", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.46450000", + "longitude": "120.47840000" + }, + { + "id": "83249", + "name": "Lusong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.86700000", + "longitude": "120.44200000" + }, + { + "id": "83271", + "name": "Mabilao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.15351000", + "longitude": "120.42494000" + }, + { + "id": "83272", + "name": "Mabilbila Sur", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.50709000", + "longitude": "120.44100000" + }, + { + "id": "83278", + "name": "Mabini", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.06990000", + "longitude": "119.93910000" + }, + { + "id": "83290", + "name": "Mabusag", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.92610000", + "longitude": "120.49760000" + }, + { + "id": "83295", + "name": "Macabuboni", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.19090000", + "longitude": "119.78020000" + }, + { + "id": "83300", + "name": "Macalong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.01370000", + "longitude": "120.65860000" + }, + { + "id": "83301", + "name": "Macalva Norte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.34850000", + "longitude": "120.38660000" + }, + { + "id": "83305", + "name": "Macayug", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.09376000", + "longitude": "120.43201000" + }, + { + "id": "83321", + "name": "Magallanes", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.01960000", + "longitude": "120.73900000" + }, + { + "id": "83346", + "name": "Magsingal", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.68500000", + "longitude": "120.42444000" + }, + { + "id": "83347", + "name": "Magtaking", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98540000", + "longitude": "120.18320000" + }, + { + "id": "83381", + "name": "Malabago", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98154000", + "longitude": "120.35913000" + }, + { + "id": "83400", + "name": "Malanay", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00865000", + "longitude": "120.40940000" + }, + { + "id": "83410", + "name": "Malasiqui", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.92010000", + "longitude": "120.41400000" + }, + { + "id": "83413", + "name": "Malawa", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.95804000", + "longitude": "120.27782000" + }, + { + "id": "83425", + "name": "Malibong East", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.84660000", + "longitude": "120.32690000" + }, + { + "id": "83491", + "name": "Manaoag", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.04380000", + "longitude": "120.48610000" + }, + { + "id": "83510", + "name": "Mangaldan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.07000000", + "longitude": "120.40250000" + }, + { + "id": "83513", + "name": "Mangatarem", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.78740000", + "longitude": "120.29210000" + }, + { + "id": "83551", + "name": "Mapandan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.02480000", + "longitude": "120.45470000" + }, + { + "id": "83554", + "name": "Mapolopolo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.88087000", + "longitude": "120.37422000" + }, + { + "id": "83570", + "name": "Marcos", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.05200000", + "longitude": "120.68980000" + }, + { + "id": "83627", + "name": "Maticmatic", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98630000", + "longitude": "120.45192000" + }, + { + "id": "83685", + "name": "Minien East", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.97723000", + "longitude": "120.48127000" + }, + { + "id": "83743", + "name": "Nagbacalan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.11590000", + "longitude": "120.52350000" + }, + { + "id": "83750", + "name": "Nagsaing", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98069000", + "longitude": "120.33787000" + }, + { + "id": "83752", + "name": "Naguelguel", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00585000", + "longitude": "120.26351000" + }, + { + "id": "83753", + "name": "Naguilayan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00304000", + "longitude": "120.29108000" + }, + { + "id": "83754", + "name": "Naguilian", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.53389000", + "longitude": "120.39667000" + }, + { + "id": "83761", + "name": "Nalsian Norte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.84476000", + "longitude": "120.45084000" + }, + { + "id": "83764", + "name": "Nama", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.14120000", + "longitude": "120.54260000" + }, + { + "id": "83766", + "name": "Namboongan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.30330000", + "longitude": "120.37580000" + }, + { + "id": "83769", + "name": "Nancalobasaan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.93420000", + "longitude": "120.84260000" + }, + { + "id": "83782", + "name": "Narvacan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.41750000", + "longitude": "120.47530000" + }, + { + "id": "83786", + "name": "Natividad", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.04430000", + "longitude": "120.79870000" + }, + { + "id": "83794", + "name": "Navatat", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.84971000", + "longitude": "120.39054000" + }, + { + "id": "83814", + "name": "Nibaliw Central", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.12750000", + "longitude": "120.40270000" + }, + { + "id": "83816", + "name": "Nilombot", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.03060000", + "longitude": "120.43685000" + }, + { + "id": "83817", + "name": "Ninoy", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.85960000", + "longitude": "120.24780000" + }, + { + "id": "83825", + "name": "Nueva Era", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.91630000", + "longitude": "120.66410000" + }, + { + "id": "83834", + "name": "Oaqui", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.85830000", + "longitude": "120.41240000" + }, + { + "id": "83850", + "name": "Olea", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.86237000", + "longitude": "120.49366000" + }, + { + "id": "83880", + "name": "Padong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.05435000", + "longitude": "120.75427000" + }, + { + "id": "83895", + "name": "Pagsanahan Norte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.91930000", + "longitude": "120.44580000" + }, + { + "id": "83899", + "name": "Pagudpud", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.56160000", + "longitude": "120.78680000" + }, + { + "id": "83902", + "name": "Paitan Este", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.08532000", + "longitude": "120.03164000" + }, + { + "id": "83907", + "name": "Palacpalac", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.13120000", + "longitude": "120.53050000" + }, + { + "id": "83919", + "name": "Paldit", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.16667000", + "longitude": "120.53333000" + }, + { + "id": "83921", + "name": "Palguyod", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.12270000", + "longitude": "120.52000000" + }, + { + "id": "83971", + "name": "Panganiban", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00750000", + "longitude": "120.77520000" + }, + { + "id": "83973", + "name": "Pangapisan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.21600000", + "longitude": "119.95700000" + }, + { + "id": "83974", + "name": "Pangascasan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.11691000", + "longitude": "120.08664000" + }, + { + "id": "83980", + "name": "Pangpang", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.93875000", + "longitude": "120.30939000" + }, + { + "id": "84008", + "name": "Paoay", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.06160000", + "longitude": "120.52210000" + }, + { + "id": "84022", + "name": "Paringao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.57167000", + "longitude": "120.32417000" + }, + { + "id": "84023", + "name": "Parioc Segundo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.17503000", + "longitude": "120.46576000" + }, + { + "id": "84029", + "name": "Pasibi West", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.85870000", + "longitude": "120.37935000" + }, + { + "id": "84036", + "name": "Pasuquin", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.33280000", + "longitude": "120.61770000" + }, + { + "id": "84041", + "name": "Patayac", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.96300000", + "longitude": "120.42251000" + }, + { + "id": "84051", + "name": "Patpata Segundo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.18333000", + "longitude": "120.43333000" + }, + { + "id": "84069", + "name": "Payocpoc Sur", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.49444000", + "longitude": "120.32806000" + }, + { + "id": "84083", + "name": "Piddig", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.16550000", + "longitude": "120.71750000" + }, + { + "id": "84109", + "name": "Pindangan Centro", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.86056000", + "longitude": "120.55139000" + }, + { + "id": "84111", + "name": "Pinili", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.95170000", + "longitude": "120.52780000" + }, + { + "id": "84139", + "name": "Pogonsili", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.82048000", + "longitude": "120.26017000" + }, + { + "id": "84147", + "name": "Polo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.19630000", + "longitude": "119.94910000" + }, + { + "id": "84152", + "name": "Polong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.97710000", + "longitude": "120.20090000" + }, + { + "id": "84153", + "name": "Polong Norte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.90300000", + "longitude": "120.42149000" + }, + { + "id": "84170", + "name": "Pozorrubio", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.11100000", + "longitude": "120.54400000" + }, + { + "id": "84210", + "name": "Province of Ilocos Norte", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.16667000", + "longitude": "120.75000000" + }, + { + "id": "84211", + "name": "Province of Ilocos Sur", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.19852000", + "longitude": "120.54199000" + }, + { + "id": "84214", + "name": "Province of La Union", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.50000000", + "longitude": "120.41667000" + }, + { + "id": "84233", + "name": "Province of Pangasinan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.91667000", + "longitude": "120.33333000" + }, + { + "id": "84255", + "name": "Pudoc", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.92150000", + "longitude": "120.42350000" + }, + { + "id": "84256", + "name": "Pudoc North", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.60960000", + "longitude": "120.36852000" + }, + { + "id": "84257", + "name": "Puelay", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.88683000", + "longitude": "120.57358000" + }, + { + "id": "84261", + "name": "Pugo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.32210000", + "longitude": "120.46700000" + }, + { + "id": "84287", + "name": "Puro Pinget", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.67967000", + "longitude": "120.35883000" + }, + { + "id": "84304", + "name": "Quiling", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.06833000", + "longitude": "120.54389000" + }, + { + "id": "84309", + "name": "Quinarayan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.44410000", + "longitude": "120.47220000" + }, + { + "id": "84311", + "name": "Quintong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.95581000", + "longitude": "120.32171000" + }, + { + "id": "84315", + "name": "Quirino", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.15556000", + "longitude": "120.67000000" + }, + { + "id": "84327", + "name": "Ranao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.20760000", + "longitude": "119.81550000" + }, + { + "id": "84332", + "name": "Real", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.80890000", + "longitude": "120.34549000" + }, + { + "id": "84338", + "name": "Rimus", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.87640000", + "longitude": "120.39660000" + }, + { + "id": "84340", + "name": "Rissing", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.87520000", + "longitude": "120.43450000" + }, + { + "id": "84355", + "name": "Rosales", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.89444000", + "longitude": "120.63278000" + }, + { + "id": "84359", + "name": "Rosario", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.23040000", + "longitude": "120.48630000" + }, + { + "id": "84374", + "name": "Sablig", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.26887000", + "longitude": "119.98770000" + }, + { + "id": "84393", + "name": "Sagud-Bahley", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.11693000", + "longitude": "120.39105000" + }, + { + "id": "84397", + "name": "Sagunto", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.20070000", + "longitude": "120.51490000" + }, + { + "id": "84408", + "name": "Salcedo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.15472000", + "longitude": "120.53944000" + }, + { + "id": "84429", + "name": "Samon", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.93495000", + "longitude": "120.65074000" + }, + { + "id": "84468", + "name": "San Emilio", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.22611000", + "longitude": "120.61167000" + }, + { + "id": "84470", + "name": "San Esteban", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.32990000", + "longitude": "120.44510000" + }, + { + "id": "84471", + "name": "San Eugenio", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.35980000", + "longitude": "120.35700000" + }, + { + "id": "84473", + "name": "San Fabian", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.12310000", + "longitude": "120.40560000" + }, + { + "id": "84480", + "name": "San Fernando", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.61591000", + "longitude": "120.31663000" + }, + { + "id": "84491", + "name": "San Gabriel", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.67556000", + "longitude": "120.40306000" + }, + { + "id": "84493", + "name": "San Gabriel First", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.76650000", + "longitude": "120.45655000" + }, + { + "id": "84498", + "name": "San Ildefonso", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.62222000", + "longitude": "120.39667000" + }, + { + "id": "84507", + "name": "San Jacinto", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.07260000", + "longitude": "120.43830000" + }, + { + "id": "84525", + "name": "San Juan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.74222000", + "longitude": "120.45833000" + }, + { + "id": "84535", + "name": "San Lorenzo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.13230000", + "longitude": "120.63050000" + }, + { + "id": "84544", + "name": "San Manuel", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.06470000", + "longitude": "120.66870000" + }, + { + "id": "84572", + "name": "San Nicolas", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.17250000", + "longitude": "120.59530000" + }, + { + "id": "84589", + "name": "San Pedro Apartado", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.83702000", + "longitude": "120.56521000" + }, + { + "id": "84593", + "name": "San Quintin", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98540000", + "longitude": "120.81320000" + }, + { + "id": "84613", + "name": "San Sebastian", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.62327000", + "longitude": "120.36352000" + }, + { + "id": "84617", + "name": "San Vicente", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.59694000", + "longitude": "120.37361000" + }, + { + "id": "84636", + "name": "Sanlibo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.91667000", + "longitude": "120.55000000" + }, + { + "id": "84637", + "name": "Santa", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.48600000", + "longitude": "120.43480000" + }, + { + "id": "84645", + "name": "Santa Barbara", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.00090000", + "longitude": "120.40230000" + }, + { + "id": "84648", + "name": "Santa Catalina", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.59667000", + "longitude": "120.35917000" + }, + { + "id": "84662", + "name": "Santa Cruz", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.08556000", + "longitude": "120.45222000" + }, + { + "id": "84678", + "name": "Santa Lucia", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.11750000", + "longitude": "120.45306000" + }, + { + "id": "84683", + "name": "Santa Maria", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.95180000", + "longitude": "120.44450000" + }, + { + "id": "84709", + "name": "Santiago", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.29390000", + "longitude": "120.44490000" + }, + { + "id": "84718", + "name": "Santo Domingo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.63528000", + "longitude": "120.41083000" + }, + { + "id": "84732", + "name": "Santo Tomas", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.27980000", + "longitude": "120.37920000" + }, + { + "id": "84735", + "name": "Santol", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.77200000", + "longitude": "120.46040000" + }, + { + "id": "84753", + "name": "Sarrat", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.15740000", + "longitude": "120.64700000" + }, + { + "id": "84785", + "name": "Sigay", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.08333000", + "longitude": "120.60000000" + }, + { + "id": "84807", + "name": "Sinait", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.86640000", + "longitude": "120.45830000" + }, + { + "id": "84831", + "name": "Sison", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.17389000", + "longitude": "120.51528000" + }, + { + "id": "84845", + "name": "Solsona", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.09333000", + "longitude": "120.76972000" + }, + { + "id": "84847", + "name": "Sonquil", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98814000", + "longitude": "120.39057000" + }, + { + "id": "84851", + "name": "Sual", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.06682000", + "longitude": "120.09414000" + }, + { + "id": "84856", + "name": "Subusub", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.22689000", + "longitude": "120.49513000" + }, + { + "id": "84857", + "name": "Sudipen", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.90560000", + "longitude": "120.46170000" + }, + { + "id": "84862", + "name": "Sugpon", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.84340000", + "longitude": "120.51570000" + }, + { + "id": "84873", + "name": "Sumabnit", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.03030000", + "longitude": "120.58320000" + }, + { + "id": "84884", + "name": "Suso", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.35940000", + "longitude": "120.46110000" + }, + { + "id": "84886", + "name": "Suyo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.97620000", + "longitude": "120.52540000" + }, + { + "id": "84900", + "name": "Tablac", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.21568000", + "longitude": "120.45428000" + }, + { + "id": "84915", + "name": "Tabug", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.03430000", + "longitude": "120.54880000" + }, + { + "id": "84947", + "name": "Tagudin", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.93550000", + "longitude": "120.44420000" + }, + { + "id": "84993", + "name": "Talospatang", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.91701000", + "longitude": "120.44141000" + }, + { + "id": "84995", + "name": "Taloy", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.92410000", + "longitude": "120.39649000" + }, + { + "id": "85002", + "name": "Tamayo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.87746000", + "longitude": "120.28455000" + }, + { + "id": "85020", + "name": "Tamorong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.33333000", + "longitude": "120.43333000" + }, + { + "id": "85033", + "name": "Tandoc", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.95929000", + "longitude": "120.32914000" + }, + { + "id": "85041", + "name": "Tanolong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.80411000", + "longitude": "120.41409000" + }, + { + "id": "85081", + "name": "Tayug", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.02740000", + "longitude": "120.74340000" + }, + { + "id": "85085", + "name": "Tebag East", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.98123000", + "longitude": "120.46740000" + }, + { + "id": "85088", + "name": "Telbang", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.17241000", + "longitude": "120.06074000" + }, + { + "id": "85100", + "name": "Tiep", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.23820000", + "longitude": "119.86090000" + }, + { + "id": "85153", + "name": "Toboy", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.02710000", + "longitude": "120.63690000" + }, + { + "id": "85154", + "name": "Tobuan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.05562000", + "longitude": "120.11024000" + }, + { + "id": "85155", + "name": "Tococ East", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.82498000", + "longitude": "120.42605000" + }, + { + "id": "85156", + "name": "Tocok", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.75000000", + "longitude": "120.30000000" + }, + { + "id": "85162", + "name": "Tombod", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.93168000", + "longitude": "120.56721000" + }, + { + "id": "85167", + "name": "Tondol", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.31040000", + "longitude": "120.01310000" + }, + { + "id": "85171", + "name": "Toritori", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.23827000", + "longitude": "119.99561000" + }, + { + "id": "85186", + "name": "Tubao", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.34820000", + "longitude": "120.41220000" + }, + { + "id": "85249", + "name": "Umanday Centro", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.93800000", + "longitude": "120.21530000" + }, + { + "id": "85250", + "name": "Umingan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.90021000", + "longitude": "120.79841000" + }, + { + "id": "85261", + "name": "Unzad", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.91889000", + "longitude": "120.53917000" + }, + { + "id": "85267", + "name": "Urbiztondo", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.82270000", + "longitude": "120.32950000" + }, + { + "id": "85268", + "name": "Urdaneta", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.97611000", + "longitude": "120.57111000" + }, + { + "id": "85273", + "name": "Uyong", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.05002000", + "longitude": "120.12074000" + }, + { + "id": "85290", + "name": "Vigan", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "17.57472000", + "longitude": "120.38694000" + }, + { + "id": "85297", + "name": "Villanueva", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.79841000", + "longitude": "120.54654000" + }, + { + "id": "85301", + "name": "Villasis", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "15.90167000", + "longitude": "120.58833000" + }, + { + "id": "85303", + "name": "Vintar", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "18.22840000", + "longitude": "120.64750000" + }, + { + "id": "85326", + "name": "Zaragoza", + "state_id": 1355, + "state_code": "01", + "country_id": 174, + "country_code": "PH", + "latitude": "16.38710000", + "longitude": "119.94430000" + }, + { + "id": "82065", + "name": "Caloocan City", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.64953000", + "longitude": "120.96788000" + }, + { + "id": "82071", + "name": "Calumpang", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.62280000", + "longitude": "121.08970000" + }, + { + "id": "83045", + "name": "Las Piñas", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.45056000", + "longitude": "120.98278000" + }, + { + "id": "83375", + "name": "Makati City", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.55027000", + "longitude": "121.03269000" + }, + { + "id": "83501", + "name": "Mandaluyong City", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.58320000", + "longitude": "121.04090000" + }, + { + "id": "83524", + "name": "Manila", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.60420000", + "longitude": "120.98220000" + }, + { + "id": "83795", + "name": "Navotas", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.66667000", + "longitude": "120.95000000" + }, + { + "id": "83818", + "name": "Niugan", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.66444000", + "longitude": "120.95528000" + }, + { + "id": "84027", + "name": "Pasay", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.53748000", + "longitude": "121.00144000" + }, + { + "id": "84030", + "name": "Pasig City", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.58691000", + "longitude": "121.06140000" + }, + { + "id": "84166", + "name": "Port Area", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.58330000", + "longitude": "120.96670000" + }, + { + "id": "84301", + "name": "Quezon City", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.64880000", + "longitude": "121.05090000" + }, + { + "id": "84302", + "name": "Quiapo", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.60000000", + "longitude": "120.98330000" + }, + { + "id": "84426", + "name": "Sambayanihan People's Village", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.45558000", + "longitude": "120.99816000" + }, + { + "id": "84530", + "name": "San Juan", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.60000000", + "longitude": "121.03330000" + }, + { + "id": "84948", + "name": "Taguig", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.52430000", + "longitude": "121.07920000" + }, + { + "id": "85046", + "name": "Tanza", + "state_id": 1347, + "state_code": "00", + "country_id": 174, + "country_code": "PH", + "latitude": "14.67530000", + "longitude": "120.93890000" + }, + { + "id": "81141", + "name": "Abuyon", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.62260000", + "longitude": "122.51910000" + }, + { + "id": "81151", + "name": "Aga", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.09650000", + "longitude": "120.80217000" + }, + { + "id": "81157", + "name": "Agdangan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87710000", + "longitude": "121.91305000" + }, + { + "id": "81162", + "name": "Agoncillo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93556000", + "longitude": "120.93261000" + }, + { + "id": "81176", + "name": "Alabat", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.10100000", + "longitude": "122.01250000" + }, + { + "id": "81184", + "name": "Alaminos", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.06391000", + "longitude": "121.24649000" + }, + { + "id": "81205", + "name": "Alfonso", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.14083000", + "longitude": "120.85389000" + }, + { + "id": "81208", + "name": "Aliang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.28333000", + "longitude": "120.88333000" + }, + { + "id": "81221", + "name": "Alitagtag", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86450000", + "longitude": "121.00410000" + }, + { + "id": "81237", + "name": "Alupay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.84696000", + "longitude": "121.30719000" + }, + { + "id": "81239", + "name": "Amadeo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.17056000", + "longitude": "120.92361000" + }, + { + "id": "81244", + "name": "Ambulong", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.08804000", + "longitude": "121.06127000" + }, + { + "id": "81269", + "name": "Angono", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.52660000", + "longitude": "121.15360000" + }, + { + "id": "81283", + "name": "Antipolo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.62578000", + "longitude": "121.12251000" + }, + { + "id": "81288", + "name": "Anuling", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.12388000", + "longitude": "120.89220000" + }, + { + "id": "81297", + "name": "Aplaya", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.32106000", + "longitude": "121.11369000" + }, + { + "id": "81325", + "name": "Atimonan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.00270000", + "longitude": "121.92078000" + }, + { + "id": "81332", + "name": "Aurora", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.34760000", + "longitude": "122.51950000" + }, + { + "id": "81340", + "name": "Aya", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.89450000", + "longitude": "121.11390000" + }, + { + "id": "81343", + "name": "Ayusan Uno", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.95609000", + "longitude": "121.30765000" + }, + { + "id": "81370", + "name": "Bacoor", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.45896000", + "longitude": "120.93851000" + }, + { + "id": "81390", + "name": "Bagalangit", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.71041000", + "longitude": "120.88467000" + }, + { + "id": "81397", + "name": "Bagombong", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.34130000", + "longitude": "121.37750000" + }, + { + "id": "81399", + "name": "Bagong Pagasa", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.66270000", + "longitude": "121.03280000" + }, + { + "id": "81414", + "name": "Bagupaye", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.56500000", + "longitude": "122.39020000" + }, + { + "id": "81436", + "name": "Balagtasin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.90180000", + "longitude": "121.08890000" + }, + { + "id": "81455", + "name": "Balayan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93714000", + "longitude": "120.73224000" + }, + { + "id": "81459", + "name": "Balele", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.06532000", + "longitude": "121.09363000" + }, + { + "id": "81463", + "name": "Balete", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.01983000", + "longitude": "121.09506000" + }, + { + "id": "81467", + "name": "Balibago", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.92572000", + "longitude": "120.62556000" + }, + { + "id": "81482", + "name": "Balite Segundo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18320000", + "longitude": "120.97433000" + }, + { + "id": "81483", + "name": "Balitoc", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86269000", + "longitude": "120.63554000" + }, + { + "id": "81512", + "name": "Banaba", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.21667000", + "longitude": "120.85000000" + }, + { + "id": "81514", + "name": "Banalo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.64640000", + "longitude": "121.18170000" + }, + { + "id": "81518", + "name": "Banaybanay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93310000", + "longitude": "121.11510000" + }, + { + "id": "81540", + "name": "Banilad", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.06670000", + "longitude": "120.73470000" + }, + { + "id": "81554", + "name": "Bantilan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.75814000", + "longitude": "121.66902000" + }, + { + "id": "81559", + "name": "Banugao", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.74825000", + "longitude": "121.61840000" + }, + { + "id": "81568", + "name": "Baras", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.51691000", + "longitude": "121.26580000" + }, + { + "id": "81615", + "name": "Batangas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.75670000", + "longitude": "121.05840000" + }, + { + "id": "81618", + "name": "Batas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.20000000", + "longitude": "120.81667000" + }, + { + "id": "81640", + "name": "Bauan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.79170000", + "longitude": "121.00850000" + }, + { + "id": "81647", + "name": "Bautista", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99444000", + "longitude": "121.27778000" + }, + { + "id": "81650", + "name": "Bay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18368000", + "longitude": "121.28554000" + }, + { + "id": "81664", + "name": "Baybayin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.82083000", + "longitude": "121.26992000" + }, + { + "id": "81749", + "name": "Biñan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.34267000", + "longitude": "121.08071000" + }, + { + "id": "81691", + "name": "Biga", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.25759000", + "longitude": "120.97195000" + }, + { + "id": "81696", + "name": "Bignay Uno", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86445000", + "longitude": "121.48792000" + }, + { + "id": "81702", + "name": "Bilaran", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.03528000", + "longitude": "120.71028000" + }, + { + "id": "81704", + "name": "Bilog-Bilog", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.11361000", + "longitude": "121.08861000" + }, + { + "id": "81708", + "name": "Binahaan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99170000", + "longitude": "121.75391000" + }, + { + "id": "81712", + "name": "Binangonan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.46460000", + "longitude": "121.19290000" + }, + { + "id": "81715", + "name": "Binay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.50190000", + "longitude": "122.59830000" + }, + { + "id": "81733", + "name": "Binubusan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.96947000", + "longitude": "120.63572000" + }, + { + "id": "81735", + "name": "Binulasan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.73159000", + "longitude": "121.69781000" + }, + { + "id": "81741", + "name": "Bitangan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.25389000", + "longitude": "120.87833000" + }, + { + "id": "81744", + "name": "Bitin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.11647000", + "longitude": "121.22194000" + }, + { + "id": "81767", + "name": "Bolboc", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.02074000", + "longitude": "120.75595000" + }, + { + "id": "81775", + "name": "Bolo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.78991000", + "longitude": "120.98173000" + }, + { + "id": "81795", + "name": "Boot", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.04556000", + "longitude": "121.07722000" + }, + { + "id": "81800", + "name": "Bosdak", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.40000000", + "longitude": "122.50000000" + }, + { + "id": "81839", + "name": "Bugaan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.03987000", + "longitude": "120.93609000" + }, + { + "id": "81855", + "name": "Bukal", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.91320000", + "longitude": "121.52640000" + }, + { + "id": "81856", + "name": "Bukal Sur", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93806000", + "longitude": "121.38556000" + }, + { + "id": "81862", + "name": "Bulacnin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99030000", + "longitude": "121.13900000" + }, + { + "id": "81875", + "name": "Bulihan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.27820000", + "longitude": "120.99503000" + }, + { + "id": "81896", + "name": "Bungahan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.94286000", + "longitude": "120.66178000" + }, + { + "id": "81897", + "name": "Bungoy", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99779000", + "longitude": "121.36564000" + }, + { + "id": "81906", + "name": "Burdeos", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.84302000", + "longitude": "121.96906000" + }, + { + "id": "81945", + "name": "Cabanbanan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.24040000", + "longitude": "121.43410000" + }, + { + "id": "81955", + "name": "Cabatang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.96690000", + "longitude": "121.36680000" + }, + { + "id": "81959", + "name": "Cabay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87080000", + "longitude": "121.37992000" + }, + { + "id": "81986", + "name": "Cabuyao", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.27260000", + "longitude": "121.12620000" + }, + { + "id": "81999", + "name": "Cagsiay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.21667000", + "longitude": "121.75000000" + }, + { + "id": "82003", + "name": "Cainta", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.57860000", + "longitude": "121.12220000" + }, + { + "id": "82012", + "name": "Calaca", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93244000", + "longitude": "120.81327000" + }, + { + "id": "82018", + "name": "Calamba", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.21167000", + "longitude": "121.16528000" + }, + { + "id": "82027", + "name": "Calantas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.97202000", + "longitude": "120.77456000" + }, + { + "id": "82036", + "name": "Calatagan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83224000", + "longitude": "120.63219000" + }, + { + "id": "82041", + "name": "Calauag", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.95750000", + "longitude": "122.28800000" + }, + { + "id": "82042", + "name": "Calauan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.14989000", + "longitude": "121.31520000" + }, + { + "id": "82052", + "name": "Calilayan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.85030000", + "longitude": "121.93000000" + }, + { + "id": "82067", + "name": "Calubcub Dos", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.73930000", + "longitude": "121.42193000" + }, + { + "id": "82070", + "name": "Calumpang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.19660000", + "longitude": "121.40200000" + }, + { + "id": "82087", + "name": "Cambuga", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.61667000", + "longitude": "122.45000000" + }, + { + "id": "82093", + "name": "Camohaguin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.90890000", + "longitude": "122.16660000" + }, + { + "id": "82094", + "name": "Camp Flora", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.35080000", + "longitude": "122.66410000" + }, + { + "id": "82108", + "name": "Candelaria", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93111000", + "longitude": "121.42333000" + }, + { + "id": "82144", + "name": "Capuluan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.81620000", + "longitude": "122.51580000" + }, + { + "id": "82158", + "name": "Cardona", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.48646000", + "longitude": "121.22752000" + }, + { + "id": "82175", + "name": "Carmona", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.31320000", + "longitude": "121.05760000" + }, + { + "id": "82190", + "name": "Casay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.26320000", + "longitude": "122.52170000" + }, + { + "id": "82195", + "name": "Castañas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87440000", + "longitude": "121.55330000" + }, + { + "id": "82199", + "name": "Casuguran", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.71670000", + "longitude": "122.37422000" + }, + { + "id": "82203", + "name": "Catanauan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.59260000", + "longitude": "122.32150000" + }, + { + "id": "82225", + "name": "Cavinti", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.24482000", + "longitude": "121.50797000" + }, + { + "id": "82227", + "name": "Cavite City", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.48369000", + "longitude": "120.89878000" + }, + { + "id": "82231", + "name": "Cawayan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.36720000", + "longitude": "122.50940000" + }, + { + "id": "82244", + "name": "Cigaras", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.22660000", + "longitude": "121.42980000" + }, + { + "id": "82276", + "name": "Concepcion Ibaba", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.92309000", + "longitude": "121.46099000" + }, + { + "id": "82307", + "name": "Cuenca", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.90200000", + "longitude": "121.05210000" + }, + { + "id": "82333", + "name": "Dagatan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.00170000", + "longitude": "121.37670000" + }, + { + "id": "82384", + "name": "Daraitan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.60280000", + "longitude": "121.43190000" + }, + { + "id": "82387", + "name": "Dasmariñas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.32944000", + "longitude": "120.93667000" + }, + { + "id": "82399", + "name": "Dayap", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18014000", + "longitude": "121.33335000" + }, + { + "id": "82400", + "name": "Dayapan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93723000", + "longitude": "120.91620000" + }, + { + "id": "82407", + "name": "Del Monte", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.64180000", + "longitude": "121.01770000" + }, + { + "id": "82435", + "name": "Dinahican", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.71667000", + "longitude": "121.71667000" + }, + { + "id": "82453", + "name": "Dolores", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.02265000", + "longitude": "121.41008000" + }, + { + "id": "82536", + "name": "Famy", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.43760000", + "longitude": "121.44820000" + }, + { + "id": "82575", + "name": "General Emilio Aguinaldo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18417000", + "longitude": "120.79583000" + }, + { + "id": "82577", + "name": "General Luna", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.68660000", + "longitude": "122.17090000" + }, + { + "id": "82581", + "name": "General Nakar", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.76365000", + "longitude": "121.63559000" + }, + { + "id": "82584", + "name": "General Trias", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.38694000", + "longitude": "120.88167000" + }, + { + "id": "82630", + "name": "Guinayangan, Fourth District of Quezon", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.90020000", + "longitude": "122.44808000" + }, + { + "id": "82648", + "name": "Guisguis", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87380000", + "longitude": "121.51890000" + }, + { + "id": "82652", + "name": "Gulod", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.34490000", + "longitude": "121.21770000" + }, + { + "id": "82653", + "name": "Gumaca", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.92100000", + "longitude": "122.10020000" + }, + { + "id": "82656", + "name": "Gumian", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.71006000", + "longitude": "121.61867000" + }, + { + "id": "82661", + "name": "Guyam Malaki", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.15250000", + "longitude": "120.86111000" + }, + { + "id": "82672", + "name": "Halayhay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.37389000", + "longitude": "120.81333000" + }, + { + "id": "82673", + "name": "Halayhayin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18910000", + "longitude": "121.40750000" + }, + { + "id": "82674", + "name": "Haligue", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.66667000", + "longitude": "121.11667000" + }, + { + "id": "82704", + "name": "Hondagua", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.94550000", + "longitude": "122.24170000" + }, + { + "id": "82705", + "name": "Hukay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.84519000", + "longitude": "120.70287000" + }, + { + "id": "82707", + "name": "Ibaan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.81760000", + "longitude": "121.13300000" + }, + { + "id": "82708", + "name": "Ibabang Tayuman", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.40420000", + "longitude": "122.51650000" + }, + { + "id": "82728", + "name": "Ilihan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.63100000", + "longitude": "121.07090000" + }, + { + "id": "82738", + "name": "Imus", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.42972000", + "longitude": "120.93667000" + }, + { + "id": "82746", + "name": "Indang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.19528000", + "longitude": "120.87694000" + }, + { + "id": "82750", + "name": "Infanta", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.74495000", + "longitude": "121.64953000" + }, + { + "id": "82751", + "name": "Inicbulan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.82043000", + "longitude": "120.98345000" + }, + { + "id": "82768", + "name": "Isabang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.95694000", + "longitude": "121.57083000" + }, + { + "id": "82785", + "name": "Jalajala", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.35300000", + "longitude": "121.32250000" + }, + { + "id": "82790", + "name": "Janagdong", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.90340000", + "longitude": "121.51340000" + }, + { + "id": "82793", + "name": "Janopol", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.08586000", + "longitude": "121.09489000" + }, + { + "id": "82800", + "name": "Javalera", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.25813000", + "longitude": "120.91558000" + }, + { + "id": "82831", + "name": "Kabulusan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.36150000", + "longitude": "121.40040000" + }, + { + "id": "82845", + "name": "Kalayaan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.35000000", + "longitude": "121.56667000" + }, + { + "id": "82863", + "name": "Kanluran", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.41667000", + "longitude": "120.85000000" + }, + { + "id": "82869", + "name": "Kapatalan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.47410000", + "longitude": "121.49030000" + }, + { + "id": "82873", + "name": "Karligan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.97561000", + "longitude": "122.04272000" + }, + { + "id": "82889", + "name": "Kawit", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.44426000", + "longitude": "120.90164000" + }, + { + "id": "82890", + "name": "Kaytitinga", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.10722000", + "longitude": "120.82917000" + }, + { + "id": "82901", + "name": "Kiloloran", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.63571000", + "longitude": "121.60617000" + }, + { + "id": "82906", + "name": "Kinalaglagan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.00149000", + "longitude": "121.09772000" + }, + { + "id": "82910", + "name": "Kinatakutan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.95500000", + "longitude": "122.46780000" + }, + { + "id": "82971", + "name": "Lacdayan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.60000000", + "longitude": "122.53333000" + }, + { + "id": "82984", + "name": "Laiya", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.68031000", + "longitude": "121.40081000" + }, + { + "id": "82991", + "name": "Lalig", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.98255000", + "longitude": "121.32647000" + }, + { + "id": "83036", + "name": "Lapolapo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83410000", + "longitude": "121.13790000" + }, + { + "id": "83051", + "name": "Laurel", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.05542000", + "longitude": "120.91932000" + }, + { + "id": "83063", + "name": "Lemery", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.88090000", + "longitude": "120.91389000" + }, + { + "id": "83073", + "name": "Lian", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.03364000", + "longitude": "120.64928000" + }, + { + "id": "83082", + "name": "Libato", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.81514000", + "longitude": "121.33463000" + }, + { + "id": "83109", + "name": "Lilio", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.13130000", + "longitude": "121.43620000" + }, + { + "id": "83146", + "name": "Lipa City", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.94110000", + "longitude": "121.16310000" + }, + { + "id": "83147", + "name": "Lipahan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83687000", + "longitude": "121.40167000" + }, + { + "id": "83158", + "name": "Lobo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.64810000", + "longitude": "121.21120000" + }, + { + "id": "83173", + "name": "Looc", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.16480000", + "longitude": "120.62930000" + }, + { + "id": "83177", + "name": "Lopez", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.88400000", + "longitude": "122.26040000" + }, + { + "id": "83185", + "name": "Los Baños", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.17025000", + "longitude": "121.24181000" + }, + { + "id": "83198", + "name": "Lucban", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.11356000", + "longitude": "121.55574000" + }, + { + "id": "83201", + "name": "Lucena", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93139000", + "longitude": "121.61722000" + }, + { + "id": "83204", + "name": "Lucsuhin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.88186000", + "longitude": "120.64131000" + }, + { + "id": "83209", + "name": "Luisiana", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18500000", + "longitude": "121.51090000" + }, + { + "id": "83212", + "name": "Luksuhin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.09667000", + "longitude": "120.88083000" + }, + { + "id": "83217", + "name": "Lumbang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.29730000", + "longitude": "121.45980000" + }, + { + "id": "83218", + "name": "Lumbangan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.05240000", + "longitude": "120.66670000" + }, + { + "id": "83225", + "name": "Lumil", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18144000", + "longitude": "121.00989000" + }, + { + "id": "83241", + "name": "Luntal", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.02920000", + "longitude": "120.71740000" + }, + { + "id": "83248", + "name": "Lusacan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.95523000", + "longitude": "121.34477000" + }, + { + "id": "83275", + "name": "Mabini", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.75324000", + "longitude": "120.94049000" + }, + { + "id": "83284", + "name": "Mabitac", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.42590000", + "longitude": "121.42900000" + }, + { + "id": "83289", + "name": "Mabunga", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86340000", + "longitude": "122.06770000" + }, + { + "id": "83297", + "name": "Macalamcam A", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.85660000", + "longitude": "121.32814000" + }, + { + "id": "83299", + "name": "Macalelon", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.74694000", + "longitude": "122.13861000" + }, + { + "id": "83316", + "name": "Madulao", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.56840000", + "longitude": "122.34130000" + }, + { + "id": "83322", + "name": "Magallanes", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.18833000", + "longitude": "120.75750000" + }, + { + "id": "83331", + "name": "Magdalena", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.19990000", + "longitude": "121.42900000" + }, + { + "id": "83345", + "name": "Magsaysay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.33880000", + "longitude": "121.03410000" + }, + { + "id": "83353", + "name": "Maguyam", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.26277000", + "longitude": "121.00500000" + }, + { + "id": "83355", + "name": "Mahabang Parang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.98333000", + "longitude": "121.08333000" + }, + { + "id": "83372", + "name": "Mainit Norte", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.16546000", + "longitude": "121.98496000" + }, + { + "id": "83374", + "name": "Majayjay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.14630000", + "longitude": "121.47290000" + }, + { + "id": "83380", + "name": "Malabag", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.15520000", + "longitude": "120.96547000" + }, + { + "id": "83382", + "name": "Malabanan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.00000000", + "longitude": "121.13333000" + }, + { + "id": "83383", + "name": "Malabanban Norte", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.94521000", + "longitude": "121.43065000" + }, + { + "id": "83395", + "name": "Malainen Luma", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.27030000", + "longitude": "120.78840000" + }, + { + "id": "83402", + "name": "Malanday", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.70690000", + "longitude": "121.13060000" + }, + { + "id": "83407", + "name": "Malaruhatan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.03060000", + "longitude": "120.68040000" + }, + { + "id": "83416", + "name": "Malaya", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.39710000", + "longitude": "121.33850000" + }, + { + "id": "83426", + "name": "Malicboy", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.98155000", + "longitude": "121.78888000" + }, + { + "id": "83438", + "name": "Malinao Ilaya", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99611000", + "longitude": "121.83577000" + }, + { + "id": "83465", + "name": "Malvar", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.04472000", + "longitude": "121.15861000" + }, + { + "id": "83467", + "name": "Mamala", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.01667000", + "longitude": "121.51667000" + }, + { + "id": "83469", + "name": "Mamatid", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.23490000", + "longitude": "121.15902000" + }, + { + "id": "83512", + "name": "Mangas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.11769000", + "longitude": "120.86661000" + }, + { + "id": "83514", + "name": "Mangero", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.27050000", + "longitude": "122.67740000" + }, + { + "id": "83516", + "name": "Manggahan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.29196000", + "longitude": "120.90145000" + }, + { + "id": "83555", + "name": "Mapulo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.73170000", + "longitude": "121.18420000" + }, + { + "id": "83556", + "name": "Mapulot", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.03300000", + "longitude": "122.53990000" + }, + { + "id": "83560", + "name": "Maragondon", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.27330000", + "longitude": "120.73770000" + }, + { + "id": "83564", + "name": "Marao", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.91434000", + "longitude": "121.82409000" + }, + { + "id": "83594", + "name": "Masalukot Uno", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.95533000", + "longitude": "121.41887000" + }, + { + "id": "83596", + "name": "Masapang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.19710000", + "longitude": "121.34230000" + }, + { + "id": "83599", + "name": "Masaya", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.15189000", + "longitude": "121.28190000" + }, + { + "id": "83611", + "name": "Mataas Na Kahoy", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.95890000", + "longitude": "121.11380000" + }, + { + "id": "83614", + "name": "Matagbak", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.13056000", + "longitude": "120.83472000" + }, + { + "id": "83615", + "name": "Matala", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.82870000", + "longitude": "121.15490000" + }, + { + "id": "83623", + "name": "Mataywanac", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.03110000", + "longitude": "120.72960000" + }, + { + "id": "83628", + "name": "Matingain", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.91290000", + "longitude": "120.88006000" + }, + { + "id": "83635", + "name": "Mauban", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.19100000", + "longitude": "121.73090000" + }, + { + "id": "83637", + "name": "Maugat West", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86130000", + "longitude": "121.28276000" + }, + { + "id": "83639", + "name": "Maulawin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.26667000", + "longitude": "121.43333000" + }, + { + "id": "83658", + "name": "Mendez-Nuñez", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.12861000", + "longitude": "120.90583000" + }, + { + "id": "83706", + "name": "Montecillo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.89067000", + "longitude": "121.47575000" + }, + { + "id": "83713", + "name": "Morong", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.51849000", + "longitude": "121.23778000" + }, + { + "id": "83718", + "name": "Mozon", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.85260000", + "longitude": "120.98935000" + }, + { + "id": "83721", + "name": "Mulanay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.52222000", + "longitude": "122.40417000" + }, + { + "id": "83722", + "name": "Mulauin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86667000", + "longitude": "121.01667000" + }, + { + "id": "83745", + "name": "Nagcarlan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.13640000", + "longitude": "121.41650000" + }, + { + "id": "83757", + "name": "Naic", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.31812000", + "longitude": "120.76609000" + }, + { + "id": "83784", + "name": "Nasugbu", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.06694000", + "longitude": "120.63181000" + }, + { + "id": "83796", + "name": "Navotas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.41670000", + "longitude": "121.22680000" + }, + { + "id": "83824", + "name": "Noveleta", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.42922000", + "longitude": "120.87989000" + }, + { + "id": "83871", + "name": "Paagahan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.44470000", + "longitude": "121.40100000" + }, + { + "id": "83882", + "name": "Padre Burgos", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.92260000", + "longitude": "121.81163000" + }, + { + "id": "83883", + "name": "Padre Garcia", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87910000", + "longitude": "121.21390000" + }, + { + "id": "83885", + "name": "Paete", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.36470000", + "longitude": "121.48290000" + }, + { + "id": "83893", + "name": "Pagbilao", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.96689000", + "longitude": "121.69835000" + }, + { + "id": "83898", + "name": "Pagsañgahan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.21583000", + "longitude": "122.54306000" + }, + { + "id": "83897", + "name": "Pagsanjan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.27320000", + "longitude": "121.45520000" + }, + { + "id": "83900", + "name": "Paiisa", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.92629000", + "longitude": "121.35415000" + }, + { + "id": "83906", + "name": "Pakil", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.38350000", + "longitude": "121.47860000" + }, + { + "id": "83909", + "name": "Palahanan Uno", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83113000", + "longitude": "121.35639000" + }, + { + "id": "83913", + "name": "Palangue", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.28417000", + "longitude": "120.81139000" + }, + { + "id": "83972", + "name": "Pangao", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.91722000", + "longitude": "121.12556000" + }, + { + "id": "83978", + "name": "Pangil", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.40330000", + "longitude": "121.46506000" + }, + { + "id": "83987", + "name": "Panikihan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.90830000", + "longitude": "122.13100000" + }, + { + "id": "83996", + "name": "Pansol", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.88660000", + "longitude": "121.24320000" + }, + { + "id": "83997", + "name": "Pansoy", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.18177000", + "longitude": "122.59989000" + }, + { + "id": "84002", + "name": "Pantay Na Matanda", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.11750000", + "longitude": "121.12111000" + }, + { + "id": "84003", + "name": "Pantijan No 2", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.23306000", + "longitude": "120.80056000" + }, + { + "id": "84007", + "name": "Panukulan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.93371000", + "longitude": "121.81685000" + }, + { + "id": "84014", + "name": "Paradahan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.32123000", + "longitude": "120.86059000" + }, + { + "id": "84033", + "name": "Pasong Kawayan Primero", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.34317000", + "longitude": "120.88157000" + }, + { + "id": "84038", + "name": "Patabog", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.44320000", + "longitude": "122.45570000" + }, + { + "id": "84046", + "name": "Patnanungan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.78333000", + "longitude": "122.18333000" + }, + { + "id": "84055", + "name": "Patuto", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.11667000", + "longitude": "120.96667000" + }, + { + "id": "84068", + "name": "Payapa", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99803000", + "longitude": "120.89207000" + }, + { + "id": "84074", + "name": "Perez", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.19465000", + "longitude": "121.92636000" + }, + { + "id": "84088", + "name": "Pila", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.23250000", + "longitude": "121.36480000" + }, + { + "id": "84099", + "name": "Pililla", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.48540000", + "longitude": "121.30620000" + }, + { + "id": "84102", + "name": "Pinagsibaan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83479000", + "longitude": "121.32118000" + }, + { + "id": "84116", + "name": "Pinugay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.59670000", + "longitude": "121.26230000" + }, + { + "id": "84120", + "name": "Pitogo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.78380000", + "longitude": "122.09020000" + }, + { + "id": "84130", + "name": "Plaridel", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.95510000", + "longitude": "122.02080000" + }, + { + "id": "84138", + "name": "Poctol", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.82095000", + "longitude": "121.44184000" + }, + { + "id": "84145", + "name": "Polillo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.71699000", + "longitude": "121.94889000" + }, + { + "id": "84176", + "name": "Prinza", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99679000", + "longitude": "120.65409000" + }, + { + "id": "84177", + "name": "Progreso", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.90830000", + "longitude": "122.09060000" + }, + { + "id": "84191", + "name": "Province of Batangas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.91667000", + "longitude": "121.08333000" + }, + { + "id": "84201", + "name": "Province of Cavite", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.25000000", + "longitude": "120.83333000" + }, + { + "id": "84215", + "name": "Province of Laguna", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.16667000", + "longitude": "121.33333000" + }, + { + "id": "84234", + "name": "Province of Quezon", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.66667000", + "longitude": "121.50000000" + }, + { + "id": "84236", + "name": "Province of Rizal", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.58333000", + "longitude": "121.16667000" + }, + { + "id": "84262", + "name": "Pulangbato", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.75387000", + "longitude": "121.39266000" + }, + { + "id": "84264", + "name": "Pulo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.71462000", + "longitude": "121.63293000" + }, + { + "id": "84268", + "name": "Pulong Santa Cruz", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.27324000", + "longitude": "121.07643000" + }, + { + "id": "84279", + "name": "Punta", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.29140000", + "longitude": "121.30740000" + }, + { + "id": "84290", + "name": "Puting Kahoy", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.21570000", + "longitude": "121.03100000" + }, + { + "id": "84291", + "name": "Putingkahoy", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83023000", + "longitude": "121.32753000" + }, + { + "id": "84293", + "name": "Putol", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99220000", + "longitude": "120.72750000" + }, + { + "id": "84295", + "name": "Quezon", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.00570000", + "longitude": "122.18380000" + }, + { + "id": "84305", + "name": "Quilo-quilo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86380000", + "longitude": "121.22090000" + }, + { + "id": "84313", + "name": "Quipot", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.95560000", + "longitude": "121.31903000" + }, + { + "id": "84316", + "name": "Quisao", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.43470000", + "longitude": "121.33440000" + }, + { + "id": "84331", + "name": "Real", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.66397000", + "longitude": "121.60412000" + }, + { + "id": "84348", + "name": "Rizal", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.10944000", + "longitude": "121.39360000" + }, + { + "id": "84350", + "name": "Rodriguez", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.76011000", + "longitude": "121.19993000" + }, + { + "id": "84357", + "name": "Rosario", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86350000", + "longitude": "122.27310000" + }, + { + "id": "84369", + "name": "Sabang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.30556000", + "longitude": "120.80361000" + }, + { + "id": "84431", + "name": "Sampaloc", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.54020000", + "longitude": "121.36020000" + }, + { + "id": "84435", + "name": "Sampiro", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.78417000", + "longitude": "121.38417000" + }, + { + "id": "84443", + "name": "San Andres", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.05000000", + "longitude": "121.21667000" + }, + { + "id": "84447", + "name": "San Antonio", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.20000000", + "longitude": "121.50000000" + }, + { + "id": "84459", + "name": "San Carlos", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.84220000", + "longitude": "121.24160000" + }, + { + "id": "84462", + "name": "San Celestio", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.92580000", + "longitude": "121.23490000" + }, + { + "id": "84465", + "name": "San Diego", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.04220000", + "longitude": "120.62550000" + }, + { + "id": "84484", + "name": "San Francisco", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.79110000", + "longitude": "122.28760000" + }, + { + "id": "84494", + "name": "San Gregorio", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.02970000", + "longitude": "121.26390000" + }, + { + "id": "84501", + "name": "San Isidro", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.63250000", + "longitude": "122.24280000" + }, + { + "id": "84509", + "name": "San Joaquin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.04695000", + "longitude": "121.21864000" + }, + { + "id": "84520", + "name": "San Jose", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.85209000", + "longitude": "120.94951000" + }, + { + "id": "84528", + "name": "San Juan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.05715000", + "longitude": "121.22931000" + }, + { + "id": "84540", + "name": "San Luis", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.85469000", + "longitude": "120.91653000" + }, + { + "id": "84555", + "name": "San Mateo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.69820000", + "longitude": "121.12360000" + }, + { + "id": "84564", + "name": "San Miguel", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87400000", + "longitude": "121.19830000" + }, + { + "id": "84569", + "name": "San Narciso", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.56770000", + "longitude": "122.56670000" + }, + { + "id": "84571", + "name": "San Nicolas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.92825000", + "longitude": "120.95100000" + }, + { + "id": "84575", + "name": "San Pablo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.06830000", + "longitude": "121.32560000" + }, + { + "id": "84578", + "name": "San Pascual", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.81045000", + "longitude": "121.02200000" + }, + { + "id": "84586", + "name": "San Pedro", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.35950000", + "longitude": "121.04730000" + }, + { + "id": "84590", + "name": "San Pedro One", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.05341000", + "longitude": "121.14536000" + }, + { + "id": "84596", + "name": "San Rafael", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.12840000", + "longitude": "121.41470000" + }, + { + "id": "84624", + "name": "San Vicente", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.89670000", + "longitude": "122.20470000" + }, + { + "id": "84647", + "name": "Santa Catalina", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.12130000", + "longitude": "121.34190000" + }, + { + "id": "84650", + "name": "Santa Catalina Norte", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87083000", + "longitude": "121.35750000" + }, + { + "id": "84651", + "name": "Santa Catalina Sur", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87384000", + "longitude": "121.43104000" + }, + { + "id": "84652", + "name": "Santa Cecilia", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.10540000", + "longitude": "122.20160000" + }, + { + "id": "84653", + "name": "Santa Clara", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.75361000", + "longitude": "121.06056000" + }, + { + "id": "84659", + "name": "Santa Cruz", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.28140000", + "longitude": "121.41610000" + }, + { + "id": "84677", + "name": "Santa Lucia", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.03490000", + "longitude": "121.43120000" + }, + { + "id": "84685", + "name": "Santa Maria", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.47190000", + "longitude": "121.42860000" + }, + { + "id": "84698", + "name": "Santa Rita Aplaya", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.77173000", + "longitude": "121.03492000" + }, + { + "id": "84699", + "name": "Santa Rosa", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.31222000", + "longitude": "121.11139000" + }, + { + "id": "84707", + "name": "Santa Teresita", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86639000", + "longitude": "120.98139000" + }, + { + "id": "84712", + "name": "Santiago", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.02110000", + "longitude": "121.27920000" + }, + { + "id": "84716", + "name": "Santisimo Rosario", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99661000", + "longitude": "121.30918000" + }, + { + "id": "84727", + "name": "Santo Niño", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.84890000", + "longitude": "121.13280000" + }, + { + "id": "84731", + "name": "Santo Tomas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.10790000", + "longitude": "121.14136000" + }, + { + "id": "84738", + "name": "Santor", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.09549000", + "longitude": "121.10874000" + }, + { + "id": "84752", + "name": "Sariaya", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.96240000", + "longitude": "121.52650000" + }, + { + "id": "84775", + "name": "Sibulan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.75000000", + "longitude": "121.93333000" + }, + { + "id": "84781", + "name": "Sico Uno", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83010000", + "longitude": "121.37123000" + }, + { + "id": "84792", + "name": "Silang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.21567000", + "longitude": "120.97137000" + }, + { + "id": "84796", + "name": "Silongin", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.29990000", + "longitude": "122.52170000" + }, + { + "id": "84809", + "name": "Sinala", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.80570000", + "longitude": "120.97463000" + }, + { + "id": "84816", + "name": "Siniloan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.42160000", + "longitude": "121.44630000" + }, + { + "id": "84817", + "name": "Sinisian", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.91560000", + "longitude": "120.84401000" + }, + { + "id": "84844", + "name": "Solo", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.74691000", + "longitude": "120.90119000" + }, + { + "id": "84855", + "name": "Subic", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.94859000", + "longitude": "120.94013000" + }, + { + "id": "84888", + "name": "Taal", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.87992000", + "longitude": "120.92311000" + }, + { + "id": "84932", + "name": "Tagaytay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.09532000", + "longitude": "120.93355000" + }, + { + "id": "84933", + "name": "Tagbacan Ibaba", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.60280000", + "longitude": "122.36870000" + }, + { + "id": "84942", + "name": "Tagkawayan Sabang", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.99090000", + "longitude": "122.52980000" + }, + { + "id": "84958", + "name": "Tala", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.27420000", + "longitude": "122.58590000" + }, + { + "id": "84963", + "name": "Talaga", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.73646000", + "longitude": "120.93618000" + }, + { + "id": "84965", + "name": "Talahib Payap", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.66083000", + "longitude": "121.13639000" + }, + { + "id": "84966", + "name": "Talahiban I", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.80645000", + "longitude": "121.38116000" + }, + { + "id": "84967", + "name": "Talaibon", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.83780000", + "longitude": "121.13980000" + }, + { + "id": "84976", + "name": "Talipan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.93333000", + "longitude": "121.68333000" + }, + { + "id": "84984", + "name": "Talisay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.09250000", + "longitude": "121.02194000" + }, + { + "id": "85028", + "name": "Tanauan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.08627000", + "longitude": "121.14975000" + }, + { + "id": "85030", + "name": "Tanay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.49680000", + "longitude": "121.28460000" + }, + { + "id": "85044", + "name": "Tanza", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.39834000", + "longitude": "120.85544000" + }, + { + "id": "85068", + "name": "Tayabas", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.02590000", + "longitude": "121.59290000" + }, + { + "id": "85069", + "name": "Tayabas Ibaba", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.62220000", + "longitude": "122.28140000" + }, + { + "id": "85074", + "name": "Taysan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.86970000", + "longitude": "121.09710000" + }, + { + "id": "85077", + "name": "Taytay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.12567000", + "longitude": "121.40399000" + }, + { + "id": "85083", + "name": "Taywanak Ilaya", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.15759000", + "longitude": "120.84655000" + }, + { + "id": "85089", + "name": "Teresa", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.56120000", + "longitude": "121.21950000" + }, + { + "id": "85091", + "name": "Ternate", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.28970000", + "longitude": "120.71680000" + }, + { + "id": "85092", + "name": "Tiaong", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.96383000", + "longitude": "121.32121000" + }, + { + "id": "85110", + "name": "Tignoan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.56522000", + "longitude": "121.61786000" + }, + { + "id": "85136", + "name": "Tingloy", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.66091000", + "longitude": "120.87110000" + }, + { + "id": "85144", + "name": "Tipaz", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.82850000", + "longitude": "121.42506000" + }, + { + "id": "85169", + "name": "Toong", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.07063000", + "longitude": "120.76333000" + }, + { + "id": "85176", + "name": "Tranca", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.11815000", + "longitude": "121.05741000" + }, + { + "id": "85213", + "name": "Tuhian", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.62220000", + "longitude": "122.21780000" + }, + { + "id": "85215", + "name": "Tulay", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.26969000", + "longitude": "120.76925000" + }, + { + "id": "85220", + "name": "Tumalim", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.08010000", + "longitude": "120.72310000" + }, + { + "id": "85236", + "name": "Tuy", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.01830000", + "longitude": "120.72960000" + }, + { + "id": "85260", + "name": "Unisan", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.84132000", + "longitude": "121.97522000" + }, + { + "id": "85284", + "name": "Victoria", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "14.22770000", + "longitude": "121.32920000" + }, + { + "id": "85314", + "name": "Wawa", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.74010000", + "longitude": "121.05290000" + }, + { + "id": "85323", + "name": "Yuni", + "state_id": 1356, + "state_code": "MDC", + "country_id": 174, + "country_code": "PH", + "latitude": "13.41240000", + "longitude": "122.48460000" + }, + { + "id": "81132", + "name": "Aborlan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.43361000", + "longitude": "118.54879000" + }, + { + "id": "81133", + "name": "Abra de Ilog", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.44370000", + "longitude": "120.72910000" + }, + { + "id": "81145", + "name": "Adela", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.44164000", + "longitude": "120.97291000" + }, + { + "id": "81156", + "name": "Agcogon", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.06146000", + "longitude": "121.95911000" + }, + { + "id": "81173", + "name": "Agutaya", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "11.14800000", + "longitude": "120.94170000" + }, + { + "id": "81181", + "name": "Alad", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.61682000", + "longitude": "122.24751000" + }, + { + "id": "81197", + "name": "Alcantara", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.25890000", + "longitude": "122.05440000" + }, + { + "id": "81204", + "name": "Alemanguan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.61177000", + "longitude": "119.32680000" + }, + { + "id": "81206", + "name": "Algeciras", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "11.41540000", + "longitude": "120.81680000" + }, + { + "id": "81210", + "name": "Alibug", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.22906000", + "longitude": "121.22811000" + }, + { + "id": "81272", + "name": "Anilao", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.71402000", + "longitude": "121.51242000" + }, + { + "id": "81295", + "name": "Apitong", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.23910000", + "longitude": "121.20750000" + }, + { + "id": "81300", + "name": "Apurawan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.59940000", + "longitude": "118.34890000" + }, + { + "id": "81303", + "name": "Araceli", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.55290000", + "longitude": "119.99130000" + }, + { + "id": "81304", + "name": "Aramawayan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.34247000", + "longitude": "118.16230000" + }, + { + "id": "81305", + "name": "Aramayuan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.17008000", + "longitude": "118.18720000" + }, + { + "id": "81333", + "name": "Aurora", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.23220000", + "longitude": "121.12030000" + }, + { + "id": "81350", + "name": "Babug", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.37325000", + "longitude": "121.04171000" + }, + { + "id": "81362", + "name": "Baco", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.35730000", + "longitude": "121.09830000" + }, + { + "id": "81377", + "name": "Bacungan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.91056000", + "longitude": "118.70222000" + }, + { + "id": "81400", + "name": "Bagong Sikat", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.36745000", + "longitude": "121.06171000" + }, + { + "id": "81418", + "name": "Baheli", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.01369000", + "longitude": "118.77294000" + }, + { + "id": "81429", + "name": "Balabac", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "7.98363000", + "longitude": "117.04868000" + }, + { + "id": "81440", + "name": "Balanacan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.52890000", + "longitude": "121.86770000" + }, + { + "id": "81454", + "name": "Balatero", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.50210000", + "longitude": "120.92440000" + }, + { + "id": "81504", + "name": "Balugo", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.57923000", + "longitude": "121.43931000" + }, + { + "id": "81545", + "name": "Banos", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.64553000", + "longitude": "120.90972000" + }, + { + "id": "81548", + "name": "Bansud", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.86500000", + "longitude": "121.45639000" + }, + { + "id": "81564", + "name": "Barahan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.01210000", + "longitude": "120.76200000" + }, + { + "id": "81581", + "name": "Barong Barong", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.85350000", + "longitude": "117.89390000" + }, + { + "id": "81617", + "name": "Batarasa", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.67335000", + "longitude": "117.62795000" + }, + { + "id": "81620", + "name": "Batasan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.76667000", + "longitude": "120.78333000" + }, + { + "id": "81627", + "name": "Bato", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.82500000", + "longitude": "119.47100000" + }, + { + "id": "81669", + "name": "Bayuin", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.04110000", + "longitude": "121.38852000" + }, + { + "id": "81728", + "name": "Bintacay", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.49860000", + "longitude": "121.87680000" + }, + { + "id": "81752", + "name": "Boac", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.44630000", + "longitude": "121.84000000" + }, + { + "id": "81828", + "name": "Buenavista", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.25511000", + "longitude": "121.94149000" + }, + { + "id": "81865", + "name": "Bulalacao", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.32535000", + "longitude": "121.34351000" + }, + { + "id": "81888", + "name": "Buluang", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.23336000", + "longitude": "119.87581000" + }, + { + "id": "81900", + "name": "Bunog", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.14028000", + "longitude": "117.78167000" + }, + { + "id": "81913", + "name": "Burirao", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.20000000", + "longitude": "118.10000000" + }, + { + "id": "81929", + "name": "Buyabod", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.46660000", + "longitude": "122.05260000" + }, + { + "id": "81934", + "name": "Cabacao", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.33560000", + "longitude": "120.65880000" + }, + { + "id": "81976", + "name": "Cabra", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.88833000", + "longitude": "120.04944000" + }, + { + "id": "81993", + "name": "Cagayan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "6.97470000", + "longitude": "118.51440000" + }, + { + "id": "81995", + "name": "Cagayancillo", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.57694000", + "longitude": "121.20722000" + }, + { + "id": "82002", + "name": "Caigangan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.25811000", + "longitude": "121.93363000" + }, + { + "id": "82004", + "name": "Cajidiocan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.36696000", + "longitude": "122.68141000" + }, + { + "id": "82005", + "name": "Cajimos", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.59463000", + "longitude": "122.27531000" + }, + { + "id": "82020", + "name": "Calamundingan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.93101000", + "longitude": "121.47062000" + }, + { + "id": "82029", + "name": "Calapan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.41170000", + "longitude": "121.18030000" + }, + { + "id": "82038", + "name": "Calatrava", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.61980000", + "longitude": "122.07140000" + }, + { + "id": "82039", + "name": "Calatugas", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.16898000", + "longitude": "118.22350000" + }, + { + "id": "82040", + "name": "Calauag", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.66817000", + "longitude": "119.57050000" + }, + { + "id": "82056", + "name": "Calintaan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.56667000", + "longitude": "120.93333000" + }, + { + "id": "82090", + "name": "Caminauit", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.33135000", + "longitude": "121.08251000" + }, + { + "id": "82127", + "name": "Cantel", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.61760000", + "longitude": "121.51360000" + }, + { + "id": "82131", + "name": "Canubing No 2", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.35000000", + "longitude": "121.13333000" + }, + { + "id": "82149", + "name": "Caramay", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.18150000", + "longitude": "119.23600000" + }, + { + "id": "82168", + "name": "Carmen", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.61710000", + "longitude": "122.12110000" + }, + { + "id": "82185", + "name": "Caruray", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.30940000", + "longitude": "119.01280000" + }, + { + "id": "82191", + "name": "Casian", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "11.03500000", + "longitude": "119.71360000" + }, + { + "id": "82230", + "name": "Cawayan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.65570000", + "longitude": "121.54560000" + }, + { + "id": "82271", + "name": "Concepcion", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.39750000", + "longitude": "122.09361000" + }, + { + "id": "82278", + "name": "Conduaga", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.86200000", + "longitude": "117.48930000" + }, + { + "id": "82289", + "name": "Corcuera", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.78331000", + "longitude": "122.04851000" + }, + { + "id": "82295", + "name": "Coron", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "11.99860000", + "longitude": "120.20430000" + }, + { + "id": "82325", + "name": "Cuyo", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.85250000", + "longitude": "121.00861000" + }, + { + "id": "82376", + "name": "Dapawan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.40694000", + "longitude": "122.02778000" + }, + { + "id": "82401", + "name": "Daykitin", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.27073000", + "longitude": "121.91086000" + }, + { + "id": "82447", + "name": "Dobdoban", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.57470000", + "longitude": "122.11380000" + }, + { + "id": "82476", + "name": "Dulangan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.30510000", + "longitude": "121.11290000" + }, + { + "id": "82490", + "name": "Dumaran", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.52500000", + "longitude": "119.76710000" + }, + { + "id": "82505", + "name": "El Nido", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "11.18583000", + "longitude": "119.39556000" + }, + { + "id": "82511", + "name": "Eraan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.06289000", + "longitude": "117.70160000" + }, + { + "id": "82516", + "name": "España", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.38414000", + "longitude": "122.49901000" + }, + { + "id": "82532", + "name": "Estrella", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.32898000", + "longitude": "121.31092000" + }, + { + "id": "82534", + "name": "Evangelista", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.33350000", + "longitude": "121.09720000" + }, + { + "id": "82538", + "name": "Ferrol", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.33833000", + "longitude": "121.94139000" + }, + { + "id": "82546", + "name": "Gabawan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.42714000", + "longitude": "122.01332000" + }, + { + "id": "82571", + "name": "Gasan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.32372000", + "longitude": "121.84675000" + }, + { + "id": "82603", + "name": "Gloria", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.98333000", + "longitude": "121.46667000" + }, + { + "id": "82636", + "name": "Guinlo", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.80090000", + "longitude": "119.43830000" + }, + { + "id": "82679", + "name": "Harrison", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.45000000", + "longitude": "120.43333000" + }, + { + "id": "82757", + "name": "Ipil", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.51320000", + "longitude": "121.98410000" + }, + { + "id": "82759", + "name": "Ipilan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.84306000", + "longitude": "117.90333000" + }, + { + "id": "82761", + "name": "Irahuan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.80798000", + "longitude": "118.69191000" + }, + { + "id": "82762", + "name": "Iraray", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.99361000", + "longitude": "118.05111000" + }, + { + "id": "82766", + "name": "Irirum", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.61603000", + "longitude": "120.93061000" + }, + { + "id": "82772", + "name": "Isugod", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.34077000", + "longitude": "118.11960000" + }, + { + "id": "82938", + "name": "La Curva", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.40484000", + "longitude": "121.04591000" + }, + { + "id": "82957", + "name": "Labasan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.77732000", + "longitude": "121.46922000" + }, + { + "id": "82963", + "name": "Labog", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.05580000", + "longitude": "118.04950000" + }, + { + "id": "83008", + "name": "Lanas", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.04946000", + "longitude": "121.91851000" + }, + { + "id": "83056", + "name": "Laylay", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.43910000", + "longitude": "121.82020000" + }, + { + "id": "83071", + "name": "Leuteboro", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.06100000", + "longitude": "121.37472000" + }, + { + "id": "83079", + "name": "Libas", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.24167000", + "longitude": "121.95555000" + }, + { + "id": "83085", + "name": "Libertad", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.45412000", + "longitude": "122.00828000" + }, + { + "id": "83105", + "name": "Ligaya", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.65993000", + "longitude": "120.89231000" + }, + { + "id": "83115", + "name": "Limanancong", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.98930000", + "longitude": "119.35930000" + }, + { + "id": "83124", + "name": "Limon", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.30000000", + "longitude": "122.01667000" + }, + { + "id": "83171", + "name": "Looc", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.26050000", + "longitude": "121.99260000" + }, + { + "id": "83192", + "name": "Lubang", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.85835000", + "longitude": "120.12402000" + }, + { + "id": "83213", + "name": "Lumangbayan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.04830000", + "longitude": "121.49872000" + }, + { + "id": "83330", + "name": "Magbay", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.41014000", + "longitude": "121.08991000" + }, + { + "id": "83334", + "name": "Magdiwang", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.48372000", + "longitude": "122.51472000" + }, + { + "id": "83341", + "name": "Magsaysay", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.33333000", + "longitude": "121.15000000" + }, + { + "id": "83371", + "name": "Mainit", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.84360000", + "longitude": "117.81830000" + }, + { + "id": "83398", + "name": "Malamig", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.95000000", + "longitude": "121.36667000" + }, + { + "id": "83424", + "name": "Malibago", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.27830000", + "longitude": "122.02280000" + }, + { + "id": "83429", + "name": "Maliig", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.84556000", + "longitude": "120.15032000" + }, + { + "id": "83447", + "name": "Malitbog", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.75212000", + "longitude": "121.46591000" + }, + { + "id": "83457", + "name": "Maluanluan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.09670000", + "longitude": "121.42352000" + }, + { + "id": "83477", + "name": "Mamburao", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.22330000", + "longitude": "120.59600000" + }, + { + "id": "83497", + "name": "Manaul", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.45300000", + "longitude": "121.41070000" + }, + { + "id": "83511", + "name": "Mangarine", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.35115000", + "longitude": "121.09801000" + }, + { + "id": "83534", + "name": "Mansalay", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.52044000", + "longitude": "121.43851000" + }, + { + "id": "83591", + "name": "Masaguisi", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.75452000", + "longitude": "121.44841000" + }, + { + "id": "83602", + "name": "Masiga", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.36070000", + "longitude": "121.82780000" + }, + { + "id": "83638", + "name": "Mauhao", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.29015000", + "longitude": "121.30071000" + }, + { + "id": "83693", + "name": "Mogpog", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.47444000", + "longitude": "121.86139000" + }, + { + "id": "83747", + "name": "Nagiba", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.33018000", + "longitude": "121.27432000" + }, + { + "id": "83781", + "name": "Narra", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.26877000", + "longitude": "118.40430000" + }, + { + "id": "83792", + "name": "Naujan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.32328000", + "longitude": "121.30282000" + }, + { + "id": "83800", + "name": "New Agutaya", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.56139000", + "longitude": "119.30778000" + }, + { + "id": "83841", + "name": "Odala", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.47760000", + "longitude": "120.82230000" + }, + { + "id": "83844", + "name": "Odiong", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.59310000", + "longitude": "121.50320000" + }, + { + "id": "83845", + "name": "Odiongan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.40167000", + "longitude": "121.99194000" + }, + { + "id": "83866", + "name": "Osmeña", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.52083000", + "longitude": "119.92583000" + }, + { + "id": "84072", + "name": "Pañgobilian", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.80111000", + "longitude": "117.85944000" + }, + { + "id": "83873", + "name": "Paclolo", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.37675000", + "longitude": "121.17351000" + }, + { + "id": "83931", + "name": "Paluan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.41600000", + "longitude": "120.46230000" + }, + { + "id": "83935", + "name": "Pambisan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.01370000", + "longitude": "121.41282000" + }, + { + "id": "83945", + "name": "Panacan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.24627000", + "longitude": "118.40820000" + }, + { + "id": "83948", + "name": "Panalingaan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.78417000", + "longitude": "117.42306000" + }, + { + "id": "83957", + "name": "Pancol", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.87150000", + "longitude": "119.41570000" + }, + { + "id": "83983", + "name": "Pangulayan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.03980000", + "longitude": "121.44792000" + }, + { + "id": "83988", + "name": "Panique", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.48025000", + "longitude": "122.01462000" + }, + { + "id": "83992", + "name": "Panitian", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.09650000", + "longitude": "118.08640000" + }, + { + "id": "83993", + "name": "Panlaitan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.11907000", + "longitude": "119.84861000" + }, + { + "id": "84048", + "name": "Pato-o", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.43025000", + "longitude": "122.06640000" + }, + { + "id": "84096", + "name": "Pili", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.06640000", + "longitude": "121.52032000" + }, + { + "id": "84101", + "name": "Pinagsabangan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.26559000", + "longitude": "121.26812000" + }, + { + "id": "84103", + "name": "Pinamalayan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.04603000", + "longitude": "121.46205000" + }, + { + "id": "84124", + "name": "Pitogo", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.50744000", + "longitude": "121.09041000" + }, + { + "id": "84135", + "name": "Plaridel", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.37860000", + "longitude": "118.50174000" + }, + { + "id": "84140", + "name": "Pola", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.14379000", + "longitude": "121.44152000" + }, + { + "id": "84167", + "name": "Port Barton", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.47556000", + "longitude": "119.24722000" + }, + { + "id": "84220", + "name": "Province of Marinduque", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.41667000", + "longitude": "121.95000000" + }, + { + "id": "84222", + "name": "Province of Mindoro Occidental", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.00000000", + "longitude": "120.91667000" + }, + { + "id": "84223", + "name": "Province of Mindoro Oriental", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.15555000", + "longitude": "121.26803000" + }, + { + "id": "84231", + "name": "Province of Palawan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.00000000", + "longitude": "118.75000000" + }, + { + "id": "84237", + "name": "Province of Romblon", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.55499000", + "longitude": "122.28206000" + }, + { + "id": "84259", + "name": "Puerto Galera", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.50223000", + "longitude": "120.95166000" + }, + { + "id": "84260", + "name": "Puerto Princesa", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.73917000", + "longitude": "118.73528000" + }, + { + "id": "84273", + "name": "Punang", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.01690000", + "longitude": "118.04950000" + }, + { + "id": "84281", + "name": "Punta", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.24410000", + "longitude": "122.00970000" + }, + { + "id": "84300", + "name": "Quezon", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.24111000", + "longitude": "118.03139000" + }, + { + "id": "84306", + "name": "Quinabigan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.99360000", + "longitude": "121.47812000" + }, + { + "id": "84329", + "name": "Ransang", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.96028000", + "longitude": "117.58278000" + }, + { + "id": "84339", + "name": "Rio Tuba", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.50613000", + "longitude": "117.43169000" + }, + { + "id": "84343", + "name": "Rizal", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.46667000", + "longitude": "120.96667000" + }, + { + "id": "84352", + "name": "Romblon", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.57513000", + "longitude": "122.27081000" + }, + { + "id": "84362", + "name": "Roxas", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.32150000", + "longitude": "119.34510000" + }, + { + "id": "84364", + "name": "Saaban", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.13049000", + "longitude": "121.36872000" + }, + { + "id": "84370", + "name": "Sabang", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.50920000", + "longitude": "120.97370000" + }, + { + "id": "84373", + "name": "Sablayan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.83460000", + "longitude": "120.76900000" + }, + { + "id": "84382", + "name": "Sagana", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.72252000", + "longitude": "121.48672000" + }, + { + "id": "84405", + "name": "Salcedo", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.81052000", + "longitude": "121.46742000" + }, + { + "id": "84418", + "name": "Salvacion", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.13287000", + "longitude": "119.93281000" + }, + { + "id": "84437", + "name": "San Agustin", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.41984000", + "longitude": "120.98931000" + }, + { + "id": "84453", + "name": "San Aquilino", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.59743000", + "longitude": "121.48671000" + }, + { + "id": "84479", + "name": "San Fernando", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.30364000", + "longitude": "122.60041000" + }, + { + "id": "84519", + "name": "San Jose", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.35275000", + "longitude": "121.06761000" + }, + { + "id": "84549", + "name": "San Mariano", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.64143000", + "longitude": "121.43791000" + }, + { + "id": "84567", + "name": "San Miguel", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "11.49240000", + "longitude": "119.87030000" + }, + { + "id": "84588", + "name": "San Pedro", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.46084000", + "longitude": "121.01041000" + }, + { + "id": "84616", + "name": "San Teodoro", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.43354000", + "longitude": "121.01440000" + }, + { + "id": "84620", + "name": "San Vicente", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.53033000", + "longitude": "119.25423000" + }, + { + "id": "84646", + "name": "Santa Brigida", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.56783000", + "longitude": "121.48901000" + }, + { + "id": "84661", + "name": "Santa Cruz", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.47580000", + "longitude": "122.02750000" + }, + { + "id": "84670", + "name": "Santa Fe", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.15656000", + "longitude": "121.99411000" + }, + { + "id": "84687", + "name": "Santa Maria", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.57883000", + "longitude": "121.46041000" + }, + { + "id": "84702", + "name": "Santa Teresa", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.25186000", + "longitude": "121.11251000" + }, + { + "id": "84751", + "name": "Saraza", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.73556000", + "longitude": "117.78000000" + }, + { + "id": "84834", + "name": "Socorro", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.06690000", + "longitude": "121.39858000" + }, + { + "id": "84839", + "name": "Sogod", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.37635000", + "longitude": "122.66368000" + }, + { + "id": "84853", + "name": "Suba", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.82512000", + "longitude": "121.00690000" + }, + { + "id": "84875", + "name": "Sumagui", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.79532000", + "longitude": "121.47401000" + }, + { + "id": "84897", + "name": "Tabinay", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.48710000", + "longitude": "120.95660000" + }, + { + "id": "84905", + "name": "Tabon", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.23877000", + "longitude": "117.99460000" + }, + { + "id": "84919", + "name": "Tacligan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.39750000", + "longitude": "121.06260000" + }, + { + "id": "84921", + "name": "Taclobo", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.30744000", + "longitude": "122.58601000" + }, + { + "id": "84934", + "name": "Tagbak", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.84166000", + "longitude": "120.08872000" + }, + { + "id": "84937", + "name": "Tagbita", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.71331000", + "longitude": "117.35046000" + }, + { + "id": "84939", + "name": "Tagburos", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.82861000", + "longitude": "118.73194000" + }, + { + "id": "84953", + "name": "Tagusao", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "9.19238000", + "longitude": "117.81410000" + }, + { + "id": "85012", + "name": "Tambong", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.96391000", + "longitude": "121.48462000" + }, + { + "id": "85024", + "name": "Tampayan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.49411000", + "longitude": "122.53309000" + }, + { + "id": "85034", + "name": "Tangal", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.84536000", + "longitude": "120.10082000" + }, + { + "id": "85062", + "name": "Tarusan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "8.65461000", + "longitude": "117.51040000" + }, + { + "id": "85071", + "name": "Tayaman", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.22950000", + "longitude": "120.57260000" + }, + { + "id": "85076", + "name": "Taytay", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.81788000", + "longitude": "119.49851000" + }, + { + "id": "85114", + "name": "Tigui", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.26810000", + "longitude": "122.04150000" + }, + { + "id": "85116", + "name": "Tiguion", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.33470000", + "longitude": "121.86100000" + }, + { + "id": "85117", + "name": "Tiguisan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.83941000", + "longitude": "121.46052000" + }, + { + "id": "85120", + "name": "Tilik", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.81436000", + "longitude": "120.20022000" + }, + { + "id": "85137", + "name": "Tiniguiban", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "11.35740000", + "longitude": "119.50490000" + }, + { + "id": "85164", + "name": "Tomingad", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.44311000", + "longitude": "122.02106000" + }, + { + "id": "85172", + "name": "Torrijos", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.31676000", + "longitude": "122.08205000" + }, + { + "id": "85183", + "name": "Tuban", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.81220000", + "longitude": "120.83230000" + }, + { + "id": "85210", + "name": "Tugdan", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "12.31340000", + "longitude": "122.08530000" + }, + { + "id": "85221", + "name": "Tumarbong", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "10.37659000", + "longitude": "119.45790000" + }, + { + "id": "85285", + "name": "Victoria", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.17722000", + "longitude": "121.27806000" + }, + { + "id": "85291", + "name": "Vigo", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.82666000", + "longitude": "120.17922000" + }, + { + "id": "85313", + "name": "Wawa", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.46320000", + "longitude": "120.74410000" + }, + { + "id": "85320", + "name": "Yook", + "state_id": 1354, + "state_code": "MDR", + "country_id": 174, + "country_code": "PH", + "latitude": "13.22608000", + "longitude": "121.96400000" + }, + { + "id": "81177", + "name": "Alabel", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.10179000", + "longitude": "125.29048000" + }, + { + "id": "81183", + "name": "Alamada", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.33333000", + "longitude": "124.56667000" + }, + { + "id": "81242", + "name": "Amas", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.05694000", + "longitude": "124.98389000" + }, + { + "id": "81671", + "name": "Bañga", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.42389000", + "longitude": "124.77833000" + }, + { + "id": "81403", + "name": "Bagontapay", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.85889000", + "longitude": "124.90889000" + }, + { + "id": "81407", + "name": "Baguer", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.25611000", + "longitude": "124.50417000" + }, + { + "id": "81484", + "name": "Baliton", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.74361000", + "longitude": "125.23639000" + }, + { + "id": "81493", + "name": "Balogo", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.28230000", + "longitude": "124.46388000" + }, + { + "id": "81516", + "name": "Banawa", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.15361000", + "longitude": "124.86667000" + }, + { + "id": "81541", + "name": "Banisilan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.49083000", + "longitude": "124.72417000" + }, + { + "id": "81557", + "name": "Bantogon", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.53333000", + "longitude": "124.03333000" + }, + { + "id": "81582", + "name": "Barongis", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.26111000", + "longitude": "124.56417000" + }, + { + "id": "81595", + "name": "Basak", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.72736000", + "longitude": "124.15117000" + }, + { + "id": "81619", + "name": "Batasan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.03333000", + "longitude": "125.05000000" + }, + { + "id": "81638", + "name": "Batutitik", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.22333000", + "longitude": "125.25194000" + }, + { + "id": "81639", + "name": "Bau", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.40528000", + "longitude": "124.64972000" + }, + { + "id": "81660", + "name": "Bayasong", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.64889000", + "longitude": "124.87306000" + }, + { + "id": "81682", + "name": "Bialong", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.98056000", + "longitude": "124.88889000" + }, + { + "id": "81748", + "name": "Biwang", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.60592000", + "longitude": "124.54358000" + }, + { + "id": "81750", + "name": "Blingkong", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.58808000", + "longitude": "124.88951000" + }, + { + "id": "81814", + "name": "Buadtasan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.00496000", + "longitude": "124.61266000" + }, + { + "id": "81816", + "name": "Bual", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.79583000", + "longitude": "124.91083000" + }, + { + "id": "81822", + "name": "Buawan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "8.31667000", + "longitude": "124.30306000" + }, + { + "id": "81823", + "name": "Buayan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.11639000", + "longitude": "125.23472000" + }, + { + "id": "81857", + "name": "Bukay Pait", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.56161000", + "longitude": "124.76706000" + }, + { + "id": "81871", + "name": "Bulatukan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.90250000", + "longitude": "125.16083000" + }, + { + "id": "81912", + "name": "Burias", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.71778000", + "longitude": "125.25361000" + }, + { + "id": "81919", + "name": "Busok", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.50820000", + "longitude": "124.60009000" + }, + { + "id": "82173", + "name": "Carmen", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.20444000", + "longitude": "124.79167000" + }, + { + "id": "82179", + "name": "Carpenter Hill", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.44413000", + "longitude": "124.88138000" + }, + { + "id": "82239", + "name": "Cebuano", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.38794000", + "longitude": "124.96841000" + }, + { + "id": "82260", + "name": "Colongulo", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.33861000", + "longitude": "124.72167000" + }, + { + "id": "82263", + "name": "Columbio", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.69639000", + "longitude": "124.93722000" + }, + { + "id": "82279", + "name": "Conel", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.20222000", + "longitude": "125.18722000" + }, + { + "id": "82303", + "name": "Cotabato City", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.21667000", + "longitude": "124.25000000" + }, + { + "id": "82337", + "name": "Daguma", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.60345000", + "longitude": "124.57020000" + }, + { + "id": "82342", + "name": "Dahay", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.39067000", + "longitude": "124.71464000" + }, + { + "id": "82346", + "name": "Daliao", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.86111000", + "longitude": "124.95333000" + }, + { + "id": "82359", + "name": "Damawato", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.70000000", + "longitude": "124.78333000" + }, + { + "id": "82372", + "name": "Dansuli", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.64075000", + "longitude": "124.58258000" + }, + { + "id": "82424", + "name": "Digkilaan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "8.25111000", + "longitude": "124.31722000" + }, + { + "id": "82468", + "name": "Dualing", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.15167000", + "longitude": "124.56833000" + }, + { + "id": "82473", + "name": "Dukay", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.66688000", + "longitude": "124.55697000" + }, + { + "id": "82482", + "name": "Dumaguil", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.62000000", + "longitude": "124.65333000" + }, + { + "id": "82496", + "name": "Dunguan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.94972000", + "longitude": "124.86083000" + }, + { + "id": "82520", + "name": "Esperanza", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.72306000", + "longitude": "124.51972000" + }, + { + "id": "82565", + "name": "Gansing", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.71851000", + "longitude": "124.65338000" + }, + { + "id": "82582", + "name": "General Santos", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.11278000", + "longitude": "125.17167000" + }, + { + "id": "82599", + "name": "Glad", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.14833000", + "longitude": "124.51806000" + }, + { + "id": "82600", + "name": "Glamang", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.16255000", + "longitude": "125.08392000" + }, + { + "id": "82601", + "name": "Glan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.82417000", + "longitude": "125.20333000" + }, + { + "id": "82602", + "name": "Glan Peidu", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.85500000", + "longitude": "125.21861000" + }, + { + "id": "82605", + "name": "Gocoton", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.15611000", + "longitude": "124.69111000" + }, + { + "id": "82640", + "name": "Guinsang-an", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.46499000", + "longitude": "124.68491000" + }, + { + "id": "82725", + "name": "Ilaya", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.81528000", + "longitude": "125.22667000" + }, + { + "id": "82727", + "name": "Iligan City", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "8.25000000", + "longitude": "124.40000000" + }, + { + "id": "82773", + "name": "Isulan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.62944000", + "longitude": "124.60500000" + }, + { + "id": "82821", + "name": "Kabacan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.10667000", + "longitude": "124.82917000" + }, + { + "id": "82823", + "name": "Kabalen", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.31944000", + "longitude": "125.01056000" + }, + { + "id": "82828", + "name": "Kablalan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.77972000", + "longitude": "125.19778000" + }, + { + "id": "82838", + "name": "Kalaisan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.01028000", + "longitude": "125.04500000" + }, + { + "id": "82839", + "name": "Kalamangog", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.72556000", + "longitude": "124.06889000" + }, + { + "id": "82840", + "name": "Kalamansig", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.55187000", + "longitude": "124.05111000" + }, + { + "id": "82841", + "name": "Kalandagan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.67826000", + "longitude": "124.72477000" + }, + { + "id": "82857", + "name": "Kamanga", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.85778000", + "longitude": "125.05611000" + }, + { + "id": "82870", + "name": "Kapatan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.90056000", + "longitude": "125.23750000" + }, + { + "id": "82871", + "name": "Kapaya", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.54258000", + "longitude": "124.56314000" + }, + { + "id": "82872", + "name": "Kapingkong", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.67503000", + "longitude": "124.62632000" + }, + { + "id": "82876", + "name": "Katangawan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.17222000", + "longitude": "125.22139000" + }, + { + "id": "82881", + "name": "Katubao", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.88917000", + "longitude": "124.82944000" + }, + { + "id": "82891", + "name": "Kiamba", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.98944000", + "longitude": "124.62417000" + }, + { + "id": "82899", + "name": "Kidapawan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.00833000", + "longitude": "125.08944000" + }, + { + "id": "82911", + "name": "Kipalbig", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.41056000", + "longitude": "124.92640000" + }, + { + "id": "82913", + "name": "Kisante", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.92306000", + "longitude": "125.15500000" + }, + { + "id": "82920", + "name": "Kiupo", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.84167000", + "longitude": "125.31917000" + }, + { + "id": "82921", + "name": "Klinan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.18683000", + "longitude": "125.13684000" + }, + { + "id": "82924", + "name": "Kolumbug", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.52389000", + "longitude": "124.60833000" + }, + { + "id": "82925", + "name": "Koronadal", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.50306000", + "longitude": "124.84694000" + }, + { + "id": "82928", + "name": "Kudanding", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.58803000", + "longitude": "124.63274000" + }, + { + "id": "82929", + "name": "Kulaman", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.46001000", + "longitude": "124.08767000" + }, + { + "id": "82965", + "name": "Labu-o", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.11417000", + "longitude": "125.04528000" + }, + { + "id": "82980", + "name": "Laguilayan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.67213000", + "longitude": "124.52491000" + }, + { + "id": "82986", + "name": "Lake Sebu", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.22482000", + "longitude": "124.71042000" + }, + { + "id": "82987", + "name": "Lala", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.97306000", + "longitude": "123.74722000" + }, + { + "id": "82994", + "name": "Lamba", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.35025000", + "longitude": "124.81974000" + }, + { + "id": "82996", + "name": "Lambayong", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.51944000", + "longitude": "125.04444000" + }, + { + "id": "82997", + "name": "Lambontong", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.30833000", + "longitude": "124.81056000" + }, + { + "id": "82999", + "name": "Lamian", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.30917000", + "longitude": "124.84639000" + }, + { + "id": "83004", + "name": "Lampari", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.31264000", + "longitude": "124.88028000" + }, + { + "id": "83005", + "name": "Lampitak", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.43222000", + "longitude": "125.05250000" + }, + { + "id": "83040", + "name": "Lapuz", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.49416000", + "longitude": "124.63054000" + }, + { + "id": "83077", + "name": "Libas", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.52014000", + "longitude": "124.78234000" + }, + { + "id": "83089", + "name": "Liberty", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.51989000", + "longitude": "124.63194000" + }, + { + "id": "83099", + "name": "Libungan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.24083000", + "longitude": "124.52000000" + }, + { + "id": "83110", + "name": "Liliongan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.36278000", + "longitude": "124.79278000" + }, + { + "id": "83120", + "name": "Limbalod", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.13278000", + "longitude": "124.79889000" + }, + { + "id": "83127", + "name": "Limulan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.58528000", + "longitude": "124.06189000" + }, + { + "id": "83132", + "name": "Linan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.43218000", + "longitude": "124.97617000" + }, + { + "id": "83134", + "name": "Linao", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.16778000", + "longitude": "124.96750000" + }, + { + "id": "83180", + "name": "Lopez Jaena", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.47591000", + "longitude": "124.69828000" + }, + { + "id": "83214", + "name": "Lumatil", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.87472000", + "longitude": "124.88833000" + }, + { + "id": "83215", + "name": "Lumazal", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.88528000", + "longitude": "124.84944000" + }, + { + "id": "83226", + "name": "Lumuyon", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.91583000", + "longitude": "124.78694000" + }, + { + "id": "83227", + "name": "Lun Pequeño", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.03778000", + "longitude": "125.28389000" + }, + { + "id": "83238", + "name": "Lunen", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.35911000", + "longitude": "124.90477000" + }, + { + "id": "83255", + "name": "Maan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.93389000", + "longitude": "124.73556000" + }, + { + "id": "83259", + "name": "Maasim", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.85750000", + "longitude": "125.00611000" + }, + { + "id": "83268", + "name": "Mabay", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.05772000", + "longitude": "124.46661000" + }, + { + "id": "83283", + "name": "Mabini", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.50556000", + "longitude": "124.90810000" + }, + { + "id": "83339", + "name": "Magpet", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.10017000", + "longitude": "125.11548000" + }, + { + "id": "83352", + "name": "Maguling", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.09500000", + "longitude": "124.40333000" + }, + { + "id": "83364", + "name": "Maibu", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.57000000", + "longitude": "124.79361000" + }, + { + "id": "83368", + "name": "Maindang", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.58978000", + "longitude": "124.84732000" + }, + { + "id": "83373", + "name": "Maitum", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.03917000", + "longitude": "124.49861000" + }, + { + "id": "83377", + "name": "Makilala", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.95167000", + "longitude": "125.09694000" + }, + { + "id": "83399", + "name": "Malamote", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.07389000", + "longitude": "124.94000000" + }, + { + "id": "83401", + "name": "Malandag", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.31030000", + "longitude": "125.24756000" + }, + { + "id": "83405", + "name": "Malapag", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.13333000", + "longitude": "124.81667000" + }, + { + "id": "83406", + "name": "Malapatan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.96917000", + "longitude": "125.28944000" + }, + { + "id": "83408", + "name": "Malasila", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.94389000", + "longitude": "125.12944000" + }, + { + "id": "83420", + "name": "Malbang", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.85556000", + "longitude": "125.04528000" + }, + { + "id": "83435", + "name": "Malinao", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.56029000", + "longitude": "124.70839000" + }, + { + "id": "83440", + "name": "Malingao", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.16083000", + "longitude": "124.47500000" + }, + { + "id": "83444", + "name": "Malisbeng", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.12000000", + "longitude": "124.35472000" + }, + { + "id": "83449", + "name": "Malitubog", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.31556000", + "longitude": "124.63806000" + }, + { + "id": "83456", + "name": "Maltana", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.42290000", + "longitude": "124.93688000" + }, + { + "id": "83464", + "name": "Maluñgun", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.27917000", + "longitude": "125.28167000" + }, + { + "id": "83468", + "name": "Mamali", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.77360000", + "longitude": "124.64770000" + }, + { + "id": "83498", + "name": "Manaulanan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.04806000", + "longitude": "124.61944000" + }, + { + "id": "83508", + "name": "Manga", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.29083000", + "longitude": "125.30833000" + }, + { + "id": "83541", + "name": "Manuangan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.27694000", + "longitude": "124.40444000" + }, + { + "id": "83543", + "name": "Manuel Roxas", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.44173000", + "longitude": "124.66605000" + }, + { + "id": "83569", + "name": "Marbel", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.11583000", + "longitude": "124.91250000" + }, + { + "id": "83577", + "name": "Mariano Marcos", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.73333000", + "longitude": "124.66667000" + }, + { + "id": "83616", + "name": "Matalam", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.08639000", + "longitude": "124.90056000" + }, + { + "id": "83629", + "name": "Matiompong", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.69611000", + "longitude": "124.56611000" + }, + { + "id": "83670", + "name": "Midsayap", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.19083000", + "longitude": "124.53028000" + }, + { + "id": "83681", + "name": "Minapan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.81500000", + "longitude": "124.85861000" + }, + { + "id": "83683", + "name": "Mindupok", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.09056000", + "longitude": "124.42333000" + }, + { + "id": "83763", + "name": "Nalus", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.01222000", + "longitude": "124.58528000" + }, + { + "id": "83804", + "name": "New Cebu", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.09528000", + "longitude": "125.03361000" + }, + { + "id": "83806", + "name": "New Iloilo", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.54776000", + "longitude": "124.78951000" + }, + { + "id": "83807", + "name": "New Lagao", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.70235000", + "longitude": "124.64141000" + }, + { + "id": "83809", + "name": "New Panay", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.74237000", + "longitude": "124.55956000" + }, + { + "id": "83820", + "name": "Noling", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.65984000", + "longitude": "124.09981000" + }, + { + "id": "83821", + "name": "Norala", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.52250000", + "longitude": "124.65917000" + }, + { + "id": "83832", + "name": "Nunguan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.12825000", + "longitude": "124.68912000" + }, + { + "id": "83864", + "name": "Osias", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.60000000", + "longitude": "124.81667000" + }, + { + "id": "83872", + "name": "Paatan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.11972000", + "longitude": "124.92389000" + }, + { + "id": "83889", + "name": "Pagalungan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.26556000", + "longitude": "125.01333000" + }, + { + "id": "83891", + "name": "Pagangan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.11444000", + "longitude": "124.59528000" + }, + { + "id": "83923", + "name": "Palian", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.37427000", + "longitude": "124.91062000" + }, + { + "id": "83924", + "name": "Palimbang", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.21002000", + "longitude": "124.18887000" + }, + { + "id": "83925", + "name": "Palkan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.29639000", + "longitude": "125.03167000" + }, + { + "id": "83933", + "name": "Pamantingan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.71413000", + "longitude": "124.38095000" + }, + { + "id": "83952", + "name": "Panay", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.49704000", + "longitude": "124.63808000" + }, + { + "id": "83984", + "name": "Pangyan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.70083000", + "longitude": "125.28111000" + }, + { + "id": "84016", + "name": "Paraiso", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.47606000", + "longitude": "124.80954000" + }, + { + "id": "84044", + "name": "Patindeguen", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.21972000", + "longitude": "124.49833000" + }, + { + "id": "84073", + "name": "Pedtad", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.16056000", + "longitude": "124.81444000" + }, + { + "id": "84086", + "name": "Pigcawayan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.27722000", + "longitude": "124.42556000" + }, + { + "id": "84087", + "name": "Pikit", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.05444000", + "longitude": "124.67194000" + }, + { + "id": "84100", + "name": "Pimbalayan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.86917000", + "longitude": "124.67250000" + }, + { + "id": "84149", + "name": "Polo", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.26472000", + "longitude": "125.11250000" + }, + { + "id": "84151", + "name": "Polomolok", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.22167000", + "longitude": "125.06398000" + }, + { + "id": "84154", + "name": "Polonoling", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.28496000", + "longitude": "124.96890000" + }, + { + "id": "84172", + "name": "President Quirino", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.70389000", + "longitude": "124.73722000" + }, + { + "id": "84174", + "name": "President Roxas", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.15444000", + "longitude": "125.05583000" + }, + { + "id": "84203", + "name": "Province of Cotabato", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.01667000", + "longitude": "125.08333000" + }, + { + "id": "84239", + "name": "Province of Sarangani", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.87472000", + "longitude": "125.27528000" + }, + { + "id": "84242", + "name": "Province of South Cotabato", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.25218000", + "longitude": "125.00060000" + }, + { + "id": "84244", + "name": "Province of Sultan Kudarat", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.55000000", + "longitude": "124.28333000" + }, + { + "id": "84269", + "name": "Puloypuloy", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.63517000", + "longitude": "124.09600000" + }, + { + "id": "84278", + "name": "Punolu", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.05000000", + "longitude": "124.58333000" + }, + { + "id": "84285", + "name": "Puricay", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.68614000", + "longitude": "124.06957000" + }, + { + "id": "84319", + "name": "Ragandang", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.66386000", + "longitude": "124.12063000" + }, + { + "id": "84351", + "name": "Rogongon", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "8.23333000", + "longitude": "124.33333000" + }, + { + "id": "84360", + "name": "Rotonda", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.49179000", + "longitude": "124.88616000" + }, + { + "id": "84378", + "name": "Sadsalan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.82906000", + "longitude": "124.60893000" + }, + { + "id": "84396", + "name": "Saguing", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.98028000", + "longitude": "125.07806000" + }, + { + "id": "84410", + "name": "Salimbao", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.22250000", + "longitude": "124.25333000" + }, + { + "id": "84416", + "name": "Salunayan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.15444000", + "longitude": "124.49750000" + }, + { + "id": "84423", + "name": "Salvador", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.89528000", + "longitude": "123.84361000" + }, + { + "id": "84433", + "name": "Sampao", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.87667000", + "longitude": "124.59556000" + }, + { + "id": "84557", + "name": "San Miguel", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.49245000", + "longitude": "124.69643000" + }, + { + "id": "84618", + "name": "San Vicente", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.45375000", + "longitude": "124.78005000" + }, + { + "id": "84633", + "name": "Sangay", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.44500000", + "longitude": "124.04444000" + }, + { + "id": "84723", + "name": "Santo Niño", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.43500000", + "longitude": "124.69750000" + }, + { + "id": "84740", + "name": "Sapad", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.85000000", + "longitude": "123.83333000" + }, + { + "id": "84747", + "name": "Sapu Padidu", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.91722000", + "longitude": "125.26694000" + }, + { + "id": "84798", + "name": "Silway 7", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.17711000", + "longitude": "125.12068000" + }, + { + "id": "84818", + "name": "Sinolon", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.24389000", + "longitude": "124.81444000" + }, + { + "id": "84869", + "name": "Sulit", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.23611000", + "longitude": "125.02056000" + }, + { + "id": "84881", + "name": "Surallah", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.37527000", + "longitude": "124.74521000" + }, + { + "id": "84885", + "name": "Suyan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.06028000", + "longitude": "125.38528000" + }, + { + "id": "85084", + "name": "Tañgo", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.88083000", + "longitude": "125.22194000" + }, + { + "id": "84923", + "name": "Tacurong", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.69250000", + "longitude": "124.67639000" + }, + { + "id": "84950", + "name": "Taguisa", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.69833000", + "longitude": "124.03583000" + }, + { + "id": "85001", + "name": "Taluya", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.81167000", + "longitude": "125.17278000" + }, + { + "id": "85005", + "name": "Tambak", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.72532000", + "longitude": "124.62342000" + }, + { + "id": "85008", + "name": "Tambilil", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.96222000", + "longitude": "124.66972000" + }, + { + "id": "85018", + "name": "Tamnag", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.57298000", + "longitude": "124.88004000" + }, + { + "id": "85019", + "name": "Tamontaka", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.18056000", + "longitude": "124.22556000" + }, + { + "id": "85021", + "name": "Tampakan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.49034000", + "longitude": "125.08275000" + }, + { + "id": "85042", + "name": "Tantangan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.61500000", + "longitude": "124.74889000" + }, + { + "id": "85087", + "name": "Telafas", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.62980000", + "longitude": "124.97294000" + }, + { + "id": "85090", + "name": "Teresita", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.41434000", + "longitude": "124.70778000" + }, + { + "id": "85125", + "name": "Tinagacan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.19917000", + "longitude": "125.22944000" + }, + { + "id": "85140", + "name": "Tinoto", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "5.88667000", + "longitude": "125.07056000" + }, + { + "id": "85160", + "name": "Tomado", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.19250000", + "longitude": "124.60806000" + }, + { + "id": "85175", + "name": "Tran", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.72028000", + "longitude": "124.05500000" + }, + { + "id": "85214", + "name": "Tuka", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.51862000", + "longitude": "124.58736000" + }, + { + "id": "85218", + "name": "Tulunan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.83444000", + "longitude": "124.87694000" + }, + { + "id": "85232", + "name": "Tupi", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.33444000", + "longitude": "124.95278000" + }, + { + "id": "85237", + "name": "Tuyan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.00000000", + "longitude": "125.28333000" + }, + { + "id": "85265", + "name": "Upper Klinan", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.22722000", + "longitude": "125.12083000" + }, + { + "id": "85266", + "name": "Upper San Mateo", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "7.17306000", + "longitude": "124.58222000" + }, + { + "id": "85296", + "name": "Villamor", + "state_id": 1310, + "state_code": "12", + "country_id": 174, + "country_code": "PH", + "latitude": "6.70380000", + "longitude": "124.52009000" + }, + { + "id": "81213", + "name": "Alicia", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.51389000", + "longitude": "122.93000000" + }, + { + "id": "81335", + "name": "Aurora", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.95060000", + "longitude": "123.58260000" + }, + { + "id": "81433", + "name": "Balagon", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.00630000", + "longitude": "123.23960000" + }, + { + "id": "81572", + "name": "Barcelona", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.52750000", + "longitude": "123.45870000" + }, + { + "id": "81635", + "name": "Batu", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.75333000", + "longitude": "122.82944000" + }, + { + "id": "81666", + "name": "Bayog", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.86667000", + "longitude": "123.06667000" + }, + { + "id": "81732", + "name": "Binuatan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.61222000", + "longitude": "123.34417000" + }, + { + "id": "81781", + "name": "Bolong", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.09833000", + "longitude": "122.23917000" + }, + { + "id": "81832", + "name": "Buenavista", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.23611000", + "longitude": "122.25528000" + }, + { + "id": "81899", + "name": "Bunguiao", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.10444000", + "longitude": "122.19639000" + }, + { + "id": "81928", + "name": "Buug", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.72940000", + "longitude": "123.05980000" + }, + { + "id": "81943", + "name": "Cabaluay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.00139000", + "longitude": "122.18028000" + }, + { + "id": "82010", + "name": "Calabasa", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.24639000", + "longitude": "122.23417000" + }, + { + "id": "82147", + "name": "Caracal", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.12722000", + "longitude": "122.84500000" + }, + { + "id": "82314", + "name": "Culianan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.98028000", + "longitude": "122.14667000" + }, + { + "id": "82322", + "name": "Curuan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.20528000", + "longitude": "122.23306000" + }, + { + "id": "82344", + "name": "Dalangin", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.85056000", + "longitude": "122.57833000" + }, + { + "id": "82371", + "name": "Danlugan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.89139000", + "longitude": "123.37278000" + }, + { + "id": "82381", + "name": "Dapitan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.65610000", + "longitude": "123.42270000" + }, + { + "id": "82398", + "name": "Dawa-Dawa", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.46833000", + "longitude": "122.83694000" + }, + { + "id": "82408", + "name": "Del Monte", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.72583000", + "longitude": "123.00806000" + }, + { + "id": "82420", + "name": "Dicayong", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.22060000", + "longitude": "123.03380000" + }, + { + "id": "82430", + "name": "Dimataling", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.53440000", + "longitude": "123.37380000" + }, + { + "id": "82442", + "name": "Diplahan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.71667000", + "longitude": "123.01667000" + }, + { + "id": "82443", + "name": "Dipolo", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.78280000", + "longitude": "123.11580000" + }, + { + "id": "82444", + "name": "Dipolog", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.56697000", + "longitude": "123.33471000" + }, + { + "id": "82445", + "name": "Disod", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.26110000", + "longitude": "123.01690000" + }, + { + "id": "82478", + "name": "Dulian", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.12139000", + "longitude": "122.17889000" + }, + { + "id": "82485", + "name": "Dumalinao", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.81910000", + "longitude": "123.36940000" + }, + { + "id": "82492", + "name": "Dumingag", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.16917000", + "longitude": "123.35056000" + }, + { + "id": "82498", + "name": "East Migpulao", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.63250000", + "longitude": "123.35917000" + }, + { + "id": "82566", + "name": "Ganyangan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.67889000", + "longitude": "122.90944000" + }, + { + "id": "82615", + "name": "Gubaan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.97480000", + "longitude": "123.56400000" + }, + { + "id": "82634", + "name": "Guiniculalay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.65611000", + "longitude": "123.39139000" + }, + { + "id": "82644", + "name": "Guipos", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.71610000", + "longitude": "123.32190000" + }, + { + "id": "82660", + "name": "Gutalac", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.98250000", + "longitude": "122.40472000" + }, + { + "id": "82726", + "name": "Ilaya", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.54590000", + "longitude": "123.43080000" + }, + { + "id": "82756", + "name": "Ipil", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.78444000", + "longitude": "122.58611000" + }, + { + "id": "82763", + "name": "Irasan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.52600000", + "longitude": "123.20600000" + }, + { + "id": "82813", + "name": "Josefina", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.20000000", + "longitude": "123.53333000" + }, + { + "id": "82826", + "name": "Kabasalan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.79722000", + "longitude": "122.76500000" + }, + { + "id": "82835", + "name": "Kagawasan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.86611000", + "longitude": "123.39500000" + }, + { + "id": "82844", + "name": "Kalawit", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.06667000", + "longitude": "122.51667000" + }, + { + "id": "82849", + "name": "Kalian", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.59160000", + "longitude": "123.23190000" + }, + { + "id": "82879", + "name": "Katipunan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.58250000", + "longitude": "122.83056000" + }, + { + "id": "82887", + "name": "Kawayan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.53833000", + "longitude": "122.87250000" + }, + { + "id": "82912", + "name": "Kipit", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.04611000", + "longitude": "122.53222000" + }, + { + "id": "82933", + "name": "Kumalarang", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.74780000", + "longitude": "123.14450000" + }, + { + "id": "82939", + "name": "La Dicha", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.67600000", + "longitude": "123.00230000" + }, + { + "id": "82956", + "name": "Labangan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.86540000", + "longitude": "123.51230000" + }, + { + "id": "82958", + "name": "Labason", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.06917000", + "longitude": "122.52167000" + }, + { + "id": "82966", + "name": "Labuan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.09972000", + "longitude": "121.90417000" + }, + { + "id": "83001", + "name": "Lamisahan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.07083000", + "longitude": "122.15833000" + }, + { + "id": "83011", + "name": "Landang Laum", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.96889000", + "longitude": "122.24917000" + }, + { + "id": "83012", + "name": "Langatian", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.52080000", + "longitude": "123.23240000" + }, + { + "id": "83029", + "name": "Laparay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.40361000", + "longitude": "122.81722000" + }, + { + "id": "83039", + "name": "Lapuyan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.63790000", + "longitude": "123.19440000" + }, + { + "id": "83062", + "name": "Legrada", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.63330000", + "longitude": "123.30450000" + }, + { + "id": "83067", + "name": "Leon Postigo", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.15510000", + "longitude": "122.93110000" + }, + { + "id": "83113", + "name": "Liloy", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.11444000", + "longitude": "122.65944000" + }, + { + "id": "83117", + "name": "Limaong", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.36056000", + "longitude": "122.36639000" + }, + { + "id": "83126", + "name": "Limpapa", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.11972000", + "longitude": "121.91056000" + }, + { + "id": "83136", + "name": "Linay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.51667000", + "longitude": "123.13333000" + }, + { + "id": "83137", + "name": "Lingasan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.49660000", + "longitude": "123.39970000" + }, + { + "id": "83144", + "name": "Lintangan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.21554000", + "longitude": "121.95200000" + }, + { + "id": "83220", + "name": "Lumbayan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.94722000", + "longitude": "122.14111000" + }, + { + "id": "83224", + "name": "Lumbog", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.55810000", + "longitude": "123.20140000" + }, + { + "id": "83288", + "name": "Mabuhay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.41778000", + "longitude": "122.83667000" + }, + { + "id": "83360", + "name": "Mahayag", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.11830000", + "longitude": "123.44550000" + }, + { + "id": "83404", + "name": "Malangas", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.63028000", + "longitude": "123.03167000" + }, + { + "id": "83417", + "name": "Malayal", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.20801000", + "longitude": "121.94204000" + }, + { + "id": "83432", + "name": "Malim", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.45200000", + "longitude": "123.43120000" + }, + { + "id": "83505", + "name": "Mandih", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.20870000", + "longitude": "123.01410000" + }, + { + "id": "83519", + "name": "Mangusu", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.32556000", + "longitude": "122.27750000" + }, + { + "id": "83521", + "name": "Manicahan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.01944000", + "longitude": "122.20111000" + }, + { + "id": "83545", + "name": "Manukan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53333000", + "longitude": "123.10000000" + }, + { + "id": "83572", + "name": "Margos", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.93200000", + "longitude": "123.65900000" + }, + { + "id": "83573", + "name": "Margosatubig", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.57770000", + "longitude": "123.16580000" + }, + { + "id": "83661", + "name": "Mercedes", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.95861000", + "longitude": "122.14833000" + }, + { + "id": "83669", + "name": "Midsalip", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.00000000", + "longitude": "123.26667000" + }, + { + "id": "83695", + "name": "Molave", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.08440000", + "longitude": "123.49100000" + }, + { + "id": "83700", + "name": "Monching", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.71583000", + "longitude": "122.86639000" + }, + { + "id": "83727", + "name": "Muricay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.82750000", + "longitude": "123.47820000" + }, + { + "id": "83728", + "name": "Muti", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.27583000", + "longitude": "122.28000000" + }, + { + "id": "83742", + "name": "Naga", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.77028000", + "longitude": "122.75083000" + }, + { + "id": "83851", + "name": "Olingan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53810000", + "longitude": "123.32160000" + }, + { + "id": "83853", + "name": "Olutanga", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.31056000", + "longitude": "122.84639000" + }, + { + "id": "83887", + "name": "Pagadian", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.82570000", + "longitude": "123.43700000" + }, + { + "id": "83928", + "name": "Palomoc", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.91530000", + "longitude": "122.58290000" + }, + { + "id": "84006", + "name": "Panubigan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.42810000", + "longitude": "123.34660000" + }, + { + "id": "84040", + "name": "Patawag", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.10639000", + "longitude": "122.62083000" + }, + { + "id": "84066", + "name": "Payao", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.58667000", + "longitude": "122.80278000" + }, + { + "id": "84123", + "name": "Pitogo", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.45460000", + "longitude": "123.31110000" + }, + { + "id": "84142", + "name": "Polanco", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.53290000", + "longitude": "123.36170000" + }, + { + "id": "84159", + "name": "Ponot", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.45200000", + "longitude": "123.02220000" + }, + { + "id": "84180", + "name": "Province of Zamboanga del Sur", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.90430000", + "longitude": "123.31940000" + }, + { + "id": "84252", + "name": "Province of Zamboanga del Norte", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.00000000", + "longitude": "122.66667000" + }, + { + "id": "84251", + "name": "Province of Zamboanga Sibugay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.76270000", + "longitude": "122.54356000" + }, + { + "id": "84310", + "name": "Quinipot", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.18028000", + "longitude": "122.22028000" + }, + { + "id": "84324", + "name": "Ramon Magsaysay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.00194000", + "longitude": "123.50944000" + }, + { + "id": "84328", + "name": "Rancheria Payau", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.85410000", + "longitude": "123.15980000" + }, + { + "id": "84334", + "name": "Recodo", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.95194000", + "longitude": "121.96361000" + }, + { + "id": "84349", + "name": "Robonkon", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.75350000", + "longitude": "123.41870000" + }, + { + "id": "84379", + "name": "Sagacad", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.68611000", + "longitude": "123.34056000" + }, + { + "id": "84415", + "name": "Salug", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.11472000", + "longitude": "122.78333000" + }, + { + "id": "84563", + "name": "San Miguel", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.64833000", + "longitude": "123.26750000" + }, + { + "id": "84576", + "name": "San Pablo", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.65639000", + "longitude": "123.46083000" + }, + { + "id": "84631", + "name": "Sangali", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.06944000", + "longitude": "122.20139000" + }, + { + "id": "84759", + "name": "Seres", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.48030000", + "longitude": "123.26290000" + }, + { + "id": "84760", + "name": "Sergio Osmeña Sr", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.16667000", + "longitude": "123.50000000" + }, + { + "id": "84763", + "name": "Siari", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.32450000", + "longitude": "122.98810000" + }, + { + "id": "84766", + "name": "Siay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.69611000", + "longitude": "122.86306000" + }, + { + "id": "84767", + "name": "Siayan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.26667000", + "longitude": "123.10000000" + }, + { + "id": "84773", + "name": "Sibuco", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.29111000", + "longitude": "122.06556000" + }, + { + "id": "84778", + "name": "Sibulao", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.32417000", + "longitude": "122.23944000" + }, + { + "id": "84779", + "name": "Sibutao", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.59160000", + "longitude": "123.48590000" + }, + { + "id": "84813", + "name": "Sindangan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.23760000", + "longitude": "122.99740000" + }, + { + "id": "84821", + "name": "Sinubong", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.02806000", + "longitude": "121.92528000" + }, + { + "id": "84823", + "name": "Siocon", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.70611000", + "longitude": "122.13528000" + }, + { + "id": "84828", + "name": "Siraway", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.58528000", + "longitude": "122.13972000" + }, + { + "id": "84876", + "name": "Sumalig", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.99860000", + "longitude": "123.66270000" + }, + { + "id": "84896", + "name": "Tabina", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.46690000", + "longitude": "123.40810000" + }, + { + "id": "84931", + "name": "Tagasilay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.30250000", + "longitude": "122.25861000" + }, + { + "id": "84951", + "name": "Taguitic", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.93870000", + "longitude": "123.63120000" + }, + { + "id": "84959", + "name": "Talabaan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.94111000", + "longitude": "122.17222000" + }, + { + "id": "84986", + "name": "Talisayan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.98722000", + "longitude": "121.92722000" + }, + { + "id": "84999", + "name": "Taluksangay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.95417000", + "longitude": "122.18389000" + }, + { + "id": "85000", + "name": "Talusan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.42667000", + "longitude": "122.81028000" + }, + { + "id": "85014", + "name": "Tambulig", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.07020000", + "longitude": "123.53480000" + }, + { + "id": "85025", + "name": "Tampilisan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.01667000", + "longitude": "122.68333000" + }, + { + "id": "85065", + "name": "Tawagan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.84500000", + "longitude": "123.47528000" + }, + { + "id": "85103", + "name": "Tigbao", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.42833000", + "longitude": "122.32750000" + }, + { + "id": "85111", + "name": "Tigpalay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.49479000", + "longitude": "122.34496000" + }, + { + "id": "85112", + "name": "Tigtabon", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.89556000", + "longitude": "122.16694000" + }, + { + "id": "85113", + "name": "Tiguha", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.70444000", + "longitude": "123.21139000" + }, + { + "id": "85122", + "name": "Timonan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.21170000", + "longitude": "123.06820000" + }, + { + "id": "85143", + "name": "Tiparak", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "8.03410000", + "longitude": "123.52880000" + }, + { + "id": "85148", + "name": "Titay", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.81250000", + "longitude": "122.53444000" + }, + { + "id": "85159", + "name": "Tolosa", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.03222000", + "longitude": "122.16139000" + }, + { + "id": "85202", + "name": "Tucuran", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.85240000", + "longitude": "123.57430000" + }, + { + "id": "85227", + "name": "Tungawan", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.50806000", + "longitude": "122.37111000" + }, + { + "id": "85308", + "name": "Vitali", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "7.37111000", + "longitude": "122.28861000" + }, + { + "id": "85324", + "name": "Zamboanga", + "state_id": 1362, + "state_code": "ZSI", + "country_id": 174, + "country_code": "PH", + "latitude": "6.91028000", + "longitude": "122.07389000" + }, + { + "id": "88759", + "name": "Łagów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.77517000", + "longitude": "21.08431000" + }, + { + "id": "88814", + "name": "Łączna", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.00231000", + "longitude": "20.79712000" + }, + { + "id": "88787", + "name": "Łoniów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.56443000", + "longitude": "21.52599000" + }, + { + "id": "88791", + "name": "Łopuszno", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.94864000", + "longitude": "20.25081000" + }, + { + "id": "88798", + "name": "Łubnice", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.41164000", + "longitude": "21.15014000" + }, + { + "id": "88754", + "name": "Ćmielów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.89028000", + "longitude": "21.51426000" + }, + { + "id": "85820", + "name": "Bałtów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01845000", + "longitude": "21.54385000" + }, + { + "id": "85819", + "name": "Baćkowice", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.79194000", + "longitude": "21.23211000" + }, + { + "id": "85823", + "name": "Bejsce", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.23903000", + "longitude": "20.59834000" + }, + { + "id": "85858", + "name": "Bieliny", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84947000", + "longitude": "20.94149000" + }, + { + "id": "85883", + "name": "Bliżyn", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.10778000", + "longitude": "20.75935000" + }, + { + "id": "85894", + "name": "Bodzentyn", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.94115000", + "longitude": "20.95719000" + }, + { + "id": "85897", + "name": "Bogoria", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.65175000", + "longitude": "21.26000000" + }, + { + "id": "85945", + "name": "Brody", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.02466000", + "longitude": "21.22147000" + }, + { + "id": "85963", + "name": "Brzeziny", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.77273000", + "longitude": "20.57319000" + }, + { + "id": "85996", + "name": "Busko-Zdrój", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.47078000", + "longitude": "20.71884000" + }, + { + "id": "86073", + "name": "Chęciny", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80021000", + "longitude": "20.46229000" + }, + { + "id": "86034", + "name": "Chmielnik", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.61440000", + "longitude": "20.75206000" + }, + { + "id": "86113", + "name": "Czarnocin", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.34080000", + "longitude": "20.51620000" + }, + { + "id": "86154", + "name": "Daleszyce", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80229000", + "longitude": "20.80791000" + }, + { + "id": "86186", + "name": "Domaszowice", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.87488000", + "longitude": "20.68288000" + }, + { + "id": "86210", + "name": "Dwikozy", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.73613000", + "longitude": "21.78864000" + }, + { + "id": "86217", + "name": "Działoszyce", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.36534000", + "longitude": "20.35226000" + }, + { + "id": "86268", + "name": "Fałków", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13606000", + "longitude": "20.10610000" + }, + { + "id": "86415", + "name": "Górno", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84774000", + "longitude": "20.82501000" + }, + { + "id": "86316", + "name": "Gnojno", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.60263000", + "longitude": "20.84913000" + }, + { + "id": "86350", + "name": "Gowarczów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.27845000", + "longitude": "20.43835000" + }, + { + "id": "86396", + "name": "Grzybowa Góra", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13326000", + "longitude": "20.96174000" + }, + { + "id": "86458", + "name": "Imielno", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.58569000", + "longitude": "20.44813000" + }, + { + "id": "86463", + "name": "Iwaniska", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.73146000", + "longitude": "21.28060000" + }, + { + "id": "86578", + "name": "Jędrzejów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.63945000", + "longitude": "20.30454000" + }, + { + "id": "86607", + "name": "Kaniów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.98577000", + "longitude": "20.66391000" + }, + { + "id": "86627", + "name": "Kazimierza Wielka", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.26564000", + "longitude": "20.49358000" + }, + { + "id": "86633", + "name": "Kielce", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.87033000", + "longitude": "20.62752000" + }, + { + "id": "86638", + "name": "Kije", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.60721000", + "longitude": "20.57121000" + }, + { + "id": "86650", + "name": "Klimontów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.65588000", + "longitude": "21.45587000" + }, + { + "id": "86750", + "name": "Końskie", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.19166000", + "longitude": "20.40607000" + }, + { + "id": "86699", + "name": "Koprzywnica", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.59340000", + "longitude": "21.58380000" + }, + { + "id": "86712", + "name": "Kostomłoty Drugie", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.92684000", + "longitude": "20.56529000" + }, + { + "id": "86713", + "name": "Kostomłoty Pierwsze", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.92322000", + "longitude": "20.59490000" + }, + { + "id": "86774", + "name": "Krasocin", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.88874000", + "longitude": "20.11863000" + }, + { + "id": "86839", + "name": "Kunów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.96156000", + "longitude": "21.28058000" + }, + { + "id": "86916", + "name": "Lipnik", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72977000", + "longitude": "21.49389000" + }, + { + "id": "87008", + "name": "Małogoszcz", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.81214000", + "longitude": "20.26407000" + }, + { + "id": "87003", + "name": "Masłów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.90065000", + "longitude": "20.72322000" + }, + { + "id": "87023", + "name": "Michałów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.49541000", + "longitude": "20.46178000" + }, + { + "id": "87028", + "name": "Miedziana Góra", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.93680000", + "longitude": "20.55096000" + }, + { + "id": "87057", + "name": "Mirzec", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13466000", + "longitude": "21.05710000" + }, + { + "id": "87079", + "name": "Mniów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01224000", + "longitude": "20.48427000" + }, + { + "id": "87090", + "name": "Morawica", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.74678000", + "longitude": "20.61756000" + }, + { + "id": "87132", + "name": "Nagłowice", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67835000", + "longitude": "20.10661000" + }, + { + "id": "87176", + "name": "Nowa Słupia", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.86432000", + "longitude": "21.09049000" + }, + { + "id": "87204", + "name": "Nowy Korczyn", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.30124000", + "longitude": "20.80759000" + }, + { + "id": "87327", + "name": "Ożarów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.88798000", + "longitude": "21.66658000" + }, + { + "id": "87218", + "name": "Obrazów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69276000", + "longitude": "21.65045000" + }, + { + "id": "87235", + "name": "Oksa", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72874000", + "longitude": "20.10086000" + }, + { + "id": "87240", + "name": "Oleśnica", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.45357000", + "longitude": "21.06457000" + }, + { + "id": "87256", + "name": "Opatów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80058000", + "longitude": "21.42538000" + }, + { + "id": "87255", + "name": "Opatowiec", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24314000", + "longitude": "20.72348000" + }, + { + "id": "87282", + "name": "Osiedle-Nowiny", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.81770000", + "longitude": "20.54117000" + }, + { + "id": "87283", + "name": "Osiek", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.51996000", + "longitude": "21.44192000" + }, + { + "id": "87299", + "name": "Ostrowiec Świętokrzyski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.92936000", + "longitude": "21.38525000" + }, + { + "id": "87331", + "name": "Pacanów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.40031000", + "longitude": "21.04148000" + }, + { + "id": "87360", + "name": "Pawłów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.96216000", + "longitude": "21.12062000" + }, + { + "id": "87405", + "name": "Pińczów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.52052000", + "longitude": "20.52649000" + }, + { + "id": "87378", + "name": "Piekoszów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.88035000", + "longitude": "20.46418000" + }, + { + "id": "87381", + "name": "Pierzchnica", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69754000", + "longitude": "20.75489000" + }, + { + "id": "87776", + "name": "Połaniec", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.43324000", + "longitude": "21.28120000" + }, + { + "id": "87478", + "name": "Powiat buski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.45583000", + "longitude": "20.87624000" + }, + { + "id": "87532", + "name": "Powiat jędrzejowski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.65676000", + "longitude": "20.18655000" + }, + { + "id": "87537", + "name": "Powiat kazimierski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28811000", + "longitude": "20.53368000" + }, + { + "id": "87538", + "name": "Powiat kielecki", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80156000", + "longitude": "20.63322000" + }, + { + "id": "87543", + "name": "Powiat konecki", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.15145000", + "longitude": "20.34186000" + }, + { + "id": "87615", + "name": "Powiat opatowski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.79639000", + "longitude": "21.44531000" + }, + { + "id": "87619", + "name": "Powiat ostrowiecki", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.94232000", + "longitude": "21.40739000" + }, + { + "id": "87635", + "name": "Powiat pińczowski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.49968000", + "longitude": "20.47253000" + }, + { + "id": "87667", + "name": "Powiat sandomierski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69508000", + "longitude": "21.60900000" + }, + { + "id": "87674", + "name": "Powiat skarżyski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.06496000", + "longitude": "20.79228000" + }, + { + "id": "87680", + "name": "Powiat starachowicki", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.05365000", + "longitude": "21.14295000" + }, + { + "id": "87683", + "name": "Powiat staszowski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.51737000", + "longitude": "21.19594000" + }, + { + "id": "87735", + "name": "Powiat włoszczowski", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.83205000", + "longitude": "19.97696000" + }, + { + "id": "87890", + "name": "Radoszyce", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07392000", + "longitude": "20.25836000" + }, + { + "id": "87911", + "name": "Raków", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67427000", + "longitude": "21.04517000" + }, + { + "id": "87947", + "name": "Rogów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.20414000", + "longitude": "20.43483000" + }, + { + "id": "87970", + "name": "Ruda Maleniecka", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14592000", + "longitude": "20.22377000" + }, + { + "id": "88014", + "name": "Rytwiany", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.52920000", + "longitude": "21.20636000" + }, + { + "id": "88043", + "name": "Sadowie", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.85261000", + "longitude": "21.36884000" + }, + { + "id": "88045", + "name": "Samborzec", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.64663000", + "longitude": "21.64822000" + }, + { + "id": "88046", + "name": "Sandomierz", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.68265000", + "longitude": "21.74898000" + }, + { + "id": "88348", + "name": "Słupia", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.60073000", + "longitude": "19.97435000" + }, + { + "id": "88328", + "name": "Sędziszów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.56590000", + "longitude": "20.05563000" + }, + { + "id": "88054", + "name": "Secemin", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.76676000", + "longitude": "19.83599000" + }, + { + "id": "88095", + "name": "Skalbmierz", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31993000", + "longitude": "20.39929000" + }, + { + "id": "88100", + "name": "Skarżysko Kościelne", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13822000", + "longitude": "20.91196000" + }, + { + "id": "88101", + "name": "Skarżysko-Kamienna", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11311000", + "longitude": "20.87162000" + }, + { + "id": "88127", + "name": "Smyków", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04442000", + "longitude": "20.40032000" + }, + { + "id": "88131", + "name": "Sobków", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69999000", + "longitude": "20.45062000" + }, + { + "id": "88144", + "name": "Solec-Zdrój", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.36594000", + "longitude": "20.88956000" + }, + { + "id": "88179", + "name": "Starachowice", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.03740000", + "longitude": "21.07126000" + }, + { + "id": "88198", + "name": "Staszów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.56307000", + "longitude": "21.16593000" + }, + { + "id": "88242", + "name": "Stąporków", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13762000", + "longitude": "20.57173000" + }, + { + "id": "88207", + "name": "Stopnica", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44018000", + "longitude": "20.93780000" + }, + { + "id": "88214", + "name": "Strawczyn", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.94177000", + "longitude": "20.42135000" + }, + { + "id": "88250", + "name": "Suchedniów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04776000", + "longitude": "20.82922000" + }, + { + "id": "88322", + "name": "Szydłów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.59114000", + "longitude": "21.00680000" + }, + { + "id": "88368", + "name": "Tarłów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.00160000", + "longitude": "21.71474000" + }, + { + "id": "88421", + "name": "Tuczępy", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.51676000", + "longitude": "20.99187000" + }, + { + "id": "88489", + "name": "Waśniów", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.89914000", + "longitude": "21.22301000" + }, + { + "id": "88654", + "name": "Włoszczowa", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.85256000", + "longitude": "19.96593000" + }, + { + "id": "88632", + "name": "Wąchock", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07391000", + "longitude": "21.01243000" + }, + { + "id": "88560", + "name": "Wiślica", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.34891000", + "longitude": "20.67438000" + }, + { + "id": "88506", + "name": "Wielka Wieś", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07107000", + "longitude": "20.96655000" + }, + { + "id": "88534", + "name": "Wilczyce", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.74694000", + "longitude": "21.65783000" + }, + { + "id": "88568", + "name": "Wodzisław", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.52047000", + "longitude": "20.19150000" + }, + { + "id": "88572", + "name": "Wojciechowice", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84226000", + "longitude": "21.58942000" + }, + { + "id": "88585", + "name": "Wola Jachowa", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84524000", + "longitude": "20.85814000" + }, + { + "id": "88666", + "name": "Zagnańsk", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.98037000", + "longitude": "20.66314000" + }, + { + "id": "88702", + "name": "Zawichost", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80743000", + "longitude": "21.85408000" + }, + { + "id": "88744", + "name": "Złota", + "state_id": 1630, + "state_code": "SK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38160000", + "longitude": "20.59361000" + }, + { + "id": "85780", + "name": "Aleksandrów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.27126000", + "longitude": "19.99005000" + }, + { + "id": "85782", + "name": "Aleksandrów Łódzki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.81965000", + "longitude": "19.30384000" + }, + { + "id": "85784", + "name": "Andrespol", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.72783000", + "longitude": "19.64175000" + }, + { + "id": "88860", + "name": "Świnice Warckie", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.04072000", + "longitude": "18.91786000" + }, + { + "id": "88764", + "name": "Łanięta", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.36203000", + "longitude": "19.28032000" + }, + { + "id": "88770", + "name": "Łask", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59056000", + "longitude": "19.13278000" + }, + { + "id": "88810", + "name": "Łódź", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.77058000", + "longitude": "19.47395000" + }, + { + "id": "88817", + "name": "Łęczyca", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.05959000", + "longitude": "19.19972000" + }, + { + "id": "88825", + "name": "Łęki Szlacheckie", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.18774000", + "longitude": "19.79796000" + }, + { + "id": "88795", + "name": "Łowicz", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10714000", + "longitude": "19.94525000" + }, + { + "id": "88799", + "name": "Łubnice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16406000", + "longitude": "18.29069000" + }, + { + "id": "88809", + "name": "Łyszkowice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.98551000", + "longitude": "19.90654000" + }, + { + "id": "88876", + "name": "Żarnów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.24607000", + "longitude": "20.17476000" + }, + { + "id": "88881", + "name": "Żelechlinek", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.71214000", + "longitude": "20.03460000" + }, + { + "id": "88897", + "name": "Żychlin", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24404000", + "longitude": "19.62613000" + }, + { + "id": "86014", + "name": "Błaszki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.65163000", + "longitude": "18.43472000" + }, + { + "id": "86012", + "name": "Będków", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.58763000", + "longitude": "19.74956000" + }, + { + "id": "85828", + "name": "Bełchatów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.36883000", + "longitude": "19.35671000" + }, + { + "id": "85822", + "name": "Bedlno", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.20829000", + "longitude": "19.57592000" + }, + { + "id": "85837", + "name": "Biała Rawska", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.80779000", + "longitude": "20.47259000" + }, + { + "id": "85838", + "name": "Białaczów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.29815000", + "longitude": "20.29724000" + }, + { + "id": "85855", + "name": "Bielawy", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.07539000", + "longitude": "19.65557000" + }, + { + "id": "85888", + "name": "Bobrowniki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06442000", + "longitude": "20.01949000" + }, + { + "id": "85912", + "name": "Bolesławiec", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.19866000", + "longitude": "18.19147000" + }, + { + "id": "85913", + "name": "Bolimów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.07671000", + "longitude": "20.16352000" + }, + { + "id": "85978", + "name": "Brójce", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.66436000", + "longitude": "19.64802000" + }, + { + "id": "85980", + "name": "Brąszewice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.49902000", + "longitude": "18.44982000" + }, + { + "id": "85969", + "name": "Brzeźnio", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.49400000", + "longitude": "18.62234000" + }, + { + "id": "85964", + "name": "Brzeziny", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.80023000", + "longitude": "19.75144000" + }, + { + "id": "85981", + "name": "Buczek", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50228000", + "longitude": "19.16419000" + }, + { + "id": "85983", + "name": "Budziszewice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.66739000", + "longitude": "19.93581000" + }, + { + "id": "85995", + "name": "Burzenin", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.46077000", + "longitude": "18.83233000" + }, + { + "id": "86072", + "name": "Chąśno", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19535000", + "longitude": "19.94259000" + }, + { + "id": "86082", + "name": "Cielądz", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.71576000", + "longitude": "20.34428000" + }, + { + "id": "86116", + "name": "Czarnożyły", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.28533000", + "longitude": "18.56106000" + }, + { + "id": "86114", + "name": "Czarnocin", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59142000", + "longitude": "19.68158000" + }, + { + "id": "86119", + "name": "Czastary", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.25869000", + "longitude": "18.31953000" + }, + { + "id": "86135", + "name": "Czerniewice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.65419000", + "longitude": "20.15553000" + }, + { + "id": "86155", + "name": "Dalików", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.88476000", + "longitude": "19.11904000" + }, + { + "id": "86160", + "name": "Daszyna", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.15503000", + "longitude": "19.18153000" + }, + { + "id": "86262", + "name": "Dłutów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.55936000", + "longitude": "19.39198000" + }, + { + "id": "86243", + "name": "Dąbrowice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31142000", + "longitude": "19.08437000" + }, + { + "id": "86163", + "name": "Dmosin", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.92437000", + "longitude": "19.75934000" + }, + { + "id": "86175", + "name": "Dobroń", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63885000", + "longitude": "19.24539000" + }, + { + "id": "86184", + "name": "Domaniewice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.00623000", + "longitude": "19.80294000" + }, + { + "id": "86201", + "name": "Drużbice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.46369000", + "longitude": "19.39404000" + }, + { + "id": "86202", + "name": "Drzewica", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.45085000", + "longitude": "20.47701000" + }, + { + "id": "86218", + "name": "Działoszyn", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11699000", + "longitude": "18.86524000" + }, + { + "id": "86290", + "name": "Gałków Mały", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.72554000", + "longitude": "19.71359000" + }, + { + "id": "86280", + "name": "Galewice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.34471000", + "longitude": "18.25756000" + }, + { + "id": "86411", + "name": "Góra Świętej Małgorzaty", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.05713000", + "longitude": "19.31997000" + }, + { + "id": "86430", + "name": "Głowno", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.96463000", + "longitude": "19.71565000" + }, + { + "id": "86434", + "name": "Głuchów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.77947000", + "longitude": "20.07666000" + }, + { + "id": "86294", + "name": "Gidle", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "50.96199000", + "longitude": "19.47181000" + }, + { + "id": "86318", + "name": "Godzianów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.89694000", + "longitude": "20.03589000" + }, + { + "id": "86330", + "name": "Gomunice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16890000", + "longitude": "19.49335000" + }, + { + "id": "86336", + "name": "Gorzkowice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.21533000", + "longitude": "19.59626000" + }, + { + "id": "86348", + "name": "Goszczanów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.79163000", + "longitude": "18.50570000" + }, + { + "id": "86368", + "name": "Grabów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.12717000", + "longitude": "19.00257000" + }, + { + "id": "86362", + "name": "Grabica", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.47989000", + "longitude": "19.53137000" + }, + { + "id": "86460", + "name": "Inowłódz", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.52717000", + "longitude": "20.22300000" + }, + { + "id": "86560", + "name": "Jeżów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.81376000", + "longitude": "19.96877000" + }, + { + "id": "86602", + "name": "Kamieńsk", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.20242000", + "longitude": "19.49661000" + }, + { + "id": "86623", + "name": "Kawęczyn Nowy", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.88597000", + "longitude": "20.24703000" + }, + { + "id": "86634", + "name": "Kiernozia", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26858000", + "longitude": "19.87092000" + }, + { + "id": "86648", + "name": "Kleszczów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.22355000", + "longitude": "19.30418000" + }, + { + "id": "86652", + "name": "Klonowa", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.41928000", + "longitude": "18.41815000" + }, + { + "id": "86655", + "name": "Kluki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.34187000", + "longitude": "19.23938000" + }, + { + "id": "86671", + "name": "Kocierzew Południowy", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.21728000", + "longitude": "20.01812000" + }, + { + "id": "86682", + "name": "Koluszki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.73872000", + "longitude": "19.81994000" + }, + { + "id": "86698", + "name": "Konstantynów Łódzki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.74776000", + "longitude": "19.32564000" + }, + { + "id": "86732", + "name": "Kowiesy", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.88942000", + "longitude": "20.41929000" + }, + { + "id": "86790", + "name": "Krośniewice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25592000", + "longitude": "19.17037000" + }, + { + "id": "86823", + "name": "Krzyżanów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.18409000", + "longitude": "19.45619000" + }, + { + "id": "86828", + "name": "Ksawerów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.68288000", + "longitude": "19.40280000" + }, + { + "id": "86844", + "name": "Kutno", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.23064000", + "longitude": "19.36409000" + }, + { + "id": "86895", + "name": "Lgota Wielka", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14904000", + "longitude": "19.32735000" + }, + { + "id": "86905", + "name": "Lipce Reymontowskie", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.89863000", + "longitude": "19.94173000" + }, + { + "id": "86950", + "name": "Lubochnia", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.60794000", + "longitude": "20.05391000" + }, + { + "id": "86968", + "name": "Lutomiersk", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.75376000", + "longitude": "19.21097000" + }, + { + "id": "86971", + "name": "Lututów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37033000", + "longitude": "18.43480000" + }, + { + "id": "86982", + "name": "Maków", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.94696000", + "longitude": "20.05211000" + }, + { + "id": "87078", + "name": "Mniszków", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37017000", + "longitude": "20.03915000" + }, + { + "id": "87089", + "name": "Mokrsko", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.17897000", + "longitude": "18.48879000" + }, + { + "id": "87099", + "name": "Moszczenica", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50297000", + "longitude": "19.71986000" + }, + { + "id": "87149", + "name": "Nieborów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.07771000", + "longitude": "20.06902000" + }, + { + "id": "87189", + "name": "Nowe Ostrowy", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.30318000", + "longitude": "19.19217000" + }, + { + "id": "87328", + "name": "Ożarów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14489000", + "longitude": "18.51110000" + }, + { + "id": "87261", + "name": "Opoczno", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37569000", + "longitude": "20.27827000" + }, + { + "id": "87264", + "name": "Oporów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26448000", + "longitude": "19.56416000" + }, + { + "id": "87295", + "name": "Osjaków", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.28946000", + "longitude": "18.79151000" + }, + { + "id": "87303", + "name": "Ostrowy", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.30444000", + "longitude": "19.16565000" + }, + { + "id": "87321", + "name": "Ozorków", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.96336000", + "longitude": "19.29139000" + }, + { + "id": "87330", + "name": "Pabianice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.66446000", + "longitude": "19.35473000" + }, + { + "id": "87335", + "name": "Pajęczno", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14449000", + "longitude": "18.99612000" + }, + { + "id": "87345", + "name": "Paradyż", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.30604000", + "longitude": "20.11374000" + }, + { + "id": "87350", + "name": "Parzęczew", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.94855000", + "longitude": "19.20608000" + }, + { + "id": "87862", + "name": "Pławno", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "50.97772000", + "longitude": "19.45524000" + }, + { + "id": "87859", + "name": "Pątnów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14403000", + "longitude": "18.61659000" + }, + { + "id": "87860", + "name": "Pęczniew", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.80384000", + "longitude": "18.72311000" + }, + { + "id": "87401", + "name": "Piątek", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06890000", + "longitude": "19.47970000" + }, + { + "id": "87394", + "name": "Piotrków Trybunalski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.40547000", + "longitude": "19.70321000" + }, + { + "id": "87781", + "name": "Poświętne", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.53203000", + "longitude": "20.36453000" + }, + { + "id": "87412", + "name": "Poddębice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.89344000", + "longitude": "18.95730000" + }, + { + "id": "88753", + "name": "powiat Łódzki Wschodni", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.76529000", + "longitude": "19.48288000" + }, + { + "id": "88752", + "name": "powiat Łowicki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10627000", + "longitude": "19.94606000" + }, + { + "id": "87747", + "name": "Powiat łaski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.55884000", + "longitude": "19.03824000" + }, + { + "id": "87753", + "name": "Powiat łódzki wschodni", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.68616000", + "longitude": "19.70098000" + }, + { + "id": "87754", + "name": "Powiat łęczycki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10611000", + "longitude": "19.19498000" + }, + { + "id": "87460", + "name": "Powiat bełchatowski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.36877000", + "longitude": "19.17791000" + }, + { + "id": "87476", + "name": "Powiat brzeziński", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.84073000", + "longitude": "19.83037000" + }, + { + "id": "87557", + "name": "Powiat kutnowski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25140000", + "longitude": "19.39706000" + }, + { + "id": "87616", + "name": "Powiat opoczyński", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.39265000", + "longitude": "20.19430000" + }, + { + "id": "87628", + "name": "Powiat pabianicki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.67743000", + "longitude": "19.23782000" + }, + { + "id": "87629", + "name": "Powiat pajęczański", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14121000", + "longitude": "19.02749000" + }, + { + "id": "87633", + "name": "Powiat piotrkowski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37816000", + "longitude": "19.73960000" + }, + { + "id": "87637", + "name": "Powiat poddębicki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.89837000", + "longitude": "18.92132000" + }, + { + "id": "87657", + "name": "Powiat radomszczański", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.06463000", + "longitude": "19.63038000" + }, + { + "id": "87661", + "name": "Powiat rawski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.76228000", + "longitude": "20.38530000" + }, + { + "id": "87672", + "name": "Powiat sieradzki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.60297000", + "longitude": "18.60309000" + }, + { + "id": "87675", + "name": "Powiat skierniewicki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.94493000", + "longitude": "20.19367000" + }, + { + "id": "87707", + "name": "Powiat tomaszowski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59667000", + "longitude": "20.06638000" + }, + { + "id": "87718", + "name": "Powiat wieluński", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.23261000", + "longitude": "18.63033000" + }, + { + "id": "87719", + "name": "Powiat wieruszowski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.29415000", + "longitude": "18.31854000" + }, + { + "id": "87739", + "name": "Powiat zduńskowolski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.62040000", + "longitude": "18.95085000" + }, + { + "id": "87740", + "name": "Powiat zgierski", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.90410000", + "longitude": "19.48024000" + }, + { + "id": "87806", + "name": "Przedbórz", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.08789000", + "longitude": "19.87384000" + }, + { + "id": "87886", + "name": "Radomsko", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.06713000", + "longitude": "19.44477000" + }, + { + "id": "87918", + "name": "Rawa Mazowiecka", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.76437000", + "longitude": "20.25493000" + }, + { + "id": "88037", + "name": "Ręczno", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.19026000", + "longitude": "19.85375000" + }, + { + "id": "87923", + "name": "Regnów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.74850000", + "longitude": "20.38711000" + }, + { + "id": "87949", + "name": "Rogów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.81758000", + "longitude": "19.88654000" + }, + { + "id": "87954", + "name": "Rokiciny", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.65078000", + "longitude": "19.80191000" + }, + { + "id": "87955", + "name": "Rokiciny-Kolonia", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.66468000", + "longitude": "19.78312000" + }, + { + "id": "87966", + "name": "Rozprza", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.30266000", + "longitude": "19.64570000" + }, + { + "id": "87987", + "name": "Rusiec", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.32444000", + "longitude": "18.98506000" + }, + { + "id": "88017", + "name": "Rzeczyca", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59824000", + "longitude": "20.29484000" + }, + { + "id": "88027", + "name": "Rzgów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.66345000", + "longitude": "19.49181000" + }, + { + "id": "88041", + "name": "Sadkowice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.72517000", + "longitude": "20.51465000" + }, + { + "id": "88338", + "name": "Sławno", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.39273000", + "longitude": "20.14043000" + }, + { + "id": "88349", + "name": "Słupia", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.85518000", + "longitude": "19.96997000" + }, + { + "id": "88327", + "name": "Sędziejowice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50677000", + "longitude": "19.02763000" + }, + { + "id": "88076", + "name": "Siemkowice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.20194000", + "longitude": "18.89880000" + }, + { + "id": "88085", + "name": "Sieradz", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59584000", + "longitude": "18.73023000" + }, + { + "id": "88107", + "name": "Skierniewice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.95485000", + "longitude": "20.15837000" + }, + { + "id": "88111", + "name": "Skomlin", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.17089000", + "longitude": "18.38699000" + }, + { + "id": "88137", + "name": "Sokolniki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.30738000", + "longitude": "18.33275000" + }, + { + "id": "88192", + "name": "Starowa Góra", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.69134000", + "longitude": "19.48374000" + }, + { + "id": "88219", + "name": "Stryków", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.90224000", + "longitude": "19.60536000" + }, + { + "id": "88226", + "name": "Strzelce", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31478000", + "longitude": "19.40701000" + }, + { + "id": "88229", + "name": "Strzelce Wielkie", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13940000", + "longitude": "19.14539000" + }, + { + "id": "88257", + "name": "Sulejów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.35436000", + "longitude": "19.88538000" + }, + { + "id": "88261", + "name": "Sulmierzyce", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.18456000", + "longitude": "19.19595000" + }, + { + "id": "88283", + "name": "Szadek", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.69174000", + "longitude": "18.97549000" + }, + { + "id": "88298", + "name": "Szczerców", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.33319000", + "longitude": "19.10977000" + }, + { + "id": "88380", + "name": "Tomaszów Mazowiecki", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.53131000", + "longitude": "20.00855000" + }, + { + "id": "88429", + "name": "Tuszyn", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.60949000", + "longitude": "19.53009000" + }, + { + "id": "88449", + "name": "Ujazd", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59781000", + "longitude": "19.92225000" + }, + { + "id": "88455", + "name": "Uniejów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.97428000", + "longitude": "18.79308000" + }, + { + "id": "88474", + "name": "Walichnowy", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.29579000", + "longitude": "18.38073000" + }, + { + "id": "88482", + "name": "Warta", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.71049000", + "longitude": "18.62483000" + }, + { + "id": "88483", + "name": "Wartkowice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.97626000", + "longitude": "19.00180000" + }, + { + "id": "88494", + "name": "Widawa", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.43855000", + "longitude": "18.94421000" + }, + { + "id": "88511", + "name": "Wieluń", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.22097000", + "longitude": "18.56964000" + }, + { + "id": "88515", + "name": "Wieruszów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.29488000", + "longitude": "18.15547000" + }, + { + "id": "88522", + "name": "Wierzchlas", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.20457000", + "longitude": "18.66543000" + }, + { + "id": "88553", + "name": "Witonia", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.14655000", + "longitude": "19.30049000" + }, + { + "id": "88567", + "name": "Wodzierady", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.71826000", + "longitude": "19.15123000" + }, + { + "id": "88586", + "name": "Wola Krzysztoporska", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.34418000", + "longitude": "19.58090000" + }, + { + "id": "88595", + "name": "Wolbórz", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50196000", + "longitude": "19.83049000" + }, + { + "id": "88608", + "name": "Wróblew", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.61215000", + "longitude": "18.61487000" + }, + { + "id": "88665", + "name": "Zadzim", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.77666000", + "longitude": "18.84928000" + }, + { + "id": "88694", + "name": "Zapolice", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.54319000", + "longitude": "18.88335000" + }, + { + "id": "88743", + "name": "Złoczew", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.41719000", + "longitude": "18.60363000" + }, + { + "id": "88717", + "name": "Zduńska Wola", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59915000", + "longitude": "18.93974000" + }, + { + "id": "88722", + "name": "Zelów", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.46452000", + "longitude": "19.21972000" + }, + { + "id": "88724", + "name": "Zgierz", + "state_id": 1636, + "state_code": "LD", + "country_id": 176, + "country_code": "PL", + "latitude": "51.85561000", + "longitude": "19.40623000" + }, + { + "id": "88832", + "name": "Ślesin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.37039000", + "longitude": "18.30644000" + }, + { + "id": "88835", + "name": "Śmiłowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.13647000", + "longitude": "16.92075000" + }, + { + "id": "88834", + "name": "Śmigiel", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.01339000", + "longitude": "16.52704000" + }, + { + "id": "88837", + "name": "Śrem", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.08868000", + "longitude": "17.01508000" + }, + { + "id": "88838", + "name": "Środa Wielkopolska", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22843000", + "longitude": "17.27617000" + }, + { + "id": "88864", + "name": "Święciechowa", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.85503000", + "longitude": "16.49805000" + }, + { + "id": "88820", + "name": "Łęka Opatowska", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.21231000", + "longitude": "18.10710000" + }, + { + "id": "88781", + "name": "Łobżenica", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.26244000", + "longitude": "17.25574000" + }, + { + "id": "88801", + "name": "Łubowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51168000", + "longitude": "17.45333000" + }, + { + "id": "88880", + "name": "Żelazków", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.85418000", + "longitude": "18.17430000" + }, + { + "id": "88884", + "name": "Żerków", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06877000", + "longitude": "17.56349000" + }, + { + "id": "85788", + "name": "Babiak", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.34530000", + "longitude": "18.66663000" + }, + { + "id": "85805", + "name": "Baranów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.26342000", + "longitude": "18.00470000" + }, + { + "id": "85803", + "name": "Baranowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.43525000", + "longitude": "16.78631000" + }, + { + "id": "85847", + "name": "Białośliwie", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.10461000", + "longitude": "17.12533000" + }, + { + "id": "85881", + "name": "Blizanów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.90372000", + "longitude": "18.01003000" + }, + { + "id": "85903", + "name": "Bojanowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.70749000", + "longitude": "16.74827000" + }, + { + "id": "85904", + "name": "Bojanowo Stare", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.99302000", + "longitude": "16.58369000" + }, + { + "id": "85919", + "name": "Borek Wielkopolski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.91674000", + "longitude": "17.24133000" + }, + { + "id": "85934", + "name": "Bralin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.28581000", + "longitude": "17.90325000" + }, + { + "id": "85939", + "name": "Brdów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.35390000", + "longitude": "18.72980000" + }, + { + "id": "85941", + "name": "Brenno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.92257000", + "longitude": "16.21488000" + }, + { + "id": "85944", + "name": "Brodnica", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.14123000", + "longitude": "16.89096000" + }, + { + "id": "85952", + "name": "Broniszewice", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.96696000", + "longitude": "17.81648000" + }, + { + "id": "85954", + "name": "Brudzew", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.09949000", + "longitude": "18.60432000" + }, + { + "id": "85984", + "name": "Budzyń", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.88954000", + "longitude": "16.98812000" + }, + { + "id": "85988", + "name": "Buk", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.35532000", + "longitude": "16.51958000" + }, + { + "id": "86041", + "name": "Chocz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.97642000", + "longitude": "17.86995000" + }, + { + "id": "86047", + "name": "Chodów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24961000", + "longitude": "19.01218000" + }, + { + "id": "86046", + "name": "Chodzież", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.99505000", + "longitude": "16.91980000" + }, + { + "id": "86063", + "name": "Chrzypsko Wielkie", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62817000", + "longitude": "16.22852000" + }, + { + "id": "86099", + "name": "Czajków", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.49197000", + "longitude": "18.32726000" + }, + { + "id": "86102", + "name": "Czapury", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31719000", + "longitude": "16.91268000" + }, + { + "id": "86111", + "name": "Czarnków", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.90214000", + "longitude": "16.56413000" + }, + { + "id": "86125", + "name": "Czempiń", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.14404000", + "longitude": "16.76408000" + }, + { + "id": "86128", + "name": "Czermin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.95008000", + "longitude": "17.74957000" + }, + { + "id": "86134", + "name": "Czerniejewo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.42640000", + "longitude": "17.48925000" + }, + { + "id": "86143", + "name": "Czerwonak", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.46459000", + "longitude": "16.98169000" + }, + { + "id": "86156", + "name": "Damasławek", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.83979000", + "longitude": "17.50062000" + }, + { + "id": "86159", + "name": "Daszewice", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.30002000", + "longitude": "16.95723000" + }, + { + "id": "86234", + "name": "Dąbie", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.08668000", + "longitude": "18.82250000" + }, + { + "id": "86169", + "name": "Dobra", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.91664000", + "longitude": "18.61556000" + }, + { + "id": "86178", + "name": "Dobrzyca", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.86663000", + "longitude": "17.60336000" + }, + { + "id": "86182", + "name": "Dolsk", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.98180000", + "longitude": "17.06273000" + }, + { + "id": "86188", + "name": "Dominowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.29158000", + "longitude": "17.35754000" + }, + { + "id": "86189", + "name": "Dopiewo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.35726000", + "longitude": "16.67562000" + }, + { + "id": "86191", + "name": "Doruchów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.41719000", + "longitude": "18.07697000" + }, + { + "id": "86194", + "name": "Drawsko", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.85421000", + "longitude": "16.03125000" + }, + { + "id": "86208", + "name": "Duszniki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.44691000", + "longitude": "16.40602000" + }, + { + "id": "86304", + "name": "Gizałki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.04267000", + "longitude": "17.76936000" + }, + { + "id": "86313", + "name": "Gniezno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.53481000", + "longitude": "17.58259000" + }, + { + "id": "86354", + "name": "Gołańcz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.94326000", + "longitude": "17.29995000" + }, + { + "id": "86357", + "name": "Gołuchów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.85036000", + "longitude": "17.93140000" + }, + { + "id": "86328", + "name": "Golina", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24315000", + "longitude": "18.09268000" + }, + { + "id": "86340", + "name": "Gorzyce Wielkie", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63725000", + "longitude": "17.72953000" + }, + { + "id": "86347", + "name": "Gostyń", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.88247000", + "longitude": "17.01225000" + }, + { + "id": "86369", + "name": "Grabów nad Prosną", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50596000", + "longitude": "18.11929000" + }, + { + "id": "86372", + "name": "Granowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22244000", + "longitude": "16.52859000" + }, + { + "id": "86374", + "name": "Grodziec", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.03855000", + "longitude": "18.05972000" + }, + { + "id": "86376", + "name": "Grodzisk Wielkopolski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22762000", + "longitude": "16.36534000" + }, + { + "id": "86394", + "name": "Grzegorzew", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.20177000", + "longitude": "18.73409000" + }, + { + "id": "86483", + "name": "Jabłonna", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.20598000", + "longitude": "16.20741000" + }, + { + "id": "86496", + "name": "Janków Przygodzki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59808000", + "longitude": "17.78824000" + }, + { + "id": "86505", + "name": "Jaraczewo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.96854000", + "longitude": "17.29707000" + }, + { + "id": "86509", + "name": "Jarocin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.97266000", + "longitude": "17.50256000" + }, + { + "id": "86522", + "name": "Jastrowie", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.42048000", + "longitude": "16.81756000" + }, + { + "id": "86573", + "name": "Jutrosin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.65009000", + "longitude": "17.16957000" + }, + { + "id": "86630", + "name": "Kaźmierz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51309000", + "longitude": "16.58403000" + }, + { + "id": "86580", + "name": "Kaczory", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.10348000", + "longitude": "16.88169000" + }, + { + "id": "86586", + "name": "Kalisz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.76109000", + "longitude": "18.09102000" + }, + { + "id": "86593", + "name": "Kamieniec", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.16614000", + "longitude": "16.46164000" + }, + { + "id": "86622", + "name": "Kawęczyn", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.90923000", + "longitude": "18.53102000" + }, + { + "id": "86625", + "name": "Kazimierz Biskupi", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31100000", + "longitude": "18.16581000" + }, + { + "id": "86851", + "name": "Kórnik", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24772000", + "longitude": "17.08949000" + }, + { + "id": "86861", + "name": "Kłecko", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.63181000", + "longitude": "17.43075000" + }, + { + "id": "86865", + "name": "Kłodawa", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25447000", + "longitude": "18.91352000" + }, + { + "id": "86856", + "name": "Kępno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.27840000", + "longitude": "17.98908000" + }, + { + "id": "86641", + "name": "Kiszkowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.58871000", + "longitude": "17.26630000" + }, + { + "id": "86643", + "name": "Kleczew", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.37057000", + "longitude": "18.17714000" + }, + { + "id": "86647", + "name": "Kleszczewo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.33377000", + "longitude": "17.17163000" + }, + { + "id": "86758", + "name": "Koźmin Wielkopolski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.82712000", + "longitude": "17.45391000" + }, + { + "id": "86759", + "name": "Koźminek", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.79874000", + "longitude": "18.33893000" + }, + { + "id": "86740", + "name": "Kołaczkowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.21739000", + "longitude": "17.62413000" + }, + { + "id": "86745", + "name": "Koło", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.20024000", + "longitude": "18.63865000" + }, + { + "id": "86752", + "name": "Kościan", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.08829000", + "longitude": "16.64866000" + }, + { + "id": "86754", + "name": "Kościelec", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.17425000", + "longitude": "18.57067000" + }, + { + "id": "86663", + "name": "Kobyla Góra", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37923000", + "longitude": "17.83811000" + }, + { + "id": "86666", + "name": "Kobylin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.71645000", + "longitude": "17.22682000" + }, + { + "id": "86667", + "name": "Kobylnica", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.44597000", + "longitude": "17.07644000" + }, + { + "id": "86686", + "name": "Komorniki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.33870000", + "longitude": "16.81063000" + }, + { + "id": "86689", + "name": "Konary", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.65690000", + "longitude": "17.04185000" + }, + { + "id": "86693", + "name": "Konin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22338000", + "longitude": "18.25121000" + }, + { + "id": "86714", + "name": "Kostrzyn", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.39847000", + "longitude": "17.22811000" + }, + { + "id": "86723", + "name": "Kotlin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.91913000", + "longitude": "17.64825000" + }, + { + "id": "86762", + "name": "Krajenka", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.29759000", + "longitude": "16.99079000" + }, + { + "id": "86765", + "name": "Kramsk", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26469000", + "longitude": "18.42407000" + }, + { + "id": "86775", + "name": "Kraszewice", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.51868000", + "longitude": "18.21997000" + }, + { + "id": "86779", + "name": "Krobia", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.77405000", + "longitude": "16.98237000" + }, + { + "id": "86783", + "name": "Krosno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22357000", + "longitude": "16.83251000" + }, + { + "id": "86785", + "name": "Krotoszyn", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.69868000", + "longitude": "17.43738000" + }, + { + "id": "86806", + "name": "Krzemieniewo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.85905000", + "longitude": "16.83354000" + }, + { + "id": "86821", + "name": "Krzyż Wielkopolski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.88097000", + "longitude": "16.01116000" + }, + { + "id": "86814", + "name": "Krzykosy", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.11041000", + "longitude": "17.37411000" + }, + { + "id": "86820", + "name": "Krzywiń", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.96296000", + "longitude": "16.81985000" + }, + { + "id": "86829", + "name": "Książ Wielkopolski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06167000", + "longitude": "17.23952000" + }, + { + "id": "86845", + "name": "Kuślin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.36386000", + "longitude": "16.31538000" + }, + { + "id": "86850", + "name": "Kwilcz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.55506000", + "longitude": "16.08562000" + }, + { + "id": "86976", + "name": "Lądek", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.20929000", + "longitude": "17.92994000" + }, + { + "id": "86883", + "name": "Leszno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.84034000", + "longitude": "16.57494000" + }, + { + "id": "86898", + "name": "Licheń Stary", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31226000", + "longitude": "18.35515000" + }, + { + "id": "86910", + "name": "Lipka", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.49601000", + "longitude": "17.25085000" + }, + { + "id": "86918", + "name": "Lipno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.91722000", + "longitude": "16.56708000" + }, + { + "id": "86927", + "name": "Lisków", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.83313000", + "longitude": "18.39789000" + }, + { + "id": "86933", + "name": "Lubasz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.85213000", + "longitude": "16.52344000" + }, + { + "id": "86956", + "name": "Luboń", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.34705000", + "longitude": "16.89267000" + }, + { + "id": "86973", + "name": "Lwówek", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.44798000", + "longitude": "16.18106000" + }, + { + "id": "86985", + "name": "Malanów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.95358000", + "longitude": "18.39128000" + }, + { + "id": "86992", + "name": "Margonin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.97335000", + "longitude": "17.09464000" + }, + { + "id": "87015", + "name": "Miasteczko Krajeńskie", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.09784000", + "longitude": "17.00478000" + }, + { + "id": "87074", + "name": "Miłosław", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.20318000", + "longitude": "17.48955000" + }, + { + "id": "87061", + "name": "Międzychód", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.59882000", + "longitude": "15.89696000" + }, + { + "id": "87041", + "name": "Mieścisko", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.74357000", + "longitude": "17.33213000" + }, + { + "id": "87029", + "name": "Miedzichowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.37581000", + "longitude": "15.95876000" + }, + { + "id": "87034", + "name": "Miejska Górka", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.65573000", + "longitude": "16.95826000" + }, + { + "id": "87036", + "name": "Mieleszyn", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.66868000", + "longitude": "17.49779000" + }, + { + "id": "87045", + "name": "Mikstat", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.53236000", + "longitude": "17.97378000" + }, + { + "id": "87094", + "name": "Mosina", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24543000", + "longitude": "16.84709000" + }, + { + "id": "87113", + "name": "Murowana Goślina", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.57463000", + "longitude": "17.00933000" + }, + { + "id": "87144", + "name": "Nekla", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.36496000", + "longitude": "17.41329000" + }, + { + "id": "87151", + "name": "Niechanowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.46527000", + "longitude": "17.67812000" + }, + { + "id": "87188", + "name": "Nowe Miasto nad Wartą", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.09007000", + "longitude": "17.41114000" + }, + { + "id": "87191", + "name": "Nowe Skalmierzyce", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.71038000", + "longitude": "17.99337000" + }, + { + "id": "87208", + "name": "Nowy Tomyśl", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31950000", + "longitude": "16.12844000" + }, + { + "id": "87216", + "name": "Oborniki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.64739000", + "longitude": "16.81406000" + }, + { + "id": "87221", + "name": "Obrzycko", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.70338000", + "longitude": "16.52807000" + }, + { + "id": "87228", + "name": "Odolanów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.57419000", + "longitude": "17.67434000" + }, + { + "id": "87234", + "name": "Okonek", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.53618000", + "longitude": "16.85158000" + }, + { + "id": "87252", + "name": "Olszówka", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19030000", + "longitude": "18.86258000" + }, + { + "id": "87254", + "name": "Opalenica", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.30887000", + "longitude": "16.41278000" + }, + { + "id": "87257", + "name": "Opatów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.21463000", + "longitude": "18.14615000" + }, + { + "id": "87259", + "name": "Opatówek", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.73989000", + "longitude": "18.21653000" + }, + { + "id": "87265", + "name": "Orchowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.50938000", + "longitude": "18.01578000" + }, + { + "id": "87279", + "name": "Osieczna", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.90420000", + "longitude": "16.67862000" + }, + { + "id": "87289", + "name": "Osiek Mały", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.27630000", + "longitude": "18.60234000" + }, + { + "id": "87290", + "name": "Osiek nad Notecią", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.12030000", + "longitude": "17.29102000" + }, + { + "id": "87311", + "name": "Ostrów Wielkopolski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.65501000", + "longitude": "17.80686000" + }, + { + "id": "87297", + "name": "Ostroróg", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62650000", + "longitude": "16.44988000" + }, + { + "id": "87301", + "name": "Ostrowite", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.38199000", + "longitude": "18.04470000" + }, + { + "id": "87306", + "name": "Ostrzeszów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.42640000", + "longitude": "17.93355000" + }, + { + "id": "87336", + "name": "Pakosław", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.61438000", + "longitude": "17.05793000" + }, + { + "id": "87340", + "name": "Pamiątkowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.55334000", + "longitude": "16.68094000" + }, + { + "id": "87861", + "name": "Pępowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.76569000", + "longitude": "17.12661000" + }, + { + "id": "87362", + "name": "Pecna", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.18333000", + "longitude": "16.80000000" + }, + { + "id": "87364", + "name": "Perzów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.27625000", + "longitude": "17.80970000" + }, + { + "id": "87371", + "name": "Piaski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.88497000", + "longitude": "17.07293000" + }, + { + "id": "87403", + "name": "Piła", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.15145000", + "longitude": "16.73782000" + }, + { + "id": "87406", + "name": "Pleszew", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.89636000", + "longitude": "17.78549000" + }, + { + "id": "87407", + "name": "Plewiska", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.36706000", + "longitude": "16.80985000" + }, + { + "id": "87409", + "name": "Pniewy", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.50943000", + "longitude": "16.25668000" + }, + { + "id": "87775", + "name": "Połajewo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.79923000", + "longitude": "16.73347000" + }, + { + "id": "87410", + "name": "Pobiedziska", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.47753000", + "longitude": "17.28767000" + }, + { + "id": "87420", + "name": "Pogorzela", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.82220000", + "longitude": "17.23017000" + }, + { + "id": "87440", + "name": "Poniec", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.76343000", + "longitude": "16.80867000" + }, + { + "id": "87757", + "name": "Powiat średzki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.18010000", + "longitude": "17.30686000" + }, + { + "id": "87758", + "name": "Powiat śremski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06149000", + "longitude": "17.05853000" + }, + { + "id": "87484", + "name": "Powiat chodzieski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.95289000", + "longitude": "17.01545000" + }, + { + "id": "87490", + "name": "Powiat czarnkowsko-trzcianecki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.92885000", + "longitude": "16.34673000" + }, + { + "id": "87504", + "name": "Powiat gnieźnieński", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.55359000", + "longitude": "17.57140000" + }, + { + "id": "87510", + "name": "Powiat gostyński", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.83680000", + "longitude": "17.03471000" + }, + { + "id": "87514", + "name": "Powiat grodziski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.16038000", + "longitude": "16.33566000" + }, + { + "id": "87527", + "name": "Powiat jarociński", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.00901000", + "longitude": "17.45497000" + }, + { + "id": "87533", + "name": "Powiat kaliski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.78921000", + "longitude": "18.20809000" + }, + { + "id": "87560", + "name": "Powiat kępiński", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.24852000", + "longitude": "17.95934000" + }, + { + "id": "87548", + "name": "Powiat kościański", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06616000", + "longitude": "16.71514000" + }, + { + "id": "87542", + "name": "Powiat kolski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24446000", + "longitude": "18.78096000" + }, + { + "id": "87544", + "name": "Powiat koniński", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25965000", + "longitude": "18.29616000" + }, + { + "id": "87554", + "name": "Powiat krotoszyński", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.74174000", + "longitude": "17.42125000" + }, + { + "id": "87567", + "name": "Powiat leszczyński", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.85010000", + "longitude": "16.50120000" + }, + { + "id": "87587", + "name": "Powiat międzychodzki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.60187000", + "longitude": "16.05741000" + }, + { + "id": "87607", + "name": "Powiat nowotomyski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.34837000", + "longitude": "16.15849000" + }, + { + "id": "87609", + "name": "Powiat obornicki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.71705000", + "longitude": "16.85437000" + }, + { + "id": "87621", + "name": "Powiat ostrowski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.60798000", + "longitude": "17.85030000" + }, + { + "id": "87623", + "name": "Powiat ostrzeszowski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.43768000", + "longitude": "18.04334000" + }, + { + "id": "87632", + "name": "Powiat pilski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.15753000", + "longitude": "16.91465000" + }, + { + "id": "87636", + "name": "Powiat pleszewski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.92526000", + "longitude": "17.77850000" + }, + { + "id": "87640", + "name": "Powiat poznański", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.32443000", + "longitude": "16.86539000" + }, + { + "id": "87660", + "name": "Powiat rawicki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.64507000", + "longitude": "16.94944000" + }, + { + "id": "87699", + "name": "Powiat słupecki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31422000", + "longitude": "17.90822000" + }, + { + "id": "87691", + "name": "Powiat szamotulski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.58391000", + "longitude": "16.37726000" + }, + { + "id": "87711", + "name": "Powiat turecki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.99581000", + "longitude": "18.49301000" + }, + { + "id": "87730", + "name": "Powiat wągrowiecki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.80805000", + "longitude": "17.21077000" + }, + { + "id": "87721", + "name": "Powiat wolsztyński", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.08791000", + "longitude": "16.14983000" + }, + { + "id": "87725", + "name": "Powiat wrzesiński", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24091000", + "longitude": "17.59019000" + }, + { + "id": "87746", + "name": "Powiat złotowski", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.41261000", + "longitude": "16.91516000" + }, + { + "id": "87770", + "name": "Powidz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.41362000", + "longitude": "17.91926000" + }, + { + "id": "87774", + "name": "Poznań", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.40692000", + "longitude": "16.92993000" + }, + { + "id": "87807", + "name": "Przedecz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.33440000", + "longitude": "18.89915000" + }, + { + "id": "87813", + "name": "Przemęt", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.00808000", + "longitude": "16.30114000" + }, + { + "id": "87824", + "name": "Przygodzice", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59195000", + "longitude": "17.82412000" + }, + { + "id": "87825", + "name": "Przykona", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.98171000", + "longitude": "18.61247000" + }, + { + "id": "87850", + "name": "Puszczykowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.28570000", + "longitude": "16.84925000" + }, + { + "id": "87858", + "name": "Pyzdry", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.17056000", + "longitude": "17.69005000" + }, + { + "id": "87909", + "name": "Rakoniewice", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.13906000", + "longitude": "16.27346000" + }, + { + "id": "87914", + "name": "Raszków", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.71828000", + "longitude": "17.72571000" + }, + { + "id": "87919", + "name": "Rawicz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.60946000", + "longitude": "16.85852000" + }, + { + "id": "87943", + "name": "Rogalinek", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24945000", + "longitude": "16.89989000" + }, + { + "id": "87946", + "name": "Rogoźno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.75226000", + "longitude": "16.99049000" + }, + { + "id": "87957", + "name": "Rokietnica", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51245000", + "longitude": "16.74570000" + }, + { + "id": "87964", + "name": "Rozdrażew", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.78218000", + "longitude": "17.50491000" + }, + { + "id": "87999", + "name": "Rychtal", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14533000", + "longitude": "17.85132000" + }, + { + "id": "88000", + "name": "Rychwał", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.07149000", + "longitude": "18.16510000" + }, + { + "id": "88002", + "name": "Ryczywół", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.81324000", + "longitude": "16.83114000" + }, + { + "id": "88005", + "name": "Rydzyna", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.78651000", + "longitude": "16.66761000" + }, + { + "id": "88028", + "name": "Rzgów Pierwszy", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.15134000", + "longitude": "18.04976000" + }, + { + "id": "88347", + "name": "Słupca", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.28733000", + "longitude": "17.87192000" + }, + { + "id": "88350", + "name": "Słupia pod Kępnem", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.23924000", + "longitude": "18.04255000" + }, + { + "id": "88065", + "name": "Siedlec", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.13781000", + "longitude": "16.00279000" + }, + { + "id": "88088", + "name": "Sieraków", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.65134000", + "longitude": "16.08047000" + }, + { + "id": "88090", + "name": "Sieroszewice", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63347000", + "longitude": "17.97200000" + }, + { + "id": "88096", + "name": "Skalmierzyce", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.70097000", + "longitude": "17.96333000" + }, + { + "id": "88109", + "name": "Skoki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.67222000", + "longitude": "17.16107000" + }, + { + "id": "88119", + "name": "Skulsk", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.48200000", + "longitude": "18.33112000" + }, + { + "id": "88159", + "name": "Sośnie", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.47315000", + "longitude": "17.63383000" + }, + { + "id": "88146", + "name": "Sompolno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.38832000", + "longitude": "18.50282000" + }, + { + "id": "88187", + "name": "Stare Miasto", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.17972000", + "longitude": "18.21499000" + }, + { + "id": "88201", + "name": "Stawiszyn", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.91786000", + "longitude": "18.11171000" + }, + { + "id": "88243", + "name": "Stęszew", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.28370000", + "longitude": "16.70085000" + }, + { + "id": "88222", + "name": "Strzałkowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.30701000", + "longitude": "17.81811000" + }, + { + "id": "88254", + "name": "Suchy Las", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.47308000", + "longitude": "16.87745000" + }, + { + "id": "88260", + "name": "Sulmierzyce", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.60594000", + "longitude": "17.53053000" + }, + { + "id": "88275", + "name": "Swarzędz", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.41289000", + "longitude": "17.08503000" + }, + { + "id": "88281", + "name": "Sypniewo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.46823000", + "longitude": "16.60583000" + }, + { + "id": "88285", + "name": "Szamocin", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.02795000", + "longitude": "17.12653000" + }, + { + "id": "88286", + "name": "Szamotuły", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.61201000", + "longitude": "16.57794000" + }, + { + "id": "88321", + "name": "Szydłowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.16212000", + "longitude": "16.61171000" + }, + { + "id": "88367", + "name": "Tarnówka", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.34174000", + "longitude": "16.85273000" + }, + { + "id": "88363", + "name": "Tarnowo Podgórne", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.46642000", + "longitude": "16.66326000" + }, + { + "id": "88396", + "name": "Trzcianka", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.04063000", + "longitude": "16.45629000" + }, + { + "id": "88399", + "name": "Trzcinica", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16707000", + "longitude": "18.00453000" + }, + { + "id": "88411", + "name": "Trzemeszno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.56139000", + "longitude": "17.82311000" + }, + { + "id": "88422", + "name": "Tuliszków", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.07658000", + "longitude": "18.29549000" + }, + { + "id": "88424", + "name": "Turek", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.01548000", + "longitude": "18.50055000" + }, + { + "id": "88452", + "name": "Ujście", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.05339000", + "longitude": "16.73201000" + }, + { + "id": "88476", + "name": "Wapno", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.90804000", + "longitude": "17.47504000" + }, + { + "id": "88647", + "name": "Władysławów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10313000", + "longitude": "18.47626000" + }, + { + "id": "88653", + "name": "Włoszakowice", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.92754000", + "longitude": "16.36456000" + }, + { + "id": "88633", + "name": "Wągrowiec", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.80842000", + "longitude": "17.19961000" + }, + { + "id": "88499", + "name": "Wieleń", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.89461000", + "longitude": "16.17136000" + }, + { + "id": "88501", + "name": "Wielichowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.11573000", + "longitude": "16.35180000" + }, + { + "id": "88518", + "name": "Wierzbinek", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.44026000", + "longitude": "18.51085000" + }, + { + "id": "88529", + "name": "Wijewo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.91627000", + "longitude": "16.18552000" + }, + { + "id": "88533", + "name": "Wilczogóra", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.47348000", + "longitude": "18.16744000" + }, + { + "id": "88536", + "name": "Wilczyn", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.48816000", + "longitude": "18.16126000" + }, + { + "id": "88539", + "name": "Wilkowice", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.88513000", + "longitude": "16.53417000" + }, + { + "id": "88549", + "name": "Witaszyce", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.94151000", + "longitude": "17.56182000" + }, + { + "id": "88551", + "name": "Witkowo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.43964000", + "longitude": "17.77264000" + }, + { + "id": "88597", + "name": "Wolsztyn", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.11552000", + "longitude": "16.11712000" + }, + { + "id": "88605", + "name": "Wronki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.71051000", + "longitude": "16.38044000" + }, + { + "id": "88606", + "name": "Września", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.32512000", + "longitude": "17.56519000" + }, + { + "id": "88614", + "name": "Wyrzysk", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.15300000", + "longitude": "17.26802000" + }, + { + "id": "88617", + "name": "Wysoka", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.18091000", + "longitude": "17.08353000" + }, + { + "id": "88672", + "name": "Zagórów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.16835000", + "longitude": "17.89561000" + }, + { + "id": "88679", + "name": "Zakrzewo", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.41186000", + "longitude": "17.15472000" + }, + { + "id": "88693", + "name": "Zaniemyśl", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.15561000", + "longitude": "17.16228000" + }, + { + "id": "88751", + "name": "Złotów", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.36346000", + "longitude": "17.04082000" + }, + { + "id": "88746", + "name": "Złotniki", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.49407000", + "longitude": "16.84496000" + }, + { + "id": "88715", + "name": "Zbąszyń", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25090000", + "longitude": "15.92520000" + }, + { + "id": "88716", + "name": "Zduny", + "state_id": 1634, + "state_code": "WP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.64580000", + "longitude": "17.37694000" + }, + { + "id": "85781", + "name": "Aleksandrów Kujawski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.87659000", + "longitude": "18.69345000" + }, + { + "id": "88831", + "name": "Ślesin", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.16514000", + "longitude": "17.70258000" + }, + { + "id": "88833", + "name": "Śliwice", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.70875000", + "longitude": "18.17370000" + }, + { + "id": "88847", + "name": "Świecie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.40953000", + "longitude": "18.44742000" + }, + { + "id": "88848", + "name": "Świecie nad Osą", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.44400000", + "longitude": "19.10171000" + }, + { + "id": "88849", + "name": "Świedziebnia", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.15207000", + "longitude": "19.55463000" + }, + { + "id": "88850", + "name": "Świekatowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.41864000", + "longitude": "18.09731000" + }, + { + "id": "88755", + "name": "Łabiszyn", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.95210000", + "longitude": "17.91971000" + }, + { + "id": "88769", + "name": "Łasin", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.51794000", + "longitude": "19.08832000" + }, + { + "id": "88796", + "name": "Łubianka", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.13864000", + "longitude": "18.48115000" + }, + { + "id": "88808", + "name": "Łysomice", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.08629000", + "longitude": "18.62002000" + }, + { + "id": "88888", + "name": "Żnin", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.84958000", + "longitude": "17.71992000" + }, + { + "id": "85808", + "name": "Barcin", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.86607000", + "longitude": "17.94625000" + }, + { + "id": "85812", + "name": "Bartniczka", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.24776000", + "longitude": "19.60433000" + }, + { + "id": "85814", + "name": "Baruchowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.49412000", + "longitude": "19.26496000" + }, + { + "id": "85839", + "name": "Białe Błota", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.09516000", + "longitude": "17.91621000" + }, + { + "id": "85889", + "name": "Bobrowniki", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.78086000", + "longitude": "18.96026000" + }, + { + "id": "85891", + "name": "Bobrowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.28549000", + "longitude": "19.27053000" + }, + { + "id": "85917", + "name": "Boniewo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.46532000", + "longitude": "18.89116000" + }, + { + "id": "85943", + "name": "Brodnica", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.25967000", + "longitude": "19.39653000" + }, + { + "id": "85966", + "name": "Brześć Kujawski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.60532000", + "longitude": "18.90173000" + }, + { + "id": "85971", + "name": "Brzozie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.32554000", + "longitude": "19.60485000" + }, + { + "id": "85973", + "name": "Brzuze", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.05458000", + "longitude": "19.26195000" + }, + { + "id": "85989", + "name": "Bukowiec", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.43383000", + "longitude": "18.24048000" + }, + { + "id": "85999", + "name": "Bydgoszcz", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.12350000", + "longitude": "18.00762000" + }, + { + "id": "86007", + "name": "Bytoń", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.55757000", + "longitude": "18.59522000" + }, + { + "id": "86021", + "name": "Cekcyn", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.57294000", + "longitude": "18.01123000" + }, + { + "id": "86032", + "name": "Chełmża", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.18463000", + "longitude": "18.60466000" + }, + { + "id": "86031", + "name": "Chełmno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.34855000", + "longitude": "18.42510000" + }, + { + "id": "86038", + "name": "Choceń", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.48618000", + "longitude": "19.01339000" + }, + { + "id": "86044", + "name": "Chodecz", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.40513000", + "longitude": "19.02759000" + }, + { + "id": "86058", + "name": "Chrostkowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.94378000", + "longitude": "19.25328000" + }, + { + "id": "86078", + "name": "Ciechocin", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.05581000", + "longitude": "18.92635000" + }, + { + "id": "86079", + "name": "Ciechocinek", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.87908000", + "longitude": "18.79505000" + }, + { + "id": "86136", + "name": "Czerniewice", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51157000", + "longitude": "19.08694000" + }, + { + "id": "86137", + "name": "Czernikowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.94688000", + "longitude": "18.93803000" + }, + { + "id": "86237", + "name": "Dąbrowa", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.74668000", + "longitude": "17.94342000" + }, + { + "id": "86239", + "name": "Dąbrowa Chełmińska", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.17518000", + "longitude": "18.30537000" + }, + { + "id": "86254", + "name": "Dębowa Łąka", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.25541000", + "longitude": "19.09595000" + }, + { + "id": "86171", + "name": "Dobre", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.68398000", + "longitude": "18.57762000" + }, + { + "id": "86180", + "name": "Dobrzyń nad Wisłą", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.63814000", + "longitude": "19.31875000" + }, + { + "id": "86203", + "name": "Drzycim", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.50520000", + "longitude": "18.30940000" + }, + { + "id": "86266", + "name": "Fabianki", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.71929000", + "longitude": "19.10943000" + }, + { + "id": "86272", + "name": "Fordon", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.14821000", + "longitude": "18.17036000" + }, + { + "id": "86419", + "name": "Górzno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.19779000", + "longitude": "19.64317000" + }, + { + "id": "86424", + "name": "Gąsawa", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.76757000", + "longitude": "17.75579000" + }, + { + "id": "86312", + "name": "Gniewkowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.89461000", + "longitude": "18.40785000" + }, + { + "id": "86329", + "name": "Golub-Dobrzyń", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.11087000", + "longitude": "19.05381000" + }, + { + "id": "86344", + "name": "Gostycyn", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.49014000", + "longitude": "17.80978000" + }, + { + "id": "86386", + "name": "Grudziądz", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.48411000", + "longitude": "18.75366000" + }, + { + "id": "86388", + "name": "Gruta", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.45315000", + "longitude": "18.95700000" + }, + { + "id": "86459", + "name": "Inowrocław", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.79886000", + "longitude": "18.26387000" + }, + { + "id": "86469", + "name": "Izbica Kujawska", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.42073000", + "longitude": "18.76270000" + }, + { + "id": "86485", + "name": "Jabłonowo Pomorskie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.39137000", + "longitude": "19.15509000" + }, + { + "id": "86493", + "name": "Janikowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.75328000", + "longitude": "18.11328000" + }, + { + "id": "86501", + "name": "Janowiec Wielkopolski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.75583000", + "longitude": "17.48981000" + }, + { + "id": "86558", + "name": "Jeżewo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.51061000", + "longitude": "18.49437000" + }, + { + "id": "86555", + "name": "Jeziora Wielkie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.53043000", + "longitude": "18.26803000" + }, + { + "id": "86600", + "name": "Kamień Krajeński", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.53352000", + "longitude": "17.52019000" + }, + { + "id": "86857", + "name": "Kęsowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.55872000", + "longitude": "17.71580000" + }, + { + "id": "86631", + "name": "Kcynia", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.99192000", + "longitude": "17.48830000" + }, + { + "id": "86639", + "name": "Kikół", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.90994000", + "longitude": "19.12016000" + }, + { + "id": "86705", + "name": "Koronowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.31370000", + "longitude": "17.93698000" + }, + { + "id": "86725", + "name": "Kowal", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.53019000", + "longitude": "19.14767000" + }, + { + "id": "86730", + "name": "Kowalewo Pomorskie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.15432000", + "longitude": "18.89868000" + }, + { + "id": "86793", + "name": "Kruszwica", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.67562000", + "longitude": "18.33131000" + }, + { + "id": "86917", + "name": "Lipno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.84436000", + "longitude": "19.17852000" + }, + { + "id": "86924", + "name": "Lisewo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.29580000", + "longitude": "18.68714000" + }, + { + "id": "86929", + "name": "Lniano", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.52801000", + "longitude": "18.21267000" + }, + { + "id": "86931", + "name": "Lubanie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.74689000", + "longitude": "18.91940000" + }, + { + "id": "86939", + "name": "Lubicz Dolny", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.03151000", + "longitude": "18.74559000" + }, + { + "id": "86940", + "name": "Lubicz Górny", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.02686000", + "longitude": "18.77100000" + }, + { + "id": "86943", + "name": "Lubień Kujawski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.40574000", + "longitude": "19.16440000" + }, + { + "id": "86941", + "name": "Lubiewo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.46542000", + "longitude": "18.02994000" + }, + { + "id": "86957", + "name": "Lubraniec", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.54178000", + "longitude": "18.83254000" + }, + { + "id": "87086", + "name": "Mogilno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.65806000", + "longitude": "17.95578000" + }, + { + "id": "87101", + "name": "Mrocza", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.24313000", + "longitude": "17.60405000" + }, + { + "id": "87135", + "name": "Nakło nad Notecią", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.14214000", + "longitude": "17.60181000" + }, + { + "id": "87168", + "name": "Nieszawa", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.83452000", + "longitude": "18.89921000" + }, + { + "id": "87179", + "name": "Nowa Wieś Wielka", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.97159000", + "longitude": "18.09036000" + }, + { + "id": "87180", + "name": "Nowe", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.64906000", + "longitude": "18.72716000" + }, + { + "id": "87219", + "name": "Obrowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.97149000", + "longitude": "18.87863000" + }, + { + "id": "87294", + "name": "Osięciny", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62926000", + "longitude": "18.72208000" + }, + { + "id": "87276", + "name": "Osie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.59918000", + "longitude": "18.34373000" + }, + { + "id": "87285", + "name": "Osiek", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.92629000", + "longitude": "18.80765000" + }, + { + "id": "87292", + "name": "Osielsko", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.18505000", + "longitude": "18.08418000" + }, + { + "id": "87300", + "name": "Ostrowite", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.06917000", + "longitude": "19.29337000" + }, + { + "id": "87338", + "name": "Pakość", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.80178000", + "longitude": "18.08530000" + }, + { + "id": "87868", + "name": "Płużnica", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.29672000", + "longitude": "18.77692000" + }, + { + "id": "87393", + "name": "Piotrków Kujawski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.55111000", + "longitude": "18.49905000" + }, + { + "id": "87457", + "name": "Powiat aleksandrowski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.78465000", + "longitude": "18.71930000" + }, + { + "id": "87766", + "name": "Powiat żniński", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.82255000", + "longitude": "17.73743000" + }, + { + "id": "87763", + "name": "Powiat świecki", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.48128000", + "longitude": "18.41163000" + }, + { + "id": "87473", + "name": "Powiat brodnicki", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.26982000", + "longitude": "19.42279000" + }, + { + "id": "87479", + "name": "Powiat bydgoski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.19029000", + "longitude": "18.03808000" + }, + { + "id": "87482", + "name": "Powiat chełmiński", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.30056000", + "longitude": "18.50396000" + }, + { + "id": "87506", + "name": "Powiat golubsko-dobrzyński", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.09922000", + "longitude": "18.99209000" + }, + { + "id": "87515", + "name": "Powiat grudziądzki", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.47146000", + "longitude": "18.91620000" + }, + { + "id": "87524", + "name": "Powiat inowrocławski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.76463000", + "longitude": "18.29671000" + }, + { + "id": "87571", + "name": "Powiat lipnowski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.81573000", + "longitude": "19.21704000" + }, + { + "id": "87590", + "name": "Powiat mogileński", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.66160000", + "longitude": "18.07424000" + }, + { + "id": "87597", + "name": "Powiat nakielski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.09480000", + "longitude": "17.58988000" + }, + { + "id": "87658", + "name": "Powiat radziejowski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62358000", + "longitude": "18.52964000" + }, + { + "id": "87665", + "name": "Powiat rypiński", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.06613000", + "longitude": "19.40975000" + }, + { + "id": "87696", + "name": "Powiat sępoleński", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.44263000", + "longitude": "17.50895000" + }, + { + "id": "87708", + "name": "Powiat toruński", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.98255000", + "longitude": "18.83331000" + }, + { + "id": "87710", + "name": "Powiat tucholski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.58146000", + "longitude": "17.93967000" + }, + { + "id": "87733", + "name": "Powiat włocławski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.55662000", + "longitude": "19.05157000" + }, + { + "id": "87729", + "name": "Powiat wąbrzeski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.28267000", + "longitude": "18.92649000" + }, + { + "id": "87797", + "name": "Pruszcz", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.33021000", + "longitude": "18.19894000" + }, + { + "id": "87874", + "name": "Raciążek", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.85650000", + "longitude": "18.81334000" + }, + { + "id": "87885", + "name": "Radomin", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.08670000", + "longitude": "19.19415000" + }, + { + "id": "87898", + "name": "Radziejów", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62481000", + "longitude": "18.52771000" + }, + { + "id": "87903", + "name": "Radzyń Chełmiński", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.38509000", + "longitude": "18.93725000" + }, + { + "id": "87952", + "name": "Rogóźno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.53587000", + "longitude": "18.92859000" + }, + { + "id": "87944", + "name": "Rogowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.72449000", + "longitude": "17.65117000" + }, + { + "id": "88012", + "name": "Rypin", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.06603000", + "longitude": "19.40941000" + }, + { + "id": "88040", + "name": "Sadki", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.16036000", + "longitude": "17.44912000" + }, + { + "id": "88333", + "name": "Sępólno Krajeńskie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.45198000", + "longitude": "17.53169000" + }, + { + "id": "88060", + "name": "Sicienko", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.20387000", + "longitude": "17.80051000" + }, + { + "id": "88124", + "name": "Skępe", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.86798000", + "longitude": "19.35604000" + }, + { + "id": "88115", + "name": "Skrwilno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.01607000", + "longitude": "19.62364000" + }, + { + "id": "88160", + "name": "Sośno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.38922000", + "longitude": "17.68713000" + }, + { + "id": "88142", + "name": "Solec Kujawski", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.08371000", + "longitude": "18.22572000" + }, + { + "id": "88232", + "name": "Strzelno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62789000", + "longitude": "18.17246000" + }, + { + "id": "88280", + "name": "Sypniewo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.36981000", + "longitude": "17.32690000" + }, + { + "id": "88317", + "name": "Szubin", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.00967000", + "longitude": "17.74000000" + }, + { + "id": "88444", + "name": "Tłuchowo", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.74715000", + "longitude": "19.46563000" + }, + { + "id": "88383", + "name": "Topólka", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.50327000", + "longitude": "18.71246000" + }, + { + "id": "88384", + "name": "Toruń", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.01375000", + "longitude": "18.59814000" + }, + { + "id": "88417", + "name": "Tuchola", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.58792000", + "longitude": "17.85905000" + }, + { + "id": "88456", + "name": "Unisław", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.21241000", + "longitude": "18.38622000" + }, + { + "id": "88471", + "name": "Waganiec", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.80120000", + "longitude": "18.87589000" + }, + { + "id": "88478", + "name": "Warlubie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.58751000", + "longitude": "18.63444000" + }, + { + "id": "88649", + "name": "Włocławek", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.64817000", + "longitude": "19.06780000" + }, + { + "id": "88631", + "name": "Wąbrzeźno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.27989000", + "longitude": "18.94773000" + }, + { + "id": "88634", + "name": "Wąpielsk", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.13761000", + "longitude": "19.27792000" + }, + { + "id": "88557", + "name": "Więcbork", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.35384000", + "longitude": "17.49064000" + }, + { + "id": "88500", + "name": "Wielgie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.74076000", + "longitude": "19.26350000" + }, + { + "id": "88504", + "name": "Wielka Nieszawka", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.99619000", + "longitude": "18.50973000" + }, + { + "id": "88524", + "name": "Wierzchosławice", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.86923000", + "longitude": "18.35609000" + }, + { + "id": "88741", + "name": "Zławieś Wielka", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.09562000", + "longitude": "18.32897000" + }, + { + "id": "88748", + "name": "Złotniki Kujawskie", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.89943000", + "longitude": "18.14564000" + }, + { + "id": "88713", + "name": "Zbójno", + "state_id": 1625, + "state_code": "KP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.00848000", + "longitude": "19.15750000" + }, + { + "id": "85783", + "name": "Alwernia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06056000", + "longitude": "19.53953000" + }, + { + "id": "85785", + "name": "Andrychów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85497000", + "longitude": "19.33834000" + }, + { + "id": "88863", + "name": "Świątniki Górne", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93429000", + "longitude": "19.95364000" + }, + { + "id": "88756", + "name": "Łabowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.52766000", + "longitude": "20.85497000" + }, + { + "id": "88765", + "name": "Łapanów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86538000", + "longitude": "20.29149000" + }, + { + "id": "88766", + "name": "Łapczyca", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95994000", + "longitude": "20.38445000" + }, + { + "id": "88767", + "name": "Łapsze Niżne", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.39807000", + "longitude": "20.24343000" + }, + { + "id": "88812", + "name": "Łącko", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.55757000", + "longitude": "20.43586000" + }, + { + "id": "88813", + "name": "Łączany", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98407000", + "longitude": "19.57867000" + }, + { + "id": "88828", + "name": "Łętownia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.69745000", + "longitude": "19.87109000" + }, + { + "id": "88790", + "name": "Łopuszna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.47281000", + "longitude": "20.13021000" + }, + { + "id": "88794", + "name": "Łososina Dolna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.74977000", + "longitude": "20.63129000" + }, + { + "id": "88806", + "name": "Łużna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71288000", + "longitude": "21.04637000" + }, + { + "id": "88802", + "name": "Łukowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09300000", + "longitude": "20.97548000" + }, + { + "id": "88804", + "name": "Łukowica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.61110000", + "longitude": "20.48289000" + }, + { + "id": "88871", + "name": "Żabno", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13334000", + "longitude": "20.88615000" + }, + { + "id": "88874", + "name": "Żarki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08259000", + "longitude": "19.35199000" + }, + { + "id": "88879", + "name": "Żegocina", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.81395000", + "longitude": "20.41964000" + }, + { + "id": "88896", + "name": "Żurowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82636000", + "longitude": "21.16894000" + }, + { + "id": "85790", + "name": "Babice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05565000", + "longitude": "19.19955000" + }, + { + "id": "85794", + "name": "Bachowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95812000", + "longitude": "19.49369000" + }, + { + "id": "85795", + "name": "Balice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08799000", + "longitude": "19.79462000" + }, + { + "id": "85797", + "name": "Balin", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.16799000", + "longitude": "19.38340000" + }, + { + "id": "85816", + "name": "Barwałd Średni", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86632000", + "longitude": "19.59360000" + }, + { + "id": "85815", + "name": "Barwałd Górny", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86211000", + "longitude": "19.61746000" + }, + { + "id": "86010", + "name": "Bębło", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.18053000", + "longitude": "19.78741000" + }, + { + "id": "86011", + "name": "Bęczarka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87793000", + "longitude": "19.86723000" + }, + { + "id": "85840", + "name": "Białka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.69306000", + "longitude": "19.67033000" + }, + { + "id": "85841", + "name": "Białka Tatrzańska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.38975000", + "longitude": "20.10507000" + }, + { + "id": "85849", + "name": "Biały Dunajec", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.37380000", + "longitude": "20.00898000" + }, + { + "id": "85869", + "name": "Bieńkówka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.77600000", + "longitude": "19.77179000" + }, + { + "id": "85851", + "name": "Biecz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73596000", + "longitude": "21.26301000" + }, + { + "id": "85871", + "name": "Binarowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.75621000", + "longitude": "21.22816000" + }, + { + "id": "85873", + "name": "Biskupice Radłowskie", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.12069000", + "longitude": "20.85943000" + }, + { + "id": "85885", + "name": "Bobowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.70866000", + "longitude": "20.94767000" + }, + { + "id": "85892", + "name": "Bochnia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96905000", + "longitude": "20.43028000" + }, + { + "id": "85916", + "name": "Bolęcin", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.11750000", + "longitude": "19.48116000" + }, + { + "id": "85908", + "name": "Bolechowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.14831000", + "longitude": "19.79273000" + }, + { + "id": "85910", + "name": "Bolesław", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.29729000", + "longitude": "19.48073000" + }, + { + "id": "85918", + "name": "Borek", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01778000", + "longitude": "20.53087000" + }, + { + "id": "85930", + "name": "Borzęcin", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06540000", + "longitude": "20.71103000" + }, + { + "id": "85931", + "name": "Borzęta", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86228000", + "longitude": "19.97924000" + }, + { + "id": "85949", + "name": "Brodła", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04331000", + "longitude": "19.58879000" + }, + { + "id": "85946", + "name": "Brody", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86742000", + "longitude": "19.69746000" + }, + { + "id": "85977", + "name": "Brzączowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87478000", + "longitude": "20.03709000" + }, + { + "id": "85968", + "name": "Brzeźnica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96497000", + "longitude": "19.61952000" + }, + { + "id": "85960", + "name": "Brzesko", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96911000", + "longitude": "20.60606000" + }, + { + "id": "85961", + "name": "Brzeszcze", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98203000", + "longitude": "19.15157000" + }, + { + "id": "85962", + "name": "Brzezinka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04237000", + "longitude": "19.19020000" + }, + { + "id": "85986", + "name": "Budzów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.77622000", + "longitude": "19.67274000" + }, + { + "id": "85990", + "name": "Bukowina Tatrzańska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.34302000", + "longitude": "20.10807000" + }, + { + "id": "85991", + "name": "Bukowno", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.26474000", + "longitude": "19.45962000" + }, + { + "id": "85994", + "name": "Bulowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87650000", + "longitude": "19.28873000" + }, + { + "id": "86000", + "name": "Bystra", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64796000", + "longitude": "19.77994000" + }, + { + "id": "86029", + "name": "Chełmek", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10163000", + "longitude": "19.24801000" + }, + { + "id": "86030", + "name": "Chełmiec", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.63051000", + "longitude": "20.66425000" + }, + { + "id": "86043", + "name": "Chocznia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87417000", + "longitude": "19.45438000" + }, + { + "id": "86062", + "name": "Chrzanów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13546000", + "longitude": "19.40203000" + }, + { + "id": "86071", + "name": "Chyżne", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.42672000", + "longitude": "19.66956000" + }, + { + "id": "86094", + "name": "Ciężkowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.78575000", + "longitude": "20.97324000" + }, + { + "id": "86107", + "name": "Czarna Góra", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.37662000", + "longitude": "20.13047000" + }, + { + "id": "86112", + "name": "Czarnochowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.00471000", + "longitude": "20.06790000" + }, + { + "id": "86118", + "name": "Czarny Dunajec", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.43663000", + "longitude": "19.85161000" + }, + { + "id": "86121", + "name": "Czchów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83726000", + "longitude": "20.68056000" + }, + { + "id": "86133", + "name": "Czernichów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98920000", + "longitude": "19.68115000" + }, + { + "id": "86147", + "name": "Czułów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05956000", + "longitude": "19.70106000" + }, + { + "id": "86241", + "name": "Dąbrowa Tarnowska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.17462000", + "longitude": "20.98633000" + }, + { + "id": "86251", + "name": "Dębno", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96701000", + "longitude": "20.71979000" + }, + { + "id": "86164", + "name": "Dobczyce", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88109000", + "longitude": "20.08936000" + }, + { + "id": "86167", + "name": "Dobra", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71793000", + "longitude": "20.25347000" + }, + { + "id": "86226", + "name": "Dziewin", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07554000", + "longitude": "20.45491000" + }, + { + "id": "86269", + "name": "Filipowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15573000", + "longitude": "19.56579000" + }, + { + "id": "86277", + "name": "Frydman", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.44927000", + "longitude": "20.22961000" + }, + { + "id": "86278", + "name": "Frydrychowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90481000", + "longitude": "19.41936000" + }, + { + "id": "86426", + "name": "Głogoczów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89452000", + "longitude": "19.87410000" + }, + { + "id": "86293", + "name": "Gdów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90818000", + "longitude": "20.19879000" + }, + { + "id": "86295", + "name": "Giebułtów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.14556000", + "longitude": "19.87856000" + }, + { + "id": "86298", + "name": "Gierałtowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94426000", + "longitude": "19.39070000" + }, + { + "id": "86315", + "name": "Gnojnik", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89397000", + "longitude": "20.60863000" + }, + { + "id": "86333", + "name": "Gorenice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.20800000", + "longitude": "19.62038000" + }, + { + "id": "86334", + "name": "Gorlice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.65563000", + "longitude": "21.16035000" + }, + { + "id": "86402", + "name": "Gręboszów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24501000", + "longitude": "20.77669000" + }, + { + "id": "86379", + "name": "Grojec", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98147000", + "longitude": "19.23792000" + }, + { + "id": "86381", + "name": "Gromnik", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83843000", + "longitude": "20.96123000" + }, + { + "id": "86387", + "name": "Gruszów Wielki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19163000", + "longitude": "21.03144000" + }, + { + "id": "86389", + "name": "Grybów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.62439000", + "longitude": "20.94797000" + }, + { + "id": "86393", + "name": "Grzechynia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71360000", + "longitude": "19.64561000" + }, + { + "id": "86443", + "name": "Harbutowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.81235000", + "longitude": "19.78045000" + }, + { + "id": "86461", + "name": "Inwałd", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86355000", + "longitude": "19.39276000" + }, + { + "id": "86465", + "name": "Iwkowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.81716000", + "longitude": "20.59018000" + }, + { + "id": "86471", + "name": "Izdebnik", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87218000", + "longitude": "19.76801000" + }, + { + "id": "86480", + "name": "Jabłonka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.47968000", + "longitude": "19.69370000" + }, + { + "id": "86487", + "name": "Jadowniki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95884000", + "longitude": "20.64434000" + }, + { + "id": "86488", + "name": "Jadowniki Mokre", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.16546000", + "longitude": "20.72845000" + }, + { + "id": "86497", + "name": "Janowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89154000", + "longitude": "20.86081000" + }, + { + "id": "86510", + "name": "Jaroszowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86267000", + "longitude": "19.51962000" + }, + { + "id": "86517", + "name": "Jasień", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96988000", + "longitude": "20.57190000" + }, + { + "id": "86513", + "name": "Jasienica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82281000", + "longitude": "19.84191000" + }, + { + "id": "86526", + "name": "Jastrzębia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.79733000", + "longitude": "20.88089000" + }, + { + "id": "86533", + "name": "Jawornik", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85580000", + "longitude": "19.89315000" + }, + { + "id": "86554", + "name": "Jerzmanowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.21267000", + "longitude": "19.74672000" + }, + { + "id": "86564", + "name": "Jodłówka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99295000", + "longitude": "20.54821000" + }, + { + "id": "86565", + "name": "Jodłówka-Wałki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04992000", + "longitude": "21.13332000" + }, + { + "id": "86568", + "name": "Jordanów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64935000", + "longitude": "19.82981000" + }, + { + "id": "86571", + "name": "Juszczyn", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.69290000", + "longitude": "19.69128000" + }, + { + "id": "86588", + "name": "Kalwaria Zebrzydowska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86759000", + "longitude": "19.67720000" + }, + { + "id": "86599", + "name": "Kamień", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01215000", + "longitude": "19.58536000" + }, + { + "id": "86590", + "name": "Kamienica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.57533000", + "longitude": "20.34505000" + }, + { + "id": "86604", + "name": "Kamionka Wielka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56848000", + "longitude": "20.82364000" + }, + { + "id": "86619", + "name": "Kasina Wielka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72969000", + "longitude": "20.13554000" + }, + { + "id": "86620", + "name": "Kaszów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03884000", + "longitude": "19.71934000" + }, + { + "id": "86860", + "name": "Kłaj", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99246000", + "longitude": "20.29904000" + }, + { + "id": "86859", + "name": "Kęty", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88214000", + "longitude": "19.22333000" + }, + { + "id": "86642", + "name": "Klecza Dolna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88291000", + "longitude": "19.53764000" + }, + { + "id": "86649", + "name": "Klikuszowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.51930000", + "longitude": "19.98490000" + }, + { + "id": "86651", + "name": "Klimontów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.22843000", + "longitude": "20.31990000" + }, + { + "id": "86654", + "name": "Klucze", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.33565000", + "longitude": "19.56236000" + }, + { + "id": "86656", + "name": "Kluszkowce", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.45100000", + "longitude": "20.30179000" + }, + { + "id": "86755", + "name": "Kościelisko", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.29073000", + "longitude": "19.88929000" + }, + { + "id": "86664", + "name": "Kobylanka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.66891000", + "longitude": "21.22293000" + }, + { + "id": "86675", + "name": "Kokotów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01254000", + "longitude": "20.07829000" + }, + { + "id": "86709", + "name": "Korzenna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.68635000", + "longitude": "20.84355000" + }, + { + "id": "86718", + "name": "Koszyce", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97226000", + "longitude": "20.94166000" + }, + { + "id": "86719", + "name": "Koszyce Wielkie", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98076000", + "longitude": "20.94552000" + }, + { + "id": "86739", + "name": "Kozłów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.48394000", + "longitude": "20.02456000" + }, + { + "id": "86763", + "name": "Kraków", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07262000", + "longitude": "19.93250000" + }, + { + "id": "86787", + "name": "Krościenko nad Dunajcem", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.44081000", + "longitude": "20.42624000" + }, + { + "id": "86788", + "name": "Krośnica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.44787000", + "longitude": "20.33956000" + }, + { + "id": "86795", + "name": "Krynica-Zdrój", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.42225000", + "longitude": "20.95942000" + }, + { + "id": "86799", + "name": "Kryspinów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04380000", + "longitude": "19.79822000" + }, + { + "id": "86827", + "name": "Krzęcin", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94316000", + "longitude": "19.74157000" + }, + { + "id": "86801", + "name": "Krzczonów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73813000", + "longitude": "19.91821000" + }, + { + "id": "86804", + "name": "Krzeczów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98876000", + "longitude": "20.48779000" + }, + { + "id": "86812", + "name": "Krzeszów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.75915000", + "longitude": "19.48915000" + }, + { + "id": "86808", + "name": "Krzeszowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.14248000", + "longitude": "19.63223000" + }, + { + "id": "86816", + "name": "Krzyszkowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88346000", + "longitude": "19.92285000" + }, + { + "id": "86817", + "name": "Krzywaczka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89353000", + "longitude": "19.83221000" + }, + { + "id": "86836", + "name": "Kuków", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73252000", + "longitude": "19.48485000" + }, + { + "id": "86848", + "name": "Kwaczała", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06408000", + "longitude": "19.49215000" + }, + { + "id": "86868", + "name": "Lachowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71555000", + "longitude": "19.47455000" + }, + { + "id": "86870", + "name": "Lanckorona", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.84496000", + "longitude": "19.71578000" + }, + { + "id": "86871", + "name": "Lasek", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.50883000", + "longitude": "19.98078000" + }, + { + "id": "86872", + "name": "Laskowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.76147000", + "longitude": "20.45045000" + }, + { + "id": "86887", + "name": "Leńcze", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89895000", + "longitude": "19.73539000" + }, + { + "id": "86891", + "name": "Leśnica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.40092000", + "longitude": "20.06001000" + }, + { + "id": "86896", + "name": "Libertów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97242000", + "longitude": "19.89461000" + }, + { + "id": "86897", + "name": "Libiąż", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10396000", + "longitude": "19.31568000" + }, + { + "id": "86902", + "name": "Limanowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.70594000", + "longitude": "20.42204000" + }, + { + "id": "86908", + "name": "Lipinki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67296000", + "longitude": "21.29288000" + }, + { + "id": "86913", + "name": "Lipnica Mała", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.51507000", + "longitude": "19.63497000" + }, + { + "id": "86914", + "name": "Lipnica Wielka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.70489000", + "longitude": "20.86844000" + }, + { + "id": "86915", + "name": "Lipnik", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.78902000", + "longitude": "20.08455000" + }, + { + "id": "86926", + "name": "Lisia Góra", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08039000", + "longitude": "21.04397000" + }, + { + "id": "86928", + "name": "Liszki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03884000", + "longitude": "19.76835000" + }, + { + "id": "86942", + "name": "Lubień", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71921000", + "longitude": "19.97847000" + }, + { + "id": "86952", + "name": "Lubomierz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.60854000", + "longitude": "20.20214000" + }, + { + "id": "86965", + "name": "Ludźmierz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.46656000", + "longitude": "19.98250000" + }, + { + "id": "86966", + "name": "Luszowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.17415000", + "longitude": "19.40426000" + }, + { + "id": "86984", + "name": "Maków Podhalański", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73008000", + "longitude": "19.67711000" + }, + { + "id": "86988", + "name": "Malec", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.92106000", + "longitude": "19.24530000" + }, + { + "id": "86990", + "name": "Maniowy", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.45976000", + "longitude": "20.26454000" + }, + { + "id": "87002", + "name": "Maszkienice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98920000", + "longitude": "20.68657000" + }, + { + "id": "87125", + "name": "Mędrzechów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28221000", + "longitude": "20.94749000" + }, + { + "id": "87126", + "name": "Mętków", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05251000", + "longitude": "19.37525000" + }, + { + "id": "87067", + "name": "Miękinia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15557000", + "longitude": "19.60871000" + }, + { + "id": "87020", + "name": "Michałowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15898000", + "longitude": "19.98044000" + }, + { + "id": "87026", + "name": "Miechów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.35648000", + "longitude": "20.02788000" + }, + { + "id": "87027", + "name": "Miechów Charsznica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.39599000", + "longitude": "19.95031000" + }, + { + "id": "87077", + "name": "Mników", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06044000", + "longitude": "19.72595000" + }, + { + "id": "87082", + "name": "Modlnica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.12958000", + "longitude": "19.86461000" + }, + { + "id": "87083", + "name": "Modlniczka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.11739000", + "longitude": "19.85530000" + }, + { + "id": "87085", + "name": "Mogilany", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93890000", + "longitude": "19.88972000" + }, + { + "id": "87098", + "name": "Moszczenica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73668000", + "longitude": "21.09238000" + }, + { + "id": "87109", + "name": "Mszana Dolna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67432000", + "longitude": "20.07992000" + }, + { + "id": "87110", + "name": "Mszana Górna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.66202000", + "longitude": "20.09734000" + }, + { + "id": "87115", + "name": "Muszyna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.35661000", + "longitude": "20.89718000" + }, + { + "id": "87122", + "name": "Myślachowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.18514000", + "longitude": "19.48116000" + }, + { + "id": "87123", + "name": "Myślenice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83383000", + "longitude": "19.93830000" + }, + { + "id": "87137", + "name": "Naprawa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64657000", + "longitude": "19.87916000" + }, + { + "id": "87142", + "name": "Nawojowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56686000", + "longitude": "20.73927000" + }, + { + "id": "87145", + "name": "Nidek", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90492000", + "longitude": "19.32461000" + }, + { + "id": "87159", + "name": "Niedźwiedź", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.62100000", + "longitude": "20.07794000" + }, + { + "id": "87154", + "name": "Niedomice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10737000", + "longitude": "20.89548000" + }, + { + "id": "87156", + "name": "Niedzica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.41008000", + "longitude": "20.30273000" + }, + { + "id": "87167", + "name": "Niepołomice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04066000", + "longitude": "20.22257000" + }, + { + "id": "87172", + "name": "Nowa Góra", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.17305000", + "longitude": "19.59120000" + }, + { + "id": "87177", + "name": "Nowa Wieś", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90746000", + "longitude": "19.21646000" + }, + { + "id": "87181", + "name": "Nowe Brzesko", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13222000", + "longitude": "20.37663000" + }, + { + "id": "87206", + "name": "Nowy Sącz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.62177000", + "longitude": "20.69705000" + }, + { + "id": "87207", + "name": "Nowy Targ", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.47783000", + "longitude": "20.03228000" + }, + { + "id": "87209", + "name": "Nowy Wiśnicz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91465000", + "longitude": "20.46109000" + }, + { + "id": "87323", + "name": "Ołpiny", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80686000", + "longitude": "21.20464000" + }, + { + "id": "87325", + "name": "Oświęcim", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03437000", + "longitude": "19.21037000" + }, + { + "id": "87225", + "name": "Ochojno", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95255000", + "longitude": "19.97452000" + }, + { + "id": "87227", + "name": "Ochotnica Dolna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.52682000", + "longitude": "20.34265000" + }, + { + "id": "87233", + "name": "Okocim", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94890000", + "longitude": "20.60160000" + }, + { + "id": "87237", + "name": "Olesno", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.20152000", + "longitude": "20.92578000" + }, + { + "id": "87242", + "name": "Olkusz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28130000", + "longitude": "19.56503000" + }, + { + "id": "87243", + "name": "Olszana", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56748000", + "longitude": "20.52126000" + }, + { + "id": "87251", + "name": "Olszówka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.61455000", + "longitude": "20.02885000" + }, + { + "id": "87278", + "name": "Osieczany", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.84252000", + "longitude": "19.98207000" + }, + { + "id": "87284", + "name": "Osiek", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24353000", + "longitude": "19.60047000" + }, + { + "id": "87291", + "name": "Osielec", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.68079000", + "longitude": "19.78243000" + }, + { + "id": "87314", + "name": "Ostrężnica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19262000", + "longitude": "19.57077000" + }, + { + "id": "87302", + "name": "Ostrowsko", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.47616000", + "longitude": "20.10052000" + }, + { + "id": "87339", + "name": "Palcza", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80454000", + "longitude": "19.74389000" + }, + { + "id": "87354", + "name": "Pawlikowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95310000", + "longitude": "20.05486000" + }, + { + "id": "87863", + "name": "Płaza", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09988000", + "longitude": "19.46451000" + }, + { + "id": "87361", + "name": "Pcim", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.75166000", + "longitude": "19.97108000" + }, + { + "id": "87375", + "name": "Piekary", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02495000", + "longitude": "19.79616000" + }, + { + "id": "87377", + "name": "Piekielnik", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.47688000", + "longitude": "19.76810000" + }, + { + "id": "87400", + "name": "Piwniczna-Zdrój", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.44056000", + "longitude": "20.71423000" + }, + { + "id": "87408", + "name": "Pleśna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.92642000", + "longitude": "20.94526000" + }, + { + "id": "87419", + "name": "Podłęże", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01458000", + "longitude": "20.16781000" + }, + { + "id": "87415", + "name": "Podegrodzie", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.57688000", + "longitude": "20.58855000" + }, + { + "id": "87418", + "name": "Podwilk", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.54760000", + "longitude": "19.73874000" + }, + { + "id": "87424", + "name": "Pogórska Wola", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01855000", + "longitude": "21.15795000" + }, + { + "id": "87421", + "name": "Pogorzyce", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10186000", + "longitude": "19.42228000" + }, + { + "id": "87431", + "name": "Polanka Wielka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98501000", + "longitude": "19.32615000" + }, + { + "id": "87441", + "name": "Ponikiew", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83311000", + "longitude": "19.46571000" + }, + { + "id": "87447", + "name": "Porąbka Uszewska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94260000", + "longitude": "20.69052000" + }, + { + "id": "87448", + "name": "Poręba", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.79645000", + "longitude": "20.01718000" + }, + { + "id": "87450", + "name": "Poręba Spytkowska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93995000", + "longitude": "20.55405000" + }, + { + "id": "87451", + "name": "Poręba Wielka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01116000", + "longitude": "19.28375000" + }, + { + "id": "87445", + "name": "Poronin", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.33781000", + "longitude": "20.00291000" + }, + { + "id": "87470", + "name": "Powiat bocheński", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96911000", + "longitude": "20.43078000" + }, + { + "id": "87474", + "name": "Powiat brzeski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97170000", + "longitude": "20.60572000" + }, + { + "id": "87487", + "name": "Powiat chrzanowski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13565000", + "longitude": "19.40434000" + }, + { + "id": "87496", + "name": "Powiat dąbrowski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.17572000", + "longitude": "20.97895000" + }, + { + "id": "87507", + "name": "Powiat gorlicki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.66452000", + "longitude": "21.16842000" + }, + { + "id": "87550", + "name": "Powiat krakowski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.14347000", + "longitude": "19.91409000" + }, + { + "id": "87570", + "name": "Powiat limanowski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.70761000", + "longitude": "20.42444000" + }, + { + "id": "87583", + "name": "Powiat miechowski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.35715000", + "longitude": "20.03290000" + }, + { + "id": "87594", + "name": "Powiat myślenicki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83394000", + "longitude": "19.94482000" + }, + { + "id": "87605", + "name": "Powiat nowosądecki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.63467000", + "longitude": "20.69824000" + }, + { + "id": "87606", + "name": "Powiat nowotarski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.47663000", + "longitude": "20.04305000" + }, + { + "id": "87627", + "name": "Powiat oświęcimski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03796000", + "longitude": "19.22771000" + }, + { + "id": "87613", + "name": "Powiat olkuski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.27932000", + "longitude": "19.55772000" + }, + { + "id": "87641", + "name": "Powiat proszowicki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19241000", + "longitude": "20.28413000" + }, + { + "id": "87689", + "name": "Powiat suski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.74462000", + "longitude": "19.59103000" + }, + { + "id": "87703", + "name": "Powiat tarnowski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05449000", + "longitude": "20.90527000" + }, + { + "id": "87704", + "name": "Powiat tatrzański", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.30420000", + "longitude": "19.94800000" + }, + { + "id": "87712", + "name": "Powiat wadowicki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89032000", + "longitude": "19.48374000" + }, + { + "id": "87717", + "name": "Powiat wielicki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98570000", + "longitude": "20.05494000" + }, + { + "id": "87792", + "name": "Proszowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19275000", + "longitude": "20.28909000" + }, + { + "id": "87802", + "name": "Przecieszyn", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97838000", + "longitude": "19.17046000" + }, + { + "id": "87803", + "name": "Przeciszów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.00647000", + "longitude": "19.37576000" + }, + { + "id": "87809", + "name": "Przeginia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.23831000", + "longitude": "19.68853000" + }, + { + "id": "87820", + "name": "Przyborów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03035000", + "longitude": "20.66279000" + }, + { + "id": "87830", + "name": "Przytkowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91785000", + "longitude": "19.68570000" + }, + { + "id": "87840", + "name": "Psary", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.17242000", + "longitude": "19.52953000" + }, + { + "id": "87869", + "name": "Raba Wyżna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56681000", + "longitude": "19.87967000" + }, + { + "id": "87870", + "name": "Rabka-Zdrój", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.60889000", + "longitude": "19.96654000" + }, + { + "id": "87877", + "name": "Racławice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19344000", + "longitude": "19.67686000" + }, + { + "id": "87905", + "name": "Radłów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08419000", + "longitude": "20.84967000" + }, + { + "id": "87880", + "name": "Radgoszcz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.20580000", + "longitude": "21.11315000" + }, + { + "id": "87883", + "name": "Radocza", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91774000", + "longitude": "19.47498000" + }, + { + "id": "87900", + "name": "Radziszów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93531000", + "longitude": "19.81522000" + }, + { + "id": "87908", + "name": "Rajsko", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01193000", + "longitude": "19.19294000" + }, + { + "id": "88036", + "name": "Rączna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.00984000", + "longitude": "19.76784000" + }, + { + "id": "87924", + "name": "Regulice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08314000", + "longitude": "19.52785000" + }, + { + "id": "87942", + "name": "Roczyny", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85370000", + "longitude": "19.31568000" + }, + { + "id": "87953", + "name": "Rokiciny", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.57243000", + "longitude": "19.92302000" + }, + { + "id": "87960", + "name": "Ropa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.59146000", + "longitude": "21.04431000" + }, + { + "id": "87973", + "name": "Rudawa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.12151000", + "longitude": "19.71239000" + }, + { + "id": "87980", + "name": "Rudnik", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85243000", + "longitude": "19.84740000" + }, + { + "id": "87989", + "name": "Rusocice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99604000", + "longitude": "19.60648000" + }, + { + "id": "88003", + "name": "Ryczów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98103000", + "longitude": "19.55017000" + }, + { + "id": "88006", + "name": "Ryglice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87887000", + "longitude": "21.13748000" + }, + { + "id": "88013", + "name": "Rytro", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.48904000", + "longitude": "20.66631000" + }, + { + "id": "88031", + "name": "Rząska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09713000", + "longitude": "19.84509000" + }, + { + "id": "88021", + "name": "Rzepiennik Strzyżewski", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80542000", + "longitude": "21.03599000" + }, + { + "id": "88023", + "name": "Rzeszotary", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94625000", + "longitude": "19.97280000" + }, + { + "id": "88026", + "name": "Rzezawa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98997000", + "longitude": "20.51508000" + }, + { + "id": "88029", + "name": "Rzozów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95398000", + "longitude": "19.79668000" + }, + { + "id": "88030", + "name": "Rzyki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.81129000", + "longitude": "19.39619000" + }, + { + "id": "88047", + "name": "Sanka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06871000", + "longitude": "19.64596000" + }, + { + "id": "88341", + "name": "Słomniki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24012000", + "longitude": "20.08224000" + }, + { + "id": "88342", + "name": "Słopnice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.68496000", + "longitude": "20.34325000" + }, + { + "id": "88351", + "name": "Słupiec", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.32787000", + "longitude": "21.19374000" + }, + { + "id": "88326", + "name": "Sąspów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.22887000", + "longitude": "19.77007000" + }, + { + "id": "88330", + "name": "Sękowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.62217000", + "longitude": "21.19769000" + }, + { + "id": "88061", + "name": "Sidzina", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.59146000", + "longitude": "19.71119000" + }, + { + "id": "88067", + "name": "Siedliska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87163000", + "longitude": "20.99625000" + }, + { + "id": "88073", + "name": "Siemiechów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85359000", + "longitude": "20.90595000" + }, + { + "id": "88078", + "name": "Sieniawa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.53947000", + "longitude": "19.93014000" + }, + { + "id": "88084", + "name": "Siepraw", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91437000", + "longitude": "19.95864000" + }, + { + "id": "88086", + "name": "Sieradza", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13499000", + "longitude": "20.92947000" + }, + { + "id": "88105", + "name": "Skała", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.23052000", + "longitude": "19.85363000" + }, + { + "id": "88102", + "name": "Skawica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67718000", + "longitude": "19.62321000" + }, + { + "id": "88103", + "name": "Skawina", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97524000", + "longitude": "19.82869000" + }, + { + "id": "88104", + "name": "Skawinki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82281000", + "longitude": "19.71256000" + }, + { + "id": "88110", + "name": "Skomielna Czarna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72709000", + "longitude": "19.83633000" + }, + { + "id": "88116", + "name": "Skrzydlna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.75343000", + "longitude": "20.18618000" + }, + { + "id": "88117", + "name": "Skrzyszów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99373000", + "longitude": "21.06139000" + }, + { + "id": "88128", + "name": "Smęgorzów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.22843000", + "longitude": "21.00414000" + }, + { + "id": "88151", + "name": "Sosnowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93995000", + "longitude": "19.71514000" + }, + { + "id": "88162", + "name": "Spytkowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99671000", + "longitude": "19.51103000" + }, + { + "id": "88166", + "name": "Stanisław Dolny", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90470000", + "longitude": "19.65334000" + }, + { + "id": "88167", + "name": "Stanisław Górny", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91155000", + "longitude": "19.62931000" + }, + { + "id": "88168", + "name": "Stanisławice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98550000", + "longitude": "20.35123000" + }, + { + "id": "88194", + "name": "Stary Sącz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56364000", + "longitude": "20.63496000" + }, + { + "id": "88196", + "name": "Stary Wiśnicz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.92548000", + "longitude": "20.48641000" + }, + { + "id": "88237", + "name": "Stróża", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.79628000", + "longitude": "19.92379000" + }, + { + "id": "88216", + "name": "Stronie", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83056000", + "longitude": "19.67497000" + }, + { + "id": "88220", + "name": "Stryszawa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71327000", + "longitude": "19.52185000" + }, + { + "id": "88221", + "name": "Stryszów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82569000", + "longitude": "19.61763000" + }, + { + "id": "88271", + "name": "Sułkowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.84053000", + "longitude": "19.80097000" + }, + { + "id": "88272", + "name": "Sułoszowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.26789000", + "longitude": "19.73282000" + }, + { + "id": "88248", + "name": "Sucha Beskidzka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.74188000", + "longitude": "19.59429000" + }, + { + "id": "88262", + "name": "Sulęcin", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "52.44429000", + "longitude": "15.11676000" + }, + { + "id": "88284", + "name": "Szaflary", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.42655000", + "longitude": "20.02713000" + }, + { + "id": "88287", + "name": "Szarów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99505000", + "longitude": "20.26960000" + }, + { + "id": "88290", + "name": "Szczawnica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.42437000", + "longitude": "20.48487000" + }, + { + "id": "88299", + "name": "Szczucin", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.30957000", + "longitude": "21.07444000" + }, + { + "id": "88301", + "name": "Szczurowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.11915000", + "longitude": "20.63610000" + }, + { + "id": "88309", + "name": "Szerzyny", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80919000", + "longitude": "21.24670000" + }, + { + "id": "88323", + "name": "Szynwałd", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96767000", + "longitude": "21.12293000" + }, + { + "id": "88355", + "name": "Targanice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80575000", + "longitude": "19.32444000" + }, + { + "id": "88356", + "name": "Targowisko", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98473000", + "longitude": "20.29346000" + }, + { + "id": "88365", + "name": "Tarnów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01381000", + "longitude": "20.98698000" + }, + { + "id": "88361", + "name": "Tarnowiec", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98164000", + "longitude": "20.98655000" + }, + { + "id": "88372", + "name": "Tenczynek", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.11986000", + "longitude": "19.61308000" + }, + { + "id": "88376", + "name": "Tokarnia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72720000", + "longitude": "19.87161000" + }, + { + "id": "88378", + "name": "Tomaszkowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97918000", + "longitude": "20.09966000" + }, + { + "id": "88381", + "name": "Tomice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89773000", + "longitude": "19.48357000" + }, + { + "id": "88382", + "name": "Toporzysko", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.62495000", + "longitude": "19.80226000" + }, + { + "id": "88414", + "name": "Trąbki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96226000", + "longitude": "20.14240000" + }, + { + "id": "88395", + "name": "Trzciana", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.84485000", + "longitude": "20.37415000" + }, + { + "id": "88407", + "name": "Trzebinia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15931000", + "longitude": "19.46966000" + }, + { + "id": "88410", + "name": "Trzebunia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.79146000", + "longitude": "19.84715000" + }, + { + "id": "88412", + "name": "Trzemeśnia", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82752000", + "longitude": "20.02207000" + }, + { + "id": "88419", + "name": "Tuchów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89485000", + "longitude": "21.05407000" + }, + { + "id": "88439", + "name": "Tylicz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.39598000", + "longitude": "21.02368000" + }, + { + "id": "88440", + "name": "Tymbark", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72859000", + "longitude": "20.32539000" + }, + { + "id": "88467", + "name": "Uście Gorlickie", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.52192000", + "longitude": "21.13821000" + }, + { + "id": "88469", + "name": "Wadowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88335000", + "longitude": "19.49292000" + }, + { + "id": "88472", + "name": "Waksmund", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.48207000", + "longitude": "20.07563000" + }, + { + "id": "88486", + "name": "Wawrzeńczyce", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.11012000", + "longitude": "20.31612000" + }, + { + "id": "88652", + "name": "Włosienica", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01822000", + "longitude": "19.31671000" + }, + { + "id": "88640", + "name": "Węglówka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73424000", + "longitude": "20.08575000" + }, + { + "id": "88644", + "name": "Węgrzce Wielkie", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01491000", + "longitude": "20.11082000" + }, + { + "id": "88563", + "name": "Wiśniowa", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.78780000", + "longitude": "20.11502000" + }, + { + "id": "88502", + "name": "Wieliczka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98738000", + "longitude": "20.06473000" + }, + { + "id": "88505", + "name": "Wielka Wieś", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93631000", + "longitude": "20.82304000" + }, + { + "id": "88514", + "name": "Wieprz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89093000", + "longitude": "19.35688000" + }, + { + "id": "88523", + "name": "Wierzchosławice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02478000", + "longitude": "20.85677000" + }, + { + "id": "88528", + "name": "Wietrzychowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19097000", + "longitude": "20.76502000" + }, + { + "id": "88548", + "name": "Witanowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91796000", + "longitude": "19.52579000" + }, + { + "id": "88550", + "name": "Witkowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90746000", + "longitude": "19.27963000" + }, + { + "id": "88602", + "name": "Woźniki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93774000", + "longitude": "19.49078000" + }, + { + "id": "88600", + "name": "Wołowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98876000", + "longitude": "19.72630000" + }, + { + "id": "88577", + "name": "Wojnicz", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95800000", + "longitude": "20.83785000" + }, + { + "id": "88582", + "name": "Wola Batorska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05262000", + "longitude": "20.26617000" + }, + { + "id": "88583", + "name": "Wola Dębińska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98214000", + "longitude": "20.68777000" + }, + { + "id": "88584", + "name": "Wola Filipowska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13433000", + "longitude": "19.58013000" + }, + { + "id": "88587", + "name": "Wola Radziszowska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90558000", + "longitude": "19.78827000" + }, + { + "id": "88591", + "name": "Wola Zabierzowska", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07257000", + "longitude": "20.33217000" + }, + { + "id": "88594", + "name": "Wolbrom", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.37957000", + "longitude": "19.75831000" + }, + { + "id": "88607", + "name": "Wrząsowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95862000", + "longitude": "19.94654000" + }, + { + "id": "88616", + "name": "Wysoka", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90713000", + "longitude": "19.60356000" + }, + { + "id": "88655", + "name": "Zabierzów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.11425000", + "longitude": "19.79788000" + }, + { + "id": "88656", + "name": "Zabierzów Bocheński", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06821000", + "longitude": "20.31896000" + }, + { + "id": "88657", + "name": "Zaborze", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02175000", + "longitude": "19.24067000" + }, + { + "id": "88668", + "name": "Zagórnik", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83710000", + "longitude": "19.37868000" + }, + { + "id": "88670", + "name": "Zagórze", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09449000", + "longitude": "19.40357000" + }, + { + "id": "88673", + "name": "Zakliczyn", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85589000", + "longitude": "20.80935000" + }, + { + "id": "88675", + "name": "Zakopane", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.29899000", + "longitude": "19.94885000" + }, + { + "id": "88680", + "name": "Zakrzów", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82558000", + "longitude": "19.64973000" + }, + { + "id": "88683", + "name": "Zalas", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08033000", + "longitude": "19.62132000" + }, + { + "id": "88698", + "name": "Zarzecze", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.36715000", + "longitude": "19.69591000" + }, + { + "id": "88699", + "name": "Zator", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99604000", + "longitude": "19.43799000" + }, + { + "id": "88706", + "name": "Zawoja", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64396000", + "longitude": "19.54227000" + }, + { + "id": "88745", + "name": "Złota", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88059000", + "longitude": "20.69326000" + }, + { + "id": "88720", + "name": "Zebrzydowice", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89032000", + "longitude": "19.67291000" + }, + { + "id": "88723", + "name": "Zembrzyce", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.77517000", + "longitude": "19.60120000" + }, + { + "id": "88730", + "name": "Zielonki", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "50.12091000", + "longitude": "19.92156000" + }, + { + "id": "88733", + "name": "Zubrzyca Dolna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.52688000", + "longitude": "19.67342000" + }, + { + "id": "88734", + "name": "Zubrzyca Górna", + "state_id": 1635, + "state_code": "MA", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56174000", + "longitude": "19.64973000" + }, + { + "id": "88829", + "name": "Ścinawa", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.41626000", + "longitude": "16.42510000" + }, + { + "id": "88839", + "name": "Środa Śląska", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16406000", + "longitude": "16.59508000" + }, + { + "id": "88865", + "name": "Święta Katarzyna", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.02596000", + "longitude": "17.11464000" + }, + { + "id": "88842", + "name": "Świdnica", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84378000", + "longitude": "16.48859000" + }, + { + "id": "88845", + "name": "Świebodzice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.85974000", + "longitude": "16.31966000" + }, + { + "id": "88851", + "name": "Świeradów-Zdrój", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.90920000", + "longitude": "15.34309000" + }, + { + "id": "88857", + "name": "Świerzawa", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01375000", + "longitude": "15.89516000" + }, + { + "id": "88760", + "name": "Łagów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.15835000", + "longitude": "15.04372000" + }, + { + "id": "88758", + "name": "Łagiewniki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.79088000", + "longitude": "16.84457000" + }, + { + "id": "88878", + "name": "Żarów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.94116000", + "longitude": "16.49466000" + }, + { + "id": "88902", + "name": "Żórawina", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.98080000", + "longitude": "17.03671000" + }, + { + "id": "88886", + "name": "Żerniki Wrocławskie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.03308000", + "longitude": "17.05662000" + }, + { + "id": "88887", + "name": "Żmigród", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.46672000", + "longitude": "16.90564000" + }, + { + "id": "85810", + "name": "Bardo", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.50589000", + "longitude": "16.73986000" + }, + { + "id": "85853", + "name": "Bielany Wrocławskie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.03610000", + "longitude": "16.96770000" + }, + { + "id": "85854", + "name": "Bielawa", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69075000", + "longitude": "16.62300000" + }, + { + "id": "85866", + "name": "Bierutów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12443000", + "longitude": "17.54607000" + }, + { + "id": "85875", + "name": "Biskupin", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.10097000", + "longitude": "17.10442000" + }, + { + "id": "85895", + "name": "Bogatynia", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.90747000", + "longitude": "14.95634000" + }, + { + "id": "85899", + "name": "Boguszów-Gorce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75514000", + "longitude": "16.20494000" + }, + { + "id": "85911", + "name": "Bolesławiec", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.26418000", + "longitude": "15.56970000" + }, + { + "id": "85914", + "name": "Bolków", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.92203000", + "longitude": "16.10111000" + }, + { + "id": "85932", + "name": "Bozkow", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.51315000", + "longitude": "16.57528000" + }, + { + "id": "85959", + "name": "Brzeg Dolny", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.27299000", + "longitude": "16.70815000" + }, + { + "id": "85985", + "name": "Budzów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.59337000", + "longitude": "16.71038000" + }, + { + "id": "86002", + "name": "Bystrzyca", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.96048000", + "longitude": "17.39702000" + }, + { + "id": "86003", + "name": "Bystrzyca Kłodzka", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.30179000", + "longitude": "16.64231000" + }, + { + "id": "86039", + "name": "Chocianów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.41867000", + "longitude": "15.90172000" + }, + { + "id": "86050", + "name": "Chojnów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.27373000", + "longitude": "15.93661000" + }, + { + "id": "86080", + "name": "Ciechów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13218000", + "longitude": "16.56773000" + }, + { + "id": "86085", + "name": "Ciepłowody", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67477000", + "longitude": "16.90871000" + }, + { + "id": "86084", + "name": "Cieplice Śląskie Zdrój", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.86545000", + "longitude": "15.68367000" + }, + { + "id": "86087", + "name": "Cieszków", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63104000", + "longitude": "17.35726000" + }, + { + "id": "86117", + "name": "Czarny Bór", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.77083000", + "longitude": "16.13050000" + }, + { + "id": "86129", + "name": "Czernica", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04609000", + "longitude": "17.24510000" + }, + { + "id": "86261", + "name": "Długołęka", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.17902000", + "longitude": "17.19137000" + }, + { + "id": "86235", + "name": "Dąbie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.10573000", + "longitude": "17.08108000" + }, + { + "id": "86174", + "name": "Dobroszyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.26776000", + "longitude": "17.34205000" + }, + { + "id": "86209", + "name": "Duszniki-Zdrój", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.40327000", + "longitude": "16.39091000" + }, + { + "id": "86215", + "name": "Dziadowa Kłoda", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.23543000", + "longitude": "17.70919000" + }, + { + "id": "86227", + "name": "Dziećmorowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.76947000", + "longitude": "16.35212000" + }, + { + "id": "86225", + "name": "Dzierżoniów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72820000", + "longitude": "16.65141000" + }, + { + "id": "86288", + "name": "Gaworzyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.62773000", + "longitude": "15.88198000" + }, + { + "id": "86408", + "name": "Góra", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.66638000", + "longitude": "16.53494000" + }, + { + "id": "86427", + "name": "Głogów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.66361000", + "longitude": "16.08450000" + }, + { + "id": "86435", + "name": "Głuszyca", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.68743000", + "longitude": "16.37173000" + }, + { + "id": "86436", + "name": "Głuszyca Górna", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.66606000", + "longitude": "16.37585000" + }, + { + "id": "86423", + "name": "Gądów Mały", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11853000", + "longitude": "16.98596000" + }, + { + "id": "86309", + "name": "Gniechowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.98804000", + "longitude": "16.83363000" + }, + { + "id": "86363", + "name": "Grabiszyn", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09369000", + "longitude": "16.97819000" + }, + { + "id": "86364", + "name": "Grabiszynek", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.08703000", + "longitude": "16.98629000" + }, + { + "id": "86401", + "name": "Grębocice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59909000", + "longitude": "16.16741000" + }, + { + "id": "86380", + "name": "Gromadka", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.36063000", + "longitude": "15.76452000" + }, + { + "id": "86392", + "name": "Gryfów Śląski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.03081000", + "longitude": "15.42017000" + }, + { + "id": "86447", + "name": "Henryków", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.65327000", + "longitude": "17.01027000" + }, + { + "id": "86499", + "name": "Janowice Wielkie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.87569000", + "longitude": "15.92322000" + }, + { + "id": "86507", + "name": "Jarnołtów-Jerzmanowo", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12163000", + "longitude": "16.86621000" + }, + { + "id": "86531", + "name": "Jawor", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.05132000", + "longitude": "16.19347000" + }, + { + "id": "86537", + "name": "Jaworzyna Śląska", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.91340000", + "longitude": "16.43241000" + }, + { + "id": "86561", + "name": "Jeżów Sudecki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.93507000", + "longitude": "15.74306000" + }, + { + "id": "86541", + "name": "Jedlina-Zdrój", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72005000", + "longitude": "16.34645000" + }, + { + "id": "86548", + "name": "Jelcz", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.02102000", + "longitude": "17.32095000" + }, + { + "id": "86549", + "name": "Jelcz Laskowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.02134000", + "longitude": "17.31649000" + }, + { + "id": "86550", + "name": "Jelenia Góra", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.89973000", + "longitude": "15.72899000" + }, + { + "id": "86569", + "name": "Jordanów Śląski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.86421000", + "longitude": "16.86873000" + }, + { + "id": "86570", + "name": "Jugów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.62758000", + "longitude": "16.51812000" + }, + { + "id": "86594", + "name": "Kamieniec Wrocławski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07182000", + "longitude": "17.18193000" + }, + { + "id": "86595", + "name": "Kamieniec Ząbkowicki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.52541000", + "longitude": "16.87921000" + }, + { + "id": "86596", + "name": "Kamienna Góra", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.78314000", + "longitude": "16.03037000" + }, + { + "id": "86618", + "name": "Karłowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14132000", + "longitude": "17.05212000" + }, + { + "id": "86615", + "name": "Karpacz", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.77669000", + "longitude": "15.75594000" + }, + { + "id": "86866", + "name": "Kłodzko", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.43488000", + "longitude": "16.66145000" + }, + { + "id": "86852", + "name": "Kąty Wrocławskie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.03098000", + "longitude": "16.76767000" + }, + { + "id": "86636", + "name": "Kiełczów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13999000", + "longitude": "17.17798000" + }, + { + "id": "86661", + "name": "Kobierzyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.97054000", + "longitude": "16.93508000" + }, + { + "id": "86722", + "name": "Kotla", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.74542000", + "longitude": "16.03575000" + }, + { + "id": "86729", + "name": "Kowale-Popiele", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13090000", + "longitude": "17.10175000" + }, + { + "id": "86731", + "name": "Kowary", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.79313000", + "longitude": "15.83559000" + }, + { + "id": "86733", + "name": "Kozanów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14447000", + "longitude": "16.96937000" + }, + { + "id": "86789", + "name": "Krośnice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.47641000", + "longitude": "17.35917000" + }, + { + "id": "86811", + "name": "Krzeszów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.73434000", + "longitude": "16.06991000" + }, + { + "id": "86813", + "name": "Krzyki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07085000", + "longitude": "16.99475000" + }, + { + "id": "86831", + "name": "Księże Małe-Księże Wielkie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07293000", + "longitude": "17.08881000" + }, + { + "id": "86835", + "name": "Kudowa-Zdrój", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44297000", + "longitude": "16.24397000" + }, + { + "id": "86837", + "name": "Kunice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.22231000", + "longitude": "16.24809000" + }, + { + "id": "86977", + "name": "Lądek-Zdrój", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.34371000", + "longitude": "16.87946000" + }, + { + "id": "86889", + "name": "Leśna", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.02431000", + "longitude": "15.26413000" + }, + { + "id": "86893", + "name": "Leśnica-Ratyń-Pustki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14228000", + "longitude": "16.84773000" + }, + { + "id": "86877", + "name": "Legnica", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.21006000", + "longitude": "16.16190000" + }, + { + "id": "86878", + "name": "Legnickie Pole", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14419000", + "longitude": "16.24208000" + }, + { + "id": "86886", + "name": "Lewin Kłodzki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.40559000", + "longitude": "16.29101000" + }, + { + "id": "86936", + "name": "Lubań", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12014000", + "longitude": "15.28768000" + }, + { + "id": "86935", + "name": "Lubawka", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.70456000", + "longitude": "16.00026000" + }, + { + "id": "86944", + "name": "Lubin", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.40089000", + "longitude": "16.20149000" + }, + { + "id": "86953", + "name": "Lubomierz", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01278000", + "longitude": "15.50969000" + }, + { + "id": "86963", + "name": "Ludwikowice Kłodzkie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.62464000", + "longitude": "16.46052000" + }, + { + "id": "86974", + "name": "Lwówek Śląski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11074000", + "longitude": "15.58582000" + }, + { + "id": "87011", + "name": "Maślice Małe", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14937000", + "longitude": "16.94191000" + }, + { + "id": "87012", + "name": "Maślice Wielkie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16333000", + "longitude": "16.92837000" + }, + { + "id": "86987", + "name": "Malczyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.22038000", + "longitude": "16.49365000" + }, + { + "id": "86991", + "name": "Marciszów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84470000", + "longitude": "16.02116000" + }, + { + "id": "86998", + "name": "Marszowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.17198000", + "longitude": "16.88441000" + }, + { + "id": "87071", + "name": "Miłkowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.25601000", + "longitude": "16.07231000" + }, + { + "id": "87060", + "name": "Międzybórz", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.39626000", + "longitude": "17.66610000" + }, + { + "id": "87063", + "name": "Międzylesie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.14778000", + "longitude": "16.66712000" + }, + { + "id": "87068", + "name": "Miękinia", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.18844000", + "longitude": "16.73595000" + }, + { + "id": "87038", + "name": "Mieroszów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.66589000", + "longitude": "16.18883000" + }, + { + "id": "87050", + "name": "Milicz", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.52770000", + "longitude": "17.27137000" + }, + { + "id": "87053", + "name": "Mirków", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16105000", + "longitude": "17.17026000" + }, + { + "id": "87056", + "name": "Mirsk", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.97054000", + "longitude": "15.38567000" + }, + { + "id": "87103", + "name": "Mrozów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.18817000", + "longitude": "16.78831000" + }, + { + "id": "87120", + "name": "Mysłakowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84123000", + "longitude": "15.77894000" + }, + { + "id": "87163", + "name": "Niemcza", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72007000", + "longitude": "16.83573000" + }, + { + "id": "87173", + "name": "Nowa Ruda", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.58008000", + "longitude": "16.50164000" + }, + { + "id": "87195", + "name": "Nowogrodziec", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.19543000", + "longitude": "15.39854000" + }, + { + "id": "87322", + "name": "Oława", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.94660000", + "longitude": "17.29260000" + }, + { + "id": "87217", + "name": "Oborniki Śląskie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.30137000", + "longitude": "16.91465000" + }, + { + "id": "87241", + "name": "Oleśnica", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.21338000", + "longitude": "17.38986000" + }, + { + "id": "87245", + "name": "Olszanica", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.20672000", + "longitude": "15.80040000" + }, + { + "id": "87250", + "name": "Olszyna", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.06710000", + "longitude": "15.37228000" + }, + { + "id": "87280", + "name": "Osiedle Henrykowskie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.08999000", + "longitude": "17.05289000" + }, + { + "id": "87281", + "name": "Osiedle Kosmonautów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12753000", + "longitude": "16.96186000" + }, + { + "id": "87286", + "name": "Osiek", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.36717000", + "longitude": "16.23380000" + }, + { + "id": "87298", + "name": "Ostroszowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.64576000", + "longitude": "16.63965000" + }, + { + "id": "87348", + "name": "Partynice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.06798000", + "longitude": "17.01394000" + }, + { + "id": "87352", + "name": "Paszowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01078000", + "longitude": "16.15273000" + }, + { + "id": "87358", + "name": "Pawłowice-Kłokoczyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16495000", + "longitude": "17.09822000" + }, + { + "id": "87404", + "name": "Piława Górna", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.68357000", + "longitude": "16.74359000" + }, + { + "id": "87386", + "name": "Pieńsk", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.24900000", + "longitude": "15.04685000" + }, + { + "id": "87373", + "name": "Piechowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84963000", + "longitude": "15.59887000" + }, + { + "id": "87383", + "name": "Pieszyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.71287000", + "longitude": "16.58232000" + }, + { + "id": "87389", + "name": "Pilczyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13704000", + "longitude": "16.95752000" + }, + { + "id": "87396", + "name": "Pisarzowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14479000", + "longitude": "15.23057000" + }, + { + "id": "87782", + "name": "Poświętne", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.15702000", + "longitude": "17.02904000" + }, + { + "id": "87416", + "name": "Podgórzyn", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.83261000", + "longitude": "15.68161000" + }, + { + "id": "87430", + "name": "Polanica-Zdrój", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.40373000", + "longitude": "16.51271000" + }, + { + "id": "87436", + "name": "Polkowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50391000", + "longitude": "16.07261000" + }, + { + "id": "87756", + "name": "Powiat średzki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12628000", + "longitude": "16.61904000" + }, + { + "id": "87759", + "name": "Powiat świdnicki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.87051000", + "longitude": "16.43043000" + }, + { + "id": "87471", + "name": "Powiat bolesławiecki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.32174000", + "longitude": "15.53215000" + }, + { + "id": "87495", + "name": "Powiat dzierżoniowski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.73506000", + "longitude": "16.69192000" + }, + { + "id": "87519", + "name": "Powiat górowski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63666000", + "longitude": "16.54815000" + }, + { + "id": "87520", + "name": "Powiat głogowski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.67132000", + "longitude": "16.09486000" + }, + { + "id": "87530", + "name": "Powiat jaworski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.03967000", + "longitude": "16.16364000" + }, + { + "id": "87531", + "name": "Powiat jeleniogórski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.89654000", + "longitude": "15.63835000" + }, + { + "id": "87534", + "name": "Powiat kamiennogórski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75603000", + "longitude": "16.00471000" + }, + { + "id": "87563", + "name": "Powiat kłodzki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38882000", + "longitude": "16.61185000" + }, + { + "id": "87565", + "name": "Powiat legnicki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.24113000", + "longitude": "16.10744000" + }, + { + "id": "87575", + "name": "Powiat lubański", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04506000", + "longitude": "15.27739000" + }, + { + "id": "87577", + "name": "Powiat lubiński", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.44172000", + "longitude": "16.24318000" + }, + { + "id": "87579", + "name": "Powiat lwówecki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01559000", + "longitude": "15.52144000" + }, + { + "id": "87586", + "name": "Powiat milicki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50792000", + "longitude": "17.28292000" + }, + { + "id": "87626", + "name": "Powiat oławski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.96062000", + "longitude": "17.30601000" + }, + { + "id": "87612", + "name": "Powiat oleśnicki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.25458000", + "longitude": "17.51679000" + }, + { + "id": "87639", + "name": "Powiat polkowicki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.49982000", + "longitude": "16.01528000" + }, + { + "id": "87686", + "name": "Powiat strzeliński", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.76688000", + "longitude": "17.10629000" + }, + { + "id": "87709", + "name": "Powiat trzebnicki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37195000", + "longitude": "17.04989000" + }, + { + "id": "87714", + "name": "Powiat wałbrzyski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75340000", + "longitude": "16.19865000" + }, + { + "id": "87723", + "name": "Powiat wołowski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37202000", + "longitude": "16.61399000" + }, + { + "id": "87724", + "name": "Powiat wrocławski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04278000", + "longitude": "16.97115000" + }, + { + "id": "87745", + "name": "Powiat złotoryjski", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09129000", + "longitude": "15.87948000" + }, + { + "id": "87744", + "name": "Powiat ząbkowicki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.55669000", + "longitude": "16.87221000" + }, + { + "id": "87741", + "name": "Powiat zgorzelecki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16297000", + "longitude": "15.07863000" + }, + { + "id": "87771", + "name": "Powstańców Śląskich Wschód", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09164000", + "longitude": "17.02470000" + }, + { + "id": "87772", + "name": "Powstańców Śląskich Zachód-Centrum Południow", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09607000", + "longitude": "17.01770000" + }, + { + "id": "87784", + "name": "Pracze Odrzańskie-Janówek", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.18780000", + "longitude": "16.90824000" + }, + { + "id": "87789", + "name": "Prochowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.27307000", + "longitude": "16.36532000" + }, + { + "id": "87796", + "name": "Prusice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37116000", + "longitude": "16.96025000" + }, + { + "id": "87811", + "name": "Przemków", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.52530000", + "longitude": "15.79441000" + }, + { + "id": "87815", + "name": "Przeworno", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.68629000", + "longitude": "17.16588000" + }, + { + "id": "87839", + "name": "Psary", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.18712000", + "longitude": "17.03173000" + }, + { + "id": "87841", + "name": "Psie Pole Południe-Kiełczów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14783000", + "longitude": "17.12744000" + }, + { + "id": "87881", + "name": "Radków", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.50426000", + "longitude": "16.40061000" + }, + { + "id": "87892", + "name": "Radwanice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.05413000", + "longitude": "17.10932000" + }, + { + "id": "87917", + "name": "Ratowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.03308000", + "longitude": "17.27205000" + }, + { + "id": "88034", + "name": "Różanka-Polanka", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14344000", + "longitude": "17.01987000" + }, + { + "id": "87925", + "name": "Rejon alei Kromera", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13375000", + "longitude": "17.07107000" + }, + { + "id": "87927", + "name": "Rejon placu Świętego Macieja", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12056000", + "longitude": "17.03761000" + }, + { + "id": "87926", + "name": "Rejon placu Grunwaldzkiego", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11669000", + "longitude": "17.06126000" + }, + { + "id": "87928", + "name": "Rejon ulicy Borowskiej-Południe", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07660000", + "longitude": "17.02582000" + }, + { + "id": "87929", + "name": "Rejon ulicy Klęczkowskiej", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12970000", + "longitude": "17.03376000" + }, + { + "id": "87930", + "name": "Rejon ulicy Mieleckiej", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09145000", + "longitude": "17.00207000" + }, + { + "id": "87931", + "name": "Rejon ulicy Saperów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.08614000", + "longitude": "17.00050000" + }, + { + "id": "87932", + "name": "Rejon ulicy Traugutta", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.10247000", + "longitude": "17.04827000" + }, + { + "id": "87975", + "name": "Rudna", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50981000", + "longitude": "16.26363000" + }, + { + "id": "88331", + "name": "Sępolno", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.10995000", + "longitude": "17.10200000" + }, + { + "id": "88063", + "name": "Siechnice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.03384000", + "longitude": "17.14743000" + }, + { + "id": "88070", + "name": "Siekierczyn", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12217000", + "longitude": "15.19375000" + }, + { + "id": "88125", + "name": "Smolec", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07322000", + "longitude": "16.88221000" + }, + { + "id": "88155", + "name": "Sołtysowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.15282000", + "longitude": "17.07103000" + }, + { + "id": "88133", + "name": "Sobótka", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.89992000", + "longitude": "16.74441000" + }, + { + "id": "88154", + "name": "Sosnówka", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.81830000", + "longitude": "15.72315000" + }, + { + "id": "88164", + "name": "Stabłowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.15375000", + "longitude": "16.90020000" + }, + { + "id": "88172", + "name": "Stanowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.93106000", + "longitude": "16.37426000" + }, + { + "id": "88175", + "name": "Stara Kamienica", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.91602000", + "longitude": "15.57286000" + }, + { + "id": "88182", + "name": "Stare Bogaczowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84752000", + "longitude": "16.19308000" + }, + { + "id": "88208", + "name": "Stoszowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.59986000", + "longitude": "16.73896000" + }, + { + "id": "88209", + "name": "Strachocin-Wojnów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.10486000", + "longitude": "17.15073000" + }, + { + "id": "88217", + "name": "Stronie Śląskie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.29554000", + "longitude": "16.87397000" + }, + { + "id": "88224", + "name": "Strzegom", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.96264000", + "longitude": "16.35006000" + }, + { + "id": "88231", + "name": "Strzelin", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.78157000", + "longitude": "17.06477000" + }, + { + "id": "88274", + "name": "Sułów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.49966000", + "longitude": "17.16811000" + }, + { + "id": "88259", + "name": "Sulików", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07624000", + "longitude": "15.06792000" + }, + { + "id": "88277", + "name": "Swojczyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11567000", + "longitude": "17.12535000" + }, + { + "id": "88278", + "name": "Syców", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.30814000", + "longitude": "17.71979000" + }, + { + "id": "88291", + "name": "Szczawno-Zdrój", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80352000", + "longitude": "16.25655000" + }, + { + "id": "88296", + "name": "Szczepanów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.19796000", + "longitude": "16.61064000" + }, + { + "id": "88304", + "name": "Szczytna", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.41343000", + "longitude": "16.44743000" + }, + { + "id": "88310", + "name": "Szklarska Poręba", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.82567000", + "longitude": "15.52274000" + }, + { + "id": "88408", + "name": "Trzebnica", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.31076000", + "longitude": "17.06331000" + }, + { + "id": "88432", + "name": "Twardogóra", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.36487000", + "longitude": "17.46878000" + }, + { + "id": "88441", + "name": "Tyniec Mały", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01948000", + "longitude": "16.91998000" + }, + { + "id": "88446", + "name": "Uciechów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75487000", + "longitude": "16.68175000" + }, + { + "id": "88447", + "name": "Udanin", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.03740000", + "longitude": "16.45469000" + }, + { + "id": "88487", + "name": "Wałbrzych", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.77141000", + "longitude": "16.28432000" + }, + { + "id": "88475", + "name": "Walim", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69749000", + "longitude": "16.44482000" + }, + { + "id": "88636", + "name": "Wąsosz", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.56224000", + "longitude": "16.69059000" + }, + { + "id": "88639", + "name": "Węgliniec", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.28753000", + "longitude": "15.22894000" + }, + { + "id": "88559", + "name": "Wińsko", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.47032000", + "longitude": "16.61390000" + }, + { + "id": "88556", + "name": "Wiązów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.81399000", + "longitude": "17.20214000" + }, + { + "id": "88495", + "name": "Widawa-Lipa Piotrowska-Polanowice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.17093000", + "longitude": "17.02164000" + }, + { + "id": "88521", + "name": "Wierzbno", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.93674000", + "longitude": "17.17961000" + }, + { + "id": "88535", + "name": "Wilczyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12944000", + "longitude": "17.15472000" + }, + { + "id": "88543", + "name": "Wilków", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09212000", + "longitude": "15.92824000" + }, + { + "id": "88565", + "name": "Wleń", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01635000", + "longitude": "15.67474000" + }, + { + "id": "88601", + "name": "Wołów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.33656000", + "longitude": "16.64429000" + }, + { + "id": "88575", + "name": "Wojcieszów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.95194000", + "longitude": "15.92185000" + }, + { + "id": "88578", + "name": "Wojszyce", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.05837000", + "longitude": "17.04513000" + }, + { + "id": "88604", + "name": "Wrocław", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.10810000", + "longitude": "17.03859000" + }, + { + "id": "88664", + "name": "Zacisze", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12303000", + "longitude": "17.07465000" + }, + { + "id": "88667", + "name": "Zagrodno", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.19134000", + "longitude": "15.86533000" + }, + { + "id": "88681", + "name": "Zakrzów", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16624000", + "longitude": "17.13688000" + }, + { + "id": "88686", + "name": "Zalesie i Stadion", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11970000", + "longitude": "17.09194000" + }, + { + "id": "88747", + "name": "Złotniki", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13769000", + "longitude": "16.88923000" + }, + { + "id": "88749", + "name": "Złotoryja", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12637000", + "longitude": "15.91979000" + }, + { + "id": "88750", + "name": "Złoty Stok", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44472000", + "longitude": "16.87586000" + }, + { + "id": "88739", + "name": "Ząbkowice Śląskie", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.58969000", + "longitude": "16.81239000" + }, + { + "id": "88725", + "name": "Zgorzelec", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14942000", + "longitude": "15.00835000" + }, + { + "id": "88726", + "name": "Zgorzelisko", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13833000", + "longitude": "17.13365000" + }, + { + "id": "88731", + "name": "Ziębice", + "state_id": 1629, + "state_code": "DS", + "country_id": 176, + "country_code": "PL", + "latitude": "50.60122000", + "longitude": "17.04065000" + }, + { + "id": "85775", + "name": "Abramów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.45647000", + "longitude": "22.31521000" + }, + { + "id": "85776", + "name": "Adamów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.74335000", + "longitude": "22.26414000" + }, + { + "id": "85779", + "name": "Aleksandrów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46630000", + "longitude": "22.89225000" + }, + { + "id": "85786", + "name": "Annopol", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.88551000", + "longitude": "21.85678000" + }, + { + "id": "88843", + "name": "Świdnik", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.21898000", + "longitude": "22.69621000" + }, + { + "id": "88757", + "name": "Łabunie", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.65517000", + "longitude": "23.36620000" + }, + { + "id": "88772", + "name": "Łaszczów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.53332000", + "longitude": "23.72562000" + }, + { + "id": "88773", + "name": "Łaziska", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14226000", + "longitude": "21.87919000" + }, + { + "id": "88816", + "name": "Łęczna", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.30121000", + "longitude": "22.88135000" + }, + { + "id": "88784", + "name": "Łomazy", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.90435000", + "longitude": "23.17656000" + }, + { + "id": "88788", + "name": "Łopiennik Górny", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04080000", + "longitude": "23.01833000" + }, + { + "id": "88805", + "name": "Łuków", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.92900000", + "longitude": "22.37956000" + }, + { + "id": "88803", + "name": "Łukowa", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.37426000", + "longitude": "22.94349000" + }, + { + "id": "88903", + "name": "Żółkiewka", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.90991000", + "longitude": "22.83465000" + }, + { + "id": "88900", + "name": "Żyrzyn", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.49918000", + "longitude": "22.09170000" + }, + { + "id": "85804", + "name": "Baranów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.55786000", + "longitude": "22.13625000" + }, + { + "id": "85818", + "name": "Batorz", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.85050000", + "longitude": "22.49313000" + }, + { + "id": "85831", + "name": "Bełżec", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38453000", + "longitude": "23.43839000" + }, + { + "id": "85832", + "name": "Bełżyce", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.17415000", + "longitude": "22.28027000" + }, + { + "id": "85836", + "name": "Biała Podlaska", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "52.03238000", + "longitude": "23.11652000" + }, + { + "id": "85878", + "name": "Biłgoraj", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.54114000", + "longitude": "22.72204000" + }, + { + "id": "85876", + "name": "Biszcza", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.40146000", + "longitude": "22.65063000" + }, + { + "id": "85920", + "name": "Borki", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.72161000", + "longitude": "22.52129000" + }, + { + "id": "85928", + "name": "Borzechów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09258000", + "longitude": "22.28414000" + }, + { + "id": "85997", + "name": "Bychawa", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01608000", + "longitude": "22.53296000" + }, + { + "id": "86027", + "name": "Chełm", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14312000", + "longitude": "23.47160000" + }, + { + "id": "86045", + "name": "Chodel", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11177000", + "longitude": "22.13269000" + }, + { + "id": "86061", + "name": "Chrzanów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.77256000", + "longitude": "22.60351000" + }, + { + "id": "86097", + "name": "Cyców", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.29928000", + "longitude": "23.14124000" + }, + { + "id": "86124", + "name": "Czemierniki", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.67298000", + "longitude": "22.63887000" + }, + { + "id": "86248", + "name": "Dęblin", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.55912000", + "longitude": "21.84829000" + }, + { + "id": "86253", + "name": "Dębowa Kłoda", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59446000", + "longitude": "23.00640000" + }, + { + "id": "86192", + "name": "Dołhobyczów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.58591000", + "longitude": "24.03594000" + }, + { + "id": "86190", + "name": "Dorohusk", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.15475000", + "longitude": "23.80325000" + }, + { + "id": "86196", + "name": "Drelów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.91219000", + "longitude": "22.87165000" + }, + { + "id": "86205", + "name": "Dubienka", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04862000", + "longitude": "23.89252000" + }, + { + "id": "86232", + "name": "Dzwola", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69657000", + "longitude": "22.56729000" + }, + { + "id": "86267", + "name": "Fajsławice", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09592000", + "longitude": "22.96323000" + }, + { + "id": "86271", + "name": "Firlej", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.55882000", + "longitude": "22.50841000" + }, + { + "id": "86273", + "name": "Frampol", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67159000", + "longitude": "22.67061000" + }, + { + "id": "86282", + "name": "Garbów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.35517000", + "longitude": "22.32937000" + }, + { + "id": "86360", + "name": "Gościeradów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.86859000", + "longitude": "22.00536000" + }, + { + "id": "86320", + "name": "Godziszów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.74889000", + "longitude": "22.49794000" + }, + { + "id": "86321", + "name": "Godziszów Pierwszy", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75753000", + "longitude": "22.48386000" + }, + { + "id": "86332", + "name": "Goraj", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72184000", + "longitude": "22.66651000" + }, + { + "id": "86337", + "name": "Gorzków", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.94778000", + "longitude": "23.01267000" + }, + { + "id": "86365", + "name": "Grabowiec", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.82090000", + "longitude": "23.55057000" + }, + { + "id": "86444", + "name": "Hańsk", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.41286000", + "longitude": "23.39942000" + }, + { + "id": "86450", + "name": "Horodło", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.89459000", + "longitude": "24.03723000" + }, + { + "id": "86452", + "name": "Hrubieszów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80502000", + "longitude": "23.89251000" + }, + { + "id": "86468", + "name": "Izbica", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.88728000", + "longitude": "23.15248000" + }, + { + "id": "86486", + "name": "Jabłoń", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.72501000", + "longitude": "23.08743000" + }, + { + "id": "86481", + "name": "Jabłonna", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.08875000", + "longitude": "22.59364000" + }, + { + "id": "86491", + "name": "Jakubowice Murowane", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.26992000", + "longitude": "22.63415000" + }, + { + "id": "86503", + "name": "Janów Lubelski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.70695000", + "longitude": "22.41039000" + }, + { + "id": "86504", + "name": "Janów Podlaski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19398000", + "longitude": "23.21218000" + }, + { + "id": "86500", + "name": "Janowiec", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.32359000", + "longitude": "21.88940000" + }, + { + "id": "86506", + "name": "Jarczów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.42438000", + "longitude": "23.58576000" + }, + { + "id": "86521", + "name": "Jastków", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.30411000", + "longitude": "22.43546000" + }, + { + "id": "86575", + "name": "Józefów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.48119000", + "longitude": "23.05404000" + }, + { + "id": "86577", + "name": "Józefów nad Wisłą", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04183000", + "longitude": "21.83018000" + }, + { + "id": "86557", + "name": "Jeziorzany", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.60245000", + "longitude": "22.27667000" + }, + { + "id": "86603", + "name": "Kamionka", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.47165000", + "longitude": "22.46275000" + }, + { + "id": "86610", + "name": "Karczmiska", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.22952000", + "longitude": "21.98158000" + }, + { + "id": "86626", + "name": "Kazimierz Dolny", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.31911000", + "longitude": "21.95502000" + }, + { + "id": "86863", + "name": "Kłoczew", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.72134000", + "longitude": "21.96493000" + }, + { + "id": "86751", + "name": "Końskowola", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.40922000", + "longitude": "22.05175000" + }, + { + "id": "86672", + "name": "Kock", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63997000", + "longitude": "22.44391000" + }, + { + "id": "86674", + "name": "Kodeń", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.91171000", + "longitude": "23.60301000" + }, + { + "id": "86683", + "name": "Komarów-Osada", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.62888000", + "longitude": "23.47740000" + }, + { + "id": "86684", + "name": "Komarówka Podlaska", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.80315000", + "longitude": "22.94392000" + }, + { + "id": "86697", + "name": "Konstantynów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "52.20746000", + "longitude": "23.08530000" + }, + { + "id": "86736", + "name": "Kozubszczyzna", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.22323000", + "longitude": "22.42747000" + }, + { + "id": "86776", + "name": "Kraśniczyn", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.93171000", + "longitude": "23.34929000" + }, + { + "id": "86777", + "name": "Kraśnik", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.92360000", + "longitude": "22.22706000" + }, + { + "id": "86770", + "name": "Krasnobród", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.54551000", + "longitude": "23.21308000" + }, + { + "id": "86773", + "name": "Krasnystaw", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.98464000", + "longitude": "23.17420000" + }, + { + "id": "86796", + "name": "Krynice", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.58760000", + "longitude": "23.38157000" + }, + { + "id": "86802", + "name": "Krzczonów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.00727000", + "longitude": "22.71097000" + }, + { + "id": "86819", + "name": "Krzywda", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.79519000", + "longitude": "22.19994000" + }, + { + "id": "86832", + "name": "Księżomierz", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.90855000", + "longitude": "21.98965000" + }, + { + "id": "86833", + "name": "Księżpol", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.42323000", + "longitude": "22.73526000" + }, + { + "id": "86843", + "name": "Kurów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.38941000", + "longitude": "22.18637000" + }, + { + "id": "86890", + "name": "Leśna Podlaska", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "52.13317000", + "longitude": "23.02786000" + }, + { + "id": "86932", + "name": "Lubartów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.46026000", + "longitude": "22.60952000" + }, + { + "id": "86947", + "name": "Lublin", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.25000000", + "longitude": "22.56667000" + }, + { + "id": "86962", + "name": "Lubycza Królewska", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.34102000", + "longitude": "23.51941000" + }, + { + "id": "86964", + "name": "Ludwin", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.34605000", + "longitude": "22.90581000" + }, + { + "id": "86996", + "name": "Markuszów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37457000", + "longitude": "22.25804000" + }, + { + "id": "87014", + "name": "Mełgiew", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.22519000", + "longitude": "22.78414000" + }, + { + "id": "87058", + "name": "Miączyn", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.73825000", + "longitude": "23.50130000" + }, + { + "id": "87064", + "name": "Międzyrzec Podlaski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.98640000", + "longitude": "22.78248000" + }, + { + "id": "87022", + "name": "Michałów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.54709000", + "longitude": "23.60361000" + }, + { + "id": "87025", + "name": "Michów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.52573000", + "longitude": "22.31435000" + }, + { + "id": "87046", + "name": "Milanów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.70374000", + "longitude": "22.88830000" + }, + { + "id": "87049", + "name": "Milejów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.23226000", + "longitude": "22.92443000" + }, + { + "id": "87052", + "name": "Mircze", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.65164000", + "longitude": "23.89604000" + }, + { + "id": "87081", + "name": "Modliborzyce", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75416000", + "longitude": "22.32945000" + }, + { + "id": "87143", + "name": "Nałęczów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.28581000", + "longitude": "22.21539000" + }, + { + "id": "87157", + "name": "Niedźwiada", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.54409000", + "longitude": "22.69140000" + }, + { + "id": "87155", + "name": "Niedrzwica Duża", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11462000", + "longitude": "22.38911000" + }, + { + "id": "87161", + "name": "Nielisz", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80067000", + "longitude": "23.04451000" + }, + { + "id": "87162", + "name": "Niemce", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.36155000", + "longitude": "22.63939000" + }, + { + "id": "87193", + "name": "Nowodwór", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63901000", + "longitude": "22.10183000" + }, + { + "id": "87222", + "name": "Obsza", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31520000", + "longitude": "22.95688000" + }, + { + "id": "87263", + "name": "Opole Lubelskie", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.14775000", + "longitude": "21.96897000" + }, + { + "id": "87309", + "name": "Ostrów Lubelski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.49416000", + "longitude": "22.85287000" + }, + { + "id": "87313", + "name": "Ostrówek", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.58150000", + "longitude": "22.61227000" + }, + { + "id": "87347", + "name": "Parczew", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.64021000", + "longitude": "22.90057000" + }, + { + "id": "87370", + "name": "Piaski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13892000", + "longitude": "22.84856000" + }, + { + "id": "87399", + "name": "Piszczac", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.98118000", + "longitude": "23.37719000" + }, + { + "id": "87414", + "name": "Podedwórze", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.68815000", + "longitude": "23.19961000" + }, + { + "id": "87428", + "name": "Pokrówka", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09479000", + "longitude": "23.46345000" + }, + { + "id": "87439", + "name": "Poniatowa", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.17983000", + "longitude": "22.13093000" + }, + { + "id": "87452", + "name": "Potok Górny", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38477000", + "longitude": "22.56188000" + }, + { + "id": "87453", + "name": "Potok Wielki", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.79150000", + "longitude": "22.21642000" + }, + { + "id": "87755", + "name": "Powiat łęczyński", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.30429000", + "longitude": "22.96701000" + }, + { + "id": "87752", + "name": "Powiat łukowski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.85365000", + "longitude": "22.24035000" + }, + { + "id": "87760", + "name": "Powiat świdnicki", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12470000", + "longitude": "22.85397000" + }, + { + "id": "87461", + "name": "Powiat bialski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.97222000", + "longitude": "23.15328000" + }, + { + "id": "87469", + "name": "Powiat biłgorajski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.58582000", + "longitude": "22.79513000" + }, + { + "id": "87483", + "name": "Powiat chełmski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.15092000", + "longitude": "23.38165000" + }, + { + "id": "87523", + "name": "Powiat hrubieszowski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.70776000", + "longitude": "23.86307000" + }, + { + "id": "87526", + "name": "Powiat janowski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.74558000", + "longitude": "22.41147000" + }, + { + "id": "87553", + "name": "Powiat kraśnicki", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.91535000", + "longitude": "22.14576000" + }, + { + "id": "87552", + "name": "Powiat krasnostawski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.98486000", + "longitude": "23.17514000" + }, + { + "id": "87574", + "name": "Powiat lubartowski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.53497000", + "longitude": "22.60585000" + }, + { + "id": "87576", + "name": "Powiat lubelski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13419000", + "longitude": "22.46654000" + }, + { + "id": "87617", + "name": "Powiat opolski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12904000", + "longitude": "22.00944000" + }, + { + "id": "87630", + "name": "Powiat parczewski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59982000", + "longitude": "22.99629000" + }, + { + "id": "87650", + "name": "Powiat puławski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.41853000", + "longitude": "22.03752000" + }, + { + "id": "87659", + "name": "Powiat radzyński", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.78255000", + "longitude": "22.70758000" + }, + { + "id": "87664", + "name": "Powiat rycki", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.66219000", + "longitude": "21.92929000" + }, + { + "id": "87706", + "name": "Powiat tomaszowski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.47825000", + "longitude": "23.52083000" + }, + { + "id": "87734", + "name": "Powiat włodawski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.52267000", + "longitude": "23.38279000" + }, + { + "id": "87737", + "name": "Powiat zamojski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69160000", + "longitude": "23.21261000" + }, + { + "id": "87832", + "name": "Przytoczno", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.61951000", + "longitude": "22.27135000" + }, + { + "id": "87851", + "name": "Puławy", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.41655000", + "longitude": "21.96939000" + }, + { + "id": "87846", + "name": "Puchaczów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.31050000", + "longitude": "22.97370000" + }, + { + "id": "87871", + "name": "Rachanie", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.53842000", + "longitude": "23.54688000" + }, + { + "id": "87879", + "name": "Radecznica", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75155000", + "longitude": "22.82976000" + }, + { + "id": "87904", + "name": "Radzyń Podlaski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.78333000", + "longitude": "22.61667000" + }, + { + "id": "87933", + "name": "Rejowiec", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.09134000", + "longitude": "23.28192000" + }, + { + "id": "87934", + "name": "Rejowiec Fabryczny", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11414000", + "longitude": "23.24724000" + }, + { + "id": "87951", + "name": "Rogóźno", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46417000", + "longitude": "23.39041000" + }, + { + "id": "87958", + "name": "Rokitno", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "52.12142000", + "longitude": "23.29514000" + }, + { + "id": "87972", + "name": "Ruda-Huta", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.23666000", + "longitude": "23.59486000" + }, + { + "id": "87978", + "name": "Rudnik", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.88035000", + "longitude": "22.97293000" + }, + { + "id": "87992", + "name": "Rybczewice", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.02876000", + "longitude": "22.85053000" + }, + { + "id": "88008", + "name": "Ryki", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.62574000", + "longitude": "21.93274000" + }, + { + "id": "88018", + "name": "Rzeczyca", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.96225000", + "longitude": "22.74942000" + }, + { + "id": "88053", + "name": "Sawin", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.27443000", + "longitude": "23.43375000" + }, + { + "id": "88335", + "name": "Sławatycze", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.76338000", + "longitude": "23.55460000" + }, + { + "id": "88056", + "name": "Serniki", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.43716000", + "longitude": "22.65853000" + }, + { + "id": "88058", + "name": "Serokomla", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.70070000", + "longitude": "22.33237000" + }, + { + "id": "88074", + "name": "Siemień", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.62883000", + "longitude": "22.77243000" + }, + { + "id": "88082", + "name": "Siennica Różana", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.00123000", + "longitude": "23.32260000" + }, + { + "id": "88094", + "name": "Sitno", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.74944000", + "longitude": "23.36260000" + }, + { + "id": "88106", + "name": "Skierbieszów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.85158000", + "longitude": "23.35917000" + }, + { + "id": "88153", + "name": "Sosnówka", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.75084000", + "longitude": "23.33814000" + }, + { + "id": "88150", + "name": "Sosnowica", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.52065000", + "longitude": "23.09215000" + }, + { + "id": "88161", + "name": "Spiczyn", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.34128000", + "longitude": "22.75354000" + }, + { + "id": "88197", + "name": "Stary Zamość", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.82004000", + "longitude": "23.17154000" + }, + { + "id": "88244", + "name": "Stężyca", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.58187000", + "longitude": "21.77087000" + }, + { + "id": "88206", + "name": "Stoczek Łukowski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.96135000", + "longitude": "21.97137000" + }, + { + "id": "88234", + "name": "Strzyżowice", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04830000", + "longitude": "22.44018000" + }, + { + "id": "88273", + "name": "Sułów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.90661000", + "longitude": "22.36061000" + }, + { + "id": "88266", + "name": "Susiec", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.41973000", + "longitude": "23.19626000" + }, + { + "id": "88288", + "name": "Szastarka", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.85527000", + "longitude": "22.31971000" + }, + { + "id": "88292", + "name": "Szczebrzeszyn", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69499000", + "longitude": "22.97954000" + }, + { + "id": "88358", + "name": "Tarnawatka", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.53154000", + "longitude": "23.39590000" + }, + { + "id": "88360", + "name": "Tarnogród", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.36090000", + "longitude": "22.74174000" + }, + { + "id": "88371", + "name": "Telatyn", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.52712000", + "longitude": "23.83956000" + }, + { + "id": "88374", + "name": "Terespol", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "52.07550000", + "longitude": "23.61614000" + }, + { + "id": "88375", + "name": "Tereszpol", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.58373000", + "longitude": "22.87980000" + }, + { + "id": "88379", + "name": "Tomaszów Lubelski", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44767000", + "longitude": "23.41616000" + }, + { + "id": "88388", + "name": "Trawniki", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13633000", + "longitude": "22.99816000" + }, + { + "id": "88405", + "name": "Trzebieszów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.99006000", + "longitude": "22.55502000" + }, + { + "id": "88413", + "name": "Trzydnik Duży", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84887000", + "longitude": "22.13359000" + }, + { + "id": "88425", + "name": "Turobin", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.82367000", + "longitude": "22.74273000" + }, + { + "id": "88443", + "name": "Tyszowce", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.61699000", + "longitude": "23.69927000" + }, + { + "id": "88466", + "name": "Ułęż", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59195000", + "longitude": "22.10741000" + }, + { + "id": "88468", + "name": "Uścimów Stary", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.46962000", + "longitude": "22.95516000" + }, + { + "id": "88454", + "name": "Ulhówek", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44969000", + "longitude": "23.79956000" + }, + { + "id": "88459", + "name": "Urszulin", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.39390000", + "longitude": "23.19480000" + }, + { + "id": "88461", + "name": "Urzędów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.99323000", + "longitude": "22.14260000" + }, + { + "id": "88650", + "name": "Włodawa", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.55000000", + "longitude": "23.55000000" + }, + { + "id": "88637", + "name": "Wąwolnica", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.29467000", + "longitude": "22.14681000" + }, + { + "id": "88491", + "name": "Werbkowice", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75373000", + "longitude": "23.76411000" + }, + { + "id": "88541", + "name": "Wilków", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.26224000", + "longitude": "21.87756000" + }, + { + "id": "88540", + "name": "Wilkołaz", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01473000", + "longitude": "22.35014000" + }, + { + "id": "88546", + "name": "Wisznice", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.78924000", + "longitude": "23.20836000" + }, + { + "id": "88570", + "name": "Wohyń", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.75642000", + "longitude": "22.78582000" + }, + { + "id": "88573", + "name": "Wojciechów", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.23543000", + "longitude": "22.24551000" + }, + { + "id": "88574", + "name": "Wojcieszków", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.76922000", + "longitude": "22.31589000" + }, + { + "id": "88579", + "name": "Wojsławice", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.91916000", + "longitude": "23.54602000" + }, + { + "id": "88589", + "name": "Wola Sernicka", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.44978000", + "longitude": "22.68351000" + }, + { + "id": "88590", + "name": "Wola Uhruska", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "51.32139000", + "longitude": "23.62627000" + }, + { + "id": "88621", + "name": "Wysokie", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.91093000", + "longitude": "22.66600000" + }, + { + "id": "88682", + "name": "Zakrzówek", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.95124000", + "longitude": "22.38138000" + }, + { + "id": "88678", + "name": "Zakrzew", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.89004000", + "longitude": "22.59115000" + }, + { + "id": "88691", + "name": "Zamch", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31713000", + "longitude": "23.02786000" + }, + { + "id": "88692", + "name": "Zamość", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72314000", + "longitude": "23.25196000" + }, + { + "id": "88735", + "name": "Zwierzyniec", + "state_id": 1638, + "state_code": "LU", + "country_id": 176, + "country_code": "PL", + "latitude": "50.61400000", + "longitude": "22.97512000" + }, + { + "id": "88841", + "name": "Świdnica", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.88836000", + "longitude": "15.39013000" + }, + { + "id": "88846", + "name": "Świebodzin", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24751000", + "longitude": "15.53355000" + }, + { + "id": "88761", + "name": "Łagów", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.33429000", + "longitude": "15.29769000" + }, + { + "id": "88826", + "name": "Łęknica", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.54148000", + "longitude": "14.73584000" + }, + { + "id": "88872", + "name": "Żagań", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.61759000", + "longitude": "15.31486000" + }, + { + "id": "88877", + "name": "Żary", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.64205000", + "longitude": "15.13727000" + }, + { + "id": "85791", + "name": "Babimost", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.16488000", + "longitude": "15.82769000" + }, + { + "id": "85880", + "name": "Bledzew", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51711000", + "longitude": "15.41382000" + }, + { + "id": "85887", + "name": "Bobrowice", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.94850000", + "longitude": "15.09058000" + }, + { + "id": "85896", + "name": "Bogdaniec", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.68897000", + "longitude": "15.07127000" + }, + { + "id": "85901", + "name": "Bojadła", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.95321000", + "longitude": "15.81036000" + }, + { + "id": "85979", + "name": "Brójce", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31745000", + "longitude": "15.67414000" + }, + { + "id": "85947", + "name": "Brody", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.79046000", + "longitude": "14.77335000" + }, + { + "id": "86004", + "name": "Bytnica", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.15066000", + "longitude": "15.16946000" + }, + { + "id": "86006", + "name": "Bytom Odrzański", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.73062000", + "longitude": "15.82362000" + }, + { + "id": "86096", + "name": "Cybinka", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19446000", + "longitude": "14.79567000" + }, + { + "id": "86139", + "name": "Czerwieńsk", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.01289000", + "longitude": "15.42317000" + }, + { + "id": "86233", + "name": "Dąbie", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.01056000", + "longitude": "15.15221000" + }, + { + "id": "86162", + "name": "Deszczno", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.66988000", + "longitude": "15.31975000" + }, + { + "id": "86165", + "name": "Dobiegniew", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.96947000", + "longitude": "15.75362000" + }, + { + "id": "86197", + "name": "Drezdenko", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.83831000", + "longitude": "15.83079000" + }, + { + "id": "86420", + "name": "Górzyca", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.49447000", + "longitude": "14.65503000" + }, + { + "id": "86342", + "name": "Gorzów Wielkopolski", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.73679000", + "longitude": "15.22878000" + }, + { + "id": "86352", + "name": "Gozdnica", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.43630000", + "longitude": "15.09856000" + }, + { + "id": "86404", + "name": "Gubin", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.94956000", + "longitude": "14.72837000" + }, + { + "id": "86473", + "name": "Iłowa", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50060000", + "longitude": "15.19980000" + }, + { + "id": "86518", + "name": "Jasień", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.75142000", + "longitude": "15.01419000" + }, + { + "id": "86553", + "name": "Jenin", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.69647000", + "longitude": "15.09796000" + }, + { + "id": "86611", + "name": "Kargowa", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.07140000", + "longitude": "15.86138000" + }, + { + "id": "86864", + "name": "Kłodawa", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.78595000", + "longitude": "15.21452000" + }, + { + "id": "86645", + "name": "Klenica", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.99217000", + "longitude": "15.78392000" + }, + { + "id": "86760", + "name": "Kożuchów", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.74558000", + "longitude": "15.59492000" + }, + { + "id": "86681", + "name": "Kolsko", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.96146000", + "longitude": "15.95987000" + }, + { + "id": "86695", + "name": "Konotop", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.93157000", + "longitude": "15.90391000" + }, + { + "id": "86715", + "name": "Kostrzyn nad Odrą", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.58713000", + "longitude": "14.64953000" + }, + { + "id": "86784", + "name": "Krosno Odrzańskie", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.05492000", + "longitude": "15.09882000" + }, + { + "id": "86809", + "name": "Krzeszyce", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.58329000", + "longitude": "15.00707000" + }, + { + "id": "86838", + "name": "Kunice Żarskie", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59944000", + "longitude": "15.16495000" + }, + { + "id": "86909", + "name": "Lipinki Łużyckie", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63954000", + "longitude": "14.99874000" + }, + { + "id": "86945", + "name": "Lubiszyn", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.78075000", + "longitude": "14.94793000" + }, + { + "id": "86949", + "name": "Lubniewice", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51638000", + "longitude": "15.25005000" + }, + { + "id": "86958", + "name": "Lubrza", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.30418000", + "longitude": "15.44317000" + }, + { + "id": "86960", + "name": "Lubsko", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.78467000", + "longitude": "14.97196000" + }, + { + "id": "87009", + "name": "Małomice", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.55597000", + "longitude": "15.45004000" + }, + { + "id": "86999", + "name": "Maszewo", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06896000", + "longitude": "14.90553000" + }, + { + "id": "87062", + "name": "Międzylesie", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.14487000", + "longitude": "15.38283000" + }, + { + "id": "87065", + "name": "Międzyrzecz", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.44461000", + "longitude": "15.57801000" + }, + { + "id": "87175", + "name": "Nowa Sól", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.80333000", + "longitude": "15.71702000" + }, + { + "id": "87184", + "name": "Nowe Miasteczko", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.69097000", + "longitude": "15.73174000" + }, + { + "id": "87197", + "name": "Nowogród Bobrzański", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.79856000", + "longitude": "15.23520000" + }, + { + "id": "87324", + "name": "Ośno Lubuskie", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.45360000", + "longitude": "14.87549000" + }, + { + "id": "87224", + "name": "Ochla", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.87903000", + "longitude": "15.47132000" + }, + { + "id": "87318", + "name": "Otyń", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.84766000", + "longitude": "15.71105000" + }, + { + "id": "87764", + "name": "Powiat żagański", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.59471000", + "longitude": "15.42253000" + }, + { + "id": "87765", + "name": "Powiat żarski", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.62858000", + "longitude": "14.96170000" + }, + { + "id": "87762", + "name": "Powiat świebodziński", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.23799000", + "longitude": "15.48522000" + }, + { + "id": "87508", + "name": "Powiat gorzowski", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.73863000", + "longitude": "15.08508000" + }, + { + "id": "87556", + "name": "Powiat krośnieński", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.00988000", + "longitude": "14.95209000" + }, + { + "id": "87588", + "name": "Powiat międzyrzecki", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.49891000", + "longitude": "15.58284000" + }, + { + "id": "87604", + "name": "Powiat nowosolski", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.84218000", + "longitude": "15.72698000" + }, + { + "id": "87698", + "name": "Powiat słubicki", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.32267000", + "longitude": "14.78921000" + }, + { + "id": "87685", + "name": "Powiat strzelecko-drezdenecki", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.91220000", + "longitude": "15.64061000" + }, + { + "id": "87688", + "name": "Powiat sulęciński", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.42850000", + "longitude": "15.04896000" + }, + { + "id": "87726", + "name": "Powiat wschowski", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.83019000", + "longitude": "16.12096000" + }, + { + "id": "87742", + "name": "Powiat zielonogórski", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.93326000", + "longitude": "15.44403000" + }, + { + "id": "87817", + "name": "Przewóz", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.48053000", + "longitude": "14.95188000" + }, + { + "id": "87822", + "name": "Przyborów", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.79991000", + "longitude": "15.76890000" + }, + { + "id": "87831", + "name": "Przytoczna", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.57755000", + "longitude": "15.67878000" + }, + { + "id": "87842", + "name": "Pszczew", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.47724000", + "longitude": "15.78160000" + }, + { + "id": "88022", + "name": "Rzepin", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.34640000", + "longitude": "14.83227000" + }, + { + "id": "88050", + "name": "Santok", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.73785000", + "longitude": "15.41021000" + }, + { + "id": "88334", + "name": "Sława", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.87623000", + "longitude": "16.07205000" + }, + { + "id": "88344", + "name": "Słońsk", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.56345000", + "longitude": "14.80526000" + }, + { + "id": "88345", + "name": "Słubice", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.35088000", + "longitude": "14.56065000" + }, + { + "id": "88069", + "name": "Siedlisko", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.76864000", + "longitude": "15.81396000" + }, + { + "id": "88079", + "name": "Sieniawa", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.36344000", + "longitude": "15.37768000" + }, + { + "id": "88080", + "name": "Sieniawa Żarska", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.64007000", + "longitude": "15.06045000" + }, + { + "id": "88123", + "name": "Skąpe", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.15292000", + "longitude": "15.45845000" + }, + { + "id": "88120", + "name": "Skwierzyna", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.59914000", + "longitude": "15.50652000" + }, + { + "id": "88185", + "name": "Stare Kurowo", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.85669000", + "longitude": "15.67749000" + }, + { + "id": "88227", + "name": "Strzelce Krajeńskie", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.87726000", + "longitude": "15.52978000" + }, + { + "id": "88256", + "name": "Sulechów", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.08362000", + "longitude": "15.62513000" + }, + { + "id": "88289", + "name": "Szczaniec", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26874000", + "longitude": "15.68170000" + }, + { + "id": "88312", + "name": "Szlichtyngowa", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.71222000", + "longitude": "16.24427000" + }, + { + "id": "88313", + "name": "Szprotawa", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.56563000", + "longitude": "15.53664000" + }, + { + "id": "88385", + "name": "Torzym", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31331000", + "longitude": "15.08243000" + }, + { + "id": "88397", + "name": "Trzciel", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.36504000", + "longitude": "15.87306000" + }, + { + "id": "88402", + "name": "Trzebiechów", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.02113000", + "longitude": "15.73620000" + }, + { + "id": "88403", + "name": "Trzebiel", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63496000", + "longitude": "14.81609000" + }, + { + "id": "88423", + "name": "Tuplice", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.67639000", + "longitude": "14.82914000" + }, + { + "id": "88552", + "name": "Witnica", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.67318000", + "longitude": "14.89765000" + }, + { + "id": "88610", + "name": "Wschowa", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.80705000", + "longitude": "16.31663000" + }, + { + "id": "88612", + "name": "Wymiarki", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.51109000", + "longitude": "15.08208000" + }, + { + "id": "88661", + "name": "Zabór", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.95194000", + "longitude": "15.71676000" + }, + { + "id": "88714", + "name": "Zbąszynek", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24315000", + "longitude": "15.81654000" + }, + { + "id": "88728", + "name": "Zielona Góra", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "51.93768000", + "longitude": "15.51216000" + }, + { + "id": "88736", + "name": "Zwierzyń", + "state_id": 1631, + "state_code": "LB", + "country_id": 176, + "country_code": "PL", + "latitude": "52.83212000", + "longitude": "15.56763000" + }, + { + "id": "88840", + "name": "Śródmieście", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22904000", + "longitude": "21.01644000" + }, + { + "id": "88852", + "name": "Świercze", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.67055000", + "longitude": "20.76390000" + }, + { + "id": "88762", + "name": "Łajski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.42873000", + "longitude": "20.94946000" + }, + { + "id": "88771", + "name": "Łaskarzew", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.78993000", + "longitude": "21.59122000" + }, + { + "id": "88811", + "name": "Łąck", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.46621000", + "longitude": "19.61137000" + }, + { + "id": "88782", + "name": "Łochów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.53076000", + "longitude": "21.68158000" + }, + { + "id": "88785", + "name": "Łomianki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.33413000", + "longitude": "20.88602000" + }, + { + "id": "88792", + "name": "Łosice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.21129000", + "longitude": "22.71801000" + }, + { + "id": "88807", + "name": "Łyse", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.36443000", + "longitude": "21.56487000" + }, + { + "id": "88868", + "name": "Żabia Wola", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.03169000", + "longitude": "20.69112000" + }, + { + "id": "88869", + "name": "Żabieniec", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.05856000", + "longitude": "21.04817000" + }, + { + "id": "88882", + "name": "Żelechów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.81051000", + "longitude": "21.89721000" + }, + { + "id": "88889", + "name": "Żoliborz", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26896000", + "longitude": "20.98644000" + }, + { + "id": "88895", + "name": "Żuromin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.06611000", + "longitude": "19.90894000" + }, + { + "id": "88899", + "name": "Żyrardów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.04880000", + "longitude": "20.44599000" + }, + { + "id": "85793", + "name": "Baboszewo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.68070000", + "longitude": "20.25527000" + }, + { + "id": "85801", + "name": "Baniocha", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.01653000", + "longitude": "21.13984000" + }, + { + "id": "85802", + "name": "Baranowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.17554000", + "longitude": "21.29803000" + }, + { + "id": "86017", + "name": "Błędów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.77767000", + "longitude": "20.69798000" + }, + { + "id": "86016", + "name": "Błonie", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19849000", + "longitude": "20.61709000" + }, + { + "id": "85824", + "name": "Bemowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25460000", + "longitude": "20.90844000" + }, + { + "id": "85834", + "name": "Biała", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.60524000", + "longitude": "19.64956000" + }, + { + "id": "85846", + "name": "Białołeka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.32127000", + "longitude": "20.97204000" + }, + { + "id": "85843", + "name": "Białobrzegi", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.64695000", + "longitude": "20.95041000" + }, + { + "id": "85870", + "name": "Bieżuń", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.96107000", + "longitude": "19.88976000" + }, + { + "id": "85852", + "name": "Bielany", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.29242000", + "longitude": "20.93531000" + }, + { + "id": "85859", + "name": "Bielsk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.67180000", + "longitude": "19.80500000" + }, + { + "id": "85863", + "name": "Bieniewice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.18268000", + "longitude": "20.56306000" + }, + { + "id": "85893", + "name": "Bodzanów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.49992000", + "longitude": "20.02945000" + }, + { + "id": "85900", + "name": "Boguty-Pianki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.71680000", + "longitude": "22.41546000" + }, + { + "id": "85921", + "name": "Borkowice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.32025000", + "longitude": "20.68339000" + }, + { + "id": "85925", + "name": "Borowie", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.94908000", + "longitude": "21.76580000" + }, + { + "id": "85938", + "name": "Brańszczyk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62931000", + "longitude": "21.58745000" + }, + { + "id": "85942", + "name": "Brochów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31950000", + "longitude": "20.26257000" + }, + { + "id": "85948", + "name": "Brody-Parcele", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.47797000", + "longitude": "20.74974000" + }, + { + "id": "85951", + "name": "Brok", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.69948000", + "longitude": "21.85704000" + }, + { + "id": "85955", + "name": "Brudzeń Duży", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.66884000", + "longitude": "19.50399000" + }, + { + "id": "85957", + "name": "Brwinów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.14269000", + "longitude": "20.71697000" + }, + { + "id": "85993", + "name": "Bulkowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.54087000", + "longitude": "20.11889000" + }, + { + "id": "86020", + "name": "Cegłów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.14782000", + "longitude": "21.73739000" + }, + { + "id": "86022", + "name": "Celestynów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06093000", + "longitude": "21.39107000" + }, + { + "id": "86023", + "name": "Ceranów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.63082000", + "longitude": "22.22826000" + }, + { + "id": "86033", + "name": "Chlewiska", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.24376000", + "longitude": "20.76871000" + }, + { + "id": "86054", + "name": "Chorzele", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.26075000", + "longitude": "20.89728000" + }, + { + "id": "86057", + "name": "Chotcza", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.24043000", + "longitude": "21.77662000" + }, + { + "id": "86070", + "name": "Chynów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.90425000", + "longitude": "21.08208000" + }, + { + "id": "86077", + "name": "Ciechanów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.88141000", + "longitude": "20.61996000" + }, + { + "id": "86083", + "name": "Ciepielów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.24838000", + "longitude": "21.57475000" + }, + { + "id": "86110", + "name": "Czarnia", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.35614000", + "longitude": "21.19520000" + }, + { + "id": "86131", + "name": "Czernice Borowe", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.03197000", + "longitude": "20.71944000" + }, + { + "id": "86142", + "name": "Czerwińsk Nad Wisłą", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.39828000", + "longitude": "20.30960000" + }, + { + "id": "86140", + "name": "Czerwin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.94905000", + "longitude": "21.75842000" + }, + { + "id": "86144", + "name": "Czerwonka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.89254000", + "longitude": "21.21494000" + }, + { + "id": "86260", + "name": "Długosiodło", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.75998000", + "longitude": "21.59183000" + }, + { + "id": "86244", + "name": "Dąbrówka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.48388000", + "longitude": "21.29794000" + }, + { + "id": "86246", + "name": "Dębe Wielkie", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19961000", + "longitude": "21.44334000" + }, + { + "id": "86170", + "name": "Dobre", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.32097000", + "longitude": "21.67881000" + }, + { + "id": "86183", + "name": "Domanice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.03739000", + "longitude": "22.17642000" + }, + { + "id": "86198", + "name": "Drobin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.73775000", + "longitude": "19.98928000" + }, + { + "id": "86206", + "name": "Duczki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.36271000", + "longitude": "21.29047000" + }, + { + "id": "86219", + "name": "Dziekanów Leśny", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.35243000", + "longitude": "20.85124000" + }, + { + "id": "86224", + "name": "Dzierzążnia", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62811000", + "longitude": "20.23364000" + }, + { + "id": "86222", + "name": "Dzierzgowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.15279000", + "longitude": "20.66322000" + }, + { + "id": "86281", + "name": "Garbatka-Letnisko", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.48320000", + "longitude": "21.61079000" + }, + { + "id": "86286", + "name": "Garwolin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.89747000", + "longitude": "21.61466000" + }, + { + "id": "86410", + "name": "Góra Kalwaria", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.97653000", + "longitude": "21.21537000" + }, + { + "id": "86418", + "name": "Górzno", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.84681000", + "longitude": "21.70933000" + }, + { + "id": "86421", + "name": "Gózd", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.37832000", + "longitude": "21.37914000" + }, + { + "id": "86422", + "name": "Gąbin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.39849000", + "longitude": "19.73509000" + }, + { + "id": "86425", + "name": "Gąsocin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.73754000", + "longitude": "20.71180000" + }, + { + "id": "86297", + "name": "Gielniów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.40076000", + "longitude": "20.48126000" + }, + { + "id": "86306", + "name": "Glinojeck", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.81983000", + "longitude": "20.29198000" + }, + { + "id": "86358", + "name": "Gołymin-Ośrodek", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.80800000", + "longitude": "20.87325000" + }, + { + "id": "86345", + "name": "Gostynin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.42938000", + "longitude": "19.46194000" + }, + { + "id": "86349", + "name": "Goszczyn", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.73187000", + "longitude": "20.85154000" + }, + { + "id": "86351", + "name": "Goworowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.90083000", + "longitude": "21.55578000" + }, + { + "id": "86353", + "name": "Gozdowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.72455000", + "longitude": "19.68501000" + }, + { + "id": "86371", + "name": "Granica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.13359000", + "longitude": "20.80313000" + }, + { + "id": "86399", + "name": "Grójec", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.86252000", + "longitude": "20.86757000" + }, + { + "id": "86400", + "name": "Grębków", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26931000", + "longitude": "21.90974000" + }, + { + "id": "86375", + "name": "Grodzisk Mazowiecki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10387000", + "longitude": "20.63370000" + }, + { + "id": "86385", + "name": "Grudusk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.05845000", + "longitude": "20.62494000" + }, + { + "id": "86405", + "name": "Guzów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.11626000", + "longitude": "20.33672000" + }, + { + "id": "86407", + "name": "Gzy", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.74045000", + "longitude": "20.94372000" + }, + { + "id": "86440", + "name": "Halinów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22880000", + "longitude": "21.35510000" + }, + { + "id": "86449", + "name": "Hornówek", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.28638000", + "longitude": "20.80793000" + }, + { + "id": "86475", + "name": "Iłów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.33953000", + "longitude": "20.02730000" + }, + { + "id": "86476", + "name": "Iłża", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.16313000", + "longitude": "21.23979000" + }, + { + "id": "86467", + "name": "Izabelin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.29992000", + "longitude": "20.81729000" + }, + { + "id": "86482", + "name": "Jabłonna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.37885000", + "longitude": "20.91745000" + }, + { + "id": "86484", + "name": "Jabłonna Lacka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.47664000", + "longitude": "22.44228000" + }, + { + "id": "86489", + "name": "Jadów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.47849000", + "longitude": "21.63199000" + }, + { + "id": "86492", + "name": "Jakubów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.21965000", + "longitude": "21.68032000" + }, + { + "id": "86512", + "name": "Jasienica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.41415000", + "longitude": "21.41150000" + }, + { + "id": "86516", + "name": "Jasieniec", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.82104000", + "longitude": "20.94099000" + }, + { + "id": "86523", + "name": "Jastrząb", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.24725000", + "longitude": "20.94758000" + }, + { + "id": "86525", + "name": "Jastrzębia", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.49742000", + "longitude": "21.23709000" + }, + { + "id": "86576", + "name": "Józefów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.13707000", + "longitude": "21.23589000" + }, + { + "id": "86574", + "name": "Józefosław", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10050000", + "longitude": "21.04629000" + }, + { + "id": "86542", + "name": "Jedlińsk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.51400000", + "longitude": "21.11577000" + }, + { + "id": "86543", + "name": "Jedlnia-Letnisko", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.43074000", + "longitude": "21.33536000" + }, + { + "id": "86544", + "name": "Jednorożec", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.14116000", + "longitude": "21.05161000" + }, + { + "id": "86566", + "name": "Joniec", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.60128000", + "longitude": "20.58177000" + }, + { + "id": "86628", + "name": "Kałuszyn", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.20669000", + "longitude": "21.80838000" + }, + { + "id": "86579", + "name": "Kabaty", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.13012000", + "longitude": "21.08148000" + }, + { + "id": "86582", + "name": "Kadzidło", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.23435000", + "longitude": "21.46454000" + }, + { + "id": "86605", + "name": "Kampinos", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26837000", + "longitude": "20.46307000" + }, + { + "id": "86609", + "name": "Karczew", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.07655000", + "longitude": "21.24962000" + }, + { + "id": "86614", + "name": "Karniewo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.83700000", + "longitude": "20.98886000" + }, + { + "id": "86624", + "name": "Kazanów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.27593000", + "longitude": "21.46737000" + }, + { + "id": "86637", + "name": "Kiełpin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.35796000", + "longitude": "20.86214000" + }, + { + "id": "86644", + "name": "Klembów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.40650000", + "longitude": "21.33176000" + }, + { + "id": "86657", + "name": "Klwów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.53448000", + "longitude": "20.63644000" + }, + { + "id": "86743", + "name": "Kołbiel", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06431000", + "longitude": "21.48153000" + }, + { + "id": "86669", + "name": "Kobyłka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.33953000", + "longitude": "21.19589000" + }, + { + "id": "86687", + "name": "Komorów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.14560000", + "longitude": "20.81566000" + }, + { + "id": "86696", + "name": "Konstancin-Jeziorna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.09380000", + "longitude": "21.11761000" + }, + { + "id": "86701", + "name": "Korczew", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.35327000", + "longitude": "22.61338000" + }, + { + "id": "86708", + "name": "Korytnica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.41441000", + "longitude": "21.84949000" + }, + { + "id": "86721", + "name": "Kosów Lacki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.59541000", + "longitude": "22.14707000" + }, + { + "id": "86724", + "name": "Kotuń", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.17643000", + "longitude": "22.06819000" + }, + { + "id": "86726", + "name": "Kowala", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.32503000", + "longitude": "21.06972000" + }, + { + "id": "86735", + "name": "Kozienice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.58294000", + "longitude": "21.54779000" + }, + { + "id": "86768", + "name": "Krasne", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.92401000", + "longitude": "20.96732000" + }, + { + "id": "86772", + "name": "Krasnosielc", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.03378000", + "longitude": "21.15735000" + }, + { + "id": "86815", + "name": "Krzynowłoga Mała", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.15773000", + "longitude": "20.78579000" + }, + { + "id": "86834", + "name": "Kuczbork-Osada", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.08619000", + "longitude": "20.04782000" + }, + { + "id": "86874", + "name": "Latowicz", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.02636000", + "longitude": "21.80829000" + }, + { + "id": "86876", + "name": "Legionowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.40149000", + "longitude": "20.92664000" + }, + { + "id": "86882", + "name": "Leszno", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25799000", + "longitude": "20.59121000" + }, + { + "id": "86884", + "name": "Lesznowola", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.09095000", + "longitude": "20.93479000" + }, + { + "id": "86920", + "name": "Lipowiec Kościelny", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.10459000", + "longitude": "20.17639000" + }, + { + "id": "86922", + "name": "Lipsko", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.15954000", + "longitude": "21.64933000" + }, + { + "id": "86955", + "name": "Lubowidz", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.11865000", + "longitude": "19.84594000" + }, + { + "id": "86967", + "name": "Lutocin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.98152000", + "longitude": "19.76655000" + }, + { + "id": "87005", + "name": "Mała Wieś", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.45779000", + "longitude": "20.10223000" + }, + { + "id": "87007", + "name": "Małkinia Górna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.69220000", + "longitude": "22.02836000" + }, + { + "id": "86980", + "name": "Maciejowice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.69222000", + "longitude": "21.55342000" + }, + { + "id": "86983", + "name": "Maków Mazowiecki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.86493000", + "longitude": "21.10053000" + }, + { + "id": "86994", + "name": "Marki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.32065000", + "longitude": "21.10474000" + }, + { + "id": "87001", + "name": "Maszewo Duże", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.58026000", + "longitude": "19.62905000" + }, + { + "id": "87127", + "name": "Mława", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.11278000", + "longitude": "20.38410000" + }, + { + "id": "87128", + "name": "Młodzieszyn", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.29945000", + "longitude": "20.20017000" + }, + { + "id": "87130", + "name": "Młynarze", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.95417000", + "longitude": "21.41141000" + }, + { + "id": "87018", + "name": "Miastków Kościelny", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.88407000", + "longitude": "21.82528000" + }, + { + "id": "87075", + "name": "Mińsk Mazowiecki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.17935000", + "longitude": "21.57251000" + }, + { + "id": "87069", + "name": "Miętne", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.92135000", + "longitude": "21.57457000" + }, + { + "id": "87024", + "name": "Michałów-Reginów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.41711000", + "longitude": "20.96595000" + }, + { + "id": "87019", + "name": "Michałowice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.17435000", + "longitude": "20.88089000" + }, + { + "id": "87030", + "name": "Miedzna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.46778000", + "longitude": "22.08947000" + }, + { + "id": "87047", + "name": "Milanówek", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.11879000", + "longitude": "20.67155000" + }, + { + "id": "87080", + "name": "Mochowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.76570000", + "longitude": "19.55592000" + }, + { + "id": "87084", + "name": "Mogielnica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.69432000", + "longitude": "20.72227000" + }, + { + "id": "87087", + "name": "Mokobody", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26523000", + "longitude": "22.11182000" + }, + { + "id": "87088", + "name": "Mokotów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19340000", + "longitude": "21.03487000" + }, + { + "id": "87091", + "name": "Mordy", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.21160000", + "longitude": "22.51725000" + }, + { + "id": "87102", + "name": "Mrozy", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.01975000", + "longitude": "20.36702000" + }, + { + "id": "87111", + "name": "Mszczonów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.97415000", + "longitude": "20.52083000" + }, + { + "id": "87117", + "name": "Mysiadło", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10216000", + "longitude": "21.01856000" + }, + { + "id": "87119", + "name": "Myszyniec", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.38055000", + "longitude": "21.34961000" + }, + { + "id": "87131", + "name": "Nadarzyn", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.09438000", + "longitude": "20.80776000" + }, + { + "id": "87140", + "name": "Naruszewo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.52687000", + "longitude": "20.35157000" + }, + { + "id": "87141", + "name": "Nasielsk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.58887000", + "longitude": "20.80553000" + }, + { + "id": "87166", + "name": "Nieporęt", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.43152000", + "longitude": "21.03212000" + }, + { + "id": "87182", + "name": "Nowe Grocholice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.15924000", + "longitude": "20.91110000" + }, + { + "id": "87183", + "name": "Nowe Lipiny", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.35789000", + "longitude": "21.27125000" + }, + { + "id": "87185", + "name": "Nowe Miasto", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.65691000", + "longitude": "20.62838000" + }, + { + "id": "87187", + "name": "Nowe Miasto nad Pilicą", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.61812000", + "longitude": "20.57619000" + }, + { + "id": "87201", + "name": "Nowy Duninów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.58271000", + "longitude": "19.47996000" + }, + { + "id": "87203", + "name": "Nowy Dwór Mazowiecki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.43022000", + "longitude": "20.71652000" + }, + { + "id": "87212", + "name": "Nur", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.66826000", + "longitude": "22.32207000" + }, + { + "id": "87329", + "name": "Ożarów Mazowiecki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.21039000", + "longitude": "20.79716000" + }, + { + "id": "87220", + "name": "Obryte", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.71633000", + "longitude": "21.24945000" + }, + { + "id": "87226", + "name": "Ochota", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22096000", + "longitude": "20.98526000" + }, + { + "id": "87230", + "name": "Odrzywół", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.51953000", + "longitude": "20.55559000" + }, + { + "id": "87232", + "name": "Ojrzeń", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.76570000", + "longitude": "20.54315000" + }, + { + "id": "87260", + "name": "Opinogóra Górna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.90554000", + "longitude": "20.71781000" + }, + { + "id": "87270", + "name": "Orońsko", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.31339000", + "longitude": "20.99067000" + }, + { + "id": "87277", + "name": "Osieck", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.96653000", + "longitude": "21.41913000" + }, + { + "id": "87310", + "name": "Ostrów Mazowiecka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.80245000", + "longitude": "21.89507000" + }, + { + "id": "87312", + "name": "Ostrówek", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.55350000", + "longitude": "21.76014000" + }, + { + "id": "87305", + "name": "Ostrołęka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.08621000", + "longitude": "21.57566000" + }, + { + "id": "87316", + "name": "Otrębusy", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.12843000", + "longitude": "20.76073000" + }, + { + "id": "87317", + "name": "Otwock", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10577000", + "longitude": "21.26129000" + }, + { + "id": "87319", + "name": "Owczarnia", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.11114000", + "longitude": "20.70468000" + }, + { + "id": "87332", + "name": "Pacyna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.30281000", + "longitude": "19.70982000" + }, + { + "id": "87344", + "name": "Paprotnia", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.20513000", + "longitude": "20.42320000" + }, + { + "id": "87349", + "name": "Parysów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.97584000", + "longitude": "21.68006000" + }, + { + "id": "87867", + "name": "Płońsk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62348000", + "longitude": "20.37552000" + }, + { + "id": "87864", + "name": "Płock", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.54682000", + "longitude": "19.70638000" + }, + { + "id": "87865", + "name": "Płoniawy-Bramura", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.97780000", + "longitude": "21.07178000" + }, + { + "id": "87368", + "name": "Piaseczno", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.08140000", + "longitude": "21.02397000" + }, + { + "id": "87372", + "name": "Piastów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.18435000", + "longitude": "20.83952000" + }, + { + "id": "87387", + "name": "Pilawa", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.95945000", + "longitude": "21.53089000" + }, + { + "id": "87392", + "name": "Pionki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.47604000", + "longitude": "21.44995000" + }, + { + "id": "87780", + "name": "Poświętne", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.32967000", + "longitude": "21.42137000" + }, + { + "id": "87413", + "name": "Podebłocie", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.64023000", + "longitude": "21.74420000" + }, + { + "id": "87417", + "name": "Podkowa Leśna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.12237000", + "longitude": "20.72665000" + }, + { + "id": "87427", + "name": "Pokrzywnica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.62072000", + "longitude": "21.01925000" + }, + { + "id": "87435", + "name": "Policzna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.45545000", + "longitude": "21.62684000" + }, + { + "id": "87438", + "name": "Pomiechówek", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.47138000", + "longitude": "20.72923000" + }, + { + "id": "87455", + "name": "Potworów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.50874000", + "longitude": "20.72176000" + }, + { + "id": "87767", + "name": "Powiat żuromiński", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.01658000", + "longitude": "19.89102000" + }, + { + "id": "87768", + "name": "Powiat żyrardowski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.00028000", + "longitude": "20.43275000" + }, + { + "id": "87751", + "name": "Powiat łosicki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22363000", + "longitude": "22.84510000" + }, + { + "id": "87462", + "name": "Powiat białobrzeski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.62102000", + "longitude": "20.94328000" + }, + { + "id": "87488", + "name": "Powiat ciechanowski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.90207000", + "longitude": "20.57631000" + }, + { + "id": "87500", + "name": "Powiat garwoliński", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.82657000", + "longitude": "21.61615000" + }, + { + "id": "87509", + "name": "Powiat gostyniński", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.38988000", + "longitude": "19.62187000" + }, + { + "id": "87518", + "name": "Powiat grójecki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.75742000", + "longitude": "20.83661000" + }, + { + "id": "87513", + "name": "Powiat grodziski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.06391000", + "longitude": "20.59408000" + }, + { + "id": "87546", + "name": "Powiat kozienicki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.63946000", + "longitude": "21.49580000" + }, + { + "id": "87564", + "name": "Powiat legionowski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.45179000", + "longitude": "20.94356000" + }, + { + "id": "87572", + "name": "Powiat lipski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.15879000", + "longitude": "21.56753000" + }, + { + "id": "87581", + "name": "Powiat makowski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.94770000", + "longitude": "21.17950000" + }, + { + "id": "87596", + "name": "Powiat mławski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.05496000", + "longitude": "20.37708000" + }, + { + "id": "87589", + "name": "Powiat miński", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.18429000", + "longitude": "21.60893000" + }, + { + "id": "87601", + "name": "Powiat nowodworski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.46585000", + "longitude": "20.66405000" + }, + { + "id": "87622", + "name": "Powiat ostrołęcki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.14001000", + "longitude": "21.50699000" + }, + { + "id": "87620", + "name": "Powiat ostrowski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.79495000", + "longitude": "22.03250000" + }, + { + "id": "87625", + "name": "Powiat otwocki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.04898000", + "longitude": "21.37251000" + }, + { + "id": "87654", + "name": "Powiat płoński", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.63894000", + "longitude": "20.34710000" + }, + { + "id": "87653", + "name": "Powiat płocki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.55465000", + "longitude": "19.78570000" + }, + { + "id": "87631", + "name": "Powiat piaseczyński", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.01634000", + "longitude": "20.98319000" + }, + { + "id": "87643", + "name": "Powiat pruszkowski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10088000", + "longitude": "20.80992000" + }, + { + "id": "87644", + "name": "Powiat przasnyski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.11360000", + "longitude": "20.93940000" + }, + { + "id": "87647", + "name": "Powiat przysuski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.42366000", + "longitude": "20.65098000" + }, + { + "id": "87651", + "name": "Powiat pułtuski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.67207000", + "longitude": "21.02401000" + }, + { + "id": "87656", + "name": "Powiat radomski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.33582000", + "longitude": "21.16193000" + }, + { + "id": "87670", + "name": "Powiat siedlecki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19186000", + "longitude": "22.30406000" + }, + { + "id": "87673", + "name": "Powiat sierpecki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.83353000", + "longitude": "19.71216000" + }, + { + "id": "87676", + "name": "Powiat sochaczewski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26689000", + "longitude": "20.21338000" + }, + { + "id": "87677", + "name": "Powiat sokołowski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.49538000", + "longitude": "22.26897000" + }, + { + "id": "87695", + "name": "Powiat szydłowiecki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.25600000", + "longitude": "20.84256000" + }, + { + "id": "87713", + "name": "Powiat warszawski zachodni", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26838000", + "longitude": "20.61913000" + }, + { + "id": "87732", + "name": "Powiat węgrowski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.45628000", + "longitude": "21.87342000" + }, + { + "id": "87722", + "name": "Powiat wołomiński", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.40616000", + "longitude": "21.40121000" + }, + { + "id": "87728", + "name": "Powiat wyszkowski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.65137000", + "longitude": "21.44537000" + }, + { + "id": "87743", + "name": "Powiat zwoleński", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.36079000", + "longitude": "21.59279000" + }, + { + "id": "87788", + "name": "Prażmów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.94040000", + "longitude": "20.95479000" + }, + { + "id": "87786", + "name": "Praga Północ", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25443000", + "longitude": "21.03472000" + }, + { + "id": "87785", + "name": "Praga Południe", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24424000", + "longitude": "21.08545000" + }, + { + "id": "87790", + "name": "Promna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.68006000", + "longitude": "20.95917000" + }, + { + "id": "87799", + "name": "Pruszków", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.17072000", + "longitude": "20.81214000" + }, + { + "id": "87800", + "name": "Przasnysz", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.01907000", + "longitude": "20.88029000" + }, + { + "id": "87814", + "name": "Przesmyki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26816000", + "longitude": "22.58394000" + }, + { + "id": "87835", + "name": "Przyłęk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.30856000", + "longitude": "21.74744000" + }, + { + "id": "87828", + "name": "Przysucha", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.35858000", + "longitude": "20.62889000" + }, + { + "id": "87833", + "name": "Przytyk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.46567000", + "longitude": "20.90587000" + }, + { + "id": "87852", + "name": "Pułtusk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.70250000", + "longitude": "21.08276000" + }, + { + "id": "87849", + "name": "Puszcza Mariańska", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.97901000", + "longitude": "20.35037000" + }, + { + "id": "87873", + "name": "Raciąż", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.78152000", + "longitude": "20.11770000" + }, + { + "id": "87884", + "name": "Radom", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.40253000", + "longitude": "21.14714000" + }, + { + "id": "87895", + "name": "Radzanów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.94238000", + "longitude": "20.09219000" + }, + { + "id": "87894", + "name": "Radzanowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.57306000", + "longitude": "19.89109000" + }, + { + "id": "87897", + "name": "Radziejowice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.00834000", + "longitude": "20.54770000" + }, + { + "id": "87902", + "name": "Radzymin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.41592000", + "longitude": "21.18415000" + }, + { + "id": "87916", + "name": "Raszyn", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.15603000", + "longitude": "20.92260000" + }, + { + "id": "88033", + "name": "Różan", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.88757000", + "longitude": "21.39105000" + }, + { + "id": "87922", + "name": "Regimin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.94166000", + "longitude": "20.55319000" + }, + { + "id": "87936", + "name": "Rembertów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26059000", + "longitude": "21.16355000" + }, + { + "id": "87937", + "name": "Repki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.38555000", + "longitude": "22.39117000" + }, + { + "id": "87968", + "name": "Rościszewo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.90331000", + "longitude": "19.77419000" + }, + { + "id": "87988", + "name": "Rusinów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.43678000", + "longitude": "20.58701000" + }, + { + "id": "87993", + "name": "Rybie", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.15229000", + "longitude": "20.93655000" + }, + { + "id": "87995", + "name": "Rybno", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24278000", + "longitude": "20.10301000" + }, + { + "id": "88001", + "name": "Ryczywół", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.69118000", + "longitude": "21.42197000" + }, + { + "id": "88032", + "name": "Rząśnik", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.71332000", + "longitude": "21.36772000" + }, + { + "id": "88016", + "name": "Rzeczniów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.12804000", + "longitude": "21.44008000" + }, + { + "id": "88019", + "name": "Rzekuń", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.04756000", + "longitude": "21.62069000" + }, + { + "id": "88025", + "name": "Rzewnie", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.83508000", + "longitude": "21.33682000" + }, + { + "id": "88039", + "name": "Sabnie", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.50097000", + "longitude": "22.30697000" + }, + { + "id": "88044", + "name": "Sadowne", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.64124000", + "longitude": "21.84563000" + }, + { + "id": "88048", + "name": "Sanniki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.33046000", + "longitude": "19.86766000" + }, + { + "id": "88051", + "name": "Sarnaki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31504000", + "longitude": "22.89044000" + }, + { + "id": "88346", + "name": "Słubice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.36942000", + "longitude": "19.93881000" + }, + { + "id": "88352", + "name": "Słupno", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.38409000", + "longitude": "21.15572000" + }, + { + "id": "88057", + "name": "Serock", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51036000", + "longitude": "21.06910000" + }, + { + "id": "88064", + "name": "Siedlce", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.16772000", + "longitude": "22.29006000" + }, + { + "id": "88075", + "name": "Siemiątkowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.88110000", + "longitude": "20.02893000" + }, + { + "id": "88081", + "name": "Siennica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.09164000", + "longitude": "21.61921000" + }, + { + "id": "88083", + "name": "Sienno", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.08773000", + "longitude": "21.48325000" + }, + { + "id": "88091", + "name": "Sierpc", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.85680000", + "longitude": "19.66913000" + }, + { + "id": "88099", + "name": "Skaryszew", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.31075000", + "longitude": "21.25233000" + }, + { + "id": "88122", + "name": "Skórzec", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.10727000", + "longitude": "22.13052000" + }, + { + "id": "88156", + "name": "Sońsk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.78164000", + "longitude": "20.69901000" + }, + { + "id": "88130", + "name": "Sobienie Jeziory", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.93273000", + "longitude": "21.30335000" + }, + { + "id": "88132", + "name": "Sobolew", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.73660000", + "longitude": "21.66349000" + }, + { + "id": "88134", + "name": "Sochaczew", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22944000", + "longitude": "20.23838000" + }, + { + "id": "88135", + "name": "Sochocin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.68715000", + "longitude": "20.47259000" + }, + { + "id": "88140", + "name": "Sokołów Podlaski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.40677000", + "longitude": "22.25307000" + }, + { + "id": "88143", + "name": "Solec Nad Wisłą", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.13633000", + "longitude": "21.76563000" + }, + { + "id": "88169", + "name": "Stanisławów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.28937000", + "longitude": "21.54848000" + }, + { + "id": "88170", + "name": "Stanisławów Pierwszy", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.37485000", + "longitude": "21.05184000" + }, + { + "id": "88173", + "name": "Stara Błotnica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.54676000", + "longitude": "20.97479000" + }, + { + "id": "88177", + "name": "Stara Kornica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.18183000", + "longitude": "22.93752000" + }, + { + "id": "88181", + "name": "Stare Babice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.26028000", + "longitude": "20.83403000" + }, + { + "id": "88193", + "name": "Staroźreby", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.63265000", + "longitude": "19.98550000" + }, + { + "id": "88204", + "name": "Sterdyń", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.58026000", + "longitude": "22.29358000" + }, + { + "id": "88205", + "name": "Stoczek", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.54332000", + "longitude": "21.90013000" + }, + { + "id": "88211", + "name": "Strachówka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.42692000", + "longitude": "21.63500000" + }, + { + "id": "88215", + "name": "Stromiec", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.64700000", + "longitude": "21.09229000" + }, + { + "id": "88225", + "name": "Strzegowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.89394000", + "longitude": "20.28548000" + }, + { + "id": "88241", + "name": "Stupsk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.02258000", + "longitude": "20.43680000" + }, + { + "id": "88270", + "name": "Sułkowice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.92310000", + "longitude": "21.08929000" + }, + { + "id": "88247", + "name": "Sucha", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.61999000", + "longitude": "20.94887000" + }, + { + "id": "88252", + "name": "Suchożebry", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25948000", + "longitude": "22.25289000" + }, + { + "id": "88255", + "name": "Sulbiny Górne", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.87321000", + "longitude": "21.63174000" + }, + { + "id": "88258", + "name": "Sulejówek", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25221000", + "longitude": "21.26902000" + }, + { + "id": "88279", + "name": "Sypniewo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.00580000", + "longitude": "21.30730000" + }, + { + "id": "88302", + "name": "Szczutowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.94047000", + "longitude": "19.57438000" + }, + { + "id": "88306", + "name": "Szelków", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.83487000", + "longitude": "21.21769000" + }, + { + "id": "88314", + "name": "Szreńsk", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.01277000", + "longitude": "20.12009000" + }, + { + "id": "88319", + "name": "Szydłowiec", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.22823000", + "longitude": "20.86106000" + }, + { + "id": "88320", + "name": "Szydłowo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.08062000", + "longitude": "20.45071000" + }, + { + "id": "88354", + "name": "Tarczyn", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.98197000", + "longitude": "20.83394000" + }, + { + "id": "88357", + "name": "Targówek", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.29185000", + "longitude": "21.04845000" + }, + { + "id": "88445", + "name": "Tłuszcz", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.43058000", + "longitude": "21.43561000" + }, + { + "id": "88370", + "name": "Tczów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.32600000", + "longitude": "21.44677000" + }, + { + "id": "88373", + "name": "Teresin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19887000", + "longitude": "20.41672000" + }, + { + "id": "88387", + "name": "Trablice", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.35249000", + "longitude": "21.12877000" + }, + { + "id": "88415", + "name": "Trąbki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.94792000", + "longitude": "21.59929000" + }, + { + "id": "88389", + "name": "Trojanów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.69225000", + "longitude": "21.81112000" + }, + { + "id": "88390", + "name": "Troszyn", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.03115000", + "longitude": "21.73083000" + }, + { + "id": "88391", + "name": "Truskaw", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.30124000", + "longitude": "20.78244000" + }, + { + "id": "88457", + "name": "Ursus", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19517000", + "longitude": "20.88419000" + }, + { + "id": "88458", + "name": "Ursynów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.15051000", + "longitude": "21.05041000" + }, + { + "id": "88477", + "name": "Warka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.78430000", + "longitude": "21.19091000" + }, + { + "id": "88480", + "name": "Warsaw", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.22977000", + "longitude": "21.01178000" + }, + { + "id": "88481", + "name": "Warszawa", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.23547000", + "longitude": "21.04191000" + }, + { + "id": "88485", + "name": "Wawer", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.19656000", + "longitude": "21.17752000" + }, + { + "id": "88648", + "name": "Włochy", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.17941000", + "longitude": "20.94612000" + }, + { + "id": "88645", + "name": "Węgrów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.39954000", + "longitude": "22.01634000" + }, + { + "id": "88493", + "name": "Wesoła", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.25451000", + "longitude": "21.22407000" + }, + { + "id": "88561", + "name": "Wiśniew", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.07265000", + "longitude": "22.29392000" + }, + { + "id": "88562", + "name": "Wiśniewo", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.06474000", + "longitude": "20.34805000" + }, + { + "id": "88497", + "name": "Wieczfnia Kościelna", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "53.19534000", + "longitude": "20.47637000" + }, + { + "id": "88503", + "name": "Wieliszew", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.45130000", + "longitude": "20.96827000" + }, + { + "id": "88512", + "name": "Wieniawa", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.36171000", + "longitude": "20.79489000" + }, + { + "id": "88517", + "name": "Wierzbica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.24940000", + "longitude": "21.08259000" + }, + { + "id": "88520", + "name": "Wierzbno", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.31008000", + "longitude": "21.85902000" + }, + { + "id": "88531", + "name": "Wilanów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.16311000", + "longitude": "21.08748000" + }, + { + "id": "88537", + "name": "Wilga", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.85211000", + "longitude": "21.37751000" + }, + { + "id": "88544", + "name": "Winnica", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.64306000", + "longitude": "20.94114000" + }, + { + "id": "88545", + "name": "Wiskitki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.08831000", + "longitude": "20.38708000" + }, + { + "id": "88599", + "name": "Wołomin", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.34006000", + "longitude": "21.24207000" + }, + { + "id": "88566", + "name": "Wodynie", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.04040000", + "longitude": "21.95575000" + }, + { + "id": "88580", + "name": "Wola", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.24010000", + "longitude": "20.98869000" + }, + { + "id": "88588", + "name": "Wola Rębkowska", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.90181000", + "longitude": "21.55818000" + }, + { + "id": "88593", + "name": "Wolanów", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.38030000", + "longitude": "20.97702000" + }, + { + "id": "88626", + "name": "Wyśmierzyce", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.62494000", + "longitude": "20.81394000" + }, + { + "id": "88624", + "name": "Wyszków", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.59278000", + "longitude": "21.45840000" + }, + { + "id": "88625", + "name": "Wyszogród", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.38988000", + "longitude": "20.19081000" + }, + { + "id": "88707", + "name": "Załuski", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51152000", + "longitude": "20.52864000" + }, + { + "id": "88676", + "name": "Zakroczym", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.43351000", + "longitude": "20.61207000" + }, + { + "id": "88677", + "name": "Zakrzew", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.44095000", + "longitude": "21.00105000" + }, + { + "id": "88685", + "name": "Zalesie Górne", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.02768000", + "longitude": "21.03659000" + }, + { + "id": "88700", + "name": "Zatory", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.59929000", + "longitude": "21.18258000" + }, + { + "id": "88703", + "name": "Zawidz", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.82745000", + "longitude": "19.87367000" + }, + { + "id": "88738", + "name": "Ząbki", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.29271000", + "longitude": "21.10539000" + }, + { + "id": "88710", + "name": "Zbuczyn", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.08974000", + "longitude": "22.43829000" + }, + { + "id": "88729", + "name": "Zielonka", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "52.30376000", + "longitude": "21.16018000" + }, + { + "id": "88737", + "name": "Zwoleń", + "state_id": 1637, + "state_code": "MZ", + "country_id": 176, + "country_code": "PL", + "latitude": "51.35542000", + "longitude": "21.58768000" + }, + { + "id": "88853", + "name": "Świerczów", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.96016000", + "longitude": "17.75880000" + }, + { + "id": "88763", + "name": "Łambinowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.53869000", + "longitude": "17.56096000" + }, + { + "id": "88815", + "name": "Łąka Prudnicka", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31061000", + "longitude": "17.52809000" + }, + { + "id": "88793", + "name": "Łosiów", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.79096000", + "longitude": "17.56594000" + }, + { + "id": "88797", + "name": "Łubniany", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.78597000", + "longitude": "18.00110000" + }, + { + "id": "85792", + "name": "Baborów", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15760000", + "longitude": "17.98513000" + }, + { + "id": "85833", + "name": "Biała", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38587000", + "longitude": "17.66035000" + }, + { + "id": "85864", + "name": "Bierawa", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28111000", + "longitude": "18.24177000" + }, + { + "id": "85865", + "name": "Bierdzany", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.81852000", + "longitude": "18.15808000" + }, + { + "id": "85935", + "name": "Branice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05108000", + "longitude": "17.79399000" + }, + { + "id": "85958", + "name": "Brzeg", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.86079000", + "longitude": "17.46740000" + }, + { + "id": "85998", + "name": "Byczyna", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.11387000", + "longitude": "18.21413000" + }, + { + "id": "86037", + "name": "Chmielowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.64957000", + "longitude": "17.86669000" + }, + { + "id": "86065", + "name": "Chróścice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.78076000", + "longitude": "17.81227000" + }, + { + "id": "86066", + "name": "Chróścina", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.62306000", + "longitude": "17.36861000" + }, + { + "id": "86059", + "name": "Chrościna", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.66578000", + "longitude": "17.81759000" + }, + { + "id": "86064", + "name": "Chrząstowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.66622000", + "longitude": "18.07294000" + }, + { + "id": "86089", + "name": "Cisek", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28232000", + "longitude": "18.19988000" + }, + { + "id": "86115", + "name": "Czarnowąsy", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72858000", + "longitude": "17.89819000" + }, + { + "id": "86153", + "name": "Dalachów", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07732000", + "longitude": "18.57840000" + }, + { + "id": "86259", + "name": "Długomiłowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28298000", + "longitude": "18.14873000" + }, + { + "id": "86236", + "name": "Dąbrowa", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.68352000", + "longitude": "17.74957000" + }, + { + "id": "86173", + "name": "Dobrodzień", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72874000", + "longitude": "18.44501000" + }, + { + "id": "86177", + "name": "Dobrzeń Wielki", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.76844000", + "longitude": "17.84652000" + }, + { + "id": "86187", + "name": "Domaszowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.04290000", + "longitude": "17.88875000" + }, + { + "id": "86221", + "name": "Dziergowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24248000", + "longitude": "18.28606000" + }, + { + "id": "86412", + "name": "Górażdże", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.52903000", + "longitude": "18.01003000" + }, + { + "id": "86429", + "name": "Głogówek", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.35355000", + "longitude": "17.86405000" + }, + { + "id": "86431", + "name": "Głubczyce", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.20086000", + "longitude": "17.82858000" + }, + { + "id": "86432", + "name": "Głuchołazy", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31505000", + "longitude": "17.38355000" + }, + { + "id": "86323", + "name": "Gogolin", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.49222000", + "longitude": "18.01994000" + }, + { + "id": "86343", + "name": "Gorzów Śląski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.02871000", + "longitude": "18.42304000" + }, + { + "id": "86373", + "name": "Grodków", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69836000", + "longitude": "17.38449000" + }, + { + "id": "86470", + "name": "Izbicko", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.57163000", + "longitude": "18.15585000" + }, + { + "id": "86502", + "name": "Januszkowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.39189000", + "longitude": "18.13680000" + }, + { + "id": "86552", + "name": "Jemielnica", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.54573000", + "longitude": "18.37807000" + }, + { + "id": "86591", + "name": "Kamienica", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.45007000", + "longitude": "16.95396000" + }, + { + "id": "86597", + "name": "Kamiennik", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.57032000", + "longitude": "17.14979000" + }, + { + "id": "86853", + "name": "Kędzierzyn-Koźle", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.34984000", + "longitude": "18.22606000" + }, + { + "id": "86635", + "name": "Kietrz", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08042000", + "longitude": "18.00432000" + }, + { + "id": "86653", + "name": "Kluczbork", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.97281000", + "longitude": "18.21816000" + }, + { + "id": "86757", + "name": "Koźle", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.33560000", + "longitude": "18.14332000" + }, + { + "id": "86680", + "name": "Kolonowskie", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.65338000", + "longitude": "18.38493000" + }, + { + "id": "86688", + "name": "Komprachcice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.63678000", + "longitude": "17.82635000" + }, + { + "id": "86703", + "name": "Korfantów", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.48894000", + "longitude": "17.59898000" + }, + { + "id": "86766", + "name": "Krapkowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.47515000", + "longitude": "17.96539000" + }, + { + "id": "86840", + "name": "Kup", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80659000", + "longitude": "17.88351000" + }, + { + "id": "86892", + "name": "Leśnica", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.43083000", + "longitude": "18.18684000" + }, + { + "id": "86885", + "name": "Lewin Brzeski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.74870000", + "longitude": "17.61688000" + }, + { + "id": "86959", + "name": "Lubrza", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.33631000", + "longitude": "17.62636000" + }, + { + "id": "86961", + "name": "Lubsza", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.91591000", + "longitude": "17.52173000" + }, + { + "id": "87097", + "name": "Moszczanka", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.30020000", + "longitude": "17.49109000" + }, + { + "id": "87114", + "name": "Murów", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.86307000", + "longitude": "17.94557000" + }, + { + "id": "87134", + "name": "Nakło", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.57975000", + "longitude": "18.11817000" + }, + { + "id": "87136", + "name": "Namysłów", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.07592000", + "longitude": "17.72284000" + }, + { + "id": "87164", + "name": "Niemodlin", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.64200000", + "longitude": "17.61932000" + }, + { + "id": "87214", + "name": "Nysa", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.47379000", + "longitude": "17.33437000" + }, + { + "id": "87238", + "name": "Olesno", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.87698000", + "longitude": "18.42094000" + }, + { + "id": "87246", + "name": "Olszanka", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.79514000", + "longitude": "17.47890000" + }, + { + "id": "87262", + "name": "Opole", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67211000", + "longitude": "17.92533000" + }, + { + "id": "87315", + "name": "Otmuchów", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46627000", + "longitude": "17.17348000" + }, + { + "id": "87320", + "name": "Ozimek", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67944000", + "longitude": "18.21370000" + }, + { + "id": "87333", + "name": "Paczków", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46395000", + "longitude": "17.00658000" + }, + { + "id": "87337", + "name": "Pakosławice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.54474000", + "longitude": "17.36578000" + }, + { + "id": "87359", + "name": "Pawłowiczki", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24660000", + "longitude": "18.04865000" + }, + { + "id": "87429", + "name": "Pokój", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.90265000", + "longitude": "17.83751000" + }, + { + "id": "87437", + "name": "Polska Cerekiew", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.22827000", + "longitude": "18.12675000" + }, + { + "id": "87442", + "name": "Popielów", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.82632000", + "longitude": "17.74378000" + }, + { + "id": "87475", + "name": "Powiat brzeski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.78930000", + "longitude": "17.48499000" + }, + { + "id": "87521", + "name": "Powiat głubczycki", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.14846000", + "longitude": "17.83266000" + }, + { + "id": "87559", + "name": "Powiat kędzierzyńsko-kozielski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.29384000", + "longitude": "18.16961000" + }, + { + "id": "87539", + "name": "Powiat kluczborski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.98576000", + "longitude": "18.15258000" + }, + { + "id": "87551", + "name": "Powiat krapkowicki", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.45263000", + "longitude": "17.95768000" + }, + { + "id": "87598", + "name": "Powiat namysłowski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01628000", + "longitude": "17.76304000" + }, + { + "id": "87608", + "name": "Powiat nyski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46054000", + "longitude": "17.33546000" + }, + { + "id": "87611", + "name": "Powiat oleski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.87887000", + "longitude": "18.46037000" + }, + { + "id": "87618", + "name": "Powiat opolski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.73689000", + "longitude": "17.98462000" + }, + { + "id": "87642", + "name": "Powiat prudnicki", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.40981000", + "longitude": "17.73995000" + }, + { + "id": "87684", + "name": "Powiat strzelecki", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.53057000", + "longitude": "18.34597000" + }, + { + "id": "87787", + "name": "Praszka", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.05375000", + "longitude": "18.45317000" + }, + { + "id": "87837", + "name": "Prószków", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.57670000", + "longitude": "17.87143000" + }, + { + "id": "87795", + "name": "Prudnik", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.32124000", + "longitude": "17.57461000" + }, + { + "id": "87878", + "name": "Racławice Śląskie", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31204000", + "longitude": "17.77528000" + }, + { + "id": "87915", + "name": "Raszowa", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.39779000", + "longitude": "18.17722000" + }, + { + "id": "87941", + "name": "Reńska Wieś", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31587000", + "longitude": "18.12607000" + }, + { + "id": "87967", + "name": "Rozwadza", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.43493000", + "longitude": "18.09980000" + }, + { + "id": "88336", + "name": "Sławięcice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.37207000", + "longitude": "18.32176000" + }, + { + "id": "88062", + "name": "Sidzina", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.57375000", + "longitude": "17.44904000" + }, + { + "id": "88097", + "name": "Skarbimierz Osiedle", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84584000", + "longitude": "17.41865000" + }, + { + "id": "88112", + "name": "Skorogoszcz", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75916000", + "longitude": "17.68198000" + }, + { + "id": "88113", + "name": "Skoroszyce", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.59648000", + "longitude": "17.38243000" + }, + { + "id": "88228", + "name": "Strzelce Opolskie", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.51070000", + "longitude": "18.30056000" + }, + { + "id": "88230", + "name": "Strzeleczki", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46215000", + "longitude": "17.85665000" + }, + { + "id": "88366", + "name": "Tarnów Opolski", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.57631000", + "longitude": "18.08367000" + }, + { + "id": "88430", + "name": "Tułowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.59577000", + "longitude": "17.65323000" + }, + { + "id": "88431", + "name": "Twardawa", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.34349000", + "longitude": "17.99097000" + }, + { + "id": "88450", + "name": "Ujazd", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38938000", + "longitude": "18.34929000" + }, + { + "id": "88473", + "name": "Walce", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.37322000", + "longitude": "18.00427000" + }, + { + "id": "88643", + "name": "Węgry", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.74319000", + "longitude": "18.01741000" + }, + { + "id": "88558", + "name": "Większyce", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.33659000", + "longitude": "18.10221000" + }, + { + "id": "88542", + "name": "Wilków", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.10158000", + "longitude": "17.66284000" + }, + { + "id": "88598", + "name": "Wołczyn", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01845000", + "longitude": "18.04994000" + }, + { + "id": "88701", + "name": "Zawadzkie", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.60503000", + "longitude": "18.48467000" + }, + { + "id": "88740", + "name": "Zębowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.76290000", + "longitude": "18.34434000" + }, + { + "id": "88719", + "name": "Zdzieszowice", + "state_id": 1622, + "state_code": "OP", + "country_id": 176, + "country_code": "PL", + "latitude": "50.42482000", + "longitude": "18.12349000" + }, + { + "id": "85777", + "name": "Adamówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.25857000", + "longitude": "22.69595000" + }, + { + "id": "85778", + "name": "Albigowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01425000", + "longitude": "22.22414000" + }, + { + "id": "88859", + "name": "Świlcza", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07179000", + "longitude": "21.89798000" + }, + { + "id": "88777", + "name": "Łańcut", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06871000", + "longitude": "22.22912000" + }, + { + "id": "88822", + "name": "Łęki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80996000", + "longitude": "21.66023000" + }, + { + "id": "88823", + "name": "Łęki Dolne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97386000", + "longitude": "21.24739000" + }, + { + "id": "88824", + "name": "Łęki Górne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97386000", + "longitude": "21.17426000" + }, + { + "id": "88827", + "name": "Łętownia", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.32481000", + "longitude": "22.23401000" + }, + { + "id": "88789", + "name": "Łopuszka Wielka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93454000", + "longitude": "22.39305000" + }, + { + "id": "88891", + "name": "Żołynia", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.16200000", + "longitude": "22.30825000" + }, + { + "id": "88893", + "name": "Żurawica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82348000", + "longitude": "22.78925000" + }, + { + "id": "88894", + "name": "Żurawiczki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01370000", + "longitude": "22.49949000" + }, + { + "id": "88898", + "name": "Żyraków", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08545000", + "longitude": "21.39622000" + }, + { + "id": "85789", + "name": "Babica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93476000", + "longitude": "21.87035000" + }, + { + "id": "85796", + "name": "Baligród", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.33090000", + "longitude": "22.28566000" + }, + { + "id": "85806", + "name": "Baranów Sandomierski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.49912000", + "longitude": "21.54204000" + }, + { + "id": "86015", + "name": "Błażowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88521000", + "longitude": "22.10037000" + }, + { + "id": "85825", + "name": "Besko", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.58757000", + "longitude": "21.95292000" + }, + { + "id": "85842", + "name": "Białobrzegi", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10252000", + "longitude": "22.31907000" + }, + { + "id": "85857", + "name": "Bieliny", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44237000", + "longitude": "22.30482000" + }, + { + "id": "85872", + "name": "Bircza", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.69173000", + "longitude": "22.47854000" + }, + { + "id": "85882", + "name": "Blizne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.75332000", + "longitude": "21.97351000" + }, + { + "id": "85898", + "name": "Boguchwała", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98473000", + "longitude": "21.94528000" + }, + { + "id": "85905", + "name": "Bojanów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.42531000", + "longitude": "21.95111000" + }, + { + "id": "85924", + "name": "Borowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38548000", + "longitude": "21.35150000" + }, + { + "id": "85975", + "name": "Brzóza Królewska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.23908000", + "longitude": "22.32559000" + }, + { + "id": "85976", + "name": "Brzóza Stadnicka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19965000", + "longitude": "22.28233000" + }, + { + "id": "85967", + "name": "Brzeźnica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10065000", + "longitude": "21.48025000" + }, + { + "id": "85970", + "name": "Brzostek", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87954000", + "longitude": "21.41102000" + }, + { + "id": "85972", + "name": "Brzozów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.69501000", + "longitude": "22.01926000" + }, + { + "id": "85974", + "name": "Brzyska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82226000", + "longitude": "21.39004000" + }, + { + "id": "85992", + "name": "Bukowsko", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.48039000", + "longitude": "22.06329000" + }, + { + "id": "86035", + "name": "Chmielnik", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97386000", + "longitude": "22.14535000" + }, + { + "id": "86051", + "name": "Chorkówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64668000", + "longitude": "21.67156000" + }, + { + "id": "86068", + "name": "Chwałowice", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.76665000", + "longitude": "21.88683000" + }, + { + "id": "86086", + "name": "Cieszanów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24564000", + "longitude": "23.13163000" + }, + { + "id": "86091", + "name": "Cisna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.21328000", + "longitude": "22.32795000" + }, + { + "id": "86095", + "name": "Cmolas", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.29526000", + "longitude": "21.74417000" + }, + { + "id": "86104", + "name": "Czarna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06717000", + "longitude": "21.25614000" + }, + { + "id": "86120", + "name": "Czaszyn", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.44854000", + "longitude": "22.21650000" + }, + { + "id": "86127", + "name": "Czermin", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.33911000", + "longitude": "21.33356000" + }, + { + "id": "86146", + "name": "Czudec", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94487000", + "longitude": "21.84134000" + }, + { + "id": "86258", + "name": "Długie", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.57866000", + "longitude": "22.04338000" + }, + { + "id": "86257", + "name": "Dębów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04490000", + "longitude": "22.43614000" + }, + { + "id": "86247", + "name": "Dębica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05146000", + "longitude": "21.41141000" + }, + { + "id": "86250", + "name": "Dębno", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19811000", + "longitude": "22.51837000" + }, + { + "id": "86255", + "name": "Dębowiec", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.68374000", + "longitude": "21.46068000" + }, + { + "id": "86185", + "name": "Domaradz", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.78675000", + "longitude": "21.94571000" + }, + { + "id": "86204", + "name": "Dubiecko", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82608000", + "longitude": "22.39117000" + }, + { + "id": "86207", + "name": "Dukla", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.55554000", + "longitude": "21.68317000" + }, + { + "id": "86211", + "name": "Dydnia", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.68640000", + "longitude": "22.17196000" + }, + { + "id": "86213", + "name": "Dynów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.81506000", + "longitude": "22.23388000" + }, + { + "id": "86229", + "name": "Dzików Stary", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24699000", + "longitude": "22.92984000" + }, + { + "id": "86228", + "name": "Dzikowiec", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.27288000", + "longitude": "21.84365000" + }, + { + "id": "86274", + "name": "Fredropol", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.69578000", + "longitude": "22.74625000" + }, + { + "id": "86279", + "name": "Frysztak", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.84164000", + "longitude": "21.60942000" + }, + { + "id": "86289", + "name": "Gać", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02693000", + "longitude": "22.35898000" + }, + { + "id": "86413", + "name": "Górki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64385000", + "longitude": "22.04304000" + }, + { + "id": "86416", + "name": "Górno", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28243000", + "longitude": "22.14500000" + }, + { + "id": "86428", + "name": "Głogów Małopolski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15122000", + "longitude": "21.96287000" + }, + { + "id": "86433", + "name": "Głuchów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08171000", + "longitude": "22.27135000" + }, + { + "id": "86296", + "name": "Giedlarowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.22689000", + "longitude": "22.40593000" + }, + { + "id": "86324", + "name": "Golcowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.77162000", + "longitude": "22.02501000" + }, + { + "id": "86335", + "name": "Gorliczyna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09217000", + "longitude": "22.48764000" + }, + { + "id": "86338", + "name": "Gorzyce", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.12841000", + "longitude": "22.57926000" + }, + { + "id": "86366", + "name": "Grabownica Starzeńska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.65896000", + "longitude": "22.07754000" + }, + { + "id": "86403", + "name": "Grębów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.56536000", + "longitude": "21.87404000" + }, + { + "id": "86377", + "name": "Grodzisko Dolne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.16238000", + "longitude": "22.46292000" + }, + { + "id": "86378", + "name": "Grodzisko Górne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.18690000", + "longitude": "22.43786000" + }, + { + "id": "86398", + "name": "Grzęska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08303000", + "longitude": "22.45399000" + }, + { + "id": "86406", + "name": "Gwoźnica Górna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82791000", + "longitude": "21.99772000" + }, + { + "id": "86438", + "name": "Haczów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.66152000", + "longitude": "21.89790000" + }, + { + "id": "86441", + "name": "Handzlówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99527000", + "longitude": "22.22311000" + }, + { + "id": "86442", + "name": "Harasiuki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.47515000", + "longitude": "22.47288000" + }, + { + "id": "86451", + "name": "Horyniec-Zdrój", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19152000", + "longitude": "23.36277000" + }, + { + "id": "86453", + "name": "Humniska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67507000", + "longitude": "22.05368000" + }, + { + "id": "86454", + "name": "Husów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97971000", + "longitude": "22.28645000" + }, + { + "id": "86456", + "name": "Hyżne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91769000", + "longitude": "22.18131000" + }, + { + "id": "86464", + "name": "Iwierzyce", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02958000", + "longitude": "21.75396000" + }, + { + "id": "86466", + "name": "Iwonicz-Zdrój", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56319000", + "longitude": "21.78992000" + }, + { + "id": "86539", + "name": "Jaśliska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.44229000", + "longitude": "21.80795000" + }, + { + "id": "86478", + "name": "Jabłonica Polska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.69784000", + "longitude": "21.89961000" + }, + { + "id": "86479", + "name": "Jabłonka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.69417000", + "longitude": "22.11565000" + }, + { + "id": "86490", + "name": "Jagiełła", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09460000", + "longitude": "22.57261000" + }, + { + "id": "86508", + "name": "Jarocin", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.56459000", + "longitude": "22.32121000" + }, + { + "id": "86511", + "name": "Jarosław", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01623000", + "longitude": "22.67776000" + }, + { + "id": "86530", + "name": "Jasło", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.74506000", + "longitude": "21.47252000" + }, + { + "id": "86515", + "name": "Jasienica Rosielna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.75144000", + "longitude": "21.94176000" + }, + { + "id": "86519", + "name": "Jasionów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.65841000", + "longitude": "21.97678000" + }, + { + "id": "86532", + "name": "Jawornik", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.84640000", + "longitude": "21.89404000" + }, + { + "id": "86534", + "name": "Jawornik Polski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89082000", + "longitude": "22.28868000" + }, + { + "id": "86559", + "name": "Jeżowe", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.37486000", + "longitude": "22.12749000" + }, + { + "id": "86540", + "name": "Jedlicze", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71749000", + "longitude": "21.64886000" + }, + { + "id": "86563", + "name": "Jodłówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89430000", + "longitude": "22.46653000" + }, + { + "id": "86562", + "name": "Jodłowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87229000", + "longitude": "21.27897000" + }, + { + "id": "86629", + "name": "Kańczuga", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98346000", + "longitude": "22.41168000" + }, + { + "id": "86598", + "name": "Kamień", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.34064000", + "longitude": "22.13539000" + }, + { + "id": "86855", + "name": "Kępie Żaleszańskie", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.63983000", + "longitude": "21.88133000" + }, + { + "id": "86632", + "name": "Kielanówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02616000", + "longitude": "21.92905000" + }, + { + "id": "86741", + "name": "Kołaczyce", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80743000", + "longitude": "21.43407000" + }, + { + "id": "86747", + "name": "Kończyce", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.42575000", + "longitude": "22.15376000" + }, + { + "id": "86677", + "name": "Kolbuszowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24410000", + "longitude": "21.77610000" + }, + { + "id": "86685", + "name": "Komańcza", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.33922000", + "longitude": "22.06166000" + }, + { + "id": "86692", + "name": "Konieczkowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.84208000", + "longitude": "21.92820000" + }, + { + "id": "86702", + "name": "Korczyna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71555000", + "longitude": "21.80941000" + }, + { + "id": "86711", + "name": "Kosina", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07213000", + "longitude": "22.32903000" + }, + { + "id": "86761", + "name": "Kraczkowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03796000", + "longitude": "22.16801000" + }, + { + "id": "86764", + "name": "Kramarzówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86034000", + "longitude": "22.50137000" + }, + { + "id": "86767", + "name": "Krasiczyn", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.77644000", + "longitude": "22.65252000" + }, + { + "id": "86769", + "name": "Krasne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05626000", + "longitude": "22.08638000" + }, + { + "id": "86778", + "name": "Krempna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.51128000", + "longitude": "21.50042000" + }, + { + "id": "86786", + "name": "Krościenko Wyżne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67946000", + "longitude": "21.82898000" + }, + { + "id": "86782", + "name": "Krosno", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.68866000", + "longitude": "21.77058000" + }, + { + "id": "86803", + "name": "Krzeczowice", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98920000", + "longitude": "22.46378000" + }, + { + "id": "86805", + "name": "Krzemienica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06210000", + "longitude": "22.18054000" + }, + { + "id": "86810", + "name": "Krzeszów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.40381000", + "longitude": "22.34241000" + }, + { + "id": "86818", + "name": "Krzywcza", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.79894000", + "longitude": "22.54549000" + }, + { + "id": "86841", + "name": "Kuryłówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.29976000", + "longitude": "22.46601000" + }, + { + "id": "86873", + "name": "Laszki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02020000", + "longitude": "22.89997000" + }, + { + "id": "86894", + "name": "Leżajsk", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.26257000", + "longitude": "22.41932000" + }, + { + "id": "86875", + "name": "Lecka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87860000", + "longitude": "22.01368000" + }, + { + "id": "86881", + "name": "Lesko", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.47010000", + "longitude": "22.33042000" + }, + { + "id": "86911", + "name": "Lipnica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28939000", + "longitude": "21.88811000" + }, + { + "id": "86930", + "name": "Lubaczów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15700000", + "longitude": "23.12339000" + }, + { + "id": "86937", + "name": "Lubenia", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93078000", + "longitude": "21.92665000" + }, + { + "id": "86969", + "name": "Lutoryż", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96712000", + "longitude": "21.91240000" + }, + { + "id": "86970", + "name": "Lutowiska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.25318000", + "longitude": "22.69252000" + }, + { + "id": "86981", + "name": "Majdan Królewski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.37935000", + "longitude": "21.74615000" + }, + { + "id": "86989", + "name": "Manasterz", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93520000", + "longitude": "22.34602000" + }, + { + "id": "86995", + "name": "Markowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02633000", + "longitude": "22.33160000" + }, + { + "id": "87013", + "name": "Medyka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80526000", + "longitude": "22.92229000" + }, + { + "id": "87033", + "name": "Miejsce Piastowe", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.63440000", + "longitude": "21.78735000" + }, + { + "id": "87035", + "name": "Mielec", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28709000", + "longitude": "21.42390000" + }, + { + "id": "87054", + "name": "Mirocin", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04237000", + "longitude": "22.55596000" + }, + { + "id": "87139", + "name": "Narol", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.34925000", + "longitude": "23.32679000" + }, + { + "id": "87147", + "name": "Niebieszczany", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.50348000", + "longitude": "22.15651000" + }, + { + "id": "87148", + "name": "Niebocko", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67774000", + "longitude": "22.10484000" + }, + { + "id": "87150", + "name": "Niebylec", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85669000", + "longitude": "21.90348000" + }, + { + "id": "87152", + "name": "Niechobrz", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99472000", + "longitude": "21.87824000" + }, + { + "id": "87158", + "name": "Niedźwiada", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98937000", + "longitude": "21.52162000" + }, + { + "id": "87165", + "name": "Nienadowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82901000", + "longitude": "22.42704000" + }, + { + "id": "87169", + "name": "Nisko", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.51987000", + "longitude": "22.13968000" + }, + { + "id": "87170", + "name": "Niwiska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.22492000", + "longitude": "21.63036000" + }, + { + "id": "87171", + "name": "Nowa Dęba", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.42974000", + "longitude": "21.75078000" + }, + { + "id": "87174", + "name": "Nowa Sarzyna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.32086000", + "longitude": "22.34456000" + }, + { + "id": "87190", + "name": "Nowe Sioło", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.23194000", + "longitude": "23.15884000" + }, + { + "id": "87199", + "name": "Nowosielce", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05747000", + "longitude": "22.41056000" + }, + { + "id": "87200", + "name": "Nowosielce-Gniewosz", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56842000", + "longitude": "22.06947000" + }, + { + "id": "87210", + "name": "Nowy Żmigród", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.60353000", + "longitude": "21.52376000" + }, + { + "id": "87211", + "name": "Nozdrzec", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.77323000", + "longitude": "22.19865000" + }, + { + "id": "87229", + "name": "Odrzykoń", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.74057000", + "longitude": "21.74074000" + }, + { + "id": "87239", + "name": "Oleszyce", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.16750000", + "longitude": "23.03481000" + }, + { + "id": "87244", + "name": "Olszanica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.47741000", + "longitude": "22.44382000" + }, + { + "id": "87275", + "name": "Orły", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87107000", + "longitude": "22.80298000" + }, + { + "id": "87272", + "name": "Orzechówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73080000", + "longitude": "21.94519000" + }, + { + "id": "87288", + "name": "Osiek Jasielski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.63784000", + "longitude": "21.48840000" + }, + { + "id": "87308", + "name": "Ostrów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96812000", + "longitude": "22.78710000" + }, + { + "id": "87334", + "name": "Padew Narodowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.43947000", + "longitude": "21.50059000" + }, + { + "id": "87343", + "name": "Pantalowice", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95210000", + "longitude": "22.43563000" + }, + { + "id": "87356", + "name": "Pawłosiów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99533000", + "longitude": "22.64763000" + }, + { + "id": "87391", + "name": "Pilzno", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97883000", + "longitude": "21.29228000" + }, + { + "id": "87397", + "name": "Piskorowice", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.23579000", + "longitude": "22.52867000" + }, + { + "id": "87778", + "name": "Połomia", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90475000", + "longitude": "21.89198000" + }, + { + "id": "87433", + "name": "Polańczyk", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.36969000", + "longitude": "22.42112000" + }, + { + "id": "87444", + "name": "Poraż", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.48597000", + "longitude": "22.22500000" + }, + { + "id": "87748", + "name": "Powiat łańcucki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08659000", + "longitude": "22.26892000" + }, + { + "id": "87468", + "name": "Powiat bieszczadzki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.33681000", + "longitude": "22.64451000" + }, + { + "id": "87477", + "name": "Powiat brzozowski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72759000", + "longitude": "22.09039000" + }, + { + "id": "87497", + "name": "Powiat dębicki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99923000", + "longitude": "21.35398000" + }, + { + "id": "87528", + "name": "Powiat jarosławski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02516000", + "longitude": "22.78238000" + }, + { + "id": "87529", + "name": "Powiat jasielski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64263000", + "longitude": "21.44637000" + }, + { + "id": "87540", + "name": "Powiat kolbuszowski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31632000", + "longitude": "21.81315000" + }, + { + "id": "87555", + "name": "Powiat krośnieński", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.59959000", + "longitude": "21.76943000" + }, + { + "id": "87568", + "name": "Powiat leżajski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.26159000", + "longitude": "22.43828000" + }, + { + "id": "87566", + "name": "Powiat leski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.31970000", + "longitude": "22.36907000" + }, + { + "id": "87573", + "name": "Powiat lubaczowski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19585000", + "longitude": "23.17328000" + }, + { + "id": "87584", + "name": "Powiat mielecki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31387000", + "longitude": "21.39136000" + }, + { + "id": "87600", + "name": "Powiat niżański", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46411000", + "longitude": "22.27645000" + }, + { + "id": "87645", + "name": "Powiat przemyski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.76060000", + "longitude": "22.67372000" + }, + { + "id": "87646", + "name": "Powiat przeworski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08913000", + "longitude": "22.53682000" + }, + { + "id": "87662", + "name": "Powiat ropczycko-sędziszowski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04815000", + "longitude": "21.64385000" + }, + { + "id": "87666", + "name": "Powiat rzeszowski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09944000", + "longitude": "21.95892000" + }, + { + "id": "87668", + "name": "Powiat sanocki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.43001000", + "longitude": "22.13619000" + }, + { + "id": "87679", + "name": "Powiat stalowowolski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.59103000", + "longitude": "22.05203000" + }, + { + "id": "87687", + "name": "Powiat strzyżowski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87698000", + "longitude": "21.74949000" + }, + { + "id": "87701", + "name": "Powiat tarnobrzeski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.52303000", + "longitude": "21.71585000" + }, + { + "id": "87794", + "name": "Pruchnik", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90620000", + "longitude": "22.51554000" + }, + { + "id": "87836", + "name": "Przędzel", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.49465000", + "longitude": "22.21925000" + }, + { + "id": "87804", + "name": "Przecław", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19339000", + "longitude": "21.48007000" + }, + { + "id": "87808", + "name": "Przedmieście Dubieckie", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83710000", + "longitude": "22.37177000" + }, + { + "id": "87812", + "name": "Przemyśl", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.78498000", + "longitude": "22.76728000" + }, + { + "id": "87816", + "name": "Przeworsk", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05912000", + "longitude": "22.49408000" + }, + { + "id": "87823", + "name": "Przybyszówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04788000", + "longitude": "21.92579000" + }, + { + "id": "87857", + "name": "Pysznica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.56999000", + "longitude": "22.12913000" + }, + { + "id": "87876", + "name": "Racławice", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.51370000", + "longitude": "22.16552000" + }, + { + "id": "87887", + "name": "Radomyśl", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.68101000", + "longitude": "21.94365000" + }, + { + "id": "87888", + "name": "Radomyśl Wielki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19693000", + "longitude": "21.27693000" + }, + { + "id": "87893", + "name": "Radymno", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94720000", + "longitude": "22.82375000" + }, + { + "id": "87910", + "name": "Rakszawa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.16051000", + "longitude": "22.23907000" + }, + { + "id": "87912", + "name": "Raniżów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.25873000", + "longitude": "21.97137000" + }, + { + "id": "87950", + "name": "Rogóźno", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07367000", + "longitude": "22.37486000" + }, + { + "id": "87956", + "name": "Rokietnica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89983000", + "longitude": "22.64171000" + }, + { + "id": "87961", + "name": "Ropczyce", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05229000", + "longitude": "21.60891000" + }, + { + "id": "87963", + "name": "Rozbórz", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05615000", + "longitude": "22.54686000" + }, + { + "id": "87976", + "name": "Rudna Mała", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09889000", + "longitude": "21.96021000" + }, + { + "id": "87977", + "name": "Rudna Wielka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08799000", + "longitude": "21.94759000" + }, + { + "id": "87981", + "name": "Rudnik nad Sanem", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44152000", + "longitude": "22.24856000" + }, + { + "id": "88009", + "name": "Rymanów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.57649000", + "longitude": "21.86811000" + }, + { + "id": "88020", + "name": "Rzepedź", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.36997000", + "longitude": "22.11174000" + }, + { + "id": "88024", + "name": "Rzeszów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.00545000", + "longitude": "21.98848000" + }, + { + "id": "88049", + "name": "Sanok", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.55573000", + "longitude": "22.20560000" + }, + { + "id": "88343", + "name": "Słotowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94603000", + "longitude": "21.29425000" + }, + { + "id": "88329", + "name": "Sędziszów Małopolski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07069000", + "longitude": "21.70062000" + }, + { + "id": "88066", + "name": "Siedleczka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96061000", + "longitude": "22.37949000" + }, + { + "id": "88068", + "name": "Siedliska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95409000", + "longitude": "21.94742000" + }, + { + "id": "88077", + "name": "Sieniawa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.17790000", + "longitude": "22.60954000" + }, + { + "id": "88092", + "name": "Sietesz", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98622000", + "longitude": "22.34671000" + }, + { + "id": "88114", + "name": "Skołyszyn", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.74955000", + "longitude": "21.33665000" + }, + { + "id": "88157", + "name": "Sośnica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90083000", + "longitude": "22.87469000" + }, + { + "id": "88139", + "name": "Sokołów Małopolski", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.22909000", + "longitude": "22.11968000" + }, + { + "id": "88136", + "name": "Sokolniki", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.63803000", + "longitude": "21.80649000" + }, + { + "id": "88147", + "name": "Sonina", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06089000", + "longitude": "22.26551000" + }, + { + "id": "88165", + "name": "Stalowa Wola", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.58286000", + "longitude": "22.05334000" + }, + { + "id": "88178", + "name": "Stara Wieś", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71505000", + "longitude": "22.00441000" + }, + { + "id": "88186", + "name": "Stare Miasto", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.28879000", + "longitude": "22.42928000" + }, + { + "id": "88210", + "name": "Strachocina", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.60815000", + "longitude": "22.08836000" + }, + { + "id": "88212", + "name": "Straszydle", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90038000", + "longitude": "21.98124000" + }, + { + "id": "88236", + "name": "Strzyżów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87074000", + "longitude": "21.79413000" + }, + { + "id": "88238", + "name": "Stubno", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89806000", + "longitude": "22.95602000" + }, + { + "id": "88359", + "name": "Tarnobrzeg", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.57304000", + "longitude": "21.67937000" + }, + { + "id": "88362", + "name": "Tarnowiec", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73108000", + "longitude": "21.57663000" + }, + { + "id": "88393", + "name": "Tryńcza", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.16087000", + "longitude": "22.55008000" + }, + { + "id": "88394", + "name": "Trzciana", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07190000", + "longitude": "21.83850000" + }, + { + "id": "88398", + "name": "Trzcinica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.74301000", + "longitude": "21.41750000" + }, + { + "id": "88409", + "name": "Trzebownisko", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07829000", + "longitude": "22.03712000" + }, + { + "id": "88428", + "name": "Turze Pole", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.66329000", + "longitude": "22.00476000" + }, + { + "id": "88437", + "name": "Tyczyn", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96384000", + "longitude": "22.03398000" + }, + { + "id": "88442", + "name": "Tyrawa Wołoska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.57744000", + "longitude": "22.36988000" + }, + { + "id": "88448", + "name": "Uherce Mineralne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.46455000", + "longitude": "22.39829000" + }, + { + "id": "88453", + "name": "Ulanów", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.49031000", + "longitude": "22.26362000" + }, + { + "id": "88460", + "name": "Urzejowice", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01182000", + "longitude": "22.46189000" + }, + { + "id": "88465", + "name": "Ustrzyki Dolne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.43040000", + "longitude": "22.59381000" + }, + { + "id": "88470", + "name": "Wadowice Górne", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.26312000", + "longitude": "21.30215000" + }, + { + "id": "88627", + "name": "Wólka Niedźwiedzka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24226000", + "longitude": "22.18826000" + }, + { + "id": "88628", + "name": "Wólka Pełkińska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09553000", + "longitude": "22.62342000" + }, + { + "id": "88629", + "name": "Wólka Podleśna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.11785000", + "longitude": "22.11213000" + }, + { + "id": "88630", + "name": "Wólka Tanewska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.50005000", + "longitude": "22.26113000" + }, + { + "id": "88492", + "name": "Wesoła", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.79977000", + "longitude": "22.10029000" + }, + { + "id": "88555", + "name": "Wiązownica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08066000", + "longitude": "22.70668000" + }, + { + "id": "88564", + "name": "Wiśniowa", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86897000", + "longitude": "21.65508000" + }, + { + "id": "88508", + "name": "Wielkie Oczy", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02357000", + "longitude": "23.16407000" + }, + { + "id": "88509", + "name": "Wielopole Skrzyńskie", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94564000", + "longitude": "21.61491000" + }, + { + "id": "88516", + "name": "Wierzawice", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.23623000", + "longitude": "22.45090000" + }, + { + "id": "88519", + "name": "Wierzbna", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03311000", + "longitude": "22.60128000" + }, + { + "id": "88571", + "name": "Wojaszówka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.77777000", + "longitude": "21.67079000" + }, + { + "id": "88592", + "name": "Wola Żarczycka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.29120000", + "longitude": "22.25023000" + }, + { + "id": "88615", + "name": "Wysoka", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04474000", + "longitude": "22.26002000" + }, + { + "id": "88619", + "name": "Wysoka Głogowska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.16019000", + "longitude": "22.02124000" + }, + { + "id": "88620", + "name": "Wysoka Strzyżowska", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83056000", + "longitude": "21.74074000" + }, + { + "id": "88669", + "name": "Zagórz", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.51457000", + "longitude": "22.26706000" + }, + { + "id": "88671", + "name": "Zagórzyce", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01690000", + "longitude": "21.67517000" + }, + { + "id": "88674", + "name": "Zaklików", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75769000", + "longitude": "22.10226000" + }, + { + "id": "88684", + "name": "Zalesie", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01226000", + "longitude": "22.53262000" + }, + { + "id": "88687", + "name": "Zaleszany", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.64799000", + "longitude": "21.89069000" + }, + { + "id": "88695", + "name": "Zarszyn", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.58178000", + "longitude": "22.01283000" + }, + { + "id": "88696", + "name": "Zarzecze", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.52767000", + "longitude": "22.19522000" + }, + { + "id": "88718", + "name": "Zdziechowice Drugie", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.78478000", + "longitude": "22.10999000" + }, + { + "id": "88727", + "name": "Zgłobień", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01270000", + "longitude": "21.85490000" + }, + { + "id": "88732", + "name": "Zmiennica", + "state_id": 1626, + "state_code": "PK", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67652000", + "longitude": "21.96596000" + }, + { + "id": "88836", + "name": "Śniadowo", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.03874000", + "longitude": "21.99077000" + }, + { + "id": "85787", + "name": "Augustów", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.84321000", + "longitude": "22.97979000" + }, + { + "id": "88768", + "name": "Łapy", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.99110000", + "longitude": "22.88422000" + }, + { + "id": "88786", + "name": "Łomża", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.17806000", + "longitude": "22.05935000" + }, + { + "id": "85845", + "name": "Białowieża", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.70000000", + "longitude": "23.86667000" + }, + { + "id": "85850", + "name": "Białystok", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.13333000", + "longitude": "23.16433000" + }, + { + "id": "85860", + "name": "Bielsk Podlaski", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.76512000", + "longitude": "23.18647000" + }, + { + "id": "85933", + "name": "Boćki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.65155000", + "longitude": "23.04485000" + }, + { + "id": "85937", + "name": "Brańsk", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.74440000", + "longitude": "22.83774000" + }, + { + "id": "86052", + "name": "Choroszcz", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.14332000", + "longitude": "22.98889000" + }, + { + "id": "86076", + "name": "Ciechanowiec", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.67828000", + "longitude": "22.49815000" + }, + { + "id": "86105", + "name": "Czarna Białostocka", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.30509000", + "longitude": "23.28146000" + }, + { + "id": "86126", + "name": "Czeremcha", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51667000", + "longitude": "23.35000000" + }, + { + "id": "86148", + "name": "Czyżew", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.79768000", + "longitude": "22.31237000" + }, + { + "id": "86238", + "name": "Dąbrowa Białostocka", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.65364000", + "longitude": "23.34792000" + }, + { + "id": "86179", + "name": "Dobrzyniewo Duże", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.20022000", + "longitude": "23.01129000" + }, + { + "id": "86200", + "name": "Drohiczyn", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.40011000", + "longitude": "22.65853000" + }, + { + "id": "86270", + "name": "Filipów", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "54.18037000", + "longitude": "22.62076000" + }, + { + "id": "86331", + "name": "Goniadz", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.48953000", + "longitude": "22.73578000" + }, + { + "id": "86370", + "name": "Grajewo", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.64728000", + "longitude": "22.45537000" + }, + { + "id": "86384", + "name": "Grudki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.09488000", + "longitude": "23.66848000" + }, + { + "id": "86439", + "name": "Hajnówka", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.74328000", + "longitude": "23.58122000" + }, + { + "id": "86545", + "name": "Jedwabne", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.28554000", + "longitude": "22.30353000" + }, + { + "id": "86646", + "name": "Kleszczele", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.57314000", + "longitude": "23.32539000" + }, + { + "id": "86659", + "name": "Knyszyn", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.31406000", + "longitude": "22.91963000" + }, + { + "id": "86679", + "name": "Kolno", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.41148000", + "longitude": "21.92905000" + }, + { + "id": "86771", + "name": "Krasnopol", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "54.11613000", + "longitude": "23.20476000" + }, + { + "id": "86797", + "name": "Krynki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.26444000", + "longitude": "23.77304000" + }, + { + "id": "86847", + "name": "Kuźnica", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.51094000", + "longitude": "23.64953000" + }, + { + "id": "86921", + "name": "Lipsk", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.73312000", + "longitude": "23.40225000" + }, + { + "id": "87010", + "name": "Mały Płock", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.30385000", + "longitude": "22.02836000" + }, + { + "id": "87021", + "name": "Michałowo", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.03492000", + "longitude": "23.60996000" + }, + { + "id": "87048", + "name": "Milejczyce", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.51967000", + "longitude": "23.13206000" + }, + { + "id": "87100", + "name": "Mońki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.40496000", + "longitude": "22.79791000" + }, + { + "id": "87138", + "name": "Narew", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.91418000", + "longitude": "23.51984000" + }, + { + "id": "87196", + "name": "Nowogród", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.22698000", + "longitude": "21.88210000" + }, + { + "id": "87213", + "name": "Nurzec-Stacja", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.46249000", + "longitude": "23.08571000" + }, + { + "id": "87266", + "name": "Orla", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.70546000", + "longitude": "23.33213000" + }, + { + "id": "87402", + "name": "Piątnica", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.19657000", + "longitude": "22.09591000" + }, + { + "id": "87458", + "name": "Powiat augustowski", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.79742000", + "longitude": "23.14275000" + }, + { + "id": "87750", + "name": "Powiat łomżyński", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.20686000", + "longitude": "22.08252000" + }, + { + "id": "87464", + "name": "Powiat białostocki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.09897000", + "longitude": "23.59314000" + }, + { + "id": "87466", + "name": "Powiat bielski", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.74629000", + "longitude": "23.00669000" + }, + { + "id": "87512", + "name": "Powiat grajewski", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.55509000", + "longitude": "22.48995000" + }, + { + "id": "87522", + "name": "Powiat hajnowski", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.70845000", + "longitude": "23.55719000" + }, + { + "id": "87541", + "name": "Powiat kolneński", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.39186000", + "longitude": "21.93631000" + }, + { + "id": "87591", + "name": "Powiat moniecki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.44561000", + "longitude": "22.78144000" + }, + { + "id": "87669", + "name": "Powiat sejneński", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "54.09561000", + "longitude": "23.30425000" + }, + { + "id": "87671", + "name": "Powiat siemiatycki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.48842000", + "longitude": "22.88642000" + }, + { + "id": "87678", + "name": "Powiat sokólski", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.43511000", + "longitude": "23.41864000" + }, + { + "id": "87690", + "name": "Powiat suwalski", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "54.16655000", + "longitude": "22.81818000" + }, + { + "id": "87727", + "name": "Powiat wysokomazowiecki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.86458000", + "longitude": "22.55541000" + }, + { + "id": "87736", + "name": "Powiat zambrowski", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.02256000", + "longitude": "22.28505000" + }, + { + "id": "87854", + "name": "Puńsk", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "54.25114000", + "longitude": "23.18124000" + }, + { + "id": "87875", + "name": "Raczki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.98749000", + "longitude": "22.78487000" + }, + { + "id": "87901", + "name": "Radziłów", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.40994000", + "longitude": "22.40988000" + }, + { + "id": "87907", + "name": "Rajgród", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.73102000", + "longitude": "22.70515000" + }, + { + "id": "87974", + "name": "Rudka", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.72439000", + "longitude": "22.72676000" + }, + { + "id": "87990", + "name": "Rutki-Kossaki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.08932000", + "longitude": "22.44011000" + }, + { + "id": "88055", + "name": "Sejny", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "54.10802000", + "longitude": "23.34698000" + }, + { + "id": "88072", + "name": "Siemiatycze", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.42719000", + "longitude": "22.86231000" + }, + { + "id": "88141", + "name": "Sokółka", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.40715000", + "longitude": "23.50228000" + }, + { + "id": "88138", + "name": "Sokoły", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.99314000", + "longitude": "22.70050000" + }, + { + "id": "88200", + "name": "Stawiski", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.37987000", + "longitude": "22.15462000" + }, + { + "id": "88251", + "name": "Suchowola", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.57753000", + "longitude": "23.10596000" + }, + { + "id": "88264", + "name": "Supraśl", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.20526000", + "longitude": "23.33934000" + }, + { + "id": "88265", + "name": "Suraż", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.94908000", + "longitude": "22.95653000" + }, + { + "id": "88269", + "name": "Suwałki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "54.10272000", + "longitude": "22.92914000" + }, + { + "id": "88300", + "name": "Szczuczyn", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.56330000", + "longitude": "22.28534000" + }, + { + "id": "88308", + "name": "Szepietowo", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.87032000", + "longitude": "22.54392000" + }, + { + "id": "88318", + "name": "Szumowo", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.91884000", + "longitude": "22.08449000" + }, + { + "id": "88426", + "name": "Turośń Kościelna", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.01463000", + "longitude": "23.05532000" + }, + { + "id": "88438", + "name": "Tykocin", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.20567000", + "longitude": "22.77457000" + }, + { + "id": "88484", + "name": "Wasilków", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.19909000", + "longitude": "23.20776000" + }, + { + "id": "88635", + "name": "Wąsosz", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.52209000", + "longitude": "22.31915000" + }, + { + "id": "88554", + "name": "Wizna", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.19518000", + "longitude": "22.38241000" + }, + { + "id": "88622", + "name": "Wysokie Mazowieckie", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.91661000", + "longitude": "22.51712000" + }, + { + "id": "88623", + "name": "Wyszki", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.84129000", + "longitude": "22.98119000" + }, + { + "id": "88663", + "name": "Zabłudów", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.01442000", + "longitude": "23.33831000" + }, + { + "id": "88690", + "name": "Zambrów", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "52.98550000", + "longitude": "22.24319000" + }, + { + "id": "88712", + "name": "Zbójna", + "state_id": 1632, + "state_code": "PD", + "country_id": 176, + "country_code": "PL", + "latitude": "53.24293000", + "longitude": "21.78812000" + }, + { + "id": "88818", + "name": "Łęczyce", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.59405000", + "longitude": "17.85931000" + }, + { + "id": "88819", + "name": "Łęgowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.22641000", + "longitude": "18.64277000" + }, + { + "id": "88778", + "name": "Łeba", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.76099000", + "longitude": "17.55547000" + }, + { + "id": "88883", + "name": "Żelistrzewo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.67770000", + "longitude": "18.41738000" + }, + { + "id": "88892", + "name": "Żukowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.34220000", + "longitude": "18.36476000" + }, + { + "id": "85800", + "name": "Banino", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.39215000", + "longitude": "18.40622000" + }, + { + "id": "85886", + "name": "Bobowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.88378000", + "longitude": "18.55681000" + }, + { + "id": "85902", + "name": "Bojano", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.47123000", + "longitude": "18.38408000" + }, + { + "id": "85915", + "name": "Bolszewo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.61801000", + "longitude": "18.17585000" + }, + { + "id": "85929", + "name": "Borzytuchom", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.20021000", + "longitude": "17.36801000" + }, + { + "id": "85956", + "name": "Brusy", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.88446000", + "longitude": "17.71786000" + }, + { + "id": "86008", + "name": "Bytów", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.17057000", + "longitude": "17.49187000" + }, + { + "id": "86018", + "name": "Cedry Wielkie", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.24707000", + "longitude": "18.84567000" + }, + { + "id": "86025", + "name": "Cewice", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.43551000", + "longitude": "17.73485000" + }, + { + "id": "86074", + "name": "Chłapowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.80365000", + "longitude": "18.37352000" + }, + { + "id": "86036", + "name": "Chmielno", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.32543000", + "longitude": "18.09860000" + }, + { + "id": "86042", + "name": "Choczewo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.73993000", + "longitude": "17.89175000" + }, + { + "id": "86049", + "name": "Chojnice", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.69554000", + "longitude": "17.55701000" + }, + { + "id": "86067", + "name": "Chwaszczyno", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.44379000", + "longitude": "18.41875000" + }, + { + "id": "86106", + "name": "Czarna Dąbrówka", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.35631000", + "longitude": "17.56456000" + }, + { + "id": "86108", + "name": "Czarna Woda", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.84458000", + "longitude": "18.10006000" + }, + { + "id": "86109", + "name": "Czarne", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.68420000", + "longitude": "16.93834000" + }, + { + "id": "86152", + "name": "Człuchów", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.66722000", + "longitude": "17.35883000" + }, + { + "id": "86138", + "name": "Czersk", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.79589000", + "longitude": "17.97647000" + }, + { + "id": "86157", + "name": "Damnica", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.50025000", + "longitude": "17.27154000" + }, + { + "id": "86249", + "name": "Dębnica Kaszubska", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.37831000", + "longitude": "17.16116000" + }, + { + "id": "86161", + "name": "Debrzno", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.53817000", + "longitude": "17.23643000" + }, + { + "id": "86220", + "name": "Dziemiany", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.00636000", + "longitude": "17.76755000" + }, + { + "id": "86223", + "name": "Dzierzgoń", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.92196000", + "longitude": "19.34705000" + }, + { + "id": "86283", + "name": "Garcz", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.34760000", + "longitude": "18.10169000" + }, + { + "id": "86285", + "name": "Gardeja", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.61125000", + "longitude": "18.94687000" + }, + { + "id": "86437", + "name": "Główczyce", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.61935000", + "longitude": "17.37230000" + }, + { + "id": "86291", + "name": "Gdańsk", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.35205000", + "longitude": "18.64637000" + }, + { + "id": "86292", + "name": "Gdynia", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.51889000", + "longitude": "18.53188000" + }, + { + "id": "86314", + "name": "Gnieżdżewo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.74741000", + "longitude": "18.37944000" + }, + { + "id": "86310", + "name": "Gniew", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.83602000", + "longitude": "18.82310000" + }, + { + "id": "86311", + "name": "Gniewino", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.71709000", + "longitude": "18.01663000" + }, + { + "id": "86359", + "name": "Gościcino", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.60459000", + "longitude": "18.15491000" + }, + { + "id": "86367", + "name": "Grabowo Kościerskie", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.16816000", + "longitude": "18.14692000" + }, + { + "id": "86446", + "name": "Hel", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.60814000", + "longitude": "18.80130000" + }, + { + "id": "86520", + "name": "Jastarnia", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.69830000", + "longitude": "18.67730000" + }, + { + "id": "86527", + "name": "Jastrzębia Góra", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.83135000", + "longitude": "18.31301000" + }, + { + "id": "86585", + "name": "Kaliska", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.90535000", + "longitude": "18.21885000" + }, + { + "id": "86616", + "name": "Karsin", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.90768000", + "longitude": "17.92093000" + }, + { + "id": "86617", + "name": "Kartuzy", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.33424000", + "longitude": "18.19735000" + }, + { + "id": "86854", + "name": "Kępice", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.24111000", + "longitude": "16.88968000" + }, + { + "id": "86744", + "name": "Kołczygłowy", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.23895000", + "longitude": "17.23154000" + }, + { + "id": "86756", + "name": "Kościerzyna", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.12226000", + "longitude": "17.98119000" + }, + { + "id": "86668", + "name": "Kobylnica", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.43975000", + "longitude": "16.99782000" + }, + { + "id": "86673", + "name": "Koczała", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.90449000", + "longitude": "17.06529000" + }, + { + "id": "86676", + "name": "Kolbudy", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.26989000", + "longitude": "18.46639000" + }, + { + "id": "86678", + "name": "Koleczkowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.48629000", + "longitude": "18.34373000" + }, + { + "id": "86710", + "name": "Kosakowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.58927000", + "longitude": "18.48484000" + }, + { + "id": "86727", + "name": "Kowale", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.30976000", + "longitude": "18.56149000" + }, + { + "id": "86781", + "name": "Krokowa", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.77921000", + "longitude": "18.16160000" + }, + { + "id": "86794", + "name": "Krynica Morska", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.38051000", + "longitude": "19.44413000" + }, + { + "id": "86849", + "name": "Kwidzyn", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.72495000", + "longitude": "18.93114000" + }, + { + "id": "86978", + "name": "Lębork", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.53921000", + "longitude": "17.75012000" + }, + { + "id": "86903", + "name": "Linia", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.45143000", + "longitude": "17.93454000" + }, + { + "id": "86904", + "name": "Liniewo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.07661000", + "longitude": "18.22675000" + }, + { + "id": "86912", + "name": "Lipnica", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.99623000", + "longitude": "17.40702000" + }, + { + "id": "86923", + "name": "Lipusz", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.09806000", + "longitude": "17.78455000" + }, + { + "id": "86925", + "name": "Lisewo Malborskie", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.09665000", + "longitude": "18.82928000" + }, + { + "id": "86938", + "name": "Lubichowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.85136000", + "longitude": "18.39901000" + }, + { + "id": "86946", + "name": "Lublewo Gdańskie", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.28457000", + "longitude": "18.50389000" + }, + { + "id": "86972", + "name": "Luzino", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.56604000", + "longitude": "18.10907000" + }, + { + "id": "86986", + "name": "Malbork", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.03591000", + "longitude": "19.02660000" + }, + { + "id": "87017", + "name": "Miastko", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.00283000", + "longitude": "16.98263000" + }, + { + "id": "87073", + "name": "Miłoradz", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.01392000", + "longitude": "18.91846000" + }, + { + "id": "87043", + "name": "Mikołajki Pomorskie", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.85131000", + "longitude": "19.16574000" + }, + { + "id": "87096", + "name": "Mosty", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.61195000", + "longitude": "18.49634000" + }, + { + "id": "87104", + "name": "Mrzezino", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.65378000", + "longitude": "18.43025000" + }, + { + "id": "87178", + "name": "Nowa Wieś Lęborska", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.55878000", + "longitude": "17.72756000" + }, + { + "id": "87202", + "name": "Nowy Dwór Gdański", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.21305000", + "longitude": "19.11771000" + }, + { + "id": "87205", + "name": "Nowy Staw", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.13609000", + "longitude": "19.00909000" + }, + { + "id": "87267", + "name": "Orle", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.64022000", + "longitude": "18.17057000" + }, + { + "id": "87287", + "name": "Osiek", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.72226000", + "longitude": "18.49051000" + }, + { + "id": "87296", + "name": "Ostaszewo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.21256000", + "longitude": "18.95142000" + }, + { + "id": "87346", + "name": "Parchowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.20658000", + "longitude": "17.66816000" + }, + { + "id": "87363", + "name": "Pelplin", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.92834000", + "longitude": "18.69770000" + }, + { + "id": "87425", + "name": "Pogórze", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.56440000", + "longitude": "18.48209000" + }, + { + "id": "87456", + "name": "Potęgowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.48285000", + "longitude": "17.48620000" + }, + { + "id": "87480", + "name": "Powiat bytowski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.15691000", + "longitude": "17.29147000" + }, + { + "id": "87485", + "name": "Powiat chojnicki", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.80099000", + "longitude": "17.71882000" + }, + { + "id": "87492", + "name": "Powiat człuchowski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.75112000", + "longitude": "17.18936000" + }, + { + "id": "87501", + "name": "Powiat gdański", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.22493000", + "longitude": "18.58157000" + }, + { + "id": "87536", + "name": "Powiat kartuski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.32687000", + "longitude": "18.08632000" + }, + { + "id": "87549", + "name": "Powiat kościerski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.01939000", + "longitude": "18.00400000" + }, + { + "id": "87558", + "name": "Powiat kwidzyński", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.74690000", + "longitude": "19.03111000" + }, + { + "id": "87580", + "name": "Powiat lęborski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.56830000", + "longitude": "17.65178000" + }, + { + "id": "87582", + "name": "Powiat malborski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.06329000", + "longitude": "19.04421000" + }, + { + "id": "87602", + "name": "Powiat nowodworski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.28730000", + "longitude": "19.24266000" + }, + { + "id": "87649", + "name": "Powiat pucki", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.69659000", + "longitude": "18.36979000" + }, + { + "id": "87700", + "name": "Powiat słupski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.42211000", + "longitude": "17.15917000" + }, + { + "id": "87682", + "name": "Powiat starogardzki", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.89912000", + "longitude": "18.39912000" + }, + { + "id": "87694", + "name": "Powiat sztumski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.90149000", + "longitude": "19.22000000" + }, + { + "id": "87705", + "name": "Powiat tczewski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.91895000", + "longitude": "18.71916000" + }, + { + "id": "87716", + "name": "Powiat wejherowski", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.61707000", + "longitude": "18.04881000" + }, + { + "id": "87783", + "name": "Prabuty", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.75500000", + "longitude": "19.20547000" + }, + { + "id": "87798", + "name": "Pruszcz Gdański", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.26217000", + "longitude": "18.63625000" + }, + { + "id": "87801", + "name": "Przechlewo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.79847000", + "longitude": "17.25205000" + }, + { + "id": "87818", + "name": "Przodkowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.37991000", + "longitude": "18.28760000" + }, + { + "id": "87834", + "name": "Przywidz", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.19524000", + "longitude": "18.32116000" + }, + { + "id": "87844", + "name": "Pszczółki", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.17304000", + "longitude": "18.69787000" + }, + { + "id": "87847", + "name": "Puck", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.71790000", + "longitude": "18.40841000" + }, + { + "id": "87921", + "name": "Reda", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.60528000", + "longitude": "18.34717000" + }, + { + "id": "87935", + "name": "Rekowo Dolne", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.63133000", + "longitude": "18.36279000" + }, + { + "id": "87962", + "name": "Rotmanka", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.27425000", + "longitude": "18.60380000" + }, + { + "id": "87986", + "name": "Rumia", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.57092000", + "longitude": "18.38802000" + }, + { + "id": "88007", + "name": "Ryjewo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.84463000", + "longitude": "18.96077000" + }, + { + "id": "88015", + "name": "Rzeczenica", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.75790000", + "longitude": "17.10752000" + }, + { + "id": "88042", + "name": "Sadlinki", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.66539000", + "longitude": "18.86807000" + }, + { + "id": "88353", + "name": "Słupsk", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.46405000", + "longitude": "17.02872000" + }, + { + "id": "88087", + "name": "Sierakowice", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.34610000", + "longitude": "17.89252000" + }, + { + "id": "88098", + "name": "Skarszewy", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.06911000", + "longitude": "18.44416000" + }, + { + "id": "88121", + "name": "Skórcz", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.79436000", + "longitude": "18.52561000" + }, + { + "id": "88129", + "name": "Smętowo Graniczne", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.74638000", + "longitude": "18.68586000" + }, + { + "id": "88126", + "name": "Smołdzino", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.66318000", + "longitude": "17.21369000" + }, + { + "id": "88145", + "name": "Somonino", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.27555000", + "longitude": "18.19885000" + }, + { + "id": "88148", + "name": "Sopot", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.44180000", + "longitude": "18.56003000" + }, + { + "id": "88176", + "name": "Stara Kiszewa", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.99006000", + "longitude": "18.16958000" + }, + { + "id": "88188", + "name": "Stare Pole", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.05667000", + "longitude": "19.20874000" + }, + { + "id": "88190", + "name": "Starogard Gdański", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.96396000", + "longitude": "18.52638000" + }, + { + "id": "88195", + "name": "Stary Targ", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.92335000", + "longitude": "19.17003000" + }, + { + "id": "88245", + "name": "Stężyca", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.20593000", + "longitude": "17.95569000" + }, + { + "id": "88202", + "name": "Stegna", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.32684000", + "longitude": "19.11252000" + }, + { + "id": "88213", + "name": "Straszyn", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.27214000", + "longitude": "18.58114000" + }, + { + "id": "88233", + "name": "Strzelno", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.78564000", + "longitude": "18.32515000" + }, + { + "id": "88239", + "name": "Studzienice", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.09262000", + "longitude": "17.57581000" + }, + { + "id": "88246", + "name": "Subkowy", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.00227000", + "longitude": "18.76928000" + }, + { + "id": "88253", + "name": "Suchy Dąb", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.20809000", + "longitude": "18.76731000" + }, + { + "id": "88263", + "name": "Sulęczyno", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.23302000", + "longitude": "17.77330000" + }, + { + "id": "88307", + "name": "Szemud", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.48709000", + "longitude": "18.22280000" + }, + { + "id": "88311", + "name": "Szlachta", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.76827000", + "longitude": "18.11367000" + }, + { + "id": "88315", + "name": "Sztum", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.92077000", + "longitude": "19.03072000" + }, + { + "id": "88316", + "name": "Sztutowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.32679000", + "longitude": "19.17921000" + }, + { + "id": "88369", + "name": "Tczew", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.09242000", + "longitude": "18.77787000" + }, + { + "id": "88416", + "name": "Trąbki Wielkie", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.17062000", + "longitude": "18.54003000" + }, + { + "id": "88404", + "name": "Trzebielino", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.19996000", + "longitude": "17.08726000" + }, + { + "id": "88418", + "name": "Tuchomie", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.11522000", + "longitude": "17.33634000" + }, + { + "id": "88462", + "name": "Ustka", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.58048000", + "longitude": "16.86194000" + }, + { + "id": "88646", + "name": "Władysławowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.79086000", + "longitude": "18.40090000" + }, + { + "id": "88490", + "name": "Wejherowo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.60568000", + "longitude": "18.23559000" + }, + { + "id": "88507", + "name": "Wielki Kack", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.46754000", + "longitude": "18.48810000" + }, + { + "id": "88526", + "name": "Wierzchucino", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "54.78797000", + "longitude": "18.00307000" + }, + { + "id": "88708", + "name": "Zblewo", + "state_id": 1624, + "state_code": "PM", + "country_id": 176, + "country_code": "PL", + "latitude": "53.93366000", + "longitude": "18.32262000" + }, + { + "id": "88830", + "name": "Ślemień", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71826000", + "longitude": "19.36735000" + }, + { + "id": "88867", + "name": "Świętochłowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.29636000", + "longitude": "18.91726000" + }, + { + "id": "88854", + "name": "Świerklaniec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44237000", + "longitude": "18.93734000" + }, + { + "id": "88855", + "name": "Świerklany Dolne", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01827000", + "longitude": "18.57702000" + }, + { + "id": "88856", + "name": "Świerklany Górne", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02765000", + "longitude": "18.59050000" + }, + { + "id": "88861", + "name": "Świnna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.65802000", + "longitude": "19.25406000" + }, + { + "id": "88774", + "name": "Łaziska", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93570000", + "longitude": "18.44707000" + }, + { + "id": "88775", + "name": "Łaziska Górne", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.14952000", + "longitude": "18.84215000" + }, + { + "id": "88776", + "name": "Łazy", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.42769000", + "longitude": "19.39465000" + }, + { + "id": "88821", + "name": "Łękawica", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72209000", + "longitude": "19.26496000" + }, + { + "id": "88780", + "name": "Łobodno", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.93079000", + "longitude": "18.99090000" + }, + { + "id": "88783", + "name": "Łodygowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72992000", + "longitude": "19.13939000" + }, + { + "id": "88870", + "name": "Żabnica", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.58139000", + "longitude": "19.15621000" + }, + { + "id": "88873", + "name": "Żarki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.62518000", + "longitude": "19.36357000" + }, + { + "id": "88875", + "name": "Żarki-Letnisko", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.62295000", + "longitude": "19.27508000" + }, + { + "id": "88885", + "name": "Żernica", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24770000", + "longitude": "18.61547000" + }, + { + "id": "88890", + "name": "Żory", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04523000", + "longitude": "18.70062000" + }, + { + "id": "88901", + "name": "Żywiec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.68529000", + "longitude": "19.19243000" + }, + { + "id": "85821", + "name": "Bażanowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73791000", + "longitude": "18.70345000" + }, + { + "id": "86009", + "name": "Bąków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89342000", + "longitude": "18.71495000" + }, + { + "id": "86013", + "name": "Będzin", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.32607000", + "longitude": "19.12565000" + }, + { + "id": "85829", + "name": "Bełk", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13048000", + "longitude": "18.71667000" + }, + { + "id": "85830", + "name": "Bełsznica", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97811000", + "longitude": "18.36313000" + }, + { + "id": "85826", + "name": "Bestwina", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89712000", + "longitude": "19.05776000" + }, + { + "id": "85827", + "name": "Bestwinka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.93272000", + "longitude": "19.06694000" + }, + { + "id": "85862", + "name": "Bielsko-Biała", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.81204000", + "longitude": "19.03899000" + }, + { + "id": "85861", + "name": "Bielsko-Biala", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82245000", + "longitude": "19.04686000" + }, + { + "id": "85867", + "name": "Bieruń", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09000000", + "longitude": "19.09291000" + }, + { + "id": "85879", + "name": "Blachownia", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.78015000", + "longitude": "18.96389000" + }, + { + "id": "85890", + "name": "Bobrowniki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.37985000", + "longitude": "18.98661000" + }, + { + "id": "85906", + "name": "Bojszowy", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05780000", + "longitude": "19.10145000" + }, + { + "id": "85907", + "name": "Bojszowy Nowe", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05284000", + "longitude": "19.05012000" + }, + { + "id": "85923", + "name": "Boronów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67460000", + "longitude": "18.90678000" + }, + { + "id": "85926", + "name": "Borowno", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.93247000", + "longitude": "19.27380000" + }, + { + "id": "85927", + "name": "Borucin", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.00763000", + "longitude": "18.15748000" + }, + { + "id": "85940", + "name": "Brenna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72576000", + "longitude": "18.90249000" + }, + { + "id": "85953", + "name": "Bronów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87782000", + "longitude": "18.92103000" + }, + { + "id": "85965", + "name": "Brzeziny Śląskie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.35439000", + "longitude": "18.98129000" + }, + { + "id": "85982", + "name": "Buczkowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72858000", + "longitude": "19.06908000" + }, + { + "id": "85987", + "name": "Bujaków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85182000", + "longitude": "19.19432000" + }, + { + "id": "86001", + "name": "Bystra", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.76042000", + "longitude": "19.05973000" + }, + { + "id": "86005", + "name": "Bytom", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.34802000", + "longitude": "18.93282000" + }, + { + "id": "86026", + "name": "Chałupki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.92559000", + "longitude": "18.31730000" + }, + { + "id": "86028", + "name": "Chełm Śląski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10825000", + "longitude": "19.19552000" + }, + { + "id": "86053", + "name": "Choroń", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.68178000", + "longitude": "19.26058000" + }, + { + "id": "86055", + "name": "Chorzów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.30582000", + "longitude": "18.97420000" + }, + { + "id": "86060", + "name": "Chruszczobród", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.41470000", + "longitude": "19.32718000" + }, + { + "id": "86069", + "name": "Chybie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90249000", + "longitude": "18.82756000" + }, + { + "id": "86075", + "name": "Ciasna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75427000", + "longitude": "18.60835000" + }, + { + "id": "86093", + "name": "Cięcina", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.60220000", + "longitude": "19.14102000" + }, + { + "id": "86081", + "name": "Cielmice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08826000", + "longitude": "19.01896000" + }, + { + "id": "86088", + "name": "Cieszyn", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.75133000", + "longitude": "18.63213000" + }, + { + "id": "86090", + "name": "Cisiec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.59213000", + "longitude": "19.10540000" + }, + { + "id": "86092", + "name": "Cisownica", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72276000", + "longitude": "18.76207000" + }, + { + "id": "86098", + "name": "Cynków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.56203000", + "longitude": "19.11956000" + }, + { + "id": "86100", + "name": "Czaniec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85071000", + "longitude": "19.25354000" + }, + { + "id": "86103", + "name": "Czarków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01833000", + "longitude": "18.90678000" + }, + { + "id": "86150", + "name": "Częstochowa", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.79646000", + "longitude": "19.12409000" + }, + { + "id": "86122", + "name": "Czechowice-Dziedzice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91342000", + "longitude": "19.00479000" + }, + { + "id": "86123", + "name": "Czeladź", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.31542000", + "longitude": "19.07824000" + }, + { + "id": "86130", + "name": "Czernica", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08391000", + "longitude": "18.40068000" + }, + { + "id": "86132", + "name": "Czernichów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.75443000", + "longitude": "19.20947000" + }, + { + "id": "86141", + "name": "Czerwionka-Leszczyny", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15007000", + "longitude": "18.67762000" + }, + { + "id": "86149", + "name": "Czyżowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98490000", + "longitude": "18.40433000" + }, + { + "id": "86240", + "name": "Dąbrowa Górnicza", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.33394000", + "longitude": "19.20479000" + }, + { + "id": "86242", + "name": "Dąbrowa Zielona", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84394000", + "longitude": "19.55652000" + }, + { + "id": "86256", + "name": "Dębowiec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.81406000", + "longitude": "18.72062000" + }, + { + "id": "86166", + "name": "Dobieszowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.39697000", + "longitude": "19.01304000" + }, + { + "id": "86199", + "name": "Drogomyśl", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86964000", + "longitude": "18.75727000" + }, + { + "id": "86231", + "name": "Dzięgielów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72259000", + "longitude": "18.70491000" + }, + { + "id": "86276", + "name": "Frydek", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99626000", + "longitude": "19.07278000" + }, + { + "id": "86284", + "name": "Gardawice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.11667000", + "longitude": "18.80000000" + }, + { + "id": "86287", + "name": "Gaszowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10858000", + "longitude": "18.43042000" + }, + { + "id": "86409", + "name": "Góra", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97971000", + "longitude": "19.10471000" + }, + { + "id": "86414", + "name": "Górki Wielkie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.77971000", + "longitude": "18.83117000" + }, + { + "id": "86299", + "name": "Gierałtowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.22486000", + "longitude": "18.73384000" + }, + { + "id": "86303", + "name": "Gilowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99505000", + "longitude": "19.09613000" + }, + { + "id": "86307", + "name": "Gliwice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.29761000", + "longitude": "18.67658000" + }, + { + "id": "86308", + "name": "Gniazdów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.59621000", + "longitude": "19.11132000" + }, + { + "id": "86356", + "name": "Gołkowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91418000", + "longitude": "18.51419000" + }, + { + "id": "86317", + "name": "Goczałkowice Zdrój", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94454000", + "longitude": "18.96927000" + }, + { + "id": "86322", + "name": "Godów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.92481000", + "longitude": "18.47830000" + }, + { + "id": "86319", + "name": "Godziszka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71288000", + "longitude": "19.07587000" + }, + { + "id": "86327", + "name": "Goleszów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.73580000", + "longitude": "18.73675000" + }, + { + "id": "86339", + "name": "Gorzyce", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95945000", + "longitude": "18.39884000" + }, + { + "id": "86341", + "name": "Gorzyczki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94912000", + "longitude": "18.40330000" + }, + { + "id": "86346", + "name": "Gostyń", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10528000", + "longitude": "18.88241000" + }, + { + "id": "86445", + "name": "Hażlach", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80714000", + "longitude": "18.65178000" + }, + { + "id": "86448", + "name": "Herby", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75318000", + "longitude": "18.88756000" + }, + { + "id": "86455", + "name": "Huta Stara B", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.73792000", + "longitude": "19.13295000" + }, + { + "id": "86457", + "name": "Imielin", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.14534000", + "longitude": "19.18599000" + }, + { + "id": "86462", + "name": "Istebna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56319000", + "longitude": "18.90567000" + }, + { + "id": "86494", + "name": "Jankowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.00090000", + "longitude": "18.98901000" + }, + { + "id": "86495", + "name": "Jankowice Rybnickie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.04479000", + "longitude": "18.54707000" + }, + { + "id": "86498", + "name": "Janowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88496000", + "longitude": "19.09376000" + }, + { + "id": "86514", + "name": "Jasienica", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.81312000", + "longitude": "18.92155000" + }, + { + "id": "86524", + "name": "Jastrząb", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67019000", + "longitude": "19.18170000" + }, + { + "id": "86528", + "name": "Jastrzębie Zdrój", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95542000", + "longitude": "18.57479000" + }, + { + "id": "86529", + "name": "Jastrzębie-Zdrój", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96063000", + "longitude": "18.60053000" + }, + { + "id": "86535", + "name": "Jaworze", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.79351000", + "longitude": "18.94790000" + }, + { + "id": "86536", + "name": "Jaworzno", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.20528000", + "longitude": "19.27498000" + }, + { + "id": "86538", + "name": "Jaworzynka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.54019000", + "longitude": "18.86996000" + }, + { + "id": "86547", + "name": "Jejkowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10814000", + "longitude": "18.46767000" + }, + { + "id": "86551", + "name": "Jeleśnia", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64246000", + "longitude": "19.32701000" + }, + { + "id": "86572", + "name": "Juszczyna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.62984000", + "longitude": "19.22032000" + }, + { + "id": "86581", + "name": "Kaczyce", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.82752000", + "longitude": "18.59161000" + }, + { + "id": "86583", + "name": "Kalej", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.83662000", + "longitude": "18.98429000" + }, + { + "id": "86584", + "name": "Kalety", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.56270000", + "longitude": "18.89260000" + }, + { + "id": "86589", + "name": "Kamesznica", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56469000", + "longitude": "19.02120000" + }, + { + "id": "86592", + "name": "Kamienica Polska", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67090000", + "longitude": "19.12265000" + }, + { + "id": "86606", + "name": "Kamyk", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.90179000", + "longitude": "19.02875000" + }, + { + "id": "86608", + "name": "Kaniów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94316000", + "longitude": "19.05098000" + }, + { + "id": "86621", + "name": "Katowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.25841000", + "longitude": "19.02754000" + }, + { + "id": "86862", + "name": "Kłobuck", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.90081000", + "longitude": "18.93674000" + }, + { + "id": "86867", + "name": "Kłomnice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.92165000", + "longitude": "19.35679000" + }, + { + "id": "86658", + "name": "Knurów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.21971000", + "longitude": "18.65067000" + }, + { + "id": "86748", + "name": "Kończyce Małe", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85824000", + "longitude": "18.62964000" + }, + { + "id": "86749", + "name": "Kończyce Wielkie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83510000", + "longitude": "18.64474000" + }, + { + "id": "86753", + "name": "Kościelec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.89713000", + "longitude": "19.21560000" + }, + { + "id": "86662", + "name": "Kobiór", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06089000", + "longitude": "18.93468000" + }, + { + "id": "86660", + "name": "Kobiernice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85497000", + "longitude": "19.21646000" + }, + { + "id": "86670", + "name": "Kochanowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.70548000", + "longitude": "18.74911000" + }, + { + "id": "86690", + "name": "Koniaków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.55066000", + "longitude": "18.94910000" + }, + { + "id": "86691", + "name": "Koniecpol", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.77468000", + "longitude": "19.68896000" + }, + { + "id": "86694", + "name": "Konopiska", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.72695000", + "longitude": "19.00781000" + }, + { + "id": "86700", + "name": "Korbielów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56820000", + "longitude": "19.35001000" + }, + { + "id": "86704", + "name": "Kornowac", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.07179000", + "longitude": "18.32846000" + }, + { + "id": "86717", + "name": "Koszarawa", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64462000", + "longitude": "19.40083000" + }, + { + "id": "86720", + "name": "Koszęcin", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.63411000", + "longitude": "18.84130000" + }, + { + "id": "86734", + "name": "Koziegłowy", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.60035000", + "longitude": "19.16299000" + }, + { + "id": "86737", + "name": "Kozy", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.84756000", + "longitude": "19.14891000" + }, + { + "id": "86780", + "name": "Kroczyce", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.56176000", + "longitude": "19.57000000" + }, + { + "id": "86792", + "name": "Krupski Młyn", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.57337000", + "longitude": "18.62251000" + }, + { + "id": "86798", + "name": "Kryry", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01667000", + "longitude": "18.80568000" + }, + { + "id": "86800", + "name": "Krzanowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01822000", + "longitude": "18.12251000" + }, + { + "id": "86807", + "name": "Krzepice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.97059000", + "longitude": "18.72886000" + }, + { + "id": "86822", + "name": "Krzyżanowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98247000", + "longitude": "18.26846000" + }, + { + "id": "86824", + "name": "Krzyżowa", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.59235000", + "longitude": "19.34469000" + }, + { + "id": "86825", + "name": "Krzyżowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98528000", + "longitude": "18.67281000" + }, + { + "id": "86830", + "name": "Książenice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15524000", + "longitude": "18.59925000" + }, + { + "id": "86846", + "name": "Kuźnia Raciborska", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.20058000", + "longitude": "18.31146000" + }, + { + "id": "86869", + "name": "Laliki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.53446000", + "longitude": "19.00549000" + }, + { + "id": "86979", + "name": "Lędziny", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.14264000", + "longitude": "19.13149000" + }, + { + "id": "86888", + "name": "Leśna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67041000", + "longitude": "19.12763000" + }, + { + "id": "86880", + "name": "Lelów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.68335000", + "longitude": "19.62562000" + }, + { + "id": "86901", + "name": "Ligota", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.89856000", + "longitude": "18.95090000" + }, + { + "id": "86907", + "name": "Lipie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "51.01257000", + "longitude": "18.79658000" + }, + { + "id": "86919", + "name": "Lipowa", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67574000", + "longitude": "19.09398000" + }, + { + "id": "86948", + "name": "Lubliniec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.66897000", + "longitude": "18.68440000" + }, + { + "id": "86951", + "name": "Lubomia", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03972000", + "longitude": "18.30820000" + }, + { + "id": "86975", + "name": "Lyski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.11992000", + "longitude": "18.39146000" + }, + { + "id": "86997", + "name": "Markłowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01695000", + "longitude": "18.52098000" + }, + { + "id": "87004", + "name": "Mazańcowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.85802000", + "longitude": "18.97708000" + }, + { + "id": "87016", + "name": "Miasteczko Śląskie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.50262000", + "longitude": "18.93949000" + }, + { + "id": "87059", + "name": "Międzybrodzie Bialskie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.78747000", + "longitude": "19.19741000" + }, + { + "id": "87032", + "name": "Miedźna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98225000", + "longitude": "19.04883000" + }, + { + "id": "87031", + "name": "Miedzno", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.96994000", + "longitude": "18.98111000" + }, + { + "id": "87039", + "name": "Mierzęcice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44504000", + "longitude": "19.12934000" + }, + { + "id": "87044", + "name": "Mikołów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.17103000", + "longitude": "18.90410000" + }, + { + "id": "87051", + "name": "Milówka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.55540000", + "longitude": "19.09072000" + }, + { + "id": "87076", + "name": "Mnich", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88944000", + "longitude": "18.80722000" + }, + { + "id": "87107", + "name": "Mstów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.82969000", + "longitude": "19.28547000" + }, + { + "id": "87108", + "name": "Mszana", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96939000", + "longitude": "18.52793000" + }, + { + "id": "87112", + "name": "Murcki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.20036000", + "longitude": "19.04351000" + }, + { + "id": "87116", + "name": "Mykanów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.92360000", + "longitude": "19.20050000" + }, + { + "id": "87121", + "name": "Mysłowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.20745000", + "longitude": "19.16668000" + }, + { + "id": "87118", + "name": "Myszków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.57520000", + "longitude": "19.32461000" + }, + { + "id": "87133", + "name": "Nakło", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.43690000", + "longitude": "18.91056000" + }, + { + "id": "87215", + "name": "Nędza", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.16112000", + "longitude": "18.31103000" + }, + { + "id": "87153", + "name": "Niedobczyce", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06540000", + "longitude": "18.49531000" + }, + { + "id": "87160", + "name": "Niegowonice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38909000", + "longitude": "19.42263000" + }, + { + "id": "87326", + "name": "Ożarowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46182000", + "longitude": "19.04317000" + }, + { + "id": "87223", + "name": "Ochaby", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.84252000", + "longitude": "18.76894000" + }, + { + "id": "87231", + "name": "Ogrodzieniec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.45177000", + "longitude": "19.51987000" + }, + { + "id": "87247", + "name": "Olsztyn", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.75185000", + "longitude": "19.26737000" + }, + { + "id": "87253", + "name": "Olza", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.95393000", + "longitude": "18.33910000" + }, + { + "id": "87258", + "name": "Opatów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.95567000", + "longitude": "18.81941000" + }, + { + "id": "87269", + "name": "Ornontowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19377000", + "longitude": "18.75435000" + }, + { + "id": "87271", + "name": "Orzech", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.42744000", + "longitude": "18.92275000" + }, + { + "id": "87273", + "name": "Orzesze", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15595000", + "longitude": "18.77923000" + }, + { + "id": "87304", + "name": "Ostrowy nad Okszą", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.97799000", + "longitude": "19.05355000" + }, + { + "id": "87341", + "name": "Paniówki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.23139000", + "longitude": "18.78104000" + }, + { + "id": "87342", + "name": "Panki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.88333000", + "longitude": "18.75160000" + }, + { + "id": "87357", + "name": "Pawłowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96127000", + "longitude": "18.71778000" + }, + { + "id": "87355", + "name": "Pawonków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.69499000", + "longitude": "18.58149000" + }, + { + "id": "87366", + "name": "Pewel Ślemieńska", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.68968000", + "longitude": "19.33431000" + }, + { + "id": "87365", + "name": "Pewel Wielka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.67457000", + "longitude": "19.37482000" + }, + { + "id": "87369", + "name": "Piasek", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01055000", + "longitude": "18.94807000" + }, + { + "id": "87376", + "name": "Piekary Śląskie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38017000", + "longitude": "18.92653000" + }, + { + "id": "87379", + "name": "Pielgrzymowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90547000", + "longitude": "18.64886000" + }, + { + "id": "87382", + "name": "Pierściec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.83339000", + "longitude": "18.81409000" + }, + { + "id": "87384", + "name": "Pietrowice Wielkie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08452000", + "longitude": "18.09148000" + }, + { + "id": "87385", + "name": "Pietrzykowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.69634000", + "longitude": "19.15990000" + }, + { + "id": "87388", + "name": "Pilchowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.21668000", + "longitude": "18.56132000" + }, + { + "id": "87390", + "name": "Pilica", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46799000", + "longitude": "19.65729000" + }, + { + "id": "87395", + "name": "Pisarzowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.88363000", + "longitude": "19.14565000" + }, + { + "id": "87779", + "name": "Połomia", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99185000", + "longitude": "18.55102000" + }, + { + "id": "87426", + "name": "Pogórze", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.79961000", + "longitude": "18.84327000" + }, + { + "id": "87422", + "name": "Pogrzebień", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.06722000", + "longitude": "18.29876000" + }, + { + "id": "87423", + "name": "Pogwizdów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80382000", + "longitude": "18.60106000" + }, + { + "id": "87443", + "name": "Poraj", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67797000", + "longitude": "19.21509000" + }, + { + "id": "87446", + "name": "Porąbka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.81716000", + "longitude": "19.21835000" + }, + { + "id": "87449", + "name": "Poręba", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.48831000", + "longitude": "19.33903000" + }, + { + "id": "87454", + "name": "Potok Złoty", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.70676000", + "longitude": "19.43091000" + }, + { + "id": "87769", + "name": "Powiat żywiecki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.61145000", + "longitude": "19.21367000" + }, + { + "id": "87481", + "name": "Powiat będziński", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.32924000", + "longitude": "19.10419000" + }, + { + "id": "87465", + "name": "Powiat bielski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.76175000", + "longitude": "19.10660000" + }, + { + "id": "87467", + "name": "Powiat bieruńsko-lędziński", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09356000", + "longitude": "19.14270000" + }, + { + "id": "87489", + "name": "Powiat cieszyński", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72628000", + "longitude": "18.79147000" + }, + { + "id": "87491", + "name": "Powiat częstochowski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84118000", + "longitude": "19.34045000" + }, + { + "id": "87503", + "name": "Powiat gliwicki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.36266000", + "longitude": "18.58107000" + }, + { + "id": "87562", + "name": "Powiat kłobucki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.93274000", + "longitude": "18.87005000" + }, + { + "id": "87578", + "name": "Powiat lubliniecki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.67367000", + "longitude": "18.79378000" + }, + { + "id": "87585", + "name": "Powiat mikołowski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.15133000", + "longitude": "18.83689000" + }, + { + "id": "87593", + "name": "Powiat myszkowski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.60554000", + "longitude": "19.35125000" + }, + { + "id": "87648", + "name": "Powiat pszczyński", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98987000", + "longitude": "18.88177000" + }, + { + "id": "87655", + "name": "Powiat raciborski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.08696000", + "longitude": "18.26916000" + }, + { + "id": "87663", + "name": "Powiat rybnicki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.10385000", + "longitude": "18.46527000" + }, + { + "id": "87702", + "name": "Powiat tarnogórski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.47264000", + "longitude": "18.86265000" + }, + { + "id": "87720", + "name": "Powiat wodzisławski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99323000", + "longitude": "18.42504000" + }, + { + "id": "87738", + "name": "Powiat zawierciański", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.54225000", + "longitude": "19.61192000" + }, + { + "id": "87793", + "name": "Pruchna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.86527000", + "longitude": "18.68191000" + }, + { + "id": "87821", + "name": "Przyborów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.62150000", + "longitude": "19.38701000" + }, + { + "id": "87826", + "name": "Przyrów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80051000", + "longitude": "19.52794000" + }, + { + "id": "87827", + "name": "Przystajń", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.88495000", + "longitude": "18.69169000" + }, + { + "id": "87829", + "name": "Przyszowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.24841000", + "longitude": "18.74594000" + }, + { + "id": "87838", + "name": "Psary", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.61470000", + "longitude": "18.96991000" + }, + { + "id": "87845", + "name": "Pszów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03994000", + "longitude": "18.39472000" + }, + { + "id": "87843", + "name": "Pszczyna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.98037000", + "longitude": "18.95382000" + }, + { + "id": "87853", + "name": "Puńców", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71842000", + "longitude": "18.66157000" + }, + { + "id": "87856", + "name": "Pyskowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.40000000", + "longitude": "18.63333000" + }, + { + "id": "87872", + "name": "Racibórz", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09195000", + "longitude": "18.21928000" + }, + { + "id": "87882", + "name": "Radlin", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05020000", + "longitude": "18.47626000" + }, + { + "id": "87889", + "name": "Radostowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.00311000", + "longitude": "18.88103000" + }, + { + "id": "87896", + "name": "Radziechowy", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64651000", + "longitude": "19.13115000" + }, + { + "id": "87899", + "name": "Radzionków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.40026000", + "longitude": "18.90232000" + }, + { + "id": "87906", + "name": "Rajcza", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.50927000", + "longitude": "19.11278000" + }, + { + "id": "87913", + "name": "Raszczyce", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.12190000", + "longitude": "18.29962000" + }, + { + "id": "88038", + "name": "Rędziny", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.85922000", + "longitude": "19.21620000" + }, + { + "id": "87948", + "name": "Rogów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.99097000", + "longitude": "18.35077000" + }, + { + "id": "87945", + "name": "Rogoźnik", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.39106000", + "longitude": "19.03776000" + }, + { + "id": "87959", + "name": "Rokitno Szlacheckie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.43195000", + "longitude": "19.43293000" + }, + { + "id": "87971", + "name": "Ruda Śląska", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.25840000", + "longitude": "18.85632000" + }, + { + "id": "87979", + "name": "Rudnik", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.12729000", + "longitude": "18.18598000" + }, + { + "id": "87982", + "name": "Rudniki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.52134000", + "longitude": "19.43130000" + }, + { + "id": "87983", + "name": "Rudy", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.19003000", + "longitude": "18.45334000" + }, + { + "id": "87984", + "name": "Rudziczka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.03608000", + "longitude": "18.76225000" + }, + { + "id": "87985", + "name": "Rudziniec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.35324000", + "longitude": "18.40914000" + }, + { + "id": "87991", + "name": "Rybarzowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72956000", + "longitude": "19.10162000" + }, + { + "id": "87994", + "name": "Rybnik", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09713000", + "longitude": "18.54179000" + }, + { + "id": "87997", + "name": "Rycerka Dolna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.47805000", + "longitude": "19.06162000" + }, + { + "id": "87998", + "name": "Rycerka Górna", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.44436000", + "longitude": "19.01596000" + }, + { + "id": "88004", + "name": "Rydułtowy", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.05857000", + "longitude": "18.41703000" + }, + { + "id": "88052", + "name": "Sarnów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.37380000", + "longitude": "19.15061000" + }, + { + "id": "88324", + "name": "Sól", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.48764000", + "longitude": "19.04171000" + }, + { + "id": "88337", + "name": "Sławków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.29943000", + "longitude": "19.38967000" + }, + { + "id": "88325", + "name": "Sączów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.43520000", + "longitude": "19.03038000" + }, + { + "id": "88071", + "name": "Siemianowice Śląskie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.32738000", + "longitude": "19.02901000" + }, + { + "id": "88089", + "name": "Sieraków Śląski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.80290000", + "longitude": "18.57548000" + }, + { + "id": "88093", + "name": "Siewierz", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.46657000", + "longitude": "19.23028000" + }, + { + "id": "88108", + "name": "Skoczów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.80089000", + "longitude": "18.78770000" + }, + { + "id": "88118", + "name": "Skrzyszów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.94873000", + "longitude": "18.48879000" + }, + { + "id": "88158", + "name": "Sośnicowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.27214000", + "longitude": "18.52982000" + }, + { + "id": "88149", + "name": "Sopotnia Wielka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.56853000", + "longitude": "19.28289000" + }, + { + "id": "88152", + "name": "Sosnowiec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.27119000", + "longitude": "19.19463000" + }, + { + "id": "88171", + "name": "Stanowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13037000", + "longitude": "18.67084000" + }, + { + "id": "88180", + "name": "Starcza", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.66421000", + "longitude": "19.04180000" + }, + { + "id": "88191", + "name": "Starokrzepice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.94859000", + "longitude": "18.65341000" + }, + { + "id": "88218", + "name": "Strumień", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.92103000", + "longitude": "18.76637000" + }, + { + "id": "88223", + "name": "Strzebiń", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.61647000", + "longitude": "18.89794000" + }, + { + "id": "88235", + "name": "Strzyżowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38725000", + "longitude": "19.08038000" + }, + { + "id": "88240", + "name": "Studzionka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.96232000", + "longitude": "18.77280000" + }, + { + "id": "88268", + "name": "Suszec", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02958000", + "longitude": "18.79160000" + }, + { + "id": "88282", + "name": "Syrynia", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.02004000", + "longitude": "18.34597000" + }, + { + "id": "88295", + "name": "Szczekociny", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.62669000", + "longitude": "19.82500000" + }, + { + "id": "88297", + "name": "Szczerbice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.09416000", + "longitude": "18.44896000" + }, + { + "id": "88303", + "name": "Szczyrk", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71724000", + "longitude": "19.03183000" + }, + { + "id": "88364", + "name": "Tarnowskie Góry", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.44548000", + "longitude": "18.86147000" + }, + { + "id": "88386", + "name": "Toszek", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.45442000", + "longitude": "18.52209000" + }, + { + "id": "88392", + "name": "Truskolasy", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.86692000", + "longitude": "18.82705000" + }, + { + "id": "88406", + "name": "Trzebinia", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.65024000", + "longitude": "19.22264000" + }, + { + "id": "88427", + "name": "Turza Śląska", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.97231000", + "longitude": "18.43781000" + }, + { + "id": "88434", + "name": "Tworóg", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.53100000", + "longitude": "18.71572000" + }, + { + "id": "88433", + "name": "Tworków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.00559000", + "longitude": "18.23576000" + }, + { + "id": "88436", + "name": "Tychy", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13717000", + "longitude": "18.96641000" + }, + { + "id": "88451", + "name": "Ujsoły", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.48290000", + "longitude": "19.13801000" + }, + { + "id": "88464", + "name": "Ustroń", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.72153000", + "longitude": "18.80198000" + }, + { + "id": "88651", + "name": "Włodowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.55560000", + "longitude": "19.45155000" + }, + { + "id": "88638", + "name": "Węgierska Górka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.60776000", + "longitude": "19.11638000" + }, + { + "id": "88510", + "name": "Wielowieś", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.50966000", + "longitude": "18.61608000" + }, + { + "id": "88513", + "name": "Wieprz", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.64746000", + "longitude": "19.18007000" + }, + { + "id": "88527", + "name": "Wieszowa", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.38444000", + "longitude": "18.75924000" + }, + { + "id": "88530", + "name": "Wilamowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91701000", + "longitude": "19.15237000" + }, + { + "id": "88532", + "name": "Wilcza", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.18899000", + "longitude": "18.59668000" + }, + { + "id": "88538", + "name": "Wilkowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.76282000", + "longitude": "19.08973000" + }, + { + "id": "88547", + "name": "Wisła", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.65629000", + "longitude": "18.85910000" + }, + { + "id": "88603", + "name": "Wożniki", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.58934000", + "longitude": "19.05991000" + }, + { + "id": "88569", + "name": "Wodzisław Śląski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.00377000", + "longitude": "18.47205000" + }, + { + "id": "88576", + "name": "Wojkowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.36509000", + "longitude": "19.03652000" + }, + { + "id": "88581", + "name": "Wola", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.01745000", + "longitude": "19.12333000" + }, + { + "id": "88609", + "name": "Wręczyca Wielka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.84589000", + "longitude": "18.92086000" + }, + { + "id": "88613", + "name": "Wyry", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.13296000", + "longitude": "18.90052000" + }, + { + "id": "88618", + "name": "Wysoka", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.42989000", + "longitude": "19.35368000" + }, + { + "id": "88662", + "name": "Zabłocie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.90282000", + "longitude": "18.78147000" + }, + { + "id": "88658", + "name": "Zaborze", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87279000", + "longitude": "18.80370000" + }, + { + "id": "88659", + "name": "Zabrze", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.32492000", + "longitude": "18.78576000" + }, + { + "id": "88660", + "name": "Zabrzeg", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.91619000", + "longitude": "18.94292000" + }, + { + "id": "88689", + "name": "Zamarski", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.78254000", + "longitude": "18.66972000" + }, + { + "id": "88697", + "name": "Zarzecze", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.71932000", + "longitude": "19.17526000" + }, + { + "id": "88704", + "name": "Zawidów", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "51.02546000", + "longitude": "15.06213000" + }, + { + "id": "88705", + "name": "Zawiercie", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.48766000", + "longitude": "19.41679000" + }, + { + "id": "88709", + "name": "Zbrosławice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "50.41612000", + "longitude": "18.75443000" + }, + { + "id": "88711", + "name": "Zbytków", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.92288000", + "longitude": "18.72697000" + }, + { + "id": "88721", + "name": "Zebrzydowice", + "state_id": 1623, + "state_code": "SL", + "country_id": 176, + "country_code": "PL", + "latitude": "49.87793000", + "longitude": "18.61127000" + }, + { + "id": "88866", + "name": "Świętajno", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.56692000", + "longitude": "21.21546000" + }, + { + "id": "85799", + "name": "Banie Mazurskie", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.24662000", + "longitude": "22.03617000" + }, + { + "id": "85807", + "name": "Barciany", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.21993000", + "longitude": "21.35347000" + }, + { + "id": "85809", + "name": "Barczewo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.83055000", + "longitude": "20.69112000" + }, + { + "id": "85813", + "name": "Bartoszyce", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.25354000", + "longitude": "20.80819000" + }, + { + "id": "85835", + "name": "Biała Piska", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.61191000", + "longitude": "22.06321000" + }, + { + "id": "85874", + "name": "Biskupiec", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.86467000", + "longitude": "20.95692000" + }, + { + "id": "85877", + "name": "Bisztynek", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.08633000", + "longitude": "20.90192000" + }, + { + "id": "85936", + "name": "Braniewo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.37971000", + "longitude": "19.81959000" + }, + { + "id": "86145", + "name": "Czerwonka", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.91627000", + "longitude": "20.89685000" + }, + { + "id": "86263", + "name": "Dźwierzuty", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.70494000", + "longitude": "20.96037000" + }, + { + "id": "86245", + "name": "Dąbrówno", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.43408000", + "longitude": "20.03529000" + }, + { + "id": "86172", + "name": "Dobre Miasto", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.98668000", + "longitude": "20.39749000" + }, + { + "id": "86214", + "name": "Dywity", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.83759000", + "longitude": "20.47817000" + }, + { + "id": "86216", + "name": "Działdowo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.23958000", + "longitude": "20.17004000" + }, + { + "id": "86265", + "name": "Ełk", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.82824000", + "longitude": "22.36469000" + }, + { + "id": "86264", + "name": "Elbląg", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.15220000", + "longitude": "19.40884000" + }, + { + "id": "86275", + "name": "Frombork", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.35766000", + "longitude": "19.68029000" + }, + { + "id": "86417", + "name": "Górowo Iławeckie", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.28559000", + "longitude": "20.48886000" + }, + { + "id": "86305", + "name": "Giżycko", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.03811000", + "longitude": "21.76441000" + }, + { + "id": "86301", + "name": "Gierłoż", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.08134000", + "longitude": "21.49551000" + }, + { + "id": "86300", + "name": "Gierzwałd", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.54128000", + "longitude": "20.08867000" + }, + { + "id": "86302", + "name": "Gietrzwałd", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.74617000", + "longitude": "20.23742000" + }, + { + "id": "86355", + "name": "Gołdap", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.30631000", + "longitude": "22.30362000" + }, + { + "id": "86382", + "name": "Gronowo Elbląskie", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.08588000", + "longitude": "19.30598000" + }, + { + "id": "86383", + "name": "Gronowo Górne", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.13863000", + "longitude": "19.45988000" + }, + { + "id": "86472", + "name": "Iława", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.59601000", + "longitude": "19.56849000" + }, + { + "id": "86474", + "name": "Iłowo -Osada", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.16808000", + "longitude": "20.29295000" + }, + { + "id": "86546", + "name": "Jedwabno", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.52990000", + "longitude": "20.72657000" + }, + { + "id": "86556", + "name": "Jeziorany", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.97578000", + "longitude": "20.74639000" + }, + { + "id": "86567", + "name": "Jonkowo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.82817000", + "longitude": "20.31054000" + }, + { + "id": "86858", + "name": "Kętrzyn", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.07676000", + "longitude": "21.37527000" + }, + { + "id": "86640", + "name": "Kisielice", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.60855000", + "longitude": "19.26350000" + }, + { + "id": "86706", + "name": "Korsze", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.17002000", + "longitude": "21.13915000" + }, + { + "id": "86707", + "name": "Kortowo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.75731000", + "longitude": "20.45620000" + }, + { + "id": "86728", + "name": "Kowale Oleckie", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.16354000", + "longitude": "22.41666000" + }, + { + "id": "86738", + "name": "Kozłowo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.30652000", + "longitude": "20.29098000" + }, + { + "id": "86791", + "name": "Kruklanki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.08855000", + "longitude": "21.92227000" + }, + { + "id": "86842", + "name": "Kurzętnik", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.39858000", + "longitude": "19.57858000" + }, + { + "id": "86879", + "name": "Lelkowo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.32458000", + "longitude": "20.22480000" + }, + { + "id": "86899", + "name": "Lidzbark", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.26283000", + "longitude": "19.82663000" + }, + { + "id": "86900", + "name": "Lidzbark Warmiński", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.12588000", + "longitude": "20.57954000" + }, + { + "id": "86934", + "name": "Lubawa", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.50428000", + "longitude": "19.74966000" + }, + { + "id": "86954", + "name": "Lubomino", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.06684000", + "longitude": "20.23956000" + }, + { + "id": "87006", + "name": "Małdyty", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.91981000", + "longitude": "19.74398000" + }, + { + "id": "87129", + "name": "Młynary", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.18690000", + "longitude": "19.72149000" + }, + { + "id": "87070", + "name": "Miłakowo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.00923000", + "longitude": "20.07125000" + }, + { + "id": "87072", + "name": "Miłomłyn", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.76449000", + "longitude": "19.83800000" + }, + { + "id": "87042", + "name": "Mikołajki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.80288000", + "longitude": "21.57011000" + }, + { + "id": "87093", + "name": "Morąg", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.91711000", + "longitude": "19.92602000" + }, + { + "id": "87106", + "name": "Mrągowo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.86437000", + "longitude": "21.30507000" + }, + { + "id": "87146", + "name": "Nidzica", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.36052000", + "longitude": "20.42749000" + }, + { + "id": "87186", + "name": "Nowe Miasto Lubawskie", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.42079000", + "longitude": "19.59515000" + }, + { + "id": "87236", + "name": "Olecko", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.03374000", + "longitude": "22.50704000" + }, + { + "id": "87248", + "name": "Olsztyn", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.77657000", + "longitude": "20.46657000" + }, + { + "id": "87249", + "name": "Olsztynek", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.58374000", + "longitude": "20.28471000" + }, + { + "id": "87268", + "name": "Orneta", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.11483000", + "longitude": "20.13328000" + }, + { + "id": "87274", + "name": "Orzysz", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.80967000", + "longitude": "21.94811000" + }, + { + "id": "87307", + "name": "Ostróda", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.69671000", + "longitude": "19.96486000" + }, + { + "id": "87353", + "name": "Pasłęk", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.06160000", + "longitude": "19.65932000" + }, + { + "id": "87351", + "name": "Pasym", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.65069000", + "longitude": "20.79188000" + }, + { + "id": "87374", + "name": "Piecki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.75759000", + "longitude": "21.33914000" + }, + { + "id": "87380", + "name": "Pieniężno", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.23649000", + "longitude": "20.12833000" + }, + { + "id": "87398", + "name": "Pisz", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.62744000", + "longitude": "21.81253000" + }, + { + "id": "87459", + "name": "Powiat bartoszycki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.21253000", + "longitude": "20.74076000" + }, + { + "id": "87472", + "name": "Powiat braniewski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.27782000", + "longitude": "20.00630000" + }, + { + "id": "87494", + "name": "Powiat działdowski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.28883000", + "longitude": "20.04817000" + }, + { + "id": "87499", + "name": "Powiat ełcki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.81673000", + "longitude": "22.40465000" + }, + { + "id": "87498", + "name": "Powiat elbląski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.15928000", + "longitude": "19.63768000" + }, + { + "id": "87502", + "name": "Powiat giżycki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.01808000", + "longitude": "21.82191000" + }, + { + "id": "87511", + "name": "Powiat gołdapski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.26090000", + "longitude": "22.37192000" + }, + { + "id": "87525", + "name": "Powiat iławski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.67477000", + "longitude": "19.53792000" + }, + { + "id": "87561", + "name": "Powiat kętrzyński", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.13651000", + "longitude": "21.31217000" + }, + { + "id": "87569", + "name": "Powiat lidzbarski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.10581000", + "longitude": "20.38045000" + }, + { + "id": "87592", + "name": "Powiat mrągowski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.81063000", + "longitude": "21.39758000" + }, + { + "id": "87599", + "name": "Powiat nidzicki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.37240000", + "longitude": "20.49858000" + }, + { + "id": "87603", + "name": "Powiat nowomiejski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.43572000", + "longitude": "19.54662000" + }, + { + "id": "87610", + "name": "Powiat olecki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.05129000", + "longitude": "22.41695000" + }, + { + "id": "87614", + "name": "Powiat olsztyński", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.72922000", + "longitude": "20.56641000" + }, + { + "id": "87624", + "name": "Powiat ostródzki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.72906000", + "longitude": "19.91440000" + }, + { + "id": "87634", + "name": "Powiat piski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.68076000", + "longitude": "21.85723000" + }, + { + "id": "87693", + "name": "Powiat szczycieński", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.54176000", + "longitude": "21.07034000" + }, + { + "id": "87731", + "name": "Powiat węgorzewski", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.20728000", + "longitude": "21.77861000" + }, + { + "id": "87773", + "name": "Pozezdrze", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.14147000", + "longitude": "21.85970000" + }, + { + "id": "87791", + "name": "Prostki", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.69901000", + "longitude": "22.43183000" + }, + { + "id": "87848", + "name": "Purda", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.70844000", + "longitude": "20.70683000" + }, + { + "id": "87939", + "name": "Reszel", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.05042000", + "longitude": "21.14585000" + }, + { + "id": "87965", + "name": "Rozogi", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.48549000", + "longitude": "21.36223000" + }, + { + "id": "87969", + "name": "Ruciane-Nida", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.64161000", + "longitude": "21.53964000" + }, + { + "id": "87996", + "name": "Rybno", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.38348000", + "longitude": "19.93229000" + }, + { + "id": "88011", + "name": "Ryn", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.93770000", + "longitude": "21.54642000" + }, + { + "id": "88332", + "name": "Sępopol", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.26903000", + "longitude": "21.01453000" + }, + { + "id": "88163", + "name": "Srokowo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.21416000", + "longitude": "21.52282000" + }, + { + "id": "88184", + "name": "Stare Juchy", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.92198000", + "longitude": "22.17367000" + }, + { + "id": "88199", + "name": "Stawiguda", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.65720000", + "longitude": "20.40041000" + }, + { + "id": "88267", + "name": "Susz", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.71743000", + "longitude": "19.33645000" + }, + { + "id": "88276", + "name": "Swiętajno", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.00151000", + "longitude": "22.31830000" + }, + { + "id": "88305", + "name": "Szczytno", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.56259000", + "longitude": "20.98747000" + }, + { + "id": "88377", + "name": "Tolkmicko", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.32038000", + "longitude": "19.52695000" + }, + { + "id": "88641", + "name": "Węgorzewo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "54.21567000", + "longitude": "21.73720000" + }, + { + "id": "88498", + "name": "Wielbark", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.39858000", + "longitude": "20.94629000" + }, + { + "id": "88611", + "name": "Wydminy", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.98194000", + "longitude": "22.03239000" + }, + { + "id": "88688", + "name": "Zalewo", + "state_id": 1628, + "state_code": "WN", + "country_id": 176, + "country_code": "PL", + "latitude": "53.84534000", + "longitude": "19.60519000" + }, + { + "id": "88844", + "name": "Świdwin", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.77464000", + "longitude": "15.77671000" + }, + { + "id": "88858", + "name": "Świerzno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.96497000", + "longitude": "14.96544000" + }, + { + "id": "88862", + "name": "Świnoujście", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.91053000", + "longitude": "14.24712000" + }, + { + "id": "88779", + "name": "Łobez", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.63918000", + "longitude": "15.62129000" + }, + { + "id": "88800", + "name": "Łubowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.58634000", + "longitude": "16.39177000" + }, + { + "id": "85798", + "name": "Banie", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.10031000", + "longitude": "14.66228000" + }, + { + "id": "85811", + "name": "Barlinek", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.99464000", + "longitude": "15.21864000" + }, + { + "id": "85817", + "name": "Barwice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.74490000", + "longitude": "16.35530000" + }, + { + "id": "85844", + "name": "Białogard", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.00696000", + "longitude": "15.98751000" + }, + { + "id": "85848", + "name": "Biały Bór", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.89670000", + "longitude": "16.83543000" + }, + { + "id": "85856", + "name": "Bielice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.20022000", + "longitude": "14.72760000" + }, + { + "id": "85868", + "name": "Bierzwnik", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.03567000", + "longitude": "15.66500000" + }, + { + "id": "85884", + "name": "Bobolice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.95508000", + "longitude": "16.58893000" + }, + { + "id": "85909", + "name": "Boleszkowice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.72493000", + "longitude": "14.56901000" + }, + { + "id": "85922", + "name": "Borne Sulinowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.57661000", + "longitude": "16.53395000" + }, + { + "id": "85950", + "name": "Brojce", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.95705000", + "longitude": "15.35975000" + }, + { + "id": "86019", + "name": "Cedynia", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.87931000", + "longitude": "14.20249000" + }, + { + "id": "86024", + "name": "Cerkwica", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.00777000", + "longitude": "15.10903000" + }, + { + "id": "86040", + "name": "Chociwel", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.46696000", + "longitude": "15.33342000" + }, + { + "id": "86048", + "name": "Chojna", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.96389000", + "longitude": "14.42797000" + }, + { + "id": "86056", + "name": "Choszczno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.16905000", + "longitude": "15.42054000" + }, + { + "id": "86101", + "name": "Czaplinek", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.55775000", + "longitude": "16.23333000" + }, + { + "id": "86151", + "name": "Człopa", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.08856000", + "longitude": "16.12098000" + }, + { + "id": "86158", + "name": "Darłowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.42095000", + "longitude": "16.41070000" + }, + { + "id": "86252", + "name": "Dębno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.73901000", + "longitude": "14.69800000" + }, + { + "id": "86168", + "name": "Dobra", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.58625000", + "longitude": "15.30977000" + }, + { + "id": "86176", + "name": "Dobrzany", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.35914000", + "longitude": "15.42886000" + }, + { + "id": "86181", + "name": "Dolice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.19081000", + "longitude": "15.20267000" + }, + { + "id": "86193", + "name": "Drawno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.21986000", + "longitude": "15.75946000" + }, + { + "id": "86195", + "name": "Drawsko Pomorskie", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.53056000", + "longitude": "15.80967000" + }, + { + "id": "86212", + "name": "Dygowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.13031000", + "longitude": "15.71993000" + }, + { + "id": "86230", + "name": "Dziwnów", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.02819000", + "longitude": "14.76691000" + }, + { + "id": "86361", + "name": "Gościno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.05123000", + "longitude": "15.65256000" + }, + { + "id": "86325", + "name": "Golczewo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.82426000", + "longitude": "14.97847000" + }, + { + "id": "86326", + "name": "Goleniów", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.56392000", + "longitude": "14.82854000" + }, + { + "id": "86390", + "name": "Gryfice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.91650000", + "longitude": "15.20027000" + }, + { + "id": "86391", + "name": "Gryfino", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.25243000", + "longitude": "14.48831000" + }, + { + "id": "86395", + "name": "Grzmiąca", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.83734000", + "longitude": "16.43512000" + }, + { + "id": "86397", + "name": "Grzybowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.15892000", + "longitude": "15.48557000" + }, + { + "id": "86477", + "name": "Ińsko", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.43613000", + "longitude": "15.55020000" + }, + { + "id": "86587", + "name": "Kalisz Pomorski", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.29908000", + "longitude": "15.90631000" + }, + { + "id": "86601", + "name": "Kamień Pomorski", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.96849000", + "longitude": "14.77262000" + }, + { + "id": "86612", + "name": "Karlino", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.03515000", + "longitude": "15.87739000" + }, + { + "id": "86613", + "name": "Karnice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.03001000", + "longitude": "15.05496000" + }, + { + "id": "86742", + "name": "Kołbaskowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.33641000", + "longitude": "14.43835000" + }, + { + "id": "86746", + "name": "Kołobrzeg", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.17565000", + "longitude": "15.58342000" + }, + { + "id": "86665", + "name": "Kobylanka", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.34492000", + "longitude": "14.87143000" + }, + { + "id": "86716", + "name": "Koszalin", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.19438000", + "longitude": "16.17222000" + }, + { + "id": "86826", + "name": "Krzęcin", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.08160000", + "longitude": "15.49008000" + }, + { + "id": "86906", + "name": "Lipiany", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.00336000", + "longitude": "14.96919000" + }, + { + "id": "86993", + "name": "Marianowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.38287000", + "longitude": "15.26645000" + }, + { + "id": "87000", + "name": "Maszewo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.49615000", + "longitude": "15.06166000" + }, + { + "id": "87066", + "name": "Międzyzdroje", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.92921000", + "longitude": "14.45097000" + }, + { + "id": "87037", + "name": "Mielno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.26086000", + "longitude": "16.06210000" + }, + { + "id": "87040", + "name": "Mieszkowice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.78730000", + "longitude": "14.49346000" + }, + { + "id": "87055", + "name": "Mirosławiec", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.34071000", + "longitude": "16.08793000" + }, + { + "id": "87092", + "name": "Moryń", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.85769000", + "longitude": "14.39297000" + }, + { + "id": "87095", + "name": "Mosty", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.54796000", + "longitude": "14.95634000" + }, + { + "id": "87105", + "name": "Mrzeżyno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.14384000", + "longitude": "15.29142000" + }, + { + "id": "87124", + "name": "Myślibórz", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.92382000", + "longitude": "14.86785000" + }, + { + "id": "87192", + "name": "Nowe Warpno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.72256000", + "longitude": "14.28961000" + }, + { + "id": "87194", + "name": "Nowogard", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.67437000", + "longitude": "15.11630000" + }, + { + "id": "87198", + "name": "Nowogródek Pomorski", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.91149000", + "longitude": "15.02947000" + }, + { + "id": "87293", + "name": "Osina", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.60473000", + "longitude": "15.01230000" + }, + { + "id": "87866", + "name": "Płoty", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.80182000", + "longitude": "15.26670000" + }, + { + "id": "87367", + "name": "Pełczyce", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.04354000", + "longitude": "15.30447000" + }, + { + "id": "87777", + "name": "Połczyn-Zdrój", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.76424000", + "longitude": "16.09574000" + }, + { + "id": "87411", + "name": "Pobierowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.06100000", + "longitude": "14.93282000" + }, + { + "id": "87432", + "name": "Polanów", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.11930000", + "longitude": "16.68512000" + }, + { + "id": "87434", + "name": "Police", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.55214000", + "longitude": "14.57182000" + }, + { + "id": "87749", + "name": "Powiat łobeski", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.67294000", + "longitude": "15.47237000" + }, + { + "id": "87761", + "name": "Powiat świdwiński", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.80758000", + "longitude": "15.89859000" + }, + { + "id": "87463", + "name": "Powiat białogardzki", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.97686000", + "longitude": "16.08855000" + }, + { + "id": "87486", + "name": "Powiat choszczeński", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.14277000", + "longitude": "15.62112000" + }, + { + "id": "87493", + "name": "Powiat drawski", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.44743000", + "longitude": "16.02132000" + }, + { + "id": "87505", + "name": "Powiat goleniowski", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.61035000", + "longitude": "14.85421000" + }, + { + "id": "87517", + "name": "Powiat gryfiński", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.02298000", + "longitude": "14.49912000" + }, + { + "id": "87516", + "name": "Powiat gryficki", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.94293000", + "longitude": "15.19082000" + }, + { + "id": "87535", + "name": "Powiat kamieński", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.91096000", + "longitude": "14.74420000" + }, + { + "id": "87547", + "name": "Powiat kołobrzeski", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.05013000", + "longitude": "15.61394000" + }, + { + "id": "87545", + "name": "Powiat koszaliński", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.10970000", + "longitude": "16.30231000" + }, + { + "id": "87595", + "name": "Powiat myśliborski", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.85474000", + "longitude": "14.88454000" + }, + { + "id": "87638", + "name": "Powiat policki", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.53114000", + "longitude": "14.45104000" + }, + { + "id": "87652", + "name": "Powiat pyrzycki", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.12558000", + "longitude": "14.94045000" + }, + { + "id": "87697", + "name": "Powiat sławieński", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.37910000", + "longitude": "16.53986000" + }, + { + "id": "87681", + "name": "Powiat stargardzki", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.31520000", + "longitude": "15.22684000" + }, + { + "id": "87692", + "name": "Powiat szczecinecki", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.73766000", + "longitude": "16.58957000" + }, + { + "id": "87715", + "name": "Powiat wałecki", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.23633000", + "longitude": "16.33851000" + }, + { + "id": "87805", + "name": "Przecław", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.37447000", + "longitude": "14.47251000" + }, + { + "id": "87810", + "name": "Przelewice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.10413000", + "longitude": "15.07625000" + }, + { + "id": "87819", + "name": "Przybiernów", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.75780000", + "longitude": "14.78529000" + }, + { + "id": "87855", + "name": "Pyrzyce", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.14620000", + "longitude": "14.89257000" + }, + { + "id": "87891", + "name": "Radowo Małe", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.66575000", + "longitude": "15.44789000" + }, + { + "id": "88035", + "name": "Rąbino", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.86630000", + "longitude": "15.94485000" + }, + { + "id": "87920", + "name": "Recz", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.25989000", + "longitude": "15.54713000" + }, + { + "id": "87938", + "name": "Resko", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.77307000", + "longitude": "15.40607000" + }, + { + "id": "87940", + "name": "Rewal", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.08120000", + "longitude": "15.01471000" + }, + { + "id": "88010", + "name": "Rymań", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.94391000", + "longitude": "15.52866000" + }, + { + "id": "88339", + "name": "Sławno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.36276000", + "longitude": "16.67888000" + }, + { + "id": "88340", + "name": "Sławoborze", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.88992000", + "longitude": "15.70667000" + }, + { + "id": "88059", + "name": "Sianów", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.22646000", + "longitude": "16.29127000" + }, + { + "id": "88174", + "name": "Stara Dąbrowa", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.42191000", + "longitude": "15.14405000" + }, + { + "id": "88183", + "name": "Stare Czarnowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.27861000", + "longitude": "14.77906000" + }, + { + "id": "88189", + "name": "Stargard", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.33672000", + "longitude": "15.04990000" + }, + { + "id": "88203", + "name": "Stepnica", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.65187000", + "longitude": "14.62555000" + }, + { + "id": "88249", + "name": "Suchań", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.28003000", + "longitude": "15.32541000" + }, + { + "id": "88293", + "name": "Szczecin", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.42894000", + "longitude": "14.55302000" + }, + { + "id": "88294", + "name": "Szczecinek", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.70791000", + "longitude": "16.69937000" + }, + { + "id": "88400", + "name": "Trzcińsko Zdrój", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "52.96487000", + "longitude": "14.60667000" + }, + { + "id": "88401", + "name": "Trzebiatów", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.06147000", + "longitude": "15.26475000" + }, + { + "id": "88420", + "name": "Tuczno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.19374000", + "longitude": "16.15368000" + }, + { + "id": "88435", + "name": "Tychowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.92774000", + "longitude": "16.25771000" + }, + { + "id": "88463", + "name": "Ustronie Morskie", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "54.21517000", + "longitude": "15.75568000" + }, + { + "id": "88488", + "name": "Wałcz", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.27787000", + "longitude": "16.47122000" + }, + { + "id": "88479", + "name": "Warnice", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.25376000", + "longitude": "14.99402000" + }, + { + "id": "88642", + "name": "Węgorzyno", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.54101000", + "longitude": "15.55964000" + }, + { + "id": "88496", + "name": "Widuchowa", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.12693000", + "longitude": "14.39074000" + }, + { + "id": "88525", + "name": "Wierzchowo", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.46013000", + "longitude": "16.09961000" + }, + { + "id": "88596", + "name": "Wolin", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.84214000", + "longitude": "14.61465000" + }, + { + "id": "88742", + "name": "Złocieniec", + "state_id": 1633, + "state_code": "ZP", + "country_id": 176, + "country_code": "PL", + "latitude": "53.53286000", + "longitude": "16.01132000" + }, + { + "id": "88910", + "name": "Aguada de Cima", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.52291000", + "longitude": "-8.42700000" + }, + { + "id": "88913", + "name": "Albergaria-a-Velha", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.68706000", + "longitude": "-8.50399000" + }, + { + "id": "88967", + "name": "Anadia", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.43841000", + "longitude": "-8.43352000" + }, + { + "id": "88976", + "name": "Aradas", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.62084000", + "longitude": "-8.64195000" + }, + { + "id": "88980", + "name": "Arcos", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.44779000", + "longitude": "-8.44171000" + }, + { + "id": "88986", + "name": "Argoncilhe", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "41.02541000", + "longitude": "-8.53885000" + }, + { + "id": "88989", + "name": "Arouca", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.92658000", + "longitude": "-8.27251000" + }, + { + "id": "88993", + "name": "Arrifana", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.91565000", + "longitude": "-8.49657000" + }, + { + "id": "89001", + "name": "Avanca", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.80771000", + "longitude": "-8.57220000" + }, + { + "id": "89003", + "name": "Aveiro", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.64427000", + "longitude": "-8.64554000" + }, + { + "id": "89695", + "name": "Águeda", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.57720000", + "longitude": "-8.44442000" + }, + { + "id": "89698", + "name": "Ílhavo", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.60188000", + "longitude": "-8.67021000" + }, + { + "id": "89025", + "name": "Beduido", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.76427000", + "longitude": "-8.56110000" + }, + { + "id": "89048", + "name": "Branca", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.76653000", + "longitude": "-8.48262000" + }, + { + "id": "89106", + "name": "Castelo de Paiva", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "41.03353000", + "longitude": "-8.29822000" + }, + { + "id": "89129", + "name": "Cortegaça", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.94883000", + "longitude": "-8.62130000" + }, + { + "id": "89137", + "name": "Cucujães", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.87413000", + "longitude": "-8.50687000" + }, + { + "id": "89141", + "name": "Eixo", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.62758000", + "longitude": "-8.56922000" + }, + { + "id": "89147", + "name": "Esgueira", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.64899000", + "longitude": "-8.62943000" + }, + { + "id": "89148", + "name": "Esmoriz", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.95773000", + "longitude": "-8.62753000" + }, + { + "id": "89149", + "name": "Espargo", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.92462000", + "longitude": "-8.57495000" + }, + { + "id": "89150", + "name": "Espinho", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "41.00763000", + "longitude": "-8.64125000" + }, + { + "id": "89153", + "name": "Estarreja", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.75463000", + "longitude": "-8.57917000" + }, + { + "id": "89170", + "name": "Feira", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.92535000", + "longitude": "-8.54277000" + }, + { + "id": "89185", + "name": "Fiães", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.99446000", + "longitude": "-8.52537000" + }, + { + "id": "89203", + "name": "Gafanha da Encarnação", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.61806000", + "longitude": "-8.73303000" + }, + { + "id": "89204", + "name": "Gafanha da Nazaré", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.63621000", + "longitude": "-8.71338000" + }, + { + "id": "89234", + "name": "Lamas", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.98597000", + "longitude": "-8.56923000" + }, + { + "id": "89246", + "name": "Lobão", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.98664000", + "longitude": "-8.48566000" + }, + { + "id": "89254", + "name": "Lourosa", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.98420000", + "longitude": "-8.55142000" + }, + { + "id": "89257", + "name": "Luso", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.38429000", + "longitude": "-8.37845000" + }, + { + "id": "89263", + "name": "Macieira de Cambra", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.85939000", + "longitude": "-8.37338000" + }, + { + "id": "89287", + "name": "Mealhada", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.36273000", + "longitude": "-8.44781000" + }, + { + "id": "89298", + "name": "Milheirós de Poiares", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.92163000", + "longitude": "-8.46788000" + }, + { + "id": "89334", + "name": "Mosteirô", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.89843000", + "longitude": "-8.53196000" + }, + { + "id": "89338", + "name": "Murtosa", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.74301000", + "longitude": "-8.64023000" + }, + { + "id": "89349", + "name": "Nogueira da Regedoura", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "41.00530000", + "longitude": "-8.59195000" + }, + { + "id": "89355", + "name": "Oiã", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.54264000", + "longitude": "-8.53856000" + }, + { + "id": "89364", + "name": "Oliveira de Azeméis", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.85078000", + "longitude": "-8.46945000" + }, + { + "id": "89363", + "name": "Oliveira de Azemeis", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.84101000", + "longitude": "-8.47555000" + }, + { + "id": "89366", + "name": "Oliveira do Bairro", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.50977000", + "longitude": "-8.56374000" + }, + { + "id": "89370", + "name": "Oliveirinha", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.60715000", + "longitude": "-8.59198000" + }, + { + "id": "89374", + "name": "Ovar", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.85862000", + "longitude": "-8.62513000" + }, + { + "id": "89387", + "name": "Paços de Brandão", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.97541000", + "longitude": "-8.58350000" + }, + { + "id": "89379", + "name": "Pampilhosa do Botão", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.33580000", + "longitude": "-8.42738000" + }, + { + "id": "89381", + "name": "Pardilhó", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.79925000", + "longitude": "-8.62598000" + }, + { + "id": "89473", + "name": "Rio Meão", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.95775000", + "longitude": "-8.57818000" + }, + { + "id": "89484", + "name": "Salreu", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.73971000", + "longitude": "-8.55720000" + }, + { + "id": "89492", + "name": "Sanfins", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.92979000", + "longitude": "-8.52563000" + }, + { + "id": "89493", + "name": "Sangalhos", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.48678000", + "longitude": "-8.46968000" + }, + { + "id": "89507", + "name": "Santa Maria da Feira", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.96043000", + "longitude": "-8.51545000" + }, + { + "id": "89564", + "name": "São João", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.86802000", + "longitude": "-8.60672000" + }, + { + "id": "89565", + "name": "São João da Madeira", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.90070000", + "longitude": "-8.49020000" + }, + { + "id": "89570", + "name": "São João de Ver", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.95527000", + "longitude": "-8.55117000" + }, + { + "id": "89587", + "name": "São Roque", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.87216000", + "longitude": "-8.47149000" + }, + { + "id": "89541", + "name": "Sever do Vouga", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.73156000", + "longitude": "-8.35493000" + }, + { + "id": "89542", + "name": "Silvalde", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.99205000", + "longitude": "-8.62567000" + }, + { + "id": "89554", + "name": "Souto", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.98496000", + "longitude": "-8.62185000" + }, + { + "id": "89619", + "name": "Vagos", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.49943000", + "longitude": "-8.67830000" + }, + { + "id": "89625", + "name": "Vale de Cambra", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.84500000", + "longitude": "-8.36022000" + }, + { + "id": "89630", + "name": "Valongo", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.61667000", + "longitude": "-8.45000000" + }, + { + "id": "89688", + "name": "Válega", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.83629000", + "longitude": "-8.58061000" + }, + { + "id": "89645", + "name": "Vila Chã", + "state_id": 2235, + "state_code": "01", + "country_id": 177, + "country_code": "PT", + "latitude": "40.86667000", + "longitude": "-8.46667000" + }, + { + "id": "88969", + "name": "Angústias", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.52547000", + "longitude": "-28.63132000" + }, + { + "id": "88968", + "name": "Angra do Heroísmo", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.65483000", + "longitude": "-27.21734000" + }, + { + "id": "88994", + "name": "Arrifes", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.76667000", + "longitude": "-25.70000000" + }, + { + "id": "89692", + "name": "Água de Pau", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.72142000", + "longitude": "-25.51170000" + }, + { + "id": "89037", + "name": "Biscoitos", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.78333000", + "longitude": "-27.25000000" + }, + { + "id": "89057", + "name": "Cabouco", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.76667000", + "longitude": "-25.56667000" + }, + { + "id": "89062", + "name": "Cais do Pico", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.52531000", + "longitude": "-28.32074000" + }, + { + "id": "89069", + "name": "Calheta", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.60186000", + "longitude": "-28.01792000" + }, + { + "id": "89070", + "name": "Calheta de São Jorge", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.59767000", + "longitude": "-27.91459000" + }, + { + "id": "89105", + "name": "Castelo Branco", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.52198000", + "longitude": "-28.71365000" + }, + { + "id": "89131", + "name": "Corvo", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "39.69771000", + "longitude": "-31.10550000" + }, + { + "id": "89163", + "name": "Fajã de Baixo", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.75000000", + "longitude": "-25.65000000" + }, + { + "id": "89172", + "name": "Fenais da Ajuda", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.85128000", + "longitude": "-25.32406000" + }, + { + "id": "89173", + "name": "Fenais da Luz", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.82490000", + "longitude": "-25.64229000" + }, + { + "id": "89181", + "name": "Feteira", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.65429000", + "longitude": "-27.14995000" + }, + { + "id": "89187", + "name": "Fonte Bastardo", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.69201000", + "longitude": "-27.07942000" + }, + { + "id": "89199", + "name": "Furnas", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.77567000", + "longitude": "-25.31035000" + }, + { + "id": "89223", + "name": "Horta", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.53737000", + "longitude": "-28.62615000" + }, + { + "id": "89228", + "name": "Lagoa", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.74486000", + "longitude": "-25.57184000" + }, + { + "id": "89231", + "name": "Lajes", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.76352000", + "longitude": "-27.10336000" + }, + { + "id": "89232", + "name": "Lajes das Flores", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "39.41619000", + "longitude": "-31.21725000" + }, + { + "id": "89233", + "name": "Lajes do Pico", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.42797000", + "longitude": "-28.17402000" + }, + { + "id": "89267", + "name": "Madalena", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.53642000", + "longitude": "-28.52660000" + }, + { + "id": "89269", + "name": "Maia", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.83247000", + "longitude": "-25.38976000" + }, + { + "id": "89333", + "name": "Mosteiros", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.89017000", + "longitude": "-25.81999000" + }, + { + "id": "89350", + "name": "Nordeste", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.82721000", + "longitude": "-25.22863000" + }, + { + "id": "89412", + "name": "Ponta Delgada", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.74230000", + "longitude": "-25.67093000" + }, + { + "id": "89413", + "name": "Ponta Garça", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.71667000", + "longitude": "-25.36667000" + }, + { + "id": "89427", + "name": "Porto Judeu", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.64814000", + "longitude": "-27.11944000" + }, + { + "id": "89428", + "name": "Porto Martins", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.68146000", + "longitude": "-27.05835000" + }, + { + "id": "89434", + "name": "Povoação", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.76471000", + "longitude": "-25.24487000" + }, + { + "id": "89437", + "name": "Praia da Vitória", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.73333000", + "longitude": "-27.06667000" + }, + { + "id": "89451", + "name": "Rabo de Peixe", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.81022000", + "longitude": "-25.58263000" + }, + { + "id": "89460", + "name": "Relva", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.75271000", + "longitude": "-25.71848000" + }, + { + "id": "89466", + "name": "Ribeira Grande", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.51667000", + "longitude": "-28.70000000" + }, + { + "id": "89467", + "name": "Ribeira Seca", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.81667000", + "longitude": "-25.53333000" + }, + { + "id": "89469", + "name": "Ribeirinha", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.66203000", + "longitude": "-27.18093000" + }, + { + "id": "89479", + "name": "Rosto de Cão", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.75000000", + "longitude": "-25.65000000" + }, + { + "id": "89494", + "name": "Santa Bárbara", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.69608000", + "longitude": "-27.33907000" + }, + { + "id": "89502", + "name": "Santa Cruz da Graciosa", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "39.04946000", + "longitude": "-28.00432000" + }, + { + "id": "89501", + "name": "Santa Cruz das Flores", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "39.46984000", + "longitude": "-31.18514000" + }, + { + "id": "89558", + "name": "São Bartolomeu", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.67491000", + "longitude": "-27.29349000" + }, + { + "id": "89577", + "name": "São Mateus", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.65630000", + "longitude": "-27.26935000" + }, + { + "id": "89586", + "name": "São Roque", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.75418000", + "longitude": "-25.64127000" + }, + { + "id": "89588", + "name": "São Roque do Pico", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.51631000", + "longitude": "-28.30752000" + }, + { + "id": "89589", + "name": "São Sebastião", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.66584000", + "longitude": "-27.08976000" + }, + { + "id": "89592", + "name": "São Vicente", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.81829000", + "longitude": "-25.66583000" + }, + { + "id": "89529", + "name": "Senhora do Rosário", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.83333000", + "longitude": "-25.15000000" + }, + { + "id": "89633", + "name": "Velas", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "38.67995000", + "longitude": "-28.15155000" + }, + { + "id": "89673", + "name": "Vila do Porto", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "36.97454000", + "longitude": "-25.09967000" + }, + { + "id": "89650", + "name": "Vila Franca do Campo", + "state_id": 2233, + "state_code": "20", + "country_id": 177, + "country_code": "PT", + "latitude": "37.71667000", + "longitude": "-25.43333000" + }, + { + "id": "88912", + "name": "Alandroal", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.62924000", + "longitude": "-7.36599000" + }, + { + "id": "88990", + "name": "Arraiolos", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.76774000", + "longitude": "-7.95831000" + }, + { + "id": "89697", + "name": "Évora", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.56667000", + "longitude": "-7.90000000" + }, + { + "id": "89043", + "name": "Borba", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.80553000", + "longitude": "-7.45465000" + }, + { + "id": "89157", + "name": "Estremoz", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.84996000", + "longitude": "-7.60117000" + }, + { + "id": "89324", + "name": "Montemor-o-Novo", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.67103000", + "longitude": "-8.29956000" + }, + { + "id": "89328", + "name": "Mora", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.92174000", + "longitude": "-8.09972000" + }, + { + "id": "89336", + "name": "Mourão", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.29778000", + "longitude": "-7.22230000" + }, + { + "id": "89423", + "name": "Portel", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.29385000", + "longitude": "-7.72762000" + }, + { + "id": "89457", + "name": "Redondo", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.58010000", + "longitude": "-7.59659000" + }, + { + "id": "89459", + "name": "Reguengos de Monsaraz", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.42529000", + "longitude": "-7.53494000" + }, + { + "id": "89635", + "name": "Vendas Novas", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.63975000", + "longitude": "-8.54702000" + }, + { + "id": "89639", + "name": "Viana do Alentejo", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.33645000", + "longitude": "-8.00011000" + }, + { + "id": "89669", + "name": "Vila Viçosa", + "state_id": 2236, + "state_code": "07", + "country_id": 177, + "country_code": "PT", + "latitude": "38.78790000", + "longitude": "-7.41852000" + }, + { + "id": "88925", + "name": "Aldeia Nova de São Bento", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.92603000", + "longitude": "-7.40804000" + }, + { + "id": "88944", + "name": "Aljustrel", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.87759000", + "longitude": "-8.16516000" + }, + { + "id": "88949", + "name": "Almodôvar", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.49590000", + "longitude": "-8.09372000" + }, + { + "id": "88950", + "name": "Almograve", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.65665000", + "longitude": "-8.79214000" + }, + { + "id": "88957", + "name": "Alvito", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "38.24653000", + "longitude": "-8.05038000" + }, + { + "id": "89020", + "name": "Barrancos", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "38.13446000", + "longitude": "-6.97604000" + }, + { + "id": "89027", + "name": "Beja", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "38.01506000", + "longitude": "-7.86323000" + }, + { + "id": "89036", + "name": "Beringel", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "38.05656000", + "longitude": "-7.98427000" + }, + { + "id": "89039", + "name": "Boavista dos Pinheiros", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.58058000", + "longitude": "-8.66441000" + }, + { + "id": "89056", + "name": "Cabeça Gorda", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.92401000", + "longitude": "-7.79290000" + }, + { + "id": "89111", + "name": "Castro Verde", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.69828000", + "longitude": "-8.08581000" + }, + { + "id": "89136", + "name": "Cuba", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "38.21972000", + "longitude": "-7.92114000" + }, + { + "id": "89176", + "name": "Ferreira do Alentejo", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "38.05000000", + "longitude": "-8.03333000" + }, + { + "id": "89340", + "name": "Mértola", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.65918000", + "longitude": "-7.66434000" + }, + { + "id": "89299", + "name": "Minas de São Domingos", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.67322000", + "longitude": "-7.49765000" + }, + { + "id": "89335", + "name": "Moura", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "38.14010000", + "longitude": "-7.44856000" + }, + { + "id": "89346", + "name": "Neves", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "38.02270000", + "longitude": "-7.81344000" + }, + { + "id": "89352", + "name": "Odemira", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.59798000", + "longitude": "-8.63972000" + }, + { + "id": "89372", + "name": "Ourique", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.69156000", + "longitude": "-8.31031000" + }, + { + "id": "89397", + "name": "Penedo Gordo", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.98477000", + "longitude": "-7.91651000" + }, + { + "id": "89485", + "name": "Salvada", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.93771000", + "longitude": "-7.77448000" + }, + { + "id": "89572", + "name": "São Luis", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.71556000", + "longitude": "-8.66472000" + }, + { + "id": "89590", + "name": "São Teotónio", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.51282000", + "longitude": "-8.70708000" + }, + { + "id": "89533", + "name": "Serpa", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.95201000", + "longitude": "-7.47534000" + }, + { + "id": "89642", + "name": "Vidigueira", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "38.18448000", + "longitude": "-7.74469000" + }, + { + "id": "89658", + "name": "Vila Nova de Milfontes", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.72377000", + "longitude": "-8.78278000" + }, + { + "id": "89690", + "name": "Zambujeira do Mar", + "state_id": 2230, + "state_code": "02", + "country_id": 177, + "country_code": "PT", + "latitude": "37.52799000", + "longitude": "-8.78483000" + }, + { + "id": "88909", + "name": "Adaúfe", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.58732000", + "longitude": "-8.39817000" + }, + { + "id": "88962", + "name": "Amares", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.64718000", + "longitude": "-8.35558000" + }, + { + "id": "88974", + "name": "Apúlia", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.48512000", + "longitude": "-8.76413000" + }, + { + "id": "88975", + "name": "Apúlia e Fão", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.51194000", + "longitude": "-8.77288000" + }, + { + "id": "88997", + "name": "Arões", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.45553000", + "longitude": "-8.21419000" + }, + { + "id": "88979", + "name": "Arcos", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.52185000", + "longitude": "-8.42151000" + }, + { + "id": "89004", + "name": "Aveleda", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.52113000", + "longitude": "-8.46682000" + }, + { + "id": "89018", + "name": "Barcelos", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.53174000", + "longitude": "-8.61843000" + }, + { + "id": "89019", + "name": "Barqueiros", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.49111000", + "longitude": "-8.73192000" + }, + { + "id": "89046", + "name": "Braga", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.55032000", + "longitude": "-8.42005000" + }, + { + "id": "89049", + "name": "Brito", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.45821000", + "longitude": "-8.36103000" + }, + { + "id": "89055", + "name": "Cabeceiras de Basto", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.52079000", + "longitude": "-7.97198000" + }, + { + "id": "89064", + "name": "Caldas das Taipas", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.48465000", + "longitude": "-8.34850000" + }, + { + "id": "89065", + "name": "Caldas de Vizela", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.38212000", + "longitude": "-8.30890000" + }, + { + "id": "89066", + "name": "Caldelas", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.67101000", + "longitude": "-8.38148000" + }, + { + "id": "89067", + "name": "Calendário", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.40361000", + "longitude": "-8.52967000" + }, + { + "id": "89081", + "name": "Candoso", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.42768000", + "longitude": "-8.32166000" + }, + { + "id": "89114", + "name": "Celorico de Basto", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.40278000", + "longitude": "-8.03346000" + }, + { + "id": "89120", + "name": "Chavão", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.45235000", + "longitude": "-8.60194000" + }, + { + "id": "89135", + "name": "Cristelo", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.47964000", + "longitude": "-8.69785000" + }, + { + "id": "89151", + "name": "Esporões", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.51006000", + "longitude": "-8.41729000" + }, + { + "id": "89152", + "name": "Esposende", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.53610000", + "longitude": "-8.78201000" + }, + { + "id": "89160", + "name": "Fafe", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.46837000", + "longitude": "-8.15863000" + }, + { + "id": "89166", + "name": "Faria", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.48298000", + "longitude": "-8.67152000" + }, + { + "id": "89179", + "name": "Ferreiros", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.35000000", + "longitude": "-8.55000000" + }, + { + "id": "89191", + "name": "Fradelos", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.36846000", + "longitude": "-8.59887000" + }, + { + "id": "89196", + "name": "Frossos", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.56590000", + "longitude": "-8.45134000" + }, + { + "id": "89205", + "name": "Galegos", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.56268000", + "longitude": "-8.57204000" + }, + { + "id": "89207", + "name": "Gandra", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.52185000", + "longitude": "-8.76185000" + }, + { + "id": "89212", + "name": "Gondizalves", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.54158000", + "longitude": "-8.45570000" + }, + { + "id": "89216", + "name": "Gueral", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.45859000", + "longitude": "-8.62946000" + }, + { + "id": "89219", + "name": "Guimarães", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.44384000", + "longitude": "-8.28918000" + }, + { + "id": "89220", + "name": "Guisande", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.48264000", + "longitude": "-8.44564000" + }, + { + "id": "89225", + "name": "Joane", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.43906000", + "longitude": "-8.40846000" + }, + { + "id": "89227", + "name": "Lago", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.62148000", + "longitude": "-8.41258000" + }, + { + "id": "89248", + "name": "Lordelo", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.37411000", + "longitude": "-8.38016000" + }, + { + "id": "89264", + "name": "Macieira de Rates", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.44092000", + "longitude": "-8.63426000" + }, + { + "id": "89279", + "name": "Marinhas", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.55906000", + "longitude": "-8.78297000" + }, + { + "id": "89280", + "name": "Mariz", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.52823000", + "longitude": "-8.67081000" + }, + { + "id": "89293", + "name": "Merelim", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.58568000", + "longitude": "-8.46555000" + }, + { + "id": "89330", + "name": "Moreira de Conegos", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.38680000", + "longitude": "-8.33940000" + }, + { + "id": "89343", + "name": "Negreiros", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.43552000", + "longitude": "-8.61398000" + }, + { + "id": "89362", + "name": "Oliveira", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.47819000", + "longitude": "-8.46965000" + }, + { + "id": "89442", + "name": "Póvoa de Lanhoso", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.57599000", + "longitude": "-8.27008000" + }, + { + "id": "89402", + "name": "Perelhal", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.53075000", + "longitude": "-8.68982000" + }, + { + "id": "89415", + "name": "Ponte", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.47057000", + "longitude": "-8.32990000" + }, + { + "id": "89435", + "name": "Prado", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.60246000", + "longitude": "-8.46297000" + }, + { + "id": "89453", + "name": "Real", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.55841000", + "longitude": "-8.44330000" + }, + { + "id": "89458", + "name": "Refojos de Basto", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.51318000", + "longitude": "-7.99517000" + }, + { + "id": "89461", + "name": "Rendufe", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.62898000", + "longitude": "-8.40858000" + }, + { + "id": "89464", + "name": "Riba de Ave", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.39648000", + "longitude": "-8.38685000" + }, + { + "id": "89470", + "name": "Ribeirão", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.36081000", + "longitude": "-8.56774000" + }, + { + "id": "89477", + "name": "Ronfe", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.44146000", + "longitude": "-8.38412000" + }, + { + "id": "89490", + "name": "Sande", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.70190000", + "longitude": "-8.39246000" + }, + { + "id": "89524", + "name": "Selho", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.41938000", + "longitude": "-8.34599000" + }, + { + "id": "89525", + "name": "Semelhe", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.55437000", + "longitude": "-8.46281000" + }, + { + "id": "89536", + "name": "Serzedelo", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.40128000", + "longitude": "-8.36888000" + }, + { + "id": "89537", + "name": "Serzedo", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.40502000", + "longitude": "-8.22926000" + }, + { + "id": "89598", + "name": "Tebosa", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.48253000", + "longitude": "-8.48399000" + }, + { + "id": "89601", + "name": "Terras de Bouro", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.73914000", + "longitude": "-8.19109000" + }, + { + "id": "89618", + "name": "Urgeses", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.42720000", + "longitude": "-8.29796000" + }, + { + "id": "89689", + "name": "Várzea", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.51512000", + "longitude": "-8.58400000" + }, + { + "id": "89644", + "name": "Vieira do Minho", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.63557000", + "longitude": "-8.13244000" + }, + { + "id": "89647", + "name": "Vila Cova", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.55107000", + "longitude": "-8.71645000" + }, + { + "id": "89651", + "name": "Vila Frescainha", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.53846000", + "longitude": "-8.63971000" + }, + { + "id": "89656", + "name": "Vila Nova de Famalicão", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.40797000", + "longitude": "-8.51978000" + }, + { + "id": "89665", + "name": "Vila Seca", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.50031000", + "longitude": "-8.68525000" + }, + { + "id": "89668", + "name": "Vila Verde", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.64869000", + "longitude": "-8.43628000" + }, + { + "id": "89679", + "name": "Vilaça", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.51787000", + "longitude": "-8.48357000" + }, + { + "id": "89676", + "name": "Vilar de Figos", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.47555000", + "longitude": "-8.65382000" + }, + { + "id": "89686", + "name": "Vizela", + "state_id": 2244, + "state_code": "03", + "country_id": 177, + "country_code": "PT", + "latitude": "41.37529000", + "longitude": "-8.29310000" + }, + { + "id": "88934", + "name": "Alfândega da Fé", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.34315000", + "longitude": "-6.96112000" + }, + { + "id": "89030", + "name": "Belver", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.24696000", + "longitude": "-7.27594000" + }, + { + "id": "89047", + "name": "Bragança Municipality", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.75608000", + "longitude": "-6.75535000" + }, + { + "id": "89094", + "name": "Carrazeda de Anciães", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.24247000", + "longitude": "-7.30721000" + }, + { + "id": "89095", + "name": "Carrazeda de Ansiães", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.23424000", + "longitude": "-7.31129000" + }, + { + "id": "89194", + "name": "Freixo de Espada à Cinta", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.09033000", + "longitude": "-6.80648000" + }, + { + "id": "89260", + "name": "Macedo de Cavaleiros", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.55132000", + "longitude": "-6.93355000" + }, + { + "id": "89305", + "name": "Miranda do Douro", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.49692000", + "longitude": "-6.27308000" + }, + { + "id": "89306", + "name": "Mirandela", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.50098000", + "longitude": "-7.19185000" + }, + { + "id": "89307", + "name": "Mogadouro", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.34034000", + "longitude": "-6.71187000" + }, + { + "id": "89487", + "name": "Samil", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.77632000", + "longitude": "-6.75698000" + }, + { + "id": "89526", + "name": "Sendim", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.38739000", + "longitude": "-6.42625000" + }, + { + "id": "89606", + "name": "Torre de Moncorvo", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.17454000", + "longitude": "-7.05364000" + }, + { + "id": "89648", + "name": "Vila Flor", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.31429000", + "longitude": "-7.15071000" + }, + { + "id": "89682", + "name": "Vimioso", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.57287000", + "longitude": "-6.52087000" + }, + { + "id": "89683", + "name": "Vinhais", + "state_id": 2229, + "state_code": "04", + "country_id": 177, + "country_code": "PT", + "latitude": "41.83509000", + "longitude": "-7.00501000" + }, + { + "id": "88926", + "name": "Aldeia de Joanes", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "40.13905000", + "longitude": "-7.51694000" + }, + { + "id": "89029", + "name": "Belmonte", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "40.36181000", + "longitude": "-7.35157000" + }, + { + "id": "89104", + "name": "Castelo Branco", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "39.82219000", + "longitude": "-7.49087000" + }, + { + "id": "89133", + "name": "Covilhã", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "40.28106000", + "longitude": "-7.50504000" + }, + { + "id": "89198", + "name": "Fundão", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "40.12412000", + "longitude": "-7.49542000" + }, + { + "id": "89224", + "name": "Idanha-A-Nova", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "39.92957000", + "longitude": "-7.23690000" + }, + { + "id": "89356", + "name": "Oleiros", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "39.94948000", + "longitude": "-7.88592000" + }, + { + "id": "89396", + "name": "Penamacor", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "40.15495000", + "longitude": "-7.17149000" + }, + { + "id": "89440", + "name": "Proença-a-Nova", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "39.75700000", + "longitude": "-7.92595000" + }, + { + "id": "89535", + "name": "Sertã", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "39.80205000", + "longitude": "-8.09589000" + }, + { + "id": "89599", + "name": "Teixoso", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "40.31448000", + "longitude": "-7.45759000" + }, + { + "id": "89670", + "name": "Vila de Rei", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "39.70685000", + "longitude": "-8.12836000" + }, + { + "id": "89666", + "name": "Vila Velha de Ródão", + "state_id": 2241, + "state_code": "05", + "country_id": 177, + "country_code": "PT", + "latitude": "39.68709000", + "longitude": "-7.65987000" + }, + { + "id": "88929", + "name": "Alfarelos", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.15057000", + "longitude": "-8.65326000" + }, + { + "id": "88938", + "name": "Alhadas", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.18607000", + "longitude": "-8.79057000" + }, + { + "id": "88972", + "name": "Ançã", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.27161000", + "longitude": "-8.52090000" + }, + { + "id": "88977", + "name": "Arazede", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.28627000", + "longitude": "-8.64999000" + }, + { + "id": "88984", + "name": "Arganil", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.21826000", + "longitude": "-8.05403000" + }, + { + "id": "88998", + "name": "Assafarge", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.15895000", + "longitude": "-8.43167000" + }, + { + "id": "89050", + "name": "Buarcos", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.16604000", + "longitude": "-8.87680000" + }, + { + "id": "89088", + "name": "Cantanhede", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.36354000", + "longitude": "-8.60549000" + }, + { + "id": "89091", + "name": "Carapinheira", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.20620000", + "longitude": "-8.64810000" + }, + { + "id": "89122", + "name": "Coimbra", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.20564000", + "longitude": "-8.41955000" + }, + { + "id": "89126", + "name": "Condeixa-a-Nova", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.10639000", + "longitude": "-8.49632000" + }, + { + "id": "89182", + "name": "Figueira da Foz", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.15085000", + "longitude": "-8.86179000" + }, + { + "id": "89222", + "name": "Góis", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.12535000", + "longitude": "-8.08340000" + }, + { + "id": "89238", + "name": "Lavos", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.09363000", + "longitude": "-8.82826000" + }, + { + "id": "89249", + "name": "Lorvão", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.25938000", + "longitude": "-8.31683000" + }, + { + "id": "89256", + "name": "Lousã", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.11673000", + "longitude": "-8.24921000" + }, + { + "id": "89303", + "name": "Mira", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.44559000", + "longitude": "-8.73849000" + }, + { + "id": "89304", + "name": "Miranda do Corvo", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.09318000", + "longitude": "-8.33261000" + }, + { + "id": "89325", + "name": "Montemor-o-Velho", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.19385000", + "longitude": "-8.66696000" + }, + { + "id": "89368", + "name": "Oliveira do Hospital", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.35522000", + "longitude": "-7.86481000" + }, + { + "id": "89369", + "name": "Oliveira do Mondego", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.32305000", + "longitude": "-8.22367000" + }, + { + "id": "89378", + "name": "Pampilhosa da Serra", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.04620000", + "longitude": "-7.95182000" + }, + { + "id": "89393", + "name": "Penacova", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.26884000", + "longitude": "-8.28237000" + }, + { + "id": "89399", + "name": "Penela", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.03333000", + "longitude": "-8.38333000" + }, + { + "id": "89410", + "name": "Poiares", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.21026000", + "longitude": "-8.25746000" + }, + { + "id": "89497", + "name": "Santa Clara", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.19985000", + "longitude": "-8.44018000" + }, + { + "id": "89516", + "name": "Santo António dos Olivais", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.21805000", + "longitude": "-8.40523000" + }, + { + "id": "89582", + "name": "São Pedro de Alva", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.30044000", + "longitude": "-8.16623000" + }, + { + "id": "89552", + "name": "Soure", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.05989000", + "longitude": "-8.62605000" + }, + { + "id": "89596", + "name": "Tavarede", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.16692000", + "longitude": "-8.84568000" + }, + { + "id": "89616", + "name": "Tábua", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.36207000", + "longitude": "-8.02936000" + }, + { + "id": "89603", + "name": "Tocha", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.31308000", + "longitude": "-8.75339000" + }, + { + "id": "89611", + "name": "Travanca", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.32357000", + "longitude": "-8.18687000" + }, + { + "id": "89660", + "name": "Vila Nova de Poiares", + "state_id": 2246, + "state_code": "06", + "country_id": 177, + "country_code": "PT", + "latitude": "40.22129000", + "longitude": "-8.24105000" + }, + { + "id": "88914", + "name": "Albufeira", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.08819000", + "longitude": "-8.25030000" + }, + { + "id": "88919", + "name": "Alcantarilha", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.13044000", + "longitude": "-8.34623000" + }, + { + "id": "88923", + "name": "Alcoutim", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.42400000", + "longitude": "-7.65456000" + }, + { + "id": "88935", + "name": "Algoz", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.16301000", + "longitude": "-8.30359000" + }, + { + "id": "88942", + "name": "Aljezur", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.31745000", + "longitude": "-8.80147000" + }, + { + "id": "88946", + "name": "Almancil", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.08686000", + "longitude": "-8.03074000" + }, + { + "id": "88954", + "name": "Altura", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.17560000", + "longitude": "-7.50064000" + }, + { + "id": "88958", + "name": "Alvor", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.12994000", + "longitude": "-8.59174000" + }, + { + "id": "88988", + "name": "Armação de Pêra", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.10256000", + "longitude": "-8.35695000" + }, + { + "id": "89035", + "name": "Bensafrim", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.15583000", + "longitude": "-8.73520000" + }, + { + "id": "89041", + "name": "Boliqueime", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.13718000", + "longitude": "-8.15820000" + }, + { + "id": "89052", + "name": "Cabanas de Tavira", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.13521000", + "longitude": "-7.60048000" + }, + { + "id": "89100", + "name": "Carvoeiro", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.09736000", + "longitude": "-8.46846000" + }, + { + "id": "89110", + "name": "Castro Marim", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.25865000", + "longitude": "-7.50732000" + }, + { + "id": "89125", + "name": "Conceição", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.14789000", + "longitude": "-7.60426000" + }, + { + "id": "89158", + "name": "Estói", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.09503000", + "longitude": "-7.89445000" + }, + { + "id": "89159", + "name": "Estômbar", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.14629000", + "longitude": "-8.48505000" + }, + { + "id": "89167", + "name": "Faro", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.01869000", + "longitude": "-7.92716000" + }, + { + "id": "89174", + "name": "Ferragudo", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.12474000", + "longitude": "-8.51915000" + }, + { + "id": "89178", + "name": "Ferreiras", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.12926000", + "longitude": "-8.23759000" + }, + { + "id": "89200", + "name": "Fuzeta", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.05429000", + "longitude": "-7.74699000" + }, + { + "id": "89217", + "name": "Guia", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.12959000", + "longitude": "-8.29963000" + }, + { + "id": "89229", + "name": "Lagoa", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.10505000", + "longitude": "-8.45974000" + }, + { + "id": "89230", + "name": "Lagos", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.10202000", + "longitude": "-8.67422000" + }, + { + "id": "89237", + "name": "Laranjeiro", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.06799000", + "longitude": "-7.80780000" + }, + { + "id": "89250", + "name": "Loulé", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.14399000", + "longitude": "-8.02345000" + }, + { + "id": "89259", + "name": "Luz", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.09216000", + "longitude": "-7.70433000" + }, + { + "id": "89273", + "name": "Manta Rota", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.16849000", + "longitude": "-7.51804000" + }, + { + "id": "89281", + "name": "Marmelete", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.31014000", + "longitude": "-8.66813000" + }, + { + "id": "89295", + "name": "Mexilhoeira Grande", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.15858000", + "longitude": "-8.61487000" + }, + { + "id": "89311", + "name": "Moncarapacho", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.08360000", + "longitude": "-7.78763000" + }, + { + "id": "89312", + "name": "Monchique", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.31664000", + "longitude": "-8.58340000" + }, + { + "id": "89321", + "name": "Monte Gordo", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.18192000", + "longitude": "-7.45225000" + }, + { + "id": "89358", + "name": "Olhão", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.04509000", + "longitude": "-7.81032000" + }, + { + "id": "89357", + "name": "Olhos de Água", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.09024000", + "longitude": "-8.19168000" + }, + { + "id": "89375", + "name": "Paderne", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.17935000", + "longitude": "-8.20150000" + }, + { + "id": "89380", + "name": "Parchal", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.13827000", + "longitude": "-8.51703000" + }, + { + "id": "89441", + "name": "Pêra", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.12296000", + "longitude": "-8.34115000" + }, + { + "id": "89421", + "name": "Porches", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.12665000", + "longitude": "-8.40162000" + }, + { + "id": "89424", + "name": "Portimão", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.17544000", + "longitude": "-8.58420000" + }, + { + "id": "89446", + "name": "Quarteira", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.06946000", + "longitude": "-8.10064000" + }, + { + "id": "89482", + "name": "Sagres", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.00864000", + "longitude": "-8.94311000" + }, + { + "id": "89495", + "name": "Santa Bárbara de Nexe", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.10619000", + "longitude": "-7.96648000" + }, + { + "id": "89505", + "name": "Santa Luzia", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.10224000", + "longitude": "-7.66202000" + }, + { + "id": "89559", + "name": "São Bartolomeu de Messines", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.25648000", + "longitude": "-8.28672000" + }, + { + "id": "89560", + "name": "São Brás de Alportel", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.19564000", + "longitude": "-7.87546000" + }, + { + "id": "89574", + "name": "São Marcos da Serra", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.36100000", + "longitude": "-8.37764000" + }, + { + "id": "89528", + "name": "Senhora da Luz", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.08771000", + "longitude": "-8.72649000" + }, + { + "id": "89544", + "name": "Silves", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.20343000", + "longitude": "-8.33472000" + }, + { + "id": "89597", + "name": "Tavira", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.12734000", + "longitude": "-7.64861000" + }, + { + "id": "89614", + "name": "Tunes", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.16592000", + "longitude": "-8.25919000" + }, + { + "id": "89671", + "name": "Vila do Bispo", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.08317000", + "longitude": "-8.91144000" + }, + { + "id": "89653", + "name": "Vila Nova De Cacela", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.17391000", + "longitude": "-7.53169000" + }, + { + "id": "89664", + "name": "Vila Real de Santo António", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.19232000", + "longitude": "-7.42538000" + }, + { + "id": "89674", + "name": "Vilamoura", + "state_id": 2239, + "state_code": "08", + "country_id": 177, + "country_code": "PT", + "latitude": "37.08728000", + "longitude": "-8.11701000" + }, + { + "id": "88905", + "name": "A dos Francos", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.32272000", + "longitude": "-9.04743000" + }, + { + "id": "88920", + "name": "Alcobaça", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.55223000", + "longitude": "-8.97749000" + }, + { + "id": "88930", + "name": "Alfeizerão", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.49971000", + "longitude": "-9.10341000" + }, + { + "id": "88943", + "name": "Aljubarrota", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.56715000", + "longitude": "-8.92925000" + }, + { + "id": "88955", + "name": "Alvaiázere", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.81951000", + "longitude": "-8.38858000" + }, + { + "id": "88959", + "name": "Alvorninha", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.38224000", + "longitude": "-9.03674000" + }, + { + "id": "88964", + "name": "Amor", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.80404000", + "longitude": "-8.85984000" + }, + { + "id": "88970", + "name": "Ansião", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.93424000", + "longitude": "-8.42045000" + }, + { + "id": "89000", + "name": "Atouguia da Baleia", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.33814000", + "longitude": "-9.32630000" + }, + { + "id": "89699", + "name": "Óbidos", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.35854000", + "longitude": "-9.17603000" + }, + { + "id": "89023", + "name": "Batalha", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.66025000", + "longitude": "-8.82475000" + }, + { + "id": "89033", + "name": "Benedita", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.42470000", + "longitude": "-8.96996000" + }, + { + "id": "89042", + "name": "Bombarral", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.26723000", + "longitude": "-9.15795000" + }, + { + "id": "89063", + "name": "Caldas da Rainha", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.40326000", + "longitude": "-9.13839000" + }, + { + "id": "89090", + "name": "Caranguejeira", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.74619000", + "longitude": "-8.70740000" + }, + { + "id": "89102", + "name": "Castanheira de Pêra", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "40.00717000", + "longitude": "-8.21048000" + }, + { + "id": "89113", + "name": "Cela", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.54075000", + "longitude": "-9.03449000" + }, + { + "id": "89164", + "name": "Famalicão", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.53642000", + "longitude": "-9.08308000" + }, + { + "id": "89180", + "name": "Ferrel", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.36398000", + "longitude": "-9.31541000" + }, + { + "id": "89184", + "name": "Figueiró Dos Vinhos", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.90617000", + "longitude": "-8.27753000" + }, + { + "id": "89188", + "name": "Foz do Arelho", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.43672000", + "longitude": "-9.21374000" + }, + { + "id": "89241", + "name": "Leiria", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.74362000", + "longitude": "-8.80705000" + }, + { + "id": "89253", + "name": "Louriçal", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "40.00390000", + "longitude": "-8.73736000" + }, + { + "id": "89261", + "name": "Maceira", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.68853000", + "longitude": "-8.89423000" + }, + { + "id": "89277", + "name": "Marinha Grande", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.77681000", + "longitude": "-8.95005000" + }, + { + "id": "89302", + "name": "Mira", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.54315000", + "longitude": "-8.71505000" + }, + { + "id": "89322", + "name": "Monte Real", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.85210000", + "longitude": "-8.86349000" + }, + { + "id": "89323", + "name": "Monte Redondo", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.89930000", + "longitude": "-8.83171000" + }, + { + "id": "89341", + "name": "Nadadouro", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.41927000", + "longitude": "-9.19091000" + }, + { + "id": "89342", + "name": "Nazaré", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.59965000", + "longitude": "-9.07162000" + }, + { + "id": "89385", + "name": "Pataias", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.66978000", + "longitude": "-8.99580000" + }, + { + "id": "89391", + "name": "Pedrógão Grande", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.92682000", + "longitude": "-8.20093000" + }, + { + "id": "89400", + "name": "Peniche", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.35580000", + "longitude": "-9.38112000" + }, + { + "id": "89411", + "name": "Pombal", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.90735000", + "longitude": "-8.66949000" + }, + { + "id": "89433", + "name": "Porto de Mós", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.60191000", + "longitude": "-8.81839000" + }, + { + "id": "89483", + "name": "Salir de Matos", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.43186000", + "longitude": "-9.09479000" + }, + { + "id": "89496", + "name": "Santa Catarina da Serra", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.67960000", + "longitude": "-8.68679000" + }, + { + "id": "89576", + "name": "São Martinho do Porto", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.51444000", + "longitude": "-9.13111000" + }, + { + "id": "89534", + "name": "Serra de El-Rei", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.33291000", + "longitude": "-9.26843000" + }, + { + "id": "89555", + "name": "Souto da Carpalhosa", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.84867000", + "longitude": "-8.83506000" + }, + { + "id": "89615", + "name": "Turquel", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.46411000", + "longitude": "-8.97743000" + }, + { + "id": "89622", + "name": "Valado de Frades", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.58432000", + "longitude": "-9.02290000" + }, + { + "id": "89637", + "name": "Vestiaria", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.55271000", + "longitude": "-8.99790000" + }, + { + "id": "89641", + "name": "Vidais", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.36886000", + "longitude": "-9.04916000" + }, + { + "id": "89643", + "name": "Vieira de Leiria", + "state_id": 2240, + "state_code": "10", + "country_id": 177, + "country_code": "PT", + "latitude": "39.86945000", + "longitude": "-8.93238000" + }, + { + "id": "88904", + "name": "A dos Cunhados", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.15237000", + "longitude": "-9.29720000" + }, + { + "id": "88908", + "name": "Abrigada", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.14416000", + "longitude": "-9.01853000" + }, + { + "id": "88915", + "name": "Alcabideche", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.73366000", + "longitude": "-9.40928000" + }, + { + "id": "88922", + "name": "Alcoentre", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.20857000", + "longitude": "-8.95953000" + }, + { + "id": "88928", + "name": "Alenquer", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.05315000", + "longitude": "-9.00928000" + }, + { + "id": "88933", + "name": "Alfragide", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.73203000", + "longitude": "-9.21920000" + }, + { + "id": "88937", + "name": "Algés", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.70245000", + "longitude": "-9.22936000" + }, + { + "id": "88936", + "name": "Algueirão", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.79764000", + "longitude": "-9.34370000" + }, + { + "id": "88939", + "name": "Alhandra", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.92732000", + "longitude": "-9.00864000" + }, + { + "id": "88947", + "name": "Almargem", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.84485000", + "longitude": "-9.27315000" + }, + { + "id": "88956", + "name": "Alvalade", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.75328000", + "longitude": "-9.14397000" + }, + { + "id": "88960", + "name": "Amadora", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.75382000", + "longitude": "-9.23083000" + }, + { + "id": "88973", + "name": "Apelação", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.81387000", + "longitude": "-9.13225000" + }, + { + "id": "88991", + "name": "Arranhó", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.95378000", + "longitude": "-9.13465000" + }, + { + "id": "88996", + "name": "Arruda dos Vinhos", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.97172000", + "longitude": "-9.08807000" + }, + { + "id": "89002", + "name": "Aveiras de Cima", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.13796000", + "longitude": "-8.89932000" + }, + { + "id": "89009", + "name": "Azambuja", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.07029000", + "longitude": "-8.86822000" + }, + { + "id": "89017", + "name": "Barcarena", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.73245000", + "longitude": "-9.28000000" + }, + { + "id": "89024", + "name": "Beato António", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.73327000", + "longitude": "-9.10335000" + }, + { + "id": "89028", + "name": "Belas", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.77670000", + "longitude": "-9.26353000" + }, + { + "id": "89034", + "name": "Benfica", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.75087000", + "longitude": "-9.20282000" + }, + { + "id": "89040", + "name": "Bobadela", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.80774000", + "longitude": "-9.09925000" + }, + { + "id": "89051", + "name": "Bucelas", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.90193000", + "longitude": "-9.11885000" + }, + { + "id": "89053", + "name": "Cabanas de Torres", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.15581000", + "longitude": "-9.06588000" + }, + { + "id": "89059", + "name": "Cacém", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.76698000", + "longitude": "-9.29793000" + }, + { + "id": "89060", + "name": "Cadafais", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.00461000", + "longitude": "-9.00419000" + }, + { + "id": "89061", + "name": "Cadaval", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.24621000", + "longitude": "-9.06738000" + }, + { + "id": "89072", + "name": "Camarate", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.80358000", + "longitude": "-9.12809000" + }, + { + "id": "89075", + "name": "Campelos", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.19678000", + "longitude": "-9.23519000" + }, + { + "id": "89083", + "name": "Caneças", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.81321000", + "longitude": "-9.22679000" + }, + { + "id": "89092", + "name": "Carcavelos", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.69105000", + "longitude": "-9.32215000" + }, + { + "id": "89093", + "name": "Carnaxide", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.72706000", + "longitude": "-9.24671000" + }, + { + "id": "89096", + "name": "Carregado", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.02362000", + "longitude": "-8.97692000" + }, + { + "id": "89101", + "name": "Cascais", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.69681000", + "longitude": "-9.42147000" + }, + { + "id": "89103", + "name": "Castanheira do Ribatejo", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.99298000", + "longitude": "-8.97346000" + }, + { + "id": "89112", + "name": "Caxias", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.70314000", + "longitude": "-9.27666000" + }, + { + "id": "89117", + "name": "Charneca", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.78351000", + "longitude": "-9.14348000" + }, + { + "id": "89123", + "name": "Colares", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.79921000", + "longitude": "-9.44691000" + }, + { + "id": "89144", + "name": "Ericeira", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.96275000", + "longitude": "-9.41563000" + }, + { + "id": "89155", + "name": "Estoril", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.70571000", + "longitude": "-9.39773000" + }, + { + "id": "89165", + "name": "Famões", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.78804000", + "longitude": "-9.21033000" + }, + { + "id": "89186", + "name": "Fontanelas", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.84806000", + "longitude": "-9.43942000" + }, + { + "id": "89244", + "name": "Linda-a-Velha", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.71446000", + "longitude": "-9.24220000" + }, + { + "id": "89245", + "name": "Lisbon", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.72635000", + "longitude": "-9.14843000" + }, + { + "id": "89251", + "name": "Loures", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.83091000", + "longitude": "-9.16845000" + }, + { + "id": "89252", + "name": "Lourinhã", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.24745000", + "longitude": "-9.31194000" + }, + { + "id": "89268", + "name": "Mafra", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.94107000", + "longitude": "-9.32636000" + }, + { + "id": "89271", + "name": "Malveira", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.93213000", + "longitude": "-9.25779000" + }, + { + "id": "89283", + "name": "Massamá", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.75279000", + "longitude": "-9.28110000" + }, + { + "id": "89288", + "name": "Meca", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.08178000", + "longitude": "-9.03459000" + }, + { + "id": "89292", + "name": "Mem Martins", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.79443000", + "longitude": "-9.34284000" + }, + { + "id": "89296", + "name": "Milharado", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.94732000", + "longitude": "-9.19914000" + }, + { + "id": "89310", + "name": "Moita dos Ferreiros", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.24825000", + "longitude": "-9.22355000" + }, + { + "id": "89320", + "name": "Monte Estoril", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.70636000", + "longitude": "-9.40595000" + }, + { + "id": "89332", + "name": "Moscavide e Portela", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.77929000", + "longitude": "-9.10222000" + }, + { + "id": "89353", + "name": "Odivelas", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.79269000", + "longitude": "-9.18380000" + }, + { + "id": "89354", + "name": "Oeiras", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.71371000", + "longitude": "-9.26832000" + }, + { + "id": "89359", + "name": "Olivais", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.76994000", + "longitude": "-9.10674000" + }, + { + "id": "89361", + "name": "Olival do Basto", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.79079000", + "longitude": "-9.16621000" + }, + { + "id": "89371", + "name": "Ota", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.11199000", + "longitude": "-8.99105000" + }, + { + "id": "89386", + "name": "Paço de Arcos", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.69569000", + "longitude": "-9.29143000" + }, + { + "id": "89382", + "name": "Parede", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.69282000", + "longitude": "-9.35412000" + }, + { + "id": "89443", + "name": "Póvoa de Santa Iria", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.86101000", + "longitude": "-9.06453000" + }, + { + "id": "89444", + "name": "Póvoa de Santo Adrião", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.80000000", + "longitude": "-9.16667000" + }, + { + "id": "89403", + "name": "Pero Pinheiro", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.85783000", + "longitude": "-9.32352000" + }, + { + "id": "89419", + "name": "Pontinha", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.76771000", + "longitude": "-9.19935000" + }, + { + "id": "89430", + "name": "Porto Salvo", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.72293000", + "longitude": "-9.30473000" + }, + { + "id": "89439", + "name": "Prior Velho", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.79174000", + "longitude": "-9.12119000" + }, + { + "id": "89447", + "name": "Queijas", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.71925000", + "longitude": "-9.26255000" + }, + { + "id": "89448", + "name": "Queluz", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.75657000", + "longitude": "-9.25451000" + }, + { + "id": "89452", + "name": "Ramada", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.80368000", + "longitude": "-9.18770000" + }, + { + "id": "89476", + "name": "Rio de Mouro", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.76613000", + "longitude": "-9.32804000" + }, + { + "id": "89481", + "name": "Sacavém", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.79202000", + "longitude": "-9.10801000" + }, + { + "id": "89504", + "name": "Santa Iria da Azóia", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.84110000", + "longitude": "-9.09908000" + }, + { + "id": "89514", + "name": "Santo Antão do Tojal", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.85151000", + "longitude": "-9.13975000" + }, + { + "id": "89517", + "name": "Santo Isidoro", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.99593000", + "longitude": "-9.39940000" + }, + { + "id": "89520", + "name": "Santos-o-Velho", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.70690000", + "longitude": "-9.15611000" + }, + { + "id": "89557", + "name": "São Bartolomeu", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.27511000", + "longitude": "-9.27885000" + }, + { + "id": "89561", + "name": "São Domingos de Rana", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.70194000", + "longitude": "-9.34083000" + }, + { + "id": "89567", + "name": "São João da Talha", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.82378000", + "longitude": "-9.09719000" + }, + { + "id": "89568", + "name": "São João das Lampas", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.87376000", + "longitude": "-9.39842000" + }, + { + "id": "89571", + "name": "São João dos Montes", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.93944000", + "longitude": "-9.01892000" + }, + { + "id": "89580", + "name": "São Pedro da Cadeira", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.06983000", + "longitude": "-9.37174000" + }, + { + "id": "89543", + "name": "Silveira", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.11120000", + "longitude": "-9.36430000" + }, + { + "id": "89546", + "name": "Sintra", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.81439000", + "longitude": "-9.38370000" + }, + { + "id": "89548", + "name": "Sobral de Monte Agraço", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.01958000", + "longitude": "-9.15081000" + }, + { + "id": "89549", + "name": "Sobralinho", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.91703000", + "longitude": "-9.02656000" + }, + { + "id": "89602", + "name": "Terrugem", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.70647000", + "longitude": "-9.28693000" + }, + { + "id": "89608", + "name": "Torres Vedras", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.09109000", + "longitude": "-9.25860000" + }, + { + "id": "89617", + "name": "Unhos", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.81958000", + "longitude": "-9.12007000" + }, + { + "id": "89634", + "name": "Venda do Pinheiro", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.92365000", + "longitude": "-9.23178000" + }, + { + "id": "89636", + "name": "Ventosa", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.12696000", + "longitude": "-9.08423000" + }, + { + "id": "89638", + "name": "Vialonga", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.87206000", + "longitude": "-9.07805000" + }, + { + "id": "89649", + "name": "Vila Franca de Xira", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "38.92137000", + "longitude": "-9.03220000" + }, + { + "id": "89667", + "name": "Vila Verde", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.15489000", + "longitude": "-9.11512000" + }, + { + "id": "89681", + "name": "Vimeiro", + "state_id": 2228, + "state_code": "11", + "country_id": 177, + "country_code": "PT", + "latitude": "39.17768000", + "longitude": "-9.31702000" + }, + { + "id": "88978", + "name": "Arco da Calheta", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.71502000", + "longitude": "-17.14974000" + }, + { + "id": "89693", + "name": "Água de Pena", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.70143000", + "longitude": "-16.77874000" + }, + { + "id": "89038", + "name": "Boaventura", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.81846000", + "longitude": "-16.97268000" + }, + { + "id": "89068", + "name": "Calheta", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.71667000", + "longitude": "-17.18333000" + }, + { + "id": "89071", + "name": "Camacha", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.67919000", + "longitude": "-16.84462000" + }, + { + "id": "89074", + "name": "Campanário", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.66578000", + "longitude": "-17.03576000" + }, + { + "id": "89084", + "name": "Canhas", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.69465000", + "longitude": "-17.09867000" + }, + { + "id": "89086", + "name": "Caniçal", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.73834000", + "longitude": "-16.73836000" + }, + { + "id": "89087", + "name": "Caniço", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.65078000", + "longitude": "-16.83749000" + }, + { + "id": "89139", + "name": "Câmara de Lobos", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.65043000", + "longitude": "-16.97718000" + }, + { + "id": "89138", + "name": "Curral das Freiras", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.72029000", + "longitude": "-16.96993000" + }, + { + "id": "89156", + "name": "Estreito da Calheta", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.73704000", + "longitude": "-17.18674000" + }, + { + "id": "89161", + "name": "Faial", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.78333000", + "longitude": "-16.85000000" + }, + { + "id": "89162", + "name": "Fajã da Ovelha", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.77457000", + "longitude": "-17.23412000" + }, + { + "id": "89197", + "name": "Funchal", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.66568000", + "longitude": "-16.92547000" + }, + { + "id": "89262", + "name": "Machico", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.71620000", + "longitude": "-16.76758000" + }, + { + "id": "89351", + "name": "Nossa Senhora do Monte", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.66667000", + "longitude": "-16.90000000" + }, + { + "id": "89414", + "name": "Ponta do Sol", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.67980000", + "longitude": "-17.10000000" + }, + { + "id": "89432", + "name": "Porto da Cruz", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.76667000", + "longitude": "-16.83333000" + }, + { + "id": "89429", + "name": "Porto Moniz", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.86681000", + "longitude": "-17.16667000" + }, + { + "id": "89431", + "name": "Porto Santo", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "33.07145000", + "longitude": "-16.34304000" + }, + { + "id": "89465", + "name": "Ribeira Brava", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.67483000", + "longitude": "-17.06288000" + }, + { + "id": "89499", + "name": "Santa Cruz", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.68806000", + "longitude": "-16.79388000" + }, + { + "id": "89509", + "name": "Santana", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.80000000", + "longitude": "-16.88333000" + }, + { + "id": "89563", + "name": "São Jorge", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.81667000", + "longitude": "-16.90000000" + }, + { + "id": "89575", + "name": "São Martinho", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.64480000", + "longitude": "-16.93843000" + }, + { + "id": "89585", + "name": "São Roque", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.66667000", + "longitude": "-16.91667000" + }, + { + "id": "89591", + "name": "São Vicente", + "state_id": 2231, + "state_code": "30", + "country_id": 177, + "country_code": "PT", + "latitude": "32.79673000", + "longitude": "-17.04323000" + }, + { + "id": "88953", + "name": "Alter do Chão", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.23098000", + "longitude": "-7.74430000" + }, + { + "id": "88995", + "name": "Arronches", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.12242000", + "longitude": "-7.28619000" + }, + { + "id": "88999", + "name": "Atalaia", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.45551000", + "longitude": "-7.87295000" + }, + { + "id": "89008", + "name": "Avis", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.06448000", + "longitude": "-7.89560000" + }, + { + "id": "89078", + "name": "Campo Maior", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.02935000", + "longitude": "-7.06479000" + }, + { + "id": "89107", + "name": "Castelo de Vide", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.41624000", + "longitude": "-7.45680000" + }, + { + "id": "89134", + "name": "Crato", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.28657000", + "longitude": "-7.64408000" + }, + { + "id": "89142", + "name": "Elvas", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "38.88150000", + "longitude": "-7.16282000" + }, + { + "id": "89195", + "name": "Fronteira", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.07179000", + "longitude": "-7.61052000" + }, + { + "id": "89208", + "name": "Gavião", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.44462000", + "longitude": "-7.89532000" + }, + { + "id": "89282", + "name": "Marvão", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.39377000", + "longitude": "-7.37663000" + }, + { + "id": "89314", + "name": "Monforte", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.04960000", + "longitude": "-7.44428000" + }, + { + "id": "89319", + "name": "Montargil", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.07771000", + "longitude": "-8.17044000" + }, + { + "id": "89347", + "name": "Nisa", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.51828000", + "longitude": "-7.67496000" + }, + { + "id": "89418", + "name": "Ponte de Sor", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.21441000", + "longitude": "-8.05420000" + }, + { + "id": "89422", + "name": "Portalegre", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.29740000", + "longitude": "-7.41538000" + }, + { + "id": "89513", + "name": "Santo André", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.05532000", + "longitude": "-8.24414000" + }, + { + "id": "89553", + "name": "Sousel", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "38.96685000", + "longitude": "-7.71788000" + }, + { + "id": "89624", + "name": "Vale da Amoreira", + "state_id": 2232, + "state_code": "12", + "country_id": 177, + "country_code": "PT", + "latitude": "39.06969000", + "longitude": "-7.69849000" + }, + { + "id": "88911", + "name": "Aguçadoura", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.43116000", + "longitude": "-8.77844000" + }, + { + "id": "88931", + "name": "Alfena", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.23671000", + "longitude": "-8.52454000" + }, + { + "id": "88951", + "name": "Alpendurada", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.08944000", + "longitude": "-8.24643000" + }, + { + "id": "88961", + "name": "Amarante", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.27271000", + "longitude": "-8.08245000" + }, + { + "id": "88966", + "name": "Amorim", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.40503000", + "longitude": "-8.75046000" + }, + { + "id": "88971", + "name": "Anta", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.26634000", + "longitude": "-8.62844000" + }, + { + "id": "88982", + "name": "Arcozelo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.06187000", + "longitude": "-8.63192000" + }, + { + "id": "88985", + "name": "Argivai", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.37744000", + "longitude": "-8.72987000" + }, + { + "id": "89005", + "name": "Aver-o-Mar", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.40607000", + "longitude": "-8.77958000" + }, + { + "id": "89006", + "name": "Aves", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.37034000", + "longitude": "-8.41010000" + }, + { + "id": "89007", + "name": "Avintes", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.10711000", + "longitude": "-8.55131000" + }, + { + "id": "89011", + "name": "Azenha", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.07651000", + "longitude": "-8.62468000" + }, + { + "id": "89691", + "name": "Água Longa", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.24972000", + "longitude": "-8.49285000" + }, + { + "id": "89694", + "name": "Águas Santas", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.21017000", + "longitude": "-8.57599000" + }, + { + "id": "89696", + "name": "Árvore", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.33922000", + "longitude": "-8.71806000" + }, + { + "id": "89013", + "name": "Baguim do Monte", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.19203000", + "longitude": "-8.54118000" + }, + { + "id": "89014", + "name": "Baião", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.16384000", + "longitude": "-8.03581000" + }, + { + "id": "89015", + "name": "Balazar", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.40435000", + "longitude": "-8.62386000" + }, + { + "id": "89016", + "name": "Baltar", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.19272000", + "longitude": "-8.38768000" + }, + { + "id": "89022", + "name": "Barrosas", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.35534000", + "longitude": "-8.29943000" + }, + { + "id": "89026", + "name": "Beiriz de Baixo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.39727000", + "longitude": "-8.72385000" + }, + { + "id": "89045", + "name": "Bougado", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.33979000", + "longitude": "-8.55180000" + }, + { + "id": "89077", + "name": "Campo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.18516000", + "longitude": "-8.46493000" + }, + { + "id": "89082", + "name": "Canelas", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.08333000", + "longitude": "-8.60000000" + }, + { + "id": "89085", + "name": "Canidelo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.12314000", + "longitude": "-8.64654000" + }, + { + "id": "89099", + "name": "Carvalhosa", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.30057000", + "longitude": "-8.36080000" + }, + { + "id": "89108", + "name": "Castelões de Cepeda", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.20265000", + "longitude": "-8.33516000" + }, + { + "id": "89145", + "name": "Ermesinde", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.21653000", + "longitude": "-8.55318000" + }, + { + "id": "89154", + "name": "Estela", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.44944000", + "longitude": "-8.75166000" + }, + { + "id": "89202", + "name": "Fânzeres", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.16754000", + "longitude": "-8.52981000" + }, + { + "id": "89171", + "name": "Felgueiras", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.34774000", + "longitude": "-8.20808000" + }, + { + "id": "89175", + "name": "Ferreira", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.26718000", + "longitude": "-8.34434000" + }, + { + "id": "89183", + "name": "Figueiró", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.29922000", + "longitude": "-8.16779000" + }, + { + "id": "89189", + "name": "Foz do Douro", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.15119000", + "longitude": "-8.67125000" + }, + { + "id": "89190", + "name": "Foz do Sousa", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.09668000", + "longitude": "-8.50184000" + }, + { + "id": "89192", + "name": "Frazão", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.25866000", + "longitude": "-8.40014000" + }, + { + "id": "89193", + "name": "Freamunde", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.28835000", + "longitude": "-8.33533000" + }, + { + "id": "89206", + "name": "Gandra", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.20116000", + "longitude": "-8.43376000" + }, + { + "id": "89209", + "name": "Gemunde", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.26766000", + "longitude": "-8.64515000" + }, + { + "id": "89213", + "name": "Gondomar", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.12015000", + "longitude": "-8.49595000" + }, + { + "id": "89214", + "name": "Grijó", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.02836000", + "longitude": "-8.58017000" + }, + { + "id": "89218", + "name": "Guifões", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.19748000", + "longitude": "-8.66899000" + }, + { + "id": "89221", + "name": "Gulpilhares", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.08292000", + "longitude": "-8.62679000" + }, + { + "id": "89226", + "name": "Jovim", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.11102000", + "longitude": "-8.51903000" + }, + { + "id": "89239", + "name": "Lavra", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.25935000", + "longitude": "-8.71849000" + }, + { + "id": "89242", + "name": "Leça da Palmeira", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.19100000", + "longitude": "-8.70027000" + }, + { + "id": "89243", + "name": "Leça do Bailio", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.21201000", + "longitude": "-8.63422000" + }, + { + "id": "89247", + "name": "Lordelo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.23451000", + "longitude": "-8.40297000" + }, + { + "id": "89255", + "name": "Lousada", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.28355000", + "longitude": "-8.27437000" + }, + { + "id": "89258", + "name": "Lustosa", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.34081000", + "longitude": "-8.31715000" + }, + { + "id": "89266", + "name": "Madalena", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.21616000", + "longitude": "-8.33451000" + }, + { + "id": "89270", + "name": "Maia", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.24254000", + "longitude": "-8.60257000" + }, + { + "id": "89274", + "name": "Marco de Canaveses", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.15545000", + "longitude": "-8.16954000" + }, + { + "id": "89275", + "name": "Marco de Canavezes", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.18389000", + "longitude": "-8.14864000" + }, + { + "id": "89276", + "name": "Margaride", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.36478000", + "longitude": "-8.19999000" + }, + { + "id": "89284", + "name": "Matosinhos", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.18207000", + "longitude": "-8.68908000" + }, + { + "id": "89289", + "name": "Meinedo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.24827000", + "longitude": "-8.25807000" + }, + { + "id": "89291", + "name": "Melres", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.06989000", + "longitude": "-8.40091000" + }, + { + "id": "89297", + "name": "Milheirós", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.21478000", + "longitude": "-8.58837000" + }, + { + "id": "89301", + "name": "Mindelo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.31527000", + "longitude": "-8.72124000" + }, + { + "id": "89329", + "name": "Moreira", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.05600000", + "longitude": "-8.38939000" + }, + { + "id": "89344", + "name": "Negrelos", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.34946000", + "longitude": "-8.40145000" + }, + { + "id": "89348", + "name": "Nogueira", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.24246000", + "longitude": "-8.58685000" + }, + { + "id": "89360", + "name": "Olival", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.05024000", + "longitude": "-8.54416000" + }, + { + "id": "89367", + "name": "Oliveira do Douro", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.12466000", + "longitude": "-8.58463000" + }, + { + "id": "89388", + "name": "Paços de Ferreira", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.28964000", + "longitude": "-8.37584000" + }, + { + "id": "89383", + "name": "Paredes", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.20501000", + "longitude": "-8.37506000" + }, + { + "id": "89445", + "name": "Póvoa de Varzim", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.38344000", + "longitude": "-8.76364000" + }, + { + "id": "89389", + "name": "Pedroso", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.41103000", + "longitude": "-8.74897000" + }, + { + "id": "89390", + "name": "Pedrouços", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.18880000", + "longitude": "-8.58624000" + }, + { + "id": "89394", + "name": "Penafiel", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.20931000", + "longitude": "-8.26996000" + }, + { + "id": "89401", + "name": "Perafita", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.18252000", + "longitude": "-8.25450000" + }, + { + "id": "89404", + "name": "Perozinho", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.06513000", + "longitude": "-8.58531000" + }, + { + "id": "89425", + "name": "Porto", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.14961000", + "longitude": "-8.61099000" + }, + { + "id": "89455", + "name": "Rebordões", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.35509000", + "longitude": "-8.42355000" + }, + { + "id": "89454", + "name": "Rebordosa", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.22405000", + "longitude": "-8.40669000" + }, + { + "id": "89456", + "name": "Recarei", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.15356000", + "longitude": "-8.41178000" + }, + { + "id": "89472", + "name": "Rio Mau", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.40422000", + "longitude": "-8.67994000" + }, + { + "id": "89474", + "name": "Rio Tinto", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.17872000", + "longitude": "-8.55953000" + }, + { + "id": "89491", + "name": "Sandim", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.03508000", + "longitude": "-8.50700000" + }, + { + "id": "89503", + "name": "Santa Cruz do Bispo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.21462000", + "longitude": "-8.67406000" + }, + { + "id": "89518", + "name": "Santo Izidoro", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.21083000", + "longitude": "-8.14224000" + }, + { + "id": "89519", + "name": "Santo Tirso", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.33014000", + "longitude": "-8.43827000" + }, + { + "id": "89562", + "name": "São Félix da Marinha", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.03555000", + "longitude": "-8.62259000" + }, + { + "id": "89573", + "name": "São Mamede de Infesta", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.19183000", + "longitude": "-8.61105000" + }, + { + "id": "89579", + "name": "São Miguel do Couto", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.33167000", + "longitude": "-8.46185000" + }, + { + "id": "89581", + "name": "São Pedro da Cova", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.14331000", + "longitude": "-8.50033000" + }, + { + "id": "89584", + "name": "São Romão do Coronado", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.28544000", + "longitude": "-8.56320000" + }, + { + "id": "89527", + "name": "Senhora da Hora", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.18641000", + "longitude": "-8.65172000" + }, + { + "id": "89530", + "name": "Sermonde", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.04712000", + "longitude": "-8.58449000" + }, + { + "id": "89532", + "name": "Seroa", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.26511000", + "longitude": "-8.42892000" + }, + { + "id": "89538", + "name": "Serzedo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.05105000", + "longitude": "-8.61605000" + }, + { + "id": "89547", + "name": "Sobrado", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.21041000", + "longitude": "-8.45488000" + }, + { + "id": "89600", + "name": "Telões", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.31054000", + "longitude": "-8.11101000" + }, + { + "id": "89613", + "name": "Trofa", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.30646000", + "longitude": "-8.57640000" + }, + { + "id": "89620", + "name": "Vairão", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.33290000", + "longitude": "-8.66657000" + }, + { + "id": "89621", + "name": "Valadares", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.14737000", + "longitude": "-7.98120000" + }, + { + "id": "89623", + "name": "Valbom", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.12921000", + "longitude": "-8.56199000" + }, + { + "id": "89631", + "name": "Valongo", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.20797000", + "longitude": "-8.50086000" + }, + { + "id": "89672", + "name": "Vila do Conde", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.35326000", + "longitude": "-8.74516000" + }, + { + "id": "89652", + "name": "Vila Meã", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.25116000", + "longitude": "-8.18397000" + }, + { + "id": "89655", + "name": "Vila Nova da Telha", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.07170000", + "longitude": "-8.64146000" + }, + { + "id": "89657", + "name": "Vila Nova de Gaia", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.12401000", + "longitude": "-8.61241000" + }, + { + "id": "89675", + "name": "Vilar de Andorinho", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.10574000", + "longitude": "-8.58622000" + }, + { + "id": "89677", + "name": "Vilar do Paraíso", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.08974000", + "longitude": "-8.62110000" + }, + { + "id": "89678", + "name": "Vilarinho", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.35955000", + "longitude": "-8.33123000" + }, + { + "id": "89685", + "name": "Vizela", + "state_id": 2243, + "state_code": "13", + "country_id": 177, + "country_code": "PT", + "latitude": "41.38242000", + "longitude": "-8.24887000" + }, + { + "id": "88906", + "name": "Abrantes", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.46667000", + "longitude": "-8.20000000" + }, + { + "id": "88916", + "name": "Alcanede", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.41501000", + "longitude": "-8.82189000" + }, + { + "id": "88917", + "name": "Alcanena", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.45900000", + "longitude": "-8.66892000" + }, + { + "id": "88918", + "name": "Alcanhões", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.29603000", + "longitude": "-8.65847000" + }, + { + "id": "88932", + "name": "Alferrarede", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.48333000", + "longitude": "-8.16667000" + }, + { + "id": "88948", + "name": "Almeirim", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.20837000", + "longitude": "-8.62635000" + }, + { + "id": "88952", + "name": "Alpiarça", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.25712000", + "longitude": "-8.58187000" + }, + { + "id": "88963", + "name": "Amiães de Baixo", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.44296000", + "longitude": "-8.73358000" + }, + { + "id": "89012", + "name": "Azinhaga", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.34877000", + "longitude": "-8.53005000" + }, + { + "id": "89031", + "name": "Bemfica", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.14325000", + "longitude": "-8.68717000" + }, + { + "id": "89032", + "name": "Benavente", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "38.90800000", + "longitude": "-8.76898000" + }, + { + "id": "89098", + "name": "Cartaxo", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.15377000", + "longitude": "-8.81373000" + }, + { + "id": "89116", + "name": "Chamusca", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.29900000", + "longitude": "-8.39933000" + }, + { + "id": "89127", + "name": "Constância", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.45718000", + "longitude": "-8.30368000" + }, + { + "id": "89130", + "name": "Coruche", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "38.95950000", + "longitude": "-8.52745000" + }, + { + "id": "89143", + "name": "Entroncamento", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.46667000", + "longitude": "-8.46667000" + }, + { + "id": "89169", + "name": "Fazendas de Almeirim", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.17553000", + "longitude": "-8.56927000" + }, + { + "id": "89201", + "name": "Fátima", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.62071000", + "longitude": "-8.65237000" + }, + { + "id": "89177", + "name": "Ferreira do Zêzere", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.72303000", + "longitude": "-8.31661000" + }, + { + "id": "89211", + "name": "Golegã", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.38683000", + "longitude": "-8.50591000" + }, + { + "id": "89285", + "name": "Mação", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.59331000", + "longitude": "-7.99772000" + }, + { + "id": "89265", + "name": "Madalena", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.57133000", + "longitude": "-8.44635000" + }, + { + "id": "89278", + "name": "Marinhais", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.04730000", + "longitude": "-8.70236000" + }, + { + "id": "89300", + "name": "Minde", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.51631000", + "longitude": "-8.68799000" + }, + { + "id": "89315", + "name": "Monsanto", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.46203000", + "longitude": "-8.71180000" + }, + { + "id": "89317", + "name": "Montalvinho", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.48333000", + "longitude": "-8.30000000" + }, + { + "id": "89318", + "name": "Montalvo", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.48333000", + "longitude": "-8.30000000" + }, + { + "id": "89373", + "name": "Ourém", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.66179000", + "longitude": "-8.57895000" + }, + { + "id": "89376", + "name": "Paialvo", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.56399000", + "longitude": "-8.46835000" + }, + { + "id": "89392", + "name": "Pego", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.46146000", + "longitude": "-8.14955000" + }, + { + "id": "89408", + "name": "Pinheiro Grande", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.39212000", + "longitude": "-8.43410000" + }, + { + "id": "89409", + "name": "Poceirão", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "38.83095000", + "longitude": "-8.79365000" + }, + { + "id": "89420", + "name": "Pontével", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.14945000", + "longitude": "-8.83880000" + }, + { + "id": "89438", + "name": "Praia do Ribatejo", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.46667000", + "longitude": "-8.35000000" + }, + { + "id": "89463", + "name": "Riachos", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.44472000", + "longitude": "-8.51420000" + }, + { + "id": "89471", + "name": "Rio Maior", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.34288000", + "longitude": "-8.93806000" + }, + { + "id": "89486", + "name": "Salvaterra de Magos", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.04482000", + "longitude": "-8.68903000" + }, + { + "id": "89488", + "name": "Samora Correia", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "38.93709000", + "longitude": "-8.87178000" + }, + { + "id": "89506", + "name": "Santa Margarida da Coutada", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.45000000", + "longitude": "-8.31667000" + }, + { + "id": "89510", + "name": "Santarém", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.23333000", + "longitude": "-8.68333000" + }, + { + "id": "89521", + "name": "Sardoal", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.55643000", + "longitude": "-8.14323000" + }, + { + "id": "89578", + "name": "São Miguel de Rio Torto", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.43333000", + "longitude": "-8.21667000" + }, + { + "id": "89593", + "name": "São Vicente do Paul", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.34946000", + "longitude": "-8.62221000" + }, + { + "id": "89604", + "name": "Tomar", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.60199000", + "longitude": "-8.40924000" + }, + { + "id": "89607", + "name": "Torres Novas", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.49160000", + "longitude": "-8.54796000" + }, + { + "id": "89610", + "name": "Tramagal", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.45000000", + "longitude": "-8.25000000" + }, + { + "id": "89626", + "name": "Vale de Figueira", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.30569000", + "longitude": "-8.62876000" + }, + { + "id": "89627", + "name": "Vale de Santarém", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.19052000", + "longitude": "-8.72735000" + }, + { + "id": "89646", + "name": "Vila Chã de Ourique", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.17219000", + "longitude": "-8.76658000" + }, + { + "id": "89654", + "name": "Vila Nova da Barquinha", + "state_id": 2238, + "state_code": "14", + "country_id": 177, + "country_code": "PT", + "latitude": "39.46081000", + "longitude": "-8.43588000" + }, + { + "id": "88924", + "name": "Alcácer do Sal", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.37326000", + "longitude": "-8.51444000" + }, + { + "id": "88921", + "name": "Alcochete", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.73827000", + "longitude": "-8.97936000" + }, + { + "id": "88927", + "name": "Aldeia de Paio Pires", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.61667000", + "longitude": "-9.08333000" + }, + { + "id": "88940", + "name": "Alhos Vedros", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.65486000", + "longitude": "-9.02368000" + }, + { + "id": "88945", + "name": "Almada", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.67902000", + "longitude": "-9.15690000" + }, + { + "id": "88965", + "name": "Amora", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.62961000", + "longitude": "-9.11557000" + }, + { + "id": "88992", + "name": "Arrentela", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.62500000", + "longitude": "-9.10151000" + }, + { + "id": "89010", + "name": "Azeitão", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.51919000", + "longitude": "-9.01390000" + }, + { + "id": "89021", + "name": "Barreiro", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.66314000", + "longitude": "-9.07240000" + }, + { + "id": "89058", + "name": "Cacilhas", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.68638000", + "longitude": "-9.14938000" + }, + { + "id": "89089", + "name": "Caparica", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.66179000", + "longitude": "-9.20032000" + }, + { + "id": "89115", + "name": "Cercal", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "37.80129000", + "longitude": "-8.67400000" + }, + { + "id": "89118", + "name": "Charneca de Caparica", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.62032000", + "longitude": "-9.19426000" + }, + { + "id": "89124", + "name": "Comporta", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.38059000", + "longitude": "-8.78608000" + }, + { + "id": "89128", + "name": "Corroios", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.64004000", + "longitude": "-9.15080000" + }, + { + "id": "89132", + "name": "Costa de Caparica", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.64458000", + "longitude": "-9.23556000" + }, + { + "id": "89215", + "name": "Grândola", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.18999000", + "longitude": "-8.61197000" + }, + { + "id": "89236", + "name": "Laranjeira", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.65599000", + "longitude": "-9.15376000" + }, + { + "id": "89240", + "name": "Lavradio", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.66808000", + "longitude": "-9.05204000" + }, + { + "id": "89309", + "name": "Moita", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.65854000", + "longitude": "-9.01040000" + }, + { + "id": "89326", + "name": "Montijo", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.72990000", + "longitude": "-8.69364000" + }, + { + "id": "89377", + "name": "Palmela", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.56902000", + "longitude": "-8.90126000" + }, + { + "id": "89406", + "name": "Piedade", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.67005000", + "longitude": "-9.15852000" + }, + { + "id": "89407", + "name": "Pinhal Novo", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.63106000", + "longitude": "-8.91376000" + }, + { + "id": "89426", + "name": "Porto Covo", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "37.85256000", + "longitude": "-8.79018000" + }, + { + "id": "89436", + "name": "Pragal", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.67459000", + "longitude": "-9.16981000" + }, + { + "id": "89450", + "name": "Quinta do Anjo", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.56753000", + "longitude": "-8.94228000" + }, + { + "id": "89449", + "name": "Quinta Do Conde", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.56528000", + "longitude": "-9.04316000" + }, + { + "id": "89478", + "name": "Rosairinho", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.67734000", + "longitude": "-9.00836000" + }, + { + "id": "89489", + "name": "Samouco", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.72035000", + "longitude": "-9.00471000" + }, + { + "id": "89511", + "name": "Santiago do Cacém", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.02502000", + "longitude": "-8.67577000" + }, + { + "id": "89512", + "name": "Santo André", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.06078000", + "longitude": "-8.78220000" + }, + { + "id": "89515", + "name": "Santo António da Charneca", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.62561000", + "longitude": "-9.03043000" + }, + { + "id": "89522", + "name": "Sarilhos Pequenos", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.68176000", + "longitude": "-8.98231000" + }, + { + "id": "89523", + "name": "Seixal", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.61173000", + "longitude": "-9.10371000" + }, + { + "id": "89539", + "name": "Sesimbra", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.49486000", + "longitude": "-9.12011000" + }, + { + "id": "89540", + "name": "Setúbal", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.52440000", + "longitude": "-8.88820000" + }, + { + "id": "89545", + "name": "Sines", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "37.95622000", + "longitude": "-8.86979000" + }, + { + "id": "89550", + "name": "Sobreda", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.64961000", + "longitude": "-9.18977000" + }, + { + "id": "89609", + "name": "Trafaria", + "state_id": 2242, + "state_code": "15", + "country_id": 177, + "country_code": "PT", + "latitude": "38.67222000", + "longitude": "-9.23268000" + }, + { + "id": "88981", + "name": "Arcos de Valdevez", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.84668000", + "longitude": "-8.41905000" + }, + { + "id": "88983", + "name": "Areosa", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.71779000", + "longitude": "-8.85707000" + }, + { + "id": "89073", + "name": "Caminha", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.84647000", + "longitude": "-8.80133000" + }, + { + "id": "89140", + "name": "Darque", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.68333000", + "longitude": "-8.76667000" + }, + { + "id": "89286", + "name": "Meadela", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.70654000", + "longitude": "-8.79628000" + }, + { + "id": "89290", + "name": "Melgaço", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "42.08067000", + "longitude": "-8.24844000" + }, + { + "id": "89327", + "name": "Monção", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "42.07892000", + "longitude": "-8.48076000" + }, + { + "id": "89337", + "name": "Mozelos", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.86774000", + "longitude": "-8.39776000" + }, + { + "id": "89384", + "name": "Paredes de Coura", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.90995000", + "longitude": "-8.57034000" + }, + { + "id": "89416", + "name": "Ponte da Barca", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.80669000", + "longitude": "-8.31014000" + }, + { + "id": "89417", + "name": "Ponte de Lima", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.74682000", + "longitude": "-8.57637000" + }, + { + "id": "89629", + "name": "Valença", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "42.02821000", + "longitude": "-8.63388000" + }, + { + "id": "89628", + "name": "Valenza", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "42.02418000", + "longitude": "-8.63474000" + }, + { + "id": "89640", + "name": "Viana do Castelo", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.69371000", + "longitude": "-8.83456000" + }, + { + "id": "89662", + "name": "Vila Praia de Âncora", + "state_id": 2245, + "state_code": "16", + "country_id": 177, + "country_code": "PT", + "latitude": "41.81098000", + "longitude": "-8.85255000" + }, + { + "id": "88941", + "name": "Alijó", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.28447000", + "longitude": "-7.48545000" + }, + { + "id": "89044", + "name": "Boticas", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.68939000", + "longitude": "-7.66914000" + }, + { + "id": "89119", + "name": "Chaves", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.73961000", + "longitude": "-7.45030000" + }, + { + "id": "89168", + "name": "Favaios", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.26876000", + "longitude": "-7.50465000" + }, + { + "id": "89210", + "name": "Godim", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.17104000", + "longitude": "-7.80303000" + }, + { + "id": "89294", + "name": "Mesão Frio", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.16190000", + "longitude": "-7.87284000" + }, + { + "id": "89313", + "name": "Mondim de Basto", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.41347000", + "longitude": "-7.95479000" + }, + { + "id": "89316", + "name": "Montalegre", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.83180000", + "longitude": "-7.78999000" + }, + { + "id": "89339", + "name": "Murça", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.41825000", + "longitude": "-7.45121000" + }, + { + "id": "89405", + "name": "Peso da Régua", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.19157000", + "longitude": "-7.83668000" + }, + { + "id": "89468", + "name": "Ribeira de Pena", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.51021000", + "longitude": "-7.79673000" + }, + { + "id": "89480", + "name": "Sabrosa", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.26702000", + "longitude": "-7.57601000" + }, + { + "id": "89500", + "name": "Santa Cruz", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.76007000", + "longitude": "-7.46834000" + }, + { + "id": "89508", + "name": "Santa Marta de Penaguião", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.20991000", + "longitude": "-7.78386000" + }, + { + "id": "89551", + "name": "Sobreira", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.52371000", + "longitude": "-7.80234000" + }, + { + "id": "89632", + "name": "Valpaços", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.62082000", + "longitude": "-7.33607000" + }, + { + "id": "89661", + "name": "Vila Pouca de Aguiar", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.52079000", + "longitude": "-7.63671000" + }, + { + "id": "89663", + "name": "Vila Real", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.30021000", + "longitude": "-7.73985000" + }, + { + "id": "89680", + "name": "Vilela", + "state_id": 2234, + "state_code": "17", + "country_id": 177, + "country_code": "PT", + "latitude": "41.22511000", + "longitude": "-7.60338000" + }, + { + "id": "88907", + "name": "Abraveses", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.68137000", + "longitude": "-7.92102000" + }, + { + "id": "88987", + "name": "Armamar", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "41.09718000", + "longitude": "-7.68553000" + }, + { + "id": "89054", + "name": "Cabanas de Viriato", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.47662000", + "longitude": "-7.97445000" + }, + { + "id": "89076", + "name": "Campo", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.71086000", + "longitude": "-7.91445000" + }, + { + "id": "89079", + "name": "Campo de Besteiros", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.55655000", + "longitude": "-8.13432000" + }, + { + "id": "89080", + "name": "Canas de Senhorim", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.50012000", + "longitude": "-7.89874000" + }, + { + "id": "89097", + "name": "Carregal do Sal", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.45007000", + "longitude": "-7.99819000" + }, + { + "id": "89109", + "name": "Castro Daire", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.92279000", + "longitude": "-7.93878000" + }, + { + "id": "89121", + "name": "Cinfães", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "41.03986000", + "longitude": "-8.11218000" + }, + { + "id": "89146", + "name": "Ervedosa do Douro", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "41.16626000", + "longitude": "-7.47305000" + }, + { + "id": "89235", + "name": "Lamego", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "41.10229000", + "longitude": "-7.81025000" + }, + { + "id": "89272", + "name": "Mangualde", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.60425000", + "longitude": "-7.76115000" + }, + { + "id": "89308", + "name": "Moimenta da Beira", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.97134000", + "longitude": "-7.62959000" + }, + { + "id": "89331", + "name": "Mortágua", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.39434000", + "longitude": "-8.25811000" + }, + { + "id": "89345", + "name": "Nelas", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.53216000", + "longitude": "-7.85152000" + }, + { + "id": "89365", + "name": "Oliveira de Frades", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.73357000", + "longitude": "-8.17481000" + }, + { + "id": "89395", + "name": "Penalva do Castelo", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.66791000", + "longitude": "-7.66015000" + }, + { + "id": "89398", + "name": "Penedono", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.98875000", + "longitude": "-7.39386000" + }, + { + "id": "89462", + "name": "Resende", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "41.07688000", + "longitude": "-7.95123000" + }, + { + "id": "89475", + "name": "Rio de Loba", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.66596000", + "longitude": "-7.87781000" + }, + { + "id": "89498", + "name": "Santa Comba Dão", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.40442000", + "longitude": "-8.11380000" + }, + { + "id": "89556", + "name": "Sátão", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.76246000", + "longitude": "-7.67600000" + }, + { + "id": "89566", + "name": "São João da Pesqueira", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "41.14805000", + "longitude": "-7.40489000" + }, + { + "id": "89569", + "name": "São João de Areias", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.38722000", + "longitude": "-8.06783000" + }, + { + "id": "89583", + "name": "São Pedro do Sul", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.80073000", + "longitude": "-8.09023000" + }, + { + "id": "89531", + "name": "Sernancelhe", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.92097000", + "longitude": "-7.51226000" + }, + { + "id": "89594", + "name": "Tabuaço", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "41.09555000", + "longitude": "-7.56735000" + }, + { + "id": "89595", + "name": "Tarouca", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "41.02651000", + "longitude": "-7.74998000" + }, + { + "id": "89605", + "name": "Tondela", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.54052000", + "longitude": "-8.10040000" + }, + { + "id": "89612", + "name": "Treixedo", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.43246000", + "longitude": "-8.09428000" + }, + { + "id": "89659", + "name": "Vila Nova de Paiva", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.86590000", + "longitude": "-7.76127000" + }, + { + "id": "89684", + "name": "Viseu", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.67450000", + "longitude": "-7.91721000" + }, + { + "id": "89687", + "name": "Vouzela", + "state_id": 2237, + "state_code": "18", + "country_id": 177, + "country_code": "PT", + "latitude": "40.68944000", + "longitude": "-8.11360000" + }, + { + "id": "89856", + "name": "Al Ghuwayrīyah", + "state_id": 3183, + "state_code": "KH", + "country_id": 179, + "country_code": "QA", + "latitude": "25.82882000", + "longitude": "51.24567000" + }, + { + "id": "89858", + "name": "Al Khawr", + "state_id": 3183, + "state_code": "KH", + "country_id": 179, + "country_code": "QA", + "latitude": "25.68389000", + "longitude": "51.50583000" + }, + { + "id": "89861", + "name": "Ar Rayyān", + "state_id": 3177, + "state_code": "RA", + "country_id": 179, + "country_code": "QA", + "latitude": "25.29194000", + "longitude": "51.42444000" + }, + { + "id": "89869", + "name": "Umm Bāb", + "state_id": 3177, + "state_code": "RA", + "country_id": 179, + "country_code": "QA", + "latitude": "25.21417000", + "longitude": "50.80722000" + }, + { + "id": "89859", + "name": "Al Wakrah", + "state_id": 3179, + "state_code": "WA", + "country_id": 179, + "country_code": "QA", + "latitude": "25.17151000", + "longitude": "51.60337000" + }, + { + "id": "89860", + "name": "Al Wukayr", + "state_id": 3179, + "state_code": "WA", + "country_id": 179, + "country_code": "QA", + "latitude": "25.15107000", + "longitude": "51.53718000" + }, + { + "id": "89868", + "name": "Musay‘īd", + "state_id": 3179, + "state_code": "WA", + "country_id": 179, + "country_code": "QA", + "latitude": "24.99226000", + "longitude": "51.55067000" + }, + { + "id": "89857", + "name": "Al Jumaylīyah", + "state_id": 3178, + "state_code": "SH", + "country_id": 179, + "country_code": "QA", + "latitude": "25.61068000", + "longitude": "51.09108000" + }, + { + "id": "89863", + "name": "Ash Shīḩānīyah", + "state_id": 3178, + "state_code": "SH", + "country_id": 179, + "country_code": "QA", + "latitude": "25.37088000", + "longitude": "51.22264000" + }, + { + "id": "89865", + "name": "Dukhān", + "state_id": 3178, + "state_code": "SH", + "country_id": 179, + "country_code": "QA", + "latitude": "25.42485000", + "longitude": "50.78227000" + }, + { + "id": "89864", + "name": "Doha", + "state_id": 3181, + "state_code": "DA", + "country_id": 179, + "country_code": "QA", + "latitude": "25.28545000", + "longitude": "51.53096000" + }, + { + "id": "89862", + "name": "Ar Ruways", + "state_id": 3180, + "state_code": "MS", + "country_id": 179, + "country_code": "QA", + "latitude": "26.13978000", + "longitude": "51.21493000" + }, + { + "id": "89866", + "name": "Fuwayriţ", + "state_id": 3180, + "state_code": "MS", + "country_id": 179, + "country_code": "QA", + "latitude": "26.02565000", + "longitude": "51.36971000" + }, + { + "id": "89867", + "name": "Madīnat ash Shamāl", + "state_id": 3180, + "state_code": "MS", + "country_id": 179, + "country_code": "QA", + "latitude": "26.12933000", + "longitude": "51.20090000" + }, + { + "id": "89870", + "name": "Umm Şalāl Muḩammad", + "state_id": 3184, + "state_code": "US", + "country_id": 179, + "country_code": "QA", + "latitude": "25.41524000", + "longitude": "51.40647000" + }, + { + "id": "89874", + "name": "Abrud", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27406000", + "longitude": "23.06339000" + }, + { + "id": "89875", + "name": "Abrud-Sat", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28166000", + "longitude": "23.06098000" + }, + { + "id": "89907", + "name": "Aiud", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31006000", + "longitude": "23.72128000" + }, + { + "id": "89908", + "name": "Aiudul de Sus", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31653000", + "longitude": "23.69053000" + }, + { + "id": "89910", + "name": "Alba Iulia", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06667000", + "longitude": "23.58333000" + }, + { + "id": "89911", + "name": "Albac", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45246000", + "longitude": "22.95164000" + }, + { + "id": "89937", + "name": "Almaşu Mare", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11014000", + "longitude": "23.11721000" + }, + { + "id": "89992", + "name": "Arieşeni", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47641000", + "longitude": "22.75741000" + }, + { + "id": "90006", + "name": "Avram Iancu", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "22.78333000" + }, + { + "id": "97042", + "name": "Şibot", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95000000", + "longitude": "23.33333000" + }, + { + "id": "97070", + "name": "Şona", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21667000", + "longitude": "24.01667000" + }, + { + "id": "97076", + "name": "Şpring", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "23.78333000" + }, + { + "id": "97090", + "name": "Şugag", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "23.63333000" + }, + { + "id": "90032", + "name": "Baia de Arieş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38045000", + "longitude": "23.28115000" + }, + { + "id": "90504", + "name": "Bălcaciu", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.19122000", + "longitude": "24.06139000" + }, + { + "id": "90545", + "name": "Bărăbanț", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09930000", + "longitude": "23.58487000" + }, + { + "id": "90109", + "name": "Berghin", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07782000", + "longitude": "23.73742000" + }, + { + "id": "90132", + "name": "Biia", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23097000", + "longitude": "24.00461000" + }, + { + "id": "90143", + "name": "Bistra", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37820000", + "longitude": "23.10081000" + }, + { + "id": "90156", + "name": "Blaj", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.17508000", + "longitude": "23.91578000" + }, + { + "id": "90161", + "name": "Blândiana", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97943000", + "longitude": "23.38543000" + }, + { + "id": "90159", + "name": "Blideşti", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30000000", + "longitude": "23.13333000" + }, + { + "id": "90344", + "name": "Bucerdea-Grânoasă", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "23.83333000" + }, + { + "id": "90350", + "name": "Bucium", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26402000", + "longitude": "23.17910000" + }, + { + "id": "93791", + "name": "Câlnic", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88333000", + "longitude": "23.66667000" + }, + { + "id": "93796", + "name": "Câmpeni", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36667000", + "longitude": "23.05000000" + }, + { + "id": "90614", + "name": "Cenade", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "24.01667000" + }, + { + "id": "90625", + "name": "Cergău Mare", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09869000", + "longitude": "23.92284000" + }, + { + "id": "90626", + "name": "Cergău Mic", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "23.93333000" + }, + { + "id": "90642", + "name": "Ceru-Băcăinţi", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98333000", + "longitude": "23.25000000" + }, + { + "id": "90649", + "name": "Cetatea de Baltă", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24794000", + "longitude": "24.17244000" + }, + { + "id": "90746", + "name": "Ciugud", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "23.61667000" + }, + { + "id": "90750", + "name": "Ciumbrud", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30810000", + "longitude": "23.76222000" + }, + { + "id": "90759", + "name": "Ciuruleasa", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25000000", + "longitude": "23.03333000" + }, + { + "id": "90837", + "name": "Comuna Albac", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45246000", + "longitude": "22.95027000" + }, + { + "id": "90857", + "name": "Comuna Almaşu Mare", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10877000", + "longitude": "23.12038000" + }, + { + "id": "90892", + "name": "Comuna Arieşeni", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47659000", + "longitude": "22.75535000" + }, + { + "id": "90905", + "name": "Comuna Avram Iancu", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "22.78333000" + }, + { + "id": "93512", + "name": "Comuna Şibot", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.94093000", + "longitude": "23.32226000" + }, + { + "id": "93494", + "name": "Comuna Întregalde", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24908000", + "longitude": "23.39213000" + }, + { + "id": "93540", + "name": "Comuna Şona", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25089000", + "longitude": "24.00259000" + }, + { + "id": "93545", + "name": "Comuna Şpring", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96833000", + "longitude": "23.73449000" + }, + { + "id": "93558", + "name": "Comuna Şugag", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.74780000", + "longitude": "23.59957000" + }, + { + "id": "90968", + "name": "Comuna Berghin", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07484000", + "longitude": "23.73768000" + }, + { + "id": "90995", + "name": "Comuna Bistra", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37856000", + "longitude": "23.10150000" + }, + { + "id": "91005", + "name": "Comuna Blândiana", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98146000", + "longitude": "23.38543000" + }, + { + "id": "91125", + "name": "Comuna Bucerdea-Grânoasă", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20878000", + "longitude": "23.85614000" + }, + { + "id": "91129", + "name": "Comuna Bucium", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26131000", + "longitude": "23.15742000" + }, + { + "id": "91540", + "name": "Comuna Câlnic", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87305000", + "longitude": "23.64329000" + }, + { + "id": "91281", + "name": "Comuna Cenade", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08045000", + "longitude": "24.01382000" + }, + { + "id": "91289", + "name": "Comuna Cergău", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09314000", + "longitude": "23.94597000" + }, + { + "id": "91299", + "name": "Comuna Ceru-Băcăinţi", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00117000", + "longitude": "23.26983000" + }, + { + "id": "91305", + "name": "Comuna Cetatea de Baltă", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21619000", + "longitude": "24.16716000" + }, + { + "id": "91367", + "name": "Comuna Ciugud", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06526000", + "longitude": "23.62794000" + }, + { + "id": "91377", + "name": "Comuna Ciuruleasa", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24481000", + "longitude": "23.01644000" + }, + { + "id": "91516", + "name": "Comuna Crăciunelu de Jos", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.17285000", + "longitude": "23.83585000" + }, + { + "id": "91495", + "name": "Comuna Cricău", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18689000", + "longitude": "23.55309000" + }, + { + "id": "91533", + "name": "Comuna Cut", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93972000", + "longitude": "23.66719000" + }, + { + "id": "91601", + "name": "Comuna Daia Română", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00709000", + "longitude": "23.66816000" + }, + { + "id": "91668", + "name": "Comuna Doştat", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96143000", + "longitude": "23.83313000" + }, + { + "id": "91825", + "name": "Comuna Fărău", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32999000", + "longitude": "24.04335000" + }, + { + "id": "91829", + "name": "Comuna Galda de Jos", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21776000", + "longitude": "23.56918000" + }, + { + "id": "91965", + "name": "Comuna Gârbova", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85277000", + "longitude": "23.68693000" + }, + { + "id": "91971", + "name": "Comuna Gârda de Sus", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46719000", + "longitude": "22.81519000" + }, + { + "id": "92014", + "name": "Comuna Hopârta", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33134000", + "longitude": "23.90340000" + }, + { + "id": "92015", + "name": "Comuna Horea", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50058000", + "longitude": "22.94915000" + }, + { + "id": "92066", + "name": "Comuna Ighiu", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14854000", + "longitude": "23.51232000" + }, + { + "id": "92121", + "name": "Comuna Jidvei", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23083000", + "longitude": "24.11475000" + }, + { + "id": "92176", + "name": "Comuna Livezile", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37559000", + "longitude": "23.58563000" + }, + { + "id": "92183", + "name": "Comuna Lopadea Nouă", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27782000", + "longitude": "23.84975000" + }, + { + "id": "92205", + "name": "Comuna Lunca Mureşului", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42943000", + "longitude": "23.93272000" + }, + { + "id": "92216", + "name": "Comuna Lupşa", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34891000", + "longitude": "23.20455000" + }, + { + "id": "92262", + "name": "Comuna Meteş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10543000", + "longitude": "23.41707000" + }, + { + "id": "92278", + "name": "Comuna Mihalţ", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.17641000", + "longitude": "23.73841000" + }, + { + "id": "92303", + "name": "Comuna Mirăslău", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38660000", + "longitude": "23.69329000" + }, + { + "id": "92317", + "name": "Comuna Mogoş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28356000", + "longitude": "23.31873000" + }, + { + "id": "92453", + "name": "Comuna Noşlac", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41300000", + "longitude": "23.97668000" + }, + { + "id": "92480", + "name": "Comuna Ocoliş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.49636000", + "longitude": "23.46581000" + }, + { + "id": "92487", + "name": "Comuna Ohaba", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08263000", + "longitude": "23.80106000" + }, + { + "id": "92572", + "name": "Comuna Pianu", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87127000", + "longitude": "23.49549000" + }, + { + "id": "92666", + "name": "Comuna Poşaga", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45354000", + "longitude": "23.36115000" + }, + { + "id": "92634", + "name": "Comuna Poiana Vadului", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40457000", + "longitude": "22.87080000" + }, + { + "id": "92651", + "name": "Comuna Ponor", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32065000", + "longitude": "23.40376000" + }, + { + "id": "92822", + "name": "Comuna Râmeţ", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31564000", + "longitude": "23.52602000" + }, + { + "id": "92821", + "name": "Comuna Râmetea", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43815000", + "longitude": "23.56579000" + }, + { + "id": "92842", + "name": "Comuna Rădeşti", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24931000", + "longitude": "23.74444000" + }, + { + "id": "92799", + "name": "Comuna Roşia de Secaş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04807000", + "longitude": "23.85329000" + }, + { + "id": "92798", + "name": "Comuna Roşia Montană", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30991000", + "longitude": "23.08697000" + }, + { + "id": "93049", + "name": "Comuna Sâncel", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21176000", + "longitude": "23.94791000" + }, + { + "id": "93067", + "name": "Comuna Sântimbru", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12974000", + "longitude": "23.66899000" + }, + { + "id": "93076", + "name": "Comuna Sãliştea", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91425000", + "longitude": "23.41294000" + }, + { + "id": "93096", + "name": "Comuna Sălciua", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38261000", + "longitude": "23.41526000" + }, + { + "id": "93112", + "name": "Comuna Săsciori", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85629000", + "longitude": "23.56898000" + }, + { + "id": "92905", + "name": "Comuna Scărişoara", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46072000", + "longitude": "22.88166000" + }, + { + "id": "92972", + "name": "Comuna Sohodol", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32748000", + "longitude": "22.99414000" + }, + { + "id": "93003", + "name": "Comuna Stremţ", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25606000", + "longitude": "23.59340000" + }, + { + "id": "93274", + "name": "Comuna Unirea", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41948000", + "longitude": "23.76260000" + }, + { + "id": "93293", + "name": "Comuna Vadu Moţilor", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40910000", + "longitude": "22.95532000" + }, + { + "id": "93308", + "name": "Comuna Valea Lungă", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13355000", + "longitude": "24.08280000" + }, + { + "id": "93354", + "name": "Comuna Vidra", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37067000", + "longitude": "22.92726000" + }, + { + "id": "93368", + "name": "Comuna Vinţu de Jos", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.02229000", + "longitude": "23.45647000" + }, + { + "id": "93751", + "name": "Crăciunelu de Jos", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "23.83333000" + }, + { + "id": "93717", + "name": "Cricău", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "23.56667000" + }, + { + "id": "93765", + "name": "Cugir", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83651000", + "longitude": "23.36998000" + }, + { + "id": "93780", + "name": "Cut", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93972000", + "longitude": "23.66719000" + }, + { + "id": "93889", + "name": "Daia Română", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "23.66667000" + }, + { + "id": "94008", + "name": "Doştat", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "23.85000000" + }, + { + "id": "93947", + "name": "Dobra", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76913000", + "longitude": "23.64218000" + }, + { + "id": "97137", + "name": "Țelna", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15902000", + "longitude": "23.50099000" + }, + { + "id": "97114", + "name": "Șard", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12814000", + "longitude": "23.53520000" + }, + { + "id": "94268", + "name": "Fărău", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "24.01667000" + }, + { + "id": "94151", + "name": "Feisa", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22608000", + "longitude": "24.14492000" + }, + { + "id": "94157", + "name": "Feneș", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10431000", + "longitude": "23.29511000" + }, + { + "id": "94276", + "name": "Galda de Jos", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "23.61667000" + }, + { + "id": "94483", + "name": "Gârbova", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86667000", + "longitude": "23.73333000" + }, + { + "id": "94489", + "name": "Gârda de Sus", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45000000", + "longitude": "22.81667000" + }, + { + "id": "94556", + "name": "Hopârta", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32134000", + "longitude": "23.87244000" + }, + { + "id": "94557", + "name": "Horea", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50246000", + "longitude": "22.95034000" + }, + { + "id": "94647", + "name": "Ighiel", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14680000", + "longitude": "23.47968000" + }, + { + "id": "94648", + "name": "Ighiu", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "23.51667000" + }, + { + "id": "94671", + "name": "Intregalde", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25000000", + "longitude": "23.41667000" + }, + { + "id": "94710", + "name": "Izvoarele", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.17011000", + "longitude": "23.90377000" + }, + { + "id": "94733", + "name": "Jidvei", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21667000", + "longitude": "24.10000000" + }, + { + "id": "94758", + "name": "Lancrăm", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98708000", + "longitude": "23.55665000" + }, + { + "id": "94823", + "name": "Livezile", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35000000", + "longitude": "23.63333000" + }, + { + "id": "94832", + "name": "Lopadea Nouă", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29090000", + "longitude": "23.81901000" + }, + { + "id": "94868", + "name": "Lunca Mureşului", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43333000", + "longitude": "23.90000000" + }, + { + "id": "94886", + "name": "Lupşa", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36667000", + "longitude": "23.20000000" + }, + { + "id": "94962", + "name": "Meteş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "23.41667000" + }, + { + "id": "94967", + "name": "Micești", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10141000", + "longitude": "23.55573000" + }, + { + "id": "94985", + "name": "Mihalţ", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "23.73333000" + }, + { + "id": "95025", + "name": "Mirăslău", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36667000", + "longitude": "23.71667000" + }, + { + "id": "95056", + "name": "Mogoș", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27554000", + "longitude": "23.28038000" + }, + { + "id": "95106", + "name": "Municipiul Aiud", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30440000", + "longitude": "23.69751000" + }, + { + "id": "95107", + "name": "Municipiul Alba Iulia", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06346000", + "longitude": "23.57494000" + }, + { + "id": "95114", + "name": "Municipiul Blaj", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15084000", + "longitude": "23.91041000" + }, + { + "id": "95179", + "name": "Municipiul Sebeş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.94237000", + "longitude": "23.57681000" + }, + { + "id": "95358", + "name": "Noşlac", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "23.93333000" + }, + { + "id": "95382", + "name": "Oarda", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03333000", + "longitude": "23.56667000" + }, + { + "id": "95395", + "name": "Ocna Mureş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "23.85000000" + }, + { + "id": "95402", + "name": "Ocoliş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48333000", + "longitude": "23.46667000" + }, + { + "id": "95417", + "name": "Ohaba", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06667000", + "longitude": "23.78333000" + }, + { + "id": "95626", + "name": "Oraş abrud", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27409000", + "longitude": "23.06129000" + }, + { + "id": "95456", + "name": "Oraş Baia de Arieş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37933000", + "longitude": "23.29903000" + }, + { + "id": "95503", + "name": "Oraş Câmpeni", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38493000", + "longitude": "23.04553000" + }, + { + "id": "95501", + "name": "Oraş Cugir", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81371000", + "longitude": "23.40740000" + }, + { + "id": "95556", + "name": "Oraş Ocna Mureş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38475000", + "longitude": "23.84070000" + }, + { + "id": "95602", + "name": "Oraş Teiuş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20959000", + "longitude": "23.70812000" + }, + { + "id": "95624", + "name": "Oraş Zlatna", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13753000", + "longitude": "23.20215000" + }, + { + "id": "95750", + "name": "Petrești", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92102000", + "longitude": "23.56083000" + }, + { + "id": "95766", + "name": "Pianu de Jos", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93528000", + "longitude": "23.48912000" + }, + { + "id": "95767", + "name": "Pianu de Sus", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "23.48333000" + }, + { + "id": "95936", + "name": "Poşaga de Sus", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "23.38333000" + }, + { + "id": "95883", + "name": "Poiana Vadului", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "22.88333000" + }, + { + "id": "95896", + "name": "Poienile-Mogoş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28333000", + "longitude": "23.28333000" + }, + { + "id": "95906", + "name": "Ponor", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "23.41667000" + }, + { + "id": "96195", + "name": "Rădeşti", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "23.71667000" + }, + { + "id": "96214", + "name": "Războieni-Cetate", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41335000", + "longitude": "23.87158000" + }, + { + "id": "96094", + "name": "Rimetea", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45000000", + "longitude": "23.56667000" + }, + { + "id": "96129", + "name": "Roşia de Secaş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "23.88333000" + }, + { + "id": "96136", + "name": "Roșia Montană", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30669000", + "longitude": "23.13373000" + }, + { + "id": "96523", + "name": "Sâncel", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "23.95000000" + }, + { + "id": "96525", + "name": "Sâncrai", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29394000", + "longitude": "23.75209000" + }, + { + "id": "105979", + "name": "Sântimbru", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "23.65000000" + }, + { + "id": "106013", + "name": "Sălciua de Sus", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "23.41667000" + }, + { + "id": "106019", + "name": "Săliştea-Deal", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "23.40000000" + }, + { + "id": "106020", + "name": "Săliștea", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90744000", + "longitude": "23.39789000" + }, + { + "id": "106039", + "name": "Săsciori", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86667000", + "longitude": "23.58333000" + }, + { + "id": "96296", + "name": "Scărişoara", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "22.85000000" + }, + { + "id": "96302", + "name": "Sebeş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95646000", + "longitude": "23.57100000" + }, + { + "id": "96303", + "name": "Sebeșel", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88771000", + "longitude": "23.56606000" + }, + { + "id": "96403", + "name": "Sohodol", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35581000", + "longitude": "23.02923000" + }, + { + "id": "96453", + "name": "Stremţ", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21667000", + "longitude": "23.63333000" + }, + { + "id": "106072", + "name": "Teiuş", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "23.68333000" + }, + { + "id": "106111", + "name": "Tiur", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16009000", + "longitude": "23.88927000" + }, + { + "id": "96641", + "name": "Uioara de Jos", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37087000", + "longitude": "23.83863000" + }, + { + "id": "96668", + "name": "Unirea", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40387000", + "longitude": "23.81314000" + }, + { + "id": "96698", + "name": "Vadu Moţilor", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "22.96667000" + }, + { + "id": "96729", + "name": "Valea Lungă Alba Romania", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12592000", + "longitude": "24.04541000" + }, + { + "id": "96794", + "name": "Veseuș", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27456000", + "longitude": "24.14276000" + }, + { + "id": "96797", + "name": "Veza", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16747000", + "longitude": "23.92470000" + }, + { + "id": "96808", + "name": "Vidra", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36758000", + "longitude": "22.88811000" + }, + { + "id": "96831", + "name": "Vinerea", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88632000", + "longitude": "23.35289000" + }, + { + "id": "96837", + "name": "Vințu de Jos", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99462000", + "longitude": "23.48612000" + }, + { + "id": "96915", + "name": "Vurpăr", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00000000", + "longitude": "23.46667000" + }, + { + "id": "96998", + "name": "Zlatna", + "state_id": 4724, + "state_code": "AB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10633000", + "longitude": "23.23162000" + }, + { + "id": "89880", + "name": "Adea", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55511000", + "longitude": "21.58433000" + }, + { + "id": "89902", + "name": "Agrișu Mare", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27243000", + "longitude": "21.75558000" + }, + { + "id": "89935", + "name": "Almaş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28333000", + "longitude": "22.23333000" + }, + { + "id": "89955", + "name": "Andrei Șaguna", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28810000", + "longitude": "21.39175000" + }, + { + "id": "89970", + "name": "Apateu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61667000", + "longitude": "21.78333000" + }, + { + "id": "89977", + "name": "Arad", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "21.31667000" + }, + { + "id": "89980", + "name": "Archiş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48333000", + "longitude": "22.05000000" + }, + { + "id": "97028", + "name": "Şagu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "21.28333000" + }, + { + "id": "97034", + "name": "Şeitin", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "20.85000000" + }, + { + "id": "97062", + "name": "Şiştarovăţ", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "21.73333000" + }, + { + "id": "97043", + "name": "Şicula", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43333000", + "longitude": "21.75000000" + }, + { + "id": "97048", + "name": "Şilindia", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35000000", + "longitude": "21.91667000" + }, + { + "id": "97049", + "name": "Şimand", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43333000", + "longitude": "21.45000000" + }, + { + "id": "97058", + "name": "Şiria", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "21.63333000" + }, + { + "id": "97064", + "name": "Şofronea", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "21.30000000" + }, + { + "id": "90069", + "name": "Bata", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "22.03333000" + }, + { + "id": "90454", + "name": "Bârsa", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "22.06667000" + }, + { + "id": "90460", + "name": "Bârzava", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11667000", + "longitude": "21.98333000" + }, + { + "id": "90090", + "name": "Beliu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48333000", + "longitude": "21.98333000" + }, + { + "id": "90139", + "name": "Birchiş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "22.16667000" + }, + { + "id": "90176", + "name": "Bocsig", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41667000", + "longitude": "21.95000000" + }, + { + "id": "90279", + "name": "Brazii", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23333000", + "longitude": "22.33333000" + }, + { + "id": "90426", + "name": "Buteni", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31667000", + "longitude": "22.11667000" + }, + { + "id": "90568", + "name": "Caporal Alexa", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33793000", + "longitude": "21.58316000" + }, + { + "id": "93866", + "name": "Cărand", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45000000", + "longitude": "22.08333000" + }, + { + "id": "90627", + "name": "Cermei", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55000000", + "longitude": "21.85000000" + }, + { + "id": "90657", + "name": "Chereluș", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46860000", + "longitude": "21.70706000" + }, + { + "id": "90658", + "name": "Chesinț", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04973000", + "longitude": "21.57944000" + }, + { + "id": "90687", + "name": "Chişineu-Criş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52509000", + "longitude": "21.51844000" + }, + { + "id": "90664", + "name": "Chier", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34199000", + "longitude": "21.82488000" + }, + { + "id": "90683", + "name": "Chisindia", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28333000", + "longitude": "22.10000000" + }, + { + "id": "90704", + "name": "Cintei", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44434000", + "longitude": "21.56556000" + }, + { + "id": "90855", + "name": "Comuna Almaş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28480000", + "longitude": "22.23173000" + }, + { + "id": "90877", + "name": "Comuna Apateu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62598000", + "longitude": "21.82530000" + }, + { + "id": "90884", + "name": "Comuna Archiş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48333000", + "longitude": "22.09663000" + }, + { + "id": "93496", + "name": "Comuna Şagu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04254000", + "longitude": "21.34239000" + }, + { + "id": "93503", + "name": "Comuna Şeitin", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10858000", + "longitude": "20.84464000" + }, + { + "id": "93508", + "name": "Comuna Şepreuş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.57125000", + "longitude": "21.73417000" + }, + { + "id": "93533", + "name": "Comuna Şiştarovăţ", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98649000", + "longitude": "21.75589000" + }, + { + "id": "93513", + "name": "Comuna Şicula", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45723000", + "longitude": "21.75137000" + }, + { + "id": "93519", + "name": "Comuna Şilindia", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33611000", + "longitude": "21.93488000" + }, + { + "id": "93520", + "name": "Comuna Şimand", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42400000", + "longitude": "21.45145000" + }, + { + "id": "93529", + "name": "Comuna Şiria", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28470000", + "longitude": "21.65419000" + }, + { + "id": "93535", + "name": "Comuna Şofronea", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26814000", + "longitude": "21.29059000" + }, + { + "id": "90939", + "name": "Comuna Bata", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99641000", + "longitude": "22.07805000" + }, + { + "id": "91191", + "name": "Comuna Bârsa", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38410000", + "longitude": "22.04459000" + }, + { + "id": "91197", + "name": "Comuna Bârzava", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09910000", + "longitude": "22.06096000" + }, + { + "id": "90954", + "name": "Comuna Beliu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52965000", + "longitude": "21.99566000" + }, + { + "id": "90992", + "name": "Comuna Birchiş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96987000", + "longitude": "22.16845000" + }, + { + "id": "91015", + "name": "Comuna Bocsig", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41893000", + "longitude": "21.98424000" + }, + { + "id": "91087", + "name": "Comuna Brazii", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22177000", + "longitude": "22.32613000" + }, + { + "id": "91174", + "name": "Comuna Buteni", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33119000", + "longitude": "22.11472000" + }, + { + "id": "91586", + "name": "Comuna Cărand", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45551000", + "longitude": "22.05755000" + }, + { + "id": "91290", + "name": "Comuna Cermei", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55433000", + "longitude": "21.87084000" + }, + { + "id": "91326", + "name": "Comuna Chisindia", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26509000", + "longitude": "22.08572000" + }, + { + "id": "91412", + "name": "Comuna Conop", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10401000", + "longitude": "21.88047000" + }, + { + "id": "91467", + "name": "Comuna Covăsinţ", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20571000", + "longitude": "21.60944000" + }, + { + "id": "91485", + "name": "Comuna Craiva", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59969000", + "longitude": "21.97908000" + }, + { + "id": "91621", + "name": "Comuna Dezna", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40997000", + "longitude": "22.22726000" + }, + { + "id": "91625", + "name": "Comuna Dieci", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32071000", + "longitude": "22.22373000" + }, + { + "id": "91666", + "name": "Comuna Dorobanți", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35022000", + "longitude": "21.24441000" + }, + { + "id": "91810", + "name": "Comuna Fântânele", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12441000", + "longitude": "21.38111000" + }, + { + "id": "91758", + "name": "Comuna Felnac", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12223000", + "longitude": "21.16704000" + }, + { + "id": "91787", + "name": "Comuna Frumuşeni", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10180000", + "longitude": "21.45836000" + }, + { + "id": "91861", + "name": "Comuna Ghioroc", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15322000", + "longitude": "21.59651000" + }, + { + "id": "91943", + "name": "Comuna Grăniceri", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50539000", + "longitude": "21.33672000" + }, + { + "id": "91957", + "name": "Comuna Gurahonţ", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29220000", + "longitude": "22.33506000" + }, + { + "id": "92046", + "name": "Comuna Hăşmaş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52217000", + "longitude": "22.07003000" + }, + { + "id": "92038", + "name": "Comuna Hălmagiu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27536000", + "longitude": "22.58183000" + }, + { + "id": "92039", + "name": "Comuna Hălmăgel", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27662000", + "longitude": "22.63180000" + }, + { + "id": "92067", + "name": "Comuna Igneşti", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43388000", + "longitude": "22.18227000" + }, + { + "id": "92092", + "name": "Comuna Iratoşu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29414000", + "longitude": "21.18750000" + }, + { + "id": "92173", + "name": "Comuna Livada", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21924000", + "longitude": "21.38746000" + }, + { + "id": "92227", + "name": "Comuna Macea", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40094000", + "longitude": "21.33187000" + }, + { + "id": "92310", + "name": "Comuna Mişca", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62016000", + "longitude": "21.65353000" + }, + { + "id": "92329", + "name": "Comuna Moneasa", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44443000", + "longitude": "22.25323000" + }, + { + "id": "92493", + "name": "Comuna Olari", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38673000", + "longitude": "21.54522000" + }, + { + "id": "92728", + "name": "Comuna Păuliş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12506000", + "longitude": "21.60246000" + }, + { + "id": "92546", + "name": "Comuna Peregu Mare", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23377000", + "longitude": "20.90612000" + }, + { + "id": "92566", + "name": "Comuna Petriş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06770000", + "longitude": "22.39523000" + }, + { + "id": "92584", + "name": "Comuna Pilu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59727000", + "longitude": "21.34711000" + }, + { + "id": "92593", + "name": "Comuna Pleşcuţa", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28315000", + "longitude": "22.43178000" + }, + { + "id": "93118", + "name": "Comuna Săvârşin", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.02527000", + "longitude": "22.26514000" + }, + { + "id": "92916", + "name": "Comuna Secusigiu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09260000", + "longitude": "21.00295000" + }, + { + "id": "92920", + "name": "Comuna Seleuş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37886000", + "longitude": "21.74875000" + }, + { + "id": "92921", + "name": "Comuna Semlac", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11260000", + "longitude": "20.93210000" + }, + { + "id": "92941", + "name": "Comuna Sintea Mare", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51684000", + "longitude": "21.60800000" + }, + { + "id": "92968", + "name": "Comuna Socodor", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51010000", + "longitude": "21.44128000" + }, + { + "id": "93128", + "name": "Comuna Tauţ", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26383000", + "longitude": "21.96747000" + }, + { + "id": "93230", + "name": "Comuna Târnova", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29054000", + "longitude": "21.80388000" + }, + { + "id": "93288", + "name": "Comuna Ususău", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06781000", + "longitude": "21.81490000" + }, + { + "id": "93441", + "name": "Comuna Vârfurile", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33689000", + "longitude": "22.51984000" + }, + { + "id": "93465", + "name": "Comuna Vărădia de Mureş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04619000", + "longitude": "22.15651000" + }, + { + "id": "93365", + "name": "Comuna Vinga", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.02249000", + "longitude": "21.15244000" + }, + { + "id": "93383", + "name": "Comuna Vladimirescu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16509000", + "longitude": "21.40411000" + }, + { + "id": "93484", + "name": "Comuna Zăbrani", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06310000", + "longitude": "21.58529000" + }, + { + "id": "93485", + "name": "Comuna Zădăreni", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13077000", + "longitude": "21.20866000" + }, + { + "id": "93488", + "name": "Comuna Zărand", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43911000", + "longitude": "21.56909000" + }, + { + "id": "93474", + "name": "Comuna Zerind", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63087000", + "longitude": "21.50777000" + }, + { + "id": "93477", + "name": "Comuna Zimandu Nou", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27496000", + "longitude": "21.39162000" + }, + { + "id": "93592", + "name": "Conop", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10186000", + "longitude": "21.87970000" + }, + { + "id": "93682", + "name": "Covăsinţ", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "21.60000000" + }, + { + "id": "93705", + "name": "Craiva", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "21.96667000" + }, + { + "id": "93776", + "name": "Curtici", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35000000", + "longitude": "21.30000000" + }, + { + "id": "93782", + "name": "Cuvin", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.17001000", + "longitude": "21.59360000" + }, + { + "id": "93932", + "name": "Dezna", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "22.25000000" + }, + { + "id": "93936", + "name": "Dieci", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31667000", + "longitude": "22.25000000" + }, + { + "id": "93996", + "name": "Dorgoş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "21.83333000" + }, + { + "id": "94003", + "name": "Dorobanți", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35022000", + "longitude": "21.24441000" + }, + { + "id": "94029", + "name": "Drauț", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26048000", + "longitude": "21.80924000" + }, + { + "id": "97140", + "name": "Țipar", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47563000", + "longitude": "21.63431000" + }, + { + "id": "97116", + "name": "Șepreuș", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.57125000", + "longitude": "21.73417000" + }, + { + "id": "97121", + "name": "Șiclău", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.49124000", + "longitude": "21.36834000" + }, + { + "id": "94238", + "name": "Fântânele", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12370000", + "longitude": "21.38420000" + }, + { + "id": "94156", + "name": "Felnac", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11667000", + "longitude": "21.15000000" + }, + { + "id": "94214", + "name": "Frumușeni", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10252000", + "longitude": "21.46167000" + }, + { + "id": "94281", + "name": "Galșa", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28810000", + "longitude": "21.65137000" + }, + { + "id": "94333", + "name": "Ghioroc", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "21.58333000" + }, + { + "id": "94444", + "name": "Grăniceri", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51667000", + "longitude": "21.30000000" + }, + { + "id": "94468", + "name": "Gurahonţ", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "22.35000000" + }, + { + "id": "94470", + "name": "Gurba", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46756000", + "longitude": "21.78789000" + }, + { + "id": "94610", + "name": "Hășmaș", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50000000", + "longitude": "22.08333000" + }, + { + "id": "94599", + "name": "Hălmagiu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "22.58333000" + }, + { + "id": "94600", + "name": "Hălmăgel", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "22.61667000" + }, + { + "id": "94561", + "name": "Horia", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20847000", + "longitude": "21.46287000" + }, + { + "id": "94650", + "name": "Igneşti", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "22.16667000" + }, + { + "id": "94667", + "name": "Ineu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43372000", + "longitude": "21.84048000" + }, + { + "id": "94686", + "name": "Iratoşu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31667000", + "longitude": "21.20000000" + }, + { + "id": "94804", + "name": "Lipova", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09085000", + "longitude": "21.69628000" + }, + { + "id": "94814", + "name": "Livada", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22284000", + "longitude": "21.38403000" + }, + { + "id": "94903", + "name": "Macea", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "21.30000000" + }, + { + "id": "94908", + "name": "Mailat", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04189000", + "longitude": "21.10702000" + }, + { + "id": "95215", + "name": "Mândruloc", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14863000", + "longitude": "21.46570000" + }, + { + "id": "95226", + "name": "Mâsca", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30000000", + "longitude": "21.68333000" + }, + { + "id": "95230", + "name": "Măderat", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29493000", + "longitude": "21.71137000" + }, + { + "id": "95264", + "name": "Mănăștur", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00949000", + "longitude": "21.13362000" + }, + { + "id": "95035", + "name": "Mișca", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.60280000", + "longitude": "21.59998000" + }, + { + "id": "95068", + "name": "Moneasa", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45000000", + "longitude": "22.25000000" + }, + { + "id": "95109", + "name": "Municipiul Arad", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.17745000", + "longitude": "21.31348000" + }, + { + "id": "95296", + "name": "Nadab", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48195000", + "longitude": "21.51178000" + }, + { + "id": "95297", + "name": "Nadăș", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22490000", + "longitude": "21.95036000" + }, + { + "id": "95367", + "name": "Nădlac", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16667000", + "longitude": "20.75000000" + }, + { + "id": "95332", + "name": "Neudorf", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06960000", + "longitude": "21.61899000" + }, + { + "id": "95424", + "name": "Olari", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "21.55000000" + }, + { + "id": "95492", + "name": "Oraş Chişineu-Criş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52178000", + "longitude": "21.51295000" + }, + { + "id": "95502", + "name": "Oraş Curtici", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34358000", + "longitude": "21.31051000" + }, + { + "id": "95534", + "name": "Oraş Ineu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42709000", + "longitude": "21.84185000" + }, + { + "id": "95538", + "name": "Oraş Lipova", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09061000", + "longitude": "21.69465000" + }, + { + "id": "95553", + "name": "Oraş Nãdlac", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16664000", + "longitude": "20.74871000" + }, + { + "id": "95575", + "name": "Oraş Pâncota", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31205000", + "longitude": "21.70163000" + }, + { + "id": "95597", + "name": "Oraş Sântana", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34622000", + "longitude": "21.50402000" + }, + { + "id": "95585", + "name": "Oraş Sebiş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38771000", + "longitude": "22.15480000" + }, + { + "id": "95994", + "name": "Pâncota", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "21.70000000" + }, + { + "id": "96032", + "name": "Păuliş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11667000", + "longitude": "21.58333000" + }, + { + "id": "95722", + "name": "Pecica", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16667000", + "longitude": "21.06667000" + }, + { + "id": "95725", + "name": "Peregu Mare", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23333000", + "longitude": "20.90000000" + }, + { + "id": "95726", + "name": "Peregu Mic", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25021000", + "longitude": "20.94885000" + }, + { + "id": "95753", + "name": "Petriş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "22.38333000" + }, + { + "id": "95793", + "name": "Pilu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56667000", + "longitude": "21.35000000" + }, + { + "id": "95811", + "name": "Pleşcuţa", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30000000", + "longitude": "22.43333000" + }, + { + "id": "96051", + "name": "Radna", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09444000", + "longitude": "21.68732000" + }, + { + "id": "96254", + "name": "Satu Mare", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06628000", + "longitude": "20.95826000" + }, + { + "id": "96521", + "name": "Sâmbăteni", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14110000", + "longitude": "21.52689000" + }, + { + "id": "96532", + "name": "Sânmartin", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41653000", + "longitude": "21.34821000" + }, + { + "id": "96544", + "name": "Sânpetru German", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11327000", + "longitude": "21.04932000" + }, + { + "id": "105976", + "name": "Sântana", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35000000", + "longitude": "21.50000000" + }, + { + "id": "106048", + "name": "Săvârşin", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "22.23333000" + }, + { + "id": "96304", + "name": "Sebiş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36667000", + "longitude": "22.11667000" + }, + { + "id": "96317", + "name": "Secusigiu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "20.98333000" + }, + { + "id": "96324", + "name": "Seleuş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "21.71667000" + }, + { + "id": "96325", + "name": "Semlac", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11667000", + "longitude": "20.93333000" + }, + { + "id": "96356", + "name": "Sintea Mare", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51667000", + "longitude": "21.60000000" + }, + { + "id": "96396", + "name": "Socodor", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51667000", + "longitude": "21.43333000" + }, + { + "id": "106063", + "name": "Tauţ", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28333000", + "longitude": "21.91667000" + }, + { + "id": "96595", + "name": "Târnova", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31667000", + "longitude": "21.80000000" + }, + { + "id": "96564", + "name": "Turnu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25764000", + "longitude": "21.12657000" + }, + { + "id": "96691", + "name": "Ususău", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07063000", + "longitude": "21.81371000" + }, + { + "id": "96932", + "name": "Vânători", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62456000", + "longitude": "21.67332000" + }, + { + "id": "96940", + "name": "Vârfurile", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31667000", + "longitude": "22.51667000" + }, + { + "id": "96973", + "name": "Vărădia de Mureş", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "22.15000000" + }, + { + "id": "96832", + "name": "Vinga", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "21.20000000" + }, + { + "id": "96857", + "name": "Vladimirescu", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16628000", + "longitude": "21.40102000" + }, + { + "id": "97009", + "name": "Zăbrani", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06667000", + "longitude": "21.55000000" + }, + { + "id": "97010", + "name": "Zădăreni", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13274000", + "longitude": "21.21821000" + }, + { + "id": "97014", + "name": "Zărand", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "21.65000000" + }, + { + "id": "96989", + "name": "Zerind", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61667000", + "longitude": "21.51667000" + }, + { + "id": "96993", + "name": "Zimandu Nou", + "state_id": 4739, + "state_code": "AR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28333000", + "longitude": "21.40000000" + }, + { + "id": "89914", + "name": "Albeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30955000", + "longitude": "25.00780000" + }, + { + "id": "89919", + "name": "Albeştii Pământeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "24.66667000" + }, + { + "id": "89921", + "name": "Albeștii Ungureni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22529000", + "longitude": "24.67254000" + }, + { + "id": "89923", + "name": "Albota", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "24.85000000" + }, + { + "id": "89924", + "name": "Albota de Jos", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "24.83333000" + }, + { + "id": "89964", + "name": "Aninoasa", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "24.93333000" + }, + { + "id": "89985", + "name": "Arefu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33333000", + "longitude": "24.60000000" + }, + { + "id": "89988", + "name": "Argeșelu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92740000", + "longitude": "24.87115000" + }, + { + "id": "97082", + "name": "Ştefan cel Mare", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49283000", + "longitude": "25.24418000" + }, + { + "id": "97084", + "name": "Ştefăneşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86506000", + "longitude": "24.94961000" + }, + { + "id": "97091", + "name": "Şuici", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "24.53333000" + }, + { + "id": "90073", + "name": "Başcov", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "24.81667000" + }, + { + "id": "90449", + "name": "Bârla", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42606000", + "longitude": "24.77743000" + }, + { + "id": "90451", + "name": "Bârlogu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62658000", + "longitude": "25.08066000" + }, + { + "id": "90467", + "name": "Băbana", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "24.70000000" + }, + { + "id": "90483", + "name": "Bădești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17157000", + "longitude": "24.86064000" + }, + { + "id": "90487", + "name": "Băiculeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "24.70000000" + }, + { + "id": "90501", + "name": "Băjești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02615000", + "longitude": "24.94006000" + }, + { + "id": "90512", + "name": "Bălileşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "24.93333000" + }, + { + "id": "90548", + "name": "Bărăști", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25369000", + "longitude": "24.59651000" + }, + { + "id": "90086", + "name": "Beleţi", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "25.08333000" + }, + { + "id": "90102", + "name": "Berevoeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "24.91667000" + }, + { + "id": "90257", + "name": "Boţeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "25.13333000" + }, + { + "id": "90185", + "name": "Bogaţi", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "25.13333000" + }, + { + "id": "90242", + "name": "Boteni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "25.11667000" + }, + { + "id": "90262", + "name": "Bradu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "24.90000000" + }, + { + "id": "90326", + "name": "Brăduleţ", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "24.76667000" + }, + { + "id": "90367", + "name": "Bucșenești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30096000", + "longitude": "24.65841000" + }, + { + "id": "90368", + "name": "Bucșenești-Lotași", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01307000", + "longitude": "24.96845000" + }, + { + "id": "90378", + "name": "Budeasa Mică", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "24.85000000" + }, + { + "id": "90392", + "name": "Bughea de Jos", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26667000", + "longitude": "25.00000000" + }, + { + "id": "90394", + "name": "Bughea de Sus", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29812000", + "longitude": "25.03284000" + }, + { + "id": "90434", + "name": "Buzoeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58333000", + "longitude": "24.91667000" + }, + { + "id": "90571", + "name": "Capu Piscului", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17999000", + "longitude": "24.97679000" + }, + { + "id": "93800", + "name": "Câmpulung", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26667000", + "longitude": "25.05000000" + }, + { + "id": "93832", + "name": "Căldăraru", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "24.95000000" + }, + { + "id": "93838", + "name": "Călineşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "25.05000000" + }, + { + "id": "93864", + "name": "Căpățânenii Pământeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31667000", + "longitude": "24.65000000" + }, + { + "id": "93876", + "name": "Căteasca", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "25.08333000" + }, + { + "id": "90617", + "name": "Ceparii Pământeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "24.56667000" + }, + { + "id": "90650", + "name": "Cetăţeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20000000", + "longitude": "25.18333000" + }, + { + "id": "90699", + "name": "Cicănești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24601000", + "longitude": "24.60526000" + }, + { + "id": "90718", + "name": "Ciofrângeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "24.53333000" + }, + { + "id": "90721", + "name": "Ciomăgeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83333000", + "longitude": "24.45000000" + }, + { + "id": "90748", + "name": "Ciulnița", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78769000", + "longitude": "25.15388000" + }, + { + "id": "93691", + "name": "Coşeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "24.86667000" + }, + { + "id": "90784", + "name": "Cocu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "24.65000000" + }, + { + "id": "90796", + "name": "Colibași", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93544000", + "longitude": "24.90905000" + }, + { + "id": "90844", + "name": "Comuna Albeștii de Argeș", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "24.66667000" + }, + { + "id": "90845", + "name": "Comuna Albeștii de Muscel", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31667000", + "longitude": "25.00000000" + }, + { + "id": "90846", + "name": "Comuna Albota", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78287000", + "longitude": "24.81838000" + }, + { + "id": "90872", + "name": "Comuna Aninoasa", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20222000", + "longitude": "24.91206000" + }, + { + "id": "90888", + "name": "Comuna Arefu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33142000", + "longitude": "24.62944000" + }, + { + "id": "93550", + "name": "Comuna Ştefan cel Mare", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49197000", + "longitude": "25.24710000" + }, + { + "id": "93559", + "name": "Comuna Şuici", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24454000", + "longitude": "24.53621000" + }, + { + "id": "90942", + "name": "Comuna Başcov", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89295000", + "longitude": "24.78532000" + }, + { + "id": "91188", + "name": "Comuna Bârla", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42636000", + "longitude": "24.77949000" + }, + { + "id": "91199", + "name": "Comuna Băbana", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87539000", + "longitude": "24.71918000" + }, + { + "id": "91206", + "name": "Comuna Băiculeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06017000", + "longitude": "24.67331000" + }, + { + "id": "91217", + "name": "Comuna Bălileşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07981000", + "longitude": "24.93943000" + }, + { + "id": "90951", + "name": "Comuna Beleţi-Negreşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94651000", + "longitude": "25.08603000" + }, + { + "id": "90963", + "name": "Comuna Berevoeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25327000", + "longitude": "24.94292000" + }, + { + "id": "91071", + "name": "Comuna Boţeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00704000", + "longitude": "25.14723000" + }, + { + "id": "91020", + "name": "Comuna Bogaţi", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87344000", + "longitude": "25.15045000" + }, + { + "id": "91059", + "name": "Comuna Boteni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17937000", + "longitude": "25.13073000" + }, + { + "id": "91073", + "name": "Comuna Bradu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "24.90000000" + }, + { + "id": "91115", + "name": "Comuna Brăduleţ", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27502000", + "longitude": "24.77372000" + }, + { + "id": "91144", + "name": "Comuna Budeasa", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95042000", + "longitude": "24.80254000" + }, + { + "id": "91152", + "name": "Comuna Bughea de Jos", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27404000", + "longitude": "25.00324000" + }, + { + "id": "91153", + "name": "Comuna Bughea de Sus", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29812000", + "longitude": "25.03284000" + }, + { + "id": "91180", + "name": "Comuna Buzoeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60205000", + "longitude": "24.91856000" + }, + { + "id": "91570", + "name": "Comuna Căldăraru", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45395000", + "longitude": "24.94263000" + }, + { + "id": "91572", + "name": "Comuna Călineşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85650000", + "longitude": "25.01968000" + }, + { + "id": "91592", + "name": "Comuna Căteasca", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77056000", + "longitude": "25.03633000" + }, + { + "id": "91283", + "name": "Comuna Cepari", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20564000", + "longitude": "24.53064000" + }, + { + "id": "91306", + "name": "Comuna Cetăţeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19234000", + "longitude": "25.20789000" + }, + { + "id": "91335", + "name": "Comuna Cicănești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24577000", + "longitude": "24.60629000" + }, + { + "id": "91348", + "name": "Comuna Ciofrângeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10277000", + "longitude": "24.53704000" + }, + { + "id": "91352", + "name": "Comuna Ciomăgeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85656000", + "longitude": "24.47229000" + }, + { + "id": "91475", + "name": "Comuna Coşeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06431000", + "longitude": "24.87202000" + }, + { + "id": "91391", + "name": "Comuna Cocu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87429000", + "longitude": "24.65112000" + }, + { + "id": "91424", + "name": "Comuna Corbeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29597000", + "longitude": "24.66207000" + }, + { + "id": "91425", + "name": "Comuna Corbi", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25572000", + "longitude": "24.81611000" + }, + { + "id": "91465", + "name": "Comuna Cotmeana", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00518000", + "longitude": "24.62021000" + }, + { + "id": "91518", + "name": "Comuna Cuca", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95654000", + "longitude": "24.50636000" + }, + { + "id": "91606", + "name": "Comuna Davideşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00694000", + "longitude": "25.03599000" + }, + { + "id": "91726", + "name": "Comuna Dâmbovicioara", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43452000", + "longitude": "25.22737000" + }, + { + "id": "91743", + "name": "Comuna Dărmăneşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00656000", + "longitude": "24.90224000" + }, + { + "id": "91637", + "name": "Comuna Dobreşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94992000", + "longitude": "25.11907000" + }, + { + "id": "91659", + "name": "Comuna Domneşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20562000", + "longitude": "24.83945000" + }, + { + "id": "91676", + "name": "Comuna Dragoslavele", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33451000", + "longitude": "25.17010000" + }, + { + "id": "91686", + "name": "Comuna Drăganu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93761000", + "longitude": "24.70301000" + }, + { + "id": "93580", + "name": "Comuna Țițești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01146000", + "longitude": "24.97898000" + }, + { + "id": "91888", + "name": "Comuna Godeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22311000", + "longitude": "24.97842000" + }, + { + "id": "92032", + "name": "Comuna Hârseşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51091000", + "longitude": "24.78294000" + }, + { + "id": "92033", + "name": "Comuna Hârtieşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12629000", + "longitude": "25.11343000" + }, + { + "id": "92109", + "name": "Comuna Izvoru", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49414000", + "longitude": "25.06470000" + }, + { + "id": "92152", + "name": "Comuna Leordeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79117000", + "longitude": "25.16299000" + }, + { + "id": "92154", + "name": "Comuna Lereşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32789000", + "longitude": "25.06951000" + }, + { + "id": "92203", + "name": "Comuna Lunca Corbului", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68361000", + "longitude": "24.76056000" + }, + { + "id": "92399", + "name": "Comuna Mălureni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04780000", + "longitude": "24.77875000" + }, + { + "id": "92416", + "name": "Comuna Mărăcineni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90857000", + "longitude": "24.87484000" + }, + { + "id": "92261", + "name": "Comuna Merișani", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96674000", + "longitude": "24.74482000" + }, + { + "id": "92264", + "name": "Comuna Miceşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97367000", + "longitude": "24.85577000" + }, + { + "id": "92281", + "name": "Comuna Mihăeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11563000", + "longitude": "25.01938000" + }, + { + "id": "92294", + "name": "Comuna Mioarele", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23396000", + "longitude": "25.10045000" + }, + { + "id": "92302", + "name": "Comuna Miroşi", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40316000", + "longitude": "24.95170000" + }, + { + "id": "92349", + "name": "Comuna Moşoaia", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83013000", + "longitude": "24.79957000" + }, + { + "id": "92335", + "name": "Comuna Morărești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00760000", + "longitude": "24.56079000" + }, + { + "id": "92345", + "name": "Comuna Mozăceni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56366000", + "longitude": "25.17492000" + }, + { + "id": "92365", + "name": "Comuna Mușătești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "24.78333000" + }, + { + "id": "92430", + "name": "Comuna Negraşi", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61441000", + "longitude": "25.12404000" + }, + { + "id": "92456", + "name": "Comuna Nucşoara", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33798000", + "longitude": "24.78943000" + }, + { + "id": "92468", + "name": "Comuna Oarja", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75730000", + "longitude": "24.96935000" + }, + { + "id": "92582", + "name": "Comuna Pietroşani", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15375000", + "longitude": "24.84439000" + }, + { + "id": "92628", + "name": "Comuna Poiana Lacului", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81199000", + "longitude": "24.71296000" + }, + { + "id": "92637", + "name": "Comuna Poienarii de Argeş", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "24.53333000" + }, + { + "id": "92638", + "name": "Comuna Poienarii de Muscel", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "25.05000000" + }, + { + "id": "92652", + "name": "Comuna Popeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44521000", + "longitude": "25.09114000" + }, + { + "id": "92673", + "name": "Comuna Priboieni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87728000", + "longitude": "25.08680000" + }, + { + "id": "92819", + "name": "Comuna Râca", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44216000", + "longitude": "25.03671000" + }, + { + "id": "92851", + "name": "Comuna Răteşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71690000", + "longitude": "25.15858000" + }, + { + "id": "92755", + "name": "Comuna Recea", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54264000", + "longitude": "25.02738000" + }, + { + "id": "92776", + "name": "Comuna Rociu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66838000", + "longitude": "25.02014000" + }, + { + "id": "92806", + "name": "Comuna Rucăr", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41607000", + "longitude": "25.17338000" + }, + { + "id": "93100", + "name": "Comuna Sălătrucu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29098000", + "longitude": "24.52523000" + }, + { + "id": "93104", + "name": "Comuna Săpata", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72789000", + "longitude": "24.75280000" + }, + { + "id": "92890", + "name": "Comuna Schitu-Goleşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18630000", + "longitude": "25.00576000" + }, + { + "id": "92954", + "name": "Comuna Slobozia", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52197000", + "longitude": "25.24092000" + }, + { + "id": "93012", + "name": "Comuna Stâlpeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05665000", + "longitude": "24.99307000" + }, + { + "id": "92992", + "name": "Comuna Stoeneşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26432000", + "longitude": "25.17674000" + }, + { + "id": "92999", + "name": "Comuna Stolnici", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58075000", + "longitude": "24.77335000" + }, + { + "id": "93041", + "name": "Comuna Suseni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70861000", + "longitude": "24.96437000" + }, + { + "id": "93133", + "name": "Comuna Teiu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64225000", + "longitude": "25.14110000" + }, + { + "id": "93151", + "name": "Comuna Tigveni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15588000", + "longitude": "24.55094000" + }, + { + "id": "93252", + "name": "Comuna Uda", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87591000", + "longitude": "24.58582000" + }, + { + "id": "93267", + "name": "Comuna Ungheni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51166000", + "longitude": "24.95186000" + }, + { + "id": "93303", + "name": "Comuna Valea Danului", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18962000", + "longitude": "24.61959000" + }, + { + "id": "93306", + "name": "Comuna Valea Iaşului", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19677000", + "longitude": "24.70094000" + }, + { + "id": "93315", + "name": "Comuna Valea Mare-Pravăţ", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28900000", + "longitude": "25.10567000" + }, + { + "id": "93338", + "name": "Comuna Vedea", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77735000", + "longitude": "24.64677000" + }, + { + "id": "93391", + "name": "Comuna Vlădeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14344000", + "longitude": "24.93634000" + }, + { + "id": "93418", + "name": "Comuna Vultureşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05999000", + "longitude": "25.07370000" + }, + { + "id": "93598", + "name": "Conțești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98494000", + "longitude": "25.01032000" + }, + { + "id": "93613", + "name": "Corbeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "24.65000000" + }, + { + "id": "93614", + "name": "Corbi", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "24.80000000" + }, + { + "id": "93644", + "name": "Cornățel", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57972000", + "longitude": "24.95487000" + }, + { + "id": "93661", + "name": "Costeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "24.88333000" + }, + { + "id": "93673", + "name": "Cotenești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23462000", + "longitude": "25.18617000" + }, + { + "id": "93675", + "name": "Cotmeana", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "24.61667000" + }, + { + "id": "93757", + "name": "Cuca", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "24.51667000" + }, + { + "id": "93774", + "name": "Curtea de Argeş", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13422000", + "longitude": "24.67409000" + }, + { + "id": "93898", + "name": "Davideşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "25.03333000" + }, + { + "id": "94105", + "name": "Dâmbovicioara", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45000000", + "longitude": "25.23333000" + }, + { + "id": "94133", + "name": "Dărmăneşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "24.90000000" + }, + { + "id": "93955", + "name": "Dobreşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "25.13333000" + }, + { + "id": "93968", + "name": "Dobrotu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20633000", + "longitude": "24.65859000" + }, + { + "id": "93989", + "name": "Domneşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20000000", + "longitude": "24.83333000" + }, + { + "id": "94021", + "name": "Dragoslavele", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34801000", + "longitude": "25.16925000" + }, + { + "id": "94036", + "name": "Drăganu-Olteni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93333000", + "longitude": "24.71667000" + }, + { + "id": "94039", + "name": "Drăghici", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12865000", + "longitude": "25.04508000" + }, + { + "id": "97118", + "name": "Șerbănești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68142000", + "longitude": "24.99236000" + }, + { + "id": "97117", + "name": "Șerboeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63818000", + "longitude": "24.89355000" + }, + { + "id": "94254", + "name": "Făgetu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90616000", + "longitude": "24.91159000" + }, + { + "id": "94508", + "name": "Gălășești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95593000", + "longitude": "24.78602000" + }, + { + "id": "94286", + "name": "Geamăna", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82005000", + "longitude": "24.89109000" + }, + { + "id": "94368", + "name": "Godeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "24.98333000" + }, + { + "id": "94378", + "name": "Golești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83970000", + "longitude": "24.96530000" + }, + { + "id": "94384", + "name": "Gorganu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84241000", + "longitude": "25.03838000" + }, + { + "id": "94589", + "name": "Hârseşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "24.78333000" + }, + { + "id": "94590", + "name": "Hârtieşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "25.10000000" + }, + { + "id": "94575", + "name": "Humele", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52612000", + "longitude": "24.97714000" + }, + { + "id": "94715", + "name": "Izvoru", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49414000", + "longitude": "25.06470000" + }, + { + "id": "94720", + "name": "Izvoru de Sus", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "24.65000000" + }, + { + "id": "94750", + "name": "Jugur", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19255000", + "longitude": "25.08493000" + }, + { + "id": "94754", + "name": "Jupânești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "24.85000000" + }, + { + "id": "94902", + "name": "Lăzărești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15659000", + "longitude": "24.99540000" + }, + { + "id": "94771", + "name": "Leicești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09586000", + "longitude": "24.86108000" + }, + { + "id": "94779", + "name": "Leordeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "25.11667000" + }, + { + "id": "94781", + "name": "Lereşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33333000", + "longitude": "25.06667000" + }, + { + "id": "94818", + "name": "Livezeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03838000", + "longitude": "24.97676000" + }, + { + "id": "94864", + "name": "Lunca Corbului", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68391000", + "longitude": "24.75855000" + }, + { + "id": "94926", + "name": "Mareș", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77824000", + "longitude": "24.79005000" + }, + { + "id": "95224", + "name": "Mârţeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "24.75000000" + }, + { + "id": "95295", + "name": "Mățău", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23565000", + "longitude": "25.08286000" + }, + { + "id": "95254", + "name": "Mălureni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "24.80000000" + }, + { + "id": "95284", + "name": "Mărăcineni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "24.88333000" + }, + { + "id": "94959", + "name": "Merişani", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96820000", + "longitude": "24.74327000" + }, + { + "id": "94965", + "name": "Miceşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "24.86667000" + }, + { + "id": "94988", + "name": "Mihăeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "25.00000000" + }, + { + "id": "95011", + "name": "Mioveni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95905000", + "longitude": "24.94198000" + }, + { + "id": "95024", + "name": "Miroşi", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "24.93333000" + }, + { + "id": "95091", + "name": "Moşoaia", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "24.76667000" + }, + { + "id": "95075", + "name": "Morăreşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "24.56667000" + }, + { + "id": "95087", + "name": "Mozăceni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "25.16667000" + }, + { + "id": "95211", + "name": "Mușătești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21651000", + "longitude": "24.77941000" + }, + { + "id": "95132", + "name": "Municipiul Câmpulung", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26691000", + "longitude": "25.04419000" + }, + { + "id": "95129", + "name": "Municipiul Curtea de Argeș", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13840000", + "longitude": "24.67512000" + }, + { + "id": "95169", + "name": "Municipiul Piteşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85782000", + "longitude": "24.87133000" + }, + { + "id": "95313", + "name": "Negraşi", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "25.11667000" + }, + { + "id": "95362", + "name": "Nucşoara", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33333000", + "longitude": "24.78333000" + }, + { + "id": "95383", + "name": "Oarja", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76053000", + "longitude": "24.97596000" + }, + { + "id": "95384", + "name": "Oarja Sat", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76429000", + "longitude": "24.97141000" + }, + { + "id": "95412", + "name": "Oeștii Pământeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25241000", + "longitude": "24.65658000" + }, + { + "id": "95652", + "name": "Oraș Ştefăneşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "24.93333000" + }, + { + "id": "95638", + "name": "Oraș Costeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "24.88333000" + }, + { + "id": "95642", + "name": "Oraș Mioveni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95897000", + "longitude": "24.94274000" + }, + { + "id": "95646", + "name": "Oraș Topoloveni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "25.08333000" + }, + { + "id": "96025", + "name": "Pătuleni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73247000", + "longitude": "25.16495000" + }, + { + "id": "95749", + "name": "Petrești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04364000", + "longitude": "24.88989000" + }, + { + "id": "95788", + "name": "Pietroşani", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "24.85000000" + }, + { + "id": "95803", + "name": "Piteşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85000000", + "longitude": "24.86667000" + }, + { + "id": "95875", + "name": "Poiana Lacului", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "24.73333000" + }, + { + "id": "95886", + "name": "Poienari", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "25.05000000" + }, + { + "id": "95908", + "name": "Popeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44181000", + "longitude": "25.10007000" + }, + { + "id": "95948", + "name": "Priboieni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88333000", + "longitude": "25.08333000" + }, + { + "id": "95985", + "name": "Purcăreni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96847000", + "longitude": "24.88736000" + }, + { + "id": "96046", + "name": "Racovița", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97081000", + "longitude": "24.97582000" + }, + { + "id": "96164", + "name": "Râca", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43426000", + "longitude": "25.04333000" + }, + { + "id": "96197", + "name": "Rădești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07184000", + "longitude": "25.00207000" + }, + { + "id": "96210", + "name": "Răteşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "25.13333000" + }, + { + "id": "96071", + "name": "Recea", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "25.01667000" + }, + { + "id": "96089", + "name": "Retevoiești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14016000", + "longitude": "24.83797000" + }, + { + "id": "96098", + "name": "Rociu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "25.03333000" + }, + { + "id": "96144", + "name": "Rucăr", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40000000", + "longitude": "25.16667000" + }, + { + "id": "106023", + "name": "Sălătrucu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33333000", + "longitude": "24.51667000" + }, + { + "id": "96274", + "name": "Schitu-Goleşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20000000", + "longitude": "25.00000000" + }, + { + "id": "96382", + "name": "Slănic", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23108000", + "longitude": "24.89411000" + }, + { + "id": "96369", + "name": "Slobozia", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52527000", + "longitude": "25.24263000" + }, + { + "id": "96468", + "name": "Stâlpeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "24.96667000" + }, + { + "id": "96433", + "name": "Stoeneşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "25.16667000" + }, + { + "id": "96443", + "name": "Stolnici", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "24.78333000" + }, + { + "id": "96460", + "name": "Strâmbeni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46897000", + "longitude": "24.97315000" + }, + { + "id": "96455", + "name": "Stroești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12953000", + "longitude": "24.79418000" + }, + { + "id": "96509", + "name": "Surdulești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39217000", + "longitude": "24.95798000" + }, + { + "id": "96511", + "name": "Suseni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "24.95000000" + }, + { + "id": "106071", + "name": "Teiu", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "25.10000000" + }, + { + "id": "106096", + "name": "Tigveni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "24.58333000" + }, + { + "id": "106108", + "name": "Titeşti", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "25.00000000" + }, + { + "id": "106133", + "name": "Toplița", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09022000", + "longitude": "24.73236000" + }, + { + "id": "106136", + "name": "Topoloveni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "25.08333000" + }, + { + "id": "96571", + "name": "Tutana", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04286000", + "longitude": "24.65122000" + }, + { + "id": "96635", + "name": "Uda", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "24.56667000" + }, + { + "id": "96655", + "name": "Ungheni", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50000000", + "longitude": "24.96667000" + }, + { + "id": "96713", + "name": "Valea Caselor", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35000000", + "longitude": "25.16667000" + }, + { + "id": "96722", + "name": "Valea Danului", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "24.65000000" + }, + { + "id": "96726", + "name": "Valea Iaşului", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "24.71667000" + }, + { + "id": "96738", + "name": "Valea Mare Pravăț", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29171000", + "longitude": "25.09250000" + }, + { + "id": "96739", + "name": "Valea Mare-Podgoria", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88513000", + "longitude": "24.90613000" + }, + { + "id": "96745", + "name": "Valea Popii", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09253000", + "longitude": "25.02240000" + }, + { + "id": "96964", + "name": "Văleni-Podgoria", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85755000", + "longitude": "24.98930000" + }, + { + "id": "96782", + "name": "Vedea", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "24.61667000" + }, + { + "id": "96867", + "name": "Vlădești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "24.91667000" + }, + { + "id": "96882", + "name": "Voinești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30007000", + "longitude": "25.07225000" + }, + { + "id": "96899", + "name": "Vrănești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84595000", + "longitude": "25.00716000" + }, + { + "id": "96912", + "name": "Vulturești", + "state_id": 4722, + "state_code": "AG", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06618000", + "longitude": "25.08347000" + }, + { + "id": "89904", + "name": "Agăş", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48333000", + "longitude": "26.21667000" + }, + { + "id": "89968", + "name": "Apa Asău", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48747000", + "longitude": "26.37888000" + }, + { + "id": "89982", + "name": "Ardeoani", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53333000", + "longitude": "26.60000000" + }, + { + "id": "89993", + "name": "Arini", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35000000", + "longitude": "27.18333000" + }, + { + "id": "90002", + "name": "Asău", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43333000", + "longitude": "26.40000000" + }, + { + "id": "97077", + "name": "Ştefan Cel Mare", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20526000", + "longitude": "26.85488000" + }, + { + "id": "90025", + "name": "Bacău", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56718000", + "longitude": "26.91384000" + }, + { + "id": "90040", + "name": "Balcani", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63333000", + "longitude": "26.55000000" + }, + { + "id": "90059", + "name": "Barați", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.57569000", + "longitude": "26.87118000" + }, + { + "id": "90457", + "name": "Bârsăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "26.70000000" + }, + { + "id": "90477", + "name": "Băcioiu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31431000", + "longitude": "27.15745000" + }, + { + "id": "90104", + "name": "Bereşti-Bistriţa", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71667000", + "longitude": "26.83333000" + }, + { + "id": "90106", + "name": "Bereşti-Tazlău", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "26.66667000" + }, + { + "id": "90108", + "name": "Berești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20329000", + "longitude": "27.14476000" + }, + { + "id": "90119", + "name": "Berzunţi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "26.63333000" + }, + { + "id": "90133", + "name": "Bijghir", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.60185000", + "longitude": "27.01859000" + }, + { + "id": "90164", + "name": "Blăgeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68333000", + "longitude": "26.65000000" + }, + { + "id": "90193", + "name": "Bogdăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21667000", + "longitude": "26.68333000" + }, + { + "id": "90218", + "name": "Bolătău", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63345000", + "longitude": "26.40149000" + }, + { + "id": "90216", + "name": "Bolovăniș", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61633000", + "longitude": "26.05263000" + }, + { + "id": "90341", + "name": "Brătești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32540000", + "longitude": "26.64333000" + }, + { + "id": "90342", + "name": "Brătila", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32348000", + "longitude": "26.77442000" + }, + { + "id": "90317", + "name": "Brusturoasa", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51667000", + "longitude": "26.20000000" + }, + { + "id": "90369", + "name": "Bucșești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48381000", + "longitude": "26.58230000" + }, + { + "id": "90355", + "name": "Buciumi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20230000", + "longitude": "26.78445000" + }, + { + "id": "90373", + "name": "Buda", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67111000", + "longitude": "26.71953000" + }, + { + "id": "90396", + "name": "Buhoci", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56667000", + "longitude": "27.01667000" + }, + { + "id": "90397", + "name": "Buhuşi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71667000", + "longitude": "26.70000000" + }, + { + "id": "90595", + "name": "Caşin", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "26.75000000" + }, + { + "id": "90573", + "name": "Caraclău", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30696000", + "longitude": "26.71641000" + }, + { + "id": "93815", + "name": "Cârligi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76583000", + "longitude": "26.85053000" + }, + { + "id": "93828", + "name": "Căiuţi-Sat", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "26.93333000" + }, + { + "id": "93829", + "name": "Căiuți", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18057000", + "longitude": "26.92571000" + }, + { + "id": "90624", + "name": "Cerdac", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23794000", + "longitude": "26.51638000" + }, + { + "id": "90637", + "name": "Cernu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46999000", + "longitude": "26.58477000" + }, + { + "id": "90734", + "name": "Cireșoaia", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24816000", + "longitude": "26.54929000" + }, + { + "id": "90745", + "name": "Ciugheș", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52220000", + "longitude": "26.11970000" + }, + { + "id": "90765", + "name": "Cleja", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41667000", + "longitude": "26.90000000" + }, + { + "id": "93695", + "name": "Coţofăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "26.98333000" + }, + { + "id": "90797", + "name": "Coloneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56667000", + "longitude": "27.30000000" + }, + { + "id": "93587", + "name": "Comăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42135000", + "longitude": "26.43645000" + }, + { + "id": "90834", + "name": "Comuna Agăş", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46458000", + "longitude": "26.22962000" + }, + { + "id": "90886", + "name": "Comuna Ardeoani", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52183000", + "longitude": "26.60165000" + }, + { + "id": "90900", + "name": "Comuna Asău", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46495000", + "longitude": "26.37497000" + }, + { + "id": "93546", + "name": "Comuna Ştefan Cel Mare", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20645000", + "longitude": "26.85488000" + }, + { + "id": "90924", + "name": "Comuna Balcani", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.64108000", + "longitude": "26.54412000" + }, + { + "id": "91194", + "name": "Comuna Bârsăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33290000", + "longitude": "26.68192000" + }, + { + "id": "90965", + "name": "Comuna Bereşti-Bistriţa", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70870000", + "longitude": "26.85648000" + }, + { + "id": "90967", + "name": "Comuna Bereşti-Tazlău", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48302000", + "longitude": "26.67877000" + }, + { + "id": "90977", + "name": "Comuna Berzunţi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41360000", + "longitude": "26.62237000" + }, + { + "id": "91006", + "name": "Comuna Blăgeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68668000", + "longitude": "26.64835000" + }, + { + "id": "91028", + "name": "Comuna Bogdăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21790000", + "longitude": "26.69950000" + }, + { + "id": "91108", + "name": "Comuna Brusturoasa", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51898000", + "longitude": "26.19352000" + }, + { + "id": "91132", + "name": "Comuna Buciumi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21353000", + "longitude": "26.78584000" + }, + { + "id": "91154", + "name": "Comuna Buhoci", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56581000", + "longitude": "27.00824000" + }, + { + "id": "91569", + "name": "Comuna Căiuţi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.17987000", + "longitude": "26.91633000" + }, + { + "id": "91379", + "name": "Comuna Cleja", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40183000", + "longitude": "26.92104000" + }, + { + "id": "91482", + "name": "Comuna Coţofăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14808000", + "longitude": "26.98644000" + }, + { + "id": "91400", + "name": "Comuna Coloneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.60471000", + "longitude": "27.26584000" + }, + { + "id": "91422", + "name": "Comuna Corbasca", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29728000", + "longitude": "27.13675000" + }, + { + "id": "91734", + "name": "Comuna Dămieneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.74310000", + "longitude": "27.00649000" + }, + { + "id": "91608", + "name": "Comuna Dealu Morii", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30877000", + "longitude": "27.29511000" + }, + { + "id": "91651", + "name": "Comuna Dofteana", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32282000", + "longitude": "26.53081000" + }, + { + "id": "91753", + "name": "Comuna Faraoani", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43375000", + "longitude": "26.89835000" + }, + { + "id": "91763", + "name": "Comuna Filipeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76821000", + "longitude": "26.89338000" + }, + { + "id": "91762", + "name": "Comuna Filipeni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53357000", + "longitude": "27.19114000" + }, + { + "id": "91974", + "name": "Comuna Gârleni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66251000", + "longitude": "26.78819000" + }, + { + "id": "91979", + "name": "Comuna Găiceana", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35060000", + "longitude": "27.22154000" + }, + { + "id": "91855", + "name": "Comuna Ghimeş-Făget", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.60483000", + "longitude": "26.05354000" + }, + { + "id": "91869", + "name": "Comuna Gioseni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42925000", + "longitude": "26.99239000" + }, + { + "id": "91886", + "name": "Comuna Glăvăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26329000", + "longitude": "27.38778000" + }, + { + "id": "91955", + "name": "Comuna Gura Văii", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27305000", + "longitude": "26.82312000" + }, + { + "id": "91994", + "name": "Comuna Helegiu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34967000", + "longitude": "26.76690000" + }, + { + "id": "91996", + "name": "Comuna Hemeiuşi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61927000", + "longitude": "26.85729000" + }, + { + "id": "92016", + "name": "Comuna Horgeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.39837000", + "longitude": "27.05603000" + }, + { + "id": "92029", + "name": "Comuna Huruieşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25297000", + "longitude": "27.23828000" + }, + { + "id": "92097", + "name": "Comuna Iteşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67368000", + "longitude": "26.85555000" + }, + { + "id": "92110", + "name": "Comuna Izvoru Berheciului", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.57693000", + "longitude": "27.22842000" + }, + { + "id": "92158", + "name": "Comuna Letea Veche", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.54236000", + "longitude": "26.96869000" + }, + { + "id": "92167", + "name": "Comuna Lipova", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72016000", + "longitude": "27.23238000" + }, + { + "id": "92175", + "name": "Comuna Livezi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.39932000", + "longitude": "26.72438000" + }, + { + "id": "92195", + "name": "Comuna Luizi-Cãlugãra", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53604000", + "longitude": "26.84012000" + }, + { + "id": "92369", + "name": "Comuna Mânăstirea Caşin", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.19394000", + "longitude": "26.72923000" + }, + { + "id": "92377", + "name": "Comuna Mãnãstirea Caşin", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14381000", + "longitude": "26.69500000" + }, + { + "id": "92387", + "name": "Comuna Măgireşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50965000", + "longitude": "26.53727000" + }, + { + "id": "92388", + "name": "Comuna Măgura", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56065000", + "longitude": "26.83900000" + }, + { + "id": "92408", + "name": "Comuna Mărgineni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59779000", + "longitude": "26.80505000" + }, + { + "id": "92336", + "name": "Comuna Motoşeni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32779000", + "longitude": "27.41721000" + }, + { + "id": "92433", + "name": "Comuna Negri", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70500000", + "longitude": "26.97216000" + }, + { + "id": "92442", + "name": "Comuna Nicolae Bălcescu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46687000", + "longitude": "26.88837000" + }, + { + "id": "92482", + "name": "Comuna Odobeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66902000", + "longitude": "27.13224000" + }, + { + "id": "92490", + "name": "Comuna Oituz", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.19045000", + "longitude": "26.56043000" + }, + { + "id": "92500", + "name": "Comuna Onceşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47537000", + "longitude": "27.25835000" + }, + { + "id": "92507", + "name": "Comuna Orbeni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26934000", + "longitude": "27.01872000" + }, + { + "id": "92530", + "name": "Comuna Palanca", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50647000", + "longitude": "26.11239000" + }, + { + "id": "92536", + "name": "Comuna Parava", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30993000", + "longitude": "26.96787000" + }, + { + "id": "92539", + "name": "Comuna Parincea", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47841000", + "longitude": "27.12877000" + }, + { + "id": "92705", + "name": "Comuna Pârgăreşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24414000", + "longitude": "26.65017000" + }, + { + "id": "92706", + "name": "Comuna Pârjol", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59014000", + "longitude": "26.60903000" + }, + { + "id": "92719", + "name": "Comuna Pănceşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36459000", + "longitude": "27.11377000" + }, + { + "id": "92596", + "name": "Comuna Plopana", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66549000", + "longitude": "27.24403000" + }, + { + "id": "92616", + "name": "Comuna Podu Turcului", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.19703000", + "longitude": "27.38796000" + }, + { + "id": "92617", + "name": "Comuna Poduri", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47888000", + "longitude": "26.56593000" + }, + { + "id": "92689", + "name": "Comuna Prăjeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65469000", + "longitude": "26.97631000" + }, + { + "id": "92733", + "name": "Comuna Racova", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69790000", + "longitude": "26.78097000" + }, + { + "id": "92840", + "name": "Comuna Răcăciuni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35011000", + "longitude": "26.96705000" + }, + { + "id": "92835", + "name": "Comuna Răchitoasa", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44772000", + "longitude": "27.36875000" + }, + { + "id": "92805", + "name": "Comuna Roşiori", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72620000", + "longitude": "27.10446000" + }, + { + "id": "92878", + "name": "Comuna Sascut", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.19288000", + "longitude": "27.09163000" + }, + { + "id": "93102", + "name": "Comuna Sănduleni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45082000", + "longitude": "26.74185000" + }, + { + "id": "93106", + "name": "Comuna Sărata", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.49582000", + "longitude": "26.86916000" + }, + { + "id": "93114", + "name": "Comuna Săuceşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65781000", + "longitude": "26.93368000" + }, + { + "id": "92894", + "name": "Comuna Scorţeni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58037000", + "longitude": "26.68543000" + }, + { + "id": "92913", + "name": "Comuna Secuieni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65329000", + "longitude": "27.09674000" + }, + { + "id": "92974", + "name": "Comuna Solonţ", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56929000", + "longitude": "26.53863000" + }, + { + "id": "93020", + "name": "Comuna Stănişeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42760000", + "longitude": "27.31055000" + }, + { + "id": "93006", + "name": "Comuna Strugari", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52715000", + "longitude": "26.73578000" + }, + { + "id": "93122", + "name": "Comuna Tamaşi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48841000", + "longitude": "26.99549000" + }, + { + "id": "93224", + "name": "Comuna Târgu Trotuş", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26789000", + "longitude": "26.67587000" + }, + { + "id": "93247", + "name": "Comuna Tătărăşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22823000", + "longitude": "27.19631000" + }, + { + "id": "93187", + "name": "Comuna Traian", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.64706000", + "longitude": "27.03533000" + }, + { + "id": "93272", + "name": "Comuna Ungureni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.54522000", + "longitude": "27.10680000" + }, + { + "id": "93282", + "name": "Comuna Urecheşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12425000", + "longitude": "27.07070000" + }, + { + "id": "93322", + "name": "Comuna Valea Seacă", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24851000", + "longitude": "27.04535000" + }, + { + "id": "93417", + "name": "Comuna Vultureni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41385000", + "longitude": "27.23668000" + }, + { + "id": "93473", + "name": "Comuna Zemeş", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59171000", + "longitude": "26.43381000" + }, + { + "id": "93611", + "name": "Corbasca", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28333000", + "longitude": "27.16667000" + }, + { + "id": "93678", + "name": "Cotumba", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.49743000", + "longitude": "26.19112000" + }, + { + "id": "93760", + "name": "Cucuieți", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32731000", + "longitude": "26.55504000" + }, + { + "id": "94119", + "name": "Dămieneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73333000", + "longitude": "26.98333000" + }, + { + "id": "94120", + "name": "Dămoc", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "26.86667000" + }, + { + "id": "94131", + "name": "Dărmăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36667000", + "longitude": "26.48333000" + }, + { + "id": "93905", + "name": "Dealu Morii", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31667000", + "longitude": "27.23333000" + }, + { + "id": "93916", + "name": "Deleni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35360000", + "longitude": "26.77628000" + }, + { + "id": "93979", + "name": "Dofteana", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31667000", + "longitude": "26.51667000" + }, + { + "id": "94014", + "name": "Dragomir", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41373000", + "longitude": "26.63163000" + }, + { + "id": "94047", + "name": "Drăgugești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36796000", + "longitude": "26.77433000" + }, + { + "id": "94079", + "name": "Dumbrava", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30969000", + "longitude": "26.89087000" + }, + { + "id": "97131", + "name": "Ștefan Vodă", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31692000", + "longitude": "26.51250000" + }, + { + "id": "94150", + "name": "Faraoaní", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43333000", + "longitude": "26.90000000" + }, + { + "id": "94252", + "name": "Făget", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58891000", + "longitude": "26.05349000" + }, + { + "id": "94158", + "name": "Ferestrău-Oituz", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20249000", + "longitude": "26.57629000" + }, + { + "id": "94175", + "name": "Filipeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75000000", + "longitude": "26.88333000" + }, + { + "id": "94174", + "name": "Filipeni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53333000", + "longitude": "27.18333000" + }, + { + "id": "94208", + "name": "Frumoasa", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66298000", + "longitude": "26.54196000" + }, + { + "id": "94213", + "name": "Frumușelu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27796000", + "longitude": "27.35203000" + }, + { + "id": "94230", + "name": "Fundu Răcăciuni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35864000", + "longitude": "26.88987000" + }, + { + "id": "94274", + "name": "Galbeni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45661000", + "longitude": "26.94664000" + }, + { + "id": "94492", + "name": "Gârleni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66667000", + "longitude": "26.80000000" + }, + { + "id": "94493", + "name": "Gârlenii de Sus", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65414000", + "longitude": "26.79491000" + }, + { + "id": "94500", + "name": "Găiceana", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "27.21667000" + }, + { + "id": "94517", + "name": "Găzărie", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48928000", + "longitude": "26.51877000" + }, + { + "id": "94300", + "name": "Gheorghe Doja", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37831000", + "longitude": "26.96248000" + }, + { + "id": "94322", + "name": "Ghimeş-Făget", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "26.06667000" + }, + { + "id": "94323", + "name": "Ghimeș", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56821000", + "longitude": "26.08886000" + }, + { + "id": "94345", + "name": "Gioseni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42925000", + "longitude": "26.99239000" + }, + { + "id": "94366", + "name": "Glăvăneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25000000", + "longitude": "27.38333000" + }, + { + "id": "94465", + "name": "Gura Văii", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27234000", + "longitude": "26.82604000" + }, + { + "id": "94596", + "name": "Hăghiac", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31200000", + "longitude": "26.51841000" + }, + { + "id": "94527", + "name": "Helegiu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35000000", + "longitude": "26.75000000" + }, + { + "id": "94529", + "name": "Hemeiuș", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62643000", + "longitude": "26.85440000" + }, + { + "id": "94551", + "name": "Holt", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.57856000", + "longitude": "26.97499000" + }, + { + "id": "94559", + "name": "Horgeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43333000", + "longitude": "27.06667000" + }, + { + "id": "94583", + "name": "Huruiești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "27.25000000" + }, + { + "id": "94694", + "name": "Iteşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65309000", + "longitude": "26.87256000" + }, + { + "id": "94716", + "name": "Izvoru Berheciului", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "27.21667000" + }, + { + "id": "94761", + "name": "Larga", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35060000", + "longitude": "26.53321000" + }, + { + "id": "94894", + "name": "Lăpoș", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.39363000", + "longitude": "26.46245000" + }, + { + "id": "94784", + "name": "Lespezi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66493000", + "longitude": "26.76882000" + }, + { + "id": "94788", + "name": "Letea Veche", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55000000", + "longitude": "26.95000000" + }, + { + "id": "94796", + "name": "Lilieci", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62861000", + "longitude": "26.87176000" + }, + { + "id": "94803", + "name": "Lipova", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71667000", + "longitude": "27.23333000" + }, + { + "id": "94820", + "name": "Livezi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40639000", + "longitude": "26.73613000" + }, + { + "id": "94821", + "name": "Livezi-Vale", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41667000", + "longitude": "26.73333000" + }, + { + "id": "94841", + "name": "Ludași", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61962000", + "longitude": "26.57926000" + }, + { + "id": "94848", + "name": "Luizi-Călugăra", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53333000", + "longitude": "26.83333000" + }, + { + "id": "95218", + "name": "Mânăstirea Caşin", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "26.68333000" + }, + { + "id": "95238", + "name": "Măgireşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51667000", + "longitude": "26.55000000" + }, + { + "id": "95241", + "name": "Măgura", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56667000", + "longitude": "26.85000000" + }, + { + "id": "95269", + "name": "Mărgineni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58760000", + "longitude": "26.85095000" + }, + { + "id": "95271", + "name": "Mărgineni-Munteni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.60000000", + "longitude": "26.90000000" + }, + { + "id": "95058", + "name": "Moineşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47523000", + "longitude": "26.48907000" + }, + { + "id": "95077", + "name": "Motoşeni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "27.38333000" + }, + { + "id": "95110", + "name": "Municipiul Bacãu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56854000", + "longitude": "26.91135000" + }, + { + "id": "95157", + "name": "Municipiul Moineşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47428000", + "longitude": "26.48804000" + }, + { + "id": "95162", + "name": "Municipiul Oneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25000000", + "longitude": "26.75000000" + }, + { + "id": "95319", + "name": "Negri", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70000000", + "longitude": "26.96667000" + }, + { + "id": "95338", + "name": "Nicolae Bălcescu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "26.91667000" + }, + { + "id": "95408", + "name": "Odobești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67608000", + "longitude": "27.14983000" + }, + { + "id": "95420", + "name": "Oituz", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "26.61667000" + }, + { + "id": "95436", + "name": "Onceşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "27.25000000" + }, + { + "id": "95439", + "name": "Onesti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25000000", + "longitude": "26.75000000" + }, + { + "id": "95476", + "name": "Oraş Buhuşi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71845000", + "longitude": "26.69952000" + }, + { + "id": "95496", + "name": "Oraş Comãneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42348000", + "longitude": "26.42796000" + }, + { + "id": "95513", + "name": "Oraş Dãrmãneşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37559000", + "longitude": "26.47673000" + }, + { + "id": "95591", + "name": "Oraş Slãnic-Moldova", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22320000", + "longitude": "26.47774000" + }, + { + "id": "95609", + "name": "Oraş Târgu Ocna", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27988000", + "longitude": "26.61129000" + }, + { + "id": "95667", + "name": "Orășa", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42225000", + "longitude": "26.74370000" + }, + { + "id": "95655", + "name": "Orbeni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28333000", + "longitude": "27.01667000" + }, + { + "id": "95671", + "name": "Osebiți", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53839000", + "longitude": "26.83946000" + }, + { + "id": "95697", + "name": "Palanca", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53333000", + "longitude": "26.11667000" + }, + { + "id": "95710", + "name": "Parava", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30000000", + "longitude": "27.00000000" + }, + { + "id": "95714", + "name": "Parincea", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48333000", + "longitude": "27.10000000" + }, + { + "id": "95999", + "name": "Pârgăreşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25000000", + "longitude": "26.65000000" + }, + { + "id": "96000", + "name": "Pârjol", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "26.60000000" + }, + { + "id": "96016", + "name": "Pănceşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "27.08333000" + }, + { + "id": "96017", + "name": "Păncești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21118000", + "longitude": "27.06797000" + }, + { + "id": "95816", + "name": "Plopana", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68333000", + "longitude": "27.21667000" + }, + { + "id": "95824", + "name": "Plopu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.39256000", + "longitude": "26.50268000" + }, + { + "id": "95851", + "name": "Podu Turcului", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "27.38333000" + }, + { + "id": "95852", + "name": "Poduri", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "26.53333000" + }, + { + "id": "95866", + "name": "Poiana", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69819000", + "longitude": "27.01765000" + }, + { + "id": "95971", + "name": "Prăjești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65469000", + "longitude": "26.97631000" + }, + { + "id": "95961", + "name": "Prohozești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48155000", + "longitude": "26.55170000" + }, + { + "id": "95987", + "name": "Pustiana", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58990000", + "longitude": "26.63083000" + }, + { + "id": "96040", + "name": "Racova", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70000000", + "longitude": "26.75000000" + }, + { + "id": "96190", + "name": "Răcăciuni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "26.98333000" + }, + { + "id": "96191", + "name": "Răcăuți", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22476000", + "longitude": "26.78723000" + }, + { + "id": "96186", + "name": "Răchitoasa", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43333000", + "longitude": "27.36667000" + }, + { + "id": "96133", + "name": "Roşiori", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71667000", + "longitude": "27.08333000" + }, + { + "id": "96249", + "name": "Sascut", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "27.10000000" + }, + { + "id": "96250", + "name": "Sascut-Sat", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18727000", + "longitude": "27.06851000" + }, + { + "id": "96257", + "name": "Satu Nou", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24447000", + "longitude": "26.65343000" + }, + { + "id": "106025", + "name": "Sănduleni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45000000", + "longitude": "26.73333000" + }, + { + "id": "106030", + "name": "Sărata", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50249000", + "longitude": "26.86857000" + }, + { + "id": "106043", + "name": "Săucești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61853000", + "longitude": "26.94141000" + }, + { + "id": "96272", + "name": "Schitu Frumoasa", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63541000", + "longitude": "26.48761000" + }, + { + "id": "96281", + "name": "Scorţeni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55000000", + "longitude": "26.65000000" + }, + { + "id": "96287", + "name": "Scurta", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26133000", + "longitude": "27.01548000" + }, + { + "id": "96316", + "name": "Secuieni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65000000", + "longitude": "27.10000000" + }, + { + "id": "96383", + "name": "Slănic-Moldova", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22308000", + "longitude": "26.47413000" + }, + { + "id": "96372", + "name": "Slobozia", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47495000", + "longitude": "27.31111000" + }, + { + "id": "96407", + "name": "Solonţ", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55000000", + "longitude": "26.51667000" + }, + { + "id": "96410", + "name": "Somușca", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40147000", + "longitude": "26.91189000" + }, + { + "id": "96481", + "name": "Stănişeşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43333000", + "longitude": "27.30000000" + }, + { + "id": "96448", + "name": "Straja", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43989000", + "longitude": "26.36258000" + }, + { + "id": "96458", + "name": "Strugari", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53333000", + "longitude": "26.71667000" + }, + { + "id": "106055", + "name": "Tamaşi", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48333000", + "longitude": "26.98333000" + }, + { + "id": "96587", + "name": "Târgu Ocna", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27899000", + "longitude": "26.61301000" + }, + { + "id": "96589", + "name": "Târgu Trotuş", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "26.66667000" + }, + { + "id": "96622", + "name": "Tătărăști", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21667000", + "longitude": "27.20000000" + }, + { + "id": "106149", + "name": "Traian", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63333000", + "longitude": "27.03333000" + }, + { + "id": "96563", + "name": "Turluianu", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45298000", + "longitude": "26.64607000" + }, + { + "id": "96570", + "name": "Tuta", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25643000", + "longitude": "26.69103000" + }, + { + "id": "96661", + "name": "Ungureni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52283000", + "longitude": "27.11186000" + }, + { + "id": "96676", + "name": "Urecheşti", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "27.08333000" + }, + { + "id": "96710", + "name": "Valea Arinilor", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.49793000", + "longitude": "26.50918000" + }, + { + "id": "96768", + "name": "Valea Șoșii", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46180000", + "longitude": "26.54992000" + }, + { + "id": "96766", + "name": "Valea lui Ion", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70350000", + "longitude": "26.62499000" + }, + { + "id": "96754", + "name": "Valea Seacă", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24281000", + "longitude": "27.04594000" + }, + { + "id": "96920", + "name": "Vâlcele", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29801000", + "longitude": "26.60005000" + }, + { + "id": "96793", + "name": "Verșești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44904000", + "longitude": "26.70183000" + }, + { + "id": "96790", + "name": "Vermești", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42172000", + "longitude": "26.47660000" + }, + { + "id": "96824", + "name": "Viișoara", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28325000", + "longitude": "26.66187000" + }, + { + "id": "96908", + "name": "Vultureni", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36667000", + "longitude": "27.28333000" + }, + { + "id": "96987", + "name": "Zemeş", + "state_id": 4744, + "state_code": "BC", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "26.41667000" + }, + { + "id": "90015", + "name": "Aştileu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "22.38333000" + }, + { + "id": "89873", + "name": "Abram", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "22.38333000" + }, + { + "id": "89876", + "name": "Abrămuţ", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "22.25000000" + }, + { + "id": "89922", + "name": "Albiș", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.39024000", + "longitude": "22.24528000" + }, + { + "id": "89930", + "name": "Aleşd", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "22.41667000" + }, + { + "id": "89939", + "name": "Alparea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03054000", + "longitude": "22.04812000" + }, + { + "id": "90005", + "name": "Auşeu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "22.50000000" + }, + { + "id": "90007", + "name": "Avram Iancu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66944000", + "longitude": "21.52417000" + }, + { + "id": "97050", + "name": "Şimian", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48333000", + "longitude": "22.10000000" + }, + { + "id": "97056", + "name": "Şinteu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "22.48333000" + }, + { + "id": "97066", + "name": "Şoimi", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68333000", + "longitude": "22.11667000" + }, + { + "id": "97093", + "name": "Şuncuiuş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "22.53333000" + }, + { + "id": "90039", + "name": "Balc", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "22.53333000" + }, + { + "id": "90071", + "name": "Batăr", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70000000", + "longitude": "21.81667000" + }, + { + "id": "90513", + "name": "Bălnaca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94384000", + "longitude": "22.57206000" + }, + { + "id": "90083", + "name": "Beiuş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66667000", + "longitude": "22.35000000" + }, + { + "id": "90123", + "name": "Beznea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95967000", + "longitude": "22.61954000" + }, + { + "id": "90131", + "name": "Biharia", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "21.91667000" + }, + { + "id": "90145", + "name": "Bistra", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25478000", + "longitude": "22.42295000" + }, + { + "id": "90196", + "name": "Bogei", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26550000", + "longitude": "22.36079000" + }, + { + "id": "90203", + "name": "Boianu Mare", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "22.53333000" + }, + { + "id": "90237", + "name": "Borş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "21.81667000" + }, + { + "id": "90231", + "name": "Borod", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "22.63333000" + }, + { + "id": "90274", + "name": "Bratca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "22.61667000" + }, + { + "id": "90316", + "name": "Brusturi", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "22.25000000" + }, + { + "id": "90387", + "name": "Budureasa", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66667000", + "longitude": "22.50000000" + }, + { + "id": "90388", + "name": "Buduslău", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40000000", + "longitude": "22.26667000" + }, + { + "id": "90404", + "name": "Bulz", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "22.68333000" + }, + { + "id": "90414", + "name": "Bunteşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61667000", + "longitude": "22.46667000" + }, + { + "id": "90423", + "name": "Burzuc", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15552000", + "longitude": "22.17096000" + }, + { + "id": "90560", + "name": "Cadea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31185000", + "longitude": "22.06225000" + }, + { + "id": "93794", + "name": "Câmpani", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51415000", + "longitude": "22.52186000" + }, + { + "id": "93795", + "name": "Câmpani de Pomezeu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80000000", + "longitude": "22.31667000" + }, + { + "id": "93823", + "name": "Căbeşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "22.36667000" + }, + { + "id": "93830", + "name": "Călacea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67687000", + "longitude": "21.93292000" + }, + { + "id": "93862", + "name": "Căpâlna", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73333000", + "longitude": "22.10000000" + }, + { + "id": "93869", + "name": "Cărpinet", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45000000", + "longitude": "22.48333000" + }, + { + "id": "90606", + "name": "Cefa", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "21.73333000" + }, + { + "id": "90611", + "name": "Ceica", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "22.18333000" + }, + { + "id": "90646", + "name": "Cetariu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13333000", + "longitude": "22.01667000" + }, + { + "id": "90661", + "name": "Cheț", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41943000", + "longitude": "22.33877000" + }, + { + "id": "90660", + "name": "Cheșereu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.42779000", + "longitude": "22.11416000" + }, + { + "id": "90656", + "name": "Cherechiu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "22.13333000" + }, + { + "id": "90688", + "name": "Chişlaz", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "22.23333000" + }, + { + "id": "90751", + "name": "Ciumeghiu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73333000", + "longitude": "21.58333000" + }, + { + "id": "90760", + "name": "Ciutelec", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26200000", + "longitude": "22.38690000" + }, + { + "id": "90778", + "name": "Cociuba Mare", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73333000", + "longitude": "22.00000000" + }, + { + "id": "90911", + "name": "Comuna Aştileu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02217000", + "longitude": "22.38444000" + }, + { + "id": "90818", + "name": "Comuna Abram", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32443000", + "longitude": "22.42023000" + }, + { + "id": "90819", + "name": "Comuna Abrămuţ", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33346000", + "longitude": "22.25607000" + }, + { + "id": "90903", + "name": "Comuna Auşeu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04398000", + "longitude": "22.50835000" + }, + { + "id": "90904", + "name": "Comuna Avram Iancu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66944000", + "longitude": "21.52417000" + }, + { + "id": "93521", + "name": "Comuna Şimian", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46477000", + "longitude": "22.05881000" + }, + { + "id": "93527", + "name": "Comuna Şinteu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.14585000", + "longitude": "22.50629000" + }, + { + "id": "93537", + "name": "Comuna Şoimi", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67063000", + "longitude": "22.13427000" + }, + { + "id": "93561", + "name": "Comuna Şuncuiuş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92521000", + "longitude": "22.53323000" + }, + { + "id": "93569", + "name": "Comuna Ţeţchea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03659000", + "longitude": "22.29798000" + }, + { + "id": "90923", + "name": "Comuna Balc", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31135000", + "longitude": "22.49954000" + }, + { + "id": "90940", + "name": "Comuna Batăr", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71431000", + "longitude": "21.79161000" + }, + { + "id": "90986", + "name": "Comuna Biharia", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16001000", + "longitude": "21.93299000" + }, + { + "id": "91033", + "name": "Comuna Boianu Mare", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37481000", + "longitude": "22.52507000" + }, + { + "id": "91056", + "name": "Comuna Borş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13073000", + "longitude": "21.83139000" + }, + { + "id": "91052", + "name": "Comuna Borod", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00503000", + "longitude": "22.60907000" + }, + { + "id": "91082", + "name": "Comuna Bratca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91794000", + "longitude": "22.61825000" + }, + { + "id": "91106", + "name": "Comuna Brusturi", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.14410000", + "longitude": "22.26514000" + }, + { + "id": "91149", + "name": "Comuna Budureasa", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66968000", + "longitude": "22.46418000" + }, + { + "id": "91150", + "name": "Comuna Buduslău", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.39559000", + "longitude": "22.25387000" + }, + { + "id": "91159", + "name": "Comuna Bulz", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85280000", + "longitude": "22.66659000" + }, + { + "id": "91168", + "name": "Comuna Bunteşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.60703000", + "longitude": "22.50202000" + }, + { + "id": "91542", + "name": "Comuna Câmpani", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52443000", + "longitude": "22.52744000" + }, + { + "id": "91565", + "name": "Comuna Cãpâlna", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73682000", + "longitude": "22.11114000" + }, + { + "id": "91566", + "name": "Comuna Căbeşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76593000", + "longitude": "22.37157000" + }, + { + "id": "91589", + "name": "Comuna Cărpinet", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44163000", + "longitude": "22.48917000" + }, + { + "id": "91275", + "name": "Comuna Cefa", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90898000", + "longitude": "21.69410000" + }, + { + "id": "91278", + "name": "Comuna Ceica", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86444000", + "longitude": "22.18165000" + }, + { + "id": "91303", + "name": "Comuna Cetariu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15015000", + "longitude": "22.05458000" + }, + { + "id": "91309", + "name": "Comuna Cherechiu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.39930000", + "longitude": "22.13550000" + }, + { + "id": "91329", + "name": "Comuna Chişlaz", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26657000", + "longitude": "22.23300000" + }, + { + "id": "91370", + "name": "Comuna Ciumeghiu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71025000", + "longitude": "21.62604000" + }, + { + "id": "91387", + "name": "Comuna Cociuba Mare", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72899000", + "longitude": "22.03966000" + }, + { + "id": "91417", + "name": "Comuna Copăcel", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.97234000", + "longitude": "22.16731000" + }, + { + "id": "91507", + "name": "Comuna Criștioru de Jos", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.42333000", + "longitude": "22.56565000" + }, + { + "id": "91532", + "name": "Comuna Curăţele", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70310000", + "longitude": "22.43719000" + }, + { + "id": "91531", + "name": "Comuna Curtuişeni", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53247000", + "longitude": "22.22961000" + }, + { + "id": "91615", + "name": "Comuna Derna", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20800000", + "longitude": "22.28821000" + }, + { + "id": "91628", + "name": "Comuna Diosig", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29561000", + "longitude": "21.99354000" + }, + { + "id": "91635", + "name": "Comuna Dobreşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84465000", + "longitude": "22.26931000" + }, + { + "id": "91700", + "name": "Comuna Drăgăneşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63469000", + "longitude": "22.40824000" + }, + { + "id": "91687", + "name": "Comuna Drăgeşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90374000", + "longitude": "22.12533000" + }, + { + "id": "91766", + "name": "Comuna Finiş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.64312000", + "longitude": "22.27621000" + }, + { + "id": "91839", + "name": "Comuna Gepiu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91616000", + "longitude": "21.78903000" + }, + { + "id": "91870", + "name": "Comuna Girişu de Criş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07118000", + "longitude": "21.76861000" + }, + { + "id": "92000", + "name": "Comuna Hidişelu De Sus", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92893000", + "longitude": "22.02467000" + }, + { + "id": "92010", + "name": "Comuna Holod", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79584000", + "longitude": "22.11471000" + }, + { + "id": "92030", + "name": "Comuna Husasău de Tinca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84896000", + "longitude": "21.91914000" + }, + { + "id": "92080", + "name": "Comuna Ineu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09119000", + "longitude": "22.10816000" + }, + { + "id": "92142", + "name": "Comuna Lazuri de Beiuş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59381000", + "longitude": "22.39675000" + }, + { + "id": "92226", + "name": "Comuna Lăzăreni", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85956000", + "longitude": "22.06685000" + }, + { + "id": "92193", + "name": "Comuna Lugaşu De Jos", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06992000", + "longitude": "22.32929000" + }, + { + "id": "92198", + "name": "Comuna Lunca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51645000", + "longitude": "22.45486000" + }, + { + "id": "92384", + "name": "Comuna Mădăraş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84296000", + "longitude": "21.72080000" + }, + { + "id": "92386", + "name": "Comuna Măgeşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00929000", + "longitude": "22.45330000" + }, + { + "id": "92452", + "name": "Comuna Nojorid", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.97144000", + "longitude": "21.87747000" + }, + { + "id": "92525", + "name": "Comuna Oşorhei", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02748000", + "longitude": "22.04490000" + }, + { + "id": "92495", + "name": "Comuna Olcea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66090000", + "longitude": "21.98452000" + }, + { + "id": "92531", + "name": "Comuna Paleu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10762000", + "longitude": "21.97748000" + }, + { + "id": "92578", + "name": "Comuna Pietroasa", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58383000", + "longitude": "22.63371000" + }, + { + "id": "92610", + "name": "Comuna Pocola", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69894000", + "longitude": "22.29593000" + }, + { + "id": "92647", + "name": "Comuna Pomezeu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79113000", + "longitude": "22.30018000" + }, + { + "id": "92653", + "name": "Comuna Popeşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22088000", + "longitude": "22.41515000" + }, + { + "id": "92834", + "name": "Comuna Răbăgani", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75432000", + "longitude": "22.24302000" + }, + { + "id": "92763", + "name": "Comuna Remetea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72956000", + "longitude": "22.35276000" + }, + { + "id": "92771", + "name": "Comuna Rieni", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56878000", + "longitude": "22.44508000" + }, + { + "id": "92795", + "name": "Comuna Roşia", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79896000", + "longitude": "22.40529000" + }, + { + "id": "92803", + "name": "Comuna Roşiori", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25579000", + "longitude": "21.96166000" + }, + { + "id": "93046", + "name": "Comuna Sâmbăta", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79819000", + "longitude": "22.20489000" + }, + { + "id": "93054", + "name": "Comuna Sâniob", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24558000", + "longitude": "22.12533000" + }, + { + "id": "93056", + "name": "Comuna Sânmartin", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99058000", + "longitude": "21.98565000" + }, + { + "id": "93061", + "name": "Comuna Sânnicolau-Român", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96414000", + "longitude": "21.71886000" + }, + { + "id": "93066", + "name": "Comuna Sântandrei", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06498000", + "longitude": "21.83947000" + }, + { + "id": "93072", + "name": "Comuna Sârbi", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19030000", + "longitude": "22.13789000" + }, + { + "id": "93085", + "name": "Comuna Săcădat", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04710000", + "longitude": "22.15892000" + }, + { + "id": "93091", + "name": "Comuna Sălacea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.44844000", + "longitude": "22.27208000" + }, + { + "id": "93092", + "name": "Comuna Sălard", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23151000", + "longitude": "22.02068000" + }, + { + "id": "92983", + "name": "Comuna Spinuş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20209000", + "longitude": "22.20217000" + }, + { + "id": "93033", + "name": "Comuna Suplacu de Barcău", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24335000", + "longitude": "22.49235000" + }, + { + "id": "93125", + "name": "Comuna Tarcea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45767000", + "longitude": "22.18937000" + }, + { + "id": "93234", + "name": "Comuna Tãmãşeu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22096000", + "longitude": "21.90399000" + }, + { + "id": "93239", + "name": "Comuna Tărcaia", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61041000", + "longitude": "22.36364000" + }, + { + "id": "93250", + "name": "Comuna Tăuteu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28131000", + "longitude": "22.35612000" + }, + { + "id": "93153", + "name": "Comuna Tileagd", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06556000", + "longitude": "22.20707000" + }, + { + "id": "93156", + "name": "Comuna Tinca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76310000", + "longitude": "21.93640000" + }, + { + "id": "93161", + "name": "Comuna Toboliu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04042000", + "longitude": "21.70320000" + }, + { + "id": "93203", + "name": "Comuna Tulca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78881000", + "longitude": "21.79763000" + }, + { + "id": "93255", + "name": "Comuna Uileacu de Beiuş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70215000", + "longitude": "22.22417000" + }, + { + "id": "93290", + "name": "Comuna Vadu Crişului", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.97192000", + "longitude": "22.50274000" + }, + { + "id": "93438", + "name": "Comuna Vârciorog", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96551000", + "longitude": "22.29681000" + }, + { + "id": "93360", + "name": "Comuna Viişoara", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "22.45000000" + }, + { + "id": "93602", + "name": "Copăcel", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "22.16667000" + }, + { + "id": "93625", + "name": "Cordău", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "21.98333000" + }, + { + "id": "93736", + "name": "Criştioru de Jos", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41937000", + "longitude": "22.53457000" + }, + { + "id": "93755", + "name": "Cubulcut", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32270000", + "longitude": "22.18648000" + }, + { + "id": "93779", + "name": "Curăţele", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70000000", + "longitude": "22.41667000" + }, + { + "id": "93778", + "name": "Curtuișeni", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.54633000", + "longitude": "22.20263000" + }, + { + "id": "93787", + "name": "Cuzap", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20288000", + "longitude": "22.41523000" + }, + { + "id": "93922", + "name": "Derna", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "22.30000000" + }, + { + "id": "93938", + "name": "Diosig", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "22.00000000" + }, + { + "id": "93953", + "name": "Dobreşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "22.30000000" + }, + { + "id": "94059", + "name": "Drăgăneşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61667000", + "longitude": "22.38333000" + }, + { + "id": "94037", + "name": "Drăgeşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88333000", + "longitude": "22.13333000" + }, + { + "id": "97123", + "name": "Șilindru", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43725000", + "longitude": "22.04683000" + }, + { + "id": "97134", + "name": "Ștei", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53333000", + "longitude": "22.45000000" + }, + { + "id": "94178", + "name": "Finiş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63333000", + "longitude": "22.31667000" + }, + { + "id": "94195", + "name": "Foglaş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25000000", + "longitude": "22.53333000" + }, + { + "id": "94199", + "name": "Forău", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71070000", + "longitude": "22.20113000" + }, + { + "id": "94280", + "name": "Galoșpetreu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48345000", + "longitude": "22.21730000" + }, + { + "id": "94294", + "name": "Gepiu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93034000", + "longitude": "21.79016000" + }, + { + "id": "94319", + "name": "Ghighișeni", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55141000", + "longitude": "22.43148000" + }, + { + "id": "94332", + "name": "Ghiorac", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71340000", + "longitude": "21.68309000" + }, + { + "id": "94346", + "name": "Girișu de Criș", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06416000", + "longitude": "21.76108000" + }, + { + "id": "94427", + "name": "Groși", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04525000", + "longitude": "22.47965000" + }, + { + "id": "94471", + "name": "Gurbediu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79379000", + "longitude": "21.86480000" + }, + { + "id": "94535", + "name": "Hidişelu de Sus", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "22.05000000" + }, + { + "id": "94550", + "name": "Holod", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "22.13333000" + }, + { + "id": "94569", + "name": "Hotar", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01967000", + "longitude": "22.28515000" + }, + { + "id": "94584", + "name": "Husasău de Tinca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "21.91667000" + }, + { + "id": "94622", + "name": "Ianoșda", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83791000", + "longitude": "21.80778000" + }, + { + "id": "94668", + "name": "Ineu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08333000", + "longitude": "22.11667000" + }, + { + "id": "94767", + "name": "Lazuri de Beiuş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "22.40000000" + }, + { + "id": "94901", + "name": "Lăzăreni", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86667000", + "longitude": "22.06667000" + }, + { + "id": "94815", + "name": "Livada de Bihor", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01039000", + "longitude": "21.80836000" + }, + { + "id": "94845", + "name": "Lugaşu de Jos", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "22.35000000" + }, + { + "id": "94854", + "name": "Lunca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51667000", + "longitude": "22.46667000" + }, + { + "id": "94878", + "name": "Luncșoara", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03663000", + "longitude": "22.54213000" + }, + { + "id": "94928", + "name": "Marghita", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "22.33333000" + }, + { + "id": "95234", + "name": "Mădăraş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "21.68333000" + }, + { + "id": "95237", + "name": "Măgeşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "22.45000000" + }, + { + "id": "94963", + "name": "Meziad", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.74090000", + "longitude": "22.42846000" + }, + { + "id": "95036", + "name": "Mișca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26291000", + "longitude": "22.25914000" + }, + { + "id": "94974", + "name": "Mihai Bravu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25780000", + "longitude": "21.93811000" + }, + { + "id": "95112", + "name": "Municipiul Beiuş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68074000", + "longitude": "22.34566000" + }, + { + "id": "95153", + "name": "Municipiul Marghita", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34534000", + "longitude": "22.33452000" + }, + { + "id": "95163", + "name": "Municipiul Oradea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05353000", + "longitude": "21.93633000" + }, + { + "id": "95177", + "name": "Municipiul Salonta", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80283000", + "longitude": "21.66415000" + }, + { + "id": "95354", + "name": "Nojorid", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "21.88333000" + }, + { + "id": "95360", + "name": "Nucet", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48732000", + "longitude": "22.55850000" + }, + { + "id": "95691", + "name": "Oșorhei", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "22.05000000" + }, + { + "id": "95426", + "name": "Olcea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68333000", + "longitude": "21.98333000" + }, + { + "id": "95631", + "name": "Oraş Ştei", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53767000", + "longitude": "22.45795000" + }, + { + "id": "95552", + "name": "Oraş Nucet", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48496000", + "longitude": "22.58901000" + }, + { + "id": "95598", + "name": "Oraş Sãcueni", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32996000", + "longitude": "22.11802000" + }, + { + "id": "95615", + "name": "Oraş Vaşcãu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47493000", + "longitude": "22.46292000" + }, + { + "id": "95614", + "name": "Oraş Valea Lui Mihai", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52099000", + "longitude": "22.13196000" + }, + { + "id": "95445", + "name": "Oradea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04580000", + "longitude": "21.91833000" + }, + { + "id": "95635", + "name": "Oraș Aleşd", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08772000", + "longitude": "22.41384000" + }, + { + "id": "95701", + "name": "Paleu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11531000", + "longitude": "21.95929000" + }, + { + "id": "96005", + "name": "Pădurea Neagră", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16554000", + "longitude": "22.41323000" + }, + { + "id": "95764", + "name": "Peștiș", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07252000", + "longitude": "22.41226000" + }, + { + "id": "95745", + "name": "Petreu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33738000", + "longitude": "22.29607000" + }, + { + "id": "95784", + "name": "Pietroasa", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "22.55000000" + }, + { + "id": "95840", + "name": "Pocola", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68333000", + "longitude": "22.28333000" + }, + { + "id": "95902", + "name": "Pomezeu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "22.28333000" + }, + { + "id": "95911", + "name": "Popeşti", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "22.41667000" + }, + { + "id": "96181", + "name": "Răbăgani", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75000000", + "longitude": "22.23333000" + }, + { + "id": "96082", + "name": "Remetea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73333000", + "longitude": "22.35000000" + }, + { + "id": "96093", + "name": "Rieni", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.57485000", + "longitude": "22.44584000" + }, + { + "id": "96127", + "name": "Roşia", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80000000", + "longitude": "22.40000000" + }, + { + "id": "96138", + "name": "Roșiori", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25677000", + "longitude": "21.95209000" + }, + { + "id": "96236", + "name": "Salonta", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80000000", + "longitude": "21.65000000" + }, + { + "id": "96519", + "name": "Sâmbăta", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80173000", + "longitude": "22.20357000" + }, + { + "id": "96531", + "name": "Sâniob", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26461000", + "longitude": "22.12778000" + }, + { + "id": "96541", + "name": "Sânnicolau Român", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96101000", + "longitude": "21.71466000" + }, + { + "id": "105977", + "name": "Sântandrei", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06615000", + "longitude": "21.85352000" + }, + { + "id": "105980", + "name": "Sântion", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09634000", + "longitude": "21.83660000" + }, + { + "id": "105984", + "name": "Sârbi", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19315000", + "longitude": "22.12215000" + }, + { + "id": "105987", + "name": "Sînmartin", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00726000", + "longitude": "21.97418000" + }, + { + "id": "105999", + "name": "Săcădat", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "22.15000000" + }, + { + "id": "105997", + "name": "Săcueni", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "22.10000000" + }, + { + "id": "106005", + "name": "Sălacea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "22.31667000" + }, + { + "id": "106006", + "name": "Sălard", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21667000", + "longitude": "22.05000000" + }, + { + "id": "96416", + "name": "Spinuş", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "22.20000000" + }, + { + "id": "96502", + "name": "Suplacu de Barcău", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25729000", + "longitude": "22.53195000" + }, + { + "id": "106054", + "name": "Talpoș", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69124000", + "longitude": "21.80335000" + }, + { + "id": "106059", + "name": "Tarcea", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45000000", + "longitude": "22.18333000" + }, + { + "id": "96631", + "name": "Tășad", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93773000", + "longitude": "22.12516000" + }, + { + "id": "96605", + "name": "Tămașda", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.64453000", + "longitude": "21.55685000" + }, + { + "id": "96608", + "name": "Tămășeu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22116000", + "longitude": "21.92760000" + }, + { + "id": "96610", + "name": "Tărcaia", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63333000", + "longitude": "22.36667000" + }, + { + "id": "96626", + "name": "Tăut", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71990000", + "longitude": "21.83845000" + }, + { + "id": "96627", + "name": "Tăuteu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26667000", + "longitude": "22.33333000" + }, + { + "id": "106099", + "name": "Tileagd", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "22.20000000" + }, + { + "id": "106103", + "name": "Tinca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.77529000", + "longitude": "21.93300000" + }, + { + "id": "106112", + "name": "Toboliu", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04182000", + "longitude": "21.71946000" + }, + { + "id": "106172", + "name": "Tulca", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "21.78333000" + }, + { + "id": "96640", + "name": "Uileacu de Beiuș", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68532000", + "longitude": "22.22148000" + }, + { + "id": "96779", + "name": "Vaşcău", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "22.46667000" + }, + { + "id": "96695", + "name": "Vadu Crişului", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "22.51667000" + }, + { + "id": "96767", + "name": "Valea lui Mihai", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "22.15000000" + }, + { + "id": "96936", + "name": "Vârciorog", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96667000", + "longitude": "22.30000000" + }, + { + "id": "96977", + "name": "Vășad", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51860000", + "longitude": "22.25660000" + }, + { + "id": "96823", + "name": "Viişoara", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "22.45000000" + }, + { + "id": "96833", + "name": "Vintere", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76883000", + "longitude": "22.14652000" + }, + { + "id": "96886", + "name": "Voivozi", + "state_id": 4723, + "state_code": "BH", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21562000", + "longitude": "22.39024000" + }, + { + "id": "89899", + "name": "Agrieș", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40022000", + "longitude": "24.13491000" + }, + { + "id": "89961", + "name": "Anieș", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41347000", + "longitude": "24.76853000" + }, + { + "id": "97044", + "name": "Şieu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "24.60000000" + }, + { + "id": "97045", + "name": "Şieu-Măgheruş", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08333000", + "longitude": "24.38333000" + }, + { + "id": "97046", + "name": "Şieu-Odorhei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15194000", + "longitude": "24.29159000" + }, + { + "id": "97047", + "name": "Şieuţ", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "24.65000000" + }, + { + "id": "97055", + "name": "Şintereag", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18333000", + "longitude": "24.30000000" + }, + { + "id": "90080", + "name": "Beclean", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18333000", + "longitude": "24.18333000" + }, + { + "id": "90129", + "name": "Bichigiu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.42522000", + "longitude": "24.33893000" + }, + { + "id": "90147", + "name": "Bistriţa", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13316000", + "longitude": "24.50011000" + }, + { + "id": "90148", + "name": "Bistriţa Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21667000", + "longitude": "24.76667000" + }, + { + "id": "90268", + "name": "Braniştea", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "24.06667000" + }, + { + "id": "90284", + "name": "Breaza", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35108000", + "longitude": "24.06220000" + }, + { + "id": "90376", + "name": "Budacu de Jos", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08333000", + "longitude": "24.51667000" + }, + { + "id": "90377", + "name": "Budacu de Sus", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06118000", + "longitude": "24.65752000" + }, + { + "id": "90383", + "name": "Budeşti", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88333000", + "longitude": "24.25000000" + }, + { + "id": "93827", + "name": "Căianu Mic", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "24.15000000" + }, + { + "id": "90671", + "name": "Chiochiş", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "24.18333000" + }, + { + "id": "90686", + "name": "Chiuza", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "24.25000000" + }, + { + "id": "90695", + "name": "Ciceu-Giurgeşti", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25000000", + "longitude": "24.01667000" + }, + { + "id": "90696", + "name": "Ciceu-Mihăiești", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18568000", + "longitude": "23.97480000" + }, + { + "id": "90735", + "name": "Cireșoaia", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.14265000", + "longitude": "24.06217000" + }, + { + "id": "93688", + "name": "Coşbuc", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36540000", + "longitude": "24.39115000" + }, + { + "id": "90777", + "name": "Cociu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19926000", + "longitude": "24.23238000" + }, + { + "id": "93499", + "name": "Comuna Şanţ", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45266000", + "longitude": "24.91842000" + }, + { + "id": "93514", + "name": "Comuna Şieu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01244000", + "longitude": "24.62425000" + }, + { + "id": "93516", + "name": "Comuna Şieu-Măgheruş", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08975000", + "longitude": "24.37651000" + }, + { + "id": "93517", + "name": "Comuna Şieu-Odorhei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13288000", + "longitude": "24.26856000" + }, + { + "id": "93518", + "name": "Comuna Şieuţ", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99880000", + "longitude": "24.67935000" + }, + { + "id": "93526", + "name": "Comuna Şintereag", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16796000", + "longitude": "24.31655000" + }, + { + "id": "90998", + "name": "Comuna Bistriţa Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19026000", + "longitude": "24.83429000" + }, + { + "id": "91077", + "name": "Comuna Braniştea", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16250000", + "longitude": "24.07815000" + }, + { + "id": "91143", + "name": "Comuna Budacu de Jos", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08214000", + "longitude": "24.51840000" + }, + { + "id": "91146", + "name": "Comuna Budeşti", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83403000", + "longitude": "24.23802000" + }, + { + "id": "91568", + "name": "Comuna Căianu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25389000", + "longitude": "24.13440000" + }, + { + "id": "91317", + "name": "Comuna Chiochiş", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98381000", + "longitude": "24.18318000" + }, + { + "id": "91328", + "name": "Comuna Chiuza", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24007000", + "longitude": "24.24001000" + }, + { + "id": "91331", + "name": "Comuna Ciceu-Giurgeşti", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26529000", + "longitude": "24.00380000" + }, + { + "id": "91332", + "name": "Comuna Ciceu-Mihăieşti", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21738000", + "longitude": "23.95696000" + }, + { + "id": "91472", + "name": "Comuna Coşbuc", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36544000", + "longitude": "24.39220000" + }, + { + "id": "91722", + "name": "Comuna Dumitra", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21675000", + "longitude": "24.43434000" + }, + { + "id": "91724", + "name": "Comuna Dumitriţa", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06781000", + "longitude": "24.63503000" + }, + { + "id": "91755", + "name": "Comuna Feldru", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27796000", + "longitude": "24.56415000" + }, + { + "id": "91827", + "name": "Comuna Galaţii Bistriţei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99307000", + "longitude": "24.42153000" + }, + { + "id": "92075", + "name": "Comuna Ilva Mare", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35100000", + "longitude": "24.89630000" + }, + { + "id": "92076", + "name": "Comuna Ilva Mică", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30760000", + "longitude": "24.66035000" + }, + { + "id": "92131", + "name": "Comuna Josenii Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21238000", + "longitude": "24.66351000" + }, + { + "id": "92160", + "name": "Comuna Leşu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31077000", + "longitude": "24.76369000" + }, + { + "id": "92143", + "name": "Comuna Lechinţa", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01983000", + "longitude": "24.32605000" + }, + { + "id": "92177", + "name": "Comuna Livezile", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.17744000", + "longitude": "24.63595000" + }, + { + "id": "92204", + "name": "Comuna Lunca Ilvei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36409000", + "longitude": "24.97106000" + }, + { + "id": "92247", + "name": "Comuna Matei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99930000", + "longitude": "24.26029000" + }, + { + "id": "92391", + "name": "Comuna Măgura Ilvei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36625000", + "longitude": "24.82185000" + }, + { + "id": "92395", + "name": "Comuna Măieru", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40738000", + "longitude": "24.75680000" + }, + { + "id": "92412", + "name": "Comuna Mărişelu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01066000", + "longitude": "24.51260000" + }, + { + "id": "92265", + "name": "Comuna Miceştii de Câmpie", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84309000", + "longitude": "24.31568000" + }, + { + "id": "92287", + "name": "Comuna Milas", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82249000", + "longitude": "24.43371000" + }, + { + "id": "92330", + "name": "Comuna Monor", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95475000", + "longitude": "24.70106000" + }, + { + "id": "92436", + "name": "Comuna Negrileşti", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31054000", + "longitude": "24.05557000" + }, + { + "id": "92448", + "name": "Comuna Nimigea", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24697000", + "longitude": "24.30623000" + }, + { + "id": "92458", + "name": "Comuna Nuşeni", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09063000", + "longitude": "24.17525000" + }, + { + "id": "92540", + "name": "Comuna Parva", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.39601000", + "longitude": "24.54218000" + }, + { + "id": "92568", + "name": "Comuna Petru Rareş", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19221000", + "longitude": "24.00731000" + }, + { + "id": "92624", + "name": "Comuna Poiana Ilvei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35749000", + "longitude": "24.74104000" + }, + { + "id": "92686", + "name": "Comuna Prundu Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22154000", + "longitude": "24.72450000" + }, + { + "id": "92854", + "name": "Comuna Războeni-Cetate", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11072000", + "longitude": "24.62878000" + }, + { + "id": "92750", + "name": "Comuna Rebra", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32588000", + "longitude": "24.49984000" + }, + { + "id": "92752", + "name": "Comuna Rebrişoara", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31994000", + "longitude": "24.46568000" + }, + { + "id": "92777", + "name": "Comuna Rodna", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45140000", + "longitude": "24.82366000" + }, + { + "id": "92784", + "name": "Comuna Romuli", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56247000", + "longitude": "24.42897000" + }, + { + "id": "92813", + "name": "Comuna Runcu Salvei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34382000", + "longitude": "24.32529000" + }, + { + "id": "92868", + "name": "Comuna Salva", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30586000", + "longitude": "24.35557000" + }, + { + "id": "93059", + "name": "Comuna Sânmihaiu de Câmpie", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.89640000", + "longitude": "24.34323000" + }, + { + "id": "92929", + "name": "Comuna Silivaşu De Câmpie", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78127000", + "longitude": "24.29155000" + }, + { + "id": "92981", + "name": "Comuna Spermezeu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "24.15000000" + }, + { + "id": "93227", + "name": "Comuna Târlişua", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40584000", + "longitude": "24.16514000" + }, + { + "id": "93131", + "name": "Comuna Teaca", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91151000", + "longitude": "24.47653000" + }, + { + "id": "93135", + "name": "Comuna Telciu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45070000", + "longitude": "24.39396000" + }, + { + "id": "93152", + "name": "Comuna Tiha Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23676000", + "longitude": "24.87913000" + }, + { + "id": "93283", + "name": "Comuna Uriu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21202000", + "longitude": "24.07755000" + }, + { + "id": "93284", + "name": "Comuna Urmeniş", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79559000", + "longitude": "24.35923000" + }, + { + "id": "93469", + "name": "Comuna Zagra", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37083000", + "longitude": "24.26057000" + }, + { + "id": "93629", + "name": "Cormaia", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36667000", + "longitude": "24.68333000" + }, + { + "id": "93721", + "name": "Cristeștii Ciceului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19326000", + "longitude": "24.09605000" + }, + { + "id": "93957", + "name": "Dobric", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24690000", + "longitude": "24.12777000" + }, + { + "id": "94097", + "name": "Dumitra", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21667000", + "longitude": "24.48333000" + }, + { + "id": "94100", + "name": "Dumitrița", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07143000", + "longitude": "24.62579000" + }, + { + "id": "97113", + "name": "Șanț", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45000000", + "longitude": "24.90000000" + }, + { + "id": "94153", + "name": "Feldru", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "24.60000000" + }, + { + "id": "94216", + "name": "Frunzi", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90000000", + "longitude": "24.33333000" + }, + { + "id": "94273", + "name": "Galaţii Bistriţei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "24.40000000" + }, + { + "id": "94661", + "name": "Ilva Mare", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36667000", + "longitude": "24.90000000" + }, + { + "id": "94662", + "name": "Ilva Mică", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "24.66667000" + }, + { + "id": "94749", + "name": "Josenii Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21667000", + "longitude": "24.68333000" + }, + { + "id": "94790", + "name": "Leşu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "24.75000000" + }, + { + "id": "94768", + "name": "Lechinţa", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "24.35000000" + }, + { + "id": "94825", + "name": "Livezile", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18333000", + "longitude": "24.56667000" + }, + { + "id": "94865", + "name": "Lunca Ilvei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36667000", + "longitude": "24.98333000" + }, + { + "id": "94867", + "name": "Lunca Leșului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30943000", + "longitude": "24.77602000" + }, + { + "id": "94936", + "name": "Matei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "24.26667000" + }, + { + "id": "95242", + "name": "Măgura Ilvei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "24.80000000" + }, + { + "id": "95249", + "name": "Măieru", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40000000", + "longitude": "24.75000000" + }, + { + "id": "95277", + "name": "Mărişelu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "24.51667000" + }, + { + "id": "94966", + "name": "Miceştii de Câmpie", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86667000", + "longitude": "24.31667000" + }, + { + "id": "94999", + "name": "Mijlocenii Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21592000", + "longitude": "24.68936000" + }, + { + "id": "95000", + "name": "Milaş", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "24.43333000" + }, + { + "id": "95069", + "name": "Monor", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96667000", + "longitude": "24.70000000" + }, + { + "id": "95113", + "name": "Municipiul Bistriţa", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13499000", + "longitude": "24.49115000" + }, + { + "id": "95376", + "name": "Năsăud", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "24.40000000" + }, + { + "id": "95322", + "name": "Negrilești", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27068000", + "longitude": "24.04936000" + }, + { + "id": "95328", + "name": "Nepos", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27750000", + "longitude": "24.53320000" + }, + { + "id": "95345", + "name": "Nimigea de Jos", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25357000", + "longitude": "24.30084000" + }, + { + "id": "95346", + "name": "Nimigea de Sus", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "24.31667000" + }, + { + "id": "95365", + "name": "Nuşeni", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10000000", + "longitude": "24.20000000" + }, + { + "id": "95401", + "name": "Ocnița", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86266000", + "longitude": "24.48677000" + }, + { + "id": "95460", + "name": "Oraş Beclean", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16124000", + "longitude": "24.17385000" + }, + { + "id": "95554", + "name": "Oraş Nãsãud", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27491000", + "longitude": "24.41483000" + }, + { + "id": "95595", + "name": "Oraş Sângeorz-Bãi", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37780000", + "longitude": "24.66979000" + }, + { + "id": "95715", + "name": "Parva", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40000000", + "longitude": "24.55000000" + }, + { + "id": "95754", + "name": "Petriș", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10301000", + "longitude": "24.62314000" + }, + { + "id": "95874", + "name": "Poiana Ilvei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35749000", + "longitude": "24.74104000" + }, + { + "id": "95967", + "name": "Prundu Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21975000", + "longitude": "24.74123000" + }, + { + "id": "96204", + "name": "Răpănaşu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "24.18333000" + }, + { + "id": "96064", + "name": "Rebra", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "24.50000000" + }, + { + "id": "96066", + "name": "Rebrişoara", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "24.45000000" + }, + { + "id": "96088", + "name": "Reteag", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19582000", + "longitude": "24.01862000" + }, + { + "id": "96099", + "name": "Rodna", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41667000", + "longitude": "24.81667000" + }, + { + "id": "96108", + "name": "Romuli", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "24.43333000" + }, + { + "id": "96155", + "name": "Runcu Salvei", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34382000", + "longitude": "24.32529000" + }, + { + "id": "96237", + "name": "Salva", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "24.35000000" + }, + { + "id": "96529", + "name": "Sângeorz-Băi", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36850000", + "longitude": "24.67212000" + }, + { + "id": "96536", + "name": "Sânmihaiu de Câmpie", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.89257000", + "longitude": "24.33589000" + }, + { + "id": "96338", + "name": "Silivașu de Câmpie", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "24.30000000" + }, + { + "id": "96415", + "name": "Spermezeu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "24.15000000" + }, + { + "id": "96513", + "name": "Susenii Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22311000", + "longitude": "24.70730000" + }, + { + "id": "96592", + "name": "Târlişua", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "24.18333000" + }, + { + "id": "106066", + "name": "Teaca", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "24.51667000" + }, + { + "id": "106076", + "name": "Telcișor", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46000000", + "longitude": "24.45158000" + }, + { + "id": "106075", + "name": "Telciu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43333000", + "longitude": "24.40000000" + }, + { + "id": "106097", + "name": "Tiha Bârgăului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "24.76667000" + }, + { + "id": "96560", + "name": "Tureac", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22967000", + "longitude": "24.80589000" + }, + { + "id": "96667", + "name": "Unirea", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16060000", + "longitude": "24.53078000" + }, + { + "id": "96678", + "name": "Uriu", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "24.05000000" + }, + { + "id": "96682", + "name": "Urmeniş", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "24.36667000" + }, + { + "id": "96712", + "name": "Valea Borcutului", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37483000", + "longitude": "24.65293000" + }, + { + "id": "96825", + "name": "Viișoara", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10332000", + "longitude": "24.44949000" + }, + { + "id": "96817", + "name": "Viile Tecii", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "24.48333000" + }, + { + "id": "96980", + "name": "Zagra", + "state_id": 4733, + "state_code": "BN", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33333000", + "longitude": "24.28333000" + }, + { + "id": "89889", + "name": "Adășeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.06920000", + "longitude": "26.93789000" + }, + { + "id": "89909", + "name": "Alba", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.15859000", + "longitude": "26.47736000" + }, + { + "id": "89916", + "name": "Albeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "27.06667000" + }, + { + "id": "90009", + "name": "Avrămeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.01667000", + "longitude": "26.95000000" + }, + { + "id": "97038", + "name": "Şendriceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95171000", + "longitude": "26.32817000" + }, + { + "id": "97086", + "name": "Ştefăneşti-Sat", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78333000", + "longitude": "27.18333000" + }, + { + "id": "97088", + "name": "Ştiubieni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96667000", + "longitude": "26.78333000" + }, + { + "id": "90035", + "name": "Bajura", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.20119000", + "longitude": "26.53987000" + }, + { + "id": "90057", + "name": "Baranca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.19651000", + "longitude": "26.47893000" + }, + { + "id": "90517", + "name": "Băluşeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66667000", + "longitude": "26.80000000" + }, + { + "id": "90160", + "name": "Blândeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "26.86667000" + }, + { + "id": "90173", + "name": "Bobulești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75135000", + "longitude": "27.22697000" + }, + { + "id": "90248", + "name": "Botoşani", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75000000", + "longitude": "26.66667000" + }, + { + "id": "90328", + "name": "Brăeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86667000", + "longitude": "26.45000000" + }, + { + "id": "90296", + "name": "Brehuiești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70194000", + "longitude": "26.54472000" + }, + { + "id": "90307", + "name": "Broscăuţi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95000000", + "longitude": "26.45000000" + }, + { + "id": "90343", + "name": "Bucecea", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76667000", + "longitude": "26.43333000" + }, + { + "id": "90359", + "name": "Bucovineni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.85000000", + "longitude": "26.33333000" + }, + { + "id": "93806", + "name": "Cândeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93333000", + "longitude": "26.20000000" + }, + { + "id": "93849", + "name": "Călăraşi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "27.26667000" + }, + { + "id": "93881", + "name": "Cătămărești-Deal", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76999000", + "longitude": "26.59897000" + }, + { + "id": "93696", + "name": "Coţuşca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.13333000", + "longitude": "26.85000000" + }, + { + "id": "93699", + "name": "Coșula", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.62570000", + "longitude": "26.77827000" + }, + { + "id": "90826", + "name": "Comuna Adăşeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.06287000", + "longitude": "26.95205000" + }, + { + "id": "90839", + "name": "Comuna Albeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68387000", + "longitude": "27.08704000" + }, + { + "id": "90906", + "name": "Comuna Avrămeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.02439000", + "longitude": "26.95734000" + }, + { + "id": "93507", + "name": "Comuna Şendriceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.94657000", + "longitude": "26.32957000" + }, + { + "id": "93556", + "name": "Comuna Ştiubieni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.97903000", + "longitude": "26.76420000" + }, + { + "id": "91220", + "name": "Comuna Băluşeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.67758000", + "longitude": "26.77855000" + }, + { + "id": "91004", + "name": "Comuna Blândeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71218000", + "longitude": "26.89193000" + }, + { + "id": "91119", + "name": "Comuna Brăeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84903000", + "longitude": "26.45715000" + }, + { + "id": "91102", + "name": "Comuna Broscăuţi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95596000", + "longitude": "26.46648000" + }, + { + "id": "91547", + "name": "Comuna Cândeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92325000", + "longitude": "26.22050000" + }, + { + "id": "91576", + "name": "Comuna Călăraşi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60340000", + "longitude": "27.27766000" + }, + { + "id": "91479", + "name": "Comuna Coşula", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61915000", + "longitude": "26.78553000" + }, + { + "id": "91483", + "name": "Comuna Coţuşca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.12109000", + "longitude": "26.87179000" + }, + { + "id": "91411", + "name": "Comuna Conceşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.14676000", + "longitude": "26.57937000" + }, + { + "id": "91421", + "name": "Comuna Copălău", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61120000", + "longitude": "26.86778000" + }, + { + "id": "91433", + "name": "Comuna Corlăteni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93121000", + "longitude": "26.58515000" + }, + { + "id": "91441", + "name": "Comuna Corni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.64025000", + "longitude": "26.60869000" + }, + { + "id": "91497", + "name": "Comuna Cristeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61482000", + "longitude": "26.71546000" + }, + { + "id": "91500", + "name": "Comuna Cristineşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.10199000", + "longitude": "26.36951000" + }, + { + "id": "91529", + "name": "Comuna Curteşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70275000", + "longitude": "26.64109000" + }, + { + "id": "91727", + "name": "Comuna Dângeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84762000", + "longitude": "26.94817000" + }, + { + "id": "91616", + "name": "Comuna Dersca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98958000", + "longitude": "26.21496000" + }, + { + "id": "91627", + "name": "Comuna Dimăcheni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91832000", + "longitude": "26.54362000" + }, + { + "id": "91646", + "name": "Comuna Dobârceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83289000", + "longitude": "27.07611000" + }, + { + "id": "91696", + "name": "Comuna Drăguşeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.03290000", + "longitude": "26.81987000" + }, + { + "id": "91725", + "name": "Comuna Durneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76992000", + "longitude": "27.09406000" + }, + { + "id": "91788", + "name": "Comuna Frumuşica", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52602000", + "longitude": "26.87967000" + }, + { + "id": "91838", + "name": "Comuna George Enescu", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.03617000", + "longitude": "26.51437000" + }, + { + "id": "91901", + "name": "Comuna Gorbăneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.77450000", + "longitude": "26.88143000" + }, + { + "id": "91993", + "name": "Comuna Havârna", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.05683000", + "longitude": "26.68314000" + }, + { + "id": "92041", + "name": "Comuna Hăneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91987000", + "longitude": "27.01151000" + }, + { + "id": "92001", + "name": "Comuna Hilişeu-Horia", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.01336000", + "longitude": "26.29685000" + }, + { + "id": "92003", + "name": "Comuna Hlipiceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60401000", + "longitude": "27.17080000" + }, + { + "id": "92026", + "name": "Comuna Hudeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.15280000", + "longitude": "26.50102000" + }, + { + "id": "92058", + "name": "Comuna Ibăneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.04435000", + "longitude": "26.40450000" + }, + { + "id": "92151", + "name": "Comuna Leorda", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81862000", + "longitude": "26.45408000" + }, + { + "id": "92187", + "name": "Comuna Lozna", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.94410000", + "longitude": "26.28694000" + }, + { + "id": "92199", + "name": "Comuna Lunca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.62751000", + "longitude": "26.99240000" + }, + { + "id": "92239", + "name": "Comuna Manoleasa", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.00852000", + "longitude": "27.07951000" + }, + { + "id": "92272", + "name": "Comuna Mihai Eminescu", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76632000", + "longitude": "26.56267000" + }, + { + "id": "92283", + "name": "Comuna Mihăileni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95552000", + "longitude": "26.16204000" + }, + { + "id": "92286", + "name": "Comuna Mihălăşeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.87956000", + "longitude": "27.09620000" + }, + { + "id": "92291", + "name": "Comuna Mileanca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.09121000", + "longitude": "26.72965000" + }, + { + "id": "92306", + "name": "Comuna Mitoc", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.11288000", + "longitude": "27.00423000" + }, + { + "id": "92447", + "name": "Comuna Nicşeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86170000", + "longitude": "26.66023000" + }, + { + "id": "92717", + "name": "Comuna Păltiniş", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.23494000", + "longitude": "26.68555000" + }, + { + "id": "92649", + "name": "Comuna Pomârla", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.06225000", + "longitude": "26.32090000" + }, + { + "id": "92688", + "name": "Comuna Prăjeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.49577000", + "longitude": "27.02386000" + }, + { + "id": "92831", + "name": "Comuna Rãdãuţi-Prut", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.22492000", + "longitude": "26.81304000" + }, + { + "id": "92838", + "name": "Comuna Răchiţi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.77282000", + "longitude": "26.68847000" + }, + { + "id": "92853", + "name": "Comuna Răuseni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55941000", + "longitude": "27.22551000" + }, + { + "id": "92772", + "name": "Comuna Ripiceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91899000", + "longitude": "27.13958000" + }, + { + "id": "92781", + "name": "Comuna Roma", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84497000", + "longitude": "26.57084000" + }, + { + "id": "92786", + "name": "Comuna Româneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70860000", + "longitude": "27.23491000" + }, + { + "id": "92871", + "name": "Comuna Santa Mare", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63308000", + "longitude": "27.30260000" + }, + { + "id": "93022", + "name": "Comuna Stăuceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72142000", + "longitude": "26.77471000" + }, + { + "id": "93030", + "name": "Comuna Suharău", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.11697000", + "longitude": "26.44743000" + }, + { + "id": "93032", + "name": "Comuna Suliţa", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63723000", + "longitude": "26.93510000" + }, + { + "id": "93162", + "name": "Comuna Todireni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61386000", + "longitude": "27.10122000" + }, + { + "id": "93197", + "name": "Comuna Truşeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78058000", + "longitude": "26.98911000" + }, + { + "id": "93200", + "name": "Comuna Tudora", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50773000", + "longitude": "26.63397000" + }, + { + "id": "93278", + "name": "Comuna Unţeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81164000", + "longitude": "26.77886000" + }, + { + "id": "93271", + "name": "Comuna Ungureni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90384000", + "longitude": "26.76051000" + }, + { + "id": "93439", + "name": "Comuna Vârfu Câmpului", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86108000", + "longitude": "26.31529000" + }, + { + "id": "93450", + "name": "Comuna Văculeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88229000", + "longitude": "26.38590000" + }, + { + "id": "93362", + "name": "Comuna Viişoara", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.16752000", + "longitude": "26.74267000" + }, + { + "id": "93385", + "name": "Comuna Vlădeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72216000", + "longitude": "26.50880000" + }, + { + "id": "93393", + "name": "Comuna Vlăsineşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93988000", + "longitude": "26.91901000" + }, + { + "id": "93405", + "name": "Comuna Vorniceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96004000", + "longitude": "26.64699000" + }, + { + "id": "93406", + "name": "Comuna Vorona", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57859000", + "longitude": "26.61380000" + }, + { + "id": "93582", + "name": "Comună Cordăreni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.00420000", + "longitude": "26.59106000" + }, + { + "id": "93589", + "name": "Conceşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.16667000", + "longitude": "26.55000000" + }, + { + "id": "93608", + "name": "Copălău", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "26.83333000" + }, + { + "id": "93624", + "name": "Cordăreni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98333000", + "longitude": "26.58333000" + }, + { + "id": "93626", + "name": "Corlăteni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93333000", + "longitude": "26.55000000" + }, + { + "id": "93636", + "name": "Corni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "26.58333000" + }, + { + "id": "93663", + "name": "Costești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.80032000", + "longitude": "26.67584000" + }, + { + "id": "93718", + "name": "Cristeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "26.73333000" + }, + { + "id": "93724", + "name": "Cristineşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.10000000", + "longitude": "26.38333000" + }, + { + "id": "93775", + "name": "Curteşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71667000", + "longitude": "26.65000000" + }, + { + "id": "93894", + "name": "Darabani", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.18333000", + "longitude": "26.58333000" + }, + { + "id": "94108", + "name": "Dângeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.85000000", + "longitude": "26.96667000" + }, + { + "id": "93923", + "name": "Dersca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98333000", + "longitude": "26.20000000" + }, + { + "id": "93937", + "name": "Dimăcheni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91139000", + "longitude": "26.54560000" + }, + { + "id": "93972", + "name": "Dobârceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81667000", + "longitude": "27.06667000" + }, + { + "id": "94002", + "name": "Dorobanți", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88234000", + "longitude": "26.64723000" + }, + { + "id": "94006", + "name": "Dorohoi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95000000", + "longitude": "26.40000000" + }, + { + "id": "94010", + "name": "Dracșani", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.62945000", + "longitude": "26.93029000" + }, + { + "id": "94030", + "name": "Draxini", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "26.81667000" + }, + { + "id": "94049", + "name": "Drăguşeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.01667000", + "longitude": "26.81667000" + }, + { + "id": "94093", + "name": "Dumbrăvița", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.01900000", + "longitude": "26.42724000" + }, + { + "id": "94094", + "name": "Dumeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.00724000", + "longitude": "26.54287000" + }, + { + "id": "94102", + "name": "Durneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76667000", + "longitude": "27.10000000" + }, + { + "id": "97133", + "name": "Ștefănești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79169000", + "longitude": "27.20053000" + }, + { + "id": "97135", + "name": "Șupitca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60941000", + "longitude": "26.78359000" + }, + { + "id": "94191", + "name": "Flămânzi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55000000", + "longitude": "26.86667000" + }, + { + "id": "94211", + "name": "Frumuşica", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "26.90000000" + }, + { + "id": "94293", + "name": "George Enescu", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.03333000", + "longitude": "26.48333000" + }, + { + "id": "94383", + "name": "Gorbăneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78333000", + "longitude": "26.85000000" + }, + { + "id": "94524", + "name": "Havârna", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.06667000", + "longitude": "26.65000000" + }, + { + "id": "94603", + "name": "Hăneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91667000", + "longitude": "26.98333000" + }, + { + "id": "94536", + "name": "Hilişeu-Horia", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.03333000", + "longitude": "26.25000000" + }, + { + "id": "94538", + "name": "Hlipiceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60000000", + "longitude": "27.15000000" + }, + { + "id": "94571", + "name": "Hudeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.15000000", + "longitude": "26.50000000" + }, + { + "id": "94614", + "name": "Iacobeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86115000", + "longitude": "26.91304000" + }, + { + "id": "94632", + "name": "Ibăneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.06667000", + "longitude": "26.36667000" + }, + { + "id": "94638", + "name": "Icușeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.59269000", + "longitude": "26.59605000" + }, + { + "id": "94680", + "name": "Ionășeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73029000", + "longitude": "26.99329000" + }, + { + "id": "94745", + "name": "Joldești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56004000", + "longitude": "26.57705000" + }, + { + "id": "94778", + "name": "Leorda", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81667000", + "longitude": "26.45000000" + }, + { + "id": "94836", + "name": "Lozna", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95144000", + "longitude": "26.27723000" + }, + { + "id": "94859", + "name": "Lunca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "26.98333000" + }, + { + "id": "94923", + "name": "Manoleasa", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98333000", + "longitude": "27.06667000" + }, + { + "id": "95214", + "name": "Mândrești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73333000", + "longitude": "26.48333000" + }, + { + "id": "94993", + "name": "Mihăileni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96667000", + "longitude": "26.15000000" + }, + { + "id": "94997", + "name": "Mihălăşeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88333000", + "longitude": "27.06667000" + }, + { + "id": "95004", + "name": "Mileanca", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.08333000", + "longitude": "26.70000000" + }, + { + "id": "95010", + "name": "Miorcani", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.20223000", + "longitude": "26.85279000" + }, + { + "id": "95030", + "name": "Mitoc", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.10000000", + "longitude": "27.03333000" + }, + { + "id": "95037", + "name": "Mlenăuți", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.12663000", + "longitude": "26.48961000" + }, + { + "id": "95115", + "name": "Municipiul Botoşani", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73984000", + "longitude": "26.67156000" + }, + { + "id": "95137", + "name": "Municipiul Dorohoi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96772000", + "longitude": "26.41685000" + }, + { + "id": "95344", + "name": "Nicşeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86667000", + "longitude": "26.63333000" + }, + { + "id": "95333", + "name": "Nicolae Bălcescu", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56664000", + "longitude": "26.89629000" + }, + { + "id": "95438", + "name": "Oneaga", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57626000", + "longitude": "26.73244000" + }, + { + "id": "95630", + "name": "Oraş Ştefãneşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78834000", + "longitude": "27.20601000" + }, + { + "id": "95473", + "name": "Oraş Bucecea", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.77741000", + "longitude": "26.43966000" + }, + { + "id": "95507", + "name": "Oraş Darabani", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.17429000", + "longitude": "26.61519000" + }, + { + "id": "95518", + "name": "Oraş Flãmânzi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56193000", + "longitude": "26.90381000" + }, + { + "id": "95600", + "name": "Oraş Sãveni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95998000", + "longitude": "26.86677000" + }, + { + "id": "95668", + "name": "Orășeni-Deal", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.67597000", + "longitude": "26.67671000" + }, + { + "id": "95664", + "name": "Oroftiana", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.17758000", + "longitude": "26.34856000" + }, + { + "id": "96006", + "name": "Pădureni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.97434000", + "longitude": "26.31672000" + }, + { + "id": "96014", + "name": "Păltiniş", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.21667000", + "longitude": "26.65000000" + }, + { + "id": "95863", + "name": "Poiana", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60149000", + "longitude": "26.60826000" + }, + { + "id": "95904", + "name": "Pomârla", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.06667000", + "longitude": "26.31667000" + }, + { + "id": "95970", + "name": "Prăjeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "27.01667000" + }, + { + "id": "96188", + "name": "Răchiţi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76667000", + "longitude": "26.68333000" + }, + { + "id": "96202", + "name": "Rădăuți-Prut", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.23333000", + "longitude": "26.80000000" + }, + { + "id": "96194", + "name": "Rădeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51186000", + "longitude": "26.89249000" + }, + { + "id": "96212", + "name": "Răuseni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "27.20000000" + }, + { + "id": "96078", + "name": "Rediu", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.23075000", + "longitude": "26.77841000" + }, + { + "id": "96095", + "name": "Ripiceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95000000", + "longitude": "27.13333000" + }, + { + "id": "96139", + "name": "Roșiori", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76095000", + "longitude": "26.72167000" + }, + { + "id": "96104", + "name": "Roma", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83333000", + "longitude": "26.60000000" + }, + { + "id": "96113", + "name": "Românești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73141000", + "longitude": "27.24027000" + }, + { + "id": "96240", + "name": "Santa Mare", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "27.35000000" + }, + { + "id": "96242", + "name": "Sarafinești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61708000", + "longitude": "26.60740000" + }, + { + "id": "105985", + "name": "Sârbi", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.94268000", + "longitude": "26.91818000" + }, + { + "id": "106046", + "name": "Săveni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95000000", + "longitude": "26.86667000" + }, + { + "id": "96472", + "name": "Stâncești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75000000", + "longitude": "26.60000000" + }, + { + "id": "96483", + "name": "Stăuceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71667000", + "longitude": "26.75000000" + }, + { + "id": "96444", + "name": "Storeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55000000", + "longitude": "26.86667000" + }, + { + "id": "96464", + "name": "Străteni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93677000", + "longitude": "26.29664000" + }, + { + "id": "96456", + "name": "Stroiești", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61042000", + "longitude": "26.96562000" + }, + { + "id": "96496", + "name": "Suharău", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.13333000", + "longitude": "26.41667000" + }, + { + "id": "96500", + "name": "Sulița", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "26.91667000" + }, + { + "id": "106113", + "name": "Tocileni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71104000", + "longitude": "26.78657000" + }, + { + "id": "106114", + "name": "Todireni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "27.11667000" + }, + { + "id": "106162", + "name": "Truşeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76667000", + "longitude": "27.01667000" + }, + { + "id": "106166", + "name": "Tudor Vladimirescu", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68635000", + "longitude": "27.17211000" + }, + { + "id": "106168", + "name": "Tudora", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "26.63333000" + }, + { + "id": "96671", + "name": "Unţeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.80000000", + "longitude": "26.78333000" + }, + { + "id": "96662", + "name": "Ungureni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88176000", + "longitude": "26.79899000" + }, + { + "id": "96663", + "name": "Ungureni-Jianu", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88333000", + "longitude": "26.78333000" + }, + { + "id": "96938", + "name": "Vârfu Câmpului", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84566000", + "longitude": "26.33056000" + }, + { + "id": "96950", + "name": "Văculeşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88333000", + "longitude": "26.41667000" + }, + { + "id": "96804", + "name": "Victoria", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61018000", + "longitude": "27.16730000" + }, + { + "id": "96821", + "name": "Viişoara", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "48.16667000", + "longitude": "26.73333000" + }, + { + "id": "96863", + "name": "Vlădeni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71667000", + "longitude": "26.51667000" + }, + { + "id": "96864", + "name": "Vlădeni-Deal", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52250000", + "longitude": "26.87295000" + }, + { + "id": "96872", + "name": "Vlăsineşti", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93333000", + "longitude": "26.88333000" + }, + { + "id": "96891", + "name": "Vorniceni", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98333000", + "longitude": "26.66667000" + }, + { + "id": "96892", + "name": "Vorona", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57714000", + "longitude": "26.63078000" + }, + { + "id": "96893", + "name": "Vorona Teodoru", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55000000", + "longitude": "26.60000000" + }, + { + "id": "96999", + "name": "Zlătunoaia", + "state_id": 4740, + "state_code": "BT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65026000", + "longitude": "27.00743000" + }, + { + "id": "89877", + "name": "Acriș", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63673000", + "longitude": "25.99247000" + }, + { + "id": "89971", + "name": "Apaţa", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95000000", + "longitude": "25.51667000" + }, + { + "id": "90004", + "name": "Augustin", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04613000", + "longitude": "25.55333000" + }, + { + "id": "97040", + "name": "Şercaia", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "25.13333000" + }, + { + "id": "97054", + "name": "Şinca Veche", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "25.16667000" + }, + { + "id": "97063", + "name": "Şoarş", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92859000", + "longitude": "24.92867000" + }, + { + "id": "90079", + "name": "Beclean", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83119000", + "longitude": "24.92180000" + }, + { + "id": "90179", + "name": "Bod", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "25.65000000" + }, + { + "id": "90281", + "name": "Braşov", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64861000", + "longitude": "25.60613000" + }, + { + "id": "90266", + "name": "Bran", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51667000", + "longitude": "25.35000000" + }, + { + "id": "90386", + "name": "Budila", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66667000", + "longitude": "25.80000000" + }, + { + "id": "90409", + "name": "Buneşti", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "25.05000000" + }, + { + "id": "90596", + "name": "Caţa", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "25.26667000" + }, + { + "id": "90703", + "name": "Cincu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "24.80000000" + }, + { + "id": "90785", + "name": "Codlea", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70000000", + "longitude": "25.45000000" + }, + { + "id": "90799", + "name": "Colonia Bod", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75588000", + "longitude": "25.59960000" + }, + { + "id": "90805", + "name": "Comana de Jos", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91375000", + "longitude": "25.23129000" + }, + { + "id": "90806", + "name": "Comana de Sus", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "25.26667000" + }, + { + "id": "90878", + "name": "Comuna Apaţa", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95043000", + "longitude": "25.53312000" + }, + { + "id": "90902", + "name": "Comuna Augustin", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04613000", + "longitude": "25.55333000" + }, + { + "id": "93511", + "name": "Comuna Şercaia", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83002000", + "longitude": "25.14114000" + }, + { + "id": "93524", + "name": "Comuna Şinca Nouă", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69667000", + "longitude": "25.22177000" + }, + { + "id": "93525", + "name": "Comuna Şinca Veche", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75892000", + "longitude": "25.15578000" + }, + { + "id": "93534", + "name": "Comuna Şoarş", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92871000", + "longitude": "24.92764000" + }, + { + "id": "90947", + "name": "Comuna Beclean", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83119000", + "longitude": "24.92317000" + }, + { + "id": "91017", + "name": "Comuna Bod", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75987000", + "longitude": "25.62077000" + }, + { + "id": "91076", + "name": "Comuna Bran", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51412000", + "longitude": "25.37289000" + }, + { + "id": "91148", + "name": "Comuna Budila", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.67432000", + "longitude": "25.80793000" + }, + { + "id": "91165", + "name": "Comuna Buneşti", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10042000", + "longitude": "25.05528000" + }, + { + "id": "91270", + "name": "Comuna Caţa", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13174000", + "longitude": "25.26977000" + }, + { + "id": "91338", + "name": "Comuna Cincu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90712000", + "longitude": "24.77333000" + }, + { + "id": "91405", + "name": "Comuna Comana", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91357000", + "longitude": "25.22080000" + }, + { + "id": "91498", + "name": "Comuna Cristian", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.62474000", + "longitude": "25.48292000" + }, + { + "id": "91503", + "name": "Comuna Crizbav", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82070000", + "longitude": "25.46739000" + }, + { + "id": "91693", + "name": "Comuna Drăguş", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76146000", + "longitude": "24.77906000" + }, + { + "id": "91718", + "name": "Comuna Dumbrăviţa", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "25.43333000" + }, + { + "id": "91754", + "name": "Comuna Feldioara", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82829000", + "longitude": "25.57459000" + }, + { + "id": "91798", + "name": "Comuna Fundata", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44615000", + "longitude": "25.27775000" + }, + { + "id": "92035", + "name": "Comuna Hârşeni", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73420000", + "longitude": "25.02404000" + }, + { + "id": "92037", + "name": "Comuna Hălchiu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76743000", + "longitude": "25.52991000" + }, + { + "id": "92043", + "name": "Comuna Hărman", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73727000", + "longitude": "25.70451000" + }, + { + "id": "92007", + "name": "Comuna Hoghiz", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96602000", + "longitude": "25.32168000" + }, + { + "id": "92008", + "name": "Comuna Holbav", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65922000", + "longitude": "25.38744000" + }, + { + "id": "92013", + "name": "Comuna Homorod", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07260000", + "longitude": "25.33464000" + }, + { + "id": "92119", + "name": "Comuna Jibert", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00173000", + "longitude": "25.07355000" + }, + { + "id": "92171", + "name": "Comuna Lisa", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72760000", + "longitude": "24.86876000" + }, + { + "id": "92366", + "name": "Comuna Mândra", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81219000", + "longitude": "25.03262000" + }, + { + "id": "92376", + "name": "Comuna Mãieruş", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89358000", + "longitude": "25.49705000" + }, + { + "id": "92322", + "name": "Comuna Moieciu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48848000", + "longitude": "25.30962000" + }, + { + "id": "92511", + "name": "Comuna Ormeniş", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00473000", + "longitude": "25.55683000" + }, + { + "id": "92708", + "name": "Comuna Pârâu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85139000", + "longitude": "25.21584000" + }, + { + "id": "92630", + "name": "Comuna Poiana Mărului (Brașov)", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60462000", + "longitude": "25.30927000" + }, + { + "id": "92671", + "name": "Comuna Prejmer", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73164000", + "longitude": "25.78673000" + }, + { + "id": "92739", + "name": "Comuna Racoş", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.02051000", + "longitude": "25.39563000" + }, + { + "id": "92753", + "name": "Comuna Recea", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.74312000", + "longitude": "24.94086000" + }, + { + "id": "93047", + "name": "Comuna Sâmbăta de Sus", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72698000", + "longitude": "24.81067000" + }, + { + "id": "93063", + "name": "Comuna Sânpetru", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71082000", + "longitude": "25.63678000" + }, + { + "id": "93240", + "name": "Comuna Tărlungeni", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64579000", + "longitude": "25.77368000" + }, + { + "id": "93138", + "name": "Comuna Teliu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69856000", + "longitude": "25.85590000" + }, + { + "id": "93149", + "name": "Comuna Ticuşu Vechi", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92823000", + "longitude": "25.09346000" + }, + { + "id": "93251", + "name": "Comuna Ucea de Jos", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77980000", + "longitude": "24.68477000" + }, + { + "id": "93269", + "name": "Comuna Ungra", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97828000", + "longitude": "25.21859000" + }, + { + "id": "93333", + "name": "Comuna Vama Buzăului", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60258000", + "longitude": "25.97991000" + }, + { + "id": "93380", + "name": "Comuna Viştea de Jos", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77201000", + "longitude": "24.75237000" + }, + { + "id": "93395", + "name": "Comuna Voila", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81815000", + "longitude": "24.84060000" + }, + { + "id": "93412", + "name": "Comuna Vulcan", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64960000", + "longitude": "25.41671000" + }, + { + "id": "93723", + "name": "Cristian", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61667000", + "longitude": "25.46667000" + }, + { + "id": "93730", + "name": "Crivina", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58333000", + "longitude": "25.98333000" + }, + { + "id": "93732", + "name": "Crizbav", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81515000", + "longitude": "25.46718000" + }, + { + "id": "93758", + "name": "Cuciulata", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.94389000", + "longitude": "25.27541000" + }, + { + "id": "94052", + "name": "Drăguș", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76146000", + "longitude": "24.77906000" + }, + { + "id": "94088", + "name": "Dumbrăviţa", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "25.43333000" + }, + { + "id": "97125", + "name": "Șimon", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48484000", + "longitude": "25.35664000" + }, + { + "id": "97126", + "name": "Șinca Nouă", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69457000", + "longitude": "25.24348000" + }, + { + "id": "94256", + "name": "Făgăraș", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "24.96667000" + }, + { + "id": "94152", + "name": "Feldioara", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "25.60000000" + }, + { + "id": "94183", + "name": "Fișer", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07912000", + "longitude": "25.15103000" + }, + { + "id": "94224", + "name": "Fundata", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45000000", + "longitude": "25.30000000" + }, + { + "id": "94321", + "name": "Ghimbav", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66667000", + "longitude": "25.50000000" + }, + { + "id": "94593", + "name": "Hârşeni", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75000000", + "longitude": "25.01667000" + }, + { + "id": "94598", + "name": "Hălchiu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "25.55000000" + }, + { + "id": "94605", + "name": "Hărman", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "25.68333000" + }, + { + "id": "94547", + "name": "Hoghiz", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98333000", + "longitude": "25.30000000" + }, + { + "id": "94548", + "name": "Holbav", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65922000", + "longitude": "25.38744000" + }, + { + "id": "94553", + "name": "Homorod", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "25.26667000" + }, + { + "id": "94728", + "name": "Jibert", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00000000", + "longitude": "25.06667000" + }, + { + "id": "94809", + "name": "Lisa", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "24.85000000" + }, + { + "id": "95212", + "name": "Mândra", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "25.05000000" + }, + { + "id": "95250", + "name": "Măieruş", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "25.53333000" + }, + { + "id": "95047", + "name": "Moeciu de Jos", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48333000", + "longitude": "25.31667000" + }, + { + "id": "95057", + "name": "Moieciu de Jos", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50313000", + "longitude": "25.33719000" + }, + { + "id": "95102", + "name": "Municipiul Codlea", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69944000", + "longitude": "25.44778000" + }, + { + "id": "95117", + "name": "Municipiul Braşov", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65053000", + "longitude": "25.60913000" + }, + { + "id": "95142", + "name": "Municipiul Fãgãraş", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84098000", + "longitude": "24.97348000" + }, + { + "id": "95185", + "name": "Municipiul Sãcele", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61772000", + "longitude": "25.69890000" + }, + { + "id": "95524", + "name": "Oraş Ghimbav", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66397000", + "longitude": "25.50836000" + }, + { + "id": "95573", + "name": "Oraş Predeal", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.49679000", + "longitude": "25.58778000" + }, + { + "id": "95581", + "name": "Oraş Râşnov", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.59108000", + "longitude": "25.46393000" + }, + { + "id": "95580", + "name": "Oraş Rupea", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05903000", + "longitude": "25.18717000" + }, + { + "id": "95617", + "name": "Oraş Victoria", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72968000", + "longitude": "24.70280000" + }, + { + "id": "95625", + "name": "Oraş Zãrneşti", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.55650000", + "longitude": "25.35205000" + }, + { + "id": "95662", + "name": "Ormeniş", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "25.55000000" + }, + { + "id": "96002", + "name": "Pârâu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "25.18333000" + }, + { + "id": "95740", + "name": "Perșani", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78160000", + "longitude": "25.21285000" + }, + { + "id": "95879", + "name": "Poiana Mărului (Brașov)", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60000000", + "longitude": "25.30000000" + }, + { + "id": "95942", + "name": "Predeal", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "25.56667000" + }, + { + "id": "95944", + "name": "Prejmer", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "25.76667000" + }, + { + "id": "95984", + "name": "Purcăreni", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64476000", + "longitude": "25.79129000" + }, + { + "id": "96048", + "name": "Racoș", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.02524000", + "longitude": "25.41075000" + }, + { + "id": "96178", + "name": "Râşnov", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58333000", + "longitude": "25.45000000" + }, + { + "id": "96069", + "name": "Recea", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71334000", + "longitude": "24.93152000" + }, + { + "id": "96156", + "name": "Rupea", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03333000", + "longitude": "25.21667000" + }, + { + "id": "96520", + "name": "Sâmbăta de Sus", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76178000", + "longitude": "24.82053000" + }, + { + "id": "96543", + "name": "Sânpetru", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71082000", + "longitude": "25.63678000" + }, + { + "id": "105992", + "name": "Săcele", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61674000", + "longitude": "25.71101000" + }, + { + "id": "96401", + "name": "Sohodol", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.52829000", + "longitude": "25.40244000" + }, + { + "id": "96612", + "name": "Tărlungeni", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63333000", + "longitude": "25.75000000" + }, + { + "id": "106081", + "name": "Teliu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69856000", + "longitude": "25.85590000" + }, + { + "id": "106094", + "name": "Ticuşu Vechi", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93333000", + "longitude": "25.10000000" + }, + { + "id": "106119", + "name": "Tohanu Nou", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.55208000", + "longitude": "25.38622000" + }, + { + "id": "96549", + "name": "Tunelu-Teliu", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70000000", + "longitude": "25.85000000" + }, + { + "id": "96632", + "name": "Ucea de Jos", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78410000", + "longitude": "24.67097000" + }, + { + "id": "96633", + "name": "Ucea de Sus", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75000000", + "longitude": "24.68333000" + }, + { + "id": "96656", + "name": "Ungra", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98333000", + "longitude": "25.26667000" + }, + { + "id": "96772", + "name": "Vama Buzăului", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.59668000", + "longitude": "25.99359000" + }, + { + "id": "96803", + "name": "Victoria", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72968000", + "longitude": "24.70280000" + }, + { + "id": "96854", + "name": "Viștea de Jos", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79582000", + "longitude": "24.72380000" + }, + { + "id": "96839", + "name": "Viscri", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05522000", + "longitude": "25.09389000" + }, + { + "id": "96876", + "name": "Voila", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81839000", + "longitude": "24.84215000" + }, + { + "id": "96900", + "name": "Vulcan", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63333000", + "longitude": "25.41667000" + }, + { + "id": "97016", + "name": "Zărnești", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56093000", + "longitude": "25.31787000" + }, + { + "id": "96997", + "name": "Zizin", + "state_id": 4759, + "state_code": "BV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63697000", + "longitude": "25.77898000" + }, + { + "id": "97024", + "name": "Însurăţei", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "27.60000000" + }, + { + "id": "97097", + "name": "Şuţeşti", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "27.43333000" + }, + { + "id": "90042", + "name": "Baldovinești", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32182000", + "longitude": "27.91107000" + }, + { + "id": "90547", + "name": "Bărăganul", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "27.51667000" + }, + { + "id": "90115", + "name": "Berteştii de Jos", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83333000", + "longitude": "27.75000000" + }, + { + "id": "90224", + "name": "Bordei Verde", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "27.56667000" + }, + { + "id": "90334", + "name": "Brăila", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27152000", + "longitude": "27.97429000" + }, + { + "id": "90594", + "name": "Cazasu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27172000", + "longitude": "27.89011000" + }, + { + "id": "90681", + "name": "Chiscani", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "27.93333000" + }, + { + "id": "90709", + "name": "Ciocile", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "27.23333000" + }, + { + "id": "90733", + "name": "Cireşu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "27.35000000" + }, + { + "id": "93565", + "name": "Comuna Şuţeşti", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22101000", + "longitude": "27.47067000" + }, + { + "id": "91243", + "name": "Comuna Bărăganul", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81068000", + "longitude": "27.51515000" + }, + { + "id": "90973", + "name": "Comuna Berteştii de Jos", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83024000", + "longitude": "27.72008000" + }, + { + "id": "91047", + "name": "Comuna Bordei Verde", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03225000", + "longitude": "27.57088000" + }, + { + "id": "91269", + "name": "Comuna Cazasu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27172000", + "longitude": "27.89011000" + }, + { + "id": "91324", + "name": "Comuna Chiscani", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20880000", + "longitude": "27.91776000" + }, + { + "id": "91342", + "name": "Comuna Ciocile", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82211000", + "longitude": "27.25180000" + }, + { + "id": "91359", + "name": "Comuna Cireşu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95368000", + "longitude": "27.37901000" + }, + { + "id": "91706", + "name": "Comuna Dudeşti", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87624000", + "longitude": "27.44325000" + }, + { + "id": "91781", + "name": "Comuna Frecãţei", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85977000", + "longitude": "28.08422000" + }, + { + "id": "91828", + "name": "Comuna Galbenu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19252000", + "longitude": "27.16669000" + }, + { + "id": "91836", + "name": "Comuna Gemenele", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28931000", + "longitude": "27.65637000" + }, + { + "id": "91941", + "name": "Comuna Grădiştea", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24832000", + "longitude": "27.38192000" + }, + { + "id": "91924", + "name": "Comuna Gropeni", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07328000", + "longitude": "27.88606000" + }, + { + "id": "92126", + "name": "Comuna Jirlău", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15314000", + "longitude": "27.20900000" + }, + { + "id": "92405", + "name": "Comuna Măraşu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00807000", + "longitude": "27.98062000" + }, + { + "id": "92422", + "name": "Comuna Măxineni", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41803000", + "longitude": "27.66470000" + }, + { + "id": "92295", + "name": "Comuna Mircea Vodă", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12889000", + "longitude": "27.38258000" + }, + { + "id": "92339", + "name": "Comuna Movila Miresii", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19574000", + "longitude": "27.60368000" + }, + { + "id": "92737", + "name": "Comuna Racoviţa", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30627000", + "longitude": "27.46720000" + }, + { + "id": "92823", + "name": "Comuna Râmnicelu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29786000", + "longitude": "27.51338000" + }, + { + "id": "92804", + "name": "Comuna Roşiori", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84097000", + "longitude": "27.34129000" + }, + { + "id": "92782", + "name": "Comuna Romanu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31818000", + "longitude": "27.74046000" + }, + { + "id": "92866", + "name": "Comuna Salcia Tudor", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40260000", + "longitude": "27.50380000" + }, + { + "id": "92893", + "name": "Comuna Scorţaru Nou", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34905000", + "longitude": "27.61478000" + }, + { + "id": "92932", + "name": "Comuna Siliştea", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35263000", + "longitude": "27.82592000" + }, + { + "id": "93015", + "name": "Comuna Stăncuţa", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88885000", + "longitude": "27.79614000" + }, + { + "id": "93038", + "name": "Comuna Surdila-Găiseanca", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09893000", + "longitude": "27.33491000" + }, + { + "id": "93037", + "name": "Comuna Surdila-Greci", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07288000", + "longitude": "27.26840000" + }, + { + "id": "93148", + "name": "Comuna Tichileşti", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14822000", + "longitude": "27.89059000" + }, + { + "id": "93189", + "name": "Comuna Traian", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15355000", + "longitude": "27.69170000" + }, + { + "id": "93199", + "name": "Comuna Tudor Vladimirescu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22537000", + "longitude": "27.75299000" + }, + { + "id": "93202", + "name": "Comuna Tufeşti", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98719000", + "longitude": "27.80256000" + }, + { + "id": "93264", + "name": "Comuna Ulmu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94821000", + "longitude": "27.29836000" + }, + { + "id": "93277", + "name": "Comuna Unirea", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10592000", + "longitude": "27.77613000" + }, + { + "id": "93454", + "name": "Comuna Vădeni", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33745000", + "longitude": "27.90589000" + }, + { + "id": "93374", + "name": "Comuna Vişani", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18495000", + "longitude": "27.30611000" + }, + { + "id": "93352", + "name": "Comuna Victoria", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79568000", + "longitude": "27.67036000" + }, + { + "id": "93373", + "name": "Comuna Viziru", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02027000", + "longitude": "27.73217000" + }, + { + "id": "93491", + "name": "Comuna Zăvoaia", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95276000", + "longitude": "27.45613000" + }, + { + "id": "93621", + "name": "Corbu Nou", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40996000", + "longitude": "27.59191000" + }, + { + "id": "93785", + "name": "Cuza Vodă", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92513000", + "longitude": "27.73273000" + }, + { + "id": "93908", + "name": "Dedulești", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14679000", + "longitude": "27.38907000" + }, + { + "id": "94069", + "name": "Dudeşti", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "27.43333000" + }, + { + "id": "94269", + "name": "Făurei", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "27.26667000" + }, + { + "id": "94205", + "name": "Frecăţei", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "28.11667000" + }, + { + "id": "94275", + "name": "Galbenu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "27.16667000" + }, + { + "id": "94289", + "name": "Gemenele", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "27.61667000" + }, + { + "id": "94440", + "name": "Grădiştea", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26667000", + "longitude": "27.38333000" + }, + { + "id": "94419", + "name": "Gropeni", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07547000", + "longitude": "27.87969000" + }, + { + "id": "94620", + "name": "Ianca", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "27.45000000" + }, + { + "id": "94740", + "name": "Jirlău", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "27.16667000" + }, + { + "id": "94751", + "name": "Jugureanu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94313000", + "longitude": "27.27878000" + }, + { + "id": "94756", + "name": "Lacu Sărat", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21867000", + "longitude": "27.88764000" + }, + { + "id": "94759", + "name": "Lanurile", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04149000", + "longitude": "27.74916000" + }, + { + "id": "95265", + "name": "Măraşu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85000000", + "longitude": "27.96667000" + }, + { + "id": "95293", + "name": "Măxineni", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40000000", + "longitude": "27.63333000" + }, + { + "id": "94977", + "name": "Mihai Bravu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78469000", + "longitude": "27.72144000" + }, + { + "id": "95013", + "name": "Mircea Vodă", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "27.38333000" + }, + { + "id": "95081", + "name": "Movila Miresii", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "27.60000000" + }, + { + "id": "95118", + "name": "Municipiul Brãila", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27190000", + "longitude": "27.97500000" + }, + { + "id": "95627", + "name": "Oraş Însurãţei", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91928000", + "longitude": "27.64433000" + }, + { + "id": "95522", + "name": "Oraş Fãurei", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08534000", + "longitude": "27.27155000" + }, + { + "id": "95533", + "name": "Oraş Ianca", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11446000", + "longitude": "27.50205000" + }, + { + "id": "95739", + "name": "Perișoru", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11268000", + "longitude": "27.49817000" + }, + { + "id": "95822", + "name": "Plopu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14847000", + "longitude": "27.51387000" + }, + { + "id": "96041", + "name": "Racoviţa", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "27.45000000" + }, + { + "id": "96168", + "name": "Râmnicelu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "27.53333000" + }, + { + "id": "96132", + "name": "Roşiori", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "27.38333000" + }, + { + "id": "96106", + "name": "Romanu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "27.73333000" + }, + { + "id": "96234", + "name": "Salcia Tudor", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36667000", + "longitude": "27.51667000" + }, + { + "id": "96279", + "name": "Scorţaru Nou", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31667000", + "longitude": "27.60000000" + }, + { + "id": "96283", + "name": "Scorțaru Vechi", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21886000", + "longitude": "27.75489000" + }, + { + "id": "96340", + "name": "Siliştea", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "27.85000000" + }, + { + "id": "96417", + "name": "Spiru Haret", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86715000", + "longitude": "27.74463000" + }, + { + "id": "96476", + "name": "Stăncuţa", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "27.83333000" + }, + { + "id": "96507", + "name": "Surdila-Găiseanca", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "27.33333000" + }, + { + "id": "96506", + "name": "Surdila-Greci", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "27.26667000" + }, + { + "id": "96615", + "name": "Tătaru", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84482000", + "longitude": "27.43376000" + }, + { + "id": "106093", + "name": "Tichileşti", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "27.90000000" + }, + { + "id": "106145", + "name": "Traian", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "27.73333000" + }, + { + "id": "106164", + "name": "Tudor Vladimirescu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "27.80000000" + }, + { + "id": "106171", + "name": "Tufeşti", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "27.81667000" + }, + { + "id": "96650", + "name": "Ulmu", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "27.31667000" + }, + { + "id": "96669", + "name": "Unirea", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "27.81667000" + }, + { + "id": "96680", + "name": "Urleasca", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13697000", + "longitude": "27.64736000" + }, + { + "id": "96719", + "name": "Valea Cânepii", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "27.81667000" + }, + { + "id": "96954", + "name": "Vădeni", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36667000", + "longitude": "27.93333000" + }, + { + "id": "96846", + "name": "Vişani", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "27.28333000" + }, + { + "id": "96806", + "name": "Victoria", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "27.61667000" + }, + { + "id": "96844", + "name": "Viziru", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "27.70000000" + }, + { + "id": "97021", + "name": "Zăvoaia", + "state_id": 4736, + "state_code": "BR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "27.48333000" + }, + { + "id": "90347", + "name": "Bucharest", + "state_id": 4730, + "state_code": "B", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43225000", + "longitude": "26.10626000" + }, + { + "id": "96307", + "name": "Sector 1", + "state_id": 4730, + "state_code": "B", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49239000", + "longitude": "26.04831000" + }, + { + "id": "96308", + "name": "Sector 2", + "state_id": 4730, + "state_code": "B", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45280000", + "longitude": "26.13321000" + }, + { + "id": "96309", + "name": "Sector 3", + "state_id": 4730, + "state_code": "B", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42340000", + "longitude": "26.16874000" + }, + { + "id": "96310", + "name": "Sector 4", + "state_id": 4730, + "state_code": "B", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37571000", + "longitude": "26.12085000" + }, + { + "id": "96311", + "name": "Sector 5", + "state_id": 4730, + "state_code": "B", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38808000", + "longitude": "26.07144000" + }, + { + "id": "96312", + "name": "Sector 6", + "state_id": 4730, + "state_code": "B", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43579000", + "longitude": "26.01649000" + }, + { + "id": "89948", + "name": "Amara", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24866000", + "longitude": "27.29244000" + }, + { + "id": "89949", + "name": "Amaru", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93333000", + "longitude": "26.58333000" + }, + { + "id": "97108", + "name": "Ţinteşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "26.86667000" + }, + { + "id": "90019", + "name": "Babeţi", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31667000", + "longitude": "26.38333000" + }, + { + "id": "90047", + "name": "Balta Albă", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30423000", + "longitude": "27.28557000" + }, + { + "id": "90462", + "name": "Bâsca Chiojdului", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37120000", + "longitude": "26.18355000" + }, + { + "id": "90463", + "name": "Bâsca Rozilei", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45387000", + "longitude": "26.33714000" + }, + { + "id": "90464", + "name": "Bâscenii de Jos", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24708000", + "longitude": "26.32122000" + }, + { + "id": "90465", + "name": "Bâscenii de Sus", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26662000", + "longitude": "26.27073000" + }, + { + "id": "90469", + "name": "Băbeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44635000", + "longitude": "26.97875000" + }, + { + "id": "90522", + "name": "Bălăceanu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26667000", + "longitude": "27.15000000" + }, + { + "id": "90075", + "name": "Beceni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38333000", + "longitude": "26.78333000" + }, + { + "id": "90097", + "name": "Berca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "26.68333000" + }, + { + "id": "90142", + "name": "Bisoca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.53333000", + "longitude": "26.70000000" + }, + { + "id": "90165", + "name": "Blăjani", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31667000", + "longitude": "26.81667000" + }, + { + "id": "90169", + "name": "Boboc", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19570000", + "longitude": "26.98136000" + }, + { + "id": "90211", + "name": "Boldu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33333000", + "longitude": "27.23333000" + }, + { + "id": "90253", + "name": "Bozioru", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38333000", + "longitude": "26.48333000" + }, + { + "id": "90321", + "name": "Brădeanu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93333000", + "longitude": "26.85000000" + }, + { + "id": "90330", + "name": "Brăeşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43333000", + "longitude": "26.50000000" + }, + { + "id": "90285", + "name": "Breaza", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "26.53333000" + }, + { + "id": "90374", + "name": "Buda", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "26.90000000" + }, + { + "id": "90421", + "name": "Burueneşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31667000", + "longitude": "26.35000000" + }, + { + "id": "90435", + "name": "Buzău", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "26.83333000" + }, + { + "id": "90558", + "name": "C.a. Rosetti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04622000", + "longitude": "27.16640000" + }, + { + "id": "90597", + "name": "Cașoca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48914000", + "longitude": "26.26706000" + }, + { + "id": "90566", + "name": "Calvini", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "26.30000000" + }, + { + "id": "93834", + "name": "Căldărăști", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89375000", + "longitude": "27.03400000" + }, + { + "id": "93856", + "name": "Căneşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40000000", + "longitude": "26.60000000" + }, + { + "id": "93865", + "name": "Căpățânești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "26.80000000" + }, + { + "id": "93877", + "name": "Cătina", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "26.25000000" + }, + { + "id": "90638", + "name": "Cernăteşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26667000", + "longitude": "26.76667000" + }, + { + "id": "90668", + "name": "Chiliile", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45000000", + "longitude": "26.58333000" + }, + { + "id": "90674", + "name": "Chiojdu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35000000", + "longitude": "26.20000000" + }, + { + "id": "90701", + "name": "Cilibia", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "27.06667000" + }, + { + "id": "90736", + "name": "Cislău", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "26.36667000" + }, + { + "id": "90776", + "name": "Cochirleanca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "27.03333000" + }, + { + "id": "93700", + "name": "Coțatcu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.46643000", + "longitude": "27.01486000" + }, + { + "id": "90802", + "name": "Colţi", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38333000", + "longitude": "26.38333000" + }, + { + "id": "90863", + "name": "Comuna Amaru", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93770000", + "longitude": "26.59991000" + }, + { + "id": "93576", + "name": "Comuna Ţinteşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07280000", + "longitude": "26.85786000" + }, + { + "id": "90929", + "name": "Comuna Balta Albă", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26376000", + "longitude": "27.30558000" + }, + { + "id": "91223", + "name": "Comuna Bălăceanu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24656000", + "longitude": "27.13604000" + }, + { + "id": "90944", + "name": "Comuna Beceni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38456000", + "longitude": "26.76978000" + }, + { + "id": "90959", + "name": "Comuna Berca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30098000", + "longitude": "26.65989000" + }, + { + "id": "90994", + "name": "Comuna Bisoca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.54340000", + "longitude": "26.70591000" + }, + { + "id": "91008", + "name": "Comuna Blăjani", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29964000", + "longitude": "26.81716000" + }, + { + "id": "91039", + "name": "Comuna Boldu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32267000", + "longitude": "27.24313000" + }, + { + "id": "91067", + "name": "Comuna Bozioru", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38987000", + "longitude": "26.46770000" + }, + { + "id": "91111", + "name": "Comuna Brădeanu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89367000", + "longitude": "26.86105000" + }, + { + "id": "91117", + "name": "Comuna Brăeşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44253000", + "longitude": "26.49487000" + }, + { + "id": "91089", + "name": "Comuna Breaza", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09183000", + "longitude": "26.53240000" + }, + { + "id": "91142", + "name": "Comuna Buda", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50907000", + "longitude": "26.90434000" + }, + { + "id": "91251", + "name": "Comuna C.A. Rosetti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03678000", + "longitude": "27.16722000" + }, + { + "id": "91255", + "name": "Comuna Calvini", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24906000", + "longitude": "26.29982000" + }, + { + "id": "91582", + "name": "Comuna Căneşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.39711000", + "longitude": "26.60889000" + }, + { + "id": "91593", + "name": "Comuna Cătina", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28747000", + "longitude": "26.24479000" + }, + { + "id": "91296", + "name": "Comuna Cernăteşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29838000", + "longitude": "26.76260000" + }, + { + "id": "91315", + "name": "Comuna Chiliile", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44784000", + "longitude": "26.59441000" + }, + { + "id": "91320", + "name": "Comuna Chiojdu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36671000", + "longitude": "26.21840000" + }, + { + "id": "91336", + "name": "Comuna Cilibia", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05219000", + "longitude": "27.04337000" + }, + { + "id": "91361", + "name": "Comuna Cislău", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22578000", + "longitude": "26.37954000" + }, + { + "id": "91386", + "name": "Comuna Cochirleanca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20146000", + "longitude": "27.01126000" + }, + { + "id": "91402", + "name": "Comuna Colţi", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.39105000", + "longitude": "26.40723000" + }, + { + "id": "91455", + "name": "Comuna Costeşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06179000", + "longitude": "26.77321000" + }, + { + "id": "91468", + "name": "Comuna Cozieni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33240000", + "longitude": "26.49410000" + }, + { + "id": "91773", + "name": "Comuna Florica", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90802000", + "longitude": "26.76627000" + }, + { + "id": "91981", + "name": "Comuna Gălbinaşi", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07439000", + "longitude": "26.94363000" + }, + { + "id": "91849", + "name": "Comuna Gherăseni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02443000", + "longitude": "26.80069000" + }, + { + "id": "91845", + "name": "Comuna Ghergheasa", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28915000", + "longitude": "27.19182000" + }, + { + "id": "91882", + "name": "Comuna Glodeanu-Sărat", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87601000", + "longitude": "26.65897000" + }, + { + "id": "91881", + "name": "Comuna Glodeanu-Siliştea", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83956000", + "longitude": "26.76757000" + }, + { + "id": "91912", + "name": "Comuna Greabănu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38794000", + "longitude": "26.96628000" + }, + { + "id": "91952", + "name": "Comuna Gura Teghii", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50703000", + "longitude": "26.43441000" + }, + { + "id": "92138", + "name": "Comuna Largu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97448000", + "longitude": "27.16261000" + }, + { + "id": "92184", + "name": "Comuna Lopătari", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48774000", + "longitude": "26.55233000" + }, + { + "id": "92189", + "name": "Comuna Luciu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97510000", + "longitude": "27.05781000" + }, + { + "id": "92367", + "name": "Comuna Mânzăleşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50414000", + "longitude": "26.64561000" + }, + { + "id": "92389", + "name": "Comuna Măgura", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26962000", + "longitude": "26.55104000" + }, + { + "id": "92417", + "name": "Comuna Mărăcineni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18902000", + "longitude": "26.79393000" + }, + { + "id": "92409", + "name": "Comuna Mărgăriteşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43496000", + "longitude": "26.83619000" + }, + { + "id": "92255", + "name": "Comuna Merei", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13102000", + "longitude": "26.66127000" + }, + { + "id": "92285", + "name": "Comuna Mihăileşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92518000", + "longitude": "26.67330000" + }, + { + "id": "92338", + "name": "Comuna Movila Banului", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97607000", + "longitude": "26.70299000" + }, + { + "id": "92361", + "name": "Comuna Murgeşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40612000", + "longitude": "26.88883000" + }, + { + "id": "92461", + "name": "Comuna Năeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09968000", + "longitude": "26.48944000" + }, + { + "id": "92484", + "name": "Comuna Odăile", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38458000", + "longitude": "26.53966000" + }, + { + "id": "92528", + "name": "Comuna Padina", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87082000", + "longitude": "27.11566000" + }, + { + "id": "92538", + "name": "Comuna Pardoşi", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44989000", + "longitude": "26.87934000" + }, + { + "id": "92707", + "name": "Comuna Pârscov", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30760000", + "longitude": "26.55283000" + }, + { + "id": "92720", + "name": "Comuna Pănătău", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30516000", + "longitude": "26.39159000" + }, + { + "id": "92580", + "name": "Comuna Pietroasele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10357000", + "longitude": "26.59143000" + }, + { + "id": "92667", + "name": "Comuna Poşta Câlnãu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24683000", + "longitude": "26.86785000" + }, + { + "id": "92614", + "name": "Comuna Podgoria", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45591000", + "longitude": "27.00626000" + }, + { + "id": "92695", + "name": "Comuna Puieşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.39338000", + "longitude": "27.20850000" + }, + { + "id": "92738", + "name": "Comuna Racoviţeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35025000", + "longitude": "26.89919000" + }, + { + "id": "92824", + "name": "Comuna Râmnicelu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37840000", + "longitude": "27.13293000" + }, + { + "id": "92774", + "name": "Comuna Robeasca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14246000", + "longitude": "27.14697000" + }, + { + "id": "92818", + "name": "Comuna Ruşeţu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94214000", + "longitude": "27.21863000" + }, + { + "id": "93089", + "name": "Comuna Săgeata", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10063000", + "longitude": "27.02496000" + }, + { + "id": "93090", + "name": "Comuna Săhăteni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02238000", + "longitude": "26.56344000" + }, + { + "id": "93105", + "name": "Comuna Săpoca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22290000", + "longitude": "26.75175000" + }, + { + "id": "93108", + "name": "Comuna Săruleşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48304000", + "longitude": "26.77864000" + }, + { + "id": "92896", + "name": "Comuna Scorţoasa", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36204000", + "longitude": "26.66176000" + }, + { + "id": "92900", + "name": "Comuna Scutelnici", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83964000", + "longitude": "26.93747000" + }, + { + "id": "92944", + "name": "Comuna Siriu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50872000", + "longitude": "26.24470000" + }, + { + "id": "92962", + "name": "Comuna Smeeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98816000", + "longitude": "26.91261000" + }, + { + "id": "93013", + "name": "Comuna Stâlpu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08519000", + "longitude": "26.70839000" + }, + { + "id": "93159", + "name": "Comuna Tisãu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19337000", + "longitude": "26.57321000" + }, + { + "id": "93176", + "name": "Comuna Topliceni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44104000", + "longitude": "26.98210000" + }, + { + "id": "93261", + "name": "Comuna Ulmeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06881000", + "longitude": "26.62364000" + }, + { + "id": "93273", + "name": "Comuna Unguriu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27963000", + "longitude": "26.64103000" + }, + { + "id": "93294", + "name": "Comuna Vadu Paşii", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15743000", + "longitude": "26.88249000" + }, + { + "id": "93320", + "name": "Comuna Valea Râmnicului", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36174000", + "longitude": "27.04675000" + }, + { + "id": "93324", + "name": "Comuna Valea Sălciei", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48818000", + "longitude": "26.82912000" + }, + { + "id": "93428", + "name": "Comuna Vâlcelele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34430000", + "longitude": "27.34937000" + }, + { + "id": "93346", + "name": "Comuna Verneşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20804000", + "longitude": "26.69650000" + }, + { + "id": "93367", + "name": "Comuna Vintilă Vodă", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45461000", + "longitude": "26.72385000" + }, + { + "id": "93369", + "name": "Comuna Vipereşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24643000", + "longitude": "26.44527000" + }, + { + "id": "93489", + "name": "Comuna Zărneşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30951000", + "longitude": "26.88100000" + }, + { + "id": "93476", + "name": "Comuna Ziduri", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28211000", + "longitude": "27.05974000" + }, + { + "id": "93620", + "name": "Corbu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32108000", + "longitude": "26.24936000" + }, + { + "id": "93659", + "name": "Costeşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "26.76667000" + }, + { + "id": "93684", + "name": "Cozieni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33333000", + "longitude": "26.48333000" + }, + { + "id": "94106", + "name": "Dâmbroca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12328000", + "longitude": "26.95578000" + }, + { + "id": "94136", + "name": "Dăscălești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40626000", + "longitude": "27.25039000" + }, + { + "id": "93909", + "name": "Dedulești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.47003000", + "longitude": "26.96737000" + }, + { + "id": "94189", + "name": "Florica", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90802000", + "longitude": "26.76627000" + }, + { + "id": "94228", + "name": "Fundeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29141000", + "longitude": "26.88028000" + }, + { + "id": "94234", + "name": "Furtunești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45940000", + "longitude": "26.39760000" + }, + { + "id": "94503", + "name": "Gălbinaşi", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "26.91667000" + }, + { + "id": "94515", + "name": "Găvănești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08825000", + "longitude": "27.06499000" + }, + { + "id": "94313", + "name": "Gherăseni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02589000", + "longitude": "26.79128000" + }, + { + "id": "94305", + "name": "Ghergheasa", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26667000", + "longitude": "27.20000000" + }, + { + "id": "94361", + "name": "Glodeanu-Sărat", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "26.65000000" + }, + { + "id": "94360", + "name": "Glodeanu-Siliştea", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83333000", + "longitude": "26.80000000" + }, + { + "id": "94442", + "name": "Grăjdana", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20865000", + "longitude": "26.63114000" + }, + { + "id": "94404", + "name": "Grebănu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38333000", + "longitude": "26.96667000" + }, + { + "id": "94405", + "name": "Greceanca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07863000", + "longitude": "26.54468000" + }, + { + "id": "94432", + "name": "Grunji", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "26.65000000" + }, + { + "id": "94461", + "name": "Gura Teghii", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48333000", + "longitude": "26.41667000" + }, + { + "id": "94714", + "name": "Izvoru", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19249000", + "longitude": "26.59154000" + }, + { + "id": "94719", + "name": "Izvoru Dulce", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34178000", + "longitude": "26.77730000" + }, + { + "id": "94762", + "name": "Largu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "27.15000000" + }, + { + "id": "94799", + "name": "Limpeziș", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95357000", + "longitude": "26.70490000" + }, + { + "id": "94801", + "name": "Lipia", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13970000", + "longitude": "26.73505000" + }, + { + "id": "94833", + "name": "Lopătari", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48333000", + "longitude": "26.58333000" + }, + { + "id": "94838", + "name": "Luciu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "27.08333000" + }, + { + "id": "94858", + "name": "Lunca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00494000", + "longitude": "27.21335000" + }, + { + "id": "94866", + "name": "Lunca Jariștei", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48231000", + "longitude": "26.25483000" + }, + { + "id": "94870", + "name": "Lunca Priporului", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43909000", + "longitude": "26.30869000" + }, + { + "id": "94939", + "name": "Maxenu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05162000", + "longitude": "26.85498000" + }, + { + "id": "95216", + "name": "Mânzăleşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "26.65000000" + }, + { + "id": "95240", + "name": "Măgura", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26667000", + "longitude": "26.58333000" + }, + { + "id": "95285", + "name": "Mărăcineni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20000000", + "longitude": "26.80000000" + }, + { + "id": "95274", + "name": "Mărgăriteşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43333000", + "longitude": "26.83333000" + }, + { + "id": "95283", + "name": "Mărunțișu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28610000", + "longitude": "26.35421000" + }, + { + "id": "95288", + "name": "Mătești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21339000", + "longitude": "26.75607000" + }, + { + "id": "94950", + "name": "Merei", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "26.68333000" + }, + { + "id": "94994", + "name": "Mihăileşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "26.66667000" + }, + { + "id": "95080", + "name": "Movila Banului", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98333000", + "longitude": "26.68333000" + }, + { + "id": "95119", + "name": "Municipiul Buzău", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15046000", + "longitude": "26.82136000" + }, + { + "id": "95174", + "name": "Municipiul Râmnicu Sãrat", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38324000", + "longitude": "27.05162000" + }, + { + "id": "95207", + "name": "Murgeşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40000000", + "longitude": "26.88333000" + }, + { + "id": "95369", + "name": "Năeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "26.48333000" + }, + { + "id": "95325", + "name": "Nehoiu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41667000", + "longitude": "26.30000000" + }, + { + "id": "95411", + "name": "Odăile", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38333000", + "longitude": "26.55000000" + }, + { + "id": "95551", + "name": "Oraş Nehoiu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41538000", + "longitude": "26.32089000" + }, + { + "id": "95576", + "name": "Oraş Pãtârlagele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32035000", + "longitude": "26.34539000" + }, + { + "id": "95570", + "name": "Oraş Pogoanele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90555000", + "longitude": "27.01183000" + }, + { + "id": "95656", + "name": "Oreavu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36826000", + "longitude": "27.02301000" + }, + { + "id": "95694", + "name": "Padina", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83333000", + "longitude": "27.11667000" + }, + { + "id": "95712", + "name": "Pardoşi", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36667000", + "longitude": "26.90000000" + }, + { + "id": "96001", + "name": "Pârscov", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "26.55000000" + }, + { + "id": "96012", + "name": "Păltineni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.39596000", + "longitude": "26.32334000" + }, + { + "id": "96018", + "name": "Pănătău", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32113000", + "longitude": "26.39442000" + }, + { + "id": "96026", + "name": "Pătârlagele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32081000", + "longitude": "26.36134000" + }, + { + "id": "95785", + "name": "Pietroasele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "26.56667000" + }, + { + "id": "95787", + "name": "Pietrosu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05928000", + "longitude": "26.75827000" + }, + { + "id": "95810", + "name": "Plevna", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37815000", + "longitude": "27.01310000" + }, + { + "id": "95937", + "name": "Poşta Câlnău", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "26.85000000" + }, + { + "id": "95846", + "name": "Podgoria", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41667000", + "longitude": "27.01667000" + }, + { + "id": "95855", + "name": "Pogoanele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "27.00000000" + }, + { + "id": "95856", + "name": "Pogonele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08645000", + "longitude": "26.86454000" + }, + { + "id": "95934", + "name": "Potoceni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19660000", + "longitude": "26.77649000" + }, + { + "id": "95980", + "name": "Puieștii de Jos", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40267000", + "longitude": "27.22013000" + }, + { + "id": "96045", + "name": "Racoviţeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36667000", + "longitude": "26.90000000" + }, + { + "id": "96167", + "name": "Râmnicelu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36381000", + "longitude": "27.11121000" + }, + { + "id": "96170", + "name": "Râmnicu Sărat", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38333000", + "longitude": "27.05000000" + }, + { + "id": "96097", + "name": "Robeasca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "27.13333000" + }, + { + "id": "96163", + "name": "Ruşeţu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "27.21667000" + }, + { + "id": "96143", + "name": "Rubla", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35300000", + "longitude": "27.07525000" + }, + { + "id": "106003", + "name": "Săgeata", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "26.98333000" + }, + { + "id": "106004", + "name": "Săhăteni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "26.51667000" + }, + { + "id": "106009", + "name": "Sălcioara", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30874000", + "longitude": "27.17692000" + }, + { + "id": "106027", + "name": "Săpoca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "26.75000000" + }, + { + "id": "106034", + "name": "Săruleşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "26.75000000" + }, + { + "id": "96282", + "name": "Scorţoasa", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36403000", + "longitude": "26.66116000" + }, + { + "id": "96289", + "name": "Scurtești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13829000", + "longitude": "26.90397000" + }, + { + "id": "96291", + "name": "Scutelnici", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85000000", + "longitude": "26.91667000" + }, + { + "id": "96386", + "name": "Smeeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98333000", + "longitude": "26.85000000" + }, + { + "id": "96469", + "name": "Stâlpu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "26.71667000" + }, + { + "id": "96475", + "name": "Stăncești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12665000", + "longitude": "26.92319000" + }, + { + "id": "96494", + "name": "Sudiți", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26890000", + "longitude": "26.87183000" + }, + { + "id": "96599", + "name": "Tăbărăști", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07948000", + "longitude": "26.91943000" + }, + { + "id": "106131", + "name": "Topliceni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41667000", + "longitude": "27.00000000" + }, + { + "id": "96645", + "name": "Ulmeni", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "26.65000000" + }, + { + "id": "96664", + "name": "Unguriu", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27933000", + "longitude": "26.63208000" + }, + { + "id": "96699", + "name": "Vadu Paşii", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "26.90000000" + }, + { + "id": "96702", + "name": "Vadu Sorești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31500000", + "longitude": "26.87748000" + }, + { + "id": "96747", + "name": "Valea Părului", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36374000", + "longitude": "26.77706000" + }, + { + "id": "96750", + "name": "Valea Râmnicului", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36395000", + "longitude": "27.04197000" + }, + { + "id": "96751", + "name": "Valea Salciei", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.49622000", + "longitude": "26.82361000" + }, + { + "id": "96921", + "name": "Vâlcele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08692000", + "longitude": "26.63353000" + }, + { + "id": "96923", + "name": "Vâlcelele", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34430000", + "longitude": "27.34937000" + }, + { + "id": "96791", + "name": "Verneşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "26.73333000" + }, + { + "id": "96836", + "name": "Vintilă Vodă", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.46667000", + "longitude": "26.71667000" + }, + { + "id": "96834", + "name": "Vintileanca", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98500000", + "longitude": "26.58005000" + }, + { + "id": "96838", + "name": "Vipereşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "26.46667000" + }, + { + "id": "97015", + "name": "Zărneşti", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "26.86667000" + }, + { + "id": "97017", + "name": "Zărneștii de Slănic", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27708000", + "longitude": "26.75549000" + }, + { + "id": "96991", + "name": "Ziduri", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "27.08333000" + }, + { + "id": "97002", + "name": "Zorești", + "state_id": 4756, + "state_code": "BZ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18177000", + "longitude": "26.70291000" + }, + { + "id": "89962", + "name": "Anina", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07944000", + "longitude": "21.85694000" + }, + { + "id": "89995", + "name": "Armeniş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20000000", + "longitude": "22.31667000" + }, + { + "id": "97071", + "name": "Şopotu Nou", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84194000", + "longitude": "21.86278000" + }, + { + "id": "90491", + "name": "Băile Herculane", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87972000", + "longitude": "22.41250000" + }, + { + "id": "90535", + "name": "Bănia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89583000", + "longitude": "22.04472000" + }, + { + "id": "90555", + "name": "Băuţar", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51667000", + "longitude": "22.56667000" + }, + { + "id": "90113", + "name": "Berlişte", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98667000", + "longitude": "21.46306000" + }, + { + "id": "90117", + "name": "Berzasca", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64712000", + "longitude": "21.95428000" + }, + { + "id": "90118", + "name": "Berzovia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.42611000", + "longitude": "21.62806000" + }, + { + "id": "90178", + "name": "Bocşa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37333000", + "longitude": "21.70917000" + }, + { + "id": "90217", + "name": "Bolvașnița", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34558000", + "longitude": "22.31012000" + }, + { + "id": "90229", + "name": "Borlova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36738000", + "longitude": "22.35200000" + }, + { + "id": "90254", + "name": "Bozovici", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93889000", + "longitude": "22.00167000" + }, + { + "id": "90292", + "name": "Brebu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.42028000", + "longitude": "21.99250000" + }, + { + "id": "90295", + "name": "Brebu Nou", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "22.13333000" + }, + { + "id": "90348", + "name": "Buchin", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36667000", + "longitude": "22.25000000" + }, + { + "id": "90362", + "name": "Bucoşniţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "22.26667000" + }, + { + "id": "90358", + "name": "Bucova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50906000", + "longitude": "22.63731000" + }, + { + "id": "90578", + "name": "Caraşova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19861000", + "longitude": "21.87000000" + }, + { + "id": "90575", + "name": "Caransebeş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41667000", + "longitude": "22.21667000" + }, + { + "id": "93792", + "name": "Câlnic", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33844000", + "longitude": "21.85754000" + }, + { + "id": "93867", + "name": "Cărbunari", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83444000", + "longitude": "21.74417000" + }, + { + "id": "90697", + "name": "Ciclova-Română", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01361000", + "longitude": "21.71917000" + }, + { + "id": "90741", + "name": "Ciuchici", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94139000", + "longitude": "21.61000000" + }, + { + "id": "90744", + "name": "Ciudanoviţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14472000", + "longitude": "21.79778000" + }, + { + "id": "90769", + "name": "Clocotici", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24495000", + "longitude": "21.83467000" + }, + { + "id": "90894", + "name": "Comuna Armeniş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21901000", + "longitude": "22.35198000" + }, + { + "id": "93541", + "name": "Comuna Şopotu Nou", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79650000", + "longitude": "21.85135000" + }, + { + "id": "91233", + "name": "Comuna Bănia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87200000", + "longitude": "22.02747000" + }, + { + "id": "91248", + "name": "Comuna Băuţar", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.53016000", + "longitude": "22.57848000" + }, + { + "id": "90971", + "name": "Comuna Berlişte", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99004000", + "longitude": "21.46920000" + }, + { + "id": "90975", + "name": "Comuna Berzasca", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64845000", + "longitude": "21.98580000" + }, + { + "id": "90976", + "name": "Comuna Berzovia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40777000", + "longitude": "21.60233000" + }, + { + "id": "91043", + "name": "Comuna Bolvaşniţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33634000", + "longitude": "22.33110000" + }, + { + "id": "91068", + "name": "Comuna Bozovici", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97815000", + "longitude": "21.97965000" + }, + { + "id": "91092", + "name": "Comuna Brebu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40358000", + "longitude": "22.01842000" + }, + { + "id": "91094", + "name": "Comuna Brebu Nou", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23062000", + "longitude": "22.11809000" + }, + { + "id": "91127", + "name": "Comuna Buchin", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34756000", + "longitude": "22.20877000" + }, + { + "id": "91137", + "name": "Comuna Bucoşniţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30652000", + "longitude": "22.26856000" + }, + { + "id": "91260", + "name": "Comuna Caraşova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21545000", + "longitude": "21.88149000" + }, + { + "id": "91587", + "name": "Comuna Cărbunari", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83985000", + "longitude": "21.74178000" + }, + { + "id": "91333", + "name": "Comuna Ciclova Română", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97477000", + "longitude": "21.71425000" + }, + { + "id": "91363", + "name": "Comuna Ciuchici", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93914000", + "longitude": "21.61419000" + }, + { + "id": "91366", + "name": "Comuna Ciudanoviţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15308000", + "longitude": "21.75402000" + }, + { + "id": "91413", + "name": "Comuna Constantin Daicoviciu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51458000", + "longitude": "22.16374000" + }, + { + "id": "91418", + "name": "Comuna Copăcele", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48036000", + "longitude": "22.08720000" + }, + { + "id": "91435", + "name": "Comuna Cornea", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01953000", + "longitude": "22.31903000" + }, + { + "id": "91436", + "name": "Comuna Cornereva", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06968000", + "longitude": "22.44671000" + }, + { + "id": "91602", + "name": "Comuna Dalboşeţ", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84425000", + "longitude": "21.93495000" + }, + { + "id": "91649", + "name": "Comuna Doclin", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32370000", + "longitude": "21.64622000" + }, + { + "id": "91652", + "name": "Comuna Dognecea", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24797000", + "longitude": "21.72574000" + }, + { + "id": "91657", + "name": "Comuna Domaşnea", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07577000", + "longitude": "22.33693000" + }, + { + "id": "91747", + "name": "Comuna Eftimie Murgu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87744000", + "longitude": "22.09522000" + }, + { + "id": "91751", + "name": "Comuna Ezeriş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38982000", + "longitude": "21.91754000" + }, + { + "id": "91812", + "name": "Comuna Fârliug", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50025000", + "longitude": "21.85355000" + }, + { + "id": "91778", + "name": "Comuna Forotic", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23159000", + "longitude": "21.57890000" + }, + { + "id": "91976", + "name": "Comuna Gârnic", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75521000", + "longitude": "21.77168000" + }, + { + "id": "91879", + "name": "Comuna Glimboca", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.49499000", + "longitude": "22.32194000" + }, + { + "id": "91905", + "name": "Comuna Goruia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18298000", + "longitude": "21.77054000" + }, + { + "id": "91936", + "name": "Comuna Grădinari", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10488000", + "longitude": "21.60576000" + }, + { + "id": "92049", + "name": "Comuna Iablaniţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97480000", + "longitude": "22.29180000" + }, + { + "id": "92223", + "name": "Comuna Lăpuşnicel", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98679000", + "longitude": "22.20710000" + }, + { + "id": "92224", + "name": "Comuna Lăpuşnicu Mare", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88519000", + "longitude": "21.93321000" + }, + { + "id": "92209", + "name": "Comuna Luncaviţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08520000", + "longitude": "22.25352000" + }, + { + "id": "92214", + "name": "Comuna Lupac", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25215000", + "longitude": "21.80835000" + }, + { + "id": "92241", + "name": "Comuna Marga", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51489000", + "longitude": "22.51537000" + }, + { + "id": "92421", + "name": "Comuna Măureni", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43170000", + "longitude": "21.51348000" + }, + { + "id": "92251", + "name": "Comuna Mehadia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95509000", + "longitude": "22.37181000" + }, + { + "id": "92252", + "name": "Comuna Mehadica", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03894000", + "longitude": "22.26476000" + }, + { + "id": "92423", + "name": "Comuna Naidaş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87584000", + "longitude": "21.56807000" + }, + { + "id": "92471", + "name": "Comuna Obreja", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.46873000", + "longitude": "22.25570000" + }, + { + "id": "92477", + "name": "Comuna Ocna De Fier", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34195000", + "longitude": "21.77503000" + }, + { + "id": "92711", + "name": "Comuna Pãltiniş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40607000", + "longitude": "22.11233000" + }, + { + "id": "92559", + "name": "Comuna Pescari", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67286000", + "longitude": "21.70092000" + }, + { + "id": "92644", + "name": "Comuna Pojejena", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78437000", + "longitude": "21.53365000" + }, + { + "id": "92674", + "name": "Comuna Prigor", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94774000", + "longitude": "22.12896000" + }, + { + "id": "92746", + "name": "Comuna Ramna", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.46530000", + "longitude": "21.72257000" + }, + { + "id": "92841", + "name": "Comuna Răcăşdia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99767000", + "longitude": "21.58786000" + }, + { + "id": "92815", + "name": "Comuna Rusca Montană", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60042000", + "longitude": "22.43638000" + }, + { + "id": "92857", + "name": "Comuna Sacu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57152000", + "longitude": "22.11048000" + }, + { + "id": "92877", + "name": "Comuna Sasca Montană", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90394000", + "longitude": "21.70167000" + }, + { + "id": "92926", + "name": "Comuna Sicheviţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70616000", + "longitude": "21.82910000" + }, + { + "id": "92948", + "name": "Comuna Slatina-Timiş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26064000", + "longitude": "22.31807000" + }, + { + "id": "92969", + "name": "Comuna Socol", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85334000", + "longitude": "21.41782000" + }, + { + "id": "93229", + "name": "Comuna Târnova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33274000", + "longitude": "21.96849000" + }, + { + "id": "93141", + "name": "Comuna Teregova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14536000", + "longitude": "22.31192000" + }, + { + "id": "93150", + "name": "Comuna Ticvaniu Mare", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15901000", + "longitude": "21.65596000" + }, + { + "id": "93175", + "name": "Comuna Topleţ", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80454000", + "longitude": "22.39102000" + }, + { + "id": "93216", + "name": "Comuna Turnu Rueni", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.39767000", + "longitude": "22.31756000" + }, + { + "id": "93461", + "name": "Comuna Văliug", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22643000", + "longitude": "22.03169000" + }, + { + "id": "93464", + "name": "Comuna Vărădia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07166000", + "longitude": "21.54036000" + }, + { + "id": "93345", + "name": "Comuna Vermeş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.52216000", + "longitude": "21.62988000" + }, + { + "id": "93409", + "name": "Comuna Vrani", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02799000", + "longitude": "21.48549000" + }, + { + "id": "93492", + "name": "Comuna Zăvoi", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.49706000", + "longitude": "22.44346000" + }, + { + "id": "93480", + "name": "Comuna Zorlenţu Mare", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.46419000", + "longitude": "21.98155000" + }, + { + "id": "93594", + "name": "Constantin Daicoviciu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.55000000", + "longitude": "22.15000000" + }, + { + "id": "93603", + "name": "Copăcele", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "22.10000000" + }, + { + "id": "93630", + "name": "Cornea", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "22.31667000" + }, + { + "id": "93631", + "name": "Cornereva", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "22.41667000" + }, + { + "id": "93642", + "name": "Cornuțel", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43489000", + "longitude": "22.09556000" + }, + { + "id": "93649", + "name": "Coronini", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68004000", + "longitude": "21.68552000" + }, + { + "id": "93890", + "name": "Dalboșeț", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86399000", + "longitude": "21.95854000" + }, + { + "id": "93975", + "name": "Doclin", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29694000", + "longitude": "21.65389000" + }, + { + "id": "93980", + "name": "Dognecea", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27417000", + "longitude": "21.75694000" + }, + { + "id": "93988", + "name": "Domaşnea", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "22.31667000" + }, + { + "id": "94139", + "name": "Eftimie Murgu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90028000", + "longitude": "22.09278000" + }, + { + "id": "94146", + "name": "Ezeriş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41083000", + "longitude": "21.88583000" + }, + { + "id": "94245", + "name": "Fârliug", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48833000", + "longitude": "21.84944000" + }, + { + "id": "94182", + "name": "Fizeș", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36403000", + "longitude": "21.59517000" + }, + { + "id": "94198", + "name": "Forotic", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23028000", + "longitude": "21.58750000" + }, + { + "id": "94495", + "name": "Gârnic", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78639000", + "longitude": "21.79444000" + }, + { + "id": "94311", + "name": "Gherteniș", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43315000", + "longitude": "21.58126000" + }, + { + "id": "94357", + "name": "Glimboca", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48333000", + "longitude": "22.31667000" + }, + { + "id": "94389", + "name": "Goruia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18722000", + "longitude": "21.77917000" + }, + { + "id": "94436", + "name": "Grădinari", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11861000", + "longitude": "21.59889000" + }, + { + "id": "94411", + "name": "Greoni", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08901000", + "longitude": "21.61731000" + }, + { + "id": "94613", + "name": "Iablaniţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95028000", + "longitude": "22.31417000" + }, + { + "id": "94897", + "name": "Lăpuşnicel", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98306000", + "longitude": "22.22694000" + }, + { + "id": "94898", + "name": "Lăpuşnicu Mare", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91306000", + "longitude": "21.94417000" + }, + { + "id": "94812", + "name": "Liubcova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65885000", + "longitude": "21.89559000" + }, + { + "id": "94875", + "name": "Luncaviţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "22.26667000" + }, + { + "id": "94883", + "name": "Lupac", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28000000", + "longitude": "21.81278000" + }, + { + "id": "94927", + "name": "Marga", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "22.51667000" + }, + { + "id": "95281", + "name": "Măru", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.47586000", + "longitude": "22.45039000" + }, + { + "id": "95292", + "name": "Măureni", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40389000", + "longitude": "21.50250000" + }, + { + "id": "94945", + "name": "Mehadia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90083000", + "longitude": "22.36694000" + }, + { + "id": "94946", + "name": "Mehadica", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "22.26667000" + }, + { + "id": "95061", + "name": "Moldova Nouă", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73750000", + "longitude": "21.66694000" + }, + { + "id": "95124", + "name": "Municipiul Caransebeş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43476000", + "longitude": "22.20358000" + }, + { + "id": "95171", + "name": "Municipiul Reşiţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.29838000", + "longitude": "21.91192000" + }, + { + "id": "95198", + "name": "Muntele Mic", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38333000", + "longitude": "22.33333000" + }, + { + "id": "95298", + "name": "Naidăș", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88108000", + "longitude": "21.59061000" + }, + { + "id": "95690", + "name": "Oţelu Roşu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.53333000", + "longitude": "22.36667000" + }, + { + "id": "95387", + "name": "Obreja", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48333000", + "longitude": "22.25000000" + }, + { + "id": "95449", + "name": "Oraş Anina", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07683000", + "longitude": "21.85213000" + }, + { + "id": "95483", + "name": "Oraş Bãile Herculane", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87326000", + "longitude": "22.41613000" + }, + { + "id": "95464", + "name": "Oraş Bocşa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37570000", + "longitude": "21.71483000" + }, + { + "id": "95563", + "name": "Oraş Oţelu Roşu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51638000", + "longitude": "22.38135000" + }, + { + "id": "95560", + "name": "Oraş Oraviţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05918000", + "longitude": "21.70739000" + }, + { + "id": "95446", + "name": "Oraviţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03250000", + "longitude": "21.68944000" + }, + { + "id": "95695", + "name": "Padina Matei", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75843000", + "longitude": "21.75067000" + }, + { + "id": "96013", + "name": "Păltiniş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43333000", + "longitude": "22.15000000" + }, + { + "id": "95757", + "name": "Petroșnița", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32351000", + "longitude": "22.25920000" + }, + { + "id": "95832", + "name": "Plugova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96250000", + "longitude": "22.35864000" + }, + { + "id": "95897", + "name": "Pojejena", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77417000", + "longitude": "21.57917000" + }, + { + "id": "95951", + "name": "Prigor", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93833000", + "longitude": "22.11333000" + }, + { + "id": "96058", + "name": "Ramna", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43833000", + "longitude": "21.68833000" + }, + { + "id": "96192", + "name": "Răcăşdia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99306000", + "longitude": "21.61806000" + }, + { + "id": "96091", + "name": "Reşiţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30083000", + "longitude": "21.88917000" + }, + { + "id": "96158", + "name": "Rusca", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14517000", + "longitude": "22.33859000" + }, + { + "id": "96159", + "name": "Rusca Montană", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56741000", + "longitude": "22.45816000" + }, + { + "id": "96222", + "name": "Sacu", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56667000", + "longitude": "22.11667000" + }, + { + "id": "96248", + "name": "Sasca Montană", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88546000", + "longitude": "21.70915000" + }, + { + "id": "96334", + "name": "Sicheviţa", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73500000", + "longitude": "21.84861000" + }, + { + "id": "96363", + "name": "Slatina-Timiş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "22.28333000" + }, + { + "id": "96397", + "name": "Socol", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86083000", + "longitude": "21.37028000" + }, + { + "id": "96424", + "name": "Steierdorf", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06359000", + "longitude": "21.85216000" + }, + { + "id": "96596", + "name": "Târnova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34250000", + "longitude": "22.00611000" + }, + { + "id": "106084", + "name": "Teregova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "22.28333000" + }, + { + "id": "106095", + "name": "Ticvaniu Mare", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13528000", + "longitude": "21.63806000" + }, + { + "id": "106130", + "name": "Topleţ", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79722000", + "longitude": "22.39444000" + }, + { + "id": "96567", + "name": "Turnu Ruieni", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.39070000", + "longitude": "22.33557000" + }, + { + "id": "96711", + "name": "Valea Bolvașnița", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94602000", + "longitude": "22.39019000" + }, + { + "id": "96937", + "name": "Vârciorova", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32710000", + "longitude": "22.35208000" + }, + { + "id": "96967", + "name": "Văliug", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "22.03333000" + }, + { + "id": "96972", + "name": "Vărădia", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07833000", + "longitude": "21.54694000" + }, + { + "id": "96786", + "name": "Verendin", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07755000", + "longitude": "22.23917000" + }, + { + "id": "96789", + "name": "Vermeş", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.52056000", + "longitude": "21.65972000" + }, + { + "id": "96896", + "name": "Vrani", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03833000", + "longitude": "21.49250000" + }, + { + "id": "97022", + "name": "Zăvoi", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51667000", + "longitude": "22.41667000" + }, + { + "id": "97005", + "name": "Zorlenţu Mare", + "state_id": 4753, + "state_code": "CS", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45056000", + "longitude": "21.95611000" + }, + { + "id": "89927", + "name": "Alexandru Odobescu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26667000", + "longitude": "27.08333000" + }, + { + "id": "89975", + "name": "Aprozi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26616000", + "longitude": "26.50213000" + }, + { + "id": "97068", + "name": "Şoldanu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21667000", + "longitude": "26.51667000" + }, + { + "id": "97078", + "name": "Ştefan Vodă", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31667000", + "longitude": "27.31667000" + }, + { + "id": "90085", + "name": "Belciugatele", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48333000", + "longitude": "26.43333000" + }, + { + "id": "90221", + "name": "Borcea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33333000", + "longitude": "27.75000000" + }, + { + "id": "90382", + "name": "Budeşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23472000", + "longitude": "26.46583000" + }, + { + "id": "93848", + "name": "Călăraşi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20510000", + "longitude": "27.31356000" + }, + { + "id": "93874", + "name": "Căscioarele", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12611000", + "longitude": "26.46972000" + }, + { + "id": "90598", + "name": "Ceacu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26530000", + "longitude": "27.25213000" + }, + { + "id": "90679", + "name": "Chirnogi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "26.56667000" + }, + { + "id": "90682", + "name": "Chiselet", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "26.85000000" + }, + { + "id": "90714", + "name": "Ciocăneşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20000000", + "longitude": "27.06667000" + }, + { + "id": "90779", + "name": "Coconi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24769000", + "longitude": "26.88409000" + }, + { + "id": "90849", + "name": "Comuna Alexandru Odobescu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.27254000", + "longitude": "27.09402000" + }, + { + "id": "93539", + "name": "Comuna Şoldanu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22675000", + "longitude": "26.51224000" + }, + { + "id": "93547", + "name": "Comuna Ştefan Cel Mare", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42593000", + "longitude": "27.63963000" + }, + { + "id": "93548", + "name": "Comuna Ştefan Vodă", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33097000", + "longitude": "27.32505000" + }, + { + "id": "90950", + "name": "Comuna Belciugatele", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51160000", + "longitude": "26.44556000" + }, + { + "id": "91046", + "name": "Comuna Borcea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.32356000", + "longitude": "27.71808000" + }, + { + "id": "91591", + "name": "Comuna Căscioarele", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12731000", + "longitude": "26.46960000" + }, + { + "id": "91322", + "name": "Comuna Chirnogi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11064000", + "longitude": "26.57747000" + }, + { + "id": "91325", + "name": "Comuna Chiselet", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16868000", + "longitude": "26.85603000" + }, + { + "id": "91345", + "name": "Comuna Ciocăneşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19701000", + "longitude": "27.06530000" + }, + { + "id": "91502", + "name": "Comuna Crivăţ", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19338000", + "longitude": "26.43846000" + }, + { + "id": "91527", + "name": "Comuna Curcani", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20208000", + "longitude": "26.57632000" + }, + { + "id": "91535", + "name": "Comuna Cuza Vodă", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26730000", + "longitude": "27.27113000" + }, + { + "id": "91622", + "name": "Comuna Dichiseni", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23056000", + "longitude": "27.53466000" + }, + { + "id": "91660", + "name": "Comuna Dor Mărunt", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44116000", + "longitude": "26.99417000" + }, + { + "id": "91665", + "name": "Comuna Dorobanţu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22324000", + "longitude": "26.95219000" + }, + { + "id": "91670", + "name": "Comuna Dragalina", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44479000", + "longitude": "27.37537000" + }, + { + "id": "91677", + "name": "Comuna Dragoş Vodă", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44836000", + "longitude": "27.15382000" + }, + { + "id": "91792", + "name": "Comuna Frăsinet", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30798000", + "longitude": "26.82463000" + }, + { + "id": "91786", + "name": "Comuna Frumuşani", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31716000", + "longitude": "26.30967000" + }, + { + "id": "91799", + "name": "Comuna Fundeni", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38325000", + "longitude": "26.34968000" + }, + { + "id": "91980", + "name": "Comuna Gălbinaşi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31724000", + "longitude": "26.41941000" + }, + { + "id": "91939", + "name": "Comuna Grădiştea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21945000", + "longitude": "27.16160000" + }, + { + "id": "91959", + "name": "Comuna Gurbăneşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37540000", + "longitude": "26.69277000" + }, + { + "id": "92068", + "name": "Comuna Ileana", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52732000", + "longitude": "26.68993000" + }, + { + "id": "92078", + "name": "Comuna Independenţa", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.27922000", + "longitude": "27.16053000" + }, + { + "id": "92117", + "name": "Comuna Jegălia", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29436000", + "longitude": "27.64286000" + }, + { + "id": "92144", + "name": "Comuna Lehliu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48828000", + "longitude": "26.82729000" + }, + { + "id": "92194", + "name": "Comuna Luica", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24126000", + "longitude": "26.60071000" + }, + { + "id": "92217", + "name": "Comuna Lupşanu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38075000", + "longitude": "26.94842000" + }, + { + "id": "92368", + "name": "Comuna Mânăstirea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23953000", + "longitude": "26.87940000" + }, + { + "id": "92308", + "name": "Comuna Mitreni", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16339000", + "longitude": "26.61454000" + }, + { + "id": "92315", + "name": "Comuna Modelu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19661000", + "longitude": "27.38960000" + }, + { + "id": "92425", + "name": "Comuna Nana", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26771000", + "longitude": "26.59199000" + }, + { + "id": "92441", + "name": "Comuna Nicolae Bălcescu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44506000", + "longitude": "26.75839000" + }, + { + "id": "92556", + "name": "Comuna Perişoru", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43266000", + "longitude": "27.50197000" + }, + { + "id": "92606", + "name": "Comuna Plătăreşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34476000", + "longitude": "26.38255000" + }, + { + "id": "92744", + "name": "Comuna Radovanu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17671000", + "longitude": "26.53259000" + }, + { + "id": "92791", + "name": "Comuna Roseţi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21435000", + "longitude": "27.45085000" + }, + { + "id": "93109", + "name": "Comuna Săruleşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41289000", + "longitude": "26.61657000" + }, + { + "id": "92971", + "name": "Comuna Sohatu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35549000", + "longitude": "26.52161000" + }, + { + "id": "92980", + "name": "Comuna Spanţov", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13110000", + "longitude": "26.78896000" + }, + { + "id": "93233", + "name": "Comuna Tãmãdãu Mare", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45951000", + "longitude": "26.57622000" + }, + { + "id": "93260", + "name": "Comuna Ulmeni", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14587000", + "longitude": "26.72793000" + }, + { + "id": "93265", + "name": "Comuna Ulmu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28725000", + "longitude": "26.91814000" + }, + { + "id": "93275", + "name": "Comuna Unirea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25119000", + "longitude": "27.58278000" + }, + { + "id": "93298", + "name": "Comuna Valea Argovei", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34829000", + "longitude": "26.78180000" + }, + { + "id": "93335", + "name": "Comuna Vasilaţi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29143000", + "longitude": "26.42151000" + }, + { + "id": "93429", + "name": "Comuna Vâlcelele", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37457000", + "longitude": "27.16661000" + }, + { + "id": "93381", + "name": "Comuna Vlad Ţepeş", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34482000", + "longitude": "27.08505000" + }, + { + "id": "93593", + "name": "Constantin Brâncoveanu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47842000", + "longitude": "27.41274000" + }, + { + "id": "93731", + "name": "Crivăț", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19338000", + "longitude": "26.43846000" + }, + { + "id": "93772", + "name": "Curcani", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20000000", + "longitude": "26.58333000" + }, + { + "id": "93784", + "name": "Cuza Vodă", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26667000", + "longitude": "27.26667000" + }, + { + "id": "94103", + "name": "Dâlga-Gară", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43333000", + "longitude": "27.05000000" + }, + { + "id": "93933", + "name": "Dichiseni", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23333000", + "longitude": "27.53333000" + }, + { + "id": "93995", + "name": "Dor Mărunt", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "26.91667000" + }, + { + "id": "94001", + "name": "Dorobanţu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21667000", + "longitude": "26.95000000" + }, + { + "id": "94005", + "name": "Dorobanțu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35416000", + "longitude": "26.39341000" + }, + { + "id": "94011", + "name": "Dragalina", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43333000", + "longitude": "27.31667000" + }, + { + "id": "94023", + "name": "Dragoș Vodă", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43333000", + "longitude": "27.15000000" + }, + { + "id": "94025", + "name": "Drajna Nouă", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42262000", + "longitude": "27.38007000" + }, + { + "id": "97132", + "name": "Ștefan cel Mare", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42639000", + "longitude": "27.64556000" + }, + { + "id": "94217", + "name": "Frăsinet", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31667000", + "longitude": "26.80000000" + }, + { + "id": "94210", + "name": "Frumuşani", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29611000", + "longitude": "26.32556000" + }, + { + "id": "94225", + "name": "Fundeni", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "26.35000000" + }, + { + "id": "94231", + "name": "Fundulea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "26.51667000" + }, + { + "id": "94477", + "name": "Gâldău", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30544000", + "longitude": "27.66972000" + }, + { + "id": "94504", + "name": "Gălbinași", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31724000", + "longitude": "26.41941000" + }, + { + "id": "94437", + "name": "Grădiştea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23333000", + "longitude": "27.21667000" + }, + { + "id": "94472", + "name": "Gurbăneşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "26.70000000" + }, + { + "id": "94645", + "name": "Iezeru", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28617000", + "longitude": "27.62447000" + }, + { + "id": "94654", + "name": "Ileana", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51667000", + "longitude": "26.66667000" + }, + { + "id": "94666", + "name": "Independenţa", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "27.15000000" + }, + { + "id": "94725", + "name": "Jegălia", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30000000", + "longitude": "27.63333000" + }, + { + "id": "94769", + "name": "Lehliu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "26.81667000" + }, + { + "id": "94770", + "name": "Lehliu-Gară", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43333000", + "longitude": "26.85000000" + }, + { + "id": "94847", + "name": "Luica", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23333000", + "longitude": "26.58333000" + }, + { + "id": "94887", + "name": "Lupşanu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "26.90000000" + }, + { + "id": "95217", + "name": "Mânăstirea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21667000", + "longitude": "26.90000000" + }, + { + "id": "94979", + "name": "Mihai Viteazu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34864000", + "longitude": "27.07361000" + }, + { + "id": "95032", + "name": "Mitreni", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16667000", + "longitude": "26.60000000" + }, + { + "id": "95046", + "name": "Modelu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19574000", + "longitude": "27.38720000" + }, + { + "id": "95134", + "name": "Municipiul Călăraşi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20000000", + "longitude": "27.33333000" + }, + { + "id": "95161", + "name": "Municipiul Olteniţa", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09204000", + "longitude": "26.64183000" + }, + { + "id": "95301", + "name": "Nana", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26667000", + "longitude": "26.58333000" + }, + { + "id": "95307", + "name": "Negoești", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23065000", + "longitude": "26.50151000" + }, + { + "id": "95336", + "name": "Nicolae Bălcescu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "26.76667000" + }, + { + "id": "95433", + "name": "Olteniţa", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08333000", + "longitude": "26.63333000" + }, + { + "id": "95474", + "name": "Oraş Budeşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24766000", + "longitude": "26.45099000" + }, + { + "id": "95520", + "name": "Oraş Fundulea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46456000", + "longitude": "26.49901000" + }, + { + "id": "95537", + "name": "Oraş Lehliu Garã", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42178000", + "longitude": "26.86167000" + }, + { + "id": "95737", + "name": "Perişoru", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "27.55000000" + }, + { + "id": "95834", + "name": "Plătăreşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "26.36667000" + }, + { + "id": "95927", + "name": "Potcoava", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26332000", + "longitude": "27.13223000" + }, + { + "id": "95960", + "name": "Progresu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35886000", + "longitude": "26.46110000" + }, + { + "id": "96055", + "name": "Radovanu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20000000", + "longitude": "26.51667000" + }, + { + "id": "96056", + "name": "Radu Vodă", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38563000", + "longitude": "26.92541000" + }, + { + "id": "96060", + "name": "Rasa", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21404000", + "longitude": "27.14717000" + }, + { + "id": "96217", + "name": "Răzvani", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42114000", + "longitude": "26.88092000" + }, + { + "id": "96118", + "name": "Roseţi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21482000", + "longitude": "27.44848000" + }, + { + "id": "106028", + "name": "Săpunari", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50141000", + "longitude": "26.83665000" + }, + { + "id": "106033", + "name": "Săruleşti", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "26.65000000" + }, + { + "id": "106035", + "name": "Sărulești-Gară", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44444000", + "longitude": "26.65780000" + }, + { + "id": "96400", + "name": "Sohatu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31667000", + "longitude": "26.50000000" + }, + { + "id": "96413", + "name": "Spanţov", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "26.78333000" + }, + { + "id": "96422", + "name": "Stancea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13680000", + "longitude": "26.81226000" + }, + { + "id": "96501", + "name": "Sultana", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26062000", + "longitude": "26.85424000" + }, + { + "id": "96606", + "name": "Tămădău Mare", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "26.55000000" + }, + { + "id": "96647", + "name": "Ulmeni", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15000000", + "longitude": "26.71667000" + }, + { + "id": "96651", + "name": "Ulmu", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26667000", + "longitude": "26.91667000" + }, + { + "id": "96666", + "name": "Unirea", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26667000", + "longitude": "27.63333000" + }, + { + "id": "96708", + "name": "Valea Argovei", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "26.78333000" + }, + { + "id": "96749", + "name": "Valea Roșie", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17755000", + "longitude": "26.63457000" + }, + { + "id": "96775", + "name": "Vasilaţi", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28778000", + "longitude": "26.44750000" + }, + { + "id": "96922", + "name": "Vâlcelele", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38834000", + "longitude": "27.15022000" + }, + { + "id": "96975", + "name": "Vărăști", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21244000", + "longitude": "26.97188000" + }, + { + "id": "96855", + "name": "Vlad Ţepeş", + "state_id": 4732, + "state_code": "CL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "27.08333000" + }, + { + "id": "90014", + "name": "Aşchileu Dorna", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "23.48333000" + }, + { + "id": "89894", + "name": "Aghireșu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.87209000", + "longitude": "23.23773000" + }, + { + "id": "89895", + "name": "Aghireșu-Fabrici", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86690000", + "longitude": "23.27129000" + }, + { + "id": "89906", + "name": "Aiton", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68333000", + "longitude": "23.73333000" + }, + { + "id": "89941", + "name": "Aluniş", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "23.75000000" + }, + { + "id": "89969", + "name": "Apahida", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "23.75000000" + }, + { + "id": "97099", + "name": "Ţaga", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "24.05000000" + }, + { + "id": "90022", + "name": "Baciu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80000000", + "longitude": "23.51667000" + }, + { + "id": "90496", + "name": "Băişoara", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "23.46667000" + }, + { + "id": "90091", + "name": "Beliş", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65000000", + "longitude": "23.03333000" + }, + { + "id": "90174", + "name": "Bobâlna", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.14385000", + "longitude": "23.64461000" + }, + { + "id": "90192", + "name": "Bogdăneşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63333000", + "longitude": "23.13333000" + }, + { + "id": "90219", + "name": "Bonțida", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91550000", + "longitude": "23.81475000" + }, + { + "id": "90239", + "name": "Borşa", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "23.66667000" + }, + { + "id": "90430", + "name": "Buza", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90000000", + "longitude": "24.15000000" + }, + { + "id": "93822", + "name": "Câţcău", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "23.78333000" + }, + { + "id": "93797", + "name": "Câmpia Turzii", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55000000", + "longitude": "23.88333000" + }, + { + "id": "93885", + "name": "Căşeiu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18333000", + "longitude": "23.86667000" + }, + { + "id": "93825", + "name": "Căianu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78460000", + "longitude": "23.91850000" + }, + { + "id": "93826", + "name": "Căianu Mic", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "23.91667000" + }, + { + "id": "93852", + "name": "Călăţele", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "23.01667000" + }, + { + "id": "93851", + "name": "Călăraşi", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48333000", + "longitude": "23.86667000" + }, + { + "id": "93854", + "name": "Cămăraşu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "24.13333000" + }, + { + "id": "93861", + "name": "Căpuşu Mare", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "23.30000000" + }, + { + "id": "93879", + "name": "Cătina", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "24.18333000" + }, + { + "id": "90602", + "name": "Ceanu Mare", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66667000", + "longitude": "23.95000000" + }, + { + "id": "90669", + "name": "Chinteni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86667000", + "longitude": "23.53333000" + }, + { + "id": "90685", + "name": "Chiuiești", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29686000", + "longitude": "23.87553000" + }, + { + "id": "90740", + "name": "Ciucea", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "22.81667000" + }, + { + "id": "90758", + "name": "Ciurila", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65000000", + "longitude": "23.55000000" + }, + { + "id": "90771", + "name": "Cluj-Napoca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "23.60000000" + }, + { + "id": "90790", + "name": "Cojocna", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75000000", + "longitude": "23.83333000" + }, + { + "id": "90910", + "name": "Comuna Aşchileu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98498000", + "longitude": "23.48468000" + }, + { + "id": "90830", + "name": "Comuna Aghireşu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.87785000", + "longitude": "23.25320000" + }, + { + "id": "90836", + "name": "Comuna Aiton", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68275000", + "longitude": "23.71608000" + }, + { + "id": "90860", + "name": "Comuna Aluniş", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05595000", + "longitude": "23.74365000" + }, + { + "id": "90876", + "name": "Comuna Apahida", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78296000", + "longitude": "23.74433000" + }, + { + "id": "93567", + "name": "Comuna Ţaga", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95100000", + "longitude": "24.02605000" + }, + { + "id": "90914", + "name": "Comuna Baciu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82010000", + "longitude": "23.49036000" + }, + { + "id": "91208", + "name": "Comuna Băişoara", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58331000", + "longitude": "23.39349000" + }, + { + "id": "90955", + "name": "Comuna Beliş", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65246000", + "longitude": "22.95213000" + }, + { + "id": "91013", + "name": "Comuna Bobâlna", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13319000", + "longitude": "23.65163000" + }, + { + "id": "91044", + "name": "Comuna Bonţida", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90036000", + "longitude": "23.82228000" + }, + { + "id": "91057", + "name": "Comuna Borşa", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92402000", + "longitude": "23.64940000" + }, + { + "id": "91178", + "name": "Comuna Buza", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90492000", + "longitude": "24.18041000" + }, + { + "id": "91558", + "name": "Comuna Câţcău", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23058000", + "longitude": "23.79331000" + }, + { + "id": "91564", + "name": "Comuna Cãpuşu Mare", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78746000", + "longitude": "23.23462000" + }, + { + "id": "91598", + "name": "Comuna Căşeiu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23810000", + "longitude": "23.86404000" + }, + { + "id": "91567", + "name": "Comuna Căianu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80670000", + "longitude": "23.90883000" + }, + { + "id": "91579", + "name": "Comuna Călăţele", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76282000", + "longitude": "23.03046000" + }, + { + "id": "91578", + "name": "Comuna Călăraşi", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.49376000", + "longitude": "23.85359000" + }, + { + "id": "91580", + "name": "Comuna Cămăraşu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78695000", + "longitude": "24.11369000" + }, + { + "id": "91594", + "name": "Comuna Cătina", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85179000", + "longitude": "24.16497000" + }, + { + "id": "91273", + "name": "Comuna Ceanu Mare", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65324000", + "longitude": "23.94586000" + }, + { + "id": "91316", + "name": "Comuna Chinteni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88822000", + "longitude": "23.55319000" + }, + { + "id": "91327", + "name": "Comuna Chiuieşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32292000", + "longitude": "23.92016000" + }, + { + "id": "91362", + "name": "Comuna Ciucea", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95981000", + "longitude": "22.84363000" + }, + { + "id": "91376", + "name": "Comuna Ciurila", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63372000", + "longitude": "23.53979000" + }, + { + "id": "91395", + "name": "Comuna Cojocna", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72137000", + "longitude": "23.83949000" + }, + { + "id": "91438", + "name": "Comuna Corneşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02811000", + "longitude": "23.68500000" + }, + { + "id": "91537", + "name": "Comuna Cuzdrioara", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18274000", + "longitude": "23.93248000" + }, + { + "id": "91731", + "name": "Comuna Dăbâca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96989000", + "longitude": "23.69456000" + }, + { + "id": "91756", + "name": "Comuna Feleacu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70345000", + "longitude": "23.64021000" + }, + { + "id": "91769", + "name": "Comuna Fizeşu Gherlii", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99442000", + "longitude": "23.94727000" + }, + { + "id": "91770", + "name": "Comuna Floreşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73375000", + "longitude": "23.47861000" + }, + { + "id": "91780", + "name": "Comuna Frata", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69878000", + "longitude": "24.05385000" + }, + { + "id": "91967", + "name": "Comuna Gârbãu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84059000", + "longitude": "23.37049000" + }, + { + "id": "91835", + "name": "Comuna Geaca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88141000", + "longitude": "24.06256000" + }, + { + "id": "91868", + "name": "Comuna Gilău", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72607000", + "longitude": "23.34909000" + }, + { + "id": "92055", + "name": "Comuna Iara", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.54268000", + "longitude": "23.52749000" + }, + { + "id": "92059", + "name": "Comuna Iclod", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99174000", + "longitude": "23.81618000" + }, + { + "id": "92112", + "name": "Comuna Izvoru Crişului", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84542000", + "longitude": "23.10025000" + }, + { + "id": "92120", + "name": "Comuna Jichişu De Jos", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12028000", + "longitude": "23.76788000" + }, + { + "id": "92132", + "name": "Comuna Jucu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84958000", + "longitude": "23.80953000" + }, + { + "id": "92197", + "name": "Comuna Luna", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47522000", + "longitude": "23.94928000" + }, + { + "id": "92371", + "name": "Comuna Mânăstireni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79131000", + "longitude": "23.09871000" + }, + { + "id": "92375", + "name": "Comuna Mãguri-Rãcãtãu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63948000", + "longitude": "23.19485000" + }, + { + "id": "92410", + "name": "Comuna Mărgău", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75677000", + "longitude": "22.94429000" + }, + { + "id": "92411", + "name": "Comuna Mărişel", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68422000", + "longitude": "23.11466000" + }, + { + "id": "92263", + "name": "Comuna Mica", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.14436000", + "longitude": "23.97593000" + }, + { + "id": "92273", + "name": "Comuna Mihai Viteazu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53477000", + "longitude": "23.71595000" + }, + { + "id": "92293", + "name": "Comuna Mintiu Gherlii", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07323000", + "longitude": "23.92731000" + }, + { + "id": "92314", + "name": "Comuna Mociu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79232000", + "longitude": "24.02853000" + }, + { + "id": "92325", + "name": "Comuna Moldoveneşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47350000", + "longitude": "23.68905000" + }, + { + "id": "92431", + "name": "Comuna Negreni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95224000", + "longitude": "22.75835000" + }, + { + "id": "92535", + "name": "Comuna Panticeu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04079000", + "longitude": "23.55639000" + }, + { + "id": "92710", + "name": "Comuna Pãlatca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.87358000", + "longitude": "23.98288000" + }, + { + "id": "92564", + "name": "Comuna Petreştii De Jos", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58162000", + "longitude": "23.62191000" + }, + { + "id": "92602", + "name": "Comuna Ploscoş", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66066000", + "longitude": "23.84322000" + }, + { + "id": "92640", + "name": "Comuna Poieni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88361000", + "longitude": "22.86041000" + }, + { + "id": "92829", + "name": "Comuna Râșca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73082000", + "longitude": "23.15413000" + }, + { + "id": "92756", + "name": "Comuna Recea Cristur", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12155000", + "longitude": "23.54554000" + }, + { + "id": "93050", + "name": "Comuna Sâncraiu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83410000", + "longitude": "22.99135000" + }, + { + "id": "93060", + "name": "Comuna Sânmărtin", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00708000", + "longitude": "24.07336000" + }, + { + "id": "93062", + "name": "Comuna Sânpaul", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.89597000", + "longitude": "23.41731000" + }, + { + "id": "93074", + "name": "Comuna Sãcuieu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81600000", + "longitude": "22.86010000" + }, + { + "id": "93103", + "name": "Comuna Sănduleşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58887000", + "longitude": "23.73049000" + }, + { + "id": "93119", + "name": "Comuna Săvădisla", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66540000", + "longitude": "23.44808000" + }, + { + "id": "92925", + "name": "Comuna Sic", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93134000", + "longitude": "23.89615000" + }, + { + "id": "93023", + "name": "Comuna Suatu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75372000", + "longitude": "23.95820000" + }, + { + "id": "93194", + "name": "Comuna Tritenii De Jos", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58735000", + "longitude": "24.00139000" + }, + { + "id": "93213", + "name": "Comuna Tureni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63917000", + "longitude": "23.67684000" + }, + { + "id": "93270", + "name": "Comuna Unguraş", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "24.05000000" + }, + { + "id": "93289", + "name": "Comuna Vad", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20634000", + "longitude": "23.71403000" + }, + { + "id": "93307", + "name": "Comuna Valea Ierii", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.64086000", + "longitude": "23.31997000" + }, + { + "id": "93358", + "name": "Comuna Viişoara", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55377000", + "longitude": "23.93583000" + }, + { + "id": "93416", + "name": "Comuna Vultureni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95597000", + "longitude": "23.56762000" + }, + { + "id": "93605", + "name": "Copăceni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59675000", + "longitude": "23.73886000" + }, + { + "id": "93634", + "name": "Corneşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "23.68333000" + }, + { + "id": "93788", + "name": "Cuzdrioara", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "23.91667000" + }, + { + "id": "94115", + "name": "Dăbâca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "23.66667000" + }, + { + "id": "93910", + "name": "Dej", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "23.86667000" + }, + { + "id": "93931", + "name": "Dezmir", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76475000", + "longitude": "23.72451000" + }, + { + "id": "94154", + "name": "Feleacu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71667000", + "longitude": "23.61667000" + }, + { + "id": "94181", + "name": "Fizeşu Gherlii", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "23.98333000" + }, + { + "id": "94185", + "name": "Floreşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.74574000", + "longitude": "23.49375000" + }, + { + "id": "94202", + "name": "Frata", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70000000", + "longitude": "24.05000000" + }, + { + "id": "94485", + "name": "Gârbău", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83305000", + "longitude": "23.35240000" + }, + { + "id": "94285", + "name": "Geaca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86667000", + "longitude": "24.10000000" + }, + { + "id": "94304", + "name": "Gheorghieni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71393000", + "longitude": "23.68853000" + }, + { + "id": "94308", + "name": "Gherla", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "23.91667000" + }, + { + "id": "94344", + "name": "Gilău", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73245000", + "longitude": "23.36174000" + }, + { + "id": "94572", + "name": "Huedin", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86667000", + "longitude": "23.05000000" + }, + { + "id": "94624", + "name": "Iara", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55000000", + "longitude": "23.51667000" + }, + { + "id": "94634", + "name": "Iclod", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "23.80000000" + }, + { + "id": "94718", + "name": "Izvoru Crişului", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "23.10000000" + }, + { + "id": "94731", + "name": "Jichişu de Jos", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "23.80000000" + }, + { + "id": "94851", + "name": "Luna", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50659000", + "longitude": "23.91959000" + }, + { + "id": "94852", + "name": "Luna de Sus", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.74313000", + "longitude": "23.43539000" + }, + { + "id": "94874", + "name": "Luncani", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47274000", + "longitude": "23.95095000" + }, + { + "id": "95219", + "name": "Mânăstireni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "23.08333000" + }, + { + "id": "95246", + "name": "Măguri", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62849000", + "longitude": "23.10294000" + }, + { + "id": "95247", + "name": "Măguri-Răcătău", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.64500000", + "longitude": "23.19700000" + }, + { + "id": "95275", + "name": "Mărgău", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75000000", + "longitude": "22.96667000" + }, + { + "id": "95276", + "name": "Mărişel", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65000000", + "longitude": "23.13333000" + }, + { + "id": "94948", + "name": "Mera", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81525000", + "longitude": "23.45405000" + }, + { + "id": "94964", + "name": "Mica", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13333000", + "longitude": "23.93333000" + }, + { + "id": "94980", + "name": "Mihai Viteazu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53333000", + "longitude": "23.75000000" + }, + { + "id": "95009", + "name": "Mintiu Gherlii", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05000000", + "longitude": "23.95000000" + }, + { + "id": "95045", + "name": "Mociu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80000000", + "longitude": "24.03333000" + }, + { + "id": "95063", + "name": "Moldoveneşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50000000", + "longitude": "23.65000000" + }, + { + "id": "95130", + "name": "Municipiul Câmpia Turzii", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.54417000", + "longitude": "23.88472000" + }, + { + "id": "95126", + "name": "Municipiul Cluj-Napoca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.77791000", + "longitude": "23.60512000" + }, + { + "id": "95135", + "name": "Municipiul Dej", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12783000", + "longitude": "23.87504000" + }, + { + "id": "95146", + "name": "Municipiul Gherla", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01431000", + "longitude": "23.88134000" + }, + { + "id": "95189", + "name": "Municipiul Turda", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.57456000", + "longitude": "23.78574000" + }, + { + "id": "95314", + "name": "Negreni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95378000", + "longitude": "22.76347000" + }, + { + "id": "95347", + "name": "Nireș", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11499000", + "longitude": "23.98092000" + }, + { + "id": "95394", + "name": "Ocna Dejului", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11581000", + "longitude": "23.85934000" + }, + { + "id": "95530", + "name": "Oraş Huedin", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.87204000", + "longitude": "23.03935000" + }, + { + "id": "95709", + "name": "Panticeu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "23.56667000" + }, + { + "id": "96010", + "name": "Pădureni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59316000", + "longitude": "24.02700000" + }, + { + "id": "96011", + "name": "Pălatca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "23.98333000" + }, + { + "id": "95748", + "name": "Petreştii de Jos", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "23.65000000" + }, + { + "id": "95828", + "name": "Ploscoș", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.64303000", + "longitude": "23.84663000" + }, + { + "id": "95891", + "name": "Poieni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91880000", + "longitude": "22.85826000" + }, + { + "id": "96179", + "name": "Râșca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73967000", + "longitude": "23.10625000" + }, + { + "id": "96205", + "name": "Răscruci", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90569000", + "longitude": "23.76860000" + }, + { + "id": "96072", + "name": "Recea Cristur", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "23.53333000" + }, + { + "id": "96150", + "name": "Rugășești", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23147000", + "longitude": "23.87326000" + }, + { + "id": "96526", + "name": "Sâncraiu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "22.98333000" + }, + { + "id": "96537", + "name": "Sânmărghita", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15649000", + "longitude": "23.99461000" + }, + { + "id": "96538", + "name": "Sânmărtin", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90000000", + "longitude": "23.56667000" + }, + { + "id": "96539", + "name": "Sânnicoară", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78990000", + "longitude": "23.72570000" + }, + { + "id": "96542", + "name": "Sânpaul", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88333000", + "longitude": "23.41667000" + }, + { + "id": "105998", + "name": "Săcuieu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82335000", + "longitude": "22.88824000" + }, + { + "id": "106026", + "name": "Sănduleşti", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "23.71667000" + }, + { + "id": "106049", + "name": "Săvădisla", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68333000", + "longitude": "23.45000000" + }, + { + "id": "96333", + "name": "Sic", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "23.88333000" + }, + { + "id": "96411", + "name": "Soporu de Câmpie", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69618000", + "longitude": "24.00658000" + }, + { + "id": "96485", + "name": "Suatu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "23.96667000" + }, + { + "id": "96487", + "name": "Suceagu", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78432000", + "longitude": "23.46511000" + }, + { + "id": "106158", + "name": "Tritenii de Jos", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "24.00000000" + }, + { + "id": "106159", + "name": "Tritenii de Sus", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.60544000", + "longitude": "23.99849000" + }, + { + "id": "96558", + "name": "Turda", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56667000", + "longitude": "23.78333000" + }, + { + "id": "96561", + "name": "Tureni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62934000", + "longitude": "23.70240000" + }, + { + "id": "96657", + "name": "Unguraş", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "24.05000000" + }, + { + "id": "96672", + "name": "Urca", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.54885000", + "longitude": "23.96187000" + }, + { + "id": "96694", + "name": "Vad", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "23.75000000" + }, + { + "id": "96704", + "name": "Vaida-Cămăraș", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82823000", + "longitude": "23.94724000" + }, + { + "id": "96727", + "name": "Valea Ierii", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65000000", + "longitude": "23.35000000" + }, + { + "id": "96820", + "name": "Viişoara", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55000000", + "longitude": "23.91667000" + }, + { + "id": "96907", + "name": "Vultureni", + "state_id": 4734, + "state_code": "CJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96667000", + "longitude": "23.56667000" + }, + { + "id": "89872", + "name": "23 August", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91667000", + "longitude": "28.58333000" + }, + { + "id": "89879", + "name": "Adamclisi", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08333000", + "longitude": "27.95000000" + }, + { + "id": "89896", + "name": "Agigea", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09258000", + "longitude": "28.61079000" + }, + { + "id": "89917", + "name": "Albeşti", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "28.41667000" + }, + { + "id": "89931", + "name": "Aliman", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "27.85000000" + }, + { + "id": "89950", + "name": "Amzacea", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95000000", + "longitude": "28.40000000" + }, + { + "id": "90532", + "name": "Băneasa", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06667000", + "longitude": "27.70000000" + }, + { + "id": "90546", + "name": "Bărăganu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08939000", + "longitude": "28.41980000" + }, + { + "id": "90584", + "name": "Castelu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25000000", + "longitude": "28.33333000" + }, + { + "id": "90623", + "name": "Cerchezu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81667000", + "longitude": "28.10000000" + }, + { + "id": "90630", + "name": "Cernavodă", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33957000", + "longitude": "28.03273000" + }, + { + "id": "90678", + "name": "Chirnogeni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "28.23333000" + }, + { + "id": "90705", + "name": "Ciobanu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71759000", + "longitude": "27.98698000" + }, + { + "id": "90711", + "name": "Ciocârlia", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10000000", + "longitude": "28.28333000" + }, + { + "id": "90712", + "name": "Ciocârlia de Sus", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11712000", + "longitude": "28.33402000" + }, + { + "id": "90775", + "name": "Cobadin", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08333000", + "longitude": "28.21667000" + }, + { + "id": "90787", + "name": "Cogealac", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "28.56667000" + }, + { + "id": "90804", + "name": "Comana", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "28.31667000" + }, + { + "id": "90817", + "name": "Comuna 23 August", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91938000", + "longitude": "28.55437000" + }, + { + "id": "90821", + "name": "Comuna Adamclisi", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11447000", + "longitude": "27.94990000" + }, + { + "id": "90831", + "name": "Comuna Agigea", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09654000", + "longitude": "28.62684000" + }, + { + "id": "90842", + "name": "Comuna Albeşti", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80863000", + "longitude": "28.40325000" + }, + { + "id": "90852", + "name": "Comuna Aliman", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18430000", + "longitude": "27.83697000" + }, + { + "id": "90864", + "name": "Comuna Amzacea", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95983000", + "longitude": "28.32122000" + }, + { + "id": "91242", + "name": "Comuna Bărăganu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.07931000", + "longitude": "28.39887000" + }, + { + "id": "91264", + "name": "Comuna Castelu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25846000", + "longitude": "28.36908000" + }, + { + "id": "91288", + "name": "Comuna Cerchezu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84984000", + "longitude": "28.08444000" + }, + { + "id": "91321", + "name": "Comuna Chirnogeni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94216000", + "longitude": "28.22195000" + }, + { + "id": "91339", + "name": "Comuna Ciobanu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71771000", + "longitude": "27.98904000" + }, + { + "id": "91344", + "name": "Comuna Ciocârlia", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11098000", + "longitude": "28.31161000" + }, + { + "id": "91384", + "name": "Comuna Cobadin", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.02574000", + "longitude": "28.16695000" + }, + { + "id": "91393", + "name": "Comuna Cogealac", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57661000", + "longitude": "28.52244000" + }, + { + "id": "91403", + "name": "Comuna Comana", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.89963000", + "longitude": "28.35491000" + }, + { + "id": "91429", + "name": "Comuna Corbu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40319000", + "longitude": "28.67797000" + }, + { + "id": "91459", + "name": "Comuna Costineşti", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94780000", + "longitude": "28.63284000" + }, + { + "id": "91508", + "name": "Comuna Crucea", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55046000", + "longitude": "28.20592000" + }, + { + "id": "91524", + "name": "Comuna Cumpăna", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10747000", + "longitude": "28.51226000" + }, + { + "id": "91534", + "name": "Comuna Cuza Voda", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28773000", + "longitude": "28.31005000" + }, + { + "id": "91609", + "name": "Comuna Deleni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06175000", + "longitude": "28.02263000" + }, + { + "id": "91716", + "name": "Comuna Dumbrăveni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93127000", + "longitude": "27.99112000" + }, + { + "id": "91806", + "name": "Comuna Fântânele", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61278000", + "longitude": "28.57655000" + }, + { + "id": "91975", + "name": "Comuna Gârliciu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77933000", + "longitude": "28.09461000" + }, + { + "id": "91860", + "name": "Comuna Ghindăreşti", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63520000", + "longitude": "28.03193000" + }, + { + "id": "91935", + "name": "Comuna Grădina", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52298000", + "longitude": "28.44846000" + }, + { + "id": "92017", + "name": "Comuna Horia", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63551000", + "longitude": "28.12034000" + }, + { + "id": "92079", + "name": "Comuna Independenţa", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96020000", + "longitude": "28.06290000" + }, + { + "id": "92081", + "name": "Comuna Ion Corvin", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10717000", + "longitude": "27.80268000" + }, + { + "id": "92094", + "name": "Comuna Istria", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55487000", + "longitude": "28.68155000" + }, + { + "id": "92165", + "name": "Comuna Limanu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78024000", + "longitude": "28.53931000" + }, + { + "id": "92166", + "name": "Comuna Lipniţa", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09073000", + "longitude": "27.56683000" + }, + { + "id": "92196", + "name": "Comuna Lumina", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.32756000", + "longitude": "28.54709000" + }, + { + "id": "92258", + "name": "Comuna Mereni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01545000", + "longitude": "28.33559000" + }, + { + "id": "92274", + "name": "Comuna Mihai Viteazu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63727000", + "longitude": "28.70460000" + }, + { + "id": "92277", + "name": "Comuna Mihail Kogălniceanu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40479000", + "longitude": "28.51919000" + }, + { + "id": "92296", + "name": "Comuna Mircea Vodă", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30137000", + "longitude": "28.18647000" + }, + { + "id": "92440", + "name": "Comuna Nicolae Bălcescu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39829000", + "longitude": "28.35323000" + }, + { + "id": "92498", + "name": "Comuna Oltina", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13879000", + "longitude": "27.64881000" + }, + { + "id": "92518", + "name": "Comuna Ostrov", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08152000", + "longitude": "27.42046000" + }, + { + "id": "92534", + "name": "Comuna Pantelimon", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60047000", + "longitude": "28.36014000" + }, + { + "id": "92570", + "name": "Comuna Peştera", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18951000", + "longitude": "28.10722000" + }, + { + "id": "92544", + "name": "Comuna Pecineaga", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88676000", + "longitude": "28.51012000" + }, + { + "id": "92607", + "name": "Comuna Poarta Albă", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21622000", + "longitude": "28.41904000" + }, + { + "id": "92748", + "name": "Comuna Rasova", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25918000", + "longitude": "27.96962000" + }, + { + "id": "92867", + "name": "Comuna Saligny", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28318000", + "longitude": "28.08929000" + }, + { + "id": "92873", + "name": "Comuna Saraiu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71747000", + "longitude": "28.14732000" + }, + { + "id": "93082", + "name": "Comuna Săcele", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48866000", + "longitude": "28.66382000" + }, + { + "id": "92919", + "name": "Comuna Seimeni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40184000", + "longitude": "28.08756000" + }, + { + "id": "92931", + "name": "Comuna Siliştea", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42359000", + "longitude": "28.20967000" + }, + { + "id": "93225", + "name": "Comuna Târguşor", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47713000", + "longitude": "28.38821000" + }, + { + "id": "93173", + "name": "Comuna Topalu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52116000", + "longitude": "28.07081000" + }, + { + "id": "93181", + "name": "Comuna Topraisar", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03126000", + "longitude": "28.48845000" + }, + { + "id": "93183", + "name": "Comuna Tortoman", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34569000", + "longitude": "28.26562000" + }, + { + "id": "93220", + "name": "Comuna Tuzla", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00158000", + "longitude": "28.63874000" + }, + { + "id": "93330", + "name": "Comuna Valu lui Traian", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16386000", + "longitude": "28.46526000" + }, + { + "id": "93423", + "name": "Comuna Vulturu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64806000", + "longitude": "28.27294000" + }, + { + "id": "93583", + "name": "Comună Dobromir", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01813000", + "longitude": "27.83888000" + }, + { + "id": "93595", + "name": "Constanţa", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18073000", + "longitude": "28.63432000" + }, + { + "id": "93618", + "name": "Corbu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "28.65000000" + }, + { + "id": "93667", + "name": "Costineşti", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95000000", + "longitude": "28.63333000" + }, + { + "id": "93741", + "name": "Crucea", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "28.23333000" + }, + { + "id": "93768", + "name": "Culmea", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25759000", + "longitude": "28.46643000" + }, + { + "id": "93769", + "name": "Cumpăna", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "28.56667000" + }, + { + "id": "93783", + "name": "Cuza Vodă", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28773000", + "longitude": "28.31005000" + }, + { + "id": "93913", + "name": "Deleni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10000000", + "longitude": "28.01667000" + }, + { + "id": "93962", + "name": "Dobromir", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01667000", + "longitude": "27.78333000" + }, + { + "id": "94004", + "name": "Dorobanțu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41035000", + "longitude": "28.32687000" + }, + { + "id": "94074", + "name": "Dulcești", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90506000", + "longitude": "28.54796000" + }, + { + "id": "94083", + "name": "Dumbrăveni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93333000", + "longitude": "27.98333000" + }, + { + "id": "94101", + "name": "Dunăreni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20463000", + "longitude": "27.79058000" + }, + { + "id": "94137", + "name": "Eforie Nord", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06530000", + "longitude": "28.63211000" + }, + { + "id": "94138", + "name": "Eforie Sud", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.02294000", + "longitude": "28.64943000" + }, + { + "id": "94239", + "name": "Fântânele", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61278000", + "longitude": "28.57655000" + }, + { + "id": "94248", + "name": "Făclia", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28039000", + "longitude": "28.10583000" + }, + { + "id": "94494", + "name": "Gârliciu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "28.08333000" + }, + { + "id": "94329", + "name": "Ghindăreşti", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "28.03333000" + }, + { + "id": "94433", + "name": "Grădina", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55520000", + "longitude": "28.43236000" + }, + { + "id": "94594", + "name": "Hârşova", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68555000", + "longitude": "27.95009000" + }, + { + "id": "94560", + "name": "Horia", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63333000", + "longitude": "28.11667000" + }, + { + "id": "94664", + "name": "Independenţa", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96667000", + "longitude": "28.08333000" + }, + { + "id": "94673", + "name": "Ion Corvin", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "27.80000000" + }, + { + "id": "94692", + "name": "Istria", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "28.71667000" + }, + { + "id": "94798", + "name": "Limanu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "28.53333000" + }, + { + "id": "94802", + "name": "Lipniţa", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10000000", + "longitude": "27.60000000" + }, + { + "id": "94849", + "name": "Lumina", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "28.56667000" + }, + { + "id": "94920", + "name": "Mamaia-Sat", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31159000", + "longitude": "28.62546000" + }, + { + "id": "94922", + "name": "Mangalia", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "28.58333000" + }, + { + "id": "94942", + "name": "Medgidia", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25000000", + "longitude": "28.28333000" + }, + { + "id": "94952", + "name": "Mereni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05000000", + "longitude": "28.36667000" + }, + { + "id": "94978", + "name": "Mihai Viteazu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63333000", + "longitude": "28.68333000" + }, + { + "id": "94984", + "name": "Mihail Kogălniceanu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36798000", + "longitude": "28.46000000" + }, + { + "id": "95012", + "name": "Mircea Vodă", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "28.16667000" + }, + { + "id": "95094", + "name": "Moșneni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93487000", + "longitude": "28.53132000" + }, + { + "id": "95127", + "name": "Municipiul Constanţa", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21414000", + "longitude": "28.61862000" + }, + { + "id": "95152", + "name": "Municipiul Mangalia", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85085000", + "longitude": "28.59780000" + }, + { + "id": "95154", + "name": "Municipiul Medgidia", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22795000", + "longitude": "28.26801000" + }, + { + "id": "95204", + "name": "Murfatlar", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "28.41667000" + }, + { + "id": "95377", + "name": "Năvodari", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31667000", + "longitude": "28.60000000" + }, + { + "id": "95324", + "name": "Negru Vodă", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81667000", + "longitude": "28.20000000" + }, + { + "id": "95337", + "name": "Nicolae Bălcescu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "28.38333000" + }, + { + "id": "95348", + "name": "Nisipari", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25964000", + "longitude": "28.39840000" + }, + { + "id": "95364", + "name": "Nuntași", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53755000", + "longitude": "28.64880000" + }, + { + "id": "95434", + "name": "Oltina", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16667000", + "longitude": "27.66667000" + }, + { + "id": "95488", + "name": "Oraş Bãneasa", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05008000", + "longitude": "27.71430000" + }, + { + "id": "95490", + "name": "Oraş Cernavodã", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34331000", + "longitude": "28.03694000" + }, + { + "id": "95514", + "name": "Oraş Eforie", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04431000", + "longitude": "28.64529000" + }, + { + "id": "95532", + "name": "Oraş Hârşova", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68721000", + "longitude": "27.94785000" + }, + { + "id": "95544", + "name": "Oraş Murfatlar", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17090000", + "longitude": "28.38185000" + }, + { + "id": "95555", + "name": "Oraş Nãvodari", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30511000", + "longitude": "28.61407000" + }, + { + "id": "95550", + "name": "Oraş Negru Vodã", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.79534000", + "longitude": "28.28041000" + }, + { + "id": "95562", + "name": "Oraş Ovidiu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23828000", + "longitude": "28.53210000" + }, + { + "id": "95601", + "name": "Oraş Techirghiol", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05497000", + "longitude": "28.59539000" + }, + { + "id": "95676", + "name": "Ostrov", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "27.36667000" + }, + { + "id": "95686", + "name": "Ovidiu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25800000", + "longitude": "28.56083000" + }, + { + "id": "95700", + "name": "Palazu Mare", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22902000", + "longitude": "28.60114000" + }, + { + "id": "95707", + "name": "Pantelimon", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54589000", + "longitude": "28.33094000" + }, + { + "id": "95708", + "name": "Pantelimon de Jos", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "28.38333000" + }, + { + "id": "95759", + "name": "Peştera", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "28.13333000" + }, + { + "id": "95723", + "name": "Pecineaga", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "28.50000000" + }, + { + "id": "95769", + "name": "Piatra", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40492000", + "longitude": "28.56143000" + }, + { + "id": "95780", + "name": "Pietreni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09609000", + "longitude": "28.06833000" + }, + { + "id": "95818", + "name": "Plopeni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95089000", + "longitude": "28.19452000" + }, + { + "id": "95836", + "name": "Poarta Albă", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21667000", + "longitude": "28.40000000" + }, + { + "id": "96061", + "name": "Rasova", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24616000", + "longitude": "27.93466000" + }, + { + "id": "96235", + "name": "Saligny", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28111000", + "longitude": "28.09092000" + }, + { + "id": "96243", + "name": "Saraiu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "28.15000000" + }, + { + "id": "96260", + "name": "Satu Nou", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26918000", + "longitude": "28.22579000" + }, + { + "id": "105993", + "name": "Săcele", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48333000", + "longitude": "28.65000000" + }, + { + "id": "96271", + "name": "Schitu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94279000", + "longitude": "28.62829000" + }, + { + "id": "96322", + "name": "Seimeni", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "28.06667000" + }, + { + "id": "96341", + "name": "Siliştea", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40000000", + "longitude": "28.16667000" + }, + { + "id": "96348", + "name": "Siminoc", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16866000", + "longitude": "28.35277000" + }, + { + "id": "106061", + "name": "Tariverde", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56268000", + "longitude": "28.60245000" + }, + { + "id": "96590", + "name": "Târguşor", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "28.41667000" + }, + { + "id": "106068", + "name": "Techirghiol", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05000000", + "longitude": "28.60000000" + }, + { + "id": "106127", + "name": "Topalu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54381000", + "longitude": "28.04575000" + }, + { + "id": "106139", + "name": "Topraisar", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01667000", + "longitude": "28.45000000" + }, + { + "id": "106141", + "name": "Tortoman", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "28.21667000" + }, + { + "id": "96573", + "name": "Tuzla", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00000000", + "longitude": "28.63333000" + }, + { + "id": "96721", + "name": "Valea Dacilor", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19495000", + "longitude": "28.31776000" + }, + { + "id": "96769", + "name": "Valu lui Traian", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16667000", + "longitude": "28.46667000" + }, + { + "id": "96828", + "name": "Viișoara", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.07758000", + "longitude": "28.19424000" + }, + { + "id": "96815", + "name": "Viile", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16200000", + "longitude": "27.75769000" + }, + { + "id": "96913", + "name": "Vulturu", + "state_id": 4737, + "state_code": "CT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "28.26667000" + }, + { + "id": "89905", + "name": "Aita Mare", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "25.55000000" + }, + { + "id": "89976", + "name": "Araci", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81187000", + "longitude": "25.65482000" + }, + { + "id": "89981", + "name": "Arcuș", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90077000", + "longitude": "25.77673000" + }, + { + "id": "97026", + "name": "Întorsura Buzăului", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68333000", + "longitude": "26.03333000" + }, + { + "id": "90058", + "name": "Baraolt", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07514000", + "longitude": "25.60029000" + }, + { + "id": "90060", + "name": "Barcani", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70000000", + "longitude": "26.08333000" + }, + { + "id": "90556", + "name": "Băţanii Mari", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "25.68333000" + }, + { + "id": "90087", + "name": "Belin", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93333000", + "longitude": "25.56667000" + }, + { + "id": "90088", + "name": "Belin-Vale", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93237000", + "longitude": "25.60878000" + }, + { + "id": "90155", + "name": "Bixad", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "25.86667000" + }, + { + "id": "90183", + "name": "Bodoc", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95000000", + "longitude": "25.85000000" + }, + { + "id": "90233", + "name": "Boroşneu Mare", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "26.00000000" + }, + { + "id": "90276", + "name": "Brateş", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "26.06667000" + }, + { + "id": "90327", + "name": "Brăduţ", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "25.61667000" + }, + { + "id": "90304", + "name": "Breţcu", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "26.30000000" + }, + { + "id": "90587", + "name": "Catalina", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "26.15000000" + }, + { + "id": "93857", + "name": "Căpeni", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04111000", + "longitude": "25.57858000" + }, + { + "id": "90629", + "name": "Cernat", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95000000", + "longitude": "26.03333000" + }, + { + "id": "90663", + "name": "Chichiş", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "25.80000000" + }, + { + "id": "90809", + "name": "Comandău", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "26.26667000" + }, + { + "id": "90835", + "name": "Comuna Aita Mare", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97126000", + "longitude": "25.58824000" + }, + { + "id": "90885", + "name": "Comuna Arcuş", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90077000", + "longitude": "25.77673000" + }, + { + "id": "90936", + "name": "Comuna Barcani", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70483000", + "longitude": "26.06393000" + }, + { + "id": "91249", + "name": "Comuna Băţani", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09167000", + "longitude": "25.71930000" + }, + { + "id": "90952", + "name": "Comuna Belin", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93361000", + "longitude": "25.59126000" + }, + { + "id": "91001", + "name": "Comuna Bixad", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10225000", + "longitude": "25.86344000" + }, + { + "id": "91019", + "name": "Comuna Bodoc", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96190000", + "longitude": "25.84149000" + }, + { + "id": "91053", + "name": "Comuna Boroşneu Mare", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81010000", + "longitude": "26.01568000" + }, + { + "id": "91084", + "name": "Comuna Brateş", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83992000", + "longitude": "26.07887000" + }, + { + "id": "91116", + "name": "Comuna Brăduţ", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12574000", + "longitude": "25.60329000" + }, + { + "id": "91100", + "name": "Comuna Breţcu", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04444000", + "longitude": "26.32887000" + }, + { + "id": "91266", + "name": "Comuna Catalina", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93736000", + "longitude": "26.12250000" + }, + { + "id": "91312", + "name": "Comuna Chichiş", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76781000", + "longitude": "25.81378000" + }, + { + "id": "91406", + "name": "Comuna Comandău", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76179000", + "longitude": "26.27776000" + }, + { + "id": "91603", + "name": "Comuna Dalnic", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92242000", + "longitude": "25.98741000" + }, + { + "id": "91647", + "name": "Comuna Dobârlău", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73410000", + "longitude": "25.88112000" + }, + { + "id": "91750", + "name": "Comuna Estelnic", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12537000", + "longitude": "26.20544000" + }, + { + "id": "91841", + "name": "Comuna Ghelinţa", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93491000", + "longitude": "26.22068000" + }, + { + "id": "91851", + "name": "Comuna Ghidfalău", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89956000", + "longitude": "25.86399000" + }, + { + "id": "92036", + "name": "Comuna Hăghig", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85362000", + "longitude": "25.59501000" + }, + { + "id": "92071", + "name": "Comuna Ilieni", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80054000", + "longitude": "25.76436000" + }, + { + "id": "92149", + "name": "Comuna Lemnia", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07078000", + "longitude": "26.27277000" + }, + { + "id": "92233", + "name": "Comuna Malnaş", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01995000", + "longitude": "25.82705000" + }, + { + "id": "92256", + "name": "Comuna Mereni", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08496000", + "longitude": "26.23460000" + }, + { + "id": "92266", + "name": "Comuna Micfalău", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05342000", + "longitude": "25.83737000" + }, + { + "id": "92311", + "name": "Comuna Moacşa", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87883000", + "longitude": "25.95270000" + }, + { + "id": "92491", + "name": "Comuna Ojdula", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97871000", + "longitude": "26.24773000" + }, + { + "id": "92523", + "name": "Comuna Ozun", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78331000", + "longitude": "25.88260000" + }, + { + "id": "92621", + "name": "Comuna Poian", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07731000", + "longitude": "26.17423000" + }, + { + "id": "92757", + "name": "Comuna Reci", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81913000", + "longitude": "25.95552000" + }, + { + "id": "93070", + "name": "Comuna Sânzieni", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06458000", + "longitude": "26.11790000" + }, + { + "id": "92946", + "name": "Comuna Sita Buzăului", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61959000", + "longitude": "26.10621000" + }, + { + "id": "93214", + "name": "Comuna Turia", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.02927000", + "longitude": "26.03953000" + }, + { + "id": "93301", + "name": "Comuna Valea Crişului", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92372000", + "longitude": "25.78483000" + }, + { + "id": "93311", + "name": "Comuna Valea Mare", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76389000", + "longitude": "26.01435000" + }, + { + "id": "93426", + "name": "Comuna Vâlcele", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81736000", + "longitude": "25.67925000" + }, + { + "id": "93442", + "name": "Comuna Vârghiş", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12737000", + "longitude": "25.55901000" + }, + { + "id": "93468", + "name": "Comuna Zagon", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77961000", + "longitude": "26.12897000" + }, + { + "id": "93483", + "name": "Comuna Zăbala", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89141000", + "longitude": "26.13251000" + }, + { + "id": "93581", + "name": "Comună Cernat", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96650000", + "longitude": "26.01955000" + }, + { + "id": "93680", + "name": "Covasna", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "26.18333000" + }, + { + "id": "93891", + "name": "Dalnic", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92242000", + "longitude": "25.98741000" + }, + { + "id": "93973", + "name": "Dobârlău", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73333000", + "longitude": "25.88333000" + }, + { + "id": "93945", + "name": "Doboșeni", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12431000", + "longitude": "25.59347000" + }, + { + "id": "94145", + "name": "Estelnic", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10445000", + "longitude": "26.21262000" + }, + { + "id": "94170", + "name": "Filia", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14409000", + "longitude": "25.62140000" + }, + { + "id": "94190", + "name": "Floroaia", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69497000", + "longitude": "26.01563000" + }, + { + "id": "94299", + "name": "Ghelinţa", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95000000", + "longitude": "26.23333000" + }, + { + "id": "94316", + "name": "Ghidfalău", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "25.85000000" + }, + { + "id": "94597", + "name": "Hăghig", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "25.58333000" + }, + { + "id": "94530", + "name": "Herculian", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13402000", + "longitude": "25.70977000" + }, + { + "id": "94657", + "name": "Ilieni", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80000000", + "longitude": "25.76667000" + }, + { + "id": "94776", + "name": "Lemnia", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "26.26667000" + }, + { + "id": "94879", + "name": "Lunga", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01822000", + "longitude": "26.21208000" + }, + { + "id": "94913", + "name": "Malnaş", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "25.83333000" + }, + { + "id": "94951", + "name": "Mereni", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07924000", + "longitude": "26.23597000" + }, + { + "id": "94968", + "name": "Micfalău", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05342000", + "longitude": "25.83737000" + }, + { + "id": "95038", + "name": "Moacşa", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86667000", + "longitude": "25.96667000" + }, + { + "id": "95180", + "name": "Municipiul Sfântu Gheorghe", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83806000", + "longitude": "25.79730000" + }, + { + "id": "95193", + "name": "Municipiul Târgu Secuiesc", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00589000", + "longitude": "26.17155000" + }, + { + "id": "95421", + "name": "Ojdula", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98333000", + "longitude": "26.25000000" + }, + { + "id": "95628", + "name": "Oraş Întorsura Buzãului", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68539000", + "longitude": "26.01260000" + }, + { + "id": "95458", + "name": "Oraş Baraolt", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06250000", + "longitude": "25.60505000" + }, + { + "id": "95499", + "name": "Oraş Covasna", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83527000", + "longitude": "26.16637000" + }, + { + "id": "95687", + "name": "Ozun", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80000000", + "longitude": "25.85000000" + }, + { + "id": "96019", + "name": "Păpăuți", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "26.13333000" + }, + { + "id": "95859", + "name": "Poian", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06667000", + "longitude": "26.15000000" + }, + { + "id": "96073", + "name": "Reci", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "25.93333000" + }, + { + "id": "105982", + "name": "Sânzieni", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "26.13333000" + }, + { + "id": "96330", + "name": "Sfântu Gheorghe", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86667000", + "longitude": "25.78333000" + }, + { + "id": "96360", + "name": "Sita Buzăului", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65000000", + "longitude": "26.06667000" + }, + { + "id": "96588", + "name": "Târgu Secuiesc", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00000000", + "longitude": "26.13333000" + }, + { + "id": "96562", + "name": "Turia", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03333000", + "longitude": "26.05000000" + }, + { + "id": "96717", + "name": "Valea Crişului", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "25.76667000" + }, + { + "id": "96735", + "name": "Valea Mare", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "26.00000000" + }, + { + "id": "96918", + "name": "Vâlcele", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "25.68333000" + }, + { + "id": "96941", + "name": "Vârghiş", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "25.53333000" + }, + { + "id": "96979", + "name": "Zagon", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "26.11667000" + }, + { + "id": "97008", + "name": "Zăbala", + "state_id": 4754, + "state_code": "CV", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "26.18333000" + }, + { + "id": "89886", + "name": "Adânca", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92250000", + "longitude": "25.61005000" + }, + { + "id": "89966", + "name": "Aninoasa", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "25.43333000" + }, + { + "id": "97035", + "name": "Şelaru", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47667000", + "longitude": "25.29997000" + }, + { + "id": "97074", + "name": "Şotânga", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98333000", + "longitude": "25.36667000" + }, + { + "id": "90440", + "name": "Bâldana", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60300000", + "longitude": "25.77836000" + }, + { + "id": "90481", + "name": "Bădeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15272000", + "longitude": "25.40263000" + }, + { + "id": "90509", + "name": "Băleni Sârbi", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "25.63333000" + }, + { + "id": "90516", + "name": "Bălteni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66488000", + "longitude": "25.69339000" + }, + { + "id": "90538", + "name": "Bărbuleţu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "25.30000000" + }, + { + "id": "90122", + "name": "Bezdead", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "25.51667000" + }, + { + "id": "90136", + "name": "Bilciureşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "25.80000000" + }, + { + "id": "90269", + "name": "Braniştea", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68333000", + "longitude": "25.58333000" + }, + { + "id": "90335", + "name": "Brăneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "25.41667000" + }, + { + "id": "90301", + "name": "Brezoaele", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58333000", + "longitude": "25.73333000" + }, + { + "id": "90302", + "name": "Brezoaia", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55683000", + "longitude": "25.78527000" + }, + { + "id": "90312", + "name": "Broșteni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72053000", + "longitude": "25.50935000" + }, + { + "id": "90366", + "name": "Bucşani", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "25.65000000" + }, + { + "id": "90354", + "name": "Buciumeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "25.45000000" + }, + { + "id": "90412", + "name": "Bungetu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84323000", + "longitude": "25.53816000" + }, + { + "id": "90427", + "name": "Butimanu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68333000", + "longitude": "25.90000000" + }, + { + "id": "90593", + "name": "Cazaci", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80152000", + "longitude": "25.55405000" + }, + { + "id": "93808", + "name": "Cândeşti Vale", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "25.21667000" + }, + { + "id": "93860", + "name": "Căprioru", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98236000", + "longitude": "25.28116000" + }, + { + "id": "90713", + "name": "Ciocănari", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69770000", + "longitude": "25.97717000" + }, + { + "id": "90715", + "name": "Ciocăneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "25.85000000" + }, + { + "id": "90789", + "name": "Cojasca", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "25.85000000" + }, + { + "id": "90791", + "name": "Colacu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66895000", + "longitude": "25.75881000" + }, + { + "id": "90813", + "name": "Comişani", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88333000", + "longitude": "25.58333000" + }, + { + "id": "90874", + "name": "Comuna Aninoasa", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96863000", + "longitude": "25.43802000" + }, + { + "id": "93504", + "name": "Comuna Şelaru", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48705000", + "longitude": "25.31294000" + }, + { + "id": "93544", + "name": "Comuna Şotânga", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98544000", + "longitude": "25.38254000" + }, + { + "id": "91214", + "name": "Comuna Băleni Sârbi", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82017000", + "longitude": "25.64756000" + }, + { + "id": "91237", + "name": "Comuna Bărbuleţu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14196000", + "longitude": "25.29771000" + }, + { + "id": "90980", + "name": "Comuna Bezdead", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13705000", + "longitude": "25.49476000" + }, + { + "id": "90989", + "name": "Comuna Bilciureşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74770000", + "longitude": "25.80621000" + }, + { + "id": "91079", + "name": "Comuna Braniştea", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68134000", + "longitude": "25.58387000" + }, + { + "id": "91122", + "name": "Comuna Brăneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03430000", + "longitude": "25.42253000" + }, + { + "id": "91099", + "name": "Comuna Brezoaele", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56647000", + "longitude": "25.76664000" + }, + { + "id": "91140", + "name": "Comuna Bucşani", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85270000", + "longitude": "25.64561000" + }, + { + "id": "91130", + "name": "Comuna Buciumeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15902000", + "longitude": "25.46392000" + }, + { + "id": "91175", + "name": "Comuna Butimanu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68680000", + "longitude": "25.90535000" + }, + { + "id": "91548", + "name": "Comuna Cândeşti Vale", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06660000", + "longitude": "25.20455000" + }, + { + "id": "91346", + "name": "Comuna Ciocăneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62136000", + "longitude": "25.84490000" + }, + { + "id": "91385", + "name": "Comuna Cobia de Sus", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81197000", + "longitude": "25.33463000" + }, + { + "id": "91394", + "name": "Comuna Cojasca", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71855000", + "longitude": "25.85566000" + }, + { + "id": "91408", + "name": "Comuna Comişani", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87528000", + "longitude": "25.57009000" + }, + { + "id": "91414", + "name": "Comuna Conţeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67875000", + "longitude": "25.67330000" + }, + { + "id": "91426", + "name": "Comuna Corbii Mari", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55671000", + "longitude": "25.48060000" + }, + { + "id": "91444", + "name": "Comuna Cornăţelu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73080000", + "longitude": "25.68640000" + }, + { + "id": "91439", + "name": "Comuna Corneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77121000", + "longitude": "25.88722000" + }, + { + "id": "91458", + "name": "Comuna Costeştii din Vale", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64096000", + "longitude": "25.50153000" + }, + { + "id": "91515", + "name": "Comuna Crângurile", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74277000", + "longitude": "25.24062000" + }, + { + "id": "91489", + "name": "Comuna Crevedia", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59787000", + "longitude": "25.92260000" + }, + { + "id": "91745", + "name": "Comuna Dărmăneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92476000", + "longitude": "25.76145000" + }, + { + "id": "91632", + "name": "Comuna Dobra", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79586000", + "longitude": "25.71297000" + }, + { + "id": "91653", + "name": "Comuna Doiceşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99144000", + "longitude": "25.40073000" + }, + { + "id": "91671", + "name": "Comuna Dragodana", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75892000", + "longitude": "25.38433000" + }, + { + "id": "91673", + "name": "Comuna Dragomireşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89354000", + "longitude": "25.36611000" + }, + { + "id": "91767", + "name": "Comuna Finta", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79370000", + "longitude": "25.79926000" + }, + { + "id": "91883", + "name": "Comuna Glodeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01930000", + "longitude": "25.45913000" + }, + { + "id": "91956", + "name": "Comuna Gura Şuţii", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76161000", + "longitude": "25.47575000" + }, + { + "id": "91947", + "name": "Comuna Gura Foii", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75712000", + "longitude": "25.29852000" + }, + { + "id": "91949", + "name": "Comuna Gura Ocniţei", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93449000", + "longitude": "25.57419000" + }, + { + "id": "92027", + "name": "Comuna Hulubeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84204000", + "longitude": "25.26253000" + }, + { + "id": "92047", + "name": "Comuna I. L. Caragiale", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92189000", + "longitude": "25.68409000" + }, + { + "id": "92063", + "name": "Comuna Iedera", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "25.63333000" + }, + { + "id": "92188", + "name": "Comuna Lucieni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84766000", + "longitude": "25.41990000" + }, + { + "id": "92190", + "name": "Comuna Ludeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90396000", + "longitude": "25.22557000" + }, + { + "id": "92213", + "name": "Comuna Lunguleţu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61601000", + "longitude": "25.64340000" + }, + { + "id": "92237", + "name": "Comuna Malu cu Flori", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15617000", + "longitude": "25.22589000" + }, + { + "id": "92403", + "name": "Comuna Măneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95033000", + "longitude": "25.30034000" + }, + { + "id": "92420", + "name": "Comuna Mătăsaru", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67584000", + "longitude": "25.44365000" + }, + { + "id": "92352", + "name": "Comuna Moţãieni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10631000", + "longitude": "25.41045000" + }, + { + "id": "92318", + "name": "Comuna Mogoşani", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68319000", + "longitude": "25.38774000" + }, + { + "id": "92332", + "name": "Comuna Moroeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23406000", + "longitude": "25.44468000" + }, + { + "id": "92333", + "name": "Comuna Morteni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66221000", + "longitude": "25.25208000" + }, + { + "id": "92445", + "name": "Comuna Niculeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68664000", + "longitude": "25.96350000" + }, + { + "id": "92454", + "name": "Comuna Nucet", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80328000", + "longitude": "25.55434000" + }, + { + "id": "92479", + "name": "Comuna Ocniţa", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99011000", + "longitude": "25.55591000" + }, + { + "id": "92481", + "name": "Comuna Odobeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59883000", + "longitude": "25.54082000" + }, + { + "id": "92557", + "name": "Comuna Perşinari", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80185000", + "longitude": "25.49880000" + }, + { + "id": "92563", + "name": "Comuna Petreşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66761000", + "longitude": "25.31458000" + }, + { + "id": "92576", + "name": "Comuna Pietrari", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10034000", + "longitude": "25.29356000" + }, + { + "id": "92583", + "name": "Comuna Pietroşiţa", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18773000", + "longitude": "25.42828000" + }, + { + "id": "92623", + "name": "Comuna Poiana", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57429000", + "longitude": "25.67684000" + }, + { + "id": "92665", + "name": "Comuna Potlogi", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57362000", + "longitude": "25.60164000" + }, + { + "id": "92681", + "name": "Comuna Produleşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70336000", + "longitude": "25.50466000" + }, + { + "id": "92690", + "name": "Comuna Pucheni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18211000", + "longitude": "25.26926000" + }, + { + "id": "92732", + "name": "Comuna Raciu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81644000", + "longitude": "25.43460000" + }, + { + "id": "92825", + "name": "Comuna Râu Alb", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14850000", + "longitude": "25.33714000" + }, + { + "id": "92833", + "name": "Comuna Rãzvad", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93588000", + "longitude": "25.52914000" + }, + { + "id": "92847", + "name": "Comuna Răscăeţi", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59760000", + "longitude": "25.25621000" + }, + { + "id": "92811", + "name": "Comuna Runcu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17702000", + "longitude": "25.38533000" + }, + { + "id": "93094", + "name": "Comuna Sălcioara", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73645000", + "longitude": "25.57411000" + }, + { + "id": "92957", + "name": "Comuna Slobozia Moara", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59865000", + "longitude": "25.73126000" + }, + { + "id": "93241", + "name": "Comuna Tărtăşeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57674000", + "longitude": "25.82134000" + }, + { + "id": "93244", + "name": "Comuna Tătărani", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00067000", + "longitude": "25.27998000" + }, + { + "id": "93258", + "name": "Comuna Ulieşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60160000", + "longitude": "25.40770000" + }, + { + "id": "93262", + "name": "Comuna Ulmi", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89030000", + "longitude": "25.44376000" + }, + { + "id": "93309", + "name": "Comuna Valea Lungă", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06978000", + "longitude": "25.56993000" + }, + { + "id": "93313", + "name": "Comuna Valea Mare", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79383000", + "longitude": "25.23292000" + }, + { + "id": "93440", + "name": "Comuna Vârfuri", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09555000", + "longitude": "25.50712000" + }, + { + "id": "93452", + "name": "Comuna Văcăreşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84041000", + "longitude": "25.51989000" + }, + { + "id": "93460", + "name": "Comuna Văleni-Dâmboviţa", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17593000", + "longitude": "25.17678000" + }, + { + "id": "93376", + "name": "Comuna Vişina", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60194000", + "longitude": "25.35218000" + }, + { + "id": "93379", + "name": "Comuna Vişineşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11256000", + "longitude": "25.56815000" + }, + { + "id": "93387", + "name": "Comuna Vlădeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87550000", + "longitude": "25.77318000" + }, + { + "id": "93398", + "name": "Comuna Voineşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06986000", + "longitude": "25.26072000" + }, + { + "id": "93413", + "name": "Comuna Vulcana Băi", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07910000", + "longitude": "25.38219000" + }, + { + "id": "93414", + "name": "Comuna Vulcana-Pandele", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02165000", + "longitude": "25.39888000" + }, + { + "id": "93597", + "name": "Conțești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68518000", + "longitude": "25.63879000" + }, + { + "id": "93615", + "name": "Corbii Mari", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "25.50000000" + }, + { + "id": "93643", + "name": "Cornăţelu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "25.66667000" + }, + { + "id": "93635", + "name": "Corneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "25.86667000" + }, + { + "id": "93662", + "name": "Costeştii din Vale", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "25.48333000" + }, + { + "id": "93666", + "name": "Costeștii din Deal", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68132000", + "longitude": "25.48938000" + }, + { + "id": "93749", + "name": "Crângurile de Sus", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "25.23333000" + }, + { + "id": "93710", + "name": "Crevedia", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "25.93333000" + }, + { + "id": "93738", + "name": "Croitori", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57512000", + "longitude": "25.41356000" + }, + { + "id": "93739", + "name": "Crovu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58947000", + "longitude": "25.53684000" + }, + { + "id": "94104", + "name": "Dâmbovicioara", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67569000", + "longitude": "25.55374000" + }, + { + "id": "94113", + "name": "Dârza", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60175000", + "longitude": "25.94956000" + }, + { + "id": "94132", + "name": "Dărmăneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "25.78333000" + }, + { + "id": "93903", + "name": "Dealu Frumos", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18575000", + "longitude": "25.41329000" + }, + { + "id": "93904", + "name": "Dealu Mare", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16072000", + "longitude": "25.44871000" + }, + { + "id": "93907", + "name": "Decindeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91234000", + "longitude": "25.32607000" + }, + { + "id": "93948", + "name": "Dobra", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "25.71667000" + }, + { + "id": "93981", + "name": "Doiceşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98333000", + "longitude": "25.40000000" + }, + { + "id": "94012", + "name": "Dragodana", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "25.35000000" + }, + { + "id": "94013", + "name": "Dragodănești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05552000", + "longitude": "25.23631000" + }, + { + "id": "94018", + "name": "Dragomireşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "25.33333000" + }, + { + "id": "94055", + "name": "Drăgăești Ungureni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94557000", + "longitude": "25.31048000" + }, + { + "id": "94243", + "name": "Fântânele", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "25.86667000" + }, + { + "id": "94164", + "name": "Fieni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "25.41667000" + }, + { + "id": "94166", + "name": "Fierbinți", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50747000", + "longitude": "25.28760000" + }, + { + "id": "94179", + "name": "Finta Mare", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "25.80000000" + }, + { + "id": "94496", + "name": "Găeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "25.31667000" + }, + { + "id": "94288", + "name": "Gemenea Brătulești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10839000", + "longitude": "25.23155000" + }, + { + "id": "94296", + "name": "Gheboaia", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80203000", + "longitude": "25.74875000" + }, + { + "id": "94297", + "name": "Gheboieni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98701000", + "longitude": "25.30670000" + }, + { + "id": "94330", + "name": "Ghinești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74774000", + "longitude": "25.55300000" + }, + { + "id": "94336", + "name": "Ghirdoveni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94059000", + "longitude": "25.67368000" + }, + { + "id": "94359", + "name": "Glod", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24163000", + "longitude": "25.44994000" + }, + { + "id": "94362", + "name": "Glodeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "25.46667000" + }, + { + "id": "94386", + "name": "Gorgota", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97626000", + "longitude": "25.50837000" + }, + { + "id": "94407", + "name": "Greci", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66132000", + "longitude": "25.34346000" + }, + { + "id": "94424", + "name": "Grozăvești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56882000", + "longitude": "25.45360000" + }, + { + "id": "94449", + "name": "Gulia", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54687000", + "longitude": "25.87304000" + }, + { + "id": "94467", + "name": "Gura Şuţii", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "25.51667000" + }, + { + "id": "94453", + "name": "Gura Foii", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "25.28333000" + }, + { + "id": "94456", + "name": "Gura Ocniței", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94166000", + "longitude": "25.56846000" + }, + { + "id": "94464", + "name": "Gura Vulcanei", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02442000", + "longitude": "25.39596000" + }, + { + "id": "94595", + "name": "Hăbeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85629000", + "longitude": "25.62873000" + }, + { + "id": "94573", + "name": "Hulubeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83333000", + "longitude": "25.23333000" + }, + { + "id": "94612", + "name": "I. L. Caragiale", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90963000", + "longitude": "25.70251000" + }, + { + "id": "94626", + "name": "Iazu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71764000", + "longitude": "25.83119000" + }, + { + "id": "94631", + "name": "Ibrianu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77509000", + "longitude": "25.84375000" + }, + { + "id": "94641", + "name": "Iedera de Jos", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "25.63333000" + }, + { + "id": "94642", + "name": "Iedera de Sus", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04174000", + "longitude": "25.63084000" + }, + { + "id": "94679", + "name": "Ionești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69374000", + "longitude": "25.27780000" + }, + { + "id": "94705", + "name": "Izvoarele", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "25.26667000" + }, + { + "id": "94765", + "name": "Lazuri", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87859000", + "longitude": "25.54964000" + }, + { + "id": "94889", + "name": "Lăculețe", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01837000", + "longitude": "25.43108000" + }, + { + "id": "94837", + "name": "Lucieni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85000000", + "longitude": "25.43333000" + }, + { + "id": "94842", + "name": "Ludeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "25.23333000" + }, + { + "id": "94856", + "name": "Lunca", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20022000", + "longitude": "25.44351000" + }, + { + "id": "94882", + "name": "Lunguleţu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "25.65000000" + }, + { + "id": "94919", + "name": "Malu cu Flori", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "25.20000000" + }, + { + "id": "94938", + "name": "Mavrodin", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64919000", + "longitude": "25.71731000" + }, + { + "id": "95259", + "name": "Măneşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "25.28333000" + }, + { + "id": "95266", + "name": "Mărcești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80537000", + "longitude": "25.70951000" + }, + { + "id": "95273", + "name": "Mărginenii de Sus", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93172000", + "longitude": "25.75228000" + }, + { + "id": "95291", + "name": "Mătăsaru", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "25.41667000" + }, + { + "id": "94998", + "name": "Mija", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91356000", + "longitude": "25.67585000" + }, + { + "id": "95097", + "name": "Moțăieni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "25.41667000" + }, + { + "id": "95052", + "name": "Mogoşani", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68333000", + "longitude": "25.40000000" + }, + { + "id": "95071", + "name": "Moreni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98301000", + "longitude": "25.64415000" + }, + { + "id": "95072", + "name": "Moroeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "25.43333000" + }, + { + "id": "95073", + "name": "Morteni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "25.23333000" + }, + { + "id": "95158", + "name": "Municipiul Moreni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98010000", + "longitude": "25.64381000" + }, + { + "id": "95191", + "name": "Municipiul Târgovişte", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92616000", + "longitude": "25.45498000" + }, + { + "id": "95342", + "name": "Niculești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68266000", + "longitude": "25.94221000" + }, + { + "id": "95359", + "name": "Nucet", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "25.55000000" + }, + { + "id": "95400", + "name": "Ocniţa", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98333000", + "longitude": "25.55000000" + }, + { + "id": "95405", + "name": "Odaia Turcului", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69777000", + "longitude": "25.45082000" + }, + { + "id": "95406", + "name": "Odobeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "25.56667000" + }, + { + "id": "95515", + "name": "Oraş Fieni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13054000", + "longitude": "25.41094000" + }, + { + "id": "95526", + "name": "Oraş Gãeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72003000", + "longitude": "25.32040000" + }, + { + "id": "95574", + "name": "Oraş Pucioasa", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07570000", + "longitude": "25.43335000" + }, + { + "id": "95582", + "name": "Oraş Rãcari", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66037000", + "longitude": "25.74703000" + }, + { + "id": "95604", + "name": "Oraş Titu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65747000", + "longitude": "25.55549000" + }, + { + "id": "95741", + "name": "Perșinari", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80185000", + "longitude": "25.49880000" + }, + { + "id": "95746", + "name": "Petreşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "25.33333000" + }, + { + "id": "95774", + "name": "Picior de Munte", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78247000", + "longitude": "25.39047000" + }, + { + "id": "95776", + "name": "Pietrari", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09377000", + "longitude": "25.29289000" + }, + { + "id": "95790", + "name": "Pietroşiţa", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "25.43333000" + }, + { + "id": "95801", + "name": "Pitaru", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59061000", + "longitude": "25.58407000" + }, + { + "id": "95865", + "name": "Poiana", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "25.68333000" + }, + { + "id": "95933", + "name": "Potlogi", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "25.58333000" + }, + { + "id": "95949", + "name": "Priboiu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03006000", + "longitude": "25.25790000" + }, + { + "id": "95959", + "name": "Produleşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70000000", + "longitude": "25.50000000" + }, + { + "id": "95972", + "name": "Pucheni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "25.28333000" + }, + { + "id": "95975", + "name": "Pucioasa", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07807000", + "longitude": "25.43232000" + }, + { + "id": "96039", + "name": "Raciu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81791000", + "longitude": "25.44106000" + }, + { + "id": "96047", + "name": "Racovița", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83927000", + "longitude": "25.62082000" + }, + { + "id": "96172", + "name": "Râncăciov", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88872000", + "longitude": "25.35778000" + }, + { + "id": "96174", + "name": "Râu Alb de Jos", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13653000", + "longitude": "25.34745000" + }, + { + "id": "96182", + "name": "Răcari", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63333000", + "longitude": "25.73333000" + }, + { + "id": "96206", + "name": "Răscăeți", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59221000", + "longitude": "25.26990000" + }, + { + "id": "96216", + "name": "Răzvad", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93333000", + "longitude": "25.53333000" + }, + { + "id": "96111", + "name": "Românești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "25.61667000" + }, + { + "id": "96153", + "name": "Runcu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "25.38333000" + }, + { + "id": "105996", + "name": "Săcueni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91077000", + "longitude": "25.57223000" + }, + { + "id": "106011", + "name": "Sălcioara", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "25.58333000" + }, + { + "id": "106016", + "name": "Sălcuța", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64374000", + "longitude": "25.58103000" + }, + { + "id": "106040", + "name": "Săteni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97129000", + "longitude": "25.41683000" + }, + { + "id": "96266", + "name": "Scheiu de Jos", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93460000", + "longitude": "25.19986000" + }, + { + "id": "96267", + "name": "Scheiu de Sus", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95602000", + "longitude": "25.19317000" + }, + { + "id": "96326", + "name": "Serdanu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62732000", + "longitude": "25.63124000" + }, + { + "id": "96376", + "name": "Slobozia Moara", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "25.71667000" + }, + { + "id": "96414", + "name": "Speriețeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76611000", + "longitude": "25.45223000" + }, + { + "id": "96512", + "name": "Suseni Socetu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75618000", + "longitude": "25.79829000" + }, + { + "id": "96580", + "name": "Târgovişte", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92543000", + "longitude": "25.45670000" + }, + { + "id": "96613", + "name": "Tărtăşeşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57722000", + "longitude": "25.81278000" + }, + { + "id": "96617", + "name": "Tătărani", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00000000", + "longitude": "25.26667000" + }, + { + "id": "106091", + "name": "Tețcoiu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68188000", + "longitude": "25.43846000" + }, + { + "id": "106074", + "name": "Teiș", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96285000", + "longitude": "25.40280000" + }, + { + "id": "106110", + "name": "Titu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "25.53333000" + }, + { + "id": "96643", + "name": "Ulieşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58333000", + "longitude": "25.41667000" + }, + { + "id": "96649", + "name": "Ulmi", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "25.50000000" + }, + { + "id": "96658", + "name": "Ungureni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57804000", + "longitude": "25.50006000" + }, + { + "id": "96686", + "name": "Urziceanca", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63052000", + "longitude": "25.84240000" + }, + { + "id": "96728", + "name": "Valea Leurzii", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16186000", + "longitude": "25.48533000" + }, + { + "id": "96730", + "name": "Valea Lungă Ogrea", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05978000", + "longitude": "25.59024000" + }, + { + "id": "96731", + "name": "Valea Lungă-Cricov", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06528000", + "longitude": "25.58793000" + }, + { + "id": "96734", + "name": "Valea Mare", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "25.23333000" + }, + { + "id": "96765", + "name": "Valea Voievozilor", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93805000", + "longitude": "25.48518000" + }, + { + "id": "96939", + "name": "Vârfuri", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "25.51667000" + }, + { + "id": "96952", + "name": "Văcăreşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85000000", + "longitude": "25.48333000" + }, + { + "id": "96963", + "name": "Văleni-Dâmbovița", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "25.18333000" + }, + { + "id": "96849", + "name": "Vişina", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58333000", + "longitude": "25.33333000" + }, + { + "id": "96851", + "name": "Vişineşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "25.55000000" + }, + { + "id": "96813", + "name": "Viforâta", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96011000", + "longitude": "25.45796000" + }, + { + "id": "96826", + "name": "Viișoara", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88116000", + "longitude": "25.42730000" + }, + { + "id": "96845", + "name": "Vizurești", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64040000", + "longitude": "25.80740000" + }, + { + "id": "96861", + "name": "Vlădeni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87550000", + "longitude": "25.77318000" + }, + { + "id": "96871", + "name": "Vlăsceni", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58522000", + "longitude": "25.59931000" + }, + { + "id": "96879", + "name": "Voineşti", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "25.25000000" + }, + { + "id": "96902", + "name": "Vulcana Băi", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07982000", + "longitude": "25.38219000" + }, + { + "id": "96903", + "name": "Vulcana de Sus", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10125000", + "longitude": "25.35826000" + }, + { + "id": "96904", + "name": "Vulcana-Pandele", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01558000", + "longitude": "25.39319000" + }, + { + "id": "97023", + "name": "Zăvoiu", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66038000", + "longitude": "25.40350000" + }, + { + "id": "96992", + "name": "Zidurile", + "state_id": 4745, + "state_code": "DB", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58176000", + "longitude": "25.55458000" + }, + { + "id": "89890", + "name": "Afumaţi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00000000", + "longitude": "23.46667000" + }, + { + "id": "89938", + "name": "Almăj", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "23.71667000" + }, + { + "id": "89952", + "name": "Amărăştii de Jos", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95000000", + "longitude": "24.16667000" + }, + { + "id": "89953", + "name": "Amărăştii de Sus", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98333000", + "longitude": "24.15000000" + }, + { + "id": "89972", + "name": "Apele Vii", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06667000", + "longitude": "24.06667000" + }, + { + "id": "89987", + "name": "Argetoaia", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51667000", + "longitude": "23.36667000" + }, + { + "id": "97053", + "name": "Şimnicu de Sus", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "23.80000000" + }, + { + "id": "97025", + "name": "Întorsura", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11226000", + "longitude": "23.57574000" + }, + { + "id": "97109", + "name": "Ţuglui", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "23.81667000" + }, + { + "id": "90067", + "name": "Basarabi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00561000", + "longitude": "23.00915000" + }, + { + "id": "90442", + "name": "Bâlta", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53564000", + "longitude": "23.47019000" + }, + { + "id": "90446", + "name": "Bârca", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96667000", + "longitude": "23.61667000" + }, + { + "id": "90484", + "name": "Bădoși", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14723000", + "longitude": "23.88974000" + }, + { + "id": "90494", + "name": "Băileşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01667000", + "longitude": "23.35000000" + }, + { + "id": "90076", + "name": "Bechet", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78188000", + "longitude": "23.95706000" + }, + { + "id": "90146", + "name": "Bistreț", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "23.50000000" + }, + { + "id": "90249", + "name": "Botoşeşti-Paia", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40000000", + "longitude": "23.26667000" + }, + { + "id": "90250", + "name": "Boureni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01589000", + "longitude": "23.43393000" + }, + { + "id": "90258", + "name": "Brabeți", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96098000", + "longitude": "24.01339000" + }, + { + "id": "90259", + "name": "Brabova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36667000", + "longitude": "23.43333000" + }, + { + "id": "90265", + "name": "Braloştiţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50000000", + "longitude": "23.51667000" + }, + { + "id": "90277", + "name": "Bratovoești", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13333000", + "longitude": "23.90000000" + }, + { + "id": "90324", + "name": "Brădeşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48333000", + "longitude": "23.63333000" + }, + { + "id": "90282", + "name": "Breasta", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33333000", + "longitude": "23.68333000" + }, + { + "id": "90360", + "name": "Bucovăţ", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30000000", + "longitude": "23.75000000" + }, + { + "id": "90405", + "name": "Bulzeşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "23.88333000" + }, + { + "id": "90562", + "name": "Calafat", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.99069000", + "longitude": "22.93328000" + }, + { + "id": "90565", + "name": "Calopăr", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16502000", + "longitude": "23.76060000" + }, + { + "id": "90577", + "name": "Caraula", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "23.25000000" + }, + { + "id": "90581", + "name": "Carpen", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33333000", + "longitude": "23.25000000" + }, + { + "id": "90585", + "name": "Castranova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "24.01667000" + }, + { + "id": "90586", + "name": "Castrele Traiane", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22865000", + "longitude": "23.13921000" + }, + { + "id": "90589", + "name": "Catane", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92671000", + "longitude": "23.41178000" + }, + { + "id": "93809", + "name": "Cârcea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26917000", + "longitude": "23.90007000" + }, + { + "id": "93817", + "name": "Cârna", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88613000", + "longitude": "23.60153000" + }, + { + "id": "93850", + "name": "Călăraşi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "24.05000000" + }, + { + "id": "90612", + "name": "Celaru", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05000000", + "longitude": "24.13333000" + }, + { + "id": "90644", + "name": "Cerăt", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06667000", + "longitude": "23.66667000" + }, + { + "id": "90639", + "name": "Cernăteşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "23.43333000" + }, + { + "id": "90631", + "name": "Cernele", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33363000", + "longitude": "23.74140000" + }, + { + "id": "90647", + "name": "Cetate", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10000000", + "longitude": "23.05000000" + }, + { + "id": "90727", + "name": "Cioroiași", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08333000", + "longitude": "23.45000000" + }, + { + "id": "90755", + "name": "Ciupercenii Noi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90972000", + "longitude": "22.94833000" + }, + { + "id": "90756", + "name": "Ciupercenii Vechi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94512000", + "longitude": "22.89469000" + }, + { + "id": "90764", + "name": "Cleanov", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35288000", + "longitude": "23.21032000" + }, + { + "id": "93692", + "name": "Coşoveni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25000000", + "longitude": "23.93333000" + }, + { + "id": "93694", + "name": "Coţofenii din Dos", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43333000", + "longitude": "23.61667000" + }, + { + "id": "93701", + "name": "Coțofenii din Față", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45971000", + "longitude": "23.65688000" + }, + { + "id": "90815", + "name": "Comoșteni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87405000", + "longitude": "23.86356000" + }, + { + "id": "90827", + "name": "Comuna Afumaţi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.99793000", + "longitude": "23.44386000" + }, + { + "id": "90858", + "name": "Comuna Almãj", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44093000", + "longitude": "23.70915000" + }, + { + "id": "90866", + "name": "Comuna Amărăştii de Jos", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92611000", + "longitude": "24.16076000" + }, + { + "id": "90867", + "name": "Comuna Amărăştii de Sus", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98588000", + "longitude": "24.16715000" + }, + { + "id": "90879", + "name": "Comuna Apele Vii", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06658000", + "longitude": "24.06611000" + }, + { + "id": "90889", + "name": "Comuna Argetoaia", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50920000", + "longitude": "23.37593000" + }, + { + "id": "93523", + "name": "Comuna Şimnicu de Sus", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41283000", + "longitude": "23.78863000" + }, + { + "id": "93493", + "name": "Comuna Întorsura", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11226000", + "longitude": "23.57574000" + }, + { + "id": "93577", + "name": "Comuna Ţuglui", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20034000", + "longitude": "23.82296000" + }, + { + "id": "91185", + "name": "Comuna Bârca", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96954000", + "longitude": "23.61782000" + }, + { + "id": "90997", + "name": "Comuna Bistreţ", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90162000", + "longitude": "23.52291000" + }, + { + "id": "91065", + "name": "Comuna Botoşeşti-Paia", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40390000", + "longitude": "23.26381000" + }, + { + "id": "91072", + "name": "Comuna Brabova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35864000", + "longitude": "23.39816000" + }, + { + "id": "91075", + "name": "Comuna Braloştiţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50483000", + "longitude": "23.49123000" + }, + { + "id": "91085", + "name": "Comuna Bratovoeşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13725000", + "longitude": "23.91445000" + }, + { + "id": "91114", + "name": "Comuna Brădeşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51766000", + "longitude": "23.61747000" + }, + { + "id": "91088", + "name": "Comuna Breasta", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34924000", + "longitude": "23.67073000" + }, + { + "id": "91136", + "name": "Comuna Bucovăţ", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29453000", + "longitude": "23.69512000" + }, + { + "id": "91160", + "name": "Comuna Bulzeşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59126000", + "longitude": "23.87180000" + }, + { + "id": "91254", + "name": "Comuna Calopăru", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15560000", + "longitude": "23.75966000" + }, + { + "id": "91259", + "name": "Comuna Caraula", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19287000", + "longitude": "23.25298000" + }, + { + "id": "91262", + "name": "Comuna Carpen", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34169000", + "longitude": "23.26059000" + }, + { + "id": "91265", + "name": "Comuna Castranova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12778000", + "longitude": "24.01240000" + }, + { + "id": "91267", + "name": "Comuna Catane", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92584000", + "longitude": "23.41332000" + }, + { + "id": "91549", + "name": "Comuna Cârcea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26856000", + "longitude": "23.89801000" + }, + { + "id": "91554", + "name": "Comuna Cârna", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88613000", + "longitude": "23.60153000" + }, + { + "id": "91577", + "name": "Comuna Călăraşi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78416000", + "longitude": "24.04076000" + }, + { + "id": "91279", + "name": "Comuna Celaru", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04192000", + "longitude": "24.11972000" + }, + { + "id": "91301", + "name": "Comuna Cerãt", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.07358000", + "longitude": "23.67078000" + }, + { + "id": "91295", + "name": "Comuna Cernăteşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44315000", + "longitude": "23.47578000" + }, + { + "id": "91304", + "name": "Comuna Cetate", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09894000", + "longitude": "23.06370000" + }, + { + "id": "91355", + "name": "Comuna Cioroiaşi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08624000", + "longitude": "23.45207000" + }, + { + "id": "91374", + "name": "Comuna Ciupercenii Noi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92186000", + "longitude": "22.95877000" + }, + { + "id": "91477", + "name": "Comuna Coşoveni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24628000", + "longitude": "23.93612000" + }, + { + "id": "91480", + "name": "Comuna Coţofenii din Dos", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41282000", + "longitude": "23.64369000" + }, + { + "id": "91481", + "name": "Comuna Coţofenii din Faţă", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45275000", + "longitude": "23.67053000" + }, + { + "id": "91741", + "name": "Comuna Dăneţi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.97750000", + "longitude": "24.04015000" + }, + { + "id": "91617", + "name": "Comuna Desa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87038000", + "longitude": "23.03236000" + }, + { + "id": "91629", + "name": "Comuna Dioşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12923000", + "longitude": "24.17156000" + }, + { + "id": "91636", + "name": "Comuna Dobreşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96771000", + "longitude": "23.95341000" + }, + { + "id": "91643", + "name": "Comuna Dobroteşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96749000", + "longitude": "24.12835000" + }, + { + "id": "91685", + "name": "Comuna Drãnic", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05601000", + "longitude": "23.84033000" + }, + { + "id": "91692", + "name": "Comuna Drăgoteşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25774000", + "longitude": "24.08138000" + }, + { + "id": "91815", + "name": "Comuna Fãrcaş", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61267000", + "longitude": "23.74081000" + }, + { + "id": "91831", + "name": "Comuna Galicea Mare", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09805000", + "longitude": "23.30967000" + }, + { + "id": "91832", + "name": "Comuna Galiciuica", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10189000", + "longitude": "23.38921000" + }, + { + "id": "91963", + "name": "Comuna Gângiova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88621000", + "longitude": "23.86161000" + }, + { + "id": "91844", + "name": "Comuna Gherceşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38567000", + "longitude": "23.92481000" + }, + { + "id": "91852", + "name": "Comuna Ghidici", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88899000", + "longitude": "23.19454000" + }, + { + "id": "91858", + "name": "Comuna Ghindeni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21223000", + "longitude": "23.92336000" + }, + { + "id": "91867", + "name": "Comuna Gighera", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84806000", + "longitude": "23.80590000" + }, + { + "id": "91873", + "name": "Comuna Giubega", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12821000", + "longitude": "23.41164000" + }, + { + "id": "91877", + "name": "Comuna Giurgiţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00721000", + "longitude": "23.63050000" + }, + { + "id": "91891", + "name": "Comuna Gogoşu", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41717000", + "longitude": "23.37842000" + }, + { + "id": "91894", + "name": "Comuna Goicea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92623000", + "longitude": "23.61845000" + }, + { + "id": "91895", + "name": "Comuna Goieşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48627000", + "longitude": "23.75375000" + }, + { + "id": "91914", + "name": "Comuna Greceşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45468000", + "longitude": "23.26394000" + }, + { + "id": "92113", + "name": "Comuna Işalniţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39390000", + "longitude": "23.73711000" + }, + { + "id": "92102", + "name": "Comuna Izvoare", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15000000", + "longitude": "23.28333000" + }, + { + "id": "92159", + "name": "Comuna Leu", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17207000", + "longitude": "24.04971000" + }, + { + "id": "92168", + "name": "Comuna Lipovu", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11342000", + "longitude": "23.62736000" + }, + { + "id": "92228", + "name": "Comuna Maglavit", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04339000", + "longitude": "23.09854000" + }, + { + "id": "92236", + "name": "Comuna Malu Mare", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23844000", + "longitude": "23.85570000" + }, + { + "id": "92374", + "name": "Comuna Mârşani", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01157000", + "longitude": "24.01919000" + }, + { + "id": "92378", + "name": "Comuna Măceşu de Jos", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87966000", + "longitude": "23.68954000" + }, + { + "id": "92379", + "name": "Comuna Măceşu de Sus", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91667000", + "longitude": "23.71126000" + }, + { + "id": "92253", + "name": "Comuna Melineşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56310000", + "longitude": "23.69530000" + }, + { + "id": "92305", + "name": "Comuna Mischii", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42093000", + "longitude": "23.86238000" + }, + { + "id": "92353", + "name": "Comuna Moţăţei", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08454000", + "longitude": "23.18856000" + }, + { + "id": "92360", + "name": "Comuna Murgaşi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54342000", + "longitude": "23.82994000" + }, + { + "id": "92428", + "name": "Comuna Negoi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91396000", + "longitude": "23.37288000" + }, + { + "id": "92512", + "name": "Comuna Orodel", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26414000", + "longitude": "23.27390000" + }, + { + "id": "92520", + "name": "Comuna Ostroveni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.82121000", + "longitude": "23.90789000" + }, + { + "id": "92555", + "name": "Comuna Perişor", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15843000", + "longitude": "23.49214000" + }, + { + "id": "92575", + "name": "Comuna Pieleşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35632000", + "longitude": "23.97570000" + }, + { + "id": "92588", + "name": "Comuna Piscu Vechi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.89938000", + "longitude": "23.16364000" + }, + { + "id": "92594", + "name": "Comuna Pleşoi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35380000", + "longitude": "23.54284000" + }, + { + "id": "92592", + "name": "Comuna Pleniţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22532000", + "longitude": "23.16364000" + }, + { + "id": "92611", + "name": "Comuna Podari", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24394000", + "longitude": "23.79217000" + }, + { + "id": "92629", + "name": "Comuna Poiana Mare", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92040000", + "longitude": "23.06271000" + }, + { + "id": "92670", + "name": "Comuna Predeşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34640000", + "longitude": "23.58506000" + }, + { + "id": "92743", + "name": "Comuna Radovan", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17687000", + "longitude": "23.58518000" + }, + { + "id": "92749", + "name": "Comuna Rast", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88713000", + "longitude": "23.28409000" + }, + { + "id": "92775", + "name": "Comuna Robăneşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30356000", + "longitude": "24.00582000" + }, + { + "id": "92780", + "name": "Comuna Rojişte", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.02515000", + "longitude": "23.91865000" + }, + { + "id": "92858", + "name": "Comuna Sadova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88749000", + "longitude": "23.94622000" + }, + { + "id": "93097", + "name": "Comuna Sălcuţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22948000", + "longitude": "23.45454000" + }, + { + "id": "92904", + "name": "Comuna Scăeşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46591000", + "longitude": "23.54822000" + }, + { + "id": "92909", + "name": "Comuna Seaca de Câmp", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92824000", + "longitude": "23.19955000" + }, + { + "id": "92910", + "name": "Comuna Seaca de Pădure", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37108000", + "longitude": "23.32359000" + }, + { + "id": "92912", + "name": "Comuna Secu", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47854000", + "longitude": "23.29525000" + }, + { + "id": "92933", + "name": "Comuna Siliştea Crucii", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04488000", + "longitude": "23.48194000" + }, + { + "id": "92977", + "name": "Comuna Sopot", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39061000", + "longitude": "23.51252000" + }, + { + "id": "93232", + "name": "Comuna Tãlpaş", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68256000", + "longitude": "23.74391000" + }, + { + "id": "93132", + "name": "Comuna Teasc", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17820000", + "longitude": "23.86390000" + }, + { + "id": "93143", + "name": "Comuna Terpeziţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30631000", + "longitude": "23.49202000" + }, + { + "id": "93145", + "name": "Comuna Teslui", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20534000", + "longitude": "24.15241000" + }, + { + "id": "93276", + "name": "Comuna Unirea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15811000", + "longitude": "23.17936000" + }, + { + "id": "93287", + "name": "Comuna Urzicuţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01485000", + "longitude": "23.56956000" + }, + { + "id": "93323", + "name": "Comuna Valea Stanciului", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98333000", + "longitude": "23.86667000" + }, + { + "id": "93446", + "name": "Comuna Vârtop", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20873000", + "longitude": "23.34831000" + }, + { + "id": "93447", + "name": "Comuna Vârvoru de Jos", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24458000", + "longitude": "23.60636000" + }, + { + "id": "93341", + "name": "Comuna Vela", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28526000", + "longitude": "23.37887000" + }, + { + "id": "93342", + "name": "Comuna Verbiţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29305000", + "longitude": "23.17886000" + }, + { + "id": "93704", + "name": "Craiova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31667000", + "longitude": "23.80000000" + }, + { + "id": "94114", + "name": "Dăbuleni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "24.08333000" + }, + { + "id": "94129", + "name": "Dăneţi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98333000", + "longitude": "24.05000000" + }, + { + "id": "93925", + "name": "Desa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86667000", + "longitude": "23.03333000" + }, + { + "id": "93939", + "name": "Dioşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "24.18333000" + }, + { + "id": "93954", + "name": "Dobreşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96667000", + "longitude": "23.95000000" + }, + { + "id": "93958", + "name": "Dobridor", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11866000", + "longitude": "23.16969000" + }, + { + "id": "93966", + "name": "Dobrotești", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96141000", + "longitude": "24.12405000" + }, + { + "id": "94045", + "name": "Drăgoteşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25000000", + "longitude": "24.10000000" + }, + { + "id": "94065", + "name": "Drănic", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05519000", + "longitude": "23.84678000" + }, + { + "id": "94250", + "name": "Făcăi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.27356000", + "longitude": "23.82029000" + }, + { + "id": "94263", + "name": "Fărcaș", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "23.75000000" + }, + { + "id": "94171", + "name": "Filiaşi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "23.51667000" + }, + { + "id": "94203", + "name": "Fratoștița", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58671000", + "longitude": "23.57044000" + }, + { + "id": "94278", + "name": "Galicea Mare", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10000000", + "longitude": "23.30000000" + }, + { + "id": "94279", + "name": "Galiciuica", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10324000", + "longitude": "23.39067000" + }, + { + "id": "94480", + "name": "Gângiova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "23.85000000" + }, + { + "id": "94317", + "name": "Ghidici", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.89103000", + "longitude": "23.19454000" + }, + { + "id": "94327", + "name": "Ghindeni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21223000", + "longitude": "23.92336000" + }, + { + "id": "94338", + "name": "Ghizdăvești", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05757000", + "longitude": "24.10811000" + }, + { + "id": "94343", + "name": "Gighera", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85000000", + "longitude": "23.80000000" + }, + { + "id": "94349", + "name": "Giubega", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12740000", + "longitude": "23.40757000" + }, + { + "id": "94354", + "name": "Giurgiţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01667000", + "longitude": "23.63333000" + }, + { + "id": "94373", + "name": "Gogoşu", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "23.36667000" + }, + { + "id": "94375", + "name": "Goicea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91667000", + "longitude": "23.61667000" + }, + { + "id": "94376", + "name": "Goiești", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48333000", + "longitude": "23.76667000" + }, + { + "id": "94406", + "name": "Greceşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "23.28333000" + }, + { + "id": "94579", + "name": "Hunia", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05532000", + "longitude": "23.09893000" + }, + { + "id": "94721", + "name": "Işalniţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40000000", + "longitude": "23.73333000" + }, + { + "id": "94702", + "name": "Izvoare", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14773000", + "longitude": "23.29582000" + }, + { + "id": "94789", + "name": "Leu", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "24.00000000" + }, + { + "id": "94827", + "name": "Lișteava", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.83418000", + "longitude": "23.92022000" + }, + { + "id": "94805", + "name": "Lipovu", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10000000", + "longitude": "23.63333000" + }, + { + "id": "94904", + "name": "Maglavit", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03333000", + "longitude": "23.10000000" + }, + { + "id": "94916", + "name": "Malu Mare", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24182000", + "longitude": "23.85321000" + }, + { + "id": "95223", + "name": "Mârşani", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01667000", + "longitude": "24.01667000" + }, + { + "id": "95227", + "name": "Măceşu de Jos", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88333000", + "longitude": "23.71667000" + }, + { + "id": "95228", + "name": "Măceşu de Sus", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91667000", + "longitude": "23.70000000" + }, + { + "id": "94947", + "name": "Melineşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "23.71667000" + }, + { + "id": "95027", + "name": "Mischii", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "23.85000000" + }, + { + "id": "95093", + "name": "Moţăţei", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08333000", + "longitude": "23.20000000" + }, + { + "id": "95048", + "name": "Mofleni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30220000", + "longitude": "23.75848000" + }, + { + "id": "95121", + "name": "Municipiul Bãileşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.02121000", + "longitude": "23.34475000" + }, + { + "id": "95122", + "name": "Municipiul Calafat", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98979000", + "longitude": "22.93130000" + }, + { + "id": "95128", + "name": "Municipiul Craiova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31943000", + "longitude": "23.80875000" + }, + { + "id": "95205", + "name": "Murgași", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49968000", + "longitude": "23.86698000" + }, + { + "id": "95305", + "name": "Nedeia", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84992000", + "longitude": "23.77643000" + }, + { + "id": "95308", + "name": "Negoi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91396000", + "longitude": "23.37288000" + }, + { + "id": "95310", + "name": "Negoiești", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53584000", + "longitude": "23.72690000" + }, + { + "id": "95403", + "name": "Ocolna", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87917000", + "longitude": "24.13405000" + }, + { + "id": "95459", + "name": "Oraş Bechet", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78301000", + "longitude": "23.95870000" + }, + { + "id": "95512", + "name": "Oraş Dãbuleni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78047000", + "longitude": "24.08653000" + }, + { + "id": "95517", + "name": "Oraş Filiaşi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56847000", + "longitude": "23.55164000" + }, + { + "id": "95586", + "name": "Oraş Segarcea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09434000", + "longitude": "23.74197000" + }, + { + "id": "95663", + "name": "Orodel", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23333000", + "longitude": "23.23333000" + }, + { + "id": "95678", + "name": "Ostroveni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "23.90000000" + }, + { + "id": "95692", + "name": "Padea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.02128000", + "longitude": "23.86827000" + }, + { + "id": "95738", + "name": "Perișor", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14331000", + "longitude": "23.47509000" + }, + { + "id": "95775", + "name": "Pieleştí", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33333000", + "longitude": "23.95000000" + }, + { + "id": "95798", + "name": "Piscu Nou", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92400000", + "longitude": "23.17917000" + }, + { + "id": "95799", + "name": "Piscu Sadovei", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87729000", + "longitude": "23.93687000" + }, + { + "id": "95800", + "name": "Piscu Vechi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "23.16667000" + }, + { + "id": "95813", + "name": "Pleșoi", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35077000", + "longitude": "23.53345000" + }, + { + "id": "95809", + "name": "Pleniţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21667000", + "longitude": "23.18333000" + }, + { + "id": "95842", + "name": "Podari", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25000000", + "longitude": "23.78333000" + }, + { + "id": "95876", + "name": "Poiana Mare", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91667000", + "longitude": "23.06667000" + }, + { + "id": "95918", + "name": "Popoveni", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28800000", + "longitude": "23.78208000" + }, + { + "id": "95940", + "name": "Prapor", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94487000", + "longitude": "24.17475000" + }, + { + "id": "95941", + "name": "Preajba", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26511000", + "longitude": "23.85024000" + }, + { + "id": "95943", + "name": "Predeşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "23.60000000" + }, + { + "id": "95992", + "name": "Puțuri", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13835000", + "longitude": "24.01017000" + }, + { + "id": "96052", + "name": "Radomir", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12115000", + "longitude": "24.16832000" + }, + { + "id": "96054", + "name": "Radovan", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16667000", + "longitude": "23.61667000" + }, + { + "id": "96062", + "name": "Rast", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88333000", + "longitude": "23.28333000" + }, + { + "id": "96183", + "name": "Răcarii de Sus", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53539000", + "longitude": "23.55746000" + }, + { + "id": "96103", + "name": "Rojiște", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06683000", + "longitude": "23.93898000" + }, + { + "id": "96225", + "name": "Sadova", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "23.95000000" + }, + { + "id": "96233", + "name": "Salcia", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48195000", + "longitude": "23.44645000" + }, + { + "id": "96261", + "name": "Satu Nou Calopăr", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16667000", + "longitude": "23.76667000" + }, + { + "id": "106014", + "name": "Sălcuţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25000000", + "longitude": "23.43333000" + }, + { + "id": "106015", + "name": "Sălcuța", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15986000", + "longitude": "23.70247000" + }, + { + "id": "106031", + "name": "Sărata", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.77436000", + "longitude": "24.03351000" + }, + { + "id": "96295", + "name": "Scăeşti", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "23.58333000" + }, + { + "id": "96300", + "name": "Seaca de Câmp", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93333000", + "longitude": "23.21667000" + }, + { + "id": "96301", + "name": "Seaca de Pădure", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36611000", + "longitude": "23.30587000" + }, + { + "id": "96313", + "name": "Secu", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "23.30000000" + }, + { + "id": "96314", + "name": "Secui", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19186000", + "longitude": "23.86319000" + }, + { + "id": "96319", + "name": "Segarcea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10000000", + "longitude": "23.75000000" + }, + { + "id": "96331", + "name": "Sfârcea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48613000", + "longitude": "23.54661000" + }, + { + "id": "96342", + "name": "Siliştea Crucii", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03333000", + "longitude": "23.48333000" + }, + { + "id": "96389", + "name": "Smârdan", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93382000", + "longitude": "22.96592000" + }, + { + "id": "96412", + "name": "Sopot", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "23.50000000" + }, + { + "id": "96603", + "name": "Tălpaș", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68227000", + "longitude": "23.74553000" + }, + { + "id": "106067", + "name": "Teasc", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16454000", + "longitude": "23.86461000" + }, + { + "id": "106086", + "name": "Terpeziţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29191000", + "longitude": "23.50559000" + }, + { + "id": "106088", + "name": "Teslui", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20559000", + "longitude": "24.15482000" + }, + { + "id": "96670", + "name": "Unirea", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15000000", + "longitude": "23.18333000" + }, + { + "id": "96689", + "name": "Urzicuţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01667000", + "longitude": "23.55000000" + }, + { + "id": "96756", + "name": "Valea Stanciului", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98333000", + "longitude": "23.86667000" + }, + { + "id": "96947", + "name": "Vârtop", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20682000", + "longitude": "23.34869000" + }, + { + "id": "96948", + "name": "Vârvoru de Jos", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24415000", + "longitude": "23.60790000" + }, + { + "id": "96784", + "name": "Vela", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "23.41667000" + }, + { + "id": "96785", + "name": "Verbiţa", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30000000", + "longitude": "23.16667000" + }, + { + "id": "97012", + "name": "Zănoaga", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15511000", + "longitude": "24.09832000" + }, + { + "id": "97020", + "name": "Zăval", + "state_id": 4742, + "state_code": "DJ", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84717000", + "longitude": "23.84208000" + }, + { + "id": "97037", + "name": "Şendreni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40000000", + "longitude": "27.91667000" + }, + { + "id": "97100", + "name": "Ţepu", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "27.36667000" + }, + { + "id": "90043", + "name": "Balintești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.02937000", + "longitude": "27.92201000" + }, + { + "id": "90061", + "name": "Barcea", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75000000", + "longitude": "27.46667000" + }, + { + "id": "90525", + "name": "Bălăşeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "27.66667000" + }, + { + "id": "90519", + "name": "Bălăbănești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09546000", + "longitude": "27.72206000" + }, + { + "id": "90508", + "name": "Băleni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "27.83333000" + }, + { + "id": "90530", + "name": "Băneasa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93333000", + "longitude": "27.93333000" + }, + { + "id": "90105", + "name": "Bereşti-Sat", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "27.88333000" + }, + { + "id": "90107", + "name": "Berești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "27.88333000" + }, + { + "id": "90162", + "name": "Blânzi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93575000", + "longitude": "27.65063000" + }, + { + "id": "90270", + "name": "Braniştea", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45000000", + "longitude": "27.85000000" + }, + { + "id": "90331", + "name": "Brăhăşeştii de Sus", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "27.35000000" + }, + { + "id": "90332", + "name": "Brăhășești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03333000", + "longitude": "27.36667000" + }, + { + "id": "90346", + "name": "Bucești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65250000", + "longitude": "27.53008000" + }, + { + "id": "90353", + "name": "Buciumeni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00000000", + "longitude": "27.30000000" + }, + { + "id": "90591", + "name": "Cavadineşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06667000", + "longitude": "28.01694000" + }, + { + "id": "90645", + "name": "Cerţeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "27.61667000" + }, + { + "id": "90675", + "name": "Chiraftei", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77220000", + "longitude": "28.02716000" + }, + { + "id": "90763", + "name": "Cișmele", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51634000", + "longitude": "27.92975000" + }, + { + "id": "90730", + "name": "Ciorăști", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11380000", + "longitude": "27.45311000" + }, + { + "id": "93506", + "name": "Comuna Şendreni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41320000", + "longitude": "27.92253000" + }, + { + "id": "93568", + "name": "Comuna Ţepu", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97734000", + "longitude": "27.37677000" + }, + { + "id": "90937", + "name": "Comuna Barcea", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.74744000", + "longitude": "27.46265000" + }, + { + "id": "91226", + "name": "Comuna Bălăşeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09003000", + "longitude": "27.65844000" + }, + { + "id": "91221", + "name": "Comuna Bălăbăneşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07623000", + "longitude": "27.75375000" + }, + { + "id": "91213", + "name": "Comuna Băleni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80942000", + "longitude": "27.85020000" + }, + { + "id": "91230", + "name": "Comuna Băneasa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93008000", + "longitude": "27.97963000" + }, + { + "id": "90966", + "name": "Comuna Bereşti-Meria", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10362000", + "longitude": "27.92288000" + }, + { + "id": "91078", + "name": "Comuna Braniştea", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44141000", + "longitude": "27.83240000" + }, + { + "id": "91120", + "name": "Comuna Brăhăşeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06160000", + "longitude": "27.36196000" + }, + { + "id": "91131", + "name": "Comuna Buciumeni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97702000", + "longitude": "27.31922000" + }, + { + "id": "91268", + "name": "Comuna Cavadineşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08040000", + "longitude": "28.01638000" + }, + { + "id": "91302", + "name": "Comuna Cerţeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01758000", + "longitude": "27.62321000" + }, + { + "id": "91440", + "name": "Comuna Corni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86922000", + "longitude": "27.77693000" + }, + { + "id": "91445", + "name": "Comuna Corod", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93693000", + "longitude": "27.65150000" + }, + { + "id": "91449", + "name": "Comuna Cosmeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84926000", + "longitude": "27.31605000" + }, + { + "id": "91453", + "name": "Comuna Costache Negri", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70518000", + "longitude": "27.72342000" + }, + { + "id": "91519", + "name": "Comuna Cuca", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73246000", + "longitude": "27.89396000" + }, + { + "id": "91521", + "name": "Comuna Cudalbi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77622000", + "longitude": "27.68604000" + }, + { + "id": "91536", + "name": "Comuna Cuza Vodă", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.59595000", + "longitude": "27.79267000" + }, + { + "id": "91698", + "name": "Comuna Drăgăneşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79281000", + "longitude": "27.46438000" + }, + { + "id": "91695", + "name": "Comuna Drăguşeni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00203000", + "longitude": "27.73297000" + }, + { + "id": "91814", + "name": "Comuna Fârţăneşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79843000", + "longitude": "27.96950000" + }, + { + "id": "91777", + "name": "Comuna Folteşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72301000", + "longitude": "28.06995000" + }, + { + "id": "91789", + "name": "Comuna Frumuşiţa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65593000", + "longitude": "28.06631000" + }, + { + "id": "91800", + "name": "Comuna Fundeni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56736000", + "longitude": "27.55104000" + }, + { + "id": "91853", + "name": "Comuna Ghidigeni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03356000", + "longitude": "27.49210000" + }, + { + "id": "91893", + "name": "Comuna Gohor", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01539000", + "longitude": "27.42653000" + }, + { + "id": "91922", + "name": "Comuna Griviţa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70040000", + "longitude": "27.64104000" + }, + { + "id": "92077", + "name": "Comuna Independenţa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.47466000", + "longitude": "27.76025000" + }, + { + "id": "92098", + "name": "Comuna Iveşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66843000", + "longitude": "27.52467000" + }, + { + "id": "92129", + "name": "Comuna Jorăşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98544000", + "longitude": "27.87215000" + }, + { + "id": "92164", + "name": "Comuna Lieşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.62018000", + "longitude": "27.54132000" + }, + { + "id": "92245", + "name": "Comuna Matca", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85686000", + "longitude": "27.53660000" + }, + { + "id": "92418", + "name": "Comuna Măstăcani", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76700000", + "longitude": "28.04175000" + }, + { + "id": "92340", + "name": "Comuna Movileni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76584000", + "longitude": "27.37587000" + }, + { + "id": "92356", + "name": "Comuna Munteni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91503000", + "longitude": "27.44242000" + }, + { + "id": "92462", + "name": "Comuna Nămoloasa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.52383000", + "longitude": "27.56307000" + }, + { + "id": "92434", + "name": "Comuna Negrileşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.94768000", + "longitude": "27.48018000" + }, + { + "id": "92444", + "name": "Comuna Nicoreşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93603000", + "longitude": "27.29735000" + }, + { + "id": "92467", + "name": "Comuna Oancea", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90648000", + "longitude": "28.11118000" + }, + { + "id": "92543", + "name": "Comuna Pechea", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64303000", + "longitude": "27.82756000" + }, + { + "id": "92587", + "name": "Comuna Piscu", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51681000", + "longitude": "27.71645000" + }, + { + "id": "92622", + "name": "Comuna Poiana", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99554000", + "longitude": "27.26693000" + }, + { + "id": "92676", + "name": "Comuna Priponeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10150000", + "longitude": "27.43939000" + }, + { + "id": "92843", + "name": "Comuna Rădeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08312000", + "longitude": "27.79606000" + }, + { + "id": "92760", + "name": "Comuna Rediu", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72065000", + "longitude": "27.84647000" + }, + { + "id": "92903", + "name": "Comuna Scânteieşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68833000", + "longitude": "28.00432000" + }, + { + "id": "92885", + "name": "Comuna Schela", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51810000", + "longitude": "27.85229000" + }, + { + "id": "92956", + "name": "Comuna Slobozia Conachi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56430000", + "longitude": "27.77143000" + }, + { + "id": "92964", + "name": "Comuna Smârdan", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.49694000", + "longitude": "27.93554000" + }, + { + "id": "92963", + "name": "Comuna Smulţi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93246000", + "longitude": "27.75488000" + }, + { + "id": "93025", + "name": "Comuna Suceveni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99495000", + "longitude": "28.05748000" + }, + { + "id": "93031", + "name": "Comuna Suhurlui", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72873000", + "longitude": "27.82678000" + }, + { + "id": "93198", + "name": "Comuna Tudor Vladimirescu", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56466000", + "longitude": "27.65075000" + }, + { + "id": "93206", + "name": "Comuna Tuluceşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.59242000", + "longitude": "28.05239000" + }, + { + "id": "93266", + "name": "Comuna Umbrăreşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71386000", + "longitude": "27.45893000" + }, + { + "id": "93317", + "name": "Comuna Valea Mãrului", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85934000", + "longitude": "27.69554000" + }, + { + "id": "93434", + "name": "Comuna Vânători", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.52597000", + "longitude": "28.00892000" + }, + { + "id": "93443", + "name": "Comuna Vârlezi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92244000", + "longitude": "27.82966000" + }, + { + "id": "93390", + "name": "Comuna Vlădeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81991000", + "longitude": "28.08845000" + }, + { + "id": "93637", + "name": "Corni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "27.76667000" + }, + { + "id": "93646", + "name": "Corod", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "27.61667000" + }, + { + "id": "93652", + "name": "Cosmeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87017000", + "longitude": "27.31115000" + }, + { + "id": "93654", + "name": "Cosmeștii-Vale", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86931000", + "longitude": "27.28771000" + }, + { + "id": "93657", + "name": "Costache Negri", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70000000", + "longitude": "27.71667000" + }, + { + "id": "93754", + "name": "Crăiești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.94314000", + "longitude": "27.81136000" + }, + { + "id": "93756", + "name": "Cuca", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73333000", + "longitude": "27.88333000" + }, + { + "id": "93763", + "name": "Cudalbi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "27.70000000" + }, + { + "id": "93786", + "name": "Cuza Vodă", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.59595000", + "longitude": "27.79267000" + }, + { + "id": "94058", + "name": "Drăgăneşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "27.46667000" + }, + { + "id": "94048", + "name": "Drăguşeni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "27.75000000" + }, + { + "id": "97130", + "name": "Șivița", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61285000", + "longitude": "28.05757000" + }, + { + "id": "94242", + "name": "Fântânele", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70152000", + "longitude": "28.00354000" + }, + { + "id": "94246", + "name": "Fârţăneşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "27.98333000" + }, + { + "id": "94197", + "name": "Folteşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75000000", + "longitude": "28.05000000" + }, + { + "id": "94212", + "name": "Frumuşiţa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66667000", + "longitude": "28.06667000" + }, + { + "id": "94227", + "name": "Fundeni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.54123000", + "longitude": "27.54056000" + }, + { + "id": "94232", + "name": "Furcenii Noi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81118000", + "longitude": "27.33954000" + }, + { + "id": "94272", + "name": "Galaţi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43687000", + "longitude": "28.05028000" + }, + { + "id": "94511", + "name": "Gănești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08970000", + "longitude": "27.99337000" + }, + { + "id": "94318", + "name": "Ghidigeni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "27.50000000" + }, + { + "id": "94374", + "name": "Gohor", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06667000", + "longitude": "27.40000000" + }, + { + "id": "94417", + "name": "Griviţa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "27.65000000" + }, + { + "id": "94523", + "name": "Hanu Conachi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58650000", + "longitude": "27.59481000" + }, + { + "id": "94665", + "name": "Independenţa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48333000", + "longitude": "27.75000000" + }, + { + "id": "94696", + "name": "Iveşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68333000", + "longitude": "27.51667000" + }, + { + "id": "94746", + "name": "Jorăşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98333000", + "longitude": "27.86667000" + }, + { + "id": "94795", + "name": "Lieşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61667000", + "longitude": "27.51667000" + }, + { + "id": "94934", + "name": "Matca", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "27.53333000" + }, + { + "id": "95213", + "name": "Mândrești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88333000", + "longitude": "27.70000000" + }, + { + "id": "95287", + "name": "Măstăcani", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "28.03333000" + }, + { + "id": "95076", + "name": "Moscu", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90260000", + "longitude": "27.93120000" + }, + { + "id": "95084", + "name": "Movileni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76154000", + "longitude": "27.37184000" + }, + { + "id": "95144", + "name": "Municipiul Galaţi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44078000", + "longitude": "28.04118000" + }, + { + "id": "95186", + "name": "Municipiul Tecuci", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85155000", + "longitude": "27.42826000" + }, + { + "id": "95200", + "name": "Munteni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93333000", + "longitude": "27.43333000" + }, + { + "id": "95370", + "name": "Nămoloasa", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.53610000", + "longitude": "27.55226000" + }, + { + "id": "95371", + "name": "Nămoloasa-Sat", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.53333000", + "longitude": "27.58333000" + }, + { + "id": "95323", + "name": "Negrilești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95729000", + "longitude": "27.48085000" + }, + { + "id": "95341", + "name": "Nicoreşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93223000", + "longitude": "27.30866000" + }, + { + "id": "95379", + "name": "Oancea", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "28.10000000" + }, + { + "id": "95404", + "name": "Odaia Manolache", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.54897000", + "longitude": "27.99057000" + }, + { + "id": "95462", + "name": "Oraş Bereşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.09648000", + "longitude": "27.88623000" + }, + { + "id": "95647", + "name": "Oraș Târgu Bujor", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87398000", + "longitude": "27.92304000" + }, + { + "id": "95721", + "name": "Pechea", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63333000", + "longitude": "27.80000000" + }, + { + "id": "95797", + "name": "Piscu", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "27.73333000" + }, + { + "id": "95847", + "name": "Podoleni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.74830000", + "longitude": "27.44661000" + }, + { + "id": "95867", + "name": "Poiana", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99228000", + "longitude": "27.25609000" + }, + { + "id": "95953", + "name": "Priponeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "27.43333000" + }, + { + "id": "96196", + "name": "Rădești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07263000", + "longitude": "27.78936000" + }, + { + "id": "96079", + "name": "Rediu", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "27.83333000" + }, + { + "id": "96294", + "name": "Scânteiești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68333000", + "longitude": "27.98333000" + }, + { + "id": "96268", + "name": "Schela", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "27.81667000" + }, + { + "id": "96375", + "name": "Slobozia Conachi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58333000", + "longitude": "27.78333000" + }, + { + "id": "96390", + "name": "Smârdan", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48333000", + "longitude": "27.93333000" + }, + { + "id": "96388", + "name": "Smulţi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93333000", + "longitude": "27.75000000" + }, + { + "id": "96489", + "name": "Suceveni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01222000", + "longitude": "28.01806000" + }, + { + "id": "96498", + "name": "Suhurlui", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72873000", + "longitude": "27.82678000" + }, + { + "id": "96581", + "name": "Târgu Bujor", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86667000", + "longitude": "27.90000000" + }, + { + "id": "96604", + "name": "Tălpigi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00796000", + "longitude": "27.47247000" + }, + { + "id": "106069", + "name": "Tecuci", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84973000", + "longitude": "27.43441000" + }, + { + "id": "106118", + "name": "Toflea", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06372000", + "longitude": "27.33411000" + }, + { + "id": "106165", + "name": "Tudor Vladimirescu", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56667000", + "longitude": "27.65000000" + }, + { + "id": "96547", + "name": "Tuluceşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56667000", + "longitude": "28.03333000" + }, + { + "id": "96652", + "name": "Umbrăreşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "27.46667000" + }, + { + "id": "96653", + "name": "Umbrărești", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84835000", + "longitude": "27.91845000" + }, + { + "id": "96654", + "name": "Umbrărești-Deal", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70000000", + "longitude": "27.46667000" + }, + { + "id": "96659", + "name": "Ungureni", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91307000", + "longitude": "27.47000000" + }, + { + "id": "96743", + "name": "Valea Mărului", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83866000", + "longitude": "27.69138000" + }, + { + "id": "96931", + "name": "Vânători", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.53333000", + "longitude": "28.01667000" + }, + { + "id": "96942", + "name": "Vârlezi", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "27.85000000" + }, + { + "id": "96814", + "name": "Viile", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80691000", + "longitude": "27.94748000" + }, + { + "id": "96865", + "name": "Vlădeşti", + "state_id": 4747, + "state_code": "GL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "28.08333000" + }, + { + "id": "89885", + "name": "Adunații-Copăceni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25413000", + "longitude": "26.04929000" + }, + { + "id": "90439", + "name": "Bâcu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48259000", + "longitude": "25.88904000" + }, + { + "id": "90531", + "name": "Băneasa", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04611000", + "longitude": "26.06417000" + }, + { + "id": "90213", + "name": "Bolintin Deal", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45917000", + "longitude": "25.82111000" + }, + { + "id": "90214", + "name": "Bolintin Vale", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44889000", + "longitude": "25.75778000" + }, + { + "id": "90271", + "name": "Braniștea", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96315000", + "longitude": "26.03812000" + }, + { + "id": "90339", + "name": "Brăniștari", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17626000", + "longitude": "26.05953000" + }, + { + "id": "90365", + "name": "Bucşani", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37611000", + "longitude": "25.65528000" + }, + { + "id": "90401", + "name": "Bulbucata", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "25.80333000" + }, + { + "id": "90429", + "name": "Buturugeni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36528000", + "longitude": "25.83528000" + }, + { + "id": "90582", + "name": "Cartojani", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43221000", + "longitude": "25.48994000" + }, + { + "id": "93803", + "name": "Câmpurelu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23392000", + "longitude": "26.18719000" + }, + { + "id": "93845", + "name": "Călugăreni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17167000", + "longitude": "25.99556000" + }, + { + "id": "93873", + "name": "Căscioarele", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49911000", + "longitude": "25.63817000" + }, + { + "id": "90648", + "name": "Cetatea", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95105000", + "longitude": "25.93450000" + }, + { + "id": "90677", + "name": "Chiriacu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05036000", + "longitude": "25.77726000" + }, + { + "id": "90766", + "name": "Clejani", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31972000", + "longitude": "25.69944000" + }, + { + "id": "90795", + "name": "Colibaşi", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20222000", + "longitude": "26.19472000" + }, + { + "id": "90803", + "name": "Comana", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17056000", + "longitude": "26.14500000" + }, + { + "id": "90823", + "name": "Comuna Adunaţii-Copăceni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25847000", + "longitude": "26.06477000" + }, + { + "id": "91231", + "name": "Comuna Băneasa", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03785000", + "longitude": "26.06071000" + }, + { + "id": "91041", + "name": "Comuna Bolintin Deal", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44593000", + "longitude": "25.82301000" + }, + { + "id": "91141", + "name": "Comuna Bucşani", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35805000", + "longitude": "25.65081000" + }, + { + "id": "91158", + "name": "Comuna Bulbucata", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29537000", + "longitude": "25.82284000" + }, + { + "id": "91177", + "name": "Comuna Buturugeni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34661000", + "longitude": "25.83382000" + }, + { + "id": "91575", + "name": "Comuna Călugăreni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16412000", + "longitude": "25.99392000" + }, + { + "id": "91380", + "name": "Comuna Clejani", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31582000", + "longitude": "25.73560000" + }, + { + "id": "91398", + "name": "Comuna Colibaşi", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21838000", + "longitude": "26.19239000" + }, + { + "id": "91404", + "name": "Comuna Comana", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17965000", + "longitude": "26.14905000" + }, + { + "id": "91452", + "name": "Comuna Cosoba", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52268000", + "longitude": "25.81903000" + }, + { + "id": "91490", + "name": "Comuna Crevedia Mare", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43670000", + "longitude": "25.61050000" + }, + { + "id": "91600", + "name": "Comuna Daia", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.99944000", + "longitude": "25.99228000" + }, + { + "id": "91794", + "name": "Comuna Frăteşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95495000", + "longitude": "25.96212000" + }, + { + "id": "91977", + "name": "Comuna Gãiseni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51633000", + "longitude": "25.63261000" + }, + { + "id": "91987", + "name": "Comuna Găujani", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.73995000", + "longitude": "25.71079000" + }, + { + "id": "91856", + "name": "Comuna Ghimpaţi", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19231000", + "longitude": "25.78360000" + }, + { + "id": "91909", + "name": "Comuna Goştinari", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17765000", + "longitude": "26.23792000" + }, + { + "id": "91890", + "name": "Comuna Gogoşari", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86611000", + "longitude": "25.68497000" + }, + { + "id": "91907", + "name": "Comuna Gostinu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.99738000", + "longitude": "26.12297000" + }, + { + "id": "91937", + "name": "Comuna Grădinari", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39546000", + "longitude": "25.81702000" + }, + { + "id": "91913", + "name": "Comuna Greaca", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12591000", + "longitude": "26.33371000" + }, + { + "id": "91998", + "name": "Comuna Herăşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21077000", + "longitude": "26.36678000" + }, + { + "id": "92025", + "name": "Comuna Hotarele", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17536000", + "longitude": "26.37078000" + }, + { + "id": "92064", + "name": "Comuna Iepureşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26376000", + "longitude": "25.88040000" + }, + { + "id": "92096", + "name": "Comuna Isvoarele", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16855000", + "longitude": "26.29673000" + }, + { + "id": "92103", + "name": "Comuna Izvoarele", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04869000", + "longitude": "25.80326000" + }, + { + "id": "92128", + "name": "Comuna Joiţa", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49002000", + "longitude": "25.87205000" + }, + { + "id": "92157", + "name": "Comuna Letca Nouă", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23326000", + "longitude": "25.70941000" + }, + { + "id": "92235", + "name": "Comuna Malu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81518000", + "longitude": "25.81863000" + }, + { + "id": "92373", + "name": "Comuna Mârşa", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37355000", + "longitude": "25.55974000" + }, + { + "id": "92270", + "name": "Comuna Mihai Bravu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14129000", + "longitude": "26.05812000" + }, + { + "id": "92486", + "name": "Comuna Ogrezeni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39727000", + "longitude": "25.77888000" + }, + { + "id": "92489", + "name": "Comuna Oinacu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95609000", + "longitude": "26.03403000" + }, + { + "id": "92685", + "name": "Comuna Prundu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08334000", + "longitude": "26.21210000" + }, + { + "id": "92700", + "name": "Comuna Putineiu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90072000", + "longitude": "25.78225000" + }, + { + "id": "92850", + "name": "Comuna Răsuceni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08416000", + "longitude": "25.68758000" + }, + { + "id": "92773", + "name": "Comuna Roata De Jos", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41388000", + "longitude": "25.53061000" + }, + { + "id": "93079", + "name": "Comuna Săbăreni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50185000", + "longitude": "25.88820000" + }, + { + "id": "92888", + "name": "Comuna Schitu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14574000", + "longitude": "25.84240000" + }, + { + "id": "92940", + "name": "Comuna Singureni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22975000", + "longitude": "25.95363000" + }, + { + "id": "92952", + "name": "Comuna Slobozia", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85671000", + "longitude": "25.91074000" + }, + { + "id": "93016", + "name": "Comuna Stăneşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93344000", + "longitude": "25.87967000" + }, + { + "id": "92994", + "name": "Comuna Stoeneşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14164000", + "longitude": "25.89349000" + }, + { + "id": "93180", + "name": "Comuna Toporu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.99588000", + "longitude": "25.64737000" + }, + { + "id": "93263", + "name": "Comuna Ulmi", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49340000", + "longitude": "25.76687000" + }, + { + "id": "93305", + "name": "Comuna Valea Dragului", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21135000", + "longitude": "26.30682000" + }, + { + "id": "93437", + "name": "Comuna Vânătorii Mici", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49072000", + "longitude": "25.56116000" + }, + { + "id": "93466", + "name": "Comuna Vărăşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24616000", + "longitude": "26.25221000" + }, + { + "id": "93339", + "name": "Comuna Vedea", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78217000", + "longitude": "25.78860000" + }, + { + "id": "93585", + "name": "Comună Floreşti-Stoeneşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49152000", + "longitude": "25.71140000" + }, + { + "id": "93600", + "name": "Copaciu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18178000", + "longitude": "25.76921000" + }, + { + "id": "93656", + "name": "Cosoba", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52268000", + "longitude": "25.81903000" + }, + { + "id": "93711", + "name": "Crevedia Mare", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42917000", + "longitude": "25.62556000" + }, + { + "id": "93761", + "name": "Cucuruzu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08020000", + "longitude": "25.73242000" + }, + { + "id": "93888", + "name": "Daia", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00000000", + "longitude": "25.98333000" + }, + { + "id": "94135", + "name": "Dărăști-Vlașca", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29401000", + "longitude": "26.01119000" + }, + { + "id": "93899", + "name": "Dealu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39938000", + "longitude": "25.64857000" + }, + { + "id": "93952", + "name": "Dobreni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25430000", + "longitude": "26.21344000" + }, + { + "id": "94148", + "name": "Falaștoaca", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19098000", + "longitude": "26.18475000" + }, + { + "id": "94187", + "name": "Florești", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51313000", + "longitude": "25.69658000" + }, + { + "id": "94219", + "name": "Frăteşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96667000", + "longitude": "25.96667000" + }, + { + "id": "94502", + "name": "Găiseni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51500000", + "longitude": "25.64528000" + }, + { + "id": "94514", + "name": "Găujani", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.73333000", + "longitude": "25.70000000" + }, + { + "id": "94325", + "name": "Ghimpați", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19586000", + "longitude": "25.78336000" + }, + { + "id": "94353", + "name": "Giurgiu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88664000", + "longitude": "25.96270000" + }, + { + "id": "94396", + "name": "Goştinari-Văcăreşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "26.21667000" + }, + { + "id": "94371", + "name": "Gogoşari", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86667000", + "longitude": "25.70000000" + }, + { + "id": "94393", + "name": "Gostinari", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18624000", + "longitude": "26.22807000" + }, + { + "id": "94394", + "name": "Gostinu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00000000", + "longitude": "26.11667000" + }, + { + "id": "94441", + "name": "Grădiștea", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21062000", + "longitude": "26.16547000" + }, + { + "id": "94435", + "name": "Grădinari", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39222000", + "longitude": "25.81556000" + }, + { + "id": "94402", + "name": "Greaca", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10944000", + "longitude": "26.33944000" + }, + { + "id": "94533", + "name": "Herăști", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21174000", + "longitude": "26.35903000" + }, + { + "id": "94570", + "name": "Hotarele", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17250000", + "longitude": "26.37028000" + }, + { + "id": "94574", + "name": "Hulubești", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16748000", + "longitude": "25.94146000" + }, + { + "id": "94636", + "name": "Icoana", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49309000", + "longitude": "25.74623000" + }, + { + "id": "94643", + "name": "Iepureşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25806000", + "longitude": "25.88222000" + }, + { + "id": "94707", + "name": "Izvoarele", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03389000", + "longitude": "25.77472000" + }, + { + "id": "94744", + "name": "Joiţa", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49417000", + "longitude": "25.85389000" + }, + { + "id": "94786", + "name": "Letca Nouă", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23496000", + "longitude": "25.74262000" + }, + { + "id": "94787", + "name": "Letca Veche", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19911000", + "longitude": "25.68681000" + }, + { + "id": "94915", + "name": "Malu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81518000", + "longitude": "25.81863000" + }, + { + "id": "94918", + "name": "Malu Spart", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44391000", + "longitude": "25.71758000" + }, + { + "id": "95222", + "name": "Mârşa", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37417000", + "longitude": "25.55694000" + }, + { + "id": "94976", + "name": "Mihai Bravu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14056000", + "longitude": "26.06278000" + }, + { + "id": "94981", + "name": "Mihai Vodă", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43916000", + "longitude": "25.81957000" + }, + { + "id": "94995", + "name": "Mihăileşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.32667000", + "longitude": "25.90833000" + }, + { + "id": "95003", + "name": "Milcovățu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26570000", + "longitude": "25.69882000" + }, + { + "id": "95147", + "name": "Municipiul Giurgiu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.89051000", + "longitude": "25.96609000" + }, + { + "id": "95299", + "name": "Naipu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15187000", + "longitude": "25.76175000" + }, + { + "id": "95356", + "name": "Novaci", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30109000", + "longitude": "25.98632000" + }, + { + "id": "95416", + "name": "Ogrezeni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41972000", + "longitude": "25.76833000" + }, + { + "id": "95419", + "name": "Oinacu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95000000", + "longitude": "26.01667000" + }, + { + "id": "95466", + "name": "Oraş Bolintin-Vale", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44356000", + "longitude": "25.73930000" + }, + { + "id": "95541", + "name": "Oraş Mihãileşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31666000", + "longitude": "25.94103000" + }, + { + "id": "95699", + "name": "Palanca", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47575000", + "longitude": "25.72565000" + }, + { + "id": "96009", + "name": "Pădureni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34576000", + "longitude": "25.80469000" + }, + { + "id": "95779", + "name": "Pietrele", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06258000", + "longitude": "26.12019000" + }, + { + "id": "95782", + "name": "Pietrișu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.72508000", + "longitude": "25.67464000" + }, + { + "id": "95826", + "name": "Plopșoru", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01190000", + "longitude": "25.99306000" + }, + { + "id": "95913", + "name": "Popești", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30444000", + "longitude": "25.96370000" + }, + { + "id": "95966", + "name": "Prundu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09472000", + "longitude": "26.22694000" + }, + { + "id": "95978", + "name": "Puieni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.07675000", + "longitude": "26.19114000" + }, + { + "id": "95988", + "name": "Putineiu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "25.73333000" + }, + { + "id": "96209", + "name": "Răsuceni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09167000", + "longitude": "25.66389000" + }, + { + "id": "96086", + "name": "Remuș", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94295000", + "longitude": "25.98039000" + }, + { + "id": "96096", + "name": "Roata de Jos", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41083000", + "longitude": "25.54333000" + }, + { + "id": "96223", + "name": "Sadina", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41143000", + "longitude": "25.52953000" + }, + { + "id": "105989", + "name": "Săbăreni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50185000", + "longitude": "25.88820000" + }, + { + "id": "96270", + "name": "Schitu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14083000", + "longitude": "25.83667000" + }, + { + "id": "96355", + "name": "Singureni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23361000", + "longitude": "25.94333000" + }, + { + "id": "96370", + "name": "Slobozia", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85000000", + "longitude": "25.90000000" + }, + { + "id": "96477", + "name": "Stăneşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91667000", + "longitude": "25.83333000" + }, + { + "id": "96435", + "name": "Stoeneşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14444000", + "longitude": "25.89500000" + }, + { + "id": "96437", + "name": "Stoenești", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48569000", + "longitude": "25.71196000" + }, + { + "id": "96579", + "name": "Tântava", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41511000", + "longitude": "25.82450000" + }, + { + "id": "106138", + "name": "Toporu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01056000", + "longitude": "25.65278000" + }, + { + "id": "106153", + "name": "Trestieni", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50449000", + "longitude": "25.75789000" + }, + { + "id": "96648", + "name": "Ulmi", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48667000", + "longitude": "25.78028000" + }, + { + "id": "96693", + "name": "Uzunu", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14716000", + "longitude": "25.96719000" + }, + { + "id": "96723", + "name": "Valea Dragului", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21222000", + "longitude": "26.30361000" + }, + { + "id": "96934", + "name": "Vânătorii Mari", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48898000", + "longitude": "25.54548000" + }, + { + "id": "96935", + "name": "Vânătorii Mici", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49028000", + "longitude": "25.55889000" + }, + { + "id": "96974", + "name": "Vărăşti", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23778000", + "longitude": "26.24861000" + }, + { + "id": "96783", + "name": "Vedea", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78333000", + "longitude": "25.78333000" + }, + { + "id": "96811", + "name": "Vieru", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88787000", + "longitude": "25.80974000" + }, + { + "id": "96856", + "name": "Vlad Țepeș", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13282000", + "longitude": "26.13355000" + }, + { + "id": "97003", + "name": "Zorile", + "state_id": 4726, + "state_code": "GR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37864000", + "longitude": "25.80678000" + }, + { + "id": "89912", + "name": "Albeni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "23.60000000" + }, + { + "id": "89932", + "name": "Alimpeşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "23.80000000" + }, + { + "id": "89954", + "name": "Andreești", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78948000", + "longitude": "23.55099000" + }, + { + "id": "89963", + "name": "Aninoasa", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "23.48333000" + }, + { + "id": "89979", + "name": "Arcani", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "23.13333000" + }, + { + "id": "97111", + "name": "Ţânţăreni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "23.48333000" + }, + { + "id": "97104", + "name": "Ţicleni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88333000", + "longitude": "23.40000000" + }, + { + "id": "90034", + "name": "Baia de Fier", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "23.76667000" + }, + { + "id": "90441", + "name": "Bâlta", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11791000", + "longitude": "23.10220000" + }, + { + "id": "90443", + "name": "Bâlteni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86919000", + "longitude": "23.27311000" + }, + { + "id": "90506", + "name": "Bălcești", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10516000", + "longitude": "23.63290000" + }, + { + "id": "90510", + "name": "Băleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "23.21667000" + }, + { + "id": "90541", + "name": "Bărbăteşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "23.50000000" + }, + { + "id": "90094", + "name": "Bengești", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "23.60000000" + }, + { + "id": "90112", + "name": "Berleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "23.66667000" + }, + { + "id": "90208", + "name": "Bolboşi", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "23.21667000" + }, + { + "id": "90236", + "name": "Borăscu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70000000", + "longitude": "23.28333000" + }, + { + "id": "90336", + "name": "Brăneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "23.46667000" + }, + { + "id": "90407", + "name": "Bumbeşti-Jiu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "23.40000000" + }, + { + "id": "90424", + "name": "Bustuchin", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "23.73333000" + }, + { + "id": "93793", + "name": "Câlnic", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "23.08333000" + }, + { + "id": "93859", + "name": "Căpreni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "23.61667000" + }, + { + "id": "93871", + "name": "Cărpiniș", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18407000", + "longitude": "23.58052000" + }, + { + "id": "93880", + "name": "Cătunele", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86442000", + "longitude": "22.90707000" + }, + { + "id": "90605", + "name": "Ceauru", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01175000", + "longitude": "23.20211000" + }, + { + "id": "90753", + "name": "Ciuperceni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93333000", + "longitude": "23.01667000" + }, + { + "id": "90770", + "name": "Cloșani", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06897000", + "longitude": "22.80250000" + }, + { + "id": "90781", + "name": "Cocoreni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82772000", + "longitude": "23.31405000" + }, + { + "id": "90838", + "name": "Comuna Albeni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01363000", + "longitude": "23.60208000" + }, + { + "id": "90853", + "name": "Comuna Alimpeşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10542000", + "longitude": "23.79651000" + }, + { + "id": "90873", + "name": "Comuna Aninoasa", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74836000", + "longitude": "23.47372000" + }, + { + "id": "90883", + "name": "Comuna Arcani", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07232000", + "longitude": "23.14108000" + }, + { + "id": "93579", + "name": "Comuna Ţânţăreni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61874000", + "longitude": "23.54285000" + }, + { + "id": "90919", + "name": "Comuna Baia de Fier", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17402000", + "longitude": "23.74152000" + }, + { + "id": "91182", + "name": "Comuna Bâlteni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "23.26736000" + }, + { + "id": "91225", + "name": "Comuna Bălăneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09028000", + "longitude": "23.44674000" + }, + { + "id": "91216", + "name": "Comuna Băleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01898000", + "longitude": "23.18145000" + }, + { + "id": "91238", + "name": "Comuna Bărbăteşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85916000", + "longitude": "23.50760000" + }, + { + "id": "90958", + "name": "Comuna Bengeşti-Ciocadia", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09845000", + "longitude": "23.60621000" + }, + { + "id": "91037", + "name": "Comuna Bolboşi", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73740000", + "longitude": "23.22157000" + }, + { + "id": "91055", + "name": "Comuna Borăscu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70105000", + "longitude": "23.26739000" + }, + { + "id": "91121", + "name": "Comuna Brăneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66555000", + "longitude": "23.47213000" + }, + { + "id": "91162", + "name": "Comuna Bumbeşti-Piţic", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12413000", + "longitude": "23.70348000" + }, + { + "id": "91172", + "name": "Comuna Bustuchin", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96835000", + "longitude": "23.70347000" + }, + { + "id": "91541", + "name": "Comuna Câlnic", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94202000", + "longitude": "23.06292000" + }, + { + "id": "91584", + "name": "Comuna Căpreni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74439000", + "longitude": "23.62033000" + }, + { + "id": "91595", + "name": "Comuna Cătunele", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83902000", + "longitude": "22.92465000" + }, + { + "id": "91372", + "name": "Comuna Ciuperceni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92800000", + "longitude": "22.99173000" + }, + { + "id": "91486", + "name": "Comuna Crasna", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17065000", + "longitude": "23.55625000" + }, + { + "id": "91511", + "name": "Comuna Crușeț", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63848000", + "longitude": "23.67247000" + }, + { + "id": "91736", + "name": "Comuna Dănciuleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77004000", + "longitude": "23.76023000" + }, + { + "id": "91739", + "name": "Comuna Dăneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96735000", + "longitude": "23.34390000" + }, + { + "id": "91684", + "name": "Comuna Drãguţeşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96370000", + "longitude": "23.23480000" + }, + { + "id": "91691", + "name": "Comuna Drăgoteşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79957000", + "longitude": "23.16192000" + }, + { + "id": "91816", + "name": "Comuna Fãrcãşeşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87069000", + "longitude": "23.19279000" + }, + { + "id": "91884", + "name": "Comuna Glogova", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91623000", + "longitude": "22.90810000" + }, + { + "id": "91889", + "name": "Comuna Godineşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97634000", + "longitude": "22.96093000" + }, + { + "id": "92028", + "name": "Comuna Hurezani", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80305000", + "longitude": "23.63617000" + }, + { + "id": "92086", + "name": "Comuna Ioneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61636000", + "longitude": "23.42688000" + }, + { + "id": "92134", + "name": "Comuna Jupâneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91241000", + "longitude": "23.52325000" + }, + { + "id": "92147", + "name": "Comuna Leleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09875000", + "longitude": "23.19761000" + }, + { + "id": "92162", + "name": "Comuna Licurici", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87544000", + "longitude": "23.62641000" + }, + { + "id": "92182", + "name": "Comuna Logreşti-Moşteni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88848000", + "longitude": "23.71256000" + }, + { + "id": "92419", + "name": "Comuna Mătăsari", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85764000", + "longitude": "23.06819000" + }, + { + "id": "92364", + "name": "Comuna Muşeteşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15231000", + "longitude": "23.45022000" + }, + { + "id": "92429", + "name": "Comuna Negomir", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78593000", + "longitude": "23.22744000" + }, + { + "id": "92527", + "name": "Comuna Padeş", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05089000", + "longitude": "22.80954000" + }, + { + "id": "92571", + "name": "Comuna Peştişani", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07061000", + "longitude": "23.04902000" + }, + { + "id": "92600", + "name": "Comuna Plopşoru", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73869000", + "longitude": "23.39053000" + }, + { + "id": "92646", + "name": "Comuna Polovragi", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17196000", + "longitude": "23.82134000" + }, + { + "id": "92675", + "name": "Comuna Prigoria", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05711000", + "longitude": "23.68453000" + }, + { + "id": "92797", + "name": "Comuna Roşia De Amaradia", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04419000", + "longitude": "23.75991000" + }, + { + "id": "92810", + "name": "Comuna Runcu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12041000", + "longitude": "23.13974000" + }, + { + "id": "92869", + "name": "Comuna Samarineşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77152000", + "longitude": "23.04889000" + }, + { + "id": "93083", + "name": "Comuna Săcelu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10648000", + "longitude": "23.53717000" + }, + { + "id": "93115", + "name": "Comuna Săuleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81247000", + "longitude": "23.48767000" + }, + { + "id": "92886", + "name": "Comuna Schela", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15883000", + "longitude": "23.32395000" + }, + { + "id": "92891", + "name": "Comuna Scoarţa", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02872000", + "longitude": "23.47131000" + }, + { + "id": "92951", + "name": "Comuna Slivileşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79198000", + "longitude": "23.10761000" + }, + { + "id": "93017", + "name": "Comuna Stăneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13050000", + "longitude": "23.25328000" + }, + { + "id": "92987", + "name": "Comuna Stejari", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77359000", + "longitude": "23.70567000" + }, + { + "id": "92997", + "name": "Comuna Stoina", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67998000", + "longitude": "23.64563000" + }, + { + "id": "93137", + "name": "Comuna Teleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98175000", + "longitude": "23.10843000" + }, + { + "id": "93209", + "name": "Comuna Turburea", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68249000", + "longitude": "23.53171000" + }, + { + "id": "93210", + "name": "Comuna Turcineşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12744000", + "longitude": "23.30333000" + }, + { + "id": "93279", + "name": "Comuna Urdari", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79934000", + "longitude": "23.29600000" + }, + { + "id": "93456", + "name": "Comuna Văgiuleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72980000", + "longitude": "23.10113000" + }, + { + "id": "93382", + "name": "Comuna Vladimir", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82235000", + "longitude": "23.55520000" + }, + { + "id": "93664", + "name": "Costești", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73264000", + "longitude": "23.44491000" + }, + { + "id": "93681", + "name": "Covrigi", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73825000", + "longitude": "23.14921000" + }, + { + "id": "93706", + "name": "Crasna", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "23.50000000" + }, + { + "id": "93744", + "name": "Crușeț", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63333000", + "longitude": "23.66667000" + }, + { + "id": "94124", + "name": "Dănciuleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "23.75000000" + }, + { + "id": "94127", + "name": "Dăneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "23.33333000" + }, + { + "id": "93960", + "name": "Dobrița", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13504000", + "longitude": "23.17406000" + }, + { + "id": "94046", + "name": "Drăgoteşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "23.16667000" + }, + { + "id": "94051", + "name": "Drăguţeşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "23.23333000" + }, + { + "id": "94265", + "name": "Fărcăşeşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "23.20000000" + }, + { + "id": "94188", + "name": "Florești", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61918000", + "longitude": "23.52838000" + }, + { + "id": "94364", + "name": "Glogova", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92806000", + "longitude": "22.90667000" + }, + { + "id": "94369", + "name": "Godineşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00000000", + "longitude": "22.96667000" + }, + { + "id": "94581", + "name": "Hurezani", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "23.65000000" + }, + { + "id": "94677", + "name": "Ioneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "23.43333000" + }, + { + "id": "94753", + "name": "Jupâneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "23.53333000" + }, + { + "id": "94774", + "name": "Leleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "23.20000000" + }, + { + "id": "94793", + "name": "Licurici", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "23.61667000" + }, + { + "id": "94829", + "name": "Logreşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "23.70000000" + }, + { + "id": "94830", + "name": "Logrești Moșteni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90663000", + "longitude": "23.70480000" + }, + { + "id": "95290", + "name": "Mătăsari", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85000000", + "longitude": "23.08333000" + }, + { + "id": "95078", + "name": "Motru", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80333000", + "longitude": "22.97194000" + }, + { + "id": "95210", + "name": "Muşeteşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "23.46667000" + }, + { + "id": "95159", + "name": "Municipiul Motru", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81422000", + "longitude": "22.98229000" + }, + { + "id": "95192", + "name": "Municipiul Târgu Jiu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05278000", + "longitude": "23.27708000" + }, + { + "id": "95311", + "name": "Negomir", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83333000", + "longitude": "23.16667000" + }, + { + "id": "95357", + "name": "Novaci", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16462000", + "longitude": "23.66839000" + }, + { + "id": "95632", + "name": "Oraş Ţicleni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88344000", + "longitude": "23.38921000" + }, + { + "id": "95477", + "name": "Oraş Bumbeşti-Jiu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14429000", + "longitude": "23.38185000" + }, + { + "id": "95578", + "name": "Oraş Rovinari", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93857000", + "longitude": "23.15598000" + }, + { + "id": "95606", + "name": "Oraş Târgu Cãrbuneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96550000", + "longitude": "23.49567000" + }, + { + "id": "95603", + "name": "Oraş Tismana", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04464000", + "longitude": "22.93803000" + }, + { + "id": "95605", + "name": "Oraş Turceni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71779000", + "longitude": "23.35419000" + }, + { + "id": "95693", + "name": "Padeş", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "22.85000000" + }, + { + "id": "95760", + "name": "Peştişani", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "23.03333000" + }, + { + "id": "95763", + "name": "Peșteana de Jos", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83333000", + "longitude": "23.26974000" + }, + { + "id": "95762", + "name": "Peșteana Jiu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84695000", + "longitude": "23.30401000" + }, + { + "id": "95796", + "name": "Piscoiu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85211000", + "longitude": "23.75387000" + }, + { + "id": "95830", + "name": "Ploștina", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82398000", + "longitude": "22.98791000" + }, + { + "id": "95825", + "name": "Plopşoru", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "23.35000000" + }, + { + "id": "95839", + "name": "Pociovaliștea", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15315000", + "longitude": "23.64392000" + }, + { + "id": "95841", + "name": "Pocruia", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04470000", + "longitude": "22.92495000" + }, + { + "id": "95861", + "name": "Poiana", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65174000", + "longitude": "23.53148000" + }, + { + "id": "95898", + "name": "Pojogeni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99119000", + "longitude": "23.48425000" + }, + { + "id": "95901", + "name": "Polovragi", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "23.80000000" + }, + { + "id": "95952", + "name": "Prigoria", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "23.68333000" + }, + { + "id": "96128", + "name": "Roşia de Amaradia", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "23.75000000" + }, + { + "id": "96122", + "name": "Rovinari", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "23.18333000" + }, + { + "id": "96154", + "name": "Runcu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "23.13333000" + }, + { + "id": "96238", + "name": "Samarineşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "23.05000000" + }, + { + "id": "96517", + "name": "Sâmbotin", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "23.33333000" + }, + { + "id": "105994", + "name": "Săcelu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "23.53333000" + }, + { + "id": "106044", + "name": "Săuleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "23.48333000" + }, + { + "id": "96276", + "name": "Scoarţa", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "23.45000000" + }, + { + "id": "96367", + "name": "Slivileşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "23.13333000" + }, + { + "id": "96402", + "name": "Sohodol", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05531000", + "longitude": "22.88194000" + }, + { + "id": "96478", + "name": "Stăneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "23.25000000" + }, + { + "id": "96425", + "name": "Stejari", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "23.68333000" + }, + { + "id": "96430", + "name": "Sterpoaia", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79058000", + "longitude": "23.43601000" + }, + { + "id": "96440", + "name": "Stoina", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68333000", + "longitude": "23.63333000" + }, + { + "id": "96582", + "name": "Târgu Cărbuneşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "23.51667000" + }, + { + "id": "96584", + "name": "Târgu Jiu", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "23.28333000" + }, + { + "id": "106080", + "name": "Teleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00000000", + "longitude": "23.08333000" + }, + { + "id": "106107", + "name": "Tismana", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "22.96667000" + }, + { + "id": "96552", + "name": "Turburea", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "23.51667000" + }, + { + "id": "96553", + "name": "Turceni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68333000", + "longitude": "23.36667000" + }, + { + "id": "96555", + "name": "Turcineşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "23.33333000" + }, + { + "id": "96673", + "name": "Urdari", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "23.30000000" + }, + { + "id": "96737", + "name": "Valea Mare", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11263000", + "longitude": "23.08004000" + }, + { + "id": "96957", + "name": "Văgiuleşti", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "23.08333000" + }, + { + "id": "96812", + "name": "Vierșani", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87875000", + "longitude": "23.53120000" + }, + { + "id": "96869", + "name": "Vlăduleni", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88857000", + "longitude": "23.23727000" + }, + { + "id": "96884", + "name": "Voiteștii din Vale", + "state_id": 4750, + "state_code": "GJ", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08746000", + "longitude": "23.42145000" + }, + { + "id": "90003", + "name": "Atid", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45000000", + "longitude": "25.05000000" + }, + { + "id": "90010", + "name": "Avrămeşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "25.01667000" + }, + { + "id": "90054", + "name": "Bancu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30291000", + "longitude": "25.94422000" + }, + { + "id": "90493", + "name": "Băile Tuşnad", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "25.85000000" + }, + { + "id": "90503", + "name": "Bălan", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65050000", + "longitude": "25.80834000" + }, + { + "id": "90134", + "name": "Bilbor", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05000000", + "longitude": "25.51667000" + }, + { + "id": "90234", + "name": "Borsec", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "25.56667000" + }, + { + "id": "90323", + "name": "Brădeşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35000000", + "longitude": "25.35000000" + }, + { + "id": "93820", + "name": "Cârţa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53333000", + "longitude": "25.75000000" + }, + { + "id": "93863", + "name": "Căpâlniţa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36667000", + "longitude": "25.51667000" + }, + { + "id": "90694", + "name": "Ciceu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41328000", + "longitude": "25.78204000" + }, + { + "id": "90739", + "name": "Ciucani", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25701000", + "longitude": "25.94744000" + }, + { + "id": "90742", + "name": "Ciucsângeorgiu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31667000", + "longitude": "25.95000000" + }, + { + "id": "90749", + "name": "Ciumani", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68333000", + "longitude": "25.51667000" + }, + { + "id": "90901", + "name": "Comuna Atid", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45844000", + "longitude": "25.04357000" + }, + { + "id": "90907", + "name": "Comuna Avrămeşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36400000", + "longitude": "25.03223000" + }, + { + "id": "90987", + "name": "Comuna Bilbor", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05615000", + "longitude": "25.49989000" + }, + { + "id": "91113", + "name": "Comuna Brădeşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35788000", + "longitude": "25.35195000" + }, + { + "id": "91555", + "name": "Comuna Cârţa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.54068000", + "longitude": "25.76275000" + }, + { + "id": "91585", + "name": "Comuna Căpâlniţa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36047000", + "longitude": "25.51515000" + }, + { + "id": "91330", + "name": "Comuna Ciceu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41271000", + "longitude": "25.76585000" + }, + { + "id": "91364", + "name": "Comuna Ciucsângeorgiu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33942000", + "longitude": "25.99860000" + }, + { + "id": "91369", + "name": "Comuna Ciumani", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67821000", + "longitude": "25.51825000" + }, + { + "id": "91430", + "name": "Comuna Corbu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99559000", + "longitude": "25.65696000" + }, + { + "id": "91448", + "name": "Comuna Corund", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48060000", + "longitude": "25.20070000" + }, + { + "id": "91469", + "name": "Comuna Cozmeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20934000", + "longitude": "25.94274000" + }, + { + "id": "91728", + "name": "Comuna Dârjiu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20378000", + "longitude": "25.17462000" + }, + { + "id": "91740", + "name": "Comuna Dăneşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51712000", + "longitude": "25.74989000" + }, + { + "id": "91607", + "name": "Comuna Dealu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37070000", + "longitude": "25.30599000" + }, + { + "id": "91630", + "name": "Comuna Ditrău", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84564000", + "longitude": "25.52740000" + }, + { + "id": "91757", + "name": "Comuna Feliceni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27909000", + "longitude": "25.27430000" + }, + { + "id": "91784", + "name": "Comuna Frumoasa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44683000", + "longitude": "25.86759000" + }, + { + "id": "91983", + "name": "Comuna Gălăuţaş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90028000", + "longitude": "25.39118000" + }, + { + "id": "92130", + "name": "Comuna Joseni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69525000", + "longitude": "25.46114000" + }, + { + "id": "92225", + "name": "Comuna Lăzarea", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76626000", + "longitude": "25.53875000" + }, + { + "id": "92148", + "name": "Comuna Leliceni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34900000", + "longitude": "25.84911000" + }, + { + "id": "92192", + "name": "Comuna Lueta", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28724000", + "longitude": "25.53719000" + }, + { + "id": "92206", + "name": "Comuna Lunca de Jos", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59868000", + "longitude": "25.96582000" + }, + { + "id": "92207", + "name": "Comuna Lunca de Sus", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51853000", + "longitude": "25.95575000" + }, + { + "id": "92215", + "name": "Comuna Lupeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.39565000", + "longitude": "25.21905000" + }, + { + "id": "92383", + "name": "Comuna Mădăraş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.49472000", + "longitude": "25.74750000" + }, + { + "id": "92414", + "name": "Comuna Mărtiniş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22996000", + "longitude": "25.38756000" + }, + { + "id": "92259", + "name": "Comuna Mereşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23458000", + "longitude": "25.46099000" + }, + { + "id": "92282", + "name": "Comuna Mihăileni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.48874000", + "longitude": "25.83027000" + }, + { + "id": "92355", + "name": "Comuna Mugeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26544000", + "longitude": "25.19498000" + }, + { + "id": "92476", + "name": "Comuna Ocland", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16242000", + "longitude": "25.42557000" + }, + { + "id": "92712", + "name": "Comuna Pãuleni-Ciuc", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40073000", + "longitude": "25.84076000" + }, + { + "id": "92605", + "name": "Comuna Plãieşii De Jos", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21626000", + "longitude": "26.09436000" + }, + { + "id": "92662", + "name": "Comuna Porumbeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27415000", + "longitude": "25.12006000" + }, + { + "id": "92668", + "name": "Comuna Praid", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.54844000", + "longitude": "25.14717000" + }, + { + "id": "92740", + "name": "Comuna Racu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45397000", + "longitude": "25.77098000" + }, + { + "id": "92764", + "name": "Comuna Remetea", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81908000", + "longitude": "25.42286000" + }, + { + "id": "92880", + "name": "Comuna Satu Mare", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34082000", + "longitude": "25.38378000" + }, + { + "id": "93051", + "name": "Comuna Sâncrăieni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30575000", + "longitude": "25.84590000" + }, + { + "id": "93052", + "name": "Comuna Sândominic", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.57933000", + "longitude": "25.79305000" + }, + { + "id": "93055", + "name": "Comuna Sânmartin", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26368000", + "longitude": "25.95348000" + }, + { + "id": "93065", + "name": "Comuna Sânsimion", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25015000", + "longitude": "25.89196000" + }, + { + "id": "93068", + "name": "Comuna Sântimbru", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27664000", + "longitude": "25.81054000" + }, + { + "id": "93080", + "name": "Comuna Săcel", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32872000", + "longitude": "24.91795000" + }, + { + "id": "93107", + "name": "Comuna Sărmaş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88680000", + "longitude": "25.44289000" + }, + { + "id": "92915", + "name": "Comuna Secuieni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27623000", + "longitude": "24.96946000" + }, + { + "id": "92927", + "name": "Comuna Siculeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43537000", + "longitude": "25.75409000" + }, + { + "id": "92937", + "name": "Comuna Simoneşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35466000", + "longitude": "25.11325000" + }, + { + "id": "93024", + "name": "Comuna Subcetate", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85645000", + "longitude": "25.40652000" + }, + { + "id": "93040", + "name": "Comuna Suseni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.64350000", + "longitude": "25.56479000" + }, + { + "id": "93166", + "name": "Comuna Tomeşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55617000", + "longitude": "25.77922000" + }, + { + "id": "93221", + "name": "Comuna Tuşnad", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20745000", + "longitude": "25.90305000" + }, + { + "id": "93204", + "name": "Comuna Tulgheş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92544000", + "longitude": "25.75328000" + }, + { + "id": "93257", + "name": "Comuna Ulieş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21153000", + "longitude": "25.27048000" + }, + { + "id": "93467", + "name": "Comuna Vărşag", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53155000", + "longitude": "25.33900000" + }, + { + "id": "93408", + "name": "Comuna Voşlãbeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63582000", + "longitude": "25.65282000" + }, + { + "id": "93475", + "name": "Comuna Zetea", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46047000", + "longitude": "25.42823000" + }, + { + "id": "93619", + "name": "Corbu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "25.70000000" + }, + { + "id": "93651", + "name": "Corund", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "25.18333000" + }, + { + "id": "93685", + "name": "Cozmeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22678000", + "longitude": "25.94209000" + }, + { + "id": "93727", + "name": "Cristuru Secuiesc", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28333000", + "longitude": "25.03333000" + }, + { + "id": "94109", + "name": "Dârjiu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "25.20000000" + }, + { + "id": "94128", + "name": "Dăneşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51667000", + "longitude": "25.75000000" + }, + { + "id": "93900", + "name": "Dealu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "25.30000000" + }, + { + "id": "93941", + "name": "Ditrău", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "25.51667000" + }, + { + "id": "94140", + "name": "Eliseni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29235000", + "longitude": "24.93724000" + }, + { + "id": "94155", + "name": "Feliceni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "25.26667000" + }, + { + "id": "94172", + "name": "Filiaș", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27075000", + "longitude": "25.02120000" + }, + { + "id": "94206", + "name": "Frumoasa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45000000", + "longitude": "25.85000000" + }, + { + "id": "94506", + "name": "Gălăuţaş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "25.43333000" + }, + { + "id": "94303", + "name": "Gheorgheni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72292000", + "longitude": "25.60055000" + }, + { + "id": "94545", + "name": "Hodoșa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86558000", + "longitude": "25.44620000" + }, + { + "id": "94663", + "name": "Imper", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21667000", + "longitude": "26.10000000" + }, + { + "id": "94669", + "name": "Ineu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.54530000", + "longitude": "25.76357000" + }, + { + "id": "94748", + "name": "Joseni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70000000", + "longitude": "25.50000000" + }, + { + "id": "94900", + "name": "Lăzarea", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75000000", + "longitude": "25.53333000" + }, + { + "id": "94775", + "name": "Leliceni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34713000", + "longitude": "25.84782000" + }, + { + "id": "94844", + "name": "Lueta", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "25.48333000" + }, + { + "id": "94871", + "name": "Lunca de Jos", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56667000", + "longitude": "25.98333000" + }, + { + "id": "94872", + "name": "Lunca de Sus", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53333000", + "longitude": "25.96667000" + }, + { + "id": "94885", + "name": "Lupeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "25.21667000" + }, + { + "id": "95235", + "name": "Mădăraș", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.49472000", + "longitude": "25.74750000" + }, + { + "id": "95280", + "name": "Mărtiniş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23333000", + "longitude": "25.38333000" + }, + { + "id": "94955", + "name": "Mereşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23333000", + "longitude": "25.45000000" + }, + { + "id": "94973", + "name": "Miercurea-Ciuc", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35000000", + "longitude": "25.80000000" + }, + { + "id": "94992", + "name": "Mihăileni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "25.81667000" + }, + { + "id": "95028", + "name": "Misentea", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.32714000", + "longitude": "25.89506000" + }, + { + "id": "95099", + "name": "Mugeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25000000", + "longitude": "25.21667000" + }, + { + "id": "95104", + "name": "Municipiul Topliţa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93701000", + "longitude": "25.36052000" + }, + { + "id": "95145", + "name": "Municipiul Gheorgheni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72268000", + "longitude": "25.59917000" + }, + { + "id": "95156", + "name": "Municipiul Miercurea Ciuc", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36091000", + "longitude": "25.79985000" + }, + { + "id": "95160", + "name": "Municipiul Odorheiu Secuiesc", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30646000", + "longitude": "25.29551000" + }, + { + "id": "95340", + "name": "Nicolești", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43918000", + "longitude": "25.84446000" + }, + { + "id": "95393", + "name": "Ocland", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16667000", + "longitude": "25.41667000" + }, + { + "id": "95397", + "name": "Ocna de Jos", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52635000", + "longitude": "25.12945000" + }, + { + "id": "95398", + "name": "Ocna de Sus", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52729000", + "longitude": "25.15131000" + }, + { + "id": "95410", + "name": "Odorheiu Secuiesc", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30000000", + "longitude": "25.30000000" + }, + { + "id": "95485", + "name": "Oraş Bãile Tuşnad", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14707000", + "longitude": "25.86013000" + }, + { + "id": "95486", + "name": "Oraş Bãlan", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65740000", + "longitude": "25.80554000" + }, + { + "id": "95467", + "name": "Oraş Borsec", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96551000", + "longitude": "25.56173000" + }, + { + "id": "95500", + "name": "Oraş Cristuru Secuiesc", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28390000", + "longitude": "25.04583000" + }, + { + "id": "95620", + "name": "Oraş Vlãhiţa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37412000", + "longitude": "25.57625000" + }, + { + "id": "96028", + "name": "Păuleni-Ciuc", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40000000", + "longitude": "25.83333000" + }, + { + "id": "95923", + "name": "Porumbenii Mari", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.27549000", + "longitude": "25.13620000" + }, + { + "id": "95938", + "name": "Praid", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55000000", + "longitude": "25.13333000" + }, + { + "id": "96049", + "name": "Racu", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45178000", + "longitude": "25.76060000" + }, + { + "id": "96081", + "name": "Remetea", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "25.45000000" + }, + { + "id": "96255", + "name": "Satu Mare", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34082000", + "longitude": "25.38378000" + }, + { + "id": "96524", + "name": "Sâncrai", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.36667000", + "longitude": "25.31667000" + }, + { + "id": "96527", + "name": "Sâncrăieni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31439000", + "longitude": "25.83941000" + }, + { + "id": "96528", + "name": "Sândominic", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58400000", + "longitude": "25.78028000" + }, + { + "id": "96533", + "name": "Sânmartin", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "25.93333000" + }, + { + "id": "96546", + "name": "Sânsimion", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25000000", + "longitude": "25.88333000" + }, + { + "id": "105978", + "name": "Sântimbru", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28126000", + "longitude": "25.85439000" + }, + { + "id": "105991", + "name": "Săcel", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30000000", + "longitude": "24.93333000" + }, + { + "id": "106032", + "name": "Sărmaş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88333000", + "longitude": "25.46667000" + }, + { + "id": "96335", + "name": "Siculeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41667000", + "longitude": "25.75000000" + }, + { + "id": "96349", + "name": "Simoneşti", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "25.10000000" + }, + { + "id": "96486", + "name": "Subcetate", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "25.45000000" + }, + { + "id": "96510", + "name": "Suseni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66667000", + "longitude": "25.55000000" + }, + { + "id": "96625", + "name": "Tăureni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "25.25000000" + }, + { + "id": "106123", + "name": "Tomești", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55617000", + "longitude": "25.77922000" + }, + { + "id": "96574", + "name": "Tuşnad", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "25.90000000" + }, + { + "id": "96575", + "name": "Tușnadu Nou", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.19364000", + "longitude": "25.88757000" + }, + { + "id": "106174", + "name": "Tulgheş", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "25.76667000" + }, + { + "id": "96707", + "name": "Vale", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94910000", + "longitude": "25.37869000" + }, + { + "id": "96748", + "name": "Valea Rece", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62082000", + "longitude": "25.95827000" + }, + { + "id": "96757", + "name": "Valea Strâmbă", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69429000", + "longitude": "25.59956000" + }, + { + "id": "96976", + "name": "Vărşag", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51667000", + "longitude": "25.35000000" + }, + { + "id": "96870", + "name": "Vlăhiţa", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35000000", + "longitude": "25.51667000" + }, + { + "id": "96895", + "name": "Voșlăbeni", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65000000", + "longitude": "25.63333000" + }, + { + "id": "96988", + "name": "Zencani", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92700000", + "longitude": "25.33411000" + }, + { + "id": "96990", + "name": "Zetea", + "state_id": 4749, + "state_code": "HR", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "25.36667000" + }, + { + "id": "89965", + "name": "Aninoasa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40924000", + "longitude": "23.31505000" + }, + { + "id": "97067", + "name": "Şoimuş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "22.90000000" + }, + { + "id": "90033", + "name": "Baia de Criş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16667000", + "longitude": "22.71667000" + }, + { + "id": "90051", + "name": "Balşa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03333000", + "longitude": "23.11667000" + }, + { + "id": "90063", + "name": "Baru", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.47218000", + "longitude": "23.16271000" + }, + { + "id": "90064", + "name": "Baru Mic", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.46667000", + "longitude": "23.15000000" + }, + { + "id": "90066", + "name": "Barza", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11990000", + "longitude": "22.85695000" + }, + { + "id": "90476", + "name": "Băcia", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80000000", + "longitude": "23.01667000" + }, + { + "id": "90497", + "name": "Băiţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03333000", + "longitude": "22.90000000" + }, + { + "id": "90537", + "name": "Băniţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45000000", + "longitude": "23.26667000" + }, + { + "id": "90553", + "name": "Bătrâna", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "22.58333000" + }, + { + "id": "90111", + "name": "Beriu", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "23.18333000" + }, + { + "id": "90167", + "name": "Blăjeni", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23333000", + "longitude": "22.90000000" + }, + { + "id": "90255", + "name": "Boşorod", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68333000", + "longitude": "23.08333000" + }, + { + "id": "90260", + "name": "Brad", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "22.78333000" + }, + { + "id": "90278", + "name": "Brazi", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48716000", + "longitude": "22.84040000" + }, + { + "id": "90338", + "name": "Brănişca", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "22.78333000" + }, + { + "id": "90298", + "name": "Bretea Română", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66085000", + "longitude": "23.01739000" + }, + { + "id": "90345", + "name": "Buceş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "22.93333000" + }, + { + "id": "90351", + "name": "Bucium-Orlea", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58333000", + "longitude": "22.96667000" + }, + { + "id": "90364", + "name": "Bucureşci", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "22.90000000" + }, + { + "id": "90406", + "name": "Bulzeștii de Sus", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30070000", + "longitude": "22.76118000" + }, + { + "id": "90413", + "name": "Bunila", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70000000", + "longitude": "22.66667000" + }, + { + "id": "90418", + "name": "Burjuc", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95000000", + "longitude": "22.48333000" + }, + { + "id": "93811", + "name": "Cârjiţi", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "22.83333000" + }, + { + "id": "93831", + "name": "Călan", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73333000", + "longitude": "22.98333000" + }, + { + "id": "93875", + "name": "Căstău", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81465000", + "longitude": "23.21173000" + }, + { + "id": "90622", + "name": "Cerbăl", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "22.71667000" + }, + { + "id": "90640", + "name": "Certeju de Sus", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "22.96667000" + }, + { + "id": "93538", + "name": "Comuna Şoimuş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.94589000", + "longitude": "22.86298000" + }, + { + "id": "90918", + "name": "Comuna Baia de Criş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18227000", + "longitude": "22.70027000" + }, + { + "id": "90932", + "name": "Comuna Balşa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04738000", + "longitude": "23.06886000" + }, + { + "id": "90938", + "name": "Comuna Baru", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.47912000", + "longitude": "23.15132000" + }, + { + "id": "91205", + "name": "Comuna Băcia", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80832000", + "longitude": "23.02530000" + }, + { + "id": "91209", + "name": "Comuna Băiţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.02424000", + "longitude": "22.89087000" + }, + { + "id": "91235", + "name": "Comuna Băniţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45636000", + "longitude": "23.23214000" + }, + { + "id": "91246", + "name": "Comuna Bătrâna", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80901000", + "longitude": "22.58859000" + }, + { + "id": "90970", + "name": "Comuna Beriu", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76347000", + "longitude": "23.23126000" + }, + { + "id": "91010", + "name": "Comuna Blăjeni", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25491000", + "longitude": "22.90335000" + }, + { + "id": "91069", + "name": "Comuna Boşorod", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63805000", + "longitude": "23.12990000" + }, + { + "id": "91124", + "name": "Comuna Brănişca", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97185000", + "longitude": "22.76723000" + }, + { + "id": "91096", + "name": "Comuna Bretea Română", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66021000", + "longitude": "23.01665000" + }, + { + "id": "91126", + "name": "Comuna Buceş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.19130000", + "longitude": "22.97718000" + }, + { + "id": "91139", + "name": "Comuna Bucureşci", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12392000", + "longitude": "22.93047000" + }, + { + "id": "91161", + "name": "Comuna Bulzeştii De Sus", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29383000", + "longitude": "22.77766000" + }, + { + "id": "91167", + "name": "Comuna Bunila", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69454000", + "longitude": "22.65763000" + }, + { + "id": "91170", + "name": "Comuna Burjuc", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97100000", + "longitude": "22.50164000" + }, + { + "id": "91550", + "name": "Comuna Cârjiţi", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84678000", + "longitude": "22.83467000" + }, + { + "id": "91287", + "name": "Comuna Cerbăl", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78603000", + "longitude": "22.68059000" + }, + { + "id": "91297", + "name": "Comuna Certeju de Sus", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97437000", + "longitude": "22.98863000" + }, + { + "id": "91505", + "name": "Comuna Crişcior", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12326000", + "longitude": "22.86590000" + }, + { + "id": "91613", + "name": "Comuna Densuş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56403000", + "longitude": "22.77805000" + }, + { + "id": "91633", + "name": "Comuna Dobra", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88654000", + "longitude": "22.58817000" + }, + { + "id": "91837", + "name": "Comuna General Berthelot", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61164000", + "longitude": "22.88795000" + }, + { + "id": "91840", + "name": "Comuna Ghelari", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71810000", + "longitude": "22.77414000" + }, + { + "id": "91958", + "name": "Comuna Gurasada", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98515000", + "longitude": "22.58854000" + }, + { + "id": "92045", + "name": "Comuna Hărău", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90555000", + "longitude": "22.98136000" + }, + { + "id": "92070", + "name": "Comuna Ilia", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.94059000", + "longitude": "22.67861000" + }, + { + "id": "92218", + "name": "Comuna Lãpugiu De Jos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89222000", + "longitude": "22.45747000" + }, + { + "id": "92146", + "name": "Comuna Lelese", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73754000", + "longitude": "22.68923000" + }, + { + "id": "92202", + "name": "Comuna Lunca Cernii De Jos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64302000", + "longitude": "22.58438000" + }, + { + "id": "92210", + "name": "Comuna Luncoiu De Jos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06807000", + "longitude": "22.79112000" + }, + { + "id": "92413", + "name": "Comuna Mărtineşti", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79278000", + "longitude": "23.11998000" + }, + { + "id": "92513", + "name": "Comuna Orăştioara de Sus", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70150000", + "longitude": "23.18208000" + }, + { + "id": "92561", + "name": "Comuna Pestişu Mic", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80178000", + "longitude": "22.83551000" + }, + { + "id": "92693", + "name": "Comuna Pui", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51086000", + "longitude": "23.08463000" + }, + { + "id": "92747", + "name": "Comuna Rapoltu Mare", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87904000", + "longitude": "23.11543000" + }, + { + "id": "92827", + "name": "Comuna Râu de Mori", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50717000", + "longitude": "22.86463000" + }, + { + "id": "92836", + "name": "Comuna Răchitova", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60982000", + "longitude": "22.76739000" + }, + { + "id": "92770", + "name": "Comuna Ribiţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20595000", + "longitude": "22.79638000" + }, + { + "id": "92783", + "name": "Comuna Romos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82922000", + "longitude": "23.30902000" + }, + { + "id": "92876", + "name": "Comuna Sarmizegetusa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50996000", + "longitude": "22.76955000" + }, + { + "id": "93069", + "name": "Comuna Sântămăria-Orlea", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58333000", + "longitude": "22.96667000" + }, + { + "id": "93075", + "name": "Comuna Sãlaşu De Sus", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50425000", + "longitude": "22.97422000" + }, + { + "id": "93139", + "name": "Comuna Teliucu Inferior", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69866000", + "longitude": "22.87925000" + }, + { + "id": "93167", + "name": "Comuna Tomeşti", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22454000", + "longitude": "22.67017000" + }, + { + "id": "93177", + "name": "Comuna Topliţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66897000", + "longitude": "22.77399000" + }, + { + "id": "93184", + "name": "Comuna Toteşti", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57137000", + "longitude": "22.89023000" + }, + { + "id": "93212", + "name": "Comuna Turdaş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84766000", + "longitude": "23.13189000" + }, + { + "id": "93337", + "name": "Comuna Vaţa De Jos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18432000", + "longitude": "22.58002000" + }, + { + "id": "93462", + "name": "Comuna Vălişoara", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.02285000", + "longitude": "22.82527000" + }, + { + "id": "93349", + "name": "Comuna Veţel", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87424000", + "longitude": "22.76738000" + }, + { + "id": "93407", + "name": "Comuna Vorţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03672000", + "longitude": "22.67226000" + }, + { + "id": "93471", + "name": "Comuna Zam", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04580000", + "longitude": "22.48786000" + }, + { + "id": "93734", + "name": "Crişcior", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11667000", + "longitude": "22.86667000" + }, + { + "id": "93726", + "name": "Cristur", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82936000", + "longitude": "22.94323000" + }, + { + "id": "93919", + "name": "Densuş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58333000", + "longitude": "22.80000000" + }, + { + "id": "93928", + "name": "Deva", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88333000", + "longitude": "22.90000000" + }, + { + "id": "93949", + "name": "Dobra", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "22.56667000" + }, + { + "id": "94291", + "name": "General Berthelot", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61667000", + "longitude": "22.88333000" + }, + { + "id": "94292", + "name": "Geoagiu", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "23.20000000" + }, + { + "id": "94298", + "name": "Ghelari", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "22.78333000" + }, + { + "id": "94469", + "name": "Gurasada", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95483000", + "longitude": "22.59491000" + }, + { + "id": "94525", + "name": "Haţeg", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61667000", + "longitude": "22.95000000" + }, + { + "id": "94608", + "name": "Hărău", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "22.95000000" + }, + { + "id": "94609", + "name": "Hărțăgani", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05012000", + "longitude": "22.92183000" + }, + { + "id": "94578", + "name": "Hunedoara", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75000000", + "longitude": "22.90000000" + }, + { + "id": "94656", + "name": "Ilia", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93333000", + "longitude": "22.65000000" + }, + { + "id": "94689", + "name": "Iscroni", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37794000", + "longitude": "23.34201000" + }, + { + "id": "94743", + "name": "Jiu-Paroșeni", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36175000", + "longitude": "23.26044000" + }, + { + "id": "94895", + "name": "Lăpugiu de Jos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88333000", + "longitude": "22.48333000" + }, + { + "id": "94773", + "name": "Lelese", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73333000", + "longitude": "22.70000000" + }, + { + "id": "94862", + "name": "Lunca Cernii de Jos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63333000", + "longitude": "22.61667000" + }, + { + "id": "94877", + "name": "Luncoiu de Jos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "22.76667000" + }, + { + "id": "94884", + "name": "Lupeni", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36029000", + "longitude": "23.23832000" + }, + { + "id": "95279", + "name": "Mărtineşti", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "23.13333000" + }, + { + "id": "95103", + "name": "Municipiul Lupeni", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35654000", + "longitude": "23.22162000" + }, + { + "id": "95105", + "name": "Municipiul Vulcan", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37985000", + "longitude": "23.27480000" + }, + { + "id": "95116", + "name": "Municipiul Brad", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14073000", + "longitude": "22.81284000" + }, + { + "id": "95136", + "name": "Municipiul Deva", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84644000", + "longitude": "22.93123000" + }, + { + "id": "95148", + "name": "Municipiul Hunedoara", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76512000", + "longitude": "22.87538000" + }, + { + "id": "95164", + "name": "Municipiul Orãştie", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83841000", + "longitude": "23.19885000" + }, + { + "id": "95167", + "name": "Municipiul Petroşani", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41963000", + "longitude": "23.35692000" + }, + { + "id": "95450", + "name": "Oraş Aninoasa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.39316000", + "longitude": "23.33020000" + }, + { + "id": "95504", + "name": "Oraş Cãlan", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73940000", + "longitude": "23.01035000" + }, + { + "id": "95523", + "name": "Oraş Geoagiu", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.94835000", + "longitude": "23.20022000" + }, + { + "id": "95528", + "name": "Oraş Haţeg", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.62512000", + "longitude": "22.92275000" + }, + { + "id": "95566", + "name": "Oraş Petrila", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45352000", + "longitude": "23.43697000" + }, + { + "id": "95587", + "name": "Oraş Simeria", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85296000", + "longitude": "23.00748000" + }, + { + "id": "95612", + "name": "Oraş Uricani", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31733000", + "longitude": "23.08005000" + }, + { + "id": "95665", + "name": "Orăştie", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "23.20000000" + }, + { + "id": "95666", + "name": "Orăştioara de Sus", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73333000", + "longitude": "23.16667000" + }, + { + "id": "95761", + "name": "Peştişu Mic", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80000000", + "longitude": "22.88333000" + }, + { + "id": "95765", + "name": "Peștișu Mare", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80192000", + "longitude": "22.92704000" + }, + { + "id": "95752", + "name": "Petrila", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45000000", + "longitude": "23.41667000" + }, + { + "id": "95756", + "name": "Petroşani", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41667000", + "longitude": "23.36667000" + }, + { + "id": "95950", + "name": "Pricaz", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85929000", + "longitude": "23.17266000" + }, + { + "id": "95977", + "name": "Pui", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51667000", + "longitude": "23.10000000" + }, + { + "id": "96059", + "name": "Rapoltu Mare", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86667000", + "longitude": "23.06667000" + }, + { + "id": "96176", + "name": "Râu de Mori", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48333000", + "longitude": "22.85000000" + }, + { + "id": "96187", + "name": "Răchitova", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60000000", + "longitude": "22.75000000" + }, + { + "id": "96092", + "name": "Ribiţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "22.76667000" + }, + { + "id": "96107", + "name": "Romos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "23.28333000" + }, + { + "id": "96247", + "name": "Sarmizegetusa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51667000", + "longitude": "22.78333000" + }, + { + "id": "105981", + "name": "Sântămăria-Orlea", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58874000", + "longitude": "22.97042000" + }, + { + "id": "106007", + "name": "Sălaşu de Sus", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51667000", + "longitude": "22.95000000" + }, + { + "id": "96346", + "name": "Simeria", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "23.01667000" + }, + { + "id": "106082", + "name": "Teliucu Inferior", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "22.88333000" + }, + { + "id": "106122", + "name": "Tomeşti", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21667000", + "longitude": "22.65000000" + }, + { + "id": "106132", + "name": "Topliţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68333000", + "longitude": "22.78333000" + }, + { + "id": "106142", + "name": "Toteşti", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56667000", + "longitude": "22.88333000" + }, + { + "id": "96559", + "name": "Turdaş", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "23.11667000" + }, + { + "id": "96677", + "name": "Uricani", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33731000", + "longitude": "23.15240000" + }, + { + "id": "96780", + "name": "Vaţa de Jos", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "22.60000000" + }, + { + "id": "96968", + "name": "Vălişoara", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "22.85000000" + }, + { + "id": "96798", + "name": "Veţel", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "22.81667000" + }, + { + "id": "96894", + "name": "Vorţa", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "22.68333000" + }, + { + "id": "96901", + "name": "Vulcan", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38333000", + "longitude": "23.26667000" + }, + { + "id": "96983", + "name": "Zam", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00000000", + "longitude": "22.45000000" + }, + { + "id": "96985", + "name": "Zdrapți", + "state_id": 4721, + "state_code": "HD", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15612000", + "longitude": "22.86954000" + }, + { + "id": "89926", + "name": "Alexandru I. Cuza", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13333000", + "longitude": "26.85000000" + }, + { + "id": "89958", + "name": "Andrieşeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "27.28333000" + }, + { + "id": "89997", + "name": "Aroneanu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "27.60000000" + }, + { + "id": "97032", + "name": "Şcheia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "27.51667000" + }, + { + "id": "97057", + "name": "Şipote", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "27.21667000" + }, + { + "id": "97101", + "name": "Ţibana", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "27.33333000" + }, + { + "id": "97103", + "name": "Ţibăneşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "27.33333000" + }, + { + "id": "97106", + "name": "Ţigănaşi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33333000", + "longitude": "27.46667000" + }, + { + "id": "97110", + "name": "Ţuţora", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13333000", + "longitude": "27.78333000" + }, + { + "id": "90052", + "name": "Balș", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29628000", + "longitude": "26.97856000" + }, + { + "id": "90453", + "name": "Bârnova", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "27.61667000" + }, + { + "id": "90480", + "name": "Bădeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40581000", + "longitude": "26.94898000" + }, + { + "id": "90526", + "name": "Bălţaţi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21667000", + "longitude": "27.15000000" + }, + { + "id": "90084", + "name": "Belceşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "27.08333000" + }, + { + "id": "90152", + "name": "Bivolari", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "27.43333000" + }, + { + "id": "90201", + "name": "Bohotin", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93914000", + "longitude": "27.97782000" + }, + { + "id": "90232", + "name": "Borosoaia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46300000", + "longitude": "27.09862000" + }, + { + "id": "90241", + "name": "Bosia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21696000", + "longitude": "27.76707000" + }, + { + "id": "90251", + "name": "Boureni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26497000", + "longitude": "26.97672000" + }, + { + "id": "90325", + "name": "Brădicești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84810000", + "longitude": "27.90270000" + }, + { + "id": "90329", + "name": "Brăeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "27.10000000" + }, + { + "id": "90340", + "name": "Brătești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19135000", + "longitude": "26.68580000" + }, + { + "id": "90289", + "name": "Breazu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21343000", + "longitude": "27.51815000" + }, + { + "id": "90375", + "name": "Buda", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40318000", + "longitude": "26.67835000" + }, + { + "id": "90389", + "name": "Budăi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21773000", + "longitude": "27.22282000" + }, + { + "id": "90395", + "name": "Buhalnița", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37892000", + "longitude": "26.91547000" + }, + { + "id": "90425", + "name": "Butea", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "26.91667000" + }, + { + "id": "90433", + "name": "Buznea", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19515000", + "longitude": "27.01572000" + }, + { + "id": "93812", + "name": "Cârjoaia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34032000", + "longitude": "26.90863000" + }, + { + "id": "93818", + "name": "Cârniceni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33942000", + "longitude": "27.50508000" + }, + { + "id": "90618", + "name": "Cepleniţa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "27.01667000" + }, + { + "id": "90689", + "name": "Chișcăreni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46974000", + "longitude": "27.19626000" + }, + { + "id": "90719", + "name": "Ciohorăni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13520000", + "longitude": "26.68955000" + }, + { + "id": "90728", + "name": "Ciorteşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90000000", + "longitude": "27.83333000" + }, + { + "id": "90757", + "name": "Ciurea", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05000000", + "longitude": "27.56667000" + }, + { + "id": "90773", + "name": "Coarnele Caprei", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "27.10000000" + }, + { + "id": "90788", + "name": "Cogeasca", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16644000", + "longitude": "27.38537000" + }, + { + "id": "90811", + "name": "Comarna", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05000000", + "longitude": "27.78333000" + }, + { + "id": "90848", + "name": "Comuna Alexandru I. Cuza", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.14424000", + "longitude": "26.85449000" + }, + { + "id": "90870", + "name": "Comuna Andrieşeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51112000", + "longitude": "27.29502000" + }, + { + "id": "90896", + "name": "Comuna Aroneanu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21584000", + "longitude": "27.60632000" + }, + { + "id": "93528", + "name": "Comuna Şipote", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46038000", + "longitude": "27.22592000" + }, + { + "id": "93570", + "name": "Comuna Ţibana", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98685000", + "longitude": "27.32607000" + }, + { + "id": "93572", + "name": "Comuna Ţibăneşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91757000", + "longitude": "27.33547000" + }, + { + "id": "93574", + "name": "Comuna Ţigănaşi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34867000", + "longitude": "27.45588000" + }, + { + "id": "93578", + "name": "Comuna Ţuţora", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12578000", + "longitude": "27.79866000" + }, + { + "id": "90931", + "name": "Comuna Balş", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29219000", + "longitude": "26.96028000" + }, + { + "id": "91190", + "name": "Comuna Bârnova", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08669000", + "longitude": "27.62635000" + }, + { + "id": "91227", + "name": "Comuna Bălţaţi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23366000", + "longitude": "27.11866000" + }, + { + "id": "90949", + "name": "Comuna Belceşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30581000", + "longitude": "27.08747000" + }, + { + "id": "90999", + "name": "Comuna Bivolari", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52988000", + "longitude": "27.42726000" + }, + { + "id": "91118", + "name": "Comuna Brăeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16318000", + "longitude": "27.09031000" + }, + { + "id": "91173", + "name": "Comuna Butea", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08386000", + "longitude": "26.93552000" + }, + { + "id": "91284", + "name": "Comuna Cepleniţa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37581000", + "longitude": "26.92597000" + }, + { + "id": "91349", + "name": "Comuna Ciohorãni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13520000", + "longitude": "26.68955000" + }, + { + "id": "91356", + "name": "Comuna Ciorteşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91766000", + "longitude": "27.84749000" + }, + { + "id": "91375", + "name": "Comuna Ciurea", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06150000", + "longitude": "27.57572000" + }, + { + "id": "91382", + "name": "Comuna Coarnele Caprei", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40195000", + "longitude": "27.09699000" + }, + { + "id": "91407", + "name": "Comuna Comarna", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07004000", + "longitude": "27.78668000" + }, + { + "id": "91457", + "name": "Comuna Costeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24224000", + "longitude": "26.91751000" + }, + { + "id": "91461", + "name": "Comuna Costuleni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01055000", + "longitude": "27.85829000" + }, + { + "id": "91466", + "name": "Comuna Cotnari", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35813000", + "longitude": "26.91687000" + }, + { + "id": "91471", + "name": "Comuna Cozmeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86032000", + "longitude": "28.01297000" + }, + { + "id": "91496", + "name": "Comuna Cristeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27821000", + "longitude": "26.58525000" + }, + { + "id": "91520", + "name": "Comuna Cucuteni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27587000", + "longitude": "26.92807000" + }, + { + "id": "91599", + "name": "Comuna Dagâţa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94469000", + "longitude": "27.19147000" + }, + { + "id": "91611", + "name": "Comuna Deleni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.47458000", + "longitude": "26.89451000" + }, + { + "id": "91644", + "name": "Comuna Dobrovăţ", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96335000", + "longitude": "27.72245000" + }, + { + "id": "91655", + "name": "Comuna Dolheşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86958000", + "longitude": "27.90652000" + }, + { + "id": "91697", + "name": "Comuna Drăguşeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.89432000", + "longitude": "27.49491000" + }, + { + "id": "91720", + "name": "Comuna Dumeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.17668000", + "longitude": "27.33470000" + }, + { + "id": "91749", + "name": "Comuna Erbiceni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25219000", + "longitude": "27.24756000" + }, + { + "id": "91807", + "name": "Comuna Fântânele", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41498000", + "longitude": "27.18066000" + }, + { + "id": "91774", + "name": "Comuna Focuri", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35113000", + "longitude": "27.20200000" + }, + { + "id": "91899", + "name": "Comuna Golãieşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26355000", + "longitude": "27.69515000" + }, + { + "id": "91900", + "name": "Comuna Gorban", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90059000", + "longitude": "28.07017000" + }, + { + "id": "91910", + "name": "Comuna Grajduri", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.97069000", + "longitude": "27.55569000" + }, + { + "id": "91925", + "name": "Comuna Gropniţa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36874000", + "longitude": "27.26376000" + }, + { + "id": "91927", + "name": "Comuna Grozeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01001000", + "longitude": "28.02507000" + }, + { + "id": "92040", + "name": "Comuna Hălăuceşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10593000", + "longitude": "26.80967000" + }, + { + "id": "92044", + "name": "Comuna Hărmăneşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27087000", + "longitude": "26.81322000" + }, + { + "id": "91995", + "name": "Comuna Heleşteni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19295000", + "longitude": "26.88060000" + }, + { + "id": "92009", + "name": "Comuna Holboca", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.17512000", + "longitude": "27.68235000" + }, + { + "id": "92020", + "name": "Comuna Horleşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11718000", + "longitude": "27.40856000" + }, + { + "id": "92083", + "name": "Comuna Ion Neculce", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20159000", + "longitude": "27.03221000" + }, + { + "id": "92089", + "name": "Comuna Ipatele", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90390000", + "longitude": "27.43762000" + }, + { + "id": "92161", + "name": "Comuna Leţcani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18012000", + "longitude": "27.41296000" + }, + { + "id": "92155", + "name": "Comuna Lespezi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34957000", + "longitude": "26.68807000" + }, + { + "id": "92211", + "name": "Comuna Lungani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.17564000", + "longitude": "27.15749000" + }, + { + "id": "92382", + "name": "Comuna Mădârjac", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04094000", + "longitude": "27.27716000" + }, + { + "id": "92297", + "name": "Comuna Mirceşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05486000", + "longitude": "26.83945000" + }, + { + "id": "92299", + "name": "Comuna Mironeasa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99869000", + "longitude": "27.42519000" + }, + { + "id": "92300", + "name": "Comuna Miroslava", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13047000", + "longitude": "27.51039000" + }, + { + "id": "92301", + "name": "Comuna Mirosloveşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13966000", + "longitude": "26.64648000" + }, + { + "id": "92347", + "name": "Comuna Moşna", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92189000", + "longitude": "27.95956000" + }, + { + "id": "92351", + "name": "Comuna Moţca", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22407000", + "longitude": "26.61632000" + }, + { + "id": "92319", + "name": "Comuna Mogoşeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04200000", + "longitude": "27.48492000" + }, + { + "id": "92320", + "name": "Comuna Mogoşeşti-Siret", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13190000", + "longitude": "26.77101000" + }, + { + "id": "92341", + "name": "Comuna Movileni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32032000", + "longitude": "27.38016000" + }, + { + "id": "92526", + "name": "Comuna Oţeleni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08566000", + "longitude": "27.02730000" + }, + { + "id": "92604", + "name": "Comuna Plugari", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.47732000", + "longitude": "27.11577000" + }, + { + "id": "92654", + "name": "Comuna Popeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13704000", + "longitude": "27.26169000" + }, + { + "id": "92658", + "name": "Comuna Popricani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26750000", + "longitude": "27.52729000" + }, + { + "id": "92679", + "name": "Comuna Prisăcani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07015000", + "longitude": "27.90795000" + }, + { + "id": "92680", + "name": "Comuna Probota", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38792000", + "longitude": "27.49446000" + }, + { + "id": "92837", + "name": "Comuna Răchiţeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05163000", + "longitude": "26.90504000" + }, + { + "id": "92844", + "name": "Comuna Răducăneni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95541000", + "longitude": "27.97344000" + }, + { + "id": "92761", + "name": "Comuna Rediu-Tătar", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23169000", + "longitude": "27.48747000" + }, + { + "id": "92794", + "name": "Comuna Roşcani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.44259000", + "longitude": "27.41778000" + }, + { + "id": "92787", + "name": "Comuna Româneşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27171000", + "longitude": "27.35819000" + }, + { + "id": "92808", + "name": "Comuna Ruginoasa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25259000", + "longitude": "26.85589000" + }, + { + "id": "92901", + "name": "Comuna Scânteia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92408000", + "longitude": "27.58855000" + }, + { + "id": "92884", + "name": "Comuna Scheia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93950000", + "longitude": "27.49765000" + }, + { + "id": "92889", + "name": "Comuna Schitu-Duca", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00255000", + "longitude": "27.76703000" + }, + { + "id": "92892", + "name": "Comuna Scobinţi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40529000", + "longitude": "26.89850000" + }, + { + "id": "92939", + "name": "Comuna Sineşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12117000", + "longitude": "27.18745000" + }, + { + "id": "92943", + "name": "Comuna Sireţel", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41840000", + "longitude": "26.73381000" + }, + { + "id": "92998", + "name": "Comuna Stolniceni-Prăjescu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18563000", + "longitude": "26.73525000" + }, + { + "id": "93007", + "name": "Comuna Strunga", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16021000", + "longitude": "26.94400000" + }, + { + "id": "93124", + "name": "Comuna Tansa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90812000", + "longitude": "27.24808000" + }, + { + "id": "93245", + "name": "Comuna Tătăruşi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34254000", + "longitude": "26.58590000" + }, + { + "id": "93165", + "name": "Comuna Todireşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32137000", + "longitude": "26.87743000" + }, + { + "id": "93168", + "name": "Comuna Tomeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11704000", + "longitude": "27.70476000" + }, + { + "id": "93193", + "name": "Comuna Trifeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.44992000", + "longitude": "27.53175000" + }, + { + "id": "93268", + "name": "Comuna Ungheni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20176000", + "longitude": "27.74664000" + }, + { + "id": "93310", + "name": "Comuna Valea Lupului", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.17920000", + "longitude": "27.49965000" + }, + { + "id": "93321", + "name": "Comuna Valea Seacă", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28840000", + "longitude": "26.66455000" + }, + { + "id": "93432", + "name": "Comuna Vânãtori", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33379000", + "longitude": "26.76404000" + }, + { + "id": "93353", + "name": "Comuna Victoria", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30749000", + "longitude": "27.60170000" + }, + { + "id": "93388", + "name": "Comuna Vlădeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43756000", + "longitude": "27.33560000" + }, + { + "id": "93399", + "name": "Comuna Voineşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07509000", + "longitude": "27.42151000" + }, + { + "id": "93599", + "name": "Conțești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30960000", + "longitude": "26.65605000" + }, + { + "id": "93650", + "name": "Coropceni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94193000", + "longitude": "27.83710000" + }, + { + "id": "93665", + "name": "Costești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23428000", + "longitude": "26.92622000" + }, + { + "id": "93669", + "name": "Costuleni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "27.85000000" + }, + { + "id": "93676", + "name": "Cotnari", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "26.98333000" + }, + { + "id": "93679", + "name": "Covasna", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00255000", + "longitude": "27.85106000" + }, + { + "id": "93683", + "name": "Cozia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00319000", + "longitude": "27.89434000" + }, + { + "id": "93686", + "name": "Cozmeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88333000", + "longitude": "27.98333000" + }, + { + "id": "93719", + "name": "Cristeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26667000", + "longitude": "26.56667000" + }, + { + "id": "93720", + "name": "Cristești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16224000", + "longitude": "27.08155000" + }, + { + "id": "93728", + "name": "Crivești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32430000", + "longitude": "26.78240000" + }, + { + "id": "93742", + "name": "Crucea", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16567000", + "longitude": "27.17093000" + }, + { + "id": "93762", + "name": "Cucuteni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "26.93333000" + }, + { + "id": "93887", + "name": "Dagâţa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "27.18333000" + }, + { + "id": "93892", + "name": "Dancu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15417000", + "longitude": "27.66623000" + }, + { + "id": "93915", + "name": "Deleni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "26.88333000" + }, + { + "id": "93969", + "name": "Dobrovăţ", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "27.70000000" + }, + { + "id": "93983", + "name": "Dolheşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86667000", + "longitude": "27.90000000" + }, + { + "id": "93993", + "name": "Domnița", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02091000", + "longitude": "27.33500000" + }, + { + "id": "94053", + "name": "Drăgușeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90116000", + "longitude": "27.51260000" + }, + { + "id": "94076", + "name": "Dumbrava", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07578000", + "longitude": "27.55174000" + }, + { + "id": "94091", + "name": "Dumbrăvița", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25483000", + "longitude": "26.84169000" + }, + { + "id": "94096", + "name": "Dumeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18333000", + "longitude": "27.35000000" + }, + { + "id": "94144", + "name": "Erbiceni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26667000", + "longitude": "27.23333000" + }, + { + "id": "94241", + "name": "Fântânele", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41498000", + "longitude": "27.18066000" + }, + { + "id": "94266", + "name": "Fărcășeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15987000", + "longitude": "26.89615000" + }, + { + "id": "94161", + "name": "Fetești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40932000", + "longitude": "26.90885000" + }, + { + "id": "94192", + "name": "Focuri", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "27.21667000" + }, + { + "id": "94481", + "name": "Gârbești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "27.30000000" + }, + { + "id": "94363", + "name": "Glodenii Gândului", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95158000", + "longitude": "27.29938000" + }, + { + "id": "94370", + "name": "Goești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15654000", + "longitude": "27.13659000" + }, + { + "id": "94380", + "name": "Golăiești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "27.70000000" + }, + { + "id": "94382", + "name": "Gorban", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.87611000", + "longitude": "28.07889000" + }, + { + "id": "94391", + "name": "Goruni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10389000", + "longitude": "27.71854000" + }, + { + "id": "94400", + "name": "Grajduri", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96667000", + "longitude": "27.51667000" + }, + { + "id": "94420", + "name": "Gropniţa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "27.25000000" + }, + { + "id": "94422", + "name": "Grozeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99083000", + "longitude": "28.05056000" + }, + { + "id": "94588", + "name": "Hârlău", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43333000", + "longitude": "26.90000000" + }, + { + "id": "94591", + "name": "Hârtoape", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32164000", + "longitude": "26.72459000" + }, + { + "id": "94602", + "name": "Hălăuceşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10000000", + "longitude": "26.80000000" + }, + { + "id": "94606", + "name": "Hărmăneasa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "26.86667000" + }, + { + "id": "94607", + "name": "Hărmăneștii Vechi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27732000", + "longitude": "26.81394000" + }, + { + "id": "94526", + "name": "Heci", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34325000", + "longitude": "26.66226000" + }, + { + "id": "94528", + "name": "Heleșteni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20303000", + "longitude": "26.87755000" + }, + { + "id": "94544", + "name": "Hodora", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33712000", + "longitude": "27.01970000" + }, + { + "id": "94549", + "name": "Holboca", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "27.70000000" + }, + { + "id": "94564", + "name": "Horleşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "27.36667000" + }, + { + "id": "94630", + "name": "Iaşi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "27.60000000" + }, + { + "id": "94628", + "name": "Iazu Nou", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48272000", + "longitude": "27.20913000" + }, + { + "id": "94675", + "name": "Ion Neculce", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20344000", + "longitude": "27.05268000" + }, + { + "id": "94683", + "name": "Ipatele", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "27.41667000" + }, + { + "id": "94695", + "name": "Iugani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04431000", + "longitude": "26.82891000" + }, + { + "id": "94706", + "name": "Izvoarele", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04241000", + "longitude": "26.90230000" + }, + { + "id": "94791", + "name": "Leţcani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18333000", + "longitude": "27.41667000" + }, + { + "id": "94782", + "name": "Lespezi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36667000", + "longitude": "26.70000000" + }, + { + "id": "94810", + "name": "Liteni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30169000", + "longitude": "27.03837000" + }, + { + "id": "94853", + "name": "Lunca", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28144000", + "longitude": "26.73708000" + }, + { + "id": "94863", + "name": "Lunca Cetățuii", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09660000", + "longitude": "27.56319000" + }, + { + "id": "94880", + "name": "Lungani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18333000", + "longitude": "27.15000000" + }, + { + "id": "94940", + "name": "Maxut", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.44040000", + "longitude": "26.89204000" + }, + { + "id": "95232", + "name": "Mădârjac", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04994000", + "longitude": "27.26182000" + }, + { + "id": "95261", + "name": "Mănăstirea", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "27.20000000" + }, + { + "id": "95014", + "name": "Mirceşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08333000", + "longitude": "26.83333000" + }, + { + "id": "95019", + "name": "Mironeasa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96667000", + "longitude": "27.41667000" + }, + { + "id": "95021", + "name": "Miroslava", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "27.51667000" + }, + { + "id": "95022", + "name": "Miroslovești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "26.65000000" + }, + { + "id": "95088", + "name": "Moşna", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "27.95000000" + }, + { + "id": "95092", + "name": "Moţca", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25000000", + "longitude": "26.61667000" + }, + { + "id": "95053", + "name": "Mogoşeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "27.53333000" + }, + { + "id": "95054", + "name": "Mogoşeşti-Siret", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13333000", + "longitude": "26.78333000" + }, + { + "id": "95083", + "name": "Movileni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "27.35000000" + }, + { + "id": "95100", + "name": "Muncelu de Sus", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12384000", + "longitude": "26.73518000" + }, + { + "id": "95150", + "name": "Municipiul Iaşi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16184000", + "longitude": "27.58451000" + }, + { + "id": "95166", + "name": "Municipiul Paşcani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24736000", + "longitude": "26.71235000" + }, + { + "id": "95199", + "name": "Munteni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31530000", + "longitude": "27.13839000" + }, + { + "id": "95689", + "name": "Oţeleni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08333000", + "longitude": "27.03333000" + }, + { + "id": "95531", + "name": "Oraş Hârlãu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43153000", + "longitude": "26.87774000" + }, + { + "id": "95569", + "name": "Oraş Podu Iloaiei", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20807000", + "longitude": "27.26548000" + }, + { + "id": "95607", + "name": "Oraş Târgu Frumos", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20788000", + "longitude": "27.01196000" + }, + { + "id": "95674", + "name": "Osoi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09479000", + "longitude": "27.80091000" + }, + { + "id": "95718", + "name": "Paşcani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24690000", + "longitude": "26.72291000" + }, + { + "id": "95998", + "name": "Pârcovaci", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43586000", + "longitude": "26.85075000" + }, + { + "id": "96036", + "name": "Păușești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15810000", + "longitude": "27.32594000" + }, + { + "id": "95730", + "name": "Perieni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38469000", + "longitude": "27.47453000" + }, + { + "id": "95786", + "name": "Pietrosu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34118000", + "longitude": "26.60817000" + }, + { + "id": "95831", + "name": "Plugari", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48333000", + "longitude": "27.10000000" + }, + { + "id": "95849", + "name": "Podolenii de Sus", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85716000", + "longitude": "28.01545000" + }, + { + "id": "95850", + "name": "Podu Iloaiei", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21667000", + "longitude": "27.26667000" + }, + { + "id": "95862", + "name": "Poiana", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.49299000", + "longitude": "26.86387000" + }, + { + "id": "95877", + "name": "Poiana Mărului", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37951000", + "longitude": "26.89243000" + }, + { + "id": "95893", + "name": "Poienile", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "27.18333000" + }, + { + "id": "95909", + "name": "Popeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "27.23333000" + }, + { + "id": "95919", + "name": "Popricani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "27.51667000" + }, + { + "id": "95956", + "name": "Prisăcani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08333000", + "longitude": "27.88333000" + }, + { + "id": "95957", + "name": "Probota", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "27.50000000" + }, + { + "id": "96185", + "name": "Răchiteni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05347000", + "longitude": "26.91730000" + }, + { + "id": "96199", + "name": "Răducăneni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "27.93333000" + }, + { + "id": "96213", + "name": "Războieni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21754000", + "longitude": "27.05039000" + }, + { + "id": "96075", + "name": "Rediu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21667000", + "longitude": "27.50000000" + }, + { + "id": "96134", + "name": "Roșcani", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45581000", + "longitude": "27.40021000" + }, + { + "id": "96110", + "name": "Româneşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "27.31667000" + }, + { + "id": "96148", + "name": "Ruginoasa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25000000", + "longitude": "26.85000000" + }, + { + "id": "96259", + "name": "Satu Nou", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32147000", + "longitude": "27.09555000" + }, + { + "id": "96292", + "name": "Scânteia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "27.56667000" + }, + { + "id": "96265", + "name": "Scheia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11725000", + "longitude": "26.88153000" + }, + { + "id": "96273", + "name": "Schitu-Duca", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "27.76667000" + }, + { + "id": "96277", + "name": "Scobinţi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "26.93333000" + }, + { + "id": "96352", + "name": "Sineşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "27.18333000" + }, + { + "id": "96359", + "name": "Sireţel", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40000000", + "longitude": "26.73333000" + }, + { + "id": "96371", + "name": "Slobozia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05758000", + "longitude": "27.41446000" + }, + { + "id": "96395", + "name": "Soci", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18573000", + "longitude": "26.64446000" + }, + { + "id": "96399", + "name": "Sodomeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22233000", + "longitude": "26.68805000" + }, + { + "id": "96431", + "name": "Sticlăria", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40115000", + "longitude": "26.83797000" + }, + { + "id": "96442", + "name": "Stolniceni-Prăjescu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19858000", + "longitude": "26.74810000" + }, + { + "id": "96445", + "name": "Stornești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "27.18333000" + }, + { + "id": "96459", + "name": "Strunga", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "26.98333000" + }, + { + "id": "96497", + "name": "Suhuleț", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90368000", + "longitude": "27.25849000" + }, + { + "id": "106050", + "name": "Tabăra", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57395000", + "longitude": "27.41213000" + }, + { + "id": "106058", + "name": "Tansa", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "27.23333000" + }, + { + "id": "96583", + "name": "Târgu Frumos", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "27.00000000" + }, + { + "id": "96620", + "name": "Tătăruşi", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "26.60000000" + }, + { + "id": "106115", + "name": "Todireşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "26.83333000" + }, + { + "id": "106121", + "name": "Tomeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "27.68333000" + }, + { + "id": "106129", + "name": "Topile", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26340000", + "longitude": "26.66883000" + }, + { + "id": "106143", + "name": "Totoești", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25107000", + "longitude": "27.28879000" + }, + { + "id": "106156", + "name": "Trifeşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45000000", + "longitude": "27.51667000" + }, + { + "id": "96634", + "name": "Uda", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33645000", + "longitude": "26.57165000" + }, + { + "id": "96732", + "name": "Valea Lupului", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.17920000", + "longitude": "27.49965000" + }, + { + "id": "96753", + "name": "Valea Seacă", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29219000", + "longitude": "26.66876000" + }, + { + "id": "96930", + "name": "Vânători", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "27.53333000" + }, + { + "id": "96792", + "name": "Verșeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11294000", + "longitude": "26.64341000" + }, + { + "id": "96805", + "name": "Victoria", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "27.58333000" + }, + { + "id": "96862", + "name": "Vlădeni", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41667000", + "longitude": "27.33333000" + }, + { + "id": "96881", + "name": "Voineşti", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "27.41667000" + }, + { + "id": "96978", + "name": "Zagavia", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41911000", + "longitude": "26.89790000" + }, + { + "id": "97001", + "name": "Zmeu", + "state_id": 4735, + "state_code": "IS", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19161000", + "longitude": "27.17917000" + }, + { + "id": "89887", + "name": "Adâncata", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "26.43333000" + }, + { + "id": "89915", + "name": "Albeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "27.13333000" + }, + { + "id": "89929", + "name": "Alexeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68333000", + "longitude": "26.70000000" + }, + { + "id": "89947", + "name": "Amara", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "27.31667000" + }, + { + "id": "89959", + "name": "Andrăşeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "27.13333000" + }, + { + "id": "89996", + "name": "Armăşeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "26.58333000" + }, + { + "id": "90012", + "name": "Axintele", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "26.78333000" + }, + { + "id": "97112", + "name": "Ţăndărei", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "27.66667000" + }, + { + "id": "90038", + "name": "Balaciu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63333000", + "longitude": "26.88333000" + }, + { + "id": "90539", + "name": "Bărbulești", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72629000", + "longitude": "26.59929000" + }, + { + "id": "90542", + "name": "Bărcăneşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63333000", + "longitude": "26.65000000" + }, + { + "id": "90235", + "name": "Borănești", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66069000", + "longitude": "26.60505000" + }, + { + "id": "90227", + "name": "Borduşani", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48333000", + "longitude": "27.90000000" + }, + { + "id": "90313", + "name": "Broșteni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67192000", + "longitude": "26.74787000" + }, + { + "id": "90363", + "name": "Bucu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60532000", + "longitude": "27.49337000" + }, + { + "id": "90390", + "name": "Buești", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54473000", + "longitude": "27.18729000" + }, + { + "id": "90403", + "name": "Buliga", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35731000", + "longitude": "27.79225000" + }, + { + "id": "93884", + "name": "Căzăneşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "27.01667000" + }, + { + "id": "90607", + "name": "Cegani", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46279000", + "longitude": "27.90175000" + }, + { + "id": "90710", + "name": "Ciocârlia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "26.66667000" + }, + { + "id": "90707", + "name": "Ciochina", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58333000", + "longitude": "27.06667000" + }, + { + "id": "90747", + "name": "Ciulniţa", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "27.35000000" + }, + { + "id": "93690", + "name": "Coşereni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68333000", + "longitude": "26.56667000" + }, + { + "id": "90780", + "name": "Cocora", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "27.05000000" + }, + { + "id": "90794", + "name": "Colelia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76112000", + "longitude": "27.00693000" + }, + { + "id": "90825", + "name": "Comuna Adâncata", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76691000", + "longitude": "26.43010000" + }, + { + "id": "90840", + "name": "Comuna Albeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53575000", + "longitude": "27.12464000" + }, + { + "id": "90851", + "name": "Comuna Alexeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67966000", + "longitude": "26.71064000" + }, + { + "id": "90871", + "name": "Comuna Andrăşeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57648000", + "longitude": "27.12438000" + }, + { + "id": "90895", + "name": "Comuna Armăşeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76397000", + "longitude": "26.57999000" + }, + { + "id": "90909", + "name": "Comuna Axintele", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58688000", + "longitude": "26.78809000" + }, + { + "id": "90922", + "name": "Comuna Balaciu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60985000", + "longitude": "26.88277000" + }, + { + "id": "91236", + "name": "Comuna Bărbuleşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72629000", + "longitude": "26.59929000" + }, + { + "id": "91240", + "name": "Comuna Bărcăneşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63517000", + "longitude": "26.66786000" + }, + { + "id": "91054", + "name": "Comuna Borăneşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66355000", + "longitude": "26.59486000" + }, + { + "id": "91049", + "name": "Comuna Borduşani", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47236000", + "longitude": "27.90315000" + }, + { + "id": "91138", + "name": "Comuna Bucu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60663000", + "longitude": "27.49432000" + }, + { + "id": "91151", + "name": "Comuna Bueşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54473000", + "longitude": "27.18729000" + }, + { + "id": "91343", + "name": "Comuna Ciocârlia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78828000", + "longitude": "26.67002000" + }, + { + "id": "91341", + "name": "Comuna Ciochina", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57524000", + "longitude": "27.02475000" + }, + { + "id": "91368", + "name": "Comuna Ciulniţa", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51976000", + "longitude": "27.28461000" + }, + { + "id": "91474", + "name": "Comuna Coşereni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68540000", + "longitude": "26.56101000" + }, + { + "id": "91388", + "name": "Comuna Cocora", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73752000", + "longitude": "27.04760000" + }, + { + "id": "91397", + "name": "Comuna Colelia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76112000", + "longitude": "27.00693000" + }, + { + "id": "91462", + "name": "Comuna Cosâmbeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56104000", + "longitude": "27.45846000" + }, + { + "id": "91689", + "name": "Comuna Drăgoeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58767000", + "longitude": "26.52057000" + }, + { + "id": "91680", + "name": "Comuna Dridu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70391000", + "longitude": "26.45311000" + }, + { + "id": "91818", + "name": "Comuna Făcăeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56878000", + "longitude": "27.88087000" + }, + { + "id": "91966", + "name": "Comuna Gârbovi", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78651000", + "longitude": "26.76960000" + }, + { + "id": "91842", + "name": "Comuna Gheorghe Doja", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61333000", + "longitude": "27.18388000" + }, + { + "id": "91843", + "name": "Comuna Gheorghe Lazăr", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63278000", + "longitude": "27.45815000" + }, + { + "id": "91876", + "name": "Comuna Giurgeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74435000", + "longitude": "27.85638000" + }, + { + "id": "91917", + "name": "Comuna Grindu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77212000", + "longitude": "26.90952000" + }, + { + "id": "91921", + "name": "Comuna Griviţa", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72969000", + "longitude": "27.32227000" + }, + { + "id": "91948", + "name": "Comuna Gura Ialomiţei", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73165000", + "longitude": "27.74035000" + }, + { + "id": "92084", + "name": "Comuna Ion Roată", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66757000", + "longitude": "26.76803000" + }, + { + "id": "92124", + "name": "Comuna Jilavele", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77522000", + "longitude": "26.52478000" + }, + { + "id": "92230", + "name": "Comuna Maia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73616000", + "longitude": "26.40151000" + }, + { + "id": "92238", + "name": "Comuna Manasia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70648000", + "longitude": "26.67346000" + }, + { + "id": "92406", + "name": "Comuna Mărculeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56698000", + "longitude": "27.51562000" + }, + { + "id": "92276", + "name": "Comuna Mihail Kogălniceanu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66216000", + "longitude": "27.73430000" + }, + { + "id": "92292", + "name": "Comuna Miloşeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75820000", + "longitude": "27.20338000" + }, + { + "id": "92326", + "name": "Comuna Moldoveni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71425000", + "longitude": "26.51879000" + }, + { + "id": "92337", + "name": "Comuna Movila", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53747000", + "longitude": "27.71771000" + }, + { + "id": "92343", + "name": "Comuna Moviliţa", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61784000", + "longitude": "26.48006000" + }, + { + "id": "92357", + "name": "Comuna Munteni Buzău", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63838000", + "longitude": "26.97288000" + }, + { + "id": "92485", + "name": "Comuna Ograda", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61457000", + "longitude": "27.57047000" + }, + { + "id": "92551", + "name": "Comuna Perieţi", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57191000", + "longitude": "27.26027000" + }, + { + "id": "92591", + "name": "Comuna Platoneşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60713000", + "longitude": "27.68637000" + }, + { + "id": "92845", + "name": "Comuna Răduleşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77609000", + "longitude": "26.33987000" + }, + { + "id": "92769", + "name": "Comuna Reviga", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69251000", + "longitude": "27.10866000" + }, + { + "id": "92802", + "name": "Comuna Roşiori", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61265000", + "longitude": "26.53496000" + }, + { + "id": "93095", + "name": "Comuna Sălcioara", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53755000", + "longitude": "26.90312000" + }, + { + "id": "93111", + "name": "Comuna Sărăţeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63422000", + "longitude": "26.92686000" + }, + { + "id": "93116", + "name": "Comuna Săveni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60868000", + "longitude": "27.62061000" + }, + { + "id": "92902", + "name": "Comuna Scânteia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73262000", + "longitude": "27.44334000" + }, + { + "id": "92923", + "name": "Comuna Sfântu Gheorghe", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64735000", + "longitude": "26.84315000" + }, + { + "id": "92942", + "name": "Comuna Sinteşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56260000", + "longitude": "26.41162000" + }, + { + "id": "92953", + "name": "Comuna Slobozia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57437000", + "longitude": "27.38755000" + }, + { + "id": "92990", + "name": "Comuna Stelnica", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42585000", + "longitude": "27.88823000" + }, + { + "id": "93028", + "name": "Comuna Sudiţi", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57135000", + "longitude": "27.58215000" + }, + { + "id": "93185", + "name": "Comuna Traian", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76350000", + "longitude": "27.34337000" + }, + { + "id": "93300", + "name": "Comuna Valea Ciorii", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71456000", + "longitude": "27.53979000" + }, + { + "id": "93318", + "name": "Comuna Valea Măcrişului", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73554000", + "longitude": "26.83515000" + }, + { + "id": "93386", + "name": "Comuna Vlădeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60652000", + "longitude": "27.85120000" + }, + { + "id": "93590", + "name": "Condeești", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62761000", + "longitude": "26.69147000" + }, + { + "id": "93671", + "name": "Cosâmbeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55929000", + "longitude": "27.43441000" + }, + { + "id": "94042", + "name": "Drăgoeşti-Snagov", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "26.53333000" + }, + { + "id": "94043", + "name": "Drăgoești", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56786000", + "longitude": "26.53950000" + }, + { + "id": "94031", + "name": "Dridu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70000000", + "longitude": "26.45000000" + }, + { + "id": "94249", + "name": "Făcăeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "27.90000000" + }, + { + "id": "94160", + "name": "Feteşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "27.83333000" + }, + { + "id": "94162", + "name": "Fetești-Gară", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41960000", + "longitude": "27.82536000" + }, + { + "id": "94165", + "name": "Fierbinţi-Târg", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70000000", + "longitude": "26.35000000" + }, + { + "id": "94167", + "name": "Fierbinții de Jos", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69523000", + "longitude": "26.39629000" + }, + { + "id": "94168", + "name": "Fierbinții de Sus", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68186000", + "longitude": "26.40200000" + }, + { + "id": "94484", + "name": "Gârbovi", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "26.76667000" + }, + { + "id": "94301", + "name": "Gheorghe Doja", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61622000", + "longitude": "27.18740000" + }, + { + "id": "94302", + "name": "Gheorghe Lazăr", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63333000", + "longitude": "27.45000000" + }, + { + "id": "94352", + "name": "Giurgeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "27.88333000" + }, + { + "id": "94412", + "name": "Grindu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "26.91667000" + }, + { + "id": "94415", + "name": "Griviţa", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "27.28333000" + }, + { + "id": "94455", + "name": "Gura Ialomiței", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71608000", + "longitude": "27.75310000" + }, + { + "id": "94627", + "name": "Iazu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73120000", + "longitude": "27.42074000" + }, + { + "id": "94676", + "name": "Ion Roată", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "26.76667000" + }, + { + "id": "94737", + "name": "Jilavele", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "26.53333000" + }, + { + "id": "94890", + "name": "Lăcusteni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60715000", + "longitude": "27.67569000" + }, + { + "id": "94839", + "name": "Luciu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74722000", + "longitude": "27.72760000" + }, + { + "id": "94907", + "name": "Maia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73616000", + "longitude": "26.40151000" + }, + { + "id": "94917", + "name": "Malu Roșu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78088000", + "longitude": "26.57945000" + }, + { + "id": "94921", + "name": "Manasia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70000000", + "longitude": "26.66667000" + }, + { + "id": "95267", + "name": "Mărculești", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56698000", + "longitude": "27.51562000" + }, + { + "id": "94983", + "name": "Mihail Kogălniceanu", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68333000", + "longitude": "27.73333000" + }, + { + "id": "95006", + "name": "Miloşeşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "27.23333000" + }, + { + "id": "95064", + "name": "Moldoveni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71425000", + "longitude": "26.51879000" + }, + { + "id": "95079", + "name": "Movila", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "27.70000000" + }, + { + "id": "95086", + "name": "Moviliţa", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "26.48333000" + }, + { + "id": "95140", + "name": "Municipiul Feteşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38608000", + "longitude": "27.82483000" + }, + { + "id": "95194", + "name": "Municipiul Urziceni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71842000", + "longitude": "26.64187000" + }, + { + "id": "95201", + "name": "Munteni Buzău", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63333000", + "longitude": "26.98333000" + }, + { + "id": "95414", + "name": "Ograda", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61457000", + "longitude": "27.57047000" + }, + { + "id": "95448", + "name": "Oraş Amara", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61793000", + "longitude": "27.33411000" + }, + { + "id": "95633", + "name": "Oraş Ţãndãrei", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64491000", + "longitude": "27.65196000" + }, + { + "id": "95506", + "name": "Oraş Cãzãneşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62514000", + "longitude": "27.01697000" + }, + { + "id": "95516", + "name": "Oraş Fierbinţi-Târg", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68292000", + "longitude": "26.38324000" + }, + { + "id": "95717", + "name": "Patru Frați", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73672000", + "longitude": "26.47059000" + }, + { + "id": "95732", + "name": "Perieţi", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "27.21667000" + }, + { + "id": "95806", + "name": "Platonești", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60712000", + "longitude": "27.69706000" + }, + { + "id": "96063", + "name": "Rași", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53534000", + "longitude": "26.92485000" + }, + { + "id": "96200", + "name": "Rădulești", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "26.35000000" + }, + { + "id": "96090", + "name": "Reviga", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "27.10000000" + }, + { + "id": "96140", + "name": "Roșiori", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61265000", + "longitude": "26.53496000" + }, + { + "id": "96123", + "name": "Rovine", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69540000", + "longitude": "27.09364000" + }, + { + "id": "106012", + "name": "Sălcioara", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "26.88333000" + }, + { + "id": "106037", + "name": "Sărățeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63422000", + "longitude": "26.92686000" + }, + { + "id": "106045", + "name": "Săveni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "27.65000000" + }, + { + "id": "96293", + "name": "Scânteia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73404000", + "longitude": "27.46593000" + }, + { + "id": "96329", + "name": "Sfântu Gheorghe", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "26.83333000" + }, + { + "id": "96353", + "name": "Sineşti", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "26.38333000" + }, + { + "id": "96373", + "name": "Slobozia", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56470000", + "longitude": "27.36330000" + }, + { + "id": "96387", + "name": "Smirna", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72405000", + "longitude": "27.35478000" + }, + { + "id": "96429", + "name": "Stelnica", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "27.88333000" + }, + { + "id": "96493", + "name": "Sudiţi", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58333000", + "longitude": "27.60000000" + }, + { + "id": "106144", + "name": "Traian", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76350000", + "longitude": "27.34337000" + }, + { + "id": "96688", + "name": "Urziceni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "26.63333000" + }, + { + "id": "96715", + "name": "Valea Ciorii", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "27.56667000" + }, + { + "id": "96742", + "name": "Valea Măcrișului", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74379000", + "longitude": "26.83015000" + }, + { + "id": "96858", + "name": "Vlașca", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39664000", + "longitude": "27.84865000" + }, + { + "id": "96860", + "name": "Vlădeni", + "state_id": 4743, + "state_code": "IL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "27.88333000" + }, + { + "id": "89871", + "name": "1 Decembrie", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29083000", + "longitude": "26.05806000" + }, + { + "id": "89891", + "name": "Afumaţi", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51667000", + "longitude": "26.26667000" + }, + { + "id": "89943", + "name": "Alunișu", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33883000", + "longitude": "26.05837000" + }, + { + "id": "97087", + "name": "Ştefăneştii de Jos", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "26.20000000" + }, + { + "id": "90045", + "name": "Baloteşti", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "26.11667000" + }, + { + "id": "90521", + "name": "Bălăceanca", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39249000", + "longitude": "26.29009000" + }, + { + "id": "90099", + "name": "Berceni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31417000", + "longitude": "26.18556000" + }, + { + "id": "90264", + "name": "Bragadiru", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37111000", + "longitude": "25.97750000" + }, + { + "id": "90337", + "name": "Brăneşti", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "26.33333000" + }, + { + "id": "90352", + "name": "Buciumeni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54975000", + "longitude": "25.96419000" + }, + { + "id": "90391", + "name": "Buftea", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56139000", + "longitude": "25.94889000" + }, + { + "id": "90416", + "name": "Buriaș", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73304000", + "longitude": "25.98053000" + }, + { + "id": "93824", + "name": "Căciulați", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62741000", + "longitude": "26.17255000" + }, + { + "id": "93886", + "name": "Cățelu", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40292000", + "longitude": "26.21975000" + }, + { + "id": "93833", + "name": "Căldăraru", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41307000", + "longitude": "26.26313000" + }, + { + "id": "90635", + "name": "Cernica", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "26.28333000" + }, + { + "id": "90662", + "name": "Chiajna", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46000000", + "longitude": "25.97333000" + }, + { + "id": "90684", + "name": "Chitila", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50806000", + "longitude": "25.98222000" + }, + { + "id": "90717", + "name": "Ciofliceni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68122000", + "longitude": "26.11923000" + }, + { + "id": "90720", + "name": "Ciolpani", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "26.08333000" + }, + { + "id": "90726", + "name": "Ciorogârla", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44250000", + "longitude": "25.88333000" + }, + { + "id": "90767", + "name": "Clinceni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37333000", + "longitude": "25.95472000" + }, + { + "id": "90816", + "name": "Comuna 1 Decembrie", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28869000", + "longitude": "26.06178000" + }, + { + "id": "90828", + "name": "Comuna Afumaţi", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52501000", + "longitude": "26.24943000" + }, + { + "id": "93554", + "name": "Comuna Ştefãneştii De Jos", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "26.18333000" + }, + { + "id": "90927", + "name": "Comuna Baloteşti", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62026000", + "longitude": "26.08664000" + }, + { + "id": "90961", + "name": "Comuna Berceni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30887000", + "longitude": "26.19051000" + }, + { + "id": "91123", + "name": "Comuna Brăneşti", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45362000", + "longitude": "26.34995000" + }, + { + "id": "91293", + "name": "Comuna Cernica", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39343000", + "longitude": "26.28992000" + }, + { + "id": "91311", + "name": "Comuna Chiajna", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45499000", + "longitude": "25.99345000" + }, + { + "id": "91350", + "name": "Comuna Ciolpani", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72603000", + "longitude": "26.10193000" + }, + { + "id": "91354", + "name": "Comuna Ciorogârla", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43222000", + "longitude": "25.87861000" + }, + { + "id": "91381", + "name": "Comuna Clinceni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37639000", + "longitude": "25.92445000" + }, + { + "id": "91420", + "name": "Comuna Copăceni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26297000", + "longitude": "26.09374000" + }, + { + "id": "91423", + "name": "Comuna Corbeanca", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59671000", + "longitude": "26.03241000" + }, + { + "id": "91437", + "name": "Comuna Cornetu", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34286000", + "longitude": "25.92489000" + }, + { + "id": "91605", + "name": "Comuna Dascălu Creaţa", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60008000", + "longitude": "26.24201000" + }, + { + "id": "91746", + "name": "Comuna Dărăşti-Ilfov", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30912000", + "longitude": "26.02139000" + }, + { + "id": "91658", + "name": "Comuna Domneşti", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39058000", + "longitude": "25.89492000" + }, + { + "id": "91675", + "name": "Comuna Dragomireşti-Vale", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47555000", + "longitude": "25.93164000" + }, + { + "id": "91801", + "name": "Comuna Fundeni-Dobroeşti", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45455000", + "longitude": "26.18368000" + }, + { + "id": "91985", + "name": "Comuna Găneasa", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49447000", + "longitude": "26.29923000" + }, + { + "id": "91880", + "name": "Comuna Glina", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38546000", + "longitude": "26.24582000" + }, + { + "id": "91938", + "name": "Comuna Grădiştea", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66557000", + "longitude": "26.31448000" + }, + { + "id": "91931", + "name": "Comuna Gruiu", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72648000", + "longitude": "26.22133000" + }, + { + "id": "92123", + "name": "Comuna Jilava", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.32863000", + "longitude": "26.07754000" + }, + { + "id": "92313", + "name": "Comuna Moara Vlãsiei", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63416000", + "longitude": "26.18935000" + }, + { + "id": "92321", + "name": "Comuna Mogoşoaia", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52903000", + "longitude": "26.00178000" + }, + { + "id": "92455", + "name": "Comuna Nuci", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70910000", + "longitude": "26.31770000" + }, + { + "id": "92553", + "name": "Comuna Periş", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70859000", + "longitude": "26.01472000" + }, + { + "id": "92569", + "name": "Comuna Petrăchioaia", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57953000", + "longitude": "26.31114000" + }, + { + "id": "92967", + "name": "Comuna Snagov", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68481000", + "longitude": "26.12384000" + }, + { + "id": "93207", + "name": "Comuna Tunari", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56797000", + "longitude": "26.13908000" + }, + { + "id": "93355", + "name": "Comuna Vidra", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28107000", + "longitude": "26.14310000" + }, + { + "id": "93607", + "name": "Copăceni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26297000", + "longitude": "26.09374000" + }, + { + "id": "93612", + "name": "Corbeanca", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "26.05000000" + }, + { + "id": "93633", + "name": "Cornetu", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34167000", + "longitude": "25.94083000" + }, + { + "id": "93714", + "name": "Crețești", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28238000", + "longitude": "26.13530000" + }, + { + "id": "93897", + "name": "Dascălu", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "26.23333000" + }, + { + "id": "94112", + "name": "Dârvari", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42108000", + "longitude": "25.87989000" + }, + { + "id": "94134", + "name": "Dărăşti-Ilfov", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30889000", + "longitude": "26.01833000" + }, + { + "id": "93961", + "name": "Dobroeşti", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "26.18333000" + }, + { + "id": "93990", + "name": "Domneşti-Sârbi", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "25.91667000" + }, + { + "id": "93991", + "name": "Domnești", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39919000", + "longitude": "25.91618000" + }, + { + "id": "94019", + "name": "Dragomireşti-Vale", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47500000", + "longitude": "25.93500000" + }, + { + "id": "94020", + "name": "Dragomirești-Deal", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46240000", + "longitude": "25.94478000" + }, + { + "id": "94226", + "name": "Fundeni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45892000", + "longitude": "26.16565000" + }, + { + "id": "94510", + "name": "Găneasa", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48333000", + "longitude": "26.28333000" + }, + { + "id": "94309", + "name": "Ghermănești", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68829000", + "longitude": "26.14962000" + }, + { + "id": "94358", + "name": "Glina", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "26.25000000" + }, + { + "id": "94438", + "name": "Grădiştea", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "26.28333000" + }, + { + "id": "94430", + "name": "Gruiu", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "26.23333000" + }, + { + "id": "94690", + "name": "Islaz", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46117000", + "longitude": "26.38724000" + }, + { + "id": "94736", + "name": "Jilava", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33333000", + "longitude": "26.07806000" + }, + { + "id": "94800", + "name": "Lipia", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71003000", + "longitude": "26.26445000" + }, + { + "id": "95243", + "name": "Măgurele", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "26.03333000" + }, + { + "id": "94958", + "name": "Merii Petchii", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73532000", + "longitude": "26.30054000" + }, + { + "id": "95043", + "name": "Moara Vlăsiei", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64090000", + "longitude": "26.20616000" + }, + { + "id": "95055", + "name": "Mogoşoaia", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52917000", + "longitude": "26.00000000" + }, + { + "id": "95361", + "name": "Nuci", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "26.30000000" + }, + { + "id": "95431", + "name": "Olteni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39307000", + "longitude": "25.95021000" + }, + { + "id": "95469", + "name": "Oraş Bragadiru", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36998000", + "longitude": "25.97871000" + }, + { + "id": "95475", + "name": "Oraş Buftea", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55475000", + "longitude": "25.95628000" + }, + { + "id": "95491", + "name": "Oraş Chitila", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49053000", + "longitude": "25.97847000" + }, + { + "id": "95546", + "name": "Oraş Mãgurele", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33925000", + "longitude": "26.01403000" + }, + { + "id": "95561", + "name": "Oraş Otopeni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54217000", + "longitude": "26.06526000" + }, + { + "id": "95565", + "name": "Oraş Pantelimon", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45235000", + "longitude": "26.20684000" + }, + { + "id": "95571", + "name": "Oraş Popeşti Leordeni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38005000", + "longitude": "26.17134000" + }, + { + "id": "95684", + "name": "Otopeni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "26.06667000" + }, + { + "id": "95706", + "name": "Pantelimon", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45000000", + "longitude": "26.20000000" + }, + { + "id": "95735", + "name": "Periş", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68472000", + "longitude": "26.01389000" + }, + { + "id": "95758", + "name": "Petrăchioaia", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58099000", + "longitude": "26.31269000" + }, + { + "id": "95802", + "name": "Piteasca", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49339000", + "longitude": "26.33025000" + }, + { + "id": "95912", + "name": "Popeşti-Leordeni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "26.16667000" + }, + { + "id": "96142", + "name": "Roșu", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45025000", + "longitude": "26.01122000" + }, + { + "id": "96146", + "name": "Rudeni", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47242000", + "longitude": "25.97325000" + }, + { + "id": "96345", + "name": "Siliștea Snagovului", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73920000", + "longitude": "26.17942000" + }, + { + "id": "96357", + "name": "Sintești", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30046000", + "longitude": "26.12126000" + }, + { + "id": "96393", + "name": "Snagov", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70000000", + "longitude": "26.18333000" + }, + { + "id": "106056", + "name": "Tamași", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58438000", + "longitude": "26.00724000" + }, + { + "id": "96578", + "name": "Tânganu", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40628000", + "longitude": "26.31262000" + }, + { + "id": "96548", + "name": "Tunari", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "26.15000000" + }, + { + "id": "96943", + "name": "Vârteju", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35606000", + "longitude": "25.99183000" + }, + { + "id": "96809", + "name": "Vidra", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26056000", + "longitude": "26.16972000" + }, + { + "id": "96889", + "name": "Voluntari", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49002000", + "longitude": "26.17338000" + }, + { + "id": "96890", + "name": "Voluntari City", + "state_id": 4725, + "state_code": "IF", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49023000", + "longitude": "26.18439000" + }, + { + "id": "89984", + "name": "Ardusat", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "23.36667000" + }, + { + "id": "89994", + "name": "Ariniş", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50000000", + "longitude": "23.23333000" + }, + { + "id": "90001", + "name": "Asuaju de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "23.18333000" + }, + { + "id": "97069", + "name": "Şomcuta Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "23.46667000" + }, + { + "id": "90029", + "name": "Baia Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65729000", + "longitude": "23.56808000" + }, + { + "id": "90030", + "name": "Baia Sprie", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66189000", + "longitude": "23.69215000" + }, + { + "id": "90455", + "name": "Bârsana", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81667000", + "longitude": "24.06667000" + }, + { + "id": "90498", + "name": "Băiţa de sub Codru", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "23.15000000" + }, + { + "id": "90500", + "name": "Băița", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70614000", + "longitude": "23.49326000" + }, + { + "id": "90488", + "name": "Băile Borșa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68416000", + "longitude": "24.71391000" + }, + { + "id": "90495", + "name": "Băiuţ", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "24.00000000" + }, + { + "id": "90550", + "name": "Băseşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48333000", + "longitude": "23.15000000" + }, + { + "id": "90096", + "name": "Berbești", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84865000", + "longitude": "23.93448000" + }, + { + "id": "90125", + "name": "Bicaz", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "23.03333000" + }, + { + "id": "90144", + "name": "Bistra", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86667000", + "longitude": "24.20000000" + }, + { + "id": "90175", + "name": "Bocicoiu Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96667000", + "longitude": "24.00000000" + }, + { + "id": "90187", + "name": "Bogdan Vodă", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.69197000", + "longitude": "24.26605000" + }, + { + "id": "90205", + "name": "Boiu Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40000000", + "longitude": "23.58333000" + }, + { + "id": "90238", + "name": "Borşa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65527000", + "longitude": "24.66328000" + }, + { + "id": "90222", + "name": "Borcut", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48200000", + "longitude": "23.84071000" + }, + { + "id": "90245", + "name": "Botiza", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66667000", + "longitude": "24.15000000" + }, + { + "id": "90290", + "name": "Breb", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74854000", + "longitude": "23.90494000" + }, + { + "id": "90381", + "name": "Budeşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73333000", + "longitude": "23.95000000" + }, + { + "id": "90592", + "name": "Cavnic", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66667000", + "longitude": "23.86667000" + }, + { + "id": "93802", + "name": "Câmpulung la Tisa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98651000", + "longitude": "23.77263000" + }, + { + "id": "93839", + "name": "Călineşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78423000", + "longitude": "23.96961000" + }, + { + "id": "90633", + "name": "Cerneşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "23.75000000" + }, + { + "id": "90654", + "name": "Chelința", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45311000", + "longitude": "23.31799000" + }, + { + "id": "90698", + "name": "Cicârlău", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.69155000", + "longitude": "23.40380000" + }, + { + "id": "90774", + "name": "Coaș", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53957000", + "longitude": "23.58584000" + }, + { + "id": "90801", + "name": "Coltău", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.59837000", + "longitude": "23.52459000" + }, + { + "id": "90887", + "name": "Comuna Ardusat", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63241000", + "longitude": "23.39156000" + }, + { + "id": "90893", + "name": "Comuna Ariniş", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50757000", + "longitude": "23.22435000" + }, + { + "id": "90899", + "name": "Comuna Asuaju de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55000000", + "longitude": "23.20000000" + }, + { + "id": "93532", + "name": "Comuna Şişeşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61329000", + "longitude": "23.74104000" + }, + { + "id": "93515", + "name": "Comuna Şieu", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72462000", + "longitude": "24.22389000" + }, + { + "id": "91192", + "name": "Comuna Bârsana", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81500000", + "longitude": "24.05731000" + }, + { + "id": "91210", + "name": "Comuna Băiţa de sub Codru", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "23.15000000" + }, + { + "id": "91207", + "name": "Comuna Băiuţ", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60191000", + "longitude": "24.00180000" + }, + { + "id": "91244", + "name": "Comuna Băseşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.49608000", + "longitude": "23.10786000" + }, + { + "id": "90982", + "name": "Comuna Bicaz", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46241000", + "longitude": "23.01474000" + }, + { + "id": "90996", + "name": "Comuna Bistra", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86860000", + "longitude": "24.19291000" + }, + { + "id": "91014", + "name": "Comuna Bocicoiu Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.94673000", + "longitude": "24.01121000" + }, + { + "id": "91022", + "name": "Comuna Bogdan Vodă", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.69480000", + "longitude": "24.29548000" + }, + { + "id": "91034", + "name": "Comuna Boiu Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40202000", + "longitude": "23.59965000" + }, + { + "id": "91062", + "name": "Comuna Botiza", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66818000", + "longitude": "24.15035000" + }, + { + "id": "91145", + "name": "Comuna Budeşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74615000", + "longitude": "23.94569000" + }, + { + "id": "91544", + "name": "Comuna Câmpulung la Tisa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98651000", + "longitude": "23.77263000" + }, + { + "id": "91571", + "name": "Comuna Călineşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78502000", + "longitude": "23.97011000" + }, + { + "id": "91292", + "name": "Comuna Cerneşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53576000", + "longitude": "23.78366000" + }, + { + "id": "91334", + "name": "Comuna Cicârlău", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70582000", + "longitude": "23.38142000" + }, + { + "id": "91383", + "name": "Comuna Coaş", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51282000", + "longitude": "23.60046000" + }, + { + "id": "91401", + "name": "Comuna Coltãu", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60118000", + "longitude": "23.53450000" + }, + { + "id": "91416", + "name": "Comuna Copalnic Mănăştur", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52250000", + "longitude": "23.68782000" + }, + { + "id": "91446", + "name": "Comuna Coroieni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36635000", + "longitude": "23.77764000" + }, + { + "id": "91526", + "name": "Comuna Cupşeni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53255000", + "longitude": "23.94243000" + }, + { + "id": "91618", + "name": "Comuna Deseşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.77004000", + "longitude": "23.85900000" + }, + { + "id": "91719", + "name": "Comuna Dumbrăviţa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60118000", + "longitude": "23.65726000" + }, + { + "id": "91822", + "name": "Comuna Fărcaşa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.59482000", + "longitude": "23.34826000" + }, + { + "id": "91972", + "name": "Comuna Gârdani", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55135000", + "longitude": "23.30880000" + }, + { + "id": "91874", + "name": "Comuna Giuleşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.82215000", + "longitude": "23.92994000" + }, + { + "id": "91928", + "name": "Comuna Groşi", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61193000", + "longitude": "23.58661000" + }, + { + "id": "91929", + "name": "Comuna Groşii Ţibleşului", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48983000", + "longitude": "24.06368000" + }, + { + "id": "92065", + "name": "Comuna Ieud", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.67739000", + "longitude": "24.23378000" + }, + { + "id": "92221", + "name": "Comuna Lăpuş", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.49363000", + "longitude": "24.00646000" + }, + { + "id": "92153", + "name": "Comuna Leordina", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78306000", + "longitude": "24.26401000" + }, + { + "id": "92298", + "name": "Comuna Mireşu Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50011000", + "longitude": "23.36420000" + }, + { + "id": "92323", + "name": "Comuna Moisei", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65612000", + "longitude": "24.53988000" + }, + { + "id": "92469", + "name": "Comuna Oarţa De Jos", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45000000", + "longitude": "23.10000000" + }, + { + "id": "92478", + "name": "Comuna Ocna Şugatag", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.77493000", + "longitude": "23.91268000" + }, + { + "id": "92499", + "name": "Comuna Onceşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84814000", + "longitude": "23.98183000" + }, + { + "id": "92567", + "name": "Comuna Petrova", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83003000", + "longitude": "24.21603000" + }, + { + "id": "92643", + "name": "Comuna Poienile de sub Munte", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.82371000", + "longitude": "24.43674000" + }, + { + "id": "92642", + "name": "Comuna Poienile Izei", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70309000", + "longitude": "24.11276000" + }, + { + "id": "92754", + "name": "Comuna Recea", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63108000", + "longitude": "23.48610000" + }, + { + "id": "92767", + "name": "Comuna Remeţi", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.99630000", + "longitude": "23.58741000" + }, + { + "id": "92765", + "name": "Comuna Remetea Chioarului", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52129000", + "longitude": "23.52891000" + }, + { + "id": "92768", + "name": "Comuna Repedea", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83212000", + "longitude": "24.40142000" + }, + { + "id": "92789", + "name": "Comuna Rona de Jos", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91667000", + "longitude": "24.01667000" + }, + { + "id": "92790", + "name": "Comuna Rona de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90184000", + "longitude": "24.03877000" + }, + { + "id": "92793", + "name": "Comuna Rozavlea", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73791000", + "longitude": "24.20116000" + }, + { + "id": "92817", + "name": "Comuna Ruşcova", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79289000", + "longitude": "24.28546000" + }, + { + "id": "92882", + "name": "Comuna Satulung", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57189000", + "longitude": "23.41978000" + }, + { + "id": "93077", + "name": "Comuna Sãpânţa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96933000", + "longitude": "23.69818000" + }, + { + "id": "93087", + "name": "Comuna Săcălăşeni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57041000", + "longitude": "23.57207000" + }, + { + "id": "93081", + "name": "Comuna Săcel", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63690000", + "longitude": "24.43508000" + }, + { + "id": "93098", + "name": "Comuna Sălsig", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51934000", + "longitude": "23.30270000" + }, + { + "id": "93110", + "name": "Comuna Sărăsău", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95000000", + "longitude": "23.81667000" + }, + { + "id": "93008", + "name": "Comuna Strâmtura", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75156000", + "longitude": "24.10267000" + }, + { + "id": "93027", + "name": "Comuna Suciu de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.44309000", + "longitude": "24.04303000" + }, + { + "id": "93291", + "name": "Comuna Vadu Izei", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88131000", + "longitude": "23.96081000" + }, + { + "id": "93299", + "name": "Comuna Valea Chioarului", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40706000", + "longitude": "23.46101000" + }, + { + "id": "93375", + "name": "Comuna Vişeu de Jos", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72760000", + "longitude": "24.36306000" + }, + { + "id": "93363", + "name": "Comuna Vima Micã", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41766000", + "longitude": "23.68841000" + }, + { + "id": "93601", + "name": "Copalnic Mănăştur", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50000000", + "longitude": "23.68333000" + }, + { + "id": "93647", + "name": "Coroieni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36667000", + "longitude": "23.76667000" + }, + { + "id": "93708", + "name": "Crasna Vișeului", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.82869000", + "longitude": "24.23000000" + }, + { + "id": "93752", + "name": "Crăciunești", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95551000", + "longitude": "23.98267000" + }, + { + "id": "93771", + "name": "Cupşeni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55000000", + "longitude": "23.93333000" + }, + { + "id": "94122", + "name": "Dămăcușeni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45709000", + "longitude": "23.90914000" + }, + { + "id": "93926", + "name": "Deseşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76667000", + "longitude": "23.85000000" + }, + { + "id": "94016", + "name": "Dragomireşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66839000", + "longitude": "24.29111000" + }, + { + "id": "94089", + "name": "Dumbrăviţa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60000000", + "longitude": "23.65000000" + }, + { + "id": "97122", + "name": "Șieu", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72462000", + "longitude": "24.22389000" + }, + { + "id": "97129", + "name": "Șisești", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63506000", + "longitude": "23.70794000" + }, + { + "id": "97136", + "name": "Șurdești", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60215000", + "longitude": "23.76899000" + }, + { + "id": "94261", + "name": "Fărcaşa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58333000", + "longitude": "23.33333000" + }, + { + "id": "94490", + "name": "Gârdani", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55135000", + "longitude": "23.30880000" + }, + { + "id": "94350", + "name": "Giuleşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81667000", + "longitude": "23.93333000" + }, + { + "id": "94425", + "name": "Groşi", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "23.61667000" + }, + { + "id": "94428", + "name": "Groșii Țibleșului", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48983000", + "longitude": "24.06368000" + }, + { + "id": "94617", + "name": "Iadăra", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.47927000", + "longitude": "23.39893000" + }, + { + "id": "94623", + "name": "Iapa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92513000", + "longitude": "23.82539000" + }, + { + "id": "94644", + "name": "Ieud", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.67796000", + "longitude": "24.23399000" + }, + { + "id": "94653", + "name": "Ilba", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71280000", + "longitude": "23.35765000" + }, + { + "id": "94896", + "name": "Lăpuş", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50000000", + "longitude": "24.01667000" + }, + { + "id": "94899", + "name": "Lăpușel", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61830000", + "longitude": "23.47913000" + }, + { + "id": "94780", + "name": "Leordina", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78333000", + "longitude": "24.25000000" + }, + { + "id": "94792", + "name": "Libotin", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50541000", + "longitude": "23.96833000" + }, + { + "id": "94873", + "name": "Lunca la Tisa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95213000", + "longitude": "24.05216000" + }, + { + "id": "94924", + "name": "Mara", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75552000", + "longitude": "23.83126000" + }, + { + "id": "95220", + "name": "Mânău", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48179000", + "longitude": "23.26247000" + }, + { + "id": "95016", + "name": "Mireşu Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50000000", + "longitude": "23.33333000" + }, + { + "id": "95059", + "name": "Moisei", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65562000", + "longitude": "24.54011000" + }, + { + "id": "95111", + "name": "Municipiul Baia Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74048000", + "longitude": "23.60337000" + }, + { + "id": "95182", + "name": "Municipiul Sighetu Marmaţiei", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91914000", + "longitude": "23.88679000" + }, + { + "id": "95351", + "name": "Nistru", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72088000", + "longitude": "23.45495000" + }, + { + "id": "95385", + "name": "Oarţa de Jos", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45827000", + "longitude": "23.12742000" + }, + { + "id": "95399", + "name": "Ocna Şugatag", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78333000", + "longitude": "23.93333000" + }, + { + "id": "95437", + "name": "Oncești", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84814000", + "longitude": "23.98183000" + }, + { + "id": "95455", + "name": "Oraş Baia Sprie", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66446000", + "longitude": "23.66970000" + }, + { + "id": "95468", + "name": "Oraş Borşa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66965000", + "longitude": "24.68846000" + }, + { + "id": "95611", + "name": "Oraş Ulmeni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46209000", + "longitude": "23.27925000" + }, + { + "id": "95619", + "name": "Oraş Vişeu De Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71493000", + "longitude": "24.41707000" + }, + { + "id": "95651", + "name": "Oraș Şomcuta Mare", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "23.46667000" + }, + { + "id": "95637", + "name": "Oraș Cavnic", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.64989000", + "longitude": "23.82547000" + }, + { + "id": "95639", + "name": "Oraș Dragomireşti", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66860000", + "longitude": "24.29542000" + }, + { + "id": "95645", + "name": "Oraș Săliştea de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66019000", + "longitude": "24.35336000" + }, + { + "id": "95644", + "name": "Oraș Seini", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75000000", + "longitude": "23.28333000" + }, + { + "id": "95648", + "name": "Oraș Târgu Lăpuş", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46124000", + "longitude": "23.85353000" + }, + { + "id": "95649", + "name": "Oraș Tăuţii-Măgherăuş", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72129000", + "longitude": "23.48601000" + }, + { + "id": "95755", + "name": "Petrova", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.82981000", + "longitude": "24.21533000" + }, + { + "id": "95895", + "name": "Poienile de sub Munte", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81667000", + "longitude": "24.43333000" + }, + { + "id": "95894", + "name": "Poienile Izei", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "24.11667000" + }, + { + "id": "96070", + "name": "Recea", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "23.51667000" + }, + { + "id": "96085", + "name": "Remeţi", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98333000", + "longitude": "23.63333000" + }, + { + "id": "96083", + "name": "Remetea Chioarului", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "23.55000000" + }, + { + "id": "96087", + "name": "Repedea", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83333000", + "longitude": "24.40000000" + }, + { + "id": "96102", + "name": "Rogoz", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46749000", + "longitude": "23.93214000" + }, + { + "id": "96116", + "name": "Rona de Jos", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91667000", + "longitude": "24.01667000" + }, + { + "id": "96117", + "name": "Rona de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90000000", + "longitude": "24.05000000" + }, + { + "id": "96124", + "name": "Rozavlea", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73333000", + "longitude": "24.21667000" + }, + { + "id": "96160", + "name": "Ruscova", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79289000", + "longitude": "24.28546000" + }, + { + "id": "96244", + "name": "Sarasău", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95510000", + "longitude": "23.82874000" + }, + { + "id": "96251", + "name": "Sat-Șugatag", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79796000", + "longitude": "23.90637000" + }, + { + "id": "96262", + "name": "Satulung", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "23.43333000" + }, + { + "id": "105986", + "name": "Sârbi", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76184000", + "longitude": "23.94490000" + }, + { + "id": "106001", + "name": "Săcălășeni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58180000", + "longitude": "23.56432000" + }, + { + "id": "105990", + "name": "Săcel", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "24.43333000" + }, + { + "id": "106018", + "name": "Săliştea de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "24.35000000" + }, + { + "id": "106021", + "name": "Sălsig", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "23.30000000" + }, + { + "id": "106029", + "name": "Săpânţa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96667000", + "longitude": "23.70000000" + }, + { + "id": "106038", + "name": "Săsar", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.64406000", + "longitude": "23.49869000" + }, + { + "id": "96323", + "name": "Seini", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75000000", + "longitude": "23.28333000" + }, + { + "id": "96336", + "name": "Sighetu Marmaţiei", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93195000", + "longitude": "23.88603000" + }, + { + "id": "96461", + "name": "Strâmtura", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78333000", + "longitude": "24.13333000" + }, + { + "id": "96491", + "name": "Suciu de Jos", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.44584000", + "longitude": "23.98250000" + }, + { + "id": "96492", + "name": "Suciu de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43333000", + "longitude": "24.03333000" + }, + { + "id": "96585", + "name": "Târgu Lăpuş", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45261000", + "longitude": "23.86539000" + }, + { + "id": "96628", + "name": "Tăuții de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65665000", + "longitude": "23.65841000" + }, + { + "id": "96629", + "name": "Tăuții-Măgherăuș", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "23.48333000" + }, + { + "id": "106106", + "name": "Tisa", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.94844000", + "longitude": "23.95768000" + }, + { + "id": "96646", + "name": "Ulmeni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "23.30000000" + }, + { + "id": "96660", + "name": "Ungureni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.54631000", + "longitude": "23.95241000" + }, + { + "id": "96696", + "name": "Vadu Izei", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88821000", + "longitude": "23.93209000" + }, + { + "id": "96714", + "name": "Valea Chioarului", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43333000", + "longitude": "23.48333000" + }, + { + "id": "96764", + "name": "Valea Vișeului", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91203000", + "longitude": "24.15842000" + }, + { + "id": "96959", + "name": "Văleni", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78559000", + "longitude": "24.01625000" + }, + { + "id": "96966", + "name": "Vălenii Șomcutei", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.47291000", + "longitude": "23.45138000" + }, + { + "id": "96847", + "name": "Vişeu de Jos", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72558000", + "longitude": "24.36613000" + }, + { + "id": "96848", + "name": "Vişeu de Sus", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71667000", + "longitude": "24.43333000" + }, + { + "id": "96852", + "name": "Vișeu de Mijloc", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71562000", + "longitude": "24.40661000" + }, + { + "id": "96829", + "name": "Vima Mică", + "state_id": 4760, + "state_code": "MM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40000000", + "longitude": "23.71667000" + }, + { + "id": "97061", + "name": "Şişeşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77750000", + "longitude": "22.83944000" + }, + { + "id": "97051", + "name": "Şimian", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61417000", + "longitude": "22.70722000" + }, + { + "id": "97075", + "name": "Şovarna", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85361000", + "longitude": "22.79250000" + }, + { + "id": "90031", + "name": "Baia de Aramă", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99929000", + "longitude": "22.80784000" + }, + { + "id": "90036", + "name": "Bala", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88389000", + "longitude": "22.83333000" + }, + { + "id": "90046", + "name": "Balta", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88694000", + "longitude": "22.63694000" + }, + { + "id": "90049", + "name": "Balta Verde", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34411000", + "longitude": "22.59878000" + }, + { + "id": "90438", + "name": "Bâcleș", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48333000", + "longitude": "23.13333000" + }, + { + "id": "90444", + "name": "Bâlvăneşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79750000", + "longitude": "22.68028000" + }, + { + "id": "90523", + "name": "Bălăciţa", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "23.13333000" + }, + { + "id": "90149", + "name": "Bistrița", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58511000", + "longitude": "22.78762000" + }, + { + "id": "90272", + "name": "Braniștea", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24201000", + "longitude": "22.97354000" + }, + { + "id": "90299", + "name": "Brezniţa Ocol", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "22.61833000" + }, + { + "id": "90300", + "name": "Brezniţa-Motru", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "23.21667000" + }, + { + "id": "90310", + "name": "Broşteni", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76083000", + "longitude": "22.97944000" + }, + { + "id": "90417", + "name": "Burila Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45278000", + "longitude": "22.57361000" + }, + { + "id": "90428", + "name": "Butoieşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58333000", + "longitude": "23.36667000" + }, + { + "id": "93883", + "name": "Căzăneşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72333000", + "longitude": "22.89056000" + }, + { + "id": "90634", + "name": "Cerneți", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63476000", + "longitude": "22.70931000" + }, + { + "id": "90708", + "name": "Ciochiuța", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60306000", + "longitude": "23.11698000" + }, + { + "id": "90725", + "name": "Cioroboreni", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38877000", + "longitude": "22.76326000" + }, + { + "id": "90732", + "name": "Cireşu", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82333000", + "longitude": "22.53806000" + }, + { + "id": "90808", + "name": "Comanda", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64863000", + "longitude": "23.16413000" + }, + { + "id": "90920", + "name": "Comuna Bala", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89479000", + "longitude": "22.83235000" + }, + { + "id": "90928", + "name": "Comuna Balta", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90652000", + "longitude": "22.61789000" + }, + { + "id": "91181", + "name": "Comuna Bâcleş", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48031000", + "longitude": "23.12207000" + }, + { + "id": "91183", + "name": "Comuna Bâlvăneşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79756000", + "longitude": "22.68313000" + }, + { + "id": "91224", + "name": "Comuna Bălăciţa", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39040000", + "longitude": "23.12095000" + }, + { + "id": "91080", + "name": "Comuna Braniştea", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23768000", + "longitude": "22.96793000" + }, + { + "id": "91097", + "name": "Comuna Brezniţa Ocol", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69266000", + "longitude": "22.60992000" + }, + { + "id": "91098", + "name": "Comuna Brezniţa-Motru", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55668000", + "longitude": "23.24187000" + }, + { + "id": "91103", + "name": "Comuna Broşteni", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74698000", + "longitude": "22.99083000" + }, + { + "id": "91169", + "name": "Comuna Burila Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47835000", + "longitude": "22.54915000" + }, + { + "id": "91176", + "name": "Comuna Butoieşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57037000", + "longitude": "23.37587000" + }, + { + "id": "91597", + "name": "Comuna Căzăneşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70475000", + "longitude": "22.90575000" + }, + { + "id": "91360", + "name": "Comuna Cireşu", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81995000", + "longitude": "22.54058000" + }, + { + "id": "91431", + "name": "Comuna Corcova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67794000", + "longitude": "23.07843000" + }, + { + "id": "91434", + "name": "Comuna Corlăţel", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38101000", + "longitude": "22.92847000" + }, + { + "id": "91522", + "name": "Comuna Cujmir", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19723000", + "longitude": "22.93125000" + }, + { + "id": "91730", + "name": "Comuna Dârvari", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18184000", + "longitude": "23.06648000" + }, + { + "id": "91619", + "name": "Comuna Devesel", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48787000", + "longitude": "22.67669000" + }, + { + "id": "91704", + "name": "Comuna Dubova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57284000", + "longitude": "22.18226000" + }, + { + "id": "91712", + "name": "Comuna Dumbrava", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52117000", + "longitude": "23.13564000" + }, + { + "id": "91752", + "name": "Comuna Eşelniţa", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69905000", + "longitude": "22.36577000" + }, + { + "id": "91772", + "name": "Comuna Floreşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79545000", + "longitude": "22.90986000" + }, + { + "id": "91973", + "name": "Comuna Gârla Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21087000", + "longitude": "22.77696000" + }, + { + "id": "91887", + "name": "Comuna Godeanu", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80808000", + "longitude": "22.60870000" + }, + { + "id": "91892", + "name": "Comuna Gogoşu", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37930000", + "longitude": "22.57357000" + }, + { + "id": "91916", + "name": "Comuna Greci", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57162000", + "longitude": "23.10745000" + }, + { + "id": "91926", + "name": "Comuna Grozeşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63649000", + "longitude": "23.33206000" + }, + { + "id": "91930", + "name": "Comuna Gruia", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28593000", + "longitude": "22.72949000" + }, + { + "id": "92002", + "name": "Comuna Hinova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54565000", + "longitude": "22.77675000" + }, + { + "id": "92031", + "name": "Comuna Husnicioara", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66283000", + "longitude": "22.83939000" + }, + { + "id": "92074", + "name": "Comuna Ilovăt", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81543000", + "longitude": "22.73749000" + }, + { + "id": "92073", + "name": "Comuna Iloviţa", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78026000", + "longitude": "22.49234000" + }, + { + "id": "92095", + "name": "Comuna Isverna", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96572000", + "longitude": "22.67037000" + }, + { + "id": "92111", + "name": "Comuna Izvoru Bârzii", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70830000", + "longitude": "22.67003000" + }, + { + "id": "92118", + "name": "Comuna Jiana", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39156000", + "longitude": "22.71076000" + }, + { + "id": "92179", + "name": "Comuna Livezile", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54482000", + "longitude": "22.86644000" + }, + { + "id": "92234", + "name": "Comuna Malovãţ", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72156000", + "longitude": "22.74546000" + }, + { + "id": "92474", + "name": "Comuna Obârşia De Câmp", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17507000", + "longitude": "22.97076000" + }, + { + "id": "92475", + "name": "Comuna Obârşia-Cloşani", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "22.68333000" + }, + { + "id": "92503", + "name": "Comuna Oprişor", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30105000", + "longitude": "23.08646000" + }, + { + "id": "92529", + "name": "Comuna Padina", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43776000", + "longitude": "23.01426000" + }, + { + "id": "92724", + "name": "Comuna Pătulele", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34984000", + "longitude": "22.80368000" + }, + { + "id": "92612", + "name": "Comuna Podeni", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89218000", + "longitude": "22.55503000" + }, + { + "id": "92650", + "name": "Comuna Ponoarele", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97347000", + "longitude": "22.75676000" + }, + { + "id": "92659", + "name": "Comuna Poroina Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49516000", + "longitude": "22.94161000" + }, + { + "id": "92678", + "name": "Comuna Pristol", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22080000", + "longitude": "22.71200000" + }, + { + "id": "92687", + "name": "Comuna Prunişor", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60030000", + "longitude": "22.90476000" + }, + { + "id": "92697", + "name": "Comuna Punghina", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29534000", + "longitude": "22.96318000" + }, + { + "id": "92779", + "name": "Comuna Rogova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47076000", + "longitude": "22.82951000" + }, + { + "id": "92865", + "name": "Comuna Salcia", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14124000", + "longitude": "22.93048000" + }, + { + "id": "92935", + "name": "Comuna Simian", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62736000", + "longitude": "22.74227000" + }, + { + "id": "92945", + "name": "Comuna Siseşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77146000", + "longitude": "22.83754000" + }, + { + "id": "92978", + "name": "Comuna Sovarna", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84837000", + "longitude": "22.81235000" + }, + { + "id": "93014", + "name": "Comuna Stângăceaua", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60024000", + "longitude": "23.29263000" + }, + { + "id": "93043", + "name": "Comuna Sviniţa", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50013000", + "longitude": "22.10488000" + }, + { + "id": "93223", + "name": "Comuna Tâmna", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56147000", + "longitude": "23.00793000" + }, + { + "id": "93433", + "name": "Comuna Vânători", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24781000", + "longitude": "22.92979000" + }, + { + "id": "93431", + "name": "Comuna Vânjuleţ", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43124000", + "longitude": "22.80212000" + }, + { + "id": "93384", + "name": "Comuna Vlădaia", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36108000", + "longitude": "23.03758000" + }, + { + "id": "93403", + "name": "Comuna Voloiac", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63241000", + "longitude": "23.05948000" + }, + { + "id": "93410", + "name": "Comuna Vrata", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19197000", + "longitude": "22.84928000" + }, + { + "id": "93622", + "name": "Corcova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70000000", + "longitude": "23.05000000" + }, + { + "id": "93628", + "name": "Corlăţel", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39861000", + "longitude": "22.93306000" + }, + { + "id": "93766", + "name": "Cujmir", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20667000", + "longitude": "22.92667000" + }, + { + "id": "94111", + "name": "Dârvari", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20000000", + "longitude": "23.05000000" + }, + { + "id": "94123", + "name": "Dănceu", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36416000", + "longitude": "22.72098000" + }, + { + "id": "93929", + "name": "Devesel", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46889000", + "longitude": "22.66722000" + }, + { + "id": "94032", + "name": "Drobeta-Turnu Severin", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62693000", + "longitude": "22.65288000" + }, + { + "id": "94066", + "name": "Dubova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "22.26667000" + }, + { + "id": "94068", + "name": "Dudașu", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65253000", + "longitude": "22.69683000" + }, + { + "id": "94082", + "name": "Dumbrava de Sus", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51667000", + "longitude": "23.11667000" + }, + { + "id": "94147", + "name": "Eşelniţa", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69917000", + "longitude": "22.36222000" + }, + { + "id": "94184", + "name": "Floreşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76306000", + "longitude": "22.94778000" + }, + { + "id": "94491", + "name": "Gârla-Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20917000", + "longitude": "22.77500000" + }, + { + "id": "94290", + "name": "Gemeni", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17265000", + "longitude": "23.08251000" + }, + { + "id": "94367", + "name": "Godeanu", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80111000", + "longitude": "22.60861000" + }, + { + "id": "94372", + "name": "Gogoşu", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37389000", + "longitude": "22.59306000" + }, + { + "id": "94408", + "name": "Greci", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "23.11667000" + }, + { + "id": "94423", + "name": "Grozeşti", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "23.31667000" + }, + { + "id": "94429", + "name": "Gruia", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26750000", + "longitude": "22.70472000" + }, + { + "id": "94466", + "name": "Gura Văii", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66732000", + "longitude": "22.55646000" + }, + { + "id": "94475", + "name": "Gvardinița", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39505000", + "longitude": "23.14635000" + }, + { + "id": "94520", + "name": "Halânga", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68116000", + "longitude": "22.69037000" + }, + { + "id": "94537", + "name": "Hinova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54056000", + "longitude": "22.77694000" + }, + { + "id": "94585", + "name": "Husnicioara", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67806000", + "longitude": "22.84250000" + }, + { + "id": "94660", + "name": "Ilovăț", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81197000", + "longitude": "22.76333000" + }, + { + "id": "94659", + "name": "Iloviţa", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75639000", + "longitude": "22.47278000" + }, + { + "id": "94693", + "name": "Isverna", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97972000", + "longitude": "22.62917000" + }, + { + "id": "94700", + "name": "Izimșa", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17819000", + "longitude": "22.95649000" + }, + { + "id": "94709", + "name": "Izvoarele", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30958000", + "longitude": "22.66348000" + }, + { + "id": "94717", + "name": "Izvoru Bârzii", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70667000", + "longitude": "22.67417000" + }, + { + "id": "94726", + "name": "Jiana", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40184000", + "longitude": "22.71278000" + }, + { + "id": "94727", + "name": "Jiana Veche", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39083000", + "longitude": "22.66861000" + }, + { + "id": "94732", + "name": "Jidoștița", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71582000", + "longitude": "22.59311000" + }, + { + "id": "94741", + "name": "Jirov", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67098000", + "longitude": "23.08693000" + }, + { + "id": "94822", + "name": "Livezile", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51222000", + "longitude": "22.86333000" + }, + { + "id": "94914", + "name": "Malovăţ", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70444000", + "longitude": "22.73111000" + }, + { + "id": "95138", + "name": "Municipiul Drobeta-Turnu Severin", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64287000", + "longitude": "22.60669000" + }, + { + "id": "95165", + "name": "Municipiul Orşova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72520000", + "longitude": "22.39771000" + }, + { + "id": "95334", + "name": "Nicolae Bălcescu", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37427000", + "longitude": "22.85837000" + }, + { + "id": "95390", + "name": "Obârşia-Cloşani", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "22.68333000" + }, + { + "id": "95391", + "name": "Obârșia de Câmp", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17222000", + "longitude": "22.98000000" + }, + { + "id": "95443", + "name": "Oprişor", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "23.08333000" + }, + { + "id": "95454", + "name": "Oraş Baia De Aramã", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00366000", + "longitude": "22.80709000" + }, + { + "id": "95593", + "name": "Oraş Strehaia", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62360000", + "longitude": "23.18792000" + }, + { + "id": "95621", + "name": "Oraş Vânju Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42326000", + "longitude": "22.87340000" + }, + { + "id": "95669", + "name": "Orşova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72299000", + "longitude": "22.39619000" + }, + { + "id": "95657", + "name": "Orevița Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45715000", + "longitude": "22.91317000" + }, + { + "id": "95680", + "name": "Ostrovu Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37931000", + "longitude": "22.51581000" + }, + { + "id": "95696", + "name": "Padina Mică", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42722000", + "longitude": "22.99250000" + }, + { + "id": "96024", + "name": "Pătulele", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34528000", + "longitude": "22.77278000" + }, + { + "id": "95843", + "name": "Podeni", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88139000", + "longitude": "22.54333000" + }, + { + "id": "95905", + "name": "Ponoarele", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97389000", + "longitude": "22.76444000" + }, + { + "id": "95920", + "name": "Poroina Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49528000", + "longitude": "22.93639000" + }, + { + "id": "95955", + "name": "Pristol", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22472000", + "longitude": "22.70917000" + }, + { + "id": "95968", + "name": "Prunişor", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60944000", + "longitude": "22.91528000" + }, + { + "id": "95982", + "name": "Punghina", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28194000", + "longitude": "22.93472000" + }, + { + "id": "96068", + "name": "Recea", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31949000", + "longitude": "22.91659000" + }, + { + "id": "96137", + "name": "Roșiori", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25633000", + "longitude": "22.92838000" + }, + { + "id": "96101", + "name": "Rogova", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47167000", + "longitude": "22.80667000" + }, + { + "id": "96232", + "name": "Salcia", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14083000", + "longitude": "22.92778000" + }, + { + "id": "96473", + "name": "Stângăceaua", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60896000", + "longitude": "23.31273000" + }, + { + "id": "96449", + "name": "Strehaia", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "23.20000000" + }, + { + "id": "96515", + "name": "Sviniţa", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49972000", + "longitude": "22.10611000" + }, + { + "id": "96577", + "name": "Tâmna", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "23.01667000" + }, + { + "id": "96928", + "name": "Vânători", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24278000", + "longitude": "22.92889000" + }, + { + "id": "96926", + "name": "Vânju-Mare", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42528000", + "longitude": "22.86972000" + }, + { + "id": "96927", + "name": "Vânjuleţ", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44111000", + "longitude": "22.79250000" + }, + { + "id": "96859", + "name": "Vlădaia", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "23.03333000" + }, + { + "id": "96887", + "name": "Voloiac", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "23.10000000" + }, + { + "id": "96897", + "name": "Vrata", + "state_id": 4751, + "state_code": "MH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19197000", + "longitude": "22.84928000" + }, + { + "id": "89882", + "name": "Adjudeni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01408000", + "longitude": "26.94903000" + }, + { + "id": "89892", + "name": "Agapia", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "26.28333000" + }, + { + "id": "97080", + "name": "Ştefan cel Mare", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98482000", + "longitude": "26.51070000" + }, + { + "id": "97102", + "name": "Ţibucani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10000000", + "longitude": "26.53333000" + }, + { + "id": "90026", + "name": "Bahna", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "26.78333000" + }, + { + "id": "90062", + "name": "Barticești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06324000", + "longitude": "26.79254000" + }, + { + "id": "90445", + "name": "Bâra", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "27.05000000" + }, + { + "id": "90448", + "name": "Bârgăuani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "26.63333000" + }, + { + "id": "90527", + "name": "Bălţăteşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "26.30000000" + }, + { + "id": "90518", + "name": "Bălușești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81591000", + "longitude": "26.99885000" + }, + { + "id": "90543", + "name": "Bărcăneşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71667000", + "longitude": "26.58333000" + }, + { + "id": "90126", + "name": "Bicaz", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "26.06667000" + }, + { + "id": "90127", + "name": "Bicaz-Chei", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "25.88333000" + }, + { + "id": "90128", + "name": "Bicazu Ardelean", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "25.93333000" + }, + { + "id": "90151", + "name": "Bistrița", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94856000", + "longitude": "26.29598000" + }, + { + "id": "90170", + "name": "Boboiești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25370000", + "longitude": "26.03749000" + }, + { + "id": "90180", + "name": "Bodeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "26.41667000" + }, + { + "id": "90182", + "name": "Bodeștii de Jos", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02752000", + "longitude": "26.44483000" + }, + { + "id": "90198", + "name": "Boghicea", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05414000", + "longitude": "27.06935000" + }, + { + "id": "90220", + "name": "Borca", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18333000", + "longitude": "25.76667000" + }, + { + "id": "90228", + "name": "Borleşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "26.48333000" + }, + { + "id": "90243", + "name": "Botești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05200000", + "longitude": "26.74863000" + }, + { + "id": "90252", + "name": "Bozieni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "27.15000000" + }, + { + "id": "90315", + "name": "Brusturi", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "26.38333000" + }, + { + "id": "90384", + "name": "Budești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94084000", + "longitude": "26.71177000" + }, + { + "id": "90422", + "name": "Buruienești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99595000", + "longitude": "26.97732000" + }, + { + "id": "93807", + "name": "Cândeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71667000", + "longitude": "26.58333000" + }, + { + "id": "90599", + "name": "Ceahlău", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05000000", + "longitude": "25.96667000" + }, + { + "id": "90667", + "name": "Chilii", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80254000", + "longitude": "27.03394000" + }, + { + "id": "90670", + "name": "Chintinici", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82754000", + "longitude": "26.49339000" + }, + { + "id": "90829", + "name": "Comuna Agapia", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16196000", + "longitude": "26.29545000" + }, + { + "id": "90847", + "name": "Comuna Alexandru Cel Bun", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93988000", + "longitude": "26.26849000" + }, + { + "id": "93551", + "name": "Comuna Ştefan cel Mare", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98599000", + "longitude": "26.51293000" + }, + { + "id": "93571", + "name": "Comuna Ţibucani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11856000", + "longitude": "26.57350000" + }, + { + "id": "90915", + "name": "Comuna Bahna", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.77860000", + "longitude": "26.79742000" + }, + { + "id": "91184", + "name": "Comuna Bâra", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01319000", + "longitude": "27.04016000" + }, + { + "id": "91187", + "name": "Comuna Bârgãuani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.97877000", + "longitude": "26.64589000" + }, + { + "id": "91229", + "name": "Comuna Bălţăteşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13076000", + "longitude": "26.30187000" + }, + { + "id": "90983", + "name": "Comuna Bicaz Chei", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83435000", + "longitude": "25.87234000" + }, + { + "id": "90984", + "name": "Comuna Bicazu Ardelean", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86884000", + "longitude": "25.92570000" + }, + { + "id": "91018", + "name": "Comuna Bodeşti-Precista", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03819000", + "longitude": "26.43790000" + }, + { + "id": "91031", + "name": "Comuna Boghicea", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06025000", + "longitude": "27.11082000" + }, + { + "id": "91045", + "name": "Comuna Borca", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19099000", + "longitude": "25.78140000" + }, + { + "id": "91050", + "name": "Comuna Borleşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78934000", + "longitude": "26.49080000" + }, + { + "id": "91060", + "name": "Comuna Boteşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06415000", + "longitude": "26.75969000" + }, + { + "id": "91066", + "name": "Comuna Bozieni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84446000", + "longitude": "27.15282000" + }, + { + "id": "91107", + "name": "Comuna Brusturi-Drăgăneşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29579000", + "longitude": "26.35443000" + }, + { + "id": "91546", + "name": "Comuna Cândeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71667000", + "longitude": "26.58333000" + }, + { + "id": "91271", + "name": "Comuna Ceahlău", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04488000", + "longitude": "25.95955000" + }, + { + "id": "91432", + "name": "Comuna Cordun", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.97290000", + "longitude": "26.86265000" + }, + { + "id": "91460", + "name": "Comuna Costişa", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75818000", + "longitude": "26.64623000" + }, + { + "id": "91517", + "name": "Comuna Crăcăoani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09597000", + "longitude": "26.25865000" + }, + { + "id": "91735", + "name": "Comuna Dămuc", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75621000", + "longitude": "25.89219000" + }, + { + "id": "91634", + "name": "Comuna Dobreni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99482000", + "longitude": "26.40941000" + }, + { + "id": "91648", + "name": "Comuna Dochia", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91740000", + "longitude": "26.58485000" + }, + { + "id": "91656", + "name": "Comuna Doljeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02806000", + "longitude": "26.97557000" + }, + { + "id": "91674", + "name": "Comuna Dragomireşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02798000", + "longitude": "26.57536000" + }, + { + "id": "91701", + "name": "Comuna Drăgăneşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31204000", + "longitude": "26.41550000" + }, + { + "id": "91709", + "name": "Comuna Dulceşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98346000", + "longitude": "26.78062000" + }, + { + "id": "91713", + "name": "Comuna Dumbrava Roşie", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88535000", + "longitude": "26.44117000" + }, + { + "id": "91817", + "name": "Comuna Fãurei", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91528000", + "longitude": "26.71834000" + }, + { + "id": "91823", + "name": "Comuna Fărcaşa", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15272000", + "longitude": "25.84880000" + }, + { + "id": "91961", + "name": "Comuna Gâdinţi", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93708000", + "longitude": "27.00588000" + }, + { + "id": "91969", + "name": "Comuna Gârcina", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99222000", + "longitude": "26.32820000" + }, + { + "id": "91848", + "name": "Comuna Gherăeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03620000", + "longitude": "26.82009000" + }, + { + "id": "91859", + "name": "Comuna Ghindăoani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10983000", + "longitude": "26.33909000" + }, + { + "id": "91872", + "name": "Comuna Girov", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94918000", + "longitude": "26.48244000" + }, + { + "id": "91919", + "name": "Comuna Grinţieş", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02472000", + "longitude": "25.87636000" + }, + { + "id": "91932", + "name": "Comuna Grumăzeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.14727000", + "longitude": "26.38641000" + }, + { + "id": "91992", + "name": "Comuna Hangu", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03525000", + "longitude": "26.06400000" + }, + { + "id": "92019", + "name": "Comuna Horia", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90639000", + "longitude": "26.93891000" + }, + { + "id": "92061", + "name": "Comuna Icuseşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79894000", + "longitude": "26.99076000" + }, + { + "id": "92082", + "name": "Comuna Ion Creangă", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86069000", + "longitude": "27.00358000" + }, + { + "id": "92407", + "name": "Comuna Mărgineni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.89237000", + "longitude": "26.65742000" + }, + { + "id": "92327", + "name": "Comuna Moldoveni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82131000", + "longitude": "26.78791000" + }, + { + "id": "92432", + "name": "Comuna Negreşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.04779000", + "longitude": "26.35005000" + }, + { + "id": "92501", + "name": "Comuna Oniceni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78926000", + "longitude": "27.16336000" + }, + { + "id": "92703", + "name": "Comuna Pânceşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90170000", + "longitude": "27.16879000" + }, + { + "id": "92704", + "name": "Comuna Pângăraţi", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "26.15000000" + }, + { + "id": "92722", + "name": "Comuna Păstrăveni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15940000", + "longitude": "26.57615000" + }, + { + "id": "92565", + "name": "Comuna Petricani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15304000", + "longitude": "26.44114000" + }, + { + "id": "92574", + "name": "Comuna Piatra Şoimului", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82443000", + "longitude": "26.41848000" + }, + { + "id": "92585", + "name": "Comuna Pipirig", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22800000", + "longitude": "26.08483000" + }, + { + "id": "92615", + "name": "Comuna Podoleni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81772000", + "longitude": "26.63280000" + }, + { + "id": "92633", + "name": "Comuna Poiana Teiului", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11403000", + "longitude": "25.92517000" + }, + { + "id": "92635", + "name": "Comuna Poienari", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88625000", + "longitude": "27.11966000" + }, + { + "id": "92832", + "name": "Comuna Rãzboieni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07424000", + "longitude": "26.56150000" + }, + { + "id": "92852", + "name": "Comuna Răuceşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26151000", + "longitude": "26.41170000" + }, + { + "id": "92759", + "name": "Comuna Rediu", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75000000", + "longitude": "26.56667000" + }, + { + "id": "92788", + "name": "Comuna Români", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80242000", + "longitude": "26.69945000" + }, + { + "id": "92809", + "name": "Comuna Ruginoasa", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.97447000", + "longitude": "26.70674000" + }, + { + "id": "92862", + "name": "Comuna Sagna", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96806000", + "longitude": "27.01670000" + }, + { + "id": "93078", + "name": "Comuna Săbăoani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00187000", + "longitude": "26.88525000" + }, + { + "id": "93117", + "name": "Comuna Săvineşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86469000", + "longitude": "26.48400000" + }, + { + "id": "92914", + "name": "Comuna Secuieni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86853000", + "longitude": "26.81062000" + }, + { + "id": "93021", + "name": "Comuna Stăniţa", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01216000", + "longitude": "27.13704000" + }, + { + "id": "93130", + "name": "Comuna Taşca", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88991000", + "longitude": "26.01069000" + }, + { + "id": "93126", + "name": "Comuna Tarcău", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82269000", + "longitude": "26.16264000" + }, + { + "id": "93129", + "name": "Comuna Tazlău", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72098000", + "longitude": "26.47003000" + }, + { + "id": "93237", + "name": "Comuna Tămăşeni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00327000", + "longitude": "26.95087000" + }, + { + "id": "93155", + "name": "Comuna Timişeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22939000", + "longitude": "26.51982000" + }, + { + "id": "93192", + "name": "Comuna Trifeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90906000", + "longitude": "26.83311000" + }, + { + "id": "93208", + "name": "Comuna Tupilaţi", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08147000", + "longitude": "26.64158000" + }, + { + "id": "93280", + "name": "Comuna Urecheni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.17764000", + "longitude": "26.53424000" + }, + { + "id": "93327", + "name": "Comuna Valea Ursului", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79452000", + "longitude": "27.08166000" + }, + { + "id": "93436", + "name": "Comuna Vânători Neamţ", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23534000", + "longitude": "26.27700000" + }, + { + "id": "93458", + "name": "Comuna Văleni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02964000", + "longitude": "26.71532000" + }, + { + "id": "93486", + "name": "Comuna Zăneşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82573000", + "longitude": "26.56213000" + }, + { + "id": "93623", + "name": "Cordun", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "26.86667000" + }, + { + "id": "93668", + "name": "Costişa", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75000000", + "longitude": "26.65000000" + }, + { + "id": "93677", + "name": "Cotu Vameș", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90600000", + "longitude": "26.95535000" + }, + { + "id": "93702", + "name": "Cracăul Negru", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09363000", + "longitude": "26.24061000" + }, + { + "id": "93753", + "name": "Crăcăoani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09836000", + "longitude": "26.31111000" + }, + { + "id": "93764", + "name": "Cuejdiu", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99040000", + "longitude": "26.29455000" + }, + { + "id": "93781", + "name": "Cut", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88258000", + "longitude": "26.41928000" + }, + { + "id": "94121", + "name": "Dămuc", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80000000", + "longitude": "25.90000000" + }, + { + "id": "93951", + "name": "Dobreni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "26.41667000" + }, + { + "id": "93974", + "name": "Dochia", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90731000", + "longitude": "26.56763000" + }, + { + "id": "93976", + "name": "Dodeni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92587000", + "longitude": "26.09277000" + }, + { + "id": "93984", + "name": "Dolhești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21189000", + "longitude": "26.06738000" + }, + { + "id": "93987", + "name": "Doljeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "26.98333000" + }, + { + "id": "94015", + "name": "Dragomireşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "26.53333000" + }, + { + "id": "94063", + "name": "Drăgănești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30886000", + "longitude": "26.40551000" + }, + { + "id": "94073", + "name": "Dulceşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96667000", + "longitude": "26.76667000" + }, + { + "id": "94080", + "name": "Dumbrava", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21620000", + "longitude": "26.46309000" + }, + { + "id": "94081", + "name": "Dumbrava Roşie", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88333000", + "longitude": "26.43333000" + }, + { + "id": "97141", + "name": "Țolici", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11840000", + "longitude": "26.44841000" + }, + { + "id": "94260", + "name": "Fărcaşa", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "25.83333000" + }, + { + "id": "94270", + "name": "Făurei", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "26.68333000" + }, + { + "id": "94173", + "name": "Filioara", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16040000", + "longitude": "26.27920000" + }, + { + "id": "94476", + "name": "Gâdinţi", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "27.01667000" + }, + { + "id": "94487", + "name": "Gârcina", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.97691000", + "longitude": "26.34573000" + }, + { + "id": "94312", + "name": "Gherăeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "26.81667000" + }, + { + "id": "94328", + "name": "Ghindăoani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10983000", + "longitude": "26.33909000" + }, + { + "id": "94348", + "name": "Girov", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "26.51667000" + }, + { + "id": "94397", + "name": "Goșmani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83620000", + "longitude": "26.71522000" + }, + { + "id": "94414", + "name": "Grinţieş", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05000000", + "longitude": "25.86667000" + }, + { + "id": "94431", + "name": "Grumăzeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13333000", + "longitude": "26.36667000" + }, + { + "id": "94522", + "name": "Hangu", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.05000000", + "longitude": "26.03333000" + }, + { + "id": "94539", + "name": "Hlăpești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03817000", + "longitude": "26.59842000" + }, + { + "id": "94541", + "name": "Hociungi", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81311000", + "longitude": "26.77596000" + }, + { + "id": "94563", + "name": "Horia", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90698000", + "longitude": "26.91919000" + }, + { + "id": "94577", + "name": "Humulești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19846000", + "longitude": "26.35273000" + }, + { + "id": "94637", + "name": "Icuseşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80000000", + "longitude": "26.93333000" + }, + { + "id": "94674", + "name": "Ion Creangă", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.87029000", + "longitude": "26.98023000" + }, + { + "id": "94703", + "name": "Izvoare", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.74699000", + "longitude": "26.80221000" + }, + { + "id": "94850", + "name": "Luminiș", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81332000", + "longitude": "26.45275000" + }, + { + "id": "94855", + "name": "Lunca", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22765000", + "longitude": "26.29979000" + }, + { + "id": "94933", + "name": "Mastacăn", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78918000", + "longitude": "26.48677000" + }, + { + "id": "95268", + "name": "Mărgineni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90000000", + "longitude": "26.63333000" + }, + { + "id": "95018", + "name": "Miron Costin", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92030000", + "longitude": "26.80567000" + }, + { + "id": "95066", + "name": "Moldoveni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "26.76667000" + }, + { + "id": "95168", + "name": "Municipiul Piatra-Neamţ", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92336000", + "longitude": "26.37380000" + }, + { + "id": "95172", + "name": "Municipiul Roman", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92973000", + "longitude": "26.93678000" + }, + { + "id": "95318", + "name": "Negrești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02938000", + "longitude": "26.37958000" + }, + { + "id": "95326", + "name": "Nemțișor", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23962000", + "longitude": "26.27209000" + }, + { + "id": "95349", + "name": "Nisiporești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07720000", + "longitude": "26.73791000" + }, + { + "id": "95380", + "name": "Oanțu", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90970000", + "longitude": "26.19887000" + }, + { + "id": "95413", + "name": "Oglinzi", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25055000", + "longitude": "26.35026000" + }, + { + "id": "95441", + "name": "Oniceni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "27.15000000" + }, + { + "id": "95463", + "name": "Oraş Bicaz", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94890000", + "longitude": "26.07982000" + }, + { + "id": "95579", + "name": "Oraş Roznov", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83850000", + "longitude": "26.51277000" + }, + { + "id": "95608", + "name": "Oraş Târgu Neamţ", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19698000", + "longitude": "26.36414000" + }, + { + "id": "95993", + "name": "Pânceşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90296000", + "longitude": "27.15314000" + }, + { + "id": "95995", + "name": "Pângăraţi", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "26.15000000" + }, + { + "id": "95996", + "name": "Pângărăcior", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "26.21667000" + }, + { + "id": "96022", + "name": "Păstrăveni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "26.56667000" + }, + { + "id": "95751", + "name": "Petricani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "26.46667000" + }, + { + "id": "95773", + "name": "Piatra Şoimului", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "26.43333000" + }, + { + "id": "95771", + "name": "Piatra Neamţ", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "26.33333000" + }, + { + "id": "95792", + "name": "Pildești", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.99675000", + "longitude": "26.82558000" + }, + { + "id": "95794", + "name": "Pipirig", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25000000", + "longitude": "26.06667000" + }, + { + "id": "95848", + "name": "Podoleni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80000000", + "longitude": "26.61667000" + }, + { + "id": "95872", + "name": "Poiana Crăcăoani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "26.31667000" + }, + { + "id": "95882", + "name": "Poiana Teiului", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10000000", + "longitude": "25.96667000" + }, + { + "id": "95885", + "name": "Poienari", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88777000", + "longitude": "27.12765000" + }, + { + "id": "95890", + "name": "Poieni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "26.35000000" + }, + { + "id": "95900", + "name": "Poloboc", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76109000", + "longitude": "26.54975000" + }, + { + "id": "96193", + "name": "Rădeni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.14260000", + "longitude": "26.53703000" + }, + { + "id": "96211", + "name": "Răuceşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25000000", + "longitude": "26.41667000" + }, + { + "id": "96215", + "name": "Războienii de Jos", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06887000", + "longitude": "26.56374000" + }, + { + "id": "96076", + "name": "Rediu", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75598000", + "longitude": "26.56254000" + }, + { + "id": "96105", + "name": "Roman", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.92119000", + "longitude": "26.92646000" + }, + { + "id": "96115", + "name": "Români", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78333000", + "longitude": "26.68333000" + }, + { + "id": "96120", + "name": "Rotunda", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.02210000", + "longitude": "26.96266000" + }, + { + "id": "96125", + "name": "Roznov", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "26.51667000" + }, + { + "id": "96149", + "name": "Ruginoasa", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98622000", + "longitude": "26.70635000" + }, + { + "id": "96161", + "name": "Ruseni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79841000", + "longitude": "26.53943000" + }, + { + "id": "96219", + "name": "Sabasa", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20174000", + "longitude": "25.81760000" + }, + { + "id": "96228", + "name": "Sagna", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "27.01667000" + }, + { + "id": "105988", + "name": "Săbăoani", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "26.85000000" + }, + { + "id": "106047", + "name": "Săvineşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "26.46667000" + }, + { + "id": "96315", + "name": "Secuieni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "26.83333000" + }, + { + "id": "96343", + "name": "Siliștea", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.77781000", + "longitude": "26.69303000" + }, + { + "id": "96368", + "name": "Slobozia", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84892000", + "longitude": "26.53344000" + }, + { + "id": "96471", + "name": "Stânca", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23069000", + "longitude": "26.13139000" + }, + { + "id": "96482", + "name": "Stăniţa", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "27.10000000" + }, + { + "id": "96427", + "name": "Stejaru", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91888000", + "longitude": "26.18023000" + }, + { + "id": "106065", + "name": "Taşca", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90000000", + "longitude": "26.01667000" + }, + { + "id": "106060", + "name": "Tarcău", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86667000", + "longitude": "26.13333000" + }, + { + "id": "106064", + "name": "Tazlău", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71667000", + "longitude": "26.46667000" + }, + { + "id": "96586", + "name": "Târgu Neamţ", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "26.36667000" + }, + { + "id": "96607", + "name": "Tămăşeni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98333000", + "longitude": "26.93333000" + }, + { + "id": "106077", + "name": "Telec", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.87979000", + "longitude": "25.87775000" + }, + { + "id": "106101", + "name": "Timişeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "26.55000000" + }, + { + "id": "106134", + "name": "Topolița", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16787000", + "longitude": "26.38345000" + }, + { + "id": "106146", + "name": "Traian", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83335000", + "longitude": "26.57655000" + }, + { + "id": "106155", + "name": "Trifeşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "26.81667000" + }, + { + "id": "96550", + "name": "Tupilaţi", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "26.63333000" + }, + { + "id": "96674", + "name": "Urecheni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "26.51667000" + }, + { + "id": "96709", + "name": "Valea Arini", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12694000", + "longitude": "26.29377000" + }, + { + "id": "96755", + "name": "Valea Seacă", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13944000", + "longitude": "26.29956000" + }, + { + "id": "96761", + "name": "Valea Ursului", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "27.08333000" + }, + { + "id": "96933", + "name": "Vânători-Neamţ", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "26.31667000" + }, + { + "id": "96955", + "name": "Vădurele", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72958000", + "longitude": "26.57173000" + }, + { + "id": "96960", + "name": "Văleni", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.90291000", + "longitude": "26.38945000" + }, + { + "id": "96818", + "name": "Viişoara", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "26.23333000" + }, + { + "id": "97011", + "name": "Zăneşti", + "state_id": 4731, + "state_code": "NT", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "26.55000000" + }, + { + "id": "89933", + "name": "Alimănești", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25693000", + "longitude": "24.53895000" + }, + { + "id": "89942", + "name": "Alunișu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "24.55000000" + }, + { + "id": "97039", + "name": "Şerbăneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33333000", + "longitude": "24.70000000" + }, + { + "id": "97072", + "name": "Şopârliţa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "24.28333000" + }, + { + "id": "97079", + "name": "Ştefan cel Mare", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81124000", + "longitude": "24.22039000" + }, + { + "id": "90021", + "name": "Bacea", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39824000", + "longitude": "24.63759000" + }, + { + "id": "90050", + "name": "Balş", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "24.10000000" + }, + { + "id": "90041", + "name": "Baldovineşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "24.05000000" + }, + { + "id": "90065", + "name": "Barza", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33333000", + "longitude": "24.78333000" + }, + { + "id": "90459", + "name": "Bârza", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.32811000", + "longitude": "24.14188000" + }, + { + "id": "90472", + "name": "Băbiciu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03333000", + "longitude": "24.56667000" + }, + { + "id": "90524", + "name": "Bălănești", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24970000", + "longitude": "24.48216000" + }, + { + "id": "90515", + "name": "Bălteni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44883000", + "longitude": "24.53247000" + }, + { + "id": "90549", + "name": "Bărăștii de Vede", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71601000", + "longitude": "24.65919000" + }, + { + "id": "90140", + "name": "Bircii", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51673000", + "longitude": "24.60324000" + }, + { + "id": "90168", + "name": "Bobiceşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "24.15000000" + }, + { + "id": "90267", + "name": "Braneț", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.32576000", + "longitude": "24.17792000" + }, + { + "id": "90273", + "name": "Brastavățu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90634000", + "longitude": "24.40784000" + }, + { + "id": "90320", + "name": "Brâncoveni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31667000", + "longitude": "24.30000000" + }, + { + "id": "90291", + "name": "Brebeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36667000", + "longitude": "24.45000000" + }, + { + "id": "90349", + "name": "Bucinişu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95000000", + "longitude": "24.25000000" + }, + { + "id": "90437", + "name": "Bușca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11166000", + "longitude": "24.80238000" + }, + { + "id": "90572", + "name": "Caracal", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "24.35000000" + }, + { + "id": "90590", + "name": "Catanele", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38199000", + "longitude": "24.56145000" + }, + { + "id": "93816", + "name": "Cârlogani", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51667000", + "longitude": "24.15000000" + }, + { + "id": "93841", + "name": "Călinești", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.07727000", + "longitude": "24.68796000" + }, + { + "id": "93847", + "name": "Călui", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45297000", + "longitude": "24.06360000" + }, + { + "id": "90616", + "name": "Cepari", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49733000", + "longitude": "24.17122000" + }, + { + "id": "90651", + "name": "Cezieni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "24.26667000" + }, + { + "id": "90702", + "name": "Cilieni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "24.61667000" + }, + { + "id": "90798", + "name": "Coloneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "24.66667000" + }, + { + "id": "90807", + "name": "Comanca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.07790000", + "longitude": "24.35863000" + }, + { + "id": "90810", + "name": "Comani", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18286000", + "longitude": "24.49160000" + }, + { + "id": "93509", + "name": "Comuna Şerbăneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33607000", + "longitude": "24.68782000" + }, + { + "id": "93542", + "name": "Comuna Şopârliţa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.27705000", + "longitude": "24.27743000" + }, + { + "id": "93549", + "name": "Comuna Ştefan cel Mare", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81174000", + "longitude": "24.22262000" + }, + { + "id": "90925", + "name": "Comuna Baldovineşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39195000", + "longitude": "24.03898000" + }, + { + "id": "91196", + "name": "Comuna Bârza", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.32693000", + "longitude": "24.15990000" + }, + { + "id": "91198", + "name": "Comuna Bãrãşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70852000", + "longitude": "24.64470000" + }, + { + "id": "91201", + "name": "Comuna Băbiciu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03230000", + "longitude": "24.56533000" + }, + { + "id": "91218", + "name": "Comuna Bălteni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44883000", + "longitude": "24.53247000" + }, + { + "id": "91011", + "name": "Comuna Bobiceşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39321000", + "longitude": "24.14215000" + }, + { + "id": "91081", + "name": "Comuna Brastavăţu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91553000", + "longitude": "24.41135000" + }, + { + "id": "91110", + "name": "Comuna Brâncoveni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31488000", + "longitude": "24.32941000" + }, + { + "id": "91091", + "name": "Comuna Brebeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35956000", + "longitude": "24.44360000" + }, + { + "id": "91128", + "name": "Comuna Bucinişu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94202000", + "longitude": "24.25463000" + }, + { + "id": "91553", + "name": "Comuna Cârlogani", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51990000", + "longitude": "24.16007000" + }, + { + "id": "91562", + "name": "Comuna Cãlui", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45600000", + "longitude": "24.04953000" + }, + { + "id": "91307", + "name": "Comuna Cezieni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18245000", + "longitude": "24.26846000" + }, + { + "id": "91337", + "name": "Comuna Cilieni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90206000", + "longitude": "24.61470000" + }, + { + "id": "91399", + "name": "Comuna Coloneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62345000", + "longitude": "24.67666000" + }, + { + "id": "91428", + "name": "Comuna Corbu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45514000", + "longitude": "24.71639000" + }, + { + "id": "91463", + "name": "Comuna Coteana", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30133000", + "longitude": "24.46638000" + }, + { + "id": "91512", + "name": "Comuna Crâmpoia", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30513000", + "longitude": "24.72742000" + }, + { + "id": "91525", + "name": "Comuna Cungrea", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68497000", + "longitude": "24.39274000" + }, + { + "id": "91530", + "name": "Comuna Curtişoara", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48175000", + "longitude": "24.34214000" + }, + { + "id": "91737", + "name": "Comuna Dăneasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11390000", + "longitude": "24.56597000" + }, + { + "id": "91620", + "name": "Comuna Deveselu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06569000", + "longitude": "24.37351000" + }, + { + "id": "91638", + "name": "Comuna Dobreţu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49164000", + "longitude": "23.95302000" + }, + { + "id": "91640", + "name": "Comuna Dobrosloveni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17356000", + "longitude": "24.36558000" + }, + { + "id": "91641", + "name": "Comuna Dobroteasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77107000", + "longitude": "24.32810000" + }, + { + "id": "91645", + "name": "Comuna Dobrun", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25323000", + "longitude": "24.23299000" + }, + { + "id": "91688", + "name": "Comuna Drăghiceni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12694000", + "longitude": "24.25611000" + }, + { + "id": "91819", + "name": "Comuna Făgeţelu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78429000", + "longitude": "24.54421000" + }, + { + "id": "91821", + "name": "Comuna Fălcoiu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23774000", + "longitude": "24.37601000" + }, + { + "id": "91824", + "name": "Comuna Fărcaşele", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15057000", + "longitude": "24.43283000" + }, + { + "id": "91970", + "name": "Comuna Gârcov", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.77342000", + "longitude": "24.62709000" + }, + { + "id": "91986", + "name": "Comuna Găneasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42129000", + "longitude": "24.26774000" + }, + { + "id": "91988", + "name": "Comuna Găvăneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41403000", + "longitude": "24.00867000" + }, + { + "id": "91857", + "name": "Comuna Ghimpeţeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29002000", + "longitude": "24.78303000" + }, + { + "id": "91878", + "name": "Comuna Giuvărăşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.79412000", + "longitude": "24.68729000" + }, + { + "id": "91906", + "name": "Comuna Gostavăţu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08028000", + "longitude": "24.53283000" + }, + { + "id": "91933", + "name": "Comuna Grãdinari", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56736000", + "longitude": "24.27761000" + }, + { + "id": "91934", + "name": "Comuna Grãdinile", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94973000", + "longitude": "24.39228000" + }, + { + "id": "91923", + "name": "Comuna Grojdibodu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75562000", + "longitude": "24.26073000" + }, + { + "id": "91950", + "name": "Comuna Gura Padinii", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.76276000", + "longitude": "24.31690000" + }, + { + "id": "92053", + "name": "Comuna Ianca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.77472000", + "longitude": "24.19165000" + }, + { + "id": "92054", + "name": "Comuna Iancu Jianu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51807000", + "longitude": "24.01257000" + }, + { + "id": "92060", + "name": "Comuna Icoana", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40682000", + "longitude": "24.72551000" + }, + { + "id": "92090", + "name": "Comuna Ipotesti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.32529000", + "longitude": "24.40089000" + }, + { + "id": "92101", + "name": "Comuna Izbiceni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.82418000", + "longitude": "24.66415000" + }, + { + "id": "92104", + "name": "Comuna Izvoarele", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25958000", + "longitude": "24.53144000" + }, + { + "id": "92145", + "name": "Comuna Leleasca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75768000", + "longitude": "24.43708000" + }, + { + "id": "92415", + "name": "Comuna Mărunţei", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23679000", + "longitude": "24.46583000" + }, + { + "id": "92279", + "name": "Comuna Mihăeşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11870000", + "longitude": "24.79663000" + }, + { + "id": "92289", + "name": "Comuna Milcov", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37396000", + "longitude": "24.38004000" + }, + { + "id": "92334", + "name": "Comuna Morunglav", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47266000", + "longitude": "24.11686000" + }, + { + "id": "92342", + "name": "Comuna Movileni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38368000", + "longitude": "24.64075000" + }, + { + "id": "92443", + "name": "Comuna Nicolae Titulescu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.27008000", + "longitude": "24.75897000" + }, + { + "id": "92473", + "name": "Comuna Obârşia", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.89063000", + "longitude": "24.32188000" + }, + { + "id": "92470", + "name": "Comuna Oboga", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.42448000", + "longitude": "24.08724000" + }, + { + "id": "92502", + "name": "Comuna Oporelu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58682000", + "longitude": "24.42410000" + }, + { + "id": "92504", + "name": "Comuna Optaşi-Mãgura", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57944000", + "longitude": "24.65183000" + }, + { + "id": "92509", + "name": "Comuna Orlea", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75430000", + "longitude": "24.36775000" + }, + { + "id": "92515", + "name": "Comuna Osica de Jos", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23800000", + "longitude": "24.29502000" + }, + { + "id": "92516", + "name": "Comuna Osica de Sus", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.27268000", + "longitude": "24.33730000" + }, + { + "id": "92709", + "name": "Comuna Pârşcoveni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.29678000", + "longitude": "24.21836000" + }, + { + "id": "92552", + "name": "Comuna Perieţi", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40468000", + "longitude": "24.55611000" + }, + { + "id": "92595", + "name": "Comuna Pleşoiu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48165000", + "longitude": "24.24212000" + }, + { + "id": "92608", + "name": "Comuna Poboru", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68335000", + "longitude": "24.48678000" + }, + { + "id": "92677", + "name": "Comuna Priseaca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51206000", + "longitude": "24.43787000" + }, + { + "id": "92742", + "name": "Comuna Radomireşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11049000", + "longitude": "24.67816000" + }, + { + "id": "92758", + "name": "Comuna Redea", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04157000", + "longitude": "24.30677000" + }, + { + "id": "92792", + "name": "Comuna Rotunda", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98427000", + "longitude": "24.31402000" + }, + { + "id": "92816", + "name": "Comuna Rusăneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94385000", + "longitude": "24.59498000" + }, + { + "id": "93045", + "name": "Comuna Sâmbureşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81131000", + "longitude": "24.39922000" + }, + { + "id": "93073", + "name": "Comuna Sârbii-Măgura", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52730000", + "longitude": "24.69585000" + }, + { + "id": "92906", + "name": "Comuna Scărişoara", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98528000", + "longitude": "24.58333000" + }, + { + "id": "92887", + "name": "Comuna Schitu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35679000", + "longitude": "24.55926000" + }, + { + "id": "92907", + "name": "Comuna Seaca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15159000", + "longitude": "24.76149000" + }, + { + "id": "92961", + "name": "Comuna Slătioara", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41545000", + "longitude": "24.32082000" + }, + { + "id": "92982", + "name": "Comuna Spineni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71808000", + "longitude": "24.55897000" + }, + { + "id": "92984", + "name": "Comuna Sprâncenata", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06110000", + "longitude": "24.63984000" + }, + { + "id": "92991", + "name": "Comuna Stoeneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11675000", + "longitude": "24.49720000" + }, + { + "id": "92995", + "name": "Comuna Stoicăneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18568000", + "longitude": "24.64267000" + }, + { + "id": "93002", + "name": "Comuna Strejeşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52733000", + "longitude": "24.27036000" + }, + { + "id": "93010", + "name": "Comuna Studina", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96784000", + "longitude": "24.42136000" + }, + { + "id": "93243", + "name": "Comuna Tătuleşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66386000", + "longitude": "24.61405000" + }, + { + "id": "93144", + "name": "Comuna Teslui", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51316000", + "longitude": "24.35600000" + }, + { + "id": "93147", + "name": "Comuna Tia Mare", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86417000", + "longitude": "24.63883000" + }, + { + "id": "93174", + "name": "Comuna Topana", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84319000", + "longitude": "24.52827000" + }, + { + "id": "93186", + "name": "Comuna Traian", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.02337000", + "longitude": "24.45586000" + }, + { + "id": "93201", + "name": "Comuna Tufeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34718000", + "longitude": "24.78986000" + }, + { + "id": "93285", + "name": "Comuna Urzica", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86055000", + "longitude": "24.27497000" + }, + { + "id": "93312", + "name": "Comuna Valea Mare", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44188000", + "longitude": "24.46120000" + }, + { + "id": "93427", + "name": "Comuna Vâlcele", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28923000", + "longitude": "24.54968000" + }, + { + "id": "93453", + "name": "Comuna Vădastra", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86497000", + "longitude": "24.38069000" + }, + { + "id": "93455", + "name": "Comuna Vădăstriţa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84531000", + "longitude": "24.34017000" + }, + { + "id": "93459", + "name": "Comuna Văleni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21882000", + "longitude": "24.79748000" + }, + { + "id": "93344", + "name": "Comuna Verguleasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64128000", + "longitude": "24.34234000" + }, + { + "id": "93377", + "name": "Comuna Vişina", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86618000", + "longitude": "24.45469000" + }, + { + "id": "93378", + "name": "Comuna Vişina Nouă", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87434000", + "longitude": "24.41820000" + }, + { + "id": "93370", + "name": "Comuna Vitomireşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85194000", + "longitude": "24.37704000" + }, + { + "id": "93392", + "name": "Comuna Vlădila", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00114000", + "longitude": "24.40993000" + }, + { + "id": "93396", + "name": "Comuna Voineasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28949000", + "longitude": "24.15529000" + }, + { + "id": "93415", + "name": "Comuna Vulpeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45854000", + "longitude": "23.92718000" + }, + { + "id": "93419", + "name": "Comuna Vultureşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72993000", + "longitude": "24.33354000" + }, + { + "id": "93610", + "name": "Corabia", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.77513000", + "longitude": "24.50146000" + }, + { + "id": "93617", + "name": "Corbu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48333000", + "longitude": "24.71667000" + }, + { + "id": "93672", + "name": "Coteana", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30000000", + "longitude": "24.46667000" + }, + { + "id": "93746", + "name": "Crâmpoia", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30215000", + "longitude": "24.74513000" + }, + { + "id": "93750", + "name": "Crăciunei", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14575000", + "longitude": "24.66309000" + }, + { + "id": "93745", + "name": "Crușovu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92473000", + "longitude": "24.41486000" + }, + { + "id": "93770", + "name": "Cungrea", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "24.38333000" + }, + { + "id": "93777", + "name": "Curtişoara", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50000000", + "longitude": "24.33333000" + }, + { + "id": "94125", + "name": "Dăneasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15000000", + "longitude": "24.56667000" + }, + { + "id": "93912", + "name": "Dejești", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83093000", + "longitude": "24.35648000" + }, + { + "id": "93930", + "name": "Deveselu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.06667000", + "longitude": "24.38333000" + }, + { + "id": "93943", + "name": "Doanca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84870000", + "longitude": "24.64949000" + }, + { + "id": "93956", + "name": "Dobreţu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50000000", + "longitude": "23.95000000" + }, + { + "id": "93963", + "name": "Dobrosloveni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "24.36667000" + }, + { + "id": "93964", + "name": "Dobroteasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "24.38333000" + }, + { + "id": "93967", + "name": "Dobrotinet", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47957000", + "longitude": "24.34730000" + }, + { + "id": "93970", + "name": "Dobrun", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26667000", + "longitude": "24.21667000" + }, + { + "id": "94028", + "name": "Dranovățu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43619000", + "longitude": "24.27894000" + }, + { + "id": "94061", + "name": "Drăgăneşti-Olt", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16667000", + "longitude": "24.53333000" + }, + { + "id": "94038", + "name": "Drăghiceni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13333000", + "longitude": "24.25000000" + }, + { + "id": "94098", + "name": "Dumitrești", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68370000", + "longitude": "24.31628000" + }, + { + "id": "94255", + "name": "Făgeţelu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "24.53333000" + }, + { + "id": "94258", + "name": "Fălcoiu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23333000", + "longitude": "24.36667000" + }, + { + "id": "94262", + "name": "Fărcaşele", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15000000", + "longitude": "24.43333000" + }, + { + "id": "94264", + "name": "Fărcașu de Jos", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13539000", + "longitude": "24.45901000" + }, + { + "id": "94488", + "name": "Gârcov", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75910000", + "longitude": "24.61577000" + }, + { + "id": "94509", + "name": "Găneasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "24.28333000" + }, + { + "id": "94516", + "name": "Găvănești", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41724000", + "longitude": "24.01654000" + }, + { + "id": "94324", + "name": "Ghimpați", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15359000", + "longitude": "24.42698000" + }, + { + "id": "94326", + "name": "Ghimpețeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28101000", + "longitude": "24.77458000" + }, + { + "id": "94331", + "name": "Ghioca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31667000", + "longitude": "24.73333000" + }, + { + "id": "94356", + "name": "Giuvărăşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "24.70000000" + }, + { + "id": "94392", + "name": "Gostavăţu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08333000", + "longitude": "24.53333000" + }, + { + "id": "94434", + "name": "Grădinari", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "24.26667000" + }, + { + "id": "94410", + "name": "Greci", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33025000", + "longitude": "24.55923000" + }, + { + "id": "94418", + "name": "Grojdibodu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75000000", + "longitude": "24.26667000" + }, + { + "id": "94421", + "name": "Gropșani", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44072000", + "longitude": "23.97047000" + }, + { + "id": "94452", + "name": "Gura Căluiu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.45903000", + "longitude": "24.03547000" + }, + { + "id": "94457", + "name": "Gura Padinii", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75704000", + "longitude": "24.31615000" + }, + { + "id": "94619", + "name": "Ianca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78333000", + "longitude": "24.18333000" + }, + { + "id": "94621", + "name": "Iancu Jianu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.50000000", + "longitude": "24.03333000" + }, + { + "id": "94635", + "name": "Icoana", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "24.71667000" + }, + { + "id": "94685", + "name": "Ipotești", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.32529000", + "longitude": "24.40089000" + }, + { + "id": "94699", + "name": "Izbiceni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.83333000", + "longitude": "24.65000000" + }, + { + "id": "94704", + "name": "Izvoarele", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26667000", + "longitude": "24.51667000" + }, + { + "id": "94734", + "name": "Jieni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95095000", + "longitude": "24.59349000" + }, + { + "id": "94772", + "name": "Leleasca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "24.43333000" + }, + { + "id": "95270", + "name": "Mărgineni Slobozia", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53121000", + "longitude": "24.55675000" + }, + { + "id": "95282", + "name": "Mărunţei", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20000000", + "longitude": "24.46667000" + }, + { + "id": "94989", + "name": "Mihăeşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13333000", + "longitude": "24.78333000" + }, + { + "id": "95074", + "name": "Morunglav", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "24.11667000" + }, + { + "id": "95082", + "name": "Movileni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36667000", + "longitude": "24.65000000" + }, + { + "id": "95123", + "name": "Municipiul Caracal", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11273000", + "longitude": "24.35089000" + }, + { + "id": "95183", + "name": "Municipiul Slatina", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.44276000", + "longitude": "24.36745000" + }, + { + "id": "95315", + "name": "Negreni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56848000", + "longitude": "24.59535000" + }, + { + "id": "95339", + "name": "Nicolae Titulescu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30000000", + "longitude": "24.80000000" + }, + { + "id": "95389", + "name": "Obârşia", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88333000", + "longitude": "24.33333000" + }, + { + "id": "95386", + "name": "Oboga", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "24.10000000" + }, + { + "id": "95425", + "name": "Olari", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30783000", + "longitude": "24.20857000" + }, + { + "id": "95442", + "name": "Oporelu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "24.41667000" + }, + { + "id": "95444", + "name": "Optaşi", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58333000", + "longitude": "24.65000000" + }, + { + "id": "95457", + "name": "Oraş Balş", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36546000", + "longitude": "24.11321000" + }, + { + "id": "95498", + "name": "Oraş Corabia", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80248000", + "longitude": "24.47028000" + }, + { + "id": "95510", + "name": "Oraş Drãgãneşti-Olt", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17618000", + "longitude": "24.50836000" + }, + { + "id": "95567", + "name": "Oraş Piatra-Olt", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37560000", + "longitude": "24.28332000" + }, + { + "id": "95572", + "name": "Oraş Potcoava", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47992000", + "longitude": "24.64172000" + }, + { + "id": "95584", + "name": "Oraş Scorniceşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56790000", + "longitude": "24.55394000" + }, + { + "id": "95659", + "name": "Orlea", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75000000", + "longitude": "24.38333000" + }, + { + "id": "95660", + "name": "Orlea Nouă", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75522000", + "longitude": "24.35834000" + }, + { + "id": "95672", + "name": "Osica de Jos", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24439000", + "longitude": "24.27926000" + }, + { + "id": "95673", + "name": "Osica de Sus", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25000000", + "longitude": "24.31667000" + }, + { + "id": "96003", + "name": "Pârşcoveni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30000000", + "longitude": "24.23333000" + }, + { + "id": "95733", + "name": "Perieţi", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40000000", + "longitude": "24.55000000" + }, + { + "id": "95768", + "name": "Piatra", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36054000", + "longitude": "24.29557000" + }, + { + "id": "95772", + "name": "Piatra Olt", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36667000", + "longitude": "24.26667000" + }, + { + "id": "95812", + "name": "Pleşoiu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "24.26667000" + }, + { + "id": "95837", + "name": "Poboru", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "24.50000000" + }, + { + "id": "95928", + "name": "Potcoava", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.48333000", + "longitude": "24.65000000" + }, + { + "id": "95929", + "name": "Potcoava Fălcoeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.49484000", + "longitude": "24.61650000" + }, + { + "id": "95930", + "name": "Potelu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.76577000", + "longitude": "24.20535000" + }, + { + "id": "95932", + "name": "Potlogeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87995000", + "longitude": "24.63092000" + }, + { + "id": "95954", + "name": "Priseaca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51667000", + "longitude": "24.45000000" + }, + { + "id": "96053", + "name": "Radomireşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "24.68333000" + }, + { + "id": "96074", + "name": "Redea", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05000000", + "longitude": "24.30000000" + }, + { + "id": "96121", + "name": "Rotunda", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98333000", + "longitude": "24.31667000" + }, + { + "id": "96162", + "name": "Rusăneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93333000", + "longitude": "24.60000000" + }, + { + "id": "96518", + "name": "Sâmbureşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "24.41667000" + }, + { + "id": "96297", + "name": "Scărişoara", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00000000", + "longitude": "24.56667000" + }, + { + "id": "96269", + "name": "Schitu", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "24.56667000" + }, + { + "id": "96278", + "name": "Scorniceşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "24.55000000" + }, + { + "id": "96298", + "name": "Seaca", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16667000", + "longitude": "24.75000000" + }, + { + "id": "96354", + "name": "Sinești", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46777000", + "longitude": "24.66585000" + }, + { + "id": "96361", + "name": "Slatina", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43333000", + "longitude": "24.36667000" + }, + { + "id": "96384", + "name": "Slătioara", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40000000", + "longitude": "24.31667000" + }, + { + "id": "96385", + "name": "Slăveni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08558000", + "longitude": "24.52843000" + }, + { + "id": "96418", + "name": "Sprâncenata", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08333000", + "longitude": "24.63333000" + }, + { + "id": "96484", + "name": "Stăvaru", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86445000", + "longitude": "24.25902000" + }, + { + "id": "96432", + "name": "Stoeneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "24.50000000" + }, + { + "id": "96438", + "name": "Stoicăneşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "24.63333000" + }, + { + "id": "96450", + "name": "Strejeşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53333000", + "longitude": "24.26667000" + }, + { + "id": "96451", + "name": "Strejeștii de Sus", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.54389000", + "longitude": "24.22772000" + }, + { + "id": "96465", + "name": "Studina", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96667000", + "longitude": "24.41667000" + }, + { + "id": "96466", + "name": "Studinița", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.97691000", + "longitude": "24.42668000" + }, + { + "id": "96616", + "name": "Tătuleşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63333000", + "longitude": "24.63333000" + }, + { + "id": "106087", + "name": "Teslui", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.51667000", + "longitude": "24.36667000" + }, + { + "id": "106092", + "name": "Tia Mare", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86667000", + "longitude": "24.63333000" + }, + { + "id": "106128", + "name": "Topana", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "24.51667000" + }, + { + "id": "106150", + "name": "Traian", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01667000", + "longitude": "24.45000000" + }, + { + "id": "106170", + "name": "Tufeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36667000", + "longitude": "24.78333000" + }, + { + "id": "96683", + "name": "Ursa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78783000", + "longitude": "24.63787000" + }, + { + "id": "96685", + "name": "Urzica", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85670000", + "longitude": "24.28952000" + }, + { + "id": "96733", + "name": "Valea Mare", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "24.43333000" + }, + { + "id": "96740", + "name": "Valea Merilor", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.47169000", + "longitude": "24.65611000" + }, + { + "id": "96919", + "name": "Vâlcele", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28263000", + "longitude": "24.54376000" + }, + { + "id": "96924", + "name": "Vâlcelele de Sus", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28461000", + "longitude": "24.55821000" + }, + { + "id": "96953", + "name": "Vădastra", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86667000", + "longitude": "24.36667000" + }, + { + "id": "96956", + "name": "Vădăstriţa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85000000", + "longitude": "24.33333000" + }, + { + "id": "96961", + "name": "Văleni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23333000", + "longitude": "24.78333000" + }, + { + "id": "96788", + "name": "Verguleasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "24.31667000" + }, + { + "id": "96850", + "name": "Vişina", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86667000", + "longitude": "24.45000000" + }, + { + "id": "96853", + "name": "Vișina Nouă", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87434000", + "longitude": "24.41820000" + }, + { + "id": "96842", + "name": "Vitănești", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.52730000", + "longitude": "24.69585000" + }, + { + "id": "96840", + "name": "Vitomireşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "24.40000000" + }, + { + "id": "96868", + "name": "Vlădila", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00000000", + "longitude": "24.40000000" + }, + { + "id": "96878", + "name": "Voineasa", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "24.13333000" + }, + { + "id": "96906", + "name": "Vulpeni", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "23.91667000" + }, + { + "id": "96909", + "name": "Vultureşti", + "state_id": 4738, + "state_code": "OT", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "24.31667000" + }, + { + "id": "89884", + "name": "Adunaţi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "25.61667000" + }, + { + "id": "89918", + "name": "Albeşti-Paleologu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "26.21667000" + }, + { + "id": "89920", + "name": "Albești-Muru", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94440000", + "longitude": "26.20899000" + }, + { + "id": "89940", + "name": "Aluniş", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20000000", + "longitude": "25.86667000" + }, + { + "id": "89974", + "name": "Apostolache", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "26.26667000" + }, + { + "id": "89990", + "name": "Ariceştii-Rahtivani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "25.83333000" + }, + { + "id": "89991", + "name": "Ariceștii Zeletin", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22221000", + "longitude": "26.17957000" + }, + { + "id": "97060", + "name": "Şirna", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "25.95000000" + }, + { + "id": "97065", + "name": "Şoimari", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "26.20000000" + }, + { + "id": "97073", + "name": "Şotrile", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "25.71667000" + }, + { + "id": "97083", + "name": "Ştefeşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "25.90000000" + }, + { + "id": "90013", + "name": "Azuga", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.45000000", + "longitude": "25.55000000" + }, + { + "id": "90017", + "name": "Baba Ana", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "26.45000000" + }, + { + "id": "90048", + "name": "Balta Doamnei", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "26.16667000" + }, + { + "id": "90486", + "name": "Băicoi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "25.85000000" + }, + { + "id": "90528", + "name": "Bălțești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10965000", + "longitude": "26.12937000" + }, + { + "id": "90533", + "name": "Băneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "25.76667000" + }, + { + "id": "90544", + "name": "Bărcăneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88333000", + "longitude": "26.05000000" + }, + { + "id": "90552", + "name": "Bătești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84830000", + "longitude": "26.04031000" + }, + { + "id": "90554", + "name": "Bătrâni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31425000", + "longitude": "26.15091000" + }, + { + "id": "90098", + "name": "Berceni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93333000", + "longitude": "26.11667000" + }, + { + "id": "90114", + "name": "Bertea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "25.86667000" + }, + { + "id": "90158", + "name": "Blejoi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00000000", + "longitude": "26.01667000" + }, + { + "id": "90171", + "name": "Bobolia", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09395000", + "longitude": "25.74259000" + }, + { + "id": "90209", + "name": "Boldeşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86597000", + "longitude": "26.54906000" + }, + { + "id": "90210", + "name": "Boldeşti-Scăeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "26.03333000" + }, + { + "id": "90225", + "name": "Bordenii Mari", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08951000", + "longitude": "25.86964000" + }, + { + "id": "90280", + "name": "Brazii de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "26.01667000" + }, + { + "id": "90283", + "name": "Breaza", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "25.66667000" + }, + { + "id": "90287", + "name": "Breaza de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17125000", + "longitude": "25.67571000" + }, + { + "id": "90288", + "name": "Breaza de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19879000", + "longitude": "25.65578000" + }, + { + "id": "90294", + "name": "Brebu Mânăstirei", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "25.76667000" + }, + { + "id": "90293", + "name": "Brebu Megieșesc", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16774000", + "longitude": "25.77474000" + }, + { + "id": "90436", + "name": "Buşteni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40000000", + "longitude": "25.53333000" + }, + { + "id": "90357", + "name": "Bucov", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "26.08333000" + }, + { + "id": "90371", + "name": "Buda", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82443000", + "longitude": "26.18522000" + }, + { + "id": "90393", + "name": "Bughea de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17985000", + "longitude": "26.02044000" + }, + { + "id": "93798", + "name": "Câmpina", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12619000", + "longitude": "25.73496000" + }, + { + "id": "93846", + "name": "Călugăreni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "26.38333000" + }, + { + "id": "93868", + "name": "Cărbuneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "26.20000000" + }, + { + "id": "93878", + "name": "Cătina", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00984000", + "longitude": "25.78395000" + }, + { + "id": "90619", + "name": "Ceptura de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02088000", + "longitude": "26.32722000" + }, + { + "id": "90620", + "name": "Ceptura de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "26.31667000" + }, + { + "id": "90621", + "name": "Ceraşu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31667000", + "longitude": "26.03333000" + }, + { + "id": "90692", + "name": "Chițorani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97458000", + "longitude": "26.11895000" + }, + { + "id": "90672", + "name": "Chiojdeanca", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "26.26667000" + }, + { + "id": "90723", + "name": "Cioranii de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "26.41667000" + }, + { + "id": "90724", + "name": "Cioranii de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83923000", + "longitude": "26.39473000" + }, + { + "id": "90772", + "name": "Coada Izvorului", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85766000", + "longitude": "25.81851000" + }, + { + "id": "90782", + "name": "Cocorăștii Colț", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83425000", + "longitude": "25.89937000" + }, + { + "id": "90783", + "name": "Cocorăștii Mislii", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08528000", + "longitude": "25.92206000" + }, + { + "id": "90793", + "name": "Colceag", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "26.35000000" + }, + { + "id": "90812", + "name": "Comarnic", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "25.63333000" + }, + { + "id": "90822", + "name": "Comuna Adunaţi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18832000", + "longitude": "25.60181000" + }, + { + "id": "90843", + "name": "Comuna Albeşti-Paleologu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93431000", + "longitude": "26.23302000" + }, + { + "id": "90859", + "name": "Comuna Aluniş", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20105000", + "longitude": "25.89661000" + }, + { + "id": "90881", + "name": "Comuna Apostolache", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12123000", + "longitude": "26.26537000" + }, + { + "id": "90890", + "name": "Comuna Ariceştii Zeletin", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21513000", + "longitude": "26.16879000" + }, + { + "id": "90891", + "name": "Comuna Ariceştii-Rahtivani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94512000", + "longitude": "25.86208000" + }, + { + "id": "93531", + "name": "Comuna Şirna", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80011000", + "longitude": "25.94156000" + }, + { + "id": "93536", + "name": "Comuna Şoimari", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16940000", + "longitude": "26.20968000" + }, + { + "id": "93543", + "name": "Comuna Şotrile", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21183000", + "longitude": "25.71909000" + }, + { + "id": "93553", + "name": "Comuna Ştefeşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24234000", + "longitude": "25.89879000" + }, + { + "id": "90913", + "name": "Comuna Baba Ana", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97508000", + "longitude": "26.48588000" + }, + { + "id": "90930", + "name": "Comuna Balta Doamnei", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75775000", + "longitude": "26.19465000" + }, + { + "id": "91228", + "name": "Comuna Bălţeşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10390000", + "longitude": "26.13040000" + }, + { + "id": "91232", + "name": "Comuna Băneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09491000", + "longitude": "25.77837000" + }, + { + "id": "91241", + "name": "Comuna Bărcăneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87705000", + "longitude": "26.06672000" + }, + { + "id": "91247", + "name": "Comuna Bătrâni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31425000", + "longitude": "26.15091000" + }, + { + "id": "90960", + "name": "Comuna Berceni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92376000", + "longitude": "26.10532000" + }, + { + "id": "90972", + "name": "Comuna Bertea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24083000", + "longitude": "25.84545000" + }, + { + "id": "91003", + "name": "Comuna Blejoi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98262000", + "longitude": "26.01881000" + }, + { + "id": "91038", + "name": "Comuna Boldeşti-Gradiştea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87645000", + "longitude": "26.53482000" + }, + { + "id": "91086", + "name": "Comuna Brazi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85425000", + "longitude": "26.00323000" + }, + { + "id": "91093", + "name": "Comuna Brebu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19406000", + "longitude": "25.77737000" + }, + { + "id": "91134", + "name": "Comuna Bucov", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98443000", + "longitude": "26.10303000" + }, + { + "id": "91574", + "name": "Comuna Călugăreni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07998000", + "longitude": "26.39176000" + }, + { + "id": "91588", + "name": "Comuna Cărbuneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23050000", + "longitude": "26.19703000" + }, + { + "id": "91285", + "name": "Comuna Ceptura", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04633000", + "longitude": "26.31341000" + }, + { + "id": "91286", + "name": "Comuna Ceraşu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32940000", + "longitude": "26.03874000" + }, + { + "id": "91318", + "name": "Comuna Chiojdeanca", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16695000", + "longitude": "26.27617000" + }, + { + "id": "91353", + "name": "Comuna Ciorani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82997000", + "longitude": "26.40405000" + }, + { + "id": "91389", + "name": "Comuna Cocorãştii Mislii", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08525000", + "longitude": "25.94139000" + }, + { + "id": "91390", + "name": "Comuna Cocorăştii-Colţ", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83780000", + "longitude": "25.89752000" + }, + { + "id": "91396", + "name": "Comuna Colceag", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93743000", + "longitude": "26.36442000" + }, + { + "id": "91442", + "name": "Comuna Cornu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16336000", + "longitude": "25.70295000" + }, + { + "id": "91451", + "name": "Comuna Cosminele", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16600000", + "longitude": "25.89523000" + }, + { + "id": "91679", + "name": "Comuna Drajna de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24352000", + "longitude": "26.07601000" + }, + { + "id": "91699", + "name": "Comuna Drăgăneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82739000", + "longitude": "26.30273000" + }, + { + "id": "91711", + "name": "Comuna Dumbrava", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86266000", + "longitude": "26.21463000" + }, + { + "id": "91714", + "name": "Comuna Dumbrãveşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09234000", + "longitude": "25.99862000" + }, + { + "id": "91805", + "name": "Comuna Fântânele", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02536000", + "longitude": "26.36398000" + }, + { + "id": "91764", + "name": "Comuna Filipeştii de Pădure", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99423000", + "longitude": "25.73606000" + }, + { + "id": "91765", + "name": "Comuna Filipeştii de Târg", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94799000", + "longitude": "25.79812000" + }, + { + "id": "91771", + "name": "Comuna Floreşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02718000", + "longitude": "25.78536000" + }, + { + "id": "91797", + "name": "Comuna Fulga", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88905000", + "longitude": "26.44410000" + }, + { + "id": "91847", + "name": "Comuna Gherghiţa", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79902000", + "longitude": "26.27275000" + }, + { + "id": "91902", + "name": "Comuna Gorgota", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78404000", + "longitude": "26.07726000" + }, + { + "id": "91903", + "name": "Comuna Gornet", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13642000", + "longitude": "26.08054000" + }, + { + "id": "91904", + "name": "Comuna Gornet-Cricov", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09016000", + "longitude": "26.26009000" + }, + { + "id": "91953", + "name": "Comuna Gura Vadului", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05357000", + "longitude": "26.44168000" + }, + { + "id": "91954", + "name": "Comuna Gura Vitioarei", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14951000", + "longitude": "26.03308000" + }, + { + "id": "92087", + "name": "Comuna Iordãcheanu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04671000", + "longitude": "26.22605000" + }, + { + "id": "92105", + "name": "Comuna Izvoarele", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27102000", + "longitude": "26.00931000" + }, + { + "id": "92133", + "name": "Comuna Jugureni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10156000", + "longitude": "26.42231000" + }, + { + "id": "92137", + "name": "Comuna Lapoş", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15075000", + "longitude": "26.42796000" + }, + { + "id": "92170", + "name": "Comuna Lipăneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05799000", + "longitude": "26.02213000" + }, + { + "id": "92392", + "name": "Comuna Măgurele", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09476000", + "longitude": "26.04955000" + }, + { + "id": "92393", + "name": "Comuna Măgureni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05203000", + "longitude": "25.76233000" + }, + { + "id": "92402", + "name": "Comuna Măneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86043000", + "longitude": "25.83461000" + }, + { + "id": "92401", + "name": "Comuna Măneciu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33711000", + "longitude": "25.98547000" + }, + { + "id": "92494", + "name": "Comuna Olari", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79262000", + "longitude": "26.20498000" + }, + { + "id": "92714", + "name": "Comuna Păcureţi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14696000", + "longitude": "26.13997000" + }, + { + "id": "92727", + "name": "Comuna Păuleşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00549000", + "longitude": "25.96991000" + }, + { + "id": "92599", + "name": "Comuna Plopu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02686000", + "longitude": "26.14227000" + }, + { + "id": "92613", + "name": "Comuna Podenii Noi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10423000", + "longitude": "26.19023000" + }, + { + "id": "92627", + "name": "Comuna Poiana Câmpina", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12079000", + "longitude": "25.71905000" + }, + { + "id": "92636", + "name": "Comuna Poienarii Burchii", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.74995000", + "longitude": "25.99784000" + }, + { + "id": "92664", + "name": "Comuna Poseşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27519000", + "longitude": "26.14944000" + }, + { + "id": "92669", + "name": "Comuna Predeal-Sărari", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18891000", + "longitude": "26.10613000" + }, + { + "id": "92682", + "name": "Comuna Proviţa de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11190000", + "longitude": "25.67791000" + }, + { + "id": "92683", + "name": "Comuna Proviţa de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13604000", + "longitude": "25.63454000" + }, + { + "id": "92691", + "name": "Comuna Puchenii Mari", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.82386000", + "longitude": "26.07697000" + }, + { + "id": "92820", + "name": "Comuna Râfov", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85001000", + "longitude": "26.20573000" + }, + { + "id": "92863", + "name": "Comuna Salcia", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18323000", + "longitude": "26.32600000" + }, + { + "id": "93053", + "name": "Comuna Sângeru", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14325000", + "longitude": "26.35389000" + }, + { + "id": "93093", + "name": "Comuna Sălciile", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81651000", + "longitude": "26.49246000" + }, + { + "id": "92895", + "name": "Comuna Scorţeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08876000", + "longitude": "25.84712000" + }, + { + "id": "92917", + "name": "Comuna Secăria", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27498000", + "longitude": "25.68457000" + }, + { + "id": "92986", + "name": "Comuna Starchiojd", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32851000", + "longitude": "26.17417000" + }, + { + "id": "93036", + "name": "Comuna Surani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19425000", + "longitude": "26.17335000" + }, + { + "id": "93120", + "name": "Comuna Talea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22413000", + "longitude": "25.56381000" + }, + { + "id": "93226", + "name": "Comuna Târgşoru Vechi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87977000", + "longitude": "25.93082000" + }, + { + "id": "93242", + "name": "Comuna Tătaru", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10405000", + "longitude": "26.31980000" + }, + { + "id": "93134", + "name": "Comuna Teişani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22003000", + "longitude": "26.01022000" + }, + { + "id": "93136", + "name": "Comuna Telega", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14270000", + "longitude": "25.81441000" + }, + { + "id": "93157", + "name": "Comuna Tinosu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81699000", + "longitude": "26.00982000" + }, + { + "id": "93171", + "name": "Comuna Tomşani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94941000", + "longitude": "26.29586000" + }, + { + "id": "93295", + "name": "Comuna Vadu Săpat", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04023000", + "longitude": "26.38868000" + }, + { + "id": "93302", + "name": "Comuna Valea Călugărească", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95527000", + "longitude": "26.16122000" + }, + { + "id": "93304", + "name": "Comuna Valea Doftanei", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32105000", + "longitude": "25.72546000" + }, + { + "id": "93430", + "name": "Comuna Vâlcăneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12377000", + "longitude": "25.94382000" + }, + { + "id": "93463", + "name": "Comuna Vărbilău", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16492000", + "longitude": "25.95984000" + }, + { + "id": "93591", + "name": "Conduratu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97236000", + "longitude": "26.43365000" + }, + { + "id": "93627", + "name": "Corlătești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91341000", + "longitude": "26.08726000" + }, + { + "id": "93640", + "name": "Cornu de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15665000", + "longitude": "25.70452000" + }, + { + "id": "93641", + "name": "Cornu de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "25.70000000" + }, + { + "id": "93655", + "name": "Cosmina de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "25.88333000" + }, + { + "id": "93729", + "name": "Crivina", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78636000", + "longitude": "26.05604000" + }, + { + "id": "94107", + "name": "Dâmbu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04533000", + "longitude": "25.88854000" + }, + { + "id": "93942", + "name": "Dițești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97990000", + "longitude": "25.72655000" + }, + { + "id": "93978", + "name": "Doftana", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "25.80000000" + }, + { + "id": "94026", + "name": "Drajna de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21667000", + "longitude": "26.05000000" + }, + { + "id": "94027", + "name": "Drajna de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25709000", + "longitude": "26.07388000" + }, + { + "id": "94056", + "name": "Drăgăneasa", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10467000", + "longitude": "25.68138000" + }, + { + "id": "94057", + "name": "Drăgăneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "26.30000000" + }, + { + "id": "94077", + "name": "Dumbrava", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88333000", + "longitude": "26.18333000" + }, + { + "id": "94087", + "name": "Dumbrăveşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "26.00000000" + }, + { + "id": "97139", + "name": "Țintea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03403000", + "longitude": "25.90460000" + }, + { + "id": "97128", + "name": "Șipotu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04076000", + "longitude": "26.01714000" + }, + { + "id": "94240", + "name": "Fântânele", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00700000", + "longitude": "26.37720000" + }, + { + "id": "94253", + "name": "Făgetu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13668000", + "longitude": "26.02018000" + }, + { + "id": "94176", + "name": "Filipeştii de Pădure", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00000000", + "longitude": "25.75000000" + }, + { + "id": "94177", + "name": "Filipeştii de Târg", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98333000", + "longitude": "25.78333000" + }, + { + "id": "94186", + "name": "Floreşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "25.78333000" + }, + { + "id": "94222", + "name": "Fulga de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88152000", + "longitude": "26.44258000" + }, + { + "id": "94223", + "name": "Fulga de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "26.45000000" + }, + { + "id": "94497", + "name": "Găgeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02164000", + "longitude": "25.94585000" + }, + { + "id": "94295", + "name": "Gheaba", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30916000", + "longitude": "26.00626000" + }, + { + "id": "94307", + "name": "Gherghiţa", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "26.26667000" + }, + { + "id": "94335", + "name": "Ghioșești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24235000", + "longitude": "25.62671000" + }, + { + "id": "94385", + "name": "Gorgota", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "26.08333000" + }, + { + "id": "94387", + "name": "Gornet", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "26.06667000" + }, + { + "id": "94388", + "name": "Gornet-Cricov", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "26.26667000" + }, + { + "id": "94390", + "name": "Goruna", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08696000", + "longitude": "25.94202000" + }, + { + "id": "94399", + "name": "Gradiștea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88803000", + "longitude": "26.51520000" + }, + { + "id": "94426", + "name": "Groșani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24822000", + "longitude": "25.94795000" + }, + { + "id": "94450", + "name": "Gura Beliei", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21064000", + "longitude": "25.64946000" + }, + { + "id": "94462", + "name": "Gura Vadului", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "26.46667000" + }, + { + "id": "94463", + "name": "Gura Viţioarei", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "26.03333000" + }, + { + "id": "94555", + "name": "Homorâciu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26940000", + "longitude": "26.01634000" + }, + { + "id": "94670", + "name": "Inotești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96146000", + "longitude": "26.35782000" + }, + { + "id": "94681", + "name": "Iordăcheanu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04392000", + "longitude": "26.23920000" + }, + { + "id": "94712", + "name": "Izvoarele", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28376000", + "longitude": "26.00119000" + }, + { + "id": "94752", + "name": "Jugureni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "26.45000000" + }, + { + "id": "94760", + "name": "Lapoș", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15197000", + "longitude": "26.41911000" + }, + { + "id": "94797", + "name": "Liliești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03458000", + "longitude": "25.88554000" + }, + { + "id": "94807", + "name": "Lipăneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "26.01667000" + }, + { + "id": "94816", + "name": "Livadea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18663000", + "longitude": "25.92805000" + }, + { + "id": "94831", + "name": "Loloiasca", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96808000", + "longitude": "26.29141000" + }, + { + "id": "94869", + "name": "Lunca Prahovei", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04714000", + "longitude": "25.77161000" + }, + { + "id": "94905", + "name": "Magula", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93185000", + "longitude": "26.30114000" + }, + { + "id": "95244", + "name": "Măgurele", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "26.03333000" + }, + { + "id": "95245", + "name": "Măgureni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "25.73333000" + }, + { + "id": "95258", + "name": "Măneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "25.85000000" + }, + { + "id": "95257", + "name": "Măneciu-Ungureni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31667000", + "longitude": "25.98333000" + }, + { + "id": "95272", + "name": "Mărginenii de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95910000", + "longitude": "25.75989000" + }, + { + "id": "94957", + "name": "Meri", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83366000", + "longitude": "26.30863000" + }, + { + "id": "95008", + "name": "Minieri", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98372000", + "longitude": "25.76083000" + }, + { + "id": "95017", + "name": "Mireșu Mare", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13508000", + "longitude": "26.37714000" + }, + { + "id": "95023", + "name": "Miroslăvești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80383000", + "longitude": "26.08689000" + }, + { + "id": "95029", + "name": "Mislea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09668000", + "longitude": "25.82444000" + }, + { + "id": "95034", + "name": "Mizil", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "26.45000000" + }, + { + "id": "95044", + "name": "Moceşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "26.25000000" + }, + { + "id": "95131", + "name": "Municipiul Câmpina", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12619000", + "longitude": "25.73496000" + }, + { + "id": "95170", + "name": "Municipiul Ploieşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94281000", + "longitude": "26.02116000" + }, + { + "id": "95306", + "name": "Nedelea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97191000", + "longitude": "25.81647000" + }, + { + "id": "95309", + "name": "Negoiești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87393000", + "longitude": "25.98160000" + }, + { + "id": "95392", + "name": "Ocina de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20060000", + "longitude": "25.59882000" + }, + { + "id": "95415", + "name": "Ogretin", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26483000", + "longitude": "26.09169000" + }, + { + "id": "95423", + "name": "Olari", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78482000", + "longitude": "26.21728000" + }, + { + "id": "95428", + "name": "Ologeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73370000", + "longitude": "25.95059000" + }, + { + "id": "95452", + "name": "Oraş Azuga", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44512000", + "longitude": "25.55616000" + }, + { + "id": "95481", + "name": "Oraş Bãicoi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04160000", + "longitude": "25.86964000" + }, + { + "id": "95465", + "name": "Oraş Boldeşti-Scãeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02458000", + "longitude": "26.04574000" + }, + { + "id": "95470", + "name": "Oraş Breaza", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18710000", + "longitude": "25.65851000" + }, + { + "id": "95479", + "name": "Oraş Buşteni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40570000", + "longitude": "25.53969000" + }, + { + "id": "95495", + "name": "Oraş Comarnic", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24962000", + "longitude": "25.63859000" + }, + { + "id": "95543", + "name": "Oraş Mizil", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00844000", + "longitude": "26.44410000" + }, + { + "id": "95568", + "name": "Oraş Plopeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04406000", + "longitude": "25.95304000" + }, + { + "id": "95588", + "name": "Oraş Sinaia", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34842000", + "longitude": "25.54937000" + }, + { + "id": "95590", + "name": "Oraş Slãnic", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23029000", + "longitude": "25.94753000" + }, + { + "id": "95613", + "name": "Oraş Urlaţi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99692000", + "longitude": "26.24377000" + }, + { + "id": "95622", + "name": "Oraş Vãlenii De Munte", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18771000", + "longitude": "26.03885000" + }, + { + "id": "95679", + "name": "Ostrovu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20351000", + "longitude": "25.90345000" + }, + { + "id": "95698", + "name": "Palanca", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81562000", + "longitude": "26.19995000" + }, + { + "id": "95705", + "name": "Pantazi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93492000", + "longitude": "26.14020000" + }, + { + "id": "95713", + "name": "Parepa-Rușani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90577000", + "longitude": "26.35478000" + }, + { + "id": "96004", + "name": "Păcureţi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "26.13333000" + }, + { + "id": "96029", + "name": "Păuleşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00000000", + "longitude": "25.98333000" + }, + { + "id": "95742", + "name": "Perșunari", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05682000", + "longitude": "26.44784000" + }, + { + "id": "95781", + "name": "Pietriceaua", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.21910000", + "longitude": "25.80859000" + }, + { + "id": "95791", + "name": "Pietroșani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83963000", + "longitude": "26.10382000" + }, + { + "id": "95807", + "name": "Pleașa", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00583000", + "longitude": "26.07211000" + }, + { + "id": "95814", + "name": "Ploieşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "26.01667000" + }, + { + "id": "95815", + "name": "Ploieștiori", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98157000", + "longitude": "26.01795000" + }, + { + "id": "95819", + "name": "Plopeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06552000", + "longitude": "25.98114000" + }, + { + "id": "95823", + "name": "Plopu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "26.15000000" + }, + { + "id": "95844", + "name": "Podenii Noi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "26.16667000" + }, + { + "id": "95845", + "name": "Podenii Vechi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08939000", + "longitude": "26.11584000" + }, + { + "id": "95864", + "name": "Poiana", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24536000", + "longitude": "25.66302000" + }, + { + "id": "95873", + "name": "Poiana Câmpina", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "25.68333000" + }, + { + "id": "95870", + "name": "Poiana Copăceni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16392000", + "longitude": "26.06918000" + }, + { + "id": "95884", + "name": "Poiana Țapului", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.39344000", + "longitude": "25.54066000" + }, + { + "id": "95887", + "name": "Poienarii Apostoli", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77204000", + "longitude": "26.05388000" + }, + { + "id": "95888", + "name": "Poienarii Burchii", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "26.01667000" + }, + { + "id": "95915", + "name": "Popești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86076000", + "longitude": "25.99557000" + }, + { + "id": "95925", + "name": "Posada", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28714000", + "longitude": "25.61882000" + }, + { + "id": "95926", + "name": "Poseștii-Pământeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26667000", + "longitude": "26.15000000" + }, + { + "id": "95931", + "name": "Potigrafu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78504000", + "longitude": "26.10014000" + }, + { + "id": "95969", + "name": "Prăjani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20422000", + "longitude": "25.95151000" + }, + { + "id": "95962", + "name": "Proviţa de Jos", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "25.65000000" + }, + { + "id": "95963", + "name": "Proviţa de Sus", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "25.63333000" + }, + { + "id": "95973", + "name": "Puchenii Mari", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "26.08333000" + }, + { + "id": "95974", + "name": "Puchenii Moșneni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81213000", + "longitude": "26.08701000" + }, + { + "id": "96038", + "name": "Rachieri", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95438000", + "longitude": "26.12841000" + }, + { + "id": "96165", + "name": "Râfov", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "26.13333000" + }, + { + "id": "96112", + "name": "Românești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "26.06667000" + }, + { + "id": "96231", + "name": "Salcia", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "26.33333000" + }, + { + "id": "96530", + "name": "Sângeru", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "26.35000000" + }, + { + "id": "106008", + "name": "Sălciile", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "26.48333000" + }, + { + "id": "96275", + "name": "Schiulești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28471000", + "longitude": "25.95403000" + }, + { + "id": "96280", + "name": "Scorţeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "25.85000000" + }, + { + "id": "96288", + "name": "Scurtești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23759000", + "longitude": "25.90264000" + }, + { + "id": "96318", + "name": "Secăria", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "25.68333000" + }, + { + "id": "96306", + "name": "Seciu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03275000", + "longitude": "26.06474000" + }, + { + "id": "96350", + "name": "Sinaia", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35000000", + "longitude": "25.55000000" + }, + { + "id": "96381", + "name": "Slănic", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "25.93333000" + }, + { + "id": "96380", + "name": "Slon", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35521000", + "longitude": "26.04189000" + }, + { + "id": "96423", + "name": "Starchiojd", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.31667000", + "longitude": "26.18333000" + }, + { + "id": "96436", + "name": "Stoenești", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92422000", + "longitude": "25.85881000" + }, + { + "id": "96452", + "name": "Strejnicu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91676000", + "longitude": "25.95109000" + }, + { + "id": "96505", + "name": "Surani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20000000", + "longitude": "26.16667000" + }, + { + "id": "106051", + "name": "Talea", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.22564000", + "longitude": "25.56433000" + }, + { + "id": "96591", + "name": "Târgşoru Vechi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "25.91667000" + }, + { + "id": "96611", + "name": "Tăriceni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.79624000", + "longitude": "25.96958000" + }, + { + "id": "96614", + "name": "Tătaru", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "26.33333000" + }, + { + "id": "96618", + "name": "Tătărani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89763000", + "longitude": "26.03509000" + }, + { + "id": "106090", + "name": "Teșila", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30352000", + "longitude": "25.72324000" + }, + { + "id": "106073", + "name": "Teişani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "25.98333000" + }, + { + "id": "106078", + "name": "Telega", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "25.78333000" + }, + { + "id": "106104", + "name": "Tinosu", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "26.01667000" + }, + { + "id": "106126", + "name": "Tomşani", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "26.28333000" + }, + { + "id": "106163", + "name": "Trăisteni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33857000", + "longitude": "25.72767000" + }, + { + "id": "106169", + "name": "Tufeni", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05790000", + "longitude": "25.83976000" + }, + { + "id": "96679", + "name": "Urlaţi", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98333000", + "longitude": "26.23333000" + }, + { + "id": "96681", + "name": "Urleta", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08732000", + "longitude": "25.79354000" + }, + { + "id": "96700", + "name": "Vadu Părului", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93132000", + "longitude": "26.20940000" + }, + { + "id": "96703", + "name": "Vadu Săpat", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03973000", + "longitude": "26.38700000" + }, + { + "id": "96720", + "name": "Valea Călugărească", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "26.15000000" + }, + { + "id": "96718", + "name": "Valea Cucului", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06525000", + "longitude": "26.22793000" + }, + { + "id": "96724", + "name": "Valea Dulce", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11428000", + "longitude": "26.20787000" + }, + { + "id": "96760", + "name": "Valea Târsei", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17711000", + "longitude": "25.63323000" + }, + { + "id": "96774", + "name": "Varnița", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80679000", + "longitude": "25.94530000" + }, + { + "id": "96925", + "name": "Vâlcăneşti", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "25.93333000" + }, + { + "id": "96965", + "name": "Vălenii de Munte", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "26.03333000" + }, + { + "id": "96970", + "name": "Vărbila", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04654000", + "longitude": "26.19691000" + }, + { + "id": "96971", + "name": "Vărbilău", + "state_id": 4729, + "state_code": "PH", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "25.95000000" + }, + { + "id": "89878", + "name": "Acâş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "22.78333000" + }, + { + "id": "89901", + "name": "Agriș", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88075000", + "longitude": "23.00340000" + }, + { + "id": "89957", + "name": "Andrid", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "22.35000000" + }, + { + "id": "89967", + "name": "Apa", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76667000", + "longitude": "23.20000000" + }, + { + "id": "89983", + "name": "Ardud", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "22.88333000" + }, + { + "id": "90020", + "name": "Babța", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45778000", + "longitude": "22.94283000" + }, + { + "id": "90458", + "name": "Bârsău de Sus", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60000000", + "longitude": "23.21667000" + }, + { + "id": "90551", + "name": "Bătarci", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "48.03333000", + "longitude": "23.16667000" + }, + { + "id": "90092", + "name": "Beltiug", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55000000", + "longitude": "22.85000000" + }, + { + "id": "90116", + "name": "Berveni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75000000", + "longitude": "22.46667000" + }, + { + "id": "90154", + "name": "Bixad", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93333000", + "longitude": "23.40000000" + }, + { + "id": "90190", + "name": "Bogdand", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41667000", + "longitude": "22.93333000" + }, + { + "id": "90204", + "name": "Boinești", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91567000", + "longitude": "23.35117000" + }, + { + "id": "90244", + "name": "Botiz", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83333000", + "longitude": "22.95000000" + }, + { + "id": "90580", + "name": "Carei", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68333000", + "longitude": "22.46667000" + }, + { + "id": "93840", + "name": "Călineşti-Oaş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90000000", + "longitude": "23.30000000" + }, + { + "id": "93855", + "name": "Cămărzana", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "48.00000000", + "longitude": "23.31667000" + }, + { + "id": "93853", + "name": "Cămin", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72836000", + "longitude": "22.47987000" + }, + { + "id": "93858", + "name": "Căpleni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71667000", + "longitude": "22.50000000" + }, + { + "id": "93872", + "name": "Cărășeu", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74126000", + "longitude": "23.09798000" + }, + { + "id": "93882", + "name": "Căuaş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "22.55000000" + }, + { + "id": "90608", + "name": "Cehal", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "22.60000000" + }, + { + "id": "90641", + "name": "Certeze", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90000000", + "longitude": "23.46667000" + }, + { + "id": "90700", + "name": "Cidreag", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98677000", + "longitude": "22.96395000" + }, + { + "id": "90752", + "name": "Ciumești", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66382000", + "longitude": "22.34069000" + }, + { + "id": "90820", + "name": "Comuna Acâş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53143000", + "longitude": "22.74106000" + }, + { + "id": "90833", + "name": "Comuna Agriş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.87377000", + "longitude": "23.00343000" + }, + { + "id": "90869", + "name": "Comuna Andrid", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51720000", + "longitude": "22.34688000" + }, + { + "id": "90875", + "name": "Comuna Apa", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74934000", + "longitude": "23.18966000" + }, + { + "id": "91195", + "name": "Comuna Bârsău", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.59376000", + "longitude": "23.24257000" + }, + { + "id": "91245", + "name": "Comuna Bătarci", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "48.04054000", + "longitude": "23.14274000" + }, + { + "id": "90956", + "name": "Comuna Beltiug", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56523000", + "longitude": "22.85452000" + }, + { + "id": "90974", + "name": "Comuna Berveni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74896000", + "longitude": "22.47553000" + }, + { + "id": "91000", + "name": "Comuna Bixad", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92031000", + "longitude": "23.37337000" + }, + { + "id": "91025", + "name": "Comuna Bogdand", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41824000", + "longitude": "22.92868000" + }, + { + "id": "91061", + "name": "Comuna Botiz", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83285000", + "longitude": "22.94865000" + }, + { + "id": "91559", + "name": "Comuna Cãlineşti-Oaş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90340000", + "longitude": "23.27351000" + }, + { + "id": "91563", + "name": "Comuna Cãmin", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72836000", + "longitude": "22.47987000" + }, + { + "id": "91581", + "name": "Comuna Cămărzana", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.99435000", + "longitude": "23.30874000" + }, + { + "id": "91583", + "name": "Comuna Căpleni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70942000", + "longitude": "22.50637000" + }, + { + "id": "91596", + "name": "Comuna Căuaş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57998000", + "longitude": "22.55546000" + }, + { + "id": "91276", + "name": "Comuna Cehal", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38440000", + "longitude": "22.59613000" + }, + { + "id": "91298", + "name": "Comuna Certeze", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92014000", + "longitude": "23.47350000" + }, + { + "id": "91371", + "name": "Comuna Ciumeşti", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66308000", + "longitude": "22.33452000" + }, + { + "id": "91484", + "name": "Comuna Craidorolţ", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.59793000", + "longitude": "22.69883000" + }, + { + "id": "91510", + "name": "Comuna Crucişor", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65949000", + "longitude": "23.24776000" + }, + { + "id": "91523", + "name": "Comuna Culciu", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75246000", + "longitude": "23.05593000" + }, + { + "id": "91631", + "name": "Comuna Doba", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74588000", + "longitude": "22.68383000" + }, + { + "id": "91667", + "name": "Comuna Dorolţ", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84524000", + "longitude": "22.78642000" + }, + { + "id": "91776", + "name": "Comuna Foieni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "22.38333000" + }, + { + "id": "91850", + "name": "Comuna Gherţa Mică", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93724000", + "longitude": "23.22169000" + }, + { + "id": "91989", + "name": "Comuna Halmeu", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.97833000", + "longitude": "23.05362000" + }, + { + "id": "92005", + "name": "Comuna Hodod", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.39870000", + "longitude": "23.04633000" + }, + { + "id": "92012", + "name": "Comuna Homoroade", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63896000", + "longitude": "23.06593000" + }, + { + "id": "92141", + "name": "Comuna Lazuri", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.89143000", + "longitude": "22.87213000" + }, + { + "id": "92250", + "name": "Comuna Medieşu Aurit", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79451000", + "longitude": "23.15360000" + }, + { + "id": "92268", + "name": "Comuna Micula", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91687000", + "longitude": "22.93652000" + }, + { + "id": "92316", + "name": "Comuna Moftinu", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68333000", + "longitude": "22.60000000" + }, + { + "id": "92483", + "name": "Comuna Odoreu", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79427000", + "longitude": "22.99639000" + }, + { + "id": "92505", + "name": "Comuna Oraşu Nou", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83470000", + "longitude": "23.30211000" + }, + { + "id": "92713", + "name": "Comuna Pãuleşti", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74992000", + "longitude": "22.94743000" + }, + { + "id": "92562", + "name": "Comuna Petreşti", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58993000", + "longitude": "22.35972000" + }, + { + "id": "92590", + "name": "Comuna Pişcolt", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.59761000", + "longitude": "22.27498000" + }, + { + "id": "92586", + "name": "Comuna Pir", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46650000", + "longitude": "22.39380000" + }, + { + "id": "92648", + "name": "Comuna Pomi", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68071000", + "longitude": "23.32362000" + }, + { + "id": "92663", + "name": "Comuna Porumbeşti", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98491000", + "longitude": "22.97236000" + }, + { + "id": "92741", + "name": "Comuna Racşa", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.82068000", + "longitude": "23.33247000" + }, + { + "id": "92870", + "name": "Comuna Sanislău", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63116000", + "longitude": "22.33109000" + }, + { + "id": "92872", + "name": "Comuna Santău", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51152000", + "longitude": "22.47327000" + }, + { + "id": "93088", + "name": "Comuna Săcăşeni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46964000", + "longitude": "22.68273000" + }, + { + "id": "93113", + "name": "Comuna Săuca", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46041000", + "longitude": "22.48621000" + }, + { + "id": "92970", + "name": "Comuna Socond", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.54018000", + "longitude": "22.98135000" + }, + { + "id": "93034", + "name": "Comuna Supur", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45826000", + "longitude": "22.80767000" + }, + { + "id": "93127", + "name": "Comuna Tarna Mare", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "48.08356000", + "longitude": "23.19491000" + }, + { + "id": "93231", + "name": "Comuna Târşolţ", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95000000", + "longitude": "23.35000000" + }, + { + "id": "93140", + "name": "Comuna Terebeşti", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.67823000", + "longitude": "22.74226000" + }, + { + "id": "93158", + "name": "Comuna Tiream", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58553000", + "longitude": "22.43993000" + }, + { + "id": "93218", + "name": "Comuna Turţ", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98018000", + "longitude": "23.20968000" + }, + { + "id": "93217", + "name": "Comuna Turulung", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92351000", + "longitude": "23.10382000" + }, + { + "id": "93286", + "name": "Comuna Urziceni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73286000", + "longitude": "22.40181000" + }, + { + "id": "93329", + "name": "Comuna Valea Vinului", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.69553000", + "longitude": "23.18488000" + }, + { + "id": "93331", + "name": "Comuna Vama", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84354000", + "longitude": "23.39660000" + }, + { + "id": "93347", + "name": "Comuna Vetiş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79292000", + "longitude": "22.75623000" + }, + { + "id": "93357", + "name": "Comuna Viile Satu Mare", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66667000", + "longitude": "22.95000000" + }, + { + "id": "93703", + "name": "Craidorolţ", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "22.70000000" + }, + { + "id": "93743", + "name": "Crucişor", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68333000", + "longitude": "23.25000000" + }, + { + "id": "93767", + "name": "Culciu Mic", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76667000", + "longitude": "23.03333000" + }, + { + "id": "93893", + "name": "Dara", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81636000", + "longitude": "22.75216000" + }, + { + "id": "93906", + "name": "Decebal", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76630000", + "longitude": "22.75603000" + }, + { + "id": "93944", + "name": "Doba", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73333000", + "longitude": "22.71667000" + }, + { + "id": "93946", + "name": "Dobra", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.49477000", + "longitude": "22.82762000" + }, + { + "id": "93994", + "name": "Domănești", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71071000", + "longitude": "22.58975000" + }, + { + "id": "94007", + "name": "Dorolţ", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.85000000", + "longitude": "22.81667000" + }, + { + "id": "94054", + "name": "Drăgușeni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90541000", + "longitude": "23.07780000" + }, + { + "id": "94078", + "name": "Dumbrava", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84418000", + "longitude": "23.08060000" + }, + { + "id": "94196", + "name": "Foieni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "22.38333000" + }, + { + "id": "94314", + "name": "Gherţa Mică", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93333000", + "longitude": "23.23333000" + }, + { + "id": "94315", + "name": "Gherța Mare", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96884000", + "longitude": "23.20853000" + }, + { + "id": "94518", + "name": "Halmeu", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96667000", + "longitude": "23.01667000" + }, + { + "id": "94542", + "name": "Hodod", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40000000", + "longitude": "23.03333000" + }, + { + "id": "94554", + "name": "Homorodu de Jos", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66667000", + "longitude": "23.08333000" + }, + { + "id": "94586", + "name": "Huta Certeze", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92583000", + "longitude": "23.48715000" + }, + { + "id": "94672", + "name": "Iojib", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81617000", + "longitude": "23.15603000" + }, + { + "id": "94766", + "name": "Lazuri", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.85000000", + "longitude": "22.86667000" + }, + { + "id": "94813", + "name": "Livada", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86667000", + "longitude": "23.13333000" + }, + { + "id": "94840", + "name": "Lucăceni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74194000", + "longitude": "22.47819000" + }, + { + "id": "95233", + "name": "Mădăras", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68403000", + "longitude": "22.86554000" + }, + { + "id": "94944", + "name": "Medieşu Aurit", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78333000", + "longitude": "23.15000000" + }, + { + "id": "94970", + "name": "Micula", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90000000", + "longitude": "22.95000000" + }, + { + "id": "95049", + "name": "Moftinu Mare", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66667000", + "longitude": "22.66667000" + }, + { + "id": "95050", + "name": "Moftinu Mic", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68669000", + "longitude": "22.60054000" + }, + { + "id": "95060", + "name": "Moișeni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92798000", + "longitude": "23.46833000" + }, + { + "id": "95125", + "name": "Municipiul Carei", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68203000", + "longitude": "22.46635000" + }, + { + "id": "95178", + "name": "Municipiul Satu Mare", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76514000", + "longitude": "22.83565000" + }, + { + "id": "95317", + "name": "Negreşti-Oaş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86667000", + "longitude": "23.43333000" + }, + { + "id": "95381", + "name": "Oar", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.80569000", + "longitude": "22.73085000" + }, + { + "id": "95409", + "name": "Odoreu", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.80000000", + "longitude": "23.00000000" + }, + { + "id": "95549", + "name": "Oraş Negreşti-Oaş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86801000", + "longitude": "23.41816000" + }, + { + "id": "95634", + "name": "Oraşu Nou", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83333000", + "longitude": "23.28333000" + }, + { + "id": "95636", + "name": "Oraș Ardud", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "22.88333000" + }, + { + "id": "95641", + "name": "Oraș Livada", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86667000", + "longitude": "23.13333000" + }, + { + "id": "95650", + "name": "Oraș Tăşnad", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48333000", + "longitude": "22.58333000" + }, + { + "id": "96030", + "name": "Păuleşti", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78333000", + "longitude": "22.91667000" + }, + { + "id": "95747", + "name": "Petreşti", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60000000", + "longitude": "22.36667000" + }, + { + "id": "95805", + "name": "Pişcolt", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58333000", + "longitude": "22.30000000" + }, + { + "id": "95795", + "name": "Pir", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "22.36667000" + }, + { + "id": "95869", + "name": "Poiana Codrului", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.62667000", + "longitude": "23.25056000" + }, + { + "id": "95903", + "name": "Pomi", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "23.31667000" + }, + { + "id": "95924", + "name": "Porumbești", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98305000", + "longitude": "22.98076000" + }, + { + "id": "95935", + "name": "Potău", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75673000", + "longitude": "23.12090000" + }, + { + "id": "96050", + "name": "Racşa", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.82068000", + "longitude": "23.33247000" + }, + { + "id": "96239", + "name": "Sanislău", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "22.33333000" + }, + { + "id": "96241", + "name": "Santău", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "22.51667000" + }, + { + "id": "96256", + "name": "Satu Mare", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79926000", + "longitude": "22.86255000" + }, + { + "id": "106002", + "name": "Săcăşeni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48333000", + "longitude": "22.68333000" + }, + { + "id": "106036", + "name": "Sărăuad", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.47944000", + "longitude": "22.62559000" + }, + { + "id": "106041", + "name": "Sătmărel", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73470000", + "longitude": "22.79536000" + }, + { + "id": "106042", + "name": "Săuca", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "22.48333000" + }, + { + "id": "96398", + "name": "Socond", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "22.95000000" + }, + { + "id": "96470", + "name": "Stâna", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50757000", + "longitude": "22.96423000" + }, + { + "id": "96503", + "name": "Supuru de Jos", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "22.80000000" + }, + { + "id": "106062", + "name": "Tarna Mare", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "48.09175000", + "longitude": "23.19369000" + }, + { + "id": "96597", + "name": "Târşolţ", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95000000", + "longitude": "23.35000000" + }, + { + "id": "96598", + "name": "Târşolţel", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95000000", + "longitude": "23.35000000" + }, + { + "id": "96630", + "name": "Tăşnad", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48333000", + "longitude": "22.58333000" + }, + { + "id": "106083", + "name": "Terebeşti", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68333000", + "longitude": "22.71667000" + }, + { + "id": "106105", + "name": "Tiream", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "22.46667000" + }, + { + "id": "106157", + "name": "Trip", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92450000", + "longitude": "23.37648000" + }, + { + "id": "96551", + "name": "Tur", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88231000", + "longitude": "23.39045000" + }, + { + "id": "96569", + "name": "Turţ", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.98333000", + "longitude": "23.21667000" + }, + { + "id": "96568", + "name": "Turulung", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93333000", + "longitude": "23.08333000" + }, + { + "id": "96687", + "name": "Urziceni", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73333000", + "longitude": "22.40000000" + }, + { + "id": "96752", + "name": "Valea Seacă", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "48.08080000", + "longitude": "23.16489000" + }, + { + "id": "96763", + "name": "Valea Vinului", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71667000", + "longitude": "23.18333000" + }, + { + "id": "96770", + "name": "Vama", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83333000", + "longitude": "23.40000000" + }, + { + "id": "96795", + "name": "Vetiş", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.80000000", + "longitude": "22.76667000" + }, + { + "id": "96816", + "name": "Viile Satu Mare", + "state_id": 4746, + "state_code": "SM", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66667000", + "longitude": "22.95000000" + }, + { + "id": "89893", + "name": "Aghireș", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16164000", + "longitude": "23.01764000" + }, + { + "id": "89900", + "name": "Agrij", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06685000", + "longitude": "23.09918000" + }, + { + "id": "89936", + "name": "Almaşu", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94546000", + "longitude": "23.12965000" + }, + { + "id": "97029", + "name": "Şamşud", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "22.95000000" + }, + { + "id": "97098", + "name": "Şărmăşag", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "22.83333000" + }, + { + "id": "97052", + "name": "Şimleu Silvaniei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "22.80000000" + }, + { + "id": "90468", + "name": "Băbeni", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "23.40000000" + }, + { + "id": "90502", + "name": "Bălan", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15599000", + "longitude": "23.31213000" + }, + { + "id": "90536", + "name": "Bănişor", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10431000", + "longitude": "22.83731000" + }, + { + "id": "90093", + "name": "Benesat", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41049000", + "longitude": "23.28904000" + }, + { + "id": "90172", + "name": "Bobota", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "22.76667000" + }, + { + "id": "90177", + "name": "Bocşa", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29390000", + "longitude": "22.91405000" + }, + { + "id": "90199", + "name": "Boghiș", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15512000", + "longitude": "22.73880000" + }, + { + "id": "90356", + "name": "Buciumi", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03333000", + "longitude": "23.06667000" + }, + { + "id": "90567", + "name": "Camăr", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "22.61667000" + }, + { + "id": "90576", + "name": "Carastelec", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "22.70000000" + }, + { + "id": "90609", + "name": "Cehei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25632000", + "longitude": "22.77507000" + }, + { + "id": "90610", + "name": "Cehu Silvaniei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41177000", + "longitude": "23.17489000" + }, + { + "id": "90655", + "name": "Chendrea", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12236000", + "longitude": "23.29904000" + }, + { + "id": "90665", + "name": "Chieşd", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "22.88333000" + }, + { + "id": "90762", + "name": "Cizer", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "22.88333000" + }, + { + "id": "93689", + "name": "Coşeiu", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "22.98333000" + }, + { + "id": "90832", + "name": "Comuna Agrij", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06784000", + "longitude": "23.09764000" + }, + { + "id": "90856", + "name": "Comuna Almaşu", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.95000000", + "longitude": "23.13333000" + }, + { + "id": "93497", + "name": "Comuna Şamşud", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33234000", + "longitude": "22.95373000" + }, + { + "id": "93566", + "name": "Comuna Şărmăşag", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33342000", + "longitude": "22.81988000" + }, + { + "id": "93522", + "name": "Comuna Şimişna", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21179000", + "longitude": "23.61546000" + }, + { + "id": "91200", + "name": "Comuna Băbeni", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "23.40000000" + }, + { + "id": "91211", + "name": "Comuna Bălan", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15768000", + "longitude": "23.31187000" + }, + { + "id": "91234", + "name": "Comuna Bănişor", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10215000", + "longitude": "22.83646000" + }, + { + "id": "90957", + "name": "Comuna Benesat", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41667000", + "longitude": "23.30000000" + }, + { + "id": "91012", + "name": "Comuna Bobota", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "22.76667000" + }, + { + "id": "91016", + "name": "Comuna Bocşa", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30332000", + "longitude": "22.91241000" + }, + { + "id": "91032", + "name": "Comuna Boghiş", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15611000", + "longitude": "22.72706000" + }, + { + "id": "91133", + "name": "Comuna Buciumi", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03476000", + "longitude": "23.02546000" + }, + { + "id": "91256", + "name": "Comuna Camăr", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31728000", + "longitude": "22.62815000" + }, + { + "id": "91258", + "name": "Comuna Carastelec", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30714000", + "longitude": "22.68062000" + }, + { + "id": "91277", + "name": "Comuna Cehu Silvaniei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41293000", + "longitude": "23.17660000" + }, + { + "id": "91313", + "name": "Comuna Chieşd", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36505000", + "longitude": "22.89296000" + }, + { + "id": "91378", + "name": "Comuna Cizer", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06684000", + "longitude": "22.88129000" + }, + { + "id": "91473", + "name": "Comuna Coşeiu", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33189000", + "longitude": "23.01282000" + }, + { + "id": "91487", + "name": "Comuna Crasna", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16191000", + "longitude": "22.82979000" + }, + { + "id": "91488", + "name": "Comuna Creaca", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19490000", + "longitude": "23.22760000" + }, + { + "id": "91506", + "name": "Comuna Crişeni", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25028000", + "longitude": "23.06965000" + }, + { + "id": "91501", + "name": "Comuna Cristolţ", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21231000", + "longitude": "23.43745000" + }, + { + "id": "91538", + "name": "Comuna Cuzăplac", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.94651000", + "longitude": "23.21895000" + }, + { + "id": "91639", + "name": "Comuna Dobrin", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30812000", + "longitude": "23.11367000" + }, + { + "id": "91678", + "name": "Comuna Dragu", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03493000", + "longitude": "23.41089000" + }, + { + "id": "91761", + "name": "Comuna Fildu De Jos", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91837000", + "longitude": "23.01591000" + }, + { + "id": "91962", + "name": "Comuna Gâlgău", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27667000", + "longitude": "23.68763000" + }, + { + "id": "91964", + "name": "Comuna Gârbou", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15447000", + "longitude": "23.43522000" + }, + { + "id": "91990", + "name": "Comuna Halmăşd", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15903000", + "longitude": "22.59664000" + }, + { + "id": "91997", + "name": "Comuna Hereclean", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26297000", + "longitude": "23.00704000" + }, + { + "id": "91999", + "name": "Comuna Hida", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07831000", + "longitude": "23.33841000" + }, + { + "id": "92021", + "name": "Comuna Horoatu Crasnei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09729000", + "longitude": "22.92131000" + }, + { + "id": "92069", + "name": "Comuna Ileanda", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34501000", + "longitude": "23.60827000" + }, + { + "id": "92088", + "name": "Comuna Ip", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22138000", + "longitude": "22.62406000" + }, + { + "id": "92156", + "name": "Comuna Letca", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34948000", + "longitude": "23.42865000" + }, + { + "id": "92186", + "name": "Comuna Lozna", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31510000", + "longitude": "23.48507000" + }, + { + "id": "92240", + "name": "Comuna Marca", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23495000", + "longitude": "22.55089000" + }, + { + "id": "92385", + "name": "Comuna Măerişte", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29893000", + "longitude": "22.75444000" + }, + { + "id": "92304", + "name": "Comuna Mirşid", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23132000", + "longitude": "23.14308000" + }, + { + "id": "92464", + "name": "Comuna Năpradea", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34497000", + "longitude": "23.31603000" + }, + { + "id": "92459", + "name": "Comuna Nuşfalău", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21355000", + "longitude": "22.70784000" + }, + { + "id": "92549", + "name": "Comuna Pericei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24643000", + "longitude": "22.87644000" + }, + { + "id": "92598", + "name": "Comuna Plopiş", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11425000", + "longitude": "22.64240000" + }, + { + "id": "92625", + "name": "Comuna Poiana Blenchii", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30626000", + "longitude": "23.76012000" + }, + { + "id": "92785", + "name": "Comuna Românaşi", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11470000", + "longitude": "23.17627000" + }, + { + "id": "92814", + "name": "Comuna Rus", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.27800000", + "longitude": "23.57813000" + }, + { + "id": "93044", + "name": "Comuna Sâg", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07041000", + "longitude": "22.78671000" + }, + { + "id": "93057", + "name": "Comuna Sânmihaiu Almaşului", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.03822000", + "longitude": "23.21448000" + }, + { + "id": "93101", + "name": "Comuna Sălăţig", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35417000", + "longitude": "23.15585000" + }, + { + "id": "92975", + "name": "Comuna Someş-Odorhei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32846000", + "longitude": "23.22294000" + }, + { + "id": "93039", + "name": "Comuna Surduc", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24433000", + "longitude": "23.37313000" + }, + { + "id": "93191", + "name": "Comuna Treznea", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.09432000", + "longitude": "23.10166000" + }, + { + "id": "93297", + "name": "Comuna Valcãu De Jos", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10960000", + "longitude": "22.73662000" + }, + { + "id": "93448", + "name": "Comuna Vârşolţ", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19711000", + "longitude": "22.94529000" + }, + { + "id": "93470", + "name": "Comuna Zalha", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19786000", + "longitude": "23.53139000" + }, + { + "id": "93478", + "name": "Comuna Zimbor", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.98887000", + "longitude": "23.29029000" + }, + { + "id": "93586", + "name": "Comună Meseşenii de Jos", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.14568000", + "longitude": "22.99133000" + }, + { + "id": "93707", + "name": "Crasna", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16667000", + "longitude": "22.90000000" + }, + { + "id": "93709", + "name": "Creaca", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "23.25000000" + }, + { + "id": "93735", + "name": "Crişeni", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "23.05000000" + }, + { + "id": "93725", + "name": "Cristolţ", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "23.43333000" + }, + { + "id": "93789", + "name": "Cuzăplac", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.96667000", + "longitude": "23.20000000" + }, + { + "id": "93911", + "name": "Deja", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35537000", + "longitude": "23.18300000" + }, + { + "id": "93924", + "name": "Derșida", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38810000", + "longitude": "22.80170000" + }, + { + "id": "93940", + "name": "Dioșod", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29238000", + "longitude": "23.02099000" + }, + { + "id": "93959", + "name": "Dobrin", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "23.13333000" + }, + { + "id": "94024", + "name": "Dragu", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "23.40000000" + }, + { + "id": "97124", + "name": "Șimișna", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23202000", + "longitude": "23.62370000" + }, + { + "id": "94169", + "name": "Fildu de Jos", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93333000", + "longitude": "23.06667000" + }, + { + "id": "94478", + "name": "Gâlgău", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28183000", + "longitude": "23.70157000" + }, + { + "id": "94479", + "name": "Gâlgău Almaşului", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "23.33333000" + }, + { + "id": "94482", + "name": "Gârbou", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "23.43333000" + }, + { + "id": "94355", + "name": "Giurtelecu Șimleului", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.29680000", + "longitude": "22.79557000" + }, + { + "id": "94519", + "name": "Halmăşd", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "22.61667000" + }, + { + "id": "94531", + "name": "Hereclean", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25000000", + "longitude": "23.01667000" + }, + { + "id": "94534", + "name": "Hida", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06667000", + "longitude": "23.28333000" + }, + { + "id": "94565", + "name": "Horoatu Crasnei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13333000", + "longitude": "22.88333000" + }, + { + "id": "94655", + "name": "Ileanda", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33333000", + "longitude": "23.63333000" + }, + { + "id": "94682", + "name": "Ip", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "22.65000000" + }, + { + "id": "94730", + "name": "Jibou", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25896000", + "longitude": "23.25651000" + }, + { + "id": "94785", + "name": "Letca", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33333000", + "longitude": "23.45000000" + }, + { + "id": "94835", + "name": "Lozna", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "23.46667000" + }, + { + "id": "94909", + "name": "Mal", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.06979000", + "longitude": "22.81441000" + }, + { + "id": "94925", + "name": "Marca", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.21667000", + "longitude": "22.56667000" + }, + { + "id": "94931", + "name": "Marin", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12754000", + "longitude": "22.81055000" + }, + { + "id": "95236", + "name": "Măerişte", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "22.80000000" + }, + { + "id": "94961", + "name": "Meseşenii de Jos", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.15000000", + "longitude": "22.98333000" + }, + { + "id": "95026", + "name": "Mirşid", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "23.13333000" + }, + { + "id": "95197", + "name": "Municipiul Zalãu", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.16633000", + "longitude": "23.09660000" + }, + { + "id": "95373", + "name": "Năpradea", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36667000", + "longitude": "23.31667000" + }, + { + "id": "95366", + "name": "Nuşfalău", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "22.73333000" + }, + { + "id": "95629", + "name": "Oraş Şimleu Silvaniei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23018000", + "longitude": "22.79440000" + }, + { + "id": "95640", + "name": "Oraș Jibou", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26001000", + "longitude": "23.25488000" + }, + { + "id": "95719", + "name": "Peceiu", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.12415000", + "longitude": "22.86238000" + }, + { + "id": "95729", + "name": "Pericei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "22.88333000" + }, + { + "id": "95821", + "name": "Plopiş", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.13333000", + "longitude": "22.68333000" + }, + { + "id": "95868", + "name": "Poiana Blenchii", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30000000", + "longitude": "23.75000000" + }, + { + "id": "95986", + "name": "Pusta", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.24596000", + "longitude": "22.72374000" + }, + { + "id": "96109", + "name": "Românaşi", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10000000", + "longitude": "23.18333000" + }, + { + "id": "96157", + "name": "Rus", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "23.60000000" + }, + { + "id": "96516", + "name": "Sâg", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.07545000", + "longitude": "22.78084000" + }, + { + "id": "96534", + "name": "Sânmihaiu Almaşului", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.01667000", + "longitude": "23.30000000" + }, + { + "id": "106024", + "name": "Sălăţig", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36667000", + "longitude": "23.13333000" + }, + { + "id": "96408", + "name": "Someş-Odorhei", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "23.26667000" + }, + { + "id": "96474", + "name": "Stârciu", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.08747000", + "longitude": "22.91998000" + }, + { + "id": "96508", + "name": "Surduc", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.25000000", + "longitude": "23.35000000" + }, + { + "id": "106098", + "name": "Tihău", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22724000", + "longitude": "23.32964000" + }, + { + "id": "106154", + "name": "Treznea", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.10000000", + "longitude": "23.11667000" + }, + { + "id": "96706", + "name": "Valcău de Jos", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.11667000", + "longitude": "22.73333000" + }, + { + "id": "96949", + "name": "Vârşolţ", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "22.93333000" + }, + { + "id": "96982", + "name": "Zalău", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.20000000", + "longitude": "23.05000000" + }, + { + "id": "96981", + "name": "Zalha", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.18333000", + "longitude": "23.53333000" + }, + { + "id": "97019", + "name": "Zăuan", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.22495000", + "longitude": "22.66328000" + }, + { + "id": "96994", + "name": "Zimbor", + "state_id": 4741, + "state_code": "SJ", + "country_id": 181, + "country_code": "RO", + "latitude": "47.00000000", + "longitude": "23.26667000" + }, + { + "id": "90016", + "name": "Aţel", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "24.46667000" + }, + { + "id": "89903", + "name": "Agârbiciu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06764000", + "longitude": "24.19386000" + }, + { + "id": "89898", + "name": "Agnita", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "24.61667000" + }, + { + "id": "89945", + "name": "Alămor", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93003000", + "longitude": "23.99370000" + }, + { + "id": "89946", + "name": "Alțâna", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93333000", + "longitude": "24.46667000" + }, + { + "id": "89934", + "name": "Alma", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21359000", + "longitude": "24.48037000" + }, + { + "id": "89973", + "name": "Apoldu de Jos", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86667000", + "longitude": "23.85000000" + }, + { + "id": "89998", + "name": "Arpaşu de Jos", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "24.61667000" + }, + { + "id": "89999", + "name": "Arpașu de Sus", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73436000", + "longitude": "24.61906000" + }, + { + "id": "90008", + "name": "Avrig", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "24.38333000" + }, + { + "id": "90011", + "name": "Axente Sever", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "24.21667000" + }, + { + "id": "97041", + "name": "Şeíca Mare", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "24.15000000" + }, + { + "id": "97033", + "name": "Şeica Mică", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "24.13333000" + }, + { + "id": "97036", + "name": "Şelimbăr", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "24.20000000" + }, + { + "id": "97094", + "name": "Şura Mare", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "24.16667000" + }, + { + "id": "97095", + "name": "Şura Mică", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "24.06667000" + }, + { + "id": "90072", + "name": "Bazna", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "24.28333000" + }, + { + "id": "90447", + "name": "Bârghiş", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98333000", + "longitude": "24.53333000" + }, + { + "id": "90130", + "name": "Biertan", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "24.51667000" + }, + { + "id": "90166", + "name": "Blăjel", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21667000", + "longitude": "24.31667000" + }, + { + "id": "90202", + "name": "Boian", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20159000", + "longitude": "24.22862000" + }, + { + "id": "90207", + "name": "Boița", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63454000", + "longitude": "24.26037000" + }, + { + "id": "90261", + "name": "Bradu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72221000", + "longitude": "24.33234000" + }, + { + "id": "90275", + "name": "Brateiu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16667000", + "longitude": "24.41667000" + }, + { + "id": "90322", + "name": "Brădeni", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "24.83333000" + }, + { + "id": "90314", + "name": "Bruiu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86667000", + "longitude": "24.70000000" + }, + { + "id": "93819", + "name": "Cârţa", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "24.56667000" + }, + { + "id": "93821", + "name": "Cârţişoara", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "24.58333000" + }, + { + "id": "90680", + "name": "Chirpăr", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "24.60000000" + }, + { + "id": "90737", + "name": "Cisnădie", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "24.15000000" + }, + { + "id": "90912", + "name": "Comuna Aţel", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15465000", + "longitude": "24.48297000" + }, + { + "id": "90862", + "name": "Comuna Alțâna", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95534000", + "longitude": "24.46144000" + }, + { + "id": "90854", + "name": "Comuna Alma", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22726000", + "longitude": "24.46825000" + }, + { + "id": "90880", + "name": "Comuna Apoldu de Jos", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89598000", + "longitude": "23.85036000" + }, + { + "id": "90897", + "name": "Comuna Arpaşu de Jos", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77314000", + "longitude": "24.60870000" + }, + { + "id": "90908", + "name": "Comuna Axente Sever", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07315000", + "longitude": "24.22535000" + }, + { + "id": "93501", + "name": "Comuna Şeica Mare", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99998000", + "longitude": "24.23909000" + }, + { + "id": "93502", + "name": "Comuna Şeica Mică", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04202000", + "longitude": "24.09567000" + }, + { + "id": "93505", + "name": "Comuna Şelimbăr", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75141000", + "longitude": "24.21985000" + }, + { + "id": "93562", + "name": "Comuna Şura Mare", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85917000", + "longitude": "24.18477000" + }, + { + "id": "93563", + "name": "Comuna Şura Mică", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82485000", + "longitude": "24.04210000" + }, + { + "id": "90941", + "name": "Comuna Bazna", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21384000", + "longitude": "24.26438000" + }, + { + "id": "91186", + "name": "Comuna Bârghiş", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01126000", + "longitude": "24.50431000" + }, + { + "id": "90985", + "name": "Comuna Biertan", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.12456000", + "longitude": "24.51945000" + }, + { + "id": "91009", + "name": "Comuna Blăjel", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22436000", + "longitude": "24.34108000" + }, + { + "id": "91036", + "name": "Comuna Boiţa", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57905000", + "longitude": "24.24651000" + }, + { + "id": "91083", + "name": "Comuna Brateiu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15361000", + "longitude": "24.42007000" + }, + { + "id": "91112", + "name": "Comuna Brădeni", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06701000", + "longitude": "24.86289000" + }, + { + "id": "91105", + "name": "Comuna Bruiu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86350000", + "longitude": "24.70341000" + }, + { + "id": "91556", + "name": "Comuna Cârţa", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80033000", + "longitude": "24.56371000" + }, + { + "id": "91557", + "name": "Comuna Cârţişoara", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72704000", + "longitude": "24.57985000" + }, + { + "id": "91323", + "name": "Comuna Chirpăr", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90545000", + "longitude": "24.61093000" + }, + { + "id": "91499", + "name": "Comuna Cristian", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78444000", + "longitude": "24.02995000" + }, + { + "id": "91729", + "name": "Comuna Dârlos", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20795000", + "longitude": "24.39737000" + }, + { + "id": "91951", + "name": "Comuna Gura Râului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73012000", + "longitude": "23.98417000" + }, + { + "id": "92006", + "name": "Comuna Hoghilag", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21941000", + "longitude": "24.61559000" + }, + { + "id": "92051", + "name": "Comuna Iacobeni", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04440000", + "longitude": "24.75456000" + }, + { + "id": "92125", + "name": "Comuna Jina", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78593000", + "longitude": "23.67793000" + }, + { + "id": "92139", + "name": "Comuna Laslea", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14966000", + "longitude": "24.63839000" + }, + { + "id": "92181", + "name": "Comuna Loamneş", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95467000", + "longitude": "24.04197000" + }, + { + "id": "92191", + "name": "Comuna Ludoş", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93336000", + "longitude": "23.90070000" + }, + { + "id": "92244", + "name": "Comuna Marpod", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87101000", + "longitude": "24.51544000" + }, + { + "id": "92260", + "name": "Comuna Merghindeal", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97533000", + "longitude": "24.71324000" + }, + { + "id": "92269", + "name": "Comuna Micăsasa", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10607000", + "longitude": "24.13264000" + }, + { + "id": "92284", + "name": "Comuna Mihăileni", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99998000", + "longitude": "24.36621000" + }, + { + "id": "92346", + "name": "Comuna Moşna", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07534000", + "longitude": "24.42509000" + }, + { + "id": "92451", + "name": "Comuna Nocrich", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87075000", + "longitude": "24.43314000" + }, + { + "id": "92508", + "name": "Comuna Orlat", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75550000", + "longitude": "23.96855000" + }, + { + "id": "92725", + "name": "Comuna Păuca", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00209000", + "longitude": "23.91696000" + }, + { + "id": "92631", + "name": "Comuna Poiana Sibiului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80920000", + "longitude": "23.73095000" + }, + { + "id": "92657", + "name": "Comuna Poplaca", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72815000", + "longitude": "24.05380000" + }, + { + "id": "92661", + "name": "Comuna Porumbacu de Jos", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75078000", + "longitude": "24.49551000" + }, + { + "id": "92735", + "name": "Comuna Racoviţa", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66604000", + "longitude": "24.35142000" + }, + { + "id": "92826", + "name": "Comuna Râu Sadului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.62401000", + "longitude": "24.06132000" + }, + { + "id": "92855", + "name": "Comuna Răşinari", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69761000", + "longitude": "24.07378000" + }, + { + "id": "92796", + "name": "Comuna Roşia", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80385000", + "longitude": "24.31786000" + }, + { + "id": "92860", + "name": "Comuna Sadu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.67199000", + "longitude": "24.18393000" + }, + { + "id": "92950", + "name": "Comuna Slimnic", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.94465000", + "longitude": "24.19777000" + }, + { + "id": "93228", + "name": "Comuna Târnava", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13752000", + "longitude": "24.29756000" + }, + { + "id": "93154", + "name": "Comuna Tilişca", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80131000", + "longitude": "23.81411000" + }, + { + "id": "93215", + "name": "Comuna Turnu Roşu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64667000", + "longitude": "24.31762000" + }, + { + "id": "93328", + "name": "Comuna Valea Viilor", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07141000", + "longitude": "24.31223000" + }, + { + "id": "93424", + "name": "Comuna Vurpăr", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89672000", + "longitude": "24.34315000" + }, + { + "id": "93609", + "name": "Copşa Mică", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11667000", + "longitude": "24.25000000" + }, + { + "id": "93722", + "name": "Cristian", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "24.03333000" + }, + { + "id": "94110", + "name": "Dârlos", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "24.40000000" + }, + { + "id": "94084", + "name": "Dumbrăveni", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23333000", + "longitude": "24.56667000" + }, + { + "id": "97115", + "name": "Șaroș pe Târnave", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "24.55000000" + }, + { + "id": "94459", + "name": "Gura Râului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73333000", + "longitude": "23.98333000" + }, + { + "id": "94546", + "name": "Hoghilag", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23333000", + "longitude": "24.61667000" + }, + { + "id": "94616", + "name": "Iacobeni", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "24.71667000" + }, + { + "id": "94649", + "name": "Ighișu Nou", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11121000", + "longitude": "24.34920000" + }, + { + "id": "94739", + "name": "Jina", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "23.68333000" + }, + { + "id": "94763", + "name": "Laslea", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.21667000", + "longitude": "24.65000000" + }, + { + "id": "94828", + "name": "Loamneş", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93333000", + "longitude": "24.10000000" + }, + { + "id": "94843", + "name": "Ludoş", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "23.90000000" + }, + { + "id": "94932", + "name": "Marpod", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86667000", + "longitude": "24.50000000" + }, + { + "id": "95225", + "name": "Mârșa", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70002000", + "longitude": "24.37046000" + }, + { + "id": "95256", + "name": "Mălâncrav", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11003000", + "longitude": "24.64810000" + }, + { + "id": "94943", + "name": "Mediaş", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16667000", + "longitude": "24.35000000" + }, + { + "id": "94956", + "name": "Merghindeal", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96667000", + "longitude": "24.73333000" + }, + { + "id": "94971", + "name": "Micăsasa", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "24.11667000" + }, + { + "id": "94972", + "name": "Miercurea Sibiului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88333000", + "longitude": "23.80000000" + }, + { + "id": "94991", + "name": "Mihăileni", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98333000", + "longitude": "24.35000000" + }, + { + "id": "95089", + "name": "Moşna", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "24.40000000" + }, + { + "id": "95155", + "name": "Municipiul Mediaş", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13663000", + "longitude": "24.35377000" + }, + { + "id": "95181", + "name": "Municipiul Sibiu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79383000", + "longitude": "24.13533000" + }, + { + "id": "95353", + "name": "Nocrich", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "24.45000000" + }, + { + "id": "95355", + "name": "Nou", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "24.28333000" + }, + { + "id": "95396", + "name": "Ocna Sibiului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88333000", + "longitude": "24.05000000" + }, + { + "id": "95447", + "name": "Oraş Agnita", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98952000", + "longitude": "24.61458000" + }, + { + "id": "95451", + "name": "Oraş Avrig", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73797000", + "longitude": "24.38713000" + }, + { + "id": "95494", + "name": "Oraş Cisnãdie", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70924000", + "longitude": "24.13284000" + }, + { + "id": "95497", + "name": "Oraş Copşa Micã", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11651000", + "longitude": "24.25517000" + }, + { + "id": "95511", + "name": "Oraş Dumbrãveni", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22258000", + "longitude": "24.55274000" + }, + { + "id": "95540", + "name": "Oraş Miercurea Sibiului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86247000", + "longitude": "23.79766000" + }, + { + "id": "95557", + "name": "Oraş Ocna Sibiului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88311000", + "longitude": "24.00095000" + }, + { + "id": "95599", + "name": "Oraş Sãlişte", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78967000", + "longitude": "23.89532000" + }, + { + "id": "95610", + "name": "Oraş Tãlmaciu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66751000", + "longitude": "24.25357000" + }, + { + "id": "95658", + "name": "Orlat", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75000000", + "longitude": "23.96667000" + }, + { + "id": "96027", + "name": "Păuca", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "23.90000000" + }, + { + "id": "95880", + "name": "Poiana Sibiului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80000000", + "longitude": "23.73333000" + }, + { + "id": "95916", + "name": "Poplaca", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "24.05000000" + }, + { + "id": "95922", + "name": "Porumbacu de Jos", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75000000", + "longitude": "24.45000000" + }, + { + "id": "96044", + "name": "Racoviţa", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68333000", + "longitude": "24.35000000" + }, + { + "id": "96175", + "name": "Râu Sadului", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61667000", + "longitude": "24.06667000" + }, + { + "id": "96218", + "name": "Răşinari", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70000000", + "longitude": "24.06667000" + }, + { + "id": "96126", + "name": "Roşia", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "24.31667000" + }, + { + "id": "96151", + "name": "Ruja", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01175000", + "longitude": "24.65048000" + }, + { + "id": "96226", + "name": "Sadu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66667000", + "longitude": "24.18333000" + }, + { + "id": "106017", + "name": "Sălişte", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79633000", + "longitude": "23.88677000" + }, + { + "id": "96332", + "name": "Sibiu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80000000", + "longitude": "24.15000000" + }, + { + "id": "96366", + "name": "Slimnic", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "24.16667000" + }, + { + "id": "96593", + "name": "Târnava", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13975000", + "longitude": "24.28926000" + }, + { + "id": "96601", + "name": "Tălmaciu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66714000", + "longitude": "24.26464000" + }, + { + "id": "96602", + "name": "Tălmăcel", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64712000", + "longitude": "24.24270000" + }, + { + "id": "106100", + "name": "Tilişca", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80000000", + "longitude": "23.85000000" + }, + { + "id": "96566", + "name": "Turnu Roşu", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63333000", + "longitude": "24.30000000" + }, + { + "id": "96762", + "name": "Valea Viilor", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "24.28333000" + }, + { + "id": "96799", + "name": "Veștem", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71752000", + "longitude": "24.23958000" + }, + { + "id": "96916", + "name": "Vurpăr", + "state_id": 4755, + "state_code": "SB", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "24.35000000" + }, + { + "id": "89888", + "name": "Adâncata", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73333000", + "longitude": "26.30000000" + }, + { + "id": "89978", + "name": "Arbore", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73333000", + "longitude": "25.93333000" + }, + { + "id": "89986", + "name": "Argel", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76136000", + "longitude": "25.47049000" + }, + { + "id": "89989", + "name": "Arghira", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45412000", + "longitude": "26.47250000" + }, + { + "id": "97031", + "name": "Şaru Dornei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "25.35000000" + }, + { + "id": "90028", + "name": "Baia", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41667000", + "longitude": "26.21667000" + }, + { + "id": "90068", + "name": "Basarabi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45370000", + "longitude": "26.43972000" + }, + { + "id": "90482", + "name": "Bădeuți", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.80277000", + "longitude": "25.98387000" + }, + { + "id": "90499", + "name": "Băișești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48024000", + "longitude": "26.11115000" + }, + { + "id": "90520", + "name": "Bălăceana", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.64338000", + "longitude": "26.04764000" + }, + { + "id": "90507", + "name": "Bălcăuţi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.89149000", + "longitude": "26.07279000" + }, + { + "id": "90534", + "name": "Bănești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58946000", + "longitude": "26.52335000" + }, + { + "id": "90100", + "name": "Berchișești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52306000", + "longitude": "26.03207000" + }, + { + "id": "90135", + "name": "Bilca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91667000", + "longitude": "25.75000000" + }, + { + "id": "90153", + "name": "Bivolărie", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91464000", + "longitude": "25.65525000" + }, + { + "id": "90184", + "name": "Bogata", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40789000", + "longitude": "26.18655000" + }, + { + "id": "90191", + "name": "Bogdăneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36667000", + "longitude": "26.28333000" + }, + { + "id": "90230", + "name": "Boroaia", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "26.33333000" + }, + { + "id": "90240", + "name": "Bosanci", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58333000", + "longitude": "26.31667000" + }, + { + "id": "90247", + "name": "Botoşana", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68333000", + "longitude": "25.95000000" + }, + { + "id": "90333", + "name": "Brăiești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.49673000", + "longitude": "26.07182000" + }, + { + "id": "90286", + "name": "Breaza", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61502000", + "longitude": "25.31816000" + }, + { + "id": "90308", + "name": "Broşteni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23333000", + "longitude": "25.70000000" + }, + { + "id": "90305", + "name": "Brodina", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88333000", + "longitude": "25.41667000" + }, + { + "id": "90311", + "name": "Broșteni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.30459000", + "longitude": "26.55625000" + }, + { + "id": "90370", + "name": "Bucșoaia", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53972000", + "longitude": "25.81118000" + }, + { + "id": "90379", + "name": "Budeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41383000", + "longitude": "26.65927000" + }, + { + "id": "90411", + "name": "Bunești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52501000", + "longitude": "26.28826000" + }, + { + "id": "90419", + "name": "Burla", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79033000", + "longitude": "25.92696000" + }, + { + "id": "90420", + "name": "Bursuceni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65097000", + "longitude": "26.47530000" + }, + { + "id": "90559", + "name": "Cacica", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "25.90000000" + }, + { + "id": "90561", + "name": "Cajvana", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "25.96667000" + }, + { + "id": "90563", + "name": "Calafindeşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.85000000", + "longitude": "26.11667000" + }, + { + "id": "90570", + "name": "Capu Câmpului", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50822000", + "longitude": "25.97959000" + }, + { + "id": "90569", + "name": "Capu Codrului", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53117000", + "longitude": "25.98724000" + }, + { + "id": "93801", + "name": "Câmpulung Moldovenesc", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "25.56667000" + }, + { + "id": "93813", + "name": "Cârlibaba", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58333000", + "longitude": "25.13333000" + }, + { + "id": "93842", + "name": "Călinești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.80329000", + "longitude": "26.15345000" + }, + { + "id": "90716", + "name": "Ciocănești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48107000", + "longitude": "25.27912000" + }, + { + "id": "90731", + "name": "Ciprian Porumbescu", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "26.06667000" + }, + { + "id": "90768", + "name": "Clit", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75396000", + "longitude": "25.85691000" + }, + { + "id": "93698", + "name": "Coșna", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37098000", + "longitude": "25.18133000" + }, + { + "id": "90792", + "name": "Colacu", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53830000", + "longitude": "25.37211000" + }, + { + "id": "93588", + "name": "Comănești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66939000", + "longitude": "25.98836000" + }, + { + "id": "90824", + "name": "Comuna Adâncata", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73678000", + "longitude": "26.30819000" + }, + { + "id": "90882", + "name": "Comuna Arbore", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.74775000", + "longitude": "25.90345000" + }, + { + "id": "93500", + "name": "Comuna Şaru Dornei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26471000", + "longitude": "25.33324000" + }, + { + "id": "93510", + "name": "Comuna Şerbăuţi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81507000", + "longitude": "26.14677000" + }, + { + "id": "90916", + "name": "Comuna Baia", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41311000", + "longitude": "26.20278000" + }, + { + "id": "91222", + "name": "Comuna Bălăceana", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.64338000", + "longitude": "26.04764000" + }, + { + "id": "91212", + "name": "Comuna Bălcăuţi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90436000", + "longitude": "26.08665000" + }, + { + "id": "90962", + "name": "Comuna Berchişeşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53260000", + "longitude": "26.04276000" + }, + { + "id": "90988", + "name": "Comuna Bilca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91826000", + "longitude": "25.75457000" + }, + { + "id": "91026", + "name": "Comuna Bogdăneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36671000", + "longitude": "26.27386000" + }, + { + "id": "91051", + "name": "Comuna Boroaia", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34226000", + "longitude": "26.33043000" + }, + { + "id": "91058", + "name": "Comuna Bosanci", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57503000", + "longitude": "26.29582000" + }, + { + "id": "91064", + "name": "Comuna Botoşana", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68759000", + "longitude": "25.94337000" + }, + { + "id": "91090", + "name": "Comuna Breaza", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.62436000", + "longitude": "25.33172000" + }, + { + "id": "91101", + "name": "Comuna Brodina", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.85147000", + "longitude": "25.39262000" + }, + { + "id": "91164", + "name": "Comuna Buneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51793000", + "longitude": "26.29717000" + }, + { + "id": "91171", + "name": "Comuna Burla", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79033000", + "longitude": "25.92696000" + }, + { + "id": "91252", + "name": "Comuna Cacica", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65553000", + "longitude": "25.86673000" + }, + { + "id": "91253", + "name": "Comuna Calafindeşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86578000", + "longitude": "26.11598000" + }, + { + "id": "91257", + "name": "Comuna Capu Câmpului", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50822000", + "longitude": "25.97959000" + }, + { + "id": "91551", + "name": "Comuna Cârlibaba", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58546000", + "longitude": "25.09425000" + }, + { + "id": "91347", + "name": "Comuna Ciocăneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50083000", + "longitude": "25.24673000" + }, + { + "id": "91358", + "name": "Comuna Ciprian Porumbescu", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56842000", + "longitude": "26.06397000" + }, + { + "id": "91476", + "name": "Comuna Coşna", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37343000", + "longitude": "25.16889000" + }, + { + "id": "91410", + "name": "Comuna Comăneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66932000", + "longitude": "25.98661000" + }, + { + "id": "91443", + "name": "Comuna Cornu Luncii", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45743000", + "longitude": "26.14122000" + }, + { + "id": "91509", + "name": "Comuna Crucea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37472000", + "longitude": "25.59262000" + }, + { + "id": "91744", + "name": "Comuna Dărmăneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75967000", + "longitude": "26.12677000" + }, + { + "id": "91654", + "name": "Comuna Dolheşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43720000", + "longitude": "26.52383000" + }, + { + "id": "91661", + "name": "Comuna Dorna Cândrenilor", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34594000", + "longitude": "25.23735000" + }, + { + "id": "91662", + "name": "Comuna Dorna-Arini", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35928000", + "longitude": "25.44383000" + }, + { + "id": "91663", + "name": "Comuna Dorneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88982000", + "longitude": "25.99415000" + }, + { + "id": "91683", + "name": "Comuna Drãgoieşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53507000", + "longitude": "26.09178000" + }, + { + "id": "91694", + "name": "Comuna Drăguşeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31170000", + "longitude": "26.52284000" + }, + { + "id": "91715", + "name": "Comuna Dumbrăveni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66802000", + "longitude": "26.40699000" + }, + { + "id": "91804", + "name": "Comuna Fântâna Mare", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40000000", + "longitude": "26.30000000" + }, + { + "id": "91809", + "name": "Comuna Fântânele", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58499000", + "longitude": "26.52036000" + }, + { + "id": "91779", + "name": "Comuna Forăşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36386000", + "longitude": "26.46174000" + }, + { + "id": "91795", + "name": "Comuna Frătăuţii Noi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92568000", + "longitude": "25.87372000" + }, + { + "id": "91796", + "name": "Comuna Frătăuţii Vechi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90465000", + "longitude": "25.90303000" + }, + { + "id": "91785", + "name": "Comuna Frumosu", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61834000", + "longitude": "25.63529000" + }, + { + "id": "91802", + "name": "Comuna Fundu Moldovei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55496000", + "longitude": "25.33346000" + }, + { + "id": "91982", + "name": "Comuna Gălăneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91587000", + "longitude": "25.82894000" + }, + { + "id": "91942", + "name": "Comuna Grămeşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.89744000", + "longitude": "26.14496000" + }, + { + "id": "91944", + "name": "Comuna Grăniceşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.77658000", + "longitude": "26.06857000" + }, + { + "id": "92034", + "name": "Comuna Hârtop", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.49000000", + "longitude": "26.37226000" + }, + { + "id": "92042", + "name": "Comuna Hănţeşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.76696000", + "longitude": "26.34232000" + }, + { + "id": "92022", + "name": "Comuna Horodnic De Jos", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86092000", + "longitude": "25.83243000" + }, + { + "id": "92023", + "name": "Comuna Horodnic De Sus", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83186000", + "longitude": "25.83687000" + }, + { + "id": "92024", + "name": "Comuna Horodniceni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51356000", + "longitude": "26.17276000" + }, + { + "id": "92050", + "name": "Comuna Iacobeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.44112000", + "longitude": "25.32431000" + }, + { + "id": "92056", + "name": "Comuna Iaslovăţ", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75862000", + "longitude": "25.97742000" + }, + { + "id": "92072", + "name": "Comuna Ilişeşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61665000", + "longitude": "26.05520000" + }, + { + "id": "92091", + "name": "Comuna Ipoteşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.62828000", + "longitude": "26.29797000" + }, + { + "id": "92108", + "name": "Comuna Izvoarele Sucevei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75766000", + "longitude": "25.19406000" + }, + { + "id": "92243", + "name": "Comuna Marginea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.80927000", + "longitude": "25.82296000" + }, + { + "id": "92370", + "name": "Comuna Mânăstirea Humorului", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.62839000", + "longitude": "25.82206000" + }, + { + "id": "92398", + "name": "Comuna Mălini", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40321000", + "longitude": "26.01485000" + }, + { + "id": "92307", + "name": "Comuna Mitocu Dragomirnei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73475000", + "longitude": "26.23992000" + }, + { + "id": "92312", + "name": "Comuna Moara", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58038000", + "longitude": "26.19565000" + }, + { + "id": "92324", + "name": "Comuna Moldova Suliţa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.67897000", + "longitude": "25.25421000" + }, + { + "id": "92328", + "name": "Comuna Moldoviţa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72325000", + "longitude": "25.50689000" + }, + { + "id": "92363", + "name": "Comuna Muşeniţa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96020000", + "longitude": "25.98110000" + }, + { + "id": "92517", + "name": "Comuna Ostra", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40480000", + "longitude": "25.75594000" + }, + { + "id": "92533", + "name": "Comuna Panaci", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.19584000", + "longitude": "25.43169000" + }, + { + "id": "92718", + "name": "Comuna Păltinoasa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.54101000", + "longitude": "25.97138000" + }, + { + "id": "92721", + "name": "Comuna Părteştii de Jos", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.62306000", + "longitude": "25.96689000" + }, + { + "id": "92723", + "name": "Comuna Pătrăuţi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.72097000", + "longitude": "26.18841000" + }, + { + "id": "92632", + "name": "Comuna Poiana Stampei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31118000", + "longitude": "25.12932000" + }, + { + "id": "92641", + "name": "Comuna Poieni-Solca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68626000", + "longitude": "25.89374000" + }, + { + "id": "92645", + "name": "Comuna Pojorâta", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.50476000", + "longitude": "25.42180000" + }, + { + "id": "92672", + "name": "Comuna Preuteşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45479000", + "longitude": "26.42181000" + }, + { + "id": "92701", + "name": "Comuna Putna", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88518000", + "longitude": "25.60374000" + }, + { + "id": "92828", + "name": "Comuna Râşca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36821000", + "longitude": "26.18987000" + }, + { + "id": "92846", + "name": "Comuna Rădăşeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48804000", + "longitude": "26.24924000" + }, + { + "id": "92859", + "name": "Comuna Sadova", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.54248000", + "longitude": "25.50380000" + }, + { + "id": "92881", + "name": "Comuna Satu Mare", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.82377000", + "longitude": "26.01339000" + }, + { + "id": "92883", + "name": "Comuna Scheia", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65030000", + "longitude": "26.18094000" + }, + { + "id": "92936", + "name": "Comuna Siminicea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70926000", + "longitude": "26.39132000" + }, + { + "id": "92947", + "name": "Comuna Slatina", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43630000", + "longitude": "25.97797000" + }, + { + "id": "93001", + "name": "Comuna Straja", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91825000", + "longitude": "25.55275000" + }, + { + "id": "93005", + "name": "Comuna Stroieşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61943000", + "longitude": "26.12741000" + }, + { + "id": "93011", + "name": "Comuna Stulpicani", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43327000", + "longitude": "25.75705000" + }, + { + "id": "93026", + "name": "Comuna Suceviţa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79051000", + "longitude": "25.74000000" + }, + { + "id": "93164", + "name": "Comuna Todireşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70451000", + "longitude": "26.07762000" + }, + { + "id": "93254", + "name": "Comuna Udeşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57154000", + "longitude": "26.40955000" + }, + { + "id": "93259", + "name": "Comuna Ulma", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86322000", + "longitude": "25.26467000" + }, + { + "id": "93292", + "name": "Comuna Vadu Moldovei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38595000", + "longitude": "26.40022000" + }, + { + "id": "93316", + "name": "Comuna Valea Moldovei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48067000", + "longitude": "26.01535000" + }, + { + "id": "93332", + "name": "Comuna Vama", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56354000", + "longitude": "25.69089000" + }, + { + "id": "93336", + "name": "Comuna Vatra Moldoviţei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66396000", + "longitude": "25.57802000" + }, + { + "id": "93343", + "name": "Comuna Vereşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.62500000", + "longitude": "26.46426000" + }, + { + "id": "93350", + "name": "Comuna Vicovu de Jos", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90112000", + "longitude": "25.72659000" + }, + { + "id": "93402", + "name": "Comuna Voitinel", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88366000", + "longitude": "25.75735000" + }, + { + "id": "93404", + "name": "Comuna Volovăţ", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.80726000", + "longitude": "25.89558000" + }, + { + "id": "93421", + "name": "Comuna Vultureşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52041000", + "longitude": "26.40961000" + }, + { + "id": "93472", + "name": "Comuna Zamostea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86610000", + "longitude": "26.20328000" + }, + { + "id": "93481", + "name": "Comuna Zvoriştea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81813000", + "longitude": "26.28635000" + }, + { + "id": "93639", + "name": "Cornu Luncii", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "26.15000000" + }, + { + "id": "93645", + "name": "Corocăiești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "26.48333000" + }, + { + "id": "93670", + "name": "Costâna", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.69265000", + "longitude": "26.11900000" + }, + { + "id": "93740", + "name": "Crucea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "25.61667000" + }, + { + "id": "94130", + "name": "Dărmăneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73333000", + "longitude": "26.15000000" + }, + { + "id": "93918", + "name": "Demacușa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.69717000", + "longitude": "25.50499000" + }, + { + "id": "93982", + "name": "Dolhasca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43333000", + "longitude": "26.60000000" + }, + { + "id": "93985", + "name": "Dolheștii Mici", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43633000", + "longitude": "26.55178000" + }, + { + "id": "93986", + "name": "Dolheștii-Mari", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45020000", + "longitude": "26.51326000" + }, + { + "id": "93997", + "name": "Dorna Cândrenilor", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "25.25000000" + }, + { + "id": "93998", + "name": "Dorna-Arini", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.33832000", + "longitude": "25.40740000" + }, + { + "id": "93999", + "name": "Dorneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.87174000", + "longitude": "26.00430000" + }, + { + "id": "94044", + "name": "Drăgoiești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55000000", + "longitude": "26.08333000" + }, + { + "id": "94050", + "name": "Drăguşeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.28333000", + "longitude": "26.48333000" + }, + { + "id": "94085", + "name": "Dumbrăveni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "26.41667000" + }, + { + "id": "94092", + "name": "Dumbrăvița", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.39845000", + "longitude": "26.34578000" + }, + { + "id": "97138", + "name": "Țibeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81618000", + "longitude": "26.02438000" + }, + { + "id": "97119", + "name": "Șerbănești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81014000", + "longitude": "26.31922000" + }, + { + "id": "97120", + "name": "Șerbăuți", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.82684000", + "longitude": "26.14009000" + }, + { + "id": "94149", + "name": "Falcău", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91087000", + "longitude": "25.46908000" + }, + { + "id": "94235", + "name": "Fântâna Mare", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41432000", + "longitude": "26.30015000" + }, + { + "id": "94236", + "name": "Fântânele", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.57463000", + "longitude": "26.53277000" + }, + { + "id": "94259", + "name": "Fălticeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45000000", + "longitude": "26.30000000" + }, + { + "id": "94200", + "name": "Forăşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "26.46667000" + }, + { + "id": "94201", + "name": "Frasin", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "25.80000000" + }, + { + "id": "94220", + "name": "Frătăuţii Noi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.94257000", + "longitude": "25.84465000" + }, + { + "id": "94221", + "name": "Frătăuţii Vechi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90000000", + "longitude": "25.88333000" + }, + { + "id": "94209", + "name": "Frumosu", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "25.65000000" + }, + { + "id": "94229", + "name": "Fundu Moldovei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "25.40000000" + }, + { + "id": "94501", + "name": "Găinești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41968000", + "longitude": "25.91809000" + }, + { + "id": "94505", + "name": "Gălăneşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91667000", + "longitude": "25.80000000" + }, + { + "id": "94443", + "name": "Grămeşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91667000", + "longitude": "26.15000000" + }, + { + "id": "94445", + "name": "Grăniceşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81667000", + "longitude": "26.06667000" + }, + { + "id": "94448", + "name": "Gulia", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41203000", + "longitude": "26.60854000" + }, + { + "id": "94454", + "name": "Gura Humorului", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55000000", + "longitude": "25.90000000" + }, + { + "id": "94458", + "name": "Gura Putnei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.89951000", + "longitude": "25.59510000" + }, + { + "id": "94592", + "name": "Hârtop", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.49000000", + "longitude": "26.37226000" + }, + { + "id": "94604", + "name": "Hănțești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75507000", + "longitude": "26.37366000" + }, + { + "id": "94532", + "name": "Herla", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.44286000", + "longitude": "26.01254000" + }, + { + "id": "94566", + "name": "Horodnic de Jos", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86523000", + "longitude": "25.81856000" + }, + { + "id": "94567", + "name": "Horodnic de Sus", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.84012000", + "longitude": "25.82354000" + }, + { + "id": "94568", + "name": "Horodniceni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "26.16667000" + }, + { + "id": "94576", + "name": "Humoreni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.66667000", + "longitude": "25.98333000" + }, + { + "id": "94582", + "name": "Hurjuieni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91667000", + "longitude": "25.81667000" + }, + { + "id": "94615", + "name": "Iacobeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.43333000", + "longitude": "25.31667000" + }, + { + "id": "94625", + "name": "Iaslovăț", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75862000", + "longitude": "25.97742000" + }, + { + "id": "94658", + "name": "Ilișești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60878000", + "longitude": "26.05061000" + }, + { + "id": "94684", + "name": "Ipoteşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "26.28333000" + }, + { + "id": "94713", + "name": "Izvoarele Sucevei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75000000", + "longitude": "25.18333000" + }, + { + "id": "94893", + "name": "Lămășeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.49322000", + "longitude": "26.22806000" + }, + { + "id": "94811", + "name": "Liteni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "26.20000000" + }, + { + "id": "94930", + "name": "Marginea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81667000", + "longitude": "25.81667000" + }, + { + "id": "95253", + "name": "Mălini", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "26.08333000" + }, + { + "id": "95262", + "name": "Mănăstirea Humorului", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60000000", + "longitude": "25.86667000" + }, + { + "id": "95278", + "name": "Măriței", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.75270000", + "longitude": "26.14626000" + }, + { + "id": "95294", + "name": "Măzănăești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52795000", + "longitude": "26.08401000" + }, + { + "id": "94990", + "name": "Mihăiești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51563000", + "longitude": "26.21734000" + }, + { + "id": "94986", + "name": "Mihoveni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.67994000", + "longitude": "26.18220000" + }, + { + "id": "95005", + "name": "Milişăuţi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78333000", + "longitude": "26.00000000" + }, + { + "id": "95020", + "name": "Mironu", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48799000", + "longitude": "26.00952000" + }, + { + "id": "95031", + "name": "Mitocu Dragomirnei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.73333000", + "longitude": "26.25000000" + }, + { + "id": "95039", + "name": "Moara Carp", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "26.23333000" + }, + { + "id": "95042", + "name": "Moara Nica", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60086000", + "longitude": "26.22262000" + }, + { + "id": "95062", + "name": "Moldova Suliţa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68333000", + "longitude": "25.25000000" + }, + { + "id": "95067", + "name": "Moldoviţa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68333000", + "longitude": "25.53333000" + }, + { + "id": "95209", + "name": "Muşeniţa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.96667000", + "longitude": "26.00000000" + }, + { + "id": "95133", + "name": "Municipiul Câmpulung Moldovenesc", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.52981000", + "longitude": "25.55975000" + }, + { + "id": "95143", + "name": "Municipiul Fãlticeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46189000", + "longitude": "26.31668000" + }, + { + "id": "95176", + "name": "Municipiul Rãdãuţi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.85090000", + "longitude": "25.91570000" + }, + { + "id": "95184", + "name": "Municipiul Suceava", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.67457000", + "longitude": "26.28109000" + }, + { + "id": "95196", + "name": "Municipiul Vatra Dornei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.34443000", + "longitude": "25.33391000" + }, + { + "id": "95303", + "name": "Neagra Șarului", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23907000", + "longitude": "25.32923000" + }, + { + "id": "95312", + "name": "Negostina", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92282000", + "longitude": "26.08209000" + }, + { + "id": "95320", + "name": "Negrileasa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.42348000", + "longitude": "25.81617000" + }, + { + "id": "95440", + "name": "Oniceni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.32441000", + "longitude": "26.46217000" + }, + { + "id": "95472", + "name": "Oraş Broşteni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.23673000", + "longitude": "25.70028000" + }, + { + "id": "95489", + "name": "Oraş Cajvana", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71394000", + "longitude": "25.99186000" + }, + { + "id": "95509", + "name": "Oraş Dolhasca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41790000", + "longitude": "26.61083000" + }, + { + "id": "95519", + "name": "Oraş Frasin", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51236000", + "longitude": "25.79977000" + }, + { + "id": "95525", + "name": "Oraş Gura Humorului", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.54191000", + "longitude": "25.87765000" + }, + { + "id": "95539", + "name": "Oraş Liteni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51068000", + "longitude": "26.53599000" + }, + { + "id": "95542", + "name": "Oraş Milişãuţi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78361000", + "longitude": "26.01317000" + }, + { + "id": "95583", + "name": "Oraş Salcea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.64509000", + "longitude": "26.35842000" + }, + { + "id": "95589", + "name": "Oraş Siret", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.94798000", + "longitude": "26.06875000" + }, + { + "id": "95592", + "name": "Oraş Solca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70078000", + "longitude": "25.83488000" + }, + { + "id": "95616", + "name": "Oraş Vicovu De Sus", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.92071000", + "longitude": "25.65842000" + }, + { + "id": "95675", + "name": "Ostra", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.40000000", + "longitude": "25.76667000" + }, + { + "id": "95703", + "name": "Panaci", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.26667000", + "longitude": "25.38333000" + }, + { + "id": "95997", + "name": "Pâraie", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46299000", + "longitude": "26.06608000" + }, + { + "id": "96015", + "name": "Păltinoasa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.55000000", + "longitude": "25.95000000" + }, + { + "id": "96020", + "name": "Părhăuți", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71057000", + "longitude": "26.09012000" + }, + { + "id": "96021", + "name": "Părteştii de Jos", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "25.96667000" + }, + { + "id": "96023", + "name": "Pătrăuţi", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.71667000", + "longitude": "26.20000000" + }, + { + "id": "95835", + "name": "Plăvălari", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56832000", + "longitude": "26.35925000" + }, + { + "id": "95817", + "name": "Plopeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65874000", + "longitude": "26.33913000" + }, + { + "id": "95833", + "name": "Plutonița", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48081000", + "longitude": "25.79145000" + }, + { + "id": "95878", + "name": "Poiana Mărului", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.41188000", + "longitude": "26.04077000" + }, + { + "id": "95881", + "name": "Poiana Stampei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.31667000", + "longitude": "25.13333000" + }, + { + "id": "95892", + "name": "Poieni-Solca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68626000", + "longitude": "25.89374000" + }, + { + "id": "95899", + "name": "Pojorâta", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "25.45000000" + }, + { + "id": "95945", + "name": "Prelipca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61085000", + "longitude": "26.35414000" + }, + { + "id": "95946", + "name": "Preuteşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45000000", + "longitude": "26.41667000" + }, + { + "id": "95958", + "name": "Probota", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.37584000", + "longitude": "26.62415000" + }, + { + "id": "95990", + "name": "Putna", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86667000", + "longitude": "25.61667000" + }, + { + "id": "96177", + "name": "Râşca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.36667000", + "longitude": "26.23333000" + }, + { + "id": "96203", + "name": "Rădăşeni", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "26.25000000" + }, + { + "id": "96201", + "name": "Rădăuți", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.85000000", + "longitude": "25.91667000" + }, + { + "id": "96135", + "name": "Roșcani", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53346000", + "longitude": "26.54909000" + }, + { + "id": "96119", + "name": "Rotunda", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.48745000", + "longitude": "26.52466000" + }, + { + "id": "96224", + "name": "Sadova", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.53333000", + "longitude": "25.50000000" + }, + { + "id": "96229", + "name": "Salcea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "26.36667000" + }, + { + "id": "96253", + "name": "Satu Mare", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83333000", + "longitude": "26.01667000" + }, + { + "id": "96264", + "name": "Scheia", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "26.23333000" + }, + { + "id": "96347", + "name": "Siminicea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "26.40000000" + }, + { + "id": "96358", + "name": "Siret", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.95000000", + "longitude": "26.06667000" + }, + { + "id": "96362", + "name": "Slatina", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.45000000", + "longitude": "26.01667000" + }, + { + "id": "96404", + "name": "Solca", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "25.85000000" + }, + { + "id": "96406", + "name": "Soloneț", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.68682000", + "longitude": "26.03222000" + }, + { + "id": "96421", + "name": "Stamate", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60598000", + "longitude": "26.51698000" + }, + { + "id": "96447", + "name": "Straja", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.91667000", + "longitude": "25.55000000" + }, + { + "id": "96462", + "name": "Strâmtura", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.58082000", + "longitude": "25.68144000" + }, + { + "id": "96457", + "name": "Stroiești", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.61667000", + "longitude": "26.13333000" + }, + { + "id": "96467", + "name": "Stulpicani", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "25.76667000" + }, + { + "id": "96488", + "name": "Suceava", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63333000", + "longitude": "26.25000000" + }, + { + "id": "96490", + "name": "Suceviţa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.78333000", + "longitude": "25.71667000" + }, + { + "id": "106116", + "name": "Todireşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.70000000", + "longitude": "26.03333000" + }, + { + "id": "96638", + "name": "Udeşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "26.41667000" + }, + { + "id": "96644", + "name": "Ulma", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88333000", + "longitude": "25.30000000" + }, + { + "id": "96697", + "name": "Vadu Moldovei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.38333000", + "longitude": "26.36667000" + }, + { + "id": "96741", + "name": "Valea Moldovei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.46667000", + "longitude": "26.03333000" + }, + { + "id": "96771", + "name": "Vama", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.56667000", + "longitude": "25.68333000" + }, + { + "id": "96777", + "name": "Vatra Dornei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.35000000", + "longitude": "25.36667000" + }, + { + "id": "96778", + "name": "Vatra Moldoviţei", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.65000000", + "longitude": "25.56667000" + }, + { + "id": "96969", + "name": "Văratec", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.63988000", + "longitude": "26.40312000" + }, + { + "id": "96787", + "name": "Vereşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.60000000", + "longitude": "26.43333000" + }, + { + "id": "96800", + "name": "Vicovu de Jos", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.90000000", + "longitude": "25.73333000" + }, + { + "id": "96801", + "name": "Vicovu de Sus", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.93333000", + "longitude": "25.68333000" + }, + { + "id": "96875", + "name": "Voievodeasa", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.79953000", + "longitude": "25.74939000" + }, + { + "id": "96885", + "name": "Voitinel", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.88366000", + "longitude": "25.75735000" + }, + { + "id": "96888", + "name": "Volovăţ", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.81667000", + "longitude": "25.90000000" + }, + { + "id": "96911", + "name": "Vultureşti", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.51667000", + "longitude": "26.45000000" + }, + { + "id": "96984", + "name": "Zamostea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.86667000", + "longitude": "26.20000000" + }, + { + "id": "97006", + "name": "Zvoriştea", + "state_id": 4720, + "state_code": "SV", + "country_id": 181, + "country_code": "RO", + "latitude": "47.83333000", + "longitude": "26.28333000" + }, + { + "id": "89925", + "name": "Alexandria", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98333000", + "longitude": "25.33333000" + }, + { + "id": "97107", + "name": "Ţigăneşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "25.36667000" + }, + { + "id": "90023", + "name": "Baciu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.33152000", + "longitude": "25.44429000" + }, + { + "id": "90037", + "name": "Balaci", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "24.91667000" + }, + { + "id": "90466", + "name": "Bâscoveni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24444000", + "longitude": "25.35998000" + }, + { + "id": "90473", + "name": "Băbăiţa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16667000", + "longitude": "25.38333000" + }, + { + "id": "90478", + "name": "Băcălești", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05997000", + "longitude": "24.81636000" + }, + { + "id": "90485", + "name": "Băduleasa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92286000", + "longitude": "24.98274000" + }, + { + "id": "90529", + "name": "Băneasa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93975000", + "longitude": "24.94997000" + }, + { + "id": "90078", + "name": "Beciu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00429000", + "longitude": "24.66571000" + }, + { + "id": "90082", + "name": "Beiu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87352000", + "longitude": "25.45548000" + }, + { + "id": "90121", + "name": "Beuca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25200000", + "longitude": "24.96637000" + }, + { + "id": "90157", + "name": "Blejeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30000000", + "longitude": "25.46667000" + }, + { + "id": "90189", + "name": "Bogdana", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93333000", + "longitude": "25.08333000" + }, + { + "id": "90246", + "name": "Botoroaga", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14833000", + "longitude": "25.54472000" + }, + { + "id": "90263", + "name": "Bragadiru", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.76667000", + "longitude": "25.51667000" + }, + { + "id": "90318", + "name": "Brânceni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88333000", + "longitude": "25.40000000" + }, + { + "id": "90319", + "name": "Brâncoveanca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94075000", + "longitude": "24.69336000" + }, + { + "id": "90398", + "name": "Bujoreni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "25.63333000" + }, + { + "id": "90400", + "name": "Bujoru", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.71667000", + "longitude": "25.56667000" + }, + { + "id": "90431", + "name": "Buzescu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01667000", + "longitude": "25.23333000" + }, + { + "id": "90564", + "name": "Calomfirești", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91736000", + "longitude": "25.35801000" + }, + { + "id": "93837", + "name": "Călineşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08333000", + "longitude": "25.23333000" + }, + { + "id": "93843", + "name": "Călmăţuiu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96667000", + "longitude": "24.86667000" + }, + { + "id": "93844", + "name": "Călmățuiu de Sus", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.02632000", + "longitude": "24.81230000" + }, + { + "id": "90632", + "name": "Cernetu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90727000", + "longitude": "25.45688000" + }, + { + "id": "90643", + "name": "Cervenia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.83333000", + "longitude": "25.46667000" + }, + { + "id": "90738", + "name": "Ciuani", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23333000", + "longitude": "25.65000000" + }, + { + "id": "90754", + "name": "Ciuperceni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.76667000", + "longitude": "24.95000000" + }, + { + "id": "93575", + "name": "Comuna Ţigăneşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90141000", + "longitude": "25.37804000" + }, + { + "id": "90921", + "name": "Comuna Balaci", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35188000", + "longitude": "24.90962000" + }, + { + "id": "91202", + "name": "Comuna Băbăiţa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13909000", + "longitude": "25.39156000" + }, + { + "id": "90946", + "name": "Comuna Beciu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01272000", + "longitude": "24.66163000" + }, + { + "id": "90979", + "name": "Comuna Beuca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26595000", + "longitude": "24.97928000" + }, + { + "id": "91002", + "name": "Comuna Blejeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30317000", + "longitude": "25.45269000" + }, + { + "id": "91024", + "name": "Comuna Bogdana", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92860000", + "longitude": "25.08358000" + }, + { + "id": "91063", + "name": "Comuna Botoroaga", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14997000", + "longitude": "25.55171000" + }, + { + "id": "91074", + "name": "Comuna Bragadiru", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.76059000", + "longitude": "25.51984000" + }, + { + "id": "91109", + "name": "Comuna Brânceni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87792000", + "longitude": "25.39711000" + }, + { + "id": "91156", + "name": "Comuna Bujoreni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12054000", + "longitude": "25.65152000" + }, + { + "id": "91157", + "name": "Comuna Bujoru", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.71092000", + "longitude": "25.56315000" + }, + { + "id": "91179", + "name": "Comuna Buzescu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01081000", + "longitude": "25.22886000" + }, + { + "id": "91560", + "name": "Comuna Cãlmãţuiu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96083000", + "longitude": "24.85612000" + }, + { + "id": "91561", + "name": "Comuna Cãlmãţuiu De Sus", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04404000", + "longitude": "24.81582000" + }, + { + "id": "91573", + "name": "Comuna Călineşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11002000", + "longitude": "25.21305000" + }, + { + "id": "91300", + "name": "Comuna Cervenia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.83585000", + "longitude": "25.46050000" + }, + { + "id": "91351", + "name": "Comuna Ciolăneşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31372000", + "longitude": "25.08333000" + }, + { + "id": "91373", + "name": "Comuna Ciuperceni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75115000", + "longitude": "24.94397000" + }, + { + "id": "91415", + "name": "Comuna Conţeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.79183000", + "longitude": "25.49530000" + }, + { + "id": "91450", + "name": "Comuna Cosmeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30661000", + "longitude": "25.38602000" + }, + { + "id": "91513", + "name": "Comuna Crângeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.01370000", + "longitude": "24.80845000" + }, + { + "id": "91514", + "name": "Comuna Crângu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84490000", + "longitude": "25.08121000" + }, + { + "id": "91491", + "name": "Comuna Crevenicu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24508000", + "longitude": "25.57385000" + }, + { + "id": "91624", + "name": "Comuna Dideşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22331000", + "longitude": "24.88878000" + }, + { + "id": "91642", + "name": "Comuna Dobroteşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26466000", + "longitude": "24.88097000" + }, + { + "id": "91669", + "name": "Comuna Dracea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87177000", + "longitude": "25.03182000" + }, + { + "id": "91682", + "name": "Comuna Drãcşenei", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20715000", + "longitude": "25.00370000" + }, + { + "id": "91702", + "name": "Comuna Drăgăneşti de Vede", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13081000", + "longitude": "25.04870000" + }, + { + "id": "91703", + "name": "Comuna Drăgăneşti-Vlaşca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09517000", + "longitude": "25.54848000" + }, + { + "id": "91808", + "name": "Comuna Fântânele", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.72104000", + "longitude": "25.29265000" + }, + { + "id": "91793", + "name": "Comuna Frăsinet", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18808000", + "longitude": "25.37818000" + }, + { + "id": "91783", + "name": "Comuna Frumoasa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80298000", + "longitude": "25.46311000" + }, + { + "id": "91803", + "name": "Comuna Furculeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.86572000", + "longitude": "25.13980000" + }, + { + "id": "91984", + "name": "Comuna Gălăţeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22491000", + "longitude": "25.36466000" + }, + { + "id": "91911", + "name": "Comuna Gratia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43382000", + "longitude": "25.44103000" + }, + { + "id": "92093", + "name": "Comuna Islaz", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75179000", + "longitude": "24.74381000" + }, + { + "id": "92106", + "name": "Comuna Izvoarele", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.82717000", + "longitude": "25.39459000" + }, + { + "id": "92180", + "name": "Comuna Liţa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.79545000", + "longitude": "24.82157000" + }, + { + "id": "92172", + "name": "Comuna Lisa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.77230000", + "longitude": "25.14919000" + }, + { + "id": "92200", + "name": "Comuna Lunca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85788000", + "longitude": "24.78610000" + }, + { + "id": "92248", + "name": "Comuna Mavrodin", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03559000", + "longitude": "25.24088000" + }, + { + "id": "92372", + "name": "Comuna Mârzãneşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93154000", + "longitude": "25.46230000" + }, + { + "id": "92390", + "name": "Comuna Măgura", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04054000", + "longitude": "25.39590000" + }, + { + "id": "92396", + "name": "Comuna Măldăeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12658000", + "longitude": "24.92327000" + }, + { + "id": "92257", + "name": "Comuna Mereni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22879000", + "longitude": "25.64434000" + }, + { + "id": "92350", + "name": "Comuna Moşteni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19787000", + "longitude": "25.50854000" + }, + { + "id": "92426", + "name": "Comuna Nanov", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.99171000", + "longitude": "25.28894000" + }, + { + "id": "92466", + "name": "Comuna Năsturelu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.66634000", + "longitude": "25.43856000" + }, + { + "id": "92427", + "name": "Comuna Necşeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26085000", + "longitude": "25.13225000" + }, + { + "id": "92437", + "name": "Comuna Nenciuleşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03860000", + "longitude": "25.18551000" + }, + { + "id": "92497", + "name": "Comuna Olteni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18976000", + "longitude": "25.27800000" + }, + { + "id": "92506", + "name": "Comuna Orbeasca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11606000", + "longitude": "25.32708000" + }, + { + "id": "92547", + "name": "Comuna Peretu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.04372000", + "longitude": "25.09285000" + }, + { + "id": "92573", + "name": "Comuna Piatra", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81058000", + "longitude": "25.16777000" + }, + { + "id": "92581", + "name": "Comuna Pietroşani", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.71364000", + "longitude": "25.63998000" + }, + { + "id": "92597", + "name": "Comuna Plopii Slăviţeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96098000", + "longitude": "24.68525000" + }, + { + "id": "92601", + "name": "Comuna Plosca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.02338000", + "longitude": "25.14920000" + }, + { + "id": "92618", + "name": "Comuna Poeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43297000", + "longitude": "25.33868000" + }, + { + "id": "92660", + "name": "Comuna Poroschia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.92887000", + "longitude": "25.35760000" + }, + { + "id": "92698", + "name": "Comuna Purani", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36509000", + "longitude": "25.41322000" + }, + { + "id": "92699", + "name": "Comuna Putineiu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91429000", + "longitude": "24.96969000" + }, + { + "id": "92830", + "name": "Comuna Rãdoieşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14377000", + "longitude": "25.15357000" + }, + { + "id": "92848", + "name": "Comuna Răsmireşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.99981000", + "longitude": "25.57118000" + }, + { + "id": "92861", + "name": "Comuna Saelele", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85274000", + "longitude": "24.73838000" + }, + { + "id": "92864", + "name": "Comuna Salcia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94157000", + "longitude": "24.92663000" + }, + { + "id": "93071", + "name": "Comuna Sârbeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "25.38333000" + }, + { + "id": "93084", + "name": "Comuna Săceni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23310000", + "longitude": "25.06073000" + }, + { + "id": "92897", + "name": "Comuna Scrioaştea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16453000", + "longitude": "24.95299000" + }, + { + "id": "92899", + "name": "Comuna Scurtu Mare", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35259000", + "longitude": "25.25895000" + }, + { + "id": "92908", + "name": "Comuna Seaca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.74933000", + "longitude": "25.07423000" + }, + { + "id": "92918", + "name": "Comuna Segarcea Vale", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.82417000", + "longitude": "24.81422000" + }, + { + "id": "92922", + "name": "Comuna Sfinţeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18824000", + "longitude": "25.10389000" + }, + { + "id": "92930", + "name": "Comuna Siliştea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37398000", + "longitude": "25.35104000" + }, + { + "id": "92934", + "name": "Comuna Siliștea Gumești", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38028000", + "longitude": "25.01389000" + }, + { + "id": "92959", + "name": "Comuna Slobozia-Mândra", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91576000", + "longitude": "24.69914000" + }, + { + "id": "92966", + "name": "Comuna Smârdioasa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.83939000", + "longitude": "25.44190000" + }, + { + "id": "92989", + "name": "Comuna Stejaru", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.17715000", + "longitude": "24.88208000" + }, + { + "id": "93000", + "name": "Comuna Storobăneasa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87974000", + "longitude": "25.45622000" + }, + { + "id": "93029", + "name": "Comuna Suhaia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.73953000", + "longitude": "25.25291000" + }, + { + "id": "93121", + "name": "Comuna Talpa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28070000", + "longitude": "25.30919000" + }, + { + "id": "93248", + "name": "Comuna Tătărăştii de Jos", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36960000", + "longitude": "25.19385000" + }, + { + "id": "93249", + "name": "Comuna Tătărăştii de Sus", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40857000", + "longitude": "25.13146000" + }, + { + "id": "93188", + "name": "Comuna Traian", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.76720000", + "longitude": "25.00494000" + }, + { + "id": "93195", + "name": "Comuna Trivalea-Moşteni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26200000", + "longitude": "25.24082000" + }, + { + "id": "93196", + "name": "Comuna Troianul", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00415000", + "longitude": "25.02400000" + }, + { + "id": "93253", + "name": "Comuna Uda-Clocociov", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88385000", + "longitude": "24.71908000" + }, + { + "id": "93445", + "name": "Comuna Vârtoape", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19981000", + "longitude": "25.19797000" + }, + { + "id": "93340", + "name": "Comuna Vedea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.09436000", + "longitude": "25.07495000" + }, + { + "id": "93359", + "name": "Comuna Viişoara", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.77985000", + "longitude": "25.17520000" + }, + { + "id": "93371", + "name": "Comuna Vităneşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.99272000", + "longitude": "25.45246000" + }, + { + "id": "93482", + "name": "Comuna Zâmbreasca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30350000", + "longitude": "24.99847000" + }, + { + "id": "93596", + "name": "Conţeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "25.48333000" + }, + { + "id": "93653", + "name": "Cosmeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.30000000", + "longitude": "25.38333000" + }, + { + "id": "93747", + "name": "Crângeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03333000", + "longitude": "24.78333000" + }, + { + "id": "93748", + "name": "Crângu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84611000", + "longitude": "25.07350000" + }, + { + "id": "93712", + "name": "Crevenicu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.24083000", + "longitude": "25.58861000" + }, + { + "id": "93759", + "name": "Cucueți", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18432000", + "longitude": "24.94826000" + }, + { + "id": "93921", + "name": "Deparați", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28116000", + "longitude": "25.22151000" + }, + { + "id": "93935", + "name": "Didești", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21667000", + "longitude": "24.88333000" + }, + { + "id": "93950", + "name": "Dobreni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.41667000", + "longitude": "25.11667000" + }, + { + "id": "93965", + "name": "Dobroteşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "24.88333000" + }, + { + "id": "94009", + "name": "Dracea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84914000", + "longitude": "25.05194000" + }, + { + "id": "94034", + "name": "Drăcşani", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21667000", + "longitude": "24.98333000" + }, + { + "id": "94035", + "name": "Drăcșenei", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22676000", + "longitude": "24.98542000" + }, + { + "id": "94060", + "name": "Drăgăneşti de Vede", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.13333000", + "longitude": "25.05000000" + }, + { + "id": "94062", + "name": "Drăgăneşti-Vlaşca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.10139000", + "longitude": "25.59806000" + }, + { + "id": "94040", + "name": "Drăghinești", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43093000", + "longitude": "25.42608000" + }, + { + "id": "94072", + "name": "Dudu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.97897000", + "longitude": "24.67786000" + }, + { + "id": "94237", + "name": "Fântânele", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.72104000", + "longitude": "25.29265000" + }, + { + "id": "94218", + "name": "Frăsinet", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18038000", + "longitude": "25.38238000" + }, + { + "id": "94207", + "name": "Frumoasa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "25.46667000" + }, + { + "id": "94233", + "name": "Furculești", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87202000", + "longitude": "25.14285000" + }, + { + "id": "94507", + "name": "Gălăţeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.21667000", + "longitude": "25.35000000" + }, + { + "id": "94512", + "name": "Gărăgău", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23186000", + "longitude": "25.18920000" + }, + { + "id": "94401", + "name": "Gratia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.43333000", + "longitude": "25.45000000" + }, + { + "id": "94473", + "name": "Guruieni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05845000", + "longitude": "25.39656000" + }, + { + "id": "94691", + "name": "Islaz", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.72006000", + "longitude": "24.76436000" + }, + { + "id": "94711", + "name": "Izvoarele", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81667000", + "longitude": "25.38333000" + }, + { + "id": "94888", + "name": "Lăceni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08466000", + "longitude": "25.33270000" + }, + { + "id": "94826", + "name": "Liţa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "24.81667000" + }, + { + "id": "94808", + "name": "Lisa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.80000000", + "longitude": "25.13333000" + }, + { + "id": "94860", + "name": "Lunca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.83333000", + "longitude": "24.76667000" + }, + { + "id": "94937", + "name": "Mavrodin", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03333000", + "longitude": "25.25000000" + }, + { + "id": "95221", + "name": "Mârzăneşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93333000", + "longitude": "25.46667000" + }, + { + "id": "95239", + "name": "Măgura", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03333000", + "longitude": "25.40000000" + }, + { + "id": "95251", + "name": "Măldăeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "24.93333000" + }, + { + "id": "94953", + "name": "Merenii de Jos", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23214000", + "longitude": "25.64346000" + }, + { + "id": "94954", + "name": "Merenii de Sus", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.22839000", + "longitude": "25.62103000" + }, + { + "id": "94960", + "name": "Merișani", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25190000", + "longitude": "24.87550000" + }, + { + "id": "95096", + "name": "Moșteni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19787000", + "longitude": "25.50854000" + }, + { + "id": "95065", + "name": "Moldoveni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.77772000", + "longitude": "24.72802000" + }, + { + "id": "95108", + "name": "Municipiul Alexandria", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96967000", + "longitude": "25.33272000" + }, + { + "id": "95173", + "name": "Municipiul Roșiorii de Vede", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11368000", + "longitude": "24.98722000" + }, + { + "id": "95190", + "name": "Municipiul Turnu Magurele", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.74646000", + "longitude": "24.86893000" + }, + { + "id": "95302", + "name": "Nanov", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00000000", + "longitude": "25.30000000" + }, + { + "id": "95375", + "name": "Năsturelu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.66667000", + "longitude": "25.46667000" + }, + { + "id": "95378", + "name": "Năvodari", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.74208000", + "longitude": "25.09410000" + }, + { + "id": "95304", + "name": "Necşeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.25000000", + "longitude": "25.15000000" + }, + { + "id": "95327", + "name": "Nenciulești", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03486000", + "longitude": "25.20061000" + }, + { + "id": "95429", + "name": "Olteanca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.83047000", + "longitude": "24.79597000" + }, + { + "id": "95432", + "name": "Olteni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "25.28333000" + }, + { + "id": "95618", + "name": "Oraş Videle", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.27660000", + "longitude": "25.57844000" + }, + { + "id": "95623", + "name": "Oraş Zimnicea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.65660000", + "longitude": "25.36603000" + }, + { + "id": "95653", + "name": "Orbeasca de Jos", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.12177000", + "longitude": "25.32952000" + }, + { + "id": "95654", + "name": "Orbeasca de Sus", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15000000", + "longitude": "25.31667000" + }, + { + "id": "95727", + "name": "Peretu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.05000000", + "longitude": "25.08333000" + }, + { + "id": "95734", + "name": "Perii Broșteni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.20336000", + "longitude": "25.26377000" + }, + { + "id": "95770", + "name": "Piatra", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81667000", + "longitude": "25.16667000" + }, + { + "id": "95789", + "name": "Pietroşani", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.71383000", + "longitude": "25.64409000" + }, + { + "id": "95808", + "name": "Pleașov", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.84971000", + "longitude": "24.74886000" + }, + { + "id": "95820", + "name": "Plopii Slăviţeştí", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96667000", + "longitude": "24.68333000" + }, + { + "id": "95827", + "name": "Plosca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.03333000", + "longitude": "25.13333000" + }, + { + "id": "95853", + "name": "Poeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40000000", + "longitude": "25.33333000" + }, + { + "id": "95860", + "name": "Poiana", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.74192000", + "longitude": "24.95244000" + }, + { + "id": "95917", + "name": "Poporogi", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.36667000", + "longitude": "25.18333000" + }, + { + "id": "95921", + "name": "Poroschia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.93333000", + "longitude": "25.36667000" + }, + { + "id": "95965", + "name": "Prundu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.82394000", + "longitude": "24.69196000" + }, + { + "id": "95983", + "name": "Purani", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.97989000", + "longitude": "25.43656000" + }, + { + "id": "95989", + "name": "Putineiu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.90000000", + "longitude": "24.96667000" + }, + { + "id": "96198", + "name": "Rădoiești-Deal", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15000000", + "longitude": "25.13333000" + }, + { + "id": "96207", + "name": "Răsmireşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.98333000", + "longitude": "25.55000000" + }, + { + "id": "96141", + "name": "Roșiorii de Vede", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.11667000", + "longitude": "24.98333000" + }, + { + "id": "96227", + "name": "Saelele", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85577000", + "longitude": "24.72789000" + }, + { + "id": "96230", + "name": "Salcia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.95000000", + "longitude": "24.91667000" + }, + { + "id": "105983", + "name": "Sârbeni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.46667000", + "longitude": "25.38333000" + }, + { + "id": "105995", + "name": "Săceni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.23333000", + "longitude": "25.06667000" + }, + { + "id": "96284", + "name": "Scrioaştea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.15000000", + "longitude": "24.95000000" + }, + { + "id": "96290", + "name": "Scurtu Mare", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.35000000", + "longitude": "25.26667000" + }, + { + "id": "96299", + "name": "Seaca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.75000000", + "longitude": "25.06667000" + }, + { + "id": "96320", + "name": "Segarcea Vale", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.81667000", + "longitude": "24.80000000" + }, + { + "id": "96321", + "name": "Segarcea-Deal", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.82548000", + "longitude": "24.84020000" + }, + { + "id": "96327", + "name": "Sfinţeşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "25.10000000" + }, + { + "id": "96339", + "name": "Siliştea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "25.35000000" + }, + { + "id": "96344", + "name": "Siliștea Gumești", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.38333000", + "longitude": "25.00000000" + }, + { + "id": "96379", + "name": "Slobozia-Mândra", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91667000", + "longitude": "24.70000000" + }, + { + "id": "96392", + "name": "Smârdioasa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.85000000", + "longitude": "25.43333000" + }, + { + "id": "96394", + "name": "Socetu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19502000", + "longitude": "24.85421000" + }, + { + "id": "96420", + "name": "Spătărei", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88848000", + "longitude": "25.13650000" + }, + { + "id": "96428", + "name": "Stejaru", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "24.88333000" + }, + { + "id": "96446", + "name": "Storobăneasa", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88333000", + "longitude": "25.45000000" + }, + { + "id": "96495", + "name": "Suhaia", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.73333000", + "longitude": "25.25000000" + }, + { + "id": "106052", + "name": "Talpa-Ogrăzile", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28726000", + "longitude": "25.29328000" + }, + { + "id": "106053", + "name": "Talpa-Trivalea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.28333000", + "longitude": "25.28333000" + }, + { + "id": "96594", + "name": "Târnava", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.14440000", + "longitude": "25.56347000" + }, + { + "id": "96623", + "name": "Tătărăștii de Jos", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.37501000", + "longitude": "25.17721000" + }, + { + "id": "96624", + "name": "Tătărăștii de Sus", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.40768000", + "longitude": "25.12192000" + }, + { + "id": "106070", + "name": "Tecuci", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.34179000", + "longitude": "24.85966000" + }, + { + "id": "106079", + "name": "Teleormanu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.96271000", + "longitude": "25.45876000" + }, + { + "id": "106148", + "name": "Traian", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.76667000", + "longitude": "25.00000000" + }, + { + "id": "106160", + "name": "Trivalea-Moşteni", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.26667000", + "longitude": "25.23333000" + }, + { + "id": "106161", + "name": "Troianul", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00000000", + "longitude": "25.00000000" + }, + { + "id": "106167", + "name": "Tudor Vladimirescu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.94761000", + "longitude": "24.90616000" + }, + { + "id": "96565", + "name": "Turnu Măgurele", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.74690000", + "longitude": "24.86846000" + }, + { + "id": "96636", + "name": "Uda-Clocociov", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.88791000", + "longitude": "24.71437000" + }, + { + "id": "96637", + "name": "Uda-Paciurea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.87979000", + "longitude": "24.72379000" + }, + { + "id": "96639", + "name": "Udupu", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.39657000", + "longitude": "25.14488000" + }, + { + "id": "96716", + "name": "Valea Cireșului", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.16699000", + "longitude": "25.56437000" + }, + { + "id": "96746", + "name": "Valea Părului", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.91727000", + "longitude": "25.46589000" + }, + { + "id": "96945", + "name": "Vârtoapele de Jos", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.18333000", + "longitude": "25.20000000" + }, + { + "id": "96946", + "name": "Vârtoapele de Sus", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.19182000", + "longitude": "25.20025000" + }, + { + "id": "96781", + "name": "Vedea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.08333000", + "longitude": "25.06667000" + }, + { + "id": "96807", + "name": "Videle", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.27806000", + "longitude": "25.52444000" + }, + { + "id": "96822", + "name": "Viişoara", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.78333000", + "longitude": "25.16667000" + }, + { + "id": "96841", + "name": "Vităneşti", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.00000000", + "longitude": "25.41667000" + }, + { + "id": "97007", + "name": "Zâmbreasca", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "44.31667000", + "longitude": "24.98333000" + }, + { + "id": "96995", + "name": "Zimnicea", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.65638000", + "longitude": "25.36454000" + }, + { + "id": "96996", + "name": "Zimnicele", + "state_id": 4728, + "state_code": "TR", + "country_id": 181, + "country_code": "RO", + "latitude": "43.66126000", + "longitude": "25.41291000" + }, + { + "id": "97027", + "name": "Şag", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64861000", + "longitude": "21.17556000" + }, + { + "id": "97030", + "name": "Şandra", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92500000", + "longitude": "20.89028000" + }, + { + "id": "97089", + "name": "Ştiuca", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57139000", + "longitude": "21.97667000" + }, + { + "id": "90024", + "name": "Bacova", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66410000", + "longitude": "21.55238000" + }, + { + "id": "90044", + "name": "Balinţ", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81250000", + "longitude": "21.85361000" + }, + { + "id": "90055", + "name": "Banloc", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38742000", + "longitude": "21.13581000" + }, + { + "id": "90056", + "name": "Bara", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89472000", + "longitude": "21.87194000" + }, + { + "id": "90452", + "name": "Bârna", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "22.05000000" + }, + { + "id": "90074", + "name": "Beba Veche", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "20.31667000" + }, + { + "id": "90077", + "name": "Becicherecu Mic", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82917000", + "longitude": "21.05139000" + }, + { + "id": "90089", + "name": "Belinţ", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75500000", + "longitude": "21.76028000" + }, + { + "id": "90101", + "name": "Beregsău Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75921000", + "longitude": "21.02666000" + }, + { + "id": "90120", + "name": "Bethausen", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83306000", + "longitude": "21.95278000" + }, + { + "id": "90137", + "name": "Biled", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88639000", + "longitude": "20.95889000" + }, + { + "id": "90141", + "name": "Birda", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.42996000", + "longitude": "21.34359000" + }, + { + "id": "90186", + "name": "Bogda", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97833000", + "longitude": "21.57250000" + }, + { + "id": "90212", + "name": "Boldur", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69417000", + "longitude": "21.77667000" + }, + { + "id": "90297", + "name": "Brestovăț", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87342000", + "longitude": "21.68201000" + }, + { + "id": "90361", + "name": "Bucovăț", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75569000", + "longitude": "21.38324000" + }, + { + "id": "90402", + "name": "Bulgăruș", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91947000", + "longitude": "20.82219000" + }, + { + "id": "90432", + "name": "Buziaş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64917000", + "longitude": "21.60361000" + }, + { + "id": "90574", + "name": "Carani", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91095000", + "longitude": "21.15686000" + }, + { + "id": "93870", + "name": "Cărpiniş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78722000", + "longitude": "20.90417000" + }, + { + "id": "90613", + "name": "Cenad", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "20.58333000" + }, + { + "id": "90615", + "name": "Cenei", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71583000", + "longitude": "20.90389000" + }, + { + "id": "90652", + "name": "Checea", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75298000", + "longitude": "20.83596000" + }, + { + "id": "90659", + "name": "Chevereşu Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66694000", + "longitude": "21.49083000" + }, + { + "id": "90690", + "name": "Chișoda", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70380000", + "longitude": "21.21437000" + }, + { + "id": "90693", + "name": "Ciacova", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50806000", + "longitude": "21.12861000" + }, + { + "id": "93693", + "name": "Coşteiu", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.74111000", + "longitude": "21.84917000" + }, + { + "id": "90800", + "name": "Colonia Fabricii", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76620000", + "longitude": "22.31463000" + }, + { + "id": "90814", + "name": "Comloşu Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89056000", + "longitude": "20.62722000" + }, + { + "id": "93495", + "name": "Comuna Şag", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65184000", + "longitude": "21.16933000" + }, + { + "id": "93498", + "name": "Comuna Şandra", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91878000", + "longitude": "20.87801000" + }, + { + "id": "93557", + "name": "Comuna Ştiuca", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56283000", + "longitude": "21.97988000" + }, + { + "id": "90926", + "name": "Comuna Balinţ", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82290000", + "longitude": "21.85841000" + }, + { + "id": "90934", + "name": "Comuna Banloc", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38603000", + "longitude": "21.13203000" + }, + { + "id": "90935", + "name": "Comuna Bara", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91096000", + "longitude": "21.90440000" + }, + { + "id": "91189", + "name": "Comuna Bârna", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71642000", + "longitude": "22.06530000" + }, + { + "id": "90943", + "name": "Comuna Beba Veche", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13503000", + "longitude": "20.36289000" + }, + { + "id": "90945", + "name": "Comuna Becicherecu Mic", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83475000", + "longitude": "21.05195000" + }, + { + "id": "90953", + "name": "Comuna Belinţ", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77023000", + "longitude": "21.77550000" + }, + { + "id": "90978", + "name": "Comuna Bethausen", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82505000", + "longitude": "21.96054000" + }, + { + "id": "90990", + "name": "Comuna Biled", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88760000", + "longitude": "20.96214000" + }, + { + "id": "90993", + "name": "Comuna Birda", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41265000", + "longitude": "21.33733000" + }, + { + "id": "91021", + "name": "Comuna Bogda", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97025000", + "longitude": "21.56964000" + }, + { + "id": "91040", + "name": "Comuna Boldur", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70016000", + "longitude": "21.76225000" + }, + { + "id": "91095", + "name": "Comuna Brestovăţ", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87818000", + "longitude": "21.67986000" + }, + { + "id": "91135", + "name": "Comuna Bucovăţ", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75309000", + "longitude": "21.40277000" + }, + { + "id": "91590", + "name": "Comuna Cărpiniş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80603000", + "longitude": "20.91452000" + }, + { + "id": "91280", + "name": "Comuna Cenad", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13371000", + "longitude": "20.58001000" + }, + { + "id": "91282", + "name": "Comuna Cenei", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72608000", + "longitude": "20.92561000" + }, + { + "id": "91308", + "name": "Comuna Checea", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75298000", + "longitude": "20.83596000" + }, + { + "id": "91310", + "name": "Comuna Chevereşu Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66230000", + "longitude": "21.47888000" + }, + { + "id": "91478", + "name": "Comuna Coşteiu", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75242000", + "longitude": "21.88756000" + }, + { + "id": "91409", + "name": "Comuna Comloşu Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87549000", + "longitude": "20.62938000" + }, + { + "id": "91494", + "name": "Comuna Criciova", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64454000", + "longitude": "22.06260000" + }, + { + "id": "91528", + "name": "Comuna Curtea", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84453000", + "longitude": "22.32658000" + }, + { + "id": "91604", + "name": "Comuna Darova", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63081000", + "longitude": "21.76709000" + }, + { + "id": "91614", + "name": "Comuna Denta", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35950000", + "longitude": "21.28331000" + }, + { + "id": "91707", + "name": "Comuna Dudeştii Noi", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83989000", + "longitude": "21.10215000" + }, + { + "id": "91708", + "name": "Comuna Dudeştii Vechi", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08562000", + "longitude": "20.44521000" + }, + { + "id": "91710", + "name": "Comuna Dumbrava", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81746000", + "longitude": "22.12550000" + }, + { + "id": "91717", + "name": "Comuna Dumbrăviţa", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80011000", + "longitude": "21.24648000" + }, + { + "id": "91811", + "name": "Comuna Fârdea", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.74895000", + "longitude": "22.19779000" + }, + { + "id": "91760", + "name": "Comuna Fibiş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97280000", + "longitude": "21.42355000" + }, + { + "id": "91775", + "name": "Comuna Foeni", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48613000", + "longitude": "20.87810000" + }, + { + "id": "91834", + "name": "Comuna Gavojdia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61284000", + "longitude": "22.02471000" + }, + { + "id": "91854", + "name": "Comuna Ghilad", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.46633000", + "longitude": "21.06467000" + }, + { + "id": "91863", + "name": "Comuna Ghiroda", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78494000", + "longitude": "21.30245000" + }, + { + "id": "91864", + "name": "Comuna Ghizela", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82641000", + "longitude": "21.75048000" + }, + { + "id": "91865", + "name": "Comuna Giarmata", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84218000", + "longitude": "21.28918000" + }, + { + "id": "91866", + "name": "Comuna Giera", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.42060000", + "longitude": "20.94696000" + }, + { + "id": "91871", + "name": "Comuna Giroc", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70020000", + "longitude": "21.22641000" + }, + { + "id": "91875", + "name": "Comuna Giulvăz", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.52522000", + "longitude": "20.98501000" + }, + { + "id": "91908", + "name": "Comuna Gottlob", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93916000", + "longitude": "20.68384000" + }, + { + "id": "92062", + "name": "Comuna Iecea Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85074000", + "longitude": "20.89310000" + }, + { + "id": "92114", + "name": "Comuna Jamu Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26768000", + "longitude": "21.44318000" + }, + { + "id": "92116", + "name": "Comuna Jebel", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56020000", + "longitude": "21.21805000" + }, + { + "id": "92150", + "name": "Comuna Lenauheim", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89042000", + "longitude": "20.78901000" + }, + { + "id": "92163", + "name": "Comuna Liebling", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57121000", + "longitude": "21.33526000" + }, + { + "id": "92178", + "name": "Comuna Livezile", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40994000", + "longitude": "21.06179000" + }, + { + "id": "92185", + "name": "Comuna Lovrin", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96943000", + "longitude": "20.76953000" + }, + { + "id": "92249", + "name": "Comuna Maşloc", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99637000", + "longitude": "21.45484000" + }, + { + "id": "92242", + "name": "Comuna Margina", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86159000", + "longitude": "22.27233000" + }, + { + "id": "92404", + "name": "Comuna Mănăştiur", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86808000", + "longitude": "22.05329000" + }, + { + "id": "92348", + "name": "Comuna Moşniţa Nouã", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71397000", + "longitude": "21.32403000" + }, + { + "id": "92331", + "name": "Comuna Moraviţa", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28025000", + "longitude": "21.25570000" + }, + { + "id": "92460", + "name": "Comuna Nădrag", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65064000", + "longitude": "22.15383000" + }, + { + "id": "92450", + "name": "Comuna Niţchidorf", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57379000", + "longitude": "21.52266000" + }, + { + "id": "92488", + "name": "Comuna Ohaba Lungă", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91812000", + "longitude": "21.99094000" + }, + { + "id": "92514", + "name": "Comuna Orţişoara", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95206000", + "longitude": "21.22370000" + }, + { + "id": "92521", + "name": "Comuna Otelec", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.59079000", + "longitude": "20.85648000" + }, + { + "id": "92541", + "name": "Comuna Parţa", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.62888000", + "longitude": "21.13877000" + }, + { + "id": "92715", + "name": "Comuna Pădureni", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60039000", + "longitude": "21.21773000" + }, + { + "id": "92545", + "name": "Comuna Peciu Nou", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.62070000", + "longitude": "21.00816000" + }, + { + "id": "92548", + "name": "Comuna Periam", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04394000", + "longitude": "20.87517000" + }, + { + "id": "92558", + "name": "Comuna Pesac", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99590000", + "longitude": "20.83522000" + }, + { + "id": "92589", + "name": "Comuna Pişchia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90460000", + "longitude": "21.40241000" + }, + { + "id": "92579", + "name": "Comuna Pietroasa", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82012000", + "longitude": "22.41805000" + }, + { + "id": "92734", + "name": "Comuna Racoviţa", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70441000", + "longitude": "21.63935000" + }, + { + "id": "92766", + "name": "Comuna Remetea Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81036000", + "longitude": "21.39893000" + }, + { + "id": "92856", + "name": "Comuna Sacoşu Turcesc", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63526000", + "longitude": "21.39828000" + }, + { + "id": "92874", + "name": "Comuna Saravale", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06929000", + "longitude": "20.74085000" + }, + { + "id": "92879", + "name": "Comuna Satchinez", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93933000", + "longitude": "21.07597000" + }, + { + "id": "93048", + "name": "Comuna Sânandrei", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.86677000", + "longitude": "21.18623000" + }, + { + "id": "93058", + "name": "Comuna Sânmihaiu Român", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71002000", + "longitude": "21.08352000" + }, + { + "id": "93064", + "name": "Comuna Sânpetru Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07994000", + "longitude": "20.80148000" + }, + { + "id": "93086", + "name": "Comuna Săcălaz", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75681000", + "longitude": "21.03903000" + }, + { + "id": "92911", + "name": "Comuna Secaş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90501000", + "longitude": "21.80832000" + }, + { + "id": "93142", + "name": "Comuna Teremia Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95401000", + "longitude": "20.52908000" + }, + { + "id": "93169", + "name": "Comuna Tomeşti", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76670000", + "longitude": "22.30974000" + }, + { + "id": "93170", + "name": "Comuna Tomnatic", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98857000", + "longitude": "20.66186000" + }, + { + "id": "93179", + "name": "Comuna Topolovãţu Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78363000", + "longitude": "21.63784000" + }, + { + "id": "93182", + "name": "Comuna Tormac", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.52140000", + "longitude": "21.47648000" + }, + { + "id": "93190", + "name": "Comuna Traian Vuia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78754000", + "longitude": "22.04595000" + }, + { + "id": "93256", + "name": "Comuna Uivar", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65085000", + "longitude": "20.90281000" + }, + { + "id": "93334", + "name": "Comuna Variaş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01491000", + "longitude": "21.01965000" + }, + { + "id": "93457", + "name": "Comuna Vălcani", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00357000", + "longitude": "20.39865000" + }, + { + "id": "93351", + "name": "Comuna Victor Vlad Delamarina", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61227000", + "longitude": "21.87572000" + }, + { + "id": "93401", + "name": "Comuna Voiteg", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48472000", + "longitude": "21.26977000" + }, + { + "id": "93716", + "name": "Criciova", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63333000", + "longitude": "22.06667000" + }, + { + "id": "93773", + "name": "Curtea", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "22.30000000" + }, + { + "id": "93895", + "name": "Darova", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64200000", + "longitude": "21.77333000" + }, + { + "id": "93896", + "name": "Darova Nouă", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63333000", + "longitude": "21.76667000" + }, + { + "id": "93920", + "name": "Denta", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35389000", + "longitude": "21.24917000" + }, + { + "id": "93927", + "name": "Deta", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38889000", + "longitude": "21.22444000" + }, + { + "id": "94070", + "name": "Dudeştii Vechi", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "20.48333000" + }, + { + "id": "94071", + "name": "Dudeștii Noi", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83989000", + "longitude": "21.10215000" + }, + { + "id": "94075", + "name": "Dumbrava", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "22.11667000" + }, + { + "id": "94090", + "name": "Dumbrăviţa", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79694000", + "longitude": "21.24250000" + }, + { + "id": "94244", + "name": "Fârdea", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73333000", + "longitude": "22.16667000" + }, + { + "id": "94251", + "name": "Făget", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "22.18333000" + }, + { + "id": "94163", + "name": "Fibiș", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.97280000", + "longitude": "21.42355000" + }, + { + "id": "94194", + "name": "Foeni", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.49861000", + "longitude": "20.87583000" + }, + { + "id": "94284", + "name": "Gavojdia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61667000", + "longitude": "22.01667000" + }, + { + "id": "94513", + "name": "Gătaia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43111000", + "longitude": "21.43000000" + }, + { + "id": "94287", + "name": "Gelu", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00591000", + "longitude": "21.06002000" + }, + { + "id": "94320", + "name": "Ghilad", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.46501000", + "longitude": "21.13824000" + }, + { + "id": "94337", + "name": "Ghiroda", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76389000", + "longitude": "21.30028000" + }, + { + "id": "94339", + "name": "Ghizela", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82417000", + "longitude": "21.73722000" + }, + { + "id": "94340", + "name": "Giarmata", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83833000", + "longitude": "21.31083000" + }, + { + "id": "94341", + "name": "Giarmata-Vii", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79960000", + "longitude": "21.30026000" + }, + { + "id": "94342", + "name": "Giera", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40722000", + "longitude": "20.99222000" + }, + { + "id": "94347", + "name": "Giroc", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69417000", + "longitude": "21.23583000" + }, + { + "id": "94351", + "name": "Giulvăz", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.54889000", + "longitude": "20.98444000" + }, + { + "id": "94395", + "name": "Gottlob", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93600000", + "longitude": "20.71168000" + }, + { + "id": "94398", + "name": "Grabăț", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87861000", + "longitude": "20.74238000" + }, + { + "id": "94543", + "name": "Hodoni", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90646000", + "longitude": "21.08851000" + }, + { + "id": "94639", + "name": "Iecea Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85074000", + "longitude": "20.89310000" + }, + { + "id": "94640", + "name": "Iecea Mică", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82147000", + "longitude": "20.92322000" + }, + { + "id": "94652", + "name": "Igriș", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11313000", + "longitude": "20.78496000" + }, + { + "id": "94701", + "name": "Izvin", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80034000", + "longitude": "21.46066000" + }, + { + "id": "94722", + "name": "Jamu Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25417000", + "longitude": "21.41694000" + }, + { + "id": "94724", + "name": "Jebel", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.55556000", + "longitude": "21.21361000" + }, + { + "id": "94738", + "name": "Jimbolia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79139000", + "longitude": "20.71722000" + }, + { + "id": "94777", + "name": "Lenauheim", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87194000", + "longitude": "20.79944000" + }, + { + "id": "94794", + "name": "Liebling", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57750000", + "longitude": "21.32167000" + }, + { + "id": "94824", + "name": "Livezile", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.39026000", + "longitude": "21.05794000" + }, + { + "id": "94834", + "name": "Lovrin", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96806000", + "longitude": "20.77028000" + }, + { + "id": "94846", + "name": "Lugoj", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68861000", + "longitude": "21.90306000" + }, + { + "id": "94941", + "name": "Maşloc", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99806000", + "longitude": "21.44972000" + }, + { + "id": "94929", + "name": "Margina", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85841000", + "longitude": "22.26654000" + }, + { + "id": "95263", + "name": "Mănăştiur", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81667000", + "longitude": "22.06667000" + }, + { + "id": "95090", + "name": "Moşniţa Nouă", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71722000", + "longitude": "21.32528000" + }, + { + "id": "95095", + "name": "Moșnița Veche", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73549000", + "longitude": "21.33396000" + }, + { + "id": "95070", + "name": "Moraviţa", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25583000", + "longitude": "21.27028000" + }, + { + "id": "95151", + "name": "Municipiul Lugoj", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.67678000", + "longitude": "21.95988000" + }, + { + "id": "95187", + "name": "Municipiul Timişoara", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75641000", + "longitude": "21.22974000" + }, + { + "id": "95368", + "name": "Nădrag", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65000000", + "longitude": "22.18333000" + }, + { + "id": "95331", + "name": "Nerău", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96929000", + "longitude": "20.56070000" + }, + { + "id": "95352", + "name": "Niţchidorf", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58333000", + "longitude": "21.53333000" + }, + { + "id": "95418", + "name": "Ohaba Lungă", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90740000", + "longitude": "21.98535000" + }, + { + "id": "95478", + "name": "Oraş Buziaş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64035000", + "longitude": "21.58934000" + }, + { + "id": "95493", + "name": "Oraş Ciacova", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.53242000", + "longitude": "21.10558000" + }, + { + "id": "95508", + "name": "Oraş Deta", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40518000", + "longitude": "21.24829000" + }, + { + "id": "95521", + "name": "Oraş Fãget", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85770000", + "longitude": "22.17610000" + }, + { + "id": "95527", + "name": "Oraş Gãtaia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37402000", + "longitude": "21.40796000" + }, + { + "id": "95536", + "name": "Oraş Jimbolia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79226000", + "longitude": "20.71997000" + }, + { + "id": "95577", + "name": "Oraş Recaş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82646000", + "longitude": "21.52629000" + }, + { + "id": "95596", + "name": "Oraş Sânnicolau Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07292000", + "longitude": "20.62281000" + }, + { + "id": "95670", + "name": "Orţişoara", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96361000", + "longitude": "21.19833000" + }, + { + "id": "95681", + "name": "Otelec", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61478000", + "longitude": "20.84952000" + }, + { + "id": "95716", + "name": "Parța", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.62888000", + "longitude": "21.13877000" + }, + { + "id": "96008", + "name": "Pădureni", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60039000", + "longitude": "21.21773000" + }, + { + "id": "95724", + "name": "Peciu Nou", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60639000", + "longitude": "21.05778000" + }, + { + "id": "95728", + "name": "Periam", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05000000", + "longitude": "20.86667000" + }, + { + "id": "95743", + "name": "Pesac", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99590000", + "longitude": "20.83522000" + }, + { + "id": "95804", + "name": "Pişchia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90306000", + "longitude": "21.33722000" + }, + { + "id": "95783", + "name": "Pietroasa", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "22.40000000" + }, + { + "id": "96043", + "name": "Racoviţa", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69833000", + "longitude": "21.63583000" + }, + { + "id": "96184", + "name": "Răchita", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83827000", + "longitude": "22.10615000" + }, + { + "id": "96067", + "name": "Recaş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79889000", + "longitude": "21.50083000" + }, + { + "id": "96084", + "name": "Remetea Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77944000", + "longitude": "21.37611000" + }, + { + "id": "96220", + "name": "Sacoşu Turcesc", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65194000", + "longitude": "21.42889000" + }, + { + "id": "96221", + "name": "Sacoșu Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58503000", + "longitude": "21.72958000" + }, + { + "id": "96245", + "name": "Saravale", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06929000", + "longitude": "20.74085000" + }, + { + "id": "96252", + "name": "Satchinez", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93750000", + "longitude": "21.04056000" + }, + { + "id": "96522", + "name": "Sânandrei", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85306000", + "longitude": "21.16806000" + }, + { + "id": "96535", + "name": "Sânmihaiu Român", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70444000", + "longitude": "21.08889000" + }, + { + "id": "96540", + "name": "Sânnicolau Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.08333000", + "longitude": "20.63333000" + }, + { + "id": "96545", + "name": "Sânpetru Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04515000", + "longitude": "20.81834000" + }, + { + "id": "106000", + "name": "Săcălaz", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75833000", + "longitude": "21.11222000" + }, + { + "id": "96285", + "name": "Sculia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44429000", + "longitude": "21.43225000" + }, + { + "id": "96305", + "name": "Secaş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88500000", + "longitude": "21.81917000" + }, + { + "id": "106085", + "name": "Teremia Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93528000", + "longitude": "20.52500000" + }, + { + "id": "106102", + "name": "Timişoara", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75372000", + "longitude": "21.22571000" + }, + { + "id": "106120", + "name": "Tomeşti", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "22.30000000" + }, + { + "id": "106124", + "name": "Tomnatic", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98857000", + "longitude": "20.66186000" + }, + { + "id": "106137", + "name": "Topolovăţu Mare", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77389000", + "longitude": "21.61889000" + }, + { + "id": "106140", + "name": "Tormac", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.52083000", + "longitude": "21.49361000" + }, + { + "id": "106151", + "name": "Traian Vuia", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.80000000", + "longitude": "22.06667000" + }, + { + "id": "96642", + "name": "Uivar", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65806000", + "longitude": "20.90583000" + }, + { + "id": "96684", + "name": "Urseni", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69269000", + "longitude": "21.30993000" + }, + { + "id": "96692", + "name": "Utvin", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71298000", + "longitude": "21.13011000" + }, + { + "id": "96773", + "name": "Variaş", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "20.95000000" + }, + { + "id": "96958", + "name": "Vălcani", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00357000", + "longitude": "20.39865000" + }, + { + "id": "96802", + "name": "Victor Vlad Delamarina", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.64056000", + "longitude": "21.89278000" + }, + { + "id": "96883", + "name": "Voiteg", + "state_id": 4748, + "state_code": "TM", + "country_id": 181, + "country_code": "RO", + "latitude": "45.46889000", + "longitude": "21.23917000" + }, + { + "id": "89897", + "name": "Agighiol", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03362000", + "longitude": "28.87628000" + }, + { + "id": "90018", + "name": "Babadag", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "28.71667000" + }, + { + "id": "90027", + "name": "Baia", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "28.66667000" + }, + { + "id": "90124", + "name": "Beștepe", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09241000", + "longitude": "29.01478000" + }, + { + "id": "90081", + "name": "Beidaud", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.71667000", + "longitude": "28.56667000" + }, + { + "id": "90557", + "name": "C.A. Rosetti", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "29.56667000" + }, + { + "id": "90579", + "name": "Carcaliu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "28.15000000" + }, + { + "id": "90583", + "name": "Casimcea", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "28.36667000" + }, + { + "id": "90588", + "name": "Cataloi", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09581000", + "longitude": "28.72856000" + }, + { + "id": "90600", + "name": "Ceamurlia de Jos", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "28.71667000" + }, + { + "id": "90601", + "name": "Ceamurlia de Sus", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76373000", + "longitude": "28.60881000" + }, + { + "id": "90604", + "name": "Ceatalchioi", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "28.78333000" + }, + { + "id": "90628", + "name": "Cerna", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "28.31667000" + }, + { + "id": "90666", + "name": "Chilia Veche", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41667000", + "longitude": "29.28333000" + }, + { + "id": "90743", + "name": "Ciucurova", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93333000", + "longitude": "28.48333000" + }, + { + "id": "90917", + "name": "Comuna Baia", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75708000", + "longitude": "28.64028000" + }, + { + "id": "90981", + "name": "Comuna Beştepe", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11243000", + "longitude": "29.02425000" + }, + { + "id": "90948", + "name": "Comuna Beidaud", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72132000", + "longitude": "28.53265000" + }, + { + "id": "91250", + "name": "Comuna C.A. Rosetti", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30207000", + "longitude": "29.57289000" + }, + { + "id": "91261", + "name": "Comuna Carcaliu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18688000", + "longitude": "28.14870000" + }, + { + "id": "91263", + "name": "Comuna Casimcea", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76276000", + "longitude": "28.33156000" + }, + { + "id": "91272", + "name": "Comuna Ceamurlia de Jos", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73731000", + "longitude": "28.75115000" + }, + { + "id": "91274", + "name": "Comuna Ceatalchioi", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.27904000", + "longitude": "28.78323000" + }, + { + "id": "91291", + "name": "Comuna Cerna", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04007000", + "longitude": "28.31668000" + }, + { + "id": "91314", + "name": "Comuna Chilia Veche", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37799000", + "longitude": "29.21511000" + }, + { + "id": "91365", + "name": "Comuna Ciucurova", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91355000", + "longitude": "28.47111000" + }, + { + "id": "91504", + "name": "Comuna Crişan", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16093000", + "longitude": "29.34258000" + }, + { + "id": "91732", + "name": "Comuna Dăeni", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84533000", + "longitude": "28.13218000" + }, + { + "id": "91664", + "name": "Comuna Dorobanţu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94874000", + "longitude": "28.30073000" + }, + { + "id": "91782", + "name": "Comuna Frecăţei", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11808000", + "longitude": "28.64492000" + }, + { + "id": "91915", + "name": "Comuna Greci", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.19132000", + "longitude": "28.23854000" + }, + { + "id": "91918", + "name": "Comuna Grindu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40829000", + "longitude": "28.20031000" + }, + { + "id": "91991", + "name": "Comuna Hamcearca", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11559000", + "longitude": "28.39383000" + }, + { + "id": "92018", + "name": "Comuna Horia", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03655000", + "longitude": "28.45947000" + }, + { + "id": "92048", + "name": "Comuna I.C.Brãtianu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40648000", + "longitude": "28.05332000" + }, + { + "id": "92107", + "name": "Comuna Izvoarele", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03932000", + "longitude": "28.53351000" + }, + { + "id": "92122", + "name": "Comuna Jijila", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32554000", + "longitude": "28.15710000" + }, + { + "id": "92135", + "name": "Comuna Jurilovca", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77261000", + "longitude": "28.86906000" + }, + { + "id": "92208", + "name": "Comuna Luncaviţa", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28653000", + "longitude": "28.30029000" + }, + { + "id": "92229", + "name": "Comuna Mahmudia", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08582000", + "longitude": "29.08775000" + }, + { + "id": "92232", + "name": "Comuna Maliuc", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18330000", + "longitude": "29.04828000" + }, + { + "id": "92271", + "name": "Comuna Mihai Bravu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95974000", + "longitude": "28.65504000" + }, + { + "id": "92275", + "name": "Comuna Mihail Kogălniceanu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02225000", + "longitude": "28.72861000" + }, + { + "id": "92362", + "name": "Comuna Murighiol", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02504000", + "longitude": "29.15177000" + }, + { + "id": "92424", + "name": "Comuna Nalbant", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04119000", + "longitude": "28.59827000" + }, + { + "id": "92446", + "name": "Comuna Niculiţel", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18251000", + "longitude": "28.48139000" + }, + { + "id": "92457", + "name": "Comuna Nufăru", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14333000", + "longitude": "28.92452000" + }, + { + "id": "92519", + "name": "Comuna Ostrov", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91052000", + "longitude": "28.14640000" + }, + { + "id": "92537", + "name": "Comuna Pardina", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30780000", + "longitude": "28.95691000" + }, + { + "id": "92542", + "name": "Comuna Peceneaga", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00849000", + "longitude": "28.14872000" + }, + { + "id": "92875", + "name": "Comuna Sarichioi", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92129000", + "longitude": "28.81870000" + }, + { + "id": "92924", + "name": "Comuna Sfântu Gheorghe", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89654000", + "longitude": "29.59357000" + }, + { + "id": "92949", + "name": "Comuna Slava Cercheză", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87578000", + "longitude": "28.58134000" + }, + { + "id": "92965", + "name": "Comuna Smârdan", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28462000", + "longitude": "28.00599000" + }, + { + "id": "92976", + "name": "Comuna Somova", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18861000", + "longitude": "28.65673000" + }, + { + "id": "92988", + "name": "Comuna Stejaru", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78528000", + "longitude": "28.53996000" + }, + { + "id": "93178", + "name": "Comuna Topolog", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86083000", + "longitude": "28.34320000" + }, + { + "id": "93211", + "name": "Comuna Turcoaia", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10923000", + "longitude": "28.18806000" + }, + { + "id": "93319", + "name": "Comuna Valea Nucarilor", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03206000", + "longitude": "28.91994000" + }, + { + "id": "93326", + "name": "Comuna Valea Teilor", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11150000", + "longitude": "28.48801000" + }, + { + "id": "93451", + "name": "Comuna Văcăreni", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32463000", + "longitude": "28.19504000" + }, + { + "id": "93733", + "name": "Crişan", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "29.46667000" + }, + { + "id": "93737", + "name": "Crișan", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17462000", + "longitude": "29.38598000" + }, + { + "id": "94116", + "name": "Dăeni", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83333000", + "longitude": "28.11667000" + }, + { + "id": "94000", + "name": "Dorobanţu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "28.26667000" + }, + { + "id": "94142", + "name": "Enisala", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87956000", + "longitude": "28.81872000" + }, + { + "id": "94204", + "name": "Frecăţei", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "28.66667000" + }, + { + "id": "94283", + "name": "Garvăn", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.34710000", + "longitude": "28.16187000" + }, + { + "id": "94409", + "name": "Greci", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "28.23333000" + }, + { + "id": "94413", + "name": "Grindu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40000000", + "longitude": "28.21667000" + }, + { + "id": "94521", + "name": "Hamcearca", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "28.36667000" + }, + { + "id": "94562", + "name": "Horia", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "28.45000000" + }, + { + "id": "94611", + "name": "I. C. Brătianu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.40581000", + "longitude": "28.05381000" + }, + { + "id": "94629", + "name": "Iazurile", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02162000", + "longitude": "28.94281000" + }, + { + "id": "94688", + "name": "Isaccea", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26667000", + "longitude": "28.46667000" + }, + { + "id": "94708", + "name": "Izvoarele", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "28.53333000" + }, + { + "id": "94735", + "name": "Jijila", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "28.15000000" + }, + { + "id": "94755", + "name": "Jurilovca", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "28.86667000" + }, + { + "id": "94857", + "name": "Lunca", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73288000", + "longitude": "28.77495000" + }, + { + "id": "94876", + "name": "Luncaviţa", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28333000", + "longitude": "28.26667000" + }, + { + "id": "94906", + "name": "Mahmudia", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "29.08333000" + }, + { + "id": "94911", + "name": "Malcoci", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13851000", + "longitude": "28.88824000" + }, + { + "id": "94912", + "name": "Maliuc", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17678000", + "longitude": "29.11334000" + }, + { + "id": "95229", + "name": "Măcin", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24371000", + "longitude": "28.13564000" + }, + { + "id": "94975", + "name": "Mihai Bravu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "28.65000000" + }, + { + "id": "94982", + "name": "Mihail Kogălniceanu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "28.73333000" + }, + { + "id": "95007", + "name": "Mineri", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16472000", + "longitude": "28.71573000" + }, + { + "id": "95188", + "name": "Municipiul Tulcea", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18325000", + "longitude": "28.79298000" + }, + { + "id": "95208", + "name": "Murighiol", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "29.16667000" + }, + { + "id": "95300", + "name": "Nalbant", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "28.61667000" + }, + { + "id": "95335", + "name": "Nicolae Bălcescu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99714000", + "longitude": "28.58757000" + }, + { + "id": "95343", + "name": "Niculiţel", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "28.48333000" + }, + { + "id": "95363", + "name": "Nufăru", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "28.91667000" + }, + { + "id": "95453", + "name": "Oraş Babadag", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89092000", + "longitude": "28.71858000" + }, + { + "id": "95535", + "name": "Oraş Isaccea", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26900000", + "longitude": "28.40446000" + }, + { + "id": "95545", + "name": "Oraş Mãcin", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24736000", + "longitude": "28.13830000" + }, + { + "id": "95594", + "name": "Oraş Sulina", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15608000", + "longitude": "29.65197000" + }, + { + "id": "95677", + "name": "Ostrov", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93333000", + "longitude": "28.15000000" + }, + { + "id": "95711", + "name": "Pardina", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.30000000", + "longitude": "28.96667000" + }, + { + "id": "95720", + "name": "Peceneaga", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "28.13333000" + }, + { + "id": "96037", + "name": "Rachelu", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28667000", + "longitude": "28.32349000" + }, + { + "id": "96246", + "name": "Sarichioi", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "28.85000000" + }, + { + "id": "106010", + "name": "Sălcioara", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "28.88333000" + }, + { + "id": "96328", + "name": "Sfântu Gheorghe", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89600000", + "longitude": "29.59294000" + }, + { + "id": "96364", + "name": "Slava Cercheză", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90128000", + "longitude": "28.54753000" + }, + { + "id": "96365", + "name": "Slava Rusă", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85029000", + "longitude": "28.60557000" + }, + { + "id": "96391", + "name": "Smârdan", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.28670000", + "longitude": "28.00368000" + }, + { + "id": "96409", + "name": "Somova", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "28.66667000" + }, + { + "id": "96426", + "name": "Stejaru", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "28.55000000" + }, + { + "id": "96499", + "name": "Sulina", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15564000", + "longitude": "29.65403000" + }, + { + "id": "106135", + "name": "Topolog", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88333000", + "longitude": "28.36667000" + }, + { + "id": "106147", + "name": "Traian", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02876000", + "longitude": "28.23518000" + }, + { + "id": "106173", + "name": "Tulcea", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17870000", + "longitude": "28.80501000" + }, + { + "id": "96556", + "name": "Turcoaia", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "28.18333000" + }, + { + "id": "96557", + "name": "Turda", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97501000", + "longitude": "28.62402000" + }, + { + "id": "96744", + "name": "Valea Nucarilor", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "28.93333000" + }, + { + "id": "96759", + "name": "Valea Teilor", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11150000", + "longitude": "28.48801000" + }, + { + "id": "96951", + "name": "Văcăreni", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.32415000", + "longitude": "28.19512000" + }, + { + "id": "96986", + "name": "Zebil", + "state_id": 4727, + "state_code": "TL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94600000", + "longitude": "28.76873000" + }, + { + "id": "89913", + "name": "Albeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50000000", + "longitude": "27.86667000" + }, + { + "id": "89928", + "name": "Alexandru Vlăhuţă", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41667000", + "longitude": "27.63333000" + }, + { + "id": "90000", + "name": "Arsura", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81333000", + "longitude": "28.02222000" + }, + { + "id": "97081", + "name": "Ştefan cel Mare", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71668000", + "longitude": "27.62873000" + }, + { + "id": "97092", + "name": "Şuletea", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28333000", + "longitude": "27.90000000" + }, + { + "id": "90053", + "name": "Banca", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30000000", + "longitude": "27.80000000" + }, + { + "id": "90450", + "name": "Bârlad", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.23175000", + "longitude": "27.66907000" + }, + { + "id": "90461", + "name": "Bârzești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75000000", + "longitude": "27.55000000" + }, + { + "id": "90474", + "name": "Băcani", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "27.66667000" + }, + { + "id": "90475", + "name": "Băceşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "27.23333000" + }, + { + "id": "90479", + "name": "Bădeana", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "27.58333000" + }, + { + "id": "90489", + "name": "Băile Drânceni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81361000", + "longitude": "28.10083000" + }, + { + "id": "90514", + "name": "Bălteni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66667000", + "longitude": "27.61667000" + }, + { + "id": "90103", + "name": "Berezeni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37611000", + "longitude": "28.14778000" + }, + { + "id": "90163", + "name": "Blăgeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13722000", + "longitude": "28.01306000" + }, + { + "id": "90256", + "name": "Boţeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80000000", + "longitude": "27.88333000" + }, + { + "id": "90188", + "name": "Bogdana", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52668000", + "longitude": "27.63278000" + }, + { + "id": "90194", + "name": "Bogdănești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44965000", + "longitude": "27.72679000" + }, + { + "id": "90195", + "name": "Bogdăniţa", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45000000", + "longitude": "27.68333000" + }, + { + "id": "90306", + "name": "Brodoc", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65090000", + "longitude": "27.67669000" + }, + { + "id": "90372", + "name": "Buda", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76231000", + "longitude": "27.42113000" + }, + { + "id": "90410", + "name": "Buneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "27.96667000" + }, + { + "id": "93810", + "name": "Cârja", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14878000", + "longitude": "28.11012000" + }, + { + "id": "90691", + "name": "Chițoc", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59545000", + "longitude": "27.67450000" + }, + { + "id": "90676", + "name": "Chircești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84629000", + "longitude": "27.84920000" + }, + { + "id": "90706", + "name": "Ciocani", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26044000", + "longitude": "27.55994000" + }, + { + "id": "90786", + "name": "Codăeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86667000", + "longitude": "27.75000000" + }, + { + "id": "90841", + "name": "Comuna Albeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.49850000", + "longitude": "27.85167000" + }, + { + "id": "90850", + "name": "Comuna Alexandru Vlăhuţă", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44973000", + "longitude": "27.62420000" + }, + { + "id": "90898", + "name": "Comuna Arsura", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79618000", + "longitude": "28.03896000" + }, + { + "id": "93552", + "name": "Comuna Ştefan cel Mare", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71562000", + "longitude": "27.62941000" + }, + { + "id": "93560", + "name": "Comuna Şuletea", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30607000", + "longitude": "27.90413000" + }, + { + "id": "90933", + "name": "Comuna Banca", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.34406000", + "longitude": "27.82091000" + }, + { + "id": "91203", + "name": "Comuna Băcani", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33768000", + "longitude": "27.67905000" + }, + { + "id": "91204", + "name": "Comuna Băceşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83325000", + "longitude": "27.23668000" + }, + { + "id": "91219", + "name": "Comuna Bălteni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67554000", + "longitude": "27.61019000" + }, + { + "id": "90964", + "name": "Comuna Berezeni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.39654000", + "longitude": "28.11570000" + }, + { + "id": "91007", + "name": "Comuna Blăgeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14130000", + "longitude": "27.99695000" + }, + { + "id": "91070", + "name": "Comuna Boţeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79630000", + "longitude": "27.88467000" + }, + { + "id": "91023", + "name": "Comuna Bogdana", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55124000", + "longitude": "27.61516000" + }, + { + "id": "91027", + "name": "Comuna Bogdăneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43700000", + "longitude": "27.72015000" + }, + { + "id": "91029", + "name": "Comuna Bogdăniţa", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44752000", + "longitude": "27.67505000" + }, + { + "id": "91166", + "name": "Comuna Bunești Averești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79810000", + "longitude": "27.97722000" + }, + { + "id": "91340", + "name": "Comuna Ciocani", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25393000", + "longitude": "27.56957000" + }, + { + "id": "91392", + "name": "Comuna Codăeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.88029000", + "longitude": "27.75360000" + }, + { + "id": "91447", + "name": "Comuna Coroieşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.28891000", + "longitude": "27.49249000" + }, + { + "id": "91454", + "name": "Comuna Costeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.47971000", + "longitude": "27.76360000" + }, + { + "id": "91470", + "name": "Comuna Cozmeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73024000", + "longitude": "27.49753000" + }, + { + "id": "91493", + "name": "Comuna Creţeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63508000", + "longitude": "27.96827000" + }, + { + "id": "91738", + "name": "Comuna Dăneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83967000", + "longitude": "27.65905000" + }, + { + "id": "91612", + "name": "Comuna Deleşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69163000", + "longitude": "27.55152000" + }, + { + "id": "91610", + "name": "Comuna Deleni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53486000", + "longitude": "27.75726000" + }, + { + "id": "91626", + "name": "Comuna Dimitrie Cantemir", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52932000", + "longitude": "28.05059000" + }, + { + "id": "91650", + "name": "Comuna Dodeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35165000", + "longitude": "27.91789000" + }, + { + "id": "91672", + "name": "Comuna Dragomireşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61861000", + "longitude": "27.35794000" + }, + { + "id": "91681", + "name": "Comuna Drânceni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.79614000", + "longitude": "28.12092000" + }, + { + "id": "91705", + "name": "Comuna Duda Epureni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.72477000", + "longitude": "28.04647000" + }, + { + "id": "91721", + "name": "Comuna Dumeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84347000", + "longitude": "27.30041000" + }, + { + "id": "91748", + "name": "Comuna Epureni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24228000", + "longitude": "27.89582000" + }, + { + "id": "91820", + "name": "Comuna Fălciu", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29370000", + "longitude": "28.10324000" + }, + { + "id": "91759", + "name": "Comuna Fereşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78179000", + "longitude": "27.70093000" + }, + { + "id": "91790", + "name": "Comuna Fruntişeni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.19806000", + "longitude": "27.77368000" + }, + { + "id": "91968", + "name": "Comuna Gârceni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75136000", + "longitude": "27.27964000" + }, + { + "id": "91978", + "name": "Comuna Găgeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33311000", + "longitude": "27.98026000" + }, + { + "id": "91846", + "name": "Comuna Ghergheşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.52167000", + "longitude": "27.52404000" + }, + { + "id": "91920", + "name": "Comuna Griviţa", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16827000", + "longitude": "27.68223000" + }, + { + "id": "92004", + "name": "Comuna Hoceni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.54027000", + "longitude": "27.98196000" + }, + { + "id": "92052", + "name": "Comuna Iana", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40438000", + "longitude": "27.55265000" + }, + { + "id": "92057", + "name": "Comuna Ibăneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.40507000", + "longitude": "27.62043000" + }, + { + "id": "92100", + "name": "Comuna Ivăneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.66216000", + "longitude": "27.44465000" + }, + { + "id": "92099", + "name": "Comuna Iveşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.19492000", + "longitude": "27.53670000" + }, + { + "id": "92140", + "name": "Comuna Laza", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65239000", + "longitude": "27.59843000" + }, + { + "id": "92169", + "name": "Comuna Lipovăţ", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56352000", + "longitude": "27.69270000" + }, + { + "id": "92201", + "name": "Comuna Lunca Banului", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56640000", + "longitude": "28.19790000" + }, + { + "id": "92400", + "name": "Comuna Măluşteni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.17587000", + "longitude": "27.91546000" + }, + { + "id": "92267", + "name": "Comuna Micleşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82203000", + "longitude": "27.84215000" + }, + { + "id": "92358", + "name": "Comuna Muntenii de Jos", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.60405000", + "longitude": "27.76949000" + }, + { + "id": "92359", + "name": "Comuna Muntenii de Sus", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69288000", + "longitude": "27.76320000" + }, + { + "id": "92524", + "name": "Comuna Oşeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76376000", + "longitude": "27.44832000" + }, + { + "id": "92496", + "name": "Comuna Olteneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58438000", + "longitude": "27.90180000" + }, + { + "id": "92716", + "name": "Comuna Pădureni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59285000", + "longitude": "28.09127000" + }, + { + "id": "92550", + "name": "Comuna Perieni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30407000", + "longitude": "27.61323000" + }, + { + "id": "92609", + "name": "Comuna Pochidia", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05233000", + "longitude": "27.58450000" + }, + { + "id": "92619", + "name": "Comuna Pogana", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33546000", + "longitude": "27.55360000" + }, + { + "id": "92620", + "name": "Comuna Pogoneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14748000", + "longitude": "27.52665000" + }, + { + "id": "92639", + "name": "Comuna Poieneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.57978000", + "longitude": "27.54608000" + }, + { + "id": "92702", + "name": "Comuna Puşcaşi", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62530000", + "longitude": "27.62563000" + }, + { + "id": "92694", + "name": "Comuna Puieşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44541000", + "longitude": "27.46214000" + }, + { + "id": "92696", + "name": "Comuna Pungeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70274000", + "longitude": "27.38157000" + }, + { + "id": "92745", + "name": "Comuna Rafaila", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80064000", + "longitude": "27.36236000" + }, + { + "id": "92751", + "name": "Comuna Rebricea", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.87229000", + "longitude": "27.57250000" + }, + { + "id": "92800", + "name": "Comuna Roşieşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45107000", + "longitude": "27.89202000" + }, + { + "id": "92973", + "name": "Comuna Soleşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.77174000", + "longitude": "27.80613000" + }, + { + "id": "93019", + "name": "Comuna Stănileşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65030000", + "longitude": "28.16151000" + }, + { + "id": "93123", + "name": "Comuna Tanacu", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68721000", + "longitude": "27.82443000" + }, + { + "id": "93236", + "name": "Comuna Tăcuta", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.93630000", + "longitude": "27.66505000" + }, + { + "id": "93246", + "name": "Comuna Tătărăni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70894000", + "longitude": "27.95602000" + }, + { + "id": "93163", + "name": "Comuna Todireşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.84897000", + "longitude": "27.38756000" + }, + { + "id": "93219", + "name": "Comuna Tutova", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11223000", + "longitude": "27.57244000" + }, + { + "id": "93449", + "name": "Comuna Vãleni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73091000", + "longitude": "27.75925000" + }, + { + "id": "93348", + "name": "Comuna Vetrişoaia", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.45742000", + "longitude": "28.21799000" + }, + { + "id": "93361", + "name": "Comuna Viişoara", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.37992000", + "longitude": "27.86070000" + }, + { + "id": "93364", + "name": "Comuna Vinderei", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.14349000", + "longitude": "27.80566000" + }, + { + "id": "93400", + "name": "Comuna Voineşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55578000", + "longitude": "27.43315000" + }, + { + "id": "93420", + "name": "Comuna Vultureşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80254000", + "longitude": "27.53258000" + }, + { + "id": "93425", + "name": "Comuna Vutcani", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.44575000", + "longitude": "27.97366000" + }, + { + "id": "93487", + "name": "Comuna Zăpodeni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76642000", + "longitude": "27.64160000" + }, + { + "id": "93479", + "name": "Comuna Zorleni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25078000", + "longitude": "27.73866000" + }, + { + "id": "93638", + "name": "Corni-Albești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.51813000", + "longitude": "27.87171000" + }, + { + "id": "93648", + "name": "Coroieşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.25000000", + "longitude": "27.48333000" + }, + { + "id": "93660", + "name": "Costeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50000000", + "longitude": "27.75000000" + }, + { + "id": "93687", + "name": "Cozmești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73375000", + "longitude": "27.50164000" + }, + { + "id": "93715", + "name": "Crețești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63333000", + "longitude": "27.95000000" + }, + { + "id": "94126", + "name": "Dăneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "27.66667000" + }, + { + "id": "93917", + "name": "Deleşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70000000", + "longitude": "27.55000000" + }, + { + "id": "93914", + "name": "Deleni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.55000000", + "longitude": "27.75000000" + }, + { + "id": "93977", + "name": "Dodești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.35455000", + "longitude": "27.89311000" + }, + { + "id": "94017", + "name": "Dragomireşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63333000", + "longitude": "27.35000000" + }, + { + "id": "94033", + "name": "Drânceni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80146000", + "longitude": "28.13264000" + }, + { + "id": "94067", + "name": "Duda", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75250000", + "longitude": "28.03722000" + }, + { + "id": "94095", + "name": "Dumeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "27.28333000" + }, + { + "id": "94141", + "name": "Emil Racoviță", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.87147000", + "longitude": "27.67937000" + }, + { + "id": "94143", + "name": "Epureni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70769000", + "longitude": "28.03829000" + }, + { + "id": "94247", + "name": "Fâstâci", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.73058000", + "longitude": "27.44901000" + }, + { + "id": "94257", + "name": "Fălciu", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.29611000", + "longitude": "28.14083000" + }, + { + "id": "94159", + "name": "Ferești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.78179000", + "longitude": "27.70093000" + }, + { + "id": "94215", + "name": "Fruntișeni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20634000", + "longitude": "27.76904000" + }, + { + "id": "94486", + "name": "Gârceni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "27.28333000" + }, + { + "id": "94498", + "name": "Găgeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.33333000", + "longitude": "27.96667000" + }, + { + "id": "94306", + "name": "Ghergheşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50000000", + "longitude": "27.51667000" + }, + { + "id": "94310", + "name": "Ghermănești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.82998000", + "longitude": "28.08105000" + }, + { + "id": "94416", + "name": "Griviţa", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "27.65000000" + }, + { + "id": "94447", + "name": "Gugești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76342000", + "longitude": "27.90050000" + }, + { + "id": "94601", + "name": "Hălărești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.39447000", + "longitude": "27.55614000" + }, + { + "id": "94540", + "name": "Hoceni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.53917000", + "longitude": "28.00667000" + }, + { + "id": "94587", + "name": "Huşi", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67361000", + "longitude": "28.05944000" + }, + { + "id": "94580", + "name": "Hurdugi", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.50778000", + "longitude": "28.05472000" + }, + { + "id": "94618", + "name": "Iana", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "27.55000000" + }, + { + "id": "94633", + "name": "Ibănești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.39482000", + "longitude": "27.62548000" + }, + { + "id": "94698", + "name": "Ivănești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63481000", + "longitude": "27.46048000" + }, + { + "id": "94697", + "name": "Iveşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "27.53333000" + }, + { + "id": "94764", + "name": "Laza", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65000000", + "longitude": "27.58333000" + }, + { + "id": "94806", + "name": "Lipovăţ", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56667000", + "longitude": "27.70000000" + }, + { + "id": "94861", + "name": "Lunca Banului", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59500000", + "longitude": "28.16833000" + }, + { + "id": "95255", + "name": "Măluşteni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.18333000", + "longitude": "27.91667000" + }, + { + "id": "94969", + "name": "Micleşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "27.83333000" + }, + { + "id": "95040", + "name": "Moara Domnească", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71448000", + "longitude": "27.75890000" + }, + { + "id": "95041", + "name": "Moara Grecilor", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67145000", + "longitude": "27.74569000" + }, + { + "id": "95120", + "name": "Municipiul Bârlad", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22579000", + "longitude": "27.67070000" + }, + { + "id": "95149", + "name": "Municipiul Huşi", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.67320000", + "longitude": "28.05952000" + }, + { + "id": "95195", + "name": "Municipiul Vaslui", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.64683000", + "longitude": "27.73872000" + }, + { + "id": "95202", + "name": "Muntenii de Jos", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61667000", + "longitude": "27.76667000" + }, + { + "id": "95203", + "name": "Muntenii de Sus", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68968000", + "longitude": "27.77763000" + }, + { + "id": "95206", + "name": "Murgeni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20444000", + "longitude": "28.01972000" + }, + { + "id": "95316", + "name": "Negreşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83333000", + "longitude": "27.43333000" + }, + { + "id": "95688", + "name": "Oşeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "27.46667000" + }, + { + "id": "95430", + "name": "Olteneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.58333000", + "longitude": "27.90000000" + }, + { + "id": "95548", + "name": "Oraş Negreşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.83188000", + "longitude": "27.47810000" + }, + { + "id": "95643", + "name": "Oraș Murgeni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20160000", + "longitude": "28.00424000" + }, + { + "id": "96007", + "name": "Pădureni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62192000", + "longitude": "28.08258000" + }, + { + "id": "95731", + "name": "Perieni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.30000000", + "longitude": "27.61667000" + }, + { + "id": "95838", + "name": "Pochidia", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04318000", + "longitude": "27.58746000" + }, + { + "id": "95854", + "name": "Pogana", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.31667000", + "longitude": "27.56667000" + }, + { + "id": "95858", + "name": "Pogănești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69237000", + "longitude": "28.16779000" + }, + { + "id": "95857", + "name": "Pogonești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15229000", + "longitude": "27.53225000" + }, + { + "id": "95889", + "name": "Poieneşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61667000", + "longitude": "27.53333000" + }, + { + "id": "95907", + "name": "Popeni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.24667000", + "longitude": "27.80520000" + }, + { + "id": "95947", + "name": "Pribești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91001000", + "longitude": "27.79659000" + }, + { + "id": "95991", + "name": "Pușcași", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.62154000", + "longitude": "27.64503000" + }, + { + "id": "95979", + "name": "Puieşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.41667000", + "longitude": "27.50000000" + }, + { + "id": "95981", + "name": "Pungeşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.70000000", + "longitude": "27.33333000" + }, + { + "id": "96057", + "name": "Rafaila", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.80064000", + "longitude": "27.36236000" + }, + { + "id": "96180", + "name": "Râșești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.77219000", + "longitude": "28.14273000" + }, + { + "id": "96173", + "name": "Rânzești", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.22101000", + "longitude": "28.09468000" + }, + { + "id": "96065", + "name": "Rebricea", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.86667000", + "longitude": "27.55000000" + }, + { + "id": "96077", + "name": "Rediu", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63374000", + "longitude": "27.69439000" + }, + { + "id": "96130", + "name": "Roşieşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43333000", + "longitude": "27.88333000" + }, + { + "id": "96258", + "name": "Satu Nou", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69608000", + "longitude": "27.74876000" + }, + { + "id": "96263", + "name": "Sauca", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.65268000", + "longitude": "27.60523000" + }, + { + "id": "96405", + "name": "Soleşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.76667000", + "longitude": "27.78333000" + }, + { + "id": "96480", + "name": "Stănileşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.61833000", + "longitude": "28.17139000" + }, + { + "id": "106057", + "name": "Tanacu", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.68333000", + "longitude": "27.81667000" + }, + { + "id": "96600", + "name": "Tăcuta", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.91667000", + "longitude": "27.68333000" + }, + { + "id": "96621", + "name": "Tătărăni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.69422000", + "longitude": "27.96443000" + }, + { + "id": "106117", + "name": "Todireşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.85000000", + "longitude": "27.36667000" + }, + { + "id": "106152", + "name": "Trestiana", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.20000000", + "longitude": "27.65000000" + }, + { + "id": "96572", + "name": "Tutova", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11667000", + "longitude": "27.55000000" + }, + { + "id": "96725", + "name": "Valea Grecului", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.71985000", + "longitude": "28.10123000" + }, + { + "id": "96776", + "name": "Vaslui", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.63333000", + "longitude": "27.73333000" + }, + { + "id": "96962", + "name": "Văleni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.59278000", + "longitude": "28.06250000" + }, + { + "id": "96796", + "name": "Vetrişoaia", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.43000000", + "longitude": "28.20833000" + }, + { + "id": "96819", + "name": "Viişoara", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.38333000", + "longitude": "27.88333000" + }, + { + "id": "96830", + "name": "Vinderei", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "27.80000000" + }, + { + "id": "96880", + "name": "Voineşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.56667000", + "longitude": "27.41667000" + }, + { + "id": "96910", + "name": "Vultureşti", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.81667000", + "longitude": "27.53333000" + }, + { + "id": "96917", + "name": "Vutcani", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.46667000", + "longitude": "27.96667000" + }, + { + "id": "97013", + "name": "Zăpodeni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.75000000", + "longitude": "27.65000000" + }, + { + "id": "97004", + "name": "Zorleni", + "state_id": 4752, + "state_code": "VS", + "country_id": 181, + "country_code": "RO", + "latitude": "46.26667000", + "longitude": "27.71667000" + }, + { + "id": "89944", + "name": "Alunu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.01667000", + "longitude": "23.81667000" + }, + { + "id": "89951", + "name": "Amărăşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "24.15000000" + }, + { + "id": "97059", + "name": "Şirineasa", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93333000", + "longitude": "24.20000000" + }, + { + "id": "97085", + "name": "Ştefăneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "24.25000000" + }, + { + "id": "97096", + "name": "Şuşani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.58333000", + "longitude": "24.10000000" + }, + { + "id": "90070", + "name": "Batârăşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "24.15000000" + }, + { + "id": "90470", + "name": "Băbeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "24.23333000" + }, + { + "id": "90471", + "name": "Băbeni-Oltețu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61404000", + "longitude": "23.97798000" + }, + { + "id": "90490", + "name": "Băile Govora", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "24.18333000" + }, + { + "id": "90492", + "name": "Băile Olăneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20000000", + "longitude": "24.23333000" + }, + { + "id": "90505", + "name": "Bălceşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61667000", + "longitude": "23.95000000" + }, + { + "id": "90540", + "name": "Bărbăteşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "24.11667000" + }, + { + "id": "90095", + "name": "Berbeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98333000", + "longitude": "23.88333000" + }, + { + "id": "90110", + "name": "Berislăveşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "24.41667000" + }, + { + "id": "90150", + "name": "Bistrița", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18612000", + "longitude": "24.04010000" + }, + { + "id": "90181", + "name": "Bodești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14167000", + "longitude": "24.11549000" + }, + { + "id": "90206", + "name": "Boişoara", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43333000", + "longitude": "24.38333000" + }, + { + "id": "90303", + "name": "Brezoi", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.33797000", + "longitude": "24.24863000" + }, + { + "id": "90380", + "name": "Budeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "24.38333000" + }, + { + "id": "90399", + "name": "Bujoreni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "24.35000000" + }, + { + "id": "90408", + "name": "Buneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "24.18333000" + }, + { + "id": "93790", + "name": "Câinenii Mici", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.48333000", + "longitude": "24.30000000" + }, + { + "id": "93835", + "name": "Călimăneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.23333000", + "longitude": "24.33333000" + }, + { + "id": "93836", + "name": "Călina", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70205000", + "longitude": "24.25439000" + }, + { + "id": "90636", + "name": "Cernişoara", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "23.98333000" + }, + { + "id": "90653", + "name": "Cheia", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18306000", + "longitude": "24.21666000" + }, + { + "id": "93697", + "name": "Coșani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00788000", + "longitude": "24.19188000" + }, + { + "id": "90861", + "name": "Comuna Alunu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00954000", + "longitude": "23.81760000" + }, + { + "id": "90865", + "name": "Comuna Amărăşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76107000", + "longitude": "24.14382000" + }, + { + "id": "93530", + "name": "Comuna Şirineasa", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93871000", + "longitude": "24.18570000" + }, + { + "id": "93555", + "name": "Comuna Ştefăneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60541000", + "longitude": "24.23338000" + }, + { + "id": "93564", + "name": "Comuna Şuşani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.61009000", + "longitude": "24.10021000" + }, + { + "id": "91239", + "name": "Comuna Bărbăteşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14154000", + "longitude": "24.10933000" + }, + { + "id": "90969", + "name": "Comuna Berislăveşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26406000", + "longitude": "24.43785000" + }, + { + "id": "91035", + "name": "Comuna Boişoara", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44232000", + "longitude": "24.37462000" + }, + { + "id": "91147", + "name": "Comuna Budeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04714000", + "longitude": "24.36603000" + }, + { + "id": "91155", + "name": "Comuna Bujoreni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16235000", + "longitude": "24.36593000" + }, + { + "id": "91163", + "name": "Comuna Buneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10202000", + "longitude": "24.21397000" + }, + { + "id": "91539", + "name": "Comuna Câineni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.49499000", + "longitude": "24.30885000" + }, + { + "id": "91294", + "name": "Comuna Cernişoara", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03432000", + "longitude": "24.00487000" + }, + { + "id": "91419", + "name": "Comuna Copăceni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98223000", + "longitude": "23.98164000" + }, + { + "id": "91456", + "name": "Comuna Costeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16936000", + "longitude": "24.05813000" + }, + { + "id": "91492", + "name": "Comuna Creţeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70571000", + "longitude": "24.18009000" + }, + { + "id": "91733", + "name": "Comuna Dăeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18584000", + "longitude": "24.39337000" + }, + { + "id": "91742", + "name": "Comuna Dănicei", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91181000", + "longitude": "24.44503000" + }, + { + "id": "91623", + "name": "Comuna Diculeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60974000", + "longitude": "23.98795000" + }, + { + "id": "91690", + "name": "Comuna Drăgoeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80393000", + "longitude": "24.29400000" + }, + { + "id": "91813", + "name": "Comuna Fârtãţeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77577000", + "longitude": "23.98080000" + }, + { + "id": "91826", + "name": "Comuna Făureşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.57351000", + "longitude": "24.00871000" + }, + { + "id": "91791", + "name": "Comuna Frânceşti-Mânăstireni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02358000", + "longitude": "24.16794000" + }, + { + "id": "91830", + "name": "Comuna Galicea", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.94428000", + "longitude": "24.29633000" + }, + { + "id": "91862", + "name": "Comuna Ghioroiu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67868000", + "longitude": "23.84740000" + }, + { + "id": "91885", + "name": "Comuna Glăvile", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80423000", + "longitude": "24.12255000" + }, + { + "id": "91897", + "name": "Comuna Goleşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11370000", + "longitude": "24.47395000" + }, + { + "id": "91940", + "name": "Comuna Grădiştea", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.89929000", + "longitude": "23.81621000" + }, + { + "id": "91960", + "name": "Comuna Guşoeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.72134000", + "longitude": "24.12696000" + }, + { + "id": "92085", + "name": "Comuna Ioneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85429000", + "longitude": "24.23134000" + }, + { + "id": "92136", + "name": "Comuna Laloşu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.53046000", + "longitude": "24.04689000" + }, + { + "id": "92219", + "name": "Comuna Lăcusteni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70863000", + "longitude": "23.89214000" + }, + { + "id": "92220", + "name": "Comuna Lădeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87014000", + "longitude": "24.04350000" + }, + { + "id": "92222", + "name": "Comuna Lăpuşata", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92591000", + "longitude": "24.00976000" + }, + { + "id": "92174", + "name": "Comuna Livezi", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83700000", + "longitude": "23.83209000" + }, + { + "id": "92212", + "name": "Comuna Lungeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60271000", + "longitude": "24.17894000" + }, + { + "id": "92231", + "name": "Comuna Malaia", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.36429000", + "longitude": "24.04456000" + }, + { + "id": "92246", + "name": "Comuna Mateeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06784000", + "longitude": "23.85490000" + }, + { + "id": "92380", + "name": "Comuna Măciuca", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75807000", + "longitude": "24.02408000" + }, + { + "id": "92381", + "name": "Comuna Mădulari-Beica", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67820000", + "longitude": "24.10121000" + }, + { + "id": "92397", + "name": "Comuna Măldăreşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10258000", + "longitude": "24.00613000" + }, + { + "id": "92280", + "name": "Comuna Mihăeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03282000", + "longitude": "24.24501000" + }, + { + "id": "92288", + "name": "Comuna Milcoiu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04046000", + "longitude": "24.46786000" + }, + { + "id": "92309", + "name": "Comuna Mitrofani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75104000", + "longitude": "24.20272000" + }, + { + "id": "92354", + "name": "Comuna Muereasca", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20364000", + "longitude": "24.29726000" + }, + { + "id": "92439", + "name": "Comuna Nicolae Bãlcescu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98760000", + "longitude": "24.41990000" + }, + { + "id": "92492", + "name": "Comuna Olanu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.87416000", + "longitude": "24.29169000" + }, + { + "id": "92510", + "name": "Comuna Orleşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78125000", + "longitude": "24.24623000" + }, + { + "id": "92522", + "name": "Comuna Oteşani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04807000", + "longitude": "24.03989000" + }, + { + "id": "92730", + "name": "Comuna Păuşeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07341000", + "longitude": "24.13552000" + }, + { + "id": "92731", + "name": "Comuna Păuşeşti-Măglaşi", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14165000", + "longitude": "24.24474000" + }, + { + "id": "92554", + "name": "Comuna Perişani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.37925000", + "longitude": "24.40776000" + }, + { + "id": "92560", + "name": "Comuna Pesceana", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88169000", + "longitude": "24.12797000" + }, + { + "id": "92577", + "name": "Comuna Pietrari", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11586000", + "longitude": "24.10242000" + }, + { + "id": "92656", + "name": "Comuna Popeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97908000", + "longitude": "24.11014000" + }, + { + "id": "92684", + "name": "Comuna Prundeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73460000", + "longitude": "24.24863000" + }, + { + "id": "92736", + "name": "Comuna Racoviţa", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41200000", + "longitude": "24.31792000" + }, + { + "id": "92801", + "name": "Comuna Roşiile", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88537000", + "longitude": "23.92438000" + }, + { + "id": "92778", + "name": "Comuna Roeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.92016000", + "longitude": "24.07793000" + }, + { + "id": "92812", + "name": "Comuna Runcu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18685000", + "longitude": "24.45979000" + }, + { + "id": "93099", + "name": "Comuna Sălătrucel", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.26684000", + "longitude": "24.38921000" + }, + { + "id": "92898", + "name": "Comuna Scundu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84880000", + "longitude": "24.17981000" + }, + { + "id": "92938", + "name": "Comuna Sineşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.93231000", + "longitude": "23.83951000" + }, + { + "id": "92960", + "name": "Comuna Slătioara", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.12396000", + "longitude": "23.88581000" + }, + { + "id": "93018", + "name": "Comuna Stăneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81359000", + "longitude": "24.04264000" + }, + { + "id": "92993", + "name": "Comuna Stoeneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.14715000", + "longitude": "24.16337000" + }, + { + "id": "92996", + "name": "Comuna Stoileşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91463000", + "longitude": "24.35992000" + }, + { + "id": "93004", + "name": "Comuna Stroeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07519000", + "longitude": "23.92645000" + }, + { + "id": "93042", + "name": "Comuna Suteşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67103000", + "longitude": "24.21893000" + }, + { + "id": "93146", + "name": "Comuna Tetoiu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78374000", + "longitude": "23.91735000" + }, + { + "id": "93160", + "name": "Comuna Titeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41971000", + "longitude": "24.39323000" + }, + { + "id": "93172", + "name": "Comuna Tomşani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09606000", + "longitude": "24.06020000" + }, + { + "id": "93296", + "name": "Comuna Vaideeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.17322000", + "longitude": "23.88622000" + }, + { + "id": "93314", + "name": "Comuna Valea Mare", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.67374000", + "longitude": "24.00055000" + }, + { + "id": "93389", + "name": "Comuna Vlădeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13574000", + "longitude": "24.30181000" + }, + { + "id": "93394", + "name": "Comuna Voiceşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59651000", + "longitude": "24.29980000" + }, + { + "id": "93397", + "name": "Comuna Voineasa", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41128000", + "longitude": "23.97611000" + }, + { + "id": "93490", + "name": "Comuna Zătreni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.77069000", + "longitude": "23.84320000" + }, + { + "id": "93604", + "name": "Copăcelu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06762000", + "longitude": "24.31161000" + }, + { + "id": "93606", + "name": "Copăceni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.00000000", + "longitude": "23.98333000" + }, + { + "id": "93658", + "name": "Costeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "24.06667000" + }, + { + "id": "93713", + "name": "Creţeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.68333000", + "longitude": "24.18333000" + }, + { + "id": "94117", + "name": "Dăeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.96667000", + "longitude": "24.13333000" + }, + { + "id": "94118", + "name": "Dăești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20107000", + "longitude": "24.38684000" + }, + { + "id": "93901", + "name": "Dealu Aluniș", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98252000", + "longitude": "23.86749000" + }, + { + "id": "93902", + "name": "Dealu Dănicei", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "24.43333000" + }, + { + "id": "93934", + "name": "Diculești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.59351000", + "longitude": "23.98968000" + }, + { + "id": "93971", + "name": "Dobrușa", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62642000", + "longitude": "24.20779000" + }, + { + "id": "94064", + "name": "Drăgăşani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.65000000", + "longitude": "24.26667000" + }, + { + "id": "94041", + "name": "Drăgoeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "24.30000000" + }, + { + "id": "94267", + "name": "Fărtăţeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.78333000", + "longitude": "24.00000000" + }, + { + "id": "94271", + "name": "Făureşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "24.01667000" + }, + { + "id": "94277", + "name": "Galicea", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "24.28333000" + }, + { + "id": "94334", + "name": "Ghioroiu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.70000000", + "longitude": "23.83333000" + }, + { + "id": "94365", + "name": "Glăvile", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "24.15000000" + }, + { + "id": "94381", + "name": "Goranu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10523000", + "longitude": "24.38431000" + }, + { + "id": "94439", + "name": "Grădiştea", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "23.81667000" + }, + { + "id": "94403", + "name": "Greblești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.47514000", + "longitude": "24.31182000" + }, + { + "id": "94474", + "name": "Guşoeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "24.11667000" + }, + { + "id": "94460", + "name": "Gura Suhașului", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08803000", + "longitude": "24.29886000" + }, + { + "id": "94558", + "name": "Horezu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.15000000", + "longitude": "24.01667000" + }, + { + "id": "94651", + "name": "Igoiu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04824000", + "longitude": "23.80835000" + }, + { + "id": "94678", + "name": "Ioneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.85000000", + "longitude": "24.23333000" + }, + { + "id": "94729", + "name": "Jiblea Veche", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24360000", + "longitude": "24.35163000" + }, + { + "id": "94757", + "name": "Laloşu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.55000000", + "longitude": "24.01667000" + }, + { + "id": "94891", + "name": "Lăcusteni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.69544000", + "longitude": "23.89984000" + }, + { + "id": "94892", + "name": "Lădeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88333000", + "longitude": "24.05000000" + }, + { + "id": "94817", + "name": "Livadia", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20546000", + "longitude": "24.24192000" + }, + { + "id": "94819", + "name": "Livezi", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.84029000", + "longitude": "23.82505000" + }, + { + "id": "94881", + "name": "Lungeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "24.18333000" + }, + { + "id": "94910", + "name": "Malaia", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35000000", + "longitude": "24.03333000" + }, + { + "id": "94935", + "name": "Mateeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "23.85000000" + }, + { + "id": "95231", + "name": "Mădulari", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "24.00000000" + }, + { + "id": "95252", + "name": "Măldăreşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "24.00000000" + }, + { + "id": "95260", + "name": "Mănăilești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.02464000", + "longitude": "24.12451000" + }, + { + "id": "94987", + "name": "Mihăeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03333000", + "longitude": "24.25000000" + }, + { + "id": "95001", + "name": "Milcoiu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.05000000", + "longitude": "24.46667000" + }, + { + "id": "95033", + "name": "Mitrofani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73268000", + "longitude": "24.20910000" + }, + { + "id": "95051", + "name": "Mogești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "23.91667000" + }, + { + "id": "95098", + "name": "Muereasca", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18333000", + "longitude": "24.33333000" + }, + { + "id": "95139", + "name": "Municipiul Drãgãşani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.64414000", + "longitude": "24.24632000" + }, + { + "id": "95175", + "name": "Municipiul Râmnicu Vâlcea", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.09448000", + "longitude": "24.35215000" + }, + { + "id": "95422", + "name": "Olanu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "24.30000000" + }, + { + "id": "95435", + "name": "Olănești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.18209000", + "longitude": "24.25990000" + }, + { + "id": "95480", + "name": "Oraş Bãbeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97023000", + "longitude": "24.22555000" + }, + { + "id": "95482", + "name": "Oraş Bãile Govora", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08174000", + "longitude": "24.18246000" + }, + { + "id": "95484", + "name": "Oraş Bãile Olãneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.20059000", + "longitude": "24.23416000" + }, + { + "id": "95487", + "name": "Oraş Bãlceşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.62941000", + "longitude": "23.94052000" + }, + { + "id": "95461", + "name": "Oraş Berbeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99915000", + "longitude": "23.88013000" + }, + { + "id": "95471", + "name": "Oraş Brezoi", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.35088000", + "longitude": "24.25681000" + }, + { + "id": "95505", + "name": "Oraş Cãlimãneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.24252000", + "longitude": "24.34375000" + }, + { + "id": "95529", + "name": "Oraş Horezu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16962000", + "longitude": "23.98448000" + }, + { + "id": "95558", + "name": "Oraş Ocnele Mari", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08904000", + "longitude": "24.28162000" + }, + { + "id": "95661", + "name": "Orleşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.80000000", + "longitude": "24.21667000" + }, + { + "id": "95683", + "name": "Oteşani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.06667000", + "longitude": "24.03333000" + }, + { + "id": "95682", + "name": "Otetelișu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63839000", + "longitude": "23.95917000" + }, + { + "id": "95685", + "name": "Oveselu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "24.01667000" + }, + { + "id": "96034", + "name": "Păuşeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.07358000", + "longitude": "24.13473000" + }, + { + "id": "96035", + "name": "Păuşeşti-Măglaşi", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.13333000", + "longitude": "24.25000000" + }, + { + "id": "95736", + "name": "Perişani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.38333000", + "longitude": "24.40000000" + }, + { + "id": "95744", + "name": "Pesceana", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.88333000", + "longitude": "24.15000000" + }, + { + "id": "95777", + "name": "Pietrari", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "24.13333000" + }, + { + "id": "95778", + "name": "Pietrarii de Sus", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11697000", + "longitude": "24.09336000" + }, + { + "id": "95910", + "name": "Popeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.98333000", + "longitude": "24.10000000" + }, + { + "id": "95939", + "name": "Prajila", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08270000", + "longitude": "24.16949000" + }, + { + "id": "95964", + "name": "Prundeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.73333000", + "longitude": "24.26667000" + }, + { + "id": "96042", + "name": "Racoviţa", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41667000", + "longitude": "24.31667000" + }, + { + "id": "96166", + "name": "Râmești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.56667000", + "longitude": "24.10000000" + }, + { + "id": "96171", + "name": "Râmnicu Vâlcea", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.10000000", + "longitude": "24.36667000" + }, + { + "id": "96131", + "name": "Roşiile", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.86667000", + "longitude": "23.93333000" + }, + { + "id": "96100", + "name": "Roeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.91667000", + "longitude": "24.08333000" + }, + { + "id": "96114", + "name": "Români", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.97310000", + "longitude": "24.20513000" + }, + { + "id": "96152", + "name": "Runcu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "24.45000000" + }, + { + "id": "106022", + "name": "Sălătrucel", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.25000000", + "longitude": "24.38333000" + }, + { + "id": "96286", + "name": "Scundu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.83333000", + "longitude": "24.20000000" + }, + { + "id": "96351", + "name": "Sineşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.95000000", + "longitude": "23.85000000" + }, + { + "id": "96479", + "name": "Stănești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.81667000", + "longitude": "24.05000000" + }, + { + "id": "96434", + "name": "Stoeneşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "24.16667000" + }, + { + "id": "96439", + "name": "Stoileşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.90000000", + "longitude": "24.38333000" + }, + { + "id": "96441", + "name": "Stolniceni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.03948000", + "longitude": "24.30640000" + }, + { + "id": "96454", + "name": "Stroeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.08333000", + "longitude": "23.90000000" + }, + { + "id": "96514", + "name": "Sutești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66851000", + "longitude": "24.21476000" + }, + { + "id": "106089", + "name": "Tetoiu", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.75000000", + "longitude": "23.91667000" + }, + { + "id": "106109", + "name": "Titești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41971000", + "longitude": "24.39323000" + }, + { + "id": "106125", + "name": "Tomşani", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "24.05000000" + }, + { + "id": "96554", + "name": "Turcești", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.04023000", + "longitude": "23.86574000" + }, + { + "id": "96690", + "name": "Urși", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.99404000", + "longitude": "24.08895000" + }, + { + "id": "96705", + "name": "Vaideeni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.16667000", + "longitude": "23.93333000" + }, + { + "id": "96736", + "name": "Valea Mare", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.66667000", + "longitude": "24.00000000" + }, + { + "id": "96866", + "name": "Vlădeşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.11667000", + "longitude": "24.30000000" + }, + { + "id": "96874", + "name": "Voiceşti", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.60000000", + "longitude": "24.28333000" + }, + { + "id": "96877", + "name": "Voineasa", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "45.41667000", + "longitude": "23.95000000" + }, + { + "id": "97018", + "name": "Zătreni", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.76667000", + "longitude": "23.85000000" + }, + { + "id": "97000", + "name": "Zlătărei", + "state_id": 4757, + "state_code": "VL", + "country_id": 181, + "country_code": "RO", + "latitude": "44.63057000", + "longitude": "24.25788000" + }, + { + "id": "89881", + "name": "Adjud", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "27.16667000" + }, + { + "id": "89883", + "name": "Adjudu Vechi", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13485000", + "longitude": "27.18891000" + }, + { + "id": "89956", + "name": "Andreiaşu de Jos", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75000000", + "longitude": "26.83333000" + }, + { + "id": "89960", + "name": "Anghelești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07875000", + "longitude": "27.06459000" + }, + { + "id": "97105", + "name": "Ţifeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "27.10000000" + }, + { + "id": "90456", + "name": "Bârseşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "26.73333000" + }, + { + "id": "90511", + "name": "Băleşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43333000", + "longitude": "27.23333000" + }, + { + "id": "90138", + "name": "Biliești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72106000", + "longitude": "27.34879000" + }, + { + "id": "90197", + "name": "Bogheşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16667000", + "longitude": "27.40000000" + }, + { + "id": "90200", + "name": "Bogza", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50798000", + "longitude": "27.19773000" + }, + { + "id": "90215", + "name": "Boloteşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "27.06667000" + }, + { + "id": "90223", + "name": "Bordeasca Veche", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.54447000", + "longitude": "27.31730000" + }, + { + "id": "90226", + "name": "Bordeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.55000000", + "longitude": "27.05000000" + }, + { + "id": "90309", + "name": "Broşteni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75000000", + "longitude": "27.03333000" + }, + { + "id": "90385", + "name": "Budești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.62779000", + "longitude": "27.05669000" + }, + { + "id": "90415", + "name": "Burca", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91224000", + "longitude": "26.94905000" + }, + { + "id": "93799", + "name": "Câmpineanca", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71166000", + "longitude": "27.12832000" + }, + { + "id": "93804", + "name": "Câmpuri", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01535000", + "longitude": "26.78802000" + }, + { + "id": "93805", + "name": "Câmpurile de Jos", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "26.78333000" + }, + { + "id": "93814", + "name": "Cârligele", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68333000", + "longitude": "27.10000000" + }, + { + "id": "90603", + "name": "Ceardac", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66967000", + "longitude": "27.16611000" + }, + { + "id": "90673", + "name": "Chiojdeni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.55000000", + "longitude": "26.86667000" + }, + { + "id": "90722", + "name": "Ciorani", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98824000", + "longitude": "27.21614000" + }, + { + "id": "90729", + "name": "Ciorăşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43333000", + "longitude": "27.30000000" + }, + { + "id": "90761", + "name": "Ciușlea", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78761000", + "longitude": "27.30644000" + }, + { + "id": "90868", + "name": "Comuna Andreiaşu de Jos", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73669000", + "longitude": "26.82752000" + }, + { + "id": "93573", + "name": "Comuna Ţifeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85329000", + "longitude": "27.10387000" + }, + { + "id": "91193", + "name": "Comuna Bârseşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90724000", + "longitude": "26.74716000" + }, + { + "id": "91215", + "name": "Comuna Băleşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44034000", + "longitude": "27.23703000" + }, + { + "id": "90991", + "name": "Comuna Bilieşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72106000", + "longitude": "27.34879000" + }, + { + "id": "91030", + "name": "Comuna Bogheşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16211000", + "longitude": "27.41871000" + }, + { + "id": "91042", + "name": "Comuna Boloteşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84099000", + "longitude": "27.04117000" + }, + { + "id": "91048", + "name": "Comuna Bordeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.54715000", + "longitude": "27.04104000" + }, + { + "id": "91104", + "name": "Comuna Broşteni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76566000", + "longitude": "27.01305000" + }, + { + "id": "91543", + "name": "Comuna Câmpineanca", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70838000", + "longitude": "27.13191000" + }, + { + "id": "91545", + "name": "Comuna Câmpuri", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03618000", + "longitude": "26.75425000" + }, + { + "id": "91552", + "name": "Comuna Cârligele", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.67723000", + "longitude": "27.06031000" + }, + { + "id": "91319", + "name": "Comuna Chiojdeni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56113000", + "longitude": "26.84389000" + }, + { + "id": "91357", + "name": "Comuna Ciorăşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.43869000", + "longitude": "27.30952000" + }, + { + "id": "91427", + "name": "Comuna Corbiţa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16325000", + "longitude": "27.30861000" + }, + { + "id": "91464", + "name": "Comuna Coteşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63689000", + "longitude": "27.07546000" + }, + { + "id": "91723", + "name": "Comuna Dumitreşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57715000", + "longitude": "26.90728000" + }, + { + "id": "91768", + "name": "Comuna Fitioneşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96655000", + "longitude": "27.06953000" + }, + { + "id": "91833", + "name": "Comuna Garoafa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79812000", + "longitude": "27.25010000" + }, + { + "id": "91896", + "name": "Comuna Goleşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66603000", + "longitude": "27.16708000" + }, + { + "id": "91898", + "name": "Comuna Gologanu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60979000", + "longitude": "27.27091000" + }, + { + "id": "91945", + "name": "Comuna Gugeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57982000", + "longitude": "27.14370000" + }, + { + "id": "91946", + "name": "Comuna Gura Caliţei", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61357000", + "longitude": "26.97284000" + }, + { + "id": "92011", + "name": "Comuna Homocea", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15796000", + "longitude": "27.23108000" + }, + { + "id": "92115", + "name": "Comuna Jariştea", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79987000", + "longitude": "27.04257000" + }, + { + "id": "92127", + "name": "Comuna Jitia", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58480000", + "longitude": "26.74876000" + }, + { + "id": "92394", + "name": "Comuna Măicăneşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50067000", + "longitude": "27.46121000" + }, + { + "id": "92254", + "name": "Comuna Mera", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77327000", + "longitude": "26.93423000" + }, + { + "id": "92290", + "name": "Comuna Milcovul", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65207000", + "longitude": "27.25928000" + }, + { + "id": "92344", + "name": "Comuna Moviliţa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95750000", + "longitude": "27.10487000" + }, + { + "id": "92463", + "name": "Comuna Năneşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.57801000", + "longitude": "27.49988000" + }, + { + "id": "92465", + "name": "Comuna Năruja", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82308000", + "longitude": "26.76617000" + }, + { + "id": "92435", + "name": "Comuna Negrileşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93697000", + "longitude": "26.70635000" + }, + { + "id": "92438", + "name": "Comuna Nereju", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70833000", + "longitude": "26.69794000" + }, + { + "id": "92449", + "name": "Comuna Nistoreşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.81578000", + "longitude": "26.67728000" + }, + { + "id": "92472", + "name": "Comuna Obrejiţa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50102000", + "longitude": "27.08974000" + }, + { + "id": "92532", + "name": "Comuna Paltin", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77918000", + "longitude": "26.74770000" + }, + { + "id": "92726", + "name": "Comuna Păuleşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88712000", + "longitude": "26.68703000" + }, + { + "id": "92729", + "name": "Comuna Păuneşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.04066000", + "longitude": "27.10336000" + }, + { + "id": "92603", + "name": "Comuna Ploscuţeni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06103000", + "longitude": "27.26595000" + }, + { + "id": "92626", + "name": "Comuna Poiana Cristei", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66882000", + "longitude": "26.97125000" + }, + { + "id": "92655", + "name": "Comuna Popeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58983000", + "longitude": "27.06560000" + }, + { + "id": "92692", + "name": "Comuna Pufeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01111000", + "longitude": "27.20901000" + }, + { + "id": "92839", + "name": "Comuna Răcoasa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99786000", + "longitude": "26.88548000" + }, + { + "id": "92849", + "name": "Comuna Răstoaca", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66083000", + "longitude": "27.28723000" + }, + { + "id": "92762", + "name": "Comuna Reghiu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79672000", + "longitude": "26.83648000" + }, + { + "id": "92807", + "name": "Comuna Rugineşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07885000", + "longitude": "27.11803000" + }, + { + "id": "92928", + "name": "Comuna Sihlea", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.49398000", + "longitude": "27.15629000" + }, + { + "id": "92955", + "name": "Comuna Slobozia Bradului", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.49203000", + "longitude": "27.03977000" + }, + { + "id": "92958", + "name": "Comuna Slobozia-Ciorăşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60606000", + "longitude": "27.21399000" + }, + { + "id": "92979", + "name": "Comuna Soveja", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99705000", + "longitude": "26.65351000" + }, + { + "id": "92985", + "name": "Comuna Spulber", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.74654000", + "longitude": "26.73925000" + }, + { + "id": "93009", + "name": "Comuna Străoane", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92895000", + "longitude": "27.04359000" + }, + { + "id": "93035", + "name": "Comuna Suraia", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68066000", + "longitude": "27.38419000" + }, + { + "id": "93222", + "name": "Comuna Tâmboeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51792000", + "longitude": "27.04555000" + }, + { + "id": "93235", + "name": "Comuna Tãtãranu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51621000", + "longitude": "27.30930000" + }, + { + "id": "93238", + "name": "Comuna Tănăsoaia", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10161000", + "longitude": "27.37982000" + }, + { + "id": "93205", + "name": "Comuna Tulnici", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93283000", + "longitude": "26.60452000" + }, + { + "id": "93281", + "name": "Comuna Urecheşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60181000", + "longitude": "27.07141000" + }, + { + "id": "93325", + "name": "Comuna Valea Sării", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87892000", + "longitude": "26.80823000" + }, + { + "id": "93435", + "name": "Comuna Vânători", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73875000", + "longitude": "27.26951000" + }, + { + "id": "93444", + "name": "Comuna Vârteşcoiu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.72465000", + "longitude": "27.06471000" + }, + { + "id": "93356", + "name": "Comuna Vidra", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91420000", + "longitude": "26.90506000" + }, + { + "id": "93366", + "name": "Comuna Vintileasca", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.62970000", + "longitude": "26.72608000" + }, + { + "id": "93372", + "name": "Comuna Vizantea-Livezi", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.96233000", + "longitude": "26.81347000" + }, + { + "id": "93411", + "name": "Comuna Vrâncioaia", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87169000", + "longitude": "26.70971000" + }, + { + "id": "93422", + "name": "Comuna Vulturu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60783000", + "longitude": "27.42281000" + }, + { + "id": "93584", + "name": "Comună Dumbrăveni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.55416000", + "longitude": "27.09037000" + }, + { + "id": "93616", + "name": "Corbiţa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.15000000", + "longitude": "27.30000000" + }, + { + "id": "93632", + "name": "Cornetu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50456000", + "longitude": "27.05305000" + }, + { + "id": "93674", + "name": "Coteşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65000000", + "longitude": "27.05000000" + }, + { + "id": "93992", + "name": "Domnești-Târg", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.01667000", + "longitude": "27.18333000" + }, + { + "id": "94022", + "name": "Dragosloveni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00000000", + "longitude": "26.66667000" + }, + { + "id": "94086", + "name": "Dumbrăveni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.53333000", + "longitude": "27.11667000" + }, + { + "id": "94099", + "name": "Dumitrești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.55243000", + "longitude": "26.92727000" + }, + { + "id": "97127", + "name": "Șindrilari", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.79083000", + "longitude": "26.87947000" + }, + { + "id": "94180", + "name": "Fitioneşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98333000", + "longitude": "27.05000000" + }, + { + "id": "94193", + "name": "Focșani", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70000000", + "longitude": "27.18333000" + }, + { + "id": "94282", + "name": "Garoafa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "27.20000000" + }, + { + "id": "94499", + "name": "Găgești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85598000", + "longitude": "27.05540000" + }, + { + "id": "94377", + "name": "Goleşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66667000", + "longitude": "27.13333000" + }, + { + "id": "94379", + "name": "Gologanu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60979000", + "longitude": "27.27091000" + }, + { + "id": "94446", + "name": "Gugeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.56667000", + "longitude": "27.13333000" + }, + { + "id": "94451", + "name": "Gura Caliţei", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58333000", + "longitude": "27.01667000" + }, + { + "id": "94552", + "name": "Homocea", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.13333000", + "longitude": "27.23333000" + }, + { + "id": "94646", + "name": "Igești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.82043000", + "longitude": "27.18253000" + }, + { + "id": "94687", + "name": "Irești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.92993000", + "longitude": "26.94393000" + }, + { + "id": "94723", + "name": "Jariştea", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "27.06667000" + }, + { + "id": "94742", + "name": "Jitia", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.58333000", + "longitude": "26.71667000" + }, + { + "id": "94747", + "name": "Jorăști", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71477000", + "longitude": "27.26335000" + }, + { + "id": "94783", + "name": "Lespezi", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.16027000", + "longitude": "27.24065000" + }, + { + "id": "95248", + "name": "Măicăneşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "27.50000000" + }, + { + "id": "95286", + "name": "Mărășești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88333000", + "longitude": "27.23333000" + }, + { + "id": "95289", + "name": "Mătăcina", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.88333000", + "longitude": "26.80000000" + }, + { + "id": "94949", + "name": "Mera", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "26.95000000" + }, + { + "id": "94996", + "name": "Mihălceni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44493000", + "longitude": "27.30466000" + }, + { + "id": "95002", + "name": "Milcovul", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65000000", + "longitude": "27.25000000" + }, + { + "id": "95015", + "name": "Mirceștii Noi", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75072000", + "longitude": "27.27260000" + }, + { + "id": "95085", + "name": "Moviliţa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.95000000", + "longitude": "27.10000000" + }, + { + "id": "95101", + "name": "Municipiul Adjud", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.11464000", + "longitude": "27.19284000" + }, + { + "id": "95141", + "name": "Municipiul Focşani", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.69004000", + "longitude": "27.22774000" + }, + { + "id": "95372", + "name": "Năneşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.55000000", + "longitude": "27.50000000" + }, + { + "id": "95374", + "name": "Năruja", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "26.78333000" + }, + { + "id": "95321", + "name": "Negrilești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93697000", + "longitude": "26.70635000" + }, + { + "id": "95329", + "name": "Nereju", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.71667000", + "longitude": "26.71667000" + }, + { + "id": "95330", + "name": "Nereju Mic", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70618000", + "longitude": "26.69641000" + }, + { + "id": "95350", + "name": "Nistoreşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.83333000", + "longitude": "26.73333000" + }, + { + "id": "95388", + "name": "Obrejița", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50102000", + "longitude": "27.08974000" + }, + { + "id": "95407", + "name": "Odobeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.76667000", + "longitude": "27.05000000" + }, + { + "id": "95427", + "name": "Oleșești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.84781000", + "longitude": "27.10097000" + }, + { + "id": "95547", + "name": "Oraş Mãrãşeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90446000", + "longitude": "27.22305000" + }, + { + "id": "95559", + "name": "Oraş Odobeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75011000", + "longitude": "27.08754000" + }, + { + "id": "95564", + "name": "Oraş Panciu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90661000", + "longitude": "27.09358000" + }, + { + "id": "95702", + "name": "Paltin", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "26.71667000" + }, + { + "id": "95704", + "name": "Panciu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.90000000", + "longitude": "27.08333000" + }, + { + "id": "96031", + "name": "Păulești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.89154000", + "longitude": "26.68914000" + }, + { + "id": "96033", + "name": "Păuneşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.03333000", + "longitude": "27.10000000" + }, + { + "id": "95829", + "name": "Ploscuțeni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.07859000", + "longitude": "27.27032000" + }, + { + "id": "95871", + "name": "Poiana Cristei", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.65000000", + "longitude": "26.98333000" + }, + { + "id": "95914", + "name": "Popești", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.59533000", + "longitude": "27.07916000" + }, + { + "id": "95976", + "name": "Pufeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00000000", + "longitude": "27.20000000" + }, + { + "id": "96169", + "name": "Râmniceni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51322000", + "longitude": "27.44843000" + }, + { + "id": "96189", + "name": "Răcoasa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.00000000", + "longitude": "26.88333000" + }, + { + "id": "96208", + "name": "Răstoaca", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.66083000", + "longitude": "27.28723000" + }, + { + "id": "96080", + "name": "Reghiu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.78333000", + "longitude": "26.83333000" + }, + { + "id": "96145", + "name": "Rucăreni", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.99438000", + "longitude": "26.65496000" + }, + { + "id": "96147", + "name": "Rugineşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.06667000", + "longitude": "27.11667000" + }, + { + "id": "96337", + "name": "Sihlea", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "27.11667000" + }, + { + "id": "96374", + "name": "Slobozia Bradului", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.50000000", + "longitude": "27.05000000" + }, + { + "id": "96378", + "name": "Slobozia-Câmpineanca", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.70000000", + "longitude": "27.13333000" + }, + { + "id": "96377", + "name": "Slobozia-Ciorăşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61667000", + "longitude": "27.20000000" + }, + { + "id": "96419", + "name": "Spulber", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.75186000", + "longitude": "26.76080000" + }, + { + "id": "96463", + "name": "Străoane", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.93333000", + "longitude": "27.05000000" + }, + { + "id": "96504", + "name": "Suraia", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.68333000", + "longitude": "27.40000000" + }, + { + "id": "96576", + "name": "Tâmboeşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51667000", + "longitude": "27.05000000" + }, + { + "id": "96609", + "name": "Tănăsoaia", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.10000000", + "longitude": "27.36667000" + }, + { + "id": "96619", + "name": "Tătăranu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.51667000", + "longitude": "27.31667000" + }, + { + "id": "106175", + "name": "Tulnici", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "26.66667000" + }, + { + "id": "96665", + "name": "Unirea", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.74020000", + "longitude": "27.10741000" + }, + { + "id": "96675", + "name": "Urecheşti", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60000000", + "longitude": "27.06667000" + }, + { + "id": "96701", + "name": "Vadu Roșca", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.63864000", + "longitude": "27.45716000" + }, + { + "id": "96758", + "name": "Valea Sării", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.87686000", + "longitude": "26.79873000" + }, + { + "id": "96929", + "name": "Vânători", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73333000", + "longitude": "27.25000000" + }, + { + "id": "96944", + "name": "Vârteşcoiu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.73333000", + "longitude": "27.08333000" + }, + { + "id": "96810", + "name": "Vidra", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.91667000", + "longitude": "26.90000000" + }, + { + "id": "96827", + "name": "Viișoara", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "46.05160000", + "longitude": "27.09593000" + }, + { + "id": "96835", + "name": "Vintileasca", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.60000000", + "longitude": "26.73333000" + }, + { + "id": "96843", + "name": "Vizantea-Mânăstirească", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.98333000", + "longitude": "26.78333000" + }, + { + "id": "96873", + "name": "Voetin", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.44370000", + "longitude": "27.14587000" + }, + { + "id": "96898", + "name": "Vrâncioaia", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.85000000", + "longitude": "26.73333000" + }, + { + "id": "96905", + "name": "Vulcăneasa", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.77388000", + "longitude": "26.90981000" + }, + { + "id": "96914", + "name": "Vulturu", + "state_id": 4758, + "state_code": "VN", + "country_id": 181, + "country_code": "RO", + "latitude": "45.61667000", + "longitude": "27.41667000" + }, + { + "id": "97586", + "name": "Aleysk", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.49260000", + "longitude": "82.78220000" + }, + { + "id": "97587", + "name": "Aleyskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.41667000", + "longitude": "82.75000000" + }, + { + "id": "97603", + "name": "Altayskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.95333000", + "longitude": "85.33250000" + }, + { + "id": "97641", + "name": "Anton’yevka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.99610000", + "longitude": "83.97400000" + }, + { + "id": "97726", + "name": "Aya", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.94532000", + "longitude": "85.80168000" + }, + { + "id": "97795", + "name": "Barnaul", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.36056000", + "longitude": "83.76361000" + }, + { + "id": "97796", + "name": "Barnaul Urban Okrug", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.33087000", + "longitude": "83.64441000" + }, + { + "id": "97808", + "name": "Bastan", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.85889000", + "longitude": "79.47444000" + }, + { + "id": "97823", + "name": "Bayevo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.27065000", + "longitude": "80.77921000" + }, + { + "id": "97827", + "name": "Bayunovskiye Klyuchi", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.32806000", + "longitude": "84.18222000" + }, + { + "id": "97856", + "name": "Belokurikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.99590000", + "longitude": "84.98960000" + }, + { + "id": "97868", + "name": "Beloyarsk", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.44610000", + "longitude": "83.90480000" + }, + { + "id": "97905", + "name": "Berëzovka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.35111000", + "longitude": "85.82722000" + }, + { + "id": "97942", + "name": "Biysk", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.53639000", + "longitude": "85.20722000" + }, + { + "id": "97947", + "name": "Blagoveshchenka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83333000", + "longitude": "79.86667000" + }, + { + "id": "97956", + "name": "Bobrovka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.18361000", + "longitude": "83.87639000" + }, + { + "id": "98036", + "name": "Borovikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.50720000", + "longitude": "83.83790000" + }, + { + "id": "98082", + "name": "Burla", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.33620000", + "longitude": "78.33010000" + }, + { + "id": "98102", + "name": "Bystryanka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.28611000", + "longitude": "85.82833000" + }, + { + "id": "98103", + "name": "Bystryy Istok", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.37100000", + "longitude": "84.38730000" + }, + { + "id": "98120", + "name": "Charyshskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.39780000", + "longitude": "83.55980000" + }, + { + "id": "98149", + "name": "Cheremnoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.16972000", + "longitude": "83.21333000" + }, + { + "id": "98454", + "name": "Gal’bshtadt", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.22640000", + "longitude": "78.98450000" + }, + { + "id": "98515", + "name": "Gon’ba", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41720000", + "longitude": "83.57470000" + }, + { + "id": "98537", + "name": "Gornyak", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "50.99417000", + "longitude": "81.46611000" + }, + { + "id": "98590", + "name": "Grishkovka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.14870000", + "longitude": "78.75100000" + }, + { + "id": "98680", + "name": "Inya", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.50440000", + "longitude": "82.67120000" + }, + { + "id": "98796", + "name": "Kalmanka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.89917000", + "longitude": "83.54333000" + }, + { + "id": "98797", + "name": "Kalmanskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.00000000", + "longitude": "83.50000000" + }, + { + "id": "98824", + "name": "Kamen’-na-Obi", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.78840000", + "longitude": "81.34230000" + }, + { + "id": "98950", + "name": "Khabarskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.58333000", + "longitude": "79.50000000" + }, + { + "id": "98951", + "name": "Khabary", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.62588000", + "longitude": "79.53450000" + }, + { + "id": "99111", + "name": "Klyuchi", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.25303000", + "longitude": "79.16868000" + }, + { + "id": "99231", + "name": "Kosikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.36167000", + "longitude": "84.58222000" + }, + { + "id": "99232", + "name": "Kosikhinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41667000", + "longitude": "84.58333000" + }, + { + "id": "99311", + "name": "Krasnogorskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.29530000", + "longitude": "86.19790000" + }, + { + "id": "99333", + "name": "Krasnoshchekovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.67083000", + "longitude": "82.72889000" + }, + { + "id": "99379", + "name": "Krasnyy Yar", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.35750000", + "longitude": "85.33806000" + }, + { + "id": "99403", + "name": "Krutikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.95990000", + "longitude": "81.20930000" + }, + { + "id": "99437", + "name": "Kulunda", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.56600000", + "longitude": "78.93850000" + }, + { + "id": "99438", + "name": "Kulundinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58333000", + "longitude": "79.00000000" + }, + { + "id": "99481", + "name": "Kur’inskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41667000", + "longitude": "82.41667000" + }, + { + "id": "99484", + "name": "Kusak", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.22380000", + "longitude": "78.93370000" + }, + { + "id": "99523", + "name": "Kytmanovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.45930000", + "longitude": "85.44790000" + }, + { + "id": "99556", + "name": "Lebyazh’ye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.24361000", + "longitude": "83.65333000" + }, + { + "id": "99600", + "name": "Lesnoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.46926000", + "longitude": "85.25547000" + }, + { + "id": "99650", + "name": "Logovskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.49430000", + "longitude": "84.20160000" + }, + { + "id": "99655", + "name": "Loktevskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.00000000", + "longitude": "81.58333000" + }, + { + "id": "99757", + "name": "Malinovoye Ozero", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.67528000", + "longitude": "79.78250000" + }, + { + "id": "99765", + "name": "Malougrenevo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.55680000", + "longitude": "85.33908000" + }, + { + "id": "99779", + "name": "Mamontovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.70550000", + "longitude": "81.62440000" + }, + { + "id": "99780", + "name": "Mamontovskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.66667000", + "longitude": "81.75000000" + }, + { + "id": "99805", + "name": "Martynovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.26667000", + "longitude": "85.88333000" + }, + { + "id": "99902", + "name": "Mikhaylovskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.75000000", + "longitude": "79.66667000" + }, + { + "id": "99906", + "name": "Mikhaylovskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.82389000", + "longitude": "79.71722000" + }, + { + "id": "100047", + "name": "Nagornyy", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.79590000", + "longitude": "83.54980000" + }, + { + "id": "100053", + "name": "Nalobikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.20090000", + "longitude": "84.60000000" + }, + { + "id": "100064", + "name": "Natsional’nyy Rayon Nemetskiy", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "79.00000000" + }, + { + "id": "100066", + "name": "Nauchnyy Gorodok", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.42030000", + "longitude": "83.52100000" + }, + { + "id": "100135", + "name": "Nikolayevka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.92556000", + "longitude": "79.41583000" + }, + { + "id": "100214", + "name": "Novichikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.20400000", + "longitude": "81.38770000" + }, + { + "id": "100215", + "name": "Novichikhinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16667000", + "longitude": "81.41667000" + }, + { + "id": "100216", + "name": "Novikovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.62231000", + "longitude": "85.96392000" + }, + { + "id": "100224", + "name": "Novoaltaysk", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.39170000", + "longitude": "83.93630000" + }, + { + "id": "100304", + "name": "Novosilikatnyy", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.30972000", + "longitude": "83.62389000" + }, + { + "id": "100318", + "name": "Novotyryshkino", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08330000", + "longitude": "84.90890000" + }, + { + "id": "100363", + "name": "Novyye Zori", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.24778000", + "longitude": "83.42500000" + }, + { + "id": "100538", + "name": "Pankrushikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.83194000", + "longitude": "80.34056000" + }, + { + "id": "100539", + "name": "Pankrushikhinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.83333000", + "longitude": "80.33333000" + }, + { + "id": "100573", + "name": "Pavlovsk", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.31861000", + "longitude": "82.98222000" + }, + { + "id": "100582", + "name": "Pavlovskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "83.00000000" + }, + { + "id": "100620", + "name": "Pervomayskiy", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.91730000", + "longitude": "81.66240000" + }, + { + "id": "100623", + "name": "Pervomayskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41667000", + "longitude": "84.08333000" + }, + { + "id": "100628", + "name": "Pervomayskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.59888000", + "longitude": "85.25769000" + }, + { + "id": "100655", + "name": "Petropavlovskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16667000", + "longitude": "84.25000000" + }, + { + "id": "100656", + "name": "Petropavlovskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.07120000", + "longitude": "84.10700000" + }, + { + "id": "100732", + "name": "Podsosnovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.37210000", + "longitude": "78.91840000" + }, + { + "id": "100786", + "name": "Pospelikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.95000000", + "longitude": "81.76667000" + }, + { + "id": "100787", + "name": "Pospelikhinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.83333000", + "longitude": "81.66667000" + }, + { + "id": "100954", + "name": "Rebrikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.07333000", + "longitude": "82.34083000" + }, + { + "id": "100955", + "name": "Rebrikhinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.00000000", + "longitude": "82.25000000" + }, + { + "id": "100973", + "name": "Rodino", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.49783000", + "longitude": "80.20294000" + }, + { + "id": "100974", + "name": "Rodinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "80.33333000" + }, + { + "id": "100989", + "name": "Romanovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.61820000", + "longitude": "81.22710000" + }, + { + "id": "100991", + "name": "Romanovskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58333000", + "longitude": "81.16667000" + }, + { + "id": "101019", + "name": "Rubtsovsk", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.51473000", + "longitude": "81.20613000" + }, + { + "id": "101020", + "name": "Rubtsovskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "81.33333000" + }, + { + "id": "101101", + "name": "Sannikovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.34480000", + "longitude": "83.97490000" + }, + { + "id": "101201", + "name": "Severka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.13333000", + "longitude": "79.28333000" + }, + { + "id": "101236", + "name": "Shakhi", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.33610000", + "longitude": "83.36240000" + }, + { + "id": "101290", + "name": "Shelabolikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41310000", + "longitude": "82.61670000" + }, + { + "id": "101291", + "name": "Shelabolikhinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41667000", + "longitude": "82.25000000" + }, + { + "id": "101324", + "name": "Shipunovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.15820000", + "longitude": "82.21730000" + }, + { + "id": "101325", + "name": "Shipunovskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.33333000", + "longitude": "82.08333000" + }, + { + "id": "101342", + "name": "Shubenka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.65510000", + "longitude": "85.09858000" + }, + { + "id": "101345", + "name": "Shul’gin Log", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16985000", + "longitude": "85.85573000" + }, + { + "id": "101367", + "name": "Sibirskiy", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.57770000", + "longitude": "83.75770000" + }, + { + "id": "101399", + "name": "Slavgorod", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.99780000", + "longitude": "78.64490000" + }, + { + "id": "101400", + "name": "Slavgorodskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.02140000", + "longitude": "78.64350000" + }, + { + "id": "101417", + "name": "Smolenskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16667000", + "longitude": "84.91667000" + }, + { + "id": "101418", + "name": "Smolenskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.30447000", + "longitude": "85.07850000" + }, + { + "id": "101437", + "name": "Sokolovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.53180000", + "longitude": "84.78960000" + }, + { + "id": "101464", + "name": "Soloneshenskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.66667000", + "longitude": "84.50000000" + }, + { + "id": "101465", + "name": "Soloneshnoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.65440000", + "longitude": "84.31970000" + }, + { + "id": "101468", + "name": "Solton", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.84290000", + "longitude": "86.47870000" + }, + { + "id": "101469", + "name": "Soltonskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83333000", + "longitude": "86.50000000" + }, + { + "id": "101478", + "name": "Sorokino", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.75000000", + "longitude": "84.91667000" + }, + { + "id": "101518", + "name": "Sovetskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.28556000", + "longitude": "85.41424000" + }, + { + "id": "101550", + "name": "Srostki", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.42090000", + "longitude": "85.69923000" + }, + { + "id": "101551", + "name": "Stan-Bekhtemir", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.60665000", + "longitude": "85.62619000" + }, + { + "id": "101571", + "name": "Staroaleyskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.00611000", + "longitude": "82.00000000" + }, + { + "id": "101574", + "name": "Starobelokurikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.05206000", + "longitude": "85.08765000" + }, + { + "id": "101608", + "name": "Staryy Togul", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.42910000", + "longitude": "85.90060000" + }, + { + "id": "101636", + "name": "Stukovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.21278000", + "longitude": "83.33778000" + }, + { + "id": "101722", + "name": "Sychëvka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.05120000", + "longitude": "84.77880000" + }, + { + "id": "101739", + "name": "Tabuny", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.77730000", + "longitude": "78.78960000" + }, + { + "id": "101757", + "name": "Tal’menka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.81830000", + "longitude": "83.56770000" + }, + { + "id": "101758", + "name": "Tal’menskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.75000000", + "longitude": "83.41667000" + }, + { + "id": "101870", + "name": "Togul", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.46700000", + "longitude": "85.91280000" + }, + { + "id": "101871", + "name": "Togul’skiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.66667000", + "longitude": "86.08333000" + }, + { + "id": "101893", + "name": "Topchikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.81920000", + "longitude": "83.11850000" + }, + { + "id": "101896", + "name": "Topol’noye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.51050000", + "longitude": "84.48130000" + }, + { + "id": "101924", + "name": "Troitskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.98220000", + "longitude": "84.68000000" + }, + { + "id": "101940", + "name": "Tselinnoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.07822000", + "longitude": "85.65363000" + }, + { + "id": "102006", + "name": "Tyumentsevo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.32240000", + "longitude": "81.49800000" + }, + { + "id": "102007", + "name": "Tyumentsevskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "81.50000000" + }, + { + "id": "102038", + "name": "Uglovskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.35570000", + "longitude": "80.19420000" + }, + { + "id": "102117", + "name": "Ust’-Charyshskaya Pristan’", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.39340000", + "longitude": "83.66350000" + }, + { + "id": "102120", + "name": "Ust’-Isha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.18201000", + "longitude": "85.96757000" + }, + { + "id": "102124", + "name": "Ust’-Kalmanka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.12070000", + "longitude": "83.30500000" + }, + { + "id": "102143", + "name": "Ust’yanka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.45270000", + "longitude": "78.74250000" + }, + { + "id": "102148", + "name": "Usyatskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.56806000", + "longitude": "85.76085000" + }, + { + "id": "102231", + "name": "Verkh-Katunskoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.45000000", + "longitude": "85.43162000" + }, + { + "id": "102233", + "name": "Verkh-Suetka", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.30401000", + "longitude": "80.04675000" + }, + { + "id": "102251", + "name": "Verkhniy Bekhtemir", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.76582000", + "longitude": "85.91011000" + }, + { + "id": "102287", + "name": "Veseloyarsk", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.28737000", + "longitude": "81.10703000" + }, + { + "id": "102331", + "name": "Vlasikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.29722000", + "longitude": "83.57417000" + }, + { + "id": "102340", + "name": "Volchikha", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.01356000", + "longitude": "80.35715000" + }, + { + "id": "102341", + "name": "Volchikhinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08333000", + "longitude": "80.50000000" + }, + { + "id": "102504", + "name": "Yarovoye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.92730000", + "longitude": "78.58000000" + }, + { + "id": "102526", + "name": "Yegor’yevskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.75000000", + "longitude": "81.00000000" + }, + { + "id": "102552", + "name": "Yel’tsovskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "86.41667000" + }, + { + "id": "102618", + "name": "Yuzhnyy", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25417000", + "longitude": "83.69361000" + }, + { + "id": "102638", + "name": "Zalesovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.99389000", + "longitude": "84.74306000" + }, + { + "id": "102658", + "name": "Zarinsk", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.70740000", + "longitude": "84.94930000" + }, + { + "id": "102659", + "name": "Zarinskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.91667000", + "longitude": "85.33333000" + }, + { + "id": "102662", + "name": "Zarya", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.59696000", + "longitude": "85.17570000" + }, + { + "id": "102667", + "name": "Zaton", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.29361000", + "longitude": "83.80722000" + }, + { + "id": "102682", + "name": "Zav’yalovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83805000", + "longitude": "80.91970000" + }, + { + "id": "102684", + "name": "Zav’yalovskiy Rayon", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.91667000", + "longitude": "81.00000000" + }, + { + "id": "102752", + "name": "Zmeinogorsk", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "51.15776000", + "longitude": "82.19534000" + }, + { + "id": "102769", + "name": "Zonal’noye", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "52.66650000", + "longitude": "84.93310000" + }, + { + "id": "102776", + "name": "Zudilovo", + "state_id": 1911, + "state_code": "ALT", + "country_id": 182, + "country_code": "RU", + "latitude": "53.49270000", + "longitude": "83.89370000" + }, + { + "id": "97548", + "name": "Aktash", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.30000000", + "longitude": "87.73333000" + }, + { + "id": "97684", + "name": "Artybash", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.79278000", + "longitude": "87.27611000" + }, + { + "id": "97876", + "name": "Belyashi", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "49.70900000", + "longitude": "87.42300000" + }, + { + "id": "98141", + "name": "Chemal", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41111000", + "longitude": "86.00500000" + }, + { + "id": "98158", + "name": "Cherga", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.56889000", + "longitude": "85.56250000" + }, + { + "id": "98212", + "name": "Choya", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.01080000", + "longitude": "86.54670000" + }, + { + "id": "98384", + "name": "Elekmonar", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.45889000", + "longitude": "85.98778000" + }, + { + "id": "98529", + "name": "Gorno-Altaysk", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.96056000", + "longitude": "85.91892000" + }, + { + "id": "98679", + "name": "Inya", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.45611000", + "longitude": "86.62667000" + }, + { + "id": "98684", + "name": "Iogach", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.78167000", + "longitude": "87.26306000" + }, + { + "id": "99226", + "name": "Kosh-Agach", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "49.99273000", + "longitude": "88.67598000" + }, + { + "id": "99787", + "name": "Manzherok", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.83028000", + "longitude": "85.77500000" + }, + { + "id": "99824", + "name": "Mayma", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.01577000", + "longitude": "85.90963000" + }, + { + "id": "99825", + "name": "Mayminskiy Rayon", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.83333000", + "longitude": "86.00000000" + }, + { + "id": "100448", + "name": "Onguday", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.75000000", + "longitude": "86.15000000" + }, + { + "id": "100449", + "name": "Ongudayskiy Rayon", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.66667000", + "longitude": "86.50000000" + }, + { + "id": "101282", + "name": "Shebalino", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.29167000", + "longitude": "85.67722000" + }, + { + "id": "101283", + "name": "Shebalinskiy Rayon", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.33333000", + "longitude": "85.50000000" + }, + { + "id": "101502", + "name": "Souzga", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.88722000", + "longitude": "85.84944000" + }, + { + "id": "101785", + "name": "Tashanta", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "49.71573000", + "longitude": "89.19425000" + }, + { + "id": "101980", + "name": "Turochak", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.25760000", + "longitude": "87.12240000" + }, + { + "id": "102127", + "name": "Ust’-Kan", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.92760000", + "longitude": "84.76100000" + }, + { + "id": "102131", + "name": "Ust’-Koksa", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.26960000", + "longitude": "85.61080000" + }, + { + "id": "102132", + "name": "Ust’-Koksinskiy Rayon", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.16667000", + "longitude": "85.58333000" + }, + { + "id": "102141", + "name": "Ust’-Ulagan", + "state_id": 1876, + "state_code": "AL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.63258000", + "longitude": "87.96046000" + }, + { + "id": "97666", + "name": "Arkhara", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.42447000", + "longitude": "130.08569000" + }, + { + "id": "97667", + "name": "Arkharinskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.50000000", + "longitude": "130.66667000" + }, + { + "id": "97853", + "name": "Belogorsk", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.91644000", + "longitude": "128.47726000" + }, + { + "id": "97854", + "name": "Belogorskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.75000000", + "longitude": "128.50000000" + }, + { + "id": "97949", + "name": "Blagoveshchensk", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.27961000", + "longitude": "127.54050000" + }, + { + "id": "97950", + "name": "Blagoveshchenskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.75000000", + "longitude": "127.50000000" + }, + { + "id": "98079", + "name": "Bureya", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.81212000", + "longitude": "129.81278000" + }, + { + "id": "98080", + "name": "Bureyskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.00000000", + "longitude": "130.00000000" + }, + { + "id": "98383", + "name": "Ekimchan", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.06972000", + "longitude": "132.94011000" + }, + { + "id": "98546", + "name": "Gorod Blagoveshchensk", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.40000000", + "longitude": "127.60000000" + }, + { + "id": "98554", + "name": "Gorod Raychikhinsk", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.75000000", + "longitude": "129.41667000" + }, + { + "id": "98733", + "name": "Ivanovskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.45611000", + "longitude": "127.99778000" + }, + { + "id": "99187", + "name": "Konstantinovka", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.61876000", + "longitude": "127.99025000" + }, + { + "id": "99193", + "name": "Konstantinovskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.75000000", + "longitude": "128.16667000" + }, + { + "id": "99735", + "name": "Magdagachi", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.45398000", + "longitude": "125.80932000" + }, + { + "id": "99736", + "name": "Magdagachinskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.33333000", + "longitude": "126.00000000" + }, + { + "id": "99837", + "name": "Mazanovskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16667000", + "longitude": "129.50000000" + }, + { + "id": "99904", + "name": "Mikhaylovskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.75000000", + "longitude": "128.75000000" + }, + { + "id": "100117", + "name": "Never", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.97946000", + "longitude": "124.15777000" + }, + { + "id": "100232", + "name": "Novobureyskiy", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.79695000", + "longitude": "129.87443000" + }, + { + "id": "100287", + "name": "Novoraychikhinsk", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.78423000", + "longitude": "129.59051000" + }, + { + "id": "100414", + "name": "Oktyabr’skiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.33333000", + "longitude": "129.00000000" + }, + { + "id": "100514", + "name": "Ovsyanka", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.57868000", + "longitude": "126.89623000" + }, + { + "id": "100797", + "name": "Poyarkovo", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.62678000", + "longitude": "128.65352000" + }, + { + "id": "100946", + "name": "Raychikhinsk", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.78998000", + "longitude": "129.40992000" + }, + { + "id": "100992", + "name": "Romnenskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.00000000", + "longitude": "130.00000000" + }, + { + "id": "100993", + "name": "Romny", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.72070000", + "longitude": "129.29122000" + }, + { + "id": "101150", + "name": "Selemdzhinskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "132.00000000" + }, + { + "id": "101194", + "name": "Seryshevo", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.09391000", + "longitude": "128.38258000" + }, + { + "id": "101195", + "name": "Seryshevskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.16667000", + "longitude": "128.50000000" + }, + { + "id": "101318", + "name": "Shimanovsk", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.00575000", + "longitude": "127.67756000" + }, + { + "id": "101319", + "name": "Shimanovskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16667000", + "longitude": "127.50000000" + }, + { + "id": "101330", + "name": "Shirokiy", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "49.75907000", + "longitude": "129.51988000" + }, + { + "id": "101383", + "name": "Sivaki", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.63430000", + "longitude": "126.74777000" + }, + { + "id": "101392", + "name": "Skovorodino", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.98473000", + "longitude": "123.94030000" + }, + { + "id": "101393", + "name": "Skovorodinskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.83333000", + "longitude": "123.50000000" + }, + { + "id": "101467", + "name": "Solovjevsk", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.23333000", + "longitude": "124.43333000" + }, + { + "id": "101541", + "name": "Srednebelaya", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.65854000", + "longitude": "128.00932000" + }, + { + "id": "101712", + "name": "Svobodnenskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "127.83333000" + }, + { + "id": "101714", + "name": "Svobodnyy", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.37525000", + "longitude": "128.14097000" + }, + { + "id": "101744", + "name": "Takhtamygda", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.11031000", + "longitude": "123.60802000" + }, + { + "id": "101746", + "name": "Talakan", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.26378000", + "longitude": "130.26755000" + }, + { + "id": "101749", + "name": "Taldan", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.68981000", + "longitude": "124.81490000" + }, + { + "id": "101763", + "name": "Tambovka", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.09968000", + "longitude": "128.05724000" + }, + { + "id": "101764", + "name": "Tambovskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.08333000", + "longitude": "128.00000000" + }, + { + "id": "101875", + "name": "Tokur", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.13531000", + "longitude": "132.88996000" + }, + { + "id": "101950", + "name": "Tsiolkovskiy", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.76694000", + "longitude": "128.11472000" + }, + { + "id": "101991", + "name": "Tygda", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.11169000", + "longitude": "126.32907000" + }, + { + "id": "101993", + "name": "Tynda", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.15600000", + "longitude": "124.72479000" + }, + { + "id": "101994", + "name": "Tyndinskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "123.50000000" + }, + { + "id": "102089", + "name": "Urusha", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.05303000", + "longitude": "122.88561000" + }, + { + "id": "102095", + "name": "Ushumun", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.78633000", + "longitude": "126.53767000" + }, + { + "id": "102528", + "name": "Yekaterinoslavka", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.37344000", + "longitude": "129.10957000" + }, + { + "id": "102570", + "name": "Yerofey Pavlovich", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.96305000", + "longitude": "121.95805000" + }, + { + "id": "102673", + "name": "Zavitinsk", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.11118000", + "longitude": "129.44156000" + }, + { + "id": "102674", + "name": "Zavitinskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.16667000", + "longitude": "129.50000000" + }, + { + "id": "102708", + "name": "Zeya", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.73601000", + "longitude": "127.25700000" + }, + { + "id": "102709", + "name": "Zeyskiy Rayon", + "state_id": 1858, + "state_code": "AMU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50000000", + "longitude": "128.50000000" + }, + { + "id": "97664", + "name": "Arkhangel’sk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.54010000", + "longitude": "40.54330000" + }, + { + "id": "97903", + "name": "Berëznik", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.85200000", + "longitude": "42.70710000" + }, + { + "id": "98153", + "name": "Cheremushskiy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.27306000", + "longitude": "47.26361000" + }, + { + "id": "98358", + "name": "Dvinskoy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.15190000", + "longitude": "45.11840000" + }, + { + "id": "98655", + "name": "Il’insko-Podomskoye", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.11444000", + "longitude": "47.97861000" + }, + { + "id": "98646", + "name": "Ileza", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.05328000", + "longitude": "43.90021000" + }, + { + "id": "98698", + "name": "Isakogorka", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.44600000", + "longitude": "40.65310000" + }, + { + "id": "98809", + "name": "Kamenka", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "65.88350000", + "longitude": "44.12720000" + }, + { + "id": "98879", + "name": "Kargopol’", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.50359000", + "longitude": "38.94860000" + }, + { + "id": "98880", + "name": "Kargopol’skiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.33333000", + "longitude": "39.00000000" + }, + { + "id": "98884", + "name": "Karpogory", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.00189000", + "longitude": "44.44513000" + }, + { + "id": "98909", + "name": "Katunino", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.38620000", + "longitude": "40.62980000" + }, + { + "id": "98964", + "name": "Kharitonovo", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.40092000", + "longitude": "47.49779000" + }, + { + "id": "98994", + "name": "Kholmogorskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.08333000", + "longitude": "41.66667000" + }, + { + "id": "98995", + "name": "Kholmogory", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.22290000", + "longitude": "41.65600000" + }, + { + "id": "99088", + "name": "Kizema", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.11304000", + "longitude": "44.83017000" + }, + { + "id": "99126", + "name": "Kodino", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "63.71976000", + "longitude": "39.64465000" + }, + { + "id": "99197", + "name": "Konëvo", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.11745000", + "longitude": "39.33131000" + }, + { + "id": "99186", + "name": "Konosha", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "60.97360000", + "longitude": "40.25700000" + }, + { + "id": "99221", + "name": "Koryazhma", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.31433000", + "longitude": "47.16914000" + }, + { + "id": "99246", + "name": "Kotlas", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.25745000", + "longitude": "46.64963000" + }, + { + "id": "99247", + "name": "Kotlasskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.16667000", + "longitude": "46.33333000" + }, + { + "id": "99297", + "name": "Krasnoborsk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.55978000", + "longitude": "45.93396000" + }, + { + "id": "99435", + "name": "Kuloy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.03049000", + "longitude": "42.49252000" + }, + { + "id": "99580", + "name": "Lenskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.00000000", + "longitude": "48.66667000" + }, + { + "id": "99588", + "name": "Leshukonskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "65.00000000", + "longitude": "47.00000000" + }, + { + "id": "99589", + "name": "Leshukonskoye", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.89770000", + "longitude": "45.76550000" + }, + { + "id": "99675", + "name": "Loyga", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.07845000", + "longitude": "44.60750000" + }, + { + "id": "99689", + "name": "Lukovetskiy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.29560000", + "longitude": "41.92110000" + }, + { + "id": "99876", + "name": "Mezen’", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "65.84010000", + "longitude": "44.25420000" + }, + { + "id": "99875", + "name": "Mezenskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "65.75000000", + "longitude": "44.00000000" + }, + { + "id": "99924", + "name": "Mirnyy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.33289000", + "longitude": "44.53598000" + }, + { + "id": "100240", + "name": "Novodvinsk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.41650000", + "longitude": "40.81220000" + }, + { + "id": "100374", + "name": "Nyandoma", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.66560000", + "longitude": "40.20130000" + }, + { + "id": "100375", + "name": "Nyandomskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.00000000", + "longitude": "40.66667000" + }, + { + "id": "100407", + "name": "Oksovskiy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.60623000", + "longitude": "39.89845000" + }, + { + "id": "100446", + "name": "Onega", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "63.90692000", + "longitude": "38.11112000" + }, + { + "id": "100447", + "name": "Onezhskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "63.33333000", + "longitude": "38.00000000" + }, + { + "id": "100675", + "name": "Pinega", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.69969000", + "longitude": "43.39016000" + }, + { + "id": "100677", + "name": "Pinezhskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.66667000", + "longitude": "43.00000000" + }, + { + "id": "100701", + "name": "Plesetsk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.70804000", + "longitude": "40.29159000" + }, + { + "id": "100734", + "name": "Podyuga", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.09500000", + "longitude": "40.86472000" + }, + { + "id": "100834", + "name": "Primorskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "65.00000000", + "longitude": "41.00000000" + }, + { + "id": "100845", + "name": "Privodino", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.07599000", + "longitude": "46.50238000" + }, + { + "id": "100890", + "name": "Puksoozero", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.59030000", + "longitude": "40.60660000" + }, + { + "id": "100972", + "name": "Rochegda", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.66780000", + "longitude": "43.41330000" + }, + { + "id": "101089", + "name": "Samoded", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "63.60830000", + "longitude": "40.51110000" + }, + { + "id": "101217", + "name": "Severodvinsk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.56350000", + "longitude": "39.83020000" + }, + { + "id": "101243", + "name": "Shalakusha", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.22472000", + "longitude": "40.25389000" + }, + { + "id": "101256", + "name": "Shangaly", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.12842000", + "longitude": "43.33427000" + }, + { + "id": "101300", + "name": "Shenkursk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.10910000", + "longitude": "42.89595000" + }, + { + "id": "101301", + "name": "Shenkurskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.25000000", + "longitude": "42.41667000" + }, + { + "id": "101323", + "name": "Shipitsyno", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.28056000", + "longitude": "46.52083000" + }, + { + "id": "101474", + "name": "Sol’vychegodsk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.33046000", + "longitude": "46.91559000" + }, + { + "id": "101448", + "name": "Solginskiy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.05000000", + "longitude": "41.34278000" + }, + { + "id": "102022", + "name": "Udimskiy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.14171000", + "longitude": "45.91443000" + }, + { + "id": "102074", + "name": "Urdoma", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.75335000", + "longitude": "48.54420000" + }, + { + "id": "102138", + "name": "Ust’-Shonosha", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.15310000", + "longitude": "41.34300000" + }, + { + "id": "102144", + "name": "Ust’yanskiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.33333000", + "longitude": "43.66667000" + }, + { + "id": "102162", + "name": "Uyemskiy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.47430000", + "longitude": "40.85240000" + }, + { + "id": "102203", + "name": "Vas’kovo", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.41220000", + "longitude": "40.46390000" + }, + { + "id": "102221", + "name": "Vel’sk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.07006000", + "longitude": "42.09830000" + }, + { + "id": "102222", + "name": "Vel’skiy Rayon", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.00000000", + "longitude": "42.00000000" + }, + { + "id": "102274", + "name": "Verkhnyaya Toyma", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.23470000", + "longitude": "45.00090000" + }, + { + "id": "102360", + "name": "Voloshka", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.33139000", + "longitude": "40.08583000" + }, + { + "id": "102427", + "name": "Vychegodskiy", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "61.24702000", + "longitude": "46.89842000" + }, + { + "id": "102462", + "name": "Yagry", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "64.59417000", + "longitude": "39.81028000" + }, + { + "id": "102494", + "name": "Yarensk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "62.16755000", + "longitude": "49.09162000" + }, + { + "id": "102557", + "name": "Yemetsk", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "63.47191000", + "longitude": "41.78023000" + }, + { + "id": "102558", + "name": "Yemtsa", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "63.07337000", + "longitude": "40.33285000" + }, + { + "id": "102575", + "name": "Yertsevo", + "state_id": 1849, + "state_code": "ARK", + "country_id": 182, + "country_code": "RU", + "latitude": "60.79660000", + "longitude": "40.08600000" + }, + { + "id": "97530", + "name": "Akhtubinsk", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "48.27955000", + "longitude": "46.17217000" + }, + { + "id": "97531", + "name": "Akhtubinskiy Rayon", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "48.16667000", + "longitude": "46.25000000" + }, + { + "id": "97539", + "name": "Aksarayskiy", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.79244000", + "longitude": "48.01188000" + }, + { + "id": "97706", + "name": "Astrakhan", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.34968000", + "longitude": "48.04076000" + }, + { + "id": "98228", + "name": "Chyorny Yar", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "48.06242000", + "longitude": "46.10911000" + }, + { + "id": "98640", + "name": "Ikryanoye", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.09323000", + "longitude": "47.73078000" + }, + { + "id": "98831", + "name": "Kamyzyak", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.10995000", + "longitude": "48.07364000" + }, + { + "id": "98849", + "name": "Kapustin Yar", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "48.58175000", + "longitude": "45.74481000" + }, + { + "id": "98867", + "name": "Karalat", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.91555000", + "longitude": "48.30683000" + }, + { + "id": "98963", + "name": "Kharabali", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "47.41958000", + "longitude": "47.25678000" + }, + { + "id": "99067", + "name": "Kirovskiy", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.84639000", + "longitude": "48.12472000" + }, + { + "id": "99347", + "name": "Krasnoyarskiy Rayon", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.83333000", + "longitude": "48.25000000" + }, + { + "id": "99377", + "name": "Krasnyy Yar", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.53314000", + "longitude": "48.34559000" + }, + { + "id": "99382", + "name": "Krasnyye Barrikady", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.20450000", + "longitude": "47.85350000" + }, + { + "id": "99628", + "name": "Liman", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.78457000", + "longitude": "47.22405000" + }, + { + "id": "99629", + "name": "Limanskiy Rayon", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.83333000", + "longitude": "47.25000000" + }, + { + "id": "99792", + "name": "Marfino", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.40852000", + "longitude": "48.71398000" + }, + { + "id": "100002", + "name": "Mumra", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.77251000", + "longitude": "47.65398000" + }, + { + "id": "100038", + "name": "Nachalovo", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.33800000", + "longitude": "48.20128000" + }, + { + "id": "100058", + "name": "Narimanov", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.69270000", + "longitude": "47.84980000" + }, + { + "id": "100163", + "name": "Nizhniy Baskunchak", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "48.21978000", + "longitude": "46.83105000" + }, + { + "id": "100456", + "name": "Oranzherei", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.84756000", + "longitude": "47.56635000" + }, + { + "id": "100752", + "name": "Poldnëvoye", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.85568000", + "longitude": "47.95241000" + }, + { + "id": "100849", + "name": "Privolzhskiy Rayon", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.25000000", + "longitude": "48.16667000" + }, + { + "id": "101129", + "name": "Sasykoli", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "47.55153000", + "longitude": "46.99679000" + }, + { + "id": "101386", + "name": "Sizyy Bugor", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.21343000", + "longitude": "48.50462000" + }, + { + "id": "101471", + "name": "Solyanka", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.38890000", + "longitude": "48.01755000" + }, + { + "id": "101583", + "name": "Starokucherganovka", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.32476000", + "longitude": "47.95550000" + }, + { + "id": "101762", + "name": "Tambovka", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "47.31528000", + "longitude": "47.37773000" + }, + { + "id": "101931", + "name": "Trudfront", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.93460000", + "longitude": "47.66929000" + }, + { + "id": "101968", + "name": "Tumak", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.23436000", + "longitude": "48.50627000" + }, + { + "id": "102156", + "name": "Uvary", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.04575000", + "longitude": "48.03558000" + }, + { + "id": "102250", + "name": "Verkhniy Baskunchak", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "48.22564000", + "longitude": "46.72169000" + }, + { + "id": "102343", + "name": "Volgo-Kaspiyskiy", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.20306000", + "longitude": "47.91869000" + }, + { + "id": "102352", + "name": "Volodarskiy", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.40134000", + "longitude": "48.54093000" + }, + { + "id": "102472", + "name": "Yaksatovo", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "46.24343000", + "longitude": "48.01514000" + }, + { + "id": "102482", + "name": "Yandyki", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.76913000", + "longitude": "47.12577000" + }, + { + "id": "102562", + "name": "Yenotayevka", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "47.24559000", + "longitude": "47.02814000" + }, + { + "id": "102706", + "name": "Zenzeli", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "45.92407000", + "longitude": "47.04739000" + }, + { + "id": "102759", + "name": "Znamensk", + "state_id": 1866, + "state_code": "AST", + "country_id": 182, + "country_code": "RU", + "latitude": "48.58420000", + "longitude": "45.73380000" + }, + { + "id": "97579", + "name": "Alekseyevka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.63090000", + "longitude": "38.69030000" + }, + { + "id": "97837", + "name": "Bekhteyevka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.80758000", + "longitude": "37.21789000" + }, + { + "id": "97848", + "name": "Belgorod", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.61074000", + "longitude": "36.58015000" + }, + { + "id": "97849", + "name": "Belgorodskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.50000000", + "longitude": "36.50000000" + }, + { + "id": "97914", + "name": "Bessonovka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.52644000", + "longitude": "36.30107000" + }, + { + "id": "98028", + "name": "Borisovka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.60155000", + "longitude": "36.01549000" + }, + { + "id": "98029", + "name": "Borisovskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.58333000", + "longitude": "36.00000000" + }, + { + "id": "98178", + "name": "Chernyanka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.94095000", + "longitude": "37.80693000" + }, + { + "id": "98179", + "name": "Chernyanskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.00000000", + "longitude": "37.91667000" + }, + { + "id": "98507", + "name": "Golovchino", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.53410000", + "longitude": "35.79700000" + }, + { + "id": "98577", + "name": "Grayvoron", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.47670000", + "longitude": "35.67730000" + }, + { + "id": "98578", + "name": "Grayvoronskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.50000000", + "longitude": "35.66667000" + }, + { + "id": "98603", + "name": "Gubkin", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.28167000", + "longitude": "37.54583000" + }, + { + "id": "98647", + "name": "Ilovka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.70530000", + "longitude": "38.63700000" + }, + { + "id": "98739", + "name": "Ivnya", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.06294000", + "longitude": "36.13426000" + }, + { + "id": "98740", + "name": "Ivnyanskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.00000000", + "longitude": "36.25000000" + }, + { + "id": "99212", + "name": "Korocha", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.81320000", + "longitude": "37.18598000" + }, + { + "id": "99213", + "name": "Korochanskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.83333000", + "longitude": "37.25000000" + }, + { + "id": "99286", + "name": "Krasnaya Yaruga", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.80083000", + "longitude": "35.65833000" + }, + { + "id": "99288", + "name": "Krasnenskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.91667000", + "longitude": "38.58333000" + }, + { + "id": "99314", + "name": "Krasnogvardeyskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.66667000", + "longitude": "38.33333000" + }, + { + "id": "99318", + "name": "Krasnogvardeyskoye", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.64920000", + "longitude": "38.40360000" + }, + { + "id": "99348", + "name": "Krasnoyaruzhskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.83333000", + "longitude": "35.50000000" + }, + { + "id": "99350", + "name": "Krasnoye", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.92970000", + "longitude": "38.68170000" + }, + { + "id": "99643", + "name": "Livenka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.44910000", + "longitude": "38.29590000" + }, + { + "id": "99810", + "name": "Maslova Pristan’", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.45758000", + "longitude": "36.72038000" + }, + { + "id": "99831", + "name": "Mayskiy", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.51988000", + "longitude": "36.45878000" + }, + { + "id": "100210", + "name": "Novaya Tavolzhanka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.35123000", + "longitude": "36.82980000" + }, + { + "id": "100276", + "name": "Novooskol’skiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.75000000", + "longitude": "37.83333000" + }, + { + "id": "100348", + "name": "Novyy Oskol", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.76330000", + "longitude": "37.86402000" + }, + { + "id": "100857", + "name": "Prokhorovka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.03741000", + "longitude": "36.73252000" + }, + { + "id": "100858", + "name": "Prokhorovskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.00447000", + "longitude": "36.74875000" + }, + { + "id": "100864", + "name": "Proletarskiy", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.79139000", + "longitude": "35.77306000" + }, + { + "id": "100911", + "name": "Pyatnitskoye", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.42330000", + "longitude": "37.82730000" + }, + { + "id": "100932", + "name": "Rakitnoye", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.83890000", + "longitude": "35.85150000" + }, + { + "id": "100933", + "name": "Rakityanskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.83333000", + "longitude": "35.91667000" + }, + { + "id": "100952", + "name": "Razumnoye", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.53439000", + "longitude": "36.68462000" + }, + { + "id": "100984", + "name": "Rogovatoye", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.23000000", + "longitude": "38.38180000" + }, + { + "id": "101010", + "name": "Roven’skiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.00000000", + "longitude": "39.00000000" + }, + { + "id": "101208", + "name": "Severnyy", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.67704000", + "longitude": "36.55324000" + }, + { + "id": "101284", + "name": "Shebekino", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.40967000", + "longitude": "36.91360000" + }, + { + "id": "101285", + "name": "Shebekinskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.50000000", + "longitude": "37.00000000" + }, + { + "id": "101390", + "name": "Skorodnoye", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.07101000", + "longitude": "37.22756000" + }, + { + "id": "101607", + "name": "Staryy Oskol", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.29667000", + "longitude": "37.84167000" + }, + { + "id": "101631", + "name": "Stroitel’", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.78543000", + "longitude": "36.48310000" + }, + { + "id": "101883", + "name": "Tomarovka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.68338000", + "longitude": "36.23309000" + }, + { + "id": "101917", + "name": "Troitskiy", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "51.35880000", + "longitude": "37.52530000" + }, + { + "id": "102073", + "name": "Urazovo", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.08360000", + "longitude": "38.03950000" + }, + { + "id": "102183", + "name": "Valuyki", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.20350000", + "longitude": "38.10670000" + }, + { + "id": "102184", + "name": "Valuyskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.16667000", + "longitude": "38.00000000" + }, + { + "id": "102299", + "name": "Veydelevka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.15210000", + "longitude": "38.44920000" + }, + { + "id": "102358", + "name": "Volokonovka", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.48270000", + "longitude": "37.85630000" + }, + { + "id": "102359", + "name": "Volokonovskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.50000000", + "longitude": "37.83333000" + }, + { + "id": "102467", + "name": "Yakovlevo", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.86033000", + "longitude": "36.44784000" + }, + { + "id": "102469", + "name": "Yakovlevskiy Rayon", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.83333000", + "longitude": "36.41667000" + }, + { + "id": "102665", + "name": "Zasosna", + "state_id": 1903, + "state_code": "BEL", + "country_id": 182, + "country_code": "RU", + "latitude": "50.63070000", + "longitude": "38.39650000" + }, + { + "id": "97606", + "name": "Altukhovo", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.67559000", + "longitude": "34.36703000" + }, + { + "id": "97659", + "name": "Ardon’", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.73524000", + "longitude": "32.30857000" + }, + { + "id": "97882", + "name": "Belyye Berega", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.20851000", + "longitude": "34.66405000" + }, + { + "id": "98051", + "name": "Brasovskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.66667000", + "longitude": "34.75000000" + }, + { + "id": "98060", + "name": "Bryansk", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25209000", + "longitude": "34.37167000" + }, + { + "id": "98061", + "name": "Bryanskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "34.41667000" + }, + { + "id": "98104", + "name": "Bytosh’", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.81861000", + "longitude": "34.09116000" + }, + { + "id": "98226", + "name": "Churovichi", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16930000", + "longitude": "31.99260000" + }, + { + "id": "98295", + "name": "Dobrun’", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.18512000", + "longitude": "34.24625000" + }, + { + "id": "98345", + "name": "Dubrovka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.69070000", + "longitude": "33.50710000" + }, + { + "id": "98346", + "name": "Dubrovskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.66667000", + "longitude": "33.41667000" + }, + { + "id": "98362", + "name": "Dyat’kovo", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.59782000", + "longitude": "34.33825000" + }, + { + "id": "98363", + "name": "Dyat’kovskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.66667000", + "longitude": "34.25000000" + }, + { + "id": "98498", + "name": "Glinishchevo", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.30416000", + "longitude": "34.06523000" + }, + { + "id": "98520", + "name": "Gordeyevka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.95690000", + "longitude": "31.97030000" + }, + { + "id": "98521", + "name": "Gordeyevskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.91667000", + "longitude": "31.91667000" + }, + { + "id": "98547", + "name": "Gorod Bryansk", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "34.41667000" + }, + { + "id": "98550", + "name": "Gorod Dyat’kovo", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.60000000", + "longitude": "34.35000000" + }, + { + "id": "98729", + "name": "Ivanovka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.34694000", + "longitude": "34.21917000" + }, + { + "id": "98743", + "name": "Ivot", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.67556000", + "longitude": "34.18722000" + }, + { + "id": "98859", + "name": "Karachev", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.12292000", + "longitude": "34.98517000" + }, + { + "id": "99098", + "name": "Kletnya", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.38967000", + "longitude": "33.21714000" + }, + { + "id": "99099", + "name": "Kletnyanskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.33333000", + "longitude": "33.16667000" + }, + { + "id": "99101", + "name": "Klimovo", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.38053000", + "longitude": "32.19233000" + }, + { + "id": "99103", + "name": "Klimovskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.25000000", + "longitude": "32.16667000" + }, + { + "id": "99106", + "name": "Klintsovskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.75000000", + "longitude": "32.16667000" + }, + { + "id": "99107", + "name": "Klintsy", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.76019000", + "longitude": "32.23935000" + }, + { + "id": "99130", + "name": "Kokino", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.49640000", + "longitude": "34.78080000" + }, + { + "id": "99131", + "name": "Kokorevka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58740000", + "longitude": "34.26920000" + }, + { + "id": "99158", + "name": "Komarichi", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.41510000", + "longitude": "34.79050000" + }, + { + "id": "99159", + "name": "Komarichskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.41667000", + "longitude": "34.75000000" + }, + { + "id": "99223", + "name": "Korzhovka-Golubovka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.76742000", + "longitude": "32.35362000" + }, + { + "id": "99277", + "name": "Krasnaya Gora", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.99950000", + "longitude": "31.60230000" + }, + { + "id": "99308", + "name": "Krasnogorskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.00000000", + "longitude": "31.50000000" + }, + { + "id": "99654", + "name": "Lokot’", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.56500000", + "longitude": "34.57760000" + }, + { + "id": "99661", + "name": "Lopandino", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.46660000", + "longitude": "34.81630000" + }, + { + "id": "99719", + "name": "Lyubokhna", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.50332000", + "longitude": "34.38847000" + }, + { + "id": "99720", + "name": "Lyubovsho", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.98510000", + "longitude": "31.54220000" + }, + { + "id": "99887", + "name": "Mglin", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.05907000", + "longitude": "32.84753000" + }, + { + "id": "99888", + "name": "Mglinskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.16667000", + "longitude": "32.83333000" + }, + { + "id": "100071", + "name": "Navlinskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83333000", + "longitude": "34.41667000" + }, + { + "id": "100072", + "name": "Navlya", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.82544000", + "longitude": "34.49960000" + }, + { + "id": "100114", + "name": "Net’inka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.34778000", + "longitude": "34.19111000" + }, + { + "id": "100337", + "name": "Novozybkov", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.53960000", + "longitude": "31.92750000" + }, + { + "id": "100338", + "name": "Novozybkovskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58333000", + "longitude": "31.83333000" + }, + { + "id": "100349", + "name": "Novyy Ropsk", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.29781000", + "longitude": "32.31206000" + }, + { + "id": "100706", + "name": "Pochep", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.93360000", + "longitude": "33.44640000" + }, + { + "id": "100707", + "name": "Pochepskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.91667000", + "longitude": "33.50000000" + }, + { + "id": "100735", + "name": "Pogar", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.55399000", + "longitude": "33.25907000" + }, + { + "id": "100736", + "name": "Pogarskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "33.25000000" + }, + { + "id": "100907", + "name": "Putëvka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25833000", + "longitude": "34.28778000" + }, + { + "id": "100924", + "name": "Raditsa-Krylovka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.31712000", + "longitude": "34.35742000" + }, + { + "id": "100982", + "name": "Rognedino", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.80147000", + "longitude": "33.55760000" + }, + { + "id": "100983", + "name": "Rognedinskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.83333000", + "longitude": "33.66667000" + }, + { + "id": "101058", + "name": "Rzhanitsa", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.42844000", + "longitude": "33.92297000" + }, + { + "id": "101063", + "name": "Sachkovichi", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.34590000", + "longitude": "32.22460000" + }, + { + "id": "101161", + "name": "Sel’tso", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.36831000", + "longitude": "34.10328000" + }, + { + "id": "101198", + "name": "Seshcha", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.73610000", + "longitude": "33.33870000" + }, + { + "id": "101224", + "name": "Sevsk", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.14910000", + "longitude": "34.49260000" + }, + { + "id": "101225", + "name": "Sevskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08333000", + "longitude": "34.41667000" + }, + { + "id": "101612", + "name": "Star’", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.62362000", + "longitude": "34.15183000" + }, + { + "id": "101577", + "name": "Starodub", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58444000", + "longitude": "32.76333000" + }, + { + "id": "101578", + "name": "Starodubskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "32.75000000" + }, + { + "id": "101671", + "name": "Suponevo", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.20492000", + "longitude": "34.29597000" + }, + { + "id": "101673", + "name": "Surazh", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.01747000", + "longitude": "32.39178000" + }, + { + "id": "101674", + "name": "Surazhskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.08333000", + "longitude": "32.41667000" + }, + { + "id": "101694", + "name": "Suzëmka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.31834000", + "longitude": "34.07899000" + }, + { + "id": "101692", + "name": "Suzemskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.41667000", + "longitude": "34.16667000" + }, + { + "id": "101697", + "name": "Sven’", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.18222000", + "longitude": "34.55111000" + }, + { + "id": "101928", + "name": "Trubchevsk", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.57980000", + "longitude": "33.76440000" + }, + { + "id": "101929", + "name": "Trubchevskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58333000", + "longitude": "33.75000000" + }, + { + "id": "102058", + "name": "Unecha", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.84591000", + "longitude": "32.67394000" + }, + { + "id": "102059", + "name": "Unechskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83333000", + "longitude": "32.83333000" + }, + { + "id": "102430", + "name": "Vygonichi", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.09855000", + "longitude": "34.06728000" + }, + { + "id": "102431", + "name": "Vygonichskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.08333000", + "longitude": "34.00000000" + }, + { + "id": "102440", + "name": "Vyshkov", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.47640000", + "longitude": "31.68730000" + }, + { + "id": "102640", + "name": "Zamishevo", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.53950000", + "longitude": "32.01290000" + }, + { + "id": "102686", + "name": "Zaymishche", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.72640000", + "longitude": "32.23340000" + }, + { + "id": "102735", + "name": "Zhiryatino", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.22280000", + "longitude": "33.73060000" + }, + { + "id": "102736", + "name": "Zhiryatinskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "33.58333000" + }, + { + "id": "102741", + "name": "Zhukovka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.53395000", + "longitude": "33.72798000" + }, + { + "id": "102744", + "name": "Zhukovskiy Rayon", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.50000000", + "longitude": "33.83333000" + }, + { + "id": "102751", + "name": "Zlynka", + "state_id": 1867, + "state_code": "BRY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.42670000", + "longitude": "31.73780000" + }, + { + "id": "97499", + "name": "Achkhoy-Martan", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.18997000", + "longitude": "45.28373000" + }, + { + "id": "97500", + "name": "Achkhoy-Martanovskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.08333000", + "longitude": "45.25000000" + }, + { + "id": "97593", + "name": "Alkhan-Kala", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25861000", + "longitude": "45.53917000" + }, + { + "id": "97594", + "name": "Alkhan-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.23179000", + "longitude": "45.57228000" + }, + { + "id": "97595", + "name": "Alkhazurovo", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.06390000", + "longitude": "45.65134000" + }, + { + "id": "97597", + "name": "Alleroy", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.21711000", + "longitude": "46.28209000" + }, + { + "id": "97601", + "name": "Alpatovo", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.70280000", + "longitude": "45.24154000" + }, + { + "id": "97662", + "name": "Argun", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.29713000", + "longitude": "45.87454000" + }, + { + "id": "97705", + "name": "Assinovskaya", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.24167000", + "longitude": "45.18194000" + }, + { + "id": "97725", + "name": "Avtury", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16345000", + "longitude": "46.00152000" + }, + { + "id": "97749", + "name": "Bachi-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.22417000", + "longitude": "46.19423000" + }, + { + "id": "97787", + "name": "Bamut", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.15986000", + "longitude": "45.19734000" + }, + { + "id": "97847", + "name": "Belgatoy", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.18995000", + "longitude": "45.83082000" + }, + { + "id": "97886", + "name": "Benoy-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.69305000", + "longitude": "45.05025000" + }, + { + "id": "98045", + "name": "Borzoy", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.84147000", + "longitude": "45.62746000" + }, + { + "id": "98130", + "name": "Chechen-Aul", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.20000000", + "longitude": "45.78889000" + }, + { + "id": "98196", + "name": "Chiri-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.08869000", + "longitude": "45.74323000" + }, + { + "id": "98333", + "name": "Duba-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.03534000", + "longitude": "45.73046000" + }, + { + "id": "98365", + "name": "Dyshne-Vedeno", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.96435000", + "longitude": "46.11578000" + }, + { + "id": "98373", + "name": "Dzhalka", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.31860000", + "longitude": "45.98787000" + }, + { + "id": "98388", + "name": "Elin-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.67306000", + "longitude": "44.95889000" + }, + { + "id": "98397", + "name": "Engel’-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.32633000", + "longitude": "46.36048000" + }, + { + "id": "98473", + "name": "Gekhi", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16354000", + "longitude": "45.47238000" + }, + { + "id": "98484", + "name": "Germenchuk", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.18570000", + "longitude": "45.92100000" + }, + { + "id": "98485", + "name": "Gerzel’-Aul", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.24728000", + "longitude": "46.40249000" + }, + { + "id": "98516", + "name": "Goragorskiy", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.50020000", + "longitude": "45.08574000" + }, + { + "id": "98573", + "name": "Goyty", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16417000", + "longitude": "45.62278000" + }, + { + "id": "98582", + "name": "Grebenskaya", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.53086000", + "longitude": "46.37174000" + }, + { + "id": "98593", + "name": "Groznenskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.33333000", + "longitude": "45.50000000" + }, + { + "id": "98594", + "name": "Groznyy", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.31195000", + "longitude": "45.68895000" + }, + { + "id": "98606", + "name": "Gudermes", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.35071000", + "longitude": "46.10925000" + }, + { + "id": "98607", + "name": "Gudermesskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.33333000", + "longitude": "46.16667000" + }, + { + "id": "98644", + "name": "Ilaskhan-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.27910000", + "longitude": "46.10229000" + }, + { + "id": "98702", + "name": "Ishcherskaya", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.71359000", + "longitude": "45.13371000" + }, + { + "id": "98707", + "name": "Ishkhoy-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.21278000", + "longitude": "46.38936000" + }, + { + "id": "98724", + "name": "Itum-Kali", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.73552000", + "longitude": "45.57574000" + }, + { + "id": "98725", + "name": "Itum-Kalinskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.73611000", + "longitude": "45.57250000" + }, + { + "id": "98794", + "name": "Kalinovskaya", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.57383000", + "longitude": "45.52090000" + }, + { + "id": "98876", + "name": "Kargalinskaya", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.74381000", + "longitude": "46.47821000" + }, + { + "id": "98911", + "name": "Katyr-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.17164000", + "longitude": "45.36991000" + }, + { + "id": "98956", + "name": "Khambi-Irze", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.23502000", + "longitude": "45.45302000" + }, + { + "id": "98960", + "name": "Khankala", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.30212000", + "longitude": "45.75564000" + }, + { + "id": "99429", + "name": "Kulary", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.23972000", + "longitude": "45.50417000" + }, + { + "id": "99456", + "name": "Kurchaloy", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.20184000", + "longitude": "46.08810000" + }, + { + "id": "99537", + "name": "Lakha Nëvre", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.62271000", + "longitude": "45.33969000" + }, + { + "id": "99541", + "name": "Lakkha Nëvre", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.61033000", + "longitude": "45.24542000" + }, + { + "id": "99804", + "name": "Martan-Chu", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.06366000", + "longitude": "45.56217000" + }, + { + "id": "99829", + "name": "Mayrtup", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.20348000", + "longitude": "46.13215000" + }, + { + "id": "99871", + "name": "Mesker-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25147000", + "longitude": "45.90716000" + }, + { + "id": "100041", + "name": "Nadterechnyy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.58333000", + "longitude": "45.25000000" + }, + { + "id": "100067", + "name": "Naurskaya", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.65075000", + "longitude": "45.31173000" + }, + { + "id": "100068", + "name": "Naurskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.66667000", + "longitude": "45.50000000" + }, + { + "id": "100189", + "name": "Nogamerzin-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.65361000", + "longitude": "44.88889000" + }, + { + "id": "100356", + "name": "Novyye Atagi", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.13528000", + "longitude": "45.77306000" + }, + { + "id": "100365", + "name": "Nozhay-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.09290000", + "longitude": "46.37868000" + }, + { + "id": "100366", + "name": "Nozhay-Yurtovskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.08333000", + "longitude": "46.41667000" + }, + { + "id": "100516", + "name": "Oyskhara", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.26402000", + "longitude": "46.24803000" + }, + { + "id": "100615", + "name": "Pervomayskaya", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.40331000", + "longitude": "45.52343000" + }, + { + "id": "100654", + "name": "Petropavlovskaya", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.37944000", + "longitude": "45.82611000" + }, + { + "id": "100820", + "name": "Prigorodnoye", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25303000", + "longitude": "45.75808000" + }, + { + "id": "101000", + "name": "Roshni-Chu", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.08954000", + "longitude": "45.45435000" + }, + { + "id": "101087", + "name": "Samashki", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.28935000", + "longitude": "45.29786000" + }, + { + "id": "101186", + "name": "Sernovodsk", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.31277000", + "longitude": "45.15969000" + }, + { + "id": "101196", + "name": "Serzhen’-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.12265000", + "longitude": "45.98583000" + }, + { + "id": "101227", + "name": "Shaami-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.22647000", + "longitude": "45.38815000" + }, + { + "id": "101244", + "name": "Shalazhi", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.09476000", + "longitude": "45.35898000" + }, + { + "id": "101245", + "name": "Shali", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.14806000", + "longitude": "45.90194000" + }, + { + "id": "101246", + "name": "Shalinskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16667000", + "longitude": "45.91667000" + }, + { + "id": "101269", + "name": "Shatoy", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.87143000", + "longitude": "45.68865000" + }, + { + "id": "101365", + "name": "Shëlkovskaya", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.50804000", + "longitude": "46.34016000" + }, + { + "id": "101292", + "name": "Shelkovskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.58333000", + "longitude": "46.00000000" + }, + { + "id": "101566", + "name": "Staraya Sunzha", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.33542000", + "longitude": "45.74377000" + }, + { + "id": "101610", + "name": "Staryye Atagi", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.12028000", + "longitude": "45.74056000" + }, + { + "id": "101880", + "name": "Tolstoy-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.44548000", + "longitude": "45.77901000" + }, + { + "id": "101943", + "name": "Tsentoroy", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.00658000", + "longitude": "46.22235000" + }, + { + "id": "101953", + "name": "Tsotsin-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.24206000", + "longitude": "46.00013000" + }, + { + "id": "102087", + "name": "Urus-Martan", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.13053000", + "longitude": "45.53791000" + }, + { + "id": "102088", + "name": "Urus-Martanovskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.08333000", + "longitude": "45.58333000" + }, + { + "id": "102182", + "name": "Valerik", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.17972000", + "longitude": "45.40806000" + }, + { + "id": "102208", + "name": "Vedeno", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.96892000", + "longitude": "46.09611000" + }, + { + "id": "102209", + "name": "Vedenskiy Rayon", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.00000000", + "longitude": "46.08333000" + }, + { + "id": "102474", + "name": "Yalkhoy-Mokhk", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.10528000", + "longitude": "46.19045000" + }, + { + "id": "102634", + "name": "Zakan-Yurt", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.26224000", + "longitude": "45.42307000" + }, + { + "id": "102642", + "name": "Zandak", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.05710000", + "longitude": "46.45566000" + }, + { + "id": "102761", + "name": "Znamenskoye", + "state_id": 1893, + "state_code": "CE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.67898000", + "longitude": "45.12867000" + }, + { + "id": "97513", + "name": "Agapovka", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.29730000", + "longitude": "59.13480000" + }, + { + "id": "97514", + "name": "Agapovskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.33333000", + "longitude": "59.33333000" + }, + { + "id": "97660", + "name": "Argayash", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.48880000", + "longitude": "60.87670000" + }, + { + "id": "97696", + "name": "Asha", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.99730000", + "longitude": "57.27220000" + }, + { + "id": "97698", + "name": "Ashinskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "57.50000000" + }, + { + "id": "97756", + "name": "Bakal", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.94170000", + "longitude": "58.80830000" + }, + { + "id": "97832", + "name": "Bazhovo", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.05955000", + "longitude": "61.60445000" + }, + { + "id": "97889", + "name": "Berdyaush", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16190000", + "longitude": "59.14640000" + }, + { + "id": "97957", + "name": "Bobrovka", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.04700000", + "longitude": "61.74550000" + }, + { + "id": "98054", + "name": "Bredy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.41528000", + "longitude": "60.34111000" + }, + { + "id": "98057", + "name": "Brodokalmak", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.57480000", + "longitude": "62.08200000" + }, + { + "id": "98125", + "name": "Chebarkul’", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.97490000", + "longitude": "60.36330000" + }, + { + "id": "98126", + "name": "Chebarkul’skiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.83333000", + "longitude": "60.50000000" + }, + { + "id": "98140", + "name": "Chelyabinsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.15402000", + "longitude": "61.42915000" + }, + { + "id": "98151", + "name": "Cheremshanka", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11920000", + "longitude": "60.26804000" + }, + { + "id": "98192", + "name": "Chesma", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.81111000", + "longitude": "60.65333000" + }, + { + "id": "98299", + "name": "Dolgoderevenskoye", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.34444000", + "longitude": "61.34444000" + }, + { + "id": "98421", + "name": "Fershampenuaz", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.52020000", + "longitude": "59.81170000" + }, + { + "id": "98536", + "name": "Gornyak", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.13446000", + "longitude": "61.68268000" + }, + { + "id": "98549", + "name": "Gorod Chelyabinsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16553000", + "longitude": "61.41673000" + }, + { + "id": "98834", + "name": "Kanashevo", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.21690000", + "longitude": "62.06340000" + }, + { + "id": "98853", + "name": "Karabash", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.48080000", + "longitude": "60.21570000" + }, + { + "id": "98887", + "name": "Kartalinskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.00000000", + "longitude": "60.50000000" + }, + { + "id": "98888", + "name": "Kartaly", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.05285000", + "longitude": "60.64903000" + }, + { + "id": "98899", + "name": "Kasli", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.89090000", + "longitude": "60.76160000" + }, + { + "id": "98906", + "name": "Katav-Ivanovsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75306000", + "longitude": "58.19556000" + }, + { + "id": "98907", + "name": "Katav-Ivanovskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75000000", + "longitude": "58.25000000" + }, + { + "id": "99092", + "name": "Kizil’skiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.75000000", + "longitude": "59.41667000" + }, + { + "id": "99199", + "name": "Kopeysk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.11722000", + "longitude": "61.62823000" + }, + { + "id": "99207", + "name": "Korkino", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.89130000", + "longitude": "61.39690000" + }, + { + "id": "99257", + "name": "Koyelga", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.65224000", + "longitude": "60.90490000" + }, + { + "id": "99306", + "name": "Krasnogorskiy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.60250000", + "longitude": "61.23100000" + }, + { + "id": "99398", + "name": "Kropachëvo", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.01120000", + "longitude": "57.98960000" + }, + { + "id": "99445", + "name": "Kunashak", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70320000", + "longitude": "61.54980000" + }, + { + "id": "99483", + "name": "Kusa", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33833000", + "longitude": "59.44056000" + }, + { + "id": "99521", + "name": "Kyshtym", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71400000", + "longitude": "60.55280000" + }, + { + "id": "99568", + "name": "Leninsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.90306000", + "longitude": "59.86750000" + }, + { + "id": "99652", + "name": "Lokomotivnyy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.01180000", + "longitude": "60.56840000" + }, + { + "id": "99738", + "name": "Magnitka", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.34750000", + "longitude": "59.69611000" + }, + { + "id": "99739", + "name": "Magnitogorsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41861000", + "longitude": "59.04722000" + }, + { + "id": "99883", + "name": "Mezhevoy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.17111000", + "longitude": "58.78139000" + }, + { + "id": "99889", + "name": "Miass", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.04500000", + "longitude": "60.10833000" + }, + { + "id": "99890", + "name": "Miasskoye", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.27840000", + "longitude": "61.89050000" + }, + { + "id": "100020", + "name": "Muslyumovo", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61330000", + "longitude": "61.62600000" + }, + { + "id": "100045", + "name": "Nagaybakskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.58333000", + "longitude": "59.75000000" + }, + { + "id": "100177", + "name": "Nizhniy Ufaley", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91528000", + "longitude": "59.98417000" + }, + { + "id": "100244", + "name": "Novogornyy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63000000", + "longitude": "60.79190000" + }, + { + "id": "100306", + "name": "Novosineglazovskiy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.03928000", + "longitude": "61.37680000" + }, + { + "id": "100376", + "name": "Nyazepetrovsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.05306000", + "longitude": "59.60278000" + }, + { + "id": "100377", + "name": "Nyazepetrovskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "59.58333000" + }, + { + "id": "100413", + "name": "Oktyabr’skiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41667000", + "longitude": "62.75000000" + }, + { + "id": "100519", + "name": "Ozersk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75556000", + "longitude": "60.70278000" + }, + { + "id": "100550", + "name": "Parizh", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.29740000", + "longitude": "60.10050000" + }, + { + "id": "100694", + "name": "Plast", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.36914000", + "longitude": "60.81361000" + }, + { + "id": "100754", + "name": "Poletayevo", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.03360000", + "longitude": "61.11380000" + }, + { + "id": "100789", + "name": "Potanino", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.17860000", + "longitude": "61.62220000" + }, + { + "id": "100999", + "name": "Roshchino", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31012000", + "longitude": "61.26363000" + }, + { + "id": "101012", + "name": "Roza", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91630000", + "longitude": "61.45860000" + }, + { + "id": "101118", + "name": "Sargazy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.02064000", + "longitude": "61.24985000" + }, + { + "id": "101132", + "name": "Satka", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.04250000", + "longitude": "59.04000000" + }, + { + "id": "101133", + "name": "Satkinskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "59.00000000" + }, + { + "id": "101154", + "name": "Selezyan", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.90583000", + "longitude": "61.82444000" + }, + { + "id": "101370", + "name": "Sim", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.99300000", + "longitude": "57.69820000" + }, + { + "id": "101423", + "name": "Snezhinsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08500000", + "longitude": "60.73139000" + }, + { + "id": "101496", + "name": "Sosnovskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25000000", + "longitude": "61.16667000" + }, + { + "id": "101581", + "name": "Starokamyshinsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.03912000", + "longitude": "61.58778000" + }, + { + "id": "101729", + "name": "Syrostan", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.06340000", + "longitude": "59.90020000" + }, + { + "id": "101803", + "name": "Tayginka", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.62440000", + "longitude": "60.50760000" + }, + { + "id": "101859", + "name": "Timiryazevskiy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.92917000", + "longitude": "60.76250000" + }, + { + "id": "101935", + "name": "Trëkhgornyy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.81500000", + "longitude": "58.45917000" + }, + { + "id": "101914", + "name": "Troitsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.09790000", + "longitude": "61.57730000" + }, + { + "id": "101975", + "name": "Turgoyak", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.15000000", + "longitude": "60.11833000" + }, + { + "id": "101999", + "name": "Tyubuk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.05521000", + "longitude": "60.94050000" + }, + { + "id": "102114", + "name": "Ust’-Bagaryak", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13278000", + "longitude": "61.84722000" + }, + { + "id": "102129", + "name": "Ust’-Katav", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.93660000", + "longitude": "58.17570000" + }, + { + "id": "102158", + "name": "Uvel’skiy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.44460000", + "longitude": "61.35740000" + }, + { + "id": "102159", + "name": "Uvel’skiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50000000", + "longitude": "61.50000000" + }, + { + "id": "102163", + "name": "Uyskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33333000", + "longitude": "60.08333000" + }, + { + "id": "102164", + "name": "Uyskoye", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.37750000", + "longitude": "60.00472000" + }, + { + "id": "102176", + "name": "Vakhrushevo", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.23170000", + "longitude": "61.71730000" + }, + { + "id": "102192", + "name": "Varna", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.38194000", + "longitude": "60.97472000" + }, + { + "id": "102195", + "name": "Varnenskiy Rayon", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "61.08333000" + }, + { + "id": "102217", + "name": "Velikopetrovka", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25042000", + "longitude": "60.48606000" + }, + { + "id": "102242", + "name": "Verkhneural’sk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.87694000", + "longitude": "59.21056000" + }, + { + "id": "102258", + "name": "Verkhniy Ufaley", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.05560000", + "longitude": "60.23970000" + }, + { + "id": "102318", + "name": "Vishnëvogorsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.99130000", + "longitude": "60.65790000" + }, + { + "id": "102423", + "name": "Vyazovaya", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.90500000", + "longitude": "58.35611000" + }, + { + "id": "102553", + "name": "Yemanzhelinka", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.80100000", + "longitude": "61.29890000" + }, + { + "id": "102554", + "name": "Yemanzhelinsk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75472000", + "longitude": "61.32083000" + }, + { + "id": "102578", + "name": "Yetkul’", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.82210000", + "longitude": "61.58800000" + }, + { + "id": "102601", + "name": "Yuryuzan’", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.86333000", + "longitude": "58.42194000" + }, + { + "id": "102617", + "name": "Yuzhnoural’sk", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.44180000", + "longitude": "61.25360000" + }, + { + "id": "102719", + "name": "Zheleznodorozhnyy", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.10183000", + "longitude": "61.54926000" + }, + { + "id": "102750", + "name": "Zlatoust", + "state_id": 1845, + "state_code": "CHE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.17111000", + "longitude": "59.65083000" + }, + { + "id": "97618", + "name": "Anadyr", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "64.73424000", + "longitude": "177.51030000" + }, + { + "id": "97619", + "name": "Anadyrskiy Rayon", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "65.00000000", + "longitude": "173.00000000" + }, + { + "id": "97897", + "name": "Beringovskiy", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "63.06101000", + "longitude": "179.35046000" + }, + { + "id": "97928", + "name": "Bilibino", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "68.05464000", + "longitude": "166.43721000" + }, + { + "id": "98381", + "name": "Egvekinot", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "66.32166000", + "longitude": "-179.12198000" + }, + { + "id": "99547", + "name": "Lavrentiya", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "65.58604000", + "longitude": "-171.02082000" + }, + { + "id": "99664", + "name": "Lorino", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "65.50306000", + "longitude": "-171.70387000" + }, + { + "id": "100669", + "name": "Pevek", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "69.70287000", + "longitude": "170.29993000" + }, + { + "id": "100872", + "name": "Provideniya", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "64.42289000", + "longitude": "-173.22641000" + }, + { + "id": "100873", + "name": "Providenskiy Rayon", + "state_id": 1859, + "state_code": "CHU", + "country_id": 182, + "country_code": "RU", + "latitude": "65.25000000", + "longitude": "-175.00000000" + }, + { + "id": "97560", + "name": "Alatyr’", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.84210000", + "longitude": "46.58130000" + }, + { + "id": "97559", + "name": "Alatyrskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "46.75000000" + }, + { + "id": "97590", + "name": "Alikovo", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.73827000", + "longitude": "46.75493000" + }, + { + "id": "97591", + "name": "Alikovskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "46.75000000" + }, + { + "id": "97714", + "name": "Atlashevo", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.01235000", + "longitude": "47.55615000" + }, + { + "id": "97815", + "name": "Batyrevo", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.06750000", + "longitude": "47.61111000" + }, + { + "id": "97816", + "name": "Batyrevskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.08333000", + "longitude": "47.50000000" + }, + { + "id": "98070", + "name": "Buinsk", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.19500000", + "longitude": "47.06080000" + }, + { + "id": "98127", + "name": "Cheboksarskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08333000", + "longitude": "47.25000000" + }, + { + "id": "98128", + "name": "Cheboksary", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13222000", + "longitude": "47.25194000" + }, + { + "id": "98626", + "name": "Ibresi", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.30110000", + "longitude": "47.03800000" + }, + { + "id": "98627", + "name": "Ibresinskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25000000", + "longitude": "47.00000000" + }, + { + "id": "98708", + "name": "Ishley", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.02317000", + "longitude": "47.05054000" + }, + { + "id": "98833", + "name": "Kanash", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50962000", + "longitude": "47.49127000" + }, + { + "id": "98835", + "name": "Kanashskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50000000", + "longitude": "47.41667000" + }, + { + "id": "99076", + "name": "Kirya", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.08102000", + "longitude": "46.86091000" + }, + { + "id": "99168", + "name": "Komsomol'skoye", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25667000", + "longitude": "47.54608000" + }, + { + "id": "99176", + "name": "Komsomol’skiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25000000", + "longitude": "47.50000000" + }, + { + "id": "99266", + "name": "Kozlovka", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.84284000", + "longitude": "48.24920000" + }, + { + "id": "99269", + "name": "Kozlovskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "48.16667000" + }, + { + "id": "99294", + "name": "Krasnoarmeyskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "47.16667000" + }, + { + "id": "99295", + "name": "Krasnoarmeyskoye", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76813000", + "longitude": "47.17244000" + }, + { + "id": "99299", + "name": "Krasnochetayskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "46.25000000" + }, + { + "id": "99383", + "name": "Krasnyye Chetai", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.68871000", + "longitude": "46.13865000" + }, + { + "id": "99424", + "name": "Kugesi", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.02895000", + "longitude": "47.29255000" + }, + { + "id": "99796", + "name": "Mariinskiy Posad", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11497000", + "longitude": "47.71805000" + }, + { + "id": "99797", + "name": "Mariinsko-Posadskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91667000", + "longitude": "47.83333000" + }, + { + "id": "99962", + "name": "Morgaushi", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.96430000", + "longitude": "46.77430000" + }, + { + "id": "99963", + "name": "Morgaushskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "46.75000000" + }, + { + "id": "100233", + "name": "Novocheboksarsk", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11095000", + "longitude": "47.47755000" + }, + { + "id": "100361", + "name": "Novyye Lapsary", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.06850000", + "longitude": "47.21420000" + }, + { + "id": "100775", + "name": "Poretskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16667000", + "longitude": "46.41667000" + }, + { + "id": "100776", + "name": "Poretskoye", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.19742000", + "longitude": "46.32908000" + }, + { + "id": "101296", + "name": "Shemursha", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.88663000", + "longitude": "47.51893000" + }, + { + "id": "101297", + "name": "Shemurshinskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "47.50000000" + }, + { + "id": "101311", + "name": "Shikhazany", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56047000", + "longitude": "47.39297000" + }, + { + "id": "101346", + "name": "Shumerlinskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50000000", + "longitude": "46.50000000" + }, + { + "id": "101347", + "name": "Shumerlya", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50050000", + "longitude": "46.41288000" + }, + { + "id": "101951", + "name": "Tsivil’sk", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86974000", + "longitude": "47.47874000" + }, + { + "id": "101952", + "name": "Tsivil’skiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "47.50000000" + }, + { + "id": "102081", + "name": "Urmarskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "47.91667000" + }, + { + "id": "102082", + "name": "Urmary", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.67894000", + "longitude": "47.94396000" + }, + { + "id": "102416", + "name": "Vurnarskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50000000", + "longitude": "46.91667000" + }, + { + "id": "102417", + "name": "Vurnary", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.49044000", + "longitude": "46.96479000" + }, + { + "id": "102459", + "name": "Yadrin", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.94052000", + "longitude": "46.20622000" + }, + { + "id": "102460", + "name": "Yadrinskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91667000", + "longitude": "46.33333000" + }, + { + "id": "102476", + "name": "Yal’chikskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16667000", + "longitude": "47.91667000" + }, + { + "id": "102487", + "name": "Yantikovo", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.82158000", + "longitude": "47.91036000" + }, + { + "id": "102488", + "name": "Yantikovskiy Rayon", + "state_id": 1914, + "state_code": "CU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50000000", + "longitude": "47.83333000" + }, + { + "id": "97669", + "name": "Arkhipovka", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66292000", + "longitude": "41.25434000" + }, + { + "id": "97972", + "name": "Bogorodskoye", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.04695000", + "longitude": "41.01354000" + }, + { + "id": "98352", + "name": "Dulyapino", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.25783000", + "longitude": "40.81471000" + }, + { + "id": "98442", + "name": "Furmanov", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.25363000", + "longitude": "41.10849000" + }, + { + "id": "98461", + "name": "Gavrilov Posad", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55930000", + "longitude": "40.12100000" + }, + { + "id": "98658", + "name": "Il’inskoye-Khovanskoye", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.97180000", + "longitude": "39.76840000" + }, + { + "id": "98731", + "name": "Ivanovo", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.99719000", + "longitude": "40.97139000" + }, + { + "id": "98732", + "name": "Ivanovskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "41.00000000" + }, + { + "id": "98812", + "name": "Kamenka", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.39214000", + "longitude": "41.79383000" + }, + { + "id": "98826", + "name": "Kaminskiy", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.15159000", + "longitude": "41.47318000" + }, + { + "id": "99048", + "name": "Kineshemskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.33333000", + "longitude": "42.33333000" + }, + { + "id": "99049", + "name": "Kineshma", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.43914000", + "longitude": "42.12894000" + }, + { + "id": "99083", + "name": "Kitovo", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.86586000", + "longitude": "41.28246000" + }, + { + "id": "99129", + "name": "Kokhma", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.93487000", + "longitude": "41.09150000" + }, + { + "id": "99138", + "name": "Kolobovo", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.70199000", + "longitude": "41.34173000" + }, + { + "id": "99172", + "name": "Komsomol’sk", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.02913000", + "longitude": "40.37266000" + }, + { + "id": "99175", + "name": "Komsomol’skiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.08333000", + "longitude": "40.41667000" + }, + { + "id": "99506", + "name": "Kuznechikha", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.21607000", + "longitude": "42.33477000" + }, + { + "id": "99619", + "name": "Lezhnevo", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.77508000", + "longitude": "40.89174000" + }, + { + "id": "99620", + "name": "Lezhnevskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "40.91667000" + }, + { + "id": "99683", + "name": "Lukh", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.01242000", + "longitude": "42.25838000" + }, + { + "id": "99686", + "name": "Lukhskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "42.41667000" + }, + { + "id": "99800", + "name": "Markovo", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.01850000", + "longitude": "40.49465000" + }, + { + "id": "100073", + "name": "Navoloki", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.46572000", + "longitude": "41.96344000" + }, + { + "id": "100109", + "name": "Nerl’", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66285000", + "longitude": "40.38931000" + }, + { + "id": "100220", + "name": "Novo-Talitsy", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00392000", + "longitude": "40.85936000" + }, + { + "id": "100281", + "name": "Novopistsovo", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.32177000", + "longitude": "41.85310000" + }, + { + "id": "100333", + "name": "Novoye Leushino", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.80732000", + "longitude": "40.51443000" + }, + { + "id": "100359", + "name": "Novyye Gorki", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.72535000", + "longitude": "41.06014000" + }, + { + "id": "100529", + "name": "Palekh", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.80256000", + "longitude": "41.85508000" + }, + { + "id": "100530", + "name": "Palekhskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83333000", + "longitude": "42.00000000" + }, + { + "id": "100643", + "name": "Pestyaki", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.70860000", + "longitude": "42.66954000" + }, + { + "id": "100644", + "name": "Pestyakovskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.58333000", + "longitude": "42.66667000" + }, + { + "id": "100663", + "name": "Petrovskiy", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.64210000", + "longitude": "40.32026000" + }, + { + "id": "100685", + "name": "Pistsovo", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.17904000", + "longitude": "40.52983000" + }, + { + "id": "100705", + "name": "Plës", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.45862000", + "longitude": "41.51579000" + }, + { + "id": "100846", + "name": "Privolzhsk", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.38698000", + "longitude": "41.28666000" + }, + { + "id": "100850", + "name": "Privolzhskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.33333000", + "longitude": "41.33333000" + }, + { + "id": "100885", + "name": "Puchezh", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.97878000", + "longitude": "43.16761000" + }, + { + "id": "100886", + "name": "Puchezhskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "43.00000000" + }, + { + "id": "100977", + "name": "Rodniki", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.10513000", + "longitude": "41.73048000" + }, + { + "id": "100980", + "name": "Rodnikovskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.08333000", + "longitude": "41.75000000" + }, + { + "id": "101135", + "name": "Savino", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.59285000", + "longitude": "41.21814000" + }, + { + "id": "101137", + "name": "Savinskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.58333000", + "longitude": "41.33333000" + }, + { + "id": "101360", + "name": "Shuya", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.84865000", + "longitude": "41.38833000" + }, + { + "id": "101362", + "name": "Shuyskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83333000", + "longitude": "41.50000000" + }, + { + "id": "101568", + "name": "Staraya Vichuga", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.26833000", + "longitude": "41.87873000" + }, + { + "id": "101753", + "name": "Talitsy", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.52801000", + "longitude": "42.33230000" + }, + { + "id": "101847", + "name": "Teykovo", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.85796000", + "longitude": "40.53692000" + }, + { + "id": "101848", + "name": "Teykovskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "40.50000000" + }, + { + "id": "102240", + "name": "Verkhnelandekhovskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83333000", + "longitude": "42.58333000" + }, + { + "id": "102254", + "name": "Verkhniy Landekh", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83971000", + "longitude": "42.59730000" + }, + { + "id": "102300", + "name": "Vichuga", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.21276000", + "longitude": "41.93012000" + }, + { + "id": "102301", + "name": "Vichugskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.25000000", + "longitude": "42.00000000" + }, + { + "id": "102605", + "name": "Yur’yevets", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.32007000", + "longitude": "43.10410000" + }, + { + "id": "102606", + "name": "Yur’yevetskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.25000000", + "longitude": "42.83333000" + }, + { + "id": "102612", + "name": "Yuzha", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.58306000", + "longitude": "42.01222000" + }, + { + "id": "102622", + "name": "Yuzhskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.58333000", + "longitude": "42.00000000" + }, + { + "id": "102652", + "name": "Zarechnyy", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.46931000", + "longitude": "42.28431000" + }, + { + "id": "102678", + "name": "Zavolzhsk", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.48230000", + "longitude": "42.13779000" + }, + { + "id": "102679", + "name": "Zavolzhskiy Rayon", + "state_id": 1864, + "state_code": "IVA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.50000000", + "longitude": "42.08333000" + }, + { + "id": "97615", + "name": "Amurzet", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "47.69541000", + "longitude": "131.09493000" + }, + { + "id": "97742", + "name": "Babstovo", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.11853000", + "longitude": "132.47913000" + }, + { + "id": "97932", + "name": "Bira", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "49.00135000", + "longitude": "132.46826000" + }, + { + "id": "97933", + "name": "Birakan", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.99302000", + "longitude": "131.72026000" + }, + { + "id": "97935", + "name": "Birobidzhan", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.79284000", + "longitude": "132.92386000" + }, + { + "id": "97936", + "name": "Birobidzhanskiy Rayon", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.50000000", + "longitude": "132.75000000" + }, + { + "id": "98760", + "name": "Izvestkovyy", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.98043000", + "longitude": "131.55274000" + }, + { + "id": "98982", + "name": "Khingansk", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "49.12821000", + "longitude": "131.19322000" + }, + { + "id": "99439", + "name": "Kul’dur", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "49.20465000", + "longitude": "131.63840000" + }, + { + "id": "99574", + "name": "Leninskiy Rayon", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.16667000", + "longitude": "132.25000000" + }, + { + "id": "99578", + "name": "Leninskoye", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "47.93501000", + "longitude": "132.62025000" + }, + { + "id": "99660", + "name": "Londoko", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "49.01805000", + "longitude": "131.99142000" + }, + { + "id": "100385", + "name": "Obluchenskiy Rayon", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "49.00000000", + "longitude": "132.00000000" + }, + { + "id": "100415", + "name": "Oktyabr’skiy Rayon", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.16667000", + "longitude": "131.41667000" + }, + { + "id": "100813", + "name": "Priamurskiy", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.52716000", + "longitude": "134.90359000" + }, + { + "id": "101411", + "name": "Smidovich", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.59647000", + "longitude": "133.80866000" + }, + { + "id": "101412", + "name": "Smidovichskiy Rayon", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.50000000", + "longitude": "134.00000000" + }, + { + "id": "102349", + "name": "Volochayevka Vtoraya", + "state_id": 1835, + "state_code": "YEV", + "country_id": 182, + "country_code": "RU", + "latitude": "48.56695000", + "longitude": "134.58232000" + }, + { + "id": "97571", + "name": "Aleksandrovskaya", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.48333000", + "longitude": "43.65000000" + }, + { + "id": "97604", + "name": "Altud", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.72194000", + "longitude": "43.86583000" + }, + { + "id": "97661", + "name": "Argudan", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.42139000", + "longitude": "43.91583000" + }, + { + "id": "97720", + "name": "Aushiger", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.39611000", + "longitude": "43.73167000" + }, + { + "id": "97743", + "name": "Babugent", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.27942000", + "longitude": "43.55020000" + }, + { + "id": "97762", + "name": "Baksan", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.68806000", + "longitude": "43.53694000" + }, + { + "id": "97763", + "name": "Baksanenok", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.68972000", + "longitude": "43.65472000" + }, + { + "id": "97764", + "name": "Baksanskiy Rayon", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.75000000", + "longitude": "43.50000000" + }, + { + "id": "97844", + "name": "Belaya Rechka", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.43806000", + "longitude": "43.53500000" + }, + { + "id": "98099", + "name": "Bylym", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.46500000", + "longitude": "43.03889000" + }, + { + "id": "98132", + "name": "Chegem", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.28333000", + "longitude": "43.13333000" + }, + { + "id": "98133", + "name": "Chegem Vtoroy", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.59583000", + "longitude": "43.59944000" + }, + { + "id": "98146", + "name": "Cherekskiy Rayon", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25000000", + "longitude": "43.50000000" + }, + { + "id": "98272", + "name": "Deyskoye", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.47546000", + "longitude": "44.16182000" + }, + { + "id": "98348", + "name": "Dugulubgey", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.66250000", + "longitude": "43.53694000" + }, + { + "id": "98390", + "name": "El’brus", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25771000", + "longitude": "42.64435000" + }, + { + "id": "98391", + "name": "El’brusskiy Rayon", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.41667000", + "longitude": "42.83333000" + }, + { + "id": "98483", + "name": "Germenchik", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.59389000", + "longitude": "43.76611000" + }, + { + "id": "98611", + "name": "Gundelen", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.59750000", + "longitude": "43.17194000" + }, + { + "id": "98713", + "name": "Islamey", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.67556000", + "longitude": "43.45500000" + }, + { + "id": "98777", + "name": "Kakhun", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.54306000", + "longitude": "43.87639000" + }, + { + "id": "98811", + "name": "Kamenka", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.53333000", + "longitude": "43.51667000" + }, + { + "id": "98817", + "name": "Kamennomostskoye", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.73722000", + "longitude": "43.05139000" + }, + { + "id": "98860", + "name": "Karagach", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.80528000", + "longitude": "43.77500000" + }, + { + "id": "98896", + "name": "Kashkhatau", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.31848000", + "longitude": "43.60804000" + }, + { + "id": "98940", + "name": "Kenzhe", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.50167000", + "longitude": "43.55722000" + }, + { + "id": "99080", + "name": "Kishpek", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.65500000", + "longitude": "43.64083000" + }, + { + "id": "99249", + "name": "Kotlyarevskaya", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.57344000", + "longitude": "44.06134000" + }, + { + "id": "99413", + "name": "Kuba-Taba", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.77611000", + "longitude": "43.44278000" + }, + { + "id": "99524", + "name": "Kyzburun Pervyy", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.65167000", + "longitude": "43.39500000" + }, + { + "id": "99559", + "name": "Lechinkay", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.56472000", + "longitude": "43.43278000" + }, + { + "id": "99590", + "name": "Leskenskiy rayon", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.35556000", + "longitude": "43.94139000" + }, + { + "id": "99759", + "name": "Malka", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.80389000", + "longitude": "43.32417000" + }, + { + "id": "99834", + "name": "Mayskiy Rayon", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.66667000", + "longitude": "44.08333000" + }, + { + "id": "100054", + "name": "Nal’chik", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.49806000", + "longitude": "43.61889000" + }, + { + "id": "100061", + "name": "Nartan", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.51083000", + "longitude": "43.69944000" + }, + { + "id": "100062", + "name": "Nartkala", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.55750000", + "longitude": "43.85083000" + }, + { + "id": "100165", + "name": "Nizhniy Cherek", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.51306000", + "longitude": "43.91389000" + }, + { + "id": "100170", + "name": "Nizhniy Kurkuzhin", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.74833000", + "longitude": "43.34972000" + }, + { + "id": "100693", + "name": "Planovskoye", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.39846000", + "longitude": "44.19490000" + }, + { + "id": "100828", + "name": "Primalkinskoye", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.74667000", + "longitude": "44.00833000" + }, + { + "id": "100855", + "name": "Prokhladnenskiy Rayon", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.83333000", + "longitude": "44.00000000" + }, + { + "id": "100856", + "name": "Prokhladnyy", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.75741000", + "longitude": "44.02970000" + }, + { + "id": "100883", + "name": "Psygansu", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.41944000", + "longitude": "43.79361000" + }, + { + "id": "101119", + "name": "Sarmakovo", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.74556000", + "longitude": "43.20028000" + }, + { + "id": "101248", + "name": "Shalushka", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.53250000", + "longitude": "43.56611000" + }, + { + "id": "101446", + "name": "Soldatskaya", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.81806000", + "longitude": "43.81583000" + }, + { + "id": "101604", + "name": "Staryy Cherek", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.47139000", + "longitude": "43.84694000" + }, + { + "id": "101609", + "name": "Staryy Urukh", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.34041000", + "longitude": "44.01868000" + }, + { + "id": "101827", + "name": "Terek", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.48333000", + "longitude": "44.13611000" + }, + { + "id": "101838", + "name": "Terskiy Rayon", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.58333000", + "longitude": "44.25000000" + }, + { + "id": "101840", + "name": "Terskol", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25680000", + "longitude": "42.51481000" + }, + { + "id": "101997", + "name": "Tyrnyauz", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.38278000", + "longitude": "42.91833000" + }, + { + "id": "102086", + "name": "Urukh", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.29335000", + "longitude": "44.02647000" + }, + { + "id": "102092", + "name": "Urvan’", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.49222000", + "longitude": "43.76056000" + }, + { + "id": "102091", + "name": "Urvanskiy Rayon", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.41667000", + "longitude": "43.91667000" + }, + { + "id": "102253", + "name": "Verkhniy Kurkuzhin", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.69556000", + "longitude": "43.27472000" + }, + { + "id": "102265", + "name": "Verkhnyaya Balkariya", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.12545000", + "longitude": "43.45687000" + }, + { + "id": "102373", + "name": "Vol’nyy Aul", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.47861000", + "longitude": "43.62750000" + }, + { + "id": "102639", + "name": "Zalukokoazhe", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.90389000", + "longitude": "43.21556000" + }, + { + "id": "102687", + "name": "Zayukovo", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.61611000", + "longitude": "43.33389000" + }, + { + "id": "102711", + "name": "Zhankhoteko", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.56417000", + "longitude": "43.21056000" + }, + { + "id": "102724", + "name": "Zhemtala", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.28408000", + "longitude": "43.65586000" + }, + { + "id": "102768", + "name": "Zol’skiy Rayon", + "state_id": 1892, + "state_code": "KB", + "country_id": 182, + "country_code": "RU", + "latitude": "43.75000000", + "longitude": "42.91667000" + }, + { + "id": "97755", + "name": "Bagrationovsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.38714000", + "longitude": "20.64372000" + }, + { + "id": "97784", + "name": "Baltiysk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.65455000", + "longitude": "19.90929000" + }, + { + "id": "97989", + "name": "Bol'shoe Isakovo", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.71774000", + "longitude": "20.60284000" + }, + { + "id": "98177", + "name": "Chernyakhovsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.63345000", + "longitude": "21.81557000" + }, + { + "id": "98316", + "name": "Donskoye", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.93842000", + "longitude": "19.96821000" + }, + { + "id": "98616", + "name": "Gur’yevsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.77323000", + "longitude": "20.60521000" + }, + { + "id": "98618", + "name": "Gusev", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.59222000", + "longitude": "22.19972000" + }, + { + "id": "98624", + "name": "Gvardeysk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.64772000", + "longitude": "21.06513000" + }, + { + "id": "98787", + "name": "Kaliningrad", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.70649000", + "longitude": "20.51095000" + }, + { + "id": "99013", + "name": "Khrabrovo", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.89709000", + "longitude": "20.58035000" + }, + { + "id": "99356", + "name": "Krasnoznamensk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.94222000", + "longitude": "22.48972000" + }, + { + "id": "99534", + "name": "Ladushkin", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.57025000", + "longitude": "20.17099000" + }, + { + "id": "99769", + "name": "Maloye Isakovo", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.73269000", + "longitude": "20.58413000" + }, + { + "id": "99777", + "name": "Mamonovo", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.46427000", + "longitude": "19.93801000" + }, + { + "id": "100100", + "name": "Neman", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "55.03111000", + "longitude": "22.02639000" + }, + { + "id": "100101", + "name": "Nemanskiy Rayon", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "22.00000000" + }, + { + "id": "100111", + "name": "Nesterov", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.63056000", + "longitude": "22.57139000" + }, + { + "id": "100113", + "name": "Nesterovskiy Rayon", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "22.58333000" + }, + { + "id": "100507", + "name": "Otradnoye", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.94114000", + "longitude": "20.11397000" + }, + { + "id": "100524", + "name": "Ozërsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41056000", + "longitude": "22.01167000" + }, + { + "id": "100520", + "name": "Ozerskiy Rayon", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41667000", + "longitude": "22.00000000" + }, + { + "id": "100680", + "name": "Pionerskiy", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.95083000", + "longitude": "20.22748000" + }, + { + "id": "100753", + "name": "Polessk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.86205000", + "longitude": "21.10279000" + }, + { + "id": "100802", + "name": "Pravdinsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.44289000", + "longitude": "21.01785000" + }, + { + "id": "100830", + "name": "Primorsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.73905000", + "longitude": "20.00553000" + }, + { + "id": "101402", + "name": "Slavsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "55.04250000", + "longitude": "21.67704000" + }, + { + "id": "101403", + "name": "Slavskiy Rayon", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "21.66667000" + }, + { + "id": "101504", + "name": "Sovetsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "55.08392000", + "longitude": "21.87851000" + }, + { + "id": "101701", + "name": "Svetlogorsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.93987000", + "longitude": "20.15479000" + }, + { + "id": "101705", + "name": "Svetlyy", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.67501000", + "longitude": "20.13473000" + }, + { + "id": "102350", + "name": "Volochayevskoye", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.70034000", + "longitude": "20.21966000" + }, + { + "id": "102456", + "name": "Vzmorye", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.69606000", + "longitude": "20.23613000" + }, + { + "id": "102486", + "name": "Yantarnyy", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.87102000", + "longitude": "19.94016000" + }, + { + "id": "102619", + "name": "Yuzhnyy", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.54837000", + "longitude": "20.59843000" + }, + { + "id": "102699", + "name": "Zelenogradsk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.95893000", + "longitude": "20.47668000" + }, + { + "id": "102718", + "name": "Zheleznodorozhnyy", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.36013000", + "longitude": "21.30597000" + }, + { + "id": "102758", + "name": "Znamensk", + "state_id": 1902, + "state_code": "KGD", + "country_id": 182, + "country_code": "RU", + "latitude": "54.61403000", + "longitude": "21.22722000" + }, + { + "id": "97746", + "name": "Babynino", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.39385000", + "longitude": "35.77013000" + }, + { + "id": "97747", + "name": "Babyninskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41667000", + "longitude": "35.75000000" + }, + { + "id": "97766", + "name": "Balabanovo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.18161000", + "longitude": "36.66060000" + }, + { + "id": "97801", + "name": "Baryatino", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.31206000", + "longitude": "34.52096000" + }, + { + "id": "97802", + "name": "Baryatinskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33333000", + "longitude": "34.58333000" + }, + { + "id": "97866", + "name": "Belousovo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.09499000", + "longitude": "36.67320000" + }, + { + "id": "97916", + "name": "Betlitsa", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00946000", + "longitude": "33.95875000" + }, + { + "id": "98040", + "name": "Borovsk", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.20639000", + "longitude": "36.48611000" + }, + { + "id": "98042", + "name": "Borovskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16667000", + "longitude": "36.50000000" + }, + { + "id": "98268", + "name": "Deshovki", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00333000", + "longitude": "35.78771000" + }, + { + "id": "98270", + "name": "Detchino", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.80923000", + "longitude": "36.30750000" + }, + { + "id": "98354", + "name": "Duminichi", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.93446000", + "longitude": "35.10993000" + }, + { + "id": "98355", + "name": "Duminichskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.91667000", + "longitude": "35.00000000" + }, + { + "id": "98359", + "name": "Dvortsy", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.61677000", + "longitude": "35.99740000" + }, + { + "id": "98369", + "name": "Dzerzhinskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75000000", + "longitude": "35.75000000" + }, + { + "id": "98422", + "name": "Ferzikovo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.51913000", + "longitude": "36.75671000" + }, + { + "id": "98423", + "name": "Ferzikovskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "36.58333000" + }, + { + "id": "98755", + "name": "Iznoski", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.98806000", + "longitude": "35.31083000" + }, + { + "id": "98756", + "name": "Iznoskovskiy rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.99026000", + "longitude": "35.30961000" + }, + { + "id": "98802", + "name": "Kaluga", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.52930000", + "longitude": "36.27542000" + }, + { + "id": "99025", + "name": "Khvastovichi", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.46942000", + "longitude": "35.09409000" + }, + { + "id": "99026", + "name": "Khvastovichskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.50000000", + "longitude": "35.16667000" + }, + { + "id": "99060", + "name": "Kirov", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.06686000", + "longitude": "34.29955000" + }, + { + "id": "99072", + "name": "Kirovskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.08333000", + "longitude": "34.41667000" + }, + { + "id": "99183", + "name": "Kondrovo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.80639000", + "longitude": "35.92778000" + }, + { + "id": "99260", + "name": "Kozel’sk", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.03746000", + "longitude": "35.77159000" + }, + { + "id": "99261", + "name": "Kozel’skiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00000000", + "longitude": "35.83333000" + }, + { + "id": "99388", + "name": "Kremenki", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.88626000", + "longitude": "37.11955000" + }, + { + "id": "99421", + "name": "Kudinovo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.99939000", + "longitude": "36.25331000" + }, + { + "id": "99472", + "name": "Kurovskoye", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.54299000", + "longitude": "36.00262000" + }, + { + "id": "99495", + "name": "Kuybyshevskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.08333000", + "longitude": "33.91667000" + }, + { + "id": "99724", + "name": "Lyudinovo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.86639000", + "longitude": "34.44778000" + }, + { + "id": "99725", + "name": "Lyudinovskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.91667000", + "longitude": "34.50000000" + }, + { + "id": "99767", + "name": "Maloyaroslavets", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.01457000", + "longitude": "36.47185000" + }, + { + "id": "99768", + "name": "Maloyaroslavetskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "36.50000000" + }, + { + "id": "99850", + "name": "Medyn’", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.96917000", + "longitude": "35.85861000" + }, + { + "id": "99849", + "name": "Medynskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.08333000", + "longitude": "35.83333000" + }, + { + "id": "99869", + "name": "Meshchovsk", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.32444000", + "longitude": "35.28083000" + }, + { + "id": "99870", + "name": "Meshchovskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33333000", + "longitude": "35.41667000" + }, + { + "id": "99970", + "name": "Mosal’sk", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.48806000", + "longitude": "34.98167000" + }, + { + "id": "99971", + "name": "Mosal’skiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "34.83333000" + }, + { + "id": "99991", + "name": "Mstikhino", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.55947000", + "longitude": "36.12777000" + }, + { + "id": "100027", + "name": "Myatlevo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.89693000", + "longitude": "35.67619000" + }, + { + "id": "100132", + "name": "Nikola-Lenivets", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.74943000", + "longitude": "35.60133000" + }, + { + "id": "100386", + "name": "Obninsk", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.09681000", + "longitude": "36.61006000" + }, + { + "id": "100601", + "name": "Peremyshl’", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.26313000", + "longitude": "36.16063000" + }, + { + "id": "100602", + "name": "Peremyshl’skiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.25000000", + "longitude": "36.08333000" + }, + { + "id": "100756", + "name": "Polotnyanyy Zavod", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.72139000", + "longitude": "35.96611000" + }, + { + "id": "100912", + "name": "Pyatovskiy", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.68908000", + "longitude": "36.05634000" + }, + { + "id": "101178", + "name": "Seredeyskiy", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.05071000", + "longitude": "35.23183000" + }, + { + "id": "101482", + "name": "Sosenskiy", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.05899000", + "longitude": "35.96228000" + }, + { + "id": "101522", + "name": "Spas-Demensk", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41222000", + "longitude": "34.02257000" + }, + { + "id": "101523", + "name": "Spas-Demenskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41667000", + "longitude": "34.00000000" + }, + { + "id": "101649", + "name": "Sukhinichi", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.09989000", + "longitude": "35.34254000" + }, + { + "id": "101650", + "name": "Sukhinichskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.08333000", + "longitude": "35.33333000" + }, + { + "id": "101782", + "name": "Tarusa", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.72436000", + "longitude": "37.17272000" + }, + { + "id": "101783", + "name": "Tarusskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "37.00000000" + }, + { + "id": "101908", + "name": "Tovarkovo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.67617000", + "longitude": "35.93860000" + }, + { + "id": "102054", + "name": "Ul’yanovskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.66667000", + "longitude": "35.66667000" + }, + { + "id": "102385", + "name": "Vorotynsk", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.42828000", + "longitude": "36.04646000" + }, + { + "id": "102445", + "name": "Vysokinichi", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.90928000", + "longitude": "36.93148000" + }, + { + "id": "102568", + "name": "Yermolino", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.19489000", + "longitude": "36.59513000" + }, + { + "id": "102590", + "name": "Yukhnov", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.74444000", + "longitude": "35.22972000" + }, + { + "id": "102591", + "name": "Yukhnovskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75000000", + "longitude": "35.25000000" + }, + { + "id": "102657", + "name": "Zarech’ye", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.73078000", + "longitude": "35.63246000" + }, + { + "id": "102731", + "name": "Zhiletovo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.69216000", + "longitude": "36.02225000" + }, + { + "id": "102738", + "name": "Zhizdra", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.74596000", + "longitude": "34.73951000" + }, + { + "id": "102739", + "name": "Zhizdrinskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.66667000", + "longitude": "34.75000000" + }, + { + "id": "102742", + "name": "Zhukovo", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.03178000", + "longitude": "36.74402000" + }, + { + "id": "102745", + "name": "Zhukovskiy Rayon", + "state_id": 1844, + "state_code": "KLU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.08333000", + "longitude": "36.75000000" + }, + { + "id": "97585", + "name": "Aleutskiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.21667000", + "longitude": "165.98333000" + }, + { + "id": "97715", + "name": "Atlasovo", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.60650000", + "longitude": "159.64266000" + }, + { + "id": "98100", + "name": "Bystrinskiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "158.50000000" + }, + { + "id": "98404", + "name": "Esso", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.92738000", + "longitude": "158.70708000" + }, + { + "id": "98863", + "name": "Karaginsky District", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00000000", + "longitude": "159.83333000" + }, + { + "id": "99112", + "name": "Klyuchi", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.32035000", + "longitude": "160.84541000" + }, + { + "id": "99270", + "name": "Kozyrëvsk", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.04860000", + "longitude": "159.87150000" + }, + { + "id": "99914", + "name": "Mil’kovo", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.69610000", + "longitude": "158.62067000" + }, + { + "id": "99915", + "name": "Mil’kovskiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "159.00000000" + }, + { + "id": "100430", + "name": "Olyutorskiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.00000000", + "longitude": "169.00000000" + }, + { + "id": "100489", + "name": "Ossora", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "59.24781000", + "longitude": "163.07034000" + }, + { + "id": "100518", + "name": "Ozernovskiy", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "51.49604000", + "longitude": "156.50102000" + }, + { + "id": "100527", + "name": "Palana", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "59.08384000", + "longitude": "159.95630000" + }, + { + "id": "100543", + "name": "Paratunka", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.96202000", + "longitude": "158.25723000" + }, + { + "id": "100596", + "name": "Penzhinskiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "63.00000000", + "longitude": "167.00000000" + }, + { + "id": "100652", + "name": "Petropavlovsk-Kamchatsky", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.04444000", + "longitude": "158.65076000" + }, + { + "id": "101428", + "name": "Sobolevskiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "156.50000000" + }, + { + "id": "101849", + "name": "Tigil’", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.75979000", + "longitude": "158.68161000" + }, + { + "id": "101850", + "name": "Tigil’skiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.76046000", + "longitude": "158.68687000" + }, + { + "id": "101856", + "name": "Tilichiki", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "60.42795000", + "longitude": "166.05764000" + }, + { + "id": "102116", + "name": "Ust’-Bol’sheretskiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.66667000", + "longitude": "157.00000000" + }, + { + "id": "102125", + "name": "Ust’-Kamchatsk Staryy", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.22778000", + "longitude": "162.47778000" + }, + { + "id": "102126", + "name": "Ust’-Kamchatskiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "161.00000000" + }, + { + "id": "102308", + "name": "Vilyuchinsk", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.93110000", + "longitude": "158.40469000" + }, + { + "id": "102544", + "name": "Yelizovo", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.18909000", + "longitude": "158.38135000" + }, + { + "id": "102545", + "name": "Yelizovskiy Rayon", + "state_id": 1865, + "state_code": "KAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.66667000", + "longitude": "159.00000000" + }, + { + "id": "97505", + "name": "Adyge-Khabl’", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.33434000", + "longitude": "41.93922000" + }, + { + "id": "97588", + "name": "Ali-Berdukovskiy", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.98952000", + "longitude": "41.74212000" + }, + { + "id": "97911", + "name": "Besleney", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.24050000", + "longitude": "41.73870000" + }, + { + "id": "98160", + "name": "Cherkessk", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.22333000", + "longitude": "42.05778000" + }, + { + "id": "98328", + "name": "Druzhba", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.19530000", + "longitude": "42.01700000" + }, + { + "id": "98638", + "name": "Ikon-Khalk", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.30510000", + "longitude": "41.91420000" + }, + { + "id": "98714", + "name": "Ispravnaya", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.06820000", + "longitude": "41.61020000" + }, + { + "id": "98857", + "name": "Karachayevsk", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.77399000", + "longitude": "41.91419000" + }, + { + "id": "98858", + "name": "Karachayevskiy Rayon", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.50000000", + "longitude": "42.00000000" + }, + { + "id": "98873", + "name": "Kardonikskaya", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.86577000", + "longitude": "41.71432000" + }, + { + "id": "98914", + "name": "Kavkazskiy", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.26720000", + "longitude": "42.23470000" + }, + { + "id": "98952", + "name": "Khabez", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.04340000", + "longitude": "41.77200000" + }, + { + "id": "99366", + "name": "Krasnyy Kurgan", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.94222000", + "longitude": "42.61083000" + }, + { + "id": "99443", + "name": "Kumysh", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.88334000", + "longitude": "41.89323000" + }, + { + "id": "99458", + "name": "Kurdzhinovo", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.98838000", + "longitude": "40.95519000" + }, + { + "id": "99528", + "name": "Kyzyl-Oktyabr’skiy", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.82570000", + "longitude": "41.78605000" + }, + { + "id": "99763", + "name": "Malokarachayevskiy Rayon", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.75000000", + "longitude": "42.50000000" + }, + { + "id": "99841", + "name": "Mednogorskiy", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.91780000", + "longitude": "41.18255000" + }, + { + "id": "100162", + "name": "Nizhniy Arkhyz", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.67817000", + "longitude": "41.45977000" + }, + { + "id": "100344", + "name": "Novyy Karachay", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.82076000", + "longitude": "41.90322000" + }, + { + "id": "100460", + "name": "Ordzhonikidzevskiy", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.84233000", + "longitude": "41.89636000" + }, + { + "id": "100624", + "name": "Pervomayskoye", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.93847000", + "longitude": "42.47600000" + }, + { + "id": "100805", + "name": "Pravokubanskiy", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.91721000", + "longitude": "41.88413000" + }, + { + "id": "100809", + "name": "Pregradnaya", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.95395000", + "longitude": "41.18910000" + }, + { + "id": "100825", + "name": "Prikubanskiy Rayon", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.08333000", + "longitude": "42.00000000" + }, + { + "id": "100884", + "name": "Psyzh", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.23306000", + "longitude": "42.01833000" + }, + { + "id": "101125", + "name": "Sary-Tyuz", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.90181000", + "longitude": "41.89523000" + }, + { + "id": "101623", + "name": "Storozhevaya", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.87886000", + "longitude": "41.45143000" + }, + { + "id": "101830", + "name": "Tereze", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.93608000", + "longitude": "42.44340000" + }, + { + "id": "102014", + "name": "Uchkeken", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.93778000", + "longitude": "42.51167000" + }, + { + "id": "102016", + "name": "Uchkulan", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.45705000", + "longitude": "42.09643000" + }, + { + "id": "102019", + "name": "Udarnyy", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.34917000", + "longitude": "42.50528000" + }, + { + "id": "102119", + "name": "Ust’-Dzheguta", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "44.08340000", + "longitude": "41.97630000" + }, + { + "id": "102689", + "name": "Zelenchukskaya", + "state_id": 1869, + "state_code": "KC", + "country_id": 182, + "country_code": "RU", + "latitude": "43.85804000", + "longitude": "41.58940000" + }, + { + "id": "97477", + "name": "Abagur", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.73080000", + "longitude": "87.25260000" + }, + { + "id": "97646", + "name": "Anzhero-Sudzhensk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08100000", + "longitude": "86.02850000" + }, + { + "id": "97685", + "name": "Artyshta", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.12220000", + "longitude": "86.29090000" + }, + { + "id": "97748", + "name": "Bachatskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.29270000", + "longitude": "86.12850000" + }, + { + "id": "97806", + "name": "Barzas", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72912000", + "longitude": "86.32233000" + }, + { + "id": "97852", + "name": "Belogorsk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.01778000", + "longitude": "88.48972000" + }, + { + "id": "97867", + "name": "Belovo", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41650000", + "longitude": "86.29760000" + }, + { + "id": "97907", + "name": "Berëzovskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.60000000", + "longitude": "86.20000000" + }, + { + "id": "98039", + "name": "Borovoy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.43333000", + "longitude": "86.08333000" + }, + { + "id": "98199", + "name": "Chistogorskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.98350000", + "longitude": "87.38430000" + }, + { + "id": "98576", + "name": "Gramoteino", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.53680000", + "longitude": "86.38390000" + }, + { + "id": "98617", + "name": "Gur’yevsk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.28333000", + "longitude": "85.93333000" + }, + { + "id": "98677", + "name": "Inskoy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.42970000", + "longitude": "86.44000000" + }, + { + "id": "98723", + "name": "Itatskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.07000000", + "longitude": "89.03694000" + }, + { + "id": "98749", + "name": "Izhmorskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.19239000", + "longitude": "86.64161000" + }, + { + "id": "98799", + "name": "Kaltan", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.53470000", + "longitude": "87.24570000" + }, + { + "id": "98862", + "name": "Karagayla", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.17200000", + "longitude": "86.55210000" + }, + { + "id": "98921", + "name": "Kaz", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.91130000", + "longitude": "87.31050000" + }, + { + "id": "98933", + "name": "Kedrovka", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.53333000", + "longitude": "86.05000000" + }, + { + "id": "98937", + "name": "Kemerovo", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "86.08333000" + }, + { + "id": "99078", + "name": "Kiselëvsk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.99000000", + "longitude": "86.66210000" + }, + { + "id": "99272", + "name": "Krapivinskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.99920000", + "longitude": "86.81330000" + }, + { + "id": "99298", + "name": "Krasnobrodskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.15810000", + "longitude": "86.44860000" + }, + { + "id": "99307", + "name": "Krasnogorskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.54710000", + "longitude": "86.28100000" + }, + { + "id": "99352", + "name": "Krasnoye", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.60680000", + "longitude": "85.38990000" + }, + { + "id": "99499", + "name": "Kuzedeyevo", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.33080000", + "longitude": "87.20190000" + }, + { + "id": "99569", + "name": "Leninsk-Kuznetskiy Rayon", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "86.00000000" + }, + { + "id": "99570", + "name": "Leninsk-Kuznetsky", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.65670000", + "longitude": "86.17370000" + }, + { + "id": "99639", + "name": "Listvyagi", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.67720000", + "longitude": "86.95100000" + }, + { + "id": "99795", + "name": "Mariinsk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.21389000", + "longitude": "87.74722000" + }, + { + "id": "99880", + "name": "Mezhdurechensk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.69417000", + "longitude": "88.06028000" + }, + { + "id": "100003", + "name": "Mundybash", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.21100000", + "longitude": "87.29830000" + }, + { + "id": "100033", + "name": "Myski", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.70900000", + "longitude": "87.80140000" + }, + { + "id": "100131", + "name": "Nikitinskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58450000", + "longitude": "86.01150000" + }, + { + "id": "100257", + "name": "Novokuznetsk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.75570000", + "longitude": "87.10990000" + }, + { + "id": "100258", + "name": "Novokuznetskiy Rayon", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.75000000", + "longitude": "87.08333000" + }, + { + "id": "100279", + "name": "Novopesterevo", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.44290000", + "longitude": "85.74010000" + }, + { + "id": "100487", + "name": "Osinniki", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.62390000", + "longitude": "87.35980000" + }, + { + "id": "100679", + "name": "Pioner", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31660000", + "longitude": "85.95080000" + }, + { + "id": "100703", + "name": "Plotnikovo", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.02472000", + "longitude": "85.94361000" + }, + { + "id": "100764", + "name": "Polysayevo", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.60120000", + "longitude": "86.24590000" + }, + { + "id": "100842", + "name": "Pritomskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.77240000", + "longitude": "87.60820000" + }, + { + "id": "100859", + "name": "Prokop’yevsk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.90590000", + "longitude": "86.71900000" + }, + { + "id": "100860", + "name": "Prokop’yevskiy Rayon", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00000000", + "longitude": "86.66667000" + }, + { + "id": "100866", + "name": "Promyshlennaya", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91590000", + "longitude": "85.63850000" + }, + { + "id": "100867", + "name": "Promyshlennovskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.48333000", + "longitude": "86.20000000" + }, + { + "id": "101023", + "name": "Rudnichnyy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08469000", + "longitude": "86.24988000" + }, + { + "id": "101077", + "name": "Salair", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.23120000", + "longitude": "85.79720000" + }, + { + "id": "101305", + "name": "Sheregesh", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.92090000", + "longitude": "87.98690000" + }, + { + "id": "101490", + "name": "Sosnovka", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.66760000", + "longitude": "87.15270000" + }, + { + "id": "101527", + "name": "Spassk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.74700000", + "longitude": "87.75450000" + }, + { + "id": "101572", + "name": "Starobachaty", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.24250000", + "longitude": "86.20720000" + }, + { + "id": "101590", + "name": "Staropesterevo", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50010000", + "longitude": "86.40940000" + }, + { + "id": "101684", + "name": "Suslovo", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.21667000", + "longitude": "88.11667000" + }, + { + "id": "101788", + "name": "Tashtagol", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.76570000", + "longitude": "87.88940000" + }, + { + "id": "101789", + "name": "Tashtagol’skiy Rayon", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.78333000", + "longitude": "87.88333000" + }, + { + "id": "101802", + "name": "Tayga", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.06402000", + "longitude": "85.62238000" + }, + { + "id": "101806", + "name": "Tayzhina", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.66790000", + "longitude": "87.43620000" + }, + { + "id": "101815", + "name": "Temirtau", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.13770000", + "longitude": "87.45380000" + }, + { + "id": "101864", + "name": "Tisul’", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76173000", + "longitude": "88.31228000" + }, + { + "id": "101894", + "name": "Topki", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.27690000", + "longitude": "85.61630000" + }, + { + "id": "101930", + "name": "Trudarmeyskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.13200000", + "longitude": "86.40980000" + }, + { + "id": "101990", + "name": "Tyazhinskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11607000", + "longitude": "88.52279000" + }, + { + "id": "102085", + "name": "Ursk", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.45417000", + "longitude": "85.40028000" + }, + { + "id": "102230", + "name": "Verkh-Chebula", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03062000", + "longitude": "87.62215000" + }, + { + "id": "102463", + "name": "Yagunovo", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.24645000", + "longitude": "86.01097000" + }, + { + "id": "102464", + "name": "Yagunovskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.28280000", + "longitude": "85.97800000" + }, + { + "id": "102510", + "name": "Yashkino", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.87360000", + "longitude": "85.42650000" + }, + { + "id": "102517", + "name": "Yaya", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.20600000", + "longitude": "86.44000000" + }, + { + "id": "102593", + "name": "Yurga", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72306000", + "longitude": "84.88611000" + }, + { + "id": "102595", + "name": "Yurginskiy Rayon", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "84.75000000" + }, + { + "id": "102697", + "name": "Zelenogorskiy", + "state_id": 1897, + "state_code": "KEM", + "country_id": 182, + "country_code": "RU", + "latitude": "55.03333000", + "longitude": "87.00000000" + }, + { + "id": "97614", + "name": "Amursk", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "50.23685000", + "longitude": "136.88136000" + }, + { + "id": "97727", + "name": "Ayan", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.46314000", + "longitude": "138.17777000" + }, + { + "id": "97908", + "name": "Berëzovyy", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "51.66897000", + "longitude": "135.66584000" + }, + { + "id": "97926", + "name": "Bikin", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.81293000", + "longitude": "134.25012000" + }, + { + "id": "97927", + "name": "Bikinskiy Rayon", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "47.00000000", + "longitude": "134.25000000" + }, + { + "id": "97974", + "name": "Bogorodskoye", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.37397000", + "longitude": "140.43579000" + }, + { + "id": "98131", + "name": "Chegdomyn", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "51.12853000", + "longitude": "133.00827000" + }, + { + "id": "98221", + "name": "Chumikan", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.71857000", + "longitude": "135.31630000" + }, + { + "id": "98253", + "name": "De-Kastri", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "51.47543000", + "longitude": "140.76986000" + }, + { + "id": "98525", + "name": "Gorin", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "51.19861000", + "longitude": "136.66216000" + }, + { + "id": "98542", + "name": "Gornyy", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "50.76344000", + "longitude": "136.44951000" + }, + { + "id": "98665", + "name": "Imeni Poliny Osipenko", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.42270000", + "longitude": "136.48692000" + }, + { + "id": "98948", + "name": "Khabarovsk", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.48271000", + "longitude": "135.08379000" + }, + { + "id": "98949", + "name": "Khabarovsk Vtoroy", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.43776000", + "longitude": "135.13329000" + }, + { + "id": "99004", + "name": "Khor", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "47.88696000", + "longitude": "134.94630000" + }, + { + "id": "99021", + "name": "Khurba", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "50.40657000", + "longitude": "136.88276000" + }, + { + "id": "99115", + "name": "Knyaze-Volkonskoye", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.46547000", + "longitude": "135.45582000" + }, + { + "id": "99171", + "name": "Komsomolsk-on-Amur", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "50.55034000", + "longitude": "137.00995000" + }, + { + "id": "99206", + "name": "Korfovskiy", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.22259000", + "longitude": "135.05966000" + }, + { + "id": "99548", + "name": "Lazarev", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.22307000", + "longitude": "141.51265000" + }, + { + "id": "99585", + "name": "Lermontovka", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "47.14795000", + "longitude": "134.33477000" + }, + { + "id": "99641", + "name": "Litovko", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "49.23754000", + "longitude": "135.17401000" + }, + { + "id": "99668", + "name": "Lososina", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.99652000", + "longitude": "140.31462000" + }, + { + "id": "99740", + "name": "Mago", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25851000", + "longitude": "140.18269000" + }, + { + "id": "99833", + "name": "Mayskiy", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.99887000", + "longitude": "140.20976000" + }, + { + "id": "99936", + "name": "Mnogovershinnyy", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.93345000", + "longitude": "139.92740000" + }, + { + "id": "99996", + "name": "Mukhen", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.19672000", + "longitude": "136.12691000" + }, + { + "id": "100092", + "name": "Nekrasovka", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.35208000", + "longitude": "135.23221000" + }, + { + "id": "100136", + "name": "Nikolayevsk-on-Amure", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.14657000", + "longitude": "140.72287000" + }, + { + "id": "100353", + "name": "Novyy Urgal", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "51.07089000", + "longitude": "132.60075000" + }, + { + "id": "100403", + "name": "Okhotsk", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "59.36200000", + "longitude": "143.21468000" + }, + { + "id": "101155", + "name": "Selikhino", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "50.36832000", + "longitude": "137.50163000" + }, + { + "id": "101459", + "name": "Solnechnyy", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "50.72367000", + "longitude": "136.63831000" + }, + { + "id": "101508", + "name": "Sovetskaya Gavan’", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.97215000", + "longitude": "140.28919000" + }, + { + "id": "101895", + "name": "Topolëvo", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "48.50264000", + "longitude": "135.17611000" + }, + { + "id": "101996", + "name": "Tyrma", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "50.04770000", + "longitude": "132.15011000" + }, + { + "id": "102186", + "name": "Vanino", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "49.09848000", + "longitude": "140.25313000" + }, + { + "id": "102421", + "name": "Vyazemskiy", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "47.53757000", + "longitude": "134.75556000" + }, + { + "id": "102447", + "name": "Vysokogornyy", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "50.09885000", + "longitude": "139.12284000" + }, + { + "id": "102671", + "name": "Zavety Il’icha", + "state_id": 1873, + "state_code": "KHA", + "country_id": 182, + "country_code": "RU", + "latitude": "49.03737000", + "longitude": "140.26989000" + }, + { + "id": "97519", + "name": "Agirish", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.92472000", + "longitude": "63.02306000" + }, + { + "id": "97625", + "name": "Andra", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "62.51472000", + "longitude": "65.88778000" + }, + { + "id": "97797", + "name": "Barsovo", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.16667000", + "longitude": "73.16667000" + }, + { + "id": "97869", + "name": "Beloyarskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "63.71194000", + "longitude": "66.67222000" + }, + { + "id": "97906", + "name": "Berëzovo", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "63.93806000", + "longitude": "65.04194000" + }, + { + "id": "98417", + "name": "Fedorovskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.60630000", + "longitude": "73.71415000" + }, + { + "id": "98531", + "name": "Gornopravdinsk", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "60.05000000", + "longitude": "69.90000000" + }, + { + "id": "98635", + "name": "Igrim", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "63.19060000", + "longitude": "64.41620000" + }, + { + "id": "98750", + "name": "Izluchinsk", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "60.97944000", + "longitude": "76.92421000" + }, + { + "id": "98962", + "name": "Khanty-Mansiysk", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.00417000", + "longitude": "69.00194000" + }, + { + "id": "99017", + "name": "Khulimsunt", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "62.86333000", + "longitude": "61.64361000" + }, + { + "id": "99128", + "name": "Kogalym", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "62.26537000", + "longitude": "74.47906000" + }, + { + "id": "99167", + "name": "Kommunisticheskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.67889000", + "longitude": "64.48194000" + }, + { + "id": "99179", + "name": "Kondinskoye", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "59.64806000", + "longitude": "67.41000000" + }, + { + "id": "99441", + "name": "Kuminskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "58.66667000", + "longitude": "66.56667000" + }, + { + "id": "99544", + "name": "Langepas", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.25439000", + "longitude": "75.21240000" + }, + { + "id": "99653", + "name": "Lokosovo", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.13333000", + "longitude": "74.81667000" + }, + { + "id": "99705", + "name": "Lyantor", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.61945000", + "longitude": "72.15546000" + }, + { + "id": "99758", + "name": "Malinovskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.19528000", + "longitude": "62.83972000" + }, + { + "id": "99851", + "name": "Megion", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.02960000", + "longitude": "76.11360000" + }, + { + "id": "99881", + "name": "Mezhdurechenskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "59.60000000", + "longitude": "65.93333000" + }, + { + "id": "99968", + "name": "Mortka", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "59.33222000", + "longitude": "66.02139000" + }, + { + "id": "100088", + "name": "Nefteyugansk", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.09979000", + "longitude": "72.60349000" + }, + { + "id": "100158", + "name": "Nizhnesortymskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "62.43965000", + "longitude": "71.76029000" + }, + { + "id": "100160", + "name": "Nizhnevartovsk", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "60.93440000", + "longitude": "76.55310000" + }, + { + "id": "100221", + "name": "Novoagansk", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.94490000", + "longitude": "76.66250000" + }, + { + "id": "100373", + "name": "Nyagan", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "62.14056000", + "longitude": "65.39361000" + }, + { + "id": "100681", + "name": "Pionerskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.19472000", + "longitude": "62.86889000" + }, + { + "id": "100739", + "name": "Pokachi", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.71982000", + "longitude": "75.36827000" + }, + { + "id": "100798", + "name": "Poykovskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.23333000", + "longitude": "73.33333000" + }, + { + "id": "100836", + "name": "Priob’ye", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "62.52056000", + "longitude": "65.59639000" + }, + { + "id": "100917", + "name": "Pyt-Yakh", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "60.74985000", + "longitude": "72.85824000" + }, + { + "id": "100927", + "name": "Raduzhny", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "62.09611000", + "longitude": "77.47500000" + }, + { + "id": "101030", + "name": "Russkinskiye", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "62.15380000", + "longitude": "73.60102000" + }, + { + "id": "101082", + "name": "Salym", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "60.06250000", + "longitude": "71.47889000" + }, + { + "id": "101109", + "name": "Saranpaul’", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "64.26102000", + "longitude": "60.90233000" + }, + { + "id": "101307", + "name": "Sherkaly", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "62.75806000", + "longitude": "65.47528000" + }, + { + "id": "101375", + "name": "Singapay", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.15452000", + "longitude": "72.66072000" + }, + { + "id": "101452", + "name": "Solnechniy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.27944000", + "longitude": "73.18139000" + }, + { + "id": "101511", + "name": "Sovetskiy", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.36139000", + "longitude": "63.58417000" + }, + { + "id": "101676", + "name": "Surgut", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.25000000", + "longitude": "73.41667000" + }, + { + "id": "102071", + "name": "Uray", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "60.13044000", + "longitude": "64.78896000" + }, + { + "id": "102588", + "name": "Yugorsk", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.31226000", + "longitude": "63.33067000" + }, + { + "id": "102691", + "name": "Zelenoborsk", + "state_id": 1838, + "state_code": "KHM", + "country_id": 182, + "country_code": "RU", + "latitude": "61.47088000", + "longitude": "64.04344000" + }, + { + "id": "97508", + "name": "Afanas’yevskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.83333000", + "longitude": "53.25000000" + }, + { + "id": "97653", + "name": "Arbazh", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.68041000", + "longitude": "48.30647000" + }, + { + "id": "97671", + "name": "Arkul’", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.28085000", + "longitude": "50.04400000" + }, + { + "id": "97843", + "name": "Belaya Kholunitsa", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.84000000", + "longitude": "50.85278000" + }, + { + "id": "97861", + "name": "Belorechensk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.77251000", + "longitude": "52.29357000" + }, + { + "id": "97973", + "name": "Bogorodskoye", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.82849000", + "longitude": "50.74856000" + }, + { + "id": "98229", + "name": "Chërnaya Kholunitsa", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.85115000", + "longitude": "51.71545000" + }, + { + "id": "98247", + "name": "Darovskoy", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.76999000", + "longitude": "47.95642000" + }, + { + "id": "98263", + "name": "Dem’yanovo", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "60.35111000", + "longitude": "47.08417000" + }, + { + "id": "98344", + "name": "Dubrovka", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.22866000", + "longitude": "51.15578000" + }, + { + "id": "98412", + "name": "Falënki", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.36127000", + "longitude": "51.59461000" + }, + { + "id": "98413", + "name": "Falënskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.33333000", + "longitude": "51.58333000" + }, + { + "id": "99037", + "name": "Kiknur", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.30341000", + "longitude": "47.20105000" + }, + { + "id": "99038", + "name": "Kiknurskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.33333000", + "longitude": "47.16667000" + }, + { + "id": "99041", + "name": "Kil’mez’", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.94389000", + "longitude": "51.06500000" + }, + { + "id": "99059", + "name": "Kirov", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.59665000", + "longitude": "49.66007000" + }, + { + "id": "99062", + "name": "Kirovo-Chepetsk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.55386000", + "longitude": "50.03986000" + }, + { + "id": "99063", + "name": "Kirovo-Chepetskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50000000", + "longitude": "50.00000000" + }, + { + "id": "99073", + "name": "Kirs", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.33882000", + "longitude": "52.24467000" + }, + { + "id": "99233", + "name": "Kosino", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.41272000", + "longitude": "51.27819000" + }, + { + "id": "99239", + "name": "Kostino", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.90966000", + "longitude": "53.26907000" + }, + { + "id": "99244", + "name": "Kotel’nich", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.30890000", + "longitude": "48.34800000" + }, + { + "id": "99282", + "name": "Krasnaya Polyana", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.24204000", + "longitude": "51.14425000" + }, + { + "id": "99444", + "name": "Kumëny", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.10887000", + "longitude": "49.91614000" + }, + { + "id": "99543", + "name": "Lal’sk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "60.74146000", + "longitude": "47.58617000" + }, + { + "id": "99577", + "name": "Leninskoye", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.31637000", + "longitude": "47.08856000" + }, + { + "id": "99593", + "name": "Lesnoy", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.78100000", + "longitude": "52.12838000" + }, + { + "id": "99601", + "name": "Lesnyye Polyany", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.00314000", + "longitude": "52.41802000" + }, + { + "id": "99695", + "name": "Luza", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "60.63081000", + "longitude": "47.25118000" + }, + { + "id": "99699", + "name": "Luzskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "60.58333000", + "longitude": "47.25000000" + }, + { + "id": "99704", + "name": "Lyangasovo", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.51759000", + "longitude": "49.44718000" + }, + { + "id": "99760", + "name": "Malmyzh", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.52050000", + "longitude": "50.68180000" + }, + { + "id": "99761", + "name": "Malmyzhskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.58333000", + "longitude": "50.91667000" + }, + { + "id": "99803", + "name": "Maromitsa", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.86828000", + "longitude": "48.01227000" + }, + { + "id": "99844", + "name": "Medvedok", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.38913000", + "longitude": "50.03510000" + }, + { + "id": "99925", + "name": "Mirnyy", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.49333000", + "longitude": "47.65389000" + }, + { + "id": "100005", + "name": "Murashi", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.39990000", + "longitude": "48.96150000" + }, + { + "id": "100006", + "name": "Murashinskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.33333000", + "longitude": "48.75000000" + }, + { + "id": "100018", + "name": "Murygino", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.73831000", + "longitude": "49.45822000" + }, + { + "id": "100048", + "name": "Nagorsk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.31722000", + "longitude": "50.80778000" + }, + { + "id": "100049", + "name": "Nagorskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.50000000", + "longitude": "50.83333000" + }, + { + "id": "100099", + "name": "Nema", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.50675000", + "longitude": "50.50115000" + }, + { + "id": "100103", + "name": "Nemskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.50000000", + "longitude": "50.66667000" + }, + { + "id": "100154", + "name": "Nizhneivkino", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.19398000", + "longitude": "49.52137000" + }, + { + "id": "100196", + "name": "Nolinsk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.55962000", + "longitude": "49.93629000" + }, + { + "id": "100197", + "name": "Nolinskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58333000", + "longitude": "49.91667000" + }, + { + "id": "100445", + "name": "Omutninsk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.67001000", + "longitude": "52.19320000" + }, + { + "id": "100453", + "name": "Oparino", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.85179000", + "longitude": "48.27826000" + }, + { + "id": "100467", + "name": "Orichevskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.25000000", + "longitude": "48.75000000" + }, + { + "id": "100468", + "name": "Orichi", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.40356000", + "longitude": "49.05719000" + }, + { + "id": "100470", + "name": "Orlov", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.53946000", + "longitude": "48.89173000" + }, + { + "id": "100475", + "name": "Orlovskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.66306000", + "longitude": "48.74222000" + }, + { + "id": "100559", + "name": "Pasegovo", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50602000", + "longitude": "49.51383000" + }, + { + "id": "100635", + "name": "Peskovka", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.04478000", + "longitude": "52.36057000" + }, + { + "id": "100678", + "name": "Pinyug", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "60.25095000", + "longitude": "47.78425000" + }, + { + "id": "100690", + "name": "Pizhanka", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.46042000", + "longitude": "48.54200000" + }, + { + "id": "100691", + "name": "Pizhanskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.41667000", + "longitude": "48.50000000" + }, + { + "id": "100726", + "name": "Podosinovets", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "60.27758000", + "longitude": "47.06587000" + }, + { + "id": "100727", + "name": "Podosinovskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "60.16667000", + "longitude": "47.33333000" + }, + { + "id": "100930", + "name": "Raduzhnyy", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.49899000", + "longitude": "49.64347000" + }, + { + "id": "101022", + "name": "Rudnichnyy", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.61702000", + "longitude": "52.47033000" + }, + { + "id": "101095", + "name": "Sanchursk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.94125000", + "longitude": "47.24987000" + }, + { + "id": "101096", + "name": "Sanchurskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "47.33333000" + }, + { + "id": "101228", + "name": "Shabalinskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.33333000", + "longitude": "46.91667000" + }, + { + "id": "101409", + "name": "Slobodskoy", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.73222000", + "longitude": "50.17722000" + }, + { + "id": "101410", + "name": "Slobodskoy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.75000000", + "longitude": "50.25000000" + }, + { + "id": "101487", + "name": "Sosnovka", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25496000", + "longitude": "51.28419000" + }, + { + "id": "101503", + "name": "Sovetsk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58475000", + "longitude": "48.95844000" + }, + { + "id": "101513", + "name": "Sovetskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58333000", + "longitude": "49.00000000" + }, + { + "id": "101521", + "name": "Sozimskiy", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.74178000", + "longitude": "52.24821000" + }, + { + "id": "101629", + "name": "Strizhi", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.45758000", + "longitude": "49.28667000" + }, + { + "id": "101637", + "name": "Stulovo", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.72250000", + "longitude": "50.14389000" + }, + { + "id": "101662", + "name": "Suna", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.83379000", + "longitude": "50.05884000" + }, + { + "id": "101663", + "name": "Sunskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.83333000", + "longitude": "50.00000000" + }, + { + "id": "101696", + "name": "Svecha", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.27849000", + "longitude": "47.51636000" + }, + { + "id": "101704", + "name": "Svetlopolyansk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.41836000", + "longitude": "52.36045000" + }, + { + "id": "101898", + "name": "Torfyanoy", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.49160000", + "longitude": "49.19786000" + }, + { + "id": "101987", + "name": "Tuzha", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.60615000", + "longitude": "47.93597000" + }, + { + "id": "102060", + "name": "Uni", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.75100000", + "longitude": "51.49130000" + }, + { + "id": "102061", + "name": "Uninskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.66667000", + "longitude": "51.50000000" + }, + { + "id": "102094", + "name": "Urzhum", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.11412000", + "longitude": "49.99956000" + }, + { + "id": "102177", + "name": "Vakhrushi", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.68472000", + "longitude": "50.02611000" + }, + { + "id": "102276", + "name": "Verkhoshizhem’ye", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.01097000", + "longitude": "49.10384000" + }, + { + "id": "102398", + "name": "Vostochnyy", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.78811000", + "longitude": "52.24513000" + }, + { + "id": "102420", + "name": "Vyatskiye Polyany", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.22602000", + "longitude": "51.06557000" + }, + { + "id": "102491", + "name": "Yaransk", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.30331000", + "longitude": "47.88611000" + }, + { + "id": "102492", + "name": "Yaranskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.16667000", + "longitude": "48.00000000" + }, + { + "id": "102602", + "name": "Yur’yanskiy Rayon", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.00000000", + "longitude": "49.25000000" + }, + { + "id": "102777", + "name": "Zuyevka", + "state_id": 1890, + "state_code": "KIR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.40503000", + "longitude": "51.13355000" + }, + { + "id": "97729", + "name": "Aykino", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "62.22481000", + "longitude": "49.99222000" + }, + { + "id": "97952", + "name": "Blagoyevo", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.42310000", + "longitude": "47.96460000" + }, + { + "id": "98037", + "name": "Borovoy", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.23005000", + "longitude": "52.89031000" + }, + { + "id": "98410", + "name": "Ezhva", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "61.81281000", + "longitude": "50.72834000" + }, + { + "id": "98678", + "name": "Inta", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "66.03169000", + "longitude": "60.16594000" + }, + { + "id": "98748", + "name": "Izhma", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "65.00833000", + "longitude": "53.91128000" + }, + { + "id": "99116", + "name": "Knyazhpogostskiy Rayon", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "62.58333000", + "longitude": "50.91667000" + }, + { + "id": "99220", + "name": "Kortkeros", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "61.81056000", + "longitude": "51.58056000" + }, + { + "id": "99234", + "name": "Koslan", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.45641000", + "longitude": "48.89891000" + }, + { + "id": "99258", + "name": "Koygorodok", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "60.44498000", + "longitude": "50.99680000" + }, + { + "id": "99259", + "name": "Koygorodskiy Rayon", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "60.41667000", + "longitude": "51.00000000" + }, + { + "id": "99265", + "name": "Kozhva", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "65.10727000", + "longitude": "57.04590000" + }, + { + "id": "99606", + "name": "Letka", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "59.60111000", + "longitude": "49.42321000" + }, + { + "id": "99878", + "name": "Mezhdurechensk", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.24556000", + "longitude": "48.55333000" + }, + { + "id": "99909", + "name": "Mikun’", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "62.35472000", + "longitude": "50.07714000" + }, + { + "id": "99960", + "name": "Mordino", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "61.35327000", + "longitude": "51.89574000" + }, + { + "id": "100174", + "name": "Nizhniy Odes", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.64451000", + "longitude": "54.85598000" + }, + { + "id": "100552", + "name": "Parma", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "66.00000000", + "longitude": "57.70000000" + }, + { + "id": "100587", + "name": "Pechora", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "65.14717000", + "longitude": "57.22439000" + }, + { + "id": "100827", + "name": "Priluzskiy Rayon", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "60.33333000", + "longitude": "49.33333000" + }, + { + "id": "100868", + "name": "Promyshlennyy", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "67.58333000", + "longitude": "63.91667000" + }, + { + "id": "100904", + "name": "Puteyets", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "65.17157000", + "longitude": "57.09101000" + }, + { + "id": "101148", + "name": "Sedkyrkeshch", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "61.75000000", + "longitude": "50.91667000" + }, + { + "id": "101343", + "name": "Shudayag", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.52665000", + "longitude": "53.60582000" + }, + { + "id": "101371", + "name": "Sindor", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "62.86286000", + "longitude": "51.89051000" + }, + { + "id": "101484", + "name": "Sosnogorsk", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.60229000", + "longitude": "53.88175000" + }, + { + "id": "101512", + "name": "Sovetskiy", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "67.48333000", + "longitude": "64.41667000" + }, + { + "id": "101724", + "name": "Syktyvkar", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "61.66400000", + "longitude": "50.81500000" + }, + { + "id": "101728", + "name": "Synya", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "65.37185000", + "longitude": "58.03874000" + }, + { + "id": "101919", + "name": "Troitsko-Pechorsk", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "62.70836000", + "longitude": "56.19643000" + }, + { + "id": "101920", + "name": "Troitsko-Pechorskiy Rayon", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "62.66667000", + "longitude": "56.25000000" + }, + { + "id": "101941", + "name": "Tsementnozavodskiy", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "67.62834000", + "longitude": "64.08965000" + }, + { + "id": "102043", + "name": "Ukhta", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.56705000", + "longitude": "53.68348000" + }, + { + "id": "102096", + "name": "Usinsk", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "65.99389000", + "longitude": "57.52806000" + }, + { + "id": "102100", + "name": "Usogorsk", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.41064000", + "longitude": "48.68722000" + }, + { + "id": "102110", + "name": "Ust-Tsilma", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "65.44104000", + "longitude": "52.14978000" + }, + { + "id": "102134", + "name": "Ust’-Kulom", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "61.68636000", + "longitude": "53.69020000" + }, + { + "id": "102140", + "name": "Ust’-Tsilemskiy Rayon", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "65.41667000", + "longitude": "52.16667000" + }, + { + "id": "102266", + "name": "Verkhnyaya Inta", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "65.98115000", + "longitude": "60.30945000" + }, + { + "id": "102268", + "name": "Verkhnyaya Maksakovka", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "61.63504000", + "longitude": "50.96740000" + }, + { + "id": "102323", + "name": "Vizinga", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "61.07493000", + "longitude": "50.10311000" + }, + { + "id": "102334", + "name": "Vodnyy", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.50464000", + "longitude": "53.40947000" + }, + { + "id": "102376", + "name": "Vorgashor", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "67.58355000", + "longitude": "63.79399000" + }, + { + "id": "102377", + "name": "Vorkuta", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "67.49884000", + "longitude": "64.05253000" + }, + { + "id": "102405", + "name": "Voyvozh", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "62.89198000", + "longitude": "54.96346000" + }, + { + "id": "102415", + "name": "Vuktyl", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.85667000", + "longitude": "57.30944000" + }, + { + "id": "102493", + "name": "Yarega", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "63.43543000", + "longitude": "53.57650000" + }, + { + "id": "102559", + "name": "Yemva", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "62.58999000", + "longitude": "50.85939000" + }, + { + "id": "102648", + "name": "Zapolyarnyy", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "67.49552000", + "longitude": "63.73275000" + }, + { + "id": "102690", + "name": "Zelenets", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "61.88485000", + "longitude": "50.74892000" + }, + { + "id": "102726", + "name": "Zheshart", + "state_id": 1899, + "state_code": "KO", + "country_id": 182, + "country_code": "RU", + "latitude": "62.07314000", + "longitude": "49.57335000" + }, + { + "id": "97642", + "name": "Antropovo", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.39876000", + "longitude": "43.00659000" + }, + { + "id": "97643", + "name": "Antropovskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.16667000", + "longitude": "43.00000000" + }, + { + "id": "97978", + "name": "Bogovarovo", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.97849000", + "longitude": "47.02462000" + }, + { + "id": "98090", + "name": "Buy", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.48067000", + "longitude": "41.53699000" + }, + { + "id": "98093", + "name": "Buyskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50000000", + "longitude": "41.50000000" + }, + { + "id": "98203", + "name": "Chistyye Bory", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.36472000", + "longitude": "41.62778000" + }, + { + "id": "98218", + "name": "Chukhloma", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.75375000", + "longitude": "42.68318000" + }, + { + "id": "98450", + "name": "Galich", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.37884000", + "longitude": "42.34633000" + }, + { + "id": "98451", + "name": "Galichskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.33333000", + "longitude": "42.25000000" + }, + { + "id": "98478", + "name": "Georgiyevskoye", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.73101000", + "longitude": "45.02404000" + }, + { + "id": "98773", + "name": "Kadyy", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.78704000", + "longitude": "43.19029000" + }, + { + "id": "98774", + "name": "Kadyyskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.75000000", + "longitude": "43.25000000" + }, + { + "id": "99140", + "name": "Kologriv", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.82748000", + "longitude": "44.31777000" + }, + { + "id": "99235", + "name": "Kosmynino", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58183000", + "longitude": "40.76434000" + }, + { + "id": "99241", + "name": "Kostroma", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.76647000", + "longitude": "40.92686000" + }, + { + "id": "99242", + "name": "Kostromskoy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.83333000", + "longitude": "41.00000000" + }, + { + "id": "99332", + "name": "Krasnosel’skiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58333000", + "longitude": "41.33333000" + }, + { + "id": "99354", + "name": "Krasnoye-na-Volge", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.51483000", + "longitude": "41.23900000" + }, + { + "id": "99742", + "name": "Makar’yev", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.88501000", + "longitude": "43.80490000" + }, + { + "id": "99785", + "name": "Manturovo", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.32889000", + "longitude": "44.76406000" + }, + { + "id": "99786", + "name": "Manturovskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.25000000", + "longitude": "44.75000000" + }, + { + "id": "100107", + "name": "Nerekhta", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.45881000", + "longitude": "40.57471000" + }, + { + "id": "100108", + "name": "Nerekhtskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.41667000", + "longitude": "40.75000000" + }, + { + "id": "100122", + "name": "Neya", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.29719000", + "longitude": "43.86808000" + }, + { + "id": "100123", + "name": "Neyskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.30000000", + "longitude": "43.90000000" + }, + { + "id": "100499", + "name": "Ostrovskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.66667000", + "longitude": "42.25000000" + }, + { + "id": "100500", + "name": "Ostrovskoye", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.80574000", + "longitude": "42.24332000" + }, + { + "id": "100545", + "name": "Parfen’yevo", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.48396000", + "longitude": "43.40876000" + }, + { + "id": "100546", + "name": "Parfen’yevskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.66667000", + "longitude": "43.50000000" + }, + { + "id": "100564", + "name": "Pavino", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "59.11390000", + "longitude": "46.14142000" + }, + { + "id": "100766", + "name": "Ponazyrevo", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.35784000", + "longitude": "46.31421000" + }, + { + "id": "100767", + "name": "Ponazyrevskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.70000000", + "longitude": "46.31667000" + }, + { + "id": "100915", + "name": "Pyshchug", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.88726000", + "longitude": "45.71341000" + }, + { + "id": "101265", + "name": "Shar’inskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50000000", + "longitude": "45.58333000" + }, + { + "id": "101266", + "name": "Shar’ya", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.36909000", + "longitude": "45.51558000" + }, + { + "id": "101449", + "name": "Soligalich", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "59.07960000", + "longitude": "42.28526000" + }, + { + "id": "101450", + "name": "Soligalichskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "59.00000000", + "longitude": "42.25000000" + }, + { + "id": "101642", + "name": "Sudislavl’", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.88175000", + "longitude": "41.70829000" + }, + { + "id": "101643", + "name": "Sudislavskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.83333000", + "longitude": "41.66667000" + }, + { + "id": "101682", + "name": "Susanino", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.14881000", + "longitude": "41.59483000" + }, + { + "id": "102296", + "name": "Vetluzhskiy", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.39016000", + "longitude": "45.46543000" + }, + { + "id": "102335", + "name": "Vokhma", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.93030000", + "longitude": "46.75859000" + }, + { + "id": "102336", + "name": "Vokhomskiy Rayon", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "58.91667000", + "longitude": "46.58333000" + }, + { + "id": "102345", + "name": "Volgorechensk", + "state_id": 1910, + "state_code": "KOS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.43931000", + "longitude": "41.15553000" + }, + { + "id": "97486", + "name": "Abinsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.86803000", + "longitude": "38.15728000" + }, + { + "id": "97487", + "name": "Abinskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.83402000", + "longitude": "38.27891000" + }, + { + "id": "97490", + "name": "Abrau-Dyurso", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.69973000", + "longitude": "37.60098000" + }, + { + "id": "97503", + "name": "Adler", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.42896000", + "longitude": "39.92391000" + }, + { + "id": "97509", + "name": "Afipskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.90005000", + "longitude": "38.84265000" + }, + { + "id": "97520", + "name": "Agoy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.14660000", + "longitude": "39.03730000" + }, + { + "id": "97521", + "name": "Agronom", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.14021000", + "longitude": "39.19484000" + }, + { + "id": "97529", + "name": "Akhtanizovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.32128000", + "longitude": "37.10071000" + }, + { + "id": "97534", + "name": "Akhtyrskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.85460000", + "longitude": "38.30310000" + }, + { + "id": "97580", + "name": "Alekseyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.77167000", + "longitude": "40.15528000" + }, + { + "id": "97620", + "name": "Anapa", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.89084000", + "longitude": "37.32390000" + }, + { + "id": "97621", + "name": "Anapskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.89671000", + "longitude": "37.38600000" + }, + { + "id": "97623", + "name": "Anastasiyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.21576000", + "longitude": "37.89258000" + }, + { + "id": "97651", + "name": "Apsheronsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.46472000", + "longitude": "39.73417000" + }, + { + "id": "97668", + "name": "Arkhipo-Osipovka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.37194000", + "longitude": "38.52972000" + }, + { + "id": "97673", + "name": "Armavir", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.98920000", + "longitude": "41.12340000" + }, + { + "id": "97708", + "name": "Atamanskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.17730000", + "longitude": "39.63580000" + }, + { + "id": "97736", + "name": "Azovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.79083000", + "longitude": "38.62639000" + }, + { + "id": "97814", + "name": "Baturinskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.79267000", + "longitude": "39.37065000" + }, + { + "id": "97840", + "name": "Belaya Glina", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.07802000", + "longitude": "40.86651000" + }, + { + "id": "97862", + "name": "Belorechensk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.77127000", + "longitude": "39.87879000" + }, + { + "id": "97863", + "name": "Belorechenskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.79923000", + "longitude": "39.72061000" + }, + { + "id": "97872", + "name": "Belozërnyy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.06433000", + "longitude": "38.67901000" + }, + { + "id": "97893", + "name": "Berezanskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.70562000", + "longitude": "39.59324000" + }, + { + "id": "97912", + "name": "Besleneyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.23100000", + "longitude": "40.72500000" + }, + { + "id": "97913", + "name": "Besskorbnaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.64470000", + "longitude": "41.31100000" + }, + { + "id": "97951", + "name": "Blagovetschenskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.05530000", + "longitude": "37.13276000" + }, + { + "id": "98062", + "name": "Bryukhovetskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.80603000", + "longitude": "38.99959000" + }, + { + "id": "98111", + "name": "Chamlykskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.71583000", + "longitude": "40.87861000" + }, + { + "id": "98138", + "name": "Chelbasskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.97924000", + "longitude": "39.37186000" + }, + { + "id": "98173", + "name": "Chernomorskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.85056000", + "longitude": "38.49361000" + }, + { + "id": "98174", + "name": "Chernoyerkovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.43306000", + "longitude": "37.76861000" + }, + { + "id": "98233", + "name": "Dagomys", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.66974000", + "longitude": "39.66863000" + }, + { + "id": "98277", + "name": "Dinskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.21516000", + "longitude": "39.22650000" + }, + { + "id": "98280", + "name": "Divnomorskoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.50170000", + "longitude": "38.13420000" + }, + { + "id": "98283", + "name": "Dmitriyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.65639000", + "longitude": "40.76528000" + }, + { + "id": "98289", + "name": "Dneprovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.62359000", + "longitude": "38.80807000" + }, + { + "id": "98304", + "name": "Dolzhanskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.63369000", + "longitude": "37.80246000" + }, + { + "id": "98360", + "name": "Dvubratskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.23888000", + "longitude": "39.80499000" + }, + { + "id": "98378", + "name": "Dzhiginka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.13300000", + "longitude": "37.33825000" + }, + { + "id": "98379", + "name": "Dzhubga", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.32110000", + "longitude": "38.70730000" + }, + { + "id": "98414", + "name": "Fastovetskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.91889000", + "longitude": "40.15889000" + }, + { + "id": "98466", + "name": "Gayduk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.78489000", + "longitude": "37.70050000" + }, + { + "id": "98474", + "name": "Gelendzhik", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.56220000", + "longitude": "38.08480000" + }, + { + "id": "98491", + "name": "Girey", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.40120000", + "longitude": "40.65870000" + }, + { + "id": "98494", + "name": "Glafirovka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.76378000", + "longitude": "38.40785000" + }, + { + "id": "98502", + "name": "Glubokiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.94673000", + "longitude": "41.01845000" + }, + { + "id": "98510", + "name": "Golubitskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.32566000", + "longitude": "37.27020000" + }, + { + "id": "98533", + "name": "Gornoye Loo", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.71294000", + "longitude": "39.60492000" + }, + { + "id": "98570", + "name": "Goryachiy Klyuch", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.63083000", + "longitude": "39.13000000" + }, + { + "id": "98571", + "name": "Gostagayevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.02284000", + "longitude": "37.50511000" + }, + { + "id": "98592", + "name": "Grivenskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.64730000", + "longitude": "38.17597000" + }, + { + "id": "98605", + "name": "Gubskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.31639000", + "longitude": "40.63583000" + }, + { + "id": "98609", + "name": "Gul’kevichi", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.35383000", + "longitude": "40.69465000" + }, + { + "id": "98649", + "name": "Il’ich", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.42488000", + "longitude": "36.77402000" + }, + { + "id": "98660", + "name": "Il’skiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.84222000", + "longitude": "38.56686000" + }, + { + "id": "98692", + "name": "Irkliyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.85635000", + "longitude": "39.65381000" + }, + { + "id": "98765", + "name": "Kabardinka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.65139000", + "longitude": "37.94278000" + }, + { + "id": "98789", + "name": "Kalininskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.48440000", + "longitude": "38.66221000" + }, + { + "id": "98798", + "name": "Kalnibolotskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.00583000", + "longitude": "40.45682000" + }, + { + "id": "98828", + "name": "Kamyshevatskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.41316000", + "longitude": "37.95632000" + }, + { + "id": "98840", + "name": "Kanelovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.58960000", + "longitude": "39.19440000" + }, + { + "id": "98841", + "name": "Kanevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.08490000", + "longitude": "38.95960000" + }, + { + "id": "98913", + "name": "Kavkazskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.44530000", + "longitude": "40.67650000" + }, + { + "id": "98928", + "name": "Kazanskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.41060000", + "longitude": "40.43610000" + }, + { + "id": "98953", + "name": "Khadyzhensk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.42580000", + "longitude": "39.53620000" + }, + { + "id": "98997", + "name": "Kholmskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.84694000", + "longitude": "38.38500000" + }, + { + "id": "99009", + "name": "Khosta", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.51484000", + "longitude": "39.86825000" + }, + { + "id": "99082", + "name": "Kislyakovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.44170000", + "longitude": "39.67500000" + }, + { + "id": "99086", + "name": "Kiyevskoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.03829000", + "longitude": "37.88829000" + }, + { + "id": "99185", + "name": "Konokovo", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.86160000", + "longitude": "41.32660000" + }, + { + "id": "99191", + "name": "Konstantinovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.83528000", + "longitude": "40.72694000" + }, + { + "id": "99195", + "name": "Kontenko", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.35806000", + "longitude": "36.83222000" + }, + { + "id": "99198", + "name": "Kopanskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.27785000", + "longitude": "38.47955000" + }, + { + "id": "99203", + "name": "Korenovsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.46899000", + "longitude": "39.45136000" + }, + { + "id": "99222", + "name": "Korzhevskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.19414000", + "longitude": "37.71949000" + }, + { + "id": "99251", + "name": "Kovalevskoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.19417000", + "longitude": "40.97611000" + }, + { + "id": "99283", + "name": "Krasnaya Polyana", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.67952000", + "longitude": "40.20403000" + }, + { + "id": "99292", + "name": "Krasnoarmeyskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.36614000", + "longitude": "38.21171000" + }, + { + "id": "99300", + "name": "Krasnodar", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.04484000", + "longitude": "38.97603000" + }, + { + "id": "99351", + "name": "Krasnoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.73730000", + "longitude": "39.56450000" + }, + { + "id": "99399", + "name": "Kropotkin", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.43750000", + "longitude": "40.57556000" + }, + { + "id": "99405", + "name": "Krylovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.31944000", + "longitude": "39.97111000" + }, + { + "id": "99406", + "name": "Krylovskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.33333000", + "longitude": "39.96667000" + }, + { + "id": "99408", + "name": "Krymsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.92934000", + "longitude": "37.99117000" + }, + { + "id": "99409", + "name": "Krymskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.90532000", + "longitude": "37.80526000" + }, + { + "id": "99415", + "name": "Kubanskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.92917000", + "longitude": "40.58056000" + }, + { + "id": "99417", + "name": "Kuchugury", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.40702000", + "longitude": "36.95586000" + }, + { + "id": "99419", + "name": "Kudepsta", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.49547000", + "longitude": "39.89294000" + }, + { + "id": "99460", + "name": "Kurganinsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.88000000", + "longitude": "40.59861000" + }, + { + "id": "99485", + "name": "Kushchëvskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.55990000", + "longitude": "39.63210000" + }, + { + "id": "99530", + "name": "Labinsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.63417000", + "longitude": "40.73556000" + }, + { + "id": "99533", + "name": "Ladozhskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.30902000", + "longitude": "39.93803000" + }, + { + "id": "99549", + "name": "Lazarevskoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.90886000", + "longitude": "39.33137000" + }, + { + "id": "99562", + "name": "Lenina", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.06667000", + "longitude": "39.78333000" + }, + { + "id": "99564", + "name": "Leningradskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.32140000", + "longitude": "39.38770000" + }, + { + "id": "99587", + "name": "Lermontovo", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.30380000", + "longitude": "38.75720000" + }, + { + "id": "99672", + "name": "Lovlinskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.51611000", + "longitude": "40.24000000" + }, + { + "id": "99822", + "name": "Maykopskoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.39361000", + "longitude": "40.76583000" + }, + { + "id": "99845", + "name": "Medvedovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.45151000", + "longitude": "39.02485000" + }, + { + "id": "99901", + "name": "Mikhaylovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.99472000", + "longitude": "40.59639000" + }, + { + "id": "99926", + "name": "Mirskoy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.54390000", + "longitude": "40.39980000" + }, + { + "id": "99981", + "name": "Mostovskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.27503000", + "longitude": "40.64588000" + }, + { + "id": "99982", + "name": "Mostovskoy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.41222000", + "longitude": "40.79361000" + }, + { + "id": "100032", + "name": "Myskhako", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.65917000", + "longitude": "37.76611000" + }, + { + "id": "100081", + "name": "Nebug", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.17170000", + "longitude": "39.00260000" + }, + { + "id": "100083", + "name": "Neftegorsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.36580000", + "longitude": "39.70780000" + }, + { + "id": "100093", + "name": "Nekrasovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.14468000", + "longitude": "39.74868000" + }, + { + "id": "100223", + "name": "Novoalekseyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.81889000", + "longitude": "40.93389000" + }, + { + "id": "100229", + "name": "Novobeysugskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.47195000", + "longitude": "39.88614000" + }, + { + "id": "100237", + "name": "Novoderevyankovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.32312000", + "longitude": "38.74724000" + }, + { + "id": "100238", + "name": "Novodmitriyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.83276000", + "longitude": "38.87847000" + }, + { + "id": "100241", + "name": "Novodzhereliyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.77373000", + "longitude": "38.67227000" + }, + { + "id": "100252", + "name": "Novokorsunskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.64080000", + "longitude": "39.14641000" + }, + { + "id": "100254", + "name": "Novokubansk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.11700000", + "longitude": "41.02670000" + }, + { + "id": "100255", + "name": "Novokubanskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.08798000", + "longitude": "41.04466000" + }, + { + "id": "100260", + "name": "Novolabinskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.10956000", + "longitude": "39.89399000" + }, + { + "id": "100263", + "name": "Novoleushkovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.99560000", + "longitude": "39.99210000" + }, + { + "id": "100265", + "name": "Novomalorossiyskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.63483000", + "longitude": "39.89481000" + }, + { + "id": "100267", + "name": "Novomikhaylovskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.26260000", + "longitude": "38.85850000" + }, + { + "id": "100268", + "name": "Novominskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.31630000", + "longitude": "38.95860000" + }, + { + "id": "100270", + "name": "Novomyshastovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.19909000", + "longitude": "38.58272000" + }, + { + "id": "100282", + "name": "Novoplatnirovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.10650000", + "longitude": "39.41910000" + }, + { + "id": "100286", + "name": "Novopokrovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.95139000", + "longitude": "40.70056000" + }, + { + "id": "100288", + "name": "Novorossiysk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.72439000", + "longitude": "37.76752000" + }, + { + "id": "100289", + "name": "Novorozhdestvenskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.86057000", + "longitude": "39.94968000" + }, + { + "id": "100299", + "name": "Novoshcherbinovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.47669000", + "longitude": "38.64757000" + }, + { + "id": "100314", + "name": "Novotitarovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.23756000", + "longitude": "38.98059000" + }, + { + "id": "100319", + "name": "Novoukrainskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.89420000", + "longitude": "38.04886000" + }, + { + "id": "100320", + "name": "Novoukrainskoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.37833000", + "longitude": "40.52972000" + }, + { + "id": "100327", + "name": "Novovelichkovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.27638000", + "longitude": "38.84165000" + }, + { + "id": "100432", + "name": "Ol’ginka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.20750000", + "longitude": "38.89111000" + }, + { + "id": "100435", + "name": "Ol’ginskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.94610000", + "longitude": "38.54864000" + }, + { + "id": "100483", + "name": "Orël-Izumrud", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.46005000", + "longitude": "39.92377000" + }, + { + "id": "100504", + "name": "Otradnaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.39333000", + "longitude": "41.52056000" + }, + { + "id": "100509", + "name": "Otrado-Kubanskoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.24417000", + "longitude": "40.84083000" + }, + { + "id": "100551", + "name": "Parkovyy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.83306000", + "longitude": "40.14556000" + }, + { + "id": "100562", + "name": "Pashkovskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.02366000", + "longitude": "39.10436000" + }, + { + "id": "100574", + "name": "Pavlovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.13770000", + "longitude": "39.78320000" + }, + { + "id": "100579", + "name": "Pavlovskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.08978000", + "longitude": "39.73150000" + }, + { + "id": "100597", + "name": "Peredovaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.11722000", + "longitude": "41.47556000" + }, + { + "id": "100603", + "name": "Perepravnaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.33660000", + "longitude": "40.78490000" + }, + { + "id": "100610", + "name": "Pereyaslovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.84121000", + "longitude": "39.02379000" + }, + { + "id": "100653", + "name": "Petropavlovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.08189000", + "longitude": "40.45125000" + }, + { + "id": "100662", + "name": "Petrovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.43139000", + "longitude": "37.95500000" + }, + { + "id": "100696", + "name": "Plastunovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.29432000", + "longitude": "39.26505000" + }, + { + "id": "100697", + "name": "Platnirovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.39531000", + "longitude": "39.38420000" + }, + { + "id": "100773", + "name": "Poputnaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.51250000", + "longitude": "41.43920000" + }, + { + "id": "100824", + "name": "Prikubanskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.00150000", + "longitude": "41.17950000" + }, + { + "id": "100835", + "name": "Primorsko-Akhtarsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.04970000", + "longitude": "38.17470000" + }, + { + "id": "100854", + "name": "Prochnookopskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.06660000", + "longitude": "41.11750000" + }, + { + "id": "100877", + "name": "Psebay", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.12340000", + "longitude": "40.81070000" + }, + { + "id": "100879", + "name": "Pshada", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.47000000", + "longitude": "38.39960000" + }, + { + "id": "100880", + "name": "Pshekhskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.69597000", + "longitude": "39.79665000" + }, + { + "id": "100947", + "name": "Rayevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.83571000", + "longitude": "37.55577000" + }, + { + "id": "100979", + "name": "Rodnikovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.76444000", + "longitude": "40.66556000" + }, + { + "id": "100985", + "name": "Rogovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.73117000", + "longitude": "38.73960000" + }, + { + "id": "101042", + "name": "Ryazanskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.95528000", + "longitude": "39.58894000" + }, + { + "id": "101115", + "name": "Saratovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.70752000", + "longitude": "39.22156000" + }, + { + "id": "101223", + "name": "Severskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.85407000", + "longitude": "38.67686000" + }, + { + "id": "101229", + "name": "Shabel’skoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.85275000", + "longitude": "38.47278000" + }, + { + "id": "101287", + "name": "Shedok", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.21790000", + "longitude": "40.84870000" + }, + { + "id": "101303", + "name": "Shepsi", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.03550000", + "longitude": "39.14740000" + }, + { + "id": "101328", + "name": "Shirochanka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.64968000", + "longitude": "38.39782000" + }, + { + "id": "101335", + "name": "Shkurinskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.58580000", + "longitude": "39.35990000" + }, + { + "id": "101405", + "name": "Slavyansk-na-Kubani", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.25580000", + "longitude": "38.12560000" + }, + { + "id": "101406", + "name": "Slavyansky rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.41667000", + "longitude": "37.75000000" + }, + { + "id": "101416", + "name": "Smolenskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.78636000", + "longitude": "38.80333000" + }, + { + "id": "101429", + "name": "Sochi", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.59917000", + "longitude": "39.72569000" + }, + { + "id": "101439", + "name": "Sokolovskoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.25833000", + "longitude": "40.67972000" + }, + { + "id": "101506", + "name": "Sovetskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.77694000", + "longitude": "41.17222000" + }, + { + "id": "101519", + "name": "Sovkhoznyy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.29462000", + "longitude": "38.11384000" + }, + { + "id": "101540", + "name": "Spokoynaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.24680000", + "longitude": "41.40150000" + }, + { + "id": "101564", + "name": "Staraya Stanitsa", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.00980000", + "longitude": "41.15120000" + }, + { + "id": "101576", + "name": "Staroderevyankovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.12760000", + "longitude": "38.96740000" + }, + { + "id": "101580", + "name": "Starodzhereliyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.47599000", + "longitude": "38.29680000" + }, + { + "id": "101582", + "name": "Starokorsunskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.05727000", + "longitude": "39.31611000" + }, + { + "id": "101585", + "name": "Staroleushkovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.98666000", + "longitude": "39.75987000" + }, + { + "id": "101586", + "name": "Starominskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.53000000", + "longitude": "39.04972000" + }, + { + "id": "101587", + "name": "Staromyshastovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.34329000", + "longitude": "39.07608000" + }, + { + "id": "101588", + "name": "Staronizhestebliyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.38315000", + "longitude": "38.44304000" + }, + { + "id": "101594", + "name": "Staroshcherbinovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.63110000", + "longitude": "38.67420000" + }, + { + "id": "101597", + "name": "Starotitarovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.21938000", + "longitude": "37.15476000" + }, + { + "id": "101599", + "name": "Starovelichkovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.42884000", + "longitude": "38.73261000" + }, + { + "id": "101626", + "name": "Strelka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.20633000", + "longitude": "37.28650000" + }, + { + "id": "101655", + "name": "Sukko", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.79945000", + "longitude": "37.42145000" + }, + { + "id": "101760", + "name": "Taman’", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.21170000", + "longitude": "36.71609000" + }, + { + "id": "101808", + "name": "Tbilisskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.36333000", + "longitude": "40.19000000" + }, + { + "id": "101814", + "name": "Temirgoyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.11414000", + "longitude": "40.28027000" + }, + { + "id": "101816", + "name": "Temizhbekskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.44556000", + "longitude": "40.84500000" + }, + { + "id": "101820", + "name": "Temruksky rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.25000000", + "longitude": "37.25000000" + }, + { + "id": "101821", + "name": "Temryuk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.27055000", + "longitude": "37.38716000" + }, + { + "id": "101832", + "name": "Ternevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.85130000", + "longitude": "40.41250000" + }, + { + "id": "101851", + "name": "Tikhoretsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.85472000", + "longitude": "40.12528000" + }, + { + "id": "101852", + "name": "Tikhoretskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.73846000", + "longitude": "40.27549000" + }, + { + "id": "101858", + "name": "Timashëvsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.61694000", + "longitude": "38.94528000" + }, + { + "id": "101915", + "name": "Troitskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.13493000", + "longitude": "38.12544000" + }, + { + "id": "101932", + "name": "Trudobelikovskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.26853000", + "longitude": "38.15376000" + }, + { + "id": "101946", + "name": "Tsibanobalka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.98034000", + "longitude": "37.34384000" + }, + { + "id": "101957", + "name": "Tuapse", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.10530000", + "longitude": "39.08020000" + }, + { + "id": "101958", + "name": "Tuapsinskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.25000000", + "longitude": "39.08333000" + }, + { + "id": "102023", + "name": "Udobnaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.19320000", + "longitude": "41.55290000" + }, + { + "id": "102065", + "name": "Upornaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.39140000", + "longitude": "41.01960000" + }, + { + "id": "102103", + "name": "Uspenskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.76448000", + "longitude": "41.06696000" + }, + { + "id": "102104", + "name": "Uspenskoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.83110000", + "longitude": "41.39270000" + }, + { + "id": "102135", + "name": "Ust’-Labinsk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.21077000", + "longitude": "39.68914000" + }, + { + "id": "102187", + "name": "Vardane", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.73179000", + "longitude": "39.55428000" + }, + { + "id": "102188", + "name": "Varenikovskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.12085000", + "longitude": "37.64171000" + }, + { + "id": "102202", + "name": "Vasyurinskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.11809000", + "longitude": "39.42399000" + }, + { + "id": "102219", + "name": "Velikovechnoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.93402000", + "longitude": "39.75499000" + }, + { + "id": "102225", + "name": "Ventsy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.37639000", + "longitude": "40.83583000" + }, + { + "id": "102236", + "name": "Verkhnebakanskiy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.84917000", + "longitude": "37.65722000" + }, + { + "id": "102313", + "name": "Vinogradnyy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.05610000", + "longitude": "37.32125000" + }, + { + "id": "102322", + "name": "Vityazevo", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.00130000", + "longitude": "37.28211000" + }, + { + "id": "102328", + "name": "Vladimirskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.54550000", + "longitude": "40.79330000" + }, + { + "id": "102382", + "name": "Vorontsovka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.65290000", + "longitude": "38.07870000" + }, + { + "id": "102408", + "name": "Voznesenskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.55270000", + "longitude": "41.03180000" + }, + { + "id": "102436", + "name": "Vyselki", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.58128000", + "longitude": "39.66409000" + }, + { + "id": "102437", + "name": "Vyselkovskiy Rayon", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.66667000", + "longitude": "39.75000000" + }, + { + "id": "102439", + "name": "Vyshestebliyevskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.19611000", + "longitude": "37.01806000" + }, + { + "id": "102450", + "name": "Vysokoye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.46304000", + "longitude": "39.96701000" + }, + { + "id": "102500", + "name": "Yaroslavskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.61056000", + "longitude": "40.46417000" + }, + { + "id": "102507", + "name": "Yasenskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.35920000", + "longitude": "38.26900000" + }, + { + "id": "102542", + "name": "Yelizavetinskaya", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.04616000", + "longitude": "38.79491000" + }, + { + "id": "102579", + "name": "Yeysk", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.70550000", + "longitude": "38.27390000" + }, + { + "id": "102580", + "name": "Yeyskoye Ukrepleniye", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "46.70630000", + "longitude": "38.61210000" + }, + { + "id": "102600", + "name": "Yurovka", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.11470000", + "longitude": "37.41882000" + }, + { + "id": "102620", + "name": "Yuzhnyy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.00250000", + "longitude": "40.47472000" + }, + { + "id": "102670", + "name": "Zavetnyy", + "state_id": 1891, + "state_code": "KDA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.93160000", + "longitude": "41.13730000" + }, + { + "id": "97481", + "name": "Aban", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.67870000", + "longitude": "96.06580000" + }, + { + "id": "97482", + "name": "Abanskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83333000", + "longitude": "96.00000000" + }, + { + "id": "97495", + "name": "Achinsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.26940000", + "longitude": "90.49930000" + }, + { + "id": "97496", + "name": "Achinskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "90.50000000" + }, + { + "id": "97517", + "name": "Aginskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25860000", + "longitude": "94.90790000" + }, + { + "id": "97768", + "name": "Balakhta", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.38425000", + "longitude": "91.61872000" + }, + { + "id": "97769", + "name": "Balakhtinskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50000000", + "longitude": "91.50000000" + }, + { + "id": "97825", + "name": "Baykit", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.67694000", + "longitude": "96.37917000" + }, + { + "id": "97904", + "name": "Berëzovka", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03044000", + "longitude": "93.11164000" + }, + { + "id": "97896", + "name": "Berezovskiy rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03446000", + "longitude": "93.13866000" + }, + { + "id": "97934", + "name": "Birilyusskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.25000000", + "longitude": "90.75000000" + }, + { + "id": "97976", + "name": "Bogotol", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.20778000", + "longitude": "89.53417000" + }, + { + "id": "97977", + "name": "Bogotol’skiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "89.75000000" + }, + { + "id": "97981", + "name": "Boguchanskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50000000", + "longitude": "97.50000000" + }, + { + "id": "97982", + "name": "Boguchany", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.38139000", + "longitude": "97.45306000" + }, + { + "id": "98004", + "name": "Bol’shemurtinskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "93.00000000" + }, + { + "id": "98007", + "name": "Bol’sheuluyskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66667000", + "longitude": "90.75000000" + }, + { + "id": "98020", + "name": "Bor", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.60111000", + "longitude": "90.01806000" + }, + { + "id": "98030", + "name": "Borodino", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.90610000", + "longitude": "94.90790000" + }, + { + "id": "98222", + "name": "Chunoyar", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.44830000", + "longitude": "97.32860000" + }, + { + "id": "98275", + "name": "Dikson", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "73.50819000", + "longitude": "80.52918000" + }, + { + "id": "98279", + "name": "Divnogorsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.95810000", + "longitude": "92.37260000" + }, + { + "id": "98334", + "name": "Dubinino", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61917000", + "longitude": "89.09111000" + }, + { + "id": "98347", + "name": "Dudinka", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "69.40583000", + "longitude": "86.17778000" + }, + { + "id": "98370", + "name": "Dzerzhinskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83444000", + "longitude": "95.22833000" + }, + { + "id": "98407", + "name": "Evenkiyskiy District", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "65.00000000", + "longitude": "98.00000000" + }, + { + "id": "98426", + "name": "Filimonovo", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.20111000", + "longitude": "95.46111000" + }, + { + "id": "98628", + "name": "Idrinskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50000000", + "longitude": "92.50000000" + }, + { + "id": "98629", + "name": "Idrinskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.37083000", + "longitude": "92.13583000" + }, + { + "id": "98631", + "name": "Igarka", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "67.46550000", + "longitude": "86.60270000" + }, + { + "id": "98642", + "name": "Ilanskiy", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.23250000", + "longitude": "96.06520000" + }, + { + "id": "98643", + "name": "Ilanskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "96.08333000" + }, + { + "id": "98650", + "name": "Il’ichevo", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.27889000", + "longitude": "91.84028000" + }, + { + "id": "98687", + "name": "Irbeyskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.41667000", + "longitude": "96.00000000" + }, + { + "id": "98688", + "name": "Irbeyskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63960000", + "longitude": "95.45150000" + }, + { + "id": "98693", + "name": "Irsha", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.92730000", + "longitude": "94.79990000" + }, + { + "id": "98844", + "name": "Kansk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.20167000", + "longitude": "95.71750000" + }, + { + "id": "98845", + "name": "Kanskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "95.25000000" + }, + { + "id": "98871", + "name": "Karatuzskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.60722000", + "longitude": "92.86667000" + }, + { + "id": "98920", + "name": "Kayyerkan", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "69.37861000", + "longitude": "87.74389000" + }, + { + "id": "98922", + "name": "Kazachinskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.66667000", + "longitude": "93.41667000" + }, + { + "id": "98923", + "name": "Kazachinskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.70040000", + "longitude": "93.28090000" + }, + { + "id": "98936", + "name": "Kedrovyy", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.28232000", + "longitude": "91.53760000" + }, + { + "id": "98972", + "name": "Khatanga", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "71.98002000", + "longitude": "102.47111000" + }, + { + "id": "99127", + "name": "Kodinsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.60629000", + "longitude": "99.17398000" + }, + { + "id": "99230", + "name": "Koshurnikovo", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.16667000", + "longitude": "93.30000000" + }, + { + "id": "99321", + "name": "Krasnokamensk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33389000", + "longitude": "93.25944000" + }, + { + "id": "99336", + "name": "Krasnoturansk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.31861000", + "longitude": "91.56389000" + }, + { + "id": "99343", + "name": "Krasnoyarsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.01839000", + "longitude": "92.86717000" + }, + { + "id": "99452", + "name": "Kuragino", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.88785000", + "longitude": "92.68152000" + }, + { + "id": "99604", + "name": "Lesosibirsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.23583000", + "longitude": "92.48278000" + }, + { + "id": "99783", + "name": "Manskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.41667000", + "longitude": "93.66667000" + }, + { + "id": "99788", + "name": "Manzya", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.49222000", + "longitude": "96.26167000" + }, + { + "id": "99918", + "name": "Minusinsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.71028000", + "longitude": "91.68750000" + }, + { + "id": "99919", + "name": "Minusinskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.75000000", + "longitude": "92.00000000" + }, + { + "id": "99983", + "name": "Motygino", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.18401000", + "longitude": "94.69339000" + }, + { + "id": "100075", + "name": "Nazarovo", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.01040000", + "longitude": "90.40110000" + }, + { + "id": "100076", + "name": "Nazarovskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "90.62500000" + }, + { + "id": "100153", + "name": "Nizhneingashskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "97.00000000" + }, + { + "id": "100167", + "name": "Nizhniy Ingash", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.20030000", + "longitude": "96.53730000" + }, + { + "id": "100185", + "name": "Nizhnyaya Poyma", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16430000", + "longitude": "97.20650000" + }, + { + "id": "100198", + "name": "Norilsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "69.35350000", + "longitude": "88.20270000" + }, + { + "id": "100230", + "name": "Novobirilyussy", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.95260000", + "longitude": "90.68070000" + }, + { + "id": "100236", + "name": "Novochernorechenskiy", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.26658000", + "longitude": "91.09234000" + }, + { + "id": "100513", + "name": "Ovsyanka", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.95830000", + "longitude": "92.57200000" + }, + { + "id": "100556", + "name": "Partizanskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "94.16667000" + }, + { + "id": "100557", + "name": "Partizanskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.49720000", + "longitude": "94.39220000" + }, + { + "id": "100684", + "name": "Pirovskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.63012000", + "longitude": "92.26373000" + }, + { + "id": "100808", + "name": "Predivinsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.06310000", + "longitude": "93.43740000" + }, + { + "id": "100945", + "name": "Rassvet", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.99900000", + "longitude": "91.47240000" + }, + { + "id": "100949", + "name": "Razdolinsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.42111000", + "longitude": "94.66583000" + }, + { + "id": "101140", + "name": "Sayansk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.15000000", + "longitude": "91.88500000" + }, + { + "id": "101141", + "name": "Sayanskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75000000", + "longitude": "95.00000000" + }, + { + "id": "101213", + "name": "Severo-Yeniseyskiy", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.37552000", + "longitude": "93.03017000" + }, + { + "id": "101214", + "name": "Severo-Yeniseyskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.00000000", + "longitude": "93.25000000" + }, + { + "id": "101247", + "name": "Shalinskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71940000", + "longitude": "93.75890000" + }, + { + "id": "101263", + "name": "Sharypovo", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.54028000", + "longitude": "89.20083000" + }, + { + "id": "101264", + "name": "Sharypovskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50000000", + "longitude": "89.25000000" + }, + { + "id": "101356", + "name": "Shushenskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41667000", + "longitude": "91.50000000" + }, + { + "id": "101357", + "name": "Shushenskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.32500000", + "longitude": "91.93556000" + }, + { + "id": "101425", + "name": "Snezhnogorsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "68.09306000", + "longitude": "87.74000000" + }, + { + "id": "101457", + "name": "Solnechnyy", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11583000", + "longitude": "92.92528000" + }, + { + "id": "101494", + "name": "Sosnovoborsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.12170000", + "longitude": "93.33850000" + }, + { + "id": "101627", + "name": "Strelka", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.07278000", + "longitude": "93.03444000" + }, + { + "id": "101652", + "name": "Sukhobuzimskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50000000", + "longitude": "93.27278000" + }, + { + "id": "101702", + "name": "Svetlogorsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "66.93762000", + "longitude": "88.35265000" + }, + { + "id": "101754", + "name": "Talnakh", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "69.48650000", + "longitude": "88.39720000" + }, + { + "id": "101767", + "name": "Tanzybey", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.13265000", + "longitude": "92.94335000" + }, + { + "id": "101784", + "name": "Taseyevo", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "57.21457000", + "longitude": "94.89393000" + }, + { + "id": "101804", + "name": "Taymyrsky Dolgano-Nenetsky District", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "72.00000000", + "longitude": "95.00000000" + }, + { + "id": "101846", + "name": "Teya", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.37202000", + "longitude": "92.62956000" + }, + { + "id": "101861", + "name": "Tinskoy", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.15130000", + "longitude": "96.91730000" + }, + { + "id": "101972", + "name": "Tura", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "64.27769000", + "longitude": "100.21849000" + }, + { + "id": "101982", + "name": "Turukhansk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "65.79479000", + "longitude": "87.95006000" + }, + { + "id": "102001", + "name": "Tyukhtet", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.53939000", + "longitude": "89.31221000" + }, + { + "id": "102069", + "name": "Ural", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.90520000", + "longitude": "94.75370000" + }, + { + "id": "102160", + "name": "Uyar", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.81180000", + "longitude": "94.32470000" + }, + { + "id": "102161", + "name": "Uyarskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "94.25000000" + }, + { + "id": "102165", + "name": "Uzhur", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31246000", + "longitude": "89.83301000" + }, + { + "id": "102185", + "name": "Vanavara", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.34679000", + "longitude": "102.28434000" + }, + { + "id": "102555", + "name": "Yemel’yanovo", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16776000", + "longitude": "92.67539000" + }, + { + "id": "102556", + "name": "Yemel’yanovskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41667000", + "longitude": "92.75000000" + }, + { + "id": "102560", + "name": "Yeniseysk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.44937000", + "longitude": "92.17968000" + }, + { + "id": "102561", + "name": "Yeniseyskiy Rayon", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.00000000", + "longitude": "89.00000000" + }, + { + "id": "102564", + "name": "Yermakovskoye", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.27545000", + "longitude": "92.40021000" + }, + { + "id": "102703", + "name": "Zelënyy Bor", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.62178000", + "longitude": "91.61528000" + }, + { + "id": "102696", + "name": "Zelenogorsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11240000", + "longitude": "94.59850000" + }, + { + "id": "102721", + "name": "Zheleznogorsk", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25111000", + "longitude": "93.53194000" + }, + { + "id": "102786", + "name": "Zykovo", + "state_id": 1840, + "state_code": "KYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.95503000", + "longitude": "93.16093000" + }, + { + "id": "97875", + "name": "Belozërskoye", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.82139000", + "longitude": "65.58417000" + }, + { + "id": "98236", + "name": "Dalmatovo", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "56.26000000", + "longitude": "62.93620000" + }, + { + "id": "98504", + "name": "Glyadyanskoye", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "54.90750000", + "longitude": "65.08833000" + }, + { + "id": "98639", + "name": "Ikovka", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.60889000", + "longitude": "64.93750000" + }, + { + "id": "98908", + "name": "Kataysk", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "56.28900000", + "longitude": "62.58410000" + }, + { + "id": "98945", + "name": "Ketovo", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.35500000", + "longitude": "65.32583000" + }, + { + "id": "99371", + "name": "Krasnyy Oktyabr’", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65667000", + "longitude": "64.81333000" + }, + { + "id": "99459", + "name": "Kurgan", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.45000000", + "longitude": "65.33333000" + }, + { + "id": "99477", + "name": "Kurtamysh", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91028000", + "longitude": "64.43194000" + }, + { + "id": "99557", + "name": "Lebyazh’ye", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.26889000", + "longitude": "66.49472000" + }, + { + "id": "99558", + "name": "Lebyazh’yevskiy Rayon", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "66.50000000" + }, + { + "id": "99592", + "name": "Lesnikovo", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.28222000", + "longitude": "65.31750000" + }, + { + "id": "99748", + "name": "Makushino", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.21028000", + "longitude": "67.24417000" + }, + { + "id": "99929", + "name": "Mishkino", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33889000", + "longitude": "63.91750000" + }, + { + "id": "99944", + "name": "Mokrousovo", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.81028000", + "longitude": "66.76528000" + }, + { + "id": "99945", + "name": "Mokrousovskiy Rayon", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "67.00000000" + }, + { + "id": "100666", + "name": "Petukhovo", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.06917000", + "longitude": "67.90194000" + }, + { + "id": "100758", + "name": "Polovinnoye", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "54.79139000", + "longitude": "65.98639000" + }, + { + "id": "100870", + "name": "Prosvet", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.57028000", + "longitude": "65.08250000" + }, + { + "id": "101067", + "name": "Safakulevo", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "54.99010000", + "longitude": "62.54420000" + }, + { + "id": "101068", + "name": "Safakulevskiy Rayon", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "62.50000000" + }, + { + "id": "101233", + "name": "Shadrinsk", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08520000", + "longitude": "63.63350000" + }, + { + "id": "101270", + "name": "Shatrovo", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "56.51970000", + "longitude": "64.63200000" + }, + { + "id": "101349", + "name": "Shumikha", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.22611000", + "longitude": "63.29611000" + }, + { + "id": "101351", + "name": "Shumikhinskiy Rayon", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25000000", + "longitude": "63.25000000" + }, + { + "id": "101939", + "name": "Tselinnoye", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50111000", + "longitude": "63.67361000" + }, + { + "id": "102189", + "name": "Vargashi", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.35556000", + "longitude": "65.84667000" + }, + { + "id": "102190", + "name": "Vargashinskiy Rayon", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "65.91667000" + }, + { + "id": "102418", + "name": "Vvedenskoye", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.47426000", + "longitude": "65.08449000" + }, + { + "id": "102594", + "name": "Yurgamysh", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "55.37454000", + "longitude": "64.46222000" + }, + { + "id": "102782", + "name": "Zverinogolovskoye", + "state_id": 1915, + "state_code": "KGN", + "country_id": 182, + "country_code": "RU", + "latitude": "54.45397000", + "longitude": "64.85242000" + }, + { + "id": "97839", + "name": "Belaya", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.05444000", + "longitude": "35.71611000" + }, + { + "id": "98147", + "name": "Cheremisinovo", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.88550000", + "longitude": "37.26460000" + }, + { + "id": "98148", + "name": "Cheremisinovskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.91667000", + "longitude": "37.16667000" + }, + { + "id": "98168", + "name": "Chernitsyno", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50739000", + "longitude": "36.05101000" + }, + { + "id": "98415", + "name": "Fatezh", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08910000", + "longitude": "35.86320000" + }, + { + "id": "98416", + "name": "Fatezhskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "52.00000000", + "longitude": "35.75000000" + }, + { + "id": "98503", + "name": "Glushkovo", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.33917000", + "longitude": "34.63278000" + }, + { + "id": "98565", + "name": "Gorshechenskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "38.00000000" + }, + { + "id": "98566", + "name": "Gorshechnoye", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.52440000", + "longitude": "38.03650000" + }, + { + "id": "98727", + "name": "Ivanino", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.64340000", + "longitude": "35.57690000" + }, + { + "id": "98903", + "name": "Kastorenskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.75000000", + "longitude": "38.16667000" + }, + { + "id": "98904", + "name": "Kastornoye", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.83340000", + "longitude": "38.13020000" + }, + { + "id": "99001", + "name": "Khomutovka", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.92070000", + "longitude": "34.56190000" + }, + { + "id": "99068", + "name": "Kirovskiy", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41667000", + "longitude": "36.66667000" + }, + { + "id": "99196", + "name": "Konyshevka", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.84180000", + "longitude": "35.29410000" + }, + { + "id": "99204", + "name": "Korenëvo", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41190000", + "longitude": "34.90800000" + }, + { + "id": "99410", + "name": "Kshenskiy", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.84083000", + "longitude": "37.71361000" + }, + { + "id": "99457", + "name": "Kurchatov", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.66010000", + "longitude": "35.65210000" + }, + { + "id": "99474", + "name": "Kursk", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.73733000", + "longitude": "36.18735000" + }, + { + "id": "99476", + "name": "Kurskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.75000000", + "longitude": "36.16667000" + }, + { + "id": "99726", + "name": "L’govskiy", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.63069000", + "longitude": "35.27750000" + }, + { + "id": "99727", + "name": "L’govskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.58333000", + "longitude": "35.25000000" + }, + { + "id": "99784", + "name": "Manturovo", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.45470000", + "longitude": "37.12820000" + }, + { + "id": "99846", + "name": "Medvenskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41667000", + "longitude": "36.11667000" + }, + { + "id": "99896", + "name": "Mikhaylovka", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "52.23170000", + "longitude": "35.37670000" + }, + { + "id": "100389", + "name": "Oboyan’", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.20981000", + "longitude": "36.27919000" + }, + { + "id": "100388", + "name": "Oboyanskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.25000000", + "longitude": "36.16667000" + }, + { + "id": "100427", + "name": "Olym", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.67980000", + "longitude": "38.17580000" + }, + { + "id": "100613", + "name": "Pervoavgustovskiy", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "52.22640000", + "longitude": "35.05520000" + }, + { + "id": "100770", + "name": "Ponyri Vtoryye", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "52.27994000", + "longitude": "36.22461000" + }, + { + "id": "100841", + "name": "Pristen’", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.23551000", + "longitude": "36.69594000" + }, + { + "id": "100840", + "name": "Pristenskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.25000000", + "longitude": "36.75000000" + }, + { + "id": "100875", + "name": "Pryamitsyno", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.65610000", + "longitude": "35.93140000" + }, + { + "id": "101055", + "name": "Ryl’sk", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.56550000", + "longitude": "34.68220000" + }, + { + "id": "101278", + "name": "Shchigry", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.87555000", + "longitude": "36.90432000" + }, + { + "id": "101461", + "name": "Solntsevo", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41853000", + "longitude": "36.74990000" + }, + { + "id": "101462", + "name": "Solntsevskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "36.75000000" + }, + { + "id": "101515", + "name": "Sovetskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.83333000", + "longitude": "37.58333000" + }, + { + "id": "101647", + "name": "Sudzha", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.19760000", + "longitude": "35.27260000" + }, + { + "id": "101857", + "name": "Tim", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.62222000", + "longitude": "37.12444000" + }, + { + "id": "102383", + "name": "Voroshnëvo", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "51.65278000", + "longitude": "36.01722000" + }, + { + "id": "102720", + "name": "Zheleznogorsk", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "52.33100000", + "longitude": "35.37110000" + }, + { + "id": "102765", + "name": "Zolotukhino", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08420000", + "longitude": "36.37777000" + }, + { + "id": "102766", + "name": "Zolotukhinskiy Rayon", + "state_id": 1855, + "state_code": "KRS", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08333000", + "longitude": "36.50000000" + }, + { + "id": "97512", + "name": "Agalatovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.21950000", + "longitude": "30.27388000" + }, + { + "id": "97528", + "name": "Akademicheskoe", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.01375000", + "longitude": "30.39471000" + }, + { + "id": "97635", + "name": "Annino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.77056000", + "longitude": "30.05611000" + }, + { + "id": "97835", + "name": "Begunitsy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.58552000", + "longitude": "29.31757000" + }, + { + "id": "97986", + "name": "Boksitogorsk", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.47405000", + "longitude": "33.84853000" + }, + { + "id": "97987", + "name": "Boksitogorskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.50000000", + "longitude": "34.00000000" + }, + { + "id": "97999", + "name": "Bol’shaya Izhora", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.93796000", + "longitude": "29.57721000" + }, + { + "id": "98027", + "name": "Borisova Griva", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.08936000", + "longitude": "30.97727000" + }, + { + "id": "98064", + "name": "Budogoshch’", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.28158000", + "longitude": "32.47074000" + }, + { + "id": "98066", + "name": "Bugry", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.07121000", + "longitude": "30.39225000" + }, + { + "id": "98165", + "name": "Chernaya Rechka", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.98594000", + "longitude": "30.30338000" + }, + { + "id": "98332", + "name": "Druzhnaya Gorka", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.28018000", + "longitude": "30.12709000" + }, + { + "id": "98444", + "name": "Fëdorovskoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.66306000", + "longitude": "30.53222000" + }, + { + "id": "98428", + "name": "Finlyandskiy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.96824000", + "longitude": "30.36415000" + }, + { + "id": "98434", + "name": "Fornosovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.56889000", + "longitude": "30.55444000" + }, + { + "id": "98457", + "name": "Garbolovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.34127000", + "longitude": "30.49551000" + }, + { + "id": "98460", + "name": "Gatchina", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.57639000", + "longitude": "30.12833000" + }, + { + "id": "98497", + "name": "Glebychevo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.43868000", + "longitude": "28.71826000" + }, + { + "id": "98519", + "name": "Gorbunki", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.81307000", + "longitude": "29.98478000" + }, + { + "id": "98568", + "name": "Gorskaya", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.04640000", + "longitude": "29.97137000" + }, + { + "id": "98572", + "name": "Gostilitsy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.74832000", + "longitude": "29.62205000" + }, + { + "id": "98651", + "name": "Il’ichëvo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.26808000", + "longitude": "29.75230000" + }, + { + "id": "98663", + "name": "Imeni Morozova", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.97572000", + "longitude": "31.03762000" + }, + { + "id": "98667", + "name": "Imeni Sverdlova", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.79611000", + "longitude": "30.66583000" + }, + { + "id": "98716", + "name": "Issad", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.06743000", + "longitude": "32.34331000" + }, + { + "id": "98726", + "name": "Ivangorod", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.37155000", + "longitude": "28.21625000" + }, + { + "id": "98790", + "name": "Kalininskiy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.99675000", + "longitude": "30.38990000" + }, + { + "id": "98813", + "name": "Kamenka", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.44639000", + "longitude": "29.08290000" + }, + { + "id": "98815", + "name": "Kamennogorsk", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.95451000", + "longitude": "29.13391000" + }, + { + "id": "99022", + "name": "Khvalovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.94774000", + "longitude": "32.73723000" + }, + { + "id": "99036", + "name": "Kikerino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.46466000", + "longitude": "29.62729000" + }, + { + "id": "99050", + "name": "Kingisepp", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.37331000", + "longitude": "28.61343000" + }, + { + "id": "99051", + "name": "Kingiseppskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.50000000", + "longitude": "28.50000000" + }, + { + "id": "99052", + "name": "Kipen’", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.67407000", + "longitude": "29.84977000" + }, + { + "id": "99057", + "name": "Kirishi", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.44712000", + "longitude": "32.02049000" + }, + { + "id": "99065", + "name": "Kirovsk", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.88101000", + "longitude": "30.99507000" + }, + { + "id": "99071", + "name": "Kirovskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.83333000", + "longitude": "31.00000000" + }, + { + "id": "99117", + "name": "Kobrinskoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.42250000", + "longitude": "30.12389000" + }, + { + "id": "99137", + "name": "Kolchanovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.01647000", + "longitude": "32.58837000" + }, + { + "id": "99150", + "name": "Koltushi", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.92969000", + "longitude": "30.64465000" + }, + { + "id": "99164", + "name": "Kommunar", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.62056000", + "longitude": "30.39000000" + }, + { + "id": "99200", + "name": "Kopor’ye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.71067000", + "longitude": "29.03488000" + }, + { + "id": "99211", + "name": "Korobitsyno", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.51523000", + "longitude": "29.72437000" + }, + { + "id": "99360", + "name": "Krasnyy Bor", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.68194000", + "longitude": "30.66806000" + }, + { + "id": "99390", + "name": "Krestovskiy ostrov", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.97091000", + "longitude": "30.25789000" + }, + { + "id": "99469", + "name": "Kurortnyy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.16562000", + "longitude": "29.90800000" + }, + { + "id": "99498", + "name": "Kuyvozi", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.31931000", + "longitude": "30.43631000" + }, + { + "id": "99507", + "name": "Kuznechnoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "61.11530000", + "longitude": "29.87535000" + }, + { + "id": "99555", + "name": "Lebyazh’ye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.96124000", + "longitude": "29.41487000" + }, + { + "id": "99576", + "name": "Leninskoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.22021000", + "longitude": "29.84711000" + }, + { + "id": "99591", + "name": "Leskolovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.26341000", + "longitude": "30.45462000" + }, + { + "id": "99603", + "name": "Lesogorskiy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "61.04549000", + "longitude": "28.92938000" + }, + { + "id": "99648", + "name": "Lodeynopol’skiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.50000000", + "longitude": "33.75000000" + }, + { + "id": "99649", + "name": "Lodeynoye Pole", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.72600000", + "longitude": "33.55306000" + }, + { + "id": "99658", + "name": "Lomonosovskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.89721000", + "longitude": "29.73994000" + }, + { + "id": "99680", + "name": "Luga", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "58.73722000", + "longitude": "29.84528000" + }, + { + "id": "99693", + "name": "Luppolovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.15402000", + "longitude": "30.28034000" + }, + { + "id": "99697", + "name": "Luzhskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "58.75000000", + "longitude": "29.75000000" + }, + { + "id": "99712", + "name": "Lyuban’", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.35000000", + "longitude": "31.21667000" + }, + { + "id": "99770", + "name": "Maloye Verevo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.61361000", + "longitude": "30.17278000" + }, + { + "id": "99798", + "name": "Mariyenburg", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.57139000", + "longitude": "30.06472000" + }, + { + "id": "99885", + "name": "Mga", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.75000000", + "longitude": "31.06667000" + }, + { + "id": "99893", + "name": "Michurinskoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.56420000", + "longitude": "29.86232000" + }, + { + "id": "99989", + "name": "Mshinskaya", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.01500000", + "longitude": "29.94333000" + }, + { + "id": "100008", + "name": "Murino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.04796000", + "longitude": "30.45204000" + }, + { + "id": "100146", + "name": "Nikol’skoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.70056000", + "longitude": "30.78472000" + }, + { + "id": "100204", + "name": "Novaya Ladoga", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.10246000", + "longitude": "32.30191000" + }, + { + "id": "100332", + "name": "Novoye Devyatkino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.06364000", + "longitude": "30.48328000" + }, + { + "id": "100372", + "name": "Nurma", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.55000000", + "longitude": "31.01667000" + }, + { + "id": "100434", + "name": "Ol’gino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.83702000", + "longitude": "29.92266000" + }, + { + "id": "100485", + "name": "Osel’ki", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.20503000", + "longitude": "30.49667000" + }, + { + "id": "100506", + "name": "Otradnoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.77750000", + "longitude": "30.81806000" + }, + { + "id": "100553", + "name": "Parnas", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.06964000", + "longitude": "30.34870000" + }, + { + "id": "100560", + "name": "Pasha", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.39546000", + "longitude": "33.04308000" + }, + { + "id": "100569", + "name": "Pavlovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.80861000", + "longitude": "30.89667000" + }, + { + "id": "100625", + "name": "Pervomayskoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.35922000", + "longitude": "29.74240000" + }, + { + "id": "100671", + "name": "Pikalëvo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.51833000", + "longitude": "34.16639000" + }, + { + "id": "100729", + "name": "Podporozh’ye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.91124000", + "longitude": "34.17064000" + }, + { + "id": "100728", + "name": "Podporozhskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "61.00000000", + "longitude": "34.50000000" + }, + { + "id": "100826", + "name": "Priladozhskiy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.85000000", + "longitude": "31.48333000" + }, + { + "id": "100831", + "name": "Primorsk", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.36593000", + "longitude": "28.60737000" + }, + { + "id": "100839", + "name": "Priozërsk", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "61.03928000", + "longitude": "30.12907000" + }, + { + "id": "100838", + "name": "Priozersky", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "61.03901000", + "longitude": "30.13515000" + }, + { + "id": "100987", + "name": "Romanovka", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.04430000", + "longitude": "30.71400000" + }, + { + "id": "100998", + "name": "Roshchino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.25191000", + "longitude": "29.60850000" + }, + { + "id": "101013", + "name": "Rozhdestveno", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.31812000", + "longitude": "29.94594000" + }, + { + "id": "101034", + "name": "Russko-Vysotskoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.69963000", + "longitude": "29.94404000" + }, + { + "id": "101041", + "name": "Ryabovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.40000000", + "longitude": "31.13333000" + }, + { + "id": "101047", + "name": "Rybatskoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.83930000", + "longitude": "30.49873000" + }, + { + "id": "101091", + "name": "Sampsonievskiy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.98499000", + "longitude": "30.34295000" + }, + { + "id": "101102", + "name": "Sapernoye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.71418000", + "longitude": "29.95525000" + }, + { + "id": "101167", + "name": "Semiozerje", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.32018000", + "longitude": "29.29705000" + }, + { + "id": "101193", + "name": "Sertolovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.14440000", + "longitude": "30.20165000" + }, + { + "id": "101274", + "name": "Shcheglovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.02839000", + "longitude": "30.75289000" + }, + { + "id": "101336", + "name": "Shlissel’burg", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.94730000", + "longitude": "31.03845000" + }, + { + "id": "101377", + "name": "Sinyavino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.90781000", + "longitude": "31.07110000" + }, + { + "id": "101379", + "name": "Sista-Palkino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.80042000", + "longitude": "28.91049000" + }, + { + "id": "101385", + "name": "Siverskiy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.35444000", + "longitude": "30.07833000" + }, + { + "id": "101397", + "name": "Slantsevskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.08333000", + "longitude": "28.25000000" + }, + { + "id": "101398", + "name": "Slantsy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.11817000", + "longitude": "28.09137000" + }, + { + "id": "101491", + "name": "Sosnovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.55145000", + "longitude": "30.21441000" + }, + { + "id": "101498", + "name": "Sosnovyy Bor", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.89960000", + "longitude": "29.08574000" + }, + { + "id": "101509", + "name": "Sovetskiy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.53945000", + "longitude": "28.67756000" + }, + { + "id": "101556", + "name": "Staraya", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.92749000", + "longitude": "30.62765000" + }, + { + "id": "101561", + "name": "Staraya Ladoga", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.99872000", + "longitude": "32.29413000" + }, + { + "id": "101699", + "name": "Svetlanovskiy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.00276000", + "longitude": "30.33051000" + }, + { + "id": "101709", + "name": "Svetogorsk", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "61.11213000", + "longitude": "28.86321000" + }, + { + "id": "101719", + "name": "Syas’stroy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.13669000", + "longitude": "32.56906000" + }, + { + "id": "101805", + "name": "Taytsy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.66444000", + "longitude": "30.11472000" + }, + { + "id": "101853", + "name": "Tikhvin", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.64511000", + "longitude": "33.52937000" + }, + { + "id": "101854", + "name": "Tikhvinskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.75000000", + "longitude": "33.33333000" + }, + { + "id": "101874", + "name": "Toksovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.15323000", + "longitude": "30.51646000" + }, + { + "id": "101877", + "name": "Tolmachevo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "58.85973000", + "longitude": "29.91091000" + }, + { + "id": "101903", + "name": "Tosnenskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.41667000", + "longitude": "31.00000000" + }, + { + "id": "101904", + "name": "Tosno", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.54000000", + "longitude": "30.87750000" + }, + { + "id": "102020", + "name": "Udel’naya", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.01636000", + "longitude": "30.31815000" + }, + { + "id": "102053", + "name": "Ul’yanovka", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.63944000", + "longitude": "30.76472000" + }, + { + "id": "102062", + "name": "Untolovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.01220000", + "longitude": "30.20897000" + }, + { + "id": "102136", + "name": "Ust’-Luga", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.66755000", + "longitude": "28.28713000" + }, + { + "id": "102200", + "name": "Vaskelovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.39571000", + "longitude": "30.35419000" + }, + { + "id": "102207", + "name": "Vazhiny", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.96444000", + "longitude": "34.02222000" + }, + { + "id": "102262", + "name": "Verkhniye Osel’ki", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.24948000", + "longitude": "30.44938000" + }, + { + "id": "102288", + "name": "Veshchevo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.73107000", + "longitude": "29.18305000" + }, + { + "id": "102312", + "name": "Vinnitsy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.62867000", + "longitude": "34.77302000" + }, + { + "id": "102320", + "name": "Vistino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.77558000", + "longitude": "28.47708000" + }, + { + "id": "102346", + "name": "Volkhov", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.92580000", + "longitude": "32.33819000" + }, + { + "id": "102348", + "name": "Volkhovskiy rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.75000000", + "longitude": "32.50000000" + }, + { + "id": "102361", + "name": "Volosovo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.44525000", + "longitude": "29.48911000" + }, + { + "id": "102362", + "name": "Volosovskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.42105000", + "longitude": "29.47705000" + }, + { + "id": "102404", + "name": "Voyskovitsy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.53266000", + "longitude": "29.93620000" + }, + { + "id": "102411", + "name": "Voznesen’ye", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "61.01060000", + "longitude": "35.47813000" + }, + { + "id": "102413", + "name": "Vsevolozhsk", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.01512000", + "longitude": "30.67314000" + }, + { + "id": "102414", + "name": "Vsevolozhskiy Rayon", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.16667000", + "longitude": "30.50000000" + }, + { + "id": "102426", + "name": "Vyborg", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.70763000", + "longitude": "28.75283000" + }, + { + "id": "102435", + "name": "Vyritsa", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.40778000", + "longitude": "30.34806000" + }, + { + "id": "102451", + "name": "Vysotsk", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.62879000", + "longitude": "28.57048000" + }, + { + "id": "102468", + "name": "Yakovlevo", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.29409000", + "longitude": "29.48800000" + }, + { + "id": "102483", + "name": "Yanino-1", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.94808000", + "longitude": "30.55914000" + }, + { + "id": "102498", + "name": "Yaroslavichi", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "60.49275000", + "longitude": "34.50806000" + }, + { + "id": "102522", + "name": "Yefimovskiy", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.49639000", + "longitude": "34.67222000" + }, + { + "id": "102541", + "name": "Yelizavetino", + "state_id": 1896, + "state_code": "LEN", + "country_id": 182, + "country_code": "RU", + "latitude": "59.49173000", + "longitude": "29.78153000" + }, + { + "id": "98010", + "name": "Bol’shoy Khomutets", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.78285000", + "longitude": "39.87214000" + }, + { + "id": "98023", + "name": "Borinskoye", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.45690000", + "longitude": "39.37130000" + }, + { + "id": "98116", + "name": "Chaplygin", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "53.24319000", + "longitude": "39.96288000" + }, + { + "id": "98117", + "name": "Chaplyginskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "40.00000000" + }, + { + "id": "98244", + "name": "Dankov", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25155000", + "longitude": "39.15553000" + }, + { + "id": "98245", + "name": "Dankovskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "39.16667000" + }, + { + "id": "98291", + "name": "Dobrinka", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16528000", + "longitude": "40.47306000" + }, + { + "id": "98292", + "name": "Dobrinskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16667000", + "longitude": "40.50000000" + }, + { + "id": "98293", + "name": "Dobrovskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83333000", + "longitude": "39.83333000" + }, + { + "id": "98294", + "name": "Dobroye", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.86780000", + "longitude": "39.81090000" + }, + { + "id": "98301", + "name": "Dolgorukovo", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.31945000", + "longitude": "38.34527000" + }, + { + "id": "98302", + "name": "Dolgorukovskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.33333000", + "longitude": "38.33333000" + }, + { + "id": "98315", + "name": "Donskoye", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.61740000", + "longitude": "38.97380000" + }, + { + "id": "98596", + "name": "Gryazi", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.49657000", + "longitude": "39.93593000" + }, + { + "id": "98597", + "name": "Gryazinskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "39.91667000" + }, + { + "id": "98751", + "name": "Izmalkovo", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.68870000", + "longitude": "37.96398000" + }, + { + "id": "98752", + "name": "Izmalkovskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.66667000", + "longitude": "38.00000000" + }, + { + "id": "98784", + "name": "Kalikino", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.94930000", + "longitude": "39.82690000" + }, + { + "id": "98925", + "name": "Kazaki", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.62484000", + "longitude": "38.26488000" + }, + { + "id": "98932", + "name": "Kazinka", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.53817000", + "longitude": "39.82164000" + }, + { + "id": "98986", + "name": "Khlevenskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16667000", + "longitude": "39.08333000" + }, + { + "id": "98987", + "name": "Khlevnoye", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.19512000", + "longitude": "39.09316000" + }, + { + "id": "99289", + "name": "Krasninskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83333000", + "longitude": "38.75000000" + }, + { + "id": "99349", + "name": "Krasnoye", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.86449000", + "longitude": "38.79353000" + }, + { + "id": "99512", + "name": "Kuz’minskiye Otverzhki", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.69574000", + "longitude": "39.47036000" + }, + { + "id": "99554", + "name": "Lebedyan’", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "53.01942000", + "longitude": "39.16639000" + }, + { + "id": "99553", + "name": "Lebedyanskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "53.00000000", + "longitude": "39.16667000" + }, + { + "id": "99609", + "name": "Lev Tolstoy", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "53.21344000", + "longitude": "39.44604000" + }, + { + "id": "99610", + "name": "Lev-Tolstovskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "53.25000000", + "longitude": "39.50000000" + }, + { + "id": "99632", + "name": "Lipetsk", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.60311000", + "longitude": "39.57076000" + }, + { + "id": "99633", + "name": "Lipetskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58333000", + "longitude": "39.58333000" + }, + { + "id": "100664", + "name": "Petrovskiy", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.24159000", + "longitude": "40.64976000" + }, + { + "id": "100700", + "name": "Plekhanovo", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.63822000", + "longitude": "39.84729000" + }, + { + "id": "100819", + "name": "Prigorodka", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.04472000", + "longitude": "39.71238000" + }, + { + "id": "101552", + "name": "Stanovlyanskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83333000", + "longitude": "38.33333000" + }, + { + "id": "101553", + "name": "Stanovoye", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.76384000", + "longitude": "38.35818000" + }, + { + "id": "101730", + "name": "Syrskoye", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.57437000", + "longitude": "39.49660000" + }, + { + "id": "101825", + "name": "Terbunskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16667000", + "longitude": "38.25000000" + }, + { + "id": "101826", + "name": "Terbuny", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.14930000", + "longitude": "38.28340000" + }, + { + "id": "102099", + "name": "Usman’", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.04662000", + "longitude": "39.72880000" + }, + { + "id": "102098", + "name": "Usmanskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.00000000", + "longitude": "39.75000000" + }, + { + "id": "102365", + "name": "Volovo", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.02659000", + "longitude": "37.88540000" + }, + { + "id": "102367", + "name": "Volovskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.00000000", + "longitude": "37.91667000" + }, + { + "id": "102538", + "name": "Yelets", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.62366000", + "longitude": "38.50169000" + }, + { + "id": "102539", + "name": "Yeletskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58333000", + "longitude": "38.50000000" + }, + { + "id": "102626", + "name": "Zadonsk", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.39040000", + "longitude": "38.92610000" + }, + { + "id": "102627", + "name": "Zadonskiy Rayon", + "state_id": 1889, + "state_code": "LIP", + "country_id": 182, + "country_code": "RU", + "latitude": "52.41667000", + "longitude": "38.91667000" + }, + { + "id": "97672", + "name": "Arman’", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.66994000", + "longitude": "150.13164000" + }, + { + "id": "98349", + "name": "Dukat", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "62.57231000", + "longitude": "155.34988000" + }, + { + "id": "98409", + "name": "Evensk", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "61.91722000", + "longitude": "159.23348000" + }, + { + "id": "98552", + "name": "Gorod Magadan", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.56029000", + "longitude": "150.79843000" + }, + { + "id": "98999", + "name": "Kholodnyy", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "62.71333000", + "longitude": "147.91361000" + }, + { + "id": "99730", + "name": "Magadan", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.56380000", + "longitude": "150.80347000" + }, + { + "id": "100028", + "name": "Myaundzha", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "63.04996000", + "longitude": "147.18438000" + }, + { + "id": "100419", + "name": "Ola", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.57823000", + "longitude": "151.29819000" + }, + { + "id": "100439", + "name": "Ol’skiy Rayon", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.00000000", + "longitude": "153.00000000" + }, + { + "id": "100441", + "name": "Omsukchan", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "62.51575000", + "longitude": "155.79038000" + }, + { + "id": "100442", + "name": "Omsukchanskiy Rayon", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "63.00000000", + "longitude": "156.33333000" + }, + { + "id": "100476", + "name": "Orotukan", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "62.26423000", + "longitude": "151.67153000" + }, + { + "id": "100528", + "name": "Palatka", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.10183000", + "longitude": "150.93433000" + }, + { + "id": "101226", + "name": "Seymchan", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "62.93373000", + "longitude": "152.39109000" + }, + { + "id": "101372", + "name": "Sinegor'ye", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "62.08782000", + "longitude": "150.52162000" + }, + { + "id": "101435", + "name": "Sokol", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.91834000", + "longitude": "150.74956000" + }, + { + "id": "101542", + "name": "Srednekanskiy Rayon", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "64.00000000", + "longitude": "153.50000000" + }, + { + "id": "101685", + "name": "Susuman", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "62.78075000", + "longitude": "148.15396000" + }, + { + "id": "101748", + "name": "Talaya", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "61.37038000", + "longitude": "152.76878000" + }, + { + "id": "102068", + "name": "Uptar", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.89923000", + "longitude": "150.87376000" + }, + { + "id": "102137", + "name": "Ust’-Omchug", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "61.13336000", + "longitude": "149.63283000" + }, + { + "id": "102461", + "name": "Yagodnoye", + "state_id": 1839, + "state_code": "MAG", + "country_id": 182, + "country_code": "RU", + "latitude": "62.52406000", + "longitude": "149.62827000" + }, + { + "id": "98530", + "name": "Gornomariyskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41667000", + "longitude": "46.75000000" + }, + { + "id": "99039", + "name": "Kilemarskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "46.91667000" + }, + { + "id": "99040", + "name": "Kilemary", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.77825000", + "longitude": "46.86594000" + }, + { + "id": "99271", + "name": "Koz’modem’yansk", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.34190000", + "longitude": "46.56353000" + }, + { + "id": "99305", + "name": "Krasnogorskiy", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.15250000", + "longitude": "48.32583000" + }, + { + "id": "99500", + "name": "Kuzhener", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.81111000", + "longitude": "48.91278000" + }, + { + "id": "99501", + "name": "Kuzhenerskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "49.00000000" + }, + { + "id": "99793", + "name": "Mari-Turek", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.78946000", + "longitude": "49.62349000" + }, + { + "id": "99794", + "name": "Mari-Turekskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "49.83333000" + }, + { + "id": "99842", + "name": "Medvedevo", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.63388000", + "longitude": "47.80405000" + }, + { + "id": "99843", + "name": "Medvedevskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66667000", + "longitude": "47.75000000" + }, + { + "id": "99937", + "name": "Mochalishche", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.33060000", + "longitude": "48.35470000" + }, + { + "id": "99964", + "name": "Morki", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.43028000", + "longitude": "48.99472000" + }, + { + "id": "99965", + "name": "Morkinskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50000000", + "longitude": "49.00000000" + }, + { + "id": "100315", + "name": "Novotor”yal’skiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "57.08333000", + "longitude": "48.66667000" + }, + { + "id": "100478", + "name": "Orshanka", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.91607000", + "longitude": "47.89335000" + }, + { + "id": "100479", + "name": "Orshanskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.91667000", + "longitude": "47.91667000" + }, + { + "id": "100541", + "name": "Paran’ga", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.70389000", + "longitude": "49.40472000" + }, + { + "id": "100542", + "name": "Paran’ginskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66667000", + "longitude": "49.41667000" + }, + { + "id": "100765", + "name": "Pomary", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "55.96815000", + "longitude": "48.35072000" + }, + { + "id": "100848", + "name": "Privolzhskiy", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "55.96135000", + "longitude": "48.41512000" + }, + { + "id": "101188", + "name": "Sernur", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.93333000", + "longitude": "49.15361000" + }, + { + "id": "101189", + "name": "Sernurskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "49.25000000" + }, + { + "id": "101510", + "name": "Sovetskiy", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75833000", + "longitude": "48.47611000" + }, + { + "id": "101514", + "name": "Sovetskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66667000", + "longitude": "48.50000000" + }, + { + "id": "101678", + "name": "Surok", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.44694000", + "longitude": "48.12139000" + }, + { + "id": "101683", + "name": "Suslonger", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.31556000", + "longitude": "48.25306000" + }, + { + "id": "102306", + "name": "Vilovatovo", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.17240000", + "longitude": "46.60134000" + }, + { + "id": "102369", + "name": "Volzhsk", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86638000", + "longitude": "48.35940000" + }, + { + "id": "102371", + "name": "Volzhskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08333000", + "longitude": "48.58333000" + }, + { + "id": "102581", + "name": "Yoshkar-Ola", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.63877000", + "longitude": "47.89078000" + }, + { + "id": "102597", + "name": "Yurino", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.29417000", + "longitude": "46.30392000" + }, + { + "id": "102598", + "name": "Yurinskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.30000000", + "longitude": "46.30000000" + }, + { + "id": "102779", + "name": "Zvenigovo", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "55.97539000", + "longitude": "48.01304000" + }, + { + "id": "102780", + "name": "Zvenigovskiy Rayon", + "state_id": 1870, + "state_code": "ME", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "47.75000000" + }, + { + "id": "97605", + "name": "Altuf’yevskiy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88333000", + "longitude": "37.58333000" + }, + { + "id": "97613", + "name": "Amin’yevo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70000000", + "longitude": "37.46667000" + }, + { + "id": "97634", + "name": "Annino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58333000", + "longitude": "37.60000000" + }, + { + "id": "97744", + "name": "Babushkin", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86931000", + "longitude": "37.72966000" + }, + { + "id": "97924", + "name": "Bibirevo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88333000", + "longitude": "37.60000000" + }, + { + "id": "97938", + "name": "Biryulëvo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58635000", + "longitude": "37.67781000" + }, + { + "id": "97971", + "name": "Bogorodskoye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.81353000", + "longitude": "37.71617000" + }, + { + "id": "98052", + "name": "Brateyevo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63755000", + "longitude": "37.76438000" + }, + { + "id": "98190", + "name": "Cherëmushki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66473000", + "longitude": "37.56135000" + }, + { + "id": "98185", + "name": "Chertanovo Yuzhnoye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59072000", + "longitude": "37.59519000" + }, + { + "id": "98250", + "name": "Davydkovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71815000", + "longitude": "37.47271000" + }, + { + "id": "98514", + "name": "Gol’yanovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.82299000", + "longitude": "37.81306000" + }, + { + "id": "98509", + "name": "Golovinskiy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.85381000", + "longitude": "37.49604000" + }, + { + "id": "98735", + "name": "Ivanovskoye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76667000", + "longitude": "37.83333000" + }, + { + "id": "98848", + "name": "Kapotnya", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63806000", + "longitude": "37.79306000" + }, + { + "id": "99132", + "name": "Kokoshkino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59769000", + "longitude": "37.16950000" + }, + { + "id": "99142", + "name": "Kolomenskoye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "37.68333000" + }, + { + "id": "99248", + "name": "Kotlovka", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65928000", + "longitude": "37.60404000" + }, + { + "id": "99262", + "name": "Kozeyevo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86667000", + "longitude": "37.61667000" + }, + { + "id": "99281", + "name": "Krasnaya Pahra", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.43223000", + "longitude": "37.26966000" + }, + { + "id": "99482", + "name": "Kur’yanovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65000000", + "longitude": "37.70000000" + }, + { + "id": "99511", + "name": "Kuz’minki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70000000", + "longitude": "37.80000000" + }, + { + "id": "99561", + "name": "Lefortovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76667000", + "longitude": "37.70000000" + }, + { + "id": "99582", + "name": "Leonovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.85000000", + "longitude": "37.65000000" + }, + { + "id": "99621", + "name": "Lianozovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.89783000", + "longitude": "37.58680000" + }, + { + "id": "99622", + "name": "Likhobory", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.85000000", + "longitude": "37.56667000" + }, + { + "id": "99529", + "name": "LMS", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31425000", + "longitude": "37.18546000" + }, + { + "id": "99696", + "name": "Luzhniki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71599000", + "longitude": "37.55376000" + }, + { + "id": "99718", + "name": "Lyublino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.67738000", + "longitude": "37.76005000" + }, + { + "id": "99808", + "name": "Mar’ino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65000000", + "longitude": "37.71667000" + }, + { + "id": "99817", + "name": "Matveyevskoye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71112000", + "longitude": "37.47502000" + }, + { + "id": "99874", + "name": "Metrogorodok", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80961000", + "longitude": "37.78739000" + }, + { + "id": "99894", + "name": "Mikhalkovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.68333000", + "longitude": "37.43333000" + }, + { + "id": "99972", + "name": "Moscow", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75222000", + "longitude": "37.61556000" + }, + { + "id": "99977", + "name": "Moskovskiy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59911000", + "longitude": "37.35495000" + }, + { + "id": "100046", + "name": "Nagornyy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65000000", + "longitude": "37.61667000" + }, + { + "id": "100091", + "name": "Nekrasovka", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.69328000", + "longitude": "37.91148000" + }, + { + "id": "100147", + "name": "Nikol’skoye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.68333000", + "longitude": "37.48333000" + }, + { + "id": "100148", + "name": "Nikulino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66943000", + "longitude": "37.46598000" + }, + { + "id": "100219", + "name": "Novo-Peredelkino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.64528000", + "longitude": "37.33583000" + }, + { + "id": "100243", + "name": "Novogireyevo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75378000", + "longitude": "37.81885000" + }, + { + "id": "100250", + "name": "Novokhovrino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86667000", + "longitude": "37.50000000" + }, + { + "id": "100259", + "name": "Novokuz’minki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71667000", + "longitude": "37.78333000" + }, + { + "id": "100328", + "name": "Novovladykino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.85000000", + "longitude": "37.58333000" + }, + { + "id": "100358", + "name": "Novyye Cherëmushki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70000000", + "longitude": "37.58333000" + }, + { + "id": "100360", + "name": "Novyye Kuz’minki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70000000", + "longitude": "37.75000000" + }, + { + "id": "100395", + "name": "Ochakovo-Matveyevskoye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.68432000", + "longitude": "37.44654000" + }, + { + "id": "100461", + "name": "Orekhovo-Borisovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61252000", + "longitude": "37.72639000" + }, + { + "id": "100462", + "name": "Orekhovo-Borisovo Severnoye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61667000", + "longitude": "37.68333000" + }, + { + "id": "100490", + "name": "Ostankinskiy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.82957000", + "longitude": "37.61604000" + }, + { + "id": "100505", + "name": "Otradnoye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86667000", + "longitude": "37.60000000" + }, + { + "id": "100750", + "name": "Pokrovskoye-Streshnëvo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80797000", + "longitude": "37.45814000" + }, + { + "id": "100812", + "name": "Presnenskiy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "37.55000000" + }, + { + "id": "100934", + "name": "Ramenki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70000000", + "longitude": "37.50000000" + }, + { + "id": "101005", + "name": "Rostokino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "37.66667000" + }, + { + "id": "101018", + "name": "Rublëvo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.78514000", + "longitude": "37.35481000" + }, + { + "id": "101043", + "name": "Ryazanskiy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.73333000", + "longitude": "37.76667000" + }, + { + "id": "101200", + "name": "Setun’", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71667000", + "longitude": "37.41667000" + }, + { + "id": "101206", + "name": "Severnyy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.93583000", + "longitude": "37.54889000" + }, + { + "id": "101277", + "name": "Shcherbinka", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.49972000", + "longitude": "37.55972000" + }, + { + "id": "101279", + "name": "Shchukino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80000000", + "longitude": "37.45000000" + }, + { + "id": "101408", + "name": "Slobodka", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86667000", + "longitude": "37.58333000" + }, + { + "id": "101432", + "name": "Sokol", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80000000", + "longitude": "37.51667000" + }, + { + "id": "101441", + "name": "Sokol’niki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80202000", + "longitude": "37.67159000" + }, + { + "id": "101460", + "name": "Solntsevo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63711000", + "longitude": "37.38115000" + }, + { + "id": "101630", + "name": "Strogino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.81838000", + "longitude": "37.41224000" + }, + { + "id": "101710", + "name": "Sviblovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.85000000", + "longitude": "37.63333000" + }, + { + "id": "101741", + "name": "Taganskiy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.73333000", + "longitude": "37.66667000" + }, + { + "id": "101812", + "name": "Tekstil’shchiki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70033000", + "longitude": "37.74271000" + }, + { + "id": "101879", + "name": "Tolstopal’tsevo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61026000", + "longitude": "37.21834000" + }, + { + "id": "101912", + "name": "Troitsk", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.48498000", + "longitude": "37.30736000" + }, + { + "id": "101926", + "name": "Troparëvo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65625000", + "longitude": "37.48496000" + }, + { + "id": "101937", + "name": "Tsaritsyno", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.62540000", + "longitude": "37.65032000" + }, + { + "id": "101945", + "name": "Tsentral’nyy Administrativnyy Okrug", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74943000", + "longitude": "37.62371000" + }, + { + "id": "101995", + "name": "Tyoply Stan", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.62047000", + "longitude": "37.49338000" + }, + { + "id": "102174", + "name": "Vagonoremont", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.90000000", + "longitude": "37.55000000" + }, + { + "id": "102204", + "name": "Vatutinki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.49650000", + "longitude": "37.32988000" + }, + { + "id": "102205", + "name": "Vatutino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88441000", + "longitude": "37.69055000" + }, + { + "id": "102291", + "name": "Veshnyaki", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72393000", + "longitude": "37.81952000" + }, + { + "id": "102333", + "name": "Vnukovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61194000", + "longitude": "37.29611000" + }, + { + "id": "102379", + "name": "Vorob’yovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71667000", + "longitude": "37.53333000" + }, + { + "id": "102395", + "name": "Vostochnoe Degunino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88010000", + "longitude": "37.55758000" + }, + { + "id": "102397", + "name": "Vostochnyy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.81667000", + "longitude": "37.86667000" + }, + { + "id": "102432", + "name": "Vykhino-Zhulebino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70196000", + "longitude": "37.81178000" + }, + { + "id": "102501", + "name": "Yaroslavskiy", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88333000", + "longitude": "37.71667000" + }, + { + "id": "102506", + "name": "Yasenevo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.60686000", + "longitude": "37.51991000" + }, + { + "id": "102629", + "name": "Zagor’ye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.57657000", + "longitude": "37.66709000" + }, + { + "id": "102641", + "name": "Zamoskvorech’ye", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.73333000", + "longitude": "37.63333000" + }, + { + "id": "102698", + "name": "Zelenograd", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.98250000", + "longitude": "37.18139000" + }, + { + "id": "102746", + "name": "Zhulebino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70000000", + "longitude": "37.85000000" + }, + { + "id": "102784", + "name": "Zyablikovo", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61667000", + "longitude": "37.76667000" + }, + { + "id": "102791", + "name": "Zyuzino", + "state_id": 1901, + "state_code": "MOW", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65608000", + "longitude": "37.56846000" + }, + { + "id": "97553", + "name": "Alabushevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.01667000", + "longitude": "37.15000000" + }, + { + "id": "97578", + "name": "Alekseyevka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63000000", + "longitude": "37.80000000" + }, + { + "id": "97628", + "name": "Andreyevka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.98028000", + "longitude": "37.13500000" + }, + { + "id": "97630", + "name": "Andreyevskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55487000", + "longitude": "37.92566000" + }, + { + "id": "97636", + "name": "Annino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58316000", + "longitude": "37.26019000" + }, + { + "id": "97650", + "name": "Aprelevka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55194000", + "longitude": "37.08010000" + }, + { + "id": "97665", + "name": "Arkhangel’skoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.85486000", + "longitude": "35.32873000" + }, + { + "id": "97699", + "name": "Ashitkovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.45173000", + "longitude": "38.59518000" + }, + { + "id": "97700", + "name": "Ashukino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16667000", + "longitude": "37.95000000" + }, + { + "id": "97710", + "name": "Ateptsevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.32364000", + "longitude": "36.75002000" + }, + { + "id": "97722", + "name": "Avsyunino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56516000", + "longitude": "39.12324000" + }, + { + "id": "97723", + "name": "Avtopoligon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.34984000", + "longitude": "37.32296000" + }, + { + "id": "97760", + "name": "Bakhchivandzhi", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88333000", + "longitude": "38.08333000" + }, + { + "id": "97765", + "name": "Baksheyevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70860000", + "longitude": "39.87666000" + }, + { + "id": "97773", + "name": "Balashikha", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80945000", + "longitude": "37.95806000" + }, + { + "id": "97774", + "name": "Balashikha Urban Okrug", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "38.00000000" + }, + { + "id": "97800", + "name": "Barvikha", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74212000", + "longitude": "37.27926000" + }, + { + "id": "97803", + "name": "Barybino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.26768000", + "longitude": "37.89333000" + }, + { + "id": "97858", + "name": "Beloomut", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.94478000", + "longitude": "39.33941000" + }, + { + "id": "97860", + "name": "Beloozërskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.45978000", + "longitude": "38.44358000" + }, + { + "id": "97883", + "name": "Belyye Stolby", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33136000", + "longitude": "37.85400000" + }, + { + "id": "97931", + "name": "Biorki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.05280000", + "longitude": "38.60873000" + }, + { + "id": "97939", + "name": "Biryulëvo Zapadnoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58766000", + "longitude": "37.64282000" + }, + { + "id": "97970", + "name": "Bogorodskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55000000", + "longitude": "37.88333000" + }, + { + "id": "97988", + "name": "Bol'shiye Vyazëmy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.62058000", + "longitude": "36.97620000" + }, + { + "id": "98000", + "name": "Bol’shaya Setun’", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71667000", + "longitude": "37.41667000" + }, + { + "id": "98013", + "name": "Bol’shoye Gryzlovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.80033000", + "longitude": "37.63939000" + }, + { + "id": "97998", + "name": "Bolshevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.93486000", + "longitude": "37.83002000" + }, + { + "id": "98053", + "name": "Bratovshchina", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.05000000", + "longitude": "37.88333000" + }, + { + "id": "98058", + "name": "Bronnitsy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.42112000", + "longitude": "38.26188000" + }, + { + "id": "98063", + "name": "Budenovetc", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.37975000", + "longitude": "37.62774000" + }, + { + "id": "98098", + "name": "Bykovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63614000", + "longitude": "38.08027000" + }, + { + "id": "98121", + "name": "Chashnikovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03333000", + "longitude": "37.16667000" + }, + { + "id": "98135", + "name": "Chekhov", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.14770000", + "longitude": "37.47728000" + }, + { + "id": "98161", + "name": "Cherkizovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.97583000", + "longitude": "37.78750000" + }, + { + "id": "98169", + "name": "Chernogolovka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "38.36667000" + }, + { + "id": "98187", + "name": "Cherusti", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.54976000", + "longitude": "40.01071000" + }, + { + "id": "98207", + "name": "Chkalovskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.89534000", + "longitude": "38.07763000" + }, + { + "id": "98211", + "name": "Chornoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74611000", + "longitude": "38.06889000" + }, + { + "id": "98224", + "name": "Chupryakovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55282000", + "longitude": "36.62721000" + }, + { + "id": "98243", + "name": "Danki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91806000", + "longitude": "37.57009000" + }, + { + "id": "98252", + "name": "Davydovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.60859000", + "longitude": "38.86109000" + }, + { + "id": "98255", + "name": "Dedenëvo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.24283000", + "longitude": "37.51769000" + }, + { + "id": "98257", + "name": "Dedovsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86861000", + "longitude": "37.12222000" + }, + { + "id": "98260", + "name": "Demikhovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.79685000", + "longitude": "38.88404000" + }, + { + "id": "98285", + "name": "Dmitrov", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.34485000", + "longitude": "37.52041000" + }, + { + "id": "98287", + "name": "Dmitrovskiy Pogost", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31333000", + "longitude": "39.83358000" + }, + { + "id": "98288", + "name": "Dmitrovskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.35000000", + "longitude": "37.58333000" + }, + { + "id": "98300", + "name": "Dolgoprudnyy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.94958000", + "longitude": "37.50183000" + }, + { + "id": "98307", + "name": "Domodedovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.44130000", + "longitude": "37.75367000" + }, + { + "id": "98308", + "name": "Domodedovskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.41667000", + "longitude": "37.75000000" + }, + { + "id": "98320", + "name": "Dorogomilovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "37.56667000" + }, + { + "id": "98321", + "name": "Dorokhovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55056000", + "longitude": "36.37444000" + }, + { + "id": "98325", + "name": "Drezna", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74208000", + "longitude": "38.84753000" + }, + { + "id": "98329", + "name": "Druzhba", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88603000", + "longitude": "37.74267000" + }, + { + "id": "98337", + "name": "Dubna", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.73333000", + "longitude": "37.16667000" + }, + { + "id": "98343", + "name": "Dubrovitsy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.43969000", + "longitude": "37.48670000" + }, + { + "id": "98368", + "name": "Dzerzhinskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.62945000", + "longitude": "37.85654000" + }, + { + "id": "98371", + "name": "Dzerzhinsky", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.62737000", + "longitude": "37.85803000" + }, + { + "id": "98385", + "name": "Elektrogorsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88431000", + "longitude": "38.78640000" + }, + { + "id": "98386", + "name": "Elektrostal’", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.78959000", + "longitude": "38.44671000" + }, + { + "id": "98387", + "name": "Elektrougli", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72445000", + "longitude": "38.20908000" + }, + { + "id": "98418", + "name": "Fedurnovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75488000", + "longitude": "38.04696000" + }, + { + "id": "98424", + "name": "Fili", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74819000", + "longitude": "37.47969000" + }, + { + "id": "98425", + "name": "Filimonki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55794000", + "longitude": "37.34719000" + }, + { + "id": "98431", + "name": "Firsanovka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.95361000", + "longitude": "37.24083000" + }, + { + "id": "98435", + "name": "Fosforitnyy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.32892000", + "longitude": "38.89509000" + }, + { + "id": "98439", + "name": "Fryanovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13333000", + "longitude": "38.45000000" + }, + { + "id": "98440", + "name": "Fryazevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.73321000", + "longitude": "38.46458000" + }, + { + "id": "98441", + "name": "Fryazino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.96056000", + "longitude": "38.04556000" + }, + { + "id": "98506", + "name": "Golitsyno", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.60928000", + "longitude": "36.98212000" + }, + { + "id": "98527", + "name": "Gorki Vtoryye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72565000", + "longitude": "37.16350000" + }, + { + "id": "98528", + "name": "Gorki-Leninskiye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50855000", + "longitude": "37.77618000" + }, + { + "id": "98567", + "name": "Gorshkovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.37561000", + "longitude": "37.41240000" + }, + { + "id": "98583", + "name": "Grebnevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.95074000", + "longitude": "38.07973000" + }, + { + "id": "98625", + "name": "Gzhel’", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61008000", + "longitude": "38.39399000" + }, + { + "id": "98641", + "name": "Iksha", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.17204000", + "longitude": "37.49842000" + }, + { + "id": "98653", + "name": "Il’inskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61902000", + "longitude": "38.11818000" + }, + { + "id": "98654", + "name": "Il’inskiy Pogost", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.47785000", + "longitude": "38.90906000" + }, + { + "id": "98657", + "name": "Il’inskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.24917000", + "longitude": "37.95805000" + }, + { + "id": "98668", + "name": "Imeni Tsyurupy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.49567000", + "longitude": "38.65064000" + }, + { + "id": "98671", + "name": "Imeni Vorovskogo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.73190000", + "longitude": "38.32368000" + }, + { + "id": "98720", + "name": "Istra", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91997000", + "longitude": "36.86867000" + }, + { + "id": "98721", + "name": "Istrinskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88333000", + "longitude": "36.93333000" + }, + { + "id": "98736", + "name": "Ivanteyevka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.97111000", + "longitude": "37.92083000" + }, + { + "id": "98754", + "name": "Izmaylovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.78677000", + "longitude": "37.80165000" + }, + { + "id": "98763", + "name": "Kabanovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74815000", + "longitude": "38.93511000" + }, + { + "id": "98881", + "name": "Karinskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70969000", + "longitude": "36.68903000" + }, + { + "id": "98893", + "name": "Kashira", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.84444000", + "longitude": "38.16694000" + }, + { + "id": "98902", + "name": "Kastanayevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71667000", + "longitude": "37.50000000" + }, + { + "id": "98942", + "name": "Kerva", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61167000", + "longitude": "39.57665000" + }, + { + "id": "98980", + "name": "Khimki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.89704000", + "longitude": "37.42969000" + }, + { + "id": "98981", + "name": "Khimki Urban Okrug", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91667000", + "longitude": "37.41667000" + }, + { + "id": "99006", + "name": "Khorlovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33270000", + "longitude": "38.81365000" + }, + { + "id": "99008", + "name": "Khoroshëvo-Mnevniki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.78363000", + "longitude": "37.47137000" + }, + { + "id": "99010", + "name": "Khot'kovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25699000", + "longitude": "37.99544000" + }, + { + "id": "99035", + "name": "Kievskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.42999000", + "longitude": "36.86660000" + }, + { + "id": "99102", + "name": "Klimovsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.36352000", + "longitude": "37.52984000" + }, + { + "id": "99104", + "name": "Klin", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.33333000", + "longitude": "36.73333000" + }, + { + "id": "99105", + "name": "Klinskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41667000", + "longitude": "36.83333000" + }, + { + "id": "99141", + "name": "Kolomenskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.08333000", + "longitude": "38.75000000" + }, + { + "id": "99143", + "name": "Kolomna", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.07944000", + "longitude": "38.77833000" + }, + { + "id": "99152", + "name": "Kolyubakino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66800000", + "longitude": "36.53234000" + }, + { + "id": "99166", + "name": "Kommunarka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56952000", + "longitude": "37.48932000" + }, + { + "id": "99184", + "name": "Konobeyevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.40776000", + "longitude": "38.66261000" + }, + { + "id": "99188", + "name": "Konstantinovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55000000", + "longitude": "38.03333000" + }, + { + "id": "99201", + "name": "Koptëvo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.81667000", + "longitude": "37.51667000" + }, + { + "id": "99205", + "name": "Korenëvo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.67194000", + "longitude": "38.00778000" + }, + { + "id": "99214", + "name": "Korolev", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91417000", + "longitude": "37.82556000" + }, + { + "id": "99215", + "name": "Korolyov", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91732000", + "longitude": "37.81786000" + }, + { + "id": "99238", + "name": "Kostino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03333000", + "longitude": "37.91667000" + }, + { + "id": "99243", + "name": "Kostrovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.89429000", + "longitude": "36.69491000" + }, + { + "id": "99245", + "name": "Kotel’niki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63546000", + "longitude": "37.84450000" + }, + { + "id": "99264", + "name": "Kozhukhovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70000000", + "longitude": "37.66667000" + }, + { + "id": "99276", + "name": "Kraskovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.64972000", + "longitude": "37.98778000" + }, + { + "id": "99285", + "name": "Krasnaya Poyma", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00138000", + "longitude": "39.07997000" + }, + { + "id": "99291", + "name": "Krasnoarmeysk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.10000000", + "longitude": "38.13333000" + }, + { + "id": "99303", + "name": "Krasnogorsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.82036000", + "longitude": "37.33017000" + }, + { + "id": "99309", + "name": "Krasnogorskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "37.33333000" + }, + { + "id": "99355", + "name": "Krasnozavodsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.45000000", + "longitude": "38.21667000" + }, + { + "id": "99357", + "name": "Krasnoznamensk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59944000", + "longitude": "37.03861000" + }, + { + "id": "99374", + "name": "Krasnyy Tkach", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.47210000", + "longitude": "39.08017000" + }, + { + "id": "99386", + "name": "Kratovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59728000", + "longitude": "38.17743000" + }, + { + "id": "99394", + "name": "Krivtsovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.15000000", + "longitude": "36.88333000" + }, + { + "id": "99416", + "name": "Kubinka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.57957000", + "longitude": "36.70392000" + }, + { + "id": "99449", + "name": "Kupavna", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74576000", + "longitude": "38.13136000" + }, + { + "id": "99461", + "name": "Kurilovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.37271000", + "longitude": "37.37703000" + }, + { + "id": "99471", + "name": "Kurovskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58183000", + "longitude": "38.91994000" + }, + { + "id": "99489", + "name": "Kuskovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.73423000", + "longitude": "37.82616000" + }, + { + "id": "99728", + "name": "L’vovskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31872000", + "longitude": "37.52337000" + }, + { + "id": "99573", + "name": "Leninskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.41667000", + "longitude": "37.58333000" + }, + { + "id": "99575", + "name": "Leninskiye Gory", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70000000", + "longitude": "37.56667000" + }, + { + "id": "99595", + "name": "Lesnoy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.06667000", + "longitude": "37.91667000" + }, + { + "id": "99597", + "name": "Lesnoy Gorodok", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63893000", + "longitude": "37.20829000" + }, + { + "id": "99602", + "name": "Lesnyye Polyany", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.96667000", + "longitude": "37.86667000" + }, + { + "id": "99616", + "name": "Levoberezhnyy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.85000000", + "longitude": "37.48333000" + }, + { + "id": "99627", + "name": "Likino-Dulevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70830000", + "longitude": "38.95420000" + }, + { + "id": "99646", + "name": "Lobnya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00972000", + "longitude": "37.48194000" + }, + { + "id": "99663", + "name": "Lopatinskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.34101000", + "longitude": "38.72366000" + }, + { + "id": "99666", + "name": "Losino-Petrovskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86959000", + "longitude": "38.20065000" + }, + { + "id": "99669", + "name": "Lotoshino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.23489000", + "longitude": "35.64273000" + }, + { + "id": "99670", + "name": "Lotoshinskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "35.66667000" + }, + { + "id": "99676", + "name": "Lozhki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.09387000", + "longitude": "37.10873000" + }, + { + "id": "99681", + "name": "Lugovaya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.05000000", + "longitude": "37.48333000" + }, + { + "id": "99684", + "name": "Lukhovitsy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.97661000", + "longitude": "39.04440000" + }, + { + "id": "99711", + "name": "Lytkarino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58271000", + "longitude": "37.90516000" + }, + { + "id": "99713", + "name": "Lyuberetskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "37.91667000" + }, + { + "id": "99714", + "name": "Lyubertsy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.67719000", + "longitude": "37.89322000" + }, + { + "id": "99721", + "name": "Lyubuchany", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25088000", + "longitude": "37.54988000" + }, + { + "id": "99749", + "name": "Malakhovka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.64776000", + "longitude": "38.02486000" + }, + { + "id": "99750", + "name": "Malaya Dubna", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.87783000", + "longitude": "38.95423000" + }, + { + "id": "99756", + "name": "Malino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.11195000", + "longitude": "38.17384000" + }, + { + "id": "99772", + "name": "Malyshevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.49450000", + "longitude": "38.35356000" + }, + { + "id": "99778", + "name": "Mamontovka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.98083000", + "longitude": "37.81972000" + }, + { + "id": "99791", + "name": "Marfino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70267000", + "longitude": "37.38322000" + }, + { + "id": "99847", + "name": "Medvezh’i Ozëra", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86935000", + "longitude": "37.98613000" + }, + { + "id": "99856", + "name": "Melikhovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.11440000", + "longitude": "37.64827000" + }, + { + "id": "99861", + "name": "Mendeleyevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03333000", + "longitude": "37.21667000" + }, + { + "id": "99868", + "name": "Meshcherino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.19567000", + "longitude": "38.36002000" + }, + { + "id": "99907", + "name": "Mikhnëvo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.12747000", + "longitude": "37.95451000" + }, + { + "id": "99908", + "name": "Mikulino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.45188000", + "longitude": "35.60685000" + }, + { + "id": "99927", + "name": "Misheronskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71927000", + "longitude": "39.73835000" + }, + { + "id": "99953", + "name": "Molokovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56186000", + "longitude": "37.86492000" + }, + { + "id": "99959", + "name": "Monino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.84244000", + "longitude": "38.19362000" + }, + { + "id": "99980", + "name": "Mosrentgen", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61970000", + "longitude": "37.46402000" + }, + { + "id": "99985", + "name": "Mozhaysk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50194000", + "longitude": "36.02722000" + }, + { + "id": "99986", + "name": "Mozhayskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50000000", + "longitude": "36.00000000" + }, + { + "id": "100004", + "name": "Muranovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.18333000", + "longitude": "37.90000000" + }, + { + "id": "100034", + "name": "Mytishchi", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91163000", + "longitude": "37.73076000" + }, + { + "id": "100035", + "name": "Mytishchi Urban Okrug", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "37.66667000" + }, + { + "id": "100051", + "name": "Nakhabino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.84854000", + "longitude": "37.17789000" + }, + { + "id": "100059", + "name": "Naro-Fominsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.38752000", + "longitude": "36.73307000" + }, + { + "id": "100074", + "name": "Nazar'yevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.67417000", + "longitude": "37.04028000" + }, + { + "id": "100094", + "name": "Nekrasovskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.09349000", + "longitude": "37.49934000" + }, + { + "id": "100102", + "name": "Nemchinovka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72288000", + "longitude": "37.36086000" + }, + { + "id": "100139", + "name": "Nikolina Gora", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.73433000", + "longitude": "37.04364000" + }, + { + "id": "100191", + "name": "Noginsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86647000", + "longitude": "38.44380000" + }, + { + "id": "100192", + "name": "Noginsk-9", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.06681000", + "longitude": "38.50013000" + }, + { + "id": "100193", + "name": "Noginskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91667000", + "longitude": "38.41667000" + }, + { + "id": "100218", + "name": "Novo-Nikol’skoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.56667000", + "longitude": "37.53333000" + }, + { + "id": "100246", + "name": "Novoivanovskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70381000", + "longitude": "37.36510000" + }, + { + "id": "100280", + "name": "Novopetrovskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.99278000", + "longitude": "36.47194000" + }, + { + "id": "100283", + "name": "Novopodrezkovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.93972000", + "longitude": "37.34417000" + }, + { + "id": "100307", + "name": "Novosin’kovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.37737000", + "longitude": "37.32871000" + }, + { + "id": "100331", + "name": "Novoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63104000", + "longitude": "38.92001000" + }, + { + "id": "100341", + "name": "Novyy Byt", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.05857000", + "longitude": "37.61348000" + }, + { + "id": "100367", + "name": "Nudol’", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.10000000", + "longitude": "36.51667000" + }, + { + "id": "100387", + "name": "Obolensk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.97741000", + "longitude": "37.22449000" + }, + { + "id": "100391", + "name": "Obukhovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83278000", + "longitude": "38.27250000" + }, + { + "id": "100398", + "name": "Odintsovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.67798000", + "longitude": "37.27773000" + }, + { + "id": "100399", + "name": "Odintsovskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "36.91667000" + }, + { + "id": "100412", + "name": "Oktyabr’skiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.60806000", + "longitude": "37.97738000" + }, + { + "id": "100418", + "name": "Ol'yavidovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50330000", + "longitude": "37.75160000" + }, + { + "id": "100452", + "name": "Opalikha", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.82593000", + "longitude": "37.25278000" + }, + { + "id": "100463", + "name": "Orekhovo-Zuyevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80672000", + "longitude": "38.96178000" + }, + { + "id": "100464", + "name": "Orekhovo-Zuyevskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "39.00000000" + }, + { + "id": "100481", + "name": "Orud’yevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.43333000", + "longitude": "37.53333000" + }, + { + "id": "100493", + "name": "Ostashëvo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.85896000", + "longitude": "35.86948000" + }, + { + "id": "100501", + "name": "Ostrovtsy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58750000", + "longitude": "38.00556000" + }, + { + "id": "100525", + "name": "Ozëry", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.85998000", + "longitude": "38.55062000" + }, + { + "id": "100521", + "name": "Ozherel’ye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.79197000", + "longitude": "38.26559000" + }, + { + "id": "100522", + "name": "Ozyory Urban Okrug", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.83333000", + "longitude": "38.58333000" + }, + { + "id": "100575", + "name": "Pavlovskaya Sloboda", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.81517000", + "longitude": "37.08246000" + }, + { + "id": "100577", + "name": "Pavlovskiy Posad", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.78187000", + "longitude": "38.65025000" + }, + { + "id": "100583", + "name": "Pavshino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.81667000", + "longitude": "37.35000000" + }, + { + "id": "100606", + "name": "Peresvet", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.42302000", + "longitude": "38.17612000" + }, + { + "id": "100619", + "name": "Pervomayskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.06696000", + "longitude": "38.66489000" + }, + { + "id": "100632", + "name": "Peshki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13333000", + "longitude": "37.06667000" + }, + { + "id": "100634", + "name": "Peski", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.21626000", + "longitude": "38.76262000" + }, + { + "id": "100657", + "name": "Petrovo-Dal’neye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74679000", + "longitude": "37.17347000" + }, + { + "id": "100661", + "name": "Petrovskaya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55000000", + "longitude": "37.78333000" + }, + { + "id": "100683", + "name": "Pirogovskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.97806000", + "longitude": "37.73361000" + }, + { + "id": "100724", + "name": "Podolsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.42419000", + "longitude": "37.55472000" + }, + { + "id": "100725", + "name": "Podosinki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.20837000", + "longitude": "37.54741000" + }, + { + "id": "100772", + "name": "Popovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.07523000", + "longitude": "37.66727000" + }, + { + "id": "100788", + "name": "Posëlok Mar’ino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55000000", + "longitude": "37.32000000" + }, + { + "id": "100783", + "name": "Poselok Turisticheskogo pansionata \"Klyazminskoe vodohranilische\"", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.99507000", + "longitude": "37.67199000" + }, + { + "id": "100790", + "name": "Povarovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.06667000", + "longitude": "37.05000000" + }, + { + "id": "100791", + "name": "Povedniki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.97000000", + "longitude": "37.60000000" + }, + { + "id": "100803", + "name": "Pravdinskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.06034000", + "longitude": "37.86266000" + }, + { + "id": "100865", + "name": "Proletarskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.02219000", + "longitude": "37.39019000" + }, + { + "id": "100871", + "name": "Protvino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.86821000", + "longitude": "37.21583000" + }, + { + "id": "100894", + "name": "Purshevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72124000", + "longitude": "38.03277000" + }, + { + "id": "100895", + "name": "Pushchino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.83373000", + "longitude": "37.61138000" + }, + { + "id": "100898", + "name": "Pushkino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.01722000", + "longitude": "37.86667000" + }, + { + "id": "100900", + "name": "Pushkinskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.98633000", + "longitude": "37.86122000" + }, + { + "id": "100925", + "name": "Radovitskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.12820000", + "longitude": "39.79560000" + }, + { + "id": "100926", + "name": "Radumlya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.06901000", + "longitude": "37.14979000" + }, + { + "id": "100928", + "name": "Raduzhnyy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.13680000", + "longitude": "38.72803000" + }, + { + "id": "100931", + "name": "Rakhmanovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74401000", + "longitude": "38.61124000" + }, + { + "id": "100935", + "name": "Ramenskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56667000", + "longitude": "38.23333000" + }, + { + "id": "100936", + "name": "Ramenskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56694000", + "longitude": "38.23028000" + }, + { + "id": "100953", + "name": "Razvilka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59209000", + "longitude": "37.74085000" + }, + { + "id": "100956", + "name": "Rechitsy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59754000", + "longitude": "38.47134000" + }, + { + "id": "100965", + "name": "Reshetnikovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.45000000", + "longitude": "36.56667000" + }, + { + "id": "100967", + "name": "Reutov", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76111000", + "longitude": "37.85750000" + }, + { + "id": "100978", + "name": "Rodniki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65204000", + "longitude": "38.06685000" + }, + { + "id": "100981", + "name": "Rogachëvo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.43333000", + "longitude": "37.16667000" + }, + { + "id": "100997", + "name": "Roshal’", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66853000", + "longitude": "39.87488000" + }, + { + "id": "101014", + "name": "Rozhdestveno", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.85444000", + "longitude": "37.04935000" + }, + { + "id": "101027", + "name": "Rumyantsevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.97278000", + "longitude": "36.53417000" + }, + { + "id": "101037", + "name": "Ruza", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.69898000", + "longitude": "36.19522000" + }, + { + "id": "101040", + "name": "Ruzskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70000000", + "longitude": "36.25000000" + }, + { + "id": "101054", + "name": "Rybnoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41349000", + "longitude": "37.62180000" + }, + { + "id": "101059", + "name": "Rzhavki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "37.25000000" + }, + { + "id": "101081", + "name": "Saltykovka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76679000", + "longitude": "37.93533000" + }, + { + "id": "101136", + "name": "Savinskaya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.37013000", + "longitude": "39.99233000" + }, + { + "id": "101138", + "name": "Savvinskaya Sloboda", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72343000", + "longitude": "36.80347000" + }, + { + "id": "101160", + "name": "Selyatino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.51514000", + "longitude": "36.97746000" + }, + { + "id": "101170", + "name": "Semënovskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.68333000", + "longitude": "37.55000000" + }, + { + "id": "101168", + "name": "Semkhoz", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.28333000", + "longitude": "38.06667000" + }, + { + "id": "101175", + "name": "Serebryano-Prudskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50000000", + "longitude": "38.66667000" + }, + { + "id": "101177", + "name": "Serebryanyye Prudy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.46923000", + "longitude": "38.72095000" + }, + { + "id": "101182", + "name": "Sergiyev Posad", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.30000000", + "longitude": "38.13333000" + }, + { + "id": "101183", + "name": "Sergiyevo-Posadskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.33333000", + "longitude": "38.16667000" + }, + { + "id": "101191", + "name": "Serpukhov", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91578000", + "longitude": "37.41114000" + }, + { + "id": "101192", + "name": "Serpukhovskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "37.41667000" + }, + { + "id": "101207", + "name": "Severnyy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.73333000", + "longitude": "37.65000000" + }, + { + "id": "101232", + "name": "Shaburnovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55000000", + "longitude": "37.93333000" + }, + { + "id": "101237", + "name": "Shakhovskaya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03147000", + "longitude": "35.50697000" + }, + { + "id": "101238", + "name": "Shakhovskoy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00192000", + "longitude": "35.49537000" + }, + { + "id": "101272", + "name": "Shatura", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.57253000", + "longitude": "39.53682000" + }, + { + "id": "101273", + "name": "Shaturtorf", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56711000", + "longitude": "39.42129000" + }, + { + "id": "101281", + "name": "Shchëlkovskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "38.16667000" + }, + { + "id": "101275", + "name": "Shchelkovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.92497000", + "longitude": "37.97218000" + }, + { + "id": "101299", + "name": "Shemëtovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.52764000", + "longitude": "38.07518000" + }, + { + "id": "101306", + "name": "Sheremet’yevskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.97583000", + "longitude": "37.49417000" + }, + { + "id": "101308", + "name": "Shevlyakovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.39733000", + "longitude": "36.85973000" + }, + { + "id": "101332", + "name": "Shishkin Les", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.41057000", + "longitude": "37.18853000" + }, + { + "id": "101387", + "name": "Skhodnya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.94806000", + "longitude": "37.29778000" + }, + { + "id": "101388", + "name": "Skolkovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.68784000", + "longitude": "37.36836000" + }, + { + "id": "101391", + "name": "Skoropuskovskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.36667000", + "longitude": "38.16667000" + }, + { + "id": "101422", + "name": "Snegiri", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88867000", + "longitude": "37.02421000" + }, + { + "id": "101430", + "name": "Sofrino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.15000000", + "longitude": "37.93333000" + }, + { + "id": "101453", + "name": "Solnechnogorsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.18333000", + "longitude": "36.98333000" + }, + { + "id": "101454", + "name": "Solnechnogorskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08333000", + "longitude": "37.08333000" + }, + { + "id": "101525", + "name": "Spas-Zaulok", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.48333000", + "longitude": "36.56667000" + }, + { + "id": "101560", + "name": "Staraya Kupavna", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80799000", + "longitude": "38.18050000" + }, + { + "id": "101622", + "name": "Stolbovaya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25021000", + "longitude": "37.49249000" + }, + { + "id": "101632", + "name": "Stromyn’", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.04347000", + "longitude": "38.48318000" + }, + { + "id": "101638", + "name": "Stupino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.90083000", + "longitude": "38.07083000" + }, + { + "id": "101639", + "name": "Stupinskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "38.08333000" + }, + { + "id": "101695", + "name": "Svatkovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.38333000", + "longitude": "38.21667000" + }, + { + "id": "101698", + "name": "Sverdlovskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.90968000", + "longitude": "38.14978000" + }, + { + "id": "101723", + "name": "Sychëvo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.06196000", + "longitude": "38.71384000" + }, + { + "id": "101750", + "name": "Taldom", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.73333000", + "longitude": "37.53333000" + }, + { + "id": "101751", + "name": "Taldomskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "37.58333000" + }, + { + "id": "101769", + "name": "Tarasovka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.95722000", + "longitude": "37.84333000" + }, + { + "id": "101841", + "name": "Teryayevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16974000", + "longitude": "36.12545000" + }, + { + "id": "101884", + "name": "Tomilino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65619000", + "longitude": "37.94713000" + }, + { + "id": "101922", + "name": "Troitskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.30000000", + "longitude": "38.53333000" + }, + { + "id": "101960", + "name": "Tuchkovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.60111000", + "longitude": "36.46806000" + }, + { + "id": "101961", + "name": "Tugolesskiy Bor", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55051000", + "longitude": "39.82422000" + }, + { + "id": "102021", + "name": "Udel’naya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.62536000", + "longitude": "38.00285000" + }, + { + "id": "102154", + "name": "Uvarovka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.52778000", + "longitude": "35.60611000" + }, + { + "id": "102167", + "name": "Uzunovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.53858000", + "longitude": "38.61734000" + }, + { + "id": "102227", + "name": "Verbilki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.53333000", + "longitude": "37.60000000" + }, + { + "id": "102229", + "name": "Vereya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.34472000", + "longitude": "36.17194000" + }, + { + "id": "102302", + "name": "Vidnoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55239000", + "longitude": "37.70967000" + }, + { + "id": "102314", + "name": "Vinogradovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.93333000", + "longitude": "37.55000000" + }, + { + "id": "102317", + "name": "Vishnyakovskiye Dachi", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76470000", + "longitude": "38.13334000" + }, + { + "id": "102332", + "name": "Vniissok", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.65639000", + "longitude": "37.21194000" + }, + { + "id": "102353", + "name": "Volodarskogo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50349000", + "longitude": "37.94174000" + }, + { + "id": "102356", + "name": "Volokolamsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03361000", + "longitude": "35.96944000" + }, + { + "id": "102357", + "name": "Volokolamskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08886000", + "longitude": "35.99248000" + }, + { + "id": "102388", + "name": "Voskresensk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31733000", + "longitude": "38.65264000" + }, + { + "id": "102390", + "name": "Voskresenskiy Rayon", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "38.75000000" + }, + { + "id": "102402", + "name": "Vostryakovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "37.45000000" + }, + { + "id": "102449", + "name": "Vysokovsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.31667000", + "longitude": "36.55000000" + }, + { + "id": "102465", + "name": "Yakhroma", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.30000000", + "longitude": "37.48333000" + }, + { + "id": "102471", + "name": "Yakovlevskoye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.44194000", + "longitude": "37.94806000" + }, + { + "id": "102477", + "name": "Yam", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.48785000", + "longitude": "37.74458000" + }, + { + "id": "102479", + "name": "Yamkino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.92088000", + "longitude": "38.40417000" + }, + { + "id": "102497", + "name": "Yaropolets", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13333000", + "longitude": "35.83317000" + }, + { + "id": "102525", + "name": "Yegor’yevsk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.38283000", + "longitude": "39.03233000" + }, + { + "id": "102549", + "name": "Yel’digino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11667000", + "longitude": "37.81667000" + }, + { + "id": "102569", + "name": "Yermolino", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.14887000", + "longitude": "37.49112000" + }, + { + "id": "102573", + "name": "Yershovo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76911000", + "longitude": "36.85929000" + }, + { + "id": "102583", + "name": "Yubileyny", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.93333000", + "longitude": "37.83333000" + }, + { + "id": "102628", + "name": "Zagoryanskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.93250000", + "longitude": "37.95806000" + }, + { + "id": "102649", + "name": "Zaprudnya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.56667000", + "longitude": "37.43333000" + }, + { + "id": "102650", + "name": "Zaraysk", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.76050000", + "longitude": "38.87841000" + }, + { + "id": "102656", + "name": "Zarech’ye", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.68667000", + "longitude": "37.39240000" + }, + { + "id": "102663", + "name": "Zarya", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75533000", + "longitude": "38.09578000" + }, + { + "id": "102700", + "name": "Zelenogradskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.10000000", + "longitude": "37.91667000" + }, + { + "id": "102715", + "name": "Zhavoronki", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.64943000", + "longitude": "37.10101000" + }, + { + "id": "102717", + "name": "Zheleznodorozhnyy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74400000", + "longitude": "38.01684000" + }, + { + "id": "102732", + "name": "Zhilëvo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.01408000", + "longitude": "38.01106000" + }, + { + "id": "102737", + "name": "Zhitnevo", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.34233000", + "longitude": "37.91464000" + }, + { + "id": "102740", + "name": "Zhukovka", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.48333000", + "longitude": "37.51667000" + }, + { + "id": "102743", + "name": "Zhukovskiy", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59528000", + "longitude": "38.12028000" + }, + { + "id": "102778", + "name": "Zvenigorod", + "state_id": 1882, + "state_code": "MOS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.73401000", + "longitude": "36.85918000" + }, + { + "id": "97488", + "name": "Abram Mys", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.97839000", + "longitude": "33.01926000" + }, + { + "id": "97511", + "name": "Afrikanda", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.44289000", + "longitude": "32.78279000" + }, + { + "id": "97556", + "name": "Alakurtti", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "66.96720000", + "longitude": "30.34905000" + }, + { + "id": "97649", + "name": "Apatity", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.56414000", + "longitude": "33.40310000" + }, + { + "id": "98445", + "name": "Gadzhiyevo", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.25506000", + "longitude": "33.33616000" + }, + { + "id": "98837", + "name": "Kandalaksha", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.16200000", + "longitude": "32.41229000" + }, + { + "id": "98838", + "name": "Kandalakshskiy rayon", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.16622000", + "longitude": "32.44606000" + }, + { + "id": "99064", + "name": "Kirovsk", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.61475000", + "longitude": "33.67274000" + }, + { + "id": "99136", + "name": "Kola", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.88062000", + "longitude": "33.01842000" + }, + { + "id": "99156", + "name": "Kol’skiy Rayon", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.50000000", + "longitude": "32.00000000" + }, + { + "id": "99252", + "name": "Kovdor", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.56616000", + "longitude": "30.47576000" + }, + { + "id": "99253", + "name": "Kovdorskiy Rayon", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.56667000", + "longitude": "30.40000000" + }, + { + "id": "99673", + "name": "Lovozero", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.00638000", + "longitude": "35.01589000" + }, + { + "id": "99674", + "name": "Lovozerskiy Rayon", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.00000000", + "longitude": "36.00000000" + }, + { + "id": "99950", + "name": "Molochnyy", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.85389000", + "longitude": "33.02046000" + }, + { + "id": "99957", + "name": "Monchegorsk", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.93972000", + "longitude": "32.87389000" + }, + { + "id": "100009", + "name": "Murmansk", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.97917000", + "longitude": "33.09251000" + }, + { + "id": "100010", + "name": "Murmashi", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.81542000", + "longitude": "32.81147000" + }, + { + "id": "100130", + "name": "Nikel", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.41285000", + "longitude": "30.22198000" + }, + { + "id": "100420", + "name": "Olenegorsk", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.14320000", + "longitude": "33.25287000" + }, + { + "id": "100497", + "name": "Ostrovnoy", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.05306000", + "longitude": "39.51306000" + }, + { + "id": "100584", + "name": "Pechenga", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.52587000", + "longitude": "31.17027000" + }, + { + "id": "100585", + "name": "Pechengskiy Rayon", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.00000000", + "longitude": "30.00000000" + }, + { + "id": "100762", + "name": "Polyarnyy", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.19889000", + "longitude": "33.44778000" + }, + { + "id": "100763", + "name": "Polyarnyye Zori", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.36611000", + "longitude": "32.49806000" + }, + { + "id": "100796", + "name": "Poyakonda", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "66.59428000", + "longitude": "32.82088000" + }, + { + "id": "100968", + "name": "Revda", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "67.93710000", + "longitude": "34.56149000" + }, + { + "id": "101002", + "name": "Roslyakovo", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.04303000", + "longitude": "33.19906000" + }, + { + "id": "101069", + "name": "Safonovo", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.06043000", + "longitude": "33.29523000" + }, + { + "id": "101218", + "name": "Severomorsk", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.06889000", + "longitude": "33.41622000" + }, + { + "id": "101219", + "name": "Severomorsk-3", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.87862000", + "longitude": "33.72631000" + }, + { + "id": "101338", + "name": "Shonguy", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.75261000", + "longitude": "33.14595000" + }, + { + "id": "101424", + "name": "Snezhnogorsk", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.19333000", + "longitude": "33.25314000" + }, + { + "id": "101831", + "name": "Teribërka", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.16088000", + "longitude": "35.14527000" + }, + { + "id": "101839", + "name": "Terskiy Rayon", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "66.91667000", + "longitude": "35.00000000" + }, + { + "id": "102055", + "name": "Umba", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "66.68706000", + "longitude": "34.34291000" + }, + { + "id": "102241", + "name": "Verkhnetulomskiy", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.60727000", + "longitude": "31.79621000" + }, + { + "id": "102303", + "name": "Vidyayevo", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.31914000", + "longitude": "32.80488000" + }, + { + "id": "102446", + "name": "Vysokiy", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "68.13583000", + "longitude": "33.41917000" + }, + { + "id": "102645", + "name": "Zaozërsk", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.40052000", + "longitude": "32.44761000" + }, + { + "id": "102647", + "name": "Zapolyarnyy", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "69.41541000", + "longitude": "30.81355000" + }, + { + "id": "102692", + "name": "Zelenoborskiy", + "state_id": 1843, + "state_code": "MUR", + "country_id": 182, + "country_code": "RU", + "latitude": "66.84500000", + "longitude": "32.36222000" + }, + { + "id": "98710", + "name": "Iskateley", + "state_id": 1836, + "state_code": "NEN", + "country_id": 182, + "country_code": "RU", + "latitude": "67.68026000", + "longitude": "53.15117000" + }, + { + "id": "100057", + "name": "Nar'yan-Mar", + "state_id": 1836, + "state_code": "NEN", + "country_id": 182, + "country_code": "RU", + "latitude": "67.63869000", + "longitude": "53.00371000" + }, + { + "id": "97510", + "name": "Afonino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.26201000", + "longitude": "44.09503000" + }, + { + "id": "97691", + "name": "Ar’ya", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.49146000", + "longitude": "45.96691000" + }, + { + "id": "97655", + "name": "Ardatov", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.24205000", + "longitude": "43.09699000" + }, + { + "id": "97657", + "name": "Ardatovskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25000000", + "longitude": "43.08333000" + }, + { + "id": "97688", + "name": "Arzamas", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.39485000", + "longitude": "43.83992000" + }, + { + "id": "97689", + "name": "Arzamasskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "43.75000000" + }, + { + "id": "97741", + "name": "Babino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.22564000", + "longitude": "43.62380000" + }, + { + "id": "97954", + "name": "Blizhne-Pesochnoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.34560000", + "longitude": "42.10150000" + }, + { + "id": "97968", + "name": "Bogorodsk", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.10513000", + "longitude": "43.51294000" + }, + { + "id": "97969", + "name": "Bogorodskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08333000", + "longitude": "43.50000000" + }, + { + "id": "98003", + "name": "Bol’sheboldinskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "45.25000000" + }, + { + "id": "98012", + "name": "Bol’shoye Boldino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00588000", + "longitude": "45.31419000" + }, + { + "id": "98014", + "name": "Bol’shoye Kozino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.40397000", + "longitude": "43.71424000" + }, + { + "id": "98015", + "name": "Bol’shoye Murashkino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.78261000", + "longitude": "44.77541000" + }, + { + "id": "98019", + "name": "Bor", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.35808000", + "longitude": "44.07477000" + }, + { + "id": "98021", + "name": "Bor Urban Okrug", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.35325000", + "longitude": "44.09010000" + }, + { + "id": "98078", + "name": "Burevestnik", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.14403000", + "longitude": "43.78832000" + }, + { + "id": "98087", + "name": "Buturlino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56673000", + "longitude": "44.89738000" + }, + { + "id": "98175", + "name": "Chernukha", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59739000", + "longitude": "43.75560000" + }, + { + "id": "98202", + "name": "Chistoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.53753000", + "longitude": "43.00445000" + }, + { + "id": "98206", + "name": "Chkalovsk", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.76776000", + "longitude": "43.25135000" + }, + { + "id": "98239", + "name": "Dal’nekonstantinovskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "44.08333000" + }, + { + "id": "98240", + "name": "Dal’neye Konstantinovo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.81025000", + "longitude": "44.09595000" + }, + { + "id": "98278", + "name": "Diveyevo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.04329000", + "longitude": "43.24178000" + }, + { + "id": "98322", + "name": "Doschatoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.38860000", + "longitude": "42.10320000" + }, + { + "id": "98367", + "name": "Dzerzhinsk", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.24143000", + "longitude": "43.45539000" + }, + { + "id": "98436", + "name": "Frolishchi", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.42177000", + "longitude": "42.65187000" + }, + { + "id": "98448", + "name": "Gagino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.23142000", + "longitude": "45.03386000" + }, + { + "id": "98488", + "name": "Gidrotorf", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.47562000", + "longitude": "43.53813000" + }, + { + "id": "98517", + "name": "Gorbatov", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13110000", + "longitude": "43.06363000" + }, + { + "id": "98518", + "name": "Gorbatovka", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25716000", + "longitude": "43.74577000" + }, + { + "id": "98558", + "name": "Gorodets", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.65493000", + "longitude": "43.47273000" + }, + { + "id": "98559", + "name": "Gorodetskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "43.75000000" + }, + { + "id": "98585", + "name": "Gremyachevo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.39193000", + "longitude": "43.02734000" + }, + { + "id": "98648", + "name": "Ilyinogorsk", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.22775000", + "longitude": "42.95385000" + }, + { + "id": "98662", + "name": "Imeni M. I. Kalinina", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.17926000", + "longitude": "44.33098000" + }, + { + "id": "98666", + "name": "Imeni Stepana Razina", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "54.89320000", + "longitude": "44.29627000" + }, + { + "id": "99114", + "name": "Knyaginino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.82278000", + "longitude": "45.03489000" + }, + { + "id": "99254", + "name": "Kovernino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.12818000", + "longitude": "43.81350000" + }, + { + "id": "99279", + "name": "Krasnaya Gorka", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.38666000", + "longitude": "46.10925000" + }, + { + "id": "99330", + "name": "Krasnooktyabr’skiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "45.58333000" + }, + { + "id": "99381", + "name": "Krasnyye Baki", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.13100000", + "longitude": "45.15992000" + }, + { + "id": "99411", + "name": "Kstovo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.14733000", + "longitude": "44.19787000" + }, + { + "id": "99430", + "name": "Kulebaki", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.41333000", + "longitude": "42.53250000" + }, + { + "id": "99630", + "name": "Linda", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.61571000", + "longitude": "44.09544000" + }, + { + "id": "99687", + "name": "Lukino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.44183000", + "longitude": "43.62932000" + }, + { + "id": "99690", + "name": "Lukoyanov", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.02772000", + "longitude": "44.47865000" + }, + { + "id": "99691", + "name": "Lukoyanovskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "44.50000000" + }, + { + "id": "99707", + "name": "Lyskovo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03282000", + "longitude": "45.04220000" + }, + { + "id": "99999", + "name": "Mukhtolovo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.46751000", + "longitude": "43.19973000" + }, + { + "id": "100000", + "name": "Mulino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.28923000", + "longitude": "42.92005000" + }, + { + "id": "100070", + "name": "Navashino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.54410000", + "longitude": "42.19680000" + }, + { + "id": "100089", + "name": "Neklyudovo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41421000", + "longitude": "43.97721000" + }, + { + "id": "100173", + "name": "Nizhniy Novgorod", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.32867000", + "longitude": "44.00205000" + }, + { + "id": "100199", + "name": "Novaya Balakhna", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.48989000", + "longitude": "43.60114000" + }, + { + "id": "100308", + "name": "Novosmolinskiy", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.28410000", + "longitude": "43.05071000" + }, + { + "id": "100533", + "name": "Pamyat’ Parizhskoy Kommuny", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.10480000", + "longitude": "44.49520000" + }, + { + "id": "100570", + "name": "Pavlovo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.96860000", + "longitude": "43.09120000" + }, + { + "id": "100578", + "name": "Pavlovskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "43.00000000" + }, + { + "id": "100609", + "name": "Perevoz", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.59613000", + "longitude": "44.54461000" + }, + { + "id": "100614", + "name": "Pervomaysk", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "54.86890000", + "longitude": "43.80272000" + }, + { + "id": "100616", + "name": "Pervomayskiy", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.61474000", + "longitude": "43.35825000" + }, + { + "id": "100630", + "name": "Pervoye Maya", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16403000", + "longitude": "44.71955000" + }, + { + "id": "100672", + "name": "Pil’na", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55394000", + "longitude": "45.92194000" + }, + { + "id": "100673", + "name": "Pil’ninskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58333000", + "longitude": "45.91667000" + }, + { + "id": "100692", + "name": "Pizhma", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.86418000", + "longitude": "47.11714000" + }, + { + "id": "100708", + "name": "Pochinki", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "54.69875000", + "longitude": "44.86678000" + }, + { + "id": "100709", + "name": "Pochinkovskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "44.83333000" + }, + { + "id": "100723", + "name": "Podnov’ye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.30610000", + "longitude": "44.09244000" + }, + { + "id": "100874", + "name": "Prudy", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.57380000", + "longitude": "46.27176000" + }, + { + "id": "100891", + "name": "Purekh", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.64684000", + "longitude": "43.06772000" + }, + { + "id": "100914", + "name": "Pyra", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.29527000", + "longitude": "43.35274000" + }, + { + "id": "100921", + "name": "Rabotki", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.04147000", + "longitude": "44.60265000" + }, + { + "id": "100964", + "name": "Reshetikha", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.21566000", + "longitude": "43.28802000" + }, + { + "id": "101122", + "name": "Sarov", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "54.93583000", + "longitude": "43.32352000" + }, + { + "id": "101131", + "name": "Satis", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "54.92290000", + "longitude": "43.22977000" + }, + { + "id": "101134", + "name": "Savasleyka", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.46060000", + "longitude": "42.32070000" + }, + { + "id": "101145", + "name": "Sechenovo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.22444000", + "longitude": "45.89056000" + }, + { + "id": "101146", + "name": "Sechenovskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16667000", + "longitude": "45.91667000" + }, + { + "id": "101169", + "name": "Semënov", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.78749000", + "longitude": "44.49297000" + }, + { + "id": "101179", + "name": "Sergach", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.53079000", + "longitude": "45.46611000" + }, + { + "id": "101180", + "name": "Sergachskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58333000", + "longitude": "45.50000000" + }, + { + "id": "101242", + "name": "Shakhun’ya", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.67579000", + "longitude": "46.61136000" + }, + { + "id": "101259", + "name": "Sharanga", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.17749000", + "longitude": "46.53956000" + }, + { + "id": "101260", + "name": "Sharangskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.08333000", + "longitude": "46.41667000" + }, + { + "id": "101268", + "name": "Shatki", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.18874000", + "longitude": "44.12486000" + }, + { + "id": "101320", + "name": "Shimorskoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.32810000", + "longitude": "42.02560000" + }, + { + "id": "101380", + "name": "Sitniki", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.45529000", + "longitude": "44.06658000" + }, + { + "id": "101419", + "name": "Smolino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.27526000", + "longitude": "43.09109000" + }, + { + "id": "101443", + "name": "Sokol’skoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.14122000", + "longitude": "43.15895000" + }, + { + "id": "101495", + "name": "Sosnovskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "43.25000000" + }, + { + "id": "101497", + "name": "Sosnovskoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80549000", + "longitude": "43.16791000" + }, + { + "id": "101530", + "name": "Spasskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "45.75000000" + }, + { + "id": "101533", + "name": "Spasskoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.86048000", + "longitude": "45.69695000" + }, + { + "id": "101651", + "name": "Sukhobezvodnoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.04913000", + "longitude": "44.88909000" + }, + { + "id": "101679", + "name": "Surovatikha", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76516000", + "longitude": "43.89845000" + }, + { + "id": "101720", + "name": "Syava", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "58.01457000", + "longitude": "46.32216000" + }, + { + "id": "101773", + "name": "Taremskoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.92889000", + "longitude": "43.04433000" + }, + { + "id": "101889", + "name": "Tonkino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.37257000", + "longitude": "46.46294000" + }, + { + "id": "101891", + "name": "Tonshayevo", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.73598000", + "longitude": "47.01265000" + }, + { + "id": "101944", + "name": "Tsentral’nyy", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.29700000", + "longitude": "42.78869000" + }, + { + "id": "101969", + "name": "Tumbotino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.99926000", + "longitude": "43.02359000" + }, + { + "id": "102072", + "name": "Urazovka", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.40126000", + "longitude": "45.61860000" + }, + { + "id": "102076", + "name": "Uren’", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.45516000", + "longitude": "45.78522000" + }, + { + "id": "102168", + "name": "Vacha", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80350000", + "longitude": "42.77090000" + }, + { + "id": "102169", + "name": "Vachskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "42.75000000" + }, + { + "id": "102170", + "name": "Vad", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.53009000", + "longitude": "44.21137000" + }, + { + "id": "102178", + "name": "Vakhtan", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.96592000", + "longitude": "46.68886000" + }, + { + "id": "102193", + "name": "Varnavino", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.40351000", + "longitude": "45.09164000" + }, + { + "id": "102194", + "name": "Varnavinskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.50000000", + "longitude": "44.91667000" + }, + { + "id": "102197", + "name": "Vasil’sursk", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13139000", + "longitude": "46.01600000" + }, + { + "id": "102295", + "name": "Vetluga", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.85574000", + "longitude": "45.78102000" + }, + { + "id": "102297", + "name": "Vetluzhskiy", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.17355000", + "longitude": "45.12272000" + }, + { + "id": "102298", + "name": "Vetluzhskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "57.75000000", + "longitude": "45.58333000" + }, + { + "id": "102307", + "name": "Vilya", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.24556000", + "longitude": "42.20889000" + }, + { + "id": "102329", + "name": "Vladimirskoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.82002000", + "longitude": "45.11843000" + }, + { + "id": "102351", + "name": "Volodarsk", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.23105000", + "longitude": "43.18767000" + }, + { + "id": "102384", + "name": "Vorotynets", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.06028000", + "longitude": "45.86330000" + }, + { + "id": "102387", + "name": "Vorsma", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.99062000", + "longitude": "43.27249000" + }, + { + "id": "102389", + "name": "Voskresenskiy Rayon", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "45.50000000" + }, + { + "id": "102393", + "name": "Voskresenskoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83806000", + "longitude": "45.43167000" + }, + { + "id": "102410", + "name": "Voznesenskoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "54.89000000", + "longitude": "42.75694000" + }, + { + "id": "102433", + "name": "Vyksa", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31750000", + "longitude": "42.17444000" + }, + { + "id": "102455", + "name": "Vyyezdnoye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "55.38154000", + "longitude": "43.78638000" + }, + { + "id": "102586", + "name": "Yuganets", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25080000", + "longitude": "43.23069000" + }, + { + "id": "102680", + "name": "Zavolzh’ye", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.64051000", + "longitude": "43.39446000" + }, + { + "id": "102702", + "name": "Zelyony Gorod", + "state_id": 1857, + "state_code": "NIZ", + "country_id": 182, + "country_code": "RU", + "latitude": "56.17833000", + "longitude": "44.07440000" + }, + { + "id": "97812", + "name": "Batetskiy", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.64610000", + "longitude": "30.30268000" + }, + { + "id": "97813", + "name": "Batetskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.58333000", + "longitude": "30.50000000" + }, + { + "id": "98034", + "name": "Borovichi", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.38778000", + "longitude": "33.91546000" + }, + { + "id": "98035", + "name": "Borovichskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50000000", + "longitude": "34.00000000" + }, + { + "id": "98214", + "name": "Chudovo", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.11667000", + "longitude": "31.68333000" + }, + { + "id": "98215", + "name": "Chudovskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.16667000", + "longitude": "31.83333000" + }, + { + "id": "98261", + "name": "Demyansk", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.64301000", + "longitude": "32.46600000" + }, + { + "id": "98262", + "name": "Demyanskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58333000", + "longitude": "32.75000000" + }, + { + "id": "98992", + "name": "Kholm", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.26667000", + "longitude": "32.85000000" + }, + { + "id": "98998", + "name": "Kholmskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.08333000", + "longitude": "31.33333000" + }, + { + "id": "99029", + "name": "Khvoynaya", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.90000000", + "longitude": "34.53333000" + }, + { + "id": "99030", + "name": "Khvoyninskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.91667000", + "longitude": "34.50000000" + }, + { + "id": "99301", + "name": "Krasnofarfornyy", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.13640000", + "longitude": "31.85023000" + }, + { + "id": "99387", + "name": "Krechevitsy", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.61703000", + "longitude": "31.40101000" + }, + { + "id": "99389", + "name": "Krestetskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.25000000", + "longitude": "32.50000000" + }, + { + "id": "99391", + "name": "Kresttsy", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.24520000", + "longitude": "32.51647000" + }, + { + "id": "99434", + "name": "Kulotino", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.45000000", + "longitude": "33.38333000" + }, + { + "id": "99722", + "name": "Lyubytino", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.81222000", + "longitude": "33.39222000" + }, + { + "id": "99723", + "name": "Lyubytinskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.83333000", + "longitude": "33.50000000" + }, + { + "id": "99753", + "name": "Malaya Vishera", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.84538000", + "longitude": "32.22218000" + }, + { + "id": "99766", + "name": "Malovisherskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.75000000", + "longitude": "32.50000000" + }, + { + "id": "99789", + "name": "Marevo", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.31461000", + "longitude": "32.08045000" + }, + { + "id": "99790", + "name": "Marevskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.33333000", + "longitude": "32.25000000" + }, + { + "id": "99973", + "name": "Moshenskoy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50000000", + "longitude": "34.75000000" + }, + { + "id": "99974", + "name": "Moshenskoye", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.51016000", + "longitude": "34.59108000" + }, + { + "id": "100080", + "name": "Nebolchi", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "59.12393000", + "longitude": "33.34537000" + }, + { + "id": "100213", + "name": "Novgorodskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.75000000", + "longitude": "31.25000000" + }, + { + "id": "100416", + "name": "Okulovka", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.40083000", + "longitude": "33.29083000" + }, + { + "id": "100417", + "name": "Okulovskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.41667000", + "longitude": "33.25000000" + }, + { + "id": "100454", + "name": "Opechenskiy Posad", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.27510000", + "longitude": "34.11731000" + }, + { + "id": "100537", + "name": "Pankovka", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50004000", + "longitude": "31.19990000" + }, + { + "id": "100547", + "name": "Parfino", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.97306000", + "longitude": "31.64806000" + }, + { + "id": "100548", + "name": "Parfinskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00000000", + "longitude": "31.66667000" + }, + { + "id": "100638", + "name": "Pestovo", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.59382000", + "longitude": "35.80244000" + }, + { + "id": "100639", + "name": "Pestovskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.66667000", + "longitude": "35.66667000" + }, + { + "id": "100712", + "name": "Poddor’ye", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.46947000", + "longitude": "31.11561000" + }, + { + "id": "100711", + "name": "Poddorskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.41667000", + "longitude": "31.25000000" + }, + { + "id": "100862", + "name": "Proletariy", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.43423000", + "longitude": "31.70462000" + }, + { + "id": "101321", + "name": "Shimsk", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.21201000", + "longitude": "30.71269000" + }, + { + "id": "101322", + "name": "Shimskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.21667000", + "longitude": "30.71667000" + }, + { + "id": "101473", + "name": "Sol’tsy", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.12387000", + "longitude": "30.32377000" + }, + { + "id": "101447", + "name": "Soletskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.08333000", + "longitude": "30.25000000" + }, + { + "id": "101563", + "name": "Staraya Russa", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.99439000", + "longitude": "31.36081000" + }, + { + "id": "101592", + "name": "Starorusskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00000000", + "longitude": "31.41667000" + }, + { + "id": "102036", + "name": "Uglovka", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.23917000", + "longitude": "33.51083000" + }, + { + "id": "102151", + "name": "Utorgosh", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.28127000", + "longitude": "30.25344000" + }, + { + "id": "102179", + "name": "Valday", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.97826000", + "longitude": "33.24737000" + }, + { + "id": "102180", + "name": "Valdayskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.91667000", + "longitude": "33.25000000" + }, + { + "id": "102211", + "name": "Velikiy Novgorod", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.52131000", + "longitude": "31.27104000" + }, + { + "id": "102347", + "name": "Volkhovskiy", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.58000000", + "longitude": "31.31641000" + }, + { + "id": "102363", + "name": "Volot", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.92778000", + "longitude": "30.70250000" + }, + { + "id": "102364", + "name": "Volotovskiy Rayon", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.83333000", + "longitude": "30.66667000" + }, + { + "id": "102521", + "name": "Yedrovo", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.91306000", + "longitude": "33.62028000" + }, + { + "id": "102660", + "name": "Zarubino", + "state_id": 1834, + "state_code": "NGR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.73500000", + "longitude": "33.47556000" + }, + { + "id": "97527", + "name": "Akademgorodok", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.85230000", + "longitude": "83.10600000" + }, + { + "id": "97751", + "name": "Bagan", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.10014000", + "longitude": "77.66462000" + }, + { + "id": "97790", + "name": "Barabinsk", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.35709000", + "longitude": "78.35697000" + }, + { + "id": "97805", + "name": "Baryshevo", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.95640000", + "longitude": "83.18220000" + }, + { + "id": "97888", + "name": "Berdsk", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75510000", + "longitude": "83.09670000" + }, + { + "id": "97997", + "name": "Bolotnoye", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.67167000", + "longitude": "84.39806000" + }, + { + "id": "98114", + "name": "Chany", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31205000", + "longitude": "76.76468000" + }, + { + "id": "98154", + "name": "Cherepanovo", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.22220000", + "longitude": "83.38100000" + }, + { + "id": "98219", + "name": "Chulym", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.09972000", + "longitude": "80.95722000" + }, + { + "id": "98318", + "name": "Dorogino", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.35980000", + "longitude": "83.31980000" + }, + { + "id": "98342", + "name": "Dubrovino", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.47180000", + "longitude": "83.29070000" + }, + { + "id": "98541", + "name": "Gornyy", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.11530000", + "longitude": "83.90590000" + }, + { + "id": "98711", + "name": "Iskitim", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.63660000", + "longitude": "83.30450000" + }, + { + "id": "98712", + "name": "Iskitimskiy Rayon", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "83.25000000" + }, + { + "id": "98869", + "name": "Karasuk", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "53.73772000", + "longitude": "78.04026000" + }, + { + "id": "98878", + "name": "Kargat", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.19556000", + "longitude": "80.28111000" + }, + { + "id": "99119", + "name": "Kochenëvo", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.02180000", + "longitude": "82.20200000" + }, + { + "id": "99121", + "name": "Kochki", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33583000", + "longitude": "80.48056000" + }, + { + "id": "99157", + "name": "Kol’tsovo", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.93760000", + "longitude": "83.18250000" + }, + { + "id": "99153", + "name": "Kolyvan’", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.30530000", + "longitude": "82.73910000" + }, + { + "id": "99329", + "name": "Krasnoobsk", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91980000", + "longitude": "82.99090000" + }, + { + "id": "99358", + "name": "Krasnozërskoye", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "53.98277000", + "longitude": "79.23735000" + }, + { + "id": "99392", + "name": "Krivodanovka", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.08810000", + "longitude": "82.65510000" + }, + { + "id": "99422", + "name": "Kudryashovskiy", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.09740000", + "longitude": "82.77420000" + }, + { + "id": "99451", + "name": "Kupino", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.36635000", + "longitude": "77.29805000" + }, + { + "id": "99493", + "name": "Kuybyshev", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.44753000", + "longitude": "78.32181000" + }, + { + "id": "99520", + "name": "Kyshtovka", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55498000", + "longitude": "76.62713000" + }, + { + "id": "99631", + "name": "Linëvo", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.45890000", + "longitude": "83.37640000" + }, + { + "id": "99640", + "name": "Listvyanskiy", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.43990000", + "longitude": "83.49840000" + }, + { + "id": "99812", + "name": "Maslyanino", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.34361000", + "longitude": "84.21111000" + }, + { + "id": "99813", + "name": "Maslyaninskiy Rayon", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50000000", + "longitude": "84.50000000" + }, + { + "id": "99938", + "name": "Mochishche", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.15860000", + "longitude": "83.12290000" + }, + { + "id": "99975", + "name": "Moshkovo", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.30530000", + "longitude": "83.61040000" + }, + { + "id": "99976", + "name": "Moshkovskiy Rayon", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.30000000", + "longitude": "83.61667000" + }, + { + "id": "100264", + "name": "Novolugovoye", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.97920000", + "longitude": "83.11380000" + }, + { + "id": "100302", + "name": "Novosibirsk", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.04150000", + "longitude": "82.93460000" + }, + { + "id": "100303", + "name": "Novosibirskiy Rayon", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "83.00000000" + }, + { + "id": "100394", + "name": "Ob’", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.98720000", + "longitude": "82.71660000" + }, + { + "id": "100458", + "name": "Ordynskiy Rayon", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33333000", + "longitude": "81.66667000" + }, + { + "id": "100459", + "name": "Ordynskoye", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.36560000", + "longitude": "81.89940000" + }, + { + "id": "100757", + "name": "Polovinnoye", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "53.75671000", + "longitude": "79.24327000" + }, + { + "id": "100861", + "name": "Prokudskoye", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00890000", + "longitude": "82.45740000" + }, + { + "id": "101066", + "name": "Sadovyy", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.13610000", + "longitude": "82.96590000" + }, + { + "id": "101205", + "name": "Severnoye", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.34912000", + "longitude": "78.36189000" + }, + { + "id": "101209", + "name": "Severnyy Rayon", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.33333000", + "longitude": "78.50000000" + }, + { + "id": "101444", + "name": "Sokur", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.20930000", + "longitude": "83.31900000" + }, + { + "id": "101555", + "name": "Stantsionno-Oyashinskiy", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.46640000", + "longitude": "83.82450000" + }, + { + "id": "101693", + "name": "Suzun", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "53.78410000", + "longitude": "82.31160000" + }, + { + "id": "101786", + "name": "Tashara", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.51950000", + "longitude": "83.50940000" + }, + { + "id": "101792", + "name": "Tatarsk", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.21903000", + "longitude": "75.98283000" + }, + { + "id": "101795", + "name": "Tatarskiy Rayon", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25000000", + "longitude": "76.00000000" + }, + { + "id": "101869", + "name": "Toguchin", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.23528000", + "longitude": "84.38583000" + }, + { + "id": "101878", + "name": "Tolmachëvo", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.98240000", + "longitude": "82.73630000" + }, + { + "id": "102012", + "name": "Ubinskoye", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.30675000", + "longitude": "79.68016000" + }, + { + "id": "102139", + "name": "Ust’-Tarka", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56715000", + "longitude": "75.70500000" + }, + { + "id": "102224", + "name": "Vengerovo", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.68485000", + "longitude": "76.74707000" + }, + { + "id": "102234", + "name": "Verkh-Tula", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.88390000", + "longitude": "82.77620000" + }, + { + "id": "102496", + "name": "Yarkovo", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.80560000", + "longitude": "82.59890000" + }, + { + "id": "102688", + "name": "Zdvinsk", + "state_id": 1888, + "state_code": "NVS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.70206000", + "longitude": "78.66105000" + }, + { + "id": "97735", + "name": "Azovo", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.69972000", + "longitude": "73.02367000" + }, + { + "id": "97891", + "name": "Beregovoy", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.17301000", + "longitude": "73.21984000" + }, + { + "id": "98005", + "name": "Bol’sherech’ye", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.09252000", + "longitude": "74.62716000" + }, + { + "id": "98162", + "name": "Cherlak", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.15500000", + "longitude": "74.80550000" + }, + { + "id": "98694", + "name": "Irtyshskiy", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.81426000", + "longitude": "73.58722000" + }, + { + "id": "98779", + "name": "Kalachinsk", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.05286000", + "longitude": "74.57511000" + }, + { + "id": "99145", + "name": "Kolosovka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.46779000", + "longitude": "73.61096000" + }, + { + "id": "99209", + "name": "Kormilovka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00264000", + "longitude": "74.10281000" + }, + { + "id": "99342", + "name": "Krasnoyarka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "73.11667000" + }, + { + "id": "99380", + "name": "Krasnyy Yar", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.24242000", + "longitude": "72.92635000" + }, + { + "id": "99402", + "name": "Krutaya Gorka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.36493000", + "longitude": "73.22310000" + }, + { + "id": "99404", + "name": "Krutinka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00550000", + "longitude": "71.51131000" + }, + { + "id": "99698", + "name": "Luzino", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.94811000", + "longitude": "73.03531000" + }, + { + "id": "99717", + "name": "Lyubinskiy", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.15421000", + "longitude": "72.69247000" + }, + { + "id": "100014", + "name": "Muromtsevo", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.37238000", + "longitude": "75.24175000" + }, + { + "id": "100016", + "name": "Muromtsevskiy Rayon", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41667000", + "longitude": "75.50000000" + }, + { + "id": "100079", + "name": "Nazyvayevsk", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.56975000", + "longitude": "71.35294000" + }, + { + "id": "100184", + "name": "Nizhnyaya Omka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.43375000", + "longitude": "74.94256000" + }, + { + "id": "100272", + "name": "Novoomskiy", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.84152000", + "longitude": "73.30174000" + }, + { + "id": "100326", + "name": "Novovarshavka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.17210000", + "longitude": "74.69460000" + }, + { + "id": "100397", + "name": "Odesskoye", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.21500000", + "longitude": "72.96510000" + }, + { + "id": "100406", + "name": "Okoneshnikovo", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.83767000", + "longitude": "75.08343000" + }, + { + "id": "100440", + "name": "Omsk", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.99244000", + "longitude": "73.36859000" + }, + { + "id": "100566", + "name": "Pavlogradka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.20240000", + "longitude": "73.55920000" + }, + { + "id": "100759", + "name": "Poltavka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.36629000", + "longitude": "71.76319000" + }, + { + "id": "101008", + "name": "Rostovka", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.38420000", + "longitude": "71.88913000" + }, + { + "id": "101029", + "name": "Russkaya Polyana", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "53.77944000", + "longitude": "73.88056000" + }, + { + "id": "101117", + "name": "Sargatskoye", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61006000", + "longitude": "73.49716000" + }, + { + "id": "101147", + "name": "Sedel’nikovskiy Rayon", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "75.50000000" + }, + { + "id": "101304", + "name": "Sherbakul’", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.63159000", + "longitude": "72.39635000" + }, + { + "id": "101768", + "name": "Tara", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "56.89436000", + "longitude": "74.37096000" + }, + { + "id": "101801", + "name": "Tavricheskoye", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58508000", + "longitude": "73.63950000" + }, + { + "id": "101845", + "name": "Tevriz", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.50900000", + "longitude": "72.40420000" + }, + { + "id": "101913", + "name": "Troitsk", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70128000", + "longitude": "72.23369000" + }, + { + "id": "102000", + "name": "Tyukalinsk", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "55.87321000", + "longitude": "72.19673000" + }, + { + "id": "102121", + "name": "Ust’-Ishim", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.69350000", + "longitude": "71.16650000" + }, + { + "id": "102324", + "name": "Vkhodnoy", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "54.95181000", + "longitude": "73.17108000" + }, + { + "id": "102763", + "name": "Znamenskoye", + "state_id": 1846, + "state_code": "OMS", + "country_id": 182, + "country_code": "RU", + "latitude": "57.12806000", + "longitude": "73.82821000" + }, + { + "id": "97485", + "name": "Abdulino", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.70000000", + "longitude": "53.66667000" + }, + { + "id": "97501", + "name": "Adamovka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.52230000", + "longitude": "59.93960000" + }, + { + "id": "97557", + "name": "Alandskoye", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.22611000", + "longitude": "59.79389000" + }, + { + "id": "97695", + "name": "Asekeyevo", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.57425000", + "longitude": "52.79724000" + }, + { + "id": "97877", + "name": "Belyayevka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.39742000", + "longitude": "56.41667000" + }, + { + "id": "98069", + "name": "Buguruslan", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "53.65540000", + "longitude": "52.44200000" + }, + { + "id": "98096", + "name": "Buzuluk", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.78070000", + "longitude": "52.26350000" + }, + { + "id": "98305", + "name": "Dombarovskiy", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "50.75870000", + "longitude": "59.53860000" + }, + { + "id": "98396", + "name": "Energetik", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.74450000", + "longitude": "58.79340000" + }, + { + "id": "98465", + "name": "Gay", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.46660000", + "longitude": "58.45520000" + }, + { + "id": "98645", + "name": "Ilek", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.52709000", + "longitude": "53.38306000" + }, + { + "id": "98872", + "name": "Kardailovo", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.53861000", + "longitude": "53.90417000" + }, + { + "id": "99149", + "name": "Koltubanovskiy", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.94070000", + "longitude": "52.02690000" + }, + { + "id": "99312", + "name": "Krasnogvardeyets", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.68040000", + "longitude": "52.36350000" + }, + { + "id": "99323", + "name": "Krasnokholm", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.59787000", + "longitude": "54.15670000" + }, + { + "id": "99345", + "name": "Krasnoyarskiy", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.96500000", + "longitude": "59.89667000" + }, + { + "id": "99365", + "name": "Krasnyy Kommunar", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.96436000", + "longitude": "55.36680000" + }, + { + "id": "99467", + "name": "Kurmanayevka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50930000", + "longitude": "52.06750000" + }, + { + "id": "99490", + "name": "Kuvandyk", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.47810000", + "longitude": "57.35520000" + }, + { + "id": "99513", + "name": "Kvarkeno", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08333000", + "longitude": "59.72500000" + }, + { + "id": "99514", + "name": "Kvarkenskiy Rayon", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16667000", + "longitude": "59.50000000" + }, + { + "id": "99816", + "name": "Matveyevka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.15000000", + "longitude": "56.18333000" + }, + { + "id": "99840", + "name": "Mednogorsk", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41280000", + "longitude": "57.59500000" + }, + { + "id": "100127", + "name": "Nezhinka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.76760000", + "longitude": "55.36940000" + }, + { + "id": "100157", + "name": "Nizhnepavlovka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.71324000", + "longitude": "54.80146000" + }, + { + "id": "100274", + "name": "Novoorsk", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.38100000", + "longitude": "58.98130000" + }, + { + "id": "100275", + "name": "Novoorskiy Rayon", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "59.00000000" + }, + { + "id": "100290", + "name": "Novorudnyy", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50260000", + "longitude": "58.18730000" + }, + { + "id": "100296", + "name": "Novosergiyevka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.09340000", + "longitude": "53.65280000" + }, + { + "id": "100316", + "name": "Novotroitsk", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.20301000", + "longitude": "58.32665000" + }, + { + "id": "100465", + "name": "Orenburg", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.77270000", + "longitude": "55.09880000" + }, + { + "id": "100480", + "name": "Orsk", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.20487000", + "longitude": "58.56685000" + }, + { + "id": "100608", + "name": "Perevolotskiy", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.87633000", + "longitude": "54.19378000" + }, + { + "id": "100702", + "name": "Pleshanovo", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83333000", + "longitude": "53.48333000" + }, + { + "id": "100718", + "name": "Podgorodnyaya Pokrovka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.82808000", + "longitude": "54.98740000" + }, + { + "id": "100821", + "name": "Prigorodnyy", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.76608000", + "longitude": "55.26648000" + }, + { + "id": "101076", + "name": "Sakmara", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.98438000", + "longitude": "55.33380000" + }, + { + "id": "101106", + "name": "Saraktash", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.78771000", + "longitude": "56.36091000" + }, + { + "id": "101107", + "name": "Saraktashskiy Rayon", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.83333000", + "longitude": "56.41667000" + }, + { + "id": "101204", + "name": "Severnoye", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "54.09347000", + "longitude": "52.54393000" + }, + { + "id": "101262", + "name": "Sharlyk", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.91667000", + "longitude": "54.75000000" + }, + { + "id": "101317", + "name": "Shil’da", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.81430000", + "longitude": "59.77440000" + }, + { + "id": "101472", + "name": "Sol’-Iletsk", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.16310000", + "longitude": "54.99176000" + }, + { + "id": "101477", + "name": "Sorochinsk", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.43380000", + "longitude": "53.15830000" + }, + { + "id": "101557", + "name": "Staraya Akkermanovka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.24669000", + "longitude": "58.23908000" + }, + { + "id": "101708", + "name": "Svetlyy", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "50.81833000", + "longitude": "60.85194000" + }, + { + "id": "101787", + "name": "Tashla", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.77157000", + "longitude": "52.74270000" + }, + { + "id": "101793", + "name": "Tatarskaya Kargala", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.94952000", + "longitude": "55.17314000" + }, + { + "id": "101906", + "name": "Totskoye", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.52478000", + "longitude": "52.76228000" + }, + { + "id": "102004", + "name": "Tyul’gan", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "52.34049000", + "longitude": "56.16604000" + }, + { + "id": "102515", + "name": "Yasnyy", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.03330000", + "longitude": "59.87420000" + }, + { + "id": "102540", + "name": "Yelizavetinka", + "state_id": 1886, + "state_code": "ORE", + "country_id": 182, + "country_code": "RU", + "latitude": "51.76732000", + "longitude": "59.74245000" + }, + { + "id": "97991", + "name": "Bolkhov", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.44295000", + "longitude": "36.00546000" + }, + { + "id": "97992", + "name": "Bolkhovskiy Rayon", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41667000", + "longitude": "36.00000000" + }, + { + "id": "98286", + "name": "Dmitrovsk-Orlovskiy", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50500000", + "longitude": "35.14640000" + }, + { + "id": "98496", + "name": "Glazunovka", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50057000", + "longitude": "36.31997000" + }, + { + "id": "99002", + "name": "Khomutovo", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.85386000", + "longitude": "37.43880000" + }, + { + "id": "99011", + "name": "Khotynets", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.12860000", + "longitude": "35.39660000" + }, + { + "id": "99148", + "name": "Kolpny", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.22823000", + "longitude": "37.03683000" + }, + { + "id": "99219", + "name": "Korsakovo", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.26767000", + "longitude": "37.35689000" + }, + { + "id": "99287", + "name": "Krasnaya Zarya", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.78250000", + "longitude": "37.68056000" + }, + { + "id": "99396", + "name": "Kromy", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.68762000", + "longitude": "35.76665000" + }, + { + "id": "99644", + "name": "Livny", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.42534000", + "longitude": "37.60689000" + }, + { + "id": "99762", + "name": "Maloarkhangel’sk", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.40024000", + "longitude": "36.50332000" + }, + { + "id": "99992", + "name": "Mtsensk", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.27657000", + "longitude": "36.57334000" + }, + { + "id": "100063", + "name": "Naryshkino", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.96778000", + "longitude": "35.72677000" + }, + { + "id": "100305", + "name": "Novosil’", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.97387000", + "longitude": "37.04048000" + }, + { + "id": "100482", + "name": "Orël", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.96508000", + "longitude": "36.07849000" + }, + { + "id": "100748", + "name": "Pokrovskoye", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.60968000", + "longitude": "36.87124000" + }, + { + "id": "101230", + "name": "Shablykino", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.85661000", + "longitude": "35.19637000" + }, + { + "id": "101483", + "name": "Soskovo", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.74752000", + "longitude": "35.38277000" + }, + { + "id": "101535", + "name": "Spasskoye-Lutovinovo", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.37012000", + "longitude": "36.62297000" + }, + { + "id": "101927", + "name": "Trosna", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.44460000", + "longitude": "35.77910000" + }, + { + "id": "102280", + "name": "Verkhov’ye", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.81165000", + "longitude": "37.24215000" + }, + { + "id": "102442", + "name": "Vyshneye Dolgoye", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.06302000", + "longitude": "37.40518000" + }, + { + "id": "102637", + "name": "Zalegoshch’", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.89890000", + "longitude": "36.89093000" + }, + { + "id": "102755", + "name": "Zmiyëvka", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.66697000", + "longitude": "36.37426000" + }, + { + "id": "102757", + "name": "Znamenka", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "52.89789000", + "longitude": "35.97703000" + }, + { + "id": "102762", + "name": "Znamenskoye", + "state_id": 1908, + "state_code": "ORL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.27869000", + "longitude": "35.69055000" + }, + { + "id": "97807", + "name": "Bashmakovo", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.21329000", + "longitude": "43.03420000" + }, + { + "id": "97838", + "name": "Bekovo", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.46632000", + "longitude": "43.71199000" + }, + { + "id": "97851", + "name": "Belinskiy", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.96474000", + "longitude": "43.41647000" + }, + { + "id": "97915", + "name": "Bessonovka", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.30968000", + "longitude": "45.04069000" + }, + { + "id": "97975", + "name": "Bogoslovka", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.20837000", + "longitude": "44.80133000" + }, + { + "id": "98106", + "name": "Chaadayevka", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.14270000", + "longitude": "45.91220000" + }, + { + "id": "98142", + "name": "Chemodanovka", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.23162000", + "longitude": "45.24738000" + }, + { + "id": "98560", + "name": "Gorodishche", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.27750000", + "longitude": "45.70170000" + }, + { + "id": "98574", + "name": "Grabovo", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.38751000", + "longitude": "45.06395000" + }, + { + "id": "98673", + "name": "Inderka", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.24846000", + "longitude": "46.25823000" + }, + { + "id": "98715", + "name": "Issa", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.87049000", + "longitude": "44.85781000" + }, + { + "id": "98717", + "name": "Issinskiy Rayon", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.83333000", + "longitude": "45.00000000" + }, + { + "id": "98836", + "name": "Kanayevka", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.10783000", + "longitude": "45.56144000" + }, + { + "id": "99151", + "name": "Kolyshley", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.70050000", + "longitude": "44.53670000" + }, + { + "id": "99180", + "name": "Kondol’", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.81889000", + "longitude": "45.05798000" + }, + { + "id": "99508", + "name": "Kuznetsk", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.11675000", + "longitude": "46.60037000" + }, + { + "id": "99509", + "name": "Kuznetskiy Rayon", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.08333000", + "longitude": "46.58333000" + }, + { + "id": "99586", + "name": "Lermontovo", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.99277000", + "longitude": "43.66141000" + }, + { + "id": "99662", + "name": "Lopatino", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.61949000", + "longitude": "45.81184000" + }, + { + "id": "99692", + "name": "Lunino", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.59176000", + "longitude": "45.22709000" + }, + { + "id": "99744", + "name": "Makhalino", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.08543000", + "longitude": "46.22108000" + }, + { + "id": "99752", + "name": "Malaya Serdoba", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.46610000", + "longitude": "44.95120000" + }, + { + "id": "99946", + "name": "Mokshan", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.43650000", + "longitude": "44.61322000" + }, + { + "id": "100060", + "name": "Narovchat", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.87654000", + "longitude": "43.69458000" + }, + { + "id": "100118", + "name": "Neverkino", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.78541000", + "longitude": "46.74174000" + }, + { + "id": "100119", + "name": "Neverkinskiy Rayon", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.75000000", + "longitude": "46.66667000" + }, + { + "id": "100144", + "name": "Nikol’sk", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.71886000", + "longitude": "46.07118000" + }, + { + "id": "100171", + "name": "Nizhniy Lomov", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.53041000", + "longitude": "43.67663000" + }, + { + "id": "100526", + "name": "Pachelma", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.24426000", + "longitude": "43.35205000" + }, + { + "id": "100595", + "name": "Penza", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.20066000", + "longitude": "45.00464000" + }, + { + "id": "100738", + "name": "Poim", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.02639000", + "longitude": "43.18721000" + }, + { + "id": "100782", + "name": "Poselki", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.13236000", + "longitude": "46.50307000" + }, + { + "id": "101033", + "name": "Russkiy Kameshkir", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.85955000", + "longitude": "46.08861000" + }, + { + "id": "101174", + "name": "Serdobsk", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.45861000", + "longitude": "44.21689000" + }, + { + "id": "101298", + "name": "Shemysheyka", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.89196000", + "longitude": "45.39282000" + }, + { + "id": "101493", + "name": "Sosnovoborsk", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.29066000", + "longitude": "46.24849000" + }, + { + "id": "101526", + "name": "Spassk", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.92559000", + "longitude": "43.18394000" + }, + { + "id": "101547", + "name": "Srednyaya Yelyuzan’", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.02410000", + "longitude": "45.95290000" + }, + { + "id": "101672", + "name": "Sura", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.88786000", + "longitude": "45.74192000" + }, + { + "id": "101680", + "name": "Sursk", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.07542000", + "longitude": "45.68461000" + }, + { + "id": "101759", + "name": "Tamala", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.54097000", + "longitude": "43.25145000" + }, + { + "id": "102171", + "name": "Vadinsk", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.69157000", + "longitude": "43.05744000" + }, + { + "id": "102255", + "name": "Verkhniy Lomov", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.46778000", + "longitude": "43.55111000" + }, + { + "id": "102283", + "name": "Verkhozim", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "52.71221000", + "longitude": "45.41803000" + }, + { + "id": "102651", + "name": "Zarechnyy", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.20356000", + "longitude": "45.19227000" + }, + { + "id": "102664", + "name": "Zasechnoye", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.10920000", + "longitude": "45.07936000" + }, + { + "id": "102704", + "name": "Zemetchino", + "state_id": 1909, + "state_code": "PNZ", + "country_id": 182, + "country_code": "RU", + "latitude": "53.49730000", + "longitude": "42.61632000" + }, + { + "id": "97568", + "name": "Aleksandrovsk", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.15810000", + "longitude": "57.56950000" + }, + { + "id": "97793", + "name": "Barda", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "56.92870000", + "longitude": "55.59620000" + }, + { + "id": "97895", + "name": "Berezniki", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.40910000", + "longitude": "56.82040000" + }, + { + "id": "97900", + "name": "Bershet’", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.73090000", + "longitude": "56.37830000" + }, + { + "id": "98122", + "name": "Chastyye", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.28876000", + "longitude": "54.97278000" + }, + { + "id": "98123", + "name": "Chaykovskaya", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.12880000", + "longitude": "55.53520000" + }, + { + "id": "98124", + "name": "Chaykovskiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "56.76864000", + "longitude": "54.11484000" + }, + { + "id": "98145", + "name": "Cherdyn’", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "60.40295000", + "longitude": "56.47868000" + }, + { + "id": "98164", + "name": "Chermoz", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.78130000", + "longitude": "56.15770000" + }, + { + "id": "98176", + "name": "Chernushka", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50722000", + "longitude": "56.07661000" + }, + { + "id": "98227", + "name": "Chusovoy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.30130000", + "longitude": "57.81310000" + }, + { + "id": "98296", + "name": "Dobryanka", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.46440000", + "longitude": "56.41270000" + }, + { + "id": "98420", + "name": "Ferma", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.90160000", + "longitude": "56.30640000" + }, + { + "id": "98427", + "name": "Filippovka", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.43730000", + "longitude": "57.01934000" + }, + { + "id": "98432", + "name": "Foki", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "56.69300000", + "longitude": "54.34985000" + }, + { + "id": "98437", + "name": "Froly", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.92140000", + "longitude": "56.27280000" + }, + { + "id": "98455", + "name": "Gamovo", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.86520000", + "longitude": "56.10560000" + }, + { + "id": "98467", + "name": "Gayny", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "60.30707000", + "longitude": "54.32412000" + }, + { + "id": "98534", + "name": "Gornozavodsk", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.37583000", + "longitude": "58.32111000" + }, + { + "id": "98586", + "name": "Gremyachinsk", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.56030000", + "longitude": "57.85100000" + }, + { + "id": "98601", + "name": "Gubakha", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.83862000", + "longitude": "57.55325000" + }, + { + "id": "98792", + "name": "Kalino", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.25040000", + "longitude": "57.60850000" + }, + { + "id": "98861", + "name": "Karagay", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.26669000", + "longitude": "54.93678000" + }, + { + "id": "98941", + "name": "Kerchevskiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.94560000", + "longitude": "56.29590000" + }, + { + "id": "99087", + "name": "Kizel", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.04709000", + "longitude": "57.64767000" + }, + { + "id": "99120", + "name": "Kochevo", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.59740000", + "longitude": "54.31470000" + }, + { + "id": "99160", + "name": "Komarikhinskiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.09790000", + "longitude": "57.11630000" + }, + { + "id": "99182", + "name": "Kondratovo", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.98040000", + "longitude": "56.10660000" + }, + { + "id": "99224", + "name": "Kosa", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.94490000", + "longitude": "54.98950000" + }, + { + "id": "99322", + "name": "Krasnokamsk", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.07960000", + "longitude": "55.75520000" + }, + { + "id": "99340", + "name": "Krasnovishersk", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "60.40783000", + "longitude": "57.08199000" + }, + { + "id": "99423", + "name": "Kudymkar", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.01306000", + "longitude": "54.65556000" + }, + { + "id": "99428", + "name": "Kukushtan", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.64640000", + "longitude": "56.49520000" + }, + { + "id": "99436", + "name": "Kultayevo", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.89480000", + "longitude": "55.93780000" + }, + { + "id": "99446", + "name": "Kungur", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.43680000", + "longitude": "56.95930000" + }, + { + "id": "99497", + "name": "Kuyeda", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "56.43110000", + "longitude": "55.58861000" + }, + { + "id": "99645", + "name": "Lobanovo", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.85950000", + "longitude": "56.30260000" + }, + { + "id": "99703", + "name": "Lyamino", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.28390000", + "longitude": "57.72500000" + }, + { + "id": "99710", + "name": "Lys’va", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.10861000", + "longitude": "57.80528000" + }, + { + "id": "99823", + "name": "Maykor", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.00470000", + "longitude": "55.87840000" + }, + { + "id": "99860", + "name": "Mendeleyevo", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.16976000", + "longitude": "54.99634000" + }, + { + "id": "100362", + "name": "Novyye Lyady", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.05520000", + "longitude": "56.61040000" + }, + { + "id": "100379", + "name": "Nyrob", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "60.73300000", + "longitude": "56.72024000" + }, + { + "id": "100380", + "name": "Nytva", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.94370000", + "longitude": "55.33960000" + }, + { + "id": "100396", + "name": "Ochër", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.89035000", + "longitude": "54.72019000" + }, + { + "id": "100402", + "name": "Okhansk", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.72030000", + "longitude": "55.38820000" + }, + { + "id": "100457", + "name": "Orda", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.19509000", + "longitude": "56.90908000" + }, + { + "id": "100484", + "name": "Osa", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.28300000", + "longitude": "55.45890000" + }, + { + "id": "100511", + "name": "Overyata", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.08417000", + "longitude": "55.86694000" + }, + { + "id": "100561", + "name": "Pashiya", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.43240000", + "longitude": "58.25620000" + }, + { + "id": "100576", + "name": "Pavlovskiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.84240000", + "longitude": "54.84357000" + }, + { + "id": "100611", + "name": "Perm", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.01046000", + "longitude": "56.25017000" + }, + { + "id": "100751", + "name": "Polazna", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.29220000", + "longitude": "56.41560000" + }, + { + "id": "100799", + "name": "Pozhva", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.09120000", + "longitude": "56.09010000" + }, + { + "id": "101111", + "name": "Sarany", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50000000", + "longitude": "58.88333000" + }, + { + "id": "101124", + "name": "Sars", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55017000", + "longitude": "57.13658000" + }, + { + "id": "101210", + "name": "Severnyy-Kospashskiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.08970000", + "longitude": "57.80390000" + }, + { + "id": "101239", + "name": "Shakhta", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.09050000", + "longitude": "57.65750000" + }, + { + "id": "101331", + "name": "Shirokovskiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.84110000", + "longitude": "57.78500000" + }, + { + "id": "101350", + "name": "Shumikhinskiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.74480000", + "longitude": "57.69260000" + }, + { + "id": "101382", + "name": "Siva", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.38204000", + "longitude": "54.38037000" + }, + { + "id": "101433", + "name": "Sokol", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.91460000", + "longitude": "56.04560000" + }, + { + "id": "101451", + "name": "Solikamsk", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.63160000", + "longitude": "56.76850000" + }, + { + "id": "101658", + "name": "Suksun", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.14310000", + "longitude": "57.39490000" + }, + { + "id": "101725", + "name": "Sylva", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.03270000", + "longitude": "56.77130000" + }, + { + "id": "102009", + "name": "Tëplaya Gora", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.52444000", + "longitude": "59.07278000" + }, + { + "id": "102032", + "name": "Ugleural’skiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.94430000", + "longitude": "57.59370000" + }, + { + "id": "102041", + "name": "Uinskoye", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "56.88174000", + "longitude": "56.58135000" + }, + { + "id": "102101", + "name": "Usol’ye", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.42190000", + "longitude": "56.68620000" + }, + { + "id": "102123", + "name": "Ust’-Kachka", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00380000", + "longitude": "55.67210000" + }, + { + "id": "102130", + "name": "Ust’-Kishert’", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.36540000", + "longitude": "57.24950000" + }, + { + "id": "102228", + "name": "Vereshchagino", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.07894000", + "longitude": "54.65570000" + }, + { + "id": "102237", + "name": "Verkhnechusovskiye Gorodki", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.16710000", + "longitude": "57.10860000" + }, + { + "id": "102518", + "name": "Yayva", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.33470000", + "longitude": "57.25920000" + }, + { + "id": "102547", + "name": "Yelovo", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.05381000", + "longitude": "54.92070000" + }, + { + "id": "102584", + "name": "Yubileynyy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.77940000", + "longitude": "57.78220000" + }, + { + "id": "102585", + "name": "Yug", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.72930000", + "longitude": "56.17200000" + }, + { + "id": "102587", + "name": "Yugo-Kamskiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.70260000", + "longitude": "55.59040000" + }, + { + "id": "102599", + "name": "Yurla", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.32510000", + "longitude": "54.32780000" + }, + { + "id": "102609", + "name": "Yus’vinskiy Rayon", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "59.08333000", + "longitude": "55.25000000" + }, + { + "id": "102621", + "name": "Yuzhnyy-Kospashskiy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.97250000", + "longitude": "57.75900000" + }, + { + "id": "102783", + "name": "Zvëzdnyy", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "57.73250000", + "longitude": "56.31472000" + }, + { + "id": "102789", + "name": "Zyukayka", + "state_id": 1871, + "state_code": "PER", + "country_id": 182, + "country_code": "RU", + "latitude": "58.20416000", + "longitude": "54.70784000" + }, + { + "id": "97644", + "name": "Anuchino", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.96571000", + "longitude": "133.05846000" + }, + { + "id": "97645", + "name": "Anuchinskiy Rayon", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.00000000", + "longitude": "133.00000000" + }, + { + "id": "97678", + "name": "Arsen’yev", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.15254000", + "longitude": "133.27791000" + }, + { + "id": "97686", + "name": "Artëm", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.35950000", + "longitude": "132.18887000" + }, + { + "id": "97789", + "name": "Barabash", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.19948000", + "longitude": "131.49185000" + }, + { + "id": "97946", + "name": "Blagodatnoye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.32285000", + "longitude": "132.09050000" + }, + { + "id": "98008", + "name": "Bol’shoy Kamen’", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.11283000", + "longitude": "132.35400000" + }, + { + "id": "98166", + "name": "Chernigovka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.34216000", + "longitude": "132.56937000" + }, + { + "id": "98167", + "name": "Chernigovskiy Rayon", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.33333000", + "longitude": "132.58333000" + }, + { + "id": "98182", + "name": "Chernyshëvka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.19971000", + "longitude": "133.13193000" + }, + { + "id": "98208", + "name": "Chkalovskoye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.83808000", + "longitude": "133.04332000" + }, + { + "id": "98217", + "name": "Chuguyevka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.16652000", + "longitude": "133.86495000" + }, + { + "id": "98237", + "name": "Dalnegorsk", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.55745000", + "longitude": "135.62090000" + }, + { + "id": "98238", + "name": "Dalnerechensk", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "45.93149000", + "longitude": "133.73906000" + }, + { + "id": "98323", + "name": "Dostoyevka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.32554000", + "longitude": "133.48134000" + }, + { + "id": "98356", + "name": "Dunay", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.87881000", + "longitude": "132.33521000" + }, + { + "id": "98392", + "name": "Emar", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.20417000", + "longitude": "132.15643000" + }, + { + "id": "98433", + "name": "Fokino", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.97429000", + "longitude": "132.40574000" + }, + { + "id": "98532", + "name": "Gornorechenskiy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.26555000", + "longitude": "135.11465000" + }, + { + "id": "98545", + "name": "Gornyye Klyuchi", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "45.24221000", + "longitude": "133.50601000" + }, + { + "id": "98580", + "name": "Grazhdanka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.21630000", + "longitude": "133.17706000" + }, + { + "id": "98730", + "name": "Ivanovka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.96879000", + "longitude": "132.48331000" + }, + { + "id": "98823", + "name": "Kamen’-Rybolov", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.74520000", + "longitude": "132.04650000" + }, + { + "id": "98814", + "name": "Kamenka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.45865000", + "longitude": "136.01403000" + }, + { + "id": "98912", + "name": "Kavalerovo", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.27221000", + "longitude": "135.05227000" + }, + { + "id": "98969", + "name": "Khasanskiy Rayon", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.75000000", + "longitude": "131.00000000" + }, + { + "id": "99007", + "name": "Khorol’", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.42631000", + "longitude": "132.07638000" + }, + { + "id": "99069", + "name": "Kirovskiy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "45.09272000", + "longitude": "133.50084000" + }, + { + "id": "99113", + "name": "Knevichi", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.39975000", + "longitude": "132.18808000" + }, + { + "id": "99275", + "name": "Kraskino", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.71071000", + "longitude": "130.78126000" + }, + { + "id": "99331", + "name": "Krasnorechenskiy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.62807000", + "longitude": "135.35262000" + }, + { + "id": "99550", + "name": "Lazo", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.38563000", + "longitude": "133.90610000" + }, + { + "id": "99551", + "name": "Lazovskiy Rayon", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25000000", + "longitude": "134.00000000" + }, + { + "id": "99605", + "name": "Lesozavodsk", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "45.47885000", + "longitude": "133.42825000" + }, + { + "id": "99635", + "name": "Lipovtsy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.20018000", + "longitude": "131.72373000" + }, + { + "id": "99642", + "name": "Livadiya", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.86820000", + "longitude": "132.67367000" + }, + { + "id": "99678", + "name": "Luchegorsk", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "46.47656000", + "longitude": "134.19532000" + }, + { + "id": "99679", + "name": "Luchki", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.28613000", + "longitude": "132.25975000" + }, + { + "id": "99700", + "name": "Lyalichi", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.07352000", + "longitude": "132.38991000" + }, + { + "id": "99898", + "name": "Mikhaylovka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.93283000", + "longitude": "132.00911000" + }, + { + "id": "99903", + "name": "Mikhaylovskiy Rayon", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.00000000", + "longitude": "132.00000000" + }, + { + "id": "99935", + "name": "Mnogoudobnoye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.46802000", + "longitude": "132.46675000" + }, + { + "id": "99955", + "name": "Monastyrishche", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.19641000", + "longitude": "132.50223000" + }, + { + "id": "100040", + "name": "Nadezhdinskiy Rayon", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.41667000", + "longitude": "132.00000000" + }, + { + "id": "100052", + "name": "Nakhodka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.81384000", + "longitude": "132.87348000" + }, + { + "id": "100271", + "name": "Novonikol’sk", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.85518000", + "longitude": "131.86257000" + }, + { + "id": "100285", + "name": "Novopokrovka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "45.85296000", + "longitude": "134.50035000" + }, + { + "id": "100298", + "name": "Novoshakhtinskiy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.02576000", + "longitude": "132.16583000" + }, + { + "id": "100312", + "name": "Novosysoyevka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.23470000", + "longitude": "133.36420000" + }, + { + "id": "100339", + "name": "Novyy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.36438000", + "longitude": "132.02109000" + }, + { + "id": "100431", + "name": "Ol’ga", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.74735000", + "longitude": "135.29090000" + }, + { + "id": "100555", + "name": "Partizansk", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.12165000", + "longitude": "133.12347000" + }, + { + "id": "100695", + "name": "Plastun", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.76077000", + "longitude": "136.28048000" + }, + { + "id": "100737", + "name": "Pogranichnyy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.40970000", + "longitude": "131.37780000" + }, + { + "id": "100743", + "name": "Pokrovka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.95331000", + "longitude": "131.63443000" + }, + { + "id": "100771", + "name": "Popova", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.96096000", + "longitude": "131.72494000" + }, + { + "id": "100811", + "name": "Preobrazheniye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.90117000", + "longitude": "133.90430000" + }, + { + "id": "100832", + "name": "Primorskiy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.09962000", + "longitude": "131.58938000" + }, + { + "id": "100905", + "name": "Putyatin", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.86179000", + "longitude": "132.41564000" + }, + { + "id": "100950", + "name": "Razdol’noye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.53894000", + "longitude": "131.89691000" + }, + { + "id": "100966", + "name": "Rettikhovka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.17038000", + "longitude": "132.77083000" + }, + { + "id": "100988", + "name": "Romanovka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.23294000", + "longitude": "132.45714000" + }, + { + "id": "101021", + "name": "Rudnaya Pristan’", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.35812000", + "longitude": "135.81478000" + }, + { + "id": "101026", + "name": "Rudnyy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.27759000", + "longitude": "134.96106000" + }, + { + "id": "101031", + "name": "Russkiy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.02240000", + "longitude": "131.86010000" + }, + { + "id": "101181", + "name": "Sergeyevka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.34909000", + "longitude": "133.35972000" + }, + { + "id": "101333", + "name": "Shkotovo", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.32092000", + "longitude": "132.35433000" + }, + { + "id": "101334", + "name": "Shkotovskiy Rayon", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.33333000", + "longitude": "132.58333000" + }, + { + "id": "101341", + "name": "Shtykovo", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.38918000", + "longitude": "132.36129000" + }, + { + "id": "101384", + "name": "Sivakovka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.47838000", + "longitude": "132.36718000" + }, + { + "id": "101404", + "name": "Slavyanka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.86413000", + "longitude": "131.38820000" + }, + { + "id": "101420", + "name": "Smolyaninovo", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.28801000", + "longitude": "132.45586000" + }, + { + "id": "101528", + "name": "Spassk-Dal’niy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.59884000", + "longitude": "132.82593000" + }, + { + "id": "101532", + "name": "Spasskiy Rayon", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.50000000", + "longitude": "133.00000000" + }, + { + "id": "101534", + "name": "Spasskoye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.61215000", + "longitude": "132.80007000" + }, + { + "id": "101700", + "name": "Svetlaya", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "46.54217000", + "longitude": "138.32973000" + }, + { + "id": "101800", + "name": "Tavrichanka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.32551000", + "longitude": "131.86264000" + }, + { + "id": "101833", + "name": "Terney", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "45.05278000", + "longitude": "136.60881000" + }, + { + "id": "101933", + "name": "Trudovoye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.29823000", + "longitude": "132.06877000" + }, + { + "id": "102030", + "name": "Uglekamensk", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.21996000", + "longitude": "133.23177000" + }, + { + "id": "102037", + "name": "Uglovoye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.32807000", + "longitude": "132.08832000" + }, + { + "id": "102105", + "name": "Ussuriysk", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.80291000", + "longitude": "131.94578000" + }, + { + "id": "102327", + "name": "Vladimiro-Aleksandrovskoye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.89134000", + "longitude": "133.07801000" + }, + { + "id": "102330", + "name": "Vladivostok", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.10562000", + "longitude": "131.87353000" + }, + { + "id": "102372", + "name": "Vol’no-Nadezhdinskoye", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.37496000", + "longitude": "131.99675000" + }, + { + "id": "102338", + "name": "Volchanets", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.91388000", + "longitude": "132.76222000" + }, + { + "id": "102400", + "name": "Vostok", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "46.45148000", + "longitude": "135.82738000" + }, + { + "id": "102406", + "name": "Vozdvizhenka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.89413000", + "longitude": "131.94589000" + }, + { + "id": "102412", + "name": "Vrangel’", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.73021000", + "longitude": "133.08322000" + }, + { + "id": "102466", + "name": "Yakovlevka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.42588000", + "longitude": "133.47406000" + }, + { + "id": "102470", + "name": "Yakovlevskiy Rayon", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.41667000", + "longitude": "133.50000000" + }, + { + "id": "102502", + "name": "Yaroslavskiy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.18578000", + "longitude": "132.22862000" + }, + { + "id": "102530", + "name": "Yekaterinovka", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.92525000", + "longitude": "133.04922000" + }, + { + "id": "102661", + "name": "Zarubino", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "42.63257000", + "longitude": "131.09005000" + }, + { + "id": "102677", + "name": "Zavodskoy", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "43.46242000", + "longitude": "132.28494000" + }, + { + "id": "102712", + "name": "Zharikovo", + "state_id": 1833, + "state_code": "PRI", + "country_id": 182, + "country_code": "RU", + "latitude": "44.58800000", + "longitude": "131.72770000" + }, + { + "id": "97919", + "name": "Bezhanitsy", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.97669000", + "longitude": "29.89065000" + }, + { + "id": "98256", + "name": "Dedovichi", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.55166000", + "longitude": "29.95018000" + }, + { + "id": "98290", + "name": "Dno", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.82772000", + "longitude": "29.96368000" + }, + { + "id": "98470", + "name": "Gdov", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "58.74424000", + "longitude": "27.81977000" + }, + { + "id": "98471", + "name": "Gdovskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "58.75000000", + "longitude": "28.00000000" + }, + { + "id": "98630", + "name": "Idritsa", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.33157000", + "longitude": "28.89884000" + }, + { + "id": "98745", + "name": "Izborsk", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.70757000", + "longitude": "27.86291000" + }, + { + "id": "99302", + "name": "Krasnogorodsk", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83568000", + "longitude": "28.28224000" + }, + { + "id": "99368", + "name": "Krasnyy Luch", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.06676000", + "longitude": "30.09032000" + }, + { + "id": "99448", + "name": "Kun’inskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "31.00000000" + }, + { + "id": "99651", + "name": "Loknya", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.82998000", + "longitude": "30.14665000" + }, + { + "id": "100115", + "name": "Nevel’", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.02094000", + "longitude": "29.92844000" + }, + { + "id": "100291", + "name": "Novorzhev", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.02942000", + "longitude": "29.33378000" + }, + { + "id": "100292", + "name": "Novorzhevskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.08333000", + "longitude": "29.41667000" + }, + { + "id": "100309", + "name": "Novosokol’nicheskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41667000", + "longitude": "30.00000000" + }, + { + "id": "100310", + "name": "Novosokol’niki", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.34634000", + "longitude": "30.15778000" + }, + { + "id": "100343", + "name": "Novyy Izborsk", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.77079000", + "longitude": "27.97306000" + }, + { + "id": "100455", + "name": "Opochka", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.71357000", + "longitude": "28.66388000" + }, + { + "id": "100496", + "name": "Ostrov", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.34395000", + "longitude": "28.35368000" + }, + { + "id": "100498", + "name": "Ostrovskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.25000000", + "longitude": "28.33333000" + }, + { + "id": "100531", + "name": "Palkino", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.54089000", + "longitude": "28.01257000" + }, + { + "id": "100532", + "name": "Palkinskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.50000000", + "longitude": "28.00000000" + }, + { + "id": "100588", + "name": "Pechorskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.75000000", + "longitude": "27.75000000" + }, + { + "id": "100589", + "name": "Pechory", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.81642000", + "longitude": "27.61190000" + }, + { + "id": "100704", + "name": "Plyussa", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "58.43078000", + "longitude": "29.36537000" + }, + { + "id": "100777", + "name": "Porkhov", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.76502000", + "longitude": "29.55612000" + }, + { + "id": "100778", + "name": "Porkhovskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.75000000", + "longitude": "29.50000000" + }, + { + "id": "100881", + "name": "Pskov", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.81360000", + "longitude": "28.34960000" + }, + { + "id": "100882", + "name": "Pskovskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.75000000", + "longitude": "28.25000000" + }, + { + "id": "100899", + "name": "Pushkino-Gorskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "28.75000000" + }, + { + "id": "100901", + "name": "Pushkinskiye Gory", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.02085000", + "longitude": "28.91030000" + }, + { + "id": "100902", + "name": "Pustoshka", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.33547000", + "longitude": "29.36901000" + }, + { + "id": "100903", + "name": "Pustoshkinskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41667000", + "longitude": "29.41667000" + }, + { + "id": "100918", + "name": "Pytalovo", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.06791000", + "longitude": "27.91384000" + }, + { + "id": "100919", + "name": "Pytalovskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "28.00000000" + }, + { + "id": "101143", + "name": "Sebezh", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.28511000", + "longitude": "28.48187000" + }, + { + "id": "101144", + "name": "Sebezhskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "28.50000000" + }, + { + "id": "101197", + "name": "Serëdka", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "58.15838000", + "longitude": "28.18576000" + }, + { + "id": "101633", + "name": "Strugi-Krasnyye", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "58.26754000", + "longitude": "29.11137000" + }, + { + "id": "101634", + "name": "Strugo-Krasnenskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "58.33333000", + "longitude": "29.00000000" + }, + { + "id": "102147", + "name": "Usvyaty", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "55.74556000", + "longitude": "30.75333000" + }, + { + "id": "102213", + "name": "Velikiye Luki", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.34000000", + "longitude": "30.54517000" + }, + { + "id": "102215", + "name": "Velikolukskiy Rayon", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50000000", + "longitude": "30.58333000" + }, + { + "id": "102425", + "name": "Vybor", + "state_id": 1863, + "state_code": "PSK", + "country_id": 182, + "country_code": "RU", + "latitude": "57.22716000", + "longitude": "29.16630000" + }, + { + "id": "97476", + "name": "Abadzekhskaya", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.39389000", + "longitude": "40.22139000" + }, + { + "id": "97506", + "name": "Adygeysk", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.88414000", + "longitude": "39.19071000" + }, + { + "id": "97507", + "name": "Adygeysk Republican Urban Okrug", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.87850000", + "longitude": "39.19167000" + }, + { + "id": "97871", + "name": "Beloye", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "45.04832000", + "longitude": "39.65143000" + }, + { + "id": "97953", + "name": "Blechepsin", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.82028000", + "longitude": "40.50028000" + }, + { + "id": "98309", + "name": "Dondukovskaya", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.88190000", + "longitude": "40.36271000" + }, + { + "id": "98395", + "name": "Enem", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.92640000", + "longitude": "38.90584000" + }, + { + "id": "98486", + "name": "Giaginskaya", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.86208000", + "longitude": "40.07195000" + }, + { + "id": "98487", + "name": "Giaginskiy Rayon", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.83333000", + "longitude": "40.16667000" + }, + { + "id": "98816", + "name": "Kamennomostskiy", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.28910000", + "longitude": "40.18800000" + }, + { + "id": "98961", + "name": "Khanskaya", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.67702000", + "longitude": "39.96160000" + }, + { + "id": "98974", + "name": "Khatukay", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "45.19074000", + "longitude": "39.66320000" + }, + { + "id": "98988", + "name": "Khodz’", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.51020000", + "longitude": "40.71420000" + }, + { + "id": "99227", + "name": "Koshekhabl’", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.89722000", + "longitude": "40.51194000" + }, + { + "id": "99228", + "name": "Koshekhabl’skiy Rayon", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.83333000", + "longitude": "40.50000000" + }, + { + "id": "99315", + "name": "Krasnogvardeyskiy Rayon", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "45.08333000", + "longitude": "39.75000000" + }, + { + "id": "99317", + "name": "Krasnogvardeyskoye", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "45.12780000", + "longitude": "39.57246000" + }, + { + "id": "99503", + "name": "Kuzhorskaya", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.67512000", + "longitude": "40.31032000" + }, + { + "id": "99819", + "name": "Maykop", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.60778000", + "longitude": "40.10583000" + }, + { + "id": "99820", + "name": "Maykop Republican Urban Okrug", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.61100000", + "longitude": "40.12344000" + }, + { + "id": "99821", + "name": "Maykopskiy Rayon", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.33333000", + "longitude": "40.25000000" + }, + { + "id": "100065", + "name": "Natyrbovo", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.73000000", + "longitude": "40.62639000" + }, + { + "id": "100768", + "name": "Ponezhukay", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.88761000", + "longitude": "39.38551000" + }, + { + "id": "101339", + "name": "Shovgenovskiy", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "45.01028000", + "longitude": "40.22500000" + }, + { + "id": "101340", + "name": "Shovgenovskiy Rayon", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "45.00000000", + "longitude": "40.16667000" + }, + { + "id": "101742", + "name": "Takhtamukay", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.92150000", + "longitude": "38.99583000" + }, + { + "id": "101743", + "name": "Takhtamukayskiy Rayon", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.97433000", + "longitude": "38.80548000" + }, + { + "id": "101844", + "name": "Teuchezhskiy Rayon", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.91667000", + "longitude": "39.33333000" + }, + { + "id": "101867", + "name": "Tlyustenkhabl’", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.98200000", + "longitude": "39.09773000" + }, + { + "id": "102458", + "name": "Yablonovskiy", + "state_id": 1852, + "state_code": "AD", + "country_id": 182, + "country_code": "RU", + "latitude": "44.98901000", + "longitude": "38.94324000" + }, + { + "id": "97492", + "name": "Abzakovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.82861000", + "longitude": "58.59333000" + }, + { + "id": "97493", + "name": "Abzelilovskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41667000", + "longitude": "58.50000000" + }, + { + "id": "97516", + "name": "Agidel’", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.90770000", + "longitude": "53.93550000" + }, + { + "id": "97552", + "name": "Ak”yar", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "51.85905000", + "longitude": "58.22136000" + }, + { + "id": "97535", + "name": "Akhunovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.20790000", + "longitude": "59.60170000" + }, + { + "id": "97538", + "name": "Aksakovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.03333000", + "longitude": "54.15000000" + }, + { + "id": "97610", + "name": "Al’sheyevskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00000000", + "longitude": "55.00000000" + }, + { + "id": "97577", + "name": "Alekseyevka", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.85000000", + "longitude": "55.23333000" + }, + { + "id": "97616", + "name": "Amzya", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.23460000", + "longitude": "54.38500000" + }, + { + "id": "97692", + "name": "Asanovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.89418000", + "longitude": "55.49083000" + }, + { + "id": "97702", + "name": "Askino", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.09013000", + "longitude": "56.57831000" + }, + { + "id": "97703", + "name": "Askinskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08333000", + "longitude": "56.58333000" + }, + { + "id": "97721", + "name": "Avdon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "55.71667000" + }, + { + "id": "97757", + "name": "Bakalinskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16667000", + "longitude": "53.75000000" + }, + { + "id": "97758", + "name": "Bakaly", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.17889000", + "longitude": "53.80278000" + }, + { + "id": "97826", + "name": "Baymak", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.59333000", + "longitude": "58.32250000" + }, + { + "id": "97833", + "name": "Bedeyeva Polyana", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.32345000", + "longitude": "56.38882000" + }, + { + "id": "97846", + "name": "Belebey", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.11667000", + "longitude": "54.11667000" + }, + { + "id": "97864", + "name": "Beloretsk", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.96306000", + "longitude": "58.39806000" + }, + { + "id": "97865", + "name": "Beloretskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00000000", + "longitude": "58.00000000" + }, + { + "id": "97937", + "name": "Birsk", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.42111000", + "longitude": "55.54278000" + }, + { + "id": "97943", + "name": "Bizhbulyak", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.69670000", + "longitude": "54.26420000" + }, + { + "id": "97948", + "name": "Blagoveshchensk", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.03500000", + "longitude": "55.97806000" + }, + { + "id": "98075", + "name": "Bulgakovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.49680000", + "longitude": "55.88430000" + }, + { + "id": "98077", + "name": "Burayevo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.84069000", + "longitude": "55.40834000" + }, + { + "id": "98081", + "name": "Buribay", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "51.96167000", + "longitude": "58.15917000" + }, + { + "id": "98094", + "name": "Buzdyak", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "54.55000000" + }, + { + "id": "98095", + "name": "Buzdyakskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "54.50000000" + }, + { + "id": "98137", + "name": "Chekmagush", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.13194000", + "longitude": "54.65556000" + }, + { + "id": "98193", + "name": "Chesnokovka", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.61242000", + "longitude": "55.94575000" + }, + { + "id": "98198", + "name": "Chishmy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.57648000", + "longitude": "55.37642000" + }, + { + "id": "98249", + "name": "Davlekanovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.22145000", + "longitude": "55.03434000" + }, + { + "id": "98282", + "name": "Dmitriyevka", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75000000", + "longitude": "55.33333000" + }, + { + "id": "98357", + "name": "Duvan", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.69497000", + "longitude": "57.90237000" + }, + { + "id": "98366", + "name": "Dyurtyuli", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.49106000", + "longitude": "54.86883000" + }, + { + "id": "98443", + "name": "Fëdorovskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.08333000", + "longitude": "55.25000000" + }, + { + "id": "98632", + "name": "Iglino", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.83244000", + "longitude": "56.41264000" + }, + { + "id": "98682", + "name": "Inzer", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.21670000", + "longitude": "57.55560000" + }, + { + "id": "98705", + "name": "Ishimbay", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.45446000", + "longitude": "56.04149000" + }, + { + "id": "98722", + "name": "Isyangulovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.18584000", + "longitude": "56.58043000" + }, + { + "id": "98762", + "name": "Kabakovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.53690000", + "longitude": "56.15170000" + }, + { + "id": "98800", + "name": "Kaltasy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.96926000", + "longitude": "54.80321000" + }, + { + "id": "98839", + "name": "Kandry", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.56667000", + "longitude": "54.11667000" + }, + { + "id": "98864", + "name": "Karaidel’", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83373000", + "longitude": "56.90692000" + }, + { + "id": "98882", + "name": "Karmaskaly", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.37090000", + "longitude": "56.18370000" + }, + { + "id": "98975", + "name": "Khaybullinskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.00000000", + "longitude": "58.25000000" + }, + { + "id": "99054", + "name": "Kirgiz-Miyaki", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.63240000", + "longitude": "54.79790000" + }, + { + "id": "99280", + "name": "Krasnaya Gorka", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.19617000", + "longitude": "56.66727000" + }, + { + "id": "99324", + "name": "Krasnokholmskiy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.98729000", + "longitude": "55.04659000" + }, + { + "id": "99364", + "name": "Krasnyy Klyuch", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.38625000", + "longitude": "56.65287000" + }, + { + "id": "99420", + "name": "Kudeyevskiy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.87583000", + "longitude": "56.75667000" + }, + { + "id": "99440", + "name": "Kumertau", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.76667000", + "longitude": "55.78333000" + }, + { + "id": "99487", + "name": "Kushnarënkovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.10500000", + "longitude": "55.35083000" + }, + { + "id": "99659", + "name": "Lomovka", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.91944000", + "longitude": "58.36722000" + }, + { + "id": "99737", + "name": "Maginsk", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76338000", + "longitude": "56.96583000" + }, + { + "id": "99818", + "name": "Mayachnyy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.68390000", + "longitude": "55.68500000" + }, + { + "id": "99839", + "name": "Mechetlinskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91667000", + "longitude": "58.25000000" + }, + { + "id": "99855", + "name": "Meleuz", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.96467000", + "longitude": "55.93277000" + }, + { + "id": "99872", + "name": "Mesyagutovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.53028000", + "longitude": "58.25278000" + }, + { + "id": "99877", + "name": "Mezgor'e", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.04976000", + "longitude": "57.81713000" + }, + { + "id": "99897", + "name": "Mikhaylovka", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.80500000", + "longitude": "55.89193000" + }, + { + "id": "99916", + "name": "Mindyak", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.02310000", + "longitude": "58.78910000" + }, + { + "id": "99928", + "name": "Mishkino", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.99970000", + "longitude": "59.10640000" + }, + { + "id": "99930", + "name": "Mishkinskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58333000", + "longitude": "56.00000000" + }, + { + "id": "99933", + "name": "Miyakinskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.58333000", + "longitude": "54.83333000" + }, + { + "id": "99988", + "name": "Mrakovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.71611000", + "longitude": "56.62444000" + }, + { + "id": "100017", + "name": "Mursalimkino", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.03790000", + "longitude": "58.55850000" + }, + { + "id": "100086", + "name": "Neftekamsk", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.09200000", + "longitude": "54.26610000" + }, + { + "id": "100140", + "name": "Nikolo-Berëzovka", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.12422000", + "longitude": "54.15573000" + }, + { + "id": "100159", + "name": "Nizhnetroitskiy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33852000", + "longitude": "53.68329000" + }, + { + "id": "100227", + "name": "Novobelokatay", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.70620000", + "longitude": "58.95490000" + }, + { + "id": "100369", + "name": "Nurimanovskiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75000000", + "longitude": "56.66667000" + }, + { + "id": "100411", + "name": "Oktyabr’skiy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.48147000", + "longitude": "53.47103000" + }, + { + "id": "100567", + "name": "Pavlovka", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.42094000", + "longitude": "56.55426000" + }, + { + "id": "100853", + "name": "Priyutovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.90000000", + "longitude": "53.93333000" + }, + { + "id": "100948", + "name": "Rayevskiy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.06580000", + "longitude": "54.94680000" + }, + { + "id": "101078", + "name": "Salavat", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.38365000", + "longitude": "55.90773000" + }, + { + "id": "101164", + "name": "Semiletka", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.36028000", + "longitude": "54.61528000" + }, + { + "id": "101173", + "name": "Serafimovskiy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.42408000", + "longitude": "53.79640000" + }, + { + "id": "101234", + "name": "Shafranovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.96667000", + "longitude": "54.76667000" + }, + { + "id": "101258", + "name": "Sharan", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.81667000", + "longitude": "54.00000000" + }, + { + "id": "101366", + "name": "Sibay", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.71806000", + "longitude": "58.66583000" + }, + { + "id": "101573", + "name": "Starobaltachevo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00170000", + "longitude": "55.92800000" + }, + { + "id": "101595", + "name": "Starosubkhangulovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.10310000", + "longitude": "57.44230000" + }, + { + "id": "101618", + "name": "Sterlibashevo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.43755000", + "longitude": "55.25780000" + }, + { + "id": "101619", + "name": "Sterlitamak", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.62462000", + "longitude": "55.95015000" + }, + { + "id": "101640", + "name": "Subkhankulovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.55741000", + "longitude": "53.81153000" + }, + { + "id": "101822", + "name": "Temyasovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.99333000", + "longitude": "58.10139000" + }, + { + "id": "101862", + "name": "Tirlyanskiy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.21090000", + "longitude": "58.58060000" + }, + { + "id": "101876", + "name": "Tolbazy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.02408000", + "longitude": "55.88248000" + }, + { + "id": "101959", + "name": "Tubinskiy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.88917000", + "longitude": "58.22250000" + }, + { + "id": "101964", + "name": "Tukan", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.84090000", + "longitude": "57.45520000" + }, + { + "id": "101986", + "name": "Tuymazy", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.60666000", + "longitude": "53.70970000" + }, + { + "id": "102013", + "name": "Uchaly", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.35806000", + "longitude": "59.43611000" + }, + { + "id": "102025", + "name": "Ufa", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.74306000", + "longitude": "55.96779000" + }, + { + "id": "102049", + "name": "Ulu-Telyak", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91570000", + "longitude": "56.98270000" + }, + { + "id": "102050", + "name": "Ulukulevo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.43550000", + "longitude": "56.32210000" + }, + { + "id": "102080", + "name": "Urman", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.88314000", + "longitude": "56.87417000" + }, + { + "id": "102246", + "name": "Verkhneyarkeyevo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.45046000", + "longitude": "54.31455000" + }, + { + "id": "102249", + "name": "Verkhniy Avzyan", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.52889000", + "longitude": "57.53722000" + }, + { + "id": "102261", + "name": "Verkhniye Kigi", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.40833000", + "longitude": "58.60444000" + }, + { + "id": "102264", + "name": "Verkhniye Tatyshly", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.29117000", + "longitude": "55.85750000" + }, + { + "id": "102394", + "name": "Voskresenskoye", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.12336000", + "longitude": "56.14664000" + }, + { + "id": "102480", + "name": "Yanaul", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.27510000", + "longitude": "54.93380000" + }, + { + "id": "102481", + "name": "Yanaul’skiy Rayon", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "54.91667000" + }, + { + "id": "102520", + "name": "Yazykovo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.21988000", + "longitude": "56.13532000" + }, + { + "id": "102565", + "name": "Yermekeyevo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.07614000", + "longitude": "53.67125000" + }, + { + "id": "102567", + "name": "Yermolayevo", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.71667000", + "longitude": "55.80000000" + }, + { + "id": "102592", + "name": "Yumaguzino", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.90412000", + "longitude": "56.39329000" + }, + { + "id": "102747", + "name": "Zilair", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "52.23320000", + "longitude": "57.43920000" + }, + { + "id": "102749", + "name": "Zirgan", + "state_id": 1854, + "state_code": "BA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.22220000", + "longitude": "55.91850000" + }, + { + "id": "97745", + "name": "Babushkin", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.71222000", + "longitude": "105.86472000" + }, + { + "id": "97753", + "name": "Bagdarin", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.43333000", + "longitude": "113.60000000" + }, + { + "id": "97794", + "name": "Barguzin", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.61875000", + "longitude": "109.63904000" + }, + { + "id": "97822", + "name": "Bayangol", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.69770000", + "longitude": "103.46560000" + }, + { + "id": "97925", + "name": "Bichura", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.58806000", + "longitude": "107.60222000" + }, + { + "id": "98011", + "name": "Bol’shoy Kunaley", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.43203000", + "longitude": "107.60890000" + }, + { + "id": "98377", + "name": "Dzhida", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.67722000", + "longitude": "106.18056000" + }, + { + "id": "98620", + "name": "Gusinoozyorsk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.28333000", + "longitude": "106.50000000" + }, + { + "id": "98621", + "name": "Gusinoye Ozero", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.11444000", + "longitude": "106.26139000" + }, + { + "id": "98652", + "name": "Il’inka", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.11944000", + "longitude": "107.27083000" + }, + { + "id": "98659", + "name": "Il’ka", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.72114000", + "longitude": "108.52169000" + }, + { + "id": "98718", + "name": "Istok", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.09528000", + "longitude": "106.24750000" + }, + { + "id": "98741", + "name": "Ivolginsk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.74919000", + "longitude": "107.28374000" + }, + { + "id": "98742", + "name": "Ivolginskiy Rayon", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.83333000", + "longitude": "107.33333000" + }, + { + "id": "98764", + "name": "Kabansk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.04861000", + "longitude": "106.65278000" + }, + { + "id": "99000", + "name": "Kholtoson", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.29810000", + "longitude": "103.30970000" + }, + { + "id": "99003", + "name": "Khonkholoy", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.13186000", + "longitude": "108.22515000" + }, + { + "id": "99005", + "name": "Khorinsk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16631000", + "longitude": "109.77626000" + }, + { + "id": "99031", + "name": "Kichera", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.93874000", + "longitude": "110.10122000" + }, + { + "id": "99089", + "name": "Kizhinga", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.84760000", + "longitude": "109.90795000" + }, + { + "id": "99418", + "name": "Kudara-Somon", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.15472000", + "longitude": "107.40139000" + }, + { + "id": "99478", + "name": "Kurumkan", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "54.32093000", + "longitude": "110.30651000" + }, + { + "id": "99516", + "name": "Kyakhta", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.35737000", + "longitude": "106.45033000" + }, + { + "id": "99519", + "name": "Kyren", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.68280000", + "longitude": "102.14080000" + }, + { + "id": "99998", + "name": "Mukhorshibir’", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.04986000", + "longitude": "107.82997000" + }, + { + "id": "99997", + "name": "Mukhorshibirskiy Rayon", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.08333000", + "longitude": "107.75000000" + }, + { + "id": "100024", + "name": "Muyskiy Rayon", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.33333000", + "longitude": "115.00000000" + }, + { + "id": "100069", + "name": "Naushki", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.38278000", + "longitude": "106.10556000" + }, + { + "id": "100138", + "name": "Nikolayevskiy", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.65526000", + "longitude": "107.80068000" + }, + { + "id": "100145", + "name": "Nikol’sk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.18867000", + "longitude": "108.32187000" + }, + { + "id": "100150", + "name": "Nizhneangarsk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.79326000", + "longitude": "109.58029000" + }, + { + "id": "100175", + "name": "Nizhniy Sayantuy", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.73751000", + "longitude": "107.51308000" + }, + { + "id": "100200", + "name": "Novaya Bryan’", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.71699000", + "longitude": "108.27014000" + }, + { + "id": "100251", + "name": "Novokizhinginsk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.61620000", + "longitude": "109.60265000" + }, + { + "id": "100351", + "name": "Novyy Uoyan", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.15722000", + "longitude": "111.70556000" + }, + { + "id": "100355", + "name": "Novyy Zagan", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.02858000", + "longitude": "107.76376000" + }, + { + "id": "100404", + "name": "Okino-Klyuchi", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.59389000", + "longitude": "107.10944000" + }, + { + "id": "100405", + "name": "Okinskiy Rayon", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "100.50000000" + }, + { + "id": "100451", + "name": "Onokhoy", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.92859000", + "longitude": "108.06693000" + }, + { + "id": "100469", + "name": "Orlik", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.51780000", + "longitude": "99.82500000" + }, + { + "id": "100651", + "name": "Petropavlovka", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.61140000", + "longitude": "105.31960000" + }, + { + "id": "100816", + "name": "Pribaykal’skiy Rayon", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "108.00000000" + }, + { + "id": "100957", + "name": "Rechka-Vydrino", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.48920000", + "longitude": "104.84290000" + }, + { + "id": "101072", + "name": "Sagan-Nur", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.34360000", + "longitude": "108.44490000" + }, + { + "id": "101151", + "name": "Selenduma", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.91306000", + "longitude": "106.24056000" + }, + { + "id": "101152", + "name": "Selenginskiy Rayon", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.16667000", + "longitude": "106.33333000" + }, + { + "id": "101211", + "name": "Severo-Baykal’skiy Rayon", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "111.50000000" + }, + { + "id": "101216", + "name": "Severobaykal’sk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63695000", + "longitude": "109.32297000" + }, + { + "id": "101220", + "name": "Severomuysk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.14806000", + "longitude": "113.42667000" + }, + { + "id": "101257", + "name": "Sharalday", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.02528000", + "longitude": "107.64487000" + }, + { + "id": "101434", + "name": "Sokol", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.80036000", + "longitude": "107.44437000" + }, + { + "id": "101492", + "name": "Sosnovo-Ozerskoye", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.52466000", + "longitude": "111.54124000" + }, + { + "id": "101500", + "name": "Sotnikovo", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.88448000", + "longitude": "107.48250000" + }, + { + "id": "101745", + "name": "Taksimo", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.34162000", + "longitude": "114.90048000" + }, + { + "id": "101766", + "name": "Tankhoy", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.55683000", + "longitude": "105.12620000" + }, + { + "id": "101772", + "name": "Tarbagatay", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.48195000", + "longitude": "107.36158000" + }, + { + "id": "101796", + "name": "Tataurovo", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.14182000", + "longitude": "107.44054000" + }, + { + "id": "101978", + "name": "Turka", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.94920000", + "longitude": "108.22170000" + }, + { + "id": "101983", + "name": "Turuntayevo", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "52.20203000", + "longitude": "107.64484000" + }, + { + "id": "102044", + "name": "Ulan-Ude", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.82721000", + "longitude": "107.60627000" + }, + { + "id": "102115", + "name": "Ust’-Barguzin", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "53.41116000", + "longitude": "109.03103000" + }, + { + "id": "102428", + "name": "Vydrino", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.46300000", + "longitude": "104.64250000" + }, + { + "id": "102630", + "name": "Zaigrayevo", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.83487000", + "longitude": "108.26700000" + }, + { + "id": "102633", + "name": "Zakamensk", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "50.37410000", + "longitude": "103.28630000" + }, + { + "id": "102655", + "name": "Zarechnyy", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.84928000", + "longitude": "107.52100000" + }, + { + "id": "102723", + "name": "Zhemchug", + "state_id": 1842, + "state_code": "BU", + "country_id": 182, + "country_code": "RU", + "latitude": "51.68610000", + "longitude": "102.45900000" + }, + { + "id": "97497", + "name": "Achisu", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.65197000", + "longitude": "47.68282000" + }, + { + "id": "97502", + "name": "Adil’-Yangiyurt", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.56328000", + "longitude": "46.58462000" + }, + { + "id": "97524", + "name": "Agul’skiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.83333000", + "longitude": "47.58333000" + }, + { + "id": "97525", + "name": "Agvali", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.53853000", + "longitude": "46.11967000" + }, + { + "id": "97532", + "name": "Akhty", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.45968000", + "longitude": "47.73123000" + }, + { + "id": "97533", + "name": "Akhtynskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.33333000", + "longitude": "47.58333000" + }, + { + "id": "97536", + "name": "Akhvakhskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.58333000", + "longitude": "46.33333000" + }, + { + "id": "97537", + "name": "Aknada", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.40155000", + "longitude": "46.17228000" + }, + { + "id": "97541", + "name": "Aksay", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.37254000", + "longitude": "46.44497000" + }, + { + "id": "97550", + "name": "Akusha", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.26885000", + "longitude": "47.34114000" + }, + { + "id": "97551", + "name": "Akushinskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.16667000", + "longitude": "47.33333000" + }, + { + "id": "97624", + "name": "Andi", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.78359000", + "longitude": "46.26171000" + }, + { + "id": "97639", + "name": "Ansalta", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.68941000", + "longitude": "46.11782000" + }, + { + "id": "97697", + "name": "Ashil’ta", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.77042000", + "longitude": "46.72992000" + }, + { + "id": "97739", + "name": "Babayurt", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.60020000", + "longitude": "46.77888000" + }, + { + "id": "97740", + "name": "Babayurtovskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.58333000", + "longitude": "47.00000000" + }, + { + "id": "97786", + "name": "Bammatyurt", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.34576000", + "longitude": "46.60819000" + }, + { + "id": "97820", + "name": "Bavtugay", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16808000", + "longitude": "46.83415000" + }, + { + "id": "97850", + "name": "Belidzhi", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.89184000", + "longitude": "48.41247000" + }, + { + "id": "97922", + "name": "Bezhta", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.13380000", + "longitude": "46.12828000" + }, + { + "id": "98048", + "name": "Botashyurt", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.30801000", + "longitude": "46.50991000" + }, + { + "id": "98049", + "name": "Botayurt", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.31865000", + "longitude": "46.68371000" + }, + { + "id": "98050", + "name": "Botlikhskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.75000000", + "longitude": "46.25000000" + }, + { + "id": "98085", + "name": "Burtunay", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.98860000", + "longitude": "46.63034000" + }, + { + "id": "98091", + "name": "Buynaksk", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.81900000", + "longitude": "47.11920000" + }, + { + "id": "98092", + "name": "Buynakskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.83333000", + "longitude": "47.16667000" + }, + { + "id": "98119", + "name": "Charodinskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.16667000", + "longitude": "46.75000000" + }, + { + "id": "98195", + "name": "Chinar", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.10798000", + "longitude": "48.14321000" + }, + { + "id": "98197", + "name": "Chirkey", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.96131000", + "longitude": "46.97866000" + }, + { + "id": "98210", + "name": "Chontaul", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.30481000", + "longitude": "46.85967000" + }, + { + "id": "98232", + "name": "Dagestanskiye Ogni", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.11589000", + "longitude": "48.19204000" + }, + { + "id": "98234", + "name": "Dakhadayevskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.08333000", + "longitude": "47.58333000" + }, + { + "id": "98265", + "name": "Derbent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.06779000", + "longitude": "48.28987000" + }, + { + "id": "98266", + "name": "Derbentskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.08333000", + "longitude": "48.16667000" + }, + { + "id": "98298", + "name": "Dokuzparinskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.33333000", + "longitude": "47.91667000" + }, + { + "id": "98317", + "name": "Dorgeli", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.66700000", + "longitude": "47.29435000" + }, + { + "id": "98330", + "name": "Druzhba", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.24200000", + "longitude": "48.00145000" + }, + { + "id": "98335", + "name": "Dubki", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.02116000", + "longitude": "46.83746000" + }, + { + "id": "98364", + "name": "Dylym", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.07099000", + "longitude": "46.63454000" + }, + { + "id": "98394", + "name": "Endirey", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16316000", + "longitude": "46.65401000" + }, + { + "id": "98400", + "name": "Erpeli", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.80584000", + "longitude": "46.97732000" + }, + { + "id": "98447", + "name": "Gagatli", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.80130000", + "longitude": "46.29162000" + }, + { + "id": "98456", + "name": "Gaptsakh", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.45174000", + "longitude": "47.93027000" + }, + { + "id": "98472", + "name": "Gedzhukh", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.12786000", + "longitude": "48.06474000" + }, + { + "id": "98479", + "name": "Gereykhanovskoye", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.70110000", + "longitude": "48.28113000" + }, + { + "id": "98480", + "name": "Gerga", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.34645000", + "longitude": "47.96333000" + }, + { + "id": "98481", + "name": "Gergebil’", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.50472000", + "longitude": "47.06611000" + }, + { + "id": "98482", + "name": "Gergebil’skiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.50000000", + "longitude": "47.00000000" + }, + { + "id": "98490", + "name": "Gimry", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.75974000", + "longitude": "46.83959000" + }, + { + "id": "98602", + "name": "Gubden", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.56808000", + "longitude": "47.56579000" + }, + { + "id": "98610", + "name": "Gumbetovskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.83333000", + "longitude": "46.50000000" + }, + { + "id": "98613", + "name": "Gunib", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.38758000", + "longitude": "46.96509000" + }, + { + "id": "98614", + "name": "Gunibskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.41667000", + "longitude": "46.83333000" + }, + { + "id": "98615", + "name": "Gurbuki", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.61128000", + "longitude": "47.60067000" + }, + { + "id": "98691", + "name": "Irganay", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.64650000", + "longitude": "46.91154000" + }, + { + "id": "98744", + "name": "Izberbash", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.56955000", + "longitude": "47.86447000" + }, + { + "id": "98775", + "name": "Kafyr-Kumukh", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.83754000", + "longitude": "47.15412000" + }, + { + "id": "98786", + "name": "Kalininaul", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.07121000", + "longitude": "46.56679000" + }, + { + "id": "98854", + "name": "Karabudakhkent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.70870000", + "longitude": "47.56735000" + }, + { + "id": "98855", + "name": "Karabudakhkentskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.66667000", + "longitude": "47.50000000" + }, + { + "id": "98868", + "name": "Karamakhi", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.61934000", + "longitude": "47.26017000" + }, + { + "id": "98870", + "name": "Karata", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.59486000", + "longitude": "46.33930000" + }, + { + "id": "98900", + "name": "Kaspiysk", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.88165000", + "longitude": "47.63919000" + }, + { + "id": "98905", + "name": "Kasumkent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.67725000", + "longitude": "48.14601000" + }, + { + "id": "98915", + "name": "Kayakent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.38736000", + "longitude": "47.90301000" + }, + { + "id": "98916", + "name": "Kayakentskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.33333000", + "longitude": "47.91667000" + }, + { + "id": "98919", + "name": "Kaytagskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.08333000", + "longitude": "47.83333000" + }, + { + "id": "98931", + "name": "Kazbekovskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.00000000", + "longitude": "46.66667000" + }, + { + "id": "98954", + "name": "Khadzhalmakhi", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.42000000", + "longitude": "47.18206000" + }, + { + "id": "98955", + "name": "Khamamatyurt", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.60809000", + "longitude": "46.50060000" + }, + { + "id": "98970", + "name": "Khasavyurt", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25090000", + "longitude": "46.58766000" + }, + { + "id": "98971", + "name": "Khasavyurtovskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.33333000", + "longitude": "46.66667000" + }, + { + "id": "98976", + "name": "Khazar", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.99740000", + "longitude": "48.33325000" + }, + { + "id": "98977", + "name": "Khebda", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.44423000", + "longitude": "46.55172000" + }, + { + "id": "98984", + "name": "Khiv", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.75428000", + "longitude": "47.93063000" + }, + { + "id": "98985", + "name": "Khivskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.75000000", + "longitude": "47.91667000" + }, + { + "id": "99016", + "name": "Khuchni", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.94986000", + "longitude": "47.94854000" + }, + { + "id": "99019", + "name": "Khunzakh", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.54240000", + "longitude": "46.70689000" + }, + { + "id": "99020", + "name": "Khunzakhskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.58333000", + "longitude": "46.66667000" + }, + { + "id": "99079", + "name": "Kishcha", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.17677000", + "longitude": "47.58117000" + }, + { + "id": "99090", + "name": "Kizilyurt", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.18830000", + "longitude": "46.88511000" + }, + { + "id": "99091", + "name": "Kizilyurtovskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25000000", + "longitude": "46.91667000" + }, + { + "id": "99094", + "name": "Kizlyar", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.84712000", + "longitude": "46.71445000" + }, + { + "id": "99095", + "name": "Kizlyarskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.00000000", + "longitude": "47.00000000" + }, + { + "id": "99124", + "name": "Kochubey", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.38611000", + "longitude": "46.58250000" + }, + { + "id": "99133", + "name": "Kokrek", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.23639000", + "longitude": "46.72665000" + }, + { + "id": "99173", + "name": "Komsomol’skiy", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.97833000", + "longitude": "46.69852000" + }, + { + "id": "99208", + "name": "Korkmaskala", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.02379000", + "longitude": "47.29436000" + }, + { + "id": "99236", + "name": "Kostek", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.34387000", + "longitude": "46.85411000" + }, + { + "id": "99414", + "name": "Kubachi", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.08598000", + "longitude": "47.60338000" + }, + { + "id": "99432", + "name": "Kuli", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.01845000", + "longitude": "47.24342000" + }, + { + "id": "99433", + "name": "Kulinskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.00000000", + "longitude": "47.25000000" + }, + { + "id": "99442", + "name": "Kumukh", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.17036000", + "longitude": "47.11606000" + }, + { + "id": "99453", + "name": "Kurakh", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.58491000", + "longitude": "47.78306000" + }, + { + "id": "99454", + "name": "Kurakhskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.58333000", + "longitude": "47.75000000" + }, + { + "id": "99464", + "name": "Kurkent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.71199000", + "longitude": "48.11531000" + }, + { + "id": "99480", + "name": "Kurush", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.28413000", + "longitude": "47.83454000" + }, + { + "id": "99517", + "name": "Kyakhulay", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.96839000", + "longitude": "47.48301000" + }, + { + "id": "99542", + "name": "Lakskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.16667000", + "longitude": "47.08333000" + }, + { + "id": "99563", + "name": "Leninaul", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.09138000", + "longitude": "46.57434000" + }, + { + "id": "99565", + "name": "Leninkent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.96895000", + "longitude": "47.35202000" + }, + { + "id": "99612", + "name": "Levashi", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.43036000", + "longitude": "47.32148000" + }, + { + "id": "99613", + "name": "Levashinskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.41667000", + "longitude": "47.33333000" + }, + { + "id": "99694", + "name": "Lutkun", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.48084000", + "longitude": "47.68578000" + }, + { + "id": "99729", + "name": "Madzhalis", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.12167000", + "longitude": "47.83333000" + }, + { + "id": "99732", + "name": "Magaramkent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.61586000", + "longitude": "48.34797000" + }, + { + "id": "99733", + "name": "Magaramkentskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.66667000", + "longitude": "48.33333000" + }, + { + "id": "99743", + "name": "Makhachkala", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.97638000", + "longitude": "47.50236000" + }, + { + "id": "99776", + "name": "Mamedkala", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.16757000", + "longitude": "48.11671000" + }, + { + "id": "99781", + "name": "Manas", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.72749000", + "longitude": "47.67846000" + }, + { + "id": "99782", + "name": "Manaskent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.74020000", + "longitude": "47.69140000" + }, + { + "id": "99891", + "name": "Miatli", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.08173000", + "longitude": "46.82860000" + }, + { + "id": "99931", + "name": "Miskindzha", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.42402000", + "longitude": "47.84669000" + }, + { + "id": "99994", + "name": "Mugi", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.29944000", + "longitude": "47.42077000" + }, + { + "id": "100022", + "name": "Mutsalaul", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.27548000", + "longitude": "46.73078000" + }, + { + "id": "100036", + "name": "Myurego", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.41087000", + "longitude": "47.69304000" + }, + { + "id": "100161", + "name": "Nizhneye Kazanishche", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.76369000", + "longitude": "47.16027000" + }, + { + "id": "100166", + "name": "Nizhniy Dzhengutay", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.70008000", + "longitude": "47.24488000" + }, + { + "id": "100190", + "name": "Nogayskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.50000000", + "longitude": "46.00000000" + }, + { + "id": "100207", + "name": "Novaya Maka", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.77173000", + "longitude": "48.36149000" + }, + { + "id": "100242", + "name": "Novogagatli", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.45677000", + "longitude": "46.48175000" + }, + { + "id": "100247", + "name": "Novokayakent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.39368000", + "longitude": "47.98608000" + }, + { + "id": "100261", + "name": "Novolakskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16667000", + "longitude": "46.50000000" + }, + { + "id": "100262", + "name": "Novolakskoye", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.11952000", + "longitude": "46.48281000" + }, + { + "id": "100342", + "name": "Novyy Chirkey", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16205000", + "longitude": "47.05585000" + }, + { + "id": "100345", + "name": "Novyy Khushet", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.89941000", + "longitude": "47.56040000" + }, + { + "id": "100346", + "name": "Novyy Kostek", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.33530000", + "longitude": "46.82466000" + }, + { + "id": "100350", + "name": "Novyy Sulak", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.18126000", + "longitude": "46.82630000" + }, + { + "id": "100368", + "name": "Nuradilovo", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.28447000", + "longitude": "46.45763000" + }, + { + "id": "100544", + "name": "Paraul", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.74193000", + "longitude": "47.35531000" + }, + { + "id": "100626", + "name": "Pervomayskoye", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.91904000", + "longitude": "46.71019000" + }, + { + "id": "100746", + "name": "Pokrovskoye", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.28872000", + "longitude": "46.66527000" + }, + { + "id": "101035", + "name": "Rutul", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.53566000", + "longitude": "47.42391000" + }, + { + "id": "101036", + "name": "Rutul’skiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.66667000", + "longitude": "47.25000000" + }, + { + "id": "101062", + "name": "Sabnova", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.06316000", + "longitude": "48.25326000" + }, + { + "id": "101093", + "name": "Samur", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.82527000", + "longitude": "48.48597000" + }, + { + "id": "101184", + "name": "Sergokala", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.45468000", + "longitude": "47.66119000" + }, + { + "id": "101185", + "name": "Sergokalinskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.33333000", + "longitude": "47.58333000" + }, + { + "id": "101252", + "name": "Shamil’kala", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.68581000", + "longitude": "46.86393000" + }, + { + "id": "101253", + "name": "Shamil’skiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.41667000", + "longitude": "46.50000000" + }, + { + "id": "101254", + "name": "Shamkhal", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.05958000", + "longitude": "47.33732000" + }, + { + "id": "101255", + "name": "Shamkhal-Termen", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.03389000", + "longitude": "47.31053000" + }, + { + "id": "101381", + "name": "Siukh", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.59990000", + "longitude": "46.54462000" + }, + { + "id": "101456", + "name": "Solnechnoye", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.27600000", + "longitude": "46.50697000" + }, + { + "id": "101659", + "name": "Sulak", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.27342000", + "longitude": "47.51463000" + }, + { + "id": "101660", + "name": "Suleyman-Stal’skiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.66667000", + "longitude": "48.08333000" + }, + { + "id": "101731", + "name": "Syrtych", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.83388000", + "longitude": "48.22901000" + }, + { + "id": "101737", + "name": "Tabasaranskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.91667000", + "longitude": "48.00000000" + }, + { + "id": "101775", + "name": "Tarki", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.94423000", + "longitude": "47.49527000" + }, + { + "id": "101780", + "name": "Tarumovka", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.07606000", + "longitude": "46.53613000" + }, + { + "id": "101781", + "name": "Tarumovskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.41667000", + "longitude": "46.66667000" + }, + { + "id": "101813", + "name": "Temiraul", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25322000", + "longitude": "46.82540000" + }, + { + "id": "101828", + "name": "Terekli-Mekteb", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.16710000", + "longitude": "45.86975000" + }, + { + "id": "101865", + "name": "Tlyarata", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.10408000", + "longitude": "46.35590000" + }, + { + "id": "101866", + "name": "Tlyaratinskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.08333000", + "longitude": "46.41667000" + }, + { + "id": "101910", + "name": "Tpig", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.78007000", + "longitude": "47.58896000" + }, + { + "id": "101954", + "name": "Tsumadinskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.50000000", + "longitude": "46.08333000" + }, + { + "id": "101955", + "name": "Tsuntinskiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.16667000", + "longitude": "46.00000000" + }, + { + "id": "101956", + "name": "Tsurib", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.23680000", + "longitude": "46.83073000" + }, + { + "id": "101998", + "name": "Tyube", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.04926000", + "longitude": "47.30742000" + }, + { + "id": "102015", + "name": "Uchkent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.11427000", + "longitude": "47.08255000" + }, + { + "id": "102047", + "name": "Ulluaya", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.37377000", + "longitude": "47.37451000" + }, + { + "id": "102048", + "name": "Ullubiyaul", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.59689000", + "longitude": "47.71825000" + }, + { + "id": "102063", + "name": "Untsukul’", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.71149000", + "longitude": "46.78663000" + }, + { + "id": "102064", + "name": "Untsukul’skiy Rayon", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.66667000", + "longitude": "46.83333000" + }, + { + "id": "102078", + "name": "Urkarakh", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.16297000", + "longitude": "47.63068000" + }, + { + "id": "102079", + "name": "Urma", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.53894000", + "longitude": "47.28639000" + }, + { + "id": "102097", + "name": "Usisha", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.25111000", + "longitude": "47.39278000" + }, + { + "id": "102146", + "name": "Usukhchay", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "41.42245000", + "longitude": "47.91318000" + }, + { + "id": "102149", + "name": "Utamysh", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.40718000", + "longitude": "47.75109000" + }, + { + "id": "102152", + "name": "Utsmiyurt", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.53481000", + "longitude": "46.46952000" + }, + { + "id": "102210", + "name": "Velikent", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.18762000", + "longitude": "48.06366000" + }, + { + "id": "102248", + "name": "Verkhneye Kazanishche", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "42.73547000", + "longitude": "47.13780000" + }, + { + "id": "102616", + "name": "Yuzhno-Sukhokumsk", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.65811000", + "longitude": "45.64360000" + }, + { + "id": "102775", + "name": "Zubutli-Miatli", + "state_id": 1850, + "state_code": "DA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.19886000", + "longitude": "46.81241000" + }, + { + "id": "97589", + "name": "Ali-Yurt", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.14250000", + "longitude": "44.85250000" + }, + { + "id": "97592", + "name": "Alkhan-Churt", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.35194000", + "longitude": "44.78694000" + }, + { + "id": "98235", + "name": "Dalakovo", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.23759000", + "longitude": "44.58964000" + }, + { + "id": "98374", + "name": "Dzhayrakh", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "42.82043000", + "longitude": "44.68139000" + }, + { + "id": "98375", + "name": "Dzhayrakhskiy Rayon", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "42.80749000", + "longitude": "44.91760000" + }, + { + "id": "98382", + "name": "Ekazhevo", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.21222000", + "longitude": "44.82306000" + }, + { + "id": "98449", + "name": "Galashki", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.11740000", + "longitude": "44.99055000" + }, + { + "id": "98847", + "name": "Kantyshevo", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.22824000", + "longitude": "44.63322000" + }, + { + "id": "98856", + "name": "Karabulak", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.30513000", + "longitude": "44.89949000" + }, + { + "id": "99734", + "name": "Magas", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.22257000", + "longitude": "44.77261000" + }, + { + "id": "99754", + "name": "Malgobek", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.51118000", + "longitude": "44.58821000" + }, + { + "id": "99755", + "name": "Malgobekskiy Rayon", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.50000000", + "longitude": "44.58333000" + }, + { + "id": "100078", + "name": "Nazran’", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.22597000", + "longitude": "44.77323000" + }, + { + "id": "100077", + "name": "Nazranovskiy Rayon", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.25000000", + "longitude": "44.83333000" + }, + { + "id": "100112", + "name": "Nesterovskaya", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.23861000", + "longitude": "45.05028000" + }, + { + "id": "100178", + "name": "Nizhniye Achaluki", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.40280000", + "longitude": "44.75908000" + }, + { + "id": "100878", + "name": "Psedakh", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.46722000", + "longitude": "44.56917000" + }, + { + "id": "101073", + "name": "Sagopshi", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.48515000", + "longitude": "44.59063000" + }, + { + "id": "101605", + "name": "Staryy Malgobek", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.54437000", + "longitude": "44.59592000" + }, + { + "id": "101666", + "name": "Sunzha", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.31950000", + "longitude": "45.04911000" + }, + { + "id": "101668", + "name": "Sunzhenskiy Rayon", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.33333000", + "longitude": "45.08333000" + }, + { + "id": "101677", + "name": "Surkhakhi", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.18750000", + "longitude": "44.90194000" + }, + { + "id": "101916", + "name": "Troitskaya", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.30664000", + "longitude": "44.98395000" + }, + { + "id": "102260", + "name": "Verkhniye Achaluki", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.34694000", + "longitude": "44.69750000" + }, + { + "id": "102409", + "name": "Voznesenskaya", + "state_id": 1884, + "state_code": "IN", + "country_id": 182, + "country_code": "RU", + "latitude": "43.54379000", + "longitude": "44.74614000" + }, + { + "id": "97680", + "name": "Arshan’", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "46.27320000", + "longitude": "44.22000000" + }, + { + "id": "98389", + "name": "Elista", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "46.30778000", + "longitude": "44.25583000" + }, + { + "id": "98562", + "name": "Gorodoviki", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "46.13528000", + "longitude": "41.96556000" + }, + { + "id": "98563", + "name": "Gorodovikovsk", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "46.08785000", + "longitude": "41.93353000" + }, + { + "id": "98636", + "name": "Iki-Burul", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "45.82083000", + "longitude": "44.64722000" + }, + { + "id": "98637", + "name": "Iki-Burul’skiy Rayon", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "45.83333000", + "longitude": "44.66667000" + }, + { + "id": "98901", + "name": "Kaspiyskiy", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "45.39288000", + "longitude": "47.37073000" + }, + { + "id": "99174", + "name": "Komsomol’skiy", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "45.33000000", + "longitude": "46.04280000" + }, + { + "id": "99773", + "name": "Malyye Derbety", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "47.95472000", + "longitude": "44.68083000" + }, + { + "id": "100852", + "name": "Priyutnoye", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "46.10111000", + "longitude": "43.50722000" + }, + { + "id": "101065", + "name": "Sadovoye", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "47.77720000", + "longitude": "44.52080000" + }, + { + "id": "101123", + "name": "Sarpinskiy Rayon", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "47.83333000", + "longitude": "44.83333000" + }, + { + "id": "101516", + "name": "Sovetskoye", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "47.30868000", + "longitude": "44.52162000" + }, + { + "id": "101921", + "name": "Troitskoye", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "46.42060000", + "longitude": "44.25910000" + }, + { + "id": "101936", + "name": "Tsagan Aman", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "47.56390000", + "longitude": "46.72180000" + }, + { + "id": "102508", + "name": "Yashalta", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "46.33950000", + "longitude": "42.27620000" + }, + { + "id": "102509", + "name": "Yashaltinskiy Rayon", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "46.25000000", + "longitude": "42.50000000" + }, + { + "id": "102511", + "name": "Yashkul’", + "state_id": 1883, + "state_code": "KL", + "country_id": 182, + "country_code": "RU", + "latitude": "46.17110000", + "longitude": "45.34350000" + }, + { + "id": "97857", + "name": "Belomorsk", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "64.52322000", + "longitude": "34.76680000" + }, + { + "id": "98038", + "name": "Borovoy", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "64.61210000", + "longitude": "32.24968000" + }, + { + "id": "98223", + "name": "Chupa", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "66.27001000", + "longitude": "33.05486000" + }, + { + "id": "98405", + "name": "Essoyla", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.86983000", + "longitude": "33.14901000" + }, + { + "id": "98492", + "name": "Girvas", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.47962000", + "longitude": "33.68482000" + }, + { + "id": "98782", + "name": "Kalevala", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "65.19873000", + "longitude": "31.18999000" + }, + { + "id": "98939", + "name": "Kem’", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "64.95546000", + "longitude": "34.57929000" + }, + { + "id": "98965", + "name": "Kharlu", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.80000000", + "longitude": "30.95000000" + }, + { + "id": "98978", + "name": "Khelyulya", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.74900000", + "longitude": "30.66473000" + }, + { + "id": "99181", + "name": "Kondopoga", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.20565000", + "longitude": "34.26138000" + }, + { + "id": "99240", + "name": "Kostomuksha", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "64.57100000", + "longitude": "30.57667000" + }, + { + "id": "99515", + "name": "Kvartsitnyy", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.49321000", + "longitude": "35.02888000" + }, + { + "id": "99538", + "name": "Lakhdenpokh’ya", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.51981000", + "longitude": "30.19917000" + }, + { + "id": "99560", + "name": "Ledmozero", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "64.25444000", + "longitude": "32.02789000" + }, + { + "id": "99671", + "name": "Loukhi", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "66.07616000", + "longitude": "33.04745000" + }, + { + "id": "99706", + "name": "Lyaskelya", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.76322000", + "longitude": "31.00616000" + }, + { + "id": "99814", + "name": "Matrosy", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.78042000", + "longitude": "33.81283000" + }, + { + "id": "99848", + "name": "Medvezh’yegorsk", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.91713000", + "longitude": "34.45689000" + }, + { + "id": "100023", + "name": "Muyezerskiy", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "63.95758000", + "longitude": "31.98738000" + }, + { + "id": "100042", + "name": "Nadvoitsy", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "63.86667000", + "longitude": "34.31667000" + }, + { + "id": "100424", + "name": "Olonets", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "60.98475000", + "longitude": "32.96976000" + }, + { + "id": "100665", + "name": "Petrozavodsk", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.78491000", + "longitude": "34.34691000" + }, + { + "id": "100674", + "name": "Pindushi", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.91519000", + "longitude": "34.57996000" + }, + { + "id": "100688", + "name": "Pitkyaranta", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.57340000", + "longitude": "31.47915000" + }, + { + "id": "100689", + "name": "Pitkyarantskiy Rayon", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.58333000", + "longitude": "31.50000000" + }, + { + "id": "100780", + "name": "Porosozero", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.71912000", + "longitude": "32.72703000" + }, + { + "id": "100792", + "name": "Povenets", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.84870000", + "longitude": "34.82621000" + }, + { + "id": "100837", + "name": "Prionezhskiy Rayon", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.50000000", + "longitude": "34.33333000" + }, + { + "id": "100876", + "name": "Pryazha", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.69258000", + "longitude": "33.62159000" + }, + { + "id": "100888", + "name": "Pudozh", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.80415000", + "longitude": "36.52770000" + }, + { + "id": "100908", + "name": "Pyaozerskiy", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "65.76870000", + "longitude": "31.08925000" + }, + { + "id": "100920", + "name": "Rabocheostrovsk", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "64.98547000", + "longitude": "34.76611000" + }, + { + "id": "101028", + "name": "Ruskeala", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.93333000", + "longitude": "30.58333000" + }, + { + "id": "101080", + "name": "Salmi", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.36971000", + "longitude": "31.85185000" + }, + { + "id": "101149", + "name": "Segezha", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "63.74147000", + "longitude": "34.32218000" + }, + { + "id": "101250", + "name": "Shal’skiy", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.79698000", + "longitude": "36.01680000" + }, + { + "id": "101294", + "name": "Sheltozero", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.36667000", + "longitude": "35.36667000" + }, + { + "id": "101353", + "name": "Shun’ga", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.60263000", + "longitude": "34.94680000" + }, + { + "id": "101361", + "name": "Shuya", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.95251000", + "longitude": "34.23271000" + }, + { + "id": "101480", + "name": "Sortavala", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.71233000", + "longitude": "30.70953000" + }, + { + "id": "101481", + "name": "Sortaval’skiy Rayon", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.75000000", + "longitude": "30.66667000" + }, + { + "id": "101656", + "name": "Sukkozero", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "63.17018000", + "longitude": "32.34436000" + }, + { + "id": "101669", + "name": "Suoyarvi", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.08333000", + "longitude": "32.35000000" + }, + { + "id": "101670", + "name": "Suoyarvskiy Rayon", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.25000000", + "longitude": "32.25000000" + }, + { + "id": "102419", + "name": "Vyartsilya", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.17645000", + "longitude": "30.69296000" + }, + { + "id": "102485", + "name": "Yanis’yarvi", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "61.89127000", + "longitude": "30.94849000" + }, + { + "id": "102484", + "name": "Yanishpole", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "62.11095000", + "longitude": "34.27013000" + }, + { + "id": "102608", + "name": "Yushkozero", + "state_id": 1841, + "state_code": "KR", + "country_id": 182, + "country_code": "RU", + "latitude": "64.75162000", + "longitude": "32.10255000" + }, + { + "id": "97478", + "name": "Abakan", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.71556000", + "longitude": "91.42917000" + }, + { + "id": "97479", + "name": "Abakan Gorod", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.71667000", + "longitude": "91.43333000" + }, + { + "id": "97484", + "name": "Abaza", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "52.65500000", + "longitude": "90.09278000" + }, + { + "id": "97602", + "name": "Altayskiy Rayon", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.50000000", + "longitude": "91.50000000" + }, + { + "id": "97704", + "name": "Askiz", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.13194000", + "longitude": "90.52639000" + }, + { + "id": "97880", + "name": "Belyy Yar", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.60389000", + "longitude": "91.39028000" + }, + { + "id": "97917", + "name": "Beya", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.05333000", + "longitude": "90.91389000" + }, + { + "id": "97941", + "name": "Biskamzha", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.44972000", + "longitude": "89.52722000" + }, + { + "id": "97979", + "name": "Bograd", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "54.23444000", + "longitude": "90.83278000" + }, + { + "id": "97980", + "name": "Bogradskiy Rayon", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33333000", + "longitude": "91.00000000" + }, + { + "id": "98191", + "name": "Cherëmushki", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "52.85576000", + "longitude": "91.41672000" + }, + { + "id": "98170", + "name": "Chernogorsk", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.82361000", + "longitude": "91.28417000" + }, + { + "id": "99165", + "name": "Kommunar", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "54.34835000", + "longitude": "89.28297000" + }, + { + "id": "99827", + "name": "Mayna", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.00639000", + "longitude": "91.48361000" + }, + { + "id": "100730", + "name": "Podsineye", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.66583000", + "longitude": "91.53639000" + }, + { + "id": "101139", + "name": "Sayanogorsk", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.08750000", + "longitude": "91.39972000" + }, + { + "id": "101326", + "name": "Shira", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "54.49111000", + "longitude": "89.95306000" + }, + { + "id": "101479", + "name": "Sorsk", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00333000", + "longitude": "90.24667000" + }, + { + "id": "101790", + "name": "Tashtyp", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "52.79542000", + "longitude": "89.89477000" + }, + { + "id": "101963", + "name": "Tuim", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33949000", + "longitude": "89.94586000" + }, + { + "id": "102113", + "name": "Ust’-Abakan", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.83651000", + "longitude": "91.39077000" + }, + { + "id": "102284", + "name": "Vershina Tei", + "state_id": 1877, + "state_code": "KK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.26858000", + "longitude": "89.56008000" + }, + { + "id": "97654", + "name": "Ardatov", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.84767000", + "longitude": "46.23878000" + }, + { + "id": "97656", + "name": "Ardatovskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.83333000", + "longitude": "46.25000000" + }, + { + "id": "97709", + "name": "Atemar", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.18097000", + "longitude": "45.40909000" + }, + { + "id": "97717", + "name": "Atyashevo", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.56443000", + "longitude": "46.06905000" + }, + { + "id": "97718", + "name": "Atyashevskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "46.08333000" + }, + { + "id": "97719", + "name": "Atyur’yevskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33333000", + "longitude": "43.41667000" + }, + { + "id": "97792", + "name": "Barashevo", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.53250000", + "longitude": "42.87917000" + }, + { + "id": "98002", + "name": "Bol’shebereznikovskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.16667000", + "longitude": "45.83333000" + }, + { + "id": "98112", + "name": "Chamzinka", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.40188000", + "longitude": "45.78387000" + }, + { + "id": "98113", + "name": "Chamzinskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41667000", + "longitude": "45.75000000" + }, + { + "id": "98675", + "name": "Insar", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "53.86531000", + "longitude": "44.37382000" + }, + { + "id": "98676", + "name": "Insarskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "53.83333000", + "longitude": "44.41667000" + }, + { + "id": "98770", + "name": "Kadoshkino", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.02570000", + "longitude": "44.41910000" + }, + { + "id": "98938", + "name": "Kemlya", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.69630000", + "longitude": "45.24240000" + }, + { + "id": "99122", + "name": "Kochkurovo", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.03576000", + "longitude": "45.41845000" + }, + { + "id": "99123", + "name": "Kochkurovskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00000000", + "longitude": "45.41667000" + }, + { + "id": "99256", + "name": "Kovylkino", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.03876000", + "longitude": "43.91385000" + }, + { + "id": "99334", + "name": "Krasnoslobodsk", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.42530000", + "longitude": "43.78963000" + }, + { + "id": "99335", + "name": "Krasnoslobodskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41667000", + "longitude": "43.75000000" + }, + { + "id": "99583", + "name": "Lepley", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.30920000", + "longitude": "42.85990000" + }, + { + "id": "99685", + "name": "Lukhovka", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.14844000", + "longitude": "45.25728000" + }, + { + "id": "99702", + "name": "Lyambir’", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.28172000", + "longitude": "45.12494000" + }, + { + "id": "99701", + "name": "Lyambirskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33333000", + "longitude": "45.25000000" + }, + { + "id": "100133", + "name": "Nikolayevka", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.14510000", + "longitude": "45.14440000" + }, + { + "id": "100558", + "name": "Partsa", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.36530000", + "longitude": "42.86170000" + }, + { + "id": "100994", + "name": "Romodanovo", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.42753000", + "longitude": "45.32962000" + }, + { + "id": "100995", + "name": "Romodanovskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41667000", + "longitude": "45.33333000" + }, + { + "id": "101038", + "name": "Ruzayevka", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.06387000", + "longitude": "44.95090000" + }, + { + "id": "101039", + "name": "Ruzayevskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.08333000", + "longitude": "44.83333000" + }, + { + "id": "101110", + "name": "Saransk", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.18380000", + "longitude": "45.17490000" + }, + { + "id": "101327", + "name": "Shiringushi", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "53.84851000", + "longitude": "42.76759000" + }, + { + "id": "101489", + "name": "Sosnovka", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.71161000", + "longitude": "43.29774000" + }, + { + "id": "101593", + "name": "Staroshaygovskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33333000", + "longitude": "44.50000000" + }, + { + "id": "101794", + "name": "Tatarskaya Pishlya", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.06085000", + "longitude": "44.89978000" + }, + { + "id": "101818", + "name": "Temnikov", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.63023000", + "longitude": "43.21483000" + }, + { + "id": "101819", + "name": "Temnikovskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "43.16667000" + }, + { + "id": "101823", + "name": "Ten’gushevo", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.76861000", + "longitude": "42.71889000" + }, + { + "id": "101824", + "name": "Ten’gushevskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "42.75000000" + }, + { + "id": "101897", + "name": "Torbeyevo", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.07972000", + "longitude": "43.24732000" + }, + { + "id": "101974", + "name": "Turgenevo", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.84555000", + "longitude": "46.32968000" + }, + { + "id": "102018", + "name": "Udarnyy", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.34090000", + "longitude": "42.86110000" + }, + { + "id": "102056", + "name": "Umet", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.11611000", + "longitude": "42.69750000" + }, + { + "id": "102438", + "name": "Vysha", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "53.84768000", + "longitude": "42.37766000" + }, + { + "id": "102516", + "name": "Yavas", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41590000", + "longitude": "42.84910000" + }, + { + "id": "102550", + "name": "Yel’nikovskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "43.83333000" + }, + { + "id": "102770", + "name": "Zubova Polyana", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.07710000", + "longitude": "42.83720000" + }, + { + "id": "102772", + "name": "Zubovo-Polyanskiy Rayon", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00000000", + "longitude": "42.75000000" + }, + { + "id": "102785", + "name": "Zykovo", + "state_id": 1898, + "state_code": "MO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.06853000", + "longitude": "45.08633000" + }, + { + "id": "97554", + "name": "Alagir", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.04222000", + "longitude": "44.22222000" + }, + { + "id": "97555", + "name": "Alagirskiy Rayon", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.83333000", + "longitude": "44.08333000" + }, + { + "id": "97658", + "name": "Ardon", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.17720000", + "longitude": "44.29702000" + }, + { + "id": "97670", + "name": "Arkhonskaya", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.11000000", + "longitude": "44.51250000" + }, + { + "id": "97910", + "name": "Beslan", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.19217000", + "longitude": "44.54313000" + }, + { + "id": "98163", + "name": "Chermen", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.15186000", + "longitude": "44.71231000" + }, + { + "id": "98194", + "name": "Chikola", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.19055000", + "longitude": "43.92093000" + }, + { + "id": "98230", + "name": "Dachnoye", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.08468000", + "longitude": "44.73580000" + }, + { + "id": "98273", + "name": "Digora", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.15806000", + "longitude": "44.15694000" + }, + { + "id": "98274", + "name": "Digorskiy Rayon", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16667000", + "longitude": "44.08333000" + }, + { + "id": "98493", + "name": "Gizel’", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.04000000", + "longitude": "44.57083000" + }, + { + "id": "98686", + "name": "Irafskiy Rayon", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.00000000", + "longitude": "43.75000000" + }, + { + "id": "98807", + "name": "Kambileyevskoye", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.07858000", + "longitude": "44.75216000" + }, + { + "id": "98875", + "name": "Kardzhin", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.27368000", + "longitude": "44.29075000" + }, + { + "id": "99018", + "name": "Khumalag", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.24031000", + "longitude": "44.47521000" + }, + { + "id": "99070", + "name": "Kirovskiy Rayon", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.33333000", + "longitude": "44.33333000" + }, + { + "id": "99093", + "name": "Kizlyar", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.70379000", + "longitude": "44.59440000" + }, + { + "id": "99905", + "name": "Mikhaylovskoye", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.09972000", + "longitude": "44.63164000" + }, + { + "id": "99934", + "name": "Mizur", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.85376000", + "longitude": "44.06393000" + }, + { + "id": "99984", + "name": "Mozdok", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.74359000", + "longitude": "44.65177000" + }, + { + "id": "100194", + "name": "Nogir", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.08162000", + "longitude": "44.63650000" + }, + { + "id": "100565", + "name": "Pavlodol’skaya", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.71923000", + "longitude": "44.47815000" + }, + { + "id": "100804", + "name": "Pravoberezhnyy Rayon", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.16667000", + "longitude": "44.66667000" + }, + { + "id": "100822", + "name": "Prigorodnyy Rayon", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.08333000", + "longitude": "44.83333000" + }, + { + "id": "101667", + "name": "Sunzha", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.05862000", + "longitude": "44.82281000" + }, + { + "id": "101779", + "name": "Tarskoye", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.96606000", + "longitude": "44.77540000" + }, + { + "id": "101837", + "name": "Terskaya", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.72376000", + "longitude": "44.72442000" + }, + { + "id": "101923", + "name": "Troitskoye", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.76219000", + "longitude": "44.68415000" + }, + { + "id": "102252", + "name": "Verkhniy Fiagdon", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "42.83454000", + "longitude": "44.30604000" + }, + { + "id": "102325", + "name": "Vladikavkaz", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.03667000", + "longitude": "44.66778000" + }, + { + "id": "102754", + "name": "Zmeyskaya", + "state_id": 1853, + "state_code": "SE", + "country_id": 182, + "country_code": "RU", + "latitude": "43.33617000", + "longitude": "44.15733000" + }, + { + "id": "97522", + "name": "Agryz", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.52034000", + "longitude": "52.99422000" + }, + { + "id": "97523", + "name": "Agryzskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "52.83333000" + }, + { + "id": "97545", + "name": "Aksubayevskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.83333000", + "longitude": "50.83333000" + }, + { + "id": "97546", + "name": "Aktanysh", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72156000", + "longitude": "54.08293000" + }, + { + "id": "97547", + "name": "Aktanyshskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "53.83333000" + }, + { + "id": "97549", + "name": "Aktyubinskiy", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.81372000", + "longitude": "52.80559000" + }, + { + "id": "97607", + "name": "Al’keyevskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "50.00000000" + }, + { + "id": "97608", + "name": "Al’met’yevsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.90442000", + "longitude": "52.31540000" + }, + { + "id": "97609", + "name": "Al’met’yevskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "52.41667000" + }, + { + "id": "97581", + "name": "Alekseyevskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16667000", + "longitude": "50.00000000" + }, + { + "id": "97582", + "name": "Alekseyevskoye", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.30706000", + "longitude": "50.11353000" + }, + { + "id": "97647", + "name": "Apastovo", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.20293000", + "longitude": "48.51091000" + }, + { + "id": "97648", + "name": "Apastovskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25000000", + "longitude": "48.50000000" + }, + { + "id": "97681", + "name": "Arsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.09151000", + "longitude": "49.87783000" + }, + { + "id": "97682", + "name": "Arskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16667000", + "longitude": "49.91667000" + }, + { + "id": "97716", + "name": "Atninskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "49.41667000" + }, + { + "id": "97730", + "name": "Aysha", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.87035000", + "longitude": "48.63187000" + }, + { + "id": "97733", + "name": "Aznakayevskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "53.00000000" + }, + { + "id": "97780", + "name": "Baltasi", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.34620000", + "longitude": "50.20620000" + }, + { + "id": "97781", + "name": "Baltasinskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.33333000", + "longitude": "50.25000000" + }, + { + "id": "97818", + "name": "Bavlinskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.25000000", + "longitude": "53.25000000" + }, + { + "id": "97819", + "name": "Bavly", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.39304000", + "longitude": "53.26023000" + }, + { + "id": "97831", + "name": "Bazarnyye Mataki", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.88333000", + "longitude": "49.93333000" + }, + { + "id": "97930", + "name": "Bilyarsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.98358000", + "longitude": "50.38671000" + }, + { + "id": "97964", + "name": "Bogatyye Saby", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.01020000", + "longitude": "50.44830000" + }, + { + "id": "97990", + "name": "Bolgar", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.95000000", + "longitude": "49.06667000" + }, + { + "id": "98067", + "name": "Bugul’ma", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.53780000", + "longitude": "52.79850000" + }, + { + "id": "98068", + "name": "Bugul’minskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "52.91667000" + }, + { + "id": "98071", + "name": "Buinsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.97119000", + "longitude": "48.29184000" + }, + { + "id": "98072", + "name": "Buinskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "48.25000000" + }, + { + "id": "98150", + "name": "Cheremshan", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "51.50000000" + }, + { + "id": "98152", + "name": "Cheremshanskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75000000", + "longitude": "51.50000000" + }, + { + "id": "98200", + "name": "Chistopol’", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.36311000", + "longitude": "50.64244000" + }, + { + "id": "98201", + "name": "Chistopol’skiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "50.75000000" + }, + { + "id": "98327", + "name": "Drozhzhanovskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75000000", + "longitude": "47.58333000" + }, + { + "id": "98372", + "name": "Dzhalil’", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.02390000", + "longitude": "52.73580000" + }, + { + "id": "98548", + "name": "Gorod Buinsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.96694000", + "longitude": "48.28500000" + }, + { + "id": "98551", + "name": "Gorod Kazan’", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "49.13333000" + }, + { + "id": "98553", + "name": "Gorod Nizhnekamsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63333000", + "longitude": "51.81667000" + }, + { + "id": "98555", + "name": "Gorod Yelabuga", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "52.06667000" + }, + { + "id": "98556", + "name": "Gorod Zainsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31667000", + "longitude": "52.05000000" + }, + { + "id": "98557", + "name": "Gorod Zelënodol’sk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "48.50000000" + }, + { + "id": "98827", + "name": "Kamsko-Ust’inskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16667000", + "longitude": "49.00000000" + }, + { + "id": "98852", + "name": "Karabash", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.69300000", + "longitude": "52.58359000" + }, + { + "id": "98918", + "name": "Kaybitskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.41667000", + "longitude": "48.16667000" + }, + { + "id": "98926", + "name": "Kazan", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.78874000", + "longitude": "49.12214000" + }, + { + "id": "99425", + "name": "Kukmor", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.18550000", + "longitude": "50.89440000" + }, + { + "id": "99426", + "name": "Kukmorskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "50.66667000" + }, + { + "id": "99496", + "name": "Kuybyshevskiy Zaton", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.15930000", + "longitude": "49.17010000" + }, + { + "id": "99535", + "name": "Laishevo", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.40464000", + "longitude": "49.55037000" + }, + { + "id": "99536", + "name": "Laishevskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50000000", + "longitude": "49.58333000" + }, + { + "id": "99566", + "name": "Leninogorsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.60256000", + "longitude": "52.46087000" + }, + { + "id": "99567", + "name": "Leninogorskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "52.08333000" + }, + { + "id": "99677", + "name": "Lubyany", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.03780000", + "longitude": "51.40001000" + }, + { + "id": "99774", + "name": "Mamadysh", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.71525000", + "longitude": "51.40797000" + }, + { + "id": "99775", + "name": "Mamadyshskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "51.25000000" + }, + { + "id": "99863", + "name": "Mendeleyevsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.90819000", + "longitude": "52.29047000" + }, + { + "id": "99865", + "name": "Mendeleyevskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91667000", + "longitude": "52.33333000" + }, + { + "id": "99866", + "name": "Menzelinsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72706000", + "longitude": "53.10258000" + }, + { + "id": "99867", + "name": "Menzelinskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "53.00000000" + }, + { + "id": "100019", + "name": "Muslyumovo", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.30333000", + "longitude": "53.19472000" + }, + { + "id": "100021", + "name": "Muslyumovskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25000000", + "longitude": "53.25000000" + }, + { + "id": "100037", + "name": "Naberezhnyye Chelny", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72545000", + "longitude": "52.41122000" + }, + { + "id": "100155", + "name": "Nizhnekamsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63657000", + "longitude": "51.82447000" + }, + { + "id": "100156", + "name": "Nizhnekamskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.41667000", + "longitude": "51.58333000" + }, + { + "id": "100180", + "name": "Nizhniye Vyazovyye", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.79877000", + "longitude": "48.52476000" + }, + { + "id": "100183", + "name": "Nizhnyaya Maktama", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.86356000", + "longitude": "52.42810000" + }, + { + "id": "100300", + "name": "Novosheshminsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.06513000", + "longitude": "51.23376000" + }, + { + "id": "100301", + "name": "Novosheshminskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.08333000", + "longitude": "51.25000000" + }, + { + "id": "100370", + "name": "Nurlat", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.42766000", + "longitude": "50.80511000" + }, + { + "id": "100371", + "name": "Nurlatskiy rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50000000", + "longitude": "50.75000000" + }, + { + "id": "100488", + "name": "Osinovo", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.88090000", + "longitude": "48.88100000" + }, + { + "id": "100641", + "name": "Pestrechinskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75000000", + "longitude": "49.75000000" + }, + { + "id": "100642", + "name": "Pestretsy", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.75313000", + "longitude": "49.65454000" + }, + { + "id": "101032", + "name": "Russkiy Aktash", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.03840000", + "longitude": "52.12140000" + }, + { + "id": "101050", + "name": "Rybnaya Sloboda", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.46129000", + "longitude": "50.14090000" + }, + { + "id": "101051", + "name": "Rybno-Slobodskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58333000", + "longitude": "50.16667000" + }, + { + "id": "101061", + "name": "Sabinskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "50.50000000" + }, + { + "id": "101120", + "name": "Sarmanovo", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25529000", + "longitude": "52.58907000" + }, + { + "id": "101121", + "name": "Sarmanovskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.25000000", + "longitude": "52.58333000" + }, + { + "id": "101295", + "name": "Shemordan", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.18560000", + "longitude": "50.39720000" + }, + { + "id": "101344", + "name": "Shugurovo", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50828000", + "longitude": "52.13265000" + }, + { + "id": "101531", + "name": "Spasskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "49.50000000" + }, + { + "id": "101600", + "name": "Staroye Arakchino", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.80410000", + "longitude": "48.97090000" + }, + { + "id": "101601", + "name": "Staroye Drozhzhanoye", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.72657000", + "longitude": "47.56766000" + }, + { + "id": "101621", + "name": "Stolbishchi", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.64679000", + "longitude": "49.21595000" + }, + { + "id": "101711", + "name": "Sviyazhsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.77329000", + "longitude": "48.66051000" + }, + { + "id": "101842", + "name": "Tetyushi", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.93821000", + "longitude": "48.83656000" + }, + { + "id": "101843", + "name": "Tetyushskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "48.75000000" + }, + { + "id": "101965", + "name": "Tukayevskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "52.25000000" + }, + { + "id": "102002", + "name": "Tyulyachi", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.89125000", + "longitude": "50.23992000" + }, + { + "id": "102003", + "name": "Tyulyachinskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91667000", + "longitude": "50.25000000" + }, + { + "id": "102090", + "name": "Urussu", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.59812000", + "longitude": "53.46313000" + }, + { + "id": "102198", + "name": "Vasil’yevo", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83595000", + "longitude": "48.65820000" + }, + { + "id": "102243", + "name": "Verkhneuslonskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "48.75000000" + }, + { + "id": "102259", + "name": "Verkhniy Uslon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.77010000", + "longitude": "48.98230000" + }, + { + "id": "102444", + "name": "Vysokaya Gora", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91278000", + "longitude": "49.30167000" + }, + { + "id": "102448", + "name": "Vysokogorskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.90000000", + "longitude": "49.31667000" + }, + { + "id": "102532", + "name": "Yelabuga", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.76127000", + "longitude": "52.06493000" + }, + { + "id": "102533", + "name": "Yelabuzhskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "51.83333000" + }, + { + "id": "102610", + "name": "Yutazinskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "53.50000000" + }, + { + "id": "102631", + "name": "Zainsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.31950000", + "longitude": "52.06942000" + }, + { + "id": "102632", + "name": "Zainskiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.30000000", + "longitude": "52.00000000" + }, + { + "id": "102694", + "name": "Zelenodol’skiy Rayon", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91667000", + "longitude": "48.75000000" + }, + { + "id": "102693", + "name": "Zelenodolsk", + "state_id": 1861, + "state_code": "TA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.84376000", + "longitude": "48.51784000" + }, + { + "id": "97542", + "name": "Aksay", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.25838000", + "longitude": "39.86675000" + }, + { + "id": "97598", + "name": "Almaznyy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.04476000", + "longitude": "40.04501000" + }, + { + "id": "97622", + "name": "Anastasiyevka", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.56072000", + "longitude": "38.52837000" + }, + { + "id": "97731", + "name": "Ayutinskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.78228000", + "longitude": "40.14763000" + }, + { + "id": "97734", + "name": "Azov", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.10779000", + "longitude": "39.41648000" + }, + { + "id": "97752", + "name": "Bagayevskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.32411000", + "longitude": "40.38791000" + }, + { + "id": "97811", + "name": "Bataysk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.13975000", + "longitude": "39.75181000" + }, + { + "id": "97842", + "name": "Belaya Kalitva", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.18585000", + "longitude": "40.77424000" + }, + { + "id": "97985", + "name": "Bokovskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "49.22899000", + "longitude": "41.83060000" + }, + { + "id": "98101", + "name": "Bystrogorskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.20813000", + "longitude": "41.14097000" + }, + { + "id": "98110", + "name": "Chaltyr", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.28477000", + "longitude": "39.48232000" + }, + { + "id": "98186", + "name": "Chertkovo", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "49.38451000", + "longitude": "40.14723000" + }, + { + "id": "98310", + "name": "Donetsk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.33962000", + "longitude": "39.95948000" + }, + { + "id": "98311", + "name": "Donskoy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.41404000", + "longitude": "40.25742000" + }, + { + "id": "98340", + "name": "Dubovskoye", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.41420000", + "longitude": "42.76970000" + }, + { + "id": "98489", + "name": "Gigant", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.50665000", + "longitude": "41.34185000" + }, + { + "id": "98501", + "name": "Glubokiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.52716000", + "longitude": "40.33144000" + }, + { + "id": "98538", + "name": "Gornyatskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.29649000", + "longitude": "40.92404000" + }, + { + "id": "98540", + "name": "Gornyy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.81592000", + "longitude": "40.20363000" + }, + { + "id": "98595", + "name": "Grushevskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.44056000", + "longitude": "39.95111000" + }, + { + "id": "98608", + "name": "Gukovo", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.06212000", + "longitude": "39.93550000" + }, + { + "id": "98612", + "name": "Gundorovskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.78047000", + "longitude": "41.89680000" + }, + { + "id": "98776", + "name": "Kagal’nitskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.88056000", + "longitude": "40.14657000" + }, + { + "id": "98785", + "name": "Kalinin", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.24678000", + "longitude": "39.51088000" + }, + { + "id": "98818", + "name": "Kamenolomni", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.66853000", + "longitude": "40.20510000" + }, + { + "id": "98819", + "name": "Kamensk-Shakhtinskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.31779000", + "longitude": "40.25948000" + }, + { + "id": "98890", + "name": "Kashary", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "49.04001000", + "longitude": "41.00557000" + }, + { + "id": "98927", + "name": "Kazanskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "49.79333000", + "longitude": "41.14667000" + }, + { + "id": "99066", + "name": "Kirovskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.97480000", + "longitude": "40.04020000" + }, + { + "id": "99134", + "name": "Koksovyy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.19742000", + "longitude": "40.64325000" + }, + { + "id": "99189", + "name": "Konstantinovsk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.58278000", + "longitude": "41.09222000" + }, + { + "id": "99284", + "name": "Krasnaya Polyana", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.11293000", + "longitude": "41.50157000" + }, + { + "id": "99293", + "name": "Krasnoarmeyskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.01140000", + "longitude": "42.20720000" + }, + { + "id": "99341", + "name": "Krasnovka", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.81769000", + "longitude": "40.09226000" + }, + { + "id": "99344", + "name": "Krasnoyarskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.65010000", + "longitude": "42.04430000" + }, + { + "id": "99373", + "name": "Krasnyy Sulin", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.89221000", + "longitude": "40.07037000" + }, + { + "id": "99385", + "name": "Krasyukovskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.55222000", + "longitude": "40.10885000" + }, + { + "id": "99395", + "name": "Krivyanskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.39689000", + "longitude": "40.16680000" + }, + { + "id": "99407", + "name": "Krym", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.30025000", + "longitude": "39.51637000" + }, + { + "id": "99431", + "name": "Kuleshovka", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.07802000", + "longitude": "39.55794000" + }, + { + "id": "99494", + "name": "Kuybyshevo", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.81228000", + "longitude": "38.90731000" + }, + { + "id": "99607", + "name": "Letnik", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.01100000", + "longitude": "41.26570000" + }, + { + "id": "99625", + "name": "Likhovskoy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.15188000", + "longitude": "40.17925000" + }, + { + "id": "99626", + "name": "Likhoy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.12662000", + "longitude": "40.20556000" + }, + { + "id": "99806", + "name": "Martynovskiy Rayon", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.24867000", + "longitude": "41.49792000" + }, + { + "id": "99809", + "name": "Masalovka", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.40372000", + "longitude": "40.26064000" + }, + { + "id": "99815", + "name": "Matveyev Kurgan", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.56450000", + "longitude": "38.86947000" + }, + { + "id": "99832", + "name": "Mayskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.69600000", + "longitude": "40.10259000" + }, + { + "id": "99838", + "name": "Mechetinskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.77130000", + "longitude": "40.45597000" + }, + { + "id": "99857", + "name": "Melikhovskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.48106000", + "longitude": "40.48669000" + }, + { + "id": "99910", + "name": "Millerovo", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.92265000", + "longitude": "40.39673000" + }, + { + "id": "99912", + "name": "Milyutinskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.62788000", + "longitude": "41.66788000" + }, + { + "id": "99913", + "name": "Milyutinskiy Rayon", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.66550000", + "longitude": "41.74981000" + }, + { + "id": "99966", + "name": "Morozovsk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.35502000", + "longitude": "41.82627000" + }, + { + "id": "100082", + "name": "Nedvigovka", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.26873000", + "longitude": "39.34880000" + }, + { + "id": "100137", + "name": "Nikolayevskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.61391000", + "longitude": "41.50230000" + }, + { + "id": "100226", + "name": "Novobataysk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.89806000", + "longitude": "39.78194000" + }, + { + "id": "100228", + "name": "Novobessergenovka", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.18465000", + "longitude": "38.84625000" + }, + { + "id": "100235", + "name": "Novocherkassk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.42096000", + "longitude": "40.09185000" + }, + { + "id": "100297", + "name": "Novoshakhtinsk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.76037000", + "longitude": "39.93335000" + }, + { + "id": "100354", + "name": "Novyy Yegorlyk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.39270000", + "longitude": "41.87162000" + }, + { + "id": "100384", + "name": "Oblivskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.53616000", + "longitude": "42.50138000" + }, + { + "id": "100436", + "name": "Ol’ginskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.18794000", + "longitude": "39.94925000" + }, + { + "id": "100473", + "name": "Orlovskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.87139000", + "longitude": "42.05917000" + }, + { + "id": "100612", + "name": "Persianovka", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.52972000", + "longitude": "39.41833000" + }, + { + "id": "100631", + "name": "Peschanokopskoye", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.19517000", + "longitude": "41.08143000" + }, + { + "id": "100633", + "name": "Peshkovo", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.01867000", + "longitude": "39.38845000" + }, + { + "id": "100747", + "name": "Pokrovskoye", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.41570000", + "longitude": "38.89706000" + }, + { + "id": "100781", + "name": "Port-Katon", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.87900000", + "longitude": "38.75600000" + }, + { + "id": "100829", + "name": "Primorka", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.28395000", + "longitude": "39.06408000" + }, + { + "id": "100863", + "name": "Proletarsk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.70289000", + "longitude": "41.72717000" + }, + { + "id": "100944", + "name": "Rassvet", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.83333000", + "longitude": "40.75000000" + }, + { + "id": "100960", + "name": "Remontnoye", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.56140000", + "longitude": "43.65010000" + }, + { + "id": "100975", + "name": "Rodionovo-Nesvetaiskoye", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.60000000", + "longitude": "39.70000000" + }, + { + "id": "100976", + "name": "Rodionovo-Nesvetayskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.61033000", + "longitude": "39.71212000" + }, + { + "id": "100990", + "name": "Romanovskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.54260000", + "longitude": "42.02850000" + }, + { + "id": "101007", + "name": "Rostov-na-Donu", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.23135000", + "longitude": "39.72328000" + }, + { + "id": "101083", + "name": "Sal’sk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.47470000", + "longitude": "41.54114000" + }, + { + "id": "101086", + "name": "Samarskoye", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.93700000", + "longitude": "39.68810000" + }, + { + "id": "101088", + "name": "Sambek", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.74306000", + "longitude": "39.83083000" + }, + { + "id": "101097", + "name": "Sandata", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.27081000", + "longitude": "41.75834000" + }, + { + "id": "101163", + "name": "Semikarakorsk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.51675000", + "longitude": "40.80577000" + }, + { + "id": "101241", + "name": "Shakhty", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.70911000", + "longitude": "40.21443000" + }, + { + "id": "101337", + "name": "Sholokhovskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.28071000", + "longitude": "41.04592000" + }, + { + "id": "101374", + "name": "Sinegorskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.01389000", + "longitude": "40.84468000" + }, + { + "id": "101378", + "name": "Sinyavskoye", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.27703000", + "longitude": "39.27888000" + }, + { + "id": "101438", + "name": "Sokolovo-Kundryuchenskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.83536000", + "longitude": "39.94711000" + }, + { + "id": "101507", + "name": "Sovetskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "49.00912000", + "longitude": "42.12178000" + }, + { + "id": "101565", + "name": "Staraya Stanitsa", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.34579000", + "longitude": "40.29376000" + }, + { + "id": "101575", + "name": "Starocherkasskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.24077000", + "longitude": "40.04186000" + }, + { + "id": "101740", + "name": "Taganrog", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.23617000", + "longitude": "38.89688000" + }, + { + "id": "101756", + "name": "Talovyy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.80765000", + "longitude": "40.10943000" + }, + { + "id": "101765", + "name": "Tanais", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.26837000", + "longitude": "39.33425000" + }, + { + "id": "101770", + "name": "Tarasovskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.72727000", + "longitude": "40.36267000" + }, + { + "id": "101798", + "name": "Tatsinskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.19677000", + "longitude": "41.27558000" + }, + { + "id": "101938", + "name": "Tselina", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.53381000", + "longitude": "41.03284000" + }, + { + "id": "101949", + "name": "Tsimlyansk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.64611000", + "longitude": "42.10194000" + }, + { + "id": "102028", + "name": "Uglegorskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.24274000", + "longitude": "41.25310000" + }, + { + "id": "102031", + "name": "Uglerodovskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.14558000", + "longitude": "40.06352000" + }, + { + "id": "102118", + "name": "Ust’-Donetskiy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.64189000", + "longitude": "40.87182000" + }, + { + "id": "102292", + "name": "Vesëlyy", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.09338000", + "longitude": "40.74220000" + }, + { + "id": "102289", + "name": "Veshenskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "49.63033000", + "longitude": "41.73340000" + }, + { + "id": "102344", + "name": "Volgodonsk", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.51361000", + "longitude": "42.15139000" + }, + { + "id": "102524", + "name": "Yegorlykskaya", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.56564000", + "longitude": "40.65621000" + }, + { + "id": "102668", + "name": "Zavetnoye", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.11944000", + "longitude": "43.89028000" + }, + { + "id": "102707", + "name": "Zernograd", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "46.84518000", + "longitude": "40.30834000" + }, + { + "id": "102734", + "name": "Zhirnov", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.17089000", + "longitude": "41.12608000" + }, + { + "id": "102748", + "name": "Zimovniki", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "47.14740000", + "longitude": "42.47210000" + }, + { + "id": "102781", + "name": "Zverevo", + "state_id": 1837, + "state_code": "ROS", + "country_id": 182, + "country_code": "RU", + "latitude": "48.02108000", + "longitude": "40.12282000" + }, + { + "id": "97564", + "name": "Aleksandro-Nevskiy", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.47510000", + "longitude": "40.20950000" + }, + { + "id": "97754", + "name": "Bagramovo", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.72337000", + "longitude": "39.45186000" + }, + { + "id": "98213", + "name": "Chuchkovo", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.26931000", + "longitude": "41.44648000" + }, + { + "id": "98623", + "name": "Gus’-Zheleznyy", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.05811000", + "longitude": "41.16556000" + }, + { + "id": "98747", + "name": "Izhevskoye", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.55700000", + "longitude": "40.87530000" + }, + { + "id": "98769", + "name": "Kadom", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.55917000", + "longitude": "42.46750000" + }, + { + "id": "98897", + "name": "Kasimov", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.94111000", + "longitude": "41.39528000" + }, + { + "id": "98898", + "name": "Kasimovskiy Rayon", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91667000", + "longitude": "41.41667000" + }, + { + "id": "99058", + "name": "Kiritsy", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.28620000", + "longitude": "40.35720000" + }, + { + "id": "99097", + "name": "Klepikovskiy Rayon", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.08333000", + "longitude": "40.08333000" + }, + { + "id": "99202", + "name": "Korablino", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.91639000", + "longitude": "40.01333000" + }, + { + "id": "99545", + "name": "Lashma", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.93210000", + "longitude": "41.14379000" + }, + { + "id": "99594", + "name": "Lesnoy", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.21250000", + "longitude": "40.47130000" + }, + { + "id": "99895", + "name": "Mikhaylov", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.22980000", + "longitude": "39.02690000" + }, + { + "id": "99911", + "name": "Miloslavskoye", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.58152000", + "longitude": "39.43992000" + }, + { + "id": "100011", + "name": "Murmino", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.60430000", + "longitude": "40.05490000" + }, + { + "id": "100266", + "name": "Novomichurinsk", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.03840000", + "longitude": "39.74790000" + }, + { + "id": "100409", + "name": "Oktyabr’skiy", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.22675000", + "longitude": "38.89402000" + }, + { + "id": "100563", + "name": "Pavelets", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.78833000", + "longitude": "39.24601000" + }, + { + "id": "100686", + "name": "Pitelino", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.57768000", + "longitude": "41.81448000" + }, + { + "id": "100761", + "name": "Polyany", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.71801000", + "longitude": "39.82932000" + }, + { + "id": "100869", + "name": "Pronsk", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.10480000", + "longitude": "39.60920000" + }, + { + "id": "100906", + "name": "Putyatino", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.15998000", + "longitude": "41.11690000" + }, + { + "id": "101045", + "name": "Ryazan’", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.62690000", + "longitude": "39.69160000" + }, + { + "id": "101044", + "name": "Ryazanskiy Rayon", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "39.75000000" + }, + { + "id": "101046", + "name": "Ryazhsk", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.70380000", + "longitude": "40.11090000" + }, + { + "id": "101052", + "name": "Rybnovskiy Rayon", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.75000000", + "longitude": "39.50000000" + }, + { + "id": "101053", + "name": "Rybnoye", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.72774000", + "longitude": "39.51731000" + }, + { + "id": "101103", + "name": "Sapozhok", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.94194000", + "longitude": "40.68056000" + }, + { + "id": "101105", + "name": "Sarai", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.74577000", + "longitude": "41.02126000" + }, + { + "id": "101128", + "name": "Sasovo", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.35369000", + "longitude": "41.91986000" + }, + { + "id": "101271", + "name": "Shatsk", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.02576000", + "longitude": "41.71191000" + }, + { + "id": "101315", + "name": "Shilovo", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.32040000", + "longitude": "40.87400000" + }, + { + "id": "101389", + "name": "Skopin", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.82486000", + "longitude": "39.55053000" + }, + { + "id": "101466", + "name": "Solotcha", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.78970000", + "longitude": "39.83336000" + }, + { + "id": "101524", + "name": "Spas-Klepiki", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.13472000", + "longitude": "40.17673000" + }, + { + "id": "101529", + "name": "Spassk-Ryazanskiy", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.40400000", + "longitude": "40.37620000" + }, + { + "id": "101603", + "name": "Starozhilovo", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.22540000", + "longitude": "39.91600000" + }, + { + "id": "101727", + "name": "Syntul", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00327000", + "longitude": "41.29711000" + }, + { + "id": "101967", + "name": "Tuma", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.14798000", + "longitude": "40.55374000" + }, + { + "id": "102042", + "name": "Ukholovo", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.79290000", + "longitude": "40.48920000" + }, + { + "id": "102305", + "name": "Vilenka", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.26930000", + "longitude": "38.91663000" + }, + { + "id": "102478", + "name": "Yambirno", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.12310000", + "longitude": "42.09110000" + }, + { + "id": "102537", + "name": "Yelat’ma", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.96750000", + "longitude": "41.75083000" + }, + { + "id": "102566", + "name": "Yermish’", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.76778000", + "longitude": "42.27111000" + }, + { + "id": "102635", + "name": "Zakharovo", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.36600000", + "longitude": "39.27920000" + }, + { + "id": "102636", + "name": "Zakharovskiy Rayon", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41667000", + "longitude": "39.25000000" + }, + { + "id": "102653", + "name": "Zarechnyy", + "state_id": 1905, + "state_code": "RYA", + "country_id": 182, + "country_code": "RU", + "latitude": "53.73060000", + "longitude": "39.59437000" + }, + { + "id": "97504", + "name": "Admiralteisky", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.90839000", + "longitude": "30.28484000" + }, + { + "id": "97570", + "name": "Aleksandrovskaya", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.73083000", + "longitude": "30.33222000" + }, + { + "id": "97724", + "name": "Avtovo", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.87167000", + "longitude": "30.26583000" + }, + { + "id": "97859", + "name": "Beloostrov", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.15118000", + "longitude": "30.00151000" + }, + { + "id": "98105", + "name": "Centralniy", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.93111000", + "longitude": "30.36072000" + }, + { + "id": "98231", + "name": "Dachnoye", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.84167000", + "longitude": "30.25583000" + }, + { + "id": "98438", + "name": "Frunzenskiy Rayon", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.87190000", + "longitude": "30.37891000" + }, + { + "id": "98523", + "name": "Gorelovo", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.77234000", + "longitude": "30.13455000" + }, + { + "id": "98579", + "name": "Grazhdanka", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.03587000", + "longitude": "30.40518000" + }, + { + "id": "99144", + "name": "Kolomyagi", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.02427000", + "longitude": "30.28491000" + }, + { + "id": "99147", + "name": "Kolpino", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.75069000", + "longitude": "30.58856000" + }, + { + "id": "99161", + "name": "Komarovo", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.18660000", + "longitude": "29.80865000" + }, + { + "id": "99162", + "name": "Komendantsky aerodrom", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.00448000", + "longitude": "30.27523000" + }, + { + "id": "99319", + "name": "Krasnogvargeisky", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.97305000", + "longitude": "30.47607000" + }, + { + "id": "99353", + "name": "Krasnoye Selo", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.73833000", + "longitude": "30.08944000" + }, + { + "id": "99397", + "name": "Kronshtadt", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.99541000", + "longitude": "29.76668000" + }, + { + "id": "99450", + "name": "Kupchino", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.85278000", + "longitude": "30.35667000" + }, + { + "id": "99470", + "name": "Kurortnyy Rayon", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.17601000", + "longitude": "29.87389000" + }, + { + "id": "99486", + "name": "Kushelevka", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.99333000", + "longitude": "30.36389000" + }, + { + "id": "99539", + "name": "Lakhtinskiy", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.99521000", + "longitude": "30.14717000" + }, + { + "id": "99614", + "name": "Levashovo", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.10369000", + "longitude": "30.20683000" + }, + { + "id": "99636", + "name": "Lisiy Nos", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.01686000", + "longitude": "30.02008000" + }, + { + "id": "99657", + "name": "Lomonosov", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.90612000", + "longitude": "29.77253000" + }, + { + "id": "99873", + "name": "Metallostroy", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.80083000", + "longitude": "30.54778000" + }, + { + "id": "99951", + "name": "Molodezhnoye", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.19803000", + "longitude": "29.51597000" + }, + { + "id": "100203", + "name": "Novaya Derevnya", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.98748000", + "longitude": "30.28682000" + }, + { + "id": "100392", + "name": "Obukhovo", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.84389000", + "longitude": "30.45111000" + }, + { + "id": "100433", + "name": "Ol’gino", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.00928000", + "longitude": "30.11559000" + }, + { + "id": "100517", + "name": "Ozerki", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.03947000", + "longitude": "30.31128000" + }, + { + "id": "100549", + "name": "Pargolovo", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.08120000", + "longitude": "30.27626000" + }, + { + "id": "100571", + "name": "Pavlovsk", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.68333000", + "longitude": "30.43472000" + }, + { + "id": "100637", + "name": "Pesochnyy", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.12295000", + "longitude": "30.16404000" + }, + { + "id": "100645", + "name": "Peterhof", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.88333000", + "longitude": "29.90000000" + }, + { + "id": "100647", + "name": "Petro-Slavyanka", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.80222000", + "longitude": "30.50694000" + }, + { + "id": "100648", + "name": "Petrodvorets", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.89565000", + "longitude": "29.80145000" + }, + { + "id": "100649", + "name": "Petrogradka", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.96567000", + "longitude": "30.31154000" + }, + { + "id": "100769", + "name": "Pontonnyy", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.78667000", + "longitude": "30.61528000" + }, + { + "id": "100833", + "name": "Primorskiy Rayon", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.99624000", + "longitude": "30.24090000" + }, + { + "id": "100896", + "name": "Pushkin", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.71417000", + "longitude": "30.39642000" + }, + { + "id": "100951", + "name": "Razliv", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.07919000", + "longitude": "29.97206000" + }, + { + "id": "100961", + "name": "Repino", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.17217000", + "longitude": "29.86908000" + }, + { + "id": "101074", + "name": "Saint Petersburg", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.93863000", + "longitude": "30.31413000" + }, + { + "id": "101104", + "name": "Sapërnyy", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.77611000", + "longitude": "30.66139000" + }, + { + "id": "101199", + "name": "Sestroretsk", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.09801000", + "longitude": "29.96378000" + }, + { + "id": "101355", + "name": "Shushary", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.80917000", + "longitude": "30.38167000" + }, + { + "id": "101359", + "name": "Shuvalovo", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.04903000", + "longitude": "30.29360000" + }, + { + "id": "101455", + "name": "Solnechnoye", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.15612000", + "longitude": "29.94753000" + }, + { + "id": "101485", + "name": "Sosnovaya Polyana", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.83528000", + "longitude": "30.14667000" + }, + { + "id": "101486", + "name": "Sosnovka", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.01667000", + "longitude": "30.35000000" + }, + { + "id": "101558", + "name": "Staraya Derevnya", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.98834000", + "longitude": "30.24296000" + }, + { + "id": "101624", + "name": "Strel'na", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.85189000", + "longitude": "30.03611000" + }, + { + "id": "101774", + "name": "Tarkhovka", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.06687000", + "longitude": "29.97435000" + }, + { + "id": "101989", + "name": "Tyarlevo", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.70777000", + "longitude": "30.44543000" + }, + { + "id": "102077", + "name": "Uritsk", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.83889000", + "longitude": "30.17528000" + }, + { + "id": "102122", + "name": "Ust’-Izhora", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.81194000", + "longitude": "30.58139000" + }, + { + "id": "102196", + "name": "Vasileostrovskiy Rayon", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.93971000", + "longitude": "30.26115000" + }, + { + "id": "102201", + "name": "Vasyl'evsky Ostrov", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.94091000", + "longitude": "30.25377000" + }, + { + "id": "102695", + "name": "Zelenogorsk", + "state_id": 1879, + "state_code": "SPE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.19968000", + "longitude": "29.70183000" + }, + { + "id": "97491", + "name": "Abyysky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "68.33333000", + "longitude": "146.00000000" + }, + { + "id": "97561", + "name": "Aldan", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.61021000", + "longitude": "125.39613000" + }, + { + "id": "97596", + "name": "Allaikhovskiy Rayon", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "71.00000000", + "longitude": "148.00000000" + }, + { + "id": "97599", + "name": "Almaznyy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.44917000", + "longitude": "114.32778000" + }, + { + "id": "97612", + "name": "Amga", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.90009000", + "longitude": "131.97882000" + }, + { + "id": "97617", + "name": "Anabarskiy Rayon", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "72.50000000", + "longitude": "116.00000000" + }, + { + "id": "97728", + "name": "Aykhal", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "65.93381000", + "longitude": "111.48340000" + }, + { + "id": "97809", + "name": "Batagay", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "67.65653000", + "longitude": "134.63962000" + }, + { + "id": "97810", + "name": "Batagay-Alyta", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "67.79846000", + "longitude": "130.40119000" + }, + { + "id": "97841", + "name": "Belaya Gora", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "68.53805000", + "longitude": "146.18583000" + }, + { + "id": "97887", + "name": "Berdigestyakh", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.09842000", + "longitude": "126.69573000" + }, + { + "id": "97898", + "name": "Berkakit", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.57456000", + "longitude": "124.77635000" + }, + { + "id": "98032", + "name": "Borogontsy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.67060000", + "longitude": "131.16344000" + }, + { + "id": "98076", + "name": "Bulunskiy Rayon", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "71.00000000", + "longitude": "126.00000000" + }, + { + "id": "98181", + "name": "Chernyshevskiy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.01601000", + "longitude": "112.46901000" + }, + { + "id": "98184", + "name": "Cherskiy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "68.75325000", + "longitude": "161.33197000" + }, + { + "id": "98209", + "name": "Chokurdakh", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "70.61897000", + "longitude": "147.89730000" + }, + { + "id": "98220", + "name": "Chul’man", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.84735000", + "longitude": "124.90812000" + }, + { + "id": "98225", + "name": "Churapcha", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.99858000", + "longitude": "132.43341000" + }, + { + "id": "98264", + "name": "Deputatsky", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "69.30958000", + "longitude": "139.97571000" + }, + { + "id": "98376", + "name": "Dzhebariki-Khaya", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.21084000", + "longitude": "135.84876000" + }, + { + "id": "98408", + "name": "Eveno-Bytantaysky National District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "67.82428000", + "longitude": "130.44617000" + }, + { + "id": "98543", + "name": "Gornyy Rayon", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.33333000", + "longitude": "126.00000000" + }, + { + "id": "98842", + "name": "Kangalassy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.34824000", + "longitude": "129.96471000" + }, + { + "id": "98958", + "name": "Khandyga", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.65333000", + "longitude": "135.56670000" + }, + { + "id": "98973", + "name": "Khatassy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.90638000", + "longitude": "129.63302000" + }, + { + "id": "99118", + "name": "Kobyayskiy Rayon", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "64.00000000", + "longitude": "127.00000000" + }, + { + "id": "99522", + "name": "Kysyl-Syr", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.89482000", + "longitude": "122.76540000" + }, + { + "id": "99552", + "name": "Lebedinyy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.48844000", + "longitude": "125.49415000" + }, + { + "id": "99572", + "name": "Leninskiy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.57141000", + "longitude": "125.43918000" + }, + { + "id": "99579", + "name": "Lensk", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.72528000", + "longitude": "114.92778000" + }, + { + "id": "99731", + "name": "Magan", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.10746000", + "longitude": "129.53184000" + }, + { + "id": "99799", + "name": "Markha", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.11454000", + "longitude": "129.74403000" + }, + { + "id": "99836", + "name": "Mayya", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.73824000", + "longitude": "130.28161000" + }, + { + "id": "99920", + "name": "Mirninskiy Rayon", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.50000000", + "longitude": "113.88333000" + }, + { + "id": "99921", + "name": "Mirny", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.53528000", + "longitude": "113.96111000" + }, + { + "id": "99942", + "name": "Mokhsogollokh", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.39619000", + "longitude": "128.93810000" + }, + { + "id": "99954", + "name": "Momsky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "66.00000000", + "longitude": "144.00000000" + }, + { + "id": "100055", + "name": "Namskiy Rayon", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.00000000", + "longitude": "129.41667000" + }, + { + "id": "100056", + "name": "Namtsy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.71959000", + "longitude": "129.66722000" + }, + { + "id": "100110", + "name": "Neryungri", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66637000", + "longitude": "124.63825000" + }, + { + "id": "100126", + "name": "Nezhdaninskoe", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.50523000", + "longitude": "139.05104000" + }, + { + "id": "100164", + "name": "Nizhniy Bestyakh", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.96202000", + "longitude": "129.91245000" + }, + { + "id": "100169", + "name": "Nizhniy Kuranakh", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.82380000", + "longitude": "125.52278000" + }, + { + "id": "100382", + "name": "Nyurba", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.28417000", + "longitude": "118.33194000" + }, + { + "id": "100383", + "name": "Nyurbinsky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.25000000", + "longitude": "118.41667000" + }, + { + "id": "100422", + "name": "Olenyok", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "68.50472000", + "longitude": "112.44850000" + }, + { + "id": "100423", + "name": "Olenyoksky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "68.32018000", + "longitude": "112.59338000" + }, + { + "id": "100428", + "name": "Olyokminsk", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.37430000", + "longitude": "120.42030000" + }, + { + "id": "100429", + "name": "Olyokminsky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "59.00000000", + "longitude": "121.00000000" + }, + { + "id": "100515", + "name": "Oymyakonskiy District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.00000000", + "longitude": "144.00000000" + }, + { + "id": "100591", + "name": "Peleduy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "59.62889000", + "longitude": "112.74056000" + }, + { + "id": "100745", + "name": "Pokrovsk", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.47768000", + "longitude": "129.13699000" + }, + { + "id": "101100", + "name": "Sangar", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.92301000", + "longitude": "127.47135000" + }, + { + "id": "101127", + "name": "Saskylakh", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "71.96347000", + "longitude": "114.09199000" + }, + { + "id": "101176", + "name": "Serebryanyy Bor", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.67076000", + "longitude": "124.83754000" + }, + { + "id": "101458", + "name": "Solnechnyy", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.30217000", + "longitude": "137.55563000" + }, + { + "id": "101543", + "name": "Srednekolymsk", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "67.45659000", + "longitude": "153.70246000" + }, + { + "id": "101544", + "name": "Srednekolymsky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "68.00000000", + "longitude": "153.00000000" + }, + { + "id": "101664", + "name": "Suntar", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.14444000", + "longitude": "117.63194000" + }, + { + "id": "101665", + "name": "Suntarskiy District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.00000000", + "longitude": "115.00000000" + }, + { + "id": "101736", + "name": "Tabaga", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.85502000", + "longitude": "129.60022000" + }, + { + "id": "101855", + "name": "Tiksi", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "71.69002000", + "longitude": "128.86467000" + }, + { + "id": "101885", + "name": "Tommot", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "58.95717000", + "longitude": "126.29158000" + }, + { + "id": "101886", + "name": "Tomponskiy District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.75000000", + "longitude": "135.41667000" + }, + { + "id": "102017", + "name": "Udachny", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "66.42989000", + "longitude": "112.40210000" + }, + { + "id": "102106", + "name": "Ust-Aldansky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.00000000", + "longitude": "132.00000000" + }, + { + "id": "102107", + "name": "Ust-Kuyga", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "70.00208000", + "longitude": "135.54876000" + }, + { + "id": "102108", + "name": "Ust-Maya", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "60.41553000", + "longitude": "134.54405000" + }, + { + "id": "102109", + "name": "Ust-Nera", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "64.56968000", + "longitude": "143.23700000" + }, + { + "id": "102142", + "name": "Ust’-Yanskiy Rayon", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "69.33333000", + "longitude": "139.91667000" + }, + { + "id": "102239", + "name": "Verkhnekolymsky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "65.75000000", + "longitude": "150.83333000" + }, + { + "id": "102244", + "name": "Verkhnevilyuysk", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.44578000", + "longitude": "120.30739000" + }, + { + "id": "102245", + "name": "Verkhnevilyuysky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.00000000", + "longitude": "120.50000000" + }, + { + "id": "102281", + "name": "Verkhoyansk", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "67.55387000", + "longitude": "133.38976000" + }, + { + "id": "102282", + "name": "Verkhoyansky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "68.00000000", + "longitude": "136.00000000" + }, + { + "id": "102309", + "name": "Vilyuysk", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.74683000", + "longitude": "121.63339000" + }, + { + "id": "102310", + "name": "Vilyuyskiy Rayon", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "64.00000000", + "longitude": "123.00000000" + }, + { + "id": "102311", + "name": "Vilyuysky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "63.76398000", + "longitude": "121.65436000" + }, + { + "id": "102321", + "name": "Vitim", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "59.44326000", + "longitude": "112.56993000" + }, + { + "id": "102473", + "name": "Yakutsk", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "61.97382000", + "longitude": "129.75403000" + }, + { + "id": "102582", + "name": "Ytyk-Kyuyël’", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.36119000", + "longitude": "133.56044000" + }, + { + "id": "102714", + "name": "Zhatay", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "62.15975000", + "longitude": "129.82843000" + }, + { + "id": "102727", + "name": "Zhigansk", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "66.76601000", + "longitude": "123.37418000" + }, + { + "id": "102728", + "name": "Zhigansky District", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "66.75000000", + "longitude": "123.25000000" + }, + { + "id": "102787", + "name": "Zyryanka", + "state_id": 1848, + "state_code": "SA", + "country_id": 182, + "country_code": "RU", + "latitude": "65.73489000", + "longitude": "150.89429000" + }, + { + "id": "97569", + "name": "Aleksandrovsk-Sakhalinskiy", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "50.89926000", + "longitude": "142.16215000" + }, + { + "id": "97632", + "name": "Aniva", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "46.71492000", + "longitude": "142.52866000" + }, + { + "id": "98047", + "name": "Boshnyakovo", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "49.64572000", + "longitude": "142.17047000" + }, + { + "id": "98097", + "name": "Bykov", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "47.32099000", + "longitude": "142.56226000" + }, + { + "id": "98136", + "name": "Chekhov", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "47.44984000", + "longitude": "141.99064000" + }, + { + "id": "98303", + "name": "Dolinsk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "47.32946000", + "longitude": "142.79291000" + }, + { + "id": "98459", + "name": "Gastello", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "49.10056000", + "longitude": "142.95917000" + }, + { + "id": "98535", + "name": "Gornozavodsk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "46.55984000", + "longitude": "141.84358000" + }, + { + "id": "98996", + "name": "Kholmsk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "47.04737000", + "longitude": "142.05048000" + }, + { + "id": "99218", + "name": "Korsakov", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "46.63420000", + "longitude": "142.77722000" + }, + { + "id": "99304", + "name": "Krasnogorsk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "48.41728000", + "longitude": "142.08686000" + }, + { + "id": "99463", + "name": "Kuril’sk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "45.22686000", + "longitude": "147.87767000" + }, + { + "id": "99462", + "name": "Kurilsky District", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "46.00000000", + "longitude": "150.00000000" + }, + { + "id": "99581", + "name": "Leonidovo", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "49.28619000", + "longitude": "142.86975000" + }, + { + "id": "99741", + "name": "Makarov", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "48.62698000", + "longitude": "142.77999000" + }, + { + "id": "99886", + "name": "Mgachi", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "51.04834000", + "longitude": "142.26821000" + }, + { + "id": "100116", + "name": "Nevel’sk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "46.67902000", + "longitude": "141.85629000" + }, + { + "id": "100195", + "name": "Nogliki", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "51.79917000", + "longitude": "143.13871000" + }, + { + "id": "100401", + "name": "Okha", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.58991000", + "longitude": "142.95313000" + }, + { + "id": "100503", + "name": "Otrada", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "44.06832000", + "longitude": "145.86454000" + }, + { + "id": "100779", + "name": "Poronaysk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "49.22188000", + "longitude": "143.09694000" + }, + { + "id": "100801", + "name": "Pravda", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "46.93972000", + "longitude": "142.00426000" + }, + { + "id": "101212", + "name": "Severo-Kuril’sk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "50.67531000", + "longitude": "156.12695000" + }, + { + "id": "101240", + "name": "Shakhtersk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "49.17175000", + "longitude": "142.13640000" + }, + { + "id": "101286", + "name": "Shebunino", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "46.43010000", + "longitude": "141.85699000" + }, + { + "id": "101312", + "name": "Shikotan", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "43.79916000", + "longitude": "146.72164000" + }, + { + "id": "101373", + "name": "Sinegorsk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "47.17278000", + "longitude": "142.51577000" + }, + { + "id": "101413", + "name": "Smirnykh", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "49.74596000", + "longitude": "142.83716000" + }, + { + "id": "101436", + "name": "Sokol", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "47.24464000", + "longitude": "142.75167000" + }, + { + "id": "101882", + "name": "Tomari", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "47.76482000", + "longitude": "142.07106000" + }, + { + "id": "101925", + "name": "Troitskoye", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "46.92493000", + "longitude": "142.64532000" + }, + { + "id": "101970", + "name": "Tungor", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "53.39121000", + "longitude": "142.95755000" + }, + { + "id": "101992", + "name": "Tymovskoye", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "50.84925000", + "longitude": "142.66520000" + }, + { + "id": "102027", + "name": "Uglegorsk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "49.08047000", + "longitude": "142.06449000" + }, + { + "id": "102029", + "name": "Uglegorskiy Rayon", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "49.08333000", + "longitude": "142.08333000" + }, + { + "id": "102033", + "name": "Uglezavodsk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "47.32332000", + "longitude": "142.63317000" + }, + { + "id": "102175", + "name": "Vakhrushev", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "48.99035000", + "longitude": "142.95303000" + }, + { + "id": "102401", + "name": "Vostok", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "48.97715000", + "longitude": "142.91556000" + }, + { + "id": "102457", + "name": "Yablochnyy", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "47.15200000", + "longitude": "142.05678000" + }, + { + "id": "102613", + "name": "Yuzhno-Kurilsk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "44.02734000", + "longitude": "145.86146000" + }, + { + "id": "102614", + "name": "Yuzhno-Kurilsky District", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "44.59242000", + "longitude": "146.77048000" + }, + { + "id": "102615", + "name": "Yuzhno-Sakhalinsk", + "state_id": 1875, + "state_code": "SAK", + "country_id": 182, + "country_code": "RU", + "latitude": "46.95407000", + "longitude": "142.73603000" + }, + { + "id": "97761", + "name": "Bakhilovo", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.40110000", + "longitude": "49.63600000" + }, + { + "id": "97772", + "name": "Balasheyka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.28410000", + "longitude": "48.08510000" + }, + { + "id": "97902", + "name": "Berëza", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.51833000", + "longitude": "50.13967000" + }, + { + "id": "97918", + "name": "Bezenchuk", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.98200000", + "longitude": "49.43330000" + }, + { + "id": "97962", + "name": "Bogatoye", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.06010000", + "longitude": "51.33250000" + }, + { + "id": "97963", + "name": "Bogatyr’", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.42980000", + "longitude": "49.94550000" + }, + { + "id": "98043", + "name": "Borskoye", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.03333000", + "longitude": "51.71667000" + }, + { + "id": "98115", + "name": "Chapayevsk", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.97710000", + "longitude": "49.70860000" + }, + { + "id": "98139", + "name": "Chelno-Vershiny", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41480000", + "longitude": "51.08594000" + }, + { + "id": "98341", + "name": "Dubovyy Umët", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.97629000", + "longitude": "50.28569000" + }, + { + "id": "98475", + "name": "Georgiyevka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.27438000", + "longitude": "50.99848000" + }, + { + "id": "98697", + "name": "Isakly", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.13333000", + "longitude": "51.53333000" + }, + { + "id": "98829", + "name": "Kamyshla", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.11693000", + "longitude": "52.14262000" + }, + { + "id": "99015", + "name": "Khryashchevka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.81190000", + "longitude": "49.09160000" + }, + { + "id": "99028", + "name": "Khvorostyanka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.60960000", + "longitude": "48.95970000" + }, + { + "id": "99045", + "name": "Kinel’", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.22571000", + "longitude": "50.62907000" + }, + { + "id": "99046", + "name": "Kinel’-Cherkassy", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.47060000", + "longitude": "51.47431000" + }, + { + "id": "99047", + "name": "Kinel’skiy Rayon", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.16667000", + "longitude": "50.75000000" + }, + { + "id": "99108", + "name": "Klyavlino", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.26491000", + "longitude": "52.02674000" + }, + { + "id": "99229", + "name": "Koshki", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.20914000", + "longitude": "50.46767000" + }, + { + "id": "99296", + "name": "Krasnoarmeyskoye", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.71994000", + "longitude": "50.03122000" + }, + { + "id": "99346", + "name": "Krasnoyarskiy Rayon", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.50000000", + "longitude": "50.50000000" + }, + { + "id": "99376", + "name": "Krasnyy Yar", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.49988000", + "longitude": "50.39312000" + }, + { + "id": "99400", + "name": "Krotovka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.28580000", + "longitude": "51.16860000" + }, + { + "id": "99479", + "name": "Kurumoch", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.48963000", + "longitude": "50.03748000" + }, + { + "id": "99835", + "name": "Mayskoye", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.27244000", + "longitude": "50.03383000" + }, + { + "id": "99879", + "name": "Mezhdurechensk", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.26650000", + "longitude": "49.11160000" + }, + { + "id": "99923", + "name": "Mirnyy", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.50642000", + "longitude": "50.27658000" + }, + { + "id": "100084", + "name": "Neftegorsk", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.80200000", + "longitude": "51.16600000" + }, + { + "id": "100085", + "name": "Neftegorskiy Rayon", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.83333000", + "longitude": "50.83333000" + }, + { + "id": "100256", + "name": "Novokuybyshevsk", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.09590000", + "longitude": "49.94620000" + }, + { + "id": "100295", + "name": "Novosemeykino", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.37056000", + "longitude": "50.35428000" + }, + { + "id": "100340", + "name": "Novyy Buyan", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.68611000", + "longitude": "50.04691000" + }, + { + "id": "100390", + "name": "Obsharovka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.12500000", + "longitude": "48.85306000" + }, + { + "id": "100408", + "name": "Oktyabr’sk", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.16722000", + "longitude": "48.70056000" + }, + { + "id": "100486", + "name": "Osinki", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.84320000", + "longitude": "49.51320000" + }, + { + "id": "100508", + "name": "Otradnyy", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.37596000", + "longitude": "51.34520000" + }, + { + "id": "100607", + "name": "Perevoloki", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.24580000", + "longitude": "49.17930000" + }, + { + "id": "100640", + "name": "Pestravka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.39820000", + "longitude": "49.96100000" + }, + { + "id": "100646", + "name": "Petra-Dubrava", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.29613000", + "longitude": "50.36554000" + }, + { + "id": "100731", + "name": "Podsolnechnoye", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.15000000", + "longitude": "52.01910000" + }, + { + "id": "100733", + "name": "Podstepki", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.51510000", + "longitude": "49.13550000" + }, + { + "id": "100740", + "name": "Pokhvistnevo", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.65237000", + "longitude": "52.12738000" + }, + { + "id": "100793", + "name": "Povolzhskiy", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.58540000", + "longitude": "49.76290000" + }, + { + "id": "100817", + "name": "Pribrezhnyy", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.48662000", + "longitude": "49.85836000" + }, + { + "id": "100996", + "name": "Roschinskiy", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.05111000", + "longitude": "50.49667000" + }, + { + "id": "101015", + "name": "Rozhdestveno", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.23745000", + "longitude": "50.05971000" + }, + { + "id": "101085", + "name": "Samara", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.20007000", + "longitude": "50.15000000" + }, + { + "id": "101187", + "name": "Sernovodsk", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.92293000", + "longitude": "51.25704000" + }, + { + "id": "101302", + "name": "Shentala", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "54.45000000", + "longitude": "51.48333000" + }, + { + "id": "101309", + "name": "Shigony", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.38750000", + "longitude": "48.67770000" + }, + { + "id": "101421", + "name": "Smyshlyayevka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.23913000", + "longitude": "50.39072000" + }, + { + "id": "101536", + "name": "Spiridonovka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.09248000", + "longitude": "50.64621000" + }, + { + "id": "101653", + "name": "Sukhodol", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.90063000", + "longitude": "51.21170000" + }, + { + "id": "101675", + "name": "Surgut", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.92498000", + "longitude": "51.20348000" + }, + { + "id": "101735", + "name": "Syzran’", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.15850000", + "longitude": "48.46810000" + }, + { + "id": "101881", + "name": "Tol’yatti", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.53030000", + "longitude": "49.34610000" + }, + { + "id": "102150", + "name": "Utevka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.90350000", + "longitude": "50.94950000" + }, + { + "id": "102191", + "name": "Varlamovo", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.18970000", + "longitude": "48.42260000" + }, + { + "id": "102370", + "name": "Volzhskiy", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.43058000", + "longitude": "50.11900000" + }, + { + "id": "102546", + "name": "Yelkhovka", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.86668000", + "longitude": "50.28319000" + }, + { + "id": "102729", + "name": "Zhigulevsk", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.39972000", + "longitude": "49.49528000" + }, + { + "id": "102730", + "name": "Zhiguli", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.35790000", + "longitude": "49.30100000" + }, + { + "id": "102767", + "name": "Zol’noye", + "state_id": 1862, + "state_code": "SAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.44210000", + "longitude": "49.79780000" + }, + { + "id": "97566", + "name": "Aleksandrov Gay", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.14704000", + "longitude": "48.57037000" + }, + { + "id": "97576", + "name": "Alekseyevka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.30583000", + "longitude": "48.02611000" + }, + { + "id": "97663", + "name": "Arkadak", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.93261000", + "longitude": "43.49779000" + }, + { + "id": "97712", + "name": "Atkarsk", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.87185000", + "longitude": "45.00775000" + }, + { + "id": "97713", + "name": "Atkarskiy Rayon", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.91667000", + "longitude": "45.00000000" + }, + { + "id": "97771", + "name": "Balakovo", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.02782000", + "longitude": "47.80070000" + }, + { + "id": "97775", + "name": "Balashov", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.55020000", + "longitude": "43.16670000" + }, + { + "id": "97782", + "name": "Baltay", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.46525000", + "longitude": "46.63081000" + }, + { + "id": "97783", + "name": "Baltayskiy Rayon", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "46.66667000" + }, + { + "id": "97828", + "name": "Bazarno-Karabulakskiy Rayon", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.33333000", + "longitude": "46.33333000" + }, + { + "id": "97829", + "name": "Bazarnyy Karabulak", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.26833000", + "longitude": "46.41444000" + }, + { + "id": "98009", + "name": "Bol’shoy Karay", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.60542000", + "longitude": "42.69006000" + }, + { + "id": "98159", + "name": "Cherkasskoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.42895000", + "longitude": "47.21048000" + }, + { + "id": "98267", + "name": "Dergachi", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.23280000", + "longitude": "48.76590000" + }, + { + "id": "98350", + "name": "Dukhovnitskoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.48280000", + "longitude": "48.21370000" + }, + { + "id": "98398", + "name": "Engel’s", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.48389000", + "longitude": "46.10528000" + }, + { + "id": "98399", + "name": "Engel’sskiy Rayon", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "46.16667000" + }, + { + "id": "98539", + "name": "Gornyy", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.75780000", + "longitude": "48.54130000" + }, + { + "id": "98737", + "name": "Ivanteyevka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.26670000", + "longitude": "49.10550000" + }, + { + "id": "98788", + "name": "Kalininsk", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "44.47580000" + }, + { + "id": "98821", + "name": "Kamenskiy", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.88547000", + "longitude": "45.48801000" + }, + { + "id": "99023", + "name": "Khvalynsk", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.49060000", + "longitude": "48.10580000" + }, + { + "id": "99024", + "name": "Khvalynskiy Rayon", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "47.91667000" + }, + { + "id": "99027", + "name": "Khvatovka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.35236000", + "longitude": "46.56282000" + }, + { + "id": "99210", + "name": "Kormëzhka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.90050000", + "longitude": "48.01630000" + }, + { + "id": "99290", + "name": "Krasnoarmeysk", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.02389000", + "longitude": "45.69694000" + }, + { + "id": "99367", + "name": "Krasnyy Kut", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.95000000", + "longitude": "46.96667000" + }, + { + "id": "99369", + "name": "Krasnyy Oktyabr’", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.54018000", + "longitude": "45.70382000" + }, + { + "id": "99375", + "name": "Krasnyy Yar", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.62917000", + "longitude": "46.42167000" + }, + { + "id": "99709", + "name": "Lysyye Gory", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.55063000", + "longitude": "44.84144000" + }, + { + "id": "99801", + "name": "Marks", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.71111000", + "longitude": "46.74861000" + }, + { + "id": "99802", + "name": "Marksovskiy Rayon", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.66667000", + "longitude": "46.83333000" + }, + { + "id": "99943", + "name": "Mokrous", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.23730000", + "longitude": "47.51370000" + }, + { + "id": "100325", + "name": "Novouzensk", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.45917000", + "longitude": "48.14306000" + }, + { + "id": "100357", + "name": "Novyye Burasy", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.13236000", + "longitude": "46.07144000" + }, + { + "id": "100600", + "name": "Perelyub", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.86292000", + "longitude": "50.35412000" + }, + { + "id": "100658", + "name": "Petrovsk", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.30639000", + "longitude": "45.39167000" + }, + { + "id": "100676", + "name": "Pinerovka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.56200000", + "longitude": "43.06890000" + }, + { + "id": "100687", + "name": "Piterka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.68030000", + "longitude": "47.44539000" + }, + { + "id": "100721", + "name": "Podlesnoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.81610000", + "longitude": "47.00900000" + }, + { + "id": "100847", + "name": "Privolzhskiy", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.40944000", + "longitude": "46.04833000" + }, + { + "id": "100851", + "name": "Privolzhskoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.69194000", + "longitude": "46.72361000" + }, + { + "id": "100889", + "name": "Pugachev", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.01333000", + "longitude": "48.80250000" + }, + { + "id": "100897", + "name": "Pushkino", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.23500000", + "longitude": "46.97417000" + }, + { + "id": "100962", + "name": "Repnoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.59210000", + "longitude": "43.18610000" + }, + { + "id": "100986", + "name": "Romanovka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.74427000", + "longitude": "42.75270000" + }, + { + "id": "101011", + "name": "Rovnoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.77650000", + "longitude": "46.05085000" + }, + { + "id": "101017", + "name": "Rtishchevo", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.26041000", + "longitude": "43.78745000" + }, + { + "id": "101090", + "name": "Samoylovka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.18400000", + "longitude": "43.70810000" + }, + { + "id": "101114", + "name": "Saratov", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.54056000", + "longitude": "46.00861000" + }, + { + "id": "101116", + "name": "Saratovskiy Rayon", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.75000000", + "longitude": "46.16667000" + }, + { + "id": "101172", + "name": "Sennoy", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.15090000", + "longitude": "46.96309000" + }, + { + "id": "101310", + "name": "Shikhany", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.11776000", + "longitude": "47.19860000" + }, + { + "id": "101348", + "name": "Shumeyka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.56361000", + "longitude": "46.24833000" + }, + { + "id": "101376", + "name": "Sinodskoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.99180000", + "longitude": "46.67009000" + }, + { + "id": "101440", + "name": "Sokolovyy", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.56857000", + "longitude": "45.83312000" + }, + { + "id": "101517", + "name": "Sovetskoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.44255000", + "longitude": "46.74240000" + }, + { + "id": "101611", + "name": "Staryye Ozinki", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.17860000", + "longitude": "49.67690000" + }, + { + "id": "101616", + "name": "Stepnoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.37972000", + "longitude": "46.84917000" + }, + { + "id": "101706", + "name": "Svetlyy", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.67370000", + "longitude": "45.63054000" + }, + { + "id": "101713", + "name": "Svobodnyy", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.33039000", + "longitude": "46.37122000" + }, + { + "id": "101797", + "name": "Tatishchevo", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.67028000", + "longitude": "45.59528000" + }, + { + "id": "101836", + "name": "Tersa", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08671000", + "longitude": "47.53936000" + }, + { + "id": "101979", + "name": "Turki", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.98703000", + "longitude": "43.27310000" + }, + { + "id": "102374", + "name": "Vol’sk", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.04541000", + "longitude": "47.37993000" + }, + { + "id": "102375", + "name": "Vol’skiy Rayon", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08333000", + "longitude": "47.25000000" + }, + { + "id": "102391", + "name": "Voskresenskiy Rayon", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.84139000", + "longitude": "46.90250000" + }, + { + "id": "102392", + "name": "Voskresenskoye", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.82478000", + "longitude": "46.93508000" + }, + { + "id": "102529", + "name": "Yekaterinovka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "52.05083000", + "longitude": "44.34515000" + }, + { + "id": "102548", + "name": "Yelshanka", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.81389000", + "longitude": "46.39972000" + }, + { + "id": "102572", + "name": "Yershov", + "state_id": 1887, + "state_code": "SAR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.35130000", + "longitude": "48.27660000" + }, + { + "id": "105829", + "name": "Afanas’yeva", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.63958000", + "longitude": "100.61755000" + }, + { + "id": "105830", + "name": "Alarskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.33333000", + "longitude": "103.00000000" + }, + { + "id": "105831", + "name": "Alekseyevskaya", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.85000000", + "longitude": "108.40000000" + }, + { + "id": "105832", + "name": "Algatuy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.40090000", + "longitude": "100.25500000" + }, + { + "id": "105833", + "name": "Alzamay", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55620000", + "longitude": "98.66440000" + }, + { + "id": "105834", + "name": "Andreyevka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.81663000", + "longitude": "33.56313000" + }, + { + "id": "105835", + "name": "Angarsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.53667000", + "longitude": "103.88639000" + }, + { + "id": "105836", + "name": "Angarskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.33333000", + "longitude": "103.66667000" + }, + { + "id": "105837", + "name": "Atagay", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.10330000", + "longitude": "99.38750000" + }, + { + "id": "105838", + "name": "Badar", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.39948000", + "longitude": "100.59436000" + }, + { + "id": "105839", + "name": "Baklashi", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.22556000", + "longitude": "104.04861000" + }, + { + "id": "105840", + "name": "Balagansk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00570000", + "longitude": "103.05234000" + }, + { + "id": "105841", + "name": "Balaganskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "102.83333000" + }, + { + "id": "105842", + "name": "Balakhninskiy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "58.01056000", + "longitude": "114.27694000" + }, + { + "id": "105843", + "name": "Balaklava", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.51118000", + "longitude": "33.59942000" + }, + { + "id": "105844", + "name": "Balaklava District", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.50581000", + "longitude": "33.67035000" + }, + { + "id": "105845", + "name": "Bayanday", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.06611000", + "longitude": "105.51389000" + }, + { + "id": "105846", + "name": "Bayandayevskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.08333000", + "longitude": "105.58333000" + }, + { + "id": "105847", + "name": "Baykal’sk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "51.51510000", + "longitude": "104.14020000" + }, + { + "id": "105848", + "name": "Bereznyaki", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.93660000", + "longitude": "103.58510000" + }, + { + "id": "105849", + "name": "Biryusinsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.96340000", + "longitude": "97.82350000" + }, + { + "id": "105850", + "name": "Bodaybo", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.85056000", + "longitude": "114.19333000" + }, + { + "id": "105851", + "name": "Bokhan", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.15300000", + "longitude": "103.77140000" + }, + { + "id": "105852", + "name": "Bokhanskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.16667000", + "longitude": "104.00000000" + }, + { + "id": "105853", + "name": "Bol’shaya Rechka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "51.95360000", + "longitude": "104.73350000" + }, + { + "id": "105854", + "name": "Bratsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13250000", + "longitude": "101.61417000" + }, + { + "id": "105855", + "name": "Bratskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "102.00000000" + }, + { + "id": "105856", + "name": "Budagovo", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.62550000", + "longitude": "100.13109000" + }, + { + "id": "105857", + "name": "Cheremkhovo", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.15611000", + "longitude": "103.06750000" + }, + { + "id": "105858", + "name": "Cheremkhovskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.66667000", + "longitude": "102.33333000" + }, + { + "id": "105859", + "name": "Chunskiy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08150000", + "longitude": "99.63420000" + }, + { + "id": "105860", + "name": "Dzerzhinsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.28028000", + "longitude": "104.38694000" + }, + { + "id": "105861", + "name": "Ekhirit-Bulagatskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.00000000", + "longitude": "104.83333000" + }, + { + "id": "105862", + "name": "Frontovoye", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.66737000", + "longitude": "33.73841000" + }, + { + "id": "105863", + "name": "Gadaley", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.40318000", + "longitude": "100.74093000" + }, + { + "id": "105864", + "name": "Guran", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.76127000", + "longitude": "100.64399000" + }, + { + "id": "105865", + "name": "Haharinskyi District", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.59217000", + "longitude": "33.43925000" + }, + { + "id": "105866", + "name": "Ikey", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.19194000", + "longitude": "100.08111000" + }, + { + "id": "105867", + "name": "Ilir", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.22473000", + "longitude": "100.68498000" + }, + { + "id": "105868", + "name": "Inkerman", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.61391000", + "longitude": "33.60980000" + }, + { + "id": "105869", + "name": "Irkutsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.29778000", + "longitude": "104.29639000" + }, + { + "id": "105870", + "name": "Irkutskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.33333000", + "longitude": "104.66667000" + }, + { + "id": "105871", + "name": "Kacha", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.77635000", + "longitude": "33.54387000" + }, + { + "id": "105872", + "name": "Kachug", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.96056000", + "longitude": "105.88167000" + }, + { + "id": "105873", + "name": "Kachugskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00000000", + "longitude": "106.50000000" + }, + { + "id": "105874", + "name": "Katangskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "61.00000000", + "longitude": "108.00000000" + }, + { + "id": "105875", + "name": "Kazachinsko-Lenskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "108.00000000" + }, + { + "id": "105876", + "name": "Kazachinskoye", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.26974000", + "longitude": "107.57624000" + }, + { + "id": "105877", + "name": "Khomutovo", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.46583000", + "longitude": "104.40250000" + }, + { + "id": "105878", + "name": "Khrebtovaya", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.70320000", + "longitude": "104.24940000" + }, + { + "id": "105879", + "name": "Khudoyelanskoye", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.70375000", + "longitude": "99.63042000" + }, + { + "id": "105880", + "name": "Khuzhir", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.19389000", + "longitude": "107.33972000" + }, + { + "id": "105881", + "name": "Kimil’tey", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.13370000", + "longitude": "101.98110000" + }, + { + "id": "105882", + "name": "Kirensk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.78528000", + "longitude": "108.11194000" + }, + { + "id": "105883", + "name": "Kirenskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00000000", + "longitude": "109.25000000" + }, + { + "id": "105884", + "name": "Kitoy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.60000000", + "longitude": "103.90000000" + }, + { + "id": "105885", + "name": "Kotik", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.65057000", + "longitude": "100.45395000" + }, + { + "id": "105886", + "name": "Kropotkin", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "58.50944000", + "longitude": "115.32167000" + }, + { + "id": "105887", + "name": "Kultuk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "51.72083000", + "longitude": "103.69556000" + }, + { + "id": "105888", + "name": "Kutulik", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.35080000", + "longitude": "102.78389000" + }, + { + "id": "105889", + "name": "Kuytun", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.34241000", + "longitude": "101.50917000" + }, + { + "id": "105890", + "name": "Kuytunskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50000000", + "longitude": "101.66667000" + }, + { + "id": "105891", + "name": "Kvitok", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.07240000", + "longitude": "98.48130000" + }, + { + "id": "105892", + "name": "Lenin District", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.60000000", + "longitude": "33.53333000" + }, + { + "id": "105893", + "name": "Lesogorsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.04580000", + "longitude": "99.51360000" + }, + { + "id": "105894", + "name": "Listvyanka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "51.85350000", + "longitude": "104.86930000" + }, + { + "id": "105895", + "name": "Magistral’nyy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.17148000", + "longitude": "107.44166000" + }, + { + "id": "105896", + "name": "Mama", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "58.31056000", + "longitude": "112.89861000" + }, + { + "id": "105897", + "name": "Mamakan", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.81611000", + "longitude": "114.00278000" + }, + { + "id": "105898", + "name": "Mamsko-Chuyskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00000000", + "longitude": "112.50000000" + }, + { + "id": "105899", + "name": "Manzurka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.48556000", + "longitude": "106.05444000" + }, + { + "id": "105900", + "name": "Markova", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.20889000", + "longitude": "104.21083000" + }, + { + "id": "105901", + "name": "Markovo", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.32056000", + "longitude": "107.08806000" + }, + { + "id": "105902", + "name": "Meget", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.41500000", + "longitude": "104.04944000" + }, + { + "id": "105903", + "name": "Mishelevka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.85750000", + "longitude": "103.17194000" + }, + { + "id": "105904", + "name": "Mugun", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.47143000", + "longitude": "100.24831000" + }, + { + "id": "105905", + "name": "Nakhimovskiy rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.69502000", + "longitude": "33.58092000" + }, + { + "id": "105906", + "name": "Nizhneilimskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "103.50000000" + }, + { + "id": "105907", + "name": "Nizhneudinsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.90760000", + "longitude": "99.02760000" + }, + { + "id": "105908", + "name": "Nizhneudinskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33333000", + "longitude": "98.50000000" + }, + { + "id": "105909", + "name": "Novaya Igirma", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.13340000", + "longitude": "103.91120000" + }, + { + "id": "105910", + "name": "Novobiryusinskiy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.95780000", + "longitude": "97.70760000" + }, + { + "id": "105911", + "name": "Novonukutskiy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.70000000", + "longitude": "102.71170000" + }, + { + "id": "105912", + "name": "Ol’khonskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.00000000", + "longitude": "106.50000000" + }, + { + "id": "105913", + "name": "Orlinoye", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.44685000", + "longitude": "33.77588000" + }, + { + "id": "105914", + "name": "Osa", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.38722000", + "longitude": "103.87694000" + }, + { + "id": "105915", + "name": "Oyëk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58611000", + "longitude": "104.45556000" + }, + { + "id": "105916", + "name": "Pad’ Mel’nichnaya", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.16000000", + "longitude": "104.38000000" + }, + { + "id": "105917", + "name": "Perfilovo", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.41083000", + "longitude": "100.48454000" + }, + { + "id": "105918", + "name": "Pivovarikha", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.27056000", + "longitude": "104.44583000" + }, + { + "id": "105919", + "name": "Pokosnoye", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.52583000", + "longitude": "101.05361000" + }, + { + "id": "105920", + "name": "Polyushko", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.74219000", + "longitude": "33.58913000" + }, + { + "id": "105921", + "name": "Rudnogorsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.26390000", + "longitude": "103.75190000" + }, + { + "id": "105922", + "name": "Sakharnaya Golovka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.58362000", + "longitude": "33.64383000" + }, + { + "id": "105923", + "name": "Sayansk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.10880000", + "longitude": "102.16480000" + }, + { + "id": "105924", + "name": "Sevastopol", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.58883000", + "longitude": "33.52240000" + }, + { + "id": "105925", + "name": "Shamanka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.06667000", + "longitude": "103.82028000" + }, + { + "id": "105926", + "name": "Sheberta", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.64178000", + "longitude": "99.89209000" + }, + { + "id": "105927", + "name": "Shelekhov", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.21389000", + "longitude": "104.10000000" + }, + { + "id": "105928", + "name": "Sheragul", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.46243000", + "longitude": "100.90994000" + }, + { + "id": "105929", + "name": "Shestakovo", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.49150000", + "longitude": "103.96000000" + }, + { + "id": "105930", + "name": "Shitkino", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.37030000", + "longitude": "98.35430000" + }, + { + "id": "105931", + "name": "Shturmovoye", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.56767000", + "longitude": "33.62245000" + }, + { + "id": "105932", + "name": "Shumskiy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.83180000", + "longitude": "99.13280000" + }, + { + "id": "105933", + "name": "Slyudyanka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "51.65944000", + "longitude": "103.70611000" + }, + { + "id": "105934", + "name": "Slyudyanskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "104.00000000" + }, + { + "id": "105935", + "name": "Smolenshchina", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.25528000", + "longitude": "104.12806000" + }, + { + "id": "105936", + "name": "Solnechniy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.78677000", + "longitude": "33.61786000" + }, + { + "id": "105937", + "name": "Sredniy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.88840000", + "longitude": "103.49040000" + }, + { + "id": "105938", + "name": "Svirsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.08583000", + "longitude": "103.33250000" + }, + { + "id": "105939", + "name": "Tayshet", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.93420000", + "longitude": "98.00440000" + }, + { + "id": "105940", + "name": "Tayshetskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "98.00000000" + }, + { + "id": "105941", + "name": "Tayturka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.86917000", + "longitude": "103.46083000" + }, + { + "id": "105942", + "name": "Tel’ma", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.69810000", + "longitude": "103.71380000" + }, + { + "id": "105943", + "name": "Ternovka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.57922000", + "longitude": "33.75105000" + }, + { + "id": "105944", + "name": "Tulun", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.56358000", + "longitude": "100.58143000" + }, + { + "id": "105945", + "name": "Tulunskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.16667000", + "longitude": "100.33333000" + }, + { + "id": "105946", + "name": "Tulyushka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.45851000", + "longitude": "101.17054000" + }, + { + "id": "105947", + "name": "Tyret’ Pervaya", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.67028000", + "longitude": "102.31056000" + }, + { + "id": "105948", + "name": "Uk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.07900000", + "longitude": "98.85860000" + }, + { + "id": "105949", + "name": "Urik", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.46051000", + "longitude": "104.24016000" + }, + { + "id": "105950", + "name": "Usol’skiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.50000000", + "longitude": "103.25000000" + }, + { + "id": "105951", + "name": "Usol’ye-Sibirskoye", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.75194000", + "longitude": "103.64528000" + }, + { + "id": "105952", + "name": "Ust’-Ilimsk", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00056000", + "longitude": "102.66194000" + }, + { + "id": "105953", + "name": "Ust’-Kut", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.79380000", + "longitude": "105.76720000" + }, + { + "id": "105954", + "name": "Ust’-Kutskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "106.00000000" + }, + { + "id": "105955", + "name": "Ust’-Ordynskiy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.80500000", + "longitude": "104.75083000" + }, + { + "id": "105956", + "name": "Ust’-Uda", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.17420000", + "longitude": "103.03040000" + }, + { + "id": "105957", + "name": "Ust’-Udinskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "103.66667000" + }, + { + "id": "105958", + "name": "Verkhnesadovoye", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "44.68932000", + "longitude": "33.70207000" + }, + { + "id": "105959", + "name": "Vidim", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.40880000", + "longitude": "103.11060000" + }, + { + "id": "105960", + "name": "Vikhorevka", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.12128000", + "longitude": "101.17767000" + }, + { + "id": "105961", + "name": "Voznesenskiy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.89680000", + "longitude": "99.10310000" + }, + { + "id": "105962", + "name": "Yantal’", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.84710000", + "longitude": "105.25420000" + }, + { + "id": "105963", + "name": "Yedogon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.25490000", + "longitude": "100.23850000" + }, + { + "id": "105964", + "name": "Yelantsy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "52.80286000", + "longitude": "106.40466000" + }, + { + "id": "105965", + "name": "Yerbogachen", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "61.28016000", + "longitude": "108.01535000" + }, + { + "id": "105966", + "name": "Yurty", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.04980000", + "longitude": "97.63480000" + }, + { + "id": "105967", + "name": "Zalari", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.55840000", + "longitude": "102.50650000" + }, + { + "id": "105968", + "name": "Zalarinskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.16667000", + "longitude": "101.50000000" + }, + { + "id": "105969", + "name": "Zheleznodorozhnyy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "57.90525000", + "longitude": "102.77838000" + }, + { + "id": "105970", + "name": "Zheleznogorsk-Ilimskiy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.57680000", + "longitude": "104.12170000" + }, + { + "id": "105971", + "name": "Zhigalovo", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "54.81061000", + "longitude": "105.15808000" + }, + { + "id": "105972", + "name": "Zhigalovskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.00000000", + "longitude": "105.50000000" + }, + { + "id": "105973", + "name": "Zima", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "53.92020000", + "longitude": "102.04420000" + }, + { + "id": "105974", + "name": "Ziminskiy Rayon", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "101.66667000" + }, + { + "id": "105975", + "name": "Zvëzdnyy", + "state_id": 1912, + "state_code": "UA-40", + "country_id": 182, + "country_code": "RU", + "latitude": "56.74920000", + "longitude": "106.47990000" + }, + { + "id": "98259", + "name": "Demidov", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.27063000", + "longitude": "31.51497000" + }, + { + "id": "98269", + "name": "Desnogorsk", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.15077000", + "longitude": "33.28151000" + }, + { + "id": "98319", + "name": "Dorogobuzh", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.91500000", + "longitude": "33.29722000" + }, + { + "id": "98351", + "name": "Dukhovshchina", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.19190000", + "longitude": "32.41110000" + }, + { + "id": "98446", + "name": "Gagarin", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.55291000", + "longitude": "34.99537000" + }, + { + "id": "98499", + "name": "Glinka", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.64043000", + "longitude": "32.87811000" + }, + { + "id": "98511", + "name": "Golynki", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.86964000", + "longitude": "31.38609000" + }, + { + "id": "98874", + "name": "Kardymovo", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.89016000", + "longitude": "32.43111000" + }, + { + "id": "98910", + "name": "Katyn'", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.77455000", + "longitude": "31.69041000" + }, + { + "id": "98983", + "name": "Khislavichi", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.18714000", + "longitude": "32.15817000" + }, + { + "id": "98993", + "name": "Kholm-Zhirkovskiy", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.51889000", + "longitude": "33.47306000" + }, + { + "id": "99956", + "name": "Monastyrshchina", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.34961000", + "longitude": "31.83795000" + }, + { + "id": "100239", + "name": "Novodugino", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.63052000", + "longitude": "34.28423000" + }, + { + "id": "100494", + "name": "Oster", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.01700000", + "longitude": "32.80190000" + }, + { + "id": "100523", + "name": "Ozërnyy", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58020000", + "longitude": "32.41270000" + }, + { + "id": "100586", + "name": "Pechersk", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.85355000", + "longitude": "32.03154000" + }, + { + "id": "100710", + "name": "Pochinok", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.40685000", + "longitude": "32.44067000" + }, + { + "id": "101001", + "name": "Roslavl’", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "53.95278000", + "longitude": "32.86389000" + }, + { + "id": "101025", + "name": "Rudnya", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.94698000", + "longitude": "31.09340000" + }, + { + "id": "101070", + "name": "Safonovo", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.11087000", + "longitude": "33.23292000" + }, + { + "id": "101071", + "name": "Safonovskiy Rayon", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.16667000", + "longitude": "33.16667000" + }, + { + "id": "101267", + "name": "Shatalovo", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33400000", + "longitude": "32.44650000" + }, + { + "id": "101352", + "name": "Shumyachi", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "53.85833000", + "longitude": "32.42417000" + }, + { + "id": "101415", + "name": "Smolensk", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.78180000", + "longitude": "32.04010000" + }, + { + "id": "101620", + "name": "Stodolishche", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.18594000", + "longitude": "32.64925000" + }, + { + "id": "101721", + "name": "Sychëvka", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.82515000", + "longitude": "34.27361000" + }, + { + "id": "101747", + "name": "Talashkino", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.65471000", + "longitude": "32.18325000" + }, + { + "id": "102008", + "name": "Tëmkino", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.10917000", + "longitude": "35.01389000" + }, + { + "id": "102040", + "name": "Ugra", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.77775000", + "longitude": "34.32674000" + }, + { + "id": "102220", + "name": "Velizh", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.60564000", + "longitude": "31.19673000" + }, + { + "id": "102238", + "name": "Verkhnedneprovskiy", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.98131000", + "longitude": "33.34573000" + }, + { + "id": "102424", + "name": "Vyaz’ma", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.21039000", + "longitude": "34.29508000" + }, + { + "id": "102505", + "name": "Yartsevo", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "55.06667000", + "longitude": "32.69639000" + }, + { + "id": "102531", + "name": "Yekimovichi", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.11285000", + "longitude": "33.29648000" + }, + { + "id": "102551", + "name": "Yel’nya", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "54.57864000", + "longitude": "33.18373000" + }, + { + "id": "102571", + "name": "Yershichi", + "state_id": 1885, + "state_code": "SMO", + "country_id": 182, + "country_code": "RU", + "latitude": "53.67250000", + "longitude": "32.75417000" + }, + { + "id": "97494", + "name": "Achikulak", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.55167000", + "longitude": "44.83778000" + }, + { + "id": "97562", + "name": "Aleksandriya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.09472000", + "longitude": "43.24556000" + }, + { + "id": "97563", + "name": "Aleksandriyskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.22722000", + "longitude": "43.34528000" + }, + { + "id": "97574", + "name": "Aleksandrovskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.71417000", + "longitude": "43.00083000" + }, + { + "id": "97631", + "name": "Andzhiyevskiy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.23889000", + "longitude": "43.08556000" + }, + { + "id": "97690", + "name": "Arzgir", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.37278000", + "longitude": "44.22056000" + }, + { + "id": "97767", + "name": "Balakhonovskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.77670000", + "longitude": "41.78420000" + }, + { + "id": "97799", + "name": "Barsukovskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.76320000", + "longitude": "41.81910000" + }, + { + "id": "97836", + "name": "Bekeshevskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.11389000", + "longitude": "42.42694000" + }, + { + "id": "97909", + "name": "Beshpagir", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.02167000", + "longitude": "42.38083000" + }, + { + "id": "97923", + "name": "Bezopasnoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.64833000", + "longitude": "41.93603000" + }, + { + "id": "97944", + "name": "Blagodarnyy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.09778000", + "longitude": "43.43639000" + }, + { + "id": "97945", + "name": "Blagodatnoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.39972000", + "longitude": "42.58667000" + }, + { + "id": "98022", + "name": "Borgustanskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.05470000", + "longitude": "42.52880000" + }, + { + "id": "98065", + "name": "Budënnovsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.78389000", + "longitude": "44.16583000" + }, + { + "id": "98083", + "name": "Burlatskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.05639000", + "longitude": "43.63500000" + }, + { + "id": "98172", + "name": "Chernolesskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.71556000", + "longitude": "43.71333000" + }, + { + "id": "98281", + "name": "Divnoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.90889000", + "longitude": "43.35472000" + }, + { + "id": "98284", + "name": "Dmitriyevskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.80529000", + "longitude": "41.89667000" + }, + { + "id": "98313", + "name": "Donskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.45518000", + "longitude": "41.97411000" + }, + { + "id": "98380", + "name": "Edissiya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.05111000", + "longitude": "44.54083000" + }, + { + "id": "98406", + "name": "Etoka", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.91944000", + "longitude": "43.04833000" + }, + { + "id": "98453", + "name": "Galyugayevskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.69694000", + "longitude": "44.93444000" + }, + { + "id": "98476", + "name": "Georgiyevsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.15194000", + "longitude": "43.46972000" + }, + { + "id": "98477", + "name": "Georgiyevskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.11139000", + "longitude": "43.49222000" + }, + { + "id": "98505", + "name": "Gofitskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.07917000", + "longitude": "43.04639000" + }, + { + "id": "98569", + "name": "Goryachevodskiy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.02361000", + "longitude": "43.09222000" + }, + { + "id": "98581", + "name": "Grazhdanskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.23000000", + "longitude": "42.76980000" + }, + { + "id": "98584", + "name": "Grecheskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.43053000", + "longitude": "43.00830000" + }, + { + "id": "98589", + "name": "Grigoropolisskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.29722000", + "longitude": "41.05667000" + }, + { + "id": "98674", + "name": "Inozemtsevo", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.09264000", + "longitude": "43.09113000" + }, + { + "id": "98685", + "name": "Ipatovo", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.71806000", + "longitude": "42.90361000" + }, + { + "id": "98690", + "name": "Irgakly", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.36111000", + "longitude": "44.75556000" + }, + { + "id": "98734", + "name": "Ivanovskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.57950000", + "longitude": "41.87640000" + }, + { + "id": "98757", + "name": "Izobil’nyy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.37092000", + "longitude": "41.70839000" + }, + { + "id": "98795", + "name": "Kalinovskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.86350000", + "longitude": "42.96220000" + }, + { + "id": "98843", + "name": "Kangly", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.25444000", + "longitude": "43.03083000" + }, + { + "id": "98850", + "name": "Kara-Tyube", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.63361000", + "longitude": "45.43694000" + }, + { + "id": "98917", + "name": "Kayasula", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.32500000", + "longitude": "45.00000000" + }, + { + "id": "98946", + "name": "Kevsala", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.79833000", + "longitude": "42.69028000" + }, + { + "id": "99081", + "name": "Kislovodsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.91333000", + "longitude": "42.72083000" + }, + { + "id": "99125", + "name": "Kochubeyevskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.64417000", + "longitude": "41.84528000" + }, + { + "id": "99169", + "name": "Komsomolets", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.01972000", + "longitude": "43.56972000" + }, + { + "id": "99190", + "name": "Konstantinovskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.04556000", + "longitude": "43.15833000" + }, + { + "id": "99194", + "name": "Konstantinovskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.29917000", + "longitude": "42.63667000" + }, + { + "id": "99316", + "name": "Krasnogvardeyskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.84604000", + "longitude": "41.51885000" + }, + { + "id": "99326", + "name": "Krasnokumskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.17806000", + "longitude": "43.50194000" + }, + { + "id": "99401", + "name": "Kruglolesskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.65889000", + "longitude": "42.81417000" + }, + { + "id": "99473", + "name": "Kursavka", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.45640000", + "longitude": "42.50930000" + }, + { + "id": "99475", + "name": "Kurskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.05000000", + "longitude": "44.45000000" + }, + { + "id": "99532", + "name": "Ladovskaya Balka", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.62965000", + "longitude": "41.40231000" + }, + { + "id": "99584", + "name": "Lermontov", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.10667000", + "longitude": "42.97333000" + }, + { + "id": "99608", + "name": "Letnyaya Stavka", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.43056000", + "longitude": "43.44722000" + }, + { + "id": "99617", + "name": "Levokumka", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.23167000", + "longitude": "43.15000000" + }, + { + "id": "99618", + "name": "Levokumskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.82194000", + "longitude": "44.66056000" + }, + { + "id": "99708", + "name": "Lysogorskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.10639000", + "longitude": "43.27556000" + }, + { + "id": "99899", + "name": "Mikhaylovsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.12833000", + "longitude": "42.02556000" + }, + { + "id": "99917", + "name": "Mineralnye Vody", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.21028000", + "longitude": "43.13528000" + }, + { + "id": "99979", + "name": "Moskovskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.28420000", + "longitude": "41.91030000" + }, + { + "id": "100039", + "name": "Nadezhda", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.10000000", + "longitude": "44.60000000" + }, + { + "id": "100050", + "name": "Nagutskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.44150000", + "longitude": "42.87620000" + }, + { + "id": "100087", + "name": "Neftekumsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.75583000", + "longitude": "44.99250000" + }, + { + "id": "100120", + "name": "Nevinnomyssk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.63330000", + "longitude": "41.94440000" + }, + { + "id": "100128", + "name": "Nezhinskiy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.92833000", + "longitude": "42.68556000" + }, + { + "id": "100129", + "name": "Nezlobnaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.11806000", + "longitude": "43.40278000" + }, + { + "id": "100149", + "name": "Niny", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.48778000", + "longitude": "43.94889000" + }, + { + "id": "100222", + "name": "Novoaleksandrovsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.49480000", + "longitude": "41.22075000" + }, + { + "id": "100231", + "name": "Novoblagodarnoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.14333000", + "longitude": "42.87500000" + }, + { + "id": "100278", + "name": "Novopavlovsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.96222000", + "longitude": "43.63417000" + }, + { + "id": "100294", + "name": "Novoselitskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.75083000", + "longitude": "43.43694000" + }, + { + "id": "100313", + "name": "Novoterskiy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.14861000", + "longitude": "43.09250000" + }, + { + "id": "100317", + "name": "Novotroitskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.32667000", + "longitude": "41.52528000" + }, + { + "id": "100334", + "name": "Novozavedennoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.26278000", + "longitude": "43.63806000" + }, + { + "id": "100471", + "name": "Orlovka", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.69139000", + "longitude": "44.17444000" + }, + { + "id": "100502", + "name": "Otkaznoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.32639000", + "longitude": "43.86083000" + }, + { + "id": "100512", + "name": "Ovoshchi", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.36639000", + "longitude": "43.32333000" + }, + { + "id": "100590", + "name": "Pelagiada", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.20639000", + "longitude": "42.02361000" + }, + { + "id": "100715", + "name": "Podgornaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.20306000", + "longitude": "43.42972000" + }, + { + "id": "100720", + "name": "Podkumskiy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.07556000", + "longitude": "43.21028000" + }, + { + "id": "100741", + "name": "Pokoynoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.80972000", + "longitude": "44.25167000" + }, + { + "id": "100800", + "name": "Praskoveya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.74444000", + "longitude": "44.20306000" + }, + { + "id": "100806", + "name": "Pravokumskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.76944000", + "longitude": "44.64722000" + }, + { + "id": "100810", + "name": "Pregradnoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.82183000", + "longitude": "41.74692000" + }, + { + "id": "100909", + "name": "Pyatigorsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.04861000", + "longitude": "43.05944000" + }, + { + "id": "100910", + "name": "Pyatigorskiy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.97417000", + "longitude": "43.25833000" + }, + { + "id": "100941", + "name": "Rasshevatskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.57480000", + "longitude": "41.03496000" + }, + { + "id": "101056", + "name": "Ryzdvyanyy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.26560000", + "longitude": "41.83890000" + }, + { + "id": "101203", + "name": "Severnoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.83194000", + "longitude": "42.85833000" + }, + { + "id": "101445", + "name": "Soldato-Aleksandrovskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.26528000", + "longitude": "43.75611000" + }, + { + "id": "101463", + "name": "Solomenskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.21667000", + "longitude": "44.35278000" + }, + { + "id": "101470", + "name": "Soluno-Dmitriyevskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.40740000", + "longitude": "42.72400000" + }, + { + "id": "101501", + "name": "Sotnikovskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.00389000", + "longitude": "43.77722000" + }, + { + "id": "101505", + "name": "Sovetskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.02667000", + "longitude": "44.05000000" + }, + { + "id": "101539", + "name": "Spitsevka", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.12306000", + "longitude": "42.51250000" + }, + { + "id": "101579", + "name": "Starodubskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.56306000", + "longitude": "44.01528000" + }, + { + "id": "101589", + "name": "Staropavlovskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.84889000", + "longitude": "43.63278000" + }, + { + "id": "101613", + "name": "Stavropol’", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.04280000", + "longitude": "41.97340000" + }, + { + "id": "101617", + "name": "Stepnoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.27083000", + "longitude": "44.58500000" + }, + { + "id": "101648", + "name": "Sukhaya Buyvola", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.15333000", + "longitude": "42.99556000" + }, + { + "id": "101688", + "name": "Suvorovskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.19010000", + "longitude": "42.65950000" + }, + { + "id": "101703", + "name": "Svetlograd", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.33528000", + "longitude": "42.85472000" + }, + { + "id": "101716", + "name": "Svobody", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.02556000", + "longitude": "43.05028000" + }, + { + "id": "101791", + "name": "Tatarka", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.95889000", + "longitude": "41.95171000" + }, + { + "id": "101817", + "name": "Temizhbekskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.45078000", + "longitude": "41.03866000" + }, + { + "id": "101863", + "name": "Tishchenskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.46056000", + "longitude": "41.67382000" + }, + { + "id": "101934", + "name": "Trunovskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.48778000", + "longitude": "42.13583000" + }, + { + "id": "102083", + "name": "Urozhaynoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.78833000", + "longitude": "44.92278000" + }, + { + "id": "102315", + "name": "Vinsady", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.08083000", + "longitude": "42.96528000" + }, + { + "id": "102396", + "name": "Vostochny", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.31494000", + "longitude": "44.19637000" + }, + { + "id": "102452", + "name": "Vysotskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.02500000", + "longitude": "42.90639000" + }, + { + "id": "102512", + "name": "Yasnaya Polyana", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.02250000", + "longitude": "42.75390000" + }, + { + "id": "102543", + "name": "Yelizavetinskoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "45.00722000", + "longitude": "43.34944000" + }, + { + "id": "102576", + "name": "Yessentuki", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.04444000", + "longitude": "42.86056000" + }, + { + "id": "102577", + "name": "Yessentukskaya", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.03280000", + "longitude": "42.88130000" + }, + { + "id": "102611", + "name": "Yutsa", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "43.95639000", + "longitude": "43.01278000" + }, + { + "id": "102666", + "name": "Zaterechnyy", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.79306000", + "longitude": "45.20972000" + }, + { + "id": "102669", + "name": "Zavetnoye", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.74920000", + "longitude": "41.59950000" + }, + { + "id": "102701", + "name": "Zelenokumsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.40694000", + "longitude": "43.88056000" + }, + { + "id": "102722", + "name": "Zheleznovodsk", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.13944000", + "longitude": "43.01972000" + }, + { + "id": "102753", + "name": "Zmeyka", + "state_id": 1868, + "state_code": "STA", + "country_id": 182, + "country_code": "RU", + "latitude": "44.14278000", + "longitude": "43.12083000" + }, + { + "id": "97498", + "name": "Achit", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.79850000", + "longitude": "57.89940000" + }, + { + "id": "97558", + "name": "Alapayevsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.85158000", + "longitude": "61.69627000" + }, + { + "id": "97652", + "name": "Aramil", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.69770000", + "longitude": "60.83690000" + }, + { + "id": "97687", + "name": "Artëmovskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.35550000", + "longitude": "61.86865000" + }, + { + "id": "97683", + "name": "Arti", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.42344000", + "longitude": "58.53276000" + }, + { + "id": "97693", + "name": "Asbest", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00993000", + "longitude": "61.45776000" + }, + { + "id": "97694", + "name": "Asbestovskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.75574000", + "longitude": "61.39672000" + }, + { + "id": "97711", + "name": "Atig", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.69307000", + "longitude": "59.42271000" + }, + { + "id": "97732", + "name": "Azanka", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.04012000", + "longitude": "64.78927000" + }, + { + "id": "97788", + "name": "Baraba", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "61.76667000" + }, + { + "id": "97791", + "name": "Baranchinskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.16170000", + "longitude": "59.69910000" + }, + { + "id": "97824", + "name": "Baykalovo", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.39811000", + "longitude": "63.76841000" + }, + { + "id": "97870", + "name": "Beloyarskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75840000", + "longitude": "61.41430000" + }, + { + "id": "97901", + "name": "Beryozovsky", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.90830000", + "longitude": "60.80190000" + }, + { + "id": "97929", + "name": "Bilimbay", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.96889000", + "longitude": "59.81490000" + }, + { + "id": "97940", + "name": "Bisert’", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.86174000", + "longitude": "59.05231000" + }, + { + "id": "97958", + "name": "Bobrovskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.67320000", + "longitude": "60.98070000" + }, + { + "id": "97965", + "name": "Bogdanovich", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.78028000", + "longitude": "62.04944000" + }, + { + "id": "98074", + "name": "Bulanash", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.27825000", + "longitude": "61.99650000" + }, + { + "id": "98086", + "name": "Butka", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.71788000", + "longitude": "63.78661000" + }, + { + "id": "98189", + "name": "Cherëmukhovo", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.34842000", + "longitude": "59.98507000" + }, + { + "id": "98171", + "name": "Chernoistochinsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.73639000", + "longitude": "59.87194000" + }, + { + "id": "98258", + "name": "Degtyarsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.70400000", + "longitude": "60.08790000" + }, + { + "id": "98331", + "name": "Druzhinino", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.78945000", + "longitude": "59.51428000" + }, + { + "id": "98361", + "name": "Dvurechensk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.59820000", + "longitude": "61.09530000" + }, + { + "id": "98458", + "name": "Gari", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.43075000", + "longitude": "62.34967000" + }, + { + "id": "98544", + "name": "Gornyy Shchit", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.68815000", + "longitude": "60.51947000" + }, + { + "id": "98598", + "name": "Gryaznovskoye", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.78250000", + "longitude": "61.70530000" + }, + { + "id": "98689", + "name": "Irbit", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.67052000", + "longitude": "63.07100000" + }, + { + "id": "98696", + "name": "Is", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.79090000", + "longitude": "59.71790000" + }, + { + "id": "98701", + "name": "Iset’", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.97790000", + "longitude": "60.37180000" + }, + { + "id": "98719", + "name": "Istok", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.79086000", + "longitude": "60.77889000" + }, + { + "id": "98738", + "name": "Ivdel’", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.69111000", + "longitude": "60.42056000" + }, + { + "id": "98759", + "name": "Izumrud", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.07881000", + "longitude": "61.39932000" + }, + { + "id": "98766", + "name": "Kachkanar", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.70020000", + "longitude": "59.48390000" + }, + { + "id": "98793", + "name": "Kalinovo", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.13170000", + "longitude": "60.14640000" + }, + { + "id": "98820", + "name": "Kamensk-Ural’skiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41850000", + "longitude": "61.93290000" + }, + { + "id": "98830", + "name": "Kamyshlov", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.84278000", + "longitude": "62.71111000" + }, + { + "id": "98883", + "name": "Karpinsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.77030000", + "longitude": "59.99640000" + }, + { + "id": "98885", + "name": "Karpushikha", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.50167000", + "longitude": "59.89556000" + }, + { + "id": "98934", + "name": "Kedrovoye", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.15760000", + "longitude": "60.56980000" + }, + { + "id": "99061", + "name": "Kirovgrad", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.42972000", + "longitude": "60.05972000" + }, + { + "id": "99109", + "name": "Klyuchevsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.12160000", + "longitude": "60.94140000" + }, + { + "id": "99313", + "name": "Krasnogvardeyskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.37928000", + "longitude": "62.31952000" + }, + { + "id": "99337", + "name": "Krasnotur’insk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.76660000", + "longitude": "60.20860000" + }, + { + "id": "99338", + "name": "Krasnoufimsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.60585000", + "longitude": "57.76686000" + }, + { + "id": "99339", + "name": "Krasnoural’sk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.36380000", + "longitude": "60.04070000" + }, + { + "id": "99488", + "name": "Kushva", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.29056000", + "longitude": "59.75917000" + }, + { + "id": "99505", + "name": "Kuzino", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.02240000", + "longitude": "59.44120000" + }, + { + "id": "99596", + "name": "Lesnoy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.61980000", + "longitude": "63.07840000" + }, + { + "id": "99615", + "name": "Levikha", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58361000", + "longitude": "59.90028000" + }, + { + "id": "99647", + "name": "Lobva", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.18538000", + "longitude": "60.51846000" + }, + { + "id": "99667", + "name": "Losinyy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.13862000", + "longitude": "61.06663000" + }, + { + "id": "99682", + "name": "Lugovskoy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.95849000", + "longitude": "64.52897000" + }, + { + "id": "99771", + "name": "Malysheva", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.11851000", + "longitude": "61.40345000" + }, + { + "id": "99807", + "name": "Martyush", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.40000000", + "longitude": "61.88194000" + }, + { + "id": "99900", + "name": "Mikhaylovsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.43583000", + "longitude": "59.12000000" + }, + { + "id": "99958", + "name": "Monetnyy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.04720000", + "longitude": "60.87940000" + }, + { + "id": "100121", + "name": "Nev’yansk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.49530000", + "longitude": "60.21120000" + }, + { + "id": "100124", + "name": "Neyvo-Rudyanka", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.34440000", + "longitude": "60.13430000" + }, + { + "id": "100125", + "name": "Neyvo-Shaytanskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.72860000", + "longitude": "61.24956000" + }, + { + "id": "100141", + "name": "Nikolo-Pavlovskoye", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.78306000", + "longitude": "60.05778000" + }, + { + "id": "100179", + "name": "Nizhniye Sergi", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66139000", + "longitude": "59.30333000" + }, + { + "id": "100181", + "name": "Nizhny Tagil", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.91944000", + "longitude": "59.96500000" + }, + { + "id": "100182", + "name": "Nizhnyaya Irga", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.86690000", + "longitude": "57.42200000" + }, + { + "id": "100186", + "name": "Nizhnyaya Salda", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.07756000", + "longitude": "60.72020000" + }, + { + "id": "100188", + "name": "Nizhnyaya Tura", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.62930000", + "longitude": "59.81180000" + }, + { + "id": "100206", + "name": "Novaya Lyalya", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.05503000", + "longitude": "60.59899000" + }, + { + "id": "100225", + "name": "Novoasbest", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.74225000", + "longitude": "60.28773000" + }, + { + "id": "100322", + "name": "Novoural’sk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.24389000", + "longitude": "60.08389000" + }, + { + "id": "100324", + "name": "Novoutkinsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.99295000", + "longitude": "59.55714000" + }, + { + "id": "100393", + "name": "Obukhovskoye", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83450000", + "longitude": "62.61200000" + }, + { + "id": "100510", + "name": "Ous", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.90583000", + "longitude": "61.51861000" + }, + { + "id": "100592", + "name": "Pelym", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "61.01083000", + "longitude": "61.99778000" + }, + { + "id": "100629", + "name": "Pervoural’sk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.90528000", + "longitude": "59.94361000" + }, + { + "id": "100650", + "name": "Petrokamenskoye", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.71600000", + "longitude": "60.64840000" + }, + { + "id": "100749", + "name": "Pokrovskoye", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.47040000", + "longitude": "61.60920000" + }, + { + "id": "100755", + "name": "Polevskoy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.44222000", + "longitude": "60.18778000" + }, + { + "id": "100760", + "name": "Polunochnoye", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.86972000", + "longitude": "60.41528000" + }, + { + "id": "100916", + "name": "Pyshma", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.95226000", + "longitude": "63.25129000" + }, + { + "id": "100959", + "name": "Reftinskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.09013000", + "longitude": "61.67692000" + }, + { + "id": "100969", + "name": "Revda", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.80097000", + "longitude": "59.93028000" + }, + { + "id": "100971", + "name": "Rezh", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.37005000", + "longitude": "61.40428000" + }, + { + "id": "101024", + "name": "Rudnichnyy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.70118000", + "longitude": "60.28817000" + }, + { + "id": "101108", + "name": "Sarana", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.47728000", + "longitude": "57.72586000" + }, + { + "id": "101190", + "name": "Serov", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.60334000", + "longitude": "60.57870000" + }, + { + "id": "101202", + "name": "Severka", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.86880000", + "longitude": "60.30150000" + }, + { + "id": "101221", + "name": "Severoural’sk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.15328000", + "longitude": "59.95205000" + }, + { + "id": "101231", + "name": "Shabrovskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.63597000", + "longitude": "60.58065000" + }, + { + "id": "101249", + "name": "Shalya", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.24710000", + "longitude": "58.72980000" + }, + { + "id": "101251", + "name": "Shamary", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.34340000", + "longitude": "58.21988000" + }, + { + "id": "101276", + "name": "Shchelkun", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.30338000", + "longitude": "60.94831000" + }, + { + "id": "101329", + "name": "Shirokaya Rechka", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.79858000", + "longitude": "60.48522000" + }, + { + "id": "101358", + "name": "Shuvakish", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.91870000", + "longitude": "60.47727000" + }, + { + "id": "101499", + "name": "Sos’va", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.17662000", + "longitude": "61.85579000" + }, + { + "id": "101520", + "name": "Sovkhoznyy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55990000", + "longitude": "61.42600000" + }, + { + "id": "101545", + "name": "Sredneuralsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.98921000", + "longitude": "60.46662000" + }, + { + "id": "101591", + "name": "Staropyshminsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.93867000", + "longitude": "60.90295000" + }, + { + "id": "101598", + "name": "Staroutkinsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.23017000", + "longitude": "59.33483000" + }, + { + "id": "101654", + "name": "Sukhoy Log", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.90940000", + "longitude": "62.02960000" + }, + { + "id": "101715", + "name": "Svobodnyy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.03972000", + "longitude": "60.39611000" + }, + { + "id": "101726", + "name": "Sylva", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.30920000", + "longitude": "58.77340000" + }, + { + "id": "101733", + "name": "Sysert’", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50243000", + "longitude": "60.81917000" + }, + { + "id": "101732", + "name": "Sysertskiy Rayon", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50000000", + "longitude": "60.75000000" + }, + { + "id": "101738", + "name": "Tabory", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.51982000", + "longitude": "64.54947000" + }, + { + "id": "101752", + "name": "Talitsa", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.01095000", + "longitude": "63.73254000" + }, + { + "id": "101799", + "name": "Tavda", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.04254000", + "longitude": "65.27258000" + }, + { + "id": "101911", + "name": "Tretiy Severnyy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "60.20861000", + "longitude": "59.96111000" + }, + { + "id": "101918", + "name": "Troitskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.06028000", + "longitude": "63.74811000" + }, + { + "id": "101942", + "name": "Tsementnyy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.46930000", + "longitude": "60.15360000" + }, + { + "id": "101962", + "name": "Tugulym", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.05906000", + "longitude": "64.64251000" + }, + { + "id": "101976", + "name": "Turinsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.04575000", + "longitude": "63.69605000" + }, + { + "id": "101977", + "name": "Turinskaya Sloboda", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.62320000", + "longitude": "64.38575000" + }, + { + "id": "102026", + "name": "Ufimskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.70840000", + "longitude": "58.05170000" + }, + { + "id": "102070", + "name": "Uralets", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.66140000", + "longitude": "59.64970000" + }, + { + "id": "102181", + "name": "Valerianovsk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.76080000", + "longitude": "59.55960000" + }, + { + "id": "102232", + "name": "Verkh-Neyvinskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.27013000", + "longitude": "60.13762000" + }, + { + "id": "102247", + "name": "Verkhneye Dubrovo", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75280000", + "longitude": "61.04680000" + }, + { + "id": "102257", + "name": "Verkhniy Tagil", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.37330000", + "longitude": "59.95560000" + }, + { + "id": "102263", + "name": "Verkhniye Sergi", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.64694000", + "longitude": "59.55556000" + }, + { + "id": "102269", + "name": "Verkhnyaya Pyshma", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.97047000", + "longitude": "60.58219000" + }, + { + "id": "102270", + "name": "Verkhnyaya Salda", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.04874000", + "longitude": "60.55949000" + }, + { + "id": "102271", + "name": "Verkhnyaya Sinyachikha", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.97604000", + "longitude": "61.66733000" + }, + { + "id": "102272", + "name": "Verkhnyaya Sysert’", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.44012000", + "longitude": "60.75563000" + }, + { + "id": "102275", + "name": "Verkhnyaya Tura", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.36083000", + "longitude": "59.80667000" + }, + { + "id": "102277", + "name": "Verkhotur’ye", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.86271000", + "longitude": "60.80536000" + }, + { + "id": "102319", + "name": "Visim", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.64880000", + "longitude": "59.50140000" + }, + { + "id": "102339", + "name": "Volchansk", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "59.93780000", + "longitude": "60.08100000" + }, + { + "id": "102399", + "name": "Vostochnyy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.79991000", + "longitude": "61.81391000" + }, + { + "id": "102623", + "name": "Yëlkino", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.69220000", + "longitude": "59.83200000" + }, + { + "id": "102527", + "name": "Yekaterinburg", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.85190000", + "longitude": "60.61220000" + }, + { + "id": "102534", + "name": "Yelanskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.84190000", + "longitude": "62.50140000" + }, + { + "id": "102574", + "name": "Yertarskiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.79016000", + "longitude": "64.29952000" + }, + { + "id": "102607", + "name": "Yushala", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.07611000", + "longitude": "64.26011000" + }, + { + "id": "102654", + "name": "Zarechnyy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.81100000", + "longitude": "61.32540000" + }, + { + "id": "102676", + "name": "Zavodouspenskoye", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.86256000", + "longitude": "65.01553000" + }, + { + "id": "102685", + "name": "Zaykovo", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.56130000", + "longitude": "62.75681000" + }, + { + "id": "102790", + "name": "Zyuzel’skiy", + "state_id": 1894, + "state_code": "SVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.48560000", + "longitude": "60.13310000" + }, + { + "id": "97984", + "name": "Bokino", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.63744000", + "longitude": "41.45968000" + }, + { + "id": "98018", + "name": "Bondarskiy Rayon", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.00000000", + "longitude": "42.00000000" + }, + { + "id": "98314", + "name": "Donskoye", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.77495000", + "longitude": "41.47759000" + }, + { + "id": "98464", + "name": "Gavrilovka Vtoraya", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.87697000", + "longitude": "42.76633000" + }, + { + "id": "98524", + "name": "Goreloye", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.93697000", + "longitude": "41.50435000" + }, + { + "id": "98683", + "name": "Inzhavino", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.31847000", + "longitude": "42.49369000" + }, + { + "id": "99074", + "name": "Kirsanov", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.65494000", + "longitude": "42.72236000" + }, + { + "id": "99075", + "name": "Kirsanovskiy Rayon", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.61667000", + "longitude": "42.55000000" + }, + { + "id": "99170", + "name": "Komsomolets", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.76860000", + "longitude": "41.28683000" + }, + { + "id": "99250", + "name": "Kotovsk", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58666000", + "longitude": "41.50210000" + }, + { + "id": "99892", + "name": "Michurinsk", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.89780000", + "longitude": "40.49070000" + }, + { + "id": "99961", + "name": "Mordovo", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.08340000", + "longitude": "40.77000000" + }, + { + "id": "99967", + "name": "Morshansk", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.44354000", + "longitude": "41.81065000" + }, + { + "id": "99993", + "name": "Muchkapskiy", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "51.85133000", + "longitude": "42.47175000" + }, + { + "id": "100205", + "name": "Novaya Lyada", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.71309000", + "longitude": "41.63872000" + }, + { + "id": "100284", + "name": "Novopokrovka", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.13310000", + "longitude": "40.87830000" + }, + { + "id": "100618", + "name": "Pervomayskiy", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.24850000", + "longitude": "40.28710000" + }, + { + "id": "100670", + "name": "Pichayevo", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.23627000", + "longitude": "42.20323000" + }, + { + "id": "100698", + "name": "Platonovka", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.71058000", + "longitude": "41.95199000" + }, + { + "id": "100744", + "name": "Pokrovo-Prigorodnoye", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.68405000", + "longitude": "41.41752000" + }, + { + "id": "100942", + "name": "Rasskazovo", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.65599000", + "longitude": "41.88461000" + }, + { + "id": "100943", + "name": "Rasskazovskiy Rayon", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.58333000", + "longitude": "41.91667000" + }, + { + "id": "101057", + "name": "Rzhaksa", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.13384000", + "longitude": "42.02640000" + }, + { + "id": "101092", + "name": "Sampurskiy Rayon", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.25000000", + "longitude": "41.66667000" + }, + { + "id": "101130", + "name": "Satinka", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.37923000", + "longitude": "41.68192000" + }, + { + "id": "101153", + "name": "Selezni", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.80415000", + "longitude": "41.23961000" + }, + { + "id": "101488", + "name": "Sosnovka", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.23593000", + "longitude": "41.36859000" + }, + { + "id": "101602", + "name": "Staroyur’yevo", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "53.31611000", + "longitude": "40.70806000" + }, + { + "id": "101761", + "name": "Tambov", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.73169000", + "longitude": "41.44326000" + }, + { + "id": "101873", + "name": "Tokarevskiy Rayon", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.00000000", + "longitude": "41.25000000" + }, + { + "id": "102155", + "name": "Uvarovo", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "51.98486000", + "longitude": "42.26147000" + }, + { + "id": "102681", + "name": "Zavoronezhskoye", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.88010000", + "longitude": "40.55260000" + }, + { + "id": "102725", + "name": "Zherdevka", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "51.84861000", + "longitude": "41.46056000" + }, + { + "id": "102756", + "name": "Znamenka", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.41670000", + "longitude": "41.43108000" + }, + { + "id": "102760", + "name": "Znamenskiy Rayon", + "state_id": 1878, + "state_code": "TAM", + "country_id": 182, + "country_code": "RU", + "latitude": "52.33333000", + "longitude": "41.33333000" + }, + { + "id": "97575", + "name": "Aleksandrovskoye", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.74083000", + "longitude": "85.39056000" + }, + { + "id": "97701", + "name": "Asino", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.99987000", + "longitude": "86.14393000" + }, + { + "id": "97759", + "name": "Bakchar", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.01861000", + "longitude": "82.07111000" + }, + { + "id": "97881", + "name": "Belyy Yar", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "58.44472000", + "longitude": "85.04250000" + }, + { + "id": "97961", + "name": "Bogashevo", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.36798000", + "longitude": "85.14414000" + }, + { + "id": "98801", + "name": "Kaltay", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.27917000", + "longitude": "84.87861000" + }, + { + "id": "98877", + "name": "Kargasok", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "59.05556000", + "longitude": "80.85722000" + }, + { + "id": "98935", + "name": "Kedrovyy", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.51972000", + "longitude": "79.51556000" + }, + { + "id": "99146", + "name": "Kolpashevo", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "58.31306000", + "longitude": "82.90889000" + }, + { + "id": "99263", + "name": "Kozhevnikovo", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25889000", + "longitude": "83.97139000" + }, + { + "id": "99378", + "name": "Krasnyy Yar", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.12750000", + "longitude": "84.53028000" + }, + { + "id": "99393", + "name": "Krivosheino", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.34306000", + "longitude": "83.92611000" + }, + { + "id": "99859", + "name": "Mel’nikovo", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55738000", + "longitude": "84.08350000" + }, + { + "id": "99947", + "name": "Molchanovo", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58167000", + "longitude": "83.76917000" + }, + { + "id": "99948", + "name": "Molchanovskiy Rayon", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.75000000", + "longitude": "84.33333000" + }, + { + "id": "99969", + "name": "Moryakovskiy Zaton", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.69448000", + "longitude": "84.65145000" + }, + { + "id": "100540", + "name": "Parabel’", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "58.69778000", + "longitude": "81.48250000" + }, + { + "id": "100627", + "name": "Pervomayskoye", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.07610000", + "longitude": "86.23130000" + }, + { + "id": "100717", + "name": "Podgornoye", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.78861000", + "longitude": "82.65194000" + }, + { + "id": "101094", + "name": "Samus’", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.74482000", + "longitude": "84.70422000" + }, + { + "id": "101222", + "name": "Seversk", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.60056000", + "longitude": "84.88639000" + }, + { + "id": "101628", + "name": "Strezhevoy", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "60.73330000", + "longitude": "77.58890000" + }, + { + "id": "101707", + "name": "Svetlyy", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.91667000", + "longitude": "85.96667000" + }, + { + "id": "101810", + "name": "Tegul’det", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.30679000", + "longitude": "88.16004000" + }, + { + "id": "101811", + "name": "Tegul’detskiy Rayon", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "57.50000000", + "longitude": "88.16667000" + }, + { + "id": "101860", + "name": "Timiryazevskoye", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.48988000", + "longitude": "84.87795000" + }, + { + "id": "101872", + "name": "Togur", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "58.36310000", + "longitude": "82.82650000" + }, + { + "id": "101887", + "name": "Tomsk", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.49771000", + "longitude": "84.97437000" + }, + { + "id": "101888", + "name": "Tomskiy Rayon", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50000000", + "longitude": "84.66667000" + }, + { + "id": "102788", + "name": "Zyryanskoye", + "state_id": 1872, + "state_code": "TOM", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83058000", + "longitude": "86.62734000" + }, + { + "id": "97515", + "name": "Ageyevo", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.15883000", + "longitude": "36.46927000" + }, + { + "id": "97583", + "name": "Aleksin", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50503000", + "longitude": "37.06740000" + }, + { + "id": "97584", + "name": "Aleksinskiy Rayon", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50000000", + "longitude": "37.08333000" + }, + { + "id": "97679", + "name": "Arsen’yevo", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.73893000", + "longitude": "36.66429000" + }, + { + "id": "97798", + "name": "Barsuki", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.26548000", + "longitude": "37.48746000" + }, + { + "id": "97834", + "name": "Begichevskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.79605000", + "longitude": "38.25498000" + }, + { + "id": "97884", + "name": "Belëv", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.81194000", + "longitude": "36.13194000" + }, + { + "id": "97967", + "name": "Bogoroditsk", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.77166000", + "longitude": "38.12408000" + }, + { + "id": "98017", + "name": "Bol’shoye Skuratovo", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.43852000", + "longitude": "36.84085000" + }, + { + "id": "97996", + "name": "Bolokhovo", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.08378000", + "longitude": "37.82895000" + }, + { + "id": "98031", + "name": "Borodinskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.99859000", + "longitude": "37.81792000" + }, + { + "id": "98059", + "name": "Brusyanka", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.98492000", + "longitude": "38.03593000" + }, + { + "id": "98134", + "name": "Chekalin", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.09685000", + "longitude": "36.24499000" + }, + { + "id": "98155", + "name": "Cherepet’", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.11784000", + "longitude": "36.37877000" + }, + { + "id": "98183", + "name": "Chern’", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.45232000", + "longitude": "36.91450000" + }, + { + "id": "98312", + "name": "Donskoy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.97106000", + "longitude": "38.33627000" + }, + { + "id": "98338", + "name": "Dubna", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.15416000", + "longitude": "36.96173000" + }, + { + "id": "98339", + "name": "Dubovka", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.95223000", + "longitude": "38.06276000" + }, + { + "id": "98522", + "name": "Gorelki", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.25617000", + "longitude": "37.61080000" + }, + { + "id": "98591", + "name": "Gritsovskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.13761000", + "longitude": "38.16043000" + }, + { + "id": "98808", + "name": "Kamenetskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.01353000", + "longitude": "38.22115000" + }, + { + "id": "98924", + "name": "Kazachka", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.36440000", + "longitude": "38.06940000" + }, + { + "id": "98959", + "name": "Khanino", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.21100000", + "longitude": "36.62292000" + }, + { + "id": "99042", + "name": "Kimovsk", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.97164000", + "longitude": "38.53186000" + }, + { + "id": "99053", + "name": "Kireyevsk", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.93361000", + "longitude": "37.92792000" + }, + { + "id": "99225", + "name": "Kosaya Gora", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.11896000", + "longitude": "37.54459000" + }, + { + "id": "99273", + "name": "Krapivna", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.94235000", + "longitude": "37.15744000" + }, + { + "id": "99465", + "name": "Kurkino", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.42567000", + "longitude": "38.65824000" + }, + { + "id": "99571", + "name": "Leninskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.28768000", + "longitude": "37.45926000" + }, + { + "id": "99656", + "name": "Lomintsevskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.98548000", + "longitude": "37.66471000" + }, + { + "id": "99830", + "name": "Mayskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.96216000", + "longitude": "38.21165000" + }, + { + "id": "99864", + "name": "Mendeleyevskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.13745000", + "longitude": "37.58742000" + }, + { + "id": "100245", + "name": "Novogurovskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.46782000", + "longitude": "37.33709000" + }, + { + "id": "100269", + "name": "Novomoskovsk", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.01050000", + "longitude": "38.28460000" + }, + { + "id": "100400", + "name": "Odoyev", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.93933000", + "longitude": "36.68639000" + }, + { + "id": "100554", + "name": "Partizan", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.95017000", + "longitude": "38.09801000" + }, + { + "id": "100617", + "name": "Pervomayskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.04482000", + "longitude": "37.50875000" + }, + { + "id": "100699", + "name": "Plavsk", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.70944000", + "longitude": "37.29194000" + }, + { + "id": "100722", + "name": "Podlesnyy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.94003000", + "longitude": "38.26872000" + }, + { + "id": "100843", + "name": "Priupskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.90960000", + "longitude": "37.73600000" + }, + { + "id": "100970", + "name": "Revyakino", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.36517000", + "longitude": "37.66249000" + }, + { + "id": "101016", + "name": "Rozhdestvenskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.29570000", + "longitude": "37.57019000" + }, + { + "id": "101215", + "name": "Severo-Zadonsk", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.03481000", + "longitude": "38.40172000" + }, + { + "id": "101280", + "name": "Shchëkino", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.00513000", + "longitude": "37.52194000" + }, + { + "id": "101364", + "name": "Shvartsevskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.09174000", + "longitude": "37.99053000" + }, + { + "id": "101394", + "name": "Skuratovskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.10152000", + "longitude": "37.60384000" + }, + { + "id": "101401", + "name": "Slavniy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.54654000", + "longitude": "36.47387000" + }, + { + "id": "101687", + "name": "Suvorov", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.12230000", + "longitude": "36.49657000" + }, + { + "id": "101689", + "name": "Suvorovskiy Rayon", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.16667000", + "longitude": "36.58333000" + }, + { + "id": "102010", + "name": "Tëplo-Ogarëvskiy Rayon", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.58333000", + "longitude": "37.66667000" + }, + { + "id": "102011", + "name": "Tëploye", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.62022000", + "longitude": "37.59026000" + }, + { + "id": "101909", + "name": "Tovarkovskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.68217000", + "longitude": "38.20920000" + }, + { + "id": "101966", + "name": "Tula", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.19609000", + "longitude": "37.61822000" + }, + { + "id": "102166", + "name": "Uzlovaya", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.98179000", + "longitude": "38.17118000" + }, + { + "id": "102226", + "name": "Venëv", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.35533000", + "longitude": "38.26843000" + }, + { + "id": "102223", + "name": "Venevskiy Rayon", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.25000000", + "longitude": "38.25000000" + }, + { + "id": "102366", + "name": "Volovo", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.55831000", + "longitude": "38.00285000" + }, + { + "id": "102513", + "name": "Yasnogorsk", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.48082000", + "longitude": "37.69854000" + }, + { + "id": "102514", + "name": "Yasnogorskiy Rayon", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.50000000", + "longitude": "37.75000000" + }, + { + "id": "102523", + "name": "Yefremov", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.14806000", + "longitude": "38.09924000" + }, + { + "id": "102563", + "name": "Yepifan’", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.82526000", + "longitude": "38.55181000" + }, + { + "id": "102643", + "name": "Zaokskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.73227000", + "longitude": "37.40539000" + }, + { + "id": "102644", + "name": "Zaokskiy Rayon", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "54.66667000", + "longitude": "37.50000000" + }, + { + "id": "102716", + "name": "Zhdankovskiy", + "state_id": 1895, + "state_code": "TUL", + "country_id": 182, + "country_code": "RU", + "latitude": "53.75321000", + "longitude": "38.17951000" + }, + { + "id": "97526", + "name": "Ak-Dovurak", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.18333000", + "longitude": "90.60000000" + }, + { + "id": "97779", + "name": "Balgazyn", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.00000000", + "longitude": "95.20000000" + }, + { + "id": "97821", + "name": "Bay-Khaak", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.16105000", + "longitude": "94.46371000" + }, + { + "id": "98107", + "name": "Chadan", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.28333000", + "longitude": "91.58333000" + }, + { + "id": "98403", + "name": "Erzin", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "50.26000000", + "longitude": "95.16230000" + }, + { + "id": "98761", + "name": "Kaa-Khem", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.68333000", + "longitude": "94.73333000" + }, + { + "id": "98957", + "name": "Khandagayty", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "50.73333000", + "longitude": "92.05000000" + }, + { + "id": "99012", + "name": "Khovu-Aksy", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.13294000", + "longitude": "93.71286000" + }, + { + "id": "99447", + "name": "Kungurtug", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "50.59944000", + "longitude": "97.52278000" + }, + { + "id": "99525", + "name": "Kyzyl", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.71081000", + "longitude": "94.45338000" + }, + { + "id": "99526", + "name": "Kyzyl-Khaya", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "50.04986000", + "longitude": "89.87821000" + }, + { + "id": "99527", + "name": "Kyzyl-Mazhalyk", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.14594000", + "longitude": "90.58080000" + }, + { + "id": "99995", + "name": "Mugur-Aksy", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "50.38072000", + "longitude": "90.43739000" + }, + { + "id": "101084", + "name": "Samagaltay", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "50.60220000", + "longitude": "95.00470000" + }, + { + "id": "101126", + "name": "Saryg-Sep", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.49074000", + "longitude": "95.56081000" + }, + { + "id": "101235", + "name": "Shagonar", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.53400000", + "longitude": "92.93164000" + }, + { + "id": "101657", + "name": "Sukpak", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.66667000", + "longitude": "94.63333000" + }, + { + "id": "101686", + "name": "Sut-Khol’", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.40698000", + "longitude": "91.29244000" + }, + { + "id": "101809", + "name": "Teeli", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "51.01398000", + "longitude": "90.20535000" + }, + { + "id": "101892", + "name": "Toora-Khem", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.46556000", + "longitude": "96.11796000" + }, + { + "id": "101973", + "name": "Turan", + "state_id": 1900, + "state_code": "TY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.14490000", + "longitude": "93.91887000" + }, + { + "id": "97626", + "name": "Andreapol’", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.65134000", + "longitude": "32.26640000" + }, + { + "id": "97627", + "name": "Andreapol’skiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66667000", + "longitude": "32.25000000" + }, + { + "id": "97885", + "name": "Bel’skiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "33.08333000" + }, + { + "id": "97878", + "name": "Belyy", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.84020000", + "longitude": "32.94190000" + }, + { + "id": "97879", + "name": "Belyy Gorodok", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.96500000", + "longitude": "37.51250000" + }, + { + "id": "97894", + "name": "Berezayka", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.98833000", + "longitude": "33.90361000" + }, + { + "id": "97899", + "name": "Bernovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.68633000", + "longitude": "34.70357000" + }, + { + "id": "97920", + "name": "Bezhetsk", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.78506000", + "longitude": "36.69651000" + }, + { + "id": "97921", + "name": "Bezhetskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.76667000", + "longitude": "36.58333000" + }, + { + "id": "97993", + "name": "Bologovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.91667000", + "longitude": "34.00000000" + }, + { + "id": "97994", + "name": "Bologoye", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.88585000", + "longitude": "34.04876000" + }, + { + "id": "97995", + "name": "Bologoye-4", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.90000000", + "longitude": "33.65000000" + }, + { + "id": "98393", + "name": "Emmaus", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.78055000", + "longitude": "36.11500000" + }, + { + "id": "98429", + "name": "Firovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.48135000", + "longitude": "33.70211000" + }, + { + "id": "98430", + "name": "Firovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.48333000", + "longitude": "33.70000000" + }, + { + "id": "98561", + "name": "Gorodnya", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.70550000", + "longitude": "36.31793000" + }, + { + "id": "98656", + "name": "Il’inskoye", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.96667000", + "longitude": "37.18333000" + }, + { + "id": "98758", + "name": "Izoplit", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.62558000", + "longitude": "36.22198000" + }, + { + "id": "98781", + "name": "Kalashnikovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.28237000", + "longitude": "35.22617000" + }, + { + "id": "98791", + "name": "Kalininskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75958000", + "longitude": "35.98945000" + }, + { + "id": "98803", + "name": "Kalyazin", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.24028000", + "longitude": "37.84333000" + }, + { + "id": "98804", + "name": "Kalyazinskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.25000000", + "longitude": "37.83333000" + }, + { + "id": "98891", + "name": "Kashin", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.35917000", + "longitude": "37.60806000" + }, + { + "id": "98892", + "name": "Kashinskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.41667000", + "longitude": "37.58333000" + }, + { + "id": "98943", + "name": "Kesova Gora", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58361000", + "longitude": "37.29222000" + }, + { + "id": "98944", + "name": "Kesovogorskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58333000", + "longitude": "37.33333000" + }, + { + "id": "99043", + "name": "Kimrskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.91667000", + "longitude": "37.33333000" + }, + { + "id": "99044", + "name": "Kimry", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.86667000", + "longitude": "37.35000000" + }, + { + "id": "99177", + "name": "Konakovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.70000000", + "longitude": "36.76667000" + }, + { + "id": "99178", + "name": "Konakovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.66667000", + "longitude": "36.83333000" + }, + { + "id": "99268", + "name": "Kozlovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50977000", + "longitude": "36.27326000" + }, + { + "id": "99325", + "name": "Krasnokholmskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.08333000", + "longitude": "37.16667000" + }, + { + "id": "99328", + "name": "Krasnomayskiy", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.61941000", + "longitude": "34.40987000" + }, + { + "id": "99363", + "name": "Krasnyy Kholm", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.06070000", + "longitude": "37.12032000" + }, + { + "id": "99491", + "name": "Kuvshinovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.02953000", + "longitude": "34.17252000" + }, + { + "id": "99492", + "name": "Kuvshinovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.00000000", + "longitude": "34.16667000" + }, + { + "id": "99502", + "name": "Kuzhenkino", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.76111000", + "longitude": "33.95083000" + }, + { + "id": "99598", + "name": "Lesnoy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.25000000", + "longitude": "35.50000000" + }, + { + "id": "99599", + "name": "Lesnoye", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.28406000", + "longitude": "35.51584000" + }, + { + "id": "99623", + "name": "Likhoslavl’", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.12747000", + "longitude": "35.46404000" + }, + { + "id": "99624", + "name": "Likhoslavl’skiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.16667000", + "longitude": "35.41667000" + }, + { + "id": "99746", + "name": "Maksatikha", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.79695000", + "longitude": "35.88254000" + }, + { + "id": "99747", + "name": "Maksatikhinskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.83333000", + "longitude": "35.91667000" + }, + { + "id": "99952", + "name": "Molokovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.16611000", + "longitude": "36.76278000" + }, + { + "id": "100098", + "name": "Nelidovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.22107000", + "longitude": "32.77738000" + }, + { + "id": "100335", + "name": "Novozavidovskiy", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55000000", + "longitude": "36.43333000" + }, + { + "id": "100421", + "name": "Olenino", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.20917000", + "longitude": "33.48888000" + }, + { + "id": "100477", + "name": "Orsha", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.91196000", + "longitude": "36.22862000" + }, + { + "id": "100491", + "name": "Ostashkov", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.14667000", + "longitude": "33.10753000" + }, + { + "id": "100492", + "name": "Ostashkovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.16667000", + "longitude": "33.25000000" + }, + { + "id": "100593", + "name": "Peno", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.92624000", + "longitude": "32.74262000" + }, + { + "id": "100594", + "name": "Penovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.91667000", + "longitude": "32.75000000" + }, + { + "id": "100922", + "name": "Radchenko", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.68027000", + "longitude": "36.37178000" + }, + { + "id": "100937", + "name": "Rameshki", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.34390000", + "longitude": "36.04535000" + }, + { + "id": "100938", + "name": "Rameshkovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.33333000", + "longitude": "36.08333000" + }, + { + "id": "100958", + "name": "Redkino", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.64754000", + "longitude": "36.29674000" + }, + { + "id": "101060", + "name": "Rzhev", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.26241000", + "longitude": "34.32817000" + }, + { + "id": "101075", + "name": "Sakharovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.89949000", + "longitude": "36.05015000" + }, + { + "id": "101098", + "name": "Sandovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.46022000", + "longitude": "36.41277000" + }, + { + "id": "101099", + "name": "Sandovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.41667000", + "longitude": "36.41667000" + }, + { + "id": "101156", + "name": "Selishche", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.88794000", + "longitude": "33.26914000" + }, + { + "id": "101157", + "name": "Selizharovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.85188000", + "longitude": "33.44869000" + }, + { + "id": "101158", + "name": "Selizharovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83333000", + "longitude": "33.41667000" + }, + { + "id": "101476", + "name": "Sonkovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.77816000", + "longitude": "37.15707000" + }, + { + "id": "101537", + "name": "Spirovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.41905000", + "longitude": "34.97658000" + }, + { + "id": "101538", + "name": "Spirovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.41667000", + "longitude": "35.00000000" + }, + { + "id": "101554", + "name": "Stantsia Staritsa", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.53224000", + "longitude": "34.77287000" + }, + { + "id": "101567", + "name": "Staraya Toropa", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.28012000", + "longitude": "31.67018000" + }, + { + "id": "101569", + "name": "Staritsa", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50752000", + "longitude": "34.93544000" + }, + { + "id": "101570", + "name": "Staritskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50000000", + "longitude": "34.91667000" + }, + { + "id": "101899", + "name": "Toropets", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.49779000", + "longitude": "31.63528000" + }, + { + "id": "101900", + "name": "Toropetskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.58333000", + "longitude": "31.50000000" + }, + { + "id": "101901", + "name": "Torzhok", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.04360000", + "longitude": "34.96221000" + }, + { + "id": "101902", + "name": "Torzhokskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.08333000", + "longitude": "35.00000000" + }, + { + "id": "101988", + "name": "Tver", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.85836000", + "longitude": "35.90057000" + }, + { + "id": "102024", + "name": "Udomlya", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.87944000", + "longitude": "34.99250000" + }, + { + "id": "102199", + "name": "Vasil’yevskiy Mokh", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.01316000", + "longitude": "35.91897000" + }, + { + "id": "102216", + "name": "Velikooktyabr’skiy", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.43333000", + "longitude": "33.81595000" + }, + { + "id": "102293", + "name": "Ves’yegonsk", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.66398000", + "longitude": "37.26040000" + }, + { + "id": "102294", + "name": "Ves’yegonskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "58.66667000", + "longitude": "37.16667000" + }, + { + "id": "102429", + "name": "Vydropuzhsk", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.36470000", + "longitude": "34.84287000" + }, + { + "id": "102434", + "name": "Vypolzovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.87667000", + "longitude": "33.69861000" + }, + { + "id": "102441", + "name": "Vyshnevolotskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58333000", + "longitude": "34.58333000" + }, + { + "id": "102443", + "name": "Vyshniy Volochëk", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "57.59125000", + "longitude": "34.56453000" + }, + { + "id": "102646", + "name": "Zapadnaya Dvina", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25901000", + "longitude": "32.07454000" + }, + { + "id": "102672", + "name": "Zavidovo", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.53333000", + "longitude": "36.53333000" + }, + { + "id": "102713", + "name": "Zharkovskiy", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "55.84900000", + "longitude": "32.26970000" + }, + { + "id": "102773", + "name": "Zubtsov", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.17533000", + "longitude": "34.58935000" + }, + { + "id": "102774", + "name": "Zubtsovskiy Rayon", + "state_id": 1860, + "state_code": "TVE", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16667000", + "longitude": "34.58333000" + }, + { + "id": "97480", + "name": "Abalak", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "58.12861000", + "longitude": "68.59444000" + }, + { + "id": "97483", + "name": "Abatskoye", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.28748000", + "longitude": "70.45553000" + }, + { + "id": "97640", + "name": "Antipino", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "57.10679000", + "longitude": "65.75755000" + }, + { + "id": "97674", + "name": "Armizonskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "67.58333000" + }, + { + "id": "97675", + "name": "Armizonskoye", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.94611000", + "longitude": "67.67361000" + }, + { + "id": "97676", + "name": "Aromashevo", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.86018000", + "longitude": "68.63754000" + }, + { + "id": "97890", + "name": "Berdyuzhskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.83333000", + "longitude": "68.58333000" + }, + { + "id": "97960", + "name": "Bogandinskiy", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.89375000", + "longitude": "65.89378000" + }, + { + "id": "98041", + "name": "Borovskiy", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "57.04096000", + "longitude": "65.72018000" + }, + { + "id": "98188", + "name": "Chervishevo", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.94635000", + "longitude": "65.42782000" + }, + { + "id": "98512", + "name": "Golyshmanovo", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.39790000", + "longitude": "68.37279000" + }, + { + "id": "98513", + "name": "Golyshmanovskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41667000", + "longitude": "68.41667000" + }, + { + "id": "98695", + "name": "Irtyshskiy", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "58.33333000", + "longitude": "68.13333000" + }, + { + "id": "98699", + "name": "Isetskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50000000", + "longitude": "65.41667000" + }, + { + "id": "98700", + "name": "Isetskoye", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.48580000", + "longitude": "65.32260000" + }, + { + "id": "98704", + "name": "Ishim", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11281000", + "longitude": "69.49015000" + }, + { + "id": "98706", + "name": "Ishimskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16667000", + "longitude": "69.41667000" + }, + { + "id": "98929", + "name": "Kazanskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58333000", + "longitude": "69.41667000" + }, + { + "id": "98930", + "name": "Kazanskoye", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.64477000", + "longitude": "69.23500000" + }, + { + "id": "99858", + "name": "Melioratorov", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "57.21065000", + "longitude": "65.60774000" + }, + { + "id": "99862", + "name": "Mendeleyevo", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "58.16667000", + "longitude": "68.30000000" + }, + { + "id": "99978", + "name": "Moskovskiy", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "57.11108000", + "longitude": "65.42298000" + }, + { + "id": "100187", + "name": "Nizhnyaya Tavda", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "57.67306000", + "longitude": "66.17250000" + }, + { + "id": "100212", + "name": "Novaya Zaimka", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.48571000", + "longitude": "66.92413000" + }, + { + "id": "100293", + "name": "Novoseleznëvo", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.68207000", + "longitude": "69.20562000" + }, + { + "id": "100443", + "name": "Omutinskiy", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.47453000", + "longitude": "67.67087000" + }, + { + "id": "100444", + "name": "Omutinskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41667000", + "longitude": "67.58333000" + }, + { + "id": "100450", + "name": "Onokhino", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.92501000", + "longitude": "65.53940000" + }, + { + "id": "101395", + "name": "Sladkovo", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.52835000", + "longitude": "70.33854000" + }, + { + "id": "101396", + "name": "Sladkovskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66667000", + "longitude": "70.16667000" + }, + { + "id": "101661", + "name": "Sumkino", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "58.11083000", + "longitude": "68.32444000" + }, + { + "id": "101868", + "name": "Tobol’sk", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "58.19807000", + "longitude": "68.25457000" + }, + { + "id": "101981", + "name": "Turtas", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "58.93867000", + "longitude": "69.13393000" + }, + { + "id": "102005", + "name": "Tyumen", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "57.15222000", + "longitude": "65.52722000" + }, + { + "id": "102066", + "name": "Uporovo", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.31093000", + "longitude": "66.26926000" + }, + { + "id": "102067", + "name": "Uporovskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16667000", + "longitude": "66.33333000" + }, + { + "id": "102102", + "name": "Uspenka", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.80158000", + "longitude": "69.22702000" + }, + { + "id": "102157", + "name": "Uvat", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "59.14227000", + "longitude": "68.88881000" + }, + { + "id": "102172", + "name": "Vagay", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "57.93566000", + "longitude": "69.01953000" + }, + { + "id": "102173", + "name": "Vagayskiy Rayon", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58333000", + "longitude": "69.16667000" + }, + { + "id": "102304", + "name": "Vikulovo", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.81667000", + "longitude": "70.61069000" + }, + { + "id": "102316", + "name": "Vinzili", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.95938000", + "longitude": "65.77080000" + }, + { + "id": "102475", + "name": "Yalutorovsk", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.65358000", + "longitude": "66.30057000" + }, + { + "id": "102495", + "name": "Yarkovo", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "57.40386000", + "longitude": "67.06390000" + }, + { + "id": "102596", + "name": "Yurginskoye", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.81888000", + "longitude": "67.39211000" + }, + { + "id": "102675", + "name": "Zavodoukovsk", + "state_id": 1907, + "state_code": "TYU", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50420000", + "longitude": "66.55153000" + }, + { + "id": "97600", + "name": "Alnashi", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.18738000", + "longitude": "52.47919000" + }, + { + "id": "97778", + "name": "Balezino", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.97870000", + "longitude": "53.01380000" + }, + { + "id": "98254", + "name": "Debesy", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.65150000", + "longitude": "53.80890000" + }, + { + "id": "98411", + "name": "Fakel", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.63100000", + "longitude": "53.02510000" + }, + { + "id": "98495", + "name": "Glazov", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "58.13930000", + "longitude": "52.65800000" + }, + { + "id": "98575", + "name": "Grakhovo", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.05017000", + "longitude": "51.96758000" + }, + { + "id": "98634", + "name": "Igra", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.55490000", + "longitude": "53.05440000" + }, + { + "id": "98746", + "name": "Izhevsk", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.84976000", + "longitude": "53.20448000" + }, + { + "id": "98805", + "name": "Kama", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.30512000", + "longitude": "54.09361000" + }, + { + "id": "98806", + "name": "Kambarka", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.26660000", + "longitude": "54.20560000" + }, + { + "id": "98865", + "name": "Karakulino", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.01200000", + "longitude": "53.70669000" + }, + { + "id": "98866", + "name": "Karakulinskiy Rayon", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08333000", + "longitude": "53.66667000" + }, + { + "id": "98947", + "name": "Kez", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.89570000", + "longitude": "53.71320000" + }, + { + "id": "98990", + "name": "Khokhryaki", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.91561000", + "longitude": "53.32210000" + }, + { + "id": "99084", + "name": "Kiyasovo", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.34907000", + "longitude": "53.12439000" + }, + { + "id": "99085", + "name": "Kiyasovskiy Rayon", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.33333000", + "longitude": "53.16667000" + }, + { + "id": "99096", + "name": "Kizner", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.27489000", + "longitude": "51.50800000" + }, + { + "id": "99310", + "name": "Krasnogorskoye", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.70470000", + "longitude": "52.49990000" + }, + { + "id": "99751", + "name": "Malaya Purga", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55666000", + "longitude": "53.00434000" + }, + { + "id": "99764", + "name": "Malopurginskiy Rayon", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.55766000", + "longitude": "53.03476000" + }, + { + "id": "99987", + "name": "Mozhga", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.44469000", + "longitude": "52.22763000" + }, + { + "id": "100682", + "name": "Pirogovo", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.77959000", + "longitude": "53.14954000" + }, + { + "id": "100887", + "name": "Pudem", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "58.30470000", + "longitude": "52.16730000" + }, + { + "id": "100913", + "name": "Pychas", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50332000", + "longitude": "52.44088000" + }, + { + "id": "101112", + "name": "Sarapul", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.47633000", + "longitude": "53.79782000" + }, + { + "id": "101113", + "name": "Sarapul’skiy Rayon", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50000000", + "longitude": "53.75000000" + }, + { + "id": "101159", + "name": "Selty", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.31320000", + "longitude": "52.13450000" + }, + { + "id": "101261", + "name": "Sharkan", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.29885000", + "longitude": "53.87122000" + }, + { + "id": "101368", + "name": "Sigayevo", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.42163000", + "longitude": "53.77566000" + }, + { + "id": "101734", + "name": "Syumsi", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.11108000", + "longitude": "51.61494000" + }, + { + "id": "102153", + "name": "Uva", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.99081000", + "longitude": "52.18517000" + }, + { + "id": "102206", + "name": "Vavozh", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.77513000", + "longitude": "51.93098000" + }, + { + "id": "102403", + "name": "Votkinsk", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.04865000", + "longitude": "53.98717000" + }, + { + "id": "102489", + "name": "Yar", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "58.24580000", + "longitude": "52.10540000" + }, + { + "id": "102589", + "name": "Yukamenskoye", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "57.88780000", + "longitude": "52.24500000" + }, + { + "id": "102683", + "name": "Zav’yalovskiy Rayon", + "state_id": 1913, + "state_code": "UD", + "country_id": 182, + "country_code": "RU", + "latitude": "56.83333000", + "longitude": "53.08333000" + }, + { + "id": "97804", + "name": "Barysh", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.65533000", + "longitude": "47.11229000" + }, + { + "id": "97830", + "name": "Bazarnyy Syzgan", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.75117000", + "longitude": "46.75354000" + }, + { + "id": "98143", + "name": "Cherdaklinskiy Rayon", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.25000000", + "longitude": "48.83333000" + }, + { + "id": "98144", + "name": "Cherdakly", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.35940000", + "longitude": "48.84497000" + }, + { + "id": "98216", + "name": "Chufarovo", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.09630000", + "longitude": "47.33670000" + }, + { + "id": "98276", + "name": "Dimitrovgrad", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.21386000", + "longitude": "49.61838000" + }, + { + "id": "98500", + "name": "Glotovka", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.94906000", + "longitude": "46.70422000" + }, + { + "id": "98633", + "name": "Ignatovka", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.94787000", + "longitude": "47.65360000" + }, + { + "id": "98669", + "name": "Imeni Vladimira Il’icha Lenina", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.56422000", + "longitude": "46.98010000" + }, + { + "id": "98681", + "name": "Inza", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.85672000", + "longitude": "46.35622000" + }, + { + "id": "98703", + "name": "Isheyevka", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.42789000", + "longitude": "48.26675000" + }, + { + "id": "98753", + "name": "Izmaylovo", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.72114000", + "longitude": "47.24581000" + }, + { + "id": "98832", + "name": "Kanadey", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.16786000", + "longitude": "47.52644000" + }, + { + "id": "98886", + "name": "Karsun", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.19941000", + "longitude": "46.98270000" + }, + { + "id": "99362", + "name": "Krasnyy Gulyay", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.02821000", + "longitude": "48.33327000" + }, + { + "id": "99510", + "name": "Kuzovatovo", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.54681000", + "longitude": "47.68659000" + }, + { + "id": "99826", + "name": "Mayna", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.11350000", + "longitude": "47.62310000" + }, + { + "id": "99828", + "name": "Maynskiy Rayon", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.16667000", + "longitude": "47.66667000" + }, + { + "id": "99922", + "name": "Mirnyy", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.36607000", + "longitude": "48.72939000" + }, + { + "id": "100001", + "name": "Mullovka", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.20000000", + "longitude": "49.40000000" + }, + { + "id": "100134", + "name": "Nikolayevka", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.12570000", + "longitude": "47.20410000" + }, + { + "id": "100208", + "name": "Novaya Malykla", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.20000000", + "longitude": "49.95000000" + }, + { + "id": "100209", + "name": "Novaya Mayna", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.15000000", + "longitude": "49.75000000" + }, + { + "id": "100234", + "name": "Novocheremshansk", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.35714000", + "longitude": "50.16662000" + }, + { + "id": "100311", + "name": "Novospasskoye", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.14683000", + "longitude": "47.75138000" + }, + { + "id": "100321", + "name": "Novoul’yanovsk", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.14961000", + "longitude": "48.38907000" + }, + { + "id": "100568", + "name": "Pavlovka", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.68966000", + "longitude": "47.14046000" + }, + { + "id": "100581", + "name": "Pavlovskiy Rayon", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.66667000", + "longitude": "47.08333000" + }, + { + "id": "100923", + "name": "Radishchevo", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.85459000", + "longitude": "47.87644000" + }, + { + "id": "101171", + "name": "Sengiley", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.96222000", + "longitude": "48.79444000" + }, + { + "id": "101369", + "name": "Silikatnyy", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.98957000", + "longitude": "48.32749000" + }, + { + "id": "101559", + "name": "Staraya Kulatka", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.72778000", + "longitude": "47.61788000" + }, + { + "id": "101562", + "name": "Staraya Mayna", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.60417000", + "longitude": "48.93056000" + }, + { + "id": "101584", + "name": "Starokulatkinskiy Rayon", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "52.75000000", + "longitude": "47.50000000" + }, + { + "id": "101596", + "name": "Starotimoshkino", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.71908000", + "longitude": "47.53116000" + }, + { + "id": "101681", + "name": "Surskoye", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.48210000", + "longitude": "46.72140000" + }, + { + "id": "101829", + "name": "Teren’gul’skiy Rayon", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.75000000", + "longitude": "48.25000000" + }, + { + "id": "101947", + "name": "Tsil’na", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.59533000", + "longitude": "48.14140000" + }, + { + "id": "101948", + "name": "Tsil’ninskiy Rayon", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.58333000", + "longitude": "48.00000000" + }, + { + "id": "102051", + "name": "Ulyanovsk", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.32824000", + "longitude": "48.38657000" + }, + { + "id": "102052", + "name": "Ulyanovskiy Rayon", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.33528000", + "longitude": "48.01694000" + }, + { + "id": "102057", + "name": "Undory", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.60849000", + "longitude": "48.39276000" + }, + { + "id": "102290", + "name": "Veshkayma", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.04720000", + "longitude": "47.13000000" + }, + { + "id": "102519", + "name": "Yazykovo", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "54.29220000", + "longitude": "47.38910000" + }, + { + "id": "102710", + "name": "Zhadovka", + "state_id": 1856, + "state_code": "ULY", + "country_id": 182, + "country_code": "RU", + "latitude": "53.57464000", + "longitude": "46.94985000" + }, + { + "id": "97565", + "name": "Aleksandrov", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.39516000", + "longitude": "38.71216000" + }, + { + "id": "97572", + "name": "Aleksandrovskiy Rayon", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.41667000", + "longitude": "38.58333000" + }, + { + "id": "97629", + "name": "Andreyevo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.94650000", + "longitude": "41.15050000" + }, + { + "id": "97638", + "name": "Anopino", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.69809000", + "longitude": "40.66707000" + }, + { + "id": "97677", + "name": "Arsaki", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.38333000", + "longitude": "38.48333000" + }, + { + "id": "97770", + "name": "Balakirevo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50588000", + "longitude": "38.84324000" + }, + { + "id": "97817", + "name": "Bavleny", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.39448000", + "longitude": "39.56504000" + }, + { + "id": "97845", + "name": "Belaya Rechka", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.28491000", + "longitude": "39.40665000" + }, + { + "id": "97966", + "name": "Bogolyubovo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.19052000", + "longitude": "40.52313000" + }, + { + "id": "98297", + "name": "Dobryatino", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50550000", + "longitude": "41.31950000" + }, + { + "id": "98452", + "name": "Galitsy", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.17759000", + "longitude": "42.84588000" + }, + { + "id": "98508", + "name": "Golovino", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.96128000", + "longitude": "40.42511000" + }, + { + "id": "98564", + "name": "Gorokhovets", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.20152000", + "longitude": "42.69351000" + }, + { + "id": "98622", + "name": "Gus’-Khrustal’nyy", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.61113000", + "longitude": "40.65186000" + }, + { + "id": "98619", + "name": "Gusevskiy", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.66199000", + "longitude": "40.56267000" + }, + { + "id": "98670", + "name": "Imeni Vorovskogo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.72370000", + "longitude": "41.11900000" + }, + { + "id": "98728", + "name": "Ivanishchi", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.77417000", + "longitude": "40.42731000" + }, + { + "id": "98825", + "name": "Kameshkovo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.35305000", + "longitude": "41.00941000" + }, + { + "id": "98851", + "name": "Karabanovo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.31667000", + "longitude": "38.70000000" + }, + { + "id": "99034", + "name": "Kideksha", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.42381000", + "longitude": "40.52146000" + }, + { + "id": "99077", + "name": "Kirzhach", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.15273000", + "longitude": "38.85509000" + }, + { + "id": "99154", + "name": "Kol’chugino", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.29929000", + "longitude": "39.38304000" + }, + { + "id": "99155", + "name": "Kol’chuginskiy Rayon", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.25000000", + "longitude": "39.41667000" + }, + { + "id": "99163", + "name": "Kommunar", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11222000", + "longitude": "40.44666000" + }, + { + "id": "99237", + "name": "Kosterevo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.92990000", + "longitude": "39.61438000" + }, + { + "id": "99255", + "name": "Kovrov", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.35722000", + "longitude": "41.31917000" + }, + { + "id": "99278", + "name": "Krasnaya Gorbatka", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.87030000", + "longitude": "41.76410000" + }, + { + "id": "99359", + "name": "Krasnyy Bogatyr’", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.01453000", + "longitude": "41.12958000" + }, + { + "id": "99370", + "name": "Krasnyy Oktyabr’", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.11667000", + "longitude": "38.88333000" + }, + { + "id": "99466", + "name": "Kurlovo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.43252000", + "longitude": "40.48539000" + }, + { + "id": "99540", + "name": "Lakinsk", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.01931000", + "longitude": "39.94848000" + }, + { + "id": "99688", + "name": "Luknovo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.18045000", + "longitude": "42.03987000" + }, + { + "id": "99852", + "name": "Melekhovo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.27730000", + "longitude": "41.29346000" + }, + { + "id": "99853", + "name": "Melenki", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33430000", + "longitude": "41.62950000" + }, + { + "id": "99854", + "name": "Melenkovskiy Rayon", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.33333000", + "longitude": "41.50000000" + }, + { + "id": "99884", + "name": "Mezinovskiy", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.50420000", + "longitude": "40.35932000" + }, + { + "id": "99990", + "name": "Mstera", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.37889000", + "longitude": "41.92000000" + }, + { + "id": "100012", + "name": "Murom", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.57500000", + "longitude": "42.04260000" + }, + { + "id": "100013", + "name": "Muromskiy Rayon", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.58333000", + "longitude": "41.91667000" + }, + { + "id": "100015", + "name": "Muromtsevo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.93096000", + "longitude": "40.90738000" + }, + { + "id": "100142", + "name": "Nikologory", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.14130000", + "longitude": "41.99218000" + }, + { + "id": "100217", + "name": "Novki", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.36386000", + "longitude": "41.08655000" + }, + { + "id": "100330", + "name": "Novovyazniki", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.19750000", + "longitude": "42.17111000" + }, + { + "id": "100410", + "name": "Oktyabr’skiy", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.21887000", + "longitude": "42.04069000" + }, + { + "id": "100466", + "name": "Orgtrud", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.18320000", + "longitude": "40.61490000" + }, + { + "id": "100667", + "name": "Petushinskiy Rayon", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91667000", + "longitude": "40.00000000" + }, + { + "id": "100668", + "name": "Petushki", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.92639000", + "longitude": "39.46104000" + }, + { + "id": "100742", + "name": "Pokrov", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.91797000", + "longitude": "39.17242000" + }, + { + "id": "100929", + "name": "Raduzhnyy", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00380000", + "longitude": "40.33905000" + }, + { + "id": "101426", + "name": "Sobinka", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.98553000", + "longitude": "40.01111000" + }, + { + "id": "101427", + "name": "Sobinskiy Rayon", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.16667000", + "longitude": "40.00000000" + }, + { + "id": "101614", + "name": "Stavrovo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13311000", + "longitude": "40.01295000" + }, + { + "id": "101615", + "name": "Stepantsevo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13143000", + "longitude": "41.70320000" + }, + { + "id": "101635", + "name": "Strunino", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.37328000", + "longitude": "38.58321000" + }, + { + "id": "101644", + "name": "Sudogda", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.95394000", + "longitude": "40.86291000" + }, + { + "id": "101645", + "name": "Sudogodskiy Rayon", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.00000000", + "longitude": "41.00000000" + }, + { + "id": "101690", + "name": "Suzdal’", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.42274000", + "longitude": "40.44668000" + }, + { + "id": "101691", + "name": "Suzdal’skiy Rayon", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.08333000", + "longitude": "40.50000000" + }, + { + "id": "102084", + "name": "Urshel’skiy", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.67833000", + "longitude": "40.21692000" + }, + { + "id": "102214", + "name": "Velikodvorskiy", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.24996000", + "longitude": "40.66780000" + }, + { + "id": "102326", + "name": "Vladimir", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.13655000", + "longitude": "40.39658000" + }, + { + "id": "102386", + "name": "Vorsha", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.04910000", + "longitude": "40.07966000" + }, + { + "id": "102422", + "name": "Vyazniki", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.24057000", + "longitude": "42.15563000" + }, + { + "id": "102603", + "name": "Yur’yev-Pol’skiy", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.50339000", + "longitude": "39.67911000" + }, + { + "id": "102604", + "name": "Yur’yev-Pol’skiy Rayon", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "56.58333000", + "longitude": "39.58333000" + }, + { + "id": "102764", + "name": "Zolotkovo", + "state_id": 1881, + "state_code": "VLA", + "country_id": 182, + "country_code": "RU", + "latitude": "55.52810000", + "longitude": "41.10530000" + }, + { + "id": "97737", + "name": "Babayevo", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.39360000", + "longitude": "35.93710000" + }, + { + "id": "97738", + "name": "Babayevskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.50000000", + "longitude": "36.00000000" + }, + { + "id": "97873", + "name": "Belozërsk", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.02880000", + "longitude": "37.80840000" + }, + { + "id": "97874", + "name": "Belozërskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.91667000", + "longitude": "37.25000000" + }, + { + "id": "98108", + "name": "Chagoda", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.16400000", + "longitude": "35.32850000" + }, + { + "id": "98109", + "name": "Chagodoshchenskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.00000000", + "longitude": "35.41667000" + }, + { + "id": "98129", + "name": "Chebsara", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.20016000", + "longitude": "38.83556000" + }, + { + "id": "98156", + "name": "Cherepovets", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.13333000", + "longitude": "37.90000000" + }, + { + "id": "98157", + "name": "Cherepovetskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.33333000", + "longitude": "37.91667000" + }, + { + "id": "98419", + "name": "Ferapontovo", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.95425000", + "longitude": "38.56745000" + }, + { + "id": "98526", + "name": "Goritsy", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.86949000", + "longitude": "38.26016000" + }, + { + "id": "98599", + "name": "Gryazovets", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "58.88000000", + "longitude": "40.25250000" + }, + { + "id": "98600", + "name": "Gryazovetskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "58.91667000", + "longitude": "40.75000000" + }, + { + "id": "98661", + "name": "Imeni Babushkina", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.75727000", + "longitude": "43.12847000" + }, + { + "id": "98672", + "name": "Imeni Zhelyabova", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "58.95440000", + "longitude": "36.59560000" + }, + { + "id": "98768", + "name": "Kadnikov", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.50218000", + "longitude": "40.33803000" + }, + { + "id": "98771", + "name": "Kaduy", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.20000000", + "longitude": "37.15000000" + }, + { + "id": "98772", + "name": "Kaduyskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.33333000", + "longitude": "37.00000000" + }, + { + "id": "98966", + "name": "Kharovsk", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.96425000", + "longitude": "40.19121000" + }, + { + "id": "98967", + "name": "Kharovskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.08333000", + "longitude": "40.25000000" + }, + { + "id": "98989", + "name": "Khokhlovo", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.14923000", + "longitude": "37.39978000" + }, + { + "id": "99032", + "name": "Kichmengskiy Gorodok", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.98164000", + "longitude": "45.78543000" + }, + { + "id": "99033", + "name": "Kichmengsko-Gorodetskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.00000000", + "longitude": "46.00000000" + }, + { + "id": "99055", + "name": "Kirillov", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.86299000", + "longitude": "38.38128000" + }, + { + "id": "99056", + "name": "Kirillovskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.00000000", + "longitude": "38.58333000" + }, + { + "id": "99274", + "name": "Krasavino", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.96225000", + "longitude": "46.48321000" + }, + { + "id": "99504", + "name": "Kuzino", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.77665000", + "longitude": "38.31040000" + }, + { + "id": "99634", + "name": "Lipin Bor", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.26300000", + "longitude": "37.97850000" + }, + { + "id": "99882", + "name": "Mezhdurechenskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.25000000", + "longitude": "41.00000000" + }, + { + "id": "99949", + "name": "Molochnoye", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.29166000", + "longitude": "39.67868000" + }, + { + "id": "100026", + "name": "Myaksa", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "58.88890000", + "longitude": "38.19380000" + }, + { + "id": "100097", + "name": "Nelazskoye", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.18919000", + "longitude": "37.63963000" + }, + { + "id": "100143", + "name": "Nikol’sk", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.53531000", + "longitude": "45.45743000" + }, + { + "id": "100381", + "name": "Nyuksenitsa", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.41159000", + "longitude": "44.23309000" + }, + { + "id": "101142", + "name": "Sazonovo", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.09190000", + "longitude": "35.22680000" + }, + { + "id": "101288", + "name": "Sheksna", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.20998000", + "longitude": "38.51066000" + }, + { + "id": "101289", + "name": "Sheksninskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.25000000", + "longitude": "38.58333000" + }, + { + "id": "101363", + "name": "Shuyskoye", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.37356000", + "longitude": "41.03047000" + }, + { + "id": "101431", + "name": "Sokol", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.46167000", + "longitude": "40.12056000" + }, + { + "id": "101442", + "name": "Sokol’skiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.50000000", + "longitude": "40.33333000" + }, + { + "id": "101641", + "name": "Suda", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.15254000", + "longitude": "37.55820000" + }, + { + "id": "101717", + "name": "Syamzha", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.01577000", + "longitude": "41.06139000" + }, + { + "id": "101718", + "name": "Syamzhenskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.00000000", + "longitude": "41.25000000" + }, + { + "id": "101777", + "name": "Tarnogskiy Gorodok", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.49972000", + "longitude": "43.57611000" + }, + { + "id": "101778", + "name": "Tarnogskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.50000000", + "longitude": "43.50000000" + }, + { + "id": "101890", + "name": "Tonshalovo", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.19483000", + "longitude": "37.94746000" + }, + { + "id": "101907", + "name": "Tot’ma", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.97375000", + "longitude": "42.76487000" + }, + { + "id": "101905", + "name": "Totemskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.75000000", + "longitude": "42.50000000" + }, + { + "id": "102133", + "name": "Ust’-Kubinskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.91667000", + "longitude": "39.50000000" + }, + { + "id": "102145", + "name": "Ust’ye", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.63043000", + "longitude": "39.73596000" + }, + { + "id": "102111", + "name": "Ustyuzhenskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "58.83333000", + "longitude": "36.50000000" + }, + { + "id": "102112", + "name": "Ustyuzhna", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "58.83940000", + "longitude": "36.43210000" + }, + { + "id": "102212", + "name": "Velikiy Ustyug", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.76186000", + "longitude": "46.31352000" + }, + { + "id": "102218", + "name": "Velikoustyugskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.75000000", + "longitude": "46.00000000" + }, + { + "id": "102279", + "name": "Verkhovazh’ye", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.74717000", + "longitude": "42.04652000" + }, + { + "id": "102278", + "name": "Verkhovazhskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.58333000", + "longitude": "42.25000000" + }, + { + "id": "102337", + "name": "Vokhtoga", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "58.80949000", + "longitude": "41.06245000" + }, + { + "id": "102354", + "name": "Vologda", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.22390000", + "longitude": "39.88398000" + }, + { + "id": "102355", + "name": "Vologodskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "59.16667000", + "longitude": "39.75000000" + }, + { + "id": "102407", + "name": "Vozhega", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.47246000", + "longitude": "40.22134000" + }, + { + "id": "102453", + "name": "Vytegorskiy Rayon", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "61.00000000", + "longitude": "36.50000000" + }, + { + "id": "102454", + "name": "Vytegra", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "61.00636000", + "longitude": "36.44811000" + }, + { + "id": "102771", + "name": "Zubovo", + "state_id": 1874, + "state_code": "VLG", + "country_id": 182, + "country_code": "RU", + "latitude": "60.31810000", + "longitude": "36.97090000" + }, + { + "id": "97489", + "name": "Abramovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.18860000", + "longitude": "41.02020000" + }, + { + "id": "97633", + "name": "Anna", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.48420000", + "longitude": "40.42990000" + }, + { + "id": "97637", + "name": "Anninskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41667000", + "longitude": "40.25000000" + }, + { + "id": "97855", + "name": "Belogor’ye", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.49040000", + "longitude": "40.00950000" + }, + { + "id": "97955", + "name": "Bobrov", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.09611000", + "longitude": "40.03333000" + }, + { + "id": "97959", + "name": "Bobrovskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.25000000", + "longitude": "40.00000000" + }, + { + "id": "97983", + "name": "Boguchar", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "49.93577000", + "longitude": "40.54500000" + }, + { + "id": "98024", + "name": "Borisoglebsk", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.36713000", + "longitude": "42.08494000" + }, + { + "id": "98088", + "name": "Buturlinovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.82389000", + "longitude": "40.60917000" + }, + { + "id": "98089", + "name": "Buturlinovskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.83333000", + "longitude": "40.66667000" + }, + { + "id": "98251", + "name": "Davydovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.15781000", + "longitude": "39.42915000" + }, + { + "id": "98271", + "name": "Devitsa", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.63520000", + "longitude": "38.94500000" + }, + { + "id": "98324", + "name": "Drakino", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.13898000", + "longitude": "39.40215000" + }, + { + "id": "98401", + "name": "Ertil’", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.84056000", + "longitude": "40.80556000" + }, + { + "id": "98402", + "name": "Ertil’skiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.75000000", + "longitude": "40.75000000" + }, + { + "id": "98587", + "name": "Gribanovskiy", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.45792000", + "longitude": "41.97637000" + }, + { + "id": "98588", + "name": "Gribanovskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "42.00000000" + }, + { + "id": "98664", + "name": "Imeni Pervogo Maya", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.88997000", + "longitude": "39.59190000" + }, + { + "id": "98778", + "name": "Kalach", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.42580000", + "longitude": "41.02610000" + }, + { + "id": "98810", + "name": "Kamenka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.32230000", + "longitude": "42.76780000" + }, + { + "id": "98822", + "name": "Kamenskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.31667000", + "longitude": "42.76667000" + }, + { + "id": "98846", + "name": "Kantemirovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "49.70887000", + "longitude": "39.85922000" + }, + { + "id": "98894", + "name": "Kashirskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41667000", + "longitude": "39.61667000" + }, + { + "id": "98895", + "name": "Kashirskoye", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.41945000", + "longitude": "39.61248000" + }, + { + "id": "99014", + "name": "Khrenovoye", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.12000000", + "longitude": "40.28889000" + }, + { + "id": "99139", + "name": "Kolodeznyy", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.33333000", + "longitude": "39.18333000" + }, + { + "id": "99217", + "name": "Korotoyak", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.98665000", + "longitude": "39.17677000" + }, + { + "id": "99267", + "name": "Kozlovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.86222000", + "longitude": "40.45556000" + }, + { + "id": "99327", + "name": "Krasnolesnyy", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.88072000", + "longitude": "39.58772000" + }, + { + "id": "99546", + "name": "Latnaya", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.65860000", + "longitude": "38.90110000" + }, + { + "id": "99637", + "name": "Liski", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.98405000", + "longitude": "39.51545000" + }, + { + "id": "99638", + "name": "Liskinskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.91667000", + "longitude": "39.50000000" + }, + { + "id": "99665", + "name": "Losevo", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.67667000", + "longitude": "40.04500000" + }, + { + "id": "99811", + "name": "Maslovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.55346000", + "longitude": "39.23573000" + }, + { + "id": "99932", + "name": "Mitrofanovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "49.97083000", + "longitude": "39.69389000" + }, + { + "id": "100151", + "name": "Nizhnedevitsk", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.54190000", + "longitude": "38.36570000" + }, + { + "id": "100152", + "name": "Nizhnedevitskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "38.41667000" + }, + { + "id": "100168", + "name": "Nizhniy Kislyay", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.84970000", + "longitude": "40.17190000" + }, + { + "id": "100172", + "name": "Nizhniy Mamon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.19370000", + "longitude": "40.50830000" + }, + { + "id": "100202", + "name": "Novaya Chigla", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.22333000", + "longitude": "40.47806000" + }, + { + "id": "100211", + "name": "Novaya Usman’", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.64177000", + "longitude": "39.40863000" + }, + { + "id": "100249", + "name": "Novokhopërsk", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.09690000", + "longitude": "41.62520000" + }, + { + "id": "100248", + "name": "Novokhoperskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.08333000", + "longitude": "41.58333000" + }, + { + "id": "100323", + "name": "Novousmanskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.58333000", + "longitude": "39.41667000" + }, + { + "id": "100329", + "name": "Novovoronezh", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.30719000", + "longitude": "39.21732000" + }, + { + "id": "100336", + "name": "Novozhivotinnoye", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.88770000", + "longitude": "39.16894000" + }, + { + "id": "100437", + "name": "Ol’khovatka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.28308000", + "longitude": "39.28715000" + }, + { + "id": "100438", + "name": "Ol’khovatskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.25000000", + "longitude": "39.25000000" + }, + { + "id": "100472", + "name": "Orlovo", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.75397000", + "longitude": "39.58731000" + }, + { + "id": "100495", + "name": "Ostrogozhsk", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.86640000", + "longitude": "39.07561000" + }, + { + "id": "100535", + "name": "Panino", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.64670000", + "longitude": "40.13460000" + }, + { + "id": "100536", + "name": "Paninskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.66667000", + "longitude": "40.16667000" + }, + { + "id": "100572", + "name": "Pavlovsk", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.45778000", + "longitude": "40.10806000" + }, + { + "id": "100580", + "name": "Pavlovskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.41667000", + "longitude": "40.16667000" + }, + { + "id": "100598", + "name": "Pereleshino", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.73760000", + "longitude": "40.13880000" + }, + { + "id": "100599", + "name": "Pereleshinskiy", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.71480000", + "longitude": "40.19530000" + }, + { + "id": "100713", + "name": "Podgorenskiy", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.40498000", + "longitude": "39.64295000" + }, + { + "id": "100714", + "name": "Podgorenskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.50000000", + "longitude": "39.58333000" + }, + { + "id": "100716", + "name": "Podgornoye", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.73504000", + "longitude": "39.14961000" + }, + { + "id": "100719", + "name": "Podkletnoye", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.58993000", + "longitude": "39.46230000" + }, + { + "id": "100794", + "name": "Povorino", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.19450000", + "longitude": "42.24570000" + }, + { + "id": "100795", + "name": "Povorinskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.18333000", + "longitude": "42.20000000" + }, + { + "id": "100818", + "name": "Pridonskoy", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.68406000", + "longitude": "39.07270000" + }, + { + "id": "100940", + "name": "Ramon’", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.91569000", + "longitude": "39.33609000" + }, + { + "id": "100939", + "name": "Ramonskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.91667000", + "longitude": "39.33333000" + }, + { + "id": "100963", + "name": "Rep’yevskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.16667000", + "longitude": "38.66667000" + }, + { + "id": "101003", + "name": "Rossoshanskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.16667000", + "longitude": "39.58333000" + }, + { + "id": "101004", + "name": "Rossosh’", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.12090000", + "longitude": "38.51160000" + }, + { + "id": "101064", + "name": "Sadovoye", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.53111000", + "longitude": "40.50194000" + }, + { + "id": "101165", + "name": "Semiluki", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.68525000", + "longitude": "39.02787000" + }, + { + "id": "101166", + "name": "Semilukskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.66667000", + "longitude": "39.00000000" + }, + { + "id": "101316", + "name": "Shilovo", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.54583000", + "longitude": "39.08917000" + }, + { + "id": "101407", + "name": "Sloboda", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.14210000", + "longitude": "40.30210000" + }, + { + "id": "101475", + "name": "Somovo", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.74098000", + "longitude": "39.36655000" + }, + { + "id": "101546", + "name": "Sredniy Ikorets", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.06749000", + "longitude": "39.75838000" + }, + { + "id": "101625", + "name": "Strelitsa", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.60830000", + "longitude": "38.91020000" + }, + { + "id": "101755", + "name": "Talovaya", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.11444000", + "longitude": "40.73000000" + }, + { + "id": "101834", + "name": "Ternovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.67803000", + "longitude": "41.63750000" + }, + { + "id": "101835", + "name": "Ternovskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.66667000", + "longitude": "41.25000000" + }, + { + "id": "102039", + "name": "Uglyanets", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.81908000", + "longitude": "39.59606000" + }, + { + "id": "102093", + "name": "Uryv-Pokrovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.11590000", + "longitude": "39.16394000" + }, + { + "id": "102256", + "name": "Verkhniy Mamon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.16350000", + "longitude": "40.38320000" + }, + { + "id": "102267", + "name": "Verkhnyaya Khava", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.84045000", + "longitude": "39.94134000" + }, + { + "id": "102273", + "name": "Verkhnyaya Tishanka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.32389000", + "longitude": "40.53278000" + }, + { + "id": "102368", + "name": "Volya", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.76510000", + "longitude": "39.54040000" + }, + { + "id": "102378", + "name": "Vorob’yevskiy Rayon", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.65000000", + "longitude": "40.93333000" + }, + { + "id": "102380", + "name": "Voronezh", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.67204000", + "longitude": "39.18430000" + }, + { + "id": "102381", + "name": "Vorontsovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.61320000", + "longitude": "40.35490000" + }, + { + "id": "102535", + "name": "Yelan’-Koleno", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.15230000", + "longitude": "41.23060000" + }, + { + "id": "102536", + "name": "Yelan’-Kolenovskiy", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.16320000", + "longitude": "41.15100000" + }, + { + "id": "102625", + "name": "Zabolotovka", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "50.27799000", + "longitude": "39.31439000" + }, + { + "id": "102705", + "name": "Zemlyansk", + "state_id": 1906, + "state_code": "VOR", + "country_id": 182, + "country_code": "RU", + "latitude": "51.90410000", + "longitude": "38.73340000" + }, + { + "id": "97540", + "name": "Aksarka", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "66.56056000", + "longitude": "67.79750000" + }, + { + "id": "98604", + "name": "Gubkinskiy", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "64.43400000", + "longitude": "76.50261000" + }, + { + "id": "98968", + "name": "Kharp", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "66.80139000", + "longitude": "65.80806000" + }, + { + "id": "99216", + "name": "Korotchaevo", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "65.91028000", + "longitude": "78.20917000" + }, + { + "id": "99531", + "name": "Labytnangi", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "66.65722000", + "longitude": "66.41833000" + }, + { + "id": "100007", + "name": "Muravlenko", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "63.78977000", + "longitude": "74.52301000" + }, + { + "id": "100025", + "name": "Muzhi", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "65.40030000", + "longitude": "64.70278000" + }, + { + "id": "100029", + "name": "Mys-Kamennyy", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "68.45972000", + "longitude": "73.59028000" + }, + { + "id": "100043", + "name": "Nadym", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "65.53333000", + "longitude": "72.51667000" + }, + { + "id": "100044", + "name": "Nadymskiy Rayon", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "66.00000000", + "longitude": "73.00000000" + }, + { + "id": "100352", + "name": "Novyy Urengoy", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "66.08333000", + "longitude": "76.63333000" + }, + { + "id": "100364", + "name": "Noyabrsk", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "63.19309000", + "longitude": "75.43728000" + }, + { + "id": "100378", + "name": "Nyda", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "66.62472000", + "longitude": "72.92278000" + }, + { + "id": "100534", + "name": "Pangody", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "65.85002000", + "longitude": "74.48593000" + }, + { + "id": "100844", + "name": "Priural’skiy Rayon", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "66.66667000", + "longitude": "67.66667000" + }, + { + "id": "100892", + "name": "Purovskiy Rayon", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "64.66667000", + "longitude": "78.00000000" + }, + { + "id": "100893", + "name": "Purpe", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "64.48028000", + "longitude": "76.68972000" + }, + { + "id": "101079", + "name": "Salekhard", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "66.53000000", + "longitude": "66.60194000" + }, + { + "id": "101354", + "name": "Shuryshkarskiy Rayon", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "65.33333000", + "longitude": "64.00000000" + }, + { + "id": "101606", + "name": "Staryy Nadym", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "65.61182000", + "longitude": "72.68417000" + }, + { + "id": "101776", + "name": "Tarko-Sale", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "64.91611000", + "longitude": "77.77457000" + }, + { + "id": "101807", + "name": "Tazovskiy", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "67.47150000", + "longitude": "78.71620000" + }, + { + "id": "102075", + "name": "Urengoy", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "65.96550000", + "longitude": "78.36929000" + }, + { + "id": "102490", + "name": "Yar-Sale", + "state_id": 1847, + "state_code": "YAN", + "country_id": 182, + "country_code": "RU", + "latitude": "66.86540000", + "longitude": "70.83784000" + }, + { + "id": "97892", + "name": "Berendeyevo", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.60078000", + "longitude": "39.02173000" + }, + { + "id": "98006", + "name": "Bol’shesel’skiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.66667000", + "longitude": "39.00000000" + }, + { + "id": "98016", + "name": "Bol’shoye Selo", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.71774000", + "longitude": "38.93341000" + }, + { + "id": "98025", + "name": "Borisoglebskiy", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.25860000", + "longitude": "39.15080000" + }, + { + "id": "98026", + "name": "Borisoglebskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.33333000", + "longitude": "39.00000000" + }, + { + "id": "98033", + "name": "Borok", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.06532000", + "longitude": "38.23620000" + }, + { + "id": "98055", + "name": "Breytovo", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.29925000", + "longitude": "37.86172000" + }, + { + "id": "98056", + "name": "Breytovskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.25000000", + "longitude": "37.75000000" + }, + { + "id": "98084", + "name": "Burmakino", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.41663000", + "longitude": "40.23687000" + }, + { + "id": "98241", + "name": "Danilov", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.19080000", + "longitude": "40.17171000" + }, + { + "id": "98242", + "name": "Danilovskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.16667000", + "longitude": "40.08333000" + }, + { + "id": "98336", + "name": "Dubki", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.30000000", + "longitude": "40.25000000" + }, + { + "id": "98462", + "name": "Gavrilov-Yam", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.30185000", + "longitude": "39.85331000" + }, + { + "id": "98463", + "name": "Gavrilov-Yamskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.33333000", + "longitude": "39.75000000" + }, + { + "id": "98709", + "name": "Ishnya", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.19070000", + "longitude": "39.36004000" + }, + { + "id": "99192", + "name": "Konstantinovskiy", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.83005000", + "longitude": "39.58989000" + }, + { + "id": "99372", + "name": "Krasnyy Profintern", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.74459000", + "longitude": "40.43501000" + }, + { + "id": "99384", + "name": "Krasnyye Tkachi", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.49259000", + "longitude": "39.75629000" + }, + { + "id": "99427", + "name": "Kukoboy", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.70089000", + "longitude": "39.91427000" + }, + { + "id": "99455", + "name": "Kurba", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.56097000", + "longitude": "39.49810000" + }, + { + "id": "99611", + "name": "Levashevo", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.64451000", + "longitude": "40.52401000" + }, + { + "id": "99715", + "name": "Lyubim", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.36250000", + "longitude": "40.68433000" + }, + { + "id": "99716", + "name": "Lyubimskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.33333000", + "longitude": "40.75000000" + }, + { + "id": "100030", + "name": "Myshkin", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.78973000", + "longitude": "38.45448000" + }, + { + "id": "100031", + "name": "Myshkinskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.83333000", + "longitude": "38.41667000" + }, + { + "id": "100090", + "name": "Nekouzskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00000000", + "longitude": "38.00000000" + }, + { + "id": "100095", + "name": "Nekrasovskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.66667000", + "longitude": "40.41667000" + }, + { + "id": "100096", + "name": "Nekrasovskoye", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.67663000", + "longitude": "40.36567000" + }, + { + "id": "100347", + "name": "Novyy Nekouz", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.90286000", + "longitude": "38.07004000" + }, + { + "id": "100604", + "name": "Pereslavl’-Zalesskiy", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.73934000", + "longitude": "38.85626000" + }, + { + "id": "100605", + "name": "Pereslavskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "56.75000000", + "longitude": "38.83333000" + }, + { + "id": "100622", + "name": "Pervomayskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.66667000", + "longitude": "39.75000000" + }, + { + "id": "100636", + "name": "Pesochnoye", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00597000", + "longitude": "39.17717000" + }, + { + "id": "100659", + "name": "Petrovsk", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.01039000", + "longitude": "39.26928000" + }, + { + "id": "100774", + "name": "Porech’ye-Rybnoye", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.09805000", + "longitude": "39.38354000" + }, + { + "id": "100785", + "name": "Poshekhon’ye", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.49928000", + "longitude": "39.13531000" + }, + { + "id": "100784", + "name": "Poshekhonskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.66667000", + "longitude": "39.08333000" + }, + { + "id": "100807", + "name": "Prechistoye", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.42068000", + "longitude": "40.34017000" + }, + { + "id": "101006", + "name": "Rostov", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.19140000", + "longitude": "39.41394000" + }, + { + "id": "101009", + "name": "Rostovskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.16667000", + "longitude": "39.50000000" + }, + { + "id": "101048", + "name": "Rybinsk", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.04460000", + "longitude": "38.84259000" + }, + { + "id": "101049", + "name": "Rybinskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.00000000", + "longitude": "39.00000000" + }, + { + "id": "101162", + "name": "Semibratovo", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.30461000", + "longitude": "39.53688000" + }, + { + "id": "101646", + "name": "Sudoverf’", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "58.11696000", + "longitude": "38.64175000" + }, + { + "id": "101971", + "name": "Tunoshna", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.54589000", + "longitude": "40.12543000" + }, + { + "id": "101984", + "name": "Tutayev", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.88529000", + "longitude": "39.54060000" + }, + { + "id": "101985", + "name": "Tutayevskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.91667000", + "longitude": "39.58333000" + }, + { + "id": "102034", + "name": "Uglich", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.52750000", + "longitude": "38.33167000" + }, + { + "id": "102035", + "name": "Uglichskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.50000000", + "longitude": "38.41667000" + }, + { + "id": "102342", + "name": "Volga", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.95157000", + "longitude": "38.38785000" + }, + { + "id": "102499", + "name": "Yaroslavl", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.62987000", + "longitude": "39.87368000" + }, + { + "id": "102503", + "name": "Yaroslavskiy Rayon", + "state_id": 1851, + "state_code": "YAR", + "country_id": 182, + "country_code": "RU", + "latitude": "57.58333000", + "longitude": "40.00000000" + }, + { + "id": "97518", + "name": "Aginskoye", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.10000000", + "longitude": "114.53000000" + }, + { + "id": "97543", + "name": "Aksha", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.28139000", + "longitude": "113.28667000" + }, + { + "id": "97544", + "name": "Akshinskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.25000000", + "longitude": "113.25000000" + }, + { + "id": "97567", + "name": "Aleksandrovo-Zavodskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.91667000", + "longitude": "117.95000000" + }, + { + "id": "97573", + "name": "Aleksandrovskiy Zavod", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.92525000", + "longitude": "117.93773000" + }, + { + "id": "97611", + "name": "Amazar", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "53.86033000", + "longitude": "120.87925000" + }, + { + "id": "97707", + "name": "Atamanovka", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.93333000", + "longitude": "113.63333000" + }, + { + "id": "97750", + "name": "Bada", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.39100000", + "longitude": "109.86145000" + }, + { + "id": "97776", + "name": "Baley", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.58166000", + "longitude": "116.63395000" + }, + { + "id": "97777", + "name": "Baleyskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.50000000", + "longitude": "117.00000000" + }, + { + "id": "97785", + "name": "Balyaga", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.15293000", + "longitude": "108.92767000" + }, + { + "id": "98001", + "name": "Bol’shaya Tura", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.61642000", + "longitude": "114.11242000" + }, + { + "id": "98044", + "name": "Borzinskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.16667000", + "longitude": "117.33333000" + }, + { + "id": "98046", + "name": "Borzya", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.38333000", + "longitude": "116.51667000" + }, + { + "id": "98073", + "name": "Bukachacha", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.98333000", + "longitude": "116.91667000" + }, + { + "id": "98118", + "name": "Chara", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "56.90639000", + "longitude": "118.26306000" + }, + { + "id": "98180", + "name": "Chernyshevsk", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.52209000", + "longitude": "117.01712000" + }, + { + "id": "98204", + "name": "Chita", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.03171000", + "longitude": "113.50087000" + }, + { + "id": "98205", + "name": "Chitinskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.00000000", + "longitude": "113.50024000" + }, + { + "id": "98246", + "name": "Darasun", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.65940000", + "longitude": "113.97515000" + }, + { + "id": "98248", + "name": "Dauriya", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "49.93333000", + "longitude": "116.86667000" + }, + { + "id": "98306", + "name": "Domna", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.89712000", + "longitude": "113.15730000" + }, + { + "id": "98326", + "name": "Drovyanaya", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.57620000", + "longitude": "113.04078000" + }, + { + "id": "98353", + "name": "Dul’durga", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.67611000", + "longitude": "113.59306000" + }, + { + "id": "98468", + "name": "Gazimuro-Zavodskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.55000000", + "longitude": "118.36667000" + }, + { + "id": "98469", + "name": "Gazimurskiy Zavod", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.55352000", + "longitude": "118.34460000" + }, + { + "id": "98767", + "name": "Kadaya", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.93254000", + "longitude": "119.29468000" + }, + { + "id": "98780", + "name": "Kalanguy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.01667000", + "longitude": "116.51667000" + }, + { + "id": "98783", + "name": "Kalga", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.92538000", + "longitude": "118.89958000" + }, + { + "id": "98889", + "name": "Karymskoye", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.61667000", + "longitude": "114.35000000" + }, + { + "id": "98979", + "name": "Khilok", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.36777000", + "longitude": "110.46804000" + }, + { + "id": "98991", + "name": "Kholbon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.88333000", + "longitude": "116.25000000" + }, + { + "id": "99100", + "name": "Klichka", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.44570000", + "longitude": "117.99600000" + }, + { + "id": "99110", + "name": "Klyuchevskiy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "53.53360000", + "longitude": "119.45269000" + }, + { + "id": "99135", + "name": "Kokuy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.20634000", + "longitude": "117.55412000" + }, + { + "id": "99320", + "name": "Krasnokamensk", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.09790000", + "longitude": "118.03690000" + }, + { + "id": "99361", + "name": "Krasnyy Chikoy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.36321000", + "longitude": "108.75445000" + }, + { + "id": "99412", + "name": "Kuanda", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "56.31611000", + "longitude": "116.08056000" + }, + { + "id": "99468", + "name": "Kurort-Darasun", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.19905000", + "longitude": "113.71599000" + }, + { + "id": "99518", + "name": "Kyra", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "49.57903000", + "longitude": "111.97638000" + }, + { + "id": "99745", + "name": "Makkaveyevo", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.75325000", + "longitude": "113.94540000" + }, + { + "id": "99939", + "name": "Mogocha", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "53.73417000", + "longitude": "119.76515000" + }, + { + "id": "99940", + "name": "Mogoytuy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.28333000", + "longitude": "114.91667000" + }, + { + "id": "99941", + "name": "Mogzon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.74060000", + "longitude": "111.96555000" + }, + { + "id": "100104", + "name": "Nerchinsk", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.98333000", + "longitude": "116.58333000" + }, + { + "id": "100105", + "name": "Nerchinskiy Zavod", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.30829000", + "longitude": "119.61597000" + }, + { + "id": "100106", + "name": "Nerchinsko-Zavodskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.31667000", + "longitude": "119.60000000" + }, + { + "id": "100176", + "name": "Nizhniy Tsasuchey", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.51667000", + "longitude": "115.13333000" + }, + { + "id": "100201", + "name": "Novaya Chara", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "56.81639000", + "longitude": "118.29861000" + }, + { + "id": "100253", + "name": "Novokruchininskiy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.78360000", + "longitude": "113.77591000" + }, + { + "id": "100273", + "name": "Novoorlovsk", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.07549000", + "longitude": "114.72610000" + }, + { + "id": "100277", + "name": "Novopavlovka", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.21724000", + "longitude": "109.21305000" + }, + { + "id": "100425", + "name": "Olovyannaya", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.95000000", + "longitude": "115.56667000" + }, + { + "id": "100426", + "name": "Olovyanninskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.00000000", + "longitude": "116.16667000" + }, + { + "id": "100474", + "name": "Orlovskiy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.03333000", + "longitude": "114.83333000" + }, + { + "id": "100621", + "name": "Pervomayskiy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.67013000", + "longitude": "115.62543000" + }, + { + "id": "100660", + "name": "Petrovsk-Zabaykal’skiy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.27530000", + "longitude": "108.84301000" + }, + { + "id": "100814", + "name": "Priargunsk", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.36910000", + "longitude": "119.10120000" + }, + { + "id": "100815", + "name": "Priargunskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "50.75000000", + "longitude": "118.50000000" + }, + { + "id": "100823", + "name": "Priiskovyy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.93333000", + "longitude": "116.63333000" + }, + { + "id": "101293", + "name": "Shelopugino", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.65286000", + "longitude": "117.56303000" + }, + { + "id": "101313", + "name": "Shilka", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.85000000", + "longitude": "116.03333000" + }, + { + "id": "101314", + "name": "Shilkinskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.00000000", + "longitude": "115.66667000" + }, + { + "id": "101414", + "name": "Smolenka", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.13523000", + "longitude": "113.49740000" + }, + { + "id": "101548", + "name": "Sretensk", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.24780000", + "longitude": "117.70835000" + }, + { + "id": "101549", + "name": "Sretenskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.33333000", + "longitude": "117.83333000" + }, + { + "id": "101771", + "name": "Tarbagatay", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.17559000", + "longitude": "109.09484000" + }, + { + "id": "102045", + "name": "Uletovskiy Rayon", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.00000000", + "longitude": "112.00000000" + }, + { + "id": "102046", + "name": "Ulety", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.35589000", + "longitude": "112.48430000" + }, + { + "id": "102128", + "name": "Ust’-Karsk", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.70206000", + "longitude": "118.80163000" + }, + { + "id": "102235", + "name": "Verkh-Usugli", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.70000000", + "longitude": "115.16667000" + }, + { + "id": "102285", + "name": "Vershino-Darasunskiy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.36604000", + "longitude": "115.52661000" + }, + { + "id": "102286", + "name": "Vershino-Shakhtaminskiy", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "51.30024000", + "longitude": "117.88762000" + }, + { + "id": "102624", + "name": "Zabaykal’sk", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "49.65130000", + "longitude": "117.32557000" + }, + { + "id": "102733", + "name": "Zhireken", + "state_id": 1904, + "state_code": "ZAB", + "country_id": 182, + "country_code": "RU", + "latitude": "52.82657000", + "longitude": "117.30725000" + }, + { + "id": "102798", + "name": "Kibungo", + "state_id": 261, + "state_code": "02", + "country_id": 183, + "country_code": "RW", + "latitude": "-2.15970000", + "longitude": "30.54270000" + }, + { + "id": "102803", + "name": "Rwamagana", + "state_id": 261, + "state_code": "02", + "country_id": 183, + "country_code": "RW", + "latitude": "-1.94870000", + "longitude": "30.43470000" + }, + { + "id": "102800", + "name": "Kigali", + "state_id": 262, + "state_code": "01", + "country_id": 183, + "country_code": "RW", + "latitude": "-1.94995000", + "longitude": "30.05885000" + }, + { + "id": "102793", + "name": "Byumba", + "state_id": 263, + "state_code": "03", + "country_id": 183, + "country_code": "RW", + "latitude": "-1.57630000", + "longitude": "30.06750000" + }, + { + "id": "102801", + "name": "Musanze", + "state_id": 263, + "state_code": "03", + "country_id": 183, + "country_code": "RW", + "latitude": "-1.49984000", + "longitude": "29.63497000" + }, + { + "id": "102792", + "name": "Butare", + "state_id": 259, + "state_code": "05", + "country_id": 183, + "country_code": "RW", + "latitude": "-2.59667000", + "longitude": "29.73944000" + }, + { + "id": "102795", + "name": "Eglise Catholique, Centrale GIKO", + "state_id": 259, + "state_code": "05", + "country_id": 183, + "country_code": "RW", + "latitude": "-1.93653000", + "longitude": "29.80610000" + }, + { + "id": "102797", + "name": "Gitarama", + "state_id": 259, + "state_code": "05", + "country_id": 183, + "country_code": "RW", + "latitude": "-2.07444000", + "longitude": "29.75667000" + }, + { + "id": "102802", + "name": "Nzega", + "state_id": 259, + "state_code": "05", + "country_id": 183, + "country_code": "RW", + "latitude": "-2.47900000", + "longitude": "29.55640000" + }, + { + "id": "102794", + "name": "Cyangugu", + "state_id": 260, + "state_code": "04", + "country_id": 183, + "country_code": "RW", + "latitude": "-2.48460000", + "longitude": "28.90750000" + }, + { + "id": "102796", + "name": "Gisenyi", + "state_id": 260, + "state_code": "04", + "country_id": 183, + "country_code": "RW", + "latitude": "-1.70278000", + "longitude": "29.25639000" + }, + { + "id": "102799", + "name": "Kibuye", + "state_id": 260, + "state_code": "04", + "country_id": 183, + "country_code": "RW", + "latitude": "-2.06028000", + "longitude": "29.34778000" + }, + { + "id": "65176", + "name": "Nicola Town", + "state_id": 3833, + "state_code": "01", + "country_id": 185, + "country_code": "KN", + "latitude": "17.37956000", + "longitude": "-62.75318000" + }, + { + "id": "65178", + "name": "Sandy Point Town", + "state_id": 3836, + "state_code": "02", + "country_id": 185, + "country_code": "KN", + "latitude": "17.35908000", + "longitude": "-62.84858000" + }, + { + "id": "65172", + "name": "Market Shop", + "state_id": 3837, + "state_code": "04", + "country_id": 185, + "country_code": "KN", + "latitude": "17.13218000", + "longitude": "-62.57267000" + }, + { + "id": "65175", + "name": "Newcastle", + "state_id": 3835, + "state_code": "05", + "country_id": 185, + "country_code": "KN", + "latitude": "17.20000000", + "longitude": "-62.58333000" + }, + { + "id": "65170", + "name": "Dieppe Bay Town", + "state_id": 3845, + "state_code": "06", + "country_id": 185, + "country_code": "KN", + "latitude": "17.41473000", + "longitude": "-62.81390000" + }, + { + "id": "65171", + "name": "Fig Tree", + "state_id": 3840, + "state_code": "07", + "country_id": 185, + "country_code": "KN", + "latitude": "17.12623000", + "longitude": "-62.60265000" + }, + { + "id": "65167", + "name": "Cayon", + "state_id": 3844, + "state_code": "08", + "country_id": 185, + "country_code": "KN", + "latitude": "17.35000000", + "longitude": "-62.73333000" + }, + { + "id": "65177", + "name": "Saint Paul’s", + "state_id": 3834, + "state_code": "09", + "country_id": 185, + "country_code": "KN", + "latitude": "17.40605000", + "longitude": "-62.83562000" + }, + { + "id": "65168", + "name": "Charlestown", + "state_id": 3838, + "state_code": "10", + "country_id": 185, + "country_code": "KN", + "latitude": "17.13333000", + "longitude": "-62.61667000" + }, + { + "id": "65174", + "name": "Monkey Hill", + "state_id": 3831, + "state_code": "11", + "country_id": 185, + "country_code": "KN", + "latitude": "17.32327000", + "longitude": "-62.72914000" + }, + { + "id": "65169", + "name": "Cotton Ground", + "state_id": 3839, + "state_code": "12", + "country_id": 185, + "country_code": "KN", + "latitude": "17.16667000", + "longitude": "-62.61667000" + }, + { + "id": "65173", + "name": "Middle Island", + "state_id": 3842, + "state_code": "13", + "country_id": 185, + "country_code": "KN", + "latitude": "17.32590000", + "longitude": "-62.81055000" + }, + { + "id": "65179", + "name": "Trinity", + "state_id": 3843, + "state_code": "15", + "country_id": 185, + "country_code": "KN", + "latitude": "17.30037000", + "longitude": "-62.77584000" + }, + { + "id": "65965", + "name": "Anse La Raye", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94619000", + "longitude": "-61.03879000" + }, + { + "id": "65969", + "name": "Au Tabor", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94540000", + "longitude": "-61.04112000" + }, + { + "id": "65970", + "name": "Au Tabor Hill", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94457000", + "longitude": "-61.03559000" + }, + { + "id": "66019", + "name": "Bois D'Inde", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94148000", + "longitude": "-61.00966000" + }, + { + "id": "66037", + "name": "Caico\/Millet", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91948000", + "longitude": "-60.99264000" + }, + { + "id": "66040", + "name": "Canaries", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.90224000", + "longitude": "-61.06459000" + }, + { + "id": "66064", + "name": "Champen Estate", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93575000", + "longitude": "-61.02991000" + }, + { + "id": "66112", + "name": "Derriere Lagoon", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94168000", + "longitude": "-61.01891000" + }, + { + "id": "66128", + "name": "Durandeau", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92277000", + "longitude": "-60.99512000" + }, + { + "id": "66132", + "name": "Enbar Pwin", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91175000", + "longitude": "-60.99266000" + }, + { + "id": "66198", + "name": "Jacmel", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94796000", + "longitude": "-61.01297000" + }, + { + "id": "66200", + "name": "Jean Baptiste", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94704000", + "longitude": "-61.01578000" + }, + { + "id": "66231", + "name": "La Trielle", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94014000", + "longitude": "-60.99729000" + }, + { + "id": "66260", + "name": "Massacre", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94872000", + "longitude": "-61.03544000" + }, + { + "id": "66266", + "name": "Millet", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.90985000", + "longitude": "-60.98884000" + }, + { + "id": "66294", + "name": "Morne Ciseaux", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93597000", + "longitude": "-61.00330000" + }, + { + "id": "66296", + "name": "Morne D'Or", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94931000", + "longitude": "-61.00601000" + }, + { + "id": "66365", + "name": "Roseau Valley", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95317000", + "longitude": "-61.02676000" + }, + { + "id": "66381", + "name": "St Lawrence", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93852000", + "longitude": "-61.02503000" + }, + { + "id": "66382", + "name": "St Lawrence Estate", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94236000", + "longitude": "-61.04248000" + }, + { + "id": "66392", + "name": "Tete Chemin", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.89092000", + "longitude": "-60.99785000" + }, + { + "id": "66416", + "name": "Vanard", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93558000", + "longitude": "-60.99363000" + }, + { + "id": "66417", + "name": "Venus", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91558000", + "longitude": "-61.01676000" + }, + { + "id": "66427", + "name": "Village", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93939000", + "longitude": "-61.04150000" + }, + { + "id": "66429", + "name": "Village\/Petite Bourgh", + "state_id": 3757, + "state_code": "01", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93801000", + "longitude": "-61.04184000" + }, + { + "id": "65962", + "name": "Anse Cochon", + "state_id": 3761, + "state_code": "12", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92261000", + "longitude": "-61.05250000" + }, + { + "id": "65963", + "name": "Anse Galet", + "state_id": 3761, + "state_code": "12", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93221000", + "longitude": "-61.04290000" + }, + { + "id": "65966", + "name": "Anse La Verdue", + "state_id": 3761, + "state_code": "12", + "country_id": 186, + "country_code": "LC", + "latitude": "13.90964000", + "longitude": "-61.04755000" + }, + { + "id": "66006", + "name": "Belvedere", + "state_id": 3761, + "state_code": "12", + "country_id": 186, + "country_code": "LC", + "latitude": "13.89122000", + "longitude": "-61.05550000" + }, + { + "id": "66063", + "name": "Chalon", + "state_id": 3761, + "state_code": "12", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92018000", + "longitude": "-61.04412000" + }, + { + "id": "66359", + "name": "Riverside Road", + "state_id": 3761, + "state_code": "12", + "country_id": 186, + "country_code": "LC", + "latitude": "13.89408000", + "longitude": "-61.04989000" + }, + { + "id": "66397", + "name": "Theodrine", + "state_id": 3761, + "state_code": "12", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92878000", + "longitude": "-61.04972000" + }, + { + "id": "66428", + "name": "Village", + "state_id": 3761, + "state_code": "12", + "country_id": 186, + "country_code": "LC", + "latitude": "13.90526000", + "longitude": "-61.06108000" + }, + { + "id": "65956", + "name": "Active Hill", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01940000", + "longitude": "-60.97767000" + }, + { + "id": "65957", + "name": "Agard Lands\/Morne Dudon", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00768000", + "longitude": "-60.96462000" + }, + { + "id": "65958", + "name": "Almondale", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01848000", + "longitude": "-60.96162000" + }, + { + "id": "65972", + "name": "Aurendel Hill", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00069000", + "longitude": "-60.98670000" + }, + { + "id": "65973", + "name": "Babonneau Proper", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00535000", + "longitude": "-60.94640000" + }, + { + "id": "65974", + "name": "Bagatelle", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99797000", + "longitude": "-60.98156000" + }, + { + "id": "65975", + "name": "Balata", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01471000", + "longitude": "-60.95167000" + }, + { + "id": "65979", + "name": "Banannes Bay", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01087000", + "longitude": "-61.00135000" + }, + { + "id": "65983", + "name": "Barnard Hill", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01423000", + "longitude": "-60.98924000" + }, + { + "id": "65985", + "name": "Barre Denis", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.96809000", + "longitude": "-60.99073000" + }, + { + "id": "65986", + "name": "Barre Duchaussee", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.96190000", + "longitude": "-60.99678000" + }, + { + "id": "65987", + "name": "Barre St.Joseph", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.97247000", + "longitude": "-61.01829000" + }, + { + "id": "65996", + "name": "Belair", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95283000", + "longitude": "-60.99747000" + }, + { + "id": "65998", + "name": "Bella Rosa", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00777000", + "longitude": "-60.99628000" + }, + { + "id": "66008", + "name": "Bexon", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.96077000", + "longitude": "-60.97497000" + }, + { + "id": "66009", + "name": "Bisee", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02429000", + "longitude": "-60.97445000" + }, + { + "id": "66010", + "name": "Bishop'S Gap", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00019000", + "longitude": "-60.98498000" + }, + { + "id": "66011", + "name": "Bissee", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02255000", + "longitude": "-60.97489000" + }, + { + "id": "66013", + "name": "Black Mallet", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00457000", + "longitude": "-60.98811000" + }, + { + "id": "66015", + "name": "Bocage", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00199000", + "longitude": "-60.96954000" + }, + { + "id": "66018", + "name": "Bois Catchet", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00399000", + "longitude": "-60.99437000" + }, + { + "id": "66025", + "name": "Bois Patat", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00892000", + "longitude": "-60.98214000" + }, + { + "id": "66033", + "name": "Cabiche\/Babonneau", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00583000", + "longitude": "-60.95432000" + }, + { + "id": "66035", + "name": "Cacoa\/Babonneau", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.98875000", + "longitude": "-60.95113000" + }, + { + "id": "66038", + "name": "Calvary", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01391000", + "longitude": "-60.98664000" + }, + { + "id": "66052", + "name": "Capital Hill", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99307000", + "longitude": "-60.99097000" + }, + { + "id": "66053", + "name": "Carellie", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01889000", + "longitude": "-60.96851000" + }, + { + "id": "66056", + "name": "Castries", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99570000", + "longitude": "-61.00614000" + }, + { + "id": "66060", + "name": "Cedars", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00601000", + "longitude": "-60.98232000" + }, + { + "id": "66065", + "name": "Chase Gardens", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01481000", + "longitude": "-60.97395000" + }, + { + "id": "66066", + "name": "Chassin\/Babonneau", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99100000", + "longitude": "-60.92187000" + }, + { + "id": "66070", + "name": "Choppin Ridge\/Sarot", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95597000", + "longitude": "-60.98624000" + }, + { + "id": "66072", + "name": "Ciceron", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99296000", + "longitude": "-61.00878000" + }, + { + "id": "66073", + "name": "City", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00946000", + "longitude": "-60.99027000" + }, + { + "id": "66074", + "name": "City Gate\/La Clery", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02124000", + "longitude": "-60.98149000" + }, + { + "id": "66078", + "name": "Conway\/Waterfront", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01389000", + "longitude": "-60.99055000" + }, + { + "id": "66080", + "name": "Coolie Town", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95684000", + "longitude": "-61.01437000" + }, + { + "id": "66085", + "name": "Coubaril", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00223000", + "longitude": "-61.00919000" + }, + { + "id": "66087", + "name": "Crownlands\/Marc", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95174000", + "longitude": "-60.97150000" + }, + { + "id": "66088", + "name": "Cul De Sac", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.98084000", + "longitude": "-61.00645000" + }, + { + "id": "66091", + "name": "Darling Road", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01355000", + "longitude": "-60.98779000" + }, + { + "id": "66095", + "name": "Deglos", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.97727000", + "longitude": "-60.97329000" + }, + { + "id": "66106", + "name": "Derierre Fort\/Old Victoria Road", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99474000", + "longitude": "-60.98513000" + }, + { + "id": "66124", + "name": "Dubrassay", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.98382000", + "longitude": "-60.97154000" + }, + { + "id": "66131", + "name": "En Pois Doux\/Babonneau", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.98853000", + "longitude": "-60.94099000" + }, + { + "id": "66133", + "name": "Entrepot", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99978000", + "longitude": "-60.97953000" + }, + { + "id": "66139", + "name": "Faux A Chaud", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00878000", + "longitude": "-60.99558000" + }, + { + "id": "66140", + "name": "Ferrand", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.98684000", + "longitude": "-60.98494000" + }, + { + "id": "66141", + "name": "Floissac\/Marc", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.96283000", + "longitude": "-60.95880000" + }, + { + "id": "66142", + "name": "Fond Assau\/Babonneau", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99491000", + "longitude": "-60.93626000" + }, + { + "id": "66146", + "name": "Fond Canie", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99195000", + "longitude": "-60.95954000" + }, + { + "id": "66154", + "name": "Forestiere", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.97775000", + "longitude": "-60.95766000" + }, + { + "id": "66160", + "name": "George Charles Boulevard", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00499000", + "longitude": "-60.98673000" + }, + { + "id": "66162", + "name": "Girard", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00004000", + "longitude": "-60.95960000" + }, + { + "id": "66164", + "name": "Goergeville", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01311000", + "longitude": "-60.98446000" + }, + { + "id": "66166", + "name": "Goodlands", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99121000", + "longitude": "-60.99840000" + }, + { + "id": "66182", + "name": "Grass Street", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00706000", + "longitude": "-60.98763000" + }, + { + "id": "66183", + "name": "Green Gold", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99603000", + "longitude": "-60.95284000" + }, + { + "id": "66187", + "name": "Guesneau", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99084000", + "longitude": "-60.96486000" + }, + { + "id": "66190", + "name": "Hill 20\/Babonneau", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99941000", + "longitude": "-60.94988000" + }, + { + "id": "66191", + "name": "Hillcrest Gardens", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01115000", + "longitude": "-60.97083000" + }, + { + "id": "66194", + "name": "Hospital Road", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00914000", + "longitude": "-60.99906000" + }, + { + "id": "66195", + "name": "Independence City", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00199000", + "longitude": "-60.97879000" + }, + { + "id": "66201", + "name": "John Compton Highway", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01909000", + "longitude": "-60.99110000" + }, + { + "id": "66204", + "name": "L'Anse Road", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01875000", + "longitude": "-60.98799000" + }, + { + "id": "66207", + "name": "La Carierre", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01806000", + "longitude": "-60.98723000" + }, + { + "id": "66209", + "name": "La Clery", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01846000", + "longitude": "-60.98422000" + }, + { + "id": "66212", + "name": "La Croix Maingot", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.96569000", + "longitude": "-61.00582000" + }, + { + "id": "66218", + "name": "La Pansee", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01368000", + "longitude": "-60.98187000" + }, + { + "id": "66229", + "name": "La Toc", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00824000", + "longitude": "-61.00404000" + }, + { + "id": "66232", + "name": "Labayee", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94044000", + "longitude": "-60.97316000" + }, + { + "id": "66235", + "name": "Lastic Hill", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00755000", + "longitude": "-60.98321000" + }, + { + "id": "66238", + "name": "Leslie Land", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00752000", + "longitude": "-60.98674000" + }, + { + "id": "66250", + "name": "Marc", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95688000", + "longitude": "-60.95724000" + }, + { + "id": "66251", + "name": "Marchand", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00415000", + "longitude": "-60.98532000" + }, + { + "id": "66252", + "name": "Marigot", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.96212000", + "longitude": "-61.02205000" + }, + { + "id": "66262", + "name": "Maynard Hill", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00314000", + "longitude": "-60.98966000" + }, + { + "id": "66263", + "name": "Miami\/Bexon", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92295000", + "longitude": "-60.96945000" + }, + { + "id": "66288", + "name": "Monkey Town Ciceron", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.98885000", + "longitude": "-61.00615000" + }, + { + "id": "66291", + "name": "Morne Assau\/Babonneau", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99079000", + "longitude": "-60.93241000" + }, + { + "id": "66297", + "name": "Morne Dudon", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01194000", + "longitude": "-60.96378000" + }, + { + "id": "66304", + "name": "Morne Road", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00544000", + "longitude": "-60.99693000" + }, + { + "id": "66305", + "name": "Morne Rouge\/Marc", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95838000", + "longitude": "-60.96972000" + }, + { + "id": "66311", + "name": "Mount Pleasant", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01494000", + "longitude": "-60.98576000" + }, + { + "id": "66316", + "name": "New Village", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01104000", + "longitude": "-60.98456000" + }, + { + "id": "66318", + "name": "Odsan", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.97479000", + "longitude": "-60.98319000" + }, + { + "id": "66325", + "name": "Parker'S Hill", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00378000", + "longitude": "-60.99049000" + }, + { + "id": "66327", + "name": "Patterson'S Gap", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00655000", + "longitude": "-60.98473000" + }, + { + "id": "66328", + "name": "Pavee", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00282000", + "longitude": "-60.99191000" + }, + { + "id": "66329", + "name": "Peart'S Gap", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01035000", + "longitude": "-60.98598000" + }, + { + "id": "66330", + "name": "Perou", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95960000", + "longitude": "-61.00726000" + }, + { + "id": "66338", + "name": "Pointe Seraphine", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01575000", + "longitude": "-60.99305000" + }, + { + "id": "66342", + "name": "Quarte Chemins", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99136000", + "longitude": "-60.97630000" + }, + { + "id": "66346", + "name": "Ravine Chabot", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00051000", + "longitude": "-60.97617000" + }, + { + "id": "66348", + "name": "Ravine Poisson", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93156000", + "longitude": "-60.96849000" + }, + { + "id": "66349", + "name": "Ravine Touterelle", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00325000", + "longitude": "-60.98806000" + }, + { + "id": "66353", + "name": "Resinard\/Babonneau", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00289000", + "longitude": "-60.94200000" + }, + { + "id": "66361", + "name": "Rock Hall", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00009000", + "longitude": "-60.98928000" + }, + { + "id": "66364", + "name": "Rose Hill", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00816000", + "longitude": "-60.98560000" + }, + { + "id": "66369", + "name": "San Soucis", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01695000", + "longitude": "-60.98985000" + }, + { + "id": "66370", + "name": "Sand De Feu", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92781000", + "longitude": "-60.98026000" + }, + { + "id": "66372", + "name": "Sarot", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94212000", + "longitude": "-60.98489000" + }, + { + "id": "66387", + "name": "Summersdale", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02582000", + "longitude": "-60.97644000" + }, + { + "id": "66388", + "name": "Sunbilt", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00561000", + "longitude": "-60.97922000" + }, + { + "id": "66389", + "name": "Sunny Acres", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02810000", + "longitude": "-60.97361000" + }, + { + "id": "66390", + "name": "Talvern", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99578000", + "longitude": "-60.94410000" + }, + { + "id": "66391", + "name": "Tapion", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01383000", + "longitude": "-61.00489000" + }, + { + "id": "66396", + "name": "The Morne", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99778000", + "longitude": "-60.99620000" + }, + { + "id": "66399", + "name": "Ti Colon", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.97071000", + "longitude": "-61.00229000" + }, + { + "id": "66402", + "name": "Ti Rocher", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99490000", + "longitude": "-60.97110000" + }, + { + "id": "66407", + "name": "Trois Piton", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.98890000", + "longitude": "-60.97259000" + }, + { + "id": "66408", + "name": "Trou Cochan\/Marc", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94220000", + "longitude": "-60.96199000" + }, + { + "id": "66409", + "name": "Trou Florent\/Marc", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94525000", + "longitude": "-60.95382000" + }, + { + "id": "66410", + "name": "Trou Rouge", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00602000", + "longitude": "-60.98950000" + }, + { + "id": "66419", + "name": "Vide Bouteille", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02439000", + "longitude": "-60.98066000" + }, + { + "id": "66423", + "name": "Vigie", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02053000", + "longitude": "-60.99611000" + }, + { + "id": "66432", + "name": "Waterworks", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00498000", + "longitude": "-60.97635000" + }, + { + "id": "66434", + "name": "Wilton'S Yard\/Grave Yard", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00968000", + "longitude": "-60.98639000" + }, + { + "id": "66435", + "name": "Yorke Hill", + "state_id": 3758, + "state_code": "02", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01694000", + "longitude": "-60.97919000" + }, + { + "id": "66000", + "name": "Belle Vue", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80510000", + "longitude": "-61.03615000" + }, + { + "id": "66023", + "name": "Bois Dinde", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80463000", + "longitude": "-61.04952000" + }, + { + "id": "66036", + "name": "Caffiere", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78409000", + "longitude": "-61.03554000" + }, + { + "id": "66061", + "name": "Cedars\/Chu Tigre", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76995000", + "longitude": "-61.04716000" + }, + { + "id": "66069", + "name": "Choiseul", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77273000", + "longitude": "-61.04931000" + }, + { + "id": "66071", + "name": "Christian Hill", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77354000", + "longitude": "-61.04694000" + }, + { + "id": "66090", + "name": "Dacretin", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79617000", + "longitude": "-61.03574000" + }, + { + "id": "66094", + "name": "Debreuil", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79033000", + "longitude": "-61.02585000" + }, + { + "id": "66097", + "name": "Delcer", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80121000", + "longitude": "-61.05892000" + }, + { + "id": "66113", + "name": "Derriere Morne", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80916000", + "longitude": "-61.05101000" + }, + { + "id": "66125", + "name": "Dugard", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80386000", + "longitude": "-61.02831000" + }, + { + "id": "66127", + "name": "Dupre", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79435000", + "longitude": "-61.02947000" + }, + { + "id": "66136", + "name": "Esperance", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80775000", + "longitude": "-61.05331000" + }, + { + "id": "66155", + "name": "Franciou", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80400000", + "longitude": "-61.05448000" + }, + { + "id": "66197", + "name": "Industry", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79127000", + "longitude": "-61.05992000" + }, + { + "id": "66213", + "name": "La Fargue", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77197000", + "longitude": "-61.04124000" + }, + { + "id": "66223", + "name": "La Pointe", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79443000", + "longitude": "-61.06497000" + }, + { + "id": "66234", + "name": "Lamaze", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80649000", + "longitude": "-61.01906000" + }, + { + "id": "66236", + "name": "Le Riche", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78365000", + "longitude": "-61.04815000" + }, + { + "id": "66246", + "name": "Mailly Motete", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81788000", + "longitude": "-61.02772000" + }, + { + "id": "66259", + "name": "Martin", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78941000", + "longitude": "-61.04542000" + }, + { + "id": "66286", + "name": "Mongouge", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80301000", + "longitude": "-61.04524000" + }, + { + "id": "66289", + "name": "Monzie", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80669000", + "longitude": "-61.02297000" + }, + { + "id": "66299", + "name": "Morne Jacques", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81162000", + "longitude": "-61.03165000" + }, + { + "id": "66306", + "name": "Morne Sion", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79246000", + "longitude": "-61.05467000" + }, + { + "id": "66309", + "name": "Motete", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81325000", + "longitude": "-61.02320000" + }, + { + "id": "66314", + "name": "New Field\/Fiette", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78815000", + "longitude": "-61.05216000" + }, + { + "id": "66340", + "name": "Ponyon", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79639000", + "longitude": "-61.04360000" + }, + { + "id": "66345", + "name": "Raveneau", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81018000", + "longitude": "-61.04642000" + }, + { + "id": "66354", + "name": "Reunion", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77861000", + "longitude": "-61.04531000" + }, + { + "id": "66358", + "name": "River Doree", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76769000", + "longitude": "-61.03646000" + }, + { + "id": "66360", + "name": "Roblot", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80323000", + "longitude": "-61.02297000" + }, + { + "id": "66374", + "name": "Sauzay", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77743000", + "longitude": "-61.03368000" + }, + { + "id": "66376", + "name": "Savannesgeorge\/Constitution", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77855000", + "longitude": "-61.05139000" + }, + { + "id": "66418", + "name": "Victoria", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81116000", + "longitude": "-61.03963000" + }, + { + "id": "66424", + "name": "Village", + "state_id": 3760, + "state_code": "03", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77464000", + "longitude": "-61.05020000" + }, + { + "id": "65960", + "name": "Anse Canot", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.90871000", + "longitude": "-60.90440000" + }, + { + "id": "65967", + "name": "Athens", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.90574000", + "longitude": "-60.89184000" + }, + { + "id": "65968", + "name": "Au Leon", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95245000", + "longitude": "-60.90456000" + }, + { + "id": "65982", + "name": "Bara Bara", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95911000", + "longitude": "-60.93414000" + }, + { + "id": "65988", + "name": "Bazile", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91082000", + "longitude": "-60.92430000" + }, + { + "id": "66005", + "name": "Belmont", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95044000", + "longitude": "-60.93276000" + }, + { + "id": "66024", + "name": "Bois Joli", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92020000", + "longitude": "-60.91409000" + }, + { + "id": "66029", + "name": "Bordelais", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.89552000", + "longitude": "-60.90092000" + }, + { + "id": "66030", + "name": "Bosquet D'Or", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92886000", + "longitude": "-60.91127000" + }, + { + "id": "66096", + "name": "Delaide", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92993000", + "longitude": "-60.90584000" + }, + { + "id": "66099", + "name": "Dennery", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91409000", + "longitude": "-60.89132000" + }, + { + "id": "66100", + "name": "Dennery By Pass", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91164000", + "longitude": "-60.89454000" + }, + { + "id": "66101", + "name": "Dennery By Pass\/Green Mountain", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91094000", + "longitude": "-60.89810000" + }, + { + "id": "66102", + "name": "Dennery By Pass\/Rocky Lane", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91443000", + "longitude": "-60.90017000" + }, + { + "id": "66103", + "name": "Dennery By Pass\/White Rock Gardens", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91424000", + "longitude": "-60.89333000" + }, + { + "id": "66104", + "name": "Dennery Village", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91099000", + "longitude": "-60.89122000" + }, + { + "id": "66108", + "name": "Derniere Riviere", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95679000", + "longitude": "-60.92578000" + }, + { + "id": "66109", + "name": "Derniere Riviere\/Fond Maricient", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95130000", + "longitude": "-60.92218000" + }, + { + "id": "66110", + "name": "Derniere Riviere\/Mardi Gras\/Morne Caca Cochon", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.96288000", + "longitude": "-60.92029000" + }, + { + "id": "66111", + "name": "Derniere Riviere\/Morne Panache", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95252000", + "longitude": "-60.92919000" + }, + { + "id": "66117", + "name": "Despinoze", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94971000", + "longitude": "-60.91182000" + }, + { + "id": "66123", + "name": "Dubonnaire", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92808000", + "longitude": "-60.92336000" + }, + { + "id": "66156", + "name": "Gadette", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.95937000", + "longitude": "-60.91029000" + }, + { + "id": "66170", + "name": "Grande Ravine", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94263000", + "longitude": "-60.93404000" + }, + { + "id": "66171", + "name": "Grande Riviere", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93306000", + "longitude": "-60.93239000" + }, + { + "id": "66173", + "name": "Grande Riviere\/Des Branch", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93383000", + "longitude": "-60.93499000" + }, + { + "id": "66174", + "name": "Grande Riviere\/En Leur Morne\/Discompere", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93223000", + "longitude": "-60.93461000" + }, + { + "id": "66175", + "name": "Grande Riviere\/Funier", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93240000", + "longitude": "-60.93305000" + }, + { + "id": "66177", + "name": "Grande Riviere\/Morne Caca Cochon", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92960000", + "longitude": "-60.93794000" + }, + { + "id": "66208", + "name": "La Caye", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93290000", + "longitude": "-60.90434000" + }, + { + "id": "66220", + "name": "La Pelle", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94096000", + "longitude": "-60.90569000" + }, + { + "id": "66224", + "name": "La Pointe", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.91525000", + "longitude": "-60.88830000" + }, + { + "id": "66226", + "name": "La Ressource", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.94293000", + "longitude": "-60.91585000" + }, + { + "id": "66242", + "name": "Lumiere", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93928000", + "longitude": "-60.88889000" + }, + { + "id": "66303", + "name": "Morne Panache", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.92167000", + "longitude": "-60.93654000" + }, + { + "id": "66355", + "name": "Riche Fond", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93644000", + "longitude": "-60.92026000" + }, + { + "id": "66356", + "name": "Riche Fond\/La Belle Vie", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93782000", + "longitude": "-60.92908000" + }, + { + "id": "66357", + "name": "Riche Fond\/New Village", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93648000", + "longitude": "-60.92394000" + }, + { + "id": "66384", + "name": "St. Joseph Estate", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.90066000", + "longitude": "-60.91444000" + }, + { + "id": "66395", + "name": "Thamazo", + "state_id": 3756, + "state_code": "05", + "country_id": 186, + "country_code": "LC", + "latitude": "13.93245000", + "longitude": "-60.94786000" + }, + { + "id": "65993", + "name": "Beausejour", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.07647000", + "longitude": "-60.93780000" + }, + { + "id": "65994", + "name": "Beausejour\/Fostin'S Development", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.07445000", + "longitude": "-60.92929000" + }, + { + "id": "65995", + "name": "Beausejour\/Ndc", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.07733000", + "longitude": "-60.92683000" + }, + { + "id": "65997", + "name": "Bella Rosa", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.07711000", + "longitude": "-60.94568000" + }, + { + "id": "66001", + "name": "Belle Vue", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.08470000", + "longitude": "-60.94342000" + }, + { + "id": "66003", + "name": "Belle Vue Estate", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.08840000", + "longitude": "-60.94613000" + }, + { + "id": "66016", + "name": "Boguis", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01548000", + "longitude": "-60.92089000" + }, + { + "id": "66017", + "name": "Boguis\/Desa Blond", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01057000", + "longitude": "-60.92565000" + }, + { + "id": "66021", + "name": "Bois D'Orange", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05803000", + "longitude": "-60.95992000" + }, + { + "id": "66022", + "name": "Bois D'Ornange\/Trouya", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06198000", + "longitude": "-60.96914000" + }, + { + "id": "66027", + "name": "Bonneterre", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06994000", + "longitude": "-60.94146000" + }, + { + "id": "66028", + "name": "Bonneterre Gardens", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06737000", + "longitude": "-60.93393000" + }, + { + "id": "66043", + "name": "Cap Estate", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.09410000", + "longitude": "-60.93592000" + }, + { + "id": "66044", + "name": "Cap Estate\/Becune Point", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.09270000", + "longitude": "-60.95161000" + }, + { + "id": "66045", + "name": "Cap Estate\/Caribbean Park", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.10019000", + "longitude": "-60.92446000" + }, + { + "id": "66046", + "name": "Cap Estate\/Golf Park", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.09998000", + "longitude": "-60.93705000" + }, + { + "id": "66047", + "name": "Cap Estate\/Lower Saline Point", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.10515000", + "longitude": "-60.94310000" + }, + { + "id": "66048", + "name": "Cap Estate\/Mon Du Cap", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.10554000", + "longitude": "-60.93758000" + }, + { + "id": "66049", + "name": "Cap Estate\/Ranch Site", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.10437000", + "longitude": "-60.93360000" + }, + { + "id": "66050", + "name": "Cap Estate\/Saddlec Back", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.10023000", + "longitude": "-60.94246000" + }, + { + "id": "66051", + "name": "Cap Estate\/Upper Saline Point", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.10740000", + "longitude": "-60.94487000" + }, + { + "id": "66055", + "name": "Cas En Bas", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.08328000", + "longitude": "-60.93209000" + }, + { + "id": "66058", + "name": "Caye Manje'", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06629000", + "longitude": "-60.93560000" + }, + { + "id": "66082", + "name": "Corinth", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04710000", + "longitude": "-60.96046000" + }, + { + "id": "66083", + "name": "Corinth Estate", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04336000", + "longitude": "-60.95388000" + }, + { + "id": "66084", + "name": "Corinth\/La Bel Lair", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04469000", + "longitude": "-60.94484000" + }, + { + "id": "66092", + "name": "Dauphin", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05647000", + "longitude": "-60.90188000" + }, + { + "id": "66114", + "name": "Des Barras", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "13.99949000", + "longitude": "-60.90166000" + }, + { + "id": "66115", + "name": "Des Barras\/Cacolie", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01687000", + "longitude": "-60.90097000" + }, + { + "id": "66118", + "name": "Desrameaux", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.03681000", + "longitude": "-60.92697000" + }, + { + "id": "66157", + "name": "Garrand", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.00424000", + "longitude": "-60.93270000" + }, + { + "id": "66169", + "name": "Grand Riviere", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.03546000", + "longitude": "-60.95152000" + }, + { + "id": "66172", + "name": "Grande Riviere\/Assou Canal", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.03975000", + "longitude": "-60.95121000" + }, + { + "id": "66176", + "name": "Grande Riviere\/Ingle Woods", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.03091000", + "longitude": "-60.95592000" + }, + { + "id": "66178", + "name": "Grande Riviere\/Morne Serpent", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.03509000", + "longitude": "-60.96060000" + }, + { + "id": "66179", + "name": "Grande Riviere\/Norbert", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04317000", + "longitude": "-60.94933000" + }, + { + "id": "66180", + "name": "Grande Riviere\/Piat", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.03926000", + "longitude": "-60.94361000" + }, + { + "id": "66181", + "name": "Grande Riviere\/White Rock", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.03618000", + "longitude": "-60.95556000" + }, + { + "id": "66184", + "name": "Gros Islet", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06667000", + "longitude": "-60.95000000" + }, + { + "id": "66185", + "name": "Gros Islet Town", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.08080000", + "longitude": "-60.95312000" + }, + { + "id": "66186", + "name": "Gros Islet\/Edge Water", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.07912000", + "longitude": "-60.94973000" + }, + { + "id": "66206", + "name": "L'Hermitage", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06521000", + "longitude": "-60.93967000" + }, + { + "id": "66211", + "name": "La Croix Chabourgh", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01147000", + "longitude": "-60.94025000" + }, + { + "id": "66214", + "name": "La Guerre", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02191000", + "longitude": "-60.92491000" + }, + { + "id": "66215", + "name": "La Guerre\/Chicken Back Street", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02387000", + "longitude": "-60.93108000" + }, + { + "id": "66253", + "name": "Marisule", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04621000", + "longitude": "-60.97063000" + }, + { + "id": "66254", + "name": "Marisule\/Bon Air", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05062000", + "longitude": "-60.97124000" + }, + { + "id": "66255", + "name": "Marisule\/East Winds", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05407000", + "longitude": "-60.96849000" + }, + { + "id": "66256", + "name": "Marisule\/La Brellotte", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05710000", + "longitude": "-60.97183000" + }, + { + "id": "66257", + "name": "Marisule\/Top Of The World", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04385000", + "longitude": "-60.96885000" + }, + { + "id": "66258", + "name": "Marquis Estate", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02960000", + "longitude": "-60.90732000" + }, + { + "id": "66261", + "name": "Massade", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.08292000", + "longitude": "-60.94946000" + }, + { + "id": "66269", + "name": "Monchy", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05502000", + "longitude": "-60.92623000" + }, + { + "id": "66270", + "name": "Monchy\/Careffe", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05930000", + "longitude": "-60.95069000" + }, + { + "id": "66271", + "name": "Monchy\/Cletus Village", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05137000", + "longitude": "-60.92380000" + }, + { + "id": "66272", + "name": "Monchy\/La Borne", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04628000", + "longitude": "-60.91961000" + }, + { + "id": "66273", + "name": "Monchy\/La Borne\/Sans Souci", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04504000", + "longitude": "-60.89961000" + }, + { + "id": "66274", + "name": "Monchy\/La Retraite", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06421000", + "longitude": "-60.94564000" + }, + { + "id": "66275", + "name": "Monchy\/Lafeuillee", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05950000", + "longitude": "-60.94086000" + }, + { + "id": "66276", + "name": "Monchy\/Lawi Fwen", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05802000", + "longitude": "-60.92906000" + }, + { + "id": "66277", + "name": "Monchy\/Malgretoute", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04108000", + "longitude": "-60.91912000" + }, + { + "id": "66278", + "name": "Monchy\/Moulin A Vent", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06283000", + "longitude": "-60.95025000" + }, + { + "id": "66279", + "name": "Monchy\/Ravine Macock", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04789000", + "longitude": "-60.92511000" + }, + { + "id": "66280", + "name": "Monchy\/Riviere Mitan", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04987000", + "longitude": "-60.94029000" + }, + { + "id": "66281", + "name": "Monchy\/Ti Dauphin", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04081000", + "longitude": "-60.93225000" + }, + { + "id": "66282", + "name": "Monchy\/Vieux Sucreic", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.04996000", + "longitude": "-60.94992000" + }, + { + "id": "66283", + "name": "Monchy\/Vieux Sucreic\/Bois D'Inde", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05613000", + "longitude": "-60.95151000" + }, + { + "id": "66284", + "name": "Monchy\/Vieux Sucreic\/Careffe", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.05652000", + "longitude": "-60.94948000" + }, + { + "id": "66285", + "name": "Mongiraud", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06287000", + "longitude": "-60.95722000" + }, + { + "id": "66287", + "name": "Monier", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02951000", + "longitude": "-60.94098000" + }, + { + "id": "66295", + "name": "Morne Citon", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.03004000", + "longitude": "-60.92813000" + }, + { + "id": "66320", + "name": "Paix Bouche", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.01755000", + "longitude": "-60.93852000" + }, + { + "id": "66333", + "name": "Pigeon Island", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.08965000", + "longitude": "-60.95724000" + }, + { + "id": "66336", + "name": "Plateau", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02612000", + "longitude": "-60.93474000" + }, + { + "id": "66350", + "name": "Reduit", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06829000", + "longitude": "-60.96145000" + }, + { + "id": "66351", + "name": "Reduit Orchard", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06594000", + "longitude": "-60.95340000" + }, + { + "id": "66352", + "name": "Reduit Park", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06622000", + "longitude": "-60.95560000" + }, + { + "id": "66362", + "name": "Rodney Bay", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.07292000", + "longitude": "-60.95443000" + }, + { + "id": "66363", + "name": "Rodney Heights", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.06731000", + "longitude": "-60.94906000" + }, + { + "id": "66412", + "name": "Union", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02907000", + "longitude": "-60.96480000" + }, + { + "id": "66413", + "name": "Union Terrace", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02654000", + "longitude": "-60.95710000" + }, + { + "id": "66415", + "name": "Union\/Ti Morne", + "state_id": 3766, + "state_code": "06", + "country_id": 186, + "country_code": "LC", + "latitude": "14.02283000", + "longitude": "-60.95272000" + }, + { + "id": "65959", + "name": "Annus", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77449000", + "longitude": "-61.00511000" + }, + { + "id": "65976", + "name": "Balca", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77117000", + "longitude": "-61.02389000" + }, + { + "id": "65977", + "name": "Balca\/En Leur Ba", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77638000", + "longitude": "-61.01931000" + }, + { + "id": "65978", + "name": "Balembouche", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75992000", + "longitude": "-61.02840000" + }, + { + "id": "65980", + "name": "Banse", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79211000", + "longitude": "-60.99282000" + }, + { + "id": "65981", + "name": "Banse La Grace", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78150000", + "longitude": "-60.99840000" + }, + { + "id": "66026", + "name": "Bongalo", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76666000", + "longitude": "-61.02991000" + }, + { + "id": "66089", + "name": "Daban", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80490000", + "longitude": "-61.00435000" + }, + { + "id": "66143", + "name": "Fond Berange", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78238000", + "longitude": "-61.00346000" + }, + { + "id": "66158", + "name": "Gayabois", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78643000", + "longitude": "-61.01835000" + }, + { + "id": "66159", + "name": "Gentil", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76816000", + "longitude": "-60.98877000" + }, + { + "id": "66161", + "name": "Getrine", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78192000", + "longitude": "-61.00741000" + }, + { + "id": "66163", + "name": "Giraud", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79254000", + "longitude": "-61.00843000" + }, + { + "id": "66188", + "name": "H'Erelle", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75599000", + "longitude": "-60.98698000" + }, + { + "id": "66203", + "name": "Kennedy Highway\/Laborie Bypass", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75380000", + "longitude": "-60.99594000" + }, + { + "id": "66216", + "name": "La Haut", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79207000", + "longitude": "-61.00014000" + }, + { + "id": "66221", + "name": "La Perle", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76483000", + "longitude": "-61.02088000" + }, + { + "id": "66233", + "name": "Laborie", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75000000", + "longitude": "-60.98333000" + }, + { + "id": "66241", + "name": "Londonderry", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77623000", + "longitude": "-61.01362000" + }, + { + "id": "66243", + "name": "Macdomel", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77497000", + "longitude": "-60.98508000" + }, + { + "id": "66298", + "name": "Morne Gomier", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76552000", + "longitude": "-60.99524000" + }, + { + "id": "66302", + "name": "Morne Le Blanc", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75868000", + "longitude": "-60.99913000" + }, + { + "id": "66319", + "name": "Olibo", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77628000", + "longitude": "-60.99931000" + }, + { + "id": "66324", + "name": "Parc Estate", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79639000", + "longitude": "-61.01613000" + }, + { + "id": "66331", + "name": "Piaye", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75628000", + "longitude": "-61.02279000" + }, + { + "id": "66368", + "name": "Saltibus", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81211000", + "longitude": "-61.00982000" + }, + { + "id": "66371", + "name": "Saphire", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75670000", + "longitude": "-61.01209000" + }, + { + "id": "66393", + "name": "Tete Morne", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76160000", + "longitude": "-61.03397000" + }, + { + "id": "66426", + "name": "Village", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.74927000", + "longitude": "-60.99375000" + }, + { + "id": "66431", + "name": "Warwick\/Daban", + "state_id": 3759, + "state_code": "07", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81084000", + "longitude": "-61.00047000" + }, + { + "id": "65964", + "name": "Anse Ger", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79567000", + "longitude": "-60.91567000" + }, + { + "id": "65991", + "name": "Beauchamp", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81778000", + "longitude": "-60.91528000" + }, + { + "id": "66014", + "name": "Blanchard", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80616000", + "longitude": "-60.94630000" + }, + { + "id": "66041", + "name": "Canelles", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78515000", + "longitude": "-60.91789000" + }, + { + "id": "66059", + "name": "Cazuca", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80002000", + "longitude": "-60.90481000" + }, + { + "id": "66068", + "name": "Chique\/Blanchard", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80120000", + "longitude": "-60.94970000" + }, + { + "id": "66079", + "name": "Coolie Town", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85429000", + "longitude": "-60.91380000" + }, + { + "id": "66098", + "name": "Delomel", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80338000", + "longitude": "-60.92927000" + }, + { + "id": "66116", + "name": "Des Blanchard", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81155000", + "longitude": "-60.93423000" + }, + { + "id": "66119", + "name": "Desruisseaux", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79640000", + "longitude": "-60.93540000" + }, + { + "id": "66126", + "name": "Dugard", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81090000", + "longitude": "-60.91415000" + }, + { + "id": "66134", + "name": "Escap", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83031000", + "longitude": "-60.89673000" + }, + { + "id": "66148", + "name": "Fond D'Lor\/Dugard", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81069000", + "longitude": "-60.92119000" + }, + { + "id": "66150", + "name": "Fond Estate", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84243000", + "longitude": "-60.91862000" + }, + { + "id": "66153", + "name": "Fond\/Desruisseaux", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79421000", + "longitude": "-60.94128000" + }, + { + "id": "66165", + "name": "Gomier", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81485000", + "longitude": "-60.95252000" + }, + { + "id": "66167", + "name": "Gouette", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80650000", + "longitude": "-60.93964000" + }, + { + "id": "66192", + "name": "Honeymoon Beach", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77746000", + "longitude": "-60.90493000" + }, + { + "id": "66205", + "name": "L'Eau Mineau", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80672000", + "longitude": "-60.92103000" + }, + { + "id": "66210", + "name": "La Courville", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81056000", + "longitude": "-60.92766000" + }, + { + "id": "66222", + "name": "La Pointe", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84593000", + "longitude": "-60.89332000" + }, + { + "id": "66228", + "name": "La Tille", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.82744000", + "longitude": "-60.91716000" + }, + { + "id": "66239", + "name": "Lezy", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80372000", + "longitude": "-60.93906000" + }, + { + "id": "66240", + "name": "Lombard", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85772000", + "longitude": "-60.91510000" + }, + { + "id": "66245", + "name": "Mahaut", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84391000", + "longitude": "-60.95397000" + }, + { + "id": "66247", + "name": "Malgretoute", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84199000", + "longitude": "-60.90411000" + }, + { + "id": "66249", + "name": "Mamiku", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.86744000", + "longitude": "-60.90184000" + }, + { + "id": "66264", + "name": "Micoud", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81667000", + "longitude": "-60.90000000" + }, + { + "id": "66268", + "name": "Mon Repos", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85865000", + "longitude": "-60.89591000" + }, + { + "id": "66290", + "name": "Moreau", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.82676000", + "longitude": "-60.94238000" + }, + { + "id": "66308", + "name": "Morne Vient", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80646000", + "longitude": "-60.95241000" + }, + { + "id": "66312", + "name": "Myette Gardens", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81862000", + "longitude": "-60.90440000" + }, + { + "id": "66315", + "name": "New Village", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.82446000", + "longitude": "-60.89864000" + }, + { + "id": "66321", + "name": "Paix Bouche", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81556000", + "longitude": "-60.94073000" + }, + { + "id": "66323", + "name": "Palmiste Estate", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85377000", + "longitude": "-60.96007000" + }, + { + "id": "66326", + "name": "Patience", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85000000", + "longitude": "-60.90874000" + }, + { + "id": "66334", + "name": "Planard", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80521000", + "longitude": "-60.91540000" + }, + { + "id": "66341", + "name": "Praslin", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.87545000", + "longitude": "-60.89717000" + }, + { + "id": "66344", + "name": "Rameau", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83055000", + "longitude": "-60.92375000" + }, + { + "id": "66367", + "name": "Saint Marie Road", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85444000", + "longitude": "-60.91803000" + }, + { + "id": "66373", + "name": "Saut", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81272000", + "longitude": "-60.94375000" + }, + { + "id": "66375", + "name": "Savannes", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77098000", + "longitude": "-60.92017000" + }, + { + "id": "66379", + "name": "St Helen Estate", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78735000", + "longitude": "-60.90726000" + }, + { + "id": "66401", + "name": "Ti Riviere", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83006000", + "longitude": "-60.93774000" + }, + { + "id": "66403", + "name": "Ti Rocher", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81734000", + "longitude": "-60.92858000" + }, + { + "id": "66411", + "name": "Troumassee", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80892000", + "longitude": "-60.90341000" + }, + { + "id": "66425", + "name": "Village", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81904000", + "longitude": "-60.89692000" + }, + { + "id": "66430", + "name": "Volet", + "state_id": 3762, + "state_code": "08", + "country_id": 186, + "country_code": "LC", + "latitude": "13.82626000", + "longitude": "-60.90789000" + }, + { + "id": "65961", + "name": "Anse Chastanet", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.86426000", + "longitude": "-61.07016000" + }, + { + "id": "65984", + "name": "Barons Drive\/Coin De L'Anse", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85138000", + "longitude": "-61.05939000" + }, + { + "id": "65990", + "name": "Beasejour\/Myers Bridge", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.82147000", + "longitude": "-61.03396000" + }, + { + "id": "65999", + "name": "Belle Plaine", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.82700000", + "longitude": "-61.03127000" + }, + { + "id": "66004", + "name": "Bellefond", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.82753000", + "longitude": "-61.04269000" + }, + { + "id": "66007", + "name": "Belvedere", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83440000", + "longitude": "-61.01771000" + }, + { + "id": "66020", + "name": "Bois D'Inde", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83650000", + "longitude": "-61.03491000" + }, + { + "id": "66031", + "name": "Bouton", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.87936000", + "longitude": "-61.06449000" + }, + { + "id": "66039", + "name": "Calvary\/Calvaire", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85035000", + "longitude": "-61.05620000" + }, + { + "id": "66062", + "name": "Cenac", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.87207000", + "longitude": "-61.04243000" + }, + { + "id": "66067", + "name": "Chateau Belair", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81830000", + "longitude": "-61.05350000" + }, + { + "id": "66076", + "name": "Colombette", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.86861000", + "longitude": "-61.04990000" + }, + { + "id": "66077", + "name": "Compar", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83586000", + "longitude": "-61.05934000" + }, + { + "id": "66086", + "name": "Cresslands", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85999000", + "longitude": "-61.04032000" + }, + { + "id": "66120", + "name": "Deville", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81372000", + "longitude": "-61.05049000" + }, + { + "id": "66121", + "name": "Diamond\/Diamond Estate", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85168000", + "longitude": "-61.04352000" + }, + { + "id": "66137", + "name": "Esperance", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84562000", + "longitude": "-61.03713000" + }, + { + "id": "66138", + "name": "Etangs", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81902000", + "longitude": "-61.04056000" + }, + { + "id": "66144", + "name": "Fond Bernier", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85845000", + "longitude": "-61.05949000" + }, + { + "id": "66145", + "name": "Fond Cacoa", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85442000", + "longitude": "-61.05077000" + }, + { + "id": "66149", + "name": "Fond Doux", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.82096000", + "longitude": "-61.04952000" + }, + { + "id": "66151", + "name": "Fond Gens Libre", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.80791000", + "longitude": "-61.06259000" + }, + { + "id": "66199", + "name": "Jalousie", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.82811000", + "longitude": "-61.05891000" + }, + { + "id": "66217", + "name": "La Haut", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.86276000", + "longitude": "-61.05584000" + }, + { + "id": "66219", + "name": "La Pearle", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85740000", + "longitude": "-61.04760000" + }, + { + "id": "66237", + "name": "Lenny Hill", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85059000", + "longitude": "-61.05906000" + }, + { + "id": "66248", + "name": "Malgretoute", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84233000", + "longitude": "-61.05998000" + }, + { + "id": "66265", + "name": "Migny", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84166000", + "longitude": "-61.01808000" + }, + { + "id": "66267", + "name": "Mocha", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83117000", + "longitude": "-61.02503000" + }, + { + "id": "66292", + "name": "Morne Bonin", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83174000", + "longitude": "-61.03285000" + }, + { + "id": "66300", + "name": "Morne La Croix", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81762000", + "longitude": "-61.06146000" + }, + { + "id": "66301", + "name": "Morne Lastic\/Desruisseaux", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.86628000", + "longitude": "-61.05894000" + }, + { + "id": "66313", + "name": "New Development", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.86176000", + "longitude": "-61.04791000" + }, + { + "id": "66322", + "name": "Palmiste", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85843000", + "longitude": "-61.05575000" + }, + { + "id": "66335", + "name": "Plat Pays", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84085000", + "longitude": "-61.05571000" + }, + { + "id": "66343", + "name": "Rabot", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83380000", + "longitude": "-61.04540000" + }, + { + "id": "66347", + "name": "Ravine Claire", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85262000", + "longitude": "-61.02892000" + }, + { + "id": "66366", + "name": "Ruby Estate", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85812000", + "longitude": "-61.04983000" + }, + { + "id": "66378", + "name": "Soufrière", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85616000", + "longitude": "-61.05660000" + }, + { + "id": "66377", + "name": "Soufriere Estate", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85174000", + "longitude": "-61.05420000" + }, + { + "id": "66383", + "name": "St Phillip", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84432000", + "longitude": "-61.02766000" + }, + { + "id": "66385", + "name": "Stonefield", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84513000", + "longitude": "-61.05990000" + }, + { + "id": "66386", + "name": "Sulphur Springs", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.84002000", + "longitude": "-61.04512000" + }, + { + "id": "66398", + "name": "Ti Boug", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83744000", + "longitude": "-61.02460000" + }, + { + "id": "66400", + "name": "Ti Delcer", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.83386000", + "longitude": "-61.06410000" + }, + { + "id": "66404", + "name": "Toraille", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85704000", + "longitude": "-61.03296000" + }, + { + "id": "66405", + "name": "Town", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85491000", + "longitude": "-61.05764000" + }, + { + "id": "66414", + "name": "Union Vale", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.81103000", + "longitude": "-61.05686000" + }, + { + "id": "66436", + "name": "Zenon", + "state_id": 3764, + "state_code": "10", + "country_id": 186, + "country_code": "LC", + "latitude": "13.85953000", + "longitude": "-61.03394000" + }, + { + "id": "65971", + "name": "Augier", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76669000", + "longitude": "-60.98063000" + }, + { + "id": "65989", + "name": "Beane Field", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.73976000", + "longitude": "-60.94741000" + }, + { + "id": "65992", + "name": "Beausejour", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75229000", + "longitude": "-60.95519000" + }, + { + "id": "66002", + "name": "Belle Vue", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79218000", + "longitude": "-60.95379000" + }, + { + "id": "66012", + "name": "Black Bay", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.74330000", + "longitude": "-60.98272000" + }, + { + "id": "66032", + "name": "Bruceville\/Shanty Town", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.72558000", + "longitude": "-60.94907000" + }, + { + "id": "66034", + "name": "Cacoa", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77889000", + "longitude": "-60.93862000" + }, + { + "id": "66042", + "name": "Cantonement", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75665000", + "longitude": "-60.97662000" + }, + { + "id": "66054", + "name": "Carierre", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78514000", + "longitude": "-60.96721000" + }, + { + "id": "66057", + "name": "Catin", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77694000", + "longitude": "-60.97973000" + }, + { + "id": "66075", + "name": "Cocoa Dan", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.73087000", + "longitude": "-60.97195000" + }, + { + "id": "66081", + "name": "Coolie Town", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76911000", + "longitude": "-60.96680000" + }, + { + "id": "66093", + "name": "De Mailly", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79649000", + "longitude": "-60.94938000" + }, + { + "id": "66105", + "name": "Derierre Bois", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76807000", + "longitude": "-60.97725000" + }, + { + "id": "66107", + "name": "Derierre Morne", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.74126000", + "longitude": "-60.96057000" + }, + { + "id": "66122", + "name": "Docamel\/La Resource", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.74202000", + "longitude": "-60.95604000" + }, + { + "id": "66129", + "name": "Eau Piquant\/St Urbain", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76025000", + "longitude": "-60.94012000" + }, + { + "id": "66130", + "name": "En Bamboo", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78155000", + "longitude": "-60.94763000" + }, + { + "id": "66135", + "name": "Esperance", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78854000", + "longitude": "-60.96108000" + }, + { + "id": "66147", + "name": "Fond Capeche", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77449000", + "longitude": "-60.94835000" + }, + { + "id": "66152", + "name": "Fond Sabot", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77659000", + "longitude": "-60.95546000" + }, + { + "id": "66168", + "name": "Grace", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77678000", + "longitude": "-60.96637000" + }, + { + "id": "66189", + "name": "Hewanorra Orchard", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.74486000", + "longitude": "-60.97284000" + }, + { + "id": "66193", + "name": "Hope Estate", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76477000", + "longitude": "-60.95831000" + }, + { + "id": "66196", + "name": "Industrial Estate", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.74096000", + "longitude": "-60.97393000" + }, + { + "id": "66202", + "name": "Joyeux", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78313000", + "longitude": "-60.96068000" + }, + { + "id": "66225", + "name": "La Resource", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.74799000", + "longitude": "-60.96237000" + }, + { + "id": "66227", + "name": "La Retraite", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75944000", + "longitude": "-60.96632000" + }, + { + "id": "66230", + "name": "La Tourney\/Cedar Heights", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.74114000", + "longitude": "-60.96517000" + }, + { + "id": "66244", + "name": "Maganier", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.79450000", + "longitude": "-60.98513000" + }, + { + "id": "66293", + "name": "Morne Cayenne", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78349000", + "longitude": "-60.95506000" + }, + { + "id": "66307", + "name": "Morne Vert", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77899000", + "longitude": "-60.97617000" + }, + { + "id": "66310", + "name": "Moule A Chique", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.71458000", + "longitude": "-60.94835000" + }, + { + "id": "66317", + "name": "Obrier", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76831000", + "longitude": "-60.97313000" + }, + { + "id": "66332", + "name": "Pierrot", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.76857000", + "longitude": "-60.94381000" + }, + { + "id": "66337", + "name": "Plut", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77417000", + "longitude": "-60.96076000" + }, + { + "id": "66339", + "name": "Pomme", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75792000", + "longitude": "-60.98147000" + }, + { + "id": "66380", + "name": "St Jude'S Highway", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.75867000", + "longitude": "-60.97360000" + }, + { + "id": "66394", + "name": "Tete Morne\/Morne Andrew", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.77114000", + "longitude": "-60.95194000" + }, + { + "id": "66406", + "name": "Town", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.72835000", + "longitude": "-60.95408000" + }, + { + "id": "66420", + "name": "Vieux Fort", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.71667000", + "longitude": "-60.95000000" + }, + { + "id": "66421", + "name": "Vieux Fort\/Laborie Highway", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.73197000", + "longitude": "-60.95477000" + }, + { + "id": "66422", + "name": "Vige'", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.78692000", + "longitude": "-60.93550000" + }, + { + "id": "66433", + "name": "Westall Group\/The Mangue", + "state_id": 3763, + "state_code": "11", + "country_id": 186, + "country_code": "LC", + "latitude": "13.72707000", + "longitude": "-60.95312000" + }, + { + "id": "130030", + "name": "Biabou", + "state_id": 3389, + "state_code": "01", + "country_id": 188, + "country_code": "VC", + "latitude": "13.19430000", + "longitude": "-61.13904000" + }, + { + "id": "130031", + "name": "Byera Village", + "state_id": 3389, + "state_code": "01", + "country_id": 188, + "country_code": "VC", + "latitude": "13.25636000", + "longitude": "-61.11954000" + }, + { + "id": "130033", + "name": "Georgetown", + "state_id": 3389, + "state_code": "01", + "country_id": 188, + "country_code": "VC", + "latitude": "13.28054000", + "longitude": "-61.11850000" + }, + { + "id": "130037", + "name": "Port Elizabeth", + "state_id": 3388, + "state_code": "06", + "country_id": 188, + "country_code": "VC", + "latitude": "13.01102000", + "longitude": "-61.23548000" + }, + { + "id": "130036", + "name": "Layou", + "state_id": 3386, + "state_code": "02", + "country_id": 188, + "country_code": "VC", + "latitude": "13.20175000", + "longitude": "-61.27014000" + }, + { + "id": "130032", + "name": "Chateaubelair", + "state_id": 3387, + "state_code": "03", + "country_id": 188, + "country_code": "VC", + "latitude": "13.29069000", + "longitude": "-61.24043000" + }, + { + "id": "130034", + "name": "Kingstown", + "state_id": 3384, + "state_code": "04", + "country_id": 188, + "country_code": "VC", + "latitude": "13.15527000", + "longitude": "-61.22742000" + }, + { + "id": "130035", + "name": "Kingstown Park", + "state_id": 3384, + "state_code": "04", + "country_id": 188, + "country_code": "VC", + "latitude": "13.15924000", + "longitude": "-61.23161000" + }, + { + "id": "130029", + "name": "Barrouallie", + "state_id": 3385, + "state_code": "05", + "country_id": 188, + "country_code": "VC", + "latitude": "13.23676000", + "longitude": "-61.27275000" + }, + { + "id": "130647", + "name": "Fasito‘outa", + "state_id": 4763, + "state_code": "AA", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.81163000", + "longitude": "-171.94063000" + }, + { + "id": "130649", + "name": "Leulumoega", + "state_id": 4763, + "state_code": "AA", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.82297000", + "longitude": "-171.96127000" + }, + { + "id": "130655", + "name": "Nofoali‘i", + "state_id": 4763, + "state_code": "AA", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.82170000", + "longitude": "-171.95873000" + }, + { + "id": "130658", + "name": "Satapuala", + "state_id": 4763, + "state_code": "AA", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.83535000", + "longitude": "-171.97963000" + }, + { + "id": "130654", + "name": "Mulifanua", + "state_id": 4761, + "state_code": "AL", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.83183000", + "longitude": "-172.03602000" + }, + { + "id": "130646", + "name": "Falefa", + "state_id": 4765, + "state_code": "AT", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.88695000", + "longitude": "-171.58805000" + }, + { + "id": "130650", + "name": "Lotofagā", + "state_id": 4765, + "state_code": "AT", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.97643000", + "longitude": "-171.85781000" + }, + { + "id": "130651", + "name": "Lufilufi", + "state_id": 4765, + "state_code": "AT", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.87449000", + "longitude": "-171.59857000" + }, + { + "id": "130659", + "name": "Solosolo", + "state_id": 4765, + "state_code": "AT", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.87504000", + "longitude": "-171.64181000" + }, + { + "id": "130653", + "name": "Matavai", + "state_id": 4771, + "state_code": "GI", + "country_id": 191, + "country_code": "WS", + "latitude": "-14.03208000", + "longitude": "-171.64768000" + }, + { + "id": "130656", + "name": "Safotu", + "state_id": 4771, + "state_code": "GI", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.45132000", + "longitude": "-172.40177000" + }, + { + "id": "130648", + "name": "Gataivai", + "state_id": 4767, + "state_code": "PA", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.77360000", + "longitude": "-172.38802000" + }, + { + "id": "130661", + "name": "Vailoa", + "state_id": 4767, + "state_code": "PA", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.75551000", + "longitude": "-172.30698000" + }, + { + "id": "130643", + "name": "Afega", + "state_id": 4770, + "state_code": "TU", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.79726000", + "longitude": "-171.85308000" + }, + { + "id": "130644", + "name": "Apia", + "state_id": 4770, + "state_code": "TU", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.83333000", + "longitude": "-171.76666000" + }, + { + "id": "130652", + "name": "Malie", + "state_id": 4770, + "state_code": "TU", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.80044000", + "longitude": "-171.84690000" + }, + { + "id": "130660", + "name": "Vailima", + "state_id": 4770, + "state_code": "TU", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.86417000", + "longitude": "-171.76126000" + }, + { + "id": "130662", + "name": "Vaiusu", + "state_id": 4770, + "state_code": "TU", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.82678000", + "longitude": "-171.79333000" + }, + { + "id": "130657", + "name": "Samamea", + "state_id": 4768, + "state_code": "VF", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.93375000", + "longitude": "-171.53122000" + }, + { + "id": "130645", + "name": "Asau", + "state_id": 4766, + "state_code": "VS", + "country_id": 191, + "country_code": "WS", + "latitude": "-13.51963000", + "longitude": "-172.63784000" + }, + { + "id": "104693", + "name": "Acquaviva", + "state_id": 59, + "state_code": "01", + "country_id": 192, + "country_code": "SM", + "latitude": "43.94593000", + "longitude": "12.41850000" + }, + { + "id": "104694", + "name": "Borgo Maggiore", + "state_id": 61, + "state_code": "06", + "country_id": 192, + "country_code": "SM", + "latitude": "43.94193000", + "longitude": "12.44738000" + }, + { + "id": "104699", + "name": "Poggio di Chiesanuova", + "state_id": 60, + "state_code": "02", + "country_id": 192, + "country_code": "SM", + "latitude": "43.90451000", + "longitude": "12.42142000" + }, + { + "id": "104695", + "name": "Domagnano", + "state_id": 64, + "state_code": "03", + "country_id": 192, + "country_code": "SM", + "latitude": "43.94961000", + "longitude": "12.46828000" + }, + { + "id": "104696", + "name": "Faetano", + "state_id": 62, + "state_code": "04", + "country_id": 192, + "country_code": "SM", + "latitude": "43.92831000", + "longitude": "12.49798000" + }, + { + "id": "104697", + "name": "Fiorentino", + "state_id": 66, + "state_code": "05", + "country_id": 192, + "country_code": "SM", + "latitude": "43.91001000", + "longitude": "12.45738000" + }, + { + "id": "104698", + "name": "Monte Giardino", + "state_id": 63, + "state_code": "08", + "country_id": 192, + "country_code": "SM", + "latitude": "43.90878000", + "longitude": "12.48201000" + }, + { + "id": "104700", + "name": "San Marino", + "state_id": 58, + "state_code": "07", + "country_id": 192, + "country_code": "SM", + "latitude": "43.93667000", + "longitude": "12.44639000" + }, + { + "id": "104701", + "name": "Serravalle", + "state_id": 65, + "state_code": "09", + "country_id": 192, + "country_code": "SM", + "latitude": "43.96897000", + "longitude": "12.48167000" + }, + { + "id": "104837", + "name": "Santo António", + "state_id": 270, + "state_code": "P", + "country_id": 193, + "country_code": "ST", + "latitude": "1.63943000", + "longitude": "7.41951000" + }, + { + "id": "104835", + "name": "Cantagalo District", + "state_id": 271, + "state_code": "S", + "country_id": 193, + "country_code": "ST", + "latitude": "0.21667000", + "longitude": "6.70000000" + }, + { + "id": "104836", + "name": "Caué District", + "state_id": 271, + "state_code": "S", + "country_id": 193, + "country_code": "ST", + "latitude": "0.13415000", + "longitude": "6.63825000" + }, + { + "id": "104838", + "name": "São Tomé", + "state_id": 271, + "state_code": "S", + "country_id": 193, + "country_code": "ST", + "latitude": "0.33654000", + "longitude": "6.72732000" + }, + { + "id": "104839", + "name": "Trindade", + "state_id": 271, + "state_code": "S", + "country_id": 193, + "country_code": "ST", + "latitude": "0.29667000", + "longitude": "6.68139000" + }, + { + "id": "102804", + "name": "Abha", + "state_id": 2853, + "state_code": "14", + "country_id": 194, + "country_code": "SA", + "latitude": "18.21639000", + "longitude": "42.50528000" + }, + { + "id": "102827", + "name": "Al Majāridah", + "state_id": 2853, + "state_code": "14", + "country_id": 194, + "country_code": "SA", + "latitude": "19.12361000", + "longitude": "41.91111000" + }, + { + "id": "102840", + "name": "An Nimāş", + "state_id": 2853, + "state_code": "14", + "country_id": 194, + "country_code": "SA", + "latitude": "19.14547000", + "longitude": "42.12009000" + }, + { + "id": "102861", + "name": "Khamis Mushait", + "state_id": 2853, + "state_code": "14", + "country_id": 194, + "country_code": "SA", + "latitude": "18.30000000", + "longitude": "42.73333000" + }, + { + "id": "102871", + "name": "Qal‘at Bīshah", + "state_id": 2853, + "state_code": "14", + "country_id": 194, + "country_code": "SA", + "latitude": "20.00054000", + "longitude": "42.60520000" + }, + { + "id": "102876", + "name": "Sabt Al Alayah", + "state_id": 2853, + "state_code": "14", + "country_id": 194, + "country_code": "SA", + "latitude": "19.70000000", + "longitude": "41.91667000" + }, + { + "id": "102882", + "name": "Tabālah", + "state_id": 2853, + "state_code": "14", + "country_id": 194, + "country_code": "SA", + "latitude": "19.95000000", + "longitude": "42.40000000" + }, + { + "id": "102815", + "name": "Al Bahah", + "state_id": 2859, + "state_code": "11", + "country_id": 194, + "country_code": "SA", + "latitude": "20.01288000", + "longitude": "41.46767000" + }, + { + "id": "102829", + "name": "Al Mindak", + "state_id": 2859, + "state_code": "11", + "country_id": 194, + "country_code": "SA", + "latitude": "20.15880000", + "longitude": "41.28337000" + }, + { + "id": "102896", + "name": "Şuwayr", + "state_id": 2857, + "state_code": "12", + "country_id": 194, + "country_code": "SA", + "latitude": "30.11713000", + "longitude": "40.38925000" + }, + { + "id": "102898", + "name": "Ţubarjal", + "state_id": 2857, + "state_code": "12", + "country_id": 194, + "country_code": "SA", + "latitude": "30.49987000", + "longitude": "38.21603000" + }, + { + "id": "102872", + "name": "Qurayyat", + "state_id": 2857, + "state_code": "12", + "country_id": 194, + "country_code": "SA", + "latitude": "31.33176000", + "longitude": "37.34282000" + }, + { + "id": "102877", + "name": "Sakakah", + "state_id": 2857, + "state_code": "12", + "country_id": 194, + "country_code": "SA", + "latitude": "29.96974000", + "longitude": "40.20641000" + }, + { + "id": "102839", + "name": "Al-`Ula", + "state_id": 2851, + "state_code": "03", + "country_id": 194, + "country_code": "SA", + "latitude": "26.60853000", + "longitude": "37.92316000" + }, + { + "id": "102849", + "name": "Badr Ḩunayn", + "state_id": 2851, + "state_code": "03", + "country_id": 194, + "country_code": "SA", + "latitude": "23.78292000", + "longitude": "38.79047000" + }, + { + "id": "102865", + "name": "Medina", + "state_id": 2851, + "state_code": "03", + "country_id": 194, + "country_code": "SA", + "latitude": "24.46861000", + "longitude": "39.61417000" + }, + { + "id": "102879", + "name": "Sulţānah", + "state_id": 2851, + "state_code": "03", + "country_id": 194, + "country_code": "SA", + "latitude": "24.49258000", + "longitude": "39.58572000" + }, + { + "id": "102892", + "name": "Yanbu", + "state_id": 2851, + "state_code": "03", + "country_id": 194, + "country_code": "SA", + "latitude": "24.08954000", + "longitude": "38.06180000" + }, + { + "id": "102810", + "name": "Adh Dhibiyah", + "state_id": 2861, + "state_code": "05", + "country_id": 194, + "country_code": "SA", + "latitude": "26.02700000", + "longitude": "43.15700000" + }, + { + "id": "102817", + "name": "Al Bukayrīyah", + "state_id": 2861, + "state_code": "05", + "country_id": 194, + "country_code": "SA", + "latitude": "26.13915000", + "longitude": "43.65782000" + }, + { + "id": "102818", + "name": "Al Fuwayliq", + "state_id": 2861, + "state_code": "05", + "country_id": 194, + "country_code": "SA", + "latitude": "26.44360000", + "longitude": "43.25164000" + }, + { + "id": "102830", + "name": "Al Mithnab", + "state_id": 2861, + "state_code": "05", + "country_id": 194, + "country_code": "SA", + "latitude": "25.86012000", + "longitude": "44.22228000" + }, + { + "id": "102841", + "name": "Ar Rass", + "state_id": 2861, + "state_code": "05", + "country_id": 194, + "country_code": "SA", + "latitude": "25.86944000", + "longitude": "43.49730000" + }, + { + "id": "102850", + "name": "Buraydah", + "state_id": 2861, + "state_code": "05", + "country_id": 194, + "country_code": "SA", + "latitude": "26.32599000", + "longitude": "43.97497000" + }, + { + "id": "102883", + "name": "Tanūmah", + "state_id": 2861, + "state_code": "05", + "country_id": 194, + "country_code": "SA", + "latitude": "27.10000000", + "longitude": "44.13333000" + }, + { + "id": "102891", + "name": "Wed Alnkil", + "state_id": 2861, + "state_code": "05", + "country_id": 194, + "country_code": "SA", + "latitude": "25.42670000", + "longitude": "42.83430000" + }, + { + "id": "102848", + "name": "Aţ Ţaraf", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.36232000", + "longitude": "49.72757000" + }, + { + "id": "102805", + "name": "Abqaiq", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.93402000", + "longitude": "49.66880000" + }, + { + "id": "102814", + "name": "Al Awjām", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.56324000", + "longitude": "49.94331000" + }, + { + "id": "102816", + "name": "Al Baţţālīyah", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.43333000", + "longitude": "49.63333000" + }, + { + "id": "102820", + "name": "Al Hufūf", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.36467000", + "longitude": "49.58764000" + }, + { + "id": "102821", + "name": "Al Jafr", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.37736000", + "longitude": "49.72154000" + }, + { + "id": "102823", + "name": "Al Jubayl", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "27.01740000", + "longitude": "49.62251000" + }, + { + "id": "102825", + "name": "Al Khafjī", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "28.43905000", + "longitude": "48.49132000" + }, + { + "id": "102828", + "name": "Al Markaz", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.40000000", + "longitude": "49.73333000" + }, + { + "id": "102834", + "name": "Al Muţayrifī", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.47878000", + "longitude": "49.55824000" + }, + { + "id": "102831", + "name": "Al Mubarraz", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.40768000", + "longitude": "49.59028000" + }, + { + "id": "102832", + "name": "Al Munayzilah", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.38333000", + "longitude": "49.66667000" + }, + { + "id": "102835", + "name": "Al Qaţīf", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.56542000", + "longitude": "50.00890000" + }, + { + "id": "102837", + "name": "Al Qārah", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.41667000", + "longitude": "49.66667000" + }, + { + "id": "102836", + "name": "Al Qurayn", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.48333000", + "longitude": "49.60000000" + }, + { + "id": "102843", + "name": "As Saffānīyah", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "27.97083000", + "longitude": "48.73000000" + }, + { + "id": "102846", + "name": "At Tūbī", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.55778000", + "longitude": "49.99167000" + }, + { + "id": "102895", + "name": "Şafwá", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.64970000", + "longitude": "49.95522000" + }, + { + "id": "102851", + "name": "Dammam", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.43442000", + "longitude": "50.10326000" + }, + { + "id": "102852", + "name": "Dhahran", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.28864000", + "longitude": "50.11396000" + }, + { + "id": "102857", + "name": "Hafar Al-Batin", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "28.43279000", + "longitude": "45.97077000" + }, + { + "id": "102860", + "name": "Julayjilah", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "25.50000000", + "longitude": "49.60000000" + }, + { + "id": "102862", + "name": "Khobar", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.27944000", + "longitude": "50.20833000" + }, + { + "id": "102868", + "name": "Mulayjah", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "27.27103000", + "longitude": "48.42419000" + }, + { + "id": "102870", + "name": "Qaisumah", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "28.31117000", + "longitude": "46.12729000" + }, + { + "id": "102873", + "name": "Raḩīmah", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.70791000", + "longitude": "50.06194000" + }, + { + "id": "102878", + "name": "Sayhāt", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.48345000", + "longitude": "50.04849000" + }, + { + "id": "102888", + "name": "Tārūt", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.57330000", + "longitude": "50.04028000" + }, + { + "id": "102890", + "name": "Umm as Sāhik", + "state_id": 2856, + "state_code": "04", + "country_id": 194, + "country_code": "SA", + "latitude": "26.65361000", + "longitude": "49.91639000" + }, + { + "id": "102856", + "name": "Ha'il", + "state_id": 2855, + "state_code": "06", + "country_id": 194, + "country_code": "SA", + "latitude": "27.52188000", + "longitude": "41.69073000" + }, + { + "id": "102806", + "name": "Abū ‘Arīsh", + "state_id": 2858, + "state_code": "09", + "country_id": 194, + "country_code": "SA", + "latitude": "16.96887000", + "longitude": "42.83251000" + }, + { + "id": "102807", + "name": "Ad Darb", + "state_id": 2858, + "state_code": "09", + "country_id": 194, + "country_code": "SA", + "latitude": "17.72285000", + "longitude": "42.25261000" + }, + { + "id": "102822", + "name": "Al Jarādīyah", + "state_id": 2858, + "state_code": "09", + "country_id": 194, + "country_code": "SA", + "latitude": "16.57946000", + "longitude": "42.91240000" + }, + { + "id": "102894", + "name": "Şabyā", + "state_id": 2858, + "state_code": "09", + "country_id": 194, + "country_code": "SA", + "latitude": "17.14950000", + "longitude": "42.62537000" + }, + { + "id": "102897", + "name": "Şāmitah", + "state_id": 2858, + "state_code": "09", + "country_id": 194, + "country_code": "SA", + "latitude": "16.59601000", + "longitude": "42.94435000" + }, + { + "id": "102854", + "name": "Farasān", + "state_id": 2858, + "state_code": "09", + "country_id": 194, + "country_code": "SA", + "latitude": "16.70222000", + "longitude": "42.11833000" + }, + { + "id": "102859", + "name": "Jizan", + "state_id": 2858, + "state_code": "09", + "country_id": 194, + "country_code": "SA", + "latitude": "16.88917000", + "longitude": "42.55111000" + }, + { + "id": "102866", + "name": "Mislīyah", + "state_id": 2858, + "state_code": "09", + "country_id": 194, + "country_code": "SA", + "latitude": "17.45988000", + "longitude": "42.55720000" + }, + { + "id": "102867", + "name": "Mizhirah", + "state_id": 2858, + "state_code": "09", + "country_id": 194, + "country_code": "SA", + "latitude": "16.82611000", + "longitude": "42.73333000" + }, + { + "id": "102819", + "name": "Al Hadā", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "21.36753000", + "longitude": "40.28694000" + }, + { + "id": "102824", + "name": "Al Jumūm", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "21.61694000", + "longitude": "39.69806000" + }, + { + "id": "102833", + "name": "Al Muwayh", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "22.43333000", + "longitude": "41.75829000" + }, + { + "id": "102845", + "name": "Ash Shafā", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "21.07210000", + "longitude": "40.31185000" + }, + { + "id": "102855", + "name": "Ghran", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "21.98027000", + "longitude": "39.36521000" + }, + { + "id": "102858", + "name": "Jeddah", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "21.54238000", + "longitude": "39.19797000" + }, + { + "id": "102864", + "name": "Mecca", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "21.42664000", + "longitude": "39.82563000" + }, + { + "id": "102875", + "name": "Rābigh", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "22.79856000", + "longitude": "39.03493000" + }, + { + "id": "102884", + "name": "Ta’if", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "21.27028000", + "longitude": "40.41583000" + }, + { + "id": "102886", + "name": "Turabah", + "state_id": 2850, + "state_code": "02", + "country_id": 194, + "country_code": "SA", + "latitude": "21.21406000", + "longitude": "41.63310000" + }, + { + "id": "102869", + "name": "Najrān", + "state_id": 2860, + "state_code": "10", + "country_id": 194, + "country_code": "SA", + "latitude": "17.49326000", + "longitude": "44.12766000" + }, + { + "id": "102842", + "name": "Arar", + "state_id": 2854, + "state_code": "08", + "country_id": 194, + "country_code": "SA", + "latitude": "30.97531000", + "longitude": "41.03808000" + }, + { + "id": "102887", + "name": "Turaif", + "state_id": 2854, + "state_code": "08", + "country_id": 194, + "country_code": "SA", + "latitude": "31.67252000", + "longitude": "38.66374000" + }, + { + "id": "102808", + "name": "Ad Dawādimī", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "24.50772000", + "longitude": "44.39237000" + }, + { + "id": "102809", + "name": "Ad Dilam", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "23.99104000", + "longitude": "47.16181000" + }, + { + "id": "102811", + "name": "Afif", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "23.90650000", + "longitude": "42.91724000" + }, + { + "id": "102812", + "name": "Ain AlBaraha", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "24.75806000", + "longitude": "43.77389000" + }, + { + "id": "102813", + "name": "Al Arţāwīyah", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "26.50387000", + "longitude": "45.34813000" + }, + { + "id": "102826", + "name": "Al Kharj", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "24.15541000", + "longitude": "47.33457000" + }, + { + "id": "102844", + "name": "As Sulayyil", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "20.46067000", + "longitude": "45.57792000" + }, + { + "id": "102847", + "name": "Az Zulfī", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "26.29945000", + "longitude": "44.81542000" + }, + { + "id": "102863", + "name": "Marāt", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "25.07064000", + "longitude": "45.45775000" + }, + { + "id": "102874", + "name": "Riyadh", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "24.68773000", + "longitude": "46.72185000" + }, + { + "id": "102880", + "name": "Sājir", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "25.18251000", + "longitude": "44.59964000" + }, + { + "id": "102893", + "name": "shokhaibٍ", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "24.49023000", + "longitude": "46.26871000" + }, + { + "id": "102885", + "name": "Tumayr", + "state_id": 2849, + "state_code": "01", + "country_id": 194, + "country_code": "SA", + "latitude": "25.70347000", + "longitude": "45.86835000" + }, + { + "id": "102838", + "name": "Al Wajh", + "state_id": 2852, + "state_code": "07", + "country_id": 194, + "country_code": "SA", + "latitude": "26.24551000", + "longitude": "36.45249000" + }, + { + "id": "102853", + "name": "Duba", + "state_id": 2852, + "state_code": "07", + "country_id": 194, + "country_code": "SA", + "latitude": "27.35134000", + "longitude": "35.69014000" + }, + { + "id": "102881", + "name": "Tabuk", + "state_id": 2852, + "state_code": "07", + "country_id": 194, + "country_code": "SA", + "latitude": "28.39980000", + "longitude": "36.57151000" + }, + { + "id": "102889", + "name": "Umm Lajj", + "state_id": 2852, + "state_code": "07", + "country_id": 194, + "country_code": "SA", + "latitude": "25.02126000", + "longitude": "37.26850000" + }, + { + "id": "104704", + "name": "Dakar", + "state_id": 473, + "state_code": "DK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.69370000", + "longitude": "-17.44406000" + }, + { + "id": "104705", + "name": "Dakar Department", + "state_id": 473, + "state_code": "DK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.71403000", + "longitude": "-17.45534000" + }, + { + "id": "104716", + "name": "Guédiawaye Department", + "state_id": 473, + "state_code": "DK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.77610000", + "longitude": "-17.39560000" + }, + { + "id": "104737", + "name": "Mermoz Boabab", + "state_id": 473, + "state_code": "DK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.70649000", + "longitude": "-17.47581000" + }, + { + "id": "104744", + "name": "N’diareme limamoulaye", + "state_id": 473, + "state_code": "DK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.78148000", + "longitude": "-17.38410000" + }, + { + "id": "104748", + "name": "Pikine", + "state_id": 473, + "state_code": "DK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.76457000", + "longitude": "-17.39071000" + }, + { + "id": "104749", + "name": "Pikine Department", + "state_id": 473, + "state_code": "DK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.76515000", + "longitude": "-17.35198000" + }, + { + "id": "104756", + "name": "Rufisque Department", + "state_id": 473, + "state_code": "DK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.74339000", + "longitude": "-17.19841000" + }, + { + "id": "104734", + "name": "Mbacké", + "state_id": 480, + "state_code": "DB", + "country_id": 195, + "country_code": "SN", + "latitude": "14.80828000", + "longitude": "-15.86454000" + }, + { + "id": "104735", + "name": "Mbaké", + "state_id": 480, + "state_code": "DB", + "country_id": 195, + "country_code": "SN", + "latitude": "14.79032000", + "longitude": "-15.90803000" + }, + { + "id": "104769", + "name": "Tiébo", + "state_id": 480, + "state_code": "DB", + "country_id": 195, + "country_code": "SN", + "latitude": "14.63333000", + "longitude": "-16.23333000" + }, + { + "id": "104770", + "name": "Touba", + "state_id": 480, + "state_code": "DB", + "country_id": 195, + "country_code": "SN", + "latitude": "14.85000000", + "longitude": "-15.88333000" + }, + { + "id": "104708", + "name": "Diofior", + "state_id": 479, + "state_code": "FK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.18333000", + "longitude": "-16.66667000" + }, + { + "id": "104710", + "name": "Fatick Department", + "state_id": 479, + "state_code": "FK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.25909000", + "longitude": "-16.49884000" + }, + { + "id": "104711", + "name": "Foundiougne", + "state_id": 479, + "state_code": "FK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.13333000", + "longitude": "-16.46667000" + }, + { + "id": "104715", + "name": "Guinguinéo", + "state_id": 479, + "state_code": "FK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.26667000", + "longitude": "-15.95000000" + }, + { + "id": "104747", + "name": "Passi", + "state_id": 479, + "state_code": "FK", + "country_id": 195, + "country_code": "SN", + "latitude": "13.98333000", + "longitude": "-16.26667000" + }, + { + "id": "104751", + "name": "Pourham", + "state_id": 479, + "state_code": "FK", + "country_id": 195, + "country_code": "SN", + "latitude": "14.35000000", + "longitude": "-16.41667000" + }, + { + "id": "104759", + "name": "Sokone", + "state_id": 479, + "state_code": "FK", + "country_id": 195, + "country_code": "SN", + "latitude": "13.88333000", + "longitude": "-16.36667000" + }, + { + "id": "104719", + "name": "Kaffrine", + "state_id": 475, + "state_code": "KA", + "country_id": 195, + "country_code": "SN", + "latitude": "14.10594000", + "longitude": "-15.55080000" + }, + { + "id": "104726", + "name": "Koungheul", + "state_id": 475, + "state_code": "KA", + "country_id": 195, + "country_code": "SN", + "latitude": "13.98333000", + "longitude": "-14.80000000" + }, + { + "id": "104712", + "name": "Gandiaye", + "state_id": 483, + "state_code": "KL", + "country_id": 195, + "country_code": "SN", + "latitude": "14.23333000", + "longitude": "-16.26667000" + }, + { + "id": "104721", + "name": "Kaolack", + "state_id": 483, + "state_code": "KL", + "country_id": 195, + "country_code": "SN", + "latitude": "14.15197000", + "longitude": "-16.07259000" + }, + { + "id": "104741", + "name": "Ndofane", + "state_id": 483, + "state_code": "KL", + "country_id": 195, + "country_code": "SN", + "latitude": "13.91667000", + "longitude": "-15.93333000" + }, + { + "id": "104743", + "name": "Nioro du Rip", + "state_id": 483, + "state_code": "KL", + "country_id": 195, + "country_code": "SN", + "latitude": "13.75000000", + "longitude": "-15.80000000" + }, + { + "id": "104709", + "name": "Département de Salémata", + "state_id": 481, + "state_code": "KE", + "country_id": 195, + "country_code": "SN", + "latitude": "12.59971000", + "longitude": "-12.77619000" + }, + { + "id": "104727", + "name": "Kédougou", + "state_id": 481, + "state_code": "KE", + "country_id": 195, + "country_code": "SN", + "latitude": "12.55561000", + "longitude": "-12.18076000" + }, + { + "id": "104728", + "name": "Kédougou Department", + "state_id": 481, + "state_code": "KE", + "country_id": 195, + "country_code": "SN", + "latitude": "12.81716000", + "longitude": "-12.17834000" + }, + { + "id": "104758", + "name": "Saraya", + "state_id": 481, + "state_code": "KE", + "country_id": 195, + "country_code": "SN", + "latitude": "13.00150000", + "longitude": "-11.79627000" + }, + { + "id": "104724", + "name": "Kolda", + "state_id": 474, + "state_code": "KD", + "country_id": 195, + "country_code": "SN", + "latitude": "12.89390000", + "longitude": "-14.94125000" + }, + { + "id": "104725", + "name": "Kolda Department", + "state_id": 474, + "state_code": "KD", + "country_id": 195, + "country_code": "SN", + "latitude": "12.88300000", + "longitude": "-14.95000000" + }, + { + "id": "104731", + "name": "Marsassoum", + "state_id": 474, + "state_code": "KD", + "country_id": 195, + "country_code": "SN", + "latitude": "12.82750000", + "longitude": "-15.98056000" + }, + { + "id": "104771", + "name": "Vélingara", + "state_id": 474, + "state_code": "KD", + "country_id": 195, + "country_code": "SN", + "latitude": "13.15000000", + "longitude": "-14.11667000" + }, + { + "id": "104706", + "name": "Dara", + "state_id": 485, + "state_code": "LG", + "country_id": 195, + "country_code": "SN", + "latitude": "15.34844000", + "longitude": "-15.47993000" + }, + { + "id": "104717", + "name": "Guéoul", + "state_id": 485, + "state_code": "LG", + "country_id": 195, + "country_code": "SN", + "latitude": "15.48333000", + "longitude": "-16.35000000" + }, + { + "id": "104729", + "name": "Linguere Department", + "state_id": 485, + "state_code": "LG", + "country_id": 195, + "country_code": "SN", + "latitude": "15.35900000", + "longitude": "-15.15800000" + }, + { + "id": "104730", + "name": "Louga", + "state_id": 485, + "state_code": "LG", + "country_id": 195, + "country_code": "SN", + "latitude": "15.61867000", + "longitude": "-16.22436000" + }, + { + "id": "104739", + "name": "Ndibène Dahra", + "state_id": 485, + "state_code": "LG", + "country_id": 195, + "country_code": "SN", + "latitude": "15.33380000", + "longitude": "-15.47660000" + }, + { + "id": "104707", + "name": "Diawara", + "state_id": 476, + "state_code": "MT", + "country_id": 195, + "country_code": "SN", + "latitude": "15.02196000", + "longitude": "-12.54374000" + }, + { + "id": "104720", + "name": "Kanel", + "state_id": 476, + "state_code": "MT", + "country_id": 195, + "country_code": "SN", + "latitude": "15.49160000", + "longitude": "-13.17627000" + }, + { + "id": "104732", + "name": "Matam", + "state_id": 476, + "state_code": "MT", + "country_id": 195, + "country_code": "SN", + "latitude": "15.65587000", + "longitude": "-13.25544000" + }, + { + "id": "104733", + "name": "Matam Department", + "state_id": 476, + "state_code": "MT", + "country_id": 195, + "country_code": "SN", + "latitude": "15.73191000", + "longitude": "-13.63393000" + }, + { + "id": "104745", + "name": "Ouro Sogui", + "state_id": 476, + "state_code": "MT", + "country_id": 195, + "country_code": "SN", + "latitude": "15.60588000", + "longitude": "-13.32230000" + }, + { + "id": "104753", + "name": "Ranérou", + "state_id": 476, + "state_code": "MT", + "country_id": 195, + "country_code": "SN", + "latitude": "15.30000000", + "longitude": "-13.96667000" + }, + { + "id": "104761", + "name": "Sémé", + "state_id": 476, + "state_code": "MT", + "country_id": 195, + "country_code": "SN", + "latitude": "15.19422000", + "longitude": "-12.94482000" + }, + { + "id": "104772", + "name": "Waoundé", + "state_id": 476, + "state_code": "MT", + "country_id": 195, + "country_code": "SN", + "latitude": "15.26367000", + "longitude": "-12.86821000" + }, + { + "id": "104713", + "name": "Goléré", + "state_id": 477, + "state_code": "SL", + "country_id": 195, + "country_code": "SN", + "latitude": "16.25575000", + "longitude": "-14.10165000" + }, + { + "id": "104740", + "name": "Ndioum", + "state_id": 477, + "state_code": "SL", + "country_id": 195, + "country_code": "SN", + "latitude": "16.51293000", + "longitude": "-14.64706000" + }, + { + "id": "104750", + "name": "Polel Diaoubé", + "state_id": 477, + "state_code": "SL", + "country_id": 195, + "country_code": "SN", + "latitude": "15.26667000", + "longitude": "-13.00000000" + }, + { + "id": "104754", + "name": "Richard-Toll", + "state_id": 477, + "state_code": "SL", + "country_id": 195, + "country_code": "SN", + "latitude": "16.46250000", + "longitude": "-15.70083000" + }, + { + "id": "104755", + "name": "Rosso", + "state_id": 477, + "state_code": "SL", + "country_id": 195, + "country_code": "SN", + "latitude": "16.42028000", + "longitude": "-15.79834000" + }, + { + "id": "104757", + "name": "Saint-Louis", + "state_id": 477, + "state_code": "SL", + "country_id": 195, + "country_code": "SN", + "latitude": "16.01793000", + "longitude": "-16.48962000" + }, + { + "id": "104714", + "name": "Goudomp Department", + "state_id": 482, + "state_code": "SE", + "country_id": 195, + "country_code": "SN", + "latitude": "12.57778000", + "longitude": "-15.87222000" + }, + { + "id": "104760", + "name": "Sédhiou", + "state_id": 482, + "state_code": "SE", + "country_id": 195, + "country_code": "SN", + "latitude": "12.70806000", + "longitude": "-15.55694000" + }, + { + "id": "104762", + "name": "Tambacounda", + "state_id": 486, + "state_code": "TC", + "country_id": 195, + "country_code": "SN", + "latitude": "13.77073000", + "longitude": "-13.66734000" + }, + { + "id": "104763", + "name": "Tambacounda Department", + "state_id": 486, + "state_code": "TC", + "country_id": 195, + "country_code": "SN", + "latitude": "13.60500000", + "longitude": "-13.64700000" + }, + { + "id": "104718", + "name": "Joal-Fadiout", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.16667000", + "longitude": "-16.83333000" + }, + { + "id": "104722", + "name": "Kayar", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.91893000", + "longitude": "-17.11978000" + }, + { + "id": "104723", + "name": "Khombole", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.76667000", + "longitude": "-16.70000000" + }, + { + "id": "104738", + "name": "Mékhé", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "15.10970000", + "longitude": "-16.62180000" + }, + { + "id": "104736", + "name": "Mbour", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.40569000", + "longitude": "-16.85559000" + }, + { + "id": "104742", + "name": "Nguékhokh", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.51255000", + "longitude": "-17.00447000" + }, + { + "id": "104752", + "name": "Pout", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.77099000", + "longitude": "-17.06107000" + }, + { + "id": "104764", + "name": "Thiès", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.73004000", + "longitude": "-16.86974000" + }, + { + "id": "104765", + "name": "Thiès Nones", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.78333000", + "longitude": "-16.96667000" + }, + { + "id": "104766", + "name": "Tiadiaye", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.41667000", + "longitude": "-16.70000000" + }, + { + "id": "104768", + "name": "Tivaouane", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "15.08519000", + "longitude": "-16.71058000" + }, + { + "id": "104773", + "name": "Warang", + "state_id": 484, + "state_code": "TH", + "country_id": 195, + "country_code": "SN", + "latitude": "14.37349000", + "longitude": "-16.94366000" + }, + { + "id": "104702", + "name": "Adéane", + "state_id": 478, + "state_code": "ZG", + "country_id": 195, + "country_code": "SN", + "latitude": "12.63000000", + "longitude": "-16.01694000" + }, + { + "id": "104703", + "name": "Bignona", + "state_id": 478, + "state_code": "ZG", + "country_id": 195, + "country_code": "SN", + "latitude": "12.81028000", + "longitude": "-16.22639000" + }, + { + "id": "104746", + "name": "Oussouye", + "state_id": 478, + "state_code": "ZG", + "country_id": 195, + "country_code": "SN", + "latitude": "12.48500000", + "longitude": "-16.54694000" + }, + { + "id": "104767", + "name": "Tionk Essil", + "state_id": 478, + "state_code": "ZG", + "country_id": 195, + "country_code": "SN", + "latitude": "12.78556000", + "longitude": "-16.52167000" + }, + { + "id": "104774", + "name": "Ziguinchor", + "state_id": 478, + "state_code": "ZG", + "country_id": 195, + "country_code": "SN", + "latitude": "12.56801000", + "longitude": "-16.27326000" + }, + { + "id": "97147", + "name": "Aranđelovac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.30694000", + "longitude": "20.56000000" + }, + { + "id": "97148", + "name": "Arilje", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.75306000", + "longitude": "20.09556000" + }, + { + "id": "97452", + "name": "Ðurići", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.82533000", + "longitude": "19.41233000" + }, + { + "id": "97465", + "name": "Šabac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.74667000", + "longitude": "19.69000000" + }, + { + "id": "97468", + "name": "Ševarice", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.86704000", + "longitude": "19.66006000" + }, + { + "id": "97469", + "name": "Ševica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.50883000", + "longitude": "21.72296000" + }, + { + "id": "97471", + "name": "Štitar", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.79415000", + "longitude": "19.59529000" + }, + { + "id": "97472", + "name": "Šumadija", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.00222000", + "longitude": "20.91778000" + }, + { + "id": "97475", + "name": "Žujince", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.31568000", + "longitude": "21.70212000" + }, + { + "id": "97457", + "name": "Čačak", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.89139000", + "longitude": "20.34972000" + }, + { + "id": "97456", + "name": "Čajetina", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.74977000", + "longitude": "19.71273000" + }, + { + "id": "97462", + "name": "Čokešina", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.65319000", + "longitude": "19.39016000" + }, + { + "id": "97454", + "name": "Ćićevac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.71882000", + "longitude": "21.44085000" + }, + { + "id": "97455", + "name": "Ćuprija", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.92750000", + "longitude": "21.37000000" + }, + { + "id": "97149", + "name": "Badovinci", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.78534000", + "longitude": "19.37146000" + }, + { + "id": "97150", + "name": "Bajina Bašta", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.97083000", + "longitude": "19.56750000" + }, + { + "id": "97157", + "name": "Banovo Polje", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.91040000", + "longitude": "19.44916000" + }, + { + "id": "97160", + "name": "Barič", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.65070000", + "longitude": "20.25941000" + }, + { + "id": "97174", + "name": "Bečmen", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.77983000", + "longitude": "20.20577000" + }, + { + "id": "97170", + "name": "Belgrade", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.80401000", + "longitude": "20.46513000" + }, + { + "id": "97172", + "name": "Belotić", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.81782000", + "longitude": "19.54801000" + }, + { + "id": "97176", + "name": "Biljača", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.35518000", + "longitude": "21.74781000" + }, + { + "id": "97177", + "name": "Bogatić", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.83750000", + "longitude": "19.48056000" + }, + { + "id": "97179", + "name": "Bogosavac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.71799000", + "longitude": "19.59533000" + }, + { + "id": "97181", + "name": "Boljevci", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.72355000", + "longitude": "20.22348000" + }, + { + "id": "97182", + "name": "Bor", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.36667000", + "longitude": "22.25000000" + }, + { + "id": "97186", + "name": "Brdarica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.55376000", + "longitude": "19.77150000" + }, + { + "id": "97187", + "name": "Bukor", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.49523000", + "longitude": "19.57116000" + }, + { + "id": "97190", + "name": "Crna Bara", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.87374000", + "longitude": "19.39480000" + }, + { + "id": "97193", + "name": "Dobanovci", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.82631000", + "longitude": "20.22487000" + }, + { + "id": "97195", + "name": "Dobrić", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.70224000", + "longitude": "19.57931000" + }, + { + "id": "97196", + "name": "Donji Dobrić", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.61183000", + "longitude": "19.33109000" + }, + { + "id": "97197", + "name": "Donji Milanovac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.46593000", + "longitude": "22.15170000" + }, + { + "id": "97199", + "name": "Draginje", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.53302000", + "longitude": "19.76250000" + }, + { + "id": "97200", + "name": "Drenovac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.86649000", + "longitude": "19.70943000" + }, + { + "id": "97201", + "name": "Dublje", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.80117000", + "longitude": "19.50902000" + }, + { + "id": "97202", + "name": "Duboka", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.52223000", + "longitude": "21.76030000" + }, + { + "id": "97209", + "name": "Glušci", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.89021000", + "longitude": "19.54913000" + }, + { + "id": "97210", + "name": "Golubac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.65296000", + "longitude": "21.63199000" + }, + { + "id": "97212", + "name": "Gornja Bukovica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.33987000", + "longitude": "19.81368000" + }, + { + "id": "97214", + "name": "Gornji Milanovac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.02603000", + "longitude": "20.46152000" + }, + { + "id": "97215", + "name": "Grabovac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.60049000", + "longitude": "20.08539000" + }, + { + "id": "97226", + "name": "Jablanica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.99528000", + "longitude": "21.91778000" + }, + { + "id": "97227", + "name": "Jadranska Lešnica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.59730000", + "longitude": "19.35209000" + }, + { + "id": "97228", + "name": "Jagodina", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.97713000", + "longitude": "21.26121000" + }, + { + "id": "97231", + "name": "Jarebice", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.53995000", + "longitude": "19.42418000" + }, + { + "id": "97235", + "name": "Jelenča", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.72700000", + "longitude": "19.73500000" + }, + { + "id": "97237", + "name": "Jevremovac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.72172000", + "longitude": "19.66364000" + }, + { + "id": "97238", + "name": "Joševa", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.58772000", + "longitude": "19.40967000" + }, + { + "id": "97239", + "name": "Kamenica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.34300000", + "longitude": "19.72333000" + }, + { + "id": "97245", + "name": "Klenje", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.80794000", + "longitude": "19.43508000" + }, + { + "id": "97247", + "name": "Knjazevac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.56634000", + "longitude": "22.25701000" + }, + { + "id": "97248", + "name": "Kolubara", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.26333000", + "longitude": "19.88750000" + }, + { + "id": "97255", + "name": "Kozjak", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.58727000", + "longitude": "19.28412000" + }, + { + "id": "97256", + "name": "Kragujevac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.01667000", + "longitude": "20.91667000" + }, + { + "id": "97258", + "name": "Kraljevo", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.72583000", + "longitude": "20.68944000" + }, + { + "id": "97259", + "name": "Krivaja", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.55021000", + "longitude": "19.59153000" + }, + { + "id": "97261", + "name": "Kruševac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.58000000", + "longitude": "21.33389000" + }, + { + "id": "97260", + "name": "Krupanj", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.36556000", + "longitude": "19.36194000" + }, + { + "id": "97268", + "name": "Lagja e Poshtme", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.38853000", + "longitude": "21.72971000" + }, + { + "id": "97269", + "name": "Lapovo", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.18424000", + "longitude": "21.09727000" + }, + { + "id": "97270", + "name": "Lazarevac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.38534000", + "longitude": "20.25570000" + }, + { + "id": "97273", + "name": "Lešnica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.65250000", + "longitude": "19.31000000" + }, + { + "id": "97272", + "name": "Leskovac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.99806000", + "longitude": "21.94611000" + }, + { + "id": "97274", + "name": "Lipnički Šor", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.58058000", + "longitude": "19.26572000" + }, + { + "id": "97275", + "name": "Lipolist", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.69783000", + "longitude": "19.50101000" + }, + { + "id": "97276", + "name": "Ljig", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.23007000", + "longitude": "20.23819000" + }, + { + "id": "97277", + "name": "Ljubovija", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.18944000", + "longitude": "19.37667000" + }, + { + "id": "97281", + "name": "Lugavčina", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.52314000", + "longitude": "21.07083000" + }, + { + "id": "97289", + "name": "Mačva", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.61472000", + "longitude": "19.47222000" + }, + { + "id": "97284", + "name": "Majdanpek", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.42771000", + "longitude": "21.94596000" + }, + { + "id": "97285", + "name": "Majur", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.77105000", + "longitude": "19.65512000" + }, + { + "id": "97286", + "name": "Mala Moštanica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.63834000", + "longitude": "20.30600000" + }, + { + "id": "97287", + "name": "Mali Zvornik", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.37344000", + "longitude": "19.10651000" + }, + { + "id": "97292", + "name": "Metković", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.85617000", + "longitude": "19.54654000" + }, + { + "id": "97295", + "name": "Miratovac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.25846000", + "longitude": "21.66456000" + }, + { + "id": "97298", + "name": "Morava", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.80389000", + "longitude": "20.17806000" + }, + { + "id": "97301", + "name": "Negotin", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.22639000", + "longitude": "22.53083000" + }, + { + "id": "97305", + "name": "Niš", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.32472000", + "longitude": "21.90333000" + }, + { + "id": "97306", + "name": "Nišava", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.32306000", + "longitude": "21.89444000" + }, + { + "id": "97314", + "name": "Novi Pazar", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.13667000", + "longitude": "20.51222000" + }, + { + "id": "97318", + "name": "Novo Selo", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.67041000", + "longitude": "19.34495000" + }, + { + "id": "97319", + "name": "Obrenovac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.65486000", + "longitude": "20.20017000" + }, + { + "id": "97323", + "name": "Osečina", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.37306000", + "longitude": "19.60139000" + }, + { + "id": "97324", + "name": "Osječenik", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.14528000", + "longitude": "19.85889000" + }, + { + "id": "97326", + "name": "Ostružnica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.72769000", + "longitude": "20.31845000" + }, + { + "id": "97327", + "name": "Ovča", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.88349000", + "longitude": "20.53336000" + }, + { + "id": "97331", + "name": "Paraćin", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.86083000", + "longitude": "21.40778000" + }, + { + "id": "97351", + "name": "Pčinja", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.56278000", + "longitude": "21.88250000" + }, + { + "id": "97334", + "name": "Petkovica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.66627000", + "longitude": "19.43923000" + }, + { + "id": "97337", + "name": "Pirot", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.17528000", + "longitude": "22.59278000" + }, + { + "id": "97343", + "name": "Požarevac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.62133000", + "longitude": "21.18782000" + }, + { + "id": "97340", + "name": "Pocerski Pričinović", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.72222000", + "longitude": "19.70722000" + }, + { + "id": "97341", + "name": "Podunavlje District", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.48417000", + "longitude": "20.91167000" + }, + { + "id": "97342", + "name": "Pomoravlje", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.93667000", + "longitude": "21.40222000" + }, + { + "id": "97344", + "name": "Priboj", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.58306000", + "longitude": "19.52519000" + }, + { + "id": "97346", + "name": "Prijepolje", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.38996000", + "longitude": "19.64870000" + }, + { + "id": "97347", + "name": "Prislonica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.95223000", + "longitude": "20.43521000" + }, + { + "id": "97348", + "name": "Prnjavor", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.70061000", + "longitude": "19.38695000" + }, + { + "id": "97349", + "name": "Prokuplje", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.23417000", + "longitude": "21.58806000" + }, + { + "id": "97361", + "name": "Raška", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.26694000", + "longitude": "20.65278000" + }, + { + "id": "97352", + "name": "Radenka", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.58345000", + "longitude": "21.76469000" + }, + { + "id": "97355", + "name": "Radovnica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.43364000", + "longitude": "22.22861000" + }, + { + "id": "97356", + "name": "Rajince", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.37870000", + "longitude": "21.69591000" + }, + { + "id": "97357", + "name": "Rasina", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.55917000", + "longitude": "21.21472000" + }, + { + "id": "97362", + "name": "Ribari", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.70961000", + "longitude": "19.42472000" + }, + { + "id": "97368", + "name": "Rušanj", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.68477000", + "longitude": "20.44993000" + }, + { + "id": "97366", + "name": "Rumska", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.57261000", + "longitude": "19.58988000" + }, + { + "id": "97371", + "name": "Salaš Crnobarski", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.82843000", + "longitude": "19.39437000" + }, + { + "id": "97373", + "name": "Samoljica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.38445000", + "longitude": "21.73708000" + }, + { + "id": "97380", + "name": "Sinošević", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.61503000", + "longitude": "19.63601000" + }, + { + "id": "97381", + "name": "Sjenica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.27306000", + "longitude": "19.99944000" + }, + { + "id": "97382", + "name": "Smederevo", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.66436000", + "longitude": "20.92763000" + }, + { + "id": "97383", + "name": "Smederevska Palanka", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.36548000", + "longitude": "20.95885000" + }, + { + "id": "97384", + "name": "Sokolovica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.21528000", + "longitude": "20.31556000" + }, + { + "id": "97385", + "name": "Sokolovo Brdo", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.13694000", + "longitude": "19.80556000" + }, + { + "id": "97390", + "name": "Sremčica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.67653000", + "longitude": "20.39232000" + }, + { + "id": "97399", + "name": "Stepojevac", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.51278000", + "longitude": "20.29500000" + }, + { + "id": "97400", + "name": "Stubline", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.57476000", + "longitude": "20.13477000" + }, + { + "id": "97402", + "name": "Sumulicë", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.38682000", + "longitude": "21.73400000" + }, + { + "id": "97404", + "name": "Surčin", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.79306000", + "longitude": "20.28028000" + }, + { + "id": "97406", + "name": "Tabanović", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.82018000", + "longitude": "19.64128000" + }, + { + "id": "97412", + "name": "Toplica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.14194000", + "longitude": "21.27806000" + }, + { + "id": "97416", + "name": "Tršić", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.49502000", + "longitude": "19.26490000" + }, + { + "id": "97415", + "name": "Trstenik", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.61694000", + "longitude": "21.00250000" + }, + { + "id": "97417", + "name": "Turija", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.52273000", + "longitude": "21.63945000" + }, + { + "id": "97418", + "name": "Tutin", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.99028000", + "longitude": "20.33139000" + }, + { + "id": "97424", + "name": "Užice", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.85861000", + "longitude": "19.84878000" + }, + { + "id": "97419", + "name": "Ugrinovci", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.87635000", + "longitude": "20.18763000" + }, + { + "id": "97421", + "name": "Umka", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.67806000", + "longitude": "20.30472000" + }, + { + "id": "97423", + "name": "Uzveće", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.87861000", + "longitude": "19.60356000" + }, + { + "id": "97425", + "name": "Valjevo", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.27513000", + "longitude": "19.89821000" + }, + { + "id": "97426", + "name": "Varna", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.67914000", + "longitude": "19.65150000" + }, + { + "id": "97428", + "name": "Velika Moštanica", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.66486000", + "longitude": "20.35395000" + }, + { + "id": "97434", + "name": "Vladimirci", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.61472000", + "longitude": "19.78528000" + }, + { + "id": "97439", + "name": "Vranić", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.60237000", + "longitude": "20.32872000" + }, + { + "id": "97440", + "name": "Vranje", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "42.55139000", + "longitude": "21.90028000" + }, + { + "id": "97443", + "name": "Vrnjačka Banja", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.62725000", + "longitude": "20.89634000" + }, + { + "id": "97445", + "name": "Zaječar", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.69917000", + "longitude": "21.98778000" + }, + { + "id": "97446", + "name": "Zemun", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.84580000", + "longitude": "20.40116000" + }, + { + "id": "97447", + "name": "Zlatibor", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "43.72900000", + "longitude": "19.70029000" + }, + { + "id": "97449", + "name": "Zminjak", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.75711000", + "longitude": "19.47070000" + }, + { + "id": "97451", + "name": "Zvečka", + "state_id": 3716, + "state_code": "02", + "country_id": 196, + "country_code": "RS", + "latitude": "44.64025000", + "longitude": "20.16432000" + }, + { + "id": "97142", + "name": "Adorjan", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "46.00333000", + "longitude": "20.04007000" + }, + { + "id": "97143", + "name": "Aleksandrovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.63755000", + "longitude": "20.59288000" + }, + { + "id": "97144", + "name": "Alibunar", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.08083000", + "longitude": "20.96583000" + }, + { + "id": "97145", + "name": "Apatin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.67260000", + "longitude": "18.97800000" + }, + { + "id": "97146", + "name": "Aradac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.38346000", + "longitude": "20.30137000" + }, + { + "id": "97453", + "name": "Ðurđevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.32591000", + "longitude": "20.06532000" + }, + { + "id": "97467", + "name": "Šašinci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.96514000", + "longitude": "19.74151000" + }, + { + "id": "97466", + "name": "Šajkaš", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.27315000", + "longitude": "20.09051000" + }, + { + "id": "97470", + "name": "Šimanovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.87393000", + "longitude": "20.09175000" + }, + { + "id": "97473", + "name": "Žabalj", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.37222000", + "longitude": "20.06389000" + }, + { + "id": "97474", + "name": "Žitište", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.48500000", + "longitude": "20.54972000" + }, + { + "id": "97458", + "name": "Čelarevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.26999000", + "longitude": "19.52484000" + }, + { + "id": "97459", + "name": "Čenta", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.10814000", + "longitude": "20.38947000" + }, + { + "id": "97460", + "name": "Čestereg", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.56361000", + "longitude": "20.53194000" + }, + { + "id": "97461", + "name": "Čoka", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.94250000", + "longitude": "20.14333000" + }, + { + "id": "97463", + "name": "Čortanovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.15460000", + "longitude": "20.01851000" + }, + { + "id": "97464", + "name": "Čurug", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.47221000", + "longitude": "20.06861000" + }, + { + "id": "97161", + "name": "Bačka Palanka", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.24966000", + "longitude": "19.39664000" + }, + { + "id": "97162", + "name": "Bačka Topola", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.81516000", + "longitude": "19.63180000" + }, + { + "id": "97163", + "name": "Bački Breg", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.92034000", + "longitude": "18.92944000" + }, + { + "id": "97164", + "name": "Bački Petrovac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.36056000", + "longitude": "19.59167000" + }, + { + "id": "97165", + "name": "Bačko Gradište", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.53271000", + "longitude": "20.03082000" + }, + { + "id": "97166", + "name": "Bačko Petrovo Selo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.70681000", + "longitude": "20.07928000" + }, + { + "id": "97167", + "name": "Bašaid", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.64102000", + "longitude": "20.41434000" + }, + { + "id": "97151", + "name": "Banatska Topola", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.67248000", + "longitude": "20.46530000" + }, + { + "id": "97152", + "name": "Banatski Despotovac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.36606000", + "longitude": "20.66407000" + }, + { + "id": "97153", + "name": "Banatski Dvor", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.51866000", + "longitude": "20.51146000" + }, + { + "id": "97154", + "name": "Banatski Karlovac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.04987000", + "longitude": "21.01800000" + }, + { + "id": "97155", + "name": "Banatsko Karađorđevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.58693000", + "longitude": "20.56421000" + }, + { + "id": "97156", + "name": "Banatsko Veliko Selo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.81961000", + "longitude": "20.60772000" + }, + { + "id": "97158", + "name": "Baranda", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.08459000", + "longitude": "20.44264000" + }, + { + "id": "97159", + "name": "Barice", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.18189000", + "longitude": "21.08279000" + }, + { + "id": "97173", + "name": "Bečej", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.61632000", + "longitude": "20.03331000" + }, + { + "id": "97175", + "name": "Beška", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.13092000", + "longitude": "20.06698000" + }, + { + "id": "97168", + "name": "Bela Crkva", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.89750000", + "longitude": "21.41722000" + }, + { + "id": "97169", + "name": "Belegiš", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.01920000", + "longitude": "20.33323000" + }, + { + "id": "97171", + "name": "Belo Blato", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.27278000", + "longitude": "20.37500000" + }, + { + "id": "97185", + "name": "Bočar", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.76994000", + "longitude": "20.28390000" + }, + { + "id": "97178", + "name": "Bogojevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.53015000", + "longitude": "19.13022000" + }, + { + "id": "97180", + "name": "Boka", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.35540000", + "longitude": "20.82987000" + }, + { + "id": "97183", + "name": "Bosut", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.92977000", + "longitude": "19.36086000" + }, + { + "id": "97184", + "name": "Botoš", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.30837000", + "longitude": "20.63514000" + }, + { + "id": "97188", + "name": "Buđanovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.89388000", + "longitude": "19.86344000" + }, + { + "id": "97189", + "name": "Crepaja", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.00984000", + "longitude": "20.63702000" + }, + { + "id": "97191", + "name": "Debeljača", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.07070000", + "longitude": "20.60153000" + }, + { + "id": "97192", + "name": "Despotovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.45983000", + "longitude": "19.52653000" + }, + { + "id": "97194", + "name": "Dobrica", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.21339000", + "longitude": "20.84995000" + }, + { + "id": "97198", + "name": "Doroslovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.60699000", + "longitude": "19.18868000" + }, + { + "id": "97204", + "name": "Ečka", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.32328000", + "longitude": "20.44294000" + }, + { + "id": "97203", + "name": "Elemir", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.44263000", + "longitude": "20.30003000" + }, + { + "id": "97205", + "name": "Farkaždin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.19172000", + "longitude": "20.47239000" + }, + { + "id": "97206", + "name": "Gakovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.90078000", + "longitude": "19.06138000" + }, + { + "id": "97207", + "name": "Gardinovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.20359000", + "longitude": "20.13558000" + }, + { + "id": "97208", + "name": "Gložan", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.27954000", + "longitude": "19.56838000" + }, + { + "id": "97211", + "name": "Golubinci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.98533000", + "longitude": "20.06339000" + }, + { + "id": "97213", + "name": "Gornji Breg", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.91995000", + "longitude": "20.01766000" + }, + { + "id": "97216", + "name": "Grabovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.76496000", + "longitude": "19.84489000" + }, + { + "id": "97217", + "name": "Gudurica", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.16816000", + "longitude": "21.44264000" + }, + { + "id": "97218", + "name": "Hajdučica", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.25010000", + "longitude": "20.96016000" + }, + { + "id": "97219", + "name": "Hetin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.66202000", + "longitude": "20.79138000" + }, + { + "id": "97220", + "name": "Hrtkovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.88155000", + "longitude": "19.76374000" + }, + { + "id": "97221", + "name": "Idvor", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.18895000", + "longitude": "20.51442000" + }, + { + "id": "97222", + "name": "Ilandža", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.16897000", + "longitude": "20.92008000" + }, + { + "id": "97223", + "name": "Inđija", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.04816000", + "longitude": "20.08165000" + }, + { + "id": "97224", + "name": "Irig", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.05230000", + "longitude": "19.84448000" + }, + { + "id": "97225", + "name": "Izbište", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.02253000", + "longitude": "21.18388000" + }, + { + "id": "97234", + "name": "Jaša Tomić", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.44725000", + "longitude": "20.85546000" + }, + { + "id": "97229", + "name": "Janošik", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.17141000", + "longitude": "21.00658000" + }, + { + "id": "97230", + "name": "Jarak", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.91843000", + "longitude": "19.75477000" + }, + { + "id": "97232", + "name": "Jarkovac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.26985000", + "longitude": "20.76078000" + }, + { + "id": "97233", + "name": "Jazovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.89876000", + "longitude": "20.22130000" + }, + { + "id": "97236", + "name": "Jermenovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.18635000", + "longitude": "21.04550000" + }, + { + "id": "97240", + "name": "Kanjiža", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "46.06667000", + "longitude": "20.05000000" + }, + { + "id": "97241", + "name": "Kikinda", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.82972000", + "longitude": "20.46528000" + }, + { + "id": "97242", + "name": "Kisač", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.35421000", + "longitude": "19.72975000" + }, + { + "id": "97243", + "name": "Klek", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.42254000", + "longitude": "20.48049000" + }, + { + "id": "97244", + "name": "Klenak", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.78846000", + "longitude": "19.71004000" + }, + { + "id": "97246", + "name": "Knićanin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.18675000", + "longitude": "20.31900000" + }, + { + "id": "97249", + "name": "Kolut", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.89292000", + "longitude": "18.92760000" + }, + { + "id": "97250", + "name": "Konak", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.31575000", + "longitude": "20.91468000" + }, + { + "id": "97251", + "name": "Kovačica", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.11167000", + "longitude": "20.62139000" + }, + { + "id": "97252", + "name": "Kovilj", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.23422000", + "longitude": "20.02327000" + }, + { + "id": "97253", + "name": "Kovin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.74750000", + "longitude": "20.97611000" + }, + { + "id": "97254", + "name": "Kozjak", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.18264000", + "longitude": "20.86381000" + }, + { + "id": "97257", + "name": "Krajišnik", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.45283000", + "longitude": "20.72976000" + }, + { + "id": "97262", + "name": "Krčedin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.13871000", + "longitude": "20.13308000" + }, + { + "id": "97267", + "name": "Kuštilj", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.03487000", + "longitude": "21.37989000" + }, + { + "id": "97263", + "name": "Kulpin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.40240000", + "longitude": "19.58814000" + }, + { + "id": "97264", + "name": "Kumane", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.53946000", + "longitude": "20.22902000" + }, + { + "id": "97265", + "name": "Kupinovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.70708000", + "longitude": "20.04959000" + }, + { + "id": "97266", + "name": "Kupusina", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.73759000", + "longitude": "19.01082000" + }, + { + "id": "97271", + "name": "Lazarevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.38893000", + "longitude": "20.53999000" + }, + { + "id": "97278", + "name": "Ljukovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.02604000", + "longitude": "20.02737000" + }, + { + "id": "97279", + "name": "Lok", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.21583000", + "longitude": "20.21222000" + }, + { + "id": "97280", + "name": "Lokve", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.15198000", + "longitude": "21.03073000" + }, + { + "id": "97282", + "name": "Lukićevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.33815000", + "longitude": "20.49895000" + }, + { + "id": "97290", + "name": "Mačvanska Mitrovica", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.96739000", + "longitude": "19.59314000" + }, + { + "id": "97283", + "name": "Maglić", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.36248000", + "longitude": "19.53211000" + }, + { + "id": "97288", + "name": "Margita", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.21598000", + "longitude": "21.17527000" + }, + { + "id": "97293", + "name": "Međa", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.53815000", + "longitude": "20.80677000" + }, + { + "id": "97291", + "name": "Melenci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.51680000", + "longitude": "20.31961000" + }, + { + "id": "97294", + "name": "Mihajlovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.47085000", + "longitude": "20.41508000" + }, + { + "id": "97299", + "name": "Mošorin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.30196000", + "longitude": "20.16919000" + }, + { + "id": "97296", + "name": "Mokrin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.93362000", + "longitude": "20.41215000" + }, + { + "id": "97297", + "name": "Mol", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.76457000", + "longitude": "20.13286000" + }, + { + "id": "97300", + "name": "Nakovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.87503000", + "longitude": "20.56709000" + }, + { + "id": "97302", + "name": "Neuzina", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.34460000", + "longitude": "20.71418000" + }, + { + "id": "97303", + "name": "Nikinci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.85017000", + "longitude": "19.82321000" + }, + { + "id": "97304", + "name": "Nikolinci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.05245000", + "longitude": "21.06695000" + }, + { + "id": "97307", + "name": "Nova Crnja", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.66833000", + "longitude": "20.60500000" + }, + { + "id": "97308", + "name": "Nova Pazova", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.94366000", + "longitude": "20.21931000" + }, + { + "id": "97309", + "name": "Novi Banovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.95691000", + "longitude": "20.28076000" + }, + { + "id": "97310", + "name": "Novi Itebej", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.55918000", + "longitude": "20.70030000" + }, + { + "id": "97311", + "name": "Novi Karlovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.07636000", + "longitude": "20.17948000" + }, + { + "id": "97312", + "name": "Novi Kneževac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "46.05000000", + "longitude": "20.10000000" + }, + { + "id": "97313", + "name": "Novi Kozarci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.78241000", + "longitude": "20.62289000" + }, + { + "id": "97315", + "name": "Novi Sad", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.25167000", + "longitude": "19.83694000" + }, + { + "id": "97316", + "name": "Novi Slankamen", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.12554000", + "longitude": "20.23914000" + }, + { + "id": "97317", + "name": "Novo Miloševo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.71916000", + "longitude": "20.30364000" + }, + { + "id": "97320", + "name": "Obrovac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.32106000", + "longitude": "19.35048000" + }, + { + "id": "97321", + "name": "Opovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.05222000", + "longitude": "20.43028000" + }, + { + "id": "97322", + "name": "Orlovat", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.24171000", + "longitude": "20.58089000" + }, + { + "id": "97325", + "name": "Ostojićevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.88863000", + "longitude": "20.16642000" + }, + { + "id": "97328", + "name": "Padej", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.82756000", + "longitude": "20.16279000" + }, + { + "id": "97329", + "name": "Padina", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.11988000", + "longitude": "20.72860000" + }, + { + "id": "97330", + "name": "Pančevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.87177000", + "longitude": "20.64167000" + }, + { + "id": "97332", + "name": "Pavliš", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.10569000", + "longitude": "21.23952000" + }, + { + "id": "97336", + "name": "Pećinci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.90889000", + "longitude": "19.96639000" + }, + { + "id": "97333", + "name": "Perlez", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.20813000", + "longitude": "20.38197000" + }, + { + "id": "97335", + "name": "Petrovaradin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.24667000", + "longitude": "19.87944000" + }, + { + "id": "97338", + "name": "Plandište", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.22722000", + "longitude": "21.12167000" + }, + { + "id": "97339", + "name": "Platičevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.82213000", + "longitude": "19.79487000" + }, + { + "id": "97345", + "name": "Prigrevica", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.67636000", + "longitude": "19.08809000" + }, + { + "id": "97350", + "name": "Putinci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.99259000", + "longitude": "19.97102000" + }, + { + "id": "97353", + "name": "Radenković", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.92191000", + "longitude": "19.49543000" + }, + { + "id": "97354", + "name": "Radojevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.74617000", + "longitude": "20.78917000" + }, + { + "id": "97358", + "name": "Ravni Topolovac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.46082000", + "longitude": "20.56939000" + }, + { + "id": "97359", + "name": "Ravnje", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.94326000", + "longitude": "19.42280000" + }, + { + "id": "97360", + "name": "Ravno Selo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.44967000", + "longitude": "19.62097000" + }, + { + "id": "97363", + "name": "Riđica", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.99088000", + "longitude": "19.10635000" + }, + { + "id": "97364", + "name": "Ruma", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.00806000", + "longitude": "19.82222000" + }, + { + "id": "97365", + "name": "Rumenka", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.29400000", + "longitude": "19.74306000" + }, + { + "id": "97367", + "name": "Rusko Selo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.76291000", + "longitude": "20.57117000" + }, + { + "id": "97369", + "name": "Sajan", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.84227000", + "longitude": "20.27815000" + }, + { + "id": "97370", + "name": "Sakule", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.14667000", + "longitude": "20.48619000" + }, + { + "id": "97372", + "name": "Salaš Noćajski", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.94722000", + "longitude": "19.58611000" + }, + { + "id": "97374", + "name": "Samoš", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.20255000", + "longitude": "20.77392000" + }, + { + "id": "97375", + "name": "Sanad", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.97596000", + "longitude": "20.10816000" + }, + { + "id": "97379", + "name": "Sečanj", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.36667000", + "longitude": "20.77222000" + }, + { + "id": "97376", + "name": "Sefkerin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.00501000", + "longitude": "20.48256000" + }, + { + "id": "97377", + "name": "Seleuš", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.12770000", + "longitude": "20.91461000" + }, + { + "id": "97378", + "name": "Senta", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.92750000", + "longitude": "20.07722000" + }, + { + "id": "97386", + "name": "Sombor", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.77417000", + "longitude": "19.11222000" + }, + { + "id": "97387", + "name": "Sonta", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.59427000", + "longitude": "19.09719000" + }, + { + "id": "97388", + "name": "Sremska Mitrovica", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.97639000", + "longitude": "19.61222000" + }, + { + "id": "97389", + "name": "Sremski Karlovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.20285000", + "longitude": "19.93373000" + }, + { + "id": "97391", + "name": "Srpska Crnja", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.72538000", + "longitude": "20.69008000" + }, + { + "id": "97392", + "name": "Srpski Itebej", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.56715000", + "longitude": "20.71350000" + }, + { + "id": "97393", + "name": "Stajićevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.29489000", + "longitude": "20.45845000" + }, + { + "id": "97394", + "name": "Stanišić", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.93895000", + "longitude": "19.16709000" + }, + { + "id": "97395", + "name": "Stara Pazova", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.98500000", + "longitude": "20.16083000" + }, + { + "id": "97396", + "name": "Stari Banovci", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.98420000", + "longitude": "20.28382000" + }, + { + "id": "97397", + "name": "Stari Lec", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.28401000", + "longitude": "20.96433000" + }, + { + "id": "97398", + "name": "Stepanovićevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.41369000", + "longitude": "19.70000000" + }, + { + "id": "97401", + "name": "Subotica", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "46.10000000", + "longitude": "19.66667000" + }, + { + "id": "97403", + "name": "Surduk", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.07118000", + "longitude": "20.32510000" + }, + { + "id": "97405", + "name": "Sutjeska", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.38312000", + "longitude": "20.69620000" + }, + { + "id": "97407", + "name": "Taraš", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.46737000", + "longitude": "20.19867000" + }, + { + "id": "97408", + "name": "Tiszahegyes", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.82648000", + "longitude": "20.31791000" + }, + { + "id": "97409", + "name": "Titel", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.20611000", + "longitude": "20.29444000" + }, + { + "id": "97410", + "name": "Toba", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.68943000", + "longitude": "20.55714000" + }, + { + "id": "97411", + "name": "Tomaševac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.26855000", + "longitude": "20.62272000" + }, + { + "id": "97413", + "name": "Torak", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.50928000", + "longitude": "20.60900000" + }, + { + "id": "97414", + "name": "Torda", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.58423000", + "longitude": "20.45900000" + }, + { + "id": "97420", + "name": "Uljma", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.04213000", + "longitude": "21.15393000" + }, + { + "id": "97422", + "name": "Uzdin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.20512000", + "longitude": "20.62342000" + }, + { + "id": "97427", + "name": "Velika Greda", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.24376000", + "longitude": "21.03498000" + }, + { + "id": "97429", + "name": "Veliki Gaj", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.28849000", + "longitude": "21.17057000" + }, + { + "id": "97430", + "name": "Veliko Središte", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.17919000", + "longitude": "21.40353000" + }, + { + "id": "97431", + "name": "Veternik", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.25446000", + "longitude": "19.75880000" + }, + { + "id": "97433", + "name": "Višnjićevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.96731000", + "longitude": "19.28993000" + }, + { + "id": "97432", + "name": "Vilovo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.24859000", + "longitude": "20.15521000" + }, + { + "id": "97435", + "name": "Vladimirovac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.03122000", + "longitude": "20.86566000" + }, + { + "id": "97436", + "name": "Vlajkovac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.07207000", + "longitude": "21.19945000" + }, + { + "id": "97437", + "name": "Vojka", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "44.93713000", + "longitude": "20.15236000" + }, + { + "id": "97438", + "name": "Vojvoda Stepa", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.68537000", + "longitude": "20.65536000" + }, + { + "id": "97444", + "name": "Vršac", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.11667000", + "longitude": "21.30361000" + }, + { + "id": "97441", + "name": "Vrbas", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.57139000", + "longitude": "19.64083000" + }, + { + "id": "97442", + "name": "Vrdnik", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.12174000", + "longitude": "19.79227000" + }, + { + "id": "97448", + "name": "Zmajevo", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.45408000", + "longitude": "19.69050000" + }, + { + "id": "97450", + "name": "Zrenjanin", + "state_id": 3733, + "state_code": "VO", + "country_id": 196, + "country_code": "RS", + "latitude": "45.38361000", + "longitude": "20.38194000" + }, + { + "id": "102906", + "name": "Anse Boileau", + "state_id": 513, + "state_code": "02", + "country_id": 197, + "country_code": "SC", + "latitude": "-4.71667000", + "longitude": "55.48333000" + }, + { + "id": "102907", + "name": "Anse Royale", + "state_id": 502, + "state_code": "05", + "country_id": 197, + "country_code": "SC", + "latitude": "-4.73333000", + "longitude": "55.51667000" + }, + { + "id": "102908", + "name": "Beau Vallon", + "state_id": 512, + "state_code": "08", + "country_id": 197, + "country_code": "SC", + "latitude": "-4.62091000", + "longitude": "55.43015000" + }, + { + "id": "102909", + "name": "Bel Ombre", + "state_id": 505, + "state_code": "10", + "country_id": 197, + "country_code": "SC", + "latitude": "-4.61667000", + "longitude": "55.41667000" + }, + { + "id": "102910", + "name": "Cascade", + "state_id": 517, + "state_code": "11", + "country_id": 197, + "country_code": "SC", + "latitude": "-4.66667000", + "longitude": "55.50000000" + }, + { + "id": "102913", + "name": "Victoria", + "state_id": 516, + "state_code": "16", + "country_id": 197, + "country_code": "SC", + "latitude": "-4.62001000", + "longitude": "55.45501000" + }, + { + "id": "102911", + "name": "Port Glaud", + "state_id": 507, + "state_code": "21", + "country_id": 197, + "country_code": "SC", + "latitude": "-4.66667000", + "longitude": "55.41667000" + }, + { + "id": "102912", + "name": "Takamaka", + "state_id": 509, + "state_code": "23", + "country_id": 197, + "country_code": "SC", + "latitude": "-4.76667000", + "longitude": "55.50000000" + }, + { + "id": "104606", + "name": "Barma", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.34959000", + "longitude": "-11.33059000" + }, + { + "id": "104609", + "name": "Blama", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.87481000", + "longitude": "-11.34548000" + }, + { + "id": "104612", + "name": "Boajibu", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.18763000", + "longitude": "-11.34026000" + }, + { + "id": "104617", + "name": "Buedu", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.27960000", + "longitude": "-10.37135000" + }, + { + "id": "104620", + "name": "Bunumbu", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.17421000", + "longitude": "-10.86432000" + }, + { + "id": "104621", + "name": "Daru", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.98976000", + "longitude": "-10.84223000" + }, + { + "id": "104627", + "name": "Giehun", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.88405000", + "longitude": "-11.04908000" + }, + { + "id": "104628", + "name": "Gorahun", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.46439000", + "longitude": "-11.23952000" + }, + { + "id": "104629", + "name": "Hangha", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.93974000", + "longitude": "-11.14132000" + }, + { + "id": "104631", + "name": "Jojoima", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.87815000", + "longitude": "-10.78976000" + }, + { + "id": "104633", + "name": "Kailahun", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.27890000", + "longitude": "-10.57300000" + }, + { + "id": "104634", + "name": "Kailahun District", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.10768000", + "longitude": "-10.75146000" + }, + { + "id": "104638", + "name": "Kayima", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.88790000", + "longitude": "-11.15932000" + }, + { + "id": "104639", + "name": "Kenema", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.87687000", + "longitude": "-11.19025000" + }, + { + "id": "104640", + "name": "Kenema District", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.95171000", + "longitude": "-11.19004000" + }, + { + "id": "104642", + "name": "Koidu", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.64387000", + "longitude": "-10.97140000" + }, + { + "id": "104645", + "name": "Kono District", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.70687000", + "longitude": "-10.93368000" + }, + { + "id": "104647", + "name": "Koyima", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.70552000", + "longitude": "-11.02241000" + }, + { + "id": "104658", + "name": "Manowa", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.17392000", + "longitude": "-10.74834000" + }, + { + "id": "104662", + "name": "Mobai", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.99343000", + "longitude": "-10.75355000" + }, + { + "id": "104664", + "name": "Motema", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.61427000", + "longitude": "-11.01252000" + }, + { + "id": "104668", + "name": "Panguma", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.18507000", + "longitude": "-11.13290000" + }, + { + "id": "104669", + "name": "Pendembu", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.09807000", + "longitude": "-10.69429000" + }, + { + "id": "104677", + "name": "Segbwema", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "7.99471000", + "longitude": "-10.95020000" + }, + { + "id": "104680", + "name": "Simbakoro", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.61243000", + "longitude": "-11.00755000" + }, + { + "id": "104682", + "name": "Tefeya", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.70395000", + "longitude": "-11.21260000" + }, + { + "id": "104684", + "name": "Tombodu", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.13526000", + "longitude": "-10.61960000" + }, + { + "id": "104685", + "name": "Tombu", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.53991000", + "longitude": "-10.73132000" + }, + { + "id": "104689", + "name": "Wima", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.30052000", + "longitude": "-11.20455000" + }, + { + "id": "104690", + "name": "Yengema", + "state_id": 914, + "state_code": "E", + "country_id": 198, + "country_code": "SL", + "latitude": "8.71441000", + "longitude": "-11.17057000" + }, + { + "id": "104603", + "name": "Alikalia", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.15356000", + "longitude": "-11.38712000" + }, + { + "id": "104607", + "name": "Bindi", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.91376000", + "longitude": "-11.44669000" + }, + { + "id": "104608", + "name": "Binkolo", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.95225000", + "longitude": "-11.98029000" + }, + { + "id": "104613", + "name": "Bombali District", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.28444000", + "longitude": "-12.16449000" + }, + { + "id": "104618", + "name": "Bumbuna", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.04466000", + "longitude": "-11.74576000" + }, + { + "id": "104625", + "name": "Gberia Fotombu", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.87852000", + "longitude": "-11.16548000" + }, + { + "id": "104632", + "name": "Kabala", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.58893000", + "longitude": "-11.55256000" + }, + { + "id": "104635", + "name": "Kamakwie", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.49689000", + "longitude": "-12.24061000" + }, + { + "id": "104636", + "name": "Kambia", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.12504000", + "longitude": "-12.91816000" + }, + { + "id": "104637", + "name": "Kassiri", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.93814000", + "longitude": "-13.11541000" + }, + { + "id": "104643", + "name": "Koinadugu District", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.50991000", + "longitude": "-11.34601000" + }, + { + "id": "104644", + "name": "Konakridee", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.69778000", + "longitude": "-13.23917000" + }, + { + "id": "104648", + "name": "Kukuna", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.39841000", + "longitude": "-12.66476000" + }, + { + "id": "104650", + "name": "Loma", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.75931000", + "longitude": "-12.03383000" + }, + { + "id": "104651", + "name": "Lunsar", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.68439000", + "longitude": "-12.53499000" + }, + { + "id": "104652", + "name": "Magburaka", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.72306000", + "longitude": "-11.94880000" + }, + { + "id": "104653", + "name": "Makali", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.62964000", + "longitude": "-11.66168000" + }, + { + "id": "104654", + "name": "Makeni", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.88605000", + "longitude": "-12.04417000" + }, + { + "id": "104655", + "name": "Mambolo", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.91860000", + "longitude": "-13.03674000" + }, + { + "id": "104657", + "name": "Mange", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.92262000", + "longitude": "-12.85688000" + }, + { + "id": "104659", + "name": "Masaka", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.66492000", + "longitude": "-11.80260000" + }, + { + "id": "104660", + "name": "Masingbi", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.78197000", + "longitude": "-11.95171000" + }, + { + "id": "104661", + "name": "Masoyila", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.61119000", + "longitude": "-13.19101000" + }, + { + "id": "104670", + "name": "Pepel", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.58611000", + "longitude": "-13.05444000" + }, + { + "id": "104674", + "name": "Rokupr", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.67121000", + "longitude": "-12.38497000" + }, + { + "id": "104676", + "name": "Sawkta", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.63230000", + "longitude": "-13.20250000" + }, + { + "id": "104678", + "name": "Seidu", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "9.01801000", + "longitude": "-10.59496000" + }, + { + "id": "104683", + "name": "Tintafor", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.62667000", + "longitude": "-13.21500000" + }, + { + "id": "104687", + "name": "Tonkolili District", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.61885000", + "longitude": "-11.84173000" + }, + { + "id": "104691", + "name": "Yonibana", + "state_id": 911, + "state_code": "N", + "country_id": 198, + "country_code": "SL", + "latitude": "8.44347000", + "longitude": "-12.23929000" + }, + { + "id": "104604", + "name": "Baiima", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "8.10826000", + "longitude": "-11.84772000" + }, + { + "id": "104605", + "name": "Baoma", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.99344000", + "longitude": "-11.71468000" + }, + { + "id": "104610", + "name": "Bo", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.96472000", + "longitude": "-11.73833000" + }, + { + "id": "104611", + "name": "Bo District", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.98877000", + "longitude": "-11.67340000" + }, + { + "id": "104614", + "name": "Bomi", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.24611000", + "longitude": "-11.52583000" + }, + { + "id": "104615", + "name": "Bonthe", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.52639000", + "longitude": "-12.50500000" + }, + { + "id": "104616", + "name": "Bonthe District", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.51622000", + "longitude": "-12.33591000" + }, + { + "id": "104619", + "name": "Bumpe", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.89209000", + "longitude": "-11.90541000" + }, + { + "id": "104622", + "name": "Foindu", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.40906000", + "longitude": "-11.54328000" + }, + { + "id": "104624", + "name": "Gandorhun", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.55502000", + "longitude": "-11.69260000" + }, + { + "id": "104626", + "name": "Gbewebu", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.55091000", + "longitude": "-11.60750000" + }, + { + "id": "104646", + "name": "Koribundu", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.70952000", + "longitude": "-11.69354000" + }, + { + "id": "104649", + "name": "Largo", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "8.27903000", + "longitude": "-12.15780000" + }, + { + "id": "104656", + "name": "Mamboma", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "8.08742000", + "longitude": "-11.68841000" + }, + { + "id": "104663", + "name": "Mogbwemo", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.76237000", + "longitude": "-12.30864000" + }, + { + "id": "104665", + "name": "Moyamba", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "8.15898000", + "longitude": "-12.43168000" + }, + { + "id": "104666", + "name": "Moyamba District", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "8.06290000", + "longitude": "-12.44401000" + }, + { + "id": "104667", + "name": "Palima", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "8.11996000", + "longitude": "-11.50702000" + }, + { + "id": "104671", + "name": "Potoru", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.50596000", + "longitude": "-11.47897000" + }, + { + "id": "104672", + "name": "Pujehun", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.35806000", + "longitude": "-11.72083000" + }, + { + "id": "104673", + "name": "Pujehun District", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.31855000", + "longitude": "-11.57920000" + }, + { + "id": "104675", + "name": "Rotifunk", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "8.22591000", + "longitude": "-12.67760000" + }, + { + "id": "104679", + "name": "Serabu", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.79311000", + "longitude": "-12.05294000" + }, + { + "id": "104681", + "name": "Sumbuya", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.64789000", + "longitude": "-11.96060000" + }, + { + "id": "104686", + "name": "Tongole", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.45092000", + "longitude": "-11.90071000" + }, + { + "id": "104692", + "name": "Zimmi", + "state_id": 912, + "state_code": "S", + "country_id": 198, + "country_code": "SL", + "latitude": "7.31356000", + "longitude": "-11.30818000" + }, + { + "id": "104623", + "name": "Freetown", + "state_id": 913, + "state_code": "W", + "country_id": 198, + "country_code": "SL", + "latitude": "8.48714000", + "longitude": "-13.23560000" + }, + { + "id": "104630", + "name": "Hastings", + "state_id": 913, + "state_code": "W", + "country_id": 198, + "country_code": "SL", + "latitude": "8.37994000", + "longitude": "-13.13693000" + }, + { + "id": "104641", + "name": "Kent", + "state_id": 913, + "state_code": "W", + "country_id": 198, + "country_code": "SL", + "latitude": "8.33333000", + "longitude": "-13.06667000" + }, + { + "id": "104688", + "name": "Waterloo", + "state_id": 913, + "state_code": "W", + "country_id": 198, + "country_code": "SL", + "latitude": "8.33890000", + "longitude": "-13.07091000" + }, + { + "id": "104057", + "name": "Singapore", + "state_id": 4651, + "state_code": "01", + "country_id": 199, + "country_code": "SG", + "latitude": "1.28967000", + "longitude": "103.85007000" + }, + { + "id": "104058", + "name": "Woodlands", + "state_id": 4653, + "state_code": "03", + "country_id": 199, + "country_code": "SG", + "latitude": "1.43801000", + "longitude": "103.78877000" + }, + { + "id": "104602", + "name": "Žilina", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.22315000", + "longitude": "18.73941000" + }, + { + "id": "104587", + "name": "Čadca", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.43503000", + "longitude": "18.78895000" + }, + { + "id": "104378", + "name": "Bytča", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.22404000", + "longitude": "18.55878000" + }, + { + "id": "104383", + "name": "Dolný Kubín", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.20983000", + "longitude": "19.30341000" + }, + { + "id": "104401", + "name": "Hybe", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.04439000", + "longitude": "19.82895000" + }, + { + "id": "104414", + "name": "Krasňany", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.21491000", + "longitude": "18.88718000" + }, + { + "id": "104418", + "name": "Kysucké Nové Mesto", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.30000000", + "longitude": "18.78333000" + }, + { + "id": "104427", + "name": "Lúčky", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.12944000", + "longitude": "19.40228000" + }, + { + "id": "104424", + "name": "Liptovský Hrádok", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.03962000", + "longitude": "19.72335000" + }, + { + "id": "104425", + "name": "Liptovský Mikuláš", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.08061000", + "longitude": "19.62218000" + }, + { + "id": "104430", + "name": "Martin", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.06651000", + "longitude": "18.92399000" + }, + { + "id": "104446", + "name": "Námestovo", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.40790000", + "longitude": "19.48032000" + }, + { + "id": "104439", + "name": "Nižná", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.31046000", + "longitude": "19.52428000" + }, + { + "id": "104520", + "name": "Okres Žilina", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.22303000", + "longitude": "18.74044000" + }, + { + "id": "104516", + "name": "Okres Čadca", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.43333000", + "longitude": "18.78333000" + }, + { + "id": "104456", + "name": "Okres Bytča", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.22267000", + "longitude": "18.55844000" + }, + { + "id": "104459", + "name": "Okres Dolný Kubín", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.20000000", + "longitude": "19.30000000" + }, + { + "id": "104470", + "name": "Okres Kysucké Nové Mesto", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.30206000", + "longitude": "18.78603000" + }, + { + "id": "104473", + "name": "Okres Liptovský Mikuláš", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.08333000", + "longitude": "19.61667000" + }, + { + "id": "104476", + "name": "Okres Martin", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.06667000", + "longitude": "18.93333000" + }, + { + "id": "104480", + "name": "Okres Namestovo", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.40651000", + "longitude": "19.47670000" + }, + { + "id": "104495", + "name": "Okres Ružomberok", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.07494000", + "longitude": "19.30083000" + }, + { + "id": "104510", + "name": "Okres Turčianske Teplice", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.86283000", + "longitude": "18.85759000" + }, + { + "id": "104511", + "name": "Okres Tvrdošín", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.33421000", + "longitude": "19.55461000" + }, + { + "id": "104521", + "name": "Oravská Lesná", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.36672000", + "longitude": "19.18093000" + }, + { + "id": "104522", + "name": "Oravský Podzámok", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.25939000", + "longitude": "19.35690000" + }, + { + "id": "104531", + "name": "Pribylina", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.09950000", + "longitude": "19.79427000" + }, + { + "id": "104534", + "name": "Rajec", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.08899000", + "longitude": "18.64007000" + }, + { + "id": "104538", + "name": "Ružomberok", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.07480000", + "longitude": "19.30751000" + }, + { + "id": "104561", + "name": "Terchová", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.25895000", + "longitude": "19.02935000" + }, + { + "id": "104569", + "name": "Trstená", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.36101000", + "longitude": "19.61249000" + }, + { + "id": "104571", + "name": "Turčianske Teplice", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.86225000", + "longitude": "18.86048000" + }, + { + "id": "104570", + "name": "Turzovka", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.40429000", + "longitude": "18.62258000" + }, + { + "id": "104572", + "name": "Tvrdošín", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.33700000", + "longitude": "19.55600000" + }, + { + "id": "104581", + "name": "Vrútky", + "state_id": 4359, + "state_code": "ZI", + "country_id": 200, + "country_code": "SK", + "latitude": "49.11328000", + "longitude": "18.91714000" + }, + { + "id": "104597", + "name": "Žarnovica", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.48123000", + "longitude": "18.71565000" + }, + { + "id": "104601", + "name": "Žiar nad Hronom", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.59184000", + "longitude": "18.84958000" + }, + { + "id": "104589", + "name": "Čierny Balog", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.74722000", + "longitude": "19.65125000" + }, + { + "id": "104371", + "name": "Banská Štiavnica", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.44858000", + "longitude": "18.91003000" + }, + { + "id": "104370", + "name": "Banská Bystrica", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.73946000", + "longitude": "19.15349000" + }, + { + "id": "104376", + "name": "Brezno", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.80431000", + "longitude": "19.63631000" + }, + { + "id": "104381", + "name": "Detva", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.56082000", + "longitude": "19.41954000" + }, + { + "id": "104385", + "name": "Dudince", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.17135000", + "longitude": "18.88782000" + }, + { + "id": "104388", + "name": "Fiľakovo", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.26757000", + "longitude": "19.82473000" + }, + { + "id": "104397", + "name": "Hriňová", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.57787000", + "longitude": "19.52574000" + }, + { + "id": "104398", + "name": "Hrochoť,Slovakia", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.65567000", + "longitude": "19.31284000" + }, + { + "id": "104408", + "name": "Kováčová", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.60148000", + "longitude": "19.10252000" + }, + { + "id": "104415", + "name": "Kremnica", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.70519000", + "longitude": "18.91834000" + }, + { + "id": "104417", + "name": "Krupina", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.35540000", + "longitude": "19.06474000" + }, + { + "id": "104426", + "name": "Lučenec", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.33249000", + "longitude": "19.66708000" + }, + { + "id": "104440", + "name": "Nová Baňa", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.42305000", + "longitude": "18.64037000" + }, + { + "id": "104518", + "name": "Okres Žarnovica", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.48438000", + "longitude": "18.72076000" + }, + { + "id": "104519", + "name": "Okres Žiar nad Hronom", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.58333000", + "longitude": "18.86667000" + }, + { + "id": "104448", + "name": "Okres Banská Štiavnica", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.44961000", + "longitude": "18.90820000" + }, + { + "id": "104447", + "name": "Okres Banská Bystrica", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.73333000", + "longitude": "19.15000000" + }, + { + "id": "104455", + "name": "Okres Brezno", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.80000000", + "longitude": "19.75000000" + }, + { + "id": "104458", + "name": "Okres Detva", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.55985000", + "longitude": "19.42044000" + }, + { + "id": "104469", + "name": "Okres Krupina", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.35736000", + "longitude": "19.06334000" + }, + { + "id": "104474", + "name": "Okres Lučenec", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.33333000", + "longitude": "19.66667000" + }, + { + "id": "104487", + "name": "Okres Poltár", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.42895000", + "longitude": "19.79488000" + }, + { + "id": "104493", + "name": "Okres Revúca", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.68300000", + "longitude": "20.11568000" + }, + { + "id": "104512", + "name": "Okres Veľký Krtíš", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.20000000", + "longitude": "19.35000000" + }, + { + "id": "104515", + "name": "Okres Zvolen", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.58333000", + "longitude": "19.13333000" + }, + { + "id": "104527", + "name": "Poltár", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.43094000", + "longitude": "19.79408000" + }, + { + "id": "104535", + "name": "Revúca", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.68346000", + "longitude": "20.11734000" + }, + { + "id": "104536", + "name": "Rimavská Sobota", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.38284000", + "longitude": "20.02239000" + }, + { + "id": "104559", + "name": "Svätý Anton", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.41923000", + "longitude": "18.94010000" + }, + { + "id": "104562", + "name": "Tisovec", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.67738000", + "longitude": "19.94364000" + }, + { + "id": "104573", + "name": "Veľký Krtíš", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.21059000", + "longitude": "19.35043000" + }, + { + "id": "104585", + "name": "Zvolen", + "state_id": 4352, + "state_code": "BC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.57442000", + "longitude": "19.15324000" + }, + { + "id": "104374", + "name": "Bratislava", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.14816000", + "longitude": "17.10674000" + }, + { + "id": "104375", + "name": "Bratislava - Vajnory", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.20563000", + "longitude": "17.20759000" + }, + { + "id": "104386", + "name": "Dunajská Lužná", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.08347000", + "longitude": "17.26072000" + }, + { + "id": "104403", + "name": "Ivanka pri Dunaji", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.18675000", + "longitude": "17.25540000" + }, + { + "id": "104428", + "name": "Malacky", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.43604000", + "longitude": "17.02188000" + }, + { + "id": "104429", + "name": "Marianka", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.24903000", + "longitude": "17.06400000" + }, + { + "id": "104434", + "name": "Modra", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.33397000", + "longitude": "17.30711000" + }, + { + "id": "104450", + "name": "Okres Bratislava I", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.14653000", + "longitude": "17.10584000" + }, + { + "id": "104451", + "name": "Okres Bratislava II", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.15280000", + "longitude": "17.17764000" + }, + { + "id": "104452", + "name": "Okres Bratislava III", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.18543000", + "longitude": "17.13790000" + }, + { + "id": "104453", + "name": "Okres Bratislava IV", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.22787000", + "longitude": "16.99722000" + }, + { + "id": "104454", + "name": "Okres Bratislava V", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.11122000", + "longitude": "17.09444000" + }, + { + "id": "104475", + "name": "Okres Malacky", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.43458000", + "longitude": "17.02166000" + }, + { + "id": "104485", + "name": "Okres Pezinok", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.28785000", + "longitude": "17.26799000" + }, + { + "id": "104497", + "name": "Okres Senec", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.22187000", + "longitude": "17.40328000" + }, + { + "id": "104524", + "name": "Pezinok", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.28986000", + "longitude": "17.26664000" + }, + { + "id": "104540", + "name": "Senec", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.21951000", + "longitude": "17.40043000" + }, + { + "id": "104555", + "name": "Stupava", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.27474000", + "longitude": "17.03173000" + }, + { + "id": "104560", + "name": "Svätý Jur", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.25216000", + "longitude": "17.21539000" + }, + { + "id": "104576", + "name": "Vinosady", + "state_id": 4356, + "state_code": "BL", + "country_id": 200, + "country_code": "SK", + "latitude": "48.31142000", + "longitude": "17.29042000" + }, + { + "id": "104599", + "name": "Žehra", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.97960000", + "longitude": "20.79170000" + }, + { + "id": "104588", + "name": "Čierna nad Tisou", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.41704000", + "longitude": "22.08865000" + }, + { + "id": "104382", + "name": "Dobšiná", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.82073000", + "longitude": "20.36988000" + }, + { + "id": "104392", + "name": "Gelnica", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.85584000", + "longitude": "20.93713000" + }, + { + "id": "104404", + "name": "Kavečany", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.77592000", + "longitude": "21.20587000" + }, + { + "id": "104409", + "name": "Košice", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.71395000", + "longitude": "21.25808000" + }, + { + "id": "104410", + "name": "Košice I", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.72914000", + "longitude": "21.25004000" + }, + { + "id": "104411", + "name": "Košice II", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.69753000", + "longitude": "21.22273000" + }, + { + "id": "104412", + "name": "Košice III", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.73242000", + "longitude": "21.29047000" + }, + { + "id": "104413", + "name": "Košice IV", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.68691000", + "longitude": "21.26570000" + }, + { + "id": "104416", + "name": "Krompachy", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.91447000", + "longitude": "20.87514000" + }, + { + "id": "104431", + "name": "Medzev", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.70041000", + "longitude": "20.89367000" + }, + { + "id": "104433", + "name": "Michalovce", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.75434000", + "longitude": "21.91950000" + }, + { + "id": "104435", + "name": "Moldava nad Bodvou", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.61428000", + "longitude": "20.99957000" + }, + { + "id": "104462", + "name": "Okres Gelnica", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.85207000", + "longitude": "20.93385000" + }, + { + "id": "104468", + "name": "Okres Kosice-okolie", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.77897000", + "longitude": "21.41373000" + }, + { + "id": "104478", + "name": "Okres Michalovce", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.75000000", + "longitude": "21.93333000" + }, + { + "id": "104494", + "name": "Okres Rožňava", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.66667000", + "longitude": "20.53333000" + }, + { + "id": "104501", + "name": "Okres Sobrance", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.74247000", + "longitude": "22.18197000" + }, + { + "id": "104502", + "name": "Okres Spišská Nová Ves", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.95000000", + "longitude": "20.56667000" + }, + { + "id": "104507", + "name": "Okres Trebišov", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.63333000", + "longitude": "21.71667000" + }, + { + "id": "104537", + "name": "Rožňava", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.66009000", + "longitude": "20.53758000" + }, + { + "id": "104542", + "name": "Sečovce", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.70074000", + "longitude": "21.66104000" + }, + { + "id": "104547", + "name": "Sobrance", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.74455000", + "longitude": "22.18136000" + }, + { + "id": "104549", + "name": "Spišská Nová Ves", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.94464000", + "longitude": "20.56153000" + }, + { + "id": "104554", + "name": "Strážske", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.87350000", + "longitude": "21.83668000" + }, + { + "id": "104565", + "name": "Trebišov", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.62858000", + "longitude": "21.71954000" + }, + { + "id": "104575", + "name": "Vinné", + "state_id": 4353, + "state_code": "KI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.80965000", + "longitude": "21.96757000" + }, + { + "id": "104593", + "name": "Šaľa", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.15127000", + "longitude": "17.88062000" + }, + { + "id": "104591", + "name": "Šahy", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.07408000", + "longitude": "18.94946000" + }, + { + "id": "104595", + "name": "Štúrovo", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "47.79495000", + "longitude": "18.71750000" + }, + { + "id": "104596", + "name": "Šurany", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.08613000", + "longitude": "18.18447000" + }, + { + "id": "104600", + "name": "Želiezovce", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.05075000", + "longitude": "18.65421000" + }, + { + "id": "104400", + "name": "Hurbanovo", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "47.86984000", + "longitude": "18.19233000" + }, + { + "id": "104406", + "name": "Kolárovo", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "47.92294000", + "longitude": "17.98467000" + }, + { + "id": "104407", + "name": "Komárno", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "47.76356000", + "longitude": "18.12263000" + }, + { + "id": "104421", + "name": "Levice", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.21563000", + "longitude": "18.60705000" + }, + { + "id": "104438", + "name": "Nitra", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.30763000", + "longitude": "18.08453000" + }, + { + "id": "104445", + "name": "Nové Zámky", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "47.98544000", + "longitude": "18.16195000" + }, + { + "id": "104517", + "name": "Okres Šaľa", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.14770000", + "longitude": "17.87306000" + }, + { + "id": "104467", + "name": "Okres Komárno", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "47.76667000", + "longitude": "18.13333000" + }, + { + "id": "104471", + "name": "Okres Levice", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.21667000", + "longitude": "18.60000000" + }, + { + "id": "104481", + "name": "Okres Nitra", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.31667000", + "longitude": "18.08333000" + }, + { + "id": "104483", + "name": "Okres Nové Zámky", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "47.98333000", + "longitude": "18.16667000" + }, + { + "id": "104506", + "name": "Okres Topoľčany", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.56667000", + "longitude": "18.18333000" + }, + { + "id": "104514", + "name": "Okres Zlaté Moravce", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.38294000", + "longitude": "18.39842000" + }, + { + "id": "104558", + "name": "Svodín", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "47.91054000", + "longitude": "18.49967000" + }, + { + "id": "104563", + "name": "Tlmače", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.28926000", + "longitude": "18.53152000" + }, + { + "id": "104564", + "name": "Topoľčany", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.56361000", + "longitude": "18.16712000" + }, + { + "id": "104580", + "name": "Vráble", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.24371000", + "longitude": "18.30846000" + }, + { + "id": "104584", + "name": "Zlaté Moravce", + "state_id": 4357, + "state_code": "NI", + "country_id": 200, + "country_code": "SK", + "latitude": "48.38553000", + "longitude": "18.40063000" + }, + { + "id": "104594", + "name": "Štrba", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.05913000", + "longitude": "20.07975000" + }, + { + "id": "104598", + "name": "Ždiar", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.27100000", + "longitude": "20.26239000" + }, + { + "id": "104590", + "name": "Ľubica", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.11667000", + "longitude": "20.45000000" + }, + { + "id": "104372", + "name": "Bardejov", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.29175000", + "longitude": "21.27271000" + }, + { + "id": "104380", + "name": "Chlmec", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "48.88628000", + "longitude": "21.93930000" + }, + { + "id": "104393", + "name": "Giraltovce", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.11398000", + "longitude": "21.51731000" + }, + { + "id": "104399", + "name": "Humenné", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "48.93707000", + "longitude": "21.91625000" + }, + { + "id": "104405", + "name": "Kežmarok", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.13571000", + "longitude": "20.43352000" + }, + { + "id": "104422", + "name": "Levoča", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.02173000", + "longitude": "20.59212000" + }, + { + "id": "104423", + "name": "Lipany", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.15376000", + "longitude": "20.96382000" + }, + { + "id": "104432", + "name": "Medzilaborce", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.27195000", + "longitude": "21.90073000" + }, + { + "id": "104442", + "name": "Nová Lesná", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.12253000", + "longitude": "20.26737000" + }, + { + "id": "104449", + "name": "Okres Bardejov", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.28333000", + "longitude": "21.28333000" + }, + { + "id": "104464", + "name": "Okres Humenné", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "48.93333000", + "longitude": "21.91667000" + }, + { + "id": "104466", + "name": "Okres Kežmarok", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.13593000", + "longitude": "20.42929000" + }, + { + "id": "104472", + "name": "Okres Levoča", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.01986000", + "longitude": "20.57688000" + }, + { + "id": "104477", + "name": "Okres Medzilaborce", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.27062000", + "longitude": "21.90200000" + }, + { + "id": "104488", + "name": "Okres Poprad", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.05000000", + "longitude": "20.30000000" + }, + { + "id": "104490", + "name": "Okres Prešov", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.00000000", + "longitude": "21.25000000" + }, + { + "id": "104496", + "name": "Okres Sabinov", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.10115000", + "longitude": "21.09844000" + }, + { + "id": "104500", + "name": "Okres Snina", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "48.98579000", + "longitude": "22.15059000" + }, + { + "id": "104503", + "name": "Okres Stará Ĺubovňa", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.30000000", + "longitude": "20.70000000" + }, + { + "id": "104504", + "name": "Okres Stropkov", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.20249000", + "longitude": "21.65025000" + }, + { + "id": "104505", + "name": "Okres Svidník", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.30000000", + "longitude": "21.56667000" + }, + { + "id": "104513", + "name": "Okres Vranov nad Topľou", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "48.90000000", + "longitude": "21.68333000" + }, + { + "id": "104526", + "name": "Podolínec", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.25869000", + "longitude": "20.53600000" + }, + { + "id": "104528", + "name": "Poprad", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.06144000", + "longitude": "20.29798000" + }, + { + "id": "104530", + "name": "Prešov", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "48.99839000", + "longitude": "21.23393000" + }, + { + "id": "104539", + "name": "Sabinov", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.10309000", + "longitude": "21.09880000" + }, + { + "id": "104546", + "name": "Snina", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "48.98857000", + "longitude": "22.15099000" + }, + { + "id": "104548", + "name": "Spišská Belá", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.18725000", + "longitude": "20.45948000" + }, + { + "id": "104550", + "name": "Spišské Podhradie", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.00088000", + "longitude": "20.75307000" + }, + { + "id": "104552", + "name": "Stará Ľubovňa", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.29859000", + "longitude": "20.68620000" + }, + { + "id": "104553", + "name": "Stropkov", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.20211000", + "longitude": "21.65216000" + }, + { + "id": "104556", + "name": "Svidník", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.30819000", + "longitude": "21.57030000" + }, + { + "id": "104557", + "name": "Svit", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.06014000", + "longitude": "20.20695000" + }, + { + "id": "104577", + "name": "Vranov nad Topľou", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "48.88836000", + "longitude": "21.68479000" + }, + { + "id": "104578", + "name": "Vrbov", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.08764000", + "longitude": "20.42530000" + }, + { + "id": "104583", + "name": "Vyšné Ružbachy", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.30387000", + "longitude": "20.56558000" + }, + { + "id": "104582", + "name": "Vysoké Tatry", + "state_id": 4354, + "state_code": "PV", + "country_id": 200, + "country_code": "SK", + "latitude": "49.13637000", + "longitude": "20.24386000" + }, + { + "id": "104586", + "name": "Čachtice", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.71226000", + "longitude": "17.78704000" + }, + { + "id": "104379", + "name": "Bánovce nad Bebravou", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.72130000", + "longitude": "18.25754000" + }, + { + "id": "104373", + "name": "Bojnice", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.78511000", + "longitude": "18.58640000" + }, + { + "id": "104377", + "name": "Brezová pod Bradlom", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.66349000", + "longitude": "17.53905000" + }, + { + "id": "104384", + "name": "Dubnica nad Váhom", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.95981000", + "longitude": "18.16634000" + }, + { + "id": "104394", + "name": "Handlová", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.72760000", + "longitude": "18.76012000" + }, + { + "id": "104402", + "name": "Ilava", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.99769000", + "longitude": "18.23530000" + }, + { + "id": "104419", + "name": "Lehota pod Vtáčnikom", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.69138000", + "longitude": "18.59944000" + }, + { + "id": "104436", + "name": "Myjava", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.75876000", + "longitude": "17.56866000" + }, + { + "id": "104437", + "name": "Nemšová", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.96702000", + "longitude": "18.11892000" + }, + { + "id": "104441", + "name": "Nová Dubnica", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.93479000", + "longitude": "18.14632000" + }, + { + "id": "104443", + "name": "Nováky", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.71106000", + "longitude": "18.53389000" + }, + { + "id": "104444", + "name": "Nové Mesto nad Váhom", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.75763000", + "longitude": "17.83090000" + }, + { + "id": "104457", + "name": "Okres Bánovce nad Bebravou", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.71908000", + "longitude": "18.25773000" + }, + { + "id": "104465", + "name": "Okres Ilava", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.99641000", + "longitude": "18.23374000" + }, + { + "id": "104479", + "name": "Okres Myjava", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.75000000", + "longitude": "17.58333000" + }, + { + "id": "104482", + "name": "Okres Nové Mesto nad Váhom", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.75466000", + "longitude": "17.83506000" + }, + { + "id": "104484", + "name": "Okres Partizánske", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.62613000", + "longitude": "18.37957000" + }, + { + "id": "104492", + "name": "Okres Púchov", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "49.12406000", + "longitude": "18.32477000" + }, + { + "id": "104489", + "name": "Okres Považská Bystrica", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "49.11667000", + "longitude": "18.45000000" + }, + { + "id": "104491", + "name": "Okres Prievidza", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.76667000", + "longitude": "18.63333000" + }, + { + "id": "104508", + "name": "Okres Trenčín", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.89520000", + "longitude": "18.04264000" + }, + { + "id": "104523", + "name": "Partizánske", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.62861000", + "longitude": "18.38455000" + }, + { + "id": "104533", + "name": "Púchov", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "49.12494000", + "longitude": "18.32597000" + }, + { + "id": "104529", + "name": "Považská Bystrica", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "49.12153000", + "longitude": "18.42169000" + }, + { + "id": "104532", + "name": "Prievidza", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.77446000", + "longitude": "18.62750000" + }, + { + "id": "104551", + "name": "Stará Turá", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.77721000", + "longitude": "17.69433000" + }, + { + "id": "104567", + "name": "Trenčín", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.89452000", + "longitude": "18.04436000" + }, + { + "id": "104566", + "name": "Trenčianske Teplice", + "state_id": 4358, + "state_code": "TC", + "country_id": 200, + "country_code": "SK", + "latitude": "48.91063000", + "longitude": "18.16691000" + }, + { + "id": "104592", + "name": "Šamorín", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.03015000", + "longitude": "17.30972000" + }, + { + "id": "104387", + "name": "Dunajská Streda", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "47.99268000", + "longitude": "17.61211000" + }, + { + "id": "104389", + "name": "Gabčíkovo", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "47.89211000", + "longitude": "17.57884000" + }, + { + "id": "104390", + "name": "Galanta", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.19001000", + "longitude": "17.72747000" + }, + { + "id": "104391", + "name": "Gbely", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.71800000", + "longitude": "17.11628000" + }, + { + "id": "104395", + "name": "Hlohovec", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.43174000", + "longitude": "17.80310000" + }, + { + "id": "104396", + "name": "Holíč", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.81105000", + "longitude": "17.16238000" + }, + { + "id": "104420", + "name": "Leopoldov", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.44575000", + "longitude": "17.76458000" + }, + { + "id": "104460", + "name": "Okres Dunajská Streda", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "47.99635000", + "longitude": "17.60937000" + }, + { + "id": "104461", + "name": "Okres Galanta", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.20000000", + "longitude": "17.71667000" + }, + { + "id": "104463", + "name": "Okres Hlohovec", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.41667000", + "longitude": "17.75000000" + }, + { + "id": "104486", + "name": "Okres Piešťany", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.59064000", + "longitude": "17.82679000" + }, + { + "id": "104498", + "name": "Okres Senica", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.68333000", + "longitude": "17.36667000" + }, + { + "id": "104499", + "name": "Okres Skalica", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.75000000", + "longitude": "17.16667000" + }, + { + "id": "104509", + "name": "Okres Trnava", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.36667000", + "longitude": "17.60000000" + }, + { + "id": "104525", + "name": "Piešťany", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.59479000", + "longitude": "17.82591000" + }, + { + "id": "104541", + "name": "Senica", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.67922000", + "longitude": "17.36697000" + }, + { + "id": "104543", + "name": "Skalica", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.84490000", + "longitude": "17.22635000" + }, + { + "id": "104544", + "name": "Sládkovičovo", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.20137000", + "longitude": "17.63852000" + }, + { + "id": "104545", + "name": "Smolenice", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.50478000", + "longitude": "17.43067000" + }, + { + "id": "104568", + "name": "Trnava", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.37741000", + "longitude": "17.58723000" + }, + { + "id": "104574", + "name": "Veľký Meder", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "47.85798000", + "longitude": "17.76884000" + }, + { + "id": "104579", + "name": "Vrbové", + "state_id": 4355, + "state_code": "TA", + "country_id": 200, + "country_code": "SK", + "latitude": "48.61973000", + "longitude": "17.72260000" + }, + { + "id": "104059", + "name": "Ajdovščina", + "state_id": 4183, + "state_code": "001", + "country_id": 201, + "country_code": "SI", + "latitude": "45.88601000", + "longitude": "13.90946000" + }, + { + "id": "104084", + "name": "Cirkulane", + "state_id": 4183, + "state_code": "001", + "country_id": 201, + "country_code": "SI", + "latitude": "46.34408000", + "longitude": "15.99472000" + }, + { + "id": "104174", + "name": "Lokavec", + "state_id": 4183, + "state_code": "001", + "country_id": 201, + "country_code": "SI", + "latitude": "45.90167000", + "longitude": "13.87972000" + }, + { + "id": "104060", + "name": "Ankaran", + "state_id": 4326, + "state_code": "213", + "country_id": 201, + "country_code": "SI", + "latitude": "45.57861000", + "longitude": "13.73611000" + }, + { + "id": "104341", + "name": "Šalovci", + "state_id": 4222, + "state_code": "033", + "country_id": 201, + "country_code": "SI", + "latitude": "46.82500000", + "longitude": "16.29806000" + }, + { + "id": "104343", + "name": "Šempeter pri Gorici", + "state_id": 4317, + "state_code": "183", + "country_id": 201, + "country_code": "SI", + "latitude": "45.92750000", + "longitude": "13.64111000" + }, + { + "id": "104261", + "name": "Rožna Dolina", + "state_id": 4317, + "state_code": "183", + "country_id": 201, + "country_code": "SI", + "latitude": "45.94194000", + "longitude": "13.66779000" + }, + { + "id": "104322", + "name": "Vrtojba", + "state_id": 4317, + "state_code": "183", + "country_id": 201, + "country_code": "SI", + "latitude": "45.91250000", + "longitude": "13.63417000" + }, + { + "id": "104351", + "name": "Šenčur", + "state_id": 4299, + "state_code": "117", + "country_id": 201, + "country_code": "SI", + "latitude": "46.24556000", + "longitude": "14.41972000" + }, + { + "id": "104117", + "name": "Hrastje", + "state_id": 4299, + "state_code": "117", + "country_id": 201, + "country_code": "SI", + "latitude": "46.21667000", + "longitude": "14.40000000" + }, + { + "id": "104345", + "name": "Šentilj v Slov. Goricah", + "state_id": 4324, + "state_code": "118", + "country_id": 201, + "country_code": "SI", + "latitude": "46.68167000", + "longitude": "15.64806000" + }, + { + "id": "104265", + "name": "Selnica ob Muri", + "state_id": 4324, + "state_code": "118", + "country_id": 201, + "country_code": "SI", + "latitude": "46.68333000", + "longitude": "15.70000000" + }, + { + "id": "104346", + "name": "Šentjernej", + "state_id": 4241, + "state_code": "119", + "country_id": 201, + "country_code": "SI", + "latitude": "45.84000000", + "longitude": "15.33611000" + }, + { + "id": "104347", + "name": "Šentjur", + "state_id": 4171, + "state_code": "120", + "country_id": 201, + "country_code": "SI", + "latitude": "46.21722000", + "longitude": "15.39750000" + }, + { + "id": "104348", + "name": "Šentrupert", + "state_id": 4311, + "state_code": "211", + "country_id": 201, + "country_code": "SI", + "latitude": "45.97778000", + "longitude": "15.09556000" + }, + { + "id": "104352", + "name": "Škocjan", + "state_id": 4170, + "state_code": "121", + "country_id": 201, + "country_code": "SI", + "latitude": "45.90667000", + "longitude": "15.29139000" + }, + { + "id": "104353", + "name": "Škofja Loka", + "state_id": 4316, + "state_code": "122", + "country_id": 201, + "country_code": "SI", + "latitude": "46.16551000", + "longitude": "14.30626000" + }, + { + "id": "104289", + "name": "Sv. Duh", + "state_id": 4316, + "state_code": "122", + "country_id": 201, + "country_code": "SI", + "latitude": "46.18333000", + "longitude": "14.33333000" + }, + { + "id": "104356", + "name": "Šmarje pri Jelšah", + "state_id": 4285, + "state_code": "124", + "country_id": 201, + "country_code": "SI", + "latitude": "46.22722000", + "longitude": "15.51917000" + }, + { + "id": "104358", + "name": "Šmarjeta", + "state_id": 4289, + "state_code": "206", + "country_id": 201, + "country_code": "SI", + "latitude": "45.88333000", + "longitude": "15.25000000" + }, + { + "id": "104359", + "name": "Šmartno ob Paki", + "state_id": 4296, + "state_code": "125", + "country_id": 201, + "country_code": "SI", + "latitude": "46.33333000", + "longitude": "15.03333000" + }, + { + "id": "104360", + "name": "Šmartno pri Litiji", + "state_id": 4279, + "state_code": "194", + "country_id": 201, + "country_code": "SI", + "latitude": "46.04444000", + "longitude": "14.84417000" + }, + { + "id": "104362", + "name": "Šoštanj", + "state_id": 4248, + "state_code": "126", + "country_id": 201, + "country_code": "SI", + "latitude": "46.38000000", + "longitude": "15.04861000" + }, + { + "id": "104248", + "name": "Ravne", + "state_id": 4248, + "state_code": "126", + "country_id": 201, + "country_code": "SI", + "latitude": "46.41413000", + "longitude": "15.06087000" + }, + { + "id": "104296", + "name": "Topolšica", + "state_id": 4248, + "state_code": "126", + "country_id": 201, + "country_code": "SI", + "latitude": "46.40028000", + "longitude": "15.02157000" + }, + { + "id": "104363", + "name": "Štore", + "state_id": 4185, + "state_code": "127", + "country_id": 201, + "country_code": "SI", + "latitude": "46.22083000", + "longitude": "15.31389000" + }, + { + "id": "104344", + "name": "Šempeter v Savinj. Dolini", + "state_id": 4258, + "state_code": "190", + "country_id": 201, + "country_code": "SI", + "latitude": "46.25639000", + "longitude": "15.12194000" + }, + { + "id": "104364", + "name": "Žalec", + "state_id": 4258, + "state_code": "190", + "country_id": 201, + "country_code": "SI", + "latitude": "46.25151000", + "longitude": "15.16482000" + }, + { + "id": "104111", + "name": "Gotovlje", + "state_id": 4258, + "state_code": "190", + "country_id": 201, + "country_code": "SI", + "latitude": "46.27418000", + "longitude": "15.15186000" + }, + { + "id": "104324", + "name": "Zabukovica", + "state_id": 4258, + "state_code": "190", + "country_id": 201, + "country_code": "SI", + "latitude": "46.21408000", + "longitude": "15.15954000" + }, + { + "id": "104365", + "name": "Železniki", + "state_id": 4256, + "state_code": "146", + "country_id": 201, + "country_code": "SI", + "latitude": "46.22482000", + "longitude": "14.17205000" + }, + { + "id": "104366", + "name": "Žetale", + "state_id": 4249, + "state_code": "191", + "country_id": 201, + "country_code": "SI", + "latitude": "46.27356000", + "longitude": "15.82658000" + }, + { + "id": "104367", + "name": "Žiri", + "state_id": 4192, + "state_code": "147", + "country_id": 201, + "country_code": "SI", + "latitude": "46.04222000", + "longitude": "14.10722000" + }, + { + "id": "104368", + "name": "Žirovnica", + "state_id": 4276, + "state_code": "192", + "country_id": 201, + "country_code": "SI", + "latitude": "46.40472000", + "longitude": "14.14000000" + }, + { + "id": "104369", + "name": "Žužemberk", + "state_id": 4307, + "state_code": "193", + "country_id": 201, + "country_code": "SI", + "latitude": "45.83389000", + "longitude": "14.92917000" + }, + { + "id": "104337", + "name": "Črenšovci", + "state_id": 4151, + "state_code": "015", + "country_id": 201, + "country_code": "SI", + "latitude": "46.55794000", + "longitude": "16.30410000" + }, + { + "id": "104338", + "name": "Črna na Koroškem", + "state_id": 4232, + "state_code": "016", + "country_id": 201, + "country_code": "SI", + "latitude": "46.47045000", + "longitude": "14.85009000" + }, + { + "id": "104339", + "name": "Črnomelj", + "state_id": 4291, + "state_code": "017", + "country_id": 201, + "country_code": "SI", + "latitude": "45.57111000", + "longitude": "15.18889000" + }, + { + "id": "104063", + "name": "Beltinci", + "state_id": 4301, + "state_code": "002", + "country_id": 201, + "country_code": "SI", + "latitude": "46.60528000", + "longitude": "16.24056000" + }, + { + "id": "104104", + "name": "Gančani", + "state_id": 4301, + "state_code": "002", + "country_id": 201, + "country_code": "SI", + "latitude": "46.63250000", + "longitude": "16.25111000" + }, + { + "id": "104166", + "name": "Lipovci", + "state_id": 4301, + "state_code": "002", + "country_id": 201, + "country_code": "SI", + "latitude": "46.62833000", + "longitude": "16.22806000" + }, + { + "id": "104331", + "name": "Zgornje Gorje", + "state_id": 4301, + "state_code": "002", + "country_id": 201, + "country_code": "SI", + "latitude": "46.37962000", + "longitude": "14.06937000" + }, + { + "id": "104064", + "name": "Benedikt", + "state_id": 4166, + "state_code": "148", + "country_id": 201, + "country_code": "SI", + "latitude": "46.60861000", + "longitude": "15.88833000" + }, + { + "id": "104067", + "name": "Bistrica ob Sotli", + "state_id": 4179, + "state_code": "149", + "country_id": 201, + "country_code": "SI", + "latitude": "46.05889000", + "longitude": "15.66417000" + }, + { + "id": "104069", + "name": "Bled", + "state_id": 4202, + "state_code": "003", + "country_id": 201, + "country_code": "SI", + "latitude": "46.36917000", + "longitude": "14.11361000" + }, + { + "id": "104144", + "name": "Kostanjevica na Krki", + "state_id": 4202, + "state_code": "003", + "country_id": 201, + "country_code": "SI", + "latitude": "45.84611000", + "longitude": "15.42222000" + }, + { + "id": "104326", + "name": "Zasip", + "state_id": 4202, + "state_code": "003", + "country_id": 201, + "country_code": "SI", + "latitude": "46.39284000", + "longitude": "14.10869000" + }, + { + "id": "104207", + "name": "Nova Vas", + "state_id": 4278, + "state_code": "150", + "country_id": 201, + "country_code": "SI", + "latitude": "45.77167000", + "longitude": "14.50583000" + }, + { + "id": "104070", + "name": "Bohinjska Bistrica", + "state_id": 4282, + "state_code": "004", + "country_id": 201, + "country_code": "SI", + "latitude": "46.27216000", + "longitude": "13.95350000" + }, + { + "id": "104100", + "name": "Dragomer", + "state_id": 4282, + "state_code": "004", + "country_id": 201, + "country_code": "SI", + "latitude": "46.01667000", + "longitude": "14.38333000" + }, + { + "id": "104172", + "name": "Log pri Brezovici", + "state_id": 4282, + "state_code": "004", + "country_id": 201, + "country_code": "SI", + "latitude": "46.01667000", + "longitude": "14.36667000" + }, + { + "id": "104071", + "name": "Borovnica", + "state_id": 4200, + "state_code": "005", + "country_id": 201, + "country_code": "SI", + "latitude": "45.91583000", + "longitude": "14.36306000" + }, + { + "id": "104180", + "name": "Makole", + "state_id": 4200, + "state_code": "005", + "country_id": 201, + "country_code": "SI", + "latitude": "46.31722000", + "longitude": "15.66722000" + }, + { + "id": "104072", + "name": "Bovec", + "state_id": 4181, + "state_code": "006", + "country_id": 201, + "country_code": "SI", + "latitude": "46.33808000", + "longitude": "13.55245000" + }, + { + "id": "104190", + "name": "Mirna", + "state_id": 4181, + "state_code": "006", + "country_id": 201, + "country_code": "SI", + "latitude": "45.95528000", + "longitude": "15.06194000" + }, + { + "id": "104073", + "name": "Braslovče", + "state_id": 4141, + "state_code": "151", + "country_id": 201, + "country_code": "SI", + "latitude": "46.28972000", + "longitude": "15.03889000" + }, + { + "id": "104094", + "name": "Dobrovo", + "state_id": 4240, + "state_code": "007", + "country_id": 201, + "country_code": "SI", + "latitude": "45.99639000", + "longitude": "13.52639000" + }, + { + "id": "104195", + "name": "Mokronog", + "state_id": 4240, + "state_code": "007", + "country_id": 201, + "country_code": "SI", + "latitude": "45.93417000", + "longitude": "15.14083000" + }, + { + "id": "104076", + "name": "Brežice", + "state_id": 4215, + "state_code": "009", + "country_id": 201, + "country_code": "SI", + "latitude": "45.90333000", + "longitude": "15.59111000" + }, + { + "id": "104227", + "name": "Poljčane", + "state_id": 4215, + "state_code": "009", + "country_id": 201, + "country_code": "SI", + "latitude": "46.31194000", + "longitude": "15.57917000" + }, + { + "id": "104075", + "name": "Brezovica pri Ljubljani", + "state_id": 4165, + "state_code": "008", + "country_id": 201, + "country_code": "SI", + "latitude": "46.03333000", + "longitude": "14.40000000" + }, + { + "id": "104205", + "name": "Notranje Gorice", + "state_id": 4165, + "state_code": "008", + "country_id": 201, + "country_code": "SI", + "latitude": "45.98750000", + "longitude": "14.39889000" + }, + { + "id": "104214", + "name": "Opština Ljubljana-Vič-Rudnik", + "state_id": 4165, + "state_code": "008", + "country_id": 201, + "country_code": "SI", + "latitude": "46.03333000", + "longitude": "14.41667000" + }, + { + "id": "104254", + "name": "Rečica ob Savinji", + "state_id": 4165, + "state_code": "008", + "country_id": 201, + "country_code": "SI", + "latitude": "46.31667000", + "longitude": "14.91667000" + }, + { + "id": "104316", + "name": "Vnanje Gorice", + "state_id": 4165, + "state_code": "008", + "country_id": 201, + "country_code": "SI", + "latitude": "46.00722000", + "longitude": "14.42194000" + }, + { + "id": "104078", + "name": "Cankova", + "state_id": 4147, + "state_code": "152", + "country_id": 201, + "country_code": "SI", + "latitude": "46.72083000", + "longitude": "16.02250000" + }, + { + "id": "104080", + "name": "Cerklje na Gorenjskem", + "state_id": 4310, + "state_code": "012", + "country_id": 201, + "country_code": "SI", + "latitude": "46.25417000", + "longitude": "14.48861000" + }, + { + "id": "104081", + "name": "Cerknica", + "state_id": 4162, + "state_code": "013", + "country_id": 201, + "country_code": "SI", + "latitude": "45.79306000", + "longitude": "14.36250000" + }, + { + "id": "104246", + "name": "Rakek", + "state_id": 4162, + "state_code": "013", + "country_id": 201, + "country_code": "SI", + "latitude": "45.81333000", + "longitude": "14.31111000" + }, + { + "id": "104082", + "name": "Cerkno", + "state_id": 4178, + "state_code": "014", + "country_id": 201, + "country_code": "SI", + "latitude": "46.12556000", + "longitude": "13.98167000" + }, + { + "id": "104083", + "name": "Cerkvenjak", + "state_id": 4176, + "state_code": "153", + "country_id": 201, + "country_code": "SI", + "latitude": "46.57056000", + "longitude": "15.94361000" + }, + { + "id": "104079", + "name": "Celje", + "state_id": 4191, + "state_code": "011", + "country_id": 201, + "country_code": "SI", + "latitude": "46.23092000", + "longitude": "15.26044000" + }, + { + "id": "104168", + "name": "Ljubečna", + "state_id": 4191, + "state_code": "011", + "country_id": 201, + "country_code": "SI", + "latitude": "46.25567000", + "longitude": "15.32430000" + }, + { + "id": "104299", + "name": "Trnovlje pri Celju", + "state_id": 4191, + "state_code": "011", + "country_id": 201, + "country_code": "SI", + "latitude": "46.25667000", + "longitude": "15.29528000" + }, + { + "id": "104208", + "name": "Novo Mesto", + "state_id": 4236, + "state_code": "085", + "country_id": 201, + "country_code": "SI", + "latitude": "45.80397000", + "longitude": "15.16886000" + }, + { + "id": "104087", + "name": "Destrnik", + "state_id": 4304, + "state_code": "018", + "country_id": 201, + "country_code": "SI", + "latitude": "46.49254000", + "longitude": "15.87893000" + }, + { + "id": "104088", + "name": "Divača", + "state_id": 4167, + "state_code": "019", + "country_id": 201, + "country_code": "SI", + "latitude": "45.68472000", + "longitude": "13.97028000" + }, + { + "id": "104090", + "name": "Dobje pri Planini", + "state_id": 4295, + "state_code": "154", + "country_id": 201, + "country_code": "SI", + "latitude": "46.13747000", + "longitude": "15.39412000" + }, + { + "id": "104309", + "name": "Videm", + "state_id": 4216, + "state_code": "020", + "country_id": 201, + "country_code": "SI", + "latitude": "45.85000000", + "longitude": "14.69417000" + }, + { + "id": "104091", + "name": "Dobrna", + "state_id": 4252, + "state_code": "155", + "country_id": 201, + "country_code": "SI", + "latitude": "46.33750000", + "longitude": "15.22639000" + }, + { + "id": "104092", + "name": "Dobrova", + "state_id": 4308, + "state_code": "021", + "country_id": 201, + "country_code": "SI", + "latitude": "46.04580000", + "longitude": "14.39186000" + }, + { + "id": "104093", + "name": "Dobrovnik", + "state_id": 4189, + "state_code": "156", + "country_id": 201, + "country_code": "SI", + "latitude": "46.65139000", + "longitude": "16.35250000" + }, + { + "id": "104096", + "name": "Dol pri Ljubljani", + "state_id": 4173, + "state_code": "022", + "country_id": 201, + "country_code": "SI", + "latitude": "46.08861000", + "longitude": "14.60083000" + }, + { + "id": "104097", + "name": "Dolenjske Toplice", + "state_id": 4281, + "state_code": "157", + "country_id": 201, + "country_code": "SI", + "latitude": "45.75657000", + "longitude": "15.05917000" + }, + { + "id": "104089", + "name": "Dob", + "state_id": 4159, + "state_code": "023", + "country_id": 201, + "country_code": "SI", + "latitude": "46.15194000", + "longitude": "14.62861000" + }, + { + "id": "104098", + "name": "Domžale", + "state_id": 4159, + "state_code": "023", + "country_id": 201, + "country_code": "SI", + "latitude": "46.13774000", + "longitude": "14.59371000" + }, + { + "id": "104244", + "name": "Radomlje", + "state_id": 4159, + "state_code": "023", + "country_id": 201, + "country_code": "SI", + "latitude": "46.17361000", + "longitude": "14.61222000" + }, + { + "id": "104312", + "name": "Vir", + "state_id": 4159, + "state_code": "023", + "country_id": 201, + "country_code": "SI", + "latitude": "46.15325000", + "longitude": "14.60741000" + }, + { + "id": "104099", + "name": "Dornava", + "state_id": 4290, + "state_code": "024", + "country_id": 201, + "country_code": "SI", + "latitude": "46.43667000", + "longitude": "15.95361000" + }, + { + "id": "104102", + "name": "Dravograd", + "state_id": 4345, + "state_code": "025", + "country_id": 201, + "country_code": "SI", + "latitude": "46.58806000", + "longitude": "15.01917000" + }, + { + "id": "104283", + "name": "Spodnji Duplek", + "state_id": 4213, + "state_code": "026", + "country_id": 201, + "country_code": "SI", + "latitude": "46.50306000", + "longitude": "15.74528000" + }, + { + "id": "104334", + "name": "Zgornji Duplek", + "state_id": 4213, + "state_code": "026", + "country_id": 201, + "country_code": "SI", + "latitude": "46.51361000", + "longitude": "15.72083000" + }, + { + "id": "104106", + "name": "Gorenja Vas", + "state_id": 4293, + "state_code": "027", + "country_id": 201, + "country_code": "SI", + "latitude": "46.10722000", + "longitude": "14.14806000" + }, + { + "id": "104107", + "name": "Gorišnica", + "state_id": 4210, + "state_code": "028", + "country_id": 201, + "country_code": "SI", + "latitude": "46.41472000", + "longitude": "16.01389000" + }, + { + "id": "104108", + "name": "Gornja Radgona", + "state_id": 4343, + "state_code": "029", + "country_id": 201, + "country_code": "SI", + "latitude": "46.67333000", + "longitude": "15.99222000" + }, + { + "id": "104109", + "name": "Gornji Grad", + "state_id": 4339, + "state_code": "030", + "country_id": 201, + "country_code": "SI", + "latitude": "46.29528000", + "longitude": "14.80833000" + }, + { + "id": "104110", + "name": "Gornji Petrovci", + "state_id": 4271, + "state_code": "031", + "country_id": 201, + "country_code": "SI", + "latitude": "46.80528000", + "longitude": "16.22250000" + }, + { + "id": "104112", + "name": "Grad", + "state_id": 4217, + "state_code": "158", + "country_id": 201, + "country_code": "SI", + "latitude": "46.80000000", + "longitude": "16.10000000" + }, + { + "id": "104357", + "name": "Šmarje-Sap", + "state_id": 4336, + "state_code": "032", + "country_id": 201, + "country_code": "SI", + "latitude": "45.97618000", + "longitude": "14.61177000" + }, + { + "id": "104113", + "name": "Grosuplje", + "state_id": 4336, + "state_code": "032", + "country_id": 201, + "country_code": "SI", + "latitude": "45.95556000", + "longitude": "14.65889000" + }, + { + "id": "104279", + "name": "Spodnja Hajdina", + "state_id": 4145, + "state_code": "159", + "country_id": 201, + "country_code": "SI", + "latitude": "46.40889000", + "longitude": "15.84694000" + }, + { + "id": "104116", + "name": "Hotinja Vas", + "state_id": 4175, + "state_code": "160", + "country_id": 201, + "country_code": "SI", + "latitude": "46.46667000", + "longitude": "15.66667000" + }, + { + "id": "104242", + "name": "Radizel", + "state_id": 4175, + "state_code": "160", + "country_id": 201, + "country_code": "SI", + "latitude": "46.47444000", + "longitude": "15.65583000" + }, + { + "id": "104260", + "name": "Rogoza", + "state_id": 4175, + "state_code": "160", + "country_id": 201, + "country_code": "SI", + "latitude": "46.50000000", + "longitude": "15.68333000" + }, + { + "id": "104281", + "name": "Spodnje Hoče", + "state_id": 4175, + "state_code": "160", + "country_id": 201, + "country_code": "SI", + "latitude": "46.50000000", + "longitude": "15.65000000" + }, + { + "id": "104114", + "name": "Hodoš", + "state_id": 4327, + "state_code": "161", + "country_id": 201, + "country_code": "SI", + "latitude": "46.82333000", + "longitude": "16.33417000" + }, + { + "id": "104115", + "name": "Horjul", + "state_id": 4193, + "state_code": "162", + "country_id": 201, + "country_code": "SI", + "latitude": "46.02361000", + "longitude": "14.29917000" + }, + { + "id": "104095", + "name": "Dol pri Hrastniku", + "state_id": 4341, + "state_code": "034", + "country_id": 201, + "country_code": "SI", + "latitude": "46.14194000", + "longitude": "15.11278000" + }, + { + "id": "104118", + "name": "Hrastnik", + "state_id": 4341, + "state_code": "034", + "country_id": 201, + "country_code": "SI", + "latitude": "46.14611000", + "longitude": "15.08139000" + }, + { + "id": "104147", + "name": "Kozina", + "state_id": 4321, + "state_code": "035", + "country_id": 201, + "country_code": "SI", + "latitude": "45.61000000", + "longitude": "13.93556000" + }, + { + "id": "104122", + "name": "Idrija", + "state_id": 4152, + "state_code": "036", + "country_id": 201, + "country_code": "SI", + "latitude": "46.00278000", + "longitude": "14.03056000" + }, + { + "id": "104280", + "name": "Spodnja Idrija", + "state_id": 4152, + "state_code": "036", + "country_id": 201, + "country_code": "SI", + "latitude": "46.03194000", + "longitude": "14.02722000" + }, + { + "id": "104123", + "name": "Ig", + "state_id": 4286, + "state_code": "037", + "country_id": 201, + "country_code": "SI", + "latitude": "45.96028000", + "longitude": "14.52889000" + }, + { + "id": "104350", + "name": "Šentvid pri Stični", + "state_id": 4305, + "state_code": "039", + "country_id": 201, + "country_code": "SI", + "latitude": "45.95004000", + "longitude": "14.84344000" + }, + { + "id": "104125", + "name": "Ivančna Gorica", + "state_id": 4305, + "state_code": "039", + "country_id": 201, + "country_code": "SI", + "latitude": "45.93833000", + "longitude": "14.80444000" + }, + { + "id": "104127", + "name": "Izola", + "state_id": 4322, + "state_code": "040", + "country_id": 201, + "country_code": "SI", + "latitude": "45.53694000", + "longitude": "13.66194000" + }, + { + "id": "104128", + "name": "Jagodje", + "state_id": 4322, + "state_code": "040", + "country_id": 201, + "country_code": "SI", + "latitude": "45.52845000", + "longitude": "13.64721000" + }, + { + "id": "104120", + "name": "Hrušica", + "state_id": 4337, + "state_code": "041", + "country_id": 201, + "country_code": "SI", + "latitude": "46.44500000", + "longitude": "14.01778000" + }, + { + "id": "104130", + "name": "Jesenice", + "state_id": 4337, + "state_code": "041", + "country_id": 201, + "country_code": "SI", + "latitude": "46.43056000", + "longitude": "14.06694000" + }, + { + "id": "104143", + "name": "Koroška Bela", + "state_id": 4337, + "state_code": "041", + "country_id": 201, + "country_code": "SI", + "latitude": "46.44913000", + "longitude": "14.11135000" + }, + { + "id": "104274", + "name": "Slovenski Javornik", + "state_id": 4337, + "state_code": "041", + "country_id": 201, + "country_code": "SI", + "latitude": "46.42611000", + "longitude": "14.08722000" + }, + { + "id": "104332", + "name": "Zgornje Jezersko", + "state_id": 4203, + "state_code": "163", + "country_id": 201, + "country_code": "SI", + "latitude": "46.39410000", + "longitude": "14.50659000" + }, + { + "id": "104131", + "name": "Juršinci", + "state_id": 4266, + "state_code": "042", + "country_id": 201, + "country_code": "SI", + "latitude": "46.48472000", + "longitude": "15.97139000" + }, + { + "id": "104355", + "name": "Šmarca", + "state_id": 4180, + "state_code": "043", + "country_id": 201, + "country_code": "SI", + "latitude": "46.19333000", + "longitude": "14.59667000" + }, + { + "id": "104133", + "name": "Kamnik", + "state_id": 4180, + "state_code": "043", + "country_id": 201, + "country_code": "SI", + "latitude": "46.22587000", + "longitude": "14.61207000" + }, + { + "id": "104184", + "name": "Mekinje", + "state_id": 4180, + "state_code": "043", + "country_id": 201, + "country_code": "SI", + "latitude": "46.23333000", + "longitude": "14.61667000" + }, + { + "id": "104086", + "name": "Deskle", + "state_id": 4227, + "state_code": "044", + "country_id": 201, + "country_code": "SI", + "latitude": "46.05307000", + "longitude": "13.61382000" + }, + { + "id": "104134", + "name": "Kanal", + "state_id": 4227, + "state_code": "044", + "country_id": 201, + "country_code": "SI", + "latitude": "46.08861000", + "longitude": "13.63972000" + }, + { + "id": "104135", + "name": "Kidričevo", + "state_id": 4150, + "state_code": "045", + "country_id": 201, + "country_code": "SI", + "latitude": "46.40361000", + "longitude": "15.79111000" + }, + { + "id": "104149", + "name": "Kočevje", + "state_id": 4335, + "state_code": "048", + "country_id": 201, + "country_code": "SI", + "latitude": "45.64333000", + "longitude": "14.86333000" + }, + { + "id": "104137", + "name": "Kobarid", + "state_id": 4243, + "state_code": "046", + "country_id": 201, + "country_code": "SI", + "latitude": "46.24761000", + "longitude": "13.57907000" + }, + { + "id": "104138", + "name": "Kobilje", + "state_id": 4325, + "state_code": "047", + "country_id": 201, + "country_code": "SI", + "latitude": "46.68472000", + "longitude": "16.39778000" + }, + { + "id": "104140", + "name": "Komen", + "state_id": 4315, + "state_code": "049", + "country_id": 201, + "country_code": "SI", + "latitude": "45.81528000", + "longitude": "13.74833000" + }, + { + "id": "104141", + "name": "Komenda", + "state_id": 4283, + "state_code": "164", + "country_id": 201, + "country_code": "SI", + "latitude": "46.20484000", + "longitude": "14.53839000" + }, + { + "id": "104199", + "name": "Moste", + "state_id": 4283, + "state_code": "164", + "country_id": 201, + "country_code": "SI", + "latitude": "46.19500000", + "longitude": "14.55139000" + }, + { + "id": "104085", + "name": "Dekani", + "state_id": 4319, + "state_code": "050", + "country_id": 201, + "country_code": "SI", + "latitude": "45.54972000", + "longitude": "13.81361000" + }, + { + "id": "104121", + "name": "Hrvatini", + "state_id": 4319, + "state_code": "050", + "country_id": 201, + "country_code": "SI", + "latitude": "45.58278000", + "longitude": "13.75667000" + }, + { + "id": "104142", + "name": "Koper", + "state_id": 4319, + "state_code": "050", + "country_id": 201, + "country_code": "SI", + "latitude": "45.54694000", + "longitude": "13.72944000" + }, + { + "id": "104223", + "name": "Pobegi", + "state_id": 4319, + "state_code": "050", + "country_id": 201, + "country_code": "SI", + "latitude": "45.53944000", + "longitude": "13.79611000" + }, + { + "id": "104231", + "name": "Prade", + "state_id": 4319, + "state_code": "050", + "country_id": 201, + "country_code": "SI", + "latitude": "45.54003000", + "longitude": "13.77607000" + }, + { + "id": "104282", + "name": "Spodnje Škofije", + "state_id": 4319, + "state_code": "050", + "country_id": 201, + "country_code": "SI", + "latitude": "45.57167000", + "longitude": "13.79250000" + }, + { + "id": "104288", + "name": "Sv. Anton", + "state_id": 4319, + "state_code": "050", + "country_id": 201, + "country_code": "SI", + "latitude": "45.52583000", + "longitude": "13.83194000" + }, + { + "id": "104145", + "name": "Kostel", + "state_id": 4331, + "state_code": "165", + "country_id": 201, + "country_code": "SI", + "latitude": "45.50842000", + "longitude": "14.91005000" + }, + { + "id": "104148", + "name": "Kozje", + "state_id": 4186, + "state_code": "051", + "country_id": 201, + "country_code": "SI", + "latitude": "46.07500000", + "longitude": "15.56028000" + }, + { + "id": "104077", + "name": "Britof", + "state_id": 4287, + "state_code": "052", + "country_id": 201, + "country_code": "SI", + "latitude": "46.26024000", + "longitude": "14.39037000" + }, + { + "id": "104105", + "name": "Golnik", + "state_id": 4287, + "state_code": "052", + "country_id": 201, + "country_code": "SI", + "latitude": "46.33333000", + "longitude": "14.33333000" + }, + { + "id": "104139", + "name": "Kokrica", + "state_id": 4287, + "state_code": "052", + "country_id": 201, + "country_code": "SI", + "latitude": "46.27028000", + "longitude": "14.36111000" + }, + { + "id": "104150", + "name": "Kranj", + "state_id": 4287, + "state_code": "052", + "country_id": 201, + "country_code": "SI", + "latitude": "46.23887000", + "longitude": "14.35561000" + }, + { + "id": "104193", + "name": "Mlaka pri Kranju", + "state_id": 4287, + "state_code": "052", + "country_id": 201, + "country_code": "SI", + "latitude": "46.28333000", + "longitude": "14.35000000" + }, + { + "id": "104330", + "name": "Zgornje Bitnje", + "state_id": 4287, + "state_code": "052", + "country_id": 201, + "country_code": "SI", + "latitude": "46.22000000", + "longitude": "14.33667000" + }, + { + "id": "104151", + "name": "Kranjska Gora", + "state_id": 4340, + "state_code": "053", + "country_id": 201, + "country_code": "SI", + "latitude": "46.45689000", + "longitude": "13.77824000" + }, + { + "id": "104194", + "name": "Mojstrana", + "state_id": 4340, + "state_code": "053", + "country_id": 201, + "country_code": "SI", + "latitude": "46.42383000", + "longitude": "13.87520000" + }, + { + "id": "104152", + "name": "Križevci pri Ljutomeru", + "state_id": 4238, + "state_code": "166", + "country_id": 201, + "country_code": "SI", + "latitude": "46.56833000", + "longitude": "16.13861000" + }, + { + "id": "104328", + "name": "Zgornja Kungota", + "state_id": 4197, + "state_code": "055", + "country_id": 201, + "country_code": "SI", + "latitude": "46.63917000", + "longitude": "15.61556000" + }, + { + "id": "104156", + "name": "Kuzma", + "state_id": 4211, + "state_code": "056", + "country_id": 201, + "country_code": "SI", + "latitude": "46.83694000", + "longitude": "16.08333000" + }, + { + "id": "104158", + "name": "Laško", + "state_id": 4338, + "state_code": "057", + "country_id": 201, + "country_code": "SI", + "latitude": "46.15463000", + "longitude": "15.23555000" + }, + { + "id": "104160", + "name": "Lenart v Slov. Goricah", + "state_id": 4142, + "state_code": "058", + "country_id": 201, + "country_code": "SI", + "latitude": "46.57611000", + "longitude": "15.83139000" + }, + { + "id": "104161", + "name": "Lendava", + "state_id": 4225, + "state_code": "059", + "country_id": 201, + "country_code": "SI", + "latitude": "46.56494000", + "longitude": "16.45091000" + }, + { + "id": "104167", + "name": "Litija", + "state_id": 4347, + "state_code": "060", + "country_id": 201, + "country_code": "SI", + "latitude": "46.05861000", + "longitude": "14.82250000" + }, + { + "id": "104349", + "name": "Šentvid District", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.10559000", + "longitude": "14.43329000" + }, + { + "id": "104101", + "name": "Dravlje District", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.07290000", + "longitude": "14.44741000" + }, + { + "id": "104129", + "name": "Jarše District", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.07345000", + "longitude": "14.55431000" + }, + { + "id": "104169", + "name": "Ljubljana", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.05108000", + "longitude": "14.50513000" + }, + { + "id": "104211", + "name": "Opčina Ljubljana-Bežigrad", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.08333000", + "longitude": "14.53333000" + }, + { + "id": "104212", + "name": "Opština Ljubljana-Center", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.05000000", + "longitude": "14.53333000" + }, + { + "id": "104213", + "name": "Opština Ljubljana-Moste-Polje", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.06667000", + "longitude": "14.61667000" + }, + { + "id": "104262", + "name": "Rožnik District", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.05999000", + "longitude": "14.46779000" + }, + { + "id": "104278", + "name": "Sostro District", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.04341000", + "longitude": "14.67293000" + }, + { + "id": "104300", + "name": "Trnovo District", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.02412000", + "longitude": "14.48891000" + }, + { + "id": "104315", + "name": "Vič District", + "state_id": 4270, + "state_code": "061", + "country_id": 201, + "country_code": "SI", + "latitude": "46.00779000", + "longitude": "14.46968000" + }, + { + "id": "104170", + "name": "Ljubno ob Savinji", + "state_id": 4294, + "state_code": "062", + "country_id": 201, + "country_code": "SI", + "latitude": "46.34358000", + "longitude": "14.83377000" + }, + { + "id": "104171", + "name": "Ljutomer", + "state_id": 4351, + "state_code": "063", + "country_id": 201, + "country_code": "SI", + "latitude": "46.52083000", + "longitude": "16.19750000" + }, + { + "id": "104163", + "name": "Leskova Dolina", + "state_id": 4174, + "state_code": "065", + "country_id": 201, + "country_code": "SI", + "latitude": "45.62139000", + "longitude": "14.46056000" + }, + { + "id": "104119", + "name": "Hrib-Loški Potok", + "state_id": 4158, + "state_code": "066", + "country_id": 201, + "country_code": "SI", + "latitude": "45.70688000", + "longitude": "14.61674000" + }, + { + "id": "104173", + "name": "Logatec", + "state_id": 4350, + "state_code": "064", + "country_id": 201, + "country_code": "SI", + "latitude": "45.91444000", + "longitude": "14.22583000" + }, + { + "id": "104175", + "name": "Lovrenc na Pohorju", + "state_id": 4156, + "state_code": "167", + "country_id": 201, + "country_code": "SI", + "latitude": "46.54056000", + "longitude": "15.39306000" + }, + { + "id": "104178", + "name": "Luče", + "state_id": 4219, + "state_code": "067", + "country_id": 201, + "country_code": "SI", + "latitude": "46.35611000", + "longitude": "14.74667000" + }, + { + "id": "104177", + "name": "Lukovica pri Domžalah", + "state_id": 4302, + "state_code": "068", + "country_id": 201, + "country_code": "SI", + "latitude": "46.16988000", + "longitude": "14.69179000" + }, + { + "id": "104179", + "name": "Majšperk", + "state_id": 4157, + "state_code": "069", + "country_id": 201, + "country_code": "SI", + "latitude": "46.35167000", + "longitude": "15.73361000" + }, + { + "id": "104074", + "name": "Bresternica", + "state_id": 4242, + "state_code": "070", + "country_id": 201, + "country_code": "SI", + "latitude": "46.56972000", + "longitude": "15.57500000" + }, + { + "id": "104132", + "name": "Kamnica", + "state_id": 4242, + "state_code": "070", + "country_id": 201, + "country_code": "SI", + "latitude": "46.57444000", + "longitude": "15.61417000" + }, + { + "id": "104165", + "name": "Limbuš", + "state_id": 4242, + "state_code": "070", + "country_id": 201, + "country_code": "SI", + "latitude": "46.55361000", + "longitude": "15.58361000" + }, + { + "id": "104181", + "name": "Maribor", + "state_id": 4242, + "state_code": "070", + "country_id": 201, + "country_code": "SI", + "latitude": "46.55472000", + "longitude": "15.64667000" + }, + { + "id": "104219", + "name": "Pekre", + "state_id": 4242, + "state_code": "070", + "country_id": 201, + "country_code": "SI", + "latitude": "46.54722000", + "longitude": "15.59556000" + }, + { + "id": "104251", + "name": "Razvanje", + "state_id": 4242, + "state_code": "070", + "country_id": 201, + "country_code": "SI", + "latitude": "46.51444000", + "longitude": "15.63611000" + }, + { + "id": "104182", + "name": "Markovci", + "state_id": 4244, + "state_code": "168", + "country_id": 201, + "country_code": "SI", + "latitude": "46.39557000", + "longitude": "15.92831000" + }, + { + "id": "104187", + "name": "Mežica", + "state_id": 4265, + "state_code": "074", + "country_id": 201, + "country_code": "SI", + "latitude": "46.52139000", + "longitude": "14.85444000" + }, + { + "id": "104183", + "name": "Medvode", + "state_id": 4349, + "state_code": "071", + "country_id": 201, + "country_code": "SI", + "latitude": "46.14220000", + "longitude": "14.41114000" + }, + { + "id": "104215", + "name": "Opština [historical] Ljubljana-Šiška", + "state_id": 4349, + "state_code": "071", + "country_id": 201, + "country_code": "SI", + "latitude": "46.16667000", + "longitude": "14.43333000" + }, + { + "id": "104333", + "name": "Zgornje Pirniče", + "state_id": 4349, + "state_code": "071", + "country_id": 201, + "country_code": "SI", + "latitude": "46.14251000", + "longitude": "14.43158000" + }, + { + "id": "104185", + "name": "Mengeš", + "state_id": 4348, + "state_code": "072", + "country_id": 201, + "country_code": "SI", + "latitude": "46.16694000", + "longitude": "14.57500000" + }, + { + "id": "104235", + "name": "Preserje pri Radomljah", + "state_id": 4348, + "state_code": "072", + "country_id": 201, + "country_code": "SI", + "latitude": "46.16911000", + "longitude": "14.59698000" + }, + { + "id": "104186", + "name": "Metlika", + "state_id": 4323, + "state_code": "073", + "country_id": 201, + "country_code": "SI", + "latitude": "45.64722000", + "longitude": "15.31417000" + }, + { + "id": "104188", + "name": "Miklavž na Dravskem Polju", + "state_id": 4223, + "state_code": "169", + "country_id": 201, + "country_code": "SI", + "latitude": "46.50583000", + "longitude": "15.69722000" + }, + { + "id": "104065", + "name": "Bilje", + "state_id": 4220, + "state_code": "075", + "country_id": 201, + "country_code": "SI", + "latitude": "45.89444000", + "longitude": "13.63222000" + }, + { + "id": "104189", + "name": "Miren", + "state_id": 4220, + "state_code": "075", + "country_id": 201, + "country_code": "SI", + "latitude": "45.89556000", + "longitude": "13.60750000" + }, + { + "id": "104191", + "name": "Mirna Peč", + "state_id": 4237, + "state_code": "170", + "country_id": 201, + "country_code": "SI", + "latitude": "45.86028000", + "longitude": "15.08333000" + }, + { + "id": "104192", + "name": "Mislinja", + "state_id": 4212, + "state_code": "076", + "country_id": 201, + "country_code": "SI", + "latitude": "46.44141000", + "longitude": "15.20027000" + }, + { + "id": "104197", + "name": "Moravče", + "state_id": 4168, + "state_code": "077", + "country_id": 201, + "country_code": "SI", + "latitude": "46.13694000", + "longitude": "14.74500000" + }, + { + "id": "104196", + "name": "Moravske Toplice", + "state_id": 4218, + "state_code": "078", + "country_id": 201, + "country_code": "SI", + "latitude": "46.68313000", + "longitude": "16.22080000" + }, + { + "id": "104200", + "name": "Mozirje", + "state_id": 4190, + "state_code": "079", + "country_id": 201, + "country_code": "SI", + "latitude": "46.33944000", + "longitude": "14.96333000" + }, + { + "id": "104061", + "name": "Apače", + "state_id": 4318, + "state_code": "195", + "country_id": 201, + "country_code": "SI", + "latitude": "46.69722000", + "longitude": "15.91056000" + }, + { + "id": "104354", + "name": "Škofljica", + "state_id": 4187, + "state_code": "123", + "country_id": 201, + "country_code": "SI", + "latitude": "45.98333000", + "longitude": "14.57667000" + }, + { + "id": "104157", + "name": "Lavrica", + "state_id": 4187, + "state_code": "123", + "country_id": 201, + "country_code": "SI", + "latitude": "46.00002000", + "longitude": "14.55730000" + }, + { + "id": "104124", + "name": "Ilirska Bistrica", + "state_id": 4344, + "state_code": "038", + "country_id": 201, + "country_code": "SI", + "latitude": "45.56757000", + "longitude": "14.24571000" + }, + { + "id": "104155", + "name": "Krško", + "state_id": 4314, + "state_code": "054", + "country_id": 201, + "country_code": "SI", + "latitude": "45.95915000", + "longitude": "15.49167000" + }, + { + "id": "104164", + "name": "Leskovec pri Krškem", + "state_id": 4314, + "state_code": "054", + "country_id": 201, + "country_code": "SI", + "latitude": "45.93566000", + "longitude": "15.47184000" + }, + { + "id": "104267", + "name": "Senovo", + "state_id": 4314, + "state_code": "054", + "country_id": 201, + "country_code": "SI", + "latitude": "46.02361000", + "longitude": "15.47694000" + }, + { + "id": "104336", + "name": "Černelavci", + "state_id": 4313, + "state_code": "080", + "country_id": 201, + "country_code": "SI", + "latitude": "46.66667000", + "longitude": "16.13333000" + }, + { + "id": "104062", + "name": "Bakovci", + "state_id": 4313, + "state_code": "080", + "country_id": 201, + "country_code": "SI", + "latitude": "46.61889000", + "longitude": "16.15028000" + }, + { + "id": "104153", + "name": "Krog", + "state_id": 4313, + "state_code": "080", + "country_id": 201, + "country_code": "SI", + "latitude": "46.63806000", + "longitude": "16.14139000" + }, + { + "id": "104201", + "name": "Murska Sobota", + "state_id": 4313, + "state_code": "080", + "country_id": 201, + "country_code": "SI", + "latitude": "46.66250000", + "longitude": "16.16639000" + }, + { + "id": "104247", + "name": "Rakičan", + "state_id": 4313, + "state_code": "080", + "country_id": 201, + "country_code": "SI", + "latitude": "46.65167000", + "longitude": "16.20417000" + }, + { + "id": "104202", + "name": "Muta", + "state_id": 4208, + "state_code": "081", + "country_id": 201, + "country_code": "SI", + "latitude": "46.61139000", + "longitude": "15.16611000" + }, + { + "id": "104203", + "name": "Naklo", + "state_id": 4177, + "state_code": "082", + "country_id": 201, + "country_code": "SI", + "latitude": "46.27278000", + "longitude": "14.31722000" + }, + { + "id": "104204", + "name": "Nazarje", + "state_id": 4329, + "state_code": "083", + "country_id": 201, + "country_code": "SI", + "latitude": "46.31757000", + "longitude": "14.94674000" + }, + { + "id": "104342", + "name": "Šempas", + "state_id": 4205, + "state_code": "084", + "country_id": 201, + "country_code": "SI", + "latitude": "45.93028000", + "longitude": "13.74361000" + }, + { + "id": "104154", + "name": "Kromberk", + "state_id": 4205, + "state_code": "084", + "country_id": 201, + "country_code": "SI", + "latitude": "45.96083000", + "longitude": "13.66556000" + }, + { + "id": "104206", + "name": "Nova Gorica", + "state_id": 4205, + "state_code": "084", + "country_id": 201, + "country_code": "SI", + "latitude": "45.95604000", + "longitude": "13.64837000" + }, + { + "id": "104237", + "name": "Prvačina", + "state_id": 4205, + "state_code": "084", + "country_id": 201, + "country_code": "SI", + "latitude": "45.89000000", + "longitude": "13.71806000" + }, + { + "id": "104276", + "name": "Solkan", + "state_id": 4205, + "state_code": "084", + "country_id": 201, + "country_code": "SI", + "latitude": "45.97139000", + "longitude": "13.64944000" + }, + { + "id": "104209", + "name": "Odranci", + "state_id": 4320, + "state_code": "086", + "country_id": 201, + "country_code": "SI", + "latitude": "46.58667000", + "longitude": "16.28028000" + }, + { + "id": "104210", + "name": "Oplotnica", + "state_id": 4143, + "state_code": "171", + "country_id": 201, + "country_code": "SI", + "latitude": "46.38778000", + "longitude": "15.44667000" + }, + { + "id": "104216", + "name": "Ormož", + "state_id": 4221, + "state_code": "087", + "country_id": 201, + "country_code": "SI", + "latitude": "46.41139000", + "longitude": "16.15444000" + }, + { + "id": "104217", + "name": "Osilnica", + "state_id": 4199, + "state_code": "088", + "country_id": 201, + "country_code": "SI", + "latitude": "45.52914000", + "longitude": "14.69838000" + }, + { + "id": "104220", + "name": "Pesnica pri Mariboru", + "state_id": 4172, + "state_code": "089", + "country_id": 201, + "country_code": "SI", + "latitude": "46.60694000", + "longitude": "15.67667000" + }, + { + "id": "104176", + "name": "Lucija", + "state_id": 4201, + "state_code": "090", + "country_id": 201, + "country_code": "SI", + "latitude": "45.50526000", + "longitude": "13.60240000" + }, + { + "id": "104221", + "name": "Piran", + "state_id": 4201, + "state_code": "090", + "country_id": 201, + "country_code": "SI", + "latitude": "45.52778000", + "longitude": "13.57056000" + }, + { + "id": "104229", + "name": "Portorož", + "state_id": 4201, + "state_code": "090", + "country_id": 201, + "country_code": "SI", + "latitude": "45.51429000", + "longitude": "13.59206000" + }, + { + "id": "104269", + "name": "Seča", + "state_id": 4201, + "state_code": "090", + "country_id": 201, + "country_code": "SI", + "latitude": "45.49584000", + "longitude": "13.61466000" + }, + { + "id": "104222", + "name": "Pivka", + "state_id": 4184, + "state_code": "091", + "country_id": 201, + "country_code": "SI", + "latitude": "45.68292000", + "longitude": "14.19588000" + }, + { + "id": "104226", + "name": "Podčetrtek", + "state_id": 4146, + "state_code": "092", + "country_id": 201, + "country_code": "SI", + "latitude": "46.15694000", + "longitude": "15.59861000" + }, + { + "id": "104224", + "name": "Podlehnik", + "state_id": 4161, + "state_code": "172", + "country_id": 201, + "country_code": "SI", + "latitude": "46.33528000", + "longitude": "15.88000000" + }, + { + "id": "104225", + "name": "Podvelka", + "state_id": 4234, + "state_code": "093", + "country_id": 201, + "country_code": "SI", + "latitude": "46.58694000", + "longitude": "15.33056000" + }, + { + "id": "104228", + "name": "Polzela", + "state_id": 4272, + "state_code": "173", + "country_id": 201, + "country_code": "SI", + "latitude": "46.28333000", + "longitude": "15.06667000" + }, + { + "id": "104230", + "name": "Postojna", + "state_id": 4330, + "state_code": "094", + "country_id": 201, + "country_code": "SI", + "latitude": "45.77435000", + "longitude": "14.21528000" + }, + { + "id": "104233", + "name": "Prebold", + "state_id": 4188, + "state_code": "174", + "country_id": 201, + "country_code": "SI", + "latitude": "46.23694000", + "longitude": "15.09250000" + }, + { + "id": "104234", + "name": "Preddvor", + "state_id": 4303, + "state_code": "095", + "country_id": 201, + "country_code": "SI", + "latitude": "46.30250000", + "longitude": "14.42306000" + }, + { + "id": "104236", + "name": "Prevalje", + "state_id": 4274, + "state_code": "175", + "country_id": 201, + "country_code": "SI", + "latitude": "46.54694000", + "longitude": "14.92083000" + }, + { + "id": "104238", + "name": "Ptuj", + "state_id": 4228, + "state_code": "096", + "country_id": 201, + "country_code": "SI", + "latitude": "46.42005000", + "longitude": "15.87018000" + }, + { + "id": "104239", + "name": "Puconci", + "state_id": 4288, + "state_code": "097", + "country_id": 201, + "country_code": "SI", + "latitude": "46.70667000", + "longitude": "16.15639000" + }, + { + "id": "104103", + "name": "Fram", + "state_id": 4204, + "state_code": "098", + "country_id": 201, + "country_code": "SI", + "latitude": "46.45600000", + "longitude": "15.63007000" + }, + { + "id": "104198", + "name": "Morje", + "state_id": 4204, + "state_code": "098", + "country_id": 201, + "country_code": "SI", + "latitude": "46.44444000", + "longitude": "15.62139000" + }, + { + "id": "104252", + "name": "Rače", + "state_id": 4204, + "state_code": "098", + "country_id": 201, + "country_code": "SI", + "latitude": "46.45194000", + "longitude": "15.68139000" + }, + { + "id": "104241", + "name": "Radeče", + "state_id": 4195, + "state_code": "099", + "country_id": 201, + "country_code": "SI", + "latitude": "46.06806000", + "longitude": "15.18389000" + }, + { + "id": "104240", + "name": "Radenci", + "state_id": 4292, + "state_code": "100", + "country_id": 201, + "country_code": "SI", + "latitude": "46.64201000", + "longitude": "16.03781000" + }, + { + "id": "104243", + "name": "Radlje ob Dravi", + "state_id": 4275, + "state_code": "101", + "country_id": 201, + "country_code": "SI", + "latitude": "46.61417000", + "longitude": "15.22639000" + }, + { + "id": "104162", + "name": "Lesce", + "state_id": 4231, + "state_code": "102", + "country_id": 201, + "country_code": "SI", + "latitude": "46.36111000", + "longitude": "14.15778000" + }, + { + "id": "104245", + "name": "Radovljica", + "state_id": 4231, + "state_code": "102", + "country_id": 201, + "country_code": "SI", + "latitude": "46.34444000", + "longitude": "14.17444000" + }, + { + "id": "104146", + "name": "Kotlje", + "state_id": 4155, + "state_code": "103", + "country_id": 201, + "country_code": "SI", + "latitude": "46.52139000", + "longitude": "14.98694000" + }, + { + "id": "104249", + "name": "Ravne na Koroškem", + "state_id": 4155, + "state_code": "103", + "country_id": 201, + "country_code": "SI", + "latitude": "46.54306000", + "longitude": "14.96917000" + }, + { + "id": "104250", + "name": "Razkrižje", + "state_id": 4206, + "state_code": "176", + "country_id": 201, + "country_code": "SI", + "latitude": "46.52167000", + "longitude": "16.28111000" + }, + { + "id": "104253", + "name": "Renče", + "state_id": 4253, + "state_code": "201", + "country_id": 201, + "country_code": "SI", + "latitude": "45.89000000", + "longitude": "13.66861000" + }, + { + "id": "104319", + "name": "Volčja Draga", + "state_id": 4253, + "state_code": "201", + "country_id": 201, + "country_code": "SI", + "latitude": "45.90694000", + "longitude": "13.67750000" + }, + { + "id": "104255", + "name": "Ribnica", + "state_id": 4235, + "state_code": "104", + "country_id": 201, + "country_code": "SI", + "latitude": "45.73861000", + "longitude": "14.72750000" + }, + { + "id": "104256", + "name": "Ribnica na Pohorju", + "state_id": 4207, + "state_code": "177", + "country_id": 201, + "country_code": "SI", + "latitude": "46.53500000", + "longitude": "15.27278000" + }, + { + "id": "104258", + "name": "Rogaška Slatina", + "state_id": 4233, + "state_code": "106", + "country_id": 201, + "country_code": "SI", + "latitude": "46.23750000", + "longitude": "15.63972000" + }, + { + "id": "104259", + "name": "Rogašovci", + "state_id": 4264, + "state_code": "105", + "country_id": 201, + "country_code": "SI", + "latitude": "46.80000000", + "longitude": "16.03333000" + }, + { + "id": "104257", + "name": "Rogatec", + "state_id": 4209, + "state_code": "107", + "country_id": 201, + "country_code": "SI", + "latitude": "46.22944000", + "longitude": "15.70028000" + }, + { + "id": "104066", + "name": "Bistrica ob Dravi", + "state_id": 4280, + "state_code": "108", + "country_id": 201, + "country_code": "SI", + "latitude": "46.55419000", + "longitude": "15.54855000" + }, + { + "id": "104263", + "name": "Ruše", + "state_id": 4280, + "state_code": "108", + "country_id": 201, + "country_code": "SI", + "latitude": "46.53944000", + "longitude": "15.51583000" + }, + { + "id": "104270", + "name": "Sežana", + "state_id": 4149, + "state_code": "111", + "country_id": 201, + "country_code": "SI", + "latitude": "45.70924000", + "longitude": "13.87333000" + }, + { + "id": "104264", + "name": "Selnica ob Dravi", + "state_id": 4230, + "state_code": "178", + "country_id": 201, + "country_code": "SI", + "latitude": "46.55000000", + "longitude": "15.49500000" + }, + { + "id": "104266", + "name": "Semič", + "state_id": 4346, + "state_code": "109", + "country_id": 201, + "country_code": "SI", + "latitude": "45.64611000", + "longitude": "15.18222000" + }, + { + "id": "104268", + "name": "Sevnica", + "state_id": 4268, + "state_code": "110", + "country_id": 201, + "country_code": "SI", + "latitude": "46.00778000", + "longitude": "15.31556000" + }, + { + "id": "104361", + "name": "Šmartno pri Slovenj Gradcu", + "state_id": 4169, + "state_code": "112", + "country_id": 201, + "country_code": "SI", + "latitude": "46.48944000", + "longitude": "15.10667000" + }, + { + "id": "104159", + "name": "Legen", + "state_id": 4169, + "state_code": "112", + "country_id": 201, + "country_code": "SI", + "latitude": "46.50651000", + "longitude": "15.14424000" + }, + { + "id": "104218", + "name": "Pameče", + "state_id": 4169, + "state_code": "112", + "country_id": 201, + "country_code": "SI", + "latitude": "46.53417000", + "longitude": "15.07917000" + }, + { + "id": "104271", + "name": "Slovenj Gradec", + "state_id": 4169, + "state_code": "112", + "country_id": 201, + "country_code": "SI", + "latitude": "46.51028000", + "longitude": "15.08056000" + }, + { + "id": "104232", + "name": "Pragersko", + "state_id": 4332, + "state_code": "113", + "country_id": 201, + "country_code": "SI", + "latitude": "46.39667000", + "longitude": "15.66000000" + }, + { + "id": "104272", + "name": "Slovenska Bistrica", + "state_id": 4332, + "state_code": "113", + "country_id": 201, + "country_code": "SI", + "latitude": "46.39278000", + "longitude": "15.57444000" + }, + { + "id": "104329", + "name": "Zgornja Polskava", + "state_id": 4332, + "state_code": "113", + "country_id": 201, + "country_code": "SI", + "latitude": "46.42556000", + "longitude": "15.61222000" + }, + { + "id": "104273", + "name": "Slovenske Konjice", + "state_id": 4198, + "state_code": "114", + "country_id": 201, + "country_code": "SI", + "latitude": "46.33667000", + "longitude": "15.42583000" + }, + { + "id": "104275", + "name": "Sodražica", + "state_id": 4277, + "state_code": "179", + "country_id": 201, + "country_code": "SI", + "latitude": "45.76111000", + "longitude": "14.63556000" + }, + { + "id": "104277", + "name": "Solčava", + "state_id": 4261, + "state_code": "180", + "country_id": 201, + "country_code": "SI", + "latitude": "46.41944000", + "longitude": "14.69361000" + }, + { + "id": "104284", + "name": "Središče ob Dravi", + "state_id": 4263, + "state_code": "202", + "country_id": 201, + "country_code": "SI", + "latitude": "46.39417000", + "longitude": "16.26806000" + }, + { + "id": "104285", + "name": "Starše", + "state_id": 4259, + "state_code": "115", + "country_id": 201, + "country_code": "SI", + "latitude": "46.46583000", + "longitude": "15.76722000" + }, + { + "id": "104286", + "name": "Straža", + "state_id": 4333, + "state_code": "203", + "country_id": 201, + "country_code": "SI", + "latitude": "45.78000000", + "longitude": "15.07278000" + }, + { + "id": "104287", + "name": "Sv. Ana v Slov. Goricah", + "state_id": 4164, + "state_code": "181", + "country_id": 201, + "country_code": "SI", + "latitude": "46.64917000", + "longitude": "15.84417000" + }, + { + "id": "104290", + "name": "Sv. Trojica v Slov. Goricah", + "state_id": 4260, + "state_code": "204", + "country_id": 201, + "country_code": "SI", + "latitude": "46.57667000", + "longitude": "15.87694000" + }, + { + "id": "104314", + "name": "Vitomarci", + "state_id": 4229, + "state_code": "182", + "country_id": 201, + "country_code": "SI", + "latitude": "46.52750000", + "longitude": "15.93944000" + }, + { + "id": "104291", + "name": "Sveti Jurij ob Ščavnici", + "state_id": 4328, + "state_code": "210", + "country_id": 201, + "country_code": "SI", + "latitude": "46.56950000", + "longitude": "16.02347000" + }, + { + "id": "104292", + "name": "Sveti Tomaž", + "state_id": 4273, + "state_code": "205", + "country_id": 201, + "country_code": "SI", + "latitude": "46.48417000", + "longitude": "16.08361000" + }, + { + "id": "104293", + "name": "Tabor", + "state_id": 4194, + "state_code": "184", + "country_id": 201, + "country_code": "SI", + "latitude": "46.23611000", + "longitude": "15.01833000" + }, + { + "id": "104294", + "name": "Tišina", + "state_id": 4312, + "state_code": "010", + "country_id": 201, + "country_code": "SI", + "latitude": "46.65806000", + "longitude": "16.09167000" + }, + { + "id": "104295", + "name": "Tolmin", + "state_id": 4247, + "state_code": "128", + "country_id": 201, + "country_code": "SI", + "latitude": "46.18304000", + "longitude": "13.73321000" + }, + { + "id": "104068", + "name": "Bistrica pri Tržiču", + "state_id": 4250, + "state_code": "131", + "country_id": 201, + "country_code": "SI", + "latitude": "46.35472000", + "longitude": "14.29167000" + }, + { + "id": "104303", + "name": "Tržič", + "state_id": 4250, + "state_code": "131", + "country_id": 201, + "country_code": "SI", + "latitude": "46.36357000", + "longitude": "14.31046000" + }, + { + "id": "104297", + "name": "Trbovlje", + "state_id": 4246, + "state_code": "129", + "country_id": 201, + "country_code": "SI", + "latitude": "46.15500000", + "longitude": "15.05333000" + }, + { + "id": "104298", + "name": "Trebnje", + "state_id": 4214, + "state_code": "130", + "country_id": 201, + "country_code": "SI", + "latitude": "45.90417000", + "longitude": "15.02167000" + }, + { + "id": "104301", + "name": "Trnovska Vas", + "state_id": 4153, + "state_code": "185", + "country_id": 201, + "country_code": "SI", + "latitude": "46.52019000", + "longitude": "15.88657000" + }, + { + "id": "104340", + "name": "Črnuče District", + "state_id": 4334, + "state_code": "186", + "country_id": 201, + "country_code": "SI", + "latitude": "46.11506000", + "longitude": "14.55371000" + }, + { + "id": "104302", + "name": "Trzin", + "state_id": 4334, + "state_code": "186", + "country_id": 201, + "country_code": "SI", + "latitude": "46.13333000", + "longitude": "14.56667000" + }, + { + "id": "104304", + "name": "Turnišče", + "state_id": 4251, + "state_code": "132", + "country_id": 201, + "country_code": "SI", + "latitude": "46.62778000", + "longitude": "16.32028000" + }, + { + "id": "104305", + "name": "Velika Polana", + "state_id": 4267, + "state_code": "187", + "country_id": 201, + "country_code": "SI", + "latitude": "46.57194000", + "longitude": "16.34694000" + }, + { + "id": "104306", + "name": "Velike Lašče", + "state_id": 4144, + "state_code": "134", + "country_id": 201, + "country_code": "SI", + "latitude": "45.83222000", + "longitude": "14.63639000" + }, + { + "id": "104308", + "name": "Veržej", + "state_id": 4257, + "state_code": "188", + "country_id": 201, + "country_code": "SI", + "latitude": "46.58361000", + "longitude": "16.16528000" + }, + { + "id": "104310", + "name": "Videm pri Ptuju", + "state_id": 4300, + "state_code": "135", + "country_id": 201, + "country_code": "SI", + "latitude": "46.36861000", + "longitude": "15.90639000" + }, + { + "id": "104311", + "name": "Vipava", + "state_id": 4196, + "state_code": "136", + "country_id": 201, + "country_code": "SI", + "latitude": "45.84667000", + "longitude": "13.96306000" + }, + { + "id": "104313", + "name": "Vitanje", + "state_id": 4148, + "state_code": "137", + "country_id": 201, + "country_code": "SI", + "latitude": "46.38167000", + "longitude": "15.29583000" + }, + { + "id": "104317", + "name": "Vodice", + "state_id": 4154, + "state_code": "138", + "country_id": 201, + "country_code": "SI", + "latitude": "46.18987000", + "longitude": "14.49492000" + }, + { + "id": "104318", + "name": "Vojnik", + "state_id": 4245, + "state_code": "139", + "country_id": 201, + "country_code": "SI", + "latitude": "46.29333000", + "longitude": "15.30333000" + }, + { + "id": "104320", + "name": "Vransko", + "state_id": 4163, + "state_code": "189", + "country_id": 201, + "country_code": "SI", + "latitude": "46.24389000", + "longitude": "14.95139000" + }, + { + "id": "104307", + "name": "Verd", + "state_id": 4262, + "state_code": "140", + "country_id": 201, + "country_code": "SI", + "latitude": "45.95667000", + "longitude": "14.30583000" + }, + { + "id": "104321", + "name": "Vrhnika", + "state_id": 4262, + "state_code": "140", + "country_id": 201, + "country_code": "SI", + "latitude": "45.96350000", + "longitude": "14.29484000" + }, + { + "id": "104323", + "name": "Vuzenica", + "state_id": 4226, + "state_code": "141", + "country_id": 201, + "country_code": "SI", + "latitude": "46.59639000", + "longitude": "15.16722000" + }, + { + "id": "104126", + "name": "Izlake", + "state_id": 4269, + "state_code": "142", + "country_id": 201, + "country_code": "SI", + "latitude": "46.15000000", + "longitude": "14.95000000" + }, + { + "id": "104136", + "name": "Kisovec", + "state_id": 4269, + "state_code": "142", + "country_id": 201, + "country_code": "SI", + "latitude": "46.13911000", + "longitude": "14.96295000" + }, + { + "id": "104325", + "name": "Zagorje ob Savi", + "state_id": 4269, + "state_code": "142", + "country_id": 201, + "country_code": "SI", + "latitude": "46.13179000", + "longitude": "14.99694000" + }, + { + "id": "104327", + "name": "Zavrč", + "state_id": 4182, + "state_code": "143", + "country_id": 201, + "country_code": "SI", + "latitude": "46.39167000", + "longitude": "16.04972000" + }, + { + "id": "104335", + "name": "Zreče", + "state_id": 4342, + "state_code": "144", + "country_id": 201, + "country_code": "SI", + "latitude": "46.38222000", + "longitude": "15.37917000" + }, + { + "id": "102905", + "name": "Tulagi", + "state_id": 4784, + "state_code": "CE", + "country_id": 202, + "country_code": "SB", + "latitude": "-9.10306000", + "longitude": "160.15056000" + }, + { + "id": "102902", + "name": "Honiara", + "state_id": 4785, + "state_code": "GU", + "country_id": 202, + "country_code": "SB", + "latitude": "-9.43333000", + "longitude": "159.95000000" + }, + { + "id": "102900", + "name": "Buala", + "state_id": 4780, + "state_code": "IS", + "country_id": 202, + "country_code": "SB", + "latitude": "-8.14497000", + "longitude": "159.59212000" + }, + { + "id": "102903", + "name": "Kirakira", + "state_id": 4782, + "state_code": "MK", + "country_id": 202, + "country_code": "SB", + "latitude": "-10.45442000", + "longitude": "161.92045000" + }, + { + "id": "102899", + "name": "Auki", + "state_id": 4783, + "state_code": "ML", + "country_id": 202, + "country_code": "SB", + "latitude": "-8.76778000", + "longitude": "160.69778000" + }, + { + "id": "102904", + "name": "Lata", + "state_id": 4779, + "state_code": "TE", + "country_id": 202, + "country_code": "SB", + "latitude": "-10.72500000", + "longitude": "165.79722000" + }, + { + "id": "102901", + "name": "Gizo", + "state_id": 4786, + "state_code": "WE", + "country_id": 202, + "country_code": "SB", + "latitude": "-8.10303000", + "longitude": "156.84186000" + }, + { + "id": "104815", + "name": "Tayeeglow", + "state_id": 917, + "state_code": "BK", + "country_id": 203, + "country_code": "SO", + "latitude": "4.01897000", + "longitude": "44.51111000" + }, + { + "id": "104816", + "name": "Waajid", + "state_id": 917, + "state_code": "BK", + "country_id": 203, + "country_code": "SO", + "latitude": "3.80958000", + "longitude": "43.24627000" + }, + { + "id": "104819", + "name": "Xuddur", + "state_id": 917, + "state_code": "BK", + "country_id": 203, + "country_code": "SO", + "latitude": "4.12129000", + "longitude": "43.88945000" + }, + { + "id": "104820", + "name": "Yeed", + "state_id": 917, + "state_code": "BK", + "country_id": 203, + "country_code": "SO", + "latitude": "4.55000000", + "longitude": "43.03333000" + }, + { + "id": "104810", + "name": "Mogadishu", + "state_id": 927, + "state_code": "BN", + "country_id": 203, + "country_code": "SO", + "latitude": "2.03711000", + "longitude": "45.34375000" + }, + { + "id": "104778", + "name": "Bandarbeyla", + "state_id": 930, + "state_code": "BR", + "country_id": 203, + "country_code": "SO", + "latitude": "9.49420000", + "longitude": "50.81220000" + }, + { + "id": "104779", + "name": "Bargaal", + "state_id": 930, + "state_code": "BR", + "country_id": 203, + "country_code": "SO", + "latitude": "11.28636000", + "longitude": "51.07730000" + }, + { + "id": "104781", + "name": "Bereeda", + "state_id": 930, + "state_code": "BR", + "country_id": 203, + "country_code": "SO", + "latitude": "11.87037000", + "longitude": "51.05795000" + }, + { + "id": "104782", + "name": "Bosaso", + "state_id": 930, + "state_code": "BR", + "country_id": 203, + "country_code": "SO", + "latitude": "11.28421000", + "longitude": "49.18158000" + }, + { + "id": "104788", + "name": "Caluula", + "state_id": 930, + "state_code": "BR", + "country_id": 203, + "country_code": "SO", + "latitude": "11.96611000", + "longitude": "50.75694000" + }, + { + "id": "104800", + "name": "Iskushuban", + "state_id": 930, + "state_code": "BR", + "country_id": 203, + "country_code": "SO", + "latitude": "10.28370000", + "longitude": "50.23000000" + }, + { + "id": "104812", + "name": "Qandala", + "state_id": 930, + "state_code": "BR", + "country_id": 203, + "country_code": "SO", + "latitude": "11.47197000", + "longitude": "49.87282000" + }, + { + "id": "104777", + "name": "Baidoa", + "state_id": 926, + "state_code": "BY", + "country_id": 203, + "country_code": "SO", + "latitude": "3.11383000", + "longitude": "43.64980000" + }, + { + "id": "104786", + "name": "Buurhakaba", + "state_id": 926, + "state_code": "BY", + "country_id": 203, + "country_code": "SO", + "latitude": "2.80257000", + "longitude": "44.07805000" + }, + { + "id": "104790", + "name": "Ceelbuur", + "state_id": 918, + "state_code": "GA", + "country_id": 203, + "country_code": "SO", + "latitude": "4.68501000", + "longitude": "46.61760000" + }, + { + "id": "104791", + "name": "Ceeldheer", + "state_id": 918, + "state_code": "GA", + "country_id": 203, + "country_code": "SO", + "latitude": "3.84878000", + "longitude": "47.18064000" + }, + { + "id": "104793", + "name": "Dhuusamarreeb", + "state_id": 918, + "state_code": "GA", + "country_id": 203, + "country_code": "SO", + "latitude": "5.53597000", + "longitude": "46.38666000" + }, + { + "id": "104776", + "name": "Baardheere", + "state_id": 928, + "state_code": "GE", + "country_id": 203, + "country_code": "SO", + "latitude": "2.34464000", + "longitude": "42.27644000" + }, + { + "id": "104797", + "name": "Garbahaarrey", + "state_id": 928, + "state_code": "GE", + "country_id": 203, + "country_code": "SO", + "latitude": "3.32892000", + "longitude": "42.22091000" + }, + { + "id": "104807", + "name": "Luuq", + "state_id": 928, + "state_code": "GE", + "country_id": 203, + "country_code": "SO", + "latitude": "3.80315000", + "longitude": "42.54417000" + }, + { + "id": "104780", + "name": "Beledweyne", + "state_id": 915, + "state_code": "HI", + "country_id": 203, + "country_code": "SO", + "latitude": "4.73583000", + "longitude": "45.20361000" + }, + { + "id": "104784", + "name": "Buulobarde", + "state_id": 915, + "state_code": "HI", + "country_id": 203, + "country_code": "SO", + "latitude": "3.85375000", + "longitude": "45.56744000" + }, + { + "id": "104801", + "name": "Jalalaqsi", + "state_id": 915, + "state_code": "HI", + "country_id": 203, + "country_code": "SO", + "latitude": "3.37660000", + "longitude": "45.59960000" + }, + { + "id": "104785", + "name": "Buur Gaabo", + "state_id": 924, + "state_code": "JH", + "country_id": 203, + "country_code": "SO", + "latitude": "-1.21917000", + "longitude": "41.83725000" + }, + { + "id": "104802", + "name": "Jamaame", + "state_id": 924, + "state_code": "JH", + "country_id": 203, + "country_code": "SO", + "latitude": "0.06968000", + "longitude": "42.74497000" + }, + { + "id": "104805", + "name": "Kismayo", + "state_id": 924, + "state_code": "JH", + "country_id": 203, + "country_code": "SO", + "latitude": "-0.35817000", + "longitude": "42.54536000" + }, + { + "id": "104775", + "name": "Afgooye", + "state_id": 921, + "state_code": "SH", + "country_id": 203, + "country_code": "SO", + "latitude": "2.13810000", + "longitude": "45.12120000" + }, + { + "id": "104809", + "name": "Marka", + "state_id": 921, + "state_code": "SH", + "country_id": 203, + "country_code": "SO", + "latitude": "1.71594000", + "longitude": "44.77166000" + }, + { + "id": "104813", + "name": "Qoryooley", + "state_id": 921, + "state_code": "SH", + "country_id": 203, + "country_code": "SO", + "latitude": "1.78784000", + "longitude": "44.52999000" + }, + { + "id": "104817", + "name": "Wanlaweyn", + "state_id": 921, + "state_code": "SH", + "country_id": 203, + "country_code": "SO", + "latitude": "2.61850000", + "longitude": "44.89380000" + }, + { + "id": "104794", + "name": "Dujuuma", + "state_id": 922, + "state_code": "JD", + "country_id": 203, + "country_code": "SO", + "latitude": "1.25311000", + "longitude": "42.57377000" + }, + { + "id": "104804", + "name": "Jilib", + "state_id": 922, + "state_code": "JD", + "country_id": 203, + "country_code": "SO", + "latitude": "0.48829000", + "longitude": "42.78535000" + }, + { + "id": "104814", + "name": "Saacow", + "state_id": 922, + "state_code": "JD", + "country_id": 203, + "country_code": "SO", + "latitude": "1.62794000", + "longitude": "42.44067000" + }, + { + "id": "104787", + "name": "Cadale", + "state_id": 923, + "state_code": "SD", + "country_id": 203, + "country_code": "SO", + "latitude": "2.76030000", + "longitude": "46.32220000" + }, + { + "id": "104803", + "name": "Jawhar", + "state_id": 923, + "state_code": "SD", + "country_id": 203, + "country_code": "SO", + "latitude": "2.78087000", + "longitude": "45.50048000" + }, + { + "id": "104808", + "name": "Mahaddayweyne", + "state_id": 923, + "state_code": "SD", + "country_id": 203, + "country_code": "SO", + "latitude": "2.97260000", + "longitude": "45.53470000" + }, + { + "id": "104796", + "name": "Gaalkacyo", + "state_id": 916, + "state_code": "MU", + "country_id": 203, + "country_code": "SO", + "latitude": "6.76972000", + "longitude": "47.43083000" + }, + { + "id": "104799", + "name": "Hobyo", + "state_id": 916, + "state_code": "MU", + "country_id": 203, + "country_code": "SO", + "latitude": "5.35050000", + "longitude": "48.52680000" + }, + { + "id": "104818", + "name": "Xarardheere", + "state_id": 916, + "state_code": "MU", + "country_id": 203, + "country_code": "SO", + "latitude": "4.65440000", + "longitude": "47.85750000" + }, + { + "id": "104795", + "name": "Eyl", + "state_id": 920, + "state_code": "NU", + "country_id": 203, + "country_code": "SO", + "latitude": "7.98030000", + "longitude": "49.81640000" + }, + { + "id": "104798", + "name": "Garoowe", + "state_id": 920, + "state_code": "NU", + "country_id": 203, + "country_code": "SO", + "latitude": "8.40207000", + "longitude": "48.48284000" + }, + { + "id": "104792", + "name": "Ceerigaabo", + "state_id": 919, + "state_code": "SA", + "country_id": 203, + "country_code": "SO", + "latitude": "10.61616000", + "longitude": "47.36795000" + }, + { + "id": "104806", + "name": "Las Khorey", + "state_id": 919, + "state_code": "SA", + "country_id": 203, + "country_code": "SO", + "latitude": "11.15950000", + "longitude": "48.19670000" + }, + { + "id": "104783", + "name": "Burao", + "state_id": 929, + "state_code": "TO", + "country_id": 203, + "country_code": "SO", + "latitude": "9.52213000", + "longitude": "45.53363000" + }, + { + "id": "104789", + "name": "Ceek", + "state_id": 929, + "state_code": "TO", + "country_id": 203, + "country_code": "SO", + "latitude": "8.99907000", + "longitude": "45.35824000" + }, + { + "id": "104811", + "name": "Oodweyne", + "state_id": 929, + "state_code": "TO", + "country_id": 203, + "country_code": "SO", + "latitude": "9.40920000", + "longitude": "45.06397000" + }, + { + "id": "131015", + "name": "Adelaide", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.70747000", + "longitude": "26.29564000" + }, + { + "id": "131018", + "name": "Alfred Nzo District Municipality", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.66803000", + "longitude": "29.15490000" + }, + { + "id": "131019", + "name": "Alice", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.78749000", + "longitude": "26.83440000" + }, + { + "id": "131020", + "name": "Aliwal North", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.69366000", + "longitude": "26.71141000" + }, + { + "id": "131023", + "name": "Amathole District Municipality", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.55895000", + "longitude": "27.45919000" + }, + { + "id": "131037", + "name": "Bhisho", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.84721000", + "longitude": "27.44218000" + }, + { + "id": "131052", + "name": "Buffalo City Metropolitan Municipality", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.95141000", + "longitude": "27.61164000" + }, + { + "id": "131053", + "name": "Burgersdorp", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.99766000", + "longitude": "26.32862000" + }, + { + "id": "131054", + "name": "Butterworth", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.33083000", + "longitude": "28.14981000" + }, + { + "id": "131055", + "name": "Cacadu District Municipality", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.06583000", + "longitude": "24.77583000" + }, + { + "id": "131068", + "name": "Chris Hani District Municipality", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.79033000", + "longitude": "26.43965000" + }, + { + "id": "131078", + "name": "Cradock", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.16422000", + "longitude": "25.61918000" + }, + { + "id": "131086", + "name": "Dordrecht", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.37200000", + "longitude": "27.04878000" + }, + { + "id": "131093", + "name": "East London", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.01529000", + "longitude": "27.91162000" + }, + { + "id": "131103", + "name": "Elliot", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.33333000", + "longitude": "27.85000000" + }, + { + "id": "131109", + "name": "Fort Beaufort", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.77477000", + "longitude": "26.63376000" + }, + { + "id": "131119", + "name": "Graaff-Reinet", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.25215000", + "longitude": "24.53075000" + }, + { + "id": "131121", + "name": "Grahamstown", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.30422000", + "longitude": "26.53276000" + }, + { + "id": "131133", + "name": "Ilinge", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.97676000", + "longitude": "27.04267000" + }, + { + "id": "131135", + "name": "Joe Gqabi District Municipality", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.94178000", + "longitude": "27.06053000" + }, + { + "id": "131141", + "name": "Kirkwood", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.39829000", + "longitude": "25.44279000" + }, + { + "id": "131152", + "name": "Kruisfontein", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.00333000", + "longitude": "24.73142000" + }, + { + "id": "131157", + "name": "Lady Frere", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.70312000", + "longitude": "27.23290000" + }, + { + "id": "131174", + "name": "Middelburg", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.49285000", + "longitude": "25.00633000" + }, + { + "id": "131182", + "name": "Molteno", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.39675000", + "longitude": "26.36246000" + }, + { + "id": "131191", + "name": "Mthatha", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.58893000", + "longitude": "28.78443000" + }, + { + "id": "131197", + "name": "Nelson Mandela Bay Metropolitan Municipality", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.80399000", + "longitude": "25.49213000" + }, + { + "id": "131206", + "name": "OR Tambo District Municipality", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.46740000", + "longitude": "29.05247000" + }, + { + "id": "131224", + "name": "Port Alfred", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.58601000", + "longitude": "26.88329000" + }, + { + "id": "131225", + "name": "Port Elizabeth", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.96109000", + "longitude": "25.61494000" + }, + { + "id": "131226", + "name": "Port Saint John’s", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.62291000", + "longitude": "29.54477000" + }, + { + "id": "131233", + "name": "Queensdale", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.87101000", + "longitude": "26.97862000" + }, + { + "id": "131234", + "name": "Queenstown", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.89756000", + "longitude": "26.87533000" + }, + { + "id": "131259", + "name": "Somerset East", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.72173000", + "longitude": "25.58804000" + }, + { + "id": "131266", + "name": "Stutterheim", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.57076000", + "longitude": "27.42396000" + }, + { + "id": "131279", + "name": "Uitenhage", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.75757000", + "longitude": "25.39710000" + }, + { + "id": "131308", + "name": "Whittlesea", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.17588000", + "longitude": "26.82437000" + }, + { + "id": "131309", + "name": "Willowmore", + "state_id": 938, + "state_code": "EC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.29265000", + "longitude": "23.48954000" + }, + { + "id": "131021", + "name": "Allanridge", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.75431000", + "longitude": "26.64382000" + }, + { + "id": "131036", + "name": "Bethlehem", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.23078000", + "longitude": "28.30707000" + }, + { + "id": "131038", + "name": "Bloemfontein", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.12107000", + "longitude": "26.21400000" + }, + { + "id": "131043", + "name": "Bothaville", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.38870000", + "longitude": "26.61701000" + }, + { + "id": "131044", + "name": "Botshabelo", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.26737000", + "longitude": "26.72595000" + }, + { + "id": "131046", + "name": "Brandfort", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.70008000", + "longitude": "26.45968000" + }, + { + "id": "131075", + "name": "Clocolan", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.91367000", + "longitude": "27.56555000" + }, + { + "id": "131084", + "name": "Deneysville", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.89080000", + "longitude": "28.09707000" + }, + { + "id": "131107", + "name": "Fezile Dabi District Municipality", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.33918000", + "longitude": "27.71927000" + }, + { + "id": "131111", + "name": "Frankfort", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.27888000", + "longitude": "28.49696000" + }, + { + "id": "131124", + "name": "Harrismith", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.27276000", + "longitude": "29.12946000" + }, + { + "id": "131126", + "name": "Heilbron", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.28115000", + "longitude": "27.97090000" + }, + { + "id": "131128", + "name": "Hennenman", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.97654000", + "longitude": "27.02423000" + }, + { + "id": "131131", + "name": "Hoopstad", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.83273000", + "longitude": "25.90833000" + }, + { + "id": "131146", + "name": "Koppies", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.24179000", + "longitude": "27.57422000" + }, + { + "id": "131150", + "name": "Kroonstad", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.65036000", + "longitude": "27.23488000" + }, + { + "id": "131154", + "name": "Kutloanong", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.83333000", + "longitude": "26.75000000" + }, + { + "id": "131158", + "name": "Ladybrand", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.19448000", + "longitude": "27.45739000" + }, + { + "id": "131161", + "name": "Lejweleputswa District Municipality", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.23982000", + "longitude": "26.12649000" + }, + { + "id": "131163", + "name": "Lindley", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.87910000", + "longitude": "27.91348000" + }, + { + "id": "131170", + "name": "Mangaung Metropolitan Municipality", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.15627000", + "longitude": "26.35116000" + }, + { + "id": "131173", + "name": "Marquard", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.66449000", + "longitude": "27.43048000" + }, + { + "id": "131214", + "name": "Parys", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.90330000", + "longitude": "27.45727000" + }, + { + "id": "131216", + "name": "Phuthaditjhaba", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.52423000", + "longitude": "28.81582000" + }, + { + "id": "131237", + "name": "Reitz", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.80138000", + "longitude": "28.42726000" + }, + { + "id": "131249", + "name": "Sasolburg", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.81358000", + "longitude": "27.81695000" + }, + { + "id": "131255", + "name": "Senekal", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.31971000", + "longitude": "27.62082000" + }, + { + "id": "131271", + "name": "Thaba Nchu", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.20932000", + "longitude": "26.83898000" + }, + { + "id": "131273", + "name": "Thabo Mofutsanyana District Municipality", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.24378000", + "longitude": "28.34077000" + }, + { + "id": "131274", + "name": "Theunissen", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.41098000", + "longitude": "26.70107000" + }, + { + "id": "131285", + "name": "Ventersburg", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.08561000", + "longitude": "27.13814000" + }, + { + "id": "131288", + "name": "Viljoenskroon", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.20841000", + "longitude": "26.94855000" + }, + { + "id": "131289", + "name": "Villiers", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.03026000", + "longitude": "28.60061000" + }, + { + "id": "131290", + "name": "Virginia", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.10391000", + "longitude": "26.86593000" + }, + { + "id": "131292", + "name": "Vrede", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.42573000", + "longitude": "29.16585000" + }, + { + "id": "131293", + "name": "Vredefort", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.00805000", + "longitude": "27.36460000" + }, + { + "id": "131301", + "name": "Welkom", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.97742000", + "longitude": "26.73506000" + }, + { + "id": "131303", + "name": "Wesselsbron", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.85490000", + "longitude": "26.36583000" + }, + { + "id": "131310", + "name": "Winburg", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.51805000", + "longitude": "27.00933000" + }, + { + "id": "131314", + "name": "Xhariep District Municipality", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.84311000", + "longitude": "25.83286000" + }, + { + "id": "131315", + "name": "Zastron", + "state_id": 932, + "state_code": "FS", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.30225000", + "longitude": "27.08395000" + }, + { + "id": "131017", + "name": "Alberton", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.26786000", + "longitude": "28.12225000" + }, + { + "id": "131032", + "name": "Benoni", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.18848000", + "longitude": "28.32078000" + }, + { + "id": "131042", + "name": "Boksburg", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.21197000", + "longitude": "28.25958000" + }, + { + "id": "131045", + "name": "Brakpan", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.23656000", + "longitude": "28.36938000" + }, + { + "id": "131051", + "name": "Bronkhorstspruit", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.81015000", + "longitude": "28.74248000" + }, + { + "id": "131062", + "name": "Carletonville", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.36094000", + "longitude": "27.39767000" + }, + { + "id": "131066", + "name": "Centurion", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.85891000", + "longitude": "28.18577000" + }, + { + "id": "131071", + "name": "City of Johannesburg Metropolitan Municipality", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.17673000", + "longitude": "27.96353000" + }, + { + "id": "131072", + "name": "City of Tshwane Metropolitan Municipality", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.65985000", + "longitude": "28.44343000" + }, + { + "id": "131079", + "name": "Cullinan", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.67088000", + "longitude": "28.52364000" + }, + { + "id": "131085", + "name": "Diepsloot", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.93312000", + "longitude": "28.01213000" + }, + { + "id": "131094", + "name": "Eastleigh", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.12965000", + "longitude": "28.15541000" + }, + { + "id": "131096", + "name": "Eden Glen", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.13230000", + "longitude": "28.16859000" + }, + { + "id": "131097", + "name": "Eden Glen Ext 60", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.12593000", + "longitude": "28.16500000" + }, + { + "id": "131098", + "name": "Edenvale", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.14095000", + "longitude": "28.15247000" + }, + { + "id": "131100", + "name": "Ekangala", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.69619000", + "longitude": "28.74918000" + }, + { + "id": "131101", + "name": "Ekurhuleni Metropolitan Municipality", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.19890000", + "longitude": "28.31262000" + }, + { + "id": "131125", + "name": "Heidelberg", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.50476000", + "longitude": "28.35921000" + }, + { + "id": "131136", + "name": "Johannesburg", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.20227000", + "longitude": "28.04363000" + }, + { + "id": "131151", + "name": "Krugersdorp", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.08577000", + "longitude": "27.77515000" + }, + { + "id": "131166", + "name": "Mabopane", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.49768000", + "longitude": "28.10065000" + }, + { + "id": "131176", + "name": "Midrand", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.98953000", + "longitude": "28.12843000" + }, + { + "id": "131177", + "name": "Midstream", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.91849000", + "longitude": "28.19881000" + }, + { + "id": "131179", + "name": "Modderfontein", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.08909000", + "longitude": "28.16534000" + }, + { + "id": "131193", + "name": "Muldersdriseloop", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.03673000", + "longitude": "27.83798000" + }, + { + "id": "131202", + "name": "Nigel", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.43138000", + "longitude": "28.47713000" + }, + { + "id": "131207", + "name": "Orange Farm", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.48333000", + "longitude": "27.86667000" + }, + { + "id": "131230", + "name": "Pretoria", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.74486000", + "longitude": "28.18783000" + }, + { + "id": "131235", + "name": "Randburg", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.09410000", + "longitude": "28.00123000" + }, + { + "id": "131236", + "name": "Randfontein", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.18440000", + "longitude": "27.70203000" + }, + { + "id": "131245", + "name": "Roodepoort", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.16250000", + "longitude": "27.87250000" + }, + { + "id": "131253", + "name": "Sedibeng District Municipality", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.56686000", + "longitude": "28.18277000" + }, + { + "id": "131260", + "name": "Soweto", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.26781000", + "longitude": "27.85849000" + }, + { + "id": "131262", + "name": "Springs", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.25000000", + "longitude": "28.40000000" + }, + { + "id": "131270", + "name": "Tembisa", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.99636000", + "longitude": "28.22680000" + }, + { + "id": "131284", + "name": "Vanderbijlpark", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.71171000", + "longitude": "27.83795000" + }, + { + "id": "131286", + "name": "Vereeniging", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.67313000", + "longitude": "27.92615000" + }, + { + "id": "131305", + "name": "West Rand District Municipality", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.24565000", + "longitude": "27.55538000" + }, + { + "id": "131306", + "name": "Westonaria", + "state_id": 936, + "state_code": "GT", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.31905000", + "longitude": "27.64860000" + }, + { + "id": "131022", + "name": "Amajuba District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.73558000", + "longitude": "30.13537000" + }, + { + "id": "131027", + "name": "Ballito", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.53897000", + "longitude": "31.21439000" + }, + { + "id": "131033", + "name": "Berea", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.85185000", + "longitude": "30.99337000" + }, + { + "id": "131091", + "name": "Dundee", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.16678000", + "longitude": "30.23371000" + }, + { + "id": "131092", + "name": "Durban", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.85790000", + "longitude": "31.02920000" + }, + { + "id": "131102", + "name": "Ekuvukeni", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.46752000", + "longitude": "30.15513000" + }, + { + "id": "131320", + "name": "eMkhomazi", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.20674000", + "longitude": "30.79776000" + }, + { + "id": "131104", + "name": "Empangeni", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.76197000", + "longitude": "31.89329000" + }, + { + "id": "131106", + "name": "Eshowe", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.88649000", + "longitude": "31.46990000" + }, + { + "id": "131321", + "name": "eSikhaleni", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.87097000", + "longitude": "31.89961000" + }, + { + "id": "131322", + "name": "eThekwini Metropolitan Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.86670000", + "longitude": "31.01670000" + }, + { + "id": "131118", + "name": "Glencoe", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.17827000", + "longitude": "30.14702000" + }, + { + "id": "131122", + "name": "Greytown", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.06415000", + "longitude": "30.59279000" + }, + { + "id": "131130", + "name": "Hluhluwe", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.01895000", + "longitude": "32.26762000" + }, + { + "id": "131132", + "name": "Howick", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.47795000", + "longitude": "30.23057000" + }, + { + "id": "131323", + "name": "iLembe District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.27326000", + "longitude": "31.14253000" + }, + { + "id": "131144", + "name": "Kokstad", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.54723000", + "longitude": "29.42412000" + }, + { + "id": "131155", + "name": "KwaDukuza", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.32816000", + "longitude": "31.28954000" + }, + { + "id": "131172", + "name": "Margate", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.86360000", + "longitude": "30.37052000" + }, + { + "id": "131183", + "name": "Mondlo", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.98299000", + "longitude": "30.71769000" + }, + { + "id": "131185", + "name": "Mooirivier", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.20824000", + "longitude": "29.99460000" + }, + { + "id": "131189", + "name": "Mpophomeni", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.56822000", + "longitude": "30.18618000" + }, + { + "id": "131190", + "name": "Mpumalanga", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.81292000", + "longitude": "30.63646000" + }, + { + "id": "131192", + "name": "Mtubatuba", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.41789000", + "longitude": "32.18483000" + }, + { + "id": "131196", + "name": "Ndwedwe", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.51686000", + "longitude": "30.92687000" + }, + { + "id": "131199", + "name": "Newcastle", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.75796000", + "longitude": "29.93180000" + }, + { + "id": "131218", + "name": "Pietermaritzburg", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.61679000", + "longitude": "30.39278000" + }, + { + "id": "131227", + "name": "Port Shepstone", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.74137000", + "longitude": "30.45499000" + }, + { + "id": "131239", + "name": "Richards Bay", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.78301000", + "longitude": "32.03768000" + }, + { + "id": "131240", + "name": "Richmond", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.87196000", + "longitude": "30.27235000" + }, + { + "id": "131251", + "name": "Scottburgh", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.28666000", + "longitude": "30.75316000" + }, + { + "id": "131256", + "name": "Sisonke District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.11082000", + "longitude": "29.66009000" + }, + { + "id": "131267", + "name": "Sundumbili", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.13371000", + "longitude": "31.39752000" + }, + { + "id": "131278", + "name": "Ugu District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.54365000", + "longitude": "30.27480000" + }, + { + "id": "131280", + "name": "Ulundi", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.33523000", + "longitude": "31.41617000" + }, + { + "id": "131324", + "name": "uMgungundlovu District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.50927000", + "longitude": "30.19838000" + }, + { + "id": "131325", + "name": "uMkhanyakude District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.62236000", + "longitude": "32.32945000" + }, + { + "id": "131326", + "name": "uMzinyathi District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.58570000", + "longitude": "30.55883000" + }, + { + "id": "131327", + "name": "uThukela District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.71920000", + "longitude": "29.65799000" + }, + { + "id": "131328", + "name": "uThungulu District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.70046000", + "longitude": "31.51527000" + }, + { + "id": "131282", + "name": "Utrecht", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.65862000", + "longitude": "30.32166000" + }, + { + "id": "131297", + "name": "Vryheid", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.76952000", + "longitude": "30.79165000" + }, + { + "id": "131318", + "name": "Zululand District Municipality", + "state_id": 935, + "state_code": "NL", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.81139000", + "longitude": "31.29426000" + }, + { + "id": "131040", + "name": "Bochum", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.28609000", + "longitude": "29.13964000" + }, + { + "id": "131061", + "name": "Capricorn District Municipality", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.48163000", + "longitude": "29.18350000" + }, + { + "id": "131090", + "name": "Duiwelskloof", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.69339000", + "longitude": "30.14002000" + }, + { + "id": "131113", + "name": "Ga-Kgapane", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.64378000", + "longitude": "30.22324000" + }, + { + "id": "131117", + "name": "Giyani", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.30246000", + "longitude": "30.71868000" + }, + { + "id": "131160", + "name": "Lebowakgomo", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-24.20000000", + "longitude": "29.50000000" + }, + { + "id": "131164", + "name": "Louis Trichardt", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.04385000", + "longitude": "29.90319000" + }, + { + "id": "131171", + "name": "Mankoeng", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.90000000", + "longitude": "29.81667000" + }, + { + "id": "131180", + "name": "Modimolle", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-24.70000000", + "longitude": "28.40000000" + }, + { + "id": "131181", + "name": "Mokopane", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-24.19436000", + "longitude": "29.00974000" + }, + { + "id": "131187", + "name": "Mopani District Municipality", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.76661000", + "longitude": "30.83600000" + }, + { + "id": "131194", + "name": "Musina", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-22.34881000", + "longitude": "30.04074000" + }, + { + "id": "131204", + "name": "Nkowakowa", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.88782000", + "longitude": "30.28708000" + }, + { + "id": "131215", + "name": "Phalaborwa", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.94299000", + "longitude": "31.14107000" + }, + { + "id": "131223", + "name": "Polokwane", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.90449000", + "longitude": "29.46885000" + }, + { + "id": "131254", + "name": "Sekhukhune District Municipality", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-24.82806000", + "longitude": "29.83803000" + }, + { + "id": "131272", + "name": "Thabazimbi", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-24.59165000", + "longitude": "27.41155000" + }, + { + "id": "131275", + "name": "Thohoyandou", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-22.94564000", + "longitude": "30.48497000" + }, + { + "id": "131276", + "name": "Thulamahashi", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-24.72459000", + "longitude": "31.19939000" + }, + { + "id": "131277", + "name": "Tzaneen", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-23.83322000", + "longitude": "30.16351000" + }, + { + "id": "131287", + "name": "Vhembe District Municipality", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-22.75467000", + "longitude": "30.19360000" + }, + { + "id": "131298", + "name": "Warmbaths", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-24.88333000", + "longitude": "28.28333000" + }, + { + "id": "131300", + "name": "Waterberg District Municipality", + "state_id": 933, + "state_code": "LP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-24.20514000", + "longitude": "27.97870000" + }, + { + "id": "131026", + "name": "Balfour", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.66331000", + "longitude": "28.59016000" + }, + { + "id": "131028", + "name": "Barberton", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.78842000", + "longitude": "31.05319000" + }, + { + "id": "131031", + "name": "Belfast", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.68991000", + "longitude": "30.03504000" + }, + { + "id": "131035", + "name": "Bethal", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.45794000", + "longitude": "29.46553000" + }, + { + "id": "131049", + "name": "Breyten", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.30176000", + "longitude": "29.98696000" + }, + { + "id": "131064", + "name": "Carolina", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.06927000", + "longitude": "30.11489000" + }, + { + "id": "131083", + "name": "Delmas", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.14660000", + "longitude": "28.68322000" + }, + { + "id": "131089", + "name": "Driefontein", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.01770000", + "longitude": "30.44979000" + }, + { + "id": "131099", + "name": "Ehlanzeni District", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.35100000", + "longitude": "31.36100000" + }, + { + "id": "131319", + "name": "eMbalenhle", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.53333000", + "longitude": "29.06667000" + }, + { + "id": "131105", + "name": "Ermelo", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.53333000", + "longitude": "29.98333000" + }, + { + "id": "131116", + "name": "Gert Sibande District Municipality", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.67100000", + "longitude": "29.92953000" + }, + { + "id": "131127", + "name": "Hendrina", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.15881000", + "longitude": "29.71528000" + }, + { + "id": "131145", + "name": "Komatipoort", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.43321000", + "longitude": "31.95478000" + }, + { + "id": "131149", + "name": "Kriel", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.27391000", + "longitude": "29.22530000" + }, + { + "id": "131165", + "name": "Lydenburg", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.09598000", + "longitude": "30.44393000" + }, + { + "id": "131175", + "name": "Middelburg", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.77507000", + "longitude": "29.46482000" + }, + { + "id": "131198", + "name": "Nelspruit", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.47448000", + "longitude": "30.97033000" + }, + { + "id": "131203", + "name": "Nkangala District Municipality", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.71222000", + "longitude": "29.42431000" + }, + { + "id": "131217", + "name": "Piet Retief", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.00706000", + "longitude": "30.81323000" + }, + { + "id": "131252", + "name": "Secunda", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.55000000", + "longitude": "29.16667000" + }, + { + "id": "131257", + "name": "Siyabuswa", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.11319000", + "longitude": "29.04454000" + }, + { + "id": "131263", + "name": "Standerton", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.93366000", + "longitude": "29.24152000" + }, + { + "id": "131291", + "name": "Volksrust", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.36541000", + "longitude": "29.88175000" + }, + { + "id": "131307", + "name": "White River", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.33177000", + "longitude": "31.01166000" + }, + { + "id": "131311", + "name": "Witbank", + "state_id": 937, + "state_code": "MP", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.87133000", + "longitude": "29.23323000" + }, + { + "id": "131039", + "name": "Bloemhof", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.64685000", + "longitude": "25.60697000" + }, + { + "id": "131041", + "name": "Bojanala Platinum District Municipality", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.42612000", + "longitude": "27.22430000" + }, + { + "id": "131050", + "name": "Brits", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.63473000", + "longitude": "27.78022000" + }, + { + "id": "131069", + "name": "Christiana", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.91402000", + "longitude": "25.16111000" + }, + { + "id": "131087", + "name": "Dr Kenneth Kaunda District Municipality", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.80678000", + "longitude": "26.56926000" + }, + { + "id": "131088", + "name": "Dr Ruth Segomotsi Mompati District Municipality", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.63765000", + "longitude": "24.27462000" + }, + { + "id": "131108", + "name": "Fochville", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.48862000", + "longitude": "27.49387000" + }, + { + "id": "131114", + "name": "Ga-Rankuwa", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.61692000", + "longitude": "27.99471000" + }, + { + "id": "131134", + "name": "Jan Kempdorp", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.92246000", + "longitude": "24.83051000" + }, + { + "id": "131142", + "name": "Klerksdorp", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.85213000", + "longitude": "26.66672000" + }, + { + "id": "131147", + "name": "Koster", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.86301000", + "longitude": "26.89756000" + }, + { + "id": "131162", + "name": "Lichtenburg", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.15200000", + "longitude": "26.15968000" + }, + { + "id": "131167", + "name": "Mahikeng", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.86522000", + "longitude": "25.64421000" + }, + { + "id": "131168", + "name": "Maile", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.44152000", + "longitude": "27.28165000" + }, + { + "id": "131178", + "name": "Mmabatho", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.85000000", + "longitude": "25.63333000" + }, + { + "id": "131201", + "name": "Ngaka Modiri Molema District Municipality", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.95559000", + "longitude": "25.80782000" + }, + { + "id": "131209", + "name": "Orkney", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.98023000", + "longitude": "26.67272000" + }, + { + "id": "131229", + "name": "Potchefstroom", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.71667000", + "longitude": "27.10000000" + }, + { + "id": "131247", + "name": "Rustenburg", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.66756000", + "longitude": "27.24208000" + }, + { + "id": "131250", + "name": "Schweizer-Reneke", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.18871000", + "longitude": "25.32931000" + }, + { + "id": "131265", + "name": "Stilfontein", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.84493000", + "longitude": "26.76829000" + }, + { + "id": "131296", + "name": "Vryburg", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-26.95659000", + "longitude": "24.72840000" + }, + { + "id": "131312", + "name": "Wolmaransstad", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.19740000", + "longitude": "25.98311000" + }, + { + "id": "131316", + "name": "Zeerust", + "state_id": 934, + "state_code": "NW", + "country_id": 204, + "country_code": "ZA", + "latitude": "-25.53695000", + "longitude": "26.07512000" + }, + { + "id": "131029", + "name": "Barkly West", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.53537000", + "longitude": "24.52151000" + }, + { + "id": "131047", + "name": "Brandvlei", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.46532000", + "longitude": "20.48659000" + }, + { + "id": "131058", + "name": "Calvinia", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.47069000", + "longitude": "19.77601000" + }, + { + "id": "131063", + "name": "Carnarvon", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.96827000", + "longitude": "22.13303000" + }, + { + "id": "131076", + "name": "Colesberg", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.71999000", + "longitude": "25.09718000" + }, + { + "id": "131080", + "name": "Daniëlskuil", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.18873000", + "longitude": "23.53951000" + }, + { + "id": "131081", + "name": "De Aar", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.64966000", + "longitude": "24.01230000" + }, + { + "id": "131110", + "name": "Frances Baard District Municipality", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.30003000", + "longitude": "24.38188000" + }, + { + "id": "131112", + "name": "Fraserburg", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.91566000", + "longitude": "21.51335000" + }, + { + "id": "131137", + "name": "John Taolo Gaetsewe District Municipality", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.04549000", + "longitude": "23.04706000" + }, + { + "id": "131138", + "name": "Kathu", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.69569000", + "longitude": "23.04929000" + }, + { + "id": "131139", + "name": "Kenhardt", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.34574000", + "longitude": "21.15786000" + }, + { + "id": "131140", + "name": "Kimberley", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.73226000", + "longitude": "24.76232000" + }, + { + "id": "131153", + "name": "Kuruman", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.45240000", + "longitude": "23.43246000" + }, + { + "id": "131195", + "name": "Namakwa District Municipality", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.53561000", + "longitude": "19.42892000" + }, + { + "id": "131205", + "name": "Noupoort", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.18736000", + "longitude": "24.94991000" + }, + { + "id": "131208", + "name": "Orania", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.81381000", + "longitude": "24.41205000" + }, + { + "id": "131213", + "name": "Pampierstad", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-27.78324000", + "longitude": "24.68768000" + }, + { + "id": "131220", + "name": "Pixley ka Seme District Municipality", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.28920000", + "longitude": "23.25818000" + }, + { + "id": "131222", + "name": "Pofadder", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.12830000", + "longitude": "19.39492000" + }, + { + "id": "131228", + "name": "Postmasburg", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.33392000", + "longitude": "23.06541000" + }, + { + "id": "131231", + "name": "Prieska", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.66803000", + "longitude": "22.74251000" + }, + { + "id": "131241", + "name": "Ritchie", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.03801000", + "longitude": "24.60278000" + }, + { + "id": "131258", + "name": "Siyanda District Municipality", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.00013000", + "longitude": "21.18459000" + }, + { + "id": "131261", + "name": "Springbok", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-29.66434000", + "longitude": "17.88650000" + }, + { + "id": "131281", + "name": "Upington", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.44776000", + "longitude": "21.25612000" + }, + { + "id": "131283", + "name": "Van Wyksvlei", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-30.35101000", + "longitude": "21.82498000" + }, + { + "id": "131299", + "name": "Warrenton", + "state_id": 931, + "state_code": "NC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-28.11396000", + "longitude": "24.84753000" + }, + { + "id": "131016", + "name": "Albertina", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.20544000", + "longitude": "21.58001000" + }, + { + "id": "131024", + "name": "Arniston", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.66739000", + "longitude": "20.23086000" + }, + { + "id": "131025", + "name": "Atlantis", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.56668000", + "longitude": "18.48335000" + }, + { + "id": "131030", + "name": "Beaufort West", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.35671000", + "longitude": "22.58295000" + }, + { + "id": "131034", + "name": "Bergvliet", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.04746000", + "longitude": "18.45250000" + }, + { + "id": "131048", + "name": "Bredasdorp", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.53215000", + "longitude": "20.04031000" + }, + { + "id": "131056", + "name": "Caledon", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.22997000", + "longitude": "19.42650000" + }, + { + "id": "131057", + "name": "Calitzdorp", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.52755000", + "longitude": "21.67620000" + }, + { + "id": "131059", + "name": "Cape Town", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.92584000", + "longitude": "18.42322000" + }, + { + "id": "131060", + "name": "Cape Winelands District Municipality", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.32249000", + "longitude": "19.68998000" + }, + { + "id": "131065", + "name": "Central Karoo District Municipality", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.62812000", + "longitude": "22.21192000" + }, + { + "id": "131067", + "name": "Ceres", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.36889000", + "longitude": "19.31095000" + }, + { + "id": "131070", + "name": "City of Cape Town", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.91667000", + "longitude": "18.41667000" + }, + { + "id": "131073", + "name": "Clanwilliam", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.18173000", + "longitude": "18.89217000" + }, + { + "id": "131074", + "name": "Claremont", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.98056000", + "longitude": "18.46528000" + }, + { + "id": "131077", + "name": "Constantia", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.03139000", + "longitude": "18.41833000" + }, + { + "id": "131082", + "name": "De Rust", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.49035000", + "longitude": "22.53523000" + }, + { + "id": "131095", + "name": "Eden District Municipality", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.82139000", + "longitude": "22.01263000" + }, + { + "id": "131115", + "name": "George", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.96300000", + "longitude": "22.46173000" + }, + { + "id": "131120", + "name": "Grabouw", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.15152000", + "longitude": "19.01509000" + }, + { + "id": "131123", + "name": "Hardys Memories of Africa", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.90539000", + "longitude": "20.71690000" + }, + { + "id": "131129", + "name": "Hermanus", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.41870000", + "longitude": "19.23446000" + }, + { + "id": "131143", + "name": "Knysna", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.03627000", + "longitude": "23.04713000" + }, + { + "id": "131148", + "name": "Kraaifontein", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.84808000", + "longitude": "18.71723000" + }, + { + "id": "131156", + "name": "Ladismith", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.49331000", + "longitude": "21.26755000" + }, + { + "id": "131159", + "name": "Lansdowne", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.98735000", + "longitude": "18.49746000" + }, + { + "id": "131169", + "name": "Malmesbury", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.46080000", + "longitude": "18.72714000" + }, + { + "id": "131184", + "name": "Montagu", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.78664000", + "longitude": "20.12106000" + }, + { + "id": "131186", + "name": "Moorreesburg", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.15388000", + "longitude": "18.66031000" + }, + { + "id": "131188", + "name": "Mossel Bay", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.18307000", + "longitude": "22.14605000" + }, + { + "id": "131200", + "name": "Newlands", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.97846000", + "longitude": "18.44810000" + }, + { + "id": "131210", + "name": "Oudtshoorn", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.60047000", + "longitude": "22.19955000" + }, + { + "id": "131211", + "name": "Overberg District Municipality", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.26131000", + "longitude": "19.93985000" + }, + { + "id": "131212", + "name": "Paarl", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.73378000", + "longitude": "18.97523000" + }, + { + "id": "131219", + "name": "Piketberg", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.90323000", + "longitude": "18.75704000" + }, + { + "id": "131221", + "name": "Plettenberg Bay", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.05274000", + "longitude": "23.37160000" + }, + { + "id": "131232", + "name": "Prince Albert", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.22476000", + "longitude": "22.02673000" + }, + { + "id": "131238", + "name": "Retreat", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.05515000", + "longitude": "18.47617000" + }, + { + "id": "131242", + "name": "Riversdale", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.09345000", + "longitude": "21.25725000" + }, + { + "id": "131243", + "name": "Robertson", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.80342000", + "longitude": "19.88537000" + }, + { + "id": "131244", + "name": "Rondebosch", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.96333000", + "longitude": "18.47639000" + }, + { + "id": "131246", + "name": "Rosebank", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.95556000", + "longitude": "18.47417000" + }, + { + "id": "131248", + "name": "Saldanha", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.01167000", + "longitude": "17.94420000" + }, + { + "id": "131264", + "name": "Stellenbosch", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.93462000", + "longitude": "18.86676000" + }, + { + "id": "131268", + "name": "Sunset Beach", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.85395000", + "longitude": "18.49231000" + }, + { + "id": "131269", + "name": "Swellendam", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-34.02262000", + "longitude": "20.44171000" + }, + { + "id": "131294", + "name": "Vredenburg", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.90719000", + "longitude": "17.98997000" + }, + { + "id": "131295", + "name": "Vredendal", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-31.66833000", + "longitude": "18.50119000" + }, + { + "id": "131302", + "name": "Wellington", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.63981000", + "longitude": "19.01120000" + }, + { + "id": "131304", + "name": "West Coast District Municipality", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-32.09506000", + "longitude": "18.62695000" + }, + { + "id": "131313", + "name": "Worcester", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.64651000", + "longitude": "19.44852000" + }, + { + "id": "131317", + "name": "Zoar", + "state_id": 939, + "state_code": "WC", + "country_id": 204, + "country_code": "ZA", + "latitude": "-33.49560000", + "longitude": "21.44373000" + }, + { + "id": "104834", + "name": "Yirol", + "state_id": 2090, + "state_code": "LK", + "country_id": 206, + "country_code": "SS", + "latitude": "6.55250000", + "longitude": "30.49806000" + }, + { + "id": "32596", + "name": "Añora", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.41667000", + "longitude": "-4.90000000" + }, + { + "id": "31915", + "name": "Abla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.14245000", + "longitude": "-2.77808000" + }, + { + "id": "31918", + "name": "Abrucena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.13226000", + "longitude": "-2.79711000" + }, + { + "id": "31929", + "name": "Adamuz", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.02674000", + "longitude": "-4.52231000" + }, + { + "id": "31936", + "name": "Adra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.74961000", + "longitude": "-3.02055000" + }, + { + "id": "31950", + "name": "Agrón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.03023000", + "longitude": "-3.82870000" + }, + { + "id": "31951", + "name": "Aguadulce", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25273000", + "longitude": "-4.99269000" + }, + { + "id": "31958", + "name": "Aguilar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.51476000", + "longitude": "-4.65717000" + }, + { + "id": "31994", + "name": "Alameda", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.20870000", + "longitude": "-4.65860000" + }, + { + "id": "31996", + "name": "Alamedilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.58232000", + "longitude": "-3.24241000" + }, + { + "id": "32000", + "name": "Alanís", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.03333000", + "longitude": "-5.71667000" + }, + { + "id": "32346", + "name": "Alájar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.87408000", + "longitude": "-6.66536000" + }, + { + "id": "32015", + "name": "Albaida del Aljarafe", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.42354000", + "longitude": "-6.16675000" + }, + { + "id": "32063", + "name": "Albánchez", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.28361000", + "longitude": "-2.18229000" + }, + { + "id": "32048", + "name": "Albolote", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23088000", + "longitude": "-3.65510000" + }, + { + "id": "32049", + "name": "Albondón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.82770000", + "longitude": "-3.21144000" + }, + { + "id": "32056", + "name": "Albox", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38856000", + "longitude": "-2.14949000" + }, + { + "id": "32062", + "name": "Albuñán", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22708000", + "longitude": "-3.13321000" + }, + { + "id": "32060", + "name": "Albuñol", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.79203000", + "longitude": "-3.20500000" + }, + { + "id": "32061", + "name": "Albuñuelas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.92828000", + "longitude": "-3.63184000" + }, + { + "id": "32070", + "name": "Alcalá de Guadaira", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.33791000", + "longitude": "-5.83951000" + }, + { + "id": "32076", + "name": "Alcalá de los Gazules", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.46212000", + "longitude": "-5.72382000" + }, + { + "id": "32079", + "name": "Alcalá del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.51780000", + "longitude": "-5.98185000" + }, + { + "id": "32080", + "name": "Alcalá del Valle", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.90448000", + "longitude": "-5.17240000" + }, + { + "id": "32081", + "name": "Alcalá la Real", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.46140000", + "longitude": "-3.92301000" + }, + { + "id": "32087", + "name": "Alcaracejos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.38333000", + "longitude": "-4.96667000" + }, + { + "id": "32090", + "name": "Alcaucín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.90301000", + "longitude": "-4.11406000" + }, + { + "id": "32091", + "name": "Alcaudete", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.59091000", + "longitude": "-4.08237000" + }, + { + "id": "32138", + "name": "Alcóntar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.33647000", + "longitude": "-2.59725000" + }, + { + "id": "32103", + "name": "Alcolea", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.97458000", + "longitude": "-2.96150000" + }, + { + "id": "32109", + "name": "Alcolea del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.61506000", + "longitude": "-5.66694000" + }, + { + "id": "32130", + "name": "Alcudia de Monteagud", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23529000", + "longitude": "-2.26650000" + }, + { + "id": "32167", + "name": "Aldeaquemada", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.41215000", + "longitude": "-3.37137000" + }, + { + "id": "32180", + "name": "Aldeire", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.16012000", + "longitude": "-3.07204000" + }, + { + "id": "32188", + "name": "Alfacar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23744000", + "longitude": "-3.56807000" + }, + { + "id": "32196", + "name": "Alfarnate", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99426000", + "longitude": "-4.25929000" + }, + { + "id": "32197", + "name": "Alfarnatejo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99570000", + "longitude": "-4.26064000" + }, + { + "id": "32210", + "name": "Algar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.65748000", + "longitude": "-5.65558000" + }, + { + "id": "32212", + "name": "Algarinejo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.32526000", + "longitude": "-4.15850000" + }, + { + "id": "32214", + "name": "Algarrobo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.77388000", + "longitude": "-4.03952000" + }, + { + "id": "32215", + "name": "Algatocín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.57356000", + "longitude": "-5.27554000" + }, + { + "id": "32231", + "name": "Algámitas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.01516000", + "longitude": "-5.14949000" + }, + { + "id": "32216", + "name": "Algeciras", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.13326000", + "longitude": "-5.45051000" + }, + { + "id": "32223", + "name": "Algodonales", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.88044000", + "longitude": "-5.40536000" + }, + { + "id": "32232", + "name": "Alhabia", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99003000", + "longitude": "-2.58655000" + }, + { + "id": "32233", + "name": "Alhama de Almería", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.95692000", + "longitude": "-2.56861000" + }, + { + "id": "32235", + "name": "Alhama de Granada", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.00689000", + "longitude": "-3.98963000" + }, + { + "id": "32238", + "name": "Alhaurín de la Torre", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.66401000", + "longitude": "-4.56139000" + }, + { + "id": "32239", + "name": "Alhaurín el Grande", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.64300000", + "longitude": "-4.68728000" + }, + { + "id": "32240", + "name": "Alhendín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.10879000", + "longitude": "-3.64557000" + }, + { + "id": "32245", + "name": "Alicún", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.96580000", + "longitude": "-2.60212000" + }, + { + "id": "32246", + "name": "Alicún de Ortega", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.60898000", + "longitude": "-3.13648000" + }, + { + "id": "32251", + "name": "Aljaraque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.26989000", + "longitude": "-7.02313000" + }, + { + "id": "32262", + "name": "Almadén de la Plata", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.87221000", + "longitude": "-6.08085000" + }, + { + "id": "32270", + "name": "Almargen", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.00210000", + "longitude": "-5.02178000" + }, + { + "id": "32315", + "name": "Almáchar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.80892000", + "longitude": "-4.21614000" + }, + { + "id": "32316", + "name": "Almócita", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.00262000", + "longitude": "-2.79051000" + }, + { + "id": "32277", + "name": "Almedinilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.43902000", + "longitude": "-4.09052000" + }, + { + "id": "32279", + "name": "Almegíjar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.90258000", + "longitude": "-3.30122000" + }, + { + "id": "32289", + "name": "Almensilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.31099000", + "longitude": "-6.10998000" + }, + { + "id": "32290", + "name": "Almería", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.16667000", + "longitude": "-2.33333000" + }, + { + "id": "32295", + "name": "Almodóvar del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.81070000", + "longitude": "-5.02037000" + }, + { + "id": "32297", + "name": "Almogía", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.82550000", + "longitude": "-4.54070000" + }, + { + "id": "32305", + "name": "Almonte", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.26470000", + "longitude": "-6.51667000" + }, + { + "id": "32314", + "name": "Almuñécar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.73393000", + "longitude": "-3.69072000" + }, + { + "id": "32320", + "name": "Alora", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.82358000", + "longitude": "-4.70575000" + }, + { + "id": "32321", + "name": "Alosno", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.54861000", + "longitude": "-7.11470000" + }, + { + "id": "32323", + "name": "Alozaina", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.72736000", + "longitude": "-4.85761000" + }, + { + "id": "32324", + "name": "Alpandeire", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.63402000", + "longitude": "-5.20216000" + }, + { + "id": "32334", + "name": "Alquife", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18024000", + "longitude": "-3.11553000" + }, + { + "id": "32336", + "name": "Alsodux", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.00247000", + "longitude": "-2.59476000" + }, + { + "id": "32376", + "name": "Andújar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.03922000", + "longitude": "-4.05077000" + }, + { + "id": "32390", + "name": "Antas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.24536000", + "longitude": "-1.91760000" + }, + { + "id": "32392", + "name": "Antequera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.01938000", + "longitude": "-4.56123000" + }, + { + "id": "32399", + "name": "Aracena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.89396000", + "longitude": "-6.56116000" + }, + { + "id": "32426", + "name": "Arboleas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.35024000", + "longitude": "-2.07384000" + }, + { + "id": "32431", + "name": "Archidona", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.09654000", + "longitude": "-4.38869000" + }, + { + "id": "32437", + "name": "Arcos de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.75075000", + "longitude": "-5.81056000" + }, + { + "id": "32441", + "name": "Ardales", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.87804000", + "longitude": "-4.84694000" + }, + { + "id": "32444", + "name": "Arenas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.81625000", + "longitude": "-4.04411000" + }, + { + "id": "32448", + "name": "Arenas del Rey", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.95799000", + "longitude": "-3.89362000" + }, + { + "id": "32482", + "name": "Arjona", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.93493000", + "longitude": "-4.05478000" + }, + { + "id": "32483", + "name": "Arjonilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.97422000", + "longitude": "-4.10677000" + }, + { + "id": "32488", + "name": "Armilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.14386000", + "longitude": "-3.62534000" + }, + { + "id": "32491", + "name": "Armuña de Almanzora", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.35030000", + "longitude": "-2.41150000" + }, + { + "id": "32496", + "name": "Aroche", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.94213000", + "longitude": "-6.95760000" + }, + { + "id": "32499", + "name": "Arquillos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.18148000", + "longitude": "-3.42827000" + }, + { + "id": "32506", + "name": "Arriate", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.80005000", + "longitude": "-5.14080000" + }, + { + "id": "32512", + "name": "Arroyo del Ojanco", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.32065000", + "longitude": "-2.89486000" + }, + { + "id": "32514", + "name": "Arroyomolinos de León", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.01667000", + "longitude": "-6.41667000" + }, + { + "id": "38584", + "name": "Úbeda", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.01328000", + "longitude": "-3.37050000" + }, + { + "id": "32543", + "name": "Atajate", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.64017000", + "longitude": "-5.24606000" + }, + { + "id": "32550", + "name": "Atarfe", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22479000", + "longitude": "-3.68686000" + }, + { + "id": "32571", + "name": "Ayamonte", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.21329000", + "longitude": "-7.40807000" + }, + { + "id": "32584", + "name": "Aznalcázar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.30422000", + "longitude": "-6.24963000" + }, + { + "id": "32585", + "name": "Aznalcóllar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.51914000", + "longitude": "-6.26988000" + }, + { + "id": "38575", + "name": "Árchez", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.83992000", + "longitude": "-3.99208000" + }, + { + "id": "38580", + "name": "Ítrabo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.79998000", + "longitude": "-3.63899000" + }, + { + "id": "38583", + "name": "Órgiva", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.90259000", + "longitude": "-3.42379000" + }, + { + "id": "38577", + "name": "Écija", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.54220000", + "longitude": "-5.08260000" + }, + { + "id": "32709", + "name": "Baños de la Encina", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.17379000", + "longitude": "-3.77477000" + }, + { + "id": "32604", + "name": "Badolatosa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.30785000", + "longitude": "-4.67296000" + }, + { + "id": "32607", + "name": "Baena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.61670000", + "longitude": "-4.32245000" + }, + { + "id": "32608", + "name": "Baeza", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.99384000", + "longitude": "-3.47103000" + }, + { + "id": "32615", + "name": "Bailén", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.09639000", + "longitude": "-3.77786000" + }, + { + "id": "32646", + "name": "Barbate", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.19237000", + "longitude": "-5.92186000" + }, + { + "id": "32696", + "name": "Bayarque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.33062000", + "longitude": "-2.43610000" + }, + { + "id": "32699", + "name": "Bayárcal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.03073000", + "longitude": "-2.99606000" + }, + { + "id": "32700", + "name": "Baza", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.49073000", + "longitude": "-2.77259000" + }, + { + "id": "33057", + "name": "Bédar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.19389000", + "longitude": "-1.98166000" + }, + { + "id": "33059", + "name": "Bélmez", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.26667000", + "longitude": "-5.20000000" + }, + { + "id": "33060", + "name": "Bélmez de la Moraleda", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.72382000", + "longitude": "-3.38207000" + }, + { + "id": "33061", + "name": "Bérchules", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.97678000", + "longitude": "-3.19067000" + }, + { + "id": "32716", + "name": "Beas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.42570000", + "longitude": "-6.79318000" + }, + { + "id": "32717", + "name": "Beas de Granada", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.21803000", + "longitude": "-3.48095000" + }, + { + "id": "32718", + "name": "Beas de Guadix", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.27861000", + "longitude": "-3.20579000" + }, + { + "id": "32719", + "name": "Beas de Segura", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.25240000", + "longitude": "-2.88875000" + }, + { + "id": "32730", + "name": "Begíjar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.98492000", + "longitude": "-3.53094000" + }, + { + "id": "32732", + "name": "Beires", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.01237000", + "longitude": "-2.79134000" + }, + { + "id": "32734", + "name": "Belalcázar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.57566000", + "longitude": "-5.16653000" + }, + { + "id": "32757", + "name": "Benacazón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.35289000", + "longitude": "-6.19663000" + }, + { + "id": "32762", + "name": "Benahadux", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.92493000", + "longitude": "-2.45941000" + }, + { + "id": "32763", + "name": "Benahavís", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.52361000", + "longitude": "-5.04631000" + }, + { + "id": "32764", + "name": "Benalauría", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.59445000", + "longitude": "-5.26099000" + }, + { + "id": "32767", + "name": "Benalúa de Guadix", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.35191000", + "longitude": "-3.16404000" + }, + { + "id": "32768", + "name": "Benalúa de las Villas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.42742000", + "longitude": "-3.68346000" + }, + { + "id": "32765", + "name": "Benalmádena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.59610000", + "longitude": "-4.57267000" + }, + { + "id": "32766", + "name": "Benalup-Casas Viejas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.34375000", + "longitude": "-5.81280000" + }, + { + "id": "32769", + "name": "Benamargosa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.83499000", + "longitude": "-4.19362000" + }, + { + "id": "32770", + "name": "Benamaurel", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.60826000", + "longitude": "-2.70250000" + }, + { + "id": "32771", + "name": "Benamejí", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.26833000", + "longitude": "-4.54123000" + }, + { + "id": "32772", + "name": "Benamocarra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.79075000", + "longitude": "-4.16146000" + }, + { + "id": "32773", + "name": "Benaocaz", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.70069000", + "longitude": "-5.42222000" + }, + { + "id": "32774", + "name": "Benaoján", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.71929000", + "longitude": "-5.25220000" + }, + { + "id": "32775", + "name": "Benarrabá", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.55120000", + "longitude": "-5.27608000" + }, + { + "id": "32779", + "name": "Benatae", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.35323000", + "longitude": "-2.65121000" + }, + { + "id": "32823", + "name": "Benitagla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23138000", + "longitude": "-2.23935000" + }, + { + "id": "32824", + "name": "Benizalón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.21213000", + "longitude": "-2.24180000" + }, + { + "id": "32827", + "name": "Bentarique", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.98823000", + "longitude": "-2.61991000" + }, + { + "id": "32853", + "name": "Berja", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.84693000", + "longitude": "-2.94966000" + }, + { + "id": "32868", + "name": "Berrocal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.60863000", + "longitude": "-6.54147000" + }, + { + "id": "32938", + "name": "Bollullos de la Mitación", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.34014000", + "longitude": "-6.13719000" + }, + { + "id": "32939", + "name": "Bollullos par del Condado", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.34127000", + "longitude": "-6.53970000" + }, + { + "id": "32944", + "name": "Bonares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.32423000", + "longitude": "-6.68073000" + }, + { + "id": "32956", + "name": "Bormujos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.37358000", + "longitude": "-6.07233000" + }, + { + "id": "32957", + "name": "Bornos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.81677000", + "longitude": "-5.74448000" + }, + { + "id": "32977", + "name": "Brenes", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.54944000", + "longitude": "-5.87139000" + }, + { + "id": "32997", + "name": "Bubión", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.94900000", + "longitude": "-3.35615000" + }, + { + "id": "33014", + "name": "Bujalance", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.89556000", + "longitude": "-4.38074000" + }, + { + "id": "33027", + "name": "Burguillos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.58440000", + "longitude": "-5.96654000" + }, + { + "id": "33036", + "name": "Busquístar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.93796000", + "longitude": "-3.29444000" + }, + { + "id": "33526", + "name": "Cañada Rosal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.59924000", + "longitude": "-5.21016000" + }, + { + "id": "33536", + "name": "Cañaveral de León", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.01667000", + "longitude": "-6.51667000" + }, + { + "id": "33540", + "name": "Cañete de las Torres", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.86717000", + "longitude": "-4.31835000" + }, + { + "id": "33541", + "name": "Cañete la Real", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.95154000", + "longitude": "-5.02440000" + }, + { + "id": "33084", + "name": "Cabezas Rubias", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.72660000", + "longitude": "-7.08738000" + }, + { + "id": "33098", + "name": "Cabra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.47249000", + "longitude": "-4.44206000" + }, + { + "id": "33100", + "name": "Cabra del Santo Cristo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.70379000", + "longitude": "-3.28765000" + }, + { + "id": "33117", + "name": "Cadiz", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.52672000", + "longitude": "-6.28910000" + }, + { + "id": "33120", + "name": "Cala", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.96667000", + "longitude": "-6.31667000" + }, + { + "id": "33135", + "name": "Calañas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.65568000", + "longitude": "-6.88050000" + }, + { + "id": "33144", + "name": "Calicasas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.27130000", + "longitude": "-3.61345000" + }, + { + "id": "33172", + "name": "Camas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.40202000", + "longitude": "-6.03314000" + }, + { + "id": "33175", + "name": "Cambil", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.67934000", + "longitude": "-3.56537000" + }, + { + "id": "33200", + "name": "Campiña", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.21896000", + "longitude": "-2.98069000" + }, + { + "id": "33189", + "name": "Campillo de Arenas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.55535000", + "longitude": "-3.63552000" + }, + { + "id": "33195", + "name": "Campillos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.04826000", + "longitude": "-4.86308000" + }, + { + "id": "33212", + "name": "Campotéjar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.48235000", + "longitude": "-3.61771000" + }, + { + "id": "33231", + "name": "Canena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.04930000", + "longitude": "-3.48310000" + }, + { + "id": "33239", + "name": "Caniles", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.43671000", + "longitude": "-2.72482000" + }, + { + "id": "33241", + "name": "Canillas de Aceituno", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.87303000", + "longitude": "-4.08254000" + }, + { + "id": "33242", + "name": "Canillas de Albaida", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.84665000", + "longitude": "-3.98678000" + }, + { + "id": "33245", + "name": "Canjáyar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.00959000", + "longitude": "-2.73943000" + }, + { + "id": "33257", + "name": "Cantillana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.61032000", + "longitude": "-5.82472000" + }, + { + "id": "33260", + "name": "Cantoria", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.35146000", + "longitude": "-2.19209000" + }, + { + "id": "33268", + "name": "Capileira", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.96148000", + "longitude": "-3.35864000" + }, + { + "id": "33276", + "name": "Carataunas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.92204000", + "longitude": "-3.40834000" + }, + { + "id": "33285", + "name": "Carboneras", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99666000", + "longitude": "-1.89651000" + }, + { + "id": "33288", + "name": "Carboneros", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.22958000", + "longitude": "-3.63139000" + }, + { + "id": "33290", + "name": "Carcabuey", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.44420000", + "longitude": "-4.27471000" + }, + { + "id": "33298", + "name": "Cardeña", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.27023000", + "longitude": "-4.32358000" + }, + { + "id": "33310", + "name": "Carmona", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.47125000", + "longitude": "-5.64608000" + }, + { + "id": "33325", + "name": "Carratraca", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.85290000", + "longitude": "-4.81998000" + }, + { + "id": "33333", + "name": "Carrión de los Céspedes", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.37007000", + "longitude": "-6.32923000" + }, + { + "id": "33337", + "name": "Cartajima", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.64548000", + "longitude": "-5.15410000" + }, + { + "id": "33338", + "name": "Cartaya", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.28114000", + "longitude": "-7.15071000" + }, + { + "id": "33343", + "name": "Casabermeja", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.89260000", + "longitude": "-4.42938000" + }, + { + "id": "33348", + "name": "Casarabonela", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.78616000", + "longitude": "-4.84276000" + }, + { + "id": "33350", + "name": "Casares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.44689000", + "longitude": "-5.28580000" + }, + { + "id": "33352", + "name": "Casariche", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.29389000", + "longitude": "-4.75972000" + }, + { + "id": "33412", + "name": "Castell de Ferro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.72569000", + "longitude": "-3.35500000" + }, + { + "id": "33420", + "name": "Castellar de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.31736000", + "longitude": "-5.45407000" + }, + { + "id": "33419", + "name": "Castellar de Santisteban", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.25422000", + "longitude": "-3.13179000" + }, + { + "id": "33447", + "name": "Castilblanco de los Arroyos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.67576000", + "longitude": "-5.98886000" + }, + { + "id": "33468", + "name": "Castilléjar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.71697000", + "longitude": "-2.64060000" + }, + { + "id": "33454", + "name": "Castilleja de Guzmán", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.40955000", + "longitude": "-6.05515000" + }, + { + "id": "33455", + "name": "Castilleja de la Cuesta", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38594000", + "longitude": "-6.05258000" + }, + { + "id": "33456", + "name": "Castilleja del Campo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38627000", + "longitude": "-6.33443000" + }, + { + "id": "33464", + "name": "Castillo de Locubín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.52858000", + "longitude": "-3.94220000" + }, + { + "id": "33474", + "name": "Castril", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.79581000", + "longitude": "-2.78002000" + }, + { + "id": "33488", + "name": "Castro de Filabres", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18484000", + "longitude": "-2.44024000" + }, + { + "id": "33491", + "name": "Castro del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.69125000", + "longitude": "-4.48058000" + }, + { + "id": "33522", + "name": "Cazalilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.98389000", + "longitude": "-3.88295000" + }, + { + "id": "33523", + "name": "Cazalla de la Sierra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.93333000", + "longitude": "-5.75000000" + }, + { + "id": "33524", + "name": "Cazorla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.91495000", + "longitude": "-3.00342000" + }, + { + "id": "33901", + "name": "Cáñar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.92684000", + "longitude": "-3.42808000" + }, + { + "id": "33893", + "name": "Cádiar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.94591000", + "longitude": "-3.18020000" + }, + { + "id": "33894", + "name": "Cájar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.13381000", + "longitude": "-3.57274000" + }, + { + "id": "33898", + "name": "Cártama", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.71068000", + "longitude": "-4.63297000" + }, + { + "id": "33900", + "name": "Cástaras", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.93164000", + "longitude": "-3.25406000" + }, + { + "id": "33902", + "name": "Cóbdar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.26166000", + "longitude": "-2.21098000" + }, + { + "id": "33903", + "name": "Cómpeta", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.83352000", + "longitude": "-3.97430000" + }, + { + "id": "33904", + "name": "Córdoba", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.89155000", + "longitude": "-4.77275000" + }, + { + "id": "33906", + "name": "Cúllar-Vega", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.15361000", + "longitude": "-3.67072000" + }, + { + "id": "33907", + "name": "Cútar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.83134000", + "longitude": "-4.22739000" + }, + { + "id": "33568", + "name": "Cenes de la Vega", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.16006000", + "longitude": "-3.53548000" + }, + { + "id": "33619", + "name": "Chauchina", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.19977000", + "longitude": "-3.77157000" + }, + { + "id": "33627", + "name": "Chercos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25450000", + "longitude": "-2.26657000" + }, + { + "id": "33631", + "name": "Chiclana de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.41976000", + "longitude": "-6.14367000" + }, + { + "id": "33630", + "name": "Chiclana de Segura", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.31187000", + "longitude": "-3.04219000" + }, + { + "id": "33635", + "name": "Chilluévar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.00088000", + "longitude": "-3.03240000" + }, + { + "id": "33637", + "name": "Chimeneas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.13125000", + "longitude": "-3.82130000" + }, + { + "id": "33641", + "name": "Chipiona", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.73663000", + "longitude": "-6.43703000" + }, + { + "id": "33643", + "name": "Chirivel", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.59527000", + "longitude": "-2.26844000" + }, + { + "id": "33648", + "name": "Chucena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.36305000", + "longitude": "-6.39304000" + }, + { + "id": "33652", + "name": "Churriana de la Vega", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.14499000", + "longitude": "-3.64617000" + }, + { + "id": "33666", + "name": "Cijuela", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.19800000", + "longitude": "-3.81174000" + }, + { + "id": "33831", + "name": "Coín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.65947000", + "longitude": "-4.75639000" + }, + { + "id": "33723", + "name": "Cogollos de Guadix", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22521000", + "longitude": "-3.16094000" + }, + { + "id": "33741", + "name": "Colmenar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.90519000", + "longitude": "-4.33557000" + }, + { + "id": "33747", + "name": "Colomera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.37156000", + "longitude": "-3.71393000" + }, + { + "id": "33751", + "name": "Comares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.84929000", + "longitude": "-4.24664000" + }, + { + "id": "33761", + "name": "Conil de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.27719000", + "longitude": "-6.08850000" + }, + { + "id": "33762", + "name": "Conquista", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.40000000", + "longitude": "-4.50000000" + }, + { + "id": "33765", + "name": "Constantina", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.86667000", + "longitude": "-5.61667000" + }, + { + "id": "33790", + "name": "Coria del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.28766000", + "longitude": "-6.05410000" + }, + { + "id": "33791", + "name": "Coripe", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.97335000", + "longitude": "-5.44022000" + }, + { + "id": "33806", + "name": "Corteconcepción", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.90000000", + "longitude": "-6.50000000" + }, + { + "id": "33807", + "name": "Cortelazor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.93639000", + "longitude": "-6.62462000" + }, + { + "id": "33810", + "name": "Cortes de Baza", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.65514000", + "longitude": "-2.77167000" + }, + { + "id": "33812", + "name": "Cortes de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.61710000", + "longitude": "-5.34266000" + }, + { + "id": "33820", + "name": "Costacabana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.83807000", + "longitude": "-2.38111000" + }, + { + "id": "33869", + "name": "Cuevas Bajas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23526000", + "longitude": "-4.48714000" + }, + { + "id": "33874", + "name": "Cuevas de San Marcos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.26666000", + "longitude": "-4.41432000" + }, + { + "id": "33876", + "name": "Cuevas del Almanzora", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.29678000", + "longitude": "-1.88218000" + }, + { + "id": "33877", + "name": "Cuevas del Becerro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.87537000", + "longitude": "-5.04488000" + }, + { + "id": "33878", + "name": "Cuevas del Campo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.60755000", + "longitude": "-2.92938000" + }, + { + "id": "33883", + "name": "Cumbres Mayores", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.06194000", + "longitude": "-6.64565000" + }, + { + "id": "33911", + "name": "Dalías", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.82179000", + "longitude": "-2.87138000" + }, + { + "id": "33914", + "name": "Darro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.34987000", + "longitude": "-3.29465000" + }, + { + "id": "33965", + "name": "Dílar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.07282000", + "longitude": "-3.60134000" + }, + { + "id": "33966", + "name": "Dúdar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18579000", + "longitude": "-3.48347000" + }, + { + "id": "33967", + "name": "Dúrcal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.98788000", + "longitude": "-3.56601000" + }, + { + "id": "33920", + "name": "Dehesas de Guadix", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.58876000", + "longitude": "-3.10317000" + }, + { + "id": "33921", + "name": "Deifontes", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.32620000", + "longitude": "-3.59568000" + }, + { + "id": "33934", + "name": "Diezma", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.31982000", + "longitude": "-3.33256000" + }, + { + "id": "33954", + "name": "Doña Mencía", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.55346000", + "longitude": "-4.35602000" + }, + { + "id": "33940", + "name": "Domingo Pérez", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.49591000", + "longitude": "-3.50929000" + }, + { + "id": "33949", + "name": "Dos Hermanas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.28287000", + "longitude": "-5.92088000" + }, + { + "id": "33950", + "name": "Dos Torres", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.45000000", + "longitude": "-4.90000000" + }, + { + "id": "33977", + "name": "El Arahal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.26273000", + "longitude": "-5.54530000" + }, + { + "id": "33981", + "name": "El Bosque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.75828000", + "longitude": "-5.50535000" + }, + { + "id": "33986", + "name": "El Carpio", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.94085000", + "longitude": "-4.49696000" + }, + { + "id": "33991", + "name": "El Castillo de las Guardas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.69314000", + "longitude": "-6.31503000" + }, + { + "id": "33992", + "name": "El Cerro de Andévalo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.73537000", + "longitude": "-6.93692000" + }, + { + "id": "33993", + "name": "El Coronil", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.07955000", + "longitude": "-5.63410000" + }, + { + "id": "33995", + "name": "El Cuervo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.85298000", + "longitude": "-6.03785000" + }, + { + "id": "33996", + "name": "El Ejido", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.77629000", + "longitude": "-2.81456000" + }, + { + "id": "33998", + "name": "El Gastor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.85478000", + "longitude": "-5.32334000" + }, + { + "id": "34013", + "name": "El Puerto de Santa María", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.59389000", + "longitude": "-6.23298000" + }, + { + "id": "34016", + "name": "El Rompido", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.21773000", + "longitude": "-7.12206000" + }, + { + "id": "34017", + "name": "El Ronquillo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.72628000", + "longitude": "-6.17620000" + }, + { + "id": "34018", + "name": "El Rubio", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.35617000", + "longitude": "-4.98896000" + }, + { + "id": "34019", + "name": "El Saucejo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.07237000", + "longitude": "-5.09818000" + }, + { + "id": "34023", + "name": "El Varadero", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.72521000", + "longitude": "-3.52183000" + }, + { + "id": "34026", + "name": "El Viso", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.48333000", + "longitude": "-4.95000000" + }, + { + "id": "34028", + "name": "El Viso del Alcor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.39106000", + "longitude": "-5.71993000" + }, + { + "id": "34047", + "name": "Encinas Reales", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.27419000", + "longitude": "-4.48828000" + }, + { + "id": "34051", + "name": "Encinasola", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.13413000", + "longitude": "-6.86675000" + }, + { + "id": "34060", + "name": "Enix", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.87732000", + "longitude": "-2.60180000" + }, + { + "id": "34084", + "name": "Escañuela", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.87885000", + "longitude": "-4.03376000" + }, + { + "id": "34075", + "name": "Escacena del Campo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.40837000", + "longitude": "-6.38870000" + }, + { + "id": "34094", + "name": "Escúzar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.06219000", + "longitude": "-3.76126000" + }, + { + "id": "34109", + "name": "Espartinas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38154000", + "longitude": "-6.12578000" + }, + { + "id": "34112", + "name": "Espejo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.67980000", + "longitude": "-4.55355000" + }, + { + "id": "34114", + "name": "Espelúy", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.03180000", + "longitude": "-3.86309000" + }, + { + "id": "34115", + "name": "Espera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.87446000", + "longitude": "-5.80600000" + }, + { + "id": "34116", + "name": "Espiel", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.20000000", + "longitude": "-5.01667000" + }, + { + "id": "34136", + "name": "Estación de Cártama", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.73333000", + "longitude": "-4.61667000" + }, + { + "id": "34141", + "name": "Estepa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.29263000", + "longitude": "-4.87896000" + }, + { + "id": "34143", + "name": "Estepona", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.42764000", + "longitude": "-5.14589000" + }, + { + "id": "34162", + "name": "Faraján", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.61695000", + "longitude": "-5.18839000" + }, + { + "id": "34175", + "name": "Fernán-Núñez", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.67044000", + "longitude": "-4.72640000" + }, + { + "id": "34176", + "name": "Ferreira", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.17247000", + "longitude": "-3.03539000" + }, + { + "id": "34194", + "name": "Fiñana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.17150000", + "longitude": "-2.84011000" + }, + { + "id": "34188", + "name": "Fines", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.36074000", + "longitude": "-2.25810000" + }, + { + "id": "34205", + "name": "Fondón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.98020000", + "longitude": "-2.85957000" + }, + { + "id": "34206", + "name": "Fonelas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.41042000", + "longitude": "-3.17158000" + }, + { + "id": "34238", + "name": "Frailes", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.48617000", + "longitude": "-3.83743000" + }, + { + "id": "34243", + "name": "Freila", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.52990000", + "longitude": "-2.90828000" + }, + { + "id": "34266", + "name": "Frigiliana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.78747000", + "longitude": "-3.89441000" + }, + { + "id": "34282", + "name": "Fuengirola", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.53998000", + "longitude": "-4.62473000" + }, + { + "id": "34290", + "name": "Fuensanta de Martos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.64756000", + "longitude": "-3.90846000" + }, + { + "id": "34297", + "name": "Fuente de Piedra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.13526000", + "longitude": "-4.73000000" + }, + { + "id": "34304", + "name": "Fuente la Lancha", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.41667000", + "longitude": "-5.03333000" + }, + { + "id": "34292", + "name": "Fuente Obejuna", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.26667000", + "longitude": "-5.41667000" + }, + { + "id": "34293", + "name": "Fuente Palmera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.70494000", + "longitude": "-5.09965000" + }, + { + "id": "34294", + "name": "Fuente Vaqueros", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22019000", + "longitude": "-3.78294000" + }, + { + "id": "34306", + "name": "Fuente-Tójar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.51095000", + "longitude": "-4.14631000" + }, + { + "id": "34316", + "name": "Fuenteheridos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.90545000", + "longitude": "-6.66108000" + }, + { + "id": "34338", + "name": "Fuentes de Andalucía", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.46409000", + "longitude": "-5.34615000" + }, + { + "id": "34362", + "name": "Fuerte del Rey", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.87492000", + "longitude": "-3.88389000" + }, + { + "id": "34375", + "name": "Galaroza", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.92864000", + "longitude": "-6.70730000" + }, + { + "id": "34380", + "name": "Galera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.74262000", + "longitude": "-2.55175000" + }, + { + "id": "34427", + "name": "Garrucha", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18141000", + "longitude": "-1.82252000" + }, + { + "id": "34438", + "name": "Gaucín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.51784000", + "longitude": "-5.31581000" + }, + { + "id": "34558", + "name": "Gádor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.95322000", + "longitude": "-2.49254000" + }, + { + "id": "34561", + "name": "Génave", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.43062000", + "longitude": "-2.73310000" + }, + { + "id": "34562", + "name": "Gérgal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.11886000", + "longitude": "-2.54012000" + }, + { + "id": "34563", + "name": "Gójar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.10456000", + "longitude": "-3.60565000" + }, + { + "id": "34570", + "name": "Güéjar-Sierra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.15994000", + "longitude": "-3.43863000" + }, + { + "id": "34567", + "name": "Güevéjar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25759000", + "longitude": "-3.59691000" + }, + { + "id": "34448", + "name": "Gelves", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.33481000", + "longitude": "-6.02601000" + }, + { + "id": "34451", + "name": "Genalguacil", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.54546000", + "longitude": "-5.23572000" + }, + { + "id": "34454", + "name": "Gerena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.52957000", + "longitude": "-6.15479000" + }, + { + "id": "34462", + "name": "Gibraleón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.37628000", + "longitude": "-6.96895000" + }, + { + "id": "34463", + "name": "Gilena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25150000", + "longitude": "-4.91442000" + }, + { + "id": "34467", + "name": "Gines", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38647000", + "longitude": "-6.07729000" + }, + { + "id": "34473", + "name": "Gobernador", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.47845000", + "longitude": "-3.32119000" + }, + { + "id": "34484", + "name": "Gor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.36937000", + "longitude": "-2.97016000" + }, + { + "id": "34497", + "name": "Granada", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18817000", + "longitude": "-3.60667000" + }, + { + "id": "34507", + "name": "Grazalema", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.76018000", + "longitude": "-5.36839000" + }, + { + "id": "34519", + "name": "Guadahortuna", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.55711000", + "longitude": "-3.39859000" + }, + { + "id": "34522", + "name": "Guadalcanal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.10000000", + "longitude": "-5.81667000" + }, + { + "id": "34523", + "name": "Guadalcázar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.75738000", + "longitude": "-4.94387000" + }, + { + "id": "34531", + "name": "Guadix", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.29932000", + "longitude": "-3.13922000" + }, + { + "id": "34533", + "name": "Gualchos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.74467000", + "longitude": "-3.39079000" + }, + { + "id": "34538", + "name": "Guaro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.65630000", + "longitude": "-4.83433000" + }, + { + "id": "34539", + "name": "Guarromán", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.18282000", + "longitude": "-3.68697000" + }, + { + "id": "34548", + "name": "Guillena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.54262000", + "longitude": "-6.05626000" + }, + { + "id": "34593", + "name": "Herrera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.36396000", + "longitude": "-4.84979000" + }, + { + "id": "34608", + "name": "Higuera de Arjona", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.97064000", + "longitude": "-3.99061000" + }, + { + "id": "34609", + "name": "Higuera de Calatrava", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.79848000", + "longitude": "-4.15737000" + }, + { + "id": "34612", + "name": "Higuera de la Sierra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.83333000", + "longitude": "-6.45000000" + }, + { + "id": "34620", + "name": "Hinojales", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.00000000", + "longitude": "-6.58333000" + }, + { + "id": "34621", + "name": "Hinojares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.71586000", + "longitude": "-2.99769000" + }, + { + "id": "34622", + "name": "Hinojos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.29173000", + "longitude": "-6.37872000" + }, + { + "id": "34627", + "name": "Hinojosa del Duque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.50057000", + "longitude": "-5.14651000" + }, + { + "id": "34660", + "name": "Hornachuelos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.83333000", + "longitude": "-5.23333000" + }, + { + "id": "34706", + "name": "Huécija", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.96804000", + "longitude": "-2.60941000" + }, + { + "id": "34708", + "name": "Huélago", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.41972000", + "longitude": "-3.26226000" + }, + { + "id": "34710", + "name": "Huéneja", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.17660000", + "longitude": "-2.95024000" + }, + { + "id": "34711", + "name": "Huércal de Almería", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.88507000", + "longitude": "-2.43760000" + }, + { + "id": "34712", + "name": "Huércal-Overa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38918000", + "longitude": "-1.94300000" + }, + { + "id": "34717", + "name": "Huéscar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.81104000", + "longitude": "-2.54116000" + }, + { + "id": "34718", + "name": "Huétor Santillán", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22091000", + "longitude": "-3.51634000" + }, + { + "id": "34719", + "name": "Huétor Vega", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.14529000", + "longitude": "-3.56963000" + }, + { + "id": "34720", + "name": "Huétor-Tájar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.19834000", + "longitude": "-4.04692000" + }, + { + "id": "34684", + "name": "Huelma", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.64784000", + "longitude": "-3.45985000" + }, + { + "id": "34685", + "name": "Huelva", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.26638000", + "longitude": "-6.94004000" + }, + { + "id": "34694", + "name": "Huesa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.76434000", + "longitude": "-3.07639000" + }, + { + "id": "34702", + "name": "Humilladero", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.11390000", + "longitude": "-4.70298000" + }, + { + "id": "34731", + "name": "Ibros", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.02106000", + "longitude": "-3.50313000" + }, + { + "id": "34740", + "name": "Igualeja", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.63208000", + "longitude": "-5.12188000" + }, + { + "id": "34746", + "name": "Illar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.98562000", + "longitude": "-2.63871000" + }, + { + "id": "34749", + "name": "Illora", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.28771000", + "longitude": "-3.88109000" + }, + { + "id": "34757", + "name": "Instinción", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99344000", + "longitude": "-2.66046000" + }, + { + "id": "34766", + "name": "Isla Cristina", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.20000000", + "longitude": "-7.31667000" + }, + { + "id": "34767", + "name": "Islantilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.20572000", + "longitude": "-7.23742000" + }, + { + "id": "34768", + "name": "Istán", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.58273000", + "longitude": "-4.94956000" + }, + { + "id": "34779", + "name": "Iznalloz", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.39258000", + "longitude": "-3.52762000" + }, + { + "id": "34780", + "name": "Iznate", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.78333000", + "longitude": "-4.18333000" + }, + { + "id": "34781", + "name": "Iznatoraf", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.15706000", + "longitude": "-3.03242000" + }, + { + "id": "34782", + "name": "Iznájar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25766000", + "longitude": "-4.30836000" + }, + { + "id": "34811", + "name": "Jaén", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.76922000", + "longitude": "-3.79028000" + }, + { + "id": "34785", + "name": "Jabalquinto", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.01935000", + "longitude": "-3.72512000" + }, + { + "id": "34786", + "name": "Jabugo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.91622000", + "longitude": "-6.72968000" + }, + { + "id": "34795", + "name": "Jamilena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.74717000", + "longitude": "-3.91433000" + }, + { + "id": "34810", + "name": "Jayena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.94920000", + "longitude": "-3.82313000" + }, + { + "id": "34836", + "name": "Jérez del Marquesado", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18382000", + "longitude": "-3.15961000" + }, + { + "id": "34838", + "name": "Jódar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.84064000", + "longitude": "-3.35262000" + }, + { + "id": "34839", + "name": "Júzcar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.62442000", + "longitude": "-5.16971000" + }, + { + "id": "34812", + "name": "Jerez de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.68645000", + "longitude": "-6.13606000" + }, + { + "id": "34816", + "name": "Jimena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.84157000", + "longitude": "-3.47710000" + }, + { + "id": "34817", + "name": "Jimena de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.43517000", + "longitude": "-5.45387000" + }, + { + "id": "34818", + "name": "Jimera de Líbar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.65119000", + "longitude": "-5.27412000" + }, + { + "id": "34826", + "name": "Jubrique", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.56475000", + "longitude": "-5.21560000" + }, + { + "id": "34829", + "name": "Jun", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22083000", + "longitude": "-3.59407000" + }, + { + "id": "34834", + "name": "Juviles", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.94879000", + "longitude": "-3.22586000" + }, + { + "id": "34853", + "name": "La Algaba", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.46325000", + "longitude": "-6.01113000" + }, + { + "id": "34855", + "name": "La Antilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.20709000", + "longitude": "-7.20909000" + }, + { + "id": "34862", + "name": "La Campana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.56891000", + "longitude": "-5.42670000" + }, + { + "id": "34864", + "name": "La Carlota", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.67359000", + "longitude": "-4.93122000" + }, + { + "id": "34865", + "name": "La Carolina", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.27559000", + "longitude": "-3.61535000" + }, + { + "id": "34875", + "name": "La Gangosa Vistasol", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.80581000", + "longitude": "-2.62174000" + }, + { + "id": "34882", + "name": "La Guardia de Jaén", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.74303000", + "longitude": "-3.69312000" + }, + { + "id": "34884", + "name": "La Herradura", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.73491000", + "longitude": "-3.73760000" + }, + { + "id": "34886", + "name": "La Iruela", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.91986000", + "longitude": "-2.99659000" + }, + { + "id": "34888", + "name": "La Lantejuela", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.35350000", + "longitude": "-5.22477000" + }, + { + "id": "34892", + "name": "La Línea de la Concepción", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.16809000", + "longitude": "-5.34777000" + }, + { + "id": "34891", + "name": "La Luisiana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.52602000", + "longitude": "-5.24883000" + }, + { + "id": "34895", + "name": "La Mojonera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.29233000", + "longitude": "-2.43730000" + }, + { + "id": "34899", + "name": "La Palma del Condado", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38605000", + "longitude": "-6.55231000" + }, + { + "id": "34910", + "name": "La Puebla de Cazalla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22155000", + "longitude": "-5.31153000" + }, + { + "id": "34912", + "name": "La Puebla de los Infantes", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.78090000", + "longitude": "-5.38837000" + }, + { + "id": "34913", + "name": "La Puebla del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.26787000", + "longitude": "-6.06264000" + }, + { + "id": "34915", + "name": "La Puerta de Segura", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.35293000", + "longitude": "-2.73956000" + }, + { + "id": "34916", + "name": "La Rambla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.60760000", + "longitude": "-4.73962000" + }, + { + "id": "34917", + "name": "La Rinconada", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.48613000", + "longitude": "-5.98091000" + }, + { + "id": "34922", + "name": "La Roda de Andalucía", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.20381000", + "longitude": "-4.77802000" + }, + { + "id": "34933", + "name": "La Victoria", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.68126000", + "longitude": "-4.85199000" + }, + { + "id": "34967", + "name": "Lanjarón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.91853000", + "longitude": "-3.48180000" + }, + { + "id": "34969", + "name": "Lanteira", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.16871000", + "longitude": "-3.13823000" + }, + { + "id": "34977", + "name": "Laroya", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.29771000", + "longitude": "-2.33419000" + }, + { + "id": "34982", + "name": "Larva", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.76069000", + "longitude": "-3.20269000" + }, + { + "id": "34983", + "name": "Las Cabezas de San Juan", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.98380000", + "longitude": "-5.93933000" + }, + { + "id": "34984", + "name": "Las Gabias", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.13548000", + "longitude": "-3.67029000" + }, + { + "id": "35004", + "name": "Laujar de Andarax", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99516000", + "longitude": "-2.89033000" + }, + { + "id": "35174", + "name": "Láchar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.19519000", + "longitude": "-3.83277000" + }, + { + "id": "35177", + "name": "Lúcar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.40035000", + "longitude": "-2.42496000" + }, + { + "id": "35178", + "name": "Lújar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.78831000", + "longitude": "-3.40400000" + }, + { + "id": "35011", + "name": "Lebrija", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.92077000", + "longitude": "-6.07529000" + }, + { + "id": "35029", + "name": "Lentegí", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.83613000", + "longitude": "-3.67426000" + }, + { + "id": "35030", + "name": "Lepe", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25482000", + "longitude": "-7.20433000" + }, + { + "id": "35052", + "name": "Linares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.09519000", + "longitude": "-3.63602000" + }, + { + "id": "35055", + "name": "Linares de la Sierra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.87963000", + "longitude": "-6.62321000" + }, + { + "id": "35096", + "name": "Lobras", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.92849000", + "longitude": "-3.21230000" + }, + { + "id": "35102", + "name": "Loja", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.16887000", + "longitude": "-4.15129000" + }, + { + "id": "35108", + "name": "Lopera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.94542000", + "longitude": "-4.21463000" + }, + { + "id": "35110", + "name": "Lora de Estepa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.26926000", + "longitude": "-4.82759000" + }, + { + "id": "35111", + "name": "Lora del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.65896000", + "longitude": "-5.52751000" + }, + { + "id": "35118", + "name": "Los Barrios", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.18482000", + "longitude": "-5.49213000" + }, + { + "id": "35119", + "name": "Los Corrales", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.09918000", + "longitude": "-4.98429000" + }, + { + "id": "35126", + "name": "Los Molares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.15704000", + "longitude": "-5.71802000" + }, + { + "id": "35131", + "name": "Los Palacios y Villafranca", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.16181000", + "longitude": "-5.92433000" + }, + { + "id": "35136", + "name": "Los Villares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.69146000", + "longitude": "-3.81868000" + }, + { + "id": "35147", + "name": "Lubrín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.21538000", + "longitude": "-2.06677000" + }, + { + "id": "35148", + "name": "Lucainena de las Torres", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.04037000", + "longitude": "-2.20095000" + }, + { + "id": "35149", + "name": "Lucena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.40881000", + "longitude": "-4.48522000" + }, + { + "id": "35152", + "name": "Lucena del Puerto", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.30396000", + "longitude": "-6.72926000" + }, + { + "id": "35160", + "name": "Lugros", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22942000", + "longitude": "-3.24150000" + }, + { + "id": "35168", + "name": "Lupión", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.99653000", + "longitude": "-3.54699000" + }, + { + "id": "35169", + "name": "Luque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.55797000", + "longitude": "-4.27974000" + }, + { + "id": "35179", + "name": "Macael", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.33318000", + "longitude": "-2.30087000" + }, + { + "id": "35212", + "name": "Mairena del Alcor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.37301000", + "longitude": "-5.74951000" + }, + { + "id": "35213", + "name": "Mairena del Aljarafe", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.34461000", + "longitude": "-6.06391000" + }, + { + "id": "35242", + "name": "Mancha Real", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.78627000", + "longitude": "-3.61226000" + }, + { + "id": "35250", + "name": "Manilva", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.37645000", + "longitude": "-5.25026000" + }, + { + "id": "35271", + "name": "Manzanilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38987000", + "longitude": "-6.43295000" + }, + { + "id": "35275", + "name": "Maracena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.20764000", + "longitude": "-3.63493000" + }, + { + "id": "35312", + "name": "María", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.71023000", + "longitude": "-2.16454000" + }, + { + "id": "35281", + "name": "Marbella", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.51543000", + "longitude": "-4.88583000" + }, + { + "id": "35283", + "name": "Marchal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.29639000", + "longitude": "-3.20353000" + }, + { + "id": "35285", + "name": "Marchena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.32900000", + "longitude": "-5.41681000" + }, + { + "id": "35291", + "name": "Marinaleda", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.37120000", + "longitude": "-4.95949000" + }, + { + "id": "35295", + "name": "Marmolejo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.04549000", + "longitude": "-4.17029000" + }, + { + "id": "35307", + "name": "Martín de la Jara", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.10867000", + "longitude": "-4.96347000" + }, + { + "id": "35302", + "name": "Martos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.72107000", + "longitude": "-3.97264000" + }, + { + "id": "35350", + "name": "Mazagón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.13749000", + "longitude": "-6.82697000" + }, + { + "id": "35703", + "name": "Málaga", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.72016000", + "longitude": "-4.42034000" + }, + { + "id": "35369", + "name": "Medina Sidonia", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.45695000", + "longitude": "-5.92717000" + }, + { + "id": "35405", + "name": "Mengibar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.96978000", + "longitude": "-3.80884000" + }, + { + "id": "35427", + "name": "Mijas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.59575000", + "longitude": "-4.63728000" + }, + { + "id": "35463", + "name": "Moclín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.33959000", + "longitude": "-3.78651000" + }, + { + "id": "35462", + "name": "Moclinejo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.77134000", + "longitude": "-4.25514000" + }, + { + "id": "35468", + "name": "Moguer", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.27559000", + "longitude": "-6.83851000" + }, + { + "id": "35473", + "name": "Mojacar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.14020000", + "longitude": "-1.85102000" + }, + { + "id": "35489", + "name": "Mollina", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.12534000", + "longitude": "-4.65686000" + }, + { + "id": "35490", + "name": "Molvízar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.78592000", + "longitude": "-3.60783000" + }, + { + "id": "35494", + "name": "Monachil", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.13320000", + "longitude": "-3.53724000" + }, + { + "id": "35503", + "name": "Monda", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.63027000", + "longitude": "-4.83192000" + }, + { + "id": "35533", + "name": "Montalbán de Córdoba", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.57996000", + "longitude": "-4.74935000" + }, + { + "id": "35548", + "name": "Montefrío", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.32308000", + "longitude": "-4.00898000" + }, + { + "id": "35550", + "name": "Montejaque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.73684000", + "longitude": "-5.24990000" + }, + { + "id": "35551", + "name": "Montejicar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.57223000", + "longitude": "-3.50527000" + }, + { + "id": "35557", + "name": "Montellano", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99531000", + "longitude": "-5.57145000" + }, + { + "id": "35558", + "name": "Montemayor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.64790000", + "longitude": "-4.69779000" + }, + { + "id": "35577", + "name": "Montilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.58627000", + "longitude": "-4.63805000" + }, + { + "id": "35578", + "name": "Montillana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.50168000", + "longitude": "-3.67368000" + }, + { + "id": "35579", + "name": "Montizón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.34249000", + "longitude": "-3.10404000" + }, + { + "id": "35583", + "name": "Montoro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.02409000", + "longitude": "-4.38340000" + }, + { + "id": "35585", + "name": "Monturque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.47186000", + "longitude": "-4.58164000" + }, + { + "id": "35600", + "name": "Moraleda de Zafayona", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.16723000", + "longitude": "-3.96505000" + }, + { + "id": "35636", + "name": "Morón de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.12084000", + "longitude": "-5.45403000" + }, + { + "id": "35629", + "name": "Moriles", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.43670000", + "longitude": "-4.60761000" + }, + { + "id": "35645", + "name": "Motril", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.75066000", + "longitude": "-3.51790000" + }, + { + "id": "35686", + "name": "Murtas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.88504000", + "longitude": "-3.10945000" + }, + { + "id": "35781", + "name": "Navas de San Juan", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.18382000", + "longitude": "-3.31598000" + }, + { + "id": "35844", + "name": "Níjar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.96655000", + "longitude": "-2.20595000" + }, + { + "id": "35845", + "name": "Nívar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25909000", + "longitude": "-3.57768000" + }, + { + "id": "35802", + "name": "Nerja", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.75278000", + "longitude": "-3.87440000" + }, + { + "id": "35804", + "name": "Nerva", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.69627000", + "longitude": "-6.54967000" + }, + { + "id": "35805", + "name": "Niebla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.36213000", + "longitude": "-6.67894000" + }, + { + "id": "35809", + "name": "Nigüelas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.97760000", + "longitude": "-3.53949000" + }, + { + "id": "35812", + "name": "Noalejo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.53017000", + "longitude": "-3.65615000" + }, + { + "id": "35834", + "name": "Nueva-Carteya", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.58630000", + "longitude": "-4.46759000" + }, + { + "id": "35853", + "name": "Obejo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.13265000", + "longitude": "-4.80018000" + }, + { + "id": "35862", + "name": "Ogíjares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.11913000", + "longitude": "-3.60772000" + }, + { + "id": "35863", + "name": "Ohanes", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.03861000", + "longitude": "-2.74524000" + }, + { + "id": "35870", + "name": "Ojén", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.56486000", + "longitude": "-4.85561000" + }, + { + "id": "35888", + "name": "Olivares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.41802000", + "longitude": "-6.15603000" + }, + { + "id": "35914", + "name": "Olula de Castro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.17475000", + "longitude": "-2.47430000" + }, + { + "id": "35915", + "name": "Olula del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.35445000", + "longitude": "-2.29754000" + }, + { + "id": "35917", + "name": "Olvera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.93418000", + "longitude": "-5.26678000" + }, + { + "id": "35936", + "name": "Orce", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.72120000", + "longitude": "-2.47752000" + }, + { + "id": "35937", + "name": "Orcera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.31742000", + "longitude": "-2.66487000" + }, + { + "id": "35948", + "name": "Oria", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.48530000", + "longitude": "-2.29292000" + }, + { + "id": "35975", + "name": "Osuna", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23760000", + "longitude": "-5.10311000" + }, + { + "id": "35982", + "name": "Otívar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.81582000", + "longitude": "-3.67979000" + }, + { + "id": "35981", + "name": "Otura", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.08846000", + "longitude": "-3.63321000" + }, + { + "id": "35996", + "name": "Padul", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.02462000", + "longitude": "-3.62678000" + }, + { + "id": "35997", + "name": "Padules", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99813000", + "longitude": "-2.77367000" + }, + { + "id": "36024", + "name": "Palenciana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.24851000", + "longitude": "-4.58261000" + }, + { + "id": "36029", + "name": "Palma del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.70024000", + "longitude": "-5.28121000" + }, + { + "id": "36037", + "name": "Palomares del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.32225000", + "longitude": "-6.05863000" + }, + { + "id": "36041", + "name": "Palos de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23457000", + "longitude": "-6.89471000" + }, + { + "id": "36043", + "name": "Pampaneira", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.94015000", + "longitude": "-3.36096000" + }, + { + "id": "36058", + "name": "Paradas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.29047000", + "longitude": "-5.49703000" + }, + { + "id": "36061", + "name": "Parauta", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.65629000", + "longitude": "-5.12916000" + }, + { + "id": "36072", + "name": "Partaloa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.40764000", + "longitude": "-2.22526000" + }, + { + "id": "36078", + "name": "Paterna de Rivera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.52246000", + "longitude": "-5.86578000" + }, + { + "id": "36079", + "name": "Paterna del Campo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.41948000", + "longitude": "-6.40248000" + }, + { + "id": "36081", + "name": "Paterna del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.02222000", + "longitude": "-2.95343000" + }, + { + "id": "36085", + "name": "Paymogo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.73999000", + "longitude": "-7.34499000" + }, + { + "id": "36486", + "name": "Pórtugos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.94193000", + "longitude": "-3.31066000" + }, + { + "id": "36088", + "name": "Peal de Becerro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.91338000", + "longitude": "-3.12148000" + }, + { + "id": "36163", + "name": "Peñaflor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.70892000", + "longitude": "-5.34504000" + }, + { + "id": "36174", + "name": "Peñarroya-Pueblonuevo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.30000000", + "longitude": "-5.26667000" + }, + { + "id": "36096", + "name": "Pedrera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22604000", + "longitude": "-4.89420000" + }, + { + "id": "36098", + "name": "Pedro Abad", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.96686000", + "longitude": "-4.45560000" + }, + { + "id": "36100", + "name": "Pedro Martínez", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.50290000", + "longitude": "-3.23134000" + }, + { + "id": "36102", + "name": "Pedroche", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.42848000", + "longitude": "-4.76325000" + }, + { + "id": "36114", + "name": "Pegalajar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.74008000", + "longitude": "-3.64946000" + }, + { + "id": "36126", + "name": "Peligros", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23231000", + "longitude": "-3.62901000" + }, + { + "id": "36149", + "name": "Periana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.92931000", + "longitude": "-4.19163000" + }, + { + "id": "36229", + "name": "Piñar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.44457000", + "longitude": "-3.43861000" + }, + { + "id": "36188", + "name": "Pilas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.30337000", + "longitude": "-6.30097000" + }, + { + "id": "36211", + "name": "Pinos Genil", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.16346000", + "longitude": "-3.50215000" + }, + { + "id": "36212", + "name": "Pinos Puente", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25109000", + "longitude": "-3.74967000" + }, + { + "id": "36224", + "name": "Pizarra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.76543000", + "longitude": "-4.70833000" + }, + { + "id": "36267", + "name": "Polícar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25759000", + "longitude": "-3.23375000" + }, + { + "id": "36265", + "name": "Polopos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.79466000", + "longitude": "-3.29816000" + }, + { + "id": "36277", + "name": "Porcuna", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.87102000", + "longitude": "-4.18501000" + }, + { + "id": "36303", + "name": "Posadas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.80205000", + "longitude": "-5.10726000" + }, + { + "id": "36316", + "name": "Pozo Alcón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.70256000", + "longitude": "-2.93367000" + }, + { + "id": "36323", + "name": "Pozoblanco", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.37906000", + "longitude": "-4.84827000" + }, + { + "id": "36346", + "name": "Prado del Rey", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.78756000", + "longitude": "-5.55589000" + }, + { + "id": "36354", + "name": "Priego de Córdoba", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.43807000", + "longitude": "-4.19523000" + }, + { + "id": "36358", + "name": "Province of Córdoba", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.00000000", + "longitude": "-4.83333000" + }, + { + "id": "36369", + "name": "Provincia de Cádiz", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.50000000", + "longitude": "-5.75000000" + }, + { + "id": "36370", + "name": "Provincia de Granada", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25000000", + "longitude": "-3.25000000" + }, + { + "id": "36372", + "name": "Provincia de Huelva", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.66667000", + "longitude": "-7.00000000" + }, + { + "id": "36374", + "name": "Provincia de Jaén", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.00000000", + "longitude": "-3.50000000" + }, + { + "id": "36380", + "name": "Provincia de Málaga", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.80000000", + "longitude": "-4.75000000" + }, + { + "id": "36388", + "name": "Provincia de Sevilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.44701000", + "longitude": "-5.69608000" + }, + { + "id": "36401", + "name": "Pruna", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.97226000", + "longitude": "-5.22230000" + }, + { + "id": "36415", + "name": "Puebla de Don Fadrique", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.96156000", + "longitude": "-2.43961000" + }, + { + "id": "36417", + "name": "Puebla de Guzmán", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.61427000", + "longitude": "-7.24878000" + }, + { + "id": "36436", + "name": "Puente de Génave", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.35544000", + "longitude": "-2.80320000" + }, + { + "id": "36441", + "name": "Puente-Genil", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38943000", + "longitude": "-4.76686000" + }, + { + "id": "36447", + "name": "Puerto Real", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.52819000", + "longitude": "-6.19011000" + }, + { + "id": "36450", + "name": "Puerto Serrano", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.92209000", + "longitude": "-5.54304000" + }, + { + "id": "36466", + "name": "Pujerra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.61274000", + "longitude": "-5.14979000" + }, + { + "id": "36468", + "name": "Pulianas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22302000", + "longitude": "-3.60832000" + }, + { + "id": "36469", + "name": "Pulpí", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.41154000", + "longitude": "-1.74496000" + }, + { + "id": "36470", + "name": "Punta Umbría", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18213000", + "longitude": "-6.96605000" + }, + { + "id": "36475", + "name": "Purchena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.34744000", + "longitude": "-2.36080000" + }, + { + "id": "36477", + "name": "Purullena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.31763000", + "longitude": "-3.19056000" + }, + { + "id": "36532", + "name": "Quéntar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.19253000", + "longitude": "-3.46653000" + }, + { + "id": "36498", + "name": "Quesada", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.84338000", + "longitude": "-3.06561000" + }, + { + "id": "36714", + "name": "Rágol", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99523000", + "longitude": "-2.68178000" + }, + { + "id": "36716", + "name": "Ríogordo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.91727000", + "longitude": "-4.29318000" + }, + { + "id": "36584", + "name": "Retamar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.83320000", + "longitude": "-2.31597000" + }, + { + "id": "36627", + "name": "Rincón de la Victoria", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.71715000", + "longitude": "-4.27583000" + }, + { + "id": "36630", + "name": "Rioja", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.94508000", + "longitude": "-2.46302000" + }, + { + "id": "36673", + "name": "Ronda", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.74231000", + "longitude": "-5.16709000" + }, + { + "id": "36675", + "name": "Roquetas de Mar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.76419000", + "longitude": "-2.61475000" + }, + { + "id": "36676", + "name": "Rosal de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.96754000", + "longitude": "-7.21889000" + }, + { + "id": "36680", + "name": "Rota", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.62545000", + "longitude": "-6.36220000" + }, + { + "id": "36692", + "name": "Rubite", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.80947000", + "longitude": "-3.34816000" + }, + { + "id": "36705", + "name": "Rus", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.04759000", + "longitude": "-3.46254000" + }, + { + "id": "36706", + "name": "Rute", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.32690000", + "longitude": "-4.36827000" + }, + { + "id": "36724", + "name": "Sabiote", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.06916000", + "longitude": "-3.31448000" + }, + { + "id": "36746", + "name": "Salar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.15036000", + "longitude": "-4.06576000" + }, + { + "id": "36747", + "name": "Salares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.85463000", + "longitude": "-4.02434000" + }, + { + "id": "36774", + "name": "Salobreña", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.74277000", + "longitude": "-3.58717000" + }, + { + "id": "36779", + "name": "Salteras", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.42060000", + "longitude": "-6.11049000" + }, + { + "id": "36810", + "name": "San Bartolomé de la Torre", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.44515000", + "longitude": "-7.10597000" + }, + { + "id": "36827", + "name": "San Enrique de Guadiaro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.30475000", + "longitude": "-5.29095000" + }, + { + "id": "36835", + "name": "San Fernando", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.47590000", + "longitude": "-6.19817000" + }, + { + "id": "36841", + "name": "San José", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.76048000", + "longitude": "-2.10912000" + }, + { + "id": "36842", + "name": "San José del Valle", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.60554000", + "longitude": "-5.79895000" + }, + { + "id": "36844", + "name": "San Juan de Aznalfarache", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.35813000", + "longitude": "-6.03731000" + }, + { + "id": "36852", + "name": "San Juan del Puerto", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.31667000", + "longitude": "-6.84139000" + }, + { + "id": "36896", + "name": "San Nicolás del Puerto", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.00000000", + "longitude": "-5.65000000" + }, + { + "id": "36903", + "name": "San Pedro de Alcántara", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.48839000", + "longitude": "-4.99123000" + }, + { + "id": "36919", + "name": "San Roque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.21067000", + "longitude": "-5.38415000" + }, + { + "id": "36921", + "name": "San Sebastián de los Ballesteros", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.65376000", + "longitude": "-4.82409000" + }, + { + "id": "36923", + "name": "San Silvestre de Guzmán", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38770000", + "longitude": "-7.34908000" + }, + { + "id": "36947", + "name": "Sanlúcar de Barrameda", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.77808000", + "longitude": "-6.35150000" + }, + { + "id": "36948", + "name": "Sanlúcar de Guadiana", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.47268000", + "longitude": "-7.46546000" + }, + { + "id": "36949", + "name": "Sanlúcar la Mayor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38758000", + "longitude": "-6.20346000" + }, + { + "id": "37006", + "name": "Santa Ana la Real", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.86245000", + "longitude": "-6.72385000" + }, + { + "id": "37009", + "name": "Santa Bárbara de Casa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.79665000", + "longitude": "-7.18735000" + }, + { + "id": "37047", + "name": "Santa Elena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.34162000", + "longitude": "-3.53953000" + }, + { + "id": "37049", + "name": "Santa Eufemia", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.60000000", + "longitude": "-4.90000000" + }, + { + "id": "37059", + "name": "Santa Fe de Mondújar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.97479000", + "longitude": "-2.53126000" + }, + { + "id": "37094", + "name": "Santa Olalla del Cala", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.90000000", + "longitude": "-6.21667000" + }, + { + "id": "37104", + "name": "Santaella", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.56294000", + "longitude": "-4.84362000" + }, + { + "id": "37105", + "name": "Santafé", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18856000", + "longitude": "-3.71887000" + }, + { + "id": "37113", + "name": "Santiago de Calatrava", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.75382000", + "longitude": "-4.17093000" + }, + { + "id": "37131", + "name": "Santiponce", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.43553000", + "longitude": "-6.04106000" + }, + { + "id": "37133", + "name": "Santisteban del Puerto", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.24829000", + "longitude": "-3.20762000" + }, + { + "id": "37143", + "name": "Santo Tomé", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.02861000", + "longitude": "-3.10092000" + }, + { + "id": "37182", + "name": "Sayalonga", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.79819000", + "longitude": "-4.01325000" + }, + { + "id": "37188", + "name": "Sedella", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.86232000", + "longitude": "-4.03314000" + }, + { + "id": "37197", + "name": "Segura de la Sierra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.29777000", + "longitude": "-2.65229000" + }, + { + "id": "37228", + "name": "Serón", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.34485000", + "longitude": "-2.50913000" + }, + { + "id": "37236", + "name": "Setenil de las Bodegas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.86397000", + "longitude": "-5.18177000" + }, + { + "id": "37239", + "name": "Sevilla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38283000", + "longitude": "-5.97317000" + }, + { + "id": "37246", + "name": "Sierra de Yeguas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.12420000", + "longitude": "-4.86773000" + }, + { + "id": "37248", + "name": "Sierro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.32237000", + "longitude": "-2.39844000" + }, + { + "id": "37254", + "name": "Siles", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.38983000", + "longitude": "-2.58190000" + }, + { + "id": "37288", + "name": "Somontín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.39176000", + "longitude": "-2.38828000" + }, + { + "id": "37296", + "name": "Soportújar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.92863000", + "longitude": "-3.40542000" + }, + { + "id": "37298", + "name": "Sorbas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.09761000", + "longitude": "-2.12349000" + }, + { + "id": "37302", + "name": "Sorihuela del Guadalimar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.24062000", + "longitude": "-3.05360000" + }, + { + "id": "37305", + "name": "Sorvilán", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.79505000", + "longitude": "-3.26769000" + }, + { + "id": "37331", + "name": "Suflí", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.33866000", + "longitude": "-2.38817000" + }, + { + "id": "37343", + "name": "Tabernas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.04992000", + "longitude": "-2.39084000" + }, + { + "id": "37350", + "name": "Tahal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.22797000", + "longitude": "-2.28470000" + }, + { + "id": "37381", + "name": "Tarifa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.01393000", + "longitude": "-5.60695000" + }, + { + "id": "37667", + "name": "Tíjola", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.34606000", + "longitude": "-2.43326000" + }, + { + "id": "37390", + "name": "Teba", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.98358000", + "longitude": "-4.91913000" + }, + { + "id": "37406", + "name": "Terque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.98393000", + "longitude": "-2.59679000" + }, + { + "id": "37439", + "name": "Tocina", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.60904000", + "longitude": "-5.73403000" + }, + { + "id": "37448", + "name": "Tolox", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.68721000", + "longitude": "-4.90511000" + }, + { + "id": "37449", + "name": "Tomares", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.37281000", + "longitude": "-6.04589000" + }, + { + "id": "37487", + "name": "Torre Alháquime", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.91588000", + "longitude": "-5.23381000" + }, + { + "id": "37501", + "name": "Torre del Campo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.77051000", + "longitude": "-3.89731000" + }, + { + "id": "37503", + "name": "Torre del Mar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.74200000", + "longitude": "-4.09291000" + }, + { + "id": "37506", + "name": "Torre-Cardela", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.50456000", + "longitude": "-3.35609000" + }, + { + "id": "37511", + "name": "Torreblascopedro", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.99750000", + "longitude": "-3.63780000" + }, + { + "id": "37513", + "name": "Torrecampo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.46667000", + "longitude": "-4.66667000" + }, + { + "id": "37530", + "name": "Torredonjimeno", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.76748000", + "longitude": "-3.95776000" + }, + { + "id": "37561", + "name": "Torremolinos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.62035000", + "longitude": "-4.49976000" + }, + { + "id": "37566", + "name": "Torrenueva", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.70396000", + "longitude": "-3.48971000" + }, + { + "id": "37569", + "name": "Torreperogil", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.03540000", + "longitude": "-3.28998000" + }, + { + "id": "37571", + "name": "Torres", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.78537000", + "longitude": "-3.50902000" + }, + { + "id": "37592", + "name": "Torrox", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.75793000", + "longitude": "-3.95233000" + }, + { + "id": "37605", + "name": "Totalán", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.76526000", + "longitude": "-4.29707000" + }, + { + "id": "37625", + "name": "Trebujena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.87075000", + "longitude": "-6.17586000" + }, + { + "id": "37634", + "name": "Trevélez", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.00037000", + "longitude": "-3.26545000" + }, + { + "id": "37637", + "name": "Trigueros", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38606000", + "longitude": "-6.82680000" + }, + { + "id": "37656", + "name": "Turre", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.15224000", + "longitude": "-1.89497000" + }, + { + "id": "37657", + "name": "Turrillas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.02948000", + "longitude": "-2.26607000" + }, + { + "id": "37670", + "name": "Ubrique", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.67777000", + "longitude": "-5.44600000" + }, + { + "id": "37675", + "name": "Ugíjar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.96087000", + "longitude": "-3.05523000" + }, + { + "id": "37679", + "name": "Uleila del Campo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18460000", + "longitude": "-2.20491000" + }, + { + "id": "37685", + "name": "Umbrete", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.36881000", + "longitude": "-6.15847000" + }, + { + "id": "37697", + "name": "Urrácal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.39740000", + "longitude": "-2.36485000" + }, + { + "id": "37711", + "name": "Utrera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18516000", + "longitude": "-5.78093000" + }, + { + "id": "37815", + "name": "Valdés", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.75835000", + "longitude": "-4.24235000" + }, + { + "id": "37758", + "name": "Valdelarco", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.94877000", + "longitude": "-6.68202000" + }, + { + "id": "37783", + "name": "Valdepeñas de Jaén", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.58903000", + "longitude": "-3.81450000" + }, + { + "id": "37796", + "name": "Valderrubio", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23378000", + "longitude": "-3.82005000" + }, + { + "id": "37809", + "name": "Valdezorras", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.42939000", + "longitude": "-5.92629000" + }, + { + "id": "37822", + "name": "Valencina de la Concepción", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.41618000", + "longitude": "-6.07422000" + }, + { + "id": "37823", + "name": "Valenzuela", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.77560000", + "longitude": "-4.22038000" + }, + { + "id": "37893", + "name": "Valverde del Camino", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.57511000", + "longitude": "-6.75432000" + }, + { + "id": "38413", + "name": "Válor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99618000", + "longitude": "-3.08287000" + }, + { + "id": "38414", + "name": "Vélez de Benaudalla", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.83244000", + "longitude": "-3.51539000" + }, + { + "id": "38415", + "name": "Vélez-Blanco", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.69178000", + "longitude": "-2.09587000" + }, + { + "id": "38416", + "name": "Vélez-Málaga", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.78107000", + "longitude": "-4.10266000" + }, + { + "id": "38417", + "name": "Vícar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.83155000", + "longitude": "-2.64273000" + }, + { + "id": "38418", + "name": "Víznar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.23149000", + "longitude": "-3.55382000" + }, + { + "id": "37921", + "name": "Vejer de la Frontera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.25213000", + "longitude": "-5.96717000" + }, + { + "id": "37926", + "name": "Velefique", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.19407000", + "longitude": "-2.40155000" + }, + { + "id": "37927", + "name": "Velez Rubio", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.64844000", + "longitude": "-2.07686000" + }, + { + "id": "37941", + "name": "Ventas de Huelma", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.06840000", + "longitude": "-3.81983000" + }, + { + "id": "37947", + "name": "Vera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.24345000", + "longitude": "-1.85905000" + }, + { + "id": "37961", + "name": "Viator", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.89006000", + "longitude": "-2.42695000" + }, + { + "id": "38410", + "name": "Viñuela", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.86307000", + "longitude": "-4.14124000" + }, + { + "id": "38006", + "name": "Vilches", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.20695000", + "longitude": "-3.51025000" + }, + { + "id": "38014", + "name": "Villa del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.98108000", + "longitude": "-4.29003000" + }, + { + "id": "38016", + "name": "Villablanca", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.30239000", + "longitude": "-7.34413000" + }, + { + "id": "38026", + "name": "Villacarrillo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.11560000", + "longitude": "-3.08480000" + }, + { + "id": "38056", + "name": "Villafranca de Córdoba", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.96257000", + "longitude": "-4.54547000" + }, + { + "id": "38081", + "name": "Villaharta", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.13333000", + "longitude": "-4.90000000" + }, + { + "id": "38102", + "name": "Villalba del Alcor", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.39731000", + "longitude": "-6.47461000" + }, + { + "id": "38124", + "name": "Villaluenga del Rosario", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.69644000", + "longitude": "-5.38601000" + }, + { + "id": "38132", + "name": "Villamanrique de la Condesa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.24481000", + "longitude": "-6.30665000" + }, + { + "id": "38136", + "name": "Villamartín", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.85979000", + "longitude": "-5.64485000" + }, + { + "id": "38171", + "name": "Villanueva de Algaidas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18350000", + "longitude": "-4.45032000" + }, + { + "id": "38180", + "name": "Villanueva de Córdoba", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.32277000", + "longitude": "-4.62873000" + }, + { + "id": "38200", + "name": "Villanueva de la Reina", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.00432000", + "longitude": "-3.91603000" + }, + { + "id": "38205", + "name": "Villanueva de las Cruces", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.62783000", + "longitude": "-7.02359000" + }, + { + "id": "38208", + "name": "Villanueva de las Torres", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.55719000", + "longitude": "-3.08868000" + }, + { + "id": "38210", + "name": "Villanueva de los Castillejos", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.49940000", + "longitude": "-7.29118000" + }, + { + "id": "38189", + "name": "Villanueva de San Juan", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.04955000", + "longitude": "-5.17540000" + }, + { + "id": "38192", + "name": "Villanueva de Tapia", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.18276000", + "longitude": "-4.33383000" + }, + { + "id": "38212", + "name": "Villanueva del Ariscal", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.39623000", + "longitude": "-6.14077000" + }, + { + "id": "38213", + "name": "Villanueva del Arzobispo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.16842000", + "longitude": "-3.00742000" + }, + { + "id": "38217", + "name": "Villanueva del Duque", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.38333000", + "longitude": "-5.00000000" + }, + { + "id": "38223", + "name": "Villanueva del Río y Minas", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.65502000", + "longitude": "-5.71369000" + }, + { + "id": "38222", + "name": "Villanueva del Rosario", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.99679000", + "longitude": "-4.36535000" + }, + { + "id": "38224", + "name": "Villanueva del Trabuco", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.02832000", + "longitude": "-4.33891000" + }, + { + "id": "38264", + "name": "Villaralto", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.45000000", + "longitude": "-4.98333000" + }, + { + "id": "38268", + "name": "Villardompardo", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.83735000", + "longitude": "-4.00051000" + }, + { + "id": "38294", + "name": "Villarrasa", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.38849000", + "longitude": "-6.60641000" + }, + { + "id": "38301", + "name": "Villarrubia", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.85000000", + "longitude": "-4.90000000" + }, + { + "id": "38350", + "name": "Villaverde del Río", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.58919000", + "longitude": "-5.87443000" + }, + { + "id": "38356", + "name": "Villaviciosa de Córdoba", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "38.08333000", + "longitude": "-5.01667000" + }, + { + "id": "38441", + "name": "Yunquera", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.73252000", + "longitude": "-4.92122000" + }, + { + "id": "38449", + "name": "Zafarraya", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.97554000", + "longitude": "-4.14442000" + }, + { + "id": "38453", + "name": "Zagra", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.25561000", + "longitude": "-4.16905000" + }, + { + "id": "38454", + "name": "Zahara", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.84055000", + "longitude": "-5.39128000" + }, + { + "id": "38455", + "name": "Zahara de los Atunes", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "36.13690000", + "longitude": "-5.84591000" + }, + { + "id": "38459", + "name": "Zalamea la Real", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.68012000", + "longitude": "-6.65977000" + }, + { + "id": "38512", + "name": "Zújar", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.54285000", + "longitude": "-2.84197000" + }, + { + "id": "38501", + "name": "Zubia", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.11906000", + "longitude": "-3.58400000" + }, + { + "id": "38505", + "name": "Zufre", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.83333000", + "longitude": "-6.33333000" + }, + { + "id": "38507", + "name": "Zuheros", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.54332000", + "longitude": "-4.31531000" + }, + { + "id": "38510", + "name": "Zurgena", + "state_id": 1193, + "state_code": "AN", + "country_id": 207, + "country_code": "ES", + "latitude": "37.34218000", + "longitude": "-2.03985000" + }, + { + "id": "32594", + "name": "Aínsa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41547000", + "longitude": "0.14008000" + }, + { + "id": "31898", + "name": "Ababuj", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54908000", + "longitude": "-0.80758000" + }, + { + "id": "31904", + "name": "Abanto", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13751000", + "longitude": "-1.69818000" + }, + { + "id": "31913", + "name": "Abiego", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12094000", + "longitude": "-0.06873000" + }, + { + "id": "31914", + "name": "Abizanda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24236000", + "longitude": "0.19717000" + }, + { + "id": "31927", + "name": "Adahuesca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14610000", + "longitude": "-0.00804000" + }, + { + "id": "31971", + "name": "Agón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85574000", + "longitude": "-1.45233000" + }, + { + "id": "31972", + "name": "Agüero", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35505000", + "longitude": "-0.79324000" + }, + { + "id": "31952", + "name": "Aguarón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33901000", + "longitude": "-1.27055000" + }, + { + "id": "31954", + "name": "Aguatón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67158000", + "longitude": "-1.23475000" + }, + { + "id": "31955", + "name": "Aguaviva", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82211000", + "longitude": "-0.19532000" + }, + { + "id": "31964", + "name": "Aguilar del Alfambra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59027000", + "longitude": "-0.79589000" + }, + { + "id": "31966", + "name": "Aguilón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29467000", + "longitude": "-1.04634000" + }, + { + "id": "31982", + "name": "Ainzón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81644000", + "longitude": "-1.51995000" + }, + { + "id": "31988", + "name": "Alacón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02575000", + "longitude": "-0.69782000" + }, + { + "id": "31989", + "name": "Aladrén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.24917000", + "longitude": "-1.15591000" + }, + { + "id": "31991", + "name": "Alagón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76964000", + "longitude": "-1.11906000" + }, + { + "id": "32004", + "name": "Alarba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20482000", + "longitude": "-1.61335000" + }, + { + "id": "32009", + "name": "Alba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61825000", + "longitude": "-1.34658000" + }, + { + "id": "32022", + "name": "Albalate de Cinca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72521000", + "longitude": "0.15244000" + }, + { + "id": "32025", + "name": "Albalate del Arzobispo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12173000", + "longitude": "-0.51142000" + }, + { + "id": "32026", + "name": "Albalatillo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73527000", + "longitude": "-0.15115000" + }, + { + "id": "32029", + "name": "Albarracín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40818000", + "longitude": "-1.44375000" + }, + { + "id": "32033", + "name": "Albelda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86542000", + "longitude": "0.45999000" + }, + { + "id": "32039", + "name": "Alberite de San Juan", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82009000", + "longitude": "-1.47063000" + }, + { + "id": "32040", + "name": "Albero Alto", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05031000", + "longitude": "-0.33710000" + }, + { + "id": "32041", + "name": "Albero Bajo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02380000", + "longitude": "-0.38018000" + }, + { + "id": "32042", + "name": "Alberuela de Tubo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90846000", + "longitude": "-0.21418000" + }, + { + "id": "32044", + "name": "Albeta", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82636000", + "longitude": "-1.49936000" + }, + { + "id": "32054", + "name": "Alborge", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33367000", + "longitude": "-0.35675000" + }, + { + "id": "32094", + "name": "Alcañiz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05000000", + "longitude": "-0.13333000" + }, + { + "id": "32066", + "name": "Alcaine", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95341000", + "longitude": "-0.70583000" + }, + { + "id": "32069", + "name": "Alcalá de Ebro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81495000", + "longitude": "-1.19429000" + }, + { + "id": "32071", + "name": "Alcalá de Gurrea", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06653000", + "longitude": "-0.68534000" + }, + { + "id": "32074", + "name": "Alcalá de la Selva", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.37183000", + "longitude": "-0.72015000" + }, + { + "id": "32073", + "name": "Alcalá de Moncayo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78610000", + "longitude": "-1.69544000" + }, + { + "id": "32078", + "name": "Alcalá del Obispo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07730000", + "longitude": "-0.29120000" + }, + { + "id": "32105", + "name": "Alcolea de Cinca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71944000", + "longitude": "0.11716000" + }, + { + "id": "32116", + "name": "Alconchel de Ariza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20428000", + "longitude": "-2.12191000" + }, + { + "id": "32120", + "name": "Alcorisa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89210000", + "longitude": "-0.38143000" + }, + { + "id": "32124", + "name": "Alcubierre", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80757000", + "longitude": "-0.45291000" + }, + { + "id": "32176", + "name": "Aldehuela de Liestos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06410000", + "longitude": "-1.70107000" + }, + { + "id": "32185", + "name": "Alerre", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16468000", + "longitude": "-0.46369000" + }, + { + "id": "32191", + "name": "Alfajarín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61400000", + "longitude": "-0.70370000" + }, + { + "id": "32193", + "name": "Alfamén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43919000", + "longitude": "-1.24458000" + }, + { + "id": "32192", + "name": "Alfambra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54638000", + "longitude": "-1.03314000" + }, + { + "id": "32206", + "name": "Alfántega", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82832000", + "longitude": "0.14823000" + }, + { + "id": "32205", + "name": "Alforque", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.32942000", + "longitude": "-0.38525000" + }, + { + "id": "32234", + "name": "Alhama de Aragón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29657000", + "longitude": "-1.89358000" + }, + { + "id": "32242", + "name": "Aliaga", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67411000", + "longitude": "-0.70333000" + }, + { + "id": "32255", + "name": "Allepuz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49295000", + "longitude": "-0.72478000" + }, + { + "id": "32257", + "name": "Alloza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96942000", + "longitude": "-0.52941000" + }, + { + "id": "32258", + "name": "Allueva", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98533000", + "longitude": "-1.04258000" + }, + { + "id": "32292", + "name": "Almochuel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27992000", + "longitude": "-0.55067000" + }, + { + "id": "32298", + "name": "Almohaja", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60489000", + "longitude": "-1.43800000" + }, + { + "id": "32302", + "name": "Almonacid de la Cuba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28067000", + "longitude": "-0.79266000" + }, + { + "id": "32303", + "name": "Almonacid de la Sierra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39754000", + "longitude": "-1.32394000" + }, + { + "id": "32309", + "name": "Almozara", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66124000", + "longitude": "-0.90169000" + }, + { + "id": "32311", + "name": "Almudévar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04255000", + "longitude": "-0.58141000" + }, + { + "id": "32312", + "name": "Almuniente", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94949000", + "longitude": "-0.41173000" + }, + { + "id": "32317", + "name": "Alobras", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18169000", + "longitude": "-1.38731000" + }, + { + "id": "32326", + "name": "Alpartir", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42253000", + "longitude": "-1.38061000" + }, + { + "id": "32330", + "name": "Alpeñés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79958000", + "longitude": "-1.06625000" + }, + { + "id": "32335", + "name": "Alquézar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17268000", + "longitude": "0.02586000" + }, + { + "id": "32350", + "name": "Ambel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79472000", + "longitude": "-1.61520000" + }, + { + "id": "32365", + "name": "Anadón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98225000", + "longitude": "-0.98367000" + }, + { + "id": "32373", + "name": "Andorra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97655000", + "longitude": "-0.44721000" + }, + { + "id": "32377", + "name": "Anento", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06958000", + "longitude": "-1.33375000" + }, + { + "id": "32384", + "name": "Angüés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11109000", + "longitude": "-0.15298000" + }, + { + "id": "32389", + "name": "Ansó", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.75785000", + "longitude": "-0.82947000" + }, + { + "id": "32395", + "name": "Antillón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03639000", + "longitude": "-0.16239000" + }, + { + "id": "32401", + "name": "Aragüés del Puerto", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70641000", + "longitude": "-0.66999000" + }, + { + "id": "32408", + "name": "Aranda de Moncayo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57749000", + "longitude": "-1.79171000" + }, + { + "id": "32530", + "name": "Arándiga", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50872000", + "longitude": "-1.50074000" + }, + { + "id": "32440", + "name": "Arcos de las Salinas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98333000", + "longitude": "-1.03333000" + }, + { + "id": "32450", + "name": "Arenys de Lledó \/ Arens de Lledó", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99244000", + "longitude": "0.27092000" + }, + { + "id": "32465", + "name": "Argavieso", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05275000", + "longitude": "-0.27834000" + }, + { + "id": "32470", + "name": "Argente", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.68841000", + "longitude": "-1.16217000" + }, + { + "id": "32474", + "name": "Arguis", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31476000", + "longitude": "-0.43967000" + }, + { + "id": "32481", + "name": "Ariño", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03019000", + "longitude": "-0.59206000" + }, + { + "id": "32480", + "name": "Ariza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31442000", + "longitude": "-2.05332000" + }, + { + "id": "32525", + "name": "Artieda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58538000", + "longitude": "-0.98422000" + }, + { + "id": "32553", + "name": "Atea", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16059000", + "longitude": "-1.55533000" + }, + { + "id": "32554", + "name": "Ateca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33092000", + "longitude": "-1.79353000" + }, + { + "id": "32573", + "name": "Ayerbe", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27267000", + "longitude": "-0.68844000" + }, + { + "id": "32581", + "name": "Azara", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07033000", + "longitude": "-0.02921000" + }, + { + "id": "32583", + "name": "Azlor", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09427000", + "longitude": "-0.04594000" + }, + { + "id": "32589", + "name": "Azuara", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25822000", + "longitude": "-0.87078000" + }, + { + "id": "38579", + "name": "Épila", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60045000", + "longitude": "-1.28007000" + }, + { + "id": "32712", + "name": "Bañón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83825000", + "longitude": "-1.19091000" + }, + { + "id": "32605", + "name": "Badules", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13901000", + "longitude": "-1.25366000" + }, + { + "id": "32606", + "name": "Baells", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95325000", + "longitude": "0.45956000" + }, + { + "id": "32610", + "name": "Bagüés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54935000", + "longitude": "-0.94577000" + }, + { + "id": "32614", + "name": "Bailo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50906000", + "longitude": "-0.81136000" + }, + { + "id": "32622", + "name": "Balconchán", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08737000", + "longitude": "-1.45998000" + }, + { + "id": "32625", + "name": "Ballobar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62106000", + "longitude": "0.19200000" + }, + { + "id": "32631", + "name": "Banastás", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18089000", + "longitude": "-0.45191000" + }, + { + "id": "32645", + "name": "Barbastro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03565000", + "longitude": "0.12686000" + }, + { + "id": "32649", + "name": "Barbués", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98085000", + "longitude": "-0.41949000" + }, + { + "id": "32650", + "name": "Barbuñales", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02563000", + "longitude": "-0.08659000" + }, + { + "id": "32660", + "name": "Bardallur", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68423000", + "longitude": "-1.21183000" + }, + { + "id": "32668", + "name": "Barrachina", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89688000", + "longitude": "-1.13858000" + }, + { + "id": "33048", + "name": "Bádenas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09216000", + "longitude": "-1.12241000" + }, + { + "id": "33049", + "name": "Báguena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04181000", + "longitude": "-1.35767000" + }, + { + "id": "33050", + "name": "Bárboles", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70898000", + "longitude": "-1.18594000" + }, + { + "id": "33051", + "name": "Bárcabo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24219000", + "longitude": "0.06934000" + }, + { + "id": "32713", + "name": "Bea", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03633000", + "longitude": "-1.14725000" + }, + { + "id": "32737", + "name": "Belchite", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.30600000", + "longitude": "-0.75400000" + }, + { + "id": "32741", + "name": "Bello", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92266000", + "longitude": "-1.49850000" + }, + { + "id": "32753", + "name": "Belver de Cinca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69272000", + "longitude": "0.17827000" + }, + { + "id": "32777", + "name": "Benasque", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60528000", + "longitude": "0.52305000" + }, + { + "id": "32780", + "name": "Benavarri \/ Benabarre", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10586000", + "longitude": "0.48211000" + }, + { + "id": "32834", + "name": "Berbegal", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95959000", + "longitude": "-0.00326000" + }, + { + "id": "32845", + "name": "Berdejo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56133000", + "longitude": "-1.94431000" + }, + { + "id": "32850", + "name": "Berge", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85791000", + "longitude": "-0.42709000" + }, + { + "id": "32884", + "name": "Bezas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33076000", + "longitude": "-1.32511000" + }, + { + "id": "32887", + "name": "Biel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38763000", + "longitude": "-0.94154000" + }, + { + "id": "32888", + "name": "Bielsa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63347000", + "longitude": "0.21858000" + }, + { + "id": "32891", + "name": "Bierge", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16216000", + "longitude": "-0.08326000" + }, + { + "id": "32894", + "name": "Bijuesca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54083000", + "longitude": "-1.92039000" + }, + { + "id": "32896", + "name": "Binaced", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82564000", + "longitude": "0.20084000" + }, + { + "id": "32898", + "name": "Binéfar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85141000", + "longitude": "0.29433000" + }, + { + "id": "32899", + "name": "Biota", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26214000", + "longitude": "-1.18735000" + }, + { + "id": "32900", + "name": "Bisaurri", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49677000", + "longitude": "0.50647000" + }, + { + "id": "32901", + "name": "Biscarrués", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22867000", + "longitude": "-0.74967000" + }, + { + "id": "32902", + "name": "Bisimbre", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85607000", + "longitude": "-1.44268000" + }, + { + "id": "32907", + "name": "Blancas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81392000", + "longitude": "-1.48208000" + }, + { + "id": "32912", + "name": "Blesa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05150000", + "longitude": "-0.88500000" + }, + { + "id": "32940", + "name": "Boltaña", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44550000", + "longitude": "0.06802000" + }, + { + "id": "32943", + "name": "Bonansa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42691000", + "longitude": "0.66692000" + }, + { + "id": "32949", + "name": "Boquiñeni", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84804000", + "longitude": "-1.25246000" + }, + { + "id": "32950", + "name": "Borau", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65858000", + "longitude": "-0.58846000" + }, + { + "id": "32951", + "name": "Bordalba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41667000", + "longitude": "-2.06667000" + }, + { + "id": "32953", + "name": "Bordón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.68650000", + "longitude": "-0.32216000" + }, + { + "id": "32954", + "name": "Borja", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83412000", + "longitude": "-1.53271000" + }, + { + "id": "32966", + "name": "Botorrita", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50706000", + "longitude": "-1.03104000" + }, + { + "id": "32974", + "name": "Brea de Aragón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52387000", + "longitude": "-1.60261000" + }, + { + "id": "32991", + "name": "Bronchales", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51171000", + "longitude": "-1.58821000" + }, + { + "id": "32992", + "name": "Broto", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60434000", + "longitude": "-0.12351000" + }, + { + "id": "32996", + "name": "Bubierca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31482000", + "longitude": "-1.85386000" + }, + { + "id": "33008", + "name": "Bueña", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70881000", + "longitude": "-1.26742000" + }, + { + "id": "33016", + "name": "Bujaraloz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49806000", + "longitude": "-0.15290000" + }, + { + "id": "33017", + "name": "Bulbuente", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81970000", + "longitude": "-1.60238000" + }, + { + "id": "33021", + "name": "Burbáguena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01783000", + "longitude": "-1.33825000" + }, + { + "id": "33023", + "name": "Bureta", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81572000", + "longitude": "-1.48819000" + }, + { + "id": "33528", + "name": "Cañada de Benatanduz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57934000", + "longitude": "-0.53682000" + }, + { + "id": "33527", + "name": "Cañada Vellida", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70811000", + "longitude": "-0.91489000" + }, + { + "id": "33544", + "name": "Cañizar del Olivar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81622000", + "longitude": "-0.64567000" + }, + { + "id": "33070", + "name": "Cabañas de Ebro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80000000", + "longitude": "-1.20000000" + }, + { + "id": "33097", + "name": "Cabolafuente", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21053000", + "longitude": "-2.04133000" + }, + { + "id": "33099", + "name": "Cabra de Mora", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.31696000", + "longitude": "-0.80678000" + }, + { + "id": "33119", + "name": "Cadrete", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55575000", + "longitude": "-0.96013000" + }, + { + "id": "33123", + "name": "Calaceite", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01625000", + "longitude": "0.18876000" + }, + { + "id": "33128", + "name": "Calamocha", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91933000", + "longitude": "-1.29750000" + }, + { + "id": "33130", + "name": "Calanda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94153000", + "longitude": "-0.23243000" + }, + { + "id": "33132", + "name": "Calatayud", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35353000", + "longitude": "-1.64318000" + }, + { + "id": "33134", + "name": "Calatorao", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52228000", + "longitude": "-1.34702000" + }, + { + "id": "33136", + "name": "Calcena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65515000", + "longitude": "-1.71764000" + }, + { + "id": "33147", + "name": "Calmarza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15810000", + "longitude": "-1.91196000" + }, + { + "id": "33148", + "name": "Calomarde", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.37264000", + "longitude": "-1.57435000" + }, + { + "id": "33173", + "name": "Camañas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64308000", + "longitude": "-1.13752000" + }, + { + "id": "33165", + "name": "Camarena de la Sierra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15000000", + "longitude": "-1.03333000" + }, + { + "id": "33168", + "name": "Camarillas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61242000", + "longitude": "-0.75416000" + }, + { + "id": "33179", + "name": "Caminreal", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83883000", + "longitude": "-1.32416000" + }, + { + "id": "33187", + "name": "Campillo de Aragón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12648000", + "longitude": "-1.84393000" + }, + { + "id": "33208", + "name": "Camporrells", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95856000", + "longitude": "0.52136000" + }, + { + "id": "33225", + "name": "Candasnos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50213000", + "longitude": "0.06425000" + }, + { + "id": "33236", + "name": "Canfranc", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.71628000", + "longitude": "-0.52563000" + }, + { + "id": "33256", + "name": "Cantavieja", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.52642000", + "longitude": "-0.40558000" + }, + { + "id": "33265", + "name": "Capdesaso", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84287000", + "longitude": "-0.18316000" + }, + { + "id": "33266", + "name": "Capella", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19635000", + "longitude": "0.39637000" + }, + { + "id": "33305", + "name": "Carenas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27755000", + "longitude": "-1.79754000" + }, + { + "id": "33306", + "name": "Cariñena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33733000", + "longitude": "-1.22444000" + }, + { + "id": "33383", + "name": "Casbas de Huesca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15550000", + "longitude": "-0.13990000" + }, + { + "id": "33387", + "name": "Cascante del Río", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.19652000", + "longitude": "-1.11414000" + }, + { + "id": "33393", + "name": "Caspe", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23402000", + "longitude": "-0.03945000" + }, + { + "id": "33400", + "name": "Castejón de Alarba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18365000", + "longitude": "-1.63612000" + }, + { + "id": "33406", + "name": "Castejón de las Armas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.30976000", + "longitude": "-1.81084000" + }, + { + "id": "33402", + "name": "Castejón de Monegros", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61802000", + "longitude": "-0.24013000" + }, + { + "id": "33403", + "name": "Castejón de Sos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51235000", + "longitude": "0.49241000" + }, + { + "id": "33404", + "name": "Castejón de Tornos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99726000", + "longitude": "-1.42805000" + }, + { + "id": "33405", + "name": "Castejón de Valdejasa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98204000", + "longitude": "-0.99393000" + }, + { + "id": "33407", + "name": "Castejón del Puente", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96179000", + "longitude": "0.15883000" + }, + { + "id": "33408", + "name": "Castel de Cabra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80255000", + "longitude": "-0.69600000" + }, + { + "id": "33409", + "name": "Castelflorite", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80273000", + "longitude": "-0.02169000" + }, + { + "id": "33433", + "name": "Castellote", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80000000", + "longitude": "-0.31975000" + }, + { + "id": "33439", + "name": "Castelnou", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22892000", + "longitude": "-0.36434000" + }, + { + "id": "33440", + "name": "Castelserás", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98133000", + "longitude": "-0.14666000" + }, + { + "id": "33442", + "name": "Castiello de Jaca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62964000", + "longitude": "-0.55020000" + }, + { + "id": "33443", + "name": "Castigaleu", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20374000", + "longitude": "0.57944000" + }, + { + "id": "33452", + "name": "Castiliscar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37662000", + "longitude": "-1.27326000" + }, + { + "id": "33453", + "name": "Castillazuelo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06774000", + "longitude": "0.06491000" + }, + { + "id": "33558", + "name": "Cedrillas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43708000", + "longitude": "-0.85150000" + }, + { + "id": "33564", + "name": "Cella", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45325000", + "longitude": "-1.28750000" + }, + { + "id": "33598", + "name": "Cervera de la Cañada", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43301000", + "longitude": "-1.73568000" + }, + { + "id": "33603", + "name": "Cerveruela", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21567000", + "longitude": "-1.21525000" + }, + { + "id": "33608", + "name": "Cetina", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29208000", + "longitude": "-1.96281000" + }, + { + "id": "33613", + "name": "Chalamera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66567000", + "longitude": "0.16299000" + }, + { + "id": "33653", + "name": "Chía", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52080000", + "longitude": "0.46563000" + }, + { + "id": "33638", + "name": "Chimillas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17033000", + "longitude": "-0.45168000" + }, + { + "id": "33642", + "name": "Chiprana", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26317000", + "longitude": "-0.12741000" + }, + { + "id": "33645", + "name": "Chodes", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48696000", + "longitude": "-1.48012000" + }, + { + "id": "33675", + "name": "Cimballa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10118000", + "longitude": "-1.77352000" + }, + { + "id": "33676", + "name": "Cinco Olivas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33966000", + "longitude": "-0.37116000" + }, + { + "id": "33704", + "name": "Clarés de Ribota", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52957000", + "longitude": "-1.83773000" + }, + { + "id": "33718", + "name": "Codos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29266000", + "longitude": "-1.37425000" + }, + { + "id": "33748", + "name": "Colungo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17125000", + "longitude": "0.06812000" + }, + { + "id": "33769", + "name": "Contamina", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.30535000", + "longitude": "-1.91731000" + }, + { + "id": "33773", + "name": "Corbalán", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40308000", + "longitude": "-0.98525000" + }, + { + "id": "33808", + "name": "Cortes de Aragón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97366000", + "longitude": "-0.83575000" + }, + { + "id": "33815", + "name": "Cosa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83392000", + "longitude": "-1.13650000" + }, + { + "id": "33823", + "name": "Cosuenda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36559000", + "longitude": "-1.29867000" + }, + { + "id": "33838", + "name": "Crivillén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88325000", + "longitude": "-0.57666000" + }, + { + "id": "33844", + "name": "Cuarte de Huerva", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59466000", + "longitude": "-0.93268000" + }, + { + "id": "33846", + "name": "Cubel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09604000", + "longitude": "-1.63729000" + }, + { + "id": "33858", + "name": "Cubla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20978000", + "longitude": "-1.07917000" + }, + { + "id": "33862", + "name": "Cucalón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08608000", + "longitude": "-1.21475000" + }, + { + "id": "33871", + "name": "Cuevas de Almudén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71342000", + "longitude": "-0.82958000" + }, + { + "id": "33870", + "name": "Cuevas Labradas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45350000", + "longitude": "-1.05008000" + }, + { + "id": "33913", + "name": "Daroca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11475000", + "longitude": "-1.41492000" + }, + { + "id": "33924", + "name": "Delicias", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64928000", + "longitude": "-0.90757000" + }, + { + "id": "33971", + "name": "Echo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73844000", + "longitude": "-0.75016000" + }, + { + "id": "33974", + "name": "Ejea de los Caballeros", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12632000", + "longitude": "-1.13716000" + }, + { + "id": "33976", + "name": "Ejulve", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77633000", + "longitude": "-0.55344000" + }, + { + "id": "33982", + "name": "El Burgo de Ebro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57157000", + "longitude": "-0.74128000" + }, + { + "id": "33990", + "name": "El Castellar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36531000", + "longitude": "-0.81734000" + }, + { + "id": "38530", + "name": "el Torricó \/ Altorricon", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80280000", + "longitude": "0.41390000" + }, + { + "id": "34041", + "name": "Embid de Ariza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37830000", + "longitude": "-1.97373000" + }, + { + "id": "34045", + "name": "Encinacorba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28516000", + "longitude": "-1.27516000" + }, + { + "id": "34067", + "name": "Erla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11732000", + "longitude": "-0.95019000" + }, + { + "id": "34083", + "name": "Escatrón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29149000", + "longitude": "-0.32308000" + }, + { + "id": "34090", + "name": "Escorihuela", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54400000", + "longitude": "-0.97078000" + }, + { + "id": "34091", + "name": "Escucha", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79467000", + "longitude": "-0.81012000" + }, + { + "id": "34128", + "name": "Esplús", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79870000", + "longitude": "0.27586000" + }, + { + "id": "34137", + "name": "Estada", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07201000", + "longitude": "0.23219000" + }, + { + "id": "34138", + "name": "Estadilla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05657000", + "longitude": "0.24343000" + }, + { + "id": "34144", + "name": "Estercuel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85500000", + "longitude": "-0.63208000" + }, + { + "id": "34154", + "name": "Fabara", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17750000", + "longitude": "0.16908000" + }, + { + "id": "34157", + "name": "Fago", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73440000", + "longitude": "-0.88131000" + }, + { + "id": "34165", + "name": "Farlete", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68122000", + "longitude": "-0.50678000" + }, + { + "id": "34170", + "name": "Fayón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23851000", + "longitude": "0.33302000" + }, + { + "id": "34368", + "name": "Fórnoles", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89359000", + "longitude": "-0.00383000" + }, + { + "id": "34181", + "name": "Ferreruela de Huerva", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06325000", + "longitude": "-1.23350000" + }, + { + "id": "34187", + "name": "Figueruelas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76651000", + "longitude": "-1.17473000" + }, + { + "id": "34191", + "name": "Fiscal", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49561000", + "longitude": "-0.12094000" + }, + { + "id": "34202", + "name": "Fombuena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14442000", + "longitude": "-1.19266000" + }, + { + "id": "34207", + "name": "Fonfría", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99566000", + "longitude": "-1.08475000" + }, + { + "id": "34218", + "name": "Fonz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01015000", + "longitude": "0.25878000" + }, + { + "id": "34223", + "name": "Formiche Alto", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32367000", + "longitude": "-0.89241000" + }, + { + "id": "34229", + "name": "Fortanete", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50533000", + "longitude": "-0.52283000" + }, + { + "id": "34235", + "name": "Foz-Calanda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92208000", + "longitude": "-0.26483000" + }, + { + "id": "34237", + "name": "Fraga", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52294000", + "longitude": "0.34894000" + }, + { + "id": "34270", + "name": "Fréscano", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88333000", + "longitude": "-1.45000000" + }, + { + "id": "34272", + "name": "Frías de Albarracín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33754000", + "longitude": "-1.61470000" + }, + { + "id": "34279", + "name": "Fuendejalón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76050000", + "longitude": "-1.47213000" + }, + { + "id": "34280", + "name": "Fuendetodos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34245000", + "longitude": "-0.95988000" + }, + { + "id": "34281", + "name": "Fuenferrada", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86923000", + "longitude": "-1.01179000" + }, + { + "id": "34336", + "name": "Fuentes Calientes", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70000000", + "longitude": "-0.96667000" + }, + { + "id": "34337", + "name": "Fuentes Claras", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86375000", + "longitude": "-1.32266000" + }, + { + "id": "34343", + "name": "Fuentes de Ebro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51250000", + "longitude": "-0.63159000" + }, + { + "id": "34344", + "name": "Fuentes de Jiloca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22859000", + "longitude": "-1.53616000" + }, + { + "id": "34350", + "name": "Fuentes de Rubielos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.16667000", + "longitude": "-0.61667000" + }, + { + "id": "34356", + "name": "Fuentespalda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80666000", + "longitude": "0.06517000" + }, + { + "id": "34395", + "name": "Gallocanta", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99624000", + "longitude": "-1.50774000" + }, + { + "id": "34396", + "name": "Gallur", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86830000", + "longitude": "-1.31577000" + }, + { + "id": "34397", + "name": "Galve", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.65591000", + "longitude": "-0.88217000" + }, + { + "id": "34414", + "name": "Gargallo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83583000", + "longitude": "-0.58442000" + }, + { + "id": "34566", + "name": "Gúdar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44107000", + "longitude": "-0.72048000" + }, + { + "id": "34443", + "name": "Gea de Albarracín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41114000", + "longitude": "-1.34823000" + }, + { + "id": "34447", + "name": "Gelsa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40766000", + "longitude": "-0.46158000" + }, + { + "id": "34472", + "name": "Gistaín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.59110000", + "longitude": "0.33478000" + }, + { + "id": "34476", + "name": "Godojos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26838000", + "longitude": "-1.86410000" + }, + { + "id": "34490", + "name": "Gotor", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54583000", + "longitude": "-1.64915000" + }, + { + "id": "34508", + "name": "Grañén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94104000", + "longitude": "-0.36941000" + }, + { + "id": "34506", + "name": "Graus", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18885000", + "longitude": "0.33749000" + }, + { + "id": "34510", + "name": "Griegos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42722000", + "longitude": "-1.71201000" + }, + { + "id": "34515", + "name": "Grisén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74524000", + "longitude": "-1.16260000" + }, + { + "id": "34514", + "name": "Grisel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87109000", + "longitude": "-1.72794000" + }, + { + "id": "34521", + "name": "Guadalaviar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38824000", + "longitude": "-1.71803000" + }, + { + "id": "34554", + "name": "Gurrea de Gállego", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01541000", + "longitude": "-0.76150000" + }, + { + "id": "34722", + "name": "Híjar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17429000", + "longitude": "-0.45112000" + }, + { + "id": "34598", + "name": "Herrera de los Navarros", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21024000", + "longitude": "-1.08271000" + }, + { + "id": "34624", + "name": "Hinojosa de Jarque", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69049000", + "longitude": "-0.78541000" + }, + { + "id": "34681", + "name": "Hoz de Jaca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69045000", + "longitude": "-0.30650000" + }, + { + "id": "34693", + "name": "Huerto", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93128000", + "longitude": "-0.16684000" + }, + { + "id": "34695", + "name": "Huesa del Común", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01053000", + "longitude": "-0.91882000" + }, + { + "id": "34696", + "name": "Huesca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13615000", + "longitude": "-0.40870000" + }, + { + "id": "34725", + "name": "Ibdes", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21667000", + "longitude": "-1.83333000" + }, + { + "id": "34728", + "name": "Ibieca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16079000", + "longitude": "-0.20855000" + }, + { + "id": "34738", + "name": "Igriés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21443000", + "longitude": "-0.43201000" + }, + { + "id": "34743", + "name": "Ilche", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95702000", + "longitude": "0.05728000" + }, + { + "id": "34750", + "name": "Illueca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53818000", + "longitude": "-1.62747000" + }, + { + "id": "34769", + "name": "Isuerre", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48729000", + "longitude": "-1.05400000" + }, + { + "id": "34784", + "name": "Jabaloyas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.24010000", + "longitude": "-1.40886000" + }, + { + "id": "34787", + "name": "Jaca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56898000", + "longitude": "-0.54987000" + }, + { + "id": "34796", + "name": "Jaraba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19083000", + "longitude": "-1.88440000" + }, + { + "id": "34803", + "name": "Jarque", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55613000", + "longitude": "-1.67563000" + }, + { + "id": "34804", + "name": "Jarque de la Val", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70283000", + "longitude": "-0.80083000" + }, + { + "id": "34805", + "name": "Jasa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69480000", + "longitude": "-0.66605000" + }, + { + "id": "34806", + "name": "Jatiel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22008000", + "longitude": "-0.38183000" + }, + { + "id": "34807", + "name": "Jaulín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45198000", + "longitude": "-0.99256000" + }, + { + "id": "34822", + "name": "Jorcas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54275000", + "longitude": "-0.75308000" + }, + { + "id": "34824", + "name": "Josa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95550000", + "longitude": "-0.76683000" + }, + { + "id": "34854", + "name": "La Almunia de Doña Godina", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47670000", + "longitude": "-1.37451000" + }, + { + "id": "34877", + "name": "La Ginebrosa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86991000", + "longitude": "-0.13525000" + }, + { + "id": "34885", + "name": "La Iglesuela del Cid", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48312000", + "longitude": "-0.31938000" + }, + { + "id": "34937", + "name": "Labuerda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45234000", + "longitude": "0.13561000" + }, + { + "id": "34941", + "name": "Lagata", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23970000", + "longitude": "-0.80487000" + }, + { + "id": "34944", + "name": "Lagueruela", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04250000", + "longitude": "-1.19283000" + }, + { + "id": "34954", + "name": "Laluenga", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00703000", + "longitude": "-0.04715000" + }, + { + "id": "34955", + "name": "Lalueza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83967000", + "longitude": "-0.25493000" + }, + { + "id": "34958", + "name": "Lanaja", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.77063000", + "longitude": "-0.33095000" + }, + { + "id": "34964", + "name": "Langa del Castillo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21200000", + "longitude": "-1.39850000" + }, + { + "id": "34970", + "name": "Lanzuela", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09850000", + "longitude": "-1.20616000" + }, + { + "id": "34971", + "name": "Laperdiguera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99053000", + "longitude": "-0.04657000" + }, + { + "id": "34997", + "name": "Lascuarre", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19611000", + "longitude": "0.52010000" + }, + { + "id": "34998", + "name": "Laspaúles", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47136000", + "longitude": "0.59698000" + }, + { + "id": "34999", + "name": "Laspuña", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50374000", + "longitude": "0.15441000" + }, + { + "id": "35005", + "name": "Layana", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29546000", + "longitude": "-1.24483000" + }, + { + "id": "35176", + "name": "Lécera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20491000", + "longitude": "-0.71133000" + }, + { + "id": "35012", + "name": "Lechón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08633000", + "longitude": "-1.28483000" + }, + { + "id": "35013", + "name": "Leciñena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79868000", + "longitude": "-0.61174000" + }, + { + "id": "35038", + "name": "Letux", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25512000", + "longitude": "-0.80269000" + }, + { + "id": "35047", + "name": "Libros", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.16311000", + "longitude": "-1.23361000" + }, + { + "id": "35049", + "name": "Lidón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71725000", + "longitude": "-1.11250000" + }, + { + "id": "35053", + "name": "Linares de Mora", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32159000", + "longitude": "-0.57468000" + }, + { + "id": "35057", + "name": "Litago", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81407000", + "longitude": "-1.75276000" + }, + { + "id": "35058", + "name": "Lituénigo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83533000", + "longitude": "-1.76196000" + }, + { + "id": "35072", + "name": "Lledó", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95498000", + "longitude": "0.27749000" + }, + { + "id": "35093", + "name": "Loarre", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31432000", + "longitude": "-0.62588000" + }, + { + "id": "35094", + "name": "Lobera de Onsella", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47848000", + "longitude": "-1.02208000" + }, + { + "id": "35106", + "name": "Longares", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40308000", + "longitude": "-1.16876000" + }, + { + "id": "35107", + "name": "Longás", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48092000", + "longitude": "-0.93420000" + }, + { + "id": "35109", + "name": "Loporzano", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16137000", + "longitude": "-0.32337000" + }, + { + "id": "35142", + "name": "Loscorrales", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25451000", + "longitude": "-0.64296000" + }, + { + "id": "35143", + "name": "Loscos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08108000", + "longitude": "-1.04433000" + }, + { + "id": "35150", + "name": "Lucena de Jalón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55301000", + "longitude": "-1.31305000" + }, + { + "id": "35153", + "name": "Luceni", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82857000", + "longitude": "-1.23889000" + }, + { + "id": "35157", + "name": "Luesia", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36974000", + "longitude": "-1.02421000" + }, + { + "id": "35158", + "name": "Luesma", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16583000", + "longitude": "-1.14575000" + }, + { + "id": "35165", + "name": "Lumpiaque", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62953000", + "longitude": "-1.30156000" + }, + { + "id": "35166", + "name": "Luna", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16760000", + "longitude": "-0.93292000" + }, + { + "id": "35197", + "name": "Maella", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12251000", + "longitude": "0.13926000" + }, + { + "id": "35200", + "name": "Magallón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83248000", + "longitude": "-1.45979000" + }, + { + "id": "35209", + "name": "Maicas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96708000", + "longitude": "-0.89041000" + }, + { + "id": "35210", + "name": "Mainar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19275000", + "longitude": "-1.30292000" + }, + { + "id": "35220", + "name": "Malanquilla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56856000", + "longitude": "-1.87481000" + }, + { + "id": "35234", + "name": "Malón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95235000", + "longitude": "-1.67199000" + }, + { + "id": "35222", + "name": "Maleján", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82762000", + "longitude": "-1.54906000" + }, + { + "id": "35224", + "name": "Mallén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90064000", + "longitude": "-1.41994000" + }, + { + "id": "35232", + "name": "Maluenda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28772000", + "longitude": "-1.61603000" + }, + { + "id": "35244", + "name": "Manchones", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15000000", + "longitude": "-1.46667000" + }, + { + "id": "35270", + "name": "Manzanera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05000000", + "longitude": "-0.83333000" + }, + { + "id": "35274", + "name": "Mara", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28950000", + "longitude": "-1.51842000" + }, + { + "id": "35313", + "name": "María de Huerva", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53880000", + "longitude": "-0.99615000" + }, + { + "id": "35296", + "name": "Marracos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08826000", + "longitude": "-0.77587000" + }, + { + "id": "35308", + "name": "Martín del Río", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84459000", + "longitude": "-0.89549000" + }, + { + "id": "35316", + "name": "Mas de las Matas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83408000", + "longitude": "-0.24292000" + }, + { + "id": "35351", + "name": "Mazaleón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05056000", + "longitude": "0.10290000" + }, + { + "id": "35406", + "name": "Mequinensa \/ Mequinenza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37211000", + "longitude": "0.30169000" + }, + { + "id": "35411", + "name": "Mesones de Isuela", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55119000", + "longitude": "-1.53858000" + }, + { + "id": "35414", + "name": "Mezalocha", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42581000", + "longitude": "-1.08276000" + }, + { + "id": "35415", + "name": "Mezquita de Jarque", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72100000", + "longitude": "-0.86700000" + }, + { + "id": "35417", + "name": "Mianos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58544000", + "longitude": "-0.95478000" + }, + { + "id": "35447", + "name": "Mirambel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58733000", + "longitude": "-0.34266000" + }, + { + "id": "35482", + "name": "Molinos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82100000", + "longitude": "-0.45017000" + }, + { + "id": "35508", + "name": "Monegrillo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63856000", + "longitude": "-0.41570000" + }, + { + "id": "35510", + "name": "Moneva", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12817000", + "longitude": "-0.83591000" + }, + { + "id": "35514", + "name": "Monforte de Moyuela", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05512000", + "longitude": "-1.01411000" + }, + { + "id": "35521", + "name": "Monreal de Ariza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29165000", + "longitude": "-2.10493000" + }, + { + "id": "35522", + "name": "Monreal del Campo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78800000", + "longitude": "-1.35541000" + }, + { + "id": "35524", + "name": "Monroyo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78775000", + "longitude": "-0.03550000" + }, + { + "id": "35532", + "name": "Montalbán", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83278000", + "longitude": "-0.80178000" + }, + { + "id": "35589", + "name": "Montón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20667000", + "longitude": "-1.51550000" + }, + { + "id": "35543", + "name": "Monteagudo del Castillo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45656000", + "longitude": "-0.81781000" + }, + { + "id": "35546", + "name": "Montecanal", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62965000", + "longitude": "-0.93873000" + }, + { + "id": "35563", + "name": "Monterde", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17434000", + "longitude": "-1.73505000" + }, + { + "id": "35564", + "name": "Monterde de Albarracín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49708000", + "longitude": "-1.49216000" + }, + { + "id": "35590", + "name": "Monzón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91084000", + "longitude": "0.19406000" + }, + { + "id": "35594", + "name": "Mora de Rubielos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25020000", + "longitude": "-0.75249000" + }, + { + "id": "35614", + "name": "Morata de Jalón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47348000", + "longitude": "-1.47628000" + }, + { + "id": "35615", + "name": "Morata de Jiloca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.24797000", + "longitude": "-1.58665000" + }, + { + "id": "35634", + "name": "Morés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47326000", + "longitude": "-1.56491000" + }, + { + "id": "35633", + "name": "Moros", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39775000", + "longitude": "-1.82839000" + }, + { + "id": "35638", + "name": "Moscardón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33295000", + "longitude": "-1.53683000" + }, + { + "id": "35639", + "name": "Mosqueruela", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36133000", + "longitude": "-0.44890000" + }, + { + "id": "35648", + "name": "Moyuela", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12792000", + "longitude": "-0.92225000" + }, + { + "id": "35650", + "name": "Mozota", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48410000", + "longitude": "-1.06807000" + }, + { + "id": "35655", + "name": "Muel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46633000", + "longitude": "-1.08503000" + }, + { + "id": "35667", + "name": "Munébrega", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25203000", + "longitude": "-1.70557000" + }, + { + "id": "35665", + "name": "Muniesa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03308000", + "longitude": "-0.81141000" + }, + { + "id": "35672", + "name": "Murero", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15967000", + "longitude": "-1.48275000" + }, + { + "id": "35740", + "name": "Naval", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19503000", + "longitude": "0.15183000" + }, + { + "id": "35766", + "name": "Navardún", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51255000", + "longitude": "-1.14822000" + }, + { + "id": "35810", + "name": "Nigüella", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53621000", + "longitude": "-1.52450000" + }, + { + "id": "35818", + "name": "Nogueras", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13475000", + "longitude": "-1.06708000" + }, + { + "id": "35819", + "name": "Nogueruelas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23622000", + "longitude": "-0.63606000" + }, + { + "id": "35823", + "name": "Nombrevilla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10730000", + "longitude": "-1.35904000" + }, + { + "id": "35824", + "name": "Nonaspe", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20881000", + "longitude": "0.24775000" + }, + { + "id": "35826", + "name": "Novales", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03201000", + "longitude": "-0.28700000" + }, + { + "id": "35827", + "name": "Novallas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95000000", + "longitude": "-1.70000000" + }, + { + "id": "35830", + "name": "Novillas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93334000", + "longitude": "-1.39412000" + }, + { + "id": "35839", + "name": "Nuévalos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21185000", + "longitude": "-1.78954000" + }, + { + "id": "35832", + "name": "Nueno", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26697000", + "longitude": "-0.43906000" + }, + { + "id": "35836", + "name": "Nuez de Ebro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58957000", + "longitude": "-0.66774000" + }, + { + "id": "35854", + "name": "Obón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90450000", + "longitude": "-0.72300000" + }, + { + "id": "35860", + "name": "Odón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88417000", + "longitude": "-1.56792000" + }, + { + "id": "35868", + "name": "Ojos Negros", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.73750000", + "longitude": "-1.49875000" + }, + { + "id": "35874", + "name": "Olba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13333000", + "longitude": "-0.61667000" + }, + { + "id": "35881", + "name": "Oliete", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99791000", + "longitude": "-0.67429000" + }, + { + "id": "35893", + "name": "Oliver-Valdefierro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64454000", + "longitude": "-0.93349000" + }, + { + "id": "35918", + "name": "Olvés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23965000", + "longitude": "-1.64647000" + }, + { + "id": "35927", + "name": "Ontiñena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67663000", + "longitude": "0.08858000" + }, + { + "id": "35965", + "name": "Orés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27765000", + "longitude": "-1.00150000" + }, + { + "id": "35935", + "name": "Orcajo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10975000", + "longitude": "-1.48933000" + }, + { + "id": "35945", + "name": "Orera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29842000", + "longitude": "-1.47849000" + }, + { + "id": "35951", + "name": "Orihuela del Tremedal", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55000000", + "longitude": "-1.65000000" + }, + { + "id": "35961", + "name": "Orrios", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58945000", + "longitude": "-0.98614000" + }, + { + "id": "35970", + "name": "Oseja", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59564000", + "longitude": "-1.70026000" + }, + { + "id": "36033", + "name": "Palo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32270000", + "longitude": "0.24376000" + }, + { + "id": "36035", + "name": "Palomar de Arroyos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77911000", + "longitude": "-0.75055000" + }, + { + "id": "36047", + "name": "Pancrudo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76223000", + "longitude": "-1.02967000" + }, + { + "id": "36048", + "name": "Paniza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28400000", + "longitude": "-1.21224000" + }, + { + "id": "36054", + "name": "Paracuellos de Jiloca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31378000", + "longitude": "-1.64029000" + }, + { + "id": "36055", + "name": "Paracuellos de la Ribera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42273000", + "longitude": "-1.56245000" + }, + { + "id": "36165", + "name": "Peñalba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50087000", + "longitude": "-0.03798000" + }, + { + "id": "36103", + "name": "Pedrola", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79102000", + "longitude": "-1.21357000" + }, + { + "id": "36130", + "name": "Peracense", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64099000", + "longitude": "-1.47075000" + }, + { + "id": "36134", + "name": "Peralejos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48433000", + "longitude": "-1.03408000" + }, + { + "id": "36140", + "name": "Perales del Alfambra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63383000", + "longitude": "-1.00181000" + }, + { + "id": "36143", + "name": "Peraltilla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05407000", + "longitude": "-0.01840000" + }, + { + "id": "36146", + "name": "Perdiguera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75458000", + "longitude": "-0.63148000" + }, + { + "id": "36153", + "name": "Pertusa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00214000", + "longitude": "-0.12732000" + }, + { + "id": "36185", + "name": "Piedratajada", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12124000", + "longitude": "-0.80373000" + }, + { + "id": "36190", + "name": "Pina de Ebro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48846000", + "longitude": "-0.53120000" + }, + { + "id": "36214", + "name": "Pinseque", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73657000", + "longitude": "-1.10041000" + }, + { + "id": "36220", + "name": "Piracés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00448000", + "longitude": "-0.31769000" + }, + { + "id": "36221", + "name": "Pitarque", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64850000", + "longitude": "-0.59324000" + }, + { + "id": "36233", + "name": "Plan", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58126000", + "longitude": "0.33742000" + }, + { + "id": "36237", + "name": "Plasencia de Jalón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68154000", + "longitude": "-1.22996000" + }, + { + "id": "36242", + "name": "Pleitas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71135000", + "longitude": "-1.20251000" + }, + { + "id": "36243", + "name": "Plenas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11209000", + "longitude": "-0.96442000" + }, + { + "id": "36246", + "name": "Plou", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99274000", + "longitude": "-0.85441000" + }, + { + "id": "36259", + "name": "Poleñino", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86972000", + "longitude": "-0.31009000" + }, + { + "id": "36269", + "name": "Pomer", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63765000", + "longitude": "-1.84104000" + }, + { + "id": "36339", + "name": "Pozán de Vero", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08219000", + "longitude": "0.03066000" + }, + { + "id": "36325", + "name": "Pozondón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56112000", + "longitude": "-1.47033000" + }, + { + "id": "36328", + "name": "Pozuel de Ariza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35000000", + "longitude": "-2.15000000" + }, + { + "id": "36329", + "name": "Pozuel del Campo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77125000", + "longitude": "-1.50575000" + }, + { + "id": "36332", + "name": "Pozuelo de Aragón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76430000", + "longitude": "-1.42305000" + }, + { + "id": "36342", + "name": "Pradilla de Ebro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86111000", + "longitude": "-1.26325000" + }, + { + "id": "36373", + "name": "Provincia de Huesca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16667000", + "longitude": "-0.16667000" + }, + { + "id": "36390", + "name": "Provincia de Teruel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66667000", + "longitude": "-0.66667000" + }, + { + "id": "36393", + "name": "Provincia de Zaragoza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58333000", + "longitude": "-1.00000000" + }, + { + "id": "36479", + "name": "Puértolas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54748000", + "longitude": "0.13214000" + }, + { + "id": "36408", + "name": "Puebla de Albortón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38517000", + "longitude": "-0.85558000" + }, + { + "id": "36410", + "name": "Puebla de Alfindén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63188000", + "longitude": "-0.75154000" + }, + { + "id": "36440", + "name": "Puente la Reina de Jaca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55908000", + "longitude": "-0.78759000" + }, + { + "id": "36458", + "name": "Puertomingalvo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.26430000", + "longitude": "-0.45756000" + }, + { + "id": "36460", + "name": "Pueyo de Santa Cruz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85799000", + "longitude": "0.15660000" + }, + { + "id": "36476", + "name": "Purujosa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68259000", + "longitude": "-1.76519000" + }, + { + "id": "36499", + "name": "Quicena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14797000", + "longitude": "-0.36049000" + }, + { + "id": "36528", + "name": "Quinto", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42378000", + "longitude": "-0.49592000" + }, + { + "id": "36711", + "name": "Ráfales", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83770000", + "longitude": "0.01923000" + }, + { + "id": "36719", + "name": "Ródenas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64076000", + "longitude": "-1.51617000" + }, + { + "id": "36573", + "name": "Remolinos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83946000", + "longitude": "-1.17768000" + }, + { + "id": "36585", + "name": "Retascón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14350000", + "longitude": "-1.38376000" + }, + { + "id": "36620", + "name": "Ricla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50580000", + "longitude": "-1.40468000" + }, + { + "id": "36624", + "name": "Rillo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72233000", + "longitude": "-0.99623000" + }, + { + "id": "36629", + "name": "Riodeva", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11667000", + "longitude": "-1.15000000" + }, + { + "id": "36658", + "name": "Robres", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86746000", + "longitude": "-0.46094000" + }, + { + "id": "36672", + "name": "Romanos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12636000", + "longitude": "-1.27502000" + }, + { + "id": "36683", + "name": "Royuela", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.37846000", + "longitude": "-1.51337000" + }, + { + "id": "36689", + "name": "Rubiales", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.27623000", + "longitude": "-1.27167000" + }, + { + "id": "36691", + "name": "Rubielos de la Cérida", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77058000", + "longitude": "-1.21291000" + }, + { + "id": "36690", + "name": "Rubielos de Mora", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18894000", + "longitude": "-0.65307000" + }, + { + "id": "36700", + "name": "Ruesca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28350000", + "longitude": "-1.48142000" + }, + { + "id": "36725", + "name": "Sabiñánigo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51924000", + "longitude": "-0.36607000" + }, + { + "id": "36742", + "name": "Sahún", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57590000", + "longitude": "0.46546000" + }, + { + "id": "36748", + "name": "Salas Altas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11407000", + "longitude": "0.06821000" + }, + { + "id": "36749", + "name": "Salas Bajas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10046000", + "longitude": "0.08349000" + }, + { + "id": "36753", + "name": "Salcedillo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96200000", + "longitude": "-1.00433000" + }, + { + "id": "36759", + "name": "Saldón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32513000", + "longitude": "-1.42782000" + }, + { + "id": "36761", + "name": "Salillas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99498000", + "longitude": "-0.22278000" + }, + { + "id": "36762", + "name": "Salillas de Jalón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56789000", + "longitude": "-1.32344000" + }, + { + "id": "36769", + "name": "Sallent de Gállego", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77127000", + "longitude": "-0.33448000" + }, + { + "id": "36784", + "name": "Salvatierra de Esca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67002000", + "longitude": "-1.00475000" + }, + { + "id": "36793", + "name": "Samper de Calanda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18933000", + "longitude": "-0.38883000" + }, + { + "id": "36794", + "name": "Samper del Salz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23458000", + "longitude": "-0.82510000" + }, + { + "id": "36798", + "name": "San Agustín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05929000", + "longitude": "-0.69254000" + }, + { + "id": "36877", + "name": "San Martín del Río", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06633000", + "longitude": "-1.38733000" + }, + { + "id": "36878", + "name": "San Mateo de Gállego", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83043000", + "longitude": "-0.76578000" + }, + { + "id": "36944", + "name": "Sangarrén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01921000", + "longitude": "-0.43323000" + }, + { + "id": "37029", + "name": "Santa Cruz de Grío", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37050000", + "longitude": "-1.43009000" + }, + { + "id": "37040", + "name": "Santa Cruz de la Serós", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52271000", + "longitude": "-0.67515000" + }, + { + "id": "37030", + "name": "Santa Cruz de Moncayo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88240000", + "longitude": "-1.75637000" + }, + { + "id": "37033", + "name": "Santa Cruz de Nogueras", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11475000", + "longitude": "-1.08933000" + }, + { + "id": "37054", + "name": "Santa Eulalia", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56742000", + "longitude": "-1.31354000" + }, + { + "id": "37056", + "name": "Santa Eulalia de Gállego", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28700000", + "longitude": "-0.76065000" + }, + { + "id": "37109", + "name": "Santed", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03172000", + "longitude": "-1.51028000" + }, + { + "id": "37163", + "name": "Sariñena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79128000", + "longitude": "-0.15804000" + }, + { + "id": "37173", + "name": "Sarrión", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.14175000", + "longitude": "-0.81533000" + }, + { + "id": "37335", + "name": "Sádaba", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28180000", + "longitude": "-1.26951000" + }, + { + "id": "37336", + "name": "Sástago", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.32166000", + "longitude": "-0.35075000" + }, + { + "id": "37186", + "name": "Secastilla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18112000", + "longitude": "0.26736000" + }, + { + "id": "37189", + "name": "Sediles", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34613000", + "longitude": "-1.53177000" + }, + { + "id": "37198", + "name": "Segura de los Baños", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94088000", + "longitude": "-0.95111000" + }, + { + "id": "37200", + "name": "Seira", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47696000", + "longitude": "0.43127000" + }, + { + "id": "37214", + "name": "Senés de Alcubierre", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90731000", + "longitude": "-0.48906000" + }, + { + "id": "37211", + "name": "Seno", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81225000", + "longitude": "-0.33816000" + }, + { + "id": "37230", + "name": "Sesa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99484000", + "longitude": "-0.24511000" + }, + { + "id": "37234", + "name": "Sestrica", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48595000", + "longitude": "-1.59501000" + }, + { + "id": "37235", + "name": "Sesué", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55131000", + "longitude": "0.47212000" + }, + { + "id": "37269", + "name": "Siétamo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12392000", + "longitude": "-0.28066000" + }, + { + "id": "37245", + "name": "Sierra de Luna", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04818000", + "longitude": "-0.91025000" + }, + { + "id": "37253", + "name": "Sigüés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63030000", + "longitude": "-1.01212000" + }, + { + "id": "37262", + "name": "Singra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.65508000", + "longitude": "-1.31158000" + }, + { + "id": "37265", + "name": "Sisamón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17124000", + "longitude": "-2.00386000" + }, + { + "id": "37272", + "name": "Sobradiel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73875000", + "longitude": "-1.03765000" + }, + { + "id": "37307", + "name": "Sos del Rey Católico", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49686000", + "longitude": "-1.21514000" + }, + { + "id": "37346", + "name": "Tabuenca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69500000", + "longitude": "-1.54335000" + }, + { + "id": "37355", + "name": "Talamantes", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73051000", + "longitude": "-1.67857000" + }, + { + "id": "37364", + "name": "Tamarit de Llitera \/ Tamarite de Litera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86910000", + "longitude": "0.42214000" + }, + { + "id": "37374", + "name": "Tarazona", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90475000", + "longitude": "-1.72678000" + }, + { + "id": "37379", + "name": "Tardienta", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97781000", + "longitude": "-0.53731000" + }, + { + "id": "37385", + "name": "Tauste", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91804000", + "longitude": "-1.25343000" + }, + { + "id": "37411", + "name": "Terrer", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.32811000", + "longitude": "-1.71329000" + }, + { + "id": "37412", + "name": "Terriente", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29741000", + "longitude": "-1.50399000" + }, + { + "id": "37415", + "name": "Teruel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34560000", + "longitude": "-1.10646000" + }, + { + "id": "37423", + "name": "Tierz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13356000", + "longitude": "-0.35489000" + }, + { + "id": "37437", + "name": "Tobed", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33866000", + "longitude": "-1.39975000" + }, + { + "id": "37471", + "name": "Tormón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20266000", + "longitude": "-1.35406000" + }, + { + "id": "37475", + "name": "Tornos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96188000", + "longitude": "-1.43389000" + }, + { + "id": "37479", + "name": "Torralba de Aragón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93487000", + "longitude": "-0.51053000" + }, + { + "id": "37483", + "name": "Torralba de los Frailes", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03622000", + "longitude": "-1.66046000" + }, + { + "id": "37484", + "name": "Torralba de los Sisones", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89084000", + "longitude": "-1.45866000" + }, + { + "id": "37482", + "name": "Torralba de Ribota", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41803000", + "longitude": "-1.68429000" + }, + { + "id": "37486", + "name": "Torralbilla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21009000", + "longitude": "-1.33800000" + }, + { + "id": "37490", + "name": "Torre de Arcas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75137000", + "longitude": "-0.06892000" + }, + { + "id": "37498", + "name": "Torre de las Arcas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84166000", + "longitude": "-0.71783000" + }, + { + "id": "37502", + "name": "Torre del Compte", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93625000", + "longitude": "0.10934000" + }, + { + "id": "37505", + "name": "Torre los Negros", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85308000", + "longitude": "-1.09782000" + }, + { + "id": "37515", + "name": "Torrecilla de Alcañiz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96056000", + "longitude": "-0.09077000" + }, + { + "id": "37523", + "name": "Torrecilla del Rebollar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90978000", + "longitude": "-1.07244000" + }, + { + "id": "37534", + "name": "Torrehermosa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23767000", + "longitude": "-2.12800000" + }, + { + "id": "37544", + "name": "Torrelapaja", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58133000", + "longitude": "-1.95181000" + }, + { + "id": "37548", + "name": "Torrellas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89444000", + "longitude": "-1.77139000" + }, + { + "id": "37572", + "name": "Torres de Albarracín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42709000", + "longitude": "-1.53242000" + }, + { + "id": "37573", + "name": "Torres de Alcanadre", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96727000", + "longitude": "-0.11096000" + }, + { + "id": "37574", + "name": "Torres de Barbués", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96050000", + "longitude": "-0.43350000" + }, + { + "id": "37575", + "name": "Torres de Berrellén", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75797000", + "longitude": "-1.06550000" + }, + { + "id": "37583", + "name": "Torrevelilla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90200000", + "longitude": "-0.10977000" + }, + { + "id": "37586", + "name": "Torrijas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01667000", + "longitude": "-0.95000000" + }, + { + "id": "37587", + "name": "Torrijo de la Cañada", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47304000", + "longitude": "-1.87441000" + }, + { + "id": "37588", + "name": "Torrijo del Campo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82575000", + "longitude": "-1.33766000" + }, + { + "id": "37603", + "name": "Tosos", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31542000", + "longitude": "-1.07292000" + }, + { + "id": "37616", + "name": "Tramacastiel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18842000", + "longitude": "-1.24081000" + }, + { + "id": "37617", + "name": "Tramacastilla", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43059000", + "longitude": "-1.57466000" + }, + { + "id": "37618", + "name": "Tramaced", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97318000", + "longitude": "-0.29752000" + }, + { + "id": "37621", + "name": "Trasmoz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82599000", + "longitude": "-1.72279000" + }, + { + "id": "37622", + "name": "Trasobares", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64308000", + "longitude": "-1.64192000" + }, + { + "id": "37642", + "name": "Tronchón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62091000", + "longitude": "-0.39833000" + }, + { + "id": "37687", + "name": "Uncastillo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35963000", + "longitude": "-1.12842000" + }, + { + "id": "37688", + "name": "Undués de Lerda", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56572000", + "longitude": "-1.16944000" + }, + { + "id": "37695", + "name": "Urrea de Jalón", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66715000", + "longitude": "-1.23420000" + }, + { + "id": "37696", + "name": "Urriés", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51943000", + "longitude": "-1.13022000" + }, + { + "id": "37704", + "name": "Used", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05554000", + "longitude": "-1.55954000" + }, + { + "id": "37708", + "name": "Utebo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70826000", + "longitude": "-0.99916000" + }, + { + "id": "37712", + "name": "Utrillas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81267000", + "longitude": "-0.84545000" + }, + { + "id": "37720", + "name": "Val de San Martín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05787000", + "longitude": "-1.44934000" + }, + { + "id": "37721", + "name": "Valacloche", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.19092000", + "longitude": "-1.09134000" + }, + { + "id": "37722", + "name": "Valbona", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22877000", + "longitude": "-0.81079000" + }, + { + "id": "37729", + "name": "Valdealgorfa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99066000", + "longitude": "-0.03433000" + }, + { + "id": "37742", + "name": "Valdecuenca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29776000", + "longitude": "-1.40829000" + }, + { + "id": "37751", + "name": "Valdehorna", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07275000", + "longitude": "-1.42376000" + }, + { + "id": "37760", + "name": "Valdelinares", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39114000", + "longitude": "-0.60593000" + }, + { + "id": "37762", + "name": "Valdeltormo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98716000", + "longitude": "0.08342000" + }, + { + "id": "37793", + "name": "Valderrobres", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87209000", + "longitude": "0.15431000" + }, + { + "id": "37826", + "name": "Valfarta", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55726000", + "longitude": "-0.13304000" + }, + { + "id": "37832", + "name": "Valjunquera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95250000", + "longitude": "0.02575000" + }, + { + "id": "37867", + "name": "Valmadrid", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44351000", + "longitude": "-0.88482000" + }, + { + "id": "37871", + "name": "Valpalmas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15821000", + "longitude": "-0.85481000" + }, + { + "id": "37880", + "name": "Valtorres", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29855000", + "longitude": "-1.74080000" + }, + { + "id": "37920", + "name": "Veguillas de la Sierra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15000000", + "longitude": "-1.40000000" + }, + { + "id": "37929", + "name": "Velilla de Ebro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37416000", + "longitude": "-0.43483000" + }, + { + "id": "37930", + "name": "Velilla de Jiloca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27509000", + "longitude": "-1.60396000" + }, + { + "id": "37948", + "name": "Vera de Moncayo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82400000", + "longitude": "-1.68799000" + }, + { + "id": "37969", + "name": "Vierlas", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92708000", + "longitude": "-1.68123000" + }, + { + "id": "38042", + "name": "Villadoz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16234000", + "longitude": "-1.28800000" + }, + { + "id": "38050", + "name": "Villafeliche", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19509000", + "longitude": "-1.50983000" + }, + { + "id": "38058", + "name": "Villafranca de Ebro", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57473000", + "longitude": "-0.65039000" + }, + { + "id": "38063", + "name": "Villafranca del Campo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69545000", + "longitude": "-1.34722000" + }, + { + "id": "38083", + "name": "Villahermosa del Campo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10942000", + "longitude": "-1.24692000" + }, + { + "id": "38094", + "name": "Villalba de Perejil", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.32742000", + "longitude": "-1.54833000" + }, + { + "id": "38112", + "name": "Villalengua", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43548000", + "longitude": "-1.84125000" + }, + { + "id": "38142", + "name": "Villamayor de Gállego", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68584000", + "longitude": "-0.77230000" + }, + { + "id": "38227", + "name": "Villanúa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67970000", + "longitude": "-0.53769000" + }, + { + "id": "38184", + "name": "Villanueva de Gállego", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76917000", + "longitude": "-0.82350000" + }, + { + "id": "38186", + "name": "Villanueva de Jiloca", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07625000", + "longitude": "-1.38960000" + }, + { + "id": "38191", + "name": "Villanueva de Sigena", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71576000", + "longitude": "-0.00897000" + }, + { + "id": "38221", + "name": "Villanueva del Rebollar de la Sierra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89108000", + "longitude": "-1.00837000" + }, + { + "id": "38249", + "name": "Villar de los Navarros", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15949000", + "longitude": "-1.04199000" + }, + { + "id": "38254", + "name": "Villar del Cobo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39475000", + "longitude": "-1.67332000" + }, + { + "id": "38262", + "name": "Villar del Salz", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.68200000", + "longitude": "-1.49967000" + }, + { + "id": "38286", + "name": "Villarluengo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64842000", + "longitude": "-0.53066000" + }, + { + "id": "38291", + "name": "Villarquemado", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51750000", + "longitude": "-1.26500000" + }, + { + "id": "38295", + "name": "Villarreal de Huerva", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19034000", + "longitude": "-1.28983000" + }, + { + "id": "38298", + "name": "Villarroya de la Sierra", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46346000", + "longitude": "-1.78350000" + }, + { + "id": "38299", + "name": "Villarroya de los Pinares", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.52917000", + "longitude": "-0.66900000" + }, + { + "id": "38300", + "name": "Villarroya del Campo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14309000", + "longitude": "-1.32416000" + }, + { + "id": "38329", + "name": "Villastar", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.28102000", + "longitude": "-1.15139000" + }, + { + "id": "38367", + "name": "Villel", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23463000", + "longitude": "-1.18611000" + }, + { + "id": "38397", + "name": "Visiedo", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.68558000", + "longitude": "-1.09709000" + }, + { + "id": "38399", + "name": "Vistabella", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21850000", + "longitude": "-1.15358000" + }, + { + "id": "38404", + "name": "Vivel del Río Martín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87091000", + "longitude": "-0.93889000" + }, + { + "id": "38447", + "name": "Yésero", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61911000", + "longitude": "-0.25020000" + }, + { + "id": "38430", + "name": "Yebra de Basa", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48647000", + "longitude": "-0.28178000" + }, + { + "id": "38457", + "name": "Zaidín", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60402000", + "longitude": "0.26429000" + }, + { + "id": "38470", + "name": "Zaragoza", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65606000", + "longitude": "-0.87734000" + }, + { + "id": "38504", + "name": "Zuera", + "state_id": 1177, + "state_code": "AR", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86775000", + "longitude": "-0.78984000" + }, + { + "id": "31992", + "name": "Alaior", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.93034000", + "longitude": "4.14039000" + }, + { + "id": "32007", + "name": "Alaró", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70441000", + "longitude": "2.79181000" + }, + { + "id": "32139", + "name": "Alcúdia", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85316000", + "longitude": "3.12138000" + }, + { + "id": "32209", + "name": "Algaida", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.55899000", + "longitude": "2.89541000" + }, + { + "id": "32375", + "name": "Andratx", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.57553000", + "longitude": "2.42017000" + }, + { + "id": "32478", + "name": "Ariany", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65048000", + "longitude": "3.11055000" + }, + { + "id": "32526", + "name": "Artà", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.69315000", + "longitude": "3.34979000" + }, + { + "id": "32633", + "name": "Banyalbufar", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68734000", + "longitude": "2.51409000" + }, + { + "id": "33064", + "name": "Búger", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75809000", + "longitude": "2.98349000" + }, + { + "id": "32897", + "name": "Binissalem", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68744000", + "longitude": "2.84396000" + }, + { + "id": "33020", + "name": "Bunyola", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.69634000", + "longitude": "2.69955000" + }, + { + "id": "33122", + "name": "Cala d'Or", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.37810000", + "longitude": "3.23479000" + }, + { + "id": "33121", + "name": "Cala Rajada", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71174000", + "longitude": "3.46310000" + }, + { + "id": "33149", + "name": "Calonge", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.40039000", + "longitude": "3.20335000" + }, + { + "id": "33155", + "name": "Calvià", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56570000", + "longitude": "2.50621000" + }, + { + "id": "33180", + "name": "Camp de Mar", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53827000", + "longitude": "2.42386000" + }, + { + "id": "33182", + "name": "Campanet", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.77470000", + "longitude": "2.96506000" + }, + { + "id": "33210", + "name": "Campos", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.43099000", + "longitude": "3.01935000" + }, + { + "id": "33217", + "name": "Can Pastilla", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53615000", + "longitude": "2.71766000" + }, + { + "id": "33219", + "name": "Can Picafort", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76567000", + "longitude": "3.15488000" + }, + { + "id": "33264", + "name": "Capdepera", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70237000", + "longitude": "3.43532000" + }, + { + "id": "33699", + "name": "Ciutadella", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00112000", + "longitude": "3.84144000" + }, + { + "id": "33749", + "name": "Colònia de Sant Jordi", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.31810000", + "longitude": "2.99197000" + }, + { + "id": "33729", + "name": "Coll d'en Rabassa", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.55083000", + "longitude": "2.69468000" + }, + { + "id": "33764", + "name": "Consell", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.66861000", + "longitude": "2.81267000" + }, + { + "id": "33821", + "name": "Costitx", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65675000", + "longitude": "2.94953000" + }, + { + "id": "33922", + "name": "Deià", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.74806000", + "longitude": "2.64823000" + }, + { + "id": "34022", + "name": "El Toro", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.48477000", + "longitude": "2.48222000" + }, + { + "id": "34073", + "name": "Es Castell", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.87760000", + "longitude": "4.28990000" + }, + { + "id": "34074", + "name": "Es Molinar", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56140000", + "longitude": "2.67517000" + }, + { + "id": "34089", + "name": "Escorca", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.82138000", + "longitude": "2.86941000" + }, + { + "id": "34131", + "name": "Esporles", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.66794000", + "longitude": "2.57867000" + }, + { + "id": "34140", + "name": "Estellencs", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65338000", + "longitude": "2.48130000" + }, + { + "id": "34171", + "name": "Felanitx", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46960000", + "longitude": "3.14831000" + }, + { + "id": "34179", + "name": "Ferreries", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98324000", + "longitude": "4.01181000" + }, + { + "id": "34224", + "name": "Fornalutx", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78232000", + "longitude": "2.74107000" + }, + { + "id": "34729", + "name": "Ibiza", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.90883000", + "longitude": "1.43296000" + }, + { + "id": "34747", + "name": "Illes Balears", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60992000", + "longitude": "3.02948000" + }, + { + "id": "34752", + "name": "Inca", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.72110000", + "longitude": "2.91093000" + }, + { + "id": "35085", + "name": "Lloret de Vistalegre", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61835000", + "longitude": "2.97493000" + }, + { + "id": "35087", + "name": "Lloseta", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71849000", + "longitude": "2.86690000" + }, + { + "id": "35088", + "name": "Llubí", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.69933000", + "longitude": "3.00681000" + }, + { + "id": "35089", + "name": "Llucmajor", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.49093000", + "longitude": "2.89108000" + }, + { + "id": "35363", + "name": "Maó", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88853000", + "longitude": "4.26583000" + }, + { + "id": "35201", + "name": "Magaluf", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.51110000", + "longitude": "2.53530000" + }, + { + "id": "35239", + "name": "Manacor", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56964000", + "longitude": "3.20955000" + }, + { + "id": "35246", + "name": "Mancor de la Vall", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.74966000", + "longitude": "2.87284000" + }, + { + "id": "35289", + "name": "Maria de la Salut", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.66306000", + "longitude": "3.07300000" + }, + { + "id": "35297", + "name": "Marratxí", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.62142000", + "longitude": "2.72530000" + }, + { + "id": "35407", + "name": "Mercadal", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.99014000", + "longitude": "4.09387000" + }, + { + "id": "35586", + "name": "Montuïri", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56742000", + "longitude": "2.98189000" + }, + { + "id": "35681", + "name": "Muro", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73661000", + "longitude": "3.05559000" + }, + { + "id": "36027", + "name": "Palma", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56939000", + "longitude": "2.65024000" + }, + { + "id": "36030", + "name": "Palmanova", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.52470000", + "longitude": "2.53922000" + }, + { + "id": "36116", + "name": "Peguera", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53751000", + "longitude": "2.44806000" + }, + { + "id": "36157", + "name": "Petra", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61351000", + "longitude": "3.11312000" + }, + { + "id": "36262", + "name": "Pollença", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.87678000", + "longitude": "3.01626000" + }, + { + "id": "36279", + "name": "Porreres", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.51434000", + "longitude": "3.02197000" + }, + { + "id": "36281", + "name": "Port d'Alcúdia", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.84182000", + "longitude": "3.13291000" + }, + { + "id": "36282", + "name": "Port de Pollença", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90750000", + "longitude": "3.08140000" + }, + { + "id": "36283", + "name": "Port de Sóller", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.79759000", + "longitude": "2.69637000" + }, + { + "id": "36295", + "name": "Porto Cristo", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53953000", + "longitude": "3.33302000" + }, + { + "id": "36297", + "name": "Portocolom", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.41589000", + "longitude": "3.25697000" + }, + { + "id": "36464", + "name": "Puigpunyent", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.62514000", + "longitude": "2.52759000" + }, + { + "id": "38569", + "name": "s'Arenal", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.50000000", + "longitude": "2.75000000" + }, + { + "id": "38570", + "name": "sa Pobla", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76920000", + "longitude": "3.02394000" + }, + { + "id": "36957", + "name": "Sant Antoni de Portmany", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98068000", + "longitude": "1.30362000" + }, + { + "id": "36967", + "name": "Sant Francesc de Formentera", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.70566000", + "longitude": "1.42893000" + }, + { + "id": "36971", + "name": "Sant Joan", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.59621000", + "longitude": "3.03920000" + }, + { + "id": "36973", + "name": "Sant Joan de Labritja", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.07891000", + "longitude": "1.51397000" + }, + { + "id": "36980", + "name": "Sant Josep de sa Talaia", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.92239000", + "longitude": "1.29437000" + }, + { + "id": "36983", + "name": "Sant Llorenç des Cardassar", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61009000", + "longitude": "3.28380000" + }, + { + "id": "36984", + "name": "Sant Lluís", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.84939000", + "longitude": "4.25819000" + }, + { + "id": "37052", + "name": "Santa Eugènia", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.62361000", + "longitude": "2.83864000" + }, + { + "id": "37058", + "name": "Santa Eulària des Riu", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98457000", + "longitude": "1.53409000" + }, + { + "id": "37064", + "name": "Santa Margalida", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70143000", + "longitude": "3.10215000" + }, + { + "id": "37099", + "name": "Santa Ponsa", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.50868000", + "longitude": "2.47660000" + }, + { + "id": "37107", + "name": "Santanyí", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.35461000", + "longitude": "3.12907000" + }, + { + "id": "37337", + "name": "Sóller", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76623000", + "longitude": "2.71521000" + }, + { + "id": "37205", + "name": "Selva", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75504000", + "longitude": "2.90069000" + }, + { + "id": "37209", + "name": "Sencelles", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.64598000", + "longitude": "2.89769000" + }, + { + "id": "37229", + "name": "Ses Salines", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33831000", + "longitude": "3.05274000" + }, + { + "id": "37261", + "name": "Sineu", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.64254000", + "longitude": "3.01034000" + }, + { + "id": "37290", + "name": "Son Ferrer", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.49666000", + "longitude": "2.50102000" + }, + { + "id": "37291", + "name": "Son Servera", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.62073000", + "longitude": "3.36008000" + }, + { + "id": "37843", + "name": "Valldemossa", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71042000", + "longitude": "2.62230000" + }, + { + "id": "37983", + "name": "Vilafranca de Bonany", + "state_id": 1174, + "state_code": "PM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56894000", + "longitude": "3.08815000" + }, + { + "id": "31942", + "name": "Aduna", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.20375000", + "longitude": "-2.05033000" + }, + { + "id": "31970", + "name": "Agurain \/ Salvatierra", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.85162000", + "longitude": "-2.39123000" + }, + { + "id": "31978", + "name": "Aia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.23721000", + "longitude": "-2.14833000" + }, + { + "id": "31984", + "name": "Aizarnazabal", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25591000", + "longitude": "-2.23607000" + }, + { + "id": "32046", + "name": "Albiztur", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.12933000", + "longitude": "-2.13649000" + }, + { + "id": "32227", + "name": "Algorta", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.34927000", + "longitude": "-3.00940000" + }, + { + "id": "32253", + "name": "Alkiza", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.17263000", + "longitude": "-2.10923000" + }, + { + "id": "32319", + "name": "Alonsotegi", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.24483000", + "longitude": "-2.98759000" + }, + { + "id": "32354", + "name": "Amezketa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.04813000", + "longitude": "-2.08541000" + }, + { + "id": "32356", + "name": "Amorebieta", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21667000", + "longitude": "-2.73333000" + }, + { + "id": "32357", + "name": "Amoroto", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.32634000", + "longitude": "-2.51349000" + }, + { + "id": "32361", + "name": "Amurrio", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.05000000", + "longitude": "-3.00000000" + }, + { + "id": "32372", + "name": "Andoain", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21658000", + "longitude": "-2.02530000" + }, + { + "id": "32386", + "name": "Anoeta", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.16241000", + "longitude": "-2.07107000" + }, + { + "id": "32396", + "name": "Antzuola", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.09725000", + "longitude": "-2.37998000" + }, + { + "id": "32398", + "name": "Araba \/ Álava", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.83333000", + "longitude": "-2.75000000" + }, + { + "id": "32403", + "name": "Araia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.89345000", + "longitude": "-2.31314000" + }, + { + "id": "32404", + "name": "Arama", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.06335000", + "longitude": "-2.16540000" + }, + { + "id": "32458", + "name": "Aretxabaleta", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.03414000", + "longitude": "-2.50456000" + }, + { + "id": "32489", + "name": "Armiñón", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.72313000", + "longitude": "-2.87172000" + }, + { + "id": "32502", + "name": "Arrasate \/ Mondragón", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.06441000", + "longitude": "-2.48977000" + }, + { + "id": "32507", + "name": "Arrigorriaga", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21006000", + "longitude": "-2.88562000" + }, + { + "id": "32538", + "name": "Asteasu", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.19436000", + "longitude": "-2.09818000" + }, + { + "id": "32539", + "name": "Astigarraga", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.28174000", + "longitude": "-1.94634000" + }, + { + "id": "32552", + "name": "Ataun", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.00612000", + "longitude": "-2.17663000" + }, + { + "id": "32557", + "name": "Aulesti", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30000000", + "longitude": "-2.56667000" + }, + { + "id": "32566", + "name": "Avellaneda", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.22942000", + "longitude": "-3.16172000" + }, + { + "id": "32570", + "name": "Axpe de Busturia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.38355000", + "longitude": "-2.69772000" + }, + { + "id": "32582", + "name": "Azkoitia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.17744000", + "longitude": "-2.31129000" + }, + { + "id": "32587", + "name": "Azpeitia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.18246000", + "longitude": "-2.26693000" + }, + { + "id": "32618", + "name": "Bakio", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.42917000", + "longitude": "-2.80881000" + }, + { + "id": "32623", + "name": "Baliarrain", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.06928000", + "longitude": "-2.12781000" + }, + { + "id": "32638", + "name": "Barakaldo", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.29639000", + "longitude": "-2.98813000" + }, + { + "id": "32688", + "name": "Basauri", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.23970000", + "longitude": "-2.88580000" + }, + { + "id": "32692", + "name": "Bastida \/ Labastida", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58974000", + "longitude": "-2.79568000" + }, + { + "id": "32720", + "name": "Beasain", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.05017000", + "longitude": "-2.20087000" + }, + { + "id": "32733", + "name": "Beizama", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.13385000", + "longitude": "-2.20001000" + }, + { + "id": "32831", + "name": "Berango", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.36500000", + "longitude": "-2.99601000" + }, + { + "id": "32832", + "name": "Berantevilla", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68254000", + "longitude": "-2.85832000" + }, + { + "id": "32847", + "name": "Bergara", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.11510000", + "longitude": "-2.41750000" + }, + { + "id": "32859", + "name": "Bermeo", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.42088000", + "longitude": "-2.72152000" + }, + { + "id": "32863", + "name": "Berriatua", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.31667000", + "longitude": "-2.46667000" + }, + { + "id": "32866", + "name": "Berriz", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.16667000", + "longitude": "-2.56667000" + }, + { + "id": "32867", + "name": "Berrobi", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.14518000", + "longitude": "-2.02623000" + }, + { + "id": "32895", + "name": "Bilbao", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.26271000", + "longitude": "-2.92528000" + }, + { + "id": "32903", + "name": "Bizkaia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25000000", + "longitude": "-2.91667000" + }, + { + "id": "33917", + "name": "Deba", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.29571000", + "longitude": "-2.35213000" + }, + { + "id": "33927", + "name": "Derio", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30544000", + "longitude": "-2.88116000" + }, + { + "id": "33946", + "name": "Donostia \/ San Sebastián", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.31283000", + "longitude": "-1.97499000" + }, + { + "id": "33961", + "name": "Durango", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.17124000", + "longitude": "-2.63380000" + }, + { + "id": "33968", + "name": "Ea", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.37985000", + "longitude": "-2.58556000" + }, + { + "id": "33972", + "name": "Eibar", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.18493000", + "longitude": "-2.47158000" + }, + { + "id": "34032", + "name": "Elciego", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51569000", + "longitude": "-2.61897000" + }, + { + "id": "34034", + "name": "Elexalde", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.15000000", + "longitude": "-2.93333000" + }, + { + "id": "34035", + "name": "Elgoibar", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21601000", + "longitude": "-2.41334000" + }, + { + "id": "34038", + "name": "Elorrio", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.12924000", + "longitude": "-2.54056000" + }, + { + "id": "34066", + "name": "Erandio", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30438000", + "longitude": "-2.97352000" + }, + { + "id": "34069", + "name": "Ermua", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.18725000", + "longitude": "-2.50261000" + }, + { + "id": "34070", + "name": "Errenteria", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.31195000", + "longitude": "-1.90234000" + }, + { + "id": "34071", + "name": "Errigoiti", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.31667000", + "longitude": "-2.71667000" + }, + { + "id": "34097", + "name": "Eskoriatza", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.01829000", + "longitude": "-2.52598000" + }, + { + "id": "34098", + "name": "Eskuernaga \/ Villabuena de Álava", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54787000", + "longitude": "-2.66552000" + }, + { + "id": "34232", + "name": "Forua", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.33343000", + "longitude": "-2.67504000" + }, + { + "id": "34378", + "name": "Galdakao", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.23073000", + "longitude": "-2.84290000" + }, + { + "id": "34433", + "name": "Gasteiz \/ Vitoria", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.84998000", + "longitude": "-2.67268000" + }, + { + "id": "34436", + "name": "Gatika", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.36313000", + "longitude": "-2.87294000" + }, + { + "id": "34442", + "name": "Gaztelu", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.11622000", + "longitude": "-2.02439000" + }, + { + "id": "34568", + "name": "Güeñes", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21252000", + "longitude": "-3.09497000" + }, + { + "id": "34457", + "name": "Gernika-Lumo", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.31667000", + "longitude": "-2.68333000" + }, + { + "id": "34460", + "name": "Getaria", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30326000", + "longitude": "-2.20444000" + }, + { + "id": "34461", + "name": "Getxo", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.35689000", + "longitude": "-3.01146000" + }, + { + "id": "34469", + "name": "Gipuzkoa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.16667000", + "longitude": "-2.16667000" + }, + { + "id": "34588", + "name": "Hernani", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.26615000", + "longitude": "-1.97615000" + }, + { + "id": "34590", + "name": "Hernialde", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.15446000", + "longitude": "-2.08521000" + }, + { + "id": "34633", + "name": "Hondarribia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.36859000", + "longitude": "-1.79622000" + }, + { + "id": "34724", + "name": "Ibarrangelu", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.39027000", + "longitude": "-2.63423000" + }, + { + "id": "34733", + "name": "Idiazabal", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.01189000", + "longitude": "-2.23356000" + }, + { + "id": "34762", + "name": "Irun", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.33904000", + "longitude": "-1.78938000" + }, + { + "id": "34763", + "name": "Irura", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.16651000", + "longitude": "-2.06746000" + }, + { + "id": "34783", + "name": "Izurtza", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.15000000", + "longitude": "-2.63333000" + }, + { + "id": "34942", + "name": "Lagrán", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62625000", + "longitude": "-2.58385000" + }, + { + "id": "34943", + "name": "Laguardia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55461000", + "longitude": "-2.58528000" + }, + { + "id": "34959", + "name": "Landa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.38333000", + "longitude": "-2.95000000" + }, + { + "id": "34961", + "name": "Lanestosa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21986000", + "longitude": "-3.43920000" + }, + { + "id": "34973", + "name": "Lapuebla de Labarca", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49455000", + "longitude": "-2.57341000" + }, + { + "id": "34980", + "name": "Larraul", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.18773000", + "longitude": "-2.10202000" + }, + { + "id": "34996", + "name": "Lasarte", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.26774000", + "longitude": "-2.02169000" + }, + { + "id": "35003", + "name": "Laudio \/ Llodio", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.14322000", + "longitude": "-2.96204000" + }, + { + "id": "35009", + "name": "Leaburu", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.12188000", + "longitude": "-2.05430000" + }, + { + "id": "35024", + "name": "Legorreta", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.08464000", + "longitude": "-2.15017000" + }, + { + "id": "35025", + "name": "Leintz-Gatzaga", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.98684000", + "longitude": "-2.56851000" + }, + { + "id": "35026", + "name": "Leioa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.32686000", + "longitude": "-2.98884000" + }, + { + "id": "35028", + "name": "Lekeitio", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.36417000", + "longitude": "-2.50492000" + }, + { + "id": "35039", + "name": "Leza", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56552000", + "longitude": "-2.63324000" + }, + { + "id": "35041", + "name": "Lezama", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.02799000", + "longitude": "-2.97257000" + }, + { + "id": "35042", + "name": "Lezo", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.32142000", + "longitude": "-1.89739000" + }, + { + "id": "35059", + "name": "Lizartza", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.10236000", + "longitude": "-2.03489000" + }, + { + "id": "35361", + "name": "Mañaria", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.13819000", + "longitude": "-2.66104000" + }, + { + "id": "35294", + "name": "Markina-Xemein", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.26667000", + "longitude": "-2.50000000" + }, + { + "id": "35398", + "name": "Mendaro", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25326000", + "longitude": "-2.38568000" + }, + { + "id": "35400", + "name": "Mendexa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.34590000", + "longitude": "-2.48420000" + }, + { + "id": "35623", + "name": "Moreda Araba \/ Moreda de Álava", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52571000", + "longitude": "-2.40828000" + }, + { + "id": "35662", + "name": "Mundaka", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.40804000", + "longitude": "-2.69852000" + }, + { + "id": "35664", + "name": "Mungia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.35461000", + "longitude": "-2.84524000" + }, + { + "id": "35673", + "name": "Murgia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.95686000", + "longitude": "-2.81945000" + }, + { + "id": "35689", + "name": "Mutiloa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.02288000", + "longitude": "-2.27257000" + }, + { + "id": "35690", + "name": "Mutriku", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30643000", + "longitude": "-2.38517000" + }, + { + "id": "35770", + "name": "Navaridas", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54566000", + "longitude": "-2.62650000" + }, + { + "id": "35989", + "name": "Oñati", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.03262000", + "longitude": "-2.40997000" + }, + { + "id": "35866", + "name": "Oion \/ Oyón", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50571000", + "longitude": "-2.43638000" + }, + { + "id": "35872", + "name": "Olaberria", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.02726000", + "longitude": "-2.20349000" + }, + { + "id": "35924", + "name": "Ondarroa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.31667000", + "longitude": "-2.41667000" + }, + { + "id": "35941", + "name": "Ordizia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.05410000", + "longitude": "-2.17632000" + }, + { + "id": "35944", + "name": "Orendain", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.07896000", + "longitude": "-2.11201000" + }, + { + "id": "35946", + "name": "Orexa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.09382000", + "longitude": "-2.01119000" + }, + { + "id": "35949", + "name": "Oria", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25541000", + "longitude": "-2.01873000" + }, + { + "id": "35952", + "name": "Orio", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.27870000", + "longitude": "-2.12537000" + }, + { + "id": "35955", + "name": "Ormaiztegi", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.04339000", + "longitude": "-2.25673000" + }, + { + "id": "35964", + "name": "Ortuella", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.31113000", + "longitude": "-3.05617000" + }, + { + "id": "36073", + "name": "Pasaia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.32530000", + "longitude": "-1.92707000" + }, + { + "id": "36244", + "name": "Plentzia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.40530000", + "longitude": "-2.94794000" + }, + { + "id": "36300", + "name": "Portugalete", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.32099000", + "longitude": "-3.02064000" + }, + { + "id": "36789", + "name": "Samaniego", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56854000", + "longitude": "-2.67974000" + }, + { + "id": "37155", + "name": "Santurtzi", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.32842000", + "longitude": "-3.03248000" + }, + { + "id": "37156", + "name": "Santutxu", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25347000", + "longitude": "-2.91610000" + }, + { + "id": "37194", + "name": "Segura", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.00753000", + "longitude": "-2.25400000" + }, + { + "id": "37233", + "name": "Sestao", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30975000", + "longitude": "-3.00716000" + }, + { + "id": "37292", + "name": "Sondika", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30020000", + "longitude": "-2.92442000" + }, + { + "id": "37295", + "name": "Sopela", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.37891000", + "longitude": "-2.98313000" + }, + { + "id": "37297", + "name": "Sopuerta", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.26239000", + "longitude": "-3.15505000" + }, + { + "id": "37447", + "name": "Tolosa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.13484000", + "longitude": "-2.07801000" + }, + { + "id": "37692", + "name": "Urduña \/ Orduña", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.99435000", + "longitude": "-3.00974000" + }, + { + "id": "37693", + "name": "Urnieta", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.24727000", + "longitude": "-1.99084000" + }, + { + "id": "37706", + "name": "Usurbil", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.27164000", + "longitude": "-2.04912000" + }, + { + "id": "38018", + "name": "Villabona", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.18540000", + "longitude": "-2.05304000" + }, + { + "id": "38194", + "name": "Villanueva de Valdegovía", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.84777000", + "longitude": "-3.09883000" + }, + { + "id": "38460", + "name": "Zaldibar", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.16667000", + "longitude": "-2.53333000" + }, + { + "id": "38461", + "name": "Zalla", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.23333000", + "longitude": "-3.13333000" + }, + { + "id": "38464", + "name": "Zambrana", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66102000", + "longitude": "-2.87909000" + }, + { + "id": "38466", + "name": "Zamudio", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.28600000", + "longitude": "-2.87000000" + }, + { + "id": "38472", + "name": "Zaratamo", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21667000", + "longitude": "-2.86667000" + }, + { + "id": "38474", + "name": "Zarautz", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.28444000", + "longitude": "-2.16992000" + }, + { + "id": "38490", + "name": "Zeanuri", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.10000000", + "longitude": "-2.75000000" + }, + { + "id": "38491", + "name": "Zegama", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "42.97556000", + "longitude": "-2.29091000" + }, + { + "id": "38492", + "name": "Zestoa", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.23973000", + "longitude": "-2.25790000" + }, + { + "id": "38493", + "name": "Zierbena", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.35000000", + "longitude": "-3.08333000" + }, + { + "id": "38494", + "name": "Zizurkil", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.19917000", + "longitude": "-2.07420000" + }, + { + "id": "38508", + "name": "Zumaia", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.29469000", + "longitude": "-2.25341000" + }, + { + "id": "38509", + "name": "Zumarraga", + "state_id": 1191, + "state_code": "PV", + "country_id": 207, + "country_code": "ES", + "latitude": "43.08858000", + "longitude": "-2.31408000" + }, + { + "id": "31931", + "name": "Adeje", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.12271000", + "longitude": "-16.72600000" + }, + { + "id": "31944", + "name": "Agaete", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.10023000", + "longitude": "-15.69998000" + }, + { + "id": "31973", + "name": "Agüimes", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.90539000", + "longitude": "-15.44609000" + }, + { + "id": "31969", + "name": "Agulo", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.18778000", + "longitude": "-17.19678000" + }, + { + "id": "31993", + "name": "Alajeró", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.06205000", + "longitude": "-17.24073000" + }, + { + "id": "32393", + "name": "Antigua", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.42307000", + "longitude": "-14.01379000" + }, + { + "id": "32400", + "name": "Arafo", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.33971000", + "longitude": "-16.42244000" + }, + { + "id": "32497", + "name": "Arona", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.09962000", + "longitude": "-16.68102000" + }, + { + "id": "32504", + "name": "Arrecife", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.96302000", + "longitude": "-13.54769000" + }, + { + "id": "32523", + "name": "Artenara", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.02055000", + "longitude": "-15.64693000" + }, + { + "id": "32528", + "name": "Arucas", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.11983000", + "longitude": "-15.52325000" + }, + { + "id": "32666", + "name": "Barlovento", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.82708000", + "longitude": "-17.80377000" + }, + { + "id": "32980", + "name": "Breña Alta", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.65000000", + "longitude": "-17.78333000" + }, + { + "id": "32981", + "name": "Breña Baja", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.63011000", + "longitude": "-17.78953000" + }, + { + "id": "33005", + "name": "Buenavista del Norte", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.37458000", + "longitude": "-16.86098000" + }, + { + "id": "33226", + "name": "Candelaria", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.35480000", + "longitude": "-16.37268000" + }, + { + "id": "33328", + "name": "Carrizal", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.91161000", + "longitude": "-15.40558000" + }, + { + "id": "33802", + "name": "Corralejo", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.73079000", + "longitude": "-13.86749000" + }, + { + "id": "33818", + "name": "Costa Calma", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.16155000", + "longitude": "-14.22691000" + }, + { + "id": "33819", + "name": "Costa Teguise", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.99838000", + "longitude": "-13.49911000" + }, + { + "id": "33839", + "name": "Cruce de Arinaga", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.87656000", + "longitude": "-15.42798000" + }, + { + "id": "33994", + "name": "El Cotillo", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.68264000", + "longitude": "-14.00637000" + }, + { + "id": "34004", + "name": "El Paso", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.65007000", + "longitude": "-17.88274000" + }, + { + "id": "34167", + "name": "Fasnia", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.23638000", + "longitude": "-16.43886000" + }, + { + "id": "34190", + "name": "Firgas", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.10711000", + "longitude": "-15.56299000" + }, + { + "id": "34268", + "name": "Frontera", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.75404000", + "longitude": "-18.00367000" + }, + { + "id": "34276", + "name": "Fuencaliente de la Palma", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.49236000", + "longitude": "-17.84529000" + }, + { + "id": "34405", + "name": "Garachico", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.37365000", + "longitude": "-16.76342000" + }, + { + "id": "34406", + "name": "Garafía", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.81667000", + "longitude": "-17.93333000" + }, + { + "id": "34559", + "name": "Gáldar", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.14701000", + "longitude": "-15.65020000" + }, + { + "id": "34569", + "name": "Güimar", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.31122000", + "longitude": "-16.41276000" + }, + { + "id": "34498", + "name": "Granadilla de Abona", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.11882000", + "longitude": "-16.57599000" + }, + { + "id": "34557", + "name": "Guía de Isora", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.21154000", + "longitude": "-16.77947000" + }, + { + "id": "34541", + "name": "Guia", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.13974000", + "longitude": "-15.63294000" + }, + { + "id": "34573", + "name": "Haría", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "29.14553000", + "longitude": "-13.49986000" + }, + { + "id": "34586", + "name": "Hermigua", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.16766000", + "longitude": "-17.19051000" + }, + { + "id": "34732", + "name": "Icod de los Vinos", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.37241000", + "longitude": "-16.71188000" + }, + { + "id": "34754", + "name": "Ingenio", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.91855000", + "longitude": "-15.43433000" + }, + { + "id": "34880", + "name": "La Guancha", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.37320000", + "longitude": "-16.65158000" + }, + { + "id": "34887", + "name": "La Laguna", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.48530000", + "longitude": "-16.32014000" + }, + { + "id": "34894", + "name": "La Matanza de Acentejo", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.45242000", + "longitude": "-16.44720000" + }, + { + "id": "34897", + "name": "La Oliva", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.61052000", + "longitude": "-13.92912000" + }, + { + "id": "34898", + "name": "La Orotava", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.39076000", + "longitude": "-16.52309000" + }, + { + "id": "34934", + "name": "La Victoria de Acentejo", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.43231000", + "longitude": "-16.46232000" + }, + { + "id": "34988", + "name": "Las Palmas de Gran Canaria", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.09973000", + "longitude": "-15.41343000" + }, + { + "id": "34990", + "name": "Las Rosas", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.01539000", + "longitude": "-16.65373000" + }, + { + "id": "35105", + "name": "Lomo de Arico", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.16667000", + "longitude": "-16.48333000" + }, + { + "id": "35122", + "name": "Los Gigantes", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.24361000", + "longitude": "-16.84153000" + }, + { + "id": "35124", + "name": "Los Llanos de Aridane", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.65851000", + "longitude": "-17.91821000" + }, + { + "id": "35132", + "name": "Los Realejos", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.38487000", + "longitude": "-16.58275000" + }, + { + "id": "35135", + "name": "Los Silos", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.36610000", + "longitude": "-16.81552000" + }, + { + "id": "35324", + "name": "Maspalomas", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.76056000", + "longitude": "-15.58602000" + }, + { + "id": "35357", + "name": "Mazo", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.60906000", + "longitude": "-17.77801000" + }, + { + "id": "35702", + "name": "Mácher", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.94840000", + "longitude": "-13.69117000" + }, + { + "id": "35469", + "name": "Mogán", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.88385000", + "longitude": "-15.72538000" + }, + { + "id": "35647", + "name": "Moya", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.11106000", + "longitude": "-15.58285000" + }, + { + "id": "35794", + "name": "Nazaret", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "29.03818000", + "longitude": "-13.56386000" + }, + { + "id": "36480", + "name": "Pájara", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.35039000", + "longitude": "-14.10760000" + }, + { + "id": "36239", + "name": "Playa Blanca", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.86426000", + "longitude": "-13.82814000" + }, + { + "id": "36240", + "name": "Playa de las Américas", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.06403000", + "longitude": "-16.73012000" + }, + { + "id": "36241", + "name": "Playa del Ingles", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.75670000", + "longitude": "-15.57870000" + }, + { + "id": "36376", + "name": "Provincia de Las Palmas", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.42039000", + "longitude": "-14.01306000" + }, + { + "id": "36386", + "name": "Provincia de Santa Cruz de Tenerife", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.16667000", + "longitude": "-17.33333000" + }, + { + "id": "36454", + "name": "Puerto de la Cruz", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.41397000", + "longitude": "-16.54867000" + }, + { + "id": "36455", + "name": "Puerto del Carmen", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.92313000", + "longitude": "-13.66579000" + }, + { + "id": "36456", + "name": "Puerto del Rosario", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.50038000", + "longitude": "-13.86272000" + }, + { + "id": "36448", + "name": "Puerto Rico", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.78943000", + "longitude": "-15.71045000" + }, + { + "id": "36471", + "name": "Punta de Mujeres", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "29.14660000", + "longitude": "-13.44761000" + }, + { + "id": "36472", + "name": "Puntagorda", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.77490000", + "longitude": "-17.97741000" + }, + { + "id": "36473", + "name": "Puntallana", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.73333000", + "longitude": "-17.73333000" + }, + { + "id": "36553", + "name": "Realejo Alto", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.37645000", + "longitude": "-16.58575000" + }, + { + "id": "36806", + "name": "San Bartolomé", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "29.00093000", + "longitude": "-13.61300000" + }, + { + "id": "36809", + "name": "San Bartolomé de Tirajana", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.92481000", + "longitude": "-15.57329000" + }, + { + "id": "36839", + "name": "San Isidro", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.07617000", + "longitude": "-16.55800000" + }, + { + "id": "36848", + "name": "San Juan de la Rambla", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.39276000", + "longitude": "-16.65015000" + }, + { + "id": "36879", + "name": "San Miguel De Abona", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.09826000", + "longitude": "-16.61708000" + }, + { + "id": "36895", + "name": "San Nicolás", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.98910000", + "longitude": "-15.78126000" + }, + { + "id": "36920", + "name": "San Sebastián de la Gomera", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.09163000", + "longitude": "-17.11331000" + }, + { + "id": "37102", + "name": "Santa Úrsula", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.42613000", + "longitude": "-16.48876000" + }, + { + "id": "37007", + "name": "Santa Brígida", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.03197000", + "longitude": "-15.50425000" + }, + { + "id": "37038", + "name": "Santa Cruz de la Palma", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.68351000", + "longitude": "-17.76421000" + }, + { + "id": "37036", + "name": "Santa Cruz de Tenerife", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.46824000", + "longitude": "-16.25462000" + }, + { + "id": "37062", + "name": "Santa Lucía", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.91174000", + "longitude": "-15.54071000" + }, + { + "id": "37119", + "name": "Santiago del Teide", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.29400000", + "longitude": "-16.81618000" + }, + { + "id": "37180", + "name": "Sauzal", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.46667000", + "longitude": "-16.41667000" + }, + { + "id": "37347", + "name": "Tacoronte", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.47688000", + "longitude": "-16.41016000" + }, + { + "id": "37368", + "name": "Tanque", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.36667000", + "longitude": "-16.83333000" + }, + { + "id": "37389", + "name": "Tazacorte", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.64186000", + "longitude": "-17.93394000" + }, + { + "id": "37666", + "name": "Tías", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.96108000", + "longitude": "-13.64502000" + }, + { + "id": "37391", + "name": "Tegueste", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.51667000", + "longitude": "-16.31667000" + }, + { + "id": "37392", + "name": "Teguise", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "29.06049000", + "longitude": "-13.56397000" + }, + { + "id": "37397", + "name": "Tejeda", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.99508000", + "longitude": "-15.61543000" + }, + { + "id": "37400", + "name": "Telde", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.99243000", + "longitude": "-15.41915000" + }, + { + "id": "37405", + "name": "Teror", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.06062000", + "longitude": "-15.54909000" + }, + { + "id": "37425", + "name": "Tijarafe", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.70000000", + "longitude": "-17.95000000" + }, + { + "id": "37427", + "name": "Tinajo", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "29.06326000", + "longitude": "-13.67647000" + }, + { + "id": "37652", + "name": "Tuineje", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.32372000", + "longitude": "-14.04722000" + }, + { + "id": "37850", + "name": "Vallehermosa", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.17944000", + "longitude": "-17.26664000" + }, + { + "id": "37857", + "name": "Valleseco", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.04330000", + "longitude": "-15.57623000" + }, + { + "id": "37875", + "name": "Valsequillo de Gran Canaria", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.98562000", + "longitude": "-15.49725000" + }, + { + "id": "37881", + "name": "Valverde", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.80628000", + "longitude": "-17.91578000" + }, + { + "id": "37900", + "name": "Vecindario", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "27.84636000", + "longitude": "-15.44455000" + }, + { + "id": "37907", + "name": "Vega de San Mateo", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.00892000", + "longitude": "-15.53330000" + }, + { + "id": "37982", + "name": "Vilaflor", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.15623000", + "longitude": "-16.63592000" + }, + { + "id": "38425", + "name": "Yaiza", + "state_id": 1185, + "state_code": "CN", + "country_id": 207, + "country_code": "ES", + "latitude": "28.95678000", + "longitude": "-13.76535000" + }, + { + "id": "32360", + "name": "Ampuero", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.34268000", + "longitude": "-3.41667000" + }, + { + "id": "32445", + "name": "Arenas de Iguña", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.18293000", + "longitude": "-4.04729000" + }, + { + "id": "32472", + "name": "Argoños", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.45740000", + "longitude": "-3.49013000" + }, + { + "id": "32495", + "name": "Arnuero", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.47756000", + "longitude": "-3.56959000" + }, + { + "id": "32505", + "name": "Arredondo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.27325000", + "longitude": "-3.60031000" + }, + { + "id": "32661", + "name": "Bareyo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.46686000", + "longitude": "-3.60083000" + }, + { + "id": "33053", + "name": "Bárcena de Cicero", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.42160000", + "longitude": "-3.51030000" + }, + { + "id": "33054", + "name": "Bárcena de Pie de Concha", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.12580000", + "longitude": "-4.05662000" + }, + { + "id": "33094", + "name": "Cabezón de la Sal", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30824000", + "longitude": "-4.23571000" + }, + { + "id": "33092", + "name": "Cabezón de Liébana", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.13437000", + "longitude": "-4.57630000" + }, + { + "id": "33167", + "name": "Camargo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.40744000", + "longitude": "-3.88498000" + }, + { + "id": "33340", + "name": "Cartes", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.32596000", + "longitude": "-4.06893000" + }, + { + "id": "33492", + "name": "Castro-Urdiales", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.38285000", + "longitude": "-3.22043000" + }, + { + "id": "33728", + "name": "Colindres", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.39667000", + "longitude": "-3.45361000" + }, + { + "id": "33753", + "name": "Comillas", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.38603000", + "longitude": "-4.29162000" + }, + { + "id": "33978", + "name": "El Astillero", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.40094000", + "longitude": "-3.82051000" + }, + { + "id": "34076", + "name": "Escalante", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.43678000", + "longitude": "-3.51347000" + }, + { + "id": "34575", + "name": "Hazas de Cesto", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.39653000", + "longitude": "-3.58916000" + }, + { + "id": "34976", + "name": "Laredo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.40980000", + "longitude": "-3.41613000" + }, + { + "id": "35051", + "name": "Limpias", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.36402000", + "longitude": "-3.41778000" + }, + { + "id": "35120", + "name": "Los Corrales de Buelna", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.26358000", + "longitude": "-4.07262000" + }, + { + "id": "35172", + "name": "Luzmela", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.29685000", + "longitude": "-4.20884000" + }, + { + "id": "35337", + "name": "Mataporquera", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "42.87486000", + "longitude": "-4.16276000" + }, + { + "id": "35421", + "name": "Miengo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.42861000", + "longitude": "-3.99866000" + }, + { + "id": "35485", + "name": "Molledo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.14974000", + "longitude": "-4.04239000" + }, + { + "id": "35820", + "name": "Noja", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.48917000", + "longitude": "-3.52306000" + }, + { + "id": "36127", + "name": "Penagos", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.35216000", + "longitude": "-3.81382000" + }, + { + "id": "36155", + "name": "Pesquera", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.08223000", + "longitude": "-4.07932000" + }, + { + "id": "36257", + "name": "Polanco", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.38524000", + "longitude": "-4.01642000" + }, + { + "id": "36304", + "name": "Potes", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.15457000", + "longitude": "-4.62055000" + }, + { + "id": "36365", + "name": "Provincia de Cantabria", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.16667000", + "longitude": "-4.00000000" + }, + { + "id": "36434", + "name": "Puente Viesgo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.29815000", + "longitude": "-3.96817000" + }, + { + "id": "36544", + "name": "Ramales de la Victoria", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25720000", + "longitude": "-3.46516000" + }, + { + "id": "36548", + "name": "Rasines", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30505000", + "longitude": "-3.42919000" + }, + { + "id": "36568", + "name": "Reinosa", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "42.99959000", + "longitude": "-4.13801000" + }, + { + "id": "36580", + "name": "Reocín", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.33915000", + "longitude": "-4.09403000" + }, + { + "id": "36699", + "name": "Ruente", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25826000", + "longitude": "-4.26791000" + }, + { + "id": "36864", + "name": "San Martín de Elines", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "42.82864000", + "longitude": "-3.86865000" + }, + { + "id": "36880", + "name": "San Miguel de Aguayo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.05383000", + "longitude": "-4.02550000" + }, + { + "id": "36882", + "name": "San Miguel de Meruelo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.46211000", + "longitude": "-3.58877000" + }, + { + "id": "36911", + "name": "San Pedro del Romeral", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.11514000", + "longitude": "-3.81860000" + }, + { + "id": "36928", + "name": "San Vicente de la Barquera", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.38509000", + "longitude": "-4.39934000" + }, + { + "id": "37027", + "name": "Santa Cruz de Bezana", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.44370000", + "longitude": "-3.90324000" + }, + { + "id": "37074", + "name": "Santa María de Cayón", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30849000", + "longitude": "-3.83680000" + }, + { + "id": "37106", + "name": "Santander", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.46472000", + "longitude": "-3.80444000" + }, + { + "id": "37130", + "name": "Santillana", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.38903000", + "longitude": "-4.10844000" + }, + { + "id": "37134", + "name": "Santiurde de Reinosa", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.06144000", + "longitude": "-4.08351000" + }, + { + "id": "37135", + "name": "Santiurde de Toranzo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.23819000", + "longitude": "-3.93947000" + }, + { + "id": "37150", + "name": "Santoña", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.44386000", + "longitude": "-3.45757000" + }, + { + "id": "37164", + "name": "Saro", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25961000", + "longitude": "-3.84283000" + }, + { + "id": "37202", + "name": "Selaya", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21376000", + "longitude": "-3.80563000" + }, + { + "id": "37286", + "name": "Solórzano", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.38233000", + "longitude": "-3.58785000" + }, + { + "id": "37327", + "name": "Suances", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.43341000", + "longitude": "-4.04338000" + }, + { + "id": "37546", + "name": "Torrelavega", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.34943000", + "longitude": "-4.04785000" + }, + { + "id": "37905", + "name": "Vega de Pas", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.15692000", + "longitude": "-3.78316000" + }, + { + "id": "38025", + "name": "Villacarriedo", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.22851000", + "longitude": "-3.81057000" + }, + { + "id": "38045", + "name": "Villaescusa", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "42.96262000", + "longitude": "-4.16706000" + }, + { + "id": "38068", + "name": "Villafufre", + "state_id": 1170, + "state_code": "S", + "country_id": 207, + "country_code": "ES", + "latitude": "43.26557000", + "longitude": "-3.89370000" + }, + { + "id": "32598", + "name": "Añover de Tajo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98873000", + "longitude": "-3.76579000" + }, + { + "id": "31921", + "name": "Abánades", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89261000", + "longitude": "-2.48526000" + }, + { + "id": "31909", + "name": "Abenójar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.88032000", + "longitude": "-4.35702000" + }, + { + "id": "31908", + "name": "Abengibre", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.21667000", + "longitude": "-1.53333000" + }, + { + "id": "31916", + "name": "Ablanque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89818000", + "longitude": "-2.22523000" + }, + { + "id": "31934", + "name": "Adobes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67584000", + "longitude": "-1.67916000" + }, + { + "id": "31956", + "name": "Agudo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98183000", + "longitude": "-4.87133000" + }, + { + "id": "31987", + "name": "Ajofrín", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71088000", + "longitude": "-3.98220000" + }, + { + "id": "31997", + "name": "Alamillo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.67842000", + "longitude": "-4.79008000" + }, + { + "id": "31998", + "name": "Alaminos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86303000", + "longitude": "-2.72573000" + }, + { + "id": "32005", + "name": "Alarcón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.55000000", + "longitude": "-2.08333000" + }, + { + "id": "32006", + "name": "Alarilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84711000", + "longitude": "-3.10310000" + }, + { + "id": "32008", + "name": "Alatoz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.09495000", + "longitude": "-1.36098000" + }, + { + "id": "32013", + "name": "Albacete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.99424000", + "longitude": "-1.85643000" + }, + { + "id": "32017", + "name": "Albaladejo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61887000", + "longitude": "-2.80784000" + }, + { + "id": "32018", + "name": "Albaladejo del Cuende", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.80684000", + "longitude": "-2.22903000" + }, + { + "id": "32024", + "name": "Albalate de las Nogueras", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36614000", + "longitude": "-2.27718000" + }, + { + "id": "32023", + "name": "Albalate de Zorita", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30812000", + "longitude": "-2.84267000" + }, + { + "id": "32028", + "name": "Albares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30690000", + "longitude": "-3.00897000" + }, + { + "id": "32030", + "name": "Albarreal de Tajo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89698000", + "longitude": "-4.22895000" + }, + { + "id": "32031", + "name": "Albatana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.57057000", + "longitude": "-1.52210000" + }, + { + "id": "32035", + "name": "Albendea", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48751000", + "longitude": "-2.41747000" + }, + { + "id": "32036", + "name": "Albendiego", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22742000", + "longitude": "-3.05171000" + }, + { + "id": "32053", + "name": "Alborea", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28333000", + "longitude": "-1.38333000" + }, + { + "id": "32095", + "name": "Alcañizo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90315000", + "longitude": "-5.10588000" + }, + { + "id": "32064", + "name": "Alcabón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00224000", + "longitude": "-4.36852000" + }, + { + "id": "32065", + "name": "Alcadozo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.64916000", + "longitude": "-1.97998000" + }, + { + "id": "32075", + "name": "Alcalá de la Vega", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.03333000", + "longitude": "-1.51667000" + }, + { + "id": "32077", + "name": "Alcalá del Júcar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.19313000", + "longitude": "-1.43017000" + }, + { + "id": "32085", + "name": "Alcantud", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54818000", + "longitude": "-2.33258000" + }, + { + "id": "32088", + "name": "Alcaraz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.66680000", + "longitude": "-2.49105000" + }, + { + "id": "32136", + "name": "Alcázar de San Juan", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.39011000", + "longitude": "-3.20827000" + }, + { + "id": "32137", + "name": "Alcázar del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06289000", + "longitude": "-2.80782000" + }, + { + "id": "32096", + "name": "Alcoba", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.25988000", + "longitude": "-4.47715000" + }, + { + "id": "32098", + "name": "Alcocer", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46972000", + "longitude": "-2.60940000" + }, + { + "id": "32102", + "name": "Alcohujate", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41763000", + "longitude": "-2.61490000" + }, + { + "id": "32104", + "name": "Alcolea de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98680000", + "longitude": "-4.11597000" + }, + { + "id": "32107", + "name": "Alcolea de las Peñas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20960000", + "longitude": "-2.78483000" + }, + { + "id": "32106", + "name": "Alcolea de Tajo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.80966000", + "longitude": "-5.14738000" + }, + { + "id": "32108", + "name": "Alcolea del Pinar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03569000", + "longitude": "-2.46645000" + }, + { + "id": "32117", + "name": "Alconchel de la Estrella", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71963000", + "longitude": "-2.57366000" + }, + { + "id": "32121", + "name": "Alcoroches", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62669000", + "longitude": "-1.74629000" + }, + { + "id": "32128", + "name": "Alcubillas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.75312000", + "longitude": "-3.13407000" + }, + { + "id": "32146", + "name": "Aldea del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.73830000", + "longitude": "-3.84017000" + }, + { + "id": "32157", + "name": "Aldeanueva de Barbarroya", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75934000", + "longitude": "-5.02287000" + }, + { + "id": "32160", + "name": "Aldeanueva de Guadalajara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67988000", + "longitude": "-3.04438000" + }, + { + "id": "32161", + "name": "Aldeanueva de San Bartolomé", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.63608000", + "longitude": "-5.11307000" + }, + { + "id": "32211", + "name": "Algar de Mesa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13494000", + "longitude": "-1.95964000" + }, + { + "id": "32213", + "name": "Algarra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00000000", + "longitude": "-1.43333000" + }, + { + "id": "32225", + "name": "Algora", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96324000", + "longitude": "-2.66688000" + }, + { + "id": "32237", + "name": "Alhambra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.89925000", + "longitude": "-3.05333000" + }, + { + "id": "32241", + "name": "Alhóndiga", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.52669000", + "longitude": "-2.82438000" + }, + { + "id": "32243", + "name": "Aliaguilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.74143000", + "longitude": "-1.32567000" + }, + { + "id": "32247", + "name": "Alique", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58671000", + "longitude": "-2.64441000" + }, + { + "id": "32261", + "name": "Almadén", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.77541000", + "longitude": "-4.83156000" + }, + { + "id": "32260", + "name": "Almadrones", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90096000", + "longitude": "-2.77406000" + }, + { + "id": "32263", + "name": "Almagro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.88941000", + "longitude": "-3.71131000" + }, + { + "id": "32266", + "name": "Almansa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.86917000", + "longitude": "-1.09713000" + }, + { + "id": "32276", + "name": "Almedina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.62453000", + "longitude": "-2.95382000" + }, + { + "id": "32287", + "name": "Almendral de la Cañada", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18456000", + "longitude": "-4.74173000" + }, + { + "id": "32293", + "name": "Almodóvar del Campo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.70936000", + "longitude": "-4.17908000" + }, + { + "id": "32294", + "name": "Almodóvar del Pinar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71667000", + "longitude": "-1.88333000" + }, + { + "id": "32296", + "name": "Almoguera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29713000", + "longitude": "-2.98240000" + }, + { + "id": "32301", + "name": "Almonacid de Zorita", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32932000", + "longitude": "-2.85040000" + }, + { + "id": "32304", + "name": "Almonacid del Marquesado", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.82344000", + "longitude": "-2.76770000" + }, + { + "id": "32307", + "name": "Almorox", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23423000", + "longitude": "-4.39044000" + }, + { + "id": "32318", + "name": "Alocén", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57455000", + "longitude": "-2.74993000" + }, + { + "id": "32322", + "name": "Alovera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59368000", + "longitude": "-3.24529000" + }, + { + "id": "32329", + "name": "Alpera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95866000", + "longitude": "-1.23052000" + }, + { + "id": "32339", + "name": "Altarejos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91258000", + "longitude": "-2.35692000" + }, + { + "id": "32343", + "name": "Alustante", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61442000", + "longitude": "-1.65910000" + }, + { + "id": "32369", + "name": "Anchuras", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.48059000", + "longitude": "-4.83381000" + }, + { + "id": "32382", + "name": "Anguita", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02659000", + "longitude": "-2.36849000" + }, + { + "id": "32387", + "name": "Anquela del Ducado", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97084000", + "longitude": "-2.13066000" + }, + { + "id": "32388", + "name": "Anquela del Pedregal", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74336000", + "longitude": "-1.73697000" + }, + { + "id": "32410", + "name": "Arandilla del Arroyo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51056000", + "longitude": "-2.38355000" + }, + { + "id": "32414", + "name": "Aranzueque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49094000", + "longitude": "-3.07448000" + }, + { + "id": "32421", + "name": "Arbancón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96434000", + "longitude": "-3.11505000" + }, + { + "id": "32423", + "name": "Arbeteta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66999000", + "longitude": "-2.40236000" + }, + { + "id": "32432", + "name": "Arcicóllar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05517000", + "longitude": "-4.11638000" + }, + { + "id": "32439", + "name": "Arcos de la Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34664000", + "longitude": "-2.11310000" + }, + { + "id": "32446", + "name": "Arenas de San Juan", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.21861000", + "longitude": "-3.50211000" + }, + { + "id": "32460", + "name": "Argamasilla de Alba", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.12917000", + "longitude": "-3.09247000" + }, + { + "id": "32461", + "name": "Argamasilla de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72985000", + "longitude": "-4.07627000" + }, + { + "id": "32467", + "name": "Argecilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88151000", + "longitude": "-2.82181000" + }, + { + "id": "32475", + "name": "Arguisuelas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.83333000", + "longitude": "-1.81667000" + }, + { + "id": "32485", + "name": "Armallones", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.73580000", + "longitude": "-2.30257000" + }, + { + "id": "32492", + "name": "Armuña de Tajuña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.52884000", + "longitude": "-3.02819000" + }, + { + "id": "32501", + "name": "Arrancacepas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30320000", + "longitude": "-2.35899000" + }, + { + "id": "32511", + "name": "Arroyo de las Fraguas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10246000", + "longitude": "-3.13005000" + }, + { + "id": "32545", + "name": "Atalaya del Cañavate", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.51864000", + "longitude": "-2.25175000" + }, + { + "id": "32547", + "name": "Atanzón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66697000", + "longitude": "-2.99686000" + }, + { + "id": "32555", + "name": "Atienza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19722000", + "longitude": "-2.87129000" + }, + { + "id": "32563", + "name": "Auñón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51752000", + "longitude": "-2.79250000" + }, + { + "id": "32575", + "name": "Ayna", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.55000000", + "longitude": "-2.08333000" + }, + { + "id": "32591", + "name": "Azuqueca de Henares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56566000", + "longitude": "-3.26753000" + }, + { + "id": "32592", + "name": "Azután", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78564000", + "longitude": "-5.12730000" + }, + { + "id": "32707", + "name": "Baños de Tajo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71667000", + "longitude": "-1.96667000" + }, + { + "id": "32710", + "name": "Bañuelos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28601000", + "longitude": "-2.91477000" + }, + { + "id": "32613", + "name": "Baides", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00685000", + "longitude": "-2.77620000" + }, + { + "id": "32620", + "name": "Balazote", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.88444000", + "longitude": "-2.15180000" + }, + { + "id": "32624", + "name": "Ballesteros de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.83460000", + "longitude": "-3.94470000" + }, + { + "id": "32627", + "name": "Balsa de Ves", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.26667000", + "longitude": "-1.20000000" + }, + { + "id": "32637", + "name": "Barajas de Melo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12340000", + "longitude": "-2.91675000" + }, + { + "id": "32655", + "name": "Barchín del Hoyo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.66667000", + "longitude": "-2.06667000" + }, + { + "id": "32658", + "name": "Barcience", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98367000", + "longitude": "-4.23437000" + }, + { + "id": "32662", + "name": "Bargas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.94113000", + "longitude": "-4.01979000" + }, + { + "id": "32671", + "name": "Barrax", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.04607000", + "longitude": "-2.20152000" + }, + { + "id": "32678", + "name": "Barriopedro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79026000", + "longitude": "-2.75246000" + }, + { + "id": "32691", + "name": "Bascuñana de San Pedro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.21322000", + "longitude": "-2.22812000" + }, + { + "id": "32715", + "name": "Beamud", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18645000", + "longitude": "-1.82880000" + }, + { + "id": "32739", + "name": "Belinchón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.04603000", + "longitude": "-3.05517000" + }, + { + "id": "32748", + "name": "Belmonte", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.55746000", + "longitude": "-2.70461000" + }, + { + "id": "32751", + "name": "Belmontejo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.82212000", + "longitude": "-2.34467000" + }, + { + "id": "32755", + "name": "Belvis de la Jara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75768000", + "longitude": "-4.94932000" + }, + { + "id": "32862", + "name": "Berninches", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57106000", + "longitude": "-2.80121000" + }, + { + "id": "32881", + "name": "Beteta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57191000", + "longitude": "-2.07588000" + }, + { + "id": "32889", + "name": "Bienservida", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.51716000", + "longitude": "-2.61087000" + }, + { + "id": "32930", + "name": "Bogarra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.58139000", + "longitude": "-2.21290000" + }, + { + "id": "32935", + "name": "Bolaños de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.90690000", + "longitude": "-3.66345000" + }, + { + "id": "32946", + "name": "Bonete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.87136000", + "longitude": "-1.34851000" + }, + { + "id": "32947", + "name": "Boniches", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98333000", + "longitude": "-1.61667000" + }, + { + "id": "32959", + "name": "Borox", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06795000", + "longitude": "-3.73804000" + }, + { + "id": "32971", + "name": "Brazatortas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.65869000", + "longitude": "-4.29368000" + }, + { + "id": "32984", + "name": "Brihuega", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76049000", + "longitude": "-2.86966000" + }, + { + "id": "32998", + "name": "Buciegas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33622000", + "longitude": "-2.46250000" + }, + { + "id": "32999", + "name": "Budia", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62734000", + "longitude": "-2.75846000" + }, + { + "id": "33000", + "name": "Buenache de Alarcón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65000000", + "longitude": "-2.16667000" + }, + { + "id": "33002", + "name": "Buenaventura", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.17705000", + "longitude": "-4.85003000" + }, + { + "id": "33006", + "name": "Buendía", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36643000", + "longitude": "-2.75645000" + }, + { + "id": "33015", + "name": "Bujalaro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93687000", + "longitude": "-2.88333000" + }, + { + "id": "33028", + "name": "Burguillos de Toledo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.79635000", + "longitude": "-3.99254000" + }, + { + "id": "33033", + "name": "Burujón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90113000", + "longitude": "-4.29730000" + }, + { + "id": "33037", + "name": "Bustares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13333000", + "longitude": "-3.06667000" + }, + { + "id": "33529", + "name": "Cañada de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.85429000", + "longitude": "-4.02103000" + }, + { + "id": "33530", + "name": "Cañada del Hoyo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96667000", + "longitude": "-1.90000000" + }, + { + "id": "33532", + "name": "Cañamares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45203000", + "longitude": "-2.23983000" + }, + { + "id": "33537", + "name": "Cañaveras", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35994000", + "longitude": "-2.39611000" + }, + { + "id": "33538", + "name": "Cañaveruelas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40024000", + "longitude": "-2.63719000" + }, + { + "id": "33539", + "name": "Cañete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05000000", + "longitude": "-1.65000000" + }, + { + "id": "33543", + "name": "Cañizar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76763000", + "longitude": "-3.06399000" + }, + { + "id": "33545", + "name": "Cañizares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51870000", + "longitude": "-2.19201000" + }, + { + "id": "33074", + "name": "Cabañas de la Sagra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00610000", + "longitude": "-3.94560000" + }, + { + "id": "33073", + "name": "Cabañas de Yepes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89051000", + "longitude": "-3.53502000" + }, + { + "id": "33069", + "name": "Cabanillas del Campo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63376000", + "longitude": "-3.22937000" + }, + { + "id": "33082", + "name": "Cabezamesada", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81630000", + "longitude": "-3.10236000" + }, + { + "id": "33083", + "name": "Cabezarados", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84469000", + "longitude": "-4.29830000" + }, + { + "id": "33141", + "name": "Calera y Chozas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88278000", + "longitude": "-4.98213000" + }, + { + "id": "33143", + "name": "Caleruela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.87483000", + "longitude": "-5.25693000" + }, + { + "id": "33164", + "name": "Camarena", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.09311000", + "longitude": "-4.11927000" + }, + { + "id": "33166", + "name": "Camarenilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01672000", + "longitude": "-4.07624000" + }, + { + "id": "33186", + "name": "Campillo de Altobuey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60000000", + "longitude": "-1.80000000" + }, + { + "id": "33192", + "name": "Campillo de Dueñas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88376000", + "longitude": "-1.68505000" + }, + { + "id": "33194", + "name": "Campillo de Ranas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08601000", + "longitude": "-3.31431000" + }, + { + "id": "33196", + "name": "Campillos-Paravientos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98333000", + "longitude": "-1.55000000" + }, + { + "id": "33197", + "name": "Campillos-Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10000000", + "longitude": "-1.70000000" + }, + { + "id": "33199", + "name": "Campisábalos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26667000", + "longitude": "-3.13333000" + }, + { + "id": "33202", + "name": "Campo de Criptana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.40463000", + "longitude": "-3.12492000" + }, + { + "id": "33214", + "name": "Camuñas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.42704000", + "longitude": "-3.45503000" + }, + { + "id": "33221", + "name": "Canalejas del Arroyo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36850000", + "longitude": "-2.49408000" + }, + { + "id": "33247", + "name": "Canredondo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81257000", + "longitude": "-2.49377000" + }, + { + "id": "33253", + "name": "Cantalojas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23472000", + "longitude": "-3.24629000" + }, + { + "id": "33286", + "name": "Carboneras de Guadazaón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88333000", + "longitude": "-1.80000000" + }, + { + "id": "33295", + "name": "Carcelén", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.10202000", + "longitude": "-1.30879000" + }, + { + "id": "33297", + "name": "Cardenete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76667000", + "longitude": "-1.68333000" + }, + { + "id": "33303", + "name": "Cardiel de los Montes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06348000", + "longitude": "-4.65488000" + }, + { + "id": "33309", + "name": "Carmena", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.95562000", + "longitude": "-4.40149000" + }, + { + "id": "33317", + "name": "Carranque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.16976000", + "longitude": "-3.90092000" + }, + { + "id": "33321", + "name": "Carrascosa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59092000", + "longitude": "-2.16305000" + }, + { + "id": "33323", + "name": "Carrascosa de Haro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.59757000", + "longitude": "-2.54182000" + }, + { + "id": "33331", + "name": "Carrión de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.01897000", + "longitude": "-3.81683000" + }, + { + "id": "33327", + "name": "Carriches", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96417000", + "longitude": "-4.45864000" + }, + { + "id": "33330", + "name": "Carrizosa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84204000", + "longitude": "-2.99250000" + }, + { + "id": "33342", + "name": "Casa de Uceda", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84115000", + "longitude": "-3.36849000" + }, + { + "id": "33353", + "name": "Casarrubios del Monte", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18697000", + "longitude": "-4.03644000" + }, + { + "id": "33358", + "name": "Casas de Benítez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36667000", + "longitude": "-2.13333000" + }, + { + "id": "33362", + "name": "Casas de Fernando Alonso", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.35065000", + "longitude": "-2.32402000" + }, + { + "id": "33363", + "name": "Casas de Garcimolina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00000000", + "longitude": "-1.41667000" + }, + { + "id": "33364", + "name": "Casas de Guijarro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.35000000", + "longitude": "-2.16667000" + }, + { + "id": "33365", + "name": "Casas de Haro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33355000", + "longitude": "-2.27273000" + }, + { + "id": "33366", + "name": "Casas de Juan Núñez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.10190000", + "longitude": "-1.55821000" + }, + { + "id": "33367", + "name": "Casas de Lázaro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.77056000", + "longitude": "-2.24044000" + }, + { + "id": "33373", + "name": "Casas de los Pinos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33375000", + "longitude": "-2.36984000" + }, + { + "id": "33371", + "name": "Casas de San Galindo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87234000", + "longitude": "-2.95750000" + }, + { + "id": "33372", + "name": "Casas de Ves", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.25000000", + "longitude": "-1.33333000" + }, + { + "id": "33357", + "name": "Casas Ibáñez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28333000", + "longitude": "-1.46667000" + }, + { + "id": "33376", + "name": "Casasbuenas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76117000", + "longitude": "-4.12558000" + }, + { + "id": "33379", + "name": "Casasimarro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36667000", + "longitude": "-2.03333000" + }, + { + "id": "33394", + "name": "Caspueñas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69497000", + "longitude": "-2.97941000" + }, + { + "id": "33401", + "name": "Castejón de Henares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93762000", + "longitude": "-2.78665000" + }, + { + "id": "33421", + "name": "Castellar de la Muela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81902000", + "longitude": "-1.75932000" + }, + { + "id": "33418", + "name": "Castellar de Santiago", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.53928000", + "longitude": "-3.27573000" + }, + { + "id": "33450", + "name": "Castilforte", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55735000", + "longitude": "-2.43226000" + }, + { + "id": "33457", + "name": "Castillejo de Iniesta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53333000", + "longitude": "-1.76667000" + }, + { + "id": "33461", + "name": "Castillejo-Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.37477000", + "longitude": "-2.14040000" + }, + { + "id": "33462", + "name": "Castillo de Bayuela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10032000", + "longitude": "-4.68562000" + }, + { + "id": "33463", + "name": "Castillo de Garcimuñoz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65928000", + "longitude": "-2.38030000" + }, + { + "id": "33466", + "name": "Castillo-Albaráñez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29869000", + "longitude": "-2.39277000" + }, + { + "id": "33469", + "name": "Castilnuevo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81431000", + "longitude": "-1.85782000" + }, + { + "id": "33518", + "name": "Caudete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.70679000", + "longitude": "-0.98723000" + }, + { + "id": "33521", + "name": "Cazalegas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00958000", + "longitude": "-4.67606000" + }, + { + "id": "33905", + "name": "Cózar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.66219000", + "longitude": "-3.07205000" + }, + { + "id": "33549", + "name": "Cebolla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.94897000", + "longitude": "-4.57175000" + }, + { + "id": "33557", + "name": "Cedillo del Condado", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11260000", + "longitude": "-3.92127000" + }, + { + "id": "33567", + "name": "Cendejas de la Torre", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97916000", + "longitude": "-2.85053000" + }, + { + "id": "33571", + "name": "Cenizate", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.30000000", + "longitude": "-1.65000000" + }, + { + "id": "33574", + "name": "Centenera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.65064000", + "longitude": "-3.05120000" + }, + { + "id": "33599", + "name": "Cervera de los Montes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05182000", + "longitude": "-4.81072000" + }, + { + "id": "33600", + "name": "Cervera del Llano", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78312000", + "longitude": "-2.42019000" + }, + { + "id": "33621", + "name": "Checa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58614000", + "longitude": "-1.79056000" + }, + { + "id": "33625", + "name": "Chequilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60600000", + "longitude": "-1.82787000" + }, + { + "id": "33633", + "name": "Chillarón de Cuenca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10539000", + "longitude": "-2.22181000" + }, + { + "id": "33634", + "name": "Chillarón del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59818000", + "longitude": "-2.69126000" + }, + { + "id": "33636", + "name": "Chiloeches", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57038000", + "longitude": "-3.16003000" + }, + { + "id": "33639", + "name": "Chinchilla de Monte Aragón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.92088000", + "longitude": "-1.72018000" + }, + { + "id": "33647", + "name": "Chozas de Canales", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10014000", + "longitude": "-4.04333000" + }, + { + "id": "33649", + "name": "Chueca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73191000", + "longitude": "-3.94365000" + }, + { + "id": "33651", + "name": "Chumillas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76667000", + "longitude": "-2.03333000" + }, + { + "id": "33660", + "name": "Cifuentes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78622000", + "longitude": "-2.62245000" + }, + { + "id": "33677", + "name": "Cincovillas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20501000", + "longitude": "-2.81834000" + }, + { + "id": "33685", + "name": "Ciruelas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75021000", + "longitude": "-3.08580000" + }, + { + "id": "33686", + "name": "Ciruelos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.93881000", + "longitude": "-3.61383000" + }, + { + "id": "33697", + "name": "Ciudad Real", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98626000", + "longitude": "-3.92907000" + }, + { + "id": "33707", + "name": "Cobeja", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.02076000", + "longitude": "-3.85599000" + }, + { + "id": "33708", + "name": "Cobeta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86560000", + "longitude": "-2.14211000" + }, + { + "id": "33710", + "name": "Cobisa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.80425000", + "longitude": "-4.02528000" + }, + { + "id": "33721", + "name": "Cogollor", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84818000", + "longitude": "-2.74425000" + }, + { + "id": "33724", + "name": "Cogolludo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94691000", + "longitude": "-3.08930000" + }, + { + "id": "33754", + "name": "Condemios de Abajo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21667000", + "longitude": "-3.10000000" + }, + { + "id": "33755", + "name": "Condemios de Arriba", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21644000", + "longitude": "-3.12543000" + }, + { + "id": "33760", + "name": "Congostrina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03719000", + "longitude": "-2.98569000" + }, + { + "id": "33768", + "name": "Consuegra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46246000", + "longitude": "-3.60800000" + }, + { + "id": "33772", + "name": "Copernal", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86463000", + "longitude": "-3.05396000" + }, + { + "id": "33784", + "name": "Corduente", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84304000", + "longitude": "-1.97841000" + }, + { + "id": "33798", + "name": "Corral de Almaguer", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75987000", + "longitude": "-3.16452000" + }, + { + "id": "33800", + "name": "Corral de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.85793000", + "longitude": "-4.08140000" + }, + { + "id": "33801", + "name": "Corral-Rubio", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.83462000", + "longitude": "-1.46034000" + }, + { + "id": "33825", + "name": "Cotillas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.43115000", + "longitude": "-2.50550000" + }, + { + "id": "33864", + "name": "Cuenca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06667000", + "longitude": "-2.13333000" + }, + { + "id": "33866", + "name": "Cuerva", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.66374000", + "longitude": "-4.21085000" + }, + { + "id": "33868", + "name": "Cueva del Hierro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58258000", + "longitude": "-2.03612000" + }, + { + "id": "33909", + "name": "Daimiel", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.07004000", + "longitude": "-3.61498000" + }, + { + "id": "33939", + "name": "Domingo Pérez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.97661000", + "longitude": "-4.50554000" + }, + { + "id": "33951", + "name": "Dosbarrios", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88199000", + "longitude": "-3.48419000" + }, + { + "id": "33958", + "name": "Driebes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.24498000", + "longitude": "-3.04165000" + }, + { + "id": "33964", + "name": "Durón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62530000", + "longitude": "-2.72662000" + }, + { + "id": "33980", + "name": "El Bonillo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95048000", + "longitude": "-2.54048000" + }, + { + "id": "33987", + "name": "El Carpio de Tajo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88796000", + "longitude": "-4.45388000" + }, + { + "id": "33989", + "name": "El Casar de Escalona", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.04640000", + "longitude": "-4.52507000" + }, + { + "id": "34005", + "name": "El Pedernoso", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.48580000", + "longitude": "-2.74642000" + }, + { + "id": "34011", + "name": "El Provencio", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.37740000", + "longitude": "-2.57448000" + }, + { + "id": "34012", + "name": "El Puente del Arzobispo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.80174000", + "longitude": "-5.17178000" + }, + { + "id": "34014", + "name": "El Real de San Vicente", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13561000", + "longitude": "-4.69095000" + }, + { + "id": "34015", + "name": "El Robledo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.21898000", + "longitude": "-4.28099000" + }, + { + "id": "34021", + "name": "El Toboso", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.51333000", + "longitude": "-2.99726000" + }, + { + "id": "34027", + "name": "El Viso de San Juan", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.14154000", + "longitude": "-3.91817000" + }, + { + "id": "34031", + "name": "Elche de la Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.45123000", + "longitude": "-2.04760000" + }, + { + "id": "34040", + "name": "Embid", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97256000", + "longitude": "-1.71206000" + }, + { + "id": "34059", + "name": "Enguídanos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.66667000", + "longitude": "-1.60000000" + }, + { + "id": "34072", + "name": "Erustes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.95667000", + "longitude": "-4.49656000" + }, + { + "id": "34077", + "name": "Escalona", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.16690000", + "longitude": "-4.40484000" + }, + { + "id": "34079", + "name": "Escalonilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.92570000", + "longitude": "-4.35095000" + }, + { + "id": "34080", + "name": "Escamilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54979000", + "longitude": "-2.56292000" + }, + { + "id": "34082", + "name": "Escariche", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40553000", + "longitude": "-3.05310000" + }, + { + "id": "34088", + "name": "Escopete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41324000", + "longitude": "-3.00460000" + }, + { + "id": "34120", + "name": "Espinosa de Henares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90053000", + "longitude": "-3.06956000" + }, + { + "id": "34124", + "name": "Espinoso del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65333000", + "longitude": "-4.78371000" + }, + { + "id": "34126", + "name": "Esplegares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85650000", + "longitude": "-2.37084000" + }, + { + "id": "34134", + "name": "Esquivias", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10440000", + "longitude": "-3.76677000" + }, + { + "id": "34135", + "name": "Establés", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00767000", + "longitude": "-2.02438000" + }, + { + "id": "34148", + "name": "Estriégana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05821000", + "longitude": "-2.52363000" + }, + { + "id": "34367", + "name": "Férez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.35000000", + "longitude": "-2.00000000" + }, + { + "id": "34211", + "name": "Fontanar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72466000", + "longitude": "-3.17309000" + }, + { + "id": "34212", + "name": "Fontanarejo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.22014000", + "longitude": "-4.51753000" + }, + { + "id": "34244", + "name": "Fresneda de Altarejos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.92577000", + "longitude": "-2.31498000" + }, + { + "id": "34246", + "name": "Fresneda de la Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39101000", + "longitude": "-2.14233000" + }, + { + "id": "34274", + "name": "Fuembellida", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75589000", + "longitude": "-1.99861000" + }, + { + "id": "34275", + "name": "Fuencaliente", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.18624000", + "longitude": "-4.02576000" + }, + { + "id": "34278", + "name": "Fuencemillán", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92063000", + "longitude": "-3.09818000" + }, + { + "id": "34285", + "name": "Fuenllana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.75590000", + "longitude": "-2.95814000" + }, + { + "id": "34288", + "name": "Fuensalida", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05288000", + "longitude": "-4.20718000" + }, + { + "id": "34289", + "name": "Fuensanta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.23333000", + "longitude": "-2.06667000" + }, + { + "id": "34296", + "name": "Fuente de Pedro Naharro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.92438000", + "longitude": "-3.00916000" + }, + { + "id": "34300", + "name": "Fuente el Fresno", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.22839000", + "longitude": "-3.77487000" + }, + { + "id": "34307", + "name": "Fuente-Álamo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.69288000", + "longitude": "-1.43158000" + }, + { + "id": "34309", + "name": "Fuentealbilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.26667000", + "longitude": "-1.55000000" + }, + { + "id": "34317", + "name": "Fuentelahiguera de Albatages", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78312000", + "longitude": "-3.30492000" + }, + { + "id": "34320", + "name": "Fuentelencina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51781000", + "longitude": "-2.88226000" + }, + { + "id": "34321", + "name": "Fuentelespino de Haro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68934000", + "longitude": "-2.66869000" + }, + { + "id": "34322", + "name": "Fuentelespino de Moya", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91667000", + "longitude": "-1.46667000" + }, + { + "id": "34324", + "name": "Fuentelsaz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07359000", + "longitude": "-1.83108000" + }, + { + "id": "34326", + "name": "Fuentelviejo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.52637000", + "longitude": "-2.98430000" + }, + { + "id": "34329", + "name": "Fuentenovilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36248000", + "longitude": "-3.09102000" + }, + { + "id": "34335", + "name": "Fuentes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96667000", + "longitude": "-2.01667000" + }, + { + "id": "34363", + "name": "Fuertescusa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47552000", + "longitude": "-2.17620000" + }, + { + "id": "34369", + "name": "Gabaldón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61667000", + "longitude": "-1.93333000" + }, + { + "id": "34371", + "name": "Gajanejos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84147000", + "longitude": "-2.89229000" + }, + { + "id": "34399", + "name": "Galápagos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69347000", + "longitude": "-3.33537000" + }, + { + "id": "34398", + "name": "Galve de Sorbe", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21667000", + "longitude": "-3.18333000" + }, + { + "id": "34404", + "name": "Garaballa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81667000", + "longitude": "-1.36667000" + }, + { + "id": "34431", + "name": "Gascueña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29937000", + "longitude": "-2.51856000" + }, + { + "id": "34432", + "name": "Gascueña de Bornova", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14243000", + "longitude": "-3.01924000" + }, + { + "id": "34560", + "name": "Gálvez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70208000", + "longitude": "-4.27239000" + }, + { + "id": "34456", + "name": "Gerindote", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96594000", + "longitude": "-4.30278000" + }, + { + "id": "34480", + "name": "Golosalvo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.23333000", + "longitude": "-1.63333000" + }, + { + "id": "34493", + "name": "Graja de Campalbo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90000000", + "longitude": "-1.26667000" + }, + { + "id": "34494", + "name": "Graja de Iniesta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.51667000", + "longitude": "-1.66667000" + }, + { + "id": "34520", + "name": "Guadalajara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62862000", + "longitude": "-3.16185000" + }, + { + "id": "34525", + "name": "Guadalmez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72665000", + "longitude": "-4.97104000" + }, + { + "id": "34527", + "name": "Guadamur", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81178000", + "longitude": "-4.14885000" + }, + { + "id": "34576", + "name": "Hellín", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.51060000", + "longitude": "-1.70096000" + }, + { + "id": "34577", + "name": "Henarejos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86667000", + "longitude": "-1.48333000" + }, + { + "id": "34578", + "name": "Henche", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71474000", + "longitude": "-2.70746000" + }, + { + "id": "34581", + "name": "Herencia", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36616000", + "longitude": "-3.35735000" + }, + { + "id": "34602", + "name": "Herrería", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88815000", + "longitude": "-1.96014000" + }, + { + "id": "34601", + "name": "Herreruela de Oropesa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88928000", + "longitude": "-5.24279000" + }, + { + "id": "34606", + "name": "Hiendelaencina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08373000", + "longitude": "-3.00337000" + }, + { + "id": "34616", + "name": "Higueruela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.96371000", + "longitude": "-1.44370000" + }, + { + "id": "34618", + "name": "Hijes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25139000", + "longitude": "-2.99989000" + }, + { + "id": "34625", + "name": "Hinojosa de San Vicente", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10463000", + "longitude": "-4.72269000" + }, + { + "id": "34629", + "name": "Hinojosas de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61446000", + "longitude": "-4.13979000" + }, + { + "id": "34630", + "name": "Hita", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82149000", + "longitude": "-3.04540000" + }, + { + "id": "34632", + "name": "Hombrados", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80118000", + "longitude": "-1.68558000" + }, + { + "id": "34636", + "name": "Honrubia", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61358000", + "longitude": "-2.28077000" + }, + { + "id": "34639", + "name": "Hontanar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61297000", + "longitude": "-4.49663000" + }, + { + "id": "34642", + "name": "Hontanaya", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71553000", + "longitude": "-2.83516000" + }, + { + "id": "34644", + "name": "Hontecillas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70000000", + "longitude": "-2.18333000" + }, + { + "id": "34645", + "name": "Hontoba", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45385000", + "longitude": "-3.03858000" + }, + { + "id": "34651", + "name": "Horcajo de Santiago", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.84221000", + "longitude": "-2.99724000" + }, + { + "id": "34655", + "name": "Horche", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56399000", + "longitude": "-3.06110000" + }, + { + "id": "34656", + "name": "Hormigos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.09778000", + "longitude": "-4.44473000" + }, + { + "id": "34672", + "name": "Hoya-Gonzalo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95790000", + "longitude": "-1.55679000" + }, + { + "id": "34709", + "name": "Huélamo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.27658000", + "longitude": "-1.80957000" + }, + { + "id": "34714", + "name": "Huérguina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.03333000", + "longitude": "-1.60000000" + }, + { + "id": "34716", + "name": "Huérmeces del Cerro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05332000", + "longitude": "-2.79711000" + }, + { + "id": "34683", + "name": "Huecas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01230000", + "longitude": "-4.19541000" + }, + { + "id": "34686", + "name": "Huelves", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.04282000", + "longitude": "-2.88444000" + }, + { + "id": "34689", + "name": "Huerta de la Obispalía", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98901000", + "longitude": "-2.47875000" + }, + { + "id": "34688", + "name": "Huerta de Valdecarábanos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86319000", + "longitude": "-3.61275000" + }, + { + "id": "34690", + "name": "Huerta del Marquesado", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15000000", + "longitude": "-1.68333000" + }, + { + "id": "34692", + "name": "Huertahernando", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82348000", + "longitude": "-2.28697000" + }, + { + "id": "34697", + "name": "Huete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.14526000", + "longitude": "-2.69026000" + }, + { + "id": "34698", + "name": "Hueva", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46221000", + "longitude": "-2.96039000" + }, + { + "id": "34700", + "name": "Humanes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82598000", + "longitude": "-3.15257000" + }, + { + "id": "34745", + "name": "Illana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18442000", + "longitude": "-2.90889000" + }, + { + "id": "34751", + "name": "Illán de Vacas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.97079000", + "longitude": "-4.55743000" + }, + { + "id": "34748", + "name": "Illescas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12213000", + "longitude": "-3.84704000" + }, + { + "id": "34753", + "name": "Infantes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.73669000", + "longitude": "-3.01219000" + }, + { + "id": "34756", + "name": "Iniéstola", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99400000", + "longitude": "-2.37063000" + }, + { + "id": "34755", + "name": "Iniesta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.43333000", + "longitude": "-1.75000000" + }, + { + "id": "34761", + "name": "Irueste", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61206000", + "longitude": "-2.89072000" + }, + { + "id": "34789", + "name": "Jadraque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92454000", + "longitude": "-2.92468000" + }, + { + "id": "34819", + "name": "Jirueque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96431000", + "longitude": "-2.90289000" + }, + { + "id": "34823", + "name": "Jorquera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.16667000", + "longitude": "-1.51667000" + }, + { + "id": "34849", + "name": "La Alameda de la Sagra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01199000", + "longitude": "-3.79255000" + }, + { + "id": "34851", + "name": "La Alberca de Záncara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.51458000", + "longitude": "-2.49272000" + }, + { + "id": "34861", + "name": "La Calzada de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.70339000", + "longitude": "-3.77561000" + }, + { + "id": "34872", + "name": "La Frontera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40161000", + "longitude": "-2.21699000" + }, + { + "id": "34878", + "name": "La Gineta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.11452000", + "longitude": "-1.99603000" + }, + { + "id": "34881", + "name": "La Guardia", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78795000", + "longitude": "-3.47604000" + }, + { + "id": "34909", + "name": "La Puebla de Almoradiel", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.59862000", + "longitude": "-3.11782000" + }, + { + "id": "34911", + "name": "La Puebla de Montalbán", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86297000", + "longitude": "-4.35917000" + }, + { + "id": "34914", + "name": "La Pueblanueva", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91208000", + "longitude": "-4.67933000" + }, + { + "id": "34921", + "name": "La Roda", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.20735000", + "longitude": "-2.15723000" + }, + { + "id": "34929", + "name": "La Solana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.94422000", + "longitude": "-3.23810000" + }, + { + "id": "34930", + "name": "La Torre de Esteban Hambrán", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.16935000", + "longitude": "-4.21549000" + }, + { + "id": "34939", + "name": "Lagartera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90557000", + "longitude": "-5.20143000" + }, + { + "id": "34950", + "name": "Laguna del Marquesado", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.17749000", + "longitude": "-1.67167000" + }, + { + "id": "34951", + "name": "Lagunaseca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.53100000", + "longitude": "-2.01956000" + }, + { + "id": "34960", + "name": "Landete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90000000", + "longitude": "-1.36667000" + }, + { + "id": "34986", + "name": "Las Mesas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.38871000", + "longitude": "-2.76524000" + }, + { + "id": "34989", + "name": "Las Pedroñeras", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.44997000", + "longitude": "-2.67394000" + }, + { + "id": "34995", + "name": "Las Ventas de Retamosa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15526000", + "longitude": "-4.11455000" + }, + { + "id": "35006", + "name": "Layos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.77703000", + "longitude": "-4.06448000" + }, + { + "id": "35015", + "name": "Ledaña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36667000", + "longitude": "-1.70000000" + }, + { + "id": "35014", + "name": "Ledanca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86881000", + "longitude": "-2.84340000" + }, + { + "id": "35020", + "name": "Leganiel", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.16568000", + "longitude": "-2.94966000" + }, + { + "id": "35037", + "name": "Letur", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.36626000", + "longitude": "-2.10206000" + }, + { + "id": "35043", + "name": "Lezuza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.94970000", + "longitude": "-2.35419000" + }, + { + "id": "35062", + "name": "Liétor", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.54267000", + "longitude": "-1.95367000" + }, + { + "id": "35050", + "name": "Lillo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.72331000", + "longitude": "-3.30618000" + }, + { + "id": "35104", + "name": "Lominchar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.09061000", + "longitude": "-3.96713000" + }, + { + "id": "35112", + "name": "Loranca de Tajuña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44368000", + "longitude": "-3.11082000" + }, + { + "id": "35123", + "name": "Los Hinojosos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60417000", + "longitude": "-2.82572000" + }, + { + "id": "35129", + "name": "Los Navalmorales", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.72526000", + "longitude": "-4.64227000" + }, + { + "id": "35130", + "name": "Los Navalucillos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.66665000", + "longitude": "-4.64205000" + }, + { + "id": "35137", + "name": "Los Yébenes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.58158000", + "longitude": "-3.87058000" + }, + { + "id": "35154", + "name": "Lucillos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98510000", + "longitude": "-4.61279000" + }, + { + "id": "35167", + "name": "Lupiana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60846000", + "longitude": "-3.05118000" + }, + { + "id": "35171", + "name": "Luzaga", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97337000", + "longitude": "-2.44497000" + }, + { + "id": "35173", + "name": "Luzón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02691000", + "longitude": "-2.27691000" + }, + { + "id": "35188", + "name": "Madridejos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46823000", + "longitude": "-3.53196000" + }, + { + "id": "35194", + "name": "Madrigueras", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.23333000", + "longitude": "-1.80000000" + }, + { + "id": "35205", + "name": "Magán", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96138000", + "longitude": "-3.93164000" + }, + { + "id": "35208", + "name": "Mahora", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.21667000", + "longitude": "-1.73333000" + }, + { + "id": "35216", + "name": "Majaelrayo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11260000", + "longitude": "-3.30257000" + }, + { + "id": "35219", + "name": "Malagón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.16668000", + "longitude": "-3.85419000" + }, + { + "id": "35218", + "name": "Malaguilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81956000", + "longitude": "-3.25450000" + }, + { + "id": "35230", + "name": "Malpica", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89746000", + "longitude": "-4.54988000" + }, + { + "id": "35247", + "name": "Mandayona", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95610000", + "longitude": "-2.75021000" + }, + { + "id": "35259", + "name": "Mantiel", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61892000", + "longitude": "-2.66324000" + }, + { + "id": "35265", + "name": "Manzanares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.99915000", + "longitude": "-3.36991000" + }, + { + "id": "35269", + "name": "Manzaneque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.63549000", + "longitude": "-3.79249000" + }, + { + "id": "35273", + "name": "Maqueda", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06614000", + "longitude": "-4.37066000" + }, + { + "id": "35276", + "name": "Maranchón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04754000", + "longitude": "-2.20482000" + }, + { + "id": "35284", + "name": "Marchamalo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66677000", + "longitude": "-3.19914000" + }, + { + "id": "35290", + "name": "Mariana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.16717000", + "longitude": "-2.14601000" + }, + { + "id": "35293", + "name": "Marjaliza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56329000", + "longitude": "-3.93499000" + }, + { + "id": "35318", + "name": "Mascaraque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71643000", + "longitude": "-3.81254000" + }, + { + "id": "35320", + "name": "Masegosa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54689000", + "longitude": "-2.02588000" + }, + { + "id": "35321", + "name": "Masegoso", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.71833000", + "longitude": "-2.31610000" + }, + { + "id": "35322", + "name": "Masegoso de Tajuña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82552000", + "longitude": "-2.69532000" + }, + { + "id": "35339", + "name": "Matarrubia", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86463000", + "longitude": "-3.28944000" + }, + { + "id": "35346", + "name": "Matillas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94415000", + "longitude": "-2.83590000" + }, + { + "id": "35352", + "name": "Mazarambroz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.69411000", + "longitude": "-4.01962000" + }, + { + "id": "35353", + "name": "Mazarete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00086000", + "longitude": "-2.15921000" + }, + { + "id": "35358", + "name": "Mazuecos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.26020000", + "longitude": "-3.00755000" + }, + { + "id": "35704", + "name": "Málaga del Fresno", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78740000", + "longitude": "-3.24465000" + }, + { + "id": "35706", + "name": "Méntrida", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23899000", + "longitude": "-4.19337000" + }, + { + "id": "35377", + "name": "Medranda", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98333000", + "longitude": "-2.93719000" + }, + { + "id": "35380", + "name": "Megina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63911000", + "longitude": "-1.87041000" + }, + { + "id": "35383", + "name": "Mejorada", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00991000", + "longitude": "-4.88506000" + }, + { + "id": "35395", + "name": "Membrilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.97198000", + "longitude": "-3.34330000" + }, + { + "id": "35396", + "name": "Membrillera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94807000", + "longitude": "-2.97969000" + }, + { + "id": "35397", + "name": "Menasalbas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.63954000", + "longitude": "-4.28418000" + }, + { + "id": "35412", + "name": "Mestanza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.57616000", + "longitude": "-4.07096000" + }, + { + "id": "35420", + "name": "Miedes de Atienza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26672000", + "longitude": "-2.96375000" + }, + { + "id": "35423", + "name": "Miguel Esteban", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.52448000", + "longitude": "-3.07618000" + }, + { + "id": "35424", + "name": "Miguelturra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.96442000", + "longitude": "-3.89047000" + }, + { + "id": "35430", + "name": "Millana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50717000", + "longitude": "-2.57116000" + }, + { + "id": "35435", + "name": "Milmarcos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08622000", + "longitude": "-1.87652000" + }, + { + "id": "35436", + "name": "Minaya", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.27052000", + "longitude": "-2.32176000" + }, + { + "id": "35437", + "name": "Minglanilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53333000", + "longitude": "-1.60000000" + }, + { + "id": "35439", + "name": "Mira", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71667000", + "longitude": "-1.43333000" + }, + { + "id": "35441", + "name": "Mirabueno", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94479000", + "longitude": "-2.72438000" + }, + { + "id": "35445", + "name": "Miralrío", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88901000", + "longitude": "-2.94340000" + }, + { + "id": "35460", + "name": "Mocejón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.93934000", + "longitude": "-3.91716000" + }, + { + "id": "35461", + "name": "Mochales", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09647000", + "longitude": "-2.01560000" + }, + { + "id": "35470", + "name": "Mohedas de la Jara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60417000", + "longitude": "-5.14247000" + }, + { + "id": "35471", + "name": "Mohernando", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80129000", + "longitude": "-3.17234000" + }, + { + "id": "35477", + "name": "Molina de Aragón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84358000", + "longitude": "-1.88762000" + }, + { + "id": "35480", + "name": "Molinicos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.46717000", + "longitude": "-2.23939000" + }, + { + "id": "35495", + "name": "Monasterio", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98547000", + "longitude": "-3.09711000" + }, + { + "id": "35507", + "name": "Mondéjar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32095000", + "longitude": "-3.10686000" + }, + { + "id": "35523", + "name": "Monreal del Llano", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56888000", + "longitude": "-2.76046000" + }, + { + "id": "35530", + "name": "Montalbanejo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73369000", + "longitude": "-2.49911000" + }, + { + "id": "35531", + "name": "Montalbo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.87994000", + "longitude": "-2.67038000" + }, + { + "id": "35534", + "name": "Montalvos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.16667000", + "longitude": "-2.01667000" + }, + { + "id": "35537", + "name": "Montarrón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90675000", + "longitude": "-3.11495000" + }, + { + "id": "35541", + "name": "Monteagudo de las Salinas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.80000000", + "longitude": "-1.90000000" + }, + { + "id": "35544", + "name": "Montealegre del Castillo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.78856000", + "longitude": "-1.32722000" + }, + { + "id": "35545", + "name": "Montearagón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96425000", + "longitude": "-4.63214000" + }, + { + "id": "35571", + "name": "Montesclaros", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10646000", + "longitude": "-4.93849000" + }, + { + "id": "35575", + "name": "Montiel", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.69802000", + "longitude": "-2.86441000" + }, + { + "id": "35593", + "name": "Mora", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68492000", + "longitude": "-3.77394000" + }, + { + "id": "35597", + "name": "Moral de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82989000", + "longitude": "-3.57813000" + }, + { + "id": "35619", + "name": "Moratilla de los Meleros", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50182000", + "longitude": "-2.94276000" + }, + { + "id": "35625", + "name": "Morenilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78687000", + "longitude": "-1.70717000" + }, + { + "id": "35640", + "name": "Mota de Altarejos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88201000", + "longitude": "-2.30958000" + }, + { + "id": "35641", + "name": "Mota del Cuervo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.50189000", + "longitude": "-2.86994000" + }, + { + "id": "35643", + "name": "Motilla del Palancar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56667000", + "longitude": "-1.88333000" + }, + { + "id": "35644", + "name": "Motilleja", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.18333000", + "longitude": "-1.78333000" + }, + { + "id": "35646", + "name": "Moya", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.95000000", + "longitude": "-1.36667000" + }, + { + "id": "35653", + "name": "Muduex", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82930000", + "longitude": "-2.95899000" + }, + { + "id": "35663", + "name": "Munera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.04217000", + "longitude": "-2.48068000" + }, + { + "id": "35711", + "name": "Nambroca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.79771000", + "longitude": "-3.94434000" + }, + { + "id": "35712", + "name": "Narboneta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75000000", + "longitude": "-1.46667000" + }, + { + "id": "35736", + "name": "Navahermosa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.63526000", + "longitude": "-4.47012000" + }, + { + "id": "35745", + "name": "Navalcán", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06667000", + "longitude": "-5.08333000" + }, + { + "id": "35753", + "name": "Navalmoralejo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73929000", + "longitude": "-5.14359000" + }, + { + "id": "35757", + "name": "Navalpino", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.22573000", + "longitude": "-4.59133000" + }, + { + "id": "35763", + "name": "Navamorcuende", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15659000", + "longitude": "-4.78625000" + }, + { + "id": "35778", + "name": "Navas de Estena", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.49481000", + "longitude": "-4.52155000" + }, + { + "id": "35779", + "name": "Navas de Jorquera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28333000", + "longitude": "-1.71667000" + }, + { + "id": "35796", + "name": "Negredo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02737000", + "longitude": "-2.85878000" + }, + { + "id": "35803", + "name": "Nerpio", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.14751000", + "longitude": "-2.30202000" + }, + { + "id": "35813", + "name": "Noblejas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98061000", + "longitude": "-3.44001000" + }, + { + "id": "35814", + "name": "Noez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.74094000", + "longitude": "-4.18408000" + }, + { + "id": "35822", + "name": "Nombela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15530000", + "longitude": "-4.50223000" + }, + { + "id": "35831", + "name": "Novés", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.04746000", + "longitude": "-4.27471000" + }, + { + "id": "35840", + "name": "Nuño Gómez", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11383000", + "longitude": "-4.61978000" + }, + { + "id": "35838", + "name": "Numancia de la Sagra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.07395000", + "longitude": "-3.85118000" + }, + { + "id": "35855", + "name": "Ocaña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.95785000", + "longitude": "-3.49820000" + }, + { + "id": "35856", + "name": "Ocentejo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77234000", + "longitude": "-2.39764000" + }, + { + "id": "35919", + "name": "Olías del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.94436000", + "longitude": "-3.98684000" + }, + { + "id": "35890", + "name": "Olivares de Júcar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76101000", + "longitude": "-2.35589000" + }, + { + "id": "35895", + "name": "Olmeda de Cobeta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85971000", + "longitude": "-2.18280000" + }, + { + "id": "35896", + "name": "Olmeda de la Cuesta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.31088000", + "longitude": "-2.47592000" + }, + { + "id": "35897", + "name": "Olmeda del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.80000000", + "longitude": "-2.08333000" + }, + { + "id": "35898", + "name": "Olmedilla de Alarcón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61667000", + "longitude": "-2.10000000" + }, + { + "id": "35899", + "name": "Olmedilla de Eliz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30232000", + "longitude": "-2.41952000" + }, + { + "id": "35929", + "name": "Ontígola", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00421000", + "longitude": "-3.57227000" + }, + { + "id": "35928", + "name": "Ontur", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61509000", + "longitude": "-1.49724000" + }, + { + "id": "35942", + "name": "Orea", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55725000", + "longitude": "-1.72738000" + }, + { + "id": "35947", + "name": "Orgaz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.64826000", + "longitude": "-3.87577000" + }, + { + "id": "35957", + "name": "Oropesa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91726000", + "longitude": "-5.17371000" + }, + { + "id": "35969", + "name": "Osa de la Vega", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65977000", + "longitude": "-2.75998000" + }, + { + "id": "35973", + "name": "Ossa de Montiel", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.96398000", + "longitude": "-2.74553000" + }, + { + "id": "35977", + "name": "Otero", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00096000", + "longitude": "-4.51539000" + }, + { + "id": "36005", + "name": "Pajarón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.95000000", + "longitude": "-1.78333000" + }, + { + "id": "36004", + "name": "Pajaroncillo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.95000000", + "longitude": "-1.73333000" + }, + { + "id": "36036", + "name": "Palomares del Campo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.94664000", + "longitude": "-2.59776000" + }, + { + "id": "36039", + "name": "Palomeque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11966000", + "longitude": "-3.96403000" + }, + { + "id": "36049", + "name": "Pantoja", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.04336000", + "longitude": "-3.83280000" + }, + { + "id": "36052", + "name": "Paracuellos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71667000", + "longitude": "-1.78333000" + }, + { + "id": "36064", + "name": "Paredes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06578000", + "longitude": "-2.85400000" + }, + { + "id": "36065", + "name": "Paredes de Escalona", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20472000", + "longitude": "-4.43050000" + }, + { + "id": "36067", + "name": "Paredes de Sigüenza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.24283000", + "longitude": "-2.73376000" + }, + { + "id": "36068", + "name": "Pareja", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55578000", + "longitude": "-2.64882000" + }, + { + "id": "36071", + "name": "Parrillas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06225000", + "longitude": "-5.06390000" + }, + { + "id": "36076", + "name": "Pastrana", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41902000", + "longitude": "-2.92256000" + }, + { + "id": "36080", + "name": "Paterna del Madera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.59751000", + "longitude": "-2.34421000" + }, + { + "id": "36481", + "name": "Pálmaces de Jadraque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05610000", + "longitude": "-2.91060000" + }, + { + "id": "36484", + "name": "Pétrola", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82628000", + "longitude": "-1.55662000" + }, + { + "id": "36169", + "name": "Peñalén", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66560000", + "longitude": "-2.06999000" + }, + { + "id": "36168", + "name": "Peñalver", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58140000", + "longitude": "-2.88890000" + }, + { + "id": "36175", + "name": "Peñas de San Pedro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72880000", + "longitude": "-2.00500000" + }, + { + "id": "36101", + "name": "Pedro Muñoz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.40285000", + "longitude": "-2.94664000" + }, + { + "id": "36119", + "name": "Pelahustán", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.17599000", + "longitude": "-4.59842000" + }, + { + "id": "36137", + "name": "Peralejos de las Truchas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59336000", + "longitude": "-1.90953000" + }, + { + "id": "36144", + "name": "Peralveche", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61078000", + "longitude": "-2.44957000" + }, + { + "id": "36179", + "name": "Picón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.05074000", + "longitude": "-4.06084000" + }, + { + "id": "36180", + "name": "Piedrabuena", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.03536000", + "longitude": "-4.17512000" + }, + { + "id": "36193", + "name": "Pinarejo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61639000", + "longitude": "-2.42592000" + }, + { + "id": "36196", + "name": "Pineda de Gigüela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.08546000", + "longitude": "-2.54368000" + }, + { + "id": "36201", + "name": "Pinilla de Jadraque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01988000", + "longitude": "-2.94254000" + }, + { + "id": "36202", + "name": "Pinilla de Molina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67969000", + "longitude": "-1.88034000" + }, + { + "id": "36217", + "name": "Pioz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46153000", + "longitude": "-3.17234000" + }, + { + "id": "36218", + "name": "Piqueras", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66367000", + "longitude": "-1.72202000" + }, + { + "id": "36219", + "name": "Piqueras del Castillo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71667000", + "longitude": "-2.06667000" + }, + { + "id": "36254", + "name": "Poblete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93550000", + "longitude": "-3.98137000" + }, + { + "id": "36266", + "name": "Polán", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78765000", + "longitude": "-4.16792000" + }, + { + "id": "36290", + "name": "Portilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.28957000", + "longitude": "-2.08178000" + }, + { + "id": "36293", + "name": "Portillo de Toledo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06415000", + "longitude": "-4.22793000" + }, + { + "id": "36301", + "name": "Porzuna", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.14618000", + "longitude": "-4.15407000" + }, + { + "id": "36307", + "name": "Poveda de la Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64329000", + "longitude": "-2.02905000" + }, + { + "id": "36309", + "name": "Povedilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.70022000", + "longitude": "-2.60212000" + }, + { + "id": "36317", + "name": "Pozo de Almoguera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34030000", + "longitude": "-3.02638000" + }, + { + "id": "36318", + "name": "Pozo de Guadalajara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49533000", + "longitude": "-3.18140000" + }, + { + "id": "36320", + "name": "Pozo-Cañada", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.80333000", + "longitude": "-1.73532000" + }, + { + "id": "36321", + "name": "Pozoamargo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36558000", + "longitude": "-2.19617000" + }, + { + "id": "36324", + "name": "Pozohondo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72095000", + "longitude": "-1.91192000" + }, + { + "id": "36326", + "name": "Pozorrubio", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81645000", + "longitude": "-2.94936000" + }, + { + "id": "36330", + "name": "Pozuelo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.80989000", + "longitude": "-2.10101000" + }, + { + "id": "36333", + "name": "Pozuelo de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.58333000", + "longitude": "-3.83333000" + }, + { + "id": "36348", + "name": "Prados Redondos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78505000", + "longitude": "-1.79329000" + }, + { + "id": "36405", + "name": "Prádena de Atienza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17245000", + "longitude": "-3.00728000" + }, + { + "id": "36353", + "name": "Priego", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44936000", + "longitude": "-2.31435000" + }, + { + "id": "36359", + "name": "Province of Toledo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.83333000", + "longitude": "-4.00000000" + }, + { + "id": "36361", + "name": "Provincia de Albacete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.83333000", + "longitude": "-2.00000000" + }, + { + "id": "36366", + "name": "Provincia de Ciudad Real", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.00000000", + "longitude": "-4.00000000" + }, + { + "id": "36367", + "name": "Provincia de Cuenca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00000000", + "longitude": "-2.00000000" + }, + { + "id": "36371", + "name": "Provincia de Guadalajara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83333000", + "longitude": "-2.50000000" + }, + { + "id": "36411", + "name": "Puebla de Almenara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78440000", + "longitude": "-2.81435000" + }, + { + "id": "36414", + "name": "Puebla de Beleña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88794000", + "longitude": "-3.21624000" + }, + { + "id": "36416", + "name": "Puebla de Don Rodrigo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.08564000", + "longitude": "-4.61966000" + }, + { + "id": "36430", + "name": "Puebla del Príncipe", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.56766000", + "longitude": "-2.92605000" + }, + { + "id": "36431", + "name": "Puebla del Salvador", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56667000", + "longitude": "-1.66667000" + }, + { + "id": "36452", + "name": "Puerto de San Vicente", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.52283000", + "longitude": "-5.11407000" + }, + { + "id": "36446", + "name": "Puerto Lápice", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.32360000", + "longitude": "-3.48148000" + }, + { + "id": "36457", + "name": "Puertollano", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.68712000", + "longitude": "-4.10734000" + }, + { + "id": "36467", + "name": "Pulgar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.69383000", + "longitude": "-4.15233000" + }, + { + "id": "36494", + "name": "Quer", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60532000", + "longitude": "-3.27530000" + }, + { + "id": "36495", + "name": "Quero", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.51111000", + "longitude": "-3.24741000" + }, + { + "id": "36511", + "name": "Quintanar de la Orden", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.59369000", + "longitude": "-3.04165000" + }, + { + "id": "36513", + "name": "Quintanar del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33333000", + "longitude": "-1.93333000" + }, + { + "id": "36531", + "name": "Quismondo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10533000", + "longitude": "-4.32394000" + }, + { + "id": "36538", + "name": "Rada de Haro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.57002000", + "longitude": "-2.62086000" + }, + { + "id": "36601", + "name": "Reíllo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90000000", + "longitude": "-1.86667000" + }, + { + "id": "36556", + "name": "Rebollosa de Jadraque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09040000", + "longitude": "-2.84201000" + }, + { + "id": "36557", + "name": "Recas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05286000", + "longitude": "-3.99090000" + }, + { + "id": "36578", + "name": "Renera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48976000", + "longitude": "-3.01367000" + }, + { + "id": "36586", + "name": "Retiendas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96835000", + "longitude": "-3.27229000" + }, + { + "id": "36591", + "name": "Retuerta de Bullaque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46363000", + "longitude": "-4.41363000" + }, + { + "id": "36641", + "name": "Riópar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.50000000", + "longitude": "-2.45000000" + }, + { + "id": "36606", + "name": "Riba de Saelices", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91145000", + "longitude": "-2.29715000" + }, + { + "id": "36623", + "name": "Rielves", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96206000", + "longitude": "-4.19300000" + }, + { + "id": "36625", + "name": "Rillo de Gallo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86635000", + "longitude": "-1.93740000" + }, + { + "id": "36649", + "name": "Robledillo de Mohernando", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85118000", + "longitude": "-3.23162000" + }, + { + "id": "36653", + "name": "Robledo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.75807000", + "longitude": "-2.45042000" + }, + { + "id": "36655", + "name": "Robledo de Corpes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11838000", + "longitude": "-2.95000000" + }, + { + "id": "36670", + "name": "Romanillos de Atienza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26667000", + "longitude": "-2.90000000" + }, + { + "id": "36671", + "name": "Romanones", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57149000", + "longitude": "-2.99072000" + }, + { + "id": "36685", + "name": "Rozalén del Monte", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.99083000", + "longitude": "-2.80525000" + }, + { + "id": "36698", + "name": "Rueda de la Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91795000", + "longitude": "-1.85439000" + }, + { + "id": "36703", + "name": "Ruidera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.97775000", + "longitude": "-2.88321000" + }, + { + "id": "37184", + "name": "Saúca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03098000", + "longitude": "-2.52905000" + }, + { + "id": "36727", + "name": "Sacecorbo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83280000", + "longitude": "-2.41838000" + }, + { + "id": "36728", + "name": "Saceda-Trasierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15525000", + "longitude": "-2.85369000" + }, + { + "id": "36729", + "name": "Sacedón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48076000", + "longitude": "-2.73337000" + }, + { + "id": "36730", + "name": "Saceruela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.94382000", + "longitude": "-4.60768000" + }, + { + "id": "36733", + "name": "Saelices", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.92061000", + "longitude": "-2.80502000" + }, + { + "id": "36735", + "name": "Saelices de la Sal", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90723000", + "longitude": "-2.32325000" + }, + { + "id": "36766", + "name": "Salinas del Manzano", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.08333000", + "longitude": "-1.55000000" + }, + { + "id": "36770", + "name": "Salmerón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54529000", + "longitude": "-2.49315000" + }, + { + "id": "36773", + "name": "Salobre", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.59297000", + "longitude": "-2.55038000" + }, + { + "id": "36780", + "name": "Salvacañete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10000000", + "longitude": "-1.50000000" + }, + { + "id": "36802", + "name": "San Andrés del Congosto", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99775000", + "longitude": "-3.02423000" + }, + { + "id": "36804", + "name": "San Andrés del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63837000", + "longitude": "-2.82020000" + }, + { + "id": "36811", + "name": "San Bartolomé de las Abiertas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.82972000", + "longitude": "-4.71901000" + }, + { + "id": "36813", + "name": "San Carlos del Valle", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84399000", + "longitude": "-3.24148000" + }, + { + "id": "36818", + "name": "San Clemente", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.40410000", + "longitude": "-2.42819000" + }, + { + "id": "36857", + "name": "San Lorenzo de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.47681000", + "longitude": "-3.82605000" + }, + { + "id": "36860", + "name": "San Lorenzo de la Parrilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85129000", + "longitude": "-2.36079000" + }, + { + "id": "36863", + "name": "San Martín de Boniches", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90000000", + "longitude": "-1.56667000" + }, + { + "id": "36865", + "name": "San Martín de Montalbán", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70186000", + "longitude": "-4.38796000" + }, + { + "id": "36866", + "name": "San Martín de Pusa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78404000", + "longitude": "-4.63252000" + }, + { + "id": "36899", + "name": "San Pedro", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82493000", + "longitude": "-2.18276000" + }, + { + "id": "36902", + "name": "San Pedro Palmiches", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42956000", + "longitude": "-2.40602000" + }, + { + "id": "37005", + "name": "Santa Ana de Pusa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76238000", + "longitude": "-4.70904000" + }, + { + "id": "37042", + "name": "Santa Cruz de la Zarza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98104000", + "longitude": "-3.18787000" + }, + { + "id": "37043", + "name": "Santa Cruz de los Cáñamos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.63759000", + "longitude": "-2.86618000" + }, + { + "id": "37031", + "name": "Santa Cruz de Moya", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.95000000", + "longitude": "-1.26667000" + }, + { + "id": "37032", + "name": "Santa Cruz de Mudela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.64241000", + "longitude": "-3.46650000" + }, + { + "id": "37044", + "name": "Santa Cruz del Retamar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11917000", + "longitude": "-4.24158000" + }, + { + "id": "37086", + "name": "Santa María del Campo Rus", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.55942000", + "longitude": "-2.42306000" + }, + { + "id": "37090", + "name": "Santa María del Val", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50439000", + "longitude": "-2.04115000" + }, + { + "id": "37092", + "name": "Santa Olalla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.02348000", + "longitude": "-4.43025000" + }, + { + "id": "37136", + "name": "Santiuste", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08462000", + "longitude": "-2.80953000" + }, + { + "id": "37175", + "name": "Sartajada", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.21320000", + "longitude": "-4.79427000" + }, + { + "id": "37183", + "name": "Sayatón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.37635000", + "longitude": "-2.85253000" + }, + { + "id": "37199", + "name": "Segurilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.02386000", + "longitude": "-4.86418000" + }, + { + "id": "37201", + "name": "Selas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95150000", + "longitude": "-2.10203000" + }, + { + "id": "37206", + "name": "Semillas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05857000", + "longitude": "-3.11945000" + }, + { + "id": "37231", + "name": "Seseña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10473000", + "longitude": "-3.69793000" + }, + { + "id": "37237", + "name": "Setiles", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.73419000", + "longitude": "-1.61720000" + }, + { + "id": "37241", + "name": "Sevilleja de la Jara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.57488000", + "longitude": "-4.96387000" + }, + { + "id": "37243", + "name": "Sienes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20096000", + "longitude": "-2.65332000" + }, + { + "id": "37252", + "name": "Sigüenza", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06892000", + "longitude": "-2.64308000" + }, + { + "id": "37266", + "name": "Sisante", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.40849000", + "longitude": "-2.20173000" + }, + { + "id": "37276", + "name": "Socovos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.33232000", + "longitude": "-1.98485000" + }, + { + "id": "37277", + "name": "Socuéllamos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28581000", + "longitude": "-2.79205000" + }, + { + "id": "37280", + "name": "Solanillos del Extremo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75088000", + "longitude": "-2.69799000" + }, + { + "id": "37287", + "name": "Somolinos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.24606000", + "longitude": "-3.06004000" + }, + { + "id": "37294", + "name": "Sonseca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.67747000", + "longitude": "-3.97448000" + }, + { + "id": "37315", + "name": "Sotillo de las Palomas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10359000", + "longitude": "-4.82736000" + }, + { + "id": "37322", + "name": "Sotodosos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92149000", + "longitude": "-2.39211000" + }, + { + "id": "37358", + "name": "Talavera de la Reina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96348000", + "longitude": "-4.83076000" + }, + { + "id": "37362", + "name": "Tamajón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99914000", + "longitude": "-3.24743000" + }, + { + "id": "37371", + "name": "Taragudo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82106000", + "longitude": "-3.07680000" + }, + { + "id": "37372", + "name": "Tarancón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00851000", + "longitude": "-3.00731000" + }, + { + "id": "37373", + "name": "Taravilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69743000", + "longitude": "-1.96817000" + }, + { + "id": "37376", + "name": "Tarazona de la Mancha", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.25000000", + "longitude": "-1.91667000" + }, + { + "id": "37384", + "name": "Tartanedo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99347000", + "longitude": "-1.92459000" + }, + { + "id": "37664", + "name": "Tébar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.50000000", + "longitude": "-2.16667000" + }, + { + "id": "37668", + "name": "Tórtola de Henares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70425000", + "longitude": "-3.12316000" + }, + { + "id": "37395", + "name": "Tejadillos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13333000", + "longitude": "-1.63333000" + }, + { + "id": "37401", + "name": "Tembleque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.69541000", + "longitude": "-3.50429000" + }, + { + "id": "37402", + "name": "Tendilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54379000", + "longitude": "-2.95782000" + }, + { + "id": "37413", + "name": "Terrinches", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61057000", + "longitude": "-2.84215000" + }, + { + "id": "37416", + "name": "Terzaga", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69508000", + "longitude": "-1.90386000" + }, + { + "id": "37424", + "name": "Tierzo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74925000", + "longitude": "-1.93069000" + }, + { + "id": "37426", + "name": "Tinajas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32547000", + "longitude": "-2.58228000" + }, + { + "id": "37436", + "name": "Tobarra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.59213000", + "longitude": "-1.69191000" + }, + { + "id": "37443", + "name": "Toledo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85810000", + "longitude": "-4.02263000" + }, + { + "id": "37450", + "name": "Tomelloso", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.15759000", + "longitude": "-3.02156000" + }, + { + "id": "37456", + "name": "Tordellego", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72165000", + "longitude": "-1.67036000" + }, + { + "id": "37457", + "name": "Tordelrábano", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21827000", + "longitude": "-2.75792000" + }, + { + "id": "37460", + "name": "Tordesilos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67074000", + "longitude": "-1.59372000" + }, + { + "id": "37465", + "name": "Torija", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74251000", + "longitude": "-3.02830000" + }, + { + "id": "37478", + "name": "Torralba", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30253000", + "longitude": "-2.28546000" + }, + { + "id": "37480", + "name": "Torralba de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.01785000", + "longitude": "-3.75105000" + }, + { + "id": "37481", + "name": "Torralba de Oropesa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.93384000", + "longitude": "-5.15404000" + }, + { + "id": "37493", + "name": "Torre de Juan Abad", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.58417000", + "longitude": "-3.05994000" + }, + { + "id": "37500", + "name": "Torre del Burgo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79176000", + "longitude": "-3.07723000" + }, + { + "id": "37517", + "name": "Torrecilla de la Jara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70425000", + "longitude": "-4.77186000" + }, + { + "id": "37527", + "name": "Torrecuadrada de Molina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74947000", + "longitude": "-1.80707000" + }, + { + "id": "37528", + "name": "Torrecuadradilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85364000", + "longitude": "-2.53215000" + }, + { + "id": "37541", + "name": "Torrejón del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64325000", + "longitude": "-3.33376000" + }, + { + "id": "37537", + "name": "Torrejoncillo del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00840000", + "longitude": "-2.57107000" + }, + { + "id": "37556", + "name": "Torremocha de Jadraque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01881000", + "longitude": "-2.89918000" + }, + { + "id": "37558", + "name": "Torremocha del Campo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97819000", + "longitude": "-2.61881000" + }, + { + "id": "37559", + "name": "Torremocha del Pinar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88954000", + "longitude": "-2.04497000" + }, + { + "id": "37560", + "name": "Torremochuela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76528000", + "longitude": "-1.84190000" + }, + { + "id": "37567", + "name": "Torrenueva", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.63960000", + "longitude": "-3.36259000" + }, + { + "id": "37585", + "name": "Torrico", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.82918000", + "longitude": "-5.22581000" + }, + { + "id": "37589", + "name": "Torrijos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98195000", + "longitude": "-4.28349000" + }, + { + "id": "37593", + "name": "Torrubia", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96581000", + "longitude": "-1.90064000" + }, + { + "id": "37595", + "name": "Torrubia del Campo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89749000", + "longitude": "-2.96133000" + }, + { + "id": "37596", + "name": "Torrubia del Castillo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65852000", + "longitude": "-2.31171000" + }, + { + "id": "37598", + "name": "Tortuera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97181000", + "longitude": "-1.79764000" + }, + { + "id": "37599", + "name": "Tortuero", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93414000", + "longitude": "-3.35024000" + }, + { + "id": "37607", + "name": "Totanés", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71057000", + "longitude": "-4.22655000" + }, + { + "id": "37631", + "name": "Tresjuncos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70087000", + "longitude": "-2.75502000" + }, + { + "id": "37635", + "name": "Tribaldos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.97264000", + "longitude": "-2.89809000" + }, + { + "id": "37639", + "name": "Trijueque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77426000", + "longitude": "-2.99253000" + }, + { + "id": "37640", + "name": "Trillo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70086000", + "longitude": "-2.59265000" + }, + { + "id": "37655", + "name": "Turleque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60138000", + "longitude": "-3.61404000" + }, + { + "id": "37713", + "name": "Uña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22410000", + "longitude": "-1.97788000" + }, + { + "id": "37671", + "name": "Uceda", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83944000", + "longitude": "-3.46040000" + }, + { + "id": "37673", + "name": "Uclés", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.97938000", + "longitude": "-2.86143000" + }, + { + "id": "37674", + "name": "Ugena", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15572000", + "longitude": "-3.87603000" + }, + { + "id": "37676", + "name": "Ujados", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23526000", + "longitude": "-3.00482000" + }, + { + "id": "37690", + "name": "Urda", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.41179000", + "longitude": "-3.71493000" + }, + { + "id": "37707", + "name": "Utande", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84832000", + "longitude": "-2.92770000" + }, + { + "id": "37727", + "name": "Valdarachas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51710000", + "longitude": "-3.12652000" + }, + { + "id": "37732", + "name": "Valdearenas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80939000", + "longitude": "-2.99218000" + }, + { + "id": "37733", + "name": "Valdeavellano", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66560000", + "longitude": "-2.96977000" + }, + { + "id": "37736", + "name": "Valdeaveruelo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63473000", + "longitude": "-3.31367000" + }, + { + "id": "37741", + "name": "Valdeconcha", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45643000", + "longitude": "-2.87663000" + }, + { + "id": "37748", + "name": "Valdeganga", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.13514000", + "longitude": "-1.67703000" + }, + { + "id": "37749", + "name": "Valdegrudas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71125000", + "longitude": "-3.01209000" + }, + { + "id": "37759", + "name": "Valdelcubo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22637000", + "longitude": "-2.67588000" + }, + { + "id": "37766", + "name": "Valdemanco del Esteras", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93858000", + "longitude": "-4.82920000" + }, + { + "id": "37768", + "name": "Valdemeca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22367000", + "longitude": "-1.74358000" + }, + { + "id": "37773", + "name": "Valdemorillo de la Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.03333000", + "longitude": "-1.78333000" + }, + { + "id": "37775", + "name": "Valdemoro-Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10000000", + "longitude": "-1.76667000" + }, + { + "id": "37779", + "name": "Valdeolivas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50600000", + "longitude": "-2.44532000" + }, + { + "id": "37782", + "name": "Valdepeñas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.76211000", + "longitude": "-3.38483000" + }, + { + "id": "37784", + "name": "Valdepeñas de la Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90562000", + "longitude": "-3.38414000" + }, + { + "id": "37791", + "name": "Valderrebollo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81035000", + "longitude": "-2.72887000" + }, + { + "id": "37801", + "name": "Valdesotos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95546000", + "longitude": "-3.32542000" + }, + { + "id": "37806", + "name": "Valdeverdeja", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.79635000", + "longitude": "-5.24544000" + }, + { + "id": "37824", + "name": "Valenzuela de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.85254000", + "longitude": "-3.77210000" + }, + { + "id": "37827", + "name": "Valfermoso de Tajuña", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61902000", + "longitude": "-2.95407000" + }, + { + "id": "37830", + "name": "Valhermoso", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78590000", + "longitude": "-1.96121000" + }, + { + "id": "37831", + "name": "Valhermoso de la Fuente", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56667000", + "longitude": "-2.01667000" + }, + { + "id": "37869", + "name": "Valmojado", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20444000", + "longitude": "-4.09146000" + }, + { + "id": "37873", + "name": "Valsalobre", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61742000", + "longitude": "-2.09297000" + }, + { + "id": "37876", + "name": "Valtablado del Río", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71420000", + "longitude": "-2.40225000" + }, + { + "id": "37885", + "name": "Valverde de Júcar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71866000", + "longitude": "-2.22135000" + }, + { + "id": "37892", + "name": "Valverde de los Arroyos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12930000", + "longitude": "-3.23333000" + }, + { + "id": "37897", + "name": "Valverdejo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61667000", + "longitude": "-2.01667000" + }, + { + "id": "37899", + "name": "Vara de Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.42595000", + "longitude": "-2.29404000" + }, + { + "id": "37914", + "name": "Vega del Codorno", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42457000", + "longitude": "-1.91312000" + }, + { + "id": "37922", + "name": "Velada", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.97687000", + "longitude": "-4.97641000" + }, + { + "id": "37934", + "name": "Vellisca", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12965000", + "longitude": "-2.81444000" + }, + { + "id": "37940", + "name": "Ventas con Peña Aguilera", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61033000", + "longitude": "-4.23128000" + }, + { + "id": "37959", + "name": "Viana de Jadraque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02577000", + "longitude": "-2.76966000" + }, + { + "id": "38411", + "name": "Viñuelas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79229000", + "longitude": "-3.34036000" + }, + { + "id": "38008", + "name": "Villa de Don Fadrique", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61505000", + "longitude": "-3.21915000" + }, + { + "id": "38010", + "name": "Villa de Ves", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.20000000", + "longitude": "-1.23333000" + }, + { + "id": "38028", + "name": "Villacañas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.62367000", + "longitude": "-3.33813000" + }, + { + "id": "38035", + "name": "Villaconejos de Trabaque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40064000", + "longitude": "-2.31956000" + }, + { + "id": "38061", + "name": "Villafranca de los Caballeros", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.42824000", + "longitude": "-3.36079000" + }, + { + "id": "38073", + "name": "Villagarcía del Llano", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.31667000", + "longitude": "-1.83333000" + }, + { + "id": "38079", + "name": "Villagordo del Júcar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.30000000", + "longitude": "-2.06667000" + }, + { + "id": "38082", + "name": "Villahermosa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.75023000", + "longitude": "-2.87066000" + }, + { + "id": "38098", + "name": "Villalba de la Sierra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23437000", + "longitude": "-2.08929000" + }, + { + "id": "38103", + "name": "Villalba del Rey", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34653000", + "longitude": "-2.63902000" + }, + { + "id": "38113", + "name": "Villalgordo del Marquesado", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68245000", + "longitude": "-2.50885000" + }, + { + "id": "38121", + "name": "Villalpardo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46667000", + "longitude": "-1.63333000" + }, + { + "id": "38127", + "name": "Villamalea", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36667000", + "longitude": "-1.58333000" + }, + { + "id": "38130", + "name": "Villamanrique", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.54636000", + "longitude": "-2.99729000" + }, + { + "id": "38140", + "name": "Villamayor de Calatrava", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.78763000", + "longitude": "-4.13774000" + }, + { + "id": "38144", + "name": "Villamayor de Santiago", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73072000", + "longitude": "-2.92357000" + }, + { + "id": "38155", + "name": "Villamiel de Toledo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96482000", + "longitude": "-4.12627000" + }, + { + "id": "38157", + "name": "Villaminaya", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71197000", + "longitude": "-3.87055000" + }, + { + "id": "38163", + "name": "Villamuelas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81784000", + "longitude": "-3.73461000" + }, + { + "id": "38169", + "name": "Villanueva de Alcardete", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.67321000", + "longitude": "-3.01445000" + }, + { + "id": "38170", + "name": "Villanueva de Alcorón", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67956000", + "longitude": "-2.25145000" + }, + { + "id": "38173", + "name": "Villanueva de Argecilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90257000", + "longitude": "-2.91431000" + }, + { + "id": "38175", + "name": "Villanueva de Bogas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.72347000", + "longitude": "-3.65743000" + }, + { + "id": "38198", + "name": "Villanueva de la Fuente", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.69463000", + "longitude": "-2.69637000" + }, + { + "id": "38199", + "name": "Villanueva de la Jara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.43333000", + "longitude": "-1.93333000" + }, + { + "id": "38203", + "name": "Villanueva de la Torre", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58216000", + "longitude": "-3.29764000" + }, + { + "id": "38188", + "name": "Villanueva de San Carlos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.62173000", + "longitude": "-3.90903000" + }, + { + "id": "38229", + "name": "Villapalacios", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.57500000", + "longitude": "-2.63384000" + }, + { + "id": "38235", + "name": "Villar de Cañas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.77860000", + "longitude": "-2.56428000" + }, + { + "id": "38238", + "name": "Villar de Domingo García", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23732000", + "longitude": "-2.29136000" + }, + { + "id": "38247", + "name": "Villar de la Encina", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.63725000", + "longitude": "-2.52155000" + }, + { + "id": "38241", + "name": "Villar de Olalla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01496000", + "longitude": "-2.19561000" + }, + { + "id": "38255", + "name": "Villar del Humo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86667000", + "longitude": "-1.63333000" + }, + { + "id": "38256", + "name": "Villar del Infantado", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45514000", + "longitude": "-2.47905000" + }, + { + "id": "38259", + "name": "Villar del Pozo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.85010000", + "longitude": "-3.96405000" + }, + { + "id": "38271", + "name": "Villarejo de Fuentes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78809000", + "longitude": "-2.69680000" + }, + { + "id": "38274", + "name": "Villarejo de la Peñuela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.08745000", + "longitude": "-2.40996000" + }, + { + "id": "38272", + "name": "Villarejo de Montalbán", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76913000", + "longitude": "-4.57314000" + }, + { + "id": "38277", + "name": "Villarejo-Periesteban", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.87231000", + "longitude": "-2.44145000" + }, + { + "id": "38278", + "name": "Villares de Jadraque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10169000", + "longitude": "-3.02558000" + }, + { + "id": "38282", + "name": "Villares del Saz", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.84109000", + "longitude": "-2.50427000" + }, + { + "id": "38296", + "name": "Villarrobledo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.26992000", + "longitude": "-2.60119000" + }, + { + "id": "38303", + "name": "Villarrubia de los Ojos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.22085000", + "longitude": "-3.60802000" + }, + { + "id": "38302", + "name": "Villarrubia de Santiago", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98555000", + "longitude": "-3.36898000" + }, + { + "id": "38304", + "name": "Villarrubio", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.94511000", + "longitude": "-2.89431000" + }, + { + "id": "38306", + "name": "Villarta", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.45000000", + "longitude": "-1.65000000" + }, + { + "id": "38307", + "name": "Villarta de San Juan", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.23785000", + "longitude": "-3.42333000" + }, + { + "id": "38319", + "name": "Villaseca de Henares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96060000", + "longitude": "-2.79775000" + }, + { + "id": "38321", + "name": "Villaseca de la Sagra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96185000", + "longitude": "-3.88291000" + }, + { + "id": "38320", + "name": "Villaseca de Uceda", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81827000", + "longitude": "-3.34904000" + }, + { + "id": "38325", + "name": "Villasequilla de Yepes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.87582000", + "longitude": "-3.73110000" + }, + { + "id": "38330", + "name": "Villatobas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90187000", + "longitude": "-3.32386000" + }, + { + "id": "38332", + "name": "Villatoya", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33333000", + "longitude": "-1.30000000" + }, + { + "id": "38338", + "name": "Villavaliente", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.12646000", + "longitude": "-1.45712000" + }, + { + "id": "38344", + "name": "Villaverde de Guadalimar", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.45525000", + "longitude": "-2.51782000" + }, + { + "id": "38351", + "name": "Villaverde y Pasaconsol", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.77099000", + "longitude": "-2.26552000" + }, + { + "id": "38368", + "name": "Villel de Mesa", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12616000", + "longitude": "-1.99072000" + }, + { + "id": "38392", + "name": "Vindel", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58743000", + "longitude": "-2.38060000" + }, + { + "id": "38398", + "name": "Viso del Marqués", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.52208000", + "longitude": "-3.56348000" + }, + { + "id": "38406", + "name": "Viveros", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.77260000", + "longitude": "-2.57449000" + }, + { + "id": "38444", + "name": "Yélamos de Abajo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63092000", + "longitude": "-2.85803000" + }, + { + "id": "38445", + "name": "Yélamos de Arriba", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64008000", + "longitude": "-2.84340000" + }, + { + "id": "38446", + "name": "Yémeda", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76667000", + "longitude": "-1.71667000" + }, + { + "id": "38428", + "name": "Yebes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.53162000", + "longitude": "-3.10782000" + }, + { + "id": "38429", + "name": "Yebra", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35702000", + "longitude": "-2.96630000" + }, + { + "id": "38433", + "name": "Yeles", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12035000", + "longitude": "-3.80487000" + }, + { + "id": "38435", + "name": "Yepes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90199000", + "longitude": "-3.62517000" + }, + { + "id": "38438", + "name": "Yeste", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "38.36852000", + "longitude": "-2.31756000" + }, + { + "id": "38439", + "name": "Yuncler", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.04079000", + "longitude": "-3.89979000" + }, + { + "id": "38440", + "name": "Yuncos", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.08590000", + "longitude": "-3.87106000" + }, + { + "id": "38442", + "name": "Yunquera de Henares", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75139000", + "longitude": "-3.16260000" + }, + { + "id": "38451", + "name": "Zafra de Záncara", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89203000", + "longitude": "-2.55786000" + }, + { + "id": "38452", + "name": "Zafrilla", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20000000", + "longitude": "-1.61667000" + }, + { + "id": "38467", + "name": "Zaorejas", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76209000", + "longitude": "-2.20120000" + }, + { + "id": "38480", + "name": "Zarza de Tajo", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01591000", + "longitude": "-3.12877000" + }, + { + "id": "38484", + "name": "Zarzuela", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25902000", + "longitude": "-2.11034000" + }, + { + "id": "38485", + "name": "Zarzuela de Jadraque", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06838000", + "longitude": "-3.04436000" + }, + { + "id": "38497", + "name": "Zorita de los Canes", + "state_id": 1205, + "state_code": "CM", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33052000", + "longitude": "-2.88764000" + }, + { + "id": "31917", + "name": "Abrera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51682000", + "longitude": "1.90100000" + }, + { + "id": "31948", + "name": "Agramunt", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78686000", + "longitude": "1.09683000" + }, + { + "id": "31963", + "name": "Aguilar de Segarra", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74822000", + "longitude": "1.62919000" + }, + { + "id": "31967", + "name": "Agullana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39408000", + "longitude": "2.84666000" + }, + { + "id": "31980", + "name": "Aiguafreda", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76807000", + "longitude": "2.25051000" + }, + { + "id": "31981", + "name": "Aiguaviva", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93840000", + "longitude": "2.76217000" + }, + { + "id": "31983", + "name": "Aitona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48333000", + "longitude": "0.46667000" + }, + { + "id": "32345", + "name": "Alàs i Cerc", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35000000", + "longitude": "1.51667000" + }, + { + "id": "32043", + "name": "Albesa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75282000", + "longitude": "0.65936000" + }, + { + "id": "32050", + "name": "Albons", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10389000", + "longitude": "3.08433000" + }, + { + "id": "32083", + "name": "Alcanar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54316000", + "longitude": "0.48082000" + }, + { + "id": "32086", + "name": "Alcanó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48064000", + "longitude": "0.61659000" + }, + { + "id": "32089", + "name": "Alcarràs", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56667000", + "longitude": "0.51667000" + }, + { + "id": "32110", + "name": "Alcoletge", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64762000", + "longitude": "0.69383000" + }, + { + "id": "32122", + "name": "Alcover", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26267000", + "longitude": "1.17010000" + }, + { + "id": "32183", + "name": "Alella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49379000", + "longitude": "2.29451000" + }, + { + "id": "32201", + "name": "Alfarràs", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81667000", + "longitude": "0.58333000" + }, + { + "id": "32207", + "name": "Alfés", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52143000", + "longitude": "0.62050000" + }, + { + "id": "32204", + "name": "Alforja", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21108000", + "longitude": "0.97542000" + }, + { + "id": "32218", + "name": "Algerri", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81482000", + "longitude": "0.63633000" + }, + { + "id": "32228", + "name": "Alguaire", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73703000", + "longitude": "0.58450000" + }, + { + "id": "32250", + "name": "Alió", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29422000", + "longitude": "1.30585000" + }, + { + "id": "32259", + "name": "Almacelles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73216000", + "longitude": "0.43722000" + }, + { + "id": "32280", + "name": "Almenar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79604000", + "longitude": "0.56834000" + }, + { + "id": "32308", + "name": "Almoster", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19758000", + "longitude": "1.11167000" + }, + { + "id": "32328", + "name": "Alpens", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11930000", + "longitude": "2.10135000" + }, + { + "id": "32331", + "name": "Alpicat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66570000", + "longitude": "0.55564000" + }, + { + "id": "32338", + "name": "Altafulla", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14286000", + "longitude": "1.37269000" + }, + { + "id": "32358", + "name": "Amposta", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70995000", + "longitude": "0.57856000" + }, + { + "id": "32379", + "name": "Anglès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95617000", + "longitude": "2.63603000" + }, + { + "id": "32378", + "name": "Anglesola", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65649000", + "longitude": "1.08286000" + }, + { + "id": "32427", + "name": "Arbúcies", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81667000", + "longitude": "2.51667000" + }, + { + "id": "32422", + "name": "Arbeca", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54153000", + "longitude": "0.92457000" + }, + { + "id": "32451", + "name": "Arenys de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58190000", + "longitude": "2.54936000" + }, + { + "id": "32452", + "name": "Arenys de Munt", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61424000", + "longitude": "2.53972000" + }, + { + "id": "32468", + "name": "Argelaguer", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21563000", + "longitude": "2.64193000" + }, + { + "id": "32471", + "name": "Argentona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55336000", + "longitude": "2.40114000" + }, + { + "id": "32527", + "name": "Artés", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79800000", + "longitude": "1.95428000" + }, + { + "id": "32524", + "name": "Artesa de Segre", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89467000", + "longitude": "1.04625000" + }, + { + "id": "32534", + "name": "Ascó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18333000", + "longitude": "0.56667000" + }, + { + "id": "32535", + "name": "Aspa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49472000", + "longitude": "0.67277000" + }, + { + "id": "32568", + "name": "Avinyó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86367000", + "longitude": "1.97095000" + }, + { + "id": "38581", + "name": "Òdena", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60000000", + "longitude": "1.65000000" + }, + { + "id": "38582", + "name": "Òrrius", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55000000", + "longitude": "2.35000000" + }, + { + "id": "38578", + "name": "Éller", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41636000", + "longitude": "1.79223000" + }, + { + "id": "38571", + "name": "Àger", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00000000", + "longitude": "0.76667000" + }, + { + "id": "32602", + "name": "Badalona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45004000", + "longitude": "2.24741000" + }, + { + "id": "32609", + "name": "Bagà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25289000", + "longitude": "1.86098000" + }, + { + "id": "32619", + "name": "Balaguer", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79117000", + "longitude": "0.81094000" + }, + { + "id": "32628", + "name": "Balsareny", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86311000", + "longitude": "1.87356000" + }, + { + "id": "32634", + "name": "Banyoles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11667000", + "longitude": "2.76667000" + }, + { + "id": "32686", + "name": "Baró de Viver", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44584000", + "longitude": "2.19902000" + }, + { + "id": "32647", + "name": "Barberà del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51590000", + "longitude": "2.12457000" + }, + { + "id": "32653", + "name": "Barcelona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38879000", + "longitude": "2.15899000" + }, + { + "id": "32675", + "name": "Barri de les Corts", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38697000", + "longitude": "2.13472000" + }, + { + "id": "32674", + "name": "Barri de Sant Andreu", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43693000", + "longitude": "2.19022000" + }, + { + "id": "32673", + "name": "Barri Gòtic", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38364000", + "longitude": "2.17628000" + }, + { + "id": "32693", + "name": "Batea", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09434000", + "longitude": "0.31100000" + }, + { + "id": "33047", + "name": "Bàscara", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15998000", + "longitude": "2.91028000" + }, + { + "id": "32728", + "name": "Begues", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33333000", + "longitude": "1.93333000" + }, + { + "id": "32729", + "name": "Begur", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95000000", + "longitude": "3.21667000" + }, + { + "id": "32740", + "name": "Bellcaire d'Urgell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75000000", + "longitude": "0.91667000" + }, + { + "id": "32742", + "name": "Bellprat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51695000", + "longitude": "1.43333000" + }, + { + "id": "32743", + "name": "Bellpuig", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62595000", + "longitude": "1.01144000" + }, + { + "id": "32746", + "name": "Bellvís", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67269000", + "longitude": "0.81768000" + }, + { + "id": "32745", + "name": "Bellver de Cerdanya", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36667000", + "longitude": "1.78333000" + }, + { + "id": "32803", + "name": "Benifallet", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97422000", + "longitude": "0.51767000" + }, + { + "id": "32846", + "name": "Berga", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10429000", + "longitude": "1.84628000" + }, + { + "id": "32877", + "name": "Besalú", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19893000", + "longitude": "2.69953000" + }, + { + "id": "32878", + "name": "Bescanó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96603000", + "longitude": "2.73922000" + }, + { + "id": "32883", + "name": "Beuda", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23722000", + "longitude": "2.70942000" + }, + { + "id": "32893", + "name": "Bigues i Riells", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68333000", + "longitude": "2.23333000" + }, + { + "id": "32906", + "name": "Blancafort", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43740000", + "longitude": "1.15983000" + }, + { + "id": "32909", + "name": "Blanes", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67419000", + "longitude": "2.79036000" + }, + { + "id": "32942", + "name": "Bolvir", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41775000", + "longitude": "1.87986000" + }, + { + "id": "32945", + "name": "Bonastre", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22031000", + "longitude": "1.43936000" + }, + { + "id": "32952", + "name": "Bordils", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04336000", + "longitude": "2.91088000" + }, + { + "id": "32960", + "name": "Borrassà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22316000", + "longitude": "2.92610000" + }, + { + "id": "32963", + "name": "Bot", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00916000", + "longitude": "0.38392000" + }, + { + "id": "32964", + "name": "Botarell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13627000", + "longitude": "0.98919000" + }, + { + "id": "32976", + "name": "Breda", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74833000", + "longitude": "2.55964000" + }, + { + "id": "33066", + "name": "Cabanelles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23068000", + "longitude": "2.81997000" + }, + { + "id": "33104", + "name": "Cabrera de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51667000", + "longitude": "2.40000000" + }, + { + "id": "33111", + "name": "Cabrils", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52760000", + "longitude": "2.36996000" + }, + { + "id": "33116", + "name": "Cadaqués", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28856000", + "longitude": "3.27706000" + }, + { + "id": "33124", + "name": "Calaf", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73289000", + "longitude": "1.51375000" + }, + { + "id": "33125", + "name": "Calafell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19997000", + "longitude": "1.56830000" + }, + { + "id": "33138", + "name": "Caldes de Montbui", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63333000", + "longitude": "2.16667000" + }, + { + "id": "33139", + "name": "Calella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61381000", + "longitude": "2.65423000" + }, + { + "id": "33150", + "name": "Calonge", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85869000", + "longitude": "3.07926000" + }, + { + "id": "33163", + "name": "Camarasa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87486000", + "longitude": "0.87814000" + }, + { + "id": "33215", + "name": "Camós", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08776000", + "longitude": "2.76288000" + }, + { + "id": "33177", + "name": "Cambrils", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06997000", + "longitude": "1.05949000" + }, + { + "id": "33185", + "name": "Campdevànol", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22445000", + "longitude": "2.16860000" + }, + { + "id": "33198", + "name": "Campins", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71667000", + "longitude": "2.46667000" + }, + { + "id": "33213", + "name": "Camprodon", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31185000", + "longitude": "2.36506000" + }, + { + "id": "33216", + "name": "Can Baró", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41677000", + "longitude": "2.16242000" + }, + { + "id": "33218", + "name": "Can Peguera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43487000", + "longitude": "2.16646000" + }, + { + "id": "33234", + "name": "Canet de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59054000", + "longitude": "2.58116000" + }, + { + "id": "33246", + "name": "Canovelles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61667000", + "longitude": "2.28333000" + }, + { + "id": "33252", + "name": "Cantallops", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42216000", + "longitude": "2.92524000" + }, + { + "id": "33261", + "name": "Canyelles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44509000", + "longitude": "2.16346000" + }, + { + "id": "33262", + "name": "Capafonts", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.30000000", + "longitude": "1.03333000" + }, + { + "id": "33267", + "name": "Capellades", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53005000", + "longitude": "1.68651000" + }, + { + "id": "33271", + "name": "Capmany", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37351000", + "longitude": "2.92026000" + }, + { + "id": "33296", + "name": "Cardedeu", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63976000", + "longitude": "2.35739000" + }, + { + "id": "33304", + "name": "Cardona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91371000", + "longitude": "1.67855000" + }, + { + "id": "33395", + "name": "Cassà de la Selva", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88784000", + "longitude": "2.87524000" + }, + { + "id": "33413", + "name": "Castell-Platja d'Aro", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81751000", + "longitude": "3.06742000" + }, + { + "id": "33422", + "name": "Castellar del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61667000", + "longitude": "2.08333000" + }, + { + "id": "33436", + "name": "Castelló d'Empúries", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25673000", + "longitude": "3.07446000" + }, + { + "id": "33423", + "name": "Castellbisbal", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47534000", + "longitude": "1.98174000" + }, + { + "id": "33424", + "name": "Castellcir", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76074000", + "longitude": "2.16128000" + }, + { + "id": "33425", + "name": "Castelldefels", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27794000", + "longitude": "1.97033000" + }, + { + "id": "33426", + "name": "Castellet", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26281000", + "longitude": "1.63369000" + }, + { + "id": "33427", + "name": "Castellfollit de Riubregós", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76667000", + "longitude": "1.43333000" + }, + { + "id": "33429", + "name": "Castellnou de Seana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64802000", + "longitude": "0.97093000" + }, + { + "id": "33431", + "name": "Castellolí", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59829000", + "longitude": "1.70057000" + }, + { + "id": "33434", + "name": "Castellserà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75000000", + "longitude": "1.00000000" + }, + { + "id": "33435", + "name": "Castellví de Rosanes", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45000000", + "longitude": "1.90000000" + }, + { + "id": "33890", + "name": "Cànoves i Samalús", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68333000", + "longitude": "2.35000000" + }, + { + "id": "33566", + "name": "Celrà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03333000", + "longitude": "2.88333000" + }, + { + "id": "33573", + "name": "Centelles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79746000", + "longitude": "2.21902000" + }, + { + "id": "33580", + "name": "Cerdanyola del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49109000", + "longitude": "2.14079000" + }, + { + "id": "33594", + "name": "Cervelló", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39587000", + "longitude": "1.95917000" + }, + { + "id": "33595", + "name": "Cervera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67003000", + "longitude": "1.27210000" + }, + { + "id": "33605", + "name": "Cervià de Ter", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06650000", + "longitude": "2.90743000" + }, + { + "id": "33692", + "name": "Cistella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26870000", + "longitude": "2.84780000" + }, + { + "id": "33700", + "name": "Ciutadilla", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56113000", + "longitude": "1.13935000" + }, + { + "id": "33701", + "name": "Ciutat Meridiana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46119000", + "longitude": "2.17494000" + }, + { + "id": "33702", + "name": "Ciutat Vella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38022000", + "longitude": "2.17319000" + }, + { + "id": "33726", + "name": "Colera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40394000", + "longitude": "3.15153000" + }, + { + "id": "33730", + "name": "Coll de Nargó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17473000", + "longitude": "1.31694000" + }, + { + "id": "33738", + "name": "Collbató", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57009000", + "longitude": "1.82712000" + }, + { + "id": "33739", + "name": "Colldejou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09970000", + "longitude": "0.88717000" + }, + { + "id": "33740", + "name": "Collsuspina", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82580000", + "longitude": "2.17546000" + }, + { + "id": "33750", + "name": "Coma-ruga", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17995000", + "longitude": "1.52538000" + }, + { + "id": "33756", + "name": "Conesa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51667000", + "longitude": "1.30000000" + }, + { + "id": "33766", + "name": "Constantí", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15392000", + "longitude": "1.21262000" + }, + { + "id": "33775", + "name": "Corbera de Llobregat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41702000", + "longitude": "1.91970000" + }, + { + "id": "33777", + "name": "Corbins", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68333000", + "longitude": "0.70000000" + }, + { + "id": "33794", + "name": "Cornellà de Llobregat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35000000", + "longitude": "2.08333000" + }, + { + "id": "33795", + "name": "Cornellà del Terri", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08333000", + "longitude": "2.81667000" + }, + { + "id": "33832", + "name": "Creixell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16618000", + "longitude": "1.44032000" + }, + { + "id": "33833", + "name": "Crespià", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18333000", + "longitude": "2.80000000" + }, + { + "id": "33840", + "name": "Cruïlles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95000000", + "longitude": "3.01667000" + }, + { + "id": "33847", + "name": "Cubelles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20772000", + "longitude": "1.67267000" + }, + { + "id": "33848", + "name": "Cubells", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85062000", + "longitude": "0.95900000" + }, + { + "id": "33884", + "name": "Cunit", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19829000", + "longitude": "1.63645000" + }, + { + "id": "33912", + "name": "Darnius", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36667000", + "longitude": "2.83333000" + }, + { + "id": "33925", + "name": "Deltebre", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71944000", + "longitude": "0.70835000" + }, + { + "id": "33932", + "name": "Diagonal Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40897000", + "longitude": "2.21615000" + }, + { + "id": "33952", + "name": "Dosrius", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58333000", + "longitude": "2.41667000" + }, + { + "id": "33957", + "name": "Dreta de l'Eixample", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39606000", + "longitude": "2.16688000" + }, + { + "id": "33973", + "name": "Eixample", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38896000", + "longitude": "2.16179000" + }, + { + "id": "38514", + "name": "el Baix Guinardó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41175000", + "longitude": "2.16784000" + }, + { + "id": "38515", + "name": "el Besòs i el Maresme", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41309000", + "longitude": "2.21736000" + }, + { + "id": "38516", + "name": "el Bon Pastor", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43700000", + "longitude": "2.20182000" + }, + { + "id": "38517", + "name": "el Camp d'en Grassot i Gràcia Nova", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40634000", + "longitude": "2.16503000" + }, + { + "id": "38518", + "name": "el Camp de l'Arpa del Clot", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41204000", + "longitude": "2.18247000" + }, + { + "id": "33985", + "name": "El Carmel", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41758000", + "longitude": "2.15914000" + }, + { + "id": "38519", + "name": "el Catllar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16667000", + "longitude": "1.31667000" + }, + { + "id": "38520", + "name": "el Clot", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40986000", + "longitude": "2.19053000" + }, + { + "id": "38521", + "name": "el Cogul", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46667000", + "longitude": "0.68333000" + }, + { + "id": "38522", + "name": "el Coll", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41721000", + "longitude": "2.14723000" + }, + { + "id": "38523", + "name": "el Congrés i els Indians", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42460000", + "longitude": "2.18086000" + }, + { + "id": "38524", + "name": "el Guinardó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41885000", + "longitude": "2.17364000" + }, + { + "id": "34001", + "name": "El Masnou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47978000", + "longitude": "2.31880000" + }, + { + "id": "38525", + "name": "el Masroig", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13333000", + "longitude": "0.73333000" + }, + { + "id": "38526", + "name": "el Parc i la Llacuna del Poblenou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39860000", + "longitude": "2.19030000" + }, + { + "id": "34007", + "name": "El Perelló", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87431000", + "longitude": "0.71125000" + }, + { + "id": "34008", + "name": "El Pla de Santa Maria", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36336000", + "longitude": "1.29152000" + }, + { + "id": "38527", + "name": "el Poblenou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40392000", + "longitude": "2.20413000" + }, + { + "id": "34010", + "name": "El Prat de Llobregat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.32784000", + "longitude": "2.09472000" + }, + { + "id": "38528", + "name": "el Putxet i el Farró", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40693000", + "longitude": "2.14392000" + }, + { + "id": "38529", + "name": "el Raval", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38042000", + "longitude": "2.16860000" + }, + { + "id": "38531", + "name": "el Turó de la Peira", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43232000", + "longitude": "2.16895000" + }, + { + "id": "34025", + "name": "El Vendrell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21667000", + "longitude": "1.53333000" + }, + { + "id": "38532", + "name": "els Pallaresos", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17491000", + "longitude": "1.27090000" + }, + { + "id": "34043", + "name": "Empuriabrava", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24691000", + "longitude": "3.12059000" + }, + { + "id": "34108", + "name": "Esparreguera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53809000", + "longitude": "1.87025000" + }, + { + "id": "34127", + "name": "Esplugues de Llobregat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37732000", + "longitude": "2.08809000" + }, + { + "id": "34129", + "name": "Espolla", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39120000", + "longitude": "3.00064000" + }, + { + "id": "34130", + "name": "Esponellà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16667000", + "longitude": "2.80000000" + }, + { + "id": "34132", + "name": "Espot", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57838000", + "longitude": "1.08666000" + }, + { + "id": "34159", + "name": "Falset", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14576000", + "longitude": "0.81979000" + }, + { + "id": "34166", + "name": "Farrera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49654000", + "longitude": "1.27216000" + }, + { + "id": "34183", + "name": "Figaró", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72122000", + "longitude": "2.27297000" + }, + { + "id": "34184", + "name": "Figueres", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26645000", + "longitude": "2.96163000" + }, + { + "id": "34195", + "name": "Flix", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23074000", + "longitude": "0.55008000" + }, + { + "id": "34199", + "name": "Foixà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03626000", + "longitude": "3.00021000" + }, + { + "id": "34209", + "name": "Fonollosa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76303000", + "longitude": "1.66867000" + }, + { + "id": "34233", + "name": "Forès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48333000", + "longitude": "1.23333000" + }, + { + "id": "34225", + "name": "Fornells de la Selva", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93159000", + "longitude": "2.80907000" + }, + { + "id": "34227", + "name": "Fort Pienc", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39458000", + "longitude": "2.17946000" + }, + { + "id": "34230", + "name": "Fortià", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24320000", + "longitude": "3.03881000" + }, + { + "id": "34364", + "name": "Fulleda", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46334000", + "longitude": "1.02395000" + }, + { + "id": "34392", + "name": "Gallifa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69243000", + "longitude": "2.11346000" + }, + { + "id": "34402", + "name": "Gandesa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05375000", + "longitude": "0.43850000" + }, + { + "id": "34408", + "name": "Garcia", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13333000", + "longitude": "0.65000000" + }, + { + "id": "34425", + "name": "Garrigàs", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19343000", + "longitude": "2.95438000" + }, + { + "id": "34424", + "name": "Garriguella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34392000", + "longitude": "3.06506000" + }, + { + "id": "34441", + "name": "Gavà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.30605000", + "longitude": "2.00123000" + }, + { + "id": "34565", + "name": "Gósol", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23697000", + "longitude": "1.66010000" + }, + { + "id": "34446", + "name": "Gelida", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43333000", + "longitude": "1.86667000" + }, + { + "id": "34468", + "name": "Ginestar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04184000", + "longitude": "0.63290000" + }, + { + "id": "34470", + "name": "Girona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98311000", + "longitude": "2.82493000" + }, + { + "id": "34471", + "name": "Gironella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03433000", + "longitude": "1.88019000" + }, + { + "id": "34479", + "name": "Golmés", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63354000", + "longitude": "0.93125000" + }, + { + "id": "34499", + "name": "Granera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72741000", + "longitude": "2.05924000" + }, + { + "id": "34503", + "name": "Granollers", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60797000", + "longitude": "2.28773000" + }, + { + "id": "34517", + "name": "Gràcia", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40237000", + "longitude": "2.15641000" + }, + { + "id": "34534", + "name": "Gualta", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02953000", + "longitude": "3.10312000" + }, + { + "id": "34549", + "name": "Guimerà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56450000", + "longitude": "1.18528000" + }, + { + "id": "34553", + "name": "Gurb", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95419000", + "longitude": "2.23537000" + }, + { + "id": "34665", + "name": "Horta", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43628000", + "longitude": "2.15725000" + }, + { + "id": "34666", + "name": "Horta-Guinardó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41849000", + "longitude": "2.16770000" + }, + { + "id": "34670", + "name": "Hostafrancs", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37694000", + "longitude": "2.14306000" + }, + { + "id": "34671", + "name": "Hostalric", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75000000", + "longitude": "2.63333000" + }, + { + "id": "34739", + "name": "Igualada", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58098000", + "longitude": "1.61720000" + }, + { + "id": "34777", + "name": "Ivorra", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76667000", + "longitude": "1.40000000" + }, + { + "id": "34790", + "name": "Jafre", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07254000", + "longitude": "3.01062000" + }, + { + "id": "34821", + "name": "Jorba", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60193000", + "longitude": "1.54750000" + }, + { + "id": "34827", + "name": "Juià", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01667000", + "longitude": "2.91667000" + }, + { + "id": "34831", + "name": "Juncosa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37033000", + "longitude": "0.77650000" + }, + { + "id": "34832", + "name": "Juneda", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54847000", + "longitude": "0.82451000" + }, + { + "id": "34843", + "name": "L'Ametlla del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66667000", + "longitude": "2.26667000" + }, + { + "id": "34844", + "name": "L'Ampolla", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81235000", + "longitude": "0.71008000" + }, + { + "id": "38536", + "name": "l'Antiga Esquerra de l'Eixample", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38939000", + "longitude": "2.15517000" + }, + { + "id": "38537", + "name": "l'Escala", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12562000", + "longitude": "3.13261000" + }, + { + "id": "38538", + "name": "l'Estartit", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05340000", + "longitude": "3.19767000" + }, + { + "id": "34846", + "name": "L'Hospitalet de Llobregat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35967000", + "longitude": "2.10028000" + }, + { + "id": "38539", + "name": "la Barceloneta", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37990000", + "longitude": "2.18971000" + }, + { + "id": "38540", + "name": "la Bisbal d'Empordà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95000000", + "longitude": "3.05000000" + }, + { + "id": "34857", + "name": "La Bonanova", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40585000", + "longitude": "2.13243000" + }, + { + "id": "34858", + "name": "La Bordeta", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37397000", + "longitude": "2.14377000" + }, + { + "id": "34863", + "name": "La Canonja", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12110000", + "longitude": "1.18065000" + }, + { + "id": "38541", + "name": "la Cellera de Ter", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96919000", + "longitude": "2.62402000" + }, + { + "id": "38542", + "name": "la Fatarella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16667000", + "longitude": "0.48333000" + }, + { + "id": "38543", + "name": "la Font d'en Fargues", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42461000", + "longitude": "2.16526000" + }, + { + "id": "38544", + "name": "la Font de la Guatlla", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36978000", + "longitude": "2.14486000" + }, + { + "id": "34874", + "name": "La Fuliola", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71358000", + "longitude": "1.01746000" + }, + { + "id": "38545", + "name": "la Garriga", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68333000", + "longitude": "2.28333000" + }, + { + "id": "34879", + "name": "La Granada", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37816000", + "longitude": "1.71902000" + }, + { + "id": "38546", + "name": "la Granadella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35000000", + "longitude": "0.66667000" + }, + { + "id": "38547", + "name": "la Granja d'Escarp", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41667000", + "longitude": "0.36667000" + }, + { + "id": "38548", + "name": "la Guineueta", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43884000", + "longitude": "2.16893000" + }, + { + "id": "34890", + "name": "La Llagosta", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51435000", + "longitude": "2.19297000" + }, + { + "id": "38549", + "name": "la Marina de Port", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36000000", + "longitude": "2.13986000" + }, + { + "id": "38550", + "name": "la Marina del Prat Vermell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33937000", + "longitude": "2.14262000" + }, + { + "id": "38551", + "name": "la Maternitat i Sant Ramon", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38125000", + "longitude": "2.11744000" + }, + { + "id": "38552", + "name": "la Morera de Montsant", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26529000", + "longitude": "0.84157000" + }, + { + "id": "38553", + "name": "la Nova Esquerra de l'Eixample", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38309000", + "longitude": "2.14900000" + }, + { + "id": "34903", + "name": "La Pineda", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07625000", + "longitude": "1.18515000" + }, + { + "id": "34905", + "name": "La Pobla de Claramunt", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55423000", + "longitude": "1.67712000" + }, + { + "id": "38555", + "name": "la Pobla de Mafumet", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18333000", + "longitude": "1.21667000" + }, + { + "id": "38556", + "name": "la Prosperitat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44269000", + "longitude": "2.18200000" + }, + { + "id": "34920", + "name": "La Roca del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58333000", + "longitude": "2.33333000" + }, + { + "id": "34924", + "name": "La Sagrera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42271000", + "longitude": "2.18589000" + }, + { + "id": "38557", + "name": "la Salut", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41243000", + "longitude": "2.15437000" + }, + { + "id": "34926", + "name": "La Secuita", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20460000", + "longitude": "1.27996000" + }, + { + "id": "34927", + "name": "La Selva del Camp", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21484000", + "longitude": "1.13883000" + }, + { + "id": "34928", + "name": "La Seu d'Urgell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35877000", + "longitude": "1.46144000" + }, + { + "id": "38558", + "name": "la Teixonera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42307000", + "longitude": "2.14654000" + }, + { + "id": "38559", + "name": "la Trinitat Nova", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45051000", + "longitude": "2.18481000" + }, + { + "id": "38560", + "name": "la Trinitat Vella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45166000", + "longitude": "2.19289000" + }, + { + "id": "38561", + "name": "la Vall d'Hebron", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43038000", + "longitude": "2.14830000" + }, + { + "id": "38562", + "name": "la Verneda i la Pau", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42399000", + "longitude": "2.20304000" + }, + { + "id": "38564", + "name": "la Vila de Gràcia", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40315000", + "longitude": "2.15687000" + }, + { + "id": "38563", + "name": "la Vila Olímpica del Poblenou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39074000", + "longitude": "2.19679000" + }, + { + "id": "34994", + "name": "Las Tres Torres", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39989000", + "longitude": "2.12931000" + }, + { + "id": "35034", + "name": "Les", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81076000", + "longitude": "0.71050000" + }, + { + "id": "38565", + "name": "les Borges del Camp", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16667000", + "longitude": "1.01667000" + }, + { + "id": "35035", + "name": "Les Cases d'Alcanar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55359000", + "longitude": "0.53022000" + }, + { + "id": "35036", + "name": "Les Corts", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38712000", + "longitude": "2.13007000" + }, + { + "id": "38566", + "name": "les Llosses", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15000000", + "longitude": "2.11667000" + }, + { + "id": "38567", + "name": "les Planes d'Hostoles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05669000", + "longitude": "2.54093000" + }, + { + "id": "38568", + "name": "les Roquetes", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44809000", + "longitude": "2.17519000" + }, + { + "id": "35056", + "name": "Linyola", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70000000", + "longitude": "0.91667000" + }, + { + "id": "35063", + "name": "Lladó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24769000", + "longitude": "2.81373000" + }, + { + "id": "35064", + "name": "Llagostera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82688000", + "longitude": "2.89365000" + }, + { + "id": "35066", + "name": "Llambilles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92106000", + "longitude": "2.85078000" + }, + { + "id": "35070", + "name": "Llançà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36241000", + "longitude": "3.15213000" + }, + { + "id": "35073", + "name": "Llefià", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43806000", + "longitude": "2.21950000" + }, + { + "id": "35074", + "name": "Lleida", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61674000", + "longitude": "0.62218000" + }, + { + "id": "35077", + "name": "Llers", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29571000", + "longitude": "2.91183000" + }, + { + "id": "35078", + "name": "Lles de Cerdanya", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39025000", + "longitude": "1.68692000" + }, + { + "id": "35081", + "name": "Lliçà d'Amunt", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61667000", + "longitude": "2.23333000" + }, + { + "id": "35079", + "name": "Llimiana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07476000", + "longitude": "0.91621000" + }, + { + "id": "35080", + "name": "Llinars del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63333000", + "longitude": "2.40000000" + }, + { + "id": "35084", + "name": "Lloret de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69993000", + "longitude": "2.84565000" + }, + { + "id": "35185", + "name": "Madremanya", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98333000", + "longitude": "2.96667000" + }, + { + "id": "35223", + "name": "Malgrat de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64662000", + "longitude": "2.74135000" + }, + { + "id": "35254", + "name": "Manlleu", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00228000", + "longitude": "2.28476000" + }, + { + "id": "35256", + "name": "Manresa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72815000", + "longitude": "1.82399000" + }, + { + "id": "35288", + "name": "Margalef", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28496000", + "longitude": "0.75331000" + }, + { + "id": "35301", + "name": "Martorell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47402000", + "longitude": "1.93062000" + }, + { + "id": "35315", + "name": "Mas de Barberans", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.73333000", + "longitude": "0.36667000" + }, + { + "id": "35319", + "name": "Masdenverge", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71600000", + "longitude": "0.53009000" + }, + { + "id": "35325", + "name": "Masquefa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50353000", + "longitude": "1.81136000" + }, + { + "id": "35327", + "name": "Massanes", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76536000", + "longitude": "2.65324000" + }, + { + "id": "35332", + "name": "Matadepera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59886000", + "longitude": "2.02648000" + }, + { + "id": "35340", + "name": "Mataró", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54211000", + "longitude": "2.44450000" + }, + { + "id": "35376", + "name": "Mediona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47798000", + "longitude": "1.61222000" + }, + { + "id": "35444", + "name": "Miralcamp", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60516000", + "longitude": "0.87987000" + }, + { + "id": "35454", + "name": "Miravet", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03930000", + "longitude": "0.59665000" + }, + { + "id": "35472", + "name": "Moià", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81112000", + "longitude": "2.09839000" + }, + { + "id": "35484", + "name": "Molins de Rei", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41667000", + "longitude": "2.01667000" + }, + { + "id": "35486", + "name": "Mollerussa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63333000", + "longitude": "0.90000000" + }, + { + "id": "35487", + "name": "Mollet de Peralada", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35959000", + "longitude": "3.00034000" + }, + { + "id": "35488", + "name": "Mollet del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54026000", + "longitude": "2.21306000" + }, + { + "id": "35517", + "name": "Monistrol de Montserrat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61667000", + "longitude": "1.85000000" + }, + { + "id": "35528", + "name": "Mont-roig del Camp", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08675000", + "longitude": "0.95925000" + }, + { + "id": "35538", + "name": "Montbau", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43529000", + "longitude": "2.13781000" + }, + { + "id": "35539", + "name": "Montblanc", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37636000", + "longitude": "1.16163000" + }, + { + "id": "35540", + "name": "Montcada i Reixac", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48333000", + "longitude": "2.18333000" + }, + { + "id": "35572", + "name": "Montferri", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26545000", + "longitude": "1.36517000" + }, + { + "id": "35573", + "name": "Montgat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46859000", + "longitude": "2.28001000" + }, + { + "id": "35580", + "name": "Montmeló", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55002000", + "longitude": "2.24190000" + }, + { + "id": "35582", + "name": "Montornès del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54206000", + "longitude": "2.26748000" + }, + { + "id": "35668", + "name": "Mura", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69943000", + "longitude": "1.97612000" + }, + { + "id": "35765", + "name": "Navarcles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75171000", + "longitude": "1.90357000" + }, + { + "id": "35776", + "name": "Navas", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41803000", + "longitude": "2.18596000" + }, + { + "id": "35786", + "name": "Navata", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22353000", + "longitude": "2.86110000" + }, + { + "id": "35792", + "name": "Navàs", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89998000", + "longitude": "1.87763000" + }, + { + "id": "35825", + "name": "Nou Barris", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44163000", + "longitude": "2.17727000" + }, + { + "id": "35878", + "name": "Olesa de Bonesvalls", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35435000", + "longitude": "1.84907000" + }, + { + "id": "35879", + "name": "Olesa de Montserrat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54372000", + "longitude": "1.89407000" + }, + { + "id": "35880", + "name": "Oliana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06895000", + "longitude": "1.31353000" + }, + { + "id": "35883", + "name": "Olius", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01035000", + "longitude": "1.56460000" + }, + { + "id": "35891", + "name": "Olivella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31667000", + "longitude": "1.81667000" + }, + { + "id": "35911", + "name": "Olost", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98540000", + "longitude": "2.09457000" + }, + { + "id": "35912", + "name": "Olot", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18096000", + "longitude": "2.49012000" + }, + { + "id": "35966", + "name": "Orís", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05967000", + "longitude": "2.22066000" + }, + { + "id": "35940", + "name": "Ordis", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21830000", + "longitude": "2.90705000" + }, + { + "id": "35953", + "name": "Oristà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93333000", + "longitude": "2.06667000" + }, + { + "id": "35960", + "name": "Orpí", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51870000", + "longitude": "1.57536000" + }, + { + "id": "35968", + "name": "Os de Balaguer", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87314000", + "longitude": "0.72017000" + }, + { + "id": "35974", + "name": "Ossó de Sió", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75485000", + "longitude": "1.15900000" + }, + { + "id": "36014", + "name": "Palafrugell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91738000", + "longitude": "3.16310000" + }, + { + "id": "36015", + "name": "Palamós", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84843000", + "longitude": "3.12912000" + }, + { + "id": "36017", + "name": "Palau-sator", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98897000", + "longitude": "3.11016000" + }, + { + "id": "36026", + "name": "Pallejà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42394000", + "longitude": "1.99505000" + }, + { + "id": "36034", + "name": "Palol de Revardit", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06667000", + "longitude": "2.80000000" + }, + { + "id": "36042", + "name": "Pals", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97102000", + "longitude": "3.14814000" + }, + { + "id": "36069", + "name": "Parets del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57481000", + "longitude": "2.23306000" + }, + { + "id": "36083", + "name": "Pau", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31607000", + "longitude": "3.11621000" + }, + { + "id": "36091", + "name": "Pedralbes", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39046000", + "longitude": "2.11019000" + }, + { + "id": "36186", + "name": "Piera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52232000", + "longitude": "1.75076000" + }, + { + "id": "36197", + "name": "Pineda de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62763000", + "longitude": "2.68890000" + }, + { + "id": "36235", + "name": "Planoles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31667000", + "longitude": "2.10000000" + }, + { + "id": "36253", + "name": "Poble Sec", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37452000", + "longitude": "2.16326000" + }, + { + "id": "36260", + "name": "Polinyà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55000000", + "longitude": "2.15000000" + }, + { + "id": "36271", + "name": "Pont de Molins", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31440000", + "longitude": "2.92996000" + }, + { + "id": "36276", + "name": "Pontós", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18665000", + "longitude": "2.91706000" + }, + { + "id": "36274", + "name": "Pontils", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47734000", + "longitude": "1.38772000" + }, + { + "id": "36275", + "name": "Ponts", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91607000", + "longitude": "1.18515000" + }, + { + "id": "36284", + "name": "Porta", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43490000", + "longitude": "2.17883000" + }, + { + "id": "36287", + "name": "Portbou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42650000", + "longitude": "3.15805000" + }, + { + "id": "36350", + "name": "Premià de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49206000", + "longitude": "2.36524000" + }, + { + "id": "36395", + "name": "Província de Barcelona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66667000", + "longitude": "2.00000000" + }, + { + "id": "36397", + "name": "Província de Girona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98916000", + "longitude": "2.81113000" + }, + { + "id": "36398", + "name": "Província de Lleida", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61878000", + "longitude": "0.57472000" + }, + { + "id": "36399", + "name": "Província de Tarragona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12902000", + "longitude": "1.24901000" + }, + { + "id": "36357", + "name": "Provenals del Poblenou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41109000", + "longitude": "2.20260000" + }, + { + "id": "36462", + "name": "Puigcerdà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43160000", + "longitude": "1.92819000" + }, + { + "id": "36463", + "name": "Puigpelat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27899000", + "longitude": "1.29713000" + }, + { + "id": "36465", + "name": "Pujalt", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71710000", + "longitude": "1.42088000" + }, + { + "id": "36489", + "name": "Quart d’Onyar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94047000", + "longitude": "2.84079000" + }, + { + "id": "36496", + "name": "Querol", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42293000", + "longitude": "1.39684000" + }, + { + "id": "36537", + "name": "Rabós", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37890000", + "longitude": "3.02828000" + }, + { + "id": "36543", + "name": "Rajadell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72802000", + "longitude": "1.70621000" + }, + { + "id": "36549", + "name": "Rasquera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00267000", + "longitude": "0.59967000" + }, + { + "id": "36564", + "name": "Regencós", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95271000", + "longitude": "3.17006000" + }, + { + "id": "36576", + "name": "Renau", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22448000", + "longitude": "1.31083000" + }, + { + "id": "36592", + "name": "Reus", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15612000", + "longitude": "1.10687000" + }, + { + "id": "36617", + "name": "Ribes de Freser", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30417000", + "longitude": "2.16757000" + }, + { + "id": "36632", + "name": "Ripoll", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20064000", + "longitude": "2.19033000" + }, + { + "id": "36633", + "name": "Ripollet", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49686000", + "longitude": "2.15739000" + }, + { + "id": "36634", + "name": "Riudecanyes", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13333000", + "longitude": "0.96667000" + }, + { + "id": "36635", + "name": "Riudecols", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16900000", + "longitude": "0.97625000" + }, + { + "id": "36636", + "name": "Riudellots de la Selva", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89327000", + "longitude": "2.80452000" + }, + { + "id": "36637", + "name": "Riudoms", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13333000", + "longitude": "1.05000000" + }, + { + "id": "36638", + "name": "Riumors", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22726000", + "longitude": "3.04190000" + }, + { + "id": "36661", + "name": "Roda de Barà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18645000", + "longitude": "1.45893000" + }, + { + "id": "36679", + "name": "Roses", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26199000", + "longitude": "3.17689000" + }, + { + "id": "36694", + "name": "Rubí", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49226000", + "longitude": "2.03305000" + }, + { + "id": "36704", + "name": "Rupià", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01667000", + "longitude": "3.01667000" + }, + { + "id": "36721", + "name": "S'Agaró", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79368000", + "longitude": "3.05364000" + }, + { + "id": "36722", + "name": "Sabadell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54329000", + "longitude": "2.10942000" + }, + { + "id": "36740", + "name": "Sagàs", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05000000", + "longitude": "1.96667000" + }, + { + "id": "36738", + "name": "Sagrada Família", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40408000", + "longitude": "2.17332000" + }, + { + "id": "36760", + "name": "Sales de Llierca", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23333000", + "longitude": "2.65000000" + }, + { + "id": "36768", + "name": "Sallent", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82602000", + "longitude": "1.89550000" + }, + { + "id": "36775", + "name": "Salomó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22955000", + "longitude": "1.37445000" + }, + { + "id": "36777", + "name": "Salou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07663000", + "longitude": "1.14163000" + }, + { + "id": "36778", + "name": "Salt", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97489000", + "longitude": "2.79281000" + }, + { + "id": "36951", + "name": "Sant Adrià de Besòs", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43073000", + "longitude": "2.21855000" + }, + { + "id": "36952", + "name": "Sant Andreu", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43541000", + "longitude": "2.18982000" + }, + { + "id": "36955", + "name": "Sant Andreu de la Barca", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44659000", + "longitude": "1.97187000" + }, + { + "id": "36954", + "name": "Sant Andreu de Llavaneres", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56667000", + "longitude": "2.48333000" + }, + { + "id": "36953", + "name": "Sant Andreu Salou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86667000", + "longitude": "2.83333000" + }, + { + "id": "36956", + "name": "Sant Antoni", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37857000", + "longitude": "2.15937000" + }, + { + "id": "36958", + "name": "Sant Boi de Llobregat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34357000", + "longitude": "2.03659000" + }, + { + "id": "36959", + "name": "Sant Carles de la Ràpita", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61667000", + "longitude": "0.60000000" + }, + { + "id": "36960", + "name": "Sant Celoni", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68921000", + "longitude": "2.48965000" + }, + { + "id": "36961", + "name": "Sant Cristòfol de les Fonts", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16964000", + "longitude": "2.49943000" + }, + { + "id": "36962", + "name": "Sant Cugat del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47063000", + "longitude": "2.08611000" + }, + { + "id": "36963", + "name": "Sant Esteve d'en Bas", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11809000", + "longitude": "2.45682000" + }, + { + "id": "36964", + "name": "Sant Feliu de Guíxols", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78333000", + "longitude": "3.03333000" + }, + { + "id": "36965", + "name": "Sant Feliu de Llobregat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38333000", + "longitude": "2.05000000" + }, + { + "id": "36966", + "name": "Sant Ferriol", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20000000", + "longitude": "2.66667000" + }, + { + "id": "36968", + "name": "Sant Genís dels Agudells", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42541000", + "longitude": "2.13019000" + }, + { + "id": "36969", + "name": "Sant Gervasi - Galvany", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39750000", + "longitude": "2.14301000" + }, + { + "id": "36970", + "name": "Sant Hilari Sacalm", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88333000", + "longitude": "2.51667000" + }, + { + "id": "36976", + "name": "Sant Joan de les Abadesses", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23332000", + "longitude": "2.28524000" + }, + { + "id": "36974", + "name": "Sant Joan de Mediona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47862000", + "longitude": "1.61164000" + }, + { + "id": "36975", + "name": "Sant Joan de Vilatorrada", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74549000", + "longitude": "1.80476000" + }, + { + "id": "36972", + "name": "Sant Joan Despí", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36718000", + "longitude": "2.05740000" + }, + { + "id": "36977", + "name": "Sant Joan les Fonts", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21186000", + "longitude": "2.51291000" + }, + { + "id": "36979", + "name": "Sant Jordi Desvalls", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06667000", + "longitude": "2.95000000" + }, + { + "id": "36981", + "name": "Sant Julià de Cerdanyola", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22350000", + "longitude": "1.89308000" + }, + { + "id": "36982", + "name": "Sant Just Desvern", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38389000", + "longitude": "2.06758000" + }, + { + "id": "36985", + "name": "Sant Martí", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41814000", + "longitude": "2.19933000" + }, + { + "id": "36988", + "name": "Sant Martí de Centelles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76617000", + "longitude": "2.20566000" + }, + { + "id": "36989", + "name": "Sant Martí de Provençals", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42020000", + "longitude": "2.19632000" + }, + { + "id": "36990", + "name": "Sant Martí de Tous", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55000000", + "longitude": "1.51667000" + }, + { + "id": "36986", + "name": "Sant Martí Sarroca", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38576000", + "longitude": "1.61121000" + }, + { + "id": "36987", + "name": "Sant Martí Vell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01667000", + "longitude": "2.93333000" + }, + { + "id": "36991", + "name": "Sant Miquel de Campmajor", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13333000", + "longitude": "2.68333000" + }, + { + "id": "36993", + "name": "Sant Pere de Ribes", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26045000", + "longitude": "1.77391000" + }, + { + "id": "36994", + "name": "Sant Pere de Riudebitlles", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45000000", + "longitude": "1.70000000" + }, + { + "id": "36992", + "name": "Sant Pere Pescador", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18812000", + "longitude": "3.08212000" + }, + { + "id": "36995", + "name": "Sant Pere, Santa Caterina i La Ribera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38450000", + "longitude": "2.18152000" + }, + { + "id": "36996", + "name": "Sant Pol de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60177000", + "longitude": "2.61741000" + }, + { + "id": "36997", + "name": "Sant Quirze del Vallès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53333000", + "longitude": "2.08333000" + }, + { + "id": "36998", + "name": "Sant Sadurní d'Anoia", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42555000", + "longitude": "1.78519000" + }, + { + "id": "36999", + "name": "Sant Salvador de Guardiola", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68333000", + "longitude": "1.76667000" + }, + { + "id": "37000", + "name": "Sant Vicenç de Castellet", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66667000", + "longitude": "1.86667000" + }, + { + "id": "37001", + "name": "Sant Vicenç de Montalt", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57853000", + "longitude": "2.50879000" + }, + { + "id": "37002", + "name": "Sant Vicenç dels Horts", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39317000", + "longitude": "2.00689000" + }, + { + "id": "37008", + "name": "Santa Bárbara", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71542000", + "longitude": "0.49292000" + }, + { + "id": "37012", + "name": "Santa Cecília de Voltregà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00000000", + "longitude": "2.23333000" + }, + { + "id": "37015", + "name": "Santa Coloma de Cervelló", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36736000", + "longitude": "2.01426000" + }, + { + "id": "37016", + "name": "Santa Coloma de Farners", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86667000", + "longitude": "2.66667000" + }, + { + "id": "37017", + "name": "Santa Coloma de Gramenet", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45152000", + "longitude": "2.20810000" + }, + { + "id": "37022", + "name": "Santa Cristina d'Aro", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81667000", + "longitude": "3.00000000" + }, + { + "id": "37053", + "name": "Santa Eugènia de Berga", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90000000", + "longitude": "2.28333000" + }, + { + "id": "37057", + "name": "Santa Eulàlia de Ronçana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65000000", + "longitude": "2.23333000" + }, + { + "id": "37065", + "name": "Santa Maria d'Oló", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86667000", + "longitude": "2.03333000" + }, + { + "id": "37066", + "name": "Santa Maria de Corcó", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03333000", + "longitude": "2.36667000" + }, + { + "id": "37067", + "name": "Santa Maria de Palautordera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69417000", + "longitude": "2.44566000" + }, + { + "id": "37095", + "name": "Santa Oliva", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25357000", + "longitude": "1.55086000" + }, + { + "id": "37096", + "name": "Santa Pau", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14430000", + "longitude": "2.57123000" + }, + { + "id": "37097", + "name": "Santa Perpètua de Mogoda", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53333000", + "longitude": "2.18333000" + }, + { + "id": "37100", + "name": "Santa Susanna", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63333000", + "longitude": "2.71667000" + }, + { + "id": "37151", + "name": "Sants", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37426000", + "longitude": "2.13826000" + }, + { + "id": "37152", + "name": "Sants - Badal", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37471000", + "longitude": "2.12775000" + }, + { + "id": "37153", + "name": "Sants-Montjuïc", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37263000", + "longitude": "2.15460000" + }, + { + "id": "37170", + "name": "Sarrià", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40269000", + "longitude": "2.11620000" + }, + { + "id": "37171", + "name": "Sarrià de Ter", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01667000", + "longitude": "2.83333000" + }, + { + "id": "37172", + "name": "Sarrià-Sant Gervasi", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40104000", + "longitude": "2.13940000" + }, + { + "id": "37338", + "name": "Súria", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83333000", + "longitude": "1.75000000" + }, + { + "id": "37212", + "name": "Sentmenat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60862000", + "longitude": "2.13532000" + }, + { + "id": "37227", + "name": "Seròs", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46667000", + "longitude": "0.41667000" + }, + { + "id": "37219", + "name": "Serra de Daró", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02877000", + "longitude": "3.07222000" + }, + { + "id": "37238", + "name": "Seva", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83831000", + "longitude": "2.28007000" + }, + { + "id": "37242", + "name": "Sidamon", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63333000", + "longitude": "0.83333000" + }, + { + "id": "37257", + "name": "Sils", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80842000", + "longitude": "2.74507000" + }, + { + "id": "37267", + "name": "Sitges", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23506000", + "longitude": "1.81193000" + }, + { + "id": "37268", + "name": "Siurana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20916000", + "longitude": "2.99392000" + }, + { + "id": "37285", + "name": "Solsona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99395000", + "longitude": "1.51706000" + }, + { + "id": "37304", + "name": "Sort", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41319000", + "longitude": "1.13045000" + }, + { + "id": "37308", + "name": "Soses", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53333000", + "longitude": "0.48333000" + }, + { + "id": "37328", + "name": "Subirats", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40000000", + "longitude": "1.83333000" + }, + { + "id": "37334", + "name": "Susqueda", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97776000", + "longitude": "2.51652000" + }, + { + "id": "37349", + "name": "Tagamanent", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73747000", + "longitude": "2.26720000" + }, + { + "id": "37353", + "name": "Talamanca", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73740000", + "longitude": "1.97791000" + }, + { + "id": "37370", + "name": "Taradell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87495000", + "longitude": "2.28662000" + }, + { + "id": "37383", + "name": "Tarragona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11667000", + "longitude": "1.25000000" + }, + { + "id": "37388", + "name": "Tavertet", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99572000", + "longitude": "2.41859000" + }, + { + "id": "37661", + "name": "Tàrrega", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64704000", + "longitude": "1.13957000" + }, + { + "id": "37665", + "name": "Térmens", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71667000", + "longitude": "0.76667000" + }, + { + "id": "37393", + "name": "Teià", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49804000", + "longitude": "2.32206000" + }, + { + "id": "37409", + "name": "Terrassa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56667000", + "longitude": "2.01667000" + }, + { + "id": "37419", + "name": "Tiana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48201000", + "longitude": "2.26702000" + }, + { + "id": "37432", + "name": "Tiurana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97527000", + "longitude": "1.25608000" + }, + { + "id": "37433", + "name": "Tivenys", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90787000", + "longitude": "0.51236000" + }, + { + "id": "37446", + "name": "Toloriu", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36210000", + "longitude": "1.62761000" + }, + { + "id": "37452", + "name": "Tona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84789000", + "longitude": "2.22808000" + }, + { + "id": "37600", + "name": "Torà de Riubregós", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81667000", + "longitude": "1.40000000" + }, + { + "id": "37458", + "name": "Tordera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69914000", + "longitude": "2.71888000" + }, + { + "id": "37463", + "name": "Torelló", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04627000", + "longitude": "2.26679000" + }, + { + "id": "37472", + "name": "Tornabous", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70117000", + "longitude": "1.05384000" + }, + { + "id": "37488", + "name": "Torre Baró", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45490000", + "longitude": "2.17418000" + }, + { + "id": "37529", + "name": "Torredembarra", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14505000", + "longitude": "1.39861000" + }, + { + "id": "37531", + "name": "Torrefarrera", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67318000", + "longitude": "0.60671000" + }, + { + "id": "37549", + "name": "Torrelles de Llobregat", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35000000", + "longitude": "1.98333000" + }, + { + "id": "37565", + "name": "Torrent", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95243000", + "longitude": "3.12684000" + }, + { + "id": "37576", + "name": "Torres de Segre", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53399000", + "longitude": "0.51420000" + }, + { + "id": "37590", + "name": "Torroella de Fluvià", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17522000", + "longitude": "3.04025000" + }, + { + "id": "37591", + "name": "Torroella de Montgrí", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04254000", + "longitude": "3.12703000" + }, + { + "id": "37597", + "name": "Tortosa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81249000", + "longitude": "0.52160000" + }, + { + "id": "37604", + "name": "Tossa de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71667000", + "longitude": "2.93333000" + }, + { + "id": "37628", + "name": "Tremp", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16703000", + "longitude": "0.89487000" + }, + { + "id": "37680", + "name": "Ullastrell", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52643000", + "longitude": "1.95537000" + }, + { + "id": "37683", + "name": "Ullà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04964000", + "longitude": "3.10754000" + }, + { + "id": "37681", + "name": "Ulldecona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59734000", + "longitude": "0.44718000" + }, + { + "id": "37682", + "name": "Ulldemolins", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.32216000", + "longitude": "0.87650000" + }, + { + "id": "37684", + "name": "Ultramort", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03640000", + "longitude": "3.03455000" + }, + { + "id": "37702", + "name": "Urús", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35131000", + "longitude": "1.85343000" + }, + { + "id": "37839", + "name": "Vallbona", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46341000", + "longitude": "2.18417000" + }, + { + "id": "37840", + "name": "Vallbona de les Monges", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52631000", + "longitude": "1.08872000" + }, + { + "id": "37841", + "name": "Vallcarca", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41209000", + "longitude": "2.14394000" + }, + { + "id": "37842", + "name": "Vallclara", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37958000", + "longitude": "0.98342000" + }, + { + "id": "37858", + "name": "Vallfogona de Balaguer", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75211000", + "longitude": "0.81385000" + }, + { + "id": "37859", + "name": "Vallgorguina", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64822000", + "longitude": "2.50996000" + }, + { + "id": "37861", + "name": "Vallirana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38676000", + "longitude": "1.93205000" + }, + { + "id": "37862", + "name": "Vallmoll", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.24311000", + "longitude": "1.24900000" + }, + { + "id": "37863", + "name": "Valls", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28612000", + "longitude": "1.24993000" + }, + { + "id": "37865", + "name": "Vallvidrera, el Tibidabo i les Planes", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41970000", + "longitude": "2.08911000" + }, + { + "id": "37939", + "name": "Ventalló", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14921000", + "longitude": "3.02635000" + }, + { + "id": "37950", + "name": "Verdú", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61057000", + "longitude": "1.14284000" + }, + { + "id": "37949", + "name": "Verdun", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44273000", + "longitude": "2.17564000" + }, + { + "id": "37953", + "name": "Verges", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06283000", + "longitude": "3.04579000" + }, + { + "id": "37962", + "name": "Vic", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93012000", + "longitude": "2.25486000" + }, + { + "id": "37967", + "name": "Vidrà", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12285000", + "longitude": "2.30977000" + }, + { + "id": "37966", + "name": "Vidreres", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78333000", + "longitude": "2.78333000" + }, + { + "id": "37968", + "name": "Vielha", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70196000", + "longitude": "0.79556000" + }, + { + "id": "37973", + "name": "Vila-seca", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11118000", + "longitude": "1.14764000" + }, + { + "id": "37974", + "name": "Vilabella", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.24779000", + "longitude": "1.33019000" + }, + { + "id": "37975", + "name": "Vilabertran", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28255000", + "longitude": "2.98144000" + }, + { + "id": "37976", + "name": "Vilablareix", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95746000", + "longitude": "2.77377000" + }, + { + "id": "37977", + "name": "Viladasens", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08333000", + "longitude": "2.93333000" + }, + { + "id": "37978", + "name": "Viladecans", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31405000", + "longitude": "2.01427000" + }, + { + "id": "37979", + "name": "Vilademuls", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13890000", + "longitude": "2.88819000" + }, + { + "id": "37980", + "name": "Viladrau", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84746000", + "longitude": "2.39019000" + }, + { + "id": "37981", + "name": "Vilafant", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24668000", + "longitude": "2.93820000" + }, + { + "id": "37984", + "name": "Vilafranca del Penedès", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34618000", + "longitude": "1.69713000" + }, + { + "id": "37986", + "name": "Vilajuïga", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32533000", + "longitude": "3.09302000" + }, + { + "id": "37988", + "name": "Vilamacolum", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19618000", + "longitude": "3.05662000" + }, + { + "id": "37989", + "name": "Vilamalla", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21720000", + "longitude": "2.97009000" + }, + { + "id": "37990", + "name": "Vilamaniscle", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37522000", + "longitude": "3.06755000" + }, + { + "id": "37992", + "name": "Vilanant", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25471000", + "longitude": "2.88923000" + }, + { + "id": "37993", + "name": "Vilanova d'Escornalbou", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11667000", + "longitude": "0.93333000" + }, + { + "id": "37995", + "name": "Vilanova de Bellpuig", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61379000", + "longitude": "0.96432000" + }, + { + "id": "37996", + "name": "Vilanova de Prades", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34850000", + "longitude": "0.95667000" + }, + { + "id": "37997", + "name": "Vilanova de Sau", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94700000", + "longitude": "2.38440000" + }, + { + "id": "37998", + "name": "Vilanova del Camí", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57165000", + "longitude": "1.63751000" + }, + { + "id": "37999", + "name": "Vilanova i la Geltrú", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22392000", + "longitude": "1.72511000" + }, + { + "id": "38000", + "name": "Vilapicina i la Torre Llobeta", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42861000", + "longitude": "2.17410000" + }, + { + "id": "38001", + "name": "Vilaplana", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22800000", + "longitude": "1.03325000" + }, + { + "id": "38003", + "name": "Vilaseca", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06174000", + "longitude": "2.25528000" + }, + { + "id": "38004", + "name": "Vilassar de Mar", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50507000", + "longitude": "2.39227000" + }, + { + "id": "38382", + "name": "Vilopriu", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10000000", + "longitude": "3.00000000" + }, + { + "id": "38387", + "name": "Vimbodí", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40069000", + "longitude": "1.05056000" + }, + { + "id": "38389", + "name": "Vinaixa", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43333000", + "longitude": "0.98333000" + }, + { + "id": "38393", + "name": "Vinebre", + "state_id": 1203, + "state_code": "CT", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18464000", + "longitude": "0.58945000" + }, + { + "id": "32829", + "name": "Benzú", + "state_id": 1206, + "state_code": "CE", + "country_id": 207, + "country_code": "ES", + "latitude": "35.91653000", + "longitude": "-5.37293000" + }, + { + "id": "33609", + "name": "Ceuta", + "state_id": 1206, + "state_code": "CE", + "country_id": 207, + "country_code": "ES", + "latitude": "35.88919000", + "longitude": "-5.32042000" + }, + { + "id": "31985", + "name": "Ajalvir", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.53205000", + "longitude": "-3.47841000" + }, + { + "id": "31995", + "name": "Alameda del Valle", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91870000", + "longitude": "-3.84243000" + }, + { + "id": "32072", + "name": "Alcalá de Henares", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48205000", + "longitude": "-3.35996000" + }, + { + "id": "32097", + "name": "Alcobendas", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54746000", + "longitude": "-3.64197000" + }, + { + "id": "32119", + "name": "Alcorcón", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34582000", + "longitude": "-3.82487000" + }, + { + "id": "32144", + "name": "Aldea del Fresno", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32360000", + "longitude": "-4.20319000" + }, + { + "id": "32219", + "name": "Algete", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59711000", + "longitude": "-3.49743000" + }, + { + "id": "32327", + "name": "Alpedrete", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.65889000", + "longitude": "-4.02512000" + }, + { + "id": "32351", + "name": "Ambite", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33190000", + "longitude": "-3.18034000" + }, + { + "id": "32368", + "name": "Anchuelo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46527000", + "longitude": "-3.26838000" + }, + { + "id": "32412", + "name": "Aranjuez", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.03108000", + "longitude": "-3.60246000" + }, + { + "id": "32462", + "name": "Arganda", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30076000", + "longitude": "-3.43722000" + }, + { + "id": "32464", + "name": "Arganzuela", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40021000", + "longitude": "-3.69618000" + }, + { + "id": "32513", + "name": "Arroyomolinos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.26951000", + "longitude": "-3.91946000" + }, + { + "id": "32636", + "name": "Barajas de Madrid", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47366000", + "longitude": "-3.57777000" + }, + { + "id": "32695", + "name": "Batres", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20981000", + "longitude": "-3.92331000" + }, + { + "id": "32725", + "name": "Becerril de la Sierra", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71699000", + "longitude": "-3.98858000" + }, + { + "id": "32750", + "name": "Belmonte de Tajo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13162000", + "longitude": "-3.33580000" + }, + { + "id": "32875", + "name": "Berzosa del Lozoya", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97320000", + "longitude": "-3.52009000" + }, + { + "id": "32917", + "name": "Boadilla del Monte", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40500000", + "longitude": "-3.87835000" + }, + { + "id": "32918", + "name": "Boalo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71603000", + "longitude": "-3.91656000" + }, + { + "id": "32969", + "name": "Braojos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04040000", + "longitude": "-3.64329000" + }, + { + "id": "32975", + "name": "Brea de Tajo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23333000", + "longitude": "-3.10000000" + }, + { + "id": "32994", + "name": "Brunete", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40532000", + "longitude": "-3.99850000" + }, + { + "id": "33013", + "name": "Buitrago del Lozoya", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99090000", + "longitude": "-3.63365000" + }, + { + "id": "33038", + "name": "Bustarviejo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85720000", + "longitude": "-3.70766000" + }, + { + "id": "33068", + "name": "Cabanillas de la Sierra", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82009000", + "longitude": "-3.62438000" + }, + { + "id": "33115", + "name": "Cadalso de los Vidrios", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30067000", + "longitude": "-4.43348000" + }, + { + "id": "33170", + "name": "Camarma de Esteruelas", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55032000", + "longitude": "-3.37295000" + }, + { + "id": "33201", + "name": "Campo Real", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33333000", + "longitude": "-3.38333000" + }, + { + "id": "33232", + "name": "Canencia", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90728000", + "longitude": "-3.73523000" + }, + { + "id": "33274", + "name": "Carabaña", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25424000", + "longitude": "-3.23572000" + }, + { + "id": "33272", + "name": "Carabanchel", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39094000", + "longitude": "-3.72420000" + }, + { + "id": "33354", + "name": "Casarrubuelos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.17146000", + "longitude": "-3.83105000" + }, + { + "id": "33570", + "name": "Cenicientos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.26459000", + "longitude": "-4.46683000" + }, + { + "id": "33579", + "name": "Cercedilla", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74101000", + "longitude": "-4.05644000" + }, + { + "id": "33596", + "name": "Cervera de Buitrago", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91988000", + "longitude": "-3.52702000" + }, + { + "id": "33615", + "name": "Chamartín", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46206000", + "longitude": "-3.67660000" + }, + { + "id": "33616", + "name": "Chamberí", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43404000", + "longitude": "-3.70379000" + }, + { + "id": "33618", + "name": "Chapinería", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.37891000", + "longitude": "-4.21009000" + }, + { + "id": "33640", + "name": "Chinchón", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.14020000", + "longitude": "-3.42267000" + }, + { + "id": "33658", + "name": "Ciempozuelos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15913000", + "longitude": "-3.62103000" + }, + { + "id": "33695", + "name": "City Center", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41831000", + "longitude": "-3.70275000" + }, + { + "id": "33696", + "name": "Ciudad Lineal", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44505000", + "longitude": "-3.65132000" + }, + { + "id": "33709", + "name": "Cobeña", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56667000", + "longitude": "-3.50000000" + }, + { + "id": "33733", + "name": "Collado Mediano", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69326000", + "longitude": "-4.02280000" + }, + { + "id": "33736", + "name": "Collado-Villalba", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63506000", + "longitude": "-4.00486000" + }, + { + "id": "33744", + "name": "Colmenar de Oreja", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10675000", + "longitude": "-3.38547000" + }, + { + "id": "33745", + "name": "Colmenar del Arroyo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41897000", + "longitude": "-4.19845000" + }, + { + "id": "33742", + "name": "Colmenar Viejo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.65909000", + "longitude": "-3.76762000" + }, + { + "id": "33746", + "name": "Colmenarejo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56063000", + "longitude": "-4.01713000" + }, + { + "id": "33796", + "name": "Corpa", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42327000", + "longitude": "-3.26003000" + }, + { + "id": "33817", + "name": "Coslada", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42378000", + "longitude": "-3.56129000" + }, + { + "id": "33845", + "name": "Cubas", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18900000", + "longitude": "-3.83526000" + }, + { + "id": "33908", + "name": "Daganzo de Arriba", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54293000", + "longitude": "-3.45457000" + }, + { + "id": "34029", + "name": "El Álamo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23066000", + "longitude": "-3.99447000" + }, + { + "id": "33997", + "name": "El Escorial", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58254000", + "longitude": "-4.12846000" + }, + { + "id": "34002", + "name": "El Molar", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.73215000", + "longitude": "-3.57969000" + }, + { + "id": "34003", + "name": "El Pardo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51454000", + "longitude": "-3.77253000" + }, + { + "id": "34024", + "name": "El Vellón", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76495000", + "longitude": "-3.57969000" + }, + { + "id": "34147", + "name": "Estremera", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18333000", + "longitude": "-3.10000000" + }, + { + "id": "34249", + "name": "Fresnedillas", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48704000", + "longitude": "-4.17146000" + }, + { + "id": "34259", + "name": "Fresno de Torote", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59040000", + "longitude": "-3.41003000" + }, + { + "id": "34277", + "name": "Fuencarral-El Pardo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49840000", + "longitude": "-3.73140000" + }, + { + "id": "34283", + "name": "Fuenlabrada", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.28419000", + "longitude": "-3.79415000" + }, + { + "id": "34302", + "name": "Fuente el Saz", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63215000", + "longitude": "-3.51146000" + }, + { + "id": "34361", + "name": "Fuentidueña de Tajo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11574000", + "longitude": "-3.15718000" + }, + { + "id": "34373", + "name": "Galapagar", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57830000", + "longitude": "-4.00426000" + }, + { + "id": "34415", + "name": "Garganta de los Montes", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91992000", + "longitude": "-3.68375000" + }, + { + "id": "34430", + "name": "Gascones", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01843000", + "longitude": "-3.64217000" + }, + { + "id": "34459", + "name": "Getafe", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30571000", + "longitude": "-3.73295000" + }, + { + "id": "34516", + "name": "Griñón", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.21249000", + "longitude": "-3.85482000" + }, + { + "id": "34524", + "name": "Guadalix de la Sierra", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78496000", + "longitude": "-3.69347000" + }, + { + "id": "34528", + "name": "Guadarrama", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67270000", + "longitude": "-4.08949000" + }, + { + "id": "34652", + "name": "Horcajo de la Sierra", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06723000", + "longitude": "-3.58534000" + }, + { + "id": "34654", + "name": "Horcajuelo de la Sierra", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06019000", + "longitude": "-3.54640000" + }, + { + "id": "34667", + "name": "Hortaleza", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47444000", + "longitude": "-3.64110000" + }, + { + "id": "34674", + "name": "Hoyo de Manzanares", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62265000", + "longitude": "-3.90733000" + }, + { + "id": "34701", + "name": "Humanes de Madrid", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25038000", + "longitude": "-3.83062000" + }, + { + "id": "34860", + "name": "La Cabrera", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86386000", + "longitude": "-3.61265000" + }, + { + "id": "34985", + "name": "Las Matas", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55779000", + "longitude": "-3.89173000" + }, + { + "id": "34991", + "name": "Las Rozas de Madrid", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49292000", + "longitude": "-3.87371000" + }, + { + "id": "34992", + "name": "Las Tablas", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50649000", + "longitude": "-3.67235000" + }, + { + "id": "35002", + "name": "Latina", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38897000", + "longitude": "-3.74569000" + }, + { + "id": "35021", + "name": "Leganés", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32718000", + "longitude": "-3.76350000" + }, + { + "id": "35099", + "name": "Loeches", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38343000", + "longitude": "-3.41460000" + }, + { + "id": "35127", + "name": "Los Molinos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71578000", + "longitude": "-4.07402000" + }, + { + "id": "35134", + "name": "Los Santos de la Humosa", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49968000", + "longitude": "-3.25332000" + }, + { + "id": "35145", + "name": "Lozoya", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94949000", + "longitude": "-3.79086000" + }, + { + "id": "35186", + "name": "Madrid", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41650000", + "longitude": "-3.70256000" + }, + { + "id": "35214", + "name": "Majadahonda", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47353000", + "longitude": "-3.87182000" + }, + { + "id": "35267", + "name": "Manzanares el Real", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72627000", + "longitude": "-3.86265000" + }, + { + "id": "35708", + "name": "Móstoles", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32234000", + "longitude": "-3.86496000" + }, + { + "id": "35366", + "name": "Meco", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55274000", + "longitude": "-3.32894000" + }, + { + "id": "35384", + "name": "Mejorada del Campo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39283000", + "longitude": "-3.48194000" + }, + { + "id": "35442", + "name": "Miraflores de la Sierra", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81550000", + "longitude": "-3.76213000" + }, + { + "id": "35501", + "name": "Moncloa-Aravaca", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43547000", + "longitude": "-3.73170000" + }, + { + "id": "35555", + "name": "Montejo de la Sierra", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05955000", + "longitude": "-3.52993000" + }, + { + "id": "35602", + "name": "Moraleja de Enmedio", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.26125000", + "longitude": "-3.85963000" + }, + { + "id": "35612", + "name": "Moralzarzal", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67816000", + "longitude": "-3.97070000" + }, + { + "id": "35616", + "name": "Morata de Tajuña", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22680000", + "longitude": "-3.43269000" + }, + { + "id": "35617", + "name": "Moratalaz", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40742000", + "longitude": "-3.64935000" + }, + { + "id": "35731", + "name": "Navacerrada", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72905000", + "longitude": "-4.01696000" + }, + { + "id": "35742", + "name": "Navalafuente", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82063000", + "longitude": "-3.67266000" + }, + { + "id": "35743", + "name": "Navalagamella", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46894000", + "longitude": "-4.12334000" + }, + { + "id": "35744", + "name": "Navalcarnero", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.28908000", + "longitude": "-4.01197000" + }, + { + "id": "35758", + "name": "Navalquejigo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60705000", + "longitude": "-4.04966000" + }, + { + "id": "35783", + "name": "Navas del Rey", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38610000", + "longitude": "-4.25117000" + }, + { + "id": "35835", + "name": "Nuevo Baztán", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36731000", + "longitude": "-3.24125000" + }, + { + "id": "36053", + "name": "Paracuellos de Jarama", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50353000", + "longitude": "-3.52775000" + }, + { + "id": "36070", + "name": "Parla", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23604000", + "longitude": "-3.76752000" + }, + { + "id": "36082", + "name": "Patones", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85563000", + "longitude": "-3.48490000" + }, + { + "id": "36097", + "name": "Pedrezuela", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74277000", + "longitude": "-3.59980000" + }, + { + "id": "36122", + "name": "Pelayos de la Presa", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36051000", + "longitude": "-4.33462000" + }, + { + "id": "36139", + "name": "Perales de Tajuña", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23130000", + "longitude": "-3.35021000" + }, + { + "id": "36160", + "name": "Pezuela de las Torres", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41613000", + "longitude": "-3.17363000" + }, + { + "id": "36192", + "name": "Pinar de Chamartín", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47903000", + "longitude": "-3.66836000" + }, + { + "id": "36207", + "name": "Pinilla del Valle", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92448000", + "longitude": "-3.81688000" + }, + { + "id": "36215", + "name": "Pinto", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.24147000", + "longitude": "-3.69999000" + }, + { + "id": "36331", + "name": "Pozuelo de Alarcón", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43293000", + "longitude": "-3.81338000" + }, + { + "id": "36338", + "name": "Pozuelo del Rey", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36463000", + "longitude": "-3.31699000" + }, + { + "id": "36406", + "name": "Prádena del Rincón", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04414000", + "longitude": "-3.54075000" + }, + { + "id": "36379", + "name": "Provincia de Madrid", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40225000", + "longitude": "-3.71029000" + }, + { + "id": "36437", + "name": "Puente de Vallecas", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39354000", + "longitude": "-3.66200000" + }, + { + "id": "36500", + "name": "Quijorna", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42763000", + "longitude": "-4.05683000" + }, + { + "id": "36547", + "name": "Rascafría", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90407000", + "longitude": "-3.87898000" + }, + { + "id": "36563", + "name": "Redueña", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81685000", + "longitude": "-3.59837000" + }, + { + "id": "36587", + "name": "Retiro", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41317000", + "longitude": "-3.68307000" + }, + { + "id": "36613", + "name": "Ribatejada", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66420000", + "longitude": "-3.38976000" + }, + { + "id": "36639", + "name": "Rivas-Vaciamadrid", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32605000", + "longitude": "-3.51089000" + }, + { + "id": "36651", + "name": "Robledillo de la Jara", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95054000", + "longitude": "-3.52181000" + }, + { + "id": "36654", + "name": "Robledo de Chavela", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50062000", + "longitude": "-4.23635000" + }, + { + "id": "36686", + "name": "Rozas de Puerto Real", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.31667000", + "longitude": "-4.48333000" + }, + { + "id": "36745", + "name": "Salamanca", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42972000", + "longitude": "-3.67975000" + }, + { + "id": "36799", + "name": "San Agustín del Guadalix", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67882000", + "longitude": "-3.61639000" + }, + { + "id": "36812", + "name": "San Blas-Canillejas", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43893000", + "longitude": "-3.61537000" + }, + { + "id": "36836", + "name": "San Fernando de Henares", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42386000", + "longitude": "-3.53261000" + }, + { + "id": "36858", + "name": "San Lorenzo de El Escorial", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59144000", + "longitude": "-4.14738000" + }, + { + "id": "36873", + "name": "San Martín de la Vega", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20735000", + "longitude": "-3.57063000" + }, + { + "id": "36870", + "name": "San Martín de Valdeiglesias", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36185000", + "longitude": "-4.39831000" + }, + { + "id": "36922", + "name": "San Sebastián de los Reyes", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55555000", + "longitude": "-3.62733000" + }, + { + "id": "37079", + "name": "Santa María de la Alameda", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59492000", + "longitude": "-4.25772000" + }, + { + "id": "37146", + "name": "Santorcaz", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47176000", + "longitude": "-3.23462000" + }, + { + "id": "37225", + "name": "Serranillos del Valle", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20211000", + "longitude": "-3.88187000" + }, + { + "id": "37240", + "name": "Sevilla La Nueva", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34775000", + "longitude": "-4.02727000" + }, + { + "id": "37354", + "name": "Talamanca de Jarama", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74325000", + "longitude": "-3.50889000" + }, + { + "id": "37417", + "name": "Tetuán de las Victorias", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45975000", + "longitude": "-3.69750000" + }, + { + "id": "37422", + "name": "Tielmes", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.24652000", + "longitude": "-3.31461000" + }, + { + "id": "37431", + "name": "Titulcia", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13537000", + "longitude": "-3.56763000" + }, + { + "id": "37538", + "name": "Torrejón de Ardoz", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45535000", + "longitude": "-3.46973000" + }, + { + "id": "37540", + "name": "Torrejón de la Calzada", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.19886000", + "longitude": "-3.79700000" + }, + { + "id": "37539", + "name": "Torrejón de Velasco", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18746000", + "longitude": "-3.77681000" + }, + { + "id": "37543", + "name": "Torrelaguna", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82764000", + "longitude": "-3.53683000" + }, + { + "id": "37551", + "name": "Torrelodones", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57654000", + "longitude": "-3.92658000" + }, + { + "id": "37557", + "name": "Torremocha de Jarama", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84148000", + "longitude": "-3.49666000" + }, + { + "id": "37577", + "name": "Torres de la Alameda", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40264000", + "longitude": "-3.35767000" + }, + { + "id": "37629", + "name": "Tres Cantos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60092000", + "longitude": "-3.70806000" + }, + { + "id": "37705", + "name": "Usera", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38866000", + "longitude": "-3.70035000" + }, + { + "id": "37726", + "name": "Valdaracete", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20770000", + "longitude": "-3.19101000" + }, + { + "id": "37735", + "name": "Valdeavero", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62980000", + "longitude": "-3.33001000" + }, + { + "id": "37765", + "name": "Valdemanco", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87039000", + "longitude": "-3.65873000" + }, + { + "id": "37767", + "name": "Valdemaqueda", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51201000", + "longitude": "-4.29722000" + }, + { + "id": "37772", + "name": "Valdemorillo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50064000", + "longitude": "-4.06710000" + }, + { + "id": "37774", + "name": "Valdemoro", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.19081000", + "longitude": "-3.67887000" + }, + { + "id": "37781", + "name": "Valdeolmos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63708000", + "longitude": "-3.45064000" + }, + { + "id": "37786", + "name": "Valdepiélagos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75842000", + "longitude": "-3.46163000" + }, + { + "id": "37804", + "name": "Valdetorres de Jarama", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69366000", + "longitude": "-3.51156000" + }, + { + "id": "37810", + "name": "Valdilecha", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29530000", + "longitude": "-3.30233000" + }, + { + "id": "37882", + "name": "Valverde de Alcalá", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41667000", + "longitude": "-3.29631000" + }, + { + "id": "37931", + "name": "Velilla de San Antonio", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36516000", + "longitude": "-3.48484000" + }, + { + "id": "37946", + "name": "Venturada", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79717000", + "longitude": "-3.61974000" + }, + { + "id": "37963", + "name": "Vicálvaro", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40000000", + "longitude": "-3.60000000" + }, + { + "id": "38009", + "name": "Villa de Vallecas", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36695000", + "longitude": "-3.60146000" + }, + { + "id": "38012", + "name": "Villa del Prado", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.27852000", + "longitude": "-4.30534000" + }, + { + "id": "38034", + "name": "Villaconejos", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10139000", + "longitude": "-3.48258000" + }, + { + "id": "38105", + "name": "Villalbilla", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43044000", + "longitude": "-3.29904000" + }, + { + "id": "38131", + "name": "Villamanrique de Tajo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06617000", + "longitude": "-3.23668000" + }, + { + "id": "38133", + "name": "Villamanta", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29858000", + "longitude": "-4.10880000" + }, + { + "id": "38134", + "name": "Villamantilla", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33846000", + "longitude": "-4.12986000" + }, + { + "id": "38196", + "name": "Villanueva de la Cañada", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44689000", + "longitude": "-4.00428000" + }, + { + "id": "38187", + "name": "Villanueva de Perales", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34541000", + "longitude": "-4.09891000" + }, + { + "id": "38219", + "name": "Villanueva del Pardillo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49014000", + "longitude": "-3.96383000" + }, + { + "id": "38257", + "name": "Villar del Olmo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33468000", + "longitude": "-3.23399000" + }, + { + "id": "38273", + "name": "Villarejo de Salvanés", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.16663000", + "longitude": "-3.27277000" + }, + { + "id": "38343", + "name": "Villaverde", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35000000", + "longitude": "-3.70000000" + }, + { + "id": "38357", + "name": "Villaviciosa de Odón", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35810000", + "longitude": "-3.90430000" + }, + { + "id": "38360", + "name": "Villavieja del Lozoya", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00396000", + "longitude": "-3.66870000" + }, + { + "id": "38482", + "name": "Zarzalejo", + "state_id": 1158, + "state_code": "MD", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54811000", + "longitude": "-4.18176000" + }, + { + "id": "31900", + "name": "Abadía", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25922000", + "longitude": "-5.97828000" + }, + { + "id": "31910", + "name": "Abertura", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.24352000", + "longitude": "-5.81394000" + }, + { + "id": "31923", + "name": "Acebo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20105000", + "longitude": "-6.71689000" + }, + { + "id": "31924", + "name": "Acedera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.07678000", + "longitude": "-5.57384000" + }, + { + "id": "31925", + "name": "Aceituna", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15008000", + "longitude": "-6.33292000" + }, + { + "id": "31926", + "name": "Aceuchal", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.64627000", + "longitude": "-6.48636000" + }, + { + "id": "31974", + "name": "Ahigal", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18954000", + "longitude": "-6.18815000" + }, + { + "id": "31977", + "name": "Ahillones", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.26667000", + "longitude": "-5.85000000" + }, + { + "id": "31999", + "name": "Alange", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.78495000", + "longitude": "-6.24574000" + }, + { + "id": "32347", + "name": "Alía", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.44803000", + "longitude": "-5.21754000" + }, + { + "id": "32027", + "name": "Albalá", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.25592000", + "longitude": "-6.18528000" + }, + { + "id": "32059", + "name": "Alburquerque", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.22076000", + "longitude": "-7.00234000" + }, + { + "id": "32135", + "name": "Alcántara", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71895000", + "longitude": "-6.88375000" + }, + { + "id": "32111", + "name": "Alcollarín", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.24470000", + "longitude": "-5.73924000" + }, + { + "id": "32115", + "name": "Alconchel", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.51648000", + "longitude": "-7.07161000" + }, + { + "id": "32118", + "name": "Alconera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.40000000", + "longitude": "-6.46667000" + }, + { + "id": "32132", + "name": "Alcuéscar", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.18091000", + "longitude": "-6.22917000" + }, + { + "id": "32143", + "name": "Aldea del Cano", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28874000", + "longitude": "-6.31806000" + }, + { + "id": "32147", + "name": "Aldeacentenera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.52725000", + "longitude": "-5.62936000" + }, + { + "id": "32164", + "name": "Aldeanueva de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12710000", + "longitude": "-5.70150000" + }, + { + "id": "32165", + "name": "Aldeanueva del Camino", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25980000", + "longitude": "-5.92886000" + }, + { + "id": "32248", + "name": "Aliseda", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.42329000", + "longitude": "-6.69228000" + }, + { + "id": "32252", + "name": "Aljucén", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.04425000", + "longitude": "-6.33109000" + }, + { + "id": "32268", + "name": "Almaraz", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81416000", + "longitude": "-5.67698000" + }, + { + "id": "32286", + "name": "Almendral", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61418000", + "longitude": "-6.82097000" + }, + { + "id": "32288", + "name": "Almendralejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.68316000", + "longitude": "-6.40747000" + }, + { + "id": "32299", + "name": "Almoharín", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.17685000", + "longitude": "-6.04283000" + }, + { + "id": "32510", + "name": "Arroyo de la Luz", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.48511000", + "longitude": "-6.58401000" + }, + { + "id": "32508", + "name": "Arroyo de San Serván", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.85443000", + "longitude": "-6.45402000" + }, + { + "id": "32515", + "name": "Arroyomolinos de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05277000", + "longitude": "-5.85111000" + }, + { + "id": "32544", + "name": "Atalaya", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.33333000", + "longitude": "-6.46667000" + }, + { + "id": "32588", + "name": "Azuaga", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.26667000", + "longitude": "-5.68333000" + }, + { + "id": "32704", + "name": "Baños de Montemayor", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.31671000", + "longitude": "-5.86009000" + }, + { + "id": "32601", + "name": "Badajoz", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.87789000", + "longitude": "-6.97061000" + }, + { + "id": "32652", + "name": "Barcarrota", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.51473000", + "longitude": "-6.84923000" + }, + { + "id": "32670", + "name": "Barrado", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.08477000", + "longitude": "-5.88068000" + }, + { + "id": "32694", + "name": "Baterno", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95578000", + "longitude": "-4.91039000" + }, + { + "id": "32826", + "name": "Benquerencia", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.30994000", + "longitude": "-6.08465000" + }, + { + "id": "32854", + "name": "Berlanga", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.28333000", + "longitude": "-5.81667000" + }, + { + "id": "32871", + "name": "Berrocalejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81948000", + "longitude": "-5.34951000" + }, + { + "id": "32890", + "name": "Bienvenida", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.30000000", + "longitude": "-6.20000000" + }, + { + "id": "32927", + "name": "Bodonal de la Sierra", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.14751000", + "longitude": "-6.55950000" + }, + { + "id": "32931", + "name": "Bohonal de Ibor", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78457000", + "longitude": "-5.48500000" + }, + { + "id": "32965", + "name": "Botija", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.34498000", + "longitude": "-6.07318000" + }, + { + "id": "32993", + "name": "Brozas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61278000", + "longitude": "-6.77770000" + }, + { + "id": "33029", + "name": "Burguillos del Cerro", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.38008000", + "longitude": "-6.59037000" + }, + { + "id": "33533", + "name": "Cañamero", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.37995000", + "longitude": "-5.38857000" + }, + { + "id": "33535", + "name": "Cañaveral", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.79198000", + "longitude": "-6.39130000" + }, + { + "id": "33075", + "name": "Cabañas del Castillo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.54804000", + "longitude": "-5.51203000" + }, + { + "id": "33077", + "name": "Cabeza del Buey", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72227000", + "longitude": "-5.21946000" + }, + { + "id": "33079", + "name": "Cabeza la Vaca", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.08333000", + "longitude": "-6.41667000" + }, + { + "id": "33080", + "name": "Cabezabellosa", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13763000", + "longitude": "-6.00086000" + }, + { + "id": "33089", + "name": "Cabezuela del Valle", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.19364000", + "longitude": "-5.80650000" + }, + { + "id": "33106", + "name": "Cabrero", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11324000", + "longitude": "-5.89293000" + }, + { + "id": "33113", + "name": "Cachorrilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91557000", + "longitude": "-6.66909000" + }, + { + "id": "33114", + "name": "Cadalso", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23743000", + "longitude": "-6.54083000" + }, + { + "id": "33129", + "name": "Calamonte", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.88861000", + "longitude": "-6.38791000" + }, + { + "id": "33140", + "name": "Calera de León", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.10000000", + "longitude": "-6.33333000" + }, + { + "id": "33161", + "name": "Calzadilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06014000", + "longitude": "-6.53328000" + }, + { + "id": "33178", + "name": "Caminomorisco", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32719000", + "longitude": "-6.28923000" + }, + { + "id": "33181", + "name": "Campanario", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.86440000", + "longitude": "-5.61744000" + }, + { + "id": "33191", + "name": "Campillo de Deleitosa", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70297000", + "longitude": "-5.57436000" + }, + { + "id": "33193", + "name": "Campillo de Llerena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.50196000", + "longitude": "-5.83139000" + }, + { + "id": "33269", + "name": "Capilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82037000", + "longitude": "-5.08417000" + }, + { + "id": "33280", + "name": "Carbajo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60333000", + "longitude": "-7.19565000" + }, + { + "id": "33289", + "name": "Carcaboso", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.04968000", + "longitude": "-6.21375000" + }, + { + "id": "33311", + "name": "Carmonita", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.15455000", + "longitude": "-6.33864000" + }, + { + "id": "33320", + "name": "Carrascalejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.63333000", + "longitude": "-5.21667000" + }, + { + "id": "33346", + "name": "Casar de Cáceres", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56106000", + "longitude": "-6.41944000" + }, + { + "id": "33347", + "name": "Casar de Palomero", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29483000", + "longitude": "-6.25698000" + }, + { + "id": "33351", + "name": "Casares de las Hurdes", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43333000", + "longitude": "-6.28333000" + }, + { + "id": "33359", + "name": "Casas de Don Antonio", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.23578000", + "longitude": "-6.29143000" + }, + { + "id": "33360", + "name": "Casas de Don Gómez", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00932000", + "longitude": "-6.60073000" + }, + { + "id": "33361", + "name": "Casas de Don Pedro", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.10822000", + "longitude": "-5.33077000" + }, + { + "id": "33368", + "name": "Casas de Millán", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81757000", + "longitude": "-6.32966000" + }, + { + "id": "33369", + "name": "Casas de Miravete", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.72687000", + "longitude": "-5.74363000" + }, + { + "id": "33370", + "name": "Casas de Reina", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.20000000", + "longitude": "-5.96667000" + }, + { + "id": "33374", + "name": "Casas del Castañar", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10785000", + "longitude": "-5.90509000" + }, + { + "id": "33375", + "name": "Casas del Monte", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20320000", + "longitude": "-5.96152000" + }, + { + "id": "33381", + "name": "Casatejada", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88642000", + "longitude": "-5.68193000" + }, + { + "id": "33389", + "name": "Casillas de Coria", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96543000", + "longitude": "-6.63711000" + }, + { + "id": "33397", + "name": "Castañar de Ibor", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.62843000", + "longitude": "-5.41709000" + }, + { + "id": "33446", + "name": "Castilblanco", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28487000", + "longitude": "-5.09098000" + }, + { + "id": "33512", + "name": "Castuera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.73204000", + "longitude": "-5.54390000" + }, + { + "id": "33892", + "name": "Cáceres", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.47649000", + "longitude": "-6.37224000" + }, + { + "id": "33553", + "name": "Ceclavín", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.82231000", + "longitude": "-6.77329000" + }, + { + "id": "33555", + "name": "Cedillo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65099000", + "longitude": "-7.49817000" + }, + { + "id": "33587", + "name": "Cerezo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23678000", + "longitude": "-6.22764000" + }, + { + "id": "33622", + "name": "Cheles", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.51225000", + "longitude": "-7.28177000" + }, + { + "id": "33667", + "name": "Cilleros", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11486000", + "longitude": "-6.79256000" + }, + { + "id": "33731", + "name": "Collado", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05729000", + "longitude": "-5.72052000" + }, + { + "id": "33763", + "name": "Conquista de la Sierra", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.35070000", + "longitude": "-5.73464000" + }, + { + "id": "33780", + "name": "Cordobilla de Lácara", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.14763000", + "longitude": "-6.43619000" + }, + { + "id": "33789", + "name": "Coria", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98406000", + "longitude": "-6.53603000" + }, + { + "id": "33805", + "name": "Corte de Peleas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72631000", + "longitude": "-6.67035000" + }, + { + "id": "33836", + "name": "Cristina", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.83745000", + "longitude": "-6.09867000" + }, + { + "id": "33923", + "name": "Deleitosa", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.64359000", + "longitude": "-5.64576000" + }, + { + "id": "33928", + "name": "Descargamaría", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30446000", + "longitude": "-6.48666000" + }, + { + "id": "33942", + "name": "Don Álvaro", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84837000", + "longitude": "-6.27475000" + }, + { + "id": "33941", + "name": "Don Benito", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95627000", + "longitude": "-5.86162000" + }, + { + "id": "33988", + "name": "El Casar", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.53089000", + "longitude": "-5.92513000" + }, + { + "id": "34037", + "name": "Eljas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.21648000", + "longitude": "-6.84616000" + }, + { + "id": "34064", + "name": "Entrín Bajo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.71855000", + "longitude": "-6.71349000" + }, + { + "id": "34092", + "name": "Escurial", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.16857000", + "longitude": "-5.88465000" + }, + { + "id": "34105", + "name": "Esparragalejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.94330000", + "longitude": "-6.43549000" + }, + { + "id": "34107", + "name": "Esparragosa de la Serena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.65100000", + "longitude": "-5.60657000" + }, + { + "id": "34106", + "name": "Esparragosa de Lares", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.97517000", + "longitude": "-5.26968000" + }, + { + "id": "34173", + "name": "Feria", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.51151000", + "longitude": "-6.56416000" + }, + { + "id": "34242", + "name": "Fregenal de la Sierra", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.16922000", + "longitude": "-6.65370000" + }, + { + "id": "34251", + "name": "Fresnedoso de Ibor", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68418000", + "longitude": "-5.50899000" + }, + { + "id": "34284", + "name": "Fuenlabrada de los Montes", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.13288000", + "longitude": "-4.93513000" + }, + { + "id": "34295", + "name": "Fuente de Cantos", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.25000000", + "longitude": "-6.30000000" + }, + { + "id": "34299", + "name": "Fuente del Maestre", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.52656000", + "longitude": "-6.44782000" + }, + { + "id": "34345", + "name": "Fuentes de León", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.06866000", + "longitude": "-6.53884000" + }, + { + "id": "34385", + "name": "Galisteo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.97642000", + "longitude": "-6.26782000" + }, + { + "id": "34407", + "name": "Garbayuela", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.04956000", + "longitude": "-4.99856000" + }, + { + "id": "34417", + "name": "Garganta la Olla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11049000", + "longitude": "-5.77665000" + }, + { + "id": "34418", + "name": "Gargantilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.24835000", + "longitude": "-5.92068000" + }, + { + "id": "34419", + "name": "Gargüera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06130000", + "longitude": "-5.92781000" + }, + { + "id": "34420", + "name": "Garlitos", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.88022000", + "longitude": "-5.04759000" + }, + { + "id": "34426", + "name": "Garrovillas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71082000", + "longitude": "-6.55034000" + }, + { + "id": "34428", + "name": "Garvín", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71984000", + "longitude": "-5.34678000" + }, + { + "id": "34434", + "name": "Gata", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23758000", + "longitude": "-6.59684000" + }, + { + "id": "34502", + "name": "Granja de Torrehermosa", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.31667000", + "longitude": "-5.58333000" + }, + { + "id": "34526", + "name": "Guadalupe", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.45080000", + "longitude": "-5.32588000" + }, + { + "id": "34537", + "name": "Guareña", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.85952000", + "longitude": "-6.09987000" + }, + { + "id": "34542", + "name": "Guijo de Coria", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10098000", + "longitude": "-6.46383000" + }, + { + "id": "34543", + "name": "Guijo de Galisteo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.09383000", + "longitude": "-6.41007000" + }, + { + "id": "34544", + "name": "Guijo de Granadilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.19351000", + "longitude": "-6.16339000" + }, + { + "id": "34545", + "name": "Guijo de Santa Bárbara", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15410000", + "longitude": "-5.65414000" + }, + { + "id": "34582", + "name": "Herguijuela", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.37452000", + "longitude": "-5.76001000" + }, + { + "id": "34591", + "name": "Hernán-Pérez", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.21246000", + "longitude": "-6.46479000" + }, + { + "id": "34594", + "name": "Herrera de Alcántara", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.63865000", + "longitude": "-7.40619000" + }, + { + "id": "34599", + "name": "Herrera del Duque", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.16840000", + "longitude": "-5.05049000" + }, + { + "id": "34604", + "name": "Hervás", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.27081000", + "longitude": "-5.86721000" + }, + { + "id": "34607", + "name": "Higuera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.72551000", + "longitude": "-5.66692000" + }, + { + "id": "34611", + "name": "Higuera de la Serena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.64616000", + "longitude": "-5.74129000" + }, + { + "id": "34610", + "name": "Higuera de Vargas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.44700000", + "longitude": "-6.97517000" + }, + { + "id": "34614", + "name": "Higuera la Real", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.14088000", + "longitude": "-6.68922000" + }, + { + "id": "34619", + "name": "Hinojal", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70900000", + "longitude": "-6.35567000" + }, + { + "id": "34628", + "name": "Hinojosa del Valle", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.48333000", + "longitude": "-6.18333000" + }, + { + "id": "34631", + "name": "Holguera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89916000", + "longitude": "-6.34999000" + }, + { + "id": "34659", + "name": "Hornachos", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.55428000", + "longitude": "-6.06829000" + }, + { + "id": "34677", + "name": "Hoyos", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.17154000", + "longitude": "-6.72092000" + }, + { + "id": "34707", + "name": "Huélaga", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05582000", + "longitude": "-6.61568000" + }, + { + "id": "34723", + "name": "Ibahernando", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.32538000", + "longitude": "-5.91833000" + }, + { + "id": "34802", + "name": "Jaraíz de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06005000", + "longitude": "-5.75426000" + }, + { + "id": "34798", + "name": "Jaraicejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.66624000", + "longitude": "-5.81308000" + }, + { + "id": "34801", + "name": "Jarandilla de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12915000", + "longitude": "-5.66079000" + }, + { + "id": "34813", + "name": "Jerez de los Caballeros", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.32063000", + "longitude": "-6.77260000" + }, + { + "id": "34814", + "name": "Jerte", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22271000", + "longitude": "-5.75011000" + }, + { + "id": "34852", + "name": "La Albuera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.71779000", + "longitude": "-6.82326000" + }, + { + "id": "34867", + "name": "La Codosera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.20878000", + "longitude": "-7.17330000" + }, + { + "id": "34868", + "name": "La Coronada", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.92045000", + "longitude": "-5.66978000" + }, + { + "id": "34870", + "name": "La Cumbre", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.40460000", + "longitude": "-5.97635000" + }, + { + "id": "34876", + "name": "La Garrovilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91961000", + "longitude": "-6.47747000" + }, + { + "id": "34883", + "name": "La Haba", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91929000", + "longitude": "-5.80034000" + }, + { + "id": "34896", + "name": "La Nava de Santiago", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.06328000", + "longitude": "-6.50525000" + }, + { + "id": "34900", + "name": "La Parra", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.52120000", + "longitude": "-6.62260000" + }, + { + "id": "34902", + "name": "La Pesga", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32630000", + "longitude": "-6.17603000" + }, + { + "id": "34919", + "name": "La Roca de la Sierra", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.10966000", + "longitude": "-6.68916000" + }, + { + "id": "34938", + "name": "Ladrillar", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46576000", + "longitude": "-6.22427000" + }, + { + "id": "35075", + "name": "Llera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.45000000", + "longitude": "-6.05000000" + }, + { + "id": "35076", + "name": "Llerena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.23333000", + "longitude": "-6.01667000" + }, + { + "id": "35097", + "name": "Lobón", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84876000", + "longitude": "-6.62365000" + }, + { + "id": "35100", + "name": "Logrosán", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33641000", + "longitude": "-5.49281000" + }, + { + "id": "35133", + "name": "Los Santos de Maimona", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.45000000", + "longitude": "-6.38333000" + }, + { + "id": "35141", + "name": "Losar de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12158000", + "longitude": "-5.60454000" + }, + { + "id": "35189", + "name": "Madrigal de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.14760000", + "longitude": "-5.36818000" + }, + { + "id": "35192", + "name": "Madrigalejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.13858000", + "longitude": "-5.62740000" + }, + { + "id": "35196", + "name": "Madroñera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.42526000", + "longitude": "-5.75568000" + }, + { + "id": "35199", + "name": "Magacela", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.89648000", + "longitude": "-5.73437000" + }, + { + "id": "35204", + "name": "Maguilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.36667000", + "longitude": "-5.83333000" + }, + { + "id": "35215", + "name": "Majadas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.94291000", + "longitude": "-5.74589000" + }, + { + "id": "35221", + "name": "Malcocinado", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.11667000", + "longitude": "-5.68333000" + }, + { + "id": "35227", + "name": "Malpartida de Cáceres", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.44664000", + "longitude": "-6.50760000" + }, + { + "id": "35229", + "name": "Malpartida de la Serena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.67470000", + "longitude": "-5.64054000" + }, + { + "id": "35228", + "name": "Malpartida de Plasencia", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.97962000", + "longitude": "-6.04609000" + }, + { + "id": "35243", + "name": "Manchita", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.81404000", + "longitude": "-6.02041000" + }, + { + "id": "35282", + "name": "Marchagaz", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.26769000", + "longitude": "-6.27485000" + }, + { + "id": "35329", + "name": "Mata de Alcántara", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71738000", + "longitude": "-6.81825000" + }, + { + "id": "35707", + "name": "Mérida", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91611000", + "longitude": "-6.34366000" + }, + { + "id": "35367", + "name": "Medellín", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.96265000", + "longitude": "-5.95785000" + }, + { + "id": "35372", + "name": "Medina de las Torres", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.33333000", + "longitude": "-6.40000000" + }, + { + "id": "35403", + "name": "Mengabril", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93554000", + "longitude": "-5.93335000" + }, + { + "id": "35408", + "name": "Mesas de Ibor", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75587000", + "longitude": "-5.54637000" + }, + { + "id": "35416", + "name": "Miajadas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.15127000", + "longitude": "-5.90841000" + }, + { + "id": "35431", + "name": "Millanes", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.84917000", + "longitude": "-5.58079000" + }, + { + "id": "35440", + "name": "Mirabel", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86230000", + "longitude": "-6.23274000" + }, + { + "id": "35452", + "name": "Mirandilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.00200000", + "longitude": "-6.28893000" + }, + { + "id": "35509", + "name": "Monesterio", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.08333000", + "longitude": "-6.26667000" + }, + { + "id": "35588", + "name": "Montánchez", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.22548000", + "longitude": "-6.14914000" + }, + { + "id": "35549", + "name": "Montehermoso", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.08796000", + "longitude": "-6.34984000" + }, + { + "id": "35561", + "name": "Montemolín", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.15000000", + "longitude": "-6.20000000" + }, + { + "id": "35568", + "name": "Monterrubio de la Serena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.58876000", + "longitude": "-5.44569000" + }, + { + "id": "35576", + "name": "Montijo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.90839000", + "longitude": "-6.61785000" + }, + { + "id": "35601", + "name": "Moraleja", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06682000", + "longitude": "-6.65983000" + }, + { + "id": "35622", + "name": "Morcillo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01884000", + "longitude": "-6.39746000" + }, + { + "id": "35732", + "name": "Navaconcejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.17712000", + "longitude": "-5.83108000" + }, + { + "id": "35752", + "name": "Navalmoral de la Mata", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89158000", + "longitude": "-5.54064000" + }, + { + "id": "35760", + "name": "Navalvillar de Ibor", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.58389000", + "longitude": "-5.41328000" + }, + { + "id": "35761", + "name": "Navalvillar de Pela", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.09436000", + "longitude": "-5.46810000" + }, + { + "id": "35782", + "name": "Navas del Madroño", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.62290000", + "longitude": "-6.65260000" + }, + { + "id": "35789", + "name": "Navezuelas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.50918000", + "longitude": "-5.43766000" + }, + { + "id": "35816", + "name": "Nogales", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.58629000", + "longitude": "-6.74901000" + }, + { + "id": "35841", + "name": "Nuñomoral", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40692000", + "longitude": "-6.24636000" + }, + { + "id": "35887", + "name": "Oliva de la Frontera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.27595000", + "longitude": "-6.91873000" + }, + { + "id": "35885", + "name": "Oliva de Mérida", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.79051000", + "longitude": "-6.12402000" + }, + { + "id": "35886", + "name": "Oliva de Plasencia", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11227000", + "longitude": "-6.08648000" + }, + { + "id": "35892", + "name": "Olivenza", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.68269000", + "longitude": "-7.10046000" + }, + { + "id": "35943", + "name": "Orellana la Vieja", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.00617000", + "longitude": "-5.53441000" + }, + { + "id": "36038", + "name": "Palomas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.69277000", + "longitude": "-6.13490000" + }, + { + "id": "36040", + "name": "Palomero", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.24688000", + "longitude": "-6.27706000" + }, + { + "id": "36167", + "name": "Peñalsordo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82019000", + "longitude": "-5.11405000" + }, + { + "id": "36113", + "name": "Pedroso de Acim", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.82522000", + "longitude": "-6.41251000" + }, + { + "id": "36133", + "name": "Peraleda de la Mata", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85288000", + "longitude": "-5.46065000" + }, + { + "id": "36132", + "name": "Peraleda de San Román", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.74130000", + "longitude": "-5.38726000" + }, + { + "id": "36141", + "name": "Perales del Puerto", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15596000", + "longitude": "-6.68192000" + }, + { + "id": "36154", + "name": "Pescueza", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91807000", + "longitude": "-6.64589000" + }, + { + "id": "36184", + "name": "Piedras Albas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78417000", + "longitude": "-6.92588000" + }, + { + "id": "36210", + "name": "Pinofranqueado", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30351000", + "longitude": "-6.33181000" + }, + { + "id": "36216", + "name": "Piornal", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11731000", + "longitude": "-5.84787000" + }, + { + "id": "36236", + "name": "Plasencia", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.03116000", + "longitude": "-6.08845000" + }, + { + "id": "36238", + "name": "Plasenzuela", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.38194000", + "longitude": "-6.04786000" + }, + { + "id": "36285", + "name": "Portaje", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91757000", + "longitude": "-6.56218000" + }, + { + "id": "36289", + "name": "Portezuelo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81233000", + "longitude": "-6.47433000" + }, + { + "id": "36335", + "name": "Pozuelo de Zarzón", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.14805000", + "longitude": "-6.41458000" + }, + { + "id": "36363", + "name": "Provincia de Badajoz", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.66667000", + "longitude": "-6.16667000" + }, + { + "id": "36368", + "name": "Provincia de Cáceres", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.52205000", + "longitude": "-6.37482000" + }, + { + "id": "36409", + "name": "Puebla de Alcocer", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98648000", + "longitude": "-5.25633000" + }, + { + "id": "36426", + "name": "Puebla de la Calzada", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.89441000", + "longitude": "-6.62592000" + }, + { + "id": "36427", + "name": "Puebla de la Reina", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.66455000", + "longitude": "-6.10216000" + }, + { + "id": "36419", + "name": "Puebla de Obando", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.17630000", + "longitude": "-6.62764000" + }, + { + "id": "36424", + "name": "Puebla de Sancho Pérez", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.40000000", + "longitude": "-6.40000000" + }, + { + "id": "36428", + "name": "Puebla del Maestre", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.08333000", + "longitude": "-6.08333000" + }, + { + "id": "36429", + "name": "Puebla del Prior", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.57032000", + "longitude": "-6.19584000" + }, + { + "id": "36453", + "name": "Puerto de Santa Cruz", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.31631000", + "longitude": "-5.85875000" + }, + { + "id": "36502", + "name": "Quintana de la Serena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.74595000", + "longitude": "-5.67233000" + }, + { + "id": "36717", + "name": "Ríolobos", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.92074000", + "longitude": "-6.30397000" + }, + { + "id": "36567", + "name": "Reina", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.18333000", + "longitude": "-5.95000000" + }, + { + "id": "36575", + "name": "Rena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.05252000", + "longitude": "-5.80868000" + }, + { + "id": "36615", + "name": "Ribera del Fresno", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.55177000", + "longitude": "-6.23768000" + }, + { + "id": "36648", + "name": "Robledillo de Gata", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32234000", + "longitude": "-6.47129000" + }, + { + "id": "36652", + "name": "Robledillo de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10093000", + "longitude": "-5.58896000" + }, + { + "id": "36650", + "name": "Robledillo de Trujillo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.26956000", + "longitude": "-5.98001000" + }, + { + "id": "36656", + "name": "Robledollano", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60962000", + "longitude": "-5.50855000" + }, + { + "id": "36669", + "name": "Romangordo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.74199000", + "longitude": "-5.70081000" + }, + { + "id": "36677", + "name": "Rosalejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.43660000", + "longitude": "-4.90821000" + }, + { + "id": "36687", + "name": "Ruanes", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.32814000", + "longitude": "-6.01347000" + }, + { + "id": "36776", + "name": "Salorino", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.48018000", + "longitude": "-7.00758000" + }, + { + "id": "36783", + "name": "Salvaleón", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.51020000", + "longitude": "-6.78627000" + }, + { + "id": "36788", + "name": "Salvatierra de los Barros", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.49091000", + "longitude": "-6.68423000" + }, + { + "id": "36786", + "name": "Salvatierra de Santiago", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.30363000", + "longitude": "-6.03206000" + }, + { + "id": "36868", + "name": "San Martín de Trevejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.21241000", + "longitude": "-6.79535000" + }, + { + "id": "36907", + "name": "San Pedro de Mérida", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95007000", + "longitude": "-6.18645000" + }, + { + "id": "36926", + "name": "San Vicente de Alcántara", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36132000", + "longitude": "-7.13766000" + }, + { + "id": "37003", + "name": "Santa Amalia", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.01118000", + "longitude": "-6.01158000" + }, + { + "id": "37004", + "name": "Santa Ana", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.30823000", + "longitude": "-5.99027000" + }, + { + "id": "37041", + "name": "Santa Cruz de la Sierra", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33635000", + "longitude": "-5.84561000" + }, + { + "id": "37034", + "name": "Santa Cruz de Paniagua", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.19167000", + "longitude": "-6.34003000" + }, + { + "id": "37069", + "name": "Santa Marta", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61421000", + "longitude": "-6.62799000" + }, + { + "id": "37070", + "name": "Santa Marta de Magasca", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.51150000", + "longitude": "-6.09881000" + }, + { + "id": "37117", + "name": "Santiago del Campo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.62840000", + "longitude": "-6.36362000" + }, + { + "id": "37128", + "name": "Santibáñez el Alto", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18525000", + "longitude": "-6.54782000" + }, + { + "id": "37129", + "name": "Santibáñez el Bajo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.17637000", + "longitude": "-6.22441000" + }, + { + "id": "37177", + "name": "Saucedilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85284000", + "longitude": "-5.67781000" + }, + { + "id": "37195", + "name": "Segura de León", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.11667000", + "longitude": "-6.51667000" + }, + { + "id": "37196", + "name": "Segura de Toro", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22427000", + "longitude": "-5.94836000" + }, + { + "id": "37221", + "name": "Serradilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.82920000", + "longitude": "-6.14034000" + }, + { + "id": "37226", + "name": "Serrejón", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81735000", + "longitude": "-5.80263000" + }, + { + "id": "37244", + "name": "Sierra de Fuentes", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.43997000", + "longitude": "-6.27242000" + }, + { + "id": "37264", + "name": "Siruela", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.97718000", + "longitude": "-5.04969000" + }, + { + "id": "37279", + "name": "Solana de los Barros", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72527000", + "longitude": "-6.53899000" + }, + { + "id": "37356", + "name": "Talarrubias", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.03697000", + "longitude": "-5.23423000" + }, + { + "id": "37359", + "name": "Talaván", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71715000", + "longitude": "-6.28146000" + }, + { + "id": "37357", + "name": "Talavera La Real", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.87794000", + "longitude": "-6.76856000" + }, + { + "id": "37360", + "name": "Talayuela", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98701000", + "longitude": "-5.60982000" + }, + { + "id": "37367", + "name": "Tamurejo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98333000", + "longitude": "-4.93333000" + }, + { + "id": "37663", + "name": "Táliga", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.52861000", + "longitude": "-7.01713000" + }, + { + "id": "37398", + "name": "Tejeda de Tiétar", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01790000", + "longitude": "-5.86953000" + }, + { + "id": "37466", + "name": "Toril", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89749000", + "longitude": "-5.77950000" + }, + { + "id": "37474", + "name": "Tornavacas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25498000", + "longitude": "-5.68876000" + }, + { + "id": "37491", + "name": "Torre de Don Miguel", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22333000", + "longitude": "-6.57686000" + }, + { + "id": "37494", + "name": "Torre de Miguel Sesmero", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61913000", + "longitude": "-6.79580000" + }, + { + "id": "37496", + "name": "Torre de Santa María", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.25441000", + "longitude": "-6.11610000" + }, + { + "id": "37520", + "name": "Torrecilla de los Ángeles", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.24788000", + "longitude": "-6.41606000" + }, + { + "id": "37526", + "name": "Torrecillas de la Tiesa", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56837000", + "longitude": "-5.74238000" + }, + { + "id": "37542", + "name": "Torrejón el Rubio", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.77068000", + "longitude": "-6.01260000" + }, + { + "id": "37536", + "name": "Torrejoncillo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89675000", + "longitude": "-6.46712000" + }, + { + "id": "37552", + "name": "Torremayor", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.90140000", + "longitude": "-6.53858000" + }, + { + "id": "37553", + "name": "Torremegía", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.79037000", + "longitude": "-6.37670000" + }, + { + "id": "37554", + "name": "Torremenga", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.04658000", + "longitude": "-5.77471000" + }, + { + "id": "37555", + "name": "Torremocha", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.34565000", + "longitude": "-6.17335000" + }, + { + "id": "37568", + "name": "Torreorgaz", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.38310000", + "longitude": "-6.24941000" + }, + { + "id": "37570", + "name": "Torrequemada", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36664000", + "longitude": "-6.22052000" + }, + { + "id": "37619", + "name": "Trasierra", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.18333000", + "longitude": "-6.00000000" + }, + { + "id": "37644", + "name": "Trujillanos", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95233000", + "longitude": "-6.25759000" + }, + { + "id": "37645", + "name": "Trujillo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.45786000", + "longitude": "-5.88203000" + }, + { + "id": "37703", + "name": "Usagre", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.35000000", + "longitude": "-6.16667000" + }, + { + "id": "37728", + "name": "Valdastillas", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13293000", + "longitude": "-5.87932000" + }, + { + "id": "37740", + "name": "Valdecañas de Tajo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75919000", + "longitude": "-5.61951000" + }, + { + "id": "37737", + "name": "Valdecaballeros", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.24289000", + "longitude": "-5.19000000" + }, + { + "id": "37745", + "name": "Valdefuentes", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.27433000", + "longitude": "-6.12183000" + }, + { + "id": "37752", + "name": "Valdehúncar", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.83659000", + "longitude": "-5.52307000" + }, + { + "id": "37753", + "name": "Valdelacalzada", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.88943000", + "longitude": "-6.70029000" + }, + { + "id": "37755", + "name": "Valdelacasa de Tajo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.72588000", + "longitude": "-5.28296000" + }, + { + "id": "37771", + "name": "Valdemorales", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.20588000", + "longitude": "-6.06622000" + }, + { + "id": "37778", + "name": "Valdeobispo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.08297000", + "longitude": "-6.24757000" + }, + { + "id": "37803", + "name": "Valdetorres", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91542000", + "longitude": "-6.06765000" + }, + { + "id": "37817", + "name": "Valencia de Alcántara", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.41148000", + "longitude": "-7.24435000" + }, + { + "id": "37819", + "name": "Valencia de las Torres", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.40518000", + "longitude": "-6.00403000" + }, + { + "id": "37820", + "name": "Valencia del Mombuey", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.24243000", + "longitude": "-7.11965000" + }, + { + "id": "37821", + "name": "Valencia del Ventoso", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.26667000", + "longitude": "-6.46667000" + }, + { + "id": "37848", + "name": "Valle de la Serena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.71010000", + "longitude": "-5.79847000" + }, + { + "id": "37845", + "name": "Valle de Matamoros", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.37889000", + "longitude": "-6.80371000" + }, + { + "id": "37846", + "name": "Valle de Santa Ana", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.36637000", + "longitude": "-6.78860000" + }, + { + "id": "37883", + "name": "Valverde de Burguillos", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.32710000", + "longitude": "-6.53648000" + }, + { + "id": "37890", + "name": "Valverde de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12268000", + "longitude": "-5.49541000" + }, + { + "id": "37886", + "name": "Valverde de Leganés", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.67059000", + "longitude": "-6.98036000" + }, + { + "id": "37887", + "name": "Valverde de Llerena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.21667000", + "longitude": "-5.81667000" + }, + { + "id": "37888", + "name": "Valverde de Mérida", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91122000", + "longitude": "-6.21999000" + }, + { + "id": "37894", + "name": "Valverde del Fresno", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22210000", + "longitude": "-6.87848000" + }, + { + "id": "37960", + "name": "Viandar de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12191000", + "longitude": "-5.53593000" + }, + { + "id": "38011", + "name": "Villa del Campo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.14223000", + "longitude": "-6.42679000" + }, + { + "id": "38013", + "name": "Villa del Rey", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65955000", + "longitude": "-6.82122000" + }, + { + "id": "38060", + "name": "Villafranca de los Barros", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.56144000", + "longitude": "-6.33810000" + }, + { + "id": "38072", + "name": "Villagarcía de la Torre", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.30000000", + "longitude": "-6.08333000" + }, + { + "id": "38076", + "name": "Villagonzalo", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.86329000", + "longitude": "-6.19665000" + }, + { + "id": "38100", + "name": "Villalba de los Barros", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61294000", + "longitude": "-6.50914000" + }, + { + "id": "38153", + "name": "Villamesías", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.24568000", + "longitude": "-5.87307000" + }, + { + "id": "38154", + "name": "Villamiel", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18635000", + "longitude": "-6.78425000" + }, + { + "id": "38201", + "name": "Villanueva de la Serena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.97655000", + "longitude": "-5.79740000" + }, + { + "id": "38202", + "name": "Villanueva de la Sierra", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20163000", + "longitude": "-6.40611000" + }, + { + "id": "38204", + "name": "Villanueva de la Vera", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.12998000", + "longitude": "-5.46250000" + }, + { + "id": "38218", + "name": "Villanueva del Fresno", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.37600000", + "longitude": "-7.16753000" + }, + { + "id": "38243", + "name": "Villar de Plasencia", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13773000", + "longitude": "-6.02790000" + }, + { + "id": "38244", + "name": "Villar de Rena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.07651000", + "longitude": "-5.81074000" + }, + { + "id": "38258", + "name": "Villar del Pedroso", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70631000", + "longitude": "-5.19583000" + }, + { + "id": "38260", + "name": "Villar del Rey", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.13310000", + "longitude": "-6.84762000" + }, + { + "id": "38308", + "name": "Villarta de los Montes", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.21386000", + "longitude": "-4.79227000" + }, + { + "id": "38316", + "name": "Villasbuenas de Gata", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.17879000", + "longitude": "-6.62641000" + }, + { + "id": "38450", + "name": "Zafra", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.42539000", + "longitude": "-6.41734000" + }, + { + "id": "38456", + "name": "Zahinos", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.33135000", + "longitude": "-6.95533000" + }, + { + "id": "38458", + "name": "Zalamea de la Serena", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.65131000", + "longitude": "-5.66063000" + }, + { + "id": "38477", + "name": "Zarza de Alange", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "38.81814000", + "longitude": "-6.21756000" + }, + { + "id": "38478", + "name": "Zarza de Granadilla", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23723000", + "longitude": "-6.04850000" + }, + { + "id": "38479", + "name": "Zarza de Montánchez", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.25756000", + "longitude": "-6.03248000" + }, + { + "id": "38481", + "name": "Zarza la Mayor", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.87692000", + "longitude": "-6.86211000" + }, + { + "id": "38495", + "name": "Zorita", + "state_id": 1190, + "state_code": "EX", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28522000", + "longitude": "-5.69973000" + }, + { + "id": "31892", + "name": "A Baña", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.96180000", + "longitude": "-8.75784000" + }, + { + "id": "31893", + "name": "A Coruña", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.37135000", + "longitude": "-8.39600000" + }, + { + "id": "31894", + "name": "A Estrada", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68911000", + "longitude": "-8.48842000" + }, + { + "id": "31895", + "name": "A Pobra do Brollon", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55612000", + "longitude": "-7.39140000" + }, + { + "id": "31896", + "name": "A Pobra do Caramiñal", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60295000", + "longitude": "-8.93824000" + }, + { + "id": "31897", + "name": "A Rúa", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40048000", + "longitude": "-7.10268000" + }, + { + "id": "31901", + "name": "Abadín", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.36667000", + "longitude": "-7.48333000" + }, + { + "id": "31906", + "name": "Abegondo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21667000", + "longitude": "-8.28333000" + }, + { + "id": "32254", + "name": "Allariz", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19044000", + "longitude": "-7.80175000" + }, + { + "id": "32364", + "name": "Amés", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.90426000", + "longitude": "-8.65551000" + }, + { + "id": "32352", + "name": "Ambía", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20578000", + "longitude": "-7.73707000" + }, + { + "id": "32355", + "name": "Amoeiro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41667000", + "longitude": "-7.95000000" + }, + { + "id": "32411", + "name": "Aranga", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.23469000", + "longitude": "-8.01705000" + }, + { + "id": "32425", + "name": "Arbo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11667000", + "longitude": "-8.31667000" + }, + { + "id": "32455", + "name": "Ares", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.42995000", + "longitude": "-8.24254000" + }, + { + "id": "32522", + "name": "Arteixo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.30482000", + "longitude": "-8.50749000" + }, + { + "id": "32529", + "name": "Arzúa", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.93333000", + "longitude": "-8.15000000" + }, + { + "id": "32533", + "name": "As Pontes de García Rodríguez", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.45266000", + "longitude": "-7.85178000" + }, + { + "id": "32569", + "name": "Avión", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38333000", + "longitude": "-8.25000000" + }, + { + "id": "32703", + "name": "Baños de Molgas", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24148000", + "longitude": "-7.67223000" + }, + { + "id": "32616", + "name": "Baiona", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11667000", + "longitude": "-8.85000000" + }, + { + "id": "32630", + "name": "Baltar", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95200000", + "longitude": "-7.71581000" + }, + { + "id": "32632", + "name": "Bande", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03120000", + "longitude": "-7.97489000" + }, + { + "id": "32639", + "name": "Baralla", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.89207000", + "longitude": "-7.25492000" + }, + { + "id": "32672", + "name": "Barreiros", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.53321000", + "longitude": "-7.23342000" + }, + { + "id": "32714", + "name": "Beade", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33074000", + "longitude": "-8.12950000" + }, + { + "id": "32723", + "name": "Becerreá", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.85610000", + "longitude": "-7.16360000" + }, + { + "id": "32727", + "name": "Begonte", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.15121000", + "longitude": "-7.68643000" + }, + { + "id": "32851", + "name": "Bergondo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.31667000", + "longitude": "-8.23333000" + }, + { + "id": "32879", + "name": "Betanzos", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.28042000", + "longitude": "-8.21467000" + }, + { + "id": "32908", + "name": "Blancos", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99652000", + "longitude": "-7.75175000" + }, + { + "id": "32921", + "name": "Boborás", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43332000", + "longitude": "-8.14431000" + }, + { + "id": "32933", + "name": "Boimorto", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.00000000", + "longitude": "-8.13333000" + }, + { + "id": "32934", + "name": "Boiro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64725000", + "longitude": "-8.88459000" + }, + { + "id": "33007", + "name": "Bueu", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32458000", + "longitude": "-8.78497000" + }, + { + "id": "33022", + "name": "Burela de Cabo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.65000000", + "longitude": "-7.40000000" + }, + { + "id": "33137", + "name": "Caldas de Reis", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60473000", + "longitude": "-8.64230000" + }, + { + "id": "33156", + "name": "Calvos", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94790000", + "longitude": "-7.89604000" + }, + { + "id": "33169", + "name": "Camariñas", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.13115000", + "longitude": "-9.18172000" + }, + { + "id": "33174", + "name": "Cambados", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51222000", + "longitude": "-8.81310000" + }, + { + "id": "33176", + "name": "Cambre", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.29438000", + "longitude": "-8.34736000" + }, + { + "id": "33237", + "name": "Cangas do Morrazo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26413000", + "longitude": "-8.78463000" + }, + { + "id": "33282", + "name": "Carballeda de Avia", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32140000", + "longitude": "-8.16456000" + }, + { + "id": "33283", + "name": "Carballo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21300000", + "longitude": "-8.69104000" + }, + { + "id": "33307", + "name": "Cariño", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.74134000", + "longitude": "-7.86715000" + }, + { + "id": "33312", + "name": "Carnota", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.82330000", + "longitude": "-9.08913000" + }, + { + "id": "33316", + "name": "Carral", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.22860000", + "longitude": "-8.35545000" + }, + { + "id": "33339", + "name": "Cartelle", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25109000", + "longitude": "-8.07062000" + }, + { + "id": "33473", + "name": "Castrelo de Miño", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29798000", + "longitude": "-8.06697000" + }, + { + "id": "33486", + "name": "Castro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.76667000", + "longitude": "-7.58333000" + }, + { + "id": "33487", + "name": "Castro Caldelas", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37366000", + "longitude": "-7.42578000" + }, + { + "id": "33490", + "name": "Castro de Rei", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.20866000", + "longitude": "-7.40026000" + }, + { + "id": "33509", + "name": "Castroverde", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.03020000", + "longitude": "-7.32428000" + }, + { + "id": "33515", + "name": "Catoira", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66748000", + "longitude": "-8.72323000" + }, + { + "id": "33547", + "name": "Cea", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47490000", + "longitude": "-7.98739000" + }, + { + "id": "33554", + "name": "Cedeira", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.66044000", + "longitude": "-8.05719000" + }, + { + "id": "33559", + "name": "Cee", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.95466000", + "longitude": "-9.18800000" + }, + { + "id": "33563", + "name": "Celanova", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15303000", + "longitude": "-7.95513000" + }, + { + "id": "33572", + "name": "Cenlle", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34183000", + "longitude": "-8.08982000" + }, + { + "id": "33581", + "name": "Cerdido", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.62063000", + "longitude": "-7.99959000" + }, + { + "id": "33606", + "name": "Cervo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.67019000", + "longitude": "-7.41013000" + }, + { + "id": "33607", + "name": "Cesuras", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.17282000", + "longitude": "-8.20061000" + }, + { + "id": "33617", + "name": "Chantada", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60876000", + "longitude": "-7.77115000" + }, + { + "id": "33725", + "name": "Coirós", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25000000", + "longitude": "-8.16667000" + }, + { + "id": "33727", + "name": "Coles", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40000000", + "longitude": "-7.83333000" + }, + { + "id": "33752", + "name": "Combarro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43188000", + "longitude": "-8.70649000" + }, + { + "id": "33779", + "name": "Corcubión", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.94414000", + "longitude": "-9.19260000" + }, + { + "id": "33788", + "name": "Corgo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.94434000", + "longitude": "-7.43140000" + }, + { + "id": "33792", + "name": "Coristanco", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.20000000", + "longitude": "-8.75000000" + }, + { + "id": "33828", + "name": "Covelo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23333000", + "longitude": "-8.35000000" + }, + { + "id": "33843", + "name": "Cualedro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98897000", + "longitude": "-7.59464000" + }, + { + "id": "33882", + "name": "Culleredo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.28788000", + "longitude": "-8.38858000" + }, + { + "id": "33885", + "name": "Cuntis", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63396000", + "longitude": "-8.56256000" + }, + { + "id": "33887", + "name": "Curtis", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.12374000", + "longitude": "-8.14818000" + }, + { + "id": "33953", + "name": "Dozón", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58333000", + "longitude": "-8.01667000" + }, + { + "id": "33960", + "name": "Dumbría", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.00836000", + "longitude": "-9.11328000" + }, + { + "id": "34063", + "name": "Entrimo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93297000", + "longitude": "-8.11725000" + }, + { + "id": "34095", + "name": "Esgos", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32549000", + "longitude": "-7.69691000" + }, + { + "id": "34172", + "name": "Fene", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.45000000", + "longitude": "-8.15000000" + }, + { + "id": "34182", + "name": "Ferrol", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.48961000", + "longitude": "-8.21940000" + }, + { + "id": "34192", + "name": "Fisterra", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.90492000", + "longitude": "-9.26289000" + }, + { + "id": "34210", + "name": "Fonsagrada", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.12398000", + "longitude": "-7.06790000" + }, + { + "id": "34226", + "name": "Fornelos de Montes", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34126000", + "longitude": "-8.45291000" + }, + { + "id": "34234", + "name": "Foz", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.56920000", + "longitude": "-7.25441000" + }, + { + "id": "34267", + "name": "Friol", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.03213000", + "longitude": "-7.79514000" + }, + { + "id": "34483", + "name": "Gondomar", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11155000", + "longitude": "-8.74971000" + }, + { + "id": "34552", + "name": "Guitiriz", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.18169000", + "longitude": "-7.89656000" + }, + { + "id": "34744", + "name": "Illa de Arousa", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56376000", + "longitude": "-8.87258000" + }, + { + "id": "34759", + "name": "Irixoa", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.28470000", + "longitude": "-8.05916000" + }, + { + "id": "34956", + "name": "Lalín", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66085000", + "longitude": "-8.11285000" + }, + { + "id": "34957", + "name": "Lama", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40000000", + "longitude": "-8.43333000" + }, + { + "id": "34974", + "name": "Laracha", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.25375000", + "longitude": "-8.58535000" + }, + { + "id": "35007", + "name": "Laza", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06136000", + "longitude": "-7.46200000" + }, + { + "id": "35175", + "name": "Láncara", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86425000", + "longitude": "-7.33667000" + }, + { + "id": "35095", + "name": "Lobios", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40746000", + "longitude": "-7.53164000" + }, + { + "id": "35144", + "name": "Lousame", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.76477000", + "longitude": "-8.84926000" + }, + { + "id": "35159", + "name": "Lugo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.00992000", + "longitude": "-7.55602000" + }, + { + "id": "35161", + "name": "Luintra", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40964000", + "longitude": "-7.72682000" + }, + { + "id": "35181", + "name": "Maceda", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26972000", + "longitude": "-7.65052000" + }, + { + "id": "35231", + "name": "Malpica", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.32280000", + "longitude": "-8.81052000" + }, + { + "id": "35268", + "name": "Manzaneda", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30962000", + "longitude": "-7.23209000" + }, + { + "id": "35314", + "name": "Marín", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39145000", + "longitude": "-8.70136000" + }, + { + "id": "35323", + "name": "Maside", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41031000", + "longitude": "-8.02582000" + }, + { + "id": "35354", + "name": "Mazaricos", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.94033000", + "longitude": "-8.97187000" + }, + { + "id": "35364", + "name": "Meaño", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44661000", + "longitude": "-8.78122000" + }, + { + "id": "35381", + "name": "Meira", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.21337000", + "longitude": "-7.29372000" + }, + { + "id": "35382", + "name": "Meis", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50000000", + "longitude": "-8.75000000" + }, + { + "id": "35392", + "name": "Melón", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26016000", + "longitude": "-8.21400000" + }, + { + "id": "35410", + "name": "Mesia", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.10000000", + "longitude": "-8.26667000" + }, + { + "id": "35457", + "name": "Miño", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.35000000", + "longitude": "-8.20000000" + }, + { + "id": "35459", + "name": "Moaña", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27807000", + "longitude": "-8.73921000" + }, + { + "id": "35465", + "name": "Moeche", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.55000000", + "longitude": "-8.01667000" + }, + { + "id": "35504", + "name": "Mondariz", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23110000", + "longitude": "-8.45839000" + }, + { + "id": "35505", + "name": "Mondariz-Balneario", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22686000", + "longitude": "-8.46728000" + }, + { + "id": "35506", + "name": "Mondoñedo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.40000000", + "longitude": "-7.40000000" + }, + { + "id": "35512", + "name": "Monfero", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.33333000", + "longitude": "-8.01667000" + }, + { + "id": "35513", + "name": "Monforte de Lemos", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52165000", + "longitude": "-7.51422000" + }, + { + "id": "35547", + "name": "Montederramo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27554000", + "longitude": "-7.50138000" + }, + { + "id": "35565", + "name": "Monterroso", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.79250000", + "longitude": "-7.83425000" + }, + { + "id": "35621", + "name": "Moraña", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55000000", + "longitude": "-8.58333000" + }, + { + "id": "35637", + "name": "Mos", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.15667000", + "longitude": "-7.55047000" + }, + { + "id": "35658", + "name": "Mugardos", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.46040000", + "longitude": "-8.25507000" + }, + { + "id": "35659", + "name": "Mugia", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.10414000", + "longitude": "-9.21791000" + }, + { + "id": "35660", + "name": "Muiños", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95609000", + "longitude": "-7.97396000" + }, + { + "id": "35669", + "name": "Muras", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.46685000", + "longitude": "-7.72383000" + }, + { + "id": "35685", + "name": "Muros", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77617000", + "longitude": "-9.06032000" + }, + { + "id": "35720", + "name": "Narón", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.50175000", + "longitude": "-8.19082000" + }, + { + "id": "35790", + "name": "Navia de Suarna", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.96667000", + "longitude": "-7.00000000" + }, + { + "id": "35797", + "name": "Negreira", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.90402000", + "longitude": "-8.74273000" + }, + { + "id": "35808", + "name": "Nigrán", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14153000", + "longitude": "-8.80656000" + }, + { + "id": "35817", + "name": "Nogueira de Ramuín", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41712000", + "longitude": "-7.74982000" + }, + { + "id": "35846", + "name": "O Barco de Valdeorras", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41642000", + "longitude": "-6.99005000" + }, + { + "id": "35847", + "name": "O Carballiño", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43163000", + "longitude": "-8.07899000" + }, + { + "id": "35848", + "name": "O Grove", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49444000", + "longitude": "-8.86502000" + }, + { + "id": "35849", + "name": "O Incio", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63333000", + "longitude": "-7.35000000" + }, + { + "id": "35850", + "name": "O Páramo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.95000000", + "longitude": "-7.30000000" + }, + { + "id": "35851", + "name": "O Rosal", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93536000", + "longitude": "-8.83677000" + }, + { + "id": "35864", + "name": "Oia", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00000000", + "longitude": "-8.86667000" + }, + { + "id": "35865", + "name": "Oimbra", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88554000", + "longitude": "-7.47216000" + }, + { + "id": "35876", + "name": "Oleiros", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.33333000", + "longitude": "-8.31667000" + }, + { + "id": "35939", + "name": "Ordes", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.07654000", + "longitude": "-8.40900000" + }, + { + "id": "35959", + "name": "Oroso", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.98333000", + "longitude": "-8.43333000" + }, + { + "id": "35983", + "name": "Ourense", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33669000", + "longitude": "-7.86407000" + }, + { + "id": "35984", + "name": "Ourol", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.87013000", + "longitude": "-7.61447000" + }, + { + "id": "35985", + "name": "Outeiro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.14458000", + "longitude": "-7.29212000" + }, + { + "id": "35986", + "name": "Outeiro de Rei", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.10198000", + "longitude": "-7.61497000" + }, + { + "id": "35987", + "name": "Outes", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86189000", + "longitude": "-8.90181000" + }, + { + "id": "35995", + "name": "Padrón", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73875000", + "longitude": "-8.66057000" + }, + { + "id": "35993", + "name": "Padrenda", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13333000", + "longitude": "-8.15000000" + }, + { + "id": "36031", + "name": "Palmeira", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58333000", + "longitude": "-8.95000000" + }, + { + "id": "36050", + "name": "Pantón", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51667000", + "longitude": "-7.60000000" + }, + { + "id": "36059", + "name": "Paradela", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.76667000", + "longitude": "-7.56667000" + }, + { + "id": "36075", + "name": "Pastoriza", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.33333000", + "longitude": "-8.46667000" + }, + { + "id": "36147", + "name": "Pereiro de Aguiar", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34524000", + "longitude": "-7.80008000" + }, + { + "id": "36159", + "name": "Petín", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38191000", + "longitude": "-7.12899000" + }, + { + "id": "36232", + "name": "Piñor", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50120000", + "longitude": "-8.00151000" + }, + { + "id": "36255", + "name": "Pobra de Trives", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33932000", + "longitude": "-7.25338000" + }, + { + "id": "36256", + "name": "Poio", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44775000", + "longitude": "-8.68594000" + }, + { + "id": "36272", + "name": "Ponteareas", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17476000", + "longitude": "-8.50398000" + }, + { + "id": "36273", + "name": "Pontevedra", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43100000", + "longitude": "-8.64435000" + }, + { + "id": "36278", + "name": "Porqueira", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01667000", + "longitude": "-7.85000000" + }, + { + "id": "36280", + "name": "Porriño", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16156000", + "longitude": "-8.61980000" + }, + { + "id": "36286", + "name": "Portas", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58531000", + "longitude": "-8.65573000" + }, + { + "id": "36296", + "name": "Porto do Son", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.72482000", + "longitude": "-9.00527000" + }, + { + "id": "36298", + "name": "Portomarín", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.80620000", + "longitude": "-7.61644000" + }, + { + "id": "36299", + "name": "Portonovo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39424000", + "longitude": "-8.82563000" + }, + { + "id": "36360", + "name": "Provincia da Coruña", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.16667000", + "longitude": "-8.41667000" + }, + { + "id": "36378", + "name": "Provincia de Lugo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.00000000", + "longitude": "-7.50000000" + }, + { + "id": "36382", + "name": "Provincia de Ourense", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16667000", + "longitude": "-7.50000000" + }, + { + "id": "36384", + "name": "Provincia de Pontevedra", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50000000", + "longitude": "-8.50000000" + }, + { + "id": "36433", + "name": "Puente Nuevo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.34948000", + "longitude": "-7.19458000" + }, + { + "id": "36527", + "name": "Quintela de Leirado", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13967000", + "longitude": "-8.10126000" + }, + { + "id": "36529", + "name": "Quiroga", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47678000", + "longitude": "-7.27463000" + }, + { + "id": "36542", + "name": "Rairiz de Veiga", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08364000", + "longitude": "-7.83503000" + }, + { + "id": "36707", + "name": "Rábade", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.11700000", + "longitude": "-7.61714000" + }, + { + "id": "36718", + "name": "Ríotorto", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.35000000", + "longitude": "-7.23333000" + }, + { + "id": "36561", + "name": "Redondela", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28337000", + "longitude": "-8.60960000" + }, + { + "id": "36603", + "name": "Rianxo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64977000", + "longitude": "-8.81763000" + }, + { + "id": "36642", + "name": "Riós", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97457000", + "longitude": "-7.28234000" + }, + { + "id": "36607", + "name": "Ribadavia", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28804000", + "longitude": "-8.14362000" + }, + { + "id": "36608", + "name": "Ribadeo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.53704000", + "longitude": "-7.04095000" + }, + { + "id": "36609", + "name": "Ribadumia", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51667000", + "longitude": "-8.75000000" + }, + { + "id": "36614", + "name": "Ribeira", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.74611000", + "longitude": "-8.44392000" + }, + { + "id": "36663", + "name": "Rodeiro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65193000", + "longitude": "-7.95519000" + }, + { + "id": "36732", + "name": "Sada", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.35619000", + "longitude": "-8.25796000" + }, + { + "id": "36785", + "name": "Salvatierra de Miño", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08333000", + "longitude": "-8.50000000" + }, + { + "id": "36792", + "name": "Samos", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73100000", + "longitude": "-7.32582000" + }, + { + "id": "36801", + "name": "San Amaro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37385000", + "longitude": "-8.07347000" + }, + { + "id": "36915", + "name": "San Román", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86932000", + "longitude": "-7.06261000" + }, + { + "id": "37021", + "name": "Santa Comba", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.03306000", + "longitude": "-8.80925000" + }, + { + "id": "37071", + "name": "Santa Marta de Ortigueira", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.68333000", + "longitude": "-7.85000000" + }, + { + "id": "37101", + "name": "Santa Uxía de Ribeira", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55352000", + "longitude": "-8.99094000" + }, + { + "id": "37114", + "name": "Santiago de Compostela", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.88052000", + "longitude": "-8.54569000" + }, + { + "id": "37132", + "name": "Santiso", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.87388000", + "longitude": "-8.05497000" + }, + { + "id": "37157", + "name": "Sanxenxo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39996000", + "longitude": "-8.80698000" + }, + { + "id": "37167", + "name": "Sarreaus", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08784000", + "longitude": "-7.60348000" + }, + { + "id": "37168", + "name": "Sarria", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.78148000", + "longitude": "-7.41431000" + }, + { + "id": "37256", + "name": "Silleda", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69605000", + "longitude": "-8.24653000" + }, + { + "id": "37270", + "name": "Sober", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46127000", + "longitude": "-7.58640000" + }, + { + "id": "37271", + "name": "Sobradelo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58333000", + "longitude": "-8.78333000" + }, + { + "id": "37274", + "name": "Sobrado", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.03882000", + "longitude": "-8.02784000" + }, + { + "id": "37289", + "name": "Somozas", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.53333000", + "longitude": "-7.93333000" + }, + { + "id": "37344", + "name": "Taboada", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69900000", + "longitude": "-7.82298000" + }, + { + "id": "37345", + "name": "Taboadela", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24234000", + "longitude": "-7.82719000" + }, + { + "id": "37404", + "name": "Teo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.75000000", + "longitude": "-8.50000000" + }, + { + "id": "37610", + "name": "Toén", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31765000", + "longitude": "-7.95435000" + }, + { + "id": "37451", + "name": "Tomiño", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98772000", + "longitude": "-8.75502000" + }, + { + "id": "37608", + "name": "Touro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86812000", + "longitude": "-8.30764000" + }, + { + "id": "37611", + "name": "Trabada", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.44475000", + "longitude": "-7.19527000" + }, + { + "id": "37620", + "name": "Trasmiras", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02540000", + "longitude": "-7.61735000" + }, + { + "id": "37624", + "name": "Trazo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.01667000", + "longitude": "-8.53333000" + }, + { + "id": "37651", + "name": "Tui", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04713000", + "longitude": "-8.64435000" + }, + { + "id": "37812", + "name": "Valdoviño", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.60000000", + "longitude": "-8.13333000" + }, + { + "id": "37828", + "name": "Valga", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69792000", + "longitude": "-8.63959000" + }, + { + "id": "37902", + "name": "Vedra", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77817000", + "longitude": "-8.47636000" + }, + { + "id": "37955", + "name": "Verín", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94149000", + "longitude": "-7.43809000" + }, + { + "id": "37951", + "name": "Verea", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10653000", + "longitude": "-8.00092000" + }, + { + "id": "37970", + "name": "Vigo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23282000", + "longitude": "-8.72264000" + }, + { + "id": "37985", + "name": "Vilagarcía de Arousa", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.59631000", + "longitude": "-8.76426000" + }, + { + "id": "37987", + "name": "Vilalba", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.29806000", + "longitude": "-7.68130000" + }, + { + "id": "37994", + "name": "Vilanova de Arousa", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56400000", + "longitude": "-8.82797000" + }, + { + "id": "38002", + "name": "Vilasantar", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.07106000", + "longitude": "-8.12163000" + }, + { + "id": "38005", + "name": "Vilaxoán", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58353000", + "longitude": "-8.79353000" + }, + { + "id": "38388", + "name": "Vimianzo", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.10988000", + "longitude": "-9.03351000" + }, + { + "id": "38403", + "name": "Viveiro", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.66228000", + "longitude": "-7.59344000" + }, + { + "id": "38422", + "name": "Xinzo de Limia", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06350000", + "longitude": "-7.72459000" + }, + { + "id": "38488", + "name": "Zas", + "state_id": 1167, + "state_code": "GA", + "country_id": 207, + "country_code": "ES", + "latitude": "43.09885000", + "longitude": "-8.91558000" + }, + { + "id": "31946", + "name": "Agoncillo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44667000", + "longitude": "-2.28980000" + }, + { + "id": "31965", + "name": "Aguilar del Río Alhama", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96212000", + "longitude": "-1.99340000" + }, + { + "id": "31986", + "name": "Ajamil", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16705000", + "longitude": "-2.48752000" + }, + { + "id": "32034", + "name": "Albelda de Iregua", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35837000", + "longitude": "-2.47278000" + }, + { + "id": "32038", + "name": "Alberite", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40704000", + "longitude": "-2.43894000" + }, + { + "id": "32082", + "name": "Alcanadre", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40492000", + "longitude": "-2.12073000" + }, + { + "id": "32158", + "name": "Aldeanueva de Ebro", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22911000", + "longitude": "-1.88735000" + }, + { + "id": "32186", + "name": "Alesanco", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41409000", + "longitude": "-2.81666000" + }, + { + "id": "32187", + "name": "Alesón", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40554000", + "longitude": "-2.68938000" + }, + { + "id": "32198", + "name": "Alfaro", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18032000", + "longitude": "-1.75016000" + }, + { + "id": "32272", + "name": "Almarza de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21650000", + "longitude": "-2.59873000" + }, + { + "id": "32380", + "name": "Anguciana", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57421000", + "longitude": "-2.90124000" + }, + { + "id": "32381", + "name": "Anguiano", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26381000", + "longitude": "-2.76463000" + }, + { + "id": "32453", + "name": "Arenzana de Abajo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38599000", + "longitude": "-2.71940000" + }, + { + "id": "32454", + "name": "Arenzana de Arriba", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38745000", + "longitude": "-2.69494000" + }, + { + "id": "32493", + "name": "Arnedillo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21221000", + "longitude": "-2.23602000" + }, + { + "id": "32494", + "name": "Arnedo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22800000", + "longitude": "-2.10083000" + }, + { + "id": "32518", + "name": "Arrúbal", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43485000", + "longitude": "-2.25143000" + }, + { + "id": "32558", + "name": "Ausejo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34210000", + "longitude": "-2.16710000" + }, + { + "id": "32562", + "name": "Autol", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21661000", + "longitude": "-2.00525000" + }, + { + "id": "32586", + "name": "Azofra", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42400000", + "longitude": "-2.80086000" + }, + { + "id": "38572", + "name": "Ábalos", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57154000", + "longitude": "-2.70956000" + }, + { + "id": "32701", + "name": "Bañares", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46838000", + "longitude": "-2.91010000" + }, + { + "id": "32706", + "name": "Baños de Río Tobía", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33533000", + "longitude": "-2.76099000" + }, + { + "id": "32705", + "name": "Baños de Rioja", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51230000", + "longitude": "-2.94635000" + }, + { + "id": "32603", + "name": "Badarán", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36794000", + "longitude": "-2.81079000" + }, + { + "id": "32837", + "name": "Berceo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33906000", + "longitude": "-2.85239000" + }, + { + "id": "32848", + "name": "Bergasa", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25285000", + "longitude": "-2.13221000" + }, + { + "id": "32849", + "name": "Bergasillas Bajera", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24462000", + "longitude": "-2.15830000" + }, + { + "id": "32919", + "name": "Bobadilla", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31873000", + "longitude": "-2.75992000" + }, + { + "id": "32990", + "name": "Briñas", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60106000", + "longitude": "-2.83192000" + }, + { + "id": "32983", + "name": "Brieva de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16462000", + "longitude": "-2.79450000" + }, + { + "id": "32988", + "name": "Briones", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54397000", + "longitude": "-2.78572000" + }, + { + "id": "33534", + "name": "Cañas", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39240000", + "longitude": "-2.84649000" + }, + { + "id": "33091", + "name": "Cabezón de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19716000", + "longitude": "-2.51989000" + }, + { + "id": "33126", + "name": "Calahorra", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30506000", + "longitude": "-1.96521000" + }, + { + "id": "33223", + "name": "Canales de la Sierra", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14233000", + "longitude": "-3.02458000" + }, + { + "id": "33244", + "name": "Canillas de Río Tuerto", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39950000", + "longitude": "-2.84091000" + }, + { + "id": "33345", + "name": "Casalarreina", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54911000", + "longitude": "-2.90994000" + }, + { + "id": "33398", + "name": "Castañares de Rioja", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51248000", + "longitude": "-2.93148000" + }, + { + "id": "33896", + "name": "Cárdenas", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37464000", + "longitude": "-2.76726000" + }, + { + "id": "33565", + "name": "Cellorigo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62703000", + "longitude": "-3.00016000" + }, + { + "id": "33569", + "name": "Cenicero", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48130000", + "longitude": "-2.64412000" + }, + { + "id": "33602", + "name": "Cervera del Río Alhama", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00517000", + "longitude": "-1.95531000" + }, + { + "id": "33656", + "name": "Cidamón", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49518000", + "longitude": "-2.87834000" + }, + { + "id": "33665", + "name": "Cihuri", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56499000", + "longitude": "-2.92287000" + }, + { + "id": "33688", + "name": "Cirueña", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41214000", + "longitude": "-2.89593000" + }, + { + "id": "33705", + "name": "Clavijo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34897000", + "longitude": "-2.42666000" + }, + { + "id": "33783", + "name": "Cordovín", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38557000", + "longitude": "-2.81500000" + }, + { + "id": "33786", + "name": "Corera", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34344000", + "longitude": "-2.22023000" + }, + { + "id": "33793", + "name": "Cornago", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06444000", + "longitude": "-2.09486000" + }, + { + "id": "33797", + "name": "Corporales", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43208000", + "longitude": "-2.99535000" + }, + { + "id": "34055", + "name": "Enciso", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14946000", + "longitude": "-2.26953000" + }, + { + "id": "34062", + "name": "Entrena", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38782000", + "longitude": "-2.53066000" + }, + { + "id": "34146", + "name": "Estollo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32953000", + "longitude": "-2.85092000" + }, + { + "id": "34153", + "name": "Ezcaray", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32536000", + "longitude": "-3.01309000" + }, + { + "id": "34204", + "name": "Foncea", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61529000", + "longitude": "-3.03897000" + }, + { + "id": "34219", + "name": "Fonzaleche", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58114000", + "longitude": "-3.01218000" + }, + { + "id": "34286", + "name": "Fuenmayor", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46729000", + "longitude": "-2.56153000" + }, + { + "id": "34377", + "name": "Galbárruli", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62181000", + "longitude": "-2.96087000" + }, + { + "id": "34381", + "name": "Galilea", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34703000", + "longitude": "-2.23605000" + }, + { + "id": "34393", + "name": "Gallinero de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17229000", + "longitude": "-2.61793000" + }, + { + "id": "34466", + "name": "Gimileo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54992000", + "longitude": "-2.82237000" + }, + { + "id": "34509", + "name": "Grañón", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44992000", + "longitude": "-3.02767000" + }, + { + "id": "34518", + "name": "Grávalos", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10836000", + "longitude": "-1.99874000" + }, + { + "id": "34572", + "name": "Haro", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57634000", + "longitude": "-2.84760000" + }, + { + "id": "34580", + "name": "Herce", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21423000", + "longitude": "-2.16488000" + }, + { + "id": "34592", + "name": "Herramélluri", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50295000", + "longitude": "-3.01954000" + }, + { + "id": "34605", + "name": "Hervías", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44781000", + "longitude": "-2.88714000" + }, + { + "id": "34657", + "name": "Hormilla", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43828000", + "longitude": "-2.77447000" + }, + { + "id": "34658", + "name": "Hormilleja", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45628000", + "longitude": "-2.73155000" + }, + { + "id": "34661", + "name": "Hornillos de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21001000", + "longitude": "-2.41960000" + }, + { + "id": "34664", + "name": "Hornos de Moncalvillo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39198000", + "longitude": "-2.58550000" + }, + { + "id": "34713", + "name": "Huércanos", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42800000", + "longitude": "-2.69589000" + }, + { + "id": "34735", + "name": "Igea", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06777000", + "longitude": "-2.01094000" + }, + { + "id": "34793", + "name": "Jalón de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21804000", + "longitude": "-2.49004000" + }, + { + "id": "34946", + "name": "Laguna de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17455000", + "longitude": "-2.54282000" + }, + { + "id": "34953", + "name": "Lagunilla del Jubera", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33414000", + "longitude": "-2.32117000" + }, + { + "id": "34975", + "name": "Lardero", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42686000", + "longitude": "-2.46153000" + }, + { + "id": "35017", + "name": "Ledesma de la Cogolla", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32032000", + "longitude": "-2.71900000" + }, + { + "id": "35027", + "name": "Leiva", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50281000", + "longitude": "-3.04701000" + }, + { + "id": "35040", + "name": "Leza de Río Leza", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32952000", + "longitude": "-2.40606000" + }, + { + "id": "35101", + "name": "Logroño", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46667000", + "longitude": "-2.45000000" + }, + { + "id": "35164", + "name": "Lumbreras", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10477000", + "longitude": "-2.62189000" + }, + { + "id": "35253", + "name": "Manjarrés", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39152000", + "longitude": "-2.67512000" + }, + { + "id": "35266", + "name": "Manzanares de Rioja", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39610000", + "longitude": "-2.89590000" + }, + { + "id": "35347", + "name": "Matute", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29888000", + "longitude": "-2.79564000" + }, + { + "id": "35378", + "name": "Medrano", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38361000", + "longitude": "-2.55394000" + }, + { + "id": "35666", + "name": "Munilla", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18900000", + "longitude": "-2.29506000" + }, + { + "id": "35678", + "name": "Murillo de Río Leza", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40099000", + "longitude": "-2.32464000" + }, + { + "id": "35682", + "name": "Muro de Aguas", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13364000", + "longitude": "-2.11175000" + }, + { + "id": "35684", + "name": "Muro en Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22509000", + "longitude": "-2.53038000" + }, + { + "id": "35710", + "name": "Nalda", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33467000", + "longitude": "-2.48710000" + }, + { + "id": "35739", + "name": "Navajún", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96667000", + "longitude": "-2.10000000" + }, + { + "id": "35842", + "name": "Nájera", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41822000", + "longitude": "-2.72865000" + }, + { + "id": "35807", + "name": "Nieva de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21835000", + "longitude": "-2.66700000" + }, + { + "id": "35859", + "name": "Ocón", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29898000", + "longitude": "-2.24019000" + }, + { + "id": "35857", + "name": "Ochánduri", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52525000", + "longitude": "-3.00415000" + }, + { + "id": "35867", + "name": "Ojacastro", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34720000", + "longitude": "-3.00490000" + }, + { + "id": "35894", + "name": "Ollauri", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54256000", + "longitude": "-2.83448000" + }, + { + "id": "36087", + "name": "Pazuengos", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31776000", + "longitude": "-2.92539000" + }, + { + "id": "36112", + "name": "Pedroso", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29959000", + "longitude": "-2.71889000" + }, + { + "id": "36208", + "name": "Pinillos", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19951000", + "longitude": "-2.59709000" + }, + { + "id": "36341", + "name": "Pradejón", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33446000", + "longitude": "-2.06851000" + }, + { + "id": "36343", + "name": "Pradillo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17660000", + "longitude": "-2.64185000" + }, + { + "id": "36407", + "name": "Préjano", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18648000", + "longitude": "-2.17998000" + }, + { + "id": "36375", + "name": "Provincia de La Rioja", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46311000", + "longitude": "-2.42455000" + }, + { + "id": "36492", + "name": "Quel", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22979000", + "longitude": "-2.05196000" + }, + { + "id": "36534", + "name": "Rabanera", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18955000", + "longitude": "-2.48654000" + }, + { + "id": "36626", + "name": "Rincón de Soto", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23475000", + "longitude": "-1.85214000" + }, + { + "id": "36659", + "name": "Robres del Castillo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27593000", + "longitude": "-2.29245000" + }, + { + "id": "36664", + "name": "Rodezno", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52576000", + "longitude": "-2.84597000" + }, + { + "id": "36743", + "name": "Sajazarra", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58884000", + "longitude": "-2.96124000" + }, + { + "id": "36805", + "name": "San Asensio", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49677000", + "longitude": "-2.75057000" + }, + { + "id": "36891", + "name": "San Millán de la Cogolla", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32974000", + "longitude": "-2.86185000" + }, + { + "id": "36890", + "name": "San Millán de Yécora", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54705000", + "longitude": "-3.09681000" + }, + { + "id": "36916", + "name": "San Román de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23255000", + "longitude": "-2.47436000" + }, + { + "id": "36924", + "name": "San Torcuato", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48219000", + "longitude": "-2.88923000" + }, + { + "id": "36930", + "name": "San Vicente de la Sonsierra", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56321000", + "longitude": "-2.76071000" + }, + { + "id": "37014", + "name": "Santa Coloma", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36717000", + "longitude": "-2.65598000" + }, + { + "id": "37055", + "name": "Santa Eulalia Bajera", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20960000", + "longitude": "-2.19174000" + }, + { + "id": "37141", + "name": "Santo Domingo de la Calzada", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44015000", + "longitude": "-2.95365000" + }, + { + "id": "37154", + "name": "Santurdejo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37696000", + "longitude": "-2.95437000" + }, + { + "id": "37278", + "name": "Sojuela", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36988000", + "longitude": "-2.54525000" + }, + { + "id": "37306", + "name": "Sorzano", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34307000", + "longitude": "-2.52872000" + }, + { + "id": "37319", + "name": "Soto en Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28591000", + "longitude": "-2.42597000" + }, + { + "id": "37414", + "name": "Terroba", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25809000", + "longitude": "-2.44375000" + }, + { + "id": "37429", + "name": "Tirgo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54587000", + "longitude": "-2.94940000" + }, + { + "id": "37438", + "name": "Tobía", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29846000", + "longitude": "-2.81399000" + }, + { + "id": "37468", + "name": "Tormantos", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49431000", + "longitude": "-3.07446000" + }, + { + "id": "37504", + "name": "Torre en Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24133000", + "longitude": "-2.51805000" + }, + { + "id": "37524", + "name": "Torrecilla en Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25532000", + "longitude": "-2.63109000" + }, + { + "id": "37525", + "name": "Torrecilla sobre Alesanco", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40825000", + "longitude": "-2.83379000" + }, + { + "id": "37562", + "name": "Torremontalbo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50000000", + "longitude": "-2.68333000" + }, + { + "id": "37633", + "name": "Treviana", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55901000", + "longitude": "-3.05032000" + }, + { + "id": "37636", + "name": "Tricio", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40223000", + "longitude": "-2.71912000" + }, + { + "id": "37650", + "name": "Tudelilla", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30023000", + "longitude": "-2.11749000" + }, + { + "id": "37700", + "name": "Uruñuela", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44310000", + "longitude": "-2.70749000" + }, + { + "id": "37763", + "name": "Valdemadera", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98408000", + "longitude": "-2.07403000" + }, + { + "id": "37829", + "name": "Valgañón", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31782000", + "longitude": "-3.06725000" + }, + { + "id": "37942", + "name": "Ventosa", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40495000", + "longitude": "-2.62651000" + }, + { + "id": "37945", + "name": "Ventrosa", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15705000", + "longitude": "-2.85044000" + }, + { + "id": "37971", + "name": "Viguera", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30934000", + "longitude": "-2.53334000" + }, + { + "id": "38095", + "name": "Villalba de Rioja", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60967000", + "longitude": "-2.88687000" + }, + { + "id": "38115", + "name": "Villalobar de Rioja", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49123000", + "longitude": "-2.96404000" + }, + { + "id": "38149", + "name": "Villamediana de Iregua", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42658000", + "longitude": "-2.41943000" + }, + { + "id": "38176", + "name": "Villanueva de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16719000", + "longitude": "-2.65040000" + }, + { + "id": "38246", + "name": "Villar de Torre", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37133000", + "longitude": "-2.86411000" + }, + { + "id": "38270", + "name": "Villarejo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37417000", + "longitude": "-2.88712000" + }, + { + "id": "38297", + "name": "Villarroya", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13053000", + "longitude": "-2.06896000" + }, + { + "id": "38309", + "name": "Villarta-Quintana", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42998000", + "longitude": "-3.04840000" + }, + { + "id": "38340", + "name": "Villavelayo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13084000", + "longitude": "-2.98565000" + }, + { + "id": "38348", + "name": "Villaverde de Rioja", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32051000", + "longitude": "-2.81370000" + }, + { + "id": "38377", + "name": "Villoslada de Cameros", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11383000", + "longitude": "-2.67413000" + }, + { + "id": "38394", + "name": "Viniegra de Abajo", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15055000", + "longitude": "-2.88930000" + }, + { + "id": "38395", + "name": "Viniegra de Arriba", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09513000", + "longitude": "-2.83304000" + }, + { + "id": "38476", + "name": "Zarratón", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51649000", + "longitude": "-2.88094000" + }, + { + "id": "38483", + "name": "Zarzosa", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18294000", + "longitude": "-2.34297000" + }, + { + "id": "38499", + "name": "Zorraquín", + "state_id": 1171, + "state_code": "RI", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32565000", + "longitude": "-3.03925000" + }, + { + "id": "32595", + "name": "Añe", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03702000", + "longitude": "-4.29462000" + }, + { + "id": "32599", + "name": "Añover de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13658000", + "longitude": "-5.91585000" + }, + { + "id": "31899", + "name": "Abades", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91646000", + "longitude": "-4.26937000" + }, + { + "id": "31902", + "name": "Abajas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62310000", + "longitude": "-3.58086000" + }, + { + "id": "31907", + "name": "Abejar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80755000", + "longitude": "-2.78407000" + }, + { + "id": "31911", + "name": "Abezames", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62642000", + "longitude": "-5.42577000" + }, + { + "id": "31912", + "name": "Abia de las Torres", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42016000", + "longitude": "-4.42131000" + }, + { + "id": "31919", + "name": "Abusejo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70900000", + "longitude": "-6.14074000" + }, + { + "id": "31922", + "name": "Acebedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "43.03969000", + "longitude": "-5.11600000" + }, + { + "id": "31928", + "name": "Adalia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64894000", + "longitude": "-5.12107000" + }, + { + "id": "31930", + "name": "Adanero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94487000", + "longitude": "-4.60561000" + }, + { + "id": "31937", + "name": "Adrada de Haza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59454000", + "longitude": "-3.82327000" + }, + { + "id": "31938", + "name": "Adrada de Pirón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05257000", + "longitude": "-4.05107000" + }, + { + "id": "31939", + "name": "Adradas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35098000", + "longitude": "-2.47373000" + }, + { + "id": "31940", + "name": "Adrados", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36816000", + "longitude": "-4.11186000" + }, + { + "id": "31945", + "name": "Agallas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44867000", + "longitude": "-6.44176000" + }, + { + "id": "31953", + "name": "Aguasal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27495000", + "longitude": "-4.65290000" + }, + { + "id": "31957", + "name": "Aguilafuente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22667000", + "longitude": "-4.11185000" + }, + { + "id": "31959", + "name": "Aguilar de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58974000", + "longitude": "-3.32913000" + }, + { + "id": "31960", + "name": "Aguilar de Campoo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.79452000", + "longitude": "-4.25892000" + }, + { + "id": "31961", + "name": "Aguilar de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98375000", + "longitude": "-5.18117000" + }, + { + "id": "31976", + "name": "Ahigal de los Aceiteros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87231000", + "longitude": "-6.74702000" + }, + { + "id": "31975", + "name": "Ahigal de Villarino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15819000", + "longitude": "-6.38037000" + }, + { + "id": "31990", + "name": "Alaejos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.30732000", + "longitude": "-5.21567000" + }, + { + "id": "32002", + "name": "Alar del Rey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66037000", + "longitude": "-4.31271000" + }, + { + "id": "32003", + "name": "Alaraz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74886000", + "longitude": "-5.28781000" + }, + { + "id": "32010", + "name": "Alba de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81276000", + "longitude": "-4.36470000" + }, + { + "id": "32011", + "name": "Alba de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82664000", + "longitude": "-5.51237000" + }, + { + "id": "32012", + "name": "Alba de Yeltes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67180000", + "longitude": "-6.31660000" + }, + { + "id": "32045", + "name": "Albillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27680000", + "longitude": "-3.78908000" + }, + { + "id": "32055", + "name": "Albornos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83795000", + "longitude": "-4.88129000" + }, + { + "id": "32093", + "name": "Alcañices", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69940000", + "longitude": "-6.34647000" + }, + { + "id": "32092", + "name": "Alcazarén", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37061000", + "longitude": "-4.67262000" + }, + { + "id": "32100", + "name": "Alcocero de Mola", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47222000", + "longitude": "-3.35790000" + }, + { + "id": "32112", + "name": "Alconaba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72360000", + "longitude": "-2.38483000" + }, + { + "id": "32113", + "name": "Alconada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91092000", + "longitude": "-5.36305000" + }, + { + "id": "32114", + "name": "Alconada de Maderuelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45015000", + "longitude": "-3.48554000" + }, + { + "id": "32125", + "name": "Alcubilla de Avellaneda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72593000", + "longitude": "-3.30471000" + }, + { + "id": "32127", + "name": "Alcubilla de las Peñas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25129000", + "longitude": "-2.52684000" + }, + { + "id": "32126", + "name": "Alcubilla de Nogales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12787000", + "longitude": "-5.92184000" + }, + { + "id": "32142", + "name": "Aldea de San Miguel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46098000", + "longitude": "-4.61580000" + }, + { + "id": "32145", + "name": "Aldea del Obispo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70677000", + "longitude": "-6.79253000" + }, + { + "id": "32141", + "name": "Aldea Real", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18553000", + "longitude": "-4.16559000" + }, + { + "id": "32148", + "name": "Aldeacipreste", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38090000", + "longitude": "-5.89754000" + }, + { + "id": "32149", + "name": "Aldeadávila de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21769000", + "longitude": "-6.61786000" + }, + { + "id": "32150", + "name": "Aldealafuente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67194000", + "longitude": "-2.32522000" + }, + { + "id": "32151", + "name": "Aldealcorvo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.24443000", + "longitude": "-3.79136000" + }, + { + "id": "32152", + "name": "Aldealengua", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98090000", + "longitude": "-5.54922000" + }, + { + "id": "32153", + "name": "Aldealengua de Santa María", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46196000", + "longitude": "-3.46723000" + }, + { + "id": "32154", + "name": "Aldealpozo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78258000", + "longitude": "-2.20416000" + }, + { + "id": "32155", + "name": "Aldealseñor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87890000", + "longitude": "-2.31565000" + }, + { + "id": "32156", + "name": "Aldeamayor de San Martín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51256000", + "longitude": "-4.63955000" + }, + { + "id": "32159", + "name": "Aldeanueva de Figueroa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14809000", + "longitude": "-5.52404000" + }, + { + "id": "32163", + "name": "Aldeanueva de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61620000", + "longitude": "-6.10023000" + }, + { + "id": "32162", + "name": "Aldeanueva de Santa Cruz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38189000", + "longitude": "-5.42142000" + }, + { + "id": "32166", + "name": "Aldeanueva del Codonal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08236000", + "longitude": "-4.54369000" + }, + { + "id": "32168", + "name": "Aldearrodrigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10966000", + "longitude": "-5.80726000" + }, + { + "id": "32169", + "name": "Aldearrubia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00807000", + "longitude": "-5.49829000" + }, + { + "id": "32170", + "name": "Aldeaseca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04912000", + "longitude": "-4.81707000" + }, + { + "id": "32171", + "name": "Aldeaseca de Alba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81909000", + "longitude": "-5.44699000" + }, + { + "id": "32172", + "name": "Aldeaseca de la Frontera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94161000", + "longitude": "-5.20719000" + }, + { + "id": "32173", + "name": "Aldeasoña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47285000", + "longitude": "-4.05711000" + }, + { + "id": "32174", + "name": "Aldeatejada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92168000", + "longitude": "-5.69273000" + }, + { + "id": "32175", + "name": "Aldeavieja de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58307000", + "longitude": "-5.61705000" + }, + { + "id": "32178", + "name": "Aldehuela de la Bóveda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85077000", + "longitude": "-6.05260000" + }, + { + "id": "32177", + "name": "Aldehuela de Yeltes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66254000", + "longitude": "-6.24332000" + }, + { + "id": "32179", + "name": "Aldehuela del Codonal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05504000", + "longitude": "-4.53863000" + }, + { + "id": "32181", + "name": "Aldeonte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35092000", + "longitude": "-3.67847000" + }, + { + "id": "32184", + "name": "Alentisque", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42059000", + "longitude": "-2.33189000" + }, + { + "id": "32208", + "name": "Algadefe", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21931000", + "longitude": "-5.58419000" + }, + { + "id": "32224", + "name": "Algodre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56631000", + "longitude": "-5.60406000" + }, + { + "id": "32249", + "name": "Aliud", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65412000", + "longitude": "-2.25314000" + }, + { + "id": "32264", + "name": "Almajano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85095000", + "longitude": "-2.33830000" + }, + { + "id": "32265", + "name": "Almaluez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28932000", + "longitude": "-2.26871000" + }, + { + "id": "32267", + "name": "Almanza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65825000", + "longitude": "-5.03620000" + }, + { + "id": "32269", + "name": "Almaraz de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47505000", + "longitude": "-5.91654000" + }, + { + "id": "32271", + "name": "Almarza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94678000", + "longitude": "-2.46900000" + }, + { + "id": "32275", + "name": "Almazán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48648000", + "longitude": "-2.53088000" + }, + { + "id": "32274", + "name": "Almazul", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57400000", + "longitude": "-2.14620000" + }, + { + "id": "32281", + "name": "Almenar de Soria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68230000", + "longitude": "-2.20082000" + }, + { + "id": "32283", + "name": "Almenara de Adaja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21406000", + "longitude": "-4.67824000" + }, + { + "id": "32284", + "name": "Almenara de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06390000", + "longitude": "-5.82350000" + }, + { + "id": "32285", + "name": "Almendra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22922000", + "longitude": "-6.34068000" + }, + { + "id": "32325", + "name": "Alpanseque", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26505000", + "longitude": "-2.67064000" + }, + { + "id": "32337", + "name": "Altable", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60276000", + "longitude": "-3.07719000" + }, + { + "id": "32348", + "name": "Amavida", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57371000", + "longitude": "-5.06541000" + }, + { + "id": "32349", + "name": "Amayuelas de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21108000", + "longitude": "-4.48880000" + }, + { + "id": "32353", + "name": "Ameyugo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65617000", + "longitude": "-3.06170000" + }, + { + "id": "32359", + "name": "Ampudia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91608000", + "longitude": "-4.78033000" + }, + { + "id": "32362", + "name": "Amusco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17306000", + "longitude": "-4.47018000" + }, + { + "id": "32363", + "name": "Amusquillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74853000", + "longitude": "-4.30117000" + }, + { + "id": "32366", + "name": "Anaya", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99184000", + "longitude": "-4.30950000" + }, + { + "id": "32367", + "name": "Anaya de Alba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72828000", + "longitude": "-5.49266000" + }, + { + "id": "32383", + "name": "Anguix", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75331000", + "longitude": "-3.93125000" + }, + { + "id": "32394", + "name": "Antigüedad", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94681000", + "longitude": "-4.12058000" + }, + { + "id": "32402", + "name": "Arahuetes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13762000", + "longitude": "-3.85664000" + }, + { + "id": "32406", + "name": "Arancón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80017000", + "longitude": "-2.28141000" + }, + { + "id": "32407", + "name": "Aranda de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67041000", + "longitude": "-3.68920000" + }, + { + "id": "32409", + "name": "Arandilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73778000", + "longitude": "-3.42914000" + }, + { + "id": "32415", + "name": "Arapiles", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89366000", + "longitude": "-5.64494000" + }, + { + "id": "32417", + "name": "Arauzo de Miel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85878000", + "longitude": "-3.38773000" + }, + { + "id": "32418", + "name": "Arauzo de Salce", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81919000", + "longitude": "-3.41191000" + }, + { + "id": "32419", + "name": "Arauzo de Torre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79818000", + "longitude": "-3.42314000" + }, + { + "id": "32531", + "name": "Arévalo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06255000", + "longitude": "-4.72042000" + }, + { + "id": "32532", + "name": "Arévalo de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94723000", + "longitude": "-2.40033000" + }, + { + "id": "32428", + "name": "Arcediano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09379000", + "longitude": "-5.56055000" + }, + { + "id": "32429", + "name": "Arcenillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45641000", + "longitude": "-5.68512000" + }, + { + "id": "32433", + "name": "Arconada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32774000", + "longitude": "-4.49617000" + }, + { + "id": "32434", + "name": "Arcones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11817000", + "longitude": "-3.72384000" + }, + { + "id": "32435", + "name": "Arcos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26664000", + "longitude": "-3.75458000" + }, + { + "id": "32436", + "name": "Arcos de Jalón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21592000", + "longitude": "-2.27470000" + }, + { + "id": "32438", + "name": "Arcos de la Polvorosa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94389000", + "longitude": "-5.69731000" + }, + { + "id": "32442", + "name": "Ardón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43629000", + "longitude": "-5.56048000" + }, + { + "id": "32447", + "name": "Arenas de San Pedro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.21041000", + "longitude": "-5.08694000" + }, + { + "id": "32449", + "name": "Arenillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34706000", + "longitude": "-2.84618000" + }, + { + "id": "32459", + "name": "Arevalillo de Cega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16174000", + "longitude": "-3.88911000" + }, + { + "id": "32466", + "name": "Argañín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43948000", + "longitude": "-6.20827000" + }, + { + "id": "32463", + "name": "Arganza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64077000", + "longitude": "-6.68627000" + }, + { + "id": "32476", + "name": "Argujillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31156000", + "longitude": "-5.58763000" + }, + { + "id": "32479", + "name": "Arija", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.99350000", + "longitude": "-3.94497000" + }, + { + "id": "32484", + "name": "Arlanzón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32267000", + "longitude": "-3.45784000" + }, + { + "id": "32487", + "name": "Armenteros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59320000", + "longitude": "-5.44806000" + }, + { + "id": "32490", + "name": "Armuña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07715000", + "longitude": "-4.31949000" + }, + { + "id": "32498", + "name": "Arquillinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70990000", + "longitude": "-5.65708000" + }, + { + "id": "32500", + "name": "Arrabalde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10760000", + "longitude": "-5.89441000" + }, + { + "id": "32503", + "name": "Arraya de Oca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41488000", + "longitude": "-3.39781000" + }, + { + "id": "32509", + "name": "Arroyo de la Encomienda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60956000", + "longitude": "-4.79692000" + }, + { + "id": "32536", + "name": "Aspariegos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67458000", + "longitude": "-5.59955000" + }, + { + "id": "32540", + "name": "Astorga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45879000", + "longitude": "-6.05601000" + }, + { + "id": "32541", + "name": "Astudillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19330000", + "longitude": "-4.29394000" + }, + { + "id": "32542", + "name": "Asturianos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05201000", + "longitude": "-6.48940000" + }, + { + "id": "32548", + "name": "Atapuerca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37757000", + "longitude": "-3.50790000" + }, + { + "id": "32549", + "name": "Ataquines", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18247000", + "longitude": "-4.80319000" + }, + { + "id": "32559", + "name": "Ausejo de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89462000", + "longitude": "-2.37394000" + }, + { + "id": "32560", + "name": "Autilla del Pino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99207000", + "longitude": "-4.63393000" + }, + { + "id": "32561", + "name": "Autillo de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08725000", + "longitude": "-4.83376000" + }, + { + "id": "32564", + "name": "Aveinte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78227000", + "longitude": "-4.83649000" + }, + { + "id": "32565", + "name": "Avellaneda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38909000", + "longitude": "-5.38811000" + }, + { + "id": "32567", + "name": "Avellanosa de Muñó", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98349000", + "longitude": "-3.82553000" + }, + { + "id": "32574", + "name": "Ayllón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41899000", + "longitude": "-3.37537000" + }, + { + "id": "32577", + "name": "Ayoó de Vidriales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13042000", + "longitude": "-6.06550000" + }, + { + "id": "32578", + "name": "Ayuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62618000", + "longitude": "-4.65979000" + }, + { + "id": "38573", + "name": "Ágreda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85588000", + "longitude": "-1.92244000" + }, + { + "id": "38576", + "name": "Ávila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.65724000", + "longitude": "-4.69951000" + }, + { + "id": "32702", + "name": "Bañobárez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84825000", + "longitude": "-6.61311000" + }, + { + "id": "32708", + "name": "Baños de Valdearados", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.77010000", + "longitude": "-3.55589000" + }, + { + "id": "32711", + "name": "Bañuelos de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50258000", + "longitude": "-3.27957000" + }, + { + "id": "32600", + "name": "Babilafuente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97704000", + "longitude": "-5.42554000" + }, + { + "id": "32611", + "name": "Bahabón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48141000", + "longitude": "-4.27941000" + }, + { + "id": "32612", + "name": "Bahabón de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86162000", + "longitude": "-3.72980000" + }, + { + "id": "32621", + "name": "Balboa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70608000", + "longitude": "-6.92222000" + }, + { + "id": "32629", + "name": "Baltanás", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93775000", + "longitude": "-4.24656000" + }, + { + "id": "32635", + "name": "Baquerín de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01600000", + "longitude": "-4.78185000" + }, + { + "id": "32641", + "name": "Barbadillo de Herreros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14974000", + "longitude": "-3.17702000" + }, + { + "id": "32642", + "name": "Barbadillo del Mercado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03858000", + "longitude": "-3.35669000" + }, + { + "id": "32643", + "name": "Barbadillo del Pez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11879000", + "longitude": "-3.22803000" + }, + { + "id": "32644", + "name": "Barbalos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67678000", + "longitude": "-5.94258000" + }, + { + "id": "32648", + "name": "Barbolla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.32567000", + "longitude": "-3.67361000" + }, + { + "id": "32651", + "name": "Barca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45490000", + "longitude": "-2.62217000" + }, + { + "id": "32654", + "name": "Barceo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06108000", + "longitude": "-6.45175000" + }, + { + "id": "32656", + "name": "Barcial de la Loma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95139000", + "longitude": "-5.28353000" + }, + { + "id": "32657", + "name": "Barcial del Barco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93353000", + "longitude": "-5.66268000" + }, + { + "id": "32659", + "name": "Barcones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29146000", + "longitude": "-2.81630000" + }, + { + "id": "32665", + "name": "Barjas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61182000", + "longitude": "-6.97979000" + }, + { + "id": "32669", + "name": "Barraco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47647000", + "longitude": "-4.64346000" + }, + { + "id": "32676", + "name": "Barrio de Muñó", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17584000", + "longitude": "-4.00715000" + }, + { + "id": "32679", + "name": "Barrios de Colina", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39595000", + "longitude": "-3.46001000" + }, + { + "id": "32680", + "name": "Barromán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06536000", + "longitude": "-4.93066000" + }, + { + "id": "32681", + "name": "Barruecopardo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07215000", + "longitude": "-6.66423000" + }, + { + "id": "32682", + "name": "Barruelo de Santullán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.90641000", + "longitude": "-4.28593000" + }, + { + "id": "32687", + "name": "Basardilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02737000", + "longitude": "-4.02598000" + }, + { + "id": "32689", + "name": "Basconcillos del Tozo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70236000", + "longitude": "-3.98937000" + }, + { + "id": "32690", + "name": "Bascuñana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42548000", + "longitude": "-3.08231000" + }, + { + "id": "32697", + "name": "Bayubas de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52747000", + "longitude": "-2.89586000" + }, + { + "id": "32698", + "name": "Bayubas de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55750000", + "longitude": "-2.88731000" + }, + { + "id": "33052", + "name": "Bárcena de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48428000", + "longitude": "-4.49875000" + }, + { + "id": "33055", + "name": "Báscones de Ojeda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67064000", + "longitude": "-4.52693000" + }, + { + "id": "33058", + "name": "Béjar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38641000", + "longitude": "-5.76341000" + }, + { + "id": "33063", + "name": "Bóveda del Río Almar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85719000", + "longitude": "-5.21030000" + }, + { + "id": "32721", + "name": "Becedas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40369000", + "longitude": "-5.63577000" + }, + { + "id": "32722", + "name": "Becedillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.53821000", + "longitude": "-5.32561000" + }, + { + "id": "32724", + "name": "Becerril de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10841000", + "longitude": "-4.64152000" + }, + { + "id": "32726", + "name": "Becilla de Valderaduey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09905000", + "longitude": "-5.21805000" + }, + { + "id": "32736", + "name": "Belbimbre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16873000", + "longitude": "-4.01280000" + }, + { + "id": "32738", + "name": "Beleña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75067000", + "longitude": "-5.62713000" + }, + { + "id": "32749", + "name": "Belmonte de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94255000", + "longitude": "-4.98659000" + }, + { + "id": "32752", + "name": "Belorado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42048000", + "longitude": "-3.19133000" + }, + { + "id": "32754", + "name": "Belver de los Montes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72284000", + "longitude": "-5.45182000" + }, + { + "id": "32756", + "name": "Bembibre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61771000", + "longitude": "-6.41545000" + }, + { + "id": "32758", + "name": "Benafarces", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62133000", + "longitude": "-5.29285000" + }, + { + "id": "32781", + "name": "Benavente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00249000", + "longitude": "-5.67826000" + }, + { + "id": "32782", + "name": "Benavides", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50442000", + "longitude": "-5.89442000" + }, + { + "id": "32784", + "name": "Benegiles", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62700000", + "longitude": "-5.63479000" + }, + { + "id": "32828", + "name": "Benuza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39941000", + "longitude": "-6.70969000" + }, + { + "id": "32833", + "name": "Beratón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71749000", + "longitude": "-1.81092000" + }, + { + "id": "32835", + "name": "Berberana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.91784000", + "longitude": "-3.06063000" + }, + { + "id": "32838", + "name": "Bercero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56397000", + "longitude": "-5.05580000" + }, + { + "id": "32839", + "name": "Berceruelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58033000", + "longitude": "-5.03267000" + }, + { + "id": "32840", + "name": "Bercial", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90711000", + "longitude": "-4.43638000" + }, + { + "id": "32841", + "name": "Bercial de Zapardiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04675000", + "longitude": "-4.96910000" + }, + { + "id": "32842", + "name": "Bercianos del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38017000", + "longitude": "-5.70834000" + }, + { + "id": "32843", + "name": "Bercianos del Real Camino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38732000", + "longitude": "-5.14462000" + }, + { + "id": "32844", + "name": "Bercimuel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39925000", + "longitude": "-3.57051000" + }, + { + "id": "32855", + "name": "Berlanga de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46560000", + "longitude": "-2.86147000" + }, + { + "id": "32856", + "name": "Berlanga del Bierzo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73104000", + "longitude": "-6.60565000" + }, + { + "id": "32857", + "name": "Berlangas de Roa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68913000", + "longitude": "-3.87284000" + }, + { + "id": "32858", + "name": "Bermellar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99918000", + "longitude": "-6.67014000" + }, + { + "id": "32860", + "name": "Bermillo de Sayago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36648000", + "longitude": "-6.11223000" + }, + { + "id": "32861", + "name": "Bernardos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12787000", + "longitude": "-4.35119000" + }, + { + "id": "32869", + "name": "Berrocal de Huebra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71864000", + "longitude": "-6.00054000" + }, + { + "id": "32870", + "name": "Berrocal de Salvatierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63331000", + "longitude": "-5.69005000" + }, + { + "id": "32872", + "name": "Berrocalejo de Aragona", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69436000", + "longitude": "-4.59474000" + }, + { + "id": "32873", + "name": "Berrueces", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94606000", + "longitude": "-5.09693000" + }, + { + "id": "32874", + "name": "Berzosa de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62678000", + "longitude": "-3.26652000" + }, + { + "id": "32876", + "name": "Berzosilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.78053000", + "longitude": "-4.03753000" + }, + { + "id": "32904", + "name": "Blacos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68090000", + "longitude": "-2.85826000" + }, + { + "id": "32910", + "name": "Blascomillán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80146000", + "longitude": "-5.08703000" + }, + { + "id": "32911", + "name": "Blascosancho", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87744000", + "longitude": "-4.63743000" + }, + { + "id": "32913", + "name": "Bliecos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52790000", + "longitude": "-2.27135000" + }, + { + "id": "32914", + "name": "Boada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81569000", + "longitude": "-6.30611000" + }, + { + "id": "32915", + "name": "Boada de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98957000", + "longitude": "-4.87730000" + }, + { + "id": "32916", + "name": "Boadilla del Camino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25934000", + "longitude": "-4.34525000" + }, + { + "id": "32967", + "name": "Boñar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86680000", + "longitude": "-5.32386000" + }, + { + "id": "32920", + "name": "Bobadilla del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20432000", + "longitude": "-5.02294000" + }, + { + "id": "32922", + "name": "Boca de Huérgano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.97287000", + "longitude": "-4.92419000" + }, + { + "id": "32924", + "name": "Boceguillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33641000", + "longitude": "-3.63828000" + }, + { + "id": "32925", + "name": "Bocigas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23070000", + "longitude": "-4.68128000" + }, + { + "id": "32926", + "name": "Bocos de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62339000", + "longitude": "-4.07048000" + }, + { + "id": "32928", + "name": "Boecillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54090000", + "longitude": "-4.69940000" + }, + { + "id": "32929", + "name": "Bogajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90710000", + "longitude": "-6.53065000" + }, + { + "id": "32932", + "name": "Bohoyo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.31584000", + "longitude": "-5.44294000" + }, + { + "id": "32936", + "name": "Bolaños de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00680000", + "longitude": "-5.28428000" + }, + { + "id": "32948", + "name": "Bonilla de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.53063000", + "longitude": "-5.26452000" + }, + { + "id": "32955", + "name": "Borjabad", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55245000", + "longitude": "-2.36625000" + }, + { + "id": "32958", + "name": "Borobia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66481000", + "longitude": "-1.89615000" + }, + { + "id": "32961", + "name": "Borrenes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49019000", + "longitude": "-6.72338000" + }, + { + "id": "32973", + "name": "Brañosera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.93620000", + "longitude": "-4.30833000" + }, + { + "id": "32968", + "name": "Brabos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77846000", + "longitude": "-4.93934000" + }, + { + "id": "32970", + "name": "Brazacorta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71737000", + "longitude": "-3.36711000" + }, + { + "id": "32972", + "name": "Brazuelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49702000", + "longitude": "-6.15734000" + }, + { + "id": "32979", + "name": "Bretó", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87917000", + "longitude": "-5.73902000" + }, + { + "id": "32978", + "name": "Bretocino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88430000", + "longitude": "-5.75473000" + }, + { + "id": "32982", + "name": "Brieva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03483000", + "longitude": "-4.05364000" + }, + { + "id": "32985", + "name": "Brime de Sog", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06162000", + "longitude": "-6.04791000" + }, + { + "id": "32986", + "name": "Brime de Urz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03794000", + "longitude": "-5.87326000" + }, + { + "id": "32987", + "name": "Brincones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11339000", + "longitude": "-6.34865000" + }, + { + "id": "32989", + "name": "Briviesca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54993000", + "longitude": "-3.32315000" + }, + { + "id": "32995", + "name": "Buberos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64692000", + "longitude": "-2.19406000" + }, + { + "id": "33001", + "name": "Buenamadre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85705000", + "longitude": "-6.24987000" + }, + { + "id": "33003", + "name": "Buenavista", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76763000", + "longitude": "-5.61139000" + }, + { + "id": "33004", + "name": "Buenavista de Valdavia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63788000", + "longitude": "-4.61446000" + }, + { + "id": "33011", + "name": "Bugedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64912000", + "longitude": "-3.01786000" + }, + { + "id": "33012", + "name": "Buitrago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84735000", + "longitude": "-2.40858000" + }, + { + "id": "33019", + "name": "Buniel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31197000", + "longitude": "-3.82230000" + }, + { + "id": "33034", + "name": "Burón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "43.02486000", + "longitude": "-5.05119000" + }, + { + "id": "33024", + "name": "Burganes de Valverde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92130000", + "longitude": "-5.78244000" + }, + { + "id": "33025", + "name": "Burgohondo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41416000", + "longitude": "-4.78509000" + }, + { + "id": "33026", + "name": "Burgos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34106000", + "longitude": "-3.70184000" + }, + { + "id": "33039", + "name": "Bustillo de Chaves", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13114000", + "longitude": "-5.09169000" + }, + { + "id": "33040", + "name": "Bustillo de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45605000", + "longitude": "-4.74115000" + }, + { + "id": "33041", + "name": "Bustillo del Oro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67460000", + "longitude": "-5.46158000" + }, + { + "id": "33042", + "name": "Bustillo del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44126000", + "longitude": "-5.79280000" + }, + { + "id": "33043", + "name": "Bustillo del Páramo de Carrión", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35509000", + "longitude": "-4.73980000" + }, + { + "id": "33044", + "name": "Busto de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65910000", + "longitude": "-3.26512000" + }, + { + "id": "33531", + "name": "Cañamaque", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44453000", + "longitude": "-2.23792000" + }, + { + "id": "33542", + "name": "Cañizal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16654000", + "longitude": "-5.36828000" + }, + { + "id": "33546", + "name": "Cañizo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76955000", + "longitude": "-5.50199000" + }, + { + "id": "33071", + "name": "Cabañas de Polendos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06667000", + "longitude": "-4.11010000" + }, + { + "id": "33072", + "name": "Cabañas de Sayago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33333000", + "longitude": "-5.78333000" + }, + { + "id": "33076", + "name": "Cabañes de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83023000", + "longitude": "-3.78824000" + }, + { + "id": "33065", + "name": "Caballar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12159000", + "longitude": "-3.96420000" + }, + { + "id": "33078", + "name": "Cabeza del Caballo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12982000", + "longitude": "-6.55742000" + }, + { + "id": "33081", + "name": "Cabezabellosa de la Calzada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04395000", + "longitude": "-5.48866000" + }, + { + "id": "33085", + "name": "Cabezas de Alambre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94218000", + "longitude": "-4.84184000" + }, + { + "id": "33086", + "name": "Cabezas del Pozo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00139000", + "longitude": "-4.95453000" + }, + { + "id": "33087", + "name": "Cabezas del Villar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71557000", + "longitude": "-5.20956000" + }, + { + "id": "33090", + "name": "Cabezón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73369000", + "longitude": "-4.64510000" + }, + { + "id": "33095", + "name": "Cabezón de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93434000", + "longitude": "-3.24153000" + }, + { + "id": "33093", + "name": "Cabezón de Valderaduey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16793000", + "longitude": "-5.15892000" + }, + { + "id": "33088", + "name": "Cabezuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23590000", + "longitude": "-3.93173000" + }, + { + "id": "33096", + "name": "Cabizuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90090000", + "longitude": "-4.80212000" + }, + { + "id": "33102", + "name": "Cabrejas del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68096000", + "longitude": "-2.26964000" + }, + { + "id": "33103", + "name": "Cabrejas del Pinar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79596000", + "longitude": "-2.84945000" + }, + { + "id": "33105", + "name": "Cabrerizos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97808000", + "longitude": "-5.60907000" + }, + { + "id": "33107", + "name": "Cabreros del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84906000", + "longitude": "-5.27016000" + }, + { + "id": "33108", + "name": "Cabreros del Río", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40205000", + "longitude": "-5.54154000" + }, + { + "id": "33109", + "name": "Cabrillanes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.95343000", + "longitude": "-6.14849000" + }, + { + "id": "33110", + "name": "Cabrillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.73977000", + "longitude": "-6.17873000" + }, + { + "id": "33112", + "name": "Cacabelos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60021000", + "longitude": "-6.72373000" + }, + { + "id": "33127", + "name": "Calahorra de Boedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57409000", + "longitude": "-4.38485000" + }, + { + "id": "33133", + "name": "Calatañazor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69879000", + "longitude": "-2.81837000" + }, + { + "id": "33142", + "name": "Caleruega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82548000", + "longitude": "-3.48593000" + }, + { + "id": "33152", + "name": "Caltojar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40226000", + "longitude": "-2.76436000" + }, + { + "id": "33153", + "name": "Calvarrasa de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94638000", + "longitude": "-5.55258000" + }, + { + "id": "33154", + "name": "Calvarrasa de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90672000", + "longitude": "-5.59199000" + }, + { + "id": "33157", + "name": "Calzada de Don Diego", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90500000", + "longitude": "-5.90279000" + }, + { + "id": "33159", + "name": "Calzada de los Molinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32724000", + "longitude": "-4.65293000" + }, + { + "id": "33158", + "name": "Calzada de Valdunciel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08663000", + "longitude": "-5.70219000" + }, + { + "id": "33160", + "name": "Calzada del Coto", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38613000", + "longitude": "-5.07809000" + }, + { + "id": "33162", + "name": "Calzadilla de Tera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97899000", + "longitude": "-6.08243000" + }, + { + "id": "33171", + "name": "Camarzana de Tera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99471000", + "longitude": "-6.02657000" + }, + { + "id": "33183", + "name": "Campaspero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49208000", + "longitude": "-4.19608000" + }, + { + "id": "33184", + "name": "Campazas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14219000", + "longitude": "-5.49349000" + }, + { + "id": "33188", + "name": "Campillo de Aranda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61015000", + "longitude": "-3.73017000" + }, + { + "id": "33190", + "name": "Campillo de Azaba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50951000", + "longitude": "-6.68705000" + }, + { + "id": "33203", + "name": "Campo de San Pedro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42992000", + "longitude": "-3.54599000" + }, + { + "id": "33204", + "name": "Campo de Villavidel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43906000", + "longitude": "-5.52808000" + }, + { + "id": "33205", + "name": "Campolara", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11953000", + "longitude": "-3.42740000" + }, + { + "id": "33206", + "name": "Camponaraya", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57799000", + "longitude": "-6.66709000" + }, + { + "id": "33207", + "name": "Camporredondo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47333000", + "longitude": "-4.50503000" + }, + { + "id": "33220", + "name": "Canalejas de Peñafiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52513000", + "longitude": "-4.11546000" + }, + { + "id": "33222", + "name": "Canales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00331000", + "longitude": "-4.90163000" + }, + { + "id": "33230", + "name": "Candín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81695000", + "longitude": "-6.72848000" + }, + { + "id": "33227", + "name": "Candelario", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36806000", + "longitude": "-5.74499000" + }, + { + "id": "33228", + "name": "Candeleda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15521000", + "longitude": "-5.24045000" + }, + { + "id": "33229", + "name": "Candilichera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70434000", + "longitude": "-2.30123000" + }, + { + "id": "33238", + "name": "Canicosa de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93673000", + "longitude": "-3.04089000" + }, + { + "id": "33240", + "name": "Canillas de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92266000", + "longitude": "-5.92905000" + }, + { + "id": "33243", + "name": "Canillas de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75464000", + "longitude": "-4.12502000" + }, + { + "id": "33248", + "name": "Cantabrana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73422000", + "longitude": "-3.46704000" + }, + { + "id": "33249", + "name": "Cantagallo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.37239000", + "longitude": "-5.81890000" + }, + { + "id": "33250", + "name": "Cantalapiedra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12630000", + "longitude": "-5.18351000" + }, + { + "id": "33251", + "name": "Cantalejo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25760000", + "longitude": "-3.92791000" + }, + { + "id": "33254", + "name": "Cantalpino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05341000", + "longitude": "-5.33045000" + }, + { + "id": "33255", + "name": "Cantaracillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90376000", + "longitude": "-5.16291000" + }, + { + "id": "33258", + "name": "Cantimpalos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07406000", + "longitude": "-4.15988000" + }, + { + "id": "33259", + "name": "Cantiveros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95215000", + "longitude": "-4.95455000" + }, + { + "id": "33270", + "name": "Capillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01362000", + "longitude": "-4.89051000" + }, + { + "id": "33273", + "name": "Carabantes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55211000", + "longitude": "-1.99810000" + }, + { + "id": "33275", + "name": "Caracena", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38321000", + "longitude": "-3.09146000" + }, + { + "id": "33278", + "name": "Carazo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96832000", + "longitude": "-3.35310000" + }, + { + "id": "33279", + "name": "Carbajales de Alba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65347000", + "longitude": "-5.99706000" + }, + { + "id": "33281", + "name": "Carbajosa de la Sagrada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93305000", + "longitude": "-5.65026000" + }, + { + "id": "33284", + "name": "Carbellino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22975000", + "longitude": "-6.14901000" + }, + { + "id": "33287", + "name": "Carbonero el Mayor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12257000", + "longitude": "-4.26478000" + }, + { + "id": "33293", + "name": "Carcedo de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57818000", + "longitude": "-3.49831000" + }, + { + "id": "33294", + "name": "Carcedo de Burgos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28696000", + "longitude": "-3.62274000" + }, + { + "id": "33299", + "name": "Cardeñadijo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30217000", + "longitude": "-3.66779000" + }, + { + "id": "33300", + "name": "Cardeñajimeno", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33038000", + "longitude": "-3.62103000" + }, + { + "id": "33301", + "name": "Cardeñosa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74240000", + "longitude": "-4.74579000" + }, + { + "id": "33302", + "name": "Cardeñosa de Volpejera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23214000", + "longitude": "-4.70197000" + }, + { + "id": "33313", + "name": "Carpio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21329000", + "longitude": "-5.10907000" + }, + { + "id": "33314", + "name": "Carpio de Azaba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59602000", + "longitude": "-6.64680000" + }, + { + "id": "33315", + "name": "Carracedelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55602000", + "longitude": "-6.73317000" + }, + { + "id": "33318", + "name": "Carrascal de Barregas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97868000", + "longitude": "-5.76227000" + }, + { + "id": "33319", + "name": "Carrascal del Obispo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76376000", + "longitude": "-5.99913000" + }, + { + "id": "33322", + "name": "Carrascosa de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42338000", + "longitude": "-3.08955000" + }, + { + "id": "33324", + "name": "Carrascosa de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89535000", + "longitude": "-2.28003000" + }, + { + "id": "33326", + "name": "Carrias", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48141000", + "longitude": "-3.28319000" + }, + { + "id": "33332", + "name": "Carrión de los Condes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34130000", + "longitude": "-4.60071000" + }, + { + "id": "33329", + "name": "Carrizo de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58395000", + "longitude": "-5.82881000" + }, + { + "id": "33334", + "name": "Carrocera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.79605000", + "longitude": "-5.74374000" + }, + { + "id": "33341", + "name": "Carucedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49029000", + "longitude": "-6.76565000" + }, + { + "id": "33344", + "name": "Casafranca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59267000", + "longitude": "-5.76039000" + }, + { + "id": "33349", + "name": "Casarejos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79651000", + "longitude": "-3.03251000" + }, + { + "id": "33377", + "name": "Casaseca de Campeán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37429000", + "longitude": "-5.74648000" + }, + { + "id": "33378", + "name": "Casaseca de las Chanas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43870000", + "longitude": "-5.67547000" + }, + { + "id": "33380", + "name": "Casasola de Arión", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57825000", + "longitude": "-5.24076000" + }, + { + "id": "33382", + "name": "Casavieja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.28325000", + "longitude": "-4.76670000" + }, + { + "id": "33384", + "name": "Cascajares de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67884000", + "longitude": "-3.23768000" + }, + { + "id": "33385", + "name": "Cascajares de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06177000", + "longitude": "-3.39936000" + }, + { + "id": "33388", + "name": "Casillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32610000", + "longitude": "-4.57182000" + }, + { + "id": "33390", + "name": "Casillas de Flores", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38108000", + "longitude": "-6.75602000" + }, + { + "id": "33392", + "name": "Casla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16602000", + "longitude": "-3.65643000" + }, + { + "id": "33414", + "name": "Castellanos de Castro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32806000", + "longitude": "-4.03417000" + }, + { + "id": "33415", + "name": "Castellanos de Moriscos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01917000", + "longitude": "-5.59065000" + }, + { + "id": "33416", + "name": "Castellanos de Villiquera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05139000", + "longitude": "-5.69477000" + }, + { + "id": "33417", + "name": "Castellanos de Zapardiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08450000", + "longitude": "-4.90984000" + }, + { + "id": "33444", + "name": "Castil de Peones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48347000", + "longitude": "-3.38461000" + }, + { + "id": "33445", + "name": "Castil de Vela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98461000", + "longitude": "-4.95920000" + }, + { + "id": "33448", + "name": "Castildelgado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43756000", + "longitude": "-3.08389000" + }, + { + "id": "33449", + "name": "Castilfalé", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21991000", + "longitude": "-5.42122000" + }, + { + "id": "33451", + "name": "Castilfrío de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91929000", + "longitude": "-2.30497000" + }, + { + "id": "33458", + "name": "Castillejo de Martín Viejo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69728000", + "longitude": "-6.63763000" + }, + { + "id": "33459", + "name": "Castillejo de Mesleón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28100000", + "longitude": "-3.60137000" + }, + { + "id": "33460", + "name": "Castillejo de Robledo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55867000", + "longitude": "-3.49689000" + }, + { + "id": "33470", + "name": "Castilruiz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87678000", + "longitude": "-2.05930000" + }, + { + "id": "33471", + "name": "Castraz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70517000", + "longitude": "-6.33383000" + }, + { + "id": "33472", + "name": "Castrejón de la Peña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.80795000", + "longitude": "-4.59901000" + }, + { + "id": "33475", + "name": "Castrillo de Cabrera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34036000", + "longitude": "-6.54451000" + }, + { + "id": "33476", + "name": "Castrillo de Don Juan", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79086000", + "longitude": "-4.07031000" + }, + { + "id": "33477", + "name": "Castrillo de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57494000", + "longitude": "-4.01547000" + }, + { + "id": "33480", + "name": "Castrillo de la Guareña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23043000", + "longitude": "-5.32550000" + }, + { + "id": "33481", + "name": "Castrillo de la Reina", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98714000", + "longitude": "-3.23560000" + }, + { + "id": "33482", + "name": "Castrillo de la Valduerna", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32393000", + "longitude": "-6.13455000" + }, + { + "id": "33483", + "name": "Castrillo de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65166000", + "longitude": "-3.78089000" + }, + { + "id": "33478", + "name": "Castrillo de Onielo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85820000", + "longitude": "-4.30125000" + }, + { + "id": "33479", + "name": "Castrillo de Villavega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45463000", + "longitude": "-4.48069000" + }, + { + "id": "33484", + "name": "Castrillo del Val", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31401000", + "longitude": "-3.58501000" + }, + { + "id": "33485", + "name": "Castrillo-Tejeriego", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70340000", + "longitude": "-4.37142000" + }, + { + "id": "33489", + "name": "Castro de Fuentidueña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42044000", + "longitude": "-3.85528000" + }, + { + "id": "33493", + "name": "Castrobol", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13717000", + "longitude": "-5.31423000" + }, + { + "id": "33494", + "name": "Castrocalbón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19706000", + "longitude": "-5.98226000" + }, + { + "id": "33495", + "name": "Castrocontrigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18363000", + "longitude": "-6.19022000" + }, + { + "id": "33496", + "name": "Castrodeza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64921000", + "longitude": "-4.95888000" + }, + { + "id": "33497", + "name": "Castrogonzalo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99099000", + "longitude": "-5.60301000" + }, + { + "id": "33498", + "name": "Castrojimeno", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39659000", + "longitude": "-3.84726000" + }, + { + "id": "33499", + "name": "Castromembibre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67246000", + "longitude": "-5.30473000" + }, + { + "id": "33500", + "name": "Castromocho", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03104000", + "longitude": "-4.82404000" + }, + { + "id": "33501", + "name": "Castromonte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.77355000", + "longitude": "-5.03909000" + }, + { + "id": "33504", + "name": "Castronuño", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38918000", + "longitude": "-5.26408000" + }, + { + "id": "33502", + "name": "Castronuevo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72046000", + "longitude": "-5.54315000" + }, + { + "id": "33503", + "name": "Castronuevo de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68180000", + "longitude": "-4.58866000" + }, + { + "id": "33505", + "name": "Castropodame", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57943000", + "longitude": "-6.46837000" + }, + { + "id": "33506", + "name": "Castroponce", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12646000", + "longitude": "-5.18245000" + }, + { + "id": "33507", + "name": "Castroserna de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20835000", + "longitude": "-3.73387000" + }, + { + "id": "33508", + "name": "Castroserracín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39329000", + "longitude": "-3.80196000" + }, + { + "id": "33510", + "name": "Castroverde de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97049000", + "longitude": "-5.31434000" + }, + { + "id": "33511", + "name": "Castroverde de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75609000", + "longitude": "-4.22151000" + }, + { + "id": "33520", + "name": "Cayuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27223000", + "longitude": "-3.81895000" + }, + { + "id": "33525", + "name": "Cazurra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41583000", + "longitude": "-5.70454000" + }, + { + "id": "33897", + "name": "Cármenes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.95863000", + "longitude": "-5.57346000" + }, + { + "id": "33548", + "name": "Cebanico", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.72526000", + "longitude": "-5.02568000" + }, + { + "id": "33550", + "name": "Cebrecos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98408000", + "longitude": "-3.59661000" + }, + { + "id": "33551", + "name": "Cebreros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45835000", + "longitude": "-4.46433000" + }, + { + "id": "33552", + "name": "Cebrones del Río", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25726000", + "longitude": "-5.82622000" + }, + { + "id": "33556", + "name": "Cedillo de la Torre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42482000", + "longitude": "-3.60577000" + }, + { + "id": "33561", + "name": "Ceinos de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03284000", + "longitude": "-5.15007000" + }, + { + "id": "33562", + "name": "Celada del Camino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26359000", + "longitude": "-3.93362000" + }, + { + "id": "33575", + "name": "Centenera de Andaluz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50679000", + "longitude": "-2.71813000" + }, + { + "id": "33576", + "name": "Cepeda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46600000", + "longitude": "-6.04100000" + }, + { + "id": "33577", + "name": "Cepeda la Mora", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45780000", + "longitude": "-5.04833000" + }, + { + "id": "33578", + "name": "Cerbón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92934000", + "longitude": "-2.16895000" + }, + { + "id": "33583", + "name": "Cereceda de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56627000", + "longitude": "-6.09140000" + }, + { + "id": "33584", + "name": "Cerecinos de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90017000", + "longitude": "-5.48605000" + }, + { + "id": "33585", + "name": "Cerecinos del Carrizal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68384000", + "longitude": "-5.65303000" + }, + { + "id": "33586", + "name": "Cerezal de Peñahorcada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13071000", + "longitude": "-6.65357000" + }, + { + "id": "33588", + "name": "Cerezo de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21817000", + "longitude": "-3.59126000" + }, + { + "id": "33589", + "name": "Cerezo de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23890000", + "longitude": "-3.55846000" + }, + { + "id": "33590", + "name": "Cernadilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02083000", + "longitude": "-6.41701000" + }, + { + "id": "33591", + "name": "Cerralbo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97347000", + "longitude": "-6.58710000" + }, + { + "id": "33592", + "name": "Cerratón de Juarros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42227000", + "longitude": "-3.37347000" + }, + { + "id": "33593", + "name": "Cervatos de la Cueza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29054000", + "longitude": "-4.76947000" + }, + { + "id": "33597", + "name": "Cervera de Pisuerga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86676000", + "longitude": "-4.49796000" + }, + { + "id": "33604", + "name": "Cervillego de la Cruz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18783000", + "longitude": "-4.94966000" + }, + { + "id": "33612", + "name": "Cevico de la Torre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85113000", + "longitude": "-4.40973000" + }, + { + "id": "33611", + "name": "Cevico Navero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86112000", + "longitude": "-4.18498000" + }, + { + "id": "33620", + "name": "Chañe", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33834000", + "longitude": "-4.42764000" + }, + { + "id": "33614", + "name": "Chamartín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70267000", + "longitude": "-4.95769000" + }, + { + "id": "33646", + "name": "Chozas de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50657000", + "longitude": "-5.68656000" + }, + { + "id": "33655", + "name": "Ciadoncha", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15814000", + "longitude": "-3.93235000" + }, + { + "id": "33657", + "name": "Cidones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81444000", + "longitude": "-2.63991000" + }, + { + "id": "33661", + "name": "Cigales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75780000", + "longitude": "-4.69848000" + }, + { + "id": "33663", + "name": "Ciguñuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64064000", + "longitude": "-4.85688000" + }, + { + "id": "33662", + "name": "Cigudosa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93333000", + "longitude": "-2.05000000" + }, + { + "id": "33664", + "name": "Cihuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40721000", + "longitude": "-1.99989000" + }, + { + "id": "33672", + "name": "Cillán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70675000", + "longitude": "-4.98135000" + }, + { + "id": "33668", + "name": "Cilleros de la Bastida", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57614000", + "longitude": "-6.06094000" + }, + { + "id": "33669", + "name": "Cilleruelo de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88405000", + "longitude": "-3.79723000" + }, + { + "id": "33670", + "name": "Cilleruelo de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90487000", + "longitude": "-3.66102000" + }, + { + "id": "33671", + "name": "Cilleruelo de San Mamés", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43220000", + "longitude": "-3.56614000" + }, + { + "id": "33673", + "name": "Cimanes de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11646000", + "longitude": "-5.59851000" + }, + { + "id": "33674", + "name": "Cimanes del Tejar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61789000", + "longitude": "-5.80506000" + }, + { + "id": "33680", + "name": "Cipérez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96210000", + "longitude": "-6.26552000" + }, + { + "id": "33683", + "name": "Ciria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61831000", + "longitude": "-1.96578000" + }, + { + "id": "33687", + "name": "Ciruelos de Cervera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90562000", + "longitude": "-3.53015000" + }, + { + "id": "33689", + "name": "Cirujales del Río", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86691000", + "longitude": "-2.32549000" + }, + { + "id": "33690", + "name": "Cisla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96662000", + "longitude": "-5.01405000" + }, + { + "id": "33691", + "name": "Cisneros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22046000", + "longitude": "-4.85807000" + }, + { + "id": "33694", + "name": "Cistérniga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61294000", + "longitude": "-4.68697000" + }, + { + "id": "33693", + "name": "Cistierna", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.80344000", + "longitude": "-5.12664000" + }, + { + "id": "33698", + "name": "Ciudad Rodrigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60000000", + "longitude": "-6.53333000" + }, + { + "id": "33711", + "name": "Cobos de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02808000", + "longitude": "-4.00251000" + }, + { + "id": "33712", + "name": "Cobos de Fuentidueña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38265000", + "longitude": "-3.92723000" + }, + { + "id": "33713", + "name": "Cobreros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07323000", + "longitude": "-6.70053000" + }, + { + "id": "33714", + "name": "Coca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21767000", + "longitude": "-4.52145000" + }, + { + "id": "33715", + "name": "Coca de Alba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87833000", + "longitude": "-5.36537000" + }, + { + "id": "33717", + "name": "Codorniz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06745000", + "longitude": "-4.60021000" + }, + { + "id": "33720", + "name": "Cogeces del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51030000", + "longitude": "-4.31721000" + }, + { + "id": "33722", + "name": "Cogollos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19982000", + "longitude": "-3.70005000" + }, + { + "id": "33734", + "name": "Collado de Contreras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88743000", + "longitude": "-4.93140000" + }, + { + "id": "33735", + "name": "Collado del Mirón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55307000", + "longitude": "-5.35398000" + }, + { + "id": "33732", + "name": "Collado Hermoso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03869000", + "longitude": "-3.91859000" + }, + { + "id": "33737", + "name": "Collazos de Boedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62009000", + "longitude": "-4.48294000" + }, + { + "id": "33743", + "name": "Colmenar de Montemayor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39957000", + "longitude": "-5.95618000" + }, + { + "id": "33758", + "name": "Congosto", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61755000", + "longitude": "-6.52048000" + }, + { + "id": "33759", + "name": "Congosto de Valdavia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.71584000", + "longitude": "-4.63366000" + }, + { + "id": "33767", + "name": "Constanzana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93821000", + "longitude": "-4.87515000" + }, + { + "id": "33770", + "name": "Contreras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02004000", + "longitude": "-3.41084000" + }, + { + "id": "33771", + "name": "Coomonte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11546000", + "longitude": "-5.81316000" + }, + { + "id": "33776", + "name": "Corbillos de los Oteros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40769000", + "longitude": "-5.45963000" + }, + { + "id": "33778", + "name": "Corcos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80946000", + "longitude": "-4.69270000" + }, + { + "id": "33781", + "name": "Cordovilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95095000", + "longitude": "-5.40725000" + }, + { + "id": "33782", + "name": "Cordovilla la Real", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07961000", + "longitude": "-4.25988000" + }, + { + "id": "33787", + "name": "Coreses", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54794000", + "longitude": "-5.62252000" + }, + { + "id": "33799", + "name": "Corral de Ayllón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39081000", + "longitude": "-3.45856000" + }, + { + "id": "33803", + "name": "Corrales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35800000", + "longitude": "-5.72479000" + }, + { + "id": "33804", + "name": "Corrales de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67205000", + "longitude": "-4.04817000" + }, + { + "id": "33814", + "name": "Coruña del Conde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76566000", + "longitude": "-3.39059000" + }, + { + "id": "33813", + "name": "Corullón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57896000", + "longitude": "-6.81925000" + }, + { + "id": "33816", + "name": "Coscurita", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43483000", + "longitude": "-2.47571000" + }, + { + "id": "33826", + "name": "Covaleda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93493000", + "longitude": "-2.88325000" + }, + { + "id": "33827", + "name": "Covarrubias", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05927000", + "longitude": "-3.51956000" + }, + { + "id": "33830", + "name": "Cozuelos de Fuentidueña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39086000", + "longitude": "-4.09564000" + }, + { + "id": "33841", + "name": "Crémenes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.90357000", + "longitude": "-5.14374000" + }, + { + "id": "33834", + "name": "Crespos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87128000", + "longitude": "-4.97094000" + }, + { + "id": "33837", + "name": "Cristóbal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46923000", + "longitude": "-5.88967000" + }, + { + "id": "33842", + "name": "Cuadros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.71163000", + "longitude": "-5.63828000" + }, + { + "id": "33888", + "name": "Cuéllar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40155000", + "longitude": "-4.31474000" + }, + { + "id": "33849", + "name": "Cubilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74905000", + "longitude": "-2.93717000" + }, + { + "id": "33850", + "name": "Cubillas de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79844000", + "longitude": "-4.46720000" + }, + { + "id": "33853", + "name": "Cubillas de los Oteros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37199000", + "longitude": "-5.50877000" + }, + { + "id": "33851", + "name": "Cubillas de Rueda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65626000", + "longitude": "-5.17528000" + }, + { + "id": "33852", + "name": "Cubillas de Santa Marta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83358000", + "longitude": "-4.61463000" + }, + { + "id": "33854", + "name": "Cubillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12138000", + "longitude": "-3.90878000" + }, + { + "id": "33855", + "name": "Cubillo del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16854000", + "longitude": "-3.61025000" + }, + { + "id": "33856", + "name": "Cubillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57436000", + "longitude": "-5.73920000" + }, + { + "id": "33857", + "name": "Cubillos del Sil", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62519000", + "longitude": "-6.56360000" + }, + { + "id": "33859", + "name": "Cubo de Benavente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12490000", + "longitude": "-6.16342000" + }, + { + "id": "33860", + "name": "Cubo de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64011000", + "longitude": "-3.20626000" + }, + { + "id": "33861", + "name": "Cubo de la Solana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60224000", + "longitude": "-2.42179000" + }, + { + "id": "33863", + "name": "Cuelgamures", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.30738000", + "longitude": "-5.65769000" + }, + { + "id": "33865", + "name": "Cuenca de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05927000", + "longitude": "-5.05539000" + }, + { + "id": "33867", + "name": "Cueva de Ágreda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76310000", + "longitude": "-1.88818000" + }, + { + "id": "33872", + "name": "Cuevas de Provanco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54209000", + "longitude": "-3.96203000" + }, + { + "id": "33873", + "name": "Cuevas de San Clemente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13009000", + "longitude": "-3.56840000" + }, + { + "id": "33879", + "name": "Cuevas del Valle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29418000", + "longitude": "-5.00938000" + }, + { + "id": "33886", + "name": "Curiel de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64327000", + "longitude": "-4.10110000" + }, + { + "id": "33918", + "name": "Dehesa de Montejo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81939000", + "longitude": "-4.51019000" + }, + { + "id": "33919", + "name": "Dehesa de Romanos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63876000", + "longitude": "-4.43518000" + }, + { + "id": "33930", + "name": "Destriana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32729000", + "longitude": "-6.09573000" + }, + { + "id": "33931", + "name": "Deza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46373000", + "longitude": "-2.02046000" + }, + { + "id": "33935", + "name": "Dios le Guarde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64283000", + "longitude": "-6.31511000" + }, + { + "id": "33955", + "name": "Doñinos de Ledesma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01251000", + "longitude": "-6.03412000" + }, + { + "id": "33956", + "name": "Doñinos de Salamanca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95978000", + "longitude": "-5.74349000" + }, + { + "id": "33938", + "name": "Domingo García", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11528000", + "longitude": "-4.37927000" + }, + { + "id": "33944", + "name": "Donhierro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11642000", + "longitude": "-4.69670000" + }, + { + "id": "33945", + "name": "Donjimeno", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95978000", + "longitude": "-4.84627000" + }, + { + "id": "33947", + "name": "Donvidas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08954000", + "longitude": "-4.80634000" + }, + { + "id": "33959", + "name": "Dueñas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87717000", + "longitude": "-4.54714000" + }, + { + "id": "33962", + "name": "Duruelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23622000", + "longitude": "-3.64914000" + }, + { + "id": "33963", + "name": "Duruelo de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95448000", + "longitude": "-2.93086000" + }, + { + "id": "33975", + "name": "Ejeme", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76685000", + "longitude": "-5.53828000" + }, + { + "id": "33979", + "name": "El Barco de Ávila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35710000", + "longitude": "-5.52365000" + }, + { + "id": "33983", + "name": "El Burgo de Osma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58619000", + "longitude": "-3.06522000" + }, + { + "id": "34000", + "name": "El Hoyo de Pinares", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50084000", + "longitude": "-4.42357000" + }, + { + "id": "34020", + "name": "El Tiemblo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41533000", + "longitude": "-4.50156000" + }, + { + "id": "34056", + "name": "Encío", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67115000", + "longitude": "-3.08680000" + }, + { + "id": "34044", + "name": "Encina de San Silvestre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01442000", + "longitude": "-6.09268000" + }, + { + "id": "34046", + "name": "Encinas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37511000", + "longitude": "-3.66762000" + }, + { + "id": "34048", + "name": "Encinas de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93493000", + "longitude": "-5.47037000" + }, + { + "id": "34049", + "name": "Encinas de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77120000", + "longitude": "-5.55661000" + }, + { + "id": "34050", + "name": "Encinas de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75653000", + "longitude": "-4.10357000" + }, + { + "id": "34052", + "name": "Encinasola de los Comendadores", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03089000", + "longitude": "-6.53261000" + }, + { + "id": "34053", + "name": "Encinedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27049000", + "longitude": "-6.59368000" + }, + { + "id": "34054", + "name": "Encinillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01809000", + "longitude": "-4.15784000" + }, + { + "id": "34057", + "name": "Endrinal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59109000", + "longitude": "-5.80411000" + }, + { + "id": "34061", + "name": "Entrala", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43006000", + "longitude": "-5.75556000" + }, + { + "id": "34078", + "name": "Escalona del Prado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16682000", + "longitude": "-4.12272000" + }, + { + "id": "34081", + "name": "Escarabajosa de Cabezas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10470000", + "longitude": "-4.19411000" + }, + { + "id": "34085", + "name": "Escobar de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31337000", + "longitude": "-4.96573000" + }, + { + "id": "34086", + "name": "Escobar de Polendos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09079000", + "longitude": "-4.13117000" + }, + { + "id": "34087", + "name": "Escobosa de Almazán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48626000", + "longitude": "-2.37140000" + }, + { + "id": "34093", + "name": "Escurial de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61731000", + "longitude": "-5.95520000" + }, + { + "id": "34096", + "name": "Esguevillas de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75018000", + "longitude": "-4.38062000" + }, + { + "id": "34101", + "name": "Espadaña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06085000", + "longitude": "-6.28457000" + }, + { + "id": "34102", + "name": "Espadañedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11618000", + "longitude": "-6.39419000" + }, + { + "id": "34110", + "name": "Espeja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56565000", + "longitude": "-6.71582000" + }, + { + "id": "34111", + "name": "Espeja de San Marcelino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80227000", + "longitude": "-3.22230000" + }, + { + "id": "34113", + "name": "Espejón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83023000", + "longitude": "-3.25936000" + }, + { + "id": "34117", + "name": "Espino de la Orbada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10693000", + "longitude": "-5.42515000" + }, + { + "id": "34118", + "name": "Espinosa de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96679000", + "longitude": "-3.95346000" + }, + { + "id": "34119", + "name": "Espinosa de Cervera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89683000", + "longitude": "-3.46858000" + }, + { + "id": "34122", + "name": "Espinosa de los Monteros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "43.07754000", + "longitude": "-3.55365000" + }, + { + "id": "34121", + "name": "Espinosa de Villagonzalo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47949000", + "longitude": "-4.37218000" + }, + { + "id": "34123", + "name": "Espinosa del Camino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40590000", + "longitude": "-3.28019000" + }, + { + "id": "34125", + "name": "Espirdo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99764000", + "longitude": "-4.07331000" + }, + { + "id": "34150", + "name": "Estépar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27731000", + "longitude": "-3.89946000" + }, + { + "id": "34142", + "name": "Estepa de San Juan", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92661000", + "longitude": "-2.33322000" + }, + { + "id": "34155", + "name": "Fabero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.76803000", + "longitude": "-6.62651000" + }, + { + "id": "34163", + "name": "Faramontanos de Tábara", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83469000", + "longitude": "-5.88883000" + }, + { + "id": "34164", + "name": "Fariza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41667000", + "longitude": "-6.26667000" + }, + { + "id": "34174", + "name": "Fermoselle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31738000", + "longitude": "-6.39584000" + }, + { + "id": "34177", + "name": "Ferreras de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89651000", + "longitude": "-6.07904000" + }, + { + "id": "34178", + "name": "Ferreras de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89878000", + "longitude": "-6.19461000" + }, + { + "id": "34180", + "name": "Ferreruela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76673000", + "longitude": "-6.07215000" + }, + { + "id": "34186", + "name": "Figueruela de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86867000", + "longitude": "-6.44454000" + }, + { + "id": "34196", + "name": "Flores de Ávila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93358000", + "longitude": "-5.07914000" + }, + { + "id": "34197", + "name": "Florida de Liébana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02361000", + "longitude": "-5.76252000" + }, + { + "id": "34200", + "name": "Folgoso de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64693000", + "longitude": "-6.32035000" + }, + { + "id": "34201", + "name": "Fombellida", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76693000", + "longitude": "-4.18409000" + }, + { + "id": "34203", + "name": "Fompedraza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53541000", + "longitude": "-4.14483000" + }, + { + "id": "34208", + "name": "Fonfría", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63493000", + "longitude": "-6.14081000" + }, + { + "id": "34215", + "name": "Fontihoyuelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16192000", + "longitude": "-5.05791000" + }, + { + "id": "34216", + "name": "Fontioso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94273000", + "longitude": "-3.73872000" + }, + { + "id": "34217", + "name": "Fontiveros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92997000", + "longitude": "-4.96445000" + }, + { + "id": "34221", + "name": "Forfoleda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09779000", + "longitude": "-5.74979000" + }, + { + "id": "34236", + "name": "Frades de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.65687000", + "longitude": "-5.78223000" + }, + { + "id": "34239", + "name": "Frandovínez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31032000", + "longitude": "-3.83783000" + }, + { + "id": "34271", + "name": "Frías", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.76225000", + "longitude": "-3.29394000" + }, + { + "id": "34273", + "name": "Frómista", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26667000", + "longitude": "-4.40546000" + }, + { + "id": "34240", + "name": "Frechilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13768000", + "longitude": "-4.84112000" + }, + { + "id": "34241", + "name": "Frechilla de Almazán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42656000", + "longitude": "-2.51444000" + }, + { + "id": "34252", + "name": "Fresneña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41366000", + "longitude": "-3.13453000" + }, + { + "id": "34245", + "name": "Fresneda de Cuéllar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31905000", + "longitude": "-4.44938000" + }, + { + "id": "34247", + "name": "Fresneda de la Sierra Tirón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31535000", + "longitude": "-3.13596000" + }, + { + "id": "34248", + "name": "Fresnedilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23233000", + "longitude": "-4.62201000" + }, + { + "id": "34250", + "name": "Fresnedoso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43619000", + "longitude": "-5.70969000" + }, + { + "id": "34253", + "name": "Fresnillo de las Dueñas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64700000", + "longitude": "-3.64558000" + }, + { + "id": "34255", + "name": "Fresno de Cantespino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36820000", + "longitude": "-3.49950000" + }, + { + "id": "34256", + "name": "Fresno de Caracena", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45247000", + "longitude": "-3.09123000" + }, + { + "id": "34260", + "name": "Fresno de la Fuente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39243000", + "longitude": "-3.64491000" + }, + { + "id": "34261", + "name": "Fresno de la Polvorosa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08310000", + "longitude": "-5.76969000" + }, + { + "id": "34262", + "name": "Fresno de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52926000", + "longitude": "-5.56658000" + }, + { + "id": "34263", + "name": "Fresno de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34545000", + "longitude": "-5.53587000" + }, + { + "id": "34257", + "name": "Fresno de Rodilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42054000", + "longitude": "-3.48507000" + }, + { + "id": "34258", + "name": "Fresno de Sayago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31848000", + "longitude": "-5.97129000" + }, + { + "id": "34264", + "name": "Fresno del Río", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68176000", + "longitude": "-4.81734000" + }, + { + "id": "34254", + "name": "Fresno El Viejo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19752000", + "longitude": "-5.14413000" + }, + { + "id": "34265", + "name": "Friera de Valverde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91214000", + "longitude": "-5.84153000" + }, + { + "id": "34269", + "name": "Frumales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38333000", + "longitude": "-4.18631000" + }, + { + "id": "34287", + "name": "Fuensaldaña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70617000", + "longitude": "-4.76547000" + }, + { + "id": "34298", + "name": "Fuente de Santa Cruz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20972000", + "longitude": "-4.63530000" + }, + { + "id": "34301", + "name": "Fuente el Olmo de Fuentidueña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37929000", + "longitude": "-4.00086000" + }, + { + "id": "34303", + "name": "Fuente el Sol", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17603000", + "longitude": "-4.93430000" + }, + { + "id": "34291", + "name": "Fuente Encalada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11011000", + "longitude": "-5.99622000" + }, + { + "id": "34310", + "name": "Fuentearmegil", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71496000", + "longitude": "-3.18362000" + }, + { + "id": "34311", + "name": "Fuentebureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63400000", + "longitude": "-3.23510000" + }, + { + "id": "34312", + "name": "Fuentecambrón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50579000", + "longitude": "-3.32872000" + }, + { + "id": "34313", + "name": "Fuentecantos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84929000", + "longitude": "-2.42846000" + }, + { + "id": "34314", + "name": "Fuentecén", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62852000", + "longitude": "-3.86867000" + }, + { + "id": "34315", + "name": "Fuenteguinaldo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42876000", + "longitude": "-6.67528000" + }, + { + "id": "34318", + "name": "Fuentelapeña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25144000", + "longitude": "-5.38325000" + }, + { + "id": "34319", + "name": "Fuentelcésped", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59162000", + "longitude": "-3.64064000" + }, + { + "id": "34323", + "name": "Fuentelisendo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62274000", + "longitude": "-3.90129000" + }, + { + "id": "34325", + "name": "Fuentelsaz de Soria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86586000", + "longitude": "-2.41525000" + }, + { + "id": "34327", + "name": "Fuentemolinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60477000", + "longitude": "-3.85005000" + }, + { + "id": "34328", + "name": "Fuentenebro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52873000", + "longitude": "-3.75449000" + }, + { + "id": "34330", + "name": "Fuentepelayo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22249000", + "longitude": "-4.17570000" + }, + { + "id": "34332", + "name": "Fuentepiñel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39892000", + "longitude": "-4.04295000" + }, + { + "id": "34331", + "name": "Fuentepinilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56683000", + "longitude": "-2.76288000" + }, + { + "id": "34333", + "name": "Fuenterroble de Salvatierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56466000", + "longitude": "-5.73379000" + }, + { + "id": "34340", + "name": "Fuentes de Año", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01769000", + "longitude": "-4.89907000" + }, + { + "id": "34341", + "name": "Fuentes de Béjar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50815000", + "longitude": "-5.69270000" + }, + { + "id": "34342", + "name": "Fuentes de Carbajal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17776000", + "longitude": "-5.44606000" + }, + { + "id": "34346", + "name": "Fuentes de Magaña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93521000", + "longitude": "-2.17950000" + }, + { + "id": "34347", + "name": "Fuentes de Nava", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08333000", + "longitude": "-4.78333000" + }, + { + "id": "34348", + "name": "Fuentes de Oñoro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59102000", + "longitude": "-6.81144000" + }, + { + "id": "34349", + "name": "Fuentes de Ropel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00377000", + "longitude": "-5.54532000" + }, + { + "id": "34351", + "name": "Fuentes de Valdepero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07532000", + "longitude": "-4.50050000" + }, + { + "id": "34352", + "name": "Fuentesaúco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23043000", + "longitude": "-5.49722000" + }, + { + "id": "34353", + "name": "Fuentesaúco de Fuentidueña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42445000", + "longitude": "-4.06215000" + }, + { + "id": "34354", + "name": "Fuentesecas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63077000", + "longitude": "-5.47252000" + }, + { + "id": "34355", + "name": "Fuentesoto", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45664000", + "longitude": "-3.91835000" + }, + { + "id": "34357", + "name": "Fuentespina", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63079000", + "longitude": "-3.68475000" + }, + { + "id": "34358", + "name": "Fuentespreadas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.32627000", + "longitude": "-5.62798000" + }, + { + "id": "34359", + "name": "Fuentestrún", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87466000", + "longitude": "-2.08283000" + }, + { + "id": "34360", + "name": "Fuentidueña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44226000", + "longitude": "-3.97899000" + }, + { + "id": "34372", + "name": "Gajates", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78254000", + "longitude": "-5.36506000" + }, + { + "id": "34376", + "name": "Galbarros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52729000", + "longitude": "-3.43827000" + }, + { + "id": "34379", + "name": "Galende", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10440000", + "longitude": "-6.66252000" + }, + { + "id": "34382", + "name": "Galindo y Perahuy", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94397000", + "longitude": "-5.87410000" + }, + { + "id": "34383", + "name": "Galinduste", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66266000", + "longitude": "-5.54003000" + }, + { + "id": "34384", + "name": "Galisancho", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74418000", + "longitude": "-5.55471000" + }, + { + "id": "34386", + "name": "Gallegos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07508000", + "longitude": "-3.78591000" + }, + { + "id": "34387", + "name": "Gallegos de Argañán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63146000", + "longitude": "-6.70246000" + }, + { + "id": "34388", + "name": "Gallegos de Hornija", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60980000", + "longitude": "-5.09768000" + }, + { + "id": "34389", + "name": "Gallegos de Sobrinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71693000", + "longitude": "-5.11224000" + }, + { + "id": "34390", + "name": "Gallegos del Pan", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59985000", + "longitude": "-5.58117000" + }, + { + "id": "34391", + "name": "Gallegos del Río", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73497000", + "longitude": "-6.17435000" + }, + { + "id": "34400", + "name": "Gamonal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35664000", + "longitude": "-3.67321000" + }, + { + "id": "34401", + "name": "Gamones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46690000", + "longitude": "-6.17621000" + }, + { + "id": "34409", + "name": "Garcibuey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51552000", + "longitude": "-5.99439000" + }, + { + "id": "34410", + "name": "Garcihernández", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86096000", + "longitude": "-5.43567000" + }, + { + "id": "34411", + "name": "Garcillán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97771000", + "longitude": "-4.26577000" + }, + { + "id": "34412", + "name": "Garcirrey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90049000", + "longitude": "-6.13120000" + }, + { + "id": "34416", + "name": "Garganta del Villar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44965000", + "longitude": "-5.10420000" + }, + { + "id": "34421", + "name": "Garrafe de Torío", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73285000", + "longitude": "-5.52360000" + }, + { + "id": "34423", + "name": "Garray", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81617000", + "longitude": "-2.44592000" + }, + { + "id": "34437", + "name": "Gatón de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04984000", + "longitude": "-4.98078000" + }, + { + "id": "34440", + "name": "Gavilanes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.27791000", + "longitude": "-4.85321000" + }, + { + "id": "34564", + "name": "Gómara", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62347000", + "longitude": "-2.22493000" + }, + { + "id": "34444", + "name": "Gejuelo del Barro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07633000", + "longitude": "-6.12332000" + }, + { + "id": "34449", + "name": "Gema", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41855000", + "longitude": "-5.64906000" + }, + { + "id": "34450", + "name": "Gemuño", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59159000", + "longitude": "-4.78178000" + }, + { + "id": "34455", + "name": "Geria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57868000", + "longitude": "-4.87663000" + }, + { + "id": "34465", + "name": "Gimialcón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87705000", + "longitude": "-5.12308000" + }, + { + "id": "34478", + "name": "Golmayo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76620000", + "longitude": "-2.52267000" + }, + { + "id": "34481", + "name": "Golpejas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99981000", + "longitude": "-5.90687000" + }, + { + "id": "34482", + "name": "Gomecello", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04280000", + "longitude": "-5.53585000" + }, + { + "id": "34485", + "name": "Gordaliza del Pino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34357000", + "longitude": "-5.15731000" + }, + { + "id": "34486", + "name": "Gordoncillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13557000", + "longitude": "-5.40181000" + }, + { + "id": "34488", + "name": "Gormaz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49232000", + "longitude": "-3.00500000" + }, + { + "id": "34489", + "name": "Gotarrendura", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82652000", + "longitude": "-4.74090000" + }, + { + "id": "34492", + "name": "Gradefes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62396000", + "longitude": "-5.22691000" + }, + { + "id": "34495", + "name": "Grajal de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32073000", + "longitude": "-5.01938000" + }, + { + "id": "34496", + "name": "Grajera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37319000", + "longitude": "-3.61304000" + }, + { + "id": "34500", + "name": "Granja de Moreruela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81026000", + "longitude": "-5.73893000" + }, + { + "id": "34504", + "name": "Granucillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05209000", + "longitude": "-5.92777000" + }, + { + "id": "34511", + "name": "Grijalba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43002000", + "longitude": "-4.11896000" + }, + { + "id": "34512", + "name": "Grijota", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05289000", + "longitude": "-4.58309000" + }, + { + "id": "34513", + "name": "Grisaleña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.59122000", + "longitude": "-3.26416000" + }, + { + "id": "34532", + "name": "Guadramiro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01703000", + "longitude": "-6.49369000" + }, + { + "id": "34536", + "name": "Guardo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.78966000", + "longitude": "-4.84823000" + }, + { + "id": "34540", + "name": "Guaza de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13365000", + "longitude": "-4.90949000" + }, + { + "id": "34546", + "name": "Guijo de Ávila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.53078000", + "longitude": "-5.63970000" + }, + { + "id": "34547", + "name": "Guijuelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55757000", + "longitude": "-5.67067000" + }, + { + "id": "34551", + "name": "Guisando", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22225000", + "longitude": "-5.13950000" + }, + { + "id": "34555", + "name": "Gusendos de los Oteros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37818000", + "longitude": "-5.43088000" + }, + { + "id": "34556", + "name": "Gutierre-Muñoz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98295000", + "longitude": "-4.63839000" + }, + { + "id": "34571", + "name": "Hacinas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98514000", + "longitude": "-3.28709000" + }, + { + "id": "34574", + "name": "Haza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61667000", + "longitude": "-3.81667000" + }, + { + "id": "34721", + "name": "Hérmedes de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81972000", + "longitude": "-4.17361000" + }, + { + "id": "34583", + "name": "Herguijuela de Ciudad Rodrigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45860000", + "longitude": "-6.52075000" + }, + { + "id": "34584", + "name": "Herguijuela de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44535000", + "longitude": "-6.07445000" + }, + { + "id": "34585", + "name": "Herguijuela del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63102000", + "longitude": "-5.86398000" + }, + { + "id": "34587", + "name": "Hermisende", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96898000", + "longitude": "-6.89616000" + }, + { + "id": "34589", + "name": "Hernansancho", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85753000", + "longitude": "-4.73045000" + }, + { + "id": "34603", + "name": "Herrín de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12476000", + "longitude": "-4.95239000" + }, + { + "id": "34595", + "name": "Herrera de Pisuerga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.59492000", + "longitude": "-4.33034000" + }, + { + "id": "34596", + "name": "Herrera de Soria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76269000", + "longitude": "-3.01243000" + }, + { + "id": "34597", + "name": "Herrera de Valdecañas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04828000", + "longitude": "-4.20004000" + }, + { + "id": "34600", + "name": "Herreros de Suso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80361000", + "longitude": "-5.03892000" + }, + { + "id": "34613", + "name": "Higuera de las Dueñas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.23903000", + "longitude": "-4.60361000" + }, + { + "id": "34623", + "name": "Hinojosa de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98674000", + "longitude": "-6.79529000" + }, + { + "id": "34626", + "name": "Hinojosa del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73844000", + "longitude": "-2.09946000" + }, + { + "id": "34637", + "name": "Honrubia de la Cuesta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50998000", + "longitude": "-3.70453000" + }, + { + "id": "34638", + "name": "Hontalbilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34551000", + "longitude": "-4.12149000" + }, + { + "id": "34640", + "name": "Hontanares de Eresma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98273000", + "longitude": "-4.20439000" + }, + { + "id": "34641", + "name": "Hontanas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31312000", + "longitude": "-4.04529000" + }, + { + "id": "34643", + "name": "Hontangas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58216000", + "longitude": "-3.79550000" + }, + { + "id": "34646", + "name": "Hontoria de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91061000", + "longitude": "-4.44209000" + }, + { + "id": "34648", + "name": "Hontoria de la Cantera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18879000", + "longitude": "-3.64251000" + }, + { + "id": "34647", + "name": "Hontoria de Valdearados", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74488000", + "longitude": "-3.51983000" + }, + { + "id": "34649", + "name": "Hontoria del Pinar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84838000", + "longitude": "-3.16245000" + }, + { + "id": "34653", + "name": "Horcajo de las Torres", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06497000", + "longitude": "-5.09092000" + }, + { + "id": "34650", + "name": "Horcajo de Montemayor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42265000", + "longitude": "-5.89427000" + }, + { + "id": "34662", + "name": "Hornillos de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98772000", + "longitude": "-4.27207000" + }, + { + "id": "34663", + "name": "Hornillos del Camino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33863000", + "longitude": "-3.92560000" + }, + { + "id": "34668", + "name": "Hortigüela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06842000", + "longitude": "-3.42578000" + }, + { + "id": "34669", + "name": "Hospital de Órbigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46354000", + "longitude": "-5.88636000" + }, + { + "id": "34673", + "name": "Hoyales de Roa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65893000", + "longitude": "-3.86202000" + }, + { + "id": "34675", + "name": "Hoyocasero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39890000", + "longitude": "-4.97455000" + }, + { + "id": "34676", + "name": "Hoyorredondo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46270000", + "longitude": "-5.41097000" + }, + { + "id": "34678", + "name": "Hoyos de Miguel Muñoz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39237000", + "longitude": "-5.06713000" + }, + { + "id": "34679", + "name": "Hoyos del Collado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35945000", + "longitude": "-5.20027000" + }, + { + "id": "34680", + "name": "Hoyos del Espino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35623000", + "longitude": "-5.17505000" + }, + { + "id": "34715", + "name": "Huérmeces", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52250000", + "longitude": "-3.77072000" + }, + { + "id": "34687", + "name": "Huerta de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11672000", + "longitude": "-3.08211000" + }, + { + "id": "34691", + "name": "Huerta del Rey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83910000", + "longitude": "-3.34755000" + }, + { + "id": "34699", + "name": "Humada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66667000", + "longitude": "-4.08333000" + }, + { + "id": "34703", + "name": "Hurones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40571000", + "longitude": "-3.61588000" + }, + { + "id": "34704", + "name": "Hurtumpascual", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69200000", + "longitude": "-5.11379000" + }, + { + "id": "34705", + "name": "Husillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09054000", + "longitude": "-4.52709000" + }, + { + "id": "34726", + "name": "Ibeas de Juarros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33088000", + "longitude": "-3.53519000" + }, + { + "id": "34730", + "name": "Ibrillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45431000", + "longitude": "-3.08238000" + }, + { + "id": "34742", + "name": "Igüeña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.72853000", + "longitude": "-6.27738000" + }, + { + "id": "34736", + "name": "Iglesiarrubia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97383000", + "longitude": "-3.84701000" + }, + { + "id": "34737", + "name": "Iglesias", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29807000", + "longitude": "-3.98932000" + }, + { + "id": "34760", + "name": "Iruelos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14135000", + "longitude": "-6.32808000" + }, + { + "id": "34764", + "name": "Isar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36140000", + "longitude": "-3.93040000" + }, + { + "id": "34765", + "name": "Iscar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36117000", + "longitude": "-4.53348000" + }, + { + "id": "34770", + "name": "Itero de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28804000", + "longitude": "-4.25677000" + }, + { + "id": "34771", + "name": "Itero del Castillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28988000", + "longitude": "-4.24441000" + }, + { + "id": "34772", + "name": "Ituero de Azaba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48487000", + "longitude": "-6.69272000" + }, + { + "id": "34773", + "name": "Ituero y Lama", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80066000", + "longitude": "-4.37917000" + }, + { + "id": "34778", + "name": "Izagre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22410000", + "longitude": "-5.25727000" + }, + { + "id": "34794", + "name": "Jambrina", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39196000", + "longitude": "-5.66411000" + }, + { + "id": "34800", + "name": "Jaramillo de la Fuente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11472000", + "longitude": "-3.31239000" + }, + { + "id": "34799", + "name": "Jaramillo Quemado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08568000", + "longitude": "-3.35868000" + }, + { + "id": "34820", + "name": "Joarilla de las Matas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28755000", + "longitude": "-5.17855000" + }, + { + "id": "34825", + "name": "Juarros de Voltoya", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03097000", + "longitude": "-4.51922000" + }, + { + "id": "34830", + "name": "Junciana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41076000", + "longitude": "-5.55698000" + }, + { + "id": "34833", + "name": "Justel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14861000", + "longitude": "-6.29594000" + }, + { + "id": "34835", + "name": "Juzbado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07791000", + "longitude": "-5.86140000" + }, + { + "id": "34848", + "name": "La Adrada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29953000", + "longitude": "-4.63589000" + }, + { + "id": "34850", + "name": "La Alberca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48908000", + "longitude": "-6.11107000" + }, + { + "id": "34856", + "name": "La Bañeza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30026000", + "longitude": "-5.89772000" + }, + { + "id": "34859", + "name": "La Bouza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83626000", + "longitude": "-6.79551000" + }, + { + "id": "34866", + "name": "La Carrera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34777000", + "longitude": "-5.55474000" + }, + { + "id": "34869", + "name": "La Cuesta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08280000", + "longitude": "-3.96017000" + }, + { + "id": "34873", + "name": "La Fuente de San Esteban", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80161000", + "longitude": "-6.25852000" + }, + { + "id": "34889", + "name": "La Lastrilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96817000", + "longitude": "-4.10468000" + }, + { + "id": "34901", + "name": "La Pedraja de Portillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47124000", + "longitude": "-4.64639000" + }, + { + "id": "34908", + "name": "La Pola de Gordón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.85658000", + "longitude": "-5.66768000" + }, + { + "id": "34918", + "name": "La Robla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.80302000", + "longitude": "-5.62904000" + }, + { + "id": "34925", + "name": "La Seca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41364000", + "longitude": "-4.90552000" + }, + { + "id": "34936", + "name": "Labajos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84335000", + "longitude": "-4.52005000" + }, + { + "id": "34940", + "name": "Lagartos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40578000", + "longitude": "-4.90454000" + }, + { + "id": "34945", + "name": "Laguna Dalga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33192000", + "longitude": "-5.75220000" + }, + { + "id": "34947", + "name": "Laguna de Contreras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49513000", + "longitude": "-4.02874000" + }, + { + "id": "34948", + "name": "Laguna de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58151000", + "longitude": "-4.72332000" + }, + { + "id": "34949", + "name": "Laguna de Negrillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23889000", + "longitude": "-5.66066000" + }, + { + "id": "34952", + "name": "Lagunilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32491000", + "longitude": "-5.97132000" + }, + { + "id": "34962", + "name": "Langa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00550000", + "longitude": "-4.85946000" + }, + { + "id": "34963", + "name": "Langa de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60985000", + "longitude": "-3.40061000" + }, + { + "id": "34965", + "name": "Langayo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56986000", + "longitude": "-4.19866000" + }, + { + "id": "34966", + "name": "Languilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44926000", + "longitude": "-3.42438000" + }, + { + "id": "34968", + "name": "Lantadilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34078000", + "longitude": "-4.27866000" + }, + { + "id": "34981", + "name": "Larrodrigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.73722000", + "longitude": "-5.44895000" + }, + { + "id": "34987", + "name": "Las Navas del Marqués", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60244000", + "longitude": "-4.33449000" + }, + { + "id": "35000", + "name": "Lastras de Cuéllar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29762000", + "longitude": "-4.10670000" + }, + { + "id": "35001", + "name": "Lastras del Pozo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87920000", + "longitude": "-4.34658000" + }, + { + "id": "35045", + "name": "León", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60003000", + "longitude": "-5.57032000" + }, + { + "id": "35016", + "name": "Ledesma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08829000", + "longitude": "-6.00178000" + }, + { + "id": "35018", + "name": "Ledigos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35480000", + "longitude": "-4.86480000" + }, + { + "id": "35019", + "name": "Ledrada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46878000", + "longitude": "-5.72038000" + }, + { + "id": "35032", + "name": "Lerma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02609000", + "longitude": "-3.75978000" + }, + { + "id": "35048", + "name": "Liceras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37939000", + "longitude": "-3.24371000" + }, + { + "id": "35054", + "name": "Linares de Riofrío", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58338000", + "longitude": "-5.92091000" + }, + { + "id": "35065", + "name": "Llamas de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63504000", + "longitude": "-5.82524000" + }, + { + "id": "35068", + "name": "Llano de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62435000", + "longitude": "-3.45890000" + }, + { + "id": "35069", + "name": "Llano de Olmedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26727000", + "longitude": "-4.61386000" + }, + { + "id": "35103", + "name": "Lomas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27362000", + "longitude": "-4.55095000" + }, + { + "id": "35139", + "name": "Losacino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68084000", + "longitude": "-6.07986000" + }, + { + "id": "35140", + "name": "Losacio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71092000", + "longitude": "-6.04059000" + }, + { + "id": "35146", + "name": "Lubián", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03569000", + "longitude": "-6.90541000" + }, + { + "id": "35156", + "name": "Luelmo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44030000", + "longitude": "-6.13338000" + }, + { + "id": "35163", + "name": "Lumbrales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93501000", + "longitude": "-6.71948000" + }, + { + "id": "35170", + "name": "Luyego", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36667000", + "longitude": "-6.23333000" + }, + { + "id": "35182", + "name": "Machacón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92623000", + "longitude": "-5.52430000" + }, + { + "id": "35183", + "name": "Macotera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83105000", + "longitude": "-5.28526000" + }, + { + "id": "35184", + "name": "Maderuelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48644000", + "longitude": "-3.52218000" + }, + { + "id": "35187", + "name": "Madridanos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47967000", + "longitude": "-5.60459000" + }, + { + "id": "35190", + "name": "Madrigal de las Altas Torres", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08968000", + "longitude": "-4.99863000" + }, + { + "id": "35191", + "name": "Madrigal del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14464000", + "longitude": "-3.67571000" + }, + { + "id": "35193", + "name": "Madrigalejo del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12442000", + "longitude": "-3.72509000" + }, + { + "id": "35195", + "name": "Madroñal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46407000", + "longitude": "-6.06271000" + }, + { + "id": "35198", + "name": "Maello", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80929000", + "longitude": "-4.51186000" + }, + { + "id": "35203", + "name": "Magaña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90089000", + "longitude": "-2.16269000" + }, + { + "id": "35202", + "name": "Magaz de Cepeda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.53967000", + "longitude": "-6.07170000" + }, + { + "id": "35206", + "name": "Mahamud", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11981000", + "longitude": "-3.94060000" + }, + { + "id": "35207", + "name": "Mahide", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86917000", + "longitude": "-6.37784000" + }, + { + "id": "35211", + "name": "Maire de Castroponce", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11283000", + "longitude": "-5.78475000" + }, + { + "id": "35217", + "name": "Maján", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46888000", + "longitude": "-2.30268000" + }, + { + "id": "35225", + "name": "Malpartida", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76269000", + "longitude": "-5.23149000" + }, + { + "id": "35226", + "name": "Malpartida de Corneja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.52208000", + "longitude": "-5.35026000" + }, + { + "id": "35233", + "name": "Malva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65467000", + "longitude": "-5.48657000" + }, + { + "id": "35235", + "name": "Mamblas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01925000", + "longitude": "-5.00873000" + }, + { + "id": "35236", + "name": "Mambrilla de Castrejón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66634000", + "longitude": "-3.98448000" + }, + { + "id": "35237", + "name": "Mambrillas de Lara", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09446000", + "longitude": "-3.46195000" + }, + { + "id": "35238", + "name": "Mamolar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92762000", + "longitude": "-3.36228000" + }, + { + "id": "35240", + "name": "Mancera de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83974000", + "longitude": "-5.19933000" + }, + { + "id": "35241", + "name": "Mancera de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79139000", + "longitude": "-5.14772000" + }, + { + "id": "35245", + "name": "Manciles", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45728000", + "longitude": "-3.94461000" + }, + { + "id": "35248", + "name": "Manganeses de la Lampreana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75085000", + "longitude": "-5.71048000" + }, + { + "id": "35249", + "name": "Manganeses de la Polvorosa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03563000", + "longitude": "-5.74694000" + }, + { + "id": "35252", + "name": "Manjabálago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66441000", + "longitude": "-5.07719000" + }, + { + "id": "35255", + "name": "Manquillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20518000", + "longitude": "-4.56841000" + }, + { + "id": "35258", + "name": "Mansilla de las Mulas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49886000", + "longitude": "-5.41738000" + }, + { + "id": "35257", + "name": "Mansilla Mayor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50943000", + "longitude": "-5.44271000" + }, + { + "id": "35260", + "name": "Mantinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.75259000", + "longitude": "-4.84213000" + }, + { + "id": "35262", + "name": "Manzanal de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99217000", + "longitude": "-6.44012000" + }, + { + "id": "35263", + "name": "Manzanal de los Infantes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05428000", + "longitude": "-6.38288000" + }, + { + "id": "35264", + "name": "Manzanal del Barco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63501000", + "longitude": "-5.94671000" + }, + { + "id": "35272", + "name": "Manzanillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58617000", + "longitude": "-4.18826000" + }, + { + "id": "35279", + "name": "Maraña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "43.04991000", + "longitude": "-5.17726000" + }, + { + "id": "35277", + "name": "Marazoleja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96086000", + "longitude": "-4.33882000" + }, + { + "id": "35278", + "name": "Marazuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97912000", + "longitude": "-4.36506000" + }, + { + "id": "35287", + "name": "Marcilla de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31770000", + "longitude": "-4.39670000" + }, + { + "id": "35306", + "name": "Martín de Yeltes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77594000", + "longitude": "-6.29162000" + }, + { + "id": "35303", + "name": "Martín Miguel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95220000", + "longitude": "-4.27166000" + }, + { + "id": "35304", + "name": "Martín Muñoz de la Dehesa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06652000", + "longitude": "-4.68676000" + }, + { + "id": "35305", + "name": "Martín Muñoz de las Posadas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99546000", + "longitude": "-4.59672000" + }, + { + "id": "35309", + "name": "Martínez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63046000", + "longitude": "-5.34801000" + }, + { + "id": "35298", + "name": "Martiago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45420000", + "longitude": "-6.49010000" + }, + { + "id": "35299", + "name": "Martiherrero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67392000", + "longitude": "-4.78156000" + }, + { + "id": "35300", + "name": "Martinamor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80676000", + "longitude": "-5.59913000" + }, + { + "id": "35310", + "name": "Marugán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89943000", + "longitude": "-4.38383000" + }, + { + "id": "35311", + "name": "Marzales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58644000", + "longitude": "-5.13455000" + }, + { + "id": "35328", + "name": "Masueco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20352000", + "longitude": "-6.58938000" + }, + { + "id": "35330", + "name": "Mata de Cuéllar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39655000", + "longitude": "-4.47167000" + }, + { + "id": "35331", + "name": "Matabuena", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09590000", + "longitude": "-3.75827000" + }, + { + "id": "35333", + "name": "Matadeón de los Oteros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33776000", + "longitude": "-5.36887000" + }, + { + "id": "35334", + "name": "Matalebreras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84116000", + "longitude": "-2.04644000" + }, + { + "id": "35335", + "name": "Matallana de Torío", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86560000", + "longitude": "-5.52034000" + }, + { + "id": "35336", + "name": "Matamala de Almazán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50563000", + "longitude": "-2.64122000" + }, + { + "id": "35338", + "name": "Matapozuelos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41423000", + "longitude": "-4.79122000" + }, + { + "id": "35342", + "name": "Matilla de Arzón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10499000", + "longitude": "-5.64156000" + }, + { + "id": "35343", + "name": "Matilla de los Caños", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54818000", + "longitude": "-4.96761000" + }, + { + "id": "35344", + "name": "Matilla de los Caños del Río", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82539000", + "longitude": "-5.94276000" + }, + { + "id": "35345", + "name": "Matilla la Seca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57935000", + "longitude": "-5.50030000" + }, + { + "id": "35348", + "name": "Mayalde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25080000", + "longitude": "-5.79767000" + }, + { + "id": "35349", + "name": "Mayorga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16687000", + "longitude": "-5.26304000" + }, + { + "id": "35355", + "name": "Mazariegos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02691000", + "longitude": "-4.71542000" + }, + { + "id": "35359", + "name": "Mazuecos de Valdeginate", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16814000", + "longitude": "-4.84059000" + }, + { + "id": "35360", + "name": "Mazuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20767000", + "longitude": "-3.91920000" + }, + { + "id": "35365", + "name": "Mecerreyes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09536000", + "longitude": "-3.57393000" + }, + { + "id": "35368", + "name": "Mediana de Voltoya", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70104000", + "longitude": "-4.56341000" + }, + { + "id": "35370", + "name": "Medina de Pomar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.92938000", + "longitude": "-3.48804000" + }, + { + "id": "35371", + "name": "Medina de Ríoseco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88327000", + "longitude": "-5.04405000" + }, + { + "id": "35373", + "name": "Medina del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31239000", + "longitude": "-4.91413000" + }, + { + "id": "35374", + "name": "Medinaceli", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17224000", + "longitude": "-2.43476000" + }, + { + "id": "35375", + "name": "Medinilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43967000", + "longitude": "-5.61772000" + }, + { + "id": "35379", + "name": "Megeces", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40828000", + "longitude": "-4.56166000" + }, + { + "id": "35385", + "name": "Melgar de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24344000", + "longitude": "-5.14216000" + }, + { + "id": "35386", + "name": "Melgar de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26806000", + "longitude": "-5.09712000" + }, + { + "id": "35387", + "name": "Melgar de Fernamental", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40445000", + "longitude": "-4.24484000" + }, + { + "id": "35388", + "name": "Melgar de Tera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96618000", + "longitude": "-6.01390000" + }, + { + "id": "35389", + "name": "Melgar de Yuso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25381000", + "longitude": "-4.25394000" + }, + { + "id": "35393", + "name": "Membibre de la Hoz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44958000", + "longitude": "-4.09571000" + }, + { + "id": "35394", + "name": "Membribe de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69123000", + "longitude": "-5.80568000" + }, + { + "id": "35402", + "name": "Meneses de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94142000", + "longitude": "-4.91927000" + }, + { + "id": "35404", + "name": "Mengamuñoz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50006000", + "longitude": "-4.99983000" + }, + { + "id": "35409", + "name": "Mesegar de Corneja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50209000", + "longitude": "-5.30131000" + }, + { + "id": "35458", + "name": "Miño de San Esteban", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53584000", + "longitude": "-3.34579000" + }, + { + "id": "35418", + "name": "Micereces de Tera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98886000", + "longitude": "-5.87133000" + }, + { + "id": "35419", + "name": "Micieces de Ojeda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69078000", + "longitude": "-4.46166000" + }, + { + "id": "35422", + "name": "Mieza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16424000", + "longitude": "-6.69137000" + }, + { + "id": "35425", + "name": "Migueláñez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.12155000", + "longitude": "-4.36410000" + }, + { + "id": "35426", + "name": "Mijares", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29655000", + "longitude": "-4.83651000" + }, + { + "id": "35429", + "name": "Milagros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57500000", + "longitude": "-3.69907000" + }, + { + "id": "35434", + "name": "Milles de la Polvorosa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92339000", + "longitude": "-5.73309000" + }, + { + "id": "35438", + "name": "Mingorría", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75192000", + "longitude": "-4.66583000" + }, + { + "id": "35449", + "name": "Miranda de Azán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88752000", + "longitude": "-5.68182000" + }, + { + "id": "35450", + "name": "Miranda de Ebro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68650000", + "longitude": "-2.94695000" + }, + { + "id": "35451", + "name": "Miranda del Castañar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48448000", + "longitude": "-5.99581000" + }, + { + "id": "35453", + "name": "Miraveche", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67396000", + "longitude": "-3.19947000" + }, + { + "id": "35455", + "name": "Mironcillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55435000", + "longitude": "-4.82449000" + }, + { + "id": "35464", + "name": "Modúbar de la Emparedada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26118000", + "longitude": "-3.65965000" + }, + { + "id": "35466", + "name": "Mogarraz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49264000", + "longitude": "-6.05327000" + }, + { + "id": "35474", + "name": "Mojados", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43237000", + "longitude": "-4.66490000" + }, + { + "id": "35475", + "name": "Molacillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58269000", + "longitude": "-5.66046000" + }, + { + "id": "35476", + "name": "Molezuelas de la Carballeda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08166000", + "longitude": "-6.18723000" + }, + { + "id": "35479", + "name": "Molinaseca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.53829000", + "longitude": "-6.51997000" + }, + { + "id": "35481", + "name": "Molinillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46898000", + "longitude": "-5.94493000" + }, + { + "id": "35483", + "name": "Molinos de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88603000", + "longitude": "-2.78682000" + }, + { + "id": "35491", + "name": "Mombeltrán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25987000", + "longitude": "-5.01749000" + }, + { + "id": "35492", + "name": "Momblona", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44420000", + "longitude": "-2.34660000" + }, + { + "id": "35493", + "name": "Mombuey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02283000", + "longitude": "-6.33027000" + }, + { + "id": "35498", + "name": "Monasterio de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05180000", + "longitude": "-3.19314000" + }, + { + "id": "35496", + "name": "Monasterio de Rodilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45775000", + "longitude": "-3.46965000" + }, + { + "id": "35497", + "name": "Monasterio de Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23015000", + "longitude": "-5.18095000" + }, + { + "id": "35500", + "name": "Moncalvillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95413000", + "longitude": "-3.19886000" + }, + { + "id": "35511", + "name": "Monfarracinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55468000", + "longitude": "-5.70795000" + }, + { + "id": "35515", + "name": "Monforte de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48264000", + "longitude": "-6.05671000" + }, + { + "id": "35519", + "name": "Monleón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58192000", + "longitude": "-5.84312000" + }, + { + "id": "35518", + "name": "Monleras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18704000", + "longitude": "-6.22622000" + }, + { + "id": "35525", + "name": "Monsagro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50343000", + "longitude": "-6.27110000" + }, + { + "id": "35526", + "name": "Monsalupe", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76953000", + "longitude": "-4.78131000" + }, + { + "id": "35535", + "name": "Montamarta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64724000", + "longitude": "-5.80402000" + }, + { + "id": "35542", + "name": "Monteagudo de las Vicarías", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36485000", + "longitude": "-2.16960000" + }, + { + "id": "35552", + "name": "Montejo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63246000", + "longitude": "-5.62287000" + }, + { + "id": "35553", + "name": "Montejo de Arévalo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14027000", + "longitude": "-4.66414000" + }, + { + "id": "35556", + "name": "Montejo de la Vega de la Serrezuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55032000", + "longitude": "-3.65406000" + }, + { + "id": "35554", + "name": "Montejo de Tiermes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36838000", + "longitude": "-3.20016000" + }, + { + "id": "35559", + "name": "Montemayor de Pililla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50874000", + "longitude": "-4.45745000" + }, + { + "id": "35560", + "name": "Montemayor del Río", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34836000", + "longitude": "-5.89427000" + }, + { + "id": "35562", + "name": "Montenegro de Cameros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08924000", + "longitude": "-2.75406000" + }, + { + "id": "35566", + "name": "Monterrubio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84914000", + "longitude": "-4.35001000" + }, + { + "id": "35567", + "name": "Monterrubio de Armuña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02651000", + "longitude": "-5.64389000" + }, + { + "id": "35569", + "name": "Monterrubio de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75592000", + "longitude": "-5.69329000" + }, + { + "id": "35581", + "name": "Montorio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58469000", + "longitude": "-3.77724000" + }, + { + "id": "35591", + "name": "Monzón de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11604000", + "longitude": "-4.49283000" + }, + { + "id": "35595", + "name": "Moradillo de Roa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55164000", + "longitude": "-3.79118000" + }, + { + "id": "35599", + "name": "Moral de la Reina", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98611000", + "longitude": "-5.07208000" + }, + { + "id": "35598", + "name": "Moral de Sayago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47019000", + "longitude": "-6.10060000" + }, + { + "id": "35605", + "name": "Moraleja de las Panaderas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27636000", + "longitude": "-4.82521000" + }, + { + "id": "35603", + "name": "Moraleja de Matacabras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10732000", + "longitude": "-4.95717000" + }, + { + "id": "35604", + "name": "Moraleja de Sayago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16916000", + "longitude": "-6.00369000" + }, + { + "id": "35606", + "name": "Moraleja del Vino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46385000", + "longitude": "-5.65631000" + }, + { + "id": "35607", + "name": "Morales de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86068000", + "longitude": "-5.17252000" + }, + { + "id": "35608", + "name": "Morales de Toro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53737000", + "longitude": "-5.30642000" + }, + { + "id": "35609", + "name": "Morales de Valverde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93643000", + "longitude": "-5.89255000" + }, + { + "id": "35610", + "name": "Morales del Vino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44736000", + "longitude": "-5.73070000" + }, + { + "id": "35611", + "name": "Moralina", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49001000", + "longitude": "-6.13670000" + }, + { + "id": "35613", + "name": "Morasverdes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60019000", + "longitude": "-6.27503000" + }, + { + "id": "35620", + "name": "Moratinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36191000", + "longitude": "-4.92831000" + }, + { + "id": "35635", + "name": "Morón de Almazán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41361000", + "longitude": "-2.41317000" + }, + { + "id": "35628", + "name": "Moreruela de los Infanzones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63118000", + "longitude": "-5.70614000" + }, + { + "id": "35627", + "name": "Moreruela de Tábara", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79588000", + "longitude": "-5.86849000" + }, + { + "id": "35630", + "name": "Morille", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80693000", + "longitude": "-5.69833000" + }, + { + "id": "35631", + "name": "Moriscos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00818000", + "longitude": "-5.58184000" + }, + { + "id": "35632", + "name": "Moronta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97688000", + "longitude": "-6.43103000" + }, + { + "id": "35642", + "name": "Mota del Marqués", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63247000", + "longitude": "-5.17681000" + }, + { + "id": "35651", + "name": "Mozárbez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85652000", + "longitude": "-5.65144000" + }, + { + "id": "35649", + "name": "Mozoncillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14539000", + "longitude": "-4.18753000" + }, + { + "id": "35692", + "name": "Muñana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59042000", + "longitude": "-5.01447000" + }, + { + "id": "35693", + "name": "Muñico", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70678000", + "longitude": "-5.02717000" + }, + { + "id": "35694", + "name": "Muñogalindo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60324000", + "longitude": "-4.89895000" + }, + { + "id": "35695", + "name": "Muñogrande", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82181000", + "longitude": "-4.92223000" + }, + { + "id": "35696", + "name": "Muñomer del Peco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85878000", + "longitude": "-4.87992000" + }, + { + "id": "35697", + "name": "Muñopedro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88804000", + "longitude": "-4.47213000" + }, + { + "id": "35698", + "name": "Muñopepe", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63408000", + "longitude": "-4.81876000" + }, + { + "id": "35699", + "name": "Muñosancho", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92097000", + "longitude": "-5.03559000" + }, + { + "id": "35700", + "name": "Muñotello", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54236000", + "longitude": "-5.04187000" + }, + { + "id": "35701", + "name": "Muñoveros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17234000", + "longitude": "-3.95161000" + }, + { + "id": "35652", + "name": "Mucientes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74278000", + "longitude": "-4.76191000" + }, + { + "id": "35654", + "name": "Mudá", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.87530000", + "longitude": "-4.39426000" + }, + { + "id": "35656", + "name": "Muelas de los Caballeros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12843000", + "longitude": "-6.33719000" + }, + { + "id": "35657", + "name": "Muga de Sayago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38779000", + "longitude": "-6.19777000" + }, + { + "id": "35674", + "name": "Murias de Paredes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.85027000", + "longitude": "-6.19164000" + }, + { + "id": "35676", + "name": "Muriel de la Fuente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72320000", + "longitude": "-2.86000000" + }, + { + "id": "35675", + "name": "Muriel Viejo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78261000", + "longitude": "-2.91522000" + }, + { + "id": "35709", + "name": "Nafría de Ucero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72273000", + "longitude": "-3.09499000" + }, + { + "id": "35714", + "name": "Narrillos del Álamo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56673000", + "longitude": "-5.46584000" + }, + { + "id": "35713", + "name": "Narrillos del Rebollar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66488000", + "longitude": "-4.96577000" + }, + { + "id": "35715", + "name": "Narros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84923000", + "longitude": "-2.29474000" + }, + { + "id": "35716", + "name": "Narros de Matalayegua", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.69880000", + "longitude": "-5.92658000" + }, + { + "id": "35717", + "name": "Narros de Saldueña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87268000", + "longitude": "-4.86909000" + }, + { + "id": "35718", + "name": "Narros del Castillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85869000", + "longitude": "-5.06010000" + }, + { + "id": "35719", + "name": "Narros del Puerto", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54131000", + "longitude": "-4.99291000" + }, + { + "id": "35721", + "name": "Nava de Arévalo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97803000", + "longitude": "-4.77573000" + }, + { + "id": "35722", + "name": "Nava de Béjar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47518000", + "longitude": "-5.67856000" + }, + { + "id": "35723", + "name": "Nava de Francia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.53572000", + "longitude": "-6.11628000" + }, + { + "id": "35726", + "name": "Nava de la Asunción", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15586000", + "longitude": "-4.48751000" + }, + { + "id": "35724", + "name": "Nava de Roa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61326000", + "longitude": "-3.96442000" + }, + { + "id": "35725", + "name": "Nava de Sotrobal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89039000", + "longitude": "-5.28562000" + }, + { + "id": "35727", + "name": "Nava del Barco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29321000", + "longitude": "-5.54022000" + }, + { + "id": "35728", + "name": "Nava del Rey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33036000", + "longitude": "-5.08095000" + }, + { + "id": "35729", + "name": "Navacarros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.39776000", + "longitude": "-5.71425000" + }, + { + "id": "35730", + "name": "Navacepedilla de Corneja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48602000", + "longitude": "-5.18380000" + }, + { + "id": "35733", + "name": "Navadijos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42524000", + "longitude": "-5.08285000" + }, + { + "id": "35734", + "name": "Navaescurial", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47163000", + "longitude": "-5.27756000" + }, + { + "id": "35735", + "name": "Navafría", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05514000", + "longitude": "-3.82478000" + }, + { + "id": "35737", + "name": "Navahondilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32510000", + "longitude": "-4.49661000" + }, + { + "id": "35741", + "name": "Navalacruz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43993000", + "longitude": "-4.93122000" + }, + { + "id": "35746", + "name": "Navaleno", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83830000", + "longitude": "-3.00418000" + }, + { + "id": "35747", + "name": "Navales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78857000", + "longitude": "-5.47863000" + }, + { + "id": "35748", + "name": "Navalilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34146000", + "longitude": "-3.93211000" + }, + { + "id": "35749", + "name": "Navalmanzano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21594000", + "longitude": "-4.25631000" + }, + { + "id": "35750", + "name": "Navalmoral", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46028000", + "longitude": "-4.76859000" + }, + { + "id": "35751", + "name": "Navalmoral de Béjar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42264000", + "longitude": "-5.78310000" + }, + { + "id": "35754", + "name": "Navalosa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40212000", + "longitude": "-4.92999000" + }, + { + "id": "35755", + "name": "Navalperal de Pinares", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59398000", + "longitude": "-4.41149000" + }, + { + "id": "35756", + "name": "Navalperal de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35280000", + "longitude": "-5.30084000" + }, + { + "id": "35759", + "name": "Navaluenga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41123000", + "longitude": "-4.70897000" + }, + { + "id": "35762", + "name": "Navamorales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47618000", + "longitude": "-5.47893000" + }, + { + "id": "35764", + "name": "Navaquesera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42558000", + "longitude": "-4.91108000" + }, + { + "id": "35767", + "name": "Navares de Ayuso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37447000", + "longitude": "-3.70745000" + }, + { + "id": "35768", + "name": "Navares de Enmedio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38096000", + "longitude": "-3.72283000" + }, + { + "id": "35769", + "name": "Navares de las Cuevas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41431000", + "longitude": "-3.75076000" + }, + { + "id": "35771", + "name": "Navarredonda de Gredos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36136000", + "longitude": "-5.13268000" + }, + { + "id": "35772", + "name": "Navarredonda de la Rinconada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60657000", + "longitude": "-6.01169000" + }, + { + "id": "35773", + "name": "Navarredondilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45416000", + "longitude": "-4.82199000" + }, + { + "id": "35774", + "name": "Navarrevisca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36417000", + "longitude": "-4.89352000" + }, + { + "id": "35777", + "name": "Navas de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68090000", + "longitude": "-3.32698000" + }, + { + "id": "35780", + "name": "Navas de Oro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19627000", + "longitude": "-4.43754000" + }, + { + "id": "35785", + "name": "Navasfrías", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29679000", + "longitude": "-6.81975000" + }, + { + "id": "35787", + "name": "Navatalgordo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41520000", + "longitude": "-4.87155000" + }, + { + "id": "35788", + "name": "Navatejares", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33602000", + "longitude": "-5.53220000" + }, + { + "id": "35791", + "name": "Navianos de Valverde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95319000", + "longitude": "-5.81781000" + }, + { + "id": "35795", + "name": "Nebreda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96881000", + "longitude": "-3.63430000" + }, + { + "id": "35798", + "name": "Negrilla de Palencia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09185000", + "longitude": "-5.59165000" + }, + { + "id": "35799", + "name": "Neila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06016000", + "longitude": "-2.99691000" + }, + { + "id": "35800", + "name": "Neila de San Miguel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42372000", + "longitude": "-5.65090000" + }, + { + "id": "35801", + "name": "Nepas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52639000", + "longitude": "-2.39866000" + }, + { + "id": "35806", + "name": "Nieva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08191000", + "longitude": "-4.42501000" + }, + { + "id": "35811", + "name": "Niharra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58945000", + "longitude": "-4.83895000" + }, + { + "id": "35815", + "name": "Nogal de las Huertas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39255000", + "longitude": "-4.64156000" + }, + { + "id": "35821", + "name": "Nolay", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52721000", + "longitude": "-2.35061000" + }, + { + "id": "35829", + "name": "Noviercas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71194000", + "longitude": "-2.03433000" + }, + { + "id": "35833", + "name": "Nueva Villa de las Torres", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26762000", + "longitude": "-5.05685000" + }, + { + "id": "35988", + "name": "Oña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73400000", + "longitude": "-3.41459000" + }, + { + "id": "35861", + "name": "Oencia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54758000", + "longitude": "-6.96859000" + }, + { + "id": "35869", + "name": "Ojos-Albos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.70596000", + "longitude": "-4.51633000" + }, + { + "id": "35875", + "name": "Olea de Boedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60990000", + "longitude": "-4.45040000" + }, + { + "id": "35889", + "name": "Olivares de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63755000", + "longitude": "-4.36547000" + }, + { + "id": "35900", + "name": "Olmedillo de Roa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78362000", + "longitude": "-3.93419000" + }, + { + "id": "35901", + "name": "Olmedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28706000", + "longitude": "-4.68878000" + }, + { + "id": "35902", + "name": "Olmedo de Camaces", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87967000", + "longitude": "-6.62360000" + }, + { + "id": "35903", + "name": "Olmillos de Castro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73179000", + "longitude": "-5.96791000" + }, + { + "id": "35904", + "name": "Olmillos de Muñó", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20322000", + "longitude": "-3.93911000" + }, + { + "id": "35905", + "name": "Olmos de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68815000", + "longitude": "-4.52255000" + }, + { + "id": "35906", + "name": "Olmos de Ojeda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.72274000", + "longitude": "-4.42446000" + }, + { + "id": "35907", + "name": "Olmos de Peñafiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57142000", + "longitude": "-4.04316000" + }, + { + "id": "35910", + "name": "Olombrada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41492000", + "longitude": "-4.16071000" + }, + { + "id": "35916", + "name": "Olvega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.77901000", + "longitude": "-1.98391000" + }, + { + "id": "35921", + "name": "Oncala", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97021000", + "longitude": "-2.31493000" + }, + { + "id": "35930", + "name": "Onzonilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52435000", + "longitude": "-5.58160000" + }, + { + "id": "35931", + "name": "Oquillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83085000", + "longitude": "-3.70564000" + }, + { + "id": "35934", + "name": "Orbita", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99846000", + "longitude": "-4.64833000" + }, + { + "id": "35962", + "name": "Ortigosa de Pestaño", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08741000", + "longitude": "-4.39516000" + }, + { + "id": "35963", + "name": "Ortigosa del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84182000", + "longitude": "-4.17724000" + }, + { + "id": "35971", + "name": "Oseja de Sajambre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "43.13671000", + "longitude": "-5.03786000" + }, + { + "id": "35972", + "name": "Osornillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37047000", + "longitude": "-4.29153000" + }, + { + "id": "35978", + "name": "Otero de Bodas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93868000", + "longitude": "-6.15024000" + }, + { + "id": "35979", + "name": "Otero de Herreros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82016000", + "longitude": "-4.20990000" + }, + { + "id": "35990", + "name": "Padiernos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62168000", + "longitude": "-4.84523000" + }, + { + "id": "35991", + "name": "Padilla de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40774000", + "longitude": "-4.17652000" + }, + { + "id": "35992", + "name": "Padilla de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43803000", + "longitude": "-4.19094000" + }, + { + "id": "35994", + "name": "Padrones de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70582000", + "longitude": "-3.53296000" + }, + { + "id": "35999", + "name": "Pajarejos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38994000", + "longitude": "-3.58997000" + }, + { + "id": "36000", + "name": "Pajares de Adaja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92398000", + "longitude": "-4.64048000" + }, + { + "id": "36001", + "name": "Pajares de la Laguna", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08754000", + "longitude": "-5.50888000" + }, + { + "id": "36002", + "name": "Pajares de la Lampreana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71551000", + "longitude": "-5.69351000" + }, + { + "id": "36003", + "name": "Pajares de los Oteros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33010000", + "longitude": "-5.47313000" + }, + { + "id": "36006", + "name": "Palacios de Goda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11798000", + "longitude": "-4.78496000" + }, + { + "id": "36008", + "name": "Palacios de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96392000", + "longitude": "-3.12788000" + }, + { + "id": "36009", + "name": "Palacios de la Valduerna", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32773000", + "longitude": "-5.93830000" + }, + { + "id": "36007", + "name": "Palacios de Sanabria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05901000", + "longitude": "-6.52362000" + }, + { + "id": "36010", + "name": "Palacios del Arzobispo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16655000", + "longitude": "-5.88933000" + }, + { + "id": "36011", + "name": "Palacios del Pan", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60242000", + "longitude": "-5.87773000" + }, + { + "id": "36012", + "name": "Palacios del Sil", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.87601000", + "longitude": "-6.43150000" + }, + { + "id": "36013", + "name": "Palaciosrubios", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05238000", + "longitude": "-5.19507000" + }, + { + "id": "36018", + "name": "Palazuelo de Vedija", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92966000", + "longitude": "-5.14534000" + }, + { + "id": "36019", + "name": "Palazuelos de Eresma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93055000", + "longitude": "-4.06071000" + }, + { + "id": "36021", + "name": "Palazuelos de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21162000", + "longitude": "-3.46014000" + }, + { + "id": "36020", + "name": "Palazuelos de Muñó", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19692000", + "longitude": "-3.98984000" + }, + { + "id": "36022", + "name": "Palencia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00955000", + "longitude": "-4.52406000" + }, + { + "id": "36023", + "name": "Palencia de Negrilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09439000", + "longitude": "-5.60168000" + }, + { + "id": "36025", + "name": "Palenzuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09518000", + "longitude": "-4.13039000" + }, + { + "id": "36044", + "name": "Pampliega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20582000", + "longitude": "-3.98666000" + }, + { + "id": "36046", + "name": "Pancorbo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63418000", + "longitude": "-3.11180000" + }, + { + "id": "36051", + "name": "Papatrigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86790000", + "longitude": "-4.83399000" + }, + { + "id": "36056", + "name": "Parada de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98655000", + "longitude": "-5.79332000" + }, + { + "id": "36057", + "name": "Parada de Rubiales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14818000", + "longitude": "-5.43638000" + }, + { + "id": "36060", + "name": "Paradinas de San Juan", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.98325000", + "longitude": "-5.15418000" + }, + { + "id": "36063", + "name": "Pardilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55183000", + "longitude": "-3.71089000" + }, + { + "id": "36066", + "name": "Paredes de Nava", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15367000", + "longitude": "-4.69193000" + }, + { + "id": "36074", + "name": "Pastores", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51508000", + "longitude": "-6.51018000" + }, + { + "id": "36086", + "name": "Payo de Ojeda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.71859000", + "longitude": "-4.47752000" + }, + { + "id": "36482", + "name": "Páramo de Boedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57842000", + "longitude": "-4.40042000" + }, + { + "id": "36483", + "name": "Páramo del Sil", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.82056000", + "longitude": "-6.48747000" + }, + { + "id": "36485", + "name": "Pías", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08333000", + "longitude": "-7.00000000" + }, + { + "id": "36161", + "name": "Peñacaballera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.34353000", + "longitude": "-5.86121000" + }, + { + "id": "36162", + "name": "Peñafiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60165000", + "longitude": "-4.11418000" + }, + { + "id": "36164", + "name": "Peñaflor de Hornija", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71159000", + "longitude": "-4.98333000" + }, + { + "id": "36166", + "name": "Peñalba de Ávila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77266000", + "longitude": "-4.74595000" + }, + { + "id": "36170", + "name": "Peñaparda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.32093000", + "longitude": "-6.66948000" + }, + { + "id": "36171", + "name": "Peñaranda de Bracamonte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90108000", + "longitude": "-5.20026000" + }, + { + "id": "36172", + "name": "Peñaranda de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68849000", + "longitude": "-3.47863000" + }, + { + "id": "36173", + "name": "Peñarandilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88348000", + "longitude": "-5.39360000" + }, + { + "id": "36176", + "name": "Peñausende", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28662000", + "longitude": "-5.86755000" + }, + { + "id": "36089", + "name": "Pedrajas de San Esteban", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34145000", + "longitude": "-4.58225000" + }, + { + "id": "36092", + "name": "Pedraza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13092000", + "longitude": "-3.81116000" + }, + { + "id": "36093", + "name": "Pedraza de Alba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75502000", + "longitude": "-5.37524000" + }, + { + "id": "36094", + "name": "Pedraza de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98419000", + "longitude": "-4.73524000" + }, + { + "id": "36099", + "name": "Pedro Bernardo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.24214000", + "longitude": "-4.90963000" + }, + { + "id": "36104", + "name": "Pedrosa de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71289000", + "longitude": "-3.98804000" + }, + { + "id": "36105", + "name": "Pedrosa de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48159000", + "longitude": "-4.74678000" + }, + { + "id": "36107", + "name": "Pedrosa del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44208000", + "longitude": "-3.97190000" + }, + { + "id": "36106", + "name": "Pedrosa del Príncipe", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24918000", + "longitude": "-4.19849000" + }, + { + "id": "36108", + "name": "Pedrosa del Rey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55617000", + "longitude": "-5.20466000" + }, + { + "id": "36109", + "name": "Pedrosillo de Alba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82277000", + "longitude": "-5.39506000" + }, + { + "id": "36110", + "name": "Pedrosillo de los Aires", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71524000", + "longitude": "-5.70511000" + }, + { + "id": "36111", + "name": "Pedrosillo el Ralo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06305000", + "longitude": "-5.54794000" + }, + { + "id": "36117", + "name": "Peguerinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62620000", + "longitude": "-4.23154000" + }, + { + "id": "36118", + "name": "Pelabravo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93658000", + "longitude": "-5.57916000" + }, + { + "id": "36120", + "name": "Pelarrodríguez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88723000", + "longitude": "-6.21271000" + }, + { + "id": "36121", + "name": "Pelayos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64985000", + "longitude": "-5.57580000" + }, + { + "id": "36123", + "name": "Pelayos del Arroyo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05086000", + "longitude": "-3.94104000" + }, + { + "id": "36124", + "name": "Peleagonzalo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48175000", + "longitude": "-5.48304000" + }, + { + "id": "36125", + "name": "Peleas de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39260000", + "longitude": "-5.68966000" + }, + { + "id": "36129", + "name": "Peque", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07297000", + "longitude": "-6.27489000" + }, + { + "id": "36131", + "name": "Peral de Arlanza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07612000", + "longitude": "-4.07733000" + }, + { + "id": "36135", + "name": "Peralejos de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00469000", + "longitude": "-6.36238000" + }, + { + "id": "36136", + "name": "Peralejos de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00410000", + "longitude": "-6.33362000" + }, + { + "id": "36138", + "name": "Perales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19398000", + "longitude": "-4.58105000" + }, + { + "id": "36145", + "name": "Peranzanes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.87725000", + "longitude": "-6.63383000" + }, + { + "id": "36148", + "name": "Pereruela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41650000", + "longitude": "-5.87812000" + }, + { + "id": "36150", + "name": "Perilla de Castro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72540000", + "longitude": "-5.87636000" + }, + { + "id": "36151", + "name": "Peromingo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46386000", + "longitude": "-5.77238000" + }, + { + "id": "36152", + "name": "Perosillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.39294000", + "longitude": "-4.14115000" + }, + { + "id": "36226", + "name": "Piérnigas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.59030000", + "longitude": "-3.41337000" + }, + { + "id": "36227", + "name": "Piña de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21326000", + "longitude": "-4.43657000" + }, + { + "id": "36228", + "name": "Piña de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72843000", + "longitude": "-4.42823000" + }, + { + "id": "36230", + "name": "Piñel de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67459000", + "longitude": "-4.14655000" + }, + { + "id": "36231", + "name": "Piñel de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69923000", + "longitude": "-4.12808000" + }, + { + "id": "36181", + "name": "Piedrahita de Castro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68089000", + "longitude": "-5.72886000" + }, + { + "id": "36182", + "name": "Piedralaves", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.31721000", + "longitude": "-4.70025000" + }, + { + "id": "36194", + "name": "Pinarejos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25950000", + "longitude": "-4.29364000" + }, + { + "id": "36195", + "name": "Pinarnegrillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19098000", + "longitude": "-4.20967000" + }, + { + "id": "36198", + "name": "Pineda de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21560000", + "longitude": "-3.29690000" + }, + { + "id": "36199", + "name": "Pinedas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44493000", + "longitude": "-5.96025000" + }, + { + "id": "36204", + "name": "Pinilla de los Barruecos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91791000", + "longitude": "-3.30371000" + }, + { + "id": "36205", + "name": "Pinilla de los Moros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06815000", + "longitude": "-3.32706000" + }, + { + "id": "36203", + "name": "Pinilla de Toro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62783000", + "longitude": "-5.36414000" + }, + { + "id": "36206", + "name": "Pinilla del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71691000", + "longitude": "-2.08350000" + }, + { + "id": "36209", + "name": "Pino del Río", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64504000", + "longitude": "-4.80795000" + }, + { + "id": "36222", + "name": "Pitiegua", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06210000", + "longitude": "-5.46647000" + }, + { + "id": "36225", + "name": "Pizarral", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61450000", + "longitude": "-5.65238000" + }, + { + "id": "36247", + "name": "Población de Arroyo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33675000", + "longitude": "-4.87398000" + }, + { + "id": "36248", + "name": "Población de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26994000", + "longitude": "-4.44744000" + }, + { + "id": "36249", + "name": "Población de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79298000", + "longitude": "-4.42874000" + }, + { + "id": "36250", + "name": "Pobladura de Pelayo García", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30602000", + "longitude": "-5.68560000" + }, + { + "id": "36251", + "name": "Pobladura de Valderaduey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70009000", + "longitude": "-5.54189000" + }, + { + "id": "36252", + "name": "Pobladura del Valle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10257000", + "longitude": "-5.73333000" + }, + { + "id": "36258", + "name": "Polentinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.93932000", + "longitude": "-4.52887000" + }, + { + "id": "36263", + "name": "Pollos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44406000", + "longitude": "-5.12491000" + }, + { + "id": "36268", + "name": "Pomar de Valdivia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77437000", + "longitude": "-4.16756000" + }, + { + "id": "36270", + "name": "Ponferrada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54664000", + "longitude": "-6.59619000" + }, + { + "id": "36291", + "name": "Portillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47867000", + "longitude": "-4.58967000" + }, + { + "id": "36292", + "name": "Portillo de Soria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63504000", + "longitude": "-2.12142000" + }, + { + "id": "36294", + "name": "Porto", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16737000", + "longitude": "-6.89934000" + }, + { + "id": "36302", + "name": "Posada de Valdeón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "43.15154000", + "longitude": "-4.92102000" + }, + { + "id": "36306", + "name": "Poveda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56799000", + "longitude": "-5.07909000" + }, + { + "id": "36308", + "name": "Poveda de las Cintas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04596000", + "longitude": "-5.26019000" + }, + { + "id": "36310", + "name": "Poyales del Hoyo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.17254000", + "longitude": "-5.16597000" + }, + { + "id": "36311", + "name": "Poza de la Sal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66542000", + "longitude": "-3.50140000" + }, + { + "id": "36312", + "name": "Poza de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57823000", + "longitude": "-4.79845000" + }, + { + "id": "36313", + "name": "Pozal de Gallinas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31831000", + "longitude": "-4.83936000" + }, + { + "id": "36314", + "name": "Pozalmuro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.77449000", + "longitude": "-2.10215000" + }, + { + "id": "36315", + "name": "Pozanco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80095000", + "longitude": "-4.66772000" + }, + { + "id": "36319", + "name": "Pozo de Urama", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25438000", + "longitude": "-4.89389000" + }, + { + "id": "36322", + "name": "Pozoantiguo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59730000", + "longitude": "-5.43660000" + }, + { + "id": "36327", + "name": "Pozos de Hinojo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91303000", + "longitude": "-6.41144000" + }, + { + "id": "36336", + "name": "Pozuelo de la Orden", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82138000", + "longitude": "-5.25891000" + }, + { + "id": "36334", + "name": "Pozuelo de Tábara", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78502000", + "longitude": "-5.89455000" + }, + { + "id": "36337", + "name": "Pozuelo del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17101000", + "longitude": "-5.76813000" + }, + { + "id": "36340", + "name": "Pradales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45555000", + "longitude": "-3.70753000" + }, + { + "id": "36344", + "name": "Prado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92077000", + "longitude": "-5.42027000" + }, + { + "id": "36345", + "name": "Prado de la Guzpeña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.78309000", + "longitude": "-5.02554000" + }, + { + "id": "36347", + "name": "Pradoluengo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32484000", + "longitude": "-3.20284000" + }, + { + "id": "36349", + "name": "Pradosegar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55020000", + "longitude": "-5.07015000" + }, + { + "id": "36402", + "name": "Prádanos de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50264000", + "longitude": "-3.34752000" + }, + { + "id": "36403", + "name": "Prádanos de Ojeda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68156000", + "longitude": "-4.34659000" + }, + { + "id": "36404", + "name": "Prádena", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13911000", + "longitude": "-3.68823000" + }, + { + "id": "36351", + "name": "Presencio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18656000", + "longitude": "-3.90135000" + }, + { + "id": "36352", + "name": "Priaranza del Bierzo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50978000", + "longitude": "-6.67017000" + }, + { + "id": "36356", + "name": "Prioro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.89481000", + "longitude": "-4.96349000" + }, + { + "id": "36394", + "name": "Provincia de Ávila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58333000", + "longitude": "-5.00000000" + }, + { + "id": "36364", + "name": "Provincia de Burgos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33939000", + "longitude": "-3.70789000" + }, + { + "id": "36377", + "name": "Provincia de León", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66667000", + "longitude": "-6.00000000" + }, + { + "id": "36383", + "name": "Provincia de Palencia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41667000", + "longitude": "-4.50000000" + }, + { + "id": "36385", + "name": "Provincia de Salamanca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83333000", + "longitude": "-6.00000000" + }, + { + "id": "36387", + "name": "Provincia de Segovia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16667000", + "longitude": "-4.00000000" + }, + { + "id": "36389", + "name": "Provincia de Soria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66667000", + "longitude": "-2.66667000" + }, + { + "id": "36391", + "name": "Provincia de Valladolid", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58333000", + "longitude": "-4.66667000" + }, + { + "id": "36392", + "name": "Provincia de Zamora", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75000000", + "longitude": "-6.00000000" + }, + { + "id": "36413", + "name": "Puebla de Azaba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44732000", + "longitude": "-6.74616000" + }, + { + "id": "36418", + "name": "Puebla de Lillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "43.00691000", + "longitude": "-5.27387000" + }, + { + "id": "36420", + "name": "Puebla de Pedraza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20557000", + "longitude": "-3.91378000" + }, + { + "id": "36421", + "name": "Puebla de San Medel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51073000", + "longitude": "-5.73673000" + }, + { + "id": "36423", + "name": "Puebla de Sanabria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05401000", + "longitude": "-6.63350000" + }, + { + "id": "36425", + "name": "Puebla de Yeltes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62528000", + "longitude": "-6.18150000" + }, + { + "id": "36432", + "name": "Pueblica de Valverde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91843000", + "longitude": "-5.89975000" + }, + { + "id": "36435", + "name": "Puente de Domingo Flórez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41166000", + "longitude": "-6.82077000" + }, + { + "id": "36438", + "name": "Puente del Congosto", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49041000", + "longitude": "-5.52628000" + }, + { + "id": "36442", + "name": "Puentedura", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04134000", + "longitude": "-3.58227000" + }, + { + "id": "36443", + "name": "Puertas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09681000", + "longitude": "-6.28752000" + }, + { + "id": "36444", + "name": "Puerto Castilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.28800000", + "longitude": "-5.62366000" + }, + { + "id": "36451", + "name": "Puerto de Béjar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35052000", + "longitude": "-5.83756000" + }, + { + "id": "36449", + "name": "Puerto Seguro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82718000", + "longitude": "-6.76109000" + }, + { + "id": "36474", + "name": "Puras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18333000", + "longitude": "-4.65000000" + }, + { + "id": "36493", + "name": "Quemada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70073000", + "longitude": "-3.57476000" + }, + { + "id": "36503", + "name": "Quintana del Castillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65987000", + "longitude": "-6.04978000" + }, + { + "id": "36504", + "name": "Quintana del Marco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20670000", + "longitude": "-5.85030000" + }, + { + "id": "36505", + "name": "Quintana del Pidio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75886000", + "longitude": "-3.75121000" + }, + { + "id": "36506", + "name": "Quintana del Puente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08471000", + "longitude": "-4.20649000" + }, + { + "id": "36501", + "name": "Quintana Redonda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63905000", + "longitude": "-2.61449000" + }, + { + "id": "36507", + "name": "Quintana y Congosto", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25585000", + "longitude": "-6.03636000" + }, + { + "id": "36516", + "name": "Quintanaélez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66921000", + "longitude": "-3.29877000" + }, + { + "id": "36508", + "name": "Quintanabureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58665000", + "longitude": "-3.36685000" + }, + { + "id": "36509", + "name": "Quintanaortuño", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45000000", + "longitude": "-3.68333000" + }, + { + "id": "36510", + "name": "Quintanapalla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40914000", + "longitude": "-3.53296000" + }, + { + "id": "36512", + "name": "Quintanar de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98288000", + "longitude": "-3.03765000" + }, + { + "id": "36514", + "name": "Quintanas de Gormaz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50926000", + "longitude": "-2.97631000" + }, + { + "id": "36515", + "name": "Quintanavides", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48084000", + "longitude": "-3.42449000" + }, + { + "id": "36517", + "name": "Quintanilla de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61974000", + "longitude": "-4.21774000" + }, + { + "id": "36522", + "name": "Quintanilla de la Mata", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98855000", + "longitude": "-3.76756000" + }, + { + "id": "36519", + "name": "Quintanilla de Onésimo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62490000", + "longitude": "-4.36291000" + }, + { + "id": "36518", + "name": "Quintanilla de Onsoña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46937000", + "longitude": "-4.66385000" + }, + { + "id": "36520", + "name": "Quintanilla de Trigueros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85449000", + "longitude": "-4.65931000" + }, + { + "id": "36521", + "name": "Quintanilla de Urz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03290000", + "longitude": "-5.84866000" + }, + { + "id": "36523", + "name": "Quintanilla del Coco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98333000", + "longitude": "-3.51667000" + }, + { + "id": "36524", + "name": "Quintanilla del Molar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98935000", + "longitude": "-5.44928000" + }, + { + "id": "36525", + "name": "Quintanilla del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86812000", + "longitude": "-5.34928000" + }, + { + "id": "36526", + "name": "Quintanilla del Olmo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.90561000", + "longitude": "-5.40726000" + }, + { + "id": "36530", + "name": "Quiruelas de Vidriales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01762000", + "longitude": "-5.82947000" + }, + { + "id": "36533", + "name": "Rabanales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74287000", + "longitude": "-6.27674000" + }, + { + "id": "36535", + "name": "Rabanera del Pinar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89375000", + "longitude": "-3.19665000" + }, + { + "id": "36536", + "name": "Rabé de las Calzadas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34065000", + "longitude": "-3.83414000" + }, + { + "id": "36545", + "name": "Ramiro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22845000", + "longitude": "-4.78608000" + }, + { + "id": "36546", + "name": "Rapariegos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09498000", + "longitude": "-4.65271000" + }, + { + "id": "36550", + "name": "Rasueros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02344000", + "longitude": "-5.07377000" + }, + { + "id": "36708", + "name": "Rábano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53314000", + "longitude": "-4.06214000" + }, + { + "id": "36709", + "name": "Rábano de Aliste", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74430000", + "longitude": "-6.43302000" + }, + { + "id": "36710", + "name": "Rábanos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31971000", + "longitude": "-3.27029000" + }, + { + "id": "36713", + "name": "Rágama", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99768000", + "longitude": "-5.12724000" + }, + { + "id": "36715", + "name": "Ríofrío de Aliste", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81724000", + "longitude": "-6.17741000" + }, + { + "id": "36554", + "name": "Rebolledo de la Torre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68931000", + "longitude": "-4.22693000" + }, + { + "id": "36555", + "name": "Rebollo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19318000", + "longitude": "-3.85771000" + }, + { + "id": "36558", + "name": "Recuerda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47408000", + "longitude": "-2.99460000" + }, + { + "id": "36559", + "name": "Redecilla del Camino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43804000", + "longitude": "-3.06547000" + }, + { + "id": "36560", + "name": "Redecilla del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46675000", + "longitude": "-3.11531000" + }, + { + "id": "36565", + "name": "Regueras de Arriba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29414000", + "longitude": "-5.85958000" + }, + { + "id": "36566", + "name": "Regumiel de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95623000", + "longitude": "-2.98843000" + }, + { + "id": "36569", + "name": "Reinoso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50915000", + "longitude": "-3.38466000" + }, + { + "id": "36570", + "name": "Reinoso de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97624000", + "longitude": "-4.38337000" + }, + { + "id": "36572", + "name": "Rello", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33297000", + "longitude": "-2.74925000" + }, + { + "id": "36574", + "name": "Remondo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34100000", + "longitude": "-4.48390000" + }, + { + "id": "36577", + "name": "Renedo de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45348000", + "longitude": "-4.70298000" + }, + { + "id": "36579", + "name": "Renieblas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82009000", + "longitude": "-2.37236000" + }, + { + "id": "36582", + "name": "Requena de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30796000", + "longitude": "-4.34304000" + }, + { + "id": "36583", + "name": "Respenda de la Peña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.76512000", + "longitude": "-4.68540000" + }, + { + "id": "36588", + "name": "Retortillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80132000", + "longitude": "-6.35951000" + }, + { + "id": "36589", + "name": "Retortillo de Soria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.31092000", + "longitude": "-2.98228000" + }, + { + "id": "36590", + "name": "Retuerta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02945000", + "longitude": "-3.50679000" + }, + { + "id": "36593", + "name": "Revellinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88982000", + "longitude": "-5.56871000" + }, + { + "id": "36594", + "name": "Revenga de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28401000", + "longitude": "-4.48218000" + }, + { + "id": "36595", + "name": "Revilla de Collazos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62960000", + "longitude": "-4.50343000" + }, + { + "id": "36596", + "name": "Revilla del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21081000", + "longitude": "-3.54289000" + }, + { + "id": "36597", + "name": "Revillarruz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23006000", + "longitude": "-3.65246000" + }, + { + "id": "36598", + "name": "Reyero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.94882000", + "longitude": "-5.19892000" + }, + { + "id": "36599", + "name": "Rezmondo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51565000", + "longitude": "-4.23877000" + }, + { + "id": "36600", + "name": "Reznos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59090000", + "longitude": "-2.02779000" + }, + { + "id": "36605", + "name": "Riaño", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.97705000", + "longitude": "-5.00352000" + }, + { + "id": "36602", + "name": "Riaguas de San Bartolomé", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.42640000", + "longitude": "-3.48893000" + }, + { + "id": "36604", + "name": "Riaza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27826000", + "longitude": "-3.47787000" + }, + { + "id": "36612", + "name": "Ribas de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15249000", + "longitude": "-4.51649000" + }, + { + "id": "36616", + "name": "Riberos de la Cueza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27881000", + "longitude": "-4.72503000" + }, + { + "id": "36619", + "name": "Ribota", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36477000", + "longitude": "-3.42964000" + }, + { + "id": "36622", + "name": "Riego de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39138000", + "longitude": "-5.98102000" + }, + { + "id": "36628", + "name": "Riocavado de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15209000", + "longitude": "-3.19759000" + }, + { + "id": "36640", + "name": "Rivilla de Barajas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90210000", + "longitude": "-4.98836000" + }, + { + "id": "36643", + "name": "Roa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69699000", + "longitude": "-3.92782000" + }, + { + "id": "36644", + "name": "Roales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55170000", + "longitude": "-5.77211000" + }, + { + "id": "36645", + "name": "Robladillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60838000", + "longitude": "-4.90992000" + }, + { + "id": "36646", + "name": "Robleda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38469000", + "longitude": "-6.60726000" + }, + { + "id": "36647", + "name": "Robleda-Cervantes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08246000", + "longitude": "-6.59414000" + }, + { + "id": "36657", + "name": "Robliza de Cojos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86766000", + "longitude": "-5.97786000" + }, + { + "id": "36662", + "name": "Roda de Eresma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02852000", + "longitude": "-4.18130000" + }, + { + "id": "36666", + "name": "Rojas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57781000", + "longitude": "-3.44195000" + }, + { + "id": "36667", + "name": "Rollamienta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92592000", + "longitude": "-2.53125000" + }, + { + "id": "36668", + "name": "Rollán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96230000", + "longitude": "-5.91753000" + }, + { + "id": "36674", + "name": "Roperuelos del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.23780000", + "longitude": "-5.78235000" + }, + { + "id": "36682", + "name": "Roturas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66791000", + "longitude": "-4.11901000" + }, + { + "id": "36684", + "name": "Royuela de Río Franco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.00217000", + "longitude": "-3.95547000" + }, + { + "id": "36695", + "name": "Rubí de Bracamonte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21421000", + "longitude": "-4.92491000" + }, + { + "id": "36688", + "name": "Rubena", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38746000", + "longitude": "-3.57485000" + }, + { + "id": "36693", + "name": "Rublacedo de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55332000", + "longitude": "-3.50236000" + }, + { + "id": "36696", + "name": "Rucandio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.75111000", + "longitude": "-3.54166000" + }, + { + "id": "36697", + "name": "Rueda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41231000", + "longitude": "-4.95885000" + }, + { + "id": "36701", + "name": "Ruesga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86413000", + "longitude": "-4.52942000" + }, + { + "id": "36723", + "name": "Sabero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.83593000", + "longitude": "-5.14875000" + }, + { + "id": "36731", + "name": "Sacramenia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49419000", + "longitude": "-3.96210000" + }, + { + "id": "36734", + "name": "Saelices de Mayorga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21206000", + "longitude": "-5.20534000" + }, + { + "id": "36736", + "name": "Saelices el Chico", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66998000", + "longitude": "-6.63271000" + }, + { + "id": "36741", + "name": "Sahagún", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37085000", + "longitude": "-5.02942000" + }, + { + "id": "36744", + "name": "Salamanca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96882000", + "longitude": "-5.66388000" + }, + { + "id": "36750", + "name": "Salas de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69190000", + "longitude": "-3.47359000" + }, + { + "id": "36751", + "name": "Salas de los Infantes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02242000", + "longitude": "-3.28631000" + }, + { + "id": "36752", + "name": "Salce", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26996000", + "longitude": "-6.21875000" + }, + { + "id": "36754", + "name": "Saldaña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52146000", + "longitude": "-4.73605000" + }, + { + "id": "36755", + "name": "Saldaña de Burgos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25838000", + "longitude": "-3.69707000" + }, + { + "id": "36756", + "name": "Saldeana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02068000", + "longitude": "-6.64015000" + }, + { + "id": "36757", + "name": "Salduero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88946000", + "longitude": "-2.79670000" + }, + { + "id": "36765", + "name": "Salinas de Pisuerga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.85046000", + "longitude": "-4.37783000" + }, + { + "id": "36767", + "name": "Salinillas de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55243000", + "longitude": "-3.38753000" + }, + { + "id": "36771", + "name": "Salmoral", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80137000", + "longitude": "-5.21910000" + }, + { + "id": "36772", + "name": "Salobral", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61179000", + "longitude": "-4.81013000" + }, + { + "id": "36781", + "name": "Salvadiós", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87836000", + "longitude": "-5.09629000" + }, + { + "id": "36782", + "name": "Salvador de Zapardiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11696000", + "longitude": "-4.87486000" + }, + { + "id": "36787", + "name": "Salvatierra de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.59007000", + "longitude": "-5.59763000" + }, + { + "id": "36790", + "name": "Samboal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25758000", + "longitude": "-4.41727000" + }, + { + "id": "36791", + "name": "Samir de los Caños", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67280000", + "longitude": "-6.16415000" + }, + { + "id": "36796", + "name": "San Adrián de Juarros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27427000", + "longitude": "-3.47551000" + }, + { + "id": "36797", + "name": "San Adrián del Valle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13033000", + "longitude": "-5.72905000" + }, + { + "id": "36800", + "name": "San Agustín del Pozo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88613000", + "longitude": "-5.59351000" + }, + { + "id": "36803", + "name": "San Andrés del Rabanedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61174000", + "longitude": "-5.61671000" + }, + { + "id": "36807", + "name": "San Bartolomé de Béjar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40783000", + "longitude": "-5.66261000" + }, + { + "id": "36808", + "name": "San Bartolomé de Corneja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49257000", + "longitude": "-5.38519000" + }, + { + "id": "36814", + "name": "San Cebrián de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.20063000", + "longitude": "-4.53127000" + }, + { + "id": "36815", + "name": "San Cebrián de Castro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70632000", + "longitude": "-5.75605000" + }, + { + "id": "36816", + "name": "San Cebrián de Mazote", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68022000", + "longitude": "-5.14847000" + }, + { + "id": "36817", + "name": "San Cebrián de Mudá", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.89261000", + "longitude": "-4.38719000" + }, + { + "id": "36819", + "name": "San Cristóbal de Boedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.54194000", + "longitude": "-4.35325000" + }, + { + "id": "36820", + "name": "San Cristóbal de Cuéllar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40591000", + "longitude": "-4.40445000" + }, + { + "id": "36821", + "name": "San Cristóbal de Entreviñas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04575000", + "longitude": "-5.63468000" + }, + { + "id": "36823", + "name": "San Cristóbal de la Cuesta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02919000", + "longitude": "-5.61771000" + }, + { + "id": "36824", + "name": "San Cristóbal de la Polantera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39041000", + "longitude": "-5.90732000" + }, + { + "id": "36825", + "name": "San Cristóbal de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11214000", + "longitude": "-4.64448000" + }, + { + "id": "36822", + "name": "San Cristóbal de Segovia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95225000", + "longitude": "-4.07652000" + }, + { + "id": "36826", + "name": "San Emiliano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.97164000", + "longitude": "-6.00075000" + }, + { + "id": "36828", + "name": "San Esteban de Gormaz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57436000", + "longitude": "-3.20418000" + }, + { + "id": "36830", + "name": "San Esteban de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50680000", + "longitude": "-5.90619000" + }, + { + "id": "36831", + "name": "San Esteban de los Patos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74705000", + "longitude": "-4.62413000" + }, + { + "id": "36829", + "name": "San Esteban de Nogales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15995000", + "longitude": "-5.93065000" + }, + { + "id": "36832", + "name": "San Esteban del Molar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93717000", + "longitude": "-5.55158000" + }, + { + "id": "36833", + "name": "San Esteban del Valle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.27510000", + "longitude": "-4.98215000" + }, + { + "id": "36834", + "name": "San Felices de los Gallegos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84954000", + "longitude": "-6.70804000" + }, + { + "id": "36837", + "name": "San García de Ingelmos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.76912000", + "longitude": "-5.11523000" + }, + { + "id": "36838", + "name": "San Ildefonso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.90182000", + "longitude": "-4.00685000" + }, + { + "id": "36846", + "name": "San Juan de la Encinilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83020000", + "longitude": "-4.83957000" + }, + { + "id": "36847", + "name": "San Juan de la Nava", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47880000", + "longitude": "-4.68238000" + }, + { + "id": "36850", + "name": "San Juan del Molinillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45909000", + "longitude": "-4.81711000" + }, + { + "id": "36851", + "name": "San Juan del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68313000", + "longitude": "-3.52337000" + }, + { + "id": "36853", + "name": "San Justo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13321000", + "longitude": "-6.62388000" + }, + { + "id": "36854", + "name": "San Justo de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45696000", + "longitude": "-6.01825000" + }, + { + "id": "36855", + "name": "San Leonardo de Yagüe", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83034000", + "longitude": "-3.06880000" + }, + { + "id": "36856", + "name": "San Llorente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68631000", + "longitude": "-4.06600000" + }, + { + "id": "36859", + "name": "San Lorenzo de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36984000", + "longitude": "-5.48848000" + }, + { + "id": "36861", + "name": "San Mamés de Burgos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33685000", + "longitude": "-3.79397000" + }, + { + "id": "36862", + "name": "San Mamés de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35512000", + "longitude": "-4.56565000" + }, + { + "id": "36874", + "name": "San Martín de la Vega del Alberche", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43053000", + "longitude": "-5.15500000" + }, + { + "id": "36867", + "name": "San Martín de Rubiales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64191000", + "longitude": "-3.99134000" + }, + { + "id": "36871", + "name": "San Martín de Valderaduey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81414000", + "longitude": "-5.47249000" + }, + { + "id": "36872", + "name": "San Martín de Valvení", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75336000", + "longitude": "-4.56724000" + }, + { + "id": "36875", + "name": "San Martín del Castañar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.52264000", + "longitude": "-6.06387000" + }, + { + "id": "36876", + "name": "San Martín del Pimpollar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36830000", + "longitude": "-5.05443000" + }, + { + "id": "36881", + "name": "San Miguel de Corneja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48722000", + "longitude": "-5.28654000" + }, + { + "id": "36886", + "name": "San Miguel de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33301000", + "longitude": "-5.57689000" + }, + { + "id": "36884", + "name": "San Miguel de Serrezuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67064000", + "longitude": "-5.28857000" + }, + { + "id": "36885", + "name": "San Miguel de Valero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54361000", + "longitude": "-5.92280000" + }, + { + "id": "36887", + "name": "San Miguel del Arroyo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44328000", + "longitude": "-4.45990000" + }, + { + "id": "36888", + "name": "San Miguel del Pino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50941000", + "longitude": "-4.91149000" + }, + { + "id": "36889", + "name": "San Millán de Lara", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13621000", + "longitude": "-3.34515000" + }, + { + "id": "36892", + "name": "San Millán de los Caballeros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28520000", + "longitude": "-5.56107000" + }, + { + "id": "36893", + "name": "San Morales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99358000", + "longitude": "-5.50234000" + }, + { + "id": "36894", + "name": "San Muñoz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78334000", + "longitude": "-6.12758000" + }, + { + "id": "36897", + "name": "San Pablo de la Moraleja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16100000", + "longitude": "-4.77761000" + }, + { + "id": "36898", + "name": "San Pascual", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88141000", + "longitude": "-4.75612000" + }, + { + "id": "36900", + "name": "San Pedro Bercianos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39145000", + "longitude": "-5.71341000" + }, + { + "id": "36904", + "name": "San Pedro de Ceque", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04334000", + "longitude": "-6.07242000" + }, + { + "id": "36905", + "name": "San Pedro de Gaíllos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.22662000", + "longitude": "-3.80921000" + }, + { + "id": "36906", + "name": "San Pedro de Latarce", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73556000", + "longitude": "-5.32592000" + }, + { + "id": "36908", + "name": "San Pedro de Rozados", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79008000", + "longitude": "-5.73716000" + }, + { + "id": "36909", + "name": "San Pedro del Arroyo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80213000", + "longitude": "-4.87075000" + }, + { + "id": "36912", + "name": "San Pedro del Valle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03332000", + "longitude": "-5.86025000" + }, + { + "id": "36901", + "name": "San Pedro Manrique", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02860000", + "longitude": "-2.23104000" + }, + { + "id": "36913", + "name": "San Pelayo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68033000", + "longitude": "-5.03403000" + }, + { + "id": "36914", + "name": "San Pelayo de Guareña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11579000", + "longitude": "-5.85702000" + }, + { + "id": "36917", + "name": "San Román de Hornija", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48131000", + "longitude": "-5.28454000" + }, + { + "id": "36918", + "name": "San Román de la Cuba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26257000", + "longitude": "-4.85724000" + }, + { + "id": "36927", + "name": "San Vicente de Arévalo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96773000", + "longitude": "-4.80194000" + }, + { + "id": "36929", + "name": "San Vicente de la Cabeza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80696000", + "longitude": "-6.24993000" + }, + { + "id": "36931", + "name": "San Vicente del Palacio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21901000", + "longitude": "-4.85158000" + }, + { + "id": "36932", + "name": "San Vicente del Valle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33756000", + "longitude": "-3.16210000" + }, + { + "id": "36933", + "name": "San Vitero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.77740000", + "longitude": "-6.34877000" + }, + { + "id": "36934", + "name": "Sancedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66666000", + "longitude": "-6.63456000" + }, + { + "id": "36939", + "name": "Sanchón de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08844000", + "longitude": "-6.41314000" + }, + { + "id": "36940", + "name": "Sanchón de la Sagrada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.74287000", + "longitude": "-6.02502000" + }, + { + "id": "36935", + "name": "Sanchidrián", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89347000", + "longitude": "-4.58132000" + }, + { + "id": "36936", + "name": "Sanchonuño", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.32325000", + "longitude": "-4.30531000" + }, + { + "id": "36937", + "name": "Sanchorreja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66475000", + "longitude": "-4.91494000" + }, + { + "id": "36938", + "name": "Sanchotello", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43812000", + "longitude": "-5.75394000" + }, + { + "id": "36941", + "name": "Sando", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96773000", + "longitude": "-6.11136000" + }, + { + "id": "36943", + "name": "Sangarcía", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95023000", + "longitude": "-4.41085000" + }, + { + "id": "37010", + "name": "Santa Cecilia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05225000", + "longitude": "-3.80345000" + }, + { + "id": "37011", + "name": "Santa Cecilia del Alcor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93227000", + "longitude": "-4.65546000" + }, + { + "id": "37013", + "name": "Santa Clara de Avedillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33877000", + "longitude": "-5.67692000" + }, + { + "id": "37018", + "name": "Santa Colomba de Curueño", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.75058000", + "longitude": "-5.41201000" + }, + { + "id": "37020", + "name": "Santa Colomba de las Monjas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95833000", + "longitude": "-5.68389000" + }, + { + "id": "37019", + "name": "Santa Colomba de Somoza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44466000", + "longitude": "-6.24483000" + }, + { + "id": "37024", + "name": "Santa Cristina de la Polvorosa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99985000", + "longitude": "-5.71355000" + }, + { + "id": "37023", + "name": "Santa Cristina de Valmadrigal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35446000", + "longitude": "-5.30929000" + }, + { + "id": "37025", + "name": "Santa Croya de Tera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98334000", + "longitude": "-5.97725000" + }, + { + "id": "37028", + "name": "Santa Cruz de Boedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52531000", + "longitude": "-4.37398000" + }, + { + "id": "37039", + "name": "Santa Cruz de la Salceda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59591000", + "longitude": "-3.59317000" + }, + { + "id": "37035", + "name": "Santa Cruz de Pinares", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54265000", + "longitude": "-4.58036000" + }, + { + "id": "37037", + "name": "Santa Cruz de Yanguas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06250000", + "longitude": "-2.44894000" + }, + { + "id": "37045", + "name": "Santa Cruz del Valle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25160000", + "longitude": "-5.00133000" + }, + { + "id": "37046", + "name": "Santa Cruz del Valle Urbión", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30558000", + "longitude": "-3.22140000" + }, + { + "id": "37048", + "name": "Santa Elena de Jamuz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26064000", + "longitude": "-5.88762000" + }, + { + "id": "37050", + "name": "Santa Eufemia del Arroyo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89505000", + "longitude": "-5.26575000" + }, + { + "id": "37051", + "name": "Santa Eufemia del Barco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67808000", + "longitude": "-5.89831000" + }, + { + "id": "37060", + "name": "Santa Gadea del Cid", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.71531000", + "longitude": "-3.05885000" + }, + { + "id": "37061", + "name": "Santa Inés", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04013000", + "longitude": "-3.70322000" + }, + { + "id": "37075", + "name": "Santa María de Huerta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26667000", + "longitude": "-2.16667000" + }, + { + "id": "37080", + "name": "Santa María de la Isla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35533000", + "longitude": "-5.92870000" + }, + { + "id": "37081", + "name": "Santa María de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08497000", + "longitude": "-5.80851000" + }, + { + "id": "37082", + "name": "Santa María de las Hoyas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.77145000", + "longitude": "-3.14172000" + }, + { + "id": "37083", + "name": "Santa María de los Caballeros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.38925000", + "longitude": "-5.45112000" + }, + { + "id": "37076", + "name": "Santa María de Ordás", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.72653000", + "longitude": "-5.82301000" + }, + { + "id": "37077", + "name": "Santa María de Sando", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.97909000", + "longitude": "-6.12904000" + }, + { + "id": "37078", + "name": "Santa María de Valverde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93479000", + "longitude": "-5.93560000" + }, + { + "id": "37084", + "name": "Santa María del Berrocal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50845000", + "longitude": "-5.40483000" + }, + { + "id": "37085", + "name": "Santa María del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.13304000", + "longitude": "-3.97283000" + }, + { + "id": "37087", + "name": "Santa María del Invierno", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44288000", + "longitude": "-3.43782000" + }, + { + "id": "37088", + "name": "Santa María del Monte de Cea", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49137000", + "longitude": "-5.11689000" + }, + { + "id": "37089", + "name": "Santa María del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35512000", + "longitude": "-5.75151000" + }, + { + "id": "37091", + "name": "Santa María la Real de Nieva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06998000", + "longitude": "-4.40709000" + }, + { + "id": "37068", + "name": "Santa Marina del Rey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51334000", + "longitude": "-5.86065000" + }, + { + "id": "37072", + "name": "Santa Marta de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95065000", + "longitude": "-5.62723000" + }, + { + "id": "37073", + "name": "Santa Marta del Cerro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21843000", + "longitude": "-3.68582000" + }, + { + "id": "37093", + "name": "Santa Olalla de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47721000", + "longitude": "-3.44109000" + }, + { + "id": "37108", + "name": "Santas Martas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.43220000", + "longitude": "-5.37066000" + }, + { + "id": "37110", + "name": "Santervás de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21820000", + "longitude": "-5.10027000" + }, + { + "id": "37111", + "name": "Santervás de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50677000", + "longitude": "-4.80002000" + }, + { + "id": "37115", + "name": "Santiago de la Puebla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80132000", + "longitude": "-5.28073000" + }, + { + "id": "37118", + "name": "Santiago del Collado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43326000", + "longitude": "-5.35631000" + }, + { + "id": "37112", + "name": "Santiago Millas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38379000", + "longitude": "-6.10538000" + }, + { + "id": "37120", + "name": "Santibáñez de Béjar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48785000", + "longitude": "-5.61110000" + }, + { + "id": "37121", + "name": "Santibáñez de Ecla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70784000", + "longitude": "-4.37263000" + }, + { + "id": "37125", + "name": "Santibáñez de la Peña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.80929000", + "longitude": "-4.73026000" + }, + { + "id": "37126", + "name": "Santibáñez de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49464000", + "longitude": "-5.91576000" + }, + { + "id": "37122", + "name": "Santibáñez de Tera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98563000", + "longitude": "-5.92257000" + }, + { + "id": "37123", + "name": "Santibáñez de Valcorba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56983000", + "longitude": "-4.44938000" + }, + { + "id": "37124", + "name": "Santibáñez de Vidriales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07362000", + "longitude": "-6.01549000" + }, + { + "id": "37127", + "name": "Santibáñez del Val", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97354000", + "longitude": "-3.48142000" + }, + { + "id": "37137", + "name": "Santiuste de San Juan Bautista", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15593000", + "longitude": "-4.57202000" + }, + { + "id": "37138", + "name": "Santiz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20579000", + "longitude": "-5.89654000" + }, + { + "id": "37142", + "name": "Santo Domingo de las Posadas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81200000", + "longitude": "-4.63383000" + }, + { + "id": "37139", + "name": "Santo Domingo de Pirón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04104000", + "longitude": "-3.98933000" + }, + { + "id": "37140", + "name": "Santo Domingo de Silos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96400000", + "longitude": "-3.41740000" + }, + { + "id": "37144", + "name": "Santo Tomé de Zabarcos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.78726000", + "longitude": "-4.91048000" + }, + { + "id": "37147", + "name": "Santovenia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87857000", + "longitude": "-5.71003000" + }, + { + "id": "37148", + "name": "Santovenia de Pisuerga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69457000", + "longitude": "-4.69029000" + }, + { + "id": "37149", + "name": "Santoyo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21473000", + "longitude": "-4.34296000" + }, + { + "id": "37158", + "name": "Sanzoles", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43235000", + "longitude": "-5.56710000" + }, + { + "id": "37159", + "name": "Sardón de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60847000", + "longitude": "-4.43397000" + }, + { + "id": "37160", + "name": "Sardón de los Frailes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21373000", + "longitude": "-6.27101000" + }, + { + "id": "37161", + "name": "Sargentes de la Lora", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.76917000", + "longitude": "-3.87278000" + }, + { + "id": "37162", + "name": "Sariegos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65000000", + "longitude": "-5.63333000" + }, + { + "id": "37165", + "name": "Sarracín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25813000", + "longitude": "-3.68608000" + }, + { + "id": "37176", + "name": "Sasamón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41687000", + "longitude": "-4.04288000" + }, + { + "id": "37178", + "name": "Saucelle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04769000", + "longitude": "-6.75328000" + }, + { + "id": "37179", + "name": "Sauquillo de Cabezas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19422000", + "longitude": "-4.06884000" + }, + { + "id": "37185", + "name": "Sebúlcor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27091000", + "longitude": "-3.88398000" + }, + { + "id": "37192", + "name": "Segovia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.94808000", + "longitude": "-4.11839000" + }, + { + "id": "37208", + "name": "Sena de Luna", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.92906000", + "longitude": "-5.95267000" + }, + { + "id": "37215", + "name": "Sepúlveda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.29695000", + "longitude": "-3.74221000" + }, + { + "id": "37216", + "name": "Sequera de Fresno", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36640000", + "longitude": "-3.54612000" + }, + { + "id": "37217", + "name": "Sequeros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51295000", + "longitude": "-6.02495000" + }, + { + "id": "37220", + "name": "Serrada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45722000", + "longitude": "-4.86279000" + }, + { + "id": "37222", + "name": "Serradilla del Arroyo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.52133000", + "longitude": "-6.36008000" + }, + { + "id": "37223", + "name": "Serradilla del Llano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49996000", + "longitude": "-6.35701000" + }, + { + "id": "37224", + "name": "Serranillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33625000", + "longitude": "-4.91165000" + }, + { + "id": "37250", + "name": "Siete Iglesias de Trabancos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35223000", + "longitude": "-5.18488000" + }, + { + "id": "37251", + "name": "Sigeres", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79939000", + "longitude": "-4.93361000" + }, + { + "id": "37258", + "name": "Simancas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59072000", + "longitude": "-4.82796000" + }, + { + "id": "37263", + "name": "Sinlabajos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07650000", + "longitude": "-4.83242000" + }, + { + "id": "37273", + "name": "Sobradillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91754000", + "longitude": "-6.79729000" + }, + { + "id": "37275", + "name": "Sobrado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51667000", + "longitude": "-6.85000000" + }, + { + "id": "37281", + "name": "Solarana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97168000", + "longitude": "-3.65876000" + }, + { + "id": "37282", + "name": "Soliedra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46932000", + "longitude": "-2.38164000" + }, + { + "id": "37284", + "name": "Solosancho", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55294000", + "longitude": "-4.90479000" + }, + { + "id": "37299", + "name": "Sordillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46197000", + "longitude": "-4.10726000" + }, + { + "id": "37300", + "name": "Soria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76401000", + "longitude": "-2.46883000" + }, + { + "id": "37301", + "name": "Sorihuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.44378000", + "longitude": "-5.67818000" + }, + { + "id": "37311", + "name": "Sotalbo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.54170000", + "longitude": "-4.84548000" + }, + { + "id": "37312", + "name": "Sotillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25846000", + "longitude": "-3.63729000" + }, + { + "id": "37313", + "name": "Sotillo de la Adrada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29120000", + "longitude": "-4.58385000" + }, + { + "id": "37314", + "name": "Sotillo de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.77717000", + "longitude": "-3.82525000" + }, + { + "id": "37316", + "name": "Sotillo del Rincón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93220000", + "longitude": "-2.60297000" + }, + { + "id": "37317", + "name": "Soto de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95312000", + "longitude": "-4.42998000" + }, + { + "id": "37318", + "name": "Soto de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33227000", + "longitude": "-5.88225000" + }, + { + "id": "37320", + "name": "Soto y Amío", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77477000", + "longitude": "-5.88693000" + }, + { + "id": "37321", + "name": "Sotobañado y Priorato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58987000", + "longitude": "-4.44185000" + }, + { + "id": "37323", + "name": "Sotosalbos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03537000", + "longitude": "-3.94115000" + }, + { + "id": "37324", + "name": "Sotoserrano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.43499000", + "longitude": "-6.03261000" + }, + { + "id": "37325", + "name": "Sotragero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40996000", + "longitude": "-3.71312000" + }, + { + "id": "37326", + "name": "Sotresgudo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57935000", + "longitude": "-4.17725000" + }, + { + "id": "37330", + "name": "Suellacabras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85298000", + "longitude": "-2.22398000" + }, + { + "id": "37333", + "name": "Susinos del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47108000", + "longitude": "-3.92555000" + }, + { + "id": "37339", + "name": "Tabanera de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02469000", + "longitude": "-4.12361000" + }, + { + "id": "37340", + "name": "Tabanera de Valdavia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64728000", + "longitude": "-4.69414000" + }, + { + "id": "37341", + "name": "Tabanera la Luenga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.09647000", + "longitude": "-4.23937000" + }, + { + "id": "37342", + "name": "Tabera de Abajo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.91021000", + "longitude": "-6.00227000" + }, + { + "id": "37351", + "name": "Tajahuerce", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73991000", + "longitude": "-2.15069000" + }, + { + "id": "37352", + "name": "Tajueco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53641000", + "longitude": "-2.84845000" + }, + { + "id": "37363", + "name": "Tamames", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.65725000", + "longitude": "-6.10536000" + }, + { + "id": "37366", + "name": "Tamarón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27386000", + "longitude": "-3.99154000" + }, + { + "id": "37365", + "name": "Tamariz de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97706000", + "longitude": "-5.02335000" + }, + { + "id": "37369", + "name": "Tapioles", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85741000", + "longitude": "-5.49623000" + }, + { + "id": "37375", + "name": "Tarazona de Guareña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17206000", + "longitude": "-5.25005000" + }, + { + "id": "37377", + "name": "Tardajos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34909000", + "longitude": "-3.81700000" + }, + { + "id": "37380", + "name": "Tardáguila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11493000", + "longitude": "-5.57423000" + }, + { + "id": "37378", + "name": "Tardelcuende", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59402000", + "longitude": "-2.64439000" + }, + { + "id": "37382", + "name": "Taroda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.34798000", + "longitude": "-2.43318000" + }, + { + "id": "37662", + "name": "Tábara", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82458000", + "longitude": "-5.96420000" + }, + { + "id": "37669", + "name": "Tórtoles", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.56120000", + "longitude": "-5.26120000" + }, + { + "id": "37394", + "name": "Tejada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95249000", + "longitude": "-3.53514000" + }, + { + "id": "37396", + "name": "Tejado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58887000", + "longitude": "-2.26721000" + }, + { + "id": "37399", + "name": "Tejeda y Segoyuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63155000", + "longitude": "-6.02311000" + }, + { + "id": "37403", + "name": "Tenebrón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62449000", + "longitude": "-6.35450000" + }, + { + "id": "37407", + "name": "Terradillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83836000", + "longitude": "-5.54160000" + }, + { + "id": "37408", + "name": "Terradillos de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81885000", + "longitude": "-3.84318000" + }, + { + "id": "37434", + "name": "Tiñosillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.93400000", + "longitude": "-4.72767000" + }, + { + "id": "37421", + "name": "Tiedra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65239000", + "longitude": "-5.26688000" + }, + { + "id": "37435", + "name": "Tobar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48384000", + "longitude": "-3.93984000" + }, + { + "id": "37442", + "name": "Tolbaños", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75168000", + "longitude": "-4.58191000" + }, + { + "id": "37445", + "name": "Tolocirio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13425000", + "longitude": "-4.65121000" + }, + { + "id": "37453", + "name": "Topas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15759000", + "longitude": "-5.63402000" + }, + { + "id": "37454", + "name": "Toral de los Guzmanes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24274000", + "longitude": "-5.56771000" + }, + { + "id": "37462", + "name": "Tordómar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04630000", + "longitude": "-3.86514000" + }, + { + "id": "37455", + "name": "Tordehumos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81531000", + "longitude": "-5.15811000" + }, + { + "id": "37459", + "name": "Tordesillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50202000", + "longitude": "-5.00146000" + }, + { + "id": "37461", + "name": "Tordillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85266000", + "longitude": "-5.35278000" + }, + { + "id": "37464", + "name": "Toreno", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69955000", + "longitude": "-6.51236000" + }, + { + "id": "37467", + "name": "Torlengua", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45483000", + "longitude": "-2.16183000" + }, + { + "id": "37469", + "name": "Tormellas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30404000", + "longitude": "-5.51185000" + }, + { + "id": "37473", + "name": "Tornadizos de Ávila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.62757000", + "longitude": "-4.61426000" + }, + { + "id": "37476", + "name": "Toro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52417000", + "longitude": "-5.39534000" + }, + { + "id": "37477", + "name": "Torquemada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03490000", + "longitude": "-4.31841000" + }, + { + "id": "37492", + "name": "Torre de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76821000", + "longitude": "-4.20003000" + }, + { + "id": "37495", + "name": "Torre de Peñafiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53646000", + "longitude": "-4.08833000" + }, + { + "id": "37499", + "name": "Torre del Bierzo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60769000", + "longitude": "-6.36675000" + }, + { + "id": "37489", + "name": "Torre Val de San Pedro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07534000", + "longitude": "-3.87116000" + }, + { + "id": "37508", + "name": "Torreadrada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44474000", + "longitude": "-3.84000000" + }, + { + "id": "37509", + "name": "Torreblacos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66927000", + "longitude": "-2.87881000" + }, + { + "id": "37512", + "name": "Torrecaballeros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99211000", + "longitude": "-4.02470000" + }, + { + "id": "37516", + "name": "Torrecilla de la Abadesa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48498000", + "longitude": "-5.08762000" + }, + { + "id": "37518", + "name": "Torrecilla de la Orden", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21885000", + "longitude": "-5.22384000" + }, + { + "id": "37519", + "name": "Torrecilla de la Torre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66716000", + "longitude": "-5.04982000" + }, + { + "id": "37521", + "name": "Torrecilla del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09490000", + "longitude": "-3.69356000" + }, + { + "id": "37522", + "name": "Torrecilla del Pinar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.37360000", + "longitude": "-4.03838000" + }, + { + "id": "37532", + "name": "Torregalindo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58299000", + "longitude": "-3.75222000" + }, + { + "id": "37533", + "name": "Torregamones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48700000", + "longitude": "-6.18335000" + }, + { + "id": "37535", + "name": "Torreiglesias", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10236000", + "longitude": "-4.03280000" + }, + { + "id": "37545", + "name": "Torrelara", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16673000", + "longitude": "-3.51689000" + }, + { + "id": "37550", + "name": "Torrelobatón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64942000", + "longitude": "-5.02526000" + }, + { + "id": "37563", + "name": "Torremormojón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96018000", + "longitude": "-4.77765000" + }, + { + "id": "37578", + "name": "Torres del Carrizal", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61701000", + "longitude": "-5.67173000" + }, + { + "id": "37580", + "name": "Torresandino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82920000", + "longitude": "-3.90981000" + }, + { + "id": "37581", + "name": "Torrescárcela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.48455000", + "longitude": "-4.31920000" + }, + { + "id": "37582", + "name": "Torresmenudas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10249000", + "longitude": "-5.78475000" + }, + { + "id": "37594", + "name": "Torrubia de Soria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63045000", + "longitude": "-2.09151000" + }, + { + "id": "37602", + "name": "Tosantos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41368000", + "longitude": "-3.24286000" + }, + { + "id": "37612", + "name": "Trabadelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64874000", + "longitude": "-6.88000000" + }, + { + "id": "37613", + "name": "Trabanca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23278000", + "longitude": "-6.38484000" + }, + { + "id": "37614", + "name": "Trabazos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74793000", + "longitude": "-6.49094000" + }, + { + "id": "37623", + "name": "Traspinedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57509000", + "longitude": "-4.47569000" + }, + { + "id": "37626", + "name": "Trefacio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12165000", + "longitude": "-6.65407000" + }, + { + "id": "37627", + "name": "Tremedal de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07423000", + "longitude": "-6.18164000" + }, + { + "id": "37630", + "name": "Trescasas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.96442000", + "longitude": "-4.03590000" + }, + { + "id": "37632", + "name": "Trespaderne", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.80221000", + "longitude": "-3.38989000" + }, + { + "id": "37638", + "name": "Trigueros del Valle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83049000", + "longitude": "-4.65179000" + }, + { + "id": "37641", + "name": "Triollo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.92456000", + "longitude": "-4.68130000" + }, + { + "id": "37643", + "name": "Truchas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26093000", + "longitude": "-6.43605000" + }, + { + "id": "37646", + "name": "Tubilla del Agua", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70932000", + "longitude": "-3.80116000" + }, + { + "id": "37647", + "name": "Tubilla del Lago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80154000", + "longitude": "-3.58625000" + }, + { + "id": "37649", + "name": "Tudela de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58450000", + "longitude": "-4.58093000" + }, + { + "id": "37658", + "name": "Turégano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.15610000", + "longitude": "-4.00696000" + }, + { + "id": "37654", + "name": "Turcia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.53431000", + "longitude": "-5.87844000" + }, + { + "id": "37714", + "name": "Uña de Quintana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08662000", + "longitude": "-6.14475000" + }, + { + "id": "37672", + "name": "Ucero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.71685000", + "longitude": "-3.05154000" + }, + { + "id": "37686", + "name": "Umbrías", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.31530000", + "longitude": "-5.58037000" + }, + { + "id": "37691", + "name": "Urdiales del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37034000", + "longitude": "-5.77297000" + }, + { + "id": "37694", + "name": "Urones de Castroponce", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09911000", + "longitude": "-5.28222000" + }, + { + "id": "37698", + "name": "Urueña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72738000", + "longitude": "-5.20304000" + }, + { + "id": "37699", + "name": "Urueñas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35589000", + "longitude": "-3.77391000" + }, + { + "id": "37715", + "name": "Vadillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79111000", + "longitude": "-3.00845000" + }, + { + "id": "37716", + "name": "Vadillo de la Guareña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.28242000", + "longitude": "-5.35300000" + }, + { + "id": "37717", + "name": "Vadillo de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60634000", + "longitude": "-5.12506000" + }, + { + "id": "37718", + "name": "Vadocondes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63925000", + "longitude": "-3.57378000" + }, + { + "id": "37719", + "name": "Val de San Lorenzo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41819000", + "longitude": "-6.12391000" + }, + { + "id": "37723", + "name": "Valbuena de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64323000", + "longitude": "-4.29271000" + }, + { + "id": "37724", + "name": "Valbuena de Pisuerga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14584000", + "longitude": "-4.24010000" + }, + { + "id": "37725", + "name": "Valcabado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54863000", + "longitude": "-5.74916000" + }, + { + "id": "37730", + "name": "Valdeande", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83302000", + "longitude": "-3.52792000" + }, + { + "id": "37731", + "name": "Valdearcos de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.64260000", + "longitude": "-4.04845000" + }, + { + "id": "37734", + "name": "Valdeavellano de Tera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94229000", + "longitude": "-2.57634000" + }, + { + "id": "37738", + "name": "Valdecarros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77007000", + "longitude": "-5.42219000" + }, + { + "id": "37739", + "name": "Valdecasa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.65931000", + "longitude": "-5.01183000" + }, + { + "id": "37743", + "name": "Valdefinjas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.45172000", + "longitude": "-5.45232000" + }, + { + "id": "37744", + "name": "Valdefresno", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.59492000", + "longitude": "-5.49355000" + }, + { + "id": "37746", + "name": "Valdefuentes de Sangusín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46578000", + "longitude": "-5.83286000" + }, + { + "id": "37747", + "name": "Valdefuentes del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32370000", + "longitude": "-5.83097000" + }, + { + "id": "37750", + "name": "Valdehijaderos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41916000", + "longitude": "-5.84792000" + }, + { + "id": "37754", + "name": "Valdelacasa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50631000", + "longitude": "-5.76354000" + }, + { + "id": "37756", + "name": "Valdelageve", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.36949000", + "longitude": "-5.99078000" + }, + { + "id": "37757", + "name": "Valdelagua del Cerro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88825000", + "longitude": "-2.11538000" + }, + { + "id": "37761", + "name": "Valdelosa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17157000", + "longitude": "-5.78390000" + }, + { + "id": "37764", + "name": "Valdemaluque", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67377000", + "longitude": "-3.04643000" + }, + { + "id": "37769", + "name": "Valdemierque", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.82176000", + "longitude": "-5.58225000" + }, + { + "id": "37770", + "name": "Valdemora", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19541000", + "longitude": "-5.42747000" + }, + { + "id": "37776", + "name": "Valdenebro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57167000", + "longitude": "-2.96424000" + }, + { + "id": "37777", + "name": "Valdenebro de los Valles", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.85690000", + "longitude": "-4.97005000" + }, + { + "id": "37780", + "name": "Valdeolmillos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04123000", + "longitude": "-4.40015000" + }, + { + "id": "37785", + "name": "Valdepiélago", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86895000", + "longitude": "-5.39763000" + }, + { + "id": "37787", + "name": "Valdepolo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57686000", + "longitude": "-5.22513000" + }, + { + "id": "37788", + "name": "Valdeprado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93768000", + "longitude": "-2.10915000" + }, + { + "id": "37789", + "name": "Valdeprados", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81766000", + "longitude": "-4.25734000" + }, + { + "id": "37790", + "name": "Valderas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07830000", + "longitude": "-5.44355000" + }, + { + "id": "37798", + "name": "Valderrábano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60674000", + "longitude": "-4.65584000" + }, + { + "id": "37792", + "name": "Valderrey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39408000", + "longitude": "-6.02151000" + }, + { + "id": "37794", + "name": "Valderrodilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.56346000", + "longitude": "-2.80777000" + }, + { + "id": "37795", + "name": "Valderrodrigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06524000", + "longitude": "-6.50878000" + }, + { + "id": "37797", + "name": "Valderrueda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81558000", + "longitude": "-4.94731000" + }, + { + "id": "37799", + "name": "Valdesamario", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.72094000", + "longitude": "-5.95104000" + }, + { + "id": "37800", + "name": "Valdescorriel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02233000", + "longitude": "-5.50998000" + }, + { + "id": "37802", + "name": "Valdestillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47697000", + "longitude": "-4.77116000" + }, + { + "id": "37805", + "name": "Valdevacas de Montejo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52068000", + "longitude": "-3.63571000" + }, + { + "id": "37807", + "name": "Valdevimbre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41959000", + "longitude": "-5.61975000" + }, + { + "id": "37808", + "name": "Valdezate", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60231000", + "longitude": "-3.93045000" + }, + { + "id": "37811", + "name": "Valdorros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17232000", + "longitude": "-3.70938000" + }, + { + "id": "37813", + "name": "Valdunciel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08544000", + "longitude": "-5.67217000" + }, + { + "id": "37814", + "name": "Valdunquillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04232000", + "longitude": "-5.31339000" + }, + { + "id": "37818", + "name": "Valencia de Don Juan", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29374000", + "longitude": "-5.51720000" + }, + { + "id": "37825", + "name": "Valero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.53533000", + "longitude": "-5.94307000" + }, + { + "id": "37836", + "name": "Valladolid", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65518000", + "longitude": "-4.72372000" + }, + { + "id": "37838", + "name": "Vallarta de Bureba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58864000", + "longitude": "-3.20457000" + }, + { + "id": "37844", + "name": "Valle de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.88045000", + "longitude": "-4.36243000" + }, + { + "id": "37847", + "name": "Valle de Tabladillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.36304000", + "longitude": "-3.83966000" + }, + { + "id": "37849", + "name": "Vallecillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35604000", + "longitude": "-5.21088000" + }, + { + "id": "37851", + "name": "Vallejera de Riofrío", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.40910000", + "longitude": "-5.71943000" + }, + { + "id": "37852", + "name": "Vallelado", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.40436000", + "longitude": "-4.42662000" + }, + { + "id": "37853", + "name": "Valleruela de Pedraza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.17937000", + "longitude": "-3.80717000" + }, + { + "id": "37854", + "name": "Valleruela de Sepúlveda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.18794000", + "longitude": "-3.77277000" + }, + { + "id": "37855", + "name": "Valles de Palenzuela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.12019000", + "longitude": "-4.07750000" + }, + { + "id": "37856", + "name": "Vallesa de la Guareña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.13532000", + "longitude": "-5.32611000" + }, + { + "id": "37864", + "name": "Valluércanes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57220000", + "longitude": "-3.12113000" + }, + { + "id": "37868", + "name": "Valmala", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30590000", + "longitude": "-3.25456000" + }, + { + "id": "37870", + "name": "Valoria la Buena", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79966000", + "longitude": "-4.53055000" + }, + { + "id": "37872", + "name": "Valsalabroso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10962000", + "longitude": "-6.50269000" + }, + { + "id": "37874", + "name": "Valseca", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99933000", + "longitude": "-4.17514000" + }, + { + "id": "37877", + "name": "Valtajeros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93808000", + "longitude": "-2.22289000" + }, + { + "id": "37878", + "name": "Valtiendas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.47851000", + "longitude": "-3.91766000" + }, + { + "id": "37898", + "name": "Valverdón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04691000", + "longitude": "-5.76955000" + }, + { + "id": "37884", + "name": "Valverde de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83510000", + "longitude": "-5.03674000" + }, + { + "id": "37891", + "name": "Valverde de la Virgen", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56823000", + "longitude": "-5.68461000" + }, + { + "id": "37889", + "name": "Valverde de Valdelacasa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.48155000", + "longitude": "-5.78145000" + }, + { + "id": "37895", + "name": "Valverde del Majano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95689000", + "longitude": "-4.23468000" + }, + { + "id": "37896", + "name": "Valverde-Enrique", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30459000", + "longitude": "-5.29990000" + }, + { + "id": "37901", + "name": "Vecinos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77875000", + "longitude": "-5.87815000" + }, + { + "id": "37903", + "name": "Vega de Espinareda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.72537000", + "longitude": "-6.65439000" + }, + { + "id": "37904", + "name": "Vega de Infanzones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48116000", + "longitude": "-5.53295000" + }, + { + "id": "37906", + "name": "Vega de Ruiponce", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18808000", + "longitude": "-5.11477000" + }, + { + "id": "37908", + "name": "Vega de Santa María", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.83618000", + "longitude": "-4.64287000" + }, + { + "id": "37909", + "name": "Vega de Tera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99759000", + "longitude": "-6.12500000" + }, + { + "id": "37910", + "name": "Vega de Tirados", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.02543000", + "longitude": "-5.88667000" + }, + { + "id": "37911", + "name": "Vega de Valcarce", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66068000", + "longitude": "-6.93785000" + }, + { + "id": "37912", + "name": "Vega de Valdetronco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59364000", + "longitude": "-5.11319000" + }, + { + "id": "37913", + "name": "Vega de Villalobos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97057000", + "longitude": "-5.46324000" + }, + { + "id": "37915", + "name": "Vegacervera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.88808000", + "longitude": "-5.53549000" + }, + { + "id": "37916", + "name": "Vegalatrave", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.70026000", + "longitude": "-6.10675000" + }, + { + "id": "37917", + "name": "Veganzones", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.19308000", + "longitude": "-3.99329000" + }, + { + "id": "37918", + "name": "Vegaquemada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81870000", + "longitude": "-5.33242000" + }, + { + "id": "37919", + "name": "Vegas de Matute", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.79476000", + "longitude": "-4.27762000" + }, + { + "id": "37923", + "name": "Velamazán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44895000", + "longitude": "-2.69935000" + }, + { + "id": "37924", + "name": "Velascálvaro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.23028000", + "longitude": "-4.97242000" + }, + { + "id": "37925", + "name": "Velayos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.84157000", + "longitude": "-4.62324000" + }, + { + "id": "37928", + "name": "Velilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.55920000", + "longitude": "-5.00454000" + }, + { + "id": "37932", + "name": "Velilla de los Ajos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49058000", + "longitude": "-2.25579000" + }, + { + "id": "37933", + "name": "Velilla del Río Carrión", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.82611000", + "longitude": "-4.84626000" + }, + { + "id": "37935", + "name": "Velliza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57918000", + "longitude": "-4.94655000" + }, + { + "id": "37936", + "name": "Venialbo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38957000", + "longitude": "-5.53596000" + }, + { + "id": "37937", + "name": "Venta de Baños", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92110000", + "longitude": "-4.49089000" + }, + { + "id": "37943", + "name": "Ventosa de la Cuesta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.41110000", + "longitude": "-4.82932000" + }, + { + "id": "37944", + "name": "Ventosa del Río Almar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.92728000", + "longitude": "-5.34838000" + }, + { + "id": "37954", + "name": "Vertavillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83281000", + "longitude": "-4.32707000" + }, + { + "id": "37956", + "name": "Vezdemarbán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65480000", + "longitude": "-5.36609000" + }, + { + "id": "37957", + "name": "Viana de Cega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52927000", + "longitude": "-4.75245000" + }, + { + "id": "37958", + "name": "Viana de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53406000", + "longitude": "-2.46099000" + }, + { + "id": "38409", + "name": "Viñegra de Moraña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.85074000", + "longitude": "-4.92115000" + }, + { + "id": "37964", + "name": "Vidayanes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91011000", + "longitude": "-5.57424000" + }, + { + "id": "37965", + "name": "Videmala", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61299000", + "longitude": "-6.04056000" + }, + { + "id": "38007", + "name": "Vileña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62227000", + "longitude": "-3.32293000" + }, + { + "id": "38015", + "name": "Villabaruz de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01099000", + "longitude": "-4.99624000" + }, + { + "id": "38023", + "name": "Villabáñez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63097000", + "longitude": "-4.52192000" + }, + { + "id": "38017", + "name": "Villablino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.93932000", + "longitude": "-6.31943000" + }, + { + "id": "38019", + "name": "Villabraz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24658000", + "longitude": "-5.44593000" + }, + { + "id": "38020", + "name": "Villabrágima", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.82178000", + "longitude": "-5.11546000" + }, + { + "id": "38021", + "name": "Villabrázaro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05394000", + "longitude": "-5.72748000" + }, + { + "id": "38022", + "name": "Villabuena del Puente", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.38074000", + "longitude": "-5.40787000" + }, + { + "id": "38024", + "name": "Villacarralón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18999000", + "longitude": "-5.04324000" + }, + { + "id": "38027", + "name": "Villacastín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.77960000", + "longitude": "-4.41357000" + }, + { + "id": "38029", + "name": "Villacid de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08250000", + "longitude": "-5.12498000" + }, + { + "id": "38030", + "name": "Villacidaler", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22168000", + "longitude": "-4.97668000" + }, + { + "id": "38031", + "name": "Villaciervos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.76227000", + "longitude": "-2.62678000" + }, + { + "id": "38032", + "name": "Villaco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74022000", + "longitude": "-4.26817000" + }, + { + "id": "38033", + "name": "Villaconancio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.87174000", + "longitude": "-4.22379000" + }, + { + "id": "38036", + "name": "Villada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25111000", + "longitude": "-4.96708000" + }, + { + "id": "38037", + "name": "Villadangos del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51672000", + "longitude": "-5.76737000" + }, + { + "id": "38038", + "name": "Villadecanes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57973000", + "longitude": "-6.75971000" + }, + { + "id": "38039", + "name": "Villademor de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26964000", + "longitude": "-5.56808000" + }, + { + "id": "38040", + "name": "Villadepera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54700000", + "longitude": "-6.13305000" + }, + { + "id": "38041", + "name": "Villadiego", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51589000", + "longitude": "-4.00958000" + }, + { + "id": "38043", + "name": "Villaeles de Valdavia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56556000", + "longitude": "-4.58318000" + }, + { + "id": "38044", + "name": "Villaescusa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.20617000", + "longitude": "-5.46406000" + }, + { + "id": "38046", + "name": "Villaescusa de Roa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72727000", + "longitude": "-4.01720000" + }, + { + "id": "38047", + "name": "Villaescusa la Sombría", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41518000", + "longitude": "-3.41840000" + }, + { + "id": "38048", + "name": "Villaespasa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09991000", + "longitude": "-3.40436000" + }, + { + "id": "38069", + "name": "Villafáfila", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.84692000", + "longitude": "-5.61527000" + }, + { + "id": "38051", + "name": "Villaferrueña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09830000", + "longitude": "-5.85802000" + }, + { + "id": "38052", + "name": "Villaflor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.75865000", + "longitude": "-4.87379000" + }, + { + "id": "38053", + "name": "Villaflores", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.08397000", + "longitude": "-5.23436000" + }, + { + "id": "38054", + "name": "Villafrades de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07853000", + "longitude": "-4.97125000" + }, + { + "id": "38057", + "name": "Villafranca de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.43310000", + "longitude": "-5.30192000" + }, + { + "id": "38059", + "name": "Villafranca de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.49806000", + "longitude": "-5.23005000" + }, + { + "id": "38062", + "name": "Villafranca del Bierzo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60601000", + "longitude": "-6.81069000" + }, + { + "id": "38065", + "name": "Villafrechós", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89290000", + "longitude": "-5.21859000" + }, + { + "id": "38066", + "name": "Villafruela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91647000", + "longitude": "-3.91371000" + }, + { + "id": "38067", + "name": "Villafuerte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73431000", + "longitude": "-4.32365000" + }, + { + "id": "38070", + "name": "Villagalijo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34872000", + "longitude": "-3.19203000" + }, + { + "id": "38071", + "name": "Villagarcía de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78032000", + "longitude": "-5.19242000" + }, + { + "id": "38074", + "name": "Villagatón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63413000", + "longitude": "-6.16184000" + }, + { + "id": "38080", + "name": "Villagómez la Nueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15592000", + "longitude": "-5.14208000" + }, + { + "id": "38075", + "name": "Villageriz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11884000", + "longitude": "-5.95554000" + }, + { + "id": "38077", + "name": "Villagonzalo de Tormes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.89221000", + "longitude": "-5.49664000" + }, + { + "id": "38078", + "name": "Villagonzalo-Pedernales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30145000", + "longitude": "-3.73539000" + }, + { + "id": "38087", + "name": "Villahán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05031000", + "longitude": "-4.13104000" + }, + { + "id": "38085", + "name": "Villaherreros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38964000", + "longitude": "-4.46254000" + }, + { + "id": "38086", + "name": "Villahoz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07587000", + "longitude": "-3.91290000" + }, + { + "id": "38089", + "name": "Villalaco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.15569000", + "longitude": "-4.25940000" + }, + { + "id": "38090", + "name": "Villalar de los Comuneros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.54966000", + "longitude": "-5.13810000" + }, + { + "id": "38091", + "name": "Villalazán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49414000", + "longitude": "-5.58910000" + }, + { + "id": "38125", + "name": "Villalán de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01484000", + "longitude": "-5.23642000" + }, + { + "id": "38126", + "name": "Villalón de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.09994000", + "longitude": "-5.03440000" + }, + { + "id": "38092", + "name": "Villalba de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68243000", + "longitude": "-3.74443000" + }, + { + "id": "38093", + "name": "Villalba de Guardo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.72229000", + "longitude": "-4.82328000" + }, + { + "id": "38096", + "name": "Villalba de la Lampreana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.74327000", + "longitude": "-5.64094000" + }, + { + "id": "38097", + "name": "Villalba de la Loma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17472000", + "longitude": "-5.19023000" + }, + { + "id": "38099", + "name": "Villalba de los Alcores", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86361000", + "longitude": "-4.86063000" + }, + { + "id": "38101", + "name": "Villalba de los Llanos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80020000", + "longitude": "-5.97580000" + }, + { + "id": "38104", + "name": "Villalbarba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.60389000", + "longitude": "-5.21281000" + }, + { + "id": "38106", + "name": "Villalbilla de Burgos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34757000", + "longitude": "-3.78101000" + }, + { + "id": "38107", + "name": "Villalbilla de Gumiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.80621000", + "longitude": "-3.62584000" + }, + { + "id": "38108", + "name": "Villalcampo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52229000", + "longitude": "-6.04801000" + }, + { + "id": "38109", + "name": "Villalcázar de Sirga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31662000", + "longitude": "-4.54278000" + }, + { + "id": "38110", + "name": "Villalcón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29287000", + "longitude": "-4.85527000" + }, + { + "id": "38111", + "name": "Villaldemiro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24719000", + "longitude": "-3.98534000" + }, + { + "id": "38114", + "name": "Villalmanzo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04840000", + "longitude": "-3.74195000" + }, + { + "id": "38117", + "name": "Villalobón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03037000", + "longitude": "-4.50340000" + }, + { + "id": "38116", + "name": "Villalobos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94567000", + "longitude": "-5.47517000" + }, + { + "id": "38119", + "name": "Villalonso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59767000", + "longitude": "-5.29769000" + }, + { + "id": "38120", + "name": "Villalpando", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.86517000", + "longitude": "-5.41231000" + }, + { + "id": "38122", + "name": "Villalube", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.61005000", + "longitude": "-5.54545000" + }, + { + "id": "38123", + "name": "Villaluenga de la Vega", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52386000", + "longitude": "-4.76489000" + }, + { + "id": "38147", + "name": "Villamañán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32198000", + "longitude": "-5.58195000" + }, + { + "id": "38135", + "name": "Villamanín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.93864000", + "longitude": "-5.65669000" + }, + { + "id": "38129", + "name": "Villamandos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.18058000", + "longitude": "-5.59397000" + }, + { + "id": "38137", + "name": "Villamartín de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.01598000", + "longitude": "-4.66414000" + }, + { + "id": "38138", + "name": "Villamartín de Don Sancho", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56943000", + "longitude": "-5.06056000" + }, + { + "id": "38139", + "name": "Villamayor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99939000", + "longitude": "-5.69579000" + }, + { + "id": "38141", + "name": "Villamayor de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.89870000", + "longitude": "-5.35963000" + }, + { + "id": "38146", + "name": "Villamayor de los Montes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10565000", + "longitude": "-3.76542000" + }, + { + "id": "38145", + "name": "Villamayor de Treviño", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46048000", + "longitude": "-4.11923000" + }, + { + "id": "38148", + "name": "Villamediana", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05024000", + "longitude": "-4.36115000" + }, + { + "id": "38150", + "name": "Villamedianilla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16070000", + "longitude": "-4.14592000" + }, + { + "id": "38151", + "name": "Villamejil", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56205000", + "longitude": "-6.02514000" + }, + { + "id": "38152", + "name": "Villameriel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52822000", + "longitude": "-4.47572000" + }, + { + "id": "38156", + "name": "Villamiel de la Sierra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19124000", + "longitude": "-3.41771000" + }, + { + "id": "38158", + "name": "Villamol", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42766000", + "longitude": "-5.04832000" + }, + { + "id": "38159", + "name": "Villamontán de la Valduerna", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30962000", + "longitude": "-5.99656000" + }, + { + "id": "38160", + "name": "Villamor de los Escuderos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25244000", + "longitude": "-5.57485000" + }, + { + "id": "38161", + "name": "Villamoratiel de las Matas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39755000", + "longitude": "-5.30064000" + }, + { + "id": "38162", + "name": "Villamoronta", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.40337000", + "longitude": "-4.69899000" + }, + { + "id": "38164", + "name": "Villamuera de la Cueza", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.25843000", + "longitude": "-4.68860000" + }, + { + "id": "38165", + "name": "Villamuriel de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94690000", + "longitude": "-5.20717000" + }, + { + "id": "38166", + "name": "Villamuriel de Cerrato", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94935000", + "longitude": "-4.51584000" + }, + { + "id": "38226", + "name": "Villanázar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97398000", + "longitude": "-5.78043000" + }, + { + "id": "38167", + "name": "Villangómez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17961000", + "longitude": "-3.77419000" + }, + { + "id": "38225", + "name": "Villanuño de Valdavia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50775000", + "longitude": "-4.51887000" + }, + { + "id": "38168", + "name": "Villanubla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69877000", + "longitude": "-4.84173000" + }, + { + "id": "38172", + "name": "Villanueva de Argaño", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38045000", + "longitude": "-3.93353000" + }, + { + "id": "38174", + "name": "Villanueva de Azoague", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97607000", + "longitude": "-5.66400000" + }, + { + "id": "38177", + "name": "Villanueva de Campeán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35447000", + "longitude": "-5.77020000" + }, + { + "id": "38178", + "name": "Villanueva de Carazo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98275000", + "longitude": "-3.32428000" + }, + { + "id": "38181", + "name": "Villanueva de Duero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.51946000", + "longitude": "-4.86671000" + }, + { + "id": "38185", + "name": "Villanueva de Gómez", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.88269000", + "longitude": "-4.71650000" + }, + { + "id": "38182", + "name": "Villanueva de Gormaz", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.46740000", + "longitude": "-3.06223000" + }, + { + "id": "38183", + "name": "Villanueva de Gumiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.73778000", + "longitude": "-3.62658000" + }, + { + "id": "38197", + "name": "Villanueva de la Condesa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14914000", + "longitude": "-5.09550000" + }, + { + "id": "38206", + "name": "Villanueva de las Manzanas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47264000", + "longitude": "-5.48043000" + }, + { + "id": "38207", + "name": "Villanueva de las Peras", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.93478000", + "longitude": "-5.97942000" + }, + { + "id": "38209", + "name": "Villanueva de los Caballeros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.75916000", + "longitude": "-5.24786000" + }, + { + "id": "38190", + "name": "Villanueva de San Mancio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92842000", + "longitude": "-5.01200000" + }, + { + "id": "38193", + "name": "Villanueva de Teba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64890000", + "longitude": "-3.16313000" + }, + { + "id": "38211", + "name": "Villanueva del Aceral", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.04095000", + "longitude": "-4.85419000" + }, + { + "id": "38214", + "name": "Villanueva del Campillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.57646000", + "longitude": "-5.18002000" + }, + { + "id": "38215", + "name": "Villanueva del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98492000", + "longitude": "-5.40660000" + }, + { + "id": "38216", + "name": "Villanueva del Conde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51039000", + "longitude": "-6.01210000" + }, + { + "id": "38220", + "name": "Villanueva del Rebollar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24114000", + "longitude": "-4.74288000" + }, + { + "id": "38228", + "name": "Villaobispo de Otero", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50065000", + "longitude": "-6.05809000" + }, + { + "id": "38230", + "name": "Villaprovedo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51674000", + "longitude": "-4.39645000" + }, + { + "id": "38231", + "name": "Villaquejida", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14500000", + "longitude": "-5.59699000" + }, + { + "id": "38232", + "name": "Villaquilambre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64685000", + "longitude": "-5.55835000" + }, + { + "id": "38233", + "name": "Villaquirán de la Puebla", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.28287000", + "longitude": "-4.10037000" + }, + { + "id": "38234", + "name": "Villaquirán de los Infantes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.22744000", + "longitude": "-4.00864000" + }, + { + "id": "38236", + "name": "Villar de Ciervo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.73772000", + "longitude": "-6.73850000" + }, + { + "id": "38237", + "name": "Villar de Corneja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47462000", + "longitude": "-5.43307000" + }, + { + "id": "38239", + "name": "Villar de Fallaves", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.92503000", + "longitude": "-5.34039000" + }, + { + "id": "38240", + "name": "Villar de Gallimazo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95367000", + "longitude": "-5.28819000" + }, + { + "id": "38248", + "name": "Villar de la Yegua", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72554000", + "longitude": "-6.70364000" + }, + { + "id": "38242", + "name": "Villar de Peralonso", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03223000", + "longitude": "-6.22284000" + }, + { + "id": "38245", + "name": "Villar de Samaniego", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.11667000", + "longitude": "-6.43333000" + }, + { + "id": "38250", + "name": "Villar del Ala", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91638000", + "longitude": "-2.56651000" + }, + { + "id": "38252", + "name": "Villar del Buey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.33024000", + "longitude": "-6.18935000" + }, + { + "id": "38253", + "name": "Villar del Campo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.78881000", + "longitude": "-2.14955000" + }, + { + "id": "38261", + "name": "Villar del Río", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07574000", + "longitude": "-2.35082000" + }, + { + "id": "38263", + "name": "Villaralbo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.49224000", + "longitude": "-5.68359000" + }, + { + "id": "38265", + "name": "Villardeciervos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94206000", + "longitude": "-6.28647000" + }, + { + "id": "38266", + "name": "Villardefrades", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.72358000", + "longitude": "-5.25513000" + }, + { + "id": "38267", + "name": "Villardiegua de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.53543000", + "longitude": "-6.18327000" + }, + { + "id": "38269", + "name": "Villardondiego", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.58483000", + "longitude": "-5.37707000" + }, + { + "id": "38275", + "name": "Villarejo de Órbigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44559000", + "longitude": "-5.90462000" + }, + { + "id": "38276", + "name": "Villarejo del Valle", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.28638000", + "longitude": "-4.99674000" + }, + { + "id": "38281", + "name": "Villares de Órbigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46955000", + "longitude": "-5.91002000" + }, + { + "id": "38280", + "name": "Villares de la Reina", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00832000", + "longitude": "-5.64881000" + }, + { + "id": "38279", + "name": "Villares de Yeltes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.86594000", + "longitude": "-6.41300000" + }, + { + "id": "38284", + "name": "Villariezo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.26965000", + "longitude": "-3.73272000" + }, + { + "id": "38285", + "name": "Villarino de los Aires", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.27102000", + "longitude": "-6.46847000" + }, + { + "id": "38287", + "name": "Villarmayor", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01514000", + "longitude": "-5.97151000" + }, + { + "id": "38288", + "name": "Villarmentero de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29777000", + "longitude": "-4.49992000" + }, + { + "id": "38289", + "name": "Villarmentero de Esgueva", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.68515000", + "longitude": "-4.54636000" + }, + { + "id": "38290", + "name": "Villarmuerto", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.05620000", + "longitude": "-6.36294000" + }, + { + "id": "38292", + "name": "Villarrabé", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42090000", + "longitude": "-4.78445000" + }, + { + "id": "38293", + "name": "Villarramiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.04301000", + "longitude": "-4.91215000" + }, + { + "id": "38305", + "name": "Villarrín de Campos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.79522000", + "longitude": "-5.63898000" + }, + { + "id": "38310", + "name": "Villasabariego", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.53288000", + "longitude": "-5.41322000" + }, + { + "id": "38311", + "name": "Villasana de Mena", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "43.10017000", + "longitude": "-3.28253000" + }, + { + "id": "38312", + "name": "Villasandino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37072000", + "longitude": "-4.10975000" + }, + { + "id": "38313", + "name": "Villasarracino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.41207000", + "longitude": "-4.49633000" + }, + { + "id": "38314", + "name": "Villasayas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.35291000", + "longitude": "-2.61011000" + }, + { + "id": "38315", + "name": "Villasbuenas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06263000", + "longitude": "-6.59662000" + }, + { + "id": "38317", + "name": "Villasdardo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00449000", + "longitude": "-6.16303000" + }, + { + "id": "38318", + "name": "Villaseca de Arciel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.62430000", + "longitude": "-2.16176000" + }, + { + "id": "38322", + "name": "Villaseco de los Gamitos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03621000", + "longitude": "-6.11323000" + }, + { + "id": "38323", + "name": "Villaseco de los Reyes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.16262000", + "longitude": "-6.18426000" + }, + { + "id": "38324", + "name": "Villaselán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56105000", + "longitude": "-5.04820000" + }, + { + "id": "38326", + "name": "Villasexmir", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.63943000", + "longitude": "-5.06470000" + }, + { + "id": "38327", + "name": "Villasila de Valdavia", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.53192000", + "longitude": "-4.55884000" + }, + { + "id": "38328", + "name": "Villasrubias", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33822000", + "longitude": "-6.63920000" + }, + { + "id": "38331", + "name": "Villatoro", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55609000", + "longitude": "-5.11262000" + }, + { + "id": "38333", + "name": "Villatuelda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81499000", + "longitude": "-3.88054000" + }, + { + "id": "38335", + "name": "Villaturde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37769000", + "longitude": "-4.67085000" + }, + { + "id": "38336", + "name": "Villaturiel", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.51819000", + "longitude": "-5.48615000" + }, + { + "id": "38337", + "name": "Villaumbrales", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.08873000", + "longitude": "-4.61384000" + }, + { + "id": "38339", + "name": "Villavaquerín", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.66357000", + "longitude": "-4.46287000" + }, + { + "id": "38341", + "name": "Villavellid", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69218000", + "longitude": "-5.27630000" + }, + { + "id": "38342", + "name": "Villavendimio", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.57812000", + "longitude": "-5.34287000" + }, + { + "id": "38345", + "name": "Villaverde de Guareña", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.06406000", + "longitude": "-5.52492000" + }, + { + "id": "38346", + "name": "Villaverde de Medina", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.30687000", + "longitude": "-5.02625000" + }, + { + "id": "38347", + "name": "Villaverde de Montejo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.52225000", + "longitude": "-3.65452000" + }, + { + "id": "38349", + "name": "Villaverde del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16075000", + "longitude": "-3.81421000" + }, + { + "id": "38352", + "name": "Villaverde-Mogina", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16041000", + "longitude": "-4.05024000" + }, + { + "id": "38353", + "name": "Villaveza de Valverde", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.94516000", + "longitude": "-5.84849000" + }, + { + "id": "38354", + "name": "Villaveza del Agua", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91922000", + "longitude": "-5.67871000" + }, + { + "id": "38355", + "name": "Villavicencio de los Caballeros", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05893000", + "longitude": "-5.23566000" + }, + { + "id": "38359", + "name": "Villavieja de Yeltes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.87573000", + "longitude": "-6.46792000" + }, + { + "id": "38361", + "name": "Villaviudas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96227000", + "longitude": "-4.34200000" + }, + { + "id": "38362", + "name": "Villazala", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36146000", + "longitude": "-5.85600000" + }, + { + "id": "38363", + "name": "Villazanzo de Valderaduey", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.53592000", + "longitude": "-4.96462000" + }, + { + "id": "38364", + "name": "Villazopeque", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19845000", + "longitude": "-4.01688000" + }, + { + "id": "38380", + "name": "Villán de Tordesillas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.59311000", + "longitude": "-4.92214000" + }, + { + "id": "38381", + "name": "Villárdiga", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.81950000", + "longitude": "-5.46439000" + }, + { + "id": "38365", + "name": "Villegas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.46866000", + "longitude": "-4.01759000" + }, + { + "id": "38366", + "name": "Villeguillo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.25290000", + "longitude": "-4.57951000" + }, + { + "id": "38370", + "name": "Villodre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21161000", + "longitude": "-4.24484000" + }, + { + "id": "38371", + "name": "Villodrigo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.14436000", + "longitude": "-4.09527000" + }, + { + "id": "38372", + "name": "Villoldo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24782000", + "longitude": "-4.59592000" + }, + { + "id": "38376", + "name": "Villoría", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.99435000", + "longitude": "-5.37363000" + }, + { + "id": "38374", + "name": "Villoruebo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16874000", + "longitude": "-3.44159000" + }, + { + "id": "38375", + "name": "Villoruela", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00860000", + "longitude": "-5.39381000" + }, + { + "id": "38378", + "name": "Villota del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55234000", + "longitude": "-4.84893000" + }, + { + "id": "38379", + "name": "Villovieco", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.29478000", + "longitude": "-4.48122000" + }, + { + "id": "38383", + "name": "Viloria", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.44604000", + "longitude": "-4.38356000" + }, + { + "id": "38384", + "name": "Viloria de Rioja", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42608000", + "longitude": "-3.10056000" + }, + { + "id": "38385", + "name": "Vilvestre", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.10636000", + "longitude": "-6.72725000" + }, + { + "id": "38386", + "name": "Vilviestre del Pinar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.95033000", + "longitude": "-3.07803000" + }, + { + "id": "38396", + "name": "Vinuesa", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.91032000", + "longitude": "-2.76483000" + }, + { + "id": "38401", + "name": "Vita", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.81178000", + "longitude": "-5.00583000" + }, + { + "id": "38402", + "name": "Vitigudino", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.00912000", + "longitude": "-6.43404000" + }, + { + "id": "38407", + "name": "Vizcaínos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10359000", + "longitude": "-3.26698000" + }, + { + "id": "38408", + "name": "Vizmanos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02342000", + "longitude": "-2.40869000" + }, + { + "id": "38412", + "name": "Vozmediano", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.83752000", + "longitude": "-1.85580000" + }, + { + "id": "38419", + "name": "Wamba", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.67525000", + "longitude": "-4.91748000" + }, + { + "id": "38426", + "name": "Yanguas", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10171000", + "longitude": "-2.33986000" + }, + { + "id": "38427", + "name": "Yanguas de Eresma", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.07201000", + "longitude": "-4.23905000" + }, + { + "id": "38432", + "name": "Yecla de Yeltes", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.95917000", + "longitude": "-6.48904000" + }, + { + "id": "38434", + "name": "Yelo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.21667000", + "longitude": "-2.51667000" + }, + { + "id": "38448", + "name": "Zael", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.10587000", + "longitude": "-3.82623000" + }, + { + "id": "38462", + "name": "Zamarra", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51893000", + "longitude": "-6.45248000" + }, + { + "id": "38463", + "name": "Zamayón", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.14861000", + "longitude": "-5.83054000" + }, + { + "id": "38465", + "name": "Zamora", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.50633000", + "longitude": "-5.74456000" + }, + { + "id": "38468", + "name": "Zapardiel de la Cañada", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60648000", + "longitude": "-5.33791000" + }, + { + "id": "38469", + "name": "Zapardiel de la Ribera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35554000", + "longitude": "-5.32826000" + }, + { + "id": "38471", + "name": "Zarapicos", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.03830000", + "longitude": "-5.84526000" + }, + { + "id": "38473", + "name": "Zaratán", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.65971000", + "longitude": "-4.78417000" + }, + { + "id": "38486", + "name": "Zarzuela del Monte", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "40.80888000", + "longitude": "-4.33613000" + }, + { + "id": "38487", + "name": "Zarzuela del Pinar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.26018000", + "longitude": "-4.18457000" + }, + { + "id": "38489", + "name": "Zazuar", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.69528000", + "longitude": "-3.55451000" + }, + { + "id": "38496", + "name": "Zorita de la Frontera", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "41.01453000", + "longitude": "-5.19659000" + }, + { + "id": "38500", + "name": "Zotes del Páramo", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27268000", + "longitude": "-5.73617000" + }, + { + "id": "38511", + "name": "Zuñeda", + "state_id": 1200, + "state_code": "LE", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60501000", + "longitude": "-3.22632000" + }, + { + "id": "35391", + "name": "Melilla", + "state_id": 1159, + "state_code": "ML", + "country_id": 207, + "country_code": "ES", + "latitude": "35.29369000", + "longitude": "-2.93833000" + }, + { + "id": "32597", + "name": "Añorbe", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65732000", + "longitude": "-1.71490000" + }, + { + "id": "31920", + "name": "Abáigar", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64823000", + "longitude": "-2.14182000" + }, + { + "id": "31933", + "name": "Adiós", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68635000", + "longitude": "-1.73532000" + }, + { + "id": "31962", + "name": "Aguilar de Codés", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61249000", + "longitude": "-2.38987000" + }, + { + "id": "32256", + "name": "Allo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56738000", + "longitude": "-2.02052000" + }, + { + "id": "32341", + "name": "Altsasu", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.89999000", + "longitude": "-2.16516000" + }, + { + "id": "32370", + "name": "Ancín", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66047000", + "longitude": "-2.18885000" + }, + { + "id": "32374", + "name": "Andosilla", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38144000", + "longitude": "-1.67305000" + }, + { + "id": "32397", + "name": "Aoiz", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.78633000", + "longitude": "-1.37252000" + }, + { + "id": "32405", + "name": "Aranarache", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77979000", + "longitude": "-2.22924000" + }, + { + "id": "32413", + "name": "Arano", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.19956000", + "longitude": "-1.89569000" + }, + { + "id": "32416", + "name": "Aras", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56172000", + "longitude": "-2.35600000" + }, + { + "id": "32424", + "name": "Arbizu", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.91545000", + "longitude": "-2.03917000" + }, + { + "id": "32443", + "name": "Arellano", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60598000", + "longitude": "-2.04653000" + }, + { + "id": "32457", + "name": "Areso", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.08209000", + "longitude": "-1.95198000" + }, + { + "id": "32473", + "name": "Arguedas", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.17759000", + "longitude": "-1.59719000" + }, + { + "id": "32477", + "name": "Aria", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.95283000", + "longitude": "-1.26584000" + }, + { + "id": "32486", + "name": "Armañanzas", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55963000", + "longitude": "-2.28476000" + }, + { + "id": "32517", + "name": "Arróniz", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58823000", + "longitude": "-2.09237000" + }, + { + "id": "32516", + "name": "Arruazu", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.92186000", + "longitude": "-2.00157000" + }, + { + "id": "32519", + "name": "Artajona", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58867000", + "longitude": "-1.76504000" + }, + { + "id": "32521", + "name": "Artazu", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69228000", + "longitude": "-1.83954000" + }, + { + "id": "32551", + "name": "Atarrabia", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.83230000", + "longitude": "-1.60735000" + }, + { + "id": "32572", + "name": "Ayegui", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65656000", + "longitude": "-2.03934000" + }, + { + "id": "32580", + "name": "Azagra", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.30000000", + "longitude": "-1.90000000" + }, + { + "id": "32590", + "name": "Azuelo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60844000", + "longitude": "-2.34987000" + }, + { + "id": "32617", + "name": "Bakaiku", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.89244000", + "longitude": "-2.10251000" + }, + { + "id": "32640", + "name": "Barañáin", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.80567000", + "longitude": "-1.67731000" + }, + { + "id": "32685", + "name": "Barásoain", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60339000", + "longitude": "-1.64658000" + }, + { + "id": "32663", + "name": "Bargota", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55982000", + "longitude": "-2.31067000" + }, + { + "id": "32664", + "name": "Barillas", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "41.96667000", + "longitude": "-1.63333000" + }, + { + "id": "32731", + "name": "Beire", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45415000", + "longitude": "-1.62101000" + }, + { + "id": "32735", + "name": "Belascoáin", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.75619000", + "longitude": "-1.83227000" + }, + { + "id": "32830", + "name": "Bera", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.28177000", + "longitude": "-1.68632000" + }, + { + "id": "32836", + "name": "Berbinzana", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52779000", + "longitude": "-1.83419000" + }, + { + "id": "32852", + "name": "Beriáin", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73347000", + "longitude": "-1.64448000" + }, + { + "id": "32864", + "name": "Berriobeiti", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.85000000", + "longitude": "-1.70000000" + }, + { + "id": "32865", + "name": "Berriozar", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.83067000", + "longitude": "-1.66648000" + }, + { + "id": "32880", + "name": "Betelu", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.02555000", + "longitude": "-1.98029000" + }, + { + "id": "33046", + "name": "Buñuel", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "41.98009000", + "longitude": "-1.44503000" + }, + { + "id": "33031", + "name": "Burlata", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.82562000", + "longitude": "-1.61671000" + }, + { + "id": "33101", + "name": "Cabredo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62966000", + "longitude": "-2.41133000" + }, + { + "id": "33118", + "name": "Cadreita", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.21667000", + "longitude": "-1.68333000" + }, + { + "id": "33263", + "name": "Caparroso", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.34129000", + "longitude": "-1.64962000" + }, + { + "id": "33292", + "name": "Carcastillo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.37908000", + "longitude": "-1.44376000" + }, + { + "id": "33386", + "name": "Cascante", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99769000", + "longitude": "-1.68098000" + }, + { + "id": "33399", + "name": "Castejón", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.16912000", + "longitude": "-1.68951000" + }, + { + "id": "33467", + "name": "Castillonuevo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68270000", + "longitude": "-1.03121000" + }, + { + "id": "33895", + "name": "Cárcar", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39314000", + "longitude": "-1.97904000" + }, + { + "id": "33899", + "name": "Cáseda", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52255000", + "longitude": "-1.36636000" + }, + { + "id": "33679", + "name": "Cintruénigo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.07937000", + "longitude": "-1.80458000" + }, + { + "id": "33682", + "name": "Cirauqui", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67596000", + "longitude": "-1.89115000" + }, + { + "id": "33684", + "name": "Ciriza", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.79019000", + "longitude": "-1.82822000" + }, + { + "id": "33703", + "name": "Cizur Mayor", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.78795000", + "longitude": "-1.69065000" + }, + { + "id": "33785", + "name": "Corella", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.11507000", + "longitude": "-1.78563000" + }, + { + "id": "33929", + "name": "Desojo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.58790000", + "longitude": "-2.27438000" + }, + { + "id": "33933", + "name": "Dicastillo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.59647000", + "longitude": "-2.02666000" + }, + { + "id": "33943", + "name": "Doneztebe", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.13333000", + "longitude": "-1.66667000" + }, + { + "id": "33969", + "name": "Echarri", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.78017000", + "longitude": "-1.82525000" + }, + { + "id": "33970", + "name": "Echarri-Aranaz", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.90791000", + "longitude": "-2.06474000" + }, + { + "id": "34036", + "name": "Elgorriaga", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.13858000", + "longitude": "-1.68657000" + }, + { + "id": "34039", + "name": "Elorz", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.73258000", + "longitude": "-1.56152000" + }, + { + "id": "34065", + "name": "Enériz", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67095000", + "longitude": "-1.72794000" + }, + { + "id": "34068", + "name": "Ermitagaña", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81084000", + "longitude": "-1.66409000" + }, + { + "id": "34099", + "name": "Eslava", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56459000", + "longitude": "-1.45947000" + }, + { + "id": "34133", + "name": "Espronceda", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.59707000", + "longitude": "-2.30524000" + }, + { + "id": "34139", + "name": "Estella-Lizarra", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67182000", + "longitude": "-2.03226000" + }, + { + "id": "34151", + "name": "Etayo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61695000", + "longitude": "-2.15447000" + }, + { + "id": "34152", + "name": "Eulate", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77641000", + "longitude": "-2.20638000" + }, + { + "id": "34158", + "name": "Falces", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38966000", + "longitude": "-1.79321000" + }, + { + "id": "34193", + "name": "Fitero", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.05770000", + "longitude": "-1.85756000" + }, + { + "id": "34214", + "name": "Fontellas", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02694000", + "longitude": "-1.57648000" + }, + { + "id": "34365", + "name": "Funes", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.31562000", + "longitude": "-1.80017000" + }, + { + "id": "34366", + "name": "Fustiñana", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.02087000", + "longitude": "-1.48526000" + }, + { + "id": "34374", + "name": "Galar", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.76147000", + "longitude": "-1.69881000" + }, + { + "id": "34394", + "name": "Gallipienzo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52450000", + "longitude": "-1.41115000" + }, + { + "id": "34429", + "name": "Garínoain", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60036000", + "longitude": "-1.64434000" + }, + { + "id": "34413", + "name": "Garde", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.78937000", + "longitude": "-0.92589000" + }, + { + "id": "34422", + "name": "Garralda", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.94818000", + "longitude": "-1.28624000" + }, + { + "id": "34452", + "name": "Genevilla", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64520000", + "longitude": "-2.39021000" + }, + { + "id": "34491", + "name": "Goñi", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.85167000", + "longitude": "-1.90358000" + }, + { + "id": "34477", + "name": "Goizueta", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.17187000", + "longitude": "-1.86411000" + }, + { + "id": "34550", + "name": "Guirguillano", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.71725000", + "longitude": "-1.87798000" + }, + { + "id": "34682", + "name": "Huarte-Uharte", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.83035000", + "longitude": "-1.59087000" + }, + { + "id": "34734", + "name": "Igantzi", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.22526000", + "longitude": "-1.70048000" + }, + { + "id": "34741", + "name": "Igúzquiza", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64545000", + "longitude": "-2.08551000" + }, + { + "id": "34758", + "name": "Irañeta", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.92287000", + "longitude": "-1.94595000" + }, + { + "id": "34774", + "name": "Ituren", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.13238000", + "longitude": "-1.72063000" + }, + { + "id": "34775", + "name": "Iturmendi", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.88993000", + "longitude": "-2.11916000" + }, + { + "id": "34776", + "name": "Iturrama", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.80847000", + "longitude": "-1.65825000" + }, + { + "id": "34809", + "name": "Javier", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.59119000", + "longitude": "-1.20884000" + }, + { + "id": "34972", + "name": "Lapoblación", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60478000", + "longitude": "-2.46008000" + }, + { + "id": "34978", + "name": "Larraga", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55841000", + "longitude": "-1.84954000" + }, + { + "id": "34979", + "name": "Larraona", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77970000", + "longitude": "-2.25682000" + }, + { + "id": "35008", + "name": "Lazagurría", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.49286000", + "longitude": "-2.24018000" + }, + { + "id": "35010", + "name": "Leache", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60718000", + "longitude": "-1.40728000" + }, + { + "id": "35022", + "name": "Legarda", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.71183000", + "longitude": "-1.76846000" + }, + { + "id": "35023", + "name": "Legaria", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.64924000", + "longitude": "-2.17392000" + }, + { + "id": "35033", + "name": "Lerín", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48318000", + "longitude": "-1.97184000" + }, + { + "id": "35031", + "name": "Lerga", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56781000", + "longitude": "-1.50110000" + }, + { + "id": "35044", + "name": "Lezáun", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77739000", + "longitude": "-1.99385000" + }, + { + "id": "35061", + "name": "Liédena", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61943000", + "longitude": "-1.27579000" + }, + { + "id": "35060", + "name": "Lizoáin", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.79868000", + "longitude": "-1.46753000" + }, + { + "id": "35098", + "name": "Lodosa", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42269000", + "longitude": "-2.07741000" + }, + { + "id": "35117", + "name": "Los Arcos", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57076000", + "longitude": "-2.19275000" + }, + { + "id": "35162", + "name": "Lumbier", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65303000", + "longitude": "-1.30669000" + }, + { + "id": "35362", + "name": "Mañeru", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67001000", + "longitude": "-1.86297000" + }, + { + "id": "35280", + "name": "Marañón", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62941000", + "longitude": "-2.43931000" + }, + { + "id": "35286", + "name": "Marcilla", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.32794000", + "longitude": "-1.73714000" + }, + { + "id": "35705", + "name": "Mélida", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.35869000", + "longitude": "-1.54888000" + }, + { + "id": "35399", + "name": "Mendavia", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.44335000", + "longitude": "-2.20087000" + }, + { + "id": "35401", + "name": "Mendigorría", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62822000", + "longitude": "-1.83450000" + }, + { + "id": "35413", + "name": "Metauten", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67714000", + "longitude": "-2.13015000" + }, + { + "id": "35428", + "name": "Milagro", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.24160000", + "longitude": "-1.76588000" + }, + { + "id": "35443", + "name": "Mirafuentes", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62297000", + "longitude": "-2.27966000" + }, + { + "id": "35448", + "name": "Miranda de Arga", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.48337000", + "longitude": "-1.82759000" + }, + { + "id": "35520", + "name": "Monreal", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70421000", + "longitude": "-1.50785000" + }, + { + "id": "35626", + "name": "Morentin", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61286000", + "longitude": "-2.01393000" + }, + { + "id": "35670", + "name": "Murchante", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.03185000", + "longitude": "-1.65582000" + }, + { + "id": "35677", + "name": "Murieta", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65618000", + "longitude": "-2.15452000" + }, + { + "id": "35679", + "name": "Murillo el Fruto", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.39272000", + "longitude": "-1.46034000" + }, + { + "id": "35687", + "name": "Muruzábal", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69051000", + "longitude": "-1.76931000" + }, + { + "id": "35784", + "name": "Navascués", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.71758000", + "longitude": "-1.11744000" + }, + { + "id": "35793", + "name": "Nazar", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63686000", + "longitude": "-2.27966000" + }, + { + "id": "35852", + "name": "Obanos", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.68071000", + "longitude": "-1.78493000" + }, + { + "id": "35858", + "name": "Oco", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63828000", + "longitude": "-2.16476000" + }, + { + "id": "35873", + "name": "Olazagutía", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.87584000", + "longitude": "-2.19538000" + }, + { + "id": "35920", + "name": "Olóriz", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63522000", + "longitude": "-1.61276000" + }, + { + "id": "35877", + "name": "Olejua", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62329000", + "longitude": "-2.14202000" + }, + { + "id": "35882", + "name": "Olite", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47971000", + "longitude": "-1.65196000" + }, + { + "id": "35913", + "name": "Oltza", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.85000000", + "longitude": "-1.76667000" + }, + { + "id": "35967", + "name": "Orísoain", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.60122000", + "longitude": "-1.60403000" + }, + { + "id": "35933", + "name": "Orbara", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.96728000", + "longitude": "-1.24213000" + }, + { + "id": "35954", + "name": "Orkoien", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.82380000", + "longitude": "-1.70485000" + }, + { + "id": "35956", + "name": "Oronz", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.86873000", + "longitude": "-1.09683000" + }, + { + "id": "35976", + "name": "Oteiza", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61905000", + "longitude": "-1.95385000" + }, + { + "id": "36045", + "name": "Pamplona", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81687000", + "longitude": "-1.64323000" + }, + { + "id": "36142", + "name": "Peralta", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33834000", + "longitude": "-1.80035000" + }, + { + "id": "36156", + "name": "Petilla de Aragón", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.45000000", + "longitude": "-1.11667000" + }, + { + "id": "36183", + "name": "Piedramillera", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.63200000", + "longitude": "-2.20416000" + }, + { + "id": "36223", + "name": "Pitillas", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.42172000", + "longitude": "-1.62017000" + }, + { + "id": "36355", + "name": "Primer Ensanche", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81483000", + "longitude": "-1.64898000" + }, + { + "id": "36381", + "name": "Provincia de Navarra", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.82330000", + "longitude": "-1.65138000" + }, + { + "id": "36439", + "name": "Puente la Reina", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.67291000", + "longitude": "-1.81412000" + }, + { + "id": "36459", + "name": "Pueyo", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.56506000", + "longitude": "-1.64826000" + }, + { + "id": "36610", + "name": "Ribaforada", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "41.99814000", + "longitude": "-1.51272000" + }, + { + "id": "36758", + "name": "Saldías", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.08858000", + "longitude": "-1.77946000" + }, + { + "id": "36764", + "name": "Salinas de Oro", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.77487000", + "longitude": "-1.88999000" + }, + { + "id": "36795", + "name": "San Adrián", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.33433000", + "longitude": "-1.93509000" + }, + { + "id": "36869", + "name": "San Martín de Unx", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52473000", + "longitude": "-1.56091000" + }, + { + "id": "36946", + "name": "Sangüesa\/Zangoza", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.57483000", + "longitude": "-1.28283000" + }, + { + "id": "36950", + "name": "Sansol", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55362000", + "longitude": "-2.26676000" + }, + { + "id": "37103", + "name": "Santacara", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.36667000", + "longitude": "-1.63333000" + }, + { + "id": "37169", + "name": "Sarriguren", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81292000", + "longitude": "-1.59815000" + }, + { + "id": "37174", + "name": "Sartaguda", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.38333000", + "longitude": "-2.05709000" + }, + { + "id": "37193", + "name": "Segundo Ensanche", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.81390000", + "longitude": "-1.64295000" + }, + { + "id": "37232", + "name": "Sesma", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.47748000", + "longitude": "-2.08353000" + }, + { + "id": "37303", + "name": "Sorlada", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.61507000", + "longitude": "-2.21525000" + }, + { + "id": "37348", + "name": "Tafalla", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.52687000", + "longitude": "-1.67446000" + }, + { + "id": "37428", + "name": "Tirapu", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65740000", + "longitude": "-1.70263000" + }, + { + "id": "37579", + "name": "Torres del Río", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.55162000", + "longitude": "-2.27285000" + }, + { + "id": "37648", + "name": "Tudela", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.06166000", + "longitude": "-1.60452000" + }, + { + "id": "37653", + "name": "Tulebras", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "41.97695000", + "longitude": "-1.67618000" + }, + { + "id": "37677", + "name": "Ujué", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.50000000", + "longitude": "-1.50000000" + }, + { + "id": "37689", + "name": "Unzué", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.65252000", + "longitude": "-1.62598000" + }, + { + "id": "37701", + "name": "Urzainqui", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.83029000", + "longitude": "-0.94617000" + }, + { + "id": "37709", + "name": "Uterga", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70981000", + "longitude": "-1.76004000" + }, + { + "id": "37879", + "name": "Valtierra", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.19653000", + "longitude": "-1.63459000" + }, + { + "id": "38055", + "name": "Villafranca", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.27933000", + "longitude": "-1.74628000" + }, + { + "id": "38143", + "name": "Villamayor de Monjardín", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62937000", + "longitude": "-2.10503000" + }, + { + "id": "38334", + "name": "Villatuerta", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.66022000", + "longitude": "-1.99247000" + }, + { + "id": "38436", + "name": "Yerri", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.70161000", + "longitude": "-1.93806000" + }, + { + "id": "38437", + "name": "Yesa", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.62025000", + "longitude": "-1.20360000" + }, + { + "id": "38513", + "name": "Zúñiga", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "42.69247000", + "longitude": "-2.29982000" + }, + { + "id": "38502", + "name": "Zubieta", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.12473000", + "longitude": "-1.74219000" + }, + { + "id": "38506", + "name": "Zugarramurdi", + "state_id": 1204, + "state_code": "NC", + "country_id": 207, + "country_code": "ES", + "latitude": "43.26964000", + "longitude": "-1.54113000" + }, + { + "id": "31903", + "name": "Abanilla", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.20537000", + "longitude": "-1.04153000" + }, + { + "id": "31905", + "name": "Abarán", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.20551000", + "longitude": "-1.39907000" + }, + { + "id": "32057", + "name": "Albudeite", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.02895000", + "longitude": "-1.38664000" + }, + { + "id": "32084", + "name": "Alcantarilla", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.96939000", + "longitude": "-1.21714000" + }, + { + "id": "32182", + "name": "Aledo", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.79341000", + "longitude": "-1.57356000" + }, + { + "id": "32229", + "name": "Alguazas", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.05356000", + "longitude": "-1.25051000" + }, + { + "id": "32236", + "name": "Alhama de Murcia", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.85103000", + "longitude": "-1.42507000" + }, + { + "id": "32430", + "name": "Archena", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.11631000", + "longitude": "-1.30043000" + }, + { + "id": "32546", + "name": "Atamaría", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.59989000", + "longitude": "-0.80682000" + }, + { + "id": "38574", + "name": "Águilas", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.40630000", + "longitude": "-1.58289000" + }, + { + "id": "32677", + "name": "Barrio de la Concepción", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.60000000", + "longitude": "-1.00000000" + }, + { + "id": "32800", + "name": "Beniel", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.04636000", + "longitude": "-1.00233000" + }, + { + "id": "32905", + "name": "Blanca", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.17910000", + "longitude": "-1.37473000" + }, + { + "id": "33018", + "name": "Bullas", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.04667000", + "longitude": "-1.67227000" + }, + { + "id": "33131", + "name": "Calasparra", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.22997000", + "longitude": "-1.69986000" + }, + { + "id": "33211", + "name": "Campos del Río", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.03966000", + "longitude": "-1.35306000" + }, + { + "id": "33277", + "name": "Caravaca", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.10558000", + "longitude": "-1.86343000" + }, + { + "id": "33336", + "name": "Cartagena", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.60512000", + "longitude": "-0.98623000" + }, + { + "id": "33560", + "name": "Cehegín", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.09242000", + "longitude": "-1.79850000" + }, + { + "id": "33610", + "name": "Ceuti", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.07859000", + "longitude": "-1.27467000" + }, + { + "id": "33659", + "name": "Cieza", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.23998000", + "longitude": "-1.41987000" + }, + { + "id": "33706", + "name": "Cobatillas", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.05545000", + "longitude": "-1.07683000" + }, + { + "id": "34009", + "name": "El Plan", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.65000000", + "longitude": "-1.01667000" + }, + { + "id": "34104", + "name": "Esparragal", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.03333000", + "longitude": "-1.08333000" + }, + { + "id": "34231", + "name": "Fortuna", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.18140000", + "longitude": "-1.12590000" + }, + { + "id": "34308", + "name": "Fuente-Álamo de Murcia", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.72389000", + "longitude": "-1.16972000" + }, + { + "id": "34828", + "name": "Jumilla", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.47917000", + "longitude": "-1.32500000" + }, + { + "id": "34893", + "name": "La Manga del Mar Menor", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.64129000", + "longitude": "-0.71651000" + }, + { + "id": "34931", + "name": "La Torrecilla", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.62363000", + "longitude": "-1.72785000" + }, + { + "id": "34932", + "name": "La Unión", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.61915000", + "longitude": "-0.87799000" + }, + { + "id": "34993", + "name": "Las Torres de Cotillas", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.02822000", + "longitude": "-1.24188000" + }, + { + "id": "35046", + "name": "Librilla", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.88642000", + "longitude": "-1.35557000" + }, + { + "id": "35092", + "name": "Lo Pagán", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.81761000", + "longitude": "-0.78832000" + }, + { + "id": "35113", + "name": "Lorca", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.67119000", + "longitude": "-1.70170000" + }, + { + "id": "35115", + "name": "Lorquí", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.08261000", + "longitude": "-1.25103000" + }, + { + "id": "35116", + "name": "Los Alcázares", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.74425000", + "longitude": "-0.85041000" + }, + { + "id": "35121", + "name": "Los Gabatos", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.63333000", + "longitude": "-1.00000000" + }, + { + "id": "35125", + "name": "Los Martínez", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.81841000", + "longitude": "-1.07880000" + }, + { + "id": "35356", + "name": "Mazarrón", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.59920000", + "longitude": "-1.31493000" + }, + { + "id": "35478", + "name": "Molina de Segura", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.05456000", + "longitude": "-1.20763000" + }, + { + "id": "35618", + "name": "Moratalla", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.18928000", + "longitude": "-1.89183000" + }, + { + "id": "35661", + "name": "Mula", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.04095000", + "longitude": "-1.49014000" + }, + { + "id": "35671", + "name": "Murcia", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.98662000", + "longitude": "-1.14146000" + }, + { + "id": "35871", + "name": "Ojós", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.14700000", + "longitude": "-1.34261000" + }, + { + "id": "36245", + "name": "Pliego", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.98946000", + "longitude": "-1.50444000" + }, + { + "id": "36445", + "name": "Puerto Lumbreras", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.56329000", + "longitude": "-1.80974000" + }, + { + "id": "36621", + "name": "Ricote", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.15338000", + "longitude": "-1.36557000" + }, + { + "id": "36840", + "name": "San Javier", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.80626000", + "longitude": "-0.83736000" + }, + { + "id": "36910", + "name": "San Pedro del Pinatar", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.83568000", + "longitude": "-0.79102000" + }, + { + "id": "36945", + "name": "Sangonera la Verde", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.92862000", + "longitude": "-1.20794000" + }, + { + "id": "37026", + "name": "Santa Cruz", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.02180000", + "longitude": "-1.05749000" + }, + { + "id": "37116", + "name": "Santiago de la Ribera", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.79681000", + "longitude": "-0.80544000" + }, + { + "id": "37145", + "name": "Santomera", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.06147000", + "longitude": "-1.04877000" + }, + { + "id": "37507", + "name": "Torre-Pacheco", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.74293000", + "longitude": "-0.95396000" + }, + { + "id": "37606", + "name": "Totana", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.76880000", + "longitude": "-1.50229000" + }, + { + "id": "37678", + "name": "Ulea", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.14045000", + "longitude": "-1.33007000" + }, + { + "id": "38431", + "name": "Yecla", + "state_id": 1176, + "state_code": "MC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61365000", + "longitude": "-1.11468000" + }, + { + "id": "31932", + "name": "Ademuz", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06139000", + "longitude": "-1.28677000" + }, + { + "id": "31935", + "name": "Ador", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91823000", + "longitude": "-0.22247000" + }, + { + "id": "31941", + "name": "Adsubia", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84819000", + "longitude": "-0.15324000" + }, + { + "id": "31943", + "name": "Adzaneta", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.21616000", + "longitude": "-0.17028000" + }, + { + "id": "31947", + "name": "Agost", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.44003000", + "longitude": "-0.63836000" + }, + { + "id": "31949", + "name": "Agres", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.78333000", + "longitude": "-0.51667000" + }, + { + "id": "31968", + "name": "Agullent", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82273000", + "longitude": "-0.54833000" + }, + { + "id": "31979", + "name": "Aielo de Malferit", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.88333000", + "longitude": "-0.58333000" + }, + { + "id": "32001", + "name": "Alaquàs", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.45568000", + "longitude": "-0.46100000" + }, + { + "id": "32014", + "name": "Albaida", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.83798000", + "longitude": "-0.51721000" + }, + { + "id": "32016", + "name": "Albal", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.40000000", + "longitude": "-0.41667000" + }, + { + "id": "32019", + "name": "Albalat de la Ribera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.20000000", + "longitude": "-0.38333000" + }, + { + "id": "32020", + "name": "Albalat dels Sorells", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53333000", + "longitude": "-0.35000000" + }, + { + "id": "32021", + "name": "Albalat dels Tarongers", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70000000", + "longitude": "-0.33333000" + }, + { + "id": "32032", + "name": "Albatera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.17902000", + "longitude": "-0.87059000" + }, + { + "id": "32037", + "name": "Alberic", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.11667000", + "longitude": "-0.51667000" + }, + { + "id": "32047", + "name": "Albocàsser", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35000000", + "longitude": "0.03333000" + }, + { + "id": "32051", + "name": "Alborache", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.38333000", + "longitude": "-0.76667000" + }, + { + "id": "32052", + "name": "Alboraya", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.50000000", + "longitude": "-0.35000000" + }, + { + "id": "32058", + "name": "Albuixech", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.55000000", + "longitude": "-0.31667000" + }, + { + "id": "32067", + "name": "Alcalalí", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.75038000", + "longitude": "-0.04013000" + }, + { + "id": "32068", + "name": "Alcalà de Xivert", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30000000", + "longitude": "0.23333000" + }, + { + "id": "32133", + "name": "Alcàntera de Xúquer", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.06667000", + "longitude": "-0.55000000" + }, + { + "id": "32134", + "name": "Alcàsser", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36791000", + "longitude": "-0.44447000" + }, + { + "id": "32101", + "name": "Alcocéber", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.25142000", + "longitude": "0.28433000" + }, + { + "id": "32099", + "name": "Alcocer de Planes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.79501000", + "longitude": "-0.40244000" + }, + { + "id": "32123", + "name": "Alcoy", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.70545000", + "longitude": "-0.47432000" + }, + { + "id": "32129", + "name": "Alcublas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.80000000", + "longitude": "-0.70000000" + }, + { + "id": "32131", + "name": "Alcudia de Veo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91667000", + "longitude": "-0.35000000" + }, + { + "id": "32140", + "name": "Aldaia", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46569000", + "longitude": "-0.46005000" + }, + { + "id": "32189", + "name": "Alfafar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.41667000", + "longitude": "-0.38333000" + }, + { + "id": "32190", + "name": "Alfafara", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.77339000", + "longitude": "-0.55551000" + }, + { + "id": "32194", + "name": "Alfara de Algimia", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76667000", + "longitude": "-0.35000000" + }, + { + "id": "32195", + "name": "Alfara del Patriarca", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.55000000", + "longitude": "-0.38333000" + }, + { + "id": "32199", + "name": "Alfarp", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28333000", + "longitude": "-0.55000000" + }, + { + "id": "32200", + "name": "Alfarrasí", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.90000000", + "longitude": "-0.50000000" + }, + { + "id": "32202", + "name": "Alfauir", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93333000", + "longitude": "-0.25000000" + }, + { + "id": "32203", + "name": "Alfondeguilla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.83333000", + "longitude": "-0.26667000" + }, + { + "id": "32217", + "name": "Algemesí", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.19042000", + "longitude": "-0.43572000" + }, + { + "id": "32220", + "name": "Algimia de Alfara", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75000000", + "longitude": "-0.36667000" + }, + { + "id": "32221", + "name": "Algimia de Almonacid", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91667000", + "longitude": "-0.43333000" + }, + { + "id": "32222", + "name": "Alginet", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.26667000", + "longitude": "-0.46667000" + }, + { + "id": "32226", + "name": "Algorfa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.08636000", + "longitude": "-0.79646000" + }, + { + "id": "32230", + "name": "Algueña", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.33905000", + "longitude": "-1.00433000" + }, + { + "id": "32244", + "name": "Alicante", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.34517000", + "longitude": "-0.48149000" + }, + { + "id": "32273", + "name": "Almassora", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.94729000", + "longitude": "-0.06313000" + }, + { + "id": "32278", + "name": "Almedíjar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86667000", + "longitude": "-0.40000000" + }, + { + "id": "32282", + "name": "Almenara", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.75000000", + "longitude": "-0.21667000" + }, + { + "id": "32291", + "name": "Almiserà", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91667000", + "longitude": "-0.28333000" + }, + { + "id": "32300", + "name": "Almoines", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.94325000", + "longitude": "-0.18155000" + }, + { + "id": "32306", + "name": "Almoradí", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.10879000", + "longitude": "-0.79197000" + }, + { + "id": "32310", + "name": "Almudaina", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.75999000", + "longitude": "-0.35149000" + }, + { + "id": "32313", + "name": "Almussafes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28333000", + "longitude": "-0.41667000" + }, + { + "id": "32332", + "name": "Alpuente", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86667000", + "longitude": "-1.01667000" + }, + { + "id": "32333", + "name": "Alquerías del Niño Perdido", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89466000", + "longitude": "-0.12943000" + }, + { + "id": "32340", + "name": "Altea", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.59885000", + "longitude": "-0.05139000" + }, + { + "id": "32342", + "name": "Altura", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85000000", + "longitude": "-0.51667000" + }, + { + "id": "32344", + "name": "Alzira", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.15000000", + "longitude": "-0.43333000" + }, + { + "id": "32371", + "name": "Andilla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.83333000", + "longitude": "-0.80000000" + }, + { + "id": "32385", + "name": "Anna", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.02029000", + "longitude": "-0.64621000" + }, + { + "id": "32391", + "name": "Antella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.07977000", + "longitude": "-0.59195000" + }, + { + "id": "32420", + "name": "Arañuel", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06667000", + "longitude": "-0.48333000" + }, + { + "id": "32456", + "name": "Ares del Maestre", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45675000", + "longitude": "-0.13267000" + }, + { + "id": "32469", + "name": "Argelita", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05000000", + "longitude": "-0.35000000" + }, + { + "id": "32520", + "name": "Artana", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.89104000", + "longitude": "-0.25758000" + }, + { + "id": "32537", + "name": "Aspe", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.34511000", + "longitude": "-0.76721000" + }, + { + "id": "32556", + "name": "Atzeneta d'Albaida", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.83333000", + "longitude": "-0.50000000" + }, + { + "id": "32579", + "name": "Ayódar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.00000000", + "longitude": "-0.36667000" + }, + { + "id": "32576", + "name": "Ayora", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.05852000", + "longitude": "-1.05635000" + }, + { + "id": "32593", + "name": "Azuébar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.83333000", + "longitude": "-0.36667000" + }, + { + "id": "32626", + "name": "Balones", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.73726000", + "longitude": "-0.34324000" + }, + { + "id": "32667", + "name": "Barracas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01667000", + "longitude": "-0.68333000" + }, + { + "id": "32683", + "name": "Barx", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.01667000", + "longitude": "-0.30000000" + }, + { + "id": "32684", + "name": "Barxeta", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.01667000", + "longitude": "-0.41667000" + }, + { + "id": "33056", + "name": "Bèlgida", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.85000000", + "longitude": "-0.46667000" + }, + { + "id": "33062", + "name": "Bétera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.59111000", + "longitude": "-0.46151000" + }, + { + "id": "32747", + "name": "Bellús", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.94580000", + "longitude": "-0.48697000" + }, + { + "id": "32744", + "name": "Bellreguard", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95000000", + "longitude": "-0.16667000" + }, + { + "id": "32759", + "name": "Benafigos", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.27641000", + "longitude": "-0.20772000" + }, + { + "id": "32761", + "name": "Benagéber", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71667000", + "longitude": "-1.10000000" + }, + { + "id": "32760", + "name": "Benaguasil", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60000000", + "longitude": "-0.58333000" + }, + { + "id": "32776", + "name": "Benasau", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.69047000", + "longitude": "-0.34278000" + }, + { + "id": "32778", + "name": "Benassal", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.37690000", + "longitude": "-0.13970000" + }, + { + "id": "32783", + "name": "Benavites", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73333000", + "longitude": "-0.25000000" + }, + { + "id": "32785", + "name": "Beneixama", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.70000000", + "longitude": "-0.76667000" + }, + { + "id": "32786", + "name": "Beneixida", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.06667000", + "longitude": "-0.55000000" + }, + { + "id": "32787", + "name": "Benejúzar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.07728000", + "longitude": "-0.83942000" + }, + { + "id": "32788", + "name": "Benetússer", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.42265000", + "longitude": "-0.39686000" + }, + { + "id": "32789", + "name": "Benferri", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.14129000", + "longitude": "-0.96212000" + }, + { + "id": "32790", + "name": "Beniarbeig", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82232000", + "longitude": "-0.00210000" + }, + { + "id": "32791", + "name": "Beniardá", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.68433000", + "longitude": "-0.21629000" + }, + { + "id": "32792", + "name": "Beniarjó", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93249000", + "longitude": "-0.18634000" + }, + { + "id": "32793", + "name": "Beniarrés", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82019000", + "longitude": "-0.37741000" + }, + { + "id": "32794", + "name": "Beniatjar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84754000", + "longitude": "-0.41736000" + }, + { + "id": "32795", + "name": "Benicarló", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.41650000", + "longitude": "0.42709000" + }, + { + "id": "32797", + "name": "Benicàssim", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05000000", + "longitude": "0.06667000" + }, + { + "id": "32796", + "name": "Benicolet", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91987000", + "longitude": "-0.34694000" + }, + { + "id": "32798", + "name": "Benidoleig", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.79278000", + "longitude": "-0.02992000" + }, + { + "id": "32799", + "name": "Benidorm", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.53816000", + "longitude": "-0.13098000" + }, + { + "id": "32802", + "name": "Benifaió", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28439000", + "longitude": "-0.42598000" + }, + { + "id": "32801", + "name": "Benifairó de les Valls", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73333000", + "longitude": "-0.26667000" + }, + { + "id": "32804", + "name": "Benifallim", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.66259000", + "longitude": "-0.39994000" + }, + { + "id": "32805", + "name": "Beniflá", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.92813000", + "longitude": "-0.17816000" + }, + { + "id": "32806", + "name": "Benigànim", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95000000", + "longitude": "-0.43333000" + }, + { + "id": "32807", + "name": "Benijofar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.07785000", + "longitude": "-0.73680000" + }, + { + "id": "32808", + "name": "Benilloba", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.70012000", + "longitude": "-0.38998000" + }, + { + "id": "32809", + "name": "Benillup", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.75397000", + "longitude": "-0.37991000" + }, + { + "id": "32810", + "name": "Benimantell", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.67709000", + "longitude": "-0.21057000" + }, + { + "id": "32811", + "name": "Benimarfull", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.77590000", + "longitude": "-0.39079000" + }, + { + "id": "32812", + "name": "Benimassot", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.75000000", + "longitude": "-0.28333000" + }, + { + "id": "32813", + "name": "Benimeli", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82362000", + "longitude": "-0.04221000" + }, + { + "id": "32814", + "name": "Benimodo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.21403000", + "longitude": "-0.52679000" + }, + { + "id": "32815", + "name": "Benimuslem", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.13162000", + "longitude": "-0.49288000" + }, + { + "id": "32816", + "name": "Beniparrell", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.38333000", + "longitude": "-0.41667000" + }, + { + "id": "32817", + "name": "Benirredrà", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.96667000", + "longitude": "-0.18333000" + }, + { + "id": "32818", + "name": "Benisanó", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61667000", + "longitude": "-0.56667000" + }, + { + "id": "32819", + "name": "Benissa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.71492000", + "longitude": "0.04849000" + }, + { + "id": "32820", + "name": "Benissoda", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.83333000", + "longitude": "-0.51667000" + }, + { + "id": "32821", + "name": "Benisuera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91320000", + "longitude": "-0.47784000" + }, + { + "id": "32822", + "name": "Benitachell", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.73273000", + "longitude": "0.14354000" + }, + { + "id": "32825", + "name": "Benlloch", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.21075000", + "longitude": "0.02717000" + }, + { + "id": "32882", + "name": "Betxí", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.93333000", + "longitude": "-0.20000000" + }, + { + "id": "32885", + "name": "Biar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.63117000", + "longitude": "-0.76458000" + }, + { + "id": "32886", + "name": "Bicorp", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.13215000", + "longitude": "-0.78720000" + }, + { + "id": "32892", + "name": "Bigastro", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.06237000", + "longitude": "-0.89841000" + }, + { + "id": "32923", + "name": "Bocairent", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.76667000", + "longitude": "-0.61667000" + }, + { + "id": "32937", + "name": "Bolbaite", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.06041000", + "longitude": "-0.67466000" + }, + { + "id": "32941", + "name": "Bolulla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.67529000", + "longitude": "-0.11184000" + }, + { + "id": "32962", + "name": "Borriol", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.04249000", + "longitude": "-0.07025000" + }, + { + "id": "33045", + "name": "Buñol", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.41667000", + "longitude": "-0.78333000" + }, + { + "id": "33009", + "name": "Bufali", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.86775000", + "longitude": "-0.51617000" + }, + { + "id": "33010", + "name": "Bugarra", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61667000", + "longitude": "-0.76667000" + }, + { + "id": "33030", + "name": "Burjassot", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.50984000", + "longitude": "-0.41327000" + }, + { + "id": "33032", + "name": "Burriana", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88901000", + "longitude": "-0.08499000" + }, + { + "id": "33035", + "name": "Busot", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.48206000", + "longitude": "-0.41918000" + }, + { + "id": "33067", + "name": "Cabanes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.15600000", + "longitude": "0.04325000" + }, + { + "id": "33145", + "name": "Calles", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.72118000", + "longitude": "-0.97057000" + }, + { + "id": "33146", + "name": "Callosa de Segura", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.12497000", + "longitude": "-0.87822000" + }, + { + "id": "33151", + "name": "Calp", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.64470000", + "longitude": "0.04450000" + }, + { + "id": "33209", + "name": "Camporrobles", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65000000", + "longitude": "-1.40000000" + }, + { + "id": "33224", + "name": "Canals", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.96251000", + "longitude": "-0.58443000" + }, + { + "id": "33233", + "name": "Canet d'En Berenguer", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68333000", + "longitude": "-0.21667000" + }, + { + "id": "33235", + "name": "Canet lo Roig", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.55142000", + "longitude": "0.24308000" + }, + { + "id": "33291", + "name": "Carcaixent", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.12180000", + "longitude": "-0.44812000" + }, + { + "id": "33308", + "name": "Carlet", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.22660000", + "longitude": "-0.52142000" + }, + { + "id": "33335", + "name": "Carrícola", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84133000", + "longitude": "-0.47260000" + }, + { + "id": "33355", + "name": "Casas Altas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.03333000", + "longitude": "-1.26667000" + }, + { + "id": "33356", + "name": "Casas Bajas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01667000", + "longitude": "-1.26667000" + }, + { + "id": "33391", + "name": "Casinos", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70000000", + "longitude": "-0.70000000" + }, + { + "id": "33396", + "name": "Castalla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.59694000", + "longitude": "-0.67207000" + }, + { + "id": "33410", + "name": "Castell de Cabres", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.66058000", + "longitude": "0.04217000" + }, + { + "id": "33411", + "name": "Castell de Castells", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72555000", + "longitude": "-0.19242000" + }, + { + "id": "33438", + "name": "Castelló de la Plana", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98567000", + "longitude": "-0.04935000" + }, + { + "id": "33437", + "name": "Castelló de Rugat", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.88333000", + "longitude": "-0.36667000" + }, + { + "id": "33428", + "name": "Castellfort", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50208000", + "longitude": "-0.19133000" + }, + { + "id": "33430", + "name": "Castellnovo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86667000", + "longitude": "-0.45000000" + }, + { + "id": "33432", + "name": "Castellonet de la Conquesta", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91667000", + "longitude": "-0.26667000" + }, + { + "id": "33441", + "name": "Castielfabib", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13076000", + "longitude": "-1.30396000" + }, + { + "id": "33465", + "name": "Castillo de Villamalefa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13333000", + "longitude": "-0.38333000" + }, + { + "id": "33513", + "name": "Catadau", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.26667000", + "longitude": "-0.56667000" + }, + { + "id": "33514", + "name": "Catarroja", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.40000000", + "longitude": "-0.40000000" + }, + { + "id": "33517", + "name": "Catí", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47156000", + "longitude": "0.02275000" + }, + { + "id": "33516", + "name": "Catral", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.16061000", + "longitude": "-0.80209000" + }, + { + "id": "33519", + "name": "Caudete de las Fuentes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.55965000", + "longitude": "-1.27853000" + }, + { + "id": "33889", + "name": "Càlig", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.46262000", + "longitude": "0.35521000" + }, + { + "id": "33891", + "name": "Càrcer", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.06667000", + "longitude": "-0.56667000" + }, + { + "id": "33582", + "name": "Cerdà", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98333000", + "longitude": "-0.56667000" + }, + { + "id": "33601", + "name": "Cervera del Maestre", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.45366000", + "longitude": "0.27659000" + }, + { + "id": "33654", + "name": "Chóvar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85000000", + "longitude": "-0.31667000" + }, + { + "id": "33623", + "name": "Chella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.04203000", + "longitude": "-0.65916000" + }, + { + "id": "33624", + "name": "Chelva", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.74930000", + "longitude": "-0.99684000" + }, + { + "id": "33626", + "name": "Chera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60000000", + "longitude": "-0.96667000" + }, + { + "id": "33628", + "name": "Chert\/Xert", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.51944000", + "longitude": "0.15831000" + }, + { + "id": "33629", + "name": "Cheste", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.48333000", + "longitude": "-0.68333000" + }, + { + "id": "33632", + "name": "Chilches", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78238000", + "longitude": "-0.18742000" + }, + { + "id": "33644", + "name": "Chiva", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46667000", + "longitude": "-0.71667000" + }, + { + "id": "33650", + "name": "Chulilla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65000000", + "longitude": "-0.88333000" + }, + { + "id": "33678", + "name": "Cinctorres", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.58333000", + "longitude": "-0.21667000" + }, + { + "id": "33681", + "name": "Cirat", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05000000", + "longitude": "-0.45000000" + }, + { + "id": "33716", + "name": "Cocentaina", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.73975000", + "longitude": "-0.43976000" + }, + { + "id": "33719", + "name": "Cofrentes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.22926000", + "longitude": "-1.06061000" + }, + { + "id": "33757", + "name": "Confrides", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.68451000", + "longitude": "-0.26890000" + }, + { + "id": "33774", + "name": "Corbera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.15000000", + "longitude": "-0.35000000" + }, + { + "id": "33809", + "name": "Cortes de Arenoso", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.18812000", + "longitude": "-0.54195000" + }, + { + "id": "33811", + "name": "Cortes de Pallás", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.25000000", + "longitude": "-0.93333000" + }, + { + "id": "33822", + "name": "Costur", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11971000", + "longitude": "-0.17385000" + }, + { + "id": "33824", + "name": "Cotes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.07010000", + "longitude": "-0.57449000" + }, + { + "id": "33829", + "name": "Cox", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.14164000", + "longitude": "-0.88736000" + }, + { + "id": "33835", + "name": "Crevillente", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.24994000", + "longitude": "-0.80975000" + }, + { + "id": "33875", + "name": "Cuevas de Vinromá", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.30976000", + "longitude": "0.12084000" + }, + { + "id": "33880", + "name": "Culla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.33650000", + "longitude": "-0.16569000" + }, + { + "id": "33881", + "name": "Cullera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.16667000", + "longitude": "-0.25000000" + }, + { + "id": "33910", + "name": "Daimús", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.96667000", + "longitude": "-0.15000000" + }, + { + "id": "33915", + "name": "Daya Nueva", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.11313000", + "longitude": "-0.76028000" + }, + { + "id": "33916", + "name": "Daya Vieja", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.10480000", + "longitude": "-0.73804000" + }, + { + "id": "33926", + "name": "Denia", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84078000", + "longitude": "0.10574000" + }, + { + "id": "33936", + "name": "Dolores", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.14002000", + "longitude": "-0.77088000" + }, + { + "id": "33937", + "name": "Domeño", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.66115000", + "longitude": "-0.67077000" + }, + { + "id": "33948", + "name": "Dos Aguas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28333000", + "longitude": "-0.80000000" + }, + { + "id": "33984", + "name": "El Campello", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.42885000", + "longitude": "-0.39774000" + }, + { + "id": "33999", + "name": "El Grao", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.97358000", + "longitude": "0.01284000" + }, + { + "id": "34006", + "name": "El Perelló", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.27718000", + "longitude": "-0.27569000" + }, + { + "id": "34030", + "name": "Elche", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.26218000", + "longitude": "-0.70107000" + }, + { + "id": "34033", + "name": "Elda", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.47783000", + "longitude": "-0.79157000" + }, + { + "id": "38533", + "name": "els Poblets", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.85381000", + "longitude": "0.02103000" + }, + { + "id": "34042", + "name": "Emperador", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.55000000", + "longitude": "-0.33333000" + }, + { + "id": "34058", + "name": "Enguera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.97974000", + "longitude": "-0.68683000" + }, + { + "id": "34100", + "name": "Eslida", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88333000", + "longitude": "-0.30000000" + }, + { + "id": "34103", + "name": "Espadilla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.03333000", + "longitude": "-0.35000000" + }, + { + "id": "34145", + "name": "Estivella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71667000", + "longitude": "-0.35000000" + }, + { + "id": "34149", + "name": "Estubeny", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.01792000", + "longitude": "-0.62379000" + }, + { + "id": "34156", + "name": "Facheca", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.73501000", + "longitude": "-0.26766000" + }, + { + "id": "34160", + "name": "Famorca", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.73101000", + "longitude": "-0.24726000" + }, + { + "id": "34161", + "name": "Fanzara", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01667000", + "longitude": "-0.31667000" + }, + { + "id": "34168", + "name": "Faura", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.71667000", + "longitude": "-0.25000000" + }, + { + "id": "34169", + "name": "Favara", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.11667000", + "longitude": "-0.28333000" + }, + { + "id": "34185", + "name": "Figueroles", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11667000", + "longitude": "-0.23333000" + }, + { + "id": "34189", + "name": "Finestrat", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.56737000", + "longitude": "-0.21235000" + }, + { + "id": "34198", + "name": "Foios", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53333000", + "longitude": "-0.35000000" + }, + { + "id": "34213", + "name": "Fontanars dels Alforins", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.78423000", + "longitude": "-0.78667000" + }, + { + "id": "34220", + "name": "Forcall", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64542000", + "longitude": "-0.19992000" + }, + { + "id": "34222", + "name": "Formentera de Segura", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.08509000", + "longitude": "-0.74604000" + }, + { + "id": "34228", + "name": "Fortaleny", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.18333000", + "longitude": "-0.30000000" + }, + { + "id": "34305", + "name": "Fuente la Reina", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06667000", + "longitude": "-0.60000000" + }, + { + "id": "34334", + "name": "Fuenterrobles", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.58333000", + "longitude": "-1.35000000" + }, + { + "id": "34339", + "name": "Fuentes de Ayódar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.03333000", + "longitude": "-0.41667000" + }, + { + "id": "34370", + "name": "Gaibiel", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.93333000", + "longitude": "-0.48333000" + }, + { + "id": "34403", + "name": "Gandia", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.96667000", + "longitude": "-0.18333000" + }, + { + "id": "34435", + "name": "Gata de Gorgos", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.77443000", + "longitude": "0.08538000" + }, + { + "id": "34439", + "name": "Gavarda", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.08333000", + "longitude": "-0.55000000" + }, + { + "id": "34445", + "name": "Geldo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.83333000", + "longitude": "-0.46667000" + }, + { + "id": "34453", + "name": "Genovés", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98915000", + "longitude": "-0.46992000" + }, + { + "id": "34458", + "name": "Gestalgar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60000000", + "longitude": "-0.83333000" + }, + { + "id": "34464", + "name": "Gilet", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68333000", + "longitude": "-0.31667000" + }, + { + "id": "34474", + "name": "Godella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53333000", + "longitude": "-0.41667000" + }, + { + "id": "34475", + "name": "Godelleta", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.41667000", + "longitude": "-0.68333000" + }, + { + "id": "34487", + "name": "Gorga", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.71896000", + "longitude": "-0.35589000" + }, + { + "id": "34501", + "name": "Granja de Rocamora", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.15157000", + "longitude": "-0.89170000" + }, + { + "id": "34505", + "name": "Grao de Murviedro", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.64167000", + "longitude": "-0.23889000" + }, + { + "id": "34529", + "name": "Guadasequies", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.92539000", + "longitude": "-0.48585000" + }, + { + "id": "34530", + "name": "Guadassuar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.18663000", + "longitude": "-0.47859000" + }, + { + "id": "34535", + "name": "Guardamar del Segura", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.09031000", + "longitude": "-0.65556000" + }, + { + "id": "34579", + "name": "Herbés", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72100000", + "longitude": "-0.00441000" + }, + { + "id": "34615", + "name": "Higueras", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98333000", + "longitude": "-0.50000000" + }, + { + "id": "34617", + "name": "Higueruelas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.78333000", + "longitude": "-0.85000000" + }, + { + "id": "34634", + "name": "Hondón de las Nieves", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.30844000", + "longitude": "-0.85330000" + }, + { + "id": "34635", + "name": "Hondón de los Frailes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.27390000", + "longitude": "-0.92938000" + }, + { + "id": "34727", + "name": "Ibi", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.62533000", + "longitude": "-0.57225000" + }, + { + "id": "34788", + "name": "Jacarilla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.06247000", + "longitude": "-0.86822000" + }, + { + "id": "34791", + "name": "Jalance", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.20000000", + "longitude": "-1.06667000" + }, + { + "id": "34792", + "name": "Jalón", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.74063000", + "longitude": "-0.01129000" + }, + { + "id": "34797", + "name": "Jarafuel", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.14013000", + "longitude": "-1.07306000" + }, + { + "id": "34808", + "name": "Javea", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.78333000", + "longitude": "0.16667000" + }, + { + "id": "34837", + "name": "Jérica", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91667000", + "longitude": "-0.56667000" + }, + { + "id": "34815", + "name": "Jijona", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.54086000", + "longitude": "-0.50263000" + }, + { + "id": "34840", + "name": "L'Alcúdia", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.19717000", + "longitude": "-0.50537000" + }, + { + "id": "34841", + "name": "L'Alcúdia de Crespìns", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.96667000", + "longitude": "-0.58333000" + }, + { + "id": "38534", + "name": "l'Alcora", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06667000", + "longitude": "-0.20000000" + }, + { + "id": "38535", + "name": "l'Alfàs del Pi", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.58055000", + "longitude": "-0.10321000" + }, + { + "id": "34842", + "name": "L'Alqueria de la Comtessa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93333000", + "longitude": "-0.15000000" + }, + { + "id": "34845", + "name": "L'Eliana", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56667000", + "longitude": "-0.53333000" + }, + { + "id": "34847", + "name": "L'Olleria", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91667000", + "longitude": "-0.55000000" + }, + { + "id": "34871", + "name": "La Font de la Figuera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.80000000", + "longitude": "-0.88333000" + }, + { + "id": "38554", + "name": "la Nucia", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.61372000", + "longitude": "-0.12690000" + }, + { + "id": "34906", + "name": "La Pobla de Farnals", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56571000", + "longitude": "-0.28425000" + }, + { + "id": "34907", + "name": "La Pobla de Vallbona", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.59747000", + "longitude": "-0.55468000" + }, + { + "id": "34904", + "name": "La Pobla Llarga", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.08333000", + "longitude": "-0.46667000" + }, + { + "id": "34923", + "name": "La Romana", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.36753000", + "longitude": "-0.89862000" + }, + { + "id": "34935", + "name": "La Yesa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88333000", + "longitude": "-0.95000000" + }, + { + "id": "35067", + "name": "Llanera de Ranes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.99507000", + "longitude": "-0.57534000" + }, + { + "id": "35071", + "name": "Llaurí", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.14671000", + "longitude": "-0.32944000" + }, + { + "id": "35091", + "name": "Llíria", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.62894000", + "longitude": "-0.59783000" + }, + { + "id": "35082", + "name": "Llocnou de Sant Jeroni", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91667000", + "longitude": "-0.28333000" + }, + { + "id": "35083", + "name": "Llombai", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.28333000", + "longitude": "-0.56667000" + }, + { + "id": "35086", + "name": "Llosa de Ranes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.02163000", + "longitude": "-0.53803000" + }, + { + "id": "35090", + "name": "Llutxent", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93333000", + "longitude": "-0.35000000" + }, + { + "id": "35114", + "name": "Loriguilla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68333000", + "longitude": "-0.91667000" + }, + { + "id": "35128", + "name": "Los Montesinos", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.02822000", + "longitude": "-0.74501000" + }, + { + "id": "35138", + "name": "Losa del Obispo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70000000", + "longitude": "-0.86667000" + }, + { + "id": "35151", + "name": "Lucena del Cid", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.13333000", + "longitude": "-0.28333000" + }, + { + "id": "35155", + "name": "Ludiente", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.08333000", + "longitude": "-0.36667000" + }, + { + "id": "35180", + "name": "Macastre", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.38333000", + "longitude": "-0.78333000" + }, + { + "id": "35251", + "name": "Manises", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.49139000", + "longitude": "-0.46349000" + }, + { + "id": "35261", + "name": "Manuel", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.05059000", + "longitude": "-0.48978000" + }, + { + "id": "35292", + "name": "Marines", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.74165000", + "longitude": "-0.53103000" + }, + { + "id": "35317", + "name": "Masalavés", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.14377000", + "longitude": "-0.52260000" + }, + { + "id": "35326", + "name": "Massamagrell", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56667000", + "longitude": "-0.33333000" + }, + { + "id": "35341", + "name": "Matet", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.93333000", + "longitude": "-0.46667000" + }, + { + "id": "35390", + "name": "Meliana", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53333000", + "longitude": "-0.33333000" + }, + { + "id": "35432", + "name": "Millares", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.25000000", + "longitude": "-0.76667000" + }, + { + "id": "35433", + "name": "Millena", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.73082000", + "longitude": "-0.36274000" + }, + { + "id": "35446", + "name": "Miramar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95036000", + "longitude": "-0.14007000" + }, + { + "id": "35456", + "name": "Mislata", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.47523000", + "longitude": "-0.41825000" + }, + { + "id": "35467", + "name": "Mogente", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.87598000", + "longitude": "-0.75150000" + }, + { + "id": "35592", + "name": "Monóvar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.43809000", + "longitude": "-0.84062000" + }, + { + "id": "35499", + "name": "Moncada", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.54555000", + "longitude": "-0.39551000" + }, + { + "id": "35502", + "name": "Moncofa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.80907000", + "longitude": "-0.14701000" + }, + { + "id": "35516", + "name": "Monforte del Cid", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.38027000", + "longitude": "-0.72850000" + }, + { + "id": "35527", + "name": "Monserrat", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36667000", + "longitude": "-0.60000000" + }, + { + "id": "35529", + "name": "Montaberner", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.89021000", + "longitude": "-0.49582000" + }, + { + "id": "35536", + "name": "Montanejos", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06667000", + "longitude": "-0.51667000" + }, + { + "id": "35587", + "name": "Montán", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.03333000", + "longitude": "-0.55000000" + }, + { + "id": "35570", + "name": "Montesa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95030000", + "longitude": "-0.65200000" + }, + { + "id": "35574", + "name": "Montichelvo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.89129000", + "longitude": "-0.34123000" + }, + { + "id": "35584", + "name": "Montroy", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33333000", + "longitude": "-0.61667000" + }, + { + "id": "35596", + "name": "Moraira", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.68866000", + "longitude": "0.13484000" + }, + { + "id": "35624", + "name": "Morella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61966000", + "longitude": "-0.09892000" + }, + { + "id": "35680", + "name": "Murla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.76037000", + "longitude": "-0.08208000" + }, + { + "id": "35683", + "name": "Muro del Alcoy", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.78120000", + "longitude": "-0.43608000" + }, + { + "id": "35688", + "name": "Museros", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56667000", + "longitude": "-0.35000000" + }, + { + "id": "35691", + "name": "Mutxamel", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.41580000", + "longitude": "-0.44529000" + }, + { + "id": "35738", + "name": "Navajas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.88333000", + "longitude": "-0.50000000" + }, + { + "id": "35775", + "name": "Navarrés", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.10198000", + "longitude": "-0.69469000" + }, + { + "id": "35843", + "name": "Náquera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.65000000", + "longitude": "-0.41667000" + }, + { + "id": "35828", + "name": "Novelda", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.38479000", + "longitude": "-0.76773000" + }, + { + "id": "35837", + "name": "Nules", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85362000", + "longitude": "-0.15643000" + }, + { + "id": "35884", + "name": "Oliva", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91971000", + "longitude": "-0.11935000" + }, + { + "id": "35908", + "name": "Olocau", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.70000000", + "longitude": "-0.53333000" + }, + { + "id": "35909", + "name": "Olocau del Rey", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.63775000", + "longitude": "-0.34041000" + }, + { + "id": "35922", + "name": "Onda", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96495000", + "longitude": "-0.26041000" + }, + { + "id": "35923", + "name": "Ondara", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82817000", + "longitude": "0.01720000" + }, + { + "id": "35925", + "name": "Onil", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.62606000", + "longitude": "-0.67313000" + }, + { + "id": "35926", + "name": "Ontinyent", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.82191000", + "longitude": "-0.60603000" + }, + { + "id": "35932", + "name": "Orba", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.78041000", + "longitude": "-0.06278000" + }, + { + "id": "35938", + "name": "Orcheta", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.56397000", + "longitude": "-0.26299000" + }, + { + "id": "35950", + "name": "Orihuela", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.08483000", + "longitude": "-0.94401000" + }, + { + "id": "35958", + "name": "Oropesa del Mar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.09134000", + "longitude": "0.14115000" + }, + { + "id": "35980", + "name": "Otos", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.85427000", + "longitude": "-0.44399000" + }, + { + "id": "35998", + "name": "Paiporta", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.42814000", + "longitude": "-0.41765000" + }, + { + "id": "36016", + "name": "Palanques", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.71800000", + "longitude": "-0.17941000" + }, + { + "id": "36028", + "name": "Palma de Gandía", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.92672000", + "longitude": "-0.22028000" + }, + { + "id": "36032", + "name": "Palmera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93927000", + "longitude": "-0.15411000" + }, + { + "id": "36062", + "name": "Parcent", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.74502000", + "longitude": "-0.06446000" + }, + { + "id": "36077", + "name": "Paterna", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.50263000", + "longitude": "-0.44079000" + }, + { + "id": "36084", + "name": "Pavías", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96667000", + "longitude": "-0.48333000" + }, + { + "id": "36090", + "name": "Pedralba", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.60000000", + "longitude": "-0.71667000" + }, + { + "id": "36095", + "name": "Pedreguer", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.79312000", + "longitude": "0.03411000" + }, + { + "id": "36115", + "name": "Pego", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84305000", + "longitude": "-0.11707000" + }, + { + "id": "36128", + "name": "Peníscola", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35740000", + "longitude": "0.40692000" + }, + { + "id": "36158", + "name": "Petrés", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68333000", + "longitude": "-0.30000000" + }, + { + "id": "36177", + "name": "Picanya", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.43333000", + "longitude": "-0.43333000" + }, + { + "id": "36178", + "name": "Picassent", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36350000", + "longitude": "-0.45949000" + }, + { + "id": "36187", + "name": "Pilar de la Horadada", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.86591000", + "longitude": "-0.79256000" + }, + { + "id": "36189", + "name": "Piles", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.94143000", + "longitude": "-0.13286000" + }, + { + "id": "36191", + "name": "Pina de Montalgrao", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01667000", + "longitude": "-0.65000000" + }, + { + "id": "36200", + "name": "Pinet", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98176000", + "longitude": "-0.33870000" + }, + { + "id": "36213", + "name": "Pinoso", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.40164000", + "longitude": "-1.04196000" + }, + { + "id": "36234", + "name": "Planes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.78524000", + "longitude": "-0.34271000" + }, + { + "id": "36261", + "name": "Polinyà de Xúquer", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.20000000", + "longitude": "-0.36667000" + }, + { + "id": "36264", + "name": "Polop", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.62258000", + "longitude": "-0.13090000" + }, + { + "id": "36288", + "name": "Portell de Morella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.53267000", + "longitude": "-0.26249000" + }, + { + "id": "36305", + "name": "Potríes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.91617000", + "longitude": "-0.19594000" + }, + { + "id": "36396", + "name": "Província de Castelló", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.16667000", + "longitude": "-0.16667000" + }, + { + "id": "36400", + "name": "Província de València", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33333000", + "longitude": "-0.83333000" + }, + { + "id": "36362", + "name": "Provincia de Alicante", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.50000000", + "longitude": "-0.50000000" + }, + { + "id": "36478", + "name": "Puçol", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.61667000", + "longitude": "-0.30000000" + }, + { + "id": "36412", + "name": "Puebla de Arenoso", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.10000000", + "longitude": "-0.58333000" + }, + { + "id": "36422", + "name": "Puebla de San Miguel", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05000000", + "longitude": "-1.13333000" + }, + { + "id": "36461", + "name": "Puig", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.58869000", + "longitude": "-0.30333000" + }, + { + "id": "36488", + "name": "Quart de les Valls", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73333000", + "longitude": "-0.26667000" + }, + { + "id": "36487", + "name": "Quart de Poblet", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.48139000", + "longitude": "-0.43937000" + }, + { + "id": "36490", + "name": "Quartell", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73751000", + "longitude": "-0.26458000" + }, + { + "id": "36491", + "name": "Quatretonda", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.95000000", + "longitude": "-0.40000000" + }, + { + "id": "36497", + "name": "Quesa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.11970000", + "longitude": "-0.74000000" + }, + { + "id": "36539", + "name": "Rafal", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.10458000", + "longitude": "-0.84904000" + }, + { + "id": "36540", + "name": "Rafelcofer", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93248000", + "longitude": "-0.16772000" + }, + { + "id": "36541", + "name": "Rafelguaraf", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.05126000", + "longitude": "-0.45543000" + }, + { + "id": "36712", + "name": "Ráfol de Salem", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.86651000", + "longitude": "-0.39991000" + }, + { + "id": "36720", + "name": "Rótova", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.93205000", + "longitude": "-0.25765000" + }, + { + "id": "36551", + "name": "Real de Gandía", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.94817000", + "longitude": "-0.19239000" + }, + { + "id": "36552", + "name": "Real de Montroi", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.33333000", + "longitude": "-0.60000000" + }, + { + "id": "36562", + "name": "Redován", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.11619000", + "longitude": "-0.90981000" + }, + { + "id": "36571", + "name": "Relleu", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.58725000", + "longitude": "-0.31157000" + }, + { + "id": "36581", + "name": "Requena", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.48834000", + "longitude": "-1.10044000" + }, + { + "id": "36611", + "name": "Ribarroja del Turia", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.54595000", + "longitude": "-0.57069000" + }, + { + "id": "36618", + "name": "Ribesalbes", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.01667000", + "longitude": "-0.26667000" + }, + { + "id": "36631", + "name": "Riola", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.20000000", + "longitude": "-0.33333000" + }, + { + "id": "36660", + "name": "Rocafort", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53333000", + "longitude": "-0.40000000" + }, + { + "id": "36665", + "name": "Rojales", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.08799000", + "longitude": "-0.72544000" + }, + { + "id": "36678", + "name": "Rosell", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.61792000", + "longitude": "0.22133000" + }, + { + "id": "36681", + "name": "Rotglá y Corbera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.00465000", + "longitude": "-0.56482000" + }, + { + "id": "36702", + "name": "Rugat", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.87933000", + "longitude": "-0.36115000" + }, + { + "id": "36726", + "name": "Sacañet", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86667000", + "longitude": "-0.71667000" + }, + { + "id": "36737", + "name": "Sagra", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.81102000", + "longitude": "-0.06559000" + }, + { + "id": "36739", + "name": "Sagunto", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68333000", + "longitude": "-0.26667000" + }, + { + "id": "36763", + "name": "Salinas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.52025000", + "longitude": "-0.91202000" + }, + { + "id": "36843", + "name": "San Juan de Alicante", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.40148000", + "longitude": "-0.43623000" + }, + { + "id": "36849", + "name": "San Juan de Énova", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.07104000", + "longitude": "-0.48705000" + }, + { + "id": "36845", + "name": "San Juan de Moró", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05990000", + "longitude": "-0.13691000" + }, + { + "id": "36883", + "name": "San Miguel de Salinas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.97972000", + "longitude": "-0.78904000" + }, + { + "id": "36925", + "name": "San Vicent del Raspeig", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.39640000", + "longitude": "-0.52550000" + }, + { + "id": "36942", + "name": "Sanet y Negrals", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.81967000", + "longitude": "-0.03406000" + }, + { + "id": "36978", + "name": "Sant Jordi", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.50982000", + "longitude": "0.33208000" + }, + { + "id": "37063", + "name": "Santa Magdalena de Pulpis", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.35625000", + "longitude": "0.30258000" + }, + { + "id": "37098", + "name": "Santa Pola", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.19165000", + "longitude": "-0.56580000" + }, + { + "id": "37166", + "name": "Sarratella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.31284000", + "longitude": "0.03150000" + }, + { + "id": "37181", + "name": "Sax", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.53729000", + "longitude": "-0.81779000" + }, + { + "id": "37187", + "name": "Sedaví", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.43333000", + "longitude": "-0.38333000" + }, + { + "id": "37190", + "name": "Segart", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68333000", + "longitude": "-0.36667000" + }, + { + "id": "37191", + "name": "Segorbe", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85000000", + "longitude": "-0.48333000" + }, + { + "id": "37203", + "name": "Sella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.60926000", + "longitude": "-0.27305000" + }, + { + "id": "37204", + "name": "Sellent", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.03221000", + "longitude": "-0.58784000" + }, + { + "id": "37207", + "name": "Sempere", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.92014000", + "longitude": "-0.48140000" + }, + { + "id": "37210", + "name": "Senija", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72804000", + "longitude": "0.04176000" + }, + { + "id": "37213", + "name": "Senyera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.06667000", + "longitude": "-0.50000000" + }, + { + "id": "37218", + "name": "Serra", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.68333000", + "longitude": "-0.43333000" + }, + { + "id": "37247", + "name": "Sierra-Engarcerán", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.26929000", + "longitude": "-0.01892000" + }, + { + "id": "37249", + "name": "Siete Aguas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46667000", + "longitude": "-0.91667000" + }, + { + "id": "37255", + "name": "Silla", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.36257000", + "longitude": "-0.41169000" + }, + { + "id": "37259", + "name": "Simat de la Valldigna", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.03333000", + "longitude": "-0.31667000" + }, + { + "id": "37260", + "name": "Sinarcas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73333000", + "longitude": "-1.23333000" + }, + { + "id": "37283", + "name": "Sollana", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.27830000", + "longitude": "-0.38238000" + }, + { + "id": "37293", + "name": "Soneja", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.81667000", + "longitude": "-0.41667000" + }, + { + "id": "37309", + "name": "Sot de Chera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.63333000", + "longitude": "-0.90000000" + }, + { + "id": "37310", + "name": "Sot de Ferrer", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.80000000", + "longitude": "-0.40000000" + }, + { + "id": "37329", + "name": "Sueca", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.20260000", + "longitude": "-0.31114000" + }, + { + "id": "37332", + "name": "Sumacàrcer", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.10000000", + "longitude": "-0.63333000" + }, + { + "id": "37361", + "name": "Tales", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.94844000", + "longitude": "-0.30719000" + }, + { + "id": "37386", + "name": "Tavernes Blanques", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.50000000", + "longitude": "-0.36667000" + }, + { + "id": "37387", + "name": "Tavernes de la Valldigna", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.07195000", + "longitude": "-0.26623000" + }, + { + "id": "37410", + "name": "Terrateig", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.89453000", + "longitude": "-0.31993000" + }, + { + "id": "37418", + "name": "Teulada", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.72940000", + "longitude": "0.10383000" + }, + { + "id": "37420", + "name": "Tibi", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.53072000", + "longitude": "-0.57776000" + }, + { + "id": "37430", + "name": "Titaguas", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.86667000", + "longitude": "-1.08333000" + }, + { + "id": "37440", + "name": "Todolella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.64675000", + "longitude": "-0.24675000" + }, + { + "id": "37441", + "name": "Toga", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05000000", + "longitude": "-0.36667000" + }, + { + "id": "37444", + "name": "Tollos", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.75629000", + "longitude": "-0.27466000" + }, + { + "id": "37601", + "name": "Torás", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91667000", + "longitude": "-0.68333000" + }, + { + "id": "37470", + "name": "Tormos", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.80143000", + "longitude": "-0.07160000" + }, + { + "id": "37485", + "name": "Torralba del Pinar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.98333000", + "longitude": "-0.43333000" + }, + { + "id": "37497", + "name": "Torre de la Horadada", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.86970000", + "longitude": "-0.75840000" + }, + { + "id": "37510", + "name": "Torreblanca", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.22033000", + "longitude": "0.19650000" + }, + { + "id": "37514", + "name": "Torrechiva", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05000000", + "longitude": "-0.40000000" + }, + { + "id": "37547", + "name": "Torrella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98446000", + "longitude": "-0.56727000" + }, + { + "id": "37564", + "name": "Torrent", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.43705000", + "longitude": "-0.46546000" + }, + { + "id": "37584", + "name": "Torrevieja", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "37.97872000", + "longitude": "-0.68222000" + }, + { + "id": "37609", + "name": "Tous", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.13951000", + "longitude": "-0.58777000" + }, + { + "id": "37615", + "name": "Traiguera", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.52511000", + "longitude": "0.29023000" + }, + { + "id": "37660", + "name": "Tuéjar", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.76667000", + "longitude": "-1.03333000" + }, + { + "id": "37659", + "name": "Turís", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.38333000", + "longitude": "-0.70000000" + }, + { + "id": "37710", + "name": "Utiel", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56667000", + "longitude": "-1.20000000" + }, + { + "id": "37816", + "name": "Valencia", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46975000", + "longitude": "-0.37739000" + }, + { + "id": "37833", + "name": "Vall de Almonacid", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.90000000", + "longitude": "-0.45000000" + }, + { + "id": "37834", + "name": "Vall de Ebo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.80561000", + "longitude": "-0.15890000" + }, + { + "id": "37835", + "name": "Vallada", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.89575000", + "longitude": "-0.69104000" + }, + { + "id": "37837", + "name": "Vallanca", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.06667000", + "longitude": "-1.33333000" + }, + { + "id": "37866", + "name": "Vallés", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.98518000", + "longitude": "-0.55696000" + }, + { + "id": "37860", + "name": "Vallibona", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.60300000", + "longitude": "0.04642000" + }, + { + "id": "37938", + "name": "Venta del Moro", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.48333000", + "longitude": "-1.35000000" + }, + { + "id": "37952", + "name": "Vergel", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.84709000", + "longitude": "0.01034000" + }, + { + "id": "37972", + "name": "Vila-real", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.93830000", + "longitude": "-0.10087000" + }, + { + "id": "37991", + "name": "Vilamarxant", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.56916000", + "longitude": "-0.62453000" + }, + { + "id": "38049", + "name": "Villafamés", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11667000", + "longitude": "-0.05000000" + }, + { + "id": "38064", + "name": "Villafranca del Cid", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.42885000", + "longitude": "-0.25775000" + }, + { + "id": "38084", + "name": "Villahermosa del Río", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.20268000", + "longitude": "-0.41990000" + }, + { + "id": "38088", + "name": "Villajoyosa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.50754000", + "longitude": "-0.23346000" + }, + { + "id": "38118", + "name": "Villalonga", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.88566000", + "longitude": "-0.20795000" + }, + { + "id": "38128", + "name": "Villamalur", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.96667000", + "longitude": "-0.40000000" + }, + { + "id": "38179", + "name": "Villanueva de Castellón", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.07741000", + "longitude": "-0.51167000" + }, + { + "id": "38195", + "name": "Villanueva de Viver", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.05000000", + "longitude": "-0.65000000" + }, + { + "id": "38251", + "name": "Villar del Arzobispo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.73333000", + "longitude": "-0.81667000" + }, + { + "id": "38283", + "name": "Villargordo del Cabriel", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53333000", + "longitude": "-1.43333000" + }, + { + "id": "38358", + "name": "Villavieja", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.85000000", + "longitude": "-0.18333000" + }, + { + "id": "38369", + "name": "Villena", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.63730000", + "longitude": "-0.86568000" + }, + { + "id": "38373", + "name": "Villores", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.67478000", + "longitude": "-0.20023000" + }, + { + "id": "38390", + "name": "Vinalesa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.53333000", + "longitude": "-0.36667000" + }, + { + "id": "38391", + "name": "Vinaròs", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.47033000", + "longitude": "0.47559000" + }, + { + "id": "38400", + "name": "Vistabella del Maestrazgo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.29617000", + "longitude": "-0.29435000" + }, + { + "id": "38405", + "name": "Viver", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.91667000", + "longitude": "-0.60000000" + }, + { + "id": "38424", + "name": "Xàtiva", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "38.99042000", + "longitude": "-0.51852000" + }, + { + "id": "38420", + "name": "Xeraco,Jaraco", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.03333000", + "longitude": "-0.21667000" + }, + { + "id": "38421", + "name": "Xeresa", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.01667000", + "longitude": "-0.21667000" + }, + { + "id": "38423", + "name": "Xirivella", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.46588000", + "longitude": "-0.42589000" + }, + { + "id": "38443", + "name": "Yátova", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.38333000", + "longitude": "-0.80000000" + }, + { + "id": "38475", + "name": "Zarra", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "39.09175000", + "longitude": "-1.07532000" + }, + { + "id": "38498", + "name": "Zorita del Maestrazgo", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.72817000", + "longitude": "-0.16667000" + }, + { + "id": "38503", + "name": "Zucaina", + "state_id": 1175, + "state_code": "VC", + "country_id": 207, + "country_code": "ES", + "latitude": "40.11667000", + "longitude": "-0.41667000" + }, + { + "id": "66463", + "name": "Dambulla", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "7.86000000", + "longitude": "80.65167000" + }, + { + "id": "66472", + "name": "Gampola", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "7.16430000", + "longitude": "80.56960000" + }, + { + "id": "66476", + "name": "Hatton", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "6.89160000", + "longitude": "80.59550000" + }, + { + "id": "66485", + "name": "Kadugannawa", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "7.25470000", + "longitude": "80.52420000" + }, + { + "id": "66489", + "name": "Kandy", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "7.29060000", + "longitude": "80.63360000" + }, + { + "id": "66490", + "name": "Kandy District", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "7.30440000", + "longitude": "80.70730000" + }, + { + "id": "66505", + "name": "Matale", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "7.46980000", + "longitude": "80.62170000" + }, + { + "id": "66506", + "name": "Matale District", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "7.65980000", + "longitude": "80.70730000" + }, + { + "id": "66517", + "name": "Nuwara Eliya", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "6.97078000", + "longitude": "80.78286000" + }, + { + "id": "66518", + "name": "Nuwara Eliya District", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "6.97850000", + "longitude": "80.71330000" + }, + { + "id": "66529", + "name": "Sigiriya", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "7.94946000", + "longitude": "80.75037000" + }, + { + "id": "66531", + "name": "Talawakele", + "state_id": 2798, + "state_code": "2", + "country_id": 208, + "country_code": "LK", + "latitude": "6.93710000", + "longitude": "80.65810000" + }, + { + "id": "66449", + "name": "Ampara", + "state_id": 2808, + "state_code": "5", + "country_id": 208, + "country_code": "LK", + "latitude": "7.29754000", + "longitude": "81.68202000" + }, + { + "id": "66450", + "name": "Ampara District", + "state_id": 2808, + "state_code": "5", + "country_id": 208, + "country_code": "LK", + "latitude": "7.08330000", + "longitude": "81.75000000" + }, + { + "id": "66456", + "name": "Batticaloa", + "state_id": 2808, + "state_code": "5", + "country_id": 208, + "country_code": "LK", + "latitude": "7.71020000", + "longitude": "81.69240000" + }, + { + "id": "66457", + "name": "Batticaloa District", + "state_id": 2808, + "state_code": "5", + "country_id": 208, + "country_code": "LK", + "latitude": "7.75000000", + "longitude": "81.49970000" + }, + { + "id": "66467", + "name": "Eravur Town", + "state_id": 2808, + "state_code": "5", + "country_id": 208, + "country_code": "LK", + "latitude": "7.77820000", + "longitude": "81.60380000" + }, + { + "id": "66486", + "name": "Kalmunai", + "state_id": 2808, + "state_code": "5", + "country_id": 208, + "country_code": "LK", + "latitude": "7.40902000", + "longitude": "81.83472000" + }, + { + "id": "66534", + "name": "Trincomalee", + "state_id": 2808, + "state_code": "5", + "country_id": 208, + "country_code": "LK", + "latitude": "8.57780000", + "longitude": "81.22890000" + }, + { + "id": "66535", + "name": "Trincomalee District", + "state_id": 2808, + "state_code": "5", + "country_id": 208, + "country_code": "LK", + "latitude": "8.58333000", + "longitude": "81.08333000" + }, + { + "id": "66537", + "name": "Vakarai", + "state_id": 2808, + "state_code": "5", + "country_id": 208, + "country_code": "LK", + "latitude": "8.13333000", + "longitude": "81.43333000" + }, + { + "id": "66451", + "name": "Anuradhapura", + "state_id": 2800, + "state_code": "7", + "country_id": 208, + "country_code": "LK", + "latitude": "8.31223000", + "longitude": "80.41306000" + }, + { + "id": "66452", + "name": "Anuradhapura District", + "state_id": 2800, + "state_code": "7", + "country_id": 208, + "country_code": "LK", + "latitude": "8.33333000", + "longitude": "80.50000000" + }, + { + "id": "66509", + "name": "Mihintale", + "state_id": 2800, + "state_code": "7", + "country_id": 208, + "country_code": "LK", + "latitude": "8.35930000", + "longitude": "80.51030000" + }, + { + "id": "66523", + "name": "Polonnaruwa", + "state_id": 2800, + "state_code": "7", + "country_id": 208, + "country_code": "LK", + "latitude": "7.93965000", + "longitude": "81.00274000" + }, + { + "id": "66524", + "name": "Polonnaruwa District", + "state_id": 2800, + "state_code": "7", + "country_id": 208, + "country_code": "LK", + "latitude": "8.00000000", + "longitude": "81.00000000" + }, + { + "id": "66460", + "name": "Chilaw", + "state_id": 2817, + "state_code": "6", + "country_id": 208, + "country_code": "LK", + "latitude": "7.57583000", + "longitude": "79.79528000" + }, + { + "id": "66501", + "name": "Kuliyapitiya", + "state_id": 2817, + "state_code": "6", + "country_id": 208, + "country_code": "LK", + "latitude": "7.46880000", + "longitude": "80.04010000" + }, + { + "id": "66502", + "name": "Kurunegala", + "state_id": 2817, + "state_code": "6", + "country_id": 208, + "country_code": "LK", + "latitude": "7.48390000", + "longitude": "80.36830000" + }, + { + "id": "66503", + "name": "Kurunegala District", + "state_id": 2817, + "state_code": "6", + "country_id": 208, + "country_code": "LK", + "latitude": "7.75000000", + "longitude": "80.25000000" + }, + { + "id": "66525", + "name": "Puttalam", + "state_id": 2817, + "state_code": "6", + "country_id": 208, + "country_code": "LK", + "latitude": "8.03620000", + "longitude": "79.82830000" + }, + { + "id": "66526", + "name": "Puttalam District", + "state_id": 2817, + "state_code": "6", + "country_id": 208, + "country_code": "LK", + "latitude": "8.04540000", + "longitude": "79.93190000" + }, + { + "id": "66483", + "name": "Jaffna", + "state_id": 2813, + "state_code": "4", + "country_id": 208, + "country_code": "LK", + "latitude": "9.66845000", + "longitude": "80.00742000" + }, + { + "id": "66484", + "name": "Jaffna District", + "state_id": 2813, + "state_code": "4", + "country_id": 208, + "country_code": "LK", + "latitude": "9.75000000", + "longitude": "80.08333000" + }, + { + "id": "66496", + "name": "Kilinochchi", + "state_id": 2813, + "state_code": "4", + "country_id": 208, + "country_code": "LK", + "latitude": "9.39610000", + "longitude": "80.39820000" + }, + { + "id": "66497", + "name": "Kilinochchi District", + "state_id": 2813, + "state_code": "4", + "country_id": 208, + "country_code": "LK", + "latitude": "9.39487000", + "longitude": "80.40894000" + }, + { + "id": "66522", + "name": "Point Pedro", + "state_id": 2813, + "state_code": "4", + "country_id": 208, + "country_code": "LK", + "latitude": "9.81667000", + "longitude": "80.23333000" + }, + { + "id": "66538", + "name": "Valvedditturai", + "state_id": 2813, + "state_code": "4", + "country_id": 208, + "country_code": "LK", + "latitude": "9.81667000", + "longitude": "80.16667000" + }, + { + "id": "66539", + "name": "Vavuniya", + "state_id": 2813, + "state_code": "4", + "country_id": 208, + "country_code": "LK", + "latitude": "8.75140000", + "longitude": "80.49710000" + }, + { + "id": "66540", + "name": "Vavuniya District", + "state_id": 2813, + "state_code": "4", + "country_id": 208, + "country_code": "LK", + "latitude": "8.86134000", + "longitude": "80.47576000" + }, + { + "id": "66493", + "name": "Kegalle", + "state_id": 2803, + "state_code": "9", + "country_id": 208, + "country_code": "LK", + "latitude": "7.25230000", + "longitude": "80.34360000" + }, + { + "id": "66494", + "name": "Kegalle District", + "state_id": 2803, + "state_code": "9", + "country_id": 208, + "country_code": "LK", + "latitude": "7.11670000", + "longitude": "80.33330000" + }, + { + "id": "66527", + "name": "Ratnapura", + "state_id": 2803, + "state_code": "9", + "country_id": 208, + "country_code": "LK", + "latitude": "6.68580000", + "longitude": "80.40360000" + }, + { + "id": "66528", + "name": "Ratnapura District", + "state_id": 2803, + "state_code": "9", + "country_id": 208, + "country_code": "LK", + "latitude": "6.58310000", + "longitude": "80.58330000" + }, + { + "id": "66448", + "name": "Ambalangoda", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "6.23550000", + "longitude": "80.05380000" + }, + { + "id": "66458", + "name": "Bentota", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "6.42598000", + "longitude": "79.99575000" + }, + { + "id": "66465", + "name": "Devinuwara", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "5.92825000", + "longitude": "80.58880000" + }, + { + "id": "66468", + "name": "Galle", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "6.04610000", + "longitude": "80.21030000" + }, + { + "id": "66469", + "name": "Galle District", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "6.25000000", + "longitude": "80.25000000" + }, + { + "id": "66473", + "name": "Hambantota District", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "6.25440000", + "longitude": "81.11110000" + }, + { + "id": "66478", + "name": "Hikkaduwa", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "6.14070000", + "longitude": "80.10120000" + }, + { + "id": "66498", + "name": "Koggala", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "5.98860000", + "longitude": "80.32860000" + }, + { + "id": "66507", + "name": "Matara", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "5.94851000", + "longitude": "80.53528000" + }, + { + "id": "66508", + "name": "Matara District", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "6.13290000", + "longitude": "80.52800000" + }, + { + "id": "66511", + "name": "Mirissa city", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "5.94655000", + "longitude": "80.45831000" + }, + { + "id": "66532", + "name": "Talpe", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "5.99990000", + "longitude": "80.27870000" + }, + { + "id": "66533", + "name": "Tangalle", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "6.02338000", + "longitude": "80.79738000" + }, + { + "id": "66536", + "name": "Unawatuna", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "6.02120000", + "longitude": "80.25030000" + }, + { + "id": "66543", + "name": "Weligama", + "state_id": 2801, + "state_code": "3", + "country_id": 208, + "country_code": "LK", + "latitude": "5.97501000", + "longitude": "80.42968000" + }, + { + "id": "66453", + "name": "Badulla", + "state_id": 2811, + "state_code": "8", + "country_id": 208, + "country_code": "LK", + "latitude": "6.98020000", + "longitude": "81.05770000" + }, + { + "id": "66454", + "name": "Badulla District", + "state_id": 2811, + "state_code": "8", + "country_id": 208, + "country_code": "LK", + "latitude": "6.98472000", + "longitude": "81.05639000" + }, + { + "id": "66466", + "name": "Ella Town", + "state_id": 2811, + "state_code": "8", + "country_id": 208, + "country_code": "LK", + "latitude": "6.87560000", + "longitude": "81.04630000" + }, + { + "id": "66475", + "name": "Haputale", + "state_id": 2811, + "state_code": "8", + "country_id": 208, + "country_code": "LK", + "latitude": "6.76566000", + "longitude": "80.95104000" + }, + { + "id": "66491", + "name": "Kataragama", + "state_id": 2811, + "state_code": "8", + "country_id": 208, + "country_code": "LK", + "latitude": "6.41340000", + "longitude": "81.33460000" + }, + { + "id": "66512", + "name": "Monaragala", + "state_id": 2811, + "state_code": "8", + "country_id": 208, + "country_code": "LK", + "latitude": "6.87140000", + "longitude": "81.34870000" + }, + { + "id": "66513", + "name": "Moneragala District", + "state_id": 2811, + "state_code": "8", + "country_id": 208, + "country_code": "LK", + "latitude": "6.66667000", + "longitude": "81.33333000" + }, + { + "id": "66542", + "name": "Wattegama", + "state_id": 2811, + "state_code": "8", + "country_id": 208, + "country_code": "LK", + "latitude": "6.79890000", + "longitude": "81.48080000" + }, + { + "id": "66545", + "name": "Wellawaya", + "state_id": 2811, + "state_code": "8", + "country_id": 208, + "country_code": "LK", + "latitude": "6.73694000", + "longitude": "81.10279000" + }, + { + "id": "66455", + "name": "Battaramulla South", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.89640000", + "longitude": "79.91810000" + }, + { + "id": "66459", + "name": "Beruwala", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.47880000", + "longitude": "79.98280000" + }, + { + "id": "66461", + "name": "Colombo", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.93548000", + "longitude": "79.84868000" + }, + { + "id": "66462", + "name": "Colombo District", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.86640000", + "longitude": "80.01660000" + }, + { + "id": "66464", + "name": "Dehiwala-Mount Lavinia", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.84019000", + "longitude": "79.87116000" + }, + { + "id": "66470", + "name": "Gampaha", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "7.08970000", + "longitude": "79.99250000" + }, + { + "id": "66471", + "name": "Gampaha District", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "7.13330000", + "longitude": "80.00000000" + }, + { + "id": "66474", + "name": "Hanwella Ihala", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.90120000", + "longitude": "80.08520000" + }, + { + "id": "66477", + "name": "Hendala", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.99090000", + "longitude": "79.88300000" + }, + { + "id": "66479", + "name": "Homagama", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.84400000", + "longitude": "80.00240000" + }, + { + "id": "66480", + "name": "Horana South", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.71590000", + "longitude": "80.06260000" + }, + { + "id": "66481", + "name": "Horawala Junction", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.48088000", + "longitude": "80.12708000" + }, + { + "id": "66482", + "name": "Ja Ela", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "7.07440000", + "longitude": "79.89190000" + }, + { + "id": "66487", + "name": "Kalutara", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.58310000", + "longitude": "79.95930000" + }, + { + "id": "66488", + "name": "Kandana", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "7.04800000", + "longitude": "79.89370000" + }, + { + "id": "66492", + "name": "Katunayaka", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "7.16992000", + "longitude": "79.88837000" + }, + { + "id": "66495", + "name": "Kelaniya", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.95530000", + "longitude": "79.92200000" + }, + { + "id": "66499", + "name": "Kolonnawa", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.93290000", + "longitude": "79.88480000" + }, + { + "id": "66500", + "name": "Kotikawatta", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.92690000", + "longitude": "79.90950000" + }, + { + "id": "66504", + "name": "Maharagama", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.84800000", + "longitude": "79.92650000" + }, + { + "id": "66510", + "name": "Minuwangoda", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "7.16630000", + "longitude": "79.95330000" + }, + { + "id": "66514", + "name": "Moratuwa", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.77300000", + "longitude": "79.88160000" + }, + { + "id": "66515", + "name": "Mulleriyawa", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.93300000", + "longitude": "79.92970000" + }, + { + "id": "66516", + "name": "Negombo", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "7.20830000", + "longitude": "79.83580000" + }, + { + "id": "66519", + "name": "Panadura", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.71320000", + "longitude": "79.90260000" + }, + { + "id": "66520", + "name": "Peliyagoda", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.96850000", + "longitude": "79.88360000" + }, + { + "id": "66521", + "name": "Pita Kotte", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.89050000", + "longitude": "79.90150000" + }, + { + "id": "66530", + "name": "Sri Jayewardenepura Kotte", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.88297000", + "longitude": "79.90708000" + }, + { + "id": "66541", + "name": "Wattala", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "6.98918000", + "longitude": "79.89167000" + }, + { + "id": "66544", + "name": "Welisara", + "state_id": 2802, + "state_code": "1", + "country_id": 208, + "country_code": "LK", + "latitude": "7.02810000", + "longitude": "79.90140000" + }, + { + "id": "102921", + "name": "Al Hasaheisa", + "state_id": 885, + "state_code": "GZ", + "country_id": 209, + "country_code": "SD", + "latitude": "14.75264000", + "longitude": "33.29836000" + }, + { + "id": "102922", + "name": "Al Hilāliyya", + "state_id": 885, + "state_code": "GZ", + "country_id": 209, + "country_code": "SD", + "latitude": "14.93980000", + "longitude": "33.23400000" + }, + { + "id": "102924", + "name": "Al Kiremit al ‘Arakiyyīn", + "state_id": 885, + "state_code": "GZ", + "country_id": 209, + "country_code": "SD", + "latitude": "14.34760000", + "longitude": "32.94370000" + }, + { + "id": "102926", + "name": "Al Manāqil", + "state_id": 885, + "state_code": "GZ", + "country_id": 209, + "country_code": "SD", + "latitude": "14.24590000", + "longitude": "32.98910000" + }, + { + "id": "102927", + "name": "Al Masallamiyya", + "state_id": 885, + "state_code": "GZ", + "country_id": 209, + "country_code": "SD", + "latitude": "14.57480000", + "longitude": "33.33730000" + }, + { + "id": "102980", + "name": "Wad Medani", + "state_id": 885, + "state_code": "GZ", + "country_id": 209, + "country_code": "SD", + "latitude": "14.40118000", + "longitude": "33.51989000" + }, + { + "id": "102981", + "name": "Wad Rāwah", + "state_id": 885, + "state_code": "GZ", + "country_id": 209, + "country_code": "SD", + "latitude": "15.16028000", + "longitude": "33.13972000" + }, + { + "id": "102931", + "name": "Al Ḩawātah", + "state_id": 886, + "state_code": "GD", + "country_id": 209, + "country_code": "SD", + "latitude": "13.41667000", + "longitude": "34.63333000" + }, + { + "id": "102929", + "name": "Al Qadarif", + "state_id": 886, + "state_code": "GD", + "country_id": 209, + "country_code": "SD", + "latitude": "14.03493000", + "longitude": "35.38344000" + }, + { + "id": "102942", + "name": "Doka", + "state_id": 886, + "state_code": "GD", + "country_id": 209, + "country_code": "SD", + "latitude": "13.51667000", + "longitude": "35.76667000" + }, + { + "id": "102919", + "name": "Ad-Damazin", + "state_id": 887, + "state_code": "NB", + "country_id": 209, + "country_code": "SD", + "latitude": "11.78910000", + "longitude": "34.35920000" + }, + { + "id": "102934", + "name": "Ar Ruseris", + "state_id": 887, + "state_code": "NB", + "country_id": 209, + "country_code": "SD", + "latitude": "11.86590000", + "longitude": "34.38690000" + }, + { + "id": "102961", + "name": "Kurmuk", + "state_id": 887, + "state_code": "NB", + "country_id": 209, + "country_code": "SD", + "latitude": "10.55000000", + "longitude": "34.28333000" + }, + { + "id": "102984", + "name": "Zalingei", + "state_id": 896, + "state_code": "DC", + "country_id": 209, + "country_code": "SD", + "latitude": "12.90918000", + "longitude": "23.47058000" + }, + { + "id": "102946", + "name": "El Daein", + "state_id": 892, + "state_code": "DE", + "country_id": 209, + "country_code": "SD", + "latitude": "11.46186000", + "longitude": "26.12583000" + }, + { + "id": "102936", + "name": "Aroma", + "state_id": 884, + "state_code": "KA", + "country_id": 209, + "country_code": "SD", + "latitude": "15.81667000", + "longitude": "36.13333000" + }, + { + "id": "102956", + "name": "Kassala", + "state_id": 884, + "state_code": "KA", + "country_id": 209, + "country_code": "SD", + "latitude": "15.45099000", + "longitude": "36.39998000" + }, + { + "id": "102983", + "name": "Wagar", + "state_id": 884, + "state_code": "KA", + "country_id": 209, + "country_code": "SD", + "latitude": "16.15250000", + "longitude": "36.20320000" + }, + { + "id": "102957", + "name": "Khartoum", + "state_id": 881, + "state_code": "KH", + "country_id": 209, + "country_code": "SD", + "latitude": "15.55177000", + "longitude": "32.53241000" + }, + { + "id": "102967", + "name": "Omdurman", + "state_id": 881, + "state_code": "KH", + "country_id": 209, + "country_code": "SD", + "latitude": "15.64453000", + "longitude": "32.47773000" + }, + { + "id": "102947", + "name": "El Fasher", + "state_id": 890, + "state_code": "DN", + "country_id": 209, + "country_code": "SD", + "latitude": "13.62793000", + "longitude": "25.34936000" + }, + { + "id": "102962", + "name": "Kutum", + "state_id": 890, + "state_code": "DN", + "country_id": 209, + "country_code": "SD", + "latitude": "14.20000000", + "longitude": "24.66667000" + }, + { + "id": "102978", + "name": "Umm Kaddadah", + "state_id": 890, + "state_code": "DN", + "country_id": 209, + "country_code": "SD", + "latitude": "13.60169000", + "longitude": "26.68759000" + }, + { + "id": "102933", + "name": "Ar Rahad", + "state_id": 893, + "state_code": "KN", + "country_id": 209, + "country_code": "SD", + "latitude": "12.71667000", + "longitude": "30.65000000" + }, + { + "id": "102940", + "name": "Bārah", + "state_id": 893, + "state_code": "KN", + "country_id": 209, + "country_code": "SD", + "latitude": "13.70000000", + "longitude": "30.36667000" + }, + { + "id": "102949", + "name": "El Obeid", + "state_id": 893, + "state_code": "KN", + "country_id": 209, + "country_code": "SD", + "latitude": "13.18421000", + "longitude": "30.21669000" + }, + { + "id": "102979", + "name": "Umm Ruwaba", + "state_id": 893, + "state_code": "KN", + "country_id": 209, + "country_code": "SD", + "latitude": "12.90610000", + "longitude": "31.21580000" + }, + { + "id": "102916", + "name": "Ad Dabbah", + "state_id": 895, + "state_code": "NO", + "country_id": 209, + "country_code": "SD", + "latitude": "18.05000000", + "longitude": "30.95000000" + }, + { + "id": "102935", + "name": "Argo", + "state_id": 895, + "state_code": "NO", + "country_id": 209, + "country_code": "SD", + "latitude": "19.51667000", + "longitude": "30.41667000" + }, + { + "id": "102943", + "name": "Dongola", + "state_id": 895, + "state_code": "NO", + "country_id": 209, + "country_code": "SD", + "latitude": "19.18163000", + "longitude": "30.47689000" + }, + { + "id": "102955", + "name": "Karmah an Nuzul", + "state_id": 895, + "state_code": "NO", + "country_id": 209, + "country_code": "SD", + "latitude": "19.63333000", + "longitude": "30.41667000" + }, + { + "id": "102960", + "name": "Kuraymah", + "state_id": 895, + "state_code": "NO", + "country_id": 209, + "country_code": "SD", + "latitude": "18.55000000", + "longitude": "31.85000000" + }, + { + "id": "102965", + "name": "Merowe", + "state_id": 895, + "state_code": "NO", + "country_id": 209, + "country_code": "SD", + "latitude": "18.47036000", + "longitude": "31.81126000" + }, + { + "id": "102950", + "name": "Gebeit", + "state_id": 880, + "state_code": "RS", + "country_id": 209, + "country_code": "SD", + "latitude": "21.06667000", + "longitude": "36.31667000" + }, + { + "id": "102968", + "name": "Port Sudan", + "state_id": 880, + "state_code": "RS", + "country_id": 209, + "country_code": "SD", + "latitude": "19.61745000", + "longitude": "37.21644000" + }, + { + "id": "102970", + "name": "Sawākin", + "state_id": 880, + "state_code": "RS", + "country_id": 209, + "country_code": "SD", + "latitude": "19.10590000", + "longitude": "37.33210000" + }, + { + "id": "102976", + "name": "Tokār", + "state_id": 880, + "state_code": "RS", + "country_id": 209, + "country_code": "SD", + "latitude": "18.42540000", + "longitude": "37.72900000" + }, + { + "id": "102938", + "name": "Atbara", + "state_id": 891, + "state_code": "NR", + "country_id": 209, + "country_code": "SD", + "latitude": "17.70217000", + "longitude": "33.98638000" + }, + { + "id": "102939", + "name": "Berber", + "state_id": 891, + "state_code": "NR", + "country_id": 209, + "country_code": "SD", + "latitude": "18.02158000", + "longitude": "33.98299000" + }, + { + "id": "102944", + "name": "Ed Damer", + "state_id": 891, + "state_code": "NR", + "country_id": 209, + "country_code": "SD", + "latitude": "17.59898000", + "longitude": "33.97205000" + }, + { + "id": "102945", + "name": "El Bauga", + "state_id": 891, + "state_code": "NR", + "country_id": 209, + "country_code": "SD", + "latitude": "18.26197000", + "longitude": "33.90812000" + }, + { + "id": "102948", + "name": "El Matama", + "state_id": 891, + "state_code": "NR", + "country_id": 209, + "country_code": "SD", + "latitude": "16.70950000", + "longitude": "33.35650000" + }, + { + "id": "102971", + "name": "Shendi", + "state_id": 891, + "state_code": "NR", + "country_id": 209, + "country_code": "SD", + "latitude": "16.69150000", + "longitude": "33.43410000" + }, + { + "id": "102917", + "name": "Ad Dindar", + "state_id": 882, + "state_code": "SI", + "country_id": 209, + "country_code": "SD", + "latitude": "13.20000000", + "longitude": "34.16667000" + }, + { + "id": "102937", + "name": "As Sūkī", + "state_id": 882, + "state_code": "SI", + "country_id": 209, + "country_code": "SD", + "latitude": "13.31667000", + "longitude": "33.88333000" + }, + { + "id": "102953", + "name": "Jalqani", + "state_id": 882, + "state_code": "SI", + "country_id": 209, + "country_code": "SD", + "latitude": "12.44860000", + "longitude": "34.21860000" + }, + { + "id": "102958", + "name": "Kināna", + "state_id": 882, + "state_code": "SI", + "country_id": 209, + "country_code": "SD", + "latitude": "14.03610000", + "longitude": "33.17120000" + }, + { + "id": "102963", + "name": "Maiurno", + "state_id": 882, + "state_code": "SI", + "country_id": 209, + "country_code": "SD", + "latitude": "13.41667000", + "longitude": "33.66667000" + }, + { + "id": "102972", + "name": "Singa", + "state_id": 882, + "state_code": "SI", + "country_id": 209, + "country_code": "SD", + "latitude": "13.14830000", + "longitude": "33.93117000" + }, + { + "id": "102973", + "name": "Sinnar", + "state_id": 882, + "state_code": "SI", + "country_id": 209, + "country_code": "SD", + "latitude": "13.56907000", + "longitude": "33.56718000" + }, + { + "id": "102952", + "name": "Gereida", + "state_id": 894, + "state_code": "DS", + "country_id": 209, + "country_code": "SD", + "latitude": "11.27543000", + "longitude": "25.14026000" + }, + { + "id": "102966", + "name": "Nyala", + "state_id": 894, + "state_code": "DS", + "country_id": 209, + "country_code": "SD", + "latitude": "12.04888000", + "longitude": "24.88069000" + }, + { + "id": "102914", + "name": "Abu Jibeha", + "state_id": 883, + "state_code": "KS", + "country_id": 209, + "country_code": "SD", + "latitude": "11.45620000", + "longitude": "31.22850000" + }, + { + "id": "102920", + "name": "Al Fūlah", + "state_id": 883, + "state_code": "KS", + "country_id": 209, + "country_code": "SD", + "latitude": "11.73292000", + "longitude": "28.35786000" + }, + { + "id": "102941", + "name": "Dilling", + "state_id": 883, + "state_code": "KS", + "country_id": 209, + "country_code": "SD", + "latitude": "12.05000000", + "longitude": "29.65000000" + }, + { + "id": "102954", + "name": "Kadugli", + "state_id": 883, + "state_code": "KS", + "country_id": 209, + "country_code": "SD", + "latitude": "11.01111000", + "longitude": "29.71833000" + }, + { + "id": "102974", + "name": "Talodi", + "state_id": 883, + "state_code": "KS", + "country_id": 209, + "country_code": "SD", + "latitude": "10.63246000", + "longitude": "30.37970000" + }, + { + "id": "102951", + "name": "Geneina", + "state_id": 888, + "state_code": "DW", + "country_id": 209, + "country_code": "SD", + "latitude": "13.45262000", + "longitude": "22.44725000" + }, + { + "id": "102915", + "name": "Abū Zabad", + "state_id": 889, + "state_code": "GK", + "country_id": 209, + "country_code": "SD", + "latitude": "12.35000000", + "longitude": "29.25000000" + }, + { + "id": "102925", + "name": "Al Lagowa", + "state_id": 889, + "state_code": "GK", + "country_id": 209, + "country_code": "SD", + "latitude": "11.40000000", + "longitude": "29.13333000" + }, + { + "id": "102928", + "name": "Al Mijlad", + "state_id": 889, + "state_code": "GK", + "country_id": 209, + "country_code": "SD", + "latitude": "11.03333000", + "longitude": "27.73333000" + }, + { + "id": "102932", + "name": "An Nuhūd", + "state_id": 889, + "state_code": "GK", + "country_id": 209, + "country_code": "SD", + "latitude": "12.70000000", + "longitude": "28.43333000" + }, + { + "id": "102918", + "name": "Ad Douiem", + "state_id": 879, + "state_code": "NW", + "country_id": 209, + "country_code": "SD", + "latitude": "14.00120000", + "longitude": "32.31160000" + }, + { + "id": "102923", + "name": "Al Kawa", + "state_id": 879, + "state_code": "NW", + "country_id": 209, + "country_code": "SD", + "latitude": "13.74630000", + "longitude": "32.49960000" + }, + { + "id": "102930", + "name": "Al Qiţena", + "state_id": 879, + "state_code": "NW", + "country_id": 209, + "country_code": "SD", + "latitude": "14.86480000", + "longitude": "32.36680000" + }, + { + "id": "102959", + "name": "Kosti", + "state_id": 879, + "state_code": "NW", + "country_id": 209, + "country_code": "SD", + "latitude": "13.16290000", + "longitude": "32.66347000" + }, + { + "id": "102964", + "name": "Marabba", + "state_id": 879, + "state_code": "NW", + "country_id": 209, + "country_code": "SD", + "latitude": "12.35000000", + "longitude": "32.18333000" + }, + { + "id": "102969", + "name": "Rabak", + "state_id": 879, + "state_code": "NW", + "country_id": 209, + "country_code": "SD", + "latitude": "13.18087000", + "longitude": "32.73999000" + }, + { + "id": "102975", + "name": "Tandaltī", + "state_id": 879, + "state_code": "NW", + "country_id": 209, + "country_code": "SD", + "latitude": "13.01667000", + "longitude": "31.86667000" + }, + { + "id": "102977", + "name": "Um Jar Al Gharbiyya", + "state_id": 879, + "state_code": "NW", + "country_id": 209, + "country_code": "SD", + "latitude": "13.80130000", + "longitude": "32.40780000" + }, + { + "id": "102982", + "name": "Wad az Zāki", + "state_id": 879, + "state_code": "NW", + "country_id": 209, + "country_code": "SD", + "latitude": "14.46190000", + "longitude": "32.20650000" + }, + { + "id": "104822", + "name": "Brokopondo", + "state_id": 2846, + "state_code": "BR", + "country_id": 210, + "country_code": "SR", + "latitude": "5.05594000", + "longitude": "-54.98043000" + }, + { + "id": "104823", + "name": "Brownsweg", + "state_id": 2846, + "state_code": "BR", + "country_id": 210, + "country_code": "SR", + "latitude": "5.00435000", + "longitude": "-55.15333000" + }, + { + "id": "104826", + "name": "Mariënburg", + "state_id": 2839, + "state_code": "CM", + "country_id": 210, + "country_code": "SR", + "latitude": "5.87722000", + "longitude": "-55.04322000" + }, + { + "id": "104828", + "name": "Nieuw Amsterdam", + "state_id": 2839, + "state_code": "CM", + "country_id": 210, + "country_code": "SR", + "latitude": "5.88573000", + "longitude": "-55.08871000" + }, + { + "id": "104832", + "name": "Totness", + "state_id": 2842, + "state_code": "CR", + "country_id": 210, + "country_code": "SR", + "latitude": "5.87618000", + "longitude": "-56.32572000" + }, + { + "id": "104821", + "name": "Albina", + "state_id": 2845, + "state_code": "MA", + "country_id": 210, + "country_code": "SR", + "latitude": "5.49788000", + "longitude": "-54.05522000" + }, + { + "id": "104827", + "name": "Moengo", + "state_id": 2845, + "state_code": "MA", + "country_id": 210, + "country_code": "SR", + "latitude": "5.61411000", + "longitude": "-54.40121000" + }, + { + "id": "104829", + "name": "Nieuw Nickerie", + "state_id": 2840, + "state_code": "NI", + "country_id": 210, + "country_code": "SR", + "latitude": "5.92606000", + "longitude": "-56.97297000" + }, + { + "id": "104833", + "name": "Wageningen", + "state_id": 2840, + "state_code": "NI", + "country_id": 210, + "country_code": "SR", + "latitude": "5.76010000", + "longitude": "-56.66523000" + }, + { + "id": "104830", + "name": "Onverwacht", + "state_id": 2841, + "state_code": "PR", + "country_id": 210, + "country_code": "SR", + "latitude": "5.58983000", + "longitude": "-55.19462000" + }, + { + "id": "104831", + "name": "Paramaribo", + "state_id": 2843, + "state_code": "PM", + "country_id": 210, + "country_code": "SR", + "latitude": "5.86638000", + "longitude": "-55.16682000" + }, + { + "id": "104824", + "name": "Groningen", + "state_id": 2848, + "state_code": "SA", + "country_id": 210, + "country_code": "SR", + "latitude": "5.80000000", + "longitude": "-55.46667000" + }, + { + "id": "104825", + "name": "Lelydorp", + "state_id": 2844, + "state_code": "WA", + "country_id": 210, + "country_code": "SR", + "latitude": "5.70000000", + "longitude": "-55.23333000" + }, + { + "id": "105084", + "name": "Bulembu", + "state_id": 969, + "state_code": "HH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-25.96667000", + "longitude": "31.13333000" + }, + { + "id": "105087", + "name": "Hhukwini", + "state_id": 969, + "state_code": "HH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.31972000", + "longitude": "31.22222000" + }, + { + "id": "105093", + "name": "Lobamba", + "state_id": 969, + "state_code": "HH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.46667000", + "longitude": "31.20000000" + }, + { + "id": "105099", + "name": "Mbabane", + "state_id": 969, + "state_code": "HH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.31667000", + "longitude": "31.13333000" + }, + { + "id": "105105", + "name": "Nkhaba", + "state_id": 969, + "state_code": "HH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.15728000", + "longitude": "31.16391000" + }, + { + "id": "105109", + "name": "Piggs Peak", + "state_id": 969, + "state_code": "HH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-25.96082000", + "longitude": "31.24666000" + }, + { + "id": "105083", + "name": "Big Bend", + "state_id": 970, + "state_code": "LU", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.81667000", + "longitude": "31.93333000" + }, + { + "id": "105085", + "name": "Dvokodvweni Inkhundla", + "state_id": 970, + "state_code": "LU", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.45398000", + "longitude": "31.76456000" + }, + { + "id": "105094", + "name": "Lomashasha", + "state_id": 970, + "state_code": "LU", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.06644000", + "longitude": "32.00768000" + }, + { + "id": "105101", + "name": "Mhlume", + "state_id": 970, + "state_code": "LU", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.03333000", + "longitude": "31.85000000" + }, + { + "id": "105107", + "name": "Nsoko", + "state_id": 970, + "state_code": "LU", + "country_id": 212, + "country_code": "SZ", + "latitude": "-27.03333000", + "longitude": "31.95000000" + }, + { + "id": "105112", + "name": "Siteki", + "state_id": 970, + "state_code": "LU", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.45250000", + "longitude": "31.94722000" + }, + { + "id": "105113", + "name": "Tshaneni", + "state_id": 970, + "state_code": "LU", + "country_id": 212, + "country_code": "SZ", + "latitude": "-25.98333000", + "longitude": "31.71667000" + }, + { + "id": "105114", + "name": "Vuvulane", + "state_id": 970, + "state_code": "LU", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.07427000", + "longitude": "31.87672000" + }, + { + "id": "105082", + "name": "Bhunya", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.55000000", + "longitude": "31.01667000" + }, + { + "id": "105086", + "name": "Ekukhanyeni", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.38750000", + "longitude": "31.52806000" + }, + { + "id": "105091", + "name": "Kwaluseni", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.48333000", + "longitude": "31.33333000" + }, + { + "id": "105095", + "name": "Malkerns", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.56667000", + "longitude": "31.18333000" + }, + { + "id": "105096", + "name": "Manzini", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.49884000", + "longitude": "31.38004000" + }, + { + "id": "105097", + "name": "Manzini South", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.48333000", + "longitude": "31.36667000" + }, + { + "id": "105100", + "name": "Mhlambanyatsi", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.45000000", + "longitude": "31.01667000" + }, + { + "id": "105103", + "name": "Ngwempisi", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.69990000", + "longitude": "31.28876000" + }, + { + "id": "105108", + "name": "Ntondozi", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.63500000", + "longitude": "31.22556000" + }, + { + "id": "105110", + "name": "Sidvokodvo", + "state_id": 968, + "state_code": "MA", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.62820000", + "longitude": "31.42021000" + }, + { + "id": "105088", + "name": "Hlatikulu", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.97917000", + "longitude": "31.32444000" + }, + { + "id": "105089", + "name": "Hluti", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-27.21667000", + "longitude": "31.61667000" + }, + { + "id": "105090", + "name": "Kubuta", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.88333000", + "longitude": "31.48333000" + }, + { + "id": "105092", + "name": "Lavumisa", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-27.31005000", + "longitude": "31.89198000" + }, + { + "id": "105098", + "name": "Matsanjeni", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-27.21585000", + "longitude": "31.72309000" + }, + { + "id": "105102", + "name": "Ngudzeni", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-27.03583000", + "longitude": "31.55111000" + }, + { + "id": "105104", + "name": "Nhlangano", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-27.11222000", + "longitude": "31.19833000" + }, + { + "id": "105106", + "name": "Nkwene", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-26.89778000", + "longitude": "31.24972000" + }, + { + "id": "105111", + "name": "Sigwe Inkhundla", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-27.05821000", + "longitude": "31.64543000" + }, + { + "id": "105115", + "name": "Zombodze Ikhundla", + "state_id": 971, + "state_code": "SH", + "country_id": 212, + "country_code": "SZ", + "latitude": "-27.22746000", + "longitude": "31.33799000" + }, + { + "id": "103019", + "name": "Askersund", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "58.87988000", + "longitude": "14.90230000" + }, + { + "id": "103020", + "name": "Askersunds Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "58.88048000", + "longitude": "14.98416000" + }, + { + "id": "104034", + "name": "Örebro", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.27412000", + "longitude": "15.20660000" + }, + { + "id": "104035", + "name": "Örebro Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.27168000", + "longitude": "15.28364000" + }, + { + "id": "104017", + "name": "Åsbro", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.00000000", + "longitude": "15.05000000" + }, + { + "id": "103115", + "name": "Degerfors", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.23797000", + "longitude": "14.43077000" + }, + { + "id": "103116", + "name": "Degerfors Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.15580000", + "longitude": "14.43352000" + }, + { + "id": "103131", + "name": "Ekeby-Almby", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.26000000", + "longitude": "15.33000000" + }, + { + "id": "103163", + "name": "Fellingsbro", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.43333000", + "longitude": "15.58333000" + }, + { + "id": "103170", + "name": "Fjugesta", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.17375000", + "longitude": "14.87227000" + }, + { + "id": "103187", + "name": "Frövi", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.46667000", + "longitude": "15.36667000" + }, + { + "id": "103204", + "name": "Garphyttan", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.30429000", + "longitude": "14.94623000" + }, + { + "id": "103253", + "name": "Hallsberg", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.06463000", + "longitude": "15.10993000" + }, + { + "id": "103254", + "name": "Hallsbergs Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.03803000", + "longitude": "15.18468000" + }, + { + "id": "103316", + "name": "Hällabrottet", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.11667000", + "longitude": "15.20000000" + }, + { + "id": "103318", + "name": "Hällefors", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.78388000", + "longitude": "14.52197000" + }, + { + "id": "103319", + "name": "Hällefors Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.75736000", + "longitude": "14.61495000" + }, + { + "id": "103302", + "name": "Hovsta", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.35000000", + "longitude": "15.21667000" + }, + { + "id": "103379", + "name": "Karlskoga", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32667000", + "longitude": "14.52386000" + }, + { + "id": "103380", + "name": "Karlskoga Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.37383000", + "longitude": "14.56720000" + }, + { + "id": "103409", + "name": "Kopparberg", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.87597000", + "longitude": "14.99436000" + }, + { + "id": "103420", + "name": "Kumla", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.12770000", + "longitude": "15.14341000" + }, + { + "id": "103421", + "name": "Kumla Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.12715000", + "longitude": "15.14649000" + }, + { + "id": "103453", + "name": "Laxå", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "58.98630000", + "longitude": "14.61904000" + }, + { + "id": "103454", + "name": "Laxå Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "58.90913000", + "longitude": "14.53060000" + }, + { + "id": "103455", + "name": "Lekebergs Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.18604000", + "longitude": "14.79796000" + }, + { + "id": "103469", + "name": "Lindesberg", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.59202000", + "longitude": "15.23040000" + }, + { + "id": "103470", + "name": "Lindesbergs Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.64119000", + "longitude": "15.34064000" + }, + { + "id": "103487", + "name": "Ljusnarsbergs Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.92622000", + "longitude": "14.96499000" + }, + { + "id": "103577", + "name": "Nora", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.51926000", + "longitude": "15.03979000" + }, + { + "id": "103578", + "name": "Nora Kommun", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.53456000", + "longitude": "14.90777000" + }, + { + "id": "103609", + "name": "Odensbacken", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.16667000", + "longitude": "15.53333000" + }, + { + "id": "103640", + "name": "Pålsboda", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.06565000", + "longitude": "15.33747000" + }, + { + "id": "103723", + "name": "Sköllersta", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.13738000", + "longitude": "15.33940000" + }, + { + "id": "103770", + "name": "Storå", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.71409000", + "longitude": "15.13169000" + }, + { + "id": "103955", + "name": "Vintrosa", + "state_id": 1539, + "state_code": "T", + "country_id": 213, + "country_code": "SE", + "latitude": "59.25000000", + "longitude": "14.95000000" + }, + { + "id": "104027", + "name": "Ödeshög", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.22949000", + "longitude": "14.65294000" + }, + { + "id": "104028", + "name": "Ödeshögs Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.22640000", + "longitude": "14.74067000" + }, + { + "id": "104044", + "name": "Österbymo", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "57.82465000", + "longitude": "15.27357000" + }, + { + "id": "103999", + "name": "Åby", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.66667000", + "longitude": "16.18333000" + }, + { + "id": "104023", + "name": "Åtvidaberg", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.20152000", + "longitude": "15.99770000" + }, + { + "id": "104024", + "name": "Åtvidabergs Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.22799000", + "longitude": "16.12522000" + }, + { + "id": "103032", + "name": "Berg", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.48831000", + "longitude": "15.52969000" + }, + { + "id": "103072", + "name": "Borensberg", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.56667000", + "longitude": "15.28333000" + }, + { + "id": "103079", + "name": "Boxholm", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.19719000", + "longitude": "15.05376000" + }, + { + "id": "103080", + "name": "Boxholms Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.14842000", + "longitude": "15.10988000" + }, + { + "id": "103138", + "name": "Ekängen", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.46667000", + "longitude": "15.63333000" + }, + { + "id": "103166", + "name": "Finspång", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.70578000", + "longitude": "15.76739000" + }, + { + "id": "103167", + "name": "Finspångs Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.80568000", + "longitude": "15.78783000" + }, + { + "id": "103221", + "name": "Grebo", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.30145000", + "longitude": "15.87085000" + }, + { + "id": "103236", + "name": "Gusum", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.26880000", + "longitude": "16.49894000" + }, + { + "id": "103281", + "name": "Herrestad", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.38333000", + "longitude": "14.80000000" + }, + { + "id": "103358", + "name": "Jursla", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.66667000", + "longitude": "16.18333000" + }, + { + "id": "103391", + "name": "Kimstad", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.54967000", + "longitude": "15.96296000" + }, + { + "id": "103392", + "name": "Kinda Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.01315000", + "longitude": "15.73373000" + }, + { + "id": "103396", + "name": "Kisa", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "57.98781000", + "longitude": "15.63303000" + }, + { + "id": "103418", + "name": "Krokek", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.67231000", + "longitude": "16.36741000" + }, + { + "id": "103474", + "name": "Lindö", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.61667000", + "longitude": "16.25000000" + }, + { + "id": "103475", + "name": "Linghem", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.43333000", + "longitude": "15.78333000" + }, + { + "id": "103476", + "name": "Linköping", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.41086000", + "longitude": "15.62157000" + }, + { + "id": "103477", + "name": "Linköpings Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.41046000", + "longitude": "15.61870000" + }, + { + "id": "103483", + "name": "Ljungsbro", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.51667000", + "longitude": "15.50000000" + }, + { + "id": "103516", + "name": "Malmslätt", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.41102000", + "longitude": "15.51647000" + }, + { + "id": "103522", + "name": "Mantorp", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.35000000", + "longitude": "15.28333000" + }, + { + "id": "103540", + "name": "Mjölby", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.32595000", + "longitude": "15.12365000" + }, + { + "id": "103541", + "name": "Mjölby Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.34576000", + "longitude": "15.13853000" + }, + { + "id": "103548", + "name": "Motala", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.53706000", + "longitude": "15.03649000" + }, + { + "id": "103549", + "name": "Motala Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.65131000", + "longitude": "15.19105000" + }, + { + "id": "103586", + "name": "Norrköping", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.59419000", + "longitude": "16.18260000" + }, + { + "id": "103587", + "name": "Norrköpings Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.61139000", + "longitude": "16.32092000" + }, + { + "id": "103647", + "name": "Rimforsa", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.13624000", + "longitude": "15.68650000" + }, + { + "id": "103661", + "name": "Ryd", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.66667000", + "longitude": "15.08333000" + }, + { + "id": "103821", + "name": "Söderköping", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.48057000", + "longitude": "16.32221000" + }, + { + "id": "103822", + "name": "Söderköpings Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.42056000", + "longitude": "16.44510000" + }, + { + "id": "103718", + "name": "Skänninge", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.39427000", + "longitude": "15.08659000" + }, + { + "id": "103719", + "name": "Skärblacka", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.56667000", + "longitude": "15.90000000" + }, + { + "id": "103752", + "name": "Stenstorp", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.48333000", + "longitude": "15.06667000" + }, + { + "id": "103778", + "name": "Sturefors", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.33333000", + "longitude": "15.73333000" + }, + { + "id": "103803", + "name": "Svärtinge", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.65507000", + "longitude": "16.02823000" + }, + { + "id": "103836", + "name": "Tallboda", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.42521000", + "longitude": "15.68154000" + }, + { + "id": "103907", + "name": "Vadstena", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.44863000", + "longitude": "14.88969000" + }, + { + "id": "103908", + "name": "Vadstena Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.40783000", + "longitude": "14.86162000" + }, + { + "id": "103913", + "name": "Valdemarsvik", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.20310000", + "longitude": "16.60225000" + }, + { + "id": "103914", + "name": "Valdemarsviks Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.20000000", + "longitude": "16.60000000" + }, + { + "id": "103944", + "name": "Vikingstad", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "58.38304000", + "longitude": "15.43201000" + }, + { + "id": "103982", + "name": "Ydre Kommun", + "state_id": 1536, + "state_code": "E", + "country_id": 213, + "country_code": "SE", + "latitude": "57.86355000", + "longitude": "15.26266000" + }, + { + "id": "103094", + "name": "Bräkne-Hoby", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.23333000", + "longitude": "15.11667000" + }, + { + "id": "103270", + "name": "Hasslö", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.11667000", + "longitude": "15.48333000" + }, + { + "id": "103321", + "name": "Hällevik", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.01667000", + "longitude": "14.70000000" + }, + { + "id": "103359", + "name": "Jämjö", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.19187000", + "longitude": "15.84115000" + }, + { + "id": "103360", + "name": "Jämshög", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.23333000", + "longitude": "14.51667000" + }, + { + "id": "103371", + "name": "Kallinge", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.24841000", + "longitude": "15.28721000" + }, + { + "id": "103377", + "name": "Karlshamn", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.17060000", + "longitude": "14.86188000" + }, + { + "id": "103378", + "name": "Karlshamns kommun", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.25000000", + "longitude": "14.86667000" + }, + { + "id": "103381", + "name": "Karlskrona", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.16156000", + "longitude": "15.58661000" + }, + { + "id": "103382", + "name": "Karlskrona Kommun", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.28167000", + "longitude": "15.66848000" + }, + { + "id": "103570", + "name": "Mörrum", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.19281000", + "longitude": "14.74739000" + }, + { + "id": "103539", + "name": "Mjällby", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.05000000", + "longitude": "14.68333000" + }, + { + "id": "103605", + "name": "Nättraby", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.20000000", + "longitude": "15.51667000" + }, + { + "id": "103612", + "name": "Olofström", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.27730000", + "longitude": "14.53402000" + }, + { + "id": "103613", + "name": "Olofströms Kommun", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.32305000", + "longitude": "14.56561000" + }, + { + "id": "103672", + "name": "Rödeby", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.26078000", + "longitude": "15.62143000" + }, + { + "id": "103655", + "name": "Ronneby", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.20999000", + "longitude": "15.27602000" + }, + { + "id": "103656", + "name": "Ronneby Kommun", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.31031000", + "longitude": "15.24038000" + }, + { + "id": "103830", + "name": "Sölvesborg", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.05205000", + "longitude": "14.57525000" + }, + { + "id": "103831", + "name": "Sölvesborgs kommun", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.08910000", + "longitude": "14.64518000" + }, + { + "id": "103779", + "name": "Sturkö", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.08333000", + "longitude": "15.70000000" + }, + { + "id": "103801", + "name": "Svängsta", + "state_id": 1537, + "state_code": "K", + "country_id": 213, + "country_code": "SE", + "latitude": "56.26667000", + "longitude": "14.76667000" + }, + { + "id": "102985", + "name": "Abborrberget", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.15000000", + "longitude": "14.80000000" + }, + { + "id": "103022", + "name": "Avesta", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.14274000", + "longitude": "16.16295000" + }, + { + "id": "103023", + "name": "Avesta Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.21251000", + "longitude": "16.36234000" + }, + { + "id": "103989", + "name": "Älvdalen", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "61.22774000", + "longitude": "14.03935000" + }, + { + "id": "103990", + "name": "Älvdalens kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "61.61337000", + "longitude": "13.27257000" + }, + { + "id": "103046", + "name": "Bjursås", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.73726000", + "longitude": "15.45291000" + }, + { + "id": "103075", + "name": "Borlänge", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.48580000", + "longitude": "15.43714000" + }, + { + "id": "103076", + "name": "Borlänge Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.45799000", + "longitude": "15.39873000" + }, + { + "id": "103093", + "name": "Brunna", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.26255000", + "longitude": "16.01034000" + }, + { + "id": "103122", + "name": "Djurås", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.56061000", + "longitude": "15.13281000" + }, + { + "id": "103142", + "name": "Enbacka", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.40993000", + "longitude": "15.59575000" + }, + { + "id": "103161", + "name": "Falu kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.60483000", + "longitude": "15.63492000" + }, + { + "id": "103162", + "name": "Falun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.60357000", + "longitude": "15.62597000" + }, + { + "id": "103197", + "name": "Gagnef", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.59856000", + "longitude": "15.07745000" + }, + { + "id": "103198", + "name": "Gagnefs Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.47391000", + "longitude": "14.94676000" + }, + { + "id": "103226", + "name": "Grängesberg", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.07465000", + "longitude": "15.00784000" + }, + { + "id": "103225", + "name": "Grycksbo", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.68751000", + "longitude": "15.48507000" + }, + { + "id": "103274", + "name": "Hedemora", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.27973000", + "longitude": "15.98855000" + }, + { + "id": "103275", + "name": "Hedemora Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.34659000", + "longitude": "16.07350000" + }, + { + "id": "103297", + "name": "Horndal", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.30000000", + "longitude": "16.41667000" + }, + { + "id": "103347", + "name": "Insjön", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.67688000", + "longitude": "15.09487000" + }, + { + "id": "103364", + "name": "Järna", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.53333000", + "longitude": "14.36667000" + }, + { + "id": "103419", + "name": "Krylbo", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.13333000", + "longitude": "16.21667000" + }, + { + "id": "103504", + "name": "Långshyttan", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.45238000", + "longitude": "16.03831000" + }, + { + "id": "103456", + "name": "Leksand", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.73030000", + "longitude": "14.99994000" + }, + { + "id": "103457", + "name": "Leksands kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.73227000", + "longitude": "14.99805000" + }, + { + "id": "103491", + "name": "Ludvika", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.14959000", + "longitude": "15.18776000" + }, + { + "id": "103492", + "name": "Ludvika Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.17114000", + "longitude": "14.72635000" + }, + { + "id": "103518", + "name": "Malung", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.68329000", + "longitude": "13.71542000" + }, + { + "id": "103519", + "name": "Malung-Sälens kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.56667000", + "longitude": "13.66667000" + }, + { + "id": "103542", + "name": "Mockfjärd", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.50000000", + "longitude": "14.96667000" + }, + { + "id": "103545", + "name": "Mora", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "61.00704000", + "longitude": "14.54316000" + }, + { + "id": "103546", + "name": "Mora Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "61.00656000", + "longitude": "14.53755000" + }, + { + "id": "103595", + "name": "Nyhammar", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.28333000", + "longitude": "14.96667000" + }, + { + "id": "103617", + "name": "Ornäs", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.50944000", + "longitude": "15.54128000" + }, + { + "id": "103618", + "name": "Orsa", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "61.12034000", + "longitude": "14.61550000" + }, + { + "id": "103619", + "name": "Orsa Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "61.30000000", + "longitude": "14.75000000" + }, + { + "id": "103665", + "name": "Rättvik", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.88632000", + "longitude": "15.11787000" + }, + { + "id": "103666", + "name": "Rättviks Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.88632000", + "longitude": "15.11787000" + }, + { + "id": "103654", + "name": "Romme", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.43333000", + "longitude": "15.50000000" + }, + { + "id": "103807", + "name": "Säter", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.34778000", + "longitude": "15.75051000" + }, + { + "id": "103808", + "name": "Säters Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.36887000", + "longitude": "15.71383000" + }, + { + "id": "103688", + "name": "Siljansnäs", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.78333000", + "longitude": "14.85000000" + }, + { + "id": "103728", + "name": "Smedby", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.70000000", + "longitude": "15.05000000" + }, + { + "id": "103729", + "name": "Smedjebacken", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.14181000", + "longitude": "15.41416000" + }, + { + "id": "103730", + "name": "Smedjebackens Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.09475000", + "longitude": "15.45204000" + }, + { + "id": "103802", + "name": "Svärdsjö", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.74022000", + "longitude": "15.90173000" + }, + { + "id": "103920", + "name": "Vansbro", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.50893000", + "longitude": "14.22458000" + }, + { + "id": "103921", + "name": "Vansbro Kommun", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.46117000", + "longitude": "14.27836000" + }, + { + "id": "103941", + "name": "Vikarbyn", + "state_id": 1534, + "state_code": "W", + "country_id": 213, + "country_code": "SE", + "latitude": "60.91667000", + "longitude": "15.01667000" + }, + { + "id": "102990", + "name": "Alfta", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.34675000", + "longitude": "16.07499000" + }, + { + "id": "103009", + "name": "Arbrå", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.46667000", + "longitude": "16.38333000" + }, + { + "id": "104014", + "name": "Årsunda", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.51644000", + "longitude": "16.73436000" + }, + { + "id": "103033", + "name": "Bergby", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.92931000", + "longitude": "17.04194000" + }, + { + "id": "103038", + "name": "Bergsjö", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.98253000", + "longitude": "17.06368000" + }, + { + "id": "103067", + "name": "Bollnäs", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.34817000", + "longitude": "16.39464000" + }, + { + "id": "103068", + "name": "Bollnäs Kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.31418000", + "longitude": "16.41725000" + }, + { + "id": "103118", + "name": "Delsbo", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.80104000", + "longitude": "16.55571000" + }, + { + "id": "103129", + "name": "Edsbyn", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.37692000", + "longitude": "15.81747000" + }, + { + "id": "103193", + "name": "Färila", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.80011000", + "longitude": "15.84422000" + }, + { + "id": "103177", + "name": "Forsbacka", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.61667000", + "longitude": "16.88333000" + }, + { + "id": "103240", + "name": "Gävle", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.67452000", + "longitude": "17.14174000" + }, + { + "id": "103241", + "name": "Gävle Kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.64260000", + "longitude": "17.12066000" + }, + { + "id": "103214", + "name": "Gnarp", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "62.04874000", + "longitude": "17.25858000" + }, + { + "id": "103276", + "name": "Hedesunda", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.40000000", + "longitude": "17.00000000" + }, + { + "id": "103293", + "name": "Hofors", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.54573000", + "longitude": "16.28668000" + }, + { + "id": "103294", + "name": "Hofors Kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.49619000", + "longitude": "16.41088000" + }, + { + "id": "103305", + "name": "Hudiksvall", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.72744000", + "longitude": "17.10558000" + }, + { + "id": "103306", + "name": "Hudiksvalls Kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.76615000", + "longitude": "16.77055000" + }, + { + "id": "103344", + "name": "Iggesund", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.64219000", + "longitude": "17.07477000" + }, + { + "id": "103361", + "name": "Järbo", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.71667000", + "longitude": "16.60000000" + }, + { + "id": "103365", + "name": "Järvsö", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.71667000", + "longitude": "16.16667000" + }, + { + "id": "103389", + "name": "Kilafors", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.23333000", + "longitude": "16.56667000" + }, + { + "id": "103485", + "name": "Ljusdal", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.82883000", + "longitude": "16.09126000" + }, + { + "id": "103486", + "name": "Ljusdals Kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.85527000", + "longitude": "15.50695000" + }, + { + "id": "103488", + "name": "Ljusne", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.21170000", + "longitude": "17.12790000" + }, + { + "id": "103581", + "name": "Nordanstigs kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "62.05261000", + "longitude": "16.91378000" + }, + { + "id": "103607", + "name": "Ockelbo", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.89120000", + "longitude": "16.71846000" + }, + { + "id": "103608", + "name": "Ockelbo Kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.94179000", + "longitude": "16.57003000" + }, + { + "id": "103626", + "name": "Ovanåkers Kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.33328000", + "longitude": "15.78067000" + }, + { + "id": "103680", + "name": "Sandarne", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.25893000", + "longitude": "17.15284000" + }, + { + "id": "103681", + "name": "Sandviken", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.61667000", + "longitude": "16.76667000" + }, + { + "id": "103682", + "name": "Sandvikens Kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.55029000", + "longitude": "16.68461000" + }, + { + "id": "103819", + "name": "Söderhamn", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.30373000", + "longitude": "17.05921000" + }, + { + "id": "103820", + "name": "Söderhamns Kommun", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.25371000", + "longitude": "16.94879000" + }, + { + "id": "103832", + "name": "Sörforsa", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "61.73333000", + "longitude": "16.98333000" + }, + { + "id": "103768", + "name": "Storvik", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.58333000", + "longitude": "16.53333000" + }, + { + "id": "103912", + "name": "Valbo", + "state_id": 1533, + "state_code": "X", + "country_id": 213, + "country_code": "SE", + "latitude": "60.65000000", + "longitude": "17.03333000" + }, + { + "id": "103219", + "name": "Gotland", + "state_id": 1546, + "state_code": "I", + "country_id": 213, + "country_code": "SE", + "latitude": "57.50000000", + "longitude": "18.50000000" + }, + { + "id": "103279", + "name": "Hemse", + "state_id": 1546, + "state_code": "I", + "country_id": 213, + "country_code": "SE", + "latitude": "57.23788000", + "longitude": "18.37443000" + }, + { + "id": "103398", + "name": "Klintehamn", + "state_id": 1546, + "state_code": "I", + "country_id": 213, + "country_code": "SE", + "latitude": "57.38667000", + "longitude": "18.20371000" + }, + { + "id": "103940", + "name": "Vibble", + "state_id": 1546, + "state_code": "I", + "country_id": 213, + "country_code": "SE", + "latitude": "57.60452000", + "longitude": "18.25601000" + }, + { + "id": "103957", + "name": "Visby", + "state_id": 1546, + "state_code": "I", + "country_id": 213, + "country_code": "SE", + "latitude": "57.64089000", + "longitude": "18.29602000" + }, + { + "id": "104005", + "name": "Åled", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.75000000", + "longitude": "12.93333000" + }, + { + "id": "104016", + "name": "Åsa", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.35000000", + "longitude": "12.11667000" + }, + { + "id": "103096", + "name": "Bua", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.23780000", + "longitude": "12.12187000" + }, + { + "id": "103157", + "name": "Falkenberg", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.90552000", + "longitude": "12.49118000" + }, + { + "id": "103158", + "name": "Falkenbergs Kommun", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.04317000", + "longitude": "12.72989000" + }, + { + "id": "103172", + "name": "Fjärås kyrkby", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.45913000", + "longitude": "12.17508000" + }, + { + "id": "103186", + "name": "Frösakull", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.68333000", + "longitude": "12.73333000" + }, + { + "id": "103182", + "name": "Frillesås", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.31667000", + "longitude": "12.16667000" + }, + { + "id": "103190", + "name": "Fyllinge", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.65000000", + "longitude": "12.91667000" + }, + { + "id": "103207", + "name": "Getinge", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.81667000", + "longitude": "12.73333000" + }, + { + "id": "103212", + "name": "Glommen", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.93333000", + "longitude": "12.35000000" + }, + { + "id": "103231", + "name": "Gullbrandstorp", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.70000000", + "longitude": "12.73333000" + }, + { + "id": "103258", + "name": "Halmstad", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.67446000", + "longitude": "12.85676000" + }, + { + "id": "103259", + "name": "Halmstads Kommun", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.73920000", + "longitude": "12.97338000" + }, + { + "id": "103269", + "name": "Harplinge", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.74491000", + "longitude": "12.72758000" + }, + { + "id": "103271", + "name": "Haverdal", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.72222000", + "longitude": "12.67194000" + }, + { + "id": "103313", + "name": "Hylte Kommun", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.97394000", + "longitude": "13.26541000" + }, + { + "id": "103314", + "name": "Hyltebruk", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.99892000", + "longitude": "13.23958000" + }, + { + "id": "103405", + "name": "Knäred", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.51861000", + "longitude": "13.32423000" + }, + { + "id": "103423", + "name": "Kungsbacka", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.48719000", + "longitude": "12.07612000" + }, + { + "id": "103424", + "name": "Kungsbacka Kommun", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.45058000", + "longitude": "12.15061000" + }, + { + "id": "103447", + "name": "Laholm", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.51207000", + "longitude": "13.04371000" + }, + { + "id": "103448", + "name": "Laholms Kommun", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.49174000", + "longitude": "13.19141000" + }, + { + "id": "103535", + "name": "Mellbystrand", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.48561000", + "longitude": "12.93958000" + }, + { + "id": "103538", + "name": "Mjällby", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.68333000", + "longitude": "12.76667000" + }, + { + "id": "103616", + "name": "Onsala", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.42531000", + "longitude": "12.02903000" + }, + { + "id": "103625", + "name": "Oskarström", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.80000000", + "longitude": "12.96667000" + }, + { + "id": "103806", + "name": "Särö", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.50577000", + "longitude": "11.93210000" + }, + { + "id": "103711", + "name": "Skrea", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.88333000", + "longitude": "12.56667000" + }, + { + "id": "103750", + "name": "Steninge", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.76900000", + "longitude": "12.63034000" + }, + { + "id": "103868", + "name": "Torup", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.95663000", + "longitude": "13.07725000" + }, + { + "id": "103879", + "name": "Träslövsläge", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.05417000", + "longitude": "12.27899000" + }, + { + "id": "103880", + "name": "Trönninge", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.61667000", + "longitude": "12.93333000" + }, + { + "id": "103883", + "name": "Tvååker", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.04147000", + "longitude": "12.39950000" + }, + { + "id": "103917", + "name": "Vallda", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.47750000", + "longitude": "12.00139000" + }, + { + "id": "103924", + "name": "Varberg", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.10557000", + "longitude": "12.25078000" + }, + { + "id": "103925", + "name": "Varbergs Kommun", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.17208000", + "longitude": "12.41797000" + }, + { + "id": "103974", + "name": "Västra Hagen", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.42444000", + "longitude": "11.93583000" + }, + { + "id": "103932", + "name": "Veddige", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "57.26591000", + "longitude": "12.33220000" + }, + { + "id": "103933", + "name": "Veinge", + "state_id": 1548, + "state_code": "N", + "country_id": 213, + "country_code": "SE", + "latitude": "56.55000000", + "longitude": "13.06667000" + }, + { + "id": "102999", + "name": "Anderstorp", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.28333000", + "longitude": "13.63333000" + }, + { + "id": "103001", + "name": "Aneby", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.83895000", + "longitude": "14.81016000" + }, + { + "id": "103002", + "name": "Aneby Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.86992000", + "longitude": "14.79796000" + }, + { + "id": "103026", + "name": "Bankeryd", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.86021000", + "longitude": "14.12400000" + }, + { + "id": "103060", + "name": "Bodafors", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.50000000", + "longitude": "14.70000000" + }, + { + "id": "103071", + "name": "Bor", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.11667000", + "longitude": "14.16667000" + }, + { + "id": "103083", + "name": "Bredaryd", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.17343000", + "longitude": "13.73789000" + }, + { + "id": "103132", + "name": "Ekenässjön", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.49175000", + "longitude": "15.02226000" + }, + { + "id": "103136", + "name": "Eksjö", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.66643000", + "longitude": "14.97205000" + }, + { + "id": "103137", + "name": "Eksjö Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.62006000", + "longitude": "15.21810000" + }, + { + "id": "103178", + "name": "Forserum", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.70000000", + "longitude": "14.46667000" + }, + { + "id": "103181", + "name": "Forsheda", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.16415000", + "longitude": "13.83016000" + }, + { + "id": "103209", + "name": "Gislaved", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.30440000", + "longitude": "13.54078000" + }, + { + "id": "103210", + "name": "Gislaveds Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.30337000", + "longitude": "13.47548000" + }, + { + "id": "103217", + "name": "Gnosjö", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.35850000", + "longitude": "13.73686000" + }, + { + "id": "103218", + "name": "Gnosjö Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.36225000", + "longitude": "13.80491000" + }, + { + "id": "103227", + "name": "Gränna", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "58.01667000", + "longitude": "14.46667000" + }, + { + "id": "103249", + "name": "Habo", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.91185000", + "longitude": "14.07444000" + }, + { + "id": "103250", + "name": "Habo Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.90901000", + "longitude": "14.08997000" + }, + { + "id": "103284", + "name": "Hestra", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.44232000", + "longitude": "13.59575000" + }, + { + "id": "103285", + "name": "Hillerstorp", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.31293000", + "longitude": "13.88437000" + }, + { + "id": "103310", + "name": "Huskvarna", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.78596000", + "longitude": "14.30214000" + }, + { + "id": "103366", + "name": "Jönköping", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.78145000", + "longitude": "14.15618000" + }, + { + "id": "103367", + "name": "Jönköpings Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.74101000", + "longitude": "14.20276000" + }, + { + "id": "103387", + "name": "Kaxholmen", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.85345000", + "longitude": "14.30457000" + }, + { + "id": "103450", + "name": "Landsbro", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.36667000", + "longitude": "14.90000000" + }, + { + "id": "103514", + "name": "Malmbäck", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.57667000", + "longitude": "14.46170000" + }, + { + "id": "103523", + "name": "Mariannelund", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.61667000", + "longitude": "15.56667000" + }, + { + "id": "103526", + "name": "Marieholm", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.38333000", + "longitude": "13.85000000" + }, + { + "id": "103550", + "name": "Mullsjö", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.91710000", + "longitude": "13.87831000" + }, + { + "id": "103551", + "name": "Mullsjö kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.95427000", + "longitude": "13.82241000" + }, + { + "id": "103602", + "name": "Nässjö", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.65307000", + "longitude": "14.69676000" + }, + { + "id": "103603", + "name": "Nässjö Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.60892000", + "longitude": "14.64041000" + }, + { + "id": "103610", + "name": "Odensjö", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.71667000", + "longitude": "14.16667000" + }, + { + "id": "103644", + "name": "Reftele", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.17467000", + "longitude": "13.59498000" + }, + { + "id": "103662", + "name": "Rydaholm", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "56.98388000", + "longitude": "14.30849000" + }, + { + "id": "103814", + "name": "Sävsjö", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.40327000", + "longitude": "14.66244000" + }, + { + "id": "103815", + "name": "Sävsjö Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.32883000", + "longitude": "14.59426000" + }, + { + "id": "103704", + "name": "Skillingaryd", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.43044000", + "longitude": "14.09383000" + }, + { + "id": "103732", + "name": "Smålandsstenar", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.16241000", + "longitude": "13.41212000" + }, + { + "id": "103757", + "name": "Stockaryd", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.31737000", + "longitude": "14.59341000" + }, + { + "id": "103835", + "name": "Taberg", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.67722000", + "longitude": "14.08876000" + }, + { + "id": "103840", + "name": "Tenhult", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.70761000", + "longitude": "14.32205000" + }, + { + "id": "103871", + "name": "Tranås", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "58.03717000", + "longitude": "14.97820000" + }, + { + "id": "103872", + "name": "Tranås Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "58.02906000", + "longitude": "14.83456000" + }, + { + "id": "103909", + "name": "Vaggeryd", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.49807000", + "longitude": "14.14842000" + }, + { + "id": "103910", + "name": "Vaggeryds Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.47206000", + "longitude": "14.12797000" + }, + { + "id": "103968", + "name": "Värnamo", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.18604000", + "longitude": "14.04001000" + }, + { + "id": "103969", + "name": "Värnamo Kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.17128000", + "longitude": "14.05317000" + }, + { + "id": "103937", + "name": "Vetlanda", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.42887000", + "longitude": "15.07762000" + }, + { + "id": "103938", + "name": "Vetlanda kommun", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.36862000", + "longitude": "15.18468000" + }, + { + "id": "103961", + "name": "Vrigstad", + "state_id": 1550, + "state_code": "F", + "country_id": 213, + "country_code": "SE", + "latitude": "57.35000000", + "longitude": "14.46667000" + }, + { + "id": "103004", + "name": "Ankarsrum", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.69896000", + "longitude": "16.33407000" + }, + { + "id": "104056", + "name": "Överum", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.98856000", + "longitude": "16.31390000" + }, + { + "id": "103035", + "name": "Bergkvara", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.39063000", + "longitude": "16.07274000" + }, + { + "id": "103059", + "name": "Blomstermåla", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.98333000", + "longitude": "16.33333000" + }, + { + "id": "103073", + "name": "Borgholm", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.87930000", + "longitude": "16.65634000" + }, + { + "id": "103074", + "name": "Borgholms Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.09747000", + "longitude": "16.94092000" + }, + { + "id": "103140", + "name": "Emmaboda", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.63268000", + "longitude": "15.53648000" + }, + { + "id": "103141", + "name": "Emmaboda Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.63333000", + "longitude": "15.53333000" + }, + { + "id": "103194", + "name": "Färjestaden", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.64990000", + "longitude": "16.46859000" + }, + { + "id": "103201", + "name": "Gamleby", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.89485000", + "longitude": "16.40508000" + }, + { + "id": "103234", + "name": "Gunnebo", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.71667000", + "longitude": "16.53333000" + }, + { + "id": "103331", + "name": "Högsby", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.16597000", + "longitude": "16.02562000" + }, + { + "id": "103332", + "name": "Högsby Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.15537000", + "longitude": "15.91674000" + }, + { + "id": "103307", + "name": "Hultsfred", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.48815000", + "longitude": "15.84357000" + }, + { + "id": "103308", + "name": "Hultsfreds Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.40000000", + "longitude": "15.80000000" + }, + { + "id": "103372", + "name": "Kalmar", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.66157000", + "longitude": "16.36163000" + }, + { + "id": "103373", + "name": "Kalmar Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.66361000", + "longitude": "16.18569000" + }, + { + "id": "103413", + "name": "Kristdala", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.40070000", + "longitude": "16.20496000" + }, + { + "id": "103473", + "name": "Lindsdal", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.73333000", + "longitude": "16.30000000" + }, + { + "id": "103481", + "name": "Ljungbyholm", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.63333000", + "longitude": "16.16667000" + }, + { + "id": "103559", + "name": "Målilla", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.38773000", + "longitude": "15.80675000" + }, + { + "id": "103565", + "name": "Mönsterås", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.04134000", + "longitude": "16.44463000" + }, + { + "id": "103566", + "name": "Mönsterås Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.06625000", + "longitude": "16.38621000" + }, + { + "id": "103568", + "name": "Mörbylånga", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.52480000", + "longitude": "16.37877000" + }, + { + "id": "103569", + "name": "Mörbylånga Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.50000000", + "longitude": "16.50000000" + }, + { + "id": "103593", + "name": "Nybro", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.74461000", + "longitude": "15.90714000" + }, + { + "id": "103594", + "name": "Nybro Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.82435000", + "longitude": "15.88969000" + }, + { + "id": "103623", + "name": "Oskarshamn", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.26455000", + "longitude": "16.44837000" + }, + { + "id": "103624", + "name": "Oskarshamns Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.37339000", + "longitude": "16.38303000" + }, + { + "id": "103641", + "name": "Påskallavik", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.16667000", + "longitude": "16.45000000" + }, + { + "id": "103649", + "name": "Rinkabyholm", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.64972000", + "longitude": "16.26667000" + }, + { + "id": "103827", + "name": "Södra Sandby", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.56667000", + "longitude": "16.61667000" + }, + { + "id": "103829", + "name": "Södra Vi", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.73993000", + "longitude": "15.79391000" + }, + { + "id": "103727", + "name": "Smedby", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.67413000", + "longitude": "16.24320000" + }, + { + "id": "103762", + "name": "Storebro", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.58333000", + "longitude": "15.85000000" + }, + { + "id": "103849", + "name": "Timmernabben", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.96667000", + "longitude": "16.43333000" + }, + { + "id": "103866", + "name": "Torsås", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.41251000", + "longitude": "15.99844000" + }, + { + "id": "103867", + "name": "Torsås Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.42649000", + "longitude": "15.89128000" + }, + { + "id": "103873", + "name": "Trekanten", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "56.70000000", + "longitude": "16.11667000" + }, + { + "id": "103970", + "name": "Västervik", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.75840000", + "longitude": "16.63733000" + }, + { + "id": "103971", + "name": "Västerviks Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.85242000", + "longitude": "16.38940000" + }, + { + "id": "103947", + "name": "Vimmerby", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.66588000", + "longitude": "15.85515000" + }, + { + "id": "103948", + "name": "Vimmerby Kommun", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.69009000", + "longitude": "15.86741000" + }, + { + "id": "103956", + "name": "Virserum", + "state_id": 1544, + "state_code": "H", + "country_id": 213, + "country_code": "SE", + "latitude": "57.31667000", + "longitude": "15.58333000" + }, + { + "id": "102995", + "name": "Alvesta", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.89935000", + "longitude": "14.55559000" + }, + { + "id": "102996", + "name": "Alvesta Kommun", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.84663000", + "longitude": "14.47490000" + }, + { + "id": "103985", + "name": "Älmhult", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.55146000", + "longitude": "14.13827000" + }, + { + "id": "103986", + "name": "Älmhults Kommun", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.58563000", + "longitude": "14.15502000" + }, + { + "id": "104018", + "name": "Åseda", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "57.17010000", + "longitude": "15.34430000" + }, + { + "id": "103082", + "name": "Braås", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "57.06667000", + "longitude": "15.05000000" + }, + { + "id": "103205", + "name": "Gemla", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.86753000", + "longitude": "14.64379000" + }, + { + "id": "103301", + "name": "Hovmantorp", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.78685000", + "longitude": "15.14023000" + }, + { + "id": "103346", + "name": "Ingelstad", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.75000000", + "longitude": "14.91667000" + }, + { + "id": "103446", + "name": "Lagan", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.91667000", + "longitude": "13.98333000" + }, + { + "id": "103449", + "name": "Lammhult", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "57.16667000", + "longitude": "14.58333000" + }, + { + "id": "103458", + "name": "Lenhovda", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "57.00000000", + "longitude": "15.28333000" + }, + { + "id": "103461", + "name": "Lessebo", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.75185000", + "longitude": "15.26969000" + }, + { + "id": "103462", + "name": "Lessebo Kommun", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.76387000", + "longitude": "15.31359000" + }, + { + "id": "103478", + "name": "Ljungby", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.83324000", + "longitude": "13.94082000" + }, + { + "id": "103479", + "name": "Ljungby Kommun", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.80684000", + "longitude": "13.82719000" + }, + { + "id": "103531", + "name": "Markaryd", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.46135000", + "longitude": "13.59644000" + }, + { + "id": "103532", + "name": "Markaryds Kommun", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.54425000", + "longitude": "13.62348000" + }, + { + "id": "103543", + "name": "Moheda", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "57.00000000", + "longitude": "14.56667000" + }, + { + "id": "103659", + "name": "Rottne", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "57.01667000", + "longitude": "14.90000000" + }, + { + "id": "103660", + "name": "Ryd", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.46667000", + "longitude": "14.68333000" + }, + { + "id": "103774", + "name": "Strömsnäsbruk", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.55000000", + "longitude": "13.71667000" + }, + { + "id": "103852", + "name": "Tingsryd", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.52470000", + "longitude": "14.97902000" + }, + { + "id": "103853", + "name": "Tingsryds Kommun", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.53333000", + "longitude": "14.96667000" + }, + { + "id": "103905", + "name": "Uppvidinge Kommun", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "57.03442000", + "longitude": "15.44727000" + }, + { + "id": "103975", + "name": "Växjö", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.87767000", + "longitude": "14.80906000" + }, + { + "id": "103976", + "name": "Växjö Kommun", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.94530000", + "longitude": "14.89981000" + }, + { + "id": "103959", + "name": "Vislanda", + "state_id": 1542, + "state_code": "G", + "country_id": 213, + "country_code": "SE", + "latitude": "56.78333000", + "longitude": "14.45000000" + }, + { + "id": "103010", + "name": "Arjeplog", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "66.05173000", + "longitude": "17.88606000" + }, + { + "id": "103011", + "name": "Arjeplogs Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "66.37495000", + "longitude": "17.17477000" + }, + { + "id": "103015", + "name": "Arvidsjaur", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.59033000", + "longitude": "19.16682000" + }, + { + "id": "103016", + "name": "Arvidsjaurs Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.66667000", + "longitude": "19.25000000" + }, + { + "id": "104052", + "name": "Överkalix", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "66.32754000", + "longitude": "22.84414000" + }, + { + "id": "104053", + "name": "Överkalix Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "66.47043000", + "longitude": "22.57928000" + }, + { + "id": "104054", + "name": "Övertorneå", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "66.38778000", + "longitude": "23.65425000" + }, + { + "id": "104055", + "name": "Övertorneå Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "66.48317000", + "longitude": "23.43866000" + }, + { + "id": "103993", + "name": "Älvsbyn", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.67624000", + "longitude": "21.00162000" + }, + { + "id": "103994", + "name": "Älvsbyns Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.73201000", + "longitude": "20.71412000" + }, + { + "id": "103036", + "name": "Bergnäset", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.57791000", + "longitude": "22.10844000" + }, + { + "id": "103039", + "name": "Bergsviken", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.30000000", + "longitude": "21.38333000" + }, + { + "id": "103054", + "name": "Björkskatan", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.61373000", + "longitude": "22.17702000" + }, + { + "id": "103061", + "name": "Boden", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.82518000", + "longitude": "21.68864000" + }, + { + "id": "103062", + "name": "Bodens Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "66.04393000", + "longitude": "21.29977000" + }, + { + "id": "103202", + "name": "Gammelstad", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.63931000", + "longitude": "22.01145000" + }, + { + "id": "103237", + "name": "Gällivare", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "67.13387000", + "longitude": "20.65278000" + }, + { + "id": "103238", + "name": "Gällivare kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "67.39347000", + "longitude": "19.70834000" + }, + { + "id": "103267", + "name": "Haparanda", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.83549000", + "longitude": "24.13676000" + }, + { + "id": "103268", + "name": "Haparanda Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.91662000", + "longitude": "23.84607000" + }, + { + "id": "103299", + "name": "Hortlax", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.28188000", + "longitude": "21.40544000" + }, + { + "id": "103353", + "name": "Jokkmokk", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "66.60665000", + "longitude": "19.82324000" + }, + { + "id": "103354", + "name": "Jokkmokks Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "66.90967000", + "longitude": "18.50521000" + }, + { + "id": "103369", + "name": "Kalix", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.85298000", + "longitude": "23.15645000" + }, + { + "id": "103370", + "name": "Kalix Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.96118000", + "longitude": "22.98669000" + }, + { + "id": "103394", + "name": "Kiruna", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "67.85572000", + "longitude": "20.22513000" + }, + { + "id": "103395", + "name": "Kiruna Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "68.17009000", + "longitude": "20.54861000" + }, + { + "id": "103493", + "name": "Luleå", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.58415000", + "longitude": "22.15465000" + }, + { + "id": "103494", + "name": "Luleå kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.68333000", + "longitude": "22.16667000" + }, + { + "id": "103513", + "name": "Malmberget", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "67.17529000", + "longitude": "20.65495000" + }, + { + "id": "103528", + "name": "Marielund", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.85307000", + "longitude": "24.10486000" + }, + { + "id": "103585", + "name": "Norrfjärden", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.41805000", + "longitude": "21.50151000" + }, + { + "id": "103630", + "name": "Pajala", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "67.21284000", + "longitude": "23.36607000" + }, + { + "id": "103631", + "name": "Pajala Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "67.24069000", + "longitude": "22.91667000" + }, + { + "id": "103637", + "name": "Piteå", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.31717000", + "longitude": "21.47944000" + }, + { + "id": "103638", + "name": "Piteå Kommun", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.37229000", + "longitude": "20.85153000" + }, + { + "id": "103668", + "name": "Råneå", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.85482000", + "longitude": "22.29126000" + }, + { + "id": "103652", + "name": "Roknäs", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.35000000", + "longitude": "21.20000000" + }, + { + "id": "103653", + "name": "Rolfs", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.85000000", + "longitude": "23.11667000" + }, + { + "id": "103658", + "name": "Rosvik", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.43333000", + "longitude": "21.70000000" + }, + { + "id": "103812", + "name": "Sävast", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.77002000", + "longitude": "21.73113000" + }, + { + "id": "103828", + "name": "Södra Sunderbyn", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.65983000", + "longitude": "21.94004000" + }, + { + "id": "103891", + "name": "Töre", + "state_id": 1538, + "state_code": "BD", + "country_id": 213, + "country_code": "SE", + "latitude": "65.91243000", + "longitude": "22.65128000" + }, + { + "id": "103013", + "name": "Arnö", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.72675000", + "longitude": "17.02322000" + }, + { + "id": "103998", + "name": "Ärla", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.27983000", + "longitude": "16.67896000" + }, + { + "id": "104003", + "name": "Åkers Styckebruk", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.25000000", + "longitude": "17.08333000" + }, + { + "id": "103027", + "name": "Bara", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.68333000", + "longitude": "17.06667000" + }, + { + "id": "103150", + "name": "Eskilstuna", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.36661000", + "longitude": "16.50770000" + }, + { + "id": "103151", + "name": "Eskilstuna Kommun", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.37362000", + "longitude": "16.49014000" + }, + { + "id": "103173", + "name": "Flen", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.05834000", + "longitude": "16.58781000" + }, + { + "id": "103174", + "name": "Flens Kommun", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.05000000", + "longitude": "16.71667000" + }, + { + "id": "103215", + "name": "Gnesta", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.04751000", + "longitude": "17.31191000" + }, + { + "id": "103216", + "name": "Gnesta Kommun", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.09214000", + "longitude": "17.14533000" + }, + { + "id": "103317", + "name": "Hällbybrunn", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.39152000", + "longitude": "16.42229000" + }, + { + "id": "103320", + "name": "Hälleforsnäs", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.15208000", + "longitude": "16.49700000" + }, + { + "id": "103385", + "name": "Katrineholm", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.99587000", + "longitude": "16.20721000" + }, + { + "id": "103386", + "name": "Katrineholms Kommun", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.01734000", + "longitude": "16.26049000" + }, + { + "id": "103432", + "name": "Kvicksund", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.45099000", + "longitude": "16.32131000" + }, + { + "id": "103515", + "name": "Malmköping", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.13333000", + "longitude": "16.73333000" + }, + { + "id": "103525", + "name": "Mariefred", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.25963000", + "longitude": "17.22300000" + }, + { + "id": "103598", + "name": "Nyköping", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.75300000", + "longitude": "17.00788000" + }, + { + "id": "103599", + "name": "Nyköpings Kommun", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.81762000", + "longitude": "16.89945000" + }, + { + "id": "103614", + "name": "Olstorp", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.81667000", + "longitude": "16.63333000" + }, + { + "id": "103627", + "name": "Oxelösund", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.67057000", + "longitude": "17.10152000" + }, + { + "id": "103628", + "name": "Oxelösunds Kommun", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.67519000", + "longitude": "17.08406000" + }, + { + "id": "103709", + "name": "Skogstorp", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32472000", + "longitude": "16.48284000" + }, + { + "id": "103746", + "name": "Stallarholmen", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.36667000", + "longitude": "17.20000000" + }, + { + "id": "103756", + "name": "Stigtomta", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.80000000", + "longitude": "16.78333000" + }, + { + "id": "103771", + "name": "Strängnäs", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.37741000", + "longitude": "17.03119000" + }, + { + "id": "103772", + "name": "Strängnäs Kommun", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.36109000", + "longitude": "17.08804000" + }, + { + "id": "103793", + "name": "Svalsta", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.74273000", + "longitude": "16.86978000" + }, + { + "id": "103864", + "name": "Torshälla", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.41667000", + "longitude": "16.46667000" + }, + { + "id": "103877", + "name": "Trosa", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.89621000", + "longitude": "17.54812000" + }, + { + "id": "103878", + "name": "Trosa Kommun", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.89330000", + "longitude": "17.49847000" + }, + { + "id": "103911", + "name": "Vagnhärad", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "58.94587000", + "longitude": "17.48757000" + }, + { + "id": "103916", + "name": "Valla", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.01667000", + "longitude": "16.38333000" + }, + { + "id": "103951", + "name": "Vingåker", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.04330000", + "longitude": "15.87374000" + }, + { + "id": "103952", + "name": "Vingåkers Kommun", + "state_id": 1540, + "state_code": "D", + "country_id": 213, + "country_code": "SE", + "latitude": "59.06667000", + "longitude": "15.88333000" + }, + { + "id": "102998", + "name": "Anderslöv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.43836000", + "longitude": "13.31966000" + }, + { + "id": "103012", + "name": "Arlöv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.63248000", + "longitude": "13.07141000" + }, + { + "id": "103021", + "name": "Asmundtorp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.88333000", + "longitude": "12.93333000" + }, + { + "id": "104030", + "name": "Ödåkra", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.10412000", + "longitude": "12.74770000" + }, + { + "id": "104032", + "name": "Önnestad", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.05747000", + "longitude": "14.02233000" + }, + { + "id": "104037", + "name": "Örkelljunga", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.28338000", + "longitude": "13.27773000" + }, + { + "id": "104038", + "name": "Örkelljunga Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.32464000", + "longitude": "13.33941000" + }, + { + "id": "104050", + "name": "Östra Göinge Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.27212000", + "longitude": "14.15980000" + }, + { + "id": "104051", + "name": "Östra Ljungby", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.19601000", + "longitude": "13.09199000" + }, + { + "id": "103996", + "name": "Ängelholm", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.24280000", + "longitude": "12.86219000" + }, + { + "id": "103997", + "name": "Ängelholms Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.26814000", + "longitude": "12.96622000" + }, + { + "id": "104000", + "name": "Åhus", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.91667000", + "longitude": "14.28333000" + }, + { + "id": "104002", + "name": "Åkarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.65396000", + "longitude": "13.11107000" + }, + { + "id": "104021", + "name": "Åstorp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.13566000", + "longitude": "12.94430000" + }, + { + "id": "104022", + "name": "Åstorps Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.14003000", + "longitude": "12.97259000" + }, + { + "id": "103028", + "name": "Bara", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.58155000", + "longitude": "13.17862000" + }, + { + "id": "103104", + "name": "Bårslöv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.00910000", + "longitude": "12.80580000" + }, + { + "id": "103105", + "name": "Båstad", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.42689000", + "longitude": "12.85339000" + }, + { + "id": "103106", + "name": "Båstads Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.40102000", + "longitude": "12.79912000" + }, + { + "id": "103041", + "name": "Billeberga", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.88333000", + "longitude": "13.00000000" + }, + { + "id": "103042", + "name": "Billesholm", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.05000000", + "longitude": "13.00000000" + }, + { + "id": "103049", + "name": "Bjärnum", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.29032000", + "longitude": "13.71128000" + }, + { + "id": "103050", + "name": "Bjärred", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.71667000", + "longitude": "13.01667000" + }, + { + "id": "103047", + "name": "Bjuv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.08372000", + "longitude": "12.91914000" + }, + { + "id": "103048", + "name": "Bjuvs Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.05409000", + "longitude": "12.96542000" + }, + { + "id": "103058", + "name": "Blentarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.58333000", + "longitude": "13.60000000" + }, + { + "id": "103087", + "name": "Broby", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.25521000", + "longitude": "14.07797000" + }, + { + "id": "103089", + "name": "Bromölla", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.07551000", + "longitude": "14.46958000" + }, + { + "id": "103090", + "name": "Bromölla Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.11934000", + "longitude": "14.51150000" + }, + { + "id": "103097", + "name": "Bunkeflostrand", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.54478000", + "longitude": "12.92375000" + }, + { + "id": "103099", + "name": "Burlövs Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.63873000", + "longitude": "13.09473000" + }, + { + "id": "103109", + "name": "Dalby", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.66655000", + "longitude": "13.34976000" + }, + { + "id": "103114", + "name": "Degeberga", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.83333000", + "longitude": "14.08333000" + }, + { + "id": "103130", + "name": "Ekeby", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.00000000", + "longitude": "12.96667000" + }, + { + "id": "103152", + "name": "Eslöv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.83928000", + "longitude": "13.30393000" + }, + { + "id": "103153", + "name": "Eslövs Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.83607000", + "longitude": "13.37522000" + }, + { + "id": "103195", + "name": "Färlöv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.06667000", + "longitude": "14.08333000" + }, + { + "id": "103196", + "name": "Förslöv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.35000000", + "longitude": "12.81667000" + }, + { + "id": "103171", + "name": "Fjälkinge", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.04364000", + "longitude": "14.27562000" + }, + { + "id": "103188", + "name": "Furulund", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.77380000", + "longitude": "13.09022000" + }, + { + "id": "103203", + "name": "Gantofta", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.98729000", + "longitude": "12.80482000" + }, + { + "id": "103239", + "name": "Gärsnäs", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.54949000", + "longitude": "14.17923000" + }, + { + "id": "103206", + "name": "Genarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.59907000", + "longitude": "13.39820000" + }, + { + "id": "103211", + "name": "Glimåkra", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.30000000", + "longitude": "14.13333000" + }, + { + "id": "103213", + "name": "Glumslöv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.94091000", + "longitude": "12.80929000" + }, + { + "id": "103260", + "name": "Hammar", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.01667000", + "longitude": "14.21667000" + }, + { + "id": "103263", + "name": "Hanaskog", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.16061000", + "longitude": "14.09307000" + }, + { + "id": "103315", + "name": "Häljarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.85000000", + "longitude": "12.91667000" + }, + { + "id": "103325", + "name": "Hässleholm", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.15905000", + "longitude": "13.76638000" + }, + { + "id": "103326", + "name": "Hässleholms Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.20687000", + "longitude": "13.72374000" + }, + { + "id": "103327", + "name": "Hästveda", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.28468000", + "longitude": "13.93547000" + }, + { + "id": "103342", + "name": "Höör", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.93444000", + "longitude": "13.53850000" + }, + { + "id": "103343", + "name": "Höörs Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.94588000", + "longitude": "13.51686000" + }, + { + "id": "103329", + "name": "Höganäs", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.19971000", + "longitude": "12.55795000" + }, + { + "id": "103330", + "name": "Höganäs Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.22517000", + "longitude": "12.59701000" + }, + { + "id": "103334", + "name": "Hököpinge", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.49411000", + "longitude": "13.00782000" + }, + { + "id": "103335", + "name": "Höllviken", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.40982000", + "longitude": "12.95580000" + }, + { + "id": "103338", + "name": "Hörby", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.85238000", + "longitude": "13.66094000" + }, + { + "id": "103339", + "name": "Hörby Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.83766000", + "longitude": "13.74284000" + }, + { + "id": "103277", + "name": "Helsingborg", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.05648000", + "longitude": "12.78718000" + }, + { + "id": "103287", + "name": "Hittarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.10000000", + "longitude": "12.63333000" + }, + { + "id": "103291", + "name": "Hjärnarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.31667000", + "longitude": "12.91667000" + }, + { + "id": "103292", + "name": "Hjärup", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.66880000", + "longitude": "13.13931000" + }, + { + "id": "103295", + "name": "Hofterup", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.80485000", + "longitude": "12.97970000" + }, + { + "id": "103312", + "name": "Hyllinge", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.10000000", + "longitude": "12.85000000" + }, + { + "id": "103356", + "name": "Jonstorp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.23380000", + "longitude": "12.67184000" + }, + { + "id": "103437", + "name": "Kävlinge", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.79188000", + "longitude": "13.11021000" + }, + { + "id": "103438", + "name": "Kävlinge Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.79469000", + "longitude": "13.07364000" + }, + { + "id": "103440", + "name": "Kågeröd", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.99976000", + "longitude": "13.08795000" + }, + { + "id": "103443", + "name": "Köpingebro", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.45526000", + "longitude": "13.93453000" + }, + { + "id": "103401", + "name": "Klågerup", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.59416000", + "longitude": "13.24574000" + }, + { + "id": "103399", + "name": "Klippan", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.13559000", + "longitude": "13.13086000" + }, + { + "id": "103400", + "name": "Klippans Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.11138000", + "longitude": "13.23836000" + }, + { + "id": "103402", + "name": "Knislinge", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.18333000", + "longitude": "14.08333000" + }, + { + "id": "103414", + "name": "Kristianstad", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.03129000", + "longitude": "14.15242000" + }, + { + "id": "103415", + "name": "Kristianstads kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.00000000", + "longitude": "14.15000000" + }, + { + "id": "103433", + "name": "Kvidinge", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.13386000", + "longitude": "13.04678000" + }, + { + "id": "103451", + "name": "Landskrona", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.88620000", + "longitude": "12.85880000" + }, + { + "id": "103506", + "name": "Löberöd", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.77610000", + "longitude": "13.52414000" + }, + { + "id": "103507", + "name": "Löddeköpinge", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.76667000", + "longitude": "13.01667000" + }, + { + "id": "103509", + "name": "Lönsboda", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.40000000", + "longitude": "14.31667000" + }, + { + "id": "103480", + "name": "Ljungbyhed", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.07437000", + "longitude": "13.24010000" + }, + { + "id": "103482", + "name": "Ljunghusen", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.39793000", + "longitude": "12.92486000" + }, + { + "id": "103489", + "name": "Lomma", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.67244000", + "longitude": "13.06849000" + }, + { + "id": "103490", + "name": "Lomma Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.70358000", + "longitude": "13.07324000" + }, + { + "id": "103495", + "name": "Lund", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.70584000", + "longitude": "13.19321000" + }, + { + "id": "103496", + "name": "Lunds Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.66897000", + "longitude": "13.36408000" + }, + { + "id": "103517", + "name": "Malmö", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.60587000", + "longitude": "13.00073000" + }, + { + "id": "103527", + "name": "Marieholm", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.86667000", + "longitude": "13.15000000" + }, + { + "id": "103567", + "name": "Mörarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.05749000", + "longitude": "12.88018000" + }, + { + "id": "103552", + "name": "Munka-Ljungby", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.25000000", + "longitude": "12.96667000" + }, + { + "id": "103604", + "name": "Näsum", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.17693000", + "longitude": "14.49706000" + }, + { + "id": "103584", + "name": "Norra Åsum", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.98333000", + "longitude": "14.15000000" + }, + { + "id": "103621", + "name": "Osby", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.38165000", + "longitude": "13.99364000" + }, + { + "id": "103622", + "name": "Osby kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.44081000", + "longitude": "14.11842000" + }, + { + "id": "103629", + "name": "Oxie", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.54014000", + "longitude": "13.09605000" + }, + { + "id": "103639", + "name": "Påarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.03333000", + "longitude": "12.81667000" + }, + { + "id": "103635", + "name": "Perstorp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.13829000", + "longitude": "13.39476000" + }, + { + "id": "103636", + "name": "Perstorps Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.18857000", + "longitude": "13.37681000" + }, + { + "id": "103663", + "name": "Rydebäck", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.96667000", + "longitude": "12.76667000" + }, + { + "id": "103664", + "name": "Rydsgård", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.47285000", + "longitude": "13.58829000" + }, + { + "id": "103683", + "name": "Saxtorpsskogen", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.83208000", + "longitude": "12.94429000" + }, + { + "id": "103810", + "name": "Sätofta", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.91667000", + "longitude": "13.55000000" + }, + { + "id": "103826", + "name": "Södra Sandby", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.71677000", + "longitude": "13.34659000" + }, + { + "id": "103834", + "name": "Sösdala", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.03992000", + "longitude": "13.67811000" + }, + { + "id": "103685", + "name": "Sibbhult", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.26667000", + "longitude": "14.20000000" + }, + { + "id": "103689", + "name": "Simrishamn", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.55653000", + "longitude": "14.35037000" + }, + { + "id": "103690", + "name": "Simrishamns kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.58621000", + "longitude": "14.23778000" + }, + { + "id": "103692", + "name": "Sjöbo", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.63135000", + "longitude": "13.70622000" + }, + { + "id": "103693", + "name": "Sjöbo Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.65146000", + "longitude": "13.75557000" + }, + { + "id": "103695", + "name": "Skanör med Falsterbo", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.40000000", + "longitude": "12.85000000" + }, + { + "id": "103721", + "name": "Skåre", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.38333000", + "longitude": "13.05000000" + }, + { + "id": "103699", + "name": "Skegrie", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.40633000", + "longitude": "13.07693000" + }, + { + "id": "103707", + "name": "Skivarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.41667000", + "longitude": "13.56667000" + }, + { + "id": "103714", + "name": "Skurup", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.47839000", + "longitude": "13.50186000" + }, + { + "id": "103715", + "name": "Skurups Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.47322000", + "longitude": "13.54550000" + }, + { + "id": "103731", + "name": "Smygehamn", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.34337000", + "longitude": "13.36989000" + }, + { + "id": "103744", + "name": "Staffanstorp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.64277000", + "longitude": "13.20638000" + }, + { + "id": "103745", + "name": "Staffanstorps Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.65000000", + "longitude": "13.20000000" + }, + { + "id": "103781", + "name": "Stångby", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.75030000", + "longitude": "13.19797000" + }, + { + "id": "103748", + "name": "Stehag", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.90188000", + "longitude": "13.39577000" + }, + { + "id": "103777", + "name": "Strövelstorp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.16979000", + "longitude": "12.83925000" + }, + { + "id": "103794", + "name": "Svalöv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.91340000", + "longitude": "13.10762000" + }, + { + "id": "103795", + "name": "Svalövs Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.96497000", + "longitude": "13.13173000" + }, + { + "id": "103797", + "name": "Svedala", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.50788000", + "longitude": "13.23515000" + }, + { + "id": "103798", + "name": "Svedala Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.54324000", + "longitude": "13.26859000" + }, + { + "id": "103839", + "name": "Teckomatorp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.86667000", + "longitude": "13.08333000" + }, + { + "id": "103856", + "name": "Tollarp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.93333000", + "longitude": "13.98333000" + }, + { + "id": "103857", + "name": "Tollarp1", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.16667000", + "longitude": "14.28333000" + }, + { + "id": "103858", + "name": "Tomelilla", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.54293000", + "longitude": "13.95460000" + }, + { + "id": "103859", + "name": "Tomelilla Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.61963000", + "longitude": "14.01975000" + }, + { + "id": "103860", + "name": "Torekov", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.42500000", + "longitude": "12.63333000" + }, + { + "id": "103861", + "name": "Tormestorp", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.11350000", + "longitude": "13.74516000" + }, + { + "id": "103874", + "name": "Trelleborg", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.37514000", + "longitude": "13.15691000" + }, + { + "id": "103875", + "name": "Trelleborgs Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.41274000", + "longitude": "13.26859000" + }, + { + "id": "103884", + "name": "Tygelsjö", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.51667000", + "longitude": "13.00000000" + }, + { + "id": "103886", + "name": "Tyringe", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.16037000", + "longitude": "13.59811000" + }, + { + "id": "103915", + "name": "Valje", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.06279000", + "longitude": "14.54388000" + }, + { + "id": "103931", + "name": "Veberöd", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.63333000", + "longitude": "13.48333000" + }, + { + "id": "103934", + "name": "Vejbystrand", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.31778000", + "longitude": "12.76722000" + }, + { + "id": "103935", + "name": "Vellinge", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.47124000", + "longitude": "13.01971000" + }, + { + "id": "103936", + "name": "Vellinge Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.44776000", + "longitude": "13.00919000" + }, + { + "id": "103943", + "name": "Viken", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.15063000", + "longitude": "12.57429000" + }, + { + "id": "103954", + "name": "Vinslöv", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.10000000", + "longitude": "13.91667000" + }, + { + "id": "103960", + "name": "Vittsjö", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "56.34366000", + "longitude": "13.66081000" + }, + { + "id": "103983", + "name": "Ystad", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.42966000", + "longitude": "13.82041000" + }, + { + "id": "103984", + "name": "Ystads Kommun", + "state_id": 1541, + "state_code": "M", + "country_id": 213, + "country_code": "SE", + "latitude": "55.46367000", + "longitude": "13.91153000" + }, + { + "id": "102986", + "name": "Akalla", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.41465000", + "longitude": "17.91398000" + }, + { + "id": "102988", + "name": "Alby", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.23350000", + "longitude": "17.85380000" + }, + { + "id": "103014", + "name": "Arnö", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "60.11667000", + "longitude": "18.63333000" + }, + { + "id": "104042", + "name": "Ösmo", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "58.98333000", + "longitude": "17.90000000" + }, + { + "id": "104047", + "name": "Österåkers Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.48345000", + "longitude": "18.29979000" + }, + { + "id": "104045", + "name": "Östermalm", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.33879000", + "longitude": "18.08487000" + }, + { + "id": "103987", + "name": "Älmsta", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.96667000", + "longitude": "18.80000000" + }, + { + "id": "103988", + "name": "Älta", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.26667000", + "longitude": "18.18333000" + }, + { + "id": "104004", + "name": "Åkersberga", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.47944000", + "longitude": "18.29967000" + }, + { + "id": "104013", + "name": "Årsta", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.29780000", + "longitude": "18.05140000" + }, + { + "id": "103037", + "name": "Bergshamra", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.38083000", + "longitude": "18.03427000" + }, + { + "id": "103066", + "name": "Bollmora", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.24196000", + "longitude": "18.22762000" + }, + { + "id": "103070", + "name": "Boo", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.33333000", + "longitude": "18.28333000" + }, + { + "id": "103078", + "name": "Botkyrka Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.20000000", + "longitude": "17.81667000" + }, + { + "id": "103085", + "name": "Brevik", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.35000000", + "longitude": "18.20000000" + }, + { + "id": "103086", + "name": "Bro", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.51667000", + "longitude": "17.63333000" + }, + { + "id": "103088", + "name": "Bromma", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.34000000", + "longitude": "17.94000000" + }, + { + "id": "103091", + "name": "Brunn", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.28000000", + "longitude": "18.43000000" + }, + { + "id": "103092", + "name": "Brunna", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.51667000", + "longitude": "17.75000000" + }, + { + "id": "103108", + "name": "Dalarö", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.13306000", + "longitude": "18.40639000" + }, + { + "id": "103113", + "name": "Danderyds Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.40924000", + "longitude": "18.04847000" + }, + { + "id": "103123", + "name": "Djurö", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32653000", + "longitude": "18.71152000" + }, + { + "id": "103121", + "name": "Djursholm", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.39926000", + "longitude": "18.05619000" + }, + { + "id": "103133", + "name": "Ekerö", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.29100000", + "longitude": "17.81212000" + }, + { + "id": "103134", + "name": "Ekerö Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32198000", + "longitude": "17.63580000" + }, + { + "id": "103143", + "name": "Enebyberg", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.43333000", + "longitude": "18.05000000" + }, + { + "id": "103147", + "name": "Eriksberg", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.24241000", + "longitude": "17.81631000" + }, + { + "id": "103168", + "name": "Fisksätra", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.29153000", + "longitude": "18.25490000" + }, + { + "id": "103169", + "name": "Fittja", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.24868000", + "longitude": "17.85991000" + }, + { + "id": "103199", + "name": "Gamla Stan", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32627000", + "longitude": "18.07251000" + }, + { + "id": "103235", + "name": "Gustavsberg", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32684000", + "longitude": "18.38975000" + }, + { + "id": "103257", + "name": "Hallstavik", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "60.05000000", + "longitude": "18.60000000" + }, + { + "id": "103264", + "name": "Handen", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.16809000", + "longitude": "18.13796000" + }, + { + "id": "103265", + "name": "Haninge", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.16775000", + "longitude": "18.14478000" + }, + { + "id": "103266", + "name": "Haninge Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.17382000", + "longitude": "18.15491000" + }, + { + "id": "103336", + "name": "Hölö", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.01667000", + "longitude": "17.53333000" + }, + { + "id": "103278", + "name": "Hemmesta", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32273000", + "longitude": "18.48675000" + }, + { + "id": "103303", + "name": "Huddinge", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.23705000", + "longitude": "17.98192000" + }, + { + "id": "103304", + "name": "Huddinge Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.21428000", + "longitude": "18.01584000" + }, + { + "id": "103351", + "name": "Jakobsberg", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.42268000", + "longitude": "17.83508000" + }, + { + "id": "103362", + "name": "Järfälla kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.40875000", + "longitude": "17.86514000" + }, + { + "id": "103363", + "name": "Järna", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.09165000", + "longitude": "17.56615000" + }, + { + "id": "103357", + "name": "Jordbro", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.14972000", + "longitude": "18.11667000" + }, + { + "id": "103397", + "name": "Kista", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.40316000", + "longitude": "17.94479000" + }, + { + "id": "103410", + "name": "Kopparmora", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.33306000", + "longitude": "18.58306000" + }, + { + "id": "103422", + "name": "Kummelnäs", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.35000000", + "longitude": "18.28333000" + }, + { + "id": "103427", + "name": "Kungsängen", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.47857000", + "longitude": "17.74834000" + }, + { + "id": "103426", + "name": "Kungsholmen", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.33183000", + "longitude": "18.04118000" + }, + { + "id": "103505", + "name": "Långvik", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.24583000", + "longitude": "18.51667000" + }, + { + "id": "103463", + "name": "Lidingö", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.36303000", + "longitude": "18.15096000" + }, + { + "id": "103471", + "name": "Lindholmen", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.58333000", + "longitude": "18.10000000" + }, + { + "id": "103558", + "name": "Märsta", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.62157000", + "longitude": "17.85476000" + }, + { + "id": "103561", + "name": "Mölnbo", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.05000000", + "longitude": "17.41667000" + }, + { + "id": "103571", + "name": "Mörtnäs", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.31862000", + "longitude": "18.44312000" + }, + { + "id": "103572", + "name": "Nacka", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.31053000", + "longitude": "18.16372000" + }, + { + "id": "103573", + "name": "Nacka Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.31077000", + "longitude": "18.17551000" + }, + { + "id": "103588", + "name": "Norrtälje", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.75799000", + "longitude": "18.70496000" + }, + { + "id": "103589", + "name": "Norrtälje Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.86120000", + "longitude": "18.70573000" + }, + { + "id": "103596", + "name": "Nykvarn", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.80000000", + "longitude": "18.30000000" + }, + { + "id": "103597", + "name": "Nykvarns Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.19479000", + "longitude": "17.40632000" + }, + { + "id": "103600", + "name": "Nynäshamn", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "58.90337000", + "longitude": "17.94793000" + }, + { + "id": "103601", + "name": "Nynäshamns kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "58.95607000", + "longitude": "17.88694000" + }, + { + "id": "103634", + "name": "Pershagen", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.15494000", + "longitude": "17.65340000" + }, + { + "id": "103669", + "name": "Råsunda", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.36588000", + "longitude": "17.99569000" + }, + { + "id": "103673", + "name": "Rönninge", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.20000000", + "longitude": "17.73333000" + }, + { + "id": "103645", + "name": "Resarö", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.42910000", + "longitude": "18.33386000" + }, + { + "id": "103646", + "name": "Rimbo", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.75000000", + "longitude": "18.36667000" + }, + { + "id": "103648", + "name": "Rindö", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.39688000", + "longitude": "18.39434000" + }, + { + "id": "103657", + "name": "Rosersberg", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.58333000", + "longitude": "17.88333000" + }, + { + "id": "103677", + "name": "Salems Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.24572000", + "longitude": "17.69875000" + }, + { + "id": "103678", + "name": "Saltsjöbaden", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.28333000", + "longitude": "18.30000000" + }, + { + "id": "103823", + "name": "Södermalm", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.31278000", + "longitude": "18.07577000" + }, + { + "id": "103824", + "name": "Södertälje", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.19554000", + "longitude": "17.62525000" + }, + { + "id": "103825", + "name": "Södertälje Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.18121000", + "longitude": "17.62756000" + }, + { + "id": "103684", + "name": "Segeltorp", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.27597000", + "longitude": "17.93072000" + }, + { + "id": "103686", + "name": "Sigtuna", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.61731000", + "longitude": "17.72361000" + }, + { + "id": "103687", + "name": "Sigtuna Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.63960000", + "longitude": "17.93946000" + }, + { + "id": "103717", + "name": "Skänninge", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.93333000", + "longitude": "18.48333000" + }, + { + "id": "103737", + "name": "Sollentuna", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.42804000", + "longitude": "17.95093000" + }, + { + "id": "103738", + "name": "Sollentuna Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.44499000", + "longitude": "17.93518000" + }, + { + "id": "103739", + "name": "Solna", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.36004000", + "longitude": "18.00086000" + }, + { + "id": "103740", + "name": "Solna Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.36548000", + "longitude": "18.00728000" + }, + { + "id": "103747", + "name": "Stavsnäs", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.28333000", + "longitude": "18.68333000" + }, + { + "id": "103749", + "name": "Stenhamra", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.33440000", + "longitude": "17.68842000" + }, + { + "id": "103758", + "name": "Stockholm", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.33258000", + "longitude": "18.06490000" + }, + { + "id": "103759", + "name": "Stockholms Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32478000", + "longitude": "18.06427000" + }, + { + "id": "103773", + "name": "Strömma", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.28333000", + "longitude": "18.53333000" + }, + { + "id": "103783", + "name": "Sundbyberg", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.36128000", + "longitude": "17.97114000" + }, + { + "id": "103784", + "name": "Sundbybergs Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.36669000", + "longitude": "17.97020000" + }, + { + "id": "103887", + "name": "Täby Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.43739000", + "longitude": "18.06530000" + }, + { + "id": "103841", + "name": "Tensta", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.39390000", + "longitude": "17.90111000" + }, + { + "id": "103881", + "name": "Tullinge", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.20000000", + "longitude": "17.90000000" + }, + { + "id": "103882", + "name": "Tumba", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.19858000", + "longitude": "17.83317000" + }, + { + "id": "103885", + "name": "Tyresö Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.24148000", + "longitude": "18.28074000" + }, + { + "id": "103900", + "name": "Upplands Väsby", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.51839000", + "longitude": "17.91128000" + }, + { + "id": "103901", + "name": "Upplands Väsby kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.52382000", + "longitude": "17.91001000" + }, + { + "id": "103902", + "name": "Upplands-Bro Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.49095000", + "longitude": "17.74979000" + }, + { + "id": "103918", + "name": "Vallentuna", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.53436000", + "longitude": "18.07758000" + }, + { + "id": "103919", + "name": "Vallentuna Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.59146000", + "longitude": "18.21000000" + }, + { + "id": "103927", + "name": "Vasastan", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.34571000", + "longitude": "18.04985000" + }, + { + "id": "103929", + "name": "Vaxholm", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.40225000", + "longitude": "18.35317000" + }, + { + "id": "103930", + "name": "Vaxholms Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.40386000", + "longitude": "18.34167000" + }, + { + "id": "103967", + "name": "Värmdö Kommun", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.31614000", + "longitude": "18.70414000" + }, + { + "id": "103978", + "name": "Vårby", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.26671000", + "longitude": "17.88407000" + }, + { + "id": "103981", + "name": "Vårsta", + "state_id": 1551, + "state_code": "AB", + "country_id": 213, + "country_code": "SE", + "latitude": "59.16528000", + "longitude": "17.79722000" + }, + { + "id": "102993", + "name": "Alsike", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.75324000", + "longitude": "17.77331000" + }, + { + "id": "102994", + "name": "Alunda", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.26667000", + "longitude": "18.40000000" + }, + { + "id": "103005", + "name": "Anneberg", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.24167000", + "longitude": "18.41667000" + }, + { + "id": "104033", + "name": "Örbyhus", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.22407000", + "longitude": "17.70138000" + }, + { + "id": "104036", + "name": "Öregrund", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.33333000", + "longitude": "18.43333000" + }, + { + "id": "104041", + "name": "Örsundsbro", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.73333000", + "longitude": "17.30000000" + }, + { + "id": "104043", + "name": "Österbybruk", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.20000000", + "longitude": "17.90000000" + }, + { + "id": "104046", + "name": "Östervåla", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.18333000", + "longitude": "17.18333000" + }, + { + "id": "104048", + "name": "Östhammar", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.25909000", + "longitude": "18.37408000" + }, + { + "id": "104049", + "name": "Östhammars Kommun", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.24156000", + "longitude": "18.26968000" + }, + { + "id": "103991", + "name": "Älvkarleby", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.57081000", + "longitude": "17.44895000" + }, + { + "id": "103992", + "name": "Älvkarleby Kommun", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.58212000", + "longitude": "17.44532000" + }, + { + "id": "103102", + "name": "Bälinge", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.95000000", + "longitude": "17.53333000" + }, + { + "id": "103103", + "name": "Bålsta", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.56710000", + "longitude": "17.52781000" + }, + { + "id": "103053", + "name": "Björklinge", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.03004000", + "longitude": "17.55203000" + }, + { + "id": "103145", + "name": "Enköping", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.63607000", + "longitude": "17.07768000" + }, + { + "id": "103146", + "name": "Enköpings Kommun", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.68575000", + "longitude": "17.11668000" + }, + { + "id": "103200", + "name": "Gamla Uppsala", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.89817000", + "longitude": "17.63386000" + }, + { + "id": "103208", + "name": "Gimo", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.17304000", + "longitude": "18.18507000" + }, + { + "id": "103222", + "name": "Grillby", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.62603000", + "longitude": "17.25787000" + }, + { + "id": "103328", + "name": "Håbo kommun", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.64953000", + "longitude": "17.50701000" + }, + { + "id": "103272", + "name": "Heby", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.93815000", + "longitude": "16.86217000" + }, + { + "id": "103273", + "name": "Heby kommun", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.10000000", + "longitude": "17.00000000" + }, + { + "id": "103350", + "name": "Irsta", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.70000000", + "longitude": "16.93333000" + }, + { + "id": "103374", + "name": "Karlholmsbruk", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.52091000", + "longitude": "17.63152000" + }, + { + "id": "103403", + "name": "Knivsta", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.72564000", + "longitude": "17.78753000" + }, + { + "id": "103404", + "name": "Knivsta Kommun", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.73702000", + "longitude": "17.78137000" + }, + { + "id": "103511", + "name": "Lövstalöt", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.95740000", + "longitude": "17.57826000" + }, + { + "id": "103524", + "name": "Marieberg", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.23333000", + "longitude": "18.50000000" + }, + { + "id": "103547", + "name": "Morgongåva", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.93395000", + "longitude": "16.96353000" + }, + { + "id": "103813", + "name": "Sävja", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.81872000", + "longitude": "17.69958000" + }, + { + "id": "103817", + "name": "Söderfors", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.38333000", + "longitude": "17.23333000" + }, + { + "id": "103716", + "name": "Skutskär", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.62507000", + "longitude": "17.41552000" + }, + { + "id": "103769", + "name": "Storvreta", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.95933000", + "longitude": "17.70588000" + }, + { + "id": "103889", + "name": "Tärnsjö", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.15000000", + "longitude": "16.93333000" + }, + { + "id": "103846", + "name": "Tierp", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.34269000", + "longitude": "17.51812000" + }, + { + "id": "103847", + "name": "Tierps kommun", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.37206000", + "longitude": "17.63629000" + }, + { + "id": "103903", + "name": "Uppsala", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.85882000", + "longitude": "17.63889000" + }, + { + "id": "103904", + "name": "Uppsala Kommun", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "59.96425000", + "longitude": "17.77395000" + }, + { + "id": "103928", + "name": "Vattholma", + "state_id": 1545, + "state_code": "C", + "country_id": 213, + "country_code": "SE", + "latitude": "60.01667000", + "longitude": "17.73333000" + }, + { + "id": "103017", + "name": "Arvika", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.65528000", + "longitude": "12.58518000" + }, + { + "id": "103018", + "name": "Arvika Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.70484000", + "longitude": "12.63202000" + }, + { + "id": "104006", + "name": "Åmotfors", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.76191000", + "longitude": "12.36211000" + }, + { + "id": "104011", + "name": "Årjäng", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.39217000", + "longitude": "12.13336000" + }, + { + "id": "104012", + "name": "Årjängs Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.43589000", + "longitude": "12.10366000" + }, + { + "id": "103057", + "name": "Björneborg", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.24122000", + "longitude": "14.24942000" + }, + { + "id": "103107", + "name": "Charlottenberg", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.88422000", + "longitude": "12.30398000" + }, + { + "id": "103117", + "name": "Deje", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.60300000", + "longitude": "13.47200000" + }, + { + "id": "103128", + "name": "Eda kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.80000000", + "longitude": "12.21667000" + }, + { + "id": "103135", + "name": "Ekshärad", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "60.17275000", + "longitude": "13.49647000" + }, + { + "id": "103164", + "name": "Filipstad", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.71236000", + "longitude": "14.16831000" + }, + { + "id": "103165", + "name": "Filipstads Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.87354000", + "longitude": "14.14706000" + }, + { + "id": "103179", + "name": "Forshaga", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.52541000", + "longitude": "13.48127000" + }, + { + "id": "103180", + "name": "Forshaga Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.64596000", + "longitude": "13.50572000" + }, + { + "id": "103223", + "name": "Grums", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.35141000", + "longitude": "13.11105000" + }, + { + "id": "103224", + "name": "Grums Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.40406000", + "longitude": "13.02192000" + }, + { + "id": "103251", + "name": "Hagfors", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "60.02378000", + "longitude": "13.67214000" + }, + { + "id": "103252", + "name": "Hagfors Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "60.08997000", + "longitude": "13.60757000" + }, + { + "id": "103262", + "name": "Hammarö Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.30699000", + "longitude": "13.54869000" + }, + { + "id": "103383", + "name": "Karlstad", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.37930000", + "longitude": "13.50357000" + }, + { + "id": "103384", + "name": "Karlstads Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.47409000", + "longitude": "13.59961000" + }, + { + "id": "103388", + "name": "Kil", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.50234000", + "longitude": "13.31277000" + }, + { + "id": "103390", + "name": "Kils Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.50406000", + "longitude": "13.31740000" + }, + { + "id": "103416", + "name": "Kristinehamn", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.30978000", + "longitude": "14.10808000" + }, + { + "id": "103417", + "name": "Kristinehamns Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.25288000", + "longitude": "14.13593000" + }, + { + "id": "103544", + "name": "Molkom", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.60057000", + "longitude": "13.72115000" + }, + { + "id": "103555", + "name": "Munkfors", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.83856000", + "longitude": "13.54361000" + }, + { + "id": "103556", + "name": "Munkfors Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.81625000", + "longitude": "13.49458000" + }, + { + "id": "103670", + "name": "Råtorp", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.40197000", + "longitude": "13.49144000" + }, + { + "id": "103804", + "name": "Säffle", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.13229000", + "longitude": "12.92888000" + }, + { + "id": "103805", + "name": "Säffle Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.19559000", + "longitude": "12.86437000" + }, + { + "id": "103698", + "name": "Skattkärr", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.41208000", + "longitude": "13.67078000" + }, + { + "id": "103722", + "name": "Skåre", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.43333000", + "longitude": "13.43333000" + }, + { + "id": "103708", + "name": "Skoghall", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32324000", + "longitude": "13.46552000" + }, + { + "id": "103726", + "name": "Slottsbron", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.32270000", + "longitude": "13.10268000" + }, + { + "id": "103763", + "name": "Storfors", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.53183000", + "longitude": "14.27201000" + }, + { + "id": "103764", + "name": "Storfors Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.49478000", + "longitude": "14.24733000" + }, + { + "id": "103788", + "name": "Sunne", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.83764000", + "longitude": "13.14302000" + }, + { + "id": "103789", + "name": "Sunne Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.90378000", + "longitude": "13.04420000" + }, + { + "id": "103890", + "name": "Töcksfors", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.50816000", + "longitude": "11.84431000" + }, + { + "id": "103862", + "name": "Torsby", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "60.13527000", + "longitude": "13.00820000" + }, + { + "id": "103863", + "name": "Torsby Kommun", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "60.56939000", + "longitude": "12.93837000" + }, + { + "id": "103977", + "name": "Vålberg", + "state_id": 1535, + "state_code": "S", + "country_id": 213, + "country_code": "SE", + "latitude": "59.39145000", + "longitude": "13.18633000" + }, + { + "id": "104019", + "name": "Åsele", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.16026000", + "longitude": "17.34762000" + }, + { + "id": "104020", + "name": "Åsele Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.16604000", + "longitude": "17.62356000" + }, + { + "id": "103025", + "name": "Backa", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.98333000", + "longitude": "21.06667000" + }, + { + "id": "103044", + "name": "Bjurholm", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.93027000", + "longitude": "19.21369000" + }, + { + "id": "103045", + "name": "Bjurholms Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.96667000", + "longitude": "19.00000000" + }, + { + "id": "103063", + "name": "Boliden", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.86667000", + "longitude": "20.38333000" + }, + { + "id": "103098", + "name": "Bureå", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.61667000", + "longitude": "21.20000000" + }, + { + "id": "103100", + "name": "Burträsk", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.51667000", + "longitude": "20.65000000" + }, + { + "id": "103101", + "name": "Byske", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.95258000", + "longitude": "21.20580000" + }, + { + "id": "103125", + "name": "Dorotea", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.26185000", + "longitude": "16.41306000" + }, + { + "id": "103126", + "name": "Dorotea Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.57981000", + "longitude": "15.80614000" + }, + { + "id": "103149", + "name": "Ersmark", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.88333000", + "longitude": "20.31667000" + }, + { + "id": "103176", + "name": "Forsbacka", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.76667000", + "longitude": "20.50000000" + }, + { + "id": "103340", + "name": "Hörnefors", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.62312000", + "longitude": "19.90856000" + }, + { + "id": "103296", + "name": "Holmsund", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.70602000", + "longitude": "20.36409000" + }, + { + "id": "103348", + "name": "Insjön", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.40000000", + "longitude": "17.48333000" + }, + { + "id": "103439", + "name": "Kåge", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.83571000", + "longitude": "20.98453000" + }, + { + "id": "103503", + "name": "Långsele", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.81667000", + "longitude": "20.25000000" + }, + { + "id": "103497", + "name": "Lycksele", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.59537000", + "longitude": "18.67351000" + }, + { + "id": "103498", + "name": "Lycksele kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.62437000", + "longitude": "18.48930000" + }, + { + "id": "103520", + "name": "Malå", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "65.18501000", + "longitude": "18.74243000" + }, + { + "id": "103521", + "name": "Malå Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "65.20000000", + "longitude": "18.75000000" + }, + { + "id": "103582", + "name": "Nordmaling", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.56852000", + "longitude": "19.50244000" + }, + { + "id": "103583", + "name": "Nordmalings Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.68542000", + "longitude": "19.36777000" + }, + { + "id": "103590", + "name": "Norsjö", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.91206000", + "longitude": "19.48153000" + }, + { + "id": "103591", + "name": "Norsjö Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.92993000", + "longitude": "19.55556000" + }, + { + "id": "103606", + "name": "Obbola", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.70000000", + "longitude": "20.31667000" + }, + { + "id": "103671", + "name": "Röbäck", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.80879000", + "longitude": "20.18901000" + }, + { + "id": "103650", + "name": "Robertsfors", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.19324000", + "longitude": "20.84806000" + }, + { + "id": "103651", + "name": "Robertsfors Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.16604000", + "longitude": "20.78415000" + }, + { + "id": "103811", + "name": "Sävar", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.90383000", + "longitude": "20.55014000" + }, + { + "id": "103818", + "name": "Söderfors", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.81667000", + "longitude": "18.05000000" + }, + { + "id": "103701", + "name": "Skellefteå", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.75067000", + "longitude": "20.95279000" + }, + { + "id": "103702", + "name": "Skellefteå Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.80261000", + "longitude": "20.64410000" + }, + { + "id": "103700", + "name": "Skelleftehamn", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.68333000", + "longitude": "21.23333000" + }, + { + "id": "103741", + "name": "Sorsele", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "65.53484000", + "longitude": "17.53702000" + }, + { + "id": "103742", + "name": "Sorsele Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "65.75000000", + "longitude": "16.75000000" + }, + { + "id": "103765", + "name": "Storuman", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "65.09590000", + "longitude": "17.11731000" + }, + { + "id": "103766", + "name": "Storumans Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "65.45192000", + "longitude": "16.25810000" + }, + { + "id": "103767", + "name": "Storvik", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "65.15000000", + "longitude": "20.73333000" + }, + { + "id": "103888", + "name": "Täfteå", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.83970000", + "longitude": "20.47857000" + }, + { + "id": "103898", + "name": "Umeå", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.82842000", + "longitude": "20.25972000" + }, + { + "id": "103899", + "name": "Umeå Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.82992000", + "longitude": "20.25484000" + }, + { + "id": "103906", + "name": "Ursviken", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.71261000", + "longitude": "21.16580000" + }, + { + "id": "103964", + "name": "Vännäs", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.90676000", + "longitude": "19.75712000" + }, + { + "id": "103965", + "name": "Vännäs Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.94960000", + "longitude": "19.70834000" + }, + { + "id": "103966", + "name": "Vännäsby", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "63.91564000", + "longitude": "19.82438000" + }, + { + "id": "103942", + "name": "Viken", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.72587000", + "longitude": "20.91548000" + }, + { + "id": "103945", + "name": "Vilhelmina", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.62417000", + "longitude": "16.65596000" + }, + { + "id": "103946", + "name": "Vilhelmina Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.99358000", + "longitude": "16.03212000" + }, + { + "id": "103949", + "name": "Vindeln", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.20175000", + "longitude": "19.71945000" + }, + { + "id": "103950", + "name": "Vindelns Kommun", + "state_id": 1543, + "state_code": "AC", + "country_id": 213, + "country_code": "SE", + "latitude": "64.18605000", + "longitude": "19.71222000" + }, + { + "id": "104039", + "name": "Örnsköldsvik", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.29091000", + "longitude": "18.71525000" + }, + { + "id": "104040", + "name": "Örnsköldsviks Kommun", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.51458000", + "longitude": "18.27101000" + }, + { + "id": "104009", + "name": "Ånge", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.52495000", + "longitude": "15.65904000" + }, + { + "id": "104010", + "name": "Ånge kommun", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.51232000", + "longitude": "15.64453000" + }, + { + "id": "104015", + "name": "Ås", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.36667000", + "longitude": "16.58333000" + }, + { + "id": "103034", + "name": "Bergeforsen", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.53074000", + "longitude": "17.38123000" + }, + { + "id": "103051", + "name": "Bjästa", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.20000000", + "longitude": "18.50000000" + }, + { + "id": "103069", + "name": "Bollstabruk", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.99777000", + "longitude": "17.67348000" + }, + { + "id": "103084", + "name": "Bredbyn", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.44655000", + "longitude": "18.11019000" + }, + { + "id": "103185", + "name": "Fränsta", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.49855000", + "longitude": "16.17016000" + }, + { + "id": "103322", + "name": "Härnösand", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.63228000", + "longitude": "17.93794000" + }, + { + "id": "103323", + "name": "Härnösands Kommun", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.76667000", + "longitude": "17.68333000" + }, + { + "id": "103311", + "name": "Husum", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.33333000", + "longitude": "19.16667000" + }, + { + "id": "103352", + "name": "Johannedal", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.43424000", + "longitude": "17.37273000" + }, + { + "id": "103445", + "name": "Köpmanholmen", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.16667000", + "longitude": "18.56667000" + }, + { + "id": "103411", + "name": "Kramfors", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.93161000", + "longitude": "17.77646000" + }, + { + "id": "103412", + "name": "Kramfors Kommun", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.97246000", + "longitude": "17.92274000" + }, + { + "id": "103434", + "name": "Kvissleby", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.29361000", + "longitude": "17.37500000" + }, + { + "id": "103502", + "name": "Långsele", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.18333000", + "longitude": "17.06667000" + }, + { + "id": "103534", + "name": "Matfors", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.34864000", + "longitude": "17.03173000" + }, + { + "id": "103574", + "name": "Njurundabommen", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.26339000", + "longitude": "17.38354000" + }, + { + "id": "103575", + "name": "Nolby", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.28750000", + "longitude": "17.36917000" + }, + { + "id": "103833", + "name": "Söråker", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.50561000", + "longitude": "17.51032000" + }, + { + "id": "103710", + "name": "Skottsund", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.29056000", + "longitude": "17.38694000" + }, + { + "id": "103735", + "name": "Sollefteå", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.16667000", + "longitude": "17.26667000" + }, + { + "id": "103736", + "name": "Sollefteå Kommun", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "63.38333000", + "longitude": "16.91667000" + }, + { + "id": "103760", + "name": "Stockvik", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.33667000", + "longitude": "17.36583000" + }, + { + "id": "103785", + "name": "Sundsbruk", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.45806000", + "longitude": "17.34889000" + }, + { + "id": "103786", + "name": "Sundsvall", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.39129000", + "longitude": "17.30630000" + }, + { + "id": "103787", + "name": "Sundsvalls Kommun", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.47912000", + "longitude": "16.92651000" + }, + { + "id": "103850", + "name": "Timrå", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.48654000", + "longitude": "17.32613000" + }, + { + "id": "103851", + "name": "Timrå Kommun", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.61598000", + "longitude": "17.37848000" + }, + { + "id": "103939", + "name": "Vi", + "state_id": 1552, + "state_code": "Y", + "country_id": 213, + "country_code": "SE", + "latitude": "62.43333000", + "longitude": "17.41667000" + }, + { + "id": "103007", + "name": "Arboga", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.39387000", + "longitude": "15.83882000" + }, + { + "id": "103008", + "name": "Arboga Kommun", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.39451000", + "longitude": "15.79261000" + }, + { + "id": "103029", + "name": "Barkarö", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.54935000", + "longitude": "16.50740000" + }, + { + "id": "103119", + "name": "Dingtuna", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.57279000", + "longitude": "16.38722000" + }, + { + "id": "103144", + "name": "Enhagen-Ekbacken", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.56543000", + "longitude": "16.53045000" + }, + { + "id": "103155", + "name": "Fagersta", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "60.00418000", + "longitude": "15.79316000" + }, + { + "id": "103156", + "name": "Fagersta Kommun", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.94834000", + "longitude": "15.88332000" + }, + { + "id": "103255", + "name": "Hallstahammar", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.61395000", + "longitude": "16.22846000" + }, + { + "id": "103256", + "name": "Hallstahammars Kommun", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.61703000", + "longitude": "16.22797000" + }, + { + "id": "103333", + "name": "Hökåsen", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.66667000", + "longitude": "16.58333000" + }, + { + "id": "103349", + "name": "Irsta", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.60000000", + "longitude": "16.70000000" + }, + { + "id": "103442", + "name": "Köping", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.51404000", + "longitude": "15.99255000" + }, + { + "id": "103444", + "name": "Köpings Kommun", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.56639000", + "longitude": "15.87218000" + }, + { + "id": "103407", + "name": "Kolbäck", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.56516000", + "longitude": "16.23037000" + }, + { + "id": "103408", + "name": "Kolsva", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.60000000", + "longitude": "15.83333000" + }, + { + "id": "103428", + "name": "Kungsör", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.42245000", + "longitude": "16.09656000" + }, + { + "id": "103429", + "name": "Kungsörs kommun", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.40247000", + "longitude": "16.07748000" + }, + { + "id": "103579", + "name": "Norberg", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "60.06505000", + "longitude": "15.92366000" + }, + { + "id": "103580", + "name": "Norbergs Kommun", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "60.08997000", + "longitude": "15.95971000" + }, + { + "id": "103642", + "name": "Ramnäs", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.76667000", + "longitude": "16.20000000" + }, + { + "id": "103675", + "name": "Sala", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.91993000", + "longitude": "16.60655000" + }, + { + "id": "103676", + "name": "Sala kommun", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.97221000", + "longitude": "16.47374000" + }, + { + "id": "103705", + "name": "Skinnskatteberg", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.83028000", + "longitude": "15.69337000" + }, + { + "id": "103706", + "name": "Skinnskattebergs Kommun", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.79715000", + "longitude": "15.71463000" + }, + { + "id": "103713", + "name": "Skultuna", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.71667000", + "longitude": "16.41667000" + }, + { + "id": "103790", + "name": "Surahammar", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.70725000", + "longitude": "16.22188000" + }, + { + "id": "103791", + "name": "Surahammars Kommun", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.77487000", + "longitude": "16.11885000" + }, + { + "id": "103848", + "name": "Tillberga", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.68333000", + "longitude": "16.61667000" + }, + { + "id": "103972", + "name": "Västerås", + "state_id": 1549, + "state_code": "U", + "country_id": 213, + "country_code": "SE", + "latitude": "59.64914000", + "longitude": "16.56445000" + }, + { + "id": "102987", + "name": "Alafors", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.92579000", + "longitude": "12.07835000" + }, + { + "id": "102989", + "name": "Ale Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.97018000", + "longitude": "12.25166000" + }, + { + "id": "102991", + "name": "Alingsås", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.93033000", + "longitude": "12.53345000" + }, + { + "id": "102992", + "name": "Alingsås Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.00000000", + "longitude": "12.50000000" + }, + { + "id": "102997", + "name": "Andalen", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.70039000", + "longitude": "11.76136000" + }, + { + "id": "103000", + "name": "Anderstorp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.88333000", + "longitude": "14.28333000" + }, + { + "id": "103003", + "name": "Angered", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.78628000", + "longitude": "12.09852000" + }, + { + "id": "103006", + "name": "Annelund", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.98843000", + "longitude": "13.07483000" + }, + { + "id": "103024", + "name": "Axvall", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.38333000", + "longitude": "13.56667000" + }, + { + "id": "104025", + "name": "Öckerö", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.70814000", + "longitude": "11.65585000" + }, + { + "id": "104026", + "name": "Öckerö Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.69534000", + "longitude": "11.64825000" + }, + { + "id": "104029", + "name": "Ödsmål", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.10000000", + "longitude": "11.85000000" + }, + { + "id": "104031", + "name": "Öjersjö", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.69882000", + "longitude": "12.13448000" + }, + { + "id": "103995", + "name": "Älvängen", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.95872000", + "longitude": "12.12350000" + }, + { + "id": "104001", + "name": "Åkarp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.23333000", + "longitude": "13.65000000" + }, + { + "id": "104007", + "name": "Åmål", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "59.05100000", + "longitude": "12.70492000" + }, + { + "id": "104008", + "name": "Åmåls Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "59.04573000", + "longitude": "12.59583000" + }, + { + "id": "103030", + "name": "Bengtsfors", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "59.02912000", + "longitude": "12.23207000" + }, + { + "id": "103031", + "name": "Bengtsfors Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "59.03333000", + "longitude": "12.21667000" + }, + { + "id": "103040", + "name": "Billdal", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.56667000", + "longitude": "11.93333000" + }, + { + "id": "103043", + "name": "Billingsfors", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.98333000", + "longitude": "12.25000000" + }, + { + "id": "103052", + "name": "Björboholm", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.87096000", + "longitude": "12.32546000" + }, + { + "id": "103055", + "name": "Björkö", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.73221000", + "longitude": "11.67916000" + }, + { + "id": "103056", + "name": "Björlanda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.76667000", + "longitude": "11.83333000" + }, + { + "id": "103064", + "name": "Bollebygd", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.66866000", + "longitude": "12.57272000" + }, + { + "id": "103065", + "name": "Bollebygds Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.74260000", + "longitude": "12.61451000" + }, + { + "id": "103077", + "name": "Borås", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.73783000", + "longitude": "12.94076000" + }, + { + "id": "103081", + "name": "Brastad", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.38333000", + "longitude": "11.48333000" + }, + { + "id": "103095", + "name": "Brålanda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.56344000", + "longitude": "12.34923000" + }, + { + "id": "103110", + "name": "Dals Långed", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.92555000", + "longitude": "12.30865000" + }, + { + "id": "103111", + "name": "Dals-Ed Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.91252000", + "longitude": "11.92395000" + }, + { + "id": "103112", + "name": "Dalsjöfors", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.71667000", + "longitude": "13.08333000" + }, + { + "id": "103120", + "name": "Diseröd", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.92636000", + "longitude": "12.02598000" + }, + { + "id": "103124", + "name": "Donsö", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.60000000", + "longitude": "11.79917000" + }, + { + "id": "103127", + "name": "Ed", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.91247000", + "longitude": "11.93308000" + }, + { + "id": "103139", + "name": "Ellös", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.18333000", + "longitude": "11.46667000" + }, + { + "id": "103148", + "name": "Eriksbo", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.77141000", + "longitude": "12.04183000" + }, + { + "id": "103154", + "name": "Essunga Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.20253000", + "longitude": "12.72273000" + }, + { + "id": "103159", + "name": "Falköping", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.17347000", + "longitude": "13.55068000" + }, + { + "id": "103160", + "name": "Falköpings Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.14046000", + "longitude": "13.53277000" + }, + { + "id": "103191", + "name": "Färgelanda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.56816000", + "longitude": "11.99235000" + }, + { + "id": "103192", + "name": "Färgelanda Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.61630000", + "longitude": "12.01136000" + }, + { + "id": "103175", + "name": "Floby", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.13333000", + "longitude": "13.33333000" + }, + { + "id": "103183", + "name": "Fristad", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.82483000", + "longitude": "13.01064000" + }, + { + "id": "103184", + "name": "Fritsla", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.55655000", + "longitude": "12.78457000" + }, + { + "id": "103189", + "name": "Furulund", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.71667000", + "longitude": "12.13333000" + }, + { + "id": "103242", + "name": "Gånghester", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.70000000", + "longitude": "13.01667000" + }, + { + "id": "103243", + "name": "Gårdsten", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.80480000", + "longitude": "12.02883000" + }, + { + "id": "103244", + "name": "Göta", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.10617000", + "longitude": "12.15254000" + }, + { + "id": "103245", + "name": "Göteborg", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.70716000", + "longitude": "11.96679000" + }, + { + "id": "103246", + "name": "Göteborgs stad", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.72288000", + "longitude": "11.94577000" + }, + { + "id": "103247", + "name": "Götene", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.52824000", + "longitude": "13.49458000" + }, + { + "id": "103248", + "name": "Götene Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.55105000", + "longitude": "13.47866000" + }, + { + "id": "103228", + "name": "Grästorp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.33219000", + "longitude": "12.68122000" + }, + { + "id": "103229", + "name": "Grästorps Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.33333000", + "longitude": "12.66667000" + }, + { + "id": "103230", + "name": "Gråbo", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.83625000", + "longitude": "12.29954000" + }, + { + "id": "103220", + "name": "Grebbestad", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.70248000", + "longitude": "11.25738000" + }, + { + "id": "103232", + "name": "Gullspång", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.98615000", + "longitude": "14.09644000" + }, + { + "id": "103233", + "name": "Gullspångs Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.93300000", + "longitude": "14.18048000" + }, + { + "id": "103261", + "name": "Hammarkullen", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.78049000", + "longitude": "12.03604000" + }, + { + "id": "103324", + "name": "Härryda Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.67736000", + "longitude": "12.32010000" + }, + { + "id": "103337", + "name": "Hönö", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.68972000", + "longitude": "11.64972000" + }, + { + "id": "103341", + "name": "Höviksnäs", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.03333000", + "longitude": "11.76667000" + }, + { + "id": "103280", + "name": "Henån", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.23848000", + "longitude": "11.67598000" + }, + { + "id": "103282", + "name": "Herrljunga", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.07739000", + "longitude": "13.02662000" + }, + { + "id": "103283", + "name": "Herrljunga Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.01156000", + "longitude": "13.12059000" + }, + { + "id": "103286", + "name": "Hindås", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.70338000", + "longitude": "12.44657000" + }, + { + "id": "103288", + "name": "Hjo", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.30133000", + "longitude": "14.28784000" + }, + { + "id": "103289", + "name": "Hjo Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.29642000", + "longitude": "14.20754000" + }, + { + "id": "103290", + "name": "Hjuvik", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.70167000", + "longitude": "11.71639000" + }, + { + "id": "103298", + "name": "Horred", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.35475000", + "longitude": "12.47777000" + }, + { + "id": "103300", + "name": "Hova", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.85363000", + "longitude": "14.21914000" + }, + { + "id": "103309", + "name": "Hunnebostrand", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.44127000", + "longitude": "11.30320000" + }, + { + "id": "103345", + "name": "Ingared", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.85989000", + "longitude": "12.45161000" + }, + { + "id": "103368", + "name": "Jörlanda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.98630000", + "longitude": "11.82943000" + }, + { + "id": "103355", + "name": "Jonstorp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.00000000", + "longitude": "12.71667000" + }, + { + "id": "103375", + "name": "Karlsborg", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.53724000", + "longitude": "14.50470000" + }, + { + "id": "103376", + "name": "Karlsborgs Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.60994000", + "longitude": "14.45421000" + }, + { + "id": "103436", + "name": "Källby", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.50999000", + "longitude": "13.30582000" + }, + { + "id": "103441", + "name": "Kållered", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.60992000", + "longitude": "12.05106000" + }, + { + "id": "103393", + "name": "Kinna", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.50728000", + "longitude": "12.69463000" + }, + { + "id": "103406", + "name": "Kode", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.94263000", + "longitude": "11.85051000" + }, + { + "id": "103430", + "name": "Kungälv", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.87096000", + "longitude": "11.98054000" + }, + { + "id": "103431", + "name": "Kungälvs Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.89697000", + "longitude": "11.88882000" + }, + { + "id": "103425", + "name": "Kungshamn", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.36305000", + "longitude": "11.25938000" + }, + { + "id": "103435", + "name": "Kvänum", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.30000000", + "longitude": "13.18333000" + }, + { + "id": "103452", + "name": "Landvetter", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.68665000", + "longitude": "12.21169000" + }, + { + "id": "103501", + "name": "Länghem", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.60000000", + "longitude": "13.23333000" + }, + { + "id": "103508", + "name": "Lödöse", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.02994000", + "longitude": "12.15934000" + }, + { + "id": "103510", + "name": "Lövgärdet", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.81555000", + "longitude": "12.03861000" + }, + { + "id": "103459", + "name": "Lerum", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.77051000", + "longitude": "12.26904000" + }, + { + "id": "103460", + "name": "Lerums Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.77452000", + "longitude": "12.26967000" + }, + { + "id": "103464", + "name": "Lidköping", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.50517000", + "longitude": "13.15765000" + }, + { + "id": "103465", + "name": "Lidköpings Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.50000000", + "longitude": "13.00000000" + }, + { + "id": "103466", + "name": "Lilla Edet", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.13333000", + "longitude": "12.13333000" + }, + { + "id": "103467", + "name": "Lilla Edets Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.13569000", + "longitude": "12.14345000" + }, + { + "id": "103468", + "name": "Limmared", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.53592000", + "longitude": "13.35566000" + }, + { + "id": "103472", + "name": "Lindome", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.56667000", + "longitude": "12.08333000" + }, + { + "id": "103484", + "name": "Ljungskile", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.22452000", + "longitude": "11.92014000" + }, + { + "id": "103499", + "name": "Lysekil", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.27429000", + "longitude": "11.43576000" + }, + { + "id": "103500", + "name": "Lysekils Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.34719000", + "longitude": "11.46688000" + }, + { + "id": "103512", + "name": "Majorna", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.69195000", + "longitude": "11.91605000" + }, + { + "id": "103529", + "name": "Mariestad", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.70971000", + "longitude": "13.82367000" + }, + { + "id": "103530", + "name": "Mariestads Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.70861000", + "longitude": "13.85424000" + }, + { + "id": "103533", + "name": "Marks Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.47604000", + "longitude": "12.59462000" + }, + { + "id": "103560", + "name": "Mölltorp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.50000000", + "longitude": "14.40000000" + }, + { + "id": "103562", + "name": "Mölndal", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.65540000", + "longitude": "12.01378000" + }, + { + "id": "103563", + "name": "Mölndals kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.60256000", + "longitude": "12.09889000" + }, + { + "id": "103564", + "name": "Mölnlycke", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.65893000", + "longitude": "12.11792000" + }, + { + "id": "103536", + "name": "Mellerud", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.69979000", + "longitude": "12.45312000" + }, + { + "id": "103537", + "name": "Melleruds Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.69110000", + "longitude": "12.41399000" + }, + { + "id": "103553", + "name": "Munkedal", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.46634000", + "longitude": "11.67345000" + }, + { + "id": "103554", + "name": "Munkedals Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.57334000", + "longitude": "11.70103000" + }, + { + "id": "103557", + "name": "Myggenäs", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.06176000", + "longitude": "11.74936000" + }, + { + "id": "103576", + "name": "Nolvik", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.77500000", + "longitude": "11.83333000" + }, + { + "id": "103592", + "name": "Nossebro", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.18808000", + "longitude": "12.71599000" + }, + { + "id": "103611", + "name": "Olofstorp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.80444000", + "longitude": "12.17131000" + }, + { + "id": "103615", + "name": "Olstorp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.82277000", + "longitude": "12.27696000" + }, + { + "id": "103620", + "name": "Orust", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.18025000", + "longitude": "11.63419000" + }, + { + "id": "103632", + "name": "Partille", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.73950000", + "longitude": "12.10642000" + }, + { + "id": "103633", + "name": "Partille Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.73306000", + "longitude": "12.13072000" + }, + { + "id": "103643", + "name": "Rannebergen", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.80236000", + "longitude": "12.07131000" + }, + { + "id": "103667", + "name": "Rävlanda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.65338000", + "longitude": "12.49791000" + }, + { + "id": "103674", + "name": "Rönnäng", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.93333000", + "longitude": "11.58333000" + }, + { + "id": "103679", + "name": "Sandared", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.70992000", + "longitude": "12.79238000" + }, + { + "id": "103809", + "name": "Sätila", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.54172000", + "longitude": "12.43429000" + }, + { + "id": "103816", + "name": "Sålanda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.98333000", + "longitude": "12.21667000" + }, + { + "id": "103694", + "name": "Sjömarken", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.71533000", + "longitude": "12.83495000" + }, + { + "id": "103691", + "name": "Sjuntorp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.20000000", + "longitude": "12.21667000" + }, + { + "id": "103696", + "name": "Skara", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.38659000", + "longitude": "13.43836000" + }, + { + "id": "103697", + "name": "Skara Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.37759000", + "longitude": "13.47548000" + }, + { + "id": "103720", + "name": "Skärhamn", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.98665000", + "longitude": "11.55742000" + }, + { + "id": "103724", + "name": "Skövde", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.39118000", + "longitude": "13.84506000" + }, + { + "id": "103725", + "name": "Skövde Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.43488000", + "longitude": "13.90358000" + }, + { + "id": "103703", + "name": "Skepplanda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.98333000", + "longitude": "12.20000000" + }, + { + "id": "103712", + "name": "Skultorp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.35000000", + "longitude": "13.83333000" + }, + { + "id": "103733", + "name": "Smögen", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.35593000", + "longitude": "11.22411000" + }, + { + "id": "103734", + "name": "Sollebrunn", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.11667000", + "longitude": "12.53333000" + }, + { + "id": "103743", + "name": "Sotenäs Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.42215000", + "longitude": "11.34296000" + }, + { + "id": "103782", + "name": "Stöpen", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.47802000", + "longitude": "13.86611000" + }, + { + "id": "103751", + "name": "Stenkullen", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.79476000", + "longitude": "12.31688000" + }, + { + "id": "103753", + "name": "Stenstorp", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.27254000", + "longitude": "13.71454000" + }, + { + "id": "103754", + "name": "Stenungsund", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.07046000", + "longitude": "11.81810000" + }, + { + "id": "103755", + "name": "Stenungsunds Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.06248000", + "longitude": "11.90473000" + }, + { + "id": "103761", + "name": "Stora Höga", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.01667000", + "longitude": "11.83333000" + }, + { + "id": "103775", + "name": "Strömstad", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.93945000", + "longitude": "11.17120000" + }, + { + "id": "103776", + "name": "Strömstads Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.94891000", + "longitude": "11.25543000" + }, + { + "id": "103780", + "name": "Styrsö", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.61639000", + "longitude": "11.78556000" + }, + { + "id": "103792", + "name": "Surte", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.82533000", + "longitude": "12.01604000" + }, + { + "id": "103796", + "name": "Svanesund", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.14292000", + "longitude": "11.81821000" + }, + { + "id": "103799", + "name": "Svenljunga", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.49551000", + "longitude": "13.11078000" + }, + { + "id": "103800", + "name": "Svenljunga Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.39249000", + "longitude": "13.05216000" + }, + { + "id": "103837", + "name": "Tanums Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.71656000", + "longitude": "11.42571000" + }, + { + "id": "103838", + "name": "Tanumshede", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.72385000", + "longitude": "11.32587000" + }, + { + "id": "103892", + "name": "Töreboda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.70739000", + "longitude": "14.12597000" + }, + { + "id": "103893", + "name": "Töreboda Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.67996000", + "longitude": "14.16139000" + }, + { + "id": "103842", + "name": "Tibro", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.42453000", + "longitude": "14.16162000" + }, + { + "id": "103843", + "name": "Tibro Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.44920000", + "longitude": "14.22664000" + }, + { + "id": "103844", + "name": "Tidaholm", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.18035000", + "longitude": "13.95824000" + }, + { + "id": "103845", + "name": "Tidaholms kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.14842000", + "longitude": "13.94336000" + }, + { + "id": "103855", + "name": "Tjörns Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.00519000", + "longitude": "11.63101000" + }, + { + "id": "103854", + "name": "Tjuvkil", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.90000000", + "longitude": "11.73333000" + }, + { + "id": "103865", + "name": "Torslanda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.72432000", + "longitude": "11.77013000" + }, + { + "id": "103869", + "name": "Tranemo", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.48333000", + "longitude": "13.35000000" + }, + { + "id": "103870", + "name": "Tranemo Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.50000000", + "longitude": "13.43333000" + }, + { + "id": "103876", + "name": "Trollhättan", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.21208000", + "longitude": "12.35033000" + }, + { + "id": "103894", + "name": "Uddevalla", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.34784000", + "longitude": "11.94240000" + }, + { + "id": "103895", + "name": "Uddevalla Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.34099000", + "longitude": "11.84744000" + }, + { + "id": "103896", + "name": "Ulricehamn", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.79159000", + "longitude": "13.41422000" + }, + { + "id": "103897", + "name": "Ulricehamns Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.82059000", + "longitude": "13.46116000" + }, + { + "id": "103922", + "name": "Vara", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.26234000", + "longitude": "12.95413000" + }, + { + "id": "103923", + "name": "Vara Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.24391000", + "longitude": "13.07285000" + }, + { + "id": "103926", + "name": "Vargön", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.35599000", + "longitude": "12.39060000" + }, + { + "id": "103962", + "name": "Vänersborg", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.38075000", + "longitude": "12.32340000" + }, + { + "id": "103963", + "name": "Vänersborgs Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.39828000", + "longitude": "12.27554000" + }, + { + "id": "103973", + "name": "Västra Frölunda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.64667000", + "longitude": "11.92944000" + }, + { + "id": "103979", + "name": "Vårgårda", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.03706000", + "longitude": "12.80907000" + }, + { + "id": "103980", + "name": "Vårgårda Kommun", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.98769000", + "longitude": "12.76888000" + }, + { + "id": "103953", + "name": "Vinninga", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "58.45000000", + "longitude": "13.26667000" + }, + { + "id": "103958", + "name": "Viskafors", + "state_id": 1547, + "state_code": "O", + "country_id": 213, + "country_code": "SE", + "latitude": "57.62941000", + "longitude": "12.84890000" + }, + { + "id": "17357", + "name": "Aarau", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39254000", + "longitude": "8.04422000" + }, + { + "id": "17359", + "name": "Aarburg", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32067000", + "longitude": "7.89986000" + }, + { + "id": "17407", + "name": "Aristau", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28692000", + "longitude": "8.36356000" + }, + { + "id": "17424", + "name": "Auw", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21082000", + "longitude": "8.36583000" + }, + { + "id": "17431", + "name": "Bad Zurzach", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.58764000", + "longitude": "8.29365000" + }, + { + "id": "17432", + "name": "Baden", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47333000", + "longitude": "8.30592000" + }, + { + "id": "17460", + "name": "Berikon", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35155000", + "longitude": "8.37232000" + }, + { + "id": "17467", + "name": "Besenbüren", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31439000", + "longitude": "8.34586000" + }, + { + "id": "17471", + "name": "Bezirk Aarau", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37706000", + "longitude": "8.05235000" + }, + { + "id": "17475", + "name": "Bezirk Baden", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45660000", + "longitude": "8.30059000" + }, + { + "id": "17476", + "name": "Bezirk Bremgarten", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34927000", + "longitude": "8.33343000" + }, + { + "id": "17477", + "name": "Bezirk Brugg", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47776000", + "longitude": "8.17798000" + }, + { + "id": "17491", + "name": "Bezirk Kulm", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28757000", + "longitude": "8.13302000" + }, + { + "id": "17494", + "name": "Bezirk Laufenburg", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51844000", + "longitude": "8.03878000" + }, + { + "id": "17496", + "name": "Bezirk Lenzburg", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37184000", + "longitude": "8.18910000" + }, + { + "id": "17501", + "name": "Bezirk Muri", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25233000", + "longitude": "8.35362000" + }, + { + "id": "17506", + "name": "Bezirk Rheinfelden", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54048000", + "longitude": "7.83331000" + }, + { + "id": "17521", + "name": "Bezirk Zofingen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28864000", + "longitude": "7.95697000" + }, + { + "id": "17522", + "name": "Bezirk Zurzach", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.56182000", + "longitude": "8.28020000" + }, + { + "id": "17536", + "name": "Birmenstorf", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46152000", + "longitude": "8.24816000" + }, + { + "id": "17537", + "name": "Birr", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43432000", + "longitude": "8.20891000" + }, + { + "id": "17549", + "name": "Boniswil", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31725000", + "longitude": "8.18963000" + }, + { + "id": "17558", + "name": "Bremgarten", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35109000", + "longitude": "8.34214000" + }, + { + "id": "17565", + "name": "Brittnau", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25954000", + "longitude": "7.94689000" + }, + { + "id": "17570", + "name": "Brugg", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48096000", + "longitude": "8.20869000" + }, + { + "id": "17579", + "name": "Buchs", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39358000", + "longitude": "8.08233000" + }, + { + "id": "17588", + "name": "Buttwil", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26828000", + "longitude": "8.31064000" + }, + { + "id": "17717", + "name": "Dürrenäsch", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32094000", + "longitude": "8.15874000" + }, + { + "id": "17682", + "name": "Densbüren", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45260000", + "longitude": "8.05330000" + }, + { + "id": "17705", + "name": "Dottikon", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38437000", + "longitude": "8.23981000" + }, + { + "id": "17732", + "name": "Egliswil", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34922000", + "longitude": "8.18553000" + }, + { + "id": "17734", + "name": "Ehrendingen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50250000", + "longitude": "8.34729000" + }, + { + "id": "17737", + "name": "Eiken", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53361000", + "longitude": "7.98801000" + }, + { + "id": "17749", + "name": "Endingen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53742000", + "longitude": "8.29036000" + }, + { + "id": "17810", + "name": "Frick", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51169000", + "longitude": "8.02471000" + }, + { + "id": "17824", + "name": "Gebenstorf", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48136000", + "longitude": "8.23949000" + }, + { + "id": "17834", + "name": "Gipf-Oberfrick", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49875000", + "longitude": "8.00497000" + }, + { + "id": "17853", + "name": "Gontenschwil", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27166000", + "longitude": "8.14396000" + }, + { + "id": "17880", + "name": "Gränichen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35930000", + "longitude": "8.10243000" + }, + { + "id": "17895", + "name": "Hausen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46396000", + "longitude": "8.20988000" + }, + { + "id": "17939", + "name": "Hägglingen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38851000", + "longitude": "8.25285000" + }, + { + "id": "17960", + "name": "Jonen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29750000", + "longitude": "8.39282000" + }, + { + "id": "17966", + "name": "Kaiseraugst", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53966000", + "longitude": "7.72605000" + }, + { + "id": "17967", + "name": "Kaisten", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54160000", + "longitude": "8.04337000" + }, + { + "id": "18010", + "name": "Kölliken", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33337000", + "longitude": "8.02237000" + }, + { + "id": "18012", + "name": "Künten", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38887000", + "longitude": "8.33045000" + }, + { + "id": "18020", + "name": "Küttigen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41484000", + "longitude": "8.04979000" + }, + { + "id": "17978", + "name": "Killwangen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43223000", + "longitude": "8.35097000" + }, + { + "id": "17985", + "name": "Klingnau", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.58361000", + "longitude": "8.24880000" + }, + { + "id": "17999", + "name": "Koblenz", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.60972000", + "longitude": "8.23750000" + }, + { + "id": "18043", + "name": "Laufenburg", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.55985000", + "longitude": "8.06225000" + }, + { + "id": "18044", + "name": "Lauffohr (Brugg)", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50154000", + "longitude": "8.23122000" + }, + { + "id": "18062", + "name": "Leibstadt", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.58790000", + "longitude": "8.17611000" + }, + { + "id": "18066", + "name": "Lenzburg", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38853000", + "longitude": "8.17503000" + }, + { + "id": "18115", + "name": "Magden", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52868000", + "longitude": "7.81128000" + }, + { + "id": "18191", + "name": "Möhlin", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.55915000", + "longitude": "7.84329000" + }, + { + "id": "18144", + "name": "Meisterschwanden", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29489000", + "longitude": "8.22867000" + }, + { + "id": "18148", + "name": "Mellingen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41903000", + "longitude": "8.27331000" + }, + { + "id": "18151", + "name": "Menziken", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23965000", + "longitude": "8.18996000" + }, + { + "id": "18154", + "name": "Merenschwand", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25944000", + "longitude": "8.37633000" + }, + { + "id": "18176", + "name": "Muhen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33578000", + "longitude": "8.05536000" + }, + { + "id": "18177", + "name": "Mumpf", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54563000", + "longitude": "7.92123000" + }, + { + "id": "18181", + "name": "Murgenthal", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27145000", + "longitude": "7.83935000" + }, + { + "id": "18182", + "name": "Muri", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27428000", + "longitude": "8.33854000" + }, + { + "id": "18215", + "name": "Neuenhof", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44985000", + "longitude": "8.32682000" + }, + { + "id": "18227", + "name": "Niederlenz", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40079000", + "longitude": "8.17640000" + }, + { + "id": "18228", + "name": "Niederrohrdorf", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42409000", + "longitude": "8.30404000" + }, + { + "id": "18250", + "name": "Oberentfelden", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35639000", + "longitude": "8.04594000" + }, + { + "id": "18257", + "name": "Oberlunkhofen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31244000", + "longitude": "8.39242000" + }, + { + "id": "18264", + "name": "Oberrüti", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16673000", + "longitude": "8.39441000" + }, + { + "id": "18263", + "name": "Oberrohrdorf", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41833000", + "longitude": "8.31983000" + }, + { + "id": "18266", + "name": "Obersiggenthal", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48750000", + "longitude": "8.29652000" + }, + { + "id": "18281", + "name": "Oftringen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31382000", + "longitude": "7.92533000" + }, + { + "id": "18293", + "name": "Othmarsingen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40125000", + "longitude": "8.21383000" + }, + { + "id": "18363", + "name": "Reinach", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25732000", + "longitude": "8.18091000" + }, + { + "id": "18366", + "name": "Rheinfelden", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.55437000", + "longitude": "7.79403000" + }, + { + "id": "18394", + "name": "Rothrist", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30508000", + "longitude": "7.89196000" + }, + { + "id": "18397", + "name": "Rudolfstetten", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37101000", + "longitude": "8.38083000" + }, + { + "id": "18399", + "name": "Rupperswil", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40131000", + "longitude": "8.12877000" + }, + { + "id": "18419", + "name": "Safenwil", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32163000", + "longitude": "7.98254000" + }, + { + "id": "18446", + "name": "Sarmenstorf", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31109000", + "longitude": "8.24950000" + }, + { + "id": "18456", + "name": "Schafisheim", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37664000", + "longitude": "8.14263000" + }, + { + "id": "18483", + "name": "Schöftland", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30590000", + "longitude": "8.05119000" + }, + { + "id": "18462", + "name": "Schinznach Bad", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44992000", + "longitude": "8.16833000" + }, + { + "id": "18463", + "name": "Schinznach Dorf", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44650000", + "longitude": "8.14089000" + }, + { + "id": "18474", + "name": "Schwaderloch", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.58541000", + "longitude": "8.14455000" + }, + { + "id": "18501", + "name": "Seengen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32503000", + "longitude": "8.20724000" + }, + { + "id": "18511", + "name": "Seon", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34848000", + "longitude": "8.16072000" + }, + { + "id": "18523", + "name": "Sins", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19296000", + "longitude": "8.39384000" + }, + { + "id": "18534", + "name": "Spreitenbach", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42285000", + "longitude": "8.36792000" + }, + { + "id": "18544", + "name": "Staffelbach", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28395000", + "longitude": "8.04208000" + }, + { + "id": "18548", + "name": "Staufen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38197000", + "longitude": "8.16681000" + }, + { + "id": "18551", + "name": "Stein", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54403000", + "longitude": "7.95256000" + }, + { + "id": "18559", + "name": "Strengelbach", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27917000", + "longitude": "7.92895000" + }, + { + "id": "18562", + "name": "Suhr", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37172000", + "longitude": "8.07967000" + }, + { + "id": "18564", + "name": "Sulz", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53602000", + "longitude": "8.09628000" + }, + { + "id": "18577", + "name": "Tegerfelden", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.55809000", + "longitude": "8.28914000" + }, + { + "id": "18580", + "name": "Teufenthal", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32896000", + "longitude": "8.11777000" + }, + { + "id": "18614", + "name": "Turgi", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49201000", + "longitude": "8.25412000" + }, + { + "id": "18625", + "name": "Uerkheim", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30353000", + "longitude": "8.02320000" + }, + { + "id": "18633", + "name": "Unterkulm", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30998000", + "longitude": "8.11371000" + }, + { + "id": "18634", + "name": "Unterlunkhofen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32120000", + "longitude": "8.38102000" + }, + { + "id": "18636", + "name": "Untersiggenthal", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50213000", + "longitude": "8.25554000" + }, + { + "id": "18664", + "name": "Veltheim", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43796000", + "longitude": "8.14722000" + }, + { + "id": "18683", + "name": "Villigen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52682000", + "longitude": "8.21486000" + }, + { + "id": "18684", + "name": "Villmergen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35009000", + "longitude": "8.24762000" + }, + { + "id": "18685", + "name": "Villnachern", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47098000", + "longitude": "8.15975000" + }, + { + "id": "18692", + "name": "Vordemwald", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27585000", + "longitude": "7.90114000" + }, + { + "id": "18719", + "name": "Waltenschwil", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33339000", + "longitude": "8.29791000" + }, + { + "id": "18782", + "name": "Wölflinswil", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46070000", + "longitude": "7.99835000" + }, + { + "id": "18788", + "name": "Würenlingen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53356000", + "longitude": "8.25666000" + }, + { + "id": "18789", + "name": "Würenlos", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44205000", + "longitude": "8.36261000" + }, + { + "id": "18728", + "name": "Wegenstetten", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49797000", + "longitude": "7.93141000" + }, + { + "id": "18736", + "name": "Wettingen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47049000", + "longitude": "8.31636000" + }, + { + "id": "18757", + "name": "Windisch", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47899000", + "longitude": "8.21842000" + }, + { + "id": "18760", + "name": "Wittnau", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48139000", + "longitude": "7.97577000" + }, + { + "id": "18761", + "name": "Wohlen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35066000", + "longitude": "8.27517000" + }, + { + "id": "18796", + "name": "Zofingen", + "state_id": 1639, + "state_code": "AG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28779000", + "longitude": "7.94586000" + }, + { + "id": "17597", + "name": "Bühler", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37348000", + "longitude": "9.42507000" + }, + { + "id": "17487", + "name": "Bezirk Hinterland", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36470000", + "longitude": "9.27350000" + }, + { + "id": "17500", + "name": "Bezirk Mittelland", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37700000", + "longitude": "9.43469000" + }, + { + "id": "17517", + "name": "Bezirk Vorderland", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44167000", + "longitude": "9.53869000" + }, + { + "id": "17819", + "name": "Gais", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36150000", + "longitude": "9.45356000" + }, + { + "id": "17901", + "name": "Heiden", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44255000", + "longitude": "9.53293000" + }, + { + "id": "17907", + "name": "Herisau", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38615000", + "longitude": "9.27916000" + }, + { + "id": "18359", + "name": "Rehetobel", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42611000", + "longitude": "9.48300000" + }, + { + "id": "18477", + "name": "Schwellbrunn", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35255000", + "longitude": "9.24894000" + }, + { + "id": "18532", + "name": "Speicher", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41090000", + "longitude": "9.44335000" + }, + { + "id": "18579", + "name": "Teufen", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39080000", + "longitude": "9.38644000" + }, + { + "id": "18605", + "name": "Trogen", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40782000", + "longitude": "9.46498000" + }, + { + "id": "18643", + "name": "Urnäsch", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31669000", + "longitude": "9.27950000" + }, + { + "id": "18712", + "name": "Waldstatt", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35627000", + "longitude": "9.28345000" + }, + { + "id": "18720", + "name": "Walzenhausen", + "state_id": 1655, + "state_code": "AR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44867000", + "longitude": "9.60495000" + }, + { + "id": "17400", + "name": "Appenzell", + "state_id": 1649, + "state_code": "AI", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33103000", + "longitude": "9.40996000" + }, + { + "id": "17852", + "name": "Gonten", + "state_id": 1649, + "state_code": "AI", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32725000", + "longitude": "9.34705000" + }, + { + "id": "17894", + "name": "Haslen", + "state_id": 1649, + "state_code": "AI", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36931000", + "longitude": "9.36752000" + }, + { + "id": "18245", + "name": "Oberegg", + "state_id": 1649, + "state_code": "AI", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42531000", + "longitude": "9.55134000" + }, + { + "id": "17371", + "name": "Aesch", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47104000", + "longitude": "7.59730000" + }, + { + "id": "17386", + "name": "Allschwil", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.55074000", + "longitude": "7.53599000" + }, + { + "id": "17406", + "name": "Arisdorf", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51323000", + "longitude": "7.76515000" + }, + { + "id": "17408", + "name": "Arlesheim", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49412000", + "longitude": "7.61979000" + }, + { + "id": "17474", + "name": "Bezirk Arlesheim", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51668000", + "longitude": "7.58733000" + }, + { + "id": "17493", + "name": "Bezirk Laufen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42324000", + "longitude": "7.48750000" + }, + { + "id": "17497", + "name": "Bezirk Liestal", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48124000", + "longitude": "7.72714000" + }, + { + "id": "17510", + "name": "Bezirk Sissach", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44237000", + "longitude": "7.84871000" + }, + { + "id": "17518", + "name": "Bezirk Waldenburg", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39367000", + "longitude": "7.74137000" + }, + { + "id": "17530", + "name": "Binningen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54021000", + "longitude": "7.56932000" + }, + { + "id": "17538", + "name": "Birsfelden", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.55290000", + "longitude": "7.62322000" + }, + { + "id": "17553", + "name": "Bottmingen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52343000", + "longitude": "7.57211000" + }, + { + "id": "17563", + "name": "Brislach", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41763000", + "longitude": "7.54340000" + }, + { + "id": "17575", + "name": "Bubendorf", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44586000", + "longitude": "7.73759000" + }, + { + "id": "17589", + "name": "Buus", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50635000", + "longitude": "7.86414000" + }, + { + "id": "17684", + "name": "Diegten", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41380000", + "longitude": "7.81085000" + }, + { + "id": "17775", + "name": "Ettingen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48225000", + "longitude": "7.54654000" + }, + { + "id": "17817", + "name": "Füllinsdorf", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50688000", + "longitude": "7.73129000" + }, + { + "id": "17808", + "name": "Frenkendorf", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50686000", + "longitude": "7.71648000" + }, + { + "id": "17825", + "name": "Gelterkinden", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46497000", + "longitude": "7.85174000" + }, + { + "id": "17867", + "name": "Grellingen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44231000", + "longitude": "7.58906000" + }, + { + "id": "17942", + "name": "Hölstein", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42290000", + "longitude": "7.77041000" + }, + { + "id": "17956", + "name": "Itingen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46651000", + "longitude": "7.78502000" + }, + { + "id": "18034", + "name": "Langenbruck", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34917000", + "longitude": "7.76802000" + }, + { + "id": "18042", + "name": "Laufen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42193000", + "longitude": "7.49946000" + }, + { + "id": "18050", + "name": "Lausen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47139000", + "longitude": "7.76030000" + }, + { + "id": "18109", + "name": "Läufelfingen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39457000", + "longitude": "7.85578000" + }, + { + "id": "18082", + "name": "Liesberg", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40398000", + "longitude": "7.42787000" + }, + { + "id": "18083", + "name": "Liestal", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48455000", + "longitude": "7.73446000" + }, + { + "id": "18200", + "name": "Münchenstein", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51848000", + "longitude": "7.60966000" + }, + { + "id": "18185", + "name": "Muttenz", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52271000", + "longitude": "7.64511000" + }, + { + "id": "18244", + "name": "Oberdorf", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39353000", + "longitude": "7.75169000" + }, + { + "id": "18270", + "name": "Oberwil", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51407000", + "longitude": "7.55786000" + }, + { + "id": "18287", + "name": "Ormalingen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46936000", + "longitude": "7.87248000" + }, + { + "id": "18307", + "name": "Pfeffingen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45984000", + "longitude": "7.58975000" + }, + { + "id": "18324", + "name": "Pratteln", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52071000", + "longitude": "7.69356000" + }, + { + "id": "18403", + "name": "Röschenz", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42366000", + "longitude": "7.48024000" + }, + { + "id": "18362", + "name": "Reigoldswil", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39824000", + "longitude": "7.68718000" + }, + { + "id": "18484", + "name": "Schönenbuch", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53853000", + "longitude": "7.50572000" + }, + { + "id": "18505", + "name": "Seltisberg", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46249000", + "longitude": "7.72039000" + }, + { + "id": "18526", + "name": "Sissach", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46408000", + "longitude": "7.80888000" + }, + { + "id": "18589", + "name": "Therwil", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49941000", + "longitude": "7.55669000" + }, + { + "id": "18699", + "name": "Wahlen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40226000", + "longitude": "7.51511000" + }, + { + "id": "18710", + "name": "Waldenburg", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38333000", + "longitude": "7.75000000" + }, + { + "id": "18803", + "name": "Zunzgen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44925000", + "longitude": "7.80789000" + }, + { + "id": "18807", + "name": "Zwingen", + "state_id": 1641, + "state_code": "BL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43825000", + "longitude": "7.53027000" + }, + { + "id": "17358", + "name": "Aarberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04439000", + "longitude": "7.27578000" + }, + { + "id": "17360", + "name": "Aarwangen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23845000", + "longitude": "7.76854000" + }, + { + "id": "17362", + "name": "Adelboden", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.49142000", + "longitude": "7.56031000" + }, + { + "id": "17373", + "name": "Aeschi b. Spiez", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.65848000", + "longitude": "7.69650000" + }, + { + "id": "17404", + "name": "Arch", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16533000", + "longitude": "7.43139000" + }, + { + "id": "17417", + "name": "Attiswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24673000", + "longitude": "7.61353000" + }, + { + "id": "17592", + "name": "Bäriswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01947000", + "longitude": "7.52709000" + }, + { + "id": "17593", + "name": "Bätterkinden", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13164000", + "longitude": "7.53817000" + }, + { + "id": "17594", + "name": "Bévilard", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23711000", + "longitude": "7.28325000" + }, + { + "id": "17595", + "name": "Bönigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.68736000", + "longitude": "7.89350000" + }, + { + "id": "17447", + "name": "Beatenberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.69896000", + "longitude": "7.79428000" + }, + { + "id": "17454", + "name": "Bellmund", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.10852000", + "longitude": "7.24608000" + }, + { + "id": "17456", + "name": "Belp", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.89129000", + "longitude": "7.49825000" + }, + { + "id": "17462", + "name": "Bern", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94809000", + "longitude": "7.44744000" + }, + { + "id": "17463", + "name": "Bern-Mittelland District", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92526000", + "longitude": "7.49024000" + }, + { + "id": "17526", + "name": "Biel\/Bienne", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13713000", + "longitude": "7.24608000" + }, + { + "id": "17527", + "name": "Biel\/Bienne District", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12725000", + "longitude": "7.26174000" + }, + { + "id": "17528", + "name": "Biglen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92629000", + "longitude": "7.62508000" + }, + { + "id": "17542", + "name": "Blumenstein", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.74210000", + "longitude": "7.52136000" + }, + { + "id": "17545", + "name": "Bolligen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.97510000", + "longitude": "7.49697000" + }, + { + "id": "17546", + "name": "Boltigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.62847000", + "longitude": "7.39054000" + }, + { + "id": "17556", + "name": "Bowil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.89304000", + "longitude": "7.69757000" + }, + { + "id": "17572", + "name": "Brügg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12370000", + "longitude": "7.27887000" + }, + { + "id": "17560", + "name": "Brienz", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.75450000", + "longitude": "8.03847000" + }, + { + "id": "17577", + "name": "Buchholterberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81351000", + "longitude": "7.67463000" + }, + { + "id": "17583", + "name": "Burgdorf", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05901000", + "longitude": "7.62786000" + }, + { + "id": "17584", + "name": "Burgistein", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.78464000", + "longitude": "7.49988000" + }, + { + "id": "17653", + "name": "Corgémont", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19457000", + "longitude": "7.14517000" + }, + { + "id": "17664", + "name": "Court", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23956000", + "longitude": "7.33655000" + }, + { + "id": "17665", + "name": "Courtelary", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17822000", + "longitude": "7.07236000" + }, + { + "id": "17708", + "name": "Därligen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.66175000", + "longitude": "7.80808000" + }, + { + "id": "17716", + "name": "Dürrenroth", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.08953000", + "longitude": "7.79170000" + }, + { + "id": "17686", + "name": "Diemtigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.64928000", + "longitude": "7.56477000" + }, + { + "id": "17731", + "name": "Eggiwil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.87575000", + "longitude": "7.79567000" + }, + { + "id": "17747", + "name": "Emmental District", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04425000", + "longitude": "7.66176000" + }, + { + "id": "17758", + "name": "Eriswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.07816000", + "longitude": "7.85149000" + }, + { + "id": "17759", + "name": "Erlach", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04220000", + "longitude": "7.09728000" + }, + { + "id": "17764", + "name": "Erlenbach im Simmental", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.66021000", + "longitude": "7.55445000" + }, + { + "id": "17767", + "name": "Ersigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.09368000", + "longitude": "7.59507000" + }, + { + "id": "17777", + "name": "Evilard", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15046000", + "longitude": "7.23895000" + }, + { + "id": "17784", + "name": "Ferenbalm", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94880000", + "longitude": "7.21124000" + }, + { + "id": "17802", + "name": "Fraubrunnen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.08620000", + "longitude": "7.52727000" + }, + { + "id": "17805", + "name": "Frauenkappelen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.95425000", + "longitude": "7.33835000" + }, + { + "id": "17812", + "name": "Frutigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.58723000", + "longitude": "7.64945000" + }, + { + "id": "17813", + "name": "Frutigen-Niedersimmental District", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60236000", + "longitude": "7.62292000" + }, + { + "id": "17870", + "name": "Grindelwald", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.62396000", + "longitude": "8.03601000" + }, + { + "id": "17874", + "name": "Grossaffoltern", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06534000", + "longitude": "7.35689000" + }, + { + "id": "17884", + "name": "Gstaad", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47215000", + "longitude": "7.28685000" + }, + { + "id": "17885", + "name": "Guggisberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.76756000", + "longitude": "7.32946000" + }, + { + "id": "17902", + "name": "Heimberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.79482000", + "longitude": "7.60433000" + }, + { + "id": "17903", + "name": "Heimiswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06755000", + "longitude": "7.66665000" + }, + { + "id": "17908", + "name": "Hermiswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.83125000", + "longitude": "7.47775000" + }, + { + "id": "17910", + "name": "Herzogenbuchsee", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18795000", + "longitude": "7.70620000" + }, + { + "id": "17913", + "name": "Hilterfingen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.73521000", + "longitude": "7.66185000" + }, + { + "id": "17915", + "name": "Hindelbank", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04270000", + "longitude": "7.54143000" + }, + { + "id": "17936", + "name": "Huttwil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.11502000", + "longitude": "7.86209000" + }, + { + "id": "17952", + "name": "Ins", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.00584000", + "longitude": "7.10609000" + }, + { + "id": "17953", + "name": "Interlaken", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.68387000", + "longitude": "7.86638000" + }, + { + "id": "17954", + "name": "Interlaken-Oberhasli District", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.68931000", + "longitude": "7.98869000" + }, + { + "id": "17957", + "name": "Jegenstorf", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04802000", + "longitude": "7.50787000" + }, + { + "id": "17963", + "name": "Jura bernois", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21892000", + "longitude": "7.21981000" + }, + { + "id": "17968", + "name": "Kallnach", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.02032000", + "longitude": "7.23545000" + }, + { + "id": "17970", + "name": "Kandersteg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.49467000", + "longitude": "7.67326000" + }, + { + "id": "17971", + "name": "Kappelen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06015000", + "longitude": "7.26860000" + }, + { + "id": "18011", + "name": "Köniz", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92436000", + "longitude": "7.41457000" + }, + { + "id": "17972", + "name": "Kehrsatz", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.91035000", + "longitude": "7.47096000" + }, + { + "id": "17981", + "name": "Kirchberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.08538000", + "longitude": "7.58288000" + }, + { + "id": "17982", + "name": "Kirchlindach", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.99965000", + "longitude": "7.41735000" + }, + { + "id": "18002", + "name": "Konolfingen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.87909000", + "longitude": "7.62013000" + }, + { + "id": "18003", + "name": "Koppigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13125000", + "longitude": "7.60525000" + }, + { + "id": "18004", + "name": "Krauchthal", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.00964000", + "longitude": "7.56640000" + }, + { + "id": "18023", + "name": "La Neuveville", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06592000", + "longitude": "7.09717000" + }, + { + "id": "18036", + "name": "Langenthal", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21526000", + "longitude": "7.79607000" + }, + { + "id": "18037", + "name": "Langnau", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.93936000", + "longitude": "7.78738000" + }, + { + "id": "18045", + "name": "Laupen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90214000", + "longitude": "7.23973000" + }, + { + "id": "18047", + "name": "Lauperswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.96564000", + "longitude": "7.74214000" + }, + { + "id": "18051", + "name": "Lauterbrunnen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.59307000", + "longitude": "7.90938000" + }, + { + "id": "18112", + "name": "Lützelflüh", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.00757000", + "longitude": "7.69165000" + }, + { + "id": "18063", + "name": "Lengnau", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18155000", + "longitude": "7.36814000" + }, + { + "id": "18064", + "name": "Lenk", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.45826000", + "longitude": "7.44298000" + }, + { + "id": "18077", + "name": "Leuzigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17458000", + "longitude": "7.45775000" + }, + { + "id": "18085", + "name": "Linden", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.84690000", + "longitude": "7.67831000" + }, + { + "id": "18093", + "name": "Lotzwil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19135000", + "longitude": "7.79102000" + }, + { + "id": "18107", + "name": "Lyss", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.07410000", + "longitude": "7.30655000" + }, + { + "id": "18108", + "name": "Lyssach", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06445000", + "longitude": "7.58228000" + }, + { + "id": "18113", + "name": "Madiswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16463000", + "longitude": "7.79858000" + }, + { + "id": "18118", + "name": "Malleray", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23839000", + "longitude": "7.27286000" + }, + { + "id": "18129", + "name": "Matten", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.67833000", + "longitude": "7.86889000" + }, + { + "id": "18195", + "name": "Mühleberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.95466000", + "longitude": "7.26102000" + }, + { + "id": "18197", + "name": "Mühlethurnen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81345000", + "longitude": "7.50881000" + }, + { + "id": "18199", + "name": "Münchenbuchsee", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.02175000", + "longitude": "7.45036000" + }, + { + "id": "18201", + "name": "Münchenwiler", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.91334000", + "longitude": "7.12556000" + }, + { + "id": "18204", + "name": "Münsingen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.87298000", + "longitude": "7.56100000" + }, + { + "id": "18206", + "name": "Müntschemier", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.99548000", + "longitude": "7.14626000" + }, + { + "id": "18142", + "name": "Meinisberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15965000", + "longitude": "7.34801000" + }, + { + "id": "18143", + "name": "Meiringen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.72709000", + "longitude": "8.18720000" + }, + { + "id": "18146", + "name": "Melchnau", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18213000", + "longitude": "7.85128000" + }, + { + "id": "18175", + "name": "Moutier", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27818000", + "longitude": "7.36951000" + }, + { + "id": "18183", + "name": "Muri", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.93122000", + "longitude": "7.48658000" + }, + { + "id": "18219", + "name": "Nidau", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12545000", + "longitude": "7.24033000" + }, + { + "id": "18220", + "name": "Niederbipp", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27175000", + "longitude": "7.69583000" + }, + { + "id": "18239", + "name": "Oberaargau", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19202000", + "longitude": "7.74553000" + }, + { + "id": "18240", + "name": "Oberbipp", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26070000", + "longitude": "7.66359000" + }, + { + "id": "18242", + "name": "Oberburg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.03665000", + "longitude": "7.62745000" + }, + { + "id": "18243", + "name": "Oberdiessbach", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.84117000", + "longitude": "7.61730000" + }, + { + "id": "18267", + "name": "Obersimmental-Saanen District", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47932000", + "longitude": "7.35803000" + }, + { + "id": "18289", + "name": "Orpund", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13891000", + "longitude": "7.30775000" + }, + { + "id": "18291", + "name": "Orvin", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16068000", + "longitude": "7.21368000" + }, + { + "id": "18332", + "name": "Péry", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19398000", + "longitude": "7.24913000" + }, + { + "id": "18314", + "name": "Pieterlen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17501000", + "longitude": "7.33791000" + }, + { + "id": "18334", + "name": "Radelfingen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.02146000", + "longitude": "7.27178000" + }, + { + "id": "18404", + "name": "Rüderswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.98374000", + "longitude": "7.72167000" + }, + { + "id": "18405", + "name": "Rüeggisberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.82216000", + "longitude": "7.43890000" + }, + { + "id": "18408", + "name": "Rüschegg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.77977000", + "longitude": "7.39167000" + }, + { + "id": "18343", + "name": "Reconvilier", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23431000", + "longitude": "7.22239000" + }, + { + "id": "18376", + "name": "Riggisberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81028000", + "longitude": "7.48014000" + }, + { + "id": "18377", + "name": "Ringgenberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.70114000", + "longitude": "7.89445000" + }, + { + "id": "18382", + "name": "Roggwil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24119000", + "longitude": "7.82141000" + }, + { + "id": "18385", + "name": "Rohrbach", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13521000", + "longitude": "7.81334000" + }, + { + "id": "18396", + "name": "Rubigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.89868000", + "longitude": "7.54460000" + }, + { + "id": "18415", + "name": "Saanen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.48945000", + "longitude": "7.26003000" + }, + { + "id": "18425", + "name": "Saint-Imier", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15284000", + "longitude": "6.99692000" + }, + { + "id": "18443", + "name": "Sankt Stephan", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.50827000", + "longitude": "7.39559000" + }, + { + "id": "18488", + "name": "Schüpfen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.03661000", + "longitude": "7.37723000" + }, + { + "id": "18491", + "name": "Seeberg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15585000", + "longitude": "7.66567000" + }, + { + "id": "18493", + "name": "Seedorf", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.03445000", + "longitude": "7.31249000" + }, + { + "id": "18494", + "name": "Seeland District", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06635000", + "longitude": "7.26333000" + }, + { + "id": "18502", + "name": "Seftigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.78765000", + "longitude": "7.53937000" + }, + { + "id": "18519", + "name": "Signau", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.91944000", + "longitude": "7.72418000" + }, + { + "id": "18520", + "name": "Sigriswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.71656000", + "longitude": "7.71335000" + }, + { + "id": "18533", + "name": "Spiez", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.68473000", + "longitude": "7.69111000" + }, + { + "id": "18550", + "name": "Steffisburg", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.77807000", + "longitude": "7.63249000" + }, + { + "id": "18558", + "name": "Stettlen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.95835000", + "longitude": "7.52508000" + }, + { + "id": "18566", + "name": "Sumiswald", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.02747000", + "longitude": "7.74526000" + }, + { + "id": "18576", + "name": "Tavannes", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22079000", + "longitude": "7.19759000" + }, + { + "id": "18617", + "name": "Täuffelen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06630000", + "longitude": "7.19883000" + }, + { + "id": "18590", + "name": "Thierachern", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.75319000", + "longitude": "7.57442000" + }, + { + "id": "18591", + "name": "Thun", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.75118000", + "longitude": "7.62166000" + }, + { + "id": "18592", + "name": "Thun District", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.76290000", + "longitude": "7.62503000" + }, + { + "id": "18597", + "name": "Toffen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.86031000", + "longitude": "7.49216000" + }, + { + "id": "18598", + "name": "Trachselwald", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01699000", + "longitude": "7.73639000" + }, + { + "id": "18599", + "name": "Tramelan", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22298000", + "longitude": "7.10287000" + }, + { + "id": "18608", + "name": "Trub", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94168000", + "longitude": "7.87996000" + }, + { + "id": "18609", + "name": "Trubschachen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92228000", + "longitude": "7.84520000" + }, + { + "id": "18626", + "name": "Uetendorf", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.77392000", + "longitude": "7.57251000" + }, + { + "id": "18635", + "name": "Unterseen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.68530000", + "longitude": "7.84722000" + }, + { + "id": "18644", + "name": "Urtenen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.02667000", + "longitude": "7.50081000" + }, + { + "id": "18651", + "name": "Uttigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.79435000", + "longitude": "7.57789000" + }, + { + "id": "18653", + "name": "Utzenstorf", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13248000", + "longitude": "7.55355000" + }, + { + "id": "18663", + "name": "Vechigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94616000", + "longitude": "7.56065000" + }, + { + "id": "18714", + "name": "Walkringen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94856000", + "longitude": "7.62040000" + }, + { + "id": "18723", + "name": "Wangen an der Aare", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23208000", + "longitude": "7.65253000" + }, + { + "id": "18724", + "name": "Wattenwil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.76973000", + "longitude": "7.50835000" + }, + { + "id": "18744", + "name": "Wichtrach", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.85010000", + "longitude": "7.57748000" + }, + { + "id": "18745", + "name": "Wiedlisbach", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25194000", + "longitude": "7.64610000" + }, + { + "id": "18752", + "name": "Wilderswil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.66369000", + "longitude": "7.86175000" + }, + { + "id": "18756", + "name": "Wimmis", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.67587000", + "longitude": "7.63972000" + }, + { + "id": "18762", + "name": "Wohlen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.97118000", + "longitude": "7.35685000" + }, + { + "id": "18768", + "name": "Worb", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92984000", + "longitude": "7.56306000" + }, + { + "id": "18769", + "name": "Worben", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.10279000", + "longitude": "7.29518000" + }, + { + "id": "18770", + "name": "Wynau", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25570000", + "longitude": "7.81626000" + }, + { + "id": "18771", + "name": "Wynigen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.10586000", + "longitude": "7.66681000" + }, + { + "id": "18772", + "name": "Wyssachen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.07851000", + "longitude": "7.82922000" + }, + { + "id": "18808", + "name": "Zäziwil", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90196000", + "longitude": "7.66185000" + }, + { + "id": "18798", + "name": "Zollikofen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.99905000", + "longitude": "7.45809000" + }, + { + "id": "18806", + "name": "Zweisimmen", + "state_id": 1645, + "state_code": "BE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.55539000", + "longitude": "7.37302000" + }, + { + "id": "17390", + "name": "Alterswil", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.79587000", + "longitude": "7.25877000" + }, + { + "id": "17415", + "name": "Attalens", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.50555000", + "longitude": "6.85039000" + }, + { + "id": "17426", + "name": "Avry-sur-Matran", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.78753000", + "longitude": "7.06735000" + }, + { + "id": "17440", + "name": "Bas-Vully", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.96194000", + "longitude": "7.11251000" + }, + { + "id": "17596", + "name": "Bösingen", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.89229000", + "longitude": "7.22770000" + }, + { + "id": "17450", + "name": "Belfaux", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.82171000", + "longitude": "7.10674000" + }, + { + "id": "17566", + "name": "Broc", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60513000", + "longitude": "7.09891000" + }, + { + "id": "17568", + "name": "Broye District", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.82212000", + "longitude": "6.90249000" + }, + { + "id": "17581", + "name": "Bulle", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.61797000", + "longitude": "7.05690000" + }, + { + "id": "17627", + "name": "Charmey", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.61957000", + "longitude": "7.16486000" + }, + { + "id": "17641", + "name": "Châtel-Saint-Denis", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.52691000", + "longitude": "6.90083000" + }, + { + "id": "17654", + "name": "Corminboeuf", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81029000", + "longitude": "7.10535000" + }, + { + "id": "17661", + "name": "Courgevaux", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90648000", + "longitude": "7.11215000" + }, + { + "id": "17671", + "name": "Cugy", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81479000", + "longitude": "6.88888000" + }, + { + "id": "17714", + "name": "Düdingen", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.84916000", + "longitude": "7.19150000" + }, + { + "id": "17702", + "name": "Domdidier", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.86716000", + "longitude": "7.01337000" + }, + { + "id": "17723", + "name": "Ecublens", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60735000", + "longitude": "6.80895000" + }, + { + "id": "17757", + "name": "Ependes", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.75368000", + "longitude": "7.14609000" + }, + { + "id": "17774", + "name": "Estavayer-le-Lac", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.84876000", + "longitude": "6.84650000" + }, + { + "id": "17790", + "name": "Flamatt", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.88994000", + "longitude": "7.32204000" + }, + { + "id": "17809", + "name": "Fribourg", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.80237000", + "longitude": "7.15128000" + }, + { + "id": "17832", + "name": "Giffers", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.76230000", + "longitude": "7.20845000" + }, + { + "id": "17837", + "name": "Givisiez", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81201000", + "longitude": "7.12639000" + }, + { + "id": "17845", + "name": "Glâne District", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.66667000", + "longitude": "6.91667000" + }, + { + "id": "17871", + "name": "Grolley", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.83360000", + "longitude": "7.07116000" + }, + { + "id": "17876", + "name": "Gruyère District", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60753000", + "longitude": "7.10741000" + }, + { + "id": "17877", + "name": "Gruyères", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.58338000", + "longitude": "7.08207000" + }, + { + "id": "17904", + "name": "Heitenried", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.82762000", + "longitude": "7.29944000" + }, + { + "id": "17974", + "name": "Kerzers", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.97586000", + "longitude": "7.19570000" + }, + { + "id": "18025", + "name": "La Roche", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.69620000", + "longitude": "7.13721000" + }, + { + "id": "18028", + "name": "La Tour-de-Trême", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.61061000", + "longitude": "7.06496000" + }, + { + "id": "18031", + "name": "Lake District", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.91016000", + "longitude": "7.14088000" + }, + { + "id": "18122", + "name": "Marly", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.77611000", + "longitude": "7.16459000" + }, + { + "id": "18123", + "name": "Marsens", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.65644000", + "longitude": "7.05948000" + }, + { + "id": "18190", + "name": "Mézières", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.67958000", + "longitude": "6.92630000" + }, + { + "id": "18184", + "name": "Murten\/Morat", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92827000", + "longitude": "7.11715000" + }, + { + "id": "18265", + "name": "Oberschrot", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.74126000", + "longitude": "7.28149000" + }, + { + "id": "18315", + "name": "Plaffeien", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.74198000", + "longitude": "7.28666000" + }, + { + "id": "18323", + "name": "Praroman", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.75145000", + "longitude": "7.17778000" + }, + { + "id": "18342", + "name": "Rechthalten", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.76766000", + "longitude": "7.24028000" + }, + { + "id": "18368", + "name": "Riaz", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.64224000", + "longitude": "7.06183000" + }, + { + "id": "18389", + "name": "Romont", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.69652000", + "longitude": "6.91898000" + }, + { + "id": "18398", + "name": "Rue", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.61916000", + "longitude": "6.82225000" + }, + { + "id": "18437", + "name": "Sankt Antoni", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.82207000", + "longitude": "7.26091000" + }, + { + "id": "18445", + "name": "Sarine District", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.78435000", + "longitude": "7.09993000" + }, + { + "id": "18569", + "name": "Sâles", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.63473000", + "longitude": "6.97336000" + }, + { + "id": "18473", + "name": "Schmitten", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.85750000", + "longitude": "7.25031000" + }, + { + "id": "18510", + "name": "Sense District", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.80132000", + "longitude": "7.26028000" + }, + { + "id": "18570", + "name": "Tafers", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81483000", + "longitude": "7.21852000" + }, + { + "id": "18601", + "name": "Treyvaux", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.72796000", + "longitude": "7.13769000" + }, + { + "id": "18623", + "name": "Ueberstorf", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.86587000", + "longitude": "7.30998000" + }, + { + "id": "18674", + "name": "Veveyse District", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.55083000", + "longitude": "6.91085000" + }, + { + "id": "18679", + "name": "Villars-sur-Glâne", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.79054000", + "longitude": "7.11717000" + }, + { + "id": "18681", + "name": "Villaz-Saint-Pierre", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.72074000", + "longitude": "6.95638000" + }, + { + "id": "18695", + "name": "Vuadens", + "state_id": 1640, + "state_code": "FR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.61545000", + "longitude": "7.01732000" + }, + { + "id": "17383", + "name": "Aire-la-Ville", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.19057000", + "longitude": "6.04287000" + }, + { + "id": "17399", + "name": "Anières", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.27673000", + "longitude": "6.22204000" + }, + { + "id": "17451", + "name": "Bellevue", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25739000", + "longitude": "6.15475000" + }, + { + "id": "17464", + "name": "Bernex", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17650000", + "longitude": "6.07544000" + }, + { + "id": "17612", + "name": "Carouge", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18096000", + "longitude": "6.13921000" + }, + { + "id": "17625", + "name": "Chancy", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.15003000", + "longitude": "5.97153000" + }, + { + "id": "17643", + "name": "Chêne-Bougeries", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.19843000", + "longitude": "6.18642000" + }, + { + "id": "17644", + "name": "Chêne-Bourg", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.19534000", + "longitude": "6.19406000" + }, + { + "id": "17649", + "name": "Confignon", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17341000", + "longitude": "6.08437000" + }, + { + "id": "17656", + "name": "Corsier", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.26297000", + "longitude": "6.22461000" + }, + { + "id": "17676", + "name": "Dardagny", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.19564000", + "longitude": "5.99497000" + }, + { + "id": "17827", + "name": "Genève", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.20222000", + "longitude": "6.14569000" + }, + { + "id": "17965", + "name": "Jussy", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.23590000", + "longitude": "6.26701000" + }, + { + "id": "18032", + "name": "Lancy", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18981000", + "longitude": "6.11441000" + }, + { + "id": "18055", + "name": "Le Grand-Saconnex", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.23188000", + "longitude": "6.12091000" + }, + { + "id": "18068", + "name": "Les Avanchets", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.22168000", + "longitude": "6.10814000" + }, + { + "id": "18141", + "name": "Meinier", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.24706000", + "longitude": "6.23423000" + }, + { + "id": "18158", + "name": "Meyrin", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.23424000", + "longitude": "6.08025000" + }, + { + "id": "18284", + "name": "Onex", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18396000", + "longitude": "6.10237000" + }, + { + "id": "18316", + "name": "Plan-les-Ouates", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.16789000", + "longitude": "6.11664000" + }, + { + "id": "18330", + "name": "Puplinge", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.21043000", + "longitude": "6.23114000" + }, + { + "id": "18448", + "name": "Satigny", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.21462000", + "longitude": "6.03553000" + }, + { + "id": "18595", + "name": "Thônex", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18815000", + "longitude": "6.19904000" + }, + { + "id": "18606", + "name": "Troinex", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.16313000", + "longitude": "6.14745000" + }, + { + "id": "18661", + "name": "Vandœuvres", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.22179000", + "longitude": "6.20285000" + }, + { + "id": "18670", + "name": "Vernier", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.21702000", + "longitude": "6.08497000" + }, + { + "id": "18672", + "name": "Versoix", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.28382000", + "longitude": "6.16214000" + }, + { + "id": "18676", + "name": "Veyrier", + "state_id": 1647, + "state_code": "GE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.16699000", + "longitude": "6.18436000" + }, + { + "id": "17385", + "name": "Alle", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42542000", + "longitude": "7.13018000" + }, + { + "id": "17442", + "name": "Bassecourt", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33808000", + "longitude": "7.24373000" + }, + { + "id": "17548", + "name": "Boncourt", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49493000", + "longitude": "7.01297000" + }, + { + "id": "17659", + "name": "Courfaivre", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33461000", + "longitude": "7.28186000" + }, + { + "id": "17660", + "name": "Courgenay", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40483000", + "longitude": "7.12522000" + }, + { + "id": "17662", + "name": "Courrendlin", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33853000", + "longitude": "7.37243000" + }, + { + "id": "17663", + "name": "Courroux", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36069000", + "longitude": "7.37371000" + }, + { + "id": "17666", + "name": "Courtételle", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34074000", + "longitude": "7.31827000" + }, + { + "id": "17680", + "name": "Delémont", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36493000", + "longitude": "7.34453000" + }, + { + "id": "17681", + "name": "Delémont District", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35434000", + "longitude": "7.33053000" + }, + { + "id": "17799", + "name": "Fontenais", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40292000", + "longitude": "7.08108000" + }, + { + "id": "17801", + "name": "Franches-Montagnes District", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24935000", + "longitude": "7.04562000" + }, + { + "id": "17844", + "name": "Glovelier", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33534000", + "longitude": "7.20556000" + }, + { + "id": "18060", + "name": "Le Noirmont", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22464000", + "longitude": "6.95784000" + }, + { + "id": "18069", + "name": "Les Bois", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17715000", + "longitude": "6.90498000" + }, + { + "id": "18071", + "name": "Les Breuleux", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21099000", + "longitude": "7.00792000" + }, + { + "id": "18319", + "name": "Porrentruy", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41728000", + "longitude": "7.07573000" + }, + { + "id": "18320", + "name": "Porrentruy District", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41475000", + "longitude": "7.07638000" + }, + { + "id": "18420", + "name": "Saignelégier", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25619000", + "longitude": "6.99648000" + }, + { + "id": "18677", + "name": "Vicques", + "state_id": 1658, + "state_code": "JU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35000000", + "longitude": "7.41342000" + }, + { + "id": "17363", + "name": "Adligenswil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06521000", + "longitude": "8.36124000" + }, + { + "id": "17391", + "name": "Altishofen", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19916000", + "longitude": "7.96964000" + }, + { + "id": "17437", + "name": "Ballwil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15371000", + "longitude": "8.32233000" + }, + { + "id": "17604", + "name": "Büron", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21192000", + "longitude": "8.09420000" + }, + { + "id": "17466", + "name": "Beromünster", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20612000", + "longitude": "8.19265000" + }, + { + "id": "17578", + "name": "Buchrain", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.09625000", + "longitude": "8.34729000" + }, + { + "id": "17587", + "name": "Buttisholz", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.11442000", + "longitude": "8.09425000" + }, + { + "id": "17674", + "name": "Dagmersellen", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21405000", + "longitude": "7.98519000" + }, + { + "id": "17718", + "name": "Ebikon", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.07937000", + "longitude": "8.34041000" + }, + { + "id": "17735", + "name": "Eich", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15116000", + "longitude": "8.16695000" + }, + { + "id": "17746", + "name": "Emmen", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.07819000", + "longitude": "8.27331000" + }, + { + "id": "17753", + "name": "Entlebuch", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "46.99559000", + "longitude": "8.06354000" + }, + { + "id": "17754", + "name": "Entlebuch District", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92590000", + "longitude": "8.01427000" + }, + { + "id": "17772", + "name": "Escholzmatt", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "46.91350000", + "longitude": "7.93426000" + }, + { + "id": "17776", + "name": "Ettiswil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15031000", + "longitude": "8.01759000" + }, + { + "id": "17797", + "name": "Flühli", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "46.88391000", + "longitude": "8.01558000" + }, + { + "id": "17831", + "name": "Geuensee", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19970000", + "longitude": "8.10689000" + }, + { + "id": "17875", + "name": "Grosswangen", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13310000", + "longitude": "8.05041000" + }, + { + "id": "17887", + "name": "Gunzwil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21072000", + "longitude": "8.17932000" + }, + { + "id": "17893", + "name": "Hasle", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "46.97787000", + "longitude": "8.05326000" + }, + { + "id": "17912", + "name": "Hildisrieden", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15068000", + "longitude": "8.22582000" + }, + { + "id": "17920", + "name": "Hitzkirch", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22403000", + "longitude": "8.26425000" + }, + { + "id": "17921", + "name": "Hochdorf", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16841000", + "longitude": "8.29179000" + }, + { + "id": "17922", + "name": "Hochdorf District", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17062000", + "longitude": "8.28702000" + }, + { + "id": "17926", + "name": "Hohenrain", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18083000", + "longitude": "8.31802000" + }, + { + "id": "17935", + "name": "Horw", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01692000", + "longitude": "8.30956000" + }, + { + "id": "17955", + "name": "Inwil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12530000", + "longitude": "8.34885000" + }, + { + "id": "17998", + "name": "Knutwil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19953000", + "longitude": "8.07315000" + }, + { + "id": "18008", + "name": "Kriens", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.03110000", + "longitude": "8.28547000" + }, + { + "id": "18087", + "name": "Littau", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05000000", + "longitude": "8.26274000" + }, + { + "id": "18095", + "name": "Lucerne-Land District", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04046000", + "longitude": "8.29271000" + }, + { + "id": "18096", + "name": "Lucerne-Stadt District", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05334000", + "longitude": "8.31063000" + }, + { + "id": "18103", + "name": "Luthern", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05753000", + "longitude": "7.91692000" + }, + { + "id": "18106", + "name": "Luzern", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05048000", + "longitude": "8.30635000" + }, + { + "id": "18119", + "name": "Malters", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.03628000", + "longitude": "8.18193000" + }, + { + "id": "18136", + "name": "Mauensee", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16703000", + "longitude": "8.06793000" + }, + { + "id": "18138", + "name": "Meggen", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04691000", + "longitude": "8.37467000" + }, + { + "id": "18139", + "name": "Meierskappel", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12470000", + "longitude": "8.44274000" + }, + { + "id": "18153", + "name": "Menznau", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.08364000", + "longitude": "8.03971000" + }, + { + "id": "18208", + "name": "Nebikon", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19185000", + "longitude": "7.97769000" + }, + { + "id": "18214", + "name": "Neudorf", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17699000", + "longitude": "8.20911000" + }, + { + "id": "18216", + "name": "Neuenkirch", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.09989000", + "longitude": "8.20416000" + }, + { + "id": "18230", + "name": "Nottwil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13469000", + "longitude": "8.13774000" + }, + { + "id": "18256", + "name": "Oberkirch", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15642000", + "longitude": "8.11567000" + }, + { + "id": "18306", + "name": "Pfaffnau", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22772000", + "longitude": "7.89719000" + }, + { + "id": "18402", + "name": "Römerswil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16881000", + "longitude": "8.24528000" + }, + { + "id": "18361", + "name": "Reiden", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24719000", + "longitude": "7.97135000" + }, + { + "id": "18390", + "name": "Root", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.11458000", + "longitude": "8.39021000" + }, + { + "id": "18401", + "name": "Ruswil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.08425000", + "longitude": "8.12645000" + }, + { + "id": "18486", + "name": "Schötz", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16896000", + "longitude": "7.98870000" + }, + { + "id": "18489", + "name": "Schüpfheim", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "46.95161000", + "longitude": "8.01723000" + }, + { + "id": "18459", + "name": "Schenkon", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17765000", + "longitude": "8.13204000" + }, + { + "id": "18476", + "name": "Schwarzenberg", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01705000", + "longitude": "8.17261000" + }, + { + "id": "18508", + "name": "Sempach", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13577000", + "longitude": "8.19149000" + }, + { + "id": "18567", + "name": "Sursee", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17088000", + "longitude": "8.11113000" + }, + { + "id": "18568", + "name": "Sursee District", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15591000", + "longitude": "8.13704000" + }, + { + "id": "18602", + "name": "Triengen", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23573000", + "longitude": "8.07652000" + }, + { + "id": "18622", + "name": "Udligenswil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.09005000", + "longitude": "8.40335000" + }, + { + "id": "18690", + "name": "Vitznau", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01014000", + "longitude": "8.48420000" + }, + { + "id": "18726", + "name": "Wauwil", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18457000", + "longitude": "8.02100000" + }, + { + "id": "18729", + "name": "Weggis", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.03208000", + "longitude": "8.43219000" + }, + { + "id": "18735", + "name": "Werthenstein", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05578000", + "longitude": "8.10182000" + }, + { + "id": "18748", + "name": "Wikon", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26339000", + "longitude": "7.96801000" + }, + { + "id": "18754", + "name": "Willisau", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12183000", + "longitude": "7.99418000" + }, + { + "id": "18755", + "name": "Willisau District", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.14097000", + "longitude": "7.95933000" + }, + { + "id": "18766", + "name": "Wolhusen", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05983000", + "longitude": "8.07389000" + }, + { + "id": "18792", + "name": "Zell", + "state_id": 1663, + "state_code": "LU", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13673000", + "longitude": "7.92495000" + }, + { + "id": "17423", + "name": "Auvernier", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.97545000", + "longitude": "6.87903000" + }, + { + "id": "17469", + "name": "Bevaix", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92958000", + "longitude": "6.81470000" + }, + { + "id": "17554", + "name": "Boudry", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94991000", + "longitude": "6.83757000" + }, + { + "id": "17555", + "name": "Boudry District", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94594000", + "longitude": "6.82842000" + }, + { + "id": "17619", + "name": "Cernier", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05878000", + "longitude": "6.90040000" + }, + { + "id": "17642", + "name": "Chézard-Saint-Martin", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06629000", + "longitude": "6.93332000" + }, + { + "id": "17655", + "name": "Cornaux", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.03960000", + "longitude": "7.01872000" + }, + { + "id": "17657", + "name": "Cortaillod", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94306000", + "longitude": "6.84440000" + }, + { + "id": "17667", + "name": "Couvet", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92525000", + "longitude": "6.63270000" + }, + { + "id": "17701", + "name": "Dombresson", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.07192000", + "longitude": "6.95920000" + }, + { + "id": "17792", + "name": "Fleurier", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90224000", + "longitude": "6.58253000" + }, + { + "id": "17798", + "name": "Fontainemelon", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05495000", + "longitude": "6.88680000" + }, + { + "id": "17855", + "name": "Gorgier", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90143000", + "longitude": "6.77985000" + }, + { + "id": "17861", + "name": "Grand-Savagnier", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05101000", + "longitude": "6.95489000" + }, + { + "id": "18021", + "name": "La Chaux-de-Fonds", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.09993000", + "longitude": "6.82586000" + }, + { + "id": "18022", + "name": "La Chaux-de-Fonds District", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12159000", + "longitude": "6.84064000" + }, + { + "id": "18056", + "name": "Le Landeron", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05702000", + "longitude": "7.07052000" + }, + { + "id": "18057", + "name": "Le Locle", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05619000", + "longitude": "6.74913000" + }, + { + "id": "18058", + "name": "Le Locle District", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01927000", + "longitude": "6.69635000" + }, + { + "id": "18070", + "name": "Les Brenets", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06774000", + "longitude": "6.70478000" + }, + { + "id": "18072", + "name": "Les Geneveys-sur-Coffrane", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01528000", + "longitude": "6.85130000" + }, + { + "id": "18073", + "name": "Les Ponts-de-Martel", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.99735000", + "longitude": "6.73059000" + }, + { + "id": "18121", + "name": "Marin-Epagnier", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01017000", + "longitude": "6.99941000" + }, + { + "id": "18212", + "name": "Neuchâtel", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.99179000", + "longitude": "6.93100000" + }, + { + "id": "18213", + "name": "Neuchâtel District", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01799000", + "longitude": "6.99337000" + }, + { + "id": "18304", + "name": "Peseux", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.98704000", + "longitude": "6.88903000" + }, + { + "id": "18422", + "name": "Saint-Aubin-Sauges", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.89419000", + "longitude": "6.77251000" + }, + { + "id": "18423", + "name": "Saint-Blaise", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01511000", + "longitude": "6.98832000" + }, + { + "id": "18600", + "name": "Travers", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94018000", + "longitude": "6.67595000" + }, + { + "id": "18656", + "name": "Val-de-Ruz District", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04008000", + "longitude": "6.90829000" + }, + { + "id": "18657", + "name": "Val-de-Travers District", + "state_id": 1659, + "state_code": "NE", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90357000", + "longitude": "6.56310000" + }, + { + "id": "17461", + "name": "Beringen", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.69763000", + "longitude": "8.57431000" + }, + { + "id": "17502", + "name": "Bezirk Oberklettgau", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.69893000", + "longitude": "8.51774000" + }, + { + "id": "17505", + "name": "Bezirk Reiat", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.74752000", + "longitude": "8.70821000" + }, + { + "id": "17507", + "name": "Bezirk Schaffhausen", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.69440000", + "longitude": "8.63525000" + }, + { + "id": "17508", + "name": "Bezirk Schleitheim", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.75000000", + "longitude": "8.51111000" + }, + { + "id": "17512", + "name": "Bezirk Stein", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.66429000", + "longitude": "8.84683000" + }, + { + "id": "17515", + "name": "Bezirk Unterklettgau", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.68000000", + "longitude": "8.46333000" + }, + { + "id": "17892", + "name": "Hallau", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.69648000", + "longitude": "8.45827000" + }, + { + "id": "18110", + "name": "Löhningen", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.70121000", + "longitude": "8.55236000" + }, + { + "id": "18217", + "name": "Neuhausen", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.68579000", + "longitude": "8.61474000" + }, + { + "id": "18218", + "name": "Neunkirch", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.69012000", + "longitude": "8.49981000" + }, + { + "id": "18336", + "name": "Ramsen", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.70797000", + "longitude": "8.80949000" + }, + { + "id": "18455", + "name": "Schaffhausen", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.69732000", + "longitude": "8.63493000" + }, + { + "id": "18464", + "name": "Schleitheim", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.74818000", + "longitude": "8.48213000" + }, + { + "id": "18552", + "name": "Stein am Rhein", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.65933000", + "longitude": "8.85964000" + }, + { + "id": "18556", + "name": "Stetten", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.74025000", + "longitude": "8.66298000" + }, + { + "id": "18588", + "name": "Thayngen", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.74717000", + "longitude": "8.70724000" + }, + { + "id": "18751", + "name": "Wilchingen", + "state_id": 1654, + "state_code": "SH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.66745000", + "longitude": "8.46774000" + }, + { + "id": "17438", + "name": "Balsthal", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31613000", + "longitude": "7.69318000" + }, + { + "id": "17605", + "name": "Büsserach", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39415000", + "longitude": "7.54117000" + }, + { + "id": "17468", + "name": "Bettlach", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20062000", + "longitude": "7.42405000" + }, + { + "id": "17478", + "name": "Bezirk Bucheggberg", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13205000", + "longitude": "7.47885000" + }, + { + "id": "17482", + "name": "Bezirk Dorneck", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48032000", + "longitude": "7.61816000" + }, + { + "id": "17485", + "name": "Bezirk Gäu", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29606000", + "longitude": "7.77503000" + }, + { + "id": "17486", + "name": "Bezirk Gösgen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37758000", + "longitude": "7.92030000" + }, + { + "id": "17495", + "name": "Bezirk Lebern", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21798000", + "longitude": "7.48053000" + }, + { + "id": "17503", + "name": "Bezirk Olten", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34426000", + "longitude": "7.90755000" + }, + { + "id": "17511", + "name": "Bezirk Solothurn", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20818000", + "longitude": "7.53084000" + }, + { + "id": "17513", + "name": "Bezirk Thal", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31095000", + "longitude": "7.63592000" + }, + { + "id": "17514", + "name": "Bezirk Thierstein", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38333000", + "longitude": "7.55000000" + }, + { + "id": "17519", + "name": "Bezirk Wasseramt", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18911000", + "longitude": "7.59157000" + }, + { + "id": "17525", + "name": "Biberist", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18009000", + "longitude": "7.56246000" + }, + { + "id": "17557", + "name": "Breitenbach", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40668000", + "longitude": "7.54554000" + }, + { + "id": "17679", + "name": "Deitingen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21515000", + "longitude": "7.61880000" + }, + { + "id": "17683", + "name": "Derendingen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19850000", + "longitude": "7.58844000" + }, + { + "id": "17704", + "name": "Dornach", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48038000", + "longitude": "7.61644000" + }, + { + "id": "17728", + "name": "Egerkingen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31957000", + "longitude": "7.78424000" + }, + { + "id": "17765", + "name": "Erlinsbach", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39753000", + "longitude": "8.00797000" + }, + { + "id": "17814", + "name": "Fulenbach", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27103000", + "longitude": "7.83136000" + }, + { + "id": "17828", + "name": "Gerlafingen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17087000", + "longitude": "7.57249000" + }, + { + "id": "17868", + "name": "Grenchen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19210000", + "longitude": "7.39586000" + }, + { + "id": "17886", + "name": "Gunzgen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31375000", + "longitude": "7.83102000" + }, + { + "id": "17937", + "name": "Hägendorf", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33497000", + "longitude": "7.84133000" + }, + { + "id": "17914", + "name": "Himmelried", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42136000", + "longitude": "7.59985000" + }, + { + "id": "17924", + "name": "Hochwald", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45389000", + "longitude": "7.64459000" + }, + { + "id": "17984", + "name": "Kleinlützel", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42518000", + "longitude": "7.41607000" + }, + { + "id": "18007", + "name": "Kriegstetten", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17449000", + "longitude": "7.59799000" + }, + { + "id": "18035", + "name": "Langendorf", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21974000", + "longitude": "7.51469000" + }, + { + "id": "18046", + "name": "Laupersdorf", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31260000", + "longitude": "7.65465000" + }, + { + "id": "18092", + "name": "Lostorf", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38372000", + "longitude": "7.94655000" + }, + { + "id": "18102", + "name": "Luterbach", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21426000", + "longitude": "7.58463000" + }, + { + "id": "18134", + "name": "Matzendorf", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30374000", + "longitude": "7.62820000" + }, + { + "id": "18156", + "name": "Messen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.09155000", + "longitude": "7.44528000" + }, + { + "id": "18224", + "name": "Niedergösgen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37157000", + "longitude": "7.98837000" + }, + { + "id": "18232", + "name": "Nunningen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39410000", + "longitude": "7.61951000" + }, + { + "id": "18241", + "name": "Oberbuchsiten", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31334000", + "longitude": "7.76836000" + }, + { + "id": "18254", + "name": "Obergösgen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36538000", + "longitude": "7.95173000" + }, + { + "id": "18279", + "name": "Oensingen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28764000", + "longitude": "7.71612000" + }, + { + "id": "18283", + "name": "Olten", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34999000", + "longitude": "7.90329000" + }, + { + "id": "18375", + "name": "Riedholz", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23158000", + "longitude": "7.56829000" + }, + { + "id": "18381", + "name": "Rodersdorf", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48082000", + "longitude": "7.45767000" + }, + { + "id": "18384", + "name": "Rohr", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41029000", + "longitude": "7.95333000" + }, + { + "id": "18485", + "name": "Schönenwerd", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36910000", + "longitude": "8.00167000" + }, + { + "id": "18506", + "name": "Selzach", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20531000", + "longitude": "7.45521000" + }, + { + "id": "18528", + "name": "Solothurn", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20791000", + "longitude": "7.53714000" + }, + { + "id": "18561", + "name": "Subingen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19852000", + "longitude": "7.61949000" + }, + { + "id": "18603", + "name": "Trimbach", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36561000", + "longitude": "7.88680000" + }, + { + "id": "18721", + "name": "Wangen", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34365000", + "longitude": "7.86982000" + }, + { + "id": "18734", + "name": "Welschenrohr", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28052000", + "longitude": "7.52664000" + }, + { + "id": "18765", + "name": "Wolfwil", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26871000", + "longitude": "7.79652000" + }, + { + "id": "18800", + "name": "Zuchwil", + "state_id": 1662, + "state_code": "SO", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20173000", + "longitude": "7.56649000" + }, + { + "id": "17393", + "name": "Altstätten", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37766000", + "longitude": "9.54746000" + }, + { + "id": "17394", + "name": "Amden", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.14888000", + "longitude": "9.14233000" + }, + { + "id": "17398", + "name": "Andwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43855000", + "longitude": "9.27436000" + }, + { + "id": "17419", + "name": "Au", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43093000", + "longitude": "9.63448000" + }, + { + "id": "17430", + "name": "Bad Ragaz", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.00601000", + "longitude": "9.50266000" + }, + { + "id": "17435", + "name": "Balgach", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40556000", + "longitude": "9.60702000" + }, + { + "id": "17606", + "name": "Bütschwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36022000", + "longitude": "9.07213000" + }, + { + "id": "17458", + "name": "Benken", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19942000", + "longitude": "9.00735000" + }, + { + "id": "17567", + "name": "Bronschhofen", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47835000", + "longitude": "9.03454000" + }, + { + "id": "17580", + "name": "Buchs", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16743000", + "longitude": "9.47794000" + }, + { + "id": "17678", + "name": "Degersheim", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37429000", + "longitude": "9.20019000" + }, + { + "id": "17687", + "name": "Diepoldsau", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38600000", + "longitude": "9.65558000" + }, + { + "id": "17720", + "name": "Ebnat-Kappel", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26195000", + "longitude": "9.12473000" + }, + { + "id": "17730", + "name": "Eggersriet", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44202000", + "longitude": "9.46901000" + }, + { + "id": "17736", + "name": "Eichberg", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34374000", + "longitude": "9.53140000" + }, + { + "id": "17769", + "name": "Eschenbach", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23981000", + "longitude": "8.92156000" + }, + { + "id": "17791", + "name": "Flawil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41301000", + "longitude": "9.18324000" + }, + { + "id": "17794", + "name": "Flums", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.09058000", + "longitude": "9.34301000" + }, + { + "id": "17821", + "name": "Gams", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20429000", + "longitude": "9.44172000" + }, + { + "id": "17822", + "name": "Ganterschwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38103000", + "longitude": "9.09239000" + }, + { + "id": "17847", + "name": "Goldach", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47401000", + "longitude": "9.46711000" + }, + { + "id": "17849", + "name": "Goldingen", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26477000", + "longitude": "8.96167000" + }, + { + "id": "17850", + "name": "Gommiswald", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23128000", + "longitude": "9.02355000" + }, + { + "id": "17856", + "name": "Gossau", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41551000", + "longitude": "9.25482000" + }, + { + "id": "17859", + "name": "Grabs", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18248000", + "longitude": "9.44395000" + }, + { + "id": "17890", + "name": "Haag (Rheintal)", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20989000", + "longitude": "9.48931000" + }, + { + "id": "17938", + "name": "Häggenschwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49462000", + "longitude": "9.34487000" + }, + { + "id": "17934", + "name": "Horn", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49425000", + "longitude": "9.46246000" + }, + { + "id": "17959", + "name": "Jona", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22983000", + "longitude": "8.83884000" + }, + { + "id": "17962", + "name": "Jonschwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42402000", + "longitude": "9.08689000" + }, + { + "id": "17969", + "name": "Kaltbrunn", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21367000", + "longitude": "9.02590000" + }, + { + "id": "17980", + "name": "Kirchberg", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41159000", + "longitude": "9.04020000" + }, + { + "id": "18009", + "name": "Krummenau", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24755000", + "longitude": "9.17064000" + }, + { + "id": "18111", + "name": "Lütisburg", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39451000", + "longitude": "9.08312000" + }, + { + "id": "18081", + "name": "Lichtensteig", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32381000", + "longitude": "9.08758000" + }, + { + "id": "18194", + "name": "Mörschwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47097000", + "longitude": "9.42278000" + }, + { + "id": "18160", + "name": "Mogelsberg", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36222000", + "longitude": "9.13541000" + }, + { + "id": "18173", + "name": "Mosnang", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36252000", + "longitude": "9.04296000" + }, + { + "id": "18178", + "name": "Muolen", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52102000", + "longitude": "9.32484000" + }, + { + "id": "18221", + "name": "Niederbüren", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46547000", + "longitude": "9.20568000" + }, + { + "id": "18226", + "name": "Niederhelfenschwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47487000", + "longitude": "9.18543000" + }, + { + "id": "18255", + "name": "Oberhelfenschwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35673000", + "longitude": "9.11076000" + }, + { + "id": "18262", + "name": "Oberriet", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32088000", + "longitude": "9.56808000" + }, + { + "id": "18269", + "name": "Oberuzwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43076000", + "longitude": "9.12724000" + }, + { + "id": "18333", + "name": "Quarten", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.10700000", + "longitude": "9.24199000" + }, + { + "id": "18338", + "name": "Rapperswil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22557000", + "longitude": "8.82228000" + }, + { + "id": "18410", + "name": "Rüthi", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29480000", + "longitude": "9.53857000" + }, + { + "id": "18341", + "name": "Rebstein", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39812000", + "longitude": "9.58503000" + }, + { + "id": "18365", + "name": "Rheineck", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46630000", + "longitude": "9.59028000" + }, + { + "id": "18392", + "name": "Rorschach", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47800000", + "longitude": "9.49030000" + }, + { + "id": "18438", + "name": "Sankt Gallen", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42391000", + "longitude": "9.37477000" + }, + { + "id": "18439", + "name": "Sankt Gallenkappel", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24368000", + "longitude": "8.96438000" + }, + { + "id": "18440", + "name": "Sankt Margrethen", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45253000", + "longitude": "9.63741000" + }, + { + "id": "18442", + "name": "Sankt Peterzell", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31782000", + "longitude": "9.17599000" + }, + { + "id": "18444", + "name": "Sargans", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04896000", + "longitude": "9.44103000" + }, + { + "id": "18482", + "name": "Schänis", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.15995000", + "longitude": "9.04549000" + }, + { + "id": "18472", + "name": "Schmerikon", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22538000", + "longitude": "8.94836000" + }, + { + "id": "18509", + "name": "Sennwald", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26063000", + "longitude": "9.50268000" + }, + { + "id": "18515", + "name": "Sevelen", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12213000", + "longitude": "9.48601000" + }, + { + "id": "18581", + "name": "Thal", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46677000", + "longitude": "9.56643000" + }, + { + "id": "18654", + "name": "Uznach", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22421000", + "longitude": "8.98263000" + }, + { + "id": "18655", + "name": "Uzwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43653000", + "longitude": "9.13422000" + }, + { + "id": "18700", + "name": "Wahlkreis Rheintal", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37769000", + "longitude": "9.57903000" + }, + { + "id": "18701", + "name": "Wahlkreis Rorschach", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46647000", + "longitude": "9.44246000" + }, + { + "id": "18702", + "name": "Wahlkreis Sarganserland", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.05000000", + "longitude": "9.43333000" + }, + { + "id": "18703", + "name": "Wahlkreis See-Gaster", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22459000", + "longitude": "9.01680000" + }, + { + "id": "18704", + "name": "Wahlkreis St. Gallen", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46342000", + "longitude": "9.39052000" + }, + { + "id": "18705", + "name": "Wahlkreis Toggenburg", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29453000", + "longitude": "9.17283000" + }, + { + "id": "18706", + "name": "Wahlkreis Werdenberg", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17743000", + "longitude": "9.46299000" + }, + { + "id": "18707", + "name": "Wahlkreis Wil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42591000", + "longitude": "9.12451000" + }, + { + "id": "18711", + "name": "Waldkirch", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46859000", + "longitude": "9.28665000" + }, + { + "id": "18713", + "name": "Walenstadt", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12411000", + "longitude": "9.31194000" + }, + { + "id": "18725", + "name": "Wattwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29955000", + "longitude": "9.08657000" + }, + { + "id": "18727", + "name": "Weesen", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13447000", + "longitude": "9.09644000" + }, + { + "id": "18749", + "name": "Wil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46152000", + "longitude": "9.04552000" + }, + { + "id": "18753", + "name": "Wildhaus", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20583000", + "longitude": "9.35402000" + }, + { + "id": "18759", + "name": "Wittenbach", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46108000", + "longitude": "9.38601000" + }, + { + "id": "18805", + "name": "Zuzwil", + "state_id": 1644, + "state_code": "SG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47452000", + "longitude": "9.11196000" + }, + { + "id": "17405", + "name": "Ardon", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.20951000", + "longitude": "7.26012000" + }, + { + "id": "17427", + "name": "Ayent", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.28249000", + "longitude": "7.41028000" + }, + { + "id": "17433", + "name": "Bagnes", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.08333000", + "longitude": "7.21667000" + }, + { + "id": "17439", + "name": "Baltschieder", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.30888000", + "longitude": "7.86570000" + }, + { + "id": "17441", + "name": "Basse-Nendaz", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18993000", + "longitude": "7.31209000" + }, + { + "id": "17561", + "name": "Brig", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31667000", + "longitude": "7.98333000" + }, + { + "id": "17562", + "name": "Brig District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.28255000", + "longitude": "8.01185000" + }, + { + "id": "17621", + "name": "Chalais", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.26758000", + "longitude": "7.51145000" + }, + { + "id": "17623", + "name": "Chamoson", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.20275000", + "longitude": "7.22319000" + }, + { + "id": "17624", + "name": "Champéry", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17543000", + "longitude": "6.86903000" + }, + { + "id": "17628", + "name": "Charrat", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.12490000", + "longitude": "7.13138000" + }, + { + "id": "17632", + "name": "Chermignon-d’en Haut", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.28844000", + "longitude": "7.47487000" + }, + { + "id": "17637", + "name": "Chippis", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.28020000", + "longitude": "7.53962000" + }, + { + "id": "17646", + "name": "Collombey", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.27385000", + "longitude": "6.94789000" + }, + { + "id": "17650", + "name": "Conthey", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.22370000", + "longitude": "7.30283000" + }, + { + "id": "17651", + "name": "Conthey District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.20485000", + "longitude": "7.27857000" + }, + { + "id": "17755", + "name": "Entremont District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.02099000", + "longitude": "7.21260000" + }, + { + "id": "17778", + "name": "Evionnaz", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18096000", + "longitude": "7.02232000" + }, + { + "id": "17779", + "name": "Evolène", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.11422000", + "longitude": "7.49407000" + }, + { + "id": "17788", + "name": "Fiesch", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.39981000", + "longitude": "8.13533000" + }, + { + "id": "17815", + "name": "Fully", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.13851000", + "longitude": "7.11468000" + }, + { + "id": "17820", + "name": "Gampel", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31599000", + "longitude": "7.74210000" + }, + { + "id": "17851", + "name": "Goms District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.46161000", + "longitude": "8.22190000" + }, + { + "id": "17879", + "name": "Grächen", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.19529000", + "longitude": "7.83745000" + }, + { + "id": "17881", + "name": "Grône", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25288000", + "longitude": "7.45947000" + }, + { + "id": "17869", + "name": "Grimisuat", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25938000", + "longitude": "7.38408000" + }, + { + "id": "17941", + "name": "Hérémence", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18032000", + "longitude": "7.40477000" + }, + { + "id": "17940", + "name": "Hérens District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.19407000", + "longitude": "7.42391000" + }, + { + "id": "18065", + "name": "Lens", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.28298000", + "longitude": "7.44976000" + }, + { + "id": "18074", + "name": "Leuk", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31736000", + "longitude": "7.63412000" + }, + { + "id": "18075", + "name": "Leuk District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31439000", + "longitude": "7.67291000" + }, + { + "id": "18076", + "name": "Leukerbad", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.37943000", + "longitude": "7.62687000" + }, + { + "id": "18080", + "name": "Leytron", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18660000", + "longitude": "7.20780000" + }, + { + "id": "18125", + "name": "Martigny District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.12386000", + "longitude": "7.10354000" + }, + { + "id": "18126", + "name": "Martigny-Combe", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.07817000", + "longitude": "7.05099000" + }, + { + "id": "18127", + "name": "Martigny-Ville", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.10276000", + "longitude": "7.07245000" + }, + { + "id": "18165", + "name": "Montana", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31338000", + "longitude": "7.48839000" + }, + { + "id": "18167", + "name": "Monthey", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25451000", + "longitude": "6.95406000" + }, + { + "id": "18168", + "name": "Monthey District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.27043000", + "longitude": "6.90274000" + }, + { + "id": "18207", + "name": "Naters", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.32536000", + "longitude": "7.98912000" + }, + { + "id": "18290", + "name": "Orsières", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.02903000", + "longitude": "7.14437000" + }, + { + "id": "18337", + "name": "Randogne", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.30952000", + "longitude": "7.50058000" + }, + { + "id": "18339", + "name": "Raron", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31196000", + "longitude": "7.80029000" + }, + { + "id": "18340", + "name": "Raron District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.30000000", + "longitude": "7.80000000" + }, + { + "id": "18374", + "name": "Riddes", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17276000", + "longitude": "7.22360000" + }, + { + "id": "18416", + "name": "Saas-Fee", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.10805000", + "longitude": "7.92741000" + }, + { + "id": "18417", + "name": "Saas-Grund", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.12281000", + "longitude": "7.93651000" + }, + { + "id": "18421", + "name": "Saillon", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17035000", + "longitude": "7.18771000" + }, + { + "id": "18427", + "name": "Saint-Léonard", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25152000", + "longitude": "7.41714000" + }, + { + "id": "18428", + "name": "Saint-Maurice", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.21826000", + "longitude": "7.00320000" + }, + { + "id": "18429", + "name": "Saint-Maurice District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.15384000", + "longitude": "6.99823000" + }, + { + "id": "18432", + "name": "Salgesch", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31155000", + "longitude": "7.57120000" + }, + { + "id": "18434", + "name": "Salvan", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.11890000", + "longitude": "7.02078000" + }, + { + "id": "18441", + "name": "Sankt Niklaus", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17717000", + "longitude": "7.80349000" + }, + { + "id": "18452", + "name": "Savièse", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25115000", + "longitude": "7.34558000" + }, + { + "id": "18453", + "name": "Saxon", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.14937000", + "longitude": "7.17514000" + }, + { + "id": "18517", + "name": "Sierre", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.29192000", + "longitude": "7.53559000" + }, + { + "id": "18518", + "name": "Sierre District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.27052000", + "longitude": "7.51570000" + }, + { + "id": "18524", + "name": "Sion District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.23343000", + "longitude": "7.34939000" + }, + { + "id": "18527", + "name": "Sitten", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.22739000", + "longitude": "7.35559000" + }, + { + "id": "18545", + "name": "Stalden", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.23341000", + "longitude": "7.87273000" + }, + { + "id": "18573", + "name": "Tanay", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.34503000", + "longitude": "6.83041000" + }, + { + "id": "18607", + "name": "Troistorrents", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.22890000", + "longitude": "6.91589000" + }, + { + "id": "18615", + "name": "Turtmann", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.30028000", + "longitude": "7.70200000" + }, + { + "id": "18662", + "name": "Varen", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31860000", + "longitude": "7.60743000" + }, + { + "id": "18697", + "name": "Vétroz", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.22171000", + "longitude": "7.27858000" + }, + { + "id": "18668", + "name": "Verbier", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.10020000", + "longitude": "7.22651000" + }, + { + "id": "18669", + "name": "Vernayaz", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.13667000", + "longitude": "7.03906000" + }, + { + "id": "18675", + "name": "Vex", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.21239000", + "longitude": "7.39826000" + }, + { + "id": "18686", + "name": "Vionnaz", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31101000", + "longitude": "6.90062000" + }, + { + "id": "18687", + "name": "Visp", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.29370000", + "longitude": "7.88149000" + }, + { + "id": "18688", + "name": "Visp District", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17612000", + "longitude": "7.85609000" + }, + { + "id": "18689", + "name": "Visperterminen", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25899000", + "longitude": "7.90192000" + }, + { + "id": "18694", + "name": "Vouvry", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.33746000", + "longitude": "6.88950000" + }, + { + "id": "18793", + "name": "Zermatt", + "state_id": 1648, + "state_code": "VS", + "country_id": 214, + "country_code": "CH", + "latitude": "46.01998000", + "longitude": "7.74863000" + }, + { + "id": "17381", + "name": "Aigle", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31810000", + "longitude": "6.96457000" + }, + { + "id": "17382", + "name": "Aigle District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.30577000", + "longitude": "7.02974000" + }, + { + "id": "17401", + "name": "Apples", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.55237000", + "longitude": "6.42889000" + }, + { + "id": "17412", + "name": "Arzier", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.45962000", + "longitude": "6.20813000" + }, + { + "id": "17422", + "name": "Aubonne", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.49514000", + "longitude": "6.39155000" + }, + { + "id": "17425", + "name": "Avenches", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.88004000", + "longitude": "7.04071000" + }, + { + "id": "17436", + "name": "Ballens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.55485000", + "longitude": "6.37310000" + }, + { + "id": "17446", + "name": "Bavois", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.68403000", + "longitude": "6.56710000" + }, + { + "id": "17449", + "name": "Begnins", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.44152000", + "longitude": "6.24762000" + }, + { + "id": "17455", + "name": "Belmont-sur-Lausanne", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.51891000", + "longitude": "6.67636000" + }, + { + "id": "17465", + "name": "Berolle", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.55798000", + "longitude": "6.33551000" + }, + { + "id": "17470", + "name": "Bex", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.24965000", + "longitude": "7.00980000" + }, + { + "id": "17539", + "name": "Bière", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53761000", + "longitude": "6.33362000" + }, + { + "id": "17543", + "name": "Blécherette", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53932000", + "longitude": "6.62227000" + }, + { + "id": "17541", + "name": "Blonay", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.46778000", + "longitude": "6.89615000" + }, + { + "id": "17551", + "name": "Bottens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.61596000", + "longitude": "6.66149000" + }, + { + "id": "17569", + "name": "Broye-Vully District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.78082000", + "longitude": "6.90161000" + }, + { + "id": "17586", + "name": "Bussigny", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.55110000", + "longitude": "6.55597000" + }, + { + "id": "17616", + "name": "Caux", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.43241000", + "longitude": "6.93855000" + }, + { + "id": "17626", + "name": "Chardonne", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47676000", + "longitude": "6.82680000" + }, + { + "id": "17629", + "name": "Chavannes", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53005000", + "longitude": "6.57068000" + }, + { + "id": "17630", + "name": "Chavannes-le-Veyron", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60700000", + "longitude": "6.45086000" + }, + { + "id": "17631", + "name": "Chavornay", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.70244000", + "longitude": "6.56940000" + }, + { + "id": "17640", + "name": "Château-d'Oex", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47455000", + "longitude": "7.13155000" + }, + { + "id": "17633", + "name": "Cheseaux", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.58624000", + "longitude": "6.60587000" + }, + { + "id": "17634", + "name": "Chevilly", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.64272000", + "longitude": "6.47661000" + }, + { + "id": "17635", + "name": "Chexbres", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.48208000", + "longitude": "6.77805000" + }, + { + "id": "17647", + "name": "Colombier", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.55709000", + "longitude": "6.47284000" + }, + { + "id": "17652", + "name": "Coppet", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31682000", + "longitude": "6.19114000" + }, + { + "id": "17658", + "name": "Cossonay", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.61443000", + "longitude": "6.50631000" + }, + { + "id": "17668", + "name": "Crissier", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.54586000", + "longitude": "6.57567000" + }, + { + "id": "17669", + "name": "Cuarnens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.62545000", + "longitude": "6.43713000" + }, + { + "id": "17672", + "name": "Cully", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.48892000", + "longitude": "6.72945000" + }, + { + "id": "17721", + "name": "Echallens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.64130000", + "longitude": "6.63317000" + }, + { + "id": "17722", + "name": "Ecublens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.52899000", + "longitude": "6.56261000" + }, + { + "id": "17756", + "name": "Epalinges", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.54896000", + "longitude": "6.66831000" + }, + { + "id": "17785", + "name": "Ferreyres", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.65804000", + "longitude": "6.48520000" + }, + { + "id": "17800", + "name": "Founex", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.33277000", + "longitude": "6.19243000" + }, + { + "id": "17811", + "name": "Froideville", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60123000", + "longitude": "6.68085000" + }, + { + "id": "17826", + "name": "Genolier", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.43537000", + "longitude": "6.21809000" + }, + { + "id": "17833", + "name": "Gimel", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.50945000", + "longitude": "6.30736000" + }, + { + "id": "17838", + "name": "Gland", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.42082000", + "longitude": "6.27010000" + }, + { + "id": "17860", + "name": "Grancy", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.59214000", + "longitude": "6.46391000" + }, + { + "id": "17862", + "name": "Grandson", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.80946000", + "longitude": "6.64600000" + }, + { + "id": "17872", + "name": "Gros-de-Vaud District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.65180000", + "longitude": "6.65728000" + }, + { + "id": "17878", + "name": "Gryon", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.27377000", + "longitude": "7.05975000" + }, + { + "id": "17961", + "name": "Jongny", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47883000", + "longitude": "6.84114000" + }, + { + "id": "17964", + "name": "Jura-Nord vaudois District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.72981000", + "longitude": "6.45429000" + }, + { + "id": "18026", + "name": "La Sarraz", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.65863000", + "longitude": "6.51077000" + }, + { + "id": "18027", + "name": "La Tour-de-Peilz", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.45312000", + "longitude": "6.85856000" + }, + { + "id": "18048", + "name": "Lausanne", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.51600000", + "longitude": "6.63282000" + }, + { + "id": "18049", + "name": "Lausanne District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.52131000", + "longitude": "6.63334000" + }, + { + "id": "18052", + "name": "Lavaux-Oron District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53618000", + "longitude": "6.77086000" + }, + { + "id": "18054", + "name": "Le Chenit", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60688000", + "longitude": "6.23062000" + }, + { + "id": "18059", + "name": "Le Mont-sur-Lausanne", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.55815000", + "longitude": "6.63145000" + }, + { + "id": "18061", + "name": "Le Vaud", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47753000", + "longitude": "6.23603000" + }, + { + "id": "18079", + "name": "Leysin", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.34183000", + "longitude": "7.01151000" + }, + { + "id": "18094", + "name": "Lucens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.70854000", + "longitude": "6.83931000" + }, + { + "id": "18104", + "name": "Lutry", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.50241000", + "longitude": "6.68647000" + }, + { + "id": "18137", + "name": "Mauraz", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60558000", + "longitude": "6.42074000" + }, + { + "id": "18161", + "name": "Mollens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.57760000", + "longitude": "6.36320000" + }, + { + "id": "18164", + "name": "Montagny", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.79289000", + "longitude": "6.61222000" + }, + { + "id": "18169", + "name": "Montreux", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.43301000", + "longitude": "6.91143000" + }, + { + "id": "18171", + "name": "Morges", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.51127000", + "longitude": "6.49854000" + }, + { + "id": "18172", + "name": "Morges District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53578000", + "longitude": "6.48662000" + }, + { + "id": "18174", + "name": "Moudon", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.66758000", + "longitude": "6.79781000" + }, + { + "id": "18233", + "name": "Nyon", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.38318000", + "longitude": "6.23955000" + }, + { + "id": "18234", + "name": "Nyon District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.42004000", + "longitude": "6.22177000" + }, + { + "id": "18282", + "name": "Ollon", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.29524000", + "longitude": "6.99314000" + }, + { + "id": "18286", + "name": "Orbe", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.72504000", + "longitude": "6.53069000" + }, + { + "id": "18288", + "name": "Oron-la-Ville", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.57094000", + "longitude": "6.82557000" + }, + { + "id": "18295", + "name": "Ouest Lausannois District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.54589000", + "longitude": "6.56995000" + }, + { + "id": "18296", + "name": "Pailly", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.70123000", + "longitude": "6.67540000" + }, + { + "id": "18297", + "name": "Palézieux", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.54191000", + "longitude": "6.83989000" + }, + { + "id": "18298", + "name": "Pampigny", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.58093000", + "longitude": "6.42941000" + }, + { + "id": "18299", + "name": "Paudex", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.50548000", + "longitude": "6.66819000" + }, + { + "id": "18300", + "name": "Payerne", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.82192000", + "longitude": "6.93817000" + }, + { + "id": "18301", + "name": "Penthalaz", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.61077000", + "longitude": "6.52519000" + }, + { + "id": "18302", + "name": "Penthéréaz", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.68171000", + "longitude": "6.60390000" + }, + { + "id": "18303", + "name": "Perroy", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.46690000", + "longitude": "6.35349000" + }, + { + "id": "18317", + "name": "Pompaples", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.66699000", + "longitude": "6.50966000" + }, + { + "id": "18322", + "name": "Prangins", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.39518000", + "longitude": "6.24960000" + }, + { + "id": "18327", + "name": "Préverenges", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.51854000", + "longitude": "6.52682000" + }, + { + "id": "18326", + "name": "Prilly", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53698000", + "longitude": "6.60456000" + }, + { + "id": "18328", + "name": "Puidoux", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.50093000", + "longitude": "6.78249000" + }, + { + "id": "18329", + "name": "Pully", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.51027000", + "longitude": "6.66183000" + }, + { + "id": "18364", + "name": "Renens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53989000", + "longitude": "6.58810000" + }, + { + "id": "18380", + "name": "Riviera-Pays-d'Enhaut District", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.46459000", + "longitude": "6.88499000" + }, + { + "id": "18386", + "name": "Rolle", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.45820000", + "longitude": "6.33499000" + }, + { + "id": "18387", + "name": "Romanel-sur-Lausanne", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.56403000", + "longitude": "6.60538000" + }, + { + "id": "18424", + "name": "Saint-Cergue", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.44590000", + "longitude": "6.15737000" + }, + { + "id": "18426", + "name": "Saint-Livres", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.50794000", + "longitude": "6.38753000" + }, + { + "id": "18430", + "name": "Saint-Prex", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47963000", + "longitude": "6.45992000" + }, + { + "id": "18431", + "name": "Sainte-Croix", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.82203000", + "longitude": "6.50283000" + }, + { + "id": "18450", + "name": "Saubraz", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.51606000", + "longitude": "6.33018000" + }, + { + "id": "18451", + "name": "Savigny", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53844000", + "longitude": "6.73222000" + }, + { + "id": "18531", + "name": "Sottens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.65521000", + "longitude": "6.74197000" + }, + { + "id": "18611", + "name": "Trélex", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.41538000", + "longitude": "6.20813000" + }, + { + "id": "18659", + "name": "Vallorbe", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.71256000", + "longitude": "6.37894000" + }, + { + "id": "18673", + "name": "Vevey", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.46299000", + "longitude": "6.84345000" + }, + { + "id": "18680", + "name": "Villars-sur-Ollon", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.29832000", + "longitude": "7.05631000" + }, + { + "id": "18682", + "name": "Villeneuve", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.39869000", + "longitude": "6.92654000" + }, + { + "id": "18696", + "name": "Vuarrens", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.68578000", + "longitude": "6.64793000" + }, + { + "id": "18790", + "name": "Yverdon-les-Bains", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.77852000", + "longitude": "6.64115000" + }, + { + "id": "18791", + "name": "Yvonand", + "state_id": 1651, + "state_code": "VD", + "country_id": 214, + "country_code": "CH", + "latitude": "46.80034000", + "longitude": "6.74249000" + }, + { + "id": "17364", + "name": "Adliswil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30997000", + "longitude": "8.52462000" + }, + { + "id": "17365", + "name": "Adliswil \/ Adliswil (Stadtkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31128000", + "longitude": "8.52675000" + }, + { + "id": "17366", + "name": "Adliswil \/ Hündli-Zopf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31637000", + "longitude": "8.51888000" + }, + { + "id": "17367", + "name": "Adliswil \/ Oberleimbach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32020000", + "longitude": "8.51508000" + }, + { + "id": "17368", + "name": "Adliswil \/ Sonnenberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30958000", + "longitude": "8.52055000" + }, + { + "id": "17369", + "name": "Adliswil \/ Sood", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31870000", + "longitude": "8.52425000" + }, + { + "id": "17370", + "name": "Adliswil \/ Tal", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31142000", + "longitude": "8.53446000" + }, + { + "id": "17372", + "name": "Aesch", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32970000", + "longitude": "8.65410000" + }, + { + "id": "17375", + "name": "Affoltern \/ Hasenbüel", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27324000", + "longitude": "8.45218000" + }, + { + "id": "17376", + "name": "Affoltern \/ Oberdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27852000", + "longitude": "8.45651000" + }, + { + "id": "17377", + "name": "Affoltern \/ Sonnenberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28055000", + "longitude": "8.46008000" + }, + { + "id": "17378", + "name": "Affoltern \/ Unterdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28277000", + "longitude": "8.45409000" + }, + { + "id": "17379", + "name": "Affoltern am Albis", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27743000", + "longitude": "8.45128000" + }, + { + "id": "17396", + "name": "Andelfingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.59447000", + "longitude": "8.67826000" + }, + { + "id": "17418", + "name": "Au", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24185000", + "longitude": "8.64406000" + }, + { + "id": "17420", + "name": "Au \/ Mittel-Dorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24303000", + "longitude": "8.64591000" + }, + { + "id": "17421", + "name": "Au \/ Unter-Dorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24730000", + "longitude": "8.63270000" + }, + { + "id": "17429", + "name": "Bachenbülach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50317000", + "longitude": "8.54556000" + }, + { + "id": "17443", + "name": "Bassersdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44342000", + "longitude": "8.62851000" + }, + { + "id": "17445", + "name": "Bauma", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36745000", + "longitude": "8.87905000" + }, + { + "id": "17591", + "name": "Bäretswil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33709000", + "longitude": "8.85645000" + }, + { + "id": "17598", + "name": "Bülach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52197000", + "longitude": "8.54049000" + }, + { + "id": "17599", + "name": "Bülach \/ Gstückt", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52337000", + "longitude": "8.54879000" + }, + { + "id": "17600", + "name": "Bülach \/ Seematt", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51716000", + "longitude": "8.54651000" + }, + { + "id": "17601", + "name": "Bülach \/ Soligänter", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52632000", + "longitude": "8.54106000" + }, + { + "id": "17457", + "name": "Benglen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36077000", + "longitude": "8.63687000" + }, + { + "id": "17472", + "name": "Bezirk Affoltern", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27311000", + "longitude": "8.47444000" + }, + { + "id": "17473", + "name": "Bezirk Andelfingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.61328000", + "longitude": "8.68124000" + }, + { + "id": "17479", + "name": "Bezirk Bülach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49706000", + "longitude": "8.56764000" + }, + { + "id": "17480", + "name": "Bezirk Dielsdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47181000", + "longitude": "8.45631000" + }, + { + "id": "17481", + "name": "Bezirk Dietikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38804000", + "longitude": "8.44260000" + }, + { + "id": "17488", + "name": "Bezirk Hinwil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29646000", + "longitude": "8.83431000" + }, + { + "id": "17489", + "name": "Bezirk Horgen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25767000", + "longitude": "8.59702000" + }, + { + "id": "17499", + "name": "Bezirk Meilen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27920000", + "longitude": "8.66259000" + }, + { + "id": "17504", + "name": "Bezirk Pfäffikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40905000", + "longitude": "8.77208000" + }, + { + "id": "17516", + "name": "Bezirk Uster", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34952000", + "longitude": "8.71353000" + }, + { + "id": "17520", + "name": "Bezirk Winterthur", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50781000", + "longitude": "8.76900000" + }, + { + "id": "17523", + "name": "Bezirk Zürich", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37110000", + "longitude": "8.54323000" + }, + { + "id": "17531", + "name": "Binz", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35635000", + "longitude": "8.62657000" + }, + { + "id": "17532", + "name": "Binzikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27632000", + "longitude": "8.75851000" + }, + { + "id": "17534", + "name": "Birchwil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45431000", + "longitude": "8.63477000" + }, + { + "id": "17535", + "name": "Birmensdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35515000", + "longitude": "8.44256000" + }, + { + "id": "17550", + "name": "Bonstetten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31505000", + "longitude": "8.46836000" + }, + { + "id": "17573", + "name": "Brütten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47318000", + "longitude": "8.67569000" + }, + { + "id": "17574", + "name": "Brüttisellen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42173000", + "longitude": "8.63263000" + }, + { + "id": "17576", + "name": "Bubikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26698000", + "longitude": "8.81790000" + }, + { + "id": "17673", + "name": "Dachsen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.66515000", + "longitude": "8.61790000" + }, + { + "id": "17706", + "name": "Dällikon \/ Dällikon (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43983000", + "longitude": "8.43813000" + }, + { + "id": "17707", + "name": "Dänikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44674000", + "longitude": "8.40648000" + }, + { + "id": "17709", + "name": "Dübendorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39724000", + "longitude": "8.61872000" + }, + { + "id": "17710", + "name": "Dübendorf \/ Kunklerstrasse", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40109000", + "longitude": "8.62724000" + }, + { + "id": "17711", + "name": "Dübendorf \/ Sonnenberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39469000", + "longitude": "8.63162000" + }, + { + "id": "17712", + "name": "Dübendorf \/ Vogelquartier", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39502000", + "longitude": "8.61184000" + }, + { + "id": "17713", + "name": "Dübendorf \/ Wasserfurren", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39352000", + "longitude": "8.60850000" + }, + { + "id": "17715", + "name": "Dürnten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27856000", + "longitude": "8.84156000" + }, + { + "id": "17685", + "name": "Dielsdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48146000", + "longitude": "8.45850000" + }, + { + "id": "17689", + "name": "Dietikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40165000", + "longitude": "8.40015000" + }, + { + "id": "17690", + "name": "Dietikon \/ Almend", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40477000", + "longitude": "8.39168000" + }, + { + "id": "17691", + "name": "Dietikon \/ Guggenbühl", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40009000", + "longitude": "8.40818000" + }, + { + "id": "17692", + "name": "Dietikon \/ Hofacker", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39718000", + "longitude": "8.41609000" + }, + { + "id": "17693", + "name": "Dietikon \/ Kreuzacker", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39919000", + "longitude": "8.40146000" + }, + { + "id": "17694", + "name": "Dietikon \/ Oberdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40065000", + "longitude": "8.39416000" + }, + { + "id": "17695", + "name": "Dietikon \/ Schönenwerd", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39706000", + "longitude": "8.42576000" + }, + { + "id": "17696", + "name": "Dietikon \/ Vorstadt", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40819000", + "longitude": "8.39719000" + }, + { + "id": "17697", + "name": "Dietlikon \/ Dietlikon (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41827000", + "longitude": "8.61880000" + }, + { + "id": "17698", + "name": "Dietlikon \/ Eichwiesen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41910000", + "longitude": "8.62078000" + }, + { + "id": "17703", + "name": "Dorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23900000", + "longitude": "8.73567000" + }, + { + "id": "17719", + "name": "Ebmatingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34987000", + "longitude": "8.64013000" + }, + { + "id": "17724", + "name": "Effretikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42575000", + "longitude": "8.69094000" + }, + { + "id": "17725", + "name": "Effretikon \/ Rappenhalde-Bannhalde", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42388000", + "longitude": "8.69653000" + }, + { + "id": "17726", + "name": "Effretikon \/ Rikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43099000", + "longitude": "8.68624000" + }, + { + "id": "17727", + "name": "Effretikon \/ Watt", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42797000", + "longitude": "8.69822000" + }, + { + "id": "17729", + "name": "Egg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29976000", + "longitude": "8.69032000" + }, + { + "id": "17739", + "name": "Elgg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49715000", + "longitude": "8.86523000" + }, + { + "id": "17740", + "name": "Elgg \/ Städtchen und Umgebung", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49265000", + "longitude": "8.86680000" + }, + { + "id": "17741", + "name": "Elsau-Räterschen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50238000", + "longitude": "8.79874000" + }, + { + "id": "17742", + "name": "Elsau-Räterschen \/ Räterschen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49927000", + "longitude": "8.79600000" + }, + { + "id": "17743", + "name": "Embrach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50561000", + "longitude": "8.59406000" + }, + { + "id": "17744", + "name": "Embrach \/ Embrach (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50400000", + "longitude": "8.59477000" + }, + { + "id": "17745", + "name": "Embrach \/ Kellersacker", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51455000", + "longitude": "8.59146000" + }, + { + "id": "17761", + "name": "Erlenbach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30298000", + "longitude": "8.59743000" + }, + { + "id": "17762", + "name": "Erlenbach \/ links des Dorfbachs oberhalb Bahnlinie", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29950000", + "longitude": "8.60188000" + }, + { + "id": "17763", + "name": "Erlenbach \/ rechts des Dorfbachs oberhalb Bahnlinie", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30658000", + "longitude": "8.60271000" + }, + { + "id": "17773", + "name": "Esslingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28325000", + "longitude": "8.71038000" + }, + { + "id": "17816", + "name": "Fällanden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37169000", + "longitude": "8.63869000" + }, + { + "id": "17781", + "name": "Fehraltorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38775000", + "longitude": "8.75149000" + }, + { + "id": "17782", + "name": "Feldmeilen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27873000", + "longitude": "8.62165000" + }, + { + "id": "17786", + "name": "Feuerthalen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.69054000", + "longitude": "8.64357000" + }, + { + "id": "17795", + "name": "Flurlingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.68390000", + "longitude": "8.62995000" + }, + { + "id": "17807", + "name": "Freienstein", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53307000", + "longitude": "8.58455000" + }, + { + "id": "17823", + "name": "Gattikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28439000", + "longitude": "8.54830000" + }, + { + "id": "17829", + "name": "Geroldswil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42213000", + "longitude": "8.41085000" + }, + { + "id": "17840", + "name": "Glattbrugg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43130000", + "longitude": "8.56272000" + }, + { + "id": "17841", + "name": "Glattbrugg \/ Rohr\/Platten-Balsberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43721000", + "longitude": "8.56642000" + }, + { + "id": "17842", + "name": "Glattbrugg \/ Wydacker\/Bettacker\/Lättenwiesen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42908000", + "longitude": "8.56657000" + }, + { + "id": "17843", + "name": "Glattfelden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.55871000", + "longitude": "8.50167000" + }, + { + "id": "17846", + "name": "Gockhausen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38098000", + "longitude": "8.59978000" + }, + { + "id": "17857", + "name": "Gossau", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30510000", + "longitude": "8.75831000" + }, + { + "id": "17883", + "name": "Grüt", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31151000", + "longitude": "8.78339000" + }, + { + "id": "17864", + "name": "Greifensee", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36717000", + "longitude": "8.68115000" + }, + { + "id": "17865", + "name": "Greifensee \/ Müllerwis \/ Seilerwis", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37042000", + "longitude": "8.68151000" + }, + { + "id": "17866", + "name": "Greifensee \/ Pfisterhölzli", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36430000", + "longitude": "8.68979000" + }, + { + "id": "17873", + "name": "Grossacker\/Opfikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42696000", + "longitude": "8.57886000" + }, + { + "id": "17888", + "name": "Gutenswil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38387000", + "longitude": "8.71763000" + }, + { + "id": "17891", + "name": "Hadlikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28750000", + "longitude": "8.85719000" + }, + { + "id": "17896", + "name": "Hausen am Albis \/ Hausen (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24496000", + "longitude": "8.53299000" + }, + { + "id": "17943", + "name": "Höri", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50799000", + "longitude": "8.51203000" + }, + { + "id": "17897", + "name": "Hedingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29794000", + "longitude": "8.44833000" + }, + { + "id": "17898", + "name": "Hegnau", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39227000", + "longitude": "8.66988000" + }, + { + "id": "17899", + "name": "Hegnau \/ Dammboden-Grindel", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38713000", + "longitude": "8.66657000" + }, + { + "id": "17900", + "name": "Hegnau \/ Sunnebüel-Eich", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39246000", + "longitude": "8.67910000" + }, + { + "id": "17905", + "name": "Henggart", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.56272000", + "longitude": "8.68215000" + }, + { + "id": "17909", + "name": "Herrliberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29064000", + "longitude": "8.61464000" + }, + { + "id": "17911", + "name": "Hettlingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54610000", + "longitude": "8.70532000" + }, + { + "id": "17916", + "name": "Hinteregg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30736000", + "longitude": "8.68339000" + }, + { + "id": "17918", + "name": "Hinwil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29426000", + "longitude": "8.84393000" + }, + { + "id": "17919", + "name": "Hittnau \/ Hittnau (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36334000", + "longitude": "8.82418000" + }, + { + "id": "17923", + "name": "Hochfelden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52262000", + "longitude": "8.51564000" + }, + { + "id": "17925", + "name": "Hofstetten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47778000", + "longitude": "8.50646000" + }, + { + "id": "17927", + "name": "Hombrechtikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25298000", + "longitude": "8.77212000" + }, + { + "id": "17929", + "name": "Horgen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25983000", + "longitude": "8.59778000" + }, + { + "id": "17930", + "name": "Horgen \/ Allmend", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24729000", + "longitude": "8.60660000" + }, + { + "id": "17931", + "name": "Horgen \/ Horgen (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25604000", + "longitude": "8.60159000" + }, + { + "id": "17932", + "name": "Horgen \/ Oberdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25837000", + "longitude": "8.59013000" + }, + { + "id": "17933", + "name": "Horgen \/ Scheller-Stockerstrasse", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26584000", + "longitude": "8.58760000" + }, + { + "id": "17949", + "name": "Illnau", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41130000", + "longitude": "8.72125000" + }, + { + "id": "17950", + "name": "Illnau \/ Unter-Illnau", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40787000", + "longitude": "8.72607000" + }, + { + "id": "18013", + "name": "Küsnacht", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31805000", + "longitude": "8.58401000" + }, + { + "id": "18014", + "name": "Küsnacht \/ Dorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31783000", + "longitude": "8.58303000" + }, + { + "id": "18015", + "name": "Küsnacht \/ Goldbach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32729000", + "longitude": "8.58077000" + }, + { + "id": "18016", + "name": "Küsnacht \/ Heslibach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31307000", + "longitude": "8.58849000" + }, + { + "id": "18017", + "name": "Küsnacht \/ Itschnach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32714000", + "longitude": "8.60068000" + }, + { + "id": "18018", + "name": "Küsnacht \/ Schiedhalden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32112000", + "longitude": "8.58881000" + }, + { + "id": "17975", + "name": "Kilchberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32438000", + "longitude": "8.54548000" + }, + { + "id": "17976", + "name": "Kilchberg \/ Bächler-Stocken", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32728000", + "longitude": "8.53957000" + }, + { + "id": "17977", + "name": "Kilchberg \/ Kilchberg (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32012000", + "longitude": "8.54306000" + }, + { + "id": "17979", + "name": "Kindhausen \/ Kindhausen (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40644000", + "longitude": "8.68296000" + }, + { + "id": "17983", + "name": "Kleinandelfingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.60058000", + "longitude": "8.68362000" + }, + { + "id": "17987", + "name": "Kloten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45152000", + "longitude": "8.58491000" + }, + { + "id": "17988", + "name": "Kloten \/ Balsberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44233000", + "longitude": "8.57496000" + }, + { + "id": "17989", + "name": "Kloten \/ Freienberg (Chanzler-Chlini Chaseren)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46584000", + "longitude": "8.58145000" + }, + { + "id": "17990", + "name": "Kloten \/ Geissberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45424000", + "longitude": "8.59066000" + }, + { + "id": "17991", + "name": "Kloten \/ Holberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44642000", + "longitude": "8.57661000" + }, + { + "id": "17992", + "name": "Kloten \/ Horainli", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45399000", + "longitude": "8.58306000" + }, + { + "id": "17993", + "name": "Kloten \/ Hostrass", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45255000", + "longitude": "8.59464000" + }, + { + "id": "17994", + "name": "Kloten \/ Kloten (Zentrum)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45134000", + "longitude": "8.58683000" + }, + { + "id": "17995", + "name": "Kloten \/ Rütlen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44726000", + "longitude": "8.58808000" + }, + { + "id": "17996", + "name": "Kloten \/ Spitz", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44455000", + "longitude": "8.58724000" + }, + { + "id": "17997", + "name": "Knonau", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22350000", + "longitude": "8.46197000" + }, + { + "id": "18000", + "name": "Kollbrunn", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45793000", + "longitude": "8.78295000" + }, + { + "id": "18001", + "name": "Kollbrunn \/ Kollbrunn (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45748000", + "longitude": "8.77413000" + }, + { + "id": "18038", + "name": "Langnau \/ Langnau (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28643000", + "longitude": "8.53627000" + }, + { + "id": "18039", + "name": "Langnau \/ Vitaquartier", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29377000", + "longitude": "8.53758000" + }, + { + "id": "18040", + "name": "Langnau am Albis", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28885000", + "longitude": "8.54110000" + }, + { + "id": "18124", + "name": "Marthalen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.62913000", + "longitude": "8.65326000" + }, + { + "id": "18130", + "name": "Mattenbach (Kreis 7)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48705000", + "longitude": "8.74681000" + }, + { + "id": "18131", + "name": "Mattenbach (Kreis 7) \/ Deutweg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49419000", + "longitude": "8.73948000" + }, + { + "id": "18132", + "name": "Mattenbach (Kreis 7) \/ Endliker", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48821000", + "longitude": "8.74938000" + }, + { + "id": "18133", + "name": "Mattenbach (Kreis 7) \/ Gutschick", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49104000", + "longitude": "8.75258000" + }, + { + "id": "18186", + "name": "Männedorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25686000", + "longitude": "8.69893000" + }, + { + "id": "18187", + "name": "Männedorf \/ Ausserfeld", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24636000", + "longitude": "8.70608000" + }, + { + "id": "18188", + "name": "Männedorf \/ Dorfkern", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25612000", + "longitude": "8.69161000" + }, + { + "id": "18192", + "name": "Mönchaltorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30958000", + "longitude": "8.72029000" + }, + { + "id": "18193", + "name": "Mönchaltorf \/ Dorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30401000", + "longitude": "8.72211000" + }, + { + "id": "18196", + "name": "Mühlehalde", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28306000", + "longitude": "8.53386000" + }, + { + "id": "18140", + "name": "Meilen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27232000", + "longitude": "8.64617000" + }, + { + "id": "18157", + "name": "Mettmenstetten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24529000", + "longitude": "8.46347000" + }, + { + "id": "18236", + "name": "Nänikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36975000", + "longitude": "8.68894000" + }, + { + "id": "18237", + "name": "Nänikon \/ Nänikon (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37099000", + "longitude": "8.69254000" + }, + { + "id": "18238", + "name": "Nürensdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44814000", + "longitude": "8.64908000" + }, + { + "id": "18209", + "name": "Neerach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51096000", + "longitude": "8.47099000" + }, + { + "id": "18210", + "name": "Neftenbach \/ Dorf Neftenbach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52764000", + "longitude": "8.66490000" + }, + { + "id": "18222", + "name": "Niederglatt", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49066000", + "longitude": "8.49987000" + }, + { + "id": "18223", + "name": "Niederglatt \/ Niederglatt (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49065000", + "longitude": "8.50048000" + }, + { + "id": "18225", + "name": "Niederhasli", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48012000", + "longitude": "8.48576000" + }, + { + "id": "18246", + "name": "Oberengstringen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40841000", + "longitude": "8.46515000" + }, + { + "id": "18247", + "name": "Oberengstringen \/ Rauchacher", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40919000", + "longitude": "8.45627000" + }, + { + "id": "18248", + "name": "Oberengstringen \/ Sonnenberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41211000", + "longitude": "8.46055000" + }, + { + "id": "18249", + "name": "Oberengstringen \/ Zentrum", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40711000", + "longitude": "8.46276000" + }, + { + "id": "18251", + "name": "Oberglatt", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47576000", + "longitude": "8.51896000" + }, + { + "id": "18252", + "name": "Oberglatt \/ Bahnhofquartier", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47143000", + "longitude": "8.51289000" + }, + { + "id": "18253", + "name": "Oberglatt \/ Oberglatt (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47596000", + "longitude": "8.51929000" + }, + { + "id": "18258", + "name": "Obermeilen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26574000", + "longitude": "8.65567000" + }, + { + "id": "18259", + "name": "Oberrieden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27444000", + "longitude": "8.57838000" + }, + { + "id": "18260", + "name": "Oberrieden \/ Berg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27628000", + "longitude": "8.57257000" + }, + { + "id": "18261", + "name": "Oberrieden \/ Mitte", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27242000", + "longitude": "8.58021000" + }, + { + "id": "18271", + "name": "Oberwinterthur (Kreis 2)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51692000", + "longitude": "8.76863000" + }, + { + "id": "18272", + "name": "Oberwinterthur (Kreis 2) \/ Guggenbühl", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51339000", + "longitude": "8.75998000" + }, + { + "id": "18273", + "name": "Oberwinterthur (Kreis 2) \/ Hegi", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50716000", + "longitude": "8.77057000" + }, + { + "id": "18274", + "name": "Oberwinterthur (Kreis 2) \/ Talacker", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50596000", + "longitude": "8.75150000" + }, + { + "id": "18275", + "name": "Oberwinterthur (Kreis 2) \/ Zinzikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51950000", + "longitude": "8.75640000" + }, + { + "id": "18276", + "name": "Obfelden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26413000", + "longitude": "8.42150000" + }, + { + "id": "18277", + "name": "Obfelden \/ Oberlunnern", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26197000", + "longitude": "8.41588000" + }, + { + "id": "18278", + "name": "Obfelden \/ Toussen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26574000", + "longitude": "8.43013000" + }, + { + "id": "18280", + "name": "Oetwil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27049000", + "longitude": "8.72023000" + }, + { + "id": "18285", + "name": "Opfikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43169000", + "longitude": "8.57588000" + }, + { + "id": "18292", + "name": "Otelfingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46053000", + "longitude": "8.39141000" + }, + { + "id": "18294", + "name": "Ottenbach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28228000", + "longitude": "8.40432000" + }, + { + "id": "18305", + "name": "Pfaffhausen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36476000", + "longitude": "8.62375000" + }, + { + "id": "18311", + "name": "Pfäffikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36453000", + "longitude": "8.79202000" + }, + { + "id": "18312", + "name": "Pfäffikon \/ Irgenhausen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36240000", + "longitude": "8.79265000" + }, + { + "id": "18313", + "name": "Pfäffikon \/ Pfäffikon (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36943000", + "longitude": "8.78309000" + }, + { + "id": "18308", + "name": "Pfungen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51394000", + "longitude": "8.64230000" + }, + { + "id": "18335", + "name": "Rafz", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.60438000", + "longitude": "8.54305000" + }, + { + "id": "18406", + "name": "Rümlang", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45041000", + "longitude": "8.52993000" + }, + { + "id": "18407", + "name": "Rümlang \/ Rümlang (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44940000", + "longitude": "8.53255000" + }, + { + "id": "18409", + "name": "Rüschlikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.30688000", + "longitude": "8.55135000" + }, + { + "id": "18411", + "name": "Rüti", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25603000", + "longitude": "8.85552000" + }, + { + "id": "18412", + "name": "Rüti \/ Dorfzentrum, Südl. Teil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25368000", + "longitude": "8.85654000" + }, + { + "id": "18413", + "name": "Rüti \/ Oberdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25894000", + "longitude": "8.86512000" + }, + { + "id": "18414", + "name": "Rüti \/ Westlicher Dorfteil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25548000", + "longitude": "8.84490000" + }, + { + "id": "18344", + "name": "Regensdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43410000", + "longitude": "8.46874000" + }, + { + "id": "18345", + "name": "Regensdorf \/ Feldblumen-Riedthofstrasse", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43618000", + "longitude": "8.46659000" + }, + { + "id": "18346", + "name": "Regensdorf \/ Hofacher-Geeren", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43525000", + "longitude": "8.46240000" + }, + { + "id": "18347", + "name": "Regensdorf \/ Obstgarten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42772000", + "longitude": "8.46566000" + }, + { + "id": "18369", + "name": "Richterswil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20622000", + "longitude": "8.69686000" + }, + { + "id": "18370", + "name": "Richterswil \/ Burghalde", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20973000", + "longitude": "8.69133000" + }, + { + "id": "18371", + "name": "Richterswil \/ Dorfkern", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20715000", + "longitude": "8.70607000" + }, + { + "id": "18372", + "name": "Richterswil \/ Richterswil (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20323000", + "longitude": "8.70516000" + }, + { + "id": "18391", + "name": "Rorbas", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53092000", + "longitude": "8.57555000" + }, + { + "id": "18400", + "name": "Russikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39669000", + "longitude": "8.77515000" + }, + { + "id": "18436", + "name": "Samstagern", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19167000", + "longitude": "8.68196000" + }, + { + "id": "18454", + "name": "Schachen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32419000", + "longitude": "8.47251000" + }, + { + "id": "18465", + "name": "Schlieren", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39668000", + "longitude": "8.44763000" + }, + { + "id": "18466", + "name": "Schlieren \/ Boden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39721000", + "longitude": "8.45734000" + }, + { + "id": "18467", + "name": "Schlieren \/ Engstingerquartier", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40338000", + "longitude": "8.44352000" + }, + { + "id": "18468", + "name": "Schlieren \/ Freiestrasse", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39598000", + "longitude": "8.44202000" + }, + { + "id": "18469", + "name": "Schlieren \/ Kamp", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39358000", + "longitude": "8.44453000" + }, + { + "id": "18470", + "name": "Schlieren \/ Spital", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39489000", + "longitude": "8.43027000" + }, + { + "id": "18471", + "name": "Schlieren \/ Zentrum", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39779000", + "longitude": "8.44770000" + }, + { + "id": "18478", + "name": "Schwerzenbach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38213000", + "longitude": "8.65727000" + }, + { + "id": "18479", + "name": "Schwerzenbach \/ Blatten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38308000", + "longitude": "8.64954000" + }, + { + "id": "18480", + "name": "Schwerzenbach \/ Chimli", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38592000", + "longitude": "8.65888000" + }, + { + "id": "18495", + "name": "Seen (Kreis 3)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47646000", + "longitude": "8.76996000" + }, + { + "id": "18496", + "name": "Seen (Kreis 3) \/ Büelwiesen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48446000", + "longitude": "8.76517000" + }, + { + "id": "18497", + "name": "Seen (Kreis 3) \/ Ganzenbühl", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48100000", + "longitude": "8.76249000" + }, + { + "id": "18498", + "name": "Seen (Kreis 3) \/ Oberseen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48205000", + "longitude": "8.77289000" + }, + { + "id": "18499", + "name": "Seen (Kreis 3) \/ Waldegg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48393000", + "longitude": "8.75586000" + }, + { + "id": "18500", + "name": "Seen (Kreis 3) \/ Waser", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48913000", + "longitude": "8.76034000" + }, + { + "id": "18503", + "name": "Seglingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.57244000", + "longitude": "8.52093000" + }, + { + "id": "18504", + "name": "Sellenbüren", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34361000", + "longitude": "8.48301000" + }, + { + "id": "18512", + "name": "Seuzach \/ Seuzach (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53545000", + "longitude": "8.73728000" + }, + { + "id": "18513", + "name": "Seuzach Dorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53560000", + "longitude": "8.73209000" + }, + { + "id": "18514", + "name": "Seuzach Dorf \/ Breite-Weid", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53345000", + "longitude": "8.73415000" + }, + { + "id": "18529", + "name": "Sonnhalde", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.45329000", + "longitude": "8.46091000" + }, + { + "id": "18537", + "name": "Stadt Winterthur (Kreis 1)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49494000", + "longitude": "8.71954000" + }, + { + "id": "18538", + "name": "Stadt Winterthur (Kreis 1) \/ Altstadt", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49951000", + "longitude": "8.72872000" + }, + { + "id": "18539", + "name": "Stadt Winterthur (Kreis 1) \/ Brühlberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49764000", + "longitude": "8.71272000" + }, + { + "id": "18540", + "name": "Stadt Winterthur (Kreis 1) \/ Heiligberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49409000", + "longitude": "8.72334000" + }, + { + "id": "18541", + "name": "Stadt Winterthur (Kreis 1) \/ Lind", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50571000", + "longitude": "8.73372000" + }, + { + "id": "18542", + "name": "Stadt Winterthur (Kreis 1) \/ Neuwiesen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50207000", + "longitude": "8.71625000" + }, + { + "id": "18543", + "name": "Stadt Winterthur (Kreis 1) \/ Tössfeld", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49340000", + "longitude": "8.71512000" + }, + { + "id": "18560", + "name": "Stäfa", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.24254000", + "longitude": "8.72342000" + }, + { + "id": "18555", + "name": "Steinmaur", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49710000", + "longitude": "8.45216000" + }, + { + "id": "18565", + "name": "Sulz", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53954000", + "longitude": "8.78887000" + }, + { + "id": "18571", + "name": "Tagelswangen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43070000", + "longitude": "8.67284000" + }, + { + "id": "18574", + "name": "Tann", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26898000", + "longitude": "8.85024000" + }, + { + "id": "18575", + "name": "Tann \/ Tann (Dorfkern)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26494000", + "longitude": "8.85048000" + }, + { + "id": "18618", + "name": "Töss (Kreis 4)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47890000", + "longitude": "8.70215000" + }, + { + "id": "18619", + "name": "Töss (Kreis 4) \/ Eichliacker", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48727000", + "longitude": "8.70740000" + }, + { + "id": "18620", + "name": "Töss (Kreis 4) \/ Schlosstal", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49279000", + "longitude": "8.70223000" + }, + { + "id": "18621", + "name": "Töss (Kreis 4) \/ Vorder-Dättnau", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.48135000", + "longitude": "8.69855000" + }, + { + "id": "18582", + "name": "Thalwil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29175000", + "longitude": "8.56351000" + }, + { + "id": "18583", + "name": "Thalwil \/ Berg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29178000", + "longitude": "8.55602000" + }, + { + "id": "18584", + "name": "Thalwil \/ Dorfkern", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29047000", + "longitude": "8.56633000" + }, + { + "id": "18585", + "name": "Thalwil \/ Nord", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29748000", + "longitude": "8.55634000" + }, + { + "id": "18587", + "name": "Thalwil \/ Süd", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.28495000", + "longitude": "8.56954000" + }, + { + "id": "18586", + "name": "Thalwil \/ See", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.29409000", + "longitude": "8.56929000" + }, + { + "id": "18613", + "name": "Turbenthal", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43633000", + "longitude": "8.84629000" + }, + { + "id": "18624", + "name": "Uerikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23672000", + "longitude": "8.75730000" + }, + { + "id": "18627", + "name": "Uetikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26441000", + "longitude": "8.67925000" + }, + { + "id": "18628", + "name": "Uetikon \/ Grossdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.26654000", + "longitude": "8.67765000" + }, + { + "id": "18629", + "name": "Uhwiesen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.67074000", + "longitude": "8.63542000" + }, + { + "id": "18630", + "name": "Uitikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36911000", + "longitude": "8.45699000" + }, + { + "id": "18631", + "name": "Unterengstringen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41396000", + "longitude": "8.44761000" + }, + { + "id": "18639", + "name": "Urdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38507000", + "longitude": "8.42581000" + }, + { + "id": "18640", + "name": "Urdorf \/ Bodenfeld", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38920000", + "longitude": "8.42265000" + }, + { + "id": "18641", + "name": "Urdorf \/ Moos", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38977000", + "longitude": "8.42886000" + }, + { + "id": "18642", + "name": "Urdorf \/ Oberurdorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38072000", + "longitude": "8.42343000" + }, + { + "id": "18645", + "name": "Uster", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34713000", + "longitude": "8.72091000" + }, + { + "id": "18646", + "name": "Uster \/ Gschwader", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36016000", + "longitude": "8.71390000" + }, + { + "id": "18647", + "name": "Uster \/ Kirch-Uster", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34579000", + "longitude": "8.71839000" + }, + { + "id": "18648", + "name": "Uster \/ Nieder-Uster", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34743000", + "longitude": "8.70088000" + }, + { + "id": "18649", + "name": "Uster \/ Nossikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34088000", + "longitude": "8.72555000" + }, + { + "id": "18650", + "name": "Uster \/ Ober-Uster", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34874000", + "longitude": "8.73319000" + }, + { + "id": "18665", + "name": "Veltheim (Kreis 5)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51419000", + "longitude": "8.71700000" + }, + { + "id": "18666", + "name": "Veltheim (Kreis 5) \/ Blumenau", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50618000", + "longitude": "8.71563000" + }, + { + "id": "18667", + "name": "Veltheim (Kreis 5) \/ Rosenberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51386000", + "longitude": "8.71583000" + }, + { + "id": "18691", + "name": "Volketswil \/ Volketswil (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39016000", + "longitude": "8.69085000" + }, + { + "id": "18709", + "name": "Wald", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.27595000", + "longitude": "8.91405000" + }, + { + "id": "18715", + "name": "Wallisellen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41499000", + "longitude": "8.59672000" + }, + { + "id": "18716", + "name": "Wallisellen \/ Rieden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41738000", + "longitude": "8.60028000" + }, + { + "id": "18717", + "name": "Wallisellen \/ Wallisellen-Ost", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41446000", + "longitude": "8.59727000" + }, + { + "id": "18718", + "name": "Wallisellen \/ Wallisellen-West", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41906000", + "longitude": "8.58586000" + }, + { + "id": "18722", + "name": "Wangen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41182000", + "longitude": "8.64516000" + }, + { + "id": "18773", + "name": "Wädenswil", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22683000", + "longitude": "8.66870000" + }, + { + "id": "18775", + "name": "Wädenswil \/ Büelen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23395000", + "longitude": "8.66346000" + }, + { + "id": "18774", + "name": "Wädenswil \/ Boller-Giessen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22115000", + "longitude": "8.68385000" + }, + { + "id": "18776", + "name": "Wädenswil \/ Dorf (Wädenswil)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22923000", + "longitude": "8.67220000" + }, + { + "id": "18777", + "name": "Wädenswil \/ Eichweid", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.21847000", + "longitude": "8.67440000" + }, + { + "id": "18778", + "name": "Wädenswil \/ Hangenmoos", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.23367000", + "longitude": "8.65251000" + }, + { + "id": "18779", + "name": "Wädenswil \/ Leihof-Mühlebach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22364000", + "longitude": "8.67149000" + }, + { + "id": "18780", + "name": "Wädenswil \/ Untermosen-Fuhr", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.22772000", + "longitude": "8.66303000" + }, + { + "id": "18783", + "name": "Wülflingen (Kreis 6)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51036000", + "longitude": "8.68333000" + }, + { + "id": "18784", + "name": "Wülflingen (Kreis 6) \/ Härti", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51262000", + "longitude": "8.68400000" + }, + { + "id": "18785", + "name": "Wülflingen (Kreis 6) \/ Lindenplatz", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51098000", + "longitude": "8.69290000" + }, + { + "id": "18786", + "name": "Wülflingen (Kreis 6) \/ Niederfeld", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50904000", + "longitude": "8.67968000" + }, + { + "id": "18787", + "name": "Wülflingen (Kreis 6) \/ Oberfeld", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49873000", + "longitude": "8.69897000" + }, + { + "id": "18732", + "name": "Weiningen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42022000", + "longitude": "8.43644000" + }, + { + "id": "18733", + "name": "Weisslingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.43063000", + "longitude": "8.76787000" + }, + { + "id": "18737", + "name": "Wettswil \/ Ausser-Dorf", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33197000", + "longitude": "8.47732000" + }, + { + "id": "18738", + "name": "Wettswil \/ Wettswil (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34152000", + "longitude": "8.47149000" + }, + { + "id": "18739", + "name": "Wetzikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32640000", + "longitude": "8.79779000" + }, + { + "id": "18740", + "name": "Wetzikon \/ Kempten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33319000", + "longitude": "8.80982000" + }, + { + "id": "18741", + "name": "Wetzikon \/ Ober-Wetzikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32514000", + "longitude": "8.80005000" + }, + { + "id": "18742", + "name": "Wetzikon \/ Robenhausen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33089000", + "longitude": "8.78762000" + }, + { + "id": "18743", + "name": "Wetzikon \/ Unter-Wetzikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.31637000", + "longitude": "8.79369000" + }, + { + "id": "18746", + "name": "Wiesendangen \/ Wiesendangen (Dorf)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52170000", + "longitude": "8.78967000" + }, + { + "id": "18750", + "name": "Wila", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41928000", + "longitude": "8.84524000" + }, + { + "id": "18758", + "name": "Winterthur", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.50564000", + "longitude": "8.72413000" + }, + { + "id": "18764", + "name": "Wolfhausen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.25619000", + "longitude": "8.79910000" + }, + { + "id": "18809", + "name": "Zürich", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36667000", + "longitude": "8.55000000" + }, + { + "id": "18810", + "name": "Zürich (Kreis 1)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37055000", + "longitude": "8.54177000" + }, + { + "id": "18811", + "name": "Zürich (Kreis 1) \/ City", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37269000", + "longitude": "8.53576000" + }, + { + "id": "18812", + "name": "Zürich (Kreis 1) \/ Lindenhof", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37188000", + "longitude": "8.54036000" + }, + { + "id": "18813", + "name": "Zürich (Kreis 1) \/ Rathaus", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37161000", + "longitude": "8.54501000" + }, + { + "id": "18814", + "name": "Zürich (Kreis 10)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40773000", + "longitude": "8.50050000" + }, + { + "id": "18815", + "name": "Zürich (Kreis 10) \/ Höngg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40313000", + "longitude": "8.49710000" + }, + { + "id": "18816", + "name": "Zürich (Kreis 10) \/ Rütihof", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41444000", + "longitude": "8.47928000" + }, + { + "id": "18817", + "name": "Zürich (Kreis 10) \/ Wipkingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39503000", + "longitude": "8.52529000" + }, + { + "id": "18818", + "name": "Zürich (Kreis 11)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42326000", + "longitude": "8.52166000" + }, + { + "id": "18819", + "name": "Zürich (Kreis 11) \/ Affoltern", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41814000", + "longitude": "8.51220000" + }, + { + "id": "18820", + "name": "Zürich (Kreis 11) \/ Oerlikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40823000", + "longitude": "8.54258000" + }, + { + "id": "18821", + "name": "Zürich (Kreis 11) \/ Schwandenholz", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42476000", + "longitude": "8.52125000" + }, + { + "id": "18822", + "name": "Zürich (Kreis 11) \/ Seebach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.42181000", + "longitude": "8.54779000" + }, + { + "id": "18823", + "name": "Zürich (Kreis 12)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40372000", + "longitude": "8.57608000" + }, + { + "id": "18824", + "name": "Zürich (Kreis 12) \/ Auzelg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41511000", + "longitude": "8.57014000" + }, + { + "id": "18825", + "name": "Zürich (Kreis 12) \/ Hirzenbach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40187000", + "longitude": "8.58633000" + }, + { + "id": "18826", + "name": "Zürich (Kreis 12) \/ Saatlen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41127000", + "longitude": "8.56480000" + }, + { + "id": "18827", + "name": "Zürich (Kreis 12) \/ Schwamendingen-Mitte", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.40630000", + "longitude": "8.57242000" + }, + { + "id": "18828", + "name": "Zürich (Kreis 2)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33756000", + "longitude": "8.52110000" + }, + { + "id": "18829", + "name": "Zürich (Kreis 2) \/ Enge", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36050000", + "longitude": "8.53127000" + }, + { + "id": "18830", + "name": "Zürich (Kreis 2) \/ Mittel-Leimbach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.32538000", + "longitude": "8.51391000" + }, + { + "id": "18831", + "name": "Zürich (Kreis 2) \/ Unter-Leimbach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33362000", + "longitude": "8.51433000" + }, + { + "id": "18832", + "name": "Zürich (Kreis 2) \/ Wollishofen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34010000", + "longitude": "8.53134000" + }, + { + "id": "18833", + "name": "Zürich (Kreis 3)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35785000", + "longitude": "8.50296000" + }, + { + "id": "18834", + "name": "Zürich (Kreis 3) \/ Alt-Wiedikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36201000", + "longitude": "8.51497000" + }, + { + "id": "18835", + "name": "Zürich (Kreis 3) \/ Friesenberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36372000", + "longitude": "8.50417000" + }, + { + "id": "18836", + "name": "Zürich (Kreis 3) \/ Sihlfeld", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37382000", + "longitude": "8.51164000" + }, + { + "id": "18837", + "name": "Zürich (Kreis 4) \/ Aussersihl", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37752000", + "longitude": "8.52127000" + }, + { + "id": "18838", + "name": "Zürich (Kreis 4) \/ Hard", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38311000", + "longitude": "8.50942000" + }, + { + "id": "18839", + "name": "Zürich (Kreis 4) \/ Langstrasse", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37767000", + "longitude": "8.52854000" + }, + { + "id": "18840", + "name": "Zürich (Kreis 4) \/ Werd", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37178000", + "longitude": "8.52584000" + }, + { + "id": "18841", + "name": "Zürich (Kreis 5)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38767000", + "longitude": "8.52152000" + }, + { + "id": "18842", + "name": "Zürich (Kreis 5) \/ Escher-Wyss", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39052000", + "longitude": "8.51292000" + }, + { + "id": "18843", + "name": "Zürich (Kreis 5) \/ Gewerbeschule", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38481000", + "longitude": "8.53011000" + }, + { + "id": "18844", + "name": "Zürich (Kreis 6)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39223000", + "longitude": "8.54381000" + }, + { + "id": "18845", + "name": "Zürich (Kreis 6) \/ Oberstrass", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38917000", + "longitude": "8.55040000" + }, + { + "id": "18846", + "name": "Zürich (Kreis 6) \/ Unterstrass", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.39530000", + "longitude": "8.53721000" + }, + { + "id": "18847", + "name": "Zürich (Kreis 7)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37328000", + "longitude": "8.58038000" + }, + { + "id": "18848", + "name": "Zürich (Kreis 7) \/ Fluntern", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38013000", + "longitude": "8.56133000" + }, + { + "id": "18849", + "name": "Zürich (Kreis 7) \/ Hirslanden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.36240000", + "longitude": "8.56755000" + }, + { + "id": "18850", + "name": "Zürich (Kreis 7) \/ Hottingen", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37011000", + "longitude": "8.56306000" + }, + { + "id": "18851", + "name": "Zürich (Kreis 7) \/ Witikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35751000", + "longitude": "8.59105000" + }, + { + "id": "18852", + "name": "Zürich (Kreis 8)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35480000", + "longitude": "8.56097000" + }, + { + "id": "18853", + "name": "Zürich (Kreis 8) \/ Mühlebach", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35727000", + "longitude": "8.55744000" + }, + { + "id": "18854", + "name": "Zürich (Kreis 8) \/ Seefeld", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35462000", + "longitude": "8.55537000" + }, + { + "id": "18855", + "name": "Zürich (Kreis 8) \/ Weinegg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.35250000", + "longitude": "8.57011000" + }, + { + "id": "18856", + "name": "Zürich (Kreis 9)", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38245000", + "longitude": "8.47993000" + }, + { + "id": "18857", + "name": "Zürich (Kreis 9) \/ Albisrieden", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.37398000", + "longitude": "8.49007000" + }, + { + "id": "18858", + "name": "Zürich (Kreis 9) \/ Altstetten", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.38946000", + "longitude": "8.48533000" + }, + { + "id": "18797", + "name": "Zollikerberg", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34510000", + "longitude": "8.60088000" + }, + { + "id": "18799", + "name": "Zollikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.34019000", + "longitude": "8.57407000" + }, + { + "id": "18802", + "name": "Zumikon", + "state_id": 1656, + "state_code": "ZH", + "country_id": 214, + "country_code": "CH", + "latitude": "47.33158000", + "longitude": "8.62271000" + }, + { + "id": "17428", + "name": "Baar", + "state_id": 1646, + "state_code": "ZG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19625000", + "longitude": "8.52954000" + }, + { + "id": "17622", + "name": "Cham", + "state_id": 1646, + "state_code": "ZG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18213000", + "longitude": "8.46358000" + }, + { + "id": "17944", + "name": "Hünenberg", + "state_id": 1646, + "state_code": "ZG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17536000", + "longitude": "8.42497000" + }, + { + "id": "18152", + "name": "Menzingen", + "state_id": 1646, + "state_code": "ZG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17764000", + "longitude": "8.59215000" + }, + { + "id": "18395", + "name": "Rotkreuz", + "state_id": 1646, + "state_code": "ZG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.14283000", + "longitude": "8.43140000" + }, + { + "id": "18554", + "name": "Steinhausen", + "state_id": 1646, + "state_code": "ZG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19510000", + "longitude": "8.48581000" + }, + { + "id": "18638", + "name": "Unterägeri", + "state_id": 1646, + "state_code": "ZG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.13645000", + "longitude": "8.58530000" + }, + { + "id": "18708", + "name": "Walchwil", + "state_id": 1646, + "state_code": "ZG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.10169000", + "longitude": "8.51693000" + }, + { + "id": "18801", + "name": "Zug", + "state_id": 1646, + "state_code": "ZG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17242000", + "longitude": "8.51745000" + }, + { + "id": "17529", + "name": "Bilten", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.14995000", + "longitude": "9.02551000" + }, + { + "id": "17751", + "name": "Ennenda", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.03363000", + "longitude": "9.07888000" + }, + { + "id": "17839", + "name": "Glarus", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04057000", + "longitude": "9.06804000" + }, + { + "id": "18086", + "name": "Linthal", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92127000", + "longitude": "8.99799000" + }, + { + "id": "18097", + "name": "Luchsingen", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "46.96640000", + "longitude": "9.03715000" + }, + { + "id": "18162", + "name": "Mollis", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.08878000", + "longitude": "9.07242000" + }, + { + "id": "18235", + "name": "Näfels", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.09775000", + "longitude": "9.06361000" + }, + { + "id": "18211", + "name": "Netstal", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06337000", + "longitude": "9.05734000" + }, + { + "id": "18229", + "name": "Niederurnen", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12598000", + "longitude": "9.05428000" + }, + { + "id": "18268", + "name": "Oberurnen", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "47.11412000", + "longitude": "9.05866000" + }, + { + "id": "18475", + "name": "Schwanden", + "state_id": 1661, + "state_code": "GL", + "country_id": 214, + "country_code": "CH", + "latitude": "46.99541000", + "longitude": "9.07010000" + }, + { + "id": "17409", + "name": "Arosa", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.77793000", + "longitude": "9.67621000" + }, + { + "id": "17411", + "name": "Arvigo", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.30211000", + "longitude": "9.11300000" + }, + { + "id": "17547", + "name": "Bonaduz", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81103000", + "longitude": "9.39821000" + }, + { + "id": "17559", + "name": "Breíl", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.76986000", + "longitude": "9.06036000" + }, + { + "id": "17571", + "name": "Brusio", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25953000", + "longitude": "10.12385000" + }, + { + "id": "17585", + "name": "Buseno", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.27381000", + "longitude": "9.10735000" + }, + { + "id": "17615", + "name": "Cauco", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.33541000", + "longitude": "9.12129000" + }, + { + "id": "17617", + "name": "Cazis", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.71940000", + "longitude": "9.43271000" + }, + { + "id": "17618", + "name": "Celerina", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.51217000", + "longitude": "9.85794000" + }, + { + "id": "17638", + "name": "Chur", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.84986000", + "longitude": "9.53287000" + }, + { + "id": "17639", + "name": "Churwalden", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.78143000", + "longitude": "9.54377000" + }, + { + "id": "17677", + "name": "Davos", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.80429000", + "longitude": "9.83723000" + }, + { + "id": "17699", + "name": "Disentis", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.70341000", + "longitude": "8.85090000" + }, + { + "id": "17700", + "name": "Domat", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.83483000", + "longitude": "9.45075000" + }, + { + "id": "17783", + "name": "Felsberg", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.84566000", + "longitude": "9.47588000" + }, + { + "id": "17793", + "name": "Flims", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.83705000", + "longitude": "9.28458000" + }, + { + "id": "17882", + "name": "Grüsch", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.97965000", + "longitude": "9.64639000" + }, + { + "id": "17917", + "name": "Hinterrhein", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53333000", + "longitude": "9.20000000" + }, + { + "id": "17947", + "name": "Igis", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94531000", + "longitude": "9.57218000" + }, + { + "id": "17948", + "name": "Ilanz", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.77413000", + "longitude": "9.20461000" + }, + { + "id": "17958", + "name": "Jenaz", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92892000", + "longitude": "9.71275000" + }, + { + "id": "17986", + "name": "Klosters Serneus", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.88918000", + "longitude": "9.83826000" + }, + { + "id": "18024", + "name": "La Punt Chamues-ch", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.57887000", + "longitude": "9.92015000" + }, + { + "id": "18029", + "name": "Laax", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.80452000", + "longitude": "9.25787000" + }, + { + "id": "18033", + "name": "Landquart", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.95000000", + "longitude": "9.56667000" + }, + { + "id": "18067", + "name": "Lenzerheide", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.72215000", + "longitude": "9.55905000" + }, + { + "id": "18105", + "name": "Luzein", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.91957000", + "longitude": "9.76080000" + }, + { + "id": "18116", + "name": "Maienfeld", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "47.00472000", + "longitude": "9.53115000" + }, + { + "id": "18117", + "name": "Malans", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.98096000", + "longitude": "9.57527000" + }, + { + "id": "18155", + "name": "Mesocco", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.39390000", + "longitude": "9.23333000" + }, + { + "id": "18318", + "name": "Pontresina", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.49550000", + "longitude": "9.90126000" + }, + { + "id": "18321", + "name": "Poschiavo", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.32441000", + "longitude": "10.05823000" + }, + { + "id": "18348", + "name": "Region Albula", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60255000", + "longitude": "9.65150000" + }, + { + "id": "18349", + "name": "Region Bernina", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.33488000", + "longitude": "10.07349000" + }, + { + "id": "18350", + "name": "Region Engiadina Bassa \/ Val Müstair", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.75212000", + "longitude": "10.26032000" + }, + { + "id": "18351", + "name": "Region Imboden", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.84876000", + "longitude": "9.36225000" + }, + { + "id": "18352", + "name": "Region Landquart", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.96403000", + "longitude": "9.56365000" + }, + { + "id": "18353", + "name": "Region Maloja", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47448000", + "longitude": "9.83138000" + }, + { + "id": "18354", + "name": "Region Moesa", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.35200000", + "longitude": "9.17870000" + }, + { + "id": "18355", + "name": "Region Plessur", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81819000", + "longitude": "9.62542000" + }, + { + "id": "18356", + "name": "Region Prättigau \/ Davos", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.86727000", + "longitude": "9.82014000" + }, + { + "id": "18357", + "name": "Region Surselva", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.69564000", + "longitude": "9.04834000" + }, + { + "id": "18358", + "name": "Region Viamala", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.58762000", + "longitude": "9.40035000" + }, + { + "id": "18367", + "name": "Rhäzüns", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.79891000", + "longitude": "9.39764000" + }, + { + "id": "18435", + "name": "Samedan", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.53399000", + "longitude": "9.87276000" + }, + { + "id": "18457", + "name": "Scharans", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.71814000", + "longitude": "9.45903000" + }, + { + "id": "18460", + "name": "Schiers", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.96973000", + "longitude": "9.68720000" + }, + { + "id": "18490", + "name": "Scuol", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.79671000", + "longitude": "10.29804000" + }, + { + "id": "18522", + "name": "Silvaplana", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.45810000", + "longitude": "9.79514000" + }, + { + "id": "18535", + "name": "St. Moritz", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.49937000", + "longitude": "9.84327000" + }, + { + "id": "18572", + "name": "Tamins", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.82964000", + "longitude": "9.40648000" + }, + { + "id": "18594", + "name": "Thusis", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.69724000", + "longitude": "9.43938000" + }, + { + "id": "18596", + "name": "Tiefencastel", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.66014000", + "longitude": "9.57883000" + }, + { + "id": "18604", + "name": "Trimmis", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90075000", + "longitude": "9.56120000" + }, + { + "id": "18610", + "name": "Trun", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.74292000", + "longitude": "8.98716000" + }, + { + "id": "18637", + "name": "Untervaz", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92750000", + "longitude": "9.53422000" + }, + { + "id": "18660", + "name": "Vals Platz", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.61647000", + "longitude": "9.18025000" + }, + { + "id": "18794", + "name": "Zernez", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.69862000", + "longitude": "10.09268000" + }, + { + "id": "18795", + "name": "Zizers", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.93575000", + "longitude": "9.56491000" + }, + { + "id": "18804", + "name": "Zuoz", + "state_id": 1660, + "state_code": "GR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.60206000", + "longitude": "9.95965000" + }, + { + "id": "17448", + "name": "Beckenried", + "state_id": 1652, + "state_code": "NW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.96653000", + "longitude": "8.47575000" + }, + { + "id": "17582", + "name": "Buochs", + "state_id": 1652, + "state_code": "NW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.97398000", + "longitude": "8.42279000" + }, + { + "id": "17675", + "name": "Dallenwil", + "state_id": 1652, + "state_code": "NW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.92420000", + "longitude": "8.38785000" + }, + { + "id": "17748", + "name": "Emmetten", + "state_id": 1652, + "state_code": "NW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.95658000", + "longitude": "8.51467000" + }, + { + "id": "17752", + "name": "Ennetbürgen", + "state_id": 1652, + "state_code": "NW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.98423000", + "longitude": "8.41003000" + }, + { + "id": "17906", + "name": "Hergiswil", + "state_id": 1652, + "state_code": "NW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.98429000", + "longitude": "8.30944000" + }, + { + "id": "18546", + "name": "Stans", + "state_id": 1652, + "state_code": "NW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.95805000", + "longitude": "8.36609000" + }, + { + "id": "18547", + "name": "Stansstad", + "state_id": 1652, + "state_code": "NW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.97680000", + "longitude": "8.33553000" + }, + { + "id": "18763", + "name": "Wolfenschiessen", + "state_id": 1652, + "state_code": "NW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90322000", + "longitude": "8.39423000" + }, + { + "id": "17387", + "name": "Alpnach", + "state_id": 1650, + "state_code": "OW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.94227000", + "longitude": "8.27180000" + }, + { + "id": "17750", + "name": "Engelberg", + "state_id": 1650, + "state_code": "OW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.82107000", + "longitude": "8.40133000" + }, + { + "id": "17835", + "name": "Giswil", + "state_id": 1650, + "state_code": "OW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.83333000", + "longitude": "8.18065000" + }, + { + "id": "17973", + "name": "Kerns", + "state_id": 1650, + "state_code": "OW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90121000", + "longitude": "8.27514000" + }, + { + "id": "18101", + "name": "Lungern", + "state_id": 1650, + "state_code": "OW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.78578000", + "longitude": "8.15984000" + }, + { + "id": "18418", + "name": "Sachseln", + "state_id": 1650, + "state_code": "OW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.86718000", + "longitude": "8.23344000" + }, + { + "id": "18447", + "name": "Sarnen", + "state_id": 1650, + "state_code": "OW", + "country_id": 214, + "country_code": "CH", + "latitude": "46.89611000", + "longitude": "8.24531000" + }, + { + "id": "17389", + "name": "Altendorf", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18994000", + "longitude": "8.83823000" + }, + { + "id": "17410", + "name": "Arth", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06337000", + "longitude": "8.52349000" + }, + { + "id": "17590", + "name": "Bäch", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20388000", + "longitude": "8.73224000" + }, + { + "id": "17483", + "name": "Bezirk Einsiedeln", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.10792000", + "longitude": "8.76010000" + }, + { + "id": "17484", + "name": "Bezirk Gersau", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.00800000", + "longitude": "8.51678000" + }, + { + "id": "17490", + "name": "Bezirk Höfe", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19043000", + "longitude": "8.73960000" + }, + { + "id": "17492", + "name": "Bezirk Küssnacht", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.08611000", + "longitude": "8.44444000" + }, + { + "id": "17498", + "name": "Bezirk March", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.16128000", + "longitude": "8.91103000" + }, + { + "id": "17509", + "name": "Bezirk Schwyz", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.02814000", + "longitude": "8.63619000" + }, + { + "id": "17738", + "name": "Einsiedeln", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12849000", + "longitude": "8.74735000" + }, + { + "id": "17787", + "name": "Feusisberg", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.18707000", + "longitude": "8.74724000" + }, + { + "id": "17806", + "name": "Freienbach", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20534000", + "longitude": "8.75842000" + }, + { + "id": "17830", + "name": "Gersau", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "46.99419000", + "longitude": "8.52500000" + }, + { + "id": "17848", + "name": "Goldau", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04761000", + "longitude": "8.54616000" + }, + { + "id": "17946", + "name": "Ibach", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.01105000", + "longitude": "8.64538000" + }, + { + "id": "17951", + "name": "Ingenbohl", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "46.99880000", + "longitude": "8.61529000" + }, + { + "id": "18019", + "name": "Küssnacht", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.08557000", + "longitude": "8.44206000" + }, + { + "id": "18030", + "name": "Lachen", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19224000", + "longitude": "8.85324000" + }, + { + "id": "18179", + "name": "Muotathal", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "46.97676000", + "longitude": "8.76499000" + }, + { + "id": "18310", + "name": "Pfäffikon", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20109000", + "longitude": "8.77816000" + }, + { + "id": "18360", + "name": "Reichenburg", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17097000", + "longitude": "8.97704000" + }, + { + "id": "18393", + "name": "Rothenthurm", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.10420000", + "longitude": "8.67585000" + }, + { + "id": "18449", + "name": "Sattel", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.08246000", + "longitude": "8.63565000" + }, + { + "id": "18487", + "name": "Schübelbach", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17326000", + "longitude": "8.92811000" + }, + { + "id": "18461", + "name": "Schindellegi", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17460000", + "longitude": "8.71345000" + }, + { + "id": "18481", + "name": "Schwyz", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.02076000", + "longitude": "8.65414000" + }, + { + "id": "18516", + "name": "Siebnen", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.17449000", + "longitude": "8.89781000" + }, + { + "id": "18553", + "name": "Steinen", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.04975000", + "longitude": "8.61214000" + }, + { + "id": "18612", + "name": "Tuggen", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.20291000", + "longitude": "8.94896000" + }, + { + "id": "18632", + "name": "Unteriberg", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.06258000", + "longitude": "8.80520000" + }, + { + "id": "18693", + "name": "Vorderthal", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.12172000", + "longitude": "8.90225000" + }, + { + "id": "18767", + "name": "Wollerau", + "state_id": 1653, + "state_code": "SZ", + "country_id": 214, + "country_code": "CH", + "latitude": "47.19478000", + "longitude": "8.71903000" + }, + { + "id": "17356", + "name": "Aadorf", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49204000", + "longitude": "8.90099000" + }, + { + "id": "17374", + "name": "Affeltrangen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52581000", + "longitude": "9.03307000" + }, + { + "id": "17392", + "name": "Altnau", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.61052000", + "longitude": "9.26160000" + }, + { + "id": "17395", + "name": "Amriswil", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54699000", + "longitude": "9.29586000" + }, + { + "id": "17402", + "name": "Arbon", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51667000", + "longitude": "9.43333000" + }, + { + "id": "17403", + "name": "Arbon District", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54867000", + "longitude": "9.35159000" + }, + { + "id": "17603", + "name": "Bürglen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54921000", + "longitude": "9.14950000" + }, + { + "id": "17459", + "name": "Berg", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.57879000", + "longitude": "9.16635000" + }, + { + "id": "17552", + "name": "Bottighofen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.63643000", + "longitude": "9.20882000" + }, + { + "id": "17688", + "name": "Diessenhofen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.68908000", + "longitude": "8.74958000" + }, + { + "id": "17733", + "name": "Egnach", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54268000", + "longitude": "9.38048000" + }, + { + "id": "17760", + "name": "Erlen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54814000", + "longitude": "9.23415000" + }, + { + "id": "17766", + "name": "Ermatingen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.67057000", + "longitude": "9.08573000" + }, + { + "id": "17770", + "name": "Eschenz", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.64793000", + "longitude": "8.87472000" + }, + { + "id": "17771", + "name": "Eschlikon", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46361000", + "longitude": "8.96381000" + }, + { + "id": "17789", + "name": "Fischingen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.41422000", + "longitude": "8.96862000" + }, + { + "id": "17803", + "name": "Frauenfeld", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.55776000", + "longitude": "8.89893000" + }, + { + "id": "17804", + "name": "Frauenfeld District", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.61115000", + "longitude": "8.89444000" + }, + { + "id": "17818", + "name": "Gachnang", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53935000", + "longitude": "8.85311000" + }, + { + "id": "17889", + "name": "Güttingen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.60349000", + "longitude": "9.28742000" + }, + { + "id": "17858", + "name": "Gottlieben", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.66380000", + "longitude": "9.13371000" + }, + { + "id": "17945", + "name": "Hüttwilen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.60674000", + "longitude": "8.87343000" + }, + { + "id": "17928", + "name": "Homburg", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.63469000", + "longitude": "9.00756000" + }, + { + "id": "18005", + "name": "Kreuzlingen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.65051000", + "longitude": "9.17504000" + }, + { + "id": "18006", + "name": "Kreuzlingen District", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.63046000", + "longitude": "9.16458000" + }, + { + "id": "18041", + "name": "Langrickenbach", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.59353000", + "longitude": "9.24727000" + }, + { + "id": "18135", + "name": "Matzingen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.51957000", + "longitude": "8.93365000" + }, + { + "id": "18189", + "name": "Märstetten-Dorf", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.59252000", + "longitude": "9.06851000" + }, + { + "id": "18198", + "name": "Müllheim", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.60195000", + "longitude": "9.00357000" + }, + { + "id": "18202", + "name": "Münchwilen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47719000", + "longitude": "8.99677000" + }, + { + "id": "18203", + "name": "Münchwilen District", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.47324000", + "longitude": "8.98812000" + }, + { + "id": "18205", + "name": "Münsterlingen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.63197000", + "longitude": "9.23271000" + }, + { + "id": "18309", + "name": "Pfyn", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.59693000", + "longitude": "8.95420000" + }, + { + "id": "18373", + "name": "Rickenbach bei Wil", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.44856000", + "longitude": "9.04902000" + }, + { + "id": "18383", + "name": "Roggwil", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49981000", + "longitude": "9.39580000" + }, + { + "id": "18388", + "name": "Romanshorn", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.56586000", + "longitude": "9.37869000" + }, + { + "id": "18433", + "name": "Salmsach", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.55433000", + "longitude": "9.37229000" + }, + { + "id": "18525", + "name": "Sirnach", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.46222000", + "longitude": "8.99763000" + }, + { + "id": "18549", + "name": "Steckborn", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.66667000", + "longitude": "8.98333000" + }, + { + "id": "18557", + "name": "Stettfurt", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.52588000", + "longitude": "8.95317000" + }, + { + "id": "18563", + "name": "Sulgen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.53967000", + "longitude": "9.18585000" + }, + { + "id": "18616", + "name": "Tägerwilen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.65698000", + "longitude": "9.13999000" + }, + { + "id": "18593", + "name": "Thundorf", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54594000", + "longitude": "8.96358000" + }, + { + "id": "18652", + "name": "Uttwil", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.58440000", + "longitude": "9.34101000" + }, + { + "id": "18698", + "name": "Wagenhausen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.66003000", + "longitude": "8.84782000" + }, + { + "id": "18781", + "name": "Wängi", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.49654000", + "longitude": "8.95325000" + }, + { + "id": "18730", + "name": "Weinfelden", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.56667000", + "longitude": "9.10000000" + }, + { + "id": "18731", + "name": "Weinfelden District", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.54237000", + "longitude": "9.15713000" + }, + { + "id": "18747", + "name": "Wigoltingen", + "state_id": 1657, + "state_code": "TG", + "country_id": 214, + "country_code": "CH", + "latitude": "47.59770000", + "longitude": "9.03141000" + }, + { + "id": "17361", + "name": "Acquarossa", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.45473000", + "longitude": "8.94261000" + }, + { + "id": "17380", + "name": "Agno", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.99863000", + "longitude": "8.90030000" + }, + { + "id": "17384", + "name": "Airolo", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.52855000", + "longitude": "8.61189000" + }, + { + "id": "17413", + "name": "Arzo", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.87606000", + "longitude": "8.94103000" + }, + { + "id": "17414", + "name": "Ascona", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.15451000", + "longitude": "8.77327000" + }, + { + "id": "17434", + "name": "Balerna", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.84638000", + "longitude": "9.00724000" + }, + { + "id": "17452", + "name": "Bellinzona", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.19278000", + "longitude": "9.01703000" + }, + { + "id": "17453", + "name": "Bellinzona District", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18858000", + "longitude": "9.00254000" + }, + { + "id": "17524", + "name": "Biasca", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.35972000", + "longitude": "8.96965000" + }, + { + "id": "17533", + "name": "Bioggio", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.01357000", + "longitude": "8.91103000" + }, + { + "id": "17540", + "name": "Blenio District", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47613000", + "longitude": "8.94609000" + }, + { + "id": "17544", + "name": "Bodio", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.37808000", + "longitude": "8.90991000" + }, + { + "id": "17564", + "name": "Brissago", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.12013000", + "longitude": "8.71181000" + }, + { + "id": "17607", + "name": "Cadempino", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.03672000", + "longitude": "8.93403000" + }, + { + "id": "17608", + "name": "Cadenazzo", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.15172000", + "longitude": "8.94719000" + }, + { + "id": "17609", + "name": "Cadro", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.04595000", + "longitude": "8.98725000" + }, + { + "id": "17610", + "name": "Camorino", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.16483000", + "longitude": "9.00547000" + }, + { + "id": "17611", + "name": "Canobbio", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.03592000", + "longitude": "8.96605000" + }, + { + "id": "17613", + "name": "Caslano", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.97364000", + "longitude": "8.87739000" + }, + { + "id": "17614", + "name": "Castel San Pietro", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.86211000", + "longitude": "9.00843000" + }, + { + "id": "17620", + "name": "Cevio", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.31479000", + "longitude": "8.60332000" + }, + { + "id": "17636", + "name": "Chiasso", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.83203000", + "longitude": "9.03119000" + }, + { + "id": "17645", + "name": "Claro", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25763000", + "longitude": "9.02252000" + }, + { + "id": "17648", + "name": "Comano", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.03635000", + "longitude": "8.95526000" + }, + { + "id": "17670", + "name": "Cugnasco", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17473000", + "longitude": "8.91684000" + }, + { + "id": "17780", + "name": "Faido", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.47700000", + "longitude": "8.80125000" + }, + { + "id": "17836", + "name": "Giubiasco", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17246000", + "longitude": "9.00793000" + }, + { + "id": "17854", + "name": "Gordola", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18256000", + "longitude": "8.86657000" + }, + { + "id": "17863", + "name": "Gravesano", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.04208000", + "longitude": "8.91832000" + }, + { + "id": "18053", + "name": "Lavertezzo", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.25893000", + "longitude": "8.83756000" + }, + { + "id": "18078", + "name": "Leventina District", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.46912000", + "longitude": "8.75539000" + }, + { + "id": "18084", + "name": "Ligornetto", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.86161000", + "longitude": "8.95166000" + }, + { + "id": "18088", + "name": "Locarno", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17086000", + "longitude": "8.79953000" + }, + { + "id": "18089", + "name": "Locarno District", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18033000", + "longitude": "8.75991000" + }, + { + "id": "18090", + "name": "Lodrino", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.30016000", + "longitude": "8.97986000" + }, + { + "id": "18091", + "name": "Losone", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.16866000", + "longitude": "8.75928000" + }, + { + "id": "18098", + "name": "Lugano", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.01008000", + "longitude": "8.96004000" + }, + { + "id": "18099", + "name": "Lugano District", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.02322000", + "longitude": "8.93802000" + }, + { + "id": "18100", + "name": "Lumino", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.23020000", + "longitude": "9.06420000" + }, + { + "id": "18114", + "name": "Magadino", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.14892000", + "longitude": "8.85610000" + }, + { + "id": "18120", + "name": "Malvaglia", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.40588000", + "longitude": "8.98190000" + }, + { + "id": "18128", + "name": "Massagno", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.01257000", + "longitude": "8.94354000" + }, + { + "id": "18145", + "name": "Melano", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.92202000", + "longitude": "8.98435000" + }, + { + "id": "18147", + "name": "Melide", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.95455000", + "longitude": "8.94725000" + }, + { + "id": "18149", + "name": "Mendrisio", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.87019000", + "longitude": "8.98160000" + }, + { + "id": "18150", + "name": "Mendrisio District", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.86592000", + "longitude": "8.99931000" + }, + { + "id": "18159", + "name": "Minusio", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17769000", + "longitude": "8.81473000" + }, + { + "id": "18163", + "name": "Montagnola", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.98323000", + "longitude": "8.91786000" + }, + { + "id": "18166", + "name": "Monte Carasso", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18649000", + "longitude": "8.99892000" + }, + { + "id": "18170", + "name": "Morbio Inferiore", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.84915000", + "longitude": "9.01907000" + }, + { + "id": "18180", + "name": "Muralto", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.17323000", + "longitude": "8.80219000" + }, + { + "id": "18231", + "name": "Novazzano", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.84073000", + "longitude": "8.98236000" + }, + { + "id": "18325", + "name": "Pregassona", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.02021000", + "longitude": "8.97429000" + }, + { + "id": "18331", + "name": "Pura", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.98647000", + "longitude": "8.86877000" + }, + { + "id": "18378", + "name": "Riva San Vitale", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.90123000", + "longitude": "8.97167000" + }, + { + "id": "18379", + "name": "Riviera District", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.30926000", + "longitude": "8.98148000" + }, + { + "id": "18507", + "name": "Sementina", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18363000", + "longitude": "8.99162000" + }, + { + "id": "18530", + "name": "Sorengo", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.99766000", + "longitude": "8.93783000" + }, + { + "id": "18536", + "name": "Stabio", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "45.84846000", + "longitude": "8.93642000" + }, + { + "id": "18578", + "name": "Tesserete", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.06813000", + "longitude": "8.96501000" + }, + { + "id": "18658", + "name": "Vallemaggia District", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.35483000", + "longitude": "8.60540000" + }, + { + "id": "18671", + "name": "Verscio", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.18482000", + "longitude": "8.73224000" + }, + { + "id": "18678", + "name": "Viganello", + "state_id": 1643, + "state_code": "TI", + "country_id": 214, + "country_code": "CH", + "latitude": "46.01342000", + "longitude": "8.96879000" + }, + { + "id": "17388", + "name": "Altdorf", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.88042000", + "longitude": "8.64441000" + }, + { + "id": "17397", + "name": "Andermatt", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.63565000", + "longitude": "8.59388000" + }, + { + "id": "17416", + "name": "Attinghausen", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.86255000", + "longitude": "8.63036000" + }, + { + "id": "17444", + "name": "Bauen", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.93559000", + "longitude": "8.57836000" + }, + { + "id": "17602", + "name": "Bürglen", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.87565000", + "longitude": "8.66539000" + }, + { + "id": "17768", + "name": "Erstfeld", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.81885000", + "longitude": "8.65052000" + }, + { + "id": "17796", + "name": "Flüelen", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.90478000", + "longitude": "8.62396000" + }, + { + "id": "18458", + "name": "Schattdorf", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.86550000", + "longitude": "8.65465000" + }, + { + "id": "18492", + "name": "Seedorf", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.88199000", + "longitude": "8.61611000" + }, + { + "id": "18521", + "name": "Silenen", + "state_id": 1642, + "state_code": "UR", + "country_id": 214, + "country_code": "CH", + "latitude": "46.78910000", + "longitude": "8.67325000" + }, + { + "id": "104940", + "name": "Ad Darbāsīyah", + "state_id": 2941, + "state_code": "HA", + "country_id": 215, + "country_code": "SY", + "latitude": "37.07279000", + "longitude": "40.65199000" + }, + { + "id": "104957", + "name": "Al Ḩasakah", + "state_id": 2941, + "state_code": "HA", + "country_id": 215, + "country_code": "SY", + "latitude": "36.50237000", + "longitude": "40.74772000" + }, + { + "id": "104950", + "name": "Al Mālikīyah", + "state_id": 2941, + "state_code": "HA", + "country_id": 215, + "country_code": "SY", + "latitude": "37.17701000", + "longitude": "42.14006000" + }, + { + "id": "104955", + "name": "Al Qāmishlī", + "state_id": 2941, + "state_code": "HA", + "country_id": 215, + "country_code": "SY", + "latitude": "37.05215000", + "longitude": "41.23142000" + }, + { + "id": "104960", + "name": "Al-Malikiyah District", + "state_id": 2941, + "state_code": "HA", + "country_id": 215, + "country_code": "SY", + "latitude": "36.94113000", + "longitude": "41.90157000" + }, + { + "id": "104967", + "name": "Amude", + "state_id": 2941, + "state_code": "HA", + "country_id": 215, + "country_code": "SY", + "latitude": "37.10417000", + "longitude": "40.93000000" + }, + { + "id": "104964", + "name": "Al-Thawrah District", + "state_id": 2944, + "state_code": "RA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.79843000", + "longitude": "38.34550000" + }, + { + "id": "104969", + "name": "Ar Raqqah", + "state_id": 2944, + "state_code": "RA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.95283000", + "longitude": "39.00788000" + }, + { + "id": "104971", + "name": "Ar-Raqqah District", + "state_id": 2944, + "state_code": "RA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.87204000", + "longitude": "39.04706000" + }, + { + "id": "104981", + "name": "Ath Thawrah", + "state_id": 2944, + "state_code": "RA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.83758000", + "longitude": "38.54828000" + }, + { + "id": "105055", + "name": "Tall Abyaḑ", + "state_id": 2944, + "state_code": "RA", + "country_id": 215, + "country_code": "SY", + "latitude": "36.69648000", + "longitude": "38.95382000" + }, + { + "id": "105062", + "name": "Tell Abyad District", + "state_id": 2944, + "state_code": "RA", + "country_id": 215, + "country_code": "SY", + "latitude": "36.48280000", + "longitude": "39.21360000" + }, + { + "id": "104943", + "name": "Afrin District", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.54891000", + "longitude": "36.79295000" + }, + { + "id": "104944", + "name": "Al Atārib", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.13907000", + "longitude": "36.82504000" + }, + { + "id": "104945", + "name": "Al Bāb", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.37051000", + "longitude": "37.51570000" + }, + { + "id": "104958", + "name": "Al-Bab District", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.30946000", + "longitude": "37.53277000" + }, + { + "id": "104966", + "name": "Aleppo", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.20124000", + "longitude": "37.16117000" + }, + { + "id": "104974", + "name": "As Safīrah", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.07696000", + "longitude": "37.37251000" + }, + { + "id": "104983", + "name": "Azaz District", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.49986000", + "longitude": "37.18382000" + }, + { + "id": "105072", + "name": "Şūrān", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.56579000", + "longitude": "37.21270000" + }, + { + "id": "105079", + "name": "‘Afrīn", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.51194000", + "longitude": "36.86954000" + }, + { + "id": "105080", + "name": "‘Ayn al ‘Arab", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.89095000", + "longitude": "38.35347000" + }, + { + "id": "104992", + "name": "Dayr Ḩāfir", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.15694000", + "longitude": "37.70778000" + }, + { + "id": "105006", + "name": "I‘zāz", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.58662000", + "longitude": "37.04628000" + }, + { + "id": "105010", + "name": "Jarābulus", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.81750000", + "longitude": "38.01111000" + }, + { + "id": "105019", + "name": "Kafr Şaghīr", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.29264000", + "longitude": "37.25590000" + }, + { + "id": "105022", + "name": "Khanāşir", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "35.78159000", + "longitude": "37.49919000" + }, + { + "id": "105027", + "name": "Manbij", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.52815000", + "longitude": "37.95495000" + }, + { + "id": "105028", + "name": "Manbij District", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.06687000", + "longitude": "37.91735000" + }, + { + "id": "105034", + "name": "Mount Simeon District", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "35.99956000", + "longitude": "37.08473000" + }, + { + "id": "105038", + "name": "Nubl", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.37867000", + "longitude": "36.99294000" + }, + { + "id": "105056", + "name": "Tall Rif‘at", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.47229000", + "longitude": "37.09471000" + }, + { + "id": "105064", + "name": "Tādif", + "state_id": 2946, + "state_code": "HL", + "country_id": 215, + "country_code": "SY", + "latitude": "36.34814000", + "longitude": "37.53090000" + }, + { + "id": "104977", + "name": "As-Suwayda", + "state_id": 2936, + "state_code": "SU", + "country_id": 215, + "country_code": "SY", + "latitude": "32.70896000", + "longitude": "36.56951000" + }, + { + "id": "104978", + "name": "As-Suwayda District", + "state_id": 2936, + "state_code": "SU", + "country_id": 215, + "country_code": "SY", + "latitude": "32.78127000", + "longitude": "36.86502000" + }, + { + "id": "105069", + "name": "Şalākhid", + "state_id": 2936, + "state_code": "SU", + "country_id": 215, + "country_code": "SY", + "latitude": "32.87271000", + "longitude": "36.57271000" + }, + { + "id": "105068", + "name": "Şalkhad", + "state_id": 2936, + "state_code": "SU", + "country_id": 215, + "country_code": "SY", + "latitude": "32.49200000", + "longitude": "36.71114000" + }, + { + "id": "105043", + "name": "Salkhad District", + "state_id": 2936, + "state_code": "SU", + "country_id": 215, + "country_code": "SY", + "latitude": "32.51779000", + "longitude": "36.91954000" + }, + { + "id": "105048", + "name": "Shahba District", + "state_id": 2936, + "state_code": "SU", + "country_id": 215, + "country_code": "SY", + "latitude": "33.04282000", + "longitude": "36.72034000" + }, + { + "id": "105049", + "name": "Shahbā", + "state_id": 2936, + "state_code": "SU", + "country_id": 215, + "country_code": "SY", + "latitude": "32.85514000", + "longitude": "36.62896000" + }, + { + "id": "104988", + "name": "Damascus", + "state_id": 2939, + "state_code": "DI", + "country_id": 215, + "country_code": "SY", + "latitude": "33.51020000", + "longitude": "36.29128000" + }, + { + "id": "104984", + "name": "Aş Şanamayn", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "33.07186000", + "longitude": "36.18316000" + }, + { + "id": "104956", + "name": "Al Ḩarāk", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.74932000", + "longitude": "36.30994000" + }, + { + "id": "104949", + "name": "Al Muzayrīb", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.71084000", + "longitude": "36.02751000" + }, + { + "id": "104963", + "name": "Al-Sanamayn District", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "33.12559000", + "longitude": "36.27540000" + }, + { + "id": "104979", + "name": "Ash Shaykh Miskīn", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.82944000", + "longitude": "36.15933000" + }, + { + "id": "105073", + "name": "Ţafas", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.73709000", + "longitude": "36.06654000" + }, + { + "id": "104986", + "name": "Buşrá ash Shām", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.52013000", + "longitude": "36.48256000" + }, + { + "id": "104990", + "name": "Dar‘ā", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.61889000", + "longitude": "36.10213000" + }, + { + "id": "104996", + "name": "Ghabāghib", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "33.18235000", + "longitude": "36.22534000" + }, + { + "id": "105003", + "name": "Inkhil", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "33.01809000", + "longitude": "36.12828000" + }, + { + "id": "105004", + "name": "Izra District", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.90121000", + "longitude": "36.16144000" + }, + { + "id": "105005", + "name": "Izra‘", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.87060000", + "longitude": "36.25453000" + }, + { + "id": "105014", + "name": "Jāsim", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.99233000", + "longitude": "36.06018000" + }, + { + "id": "105037", + "name": "Nawá", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.89044000", + "longitude": "36.03990000" + }, + { + "id": "105061", + "name": "Tasīl", + "state_id": 2945, + "state_code": "DR", + "country_id": 215, + "country_code": "SY", + "latitude": "32.83395000", + "longitude": "35.96973000" + }, + { + "id": "104948", + "name": "Al Mayādīn", + "state_id": 2937, + "state_code": "DY", + "country_id": 215, + "country_code": "SY", + "latitude": "35.01982000", + "longitude": "40.45154000" + }, + { + "id": "105066", + "name": "Ālbū Kamāl", + "state_id": 2937, + "state_code": "DY", + "country_id": 215, + "country_code": "SY", + "latitude": "34.45226000", + "longitude": "40.91854000" + }, + { + "id": "104993", + "name": "Deir ez-Zor", + "state_id": 2937, + "state_code": "DY", + "country_id": 215, + "country_code": "SY", + "latitude": "35.33588000", + "longitude": "40.14084000" + }, + { + "id": "104997", + "name": "Hajīn", + "state_id": 2937, + "state_code": "DY", + "country_id": 215, + "country_code": "SY", + "latitude": "34.69508000", + "longitude": "40.83138000" + }, + { + "id": "105051", + "name": "Subaykhān", + "state_id": 2937, + "state_code": "DY", + "country_id": 215, + "country_code": "SY", + "latitude": "34.85305000", + "longitude": "40.59987000" + }, + { + "id": "104962", + "name": "Al-Salamiyah District", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.14398000", + "longitude": "37.59235000" + }, + { + "id": "104975", + "name": "As Salamīyah", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.01127000", + "longitude": "37.05324000" + }, + { + "id": "104976", + "name": "As Suqaylibīyah", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.36674000", + "longitude": "36.39359000" + }, + { + "id": "105074", + "name": "Ţayyibat al Imām", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.26592000", + "longitude": "36.71219000" + }, + { + "id": "105075", + "name": "Ḩalfāyā", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.26014000", + "longitude": "36.60581000" + }, + { + "id": "105076", + "name": "Ḩamāh", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.13179000", + "longitude": "36.75783000" + }, + { + "id": "104998", + "name": "Hama District", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.28577000", + "longitude": "37.12626000" + }, + { + "id": "105018", + "name": "Kafr Zaytā", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.37425000", + "longitude": "36.60330000" + }, + { + "id": "105030", + "name": "Maşyāf", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.06530000", + "longitude": "36.34060000" + }, + { + "id": "105029", + "name": "Masyaf District", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.10335000", + "longitude": "36.33920000" + }, + { + "id": "105036", + "name": "Mūrak", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.37615000", + "longitude": "36.68970000" + }, + { + "id": "105050", + "name": "Souran", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.29193000", + "longitude": "36.74848000" + }, + { + "id": "105057", + "name": "Tall Salḩab", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.25884000", + "longitude": "36.38461000" + }, + { + "id": "105063", + "name": "Tremseh", + "state_id": 2934, + "state_code": "HM", + "country_id": 215, + "country_code": "SY", + "latitude": "35.27181000", + "longitude": "36.50395000" + }, + { + "id": "104946", + "name": "Al Ghanţū", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.82202000", + "longitude": "36.69613000" + }, + { + "id": "104951", + "name": "Al Qaryatayn", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.22956000", + "longitude": "37.24066000" + }, + { + "id": "104953", + "name": "Al Quşayr", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.50780000", + "longitude": "36.58029000" + }, + { + "id": "104961", + "name": "Al-Rastan District", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.87100000", + "longitude": "36.77245000" + }, + { + "id": "104970", + "name": "Ar Rastan", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.92667000", + "longitude": "36.73241000" + }, + { + "id": "105067", + "name": "Şadad", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.31248000", + "longitude": "36.92562000" + }, + { + "id": "105000", + "name": "Hisya", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.41197000", + "longitude": "36.75867000" + }, + { + "id": "105001", + "name": "Homs", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.72682000", + "longitude": "36.72339000" + }, + { + "id": "105016", + "name": "Kafr Lāhā", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.89469000", + "longitude": "36.49582000" + }, + { + "id": "105035", + "name": "Mukharram al Fawqānī", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.81521000", + "longitude": "37.08677000" + }, + { + "id": "105052", + "name": "Tadmur", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.56240000", + "longitude": "38.28402000" + }, + { + "id": "105053", + "name": "Tadmur District", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.42401000", + "longitude": "38.64580000" + }, + { + "id": "105058", + "name": "Tallbīsah", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.84072000", + "longitude": "36.73092000" + }, + { + "id": "105059", + "name": "Tallkalakh", + "state_id": 2942, + "state_code": "HI", + "country_id": 215, + "country_code": "SY", + "latitude": "34.66842000", + "longitude": "36.25995000" + }, + { + "id": "104942", + "name": "Ad Dānā", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "36.21254000", + "longitude": "36.76998000" + }, + { + "id": "104973", + "name": "Arīḩā", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.81374000", + "longitude": "36.60964000" + }, + { + "id": "104972", + "name": "Armanāz", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "36.08363000", + "longitude": "36.50310000" + }, + { + "id": "105078", + "name": "Ḩārim", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "36.21176000", + "longitude": "36.52078000" + }, + { + "id": "104985", + "name": "Binnish", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.95664000", + "longitude": "36.71380000" + }, + { + "id": "104989", + "name": "Darkūsh", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.99180000", + "longitude": "36.39361000" + }, + { + "id": "104999", + "name": "Harem District", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "36.14014000", + "longitude": "36.56535000" + }, + { + "id": "105002", + "name": "Idlib", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.93062000", + "longitude": "36.63393000" + }, + { + "id": "105012", + "name": "Jisr al-Shughur District", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.87756000", + "longitude": "36.32901000" + }, + { + "id": "105013", + "name": "Jisr ash Shughūr", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.81418000", + "longitude": "36.31983000" + }, + { + "id": "105017", + "name": "Kafr Takhārīm", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "36.11680000", + "longitude": "36.51522000" + }, + { + "id": "105020", + "name": "Kafranbel", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.61376000", + "longitude": "36.56449000" + }, + { + "id": "105023", + "name": "Khān Shaykhūn", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.44208000", + "longitude": "36.65095000" + }, + { + "id": "105026", + "name": "Maarrat al-Nu'man District", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.53858000", + "longitude": "36.79193000" + }, + { + "id": "105031", + "name": "Ma‘arratmişrīn", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "36.01152000", + "longitude": "36.67183000" + }, + { + "id": "105044", + "name": "Salqīn", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "36.13865000", + "longitude": "36.45244000" + }, + { + "id": "105046", + "name": "Sarāqib", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.86447000", + "longitude": "36.80591000" + }, + { + "id": "105045", + "name": "Sarmīn", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.90403000", + "longitude": "36.72501000" + }, + { + "id": "105054", + "name": "Taftanāz", + "state_id": 2940, + "state_code": "ID", + "country_id": 215, + "country_code": "SY", + "latitude": "35.99832000", + "longitude": "36.78579000" + }, + { + "id": "104959", + "name": "Al-Haffah District", + "state_id": 2938, + "state_code": "LA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.59687000", + "longitude": "36.11198000" + }, + { + "id": "105071", + "name": "Şlinfah", + "state_id": 2938, + "state_code": "LA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.59822000", + "longitude": "36.18770000" + }, + { + "id": "105007", + "name": "Jablah", + "state_id": 2938, + "state_code": "LA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.36211000", + "longitude": "35.92759000" + }, + { + "id": "105008", + "name": "Jableh District", + "state_id": 2938, + "state_code": "LA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.29048000", + "longitude": "36.04490000" + }, + { + "id": "105021", + "name": "Kassab", + "state_id": 2938, + "state_code": "LA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.92639000", + "longitude": "35.98970000" + }, + { + "id": "105024", + "name": "Latakia", + "state_id": 2938, + "state_code": "LA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.53168000", + "longitude": "35.79011000" + }, + { + "id": "105025", + "name": "Latakia District", + "state_id": 2938, + "state_code": "LA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.72426000", + "longitude": "35.94150000" + }, + { + "id": "105039", + "name": "Qardaha District", + "state_id": 2938, + "state_code": "LA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.39593000", + "longitude": "36.08603000" + }, + { + "id": "104952", + "name": "Al Qunayţirah", + "state_id": 2943, + "state_code": "QU", + "country_id": 215, + "country_code": "SY", + "latitude": "33.12595000", + "longitude": "35.82461000" + }, + { + "id": "104947", + "name": "Al Kiswah", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.35810000", + "longitude": "36.24190000" + }, + { + "id": "104954", + "name": "Al Quţayfah", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.73848000", + "longitude": "36.60071000" + }, + { + "id": "104965", + "name": "Al-Zabadani District", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.70819000", + "longitude": "36.11198000" + }, + { + "id": "104968", + "name": "An Nabk", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "34.02403000", + "longitude": "36.72848000" + }, + { + "id": "104980", + "name": "At Tall", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.61033000", + "longitude": "36.31070000" + }, + { + "id": "104982", + "name": "Az Zabadānī", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.72488000", + "longitude": "36.10050000" + }, + { + "id": "105070", + "name": "Şaydnāyā", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.69473000", + "longitude": "36.37146000" + }, + { + "id": "105077", + "name": "Ḩarastā", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.55869000", + "longitude": "36.36515000" + }, + { + "id": "105081", + "name": "‘Irbīn", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.53719000", + "longitude": "36.36635000" + }, + { + "id": "104991", + "name": "Dayr al ‘Aşāfīr", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.46585000", + "longitude": "36.42044000" + }, + { + "id": "104995", + "name": "Dārayyā", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.45835000", + "longitude": "36.23256000" + }, + { + "id": "104994", + "name": "Douma", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.57175000", + "longitude": "36.40270000" + }, + { + "id": "105009", + "name": "Jaramānā", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.48620000", + "longitude": "36.34614000" + }, + { + "id": "105011", + "name": "Jayrūd", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.80709000", + "longitude": "36.73861000" + }, + { + "id": "105032", + "name": "Ma‘lūlā", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.84529000", + "longitude": "36.54514000" + }, + { + "id": "105033", + "name": "Medaya", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.69032000", + "longitude": "36.10354000" + }, + { + "id": "105040", + "name": "Qaţanā", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.43757000", + "longitude": "36.07888000" + }, + { + "id": "105041", + "name": "Qārah", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "34.15558000", + "longitude": "36.74284000" + }, + { + "id": "105065", + "name": "Yabrūd", + "state_id": 2935, + "state_code": "RD", + "country_id": 215, + "country_code": "SY", + "latitude": "33.96921000", + "longitude": "36.65729000" + }, + { + "id": "104941", + "name": "Ad Duraykīsh", + "state_id": 2947, + "state_code": "TA", + "country_id": 215, + "country_code": "SY", + "latitude": "34.89514000", + "longitude": "36.14303000" + }, + { + "id": "104987", + "name": "Bāniyās", + "state_id": 2947, + "state_code": "TA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.18188000", + "longitude": "35.94871000" + }, + { + "id": "105015", + "name": "Kaff al-Jaa", + "state_id": 2947, + "state_code": "TA", + "country_id": 215, + "country_code": "SY", + "latitude": "35.08638000", + "longitude": "36.20605000" + }, + { + "id": "105042", + "name": "Safita District", + "state_id": 2947, + "state_code": "TA", + "country_id": 215, + "country_code": "SY", + "latitude": "34.80419000", + "longitude": "36.12293000" + }, + { + "id": "105047", + "name": "Satita", + "state_id": 2947, + "state_code": "TA", + "country_id": 215, + "country_code": "SY", + "latitude": "34.82099000", + "longitude": "36.11773000" + }, + { + "id": "105060", + "name": "Tartouss", + "state_id": 2947, + "state_code": "TA", + "country_id": 215, + "country_code": "SY", + "latitude": "34.88902000", + "longitude": "35.88659000" + }, + { + "id": "109003", + "name": "Changhua", + "state_id": 3404, + "state_code": "CHA", + "country_id": 216, + "country_code": "TW", + "latitude": "23.95361000", + "longitude": "120.49083000" + }, + { + "id": "109038", + "name": "Yuanlin", + "state_id": 3404, + "state_code": "CHA", + "country_id": 216, + "country_code": "TW", + "latitude": "23.95671000", + "longitude": "120.57608000" + }, + { + "id": "109005", + "name": "Chiayi County", + "state_id": 3418, + "state_code": "CYQ", + "country_id": 216, + "country_code": "TW", + "latitude": "23.46333000", + "longitude": "120.58166000" + }, + { + "id": "109004", + "name": "Chiayi", + "state_id": 3408, + "state_code": "CYI", + "country_id": 216, + "country_code": "TW", + "latitude": "23.47722000", + "longitude": "120.44527000" + }, + { + "id": "109026", + "name": "Pizitou", + "state_id": 3408, + "state_code": "CYI", + "country_id": 216, + "country_code": "TW", + "latitude": "23.48556000", + "longitude": "120.44472000" + }, + { + "id": "109011", + "name": "Hsinchu County", + "state_id": 3417, + "state_code": "HSZ", + "country_id": 216, + "country_code": "TW", + "latitude": "24.67416000", + "longitude": "121.16111000" + }, + { + "id": "109010", + "name": "Hsinchu", + "state_id": 3423, + "state_code": "HSQ", + "country_id": 216, + "country_code": "TW", + "latitude": "24.80361000", + "longitude": "120.96861000" + }, + { + "id": "109012", + "name": "Hualien", + "state_id": 3411, + "state_code": "HUA", + "country_id": 216, + "country_code": "TW", + "latitude": "23.78166000", + "longitude": "121.39333000" + }, + { + "id": "109013", + "name": "Hualien City", + "state_id": 3411, + "state_code": "HUA", + "country_id": 216, + "country_code": "TW", + "latitude": "23.97694000", + "longitude": "121.60444000" + }, + { + "id": "109016", + "name": "Kaohsiung", + "state_id": 3412, + "state_code": "KHH", + "country_id": 216, + "country_code": "TW", + "latitude": "22.61626000", + "longitude": "120.31333000" + }, + { + "id": "109014", + "name": "Jincheng", + "state_id": 3415, + "state_code": "KIN", + "country_id": 216, + "country_code": "TW", + "latitude": "24.43415000", + "longitude": "118.31712000" + }, + { + "id": "109017", + "name": "Kinmen County", + "state_id": 3415, + "state_code": "KIN", + "country_id": 216, + "country_code": "TW", + "latitude": "24.45333000", + "longitude": "118.38861000" + }, + { + "id": "109018", + "name": "Lienchiang", + "state_id": 3420, + "state_code": "LIE", + "country_id": 216, + "country_code": "TW", + "latitude": "26.37004000", + "longitude": "120.49545000" + }, + { + "id": "109022", + "name": "Nangan", + "state_id": 3420, + "state_code": "LIE", + "country_id": 216, + "country_code": "TW", + "latitude": "26.15039000", + "longitude": "119.93284000" + }, + { + "id": "109021", + "name": "Miaoli", + "state_id": 3413, + "state_code": "MIA", + "country_id": 216, + "country_code": "TW", + "latitude": "24.48972000", + "longitude": "120.90638000" + }, + { + "id": "109019", + "name": "Lugu", + "state_id": 3407, + "state_code": "NAN", + "country_id": 216, + "country_code": "TW", + "latitude": "23.74639000", + "longitude": "120.75250000" + }, + { + "id": "109023", + "name": "Nantou", + "state_id": 3407, + "state_code": "NAN", + "country_id": 216, + "country_code": "TW", + "latitude": "23.83419000", + "longitude": "120.92704000" + }, + { + "id": "109027", + "name": "Puli", + "state_id": 3407, + "state_code": "NAN", + "country_id": 216, + "country_code": "TW", + "latitude": "23.96639000", + "longitude": "120.96952000" + }, + { + "id": "109041", + "name": "Zhongxing New Village", + "state_id": 3407, + "state_code": "NAN", + "country_id": 216, + "country_code": "TW", + "latitude": "23.95908000", + "longitude": "120.68516000" + }, + { + "id": "109020", + "name": "Magong", + "state_id": 3403, + "state_code": "PEN", + "country_id": 216, + "country_code": "TW", + "latitude": "23.56540000", + "longitude": "119.58627000" + }, + { + "id": "109024", + "name": "Penghu County", + "state_id": 3403, + "state_code": "PEN", + "country_id": 216, + "country_code": "TW", + "latitude": "23.57111000", + "longitude": "119.61138000" + }, + { + "id": "109007", + "name": "Donggang", + "state_id": 3405, + "state_code": "PIF", + "country_id": 216, + "country_code": "TW", + "latitude": "22.46515000", + "longitude": "120.44927000" + }, + { + "id": "109009", + "name": "Hengchun", + "state_id": 3405, + "state_code": "PIF", + "country_id": 216, + "country_code": "TW", + "latitude": "22.00417000", + "longitude": "120.74389000" + }, + { + "id": "109025", + "name": "Pingtung", + "state_id": 3405, + "state_code": "PIF", + "country_id": 216, + "country_code": "TW", + "latitude": "22.49555000", + "longitude": "120.61444000" + }, + { + "id": "109028", + "name": "Taichung", + "state_id": 3406, + "state_code": "TXG", + "country_id": 216, + "country_code": "TW", + "latitude": "24.14690000", + "longitude": "120.68390000" + }, + { + "id": "109029", + "name": "Taichung City", + "state_id": 3406, + "state_code": "TXG", + "country_id": 216, + "country_code": "TW", + "latitude": "24.15472000", + "longitude": "120.67297000" + }, + { + "id": "109030", + "name": "Tainan", + "state_id": 3421, + "state_code": "TNN", + "country_id": 216, + "country_code": "TW", + "latitude": "22.99083000", + "longitude": "120.21333000" + }, + { + "id": "109039", + "name": "Yujing", + "state_id": 3421, + "state_code": "TNN", + "country_id": 216, + "country_code": "TW", + "latitude": "23.12493000", + "longitude": "120.46138000" + }, + { + "id": "109002", + "name": "Banqiao", + "state_id": 3422, + "state_code": "TPE", + "country_id": 216, + "country_code": "TW", + "latitude": "25.01427000", + "longitude": "121.46719000" + }, + { + "id": "109015", + "name": "Jiufen", + "state_id": 3422, + "state_code": "TPE", + "country_id": 216, + "country_code": "TW", + "latitude": "25.10957000", + "longitude": "121.84424000" + }, + { + "id": "109031", + "name": "Taipei", + "state_id": 3422, + "state_code": "TPE", + "country_id": 216, + "country_code": "TW", + "latitude": "25.04776000", + "longitude": "121.53185000" + }, + { + "id": "109032", + "name": "Taipei City", + "state_id": 3422, + "state_code": "TPE", + "country_id": 216, + "country_code": "TW", + "latitude": "25.08300000", + "longitude": "121.55331000" + }, + { + "id": "109033", + "name": "Taitung", + "state_id": 3410, + "state_code": "TTT", + "country_id": 216, + "country_code": "TW", + "latitude": "22.88361000", + "longitude": "121.04833000" + }, + { + "id": "109034", + "name": "Taitung City", + "state_id": 3410, + "state_code": "TTT", + "country_id": 216, + "country_code": "TW", + "latitude": "22.75830000", + "longitude": "121.14440000" + }, + { + "id": "109006", + "name": "Daxi", + "state_id": 3419, + "state_code": "TAO", + "country_id": 216, + "country_code": "TW", + "latitude": "24.88373000", + "longitude": "121.29043000" + }, + { + "id": "109035", + "name": "Taoyuan", + "state_id": 3419, + "state_code": "TAO", + "country_id": 216, + "country_code": "TW", + "latitude": "24.89500000", + "longitude": "121.24611000" + }, + { + "id": "109036", + "name": "Taoyuan City", + "state_id": 3419, + "state_code": "TAO", + "country_id": 216, + "country_code": "TW", + "latitude": "24.99368000", + "longitude": "121.29696000" + }, + { + "id": "109037", + "name": "Yilan", + "state_id": 3402, + "state_code": "ILA", + "country_id": 216, + "country_code": "TW", + "latitude": "24.54250000", + "longitude": "121.63361000" + }, + { + "id": "109008", + "name": "Douliu", + "state_id": 3416, + "state_code": "YUN", + "country_id": 216, + "country_code": "TW", + "latitude": "23.70944000", + "longitude": "120.54333000" + }, + { + "id": "109040", + "name": "Yunlin", + "state_id": 3416, + "state_code": "YUN", + "country_id": 216, + "country_code": "TW", + "latitude": "23.70701000", + "longitude": "120.38481000" + }, + { + "id": "106769", + "name": "Darband", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.86776000", + "longitude": "69.96642000" + }, + { + "id": "106774", + "name": "Hisor", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.52504000", + "longitude": "68.55124000" + }, + { + "id": "106779", + "name": "Karakenja", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "39.23585000", + "longitude": "71.52412000" + }, + { + "id": "106780", + "name": "Khodzha-Maston", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.74457000", + "longitude": "68.62702000" + }, + { + "id": "106800", + "name": "Novobod", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "39.01084000", + "longitude": "70.15082000" + }, + { + "id": "106801", + "name": "Obigarm", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.71731000", + "longitude": "69.70885000" + }, + { + "id": "106811", + "name": "Rasht", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "39.02871000", + "longitude": "70.37446000" + }, + { + "id": "106812", + "name": "Roghun", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.69331000", + "longitude": "69.73692000" + }, + { + "id": "106813", + "name": "Shahrinav", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.57085000", + "longitude": "68.33498000" + }, + { + "id": "106819", + "name": "Tagob", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.83827000", + "longitude": "68.89847000" + }, + { + "id": "106821", + "name": "Tursunzoda", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.51271000", + "longitude": "68.23163000" + }, + { + "id": "106822", + "name": "Vahdat", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.55632000", + "longitude": "69.01354000" + }, + { + "id": "106823", + "name": "Vahdat District", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.83333000", + "longitude": "69.33333000" + }, + { + "id": "106825", + "name": "Varzob", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.77369000", + "longitude": "68.81776000" + }, + { + "id": "106826", + "name": "Varzob District", + "state_id": 3397, + "state_code": "RA", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.75000000", + "longitude": "68.75000000" + }, + { + "id": "106776", + "name": "Ishqoshim", + "state_id": 3399, + "state_code": "GB", + "country_id": 217, + "country_code": "TJ", + "latitude": "36.72484000", + "longitude": "71.61331000" + }, + { + "id": "106781", + "name": "Khorugh", + "state_id": 3399, + "state_code": "GB", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.48974000", + "longitude": "71.55304000" + }, + { + "id": "106790", + "name": "Murghob", + "state_id": 3399, + "state_code": "GB", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.17023000", + "longitude": "73.96674000" + }, + { + "id": "106796", + "name": "Nohiyai Shughnon", + "state_id": 3399, + "state_code": "GB", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.70004000", + "longitude": "72.16748000" + }, + { + "id": "106760", + "name": "Abdurahmoni Jomí", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.94636000", + "longitude": "68.80878000" + }, + { + "id": "106765", + "name": "Bŭstonqal’a", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.84783000", + "longitude": "68.83125000" + }, + { + "id": "106763", + "name": "Boshchorbogh", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.52027000", + "longitude": "68.12825000" + }, + { + "id": "106767", + "name": "Chubek", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.61453000", + "longitude": "69.70525000" + }, + { + "id": "106768", + "name": "Danghara", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.09578000", + "longitude": "69.33998000" + }, + { + "id": "106770", + "name": "Dŭstí", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.34812000", + "longitude": "68.66398000" + }, + { + "id": "106771", + "name": "Farkhor", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.49219000", + "longitude": "69.40356000" + }, + { + "id": "106773", + "name": "Gharavŭtí", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.56703000", + "longitude": "68.44668000" + }, + { + "id": "106778", + "name": "Jilikŭl", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.49167000", + "longitude": "68.53106000" + }, + { + "id": "106788", + "name": "Kŭlob", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.91459000", + "longitude": "69.78454000" + }, + { + "id": "106784", + "name": "Kirov", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.81908000", + "longitude": "68.85905000" + }, + { + "id": "106785", + "name": "Kolkhozobod", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.58823000", + "longitude": "68.65886000" + }, + { + "id": "106791", + "name": "Mŭ’minobod", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.10714000", + "longitude": "70.03213000" + }, + { + "id": "106789", + "name": "Moskovskiy", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.60931000", + "longitude": "68.58094000" + }, + { + "id": "106793", + "name": "Nohiyai Kolkhozobod", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.57277000", + "longitude": "68.81528000" + }, + { + "id": "106795", + "name": "Nohiyai Panj", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.31611000", + "longitude": "69.16679000" + }, + { + "id": "106797", + "name": "Nohiyai Vakhsh", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.75602000", + "longitude": "68.94138000" + }, + { + "id": "106798", + "name": "Norak", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.38917000", + "longitude": "69.32272000" + }, + { + "id": "106803", + "name": "Orzu", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.55820000", + "longitude": "68.81952000" + }, + { + "id": "106806", + "name": "Panj", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.23634000", + "longitude": "69.09911000" + }, + { + "id": "106810", + "name": "Qŭrghonteppa", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.83399000", + "longitude": "68.78186000" + }, + { + "id": "106814", + "name": "Shahritus", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.26206000", + "longitude": "68.13849000" + }, + { + "id": "106817", + "name": "Sovet", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.04670000", + "longitude": "69.58822000" + }, + { + "id": "106820", + "name": "Tartiki", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.58221000", + "longitude": "68.13347000" + }, + { + "id": "106824", + "name": "Vakhsh", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.71485000", + "longitude": "68.83456000" + }, + { + "id": "106828", + "name": "Vose’", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "37.80396000", + "longitude": "69.64417000" + }, + { + "id": "106829", + "name": "Yovon", + "state_id": 3398, + "state_code": "KT", + "country_id": 217, + "country_code": "TJ", + "latitude": "38.31408000", + "longitude": "69.03784000" + }, + { + "id": "106761", + "name": "Adrasmon", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.64928000", + "longitude": "69.98472000" + }, + { + "id": "106762", + "name": "Ayní", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "39.39406000", + "longitude": "68.53766000" + }, + { + "id": "106764", + "name": "Bŭston", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.52286000", + "longitude": "69.33307000" + }, + { + "id": "106766", + "name": "Chkalov", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.23417000", + "longitude": "69.69481000" + }, + { + "id": "106772", + "name": "Ghafurov", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.21571000", + "longitude": "69.72867000" + }, + { + "id": "106775", + "name": "Isfara", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.12649000", + "longitude": "70.62526000" + }, + { + "id": "106777", + "name": "Istaravshan", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "39.91420000", + "longitude": "69.00328000" + }, + { + "id": "106782", + "name": "Khŭjand", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.28256000", + "longitude": "69.62216000" + }, + { + "id": "106783", + "name": "Kim", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.20798000", + "longitude": "70.46882000" + }, + { + "id": "106786", + "name": "Konibodom", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.29414000", + "longitude": "70.43122000" + }, + { + "id": "106787", + "name": "Konsoy", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.49155000", + "longitude": "69.70245000" + }, + { + "id": "106792", + "name": "Neftobod", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.21524000", + "longitude": "70.57193000" + }, + { + "id": "106794", + "name": "Nohiyai Konibodom", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.26877000", + "longitude": "70.33057000" + }, + { + "id": "106799", + "name": "Nov", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.15220000", + "longitude": "69.37076000" + }, + { + "id": "106802", + "name": "Oltintopkan", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.65425000", + "longitude": "69.59811000" + }, + { + "id": "106804", + "name": "Pakhtakoron", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.15709000", + "longitude": "68.74659000" + }, + { + "id": "106805", + "name": "Palos", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.31628000", + "longitude": "69.73743000" + }, + { + "id": "106807", + "name": "Panjakent", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "39.49524000", + "longitude": "67.60931000" + }, + { + "id": "106808", + "name": "Proletar", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.16713000", + "longitude": "69.50163000" + }, + { + "id": "106809", + "name": "Quruqsoy", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.57648000", + "longitude": "69.37962000" + }, + { + "id": "106815", + "name": "Shaydon", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.66992000", + "longitude": "70.35020000" + }, + { + "id": "106816", + "name": "Shŭrob", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.04605000", + "longitude": "70.54117000" + }, + { + "id": "106818", + "name": "Taboshar", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "40.57017000", + "longitude": "69.64175000" + }, + { + "id": "106827", + "name": "Vorukh", + "state_id": 3400, + "state_code": "SU", + "country_id": 217, + "country_code": "TJ", + "latitude": "39.85125000", + "longitude": "70.58012000" + }, + { + "id": "109042", + "name": "Arusha", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.36667000", + "longitude": "36.68333000" + }, + { + "id": "109117", + "name": "Kingori", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.28333000", + "longitude": "36.98333000" + }, + { + "id": "109121", + "name": "Kiratu", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.33333000", + "longitude": "35.66667000" + }, + { + "id": "109144", + "name": "Longido", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.73319000", + "longitude": "36.69773000" + }, + { + "id": "109189", + "name": "Mbuguni", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.56667000", + "longitude": "36.95000000" + }, + { + "id": "109192", + "name": "Merelani", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.56182000", + "longitude": "36.97895000" + }, + { + "id": "109193", + "name": "Meru", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.30500000", + "longitude": "36.80100000" + }, + { + "id": "109207", + "name": "Monduli", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.30000000", + "longitude": "36.45000000" + }, + { + "id": "109218", + "name": "Mto wa Mbu", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.35000000", + "longitude": "35.85000000" + }, + { + "id": "109238", + "name": "Namanga", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.55116000", + "longitude": "36.78377000" + }, + { + "id": "109253", + "name": "Ngorongoro", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.23973000", + "longitude": "35.48747000" + }, + { + "id": "109257", + "name": "Nkoaranga", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.33333000", + "longitude": "36.80000000" + }, + { + "id": "109270", + "name": "Poli", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.33333000", + "longitude": "36.80000000" + }, + { + "id": "109293", + "name": "Usa River", + "state_id": 1491, + "state_code": "01", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.36667000", + "longitude": "36.85000000" + }, + { + "id": "109063", + "name": "Dar es Salaam", + "state_id": 1490, + "state_code": "02", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.82349000", + "longitude": "39.26951000" + }, + { + "id": "109157", + "name": "Magomeni", + "state_id": 1490, + "state_code": "02", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.80000000", + "longitude": "39.25000000" + }, + { + "id": "109065", + "name": "Dodoma", + "state_id": 1466, + "state_code": "03", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.17221000", + "longitude": "35.73947000" + }, + { + "id": "109101", + "name": "Kibakwe", + "state_id": 1466, + "state_code": "03", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.71667000", + "longitude": "36.36667000" + }, + { + "id": "109125", + "name": "Kisasa", + "state_id": 1466, + "state_code": "03", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.17526000", + "longitude": "35.79266000" + }, + { + "id": "109135", + "name": "Kondoa", + "state_id": 1466, + "state_code": "03", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.70931000", + "longitude": "35.86227000" + }, + { + "id": "109136", + "name": "Kongwa", + "state_id": 1466, + "state_code": "03", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.20000000", + "longitude": "36.41667000" + }, + { + "id": "109211", + "name": "Mpwapwa", + "state_id": 1466, + "state_code": "03", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.35000000", + "longitude": "36.48333000" + }, + { + "id": "109212", + "name": "Msanga", + "state_id": 1466, + "state_code": "03", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.05000000", + "longitude": "36.03333000" + }, + { + "id": "109055", + "name": "Buseresere", + "state_id": 1481, + "state_code": "27", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.02361000", + "longitude": "31.87472000" + }, + { + "id": "109061", + "name": "Chato", + "state_id": 1481, + "state_code": "27", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.63778000", + "longitude": "31.76694000" + }, + { + "id": "109071", + "name": "Geita", + "state_id": 1481, + "state_code": "27", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.87250000", + "longitude": "32.23250000" + }, + { + "id": "109094", + "name": "Kasamwa", + "state_id": 1481, + "state_code": "27", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.85000000", + "longitude": "32.43333000" + }, + { + "id": "109098", + "name": "Katoro", + "state_id": 1481, + "state_code": "27", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.02028000", + "longitude": "31.89583000" + }, + { + "id": "109178", + "name": "Masumbwe", + "state_id": 1481, + "state_code": "27", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.63333000", + "longitude": "32.18333000" + }, + { + "id": "109296", + "name": "Ushirombo", + "state_id": 1481, + "state_code": "27", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.49194000", + "longitude": "31.96389000" + }, + { + "id": "109301", + "name": "Uyovu", + "state_id": 1481, + "state_code": "27", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.28333000", + "longitude": "31.52583000" + }, + { + "id": "109081", + "name": "Ilula", + "state_id": 1489, + "state_code": "04", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.67660000", + "longitude": "36.03658000" + }, + { + "id": "109083", + "name": "Iringa", + "state_id": 1489, + "state_code": "04", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.76667000", + "longitude": "35.70000000" + }, + { + "id": "109087", + "name": "Izazi", + "state_id": 1489, + "state_code": "04", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.20000000", + "longitude": "35.73333000" + }, + { + "id": "109154", + "name": "Mafinga", + "state_id": 1489, + "state_code": "04", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.25000000", + "longitude": "35.06667000" + }, + { + "id": "109166", + "name": "Makungu", + "state_id": 1489, + "state_code": "04", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.73333000", + "longitude": "35.28333000" + }, + { + "id": "109169", + "name": "Malangali", + "state_id": 1489, + "state_code": "04", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.56667000", + "longitude": "34.85000000" + }, + { + "id": "109048", + "name": "Biharamulo", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.63194000", + "longitude": "31.30889000" + }, + { + "id": "109049", + "name": "Bugarama", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.87056000", + "longitude": "30.52806000" + }, + { + "id": "109050", + "name": "Bugene", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.59111000", + "longitude": "31.14028000" + }, + { + "id": "109052", + "name": "Bukoba", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.33167000", + "longitude": "31.81222000" + }, + { + "id": "109088", + "name": "Kabanga", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.63861000", + "longitude": "30.46778000" + }, + { + "id": "109092", + "name": "Kamachumu", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.61861000", + "longitude": "31.62000000" + }, + { + "id": "109096", + "name": "Katerero", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.40000000", + "longitude": "31.73333000" + }, + { + "id": "109099", + "name": "Katoro", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.39972000", + "longitude": "31.50028000" + }, + { + "id": "109138", + "name": "Kyaka", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.25222000", + "longitude": "31.42028000" + }, + { + "id": "109251", + "name": "Ngara", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.51222000", + "longitude": "30.65583000" + }, + { + "id": "109259", + "name": "Nshamba", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.79833000", + "longitude": "31.55111000" + }, + { + "id": "109260", + "name": "Nsunga", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.14389000", + "longitude": "31.39472000" + }, + { + "id": "109263", + "name": "Nyakahanga", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.60333000", + "longitude": "31.14139000" + }, + { + "id": "109273", + "name": "Rulenge", + "state_id": 1465, + "state_code": "05", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.71750000", + "longitude": "30.63250000" + }, + { + "id": "109082", + "name": "Inyonga", + "state_id": 1482, + "state_code": "28", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.71667000", + "longitude": "32.06667000" + }, + { + "id": "109093", + "name": "Karema", + "state_id": 1482, + "state_code": "28", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.82052000", + "longitude": "30.43887000" + }, + { + "id": "109210", + "name": "Mpanda", + "state_id": 1482, + "state_code": "28", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.34379000", + "longitude": "31.06951000" + }, + { + "id": "109295", + "name": "Usevia", + "state_id": 1482, + "state_code": "28", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.10000000", + "longitude": "31.23333000" + }, + { + "id": "109090", + "name": "Kakonko", + "state_id": 1478, + "state_code": "08", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.28278000", + "longitude": "30.96417000" + }, + { + "id": "109095", + "name": "Kasulu", + "state_id": 1478, + "state_code": "08", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.57667000", + "longitude": "30.10250000" + }, + { + "id": "109105", + "name": "Kibondo", + "state_id": 1478, + "state_code": "08", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.58639000", + "longitude": "30.72028000" + }, + { + "id": "109108", + "name": "Kigoma", + "state_id": 1478, + "state_code": "08", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.87694000", + "longitude": "29.62667000" + }, + { + "id": "109152", + "name": "Mabamba", + "state_id": 1478, + "state_code": "08", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.59833000", + "longitude": "30.50194000" + }, + { + "id": "109230", + "name": "Mwandiga", + "state_id": 1478, + "state_code": "08", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.83000000", + "longitude": "29.65806000" + }, + { + "id": "109255", + "name": "Nguruka", + "state_id": 1478, + "state_code": "08", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.10917000", + "longitude": "31.04194000" + }, + { + "id": "109299", + "name": "Uvinza", + "state_id": 1478, + "state_code": "08", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.10361000", + "longitude": "30.39111000" + }, + { + "id": "109072", + "name": "Hedaru", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.50000000", + "longitude": "37.90000000" + }, + { + "id": "109111", + "name": "Kihurio", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.46667000", + "longitude": "38.06667000" + }, + { + "id": "109128", + "name": "Kisiwani", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.13333000", + "longitude": "37.95000000" + }, + { + "id": "109137", + "name": "Kwakoa", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.76667000", + "longitude": "37.71667000" + }, + { + "id": "109141", + "name": "Lembeni", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.78333000", + "longitude": "37.61667000" + }, + { + "id": "109164", + "name": "Makanya", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.36667000", + "longitude": "37.83333000" + }, + { + "id": "109209", + "name": "Moshi", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.35000000", + "longitude": "37.33333000" + }, + { + "id": "109233", + "name": "Mwembe", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.15000000", + "longitude": "37.85000000" + }, + { + "id": "109248", + "name": "Ndungu", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.36667000", + "longitude": "38.05000000" + }, + { + "id": "109274", + "name": "Same", + "state_id": 1467, + "state_code": "09", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.22199000", + "longitude": "37.88278000" + }, + { + "id": "109142", + "name": "Lindi", + "state_id": 1483, + "state_code": "12", + "country_id": 218, + "country_code": "TZ", + "latitude": "-9.99709000", + "longitude": "39.71649000" + }, + { + "id": "109187", + "name": "Mbekenyera", + "state_id": 1483, + "state_code": "12", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.00000000", + "longitude": "38.98333000" + }, + { + "id": "109198", + "name": "Mingoyo", + "state_id": 1483, + "state_code": "12", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.10526000", + "longitude": "39.61859000" + }, + { + "id": "109214", + "name": "Mtama", + "state_id": 1483, + "state_code": "12", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.30000000", + "longitude": "39.36667000" + }, + { + "id": "109235", + "name": "Nachingwea", + "state_id": 1483, + "state_code": "12", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.37250000", + "longitude": "38.76251000" + }, + { + "id": "109266", + "name": "Nyangao", + "state_id": 1483, + "state_code": "12", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.33333000", + "longitude": "39.28333000" + }, + { + "id": "109272", + "name": "Ruangwa", + "state_id": 1483, + "state_code": "12", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.06667000", + "longitude": "38.93333000" + }, + { + "id": "109043", + "name": "Babati", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.21667000", + "longitude": "35.75000000" + }, + { + "id": "109046", + "name": "Bashanet", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.23333000", + "longitude": "35.41667000" + }, + { + "id": "109047", + "name": "Basotu", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.36667000", + "longitude": "35.08333000" + }, + { + "id": "109064", + "name": "Dareda", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.21667000", + "longitude": "35.55000000" + }, + { + "id": "109066", + "name": "Dongobesh", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.06667000", + "longitude": "35.38333000" + }, + { + "id": "109067", + "name": "Endasak", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.41667000", + "longitude": "35.51667000" + }, + { + "id": "109068", + "name": "Galappo", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.26667000", + "longitude": "35.85000000" + }, + { + "id": "109097", + "name": "Katesh", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.52483000", + "longitude": "35.38490000" + }, + { + "id": "109103", + "name": "Kibaya", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.30000000", + "longitude": "36.56667000" + }, + { + "id": "109122", + "name": "Kirya", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.91667000", + "longitude": "37.48333000" + }, + { + "id": "109158", + "name": "Magugu", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.01667000", + "longitude": "35.76667000" + }, + { + "id": "109190", + "name": "Mbulu", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.85000000", + "longitude": "35.53333000" + }, + { + "id": "109234", + "name": "Naberera", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.20000000", + "longitude": "36.93333000" + }, + { + "id": "109243", + "name": "Nangwa", + "state_id": 1484, + "state_code": "26", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.46667000", + "longitude": "35.45000000" + }, + { + "id": "109053", + "name": "Bukonyo", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.95000000", + "longitude": "32.93333000" + }, + { + "id": "109056", + "name": "Butiama", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.76667000", + "longitude": "33.96667000" + }, + { + "id": "109085", + "name": "Issenye", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.00000000", + "longitude": "34.33333000" + }, + { + "id": "109102", + "name": "Kibara", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.15000000", + "longitude": "33.45000000" + }, + { + "id": "109221", + "name": "Mugango", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.68333000", + "longitude": "33.70000000" + }, + { + "id": "109222", + "name": "Mugumu", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.85000000", + "longitude": "34.70000000" + }, + { + "id": "109225", + "name": "Muriti", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.98333000", + "longitude": "32.91667000" + }, + { + "id": "109226", + "name": "Musoma", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.50000000", + "longitude": "33.80000000" + }, + { + "id": "109236", + "name": "Nakatunguru", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.11667000", + "longitude": "33.06667000" + }, + { + "id": "109245", + "name": "Nansio", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.13333000", + "longitude": "33.05000000" + }, + { + "id": "109265", + "name": "Nyamuswa", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.90000000", + "longitude": "34.01667000" + }, + { + "id": "109280", + "name": "Sirari", + "state_id": 1468, + "state_code": "13", + "country_id": 218, + "country_code": "TZ", + "latitude": "-1.25367000", + "longitude": "34.47596000" + }, + { + "id": "109070", + "name": "Geiro", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.15000000", + "longitude": "36.86667000" + }, + { + "id": "109073", + "name": "Ifakara", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.13333000", + "longitude": "36.68333000" + }, + { + "id": "109106", + "name": "Kidatu", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.69916000", + "longitude": "36.95722000" + }, + { + "id": "109107", + "name": "Kidodi", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.60361000", + "longitude": "37.00438000" + }, + { + "id": "109115", + "name": "Kilosa", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.83333000", + "longitude": "36.98333000" + }, + { + "id": "109116", + "name": "Kimamba", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.78333000", + "longitude": "37.13333000" + }, + { + "id": "109123", + "name": "Kisanga", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.43622000", + "longitude": "37.70337000" + }, + { + "id": "109149", + "name": "Lupiro", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.38333000", + "longitude": "36.66667000" + }, + { + "id": "109155", + "name": "Magole", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.37697000", + "longitude": "37.37373000" + }, + { + "id": "109160", + "name": "Mahenge", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.68333000", + "longitude": "36.71667000" + }, + { + "id": "109170", + "name": "Malinyi", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.93333000", + "longitude": "36.13333000" + }, + { + "id": "109197", + "name": "Mikumi", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.40409000", + "longitude": "36.98309000" + }, + { + "id": "109206", + "name": "Mlimba", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.80000000", + "longitude": "35.81667000" + }, + { + "id": "109208", + "name": "Morogoro", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.82102000", + "longitude": "37.66122000" + }, + { + "id": "109213", + "name": "Msowero", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.53333000", + "longitude": "37.20000000" + }, + { + "id": "109216", + "name": "Mtimbira", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.78333000", + "longitude": "36.35000000" + }, + { + "id": "109228", + "name": "Mvomero District", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.30000000", + "longitude": "37.45000000" + }, + { + "id": "109252", + "name": "Ngerengere", + "state_id": 1470, + "state_code": "16", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.75000000", + "longitude": "38.11667000" + }, + { + "id": "109062", + "name": "Chiungutwa", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.88333000", + "longitude": "38.98333000" + }, + { + "id": "109129", + "name": "Kitama", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.71667000", + "longitude": "39.73333000" + }, + { + "id": "109130", + "name": "Kitangari", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.65000000", + "longitude": "39.33333000" + }, + { + "id": "109145", + "name": "Luchingu", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.90000000", + "longitude": "39.33333000" + }, + { + "id": "109147", + "name": "Lukuledi", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.56667000", + "longitude": "38.80000000" + }, + { + "id": "109148", + "name": "Lulindi", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.81667000", + "longitude": "39.13333000" + }, + { + "id": "109153", + "name": "Madimba", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.40000000", + "longitude": "40.33333000" + }, + { + "id": "109162", + "name": "Mahuta", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.86667000", + "longitude": "39.45000000" + }, + { + "id": "109176", + "name": "Masasi", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.71667000", + "longitude": "38.80000000" + }, + { + "id": "109177", + "name": "Masuguru", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-11.36667000", + "longitude": "38.41667000" + }, + { + "id": "109220", + "name": "Mtwara", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.26667000", + "longitude": "40.18333000" + }, + { + "id": "109237", + "name": "Namalenga", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.95000000", + "longitude": "39.10000000" + }, + { + "id": "109240", + "name": "Namikupa", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.83333000", + "longitude": "39.60000000" + }, + { + "id": "109241", + "name": "Nanganga", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.38333000", + "longitude": "39.15000000" + }, + { + "id": "109242", + "name": "Nangomba", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.90000000", + "longitude": "38.50000000" + }, + { + "id": "109244", + "name": "Nanhyanga", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.80000000", + "longitude": "39.55000000" + }, + { + "id": "109246", + "name": "Nanyamba", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.68333000", + "longitude": "39.83333000" + }, + { + "id": "109249", + "name": "Newala Kisimani", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.95000000", + "longitude": "39.28333000" + }, + { + "id": "109288", + "name": "Tandahimba", + "state_id": 1476, + "state_code": "17", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.75000000", + "longitude": "39.63333000" + }, + { + "id": "109079", + "name": "Ilemela District", + "state_id": 1479, + "state_code": "18", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.44783000", + "longitude": "33.03177000" + }, + { + "id": "109110", + "name": "Kihangara", + "state_id": 1479, + "state_code": "18", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.58333000", + "longitude": "33.35000000" + }, + { + "id": "109171", + "name": "Malya", + "state_id": 1479, + "state_code": "18", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.98333000", + "longitude": "33.51667000" + }, + { + "id": "109199", + "name": "Misasi", + "state_id": 1479, + "state_code": "18", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.00000000", + "longitude": "33.08333000" + }, + { + "id": "109200", + "name": "Misungwi", + "state_id": 1479, + "state_code": "18", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.85000000", + "longitude": "33.08333000" + }, + { + "id": "109232", + "name": "Mwanza", + "state_id": 1479, + "state_code": "18", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.51667000", + "longitude": "32.90000000" + }, + { + "id": "109254", + "name": "Ngudu", + "state_id": 1479, + "state_code": "18", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.96667000", + "longitude": "33.33333000" + }, + { + "id": "109267", + "name": "Nyanguge", + "state_id": 1479, + "state_code": "18", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.55000000", + "longitude": "33.20000000" + }, + { + "id": "109294", + "name": "Usagara", + "state_id": 1479, + "state_code": "18", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.68333000", + "longitude": "33.00000000" + }, + { + "id": "109078", + "name": "Ilembula", + "state_id": 1480, + "state_code": "29", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.90000000", + "longitude": "34.58333000" + }, + { + "id": "109165", + "name": "Makumbako", + "state_id": 1480, + "state_code": "29", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.85000000", + "longitude": "34.83333000" + }, + { + "id": "109172", + "name": "Manda", + "state_id": 1480, + "state_code": "29", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.46667000", + "longitude": "34.58333000" + }, + { + "id": "109181", + "name": "Matamba", + "state_id": 1480, + "state_code": "29", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.98333000", + "longitude": "33.96667000" + }, + { + "id": "109205", + "name": "Mlangali", + "state_id": 1480, + "state_code": "29", + "country_id": 218, + "country_code": "TZ", + "latitude": "-9.78333000", + "longitude": "34.51667000" + }, + { + "id": "109219", + "name": "Mtwango", + "state_id": 1480, + "state_code": "29", + "country_id": 218, + "country_code": "TZ", + "latitude": "-9.01667000", + "longitude": "34.80000000" + }, + { + "id": "109256", + "name": "Njombe", + "state_id": 1480, + "state_code": "29", + "country_id": 218, + "country_code": "TZ", + "latitude": "-9.34917000", + "longitude": "34.77167000" + }, + { + "id": "109134", + "name": "Konde", + "state_id": 1488, + "state_code": "06", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.95000000", + "longitude": "39.75000000" + }, + { + "id": "109196", + "name": "Micheweni", + "state_id": 1488, + "state_code": "06", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.96667000", + "longitude": "39.83333000" + }, + { + "id": "109303", + "name": "Wete", + "state_id": 1488, + "state_code": "06", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.05589000", + "longitude": "39.72938000" + }, + { + "id": "109044", + "name": "Bagamoyo", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.44222000", + "longitude": "38.90422000" + }, + { + "id": "109054", + "name": "Bungu", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.63369000", + "longitude": "39.05818000" + }, + { + "id": "109059", + "name": "Chalinze", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.63784000", + "longitude": "38.35396000" + }, + { + "id": "109077", + "name": "Ikwiriri", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.95618000", + "longitude": "38.97164000" + }, + { + "id": "109100", + "name": "Kibaha", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.76667000", + "longitude": "38.91667000" + }, + { + "id": "109104", + "name": "Kibiti", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.72178000", + "longitude": "38.93749000" + }, + { + "id": "109114", + "name": "Kilindoni", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.91446000", + "longitude": "39.66204000" + }, + { + "id": "109124", + "name": "Kisarawe", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.90000000", + "longitude": "39.06667000" + }, + { + "id": "109146", + "name": "Lugoba", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.45000000", + "longitude": "38.33333000" + }, + { + "id": "109173", + "name": "Maneromango", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.19880000", + "longitude": "38.78478000" + }, + { + "id": "109191", + "name": "Mbumi", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.90577000", + "longitude": "39.21047000" + }, + { + "id": "109202", + "name": "Mkuranga", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.27000000", + "longitude": "39.20000000" + }, + { + "id": "109204", + "name": "Mlandizi", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.70000000", + "longitude": "38.73333000" + }, + { + "id": "109227", + "name": "Mvomero", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.25000000", + "longitude": "38.66667000" + }, + { + "id": "109298", + "name": "Utete", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.98598000", + "longitude": "38.75795000" + }, + { + "id": "109302", + "name": "Vikindu", + "state_id": 1485, + "state_code": "19", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.00667000", + "longitude": "39.29849000" + }, + { + "id": "109058", + "name": "Chala", + "state_id": 1477, + "state_code": "20", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.58333000", + "longitude": "31.26667000" + }, + { + "id": "109120", + "name": "Kirando", + "state_id": 1477, + "state_code": "20", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.41667000", + "longitude": "30.60000000" + }, + { + "id": "109139", + "name": "Laela", + "state_id": 1477, + "state_code": "20", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.56667000", + "longitude": "32.05000000" + }, + { + "id": "109180", + "name": "Matai", + "state_id": 1477, + "state_code": "20", + "country_id": 218, + "country_code": "TZ", + "latitude": "-8.30000000", + "longitude": "31.51667000" + }, + { + "id": "109239", + "name": "Namanyere", + "state_id": 1477, + "state_code": "20", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.51667000", + "longitude": "31.05000000" + }, + { + "id": "109258", + "name": "Nkove", + "state_id": 1477, + "state_code": "20", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.95000000", + "longitude": "30.85000000" + }, + { + "id": "109286", + "name": "Sumbawanga", + "state_id": 1477, + "state_code": "20", + "country_id": 218, + "country_code": "TZ", + "latitude": "-7.96667000", + "longitude": "31.61667000" + }, + { + "id": "109109", + "name": "Kigonsera", + "state_id": 1486, + "state_code": "21", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.80000000", + "longitude": "35.05000000" + }, + { + "id": "109143", + "name": "Liuli", + "state_id": 1486, + "state_code": "21", + "country_id": 218, + "country_code": "TZ", + "latitude": "-11.08333000", + "longitude": "34.63333000" + }, + { + "id": "109159", + "name": "Mahanje", + "state_id": 1486, + "state_code": "21", + "country_id": 218, + "country_code": "TZ", + "latitude": "-9.93333000", + "longitude": "35.33333000" + }, + { + "id": "109174", + "name": "Maposeni", + "state_id": 1486, + "state_code": "21", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.58333000", + "longitude": "35.40000000" + }, + { + "id": "109182", + "name": "Matiri", + "state_id": 1486, + "state_code": "21", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.75000000", + "longitude": "34.90000000" + }, + { + "id": "109186", + "name": "Mbamba Bay", + "state_id": 1486, + "state_code": "21", + "country_id": 218, + "country_code": "TZ", + "latitude": "-11.28333000", + "longitude": "34.76667000" + }, + { + "id": "109188", + "name": "Mbinga", + "state_id": 1486, + "state_code": "21", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.93333000", + "longitude": "35.01667000" + }, + { + "id": "109283", + "name": "Songea", + "state_id": 1486, + "state_code": "21", + "country_id": 218, + "country_code": "TZ", + "latitude": "-10.68333000", + "longitude": "35.65000000" + }, + { + "id": "109291", + "name": "Tingi", + "state_id": 1486, + "state_code": "21", + "country_id": 218, + "country_code": "TZ", + "latitude": "-11.30000000", + "longitude": "35.03333000" + }, + { + "id": "109084", + "name": "Isaka", + "state_id": 1463, + "state_code": "22", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.90000000", + "longitude": "32.93333000" + }, + { + "id": "109089", + "name": "Kahama", + "state_id": 1463, + "state_code": "22", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.83333000", + "longitude": "32.60000000" + }, + { + "id": "109127", + "name": "Kishapu", + "state_id": 1463, + "state_code": "22", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.61667000", + "longitude": "33.86667000" + }, + { + "id": "109195", + "name": "Mhango", + "state_id": 1463, + "state_code": "22", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.28333000", + "longitude": "32.85000000" + }, + { + "id": "109229", + "name": "Mwadui", + "state_id": 1463, + "state_code": "22", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.55000000", + "longitude": "33.60000000" + }, + { + "id": "109268", + "name": "Old Shinyanga", + "state_id": 1463, + "state_code": "22", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.55000000", + "longitude": "33.40000000" + }, + { + "id": "109277", + "name": "Shinyanga", + "state_id": 1463, + "state_code": "22", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.66393000", + "longitude": "33.42118000" + }, + { + "id": "109284", + "name": "Songwa", + "state_id": 1463, + "state_code": "22", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.51667000", + "longitude": "33.51667000" + }, + { + "id": "109290", + "name": "Tinde", + "state_id": 1463, + "state_code": "22", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.88333000", + "longitude": "33.20000000" + }, + { + "id": "109045", + "name": "Bariadi", + "state_id": 1464, + "state_code": "30", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.80000000", + "longitude": "33.98333000" + }, + { + "id": "109126", + "name": "Kisesa", + "state_id": 1464, + "state_code": "30", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.08333000", + "longitude": "34.15000000" + }, + { + "id": "109140", + "name": "Lalago", + "state_id": 1464, + "state_code": "30", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.45000000", + "longitude": "33.95000000" + }, + { + "id": "109168", + "name": "Malampaka", + "state_id": 1464, + "state_code": "30", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.13333000", + "longitude": "33.53333000" + }, + { + "id": "109179", + "name": "Maswa", + "state_id": 1464, + "state_code": "30", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.68333000", + "longitude": "33.98333000" + }, + { + "id": "109183", + "name": "Matonga", + "state_id": 1464, + "state_code": "30", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.38333000", + "longitude": "34.08333000" + }, + { + "id": "109262", + "name": "Nyakabindi", + "state_id": 1464, + "state_code": "30", + "country_id": 218, + "country_code": "TZ", + "latitude": "-2.63333000", + "longitude": "33.98333000" + }, + { + "id": "109264", + "name": "Nyalikungu", + "state_id": 1464, + "state_code": "30", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.18333000", + "longitude": "33.78333000" + }, + { + "id": "109282", + "name": "Somanda", + "state_id": 1464, + "state_code": "30", + "country_id": 218, + "country_code": "TZ", + "latitude": "-3.36667000", + "longitude": "33.95000000" + }, + { + "id": "109074", + "name": "Igugunu", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.56667000", + "longitude": "34.63333000" + }, + { + "id": "109076", + "name": "Ikungi", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.13333000", + "longitude": "34.76667000" + }, + { + "id": "109080", + "name": "Ilongero", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.66667000", + "longitude": "34.86667000" + }, + { + "id": "109086", + "name": "Itigi", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.70000000", + "longitude": "34.48333000" + }, + { + "id": "109113", + "name": "Kilimatinde", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.85000000", + "longitude": "34.95000000" + }, + { + "id": "109118", + "name": "Kintinku", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.88333000", + "longitude": "35.23333000" + }, + { + "id": "109119", + "name": "Kiomboi", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.26667000", + "longitude": "34.36667000" + }, + { + "id": "109194", + "name": "Mgandu", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.95000000", + "longitude": "34.13333000" + }, + { + "id": "109217", + "name": "Mtinko", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.55000000", + "longitude": "34.85000000" + }, + { + "id": "109224", + "name": "Mungaa", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.96667000", + "longitude": "34.88333000" + }, + { + "id": "109247", + "name": "Ndago", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.60000000", + "longitude": "34.35000000" + }, + { + "id": "109271", + "name": "Puma", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.00000000", + "longitude": "34.73333000" + }, + { + "id": "109275", + "name": "Sepuka", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.75000000", + "longitude": "34.53333000" + }, + { + "id": "109276", + "name": "Shelui", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.36667000", + "longitude": "34.20000000" + }, + { + "id": "109279", + "name": "Singida", + "state_id": 1474, + "state_code": "23", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.81629000", + "longitude": "34.74358000" + }, + { + "id": "109057", + "name": "Chake Chake", + "state_id": 1472, + "state_code": "10", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.24586000", + "longitude": "39.76659000" + }, + { + "id": "109215", + "name": "Mtambile", + "state_id": 1472, + "state_code": "10", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.38333000", + "longitude": "39.70000000" + }, + { + "id": "109300", + "name": "Uwelini", + "state_id": 1472, + "state_code": "10", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.40000000", + "longitude": "39.68333000" + }, + { + "id": "109051", + "name": "Bukene", + "state_id": 1469, + "state_code": "24", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.23333000", + "longitude": "32.88333000" + }, + { + "id": "109075", + "name": "Igurubi", + "state_id": 1469, + "state_code": "24", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.00000000", + "longitude": "33.70000000" + }, + { + "id": "109091", + "name": "Kaliua", + "state_id": 1469, + "state_code": "24", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.06056000", + "longitude": "31.79361000" + }, + { + "id": "109151", + "name": "Mabama", + "state_id": 1469, + "state_code": "24", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.13333000", + "longitude": "32.53333000" + }, + { + "id": "109278", + "name": "Sikonge", + "state_id": 1469, + "state_code": "24", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.63333000", + "longitude": "32.76667000" + }, + { + "id": "109287", + "name": "Tabora", + "state_id": 1469, + "state_code": "24", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.01622000", + "longitude": "32.82663000" + }, + { + "id": "109292", + "name": "Tumbi", + "state_id": 1469, + "state_code": "24", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.06667000", + "longitude": "32.73333000" + }, + { + "id": "109297", + "name": "Usoke", + "state_id": 1469, + "state_code": "24", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.16667000", + "longitude": "32.35000000" + }, + { + "id": "109060", + "name": "Chanika", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.41667000", + "longitude": "38.01667000" + }, + { + "id": "109150", + "name": "Lushoto", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.78333000", + "longitude": "38.28333000" + }, + { + "id": "109156", + "name": "Magomeni", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.23333000", + "longitude": "38.11667000" + }, + { + "id": "109163", + "name": "Majengo", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.15000000", + "longitude": "38.98333000" + }, + { + "id": "109167", + "name": "Makuyuni", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.73333000", + "longitude": "38.10000000" + }, + { + "id": "109175", + "name": "Maramba", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.05000000", + "longitude": "38.61667000" + }, + { + "id": "109184", + "name": "Matui", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.80000000", + "longitude": "38.25000000" + }, + { + "id": "109185", + "name": "Mazinde", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.80000000", + "longitude": "38.21667000" + }, + { + "id": "109203", + "name": "Mlalo", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.93333000", + "longitude": "38.93333000" + }, + { + "id": "109223", + "name": "Muheza", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.16667000", + "longitude": "38.78333000" + }, + { + "id": "109231", + "name": "Mwanga", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.80000000", + "longitude": "38.20000000" + }, + { + "id": "109269", + "name": "Pangani", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.42526000", + "longitude": "38.97473000" + }, + { + "id": "109285", + "name": "Soni", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-4.85000000", + "longitude": "38.36667000" + }, + { + "id": "109289", + "name": "Tanga", + "state_id": 1487, + "state_code": "25", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.06893000", + "longitude": "39.09875000" + }, + { + "id": "109132", + "name": "Koani", + "state_id": 1471, + "state_code": "11", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.13333000", + "longitude": "39.28333000" + }, + { + "id": "109133", + "name": "Koani Ndogo", + "state_id": 1471, + "state_code": "11", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.13333000", + "longitude": "39.28333000" + }, + { + "id": "109161", + "name": "Mahonda", + "state_id": 1471, + "state_code": "11", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.45000000", + "longitude": "39.46667000" + }, + { + "id": "109250", + "name": "Nganane", + "state_id": 1471, + "state_code": "11", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.40000000", + "longitude": "39.55000000" + }, + { + "id": "109281", + "name": "Sokoni", + "state_id": 1471, + "state_code": "11", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.43333000", + "longitude": "39.55000000" + }, + { + "id": "109069", + "name": "Gamba", + "state_id": 1473, + "state_code": "07", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.90000000", + "longitude": "39.30000000" + }, + { + "id": "109112", + "name": "Kijini", + "state_id": 1473, + "state_code": "07", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.85000000", + "longitude": "39.31667000" + }, + { + "id": "109131", + "name": "Kiwengwa", + "state_id": 1473, + "state_code": "07", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.98957000", + "longitude": "39.37680000" + }, + { + "id": "109201", + "name": "Mkokotoni", + "state_id": 1473, + "state_code": "07", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.87506000", + "longitude": "39.25523000" + }, + { + "id": "109261", + "name": "Nungwi", + "state_id": 1473, + "state_code": "07", + "country_id": 218, + "country_code": "TZ", + "latitude": "-5.72651000", + "longitude": "39.29870000" + }, + { + "id": "109304", + "name": "Zanzibar", + "state_id": 1475, + "state_code": "15", + "country_id": 218, + "country_code": "TZ", + "latitude": "-6.16394000", + "longitude": "39.19793000" + }, + { + "id": "105179", + "name": "Amnat Charoen", + "state_id": 3523, + "state_code": "37", + "country_id": 219, + "country_code": "TH", + "latitude": "15.85851000", + "longitude": "104.62883000" + }, + { + "id": "105286", + "name": "Amphoe Chanuman", + "state_id": 3523, + "state_code": "37", + "country_id": 219, + "country_code": "TH", + "latitude": "16.12553000", + "longitude": "104.92279000" + }, + { + "id": "105351", + "name": "Amphoe Hua Taphan", + "state_id": 3523, + "state_code": "37", + "country_id": 219, + "country_code": "TH", + "latitude": "15.67594000", + "longitude": "104.52702000" + }, + { + "id": "105495", + "name": "Amphoe Lue Amnat", + "state_id": 3523, + "state_code": "37", + "country_id": 219, + "country_code": "TH", + "latitude": "15.70781000", + "longitude": "104.71118000" + }, + { + "id": "105531", + "name": "Amphoe Mueang Amnat Charoen", + "state_id": 3523, + "state_code": "37", + "country_id": 219, + "country_code": "TH", + "latitude": "15.87864000", + "longitude": "104.64284000" + }, + { + "id": "105715", + "name": "Amphoe Pathum Ratchawongsa", + "state_id": 3523, + "state_code": "37", + "country_id": 219, + "country_code": "TH", + "latitude": "15.89542000", + "longitude": "104.89611000" + }, + { + "id": "105722", + "name": "Amphoe Phana", + "state_id": 3523, + "state_code": "37", + "country_id": 219, + "country_code": "TH", + "latitude": "15.66895000", + "longitude": "104.85675000" + }, + { + "id": "106208", + "name": "Amphoe Senangkhanikhom", + "state_id": 3523, + "state_code": "37", + "country_id": 219, + "country_code": "TH", + "latitude": "16.05130000", + "longitude": "104.68441000" + }, + { + "id": "105274", + "name": "Amphoe Chaiyo", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.67225000", + "longitude": "100.46786000" + }, + { + "id": "105532", + "name": "Amphoe Mueang Ang Thong", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.57815000", + "longitude": "100.44393000" + }, + { + "id": "105695", + "name": "Amphoe Pa Mok", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.48620000", + "longitude": "100.45730000" + }, + { + "id": "105750", + "name": "Amphoe Pho Thong", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.67344000", + "longitude": "100.34569000" + }, + { + "id": "106199", + "name": "Amphoe Sawaeng Ha", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.74635000", + "longitude": "100.28963000" + }, + { + "id": "106371", + "name": "Amphoe Wiset Chai Chan", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.54990000", + "longitude": "100.31743000" + }, + { + "id": "106380", + "name": "Ang Thong", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.58839000", + "longitude": "100.45283000" + }, + { + "id": "106419", + "name": "Ban Thai Tan", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.62161000", + "longitude": "100.48739000" + }, + { + "id": "106466", + "name": "Chaiyo", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.67639000", + "longitude": "100.46861000" + }, + { + "id": "106638", + "name": "Pho Thong", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.66731000", + "longitude": "100.40878000" + }, + { + "id": "106754", + "name": "Wiset Chaichan", + "state_id": 3519, + "state_code": "15", + "country_id": 219, + "country_code": "TH", + "latitude": "14.59450000", + "longitude": "100.33825000" + }, + { + "id": "106422", + "name": "Bang Bon", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.65920000", + "longitude": "100.38801000" + }, + { + "id": "106424", + "name": "Bang Kapi", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.77258000", + "longitude": "100.63847000" + }, + { + "id": "106425", + "name": "Bang Khae", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.71927000", + "longitude": "100.39278000" + }, + { + "id": "106426", + "name": "Bang Khen", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.86901000", + "longitude": "100.62769000" + }, + { + "id": "106428", + "name": "Bang Kho laen", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.70025000", + "longitude": "100.50971000" + }, + { + "id": "106429", + "name": "Bang Khun thain", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.59482000", + "longitude": "100.42694000" + }, + { + "id": "106436", + "name": "Bang Na", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.67252000", + "longitude": "100.62089000" + }, + { + "id": "106441", + "name": "Bang Phlat", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.78668000", + "longitude": "100.49152000" + }, + { + "id": "106443", + "name": "Bang Rak", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.73058000", + "longitude": "100.52388000" + }, + { + "id": "106446", + "name": "Bang Sue", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.81921000", + "longitude": "100.52790000" + }, + { + "id": "106448", + "name": "Bangkok", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.75398000", + "longitude": "100.50144000" + }, + { + "id": "106449", + "name": "Bangkok Noi", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.76551000", + "longitude": "100.46988000" + }, + { + "id": "106450", + "name": "Bangkok Yai", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.73748000", + "longitude": "100.47428000" + }, + { + "id": "106456", + "name": "Bueng Kum", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.81023000", + "longitude": "100.65140000" + }, + { + "id": "106469", + "name": "Chatu Chak", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.82888000", + "longitude": "100.56374000" + }, + { + "id": "106480", + "name": "Chom Thong", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.68910000", + "longitude": "100.46175000" + }, + { + "id": "106489", + "name": "Din Daeng", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.77728000", + "longitude": "100.56235000" + }, + { + "id": "106492", + "name": "Don Mueang", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.92601000", + "longitude": "100.59365000" + }, + { + "id": "106494", + "name": "Dusit", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.78235000", + "longitude": "100.51677000" + }, + { + "id": "106500", + "name": "Huai Khwang", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.77060000", + "longitude": "100.58119000" + }, + { + "id": "106518", + "name": "Khan Na Yao", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.82380000", + "longitude": "100.67649000" + }, + { + "id": "106525", + "name": "Khlong Sam Wa", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.87633000", + "longitude": "100.73805000" + }, + { + "id": "106526", + "name": "Khlong San", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.72602000", + "longitude": "100.50071000" + }, + { + "id": "106527", + "name": "Khlong Toei", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.71806000", + "longitude": "100.57065000" + }, + { + "id": "106548", + "name": "Lak Si", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.88210000", + "longitude": "100.56889000" + }, + { + "id": "106554", + "name": "Lat Krabang", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.74500000", + "longitude": "100.79224000" + }, + { + "id": "106555", + "name": "Lat Phrao", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.82779000", + "longitude": "100.60672000" + }, + { + "id": "106569", + "name": "Min Buri", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.81254000", + "longitude": "100.75334000" + }, + { + "id": "106597", + "name": "Nong Chok", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.85280000", + "longitude": "100.85788000" + }, + { + "id": "106599", + "name": "Nong Khaem", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.69979000", + "longitude": "100.35364000" + }, + { + "id": "106613", + "name": "Parthum Wan", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.74265000", + "longitude": "100.53398000" + }, + { + "id": "106625", + "name": "Phasi Charoen", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.72597000", + "longitude": "100.44103000" + }, + { + "id": "106627", + "name": "Phaya Thai", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.78442000", + "longitude": "100.54306000" + }, + { + "id": "106642", + "name": "Phra Khanong", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.69705000", + "longitude": "100.61234000" + }, + { + "id": "106643", + "name": "Phra Nakhon", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.75831000", + "longitude": "100.49613000" + }, + { + "id": "106651", + "name": "Pom Prap Sattru Phai", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.75480000", + "longitude": "100.50995000" + }, + { + "id": "106654", + "name": "Pra Wet", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.71735000", + "longitude": "100.69452000" + }, + { + "id": "106663", + "name": "Rat Burana", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.67633000", + "longitude": "100.49881000" + }, + { + "id": "106665", + "name": "Ratchathewi", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.76029000", + "longitude": "100.53724000" + }, + { + "id": "106674", + "name": "Sai Mai", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.90727000", + "longitude": "100.65181000" + }, + { + "id": "106679", + "name": "Samphanthawong", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.74233000", + "longitude": "100.50765000" + }, + { + "id": "106687", + "name": "Saphan Sung", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.76531000", + "longitude": "100.69001000" + }, + { + "id": "106689", + "name": "Sathon", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.71745000", + "longitude": "100.52999000" + }, + { + "id": "106706", + "name": "Suanluang", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.72989000", + "longitude": "100.62677000" + }, + { + "id": "106716", + "name": "Taling Chan", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.77271000", + "longitude": "100.43289000" + }, + { + "id": "106730", + "name": "Thawi Watthana", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.77637000", + "longitude": "100.36620000" + }, + { + "id": "106732", + "name": "Thon buri", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.71874000", + "longitude": "100.48367000" + }, + { + "id": "106734", + "name": "Thung khru", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.63387000", + "longitude": "100.49641000" + }, + { + "id": "106741", + "name": "Vadhana", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.73501000", + "longitude": "100.58280000" + }, + { + "id": "106748", + "name": "Wang Thong Lang", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.78188000", + "longitude": "100.60804000" + }, + { + "id": "106756", + "name": "Yan na wa", + "state_id": 3554, + "state_code": "10", + "country_id": 219, + "country_code": "TH", + "latitude": "13.69177000", + "longitude": "100.53950000" + }, + { + "id": "105260", + "name": "Amphoe Bueng Khong Long", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "18.00899000", + "longitude": "104.07302000" + }, + { + "id": "105264", + "name": "Amphoe Bung Khla", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "18.24726000", + "longitude": "103.99427000" + }, + { + "id": "105533", + "name": "Amphoe Mueang Bueng Kan", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "18.29950000", + "longitude": "103.64016000" + }, + { + "id": "105702", + "name": "Amphoe Pak Khat", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "18.27738000", + "longitude": "103.34140000" + }, + { + "id": "105752", + "name": "Amphoe Phon Charoen", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "18.07967000", + "longitude": "103.65453000" + }, + { + "id": "106205", + "name": "Amphoe Seka", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "17.98734000", + "longitude": "103.89616000" + }, + { + "id": "106230", + "name": "Amphoe Si Wilai", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "18.15528000", + "longitude": "103.77975000" + }, + { + "id": "106239", + "name": "Amphoe So Phisai", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "18.14176000", + "longitude": "103.44923000" + }, + { + "id": "106455", + "name": "Bueng Kan", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "18.36303000", + "longitude": "103.65194000" + }, + { + "id": "106696", + "name": "Seka", + "state_id": 3533, + "state_code": "38", + "country_id": 219, + "country_code": "TH", + "latitude": "17.92851000", + "longitude": "103.95519000" + }, + { + "id": "105188", + "name": "Amphoe Ban Dan", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.12363000", + "longitude": "103.18937000" + }, + { + "id": "105197", + "name": "Amphoe Ban Kruat", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.39205000", + "longitude": "103.11494000" + }, + { + "id": "105202", + "name": "Amphoe Ban Mai Chaiyaphot", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.57857000", + "longitude": "102.84394000" + }, + { + "id": "105279", + "name": "Amphoe Chaloem Phra Kiat", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.55725000", + "longitude": "102.89878000" + }, + { + "id": "105281", + "name": "Amphoe Chamni", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.78636000", + "longitude": "102.85386000" + }, + { + "id": "105356", + "name": "Amphoe Huai Rat", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.00896000", + "longitude": "103.23499000" + }, + { + "id": "105381", + "name": "Amphoe Khaen Dong", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.30620000", + "longitude": "103.13286000" + }, + { + "id": "105425", + "name": "Amphoe Khu Mueang", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.26844000", + "longitude": "103.02717000" + }, + { + "id": "105454", + "name": "Amphoe Krasang", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.94167000", + "longitude": "103.31898000" + }, + { + "id": "105472", + "name": "Amphoe Lahan Sai", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.32194000", + "longitude": "102.87994000" + }, + { + "id": "105474", + "name": "Amphoe Lam Plai Mat", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.01688000", + "longitude": "102.87479000" + }, + { + "id": "105534", + "name": "Amphoe Mueang Buriram", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.94078000", + "longitude": "103.06244000" + }, + { + "id": "105621", + "name": "Amphoe Na Pho", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.69565000", + "longitude": "102.93857000" + }, + { + "id": "105641", + "name": "Amphoe Nang Rong", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.63333000", + "longitude": "102.76667000" + }, + { + "id": "105649", + "name": "Amphoe Non Din Daeng", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.22010000", + "longitude": "102.68233000" + }, + { + "id": "105656", + "name": "Amphoe Non Suwan", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.55511000", + "longitude": "102.58339000" + }, + { + "id": "105666", + "name": "Amphoe Nong Hong", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.86149000", + "longitude": "102.67080000" + }, + { + "id": "105669", + "name": "Amphoe Nong Ki", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.72696000", + "longitude": "102.55798000" + }, + { + "id": "105694", + "name": "Amphoe Pa Kham", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.40000000", + "longitude": "102.66667000" + }, + { + "id": "105743", + "name": "Amphoe Phlapphla Chai", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.73299000", + "longitude": "103.17015000" + }, + { + "id": "105785", + "name": "Amphoe Phutthaisong", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.53249000", + "longitude": "102.98701000" + }, + { + "id": "105795", + "name": "Amphoe Prakhon Chai", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.61041000", + "longitude": "103.06054000" + }, + { + "id": "106198", + "name": "Amphoe Satuek", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.22699000", + "longitude": "103.33006000" + }, + { + "id": "106458", + "name": "Buri Ram", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.99433000", + "longitude": "103.10392000" + }, + { + "id": "106589", + "name": "Nang Rong", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.63770000", + "longitude": "102.79138000" + }, + { + "id": "106601", + "name": "Nong Ki", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.68679000", + "longitude": "102.53800000" + }, + { + "id": "106657", + "name": "Prakhon Chai", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "14.60592000", + "longitude": "103.12081000" + }, + { + "id": "106691", + "name": "Satuek", + "state_id": 3534, + "state_code": "31", + "country_id": 219, + "country_code": "TH", + "latitude": "15.29703000", + "longitude": "103.29192000" + }, + { + "id": "105212", + "name": "Amphoe Ban Pho", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.61000000", + "longitude": "101.07838000" + }, + { + "id": "105226", + "name": "Amphoe Bang Khla", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.74186000", + "longitude": "101.20754000" + }, + { + "id": "105233", + "name": "Amphoe Bang Nam Priao", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.88034000", + "longitude": "101.03232000" + }, + { + "id": "105236", + "name": "Amphoe Bang Pakong", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.53241000", + "longitude": "100.96045000" + }, + { + "id": "105408", + "name": "Amphoe Khlong Khuean", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.77961000", + "longitude": "101.15633000" + }, + { + "id": "105535", + "name": "Amphoe Mueang Chachoengsao", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.71758000", + "longitude": "101.02152000" + }, + { + "id": "105729", + "name": "Amphoe Phanom Sarakham", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.73806000", + "longitude": "101.41202000" + }, + { + "id": "105788", + "name": "Amphoe Plaeng Yao", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.56381000", + "longitude": "101.33972000" + }, + { + "id": "105806", + "name": "Amphoe Ratchasan", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.78660000", + "longitude": "101.28136000" + }, + { + "id": "106185", + "name": "Amphoe Sanam Chai Khet", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.62612000", + "longitude": "101.65475000" + }, + { + "id": "106286", + "name": "Amphoe Tha Takiap", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.39510000", + "longitude": "101.73457000" + }, + { + "id": "106427", + "name": "Bang Khla", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.72144000", + "longitude": "101.20814000" + }, + { + "id": "106437", + "name": "Bang Nam Priao", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.84739000", + "longitude": "101.05306000" + }, + { + "id": "106439", + "name": "Bang Pakong", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.54297000", + "longitude": "100.99333000" + }, + { + "id": "106460", + "name": "Chachoengsao", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.68820000", + "longitude": "101.07156000" + }, + { + "id": "106523", + "name": "Khlong Khuean", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.79131000", + "longitude": "101.16353000" + }, + { + "id": "106623", + "name": "Phanom Sarakham", + "state_id": 3552, + "state_code": "24", + "country_id": 219, + "country_code": "TH", + "latitude": "13.74872000", + "longitude": "101.34888000" + }, + { + "id": "105345", + "name": "Amphoe Hankha", + "state_id": 3522, + "state_code": "18", + "country_id": 219, + "country_code": "TH", + "latitude": "15.05048000", + "longitude": "99.96090000" + }, + { + "id": "105526", + "name": "Amphoe Manorom", + "state_id": 3522, + "state_code": "18", + "country_id": 219, + "country_code": "TH", + "latitude": "15.31894000", + "longitude": "100.15677000" + }, + { + "id": "105536", + "name": "Amphoe Mueang Chainat", + "state_id": 3522, + "state_code": "18", + "country_id": 219, + "country_code": "TH", + "latitude": "15.19104000", + "longitude": "100.13540000" + }, + { + "id": "105646", + "name": "Amphoe Noen Kham", + "state_id": 3522, + "state_code": "18", + "country_id": 219, + "country_code": "TH", + "latitude": "14.98254000", + "longitude": "99.84590000" + }, + { + "id": "105671", + "name": "Amphoe Nong Mamong", + "state_id": 3522, + "state_code": "18", + "country_id": 219, + "country_code": "TH", + "latitude": "15.23372000", + "longitude": "99.81087000" + }, + { + "id": "106190", + "name": "Amphoe Sankhaburi", + "state_id": 3522, + "state_code": "18", + "country_id": 219, + "country_code": "TH", + "latitude": "15.02105000", + "longitude": "100.17038000" + }, + { + "id": "106194", + "name": "Amphoe Sapphaya", + "state_id": 3522, + "state_code": "18", + "country_id": 219, + "country_code": "TH", + "latitude": "15.14873000", + "longitude": "100.25506000" + }, + { + "id": "106357", + "name": "Amphoe Wat Sing", + "state_id": 3522, + "state_code": "18", + "country_id": 219, + "country_code": "TH", + "latitude": "15.21574000", + "longitude": "99.96680000" + }, + { + "id": "106463", + "name": "Chai Nat", + "state_id": 3522, + "state_code": "18", + "country_id": 219, + "country_code": "TH", + "latitude": "15.18636000", + "longitude": "100.12353000" + }, + { + "id": "105364", + "name": "Amphoe Kaeng Hang Maeo", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "13.09690000", + "longitude": "101.88543000" + }, + { + "id": "105394", + "name": "Amphoe Khao Khitchakut", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.93726000", + "longitude": "102.09762000" + }, + { + "id": "105413", + "name": "Amphoe Khlung", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.57246000", + "longitude": "102.30783000" + }, + { + "id": "105471", + "name": "Amphoe Laem Sing", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.45689000", + "longitude": "102.14262000" + }, + { + "id": "105523", + "name": "Amphoe Makham", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.73333000", + "longitude": "102.21667000" + }, + { + "id": "105538", + "name": "Amphoe Mueang Chanthaburi", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.59542000", + "longitude": "102.12263000" + }, + { + "id": "105627", + "name": "Amphoe Na Yai Am", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.73833000", + "longitude": "101.87502000" + }, + { + "id": "105792", + "name": "Amphoe Pong Nam Ron", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.93467000", + "longitude": "102.37189000" + }, + { + "id": "106242", + "name": "Amphoe Soi Dao", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "13.17034000", + "longitude": "102.22796000" + }, + { + "id": "106277", + "name": "Amphoe Tha Mai", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.73848000", + "longitude": "101.97696000" + }, + { + "id": "106467", + "name": "Chanthaburi", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.60961000", + "longitude": "102.10447000" + }, + { + "id": "106529", + "name": "Khlung", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.45467000", + "longitude": "102.22142000" + }, + { + "id": "106547", + "name": "Laem Sing", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.48164000", + "longitude": "102.07375000" + }, + { + "id": "106653", + "name": "Pong Nam Ron", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.90575000", + "longitude": "102.26225000" + }, + { + "id": "106721", + "name": "Tha Mai", + "state_id": 3486, + "state_code": "22", + "country_id": 219, + "country_code": "TH", + "latitude": "12.62137000", + "longitude": "102.00481000" + }, + { + "id": "105271", + "name": "Amphoe Chai Prakan", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.67400000", + "longitude": "99.17478000" + }, + { + "id": "105292", + "name": "Amphoe Chiang Dao", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.51279000", + "longitude": "98.94180000" + }, + { + "id": "105305", + "name": "Amphoe Chom Thong", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.39242000", + "longitude": "98.59761000" + }, + { + "id": "105324", + "name": "Amphoe Doi Lo", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.53330000", + "longitude": "98.76843000" + }, + { + "id": "105326", + "name": "Amphoe Doi Saket", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.92372000", + "longitude": "99.21272000" + }, + { + "id": "105327", + "name": "Amphoe Doi Tao", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "17.89703000", + "longitude": "98.66292000" + }, + { + "id": "105340", + "name": "Amphoe Fang", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.87550000", + "longitude": "99.16345000" + }, + { + "id": "105342", + "name": "Amphoe Galyani Vadhana", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.94439000", + "longitude": "98.30329000" + }, + { + "id": "105344", + "name": "Amphoe Hang Dong", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.73869000", + "longitude": "98.88439000" + }, + { + "id": "105348", + "name": "Amphoe Hot", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.11581000", + "longitude": "98.46377000" + }, + { + "id": "105496", + "name": "Amphoe Mae Ai", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.99136000", + "longitude": "99.33976000" + }, + { + "id": "105497", + "name": "Amphoe Mae Chaem", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.66694000", + "longitude": "98.32450000" + }, + { + "id": "105506", + "name": "Amphoe Mae On", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.73496000", + "longitude": "99.30378000" + }, + { + "id": "105510", + "name": "Amphoe Mae Rim", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.94139000", + "longitude": "98.88667000" + }, + { + "id": "105515", + "name": "Amphoe Mae Taeng", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.16667000", + "longitude": "98.83333000" + }, + { + "id": "105518", + "name": "Amphoe Mae Wang", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.67457000", + "longitude": "98.68714000" + }, + { + "id": "105539", + "name": "Amphoe Mueang Chiang Mai", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.79008000", + "longitude": "98.96869000" + }, + { + "id": "105690", + "name": "Amphoe Om Koi", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "17.69842000", + "longitude": "98.35433000" + }, + { + "id": "105769", + "name": "Amphoe Phrao", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.28460000", + "longitude": "99.22277000" + }, + { + "id": "106179", + "name": "Amphoe Samoeng", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.90027000", + "longitude": "98.65650000" + }, + { + "id": "106182", + "name": "Amphoe San Kamphaeng", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.73497000", + "longitude": "99.18609000" + }, + { + "id": "106183", + "name": "Amphoe San Pa Tong", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.60567000", + "longitude": "98.88531000" + }, + { + "id": "106184", + "name": "Amphoe San Sai", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.94101000", + "longitude": "99.04048000" + }, + { + "id": "106195", + "name": "Amphoe Saraphi", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.70511000", + "longitude": "99.02989000" + }, + { + "id": "106361", + "name": "Amphoe Wiang Haeng", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.59188000", + "longitude": "98.65845000" + }, + { + "id": "106464", + "name": "Chai Prakan", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.73136000", + "longitude": "99.13997000" + }, + { + "id": "106474", + "name": "Chiang Mai", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.79038000", + "longitude": "98.98468000" + }, + { + "id": "106479", + "name": "Chom Thong", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.41742000", + "longitude": "98.67428000" + }, + { + "id": "106495", + "name": "Fang", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.91689000", + "longitude": "99.21450000" + }, + { + "id": "106496", + "name": "Hang Dong", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.68703000", + "longitude": "98.91939000" + }, + { + "id": "106608", + "name": "Pai", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "19.36168000", + "longitude": "98.43973000" + }, + { + "id": "106683", + "name": "San Kamphaeng", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.74486000", + "longitude": "99.11953000" + }, + { + "id": "106684", + "name": "San Pa Tong", + "state_id": 3491, + "state_code": "50", + "country_id": 219, + "country_code": "TH", + "latitude": "18.62828000", + "longitude": "98.89572000" + }, + { + "id": "105295", + "name": "Amphoe Chiang Khong", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.13587000", + "longitude": "100.36527000" + }, + { + "id": "105299", + "name": "Amphoe Chiang Saen", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.23572000", + "longitude": "100.15537000" + }, + { + "id": "105325", + "name": "Amphoe Doi Luang", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.14496000", + "longitude": "100.15712000" + }, + { + "id": "105433", + "name": "Amphoe Khun Tan", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.86481000", + "longitude": "100.28731000" + }, + { + "id": "105499", + "name": "Amphoe Mae Chan", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.19910000", + "longitude": "99.88468000" + }, + { + "id": "105501", + "name": "Amphoe Mae Fa Luang", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.22228000", + "longitude": "99.64147000" + }, + { + "id": "105504", + "name": "Amphoe Mae Lao", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.77223000", + "longitude": "99.71128000" + }, + { + "id": "105511", + "name": "Amphoe Mae Sai", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.36500000", + "longitude": "99.92604000" + }, + { + "id": "105514", + "name": "Amphoe Mae Suai", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.69037000", + "longitude": "99.48459000" + }, + { + "id": "105540", + "name": "Amphoe Mueang Chiang Rai", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.90824000", + "longitude": "99.77299000" + }, + { + "id": "105693", + "name": "Amphoe Pa Daet", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.50643000", + "longitude": "99.97615000" + }, + { + "id": "105720", + "name": "Amphoe Phan", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.57450000", + "longitude": "99.77299000" + }, + { + "id": "105733", + "name": "Amphoe Phaya Mengrai", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.87320000", + "longitude": "100.16257000" + }, + { + "id": "106308", + "name": "Amphoe Thoeng", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.67650000", + "longitude": "100.20095000" + }, + { + "id": "106359", + "name": "Amphoe Wiang Chai", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.86360000", + "longitude": "100.00065000" + }, + { + "id": "106360", + "name": "Amphoe Wiang Chiang Rung", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.02208000", + "longitude": "100.07472000" + }, + { + "id": "106362", + "name": "Amphoe Wiang Kaen", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.00874000", + "longitude": "100.48641000" + }, + { + "id": "106365", + "name": "Amphoe Wiang Pa Pao", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.30460000", + "longitude": "99.44925000" + }, + { + "id": "106472", + "name": "Chiang Khong", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.26125000", + "longitude": "100.40461000" + }, + { + "id": "106475", + "name": "Chiang Rai", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.90858000", + "longitude": "99.83250000" + }, + { + "id": "106476", + "name": "Chiang Saen", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.27511000", + "longitude": "100.08689000" + }, + { + "id": "106562", + "name": "Mae Chan", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.14675000", + "longitude": "99.85256000" + }, + { + "id": "106565", + "name": "Mae Sai", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "20.43353000", + "longitude": "99.87617000" + }, + { + "id": "106606", + "name": "Pa Daet", + "state_id": 3498, + "state_code": "57", + "country_id": 219, + "country_code": "TH", + "latitude": "19.50489000", + "longitude": "99.99241000" + }, + { + "id": "105186", + "name": "Amphoe Ban Bueng", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.25280000", + "longitude": "101.18151000" + }, + { + "id": "105254", + "name": "Amphoe Bo Thong", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.24227000", + "longitude": "101.50864000" + }, + { + "id": "105438", + "name": "Amphoe Ko Chan", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.40253000", + "longitude": "101.38800000" + }, + { + "id": "105445", + "name": "Amphoe Ko Si Chang", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.15286000", + "longitude": "100.81156000" + }, + { + "id": "105686", + "name": "Amphoe Nong Yai", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.11772000", + "longitude": "101.37471000" + }, + { + "id": "105721", + "name": "Amphoe Phan Thong", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.46300000", + "longitude": "101.09131000" + }, + { + "id": "105723", + "name": "Amphoe Phanat Nikhom", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.46434000", + "longitude": "101.21428000" + }, + { + "id": "106197", + "name": "Amphoe Sattahip", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "12.71743000", + "longitude": "100.92754000" + }, + { + "id": "106220", + "name": "Amphoe Si Racha", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.12976000", + "longitude": "101.04008000" + }, + { + "id": "106385", + "name": "Ban Bueng", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.31100000", + "longitude": "101.11214000" + }, + { + "id": "106396", + "name": "Ban Ko Lan", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "12.92419000", + "longitude": "100.78794000" + }, + { + "id": "106416", + "name": "Ban Talat Bueng", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.07147000", + "longitude": "101.00314000" + }, + { + "id": "106432", + "name": "Bang Lamung", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.04704000", + "longitude": "100.92891000" + }, + { + "id": "106433", + "name": "Bang Lamung District", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "12.92579000", + "longitude": "100.89243000" + }, + { + "id": "106481", + "name": "Chon Buri", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.36220000", + "longitude": "100.98345000" + }, + { + "id": "106537", + "name": "Ko Si Chang", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.16389000", + "longitude": "100.80547000" + }, + { + "id": "106572", + "name": "Mueang Chonburi District", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.34271000", + "longitude": "101.00111000" + }, + { + "id": "106617", + "name": "Pattaya", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "12.93333000", + "longitude": "100.88333000" + }, + { + "id": "106620", + "name": "Phan Thong", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.46804000", + "longitude": "101.09532000" + }, + { + "id": "106621", + "name": "Phanat Nikhom", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.44581000", + "longitude": "101.18445000" + }, + { + "id": "106690", + "name": "Sattahip", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "12.66644000", + "longitude": "100.90073000" + }, + { + "id": "106699", + "name": "Si Racha", + "state_id": 3513, + "state_code": "20", + "country_id": 219, + "country_code": "TH", + "latitude": "13.17372000", + "longitude": "100.93111000" + }, + { + "id": "105478", + "name": "Amphoe Lamae", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "9.75567000", + "longitude": "99.04378000" + }, + { + "id": "105483", + "name": "Amphoe Lang Suan", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "9.93386000", + "longitude": "99.05292000" + }, + { + "id": "105541", + "name": "Amphoe Mueang Chumphon", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "10.46077000", + "longitude": "99.10608000" + }, + { + "id": "105713", + "name": "Amphoe Pathio", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "10.81008000", + "longitude": "99.33938000" + }, + { + "id": "105731", + "name": "Amphoe Phato", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "9.81066000", + "longitude": "98.80178000" + }, + { + "id": "106204", + "name": "Amphoe Sawi", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "10.24008000", + "longitude": "99.01865000" + }, + { + "id": "106283", + "name": "Amphoe Tha Sae", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "10.76864000", + "longitude": "99.09878000" + }, + { + "id": "106318", + "name": "Amphoe Thung Tako", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "10.09223000", + "longitude": "99.05337000" + }, + { + "id": "106403", + "name": "Ban Nam Yuen", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "9.87686000", + "longitude": "98.86592000" + }, + { + "id": "106484", + "name": "Chumphon", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "10.49570000", + "longitude": "99.17971000" + }, + { + "id": "106553", + "name": "Lang Suan", + "state_id": 3526, + "state_code": "86", + "country_id": 219, + "country_code": "TH", + "latitude": "9.94561000", + "longitude": "99.07847000" + }, + { + "id": "105329", + "name": "Amphoe Don Chan", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.46667000", + "longitude": "103.71667000" + }, + { + "id": "105354", + "name": "Amphoe Huai Mek", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.58868000", + "longitude": "103.24098000" + }, + { + "id": "105355", + "name": "Amphoe Huai Phueng", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.66972000", + "longitude": "103.87997000" + }, + { + "id": "105368", + "name": "Amphoe Kamalasai", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.27999000", + "longitude": "103.60010000" + }, + { + "id": "105384", + "name": "Amphoe Kham Muang", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.93884000", + "longitude": "103.63980000" + }, + { + "id": "105399", + "name": "Amphoe Khao Wong", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.67959000", + "longitude": "104.10030000" + }, + { + "id": "105423", + "name": "Amphoe Khong Chai", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.25845000", + "longitude": "103.48167000" + }, + { + "id": "105459", + "name": "Amphoe Kuchinarai", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.51977000", + "longitude": "104.05097000" + }, + { + "id": "105542", + "name": "Amphoe Mueang Kalasin", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.50918000", + "longitude": "103.54984000" + }, + { + "id": "105615", + "name": "Amphoe Na Khu", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.75018000", + "longitude": "104.00062000" + }, + { + "id": "105618", + "name": "Amphoe Na Mon", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.56994000", + "longitude": "103.78015000" + }, + { + "id": "105670", + "name": "Amphoe Nong Kung Si", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.71932000", + "longitude": "103.31922000" + }, + { + "id": "105813", + "name": "Amphoe Rong Kham", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.27925000", + "longitude": "103.71238000" + }, + { + "id": "105820", + "name": "Amphoe Sahatsakhan", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.70987000", + "longitude": "103.57909000" + }, + { + "id": "105828", + "name": "Amphoe Sam Chai", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.86909000", + "longitude": "103.52243000" + }, + { + "id": "106243", + "name": "Amphoe Somdet", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.76973000", + "longitude": "103.75012000" + }, + { + "id": "106274", + "name": "Amphoe Tha Khantho", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.88333000", + "longitude": "103.25000000" + }, + { + "id": "106376", + "name": "Amphoe Yang Talat", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.43961000", + "longitude": "103.34085000" + }, + { + "id": "106501", + "name": "Huai Mek", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.58975000", + "longitude": "103.23547000" + }, + { + "id": "106506", + "name": "Kalasin", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.43281000", + "longitude": "103.50658000" + }, + { + "id": "106507", + "name": "Kamalasai", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.33839000", + "longitude": "103.57564000" + }, + { + "id": "106520", + "name": "Khao Wong", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.70008000", + "longitude": "104.09019000" + }, + { + "id": "106543", + "name": "Kuchinarai", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.54100000", + "longitude": "104.05004000" + }, + { + "id": "106602", + "name": "Nong Kung Si", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.65000000", + "longitude": "103.30000000" + }, + { + "id": "106757", + "name": "Yang Talat", + "state_id": 3550, + "state_code": "46", + "country_id": 219, + "country_code": "TH", + "latitude": "16.39982000", + "longitude": "103.36785000" + }, + { + "id": "105263", + "name": "Amphoe Bueng Samakkhi", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.21262000", + "longitude": "99.96720000" + }, + { + "id": "105390", + "name": "Amphoe Khanu Woralaksaburi", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.00233000", + "longitude": "99.67618000" + }, + { + "id": "105407", + "name": "Amphoe Khlong Khlung", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.22191000", + "longitude": "99.67654000" + }, + { + "id": "105409", + "name": "Amphoe Khlong Lan", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.25992000", + "longitude": "99.21806000" + }, + { + "id": "105449", + "name": "Amphoe Kosamphi Nakhon", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.60702000", + "longitude": "99.34795000" + }, + { + "id": "105480", + "name": "Amphoe Lan Krabue", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.60348000", + "longitude": "99.86521000" + }, + { + "id": "105543", + "name": "Amphoe Mueang Kamphaeng Phet", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.43254000", + "longitude": "99.48831000" + }, + { + "id": "105712", + "name": "Amphoe Pang Sila Thong", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.02525000", + "longitude": "99.35593000" + }, + { + "id": "105768", + "name": "Amphoe Phran Kratai", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.70541000", + "longitude": "99.53704000" + }, + { + "id": "105823", + "name": "Amphoe Sai Ngam", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.43956000", + "longitude": "99.87457000" + }, + { + "id": "105825", + "name": "Amphoe Sai Thong Watthana", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.30859000", + "longitude": "99.87854000" + }, + { + "id": "106508", + "name": "Kamphaeng Phet", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.48344000", + "longitude": "99.52153000" + }, + { + "id": "106519", + "name": "Khanu Woralaksaburi", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.06170000", + "longitude": "99.86058000" + }, + { + "id": "106551", + "name": "Lan Krabue", + "state_id": 3516, + "state_code": "62", + "country_id": 219, + "country_code": "TH", + "latitude": "16.60003000", + "longitude": "99.84889000" + }, + { + "id": "105252", + "name": "Amphoe Bo Phloi", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.38723000", + "longitude": "99.44990000" + }, + { + "id": "105319", + "name": "Amphoe Dan Makham Tia", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "13.83422000", + "longitude": "99.34125000" + }, + { + "id": "105353", + "name": "Amphoe Huai Krachao", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.34056000", + "longitude": "99.67633000" + }, + { + "id": "105484", + "name": "Amphoe Lao Khwan", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.59488000", + "longitude": "99.68338000" + }, + { + "id": "105544", + "name": "Amphoe Mueang Kanchanaburi", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.06987000", + "longitude": "99.32769000" + }, + { + "id": "105677", + "name": "Amphoe Nong Prue", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.67801000", + "longitude": "99.41075000" + }, + { + "id": "105730", + "name": "Amphoe Phanom Thuan", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.15941000", + "longitude": "99.66904000" + }, + { + "id": "105826", + "name": "Amphoe Sai Yok", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.25652000", + "longitude": "98.93372000" + }, + { + "id": "106188", + "name": "Amphoe Sangkhla Buri", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "15.19337000", + "longitude": "98.52791000" + }, + { + "id": "106225", + "name": "Amphoe Si Sawat", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.67254000", + "longitude": "99.12992000" + }, + { + "id": "106278", + "name": "Amphoe Tha Maka", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "13.94665000", + "longitude": "99.77900000" + }, + { + "id": "106279", + "name": "Amphoe Tha Muang", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "13.90947000", + "longitude": "99.61540000" + }, + { + "id": "106309", + "name": "Amphoe Thong Pha Phum", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.83277000", + "longitude": "98.69233000" + }, + { + "id": "106452", + "name": "Bo Phloi", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.32517000", + "longitude": "99.51467000" + }, + { + "id": "106510", + "name": "Kanchanaburi", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.00412000", + "longitude": "99.54832000" + }, + { + "id": "106624", + "name": "Phanom Thuan", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "14.13031000", + "longitude": "99.69858000" + }, + { + "id": "106685", + "name": "Sangkhla Buri", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "15.15553000", + "longitude": "98.45361000" + }, + { + "id": "106722", + "name": "Tha Maka", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "13.90000000", + "longitude": "99.76667000" + }, + { + "id": "106723", + "name": "Tha Muang", + "state_id": 3511, + "state_code": "71", + "country_id": 219, + "country_code": "TH", + "latitude": "13.96118000", + "longitude": "99.64122000" + }, + { + "id": "105191", + "name": "Amphoe Ban Fang", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.49162000", + "longitude": "102.61669000" + }, + { + "id": "105192", + "name": "Amphoe Ban Haet", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.20067000", + "longitude": "102.77465000" + }, + { + "id": "105211", + "name": "Amphoe Ban Phai", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.04603000", + "longitude": "102.77755000" + }, + { + "id": "105307", + "name": "Amphoe Chonnabot", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.02249000", + "longitude": "102.55946000" + }, + { + "id": "105310", + "name": "Amphoe Chum Phae", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.61591000", + "longitude": "102.09619000" + }, + { + "id": "105398", + "name": "Amphoe Khao Suan Kwang", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.91682000", + "longitude": "102.78206000" + }, + { + "id": "105417", + "name": "Amphoe Khok Pho Chai", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.07194000", + "longitude": "102.38428000" + }, + { + "id": "105452", + "name": "Amphoe Kranuan", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.75261000", + "longitude": "103.08044000" + }, + { + "id": "105525", + "name": "Amphoe Mancha Khiri", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.21242000", + "longitude": "102.51973000" + }, + { + "id": "105545", + "name": "Amphoe Mueang Khon Kaen", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.46048000", + "longitude": "102.80873000" + }, + { + "id": "105638", + "name": "Amphoe Nam Phong", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.69946000", + "longitude": "102.88125000" + }, + { + "id": "105654", + "name": "Amphoe Non Sila", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "15.96420000", + "longitude": "102.69074000" + }, + { + "id": "105674", + "name": "Amphoe Nong Na Kham", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.81010000", + "longitude": "102.32800000" + }, + { + "id": "105678", + "name": "Amphoe Nong Ruea", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.49166000", + "longitude": "102.44572000" + }, + { + "id": "105681", + "name": "Amphoe Nong Song Hong", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "15.76419000", + "longitude": "102.79174000" + }, + { + "id": "105751", + "name": "Amphoe Phon", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "15.80672000", + "longitude": "102.59111000" + }, + { + "id": "105766", + "name": "Amphoe Phra Yuen", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.30823000", + "longitude": "102.67108000" + }, + { + "id": "105777", + "name": "Amphoe Phu Pha Man", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.71864000", + "longitude": "101.87081000" + }, + { + "id": "105783", + "name": "Amphoe Phu Wiang", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.67910000", + "longitude": "102.39893000" + }, + { + "id": "105801", + "name": "Amphoe Pueai Noi", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "15.88867000", + "longitude": "102.87618000" + }, + { + "id": "106178", + "name": "Amphoe Sam Sung", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.56208000", + "longitude": "103.05473000" + }, + { + "id": "106212", + "name": "Amphoe Si Chom Phu", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.76258000", + "longitude": "102.13078000" + }, + { + "id": "106325", + "name": "Amphoe Ubolratana", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.77766000", + "longitude": "102.67536000" + }, + { + "id": "106331", + "name": "Amphoe Waeng Noi", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "15.80631000", + "longitude": "102.42358000" + }, + { + "id": "106332", + "name": "Amphoe Waeng Yai", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "15.92532000", + "longitude": "102.46221000" + }, + { + "id": "106363", + "name": "Amphoe Wiang Kao", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.70138000", + "longitude": "102.29186000" + }, + { + "id": "106406", + "name": "Ban Phai", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.05997000", + "longitude": "102.73097000" + }, + { + "id": "106483", + "name": "Chum Phae", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.54430000", + "longitude": "102.09924000" + }, + { + "id": "106531", + "name": "Khon Kaen", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.44671000", + "longitude": "102.83300000" + }, + { + "id": "106541", + "name": "Kranuan", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "16.70672000", + "longitude": "103.07878000" + }, + { + "id": "106639", + "name": "Phon", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "15.81600000", + "longitude": "102.59981000" + }, + { + "id": "106659", + "name": "Pueai Noi", + "state_id": 3485, + "state_code": "40", + "country_id": 219, + "country_code": "TH", + "latitude": "15.86978000", + "longitude": "102.90767000" + }, + { + "id": "105182", + "name": "Amphoe Ao Luek", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "8.38526000", + "longitude": "98.75378000" + }, + { + "id": "105396", + "name": "Amphoe Khao Phanom", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "8.26953000", + "longitude": "99.11813000" + }, + { + "id": "105411", + "name": "Amphoe Khlong Thom", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "7.91470000", + "longitude": "99.19935000" + }, + { + "id": "105442", + "name": "Amphoe Ko Lanta", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "7.71267000", + "longitude": "99.07813000" + }, + { + "id": "105477", + "name": "Amphoe Lam Thap", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "8.04799000", + "longitude": "99.33543000" + }, + { + "id": "105546", + "name": "Amphoe Mueang Krabi", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "8.15947000", + "longitude": "98.86661000" + }, + { + "id": "105689", + "name": "Amphoe Nuea Khlong", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "8.06058000", + "longitude": "99.04039000" + }, + { + "id": "105789", + "name": "Amphoe Plai Phraya", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "8.54087000", + "longitude": "98.83671000" + }, + { + "id": "106381", + "name": "Ao Luek", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "8.37803000", + "longitude": "98.72117000" + }, + { + "id": "106534", + "name": "Ko Lanta", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "7.53362000", + "longitude": "99.08647000" + }, + { + "id": "106540", + "name": "Krabi", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "8.07257000", + "longitude": "98.91052000" + }, + { + "id": "106605", + "name": "Nuea Khlong", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "8.07143000", + "longitude": "98.99933000" + }, + { + "id": "106676", + "name": "Saladan", + "state_id": 3478, + "state_code": "81", + "country_id": 219, + "country_code": "TH", + "latitude": "7.61342000", + "longitude": "99.03651000" + }, + { + "id": "105268", + "name": "Amphoe Chae Hom", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.75404000", + "longitude": "99.66822000" + }, + { + "id": "105343", + "name": "Amphoe Hang Chat", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.35497000", + "longitude": "99.27978000" + }, + { + "id": "105440", + "name": "Amphoe Ko Kha", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.14408000", + "longitude": "99.35229000" + }, + { + "id": "105505", + "name": "Amphoe Mae Mo", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.40244000", + "longitude": "99.82135000" + }, + { + "id": "105507", + "name": "Amphoe Mae Phrik", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "17.50450000", + "longitude": "99.05847000" + }, + { + "id": "105517", + "name": "Amphoe Mae Tha", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.11122000", + "longitude": "99.57826000" + }, + { + "id": "105547", + "name": "Amphoe Mueang Lampang", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.38901000", + "longitude": "99.54388000" + }, + { + "id": "105564", + "name": "Amphoe Mueang Pan", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.79093000", + "longitude": "99.45408000" + }, + { + "id": "105642", + "name": "Amphoe Ngao", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.75948000", + "longitude": "99.95295000" + }, + { + "id": "106240", + "name": "Amphoe Soem Ngam", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.09406000", + "longitude": "99.17297000" + }, + { + "id": "106249", + "name": "Amphoe Sop Prap", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "17.89861000", + "longitude": "99.34081000" + }, + { + "id": "106307", + "name": "Amphoe Thoen", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "17.58128000", + "longitude": "99.28836000" + }, + { + "id": "106342", + "name": "Amphoe Wang Nuea", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "19.16011000", + "longitude": "99.64767000" + }, + { + "id": "106549", + "name": "Lampang", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "18.29232000", + "longitude": "99.49277000" + }, + { + "id": "106731", + "name": "Thoen", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "17.61289000", + "longitude": "99.21612000" + }, + { + "id": "106745", + "name": "Wang Nuea", + "state_id": 3544, + "state_code": "52", + "country_id": 219, + "country_code": "TH", + "latitude": "19.14678000", + "longitude": "99.61933000" + }, + { + "id": "105193", + "name": "Amphoe Ban Hong", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "18.27422000", + "longitude": "98.83794000" + }, + { + "id": "105220", + "name": "Amphoe Ban Thi", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "18.65894000", + "longitude": "99.15883000" + }, + { + "id": "105490", + "name": "Amphoe Li", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "17.78639000", + "longitude": "98.88674000" + }, + { + "id": "105516", + "name": "Amphoe Mae Tha", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "18.39540000", + "longitude": "99.09233000" + }, + { + "id": "105548", + "name": "Amphoe Mueang Lamphun", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "18.55217000", + "longitude": "99.05905000" + }, + { + "id": "105697", + "name": "Amphoe Pa Sang", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "18.41397000", + "longitude": "98.88281000" + }, + { + "id": "106313", + "name": "Amphoe Thung Hua Chang", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "17.98333000", + "longitude": "99.05000000" + }, + { + "id": "106364", + "name": "Amphoe Wiang Nong Long", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "18.41844000", + "longitude": "98.75856000" + }, + { + "id": "106550", + "name": "Lamphun", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "18.58054000", + "longitude": "99.00745000" + }, + { + "id": "106567", + "name": "Mae Tha", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "18.46456000", + "longitude": "99.14026000" + }, + { + "id": "106607", + "name": "Pa Sang", + "state_id": 3483, + "state_code": "51", + "country_id": 219, + "country_code": "TH", + "latitude": "18.52617000", + "longitude": "98.93936000" + }, + { + "id": "105294", + "name": "Amphoe Chiang Khan", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.82441000", + "longitude": "101.73424000" + }, + { + "id": "105320", + "name": "Amphoe Dan Sai", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.22101000", + "longitude": "101.22373000" + }, + { + "id": "105338", + "name": "Amphoe Erawan", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.28823000", + "longitude": "101.97443000" + }, + { + "id": "105549", + "name": "Amphoe Mueang Loei", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.54211000", + "longitude": "101.71932000" + }, + { + "id": "105611", + "name": "Amphoe Na Duang", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.53833000", + "longitude": "101.99639000" + }, + { + "id": "105613", + "name": "Amphoe Na Haeo", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.43942000", + "longitude": "100.99654000" + }, + { + "id": "105665", + "name": "Amphoe Nong Hin", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.08087000", + "longitude": "101.82643000" + }, + { + "id": "105700", + "name": "Amphoe Pak Chom", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.91100000", + "longitude": "101.95777000" + }, + { + "id": "105716", + "name": "Amphoe Pha Khao", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.05638000", + "longitude": "102.01575000" + }, + { + "id": "105775", + "name": "Amphoe Phu Kradueng", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "16.90190000", + "longitude": "101.84562000" + }, + { + "id": "105776", + "name": "Amphoe Phu Luang", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.09782000", + "longitude": "101.64413000" + }, + { + "id": "105780", + "name": "Amphoe Phu Ruea", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.35076000", + "longitude": "101.41329000" + }, + { + "id": "106275", + "name": "Amphoe Tha Li", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.61279000", + "longitude": "101.44141000" + }, + { + "id": "106346", + "name": "Amphoe Wang Saphung", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.28028000", + "longitude": "101.73342000" + }, + { + "id": "106557", + "name": "Loei", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.49052000", + "longitude": "101.72749000" + }, + { + "id": "106649", + "name": "Phu Kradueng", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "16.88425000", + "longitude": "101.88467000" + }, + { + "id": "106747", + "name": "Wang Saphung", + "state_id": 3509, + "state_code": "42", + "country_id": 219, + "country_code": "TH", + "latitude": "17.30097000", + "longitude": "101.76850000" + }, + { + "id": "105203", + "name": "Amphoe Ban Mi", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "15.06154000", + "longitude": "100.55200000" + }, + { + "id": "105269", + "name": "Amphoe Chai Badan", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "15.18944000", + "longitude": "101.12682000" + }, + { + "id": "105415", + "name": "Amphoe Khok Charoen", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "15.40384000", + "longitude": "100.84968000" + }, + { + "id": "105418", + "name": "Amphoe Khok Samrong", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "15.04303000", + "longitude": "100.77151000" + }, + { + "id": "105475", + "name": "Amphoe Lam Sonthi", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "15.32833000", + "longitude": "101.34783000" + }, + { + "id": "105672", + "name": "Amphoe Nong Muang", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "15.27740000", + "longitude": "100.70413000" + }, + { + "id": "105732", + "name": "Amphoe Phatthana Nikhom", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "14.90917000", + "longitude": "101.02673000" + }, + { + "id": "105816", + "name": "Amphoe Sa Bot", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "15.23832000", + "longitude": "100.88318000" + }, + { + "id": "106276", + "name": "Amphoe Tha Luang", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "15.04786000", + "longitude": "101.19986000" + }, + { + "id": "106291", + "name": "Amphoe Tha Wung", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "14.82506000", + "longitude": "100.50921000" + }, + { + "id": "106461", + "name": "Chai Badan", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "15.20000000", + "longitude": "101.13333000" + }, + { + "id": "106560", + "name": "Lop Buri", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "14.79808000", + "longitude": "100.65397000" + }, + { + "id": "106571", + "name": "Muang Lop Buri District", + "state_id": 3543, + "state_code": "16", + "country_id": 219, + "country_code": "TH", + "latitude": "14.82334000", + "longitude": "100.67557000" + }, + { + "id": "105434", + "name": "Amphoe Khun Yuam", + "state_id": 3505, + "state_code": "58", + "country_id": 219, + "country_code": "TH", + "latitude": "18.82643000", + "longitude": "97.93303000" + }, + { + "id": "105502", + "name": "Amphoe Mae La Noi", + "state_id": 3505, + "state_code": "58", + "country_id": 219, + "country_code": "TH", + "latitude": "18.47823000", + "longitude": "97.98295000" + }, + { + "id": "105512", + "name": "Amphoe Mae Sariang", + "state_id": 3505, + "state_code": "58", + "country_id": 219, + "country_code": "TH", + "latitude": "18.26474000", + "longitude": "97.77057000" + }, + { + "id": "105550", + "name": "Amphoe Mueang Mae Hong Son", + "state_id": 3505, + "state_code": "58", + "country_id": 219, + "country_code": "TH", + "latitude": "19.28862000", + "longitude": "98.00607000" + }, + { + "id": "105699", + "name": "Amphoe Pai", + "state_id": 3505, + "state_code": "58", + "country_id": 219, + "country_code": "TH", + "latitude": "19.36036000", + "longitude": "98.40638000" + }, + { + "id": "105711", + "name": "Amphoe Pang Mapha", + "state_id": 3505, + "state_code": "58", + "country_id": 219, + "country_code": "TH", + "latitude": "19.60451000", + "longitude": "98.20560000" + }, + { + "id": "106248", + "name": "Amphoe Sop Moei", + "state_id": 3505, + "state_code": "58", + "country_id": 219, + "country_code": "TH", + "latitude": "17.96333000", + "longitude": "97.93149000" + }, + { + "id": "106563", + "name": "Mae Hong Son", + "state_id": 3505, + "state_code": "58", + "country_id": 219, + "country_code": "TH", + "latitude": "19.30029000", + "longitude": "97.96852000" + }, + { + "id": "105255", + "name": "Amphoe Borabue", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "15.98881000", + "longitude": "103.12521000" + }, + { + "id": "105300", + "name": "Amphoe Chiang Yuen", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "16.40942000", + "longitude": "103.07005000" + }, + { + "id": "105308", + "name": "Amphoe Chuen Chom", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "16.54801000", + "longitude": "103.14796000" + }, + { + "id": "105363", + "name": "Amphoe Kae Dam", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "16.04961000", + "longitude": "103.38953000" + }, + { + "id": "105373", + "name": "Amphoe Kantharawichai", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "16.27992000", + "longitude": "103.25892000" + }, + { + "id": "105450", + "name": "Amphoe Kosum Phisai", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "16.23882000", + "longitude": "102.99081000" + }, + { + "id": "105467", + "name": "Amphoe Kut Rang", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "16.02970000", + "longitude": "102.95059000" + }, + { + "id": "105551", + "name": "Amphoe Mueang Maha Sarakham", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "16.11882000", + "longitude": "103.31160000" + }, + { + "id": "105609", + "name": "Amphoe Na Chueak", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "15.80180000", + "longitude": "103.05725000" + }, + { + "id": "105612", + "name": "Amphoe Na Dun", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "15.71952000", + "longitude": "103.23004000" + }, + { + "id": "105734", + "name": "Amphoe Phayakkhaphum Phisai", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "15.51963000", + "longitude": "103.23268000" + }, + { + "id": "106352", + "name": "Amphoe Wapi Pathum", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "15.85953000", + "longitude": "103.34091000" + }, + { + "id": "106375", + "name": "Amphoe Yang Si Surat", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "15.64953000", + "longitude": "103.08916000" + }, + { + "id": "106539", + "name": "Kosum Phisai", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "16.24858000", + "longitude": "103.06739000" + }, + { + "id": "106568", + "name": "Maha Sarakham", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "16.18483000", + "longitude": "103.30067000" + }, + { + "id": "106628", + "name": "Phayakkhaphum Phisai", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "15.51631000", + "longitude": "103.19367000" + }, + { + "id": "106749", + "name": "Wapi Pathum", + "state_id": 3517, + "state_code": "44", + "country_id": 219, + "country_code": "TH", + "latitude": "15.84523000", + "longitude": "103.37678000" + }, + { + "id": "105334", + "name": "Amphoe Don Tan", + "state_id": 3546, + "state_code": "49", + "country_id": 219, + "country_code": "TH", + "latitude": "16.28796000", + "longitude": "104.82231000" + }, + { + "id": "105337", + "name": "Amphoe Dong Luang", + "state_id": 3546, + "state_code": "49", + "country_id": 219, + "country_code": "TH", + "latitude": "16.79649000", + "longitude": "104.35562000" + }, + { + "id": "105388", + "name": "Amphoe Khamcha-i", + "state_id": 3546, + "state_code": "49", + "country_id": 219, + "country_code": "TH", + "latitude": "16.61452000", + "longitude": "104.35929000" + }, + { + "id": "105552", + "name": "Amphoe Mueang Mukdahan", + "state_id": 3546, + "state_code": "49", + "country_id": 219, + "country_code": "TH", + "latitude": "16.55110000", + "longitude": "104.64605000" + }, + { + "id": "105643", + "name": "Amphoe Nikhom Kham Soi", + "state_id": 3546, + "state_code": "49", + "country_id": 219, + "country_code": "TH", + "latitude": "16.35375000", + "longitude": "104.55864000" + }, + { + "id": "105683", + "name": "Amphoe Nong Sung", + "state_id": 3546, + "state_code": "49", + "country_id": 219, + "country_code": "TH", + "latitude": "16.44759000", + "longitude": "104.33649000" + }, + { + "id": "106333", + "name": "Amphoe Wan Yai", + "state_id": 3546, + "state_code": "49", + "country_id": 219, + "country_code": "TH", + "latitude": "16.72030000", + "longitude": "104.72865000" + }, + { + "id": "106574", + "name": "Mukdahan", + "state_id": 3546, + "state_code": "49", + "country_id": 219, + "country_code": "TH", + "latitude": "16.54531000", + "longitude": "104.72351000" + }, + { + "id": "105206", + "name": "Amphoe Ban Na", + "state_id": 3535, + "state_code": "26", + "country_id": 219, + "country_code": "TH", + "latitude": "14.26799000", + "longitude": "101.06445000" + }, + { + "id": "105553", + "name": "Amphoe Mueang Nakhon Nayok", + "state_id": 3535, + "state_code": "26", + "country_id": 219, + "country_code": "TH", + "latitude": "14.27730000", + "longitude": "101.23379000" + }, + { + "id": "105691", + "name": "Amphoe Ongkharak", + "state_id": 3535, + "state_code": "26", + "country_id": 219, + "country_code": "TH", + "latitude": "14.07554000", + "longitude": "101.00891000" + }, + { + "id": "105706", + "name": "Amphoe Pak Phli", + "state_id": 3535, + "state_code": "26", + "country_id": 219, + "country_code": "TH", + "latitude": "14.22499000", + "longitude": "101.34482000" + }, + { + "id": "106580", + "name": "Nakhon Nayok", + "state_id": 3535, + "state_code": "26", + "country_id": 219, + "country_code": "TH", + "latitude": "14.20463000", + "longitude": "101.21295000" + }, + { + "id": "105231", + "name": "Amphoe Bang Len", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "14.05000000", + "longitude": "100.18333000" + }, + { + "id": "105335", + "name": "Amphoe Don Tum", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "13.94499000", + "longitude": "100.09003000" + }, + { + "id": "105554", + "name": "Amphoe Mueang Nakhon Pathom", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "13.81944000", + "longitude": "100.02375000" + }, + { + "id": "105631", + "name": "Amphoe Nakhon Chai Si", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "13.81173000", + "longitude": "100.18157000" + }, + { + "id": "105786", + "name": "Amphoe Phutthamonthon", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "13.82559000", + "longitude": "100.29239000" + }, + { + "id": "106176", + "name": "Amphoe Sam Phran", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "13.72035000", + "longitude": "100.21071000" + }, + { + "id": "106434", + "name": "Bang Len", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "14.02188000", + "longitude": "100.17183000" + }, + { + "id": "106509", + "name": "Kamphaeng Saen District", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "14.02823000", + "longitude": "99.96152000" + }, + { + "id": "106581", + "name": "Nakhon Pathom", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "13.81960000", + "longitude": "100.04427000" + }, + { + "id": "106677", + "name": "Sam Phran", + "state_id": 3503, + "state_code": "73", + "country_id": 219, + "country_code": "TH", + "latitude": "13.72698000", + "longitude": "100.21526000" + }, + { + "id": "105209", + "name": "Amphoe Ban Phaeng", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.86955000", + "longitude": "104.22744000" + }, + { + "id": "105555", + "name": "Amphoe Mueang Nakhon Phanom", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.31965000", + "longitude": "104.68232000" + }, + { + "id": "105614", + "name": "Amphoe Na Kae", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "16.95737000", + "longitude": "104.49349000" + }, + { + "id": "105624", + "name": "Amphoe Na Thom", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.82134000", + "longitude": "104.10871000" + }, + { + "id": "105625", + "name": "Amphoe Na Wa", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.49922000", + "longitude": "104.11833000" + }, + { + "id": "105755", + "name": "Amphoe Phon Sawan", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.46868000", + "longitude": "104.42234000" + }, + { + "id": "105787", + "name": "Amphoe Pla Pak", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.20133000", + "longitude": "104.54674000" + }, + { + "id": "105811", + "name": "Amphoe Renu Nakhon", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.05080000", + "longitude": "104.65664000" + }, + { + "id": "106227", + "name": "Amphoe Si Songkhram", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.62989000", + "longitude": "104.24495000" + }, + { + "id": "106289", + "name": "Amphoe Tha Uthen", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.59263000", + "longitude": "104.49884000" + }, + { + "id": "106303", + "name": "Amphoe That Phanom", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "16.96457000", + "longitude": "104.70277000" + }, + { + "id": "106350", + "name": "Amphoe Wangyang", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.07189000", + "longitude": "104.45373000" + }, + { + "id": "106577", + "name": "Na Wa", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.48970000", + "longitude": "104.10056000" + }, + { + "id": "106582", + "name": "Nakhon Phanom", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "17.41081000", + "longitude": "104.77856000" + }, + { + "id": "106729", + "name": "That Phanom", + "state_id": 3548, + "state_code": "48", + "country_id": 219, + "country_code": "TH", + "latitude": "16.93636000", + "longitude": "104.71039000" + }, + { + "id": "105201", + "name": "Amphoe Ban Lueam", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.57431000", + "longitude": "102.14204000" + }, + { + "id": "105257", + "name": "Amphoe Bua Lai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.66917000", + "longitude": "102.51761000" + }, + { + "id": "105258", + "name": "Amphoe Bua Yai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.58488000", + "longitude": "102.38738000" + }, + { + "id": "105275", + "name": "Amphoe Chakkarat", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.95686000", + "longitude": "102.43718000" + }, + { + "id": "105280", + "name": "Amphoe Chaloem Phra Kiat", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.97540000", + "longitude": "102.29372000" + }, + { + "id": "105302", + "name": "Amphoe Chok Chai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.76341000", + "longitude": "102.20338000" + }, + { + "id": "105311", + "name": "Amphoe Chum Phuang", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.25990000", + "longitude": "102.75756000" + }, + { + "id": "105318", + "name": "Amphoe Dan Khun Thot", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.21835000", + "longitude": "101.69790000" + }, + { + "id": "105357", + "name": "Amphoe Huai Thalaeng", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.04244000", + "longitude": "102.63535000" + }, + { + "id": "105367", + "name": "Amphoe Kaeng Sanam Nang", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.69561000", + "longitude": "102.25366000" + }, + { + "id": "105385", + "name": "Amphoe Kham Sakae Saeng", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.38042000", + "longitude": "102.16636000" + }, + { + "id": "105387", + "name": "Amphoe Kham Thale So", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.03639000", + "longitude": "101.93170000" + }, + { + "id": "105421", + "name": "Amphoe Khon Buri", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.37634000", + "longitude": "102.21746000" + }, + { + "id": "105422", + "name": "Amphoe Khong", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.43311000", + "longitude": "102.29617000" + }, + { + "id": "105476", + "name": "Amphoe Lam Thamen Chai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.28424000", + "longitude": "102.90723000" + }, + { + "id": "105556", + "name": "Amphoe Mueang Nakhon Ratchasima", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.95678000", + "longitude": "102.08933000" + }, + { + "id": "105605", + "name": "Amphoe Mueang Yang", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.43842000", + "longitude": "102.89331000" + }, + { + "id": "105648", + "name": "Amphoe Non Daeng", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.44479000", + "longitude": "102.54565000" + }, + { + "id": "105655", + "name": "Amphoe Non Sung", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.20892000", + "longitude": "102.28400000" + }, + { + "id": "105657", + "name": "Amphoe Non Thai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.18106000", + "longitude": "102.03001000" + }, + { + "id": "105659", + "name": "Amphoe Nong Bun Mak", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.71295000", + "longitude": "102.37447000" + }, + { + "id": "105701", + "name": "Amphoe Pak Chong", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.61923000", + "longitude": "101.44814000" + }, + { + "id": "105708", + "name": "Amphoe Pak Thong Chai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.66228000", + "longitude": "101.94227000" + }, + { + "id": "105741", + "name": "Amphoe Phimai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.24622000", + "longitude": "102.54217000" + }, + { + "id": "105765", + "name": "Amphoe Phra Thong Kham", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.35114000", + "longitude": "101.99355000" + }, + { + "id": "105799", + "name": "Amphoe Prathai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.55911000", + "longitude": "102.69786000" + }, + { + "id": "106232", + "name": "Amphoe Sida", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.56406000", + "longitude": "102.55823000" + }, + { + "id": "106234", + "name": "Amphoe Sikhio", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.94275000", + "longitude": "101.60672000" + }, + { + "id": "106235", + "name": "Amphoe Sikhiu", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.89944000", + "longitude": "101.70833000" + }, + { + "id": "106241", + "name": "Amphoe Soeng Sang", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.34456000", + "longitude": "102.49297000" + }, + { + "id": "106257", + "name": "Amphoe Sung Noen", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.85623000", + "longitude": "101.83049000" + }, + { + "id": "106306", + "name": "Amphoe Thepharak", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.28639000", + "longitude": "101.50373000" + }, + { + "id": "106339", + "name": "Amphoe Wang Nam Khiao", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.44786000", + "longitude": "101.85533000" + }, + { + "id": "106390", + "name": "Ban Huai Thalaeng", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.98333000", + "longitude": "102.65000000" + }, + { + "id": "106454", + "name": "Bua Yai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.58552000", + "longitude": "102.42587000" + }, + { + "id": "106477", + "name": "Chok Chai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.72844000", + "longitude": "102.16524000" + }, + { + "id": "106486", + "name": "Dan Khun Thot", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.20850000", + "longitude": "101.77138000" + }, + { + "id": "106517", + "name": "Kham Sakae Saeng", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.33221000", + "longitude": "102.17278000" + }, + { + "id": "106530", + "name": "Khon Buri", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.52541000", + "longitude": "102.24591000" + }, + { + "id": "106583", + "name": "Nakhon Ratchasima", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.97066000", + "longitude": "102.10196000" + }, + { + "id": "106592", + "name": "Non Sung", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.18014000", + "longitude": "102.25695000" + }, + { + "id": "106593", + "name": "Non Thai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.19580000", + "longitude": "102.07145000" + }, + { + "id": "106609", + "name": "Pak Chong", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.70802000", + "longitude": "101.41614000" + }, + { + "id": "106612", + "name": "Pak Thong Chai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.72260000", + "longitude": "102.02512000" + }, + { + "id": "106635", + "name": "Phimai", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "15.22324000", + "longitude": "102.49473000" + }, + { + "id": "106703", + "name": "Soeng Sang", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.42642000", + "longitude": "102.46058000" + }, + { + "id": "106708", + "name": "Sung Noen", + "state_id": 3497, + "state_code": "30", + "country_id": 219, + "country_code": "TH", + "latitude": "14.89920000", + "longitude": "101.82075000" + }, + { + "id": "105248", + "name": "Amphoe Banphot Phisai", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.99714000", + "longitude": "99.99409000" + }, + { + "id": "105312", + "name": "Amphoe Chum Ta Bong", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.68311000", + "longitude": "99.56908000" + }, + { + "id": "105314", + "name": "Amphoe Chumsaeng", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.84745000", + "longitude": "100.28971000" + }, + { + "id": "105374", + "name": "Amphoe Kao Liao", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.88778000", + "longitude": "100.09647000" + }, + { + "id": "105456", + "name": "Amphoe Krok Phra", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.58638000", + "longitude": "100.01815000" + }, + { + "id": "105489", + "name": "Amphoe Lat Yao", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.77526000", + "longitude": "99.80046000" + }, + { + "id": "105508", + "name": "Amphoe Mae Poen", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.70656000", + "longitude": "99.34827000" + }, + { + "id": "105519", + "name": "Amphoe Mae Wong", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.83538000", + "longitude": "99.40785000" + }, + { + "id": "105557", + "name": "Amphoe Mueang Nakhon Sawan", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.71991000", + "longitude": "100.10067000" + }, + { + "id": "105658", + "name": "Amphoe Nong Bua", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.86591000", + "longitude": "100.62860000" + }, + { + "id": "105718", + "name": "Amphoe Phai Sali", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.58723000", + "longitude": "100.68530000" + }, + { + "id": "105736", + "name": "Amphoe Phayuha Khiri", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.50783000", + "longitude": "100.21226000" + }, + { + "id": "106262", + "name": "Amphoe Tak Fa", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.38249000", + "longitude": "100.46693000" + }, + { + "id": "106263", + "name": "Amphoe Takhli", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.25928000", + "longitude": "100.38058000" + }, + { + "id": "106287", + "name": "Amphoe Tha Tako", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.65434000", + "longitude": "100.45939000" + }, + { + "id": "106514", + "name": "Kao Liao", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.85053000", + "longitude": "100.07914000" + }, + { + "id": "106556", + "name": "Lat Yao", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.75100000", + "longitude": "99.78925000" + }, + { + "id": "106584", + "name": "Nakhon Sawan", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.70472000", + "longitude": "100.13717000" + }, + { + "id": "106594", + "name": "Nong Bua", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.86458000", + "longitude": "100.58581000" + }, + { + "id": "106618", + "name": "Phai Sali", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.60003000", + "longitude": "100.64937000" + }, + { + "id": "106630", + "name": "Phayuha Khiri", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.45525000", + "longitude": "100.13533000" + }, + { + "id": "106715", + "name": "Takhli", + "state_id": 3492, + "state_code": "60", + "country_id": 219, + "country_code": "TH", + "latitude": "15.26336000", + "longitude": "100.34378000" + }, + { + "id": "105225", + "name": "Amphoe Bang Khan", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.01208000", + "longitude": "99.48449000" + }, + { + "id": "105267", + "name": "Amphoe Cha-uat", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "7.95645000", + "longitude": "99.98929000" + }, + { + "id": "105278", + "name": "Amphoe Chaloem Phra Kiat", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.18333000", + "longitude": "100.05000000" + }, + { + "id": "105284", + "name": "Amphoe Chang Klang", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.35697000", + "longitude": "99.64592000" + }, + { + "id": "105290", + "name": "Amphoe Chawang", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.46322000", + "longitude": "99.51107000" + }, + { + "id": "105291", + "name": "Amphoe Chian Yai", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.11719000", + "longitude": "100.15819000" + }, + { + "id": "105309", + "name": "Amphoe Chulabhorn", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.07591000", + "longitude": "99.85365000" + }, + { + "id": "105350", + "name": "Amphoe Hua Sai", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.01181000", + "longitude": "100.24614000" + }, + { + "id": "105389", + "name": "Amphoe Khanom", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "9.18317000", + "longitude": "99.80192000" + }, + { + "id": "105482", + "name": "Amphoe Lan Saka", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.37799000", + "longitude": "99.78328000" + }, + { + "id": "105558", + "name": "Amphoe Mueang Nakhon Si Thammarat", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.44013000", + "longitude": "99.98537000" + }, + { + "id": "105607", + "name": "Amphoe Na Bon", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.26976000", + "longitude": "99.55694000" + }, + { + "id": "105688", + "name": "Amphoe Nopphitam", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.75166000", + "longitude": "99.67087000" + }, + { + "id": "105704", + "name": "Amphoe Pak Phanang", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.30711000", + "longitude": "100.17361000" + }, + { + "id": "105742", + "name": "Amphoe Phipun", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.60289000", + "longitude": "99.59528000" + }, + { + "id": "105761", + "name": "Amphoe Phra Phrom", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.32652000", + "longitude": "99.93240000" + }, + { + "id": "105772", + "name": "Amphoe Phrom Khiri", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.54242000", + "longitude": "99.79229000" + }, + { + "id": "105812", + "name": "Amphoe Ron Phibun", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.17997000", + "longitude": "99.89248000" + }, + { + "id": "106231", + "name": "Amphoe Sichon", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.94981000", + "longitude": "99.81322000" + }, + { + "id": "106284", + "name": "Amphoe Tha Sala", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.69367000", + "longitude": "99.88539000" + }, + { + "id": "106296", + "name": "Amphoe Tham Phannara", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.45822000", + "longitude": "99.37718000" + }, + { + "id": "106317", + "name": "Amphoe Thung Song", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.11757000", + "longitude": "99.66907000" + }, + { + "id": "106320", + "name": "Amphoe Thung Yai", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.28708000", + "longitude": "99.37196000" + }, + { + "id": "106470", + "name": "Chawang", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.42614000", + "longitude": "99.50472000" + }, + { + "id": "106585", + "name": "Nakhon Si Thammarat", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.43333000", + "longitude": "99.96667000" + }, + { + "id": "106611", + "name": "Pak Phanang", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.35109000", + "longitude": "100.20195000" + }, + { + "id": "106669", + "name": "Ron Phibun", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.17911000", + "longitude": "99.85425000" + }, + { + "id": "106726", + "name": "Tham Phannara", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.42045000", + "longitude": "99.39517000" + }, + { + "id": "106733", + "name": "Thung Song", + "state_id": 3520, + "state_code": "80", + "country_id": 219, + "country_code": "TH", + "latitude": "8.16453000", + "longitude": "99.68039000" + }, + { + "id": "105200", + "name": "Amphoe Ban Luang", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "18.88375000", + "longitude": "100.46014000" + }, + { + "id": "105251", + "name": "Amphoe Bo Kluea", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "19.08994000", + "longitude": "101.18952000" + }, + { + "id": "105276", + "name": "Amphoe Chaloem Phra Kiat", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "19.50618000", + "longitude": "101.14249000" + }, + { + "id": "105297", + "name": "Amphoe Chiang Klang", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "19.30637000", + "longitude": "100.87878000" + }, + { + "id": "105500", + "name": "Amphoe Mae Charim", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "18.71336000", + "longitude": "101.11011000" + }, + { + "id": "105559", + "name": "Amphoe Mueang Nan", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "18.89008000", + "longitude": "100.67472000" + }, + { + "id": "105619", + "name": "Amphoe Na Muen", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "18.12524000", + "longitude": "100.60270000" + }, + { + "id": "105620", + "name": "Amphoe Na Noi", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "18.30269000", + "longitude": "100.72393000" + }, + { + "id": "105779", + "name": "Amphoe Phu Phiang", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "18.78030000", + "longitude": "100.87497000" + }, + { + "id": "105800", + "name": "Amphoe Pua", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "19.16306000", + "longitude": "101.02796000" + }, + { + "id": "106192", + "name": "Amphoe Santi Suk", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "18.91190000", + "longitude": "101.00016000" + }, + { + "id": "106246", + "name": "Amphoe Song Khwae", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "19.40911000", + "longitude": "100.66174000" + }, + { + "id": "106290", + "name": "Amphoe Tha Wang Pha", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "19.13148000", + "longitude": "100.76117000" + }, + { + "id": "106311", + "name": "Amphoe Thung Chang", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "19.46342000", + "longitude": "100.91937000" + }, + { + "id": "106366", + "name": "Amphoe Wiang Sa", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "18.55088000", + "longitude": "100.72754000" + }, + { + "id": "106473", + "name": "Chiang Klang", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "19.29378000", + "longitude": "100.86169000" + }, + { + "id": "106588", + "name": "Nan", + "state_id": 3530, + "state_code": "55", + "country_id": 219, + "country_code": "TH", + "latitude": "18.78378000", + "longitude": "100.77899000" + }, + { + "id": "105185", + "name": "Amphoe Ba Cho", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.54591000", + "longitude": "101.64923000" + }, + { + "id": "105283", + "name": "Amphoe Chanae", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.04591000", + "longitude": "101.61765000" + }, + { + "id": "105301", + "name": "Amphoe Cho-airong", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.23011000", + "longitude": "101.84721000" + }, + { + "id": "105560", + "name": "Amphoe Mueang Narathiwat", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.39391000", + "longitude": "101.81316000" + }, + { + "id": "105802", + "name": "Amphoe Ra-ngae", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.25504000", + "longitude": "101.70496000" + }, + { + "id": "105815", + "name": "Amphoe Rueso", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.37450000", + "longitude": "101.51491000" + }, + { + "id": "106222", + "name": "Amphoe Si Sakhon", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.19360000", + "longitude": "101.51257000" + }, + { + "id": "106251", + "name": "Amphoe Su-ngai Kolok", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.07674000", + "longitude": "101.99818000" + }, + { + "id": "106252", + "name": "Amphoe Su-ngai Padi", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.10425000", + "longitude": "101.89333000" + }, + { + "id": "106255", + "name": "Amphoe Sukhirin", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "5.91513000", + "longitude": "101.73811000" + }, + { + "id": "106261", + "name": "Amphoe Tak Bai", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.23748000", + "longitude": "102.00238000" + }, + { + "id": "106330", + "name": "Amphoe Waeng", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "5.90042000", + "longitude": "101.86195000" + }, + { + "id": "106379", + "name": "Amphoe Yi-ngo", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.41655000", + "longitude": "101.70035000" + }, + { + "id": "106414", + "name": "Ban Su-ngai Pa Di", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.07239000", + "longitude": "101.87172000" + }, + { + "id": "106590", + "name": "Narathiwat", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.42639000", + "longitude": "101.82308000" + }, + { + "id": "106660", + "name": "Ra-ngae", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.29678000", + "longitude": "101.72844000" + }, + { + "id": "106705", + "name": "Su-ngai Kolok", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.02977000", + "longitude": "101.96586000" + }, + { + "id": "106714", + "name": "Tak Bai", + "state_id": 3553, + "state_code": "96", + "country_id": 219, + "country_code": "TH", + "latitude": "6.25947000", + "longitude": "102.05461000" + }, + { + "id": "105561", + "name": "Amphoe Mueang Nong Bua Lamphu", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "17.15818000", + "longitude": "102.39860000" + }, + { + "id": "105616", + "name": "Amphoe Na Klang", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "17.32466000", + "longitude": "102.21456000" + }, + { + "id": "105626", + "name": "Amphoe Na Wang", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "17.34290000", + "longitude": "102.07157000" + }, + { + "id": "105653", + "name": "Amphoe Non Sang", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "16.90220000", + "longitude": "102.53084000" + }, + { + "id": "106210", + "name": "Amphoe Si Bun Rueang", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "16.99775000", + "longitude": "102.22528000" + }, + { + "id": "106258", + "name": "Amphoe Suwannakhuha", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "17.54605000", + "longitude": "102.24852000" + }, + { + "id": "106575", + "name": "Na Klang", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "17.30720000", + "longitude": "102.18886000" + }, + { + "id": "106591", + "name": "Non Sang", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "16.86870000", + "longitude": "102.56642000" + }, + { + "id": "106595", + "name": "Nong Bua Lamphu", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "17.20406000", + "longitude": "102.44068000" + }, + { + "id": "106697", + "name": "Si Bun Rueang", + "state_id": 3480, + "state_code": "39", + "country_id": 219, + "country_code": "TH", + "latitude": "16.96705000", + "longitude": "102.27607000" + }, + { + "id": "105341", + "name": "Amphoe Fao Rai", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "18.00275000", + "longitude": "103.29640000" + }, + { + "id": "105562", + "name": "Amphoe Mueang Nong Khai", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "17.84661000", + "longitude": "102.78911000" + }, + { + "id": "105748", + "name": "Amphoe Pho Tak", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "17.88819000", + "longitude": "102.43023000" + }, + { + "id": "105757", + "name": "Amphoe Phonphisai", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "17.95443000", + "longitude": "103.12279000" + }, + { + "id": "105809", + "name": "Amphoe Rattanawapi", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "18.19255000", + "longitude": "103.23760000" + }, + { + "id": "105817", + "name": "Amphoe Sa Khrai", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "17.65985000", + "longitude": "102.70847000" + }, + { + "id": "106189", + "name": "Amphoe Sangkhom", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "18.05392000", + "longitude": "102.22677000" + }, + { + "id": "106211", + "name": "Amphoe Si Chiang Mai", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "17.93574000", + "longitude": "102.50306000" + }, + { + "id": "106270", + "name": "Amphoe Tha Bo", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "17.79499000", + "longitude": "102.56608000" + }, + { + "id": "106600", + "name": "Nong Khai", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "17.87847000", + "longitude": "102.74200000" + }, + { + "id": "106640", + "name": "Phon Charoen", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "18.03333000", + "longitude": "103.16667000" + }, + { + "id": "106686", + "name": "Sangkhom", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "18.06389000", + "longitude": "102.27364000" + }, + { + "id": "106698", + "name": "Si Chiang Mai", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "17.95639000", + "longitude": "102.58667000" + }, + { + "id": "106718", + "name": "Tha Bo", + "state_id": 3484, + "state_code": "43", + "country_id": 219, + "country_code": "TH", + "latitude": "17.85003000", + "longitude": "102.58139000" + }, + { + "id": "105223", + "name": "Amphoe Bang Bua Thong", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.92641000", + "longitude": "100.39360000" + }, + { + "id": "105230", + "name": "Amphoe Bang Kruai", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.80249000", + "longitude": "100.41525000" + }, + { + "id": "105246", + "name": "Amphoe Bang Yai", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.85385000", + "longitude": "100.37318000" + }, + { + "id": "105563", + "name": "Amphoe Mueang Nonthaburi", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.85581000", + "longitude": "100.49264000" + }, + { + "id": "105703", + "name": "Amphoe Pak Kret", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.91626000", + "longitude": "100.50397000" + }, + { + "id": "105824", + "name": "Amphoe Sai Noi", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "14.00627000", + "longitude": "100.31072000" + }, + { + "id": "106423", + "name": "Bang Bua Thong", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.91783000", + "longitude": "100.42403000" + }, + { + "id": "106431", + "name": "Bang Kruai", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.80500000", + "longitude": "100.47283000" + }, + { + "id": "106447", + "name": "Bang Yai", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.84341000", + "longitude": "100.36251000" + }, + { + "id": "106573", + "name": "Mueang Nonthaburi", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.86075000", + "longitude": "100.51477000" + }, + { + "id": "106610", + "name": "Pak Kret", + "state_id": 3495, + "state_code": "12", + "country_id": 219, + "country_code": "TH", + "latitude": "13.91301000", + "longitude": "100.49883000" + }, + { + "id": "105410", + "name": "Amphoe Khlong Luang", + "state_id": 3500, + "state_code": "13", + "country_id": 219, + "country_code": "TH", + "latitude": "14.09323000", + "longitude": "100.68106000" + }, + { + "id": "105473", + "name": "Amphoe Lam Luk Ka", + "state_id": 3500, + "state_code": "13", + "country_id": 219, + "country_code": "TH", + "latitude": "13.97744000", + "longitude": "100.79244000" + }, + { + "id": "105488", + "name": "Amphoe Lat Lum Kaeo", + "state_id": 3500, + "state_code": "13", + "country_id": 219, + "country_code": "TH", + "latitude": "14.04459000", + "longitude": "100.40948000" + }, + { + "id": "105565", + "name": "Amphoe Mueang Pathum Thani", + "state_id": 3500, + "state_code": "13", + "country_id": 219, + "country_code": "TH", + "latitude": "13.99105000", + "longitude": "100.53554000" + }, + { + "id": "105682", + "name": "Amphoe Nong Suea", + "state_id": 3500, + "state_code": "13", + "country_id": 219, + "country_code": "TH", + "latitude": "14.16030000", + "longitude": "100.83929000" + }, + { + "id": "106298", + "name": "Amphoe Thanyaburi", + "state_id": 3500, + "state_code": "13", + "country_id": 219, + "country_code": "TH", + "latitude": "14.02852000", + "longitude": "100.76291000" + }, + { + "id": "106397", + "name": "Ban Lam Luk Ka", + "state_id": 3500, + "state_code": "13", + "country_id": 219, + "country_code": "TH", + "latitude": "13.97738000", + "longitude": "100.77776000" + }, + { + "id": "106524", + "name": "Khlong Luang", + "state_id": 3500, + "state_code": "13", + "country_id": 219, + "country_code": "TH", + "latitude": "14.06467000", + "longitude": "100.64578000" + }, + { + "id": "106614", + "name": "Pathum Thani", + "state_id": 3500, + "state_code": "13", + "country_id": 219, + "country_code": "TH", + "latitude": "14.01346000", + "longitude": "100.53049000" + }, + { + "id": "105376", + "name": "Amphoe Kapho", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.60264000", + "longitude": "101.54327000" + }, + { + "id": "105416", + "name": "Amphoe Khok Pho", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.70858000", + "longitude": "101.11693000" + }, + { + "id": "105503", + "name": "Amphoe Mae Lan", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.66833000", + "longitude": "101.23149000" + }, + { + "id": "105522", + "name": "Amphoe Mai Kaen", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.61603000", + "longitude": "101.67864000" + }, + { + "id": "105527", + "name": "Amphoe Mayo", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.70764000", + "longitude": "101.40359000" + }, + { + "id": "105566", + "name": "Amphoe Mueang Pattani", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.85581000", + "longitude": "101.26761000" + }, + { + "id": "105661", + "name": "Amphoe Nong Chik", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.80011000", + "longitude": "101.17057000" + }, + { + "id": "105710", + "name": "Amphoe Panare", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.81211000", + "longitude": "101.51247000" + }, + { + "id": "105821", + "name": "Amphoe Sai Buri", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.70000000", + "longitude": "101.58333000" + }, + { + "id": "106321", + "name": "Amphoe Thung Yang Daeng", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.64160000", + "longitude": "101.44652000" + }, + { + "id": "106377", + "name": "Amphoe Yarang", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.69240000", + "longitude": "101.31408000" + }, + { + "id": "106378", + "name": "Amphoe Yaring", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.83507000", + "longitude": "101.39073000" + }, + { + "id": "106596", + "name": "Nong Chik", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.84356000", + "longitude": "101.17803000" + }, + { + "id": "106616", + "name": "Pattani", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.86814000", + "longitude": "101.25009000" + }, + { + "id": "106673", + "name": "Sai Buri", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.70131000", + "longitude": "101.61675000" + }, + { + "id": "106758", + "name": "Yaring", + "state_id": 3540, + "state_code": "94", + "country_id": 219, + "country_code": "TH", + "latitude": "6.86617000", + "longitude": "101.36894000" + }, + { + "id": "105378", + "name": "Amphoe Kapong", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.74139000", + "longitude": "98.47542000" + }, + { + "id": "105435", + "name": "Amphoe Khura Buri", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "9.18972000", + "longitude": "98.40806000" + }, + { + "id": "105446", + "name": "Amphoe Ko Yao", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.06549000", + "longitude": "98.57851000" + }, + { + "id": "105567", + "name": "Amphoe Mueang Phangnga", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.49350000", + "longitude": "98.50775000" + }, + { + "id": "106264", + "name": "Amphoe Takua Pa", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.86883000", + "longitude": "98.33892000" + }, + { + "id": "106265", + "name": "Amphoe Takua Thung", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.28433000", + "longitude": "98.38950000" + }, + { + "id": "106294", + "name": "Amphoe Thai Mueang", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.48995000", + "longitude": "98.31292000" + }, + { + "id": "106300", + "name": "Amphoe Thap Put", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.53768000", + "longitude": "98.63208000" + }, + { + "id": "106383", + "name": "Ban Ao Nang", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.04580000", + "longitude": "98.81035000" + }, + { + "id": "106393", + "name": "Ban Khao Lak", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.61501000", + "longitude": "98.23994000" + }, + { + "id": "106409", + "name": "Ban Phru Nai", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "7.95458000", + "longitude": "98.58989000" + }, + { + "id": "106622", + "name": "Phang Nga", + "state_id": 3549, + "state_code": "82", + "country_id": 219, + "country_code": "TH", + "latitude": "8.45091000", + "longitude": "98.52985000" + }, + { + "id": "105224", + "name": "Amphoe Bang Kaeo", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.41775000", + "longitude": "100.17164000" + }, + { + "id": "105391", + "name": "Amphoe Khao Chaison", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.46305000", + "longitude": "100.09055000" + }, + { + "id": "105428", + "name": "Amphoe Khuan Khanun", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.76438000", + "longitude": "100.04349000" + }, + { + "id": "105448", + "name": "Amphoe Kong Ra", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.41674000", + "longitude": "99.95719000" + }, + { + "id": "105568", + "name": "Amphoe Mueang Phatthalung", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.60250000", + "longitude": "100.07425000" + }, + { + "id": "105692", + "name": "Amphoe Pa Bon", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.21994000", + "longitude": "100.13078000" + }, + { + "id": "105696", + "name": "Amphoe Pa Phayom", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.83154000", + "longitude": "99.87448000" + }, + { + "id": "105705", + "name": "Amphoe Pak Phayun", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.29622000", + "longitude": "100.29542000" + }, + { + "id": "106209", + "name": "Amphoe Si Banphot", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.69259000", + "longitude": "99.87322000" + }, + { + "id": "106250", + "name": "Amphoe Srinagarindra", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.57574000", + "longitude": "99.91053000" + }, + { + "id": "106266", + "name": "Amphoe Tamot", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.28783000", + "longitude": "100.04358000" + }, + { + "id": "106626", + "name": "Phatthalung", + "state_id": 3488, + "state_code": "93", + "country_id": 219, + "country_code": "TH", + "latitude": "7.61786000", + "longitude": "100.07792000" + }, + { + "id": "105293", + "name": "Amphoe Chiang Kham", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.47061000", + "longitude": "100.33868000" + }, + { + "id": "105298", + "name": "Amphoe Chiang Muan", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "18.90385000", + "longitude": "100.31792000" + }, + { + "id": "105315", + "name": "Amphoe Chun", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.36803000", + "longitude": "100.14492000" + }, + { + "id": "105328", + "name": "Amphoe Dok Kham Tai", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.10813000", + "longitude": "100.05657000" + }, + { + "id": "105498", + "name": "Amphoe Mae Chai", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.37925000", + "longitude": "99.80141000" + }, + { + "id": "105569", + "name": "Amphoe Mueang Phayao", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.14857000", + "longitude": "99.87325000" + }, + { + "id": "105774", + "name": "Amphoe Phu Kam Yao", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.31170000", + "longitude": "99.96614000" + }, + { + "id": "105781", + "name": "Amphoe Phu Sang", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.62372000", + "longitude": "100.37246000" + }, + { + "id": "105791", + "name": "Amphoe Pong", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.18500000", + "longitude": "100.38780000" + }, + { + "id": "106471", + "name": "Chiang Kham", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.52331000", + "longitude": "100.30000000" + }, + { + "id": "106491", + "name": "Dok Kham Tai", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.16242000", + "longitude": "99.99342000" + }, + { + "id": "106561", + "name": "Mae Chai", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.34597000", + "longitude": "99.81400000" + }, + { + "id": "106629", + "name": "Phayao", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.19203000", + "longitude": "99.87883000" + }, + { + "id": "106652", + "name": "Pong", + "state_id": 3538, + "state_code": "56", + "country_id": 219, + "country_code": "TH", + "latitude": "19.14931000", + "longitude": "100.27522000" + }, + { + "id": "105262", + "name": "Amphoe Bueng Sam Phan", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "15.81650000", + "longitude": "101.00399000" + }, + { + "id": "105306", + "name": "Amphoe Chon Daen", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.10735000", + "longitude": "100.83572000" + }, + { + "id": "105395", + "name": "Amphoe Khao Kho", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.66313000", + "longitude": "100.99450000" + }, + { + "id": "105492", + "name": "Amphoe Lom Kao", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.97209000", + "longitude": "101.26185000" + }, + { + "id": "105493", + "name": "Amphoe Lom Sak", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.72837000", + "longitude": "101.31139000" + }, + { + "id": "105570", + "name": "Amphoe Mueang Phetchabun", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.38215000", + "longitude": "101.17652000" + }, + { + "id": "105636", + "name": "Amphoe Nam Nao", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.84489000", + "longitude": "101.60080000" + }, + { + "id": "105675", + "name": "Amphoe Nong Phai", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.01162000", + "longitude": "101.15042000" + }, + { + "id": "106229", + "name": "Amphoe Si Thep", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "15.44253000", + "longitude": "101.14767000" + }, + { + "id": "106343", + "name": "Amphoe Wang Pong", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.35049000", + "longitude": "100.80772000" + }, + { + "id": "106368", + "name": "Amphoe Wichian Buri", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "15.65000000", + "longitude": "101.10000000" + }, + { + "id": "106482", + "name": "Chon Daen", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.18953000", + "longitude": "100.85958000" + }, + { + "id": "106558", + "name": "Lom Sak", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.77983000", + "longitude": "101.24225000" + }, + { + "id": "106603", + "name": "Nong Phai", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "15.99025000", + "longitude": "101.06183000" + }, + { + "id": "106631", + "name": "Phetchabun", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "16.41904000", + "longitude": "101.16056000" + }, + { + "id": "106752", + "name": "Wichian Buri", + "state_id": 3515, + "state_code": "67", + "country_id": 219, + "country_code": "TH", + "latitude": "15.65778000", + "longitude": "101.10603000" + }, + { + "id": "105198", + "name": "Amphoe Ban Laem", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "13.16968000", + "longitude": "99.98771000" + }, + { + "id": "105199", + "name": "Amphoe Ban Lat", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "13.04533000", + "longitude": "99.83788000" + }, + { + "id": "105266", + "name": "Amphoe Cha-am", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "12.75374000", + "longitude": "99.89828000" + }, + { + "id": "105366", + "name": "Amphoe Kaeng Krachan", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "12.85919000", + "longitude": "99.46339000" + }, + { + "id": "105400", + "name": "Amphoe Khao Yoi", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "13.24240000", + "longitude": "99.80753000" + }, + { + "id": "105571", + "name": "Amphoe Mueang Phetchaburi", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "13.08173000", + "longitude": "99.96721000" + }, + { + "id": "105685", + "name": "Amphoe Nong Ya Plong", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "13.12590000", + "longitude": "99.46880000" + }, + { + "id": "106292", + "name": "Amphoe Tha Yang", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "12.81743000", + "longitude": "99.78738000" + }, + { + "id": "106459", + "name": "Cha-am", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "12.80000000", + "longitude": "99.96667000" + }, + { + "id": "106521", + "name": "Khao Yoi", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "13.24025000", + "longitude": "99.82428000" + }, + { + "id": "106632", + "name": "Phetchaburi", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "13.11189000", + "longitude": "99.94467000" + }, + { + "id": "106725", + "name": "Tha Yang", + "state_id": 3532, + "state_code": "76", + "country_id": 219, + "country_code": "TH", + "latitude": "12.95772000", + "longitude": "99.90555000" + }, + { + "id": "105232", + "name": "Amphoe Bang Mun Nak", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.02656000", + "longitude": "100.43194000" + }, + { + "id": "105261", + "name": "Amphoe Bueng Na Rang", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.18642000", + "longitude": "100.14293000" + }, + { + "id": "105336", + "name": "Amphoe Dong Charoen", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "15.99848000", + "longitude": "100.59572000" + }, + { + "id": "105572", + "name": "Amphoe Mueang Phichit", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.40986000", + "longitude": "100.34578000" + }, + { + "id": "105745", + "name": "Amphoe Pho Prathap Chang", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.31294000", + "longitude": "100.19897000" + }, + { + "id": "105749", + "name": "Amphoe Pho Thale", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.05885000", + "longitude": "100.24579000" + }, + { + "id": "105827", + "name": "Amphoe Sak Lek", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.50717000", + "longitude": "100.52350000" + }, + { + "id": "106269", + "name": "Amphoe Taphan Hin", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.21103000", + "longitude": "100.41739000" + }, + { + "id": "106299", + "name": "Amphoe Thap Khlo", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.19167000", + "longitude": "100.60082000" + }, + { + "id": "106329", + "name": "Amphoe Wachira Barami", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.51667000", + "longitude": "100.11667000" + }, + { + "id": "106344", + "name": "Amphoe Wang Sai Phun", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.37922000", + "longitude": "100.53668000" + }, + { + "id": "106435", + "name": "Bang Mun Nak", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.02781000", + "longitude": "100.37917000" + }, + { + "id": "106457", + "name": "Bueng Na Rang", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.17120000", + "longitude": "100.12531000" + }, + { + "id": "106634", + "name": "Phichit", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.44184000", + "longitude": "100.34879000" + }, + { + "id": "106717", + "name": "Taphan Hin", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.22095000", + "longitude": "100.41978000" + }, + { + "id": "106727", + "name": "Thap Khlo", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.16003000", + "longitude": "100.59656000" + }, + { + "id": "106746", + "name": "Wang Sai Phun", + "state_id": 3514, + "state_code": "66", + "country_id": 219, + "country_code": "TH", + "latitude": "16.38850000", + "longitude": "100.53801000" + }, + { + "id": "105229", + "name": "Amphoe Bang Krathum", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "16.59323000", + "longitude": "100.35042000" + }, + { + "id": "105241", + "name": "Amphoe Bang Rakam", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "16.71844000", + "longitude": "100.04217000" + }, + { + "id": "105288", + "name": "Amphoe Chat Trakan", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "17.39357000", + "longitude": "100.68460000" + }, + { + "id": "105573", + "name": "Amphoe Mueang Phitsanulok", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "16.84040000", + "longitude": "100.27298000" + }, + { + "id": "105633", + "name": "Amphoe Nakhon Thai", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "17.09426000", + "longitude": "100.86437000" + }, + { + "id": "105647", + "name": "Amphoe Noen Maprang", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "16.56400000", + "longitude": "100.70995000" + }, + { + "id": "105773", + "name": "Amphoe Phrom Phiram", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "17.06894000", + "longitude": "100.15350000" + }, + { + "id": "106348", + "name": "Amphoe Wang Thong", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "16.85000000", + "longitude": "100.58333000" + }, + { + "id": "106355", + "name": "Amphoe Wat Bot", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "17.16384000", + "longitude": "100.36298000" + }, + { + "id": "106430", + "name": "Bang Krathum", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "16.57831000", + "longitude": "100.30034000" + }, + { + "id": "106444", + "name": "Bang Rakam", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "16.75847000", + "longitude": "100.11742000" + }, + { + "id": "106468", + "name": "Chat Trakan", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "17.27606000", + "longitude": "100.60022000" + }, + { + "id": "106586", + "name": "Nakhon Thai", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "17.10056000", + "longitude": "100.83739000" + }, + { + "id": "106636", + "name": "Phitsanulok", + "state_id": 3506, + "state_code": "65", + "country_id": 219, + "country_code": "TH", + "latitude": "16.82481000", + "longitude": "100.25858000" + }, + { + "id": "105213", + "name": "Amphoe Ban Phraek", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.64381000", + "longitude": "100.54883000" + }, + { + "id": "105221", + "name": "Amphoe Bang Ban", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.38333000", + "longitude": "100.46667000" + }, + { + "id": "105234", + "name": "Amphoe Bang Pa-in", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.23482000", + "longitude": "100.59410000" + }, + { + "id": "105235", + "name": "Amphoe Bang Pahan", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.47174000", + "longitude": "100.54731000" + }, + { + "id": "105242", + "name": "Amphoe Bang Sai", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.21043000", + "longitude": "100.49422000" + }, + { + "id": "105487", + "name": "Amphoe Lat Bua Luang", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.16810000", + "longitude": "100.34892000" + }, + { + "id": "105521", + "name": "Amphoe Maha Rat", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.57064000", + "longitude": "100.54089000" + }, + { + "id": "105632", + "name": "Amphoe Nakhon Luang", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.46703000", + "longitude": "100.62572000" + }, + { + "id": "105717", + "name": "Amphoe Phachi", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.43795000", + "longitude": "100.72780000" + }, + { + "id": "105719", + "name": "Amphoe Phak Hai", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.45073000", + "longitude": "100.33949000" + }, + { + "id": "105760", + "name": "Amphoe Phra Nakhon Si Ayutthaya", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.35172000", + "longitude": "100.56719000" + }, + { + "id": "106207", + "name": "Amphoe Sena", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.29605000", + "longitude": "100.37486000" + }, + { + "id": "106282", + "name": "Amphoe Tha Ruea", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.53587000", + "longitude": "100.71268000" + }, + { + "id": "106327", + "name": "Amphoe Uthai", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.35321000", + "longitude": "100.69643000" + }, + { + "id": "106341", + "name": "Amphoe Wang Noi", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.24348000", + "longitude": "100.72500000" + }, + { + "id": "106384", + "name": "Ban Bang Kadi Pathum Thani", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "13.99904000", + "longitude": "100.54962000" + }, + { + "id": "106420", + "name": "Bang Ban", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.37395000", + "longitude": "100.48528000" + }, + { + "id": "106438", + "name": "Bang Pa-in", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.22783000", + "longitude": "100.57589000" + }, + { + "id": "106579", + "name": "Nakhon Luang", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.46281000", + "longitude": "100.60832000" + }, + { + "id": "106619", + "name": "Phak Hai", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.45736000", + "longitude": "100.36989000" + }, + { + "id": "106644", + "name": "Phra Nakhon Si Ayutthaya", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.35167000", + "longitude": "100.57739000" + }, + { + "id": "106724", + "name": "Tha Ruea", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.56739000", + "longitude": "100.72598000" + }, + { + "id": "106744", + "name": "Wang Noi", + "state_id": 3494, + "state_code": "14", + "country_id": 219, + "country_code": "TH", + "latitude": "14.22689000", + "longitude": "100.71550000" + }, + { + "id": "105321", + "name": "Amphoe Den Chai", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "17.91667000", + "longitude": "100.03333000" + }, + { + "id": "105494", + "name": "Amphoe Long", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "18.14262000", + "longitude": "99.90901000" + }, + { + "id": "105574", + "name": "Amphoe Mueang Phrae", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "18.12258000", + "longitude": "100.25620000" + }, + { + "id": "105673", + "name": "Amphoe Nong Muang Khai", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "18.28845000", + "longitude": "100.15231000" + }, + { + "id": "105814", + "name": "Amphoe Rong Kwang", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "18.32614000", + "longitude": "100.39418000" + }, + { + "id": "106244", + "name": "Amphoe Song", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "18.57006000", + "longitude": "100.22911000" + }, + { + "id": "106256", + "name": "Amphoe Sung Men", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "18.03542000", + "longitude": "100.12538000" + }, + { + "id": "106336", + "name": "Amphoe Wang Chin", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "17.86667000", + "longitude": "99.64990000" + }, + { + "id": "106487", + "name": "Den Chai", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "17.98372000", + "longitude": "100.05217000" + }, + { + "id": "106559", + "name": "Long", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "18.07422000", + "longitude": "99.83073000" + }, + { + "id": "106647", + "name": "Phrae", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "18.14589000", + "longitude": "100.14103000" + }, + { + "id": "106670", + "name": "Rong Kwang", + "state_id": 3528, + "state_code": "54", + "country_id": 219, + "country_code": "TH", + "latitude": "18.33903000", + "longitude": "100.31736000" + }, + { + "id": "105380", + "name": "Amphoe Kathu", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.91456000", + "longitude": "98.33330000" + }, + { + "id": "105575", + "name": "Amphoe Mueang Phuket", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.85609000", + "longitude": "98.37183000" + }, + { + "id": "106295", + "name": "Amphoe Thalang", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "8.03407000", + "longitude": "98.33399000" + }, + { + "id": "106386", + "name": "Ban Chalong", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.84468000", + "longitude": "98.33897000" + }, + { + "id": "106391", + "name": "Ban Karon", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.84769000", + "longitude": "98.29850000" + }, + { + "id": "106392", + "name": "Ban Kata", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.82125000", + "longitude": "98.30703000" + }, + { + "id": "106395", + "name": "Ban Ko Kaeo", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.93599000", + "longitude": "98.39664000" + }, + { + "id": "106399", + "name": "Ban Mai Khao", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "8.12713000", + "longitude": "98.30738000" + }, + { + "id": "106411", + "name": "Ban Ratsada", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.90963000", + "longitude": "98.40248000" + }, + { + "id": "106417", + "name": "Ban Talat Nua", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.88489000", + "longitude": "98.38557000" + }, + { + "id": "106418", + "name": "Ban Talat Yai", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.88481000", + "longitude": "98.40008000" + }, + { + "id": "106516", + "name": "Kathu", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.91779000", + "longitude": "98.33322000" + }, + { + "id": "106578", + "name": "Nai Harn", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.77859000", + "longitude": "98.30661000" + }, + { + "id": "106615", + "name": "Patong", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.89607000", + "longitude": "98.29661000" + }, + { + "id": "106650", + "name": "Phuket", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.89059000", + "longitude": "98.39810000" + }, + { + "id": "106666", + "name": "Rawai", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.77965000", + "longitude": "98.32532000" + }, + { + "id": "106753", + "name": "Wichit", + "state_id": 3536, + "state_code": "83", + "country_id": 219, + "country_code": "TH", + "latitude": "7.88940000", + "longitude": "98.38523000" + }, + { + "id": "105217", + "name": "Amphoe Ban Sang", + "state_id": 3542, + "state_code": "25", + "country_id": 219, + "country_code": "TH", + "latitude": "13.95005000", + "longitude": "101.25063000" + }, + { + "id": "105362", + "name": "Amphoe Kabin Buri", + "state_id": 3542, + "state_code": "25", + "country_id": 219, + "country_code": "TH", + "latitude": "13.90000000", + "longitude": "101.80000000" + }, + { + "id": "105576", + "name": "Amphoe Mueang Prachin Buri", + "state_id": 3542, + "state_code": "25", + "country_id": 219, + "country_code": "TH", + "latitude": "14.09335000", + "longitude": "101.39776000" + }, + { + "id": "105610", + "name": "Amphoe Na Di", + "state_id": 3542, + "state_code": "25", + "country_id": 219, + "country_code": "TH", + "latitude": "14.19253000", + "longitude": "101.84557000" + }, + { + "id": "105794", + "name": "Amphoe Prachantakham", + "state_id": 3542, + "state_code": "25", + "country_id": 219, + "country_code": "TH", + "latitude": "14.22813000", + "longitude": "101.57440000" + }, + { + "id": "106214", + "name": "Amphoe Si Maha Phot", + "state_id": 3542, + "state_code": "25", + "country_id": 219, + "country_code": "TH", + "latitude": "13.89041000", + "longitude": "101.54181000" + }, + { + "id": "106215", + "name": "Amphoe Si Mahosot", + "state_id": 3542, + "state_code": "25", + "country_id": 219, + "country_code": "TH", + "latitude": "13.87669000", + "longitude": "101.42499000" + }, + { + "id": "106504", + "name": "Kabin Buri", + "state_id": 3542, + "state_code": "25", + "country_id": 219, + "country_code": "TH", + "latitude": "13.95114000", + "longitude": "101.71769000" + }, + { + "id": "106655", + "name": "Prachin Buri", + "state_id": 3542, + "state_code": "25", + "country_id": 219, + "country_code": "TH", + "latitude": "14.04992000", + "longitude": "101.36864000" + }, + { + "id": "105244", + "name": "Amphoe Bang Saphan", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "11.29402000", + "longitude": "99.44406000" + }, + { + "id": "105245", + "name": "Amphoe Bang Saphan Noi", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "11.07057000", + "longitude": "99.34105000" + }, + { + "id": "105349", + "name": "Amphoe Hua Hin", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "12.53522000", + "longitude": "99.70366000" + }, + { + "id": "105460", + "name": "Amphoe Kui Buri", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "12.11311000", + "longitude": "99.75462000" + }, + { + "id": "105577", + "name": "Amphoe Mueang Prachuap Khiri Khan", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "11.87144000", + "longitude": "99.73563000" + }, + { + "id": "105796", + "name": "Amphoe Pran Buri", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "12.39040000", + "longitude": "99.69690000" + }, + { + "id": "106177", + "name": "Amphoe Sam Roi Yot", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "12.25586000", + "longitude": "99.74010000" + }, + { + "id": "106301", + "name": "Amphoe Thap Sakae", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "11.54787000", + "longitude": "99.57159000" + }, + { + "id": "106445", + "name": "Bang Saphan", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "11.21259000", + "longitude": "99.51167000" + }, + { + "id": "106498", + "name": "Hua Hin", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "12.57065000", + "longitude": "99.95876000" + }, + { + "id": "106544", + "name": "Kui Buri", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "12.08283000", + "longitude": "99.85431000" + }, + { + "id": "106656", + "name": "Prachuap Khiri Khan", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "11.82098000", + "longitude": "99.78410000" + }, + { + "id": "106658", + "name": "Pran Buri", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "12.38487000", + "longitude": "99.90157000" + }, + { + "id": "106678", + "name": "Sam Roi Yot", + "state_id": 3508, + "state_code": "77", + "country_id": 219, + "country_code": "TH", + "latitude": "12.27081000", + "longitude": "99.87203000" + }, + { + "id": "105377", + "name": "Amphoe Kapoe", + "state_id": 3479, + "state_code": "85", + "country_id": 219, + "country_code": "TH", + "latitude": "9.53028000", + "longitude": "98.62369000" + }, + { + "id": "105451", + "name": "Amphoe Kra Buri", + "state_id": 3479, + "state_code": "85", + "country_id": 219, + "country_code": "TH", + "latitude": "10.45895000", + "longitude": "98.84373000" + }, + { + "id": "105469", + "name": "Amphoe La-un", + "state_id": 3479, + "state_code": "85", + "country_id": 219, + "country_code": "TH", + "latitude": "10.09691000", + "longitude": "98.78498000" + }, + { + "id": "105578", + "name": "Amphoe Mueang Ranong", + "state_id": 3479, + "state_code": "85", + "country_id": 219, + "country_code": "TH", + "latitude": "9.86238000", + "longitude": "98.62229000" + }, + { + "id": "106254", + "name": "Amphoe Suk Samran", + "state_id": 3479, + "state_code": "85", + "country_id": 219, + "country_code": "TH", + "latitude": "9.41570000", + "longitude": "98.49117000" + }, + { + "id": "106661", + "name": "Ranong", + "state_id": 3479, + "state_code": "85", + "country_id": 219, + "country_code": "TH", + "latitude": "9.96583000", + "longitude": "98.63476000" + }, + { + "id": "105194", + "name": "Amphoe Ban Kha", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.32374000", + "longitude": "99.37323000" + }, + { + "id": "105215", + "name": "Amphoe Ban Pong", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.81660000", + "longitude": "99.82147000" + }, + { + "id": "105237", + "name": "Amphoe Bang Phae", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.68333000", + "longitude": "99.98333000" + }, + { + "id": "105303", + "name": "Amphoe Chom Bueng", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.62520000", + "longitude": "99.51870000" + }, + { + "id": "105316", + "name": "Amphoe Damnoen Saduak", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.56537000", + "longitude": "99.97042000" + }, + { + "id": "105579", + "name": "Amphoe Mueang Ratchaburi", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.54559000", + "longitude": "99.77678000" + }, + { + "id": "105707", + "name": "Amphoe Pak Tho", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.38761000", + "longitude": "99.67700000" + }, + { + "id": "105759", + "name": "Amphoe Photharam", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.70707000", + "longitude": "99.75622000" + }, + { + "id": "106253", + "name": "Amphoe Suan Phueng", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.56361000", + "longitude": "99.31133000" + }, + { + "id": "106356", + "name": "Amphoe Wat Phleng", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.44705000", + "longitude": "99.86959000" + }, + { + "id": "106410", + "name": "Ban Pong", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.81629000", + "longitude": "99.87739000" + }, + { + "id": "106440", + "name": "Bang Phae", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.69157000", + "longitude": "99.92982000" + }, + { + "id": "106478", + "name": "Chom Bueng", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.62000000", + "longitude": "99.59169000" + }, + { + "id": "106485", + "name": "Damnoen Saduak", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.51825000", + "longitude": "99.95469000" + }, + { + "id": "106641", + "name": "Photharam", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.69234000", + "longitude": "99.84969000" + }, + { + "id": "106664", + "name": "Ratchaburi", + "state_id": 3499, + "state_code": "70", + "country_id": 219, + "country_code": "TH", + "latitude": "13.53671000", + "longitude": "99.81712000" + }, + { + "id": "105187", + "name": "Amphoe Ban Chang", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.73230000", + "longitude": "101.04878000" + }, + { + "id": "105195", + "name": "Amphoe Ban Khai", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.83827000", + "longitude": "101.34210000" + }, + { + "id": "105393", + "name": "Amphoe Khao Chamao", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.99042000", + "longitude": "101.67847000" + }, + { + "id": "105437", + "name": "Amphoe Klaeng", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.77179000", + "longitude": "101.65666000" + }, + { + "id": "105580", + "name": "Amphoe Mueang Rayong", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.71864000", + "longitude": "101.34491000" + }, + { + "id": "105645", + "name": "Amphoe Nikhom Phattana", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.84489000", + "longitude": "101.15341000" + }, + { + "id": "105790", + "name": "Amphoe Pluak Daeng", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.98333000", + "longitude": "101.25000000" + }, + { + "id": "106334", + "name": "Amphoe Wang Chan", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.96245000", + "longitude": "101.51533000" + }, + { + "id": "106387", + "name": "Ban Chang", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.72543000", + "longitude": "101.05531000" + }, + { + "id": "106408", + "name": "Ban Phe", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.62824000", + "longitude": "101.43757000" + }, + { + "id": "106532", + "name": "Klaeng", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.77972000", + "longitude": "101.64831000" + }, + { + "id": "106667", + "name": "Rayong", + "state_id": 3518, + "state_code": "21", + "country_id": 219, + "country_code": "TH", + "latitude": "12.68095000", + "longitude": "101.25798000" + }, + { + "id": "105184", + "name": "Amphoe At Samat", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.84014000", + "longitude": "103.86619000" + }, + { + "id": "105285", + "name": "Amphoe Changhan", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.16213000", + "longitude": "103.61605000" + }, + { + "id": "105289", + "name": "Amphoe Chaturaphak Phiman", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.82670000", + "longitude": "103.54934000" + }, + { + "id": "105296", + "name": "Amphoe Chiang Khwan", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.14887000", + "longitude": "103.74924000" + }, + { + "id": "105379", + "name": "Amphoe Kaset Wisai", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.60285000", + "longitude": "103.56652000" + }, + { + "id": "105528", + "name": "Amphoe Moeiwadi", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.37155000", + "longitude": "104.11137000" + }, + { + "id": "105581", + "name": "Amphoe Mueang Roi Et", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.01497000", + "longitude": "103.61584000" + }, + { + "id": "105592", + "name": "Amphoe Mueang Suang", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.78619000", + "longitude": "103.75071000" + }, + { + "id": "105664", + "name": "Amphoe Nong Hi", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.57983000", + "longitude": "104.01134000" + }, + { + "id": "105676", + "name": "Amphoe Nong Phok", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.30357000", + "longitude": "104.22144000" + }, + { + "id": "105714", + "name": "Amphoe Pathum Rat", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.62371000", + "longitude": "103.38733000" + }, + { + "id": "105728", + "name": "Amphoe Phanom Phrai", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.69300000", + "longitude": "104.07550000" + }, + { + "id": "105744", + "name": "Amphoe Pho Chai", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.30969000", + "longitude": "103.79004000" + }, + { + "id": "105754", + "name": "Amphoe Phon Sai", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.49244000", + "longitude": "103.94139000" + }, + { + "id": "105756", + "name": "Amphoe Phon Thong", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.29007000", + "longitude": "103.96388000" + }, + { + "id": "106206", + "name": "Amphoe Selaphum", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.04700000", + "longitude": "104.00031000" + }, + { + "id": "106226", + "name": "Amphoe Si Somdet", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.01947000", + "longitude": "103.51427000" + }, + { + "id": "106259", + "name": "Amphoe Suwannaphum", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.60529000", + "longitude": "103.80630000" + }, + { + "id": "106304", + "name": "Amphoe Thawatchaburi", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.02783000", + "longitude": "103.77833000" + }, + { + "id": "106314", + "name": "Amphoe Thung Khao Luang", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.98966000", + "longitude": "103.87086000" + }, + { + "id": "106413", + "name": "Ban Selaphum", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.01667000", + "longitude": "103.95000000" + }, + { + "id": "106515", + "name": "Kaset Wisai", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.65558000", + "longitude": "103.58361000" + }, + { + "id": "106570", + "name": "Moeiwadi", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.38944000", + "longitude": "104.15720000" + }, + { + "id": "106637", + "name": "Pho Chai", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.32827000", + "longitude": "103.77033000" + }, + { + "id": "106668", + "name": "Roi Et", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.05670000", + "longitude": "103.65309000" + }, + { + "id": "106712", + "name": "Suwannaphum", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "15.60348000", + "longitude": "103.80207000" + }, + { + "id": "106742", + "name": "Waeng", + "state_id": 3510, + "state_code": "45", + "country_id": 219, + "country_code": "TH", + "latitude": "16.30006000", + "longitude": "103.97786000" + }, + { + "id": "105183", + "name": "Amphoe Aranyaprathet", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.69086000", + "longitude": "102.47693000" + }, + { + "id": "105392", + "name": "Amphoe Khao Chakan", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.62293000", + "longitude": "102.02665000" + }, + { + "id": "105405", + "name": "Amphoe Khlong Hat", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.47396000", + "longitude": "102.27604000" + }, + { + "id": "105420", + "name": "Amphoe Khok Sung", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.87388000", + "longitude": "102.66075000" + }, + { + "id": "105582", + "name": "Amphoe Mueang Sa Kaeo", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.92969000", + "longitude": "102.10626000" + }, + { + "id": "106260", + "name": "Amphoe Ta Phraya", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "14.06272000", + "longitude": "102.72601000" + }, + { + "id": "106340", + "name": "Amphoe Wang Nam Yen", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.51900000", + "longitude": "102.08718000" + }, + { + "id": "106347", + "name": "Amphoe Wang Sombun", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.36112000", + "longitude": "102.12490000" + }, + { + "id": "106358", + "name": "Amphoe Watthana Nakhon", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.88582000", + "longitude": "102.35652000" + }, + { + "id": "106382", + "name": "Aranyaprathet", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.69276000", + "longitude": "102.50128000" + }, + { + "id": "106671", + "name": "Sa Kaeo", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.81411000", + "longitude": "102.07222000" + }, + { + "id": "106743", + "name": "Wang Nam Yen", + "state_id": 3529, + "state_code": "27", + "country_id": 219, + "country_code": "TH", + "latitude": "13.50325000", + "longitude": "102.18115000" + }, + { + "id": "105180", + "name": "Amphoe Akat Amnuai", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.63589000", + "longitude": "103.97590000" + }, + { + "id": "105205", + "name": "Amphoe Ban Muang", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.89569000", + "longitude": "103.52793000" + }, + { + "id": "105287", + "name": "Amphoe Charoen Sin", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.63327000", + "longitude": "103.52218000" + }, + { + "id": "105386", + "name": "Amphoe Kham Ta Kla", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.82547000", + "longitude": "103.78598000" + }, + { + "id": "105419", + "name": "Amphoe Khok Si Suphan", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.02297000", + "longitude": "104.30346000" + }, + { + "id": "105462", + "name": "Amphoe Kusuman", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.35402000", + "longitude": "104.26677000" + }, + { + "id": "105463", + "name": "Amphoe Kut Bak", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.08205000", + "longitude": "103.81469000" + }, + { + "id": "105583", + "name": "Amphoe Mueang Sakon Nakhon", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.16163000", + "longitude": "104.10519000" + }, + { + "id": "105644", + "name": "Amphoe Nikhom Nam Un", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.17349000", + "longitude": "103.73511000" + }, + { + "id": "105724", + "name": "Amphoe Phang Khon", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.38267000", + "longitude": "103.75146000" + }, + { + "id": "105725", + "name": "Amphoe Phanna Nikhom", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.31369000", + "longitude": "103.89791000" + }, + { + "id": "105753", + "name": "Amphoe Phon Na Kaeo", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.21248000", + "longitude": "104.30700000" + }, + { + "id": "105778", + "name": "Amphoe Phu Phan", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "16.92862000", + "longitude": "103.92400000" + }, + { + "id": "106201", + "name": "Amphoe Sawang Daen Din", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.45590000", + "longitude": "103.44950000" + }, + { + "id": "106245", + "name": "Amphoe Song Dao", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.30883000", + "longitude": "103.44987000" + }, + { + "id": "106268", + "name": "Amphoe Tao Ngoi", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "16.94022000", + "longitude": "104.15863000" + }, + { + "id": "106351", + "name": "Amphoe Wanon Niwat", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.61516000", + "longitude": "103.76536000" + }, + { + "id": "106354", + "name": "Amphoe Waritchaphum", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.25692000", + "longitude": "103.62283000" + }, + { + "id": "106675", + "name": "Sakon Nakhon", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.16116000", + "longitude": "104.14725000" + }, + { + "id": "106693", + "name": "Sawang Daen Din", + "state_id": 3501, + "state_code": "47", + "country_id": 219, + "country_code": "TH", + "latitude": "17.47531000", + "longitude": "103.45753000" + }, + { + "id": "105222", + "name": "Amphoe Bang Bo", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.58960000", + "longitude": "100.86711000" + }, + { + "id": "105238", + "name": "Amphoe Bang Phli", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.61972000", + "longitude": "100.72582000" + }, + { + "id": "105243", + "name": "Amphoe Bang Sao Thong", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.63286000", + "longitude": "100.81038000" + }, + { + "id": "105584", + "name": "Amphoe Mueang Samut Prakan", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.56855000", + "longitude": "100.65148000" + }, + { + "id": "105763", + "name": "Amphoe Phra Pradaeng", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.65246000", + "longitude": "100.55271000" + }, + { + "id": "105764", + "name": "Amphoe Phra Samut Chedi", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.55622000", + "longitude": "100.51485000" + }, + { + "id": "106394", + "name": "Ban Khlong Bang Sao Thong", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.64172000", + "longitude": "100.83272000" + }, + { + "id": "106421", + "name": "Bang Bo District", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.58333000", + "longitude": "100.81667000" + }, + { + "id": "106646", + "name": "Phra Pradaeng", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.65855000", + "longitude": "100.53362000" + }, + { + "id": "106680", + "name": "Samut Prakan", + "state_id": 3481, + "state_code": "11", + "country_id": 219, + "country_code": "TH", + "latitude": "13.59934000", + "longitude": "100.59675000" + }, + { + "id": "105210", + "name": "Amphoe Ban Phaeo", + "state_id": 3504, + "state_code": "74", + "country_id": 219, + "country_code": "TH", + "latitude": "13.58747000", + "longitude": "100.11789000" + }, + { + "id": "105455", + "name": "Amphoe Krathum Baen", + "state_id": 3504, + "state_code": "74", + "country_id": 219, + "country_code": "TH", + "latitude": "13.65570000", + "longitude": "100.27282000" + }, + { + "id": "105585", + "name": "Amphoe Mueang Samut Sakhon", + "state_id": 3504, + "state_code": "74", + "country_id": 219, + "country_code": "TH", + "latitude": "13.53163000", + "longitude": "100.25326000" + }, + { + "id": "106405", + "name": "Ban Phaeo", + "state_id": 3504, + "state_code": "74", + "country_id": 219, + "country_code": "TH", + "latitude": "13.59072000", + "longitude": "100.10748000" + }, + { + "id": "106542", + "name": "Krathum Baen", + "state_id": 3504, + "state_code": "74", + "country_id": 219, + "country_code": "TH", + "latitude": "13.65330000", + "longitude": "100.25972000" + }, + { + "id": "106681", + "name": "Samut Sakhon", + "state_id": 3504, + "state_code": "74", + "country_id": 219, + "country_code": "TH", + "latitude": "13.54753000", + "longitude": "100.27362000" + }, + { + "id": "105181", + "name": "Amphoe Amphawa", + "state_id": 3502, + "state_code": "75", + "country_id": 219, + "country_code": "TH", + "latitude": "13.36721000", + "longitude": "99.91232000" + }, + { + "id": "105227", + "name": "Amphoe Bang Khonthi", + "state_id": 3502, + "state_code": "75", + "country_id": 219, + "country_code": "TH", + "latitude": "13.47448000", + "longitude": "99.94838000" + }, + { + "id": "105586", + "name": "Amphoe Mueang Samut Songkhram", + "state_id": 3502, + "state_code": "75", + "country_id": 219, + "country_code": "TH", + "latitude": "13.39587000", + "longitude": "99.99929000" + }, + { + "id": "106682", + "name": "Samut Songkhram", + "state_id": 3502, + "state_code": "75", + "country_id": 219, + "country_code": "TH", + "latitude": "13.41456000", + "longitude": "100.00264000" + }, + { + "id": "105204", + "name": "Amphoe Ban Mo", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.60804000", + "longitude": "100.72404000" + }, + { + "id": "105277", + "name": "Amphoe Chaloem Phra Kiat", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.65671000", + "longitude": "100.90838000" + }, + { + "id": "105332", + "name": "Amphoe Don Phut", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.60758000", + "longitude": "100.61578000" + }, + { + "id": "105365", + "name": "Amphoe Kaeng Khoi", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.58166000", + "longitude": "101.05297000" + }, + { + "id": "105529", + "name": "Amphoe Muak Lek", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.77706000", + "longitude": "101.27151000" + }, + { + "id": "105587", + "name": "Amphoe Mueang Sara Buri", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.49721000", + "longitude": "100.93829000" + }, + { + "id": "105662", + "name": "Amphoe Nong Don", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.68880000", + "longitude": "100.68527000" + }, + { + "id": "105667", + "name": "Amphoe Nong Khae", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.38125000", + "longitude": "100.86451000" + }, + { + "id": "105679", + "name": "Amphoe Nong Saeng", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.48283000", + "longitude": "100.80463000" + }, + { + "id": "105762", + "name": "Amphoe Phra Phutthabat", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.71912000", + "longitude": "100.80622000" + }, + { + "id": "106193", + "name": "Amphoe Sao Hai", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.57549000", + "longitude": "100.84390000" + }, + { + "id": "106338", + "name": "Amphoe Wang Muang", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.82287000", + "longitude": "101.13346000" + }, + { + "id": "106369", + "name": "Amphoe Wihan Daeng", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.33435000", + "longitude": "100.96458000" + }, + { + "id": "106400", + "name": "Ban Mo", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.61544000", + "longitude": "100.72731000" + }, + { + "id": "106505", + "name": "Kaeng Khoi", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.58617000", + "longitude": "100.99758000" + }, + { + "id": "106598", + "name": "Nong Khae", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.34062000", + "longitude": "100.86733000" + }, + { + "id": "106645", + "name": "Phra Phutthabat", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.72526000", + "longitude": "100.79536000" + }, + { + "id": "106688", + "name": "Saraburi", + "state_id": 3487, + "state_code": "19", + "country_id": 219, + "country_code": "TH", + "latitude": "14.53333000", + "longitude": "100.91667000" + }, + { + "id": "105426", + "name": "Amphoe Khuan Don", + "state_id": 3537, + "state_code": "91", + "country_id": 219, + "country_code": "TH", + "latitude": "6.76978000", + "longitude": "100.12216000" + }, + { + "id": "105427", + "name": "Amphoe Khuan Kalong", + "state_id": 3537, + "state_code": "91", + "country_id": 219, + "country_code": "TH", + "latitude": "6.90593000", + "longitude": "100.04178000" + }, + { + "id": "105468", + "name": "Amphoe La-Ngu", + "state_id": 3537, + "state_code": "91", + "country_id": 219, + "country_code": "TH", + "latitude": "6.90392000", + "longitude": "99.79836000" + }, + { + "id": "105524", + "name": "Amphoe Manang", + "state_id": 3537, + "state_code": "91", + "country_id": 219, + "country_code": "TH", + "latitude": "7.01822000", + "longitude": "99.95399000" + }, + { + "id": "105588", + "name": "Amphoe Mueang Satun", + "state_id": 3537, + "state_code": "91", + "country_id": 219, + "country_code": "TH", + "latitude": "6.62314000", + "longitude": "100.06681000" + }, + { + "id": "106280", + "name": "Amphoe Tha Phae", + "state_id": 3537, + "state_code": "91", + "country_id": 219, + "country_code": "TH", + "latitude": "6.79542000", + "longitude": "99.91985000" + }, + { + "id": "106319", + "name": "Amphoe Thung Wa", + "state_id": 3537, + "state_code": "91", + "country_id": 219, + "country_code": "TH", + "latitude": "7.04915000", + "longitude": "99.76587000" + }, + { + "id": "106692", + "name": "Satun", + "state_id": 3537, + "state_code": "91", + "country_id": 219, + "country_code": "TH", + "latitude": "6.62314000", + "longitude": "100.06676000" + }, + { + "id": "105249", + "name": "Amphoe Benchalak", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.78319000", + "longitude": "104.71879000" + }, + { + "id": "105259", + "name": "Amphoe Bueng Bun", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.30288000", + "longitude": "104.06166000" + }, + { + "id": "105358", + "name": "Amphoe Huai Thap Than", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.01808000", + "longitude": "104.03875000" + }, + { + "id": "105371", + "name": "Amphoe Kantharalak", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.56800000", + "longitude": "104.67080000" + }, + { + "id": "105372", + "name": "Amphoe Kanthararom", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.12447000", + "longitude": "104.57318000" + }, + { + "id": "105431", + "name": "Amphoe Khukhan", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.73783000", + "longitude": "104.18590000" + }, + { + "id": "105432", + "name": "Amphoe Khun Han", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.53455000", + "longitude": "104.40739000" + }, + { + "id": "105537", + "name": "Amphoe Mueang Chan", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.18249000", + "longitude": "104.02471000" + }, + { + "id": "105590", + "name": "Amphoe Mueang Sisaket", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.08168000", + "longitude": "104.35126000" + }, + { + "id": "105635", + "name": "Amphoe Nam Kliang", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.91022000", + "longitude": "104.52545000" + }, + { + "id": "105650", + "name": "Amphoe Non Khun", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.90188000", + "longitude": "104.69564000" + }, + { + "id": "105735", + "name": "Amphoe Phayu", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.90639000", + "longitude": "104.38293000" + }, + { + "id": "105747", + "name": "Amphoe Pho Si Suwan", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.23370000", + "longitude": "104.06739000" + }, + { + "id": "105767", + "name": "Amphoe Phrai Bueng", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.77989000", + "longitude": "104.36599000" + }, + { + "id": "105782", + "name": "Amphoe Phu Sing", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.48873000", + "longitude": "104.15603000" + }, + { + "id": "105797", + "name": "Amphoe Prang Ku", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.85443000", + "longitude": "104.03740000" + }, + { + "id": "105805", + "name": "Amphoe Rasi Salai", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.34637000", + "longitude": "104.18617000" + }, + { + "id": "106221", + "name": "Amphoe Si Rattana", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.81062000", + "longitude": "104.47634000" + }, + { + "id": "106236", + "name": "Amphoe Sila Lat", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.48070000", + "longitude": "104.09478000" + }, + { + "id": "106328", + "name": "Amphoe Uthumphon Phisai", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.12305000", + "longitude": "104.16002000" + }, + { + "id": "106337", + "name": "Amphoe Wang Hin", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.96133000", + "longitude": "104.21928000" + }, + { + "id": "106374", + "name": "Amphoe Yang Chum Noi", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.23688000", + "longitude": "104.39083000" + }, + { + "id": "106513", + "name": "Kantharalak", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.64056000", + "longitude": "104.64992000" + }, + { + "id": "106648", + "name": "Phrai Bueng", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "14.74833000", + "longitude": "104.36261000" + }, + { + "id": "106700", + "name": "Si Sa Ket", + "state_id": 3547, + "state_code": "33", + "country_id": 219, + "country_code": "TH", + "latitude": "15.11481000", + "longitude": "104.32938000" + }, + { + "id": "105240", + "name": "Amphoe Bang Rachan", + "state_id": 3490, + "state_code": "17", + "country_id": 219, + "country_code": "TH", + "latitude": "14.89959000", + "longitude": "100.27795000" + }, + { + "id": "105360", + "name": "Amphoe In Buri", + "state_id": 3490, + "state_code": "17", + "country_id": 219, + "country_code": "TH", + "latitude": "15.02057000", + "longitude": "100.34865000" + }, + { + "id": "105382", + "name": "Amphoe Khai Bang Rachan", + "state_id": 3490, + "state_code": "17", + "country_id": 219, + "country_code": "TH", + "latitude": "14.81438000", + "longitude": "100.31389000" + }, + { + "id": "105589", + "name": "Amphoe Mueang Sing Buri", + "state_id": 3490, + "state_code": "17", + "country_id": 219, + "country_code": "TH", + "latitude": "14.90239000", + "longitude": "100.39731000" + }, + { + "id": "105771", + "name": "Amphoe Phrom Buri", + "state_id": 3490, + "state_code": "17", + "country_id": 219, + "country_code": "TH", + "latitude": "14.78333000", + "longitude": "100.45000000" + }, + { + "id": "106273", + "name": "Amphoe Tha Chang", + "state_id": 3490, + "state_code": "17", + "country_id": 219, + "country_code": "TH", + "latitude": "14.77941000", + "longitude": "100.39349000" + }, + { + "id": "106442", + "name": "Bang Racham", + "state_id": 3490, + "state_code": "17", + "country_id": 219, + "country_code": "TH", + "latitude": "14.89200000", + "longitude": "100.31728000" + }, + { + "id": "106503", + "name": "In Buri", + "state_id": 3490, + "state_code": "17", + "country_id": 219, + "country_code": "TH", + "latitude": "15.00787000", + "longitude": "100.32691000" + }, + { + "id": "106702", + "name": "Sing Buri", + "state_id": 3490, + "state_code": "17", + "country_id": 219, + "country_code": "TH", + "latitude": "14.88786000", + "longitude": "100.40464000" + }, + { + "id": "105228", + "name": "Amphoe Bang Klam", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.06404000", + "longitude": "100.40664000" + }, + { + "id": "105282", + "name": "Amphoe Chana", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.89584000", + "longitude": "100.70126000" + }, + { + "id": "105347", + "name": "Amphoe Hat Yai", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.98092000", + "longitude": "100.46539000" + }, + { + "id": "105406", + "name": "Amphoe Khlong Hoi Khong", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.86623000", + "longitude": "100.35353000" + }, + { + "id": "105429", + "name": "Amphoe Khuan Niang", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.18231000", + "longitude": "100.37403000" + }, + { + "id": "105453", + "name": "Amphoe Krasae Sin", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.61254000", + "longitude": "100.32827000" + }, + { + "id": "105591", + "name": "Amphoe Mueang Songkhla", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.11075000", + "longitude": "100.60814000" + }, + { + "id": "105617", + "name": "Amphoe Na Mom", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.95990000", + "longitude": "100.57161000" + }, + { + "id": "105623", + "name": "Amphoe Na Thawi", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.63849000", + "longitude": "100.68173000" + }, + { + "id": "105804", + "name": "Amphoe Ranot", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.81390000", + "longitude": "100.28323000" + }, + { + "id": "105810", + "name": "Amphoe Rattaphum", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.07488000", + "longitude": "100.19515000" + }, + { + "id": "105818", + "name": "Amphoe Saba Yoi", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.52971000", + "longitude": "100.91232000" + }, + { + "id": "105819", + "name": "Amphoe Sadao", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.67135000", + "longitude": "100.42409000" + }, + { + "id": "106196", + "name": "Amphoe Sathing Phra", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.47963000", + "longitude": "100.42227000" + }, + { + "id": "106237", + "name": "Amphoe Singhanakhon", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.28453000", + "longitude": "100.48809000" + }, + { + "id": "106305", + "name": "Amphoe Thepha", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.79726000", + "longitude": "100.91025000" + }, + { + "id": "106398", + "name": "Ban Mai", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.20411000", + "longitude": "100.54508000" + }, + { + "id": "106497", + "name": "Hat Yai", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.00836000", + "longitude": "100.47668000" + }, + { + "id": "106576", + "name": "Na Mom", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.95856000", + "longitude": "100.55683000" + }, + { + "id": "106662", + "name": "Ranot", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.77768000", + "longitude": "100.32134000" + }, + { + "id": "106672", + "name": "Sadao", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "6.63883000", + "longitude": "100.42342000" + }, + { + "id": "106704", + "name": "Songkhla", + "state_id": 3539, + "state_code": "90", + "country_id": 219, + "country_code": "TH", + "latitude": "7.19882000", + "longitude": "100.59510000" + }, + { + "id": "105189", + "name": "Amphoe Ban Dan Lan Hoi", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.05278000", + "longitude": "99.49148000" + }, + { + "id": "105403", + "name": "Amphoe Khiri Mat", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "16.82923000", + "longitude": "99.73976000" + }, + { + "id": "105447", + "name": "Amphoe Kong Krailat", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "16.93115000", + "longitude": "99.97414000" + }, + { + "id": "105593", + "name": "Amphoe Mueang Sukhothai", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.02318000", + "longitude": "99.77864000" + }, + { + "id": "106203", + "name": "Amphoe Sawankhalok", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.29899000", + "longitude": "99.85396000" + }, + { + "id": "106217", + "name": "Amphoe Si Nakhon", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.39275000", + "longitude": "99.97666000" + }, + { + "id": "106223", + "name": "Amphoe Si Samrong", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.16397000", + "longitude": "99.74672000" + }, + { + "id": "106224", + "name": "Amphoe Si Satchanalai", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.59927000", + "longitude": "99.70591000" + }, + { + "id": "106315", + "name": "Amphoe Thung Saliam", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.37082000", + "longitude": "99.55265000" + }, + { + "id": "106388", + "name": "Ban Dan Lan Hoi", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.00683000", + "longitude": "99.57497000" + }, + { + "id": "106401", + "name": "Ban Na", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.01717000", + "longitude": "99.73283000" + }, + { + "id": "106522", + "name": "Khiri Mat", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "16.83333000", + "longitude": "99.80000000" + }, + { + "id": "106695", + "name": "Sawankhalok", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.31597000", + "longitude": "99.83186000" + }, + { + "id": "106701", + "name": "Si Satchanalai", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.51692000", + "longitude": "99.75978000" + }, + { + "id": "106707", + "name": "Sukhothai", + "state_id": 3545, + "state_code": "64", + "country_id": 219, + "country_code": "TH", + "latitude": "17.00778000", + "longitude": "99.82300000" + }, + { + "id": "105239", + "name": "Amphoe Bang Pla Ma", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.34985000", + "longitude": "100.14479000" + }, + { + "id": "105317", + "name": "Amphoe Dan Chang", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.88388000", + "longitude": "99.51642000" + }, + { + "id": "105323", + "name": "Amphoe Doembang Nangbuat", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.87394000", + "longitude": "100.04669000" + }, + { + "id": "105330", + "name": "Amphoe Don Chedi", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.64804000", + "longitude": "99.94734000" + }, + { + "id": "105594", + "name": "Amphoe Mueang Suphan Buri", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.49189000", + "longitude": "100.07458000" + }, + { + "id": "105687", + "name": "Amphoe Nong Yasai", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.77644000", + "longitude": "99.85751000" + }, + { + "id": "106219", + "name": "Amphoe Si Prachan", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.63810000", + "longitude": "100.15050000" + }, + { + "id": "106247", + "name": "Amphoe Song Phi Nong", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.18895000", + "longitude": "99.97580000" + }, + { + "id": "106324", + "name": "Amphoe U Thong", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.41093000", + "longitude": "99.88949000" + }, + { + "id": "106412", + "name": "Ban Sam Chuk", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.74219000", + "longitude": "100.09531000" + }, + { + "id": "106490", + "name": "Doembang Nangbuat", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.83333000", + "longitude": "100.10000000" + }, + { + "id": "106709", + "name": "Suphan Buri", + "state_id": 3524, + "state_code": "72", + "country_id": 219, + "country_code": "TH", + "latitude": "14.47418000", + "longitude": "100.12218000" + }, + { + "id": "105207", + "name": "Amphoe Ban Na Doem", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.90610000", + "longitude": "99.28136000" + }, + { + "id": "105208", + "name": "Amphoe Ban Na San", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.80063000", + "longitude": "99.40201000" + }, + { + "id": "105219", + "name": "Amphoe Ban Takhun", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.10423000", + "longitude": "98.67222000" + }, + { + "id": "105270", + "name": "Amphoe Chai Buri", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.43883000", + "longitude": "99.07721000" + }, + { + "id": "105273", + "name": "Amphoe Chaiya", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.49141000", + "longitude": "98.99568000" + }, + { + "id": "105333", + "name": "Amphoe Don Sak", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.21063000", + "longitude": "99.68887000" + }, + { + "id": "105369", + "name": "Amphoe Kanchanadit", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.07256000", + "longitude": "99.54390000" + }, + { + "id": "105402", + "name": "Amphoe Khian Sa", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.72766000", + "longitude": "99.13240000" + }, + { + "id": "105404", + "name": "Amphoe Khiri Rat Nikhom", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.00590000", + "longitude": "98.94404000" + }, + { + "id": "105443", + "name": "Amphoe Ko Pha-ngan", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.74939000", + "longitude": "100.02649000" + }, + { + "id": "105444", + "name": "Amphoe Ko Samui", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.50841000", + "longitude": "99.99644000" + }, + { + "id": "105595", + "name": "Amphoe Mueang Surat Thani", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.10132000", + "longitude": "99.32614000" + }, + { + "id": "105726", + "name": "Amphoe Phanom", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.82254000", + "longitude": "98.71709000" + }, + { + "id": "105770", + "name": "Amphoe Phrasaeng", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.55124000", + "longitude": "99.10520000" + }, + { + "id": "105784", + "name": "Amphoe Phunphin", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.02472000", + "longitude": "99.14304000" + }, + { + "id": "106271", + "name": "Amphoe Tha Chana", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.61142000", + "longitude": "99.03611000" + }, + { + "id": "106272", + "name": "Amphoe Tha Chang", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.33475000", + "longitude": "98.95619000" + }, + { + "id": "106367", + "name": "Amphoe Wiang Sa", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.59813000", + "longitude": "99.35277000" + }, + { + "id": "106370", + "name": "Amphoe Wiphawadi", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.21972000", + "longitude": "98.87028000" + }, + { + "id": "106402", + "name": "Ban Na San", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.80036000", + "longitude": "99.36372000" + }, + { + "id": "106462", + "name": "Chai Buri", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.46222000", + "longitude": "99.07631000" + }, + { + "id": "106465", + "name": "Chaiya", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.38625000", + "longitude": "99.19861000" + }, + { + "id": "106493", + "name": "Don Sak", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.31676000", + "longitude": "99.69184000" + }, + { + "id": "106511", + "name": "Kanchanadit", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.16611000", + "longitude": "99.47014000" + }, + { + "id": "106535", + "name": "Ko Pha Ngan", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.75778000", + "longitude": "100.02914000" + }, + { + "id": "106536", + "name": "Ko Samui", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.53567000", + "longitude": "99.93567000" + }, + { + "id": "106538", + "name": "Koh Tao", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "10.09808000", + "longitude": "99.83809000" + }, + { + "id": "106710", + "name": "Surat Thani", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.14011000", + "longitude": "99.33311000" + }, + { + "id": "106719", + "name": "Tha Kham", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.11072000", + "longitude": "99.23208000" + }, + { + "id": "106720", + "name": "Tha Khanon", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "9.03020000", + "longitude": "98.95286000" + }, + { + "id": "106751", + "name": "Wiang Sa", + "state_id": 3482, + "state_code": "84", + "country_id": 219, + "country_code": "TH", + "latitude": "8.63585000", + "longitude": "99.36660000" + }, + { + "id": "105256", + "name": "Amphoe Bua Chet", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.48406000", + "longitude": "103.97809000" + }, + { + "id": "105304", + "name": "Amphoe Chom Phra", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "15.14356000", + "longitude": "103.57881000" + }, + { + "id": "105313", + "name": "Amphoe Chumphon Buri", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "15.37942000", + "longitude": "103.37095000" + }, + { + "id": "105375", + "name": "Amphoe Kap Choeng", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.46795000", + "longitude": "103.58476000" + }, + { + "id": "105436", + "name": "Amphoe Khwao Sinarin", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "15.00733000", + "longitude": "103.62064000" + }, + { + "id": "105479", + "name": "Amphoe Lamduan", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.71907000", + "longitude": "103.69911000" + }, + { + "id": "105596", + "name": "Amphoe Mueang Surin", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.88359000", + "longitude": "103.51272000" + }, + { + "id": "105651", + "name": "Amphoe Non Narai", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "15.19111000", + "longitude": "103.92242000" + }, + { + "id": "105727", + "name": "Amphoe Phanom Dong Rak", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.42745000", + "longitude": "103.31007000" + }, + { + "id": "105798", + "name": "Amphoe Prasat", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.62602000", + "longitude": "103.41569000" + }, + { + "id": "105808", + "name": "Amphoe Rattanaburi", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "15.33780000", + "longitude": "103.90541000" + }, + { + "id": "106181", + "name": "Amphoe Samrong Thap", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "15.03980000", + "longitude": "103.94089000" + }, + { + "id": "106187", + "name": "Amphoe Sangkha", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.57051000", + "longitude": "103.83911000" + }, + { + "id": "106191", + "name": "Amphoe Sanom", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "15.17099000", + "longitude": "103.78475000" + }, + { + "id": "106213", + "name": "Amphoe Si Khoraphum", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.94753000", + "longitude": "103.78310000" + }, + { + "id": "106218", + "name": "Amphoe Si Narong", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.78085000", + "longitude": "103.88651000" + }, + { + "id": "106288", + "name": "Amphoe Tha Tum", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "15.30940000", + "longitude": "103.65111000" + }, + { + "id": "106711", + "name": "Surin", + "state_id": 3531, + "state_code": "32", + "country_id": 219, + "country_code": "TH", + "latitude": "14.88181000", + "longitude": "103.49364000" + }, + { + "id": "105218", + "name": "Amphoe Ban Tak", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "17.09163000", + "longitude": "99.06648000" + }, + { + "id": "105509", + "name": "Amphoe Mae Ramat", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "17.11180000", + "longitude": "98.58635000" + }, + { + "id": "105513", + "name": "Amphoe Mae Sot", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "16.72154000", + "longitude": "98.71074000" + }, + { + "id": "105597", + "name": "Amphoe Mueang Tak", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "16.87650000", + "longitude": "99.16617000" + }, + { + "id": "105758", + "name": "Amphoe Phop Phra", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "16.47215000", + "longitude": "98.83501000" + }, + { + "id": "106285", + "name": "Amphoe Tha Song Yang", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "17.47481000", + "longitude": "98.12079000" + }, + { + "id": "106326", + "name": "Amphoe Umphang", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "15.79496000", + "longitude": "98.87787000" + }, + { + "id": "106335", + "name": "Amphoe Wang Chao", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "16.63311000", + "longitude": "99.14826000" + }, + { + "id": "106415", + "name": "Ban Tak", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "17.04325000", + "longitude": "99.08128000" + }, + { + "id": "106564", + "name": "Mae Ramat", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "16.98403000", + "longitude": "98.51665000" + }, + { + "id": "106566", + "name": "Mae Sot", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "16.71667000", + "longitude": "98.56667000" + }, + { + "id": "106713", + "name": "Tak", + "state_id": 3525, + "state_code": "63", + "country_id": 219, + "country_code": "TH", + "latitude": "16.86968000", + "longitude": "99.12898000" + }, + { + "id": "105346", + "name": "Amphoe Hat Samran", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.25733000", + "longitude": "99.58160000" + }, + { + "id": "105359", + "name": "Amphoe Huai Yot", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.80063000", + "longitude": "99.60500000" + }, + { + "id": "105370", + "name": "Amphoe Kantang", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.38563000", + "longitude": "99.47064000" + }, + { + "id": "105598", + "name": "Amphoe Mueang Trang", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.60944000", + "longitude": "99.61772000" + }, + { + "id": "105629", + "name": "Amphoe Na Yong", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.56257000", + "longitude": "99.74791000" + }, + { + "id": "105709", + "name": "Amphoe Palian", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.23340000", + "longitude": "99.79491000" + }, + { + "id": "105807", + "name": "Amphoe Ratsada", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.93779000", + "longitude": "99.66771000" + }, + { + "id": "106233", + "name": "Amphoe Sikao", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.57122000", + "longitude": "99.33915000" + }, + { + "id": "106349", + "name": "Amphoe Wang Wiset", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.76061000", + "longitude": "99.40861000" + }, + { + "id": "106373", + "name": "Amphoe Yan Ta Khao", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.42580000", + "longitude": "99.73438000" + }, + { + "id": "106502", + "name": "Huai Yot", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.78937000", + "longitude": "99.63469000" + }, + { + "id": "106512", + "name": "Kantang", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.40542000", + "longitude": "99.51561000" + }, + { + "id": "106735", + "name": "Trang", + "state_id": 3541, + "state_code": "92", + "country_id": 219, + "country_code": "TH", + "latitude": "7.55633000", + "longitude": "99.61141000" + }, + { + "id": "105253", + "name": "Amphoe Bo Rai", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "12.55816000", + "longitude": "102.56566000" + }, + { + "id": "105397", + "name": "Amphoe Khao Saming", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "12.42885000", + "longitude": "102.41784000" + }, + { + "id": "105412", + "name": "Amphoe Khlong Yai", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "11.85540000", + "longitude": "102.82596000" + }, + { + "id": "105439", + "name": "Amphoe Ko Chang", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "12.05947000", + "longitude": "102.32941000" + }, + { + "id": "105441", + "name": "Amphoe Ko Kut", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "11.65714000", + "longitude": "102.56694000" + }, + { + "id": "105470", + "name": "Amphoe Laem Ngop", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "12.22028000", + "longitude": "102.36558000" + }, + { + "id": "105599", + "name": "Amphoe Mueang Trat", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "12.26667000", + "longitude": "102.60945000" + }, + { + "id": "106453", + "name": "Bo Rai", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "12.57283000", + "longitude": "102.53714000" + }, + { + "id": "106528", + "name": "Khlong Yai", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "11.77645000", + "longitude": "102.88567000" + }, + { + "id": "106533", + "name": "Ko Chang Tai", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "12.00171000", + "longitude": "102.37267000" + }, + { + "id": "106736", + "name": "Trat", + "state_id": 3496, + "state_code": "23", + "country_id": 219, + "country_code": "TH", + "latitude": "12.24364000", + "longitude": "102.51514000" + }, + { + "id": "105265", + "name": "Amphoe Buntharik", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "14.70495000", + "longitude": "105.40444000" + }, + { + "id": "105322", + "name": "Amphoe Det Udom", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "14.85153000", + "longitude": "105.07511000" + }, + { + "id": "105331", + "name": "Amphoe Don Mot Daeng", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.37694000", + "longitude": "105.02107000" + }, + { + "id": "105401", + "name": "Amphoe Khemmarat", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.97114000", + "longitude": "105.15168000" + }, + { + "id": "105424", + "name": "Amphoe Khong Chiam", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.45432000", + "longitude": "105.50363000" + }, + { + "id": "105430", + "name": "Amphoe Khueang Nai", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.39097000", + "longitude": "104.54363000" + }, + { + "id": "105466", + "name": "Amphoe Kut Khaopun", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.81907000", + "longitude": "105.04066000" + }, + { + "id": "105485", + "name": "Amphoe Lao Suea Kok", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.43952000", + "longitude": "104.91662000" + }, + { + "id": "105530", + "name": "Amphoe Muang Sam Sip", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.52637000", + "longitude": "104.71661000" + }, + { + "id": "105600", + "name": "Amphoe Mueang Ubon Ratchathani", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.29662000", + "longitude": "104.83052000" + }, + { + "id": "105608", + "name": "Amphoe Na Chaluai", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "14.56695000", + "longitude": "105.22367000" + }, + { + "id": "105622", + "name": "Amphoe Na Tan", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.93485000", + "longitude": "105.28454000" + }, + { + "id": "105628", + "name": "Amphoe Na Yia", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.04140000", + "longitude": "105.05729000" + }, + { + "id": "105634", + "name": "Amphoe Nam Khun", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "14.55508000", + "longitude": "104.89872000" + }, + { + "id": "105640", + "name": "Amphoe Nam Yuen", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "14.48671000", + "longitude": "105.00269000" + }, + { + "id": "105738", + "name": "Amphoe Phibun Mangsahan", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.14589000", + "longitude": "105.24094000" + }, + { + "id": "105746", + "name": "Amphoe Pho Sai", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.76739000", + "longitude": "105.34339000" + }, + { + "id": "106180", + "name": "Amphoe Samrong", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "14.98532000", + "longitude": "104.79139000" + }, + { + "id": "106202", + "name": "Amphoe Sawang Wirawong", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.23439000", + "longitude": "105.07600000" + }, + { + "id": "106216", + "name": "Amphoe Si Mueang Mai", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.56297000", + "longitude": "105.34830000" + }, + { + "id": "106238", + "name": "Amphoe Sirindhorn", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.11249000", + "longitude": "105.42837000" + }, + { + "id": "106267", + "name": "Amphoe Tan Sum", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.39035000", + "longitude": "105.16273000" + }, + { + "id": "106316", + "name": "Amphoe Thung Si Udom", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "14.73936000", + "longitude": "104.91731000" + }, + { + "id": "106322", + "name": "Amphoe Trakan Phuet Phon", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.61360000", + "longitude": "105.06444000" + }, + { + "id": "106353", + "name": "Amphoe Warin Chamrap", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.12394000", + "longitude": "104.87499000" + }, + { + "id": "106488", + "name": "Det Udom", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "14.90598000", + "longitude": "105.07836000" + }, + { + "id": "106633", + "name": "Phibun Mangsahan", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.24467000", + "longitude": "105.22908000" + }, + { + "id": "106694", + "name": "Sawang Wirawong", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.24158000", + "longitude": "105.09220000" + }, + { + "id": "106737", + "name": "Ubon Ratchathani", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.23844000", + "longitude": "104.84866000" + }, + { + "id": "106750", + "name": "Warin Chamrap", + "state_id": 3512, + "state_code": "34", + "country_id": 219, + "country_code": "TH", + "latitude": "15.19319000", + "longitude": "104.86280000" + }, + { + "id": "105190", + "name": "Amphoe Ban Dung", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.71134000", + "longitude": "103.26729000" + }, + { + "id": "105214", + "name": "Amphoe Ban Phue", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.67709000", + "longitude": "102.44563000" + }, + { + "id": "105272", + "name": "Amphoe Chai Wan", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.21581000", + "longitude": "103.27832000" + }, + { + "id": "105458", + "name": "Amphoe Ku Kaeo", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.16286000", + "longitude": "103.16754000" + }, + { + "id": "105461", + "name": "Amphoe Kumphawapi", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.09209000", + "longitude": "102.99395000" + }, + { + "id": "105464", + "name": "Amphoe Kut Chap", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.44009000", + "longitude": "102.54083000" + }, + { + "id": "105601", + "name": "Amphoe Mueang Udon Thani", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.39085000", + "longitude": "102.78912000" + }, + { + "id": "105630", + "name": "Amphoe Na Yung", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.93470000", + "longitude": "102.13417000" + }, + { + "id": "105639", + "name": "Amphoe Nam Som", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.74338000", + "longitude": "102.17328000" + }, + { + "id": "105652", + "name": "Amphoe Non Sa-at", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "16.95002000", + "longitude": "102.89990000" + }, + { + "id": "105663", + "name": "Amphoe Nong Han", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.36853000", + "longitude": "103.11510000" + }, + { + "id": "105680", + "name": "Amphoe Nong Saeng", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.14166000", + "longitude": "102.78592000" + }, + { + "id": "105684", + "name": "Amphoe Nong Wua So", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.18691000", + "longitude": "102.58986000" + }, + { + "id": "105737", + "name": "Amphoe Phen", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.66033000", + "longitude": "102.93052000" + }, + { + "id": "105739", + "name": "Amphoe Phibun Rak", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.52630000", + "longitude": "103.07497000" + }, + { + "id": "105793", + "name": "Amphoe Prachak Sinlapakhom", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.24648000", + "longitude": "102.98713000" + }, + { + "id": "106186", + "name": "Amphoe Sang Khom", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.79433000", + "longitude": "103.05114000" + }, + { + "id": "106228", + "name": "Amphoe Si That", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.03388000", + "longitude": "103.23084000" + }, + { + "id": "106312", + "name": "Amphoe Thung Fon", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.49061000", + "longitude": "103.22088000" + }, + { + "id": "106345", + "name": "Amphoe Wang Sam Mo", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.04595000", + "longitude": "103.46262000" + }, + { + "id": "106389", + "name": "Ban Dung", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.69900000", + "longitude": "103.25957000" + }, + { + "id": "106404", + "name": "Ban Nong Wua So", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.26750000", + "longitude": "103.22472000" + }, + { + "id": "106407", + "name": "Ban Phan Don", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.14272000", + "longitude": "102.97261000" + }, + { + "id": "106545", + "name": "Kumphawapi", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.10875000", + "longitude": "103.01487000" + }, + { + "id": "106546", + "name": "Kut Chap", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.42570000", + "longitude": "102.56692000" + }, + { + "id": "106587", + "name": "Nam Som", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.77036000", + "longitude": "102.18947000" + }, + { + "id": "106604", + "name": "Nong Wua So", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.16261000", + "longitude": "102.57272000" + }, + { + "id": "106738", + "name": "Udon Thani", + "state_id": 3527, + "state_code": "41", + "country_id": 219, + "country_code": "TH", + "latitude": "17.41567000", + "longitude": "102.78589000" + }, + { + "id": "105216", + "name": "Amphoe Ban Rai", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.24921000", + "longitude": "99.32817000" + }, + { + "id": "105352", + "name": "Amphoe Huai Khot", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.32761000", + "longitude": "99.51941000" + }, + { + "id": "105481", + "name": "Amphoe Lan Sak", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.52289000", + "longitude": "99.46110000" + }, + { + "id": "105602", + "name": "Amphoe Mueang Uthai Thani", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.40857000", + "longitude": "100.02794000" + }, + { + "id": "105660", + "name": "Amphoe Nong Chang", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.36755000", + "longitude": "99.77273000" + }, + { + "id": "105668", + "name": "Amphoe Nong Khayang", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.34892000", + "longitude": "99.94706000" + }, + { + "id": "106200", + "name": "Amphoe Sawang Arom", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.60250000", + "longitude": "99.78490000" + }, + { + "id": "106302", + "name": "Amphoe Thap Than", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.49057000", + "longitude": "99.82224000" + }, + { + "id": "106499", + "name": "Huai Khot", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.29095000", + "longitude": "99.61661000" + }, + { + "id": "106552", + "name": "Lan Sak", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.45289000", + "longitude": "99.57606000" + }, + { + "id": "106728", + "name": "Thap Than", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.46063000", + "longitude": "99.89166000" + }, + { + "id": "106739", + "name": "Uthai Thani", + "state_id": 3551, + "state_code": "61", + "country_id": 219, + "country_code": "TH", + "latitude": "15.37939000", + "longitude": "100.02450000" + }, + { + "id": "105196", + "name": "Amphoe Ban Khok", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "18.14680000", + "longitude": "101.06610000" + }, + { + "id": "105339", + "name": "Amphoe Fak Tha", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "18.00078000", + "longitude": "100.88885000" + }, + { + "id": "105486", + "name": "Amphoe Lap Lae", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "17.65741000", + "longitude": "100.01484000" + }, + { + "id": "105603", + "name": "Amphoe Mueang Uttaradit", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "17.68138000", + "longitude": "100.19963000" + }, + { + "id": "105637", + "name": "Amphoe Nam Pat", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "17.70025000", + "longitude": "100.72738000" + }, + { + "id": "105740", + "name": "Amphoe Phichai", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "17.30188000", + "longitude": "100.11281000" + }, + { + "id": "106281", + "name": "Amphoe Tha Pla", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "17.85868000", + "longitude": "100.47061000" + }, + { + "id": "106310", + "name": "Amphoe Thong Saen Khan", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "17.49930000", + "longitude": "100.39658000" + }, + { + "id": "106323", + "name": "Amphoe Tron", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "17.47231000", + "longitude": "100.13467000" + }, + { + "id": "106740", + "name": "Uttaradit", + "state_id": 3489, + "state_code": "53", + "country_id": 219, + "country_code": "TH", + "latitude": "17.62557000", + "longitude": "100.09421000" + }, + { + "id": "105247", + "name": "Amphoe Bannang Sata", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "6.25643000", + "longitude": "101.27852000" + }, + { + "id": "105250", + "name": "Amphoe Betong", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "5.86362000", + "longitude": "101.22737000" + }, + { + "id": "105361", + "name": "Amphoe Kabang", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "6.37923000", + "longitude": "100.98348000" + }, + { + "id": "105457", + "name": "Amphoe Krong Pinang", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "6.39932000", + "longitude": "101.25710000" + }, + { + "id": "105604", + "name": "Amphoe Mueang Yala", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "6.54378000", + "longitude": "101.25105000" + }, + { + "id": "105803", + "name": "Amphoe Raman", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "6.48985000", + "longitude": "101.43442000" + }, + { + "id": "106297", + "name": "Amphoe Than To", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "6.08042000", + "longitude": "101.25941000" + }, + { + "id": "106372", + "name": "Amphoe Yaha", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "6.40529000", + "longitude": "101.12679000" + }, + { + "id": "106451", + "name": "Betong", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "5.77434000", + "longitude": "101.07231000" + }, + { + "id": "106755", + "name": "Yala", + "state_id": 3493, + "state_code": "95", + "country_id": 219, + "country_code": "TH", + "latitude": "6.53995000", + "longitude": "101.28128000" + }, + { + "id": "105383", + "name": "Amphoe Kham Khuan Kaeo", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "15.67197000", + "longitude": "104.33372000" + }, + { + "id": "105414", + "name": "Amphoe Kho Wang", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "15.38164000", + "longitude": "104.34109000" + }, + { + "id": "105465", + "name": "Amphoe Kut Chum", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "16.04620000", + "longitude": "104.30545000" + }, + { + "id": "105491", + "name": "Amphoe Loeng Nok Tha", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "16.20433000", + "longitude": "104.51442000" + }, + { + "id": "105520", + "name": "Amphoe Maha Chana Chai", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "15.51267000", + "longitude": "104.26104000" + }, + { + "id": "105606", + "name": "Amphoe Mueang Yasothon", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "15.85550000", + "longitude": "104.17804000" + }, + { + "id": "105698", + "name": "Amphoe Pa Tio", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "15.84415000", + "longitude": "104.39994000" + }, + { + "id": "105822", + "name": "Amphoe Sai Mun", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "15.97917000", + "longitude": "104.19070000" + }, + { + "id": "106293", + "name": "Amphoe Thai Charoen", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "16.07936000", + "longitude": "104.42778000" + }, + { + "id": "106759", + "name": "Yasothon", + "state_id": 3521, + "state_code": "35", + "country_id": 219, + "country_code": "TH", + "latitude": "15.79408000", + "longitude": "104.14510000" + }, + { + "id": "105173", + "name": "Sokodé", + "state_id": 2575, + "state_code": "C", + "country_id": 220, + "country_code": "TG", + "latitude": "8.98333000", + "longitude": "1.13333000" + }, + { + "id": "105174", + "name": "Sotouboua", + "state_id": 2575, + "state_code": "C", + "country_id": 220, + "country_code": "TG", + "latitude": "8.56340000", + "longitude": "0.98399000" + }, + { + "id": "105176", + "name": "Tchamba", + "state_id": 2575, + "state_code": "C", + "country_id": 220, + "country_code": "TG", + "latitude": "9.03333000", + "longitude": "1.41667000" + }, + { + "id": "105161", + "name": "Bafilo", + "state_id": 2579, + "state_code": "K", + "country_id": 220, + "country_code": "TG", + "latitude": "9.35000000", + "longitude": "1.26667000" + }, + { + "id": "105162", + "name": "Bassar", + "state_id": 2579, + "state_code": "K", + "country_id": 220, + "country_code": "TG", + "latitude": "9.25025000", + "longitude": "0.78213000" + }, + { + "id": "105164", + "name": "Kandé", + "state_id": 2579, + "state_code": "K", + "country_id": 220, + "country_code": "TG", + "latitude": "9.95778000", + "longitude": "1.04472000" + }, + { + "id": "105165", + "name": "Kara", + "state_id": 2579, + "state_code": "K", + "country_id": 220, + "country_code": "TG", + "latitude": "9.55111000", + "longitude": "1.18611000" + }, + { + "id": "105168", + "name": "Niamtougou", + "state_id": 2579, + "state_code": "K", + "country_id": 220, + "country_code": "TG", + "latitude": "9.76806000", + "longitude": "1.10528000" + }, + { + "id": "105170", + "name": "Pagouda", + "state_id": 2579, + "state_code": "K", + "country_id": 220, + "country_code": "TG", + "latitude": "9.75250000", + "longitude": "1.32778000" + }, + { + "id": "105171", + "name": "Préfecture de Bassar", + "state_id": 2579, + "state_code": "K", + "country_id": 220, + "country_code": "TG", + "latitude": "9.25000000", + "longitude": "0.75000000" + }, + { + "id": "105158", + "name": "Aného", + "state_id": 2576, + "state_code": "M", + "country_id": 220, + "country_code": "TG", + "latitude": "6.22798000", + "longitude": "1.59190000" + }, + { + "id": "105167", + "name": "Lomé", + "state_id": 2576, + "state_code": "M", + "country_id": 220, + "country_code": "TG", + "latitude": "6.12874000", + "longitude": "1.22154000" + }, + { + "id": "105175", + "name": "Tabligbo", + "state_id": 2576, + "state_code": "M", + "country_id": 220, + "country_code": "TG", + "latitude": "6.58333000", + "longitude": "1.50000000" + }, + { + "id": "105177", + "name": "Tsévié", + "state_id": 2576, + "state_code": "M", + "country_id": 220, + "country_code": "TG", + "latitude": "6.42611000", + "longitude": "1.21333000" + }, + { + "id": "105178", + "name": "Vogan", + "state_id": 2576, + "state_code": "M", + "country_id": 220, + "country_code": "TG", + "latitude": "6.33333000", + "longitude": "1.53333000" + }, + { + "id": "105157", + "name": "Amlamé", + "state_id": 2577, + "state_code": "P", + "country_id": 220, + "country_code": "TG", + "latitude": "7.46667000", + "longitude": "0.90000000" + }, + { + "id": "105159", + "name": "Atakpamé", + "state_id": 2577, + "state_code": "P", + "country_id": 220, + "country_code": "TG", + "latitude": "7.53333000", + "longitude": "1.13333000" + }, + { + "id": "105160", + "name": "Badou", + "state_id": 2577, + "state_code": "P", + "country_id": 220, + "country_code": "TG", + "latitude": "7.58333000", + "longitude": "0.60000000" + }, + { + "id": "105166", + "name": "Kpalimé", + "state_id": 2577, + "state_code": "P", + "country_id": 220, + "country_code": "TG", + "latitude": "6.90000000", + "longitude": "0.63333000" + }, + { + "id": "105169", + "name": "Notsé", + "state_id": 2577, + "state_code": "P", + "country_id": 220, + "country_code": "TG", + "latitude": "6.95000000", + "longitude": "1.16667000" + }, + { + "id": "105163", + "name": "Dapaong", + "state_id": 2578, + "state_code": "S", + "country_id": 220, + "country_code": "TG", + "latitude": "10.86225000", + "longitude": "0.20762000" + }, + { + "id": "105172", + "name": "Sansanné-Mango", + "state_id": 2578, + "state_code": "S", + "country_id": 220, + "country_code": "TG", + "latitude": "10.35917000", + "longitude": "0.47083000" + }, + { + "id": "107051", + "name": "‘Ohonua", + "state_id": 3915, + "state_code": "01", + "country_id": 222, + "country_code": "TO", + "latitude": "-21.33333000", + "longitude": "-174.95000000" + }, + { + "id": "107049", + "name": "Pangai", + "state_id": 3913, + "state_code": "02", + "country_id": 222, + "country_code": "TO", + "latitude": "-19.81468000", + "longitude": "-174.35423000" + }, + { + "id": "107045", + "name": "Hihifo", + "state_id": 3914, + "state_code": "03", + "country_id": 222, + "country_code": "TO", + "latitude": "-15.95440000", + "longitude": "-173.79616000" + }, + { + "id": "107044", + "name": "Haveluloto", + "state_id": 3912, + "state_code": "04", + "country_id": 222, + "country_code": "TO", + "latitude": "-21.15216000", + "longitude": "-175.21333000" + }, + { + "id": "107046", + "name": "Kolonga", + "state_id": 3912, + "state_code": "04", + "country_id": 222, + "country_code": "TO", + "latitude": "-21.13333000", + "longitude": "-175.06667000" + }, + { + "id": "107048", + "name": "Nuku‘alofa", + "state_id": 3912, + "state_code": "04", + "country_id": 222, + "country_code": "TO", + "latitude": "-21.13938000", + "longitude": "-175.20180000" + }, + { + "id": "107050", + "name": "Vaini", + "state_id": 3912, + "state_code": "04", + "country_id": 222, + "country_code": "TO", + "latitude": "-21.19292000", + "longitude": "-175.17678000" + }, + { + "id": "107047", + "name": "Neiafu", + "state_id": 3911, + "state_code": "05", + "country_id": 222, + "country_code": "TO", + "latitude": "-18.65060000", + "longitude": "-173.98404000" + }, + { + "id": "108968", + "name": "Arima", + "state_id": 3362, + "state_code": "ARI", + "country_id": 223, + "country_code": "TT", + "latitude": "10.63737000", + "longitude": "-61.28228000" + }, + { + "id": "108970", + "name": "Chaguanas", + "state_id": 3366, + "state_code": "CHA", + "country_id": 223, + "country_code": "TT", + "latitude": "10.51667000", + "longitude": "-61.41667000" + }, + { + "id": "108990", + "name": "Ward of Chaguanas", + "state_id": 3366, + "state_code": "CHA", + "country_id": 223, + "country_code": "TT", + "latitude": "10.50000000", + "longitude": "-61.38333000" + }, + { + "id": "108971", + "name": "Couva", + "state_id": 3354, + "state_code": "CTT", + "country_id": 223, + "country_code": "TT", + "latitude": "10.42248000", + "longitude": "-61.46748000" + }, + { + "id": "108988", + "name": "Tabaquite", + "state_id": 3354, + "state_code": "CTT", + "country_id": 223, + "country_code": "TT", + "latitude": "10.38824000", + "longitude": "-61.29704000" + }, + { + "id": "108978", + "name": "Petit Valley", + "state_id": 3367, + "state_code": "DMN", + "country_id": 223, + "country_code": "TT", + "latitude": "10.69974000", + "longitude": "-61.54717000" + }, + { + "id": "108991", + "name": "Ward of Diego Martin", + "state_id": 3367, + "state_code": "DMN", + "country_id": 223, + "country_code": "TT", + "latitude": "10.70000000", + "longitude": "-61.58333000" + }, + { + "id": "108986", + "name": "Scarborough", + "state_id": 3355, + "state_code": "ETO", + "country_id": 223, + "country_code": "TT", + "latitude": "11.18229000", + "longitude": "-60.73525000" + }, + { + "id": "108972", + "name": "Debe", + "state_id": 3365, + "state_code": "PED", + "country_id": 223, + "country_code": "TT", + "latitude": "10.20846000", + "longitude": "-61.45273000" + }, + { + "id": "108979", + "name": "Peñal", + "state_id": 3365, + "state_code": "PED", + "country_id": 223, + "country_code": "TT", + "latitude": "10.16667000", + "longitude": "-61.46667000" + }, + { + "id": "108980", + "name": "Point Fortin", + "state_id": 3360, + "state_code": "PTF", + "country_id": 223, + "country_code": "TT", + "latitude": "10.17411000", + "longitude": "-61.68407000" + }, + { + "id": "108976", + "name": "Mucurapo", + "state_id": 3363, + "state_code": "POS", + "country_id": 223, + "country_code": "TT", + "latitude": "10.66253000", + "longitude": "-61.53697000" + }, + { + "id": "108981", + "name": "Port of Spain", + "state_id": 3363, + "state_code": "POS", + "country_id": 223, + "country_code": "TT", + "latitude": "10.66668000", + "longitude": "-61.51889000" + }, + { + "id": "108982", + "name": "Princes Town", + "state_id": 3368, + "state_code": "PRT", + "country_id": 223, + "country_code": "TT", + "latitude": "10.27184000", + "longitude": "-61.37103000" + }, + { + "id": "108974", + "name": "Marabella", + "state_id": 3359, + "state_code": "SFO", + "country_id": 223, + "country_code": "TT", + "latitude": "10.30618000", + "longitude": "-61.44671000" + }, + { + "id": "108975", + "name": "Mon Repos", + "state_id": 3359, + "state_code": "SFO", + "country_id": 223, + "country_code": "TT", + "latitude": "10.27979000", + "longitude": "-61.44590000" + }, + { + "id": "108984", + "name": "San Fernando", + "state_id": 3359, + "state_code": "SFO", + "country_id": 223, + "country_code": "TT", + "latitude": "10.27969000", + "longitude": "-61.46835000" + }, + { + "id": "108973", + "name": "Laventille", + "state_id": 3357, + "state_code": "SJL", + "country_id": 223, + "country_code": "TT", + "latitude": "10.64917000", + "longitude": "-61.49889000" + }, + { + "id": "108985", + "name": "Sangre Grande", + "state_id": 3361, + "state_code": "SGE", + "country_id": 223, + "country_code": "TT", + "latitude": "10.58705000", + "longitude": "-61.13008000" + }, + { + "id": "108987", + "name": "Siparia", + "state_id": 3364, + "state_code": "SIP", + "country_id": 223, + "country_code": "TT", + "latitude": "10.14525000", + "longitude": "-61.50740000" + }, + { + "id": "108992", + "name": "Ward of Siparia", + "state_id": 3364, + "state_code": "SIP", + "country_id": 223, + "country_code": "TT", + "latitude": "10.15000000", + "longitude": "-61.46667000" + }, + { + "id": "108969", + "name": "Arouca", + "state_id": 3358, + "state_code": "TUP", + "country_id": 223, + "country_code": "TT", + "latitude": "10.62877000", + "longitude": "-61.33487000" + }, + { + "id": "108977", + "name": "Paradise", + "state_id": 3358, + "state_code": "TUP", + "country_id": 223, + "country_code": "TT", + "latitude": "10.65298000", + "longitude": "-61.36298000" + }, + { + "id": "108989", + "name": "Tunapuna", + "state_id": 3358, + "state_code": "TUP", + "country_id": 223, + "country_code": "TT", + "latitude": "10.65245000", + "longitude": "-61.38878000" + }, + { + "id": "108983", + "name": "Rio Claro", + "state_id": 3353, + "state_code": "WTO", + "country_id": 223, + "country_code": "TT", + "latitude": "10.30594000", + "longitude": "-61.17556000" + }, + { + "id": "106915", + "name": "Ariana", + "state_id": 2550, + "state_code": "12", + "country_id": 224, + "country_code": "TN", + "latitude": "36.86012000", + "longitude": "10.19337000" + }, + { + "id": "106955", + "name": "Galaat el Andeless", + "state_id": 2550, + "state_code": "12", + "country_id": 224, + "country_code": "TN", + "latitude": "37.06290000", + "longitude": "10.11829000" + }, + { + "id": "106920", + "name": "Ben Arous", + "state_id": 2566, + "state_code": "13", + "country_id": 224, + "country_code": "TN", + "latitude": "36.75452000", + "longitude": "10.22167000" + }, + { + "id": "106959", + "name": "Hammam Lif", + "state_id": 2566, + "state_code": "13", + "country_id": 224, + "country_code": "TN", + "latitude": "36.71919000", + "longitude": "10.32233000" + }, + { + "id": "106961", + "name": "Hammam-Lif", + "state_id": 2566, + "state_code": "13", + "country_id": 224, + "country_code": "TN", + "latitude": "36.72866000", + "longitude": "10.34163000" + }, + { + "id": "106977", + "name": "La Sebala du Mornag", + "state_id": 2566, + "state_code": "13", + "country_id": 224, + "country_code": "TN", + "latitude": "36.67931000", + "longitude": "10.29195000" + }, + { + "id": "107007", + "name": "Radès", + "state_id": 2566, + "state_code": "13", + "country_id": 224, + "country_code": "TN", + "latitude": "36.76946000", + "longitude": "10.27468000" + }, + { + "id": "106913", + "name": "Al Matlīn", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.24516000", + "longitude": "10.05000000" + }, + { + "id": "106926", + "name": "Bizerte", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.27442000", + "longitude": "9.87391000" + }, + { + "id": "106927", + "name": "Bizerte Sud", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.25528000", + "longitude": "9.67915000" + }, + { + "id": "106938", + "name": "Douar Tindja", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.16667000", + "longitude": "9.75000000" + }, + { + "id": "106941", + "name": "El Alia", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.16911000", + "longitude": "10.03478000" + }, + { + "id": "106983", + "name": "Mateur", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.04045000", + "longitude": "9.66557000" + }, + { + "id": "106988", + "name": "Menzel Abderhaman", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.23737000", + "longitude": "9.86313000" + }, + { + "id": "106989", + "name": "Menzel Bourguiba", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.15368000", + "longitude": "9.78594000" + }, + { + "id": "106990", + "name": "Menzel Jemil", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.23618000", + "longitude": "9.91448000" + }, + { + "id": "107008", + "name": "Rafrāf", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.19043000", + "longitude": "10.18365000" + }, + { + "id": "107010", + "name": "Rhar el Melah", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.16939000", + "longitude": "10.19064000" + }, + { + "id": "107017", + "name": "Sejenane", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.05722000", + "longitude": "9.23806000" + }, + { + "id": "107041", + "name": "Zahānah", + "state_id": 2551, + "state_code": "23", + "country_id": 224, + "country_code": "TN", + "latitude": "37.03959000", + "longitude": "10.03876000" + }, + { + "id": "106929", + "name": "Bou Attouche", + "state_id": 2558, + "state_code": "81", + "country_id": 224, + "country_code": "TN", + "latitude": "33.89927000", + "longitude": "9.78496000" + }, + { + "id": "106945", + "name": "El Hamma", + "state_id": 2558, + "state_code": "81", + "country_id": 224, + "country_code": "TN", + "latitude": "33.89152000", + "longitude": "9.79629000" + }, + { + "id": "106952", + "name": "Gabès", + "state_id": 2558, + "state_code": "81", + "country_id": 224, + "country_code": "TN", + "latitude": "33.88146000", + "longitude": "10.09820000" + }, + { + "id": "106984", + "name": "Matmata", + "state_id": 2558, + "state_code": "81", + "country_id": 224, + "country_code": "TN", + "latitude": "33.54445000", + "longitude": "9.97157000" + }, + { + "id": "106914", + "name": "Ar Rudayyif", + "state_id": 2556, + "state_code": "71", + "country_id": 224, + "country_code": "TN", + "latitude": "34.38270000", + "longitude": "8.15549000" + }, + { + "id": "106916", + "name": "As Sanad", + "state_id": 2556, + "state_code": "71", + "country_id": 224, + "country_code": "TN", + "latitude": "34.46280000", + "longitude": "9.26404000" + }, + { + "id": "106954", + "name": "Gafsa", + "state_id": 2556, + "state_code": "71", + "country_id": 224, + "country_code": "TN", + "latitude": "34.42500000", + "longitude": "8.78417000" + }, + { + "id": "106994", + "name": "Metlaoui", + "state_id": 2556, + "state_code": "71", + "country_id": 224, + "country_code": "TN", + "latitude": "34.32081000", + "longitude": "8.40157000" + }, + { + "id": "107000", + "name": "Mu‘tamadīyat ar Rudayyif", + "state_id": 2556, + "state_code": "71", + "country_id": 224, + "country_code": "TN", + "latitude": "34.40081000", + "longitude": "8.17057000" + }, + { + "id": "106951", + "name": "Fernana", + "state_id": 2552, + "state_code": "32", + "country_id": 224, + "country_code": "TN", + "latitude": "36.65547000", + "longitude": "8.69602000" + }, + { + "id": "106965", + "name": "Jendouba", + "state_id": 2552, + "state_code": "32", + "country_id": 224, + "country_code": "TN", + "latitude": "36.48519000", + "longitude": "8.82325000" + }, + { + "id": "107005", + "name": "Oued Meliz", + "state_id": 2552, + "state_code": "32", + "country_id": 224, + "country_code": "TN", + "latitude": "36.46813000", + "longitude": "8.54951000" + }, + { + "id": "107030", + "name": "Tabarka", + "state_id": 2552, + "state_code": "32", + "country_id": 224, + "country_code": "TN", + "latitude": "36.95442000", + "longitude": "8.75801000" + }, + { + "id": "106958", + "name": "Haffouz", + "state_id": 2564, + "state_code": "41", + "country_id": 224, + "country_code": "TN", + "latitude": "35.63235000", + "longitude": "9.67624000" + }, + { + "id": "106968", + "name": "Kairouan", + "state_id": 2564, + "state_code": "41", + "country_id": 224, + "country_code": "TN", + "latitude": "35.67810000", + "longitude": "10.09633000" + }, + { + "id": "107016", + "name": "Sbikha", + "state_id": 2564, + "state_code": "41", + "country_id": 224, + "country_code": "TN", + "latitude": "35.93325000", + "longitude": "10.02081000" + }, + { + "id": "106969", + "name": "Kasserine", + "state_id": 2570, + "state_code": "42", + "country_id": 224, + "country_code": "TN", + "latitude": "35.16758000", + "longitude": "8.83651000" + }, + { + "id": "107011", + "name": "Rohia", + "state_id": 2570, + "state_code": "42", + "country_id": 224, + "country_code": "TN", + "latitude": "35.65129000", + "longitude": "9.05306000" + }, + { + "id": "107015", + "name": "Sbiba", + "state_id": 2570, + "state_code": "42", + "country_id": 224, + "country_code": "TN", + "latitude": "35.54332000", + "longitude": "9.07370000" + }, + { + "id": "107036", + "name": "Thala", + "state_id": 2570, + "state_code": "42", + "country_id": 224, + "country_code": "TN", + "latitude": "35.57244000", + "longitude": "8.67031000" + }, + { + "id": "106930", + "name": "Béja", + "state_id": 2572, + "state_code": "31", + "country_id": 224, + "country_code": "TN", + "latitude": "36.72564000", + "longitude": "9.18169000" + }, + { + "id": "106940", + "name": "Délégation de Béja Nord", + "state_id": 2572, + "state_code": "31", + "country_id": 224, + "country_code": "TN", + "latitude": "36.80353000", + "longitude": "9.24984000" + }, + { + "id": "106956", + "name": "Goubellat", + "state_id": 2572, + "state_code": "31", + "country_id": 224, + "country_code": "TN", + "latitude": "36.54178000", + "longitude": "9.66334000" + }, + { + "id": "106986", + "name": "Medjez el Bab", + "state_id": 2572, + "state_code": "31", + "country_id": 224, + "country_code": "TN", + "latitude": "36.64964000", + "longitude": "9.61231000" + }, + { + "id": "107031", + "name": "Tabursuq", + "state_id": 2572, + "state_code": "31", + "country_id": 224, + "country_code": "TN", + "latitude": "36.45692000", + "longitude": "9.24751000" + }, + { + "id": "107035", + "name": "Testour", + "state_id": 2572, + "state_code": "31", + "country_id": 224, + "country_code": "TN", + "latitude": "36.55130000", + "longitude": "9.44307000" + }, + { + "id": "106939", + "name": "Douz", + "state_id": 2562, + "state_code": "73", + "country_id": 224, + "country_code": "TN", + "latitude": "33.46632000", + "longitude": "9.02030000" + }, + { + "id": "106944", + "name": "El Golaa", + "state_id": 2562, + "state_code": "73", + "country_id": 224, + "country_code": "TN", + "latitude": "33.48485000", + "longitude": "9.00678000" + }, + { + "id": "106964", + "name": "Jemna", + "state_id": 2562, + "state_code": "73", + "country_id": 224, + "country_code": "TN", + "latitude": "33.57778000", + "longitude": "9.01472000" + }, + { + "id": "106970", + "name": "Kebili", + "state_id": 2562, + "state_code": "73", + "country_id": 224, + "country_code": "TN", + "latitude": "33.70439000", + "longitude": "8.96903000" + }, + { + "id": "106917", + "name": "As Sars", + "state_id": 2561, + "state_code": "33", + "country_id": 224, + "country_code": "TN", + "latitude": "36.07640000", + "longitude": "9.02117000" + }, + { + "id": "106947", + "name": "El Kef", + "state_id": 2561, + "state_code": "33", + "country_id": 224, + "country_code": "TN", + "latitude": "36.17424000", + "longitude": "8.70486000" + }, + { + "id": "106948", + "name": "El Ksour", + "state_id": 2561, + "state_code": "33", + "country_id": 224, + "country_code": "TN", + "latitude": "35.89607000", + "longitude": "8.88493000" + }, + { + "id": "106992", + "name": "Menzel Salem", + "state_id": 2561, + "state_code": "33", + "country_id": 224, + "country_code": "TN", + "latitude": "35.85673000", + "longitude": "8.47654000" + }, + { + "id": "107002", + "name": "Nibbar", + "state_id": 2561, + "state_code": "33", + "country_id": 224, + "country_code": "TN", + "latitude": "36.29411000", + "longitude": "8.76657000" + }, + { + "id": "107013", + "name": "Sakiet Sidi Youssef", + "state_id": 2561, + "state_code": "33", + "country_id": 224, + "country_code": "TN", + "latitude": "36.22292000", + "longitude": "8.35547000" + }, + { + "id": "107032", + "name": "Tajerouine", + "state_id": 2561, + "state_code": "33", + "country_id": 224, + "country_code": "TN", + "latitude": "35.89174000", + "longitude": "8.55276000" + }, + { + "id": "106932", + "name": "Chebba", + "state_id": 2568, + "state_code": "53", + "country_id": 224, + "country_code": "TN", + "latitude": "35.23722000", + "longitude": "11.11500000" + }, + { + "id": "106934", + "name": "Chorbane", + "state_id": 2568, + "state_code": "53", + "country_id": 224, + "country_code": "TN", + "latitude": "35.28581000", + "longitude": "10.38580000" + }, + { + "id": "106946", + "name": "El Jem", + "state_id": 2568, + "state_code": "53", + "country_id": 224, + "country_code": "TN", + "latitude": "35.30000000", + "longitude": "10.71667000" + }, + { + "id": "106974", + "name": "Ksour Essaf", + "state_id": 2568, + "state_code": "53", + "country_id": 224, + "country_code": "TN", + "latitude": "35.41808000", + "longitude": "10.99475000" + }, + { + "id": "106980", + "name": "Mahdia", + "state_id": 2568, + "state_code": "53", + "country_id": 224, + "country_code": "TN", + "latitude": "35.50472000", + "longitude": "11.06222000" + }, + { + "id": "106987", + "name": "Melloulèche", + "state_id": 2568, + "state_code": "53", + "country_id": 224, + "country_code": "TN", + "latitude": "35.16617000", + "longitude": "11.03504000" + }, + { + "id": "107014", + "name": "Salakta", + "state_id": 2568, + "state_code": "53", + "country_id": 224, + "country_code": "TN", + "latitude": "35.39444000", + "longitude": "11.04361000" + }, + { + "id": "107020", + "name": "Sidi Alouane", + "state_id": 2568, + "state_code": "53", + "country_id": 224, + "country_code": "TN", + "latitude": "35.37505000", + "longitude": "10.93899000" + }, + { + "id": "107043", + "name": "Zouila", + "state_id": 2568, + "state_code": "53", + "country_id": 224, + "country_code": "TN", + "latitude": "35.50056000", + "longitude": "11.06056000" + }, + { + "id": "106942", + "name": "El Battan", + "state_id": 2555, + "state_code": "14", + "country_id": 224, + "country_code": "TN", + "latitude": "36.80368000", + "longitude": "9.84424000" + }, + { + "id": "106982", + "name": "Manouba", + "state_id": 2555, + "state_code": "14", + "country_id": 224, + "country_code": "TN", + "latitude": "36.81006000", + "longitude": "10.09557000" + }, + { + "id": "106999", + "name": "Mu‘tamadīyat Manūbah", + "state_id": 2555, + "state_code": "14", + "country_id": 224, + "country_code": "TN", + "latitude": "36.80907000", + "longitude": "10.09467000" + }, + { + "id": "107004", + "name": "Oued Lill", + "state_id": 2555, + "state_code": "14", + "country_id": 224, + "country_code": "TN", + "latitude": "36.83408000", + "longitude": "10.04057000" + }, + { + "id": "106921", + "name": "Ben Gardane", + "state_id": 2560, + "state_code": "82", + "country_id": 224, + "country_code": "TN", + "latitude": "33.13783000", + "longitude": "11.21965000" + }, + { + "id": "106923", + "name": "Beni Kheddache", + "state_id": 2560, + "state_code": "82", + "country_id": 224, + "country_code": "TN", + "latitude": "33.25279000", + "longitude": "10.19883000" + }, + { + "id": "106950", + "name": "Erriadh", + "state_id": 2560, + "state_code": "82", + "country_id": 224, + "country_code": "TN", + "latitude": "33.82063000", + "longitude": "10.85394000" + }, + { + "id": "106963", + "name": "Houmt El Souk", + "state_id": 2560, + "state_code": "82", + "country_id": 224, + "country_code": "TN", + "latitude": "33.87576000", + "longitude": "10.85745000" + }, + { + "id": "106966", + "name": "Jerba Midoun", + "state_id": 2560, + "state_code": "82", + "country_id": 224, + "country_code": "TN", + "latitude": "33.77918000", + "longitude": "10.95215000" + }, + { + "id": "106985", + "name": "Medenine", + "state_id": 2560, + "state_code": "82", + "country_id": 224, + "country_code": "TN", + "latitude": "33.35495000", + "longitude": "10.50548000" + }, + { + "id": "106996", + "name": "Midoun", + "state_id": 2560, + "state_code": "82", + "country_id": 224, + "country_code": "TN", + "latitude": "33.80813000", + "longitude": "10.99228000" + }, + { + "id": "107042", + "name": "Zarzis", + "state_id": 2560, + "state_code": "82", + "country_id": 224, + "country_code": "TN", + "latitude": "33.50398000", + "longitude": "11.11215000" + }, + { + "id": "106918", + "name": "Banbalah", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.70000000", + "longitude": "10.80000000" + }, + { + "id": "106919", + "name": "Bekalta", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.61739000", + "longitude": "10.99466000" + }, + { + "id": "106922", + "name": "Beni Hassane", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.56720000", + "longitude": "10.80869000" + }, + { + "id": "106937", + "name": "Djemmal", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.62231000", + "longitude": "10.75696000" + }, + { + "id": "106972", + "name": "Ksar Hellal", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.64773000", + "longitude": "10.89046000" + }, + { + "id": "106973", + "name": "Ksibet el Mediouni", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.68561000", + "longitude": "10.84256000" + }, + { + "id": "106979", + "name": "Lemta", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.66667000", + "longitude": "10.88333000" + }, + { + "id": "106991", + "name": "Menzel Kamel", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.62477000", + "longitude": "10.66727000" + }, + { + "id": "106993", + "name": "Mesdour", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.68206000", + "longitude": "10.72746000" + }, + { + "id": "106997", + "name": "Monastir", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.77799000", + "longitude": "10.82617000" + }, + { + "id": "107003", + "name": "Ouardenine", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.70915000", + "longitude": "10.67397000" + }, + { + "id": "107012", + "name": "Sahline", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.75166000", + "longitude": "10.71109000" + }, + { + "id": "107018", + "name": "Seïada", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.66887000", + "longitude": "10.89246000" + }, + { + "id": "107021", + "name": "Sidi Ben Nour", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.53333000", + "longitude": "10.91667000" + }, + { + "id": "107027", + "name": "Skanes", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.78333000", + "longitude": "10.80000000" + }, + { + "id": "107037", + "name": "Touza", + "state_id": 2553, + "state_code": "52", + "country_id": 224, + "country_code": "TN", + "latitude": "35.63544000", + "longitude": "10.82732000" + }, + { + "id": "106910", + "name": "Agareb", + "state_id": 2557, + "state_code": "61", + "country_id": 224, + "country_code": "TN", + "latitude": "34.74406000", + "longitude": "10.46110000" + }, + { + "id": "106924", + "name": "Bir Ali Ben Khalifa", + "state_id": 2557, + "state_code": "61", + "country_id": 224, + "country_code": "TN", + "latitude": "34.73592000", + "longitude": "10.09240000" + }, + { + "id": "106936", + "name": "Djebeniana", + "state_id": 2557, + "state_code": "61", + "country_id": 224, + "country_code": "TN", + "latitude": "35.03500000", + "longitude": "10.90809000" + }, + { + "id": "106957", + "name": "Gremda", + "state_id": 2557, + "state_code": "61", + "country_id": 224, + "country_code": "TN", + "latitude": "34.75000000", + "longitude": "10.78333000" + }, + { + "id": "107019", + "name": "Sfax", + "state_id": 2557, + "state_code": "61", + "country_id": 224, + "country_code": "TN", + "latitude": "34.74056000", + "longitude": "10.76028000" + }, + { + "id": "107028", + "name": "Skhira", + "state_id": 2557, + "state_code": "61", + "country_id": 224, + "country_code": "TN", + "latitude": "34.29920000", + "longitude": "10.06999000" + }, + { + "id": "106925", + "name": "Bir el Hafey", + "state_id": 2567, + "state_code": "43", + "country_id": 224, + "country_code": "TN", + "latitude": "34.93212000", + "longitude": "9.19321000" + }, + { + "id": "106949", + "name": "Er Regueb", + "state_id": 2567, + "state_code": "43", + "country_id": 224, + "country_code": "TN", + "latitude": "34.85932000", + "longitude": "9.78654000" + }, + { + "id": "106967", + "name": "Jilma", + "state_id": 2567, + "state_code": "43", + "country_id": 224, + "country_code": "TN", + "latitude": "35.27311000", + "longitude": "9.42385000" + }, + { + "id": "106995", + "name": "Mezzouna", + "state_id": 2567, + "state_code": "43", + "country_id": 224, + "country_code": "TN", + "latitude": "34.57758000", + "longitude": "9.84193000" + }, + { + "id": "107024", + "name": "Sidi Bouzid", + "state_id": 2567, + "state_code": "43", + "country_id": 224, + "country_code": "TN", + "latitude": "35.03823000", + "longitude": "9.48494000" + }, + { + "id": "106928", + "name": "Bou Arada", + "state_id": 2563, + "state_code": "34", + "country_id": 224, + "country_code": "TN", + "latitude": "36.35251000", + "longitude": "9.62175000" + }, + { + "id": "106953", + "name": "Gafour", + "state_id": 2563, + "state_code": "34", + "country_id": 224, + "country_code": "TN", + "latitude": "36.32045000", + "longitude": "9.32424000" + }, + { + "id": "106971", + "name": "Kesra", + "state_id": 2563, + "state_code": "34", + "country_id": 224, + "country_code": "TN", + "latitude": "35.81363000", + "longitude": "9.36434000" + }, + { + "id": "106978", + "name": "Le Krib", + "state_id": 2563, + "state_code": "34", + "country_id": 224, + "country_code": "TN", + "latitude": "36.32802000", + "longitude": "9.13613000" + }, + { + "id": "106981", + "name": "Maktar", + "state_id": 2563, + "state_code": "34", + "country_id": 224, + "country_code": "TN", + "latitude": "35.85798000", + "longitude": "9.20072000" + }, + { + "id": "107026", + "name": "Siliana", + "state_id": 2563, + "state_code": "34", + "country_id": 224, + "country_code": "TN", + "latitude": "36.08497000", + "longitude": "9.37082000" + }, + { + "id": "106911", + "name": "Akouda", + "state_id": 2571, + "state_code": "51", + "country_id": 224, + "country_code": "TN", + "latitude": "35.86910000", + "longitude": "10.56530000" + }, + { + "id": "106960", + "name": "Hammam Sousse", + "state_id": 2571, + "state_code": "51", + "country_id": 224, + "country_code": "TN", + "latitude": "35.86090000", + "longitude": "10.60313000" + }, + { + "id": "106962", + "name": "Harqalah", + "state_id": 2571, + "state_code": "51", + "country_id": 224, + "country_code": "TN", + "latitude": "36.03027000", + "longitude": "10.50904000" + }, + { + "id": "106998", + "name": "Msaken", + "state_id": 2571, + "state_code": "51", + "country_id": 224, + "country_code": "TN", + "latitude": "35.72917000", + "longitude": "10.58082000" + }, + { + "id": "107006", + "name": "Port el Kantaoui", + "state_id": 2571, + "state_code": "51", + "country_id": 224, + "country_code": "TN", + "latitude": "35.89239000", + "longitude": "10.59434000" + }, + { + "id": "107022", + "name": "Sidi Bou Ali", + "state_id": 2571, + "state_code": "51", + "country_id": 224, + "country_code": "TN", + "latitude": "35.95667000", + "longitude": "10.47306000" + }, + { + "id": "107025", + "name": "Sidi el Hani", + "state_id": 2571, + "state_code": "51", + "country_id": 224, + "country_code": "TN", + "latitude": "35.67139000", + "longitude": "10.31583000" + }, + { + "id": "107029", + "name": "Sousse", + "state_id": 2571, + "state_code": "51", + "country_id": 224, + "country_code": "TN", + "latitude": "35.82539000", + "longitude": "10.63699000" + }, + { + "id": "107009", + "name": "Remada", + "state_id": 2559, + "state_code": "83", + "country_id": 224, + "country_code": "TN", + "latitude": "32.31662000", + "longitude": "10.39551000" + }, + { + "id": "107034", + "name": "Tataouine", + "state_id": 2559, + "state_code": "83", + "country_id": 224, + "country_code": "TN", + "latitude": "32.92967000", + "longitude": "10.45177000" + }, + { + "id": "106933", + "name": "Chebika", + "state_id": 2569, + "state_code": "72", + "country_id": 224, + "country_code": "TN", + "latitude": "34.31909000", + "longitude": "7.93519000" + }, + { + "id": "106935", + "name": "Degache", + "state_id": 2569, + "state_code": "72", + "country_id": 224, + "country_code": "TN", + "latitude": "33.97606000", + "longitude": "8.20810000" + }, + { + "id": "107001", + "name": "Nefta", + "state_id": 2569, + "state_code": "72", + "country_id": 224, + "country_code": "TN", + "latitude": "33.87309000", + "longitude": "7.87765000" + }, + { + "id": "107033", + "name": "Tamaghzah", + "state_id": 2569, + "state_code": "72", + "country_id": 224, + "country_code": "TN", + "latitude": "34.38849000", + "longitude": "7.94313000" + }, + { + "id": "107038", + "name": "Tozeur", + "state_id": 2569, + "state_code": "72", + "country_id": 224, + "country_code": "TN", + "latitude": "33.91968000", + "longitude": "8.13352000" + }, + { + "id": "106912", + "name": "Al Marsá", + "state_id": 2554, + "state_code": "11", + "country_id": 224, + "country_code": "TN", + "latitude": "36.87818000", + "longitude": "10.32466000" + }, + { + "id": "106931", + "name": "Carthage", + "state_id": 2554, + "state_code": "11", + "country_id": 224, + "country_code": "TN", + "latitude": "36.85961000", + "longitude": "10.32978000" + }, + { + "id": "106975", + "name": "La Goulette", + "state_id": 2554, + "state_code": "11", + "country_id": 224, + "country_code": "TN", + "latitude": "36.81825000", + "longitude": "10.30520000" + }, + { + "id": "106976", + "name": "La Mohammedia", + "state_id": 2554, + "state_code": "11", + "country_id": 224, + "country_code": "TN", + "latitude": "36.67446000", + "longitude": "10.15633000" + }, + { + "id": "107023", + "name": "Sidi Bou Saïd", + "state_id": 2554, + "state_code": "11", + "country_id": 224, + "country_code": "TN", + "latitude": "36.86870000", + "longitude": "10.34174000" + }, + { + "id": "107039", + "name": "Tunis", + "state_id": 2554, + "state_code": "11", + "country_id": 224, + "country_code": "TN", + "latitude": "36.81897000", + "longitude": "10.16579000" + }, + { + "id": "106943", + "name": "El Fahs", + "state_id": 2565, + "state_code": "22", + "country_id": 224, + "country_code": "TN", + "latitude": "36.37419000", + "longitude": "9.90651000" + }, + { + "id": "107040", + "name": "Zaghouan", + "state_id": 2565, + "state_code": "22", + "country_id": 224, + "country_code": "TN", + "latitude": "36.40291000", + "longitude": "10.14292000" + }, + { + "id": "107244", + "name": "Ağrı", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.71944000", + "longitude": "43.05139000" + }, + { + "id": "107502", + "name": "Diyadin", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.54056000", + "longitude": "43.67135000" + }, + { + "id": "107503", + "name": "Diyadin İlçesi", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.54880000", + "longitude": "43.67490000" + }, + { + "id": "107527", + "name": "Doğubayazıt", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.54694000", + "longitude": "44.08417000" + }, + { + "id": "107528", + "name": "Doğubayazıt İlçesi", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.55601000", + "longitude": "44.08912000" + }, + { + "id": "107566", + "name": "Eleşkirt", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.79803000", + "longitude": "42.67574000" + }, + { + "id": "107567", + "name": "Eleşkirt İlçesi", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.81242000", + "longitude": "42.67955000" + }, + { + "id": "107783", + "name": "Hamur", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.60561000", + "longitude": "42.98500000" + }, + { + "id": "107784", + "name": "Hamur İlçesi", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.61917000", + "longitude": "42.99280000" + }, + { + "id": "108316", + "name": "Patnos", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.22493000", + "longitude": "42.85693000" + }, + { + "id": "108317", + "name": "Patnos İlçesi", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.24297000", + "longitude": "42.86736000" + }, + { + "id": "108552", + "name": "Taşlıçay", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.62966000", + "longitude": "43.36878000" + }, + { + "id": "108553", + "name": "Taşlıçay İlçesi", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.64294000", + "longitude": "43.37683000" + }, + { + "id": "108608", + "name": "Tutak İlçesi", + "state_id": 2193, + "state_code": "04", + "country_id": 225, + "country_code": "TR", + "latitude": "39.55042000", + "longitude": "42.77572000" + }, + { + "id": "107063", + "name": "Adana", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.00167000", + "longitude": "35.32889000" + }, + { + "id": "107120", + "name": "Aladağ", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.55854000", + "longitude": "35.40196000" + }, + { + "id": "108893", + "name": "İmamoğlu", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.27500000", + "longitude": "35.66649000" + }, + { + "id": "108848", + "name": "Çukurova", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.05627000", + "longitude": "35.13119000" + }, + { + "id": "107258", + "name": "Bahçe", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.19724000", + "longitude": "36.57658000" + }, + { + "id": "107427", + "name": "Ceyhan", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.02472000", + "longitude": "35.81750000" + }, + { + "id": "107635", + "name": "Feke", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.82405000", + "longitude": "35.91826000" + }, + { + "id": "107896", + "name": "Karaisalı", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.26655000", + "longitude": "35.05033000" + }, + { + "id": "107918", + "name": "Karataş", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "36.57186000", + "longitude": "35.36784000" + }, + { + "id": "108033", + "name": "Kozan", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.50000000", + "longitude": "35.75000000" + }, + { + "id": "108349", + "name": "Pozantı", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.43671000", + "longitude": "34.88057000" + }, + { + "id": "108374", + "name": "Saimbeyli", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.99615000", + "longitude": "36.09909000" + }, + { + "id": "108414", + "name": "Sarıçam", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "37.14971000", + "longitude": "35.50949000" + }, + { + "id": "108452", + "name": "Seyhan", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "36.95540000", + "longitude": "35.21637000" + }, + { + "id": "108597", + "name": "Tufanbeyli", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "38.27343000", + "longitude": "36.22731000" + }, + { + "id": "108745", + "name": "Yüreğir", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "36.99205000", + "longitude": "35.45402000" + }, + { + "id": "108737", + "name": "Yumurtalık", + "state_id": 2212, + "state_code": "01", + "country_id": 225, + "country_code": "TR", + "latitude": "36.78245000", + "longitude": "35.79949000" + }, + { + "id": "107067", + "name": "Adıyaman", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.76441000", + "longitude": "38.27629000" + }, + { + "id": "107173", + "name": "Aralık İlçesi", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "39.88314000", + "longitude": "44.52330000" + }, + { + "id": "108814", + "name": "Çelikhan", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "38.02560000", + "longitude": "38.23665000" + }, + { + "id": "108815", + "name": "Çelikhan İlçesi", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "38.03275000", + "longitude": "38.23705000" + }, + { + "id": "107332", + "name": "Besni", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.69278000", + "longitude": "37.86111000" + }, + { + "id": "107333", + "name": "Besni İlçesi", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.70142000", + "longitude": "37.87086000" + }, + { + "id": "107688", + "name": "Gölbaşı", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.78361000", + "longitude": "37.63667000" + }, + { + "id": "107689", + "name": "Gölbaşı İlçesi", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.79000000", + "longitude": "37.64989000" + }, + { + "id": "107666", + "name": "Gerger", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95000000", + "longitude": "39.01667000" + }, + { + "id": "107667", + "name": "Gerger İlçesi", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "38.02856000", + "longitude": "39.03281000" + }, + { + "id": "108069", + "name": "Kâhta", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.78552000", + "longitude": "38.62370000" + }, + { + "id": "108070", + "name": "Kâhta İlçesi", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.79477000", + "longitude": "38.63119000" + }, + { + "id": "108194", + "name": "Merkez", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.74454000", + "longitude": "38.26801000" + }, + { + "id": "108379", + "name": "Samsat", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.58194000", + "longitude": "38.47417000" + }, + { + "id": "108380", + "name": "Samsat İlçesi", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.58565000", + "longitude": "38.48946000" + }, + { + "id": "108471", + "name": "Sincik", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "38.03645000", + "longitude": "38.61257000" + }, + { + "id": "108472", + "name": "Sincik İlçesi", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "38.03373000", + "longitude": "38.61319000" + }, + { + "id": "108606", + "name": "Tut", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.79529000", + "longitude": "37.91610000" + }, + { + "id": "108607", + "name": "Tut İlçesi", + "state_id": 2155, + "state_code": "02", + "country_id": 225, + "country_code": "TR", + "latitude": "37.80528000", + "longitude": "37.92296000" + }, + { + "id": "107068", + "name": "Afyonkarahisar", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.75667000", + "longitude": "30.54333000" + }, + { + "id": "108964", + "name": "Şuhut", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.53111000", + "longitude": "30.54583000" + }, + { + "id": "108965", + "name": "Şuhut İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.54081000", + "longitude": "30.55474000" + }, + { + "id": "108883", + "name": "İhsaniye", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "39.02916000", + "longitude": "30.41639000" + }, + { + "id": "108885", + "name": "İhsaniye İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "39.03876000", + "longitude": "30.42211000" + }, + { + "id": "108912", + "name": "İscehisar", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.93900000", + "longitude": "30.75002000" + }, + { + "id": "108795", + "name": "Çay", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.59167000", + "longitude": "31.02861000" + }, + { + "id": "108796", + "name": "Çay İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.60078000", + "longitude": "31.03547000" + }, + { + "id": "108841", + "name": "Çobanlar İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.71085000", + "longitude": "30.78874000" + }, + { + "id": "107318", + "name": "Başmakçı", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "37.89722000", + "longitude": "30.01167000" + }, + { + "id": "107319", + "name": "Başmakçı İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "37.90713000", + "longitude": "30.01617000" + }, + { + "id": "107293", + "name": "Bayat", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.98306000", + "longitude": "30.92472000" + }, + { + "id": "107296", + "name": "Bayat İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.99183000", + "longitude": "30.93098000" + }, + { + "id": "107367", + "name": "Bolvadin", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.71111000", + "longitude": "31.04861000" + }, + { + "id": "107368", + "name": "Bolvadin İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.72062000", + "longitude": "31.05433000" + }, + { + "id": "107455", + "name": "Dazkırı", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91861000", + "longitude": "29.86056000" + }, + { + "id": "107456", + "name": "Dazkırı İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "37.92682000", + "longitude": "29.86699000" + }, + { + "id": "107498", + "name": "Dinar", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.06500000", + "longitude": "30.16557000" + }, + { + "id": "107499", + "name": "Dinar İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.07475000", + "longitude": "30.17113000" + }, + { + "id": "107576", + "name": "Emirdağ", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "39.01972000", + "longitude": "31.15000000" + }, + { + "id": "107577", + "name": "Emirdağ İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "39.02810000", + "longitude": "31.15461000" + }, + { + "id": "107612", + "name": "Evciler", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.04139000", + "longitude": "29.88667000" + }, + { + "id": "107613", + "name": "Evciler İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.05207000", + "longitude": "29.89366000" + }, + { + "id": "107831", + "name": "Hocalar", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.57824000", + "longitude": "29.96768000" + }, + { + "id": "107832", + "name": "Hocalar İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.58783000", + "longitude": "29.97162000" + }, + { + "id": "107854", + "name": "Işıklar", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.67101000", + "longitude": "30.74098000" + }, + { + "id": "108120", + "name": "Kızılören", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.25806000", + "longitude": "30.15167000" + }, + { + "id": "108121", + "name": "Kızılören İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.26794000", + "longitude": "30.15750000" + }, + { + "id": "108190", + "name": "Merkez", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.79698000", + "longitude": "30.51951000" + }, + { + "id": "108383", + "name": "Sandıklı", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.46472000", + "longitude": "30.26946000" + }, + { + "id": "108384", + "name": "Sandıklı İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.47344000", + "longitude": "30.27781000" + }, + { + "id": "108468", + "name": "Sinanpaşa", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.74444000", + "longitude": "30.24278000" + }, + { + "id": "108469", + "name": "Sinanpaşa İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.75385000", + "longitude": "30.24662000" + }, + { + "id": "108493", + "name": "Sultandağı", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.53111000", + "longitude": "31.22806000" + }, + { + "id": "108494", + "name": "Sultandağı İlçesi", + "state_id": 2179, + "state_code": "03", + "country_id": 225, + "country_code": "TR", + "latitude": "38.54060000", + "longitude": "31.23508000" + }, + { + "id": "107239", + "name": "Ağaçören", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.87484000", + "longitude": "33.91674000" + }, + { + "id": "107240", + "name": "Ağaçören İlçesi", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.88454000", + "longitude": "33.92421000" + }, + { + "id": "107091", + "name": "Aksaray", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.37255000", + "longitude": "34.02537000" + }, + { + "id": "107606", + "name": "Eskil İlçesi", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.41158000", + "longitude": "33.41994000" + }, + { + "id": "107727", + "name": "Gülağaç İlçesi", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.40641000", + "longitude": "34.35071000" + }, + { + "id": "107761", + "name": "Güzelyurt", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.27722000", + "longitude": "34.37194000" + }, + { + "id": "107762", + "name": "Güzelyurt İlçesi", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.28628000", + "longitude": "34.36190000" + }, + { + "id": "108178", + "name": "Merkez", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.37060000", + "longitude": "34.02843000" + }, + { + "id": "108283", + "name": "Ortaköy", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.73728000", + "longitude": "34.03866000" + }, + { + "id": "108288", + "name": "Ortaköy İlçesi", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.74770000", + "longitude": "34.04351000" + }, + { + "id": "108409", + "name": "Sarıyahşi", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.98349000", + "longitude": "33.84136000" + }, + { + "id": "108410", + "name": "Sarıyahşi İlçesi", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.99292000", + "longitude": "33.84676000" + }, + { + "id": "108496", + "name": "Sultanhanı", + "state_id": 2210, + "state_code": "68", + "country_id": 225, + "country_code": "TR", + "latitude": "38.24710000", + "longitude": "33.54961000" + }, + { + "id": "107157", + "name": "Amasya", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.65333000", + "longitude": "35.83306000" + }, + { + "id": "107457", + "name": "Dedeköy", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.74752000", + "longitude": "35.04249000" + }, + { + "id": "107716", + "name": "Göynücek", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.39917000", + "longitude": "35.52500000" + }, + { + "id": "107717", + "name": "Göynücek İlçesi", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.41008000", + "longitude": "35.53104000" + }, + { + "id": "107737", + "name": "Gümüşhacıköy", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.87306000", + "longitude": "35.21472000" + }, + { + "id": "107738", + "name": "Gümüşhacıköy İlçesi", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88365000", + "longitude": "35.22111000" + }, + { + "id": "107781", + "name": "Hamamözü İlçesi", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.79539000", + "longitude": "35.03367000" + }, + { + "id": "108195", + "name": "Merkez", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.61939000", + "longitude": "35.87016000" + }, + { + "id": "108200", + "name": "Merzifon İlçesi", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88348000", + "longitude": "35.47116000" + }, + { + "id": "108500", + "name": "Suluova", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.83129000", + "longitude": "35.64788000" + }, + { + "id": "108501", + "name": "Suluova İlçesi", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.84202000", + "longitude": "35.65922000" + }, + { + "id": "108554", + "name": "Taşova", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.75972000", + "longitude": "36.32250000" + }, + { + "id": "108555", + "name": "Taşova İlçesi", + "state_id": 2161, + "state_code": "05", + "country_id": 225, + "country_code": "TR", + "latitude": "40.76998000", + "longitude": "36.33092000" + }, + { + "id": "107102", + "name": "Akyurt", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.13512000", + "longitude": "33.08614000" + }, + { + "id": "107103", + "name": "Akyurt İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.14140000", + "longitude": "33.09743000" + }, + { + "id": "107139", + "name": "Altındağ", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.00110000", + "longitude": "32.97022000" + }, + { + "id": "107135", + "name": "Altpınar", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.20417000", + "longitude": "32.74778000" + }, + { + "id": "107166", + "name": "Ankara", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.91987000", + "longitude": "32.85427000" + }, + { + "id": "107217", + "name": "Ayaş", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.01933000", + "longitude": "32.33221000" + }, + { + "id": "107218", + "name": "Ayaş İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.02484000", + "longitude": "32.34089000" + }, + { + "id": "108956", + "name": "Şereflikoçhisar", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "38.93925000", + "longitude": "33.53860000" + }, + { + "id": "108957", + "name": "Şereflikoçhisar İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "38.95450000", + "longitude": "33.54801000" + }, + { + "id": "108768", + "name": "Çamlıdere", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.48958000", + "longitude": "32.47499000" + }, + { + "id": "108769", + "name": "Çamlıdere İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.49994000", + "longitude": "32.47986000" + }, + { + "id": "108779", + "name": "Çankaya", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.91790000", + "longitude": "32.86268000" + }, + { + "id": "108844", + "name": "Çubuk", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.23861000", + "longitude": "33.03222000" + }, + { + "id": "108845", + "name": "Çubuk İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.23985000", + "longitude": "33.04706000" + }, + { + "id": "107268", + "name": "Bala İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.56374000", + "longitude": "33.12962000" + }, + { + "id": "107290", + "name": "Batikent", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.96833000", + "longitude": "32.73083000" + }, + { + "id": "107343", + "name": "Beypazarı", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.16750000", + "longitude": "31.92111000" + }, + { + "id": "107342", + "name": "Beypazari", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.14695000", + "longitude": "31.91911000" + }, + { + "id": "107568", + "name": "Elmadağ", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.92083000", + "longitude": "33.23083000" + }, + { + "id": "107569", + "name": "Elmadağ İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.93117000", + "longitude": "33.23812000" + }, + { + "id": "107611", + "name": "Etimesgut İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.96335000", + "longitude": "32.63744000" + }, + { + "id": "107614", + "name": "Evren", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.02402000", + "longitude": "33.80626000" + }, + { + "id": "107616", + "name": "Evren İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.03001000", + "longitude": "33.79767000" + }, + { + "id": "107687", + "name": "Gölbaşı", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.79043000", + "longitude": "32.80903000" + }, + { + "id": "107725", + "name": "Güdül", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.21051000", + "longitude": "32.24552000" + }, + { + "id": "107726", + "name": "Güdül İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.21954000", + "longitude": "32.24885000" + }, + { + "id": "107811", + "name": "Haymana", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.43212000", + "longitude": "32.49732000" + }, + { + "id": "107812", + "name": "Haymana İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.44015000", + "longitude": "32.48852000" + }, + { + "id": "107868", + "name": "Kahramankazan", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.16502000", + "longitude": "32.63904000" + }, + { + "id": "107874", + "name": "Kalecik", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.09722000", + "longitude": "33.40833000" + }, + { + "id": "107875", + "name": "Kalecik İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.10634000", + "longitude": "33.41973000" + }, + { + "id": "107956", + "name": "Kazan", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.23167000", + "longitude": "32.68389000" + }, + { + "id": "108113", + "name": "Kızılcahamam", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.46972000", + "longitude": "32.65056000" + }, + { + "id": "108114", + "name": "Kızılcahamam İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.48011000", + "longitude": "32.65546000" + }, + { + "id": "107991", + "name": "Keçiören", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.02106000", + "longitude": "32.83102000" + }, + { + "id": "108147", + "name": "Mamak İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.94587000", + "longitude": "32.90811000" + }, + { + "id": "108237", + "name": "Nallıhan", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.18593000", + "longitude": "31.35179000" + }, + { + "id": "108238", + "name": "Nallıhan İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.19436000", + "longitude": "31.36316000" + }, + { + "id": "108346", + "name": "Polatlı", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.57715000", + "longitude": "32.14132000" + }, + { + "id": "108352", + "name": "Pursaklar", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "40.03961000", + "longitude": "32.90139000" + }, + { + "id": "108470", + "name": "Sincan İlçesi", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.95943000", + "longitude": "32.49567000" + }, + { + "id": "108703", + "name": "Yenimahalle", + "state_id": 2217, + "state_code": "06", + "country_id": 225, + "country_code": "TR", + "latitude": "39.99043000", + "longitude": "32.69555000" + }, + { + "id": "107092", + "name": "Akseki", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "37.04861000", + "longitude": "31.79000000" + }, + { + "id": "107093", + "name": "Akseki İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "37.05820000", + "longitude": "31.80153000" + }, + { + "id": "107095", + "name": "Aksu", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.95389000", + "longitude": "30.84778000" + }, + { + "id": "107122", + "name": "Alanya", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.54375000", + "longitude": "31.99982000" + }, + { + "id": "107169", + "name": "Antalya", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.90812000", + "longitude": "30.69556000" + }, + { + "id": "107216", + "name": "Avsallar", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.62448000", + "longitude": "31.76941000" + }, + { + "id": "108877", + "name": "İbradı", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "37.09694000", + "longitude": "31.59917000" + }, + { + "id": "108878", + "name": "İbradı İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "37.10757000", + "longitude": "31.60969000" + }, + { + "id": "107327", + "name": "Belek", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.86278000", + "longitude": "31.05556000" + }, + { + "id": "107336", + "name": "Beykonak", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.32573000", + "longitude": "30.30302000" + }, + { + "id": "107396", + "name": "Boğazkent", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.85319000", + "longitude": "31.16388000" + }, + { + "id": "107541", + "name": "Döşemealtı İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "37.02366000", + "longitude": "30.59040000" + }, + { + "id": "107467", + "name": "Demre", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.24444000", + "longitude": "29.98500000" + }, + { + "id": "107468", + "name": "Demre İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.25510000", + "longitude": "29.99788000" + }, + { + "id": "107557", + "name": "Eksere", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.81339000", + "longitude": "31.99971000" + }, + { + "id": "107570", + "name": "Elmalı", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.73583000", + "longitude": "29.91775000" + }, + { + "id": "107571", + "name": "Elmalı İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.74641000", + "longitude": "29.92324000" + }, + { + "id": "107617", + "name": "Evrenseki", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.83868000", + "longitude": "31.35559000" + }, + { + "id": "107641", + "name": "Finike", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.42355000", + "longitude": "30.06645000" + }, + { + "id": "107648", + "name": "Gazipaşa", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.26942000", + "longitude": "32.31792000" + }, + { + "id": "107649", + "name": "Gazipaşa İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.28012000", + "longitude": "32.30570000" + }, + { + "id": "107718", + "name": "Göynük", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.66000000", + "longitude": "30.55000000" + }, + { + "id": "107740", + "name": "Gündoğmuş İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.82446000", + "longitude": "32.00679000" + }, + { + "id": "107962", + "name": "Kaş", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.20176000", + "longitude": "29.63766000" + }, + { + "id": "107963", + "name": "Kaş İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.21207000", + "longitude": "29.65605000" + }, + { + "id": "107876", + "name": "Kalkan", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.26510000", + "longitude": "29.41369000" + }, + { + "id": "108112", + "name": "Kızılağaç", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.73055000", + "longitude": "31.53517000" + }, + { + "id": "107978", + "name": "Kemer", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.59778000", + "longitude": "30.56056000" + }, + { + "id": "107979", + "name": "Kemer İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.60249000", + "longitude": "30.48039000" + }, + { + "id": "107981", + "name": "Kepez İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "37.01187000", + "longitude": "30.75966000" + }, + { + "id": "108017", + "name": "Konyaaltı", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.86424000", + "longitude": "30.62714000" + }, + { + "id": "108024", + "name": "Korkuteli", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "37.06498000", + "longitude": "30.19565000" + }, + { + "id": "108025", + "name": "Korkuteli İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "37.07581000", + "longitude": "30.20293000" + }, + { + "id": "108048", + "name": "Kumköy", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.88286000", + "longitude": "30.95178000" + }, + { + "id": "108051", + "name": "Kumluca", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.58000000", + "longitude": "30.30000000" + }, + { + "id": "108139", + "name": "Mahmutlar", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.49463000", + "longitude": "32.09085000" + }, + { + "id": "108148", + "name": "Manavgat", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.78667000", + "longitude": "31.44306000" + }, + { + "id": "108149", + "name": "Manavgat İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.79008000", + "longitude": "31.46286000" + }, + { + "id": "108224", + "name": "Muratpaşa", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.89157000", + "longitude": "30.76498000" + }, + { + "id": "108225", + "name": "Muratpaşa İlçesi", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.87907000", + "longitude": "30.76859000" + }, + { + "id": "108263", + "name": "Okurcalar", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.64876000", + "longitude": "31.70387000" + }, + { + "id": "108319", + "name": "Payallar", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.60160000", + "longitude": "31.85057000" + }, + { + "id": "108441", + "name": "Serik", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "37.07743000", + "longitude": "31.00677000" + }, + { + "id": "108456", + "name": "Side", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.76667000", + "longitude": "31.38889000" + }, + { + "id": "108614", + "name": "Türkler", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.60198000", + "longitude": "31.82067000" + }, + { + "id": "108560", + "name": "Tekirova", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.50170000", + "longitude": "30.52723000" + }, + { + "id": "108605", + "name": "Turunçova", + "state_id": 2169, + "state_code": "07", + "country_id": 225, + "country_code": "TR", + "latitude": "36.36889000", + "longitude": "30.13750000" + }, + { + "id": "107179", + "name": "Ardahan", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "41.10871000", + "longitude": "42.70222000" + }, + { + "id": "108853", + "name": "Çıldır İlçesi", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "41.13783000", + "longitude": "43.14169000" + }, + { + "id": "107444", + "name": "Damal", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "41.34145000", + "longitude": "42.83680000" + }, + { + "id": "107445", + "name": "Damal İlçesi", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "41.35010000", + "longitude": "42.84582000" + }, + { + "id": "107692", + "name": "Göle", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "40.78746000", + "longitude": "42.60603000" + }, + { + "id": "107693", + "name": "Göle İlçesi", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "40.79404000", + "longitude": "42.60993000" + }, + { + "id": "107788", + "name": "Hanak", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "41.23344000", + "longitude": "42.84037000" + }, + { + "id": "107789", + "name": "Hanak İlçesi", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "41.24365000", + "longitude": "42.85189000" + }, + { + "id": "108347", + "name": "Posof", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "41.51111000", + "longitude": "42.72917000" + }, + { + "id": "108348", + "name": "Posof İlçesi", + "state_id": 2185, + "state_code": "75", + "country_id": 225, + "country_code": "TR", + "latitude": "41.52131000", + "longitude": "42.73126000" + }, + { + "id": "107180", + "name": "Ardanuç", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.12738000", + "longitude": "42.06292000" + }, + { + "id": "107181", + "name": "Ardanuç İlçesi", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.13782000", + "longitude": "42.06668000" + }, + { + "id": "107184", + "name": "Arhavi", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.35121000", + "longitude": "41.30456000" + }, + { + "id": "107185", + "name": "Arhavi İlçesi", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.34829000", + "longitude": "41.31950000" + }, + { + "id": "107196", + "name": "Artvin", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.18161000", + "longitude": "41.82172000" + }, + { + "id": "108940", + "name": "Şavşat", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.24027000", + "longitude": "42.36109000" + }, + { + "id": "108941", + "name": "Şavşat İlçesi", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.24941000", + "longitude": "42.36936000" + }, + { + "id": "107371", + "name": "Borçka", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.35792000", + "longitude": "41.66579000" + }, + { + "id": "107372", + "name": "Borçka İlçesi", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.35940000", + "longitude": "41.67631000" + }, + { + "id": "107834", + "name": "Hopa", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.39046000", + "longitude": "41.41966000" + }, + { + "id": "107835", + "name": "Hopa İlçesi", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.40128000", + "longitude": "41.44798000" + }, + { + "id": "107975", + "name": "Kemalpaşa", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.48336000", + "longitude": "41.52750000" + }, + { + "id": "108226", + "name": "Murgul", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.27937000", + "longitude": "41.55514000" + }, + { + "id": "108227", + "name": "Murgul İlçesi", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.27934000", + "longitude": "41.56288000" + }, + { + "id": "108455", + "name": "Seyitler", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "41.19484000", + "longitude": "41.83696000" + }, + { + "id": "108741", + "name": "Yusufeli", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "40.82042000", + "longitude": "41.53743000" + }, + { + "id": "108742", + "name": "Yusufeli İlçesi", + "state_id": 2191, + "state_code": "08", + "country_id": 225, + "country_code": "TR", + "latitude": "40.82024000", + "longitude": "41.54234000" + }, + { + "id": "107054", + "name": "Acarlar", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.82444000", + "longitude": "27.74667000" + }, + { + "id": "107210", + "name": "Atça", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.88859000", + "longitude": "28.21528000" + }, + { + "id": "107220", + "name": "Aydın", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.84501000", + "longitude": "27.83963000" + }, + { + "id": "108897", + "name": "İncirliova", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.85222000", + "longitude": "27.72361000" + }, + { + "id": "108898", + "name": "İncirliova İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.86237000", + "longitude": "27.72976000" + }, + { + "id": "108911", + "name": "İsabeyli", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.90147000", + "longitude": "28.26475000" + }, + { + "id": "108834", + "name": "Çine", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.61266000", + "longitude": "28.05912000" + }, + { + "id": "108835", + "name": "Çine İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.62269000", + "longitude": "28.06786000" + }, + { + "id": "107381", + "name": "Bozdoğan", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.67134000", + "longitude": "28.31395000" + }, + { + "id": "107382", + "name": "Bozdoğan İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.68064000", + "longitude": "28.33051000" + }, + { + "id": "107402", + "name": "Buharkent", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96397000", + "longitude": "28.74270000" + }, + { + "id": "107403", + "name": "Buharkent İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.97398000", + "longitude": "28.75152000" + }, + { + "id": "107441", + "name": "Dalama", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.79028000", + "longitude": "28.06639000" + }, + { + "id": "107454", + "name": "Davutlar", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.73392000", + "longitude": "27.29283000" + }, + { + "id": "107493", + "name": "Didim", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.39305000", + "longitude": "27.29357000" + }, + { + "id": "107553", + "name": "Efeler", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.83835000", + "longitude": "27.84557000" + }, + { + "id": "107668", + "name": "Germencik", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.87056000", + "longitude": "27.60283000" + }, + { + "id": "107669", + "name": "Germencik İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.88049000", + "longitude": "27.61054000" + }, + { + "id": "107893", + "name": "Karacasu", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.74731000", + "longitude": "28.59402000" + }, + { + "id": "107929", + "name": "Karpuzlu", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.55861000", + "longitude": "27.83528000" + }, + { + "id": "107930", + "name": "Karpuzlu İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.56879000", + "longitude": "27.84071000" + }, + { + "id": "108084", + "name": "Köşk", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.85333000", + "longitude": "28.05167000" + }, + { + "id": "108085", + "name": "Köşk İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.86340000", + "longitude": "28.05649000" + }, + { + "id": "108036", + "name": "Koçarlı", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.76113000", + "longitude": "27.70583000" + }, + { + "id": "108037", + "name": "Koçarlı İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.77146000", + "longitude": "27.71144000" + }, + { + "id": "108067", + "name": "Kuşadası", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.86014000", + "longitude": "27.25713000" + }, + { + "id": "108068", + "name": "Kuşadası İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.84987000", + "longitude": "27.26966000" + }, + { + "id": "108063", + "name": "Kuyucak", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91330000", + "longitude": "28.45917000" + }, + { + "id": "108064", + "name": "Kuyucak İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.92335000", + "longitude": "28.46426000" + }, + { + "id": "108243", + "name": "Nazilli", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.93570000", + "longitude": "28.30609000" + }, + { + "id": "108404", + "name": "Sarıkemer", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.56609000", + "longitude": "27.36430000" + }, + { + "id": "108515", + "name": "Söke", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.74820000", + "longitude": "27.40614000" + }, + { + "id": "108516", + "name": "Söke İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.75864000", + "longitude": "27.41319000" + }, + { + "id": "108497", + "name": "Sultanhisar", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.88989000", + "longitude": "28.15436000" + }, + { + "id": "108498", + "name": "Sultanhisar İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.89966000", + "longitude": "28.17414000" + }, + { + "id": "108567", + "name": "Tepecik", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.82358000", + "longitude": "27.87496000" + }, + { + "id": "108704", + "name": "Yenipazar", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.82332000", + "longitude": "28.19573000" + }, + { + "id": "108707", + "name": "Yenipazar İlçesi", + "state_id": 2187, + "state_code": "09", + "country_id": 225, + "country_code": "TR", + "latitude": "37.83325000", + "longitude": "28.18442000" + }, + { + "id": "107247", + "name": "Aşağı Beğdeş", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.81472000", + "longitude": "38.91917000" + }, + { + "id": "107107", + "name": "Akçakale", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.71111000", + "longitude": "38.94750000" + }, + { + "id": "107108", + "name": "Akçakale İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.76139000", + "longitude": "38.96944000" + }, + { + "id": "107081", + "name": "Akdiken", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.72500000", + "longitude": "39.30861000" + }, + { + "id": "108932", + "name": "Şanlıurfa", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.16708000", + "longitude": "38.79392000" + }, + { + "id": "108865", + "name": "Öncül", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.71222000", + "longitude": "39.02917000" + }, + { + "id": "107359", + "name": "Birecik", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.02577000", + "longitude": "37.97841000" + }, + { + "id": "107360", + "name": "Birecik İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.03387000", + "longitude": "37.99658000" + }, + { + "id": "107388", + "name": "Bozova", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.36250000", + "longitude": "38.52667000" + }, + { + "id": "107389", + "name": "Bozova İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.37074000", + "longitude": "38.53343000" + }, + { + "id": "107410", + "name": "Bulutlu", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.73583000", + "longitude": "39.39389000" + }, + { + "id": "107428", + "name": "Ceylanpınar", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.84722000", + "longitude": "40.05000000" + }, + { + "id": "107429", + "name": "Ceylanpınar İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.91944000", + "longitude": "39.90500000" + }, + { + "id": "107511", + "name": "Dorumali", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.80500000", + "longitude": "38.85306000" + }, + { + "id": "107621", + "name": "Eyyübiye", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.21434000", + "longitude": "38.79358000" + }, + { + "id": "107741", + "name": "Güneren", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.73417000", + "longitude": "39.08861000" + }, + { + "id": "107775", + "name": "Halfeti", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.24529000", + "longitude": "37.86874000" + }, + { + "id": "107776", + "name": "Halfeti İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.25397000", + "longitude": "37.87940000" + }, + { + "id": "107777", + "name": "Haliliye", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.14144000", + "longitude": "38.79599000" + }, + { + "id": "107792", + "name": "Hanköy", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.95081000", + "longitude": "40.19855000" + }, + { + "id": "107796", + "name": "Harran", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.86000000", + "longitude": "39.03139000" + }, + { + "id": "107797", + "name": "Harran İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.84306000", + "longitude": "39.21833000" + }, + { + "id": "107825", + "name": "Hilvan", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.58687000", + "longitude": "38.95505000" + }, + { + "id": "107826", + "name": "Hilvan İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.59383000", + "longitude": "38.96000000" + }, + { + "id": "107853", + "name": "Işıklar", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.99417000", + "longitude": "40.12639000" + }, + { + "id": "107903", + "name": "Karaköprü", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.18029000", + "longitude": "38.81109000" + }, + { + "id": "108093", + "name": "Küçükkendirci", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.90583000", + "longitude": "38.34611000" + }, + { + "id": "108031", + "name": "Koyunluca", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.82278000", + "longitude": "39.34333000" + }, + { + "id": "108166", + "name": "Mağaralı", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.96889000", + "longitude": "38.07444000" + }, + { + "id": "108203", + "name": "Meydankapı", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.78278000", + "longitude": "39.15833000" + }, + { + "id": "108214", + "name": "Minare", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.93083000", + "longitude": "39.00444000" + }, + { + "id": "108222", + "name": "Muratlı", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.96167000", + "longitude": "40.10056000" + }, + { + "id": "108335", + "name": "Pekmezli", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.75361000", + "longitude": "39.45000000" + }, + { + "id": "108425", + "name": "Seksenören", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.97252000", + "longitude": "39.07484000" + }, + { + "id": "108476", + "name": "Siverek", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.75503000", + "longitude": "39.31667000" + }, + { + "id": "108477", + "name": "Siverek İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.76186000", + "longitude": "39.32024000" + }, + { + "id": "108507", + "name": "Suruç", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.97612000", + "longitude": "38.42533000" + }, + { + "id": "108508", + "name": "Suruç İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.97681000", + "longitude": "38.42620000" + }, + { + "id": "108653", + "name": "Viranşehir", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.22349000", + "longitude": "39.75519000" + }, + { + "id": "108654", + "name": "Viranşehir İlçesi", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "37.23103000", + "longitude": "39.76247000" + }, + { + "id": "108736", + "name": "Yukarı Taşyalak", + "state_id": 2183, + "state_code": "63", + "country_id": 225, + "country_code": "TR", + "latitude": "36.96306000", + "longitude": "40.13194000" + }, + { + "id": "107163", + "name": "Andaç", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.35500000", + "longitude": "43.26395000" + }, + { + "id": "108966", + "name": "Şırnak", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.51393000", + "longitude": "42.45432000" + }, + { + "id": "108967", + "name": "Şırnak İlçesi", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.53278000", + "longitude": "42.38917000" + }, + { + "id": "108952", + "name": "Şenoba", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.46436000", + "longitude": "42.72248000" + }, + { + "id": "108879", + "name": "İdil", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.33481000", + "longitude": "41.88944000" + }, + { + "id": "108880", + "name": "İdil İlçesi", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.34178000", + "longitude": "41.88824000" + }, + { + "id": "108763", + "name": "Çalışkan", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.29751000", + "longitude": "42.64226000" + }, + { + "id": "108782", + "name": "Çardaklı", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.23098000", + "longitude": "42.58409000" + }, + { + "id": "107313", + "name": "Başaran", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.47655000", + "longitude": "43.12984000" + }, + { + "id": "107310", + "name": "Bağlıca", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.43333000", + "longitude": "42.77417000" + }, + { + "id": "107270", + "name": "Ballı", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.41333000", + "longitude": "42.83944000" + }, + { + "id": "107272", + "name": "Balveren", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.48357000", + "longitude": "42.54834000" + }, + { + "id": "107285", + "name": "Baraniferho", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.46957000", + "longitude": "41.90593000" + }, + { + "id": "107324", + "name": "Becuh", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.39141000", + "longitude": "42.99018000" + }, + { + "id": "107344", + "name": "Beytüşşebap", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.57144000", + "longitude": "43.16515000" + }, + { + "id": "107361", + "name": "Bisbin", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.33929000", + "longitude": "42.56945000" + }, + { + "id": "107398", + "name": "Boğazören", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.52775000", + "longitude": "43.00778000" + }, + { + "id": "107373", + "name": "Bostancı", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.17778000", + "longitude": "42.32906000" + }, + { + "id": "107377", + "name": "Bozalan", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.32874000", + "longitude": "42.26366000" + }, + { + "id": "107436", + "name": "Cizre", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.33024000", + "longitude": "42.18484000" + }, + { + "id": "107437", + "name": "Cizre İlçesi", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.32785000", + "longitude": "42.18721000" + }, + { + "id": "107546", + "name": "Düzova", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.35413000", + "longitude": "42.08837000" + }, + { + "id": "107490", + "name": "Dicle", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.28869000", + "longitude": "42.06721000" + }, + { + "id": "107510", + "name": "Doruklu", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.25550000", + "longitude": "42.33518000" + }, + { + "id": "107763", + "name": "Güçlükonak İlçesi", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.47133000", + "longitude": "41.91298000" + }, + { + "id": "107676", + "name": "Girikbedro", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.18028000", + "longitude": "42.42111000" + }, + { + "id": "107824", + "name": "Hilal", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.47528000", + "longitude": "42.78583000" + }, + { + "id": "108117", + "name": "Kızılsu", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.45402000", + "longitude": "42.19639000" + }, + { + "id": "108054", + "name": "Kumçatı", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.46594000", + "longitude": "42.28791000" + }, + { + "id": "108205", + "name": "Mezraa", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.66257000", + "longitude": "43.18885000" + }, + { + "id": "108278", + "name": "Ortabağ", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.39671000", + "longitude": "42.91010000" + }, + { + "id": "108284", + "name": "Ortaköy", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.32745000", + "longitude": "43.28403000" + }, + { + "id": "108356", + "name": "Pınarbaşı", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.21368000", + "longitude": "41.88689000" + }, + { + "id": "108364", + "name": "Razvaliny Ayinvan", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.27983000", + "longitude": "42.33427000" + }, + { + "id": "108461", + "name": "Silopi", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.24379000", + "longitude": "42.46345000" + }, + { + "id": "108462", + "name": "Silopi İlçesi", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.24978000", + "longitude": "42.47173000" + }, + { + "id": "108489", + "name": "Sulak", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.41342000", + "longitude": "41.96114000" + }, + { + "id": "108575", + "name": "Tililan", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.37428000", + "longitude": "42.03386000" + }, + { + "id": "108626", + "name": "Uludere", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.44074000", + "longitude": "42.85236000" + }, + { + "id": "108627", + "name": "Uludere İlçesi", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.44615000", + "longitude": "42.85222000" + }, + { + "id": "108638", + "name": "Uzungeçit", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.49052000", + "longitude": "42.99036000" + }, + { + "id": "108690", + "name": "Yemişli", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.36710000", + "longitude": "43.07717000" + }, + { + "id": "108701", + "name": "Yeniköy", + "state_id": 2225, + "state_code": "73", + "country_id": 225, + "country_code": "TR", + "latitude": "37.27074000", + "longitude": "42.42472000" + }, + { + "id": "107127", + "name": "Alaçatı", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.28246000", + "longitude": "26.37459000" + }, + { + "id": "107130", + "name": "Aliağa", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.80078000", + "longitude": "27.04375000" + }, + { + "id": "108923", + "name": "İzmir", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.41273000", + "longitude": "27.13838000" + }, + { + "id": "108860", + "name": "Ödemiş", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.22780000", + "longitude": "27.96955000" + }, + { + "id": "108861", + "name": "Ödemiş İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.23819000", + "longitude": "27.98010000" + }, + { + "id": "108869", + "name": "Özdere", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.01611000", + "longitude": "27.12806000" + }, + { + "id": "108777", + "name": "Çandarlı", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.93503000", + "longitude": "26.93400000" + }, + { + "id": "108803", + "name": "Çaylı", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.15330000", + "longitude": "28.14406000" + }, + { + "id": "108825", + "name": "Çeşme", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.32614000", + "longitude": "26.30574000" + }, + { + "id": "108826", + "name": "Çeşme İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.31658000", + "longitude": "26.32101000" + }, + { + "id": "108840", + "name": "Çiğli", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.48802000", + "longitude": "26.96596000" + }, + { + "id": "107256", + "name": "Bademli", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.08167000", + "longitude": "28.05778000" + }, + { + "id": "107275", + "name": "Balçova", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.37302000", + "longitude": "27.08714000" + }, + { + "id": "107305", + "name": "Bayındır", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.21741000", + "longitude": "27.64744000" + }, + { + "id": "107306", + "name": "Bayındır İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.22700000", + "longitude": "27.65522000" + }, + { + "id": "107300", + "name": "Bayraklı", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.46222000", + "longitude": "27.16667000" + }, + { + "id": "107330", + "name": "Belevi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.01500000", + "longitude": "27.45028000" + }, + { + "id": "107331", + "name": "Bergama", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "39.17088000", + "longitude": "27.18918000" + }, + { + "id": "107335", + "name": "Beydağ", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.08241000", + "longitude": "28.21609000" + }, + { + "id": "107370", + "name": "Bornova", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.48492000", + "longitude": "27.25235000" + }, + { + "id": "107399", + "name": "Buca", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.34813000", + "longitude": "27.25053000" + }, + { + "id": "107495", + "name": "Dikili", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "39.07100000", + "longitude": "26.89017000" + }, + { + "id": "107496", + "name": "Dikili İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "39.07840000", + "longitude": "26.90689000" + }, + { + "id": "107642", + "name": "Foça", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.67030000", + "longitude": "26.75656000" + }, + { + "id": "107643", + "name": "Foça İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.67849000", + "longitude": "26.77214000" + }, + { + "id": "107646", + "name": "Gaziemir", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.31098000", + "longitude": "27.15178000" + }, + { + "id": "107686", + "name": "Gökçen", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.11367000", + "longitude": "27.87144000" + }, + { + "id": "107760", + "name": "Güzelbahçe", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.37046000", + "longitude": "26.86930000" + }, + { + "id": "107886", + "name": "Karabağlar", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.36912000", + "longitude": "27.12696000" + }, + { + "id": "107887", + "name": "Karaburun", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.63640000", + "longitude": "26.51094000" + }, + { + "id": "107888", + "name": "Karaburun İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.63546000", + "longitude": "26.49645000" + }, + { + "id": "107937", + "name": "Karşıyaka İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.46775000", + "longitude": "27.11502000" + }, + { + "id": "107949", + "name": "Kaymakçı", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.16778000", + "longitude": "28.11528000" + }, + { + "id": "108101", + "name": "Kınık", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "39.08722000", + "longitude": "27.38333000" + }, + { + "id": "108102", + "name": "Kınık İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "39.09692000", + "longitude": "27.38829000" + }, + { + "id": "107976", + "name": "Kemalpaşa", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.40883000", + "longitude": "27.49100000" + }, + { + "id": "107999", + "name": "Kiraz", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.23056000", + "longitude": "28.20444000" + }, + { + "id": "108000", + "name": "Kiraz İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.24086000", + "longitude": "28.21380000" + }, + { + "id": "108013", + "name": "Konak", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.41448000", + "longitude": "27.14412000" + }, + { + "id": "108014", + "name": "Konaklı", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.11278000", + "longitude": "27.99611000" + }, + { + "id": "108170", + "name": "Menderes", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.24963000", + "longitude": "27.13429000" + }, + { + "id": "108171", + "name": "Menemen", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.61608000", + "longitude": "27.06315000" + }, + { + "id": "108240", + "name": "Narlıdere", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.38957000", + "longitude": "27.02431000" + }, + { + "id": "108423", + "name": "Seferihisar", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.18144000", + "longitude": "26.88877000" + }, + { + "id": "108434", + "name": "Selçuk", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95137000", + "longitude": "27.36849000" + }, + { + "id": "108435", + "name": "Selçuk İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95765000", + "longitude": "27.38072000" + }, + { + "id": "108578", + "name": "Tire", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.06582000", + "longitude": "27.72730000" + }, + { + "id": "108587", + "name": "Torbalı", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.17603000", + "longitude": "27.37182000" + }, + { + "id": "108633", + "name": "Urla", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.32292000", + "longitude": "26.76403000" + }, + { + "id": "108634", + "name": "Urla İlçesi", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.33256000", + "longitude": "26.76883000" + }, + { + "id": "108711", + "name": "Yenişakran", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.88639000", + "longitude": "27.06694000" + }, + { + "id": "108699", + "name": "Yenifoça", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.73333000", + "longitude": "26.83333000" + }, + { + "id": "108751", + "name": "Zeytindağ", + "state_id": 2205, + "state_code": "35", + "country_id": 225, + "country_code": "TR", + "latitude": "38.96722000", + "longitude": "27.07222000" + }, + { + "id": "107229", + "name": "Ayvacık", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.60111000", + "longitude": "26.40472000" + }, + { + "id": "107232", + "name": "Ayvacık İlçesi", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.61192000", + "longitude": "26.42314000" + }, + { + "id": "108773", + "name": "Çan", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.03328000", + "longitude": "27.05236000" + }, + { + "id": "108774", + "name": "Çan İlçesi", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.04404000", + "longitude": "27.06645000" + }, + { + "id": "108775", + "name": "Çanakkale", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.15552000", + "longitude": "26.41271000" + }, + { + "id": "107301", + "name": "Bayramiç İlçesi", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.81951000", + "longitude": "26.62490000" + }, + { + "id": "107325", + "name": "Behram", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.49344000", + "longitude": "26.33316000" + }, + { + "id": "107353", + "name": "Biga", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.26921000", + "longitude": "27.20841000" + }, + { + "id": "107380", + "name": "Bozcaada", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.82409000", + "longitude": "26.04069000" + }, + { + "id": "107548", + "name": "Eceabat", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.18416000", + "longitude": "26.35740000" + }, + { + "id": "107623", + "name": "Ezine", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.78561000", + "longitude": "26.34083000" + }, + { + "id": "107624", + "name": "Ezine İlçesi", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.79679000", + "longitude": "26.35702000" + }, + { + "id": "107683", + "name": "Gökçeada", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.16523000", + "longitude": "25.85907000" + }, + { + "id": "107655", + "name": "Gelibolu", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.41028000", + "longitude": "26.67083000" + }, + { + "id": "107656", + "name": "Gelibolu İlçesi", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.45567000", + "longitude": "26.64442000" + }, + { + "id": "107672", + "name": "Geyikli", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.80472000", + "longitude": "26.20750000" + }, + { + "id": "107782", + "name": "Hamdibey", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.84944000", + "longitude": "27.24806000" + }, + { + "id": "107878", + "name": "Kalkım", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.81167000", + "longitude": "27.21500000" + }, + { + "id": "108127", + "name": "Lapseki", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.34417000", + "longitude": "26.68556000" + }, + { + "id": "108135", + "name": "Lâpseki İlçesi", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.35280000", + "longitude": "26.70657000" + }, + { + "id": "108193", + "name": "Merkez", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "40.05093000", + "longitude": "26.49489000" + }, + { + "id": "108691", + "name": "Yenice", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.93083000", + "longitude": "27.25806000" + }, + { + "id": "108695", + "name": "Yenice İlçesi", + "state_id": 2216, + "state_code": "17", + "country_id": 225, + "country_code": "TR", + "latitude": "39.94217000", + "longitude": "27.26532000" + }, + { + "id": "107208", + "name": "Atkaracalar", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.81593000", + "longitude": "33.07556000" + }, + { + "id": "107209", + "name": "Atkaracalar İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.82560000", + "longitude": "33.08202000" + }, + { + "id": "108928", + "name": "Şabanözü", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.48333000", + "longitude": "33.28333000" + }, + { + "id": "108820", + "name": "Çerkeş", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.81164000", + "longitude": "32.89358000" + }, + { + "id": "108821", + "name": "Çerkeş İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.82165000", + "longitude": "32.90005000" + }, + { + "id": "107303", + "name": "Bayramören", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94329000", + "longitude": "33.20300000" + }, + { + "id": "107304", + "name": "Bayramören İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.95121000", + "longitude": "33.20992000" + }, + { + "id": "107564", + "name": "Eldivan", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.52975000", + "longitude": "33.49903000" + }, + { + "id": "107565", + "name": "Eldivan İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.53921000", + "longitude": "33.50574000" + }, + { + "id": "107844", + "name": "Ilgaz", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.92511000", + "longitude": "33.62586000" + }, + { + "id": "107845", + "name": "Ilgaz İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.93351000", + "longitude": "33.61542000" + }, + { + "id": "108122", + "name": "Kızılırmak", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.34556000", + "longitude": "33.98639000" + }, + { + "id": "108123", + "name": "Kızılırmak İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.35504000", + "longitude": "33.99317000" + }, + { + "id": "107995", + "name": "Khanjarah", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.59995000", + "longitude": "33.61530000" + }, + { + "id": "108020", + "name": "Korgun", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.73479000", + "longitude": "33.51844000" + }, + { + "id": "108021", + "name": "Korgun İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.74560000", + "longitude": "33.52411000" + }, + { + "id": "108060", + "name": "Kurşunlu", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.84101000", + "longitude": "33.26028000" + }, + { + "id": "108061", + "name": "Kurşunlu İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.84739000", + "longitude": "33.27350000" + }, + { + "id": "108276", + "name": "Orta", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.62420000", + "longitude": "33.10928000" + }, + { + "id": "108277", + "name": "Orta İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.63413000", + "longitude": "33.11458000" + }, + { + "id": "108673", + "name": "Yapraklı", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.75785000", + "longitude": "33.77819000" + }, + { + "id": "108674", + "name": "Yapraklı İlçesi", + "state_id": 2168, + "state_code": "18", + "country_id": 225, + "country_code": "TR", + "latitude": "40.76858000", + "longitude": "33.78379000" + }, + { + "id": "107117", + "name": "Alaca", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.16833000", + "longitude": "34.84250000" + }, + { + "id": "107118", + "name": "Alaca İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.17835000", + "longitude": "34.84968000" + }, + { + "id": "108915", + "name": "İskilip", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.73528000", + "longitude": "34.47389000" + }, + { + "id": "108916", + "name": "İskilip İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.74363000", + "longitude": "34.47911000" + }, + { + "id": "108843", + "name": "Çorum", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.54889000", + "longitude": "34.95333000" + }, + { + "id": "107294", + "name": "Bayat", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.64583000", + "longitude": "34.26139000" + }, + { + "id": "107295", + "name": "Bayat İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.65590000", + "longitude": "34.26433000" + }, + { + "id": "107395", + "name": "Boğazkale İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.03031000", + "longitude": "34.61745000" + }, + { + "id": "107506", + "name": "Dodurga", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.85489000", + "longitude": "34.80703000" + }, + { + "id": "107507", + "name": "Dodurga İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.86324000", + "longitude": "34.81455000" + }, + { + "id": "107924", + "name": "Kargı İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "41.14377000", + "longitude": "34.49342000" + }, + { + "id": "108128", + "name": "Laçin", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77486000", + "longitude": "34.88068000" + }, + { + "id": "108129", + "name": "Laçin İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77792000", + "longitude": "34.90625000" + }, + { + "id": "108167", + "name": "Mecitözü", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.52000000", + "longitude": "35.29528000" + }, + { + "id": "108168", + "name": "Mecitözü İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.52774000", + "longitude": "35.28770000" + }, + { + "id": "108185", + "name": "Merkez", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.50905000", + "longitude": "34.85791000" + }, + { + "id": "108305", + "name": "Oğuzlar İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.76323000", + "longitude": "34.70813000" + }, + { + "id": "108286", + "name": "Ortaköy", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.27352000", + "longitude": "35.25175000" + }, + { + "id": "108289", + "name": "Ortaköy İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.28295000", + "longitude": "35.25879000" + }, + { + "id": "108290", + "name": "Osmancık", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "41.00240000", + "longitude": "34.78243000" + }, + { + "id": "108505", + "name": "Sungurlu", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.18213000", + "longitude": "34.28217000" + }, + { + "id": "108642", + "name": "Uğurludağ", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.44631000", + "longitude": "34.45259000" + }, + { + "id": "108643", + "name": "Uğurludağ İlçesi", + "state_id": 2173, + "state_code": "19", + "country_id": 225, + "country_code": "TR", + "latitude": "40.45567000", + "longitude": "34.45627000" + }, + { + "id": "107138", + "name": "Altıeylül İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.64099000", + "longitude": "27.88639000" + }, + { + "id": "107143", + "name": "Altınoluk", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.57944000", + "longitude": "26.73722000" + }, + { + "id": "107233", + "name": "Ayvalık", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.31927000", + "longitude": "26.69341000" + }, + { + "id": "107234", + "name": "Ayvalık İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.32308000", + "longitude": "26.71156000" + }, + { + "id": "108920", + "name": "İvrindi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.58389000", + "longitude": "27.48639000" + }, + { + "id": "108921", + "name": "İvrindi İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.59319000", + "longitude": "27.49590000" + }, + { + "id": "107277", + "name": "Balıkesir", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.64917000", + "longitude": "27.88611000" + }, + { + "id": "107273", + "name": "Balya", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.74861000", + "longitude": "27.57889000" + }, + { + "id": "107274", + "name": "Balya İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.75910000", + "longitude": "27.58631000" + }, + { + "id": "107283", + "name": "Bandırma", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.35222000", + "longitude": "27.97667000" + }, + { + "id": "107284", + "name": "Bandırma İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.27282000", + "longitude": "27.96380000" + }, + { + "id": "107354", + "name": "Bigadiç", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.39250000", + "longitude": "28.13111000" + }, + { + "id": "107355", + "name": "Bigadiç İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.40249000", + "longitude": "28.13837000" + }, + { + "id": "107412", + "name": "Burhaniye", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.50041000", + "longitude": "26.97269000" + }, + { + "id": "107413", + "name": "Burhaniye İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.51095000", + "longitude": "26.97863000" + }, + { + "id": "107532", + "name": "Dursunbey", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.58596000", + "longitude": "28.62568000" + }, + { + "id": "107533", + "name": "Dursunbey İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.52907000", + "longitude": "28.65306000" + }, + { + "id": "107550", + "name": "Edremit", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.59611000", + "longitude": "27.02444000" + }, + { + "id": "107552", + "name": "Edremit İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.60523000", + "longitude": "27.03208000" + }, + { + "id": "107584", + "name": "Erdek", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.39960000", + "longitude": "27.79348000" + }, + { + "id": "107585", + "name": "Erdek İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.40924000", + "longitude": "27.80280000" + }, + { + "id": "107705", + "name": "Gömeç", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.39016000", + "longitude": "26.84127000" + }, + { + "id": "107706", + "name": "Gömeç İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.39981000", + "longitude": "26.85110000" + }, + { + "id": "107708", + "name": "Gönen", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.10490000", + "longitude": "27.65399000" + }, + { + "id": "107709", + "name": "Gönen İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.11452000", + "longitude": "27.67026000" + }, + { + "id": "107806", + "name": "Havran", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.55833000", + "longitude": "27.09833000" + }, + { + "id": "107982", + "name": "Kepsut", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.68889000", + "longitude": "28.15222000" + }, + { + "id": "107983", + "name": "Kepsut İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.69819000", + "longitude": "28.16237000" + }, + { + "id": "108151", + "name": "Manyas", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.04639000", + "longitude": "27.97000000" + }, + { + "id": "108152", + "name": "Manyas İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.05561000", + "longitude": "27.97829000" + }, + { + "id": "108155", + "name": "Marmara", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.58633000", + "longitude": "27.55541000" + }, + { + "id": "108158", + "name": "Marmara İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "40.58750000", + "longitude": "27.55528000" + }, + { + "id": "108417", + "name": "Savaştepe", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.38319000", + "longitude": "27.65612000" + }, + { + "id": "108418", + "name": "Savaştepe İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.39260000", + "longitude": "27.66367000" + }, + { + "id": "108527", + "name": "Sındırgı", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.24128000", + "longitude": "28.17842000" + }, + { + "id": "108528", + "name": "Sındırgı İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.25061000", + "longitude": "28.18647000" + }, + { + "id": "108509", + "name": "Susurluk", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.91361000", + "longitude": "28.15778000" + }, + { + "id": "108510", + "name": "Susurluk İlçesi", + "state_id": 2175, + "state_code": "10", + "country_id": 225, + "country_code": "TR", + "latitude": "39.92336000", + "longitude": "28.14376000" + }, + { + "id": "107155", + "name": "Amasra", + "state_id": 2148, + "state_code": "74", + "country_id": 225, + "country_code": "TR", + "latitude": "41.74633000", + "longitude": "32.38633000" + }, + { + "id": "107156", + "name": "Amasra İlçesi", + "state_id": 2148, + "state_code": "74", + "country_id": 225, + "country_code": "TR", + "latitude": "41.73791000", + "longitude": "32.39455000" + }, + { + "id": "107286", + "name": "Bartın", + "state_id": 2148, + "state_code": "74", + "country_id": 225, + "country_code": "TR", + "latitude": "41.63583000", + "longitude": "32.33750000" + }, + { + "id": "108057", + "name": "Kurucaşile", + "state_id": 2148, + "state_code": "74", + "country_id": 225, + "country_code": "TR", + "latitude": "41.83781000", + "longitude": "32.71621000" + }, + { + "id": "108058", + "name": "Kurucaşile İlçesi", + "state_id": 2148, + "state_code": "74", + "country_id": 225, + "country_code": "TR", + "latitude": "41.82880000", + "longitude": "32.71937000" + }, + { + "id": "108629", + "name": "Ulus İlçesi", + "state_id": 2148, + "state_code": "74", + "country_id": 225, + "country_code": "TR", + "latitude": "41.59373000", + "longitude": "32.65066000" + }, + { + "id": "107215", + "name": "Aviski", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96459000", + "longitude": "41.33119000" + }, + { + "id": "107225", + "name": "Aydınkonak", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.89461000", + "longitude": "41.16405000" + }, + { + "id": "108824", + "name": "Çevrimova", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.84003000", + "longitude": "41.27288000" + }, + { + "id": "107271", + "name": "Balpınar", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.86804000", + "longitude": "41.05536000" + }, + { + "id": "107291", + "name": "Batman", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.88738000", + "longitude": "41.13221000" + }, + { + "id": "107350", + "name": "Beşiri", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91573000", + "longitude": "41.28650000" + }, + { + "id": "107351", + "name": "Beşiri İlçesi", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.85722000", + "longitude": "41.39306000" + }, + { + "id": "107352", + "name": "Beşpınar", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.83709000", + "longitude": "41.60219000" + }, + { + "id": "107357", + "name": "Binatlı", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.84708000", + "longitude": "41.21608000" + }, + { + "id": "107465", + "name": "Demiryol", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91751000", + "longitude": "41.14984000" + }, + { + "id": "107515", + "name": "Doğankavak", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96265000", + "longitude": "41.22675000" + }, + { + "id": "107595", + "name": "Erköklü", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.86182000", + "longitude": "41.14413000" + }, + { + "id": "107663", + "name": "Gercüş İlçesi", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.59139000", + "longitude": "41.33278000" + }, + { + "id": "107664", + "name": "Gerdzhyush", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.56249000", + "longitude": "41.37753000" + }, + { + "id": "107800", + "name": "Hasankeyf", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.70612000", + "longitude": "41.40480000" + }, + { + "id": "107801", + "name": "Hasankeyf İlçesi", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.69694000", + "longitude": "41.49972000" + }, + { + "id": "107827", + "name": "Hisar", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.60094000", + "longitude": "41.22799000" + }, + { + "id": "107947", + "name": "Kayapınar", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.55762000", + "longitude": "41.16231000" + }, + { + "id": "108035", + "name": "Kozluk İlçesi", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "38.19249000", + "longitude": "41.48705000" + }, + { + "id": "108186", + "name": "Merkez", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.84362000", + "longitude": "41.18341000" + }, + { + "id": "108302", + "name": "Oymataş", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.79856000", + "longitude": "41.02083000" + }, + { + "id": "108415", + "name": "Sason", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "38.32767000", + "longitude": "41.41377000" + }, + { + "id": "108416", + "name": "Sason İlçesi", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "38.33460000", + "longitude": "41.41993000" + }, + { + "id": "108700", + "name": "Yeniköy", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.88042000", + "longitude": "41.05004000" + }, + { + "id": "108708", + "name": "Yenipınar", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.84291000", + "longitude": "41.30137000" + }, + { + "id": "108731", + "name": "Yolağzı", + "state_id": 2194, + "state_code": "72", + "country_id": 225, + "country_code": "TR", + "latitude": "37.52554000", + "longitude": "41.35340000" + }, + { + "id": "107226", + "name": "Aydıntepe", + "state_id": 2177, + "state_code": "69", + "country_id": 225, + "country_code": "TR", + "latitude": "40.38325000", + "longitude": "40.14272000" + }, + { + "id": "107227", + "name": "Aydıntepe İlçesi", + "state_id": 2177, + "state_code": "69", + "country_id": 225, + "country_code": "TR", + "latitude": "40.39137000", + "longitude": "40.14729000" + }, + { + "id": "107297", + "name": "Bayburt", + "state_id": 2177, + "state_code": "69", + "country_id": 225, + "country_code": "TR", + "latitude": "40.25631000", + "longitude": "40.22289000" + }, + { + "id": "107466", + "name": "Demirözü İlçesi", + "state_id": 2177, + "state_code": "69", + "country_id": 225, + "country_code": "TR", + "latitude": "40.16560000", + "longitude": "39.89343000" + }, + { + "id": "108351", + "name": "Pulur", + "state_id": 2177, + "state_code": "69", + "country_id": 225, + "country_code": "TR", + "latitude": "40.16023000", + "longitude": "39.89239000" + }, + { + "id": "108903", + "name": "İnhisar", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.04932000", + "longitude": "30.38521000" + }, + { + "id": "108904", + "name": "İnhisar İlçesi", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.05091000", + "longitude": "30.38368000" + }, + { + "id": "107356", + "name": "Bilecik", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.14192000", + "longitude": "29.97932000" + }, + { + "id": "107393", + "name": "Bozüyük", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "39.90778000", + "longitude": "30.03667000" + }, + { + "id": "107394", + "name": "Bozüyük İlçesi", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "39.91806000", + "longitude": "30.05113000" + }, + { + "id": "107505", + "name": "Dodurga", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "39.79972000", + "longitude": "29.91722000" + }, + { + "id": "107702", + "name": "Gölpazarı", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.28472000", + "longitude": "30.31722000" + }, + { + "id": "107703", + "name": "Gölpazarı İlçesi", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.29553000", + "longitude": "30.33386000" + }, + { + "id": "108086", + "name": "Küplü", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.09837000", + "longitude": "30.00010000" + }, + { + "id": "108291", + "name": "Osmaneli", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.35722000", + "longitude": "30.01417000" + }, + { + "id": "108292", + "name": "Osmaneli İlçesi", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.36742000", + "longitude": "30.02683000" + }, + { + "id": "108329", + "name": "Pazaryeri", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "39.99395000", + "longitude": "29.90424000" + }, + { + "id": "108330", + "name": "Pazaryeri İlçesi", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.00444000", + "longitude": "29.92051000" + }, + { + "id": "108518", + "name": "Söğüt İlçesi", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.02479000", + "longitude": "30.17300000" + }, + { + "id": "108650", + "name": "Vezirhan", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.24472000", + "longitude": "30.02000000" + }, + { + "id": "108705", + "name": "Yenipazar", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.17833000", + "longitude": "30.52000000" + }, + { + "id": "108706", + "name": "Yenipazar İlçesi", + "state_id": 2221, + "state_code": "11", + "country_id": 225, + "country_code": "TR", + "latitude": "40.18944000", + "longitude": "30.50821000" + }, + { + "id": "107060", + "name": "Adaklı İlçesi", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "39.22870000", + "longitude": "40.48252000" + }, + { + "id": "107358", + "name": "Bingöl", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "38.88472000", + "longitude": "40.49389000" + }, + { + "id": "107661", + "name": "Genç", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "38.74773000", + "longitude": "40.55343000" + }, + { + "id": "107662", + "name": "Genç İlçesi", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "38.75972000", + "longitude": "40.56639000" + }, + { + "id": "107927", + "name": "Karlıova", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "39.29044000", + "longitude": "41.00594000" + }, + { + "id": "107928", + "name": "Karlıova İlçesi", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "39.29780000", + "longitude": "41.01342000" + }, + { + "id": "108002", + "name": "Kiğı İlçesi", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "39.30894000", + "longitude": "40.34995000" + }, + { + "id": "108182", + "name": "Merkez", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "38.95025000", + "longitude": "40.52802000" + }, + { + "id": "108483", + "name": "Solhan", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "38.96525000", + "longitude": "41.05443000" + }, + { + "id": "108484", + "name": "Solhan İlçesi", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "38.96965000", + "longitude": "41.05604000" + }, + { + "id": "108681", + "name": "Yayladere", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "39.22614000", + "longitude": "40.06950000" + }, + { + "id": "108688", + "name": "Yedisu", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "39.43277000", + "longitude": "40.53368000" + }, + { + "id": "108689", + "name": "Yedisu İlçesi", + "state_id": 2153, + "state_code": "12", + "country_id": 225, + "country_code": "TR", + "latitude": "39.43404000", + "longitude": "40.54482000" + }, + { + "id": "107065", + "name": "Adilcevaz", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.79911000", + "longitude": "42.73159000" + }, + { + "id": "107066", + "name": "Adilcevaz İlçesi", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.80582000", + "longitude": "42.73654000" + }, + { + "id": "107071", + "name": "Ahlat", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.74890000", + "longitude": "42.48007000" + }, + { + "id": "107072", + "name": "Ahlat İlçesi", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.75452000", + "longitude": "42.48809000" + }, + { + "id": "107347", + "name": "Beğendik", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "37.97557000", + "longitude": "42.64823000" + }, + { + "id": "107364", + "name": "Bitlis", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.40115000", + "longitude": "42.10784000" + }, + { + "id": "107751", + "name": "Güroymak", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.57580000", + "longitude": "42.01558000" + }, + { + "id": "107752", + "name": "Güroymak İlçesi", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.57743000", + "longitude": "42.01997000" + }, + { + "id": "107829", + "name": "Hizan", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.22498000", + "longitude": "42.41830000" + }, + { + "id": "107830", + "name": "Hizan İlçesi", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.22600000", + "longitude": "42.42491000" + }, + { + "id": "108189", + "name": "Merkez", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.31702000", + "longitude": "42.10065000" + }, + { + "id": "108233", + "name": "Mutki", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.40624000", + "longitude": "41.92018000" + }, + { + "id": "108234", + "name": "Mutki İlçesi", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.40978000", + "longitude": "41.92298000" + }, + { + "id": "108538", + "name": "Tatvan", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.49221000", + "longitude": "42.28269000" + }, + { + "id": "108539", + "name": "Tatvan İlçesi", + "state_id": 2215, + "state_code": "13", + "country_id": 225, + "country_code": "TR", + "latitude": "38.49535000", + "longitude": "42.28578000" + }, + { + "id": "107366", + "name": "Bolu", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.73583000", + "longitude": "31.60611000" + }, + { + "id": "107537", + "name": "Dörtdivan", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.72052000", + "longitude": "32.06314000" + }, + { + "id": "107538", + "name": "Dörtdivan İlçesi", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.73040000", + "longitude": "32.07079000" + }, + { + "id": "107719", + "name": "Göynük", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.40028000", + "longitude": "30.78833000" + }, + { + "id": "107720", + "name": "Göynük İlçesi", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.41056000", + "longitude": "30.79181000" + }, + { + "id": "107665", + "name": "Gerede", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.71364000", + "longitude": "32.31263000" + }, + { + "id": "108096", + "name": "Kıbrıscık", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.40778000", + "longitude": "31.85194000" + }, + { + "id": "108097", + "name": "Kıbrıscık İlçesi", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.41777000", + "longitude": "31.85584000" + }, + { + "id": "108172", + "name": "Mengen", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.93877000", + "longitude": "32.07642000" + }, + { + "id": "108173", + "name": "Mengen İlçesi", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94849000", + "longitude": "32.06535000" + }, + { + "id": "108218", + "name": "Mudurnu", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.47300000", + "longitude": "31.20755000" + }, + { + "id": "108219", + "name": "Mudurnu İlçesi", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.48344000", + "longitude": "31.21412000" + }, + { + "id": "108421", + "name": "Seben", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.41134000", + "longitude": "31.57359000" + }, + { + "id": "108422", + "name": "Seben İlçesi", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.42162000", + "longitude": "31.58299000" + }, + { + "id": "108709", + "name": "Yeniçağa", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77115000", + "longitude": "32.03375000" + }, + { + "id": "108710", + "name": "Yeniçağa İlçesi", + "state_id": 2172, + "state_code": "14", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77767000", + "longitude": "32.04920000" + }, + { + "id": "107241", + "name": "Ağlasun", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.64944000", + "longitude": "30.53417000" + }, + { + "id": "107242", + "name": "Ağlasun İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.65962000", + "longitude": "30.53833000" + }, + { + "id": "107148", + "name": "Altınyayla", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "36.99722000", + "longitude": "29.54579000" + }, + { + "id": "107150", + "name": "Altınyayla İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.00720000", + "longitude": "29.55050000" + }, + { + "id": "108793", + "name": "Çavdır İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.16483000", + "longitude": "29.69937000" + }, + { + "id": "108817", + "name": "Çeltikçi İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.53885000", + "longitude": "30.46823000" + }, + { + "id": "107400", + "name": "Bucak", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.45917000", + "longitude": "30.59500000" + }, + { + "id": "107401", + "name": "Bucak İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.47032000", + "longitude": "30.59956000" + }, + { + "id": "107411", + "name": "Burdur", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.72028000", + "longitude": "30.29083000" + }, + { + "id": "107695", + "name": "Gölhisar", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.14590000", + "longitude": "29.50876000" + }, + { + "id": "107696", + "name": "Gölhisar İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.15628000", + "longitude": "29.51406000" + }, + { + "id": "107906", + "name": "Karamanlı", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.37301000", + "longitude": "29.82308000" + }, + { + "id": "107907", + "name": "Karamanlı İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.38401000", + "longitude": "29.82777000" + }, + { + "id": "108116", + "name": "Kızılkaya", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30361000", + "longitude": "30.44417000" + }, + { + "id": "107977", + "name": "Kemer", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.35222000", + "longitude": "30.06306000" + }, + { + "id": "107980", + "name": "Kemer İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.36333000", + "longitude": "30.06748000" + }, + { + "id": "108005", + "name": "Kocaaliler", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.31694000", + "longitude": "30.74000000" + }, + { + "id": "108180", + "name": "Merkez", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.62762000", + "longitude": "30.20408000" + }, + { + "id": "108556", + "name": "Tefenni", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30968000", + "longitude": "29.77538000" + }, + { + "id": "108557", + "name": "Tefenni İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.32038000", + "longitude": "29.78034000" + }, + { + "id": "108726", + "name": "Yeşilova", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.50806000", + "longitude": "29.75472000" + }, + { + "id": "108727", + "name": "Yeşilova İlçesi", + "state_id": 2209, + "state_code": "15", + "country_id": 225, + "country_code": "TR", + "latitude": "37.51831000", + "longitude": "29.75859000" + }, + { + "id": "107123", + "name": "Alanyurt", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.10881000", + "longitude": "29.51871000" + }, + { + "id": "108902", + "name": "İnegöl", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.01193000", + "longitude": "29.53678000" + }, + { + "id": "108901", + "name": "İnegol", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.07806000", + "longitude": "29.51333000" + }, + { + "id": "108925", + "name": "İznik", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.42861000", + "longitude": "29.72111000" + }, + { + "id": "108926", + "name": "İznik İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.43940000", + "longitude": "29.72644000" + }, + { + "id": "108757", + "name": "Çakırca", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.47056000", + "longitude": "29.66333000" + }, + { + "id": "108758", + "name": "Çakırlı", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.51806000", + "longitude": "29.45222000" + }, + { + "id": "107269", + "name": "Balarim", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.37381000", + "longitude": "29.59025000" + }, + { + "id": "107419", + "name": "Büyükorhan İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "39.78223000", + "longitude": "28.89338000" + }, + { + "id": "107374", + "name": "Boyalıca", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.48194000", + "longitude": "29.56083000" + }, + { + "id": "107414", + "name": "Bursa", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.19559000", + "longitude": "29.06013000" + }, + { + "id": "107426", + "name": "Cerrah", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.07124000", + "longitude": "29.44661000" + }, + { + "id": "107464", + "name": "Demirtaş", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.27194000", + "longitude": "29.09833000" + }, + { + "id": "107560", + "name": "Elbeyli", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.48611000", + "longitude": "29.72472000" + }, + { + "id": "107756", + "name": "Gürsu", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.25498000", + "longitude": "29.21183000" + }, + { + "id": "107660", + "name": "Gemlik", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.43510000", + "longitude": "29.14943000" + }, + { + "id": "107785", + "name": "Hamzabey", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.13583000", + "longitude": "29.52639000" + }, + { + "id": "107795", + "name": "Harmancık İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "39.67743000", + "longitude": "29.15523000" + }, + { + "id": "107890", + "name": "Karacabey", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.21323000", + "longitude": "28.36120000" + }, + { + "id": "107891", + "name": "Karacabey İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.22288000", + "longitude": "28.36656000" + }, + { + "id": "107935", + "name": "Karıncalı", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "39.97118000", + "longitude": "28.85894000" + }, + { + "id": "108094", + "name": "Küçükkumla", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.47047000", + "longitude": "29.10152000" + }, + { + "id": "107967", + "name": "Keles", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "39.91361000", + "longitude": "29.22944000" + }, + { + "id": "107968", + "name": "Keles İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "39.92363000", + "longitude": "29.23644000" + }, + { + "id": "107987", + "name": "Kestel", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.19828000", + "longitude": "29.21237000" + }, + { + "id": "107988", + "name": "Kestel İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.18218000", + "longitude": "29.28916000" + }, + { + "id": "108001", + "name": "Kirazlı", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.09964000", + "longitude": "29.04163000" + }, + { + "id": "108059", + "name": "Kurşunlu", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.03712000", + "longitude": "29.65972000" + }, + { + "id": "108217", + "name": "Mudanya", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.33342000", + "longitude": "28.77218000" + }, + { + "id": "108230", + "name": "Mustafakemalpaşa", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.03815000", + "longitude": "28.40866000" + }, + { + "id": "108231", + "name": "Mustafakemalpaşa İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.04973000", + "longitude": "28.41833000" + }, + { + "id": "108239", + "name": "Narlıca", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.38583000", + "longitude": "29.48111000" + }, + { + "id": "108249", + "name": "Nilüfer", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.21375000", + "longitude": "28.98464000" + }, + { + "id": "108272", + "name": "Orhaneli", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "39.90333000", + "longitude": "28.99056000" + }, + { + "id": "108273", + "name": "Orhaneli İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "39.91406000", + "longitude": "28.99790000" + }, + { + "id": "108274", + "name": "Orhangazi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.48917000", + "longitude": "29.30889000" + }, + { + "id": "108275", + "name": "Orhangazi İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.49979000", + "longitude": "29.31207000" + }, + { + "id": "108293", + "name": "Osmangazi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.15644000", + "longitude": "29.08753000" + }, + { + "id": "108517", + "name": "Sölöz", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.39480000", + "longitude": "29.41559000" + }, + { + "id": "108529", + "name": "Tacir", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.52556000", + "longitude": "29.73972000" + }, + { + "id": "108530", + "name": "Tahtaköprü", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "39.95000000", + "longitude": "29.65000000" + }, + { + "id": "108537", + "name": "Tatkavaklı", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.03333000", + "longitude": "28.36667000" + }, + { + "id": "108632", + "name": "Umurbey", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.41472000", + "longitude": "29.18306000" + }, + { + "id": "108746", + "name": "Yıldırım İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.19567000", + "longitude": "29.03640000" + }, + { + "id": "108714", + "name": "Yenişehir", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.26444000", + "longitude": "29.65306000" + }, + { + "id": "108717", + "name": "Yenişehir İlçesi", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.27425000", + "longitude": "29.65764000" + }, + { + "id": "108692", + "name": "Yenice", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.08778000", + "longitude": "29.42194000" + }, + { + "id": "108702", + "name": "Yeniköy", + "state_id": 2163, + "state_code": "16", + "country_id": 225, + "country_code": "TR", + "latitude": "40.53568000", + "longitude": "29.35364000" + }, + { + "id": "107110", + "name": "Akçakoca", + "state_id": 2202, + "state_code": "81", + "country_id": 225, + "country_code": "TR", + "latitude": "41.08663000", + "longitude": "31.11623000" + }, + { + "id": "107111", + "name": "Akçakoca İlçesi", + "state_id": 2202, + "state_code": "81", + "country_id": 225, + "country_code": "TR", + "latitude": "41.08053000", + "longitude": "31.12966000" + }, + { + "id": "108833", + "name": "Çilimli İlçesi", + "state_id": 2202, + "state_code": "81", + "country_id": 225, + "country_code": "TR", + "latitude": "40.90267000", + "longitude": "31.05913000" + }, + { + "id": "107438", + "name": "Cumayeri İlçesi", + "state_id": 2202, + "state_code": "81", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88176000", + "longitude": "30.94094000" + }, + { + "id": "107542", + "name": "Düzce", + "state_id": 2202, + "state_code": "81", + "country_id": 225, + "country_code": "TR", + "latitude": "40.83889000", + "longitude": "31.16389000" + }, + { + "id": "107704", + "name": "Gölyaka İlçesi", + "state_id": 2202, + "state_code": "81", + "country_id": 225, + "country_code": "TR", + "latitude": "40.78644000", + "longitude": "31.00276000" + }, + { + "id": "107739", + "name": "Gümüşova İlçesi", + "state_id": 2202, + "state_code": "81", + "country_id": 225, + "country_code": "TR", + "latitude": "40.85640000", + "longitude": "30.94935000" + }, + { + "id": "107953", + "name": "Kaynaşlı İlçesi", + "state_id": 2202, + "state_code": "81", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77908000", + "longitude": "31.31135000" + }, + { + "id": "108748", + "name": "Yığılca İlçesi", + "state_id": 2202, + "state_code": "81", + "country_id": 225, + "country_code": "TR", + "latitude": "40.96497000", + "longitude": "31.45672000" + }, + { + "id": "107057", + "name": "Acıpayam", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.42385000", + "longitude": "29.34941000" + }, + { + "id": "107058", + "name": "Acıpayam İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.43536000", + "longitude": "29.36146000" + }, + { + "id": "107086", + "name": "Akköy", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95694000", + "longitude": "29.07813000" + }, + { + "id": "107084", + "name": "Akkent", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "38.15268000", + "longitude": "29.37890000" + }, + { + "id": "108759", + "name": "Çal İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "38.09371000", + "longitude": "29.40467000" + }, + { + "id": "108767", + "name": "Çameli İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.08660000", + "longitude": "29.35225000" + }, + { + "id": "108781", + "name": "Çardak", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.77485000", + "longitude": "29.70593000" + }, + { + "id": "108836", + "name": "Çivril", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "38.30139000", + "longitude": "29.73861000" + }, + { + "id": "108837", + "name": "Çivril İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "38.31191000", + "longitude": "29.72430000" + }, + { + "id": "107252", + "name": "Babadağ", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.80764000", + "longitude": "28.85665000" + }, + { + "id": "107253", + "name": "Babadağ İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.81823000", + "longitude": "28.86820000" + }, + { + "id": "107265", + "name": "Baklan", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.97694000", + "longitude": "29.60861000" + }, + { + "id": "107266", + "name": "Baklan İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.98760000", + "longitude": "29.62032000" + }, + { + "id": "107326", + "name": "Bekilli", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "38.24027000", + "longitude": "29.42559000" + }, + { + "id": "107334", + "name": "Beyağaç İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.24546000", + "longitude": "28.90041000" + }, + { + "id": "107384", + "name": "Bozkurt", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.77583000", + "longitude": "29.60811000" + }, + { + "id": "107408", + "name": "Buldan", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "38.04500000", + "longitude": "28.83056000" + }, + { + "id": "107409", + "name": "Buldan İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "38.05536000", + "longitude": "28.84007000" + }, + { + "id": "107470", + "name": "Denizli", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.77417000", + "longitude": "29.08750000" + }, + { + "id": "107721", + "name": "Gözler", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "38.10679000", + "longitude": "29.15375000" + }, + { + "id": "107742", + "name": "Güney İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "38.16454000", + "longitude": "29.07324000" + }, + { + "id": "107833", + "name": "Honaz", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.77146000", + "longitude": "29.34466000" + }, + { + "id": "107871", + "name": "Kale", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.43917000", + "longitude": "28.84528000" + }, + { + "id": "107873", + "name": "Kale İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.44537000", + "longitude": "28.85582000" + }, + { + "id": "108196", + "name": "Merkezefendi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.80544000", + "longitude": "29.04236000" + }, + { + "id": "108197", + "name": "Merkezefendi İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.80610000", + "longitude": "29.01562000" + }, + { + "id": "108247", + "name": "Nikfer", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.40542000", + "longitude": "29.13727000" + }, + { + "id": "108310", + "name": "Pamukkale", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91644000", + "longitude": "29.11729000" + }, + { + "id": "108311", + "name": "Pamukkale İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96709000", + "longitude": "29.08635000" + }, + { + "id": "108393", + "name": "Sarayköy", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91580000", + "longitude": "28.87999000" + }, + { + "id": "108442", + "name": "Serinhisar", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.58105000", + "longitude": "29.26639000" + }, + { + "id": "108443", + "name": "Serinhisar İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.59127000", + "longitude": "29.27246000" + }, + { + "id": "108540", + "name": "Tavas", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.57351000", + "longitude": "29.07058000" + }, + { + "id": "108541", + "name": "Tavas İlçesi", + "state_id": 2157, + "state_code": "20", + "country_id": 225, + "country_code": "TR", + "latitude": "37.58387000", + "longitude": "29.07970000" + }, + { + "id": "107119", + "name": "Alacakaya İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.46326000", + "longitude": "39.85514000" + }, + { + "id": "107142", + "name": "Altınkum", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.26374000", + "longitude": "41.06250000" + }, + { + "id": "107158", + "name": "Ambar", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.85305000", + "longitude": "40.52798000" + }, + { + "id": "107172", + "name": "Aralık", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.82945000", + "longitude": "40.68025000" + }, + { + "id": "108854", + "name": "Çınar İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.72562000", + "longitude": "40.41484000" + }, + { + "id": "108851", + "name": "Çüngüş", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.20798000", + "longitude": "39.28554000" + }, + { + "id": "108852", + "name": "Çüngüş İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.21180000", + "longitude": "39.28824000" + }, + { + "id": "108822", + "name": "Çermik", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.13538000", + "longitude": "39.44500000" + }, + { + "id": "108823", + "name": "Çermik İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.13604000", + "longitude": "39.45240000" + }, + { + "id": "107309", + "name": "Bağlar", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91068000", + "longitude": "40.22627000" + }, + { + "id": "107362", + "name": "Bismil", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.84514000", + "longitude": "40.65931000" + }, + { + "id": "107363", + "name": "Bismil İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.86528000", + "longitude": "40.77722000" + }, + { + "id": "107491", + "name": "Dicle", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.36571000", + "longitude": "40.06450000" + }, + { + "id": "107492", + "name": "Dicle İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.37138000", + "longitude": "40.07086000" + }, + { + "id": "107504", + "name": "Diyarbakır", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91363000", + "longitude": "40.21721000" + }, + { + "id": "107625", + "name": "Eğil", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.25748000", + "longitude": "40.07435000" + }, + { + "id": "107626", + "name": "Eğil İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.25688000", + "longitude": "40.08345000" + }, + { + "id": "107592", + "name": "Ergani", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.26899000", + "longitude": "39.75446000" + }, + { + "id": "107593", + "name": "Ergani İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.26521000", + "longitude": "39.75965000" + }, + { + "id": "107790", + "name": "Hani", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.40741000", + "longitude": "40.38578000" + }, + { + "id": "107791", + "name": "Hani İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.41143000", + "longitude": "40.39634000" + }, + { + "id": "107817", + "name": "Hazro", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.24903000", + "longitude": "40.77129000" + }, + { + "id": "107818", + "name": "Hazro İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.25412000", + "longitude": "40.77866000" + }, + { + "id": "107948", + "name": "Kayapınar", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.93800000", + "longitude": "40.17310000" + }, + { + "id": "107957", + "name": "Kazancı", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.77106000", + "longitude": "40.60000000" + }, + { + "id": "108082", + "name": "Köseli", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.83879000", + "longitude": "40.60811000" + }, + { + "id": "107984", + "name": "Kerh", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.82570000", + "longitude": "40.54402000" + }, + { + "id": "108008", + "name": "Kocaköy", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.28889000", + "longitude": "40.49786000" + }, + { + "id": "108009", + "name": "Kocaköy İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.28801000", + "longitude": "40.49845000" + }, + { + "id": "108040", + "name": "Kulp", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.49754000", + "longitude": "41.00668000" + }, + { + "id": "108041", + "name": "Kulp İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.49709000", + "longitude": "41.01073000" + }, + { + "id": "108130", + "name": "Lice", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.45821000", + "longitude": "40.63888000" + }, + { + "id": "108131", + "name": "Lice İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.46131000", + "longitude": "40.64714000" + }, + { + "id": "108375", + "name": "Salat", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.84172000", + "longitude": "40.88650000" + }, + { + "id": "108463", + "name": "Silvan", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.13708000", + "longitude": "41.00817000" + }, + { + "id": "108464", + "name": "Silvan İlçesi", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "38.14134000", + "longitude": "41.01261000" + }, + { + "id": "108467", + "name": "Sinanköy", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.86166000", + "longitude": "40.99283000" + }, + { + "id": "108506", + "name": "Sur", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91356000", + "longitude": "40.23743000" + }, + { + "id": "108672", + "name": "Yaprakbaşı", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.65409000", + "longitude": "40.54635000" + }, + { + "id": "108716", + "name": "Yenişehir", + "state_id": 2226, + "state_code": "21", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91373000", + "longitude": "40.20610000" + }, + { + "id": "108909", + "name": "İpsala", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "40.92115000", + "longitude": "26.38273000" + }, + { + "id": "108910", + "name": "İpsala İlçesi", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "40.93204000", + "longitude": "26.39781000" + }, + { + "id": "107549", + "name": "Edirne", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.67719000", + "longitude": "26.55597000" + }, + { + "id": "107580", + "name": "Enez", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "40.72472000", + "longitude": "26.08250000" + }, + { + "id": "107581", + "name": "Enez İlçesi", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "40.73389000", + "longitude": "26.10243000" + }, + { + "id": "107807", + "name": "Havsa", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.54898000", + "longitude": "26.82207000" + }, + { + "id": "107808", + "name": "Havsa İlçesi", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.55981000", + "longitude": "26.83394000" + }, + { + "id": "108087", + "name": "Küplü", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.10694000", + "longitude": "26.35194000" + }, + { + "id": "107992", + "name": "Keşan", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "40.85583000", + "longitude": "26.63028000" + }, + { + "id": "107993", + "name": "Keşan İlçesi", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "40.86611000", + "longitude": "26.64424000" + }, + { + "id": "108133", + "name": "Lâlapaşa", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.83951000", + "longitude": "26.73561000" + }, + { + "id": "108134", + "name": "Lâlapaşa İlçesi", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.85056000", + "longitude": "26.74865000" + }, + { + "id": "108176", + "name": "Meriç", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.19183000", + "longitude": "26.42097000" + }, + { + "id": "108177", + "name": "Meriç İlçesi", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.20174000", + "longitude": "26.43499000" + }, + { + "id": "108523", + "name": "Süloğlu İlçesi", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.77956000", + "longitude": "26.92602000" + }, + { + "id": "108640", + "name": "Uzunköprü", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.26597000", + "longitude": "26.68850000" + }, + { + "id": "108641", + "name": "Uzunköprü İlçesi", + "state_id": 2151, + "state_code": "22", + "country_id": 225, + "country_code": "TR", + "latitude": "41.27681000", + "longitude": "26.69645000" + }, + { + "id": "107246", + "name": "Ağın", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.93792000", + "longitude": "38.71155000" + }, + { + "id": "107197", + "name": "Arıcak", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.56340000", + "longitude": "40.12480000" + }, + { + "id": "107198", + "name": "Arıcak İlçesi", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.56421000", + "longitude": "40.13506000" + }, + { + "id": "107288", + "name": "Baskil", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.56866000", + "longitude": "38.81634000" + }, + { + "id": "107289", + "name": "Baskil İlçesi", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.56695000", + "longitude": "38.82357000" + }, + { + "id": "107558", + "name": "Elazığ", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.67431000", + "longitude": "39.22321000" + }, + { + "id": "107901", + "name": "Karakoçan", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.95178000", + "longitude": "40.02706000" + }, + { + "id": "107902", + "name": "Karakoçan \/ Elazığ", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.95527000", + "longitude": "40.04053000" + }, + { + "id": "107964", + "name": "Keban", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.79380000", + "longitude": "38.73517000" + }, + { + "id": "107965", + "name": "Keban İlçesi", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.79438000", + "longitude": "38.73773000" + }, + { + "id": "108027", + "name": "Kovancılar", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.71882000", + "longitude": "39.86268000" + }, + { + "id": "108028", + "name": "Kovancılar İlçesi", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.71883000", + "longitude": "39.86520000" + }, + { + "id": "108137", + "name": "Maden İlçesi", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.39354000", + "longitude": "39.67252000" + }, + { + "id": "108188", + "name": "Merkez", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.66790000", + "longitude": "39.21567000" + }, + { + "id": "108308", + "name": "Palu", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.69135000", + "longitude": "39.91984000" + }, + { + "id": "108309", + "name": "Palu İlçesi", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.69286000", + "longitude": "39.92652000" + }, + { + "id": "108479", + "name": "Sivrice", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.44223000", + "longitude": "39.30938000" + }, + { + "id": "108480", + "name": "Sivrice İlçesi", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "38.44921000", + "longitude": "39.30582000" + }, + { + "id": "108604", + "name": "Turluk", + "state_id": 2159, + "state_code": "23", + "country_id": 225, + "country_code": "TR", + "latitude": "39.44034000", + "longitude": "39.87773000" + }, + { + "id": "108890", + "name": "İliç İlçesi", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.45587000", + "longitude": "38.56409000" + }, + { + "id": "108876", + "name": "Üzümlü İlçesi", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.70943000", + "longitude": "39.70125000" + }, + { + "id": "108806", + "name": "Çayırlı İlçesi", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.80454000", + "longitude": "40.03724000" + }, + { + "id": "107433", + "name": "Cimin", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.70947000", + "longitude": "39.70015000" + }, + { + "id": "107602", + "name": "Erzincan", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.73919000", + "longitude": "39.49015000" + }, + { + "id": "107971", + "name": "Kemah", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.59606000", + "longitude": "39.02329000" + }, + { + "id": "107972", + "name": "Kemah İlçesi", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.60123000", + "longitude": "39.03422000" + }, + { + "id": "107973", + "name": "Kemaliye", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.26288000", + "longitude": "38.49674000" + }, + { + "id": "107974", + "name": "Kemaliye İlçesi", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.27163000", + "longitude": "38.50588000" + }, + { + "id": "108295", + "name": "Otlukbeli", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.97000000", + "longitude": "40.01872000" + }, + { + "id": "108296", + "name": "Otlukbeli İlçesi", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.97213000", + "longitude": "40.02139000" + }, + { + "id": "108365", + "name": "Refahiye", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.89315000", + "longitude": "38.76607000" + }, + { + "id": "108366", + "name": "Refahiye İlçesi", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.90132000", + "longitude": "38.76745000" + }, + { + "id": "108570", + "name": "Tercan", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.77709000", + "longitude": "40.37783000" + }, + { + "id": "108571", + "name": "Tercan İlçesi", + "state_id": 2160, + "state_code": "24", + "country_id": 225, + "country_code": "TR", + "latitude": "39.77812000", + "longitude": "40.38505000" + }, + { + "id": "107250", + "name": "Aşkale", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.92083000", + "longitude": "40.69500000" + }, + { + "id": "107251", + "name": "Aşkale İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.93082000", + "longitude": "40.68718000" + }, + { + "id": "108950", + "name": "Şenkaya", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.55652000", + "longitude": "42.34266000" + }, + { + "id": "108951", + "name": "Şenkaya İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.56221000", + "longitude": "42.34524000" + }, + { + "id": "107237", + "name": "Aziziye", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.94028000", + "longitude": "41.11153000" + }, + { + "id": "108918", + "name": "İspir", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.47981000", + "longitude": "40.99373000" + }, + { + "id": "108919", + "name": "İspir İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.48305000", + "longitude": "40.99837000" + }, + { + "id": "108786", + "name": "Çat İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.61055000", + "longitude": "40.97851000" + }, + { + "id": "107603", + "name": "Erzurum", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.90861000", + "longitude": "41.27694000" + }, + { + "id": "107842", + "name": "Hınıs", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.35766000", + "longitude": "41.69253000" + }, + { + "id": "107843", + "name": "Hınıs İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.36104000", + "longitude": "41.69717000" + }, + { + "id": "107836", + "name": "Horasan", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.03885000", + "longitude": "42.16366000" + }, + { + "id": "107837", + "name": "Horasan İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.04228000", + "longitude": "42.16723000" + }, + { + "id": "107848", + "name": "Ilıca", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.94653000", + "longitude": "41.09520000" + }, + { + "id": "107921", + "name": "Karaçoban", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.34364000", + "longitude": "42.09918000" + }, + { + "id": "107922", + "name": "Karaçoban İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.35157000", + "longitude": "42.10970000" + }, + { + "id": "107919", + "name": "Karayazı", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.69604000", + "longitude": "42.14277000" + }, + { + "id": "107920", + "name": "Karayazı İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.70292000", + "longitude": "42.14503000" + }, + { + "id": "108076", + "name": "Köprüköy İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.97178000", + "longitude": "41.86804000" + }, + { + "id": "108241", + "name": "Narman", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.34449000", + "longitude": "41.86088000" + }, + { + "id": "108242", + "name": "Narman İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.34492000", + "longitude": "41.87003000" + }, + { + "id": "108265", + "name": "Oltu", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.53945000", + "longitude": "41.98722000" + }, + { + "id": "108266", + "name": "Oltu İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.54562000", + "longitude": "41.99582000" + }, + { + "id": "108267", + "name": "Olur", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.82165000", + "longitude": "42.13055000" + }, + { + "id": "108268", + "name": "Olur İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.82661000", + "longitude": "42.13229000" + }, + { + "id": "108307", + "name": "Palandöken", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.85560000", + "longitude": "41.27975000" + }, + { + "id": "108314", + "name": "Pasinler", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.97975000", + "longitude": "41.66997000" + }, + { + "id": "108315", + "name": "Pasinler İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.97735000", + "longitude": "41.67848000" + }, + { + "id": "108331", + "name": "Pazaryolu", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.41142000", + "longitude": "40.76780000" + }, + { + "id": "108332", + "name": "Pazaryolu İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.41377000", + "longitude": "40.77253000" + }, + { + "id": "108562", + "name": "Tekman", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.64111000", + "longitude": "41.50542000" + }, + { + "id": "108563", + "name": "Tekman İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "39.64998000", + "longitude": "41.51160000" + }, + { + "id": "108589", + "name": "Tortum", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.28892000", + "longitude": "41.54096000" + }, + { + "id": "108590", + "name": "Tortum İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.29699000", + "longitude": "41.55084000" + }, + { + "id": "108636", + "name": "Uzundere", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.53218000", + "longitude": "41.53832000" + }, + { + "id": "108637", + "name": "Uzundere İlçesi", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.53175000", + "longitude": "41.54826000" + }, + { + "id": "108663", + "name": "Yakutiye", + "state_id": 2165, + "state_code": "25", + "country_id": 225, + "country_code": "TR", + "latitude": "40.00132000", + "longitude": "41.30997000" + }, + { + "id": "107133", + "name": "Alpu", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.76903000", + "longitude": "30.96060000" + }, + { + "id": "107134", + "name": "Alpu İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.77889000", + "longitude": "30.97022000" + }, + { + "id": "108906", + "name": "İnönü", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.81534000", + "longitude": "30.14549000" + }, + { + "id": "108907", + "name": "İnönüi İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.82531000", + "longitude": "30.16043000" + }, + { + "id": "108827", + "name": "Çifteler", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.38306000", + "longitude": "31.03917000" + }, + { + "id": "108828", + "name": "Çifteler İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.39270000", + "longitude": "31.04354000" + }, + { + "id": "107339", + "name": "Beylikova", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.68694000", + "longitude": "31.20556000" + }, + { + "id": "107340", + "name": "Beylikova İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.69736000", + "longitude": "31.21207000" + }, + { + "id": "107378", + "name": "Bozan", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.78806000", + "longitude": "31.10167000" + }, + { + "id": "107608", + "name": "Eskişehir", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.77667000", + "longitude": "30.52056000" + }, + { + "id": "107748", + "name": "Günyüzü İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.39410000", + "longitude": "31.81400000" + }, + { + "id": "107786", + "name": "Han", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.15917000", + "longitude": "30.86139000" + }, + { + "id": "107787", + "name": "Han İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.16895000", + "longitude": "30.86661000" + }, + { + "id": "108103", + "name": "Kırka", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.27944000", + "longitude": "30.52639000" + }, + { + "id": "108138", + "name": "Mahmudiye İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.50724000", + "longitude": "30.99247000" + }, + { + "id": "108210", + "name": "Mihalıçcık İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.87564000", + "longitude": "31.50091000" + }, + { + "id": "108208", + "name": "Mihalgazi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "40.02621000", + "longitude": "30.57707000" + }, + { + "id": "108209", + "name": "Mihalgazi İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "40.03715000", + "longitude": "30.58375000" + }, + { + "id": "108260", + "name": "Odunpazarı", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.76699000", + "longitude": "30.54113000" + }, + { + "id": "108398", + "name": "Sarıcakaya İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "40.04671000", + "longitude": "30.61994000" + }, + { + "id": "108446", + "name": "Sevinç", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.78000000", + "longitude": "30.68889000" + }, + { + "id": "108453", + "name": "Seyitgazi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.44472000", + "longitude": "30.69472000" + }, + { + "id": "108454", + "name": "Seyitgazi İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.45397000", + "longitude": "30.70082000" + }, + { + "id": "108481", + "name": "Sivrihisar", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.45037000", + "longitude": "31.53409000" + }, + { + "id": "108482", + "name": "Sivrihisar İlçesi", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.45941000", + "longitude": "31.52476000" + }, + { + "id": "108566", + "name": "Tepebaşı", + "state_id": 2164, + "state_code": "26", + "country_id": 225, + "country_code": "TR", + "latitude": "39.78430000", + "longitude": "30.50206000" + }, + { + "id": "107170", + "name": "Araban", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.42559000", + "longitude": "37.78175000" + }, + { + "id": "108929", + "name": "Şahinbey İlçesi", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.03741000", + "longitude": "37.37822000" + }, + { + "id": "108946", + "name": "Şehitkamil", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.17217000", + "longitude": "37.36974000" + }, + { + "id": "108886", + "name": "İkizce", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.86262000", + "longitude": "37.77432000" + }, + { + "id": "108917", + "name": "İslahiye İlçesi", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.96528000", + "longitude": "36.70972000" + }, + { + "id": "107519", + "name": "Doğanpınar", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.84321000", + "longitude": "37.61759000" + }, + { + "id": "107645", + "name": "Gaziantep", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.05944000", + "longitude": "37.38250000" + }, + { + "id": "107925", + "name": "Karkamış", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.83452000", + "longitude": "37.99830000" + }, + { + "id": "107926", + "name": "Karkamış İlçesi", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.86417000", + "longitude": "37.92222000" + }, + { + "id": "108250", + "name": "Nizip", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.00972000", + "longitude": "37.79417000" + }, + { + "id": "108251", + "name": "Nizip İlçesi", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.01100000", + "longitude": "37.79496000" + }, + { + "id": "108253", + "name": "Nurdağı", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.16821000", + "longitude": "36.73623000" + }, + { + "id": "108254", + "name": "Nurdağı İlçesi", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.18402000", + "longitude": "36.73595000" + }, + { + "id": "108303", + "name": "Oğuzeli", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.96572000", + "longitude": "37.51339000" + }, + { + "id": "108304", + "name": "Oğuzeli İlçesi", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.88167000", + "longitude": "37.56278000" + }, + { + "id": "108424", + "name": "Sekili", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.97876000", + "longitude": "37.67174000" + }, + { + "id": "108630", + "name": "Uluyatır", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.96333000", + "longitude": "37.69361000" + }, + { + "id": "108677", + "name": "Yavuzeli", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.31772000", + "longitude": "37.56824000" + }, + { + "id": "108678", + "name": "Yavuzeli İlçesi", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "37.32339000", + "longitude": "37.56956000" + }, + { + "id": "108722", + "name": "Yeşildere", + "state_id": 2203, + "state_code": "27", + "country_id": 225, + "country_code": "TR", + "latitude": "36.97300000", + "longitude": "37.49488000" + }, + { + "id": "108959", + "name": "Şiran", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.19064000", + "longitude": "39.11747000" + }, + { + "id": "108960", + "name": "Şiran İlçesi", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.19084000", + "longitude": "39.12484000" + }, + { + "id": "107615", + "name": "Evren", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.24527000", + "longitude": "39.17535000" + }, + { + "id": "107677", + "name": "Gumushkhane", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.46001000", + "longitude": "39.47176000" + }, + { + "id": "108079", + "name": "Köse", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.20692000", + "longitude": "39.64626000" + }, + { + "id": "108080", + "name": "Köse İlçesi", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.21025000", + "longitude": "39.65402000" + }, + { + "id": "108090", + "name": "Kürtün", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.69516000", + "longitude": "39.09468000" + }, + { + "id": "108091", + "name": "Kürtün İlçesi", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.69966000", + "longitude": "39.09801000" + }, + { + "id": "107969", + "name": "Kelkit", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.12682000", + "longitude": "39.43424000" + }, + { + "id": "107970", + "name": "Kelkit İlçesi", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.12952000", + "longitude": "39.43710000" + }, + { + "id": "108181", + "name": "Merkez", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.46843000", + "longitude": "39.67441000" + }, + { + "id": "108591", + "name": "Torul", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.55071000", + "longitude": "39.28344000" + }, + { + "id": "108592", + "name": "Torul İlçesi", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.56034000", + "longitude": "39.29671000" + }, + { + "id": "108686", + "name": "Yağlıdere", + "state_id": 2204, + "state_code": "29", + "country_id": 225, + "country_code": "TR", + "latitude": "40.54432000", + "longitude": "39.52762000" + }, + { + "id": "107154", + "name": "Alucra İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.31924000", + "longitude": "38.76528000" + }, + { + "id": "108942", + "name": "Şebin Karahisar", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.28833000", + "longitude": "38.42361000" + }, + { + "id": "108943", + "name": "Şebin Karahisar İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.29456000", + "longitude": "38.41450000" + }, + { + "id": "108772", + "name": "Çamoluk İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.13418000", + "longitude": "38.73389000" + }, + { + "id": "108776", + "name": "Çanakçı", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.86000000", + "longitude": "39.05000000" + }, + { + "id": "107404", + "name": "Bulancak", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.93805000", + "longitude": "38.23148000" + }, + { + "id": "107405", + "name": "Bulancak İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.93805000", + "longitude": "38.23148000" + }, + { + "id": "107475", + "name": "Dereli", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.61300000", + "longitude": "38.39000000" + }, + { + "id": "107516", + "name": "Doğankent", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.80750000", + "longitude": "38.91722000" + }, + { + "id": "107517", + "name": "Doğankent İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.80802000", + "longitude": "38.91695000" + }, + { + "id": "107609", + "name": "Espiye", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94705000", + "longitude": "38.70299000" + }, + { + "id": "107610", + "name": "Espiye İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94850000", + "longitude": "38.70734000" + }, + { + "id": "107619", + "name": "Eynesil", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "41.06436000", + "longitude": "39.14274000" + }, + { + "id": "107620", + "name": "Eynesil İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "41.06331000", + "longitude": "39.15904000" + }, + { + "id": "107713", + "name": "Görele", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "41.03083000", + "longitude": "39.00306000" + }, + { + "id": "107714", + "name": "Görele İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02636000", + "longitude": "39.00724000" + }, + { + "id": "107724", + "name": "Güce İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.89368000", + "longitude": "38.80855000" + }, + { + "id": "107675", + "name": "Giresun", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.91698000", + "longitude": "38.38741000" + }, + { + "id": "107994", + "name": "Keşap", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.91387000", + "longitude": "38.51442000" + }, + { + "id": "108184", + "name": "Merkez", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.82660000", + "longitude": "38.36085000" + }, + { + "id": "108343", + "name": "Piraziz", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.92244000", + "longitude": "38.12458000" + }, + { + "id": "108579", + "name": "Tirebolu", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "41.00633000", + "longitude": "38.84980000" + }, + { + "id": "108687", + "name": "Yağlıdere İlçesi", + "state_id": 2186, + "state_code": "28", + "country_id": 225, + "country_code": "TR", + "latitude": "40.85711000", + "longitude": "38.63242000" + }, + { + "id": "108948", + "name": "Şemdinli", + "state_id": 2190, + "state_code": "30", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30514000", + "longitude": "44.57420000" + }, + { + "id": "108949", + "name": "Şemdinni İlçesi", + "state_id": 2190, + "state_code": "30", + "country_id": 225, + "country_code": "TR", + "latitude": "37.31325000", + "longitude": "44.58016000" + }, + { + "id": "108846", + "name": "Çukurca", + "state_id": 2190, + "state_code": "30", + "country_id": 225, + "country_code": "TR", + "latitude": "37.24806000", + "longitude": "43.61361000" + }, + { + "id": "108847", + "name": "Çukurca İlçesi", + "state_id": 2190, + "state_code": "30", + "country_id": 225, + "country_code": "TR", + "latitude": "37.25492000", + "longitude": "43.62121000" + }, + { + "id": "107774", + "name": "Hakkâri", + "state_id": 2190, + "state_code": "30", + "country_id": 225, + "country_code": "TR", + "latitude": "37.57444000", + "longitude": "43.74083000" + }, + { + "id": "107932", + "name": "Karsani", + "state_id": 2190, + "state_code": "30", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30716000", + "longitude": "43.45410000" + }, + { + "id": "108744", + "name": "Yüksekova", + "state_id": 2190, + "state_code": "30", + "country_id": 225, + "country_code": "TR", + "latitude": "37.54627000", + "longitude": "44.25827000" + }, + { + "id": "107248", + "name": "Aşağı Karafakılı", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.77885000", + "longitude": "36.55776000" + }, + { + "id": "107249", + "name": "Aşağıokçular", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.17802000", + "longitude": "36.14033000" + }, + { + "id": "107238", + "name": "Açıkdere", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.21909000", + "longitude": "36.25992000" + }, + { + "id": "107152", + "name": "Altınözü", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.11244000", + "longitude": "36.24488000" + }, + { + "id": "107153", + "name": "Altınözü İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.11536000", + "longitude": "36.24688000" + }, + { + "id": "107162", + "name": "Anayazı", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.32107000", + "longitude": "36.19061000" + }, + { + "id": "107167", + "name": "Antakya", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.20655000", + "longitude": "36.15722000" + }, + { + "id": "107168", + "name": "Antakya İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.24444000", + "longitude": "36.20111000" + }, + { + "id": "107192", + "name": "Arsuz", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.41305000", + "longitude": "35.89033000" + }, + { + "id": "108913", + "name": "İskenderun", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.58718000", + "longitude": "36.17347000" + }, + { + "id": "108914", + "name": "İskenderun İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.49472000", + "longitude": "36.08972000" + }, + { + "id": "108859", + "name": "Çırtıman", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.52531000", + "longitude": "36.18129000" + }, + { + "id": "107278", + "name": "Balıklıdere", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.12096000", + "longitude": "36.10481000" + }, + { + "id": "107418", + "name": "Büyük Dalyan", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.28824000", + "longitude": "36.20903000" + }, + { + "id": "107420", + "name": "Büyükçat", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.11500000", + "longitude": "36.07740000" + }, + { + "id": "107328", + "name": "Belen", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.48866000", + "longitude": "36.19489000" + }, + { + "id": "107329", + "name": "Belen İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.49222000", + "longitude": "36.19342000" + }, + { + "id": "107376", + "name": "Boynuyoğun", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.16935000", + "longitude": "36.34249000" + }, + { + "id": "107539", + "name": "Dörtyol", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.83917000", + "longitude": "36.23025000" + }, + { + "id": "107540", + "name": "Dörtyol İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.83421000", + "longitude": "36.22773000" + }, + { + "id": "107458", + "name": "Defne", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.23739000", + "longitude": "36.16364000" + }, + { + "id": "107469", + "name": "Denizciler", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.64110000", + "longitude": "36.21418000" + }, + { + "id": "107534", + "name": "Dursunlu", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.16736000", + "longitude": "36.15788000" + }, + { + "id": "107600", + "name": "Erzin", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.95348000", + "longitude": "36.19839000" + }, + { + "id": "107601", + "name": "Erzin İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.95235000", + "longitude": "36.19616000" + }, + { + "id": "107736", + "name": "Gümüşgöze", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.14785000", + "longitude": "36.13284000" + }, + { + "id": "107747", + "name": "Günyazı", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.23307000", + "longitude": "36.11702000" + }, + { + "id": "107769", + "name": "Hacıpaşa", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.06907000", + "longitude": "36.37076000" + }, + { + "id": "107804", + "name": "Hassa", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.79944000", + "longitude": "36.51778000" + }, + { + "id": "107805", + "name": "Hassa İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.79805000", + "longitude": "36.52135000" + }, + { + "id": "107916", + "name": "Karasüleymanlı", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.34191000", + "longitude": "36.41431000" + }, + { + "id": "107938", + "name": "Kastal", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.24760000", + "longitude": "36.24090000" + }, + { + "id": "108124", + "name": "Kışlak", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "35.96750000", + "longitude": "36.15749000" + }, + { + "id": "108107", + "name": "Kırıkhan", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.49939000", + "longitude": "36.35755000" + }, + { + "id": "108108", + "name": "Kırıkhan İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.52444000", + "longitude": "36.43639000" + }, + { + "id": "108111", + "name": "Kızkalesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.46192000", + "longitude": "34.14199000" + }, + { + "id": "108050", + "name": "Kumlu İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.36508000", + "longitude": "36.45526000" + }, + { + "id": "108066", + "name": "Kuzeytepe", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.26505000", + "longitude": "36.15350000" + }, + { + "id": "108140", + "name": "Mahmutlar", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.94900000", + "longitude": "36.19231000" + }, + { + "id": "108320", + "name": "Payas", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.75600000", + "longitude": "36.21432000" + }, + { + "id": "108368", + "name": "Reyhanlı", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.26791000", + "longitude": "36.56747000" + }, + { + "id": "108369", + "name": "Reyhanlı İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.26359000", + "longitude": "36.56843000" + }, + { + "id": "108378", + "name": "Samankaya", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.15027000", + "longitude": "36.12829000" + }, + { + "id": "108444", + "name": "Serinyol", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.36139000", + "longitude": "36.21361000" + }, + { + "id": "108569", + "name": "Tepehan", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.15853000", + "longitude": "36.22860000" + }, + { + "id": "108595", + "name": "Toygarlı", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.21261000", + "longitude": "36.07262000" + }, + { + "id": "108635", + "name": "Uzunbağ", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.14023000", + "longitude": "36.03603000" + }, + { + "id": "108639", + "name": "Uzunkavak", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "36.35240000", + "longitude": "36.41952000" + }, + { + "id": "108679", + "name": "Yayladağı", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "35.90250000", + "longitude": "36.06272000" + }, + { + "id": "108680", + "name": "Yayladağı İlçesi", + "state_id": 2211, + "state_code": "31", + "country_id": 225, + "country_code": "TR", + "latitude": "35.95167000", + "longitude": "36.09750000" + }, + { + "id": "107852", + "name": "Iğdır", + "state_id": 2166, + "state_code": "76", + "country_id": 225, + "country_code": "TR", + "latitude": "39.92371000", + "longitude": "44.04500000" + }, + { + "id": "107899", + "name": "Karakoyunlu", + "state_id": 2166, + "state_code": "76", + "country_id": 225, + "country_code": "TR", + "latitude": "39.87036000", + "longitude": "43.63014000" + }, + { + "id": "107900", + "name": "Karakoyunlu İlçesi", + "state_id": 2166, + "state_code": "76", + "country_id": 225, + "country_code": "TR", + "latitude": "39.88040000", + "longitude": "43.63302000" + }, + { + "id": "108610", + "name": "Tuzluca İlçesi", + "state_id": 2166, + "state_code": "76", + "country_id": 225, + "country_code": "TR", + "latitude": "40.03863000", + "longitude": "43.65212000" + }, + { + "id": "107094", + "name": "Aksu", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.79889000", + "longitude": "31.07111000" + }, + { + "id": "107097", + "name": "Aksu İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.80973000", + "longitude": "31.08441000" + }, + { + "id": "107159", + "name": "Anamas", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.76667000", + "longitude": "30.80000000" + }, + { + "id": "107204", + "name": "Atabey", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95083000", + "longitude": "30.63861000" + }, + { + "id": "107205", + "name": "Atabey İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96125000", + "longitude": "30.64521000" + }, + { + "id": "108935", + "name": "Şarkîkaraağaç", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.07944000", + "longitude": "31.36639000" + }, + { + "id": "108936", + "name": "Şarkîkaraağaç İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.09023000", + "longitude": "31.37696000" + }, + { + "id": "107627", + "name": "Eğirdir", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.87462000", + "longitude": "30.85042000" + }, + { + "id": "107628", + "name": "Eğirdir İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.88511000", + "longitude": "30.81863000" + }, + { + "id": "107707", + "name": "Gönen", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95639000", + "longitude": "30.51140000" + }, + { + "id": "107710", + "name": "Gönen İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96632000", + "longitude": "30.52367000" + }, + { + "id": "107653", + "name": "Gelendost", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.12083000", + "longitude": "31.01528000" + }, + { + "id": "107654", + "name": "Gelendost İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.13199000", + "longitude": "31.02410000" + }, + { + "id": "107850", + "name": "Isparta", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.76444000", + "longitude": "30.55222000" + }, + { + "id": "107989", + "name": "Keçiborlu", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.94250000", + "longitude": "30.30222000" + }, + { + "id": "107990", + "name": "Keçiborlu İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95280000", + "longitude": "30.29164000" + }, + { + "id": "108318", + "name": "Pavlu Cebel", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.49737000", + "longitude": "30.97727000" + }, + { + "id": "108526", + "name": "Sütçüler İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.51120000", + "longitude": "30.95661000" + }, + { + "id": "108436", + "name": "Senirkent", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.10444000", + "longitude": "30.54861000" + }, + { + "id": "108437", + "name": "Senirkent İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.11409000", + "longitude": "30.55470000" + }, + { + "id": "108624", + "name": "Uluborlu", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.07825000", + "longitude": "30.45019000" + }, + { + "id": "108625", + "name": "Uluborlu İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.08856000", + "longitude": "30.45698000" + }, + { + "id": "108666", + "name": "Yalvaç", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.29556000", + "longitude": "31.17778000" + }, + { + "id": "108667", + "name": "Yalvaç İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "38.30578000", + "longitude": "31.19042000" + }, + { + "id": "108712", + "name": "Yenişarbademli", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.70778000", + "longitude": "31.38639000" + }, + { + "id": "108713", + "name": "Yenişarbademli İlçesi", + "state_id": 2222, + "state_code": "32", + "country_id": 225, + "country_code": "TR", + "latitude": "37.71936000", + "longitude": "31.37182000" + }, + { + "id": "107245", + "name": "Ağva", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.13806000", + "longitude": "29.85667000" + }, + { + "id": "107061", + "name": "Adalan", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.87590000", + "longitude": "29.08940000" + }, + { + "id": "107062", + "name": "Adalar", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.86913000", + "longitude": "29.12064000" + }, + { + "id": "107199", + "name": "Arıköy", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.23044000", + "longitude": "29.00425000" + }, + { + "id": "107188", + "name": "Arnavutköy", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.19674000", + "longitude": "28.73405000" + }, + { + "id": "107207", + "name": "Ataşehir", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.99104000", + "longitude": "29.13471000" + }, + { + "id": "107213", + "name": "Avcılar", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02355000", + "longitude": "28.71860000" + }, + { + "id": "108963", + "name": "Şişli", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.12514000", + "longitude": "29.00013000" + }, + { + "id": "108958", + "name": "Şile", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.12902000", + "longitude": "29.61845000" + }, + { + "id": "108927", + "name": "İçmeler", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.84639000", + "longitude": "29.30889000" + }, + { + "id": "108871", + "name": "Ümraniye", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.03482000", + "longitude": "29.10896000" + }, + { + "id": "108874", + "name": "Üsküdar", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02274000", + "longitude": "29.01366000" + }, + { + "id": "108780", + "name": "Çanta", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.07897000", + "longitude": "28.08323000" + }, + { + "id": "108788", + "name": "Çatalca", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.29651000", + "longitude": "28.45419000" + }, + { + "id": "108812", + "name": "Çekmeköy", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.03819000", + "longitude": "29.20029000" + }, + { + "id": "107312", + "name": "Başakşehir", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.09203000", + "longitude": "28.80203000" + }, + { + "id": "107308", + "name": "Bağcılar", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.04275000", + "longitude": "28.83625000" + }, + { + "id": "107261", + "name": "Bahçelievler", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.00652000", + "longitude": "28.84099000" + }, + { + "id": "107267", + "name": "Bakırköy", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.98388000", + "longitude": "28.83541000" + }, + { + "id": "107302", + "name": "Bayrampaşa", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.04691000", + "longitude": "28.90278000" + }, + { + "id": "107421", + "name": "Büyükçavuşlu", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.24002000", + "longitude": "28.06331000" + }, + { + "id": "107422", + "name": "Büyükçekmece", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.04521000", + "longitude": "28.59573000" + }, + { + "id": "107349", + "name": "Beşiktaş", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.07122000", + "longitude": "29.02321000" + }, + { + "id": "107337", + "name": "Beykoz", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.13774000", + "longitude": "29.16932000" + }, + { + "id": "107338", + "name": "Beylikdüzü", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.00322000", + "longitude": "28.64067000" + }, + { + "id": "107341", + "name": "Beyoğlu", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.03786000", + "longitude": "28.96767000" + }, + { + "id": "107375", + "name": "Boyalık", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.26337000", + "longitude": "28.63142000" + }, + { + "id": "107425", + "name": "Celâliye", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.05188000", + "longitude": "28.41867000" + }, + { + "id": "107536", + "name": "Durusu", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.30337000", + "longitude": "28.67635000" + }, + { + "id": "107575", + "name": "Eminönü", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.01766000", + "longitude": "28.97438000" + }, + { + "id": "107604", + "name": "Esenler", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.07925000", + "longitude": "28.85235000" + }, + { + "id": "107605", + "name": "Esenyurt", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.04000000", + "longitude": "28.66161000" + }, + { + "id": "107622", + "name": "Eyüpsultan", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.19904000", + "longitude": "28.88667000" + }, + { + "id": "107632", + "name": "Fatih", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.01746000", + "longitude": "28.94053000" + }, + { + "id": "107647", + "name": "Gaziosmanpaşa", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.07857000", + "longitude": "28.89679000" + }, + { + "id": "107746", + "name": "Güngören", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.01787000", + "longitude": "28.87882000" + }, + { + "id": "108756", + "name": "güngören merter", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.00711000", + "longitude": "28.88795000" + }, + { + "id": "107754", + "name": "Gürpınar", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.99256000", + "longitude": "28.61428000" + }, + { + "id": "107851", + "name": "Istanbul", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.01384000", + "longitude": "28.94966000" + }, + { + "id": "107863", + "name": "Kadıköy", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.98229000", + "longitude": "29.09032000" + }, + { + "id": "107892", + "name": "Karacaköy", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.40338000", + "longitude": "28.38055000" + }, + { + "id": "107933", + "name": "Kartal", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.91197000", + "longitude": "29.21190000" + }, + { + "id": "107942", + "name": "Kavaklı", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.09258000", + "longitude": "28.33172000" + }, + { + "id": "108071", + "name": "Kâğıthane", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.08319000", + "longitude": "28.97826000" + }, + { + "id": "108100", + "name": "Kınalı", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.90713000", + "longitude": "29.05499000" + }, + { + "id": "108095", + "name": "Küçükçekmece", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.06947000", + "longitude": "28.76983000" + }, + { + "id": "108047", + "name": "Kumburgaz", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02108000", + "longitude": "28.48033000" + }, + { + "id": "108146", + "name": "Maltepe", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.95890000", + "longitude": "29.17866000" + }, + { + "id": "108199", + "name": "Merter Keresteciler", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.01295000", + "longitude": "28.88593000" + }, + { + "id": "108213", + "name": "Mimarsinan", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.01790000", + "longitude": "28.56176000" + }, + { + "id": "108221", + "name": "Muratbey", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.09630000", + "longitude": "28.49227000" + }, + { + "id": "108287", + "name": "Ortaköy", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.10154000", + "longitude": "28.37588000" + }, + { + "id": "108336", + "name": "Pendik", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94577000", + "longitude": "29.33019000" + }, + { + "id": "108382", + "name": "Sancaktepe", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.98949000", + "longitude": "29.24320000" + }, + { + "id": "108411", + "name": "Sarıyer", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.21482000", + "longitude": "29.05678000" + }, + { + "id": "108432", + "name": "Selimpaşa", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.05448000", + "longitude": "28.36678000" + }, + { + "id": "108460", + "name": "Silivri", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.18116000", + "longitude": "28.19890000" + }, + { + "id": "108492", + "name": "Sultanbeyli", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.95264000", + "longitude": "29.26797000" + }, + { + "id": "108495", + "name": "Sultangazi", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.21792000", + "longitude": "28.71740000" + }, + { + "id": "108568", + "name": "Tepecik", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02931000", + "longitude": "28.54978000" + }, + { + "id": "108609", + "name": "Tuzla", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.86368000", + "longitude": "29.31942000" + }, + { + "id": "108631", + "name": "Umraniye", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.01643000", + "longitude": "29.12476000" + }, + { + "id": "108662", + "name": "Yakuplu", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "40.98894000", + "longitude": "28.67582000" + }, + { + "id": "108750", + "name": "Zeytinburnu", + "state_id": 2170, + "state_code": "34", + "country_id": 225, + "country_code": "TR", + "latitude": "41.00824000", + "longitude": "28.90952000" + }, + { + "id": "107069", + "name": "Afşin", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "38.24769000", + "longitude": "36.91399000" + }, + { + "id": "107070", + "name": "Afşin İlçesi", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "38.25795000", + "longitude": "36.91897000" + }, + { + "id": "107164", + "name": "Andırın", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.57757000", + "longitude": "36.35492000" + }, + { + "id": "107165", + "name": "Andırın İlçesi", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.58791000", + "longitude": "36.36112000" + }, + { + "id": "108808", + "name": "Çağlayancerit", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.74523000", + "longitude": "37.28618000" + }, + { + "id": "108809", + "name": "Çağlayancerit İlçesi", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.74976000", + "longitude": "37.29033000" + }, + { + "id": "107424", + "name": "Celeyke", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "38.05974000", + "longitude": "37.18786000" + }, + { + "id": "107529", + "name": "Dulkadiroğlu", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.58254000", + "longitude": "36.91973000" + }, + { + "id": "107556", + "name": "Ekinözü İlçesi", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "38.07007000", + "longitude": "37.19414000" + }, + { + "id": "107562", + "name": "Elbistan", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "38.20591000", + "longitude": "37.19830000" + }, + { + "id": "107563", + "name": "Elbistan İlçesi", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "38.21542000", + "longitude": "37.20463000" + }, + { + "id": "107681", + "name": "Göksun", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "38.02096000", + "longitude": "36.49730000" + }, + { + "id": "107682", + "name": "Göksun İlçesi", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "38.03089000", + "longitude": "36.50239000" + }, + { + "id": "107869", + "name": "Kahramanmaraş", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.58470000", + "longitude": "36.92641000" + }, + { + "id": "108255", + "name": "Nurhak", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96366000", + "longitude": "37.44047000" + }, + { + "id": "108256", + "name": "Nurhak İlçesi", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96638000", + "longitude": "37.44107000" + }, + { + "id": "108270", + "name": "Onikişubat", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.59002000", + "longitude": "36.90548000" + }, + { + "id": "108325", + "name": "Pazarcık", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.48685000", + "longitude": "37.29961000" + }, + { + "id": "108326", + "name": "Pazarcık İlçesi", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.59467000", + "longitude": "36.93168000" + }, + { + "id": "108521", + "name": "Süleymanlı", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.87264000", + "longitude": "36.81714000" + }, + { + "id": "108615", + "name": "Türkoğlu İlçesi", + "state_id": 2227, + "state_code": "46", + "country_id": 225, + "country_code": "TR", + "latitude": "37.38417000", + "longitude": "36.84626000" + }, + { + "id": "107554", + "name": "Eflani", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "41.42289000", + "longitude": "32.95761000" + }, + { + "id": "107555", + "name": "Eflani İlçesi", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "41.43169000", + "longitude": "32.94765000" + }, + { + "id": "107607", + "name": "Eskipazar İlçesi", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "40.95207000", + "longitude": "32.54604000" + }, + { + "id": "107723", + "name": "Gözyeri", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "40.86596000", + "longitude": "32.54167000" + }, + { + "id": "107889", + "name": "Karabük", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "41.20488000", + "longitude": "32.62768000" + }, + { + "id": "108299", + "name": "Ovacık İlçesi", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "41.08029000", + "longitude": "32.93224000" + }, + { + "id": "108372", + "name": "Safranbolu", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "41.25083000", + "longitude": "32.69417000" + }, + { + "id": "108373", + "name": "Safranbolu İlçesi", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "41.26029000", + "longitude": "32.69928000" + }, + { + "id": "108693", + "name": "Yenice", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "41.19962000", + "longitude": "32.33133000" + }, + { + "id": "108694", + "name": "Yenice İlçesi", + "state_id": 2223, + "state_code": "78", + "country_id": 225, + "country_code": "TR", + "latitude": "41.21014000", + "longitude": "32.33661000" + }, + { + "id": "107228", + "name": "Ayrancı İlçesi", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "37.37111000", + "longitude": "33.69291000" + }, + { + "id": "108905", + "name": "İnönü", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "37.31667000", + "longitude": "33.76667000" + }, + { + "id": "107320", + "name": "Başyayla", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "36.75337000", + "longitude": "32.68018000" + }, + { + "id": "107321", + "name": "Başyayla İlçesi", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "36.76219000", + "longitude": "32.68863000" + }, + { + "id": "107596", + "name": "Ermenek", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "36.64043000", + "longitude": "32.89179000" + }, + { + "id": "107597", + "name": "Ermenek İlçesi", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "36.65058000", + "longitude": "32.89698000" + }, + { + "id": "107905", + "name": "Karaman", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "37.18111000", + "longitude": "33.21500000" + }, + { + "id": "107958", + "name": "Kazımkarabekir", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "37.23028000", + "longitude": "32.95889000" + }, + { + "id": "107959", + "name": "Kazımkarabekir İlçesi", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "37.24035000", + "longitude": "32.96413000" + }, + { + "id": "108407", + "name": "Sarıveliler", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "36.69705000", + "longitude": "32.61203000" + }, + { + "id": "108408", + "name": "Sarıveliler İlçesi", + "state_id": 2184, + "state_code": "70", + "country_id": 225, + "country_code": "TR", + "latitude": "36.70177000", + "longitude": "32.62647000" + }, + { + "id": "107098", + "name": "Akyaka", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.74093000", + "longitude": "43.61432000" + }, + { + "id": "107099", + "name": "Akyaka İlçesi", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.74093000", + "longitude": "43.61432000" + }, + { + "id": "107189", + "name": "Arpaçay", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.84522000", + "longitude": "43.32747000" + }, + { + "id": "107190", + "name": "Arpaçay İlçesi", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.84601000", + "longitude": "43.32878000" + }, + { + "id": "107494", + "name": "Digor İlçesi", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.37515000", + "longitude": "43.41361000" + }, + { + "id": "107960", + "name": "Kağızman", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.15669000", + "longitude": "43.13424000" + }, + { + "id": "107961", + "name": "Kağızman İlçesi", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.14026000", + "longitude": "43.12003000" + }, + { + "id": "107931", + "name": "Kars", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.59825000", + "longitude": "43.08548000" + }, + { + "id": "108401", + "name": "Sarıkamış", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.32769000", + "longitude": "42.58705000" + }, + { + "id": "108402", + "name": "Sarıkamış İlçesi", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.33139000", + "longitude": "42.59014000" + }, + { + "id": "108430", + "name": "Selim", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.45772000", + "longitude": "42.78287000" + }, + { + "id": "108431", + "name": "Selim İlçesi", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.46439000", + "longitude": "42.78960000" + }, + { + "id": "108511", + "name": "Susuz", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77910000", + "longitude": "43.12769000" + }, + { + "id": "108512", + "name": "Susuz İlçesi", + "state_id": 2208, + "state_code": "36", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77929000", + "longitude": "43.13089000" + }, + { + "id": "107243", + "name": "Ağlı İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.69283000", + "longitude": "33.54487000" + }, + { + "id": "107052", + "name": "Abana", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.97858000", + "longitude": "34.01100000" + }, + { + "id": "107053", + "name": "Abana İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.97079000", + "longitude": "34.00382000" + }, + { + "id": "107177", + "name": "Araç", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.24222000", + "longitude": "33.32767000" + }, + { + "id": "107178", + "name": "Araç İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.25152000", + "longitude": "33.33729000" + }, + { + "id": "107235", + "name": "Azdavay", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.64267000", + "longitude": "33.30000000" + }, + { + "id": "107236", + "name": "Azdavay İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.65322000", + "longitude": "33.30980000" + }, + { + "id": "108954", + "name": "Şenpazar İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.81651000", + "longitude": "33.21766000" + }, + { + "id": "108881", + "name": "İhsangazi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.20432000", + "longitude": "33.55455000" + }, + { + "id": "108882", + "name": "İhsangazi İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.20901000", + "longitude": "33.56968000" + }, + { + "id": "108899", + "name": "İnebolu", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.97472000", + "longitude": "33.76083000" + }, + { + "id": "108900", + "name": "İnebolu İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.96616000", + "longitude": "33.76566000" + }, + { + "id": "108791", + "name": "Çatalzeytin İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.93795000", + "longitude": "34.20285000" + }, + { + "id": "107383", + "name": "Bozkurt", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.95769000", + "longitude": "34.01087000" + }, + { + "id": "107385", + "name": "Bozkurt İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.96789000", + "longitude": "34.01908000" + }, + { + "id": "107430", + "name": "Cide", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.85583000", + "longitude": "33.03977000" + }, + { + "id": "107439", + "name": "Daday", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.47866000", + "longitude": "33.46667000" + }, + { + "id": "107440", + "name": "Daday İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.48714000", + "longitude": "33.45798000" + }, + { + "id": "107488", + "name": "Devrekani", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.60303000", + "longitude": "33.83922000" + }, + { + "id": "107489", + "name": "Devrekani İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.61355000", + "longitude": "33.84603000" + }, + { + "id": "107521", + "name": "Doğanyurt", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "42.00457000", + "longitude": "33.46029000" + }, + { + "id": "107522", + "name": "Doğanyurt İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "42.00051000", + "longitude": "33.47343000" + }, + { + "id": "107793", + "name": "Hanönü", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.62705000", + "longitude": "34.46667000" + }, + { + "id": "107794", + "name": "Hanönü İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.63731000", + "longitude": "34.47790000" + }, + { + "id": "107939", + "name": "Kastamonu", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.37805000", + "longitude": "33.77528000" + }, + { + "id": "108088", + "name": "Küre", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.80578000", + "longitude": "33.71161000" + }, + { + "id": "108089", + "name": "Küre İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.81643000", + "longitude": "33.71606000" + }, + { + "id": "108358", + "name": "Pınarbaşı", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.60388000", + "longitude": "33.11099000" + }, + { + "id": "108360", + "name": "Pınarbaşı İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.61508000", + "longitude": "33.11306000" + }, + { + "id": "108448", + "name": "Seydiler", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.62005000", + "longitude": "33.71815000" + }, + { + "id": "108449", + "name": "Seydiler İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.61920000", + "longitude": "33.73254000" + }, + { + "id": "108548", + "name": "Taşköprü", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.50980000", + "longitude": "34.21414000" + }, + { + "id": "108550", + "name": "Taşköprü İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.51834000", + "longitude": "34.20272000" + }, + { + "id": "108593", + "name": "Tosya", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.01545000", + "longitude": "34.04013000" + }, + { + "id": "108594", + "name": "Tosya İlçesi", + "state_id": 2197, + "state_code": "37", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02639000", + "longitude": "34.04442000" + }, + { + "id": "107087", + "name": "Akkışla", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "39.00222000", + "longitude": "36.17381000" + }, + { + "id": "107088", + "name": "Akkışla İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "39.01218000", + "longitude": "36.17905000" + }, + { + "id": "108896", + "name": "İncesu", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.62240000", + "longitude": "35.18261000" + }, + { + "id": "108870", + "name": "Özvatan İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "39.11737000", + "longitude": "35.71149000" + }, + { + "id": "107416", + "name": "Bünyan", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.84630000", + "longitude": "35.86033000" + }, + { + "id": "107417", + "name": "Bünyan İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.85461000", + "longitude": "35.85195000" + }, + { + "id": "107485", + "name": "Develi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.26789000", + "longitude": "35.59161000" + }, + { + "id": "107636", + "name": "Felahiye", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "39.09056000", + "longitude": "35.56722000" + }, + { + "id": "107637", + "name": "Felahiye İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "39.10166000", + "longitude": "35.57162000" + }, + { + "id": "107767", + "name": "Hacılar", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.64631000", + "longitude": "35.44937000" + }, + { + "id": "107768", + "name": "Hacılar İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.65710000", + "longitude": "35.45832000" + }, + { + "id": "107849", + "name": "Incesu", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.63789000", + "longitude": "35.19394000" + }, + { + "id": "107954", + "name": "Kayseri", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.73222000", + "longitude": "35.48528000" + }, + { + "id": "108010", + "name": "Kocasinan", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.87959000", + "longitude": "35.35540000" + }, + { + "id": "108169", + "name": "Melikgazi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.77933000", + "longitude": "35.66076000" + }, + { + "id": "108355", + "name": "Pınarbaşı", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.72285000", + "longitude": "36.39314000" + }, + { + "id": "108359", + "name": "Pınarbaşı İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.73231000", + "longitude": "36.38219000" + }, + { + "id": "108405", + "name": "Sarıoğlan", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "39.07694000", + "longitude": "35.96671000" + }, + { + "id": "108406", + "name": "Sarıoğlan İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "39.08765000", + "longitude": "35.97445000" + }, + { + "id": "108412", + "name": "Sarız", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.47917000", + "longitude": "36.49898000" + }, + { + "id": "108413", + "name": "Sarız İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.48015000", + "longitude": "36.51488000" + }, + { + "id": "108531", + "name": "Talas", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.69080000", + "longitude": "35.55380000" + }, + { + "id": "108532", + "name": "Talas İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.70161000", + "longitude": "35.56056000" + }, + { + "id": "108581", + "name": "Tomarza", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.44722000", + "longitude": "35.79917000" + }, + { + "id": "108582", + "name": "Tomarza İlçesi", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.45780000", + "longitude": "35.80465000" + }, + { + "id": "108658", + "name": "Yahyalı", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.10228000", + "longitude": "35.35704000" + }, + { + "id": "108657", + "name": "Yahyali", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96660000", + "longitude": "35.44012000" + }, + { + "id": "108723", + "name": "Yeşilhisar", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.35232000", + "longitude": "35.08873000" + }, + { + "id": "108720", + "name": "Yesilhisar", + "state_id": 2200, + "state_code": "38", + "country_id": 225, + "country_code": "TR", + "latitude": "38.33475000", + "longitude": "35.11795000" + }, + { + "id": "107109", + "name": "Akçakent İlçesi", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.63184000", + "longitude": "34.08468000" + }, + { + "id": "107089", + "name": "Akpınar", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.45005000", + "longitude": "33.96484000" + }, + { + "id": "107090", + "name": "Akpınar İlçesi", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.45879000", + "longitude": "33.96975000" + }, + { + "id": "108838", + "name": "Çiçekdağı", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.60694000", + "longitude": "34.40861000" + }, + { + "id": "108839", + "name": "Çiçekdağı İlçesi", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.61643000", + "longitude": "34.41834000" + }, + { + "id": "107390", + "name": "Boztepe İlçesi", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.27979000", + "longitude": "34.26657000" + }, + { + "id": "107879", + "name": "Kaman", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.35750000", + "longitude": "33.72389000" + }, + { + "id": "107880", + "name": "Kaman İlçesi", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.36717000", + "longitude": "33.72784000" + }, + { + "id": "108110", + "name": "Kırşehir", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.14583000", + "longitude": "34.16389000" + }, + { + "id": "108215", + "name": "Mucur", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.06147000", + "longitude": "34.38286000" + }, + { + "id": "108216", + "name": "Mucur İlçesi", + "state_id": 2180, + "state_code": "40", + "country_id": 225, + "country_code": "TR", + "latitude": "39.07146000", + "longitude": "34.38670000" + }, + { + "id": "108813", + "name": "Çelebi İlçesi", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.47470000", + "longitude": "33.52895000" + }, + { + "id": "107264", + "name": "Bahşılı İlçesi", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.80979000", + "longitude": "33.44080000" + }, + { + "id": "107279", + "name": "Balışeyh", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.91411000", + "longitude": "33.72333000" + }, + { + "id": "107280", + "name": "Balışeyh İlçesi", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.92129000", + "longitude": "33.73186000" + }, + { + "id": "107459", + "name": "Delice", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.95371000", + "longitude": "34.02587000" + }, + { + "id": "107460", + "name": "Delice İlçesi", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.96452000", + "longitude": "34.03088000" + }, + { + "id": "107897", + "name": "Karakeçili", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.59417000", + "longitude": "33.37778000" + }, + { + "id": "107898", + "name": "Karakeçili İlçesi", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.60471000", + "longitude": "33.38263000" + }, + { + "id": "108109", + "name": "Kırıkkale", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.84528000", + "longitude": "33.50639000" + }, + { + "id": "107985", + "name": "Keskin", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.67306000", + "longitude": "33.61361000" + }, + { + "id": "107986", + "name": "Keskin İlçesi", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.68273000", + "longitude": "33.61841000" + }, + { + "id": "108490", + "name": "Sulakyurt", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "40.15733000", + "longitude": "33.71600000" + }, + { + "id": "108491", + "name": "Sulakyurt İlçesi", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "40.16751000", + "longitude": "33.72053000" + }, + { + "id": "108659", + "name": "Yahşihan İlçesi", + "state_id": 2178, + "state_code": "71", + "country_id": 225, + "country_code": "TR", + "latitude": "39.85992000", + "longitude": "33.45615000" + }, + { + "id": "108875", + "name": "Üsküp", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.73583000", + "longitude": "27.40528000" + }, + { + "id": "107254", + "name": "Babaeski", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.43250000", + "longitude": "27.09306000" + }, + { + "id": "107255", + "name": "Babaeski İlçesi", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.44371000", + "longitude": "27.10458000" + }, + { + "id": "107463", + "name": "Demirköy İlçesi", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.83567000", + "longitude": "27.77137000" + }, + { + "id": "108106", + "name": "Kırklareli", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.73508000", + "longitude": "27.22521000" + }, + { + "id": "108011", + "name": "Kofçaz", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.94481000", + "longitude": "27.15829000" + }, + { + "id": "108012", + "name": "Kofçaz İlçesi", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.95470000", + "longitude": "27.17165000" + }, + { + "id": "108136", + "name": "Lüleburgaz İlçesi", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.41495000", + "longitude": "27.37325000" + }, + { + "id": "108362", + "name": "Pınarhisar", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.62417000", + "longitude": "27.52000000" + }, + { + "id": "108363", + "name": "Pınarhisar İlçesi", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.63517000", + "longitude": "27.52951000" + }, + { + "id": "108333", + "name": "Pehlivanköy", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.34812000", + "longitude": "26.92522000" + }, + { + "id": "108334", + "name": "Pehlivanköy İlçesi", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.35922000", + "longitude": "26.93445000" + }, + { + "id": "108655", + "name": "Vize", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.57250000", + "longitude": "27.76583000" + }, + { + "id": "108656", + "name": "Vize İlçesi", + "state_id": 2176, + "state_code": "39", + "country_id": 225, + "country_code": "TR", + "latitude": "41.58294000", + "longitude": "27.77452000" + }, + { + "id": "107147", + "name": "Altıntaş İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.06932000", + "longitude": "30.12048000" + }, + { + "id": "107202", + "name": "Aslanapa", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.21581000", + "longitude": "29.86990000" + }, + { + "id": "107203", + "name": "Aslanapa İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.22588000", + "longitude": "29.88222000" + }, + { + "id": "108933", + "name": "Şaphane", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.02730000", + "longitude": "29.22218000" + }, + { + "id": "108934", + "name": "Şaphane İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.03599000", + "longitude": "29.22743000" + }, + { + "id": "108792", + "name": "Çavdarhisar İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.20333000", + "longitude": "29.63094000" + }, + { + "id": "107508", + "name": "Domaniç", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.80194000", + "longitude": "29.60918000" + }, + { + "id": "107509", + "name": "Domaniç İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.80935000", + "longitude": "29.62205000" + }, + { + "id": "107530", + "name": "Dumlupınar", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "38.85408000", + "longitude": "29.97720000" + }, + { + "id": "107531", + "name": "Dumlupınar İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "38.87639000", + "longitude": "30.00639000" + }, + { + "id": "107573", + "name": "Emet", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.34300000", + "longitude": "29.25847000" + }, + { + "id": "107574", + "name": "Emet İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.35219000", + "longitude": "29.27431000" + }, + { + "id": "107651", + "name": "Gediz", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "38.99389000", + "longitude": "29.39131000" + }, + { + "id": "107652", + "name": "Gediz İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.05272000", + "longitude": "29.41755000" + }, + { + "id": "107828", + "name": "Hisarcık İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.25987000", + "longitude": "29.24134000" + }, + { + "id": "108092", + "name": "Kütahya", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.42417000", + "longitude": "29.98333000" + }, + { + "id": "108327", + "name": "Pazarlar", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "38.99500000", + "longitude": "29.12583000" + }, + { + "id": "108328", + "name": "Pazarlar İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.00509000", + "longitude": "29.13593000" + }, + { + "id": "108465", + "name": "Simav", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.08820000", + "longitude": "28.97767000" + }, + { + "id": "108466", + "name": "Simav İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.09822000", + "longitude": "28.96464000" + }, + { + "id": "108543", + "name": "Tavşanlı", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.54237000", + "longitude": "29.49866000" + }, + { + "id": "108545", + "name": "Tavşanlı İlçesi", + "state_id": 2149, + "state_code": "43", + "country_id": 225, + "country_code": "TR", + "latitude": "39.54897000", + "longitude": "29.51649000" + }, + { + "id": "107559", + "name": "Elbeyli", + "state_id": 2154, + "state_code": "79", + "country_id": 225, + "country_code": "TR", + "latitude": "36.67417000", + "longitude": "37.46667000" + }, + { + "id": "107561", + "name": "Elbeyli İlçesi", + "state_id": 2154, + "state_code": "79", + "country_id": 225, + "country_code": "TR", + "latitude": "36.72556000", + "longitude": "37.44000000" + }, + { + "id": "107997", + "name": "Kilis", + "state_id": 2154, + "state_code": "79", + "country_id": 225, + "country_code": "TR", + "latitude": "36.71611000", + "longitude": "37.11500000" + }, + { + "id": "108228", + "name": "Musabeyli", + "state_id": 2154, + "state_code": "79", + "country_id": 225, + "country_code": "TR", + "latitude": "36.88639000", + "longitude": "36.91861000" + }, + { + "id": "108229", + "name": "Musabeyli İlçesi", + "state_id": 2154, + "state_code": "79", + "country_id": 225, + "country_code": "TR", + "latitude": "36.90472000", + "longitude": "36.96278000" + }, + { + "id": "108345", + "name": "Polateli İlçesi", + "state_id": 2154, + "state_code": "79", + "country_id": 225, + "country_code": "TR", + "latitude": "36.83694000", + "longitude": "37.15083000" + }, + { + "id": "108884", + "name": "İhsaniye", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.69087000", + "longitude": "29.83472000" + }, + { + "id": "108924", + "name": "İzmit", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77521000", + "longitude": "29.94624000" + }, + { + "id": "108807", + "name": "Çayırova", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.82784000", + "longitude": "29.39014000" + }, + { + "id": "107314", + "name": "Başiskele", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.64574000", + "longitude": "29.90015000" + }, + { + "id": "107260", + "name": "Bahçecik", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.66810000", + "longitude": "29.91478000" + }, + { + "id": "107276", + "name": "Balçık", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.87250000", + "longitude": "29.42833000" + }, + { + "id": "107451", + "name": "Darıca", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.76780000", + "longitude": "29.37126000" + }, + { + "id": "107479", + "name": "Derince", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.75694000", + "longitude": "29.81472000" + }, + { + "id": "107480", + "name": "Derince İlçesi", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.75392000", + "longitude": "29.82307000" + }, + { + "id": "107497", + "name": "Dilovası", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77972000", + "longitude": "29.53500000" + }, + { + "id": "107690", + "name": "Gölcük", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.70323000", + "longitude": "29.87216000" + }, + { + "id": "107691", + "name": "Gölcük İlçesi", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.72010000", + "longitude": "29.82031000" + }, + { + "id": "107650", + "name": "Gebze", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.80276000", + "longitude": "29.43068000" + }, + { + "id": "107780", + "name": "Halıdere", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.71604000", + "longitude": "29.75223000" + }, + { + "id": "107881", + "name": "Kandıra", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "41.07000000", + "longitude": "30.15262000" + }, + { + "id": "107882", + "name": "Kandıra İlçesi", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "41.08034000", + "longitude": "30.15798000" + }, + { + "id": "107908", + "name": "Karamürsel", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.69129000", + "longitude": "29.61649000" + }, + { + "id": "107909", + "name": "Karamürsel İlçesi", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.68378000", + "longitude": "29.60691000" + }, + { + "id": "107936", + "name": "Karşıyaka", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.69360000", + "longitude": "29.94154000" + }, + { + "id": "107934", + "name": "Kartepe", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.75246000", + "longitude": "30.02787000" + }, + { + "id": "108077", + "name": "Körfez", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.76704000", + "longitude": "29.78275000" + }, + { + "id": "108078", + "name": "Körfez İlçesi", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77594000", + "longitude": "29.79435000" + }, + { + "id": "108081", + "name": "Köseköy", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.74012000", + "longitude": "30.00556000" + }, + { + "id": "107966", + "name": "Kefken", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "41.16833000", + "longitude": "30.22972000" + }, + { + "id": "108039", + "name": "Kullar", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.72419000", + "longitude": "29.98943000" + }, + { + "id": "108542", + "name": "Tavşancıl", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77083000", + "longitude": "29.57194000" + }, + { + "id": "108544", + "name": "Tavşanlı", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.81876000", + "longitude": "29.51136000" + }, + { + "id": "108620", + "name": "Ulaşlı", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.70583000", + "longitude": "29.69608000" + }, + { + "id": "108664", + "name": "Yalakdere", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.60636000", + "longitude": "29.56225000" + }, + { + "id": "108743", + "name": "Yuvacık", + "state_id": 2195, + "state_code": "41", + "country_id": 225, + "country_code": "TR", + "latitude": "40.68815000", + "longitude": "29.96738000" + }, + { + "id": "107075", + "name": "Ahırlı İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.24828000", + "longitude": "32.12419000" + }, + { + "id": "107115", + "name": "Akşehir", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.35750000", + "longitude": "31.41639000" + }, + { + "id": "107116", + "name": "Akşehir İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.36730000", + "longitude": "31.41983000" + }, + { + "id": "107112", + "name": "Akören İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.46265000", + "longitude": "32.37489000" + }, + { + "id": "107140", + "name": "Altınekin", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.30778000", + "longitude": "32.86861000" + }, + { + "id": "107141", + "name": "Altınekin İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.31787000", + "longitude": "32.87447000" + }, + { + "id": "108789", + "name": "Çatalhöyük", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.66847000", + "longitude": "32.82689000" + }, + { + "id": "108816", + "name": "Çeltik İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "39.03388000", + "longitude": "31.79408000" + }, + { + "id": "108849", + "name": "Çumra", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.57320000", + "longitude": "32.77446000" + }, + { + "id": "108850", + "name": "Çumra İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.58165000", + "longitude": "32.77971000" + }, + { + "id": "107345", + "name": "Beyşehir", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.67735000", + "longitude": "31.72458000" + }, + { + "id": "107346", + "name": "Beyşehir İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.68668000", + "longitude": "31.73051000" + }, + { + "id": "107386", + "name": "Bozkır", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.18963000", + "longitude": "32.24736000" + }, + { + "id": "107387", + "name": "Bozkır İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.19978000", + "longitude": "32.25234000" + }, + { + "id": "107431", + "name": "Cihanbeyli", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.66072000", + "longitude": "32.92437000" + }, + { + "id": "107432", + "name": "Cihanbeyli District", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.67131000", + "longitude": "32.92522000" + }, + { + "id": "107471", + "name": "Derbent", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.01422000", + "longitude": "32.01639000" + }, + { + "id": "107472", + "name": "Derbent İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.02403000", + "longitude": "32.02463000" + }, + { + "id": "107473", + "name": "Derebucak", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.39179000", + "longitude": "31.50918000" + }, + { + "id": "107474", + "name": "Derebucak İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.40180000", + "longitude": "31.51665000" + }, + { + "id": "107513", + "name": "Doğanhisar", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.14630000", + "longitude": "31.67648000" + }, + { + "id": "107514", + "name": "Doğanhisar İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.15650000", + "longitude": "31.68226000" + }, + { + "id": "107578", + "name": "Emirgazi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.90222000", + "longitude": "33.83722000" + }, + { + "id": "107579", + "name": "Emirgazi İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.91229000", + "longitude": "33.84666000" + }, + { + "id": "107589", + "name": "Ereğli", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.51333000", + "longitude": "34.04672000" + }, + { + "id": "107591", + "name": "Ereğli İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.52305000", + "longitude": "34.05553000" + }, + { + "id": "107745", + "name": "Güneysınır İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.27977000", + "longitude": "32.73735000" + }, + { + "id": "107770", + "name": "Hadim", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "36.98776000", + "longitude": "32.45674000" + }, + { + "id": "107771", + "name": "Hadim İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "36.99794000", + "longitude": "32.46117000" + }, + { + "id": "107778", + "name": "Halkapınar", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.43394000", + "longitude": "34.18743000" + }, + { + "id": "107779", + "name": "Halkapınar İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.44361000", + "longitude": "34.19336000" + }, + { + "id": "107840", + "name": "Hüyük", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95388000", + "longitude": "31.59639000" + }, + { + "id": "107841", + "name": "Hüyük İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96331000", + "longitude": "31.60010000" + }, + { + "id": "107846", + "name": "Ilgın", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.27917000", + "longitude": "31.91389000" + }, + { + "id": "107847", + "name": "Ilgın İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.28942000", + "longitude": "31.91916000" + }, + { + "id": "107864", + "name": "Kadınhanı", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.23972000", + "longitude": "32.21139000" + }, + { + "id": "107865", + "name": "Kadınhanı İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.24958000", + "longitude": "32.21730000" + }, + { + "id": "107912", + "name": "Karapınar", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.71596000", + "longitude": "33.55064000" + }, + { + "id": "107913", + "name": "Karapınar İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.72637000", + "longitude": "33.55759000" + }, + { + "id": "107917", + "name": "Karatay", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.94001000", + "longitude": "32.99828000" + }, + { + "id": "108016", + "name": "Konya", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.87135000", + "longitude": "32.48464000" + }, + { + "id": "108042", + "name": "Kulu", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "39.09513000", + "longitude": "33.07989000" + }, + { + "id": "108043", + "name": "Kulu İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "39.10536000", + "longitude": "33.08858000" + }, + { + "id": "108065", + "name": "Kuyulusebil", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.65389000", + "longitude": "32.52972000" + }, + { + "id": "108175", + "name": "Meram İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.83984000", + "longitude": "32.47111000" + }, + { + "id": "108300", + "name": "Ovakavağı", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.71079000", + "longitude": "32.93482000" + }, + { + "id": "108394", + "name": "Sarayönü", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.26201000", + "longitude": "32.40457000" + }, + { + "id": "108395", + "name": "Sarayönü İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.27030000", + "longitude": "32.41188000" + }, + { + "id": "108427", + "name": "Selcuklu", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.05761000", + "longitude": "32.54088000" + }, + { + "id": "108450", + "name": "Seydişehir", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.41926000", + "longitude": "31.84527000" + }, + { + "id": "108451", + "name": "Seydişehir İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.42930000", + "longitude": "31.85046000" + }, + { + "id": "108546", + "name": "Taşkent", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "36.92430000", + "longitude": "32.49131000" + }, + { + "id": "108547", + "name": "Taşkent İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "36.93392000", + "longitude": "32.49529000" + }, + { + "id": "108611", + "name": "Tuzlukçu", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.47778000", + "longitude": "31.62639000" + }, + { + "id": "108612", + "name": "Tuzlukçu İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.48788000", + "longitude": "31.63047000" + }, + { + "id": "108668", + "name": "Yalıhüyük", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30077000", + "longitude": "32.08548000" + }, + { + "id": "108669", + "name": "Yalıhüyük İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.31110000", + "longitude": "32.08924000" + }, + { + "id": "108675", + "name": "Yarma", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "37.81149000", + "longitude": "32.88278000" + }, + { + "id": "108696", + "name": "Yeniceoba", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.86972000", + "longitude": "32.78833000" + }, + { + "id": "108738", + "name": "Yunak", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.81418000", + "longitude": "31.73223000" + }, + { + "id": "108739", + "name": "Yunak İlçesi", + "state_id": 2171, + "state_code": "42", + "country_id": 225, + "country_code": "TR", + "latitude": "38.82374000", + "longitude": "31.73748000" + }, + { + "id": "107105", + "name": "Akçadağ", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.33899000", + "longitude": "37.97021000" + }, + { + "id": "107106", + "name": "Akçadağ İlçesi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.34403000", + "longitude": "37.97409000" + }, + { + "id": "107175", + "name": "Arapgir", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "39.04117000", + "longitude": "38.49516000" + }, + { + "id": "107176", + "name": "Arapgir İlçesi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "39.05029000", + "longitude": "38.50255000" + }, + { + "id": "107183", + "name": "Arguvan", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.78172000", + "longitude": "38.26349000" + }, + { + "id": "107292", + "name": "Battalgazi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.43932000", + "longitude": "38.45764000" + }, + { + "id": "107447", + "name": "Darende", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.54583000", + "longitude": "37.50583000" + }, + { + "id": "107448", + "name": "Darende İlçesi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.55585000", + "longitude": "37.51378000" + }, + { + "id": "107525", + "name": "Doğanşehir", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.08574000", + "longitude": "37.87116000" + }, + { + "id": "107526", + "name": "Doğanşehir İlçesi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.09134000", + "longitude": "37.87687000" + }, + { + "id": "107520", + "name": "Doğanyol", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.30746000", + "longitude": "39.03431000" + }, + { + "id": "107819", + "name": "Hekimhan", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.81622000", + "longitude": "37.92882000" + }, + { + "id": "107820", + "name": "Hekimhan İlçesi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.81627000", + "longitude": "37.93134000" + }, + { + "id": "107870", + "name": "Kale", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "39.03333000", + "longitude": "38.00000000" + }, + { + "id": "107872", + "name": "Kale İlçesi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.39773000", + "longitude": "38.74406000" + }, + { + "id": "108044", + "name": "Kuluncak", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.87656000", + "longitude": "37.66279000" + }, + { + "id": "108045", + "name": "Kuluncak İlçesi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.88244000", + "longitude": "37.67181000" + }, + { + "id": "108141", + "name": "Malatya", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.35018000", + "longitude": "38.31667000" + }, + { + "id": "108354", + "name": "Pütürge", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.19630000", + "longitude": "38.87418000" + }, + { + "id": "108684", + "name": "Yazıhan", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.59292000", + "longitude": "38.17327000" + }, + { + "id": "108685", + "name": "Yazıhan İlçesi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.59567000", + "longitude": "38.17967000" + }, + { + "id": "108728", + "name": "Yeşilyurt", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.29602000", + "longitude": "38.24526000" + }, + { + "id": "108730", + "name": "Yeşilyurt İlçesi", + "state_id": 2158, + "state_code": "44", + "country_id": 225, + "country_code": "TR", + "latitude": "38.29814000", + "longitude": "38.24698000" + }, + { + "id": "107073", + "name": "Ahmetli", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.51960000", + "longitude": "27.93865000" + }, + { + "id": "107074", + "name": "Ahmetli İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.52888000", + "longitude": "27.94480000" + }, + { + "id": "107082", + "name": "Akhisar", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.91852000", + "longitude": "27.84006000" + }, + { + "id": "107083", + "name": "Akhisar İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.92552000", + "longitude": "27.84804000" + }, + { + "id": "107128", + "name": "Alaşehir", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.35083000", + "longitude": "28.51718000" + }, + { + "id": "107129", + "name": "Alaşehir İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.36061000", + "longitude": "28.52385000" + }, + { + "id": "108947", + "name": "Şehzadeler", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.61660000", + "longitude": "27.43861000" + }, + { + "id": "107461", + "name": "Demirci", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "39.04607000", + "longitude": "28.65889000" + }, + { + "id": "107462", + "name": "Demirci İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "39.05699000", + "longitude": "28.66461000" + }, + { + "id": "107698", + "name": "Gölmarmara", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.71389000", + "longitude": "27.91417000" + }, + { + "id": "107699", + "name": "Gölmarmara İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.72377000", + "longitude": "27.92145000" + }, + { + "id": "107711", + "name": "Gördes", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.93278000", + "longitude": "28.28942000" + }, + { + "id": "107712", + "name": "Gördes İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.94181000", + "longitude": "28.29427000" + }, + { + "id": "108104", + "name": "Kırkağaç", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "39.10638000", + "longitude": "27.66925000" + }, + { + "id": "108105", + "name": "Kırkağaç İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "39.11610000", + "longitude": "27.67479000" + }, + { + "id": "108072", + "name": "Köprübaşı", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.74972000", + "longitude": "28.40472000" + }, + { + "id": "108074", + "name": "Köprübaşı İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.75929000", + "longitude": "28.40928000" + }, + { + "id": "108038", + "name": "Kula", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.56775000", + "longitude": "28.64146000" + }, + { + "id": "108150", + "name": "Manisa", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.61202000", + "longitude": "27.42647000" + }, + { + "id": "108376", + "name": "Salihli İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.49254000", + "longitude": "28.15264000" + }, + { + "id": "108399", + "name": "Sarıgöl", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.23953000", + "longitude": "28.69663000" + }, + { + "id": "108400", + "name": "Sarıgöl İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.24859000", + "longitude": "28.70233000" + }, + { + "id": "108397", + "name": "Saruhanlı", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.76778000", + "longitude": "27.64714000" + }, + { + "id": "108428", + "name": "Selendi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.74444000", + "longitude": "28.86778000" + }, + { + "id": "108429", + "name": "Selendi İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.75481000", + "longitude": "28.87401000" + }, + { + "id": "108485", + "name": "Soma", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "39.18554000", + "longitude": "27.60945000" + }, + { + "id": "108486", + "name": "Soma İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "39.19629000", + "longitude": "27.61751000" + }, + { + "id": "108600", + "name": "Turgutlu İlçesi", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.51515000", + "longitude": "27.73515000" + }, + { + "id": "108740", + "name": "Yunusemre", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.62063000", + "longitude": "27.40806000" + }, + { + "id": "108752", + "name": "Zeytinliova", + "state_id": 2198, + "state_code": "45", + "country_id": 225, + "country_code": "TR", + "latitude": "38.99118000", + "longitude": "27.67635000" + }, + { + "id": "107059", + "name": "Acırlı", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.45549000", + "longitude": "41.29499000" + }, + { + "id": "107076", + "name": "Akarsu", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.22616000", + "longitude": "41.05138000" + }, + { + "id": "107121", + "name": "Alakamış", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.15898000", + "longitude": "41.78915000" + }, + { + "id": "107174", + "name": "Aran", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.44768000", + "longitude": "40.74755000" + }, + { + "id": "107195", + "name": "Artuklu", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.31714000", + "longitude": "40.72473000" + }, + { + "id": "107214", + "name": "Avine", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.57373000", + "longitude": "40.73252000" + }, + { + "id": "108953", + "name": "Şenocak", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.65035000", + "longitude": "40.69441000" + }, + { + "id": "108955", + "name": "Şenyurt", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.07932000", + "longitude": "40.64246000" + }, + { + "id": "108863", + "name": "Ömerli", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.39903000", + "longitude": "40.95442000" + }, + { + "id": "108864", + "name": "Ömerli İlçesi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.37944000", + "longitude": "40.99472000" + }, + { + "id": "108868", + "name": "Özbek", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.17704000", + "longitude": "41.69322000" + }, + { + "id": "108762", + "name": "Çalpınar", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.36542000", + "longitude": "41.18576000" + }, + { + "id": "108794", + "name": "Çavuşlu", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.50179000", + "longitude": "41.24877000" + }, + { + "id": "108855", + "name": "Çınaraltı", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.38490000", + "longitude": "40.85938000" + }, + { + "id": "108858", + "name": "Çıplak", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "36.94472000", + "longitude": "40.23750000" + }, + { + "id": "107317", + "name": "Başkavak", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.56468000", + "longitude": "40.88757000" + }, + { + "id": "107311", + "name": "Bağlıca", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.52705000", + "longitude": "40.68618000" + }, + { + "id": "107287", + "name": "Barıştepe", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.48320000", + "longitude": "41.40251000" + }, + { + "id": "107434", + "name": "Cinatamiho", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.27304000", + "longitude": "41.03364000" + }, + { + "id": "107446", + "name": "Dara", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.17902000", + "longitude": "40.95455000" + }, + { + "id": "107449", + "name": "Dargeçit", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.54616000", + "longitude": "41.71652000" + }, + { + "id": "107450", + "name": "Dargeçit İlçesi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.54644000", + "longitude": "41.72415000" + }, + { + "id": "107477", + "name": "Dereyanı", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.42746000", + "longitude": "40.86096000" + }, + { + "id": "107478", + "name": "Derik İlçesi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.36431000", + "longitude": "40.26883000" + }, + { + "id": "107535", + "name": "Duruca", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.09309000", + "longitude": "41.30986000" + }, + { + "id": "107630", + "name": "Eşme", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.15569000", + "longitude": "40.64142000" + }, + { + "id": "107547", + "name": "Ebish", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.46347000", + "longitude": "41.18863000" + }, + { + "id": "107618", + "name": "Eymirli", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.17030000", + "longitude": "40.68684000" + }, + { + "id": "107732", + "name": "Gülveren", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.48711000", + "longitude": "41.49446000" + }, + { + "id": "107657", + "name": "Gelinkaya", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.41683000", + "longitude": "41.26994000" + }, + { + "id": "107678", + "name": "Gyundyukoru", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.14207000", + "longitude": "40.50149000" + }, + { + "id": "107764", + "name": "Haberli", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30510000", + "longitude": "41.61758000" + }, + { + "id": "107857", + "name": "Kabala", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.34585000", + "longitude": "40.80059000" + }, + { + "id": "107904", + "name": "Karalar", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30073000", + "longitude": "41.67582000" + }, + { + "id": "107944", + "name": "Kavsan", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.65653000", + "longitude": "40.65806000" + }, + { + "id": "107946", + "name": "Kayalıpınar", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.32983000", + "longitude": "41.22760000" + }, + { + "id": "107950", + "name": "Kaynakkaya", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.33968000", + "longitude": "40.93274000" + }, + { + "id": "108098", + "name": "Kılavuz", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.47960000", + "longitude": "41.78374000" + }, + { + "id": "108118", + "name": "Kızıltepe", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.18836000", + "longitude": "40.57723000" + }, + { + "id": "108119", + "name": "Kızıltepe İlçesi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.19268000", + "longitude": "40.58327000" + }, + { + "id": "107998", + "name": "Kindirip", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.44706000", + "longitude": "41.21976000" + }, + { + "id": "108049", + "name": "Kumlu", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.17222000", + "longitude": "40.73536000" + }, + { + "id": "108062", + "name": "Kutlubey", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30719000", + "longitude": "41.17720000" + }, + { + "id": "108153", + "name": "Mardin", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.31309000", + "longitude": "40.74357000" + }, + { + "id": "108154", + "name": "Mardin Merkez", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.31256000", + "longitude": "40.73439000" + }, + { + "id": "108163", + "name": "Mazıdağı", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.47801000", + "longitude": "40.48152000" + }, + { + "id": "108164", + "name": "Mazıdağı İlçesi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.48542000", + "longitude": "40.49850000" + }, + { + "id": "108206", + "name": "Midyat", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.41908000", + "longitude": "41.33909000" + }, + { + "id": "108207", + "name": "Midyat İlçesi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.40056000", + "longitude": "41.37500000" + }, + { + "id": "108258", + "name": "Nusaybin", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.07028000", + "longitude": "41.21465000" + }, + { + "id": "108259", + "name": "Nusaybin İlçesi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.15694000", + "longitude": "41.34139000" + }, + { + "id": "108280", + "name": "Ortaca", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.47394000", + "longitude": "41.55598000" + }, + { + "id": "108285", + "name": "Ortaköy", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.22089000", + "longitude": "40.78476000" + }, + { + "id": "108301", + "name": "Oyalı", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.22126000", + "longitude": "41.73862000" + }, + { + "id": "108361", + "name": "Pınardere", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.47231000", + "longitude": "40.83402000" + }, + { + "id": "108367", + "name": "Reshidi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.49471000", + "longitude": "40.96806000" + }, + { + "id": "108419", + "name": "Savur", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.53544000", + "longitude": "40.87876000" + }, + { + "id": "108420", + "name": "Savur İlçesi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.53684000", + "longitude": "40.88886000" + }, + { + "id": "108426", + "name": "Selah", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.20541000", + "longitude": "40.69748000" + }, + { + "id": "108440", + "name": "Seri", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.36001000", + "longitude": "41.30055000" + }, + { + "id": "108445", + "name": "Serkan", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.15878000", + "longitude": "41.74132000" + }, + { + "id": "108478", + "name": "Sivrice", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.27675000", + "longitude": "41.33569000" + }, + { + "id": "108558", + "name": "Teffi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.55781000", + "longitude": "41.09551000" + }, + { + "id": "108564", + "name": "Telminar", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.11129000", + "longitude": "41.38359000" + }, + { + "id": "108565", + "name": "Tepealtı", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.09595000", + "longitude": "41.36834000" + }, + { + "id": "108586", + "name": "Toptepe", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.26113000", + "longitude": "41.24948000" + }, + { + "id": "108682", + "name": "Yaylı", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.20293000", + "longitude": "40.75375000" + }, + { + "id": "108683", + "name": "Yayvantepe", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30131000", + "longitude": "41.52061000" + }, + { + "id": "108721", + "name": "Yeşilalan", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.46066000", + "longitude": "40.78441000" + }, + { + "id": "108724", + "name": "Yeşilli", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.33813000", + "longitude": "40.81739000" + }, + { + "id": "108725", + "name": "Yeşilli İlçesi", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.33944000", + "longitude": "40.82605000" + }, + { + "id": "108732", + "name": "Yolbaşı", + "state_id": 2224, + "state_code": "47", + "country_id": 225, + "country_code": "TR", + "latitude": "37.38717000", + "longitude": "41.31778000" + }, + { + "id": "107079", + "name": "Akdeniz", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.86424000", + "longitude": "34.67731000" + }, + { + "id": "107080", + "name": "Akdere", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.24083000", + "longitude": "33.75041000" + }, + { + "id": "107160", + "name": "Anamur", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.07508000", + "longitude": "32.83691000" + }, + { + "id": "107161", + "name": "Anamur İlçesi", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.08361000", + "longitude": "32.82615000" + }, + { + "id": "107221", + "name": "Aydıncık", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.14370000", + "longitude": "33.32016000" + }, + { + "id": "107223", + "name": "Aydıncık İlçesi", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.15358000", + "longitude": "33.30397000" + }, + { + "id": "108771", + "name": "Çamlıyayla İlçesi", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "37.18000000", + "longitude": "34.60678000" + }, + { + "id": "107391", + "name": "Bozyazı", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.10820000", + "longitude": "32.96113000" + }, + { + "id": "107392", + "name": "Bozyazı İlçesi", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.11329000", + "longitude": "32.97886000" + }, + { + "id": "107572", + "name": "Elvanlı", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.70401000", + "longitude": "34.37374000" + }, + { + "id": "107586", + "name": "Erdemli", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.60498000", + "longitude": "34.30836000" + }, + { + "id": "107587", + "name": "Erdemli İlçesi", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.61383000", + "longitude": "34.29601000" + }, + { + "id": "107730", + "name": "Gülnar", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.34148000", + "longitude": "33.39921000" + }, + { + "id": "107731", + "name": "Gülnar İlçesi", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.35290000", + "longitude": "33.40308000" + }, + { + "id": "108007", + "name": "Kocahasanlı", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.58417000", + "longitude": "34.27359000" + }, + { + "id": "108198", + "name": "Mersin", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.81196000", + "longitude": "34.63886000" + }, + { + "id": "108204", + "name": "Mezitli İlçesi", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.89400000", + "longitude": "34.42987000" + }, + { + "id": "108232", + "name": "Mut", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.71842000", + "longitude": "33.38718000" + }, + { + "id": "108357", + "name": "Pınarbaşı", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.70340000", + "longitude": "34.36270000" + }, + { + "id": "108458", + "name": "Silifke", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.37778000", + "longitude": "33.93444000" + }, + { + "id": "108459", + "name": "Silifke İlçesi", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.38869000", + "longitude": "33.94072000" + }, + { + "id": "108536", + "name": "Tarsus", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.91766000", + "longitude": "34.89277000" + }, + { + "id": "108588", + "name": "Toroslar", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.87083000", + "longitude": "34.60299000" + }, + { + "id": "108715", + "name": "Yenişehir", + "state_id": 2156, + "state_code": "33", + "country_id": 225, + "country_code": "TR", + "latitude": "36.81602000", + "longitude": "34.57621000" + }, + { + "id": "107406", + "name": "Bulanık", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "39.08656000", + "longitude": "42.27158000" + }, + { + "id": "107407", + "name": "Bulanık İlçesi", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "39.09285000", + "longitude": "42.27316000" + }, + { + "id": "107802", + "name": "Hasköy", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "38.68231000", + "longitude": "41.67851000" + }, + { + "id": "107803", + "name": "Hasköy İlçesi", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "38.68464000", + "longitude": "41.68831000" + }, + { + "id": "108022", + "name": "Korkut", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "38.73390000", + "longitude": "41.78396000" + }, + { + "id": "108023", + "name": "Korkut İlçesi", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "38.73826000", + "longitude": "41.78689000" + }, + { + "id": "108142", + "name": "Malazgirt", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "39.14650000", + "longitude": "42.53536000" + }, + { + "id": "108143", + "name": "Malazgirt İlçesi", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "39.15089000", + "longitude": "42.54543000" + }, + { + "id": "108191", + "name": "Merkez", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "38.83793000", + "longitude": "41.48332000" + }, + { + "id": "108236", + "name": "Muş", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "38.73163000", + "longitude": "41.48482000" + }, + { + "id": "108647", + "name": "Varto", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "39.17375000", + "longitude": "41.45402000" + }, + { + "id": "108648", + "name": "Varto İlçesi", + "state_id": 2162, + "state_code": "49", + "country_id": 225, + "country_code": "TR", + "latitude": "39.17090000", + "longitude": "41.45440000" + }, + { + "id": "108862", + "name": "Ölüdeniz", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.56674000", + "longitude": "29.14467000" + }, + { + "id": "107307", + "name": "Bayır", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.26774000", + "longitude": "28.21677000" + }, + { + "id": "107365", + "name": "Bodrum", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.06500000", + "longitude": "27.49819000" + }, + { + "id": "107379", + "name": "Bozarmut", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.30917000", + "longitude": "28.16972000" + }, + { + "id": "107442", + "name": "Dalaman", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.81691000", + "longitude": "28.87815000" + }, + { + "id": "107443", + "name": "Dalyan", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.83429000", + "longitude": "28.64460000" + }, + { + "id": "107452", + "name": "Datça", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.73778000", + "longitude": "27.68417000" + }, + { + "id": "107453", + "name": "Datça İlçesi", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.76885000", + "longitude": "27.66295000" + }, + { + "id": "107640", + "name": "Fethiye", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.64038000", + "longitude": "29.12758000" + }, + { + "id": "107679", + "name": "Göcek", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.75345000", + "longitude": "28.94571000" + }, + { + "id": "107759", + "name": "Güvercinlik", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.13706000", + "longitude": "27.58186000" + }, + { + "id": "107923", + "name": "Kargı", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.70132000", + "longitude": "29.07557000" + }, + { + "id": "107943", + "name": "Kavaklıdere", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.43929000", + "longitude": "28.38402000" + }, + { + "id": "108083", + "name": "Köyceğiz İlçesi", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.97798000", + "longitude": "28.72418000" + }, + { + "id": "108160", + "name": "Marmaris", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.85500000", + "longitude": "28.27417000" + }, + { + "id": "108174", + "name": "Menteşe", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.21447000", + "longitude": "28.36168000" + }, + { + "id": "108211", + "name": "Milas", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.31639000", + "longitude": "27.78389000" + }, + { + "id": "108212", + "name": "Milas İlçesi", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.32699000", + "longitude": "27.79520000" + }, + { + "id": "108235", + "name": "Muğla", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.21807000", + "longitude": "28.36650000" + }, + { + "id": "108279", + "name": "Ortaca", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.83915000", + "longitude": "28.76457000" + }, + { + "id": "108281", + "name": "Ortaca İlçesi", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.83890000", + "longitude": "28.77730000" + }, + { + "id": "108396", + "name": "Sarigerme", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.71549000", + "longitude": "28.70436000" + }, + { + "id": "108447", + "name": "Seydikemer", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.64308000", + "longitude": "29.34929000" + }, + { + "id": "108599", + "name": "Turgut", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.37500000", + "longitude": "28.03111000" + }, + { + "id": "108601", + "name": "Turgutreis", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.01667000", + "longitude": "27.26667000" + }, + { + "id": "108616", + "name": "Ula", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.10491000", + "longitude": "28.41667000" + }, + { + "id": "108617", + "name": "Ula İlçesi", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.11514000", + "longitude": "28.42732000" + }, + { + "id": "108670", + "name": "Yalıkavak", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.10528000", + "longitude": "27.29722000" + }, + { + "id": "108671", + "name": "Yaniklar", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "36.70827000", + "longitude": "29.05081000" + }, + { + "id": "108676", + "name": "Yatağan", + "state_id": 2182, + "state_code": "48", + "country_id": 225, + "country_code": "TR", + "latitude": "37.35864000", + "longitude": "28.11441000" + }, + { + "id": "107055", + "name": "Acıgöl", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.55028000", + "longitude": "34.50917000" + }, + { + "id": "107056", + "name": "Acıgöl İlçesi", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.56101000", + "longitude": "34.51730000" + }, + { + "id": "107211", + "name": "Avanos", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.71500000", + "longitude": "34.84667000" + }, + { + "id": "107212", + "name": "Avanos İlçesi", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.72396000", + "longitude": "34.85313000" + }, + { + "id": "108873", + "name": "Ürgüp", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.57342000", + "longitude": "34.94020000" + }, + { + "id": "107481", + "name": "Derinkuyu", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.37510000", + "longitude": "34.73419000" + }, + { + "id": "107482", + "name": "Derinkuyu İlçesi", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.34622000", + "longitude": "34.73840000" + }, + { + "id": "107715", + "name": "Göreme", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.64370000", + "longitude": "34.83529000" + }, + { + "id": "107734", + "name": "Gülşehir", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.74594000", + "longitude": "34.62524000" + }, + { + "id": "107735", + "name": "Gülşehir İlçesi", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.75561000", + "longitude": "34.62993000" + }, + { + "id": "107765", + "name": "Hacıbektaş", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.94077000", + "longitude": "34.55770000" + }, + { + "id": "107766", + "name": "Hacıbektaş İlçesi", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.95079000", + "longitude": "34.56283000" + }, + { + "id": "108032", + "name": "Kozaklı İlçesi", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "39.23204000", + "longitude": "34.85585000" + }, + { + "id": "108192", + "name": "Merkez", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.60039000", + "longitude": "34.68537000" + }, + { + "id": "108246", + "name": "Nevşehir", + "state_id": 2196, + "state_code": "50", + "country_id": 225, + "country_code": "TR", + "latitude": "38.62500000", + "longitude": "34.71222000" + }, + { + "id": "107136", + "name": "Altunhisar", + "state_id": 2189, + "state_code": "51", + "country_id": 225, + "country_code": "TR", + "latitude": "37.99159000", + "longitude": "34.37334000" + }, + { + "id": "107137", + "name": "Altunhisar İlçesi", + "state_id": 2189, + "state_code": "51", + "country_id": 225, + "country_code": "TR", + "latitude": "38.00044000", + "longitude": "34.36067000" + }, + { + "id": "108764", + "name": "Çamardı İlçesi", + "state_id": 2189, + "state_code": "51", + "country_id": 225, + "country_code": "TR", + "latitude": "37.84157000", + "longitude": "34.99005000" + }, + { + "id": "108829", + "name": "Çiftlik", + "state_id": 2189, + "state_code": "51", + "country_id": 225, + "country_code": "TR", + "latitude": "38.17580000", + "longitude": "34.48535000" + }, + { + "id": "108830", + "name": "Çiftlik İlçesi", + "state_id": 2189, + "state_code": "51", + "country_id": 225, + "country_code": "TR", + "latitude": "38.18584000", + "longitude": "34.47465000" + }, + { + "id": "107369", + "name": "Bor", + "state_id": 2189, + "state_code": "51", + "country_id": 225, + "country_code": "TR", + "latitude": "37.89056000", + "longitude": "34.55889000" + }, + { + "id": "108252", + "name": "Niğde", + "state_id": 2189, + "state_code": "51", + "country_id": 225, + "country_code": "TR", + "latitude": "37.96583000", + "longitude": "34.67935000" + }, + { + "id": "108628", + "name": "Ulukisla", + "state_id": 2189, + "state_code": "51", + "country_id": 225, + "country_code": "TR", + "latitude": "37.54592000", + "longitude": "34.58737000" + }, + { + "id": "107085", + "name": "Akkuş", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.81000000", + "longitude": "36.96000000" + }, + { + "id": "107144", + "name": "Altınordu", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94879000", + "longitude": "37.79572000" + }, + { + "id": "107219", + "name": "Aybastı İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.69690000", + "longitude": "37.40794000" + }, + { + "id": "108887", + "name": "İkizce", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "41.05833000", + "longitude": "37.08028000" + }, + { + "id": "108888", + "name": "İkizce İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "41.06793000", + "longitude": "37.08571000" + }, + { + "id": "108872", + "name": "Ünye İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "41.13921000", + "longitude": "37.27246000" + }, + { + "id": "108765", + "name": "Çamaş", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.90200000", + "longitude": "37.52786000" + }, + { + "id": "108766", + "name": "Çamaş İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.90840000", + "longitude": "37.52162000" + }, + { + "id": "108790", + "name": "Çatalpınar İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88678000", + "longitude": "37.44329000" + }, + { + "id": "108797", + "name": "Çaybaşı İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02532000", + "longitude": "37.10867000" + }, + { + "id": "107633", + "name": "Fatsa", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02778000", + "longitude": "37.50139000" + }, + { + "id": "107634", + "name": "Fatsa İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02211000", + "longitude": "37.49196000" + }, + { + "id": "107697", + "name": "Gölköy İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.68726000", + "longitude": "37.61660000" + }, + { + "id": "107733", + "name": "Gülyalı İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.96682000", + "longitude": "38.05679000" + }, + { + "id": "107749", + "name": "Gürgentepe", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.78567000", + "longitude": "37.58969000" + }, + { + "id": "107750", + "name": "Gürgentepe İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77452000", + "longitude": "37.57579000" + }, + { + "id": "107855", + "name": "Kabadüz", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.86096000", + "longitude": "37.88470000" + }, + { + "id": "107856", + "name": "Kabadüz İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.85712000", + "longitude": "37.90597000" + }, + { + "id": "107858", + "name": "Kabataş", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.75000000", + "longitude": "37.45000000" + }, + { + "id": "107859", + "name": "Kabataş İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.75996000", + "longitude": "37.45875000" + }, + { + "id": "108018", + "name": "Korgan", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.82472000", + "longitude": "37.34667000" + }, + { + "id": "108019", + "name": "Korgan İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.83503000", + "longitude": "37.35319000" + }, + { + "id": "108052", + "name": "Kumru", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.87444000", + "longitude": "37.26389000" + }, + { + "id": "108053", + "name": "Kumru İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88372000", + "longitude": "37.27610000" + }, + { + "id": "108201", + "name": "Mesudiye", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.45446000", + "longitude": "37.77353000" + }, + { + "id": "108202", + "name": "Mesudiye İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.46419000", + "longitude": "37.77419000" + }, + { + "id": "108271", + "name": "Ordu", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.97782000", + "longitude": "37.89047000" + }, + { + "id": "108341", + "name": "Perşembe", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "41.06556000", + "longitude": "37.77139000" + }, + { + "id": "108342", + "name": "Perşembe İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "41.06068000", + "longitude": "37.76384000" + }, + { + "id": "108344", + "name": "Piraziz İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.95643000", + "longitude": "38.11667000" + }, + { + "id": "108622", + "name": "Ulubey", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.86863000", + "longitude": "37.75405000" + }, + { + "id": "108623", + "name": "Ulubey İlçesi", + "state_id": 2174, + "state_code": "52", + "country_id": 225, + "country_code": "TR", + "latitude": "40.87352000", + "longitude": "37.75890000" + }, + { + "id": "107259", + "name": "Bahçe İlçesi", + "state_id": 2214, + "state_code": "80", + "country_id": 225, + "country_code": "TR", + "latitude": "37.20105000", + "longitude": "36.57687000" + }, + { + "id": "107543", + "name": "Düziçi İlçesi", + "state_id": 2214, + "state_code": "80", + "country_id": 225, + "country_code": "TR", + "latitude": "37.25062000", + "longitude": "36.47051000" + }, + { + "id": "107798", + "name": "Hasanbeyli", + "state_id": 2214, + "state_code": "80", + "country_id": 225, + "country_code": "TR", + "latitude": "37.12838000", + "longitude": "36.54608000" + }, + { + "id": "107799", + "name": "Hasanbeyli İlçesi", + "state_id": 2214, + "state_code": "80", + "country_id": 225, + "country_code": "TR", + "latitude": "37.13182000", + "longitude": "36.55611000" + }, + { + "id": "107860", + "name": "Kadirli", + "state_id": 2214, + "state_code": "80", + "country_id": 225, + "country_code": "TR", + "latitude": "37.37389000", + "longitude": "36.09611000" + }, + { + "id": "107861", + "name": "Kadirli İlçesi", + "state_id": 2214, + "state_code": "80", + "country_id": 225, + "country_code": "TR", + "latitude": "37.38406000", + "longitude": "36.10284000" + }, + { + "id": "108294", + "name": "Osmaniye", + "state_id": 2214, + "state_code": "80", + "country_id": 225, + "country_code": "TR", + "latitude": "37.07417000", + "longitude": "36.24778000" + }, + { + "id": "108504", + "name": "Sumbas İlçesi", + "state_id": 2214, + "state_code": "80", + "country_id": 225, + "country_code": "TR", + "latitude": "37.46169000", + "longitude": "36.02914000" + }, + { + "id": "108585", + "name": "Toprakkale", + "state_id": 2214, + "state_code": "80", + "country_id": 225, + "country_code": "TR", + "latitude": "37.06855000", + "longitude": "36.14661000" + }, + { + "id": "107182", + "name": "Ardeşen", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.19111000", + "longitude": "40.98750000" + }, + { + "id": "108889", + "name": "İkizdere İlçesi", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "40.77713000", + "longitude": "40.56076000" + }, + { + "id": "108922", + "name": "İyidere", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.00905000", + "longitude": "40.37776000" + }, + { + "id": "108770", + "name": "Çamlıhemşin İlçesi", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.04088000", + "longitude": "41.02071000" + }, + { + "id": "108800", + "name": "Çayeli", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.08941000", + "longitude": "40.73696000" + }, + { + "id": "107476", + "name": "Derepazarı İlçesi", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02212000", + "longitude": "40.43876000" + }, + { + "id": "107644", + "name": "Fındıklı", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.27110000", + "longitude": "41.14449000" + }, + { + "id": "107743", + "name": "Güneysu", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "40.98130000", + "longitude": "40.60465000" + }, + { + "id": "107744", + "name": "Güneysu İlçesi", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "40.97526000", + "longitude": "40.60757000" + }, + { + "id": "107821", + "name": "Hemşin İlçesi", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.05922000", + "longitude": "40.90140000" + }, + { + "id": "107877", + "name": "Kalkandere", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "40.92143000", + "longitude": "40.43999000" + }, + { + "id": "108257", + "name": "Nurluca", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.03519000", + "longitude": "40.90584000" + }, + { + "id": "108321", + "name": "Pazar", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.17917000", + "longitude": "40.88417000" + }, + { + "id": "108323", + "name": "Pazar İlçesi", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.17286000", + "longitude": "40.88398000" + }, + { + "id": "108371", + "name": "Rize", + "state_id": 2219, + "state_code": "53", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02083000", + "longitude": "40.52194000" + }, + { + "id": "107064", + "name": "Adapazarı", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.78056000", + "longitude": "30.40333000" + }, + { + "id": "107100", + "name": "Akyazı", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.68500000", + "longitude": "30.62222000" + }, + { + "id": "107101", + "name": "Akyazı İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.69600000", + "longitude": "30.62803000" + }, + { + "id": "107186", + "name": "Arifiye", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.71327000", + "longitude": "30.36128000" + }, + { + "id": "107588", + "name": "Erenler", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.75564000", + "longitude": "30.41453000" + }, + { + "id": "107638", + "name": "Ferizli", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94082000", + "longitude": "30.48583000" + }, + { + "id": "107639", + "name": "Ferizli İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.95092000", + "longitude": "30.48912000" + }, + { + "id": "107673", + "name": "Geyve", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.50750000", + "longitude": "30.29250000" + }, + { + "id": "107674", + "name": "Geyve İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.51701000", + "longitude": "30.29645000" + }, + { + "id": "107822", + "name": "Hendek", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.79944000", + "longitude": "30.74806000" + }, + { + "id": "107823", + "name": "Hendek İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.80938000", + "longitude": "30.73915000" + }, + { + "id": "107910", + "name": "Karapürçek", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.64194000", + "longitude": "30.53944000" + }, + { + "id": "107911", + "name": "Karapürçek İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.65188000", + "longitude": "30.54509000" + }, + { + "id": "107915", + "name": "Karasu İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "41.09983000", + "longitude": "30.68241000" + }, + { + "id": "107914", + "name": "Karasu Mahallesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "41.07096000", + "longitude": "30.78543000" + }, + { + "id": "107951", + "name": "Kaynarca", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "41.03083000", + "longitude": "30.30750000" + }, + { + "id": "107952", + "name": "Kaynarca İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "41.04048000", + "longitude": "30.29619000" + }, + { + "id": "108003", + "name": "Kocaali", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "41.05336000", + "longitude": "30.85278000" + }, + { + "id": "108004", + "name": "Kocaali İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "41.06361000", + "longitude": "30.85815000" + }, + { + "id": "108312", + "name": "Pamukova", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.50810000", + "longitude": "30.16732000" + }, + { + "id": "108313", + "name": "Pamukova İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.51806000", + "longitude": "30.17288000" + }, + { + "id": "108385", + "name": "Sapanca", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.69141000", + "longitude": "30.26738000" + }, + { + "id": "108386", + "name": "Sapanca İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.70222000", + "longitude": "30.27443000" + }, + { + "id": "108519", + "name": "Söğütlü", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.90590000", + "longitude": "30.47448000" + }, + { + "id": "108520", + "name": "Söğütlü İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.91610000", + "longitude": "30.47824000" + }, + { + "id": "108438", + "name": "Serdivan", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.76371000", + "longitude": "30.36784000" + }, + { + "id": "108534", + "name": "Taraklı", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.39694000", + "longitude": "30.49278000" + }, + { + "id": "108535", + "name": "Taraklı İlçesi", + "state_id": 2150, + "state_code": "54", + "country_id": 225, + "country_code": "TR", + "latitude": "40.40685000", + "longitude": "30.50001000" + }, + { + "id": "107126", + "name": "Alaçam İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.61563000", + "longitude": "35.60632000" + }, + { + "id": "107200", + "name": "Asarcık", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.03556000", + "longitude": "36.23556000" + }, + { + "id": "107201", + "name": "Asarcık İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.04687000", + "longitude": "36.20732000" + }, + { + "id": "107206", + "name": "Atakum", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.34730000", + "longitude": "36.23051000" + }, + { + "id": "107230", + "name": "Ayvacık", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "40.99111000", + "longitude": "36.63139000" + }, + { + "id": "107231", + "name": "Ayvacık İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.00237000", + "longitude": "36.63706000" + }, + { + "id": "108891", + "name": "İlkadım", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.29161000", + "longitude": "36.30106000" + }, + { + "id": "108783", + "name": "Çarşamba", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.19889000", + "longitude": "36.72194000" + }, + { + "id": "108784", + "name": "Çarşamba İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.21050000", + "longitude": "36.73204000" + }, + { + "id": "107257", + "name": "Bafra", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.46082000", + "longitude": "35.84435000" + }, + { + "id": "107423", + "name": "Canik", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.23858000", + "longitude": "36.33694000" + }, + { + "id": "107809", + "name": "Havza", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "40.97056000", + "longitude": "35.66222000" + }, + { + "id": "107810", + "name": "Havza İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "40.97972000", + "longitude": "35.67107000" + }, + { + "id": "107940", + "name": "Kavak", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.07833000", + "longitude": "36.04250000" + }, + { + "id": "107941", + "name": "Kavak İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.08777000", + "longitude": "36.05183000" + }, + { + "id": "108125", + "name": "Ladik", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "40.91056000", + "longitude": "35.89194000" + }, + { + "id": "108126", + "name": "Ladik İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "40.92025000", + "longitude": "35.90095000" + }, + { + "id": "108269", + "name": "Ondokuzmayıs İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.51188000", + "longitude": "36.07298000" + }, + { + "id": "108377", + "name": "Salıpazarı İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.09352000", + "longitude": "36.81718000" + }, + { + "id": "108381", + "name": "Samsun", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.27976000", + "longitude": "36.33610000" + }, + { + "id": "108561", + "name": "Tekkeköy", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.14493000", + "longitude": "36.46205000" + }, + { + "id": "108573", + "name": "Terme", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.20917000", + "longitude": "36.97389000" + }, + { + "id": "108574", + "name": "Terme İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.21876000", + "longitude": "36.98263000" + }, + { + "id": "108651", + "name": "Vezirköprü", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.14361000", + "longitude": "35.45472000" + }, + { + "id": "108652", + "name": "Vezirköprü İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.15193000", + "longitude": "35.46230000" + }, + { + "id": "108660", + "name": "Yakakent", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.63250000", + "longitude": "35.52889000" + }, + { + "id": "108661", + "name": "Yakakent İlçesi", + "state_id": 2220, + "state_code": "55", + "country_id": 225, + "country_code": "TR", + "latitude": "41.61824000", + "longitude": "35.52014000" + }, + { + "id": "108961", + "name": "Şirvan", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "38.06251000", + "longitude": "42.02517000" + }, + { + "id": "108962", + "name": "Şirvan İlçesi", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "38.06289000", + "longitude": "42.02778000" + }, + { + "id": "107298", + "name": "Baykan", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "38.15754000", + "longitude": "41.77330000" + }, + { + "id": "107299", + "name": "Baykan İlçesi", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "38.16315000", + "longitude": "41.78407000" + }, + { + "id": "107435", + "name": "Civankan", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.90339000", + "longitude": "41.87752000" + }, + { + "id": "107512", + "name": "Doğanca", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.79955000", + "longitude": "42.33099000" + }, + { + "id": "107518", + "name": "Doğanköy", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.76334000", + "longitude": "42.78929000" + }, + { + "id": "107598", + "name": "Eruh", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.74183000", + "longitude": "42.17422000" + }, + { + "id": "107599", + "name": "Eruh İlçesi", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.74606000", + "longitude": "42.17507000" + }, + { + "id": "107685", + "name": "Gökçekoru", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95621000", + "longitude": "42.44971000" + }, + { + "id": "107680", + "name": "Gökbudak", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.90367000", + "longitude": "42.64866000" + }, + { + "id": "107694", + "name": "Gölgelikonak", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.76923000", + "longitude": "42.12744000" + }, + { + "id": "107722", + "name": "Gözpınar", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.97717000", + "longitude": "41.45761000" + }, + { + "id": "107728", + "name": "Güleçler", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.95333000", + "longitude": "42.53861000" + }, + { + "id": "107945", + "name": "Kayabağlar", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.98599000", + "longitude": "41.66756000" + }, + { + "id": "108055", + "name": "Kurtalan", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.92533000", + "longitude": "41.68493000" + }, + { + "id": "108056", + "name": "Kurtalan İlçesi", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.92440000", + "longitude": "41.70083000" + }, + { + "id": "108132", + "name": "Lodi", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.71261000", + "longitude": "41.91540000" + }, + { + "id": "108264", + "name": "Okçular", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.74152000", + "longitude": "42.44075000" + }, + { + "id": "108306", + "name": "Palamutlu", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.89583000", + "longitude": "42.20250000" + }, + { + "id": "108339", + "name": "Pervari", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.93573000", + "longitude": "42.54927000" + }, + { + "id": "108340", + "name": "Pervari İlçesi", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.87222000", + "longitude": "42.57111000" + }, + { + "id": "108439", + "name": "Serhatta", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.66278000", + "longitude": "42.14064000" + }, + { + "id": "108457", + "name": "Siirt", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.92930000", + "longitude": "41.94134000" + }, + { + "id": "108551", + "name": "Taşlı", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.98699000", + "longitude": "42.13510000" + }, + { + "id": "108533", + "name": "Taliban", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.98100000", + "longitude": "41.41328000" + }, + { + "id": "108576", + "name": "Tillo", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.94911000", + "longitude": "42.01210000" + }, + { + "id": "108577", + "name": "Tillo İlçesi", + "state_id": 2207, + "state_code": "56", + "country_id": 225, + "country_code": "TR", + "latitude": "37.94962000", + "longitude": "42.01147000" + }, + { + "id": "107113", + "name": "Akıncılar", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.07172000", + "longitude": "38.34330000" + }, + { + "id": "107114", + "name": "Akıncılar İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.07866000", + "longitude": "38.34618000" + }, + { + "id": "107096", + "name": "Aksu", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.08964000", + "longitude": "38.03467000" + }, + { + "id": "107149", + "name": "Altınyayla", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.27249000", + "longitude": "36.75098000" + }, + { + "id": "107151", + "name": "Altınyayla İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.28233000", + "longitude": "36.75681000" + }, + { + "id": "108938", + "name": "Şarkışla", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.35186000", + "longitude": "36.40976000" + }, + { + "id": "108939", + "name": "Şarkışla İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.36171000", + "longitude": "36.41827000" + }, + { + "id": "108894", + "name": "İmranlı", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.87544000", + "longitude": "38.11358000" + }, + { + "id": "108895", + "name": "İmranlı İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.88524000", + "longitude": "38.12015000" + }, + { + "id": "107500", + "name": "Divriği", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.37100000", + "longitude": "38.11370000" + }, + { + "id": "107501", + "name": "Divriği İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.37924000", + "longitude": "38.12144000" + }, + { + "id": "107523", + "name": "Doğanşar", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.20841000", + "longitude": "37.53123000" + }, + { + "id": "107524", + "name": "Doğanşar İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.21408000", + "longitude": "37.53599000" + }, + { + "id": "107700", + "name": "Gölova", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.06194000", + "longitude": "38.60667000" + }, + { + "id": "107701", + "name": "Gölova İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.06070000", + "longitude": "38.60840000" + }, + { + "id": "107757", + "name": "Gürün", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "38.72225000", + "longitude": "37.27097000" + }, + { + "id": "107758", + "name": "Gürün İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "38.73288000", + "longitude": "37.27516000" + }, + { + "id": "107658", + "name": "Gemerek", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.18342000", + "longitude": "36.07189000" + }, + { + "id": "107659", + "name": "Gemerek İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.19397000", + "longitude": "36.07783000" + }, + { + "id": "107772", + "name": "Hafik", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.85639000", + "longitude": "37.38639000" + }, + { + "id": "107773", + "name": "Hafik İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.86693000", + "longitude": "37.39720000" + }, + { + "id": "107883", + "name": "Kangal", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.23354000", + "longitude": "37.39111000" + }, + { + "id": "107884", + "name": "Kangal İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.24324000", + "longitude": "37.39731000" + }, + { + "id": "108029", + "name": "Koyulhisar", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.30184000", + "longitude": "37.82336000" + }, + { + "id": "108030", + "name": "Koyulhisar İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.30113000", + "longitude": "37.83311000" + }, + { + "id": "108187", + "name": "Merkez", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.71613000", + "longitude": "36.97695000" + }, + { + "id": "108473", + "name": "Sivas", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.74833000", + "longitude": "37.01611000" + }, + { + "id": "108513", + "name": "Suşehri", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.16005000", + "longitude": "38.08413000" + }, + { + "id": "108514", + "name": "Suşehri İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "40.16338000", + "longitude": "38.08926000" + }, + { + "id": "108618", + "name": "Ulaş", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.44492000", + "longitude": "37.03900000" + }, + { + "id": "108619", + "name": "Ulaş İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.45456000", + "longitude": "37.04541000" + }, + { + "id": "108747", + "name": "Yıldızeli İlçesi", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.87601000", + "longitude": "36.60652000" + }, + { + "id": "108749", + "name": "Zara", + "state_id": 2181, + "state_code": "58", + "country_id": 225, + "country_code": "TR", + "latitude": "39.82406000", + "longitude": "37.77499000" + }, + { + "id": "108937", + "name": "Şarköy İlçesi", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "40.62513000", + "longitude": "27.10069000" + }, + { + "id": "108819", + "name": "Çerkezköy", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.28616000", + "longitude": "27.99969000" + }, + { + "id": "108842", + "name": "Çorlu", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.15917000", + "longitude": "27.80000000" + }, + { + "id": "107594", + "name": "Ergene", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "40.85953000", + "longitude": "27.27081000" + }, + { + "id": "107813", + "name": "Hayrabolu", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.21311000", + "longitude": "27.10688000" + }, + { + "id": "107814", + "name": "Hayrabolu İlçesi", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.22445000", + "longitude": "27.11951000" + }, + { + "id": "107885", + "name": "Kapaklı", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.32912000", + "longitude": "27.98064000" + }, + { + "id": "108046", + "name": "Kumbağ", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88236000", + "longitude": "27.45919000" + }, + { + "id": "108144", + "name": "Malkara", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "40.89000000", + "longitude": "26.90111000" + }, + { + "id": "108145", + "name": "Malkara İlçesi", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "40.90052000", + "longitude": "26.91367000" + }, + { + "id": "108156", + "name": "Marmara Ereğlisi", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "40.97003000", + "longitude": "27.95528000" + }, + { + "id": "108157", + "name": "Marmara Ereğlisi İlçesi", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "40.98021000", + "longitude": "27.94102000" + }, + { + "id": "108159", + "name": "Marmaracık", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.20667000", + "longitude": "27.75444000" + }, + { + "id": "108223", + "name": "Muratlı İlçesi", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.18345000", + "longitude": "27.51454000" + }, + { + "id": "108388", + "name": "Saray", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.44431000", + "longitude": "27.92194000" + }, + { + "id": "108390", + "name": "Saray İlçesi", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.45475000", + "longitude": "27.93734000" + }, + { + "id": "108522", + "name": "Süleymanpaşa", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "40.97990000", + "longitude": "27.30377000" + }, + { + "id": "108499", + "name": "Sultanköy", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.02139000", + "longitude": "27.98861000" + }, + { + "id": "108559", + "name": "Tekirdağ", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "40.97810000", + "longitude": "27.51101000" + }, + { + "id": "108649", + "name": "Velimeşe", + "state_id": 2167, + "state_code": "59", + "country_id": 225, + "country_code": "TR", + "latitude": "41.25361000", + "longitude": "27.87833000" + }, + { + "id": "107131", + "name": "Almus", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.37583000", + "longitude": "36.90444000" + }, + { + "id": "107132", + "name": "Almus İlçesi", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.38643000", + "longitude": "36.91284000" + }, + { + "id": "107193", + "name": "Artova", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.11578000", + "longitude": "36.30010000" + }, + { + "id": "107194", + "name": "Artova İlçesi", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.12681000", + "longitude": "36.30728000" + }, + { + "id": "107322", + "name": "Başçiftlik", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.54694000", + "longitude": "37.16917000" + }, + { + "id": "107323", + "name": "Başçiftlik İlçesi", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.55728000", + "longitude": "37.17674000" + }, + { + "id": "107582", + "name": "Erbaa", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.71390000", + "longitude": "36.59364000" + }, + { + "id": "108248", + "name": "Niksar", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.60509000", + "longitude": "36.97174000" + }, + { + "id": "108322", + "name": "Pazar", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.27652000", + "longitude": "36.28347000" + }, + { + "id": "108324", + "name": "Pazar İlçesi", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.28704000", + "longitude": "36.29192000" + }, + { + "id": "108370", + "name": "Reşadiye", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.43284000", + "longitude": "37.37652000" + }, + { + "id": "108502", + "name": "Sulusaray", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "39.99389000", + "longitude": "36.08404000" + }, + { + "id": "108503", + "name": "Sulusaray İlçesi", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.00491000", + "longitude": "36.08976000" + }, + { + "id": "108580", + "name": "Tokat", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.31389000", + "longitude": "36.55444000" + }, + { + "id": "108602", + "name": "Turhal", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.38750000", + "longitude": "36.08111000" + }, + { + "id": "108603", + "name": "Turhal İlçesi", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.39839000", + "longitude": "36.08736000" + }, + { + "id": "108729", + "name": "Yeşilyurt İlçesi", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "39.99916000", + "longitude": "36.23479000" + }, + { + "id": "108753", + "name": "Zile", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.30306000", + "longitude": "35.88639000" + }, + { + "id": "108754", + "name": "Zile İlçesi", + "state_id": 2199, + "state_code": "60", + "country_id": 225, + "country_code": "TR", + "latitude": "40.31426000", + "longitude": "35.89399000" + }, + { + "id": "107104", + "name": "Akçaabat", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "41.01970000", + "longitude": "39.56293000" + }, + { + "id": "107171", + "name": "Araklı", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.74000000", + "longitude": "39.96000000" + }, + { + "id": "107191", + "name": "Arsin", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.86743000", + "longitude": "39.92938000" + }, + { + "id": "108930", + "name": "Şalpazarı", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.93826000", + "longitude": "39.19006000" + }, + { + "id": "108931", + "name": "Şalpazarı İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94614000", + "longitude": "39.17804000" + }, + { + "id": "108785", + "name": "Çarşıbaşı", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "41.04203000", + "longitude": "39.40035000" + }, + { + "id": "108801", + "name": "Çaykara", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.74267000", + "longitude": "40.23175000" + }, + { + "id": "108802", + "name": "Çaykara İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.74564000", + "longitude": "40.24191000" + }, + { + "id": "107348", + "name": "Beşikdüzü", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "41.05202000", + "longitude": "39.23294000" + }, + { + "id": "107544", + "name": "Düzköy", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.87461000", + "longitude": "39.41536000" + }, + { + "id": "107545", + "name": "Düzköy İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.87241000", + "longitude": "39.42587000" + }, + { + "id": "107483", + "name": "Dernekpazarı", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.79658000", + "longitude": "40.24460000" + }, + { + "id": "107484", + "name": "Dernekpazarı İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.79913000", + "longitude": "40.24725000" + }, + { + "id": "107815", + "name": "Hayrat", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88530000", + "longitude": "40.36495000" + }, + { + "id": "107816", + "name": "Hayrat İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.89137000", + "longitude": "40.36760000" + }, + { + "id": "108073", + "name": "Köprübaşı", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.80692000", + "longitude": "40.11439000" + }, + { + "id": "108075", + "name": "Köprübaşı İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.80845000", + "longitude": "40.12280000" + }, + { + "id": "108165", + "name": "Maçka", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.72127000", + "longitude": "39.59786000" + }, + { + "id": "108261", + "name": "Of", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94055000", + "longitude": "40.25918000" + }, + { + "id": "108262", + "name": "Of İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.94694000", + "longitude": "40.26938000" + }, + { + "id": "108282", + "name": "Ortahisar", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88029000", + "longitude": "39.88998000" + }, + { + "id": "108524", + "name": "Sürmene", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.90588000", + "longitude": "40.12792000" + }, + { + "id": "108525", + "name": "Sürmene İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.91102000", + "longitude": "40.12009000" + }, + { + "id": "108583", + "name": "Tonya", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88402000", + "longitude": "39.28486000" + }, + { + "id": "108584", + "name": "Tonya İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.88523000", + "longitude": "39.28992000" + }, + { + "id": "108596", + "name": "Trabzon", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "41.00500000", + "longitude": "39.72694000" + }, + { + "id": "108645", + "name": "Vakfıkebir", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "41.04583000", + "longitude": "39.27639000" + }, + { + "id": "108733", + "name": "Yomra", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.95326000", + "longitude": "39.85546000" + }, + { + "id": "108734", + "name": "Yomra İlçesi", + "state_id": 2206, + "state_code": "61", + "country_id": 225, + "country_code": "TR", + "latitude": "40.95490000", + "longitude": "39.86567000" + }, + { + "id": "108818", + "name": "Çemişgezek İlçesi", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.06234000", + "longitude": "38.91400000" + }, + { + "id": "107838", + "name": "Hozat", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.10029000", + "longitude": "39.20816000" + }, + { + "id": "107839", + "name": "Hozat İlçesi", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.10780000", + "longitude": "39.21880000" + }, + { + "id": "108161", + "name": "Mazgirt", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.01783000", + "longitude": "39.60064000" + }, + { + "id": "108162", + "name": "Mazgirt İlçesi", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.01913000", + "longitude": "39.60473000" + }, + { + "id": "108179", + "name": "Merkez", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.17114000", + "longitude": "39.55570000" + }, + { + "id": "108245", + "name": "Nazımiye İlçesi", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.17952000", + "longitude": "39.82805000" + }, + { + "id": "108244", + "name": "Nazimiye", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.17986000", + "longitude": "39.82843000" + }, + { + "id": "108297", + "name": "Ovacık", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.35259000", + "longitude": "39.20890000" + }, + { + "id": "108298", + "name": "Ovacık İlçesi", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.35783000", + "longitude": "39.21628000" + }, + { + "id": "108353", + "name": "Pülümür İlçesi", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.48662000", + "longitude": "39.89874000" + }, + { + "id": "108337", + "name": "Pertek", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "38.86574000", + "longitude": "39.32273000" + }, + { + "id": "108338", + "name": "Pertek İlçesi", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "38.86503000", + "longitude": "39.32734000" + }, + { + "id": "108350", + "name": "Pulumer", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.48449000", + "longitude": "39.89532000" + }, + { + "id": "108598", + "name": "Tunceli", + "state_id": 2192, + "state_code": "62", + "country_id": 225, + "country_code": "TR", + "latitude": "39.09921000", + "longitude": "39.54351000" + }, + { + "id": "108892", + "name": "İlyaslı", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.60389000", + "longitude": "29.20056000" + }, + { + "id": "107281", + "name": "Banaz", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.73707000", + "longitude": "29.75194000" + }, + { + "id": "107282", + "name": "Banaz İlçesi", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.74669000", + "longitude": "29.75798000" + }, + { + "id": "107415", + "name": "Bölme", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.62076000", + "longitude": "29.37373000" + }, + { + "id": "107629", + "name": "Eşme", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.39976000", + "longitude": "28.96905000" + }, + { + "id": "107631", + "name": "Eşme İlçesi", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.40930000", + "longitude": "28.97578000" + }, + { + "id": "107729", + "name": "Güllü", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.27114000", + "longitude": "29.10451000" + }, + { + "id": "107894", + "name": "Karahallı", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.32083000", + "longitude": "29.53028000" + }, + { + "id": "107895", + "name": "Karahallı İlçesi", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.33090000", + "longitude": "29.53923000" + }, + { + "id": "108115", + "name": "Kızılcasöğüt", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.65111000", + "longitude": "29.66611000" + }, + { + "id": "108183", + "name": "Merkez", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.68463000", + "longitude": "29.29455000" + }, + { + "id": "108433", + "name": "Selçikler", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.49837000", + "longitude": "29.65482000" + }, + { + "id": "108474", + "name": "Sivaslı", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.49944000", + "longitude": "29.68361000" + }, + { + "id": "108475", + "name": "Sivaslı İlçesi", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.50848000", + "longitude": "29.69016000" + }, + { + "id": "108644", + "name": "Uşak", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.67351000", + "longitude": "29.40580000" + }, + { + "id": "108621", + "name": "Ulubey", + "state_id": 2201, + "state_code": "64", + "country_id": 225, + "country_code": "TR", + "latitude": "38.41987000", + "longitude": "29.29129000" + }, + { + "id": "108908", + "name": "İpekyolu", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.49041000", + "longitude": "43.34690000" + }, + { + "id": "108866", + "name": "Özalp", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.65455000", + "longitude": "43.98869000" + }, + { + "id": "108867", + "name": "Özalp İlçesi", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.66283000", + "longitude": "43.99603000" + }, + { + "id": "108760", + "name": "Çaldıran", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "39.14317000", + "longitude": "43.91068000" + }, + { + "id": "108761", + "name": "Çaldıran İlçesi", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "39.15053000", + "longitude": "43.91415000" + }, + { + "id": "108787", + "name": "Çatak İlçesi", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.00780000", + "longitude": "43.06195000" + }, + { + "id": "107315", + "name": "Başkale", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.04526000", + "longitude": "44.01718000" + }, + { + "id": "107316", + "name": "Başkale İlçesi", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.05305000", + "longitude": "44.02163000" + }, + { + "id": "107262", + "name": "Bahçesaray", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.12460000", + "longitude": "42.79825000" + }, + { + "id": "107263", + "name": "Bahçesaray İlçesi", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.12635000", + "longitude": "42.80493000" + }, + { + "id": "107551", + "name": "Edremit", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.37889000", + "longitude": "43.29717000" + }, + { + "id": "107583", + "name": "Erciş", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "39.15123000", + "longitude": "43.33705000" + }, + { + "id": "107753", + "name": "Gürpınar", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.32372000", + "longitude": "43.40991000" + }, + { + "id": "107755", + "name": "Gürpınar İlçesi", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.32396000", + "longitude": "43.41036000" + }, + { + "id": "107670", + "name": "Gevaş", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.29210000", + "longitude": "43.10189000" + }, + { + "id": "107671", + "name": "Gevaş İlçesi", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.29390000", + "longitude": "43.10530000" + }, + { + "id": "108015", + "name": "Konalga", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "37.86035000", + "longitude": "43.09678000" + }, + { + "id": "108220", + "name": "Muradiye", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.97889000", + "longitude": "43.75374000" + }, + { + "id": "108387", + "name": "Saray", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.64691000", + "longitude": "44.16116000" + }, + { + "id": "108389", + "name": "Saray İlçesi", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.65513000", + "longitude": "44.17731000" + }, + { + "id": "108613", + "name": "Tuşpa", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.48423000", + "longitude": "43.40218000" + }, + { + "id": "108646", + "name": "Van", + "state_id": 2152, + "state_code": "65", + "country_id": 225, + "country_code": "TR", + "latitude": "38.49457000", + "longitude": "43.38323000" + }, + { + "id": "107145", + "name": "Altınova", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.69495000", + "longitude": "29.50986000" + }, + { + "id": "107146", + "name": "Altınova İlçesi", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.70478000", + "longitude": "29.51606000" + }, + { + "id": "107187", + "name": "Armutlu İlçesi", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.52919000", + "longitude": "28.83871000" + }, + { + "id": "108856", + "name": "Çınarcık", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.64538000", + "longitude": "29.12450000" + }, + { + "id": "108857", + "name": "Çınarcık İlçesi", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.63669000", + "longitude": "29.13881000" + }, + { + "id": "108831", + "name": "Çiftlikköy", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.66028000", + "longitude": "29.32361000" + }, + { + "id": "108832", + "name": "Çiftlikköy İlçesi", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.65302000", + "longitude": "29.33946000" + }, + { + "id": "107862", + "name": "Kadıköy", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.62015000", + "longitude": "29.22536000" + }, + { + "id": "107955", + "name": "Kaytazdere", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.68225000", + "longitude": "29.53236000" + }, + { + "id": "108099", + "name": "Kılıç", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.63306000", + "longitude": "29.39472000" + }, + { + "id": "108006", + "name": "Kocadere", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.63000000", + "longitude": "29.03000000" + }, + { + "id": "108026", + "name": "Koruköy", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.65435000", + "longitude": "29.16289000" + }, + { + "id": "108549", + "name": "Taşköprü", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.67361000", + "longitude": "29.39111000" + }, + { + "id": "108572", + "name": "Termal İlçesi", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.61381000", + "longitude": "29.18049000" + }, + { + "id": "108665", + "name": "Yalova", + "state_id": 2218, + "state_code": "77", + "country_id": 225, + "country_code": "TR", + "latitude": "40.65501000", + "longitude": "29.27693000" + }, + { + "id": "107077", + "name": "Akdağmadeni", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.66028000", + "longitude": "35.88361000" + }, + { + "id": "107078", + "name": "Akdağmadeni İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.66404000", + "longitude": "35.89747000" + }, + { + "id": "107222", + "name": "Aydıncık", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "40.12727000", + "longitude": "35.28765000" + }, + { + "id": "107224", + "name": "Aydıncık İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "40.13734000", + "longitude": "35.29459000" + }, + { + "id": "108945", + "name": "Şefaatlı", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.50430000", + "longitude": "34.75630000" + }, + { + "id": "108944", + "name": "Şefaatli İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.50080000", + "longitude": "34.76388000" + }, + { + "id": "108778", + "name": "Çandır İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.25445000", + "longitude": "35.52284000" + }, + { + "id": "108804", + "name": "Çayıralan", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.30278000", + "longitude": "35.64389000" + }, + { + "id": "108805", + "name": "Çayıralan İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.31377000", + "longitude": "35.65160000" + }, + { + "id": "108810", + "name": "Çekerek", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "40.07306000", + "longitude": "35.49472000" + }, + { + "id": "108811", + "name": "Çekerek İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "40.08331000", + "longitude": "35.49869000" + }, + { + "id": "107397", + "name": "Boğazlıyan İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.19627000", + "longitude": "35.25420000" + }, + { + "id": "107866", + "name": "Kadışehri", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.99568000", + "longitude": "35.79193000" + }, + { + "id": "107867", + "name": "Kadışehri İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "40.00551000", + "longitude": "35.79800000" + }, + { + "id": "108391", + "name": "Saraykent", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.69361000", + "longitude": "35.51111000" + }, + { + "id": "108392", + "name": "Saraykent İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.70389000", + "longitude": "35.51628000" + }, + { + "id": "108403", + "name": "Sarıkaya", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.49361000", + "longitude": "35.37694000" + }, + { + "id": "108487", + "name": "Sorgun", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.81012000", + "longitude": "35.18596000" + }, + { + "id": "108488", + "name": "Sorgun İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.82022000", + "longitude": "35.19205000" + }, + { + "id": "108697", + "name": "Yenifakılı", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.21142000", + "longitude": "35.00036000" + }, + { + "id": "108698", + "name": "Yenifakılı İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.21073000", + "longitude": "35.01459000" + }, + { + "id": "108718", + "name": "Yerköy", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.63806000", + "longitude": "34.46722000" + }, + { + "id": "108719", + "name": "Yerköy İlçesi", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.64415000", + "longitude": "34.48386000" + }, + { + "id": "108735", + "name": "Yozgat", + "state_id": 2188, + "state_code": "66", + "country_id": 225, + "country_code": "TR", + "latitude": "39.82000000", + "longitude": "34.80444000" + }, + { + "id": "107124", + "name": "Alaplı", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.18140000", + "longitude": "31.38514000" + }, + { + "id": "107125", + "name": "Alaplı İlçesi", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.17793000", + "longitude": "31.38662000" + }, + { + "id": "108798", + "name": "Çaycuma", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.42639000", + "longitude": "32.07556000" + }, + { + "id": "108799", + "name": "Çaycuma İlçesi", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.43664000", + "longitude": "32.08457000" + }, + { + "id": "107486", + "name": "Devrek", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.21917000", + "longitude": "31.95583000" + }, + { + "id": "107487", + "name": "Devrek İlçesi", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.22818000", + "longitude": "31.96519000" + }, + { + "id": "107590", + "name": "Ereğli", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.23807000", + "longitude": "31.60581000" + }, + { + "id": "107684", + "name": "Gökçebey İlçesi", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.31339000", + "longitude": "32.14981000" + }, + { + "id": "107996", + "name": "Kilimli", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.49111000", + "longitude": "31.83861000" + }, + { + "id": "108034", + "name": "Kozlu", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.43194000", + "longitude": "31.74583000" + }, + { + "id": "108755", + "name": "Zonguldak", + "state_id": 2213, + "state_code": "67", + "country_id": 225, + "country_code": "TR", + "latitude": "41.45139000", + "longitude": "31.79305000" + }, + { + "id": "106880", + "name": "Abadan", + "state_id": 3374, + "state_code": "A", + "country_id": 226, + "country_code": "TM", + "latitude": "38.05415000", + "longitude": "58.19721000" + }, + { + "id": "106882", + "name": "Annau", + "state_id": 3374, + "state_code": "A", + "country_id": 226, + "country_code": "TM", + "latitude": "37.88754000", + "longitude": "58.51596000" + }, + { + "id": "106883", + "name": "Arçabil", + "state_id": 3374, + "state_code": "A", + "country_id": 226, + "country_code": "TM", + "latitude": "37.91500000", + "longitude": "58.08987000" + }, + { + "id": "106886", + "name": "Baharly", + "state_id": 3374, + "state_code": "A", + "country_id": 226, + "country_code": "TM", + "latitude": "38.43624000", + "longitude": "57.43158000" + }, + { + "id": "106896", + "name": "Kaka", + "state_id": 3374, + "state_code": "A", + "country_id": 226, + "country_code": "TM", + "latitude": "37.34821000", + "longitude": "59.61431000" + }, + { + "id": "106905", + "name": "Tejen", + "state_id": 3374, + "state_code": "A", + "country_id": 226, + "country_code": "TM", + "latitude": "37.38338000", + "longitude": "60.50545000" + }, + { + "id": "106884", + "name": "Ashgabat", + "state_id": 3371, + "state_code": "S", + "country_id": 226, + "country_code": "TM", + "latitude": "37.95000000", + "longitude": "58.38333000" + }, + { + "id": "106887", + "name": "Balkanabat", + "state_id": 3372, + "state_code": "B", + "country_id": 226, + "country_code": "TM", + "latitude": "39.51075000", + "longitude": "54.36713000" + }, + { + "id": "106889", + "name": "Bereket", + "state_id": 3372, + "state_code": "B", + "country_id": 226, + "country_code": "TM", + "latitude": "39.24463000", + "longitude": "55.51536000" + }, + { + "id": "106895", + "name": "Gumdag", + "state_id": 3372, + "state_code": "B", + "country_id": 226, + "country_code": "TM", + "latitude": "39.20611000", + "longitude": "54.59056000" + }, + { + "id": "106898", + "name": "Magtymguly", + "state_id": 3372, + "state_code": "B", + "country_id": 226, + "country_code": "TM", + "latitude": "38.43749000", + "longitude": "56.28081000" + }, + { + "id": "106901", + "name": "Serdar", + "state_id": 3372, + "state_code": "B", + "country_id": 226, + "country_code": "TM", + "latitude": "38.97644000", + "longitude": "56.27575000" + }, + { + "id": "106907", + "name": "Türkmenbaşy", + "state_id": 3372, + "state_code": "B", + "country_id": 226, + "country_code": "TM", + "latitude": "40.02216000", + "longitude": "52.95517000" + }, + { + "id": "106881", + "name": "Akdepe", + "state_id": 3373, + "state_code": "D", + "country_id": 226, + "country_code": "TM", + "latitude": "42.05513000", + "longitude": "59.37877000" + }, + { + "id": "106890", + "name": "Boldumsaz", + "state_id": 3373, + "state_code": "D", + "country_id": 226, + "country_code": "TM", + "latitude": "42.12824000", + "longitude": "59.67101000" + }, + { + "id": "106891", + "name": "Daşoguz", + "state_id": 3373, + "state_code": "D", + "country_id": 226, + "country_code": "TM", + "latitude": "41.83625000", + "longitude": "59.96661000" + }, + { + "id": "106897", + "name": "Köneürgench", + "state_id": 3373, + "state_code": "D", + "country_id": 226, + "country_code": "TM", + "latitude": "42.32773000", + "longitude": "59.15442000" + }, + { + "id": "106904", + "name": "Tagta", + "state_id": 3373, + "state_code": "D", + "country_id": 226, + "country_code": "TM", + "latitude": "41.65041000", + "longitude": "59.91640000" + }, + { + "id": "106909", + "name": "Yylanly", + "state_id": 3373, + "state_code": "D", + "country_id": 226, + "country_code": "TM", + "latitude": "41.83333000", + "longitude": "59.65000000" + }, + { + "id": "106885", + "name": "Atamyrat", + "state_id": 3370, + "state_code": "L", + "country_id": 226, + "country_code": "TM", + "latitude": "37.83573000", + "longitude": "65.21058000" + }, + { + "id": "106892", + "name": "Farap", + "state_id": 3370, + "state_code": "L", + "country_id": 226, + "country_code": "TM", + "latitude": "39.17037000", + "longitude": "63.61165000" + }, + { + "id": "106893", + "name": "Gazojak", + "state_id": 3370, + "state_code": "L", + "country_id": 226, + "country_code": "TM", + "latitude": "41.18746000", + "longitude": "61.40360000" + }, + { + "id": "106894", + "name": "Gowurdak", + "state_id": 3370, + "state_code": "L", + "country_id": 226, + "country_code": "TM", + "latitude": "37.81244000", + "longitude": "66.04656000" + }, + { + "id": "106900", + "name": "Saýat", + "state_id": 3370, + "state_code": "L", + "country_id": 226, + "country_code": "TM", + "latitude": "38.78393000", + "longitude": "63.88035000" + }, + { + "id": "106906", + "name": "Türkmenabat", + "state_id": 3370, + "state_code": "L", + "country_id": 226, + "country_code": "TM", + "latitude": "39.07328000", + "longitude": "63.57861000" + }, + { + "id": "106888", + "name": "Bayramaly", + "state_id": 3369, + "state_code": "M", + "country_id": 226, + "country_code": "TM", + "latitude": "37.61852000", + "longitude": "62.16715000" + }, + { + "id": "106899", + "name": "Mary", + "state_id": 3369, + "state_code": "M", + "country_id": 226, + "country_code": "TM", + "latitude": "37.59378000", + "longitude": "61.83031000" + }, + { + "id": "106902", + "name": "Serhetabat", + "state_id": 3369, + "state_code": "M", + "country_id": 226, + "country_code": "TM", + "latitude": "35.27992000", + "longitude": "62.34383000" + }, + { + "id": "106903", + "name": "Seydi", + "state_id": 3369, + "state_code": "M", + "country_id": 226, + "country_code": "TM", + "latitude": "39.48160000", + "longitude": "62.91374000" + }, + { + "id": "106908", + "name": "Yolöten", + "state_id": 3369, + "state_code": "M", + "country_id": 226, + "country_code": "TM", + "latitude": "37.29886000", + "longitude": "62.35975000" + }, + { + "id": "108993", + "name": "Alapi Village", + "state_id": 3951, + "state_code": "FUN", + "country_id": 228, + "country_code": "TV", + "latitude": "-8.52074000", + "longitude": "179.19680000" + }, + { + "id": "108995", + "name": "Fakaifou Village", + "state_id": 3951, + "state_code": "FUN", + "country_id": 228, + "country_code": "TV", + "latitude": "-8.51758000", + "longitude": "179.20094000" + }, + { + "id": "108996", + "name": "Funafuti", + "state_id": 3951, + "state_code": "FUN", + "country_id": 228, + "country_code": "TV", + "latitude": "-8.52425000", + "longitude": "179.19417000" + }, + { + "id": "109001", + "name": "Toga Village", + "state_id": 3947, + "state_code": "NMG", + "country_id": 228, + "country_code": "TV", + "latitude": "-6.28764000", + "longitude": "176.31472000" + }, + { + "id": "108997", + "name": "Kulia Village", + "state_id": 3946, + "state_code": "NIT", + "country_id": 228, + "country_code": "TV", + "latitude": "-6.10819000", + "longitude": "177.33393000" + }, + { + "id": "108998", + "name": "Niulakita", + "state_id": 3946, + "state_code": "NIT", + "country_id": 228, + "country_code": "TV", + "latitude": "-10.78800000", + "longitude": "179.46600000" + }, + { + "id": "109000", + "name": "Tanrake Village", + "state_id": 3948, + "state_code": "NUI", + "country_id": 228, + "country_code": "TV", + "latitude": "-7.24562000", + "longitude": "177.14511000" + }, + { + "id": "108999", + "name": "Savave Village", + "state_id": 3952, + "state_code": "NKF", + "country_id": 228, + "country_code": "TV", + "latitude": "-8.02731000", + "longitude": "178.31351000" + }, + { + "id": "108994", + "name": "Asau Village", + "state_id": 3950, + "state_code": "VAI", + "country_id": 228, + "country_code": "TV", + "latitude": "-7.49026000", + "longitude": "178.68016000" + }, + { + "id": "110880", + "name": "Bukomansimbi District", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.12855000", + "longitude": "31.62527000" + }, + { + "id": "110886", + "name": "Buvuma District", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.36744000", + "longitude": "33.20071000" + }, + { + "id": "110888", + "name": "Bweyogerere", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.35773000", + "longitude": "32.66332000" + }, + { + "id": "110890", + "name": "Byakabanda", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.74250000", + "longitude": "31.40639000" + }, + { + "id": "110891", + "name": "Entebbe", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.05621000", + "longitude": "32.47949000" + }, + { + "id": "110893", + "name": "Gomba District", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.20017000", + "longitude": "31.75023000" + }, + { + "id": "110902", + "name": "Kajansi", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.21548000", + "longitude": "32.53453000" + }, + { + "id": "110903", + "name": "Kampala", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.31628000", + "longitude": "32.58219000" + }, + { + "id": "110904", + "name": "Kampala District", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.33508000", + "longitude": "32.58313000" + }, + { + "id": "110907", + "name": "Kanoni", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.17722000", + "longitude": "31.88111000" + }, + { + "id": "110911", + "name": "Kayunga", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.70250000", + "longitude": "32.88861000" + }, + { + "id": "110913", + "name": "Kiboga", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.91611000", + "longitude": "31.77417000" + }, + { + "id": "110917", + "name": "Kireka", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.34750000", + "longitude": "32.64917000" + }, + { + "id": "110924", + "name": "Kyotera", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.61556000", + "longitude": "31.51750000" + }, + { + "id": "110926", + "name": "Lugazi", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.36788000", + "longitude": "32.93760000" + }, + { + "id": "110927", + "name": "Luwero", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.84917000", + "longitude": "32.47306000" + }, + { + "id": "110928", + "name": "Lyantonde", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.40306000", + "longitude": "31.15722000" + }, + { + "id": "110930", + "name": "Masaka", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.33379000", + "longitude": "31.73409000" + }, + { + "id": "110936", + "name": "Mityana", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.41750000", + "longitude": "32.02278000" + }, + { + "id": "110939", + "name": "Mpigi", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.22500000", + "longitude": "32.31361000" + }, + { + "id": "110940", + "name": "Mubende", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.55849000", + "longitude": "31.39489000" + }, + { + "id": "110941", + "name": "Mubende District", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.50000000", + "longitude": "31.50000000" + }, + { + "id": "110943", + "name": "Mukono", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.35333000", + "longitude": "32.75528000" + }, + { + "id": "110944", + "name": "Nakasongola", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "1.30889000", + "longitude": "32.45639000" + }, + { + "id": "110945", + "name": "Namasuba", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.68944000", + "longitude": "32.42139000" + }, + { + "id": "110947", + "name": "Njeru", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.44166000", + "longitude": "33.17917000" + }, + { + "id": "110957", + "name": "Sembabule", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.07722000", + "longitude": "31.45667000" + }, + { + "id": "110961", + "name": "Wakiso", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.40444000", + "longitude": "32.45944000" + }, + { + "id": "110962", + "name": "Wakiso District", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.23763000", + "longitude": "32.47836000" + }, + { + "id": "110963", + "name": "Wobulenzi", + "state_id": 396, + "state_code": "C", + "country_id": 229, + "country_code": "UG", + "latitude": "0.72833000", + "longitude": "32.51222000" + }, + { + "id": "110878", + "name": "Bugembe", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.48213000", + "longitude": "33.24065000" + }, + { + "id": "110879", + "name": "Bugiri", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.57139000", + "longitude": "33.74167000" + }, + { + "id": "110881", + "name": "Bukwa District", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "1.27115000", + "longitude": "34.66778000" + }, + { + "id": "110882", + "name": "Bulambuli District", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "1.32055000", + "longitude": "34.28062000" + }, + { + "id": "110884", + "name": "Busembatia", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.77725000", + "longitude": "33.62364000" + }, + { + "id": "110885", + "name": "Busia", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.46588000", + "longitude": "34.09221000" + }, + { + "id": "110887", + "name": "Buwenge", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.64996000", + "longitude": "33.17128000" + }, + { + "id": "110898", + "name": "Iganga", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.60917000", + "longitude": "33.46861000" + }, + { + "id": "110899", + "name": "Jinja", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.43902000", + "longitude": "33.20317000" + }, + { + "id": "110905", + "name": "Kamuli", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.94722000", + "longitude": "33.11972000" + }, + { + "id": "110909", + "name": "Kapchorwa", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "1.40096000", + "longitude": "34.45038000" + }, + { + "id": "110914", + "name": "Kibuku District", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "1.05000000", + "longitude": "33.80879000" + }, + { + "id": "110922", + "name": "Kumi", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "1.46083000", + "longitude": "33.93611000" + }, + { + "id": "110933", + "name": "Mayuge", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.45972000", + "longitude": "33.48028000" + }, + { + "id": "110934", + "name": "Mbale", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "1.08209000", + "longitude": "34.17503000" + }, + { + "id": "110955", + "name": "Pallisa", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "1.14500000", + "longitude": "33.70944000" + }, + { + "id": "110958", + "name": "Sironko", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "1.23132000", + "longitude": "34.24773000" + }, + { + "id": "110959", + "name": "Soroti", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "1.71464000", + "longitude": "33.61113000" + }, + { + "id": "110960", + "name": "Tororo", + "state_id": 372, + "state_code": "E", + "country_id": 229, + "country_code": "UG", + "latitude": "0.69299000", + "longitude": "34.18085000" + }, + { + "id": "110874", + "name": "Adjumani", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "3.37786000", + "longitude": "31.79090000" + }, + { + "id": "110875", + "name": "Amudat", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "1.95000000", + "longitude": "34.95000000" + }, + { + "id": "110876", + "name": "Apac", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "1.97556000", + "longitude": "32.53861000" + }, + { + "id": "110877", + "name": "Arua", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "3.02013000", + "longitude": "30.91105000" + }, + { + "id": "110894", + "name": "Gulu", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "2.77457000", + "longitude": "32.29899000" + }, + { + "id": "110920", + "name": "Kitgum", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "3.27833000", + "longitude": "32.88667000" + }, + { + "id": "110921", + "name": "Kotido", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "2.98056000", + "longitude": "34.13306000" + }, + { + "id": "110925", + "name": "Lira", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "2.24990000", + "longitude": "32.89985000" + }, + { + "id": "110937", + "name": "Moroto", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "2.53453000", + "longitude": "34.66659000" + }, + { + "id": "110938", + "name": "Moyo", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "3.66088000", + "longitude": "31.72474000" + }, + { + "id": "110946", + "name": "Nebbi", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "2.47826000", + "longitude": "31.08893000" + }, + { + "id": "110950", + "name": "Otuke District", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "2.48372000", + "longitude": "33.34201000" + }, + { + "id": "110951", + "name": "Oyam District", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "2.38129000", + "longitude": "32.50071000" + }, + { + "id": "110952", + "name": "Pader", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "3.05000000", + "longitude": "33.21667000" + }, + { + "id": "110953", + "name": "Pader Palwo", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "2.80056000", + "longitude": "33.13500000" + }, + { + "id": "110954", + "name": "Paidha", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "2.41669000", + "longitude": "30.98551000" + }, + { + "id": "110964", + "name": "Yumbe", + "state_id": 332, + "state_code": "N", + "country_id": 229, + "country_code": "UG", + "latitude": "3.46506000", + "longitude": "31.24689000" + }, + { + "id": "110883", + "name": "Bundibugyo", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.71117000", + "longitude": "30.06469000" + }, + { + "id": "110889", + "name": "Bwizibwera", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.59167000", + "longitude": "30.62861000" + }, + { + "id": "110892", + "name": "Fort Portal", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.66174000", + "longitude": "30.27480000" + }, + { + "id": "110895", + "name": "Hoima", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "1.43314000", + "longitude": "31.35241000" + }, + { + "id": "110896", + "name": "Ibanda", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.13398000", + "longitude": "30.49616000" + }, + { + "id": "110897", + "name": "Ibanda District", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.08100000", + "longitude": "30.55600000" + }, + { + "id": "110900", + "name": "Kabale", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-1.24857000", + "longitude": "29.98993000" + }, + { + "id": "110901", + "name": "Kagadi", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.93778000", + "longitude": "30.80889000" + }, + { + "id": "110906", + "name": "Kamwenge", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.18660000", + "longitude": "30.45393000" + }, + { + "id": "110908", + "name": "Kanungu", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.95750000", + "longitude": "29.78972000" + }, + { + "id": "110910", + "name": "Kasese", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.18333000", + "longitude": "30.08333000" + }, + { + "id": "110912", + "name": "Kibale", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.80000000", + "longitude": "31.06667000" + }, + { + "id": "110915", + "name": "Kigorobya", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "1.61620000", + "longitude": "31.30890000" + }, + { + "id": "110916", + "name": "Kilembe", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.19835000", + "longitude": "30.01302000" + }, + { + "id": "110918", + "name": "Kiruhura", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.19664000", + "longitude": "30.84446000" + }, + { + "id": "110919", + "name": "Kisoro", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-1.28538000", + "longitude": "29.68497000" + }, + { + "id": "110923", + "name": "Kyenjojo", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.63278000", + "longitude": "30.62139000" + }, + { + "id": "110929", + "name": "Margherita", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.41861000", + "longitude": "29.89111000" + }, + { + "id": "110931", + "name": "Masindi", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "1.67444000", + "longitude": "31.71500000" + }, + { + "id": "110932", + "name": "Masindi Port", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "1.69606000", + "longitude": "32.08608000" + }, + { + "id": "110935", + "name": "Mbarara", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.60467000", + "longitude": "30.64851000" + }, + { + "id": "110942", + "name": "Muhororo", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "0.93806000", + "longitude": "30.75944000" + }, + { + "id": "110948", + "name": "Ntungamo", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.87944000", + "longitude": "30.26417000" + }, + { + "id": "110949", + "name": "Nyachera", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.90000000", + "longitude": "30.41667000" + }, + { + "id": "110956", + "name": "Rukungiri", + "state_id": 370, + "state_code": "W", + "country_id": 229, + "country_code": "UG", + "latitude": "-0.84111000", + "longitude": "29.94194000" + }, + { + "id": "109305", + "name": "Abrikosovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.10759000", + "longitude": "35.10139000" + }, + { + "id": "109306", + "name": "Abrikosovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.69236000", + "longitude": "34.10156000" + }, + { + "id": "109308", + "name": "Aeroflotskiy", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.01816000", + "longitude": "33.99961000" + }, + { + "id": "109309", + "name": "Agrarnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.01596000", + "longitude": "34.05725000" + }, + { + "id": "109310", + "name": "Akimovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.51981000", + "longitude": "34.82438000" + }, + { + "id": "109313", + "name": "Aleksandrovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.57654000", + "longitude": "34.09947000" + }, + { + "id": "109314", + "name": "Alekseyevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.58194000", + "longitude": "33.62980000" + }, + { + "id": "109315", + "name": "Alupka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.41808000", + "longitude": "34.04531000" + }, + { + "id": "109316", + "name": "Alushta", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.67728000", + "longitude": "34.40970000" + }, + { + "id": "109317", + "name": "Amurskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.27822000", + "longitude": "34.12823000" + }, + { + "id": "109327", + "name": "Armyansk", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "46.10919000", + "longitude": "33.69206000" + }, + { + "id": "109328", + "name": "Aromatnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.03678000", + "longitude": "34.39921000" + }, + { + "id": "109336", + "name": "Azovskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.58604000", + "longitude": "34.56680000" + }, + { + "id": "109338", + "name": "Baherove", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.37417000", + "longitude": "36.29705000" + }, + { + "id": "109339", + "name": "Bakhchysarai", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.75525000", + "longitude": "33.85782000" + }, + { + "id": "109340", + "name": "Bakhchysarai Raion", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.75002000", + "longitude": "33.86330000" + }, + { + "id": "109356", + "name": "Batal’noye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.19402000", + "longitude": "35.61583000" + }, + { + "id": "109363", + "name": "Belinskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.37465000", + "longitude": "36.08212000" + }, + { + "id": "109364", + "name": "Beloglinka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.99490000", + "longitude": "34.04167000" + }, + { + "id": "109365", + "name": "Belogorskiy rayon", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.06300000", + "longitude": "34.55675000" + }, + { + "id": "109372", + "name": "Beregovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.09470000", + "longitude": "35.43385000" + }, + { + "id": "109384", + "name": "Berezovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.57471000", + "longitude": "33.34397000" + }, + { + "id": "109399", + "name": "Bilohirsk", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.05462000", + "longitude": "34.60185000" + }, + { + "id": "109412", + "name": "Blizhneye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.05694000", + "longitude": "35.33056000" + }, + { + "id": "109417", + "name": "Bogatoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.02933000", + "longitude": "34.76732000" + }, + { + "id": "109438", + "name": "Botanicheskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.78656000", + "longitude": "33.54856000" + }, + { + "id": "109444", + "name": "Bratskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.83170000", + "longitude": "33.92151000" + }, + { + "id": "109470", + "name": "Chapayevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.28119000", + "longitude": "34.89428000" + }, + { + "id": "109474", + "name": "Chaykino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.08223000", + "longitude": "34.08673000" + }, + { + "id": "109476", + "name": "Chelyadinovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.20729000", + "longitude": "36.37620000" + }, + { + "id": "109489", + "name": "Chernomorskiy rayon", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.48798000", + "longitude": "32.92614000" + }, + { + "id": "109490", + "name": "Chernomorskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.50657000", + "longitude": "32.69776000" + }, + { + "id": "109491", + "name": "Chernopolye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.04399000", + "longitude": "34.63916000" + }, + { + "id": "109492", + "name": "Chernovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.50833000", + "longitude": "33.93397000" + }, + { + "id": "109493", + "name": "Chernozemnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.40808000", + "longitude": "34.81990000" + }, + { + "id": "109497", + "name": "Chernyshevo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.78202000", + "longitude": "33.42825000" + }, + { + "id": "109503", + "name": "Chervonoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.12294000", + "longitude": "33.68662000" + }, + { + "id": "109505", + "name": "Chisten’koye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.88152000", + "longitude": "34.04716000" + }, + { + "id": "109506", + "name": "Chistopolye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.36541000", + "longitude": "36.18312000" + }, + { + "id": "109507", + "name": "Chkalovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.60474000", + "longitude": "34.83395000" + }, + { + "id": "109527", + "name": "Dachnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.88448000", + "longitude": "34.98333000" + }, + { + "id": "109528", + "name": "Dalekoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.66006000", + "longitude": "33.08059000" + }, + { + "id": "109543", + "name": "Dmitrovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.48411000", + "longitude": "35.05880000" + }, + { + "id": "109547", + "name": "Dneprovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.71373000", + "longitude": "34.36256000" + }, + { + "id": "109560", + "name": "Dobroye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.86632000", + "longitude": "34.22661000" + }, + { + "id": "109561", + "name": "Dobrushino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.37441000", + "longitude": "33.36547000" + }, + { + "id": "109564", + "name": "Dolinnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.75320000", + "longitude": "33.77766000" + }, + { + "id": "109571", + "name": "Donskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.04509000", + "longitude": "34.21413000" + }, + { + "id": "109577", + "name": "Drofino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.28629000", + "longitude": "34.61589000" + }, + { + "id": "109582", + "name": "Dubki", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.93581000", + "longitude": "34.02355000" + }, + { + "id": "109592", + "name": "Dzhankoy", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.71168000", + "longitude": "34.39274000" + }, + { + "id": "109593", + "name": "Dzhankoyskiy rayon", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.78706000", + "longitude": "34.39197000" + }, + { + "id": "109599", + "name": "Feodosiya", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.03677000", + "longitude": "35.37789000" + }, + { + "id": "109600", + "name": "Filatovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "46.08192000", + "longitude": "33.78510000" + }, + { + "id": "109602", + "name": "Fontany", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.89717000", + "longitude": "34.07297000" + }, + { + "id": "109603", + "name": "Foros", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.39214000", + "longitude": "33.78798000" + }, + { + "id": "109604", + "name": "Frunze", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.02688000", + "longitude": "33.62956000" + }, + { + "id": "109605", + "name": "Gaspra", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.43364000", + "longitude": "34.10297000" + }, + { + "id": "109606", + "name": "Geroyskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.13857000", + "longitude": "33.74675000" + }, + { + "id": "109607", + "name": "Glazovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.38792000", + "longitude": "36.57965000" + }, + { + "id": "109608", + "name": "Golubinka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.59382000", + "longitude": "33.91521000" + }, + { + "id": "109609", + "name": "Gornostayevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.27819000", + "longitude": "36.18601000" + }, + { + "id": "109610", + "name": "Gorodskoy okrug Alushta", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.67256000", + "longitude": "34.41467000" + }, + { + "id": "109611", + "name": "Gorodskoy okrug Armyansk", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "46.10871000", + "longitude": "33.69095000" + }, + { + "id": "109612", + "name": "Gorodskoy okrug Dzhankoy", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.70810000", + "longitude": "34.39407000" + }, + { + "id": "109613", + "name": "Gorodskoy okrug Feodosiya", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.04612000", + "longitude": "35.37289000" + }, + { + "id": "109614", + "name": "Gorodskoy okrug Krasnoperekopsk", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.95330000", + "longitude": "33.79669000" + }, + { + "id": "109615", + "name": "Gorodskoy okrug Saki", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.12780000", + "longitude": "33.60134000" + }, + { + "id": "109616", + "name": "Gorodskoy okrug Simferopol", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.94803000", + "longitude": "34.10912000" + }, + { + "id": "109617", + "name": "Gorodskoy okrug Sudak", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.91667000", + "longitude": "35.00202000" + }, + { + "id": "109618", + "name": "Gorodskoy okrug Yalta", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.49638000", + "longitude": "34.16336000" + }, + { + "id": "109619", + "name": "Gorodskoy okrug Yevpatoriya", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.19559000", + "longitude": "33.36342000" + }, + { + "id": "109620", + "name": "Gresovskiy", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.00804000", + "longitude": "34.02657000" + }, + { + "id": "109621", + "name": "Grishino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.64219000", + "longitude": "33.83098000" + }, + { + "id": "109622", + "name": "Grushevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.02281000", + "longitude": "34.97301000" + }, + { + "id": "109623", + "name": "Gurzuf", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.54624000", + "longitude": "34.27841000" + }, + { + "id": "109664", + "name": "Hvardiiske", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.11692000", + "longitude": "34.02188000" + }, + { + "id": "109669", + "name": "Ilychyovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.28348000", + "longitude": "35.73864000" + }, + { + "id": "109670", + "name": "Ilyichevo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.24524000", + "longitude": "35.07127000" + }, + { + "id": "109671", + "name": "Ilyinka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.81784000", + "longitude": "33.79482000" + }, + { + "id": "109676", + "name": "Ishun’", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.92403000", + "longitude": "33.82364000" + }, + { + "id": "109685", + "name": "Ivanovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.07200000", + "longitude": "33.66130000" + }, + { + "id": "109688", + "name": "Izobil’noye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.70276000", + "longitude": "34.35357000" + }, + { + "id": "109689", + "name": "Izumrudnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.73704000", + "longitude": "34.41299000" + }, + { + "id": "109692", + "name": "Izyumovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.04437000", + "longitude": "35.13717000" + }, + { + "id": "109700", + "name": "Kalinino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.59521000", + "longitude": "34.22030000" + }, + { + "id": "109701", + "name": "Kalinovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.31658000", + "longitude": "35.74643000" + }, + { + "id": "109707", + "name": "Kamenolomnya", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.24804000", + "longitude": "33.41773000" + }, + { + "id": "109718", + "name": "Kashtanovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.83210000", + "longitude": "34.05912000" + }, + { + "id": "109719", + "name": "Kashtany", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.86760000", + "longitude": "33.78995000" + }, + { + "id": "109725", + "name": "Kerch", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.35310000", + "longitude": "36.47429000" + }, + { + "id": "109726", + "name": "Kerchens'ka Mis'ka Rada", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.35307000", + "longitude": "36.47414000" + }, + { + "id": "109734", + "name": "Kholmovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.65830000", + "longitude": "33.75456000" + }, + { + "id": "109750", + "name": "Kirovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.22106000", + "longitude": "35.84227000" + }, + { + "id": "109752", + "name": "Kirovske Raion", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.15522000", + "longitude": "35.17696000" + }, + { + "id": "109753", + "name": "Kirovskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.22967000", + "longitude": "35.19987000" + }, + { + "id": "109761", + "name": "Klepinino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.52800000", + "longitude": "34.18315000" + }, + { + "id": "109771", + "name": "Koktebel", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.96155000", + "longitude": "35.24660000" + }, + { + "id": "109780", + "name": "Kol’chugino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.94367000", + "longitude": "33.78865000" + }, + { + "id": "109781", + "name": "Kol’tsovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.32807000", + "longitude": "33.44992000" + }, + { + "id": "109774", + "name": "Kolodeznoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.22682000", + "longitude": "34.33698000" + }, + { + "id": "109779", + "name": "Koloski", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.26936000", + "longitude": "33.29386000" + }, + { + "id": "109784", + "name": "Komsomol’skoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.01900000", + "longitude": "34.03049000" + }, + { + "id": "109788", + "name": "Kondratyevo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.63125000", + "longitude": "34.47387000" + }, + { + "id": "109790", + "name": "Konstantinovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.85511000", + "longitude": "34.12069000" + }, + { + "id": "109794", + "name": "Koreiz", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.43374000", + "longitude": "34.08516000" + }, + { + "id": "109796", + "name": "Kormovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.50001000", + "longitude": "33.61192000" + }, + { + "id": "109812", + "name": "Kostochkovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.31747000", + "longitude": "34.67418000" + }, + { + "id": "109818", + "name": "Kotel’nikovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.36584000", + "longitude": "34.02575000" + }, + { + "id": "109822", + "name": "Kovyl’noye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.69028000", + "longitude": "33.52775000" + }, + { + "id": "109830", + "name": "Krasna Zor'ka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.13432000", + "longitude": "34.04015000" + }, + { + "id": "109831", + "name": "Krasnaya Polyana", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.48241000", + "longitude": "32.93790000" + }, + { + "id": "109834", + "name": "Krasnoarmeyskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.99103000", + "longitude": "34.03037000" + }, + { + "id": "109835", + "name": "Krasnoflotskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.31572000", + "longitude": "34.94756000" + }, + { + "id": "109836", + "name": "Krasnogorka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.24513000", + "longitude": "35.80739000" + }, + { + "id": "109837", + "name": "Krasnogvardeyskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.50271000", + "longitude": "34.30134000" + }, + { + "id": "109839", + "name": "Krasnohvardiiske Raion", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.40230000", + "longitude": "34.25464000" + }, + { + "id": "109840", + "name": "Krasnokamenka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.56383000", + "longitude": "34.28877000" + }, + { + "id": "109842", + "name": "Krasnolesye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.83259000", + "longitude": "34.23086000" + }, + { + "id": "109845", + "name": "Krasnoperekops’k", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.95716000", + "longitude": "33.79650000" + }, + { + "id": "109844", + "name": "Krasnoperekopsk Raion", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.96992000", + "longitude": "33.87990000" + }, + { + "id": "109849", + "name": "Krasnoyarskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.50661000", + "longitude": "33.26641000" + }, + { + "id": "109850", + "name": "Krasnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.13999000", + "longitude": "34.09452000" + }, + { + "id": "109851", + "name": "Krasnoznamenka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.28676000", + "longitude": "34.00036000" + }, + { + "id": "109852", + "name": "Krasnyi Mak", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.64218000", + "longitude": "33.78130000" + }, + { + "id": "109857", + "name": "Krayneye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.22993000", + "longitude": "33.83239000" + }, + { + "id": "109861", + "name": "Krest’yanovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.72268000", + "longitude": "33.93938000" + }, + { + "id": "109863", + "name": "Krinichnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.02428000", + "longitude": "34.61202000" + }, + { + "id": "109869", + "name": "Krymka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.70453000", + "longitude": "34.18782000" + }, + { + "id": "109870", + "name": "Krymskaya Roza", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.05776000", + "longitude": "34.35631000" + }, + { + "id": "109871", + "name": "Krymskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.18836000", + "longitude": "33.80106000" + }, + { + "id": "109881", + "name": "Kuibyshevo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.62900000", + "longitude": "33.86895000" + }, + { + "id": "109882", + "name": "Kukushkino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.71924000", + "longitude": "33.39030000" + }, + { + "id": "109890", + "name": "Kurskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.02908000", + "longitude": "34.93623000" + }, + { + "id": "109968", + "name": "L’govskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.09801000", + "longitude": "34.95770000" + }, + { + "id": "109910", + "name": "Lekarstvennoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.94194000", + "longitude": "33.82229000" + }, + { + "id": "109912", + "name": "Lenine Raion", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.24693000", + "longitude": "36.00540000" + }, + { + "id": "109913", + "name": "Lenino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.29857000", + "longitude": "35.77708000" + }, + { + "id": "109914", + "name": "Leninskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.26844000", + "longitude": "34.05023000" + }, + { + "id": "109915", + "name": "Lesnovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.15350000", + "longitude": "33.61889000" + }, + { + "id": "109917", + "name": "Levadki", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.87083000", + "longitude": "34.04278000" + }, + { + "id": "109919", + "name": "Listvennoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.48086000", + "longitude": "34.81087000" + }, + { + "id": "109920", + "name": "Litvinenkovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.08648000", + "longitude": "34.31107000" + }, + { + "id": "109926", + "name": "Livadia", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.47021000", + "longitude": "34.14272000" + }, + { + "id": "109927", + "name": "Lobanovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.77552000", + "longitude": "34.24236000" + }, + { + "id": "109933", + "name": "Lozovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.90600000", + "longitude": "34.16414000" + }, + { + "id": "109935", + "name": "Luchistoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.73646000", + "longitude": "34.40063000" + }, + { + "id": "109936", + "name": "Luganskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.80190000", + "longitude": "34.23786000" + }, + { + "id": "109937", + "name": "Lugovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.23469000", + "longitude": "35.72202000" + }, + { + "id": "109969", + "name": "Magazinka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.86312000", + "longitude": "34.04969000" + }, + { + "id": "109982", + "name": "Malen’koye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.07585000", + "longitude": "33.99942000" + }, + { + "id": "109985", + "name": "Malorechenskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.75888000", + "longitude": "34.55789000" + }, + { + "id": "109987", + "name": "Maly Mayak", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.61356000", + "longitude": "34.36469000" + }, + { + "id": "110005", + "name": "Mar’yanovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.44627000", + "longitude": "34.29474000" + }, + { + "id": "109998", + "name": "Marfovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.19853000", + "longitude": "36.09144000" + }, + { + "id": "110004", + "name": "Maryevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.11330000", + "longitude": "36.23992000" + }, + { + "id": "110006", + "name": "Maslovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.79197000", + "longitude": "34.36298000" + }, + { + "id": "110007", + "name": "Massandra", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.50958000", + "longitude": "34.18817000" + }, + { + "id": "110010", + "name": "Mayskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.59555000", + "longitude": "34.55213000" + }, + { + "id": "110011", + "name": "Mazanka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.00550000", + "longitude": "34.25581000" + }, + { + "id": "110013", + "name": "Medvedevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.88389000", + "longitude": "34.55562000" + }, + { + "id": "110014", + "name": "Medvedevo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.38597000", + "longitude": "33.00400000" + }, + { + "id": "110020", + "name": "Mel’nichnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.19885000", + "longitude": "34.42012000" + }, + { + "id": "110026", + "name": "Mezhvodnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.58751000", + "longitude": "32.84501000" + }, + { + "id": "110027", + "name": "Michurinskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.07430000", + "longitude": "34.70672000" + }, + { + "id": "110028", + "name": "Mikhaylovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.11325000", + "longitude": "33.61071000" + }, + { + "id": "110032", + "name": "Mirnovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.69083000", + "longitude": "34.30966000" + }, + { + "id": "110033", + "name": "Mirnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.98330000", + "longitude": "34.06160000" + }, + { + "id": "110034", + "name": "Mirny", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.30788000", + "longitude": "33.03501000" + }, + { + "id": "110036", + "name": "Mitrofanovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.45114000", + "longitude": "34.67883000" + }, + { + "id": "110037", + "name": "Mityayevo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.23423000", + "longitude": "33.70150000" + }, + { + "id": "110046", + "name": "Molochnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.19960000", + "longitude": "33.22233000" + }, + { + "id": "110050", + "name": "Molodyozhnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.00354000", + "longitude": "34.05634000" + }, + { + "id": "110053", + "name": "Morskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.82593000", + "longitude": "34.80314000" + }, + { + "id": "110061", + "name": "Muromskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.09051000", + "longitude": "34.84900000" + }, + { + "id": "110064", + "name": "Muskatnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.46586000", + "longitude": "34.54316000" + }, + { + "id": "110077", + "name": "Mysovoe", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.44788000", + "longitude": "35.83528000" + }, + { + "id": "110083", + "name": "Nasypnoe", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.05285000", + "longitude": "35.29415000" + }, + { + "id": "110085", + "name": "Naydenovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.27088000", + "longitude": "34.44898000" + }, + { + "id": "110088", + "name": "Nekrasovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.44085000", + "longitude": "34.98584000" + }, + { + "id": "110089", + "name": "Nekrasovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.42453000", + "longitude": "34.28545000" + }, + { + "id": "110095", + "name": "Nikita", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.51564000", + "longitude": "34.23840000" + }, + { + "id": "110096", + "name": "Nikolayevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.96213000", + "longitude": "33.61061000" + }, + { + "id": "110099", + "name": "Nizhnegorskiy", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.44789000", + "longitude": "34.73839000" + }, + { + "id": "110100", + "name": "Nizhnegorskiy rayon", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.48430000", + "longitude": "34.76798000" + }, + { + "id": "110118", + "name": "Novoandreyevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.19904000", + "longitude": "34.09384000" + }, + { + "id": "110124", + "name": "Novoestoniya", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.49960000", + "longitude": "34.24298000" + }, + { + "id": "110126", + "name": "Novofedorovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.09473000", + "longitude": "33.57211000" + }, + { + "id": "110127", + "name": "Novogrigoryevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.45200000", + "longitude": "34.60378000" + }, + { + "id": "110129", + "name": "Novoivanovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.44914000", + "longitude": "33.09833000" + }, + { + "id": "110130", + "name": "Novokrymskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.78007000", + "longitude": "34.15543000" + }, + { + "id": "110136", + "name": "Novonikolayevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.30855000", + "longitude": "36.05749000" + }, + { + "id": "110138", + "name": "Novoozyornoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.38314000", + "longitude": "33.11715000" + }, + { + "id": "110139", + "name": "Novopavlovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.86634000", + "longitude": "33.89018000" + }, + { + "id": "110140", + "name": "Novopokrovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.16517000", + "longitude": "35.25304000" + }, + { + "id": "110147", + "name": "Novosel’skoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.50357000", + "longitude": "32.72250000" + }, + { + "id": "110144", + "name": "Novoselovskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.44276000", + "longitude": "33.59795000" + }, + { + "id": "110148", + "name": "Novostepnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.66206000", + "longitude": "34.38700000" + }, + { + "id": "110149", + "name": "Novosyolovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.99377000", + "longitude": "33.83525000" + }, + { + "id": "110155", + "name": "Novozhilovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.15960000", + "longitude": "34.23270000" + }, + { + "id": "110156", + "name": "Novy Svet", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.83087000", + "longitude": "34.91370000" + }, + { + "id": "110178", + "name": "Okhotnikovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.23985000", + "longitude": "33.59405000" + }, + { + "id": "110179", + "name": "Okhotskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.48612000", + "longitude": "34.86401000" + }, + { + "id": "110182", + "name": "Oktyabr'skoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.36215000", + "longitude": "36.36803000" + }, + { + "id": "110183", + "name": "Oktyabr’skoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.28866000", + "longitude": "34.13521000" + }, + { + "id": "110184", + "name": "Okunevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.36855000", + "longitude": "32.76357000" + }, + { + "id": "110191", + "name": "Olenevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.38333000", + "longitude": "32.53333000" + }, + { + "id": "110201", + "name": "Ordzhonikidze", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.96401000", + "longitude": "35.35576000" + }, + { + "id": "110202", + "name": "Orekhovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.12944000", + "longitude": "33.63180000" + }, + { + "id": "110204", + "name": "Orlovskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.81070000", + "longitude": "33.97308000" + }, + { + "id": "110206", + "name": "Ostanino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.32731000", + "longitude": "35.91295000" + }, + { + "id": "110209", + "name": "Ostrovskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.74232000", + "longitude": "34.06607000" + }, + { + "id": "110220", + "name": "Pakharevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.83472000", + "longitude": "34.16129000" + }, + { + "id": "110223", + "name": "Partenit", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.57800000", + "longitude": "34.34464000" + }, + { + "id": "110224", + "name": "Partizanskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.83379000", + "longitude": "34.08465000" + }, + { + "id": "110225", + "name": "Partizany", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.14373000", + "longitude": "35.15509000" + }, + { + "id": "110243", + "name": "Pereval'noye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.84838000", + "longitude": "34.31271000" + }, + { + "id": "110245", + "name": "Perovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.92513000", + "longitude": "34.05753000" + }, + { + "id": "110248", + "name": "Pervomayskiy rayon", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.59825000", + "longitude": "33.83249000" + }, + { + "id": "110249", + "name": "Pervomayskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.71744000", + "longitude": "33.85596000" + }, + { + "id": "110254", + "name": "Peschanoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.84342000", + "longitude": "33.60921000" + }, + { + "id": "110260", + "name": "Petrovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.49776000", + "longitude": "34.28816000" + }, + { + "id": "110272", + "name": "Pionerskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.88083000", + "longitude": "34.20194000" + }, + { + "id": "110277", + "name": "Plodovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.87156000", + "longitude": "33.85615000" + }, + { + "id": "110280", + "name": "Pobednoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.70109000", + "longitude": "34.44805000" + }, + { + "id": "110283", + "name": "Pochetnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.99495000", + "longitude": "33.76588000" + }, + { + "id": "110295", + "name": "Poltavka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.35133000", + "longitude": "34.18371000" + }, + { + "id": "110305", + "name": "Poshtove", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.83540000", + "longitude": "33.96159000" + }, + { + "id": "110307", + "name": "Pozharskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.93554000", + "longitude": "33.87109000" + }, + { + "id": "110308", + "name": "Pravda", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.77903000", + "longitude": "33.84649000" + }, + { + "id": "110310", + "name": "Primorskiy", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.11904000", + "longitude": "35.48025000" + }, + { + "id": "110311", + "name": "Priozyornoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.26990000", + "longitude": "36.33405000" + }, + { + "id": "110312", + "name": "Privetnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.11969000", + "longitude": "35.05960000" + }, + { + "id": "110314", + "name": "Prostornoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.65597000", + "longitude": "34.69837000" + }, + { + "id": "110315", + "name": "Prudovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.90424000", + "longitude": "33.78114000" + }, + { + "id": "110316", + "name": "Prudy", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.23922000", + "longitude": "34.70217000" + }, + { + "id": "110326", + "name": "Pshenichnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.64627000", + "longitude": "34.83767000" + }, + { + "id": "110329", + "name": "Pushkino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.20373000", + "longitude": "34.97642000" + }, + { + "id": "110333", + "name": "Pyatikhatka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.32347000", + "longitude": "34.25516000" + }, + { + "id": "110348", + "name": "Razdol’nenskiy rayon", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.67086000", + "longitude": "33.44075000" + }, + { + "id": "110349", + "name": "Razdol’noye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.77083000", + "longitude": "33.48777000" + }, + { + "id": "110358", + "name": "Rodnikovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.04296000", + "longitude": "33.95407000" + }, + { + "id": "110367", + "name": "Romashkino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.25647000", + "longitude": "33.25517000" + }, + { + "id": "110371", + "name": "Roshchino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.60916000", + "longitude": "34.37992000" + }, + { + "id": "110372", + "name": "Roskoshnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.65187000", + "longitude": "34.11552000" + }, + { + "id": "110375", + "name": "Rovnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.35134000", + "longitude": "34.35230000" + }, + { + "id": "110389", + "name": "Ruch’i", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.78564000", + "longitude": "33.66093000" + }, + { + "id": "110392", + "name": "Rusakovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.12369000", + "longitude": "34.47458000" + }, + { + "id": "110395", + "name": "Rybach'e", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.77331000", + "longitude": "34.59609000" + }, + { + "id": "110399", + "name": "Sadovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.31037000", + "longitude": "34.65260000" + }, + { + "id": "110402", + "name": "Saki", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.13424000", + "longitude": "33.59996000" + }, + { + "id": "110403", + "name": "Sakskiy rayon", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.27799000", + "longitude": "33.52911000" + }, + { + "id": "110409", + "name": "Sary-Bash", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.57142000", + "longitude": "33.78728000" + }, + { + "id": "110416", + "name": "Semisotka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.24676000", + "longitude": "35.56500000" + }, + { + "id": "110418", + "name": "Senokosnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.73277000", + "longitude": "33.51552000" + }, + { + "id": "110421", + "name": "Serebryanka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.63937000", + "longitude": "33.49632000" + }, + { + "id": "110434", + "name": "Shchebetovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.93821000", + "longitude": "35.15800000" + }, + { + "id": "110437", + "name": "Shchyolkino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.42985000", + "longitude": "35.82250000" + }, + { + "id": "110439", + "name": "Shelkovichnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.18748000", + "longitude": "33.68807000" + }, + { + "id": "110446", + "name": "Shirokoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.20029000", + "longitude": "34.05069000" + }, + { + "id": "110448", + "name": "Shkol’noye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.05758000", + "longitude": "33.89737000" + }, + { + "id": "110452", + "name": "Shtormovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.26717000", + "longitude": "33.08693000" + }, + { + "id": "110459", + "name": "Simeiz", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.40646000", + "longitude": "34.00704000" + }, + { + "id": "110461", + "name": "Simferopol", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.95719000", + "longitude": "34.11079000" + }, + { + "id": "110462", + "name": "Simferopol Raion", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.95690000", + "longitude": "34.10225000" + }, + { + "id": "110463", + "name": "Sinitsyno", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.23862000", + "longitude": "35.24659000" + }, + { + "id": "110465", + "name": "Sizovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.34892000", + "longitude": "33.87669000" + }, + { + "id": "110469", + "name": "Skalistoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.81686000", + "longitude": "33.97791000" + }, + { + "id": "110473", + "name": "Skvortsovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.07542000", + "longitude": "33.82084000" + }, + { + "id": "110477", + "name": "Slavnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.72176000", + "longitude": "33.23689000" + }, + { + "id": "110481", + "name": "Slavyanskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.72768000", + "longitude": "33.32165000" + }, + { + "id": "110497", + "name": "Sofiivka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.08985000", + "longitude": "33.99887000" + }, + { + "id": "110501", + "name": "Sokolinoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.55041000", + "longitude": "33.95897000" + }, + { + "id": "110504", + "name": "Solnechnaya Dolina", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.87185000", + "longitude": "35.10622000" + }, + { + "id": "110505", + "name": "Solnechnogorskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.74722000", + "longitude": "34.53999000" + }, + { + "id": "110506", + "name": "Solnechnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.04767000", + "longitude": "34.08380000" + }, + { + "id": "110517", + "name": "Sovetskiy", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.34267000", + "longitude": "34.92463000" + }, + { + "id": "110518", + "name": "Sovietskyi Raion", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.31516000", + "longitude": "34.92914000" + }, + { + "id": "110519", + "name": "Sovkhoznoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.96005000", + "longitude": "33.77155000" + }, + { + "id": "110523", + "name": "Stakhanovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.37062000", + "longitude": "33.94883000" + }, + { + "id": "110524", + "name": "Stal’noye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.70814000", + "longitude": "34.56238000" + }, + { + "id": "110536", + "name": "Stary Krym", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.02887000", + "longitude": "35.09174000" + }, + { + "id": "110549", + "name": "Stepnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.65212000", + "longitude": "33.77441000" + }, + { + "id": "110553", + "name": "Stolbovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.36270000", + "longitude": "33.49584000" + }, + { + "id": "110556", + "name": "Strogonovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.94970000", + "longitude": "34.17924000" + }, + { + "id": "110560", + "name": "Sudak", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.84924000", + "longitude": "34.97471000" + }, + { + "id": "110565", + "name": "Susanino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.49898000", + "longitude": "33.69854000" + }, + { + "id": "110567", + "name": "Suvorovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "46.08865000", + "longitude": "33.68800000" + }, + { + "id": "110568", + "name": "Suvorovskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.25171000", + "longitude": "33.37194000" + }, + { + "id": "110576", + "name": "Svetloye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.63320000", + "longitude": "34.66264000" + }, + { + "id": "110586", + "name": "Tabachnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.90175000", + "longitude": "33.67638000" + }, + { + "id": "110588", + "name": "Tankovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.65829000", + "longitude": "33.80929000" + }, + { + "id": "110596", + "name": "Tenistoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.74303000", + "longitude": "33.66812000" + }, + { + "id": "110599", + "name": "Teplovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.03239000", + "longitude": "33.69588000" + }, + { + "id": "110610", + "name": "Tokarevo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.28367000", + "longitude": "35.15244000" + }, + { + "id": "110622", + "name": "Trudovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.99133000", + "longitude": "34.20311000" + }, + { + "id": "110628", + "name": "Tselinnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.90633000", + "longitude": "34.18063000" + }, + { + "id": "110630", + "name": "Tsvetochnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.08655000", + "longitude": "34.38521000" + }, + { + "id": "110638", + "name": "Turgenevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.69747000", + "longitude": "33.83007000" + }, + { + "id": "110648", + "name": "Uglovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.82146000", + "longitude": "33.60452000" + }, + { + "id": "110652", + "name": "Ukrainka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.88730000", + "longitude": "34.13973000" + }, + { + "id": "110653", + "name": "Ukromnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.04272000", + "longitude": "34.00312000" + }, + { + "id": "110658", + "name": "Urozhaynoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.04522000", + "longitude": "34.13511000" + }, + { + "id": "110664", + "name": "Uvarovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.45108000", + "longitude": "34.78812000" + }, + { + "id": "110665", + "name": "Uvarovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.26260000", + "longitude": "35.66506000" + }, + { + "id": "110666", + "name": "Uyutnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.19769000", + "longitude": "33.29796000" + }, + { + "id": "110676", + "name": "Vasilyevka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.13938000", + "longitude": "34.72291000" + }, + { + "id": "110703", + "name": "Veresayevo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.30551000", + "longitude": "33.50004000" + }, + { + "id": "110711", + "name": "Verkhorechye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.69738000", + "longitude": "33.98696000" + }, + { + "id": "110714", + "name": "Vesele", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.85807000", + "longitude": "34.87952000" + }, + { + "id": "110715", + "name": "Veselovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.37733000", + "longitude": "33.21385000" + }, + { + "id": "110717", + "name": "Vilino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.84560000", + "longitude": "33.67161000" + }, + { + "id": "110721", + "name": "Vinnitskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.98129000", + "longitude": "33.73920000" + }, + { + "id": "110723", + "name": "Vinogradnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.48149000", + "longitude": "34.12973000" + }, + { + "id": "110724", + "name": "Vinogradovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.39264000", + "longitude": "33.64668000" + }, + { + "id": "110725", + "name": "Vishennoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.14509000", + "longitude": "34.59691000" + }, + { + "id": "110726", + "name": "Vishnyovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.95966000", + "longitude": "33.95289000" + }, + { + "id": "110728", + "name": "Vladimirovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.14760000", + "longitude": "33.57583000" + }, + { + "id": "110729", + "name": "Vladislavovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.16828000", + "longitude": "35.37658000" + }, + { + "id": "110731", + "name": "Voinka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.86990000", + "longitude": "33.99138000" + }, + { + "id": "110739", + "name": "Vol’noye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.56570000", + "longitude": "34.30360000" + }, + { + "id": "110740", + "name": "Vorobyovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.32895000", + "longitude": "33.24654000" + }, + { + "id": "110746", + "name": "Voskhod", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.50999000", + "longitude": "34.39355000" + }, + { + "id": "110748", + "name": "Voykovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.38329000", + "longitude": "36.43739000" + }, + { + "id": "110778", + "name": "Yalta", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.50218000", + "longitude": "34.16624000" + }, + { + "id": "110782", + "name": "Yantarnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.43473000", + "longitude": "34.22134000" + }, + { + "id": "110785", + "name": "Yarkoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.69120000", + "longitude": "34.26323000" + }, + { + "id": "110786", + "name": "Yarkoye Pole", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.20581000", + "longitude": "35.19848000" + }, + { + "id": "110789", + "name": "Yasnopolyanskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.94097000", + "longitude": "34.35262000" + }, + { + "id": "110794", + "name": "Yemelyanovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.53287000", + "longitude": "34.89624000" + }, + { + "id": "110798", + "name": "Yermakovo", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.85364000", + "longitude": "34.48644000" + }, + { + "id": "110800", + "name": "Yevpatoriya", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.20091000", + "longitude": "33.36655000" + }, + { + "id": "110813", + "name": "Zalesye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.88687000", + "longitude": "34.10168000" + }, + { + "id": "110819", + "name": "Zaozyornoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.15816000", + "longitude": "33.27866000" + }, + { + "id": "110822", + "name": "Zarechnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.85048000", + "longitude": "34.26426000" + }, + { + "id": "110829", + "name": "Zavet-Leninskiy", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.86258000", + "longitude": "34.39160000" + }, + { + "id": "110830", + "name": "Zavetnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.32697000", + "longitude": "34.80837000" + }, + { + "id": "110835", + "name": "Zelenogorskoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.01249000", + "longitude": "34.46848000" + }, + { + "id": "110836", + "name": "Zelyonoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.59583000", + "longitude": "34.00921000" + }, + { + "id": "110837", + "name": "Zemlyanichnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.97444000", + "longitude": "34.83553000" + }, + { + "id": "110838", + "name": "Zernovoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.32364000", + "longitude": "34.48099000" + }, + { + "id": "110841", + "name": "Zheleznodorozhnoye", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "44.71710000", + "longitude": "33.80417000" + }, + { + "id": "110842", + "name": "Zhelyabovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.39877000", + "longitude": "34.75776000" + }, + { + "id": "110843", + "name": "Zhemchuzhina", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.27466000", + "longitude": "34.65778000" + }, + { + "id": "110848", + "name": "Zhuravki", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.12629000", + "longitude": "35.21513000" + }, + { + "id": "110849", + "name": "Zhuravli", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.25246000", + "longitude": "33.64104000" + }, + { + "id": "110850", + "name": "Zhuravlyovka", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.17680000", + "longitude": "33.99680000" + }, + { + "id": "110855", + "name": "Zimino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.50797000", + "longitude": "33.51431000" + }, + { + "id": "110862", + "name": "Zolotoye Pole", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.12774000", + "longitude": "34.99148000" + }, + { + "id": "110864", + "name": "Zorkino", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.54762000", + "longitude": "34.71028000" + }, + { + "id": "110868", + "name": "Zuya", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.05418000", + "longitude": "34.32152000" + }, + { + "id": "110870", + "name": "Zybiny", + "state_id": 4689, + "state_code": "43", + "country_id": 230, + "country_code": "UA", + "latitude": "45.23674000", + "longitude": "34.64987000" + }, + { + "id": "109337", + "name": "Babanka", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.70971000", + "longitude": "30.44827000" + }, + { + "id": "109459", + "name": "Buky", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.09252000", + "longitude": "30.40355000" + }, + { + "id": "109477", + "name": "Cherkasy", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.42854000", + "longitude": "32.06207000" + }, + { + "id": "109498", + "name": "Chervona Sloboda", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.37281000", + "longitude": "32.15742000" + }, + { + "id": "109510", + "name": "Chornobay", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.66644000", + "longitude": "32.32932000" + }, + { + "id": "109524", + "name": "Chyhyryn", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.08376000", + "longitude": "32.65549000" + }, + { + "id": "109575", + "name": "Drabiv", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.96029000", + "longitude": "32.14070000" + }, + { + "id": "109651", + "name": "Horodyshche", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.28489000", + "longitude": "31.44513000" + }, + { + "id": "109709", + "name": "Kamianka", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.03180000", + "longitude": "32.10396000" + }, + { + "id": "109714", + "name": "Kaniv", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.75182000", + "longitude": "31.46004000" + }, + { + "id": "109741", + "name": "Khrystynivka", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.81577000", + "longitude": "29.97703000" + }, + { + "id": "109805", + "name": "Korsun-Shevchenkivskyi", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.41894000", + "longitude": "31.25865000" + }, + { + "id": "109909", + "name": "Lebedyn", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.96242000", + "longitude": "31.52696000" + }, + { + "id": "109959", + "name": "Lysianka", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.25229000", + "longitude": "30.82946000" + }, + { + "id": "109995", + "name": "Mankivka", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.96349000", + "longitude": "30.33366000" + }, + { + "id": "110042", + "name": "Mliiv", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.33691000", + "longitude": "31.51704000" + }, + { + "id": "110051", + "name": "Monastyryshche", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.99090000", + "longitude": "29.80470000" + }, + { + "id": "110054", + "name": "Moshny", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.52754000", + "longitude": "31.73708000" + }, + { + "id": "110112", + "name": "Nove-Misto", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.98113000", + "longitude": "29.82813000" + }, + { + "id": "110393", + "name": "Ruska Poliana", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.41700000", + "longitude": "31.92009000" + }, + { + "id": "110451", + "name": "Shpola", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.00687000", + "longitude": "31.39471000" + }, + { + "id": "110488", + "name": "Smila", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.22242000", + "longitude": "31.88714000" + }, + { + "id": "110546", + "name": "Stebliv", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.40186000", + "longitude": "31.09764000" + }, + { + "id": "110587", + "name": "Talne", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.88877000", + "longitude": "30.69482000" + }, + { + "id": "110629", + "name": "Tsibulev", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.07907000", + "longitude": "29.84727000" + }, + { + "id": "110631", + "name": "Tsvitkove", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.15231000", + "longitude": "31.53739000" + }, + { + "id": "110656", + "name": "Uman", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.74838000", + "longitude": "30.22184000" + }, + { + "id": "110681", + "name": "Vatutine", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.01502000", + "longitude": "31.06211000" + }, + { + "id": "110704", + "name": "Verkhniachka", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.82849000", + "longitude": "30.03957000" + }, + { + "id": "110797", + "name": "Yerky", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "48.99062000", + "longitude": "30.98818000" + }, + { + "id": "110802", + "name": "Yurkivka", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.01082000", + "longitude": "31.08797000" + }, + { + "id": "110840", + "name": "Zhashkiv", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.24545000", + "longitude": "30.11020000" + }, + { + "id": "110861", + "name": "Zolotonosha", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.66832000", + "longitude": "32.04047000" + }, + { + "id": "110869", + "name": "Zvenihorodka", + "state_id": 4680, + "state_code": "71", + "country_id": 230, + "country_code": "UA", + "latitude": "49.07866000", + "longitude": "30.96755000" + }, + { + "id": "109334", + "name": "Avdiyivka", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.77660000", + "longitude": "32.79988000" + }, + { + "id": "109341", + "name": "Bakhmach", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.18144000", + "longitude": "32.83463000" + }, + { + "id": "109358", + "name": "Baturyn", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.34567000", + "longitude": "32.87794000" + }, + { + "id": "109381", + "name": "Berezna", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.57160000", + "longitude": "31.78456000" + }, + { + "id": "109415", + "name": "Bobrovytsya", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.74693000", + "longitude": "31.39480000" + }, + { + "id": "109437", + "name": "Borzna", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.25464000", + "longitude": "32.42690000" + }, + { + "id": "109480", + "name": "Chernihiv", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.50551000", + "longitude": "31.28487000" + }, + { + "id": "109481", + "name": "Chernihiv Raion", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.58333000", + "longitude": "31.33333000" + }, + { + "id": "109483", + "name": "Chernihivs’ka Mis’krada", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.49923000", + "longitude": "31.28805000" + }, + { + "id": "109540", + "name": "Desna", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.92731000", + "longitude": "30.76048000" + }, + { + "id": "109542", + "name": "Dihtyari", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.58264000", + "longitude": "32.77012000" + }, + { + "id": "109562", + "name": "Dobryanka", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "52.06314000", + "longitude": "31.18567000" + }, + { + "id": "109645", + "name": "Horodnya", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.89085000", + "longitude": "31.59741000" + }, + { + "id": "109666", + "name": "Ichnya", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.86258000", + "longitude": "32.39425000" + }, + { + "id": "109735", + "name": "Kholmy", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.87096000", + "longitude": "32.60063000" + }, + { + "id": "109766", + "name": "Kobyzhcha", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.82854000", + "longitude": "31.50439000" + }, + { + "id": "109800", + "name": "Korop", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.56638000", + "longitude": "32.95861000" + }, + { + "id": "109806", + "name": "Koryukivka", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.76877000", + "longitude": "32.24813000" + }, + { + "id": "109824", + "name": "Kozelets’", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.91334000", + "longitude": "31.12140000" + }, + { + "id": "109868", + "name": "Kruty", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.05974000", + "longitude": "32.10634000" + }, + { + "id": "109885", + "name": "Kulykivka", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.37345000", + "longitude": "31.64661000" + }, + { + "id": "109901", + "name": "Ladan", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.51959000", + "longitude": "32.58178000" + }, + { + "id": "109918", + "name": "Lisovi Sorochyntsi", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.68920000", + "longitude": "32.32919000" + }, + { + "id": "109963", + "name": "Lyubech", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.70260000", + "longitude": "30.65692000" + }, + { + "id": "110021", + "name": "Mena", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.52170000", + "longitude": "32.21568000" + }, + { + "id": "110022", + "name": "Mens’kyy Rayon", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.52148000", + "longitude": "32.02166000" + }, + { + "id": "110101", + "name": "Nizhyn", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.04801000", + "longitude": "31.88688000" + }, + { + "id": "110102", + "name": "Nosivka", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.93152000", + "longitude": "31.58282000" + }, + { + "id": "110113", + "name": "Novhorod-Sivers’kyy", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "52.00577000", + "longitude": "33.26150000" + }, + { + "id": "110196", + "name": "Olyshivka", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.22266000", + "longitude": "31.33314000" + }, + { + "id": "110207", + "name": "Oster", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.95060000", + "longitude": "30.88229000" + }, + { + "id": "110320", + "name": "Pryluky", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.59323000", + "longitude": "32.38761000" + }, + { + "id": "110353", + "name": "Ripky", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.80105000", + "longitude": "31.08383000" + }, + { + "id": "110412", + "name": "Sedniv", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.64473000", + "longitude": "31.56497000" + }, + { + "id": "110415", + "name": "Semenivka", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "52.17827000", + "longitude": "32.58183000" + }, + { + "id": "110436", + "name": "Shchors", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.81865000", + "longitude": "31.94504000" + }, + { + "id": "110494", + "name": "Snovs'kyy Rayon", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.83333000", + "longitude": "32.00000000" + }, + { + "id": "110516", + "name": "Sosnytsya", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "51.52387000", + "longitude": "32.49985000" + }, + { + "id": "110522", + "name": "Sribne", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.66384000", + "longitude": "32.91867000" + }, + { + "id": "110673", + "name": "Varva", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.49503000", + "longitude": "32.71968000" + }, + { + "id": "110847", + "name": "Zhuravka", + "state_id": 4692, + "state_code": "74", + "country_id": 230, + "country_code": "UA", + "latitude": "50.48108000", + "longitude": "32.59490000" + }, + { + "id": "109348", + "name": "Banyliv", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36612000", + "longitude": "25.34549000" + }, + { + "id": "109374", + "name": "Berehomet", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.17882000", + "longitude": "25.34855000" + }, + { + "id": "109439", + "name": "Boyany", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.27077000", + "longitude": "26.12624000" + }, + { + "id": "109486", + "name": "Chernivtsi", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.29149000", + "longitude": "25.94034000" + }, + { + "id": "109487", + "name": "Chernivtsi Municipality", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.31932000", + "longitude": "25.94104000" + }, + { + "id": "109519", + "name": "Chudey", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.05247000", + "longitude": "25.62208000" + }, + { + "id": "109531", + "name": "Davydivka", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.12099000", + "longitude": "25.56461000" + }, + { + "id": "109633", + "name": "Hlyboka", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.08971000", + "longitude": "25.92933000" + }, + { + "id": "109677", + "name": "Ispas", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.29734000", + "longitude": "25.27406000" + }, + { + "id": "109694", + "name": "Kadubivtsi", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58337000", + "longitude": "25.76871000" + }, + { + "id": "109740", + "name": "Khotyn", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.50693000", + "longitude": "26.49121000" + }, + { + "id": "109763", + "name": "Klishkivtsi", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.43161000", + "longitude": "26.26231000" + }, + { + "id": "109814", + "name": "Kostryzhivka", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.65455000", + "longitude": "25.71316000" + }, + { + "id": "109947", + "name": "Luzhany", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36492000", + "longitude": "25.77173000" + }, + { + "id": "110003", + "name": "Marshintsy", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.21751000", + "longitude": "26.29133000" + }, + { + "id": "110047", + "name": "Molodiya", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.22326000", + "longitude": "26.02139000" + }, + { + "id": "110067", + "name": "Myhove", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.15749000", + "longitude": "25.37904000" + }, + { + "id": "110122", + "name": "Novodnistrovs’k", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58303000", + "longitude": "27.44070000" + }, + { + "id": "110145", + "name": "Novoselytsya", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.21931000", + "longitude": "26.26531000" + }, + { + "id": "110164", + "name": "Nyzhni Petrivtsi", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.02847000", + "longitude": "25.72327000" + }, + { + "id": "110331", + "name": "Putyla Raion", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.00000000", + "longitude": "25.00000000" + }, + { + "id": "110370", + "name": "Ropcha", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.11988000", + "longitude": "25.77421000" + }, + { + "id": "110453", + "name": "Shypyntsi", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.37677000", + "longitude": "25.74664000" + }, + { + "id": "110502", + "name": "Sokyryany", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.44747000", + "longitude": "27.41678000" + }, + { + "id": "110675", + "name": "Vashkivtsi", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.38491000", + "longitude": "25.51023000" + }, + { + "id": "110702", + "name": "Verenchanka", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.54653000", + "longitude": "25.74533000" + }, + { + "id": "110736", + "name": "Voloka", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.19225000", + "longitude": "25.93074000" + }, + { + "id": "110769", + "name": "Vyzhnytsya", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.24801000", + "longitude": "25.19452000" + }, + { + "id": "110801", + "name": "Yizhivtsi", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.03962000", + "longitude": "25.66232000" + }, + { + "id": "110825", + "name": "Zastavna", + "state_id": 4678, + "state_code": "77", + "country_id": 230, + "country_code": "UA", + "latitude": "48.52307000", + "longitude": "25.84369000" + }, + { + "id": "109325", + "name": "Apostolove", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.66003000", + "longitude": "33.71369000" + }, + { + "id": "109332", + "name": "Auly", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.56660000", + "longitude": "34.46111000" + }, + { + "id": "109335", + "name": "Aviatorske", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36714000", + "longitude": "35.08132000" + }, + { + "id": "109501", + "name": "Chervonohryhorivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.62298000", + "longitude": "34.53887000" + }, + { + "id": "109518", + "name": "Chortomlyk", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.62315000", + "longitude": "34.14198000" + }, + { + "id": "109548", + "name": "Dnipro", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.45930000", + "longitude": "35.03865000" + }, + { + "id": "109549", + "name": "Dnipro Raion", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.45608000", + "longitude": "35.02167000" + }, + { + "id": "109553", + "name": "Dniprovs’ka Mis’ka Rada", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.46726000", + "longitude": "34.99898000" + }, + { + "id": "109659", + "name": "Hubynykha", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.80980000", + "longitude": "35.25602000" + }, + { + "id": "109661", + "name": "Hupalivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "49.11139000", + "longitude": "34.73556000" + }, + { + "id": "109710", + "name": "Kamianske", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.51134000", + "longitude": "34.60210000" + }, + { + "id": "109721", + "name": "Kaydaki", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.37678000", + "longitude": "35.12398000" + }, + { + "id": "109872", + "name": "Krynychky", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.37551000", + "longitude": "34.46701000" + }, + { + "id": "109876", + "name": "Kryvoriz’ka Mis’krada", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.94730000", + "longitude": "33.42489000" + }, + { + "id": "109877", + "name": "Kryvyi Rih", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.90966000", + "longitude": "33.38044000" + }, + { + "id": "109949", + "name": "Lykhivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.68735000", + "longitude": "33.92279000" + }, + { + "id": "109970", + "name": "Mahdalynivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.92111000", + "longitude": "34.91491000" + }, + { + "id": "109971", + "name": "Mahdalynivs’kyy Rayon", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.97612000", + "longitude": "34.96762000" + }, + { + "id": "109999", + "name": "Marhanets’", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.63543000", + "longitude": "34.62769000" + }, + { + "id": "110017", + "name": "Melioratyvne", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.63009000", + "longitude": "35.41558000" + }, + { + "id": "110025", + "name": "Mezhova", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.25318000", + "longitude": "36.73468000" + }, + { + "id": "110098", + "name": "Nikopol", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.57119000", + "longitude": "34.39637000" + }, + { + "id": "110132", + "name": "Novomoskovs’k", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.63799000", + "longitude": "35.24548000" + }, + { + "id": "110131", + "name": "Novomoskovsk Raion", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.66667000", + "longitude": "35.41667000" + }, + { + "id": "110134", + "name": "Novomykolayivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.55625000", + "longitude": "34.37399000" + }, + { + "id": "110142", + "name": "Novopokrovka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.05918000", + "longitude": "34.60619000" + }, + { + "id": "110200", + "name": "Ordzhonikidze", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.66763000", + "longitude": "34.05957000" + }, + { + "id": "110226", + "name": "Partyzans’ke", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58680000", + "longitude": "34.80948000" + }, + { + "id": "110232", + "name": "Pavlohrad", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.53426000", + "longitude": "35.87098000" + }, + { + "id": "110258", + "name": "Petropavlivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.45643000", + "longitude": "36.43670000" + }, + { + "id": "110261", + "name": "Petrykivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.72933000", + "longitude": "34.63358000" + }, + { + "id": "110262", + "name": "Petrykivs’kyy Rayon", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.68914000", + "longitude": "34.61098000" + }, + { + "id": "110263", + "name": "Piatykhatky", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.41333000", + "longitude": "33.71056000" + }, + { + "id": "110268", + "name": "Pidhorodne", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.57528000", + "longitude": "35.10680000" + }, + { + "id": "110449", + "name": "Sholokhove", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.69453000", + "longitude": "34.03119000" + }, + { + "id": "110455", + "name": "Shyroke", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.69173000", + "longitude": "33.25715000" + }, + { + "id": "110456", + "name": "Shyroke Raion", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.66667000", + "longitude": "33.33333000" + }, + { + "id": "110498", + "name": "Sofiyivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.04865000", + "longitude": "33.87618000" + }, + { + "id": "110508", + "name": "Solone", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.20805000", + "longitude": "34.87208000" + }, + { + "id": "110509", + "name": "Solone Raion", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.16667000", + "longitude": "35.00000000" + }, + { + "id": "110521", + "name": "Spas’ke", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.66667000", + "longitude": "35.05385000" + }, + { + "id": "110564", + "name": "Surs’ko-Mykhaylivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.27202000", + "longitude": "34.72759000" + }, + { + "id": "110583", + "name": "Synel’nykove", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.32044000", + "longitude": "35.51792000" + }, + { + "id": "110613", + "name": "Tomakivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.81569000", + "longitude": "34.74137000" + }, + { + "id": "110626", + "name": "Tsarychanka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.93697000", + "longitude": "34.47860000" + }, + { + "id": "110627", + "name": "Tsarychans’kyy Rayon", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.93329000", + "longitude": "34.53043000" + }, + { + "id": "110710", + "name": "Verkhn’odniprovs’k", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.65242000", + "longitude": "34.33457000" + }, + { + "id": "110719", + "name": "Vil’ne", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.63645000", + "longitude": "34.81387000" + }, + { + "id": "110761", + "name": "Vyshchetarasivka", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "47.56851000", + "longitude": "34.88096000" + }, + { + "id": "110766", + "name": "Vyshneve", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.43611000", + "longitude": "33.91556000" + }, + { + "id": "110803", + "name": "Yur”yivs’kyy Rayon", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.80743000", + "longitude": "35.91325000" + }, + { + "id": "110846", + "name": "Zhovti Vody", + "state_id": 4675, + "state_code": "12", + "country_id": 230, + "country_code": "UA", + "latitude": "48.34493000", + "longitude": "33.50374000" + }, + { + "id": "109318", + "name": "Amvrosiivka Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.75000000", + "longitude": "38.50000000" + }, + { + "id": "109319", + "name": "Amvrosiyivka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.79348000", + "longitude": "38.47768000" + }, + { + "id": "109333", + "name": "Avdiyivka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.13989000", + "longitude": "37.74255000" + }, + { + "id": "109342", + "name": "Bakhmut", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.59559000", + "longitude": "37.99987000" + }, + { + "id": "109343", + "name": "Bakhmut Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58333000", + "longitude": "38.00000000" + }, + { + "id": "109389", + "name": "Bezimenne", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.10716000", + "longitude": "37.93815000" + }, + { + "id": "109407", + "name": "Bilyts’ke", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.40642000", + "longitude": "37.18111000" + }, + { + "id": "109410", + "name": "Blahodatne", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.87928000", + "longitude": "38.48492000" + }, + { + "id": "109441", + "name": "Boykivske", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.40994000", + "longitude": "38.02476000" + }, + { + "id": "109442", + "name": "Boykivske Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.41667000", + "longitude": "38.00000000" + }, + { + "id": "109473", + "name": "Chasiv Yar", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.59348000", + "longitude": "37.85724000" + }, + { + "id": "109526", + "name": "Chystyakove", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.03876000", + "longitude": "38.59685000" + }, + { + "id": "109532", + "name": "Debal’tseve", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.34072000", + "longitude": "38.40490000" + }, + { + "id": "109546", + "name": "Dmytrivka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.93611000", + "longitude": "38.93661000" + }, + { + "id": "109556", + "name": "Dobropillia Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.41667000", + "longitude": "37.16667000" + }, + { + "id": "109557", + "name": "Dobropillya", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.46147000", + "longitude": "37.08524000" + }, + { + "id": "109563", + "name": "Dokuchayevs’k", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.75046000", + "longitude": "37.67936000" + }, + { + "id": "109570", + "name": "Donetsk", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.02300000", + "longitude": "37.80224000" + }, + { + "id": "109581", + "name": "Druzhkivka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.63013000", + "longitude": "37.55259000" + }, + { + "id": "109641", + "name": "Horlivka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.33576000", + "longitude": "38.05325000" + }, + { + "id": "109668", + "name": "Ilovays’k", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.92498000", + "longitude": "38.20235000" + }, + { + "id": "109728", + "name": "Khartsyz’k", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.04243000", + "longitude": "38.14728000" + }, + { + "id": "109811", + "name": "Kostiantynivka Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.50000000", + "longitude": "37.75000000" + }, + { + "id": "109817", + "name": "Kostyantynivka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.52770000", + "longitude": "37.70690000" + }, + { + "id": "109828", + "name": "Kramators’k", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.72305000", + "longitude": "37.55629000" + }, + { + "id": "109848", + "name": "Krasnotorka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.68204000", + "longitude": "37.53266000" + }, + { + "id": "109862", + "name": "Krinichnaya", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.12899000", + "longitude": "38.02597000" + }, + { + "id": "109888", + "name": "Kurakhovo", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.98522000", + "longitude": "37.28210000" + }, + { + "id": "109893", + "name": "Kuteynykove", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.81227000", + "longitude": "38.28822000" + }, + { + "id": "109940", + "name": "Luhans’ke", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.44574000", + "longitude": "38.26153000" + }, + { + "id": "109950", + "name": "Lyman", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.98837000", + "longitude": "37.80225000" + }, + { + "id": "109952", + "name": "Lyman Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "49.00000000", + "longitude": "37.83333000" + }, + { + "id": "109976", + "name": "Makiyivka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.04782000", + "longitude": "37.92576000" + }, + { + "id": "109977", + "name": "Makiyivs’ka Mis’krada", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.06287000", + "longitude": "38.03075000" + }, + { + "id": "109994", + "name": "Manhush", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.05582000", + "longitude": "37.31068000" + }, + { + "id": "109997", + "name": "Mar'yinka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.94527000", + "longitude": "37.50544000" + }, + { + "id": "110000", + "name": "Mariupol", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.09514000", + "longitude": "37.54131000" + }, + { + "id": "110016", + "name": "Melekyne", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "46.95957000", + "longitude": "37.39981000" + }, + { + "id": "110055", + "name": "Mospyne", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.89081000", + "longitude": "38.06395000" + }, + { + "id": "110075", + "name": "Myrnohrad", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.30523000", + "longitude": "37.26091000" + }, + { + "id": "110097", + "name": "Nikolske Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.25000000", + "longitude": "37.25000000" + }, + { + "id": "110120", + "name": "Novoazovs'k", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.11389000", + "longitude": "38.08599000" + }, + { + "id": "110123", + "name": "Novodonets’ke", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.63526000", + "longitude": "36.98477000" + }, + { + "id": "110161", + "name": "Novyy Svit", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.80591000", + "longitude": "38.02112000" + }, + { + "id": "110167", + "name": "Nyzhnya Krynka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.11350000", + "longitude": "38.16064000" + }, + { + "id": "110219", + "name": "P'yatypill'ya", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.01590000", + "longitude": "38.09979000" + }, + { + "id": "110291", + "name": "Pokrovsk", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.28198000", + "longitude": "37.17585000" + }, + { + "id": "110292", + "name": "Pokrovsk Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.25000000", + "longitude": "37.16667000" + }, + { + "id": "110359", + "name": "Rodyns’ke", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.35199000", + "longitude": "37.20602000" + }, + { + "id": "110385", + "name": "Rozsypne", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.14966000", + "longitude": "38.57619000" + }, + { + "id": "110408", + "name": "Sartana", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.17436000", + "longitude": "37.69266000" + }, + { + "id": "110413", + "name": "Selydivs’ka Mis’krada", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.14530000", + "longitude": "37.29962000" + }, + { + "id": "110414", + "name": "Selydove", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.14708000", + "longitude": "37.30032000" + }, + { + "id": "110420", + "name": "Serebryanka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.91917000", + "longitude": "38.13494000" + }, + { + "id": "110428", + "name": "Shakhtars’k", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.05657000", + "longitude": "38.43826000" + }, + { + "id": "110435", + "name": "Shcherbynivka", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.39489000", + "longitude": "37.79102000" + }, + { + "id": "110454", + "name": "Shyroke", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.95711000", + "longitude": "38.23160000" + }, + { + "id": "110464", + "name": "Sivers’k", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.86699000", + "longitude": "38.10007000" + }, + { + "id": "110486", + "name": "Sloviansk", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.86667000", + "longitude": "37.61667000" + }, + { + "id": "110487", + "name": "Sloviansk Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.91667000", + "longitude": "37.50000000" + }, + { + "id": "110493", + "name": "Snizhne", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.02612000", + "longitude": "38.77225000" + }, + { + "id": "110503", + "name": "Soledar", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.67935000", + "longitude": "38.08902000" + }, + { + "id": "110531", + "name": "Starobesheve", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.75038000", + "longitude": "38.03051000" + }, + { + "id": "110539", + "name": "Staryy Krym", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.16146000", + "longitude": "37.48934000" + }, + { + "id": "110552", + "name": "Stizhkivs’ke", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.11333000", + "longitude": "38.49250000" + }, + { + "id": "110575", + "name": "Svetlodarsk", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.43374000", + "longitude": "38.22331000" + }, + { + "id": "110579", + "name": "Svyatogorsk", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "49.03333000", + "longitude": "37.56667000" + }, + { + "id": "110581", + "name": "Syedove", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.07678000", + "longitude": "38.15602000" + }, + { + "id": "110595", + "name": "Temriuk", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.26857000", + "longitude": "36.98115000" + }, + { + "id": "110616", + "name": "Toretsk", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.39869000", + "longitude": "37.84787000" + }, + { + "id": "110659", + "name": "Urzuf", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "46.91562000", + "longitude": "37.09961000" + }, + { + "id": "110732", + "name": "Volnovakha", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "47.60103000", + "longitude": "37.49674000" + }, + { + "id": "110753", + "name": "Vuhlehirs’k", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.31474000", + "longitude": "38.27423000" + }, + { + "id": "110777", + "name": "Yalta", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "46.96279000", + "longitude": "37.27365000" + }, + { + "id": "110790", + "name": "Yasynuvata", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.12980000", + "longitude": "37.85940000" + }, + { + "id": "110791", + "name": "Yasynuvata Raion", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.16667000", + "longitude": "37.83333000" + }, + { + "id": "110796", + "name": "Yenakiyeve", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.23331000", + "longitude": "38.21137000" + }, + { + "id": "110867", + "name": "Zuhres", + "state_id": 4691, + "state_code": "14", + "country_id": 230, + "country_code": "UA", + "latitude": "48.01140000", + "longitude": "38.26444000" + }, + { + "id": "109397", + "name": "Bili Oslavy", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.48722000", + "longitude": "24.70078000" + }, + { + "id": "109405", + "name": "Bilshivtsi", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.18333000", + "longitude": "24.75000000" + }, + { + "id": "109420", + "name": "Bohorodchans’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.72278000", + "longitude": "24.38042000" + }, + { + "id": "109421", + "name": "Bohorodchany", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.80700000", + "longitude": "24.53834000" + }, + { + "id": "109423", + "name": "Bolekhiv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.06607000", + "longitude": "23.86435000" + }, + { + "id": "109424", + "name": "Bolekhivs’ka Mis’krada", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.06255000", + "longitude": "23.84339000" + }, + { + "id": "109433", + "name": "Borshchevskiy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.75000000", + "longitude": "26.00000000" + }, + { + "id": "109447", + "name": "Broshniv-Osada", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.99621000", + "longitude": "24.19748000" + }, + { + "id": "109461", + "name": "Burshtyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.25867000", + "longitude": "24.62777000" + }, + { + "id": "109462", + "name": "Burshtyns’ka Mis’krada", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.25217000", + "longitude": "24.63320000" + }, + { + "id": "109466", + "name": "Bystrytsya", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.45931000", + "longitude": "24.24545000" + }, + { + "id": "109467", + "name": "Bytkiv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.62968000", + "longitude": "24.47398000" + }, + { + "id": "109478", + "name": "Chernelytsya", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.81207000", + "longitude": "25.42477000" + }, + { + "id": "109488", + "name": "Cherniyiv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.85658000", + "longitude": "24.71388000" + }, + { + "id": "109496", + "name": "Chernyatyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.66034000", + "longitude": "25.44832000" + }, + { + "id": "109512", + "name": "Chornoliztsi", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.83034000", + "longitude": "24.89576000" + }, + { + "id": "109533", + "name": "Delyatyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.52354000", + "longitude": "24.62466000" + }, + { + "id": "109565", + "name": "Dolyna", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.97330000", + "longitude": "24.00944000" + }, + { + "id": "109567", + "name": "Dolyns’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.89148000", + "longitude": "23.84343000" + }, + { + "id": "109625", + "name": "Halych", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.12179000", + "longitude": "24.72578000" + }, + { + "id": "109626", + "name": "Halyts’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.16169000", + "longitude": "24.71797000" + }, + { + "id": "109643", + "name": "Horodenka", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.67274000", + "longitude": "25.50163000" + }, + { + "id": "109644", + "name": "Horodenkivs’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.70617000", + "longitude": "25.42008000" + }, + { + "id": "109665", + "name": "Hvizd", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.68517000", + "longitude": "24.55055000" + }, + { + "id": "109683", + "name": "Ivano-Frankivs’ka Mis’krada", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.91177000", + "longitude": "24.72831000" + }, + { + "id": "109682", + "name": "Ivano-Frankivsk", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.92150000", + "longitude": "24.70972000" + }, + { + "id": "109703", + "name": "Kalus’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.06088000", + "longitude": "24.38766000" + }, + { + "id": "109702", + "name": "Kalush", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.01187000", + "longitude": "24.37308000" + }, + { + "id": "109745", + "name": "Khymchyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.38639000", + "longitude": "25.14803000" + }, + { + "id": "109776", + "name": "Kolomyia", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.53115000", + "longitude": "25.03649000" + }, + { + "id": "109777", + "name": "Kolomyys’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58586000", + "longitude": "24.99300000" + }, + { + "id": "109807", + "name": "Kosiv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.31071000", + "longitude": "25.09575000" + }, + { + "id": "109808", + "name": "Kosivs’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.32569000", + "longitude": "24.98641000" + }, + { + "id": "109809", + "name": "Kosmach", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.75089000", + "longitude": "24.36731000" + }, + { + "id": "109829", + "name": "Krasna", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.57571000", + "longitude": "24.70027000" + }, + { + "id": "109894", + "name": "Kuty", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.25868000", + "longitude": "25.17946000" + }, + { + "id": "109903", + "name": "Lanchyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.55781000", + "longitude": "24.75622000" + }, + { + "id": "109996", + "name": "Manyava", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.65541000", + "longitude": "24.37537000" + }, + { + "id": "110002", + "name": "Markova", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.67576000", + "longitude": "24.41382000" + }, + { + "id": "110078", + "name": "Nadvirna", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.63480000", + "longitude": "24.56936000" + }, + { + "id": "110079", + "name": "Nadvirnyans’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.55387000", + "longitude": "24.50381000" + }, + { + "id": "110086", + "name": "Nebyliv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.81526000", + "longitude": "24.21657000" + }, + { + "id": "110158", + "name": "Novytsya", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.96345000", + "longitude": "24.33542000" + }, + { + "id": "110170", + "name": "Obertyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.70032000", + "longitude": "25.17012000" + }, + { + "id": "110212", + "name": "Otyniya", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.73767000", + "longitude": "24.86111000" + }, + { + "id": "110229", + "name": "Pasichna", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.57152000", + "longitude": "24.43003000" + }, + { + "id": "110234", + "name": "Pechenizhyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.51551000", + "longitude": "24.89423000" + }, + { + "id": "110255", + "name": "Petranka", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.90246000", + "longitude": "24.30347000" + }, + { + "id": "110279", + "name": "Pniv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.61783000", + "longitude": "24.52872000" + }, + { + "id": "110303", + "name": "Porohy", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.68755000", + "longitude": "24.26322000" + }, + { + "id": "110335", + "name": "Radcha", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.85023000", + "longitude": "24.65502000" + }, + { + "id": "110350", + "name": "Rechka", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.28034000", + "longitude": "24.93330000" + }, + { + "id": "110360", + "name": "Rohatyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.40900000", + "longitude": "24.60927000" + }, + { + "id": "110361", + "name": "Rohatyns’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "49.38025000", + "longitude": "24.57111000" + }, + { + "id": "110378", + "name": "Rozhniativ", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.93576000", + "longitude": "24.16379000" + }, + { + "id": "110379", + "name": "Rozhniv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36597000", + "longitude": "25.22580000" + }, + { + "id": "110380", + "name": "Rozhnyativs’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.75890000", + "longitude": "24.07588000" + }, + { + "id": "110400", + "name": "Sadzhavka", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.56603000", + "longitude": "24.78820000" + }, + { + "id": "110441", + "name": "Sheshory", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.33197000", + "longitude": "24.98329000" + }, + { + "id": "110491", + "name": "Sniatyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.44692000", + "longitude": "25.56937000" + }, + { + "id": "110495", + "name": "Snyatyns’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.47674000", + "longitude": "25.41153000" + }, + { + "id": "110512", + "name": "Solotvyn", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.70212000", + "longitude": "24.42212000" + }, + { + "id": "110520", + "name": "Spas", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.88992000", + "longitude": "24.06293000" + }, + { + "id": "110529", + "name": "Stari Bohorodchany", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.83361000", + "longitude": "24.52430000" + }, + { + "id": "110530", + "name": "Stari Kuty", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.27093000", + "longitude": "25.17293000" + }, + { + "id": "110551", + "name": "Stetseva", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.52767000", + "longitude": "25.57572000" + }, + { + "id": "110571", + "name": "Svarychiv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.96220000", + "longitude": "24.19658000" + }, + { + "id": "110593", + "name": "Tatariv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.34558000", + "longitude": "24.57836000" + }, + { + "id": "110608", + "name": "Tlumach", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.86403000", + "longitude": "25.00325000" + }, + { + "id": "110609", + "name": "Tlumats’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.82924000", + "longitude": "25.09055000" + }, + { + "id": "110644", + "name": "Tysmenychany", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.77168000", + "longitude": "24.66626000" + }, + { + "id": "110646", + "name": "Tysmenyts’kyy Rayon", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.92246000", + "longitude": "24.74486000" + }, + { + "id": "110645", + "name": "Tysmenytsya", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.90219000", + "longitude": "24.84482000" + }, + { + "id": "110650", + "name": "Uhryniv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.95520000", + "longitude": "24.69292000" + }, + { + "id": "110697", + "name": "Velykyy Klyuchiv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.47092000", + "longitude": "24.94677000" + }, + { + "id": "110707", + "name": "Verkhniy Yasenov", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.16156000", + "longitude": "24.94532000" + }, + { + "id": "110712", + "name": "Verkhovyna", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.15571000", + "longitude": "24.79112000" + }, + { + "id": "110741", + "name": "Vorokhta", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.28459000", + "longitude": "24.56536000" + }, + { + "id": "110770", + "name": "Yabluniv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.40418000", + "longitude": "24.93874000" + }, + { + "id": "110771", + "name": "Yablunytsya", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.31742000", + "longitude": "24.48448000" + }, + { + "id": "110779", + "name": "Yamnytsya", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.98972000", + "longitude": "24.70750000" + }, + { + "id": "110783", + "name": "Yaremchans’ks Mis’krada", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.33234000", + "longitude": "24.57426000" + }, + { + "id": "110784", + "name": "Yaremche", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.45157000", + "longitude": "24.55436000" + }, + { + "id": "110806", + "name": "Zabolotiv", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.47054000", + "longitude": "25.28571000" + }, + { + "id": "110809", + "name": "Zahvizdya", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.91836000", + "longitude": "24.65275000" + }, + { + "id": "110823", + "name": "Zarichchya", + "state_id": 4682, + "state_code": "26", + "country_id": 230, + "country_code": "UA", + "latitude": "48.52144000", + "longitude": "24.64857000" + }, + { + "id": "109344", + "name": "Balakliya", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.46270000", + "longitude": "36.85951000" + }, + { + "id": "109352", + "name": "Barvinkove", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "48.90970000", + "longitude": "37.02051000" + }, + { + "id": "109380", + "name": "Berezivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.43935000", + "longitude": "35.70736000" + }, + { + "id": "109390", + "name": "Bezlyudivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.87547000", + "longitude": "36.26539000" + }, + { + "id": "109413", + "name": "Blyznyuky", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "48.85775000", + "longitude": "36.55505000" + }, + { + "id": "109419", + "name": "Bohodukhiv", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.16466000", + "longitude": "35.52765000" + }, + { + "id": "109432", + "name": "Borova", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.37770000", + "longitude": "37.62136000" + }, + { + "id": "109458", + "name": "Budy", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.89133000", + "longitude": "36.02096000" + }, + { + "id": "109469", + "name": "Chapayeve", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.36625000", + "longitude": "35.87486000" + }, + { + "id": "109504", + "name": "Chervonyy Oskil", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.17906000", + "longitude": "37.42593000" + }, + { + "id": "109522", + "name": "Chuhuyiv", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.83588000", + "longitude": "36.68803000" + }, + { + "id": "109539", + "name": "Derhachi", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.10659000", + "longitude": "36.12112000" + }, + { + "id": "109590", + "name": "Dvorichna", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.85019000", + "longitude": "37.68262000" + }, + { + "id": "109596", + "name": "Eskhar", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.79614000", + "longitude": "36.59047000" + }, + { + "id": "109663", + "name": "Huty", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.13322000", + "longitude": "35.34394000" + }, + { + "id": "109691", + "name": "Izyum", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.20875000", + "longitude": "37.24849000" + }, + { + "id": "109724", + "name": "Kehychivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.28656000", + "longitude": "35.76153000" + }, + { + "id": "109727", + "name": "Kharkiv", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.98081000", + "longitude": "36.25272000" + }, + { + "id": "109736", + "name": "Khorosheve", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.85413000", + "longitude": "36.21704000" + }, + { + "id": "109757", + "name": "Kivsharivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.63096000", + "longitude": "37.68821000" + }, + { + "id": "109767", + "name": "Kochetok", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.88005000", + "longitude": "36.73723000" + }, + { + "id": "109775", + "name": "Kolomak", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.83987000", + "longitude": "35.30441000" + }, + { + "id": "109804", + "name": "Korotych", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.94737000", + "longitude": "36.03736000" + }, + { + "id": "109838", + "name": "Krasnohrad", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.38009000", + "longitude": "35.44186000" + }, + { + "id": "109841", + "name": "Krasnokuts’k", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.06602000", + "longitude": "35.16275000" + }, + { + "id": "109843", + "name": "Krasnopavlivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.13643000", + "longitude": "36.31911000" + }, + { + "id": "109886", + "name": "Kulynychi", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.98178000", + "longitude": "36.38283000" + }, + { + "id": "109887", + "name": "Kupjansk", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.71055000", + "longitude": "37.61517000" + }, + { + "id": "109932", + "name": "Lozova", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "48.88937000", + "longitude": "36.31755000" + }, + { + "id": "109951", + "name": "Lyman", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.59769000", + "longitude": "36.47030000" + }, + { + "id": "109966", + "name": "Lyubotyn", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.94691000", + "longitude": "35.92907000" + }, + { + "id": "109979", + "name": "Mala Danylivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.06354000", + "longitude": "36.16564000" + }, + { + "id": "109990", + "name": "Malynivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.81667000", + "longitude": "36.73333000" + }, + { + "id": "109991", + "name": "Manchenky", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.97982000", + "longitude": "35.85835000" + }, + { + "id": "110023", + "name": "Merefa", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.82302000", + "longitude": "36.05069000" + }, + { + "id": "110110", + "name": "Nova Vodolaha", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.71901000", + "longitude": "35.86578000" + }, + { + "id": "110141", + "name": "Novopokrovka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.83349000", + "longitude": "36.54771000" + }, + { + "id": "110222", + "name": "Panyutyne", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "48.93692000", + "longitude": "36.27563000" + }, + { + "id": "110242", + "name": "Peresichna", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.02452000", + "longitude": "35.97871000" + }, + { + "id": "110247", + "name": "Pervomaiskyi Raion", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.41667000", + "longitude": "36.33333000" + }, + { + "id": "110252", + "name": "Pervomays’kyy", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.38742000", + "longitude": "36.21471000" + }, + { + "id": "110257", + "name": "Petrivs’ke", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.17695000", + "longitude": "36.89999000" + }, + { + "id": "110275", + "name": "Pivdenne", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.88315000", + "longitude": "36.06785000" + }, + { + "id": "110290", + "name": "Pokotylivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.91343000", + "longitude": "36.17511000" + }, + { + "id": "110317", + "name": "Prudyanka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.23606000", + "longitude": "36.16835000" + }, + { + "id": "110319", + "name": "Prykolotne", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.16273000", + "longitude": "37.34524000" + }, + { + "id": "110401", + "name": "Sakhnovshchyna", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.15166000", + "longitude": "35.87198000" + }, + { + "id": "110411", + "name": "Savyntsi", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.40257000", + "longitude": "37.06266000" + }, + { + "id": "110445", + "name": "Shevchenkove", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.69585000", + "longitude": "37.17348000" + }, + { + "id": "110476", + "name": "Slatyne", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.21041000", + "longitude": "36.15376000" + }, + { + "id": "110484", + "name": "Slobozhans’ke", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.59701000", + "longitude": "36.52618000" + }, + { + "id": "110511", + "name": "Solonytsivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.99682000", + "longitude": "36.03464000" + }, + { + "id": "110540", + "name": "Staryy Merchyk", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.98147000", + "longitude": "35.75904000" + }, + { + "id": "110541", + "name": "Staryy Saltiv", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.07619000", + "longitude": "36.78852000" + }, + { + "id": "110558", + "name": "Studenok", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.09107000", + "longitude": "37.48697000" + }, + { + "id": "110663", + "name": "Utkivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.78583000", + "longitude": "36.07528000" + }, + { + "id": "110670", + "name": "Valky", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.83597000", + "longitude": "35.61223000" + }, + { + "id": "110680", + "name": "Vasyshcheve", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.82852000", + "longitude": "36.32691000" + }, + { + "id": "110696", + "name": "Velykyy Burluk", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.06170000", + "longitude": "37.38373000" + }, + { + "id": "110699", + "name": "Verbivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.41667000", + "longitude": "35.53333000" + }, + { + "id": "110747", + "name": "Vovchans’k", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.29078000", + "longitude": "36.94108000" + }, + { + "id": "110754", + "name": "Vvedenka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.82372000", + "longitude": "36.50264000" + }, + { + "id": "110768", + "name": "Vysokyy", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.89156000", + "longitude": "36.12175000" + }, + { + "id": "110807", + "name": "Zachepylivka", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.19385000", + "longitude": "35.23943000" + }, + { + "id": "110857", + "name": "Zmiyiv", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "49.67453000", + "longitude": "36.34775000" + }, + { + "id": "110859", + "name": "Zolochiv", + "state_id": 4686, + "state_code": "63", + "country_id": 230, + "country_code": "UA", + "latitude": "50.27985000", + "longitude": "35.98179000" + }, + { + "id": "109331", + "name": "Askaniya-Nova", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.45135000", + "longitude": "33.86889000" + }, + { + "id": "109361", + "name": "Bekhtery", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.24790000", + "longitude": "32.29123000" + }, + { + "id": "109388", + "name": "Beryslav", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.84152000", + "longitude": "33.42838000" + }, + { + "id": "109404", + "name": "Bilozerka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.62480000", + "longitude": "32.44251000" + }, + { + "id": "109454", + "name": "Brylivka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.42476000", + "longitude": "33.14721000" + }, + { + "id": "109472", + "name": "Chaplynka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.36507000", + "longitude": "33.54027000" + }, + { + "id": "109511", + "name": "Chornobayivka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.69411000", + "longitude": "32.55371000" + }, + { + "id": "109516", + "name": "Chornyanka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.65222000", + "longitude": "33.35904000" + }, + { + "id": "109523", + "name": "Chulakivka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.35763000", + "longitude": "32.35140000" + }, + { + "id": "109554", + "name": "Dnipryany", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.74631000", + "longitude": "33.27288000" + }, + { + "id": "109587", + "name": "Dudchany", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "47.18557000", + "longitude": "33.76390000" + }, + { + "id": "109628", + "name": "Heniches’k", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.17592000", + "longitude": "34.80340000" + }, + { + "id": "109629", + "name": "Heniches’kyy Rayon", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.26451000", + "longitude": "34.74488000" + }, + { + "id": "109636", + "name": "Hola Prystan’", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.52719000", + "longitude": "32.52417000" + }, + { + "id": "109642", + "name": "Hornostayivka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "47.00777000", + "longitude": "33.72899000" + }, + { + "id": "109679", + "name": "Ivanivka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.72082000", + "longitude": "34.55298000" + }, + { + "id": "109697", + "name": "Kakhovka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.81371000", + "longitude": "33.48698000" + }, + { + "id": "109698", + "name": "Kalanchak", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.25623000", + "longitude": "33.29070000" + }, + { + "id": "109722", + "name": "Kayiry", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.94537000", + "longitude": "33.70591000" + }, + { + "id": "109729", + "name": "Kherson", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.65581000", + "longitude": "32.61780000" + }, + { + "id": "109786", + "name": "Komyshany", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.63716000", + "longitude": "32.50719000" + }, + { + "id": "109823", + "name": "Kozachi Laheri", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.70372000", + "longitude": "32.97760000" + }, + { + "id": "109833", + "name": "Krasne", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.13088000", + "longitude": "32.76910000" + }, + { + "id": "109907", + "name": "Lazurne", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.08400000", + "longitude": "32.52955000" + }, + { + "id": "109967", + "name": "Lyubymivka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.81063000", + "longitude": "33.56862000" + }, + { + "id": "109983", + "name": "Malokakhovka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.78142000", + "longitude": "33.44790000" + }, + { + "id": "110104", + "name": "Nova Kakhovka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.75451000", + "longitude": "33.34864000" + }, + { + "id": "110105", + "name": "Nova Mayachka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.59996000", + "longitude": "33.22707000" + }, + { + "id": "110125", + "name": "Novofedorivka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.17128000", + "longitude": "32.31781000" + }, + { + "id": "110137", + "name": "Novooleksiyivka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.22472000", + "longitude": "34.64031000" + }, + { + "id": "110153", + "name": "Novovorontsovka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "47.50035000", + "longitude": "33.91748000" + }, + { + "id": "110165", + "name": "Nyzhni Sirohozy", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.84842000", + "longitude": "34.38044000" + }, + { + "id": "110227", + "name": "Partyzany", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.33383000", + "longitude": "34.75314000" + }, + { + "id": "110336", + "name": "Radens’k", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.54860000", + "longitude": "32.92787000" + }, + { + "id": "110466", + "name": "Skadovs’k", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.11610000", + "longitude": "32.91124000" + }, + { + "id": "110525", + "name": "Stanislav", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.56909000", + "longitude": "32.14777000" + }, + { + "id": "110634", + "name": "Tsyurupyns’k", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.61842000", + "longitude": "32.71890000" + }, + { + "id": "110685", + "name": "Velyka Lepetykha", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "47.17572000", + "longitude": "33.94362000" + }, + { + "id": "110687", + "name": "Velyka Oleksandrivka", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "47.31969000", + "longitude": "33.30373000" + }, + { + "id": "110690", + "name": "Velyki Kopani", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.48684000", + "longitude": "32.97498000" + }, + { + "id": "110706", + "name": "Verkhniy Rohachyk", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "47.25053000", + "longitude": "34.33797000" + }, + { + "id": "110760", + "name": "Vynohradove", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.36957000", + "longitude": "32.93980000" + }, + { + "id": "110767", + "name": "Vysokopillya", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "47.49187000", + "longitude": "33.53061000" + }, + { + "id": "110817", + "name": "Zaliznyy Port", + "state_id": 4684, + "state_code": "65", + "country_id": 230, + "country_code": "UA", + "latitude": "46.12337000", + "longitude": "32.29892000" + }, + { + "id": "109322", + "name": "Antoniny", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.80974000", + "longitude": "26.87714000" + }, + { + "id": "109360", + "name": "Bazaliya", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.71267000", + "longitude": "26.47331000" + }, + { + "id": "109537", + "name": "Derazhnya", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.26920000", + "longitude": "27.43382000" + }, + { + "id": "109538", + "name": "Derazhnyans’kyy Rayon", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.22676000", + "longitude": "27.46603000" + }, + { + "id": "109589", + "name": "Dunaivtsi", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "48.88909000", + "longitude": "26.85636000" + }, + { + "id": "109650", + "name": "Horodok", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.16374000", + "longitude": "26.58394000" + }, + { + "id": "109690", + "name": "Izyaslav", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "50.11947000", + "longitude": "26.82125000" + }, + { + "id": "109708", + "name": "Kamianets-Podilskyi", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "48.68450000", + "longitude": "26.58559000" + }, + { + "id": "109731", + "name": "Khmel’nyts’kyy Rayon", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.44511000", + "longitude": "26.93268000" + }, + { + "id": "109730", + "name": "Khmelnytskyi", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.42161000", + "longitude": "26.99653000" + }, + { + "id": "109856", + "name": "Krasyliv", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.65186000", + "longitude": "26.97253000" + }, + { + "id": "109916", + "name": "Letychiv", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.38263000", + "longitude": "27.63051000" + }, + { + "id": "109975", + "name": "Makiv", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "48.79487000", + "longitude": "26.69188000" + }, + { + "id": "110015", + "name": "Medzhybizh", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.43748000", + "longitude": "27.40487000" + }, + { + "id": "110080", + "name": "Narkevychi", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.51717000", + "longitude": "26.64178000" + }, + { + "id": "110093", + "name": "Netishyn", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "50.34004000", + "longitude": "26.64171000" + }, + { + "id": "110109", + "name": "Nova Ushytsya", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "48.83716000", + "longitude": "27.27434000" + }, + { + "id": "110146", + "name": "Novoselytsya", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "50.07030000", + "longitude": "27.51955000" + }, + { + "id": "110294", + "name": "Polonne", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "50.12424000", + "longitude": "27.51087000" + }, + { + "id": "110299", + "name": "Poninka", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "50.18492000", + "longitude": "27.53629000" + }, + { + "id": "110440", + "name": "Shepetivka", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "50.18545000", + "longitude": "27.06365000" + }, + { + "id": "110479", + "name": "Slavuta", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "50.30155000", + "longitude": "26.86506000" + }, + { + "id": "110489", + "name": "Smotrych", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "48.66149000", + "longitude": "26.56031000" + }, + { + "id": "110490", + "name": "Smyga", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "50.23910000", + "longitude": "25.76575000" + }, + { + "id": "110527", + "name": "Stara Syniava", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.60318000", + "longitude": "27.61909000" + }, + { + "id": "110533", + "name": "Starokostiantyniv", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.75764000", + "longitude": "27.20342000" + }, + { + "id": "110787", + "name": "Yarmolyntsi", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.19236000", + "longitude": "26.83725000" + }, + { + "id": "110811", + "name": "Zakupne", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "49.11944000", + "longitude": "26.33756000" + }, + { + "id": "110851", + "name": "Zhvanets", + "state_id": 4681, + "state_code": "68", + "country_id": 230, + "country_code": "UA", + "latitude": "48.54968000", + "longitude": "26.48744000" + }, + { + "id": "109529", + "name": "Darnytsia Raion", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.41333000", + "longitude": "30.69305000" + }, + { + "id": "109541", + "name": "Desnyans’kyy Rayon", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.53550000", + "longitude": "30.60875000" + }, + { + "id": "109550", + "name": "Dnipro Raion", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.46756000", + "longitude": "30.63194000" + }, + { + "id": "109637", + "name": "Holosiiv Raion", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.32749000", + "longitude": "30.56740000" + }, + { + "id": "109819", + "name": "Kotsyubyns’ke", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.48836000", + "longitude": "30.32957000" + }, + { + "id": "109897", + "name": "Kyiv", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.45466000", + "longitude": "30.52380000" + }, + { + "id": "110235", + "name": "Pechersk Raion", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.41902000", + "longitude": "30.56602000" + }, + { + "id": "110286", + "name": "Podil’s’kyy Rayon", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.45000000", + "longitude": "30.53333000" + }, + { + "id": "110313", + "name": "Prolisky", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.39118000", + "longitude": "30.78000000" + }, + { + "id": "110442", + "name": "Shevchenkivs’kyy Rayon", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.43333000", + "longitude": "30.51667000" + }, + { + "id": "110507", + "name": "Solomianka Rayon", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.42886000", + "longitude": "30.45135000" + }, + { + "id": "110580", + "name": "Svyatoshyns’kyy Rayon", + "state_id": 4676, + "state_code": "30", + "country_id": 230, + "country_code": "UA", + "latitude": "50.48533000", + "longitude": "30.38050000" + }, + { + "id": "109307", + "name": "Adzhamka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.54245000", + "longitude": "32.53542000" + }, + { + "id": "109411", + "name": "Blahovishchenske Raion", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.25000000", + "longitude": "30.25000000" + }, + { + "id": "109416", + "name": "Bobrynets", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.05896000", + "longitude": "32.16641000" + }, + { + "id": "109544", + "name": "Dmytrivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.79690000", + "longitude": "32.71645000" + }, + { + "id": "109558", + "name": "Dobrovelychkivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.38778000", + "longitude": "31.18028000" + }, + { + "id": "109559", + "name": "Dobrovelychkivs’kyy Rayon", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36935000", + "longitude": "31.16354000" + }, + { + "id": "109566", + "name": "Dolyns'ka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.11041000", + "longitude": "32.76449000" + }, + { + "id": "109568", + "name": "Dolyns’kyy Rayon", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.16327000", + "longitude": "32.88318000" + }, + { + "id": "109627", + "name": "Hayvoron", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.33958000", + "longitude": "29.86791000" + }, + { + "id": "109715", + "name": "Kapitanivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.91719000", + "longitude": "31.71671000" + }, + { + "id": "109751", + "name": "Kirovohrads’ka Mis’krada", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.52185000", + "longitude": "32.24367000" + }, + { + "id": "109783", + "name": "Kompaniyivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.25115000", + "longitude": "32.20795000" + }, + { + "id": "109867", + "name": "Kropyvnytskyi", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.51320000", + "longitude": "32.25970000" + }, + { + "id": "109934", + "name": "Lozuvatka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.05710000", + "longitude": "33.28581000" + }, + { + "id": "109955", + "name": "Lypnyazhka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.44694000", + "longitude": "31.07611000" + }, + { + "id": "109981", + "name": "Mala Vyska", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.64308000", + "longitude": "31.63657000" + }, + { + "id": "109986", + "name": "Malovyskivs’kyy Rayon", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.57680000", + "longitude": "31.57594000" + }, + { + "id": "110048", + "name": "Molodizhne", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.17732000", + "longitude": "32.66015000" + }, + { + "id": "110107", + "name": "Nova Praha", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.56821000", + "longitude": "32.90273000" + }, + { + "id": "110114", + "name": "Novhorodka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36506000", + "longitude": "32.65785000" + }, + { + "id": "110119", + "name": "Novoarkhanhel’s’k", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.65803000", + "longitude": "30.81821000" + }, + { + "id": "110135", + "name": "Novomyrhorod", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.78105000", + "longitude": "31.64204000" + }, + { + "id": "110150", + "name": "Novoukrayinka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.32635000", + "longitude": "31.52852000" + }, + { + "id": "110160", + "name": "Novyy Starodub", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.51580000", + "longitude": "33.17329000" + }, + { + "id": "110186", + "name": "Oleksandrivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.96336000", + "longitude": "32.23492000" + }, + { + "id": "110189", + "name": "Oleksandriya", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.66961000", + "longitude": "33.11593000" + }, + { + "id": "110190", + "name": "Oleksandriys’ke", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.60767000", + "longitude": "32.98347000" + }, + { + "id": "110198", + "name": "Onufriyivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.90716000", + "longitude": "33.44869000" + }, + { + "id": "110221", + "name": "Pantayivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.67400000", + "longitude": "32.88410000" + }, + { + "id": "110233", + "name": "Pavlysh", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.91762000", + "longitude": "33.35691000" + }, + { + "id": "110238", + "name": "Perehonivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.53552000", + "longitude": "30.51923000" + }, + { + "id": "110259", + "name": "Petrove", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.32467000", + "longitude": "33.25617000" + }, + { + "id": "110281", + "name": "Pobugskoye", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.16579000", + "longitude": "30.59274000" + }, + { + "id": "110297", + "name": "Pomichna", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.24222000", + "longitude": "31.41583000" + }, + { + "id": "110325", + "name": "Pryyutivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.72094000", + "longitude": "33.07078000" + }, + { + "id": "110355", + "name": "Rivne", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.24742000", + "longitude": "31.75432000" + }, + { + "id": "110559", + "name": "Subottsi", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.65545000", + "longitude": "32.52093000" + }, + { + "id": "110577", + "name": "Svitlovods’k", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "49.04894000", + "longitude": "33.24106000" + }, + { + "id": "110643", + "name": "Tyshkivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.49665000", + "longitude": "30.94229000" + }, + { + "id": "110662", + "name": "Ustynivka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "47.95507000", + "longitude": "32.53674000" + }, + { + "id": "110793", + "name": "Yelyzavethradka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.80381000", + "longitude": "32.40460000" + }, + { + "id": "110828", + "name": "Zavallya", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.21354000", + "longitude": "30.01558000" + }, + { + "id": "110856", + "name": "Zlynka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.48521000", + "longitude": "31.53906000" + }, + { + "id": "110858", + "name": "Znomenka", + "state_id": 4677, + "state_code": "35", + "country_id": 230, + "country_code": "UA", + "latitude": "48.71278000", + "longitude": "32.66472000" + }, + { + "id": "109353", + "name": "Baryshivka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.36098000", + "longitude": "31.32173000" + }, + { + "id": "109354", + "name": "Baryshivs’kyy Rayon", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.36919000", + "longitude": "31.34896000" + }, + { + "id": "109393", + "name": "Bila Tserkva", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.80939000", + "longitude": "30.11209000" + }, + { + "id": "109394", + "name": "Bila Tserkva Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.75000000", + "longitude": "30.08333000" + }, + { + "id": "109422", + "name": "Bohuslav", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.54939000", + "longitude": "30.87440000" + }, + { + "id": "109426", + "name": "Borispol’skiy Rayon", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.33450000", + "longitude": "31.02470000" + }, + { + "id": "109427", + "name": "Borodianka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.64484000", + "longitude": "29.92010000" + }, + { + "id": "109429", + "name": "Borodyans’kyy Rayon", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.65889000", + "longitude": "29.88556000" + }, + { + "id": "109431", + "name": "Borova", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.17625000", + "longitude": "30.10429000" + }, + { + "id": "109436", + "name": "Boryspil’", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.35269000", + "longitude": "30.95501000" + }, + { + "id": "109440", + "name": "Boyarka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.31911000", + "longitude": "30.29728000" + }, + { + "id": "109449", + "name": "Brovary", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.51809000", + "longitude": "30.80671000" + }, + { + "id": "109450", + "name": "Brovary Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.58333000", + "longitude": "31.00000000" + }, + { + "id": "109456", + "name": "Bucha", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.54345000", + "longitude": "30.21201000" + }, + { + "id": "109468", + "name": "Chabany", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.34071000", + "longitude": "30.42356000" + }, + { + "id": "109494", + "name": "Chernyakhivka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.21882000", + "longitude": "31.93082000" + }, + { + "id": "109591", + "name": "Dymer", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.78647000", + "longitude": "30.30260000" + }, + { + "id": "109597", + "name": "Fastiv", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.07670000", + "longitude": "29.91770000" + }, + { + "id": "109598", + "name": "Fastiv Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.08333000", + "longitude": "30.00000000" + }, + { + "id": "109631", + "name": "Hlevakha", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.27423000", + "longitude": "30.32706000" + }, + { + "id": "109635", + "name": "Hnidyn", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.32899000", + "longitude": "30.71059000" + }, + { + "id": "109639", + "name": "Horenka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.55731000", + "longitude": "30.33217000" + }, + { + "id": "109655", + "name": "Hostomel", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.56841000", + "longitude": "30.26510000" + }, + { + "id": "109672", + "name": "Irpin", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.52175000", + "longitude": "30.25055000" + }, + { + "id": "109673", + "name": "Irpins’ka Mis’krada", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.51585000", + "longitude": "30.24099000" + }, + { + "id": "109680", + "name": "Ivankiv", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.93865000", + "longitude": "29.89426000" + }, + { + "id": "109681", + "name": "Ivankiv Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "51.00000000", + "longitude": "29.91667000" + }, + { + "id": "109695", + "name": "Kaharlyk", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.86233000", + "longitude": "30.82815000" + }, + { + "id": "109696", + "name": "Kaharlyk Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.91667000", + "longitude": "30.75000000" + }, + { + "id": "109705", + "name": "Kalynove", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.38179000", + "longitude": "30.45137000" + }, + { + "id": "109716", + "name": "Karapyshi", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.64237000", + "longitude": "30.79002000" + }, + { + "id": "109720", + "name": "Katyuzhanka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.80595000", + "longitude": "30.13763000" + }, + { + "id": "109739", + "name": "Khotiv", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.33069000", + "longitude": "30.46836000" + }, + { + "id": "109749", + "name": "Kirove", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.36890000", + "longitude": "31.12066000" + }, + { + "id": "109758", + "name": "Klavdiyevo-Tarasove", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.58416000", + "longitude": "30.01134000" + }, + { + "id": "109764", + "name": "Knyazhichi", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.46275000", + "longitude": "30.78369000" + }, + { + "id": "109768", + "name": "Kodra", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.59488000", + "longitude": "29.55873000" + }, + { + "id": "109797", + "name": "Korniyivka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.41661000", + "longitude": "31.46261000" + }, + { + "id": "109825", + "name": "Kozhanka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.97231000", + "longitude": "29.76424000" + }, + { + "id": "109855", + "name": "Krasyatychi", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "51.07636000", + "longitude": "29.64899000" + }, + { + "id": "109865", + "name": "Kriukivschina", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.37153000", + "longitude": "30.36861000" + }, + { + "id": "109874", + "name": "Kryva Hora", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "51.38495000", + "longitude": "30.19978000" + }, + { + "id": "109900", + "name": "Kyyevo-Svyatoshyns’kyy Rayon", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.38530000", + "longitude": "30.23129000" + }, + { + "id": "109925", + "name": "Liutizh", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.68350000", + "longitude": "30.39324000" + }, + { + "id": "109972", + "name": "Makariv", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.46408000", + "longitude": "29.81128000" + }, + { + "id": "109973", + "name": "Makariv Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.50000000", + "longitude": "29.75000000" + }, + { + "id": "110035", + "name": "Mirovka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.93126000", + "longitude": "30.62309000" + }, + { + "id": "110057", + "name": "Motovylivka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.15821000", + "longitude": "30.07421000" + }, + { + "id": "110076", + "name": "Myronivka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.66007000", + "longitude": "30.98225000" + }, + { + "id": "110116", + "name": "Novi Petrivtsi", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.62754000", + "longitude": "30.44310000" + }, + { + "id": "110173", + "name": "Obukhiv", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.10689000", + "longitude": "30.61848000" + }, + { + "id": "110174", + "name": "Obukhiv Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.16667000", + "longitude": "30.66667000" + }, + { + "id": "110175", + "name": "Obukhivs’ka Mis’krada", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.11425000", + "longitude": "30.63293000" + }, + { + "id": "110239", + "name": "Pereiaslav-Khmelnytskyi", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.06739000", + "longitude": "31.44969000" + }, + { + "id": "110240", + "name": "Pereiaslav-Khmelnytskyi Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.08333000", + "longitude": "31.50000000" + }, + { + "id": "110274", + "name": "Piskivka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.69378000", + "longitude": "29.61934000" + }, + { + "id": "110287", + "name": "Pohreby", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.55453000", + "longitude": "30.64455000" + }, + { + "id": "110327", + "name": "Pukhivka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.60970000", + "longitude": "30.71770000" + }, + { + "id": "110363", + "name": "Rokytne", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.68665000", + "longitude": "30.47384000" + }, + { + "id": "110365", + "name": "Rokytne Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.75000000", + "longitude": "30.50000000" + }, + { + "id": "110373", + "name": "Roskoshnyy", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.37087000", + "longitude": "30.18471000" + }, + { + "id": "110398", + "name": "Rzhyshchiv", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.96886000", + "longitude": "31.04628000" + }, + { + "id": "110417", + "name": "Semypolky", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.72627000", + "longitude": "30.93441000" + }, + { + "id": "110474", + "name": "Skvyra", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.73177000", + "longitude": "29.66569000" + }, + { + "id": "110475", + "name": "Skvyrs’kyy Rayon", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.74177000", + "longitude": "29.70043000" + }, + { + "id": "110480", + "name": "Slavutych", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "51.52250000", + "longitude": "30.71806000" + }, + { + "id": "110499", + "name": "Sofiyivska Borschagivka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.41005000", + "longitude": "30.36724000" + }, + { + "id": "110543", + "name": "Stavyshche", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.39124000", + "longitude": "30.19022000" + }, + { + "id": "110545", + "name": "Stayki", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.07818000", + "longitude": "30.90380000" + }, + { + "id": "110590", + "name": "Tarashcha", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.55832000", + "longitude": "30.49259000" + }, + { + "id": "110606", + "name": "Tetiiv", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.37670000", + "longitude": "29.66474000" + }, + { + "id": "110620", + "name": "Trebukhiv", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.48432000", + "longitude": "30.90304000" + }, + { + "id": "110624", + "name": "Trypillia", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.11802000", + "longitude": "30.78141000" + }, + { + "id": "110632", + "name": "Tsybli", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.99484000", + "longitude": "31.56281000" + }, + { + "id": "110651", + "name": "Ukrainka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.14317000", + "longitude": "30.74612000" + }, + { + "id": "110669", + "name": "Uzyn", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.82619000", + "longitude": "30.41487000" + }, + { + "id": "110678", + "name": "Vasylkiv", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.18693000", + "longitude": "30.31346000" + }, + { + "id": "110679", + "name": "Vasylkiv Raion", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.16667000", + "longitude": "30.33333000" + }, + { + "id": "110684", + "name": "Velyka Dymerka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.59333000", + "longitude": "30.90313000" + }, + { + "id": "110733", + "name": "Volodarka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "49.52484000", + "longitude": "29.91222000" + }, + { + "id": "110742", + "name": "Voronkov", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.22235000", + "longitude": "30.89967000" + }, + { + "id": "110745", + "name": "Vorzel’", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.54440000", + "longitude": "30.15305000" + }, + { + "id": "110762", + "name": "Vyshgorodskiy Rayon", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.58333000", + "longitude": "30.50000000" + }, + { + "id": "110763", + "name": "Vyshhorod", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.58476000", + "longitude": "30.48980000" + }, + { + "id": "110765", + "name": "Vyshneve", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.38913000", + "longitude": "30.37050000" + }, + { + "id": "110773", + "name": "Yahotyn", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.27975000", + "longitude": "31.76246000" + }, + { + "id": "110774", + "name": "Yahotyns’kyy Rayon", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.25722000", + "longitude": "31.89456000" + }, + { + "id": "110872", + "name": "Z·hurivs’kyy Rayon", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.47192000", + "longitude": "31.79423000" + }, + { + "id": "110839", + "name": "Zgurovka", + "state_id": 4671, + "state_code": "32", + "country_id": 230, + "country_code": "UA", + "latitude": "50.50276000", + "longitude": "31.78492000" + }, + { + "id": "109311", + "name": "Alchevs’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.46893000", + "longitude": "38.81669000" + }, + { + "id": "109312", + "name": "Alchevs’ka Mis’krada", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.48029000", + "longitude": "38.79690000" + }, + { + "id": "109323", + "name": "Antratsyt", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.11503000", + "longitude": "39.09128000" + }, + { + "id": "109324", + "name": "Antratsytivs’kyy Rayon", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.12450000", + "longitude": "39.05683000" + }, + { + "id": "109329", + "name": "Artemivs’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.44061000", + "longitude": "38.73200000" + }, + { + "id": "109359", + "name": "Bayrachky", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.39200000", + "longitude": "38.60174000" + }, + { + "id": "109395", + "name": "Bile", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.49523000", + "longitude": "39.05051000" + }, + { + "id": "109400", + "name": "Bilohorivka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.92503000", + "longitude": "38.24822000" + }, + { + "id": "109401", + "name": "Bilokurakyne", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.53410000", + "longitude": "38.73067000" + }, + { + "id": "109403", + "name": "Bilovods'k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.20846000", + "longitude": "39.58975000" + }, + { + "id": "109408", + "name": "Biryukove", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "47.95631000", + "longitude": "39.73843000" + }, + { + "id": "109453", + "name": "Bryanka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.51100000", + "longitude": "38.67222000" + }, + { + "id": "109460", + "name": "Buran", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.30003000", + "longitude": "39.61526000" + }, + { + "id": "109502", + "name": "Chervonopartyzans’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.07613000", + "longitude": "39.79618000" + }, + { + "id": "109515", + "name": "Chornukhyne", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.32339000", + "longitude": "38.52272000" + }, + { + "id": "109574", + "name": "Dovzhanskyy Rayon", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.00000000", + "longitude": "39.66667000" + }, + { + "id": "109630", + "name": "Hirs’ke", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.73468000", + "longitude": "38.49541000" + }, + { + "id": "109693", + "name": "Kadiyivka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.56818000", + "longitude": "38.64352000" + }, + { + "id": "109754", + "name": "Kirovs’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.63751000", + "longitude": "38.64280000" + }, + { + "id": "109755", + "name": "Kirovs’ka Mis’krada", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.63485000", + "longitude": "38.64753000" + }, + { + "id": "109760", + "name": "Klenovyy", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.11934000", + "longitude": "39.45880000" + }, + { + "id": "109853", + "name": "Krasnyy Kut", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.20138000", + "longitude": "38.79765000" + }, + { + "id": "109854", + "name": "Krasnyy Luch", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.13954000", + "longitude": "38.93715000" + }, + { + "id": "109860", + "name": "Kreminna", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.04950000", + "longitude": "38.21792000" + }, + { + "id": "109864", + "name": "Kripens’kyy", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.07709000", + "longitude": "39.05800000" + }, + { + "id": "109911", + "name": "Lenina", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.42944000", + "longitude": "39.14556000" + }, + { + "id": "109931", + "name": "Lozno-Oleksandrivka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.83910000", + "longitude": "38.74098000" + }, + { + "id": "109939", + "name": "Luhans’ka Mis’krada", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58083000", + "longitude": "39.35478000" + }, + { + "id": "109938", + "name": "Luhansk", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.56705000", + "longitude": "39.31706000" + }, + { + "id": "109945", + "name": "Lutuhyne", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.40507000", + "longitude": "39.22675000" + }, + { + "id": "109946", + "name": "Lutuhyns’kyy Rayon", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.38509000", + "longitude": "39.21209000" + }, + { + "id": "109960", + "name": "Lysychans’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.90485000", + "longitude": "38.44207000" + }, + { + "id": "109974", + "name": "Makariv Yar", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.57768000", + "longitude": "39.71944000" + }, + { + "id": "110001", + "name": "Markivka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.52290000", + "longitude": "39.57055000" + }, + { + "id": "110030", + "name": "Millerovo", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.16829000", + "longitude": "39.16537000" + }, + { + "id": "110031", + "name": "Milove", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.37528000", + "longitude": "40.13222000" + }, + { + "id": "110038", + "name": "Miusyns’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.07750000", + "longitude": "38.90364000" + }, + { + "id": "110049", + "name": "Molodohvardiys’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.34511000", + "longitude": "39.65244000" + }, + { + "id": "110143", + "name": "Novopskov", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.54640000", + "longitude": "39.08987000" + }, + { + "id": "110166", + "name": "Nyzhnya Duvanka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.58464000", + "longitude": "38.17429000" + }, + { + "id": "110231", + "name": "Pavlivka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.60864000", + "longitude": "38.70917000" + }, + { + "id": "110244", + "name": "Pereval’s’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.43779000", + "longitude": "38.84384000" + }, + { + "id": "110250", + "name": "Pervomays’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.62988000", + "longitude": "38.54806000" + }, + { + "id": "110300", + "name": "Popasna", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.63328000", + "longitude": "38.37804000" + }, + { + "id": "110324", + "name": "Pryvillya", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.01501000", + "longitude": "38.30457000" + }, + { + "id": "110374", + "name": "Roven’ky", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.08331000", + "longitude": "39.37764000" + }, + { + "id": "110384", + "name": "Rozkishne", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.48959000", + "longitude": "39.27881000" + }, + { + "id": "110387", + "name": "Rubizhans’ka Mis’krada", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.01460000", + "longitude": "38.38909000" + }, + { + "id": "110388", + "name": "Rubizhne", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.01229000", + "longitude": "38.37967000" + }, + { + "id": "110433", + "name": "Shchastya", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.73963000", + "longitude": "39.23230000" + }, + { + "id": "110460", + "name": "Simeykyne", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.32643000", + "longitude": "39.53366000" + }, + { + "id": "110485", + "name": "Slov`yanoserbsk", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.69779000", + "longitude": "38.98133000" + }, + { + "id": "110514", + "name": "Sorokyne", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.29235000", + "longitude": "39.73921000" + }, + { + "id": "110515", + "name": "Sorokyns'kyi Rayon", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.33333000", + "longitude": "39.75000000" + }, + { + "id": "110526", + "name": "Stanytsya Luhans’ka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.65433000", + "longitude": "39.47943000" + }, + { + "id": "110532", + "name": "Starobil’s’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.27832000", + "longitude": "38.91069000" + }, + { + "id": "110572", + "name": "Svatove", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "49.41029000", + "longitude": "38.15035000" + }, + { + "id": "110573", + "name": "Sverdlovs’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.08964000", + "longitude": "39.65243000" + }, + { + "id": "110574", + "name": "Sverdlovs’ka Mis’krada", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.06850000", + "longitude": "39.58057000" + }, + { + "id": "110582", + "name": "Syevyerodonets’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.94832000", + "longitude": "38.49166000" + }, + { + "id": "110597", + "name": "Teple", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.31245000", + "longitude": "39.56284000" + }, + { + "id": "110618", + "name": "Toshkivka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.77914000", + "longitude": "38.57903000" + }, + { + "id": "110625", + "name": "Tr’okhizbenka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.75751000", + "longitude": "38.96333000" + }, + { + "id": "110657", + "name": "Uralo-Kavkaz", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.32110000", + "longitude": "39.80302000" + }, + { + "id": "110661", + "name": "Uspenka", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.39077000", + "longitude": "39.16284000" + }, + { + "id": "110812", + "name": "Zalesnoye", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.03104000", + "longitude": "38.80934000" + }, + { + "id": "110866", + "name": "Zoryns’k", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.41194000", + "longitude": "38.62361000" + }, + { + "id": "110871", + "name": "Zymohiria", + "state_id": 4673, + "state_code": "09", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58528000", + "longitude": "38.93750000" + }, + { + "id": "109366", + "name": "Belz", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.38226000", + "longitude": "24.00642000" + }, + { + "id": "109391", + "name": "Bibrka", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.64093000", + "longitude": "24.28874000" + }, + { + "id": "109435", + "name": "Boryslav", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.28672000", + "longitude": "23.43238000" + }, + { + "id": "109446", + "name": "Brody", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.08791000", + "longitude": "25.15027000" + }, + { + "id": "109455", + "name": "Bryukhovychi", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.90467000", + "longitude": "23.95969000" + }, + { + "id": "109500", + "name": "Chervonohrad", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.39105000", + "longitude": "24.23514000" + }, + { + "id": "109534", + "name": "Demnya", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.56738000", + "longitude": "23.94607000" + }, + { + "id": "109555", + "name": "Dobromyl’", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.57193000", + "longitude": "22.78629000" + }, + { + "id": "109578", + "name": "Drohobych", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.34991000", + "longitude": "23.50561000" + }, + { + "id": "109583", + "name": "Dublyany", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.90411000", + "longitude": "24.08637000" + }, + { + "id": "109588", + "name": "Duliby", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.23134000", + "longitude": "23.81532000" + }, + { + "id": "109594", + "name": "Dzvinogrud", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.73333000", + "longitude": "24.25000000" + }, + { + "id": "109634", + "name": "Hlyns'k", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.06033000", + "longitude": "23.89956000" + }, + { + "id": "109648", + "name": "Horodok", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.78465000", + "longitude": "23.64806000" + }, + { + "id": "109684", + "name": "Ivano-Frankove", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.91978000", + "longitude": "23.72913000" + }, + { + "id": "109733", + "name": "Khodoriv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.40993000", + "longitude": "24.30470000" + }, + { + "id": "109746", + "name": "Khyriv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.53417000", + "longitude": "22.85538000" + }, + { + "id": "109782", + "name": "Komarno", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.62739000", + "longitude": "23.69952000" + }, + { + "id": "109832", + "name": "Krasne", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.91447000", + "longitude": "24.61340000" + }, + { + "id": "109884", + "name": "Kulykiv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.97954000", + "longitude": "24.07817000" + }, + { + "id": "109929", + "name": "Lopatyn", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.22022000", + "longitude": "24.84831000" + }, + { + "id": "109948", + "name": "Lviv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.83826000", + "longitude": "24.02324000" + }, + { + "id": "110012", + "name": "Medenychi", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.43055000", + "longitude": "23.75073000" + }, + { + "id": "110052", + "name": "Morshyn", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.15652000", + "longitude": "23.87232000" + }, + { + "id": "110056", + "name": "Mostys'ka", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.79467000", + "longitude": "23.15077000" + }, + { + "id": "110062", + "name": "Murovane", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.52143000", + "longitude": "22.93670000" + }, + { + "id": "110070", + "name": "Mykolaiv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.52372000", + "longitude": "23.98522000" + }, + { + "id": "110084", + "name": "Navaria", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.74952000", + "longitude": "23.92746000" + }, + { + "id": "110154", + "name": "Novoyavorivs'k", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.93023000", + "longitude": "23.57357000" + }, + { + "id": "110157", + "name": "Novyi Yarychiv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.90444000", + "longitude": "24.30523000" + }, + { + "id": "110172", + "name": "Obroshyne", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.78333000", + "longitude": "23.86667000" + }, + { + "id": "110193", + "name": "Olesko", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.96233000", + "longitude": "24.89336000" + }, + { + "id": "110241", + "name": "Peremyshlyany", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.66523000", + "longitude": "24.55846000" + }, + { + "id": "110264", + "name": "Pidbuzh", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.33483000", + "longitude": "23.24887000" + }, + { + "id": "110266", + "name": "Pidhirtsi", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.94611000", + "longitude": "24.97950000" + }, + { + "id": "110269", + "name": "Pidkamin’", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.94599000", + "longitude": "25.31672000" + }, + { + "id": "110278", + "name": "Pnikut", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.71104000", + "longitude": "23.13826000" + }, + { + "id": "110298", + "name": "Pomoriany", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.64092000", + "longitude": "24.93070000" + }, + { + "id": "110306", + "name": "Potelych", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.20804000", + "longitude": "23.54674000" + }, + { + "id": "110330", + "name": "Pustomyty", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.71532000", + "longitude": "23.91295000" + }, + { + "id": "110344", + "name": "Ralivka", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.49982000", + "longitude": "23.23739000" + }, + { + "id": "110347", + "name": "Rava-Rus’ka", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.23079000", + "longitude": "23.62825000" + }, + { + "id": "110352", + "name": "Richky", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.27706000", + "longitude": "23.64617000" + }, + { + "id": "110357", + "name": "Rodatychi", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.79862000", + "longitude": "23.53336000" + }, + { + "id": "110376", + "name": "Rozdil", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.46144000", + "longitude": "24.06230000" + }, + { + "id": "110386", + "name": "Rozvadiv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.50323000", + "longitude": "23.96200000" + }, + { + "id": "110390", + "name": "Rudky", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.65306000", + "longitude": "23.48702000" + }, + { + "id": "110391", + "name": "Rudne", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.83333000", + "longitude": "23.90000000" + }, + { + "id": "110397", + "name": "Rykhtychi", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.38511000", + "longitude": "23.55662000" + }, + { + "id": "110405", + "name": "Sambir", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.51830000", + "longitude": "23.19752000" + }, + { + "id": "110438", + "name": "Shchyrets", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.65096000", + "longitude": "23.87426000" + }, + { + "id": "110447", + "name": "Shklo", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.95675000", + "longitude": "23.54408000" + }, + { + "id": "110458", + "name": "Silets’", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.29712000", + "longitude": "24.20462000" + }, + { + "id": "110470", + "name": "Skelivka", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.53728000", + "longitude": "22.96467000" + }, + { + "id": "110471", + "name": "Skhidnytsya", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.22827000", + "longitude": "23.35016000" + }, + { + "id": "110472", + "name": "Skole", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.03717000", + "longitude": "23.51346000" + }, + { + "id": "110478", + "name": "Slavske", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "48.84734000", + "longitude": "23.44587000" + }, + { + "id": "110500", + "name": "Sokal’", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.47438000", + "longitude": "24.28288000" + }, + { + "id": "110510", + "name": "Solonka", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.75621000", + "longitude": "24.01028000" + }, + { + "id": "110535", + "name": "Staroye Selo", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.71037000", + "longitude": "24.18950000" + }, + { + "id": "110537", + "name": "Starychi", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.98001000", + "longitude": "23.55848000" + }, + { + "id": "110538", + "name": "Staryy Dobrotvir", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.23154000", + "longitude": "24.37701000" + }, + { + "id": "110542", + "name": "Staryy Sambir", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.43856000", + "longitude": "23.00056000" + }, + { + "id": "110547", + "name": "Stebnyk", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.29416000", + "longitude": "23.56357000" + }, + { + "id": "110557", + "name": "Stryi", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.26223000", + "longitude": "23.85609000" + }, + { + "id": "110561", + "name": "Sudova Vyshnya", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.78892000", + "longitude": "23.37218000" + }, + { + "id": "110562", + "name": "Sukhovolya", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.82426000", + "longitude": "23.83770000" + }, + { + "id": "110623", + "name": "Truskavets’", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.27837000", + "longitude": "23.50618000" + }, + { + "id": "110635", + "name": "Tukhlia", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "48.91218000", + "longitude": "23.47303000" + }, + { + "id": "110639", + "name": "Turka", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.15411000", + "longitude": "23.02967000" + }, + { + "id": "110649", + "name": "Uhniv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.36811000", + "longitude": "23.74895000" + }, + { + "id": "110655", + "name": "Ulychne", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.23385000", + "longitude": "23.65111000" + }, + { + "id": "110700", + "name": "Verblyany", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.04747000", + "longitude": "23.42189000" + }, + { + "id": "110701", + "name": "Verchnia Rozhanka", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "48.78050000", + "longitude": "23.51545000" + }, + { + "id": "110705", + "name": "Verkhnie Synevydne", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.10307000", + "longitude": "23.59099000" + }, + { + "id": "110709", + "name": "Verkhnyaya Belka", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.81575000", + "longitude": "24.30328000" + }, + { + "id": "110749", + "name": "Voyutychi", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.55135000", + "longitude": "23.10579000" + }, + { + "id": "110792", + "name": "Yavoriv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.93864000", + "longitude": "23.38254000" + }, + { + "id": "110845", + "name": "Zhovkva", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "50.05825000", + "longitude": "23.97260000" + }, + { + "id": "110852", + "name": "Zhydachiv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.38468000", + "longitude": "24.14254000" + }, + { + "id": "110860", + "name": "Zolochiv", + "state_id": 4672, + "state_code": "46", + "country_id": 230, + "country_code": "UA", + "latitude": "49.80597000", + "longitude": "24.89436000" + }, + { + "id": "109326", + "name": "Arbuzynka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.90972000", + "longitude": "31.31963000" + }, + { + "id": "109355", + "name": "Bashtanka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.40719000", + "longitude": "32.43868000" + }, + { + "id": "109378", + "name": "Berezanka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "46.85262000", + "longitude": "31.38802000" + }, + { + "id": "109382", + "name": "Bereznehuvate", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.30783000", + "longitude": "32.84993000" + }, + { + "id": "109569", + "name": "Domanivka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.63192000", + "longitude": "30.98851000" + }, + { + "id": "109723", + "name": "Kazanka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.84625000", + "longitude": "32.82177000" + }, + { + "id": "109765", + "name": "Kobleve", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "46.66499000", + "longitude": "31.20804000" + }, + { + "id": "109815", + "name": "Kostyantynivka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.82660000", + "longitude": "31.13551000" + }, + { + "id": "109875", + "name": "Kryve Ozero", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.95242000", + "longitude": "30.34928000" + }, + { + "id": "109958", + "name": "Lysa Hora", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "48.17059000", + "longitude": "31.10994000" + }, + { + "id": "110066", + "name": "Myhiya", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "48.03719000", + "longitude": "30.95153000" + }, + { + "id": "110071", + "name": "Mykolayiv", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "46.96591000", + "longitude": "31.99740000" + }, + { + "id": "110106", + "name": "Nova Odesa", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.30778000", + "longitude": "31.78506000" + }, + { + "id": "110159", + "name": "Novyy Buh", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.69308000", + "longitude": "32.52160000" + }, + { + "id": "110176", + "name": "Ochakiv", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "46.61283000", + "longitude": "31.54982000" + }, + { + "id": "110185", + "name": "Ol'shanskoye", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.18411000", + "longitude": "31.79375000" + }, + { + "id": "110187", + "name": "Oleksandrivka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "46.83826000", + "longitude": "32.76116000" + }, + { + "id": "110228", + "name": "Parutyne", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "46.70538000", + "longitude": "31.89709000" + }, + { + "id": "110251", + "name": "Pervomays’k", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "48.04433000", + "longitude": "30.85073000" + }, + { + "id": "110267", + "name": "Pidhorodna", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "48.10704000", + "longitude": "30.88953000" + }, + { + "id": "110396", + "name": "Rybakivka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "46.61712000", + "longitude": "31.34995000" + }, + { + "id": "110443", + "name": "Shevchenkove", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "46.86289000", + "longitude": "32.20387000" + }, + { + "id": "110492", + "name": "Snihurivka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.07579000", + "longitude": "32.80516000" + }, + { + "id": "110716", + "name": "Veselynove", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.35666000", + "longitude": "31.23488000" + }, + { + "id": "110751", + "name": "Voznesensk", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.56494000", + "longitude": "31.33078000" + }, + { + "id": "110752", + "name": "Vradiyivka", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.86195000", + "longitude": "30.59195000" + }, + { + "id": "110805", + "name": "Yuzhnoukrains'k", + "state_id": 4679, + "state_code": "48", + "country_id": 230, + "country_code": "UA", + "latitude": "47.81777000", + "longitude": "31.18263000" + }, + { + "id": "109330", + "name": "Artsyz", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.99194000", + "longitude": "29.41824000" + }, + { + "id": "109346", + "name": "Balta", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.93548000", + "longitude": "29.61982000" + }, + { + "id": "109347", + "name": "Balts’kyy Rayon", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.99828000", + "longitude": "29.64835000" + }, + { + "id": "109379", + "name": "Berezivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.20429000", + "longitude": "30.90780000" + }, + { + "id": "109386", + "name": "Berezyne", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.22968000", + "longitude": "29.20436000" + }, + { + "id": "109396", + "name": "Bilhorod-Dnistrovskyi", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.19520000", + "longitude": "30.34938000" + }, + { + "id": "109406", + "name": "Bilyayivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.48319000", + "longitude": "30.21678000" + }, + { + "id": "109425", + "name": "Bolhrad", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.68262000", + "longitude": "28.61487000" + }, + { + "id": "109428", + "name": "Borodino", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.30250000", + "longitude": "29.24167000" + }, + { + "id": "109448", + "name": "Broska", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.37327000", + "longitude": "28.78300000" + }, + { + "id": "109513", + "name": "Chornomors’k", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.30495000", + "longitude": "30.65478000" + }, + { + "id": "109545", + "name": "Dmytrivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.97167000", + "longitude": "28.98639000" + }, + { + "id": "109601", + "name": "Fontanka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.56646000", + "longitude": "30.85965000" + }, + { + "id": "109646", + "name": "Horodnye", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.89083000", + "longitude": "28.84833000" + }, + { + "id": "109678", + "name": "Ivanivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.97569000", + "longitude": "30.46998000" + }, + { + "id": "109687", + "name": "Izmayil", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.34929000", + "longitude": "28.84079000" + }, + { + "id": "109699", + "name": "Kalcheva", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.73746000", + "longitude": "28.81441000" + }, + { + "id": "109713", + "name": "Kamyshevka Vtoraya", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.23333000", + "longitude": "29.83333000" + }, + { + "id": "109717", + "name": "Karolino-Buhaz", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.14492000", + "longitude": "30.52609000" + }, + { + "id": "109747", + "name": "Kiliya", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.45518000", + "longitude": "29.26367000" + }, + { + "id": "109769", + "name": "Kodyma", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "48.09875000", + "longitude": "29.12463000" + }, + { + "id": "109770", + "name": "Kodyms’kyy Rayon", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "48.02284000", + "longitude": "29.14010000" + }, + { + "id": "109847", + "name": "Krasnosilka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.62258000", + "longitude": "30.77421000" + }, + { + "id": "109859", + "name": "Kremidivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.73351000", + "longitude": "30.78472000" + }, + { + "id": "109878", + "name": "Kryzhanivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.56167000", + "longitude": "30.79487000" + }, + { + "id": "109880", + "name": "Kuchurhan", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.16302000", + "longitude": "29.78937000" + }, + { + "id": "109883", + "name": "Kulevcha", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.03034000", + "longitude": "29.93614000" + }, + { + "id": "109889", + "name": "Kurisove", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.96951000", + "longitude": "30.95914000" + }, + { + "id": "109953", + "name": "Lymanske", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.65570000", + "longitude": "29.96722000" + }, + { + "id": "109962", + "name": "Lyubashivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.83716000", + "longitude": "30.25976000" + }, + { + "id": "110009", + "name": "Mayaky", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.41748000", + "longitude": "30.27413000" + }, + { + "id": "110072", + "name": "Mykolayivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.54135000", + "longitude": "30.75615000" + }, + { + "id": "110073", + "name": "Mykolayivs’kyy Rayon", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.46720000", + "longitude": "30.60283000" + }, + { + "id": "110117", + "name": "Novi Troyany", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.94275000", + "longitude": "28.85628000" + }, + { + "id": "110177", + "name": "Odessa", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.47747000", + "longitude": "30.73262000" + }, + { + "id": "110181", + "name": "Okny", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.54044000", + "longitude": "29.46001000" + }, + { + "id": "110188", + "name": "Oleksandrivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.32893000", + "longitude": "30.63481000" + }, + { + "id": "110213", + "name": "Ovidiopol", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.24998000", + "longitude": "30.44127000" + }, + { + "id": "110218", + "name": "Ozerne", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.40300000", + "longitude": "28.67546000" + }, + { + "id": "110253", + "name": "Peschana", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "48.12918000", + "longitude": "29.73086000" + }, + { + "id": "110276", + "name": "Plakhtiyivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.10060000", + "longitude": "29.72169000" + }, + { + "id": "110285", + "name": "Podil’s’k", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.75305000", + "longitude": "29.53205000" + }, + { + "id": "110284", + "name": "Podilsk Raion", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.71642000", + "longitude": "29.54509000" + }, + { + "id": "110351", + "name": "Reni", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.45623000", + "longitude": "28.27914000" + }, + { + "id": "110377", + "name": "Rozdil’na", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.84334000", + "longitude": "30.07919000" + }, + { + "id": "110404", + "name": "Salhany", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.14881000", + "longitude": "30.34601000" + }, + { + "id": "110406", + "name": "Sarata", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.01966000", + "longitude": "29.66567000" + }, + { + "id": "110410", + "name": "Savran", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "48.13219000", + "longitude": "30.08247000" + }, + { + "id": "110425", + "name": "Serhiyivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.02720000", + "longitude": "30.37682000" + }, + { + "id": "110426", + "name": "Serpneve", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.30094000", + "longitude": "29.01958000" + }, + { + "id": "110427", + "name": "Shabo", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.13262000", + "longitude": "30.38595000" + }, + { + "id": "110444", + "name": "Shevchenkove", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.55604000", + "longitude": "29.33357000" + }, + { + "id": "110457", + "name": "Shyryayeve", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.38052000", + "longitude": "30.19638000" + }, + { + "id": "110482", + "name": "Slobidka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.88694000", + "longitude": "29.34611000" + }, + { + "id": "110534", + "name": "Starokozache", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.33722000", + "longitude": "29.98528000" + }, + { + "id": "110548", + "name": "Stepanivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.79489000", + "longitude": "29.98684000" + }, + { + "id": "110550", + "name": "Stepove", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.70385000", + "longitude": "30.07919000" + }, + { + "id": "110591", + "name": "Tarutyne", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.18636000", + "longitude": "29.15203000" + }, + { + "id": "110592", + "name": "Tatarbunary", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.83731000", + "longitude": "29.61424000" + }, + { + "id": "110594", + "name": "Tayirove", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.36313000", + "longitude": "30.64891000" + }, + { + "id": "110598", + "name": "Teplodar", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.50585000", + "longitude": "30.32521000" + }, + { + "id": "110660", + "name": "Usatove", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.53296000", + "longitude": "30.65960000" + }, + { + "id": "110686", + "name": "Velyka Mykhaylivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.07971000", + "longitude": "29.85753000" + }, + { + "id": "110693", + "name": "Velykoploske", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.01254000", + "longitude": "29.67171000" + }, + { + "id": "110755", + "name": "Vylkove", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.40214000", + "longitude": "29.58595000" + }, + { + "id": "110759", + "name": "Vynohradivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.68119000", + "longitude": "28.57138000" + }, + { + "id": "110804", + "name": "Yuzhne", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.62211000", + "longitude": "31.10131000" + }, + { + "id": "110808", + "name": "Zagnitkiv", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "48.04878000", + "longitude": "28.89234000" + }, + { + "id": "110810", + "name": "Zakharivka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.33232000", + "longitude": "29.75903000" + }, + { + "id": "110815", + "name": "Zaliznychne", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.74890000", + "longitude": "28.61466000" + }, + { + "id": "110826", + "name": "Zatoka", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "46.07251000", + "longitude": "30.46538000" + }, + { + "id": "110827", + "name": "Zatyshshya", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "47.33351000", + "longitude": "29.87327000" + }, + { + "id": "110865", + "name": "Zorya", + "state_id": 4688, + "state_code": "51", + "country_id": 230, + "country_code": "UA", + "latitude": "45.99080000", + "longitude": "29.69672000" + }, + { + "id": "109535", + "name": "Demydivs’kyy Rayon", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.44302000", + "longitude": "25.29061000" + }, + { + "id": "109584", + "name": "Dubno", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.41694000", + "longitude": "25.73432000" + }, + { + "id": "109586", + "name": "Dubrovytsya", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "51.57438000", + "longitude": "26.56503000" + }, + { + "id": "109652", + "name": "Horodyshche", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.63965000", + "longitude": "26.36573000" + }, + { + "id": "109654", + "name": "Hoshcha", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.60030000", + "longitude": "26.67435000" + }, + { + "id": "109762", + "name": "Klevan", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.74305000", + "longitude": "25.97628000" + }, + { + "id": "109773", + "name": "Kolodenka", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.58561000", + "longitude": "26.31601000" + }, + { + "id": "109778", + "name": "Koloniya Zastav’ye", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.81667000", + "longitude": "27.03333000" + }, + { + "id": "109795", + "name": "Korets", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.61655000", + "longitude": "27.16055000" + }, + { + "id": "109813", + "name": "Kostopil’", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.87841000", + "longitude": "26.45192000" + }, + { + "id": "110041", + "name": "Mizoch", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.40000000", + "longitude": "26.15000000" + }, + { + "id": "110043", + "name": "Mlyniv", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.50900000", + "longitude": "25.61675000" + }, + { + "id": "110044", + "name": "Mlynivs’kyy Rayon", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.55726000", + "longitude": "25.57715000" + }, + { + "id": "110205", + "name": "Orzhiv", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.80000000", + "longitude": "26.12000000" + }, + { + "id": "110208", + "name": "Ostroh", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.32942000", + "longitude": "26.51425000" + }, + { + "id": "110210", + "name": "Ostroz’ka Mis’krada", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.32726000", + "longitude": "26.51765000" + }, + { + "id": "110339", + "name": "Radyvyliv", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.12994000", + "longitude": "25.25576000" + }, + { + "id": "110354", + "name": "Rivne", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.62308000", + "longitude": "26.22743000" + }, + { + "id": "110356", + "name": "Rivnens’ka Mis’krada", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.61300000", + "longitude": "26.24588000" + }, + { + "id": "110364", + "name": "Rokytne", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "51.27960000", + "longitude": "27.21400000" + }, + { + "id": "110407", + "name": "Sarny", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "51.33795000", + "longitude": "26.60191000" + }, + { + "id": "110589", + "name": "Tarakaniv", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.37961000", + "longitude": "25.70843000" + }, + { + "id": "110642", + "name": "Tynne", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.60145000", + "longitude": "26.18486000" + }, + { + "id": "110672", + "name": "Varash", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "51.35090000", + "longitude": "25.84738000" + }, + { + "id": "110691", + "name": "Velyki Mezhyrichi", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.65431000", + "longitude": "26.86626000" + }, + { + "id": "110735", + "name": "Volodymyrets’", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "51.42130000", + "longitude": "26.14469000" + }, + { + "id": "110824", + "name": "Zarichne", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "51.81260000", + "longitude": "26.12902000" + }, + { + "id": "110833", + "name": "Zdolbuniv", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.52060000", + "longitude": "26.24251000" + }, + { + "id": "110834", + "name": "Zdovbytsya", + "state_id": 4683, + "state_code": "56", + "country_id": 230, + "country_code": "UA", + "latitude": "50.49607000", + "longitude": "26.24111000" + }, + { + "id": "109402", + "name": "Bilopillya", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.15016000", + "longitude": "34.31287000" + }, + { + "id": "109430", + "name": "Boromlya", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.61839000", + "longitude": "34.97042000" + }, + { + "id": "109463", + "name": "Buryn’", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.19912000", + "longitude": "33.83523000" + }, + { + "id": "109580", + "name": "Druzhba", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "52.04545000", + "longitude": "33.94517000" + }, + { + "id": "109632", + "name": "Hlukhiv", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.67822000", + "longitude": "33.91620000" + }, + { + "id": "109789", + "name": "Konotop", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.24032000", + "longitude": "33.20263000" + }, + { + "id": "109846", + "name": "Krasnopillya", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.77458000", + "longitude": "35.25965000" + }, + { + "id": "109866", + "name": "Krolevets’", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.54775000", + "longitude": "33.38475000" + }, + { + "id": "109898", + "name": "Kyrykivka", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.36408000", + "longitude": "35.11490000" + }, + { + "id": "109908", + "name": "Lebedyn", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.58518000", + "longitude": "34.48490000" + }, + { + "id": "109956", + "name": "Lypova Dolyna", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.56428000", + "longitude": "33.79793000" + }, + { + "id": "110024", + "name": "Mezenivka", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.63486000", + "longitude": "35.31340000" + }, + { + "id": "110087", + "name": "Nedryhayliv", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.83398000", + "longitude": "33.87626000" + }, + { + "id": "110169", + "name": "Nyzy", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.78281000", + "longitude": "34.78441000" + }, + { + "id": "110180", + "name": "Okhtyrka", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.31036000", + "longitude": "34.89879000" + }, + { + "id": "110332", + "name": "Putyvl’", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.33745000", + "longitude": "33.87066000" + }, + { + "id": "110368", + "name": "Romens’ka Mis’krada", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.74306000", + "longitude": "33.48284000" + }, + { + "id": "110369", + "name": "Romny", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.75104000", + "longitude": "33.47471000" + }, + { + "id": "110424", + "name": "Seredyna-Buda", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "52.18903000", + "longitude": "34.03639000" + }, + { + "id": "110429", + "name": "Shalyhyne", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.57167000", + "longitude": "34.12167000" + }, + { + "id": "110450", + "name": "Shostka", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.86296000", + "longitude": "33.46980000" + }, + { + "id": "110483", + "name": "Sloboda", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.19806000", + "longitude": "33.60695000" + }, + { + "id": "110563", + "name": "Sumy", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.92160000", + "longitude": "34.80029000" + }, + { + "id": "110604", + "name": "Terny", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.98916000", + "longitude": "33.97070000" + }, + { + "id": "110621", + "name": "Trostyanets’", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.48478000", + "longitude": "34.96567000" + }, + { + "id": "110688", + "name": "Velyka Pysarivka", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.42430000", + "longitude": "35.47989000" + }, + { + "id": "110708", + "name": "Verkhnya Syrovatka", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "50.82902000", + "longitude": "34.95861000" + }, + { + "id": "110744", + "name": "Vorozhba", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.17334000", + "longitude": "34.21917000" + }, + { + "id": "110781", + "name": "Yampil’", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.94765000", + "longitude": "33.78759000" + }, + { + "id": "110799", + "name": "Yesman’", + "state_id": 4685, + "state_code": "59", + "country_id": 230, + "country_code": "UA", + "latitude": "51.77006000", + "longitude": "34.06729000" + }, + { + "id": "109362", + "name": "Belaya", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.02900000", + "longitude": "25.77059000" + }, + { + "id": "109434", + "name": "Borshchiv", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "48.80332000", + "longitude": "26.04347000" + }, + { + "id": "109457", + "name": "Buchach", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.06254000", + "longitude": "25.38798000" + }, + { + "id": "109517", + "name": "Chortkiv", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.01709000", + "longitude": "25.79804000" + }, + { + "id": "109579", + "name": "Druzhba", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.04251000", + "longitude": "25.45055000" + }, + { + "id": "109657", + "name": "Hrymayliv", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.33208000", + "longitude": "26.01112000" + }, + { + "id": "109662", + "name": "Husiatyn", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.07290000", + "longitude": "26.18480000" + }, + { + "id": "109738", + "name": "Khorostkiv", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.21114000", + "longitude": "25.92165000" + }, + { + "id": "109793", + "name": "Kopychyntsi", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.10441000", + "longitude": "25.91026000" + }, + { + "id": "109826", + "name": "Kozova", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.43544000", + "longitude": "25.15086000" + }, + { + "id": "109858", + "name": "Kremenets", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "50.09693000", + "longitude": "25.72459000" + }, + { + "id": "109904", + "name": "Lanivtsi", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.86328000", + "longitude": "26.09082000" + }, + { + "id": "110029", + "name": "Mikulintsy", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.39600000", + "longitude": "25.60518000" + }, + { + "id": "110163", + "name": "Nyrkiv", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "48.81492000", + "longitude": "25.59989000" + }, + { + "id": "110216", + "name": "Ozerna", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.62891000", + "longitude": "25.32895000" + }, + { + "id": "110256", + "name": "Petrikov", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.53122000", + "longitude": "25.57901000" + }, + { + "id": "110265", + "name": "Pidhaytsi", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.26853000", + "longitude": "25.13341000" + }, + { + "id": "110270", + "name": "Pidvolochysk", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.53472000", + "longitude": "26.14585000" + }, + { + "id": "110282", + "name": "Pochaiv", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "50.00509000", + "longitude": "25.51183000" + }, + { + "id": "110467", + "name": "Skala-Podil’s’ka", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "48.85149000", + "longitude": "26.19909000" + }, + { + "id": "110468", + "name": "Skalat", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.42732000", + "longitude": "25.97869000" + }, + { + "id": "110601", + "name": "Terebovlya", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.30187000", + "longitude": "25.70997000" + }, + { + "id": "110602", + "name": "Ternopil", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.55342000", + "longitude": "25.58918000" + }, + { + "id": "110619", + "name": "Tovste", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "48.84663000", + "longitude": "25.72621000" + }, + { + "id": "110682", + "name": "Velikiye Borki", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.52363000", + "longitude": "25.75753000" + }, + { + "id": "110772", + "name": "Yahil’nytsya", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "48.94248000", + "longitude": "25.74375000" + }, + { + "id": "110814", + "name": "Zalishchyky", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "48.64331000", + "longitude": "25.73794000" + }, + { + "id": "110818", + "name": "Zaliztsi", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.79188000", + "longitude": "25.37297000" + }, + { + "id": "110831", + "name": "Zbarazh", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.66357000", + "longitude": "25.77616000" + }, + { + "id": "110832", + "name": "Zboriv", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.66484000", + "longitude": "25.14097000" + }, + { + "id": "110863", + "name": "Zolotyy Potik", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "48.90950000", + "longitude": "25.33926000" + }, + { + "id": "110873", + "name": "Бережани", + "state_id": 4674, + "state_code": "61", + "country_id": 230, + "country_code": "UA", + "latitude": "49.45000000", + "longitude": "24.93333000" + }, + { + "id": "109349", + "name": "Bar", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.07717000", + "longitude": "27.68256000" + }, + { + "id": "109351", + "name": "Barskiy Rayon", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.06667000", + "longitude": "27.68333000" + }, + { + "id": "109387", + "name": "Bershad", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36782000", + "longitude": "29.51726000" + }, + { + "id": "109443", + "name": "Brailiv", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.10986000", + "longitude": "28.17459000" + }, + { + "id": "109445", + "name": "Bratslav", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.82257000", + "longitude": "28.94070000" + }, + { + "id": "109475", + "name": "Chechelnyk", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.21509000", + "longitude": "29.36728000" + }, + { + "id": "109484", + "name": "Chernivets’kyy Rayon", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.51106000", + "longitude": "28.14191000" + }, + { + "id": "109485", + "name": "Chernivtsi", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.54225000", + "longitude": "28.11473000" + }, + { + "id": "109530", + "name": "Dashiv", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.00449000", + "longitude": "29.42559000" + }, + { + "id": "109624", + "name": "Haisyn", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.81143000", + "longitude": "29.38977000" + }, + { + "id": "109667", + "name": "Illintsi", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.10479000", + "longitude": "29.21773000" + }, + { + "id": "109704", + "name": "Kalynivka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.45389000", + "longitude": "28.52608000" + }, + { + "id": "109732", + "name": "Khmilnyk", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.55979000", + "longitude": "27.95754000" + }, + { + "id": "109759", + "name": "Klembivka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.39037000", + "longitude": "28.41092000" + }, + { + "id": "109792", + "name": "Kopayhorod", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.85917000", + "longitude": "27.79690000" + }, + { + "id": "109827", + "name": "Kozyatyn", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.71431000", + "longitude": "28.83385000" + }, + { + "id": "109879", + "name": "Kryzhopil’", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.38289000", + "longitude": "28.86622000" + }, + { + "id": "109902", + "name": "Ladyzhyn", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.68496000", + "longitude": "29.23679000" + }, + { + "id": "109921", + "name": "Lityn", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.32509000", + "longitude": "28.08094000" + }, + { + "id": "109922", + "name": "Lityns’kyy Rayon", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.37138000", + "longitude": "28.07033000" + }, + { + "id": "109957", + "name": "Lypovets’kyy Rayon", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.28006000", + "longitude": "28.93205000" + }, + { + "id": "110045", + "name": "Mohyliv-Podilskyi", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.44598000", + "longitude": "27.79820000" + }, + { + "id": "110060", + "name": "Murafa", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.76763000", + "longitude": "28.21569000" + }, + { + "id": "110063", + "name": "Murovani Kurylivtsi", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.72348000", + "longitude": "27.51892000" + }, + { + "id": "110091", + "name": "Nemyriv", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.97076000", + "longitude": "28.83779000" + }, + { + "id": "110108", + "name": "Nova Pryluka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.37488000", + "longitude": "28.69955000" + }, + { + "id": "110171", + "name": "Obodivka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.40514000", + "longitude": "29.24775000" + }, + { + "id": "110199", + "name": "Orativ", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.18889000", + "longitude": "29.52697000" + }, + { + "id": "110230", + "name": "Pavlivka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.44143000", + "longitude": "28.45956000" + }, + { + "id": "110288", + "name": "Pohrebyshche", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.48639000", + "longitude": "29.26361000" + }, + { + "id": "110289", + "name": "Pohrebyshchens’kyy Rayon", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.48126000", + "longitude": "29.25953000" + }, + { + "id": "110419", + "name": "Serebriya", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.45593000", + "longitude": "27.71923000" + }, + { + "id": "110430", + "name": "Sharhorod", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.75587000", + "longitude": "28.07507000" + }, + { + "id": "110496", + "name": "Sobolivka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.33604000", + "longitude": "28.65096000" + }, + { + "id": "110566", + "name": "Sutysky", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.04245000", + "longitude": "28.41733000" + }, + { + "id": "110600", + "name": "Teplyk", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.66566000", + "longitude": "29.74504000" + }, + { + "id": "110614", + "name": "Tomashpil’", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.54256000", + "longitude": "28.51684000" + }, + { + "id": "110617", + "name": "Torkanivka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.32462000", + "longitude": "29.14746000" + }, + { + "id": "110633", + "name": "Tsybulevka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.38719000", + "longitude": "29.10288000" + }, + { + "id": "110636", + "name": "Tulchyn", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.67448000", + "longitude": "28.84641000" + }, + { + "id": "110637", + "name": "Turbiv", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.34788000", + "longitude": "28.72117000" + }, + { + "id": "110647", + "name": "Tyvriv", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.01404000", + "longitude": "28.50846000" + }, + { + "id": "110654", + "name": "Ulaniv", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.69512000", + "longitude": "28.13298000" + }, + { + "id": "110671", + "name": "Vapnyarka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.53479000", + "longitude": "28.74358000" + }, + { + "id": "110698", + "name": "Vendychany", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.61176000", + "longitude": "27.79324000" + }, + { + "id": "110720", + "name": "Vinnitskiy Rayon", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.23531000", + "longitude": "28.47588000" + }, + { + "id": "110722", + "name": "Vinnytsia", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.23278000", + "longitude": "28.48097000" + }, + { + "id": "110727", + "name": "Viytivka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.42603000", + "longitude": "29.54291000" + }, + { + "id": "110743", + "name": "Voronovytsya", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.10954000", + "longitude": "28.68078000" + }, + { + "id": "110780", + "name": "Yampil’", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "48.24240000", + "longitude": "28.28195000" + }, + { + "id": "110844", + "name": "Zhmerynka", + "state_id": 4669, + "state_code": "05", + "country_id": 230, + "country_code": "UA", + "latitude": "49.03705000", + "longitude": "28.11201000" + }, + { + "id": "109377", + "name": "Berestechko", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.36047000", + "longitude": "25.11071000" + }, + { + "id": "109409", + "name": "Blahodatne", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.66365000", + "longitude": "24.24918000" + }, + { + "id": "109656", + "name": "Hołoby", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.08651000", + "longitude": "25.00767000" + }, + { + "id": "109653", + "name": "Horokhiv", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.50186000", + "longitude": "24.76149000" + }, + { + "id": "109712", + "name": "Kamin-Kashyrskyi", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.62412000", + "longitude": "24.95864000" + }, + { + "id": "109756", + "name": "Kivertsi", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.83425000", + "longitude": "25.45821000" + }, + { + "id": "109820", + "name": "Kovel", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.21526000", + "longitude": "24.70867000" + }, + { + "id": "109821", + "name": "Kovel’s’ka Mis’krada", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.21198000", + "longitude": "24.70163000" + }, + { + "id": "109924", + "name": "Liuboml", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.22601000", + "longitude": "24.03727000" + }, + { + "id": "109928", + "name": "Lokachi", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.73700000", + "longitude": "24.64944000" + }, + { + "id": "109943", + "name": "Lukiv", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.05210000", + "longitude": "25.40059000" + }, + { + "id": "109944", + "name": "Lutsk", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.75932000", + "longitude": "25.34244000" + }, + { + "id": "109964", + "name": "Lyubeshivs’kyy Rayon", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.79639000", + "longitude": "25.33133000" + }, + { + "id": "109965", + "name": "Lyuboml’s’kyy Rayon", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.25062000", + "longitude": "24.01161000" + }, + { + "id": "109992", + "name": "Manevychi", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.29405000", + "longitude": "25.53436000" + }, + { + "id": "109993", + "name": "Manevyts’kyy Rayon", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.24513000", + "longitude": "25.60945000" + }, + { + "id": "110152", + "name": "Novovolyns’k", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.72576000", + "longitude": "24.16265000" + }, + { + "id": "110162", + "name": "Nuyno", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.54628000", + "longitude": "24.91018000" + }, + { + "id": "110195", + "name": "Olyka", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.71855000", + "longitude": "25.81251000" + }, + { + "id": "110273", + "name": "Pishcha", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.60928000", + "longitude": "23.82079000" + }, + { + "id": "110342", + "name": "Rakiv Lis", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.62174000", + "longitude": "24.92427000" + }, + { + "id": "110345", + "name": "Ratne", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.66830000", + "longitude": "24.53030000" + }, + { + "id": "110346", + "name": "Ratnivs’kyy Rayon", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.71712000", + "longitude": "24.51959000" + }, + { + "id": "110381", + "name": "Rozhyshche", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.91542000", + "longitude": "25.26906000" + }, + { + "id": "110431", + "name": "Shats’k", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.50208000", + "longitude": "23.93806000" + }, + { + "id": "110432", + "name": "Shats’kyy Rayon", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.52237000", + "longitude": "23.86522000" + }, + { + "id": "110528", + "name": "Stara Vyzhivka", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.43762000", + "longitude": "24.43997000" + }, + { + "id": "110578", + "name": "Svityaz’", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "51.48211000", + "longitude": "23.85904000" + }, + { + "id": "110734", + "name": "Volodymyr-Volynskyi", + "state_id": 4690, + "state_code": "07", + "country_id": 230, + "country_code": "UA", + "latitude": "50.85253000", + "longitude": "24.32364000" + }, + { + "id": "109357", + "name": "Batiovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36166000", + "longitude": "22.39970000" + }, + { + "id": "109373", + "name": "Berehivs’ka Mis’krada", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.21255000", + "longitude": "22.65536000" + }, + { + "id": "109375", + "name": "Berehove", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.20555000", + "longitude": "22.64418000" + }, + { + "id": "109376", + "name": "Berehove Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.16667000", + "longitude": "22.66667000" + }, + { + "id": "109383", + "name": "Bereznyky", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.51407000", + "longitude": "23.21982000" + }, + { + "id": "109385", + "name": "Berezovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.30943000", + "longitude": "23.47400000" + }, + { + "id": "109398", + "name": "Bilky", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.31503000", + "longitude": "23.13248000" + }, + { + "id": "109414", + "name": "Bobovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.07166000", + "longitude": "22.89585000" + }, + { + "id": "109418", + "name": "Bohdan", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.04122000", + "longitude": "24.35222000" + }, + { + "id": "109464", + "name": "Bushtyno", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.05121000", + "longitude": "23.48579000" + }, + { + "id": "109508", + "name": "Chop", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.43198000", + "longitude": "22.20555000" + }, + { + "id": "109525", + "name": "Chynadiyovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.48179000", + "longitude": "22.82170000" + }, + { + "id": "109573", + "name": "Dovhe", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36527000", + "longitude": "23.27904000" + }, + { + "id": "109576", + "name": "Drahovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.23573000", + "longitude": "23.54914000" + }, + { + "id": "109585", + "name": "Dubove", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.17205000", + "longitude": "23.88954000" + }, + { + "id": "109640", + "name": "Horinchovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.27076000", + "longitude": "23.43475000" + }, + { + "id": "109674", + "name": "Irshava", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.31667000", + "longitude": "23.03846000" + }, + { + "id": "109675", + "name": "Irshava Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.33333000", + "longitude": "23.08333000" + }, + { + "id": "109686", + "name": "Iza", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.21525000", + "longitude": "23.32867000" + }, + { + "id": "109706", + "name": "Kalyny", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.14078000", + "longitude": "23.87380000" + }, + { + "id": "109711", + "name": "Kamianytsia", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.69343000", + "longitude": "22.39570000" + }, + { + "id": "109742", + "name": "Khust", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.17930000", + "longitude": "23.29909000" + }, + { + "id": "109743", + "name": "Khust Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.25000000", + "longitude": "23.41667000" + }, + { + "id": "109744", + "name": "Khusts’ka Mis’krada", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.19058000", + "longitude": "23.30322000" + }, + { + "id": "109772", + "name": "Kolochava", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.42851000", + "longitude": "23.69590000" + }, + { + "id": "109791", + "name": "Kopashnovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.21970000", + "longitude": "23.48457000" + }, + { + "id": "109799", + "name": "Korolevo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.15247000", + "longitude": "23.13659000" + }, + { + "id": "109810", + "name": "Koson’", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.25505000", + "longitude": "22.45597000" + }, + { + "id": "109873", + "name": "Kryva", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.17234000", + "longitude": "23.23647000" + }, + { + "id": "109891", + "name": "Kushnytsya", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.43988000", + "longitude": "23.25816000" + }, + { + "id": "109896", + "name": "Kvasy", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.14973000", + "longitude": "24.27995000" + }, + { + "id": "109905", + "name": "Lazeshchyna", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.26852000", + "longitude": "24.42010000" + }, + { + "id": "109906", + "name": "Lazi", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.06667000", + "longitude": "24.23333000" + }, + { + "id": "109930", + "name": "Lopukhiv", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.36527000", + "longitude": "23.96382000" + }, + { + "id": "109954", + "name": "Lypcha", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.26107000", + "longitude": "23.38336000" + }, + { + "id": "109961", + "name": "Lysychovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.49677000", + "longitude": "23.28992000" + }, + { + "id": "110039", + "name": "Mizhhirya", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.52458000", + "longitude": "23.50563000" + }, + { + "id": "110040", + "name": "Mizhhirya Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58333000", + "longitude": "23.50000000" + }, + { + "id": "110058", + "name": "Mukacheve", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.43919000", + "longitude": "22.71779000" + }, + { + "id": "110059", + "name": "Mukachevo Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.41667000", + "longitude": "22.66667000" + }, + { + "id": "110065", + "name": "Muzhiyevo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.17959000", + "longitude": "22.69943000" + }, + { + "id": "110074", + "name": "Mynay", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58880000", + "longitude": "22.27502000" + }, + { + "id": "110090", + "name": "Nelipyno", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.56101000", + "longitude": "23.03146000" + }, + { + "id": "110092", + "name": "Neresnytsya", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.11814000", + "longitude": "23.76588000" + }, + { + "id": "110094", + "name": "Nevyts’ke", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.67472000", + "longitude": "22.38813000" + }, + { + "id": "110111", + "name": "Nove Davydkovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.44133000", + "longitude": "22.62164000" + }, + { + "id": "110168", + "name": "Nyzhnye Selyshche", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.19911000", + "longitude": "23.44757000" + }, + { + "id": "110192", + "name": "Oleshnyk", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.16406000", + "longitude": "22.96167000" + }, + { + "id": "110197", + "name": "Onokivtsi", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.65763000", + "longitude": "22.34183000" + }, + { + "id": "110236", + "name": "Perechyn", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.73616000", + "longitude": "22.48200000" + }, + { + "id": "110237", + "name": "Perechyn Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.75000000", + "longitude": "22.66667000" + }, + { + "id": "110271", + "name": "Pidvynohradiv", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.13947000", + "longitude": "22.97194000" + }, + { + "id": "110304", + "name": "Poroshkovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.66832000", + "longitude": "22.75328000" + }, + { + "id": "110334", + "name": "Pylypets", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.65899000", + "longitude": "23.28346000" + }, + { + "id": "110340", + "name": "Rakhiv", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.05260000", + "longitude": "24.20089000" + }, + { + "id": "110341", + "name": "Rakhiv Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.08333000", + "longitude": "24.33333000" + }, + { + "id": "110343", + "name": "Rakoshyno", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.46713000", + "longitude": "22.59687000" + }, + { + "id": "110362", + "name": "Rokosovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.21018000", + "longitude": "23.17624000" + }, + { + "id": "110422", + "name": "Serednye", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.54043000", + "longitude": "22.50696000" + }, + { + "id": "110423", + "name": "Serednye Vodyane", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "47.98159000", + "longitude": "23.91041000" + }, + { + "id": "110513", + "name": "Solotvyno", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "47.94604000", + "longitude": "23.87035000" + }, + { + "id": "110554", + "name": "Storozhnytsya", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.60403000", + "longitude": "22.23269000" + }, + { + "id": "110555", + "name": "Strabychovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.39247000", + "longitude": "22.54308000" + }, + { + "id": "110569", + "name": "Svaliava Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.55000000", + "longitude": "23.00000000" + }, + { + "id": "110570", + "name": "Svalyava", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.54853000", + "longitude": "22.99578000" + }, + { + "id": "110584", + "name": "Synevyr", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.48745000", + "longitude": "23.62575000" + }, + { + "id": "110585", + "name": "Synevyrska Poliana", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58484000", + "longitude": "23.68910000" + }, + { + "id": "110607", + "name": "Tiachiv Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.08333000", + "longitude": "23.58333000" + }, + { + "id": "110640", + "name": "Tyachiv", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.01179000", + "longitude": "23.57061000" + }, + { + "id": "110667", + "name": "Uzhgorod", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.61667000", + "longitude": "22.30000000" + }, + { + "id": "110668", + "name": "Uzhhorod Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.58333000", + "longitude": "22.33333000" + }, + { + "id": "110674", + "name": "Vary", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.12207000", + "longitude": "22.71281000" + }, + { + "id": "110689", + "name": "Velyki Berehy", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.23187000", + "longitude": "22.74591000" + }, + { + "id": "110694", + "name": "Velykyi Bereznyi", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.88831000", + "longitude": "22.46052000" + }, + { + "id": "110695", + "name": "Velykyi Bereznyi Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.91667000", + "longitude": "22.58333000" + }, + { + "id": "110737", + "name": "Volovets", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.71090000", + "longitude": "23.18510000" + }, + { + "id": "110738", + "name": "Volovets Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.75000000", + "longitude": "23.08333000" + }, + { + "id": "110756", + "name": "Vylok", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.10915000", + "longitude": "22.83865000" + }, + { + "id": "110757", + "name": "Vynohradiv", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.14135000", + "longitude": "23.02666000" + }, + { + "id": "110758", + "name": "Vynohradiv Raion", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.16667000", + "longitude": "23.00000000" + }, + { + "id": "110764", + "name": "Vyshkovo", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.04911000", + "longitude": "23.42113000" + }, + { + "id": "110788", + "name": "Yasinya", + "state_id": 4670, + "state_code": "21", + "country_id": 230, + "country_code": "UA", + "latitude": "48.27937000", + "longitude": "24.36042000" + }, + { + "id": "109345", + "name": "Balky", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.38336000", + "longitude": "34.94396000" + }, + { + "id": "109367", + "name": "Berdiansk Raion", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.83333000", + "longitude": "36.75000000" + }, + { + "id": "109369", + "name": "Berdyans’ka Mis’krada", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.81565000", + "longitude": "36.77049000" + }, + { + "id": "109368", + "name": "Berdyansk", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.76644000", + "longitude": "36.79872000" + }, + { + "id": "109471", + "name": "Chapayevka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.47114000", + "longitude": "36.34507000" + }, + { + "id": "109482", + "name": "Chernihivka Raion", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.16667000", + "longitude": "36.25000000" + }, + { + "id": "109551", + "name": "Dniprorudne", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.38169000", + "longitude": "34.97652000" + }, + { + "id": "109552", + "name": "Dniprovka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.42945000", + "longitude": "34.61805000" + }, + { + "id": "109595", + "name": "Energodar", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.49865000", + "longitude": "34.65740000" + }, + { + "id": "109660", + "name": "Hulyaypole", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.66389000", + "longitude": "36.25633000" + }, + { + "id": "109748", + "name": "Kirove", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.65311000", + "longitude": "35.69512000" + }, + { + "id": "109785", + "name": "Komysh-Zorya", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.32755000", + "longitude": "36.69298000" + }, + { + "id": "109787", + "name": "Komyshuvakha", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.71598000", + "longitude": "35.52981000" + }, + { + "id": "109816", + "name": "Kostyantynivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.81673000", + "longitude": "35.42287000" + }, + { + "id": "109892", + "name": "Kushuhum", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.71278000", + "longitude": "35.20917000" + }, + { + "id": "109895", + "name": "Kuybysheve", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.35800000", + "longitude": "36.64908000" + }, + { + "id": "109899", + "name": "Kyrylivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.37592000", + "longitude": "35.36753000" + }, + { + "id": "109978", + "name": "Mala Bilozerka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.24737000", + "longitude": "34.93457000" + }, + { + "id": "109980", + "name": "Mala Tokmachka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.53563000", + "longitude": "35.89293000" + }, + { + "id": "109984", + "name": "Malokaterynivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.65550000", + "longitude": "35.25649000" + }, + { + "id": "110008", + "name": "Matviyivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.07473000", + "longitude": "35.14444000" + }, + { + "id": "110018", + "name": "Melitopol", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.84891000", + "longitude": "35.36533000" + }, + { + "id": "110019", + "name": "Melitopol’s’kyy Rayon", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.90326000", + "longitude": "35.34616000" + }, + { + "id": "110068", + "name": "Mykhaylivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.27235000", + "longitude": "35.22235000" + }, + { + "id": "110069", + "name": "Mykhaylivs’kyy Rayon", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.22111000", + "longitude": "35.26580000" + }, + { + "id": "110121", + "name": "Novobohdanivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.08524000", + "longitude": "35.32945000" + }, + { + "id": "110133", + "name": "Novomykolayivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.97810000", + "longitude": "35.91020000" + }, + { + "id": "110151", + "name": "Novovasylivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.83021000", + "longitude": "35.75136000" + }, + { + "id": "110203", + "name": "Orikhiv", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.56731000", + "longitude": "35.78575000" + }, + { + "id": "110211", + "name": "Osypenko", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.91360000", + "longitude": "36.82530000" + }, + { + "id": "110293", + "name": "Polohy", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.48444000", + "longitude": "36.25361000" + }, + { + "id": "110309", + "name": "Preobrazhenka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.57194000", + "longitude": "35.81667000" + }, + { + "id": "110318", + "name": "Pryazovske Raion", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.66667000", + "longitude": "35.66667000" + }, + { + "id": "110322", + "name": "Prymors’k", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.73479000", + "longitude": "36.34425000" + }, + { + "id": "110321", + "name": "Prymorsk Raion", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.83333000", + "longitude": "36.25000000" + }, + { + "id": "110323", + "name": "Pryshyb", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.25927000", + "longitude": "35.31953000" + }, + { + "id": "110382", + "name": "Rozivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.38484000", + "longitude": "37.06792000" + }, + { + "id": "110383", + "name": "Rozivs’kyy Rayon", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.46956000", + "longitude": "36.97192000" + }, + { + "id": "110603", + "name": "Ternuvate", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.83049000", + "longitude": "36.12761000" + }, + { + "id": "110605", + "name": "Terpinnya", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.96942000", + "longitude": "35.42100000" + }, + { + "id": "110611", + "name": "Tokmak", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.25522000", + "longitude": "35.71238000" + }, + { + "id": "110612", + "name": "Tokmak Raion", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.25000000", + "longitude": "35.75000000" + }, + { + "id": "110641", + "name": "Tymoshivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.18410000", + "longitude": "35.11625000" + }, + { + "id": "110677", + "name": "Vasylivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.43694000", + "longitude": "35.27417000" + }, + { + "id": "110683", + "name": "Velyka Bilozerka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.27756000", + "longitude": "34.70616000" + }, + { + "id": "110692", + "name": "Velykobilozers’kyy Rayon", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.24341000", + "longitude": "34.66137000" + }, + { + "id": "110713", + "name": "Vesele", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.01479000", + "longitude": "34.91504000" + }, + { + "id": "110718", + "name": "Vilniansk Raion", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "48.00000000", + "longitude": "35.41667000" + }, + { + "id": "110730", + "name": "Vodyane", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.48746000", + "longitude": "34.49235000" + }, + { + "id": "110750", + "name": "Voznesenka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.87165000", + "longitude": "35.46458000" + }, + { + "id": "110775", + "name": "Yakymivka", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.69972000", + "longitude": "35.15916000" + }, + { + "id": "110776", + "name": "Yakymivka Raion", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "46.58333000", + "longitude": "35.00000000" + }, + { + "id": "110816", + "name": "Zaliznychne", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.65238000", + "longitude": "36.16524000" + }, + { + "id": "110821", + "name": "Zaporiz’ka Mis’krada", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.84634000", + "longitude": "35.16824000" + }, + { + "id": "110820", + "name": "Zaporizhia", + "state_id": 4687, + "state_code": "23", + "country_id": 230, + "country_code": "UA", + "latitude": "47.82289000", + "longitude": "35.19031000" + }, + { + "id": "109320", + "name": "Andrushivka", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.02288000", + "longitude": "29.02023000" + }, + { + "id": "109321", + "name": "Andrushivs’kyy Rayon", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.01709000", + "longitude": "29.03215000" + }, + { + "id": "109350", + "name": "Baranivka", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.29691000", + "longitude": "27.66220000" + }, + { + "id": "109370", + "name": "Berdychiv", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.89928000", + "longitude": "28.60235000" + }, + { + "id": "109371", + "name": "Berdychivskyy Rayon", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.91667000", + "longitude": "28.58333000" + }, + { + "id": "109392", + "name": "Bila Krynytsya", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.63982000", + "longitude": "29.47041000" + }, + { + "id": "109451", + "name": "Brusyliv", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.28449000", + "longitude": "29.52626000" + }, + { + "id": "109452", + "name": "Brusylivs’kyy Rayon", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.25638000", + "longitude": "29.48742000" + }, + { + "id": "109465", + "name": "Bykivka", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.29285000", + "longitude": "27.98314000" + }, + { + "id": "109479", + "name": "Cherniakhiv", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.45652000", + "longitude": "28.67018000" + }, + { + "id": "109495", + "name": "Chernyakhivskyy Rayon", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.41667000", + "longitude": "28.66667000" + }, + { + "id": "109499", + "name": "Chervone", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.94975000", + "longitude": "28.86874000" + }, + { + "id": "109509", + "name": "Chopovychi", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.83325000", + "longitude": "28.95334000" + }, + { + "id": "109514", + "name": "Chornorudka", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.84640000", + "longitude": "29.06062000" + }, + { + "id": "109520", + "name": "Chudniv", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.05204000", + "longitude": "28.11745000" + }, + { + "id": "109521", + "name": "Chudniv Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.00000000", + "longitude": "28.16667000" + }, + { + "id": "109536", + "name": "Denyshi", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.21415000", + "longitude": "28.40395000" + }, + { + "id": "109572", + "name": "Dovbysh", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.37332000", + "longitude": "27.98742000" + }, + { + "id": "109638", + "name": "Holovyne", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.47118000", + "longitude": "28.82530000" + }, + { + "id": "109647", + "name": "Horodnytsya", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.80697000", + "longitude": "27.31676000" + }, + { + "id": "109649", + "name": "Horodok", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.59483000", + "longitude": "29.46070000" + }, + { + "id": "109658", + "name": "Hryshkivtsi", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.93529000", + "longitude": "28.60383000" + }, + { + "id": "109737", + "name": "Khoroshiv Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.66667000", + "longitude": "28.50000000" + }, + { + "id": "109798", + "name": "Kornyn", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.09530000", + "longitude": "29.53581000" + }, + { + "id": "109801", + "name": "Korosten’", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.95937000", + "longitude": "28.63855000" + }, + { + "id": "109802", + "name": "Korostyshiv", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.31723000", + "longitude": "29.05630000" + }, + { + "id": "109803", + "name": "Korostyshiv Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.33333000", + "longitude": "29.08333000" + }, + { + "id": "109923", + "name": "Liubar", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.92045000", + "longitude": "27.75918000" + }, + { + "id": "109941", + "name": "Luhyny", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "51.08203000", + "longitude": "28.40057000" + }, + { + "id": "109942", + "name": "Luhyny Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "51.08333000", + "longitude": "28.33333000" + }, + { + "id": "109988", + "name": "Malyn", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.77233000", + "longitude": "29.23833000" + }, + { + "id": "109989", + "name": "Malyn Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.83084000", + "longitude": "29.19926000" + }, + { + "id": "110081", + "name": "Narodychi", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "51.20286000", + "longitude": "29.08228000" + }, + { + "id": "110082", + "name": "Narodychi Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "51.25000000", + "longitude": "29.08333000" + }, + { + "id": "110103", + "name": "Nova Borova", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.69296000", + "longitude": "28.63446000" + }, + { + "id": "110115", + "name": "Novi Bilokorovychi", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "51.11548000", + "longitude": "28.05463000" + }, + { + "id": "110128", + "name": "Novohrad-Volynskyi", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.59412000", + "longitude": "27.61650000" + }, + { + "id": "110194", + "name": "Olevs’k", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "51.22482000", + "longitude": "27.65228000" + }, + { + "id": "110214", + "name": "Ovruch", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "51.32460000", + "longitude": "28.80351000" + }, + { + "id": "110215", + "name": "Ovruch Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "51.33333000", + "longitude": "28.83333000" + }, + { + "id": "110217", + "name": "Ozerne", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.17816000", + "longitude": "28.73384000" + }, + { + "id": "110246", + "name": "Pershotravneve", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "51.39287000", + "longitude": "28.86837000" + }, + { + "id": "110296", + "name": "Polyanka", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.25836000", + "longitude": "27.68809000" + }, + { + "id": "110301", + "name": "Popilnia", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.95320000", + "longitude": "29.45265000" + }, + { + "id": "110302", + "name": "Popilnia Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.91667000", + "longitude": "29.50000000" + }, + { + "id": "110328", + "name": "Pulyny Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.50000000", + "longitude": "28.25000000" + }, + { + "id": "110337", + "name": "Radomyshl", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.49613000", + "longitude": "29.22911000" + }, + { + "id": "110338", + "name": "Radomyshl Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.50000000", + "longitude": "29.25000000" + }, + { + "id": "110366", + "name": "Romaniv", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.14802000", + "longitude": "27.93124000" + }, + { + "id": "110394", + "name": "Ruzhyn", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.72280000", + "longitude": "29.20455000" + }, + { + "id": "110544", + "name": "Stavyshche", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.40051000", + "longitude": "29.52796000" + }, + { + "id": "110615", + "name": "Topory", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "49.65186000", + "longitude": "29.31741000" + }, + { + "id": "110795", + "name": "Yemil’chyne", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.87349000", + "longitude": "27.80604000" + }, + { + "id": "110853", + "name": "Zhytomyr", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.26487000", + "longitude": "28.67669000" + }, + { + "id": "110854", + "name": "Zhytomyr Raion", + "state_id": 4668, + "state_code": "18", + "country_id": 230, + "country_code": "UA", + "latitude": "50.25000000", + "longitude": "28.58333000" + }, + { + "id": "11", + "name": "Abu Dhabi Island and Internal Islands City", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.45110000", + "longitude": "54.39690000" + }, + { + "id": "12", + "name": "Abu Dhabi Municipality", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.41361000", + "longitude": "54.43295000" + }, + { + "id": "16", + "name": "Al Ain City", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.19167000", + "longitude": "55.76056000" + }, + { + "id": "17", + "name": "Al Ain Municipality", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.15223000", + "longitude": "55.82040000" + }, + { + "id": "19", + "name": "Al Dhafra", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "23.65745000", + "longitude": "53.72225000" + }, + { + "id": "24", + "name": "Al Shamkhah City", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.39268000", + "longitude": "54.70779000" + }, + { + "id": "25", + "name": "Ar Ruways", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.11028000", + "longitude": "52.73056000" + }, + { + "id": "26", + "name": "Bani Yas City", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.30978000", + "longitude": "54.62944000" + }, + { + "id": "34", + "name": "Khalifah A City", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.42588000", + "longitude": "54.60500000" + }, + { + "id": "41", + "name": "Musaffah", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.35893000", + "longitude": "54.48267000" + }, + { + "id": "42", + "name": "Muzayri‘", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "23.14355000", + "longitude": "53.78810000" + }, + { + "id": "49", + "name": "Zayed City", + "state_id": 3396, + "state_code": "AZ", + "country_id": 231, + "country_code": "AE", + "latitude": "23.65416000", + "longitude": "53.70522000" + }, + { + "id": "14", + "name": "Ajman", + "state_id": 3395, + "state_code": "AJ", + "country_id": 231, + "country_code": "AE", + "latitude": "25.40328000", + "longitude": "55.52341000" + }, + { + "id": "15", + "name": "Ajman City", + "state_id": 3395, + "state_code": "AJ", + "country_id": 231, + "country_code": "AE", + "latitude": "25.40177000", + "longitude": "55.47878000" + }, + { + "id": "37", + "name": "Manama", + "state_id": 3395, + "state_code": "AJ", + "country_id": 231, + "country_code": "AE", + "latitude": "25.32568000", + "longitude": "56.00259000" + }, + { + "id": "38", + "name": "Masfout", + "state_id": 3395, + "state_code": "AJ", + "country_id": 231, + "country_code": "AE", + "latitude": "24.83982000", + "longitude": "56.05158000" + }, + { + "id": "32", + "name": "Dubai", + "state_id": 3391, + "state_code": "DU", + "country_id": 231, + "country_code": "AE", + "latitude": "25.06570000", + "longitude": "55.17128000" + }, + { + "id": "20", + "name": "Al Fujairah City", + "state_id": 3393, + "state_code": "FU", + "country_id": 231, + "country_code": "AE", + "latitude": "25.11641000", + "longitude": "56.34141000" + }, + { + "id": "21", + "name": "Al Fujairah Municipality", + "state_id": 3393, + "state_code": "FU", + "country_id": 231, + "country_code": "AE", + "latitude": "25.13557000", + "longitude": "56.33279000" + }, + { + "id": "28", + "name": "Dibba Al Fujairah Municipality", + "state_id": 3393, + "state_code": "FU", + "country_id": 231, + "country_code": "AE", + "latitude": "25.58580000", + "longitude": "56.24792000" + }, + { + "id": "30", + "name": "Dibba Al-Fujairah", + "state_id": 3393, + "state_code": "FU", + "country_id": 231, + "country_code": "AE", + "latitude": "25.59246000", + "longitude": "56.26176000" + }, + { + "id": "31", + "name": "Dibba Al-Hisn", + "state_id": 3393, + "state_code": "FU", + "country_id": 231, + "country_code": "AE", + "latitude": "25.61955000", + "longitude": "56.27291000" + }, + { + "id": "45", + "name": "Reef Al Fujairah City", + "state_id": 3393, + "state_code": "FU", + "country_id": 231, + "country_code": "AE", + "latitude": "25.14479000", + "longitude": "56.24764000" + }, + { + "id": "43", + "name": "Ras Al Khaimah", + "state_id": 3394, + "state_code": "RK", + "country_id": 231, + "country_code": "AE", + "latitude": "25.46116000", + "longitude": "56.04058000" + }, + { + "id": "44", + "name": "Ras Al Khaimah City", + "state_id": 3394, + "state_code": "RK", + "country_id": 231, + "country_code": "AE", + "latitude": "25.78953000", + "longitude": "55.94320000" + }, + { + "id": "13", + "name": "Adh Dhayd", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.28812000", + "longitude": "55.88157000" + }, + { + "id": "18", + "name": "Al Batayih", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.22317000", + "longitude": "55.74272000" + }, + { + "id": "22", + "name": "Al Hamriyah", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.46121000", + "longitude": "55.54813000" + }, + { + "id": "23", + "name": "Al Madam", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "24.95536000", + "longitude": "55.76820000" + }, + { + "id": "27", + "name": "Dhaid", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.26951000", + "longitude": "55.92024000" + }, + { + "id": "29", + "name": "Dibba Al Hesn", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.61593000", + "longitude": "56.26899000" + }, + { + "id": "33", + "name": "Kalba", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "24.99816000", + "longitude": "56.27207000" + }, + { + "id": "35", + "name": "Khawr Fakkān", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.33132000", + "longitude": "56.34199000" + }, + { + "id": "36", + "name": "Khor Fakkan", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.33966000", + "longitude": "56.30280000" + }, + { + "id": "39", + "name": "Milehah", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.10097000", + "longitude": "55.91282000" + }, + { + "id": "40", + "name": "Murbaḩ", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.27623000", + "longitude": "56.36256000" + }, + { + "id": "46", + "name": "Sharjah", + "state_id": 3390, + "state_code": "SH", + "country_id": 231, + "country_code": "AE", + "latitude": "25.33737000", + "longitude": "55.41206000" + }, + { + "id": "47", + "name": "Umm AL Quwain", + "state_id": 3392, + "state_code": "UQ", + "country_id": 231, + "country_code": "AE", + "latitude": "25.49326000", + "longitude": "55.73520000" + }, + { + "id": "48", + "name": "Umm Al Quwain City", + "state_id": 3392, + "state_code": "UQ", + "country_id": 231, + "country_code": "AE", + "latitude": "25.56473000", + "longitude": "55.55517000" + }, + { + "id": "48157", + "name": "Abbey Wood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48688000", + "longitude": "0.10747000" + }, + { + "id": "48158", + "name": "Abbots Bromley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.81705000", + "longitude": "-1.87694000" + }, + { + "id": "48159", + "name": "Abbots Langley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70573000", + "longitude": "-0.41757000" + }, + { + "id": "48160", + "name": "Abbotskerswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.50816000", + "longitude": "-3.61342000" + }, + { + "id": "48161", + "name": "Abbotts Ann", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.19016000", + "longitude": "-1.53234000" + }, + { + "id": "48174", + "name": "Aberford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82604000", + "longitude": "-1.34231000" + }, + { + "id": "48184", + "name": "Abingdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67109000", + "longitude": "-1.28278000" + }, + { + "id": "48186", + "name": "Abram", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50855000", + "longitude": "-2.59266000" + }, + { + "id": "48187", + "name": "Abridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64950000", + "longitude": "0.12033000" + }, + { + "id": "48188", + "name": "Accrington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.75379000", + "longitude": "-2.35863000" + }, + { + "id": "48189", + "name": "Acklington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.30000000", + "longitude": "-1.63333000" + }, + { + "id": "48190", + "name": "Acle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63681000", + "longitude": "1.54757000" + }, + { + "id": "48191", + "name": "Acocks Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45000000", + "longitude": "-1.81667000" + }, + { + "id": "48192", + "name": "Acomb", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.99229000", + "longitude": "-2.11229000" + }, + { + "id": "48193", + "name": "Acton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50901000", + "longitude": "-0.27620000" + }, + { + "id": "48194", + "name": "Adderbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.01690000", + "longitude": "-1.31192000" + }, + { + "id": "48196", + "name": "Addingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.94452000", + "longitude": "-1.88424000" + }, + { + "id": "48197", + "name": "Addlestone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37135000", + "longitude": "-0.49353000" + }, + { + "id": "48198", + "name": "Adlington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61323000", + "longitude": "-2.60676000" + }, + { + "id": "48199", + "name": "Adwick le Street", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57077000", + "longitude": "-1.18454000" + }, + { + "id": "48202", + "name": "Airmyn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72074000", + "longitude": "-0.89959000" + }, + { + "id": "48204", + "name": "Albrighton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63640000", + "longitude": "-2.27966000" + }, + { + "id": "48205", + "name": "Alcester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21667000", + "longitude": "-1.86667000" + }, + { + "id": "48206", + "name": "Alconbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.36900000", + "longitude": "-0.26009000" + }, + { + "id": "48207", + "name": "Aldbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48098000", + "longitude": "-1.61827000" + }, + { + "id": "48208", + "name": "Aldbrough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82893000", + "longitude": "-0.11467000" + }, + { + "id": "48209", + "name": "Aldeburgh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15259000", + "longitude": "1.60124000" + }, + { + "id": "48210", + "name": "Alderbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.04354000", + "longitude": "-1.73382000" + }, + { + "id": "48211", + "name": "Alderholt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91195000", + "longitude": "-1.83083000" + }, + { + "id": "48212", + "name": "Alderley Edge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.30393000", + "longitude": "-2.23773000" + }, + { + "id": "48213", + "name": "Aldershot", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.24827000", + "longitude": "-0.76389000" + }, + { + "id": "48214", + "name": "Aldford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.12762000", + "longitude": "-2.86812000" + }, + { + "id": "48215", + "name": "Aldridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60549000", + "longitude": "-1.91715000" + }, + { + "id": "48217", + "name": "Alford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25943000", + "longitude": "0.17625000" + }, + { + "id": "48219", + "name": "Alfreton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.09766000", + "longitude": "-1.38376000" + }, + { + "id": "48221", + "name": "Allhallows", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46866000", + "longitude": "0.63686000" + }, + { + "id": "48224", + "name": "Almondsbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55407000", + "longitude": "-2.57114000" + }, + { + "id": "48226", + "name": "Alnwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.41318000", + "longitude": "-1.70563000" + }, + { + "id": "48227", + "name": "Alresford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85389000", + "longitude": "1.00203000" + }, + { + "id": "48228", + "name": "Alrewas", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.73278000", + "longitude": "-1.74968000" + }, + { + "id": "48229", + "name": "Alsager", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.09617000", + "longitude": "-2.30649000" + }, + { + "id": "48230", + "name": "Alston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.80900000", + "longitude": "-2.43931000" + }, + { + "id": "48231", + "name": "Althorne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65722000", + "longitude": "0.76085000" + }, + { + "id": "48232", + "name": "Alton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.14931000", + "longitude": "-0.97469000" + }, + { + "id": "48233", + "name": "Altrincham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.38752000", + "longitude": "-2.34848000" + }, + { + "id": "48235", + "name": "Alvechurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.35173000", + "longitude": "-1.96531000" + }, + { + "id": "48236", + "name": "Alveley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45709000", + "longitude": "-2.35434000" + }, + { + "id": "48237", + "name": "Alveston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58806000", + "longitude": "-2.53139000" + }, + { + "id": "48239", + "name": "Amble", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.33333000", + "longitude": "-1.58333000" + }, + { + "id": "48240", + "name": "Ambleside", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.43261000", + "longitude": "-2.96167000" + }, + { + "id": "48241", + "name": "Ambrosden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87087000", + "longitude": "-1.12129000" + }, + { + "id": "48242", + "name": "Amersham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66667000", + "longitude": "-0.61667000" + }, + { + "id": "48243", + "name": "Amersham on the Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67468000", + "longitude": "-0.60742000" + }, + { + "id": "48244", + "name": "Amesbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.17509000", + "longitude": "-1.78064000" + }, + { + "id": "48247", + "name": "Ampthill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.02694000", + "longitude": "-0.49567000" + }, + { + "id": "48248", + "name": "Ancaster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98276000", + "longitude": "-0.53593000" + }, + { + "id": "48249", + "name": "Andover", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.21135000", + "longitude": "-1.49393000" + }, + { + "id": "48252", + "name": "Anna Valley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.19317000", + "longitude": "-1.50719000" + }, + { + "id": "48256", + "name": "Annfield Plain", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.85749000", + "longitude": "-1.73827000" + }, + { + "id": "48257", + "name": "Anstey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67368000", + "longitude": "-1.18841000" + }, + { + "id": "48261", + "name": "Appleby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.62198000", + "longitude": "-0.56612000" + }, + { + "id": "48262", + "name": "Appleby-in-Westmorland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.57704000", + "longitude": "-2.48978000" + }, + { + "id": "48263", + "name": "Appledore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.05000000", + "longitude": "-4.20000000" + }, + { + "id": "48264", + "name": "Appleton Thorn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.35045000", + "longitude": "-2.54488000" + }, + { + "id": "48265", + "name": "Appley Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57781000", + "longitude": "-2.72090000" + }, + { + "id": "48267", + "name": "Archway", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56733000", + "longitude": "-0.13415000" + }, + { + "id": "48270", + "name": "Ardingly", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.04865000", + "longitude": "-0.07716000" + }, + { + "id": "48275", + "name": "Arlesey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.00713000", + "longitude": "-0.26565000" + }, + { + "id": "48279", + "name": "Armitage", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.74193000", + "longitude": "-1.88266000" + }, + { + "id": "48280", + "name": "Armthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53518000", + "longitude": "-1.05341000" + }, + { + "id": "48281", + "name": "Arnold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00000000", + "longitude": "-1.13333000" + }, + { + "id": "48282", + "name": "Arnside", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.20179000", + "longitude": "-2.83374000" + }, + { + "id": "48283", + "name": "Arundel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85423000", + "longitude": "-0.55393000" + }, + { + "id": "48284", + "name": "Ascot", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41082000", + "longitude": "-0.67480000" + }, + { + "id": "48285", + "name": "Asfordby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76331000", + "longitude": "-0.95856000" + }, + { + "id": "48286", + "name": "Ash", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27883000", + "longitude": "1.27974000" + }, + { + "id": "48287", + "name": "Ashbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.01667000", + "longitude": "-1.73333000" + }, + { + "id": "48288", + "name": "Ashburton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.51559000", + "longitude": "-3.75572000" + }, + { + "id": "48289", + "name": "Ashby de la Zouch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.74632000", + "longitude": "-1.47320000" + }, + { + "id": "48290", + "name": "Ashford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.14648000", + "longitude": "0.87376000" + }, + { + "id": "48292", + "name": "Ashill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60435000", + "longitude": "0.78574000" + }, + { + "id": "48293", + "name": "Ashington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.17719000", + "longitude": "-1.56412000" + }, + { + "id": "48294", + "name": "Ashtead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30873000", + "longitude": "-0.29972000" + }, + { + "id": "48296", + "name": "Ashton in Makerfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48333000", + "longitude": "-2.65000000" + }, + { + "id": "48295", + "name": "Ashton Keynes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64521000", + "longitude": "-1.93232000" + }, + { + "id": "48297", + "name": "Ashton-under-Lyne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48876000", + "longitude": "-2.09890000" + }, + { + "id": "48298", + "name": "Ashurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.93236000", + "longitude": "-0.32375000" + }, + { + "id": "48299", + "name": "Ashwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03866000", + "longitude": "-0.15398000" + }, + { + "id": "48300", + "name": "Askam in Furness", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.18718000", + "longitude": "-3.20467000" + }, + { + "id": "48301", + "name": "Askern", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61639000", + "longitude": "-1.15237000" + }, + { + "id": "48302", + "name": "Aslockton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.95299000", + "longitude": "-0.89700000" + }, + { + "id": "48303", + "name": "Aspatria", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.76574000", + "longitude": "-3.32783000" + }, + { + "id": "48304", + "name": "Aston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.50000000", + "longitude": "-1.88333000" + }, + { + "id": "48305", + "name": "Aston Clinton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80020000", + "longitude": "-0.72540000" + }, + { + "id": "48306", + "name": "Aston-on-Trent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.86172000", + "longitude": "-1.38642000" + }, + { + "id": "48307", + "name": "Astwood Bank", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25993000", + "longitude": "-1.93754000" + }, + { + "id": "48308", + "name": "Atherstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57536000", + "longitude": "-1.54693000" + }, + { + "id": "48309", + "name": "Atherton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.52371000", + "longitude": "-2.49354000" + }, + { + "id": "48310", + "name": "Attleborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.51779000", + "longitude": "1.01572000" + }, + { + "id": "48311", + "name": "Atworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39234000", + "longitude": "-2.19297000" + }, + { + "id": "48315", + "name": "Auckley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50386000", + "longitude": "-1.02174000" + }, + { + "id": "48316", + "name": "Audlem", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98956000", + "longitude": "-2.50706000" + }, + { + "id": "48317", + "name": "Audley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.05000000", + "longitude": "-2.30000000" + }, + { + "id": "48318", + "name": "Aveley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.49987000", + "longitude": "0.25174000" + }, + { + "id": "48319", + "name": "Avening", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68010000", + "longitude": "-2.16903000" + }, + { + "id": "48321", + "name": "Awsworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98912000", + "longitude": "-1.28354000" + }, + { + "id": "48322", + "name": "Axbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.28466000", + "longitude": "-2.82078000" + }, + { + "id": "48323", + "name": "Axminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.78259000", + "longitude": "-2.99787000" + }, + { + "id": "48324", + "name": "Aylesbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81665000", + "longitude": "-0.81458000" + }, + { + "id": "48325", + "name": "Aylesford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30374000", + "longitude": "0.47936000" + }, + { + "id": "48326", + "name": "Aylesham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.22539000", + "longitude": "1.20157000" + }, + { + "id": "48327", + "name": "Aylsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.79672000", + "longitude": "1.25107000" + }, + { + "id": "48329", + "name": "Babworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.31799000", + "longitude": "-0.97583000" + }, + { + "id": "48330", + "name": "Backworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.04229000", + "longitude": "-1.52779000" + }, + { + "id": "48331", + "name": "Bacton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.26667000", + "longitude": "1.01667000" + }, + { + "id": "48332", + "name": "Bacup", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70336000", + "longitude": "-2.20070000" + }, + { + "id": "48333", + "name": "Badsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08819000", + "longitude": "-1.89925000" + }, + { + "id": "48334", + "name": "Badsworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.62876000", + "longitude": "-1.30128000" + }, + { + "id": "48336", + "name": "Bagshot", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36069000", + "longitude": "-0.68802000" + }, + { + "id": "48337", + "name": "Bagworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67265000", + "longitude": "-1.34274000" + }, + { + "id": "48338", + "name": "Baildon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.84711000", + "longitude": "-1.78785000" + }, + { + "id": "48339", + "name": "Bakewell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.21338000", + "longitude": "-1.67481000" + }, + { + "id": "48341", + "name": "Balcombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.05726000", + "longitude": "-0.13450000" + }, + { + "id": "48342", + "name": "Baldock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.98781000", + "longitude": "-0.18835000" + }, + { + "id": "48362", + "name": "Balsall Common", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.39186000", + "longitude": "-1.65040000" + }, + { + "id": "48363", + "name": "Balsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13238000", + "longitude": "0.31586000" + }, + { + "id": "48364", + "name": "Bamburgh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.60652000", + "longitude": "-1.71704000" + }, + { + "id": "48365", + "name": "Bampton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72634000", + "longitude": "-1.54547000" + }, + { + "id": "48367", + "name": "Banbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06320000", + "longitude": "-1.34222000" + }, + { + "id": "48372", + "name": "Banham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45240000", + "longitude": "1.03683000" + }, + { + "id": "48375", + "name": "Banks", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.68333000", + "longitude": "-2.91667000" + }, + { + "id": "48377", + "name": "Banstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32233000", + "longitude": "-0.20685000" + }, + { + "id": "48378", + "name": "Banwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32894000", + "longitude": "-2.86914000" + }, + { + "id": "48379", + "name": "Bar Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.24899000", + "longitude": "0.02883000" + }, + { + "id": "48380", + "name": "Barbican", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51988000", + "longitude": "-0.09446000" + }, + { + "id": "48381", + "name": "Bardney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.21005000", + "longitude": "-0.32371000" + }, + { + "id": "48382", + "name": "Bardsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.88492000", + "longitude": "-1.44539000" + }, + { + "id": "48385", + "name": "Barham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.20570000", + "longitude": "1.15734000" + }, + { + "id": "48386", + "name": "Barking", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53333000", + "longitude": "0.08333000" + }, + { + "id": "48387", + "name": "Barkisland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.67614000", + "longitude": "-1.91840000" + }, + { + "id": "48388", + "name": "Barlaston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.94200000", + "longitude": "-2.17050000" + }, + { + "id": "48389", + "name": "Barlborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.28795000", + "longitude": "-1.28815000" + }, + { + "id": "48390", + "name": "Barlby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.79964000", + "longitude": "-1.04061000" + }, + { + "id": "48391", + "name": "Barlestone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64718000", + "longitude": "-1.37013000" + }, + { + "id": "48392", + "name": "Barmby on the Marsh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.74896000", + "longitude": "-0.95607000" + }, + { + "id": "48394", + "name": "Barnack", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63181000", + "longitude": "-0.40821000" + }, + { + "id": "48395", + "name": "Barnard Castle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.54150000", + "longitude": "-1.91900000" + }, + { + "id": "48396", + "name": "Barnburgh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.52408000", + "longitude": "-1.27300000" + }, + { + "id": "48397", + "name": "Barnet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65000000", + "longitude": "-0.20000000" + }, + { + "id": "48398", + "name": "Barnetby le Wold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57480000", + "longitude": "-0.40607000" + }, + { + "id": "48399", + "name": "Barnham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83120000", + "longitude": "-0.63789000" + }, + { + "id": "48400", + "name": "Barnoldswick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91711000", + "longitude": "-2.18705000" + }, + { + "id": "48401", + "name": "Barnsbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54067000", + "longitude": "-0.11675000" + }, + { + "id": "48402", + "name": "Barnsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53333000", + "longitude": "-1.50000000" + }, + { + "id": "48403", + "name": "Barnstaple", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.08022000", + "longitude": "-4.05808000" + }, + { + "id": "48404", + "name": "Barnt Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.35902000", + "longitude": "-2.00715000" + }, + { + "id": "48405", + "name": "Barnwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86393000", + "longitude": "-2.20087000" + }, + { + "id": "48408", + "name": "Barrow in Furness", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.11094000", + "longitude": "-3.22758000" + }, + { + "id": "48409", + "name": "Barrow upon Humber", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.67550000", + "longitude": "-0.38062000" + }, + { + "id": "48410", + "name": "Barrow upon Soar", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.75178000", + "longitude": "-1.14601000" + }, + { + "id": "48411", + "name": "Barrowby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.91636000", + "longitude": "-0.69094000" + }, + { + "id": "48412", + "name": "Barrowford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.84650000", + "longitude": "-2.21838000" + }, + { + "id": "48414", + "name": "Bartley Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.43532000", + "longitude": "-1.99707000" + }, + { + "id": "48415", + "name": "Barton under Needwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76268000", + "longitude": "-1.72400000" + }, + { + "id": "48416", + "name": "Barton upon Humber", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.68915000", + "longitude": "-0.44377000" + }, + { + "id": "48417", + "name": "Barton-le-Clay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.96598000", + "longitude": "-0.42731000" + }, + { + "id": "48418", + "name": "Baschurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.78848000", + "longitude": "-2.85284000" + }, + { + "id": "48419", + "name": "Basford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.96667000", + "longitude": "-1.18333000" + }, + { + "id": "48420", + "name": "Basildon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56844000", + "longitude": "0.45782000" + }, + { + "id": "48421", + "name": "Basingstoke", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26249000", + "longitude": "-1.08708000" + }, + { + "id": "48422", + "name": "Baslow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.24811000", + "longitude": "-1.62246000" + }, + { + "id": "48423", + "name": "Bassingbourn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.07821000", + "longitude": "-0.05390000" + }, + { + "id": "48424", + "name": "Bassingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.12881000", + "longitude": "-0.63765000" + }, + { + "id": "48425", + "name": "Baston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.71311000", + "longitude": "-0.35173000" + }, + { + "id": "48426", + "name": "Bath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37510000", + "longitude": "-2.36172000" + }, + { + "id": "48427", + "name": "Bath and North East Somerset", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33333000", + "longitude": "-2.50000000" + }, + { + "id": "48429", + "name": "Batley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70291000", + "longitude": "-1.63370000" + }, + { + "id": "48430", + "name": "Battersea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47475000", + "longitude": "-0.15547000" + }, + { + "id": "48431", + "name": "Battle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91732000", + "longitude": "0.48417000" + }, + { + "id": "48432", + "name": "Bawtry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.43146000", + "longitude": "-1.01878000" + }, + { + "id": "48433", + "name": "Bay Horse", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.96867000", + "longitude": "-2.77603000" + }, + { + "id": "48434", + "name": "Bayston Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67550000", + "longitude": "-2.76156000" + }, + { + "id": "48435", + "name": "Bayswater", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51116000", + "longitude": "-0.18426000" + }, + { + "id": "48436", + "name": "Beaconsfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61219000", + "longitude": "-0.64732000" + }, + { + "id": "48437", + "name": "Beadnell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.55670000", + "longitude": "-1.63250000" + }, + { + "id": "48438", + "name": "Beaminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.80900000", + "longitude": "-2.73910000" + }, + { + "id": "48442", + "name": "Bebington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.35000000", + "longitude": "-3.01667000" + }, + { + "id": "48443", + "name": "Beccles", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45936000", + "longitude": "1.56465000" + }, + { + "id": "48444", + "name": "Beckenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40878000", + "longitude": "-0.02526000" + }, + { + "id": "48445", + "name": "Beckingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.40000000", + "longitude": "-0.83333000" + }, + { + "id": "48446", + "name": "Becontree", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55290000", + "longitude": "0.12900000" + }, + { + "id": "48447", + "name": "Bedale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.28811000", + "longitude": "-1.59181000" + }, + { + "id": "48449", + "name": "Bedford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.18831000", + "longitude": "-0.45316000" + }, + { + "id": "48450", + "name": "Bedlington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.13061000", + "longitude": "-1.59319000" + }, + { + "id": "48453", + "name": "Bedworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.47910000", + "longitude": "-1.46909000" + }, + { + "id": "48454", + "name": "Beeford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.96999000", + "longitude": "-0.28913000" + }, + { + "id": "48455", + "name": "Beighton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.33333000", + "longitude": "-1.33333000" + }, + { + "id": "48457", + "name": "Belbroughton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.39177000", + "longitude": "-2.11884000" + }, + { + "id": "48459", + "name": "Belford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.60000000", + "longitude": "-1.83333000" + }, + { + "id": "48461", + "name": "Bellingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.14464000", + "longitude": "-2.25383000" + }, + { + "id": "48464", + "name": "Belmont", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.04272000", + "longitude": "-2.74169000" + }, + { + "id": "48465", + "name": "Belper", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.02330000", + "longitude": "-1.48119000" + }, + { + "id": "48466", + "name": "Belsize Park", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54767000", + "longitude": "-0.17228000" + }, + { + "id": "48467", + "name": "Belton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.55000000", + "longitude": "-0.81667000" + }, + { + "id": "48468", + "name": "Belvedere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.49114000", + "longitude": "0.15136000" + }, + { + "id": "48469", + "name": "Bembridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.68634000", + "longitude": "-1.08275000" + }, + { + "id": "48470", + "name": "Bempton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.13036000", + "longitude": "-0.17853000" + }, + { + "id": "48473", + "name": "Benson", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62073000", + "longitude": "-1.10979000" + }, + { + "id": "48474", + "name": "Bentley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53333000", + "longitude": "-1.15000000" + }, + { + "id": "48475", + "name": "Benwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.97296000", + "longitude": "-1.66926000" + }, + { + "id": "48476", + "name": "Bere Alston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.48233000", + "longitude": "-4.19034000" + }, + { + "id": "48477", + "name": "Bere Regis", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75371000", + "longitude": "-2.21553000" + }, + { + "id": "48478", + "name": "Berkeley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69111000", + "longitude": "-2.45917000" + }, + { + "id": "48479", + "name": "Berkhamsted", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.76040000", + "longitude": "-0.56528000" + }, + { + "id": "48480", + "name": "Berwick-Upon-Tweed", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.76536000", + "longitude": "-2.01186000" + }, + { + "id": "48482", + "name": "Bethnal Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52718000", + "longitude": "-0.06109000" + }, + { + "id": "48483", + "name": "Betley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.03439000", + "longitude": "-2.36865000" + }, + { + "id": "48486", + "name": "Beverley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.84587000", + "longitude": "-0.42332000" + }, + { + "id": "48487", + "name": "Bewbush", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10329000", + "longitude": "-0.22312000" + }, + { + "id": "48488", + "name": "Bewdley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.37570000", + "longitude": "-2.31833000" + }, + { + "id": "48489", + "name": "Bexhill-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85023000", + "longitude": "0.47095000" + }, + { + "id": "48490", + "name": "Bexley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44162000", + "longitude": "0.14866000" + }, + { + "id": "48491", + "name": "Bicester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.89998000", + "longitude": "-1.15357000" + }, + { + "id": "48492", + "name": "Bicknacre", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69403000", + "longitude": "0.58519000" + }, + { + "id": "48493", + "name": "Bicton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.72829000", + "longitude": "-2.81649000" + }, + { + "id": "48494", + "name": "Biddenden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11489000", + "longitude": "0.63819000" + }, + { + "id": "48495", + "name": "Biddestone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46083000", + "longitude": "-2.19833000" + }, + { + "id": "48496", + "name": "Biddulph", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.11724000", + "longitude": "-2.17584000" + }, + { + "id": "48497", + "name": "Bideford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.01678000", + "longitude": "-4.20832000" + }, + { + "id": "48498", + "name": "Bidford-on-Avon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.16964000", + "longitude": "-1.85955000" + }, + { + "id": "48500", + "name": "Biggin Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31329000", + "longitude": "0.03433000" + }, + { + "id": "48501", + "name": "Biggleswade", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08652000", + "longitude": "-0.26493000" + }, + { + "id": "48502", + "name": "Bildeston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.10658000", + "longitude": "0.90916000" + }, + { + "id": "48503", + "name": "Billericay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62867000", + "longitude": "0.41963000" + }, + { + "id": "48504", + "name": "Billingborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.89384000", + "longitude": "-0.34186000" + }, + { + "id": "48505", + "name": "Billinge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.49795000", + "longitude": "-2.70810000" + }, + { + "id": "48506", + "name": "Billingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.58881000", + "longitude": "-1.29034000" + }, + { + "id": "48507", + "name": "Billinghay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.07959000", + "longitude": "-0.27689000" + }, + { + "id": "48508", + "name": "Billingshurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.02312000", + "longitude": "-0.45359000" + }, + { + "id": "48509", + "name": "Billington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.81570000", + "longitude": "-2.42360000" + }, + { + "id": "48510", + "name": "Bilsdale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.37356000", + "longitude": "-1.11923000" + }, + { + "id": "48511", + "name": "Bilsthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14024000", + "longitude": "-1.03392000" + }, + { + "id": "48512", + "name": "Bilston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.56568000", + "longitude": "-2.07367000" + }, + { + "id": "48514", + "name": "Bingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.94978000", + "longitude": "-0.95907000" + }, + { + "id": "48515", + "name": "Bingley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.84861000", + "longitude": "-1.83857000" + }, + { + "id": "48516", + "name": "Birchington-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37575000", + "longitude": "1.30480000" + }, + { + "id": "48517", + "name": "Bircotes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41933000", + "longitude": "-1.04905000" + }, + { + "id": "48518", + "name": "Birdham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.79606000", + "longitude": "-0.83067000" + }, + { + "id": "48519", + "name": "Birdwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51398000", + "longitude": "-1.47929000" + }, + { + "id": "48520", + "name": "Birkenhead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.39337000", + "longitude": "-3.01479000" + }, + { + "id": "48521", + "name": "Birmingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48142000", + "longitude": "-1.89983000" + }, + { + "id": "48522", + "name": "Bishop Auckland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.65554000", + "longitude": "-1.67706000" + }, + { + "id": "48523", + "name": "Bishop Middleham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.67778000", + "longitude": "-1.48826000" + }, + { + "id": "48524", + "name": "Bishop Sutton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33444000", + "longitude": "-2.59472000" + }, + { + "id": "48525", + "name": "Bishop's Castle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.49208000", + "longitude": "-3.00210000" + }, + { + "id": "48527", + "name": "Bishops Cleeve", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94749000", + "longitude": "-2.06277000" + }, + { + "id": "48528", + "name": "Bishops Lydeard", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.05917000", + "longitude": "-3.18778000" + }, + { + "id": "48529", + "name": "Bishops Stortford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87113000", + "longitude": "0.15868000" + }, + { + "id": "48530", + "name": "Bishops Waltham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95595000", + "longitude": "-1.21476000" + }, + { + "id": "48531", + "name": "Bishopsteignton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.55193000", + "longitude": "-3.53852000" + }, + { + "id": "48532", + "name": "Bishopstoke", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.96643000", + "longitude": "-1.32832000" + }, + { + "id": "48534", + "name": "Bishopstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55130000", + "longitude": "-1.64701000" + }, + { + "id": "48535", + "name": "Bishopsworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41479000", + "longitude": "-2.62080000" + }, + { + "id": "48536", + "name": "Bishopthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91910000", + "longitude": "-1.09915000" + }, + { + "id": "48538", + "name": "Bishopton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.58333000", + "longitude": "-1.43333000" + }, + { + "id": "48539", + "name": "Bitton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.42479000", + "longitude": "-2.45965000" + }, + { + "id": "48540", + "name": "Blaby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57577000", + "longitude": "-1.16403000" + }, + { + "id": "48541", + "name": "Black Notley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85301000", + "longitude": "0.56846000" + }, + { + "id": "48543", + "name": "Blackburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.75000000", + "longitude": "-2.48333000" + }, + { + "id": "48544", + "name": "Blackburn with Darwen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.66667000", + "longitude": "-2.46667000" + }, + { + "id": "48545", + "name": "Blackheath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46470000", + "longitude": "0.00790000" + }, + { + "id": "48546", + "name": "Blackley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51765000", + "longitude": "-2.21443000" + }, + { + "id": "48547", + "name": "Blackmoorfoot", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61423000", + "longitude": "-1.85588000" + }, + { + "id": "48548", + "name": "Blackpool", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.81667000", + "longitude": "-3.05000000" + }, + { + "id": "48550", + "name": "Blackrod", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59229000", + "longitude": "-2.58026000" + }, + { + "id": "48551", + "name": "Blackwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.11667000", + "longitude": "-1.33333000" + }, + { + "id": "48554", + "name": "Blacon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20832000", + "longitude": "-2.92530000" + }, + { + "id": "48559", + "name": "Blagdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32688000", + "longitude": "-2.71731000" + }, + { + "id": "48561", + "name": "Blandford Forum", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.86073000", + "longitude": "-2.16174000" + }, + { + "id": "48563", + "name": "Blaydon-on-Tyne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.96461000", + "longitude": "-1.71392000" + }, + { + "id": "48564", + "name": "Bleadon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30861000", + "longitude": "-2.94750000" + }, + { + "id": "48565", + "name": "Blean", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30679000", + "longitude": "1.04301000" + }, + { + "id": "48566", + "name": "Bletchingley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.24059000", + "longitude": "-0.10038000" + }, + { + "id": "48567", + "name": "Bletchley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99334000", + "longitude": "-0.73471000" + }, + { + "id": "48568", + "name": "Blewbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56880000", + "longitude": "-1.23261000" + }, + { + "id": "48569", + "name": "Blidworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.09849000", + "longitude": "-1.11689000" + }, + { + "id": "48570", + "name": "Blindley Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.19344000", + "longitude": "-0.05116000" + }, + { + "id": "48571", + "name": "Blisworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.17498000", + "longitude": "-0.94131000" + }, + { + "id": "48572", + "name": "Blockley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.01220000", + "longitude": "-1.76268000" + }, + { + "id": "48573", + "name": "Bloxham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.02039000", + "longitude": "-1.37321000" + }, + { + "id": "48574", + "name": "Bloxwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.61806000", + "longitude": "-2.00431000" + }, + { + "id": "48575", + "name": "Blunham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.14695000", + "longitude": "-0.32178000" + }, + { + "id": "48576", + "name": "Bluntisham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.35479000", + "longitude": "0.00854000" + }, + { + "id": "48577", + "name": "Blyth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.12708000", + "longitude": "-1.50856000" + }, + { + "id": "48578", + "name": "Blyton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.44384000", + "longitude": "-0.71753000" + }, + { + "id": "48582", + "name": "Bodle Street", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91299000", + "longitude": "0.34332000" + }, + { + "id": "48583", + "name": "Bodmin", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.47151000", + "longitude": "-4.72430000" + }, + { + "id": "48584", + "name": "Bognor Regis", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.78206000", + "longitude": "-0.67978000" + }, + { + "id": "48585", + "name": "Bollington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.29446000", + "longitude": "-2.10963000" + }, + { + "id": "48586", + "name": "Bolsover", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22846000", + "longitude": "-1.29204000" + }, + { + "id": "48587", + "name": "Bolton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58333000", + "longitude": "-2.43333000" + }, + { + "id": "48588", + "name": "Bolton le Sands", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.09632000", + "longitude": "-2.80017000" + }, + { + "id": "48589", + "name": "Bolton upon Dearne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51667000", + "longitude": "-1.31667000" + }, + { + "id": "48593", + "name": "Boosbeck", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.54265000", + "longitude": "-0.98139000" + }, + { + "id": "48594", + "name": "Bootle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46667000", + "longitude": "-3.01667000" + }, + { + "id": "48595", + "name": "Bordon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11357000", + "longitude": "-0.86245000" + }, + { + "id": "48596", + "name": "Boreham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75955000", + "longitude": "0.54116000" + }, + { + "id": "48597", + "name": "Borehamwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65468000", + "longitude": "-0.27762000" + }, + { + "id": "48598", + "name": "Borough Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.29158000", + "longitude": "0.30478000" + }, + { + "id": "48599", + "name": "Borough of Bolton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58333000", + "longitude": "-2.50000000" + }, + { + "id": "48600", + "name": "Borough of Bury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58333000", + "longitude": "-2.33333000" + }, + { + "id": "48601", + "name": "Borough of Halton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.33333000", + "longitude": "-2.75000000" + }, + { + "id": "48602", + "name": "Borough of North Tyneside", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.03333000", + "longitude": "-1.50000000" + }, + { + "id": "48603", + "name": "Borough of Oldham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.55000000", + "longitude": "-2.08333000" + }, + { + "id": "48604", + "name": "Borough of Rochdale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58333000", + "longitude": "-2.16667000" + }, + { + "id": "48605", + "name": "Borough of Stockport", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41667000", + "longitude": "-2.16667000" + }, + { + "id": "48606", + "name": "Borough of Swindon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58333000", + "longitude": "-1.75000000" + }, + { + "id": "48607", + "name": "Borough of Tameside", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50000000", + "longitude": "-2.08333000" + }, + { + "id": "48608", + "name": "Borough of Thurrock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50000000", + "longitude": "0.41667000" + }, + { + "id": "48609", + "name": "Borough of Torbay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.45160000", + "longitude": "-3.55785000" + }, + { + "id": "48610", + "name": "Borough of Wigan", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50000000", + "longitude": "-2.58333000" + }, + { + "id": "48611", + "name": "Boroughbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.08950000", + "longitude": "-1.40110000" + }, + { + "id": "48612", + "name": "Borrowash", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90673000", + "longitude": "-1.38411000" + }, + { + "id": "48614", + "name": "Bosham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83088000", + "longitude": "-0.85384000" + }, + { + "id": "48615", + "name": "Boston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.97633000", + "longitude": "-0.02664000" + }, + { + "id": "48616", + "name": "Boston Spa", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.90419000", + "longitude": "-1.34523000" + }, + { + "id": "48617", + "name": "Botesdale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34216000", + "longitude": "1.00405000" + }, + { + "id": "48619", + "name": "Botley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91433000", + "longitude": "-1.26984000" + }, + { + "id": "48620", + "name": "Bottesford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.94131000", + "longitude": "-0.80060000" + }, + { + "id": "48621", + "name": "Bottisham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22280000", + "longitude": "0.25878000" + }, + { + "id": "48622", + "name": "Boughton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20000000", + "longitude": "-0.98333000" + }, + { + "id": "48623", + "name": "Bourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76667000", + "longitude": "-0.38333000" + }, + { + "id": "48624", + "name": "Bourne End", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57622000", + "longitude": "-0.71291000" + }, + { + "id": "48625", + "name": "Bournemouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.71918000", + "longitude": "-1.87806000" + }, + { + "id": "48626", + "name": "Bourton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.07444000", + "longitude": "-2.32778000" + }, + { + "id": "48627", + "name": "Bourton on the Water", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.88584000", + "longitude": "-1.75492000" + }, + { + "id": "48628", + "name": "Bovey Tracey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.59259000", + "longitude": "-3.67543000" + }, + { + "id": "48629", + "name": "Bovingdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72312000", + "longitude": "-0.53670000" + }, + { + "id": "48630", + "name": "Bovington Camp", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.69782000", + "longitude": "-2.23506000" + }, + { + "id": "48631", + "name": "Bow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.80000000", + "longitude": "-3.81667000" + }, + { + "id": "48632", + "name": "Bow Brickhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.00280000", + "longitude": "-0.68064000" + }, + { + "id": "48634", + "name": "Bowburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.73850000", + "longitude": "-1.52521000" + }, + { + "id": "48635", + "name": "Bowdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.37644000", + "longitude": "-2.36532000" + }, + { + "id": "48636", + "name": "Bowthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63884000", + "longitude": "1.21885000" + }, + { + "id": "48637", + "name": "Box", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41472000", + "longitude": "-2.24556000" + }, + { + "id": "48638", + "name": "Boxgrove", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85884000", + "longitude": "-0.71360000" + }, + { + "id": "48639", + "name": "Boxted", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94878000", + "longitude": "0.91002000" + }, + { + "id": "48640", + "name": "Bozeat", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22270000", + "longitude": "-0.67326000" + }, + { + "id": "48642", + "name": "Bracebridge Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19647000", + "longitude": "-0.53421000" + }, + { + "id": "48643", + "name": "Brackley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03333000", + "longitude": "-1.15000000" + }, + { + "id": "48644", + "name": "Bracknell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41363000", + "longitude": "-0.75054000" + }, + { + "id": "48645", + "name": "Bracknell Forest", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41667000", + "longitude": "-0.75000000" + }, + { + "id": "48646", + "name": "Bradfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44914000", + "longitude": "-1.13082000" + }, + { + "id": "48647", + "name": "Bradford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83333000", + "longitude": "-1.83333000" + }, + { + "id": "48648", + "name": "Bradford-on-Avon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34772000", + "longitude": "-2.25065000" + }, + { + "id": "48649", + "name": "Brading", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.67990000", + "longitude": "-1.14571000" + }, + { + "id": "48650", + "name": "Bradley Cross", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27488000", + "longitude": "-2.76256000" + }, + { + "id": "48651", + "name": "Bradninch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.82491000", + "longitude": "-3.42465000" + }, + { + "id": "48652", + "name": "Bradwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57353000", + "longitude": "1.69979000" + }, + { + "id": "48653", + "name": "Braintree", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87819000", + "longitude": "0.55292000" + }, + { + "id": "48654", + "name": "Bramford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.07631000", + "longitude": "1.09687000" + }, + { + "id": "48655", + "name": "Bramhall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.35801000", + "longitude": "-2.16539000" + }, + { + "id": "48656", + "name": "Bramham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.88118000", + "longitude": "-1.35452000" + }, + { + "id": "48657", + "name": "Bramhope", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.88489000", + "longitude": "-1.61641000" + }, + { + "id": "48658", + "name": "Bramley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32677000", + "longitude": "-1.05938000" + }, + { + "id": "48659", + "name": "Brampton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.32039000", + "longitude": "-0.22007000" + }, + { + "id": "48660", + "name": "Brandesburton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91110000", + "longitude": "-0.30122000" + }, + { + "id": "48661", + "name": "Brandon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.75000000", + "longitude": "-1.61667000" + }, + { + "id": "48662", + "name": "Bransgore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.78153000", + "longitude": "-1.73771000" + }, + { + "id": "48663", + "name": "Branston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19544000", + "longitude": "-0.47482000" + }, + { + "id": "48664", + "name": "Bratton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27056000", + "longitude": "-2.12444000" + }, + { + "id": "48665", + "name": "Braunston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.28979000", + "longitude": "-1.20266000" + }, + { + "id": "48666", + "name": "Braunton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10847000", + "longitude": "-4.16131000" + }, + { + "id": "48667", + "name": "Brayton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76510000", + "longitude": "-1.08921000" + }, + { + "id": "48668", + "name": "Bream", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74822000", + "longitude": "-2.57747000" + }, + { + "id": "48671", + "name": "Bredbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41667000", + "longitude": "-2.11667000" + }, + { + "id": "48672", + "name": "Bredon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03008000", + "longitude": "-2.11671000" + }, + { + "id": "48673", + "name": "Brenchley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.15141000", + "longitude": "0.39825000" + }, + { + "id": "48674", + "name": "Brent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55306000", + "longitude": "-0.30230000" + }, + { + "id": "48675", + "name": "Brent Knoll", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25219000", + "longitude": "-2.95744000" + }, + { + "id": "48676", + "name": "Brentford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48619000", + "longitude": "-0.30830000" + }, + { + "id": "48677", + "name": "Brentwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62127000", + "longitude": "0.30556000" + }, + { + "id": "48678", + "name": "Brewood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67712000", + "longitude": "-2.17414000" + }, + { + "id": "48679", + "name": "Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.24513000", + "longitude": "1.12640000" + }, + { + "id": "48685", + "name": "Bridgnorth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.53661000", + "longitude": "-2.42033000" + }, + { + "id": "48686", + "name": "Bridgwater", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.12837000", + "longitude": "-3.00356000" + }, + { + "id": "48687", + "name": "Bridlington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.08306000", + "longitude": "-0.19192000" + }, + { + "id": "48688", + "name": "Bridport", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.73380000", + "longitude": "-2.75831000" + }, + { + "id": "48689", + "name": "Brierfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82468000", + "longitude": "-2.23415000" + }, + { + "id": "48690", + "name": "Brierley Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48173000", + "longitude": "-2.12139000" + }, + { + "id": "48691", + "name": "Brigg", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.55201000", + "longitude": "-0.49214000" + }, + { + "id": "48692", + "name": "Brighouse", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70322000", + "longitude": "-1.78428000" + }, + { + "id": "48693", + "name": "Brighstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.64263000", + "longitude": "-1.39479000" + }, + { + "id": "48694", + "name": "Brightlingsea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81164000", + "longitude": "1.02336000" + }, + { + "id": "48695", + "name": "Brighton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.82838000", + "longitude": "-0.13947000" + }, + { + "id": "48696", + "name": "Brighton and Hove", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83333000", + "longitude": "-0.13333000" + }, + { + "id": "48698", + "name": "Brigstock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45775000", + "longitude": "-0.60834000" + }, + { + "id": "48699", + "name": "Brill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81667000", + "longitude": "-1.05000000" + }, + { + "id": "48700", + "name": "Brimscombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71973000", + "longitude": "-2.18553000" + }, + { + "id": "48701", + "name": "Brinklow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41091000", + "longitude": "-1.36400000" + }, + { + "id": "48702", + "name": "Brinscall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.68900000", + "longitude": "-2.57208000" + }, + { + "id": "48703", + "name": "Bristol", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45523000", + "longitude": "-2.59665000" + }, + { + "id": "48704", + "name": "Briston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.85369000", + "longitude": "1.05899000" + }, + { + "id": "48706", + "name": "Brixham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.39431000", + "longitude": "-3.51585000" + }, + { + "id": "48707", + "name": "Brixton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46593000", + "longitude": "-0.10652000" + }, + { + "id": "48708", + "name": "Brixton Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45213000", + "longitude": "-0.12300000" + }, + { + "id": "48709", + "name": "Brixworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.32912000", + "longitude": "-0.90350000" + }, + { + "id": "48710", + "name": "Broad Blunsdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61339000", + "longitude": "-1.77870000" + }, + { + "id": "48711", + "name": "Broadfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09714000", + "longitude": "-0.20664000" + }, + { + "id": "48712", + "name": "Broadstairs", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.35908000", + "longitude": "1.43938000" + }, + { + "id": "48713", + "name": "Broadstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75717000", + "longitude": "-1.99406000" + }, + { + "id": "48714", + "name": "Broadwater", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.82887000", + "longitude": "-0.37594000" + }, + { + "id": "48715", + "name": "Broadway", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03825000", + "longitude": "-1.86079000" + }, + { + "id": "48716", + "name": "Brockenhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81936000", + "longitude": "-1.57303000" + }, + { + "id": "48717", + "name": "Brockley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40000000", + "longitude": "-2.76667000" + }, + { + "id": "48718", + "name": "Bromborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34850000", + "longitude": "-2.97935000" + }, + { + "id": "48719", + "name": "Bromham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.14508000", + "longitude": "-0.52906000" + }, + { + "id": "48720", + "name": "Brompton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.36015000", + "longitude": "-1.42422000" + }, + { + "id": "48721", + "name": "Bromsgrove", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33574000", + "longitude": "-2.05983000" + }, + { + "id": "48722", + "name": "Bromyard", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.19019000", + "longitude": "-2.50875000" + }, + { + "id": "48723", + "name": "Brooke", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.54175000", + "longitude": "1.37076000" + }, + { + "id": "48725", + "name": "Broseley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.61321000", + "longitude": "-2.48269000" + }, + { + "id": "48726", + "name": "Brotton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.56661000", + "longitude": "-0.93929000" + }, + { + "id": "48727", + "name": "Brough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72861000", + "longitude": "-0.57215000" + }, + { + "id": "48729", + "name": "Broughton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56667000", + "longitude": "-0.55000000" + }, + { + "id": "48731", + "name": "Broughton Astley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.52787000", + "longitude": "-1.21768000" + }, + { + "id": "48732", + "name": "Brownhills", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63333000", + "longitude": "-1.93333000" + }, + { + "id": "48733", + "name": "Broxbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74712000", + "longitude": "-0.01923000" + }, + { + "id": "48735", + "name": "Brundall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62426000", + "longitude": "1.43509000" + }, + { + "id": "48736", + "name": "Bruton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11250000", + "longitude": "-2.45278000" + }, + { + "id": "48742", + "name": "Bubwith", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.81905000", + "longitude": "-0.91968000" + }, + { + "id": "48743", + "name": "Buckden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.29415000", + "longitude": "-0.24912000" + }, + { + "id": "48744", + "name": "Buckfastleigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.48132000", + "longitude": "-3.77913000" + }, + { + "id": "48746", + "name": "Buckhurst Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62409000", + "longitude": "0.03262000" + }, + { + "id": "48748", + "name": "Buckingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99968000", + "longitude": "-0.98779000" + }, + { + "id": "48749", + "name": "Buckinghamshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75000000", + "longitude": "-0.75000000" + }, + { + "id": "48751", + "name": "Bucknell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.35997000", + "longitude": "-2.95066000" + }, + { + "id": "48752", + "name": "Bude", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.82435000", + "longitude": "-4.54130000" + }, + { + "id": "48753", + "name": "Budleigh Salterton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.62983000", + "longitude": "-3.32181000" + }, + { + "id": "48754", + "name": "Bugbrooke", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21006000", + "longitude": "-1.01304000" + }, + { + "id": "48755", + "name": "Bugle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.39577000", + "longitude": "-4.79334000" + }, + { + "id": "48757", + "name": "Bulford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18930000", + "longitude": "-1.76009000" + }, + { + "id": "48758", + "name": "Bulkington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32361000", + "longitude": "-2.08361000" + }, + { + "id": "48759", + "name": "Bulphan", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54612000", + "longitude": "0.36066000" + }, + { + "id": "48760", + "name": "Bunbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.11559000", + "longitude": "-2.65151000" + }, + { + "id": "48761", + "name": "Bungay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45434000", + "longitude": "1.43818000" + }, + { + "id": "48762", + "name": "Buntingford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94612000", + "longitude": "-0.01841000" + }, + { + "id": "48763", + "name": "Burbage", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.35184000", + "longitude": "-1.67087000" + }, + { + "id": "48764", + "name": "Bures Saint Mary", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.97240000", + "longitude": "0.77488000" + }, + { + "id": "48765", + "name": "Burford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80915000", + "longitude": "-1.63628000" + }, + { + "id": "48766", + "name": "Burgess Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95843000", + "longitude": "-0.13287000" + }, + { + "id": "48767", + "name": "Burgh le Marsh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16158000", + "longitude": "0.24484000" + }, + { + "id": "48769", + "name": "Burham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33243000", + "longitude": "0.47833000" + }, + { + "id": "48770", + "name": "Burley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.82800000", + "longitude": "-1.69977000" + }, + { + "id": "48771", + "name": "Burley in Wharfedale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91020000", + "longitude": "-1.75798000" + }, + { + "id": "48772", + "name": "Burnage", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.43265000", + "longitude": "-2.19967000" + }, + { + "id": "48773", + "name": "Burneside", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.35271000", + "longitude": "-2.76151000" + }, + { + "id": "48774", + "name": "Burngreave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.39302000", + "longitude": "-1.45789000" + }, + { + "id": "48775", + "name": "Burnham-on-Crouch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63272000", + "longitude": "0.81488000" + }, + { + "id": "48776", + "name": "Burnham-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23862000", + "longitude": "-2.99780000" + }, + { + "id": "48777", + "name": "Burniston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.32385000", + "longitude": "-0.44813000" + }, + { + "id": "48778", + "name": "Burnley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.80000000", + "longitude": "-2.23333000" + }, + { + "id": "48779", + "name": "Burnopfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.90624000", + "longitude": "-1.72486000" + }, + { + "id": "48781", + "name": "Burntwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68075000", + "longitude": "-1.92759000" + }, + { + "id": "48782", + "name": "Burringham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57402000", + "longitude": "-0.73957000" + }, + { + "id": "48783", + "name": "Burrington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32884000", + "longitude": "-2.74868000" + }, + { + "id": "48785", + "name": "Burscough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59640000", + "longitude": "-2.83972000" + }, + { + "id": "48786", + "name": "Bursledon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.88658000", + "longitude": "-1.31596000" + }, + { + "id": "48787", + "name": "Burstwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.73211000", + "longitude": "-0.13956000" + }, + { + "id": "48788", + "name": "Burton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26667000", + "longitude": "-0.56667000" + }, + { + "id": "48789", + "name": "Burton Joyce", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98825000", + "longitude": "-1.03407000" + }, + { + "id": "48790", + "name": "Burton Latimer", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.36368000", + "longitude": "-0.67853000" + }, + { + "id": "48792", + "name": "Burton on the Wolds", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.78574000", + "longitude": "-1.12988000" + }, + { + "id": "48791", + "name": "Burton Pidsea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76327000", + "longitude": "-0.10703000" + }, + { + "id": "48793", + "name": "Burton upon Stather", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.64911000", + "longitude": "-0.68453000" + }, + { + "id": "48794", + "name": "Burton upon Trent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.80728000", + "longitude": "-1.64263000" + }, + { + "id": "48795", + "name": "Burtonwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.42948000", + "longitude": "-2.65852000" + }, + { + "id": "48796", + "name": "Burwash", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.99755000", + "longitude": "0.38504000" + }, + { + "id": "48797", + "name": "Burwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.27632000", + "longitude": "0.32732000" + }, + { + "id": "48798", + "name": "Bury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.60000000", + "longitude": "-2.30000000" + }, + { + "id": "48799", + "name": "Bury St Edmunds", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.24630000", + "longitude": "0.71111000" + }, + { + "id": "48801", + "name": "Bushey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64316000", + "longitude": "-0.36053000" + }, + { + "id": "48803", + "name": "Butterwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98333000", + "longitude": "0.06667000" + }, + { + "id": "48804", + "name": "Buxted", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.99003000", + "longitude": "0.13441000" + }, + { + "id": "48805", + "name": "Buxton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25741000", + "longitude": "-1.90982000" + }, + { + "id": "48806", + "name": "Byfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.17546000", + "longitude": "-1.24566000" + }, + { + "id": "48807", + "name": "Byram", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72394000", + "longitude": "-1.26128000" + }, + { + "id": "48808", + "name": "Caddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86621000", + "longitude": "-0.45679000" + }, + { + "id": "48809", + "name": "Cadnam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.92047000", + "longitude": "-1.57970000" + }, + { + "id": "48818", + "name": "Caister-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64809000", + "longitude": "1.72648000" + }, + { + "id": "48819", + "name": "Caistor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.49673000", + "longitude": "-0.31538000" + }, + { + "id": "48820", + "name": "Calcot", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44058000", + "longitude": "-1.05091000" + }, + { + "id": "48823", + "name": "Calderdale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70000000", + "longitude": "-2.00000000" + }, + { + "id": "48826", + "name": "Callington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.50147000", + "longitude": "-4.31314000" + }, + { + "id": "48827", + "name": "Calne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43879000", + "longitude": "-2.00571000" + }, + { + "id": "48828", + "name": "Calverton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.03728000", + "longitude": "-1.08263000" + }, + { + "id": "48829", + "name": "Camber", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.93473000", + "longitude": "0.79848000" + }, + { + "id": "48830", + "name": "Camberley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33705000", + "longitude": "-0.74261000" + }, + { + "id": "48831", + "name": "Camblesforth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72680000", + "longitude": "-1.01998000" + }, + { + "id": "48832", + "name": "Camborne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.21306000", + "longitude": "-5.29731000" + }, + { + "id": "48833", + "name": "Cambourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22115000", + "longitude": "-0.07025000" + }, + { + "id": "48834", + "name": "Cambridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.20000000", + "longitude": "0.11667000" + }, + { + "id": "48835", + "name": "Cambridgeshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33333000", + "longitude": "0.08333000" + }, + { + "id": "48837", + "name": "Camden Town", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54057000", + "longitude": "-0.14334000" + }, + { + "id": "48838", + "name": "Cameley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31616000", + "longitude": "-2.56079000" + }, + { + "id": "48839", + "name": "Camelford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.62185000", + "longitude": "-4.67963000" + }, + { + "id": "48841", + "name": "Campsall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61917000", + "longitude": "-1.18002000" + }, + { + "id": "48842", + "name": "Canary Wharf", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50519000", + "longitude": "-0.02085000" + }, + { + "id": "48843", + "name": "Canewdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61759000", + "longitude": "0.74458000" + }, + { + "id": "48844", + "name": "Canford Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75100000", + "longitude": "-1.96862000" + }, + { + "id": "48845", + "name": "Cannock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.69045000", + "longitude": "-2.03085000" + }, + { + "id": "48846", + "name": "Canterbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27904000", + "longitude": "1.07992000" + }, + { + "id": "48847", + "name": "Canvey Island", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52199000", + "longitude": "0.58090000" + }, + { + "id": "48849", + "name": "Capel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.14942000", + "longitude": "-0.32375000" + }, + { + "id": "48851", + "name": "Capel le Ferne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10339000", + "longitude": "1.21165000" + }, + { + "id": "48850", + "name": "Capel Saint Mary", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.00369000", + "longitude": "1.04482000" + }, + { + "id": "48852", + "name": "Carcroft", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58282000", + "longitude": "-1.17648000" + }, + { + "id": "48856", + "name": "Cardington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11742000", + "longitude": "-0.41289000" + }, + { + "id": "48859", + "name": "Carlisle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.89510000", + "longitude": "-2.93820000" + }, + { + "id": "48860", + "name": "Carlton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.59004000", + "longitude": "-1.39117000" + }, + { + "id": "48865", + "name": "Carnforth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.13163000", + "longitude": "-2.76914000" + }, + { + "id": "48874", + "name": "Carshalton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36829000", + "longitude": "-0.16755000" + }, + { + "id": "48875", + "name": "Carterton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75905000", + "longitude": "-1.59435000" + }, + { + "id": "48876", + "name": "Castle Cary", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09000000", + "longitude": "-2.51417000" + }, + { + "id": "48877", + "name": "Castle Donington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.84291000", + "longitude": "-1.34188000" + }, + { + "id": "48879", + "name": "Castle Hedingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99015000", + "longitude": "0.59882000" + }, + { + "id": "48880", + "name": "Castle Vale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.51879000", + "longitude": "-1.79683000" + }, + { + "id": "48883", + "name": "Castleford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72587000", + "longitude": "-1.36256000" + }, + { + "id": "48886", + "name": "Castleside", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.83429000", + "longitude": "-1.87849000" + }, + { + "id": "48888", + "name": "Castor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57319000", + "longitude": "-0.34603000" + }, + { + "id": "48889", + "name": "Catcliffe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.39316000", + "longitude": "-1.36207000" + }, + { + "id": "48890", + "name": "Caterham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.28230000", + "longitude": "-0.07889000" + }, + { + "id": "48891", + "name": "Caton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.07624000", + "longitude": "-2.71903000" + }, + { + "id": "48893", + "name": "Catterall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.87965000", + "longitude": "-2.76478000" + }, + { + "id": "48894", + "name": "Catterick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.37542000", + "longitude": "-1.63328000" + }, + { + "id": "48895", + "name": "Catterick Garrison", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.37748000", + "longitude": "-1.72232000" + }, + { + "id": "48897", + "name": "Cawood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83303000", + "longitude": "-1.12962000" + }, + { + "id": "48898", + "name": "Cawston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76667000", + "longitude": "1.16667000" + }, + { + "id": "48899", + "name": "Cawthorne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56687000", + "longitude": "-1.57259000" + }, + { + "id": "48900", + "name": "Caythorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.01667000", + "longitude": "-0.60000000" + }, + { + "id": "48903", + "name": "Central Bedfordshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99755000", + "longitude": "-0.42148000" + }, + { + "id": "48904", + "name": "Chacewater", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.25675000", + "longitude": "-5.15757000" + }, + { + "id": "48905", + "name": "Chadwell Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57121000", + "longitude": "0.13271000" + }, + { + "id": "48906", + "name": "Chadwell St Mary", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48140000", + "longitude": "0.36343000" + }, + { + "id": "48907", + "name": "Chafford Hundred", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48920000", + "longitude": "0.29440000" + }, + { + "id": "48908", + "name": "Chagford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.67504000", + "longitude": "-3.83936000" + }, + { + "id": "48909", + "name": "Chalfont Saint Peter", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60885000", + "longitude": "-0.55618000" + }, + { + "id": "48910", + "name": "Chalfont St Giles", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63184000", + "longitude": "-0.57026000" + }, + { + "id": "48911", + "name": "Chalford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72583000", + "longitude": "-2.15139000" + }, + { + "id": "48912", + "name": "Chalgrove", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66476000", + "longitude": "-1.07640000" + }, + { + "id": "48913", + "name": "Chalton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.92790000", + "longitude": "-0.50147000" + }, + { + "id": "48914", + "name": "Chapel Allerton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82901000", + "longitude": "-1.53834000" + }, + { + "id": "48916", + "name": "Chapel en le Frith", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.32407000", + "longitude": "-1.91291000" + }, + { + "id": "48915", + "name": "Chapel Saint Leonards", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.21667000", + "longitude": "0.31667000" + }, + { + "id": "48918", + "name": "Chapeltown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46506000", + "longitude": "-1.47217000" + }, + { + "id": "48919", + "name": "Chapmanslade", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.22917000", + "longitude": "-2.24889000" + }, + { + "id": "48920", + "name": "Chard", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.87270000", + "longitude": "-2.96597000" + }, + { + "id": "48921", + "name": "Charfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62722000", + "longitude": "-2.40667000" + }, + { + "id": "48922", + "name": "Charing", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.21073000", + "longitude": "0.79466000" + }, + { + "id": "48923", + "name": "Charlbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87270000", + "longitude": "-1.48247000" + }, + { + "id": "48925", + "name": "Charlton Kings", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.88374000", + "longitude": "-2.04239000" + }, + { + "id": "48926", + "name": "Charlton Marshall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83591000", + "longitude": "-2.14231000" + }, + { + "id": "48927", + "name": "Charminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.73333000", + "longitude": "-2.45000000" + }, + { + "id": "48928", + "name": "Charmouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.73889000", + "longitude": "-2.90055000" + }, + { + "id": "48929", + "name": "Chartham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25620000", + "longitude": "1.01836000" + }, + { + "id": "48930", + "name": "Charvil", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47573000", + "longitude": "-0.88591000" + }, + { + "id": "48931", + "name": "Chasetown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67232000", + "longitude": "-1.92535000" + }, + { + "id": "48932", + "name": "Chatburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.89228000", + "longitude": "-2.35495000" + }, + { + "id": "48933", + "name": "Chatham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37891000", + "longitude": "0.52786000" + }, + { + "id": "48934", + "name": "Chatteris", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45624000", + "longitude": "0.05236000" + }, + { + "id": "48935", + "name": "Cheadle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98333000", + "longitude": "-1.98333000" + }, + { + "id": "48936", + "name": "Cheadle Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.40186000", + "longitude": "-2.19088000" + }, + { + "id": "48937", + "name": "Cheadle Hulme", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.37610000", + "longitude": "-2.18970000" + }, + { + "id": "48938", + "name": "Cheam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36179000", + "longitude": "-0.21977000" + }, + { + "id": "48939", + "name": "Cheddar", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27537000", + "longitude": "-2.77662000" + }, + { + "id": "48940", + "name": "Cheddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.84784000", + "longitude": "-0.66429000" + }, + { + "id": "48941", + "name": "Cheddleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.06910000", + "longitude": "-2.04228000" + }, + { + "id": "48942", + "name": "Cheetham Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.49862000", + "longitude": "-2.23846000" + }, + { + "id": "48943", + "name": "Chelford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.27090000", + "longitude": "-2.28329000" + }, + { + "id": "48944", + "name": "Chelmsford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.73575000", + "longitude": "0.46958000" + }, + { + "id": "48945", + "name": "Chelmsley Wood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.47810000", + "longitude": "-1.73813000" + }, + { + "id": "48946", + "name": "Chelsea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48755000", + "longitude": "-0.16936000" + }, + { + "id": "48947", + "name": "Cheltenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.90006000", + "longitude": "-2.07972000" + }, + { + "id": "48949", + "name": "Cherry Burton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.86667000", + "longitude": "-0.50000000" + }, + { + "id": "48950", + "name": "Chertsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38812000", + "longitude": "-0.50782000" + }, + { + "id": "48951", + "name": "Chesham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70000000", + "longitude": "-0.60000000" + }, + { + "id": "48952", + "name": "Cheshire East", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16702000", + "longitude": "-2.36245000" + }, + { + "id": "48953", + "name": "Cheshire West and Chester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16352000", + "longitude": "-2.73595000" + }, + { + "id": "48954", + "name": "Cheshunt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70020000", + "longitude": "-0.03026000" + }, + { + "id": "48955", + "name": "Chessington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36240000", + "longitude": "-0.30427000" + }, + { + "id": "48956", + "name": "Chester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19050000", + "longitude": "-2.89189000" + }, + { + "id": "48957", + "name": "Chester-le-Street", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.85862000", + "longitude": "-1.57408000" + }, + { + "id": "48958", + "name": "Chesterfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25000000", + "longitude": "-1.41667000" + }, + { + "id": "48959", + "name": "Chew Magna", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36611000", + "longitude": "-2.61028000" + }, + { + "id": "48960", + "name": "Chichester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83673000", + "longitude": "-0.78003000" + }, + { + "id": "48961", + "name": "Chickerell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.62429000", + "longitude": "-2.50280000" + }, + { + "id": "48962", + "name": "Chicksands", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.04585000", + "longitude": "-0.36390000" + }, + { + "id": "48963", + "name": "Chiddingfold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11866000", + "longitude": "-0.62262000" + }, + { + "id": "48964", + "name": "Chigwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61999000", + "longitude": "0.07596000" + }, + { + "id": "48965", + "name": "Chilcompton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26391000", + "longitude": "-2.50502000" + }, + { + "id": "48966", + "name": "Child Okeford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91370000", + "longitude": "-2.23679000" + }, + { + "id": "48967", + "name": "Chilton Foliat", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43245000", + "longitude": "-1.53912000" + }, + { + "id": "48968", + "name": "Chilworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.21635000", + "longitude": "-0.53129000" + }, + { + "id": "48969", + "name": "Chinley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34025000", + "longitude": "-1.93900000" + }, + { + "id": "48970", + "name": "Chinnor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70177000", + "longitude": "-0.91161000" + }, + { + "id": "48971", + "name": "Chippenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46000000", + "longitude": "-2.12472000" + }, + { + "id": "48972", + "name": "Chipping Campden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.04964000", + "longitude": "-1.77670000" + }, + { + "id": "48973", + "name": "Chipping Norton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94109000", + "longitude": "-1.54530000" + }, + { + "id": "48974", + "name": "Chipping Ongar", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70379000", + "longitude": "0.24548000" + }, + { + "id": "48975", + "name": "Chipping Sodbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53813000", + "longitude": "-2.39379000" + }, + { + "id": "48978", + "name": "Chiseldon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51606000", + "longitude": "-1.73206000" + }, + { + "id": "48979", + "name": "Chislehurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41709000", + "longitude": "0.06858000" + }, + { + "id": "48980", + "name": "Chobham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34836000", + "longitude": "-0.60639000" + }, + { + "id": "48981", + "name": "Cholsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57280000", + "longitude": "-1.15356000" + }, + { + "id": "48982", + "name": "Choppington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.15004000", + "longitude": "-1.60332000" + }, + { + "id": "48983", + "name": "Chopwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.91797000", + "longitude": "-1.82013000" + }, + { + "id": "48984", + "name": "Chorley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.65000000", + "longitude": "-2.61667000" + }, + { + "id": "48985", + "name": "Chorleywood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65472000", + "longitude": "-0.51404000" + }, + { + "id": "48986", + "name": "Chorlton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.05029000", + "longitude": "-2.40541000" + }, + { + "id": "48987", + "name": "Chorlton cum Hardy", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.43505000", + "longitude": "-2.26310000" + }, + { + "id": "48988", + "name": "Christchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.73583000", + "longitude": "-1.78129000" + }, + { + "id": "48990", + "name": "Chudleigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.60496000", + "longitude": "-3.60031000" + }, + { + "id": "48991", + "name": "Chudleigh Knighton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.58507000", + "longitude": "-3.63187000" + }, + { + "id": "48992", + "name": "Chulmleigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91289000", + "longitude": "-3.86938000" + }, + { + "id": "48993", + "name": "Church", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.75177000", + "longitude": "-2.39121000" + }, + { + "id": "48994", + "name": "Church Fenton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82626000", + "longitude": "-1.21890000" + }, + { + "id": "48995", + "name": "Church Stretton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.53778000", + "longitude": "-2.80149000" + }, + { + "id": "48996", + "name": "Churchdown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87739000", + "longitude": "-2.17087000" + }, + { + "id": "48997", + "name": "Churchill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34291000", + "longitude": "-2.78338000" + }, + { + "id": "48998", + "name": "Churt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.13603000", + "longitude": "-0.77534000" + }, + { + "id": "48999", + "name": "Cinderford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.82421000", + "longitude": "-2.49870000" + }, + { + "id": "49000", + "name": "Cirencester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71927000", + "longitude": "-1.97145000" + }, + { + "id": "49001", + "name": "City and Borough of Birmingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48048000", + "longitude": "-1.89823000" + }, + { + "id": "49002", + "name": "City and Borough of Leeds", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.79644000", + "longitude": "-1.54770000" + }, + { + "id": "49003", + "name": "City and Borough of Salford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50000000", + "longitude": "-2.33333000" + }, + { + "id": "49004", + "name": "City and Borough of Wakefield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.68085000", + "longitude": "-1.49895000" + }, + { + "id": "49007", + "name": "City of Bristol", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45000000", + "longitude": "-2.60000000" + }, + { + "id": "49009", + "name": "City of Kingston upon Hull", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.75000000", + "longitude": "-0.33333000" + }, + { + "id": "49010", + "name": "City of Leicester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63333000", + "longitude": "-1.13333000" + }, + { + "id": "49011", + "name": "City of London", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51279000", + "longitude": "-0.09184000" + }, + { + "id": "49012", + "name": "City of Westminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.49750000", + "longitude": "-0.13570000" + }, + { + "id": "49013", + "name": "City of York", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.96396000", + "longitude": "-1.09142000" + }, + { + "id": "49016", + "name": "Clacton-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.78967000", + "longitude": "1.15597000" + }, + { + "id": "49017", + "name": "Clapham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.16085000", + "longitude": "-0.49529000" + }, + { + "id": "49018", + "name": "Clarborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34549000", + "longitude": "-0.90382000" + }, + { + "id": "49019", + "name": "Clare", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.07861000", + "longitude": "0.58167000" + }, + { + "id": "49021", + "name": "Claydon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.10672000", + "longitude": "1.11134000" + }, + { + "id": "49022", + "name": "Claypole", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.03144000", + "longitude": "-0.73407000" + }, + { + "id": "49024", + "name": "Clayton le Moors", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76667000", + "longitude": "-2.38333000" + }, + { + "id": "49023", + "name": "Clayton West", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59501000", + "longitude": "-1.61107000" + }, + { + "id": "49025", + "name": "Clayton-le-Woods", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.69689000", + "longitude": "-2.66818000" + }, + { + "id": "49026", + "name": "Cleator Moor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.52143000", + "longitude": "-3.51590000" + }, + { + "id": "49027", + "name": "Cleckheaton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72405000", + "longitude": "-1.71294000" + }, + { + "id": "49028", + "name": "Cleethorpes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56047000", + "longitude": "-0.03225000" + }, + { + "id": "49030", + "name": "Clenchwarton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.75604000", + "longitude": "0.35790000" + }, + { + "id": "49031", + "name": "Cleobury Mortimer", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.37853000", + "longitude": "-2.48196000" + }, + { + "id": "49032", + "name": "Clerkenwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52438000", + "longitude": "-0.11022000" + }, + { + "id": "49033", + "name": "Clevedon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44227000", + "longitude": "-2.85786000" + }, + { + "id": "49034", + "name": "Cleveleys", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.87750000", + "longitude": "-3.03987000" + }, + { + "id": "49035", + "name": "Cliffe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46224000", + "longitude": "0.49833000" + }, + { + "id": "49036", + "name": "Clifton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03990000", + "longitude": "-0.30051000" + }, + { + "id": "49037", + "name": "Clitheroe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.86667000", + "longitude": "-2.40000000" + }, + { + "id": "49038", + "name": "Clive", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.81335000", + "longitude": "-2.72295000" + }, + { + "id": "49039", + "name": "Clophill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.02727000", + "longitude": "-0.42377000" + }, + { + "id": "49040", + "name": "Clowne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.27449000", + "longitude": "-1.26406000" + }, + { + "id": "49041", + "name": "Clutton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32944000", + "longitude": "-2.54306000" + }, + { + "id": "49047", + "name": "Coalville", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.72247000", + "longitude": "-1.37020000" + }, + { + "id": "49049", + "name": "Coates", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70750000", + "longitude": "-2.03389000" + }, + { + "id": "49050", + "name": "Cobham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32997000", + "longitude": "-0.41130000" + }, + { + "id": "49052", + "name": "Cockermouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.66209000", + "longitude": "-3.36086000" + }, + { + "id": "49053", + "name": "Cockfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.61373000", + "longitude": "-1.80897000" + }, + { + "id": "49054", + "name": "Cockington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.46335000", + "longitude": "-3.55691000" + }, + { + "id": "49055", + "name": "Codicote", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85052000", + "longitude": "-0.23670000" + }, + { + "id": "49056", + "name": "Codsall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62989000", + "longitude": "-2.20148000" + }, + { + "id": "49058", + "name": "Cogenhoe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.23758000", + "longitude": "-0.78381000" + }, + { + "id": "49059", + "name": "Coggeshall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87077000", + "longitude": "0.68536000" + }, + { + "id": "49061", + "name": "Colchester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.88921000", + "longitude": "0.90421000" + }, + { + "id": "49062", + "name": "Cold Ash", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.42426000", + "longitude": "-1.26463000" + }, + { + "id": "49063", + "name": "Cold Norton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67209000", + "longitude": "0.66997000" + }, + { + "id": "49064", + "name": "Colden Common", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.99483000", + "longitude": "-1.31143000" + }, + { + "id": "49066", + "name": "Coleford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79535000", + "longitude": "-2.61354000" + }, + { + "id": "49068", + "name": "Colerne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43833000", + "longitude": "-2.26280000" + }, + { + "id": "49070", + "name": "Collier Row", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59893000", + "longitude": "0.16600000" + }, + { + "id": "49071", + "name": "Collingbourne Kingston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30105000", + "longitude": "-1.65876000" + }, + { + "id": "49072", + "name": "Collingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91167000", + "longitude": "-1.41174000" + }, + { + "id": "49073", + "name": "Colnbrook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48384000", + "longitude": "-0.52142000" + }, + { + "id": "49074", + "name": "Colne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.85713000", + "longitude": "-2.16851000" + }, + { + "id": "49075", + "name": "Colsterworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.80660000", + "longitude": "-0.62056000" + }, + { + "id": "49076", + "name": "Coltishall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.72804000", + "longitude": "1.36653000" + }, + { + "id": "49077", + "name": "Colwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.78764000", + "longitude": "-1.98206000" + }, + { + "id": "49079", + "name": "Colyton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.74006000", + "longitude": "-3.07021000" + }, + { + "id": "49080", + "name": "Combe Martin", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.19873000", + "longitude": "-4.02343000" + }, + { + "id": "49082", + "name": "Comberton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.18709000", + "longitude": "0.01905000" + }, + { + "id": "49083", + "name": "Compton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.02385000", + "longitude": "-1.33713000" + }, + { + "id": "49084", + "name": "Compton Martin", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31056000", + "longitude": "-2.65528000" + }, + { + "id": "49086", + "name": "Congleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16314000", + "longitude": "-2.21253000" + }, + { + "id": "49087", + "name": "Congresbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37135000", + "longitude": "-2.81018000" + }, + { + "id": "49088", + "name": "Coningsby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.10598000", + "longitude": "-0.17595000" + }, + { + "id": "49089", + "name": "Conisbrough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48188000", + "longitude": "-1.23214000" + }, + { + "id": "49092", + "name": "Consett", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.85404000", + "longitude": "-1.83160000" + }, + { + "id": "49094", + "name": "Cookham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55936000", + "longitude": "-0.70810000" + }, + { + "id": "49095", + "name": "Cookley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31667000", + "longitude": "1.45000000" + }, + { + "id": "49097", + "name": "Cople", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.12342000", + "longitude": "-0.38933000" + }, + { + "id": "49098", + "name": "Copmanthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91419000", + "longitude": "-1.14209000" + }, + { + "id": "49099", + "name": "Copplestone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81073000", + "longitude": "-3.74607000" + }, + { + "id": "49100", + "name": "Coppull", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.62527000", + "longitude": "-2.65854000" + }, + { + "id": "49101", + "name": "Copthorne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.13929000", + "longitude": "-0.11742000" + }, + { + "id": "49102", + "name": "Corbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.97365000", + "longitude": "-2.01798000" + }, + { + "id": "49103", + "name": "Corby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.49637000", + "longitude": "-0.68939000" + }, + { + "id": "49104", + "name": "Corby Glen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.81262000", + "longitude": "-0.51817000" + }, + { + "id": "49105", + "name": "Corfe Castle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.63947000", + "longitude": "-2.05672000" + }, + { + "id": "49106", + "name": "Cornholme", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.73230000", + "longitude": "-2.13851000" + }, + { + "id": "49107", + "name": "Cornwall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.41667000", + "longitude": "-4.75000000" + }, + { + "id": "49108", + "name": "Corse", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.95943000", + "longitude": "-2.30636000" + }, + { + "id": "49109", + "name": "Corsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43433000", + "longitude": "-2.18437000" + }, + { + "id": "49110", + "name": "Corston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38500000", + "longitude": "-2.44028000" + }, + { + "id": "49111", + "name": "Cosby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.55127000", + "longitude": "-1.19395000" + }, + { + "id": "49112", + "name": "Cosham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.84654000", + "longitude": "-1.06344000" + }, + { + "id": "49113", + "name": "Costessey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.65914000", + "longitude": "1.20970000" + }, + { + "id": "49114", + "name": "Cotgrave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90859000", + "longitude": "-1.03752000" + }, + { + "id": "49115", + "name": "Cottenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.28743000", + "longitude": "0.12540000" + }, + { + "id": "49116", + "name": "Cottesmore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.71384000", + "longitude": "-0.66330000" + }, + { + "id": "49117", + "name": "Cottingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.50243000", + "longitude": "-0.75540000" + }, + { + "id": "49118", + "name": "Coulsdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32002000", + "longitude": "-0.14088000" + }, + { + "id": "49119", + "name": "Coundon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.66280000", + "longitude": "-1.62688000" + }, + { + "id": "49120", + "name": "Countesthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.55379000", + "longitude": "-1.14526000" + }, + { + "id": "49121", + "name": "County Durham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.77680000", + "longitude": "-1.57575000" + }, + { + "id": "49126", + "name": "Coven", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.65587000", + "longitude": "-2.13530000" + }, + { + "id": "49127", + "name": "Coventry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.40656000", + "longitude": "-1.51217000" + }, + { + "id": "49128", + "name": "Cowbit", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.74523000", + "longitude": "-0.12978000" + }, + { + "id": "49131", + "name": "Cowes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.76306000", + "longitude": "-1.29772000" + }, + { + "id": "49132", + "name": "Cowfold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.98945000", + "longitude": "-0.27243000" + }, + { + "id": "49134", + "name": "Cowley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.73213000", + "longitude": "-1.20631000" + }, + { + "id": "49135", + "name": "Cowplain", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.89411000", + "longitude": "-1.01824000" + }, + { + "id": "49136", + "name": "Coxhoe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.71475000", + "longitude": "-1.50356000" + }, + { + "id": "49138", + "name": "Cradley Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.47214000", + "longitude": "-2.08212000" + }, + { + "id": "49141", + "name": "Cramlington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.08652000", + "longitude": "-1.58598000" + }, + { + "id": "49142", + "name": "Cranbrook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09662000", + "longitude": "0.53567000" + }, + { + "id": "49143", + "name": "Cranfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06869000", + "longitude": "-0.60884000" + }, + { + "id": "49144", + "name": "Cranham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56565000", + "longitude": "0.26590000" + }, + { + "id": "49145", + "name": "Cranleigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.14209000", + "longitude": "-0.48374000" + }, + { + "id": "49146", + "name": "Cranwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.03681000", + "longitude": "-0.46176000" + }, + { + "id": "49147", + "name": "Craven Arms", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.44308000", + "longitude": "-2.83562000" + }, + { + "id": "49148", + "name": "Crawley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11303000", + "longitude": "-0.18312000" + }, + { + "id": "49149", + "name": "Crawley Down", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.12061000", + "longitude": "-0.07730000" + }, + { + "id": "49150", + "name": "Credenhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08351000", + "longitude": "-2.80804000" + }, + { + "id": "49151", + "name": "Crediton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.78333000", + "longitude": "-3.65000000" + }, + { + "id": "49152", + "name": "Creech Saint Michael", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.02333000", + "longitude": "-3.03833000" + }, + { + "id": "49153", + "name": "Creswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26287000", + "longitude": "-1.21987000" + }, + { + "id": "49154", + "name": "Crewe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.09787000", + "longitude": "-2.44161000" + }, + { + "id": "49155", + "name": "Crewkerne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.88298000", + "longitude": "-2.79588000" + }, + { + "id": "49157", + "name": "Crick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34808000", + "longitude": "-1.13708000" + }, + { + "id": "49159", + "name": "Cricklade", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64061000", + "longitude": "-1.85738000" + }, + { + "id": "49161", + "name": "Cringleford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60482000", + "longitude": "1.24334000" + }, + { + "id": "49163", + "name": "Croft", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.55668000", + "longitude": "-1.24643000" + }, + { + "id": "49164", + "name": "Crofton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.65639000", + "longitude": "-1.42968000" + }, + { + "id": "49166", + "name": "Cromer", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.93123000", + "longitude": "1.29892000" + }, + { + "id": "49167", + "name": "Cromford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.10848000", + "longitude": "-1.56014000" + }, + { + "id": "49168", + "name": "Crondall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23285000", + "longitude": "-0.86329000" + }, + { + "id": "49169", + "name": "Crook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.71252000", + "longitude": "-1.74970000" + }, + { + "id": "49170", + "name": "Cropwell Bishop", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.91480000", + "longitude": "-0.98482000" + }, + { + "id": "49171", + "name": "Crosby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.47778000", + "longitude": "-3.03333000" + }, + { + "id": "49173", + "name": "Cross Hills", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.90606000", + "longitude": "-1.98492000" + }, + { + "id": "49179", + "name": "Croston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.66217000", + "longitude": "-2.77523000" + }, + { + "id": "49180", + "name": "Crouch End", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57971000", + "longitude": "-0.12373000" + }, + { + "id": "49181", + "name": "Crowborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.06098000", + "longitude": "0.16342000" + }, + { + "id": "49182", + "name": "Crowland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67571000", + "longitude": "-0.16849000" + }, + { + "id": "49183", + "name": "Crowle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.60753000", + "longitude": "-0.83256000" + }, + { + "id": "49184", + "name": "Crowthorne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37027000", + "longitude": "-0.79219000" + }, + { + "id": "49186", + "name": "Croydon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38333000", + "longitude": "-0.10000000" + }, + { + "id": "49190", + "name": "Crumpsall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51827000", + "longitude": "-2.24447000" + }, + { + "id": "49193", + "name": "Cuckfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.01073000", + "longitude": "-0.14068000" + }, + { + "id": "49194", + "name": "Cuddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.24488000", + "longitude": "-2.61879000" + }, + { + "id": "49195", + "name": "Cudworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57131000", + "longitude": "-1.41595000" + }, + { + "id": "49196", + "name": "Cuffley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70799000", + "longitude": "-0.11209000" + }, + { + "id": "49197", + "name": "Culcheth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.45110000", + "longitude": "-2.52104000" + }, + { + "id": "49199", + "name": "Cullingworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82444000", + "longitude": "-1.89730000" + }, + { + "id": "49201", + "name": "Cullompton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85530000", + "longitude": "-3.39268000" + }, + { + "id": "49205", + "name": "Culverstone Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34085000", + "longitude": "0.34686000" + }, + { + "id": "49207", + "name": "Cumbria", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.58333000", + "longitude": "-2.83333000" + }, + { + "id": "49210", + "name": "Curdworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.53382000", + "longitude": "-1.73687000" + }, + { + "id": "49212", + "name": "Curry Rivel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.02306000", + "longitude": "-2.86753000" + }, + { + "id": "49214", + "name": "Cuxton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37430000", + "longitude": "0.45688000" + }, + { + "id": "49219", + "name": "Dagenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55000000", + "longitude": "0.16667000" + }, + { + "id": "49227", + "name": "Dalston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.84207000", + "longitude": "-2.98459000" + }, + { + "id": "49228", + "name": "Dalton in Furness", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.15796000", + "longitude": "-3.17977000" + }, + { + "id": "49229", + "name": "Danbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71645000", + "longitude": "0.58245000" + }, + { + "id": "49230", + "name": "Danby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.46606000", + "longitude": "-0.91073000" + }, + { + "id": "49232", + "name": "Darenth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.42137000", + "longitude": "0.25784000" + }, + { + "id": "49233", + "name": "Daresbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34184000", + "longitude": "-2.63500000" + }, + { + "id": "49234", + "name": "Darfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53390000", + "longitude": "-1.37595000" + }, + { + "id": "49235", + "name": "Darlaston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.56667000", + "longitude": "-2.03333000" + }, + { + "id": "49236", + "name": "Darlington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.53333000", + "longitude": "-1.53333000" + }, + { + "id": "49237", + "name": "Darras Hall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.03560000", + "longitude": "-1.76425000" + }, + { + "id": "49238", + "name": "Darrington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.67566000", + "longitude": "-1.26901000" + }, + { + "id": "49239", + "name": "Dartford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44657000", + "longitude": "0.21423000" + }, + { + "id": "49240", + "name": "Dartmouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.35220000", + "longitude": "-3.57940000" + }, + { + "id": "49241", + "name": "Darton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58705000", + "longitude": "-1.52676000" + }, + { + "id": "49243", + "name": "Darwen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.69803000", + "longitude": "-2.46494000" + }, + { + "id": "49244", + "name": "Datchet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48390000", + "longitude": "-0.57893000" + }, + { + "id": "49245", + "name": "Datchworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85126000", + "longitude": "-0.15956000" + }, + { + "id": "49246", + "name": "Daventry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25688000", + "longitude": "-1.16066000" + }, + { + "id": "49247", + "name": "Dawlish", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.58118000", + "longitude": "-3.46644000" + }, + { + "id": "49248", + "name": "Deal", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.22322000", + "longitude": "1.40432000" + }, + { + "id": "49249", + "name": "Deanshanger", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.04996000", + "longitude": "-0.88663000" + }, + { + "id": "49250", + "name": "Dearham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.71175000", + "longitude": "-3.44364000" + }, + { + "id": "49251", + "name": "Debenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22422000", + "longitude": "1.18172000" + }, + { + "id": "49252", + "name": "Deddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.98060000", + "longitude": "-1.32055000" + }, + { + "id": "49253", + "name": "Dedham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.95892000", + "longitude": "0.99336000" + }, + { + "id": "49257", + "name": "Delabole", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.62347000", + "longitude": "-4.73190000" + }, + { + "id": "49258", + "name": "Delph", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56667000", + "longitude": "-2.01667000" + }, + { + "id": "49261", + "name": "Denby Dale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57228000", + "longitude": "-1.65895000" + }, + { + "id": "49262", + "name": "Denham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56667000", + "longitude": "-0.50000000" + }, + { + "id": "49263", + "name": "Denholme", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.80189000", + "longitude": "-1.89503000" + }, + { + "id": "49264", + "name": "Denmead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.90395000", + "longitude": "-1.06744000" + }, + { + "id": "49267", + "name": "Denton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.45678000", + "longitude": "-2.11822000" + }, + { + "id": "49268", + "name": "Denton Holme", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.88500000", + "longitude": "-2.94100000" + }, + { + "id": "49269", + "name": "Derby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.92277000", + "longitude": "-1.47663000" + }, + { + "id": "49270", + "name": "Derbyshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16667000", + "longitude": "-1.58333000" + }, + { + "id": "49274", + "name": "Dersingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.84549000", + "longitude": "0.50339000" + }, + { + "id": "49275", + "name": "Desborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.44183000", + "longitude": "-0.82126000" + }, + { + "id": "49276", + "name": "Desford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62598000", + "longitude": "-1.29395000" + }, + { + "id": "49277", + "name": "Devizes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.35084000", + "longitude": "-1.99421000" + }, + { + "id": "49278", + "name": "Devon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75000000", + "longitude": "-3.75000000" + }, + { + "id": "49279", + "name": "Dewsbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.69076000", + "longitude": "-1.62907000" + }, + { + "id": "49280", + "name": "Dickens Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.38568000", + "longitude": "-1.83935000" + }, + { + "id": "49281", + "name": "Dickleburgh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.39650000", + "longitude": "1.18498000" + }, + { + "id": "49282", + "name": "Didcot", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60928000", + "longitude": "-1.24214000" + }, + { + "id": "49283", + "name": "Didsbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41698000", + "longitude": "-2.23145000" + }, + { + "id": "49284", + "name": "Diggle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56744000", + "longitude": "-1.99723000" + }, + { + "id": "49287", + "name": "Dinnington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.36667000", + "longitude": "-1.20000000" + }, + { + "id": "49288", + "name": "Dinton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.08333000", + "longitude": "-1.98333000" + }, + { + "id": "49289", + "name": "Disley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.35865000", + "longitude": "-2.03848000" + }, + { + "id": "49290", + "name": "Diss", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.37675000", + "longitude": "1.10910000" + }, + { + "id": "49291", + "name": "Distington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.59733000", + "longitude": "-3.53880000" + }, + { + "id": "49292", + "name": "District of Rutland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.66667000", + "longitude": "-0.66667000" + }, + { + "id": "49293", + "name": "Ditchingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.46729000", + "longitude": "1.44370000" + }, + { + "id": "49294", + "name": "Ditchling", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.92100000", + "longitude": "-0.11536000" + }, + { + "id": "49295", + "name": "Ditton Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37947000", + "longitude": "-0.31281000" + }, + { + "id": "49297", + "name": "Dobwalls", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.45768000", + "longitude": "-4.51735000" + }, + { + "id": "49298", + "name": "Doddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.49671000", + "longitude": "0.06017000" + }, + { + "id": "49299", + "name": "Dodworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.54306000", + "longitude": "-1.52779000" + }, + { + "id": "49303", + "name": "Doncaster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50000000", + "longitude": "-1.08333000" + }, + { + "id": "49304", + "name": "Donington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90461000", + "longitude": "-0.20505000" + }, + { + "id": "49305", + "name": "Donisthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.72401000", + "longitude": "-1.53800000" + }, + { + "id": "49306", + "name": "Donnington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.95135000", + "longitude": "-1.72142000" + }, + { + "id": "49307", + "name": "Dorchester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.71667000", + "longitude": "-2.43333000" + }, + { + "id": "49308", + "name": "Dorking", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23228000", + "longitude": "-0.33380000" + }, + { + "id": "49309", + "name": "Dormansland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.16024000", + "longitude": "0.00618000" + }, + { + "id": "49311", + "name": "Dorridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.37259000", + "longitude": "-1.75318000" + }, + { + "id": "49312", + "name": "Dorset", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75000000", + "longitude": "-2.33333000" + }, + { + "id": "49313", + "name": "Dorstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06667000", + "longitude": "-3.00000000" + }, + { + "id": "49316", + "name": "Dove Holes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.29828000", + "longitude": "-1.88775000" + }, + { + "id": "49317", + "name": "Dover", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.12598000", + "longitude": "1.31257000" + }, + { + "id": "49318", + "name": "Dovercourt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.93649000", + "longitude": "1.27831000" + }, + { + "id": "49319", + "name": "Doveridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90526000", + "longitude": "-1.82480000" + }, + { + "id": "49320", + "name": "Downham Market", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60714000", + "longitude": "0.38375000" + }, + { + "id": "49322", + "name": "Downton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.99366000", + "longitude": "-1.75129000" + }, + { + "id": "49324", + "name": "Draycott", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25615000", + "longitude": "-2.75116000" + }, + { + "id": "49326", + "name": "Driffield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.00613000", + "longitude": "-0.44495000" + }, + { + "id": "49327", + "name": "Droitwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.26667000", + "longitude": "-2.15000000" + }, + { + "id": "49329", + "name": "Dronfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.30221000", + "longitude": "-1.47507000" + }, + { + "id": "49331", + "name": "Droylsden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48005000", + "longitude": "-2.14543000" + }, + { + "id": "49333", + "name": "Drybrook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85550000", + "longitude": "-2.51681000" + }, + { + "id": "49334", + "name": "Ducklington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.76763000", + "longitude": "-1.48418000" + }, + { + "id": "49335", + "name": "Dudley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.50000000", + "longitude": "-2.11667000" + }, + { + "id": "49336", + "name": "Duffield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98627000", + "longitude": "-1.48865000" + }, + { + "id": "49338", + "name": "Dukinfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.47497000", + "longitude": "-2.08809000" + }, + { + "id": "49339", + "name": "Dulverton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.04007000", + "longitude": "-3.55035000" + }, + { + "id": "49345", + "name": "Dunchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33757000", + "longitude": "-1.29136000" + }, + { + "id": "49351", + "name": "Dundry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39880000", + "longitude": "-2.63964000" + }, + { + "id": "49355", + "name": "Dunholme", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.30067000", + "longitude": "-0.46541000" + }, + { + "id": "49357", + "name": "Dunkeswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.86301000", + "longitude": "-3.22289000" + }, + { + "id": "49360", + "name": "Dunnington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.95000000", + "longitude": "-0.25000000" + }, + { + "id": "49363", + "name": "Dunstable", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.88571000", + "longitude": "-0.52288000" + }, + { + "id": "49364", + "name": "Dunswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.80106000", + "longitude": "-0.37139000" + }, + { + "id": "49366", + "name": "Durham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.77676000", + "longitude": "-1.57566000" + }, + { + "id": "49367", + "name": "Dursley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68139000", + "longitude": "-2.35333000" + }, + { + "id": "49368", + "name": "Duxford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09393000", + "longitude": "0.15917000" + }, + { + "id": "49371", + "name": "Dymchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.02544000", + "longitude": "0.99392000" + }, + { + "id": "49373", + "name": "Eaglescliffe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.52521000", + "longitude": "-1.35043000" + }, + { + "id": "49375", + "name": "Earby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91546000", + "longitude": "-2.14285000" + }, + { + "id": "49376", + "name": "Earith", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.35422000", + "longitude": "0.03056000" + }, + { + "id": "49377", + "name": "Earl Shilton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57682000", + "longitude": "-1.31536000" + }, + { + "id": "49378", + "name": "Earls Barton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.26627000", + "longitude": "-0.75248000" + }, + { + "id": "49379", + "name": "Earls Colne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.92744000", + "longitude": "0.70107000" + }, + { + "id": "49380", + "name": "Earlsfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44390000", + "longitude": "-0.18540000" + }, + { + "id": "49382", + "name": "Easington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.78528000", + "longitude": "-1.35917000" + }, + { + "id": "49383", + "name": "Easingwold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.12010000", + "longitude": "-1.19390000" + }, + { + "id": "49385", + "name": "East Ayton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.25480000", + "longitude": "-0.47483000" + }, + { + "id": "49386", + "name": "East Bergholt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.97785000", + "longitude": "1.01761000" + }, + { + "id": "49387", + "name": "East Boldon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.94452000", + "longitude": "-1.42815000" + }, + { + "id": "49388", + "name": "East Bridgford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.97954000", + "longitude": "-0.96563000" + }, + { + "id": "49390", + "name": "East Chevington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.28333000", + "longitude": "-1.58333000" + }, + { + "id": "49391", + "name": "East Cowes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75774000", + "longitude": "-1.28815000" + }, + { + "id": "49392", + "name": "East Dean", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.03979000", + "longitude": "-1.60941000" + }, + { + "id": "49393", + "name": "East Dereham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68333000", + "longitude": "0.93333000" + }, + { + "id": "49395", + "name": "East Grinstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.12382000", + "longitude": "-0.00610000" + }, + { + "id": "49396", + "name": "East Hanney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63443000", + "longitude": "-1.39518000" + }, + { + "id": "49397", + "name": "East Harling", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.43843000", + "longitude": "0.93353000" + }, + { + "id": "49398", + "name": "East Harptree", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30111000", + "longitude": "-2.62167000" + }, + { + "id": "49399", + "name": "East Horsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27358000", + "longitude": "-0.43207000" + }, + { + "id": "49400", + "name": "East Keswick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.89430000", + "longitude": "-1.45221000" + }, + { + "id": "49402", + "name": "East Leake", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.83015000", + "longitude": "-1.18103000" + }, + { + "id": "49405", + "name": "East Markham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25221000", + "longitude": "-0.89385000" + }, + { + "id": "49406", + "name": "East Molesey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39872000", + "longitude": "-0.34916000" + }, + { + "id": "49407", + "name": "East Peckham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.21234000", + "longitude": "0.38624000" + }, + { + "id": "49408", + "name": "East Rainton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.82513000", + "longitude": "-1.48036000" + }, + { + "id": "49410", + "name": "East Riding of Yorkshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91667000", + "longitude": "-0.50000000" + }, + { + "id": "49411", + "name": "East Sussex", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91667000", + "longitude": "0.33333000" + }, + { + "id": "49412", + "name": "East Tilbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48053000", + "longitude": "0.41714000" + }, + { + "id": "49415", + "name": "East Wittering", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.76969000", + "longitude": "-0.87444000" + }, + { + "id": "49416", + "name": "Eastbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.76871000", + "longitude": "0.28453000" + }, + { + "id": "49417", + "name": "Eastchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40673000", + "longitude": "0.85766000" + }, + { + "id": "49418", + "name": "Eastington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74722000", + "longitude": "-2.32639000" + }, + { + "id": "49419", + "name": "Eastleigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.96667000", + "longitude": "-1.35000000" + }, + { + "id": "49420", + "name": "Eastoft", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.63624000", + "longitude": "-0.78492000" + }, + { + "id": "49421", + "name": "Easton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.53333000", + "longitude": "-2.45000000" + }, + { + "id": "49422", + "name": "Easton on the Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62733000", + "longitude": "-0.50571000" + }, + { + "id": "49423", + "name": "Easton-in-Gordano", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47592000", + "longitude": "-2.69987000" + }, + { + "id": "49425", + "name": "Eastrington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76038000", + "longitude": "-0.79325000" + }, + { + "id": "49426", + "name": "Eastry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.24639000", + "longitude": "1.30776000" + }, + { + "id": "49427", + "name": "Eastwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00000000", + "longitude": "-1.30000000" + }, + { + "id": "49428", + "name": "Eaton Bray", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87697000", + "longitude": "-0.59167000" + }, + { + "id": "49429", + "name": "Eaton Socon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21752000", + "longitude": "-0.28925000" + }, + { + "id": "49430", + "name": "Eattington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13333000", + "longitude": "-1.60000000" + }, + { + "id": "49432", + "name": "Eccles", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48333000", + "longitude": "-2.33333000" + }, + { + "id": "49433", + "name": "Eccleshall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.85789000", + "longitude": "-2.24971000" + }, + { + "id": "49434", + "name": "Eccleston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.64236000", + "longitude": "-2.72162000" + }, + { + "id": "49435", + "name": "Eckington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06667000", + "longitude": "-2.11667000" + }, + { + "id": "49436", + "name": "Edenbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.19172000", + "longitude": "0.06729000" + }, + { + "id": "49437", + "name": "Edenfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.66674000", + "longitude": "-2.30481000" + }, + { + "id": "49438", + "name": "Edgmond", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.77400000", + "longitude": "-2.40967000" + }, + { + "id": "49439", + "name": "Edgware", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61280000", + "longitude": "-0.27539000" + }, + { + "id": "49440", + "name": "Edgworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.64636000", + "longitude": "-2.39401000" + }, + { + "id": "49442", + "name": "Edington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27583000", + "longitude": "-2.10639000" + }, + { + "id": "49443", + "name": "Edith Weston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63786000", + "longitude": "-0.63189000" + }, + { + "id": "49444", + "name": "Edwinstowe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19454000", + "longitude": "-1.06439000" + }, + { + "id": "49445", + "name": "Egham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43158000", + "longitude": "-0.55239000" + }, + { + "id": "49447", + "name": "Egremont", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.47941000", + "longitude": "-3.52756000" + }, + { + "id": "49448", + "name": "Eight Ash Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.89587000", + "longitude": "0.82280000" + }, + { + "id": "49452", + "name": "Elland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.68510000", + "longitude": "-1.83878000" + }, + { + "id": "49453", + "name": "Ellerker", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.75323000", + "longitude": "-0.60416000" + }, + { + "id": "49454", + "name": "Ellerton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.85000000", + "longitude": "-0.93333000" + }, + { + "id": "49455", + "name": "Ellesmere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90838000", + "longitude": "-2.89806000" + }, + { + "id": "49456", + "name": "Ellesmere Port", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.27875000", + "longitude": "-2.90134000" + }, + { + "id": "49458", + "name": "Elm Park", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54970000", + "longitude": "0.20136000" + }, + { + "id": "49459", + "name": "Elmstead Market", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.88219000", + "longitude": "0.99482000" + }, + { + "id": "49460", + "name": "Elmswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.23616000", + "longitude": "0.91247000" + }, + { + "id": "49461", + "name": "Elsenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.91431000", + "longitude": "0.22934000" + }, + { + "id": "49462", + "name": "Elstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18548000", + "longitude": "-0.70536000" + }, + { + "id": "49463", + "name": "Elstree", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64030000", + "longitude": "-0.29693000" + }, + { + "id": "49464", + "name": "Elswick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83836000", + "longitude": "-2.88147000" + }, + { + "id": "49465", + "name": "Elvington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.92087000", + "longitude": "-0.93495000" + }, + { + "id": "49466", + "name": "Elwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.68455000", + "longitude": "-1.29559000" + }, + { + "id": "49467", + "name": "Ely", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.39964000", + "longitude": "0.26196000" + }, + { + "id": "49468", + "name": "Emberton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13691000", + "longitude": "-0.70673000" + }, + { + "id": "49469", + "name": "Embleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.49592000", + "longitude": "-1.63619000" + }, + { + "id": "49470", + "name": "Embsay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.97664000", + "longitude": "-1.99282000" + }, + { + "id": "49471", + "name": "Emley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61395000", + "longitude": "-1.63130000" + }, + { + "id": "49472", + "name": "Emneth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64244000", + "longitude": "0.20857000" + }, + { + "id": "49473", + "name": "Empingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.66722000", + "longitude": "-0.59601000" + }, + { + "id": "49474", + "name": "Emsworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.84779000", + "longitude": "-0.93697000" + }, + { + "id": "49475", + "name": "Enderby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58778000", + "longitude": "-1.20619000" + }, + { + "id": "49476", + "name": "Enfield Town", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65147000", + "longitude": "-0.08497000" + }, + { + "id": "49478", + "name": "Epping", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69815000", + "longitude": "0.11055000" + }, + { + "id": "49479", + "name": "Epsom", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33050000", + "longitude": "-0.27011000" + }, + { + "id": "49480", + "name": "Epworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.52602000", + "longitude": "-0.82399000" + }, + { + "id": "49481", + "name": "Erith", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48315000", + "longitude": "0.17484000" + }, + { + "id": "49484", + "name": "Esher", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36969000", + "longitude": "-0.36693000" + }, + { + "id": "49485", + "name": "Essendine", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70187000", + "longitude": "-0.45250000" + }, + { + "id": "49486", + "name": "Essex", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83333000", + "longitude": "0.58333000" + }, + { + "id": "49487", + "name": "Essington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62910000", + "longitude": "-2.05770000" + }, + { + "id": "49488", + "name": "Eton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48833000", + "longitude": "-0.60905000" + }, + { + "id": "49489", + "name": "Eton Wick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.49722000", + "longitude": "-0.63437000" + }, + { + "id": "49490", + "name": "Etton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.87848000", + "longitude": "-0.51314000" + }, + { + "id": "49491", + "name": "Etwall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.88353000", + "longitude": "-1.60023000" + }, + { + "id": "49492", + "name": "Euxton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.66990000", + "longitude": "-2.67615000" + }, + { + "id": "49494", + "name": "Evenwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.62213000", + "longitude": "-1.76133000" + }, + { + "id": "49495", + "name": "Evercreech", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.14806000", + "longitude": "-2.50556000" + }, + { + "id": "49496", + "name": "Eversholt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.98702000", + "longitude": "-0.55983000" + }, + { + "id": "49497", + "name": "Eversley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.35387000", + "longitude": "-0.88888000" + }, + { + "id": "49498", + "name": "Everton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.14581000", + "longitude": "-0.24616000" + }, + { + "id": "49499", + "name": "Evesham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09237000", + "longitude": "-1.94887000" + }, + { + "id": "49500", + "name": "Ewell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34948000", + "longitude": "-0.24940000" + }, + { + "id": "49501", + "name": "Ewhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.15448000", + "longitude": "-0.44344000" + }, + { + "id": "49502", + "name": "Ewyas Harold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.95358000", + "longitude": "-2.89325000" + }, + { + "id": "49503", + "name": "Exeter", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.72360000", + "longitude": "-3.52751000" + }, + { + "id": "49504", + "name": "Exhall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.46464000", + "longitude": "-1.48144000" + }, + { + "id": "49505", + "name": "Exminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.68075000", + "longitude": "-3.49706000" + }, + { + "id": "49506", + "name": "Exmouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.61723000", + "longitude": "-3.40233000" + }, + { + "id": "49507", + "name": "Exning", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.26642000", + "longitude": "0.37439000" + }, + { + "id": "49508", + "name": "Exton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.69106000", + "longitude": "-0.63463000" + }, + { + "id": "49509", + "name": "Eye", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60800000", + "longitude": "-0.19209000" + }, + { + "id": "49511", + "name": "Eynsford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36765000", + "longitude": "0.21132000" + }, + { + "id": "49512", + "name": "Eynsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.78077000", + "longitude": "-1.37454000" + }, + { + "id": "49513", + "name": "Eythorne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.19710000", + "longitude": "1.26620000" + }, + { + "id": "49515", + "name": "Failsworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50484000", + "longitude": "-2.16568000" + }, + { + "id": "49516", + "name": "Fairford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70816000", + "longitude": "-1.78128000" + }, + { + "id": "49517", + "name": "Fairlands", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26178000", + "longitude": "-0.62141000" + }, + { + "id": "49519", + "name": "Fairlight", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.87802000", + "longitude": "0.65669000" + }, + { + "id": "49520", + "name": "Fakenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.82996000", + "longitude": "0.84770000" + }, + { + "id": "49524", + "name": "Fallowfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.43981000", + "longitude": "-2.21572000" + }, + { + "id": "49525", + "name": "Falmouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.15441000", + "longitude": "-5.07113000" + }, + { + "id": "49526", + "name": "Fareham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85162000", + "longitude": "-1.17929000" + }, + { + "id": "49527", + "name": "Faringdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65644000", + "longitude": "-1.58676000" + }, + { + "id": "49528", + "name": "Farnborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.29424000", + "longitude": "-0.75565000" + }, + { + "id": "49529", + "name": "Farndon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.05000000", + "longitude": "-0.85000000" + }, + { + "id": "49530", + "name": "Farnham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.21444000", + "longitude": "-0.80054000" + }, + { + "id": "49531", + "name": "Farnham Royal", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54208000", + "longitude": "-0.61584000" + }, + { + "id": "49532", + "name": "Farnsfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.10223000", + "longitude": "-1.03320000" + }, + { + "id": "49533", + "name": "Farnworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.55000000", + "longitude": "-2.40000000" + }, + { + "id": "49535", + "name": "Faversham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31480000", + "longitude": "0.88856000" + }, + { + "id": "49536", + "name": "Fazeley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.61443000", + "longitude": "-1.69850000" + }, + { + "id": "49537", + "name": "Featherstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64483000", + "longitude": "-2.09315000" + }, + { + "id": "49538", + "name": "Felixstowe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.96375000", + "longitude": "1.35110000" + }, + { + "id": "49539", + "name": "Felling", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.95297000", + "longitude": "-1.57152000" + }, + { + "id": "49540", + "name": "Feltham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44620000", + "longitude": "-0.41388000" + }, + { + "id": "49541", + "name": "Felton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.29768000", + "longitude": "-1.71143000" + }, + { + "id": "49542", + "name": "Feltwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48581000", + "longitude": "0.51945000" + }, + { + "id": "49543", + "name": "Fenstanton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.29903000", + "longitude": "-0.06712000" + }, + { + "id": "49547", + "name": "Ferndown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.80743000", + "longitude": "-1.89975000" + }, + { + "id": "49548", + "name": "Fernhill Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.23002000", + "longitude": "-2.19659000" + }, + { + "id": "49549", + "name": "Fernhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.04873000", + "longitude": "-0.71789000" + }, + { + "id": "49550", + "name": "Ferrybridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.71058000", + "longitude": "-1.27948000" + }, + { + "id": "49551", + "name": "Ferryhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.68333000", + "longitude": "-1.55000000" + }, + { + "id": "49553", + "name": "Filey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.21000000", + "longitude": "-0.28917000" + }, + { + "id": "49554", + "name": "Finchampstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36149000", + "longitude": "-0.85728000" + }, + { + "id": "49555", + "name": "Findern", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.87037000", + "longitude": "-1.54409000" + }, + { + "id": "49557", + "name": "Findon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.86816000", + "longitude": "-0.40735000" + }, + { + "id": "49558", + "name": "Finedon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33917000", + "longitude": "-0.65008000" + }, + { + "id": "49559", + "name": "Finningley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48696000", + "longitude": "-0.99083000" + }, + { + "id": "49561", + "name": "Fishburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.68296000", + "longitude": "-1.43631000" + }, + { + "id": "49563", + "name": "Fishtoft", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.96095000", + "longitude": "0.02702000" + }, + { + "id": "49564", + "name": "Fitzwilliam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.63288000", + "longitude": "-1.37690000" + }, + { + "id": "49565", + "name": "Five Oak Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18338000", + "longitude": "0.35517000" + }, + { + "id": "49567", + "name": "Flamborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.11487000", + "longitude": "-0.12274000" + }, + { + "id": "49568", + "name": "Fleckney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.53497000", + "longitude": "-1.04598000" + }, + { + "id": "49569", + "name": "Fleet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.28333000", + "longitude": "-0.83333000" + }, + { + "id": "49570", + "name": "Fleetwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.92527000", + "longitude": "-3.01085000" + }, + { + "id": "49571", + "name": "Flexbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83509000", + "longitude": "-4.54499000" + }, + { + "id": "49572", + "name": "Flimby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.68956000", + "longitude": "-3.52092000" + }, + { + "id": "49573", + "name": "Flimwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.05502000", + "longitude": "0.44531000" + }, + { + "id": "49575", + "name": "Flitwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.00338000", + "longitude": "-0.49472000" + }, + { + "id": "49576", + "name": "Flockton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.63034000", + "longitude": "-1.63945000" + }, + { + "id": "49577", + "name": "Flookburgh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.17415000", + "longitude": "-2.97214000" + }, + { + "id": "49578", + "name": "Flore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.23647000", + "longitude": "-1.05726000" + }, + { + "id": "49581", + "name": "Folkestone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.08169000", + "longitude": "1.16734000" + }, + { + "id": "49582", + "name": "Fontwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85520000", + "longitude": "-0.64831000" + }, + { + "id": "49583", + "name": "Ford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.71693000", + "longitude": "-2.86881000" + }, + { + "id": "49584", + "name": "Fordham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31129000", + "longitude": "0.39057000" + }, + { + "id": "49585", + "name": "Fordingbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.92747000", + "longitude": "-1.79029000" + }, + { + "id": "49586", + "name": "Forest Row", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09641000", + "longitude": "0.03262000" + }, + { + "id": "49588", + "name": "Formby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.55838000", + "longitude": "-3.06999000" + }, + { + "id": "49593", + "name": "Fortuneswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.56030000", + "longitude": "-2.44243000" + }, + { + "id": "49594", + "name": "Foulridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.87579000", + "longitude": "-2.16864000" + }, + { + "id": "49595", + "name": "Foulsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.78182000", + "longitude": "1.01049000" + }, + { + "id": "49597", + "name": "Four Lanes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.20163000", + "longitude": "-5.24014000" + }, + { + "id": "49598", + "name": "Four Marks", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10735000", + "longitude": "-1.04945000" + }, + { + "id": "49599", + "name": "Fowey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.33634000", + "longitude": "-4.63860000" + }, + { + "id": "49600", + "name": "Fowlmere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09343000", + "longitude": "0.07433000" + }, + { + "id": "49601", + "name": "Framlingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22117000", + "longitude": "1.34205000" + }, + { + "id": "49602", + "name": "Frampton on Severn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77054000", + "longitude": "-2.36382000" + }, + { + "id": "49604", + "name": "Freckleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.75433000", + "longitude": "-2.86489000" + }, + { + "id": "49605", + "name": "Fremington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.06955000", + "longitude": "-4.13660000" + }, + { + "id": "49606", + "name": "Freshwater", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.68365000", + "longitude": "-1.52616000" + }, + { + "id": "49608", + "name": "Frimley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31667000", + "longitude": "-0.74544000" + }, + { + "id": "49609", + "name": "Frinton-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83061000", + "longitude": "1.24424000" + }, + { + "id": "49611", + "name": "Friston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.76402000", + "longitude": "0.19930000" + }, + { + "id": "49612", + "name": "Frizington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.54185000", + "longitude": "-3.49460000" + }, + { + "id": "49613", + "name": "Frodsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.29485000", + "longitude": "-2.72745000" + }, + { + "id": "49614", + "name": "Frome", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.22834000", + "longitude": "-2.32211000" + }, + { + "id": "49615", + "name": "Fulbourn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.18283000", + "longitude": "0.22046000" + }, + { + "id": "49616", + "name": "Full Sutton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.98869000", + "longitude": "-0.86758000" + }, + { + "id": "49617", + "name": "Furnace Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10742000", + "longitude": "-0.16889000" + }, + { + "id": "49618", + "name": "Fylde", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83333000", + "longitude": "-2.91667000" + }, + { + "id": "49620", + "name": "Gainford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.54718000", + "longitude": "-1.73601000" + }, + { + "id": "49621", + "name": "Gainsborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.38333000", + "longitude": "-0.76667000" + }, + { + "id": "49623", + "name": "Galgate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.99362000", + "longitude": "-2.79201000" + }, + { + "id": "49625", + "name": "Gamlingay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15561000", + "longitude": "-0.19303000" + }, + { + "id": "49627", + "name": "Garforth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.79173000", + "longitude": "-1.38067000" + }, + { + "id": "49628", + "name": "Gargrave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.98353000", + "longitude": "-2.10459000" + }, + { + "id": "49629", + "name": "Garsington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71623000", + "longitude": "-1.16129000" + }, + { + "id": "49630", + "name": "Garstang", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.90081000", + "longitude": "-2.77417000" + }, + { + "id": "49633", + "name": "Gateshead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.93333000", + "longitude": "-1.66667000" + }, + { + "id": "49634", + "name": "Geddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.43757000", + "longitude": "-0.68965000" + }, + { + "id": "49635", + "name": "Gedney Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68434000", + "longitude": "-0.02008000" + }, + { + "id": "49637", + "name": "Germoe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.11539000", + "longitude": "-5.37881000" + }, + { + "id": "49638", + "name": "Gerrards Cross", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58610000", + "longitude": "-0.55543000" + }, + { + "id": "49640", + "name": "Gilberdyke", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.75297000", + "longitude": "-0.73892000" + }, + { + "id": "49643", + "name": "Gillingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38914000", + "longitude": "0.54863000" + }, + { + "id": "49645", + "name": "Girton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.23333000", + "longitude": "0.08333000" + }, + { + "id": "49649", + "name": "Glapwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.18917000", + "longitude": "-1.28334000" + }, + { + "id": "49652", + "name": "Glastonbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.14745000", + "longitude": "-2.72075000" + }, + { + "id": "49653", + "name": "Glazebury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.47078000", + "longitude": "-2.49823000" + }, + { + "id": "49654", + "name": "Glemsford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.10351000", + "longitude": "0.66912000" + }, + { + "id": "49658", + "name": "Glenfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64660000", + "longitude": "-1.19493000" + }, + { + "id": "49661", + "name": "Glinton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63921000", + "longitude": "-0.29629000" + }, + { + "id": "49662", + "name": "Glossop", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.44325000", + "longitude": "-1.94900000" + }, + { + "id": "49663", + "name": "Gloucester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86568000", + "longitude": "-2.24310000" + }, + { + "id": "49664", + "name": "Gloucestershire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83333000", + "longitude": "-2.16667000" + }, + { + "id": "49665", + "name": "Glusburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.90000000", + "longitude": "-2.00000000" + }, + { + "id": "49668", + "name": "Gnosall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.78558000", + "longitude": "-2.25483000" + }, + { + "id": "49669", + "name": "Gobowen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.89615000", + "longitude": "-3.03686000" + }, + { + "id": "49670", + "name": "Godalming", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18580000", + "longitude": "-0.61489000" + }, + { + "id": "49671", + "name": "Godmanchester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31939000", + "longitude": "-0.17509000" + }, + { + "id": "49672", + "name": "Godshill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.63308000", + "longitude": "-1.25476000" + }, + { + "id": "49673", + "name": "Godstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.24779000", + "longitude": "-0.06914000" + }, + { + "id": "49674", + "name": "Golborne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.47693000", + "longitude": "-2.59651000" + }, + { + "id": "49677", + "name": "Goole", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70324000", + "longitude": "-0.87732000" + }, + { + "id": "49678", + "name": "Goosnargh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82200000", + "longitude": "-2.67017000" + }, + { + "id": "49679", + "name": "Goostrey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22731000", + "longitude": "-2.33919000" + }, + { + "id": "49681", + "name": "Goring", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52322000", + "longitude": "-1.13342000" + }, + { + "id": "49682", + "name": "Goring-by-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81239000", + "longitude": "-0.42194000" + }, + { + "id": "49683", + "name": "Gorleston-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57301000", + "longitude": "1.73069000" + }, + { + "id": "49685", + "name": "Gosberton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.86913000", + "longitude": "-0.16102000" + }, + { + "id": "49686", + "name": "Gosfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.93657000", + "longitude": "0.59197000" + }, + { + "id": "49687", + "name": "Gosforth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.00000000", + "longitude": "-1.61667000" + }, + { + "id": "49688", + "name": "Gosport", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.79509000", + "longitude": "-1.12902000" + }, + { + "id": "49689", + "name": "Gossops Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11105000", + "longitude": "-0.21728000" + }, + { + "id": "49690", + "name": "Gotham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.86799000", + "longitude": "-1.20558000" + }, + { + "id": "49691", + "name": "Goudhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11314000", + "longitude": "0.45615000" + }, + { + "id": "49694", + "name": "Goxhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.67635000", + "longitude": "-0.33759000" + }, + { + "id": "49695", + "name": "Grain", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45591000", + "longitude": "0.71126000" + }, + { + "id": "49696", + "name": "Grange Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61185000", + "longitude": "0.08612000" + }, + { + "id": "49697", + "name": "Grange-over-Sands", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.18508000", + "longitude": "-2.92488000" + }, + { + "id": "49699", + "name": "Grantham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.91149000", + "longitude": "-0.64184000" + }, + { + "id": "49701", + "name": "Grappenhall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.37204000", + "longitude": "-2.54675000" + }, + { + "id": "49702", + "name": "Grassington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.07140000", + "longitude": "-1.99822000" + }, + { + "id": "49703", + "name": "Gravesend", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44206000", + "longitude": "0.37106000" + }, + { + "id": "49704", + "name": "Grays", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47566000", + "longitude": "0.32521000" + }, + { + "id": "49705", + "name": "Greasby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.37300000", + "longitude": "-3.12330000" + }, + { + "id": "49706", + "name": "Great Amwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79014000", + "longitude": "-0.01669000" + }, + { + "id": "49707", + "name": "Great Ayton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.49148000", + "longitude": "-1.13623000" + }, + { + "id": "49708", + "name": "Great Bardfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94813000", + "longitude": "0.43645000" + }, + { + "id": "49709", + "name": "Great Barford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15791000", + "longitude": "-0.35235000" + }, + { + "id": "49710", + "name": "Great Barton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.27257000", + "longitude": "0.76679000" + }, + { + "id": "49711", + "name": "Great Bedwyn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37950000", + "longitude": "-1.60151000" + }, + { + "id": "49712", + "name": "Great Bentley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85333000", + "longitude": "1.06379000" + }, + { + "id": "49713", + "name": "Great Bookham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27916000", + "longitude": "-0.37423000" + }, + { + "id": "49714", + "name": "Great Chesterford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06431000", + "longitude": "0.19720000" + }, + { + "id": "49715", + "name": "Great Dunmow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87230000", + "longitude": "0.36255000" + }, + { + "id": "49716", + "name": "Great Eccleston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.85315000", + "longitude": "-2.87026000" + }, + { + "id": "49717", + "name": "Great Glen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57548000", + "longitude": "-1.03490000" + }, + { + "id": "49718", + "name": "Great Gonerby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.93507000", + "longitude": "-0.66685000" + }, + { + "id": "49719", + "name": "Great Gransden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.18546000", + "longitude": "-0.14574000" + }, + { + "id": "49720", + "name": "Great Hanwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68333000", + "longitude": "-2.81667000" + }, + { + "id": "49721", + "name": "Great Harwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.78512000", + "longitude": "-2.40865000" + }, + { + "id": "49722", + "name": "Great Haywood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.80785000", + "longitude": "-2.00024000" + }, + { + "id": "49723", + "name": "Great Horkesley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.93821000", + "longitude": "0.87551000" + }, + { + "id": "49724", + "name": "Great Horwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.97351000", + "longitude": "-0.88088000" + }, + { + "id": "49725", + "name": "Great Houghton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.55352000", + "longitude": "-1.34952000" + }, + { + "id": "49726", + "name": "Great Leighs", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.82761000", + "longitude": "0.50640000" + }, + { + "id": "49727", + "name": "Great Malvern", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11161000", + "longitude": "-2.32515000" + }, + { + "id": "49728", + "name": "Great Marton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.81185000", + "longitude": "-3.02261000" + }, + { + "id": "49729", + "name": "Great Missenden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70419000", + "longitude": "-0.70797000" + }, + { + "id": "49730", + "name": "Great Paxton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.26057000", + "longitude": "-0.22818000" + }, + { + "id": "49731", + "name": "Great Sankey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.39234000", + "longitude": "-2.63994000" + }, + { + "id": "49732", + "name": "Great Torrington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95309000", + "longitude": "-4.14401000" + }, + { + "id": "49733", + "name": "Great Wakering", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55242000", + "longitude": "0.80380000" + }, + { + "id": "49734", + "name": "Great Waldingfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.05545000", + "longitude": "0.77436000" + }, + { + "id": "49735", + "name": "Great Wyrley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.66277000", + "longitude": "-2.01111000" + }, + { + "id": "49736", + "name": "Great Yarmouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60831000", + "longitude": "1.73052000" + }, + { + "id": "49737", + "name": "Great Yeldham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.01347000", + "longitude": "0.56540000" + }, + { + "id": "49738", + "name": "Greater London", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50000000", + "longitude": "-0.16667000" + }, + { + "id": "49739", + "name": "Greatham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.64183000", + "longitude": "-1.23806000" + }, + { + "id": "49741", + "name": "Greenfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.00278000", + "longitude": "-0.46605000" + }, + { + "id": "49742", + "name": "Greenford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52866000", + "longitude": "-0.35508000" + }, + { + "id": "49744", + "name": "Greenhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58342000", + "longitude": "-0.33860000" + }, + { + "id": "49745", + "name": "Greenhithe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45026000", + "longitude": "0.28539000" + }, + { + "id": "49748", + "name": "Greetham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.72059000", + "longitude": "-0.63068000" + }, + { + "id": "49752", + "name": "Grimethorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57650000", + "longitude": "-1.37688000" + }, + { + "id": "49753", + "name": "Grimsby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56539000", + "longitude": "-0.07553000" + }, + { + "id": "49754", + "name": "Grimston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.77312000", + "longitude": "0.54846000" + }, + { + "id": "49755", + "name": "Griston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.55720000", + "longitude": "0.86436000" + }, + { + "id": "49757", + "name": "Groombridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11543000", + "longitude": "0.18295000" + }, + { + "id": "49758", + "name": "Grove", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60954000", + "longitude": "-1.42187000" + }, + { + "id": "49760", + "name": "Grundisburgh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11222000", + "longitude": "1.24618000" + }, + { + "id": "49761", + "name": "Guilden Sutton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20809000", + "longitude": "-2.82984000" + }, + { + "id": "49762", + "name": "Guildford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23536000", + "longitude": "-0.57427000" + }, + { + "id": "49764", + "name": "Guisborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.53478000", + "longitude": "-1.05606000" + }, + { + "id": "49765", + "name": "Guiseley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.87561000", + "longitude": "-1.71232000" + }, + { + "id": "49767", + "name": "Gunness", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59080000", + "longitude": "-0.72834000" + }, + { + "id": "49768", + "name": "Gunnislake", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.52441000", + "longitude": "-4.21333000" + }, + { + "id": "49770", + "name": "Hackleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.18798000", + "longitude": "-0.82312000" + }, + { + "id": "49771", + "name": "Haddenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77326000", + "longitude": "-0.92628000" + }, + { + "id": "49773", + "name": "Hadleigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55269000", + "longitude": "0.60983000" + }, + { + "id": "49774", + "name": "Hadley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70000000", + "longitude": "-2.48333000" + }, + { + "id": "49775", + "name": "Hadley Wood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66669000", + "longitude": "-0.16981000" + }, + { + "id": "49776", + "name": "Hadlow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.22417000", + "longitude": "0.33914000" + }, + { + "id": "49777", + "name": "Hadston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.29428000", + "longitude": "-1.60392000" + }, + { + "id": "49778", + "name": "Hagley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.42620000", + "longitude": "-2.12819000" + }, + { + "id": "49779", + "name": "Hailsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.86220000", + "longitude": "0.25775000" + }, + { + "id": "49780", + "name": "Hainault", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60836000", + "longitude": "0.10716000" + }, + { + "id": "49781", + "name": "Hale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.37831000", + "longitude": "-2.33271000" + }, + { + "id": "49782", + "name": "Halesowen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.44859000", + "longitude": "-2.04938000" + }, + { + "id": "49783", + "name": "Halesworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34640000", + "longitude": "1.50290000" + }, + { + "id": "49784", + "name": "Halifax", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.71667000", + "longitude": "-1.85000000" + }, + { + "id": "49787", + "name": "Halling", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.35142000", + "longitude": "0.44520000" + }, + { + "id": "49788", + "name": "Hallow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22344000", + "longitude": "-2.25468000" + }, + { + "id": "49789", + "name": "Halstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94506000", + "longitude": "0.63927000" + }, + { + "id": "49790", + "name": "Halton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.31667000", + "longitude": "-2.70000000" + }, + { + "id": "49791", + "name": "Haltwhistle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.97101000", + "longitude": "-2.45682000" + }, + { + "id": "49792", + "name": "Hamble-le-Rice", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85966000", + "longitude": "-1.32432000" + }, + { + "id": "49793", + "name": "Hambleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76667000", + "longitude": "-1.16667000" + }, + { + "id": "49794", + "name": "Hameldon Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.75570000", + "longitude": "-2.29190000" + }, + { + "id": "49796", + "name": "Hampshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.00000000", + "longitude": "-1.25000000" + }, + { + "id": "49797", + "name": "Hampton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41334000", + "longitude": "-0.36701000" + }, + { + "id": "49798", + "name": "Hampton in Arden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.42540000", + "longitude": "-1.70271000" + }, + { + "id": "49799", + "name": "Handcross", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.05383000", + "longitude": "-0.20076000" + }, + { + "id": "49800", + "name": "Hannington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63333000", + "longitude": "-1.75000000" + }, + { + "id": "49801", + "name": "Hanslope", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11425000", + "longitude": "-0.82672000" + }, + { + "id": "49802", + "name": "Hapton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.78333000", + "longitude": "-2.31667000" + }, + { + "id": "49803", + "name": "Harbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.23537000", + "longitude": "-1.45706000" + }, + { + "id": "49804", + "name": "Hardingstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21358000", + "longitude": "-0.88582000" + }, + { + "id": "49805", + "name": "Hardwick Village", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.27372000", + "longitude": "-1.04320000" + }, + { + "id": "49806", + "name": "Harefield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60333000", + "longitude": "-0.48546000" + }, + { + "id": "49808", + "name": "Harleston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.40302000", + "longitude": "1.29664000" + }, + { + "id": "49809", + "name": "Harlington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.96288000", + "longitude": "-0.49241000" + }, + { + "id": "49810", + "name": "Harlow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77655000", + "longitude": "0.11158000" + }, + { + "id": "49811", + "name": "Harold Wood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59462000", + "longitude": "0.23294000" + }, + { + "id": "49812", + "name": "Harpenden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81684000", + "longitude": "-0.35706000" + }, + { + "id": "49813", + "name": "Harpole", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.24246000", + "longitude": "-0.98937000" + }, + { + "id": "49814", + "name": "Harrietsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.24252000", + "longitude": "0.67060000" + }, + { + "id": "49815", + "name": "Harringay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58240000", + "longitude": "-0.09956000" + }, + { + "id": "49816", + "name": "Harrogate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.99078000", + "longitude": "-1.53730000" + }, + { + "id": "49817", + "name": "Harrold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.20127000", + "longitude": "-0.61038000" + }, + { + "id": "49818", + "name": "Harrow on the Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57142000", + "longitude": "-0.33371000" + }, + { + "id": "49819", + "name": "Harston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13691000", + "longitude": "0.07999000" + }, + { + "id": "49820", + "name": "Harthill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.31667000", + "longitude": "-1.26667000" + }, + { + "id": "49822", + "name": "Hartlebury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33333000", + "longitude": "-2.23333000" + }, + { + "id": "49823", + "name": "Hartlepool", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.66667000", + "longitude": "-1.25000000" + }, + { + "id": "49824", + "name": "Hartley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38673000", + "longitude": "0.30367000" + }, + { + "id": "49825", + "name": "Hartley Wintney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30379000", + "longitude": "-0.90019000" + }, + { + "id": "49826", + "name": "Hartshill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.54831000", + "longitude": "-1.52221000" + }, + { + "id": "49827", + "name": "Hartwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.14616000", + "longitude": "-0.85376000" + }, + { + "id": "49828", + "name": "Harvington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.14095000", + "longitude": "-1.92313000" + }, + { + "id": "49829", + "name": "Harwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59947000", + "longitude": "-1.29175000" + }, + { + "id": "49830", + "name": "Harwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94194000", + "longitude": "1.28437000" + }, + { + "id": "49831", + "name": "Haslemere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09015000", + "longitude": "-0.70785000" + }, + { + "id": "49832", + "name": "Haslingden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70326000", + "longitude": "-2.32382000" + }, + { + "id": "49833", + "name": "Haslingfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15016000", + "longitude": "0.05579000" + }, + { + "id": "49834", + "name": "Hassocks", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.92814000", + "longitude": "-0.16617000" + }, + { + "id": "49835", + "name": "Hastings", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85519000", + "longitude": "0.57292000" + }, + { + "id": "49836", + "name": "Haswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.78333000", + "longitude": "-1.41667000" + }, + { + "id": "49837", + "name": "Hatfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.76338000", + "longitude": "-0.22419000" + }, + { + "id": "49838", + "name": "Hatfield Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81233000", + "longitude": "0.21243000" + }, + { + "id": "49839", + "name": "Hatfield Peverel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77591000", + "longitude": "0.59489000" + }, + { + "id": "49840", + "name": "Hatherleigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.82144000", + "longitude": "-4.07228000" + }, + { + "id": "49841", + "name": "Hathern", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.79548000", + "longitude": "-1.25644000" + }, + { + "id": "49842", + "name": "Hathersage", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.33030000", + "longitude": "-1.65398000" + }, + { + "id": "49843", + "name": "Hatton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.30007000", + "longitude": "-1.63260000" + }, + { + "id": "49844", + "name": "Haughley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21907000", + "longitude": "0.96800000" + }, + { + "id": "49845", + "name": "Haughton Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.44118000", + "longitude": "-2.09827000" + }, + { + "id": "49846", + "name": "Havant", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85670000", + "longitude": "-0.98559000" + }, + { + "id": "49848", + "name": "Haverhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08226000", + "longitude": "0.43891000" + }, + { + "id": "49849", + "name": "Haverigg", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.19973000", + "longitude": "-3.29263000" + }, + { + "id": "49852", + "name": "Hawkhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.04790000", + "longitude": "0.51095000" + }, + { + "id": "49853", + "name": "Hawkinge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11276000", + "longitude": "1.16176000" + }, + { + "id": "49854", + "name": "Haworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82905000", + "longitude": "-1.94827000" + }, + { + "id": "49855", + "name": "Hawthorn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.80000000", + "longitude": "-1.35000000" + }, + { + "id": "49856", + "name": "Haxby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.01422000", + "longitude": "-1.07121000" + }, + { + "id": "49857", + "name": "Haxey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48937000", + "longitude": "-0.84020000" + }, + { + "id": "49859", + "name": "Haydock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46723000", + "longitude": "-2.68166000" + }, + { + "id": "49860", + "name": "Haydon Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.97486000", + "longitude": "-2.24680000" + }, + { + "id": "49861", + "name": "Hayes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51579000", + "longitude": "-0.42340000" + }, + { + "id": "49862", + "name": "Hayfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.37893000", + "longitude": "-1.94544000" + }, + { + "id": "49863", + "name": "Hayle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.18392000", + "longitude": "-5.42137000" + }, + { + "id": "49864", + "name": "Hayling Island", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.78380000", + "longitude": "-0.96869000" + }, + { + "id": "49865", + "name": "Haynes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06646000", + "longitude": "-0.39946000" + }, + { + "id": "49866", + "name": "Hayton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.90000000", + "longitude": "-0.75000000" + }, + { + "id": "49867", + "name": "Haywards Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.99769000", + "longitude": "-0.10313000" + }, + { + "id": "49868", + "name": "Hazel Grove", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.38333000", + "longitude": "-2.11667000" + }, + { + "id": "49869", + "name": "Hazlerigg", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.04135000", + "longitude": "-1.63912000" + }, + { + "id": "49870", + "name": "Heacham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90782000", + "longitude": "0.49387000" + }, + { + "id": "49872", + "name": "Headcorn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.16966000", + "longitude": "0.62433000" + }, + { + "id": "49873", + "name": "Heage", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.05050000", + "longitude": "-1.44688000" + }, + { + "id": "49874", + "name": "Healing", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58101000", + "longitude": "-0.16202000" + }, + { + "id": "49875", + "name": "Heanor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.01372000", + "longitude": "-1.35383000" + }, + { + "id": "49876", + "name": "Heath and Reach", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94517000", + "longitude": "-0.65697000" + }, + { + "id": "49877", + "name": "Heathfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.96718000", + "longitude": "0.25612000" + }, + { + "id": "49878", + "name": "Heaton Chapel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.43015000", + "longitude": "-2.17538000" + }, + { + "id": "49879", + "name": "Heavitree", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.72044000", + "longitude": "-3.49646000" + }, + { + "id": "49880", + "name": "Hebburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.97302000", + "longitude": "-1.51546000" + }, + { + "id": "49881", + "name": "Hebden Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.74093000", + "longitude": "-2.01337000" + }, + { + "id": "49882", + "name": "Heckington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98183000", + "longitude": "-0.29903000" + }, + { + "id": "49883", + "name": "Heckmondwike", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70646000", + "longitude": "-1.67747000" + }, + { + "id": "49884", + "name": "Heddon on the Wall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.99692000", + "longitude": "-1.79386000" + }, + { + "id": "49885", + "name": "Hedge End", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91234000", + "longitude": "-1.30076000" + }, + { + "id": "49886", + "name": "Hedon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.73962000", + "longitude": "-0.19655000" + }, + { + "id": "49887", + "name": "Heighington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.21241000", + "longitude": "-0.45902000" + }, + { + "id": "49889", + "name": "Hellaby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.42257000", + "longitude": "-1.24125000" + }, + { + "id": "49890", + "name": "Hellifield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.00486000", + "longitude": "-2.22302000" + }, + { + "id": "49891", + "name": "Helmsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.24577000", + "longitude": "-1.05683000" + }, + { + "id": "49892", + "name": "Helpston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63233000", + "longitude": "-0.34676000" + }, + { + "id": "49893", + "name": "Helsby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.27396000", + "longitude": "-2.76905000" + }, + { + "id": "49894", + "name": "Helston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.10319000", + "longitude": "-5.27045000" + }, + { + "id": "49895", + "name": "Hemel Hempstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75368000", + "longitude": "-0.44975000" + }, + { + "id": "49896", + "name": "Hemingbrough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76863000", + "longitude": "-0.97673000" + }, + { + "id": "49897", + "name": "Hemingford Grey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31756000", + "longitude": "-0.10029000" + }, + { + "id": "49898", + "name": "Hemsby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.69714000", + "longitude": "1.69181000" + }, + { + "id": "49899", + "name": "Hemsworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61267000", + "longitude": "-1.35424000" + }, + { + "id": "49900", + "name": "Hemyock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91234000", + "longitude": "-3.22807000" + }, + { + "id": "49901", + "name": "Henfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.92995000", + "longitude": "-0.27071000" + }, + { + "id": "49903", + "name": "Henley in Arden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.29032000", + "longitude": "-1.77807000" + }, + { + "id": "49904", + "name": "Henley-on-Thames", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53333000", + "longitude": "-0.90000000" + }, + { + "id": "49906", + "name": "Henlow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03021000", + "longitude": "-0.28599000" + }, + { + "id": "49907", + "name": "Henstridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.97717000", + "longitude": "-2.39500000" + }, + { + "id": "49908", + "name": "Hereford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.05684000", + "longitude": "-2.71482000" + }, + { + "id": "49909", + "name": "Herefordshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08333000", + "longitude": "-2.75000000" + }, + { + "id": "49910", + "name": "Hermitage", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45540000", + "longitude": "-1.26823000" + }, + { + "id": "49911", + "name": "Herne Bay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37300000", + "longitude": "1.12857000" + }, + { + "id": "49912", + "name": "Herstmonceux", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.88958000", + "longitude": "0.32290000" + }, + { + "id": "49913", + "name": "Hertford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79588000", + "longitude": "-0.07854000" + }, + { + "id": "49914", + "name": "Hertfordshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83333000", + "longitude": "-0.25000000" + }, + { + "id": "49915", + "name": "Heswall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.32733000", + "longitude": "-3.09648000" + }, + { + "id": "49916", + "name": "Hethersett", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.59761000", + "longitude": "1.17359000" + }, + { + "id": "49917", + "name": "Hetton-Le-Hole", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.81667000", + "longitude": "-1.45000000" + }, + { + "id": "49918", + "name": "Hexham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.96986000", + "longitude": "-2.10400000" + }, + { + "id": "49919", + "name": "Heysham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.04367000", + "longitude": "-2.89322000" + }, + { + "id": "49920", + "name": "Heywood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59245000", + "longitude": "-2.21941000" + }, + { + "id": "49921", + "name": "Hibaldstow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51133000", + "longitude": "-0.52082000" + }, + { + "id": "49922", + "name": "High Barnet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65621000", + "longitude": "-0.20768000" + }, + { + "id": "49923", + "name": "High Bentham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.11823000", + "longitude": "-2.51199000" + }, + { + "id": "49925", + "name": "High Etherley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.65391000", + "longitude": "-1.74363000" + }, + { + "id": "49926", + "name": "High Halden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10331000", + "longitude": "0.71394000" + }, + { + "id": "49927", + "name": "High Halstow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44775000", + "longitude": "0.55558000" + }, + { + "id": "49928", + "name": "High Legh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.35139000", + "longitude": "-2.45380000" + }, + { + "id": "49929", + "name": "High Ongar", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70953000", + "longitude": "0.26221000" + }, + { + "id": "49930", + "name": "High Peak", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.36797000", + "longitude": "-1.84536000" + }, + { + "id": "49932", + "name": "High Wycombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62907000", + "longitude": "-0.74934000" + }, + { + "id": "49933", + "name": "Higham Ferrers", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.30596000", + "longitude": "-0.59342000" + }, + { + "id": "49934", + "name": "Highbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.21667000", + "longitude": "-2.98333000" + }, + { + "id": "49935", + "name": "Highclere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33860000", + "longitude": "-1.37569000" + }, + { + "id": "49937", + "name": "Highley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.44866000", + "longitude": "-2.38251000" + }, + { + "id": "49938", + "name": "Hightown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.52452000", + "longitude": "-3.06192000" + }, + { + "id": "49939", + "name": "Highworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63051000", + "longitude": "-1.71100000" + }, + { + "id": "49942", + "name": "Hilton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.27908000", + "longitude": "-0.11222000" + }, + { + "id": "49943", + "name": "Hinchley Wood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37461000", + "longitude": "-0.33838000" + }, + { + "id": "49944", + "name": "Hinckley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.53890000", + "longitude": "-1.37613000" + }, + { + "id": "49945", + "name": "Hindhead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.11381000", + "longitude": "-0.73351000" + }, + { + "id": "49946", + "name": "Hindley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53333000", + "longitude": "-2.58333000" + }, + { + "id": "49947", + "name": "Hindon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09222000", + "longitude": "-2.12583000" + }, + { + "id": "49948", + "name": "Hingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57969000", + "longitude": "0.98422000" + }, + { + "id": "49949", + "name": "Hinton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.16798000", + "longitude": "-1.21837000" + }, + { + "id": "49951", + "name": "Histon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25166000", + "longitude": "0.10643000" + }, + { + "id": "49952", + "name": "Hitchin", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94924000", + "longitude": "-0.28496000" + }, + { + "id": "49953", + "name": "Hockley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.50000000", + "longitude": "-1.91667000" + }, + { + "id": "49954", + "name": "Hockley Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.35294000", + "longitude": "-1.77816000" + }, + { + "id": "49955", + "name": "Hockliffe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.93109000", + "longitude": "-0.58652000" + }, + { + "id": "49956", + "name": "Hockwold cum Wilton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.46380000", + "longitude": "0.54614000" + }, + { + "id": "49957", + "name": "Hoddesdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.76148000", + "longitude": "-0.01144000" + }, + { + "id": "49958", + "name": "Holbeach", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.80401000", + "longitude": "0.01442000" + }, + { + "id": "49959", + "name": "Holbeck", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.78359000", + "longitude": "-1.56791000" + }, + { + "id": "49960", + "name": "Holbrook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.98340000", + "longitude": "1.15854000" + }, + { + "id": "49961", + "name": "Hollingworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46300000", + "longitude": "-1.99100000" + }, + { + "id": "49962", + "name": "Holloway", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55237000", + "longitude": "-0.12497000" + }, + { + "id": "49963", + "name": "Hollym", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70402000", + "longitude": "0.04008000" + }, + { + "id": "49964", + "name": "Holmes Chapel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20140000", + "longitude": "-2.35742000" + }, + { + "id": "49965", + "name": "Holmfirth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56968000", + "longitude": "-1.78777000" + }, + { + "id": "49966", + "name": "Holmwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18049000", + "longitude": "-0.32176000" + }, + { + "id": "49967", + "name": "Holsworthy", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81196000", + "longitude": "-4.35383000" + }, + { + "id": "49968", + "name": "Holt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.35556000", + "longitude": "-2.19722000" + }, + { + "id": "49969", + "name": "Holtby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.97876000", + "longitude": "-0.97255000" + }, + { + "id": "49970", + "name": "Holton le Clay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50520000", + "longitude": "-0.06300000" + }, + { + "id": "49974", + "name": "Holywell Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.67406000", + "longitude": "-1.86682000" + }, + { + "id": "49976", + "name": "Honeybourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09513000", + "longitude": "-1.83129000" + }, + { + "id": "49977", + "name": "Honiton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.79960000", + "longitude": "-3.18899000" + }, + { + "id": "49978", + "name": "Hoo", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.42050000", + "longitude": "0.56300000" + }, + { + "id": "49979", + "name": "Hook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36803000", + "longitude": "-0.30650000" + }, + { + "id": "49981", + "name": "Hook Norton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99564000", + "longitude": "-1.48277000" + }, + { + "id": "49982", + "name": "Hoole", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19980000", + "longitude": "-2.87689000" + }, + { + "id": "49984", + "name": "Hope Valley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34819000", + "longitude": "-1.74485000" + }, + { + "id": "49986", + "name": "Hopton on Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.53333000", + "longitude": "1.73333000" + }, + { + "id": "49987", + "name": "Horam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.93523000", + "longitude": "0.24436000" + }, + { + "id": "49988", + "name": "Horbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.66051000", + "longitude": "-1.56014000" + }, + { + "id": "49989", + "name": "Horley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.17423000", + "longitude": "-0.15919000" + }, + { + "id": "49990", + "name": "Horncastle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20775000", + "longitude": "-0.11720000" + }, + { + "id": "49991", + "name": "Hornchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55685000", + "longitude": "0.21664000" + }, + { + "id": "49992", + "name": "Horndon on the Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52358000", + "longitude": "0.40491000" + }, + { + "id": "49993", + "name": "Horning", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70460000", + "longitude": "1.46294000" + }, + { + "id": "49994", + "name": "Hornsea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91041000", + "longitude": "-0.16806000" + }, + { + "id": "49995", + "name": "Horrabridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.50843000", + "longitude": "-4.10042000" + }, + { + "id": "49996", + "name": "Horsford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70153000", + "longitude": "1.24015000" + }, + { + "id": "49997", + "name": "Horsforth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.84260000", + "longitude": "-1.63754000" + }, + { + "id": "49998", + "name": "Horsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.06314000", + "longitude": "-0.32757000" + }, + { + "id": "49999", + "name": "Horsmonden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.13908000", + "longitude": "0.42881000" + }, + { + "id": "50000", + "name": "Horsted Keynes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.03659000", + "longitude": "-0.02798000" + }, + { + "id": "50001", + "name": "Horton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47315000", + "longitude": "-0.54245000" + }, + { + "id": "50002", + "name": "Horton Kirby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39481000", + "longitude": "0.24483000" + }, + { + "id": "50003", + "name": "Horwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.60126000", + "longitude": "-2.54975000" + }, + { + "id": "50004", + "name": "Hotham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.79583000", + "longitude": "-0.64253000" + }, + { + "id": "50005", + "name": "Houghton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33282000", + "longitude": "-0.12068000" + }, + { + "id": "50006", + "name": "Houghton Conquest", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06178000", + "longitude": "-0.47756000" + }, + { + "id": "50007", + "name": "Houghton on the Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62663000", + "longitude": "-0.99546000" + }, + { + "id": "50008", + "name": "Houghton-Le-Spring", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.84034000", + "longitude": "-1.46427000" + }, + { + "id": "50009", + "name": "Hounslow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46839000", + "longitude": "-0.36092000" + }, + { + "id": "50011", + "name": "Hove", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83088000", + "longitude": "-0.16720000" + }, + { + "id": "50012", + "name": "Hoveton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.71490000", + "longitude": "1.41054000" + }, + { + "id": "50013", + "name": "Howden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.74630000", + "longitude": "-0.86994000" + }, + { + "id": "50015", + "name": "Hoylake", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.39046000", + "longitude": "-3.18066000" + }, + { + "id": "50016", + "name": "Hoyland Nether", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50000000", + "longitude": "-1.45000000" + }, + { + "id": "50017", + "name": "Hucknall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.03333000", + "longitude": "-1.20000000" + }, + { + "id": "50018", + "name": "Huddersfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.64904000", + "longitude": "-1.78416000" + }, + { + "id": "50019", + "name": "Hugh Town", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "49.91447000", + "longitude": "-6.31145000" + }, + { + "id": "50020", + "name": "Hulme", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46572000", + "longitude": "-2.24885000" + }, + { + "id": "50021", + "name": "Humberston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53036000", + "longitude": "-0.02465000" + }, + { + "id": "50023", + "name": "Hungerford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41513000", + "longitude": "-1.51556000" + }, + { + "id": "50024", + "name": "Hunmanby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.17957000", + "longitude": "-0.32007000" + }, + { + "id": "50025", + "name": "Hunstanton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.95000000", + "longitude": "0.50000000" + }, + { + "id": "50026", + "name": "Huntingdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33049000", + "longitude": "-0.18651000" + }, + { + "id": "50027", + "name": "Huntley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87172000", + "longitude": "-2.40137000" + }, + { + "id": "50029", + "name": "Huntspill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.20562000", + "longitude": "-2.98735000" + }, + { + "id": "50030", + "name": "Hunwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.68791000", + "longitude": "-1.70539000" + }, + { + "id": "50031", + "name": "Hurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45791000", + "longitude": "-0.85196000" + }, + { + "id": "50032", + "name": "Hurstpierpoint", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.93388000", + "longitude": "-0.18007000" + }, + { + "id": "50033", + "name": "Husbands Bosworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45232000", + "longitude": "-1.05557000" + }, + { + "id": "50034", + "name": "Husborne Crawley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.01637000", + "longitude": "-0.61056000" + }, + { + "id": "50035", + "name": "Huyton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41150000", + "longitude": "-2.83935000" + }, + { + "id": "50036", + "name": "Hyde", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.45131000", + "longitude": "-2.07943000" + }, + { + "id": "50037", + "name": "Hyde Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69336000", + "longitude": "-0.65437000" + }, + { + "id": "50038", + "name": "Hythe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.86004000", + "longitude": "-1.40162000" + }, + { + "id": "50039", + "name": "Ibstock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68554000", + "longitude": "-1.39965000" + }, + { + "id": "50040", + "name": "Ilchester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.00587000", + "longitude": "-2.67981000" + }, + { + "id": "50041", + "name": "Ilfracombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.20930000", + "longitude": "-4.11344000" + }, + { + "id": "50042", + "name": "Ilkeston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.97055000", + "longitude": "-1.30951000" + }, + { + "id": "50043", + "name": "Ilkley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.92449000", + "longitude": "-1.82326000" + }, + { + "id": "50044", + "name": "Ilminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.92684000", + "longitude": "-2.91009000" + }, + { + "id": "50045", + "name": "Immingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61239000", + "longitude": "-0.22219000" + }, + { + "id": "50046", + "name": "Ince Blundell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.52429000", + "longitude": "-3.02733000" + }, + { + "id": "50047", + "name": "Ince-in-Makerfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53333000", + "longitude": "-2.61667000" + }, + { + "id": "50050", + "name": "Ingatestone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67027000", + "longitude": "0.38359000" + }, + { + "id": "50051", + "name": "Ingleby Greenhow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.44983000", + "longitude": "-1.10687000" + }, + { + "id": "50052", + "name": "Ingleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.15392000", + "longitude": "-2.46849000" + }, + { + "id": "50053", + "name": "Ingoldmells", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19414000", + "longitude": "0.33358000" + }, + { + "id": "50054", + "name": "Ingrave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60416000", + "longitude": "0.34058000" + }, + { + "id": "50055", + "name": "Inkberrow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21284000", + "longitude": "-1.98093000" + }, + { + "id": "50066", + "name": "Ipplepen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.48919000", + "longitude": "-3.63900000" + }, + { + "id": "50067", + "name": "Ipswich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.05917000", + "longitude": "1.15545000" + }, + { + "id": "50068", + "name": "Irchester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.28108000", + "longitude": "-0.64510000" + }, + { + "id": "50069", + "name": "Irlam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.44253000", + "longitude": "-2.42323000" + }, + { + "id": "50070", + "name": "Ironbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62795000", + "longitude": "-2.48465000" + }, + { + "id": "50071", + "name": "Irthlingborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.32674000", + "longitude": "-0.61129000" + }, + { + "id": "50082", + "name": "Isle of Wight", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.66667000", + "longitude": "-1.33333000" + }, + { + "id": "50083", + "name": "Isleham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34289000", + "longitude": "0.41212000" + }, + { + "id": "50084", + "name": "Isles of Scilly", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "49.92117000", + "longitude": "-6.29431000" + }, + { + "id": "50085", + "name": "Isleworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47518000", + "longitude": "-0.34246000" + }, + { + "id": "50086", + "name": "Islington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53622000", + "longitude": "-0.10304000" + }, + { + "id": "50087", + "name": "Iver", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50000000", + "longitude": "-0.50000000" + }, + { + "id": "50088", + "name": "Iver Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53642000", + "longitude": "-0.51790000" + }, + { + "id": "50089", + "name": "Ivinghoe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83602000", + "longitude": "-0.62983000" + }, + { + "id": "50090", + "name": "Ivybridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.39039000", + "longitude": "-3.91914000" + }, + { + "id": "50091", + "name": "Iwade", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37754000", + "longitude": "0.72935000" + }, + { + "id": "50092", + "name": "Ixworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.29893000", + "longitude": "0.83410000" + }, + { + "id": "50093", + "name": "Jarrow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.98036000", + "longitude": "-1.48423000" + }, + { + "id": "50098", + "name": "Keadby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59308000", + "longitude": "-0.74021000" + }, + { + "id": "50100", + "name": "Kearsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53333000", + "longitude": "-2.38333000" + }, + { + "id": "50101", + "name": "Kedington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09282000", + "longitude": "0.48675000" + }, + { + "id": "50102", + "name": "Keelby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57580000", + "longitude": "-0.24701000" + }, + { + "id": "50103", + "name": "Keele", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00382000", + "longitude": "-2.28741000" + }, + { + "id": "50104", + "name": "Kegworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.83482000", + "longitude": "-1.28042000" + }, + { + "id": "50105", + "name": "Keighley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.86791000", + "longitude": "-1.90664000" + }, + { + "id": "50107", + "name": "Kelloe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.71894000", + "longitude": "-1.47495000" + }, + { + "id": "50108", + "name": "Kelsall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20775000", + "longitude": "-2.71242000" + }, + { + "id": "50111", + "name": "Kelvedon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.84007000", + "longitude": "0.70570000" + }, + { + "id": "50112", + "name": "Kelvedon Hatch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66739000", + "longitude": "0.26814000" + }, + { + "id": "50114", + "name": "Kempsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13936000", + "longitude": "-2.21751000" + }, + { + "id": "50115", + "name": "Kempston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11599000", + "longitude": "-0.50044000" + }, + { + "id": "50116", + "name": "Kempston Hardwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08956000", + "longitude": "-0.49908000" + }, + { + "id": "50117", + "name": "Kemsing", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30604000", + "longitude": "0.22917000" + }, + { + "id": "50118", + "name": "Kendal", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.32681000", + "longitude": "-2.74757000" + }, + { + "id": "50119", + "name": "Kenilworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34958000", + "longitude": "-1.58276000" + }, + { + "id": "50120", + "name": "Kennington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.16740000", + "longitude": "0.88491000" + }, + { + "id": "50122", + "name": "Kensworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85173000", + "longitude": "-0.50386000" + }, + { + "id": "50123", + "name": "Kent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.16667000", + "longitude": "0.66667000" + }, + { + "id": "50124", + "name": "Kenton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.63978000", + "longitude": "-3.47151000" + }, + { + "id": "50125", + "name": "Keresley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45156000", + "longitude": "-1.53319000" + }, + { + "id": "50126", + "name": "Kesgrave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06241000", + "longitude": "1.23650000" + }, + { + "id": "50127", + "name": "Kessingland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41987000", + "longitude": "1.70878000" + }, + { + "id": "50128", + "name": "Keswick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.59947000", + "longitude": "-3.13256000" + }, + { + "id": "50129", + "name": "Kettering", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.39836000", + "longitude": "-0.72571000" + }, + { + "id": "50130", + "name": "Ketton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62804000", + "longitude": "-0.55459000" + }, + { + "id": "50131", + "name": "Keyingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70961000", + "longitude": "-0.11325000" + }, + { + "id": "50132", + "name": "Keynsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41387000", + "longitude": "-2.49780000" + }, + { + "id": "50133", + "name": "Keyworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.87122000", + "longitude": "-1.08991000" + }, + { + "id": "50134", + "name": "Kibworth Harcourt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.54439000", + "longitude": "-0.99491000" + }, + { + "id": "50135", + "name": "Kidderminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.38819000", + "longitude": "-2.25000000" + }, + { + "id": "50136", + "name": "Kidlington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.82166000", + "longitude": "-1.28860000" + }, + { + "id": "50137", + "name": "Kidsgrove", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.08691000", + "longitude": "-2.23777000" + }, + { + "id": "50141", + "name": "Kilburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00580000", + "longitude": "-1.43869000" + }, + { + "id": "50144", + "name": "Kilham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.06413000", + "longitude": "-0.38057000" + }, + { + "id": "50146", + "name": "Killamarsh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.32395000", + "longitude": "-1.31688000" + }, + { + "id": "50153", + "name": "Kilsby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33375000", + "longitude": "-1.17505000" + }, + { + "id": "50156", + "name": "Kimberley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98333000", + "longitude": "-1.26667000" + }, + { + "id": "50157", + "name": "Kimbolton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.29704000", + "longitude": "-0.38916000" + }, + { + "id": "50158", + "name": "Kimpton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85089000", + "longitude": "-0.29980000" + }, + { + "id": "50160", + "name": "Kineton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15645000", + "longitude": "-1.51148000" + }, + { + "id": "50161", + "name": "King's Clipstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.17690000", + "longitude": "-1.10129000" + }, + { + "id": "50162", + "name": "King's Lynn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.75172000", + "longitude": "0.39516000" + }, + { + "id": "50165", + "name": "Kings Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27437000", + "longitude": "0.40237000" + }, + { + "id": "50166", + "name": "Kings Langley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71395000", + "longitude": "-0.45044000" + }, + { + "id": "50167", + "name": "Kings Sutton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.02313000", + "longitude": "-1.27613000" + }, + { + "id": "50168", + "name": "Kings Worthy", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.08862000", + "longitude": "-1.29780000" + }, + { + "id": "50169", + "name": "Kingsbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.28451000", + "longitude": "-3.77638000" + }, + { + "id": "50170", + "name": "Kingsbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.56106000", + "longitude": "-1.67936000" + }, + { + "id": "50171", + "name": "Kingsclere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32487000", + "longitude": "-1.24339000" + }, + { + "id": "50172", + "name": "Kingskerswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.49915000", + "longitude": "-3.58195000" + }, + { + "id": "50174", + "name": "Kingsland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.24911000", + "longitude": "-2.81542000" + }, + { + "id": "50175", + "name": "Kingsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26667000", + "longitude": "-2.66667000" + }, + { + "id": "50176", + "name": "Kingsteignton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.55000000", + "longitude": "-3.58333000" + }, + { + "id": "50177", + "name": "Kingston Bagpuize", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68150000", + "longitude": "-1.42041000" + }, + { + "id": "50178", + "name": "Kingston Seymour", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39833000", + "longitude": "-2.86111000" + }, + { + "id": "50179", + "name": "Kingston upon Hull", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.74460000", + "longitude": "-0.33525000" + }, + { + "id": "50180", + "name": "Kingston upon Thames", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41259000", + "longitude": "-0.29740000" + }, + { + "id": "50182", + "name": "Kingswinford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.49755000", + "longitude": "-2.16889000" + }, + { + "id": "50183", + "name": "Kingswood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45278000", + "longitude": "-2.50833000" + }, + { + "id": "50184", + "name": "Kington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.20000000", + "longitude": "-2.01667000" + }, + { + "id": "50188", + "name": "Kintbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39958000", + "longitude": "-1.44865000" + }, + { + "id": "50190", + "name": "Kinvere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45000000", + "longitude": "-2.23333000" + }, + { + "id": "50191", + "name": "Kippax", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76687000", + "longitude": "-1.37099000" + }, + { + "id": "50193", + "name": "Kirby Muxloe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63025000", + "longitude": "-1.22755000" + }, + { + "id": "50195", + "name": "Kirk Sandall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56211000", + "longitude": "-1.06876000" + }, + { + "id": "50196", + "name": "Kirkburton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61047000", + "longitude": "-1.70292000" + }, + { + "id": "50197", + "name": "Kirkby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48138000", + "longitude": "-2.89215000" + }, + { + "id": "50200", + "name": "Kirkby in Ashfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.09982000", + "longitude": "-1.24379000" + }, + { + "id": "50198", + "name": "Kirkby Lonsdale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.20259000", + "longitude": "-2.59827000" + }, + { + "id": "50199", + "name": "Kirkby Stephen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.47229000", + "longitude": "-2.34865000" + }, + { + "id": "50201", + "name": "Kirkbymoorside", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.27014000", + "longitude": "-0.93218000" + }, + { + "id": "50205", + "name": "Kirkham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.78244000", + "longitude": "-2.87189000" + }, + { + "id": "50207", + "name": "Kirklees", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58333000", + "longitude": "-1.75000000" + }, + { + "id": "50212", + "name": "Kirton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.92774000", + "longitude": "-0.06008000" + }, + { + "id": "50213", + "name": "Kirton in Lindsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.47548000", + "longitude": "-0.59566000" + }, + { + "id": "50214", + "name": "Kislingbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22976000", + "longitude": "-0.97914000" + }, + { + "id": "50215", + "name": "Kiveton Park", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34120000", + "longitude": "-1.25498000" + }, + { + "id": "50216", + "name": "Knaphill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32010000", + "longitude": "-0.61584000" + }, + { + "id": "50217", + "name": "Knaresborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.00910000", + "longitude": "-1.46851000" + }, + { + "id": "50218", + "name": "Knebworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86674000", + "longitude": "-0.18394000" + }, + { + "id": "50220", + "name": "Knottingley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70778000", + "longitude": "-1.25639000" + }, + { + "id": "50221", + "name": "Knowle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.38333000", + "longitude": "-1.73333000" + }, + { + "id": "50222", + "name": "Knowsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41667000", + "longitude": "-2.83333000" + }, + { + "id": "50223", + "name": "Knutsford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.30289000", + "longitude": "-2.37482000" + }, + { + "id": "50224", + "name": "Laceby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.54092000", + "longitude": "-0.16830000" + }, + { + "id": "50225", + "name": "Lacock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41528000", + "longitude": "-2.12194000" + }, + { + "id": "50227", + "name": "Lakenheath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41755000", + "longitude": "0.52211000" + }, + { + "id": "50228", + "name": "Lamberhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10050000", + "longitude": "0.38967000" + }, + { + "id": "50229", + "name": "Lambeth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.49635000", + "longitude": "-0.11152000" + }, + { + "id": "50230", + "name": "Lambourn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50805000", + "longitude": "-1.53105000" + }, + { + "id": "50231", + "name": "Lamesley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.91567000", + "longitude": "-1.60945000" + }, + { + "id": "50235", + "name": "Lancashire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83333000", + "longitude": "-2.50000000" + }, + { + "id": "50236", + "name": "Lancaster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.04649000", + "longitude": "-2.79988000" + }, + { + "id": "50237", + "name": "Lanchester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.82108000", + "longitude": "-1.74256000" + }, + { + "id": "50238", + "name": "Lancing", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.82882000", + "longitude": "-0.32247000" + }, + { + "id": "50239", + "name": "Landrake", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.42265000", + "longitude": "-4.29023000" + }, + { + "id": "50240", + "name": "Langford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.05460000", + "longitude": "-0.27165000" + }, + { + "id": "50241", + "name": "Langham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.69152000", + "longitude": "-0.75385000" + }, + { + "id": "50242", + "name": "Langho", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.80217000", + "longitude": "-2.45076000" + }, + { + "id": "50244", + "name": "Langley Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.12817000", + "longitude": "-0.19835000" + }, + { + "id": "50245", + "name": "Langley Park", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.79979000", + "longitude": "-1.67005000" + }, + { + "id": "50246", + "name": "Langport", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.03778000", + "longitude": "-2.82806000" + }, + { + "id": "50247", + "name": "Langtoft", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.69834000", + "longitude": "-0.34040000" + }, + { + "id": "50250", + "name": "Lark Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.20000000", + "longitude": "-1.81667000" + }, + { + "id": "50251", + "name": "Larkfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30143000", + "longitude": "0.44855000" + }, + { + "id": "50254", + "name": "Latchingdon and Snoreham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67160000", + "longitude": "0.72578000" + }, + { + "id": "50256", + "name": "Launceston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.63699000", + "longitude": "-4.36006000" + }, + { + "id": "50259", + "name": "Lavendon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.17279000", + "longitude": "-0.66109000" + }, + { + "id": "50260", + "name": "Lavenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.10861000", + "longitude": "0.79617000" + }, + { + "id": "50262", + "name": "Layer de la Haye", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.84593000", + "longitude": "0.85745000" + }, + { + "id": "50263", + "name": "Leasingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.02573000", + "longitude": "-0.42606000" + }, + { + "id": "50264", + "name": "Leatherhead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.29652000", + "longitude": "-0.33380000" + }, + { + "id": "50265", + "name": "Lechlade", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69403000", + "longitude": "-1.69128000" + }, + { + "id": "50266", + "name": "Leconfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.87730000", + "longitude": "-0.45729000" + }, + { + "id": "50267", + "name": "Ledbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03639000", + "longitude": "-2.42635000" + }, + { + "id": "50268", + "name": "Ledsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76322000", + "longitude": "-1.30857000" + }, + { + "id": "50269", + "name": "Lee-on-the-Solent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.80169000", + "longitude": "-1.20174000" + }, + { + "id": "50270", + "name": "Leeds", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.79648000", + "longitude": "-1.54785000" + }, + { + "id": "50271", + "name": "Leek", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.10434000", + "longitude": "-2.02207000" + }, + { + "id": "50272", + "name": "Leek Wootton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31782000", + "longitude": "-1.57933000" + }, + { + "id": "50274", + "name": "Leicester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63860000", + "longitude": "-1.13169000" + }, + { + "id": "50275", + "name": "Leicestershire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.66667000", + "longitude": "-1.00000000" + }, + { + "id": "50276", + "name": "Leigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.49642000", + "longitude": "-2.51973000" + }, + { + "id": "50277", + "name": "Leighton Buzzard", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.91722000", + "longitude": "-0.65802000" + }, + { + "id": "50278", + "name": "Leiston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.20611000", + "longitude": "1.57757000" + }, + { + "id": "50279", + "name": "Lenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23705000", + "longitude": "0.71892000" + }, + { + "id": "50282", + "name": "Leominster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22583000", + "longitude": "-2.74491000" + }, + { + "id": "50284", + "name": "Lesbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.39832000", + "longitude": "-1.62830000" + }, + { + "id": "50287", + "name": "Letchworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.97944000", + "longitude": "-0.22840000" + }, + { + "id": "50288", + "name": "Letchworth Garden City", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.97938000", + "longitude": "-0.22664000" + }, + { + "id": "50293", + "name": "Leven", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.89028000", + "longitude": "-0.31783000" + }, + { + "id": "50294", + "name": "Lewes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.87398000", + "longitude": "0.00880000" + }, + { + "id": "50295", + "name": "Leyburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.31004000", + "longitude": "-1.83041000" + }, + { + "id": "50296", + "name": "Leyland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.69786000", + "longitude": "-2.68758000" + }, + { + "id": "50297", + "name": "Leysdown-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39730000", + "longitude": "0.92156000" + }, + { + "id": "50299", + "name": "Lichfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68154000", + "longitude": "-1.82549000" + }, + { + "id": "50300", + "name": "Lidlington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.04154000", + "longitude": "-0.55914000" + }, + { + "id": "50301", + "name": "Lifton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.64356000", + "longitude": "-4.28216000" + }, + { + "id": "50302", + "name": "Lightwater", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34846000", + "longitude": "-0.67147000" + }, + { + "id": "50305", + "name": "Limpley Stoke", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34487000", + "longitude": "-2.31409000" + }, + { + "id": "50306", + "name": "Lincoln", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22683000", + "longitude": "-0.53792000" + }, + { + "id": "50307", + "name": "Lincolnshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16667000", + "longitude": "-0.25000000" + }, + { + "id": "50308", + "name": "Lingdale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.53787000", + "longitude": "-0.95864000" + }, + { + "id": "50309", + "name": "Lingfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.17719000", + "longitude": "-0.01558000" + }, + { + "id": "50310", + "name": "Lingwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62104000", + "longitude": "1.48616000" + }, + { + "id": "50312", + "name": "Linthwaite", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.62418000", + "longitude": "-1.85017000" + }, + { + "id": "50313", + "name": "Linton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09783000", + "longitude": "0.27672000" + }, + { + "id": "50314", + "name": "Linton upon Ouse", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.04639000", + "longitude": "-1.24920000" + }, + { + "id": "50316", + "name": "Liphook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.07673000", + "longitude": "-0.80320000" + }, + { + "id": "50319", + "name": "Liskeard", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.45450000", + "longitude": "-4.46517000" + }, + { + "id": "50321", + "name": "Liss", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.04277000", + "longitude": "-0.89238000" + }, + { + "id": "50322", + "name": "Litherland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46993000", + "longitude": "-2.99809000" + }, + { + "id": "50323", + "name": "Little Amwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.78333000", + "longitude": "-0.03333000" + }, + { + "id": "50324", + "name": "Little Chalfont", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66829000", + "longitude": "-0.57038000" + }, + { + "id": "50325", + "name": "Little Clacton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.82557000", + "longitude": "1.14215000" + }, + { + "id": "50326", + "name": "Little Dunmow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86096000", + "longitude": "0.41478000" + }, + { + "id": "50327", + "name": "Little Eaton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.97028000", + "longitude": "-1.45950000" + }, + { + "id": "50328", + "name": "Little Hallingbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83324000", + "longitude": "0.18151000" + }, + { + "id": "50329", + "name": "Little Hulton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53333000", + "longitude": "-2.41667000" + }, + { + "id": "50330", + "name": "Little Lever", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56346000", + "longitude": "-2.37803000" + }, + { + "id": "50331", + "name": "Little Paxton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25045000", + "longitude": "-0.25801000" + }, + { + "id": "50332", + "name": "Little Weighton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.79021000", + "longitude": "-0.50679000" + }, + { + "id": "50333", + "name": "Littleborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.64413000", + "longitude": "-2.09581000" + }, + { + "id": "50334", + "name": "Littlebourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27445000", + "longitude": "1.16687000" + }, + { + "id": "50335", + "name": "Littlehampton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81137000", + "longitude": "-0.54078000" + }, + { + "id": "50336", + "name": "Littleport", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45784000", + "longitude": "0.30603000" + }, + { + "id": "50337", + "name": "Liverpool", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41058000", + "longitude": "-2.97794000" + }, + { + "id": "50338", + "name": "Liversedge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70514000", + "longitude": "-1.69327000" + }, + { + "id": "50382", + "name": "Locking", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33327000", + "longitude": "-2.91387000" + }, + { + "id": "50383", + "name": "Lockington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91415000", + "longitude": "-0.48572000" + }, + { + "id": "50384", + "name": "Loddon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.53270000", + "longitude": "1.48183000" + }, + { + "id": "50385", + "name": "Lofthouse", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72947000", + "longitude": "-1.49697000" + }, + { + "id": "50386", + "name": "Loftus", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.55543000", + "longitude": "-0.89459000" + }, + { + "id": "50388", + "name": "London", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50853000", + "longitude": "-0.12574000" + }, + { + "id": "50390", + "name": "Long Ashton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.42997000", + "longitude": "-2.66098000" + }, + { + "id": "50391", + "name": "Long Bennington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.99314000", + "longitude": "-0.75803000" + }, + { + "id": "50392", + "name": "Long Buckby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.30260000", + "longitude": "-1.08113000" + }, + { + "id": "50393", + "name": "Long Clawson", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.83725000", + "longitude": "-0.92880000" + }, + { + "id": "50394", + "name": "Long Crendon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77294000", + "longitude": "-0.99684000" + }, + { + "id": "50395", + "name": "Long Eaton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.89855000", + "longitude": "-1.27136000" + }, + { + "id": "50396", + "name": "Long Itchington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.28396000", + "longitude": "-1.39243000" + }, + { + "id": "50397", + "name": "Long Lawford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.38176000", + "longitude": "-1.30716000" + }, + { + "id": "50398", + "name": "Long Melford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.07481000", + "longitude": "0.71639000" + }, + { + "id": "50399", + "name": "Long Stratton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48803000", + "longitude": "1.23478000" + }, + { + "id": "50400", + "name": "Long Sutton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.21978000", + "longitude": "-0.94293000" + }, + { + "id": "50401", + "name": "Long Whatton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.80577000", + "longitude": "-1.28506000" + }, + { + "id": "50402", + "name": "Longdendale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46667000", + "longitude": "-2.00000000" + }, + { + "id": "50403", + "name": "Longfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39690000", + "longitude": "0.30212000" + }, + { + "id": "50405", + "name": "Longhope", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86667000", + "longitude": "-2.45000000" + }, + { + "id": "50406", + "name": "Longhorsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.24586000", + "longitude": "-1.76914000" + }, + { + "id": "50407", + "name": "Longhoughton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.43131000", + "longitude": "-1.61691000" + }, + { + "id": "50409", + "name": "Longridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83212000", + "longitude": "-2.59964000" + }, + { + "id": "50410", + "name": "Longsight", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.45801000", + "longitude": "-2.20104000" + }, + { + "id": "50411", + "name": "Longstanton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.28076000", + "longitude": "0.04558000" + }, + { + "id": "50412", + "name": "Longton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98333000", + "longitude": "-2.13333000" + }, + { + "id": "50413", + "name": "Longtown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.95000000", + "longitude": "-2.98333000" + }, + { + "id": "50414", + "name": "Longwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.73607000", + "longitude": "-0.85676000" + }, + { + "id": "50415", + "name": "Looe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.35778000", + "longitude": "-4.45418000" + }, + { + "id": "50417", + "name": "Lostwithiel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.40784000", + "longitude": "-4.67023000" + }, + { + "id": "50418", + "name": "Loughborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76667000", + "longitude": "-1.20000000" + }, + { + "id": "50419", + "name": "Louth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.36664000", + "longitude": "-0.00438000" + }, + { + "id": "50420", + "name": "Low Ackworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.65023000", + "longitude": "-1.32334000" + }, + { + "id": "50421", + "name": "Low Bradley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.93217000", + "longitude": "-1.99646000" + }, + { + "id": "50422", + "name": "Low Etherley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.65349000", + "longitude": "-1.74315000" + }, + { + "id": "50423", + "name": "Lowdham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.01205000", + "longitude": "-1.00483000" + }, + { + "id": "50424", + "name": "Lower Brailes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.05034000", + "longitude": "-1.54176000" + }, + { + "id": "50425", + "name": "Lower Broadheath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21379000", + "longitude": "-2.27724000" + }, + { + "id": "50426", + "name": "Lower Earley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.42708000", + "longitude": "-0.91979000" + }, + { + "id": "50427", + "name": "Lower Halstow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37395000", + "longitude": "0.66819000" + }, + { + "id": "50428", + "name": "Lower Kingswood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26968000", + "longitude": "-0.21230000" + }, + { + "id": "50429", + "name": "Lowestoft", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.47523000", + "longitude": "1.75167000" + }, + { + "id": "50430", + "name": "Lowick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.65044000", + "longitude": "-1.97809000" + }, + { + "id": "50431", + "name": "Luckington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55444000", + "longitude": "-2.24222000" + }, + { + "id": "50432", + "name": "Luddenden Foot", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.71873000", + "longitude": "-1.94582000" + }, + { + "id": "50433", + "name": "Ludgershall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25558000", + "longitude": "-1.62220000" + }, + { + "id": "50434", + "name": "Ludlow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.37431000", + "longitude": "-2.71311000" + }, + { + "id": "50435", + "name": "Lugwardine", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06583000", + "longitude": "-2.65780000" + }, + { + "id": "50437", + "name": "Lund", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91920000", + "longitude": "-0.52211000" + }, + { + "id": "50439", + "name": "Luton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87967000", + "longitude": "-0.41748000" + }, + { + "id": "50440", + "name": "Lutterworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45634000", + "longitude": "-1.20218000" + }, + { + "id": "50441", + "name": "Lydbrook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83763000", + "longitude": "-2.57818000" + }, + { + "id": "50442", + "name": "Lydd", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95132000", + "longitude": "0.90654000" + }, + { + "id": "50443", + "name": "Lydiard Millicent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57117000", + "longitude": "-1.86346000" + }, + { + "id": "50444", + "name": "Lydney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72598000", + "longitude": "-2.52605000" + }, + { + "id": "50445", + "name": "Lyme Regis", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.72654000", + "longitude": "-2.93477000" + }, + { + "id": "50446", + "name": "Lyminge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.12951000", + "longitude": "1.08896000" + }, + { + "id": "50447", + "name": "Lymington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75767000", + "longitude": "-1.54430000" + }, + { + "id": "50448", + "name": "Lymm", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.38105000", + "longitude": "-2.47763000" + }, + { + "id": "50449", + "name": "Lympne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.07773000", + "longitude": "1.02808000" + }, + { + "id": "50450", + "name": "Lympstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.64751000", + "longitude": "-3.43162000" + }, + { + "id": "50451", + "name": "Lyndhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.87259000", + "longitude": "-1.57662000" + }, + { + "id": "50452", + "name": "Lyneham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51667000", + "longitude": "-1.96667000" + }, + { + "id": "50453", + "name": "Lynemouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.21306000", + "longitude": "-1.54250000" + }, + { + "id": "50454", + "name": "Lynton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.22968000", + "longitude": "-3.84131000" + }, + { + "id": "50455", + "name": "Lytchett Matravers", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75826000", + "longitude": "-2.07806000" + }, + { + "id": "50456", + "name": "Lytham St Annes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.74260000", + "longitude": "-2.99700000" + }, + { + "id": "50457", + "name": "Mablethorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34090000", + "longitude": "0.26102000" + }, + { + "id": "50458", + "name": "Macclesfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26023000", + "longitude": "-2.12564000" + }, + { + "id": "50464", + "name": "Madeley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00000000", + "longitude": "-2.33333000" + }, + { + "id": "50469", + "name": "Maghull", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51619000", + "longitude": "-2.94117000" + }, + { + "id": "50471", + "name": "Maiden Newton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.77909000", + "longitude": "-2.57226000" + }, + { + "id": "50472", + "name": "Maidenbower", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10781000", + "longitude": "-0.15286000" + }, + { + "id": "50473", + "name": "Maidenhead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52279000", + "longitude": "-0.71986000" + }, + { + "id": "50474", + "name": "Maidstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26667000", + "longitude": "0.51667000" + }, + { + "id": "50475", + "name": "Maldon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.73110000", + "longitude": "0.67463000" + }, + { + "id": "50476", + "name": "Malmesbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58175000", + "longitude": "-2.09708000" + }, + { + "id": "50477", + "name": "Malpas", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.01667000", + "longitude": "-2.76667000" + }, + { + "id": "50478", + "name": "Maltby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41667000", + "longitude": "-1.20000000" + }, + { + "id": "50479", + "name": "Malton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.13695000", + "longitude": "-0.79960000" + }, + { + "id": "50480", + "name": "Manby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.36291000", + "longitude": "0.09653000" + }, + { + "id": "50481", + "name": "Manchester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41667000", + "longitude": "-2.25000000" + }, + { + "id": "50482", + "name": "Manea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48487000", + "longitude": "0.17930000" + }, + { + "id": "50483", + "name": "Mangotsfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48780000", + "longitude": "-2.50403000" + }, + { + "id": "50484", + "name": "Manningtree", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94538000", + "longitude": "1.06112000" + }, + { + "id": "50485", + "name": "Mansfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.13333000", + "longitude": "-1.20000000" + }, + { + "id": "50486", + "name": "Mansfield Woodhouse", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16495000", + "longitude": "-1.19384000" + }, + { + "id": "50487", + "name": "Manston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95000000", + "longitude": "-2.26667000" + }, + { + "id": "50488", + "name": "Manton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63223000", + "longitude": "-0.70038000" + }, + { + "id": "50489", + "name": "Maple Cross", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62500000", + "longitude": "-0.50800000" + }, + { + "id": "50490", + "name": "Marazion", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.12556000", + "longitude": "-5.47505000" + }, + { + "id": "50491", + "name": "March", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.55131000", + "longitude": "0.08828000" + }, + { + "id": "50492", + "name": "Marcham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66755000", + "longitude": "-1.34295000" + }, + { + "id": "50494", + "name": "Marchwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.88966000", + "longitude": "-1.45440000" + }, + { + "id": "50495", + "name": "Marden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.17482000", + "longitude": "0.48855000" + }, + { + "id": "50496", + "name": "Margate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38132000", + "longitude": "1.38617000" + }, + { + "id": "50497", + "name": "Market Bosworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62428000", + "longitude": "-1.40174000" + }, + { + "id": "50498", + "name": "Market Deeping", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67654000", + "longitude": "-0.31629000" + }, + { + "id": "50499", + "name": "Market Drayton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90538000", + "longitude": "-2.49012000" + }, + { + "id": "50500", + "name": "Market Harborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.47760000", + "longitude": "-0.92053000" + }, + { + "id": "50501", + "name": "Market Lavington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.28756000", + "longitude": "-1.97729000" + }, + { + "id": "50502", + "name": "Market Overton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.73806000", + "longitude": "-0.68630000" + }, + { + "id": "50503", + "name": "Market Rasen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.38764000", + "longitude": "-0.33781000" + }, + { + "id": "50504", + "name": "Market Warsop", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20516000", + "longitude": "-1.15257000" + }, + { + "id": "50505", + "name": "Market Weighton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.86310000", + "longitude": "-0.66505000" + }, + { + "id": "50506", + "name": "Markfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68747000", + "longitude": "-1.27476000" + }, + { + "id": "50508", + "name": "Marks Tey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87628000", + "longitude": "0.76424000" + }, + { + "id": "50509", + "name": "Markyate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83846000", + "longitude": "-0.46345000" + }, + { + "id": "50510", + "name": "Marlborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.42027000", + "longitude": "-1.72949000" + }, + { + "id": "50511", + "name": "Marldon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.45512000", + "longitude": "-3.59678000" + }, + { + "id": "50512", + "name": "Marlow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56933000", + "longitude": "-0.77415000" + }, + { + "id": "50513", + "name": "Marnhull", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.97045000", + "longitude": "-2.31327000" + }, + { + "id": "50514", + "name": "Marple", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.39452000", + "longitude": "-2.06292000" + }, + { + "id": "50515", + "name": "Marr", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.54296000", + "longitude": "-1.22051000" + }, + { + "id": "50516", + "name": "Marsden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.60000000", + "longitude": "-1.91667000" + }, + { + "id": "50517", + "name": "Marshfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46194000", + "longitude": "-2.32000000" + }, + { + "id": "50519", + "name": "Marske-by-the-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.59147000", + "longitude": "-1.01959000" + }, + { + "id": "50520", + "name": "Marston Moretaine", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06410000", + "longitude": "-0.54932000" + }, + { + "id": "50521", + "name": "Martham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70464000", + "longitude": "1.63636000" + }, + { + "id": "50522", + "name": "Martock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.97361000", + "longitude": "-2.76684000" + }, + { + "id": "50524", + "name": "Maryport", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.71434000", + "longitude": "-3.49509000" + }, + { + "id": "50525", + "name": "Masham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.22270000", + "longitude": "-1.65718000" + }, + { + "id": "50526", + "name": "Matlock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.13838000", + "longitude": "-1.55560000" + }, + { + "id": "50527", + "name": "Mattishall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.65905000", + "longitude": "1.03250000" + }, + { + "id": "50529", + "name": "Maulden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03063000", + "longitude": "-0.46975000" + }, + { + "id": "50532", + "name": "Mayfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00000000", + "longitude": "-1.76667000" + }, + { + "id": "50534", + "name": "Mayland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68033000", + "longitude": "0.76715000" + }, + { + "id": "50535", + "name": "Measham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70644000", + "longitude": "-1.50637000" + }, + { + "id": "50536", + "name": "Medway", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41667000", + "longitude": "0.50000000" + }, + { + "id": "50537", + "name": "Melbourn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08128000", + "longitude": "0.01514000" + }, + { + "id": "50538", + "name": "Melbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.82190000", + "longitude": "-1.42522000" + }, + { + "id": "50539", + "name": "Meldreth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09396000", + "longitude": "0.00807000" + }, + { + "id": "50540", + "name": "Melksham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37281000", + "longitude": "-2.14002000" + }, + { + "id": "50542", + "name": "Meltham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59305000", + "longitude": "-1.84861000" + }, + { + "id": "50543", + "name": "Meltham Mills", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59388000", + "longitude": "-1.83989000" + }, + { + "id": "50544", + "name": "Melton Mowbray", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76588000", + "longitude": "-0.88693000" + }, + { + "id": "50546", + "name": "Mendip", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23720000", + "longitude": "-2.62660000" + }, + { + "id": "50547", + "name": "Menston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.89041000", + "longitude": "-1.74395000" + }, + { + "id": "50549", + "name": "Meopham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36844000", + "longitude": "0.36007000" + }, + { + "id": "50550", + "name": "Meppershall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.01713000", + "longitude": "-0.33991000" + }, + { + "id": "50551", + "name": "Mere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.08889000", + "longitude": "-2.26694000" + }, + { + "id": "50552", + "name": "Meriden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.43770000", + "longitude": "-1.64366000" + }, + { + "id": "50553", + "name": "Merriott", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91275000", + "longitude": "-2.79538000" + }, + { + "id": "50556", + "name": "Messingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.52828000", + "longitude": "-0.65385000" + }, + { + "id": "50557", + "name": "Metheringham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14015000", + "longitude": "-0.40368000" + }, + { + "id": "50559", + "name": "Methley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72887000", + "longitude": "-1.40318000" + }, + { + "id": "50561", + "name": "Metropolitan Borough of Wirral", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.33333000", + "longitude": "-3.08333000" + }, + { + "id": "50562", + "name": "Mevagissey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.27324000", + "longitude": "-4.79166000" + }, + { + "id": "50563", + "name": "Mexborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.49389000", + "longitude": "-1.29243000" + }, + { + "id": "50564", + "name": "Mickle Trafford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22146000", + "longitude": "-2.83225000" + }, + { + "id": "50565", + "name": "Mickleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09152000", + "longitude": "-1.76623000" + }, + { + "id": "50569", + "name": "Middle Rasen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.38722000", + "longitude": "-0.36202000" + }, + { + "id": "50570", + "name": "Middle Winterslow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09346000", + "longitude": "-1.65453000" + }, + { + "id": "50571", + "name": "Middlesbrough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.57623000", + "longitude": "-1.23483000" + }, + { + "id": "50572", + "name": "Middlestown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.65079000", + "longitude": "-1.59762000" + }, + { + "id": "50573", + "name": "Middleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.55000000", + "longitude": "-2.20000000" + }, + { + "id": "50574", + "name": "Middlewich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19296000", + "longitude": "-2.44402000" + }, + { + "id": "50575", + "name": "Midhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.98559000", + "longitude": "-0.74003000" + }, + { + "id": "50577", + "name": "Midsomer Norton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.28567000", + "longitude": "-2.48591000" + }, + { + "id": "50578", + "name": "Milborne Port", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.96605000", + "longitude": "-2.46248000" + }, + { + "id": "50579", + "name": "Milborne St Andrew", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.77829000", + "longitude": "-2.28114000" + }, + { + "id": "50580", + "name": "Mildenhall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34446000", + "longitude": "0.51086000" + }, + { + "id": "50581", + "name": "Milford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.17272000", + "longitude": "-0.65042000" + }, + { + "id": "50583", + "name": "Milford on Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.72561000", + "longitude": "-1.59004000" + }, + { + "id": "50584", + "name": "Millbrook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03882000", + "longitude": "-0.52438000" + }, + { + "id": "50586", + "name": "Millom", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.21072000", + "longitude": "-3.27200000" + }, + { + "id": "50591", + "name": "Milnrow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61115000", + "longitude": "-2.11266000" + }, + { + "id": "50592", + "name": "Milnthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.22785000", + "longitude": "-2.76939000" + }, + { + "id": "50593", + "name": "Milton Keynes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08333000", + "longitude": "-0.75000000" + }, + { + "id": "50596", + "name": "Milverton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.02333000", + "longitude": "-3.25222000" + }, + { + "id": "50597", + "name": "Minchinhampton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70675000", + "longitude": "-2.18502000" + }, + { + "id": "50598", + "name": "Minehead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.20452000", + "longitude": "-3.48284000" + }, + { + "id": "50599", + "name": "Minety", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61667000", + "longitude": "-1.95000000" + }, + { + "id": "50600", + "name": "Minster Lovell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79274000", + "longitude": "-1.54830000" + }, + { + "id": "50601", + "name": "Minsterley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63989000", + "longitude": "-2.92807000" + }, + { + "id": "50603", + "name": "Mirfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.67343000", + "longitude": "-1.69636000" + }, + { + "id": "50604", + "name": "Misterton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.44492000", + "longitude": "-0.85032000" + }, + { + "id": "50605", + "name": "Mistley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94331000", + "longitude": "1.08254000" + }, + { + "id": "50606", + "name": "Mitcham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40322000", + "longitude": "-0.16831000" + }, + { + "id": "50607", + "name": "Mitcheldean", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86440000", + "longitude": "-2.48950000" + }, + { + "id": "50608", + "name": "Mobberley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.31667000", + "longitude": "-2.31667000" + }, + { + "id": "50609", + "name": "Modbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.34957000", + "longitude": "-3.88684000" + }, + { + "id": "50613", + "name": "Moira", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.73698000", + "longitude": "-1.53496000" + }, + { + "id": "50615", + "name": "Mollington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22934000", + "longitude": "-2.92159000" + }, + { + "id": "50618", + "name": "Monk Fryston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76160000", + "longitude": "-1.23751000" + }, + { + "id": "50624", + "name": "Morchard Bishop", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85416000", + "longitude": "-3.74894000" + }, + { + "id": "50625", + "name": "Morcott", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.59669000", + "longitude": "-0.63704000" + }, + { + "id": "50626", + "name": "Morden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39822000", + "longitude": "-0.19837000" + }, + { + "id": "50627", + "name": "Morecambe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.06835000", + "longitude": "-2.86108000" + }, + { + "id": "50628", + "name": "Moreton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.40000000", + "longitude": "-3.11667000" + }, + { + "id": "50629", + "name": "Moreton in Marsh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.98964000", + "longitude": "-1.70297000" + }, + { + "id": "50630", + "name": "Moretonhampstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.66077000", + "longitude": "-3.76495000" + }, + { + "id": "50631", + "name": "Morley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.74013000", + "longitude": "-1.59877000" + }, + { + "id": "50632", + "name": "Morpeth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.16882000", + "longitude": "-1.68893000" + }, + { + "id": "50633", + "name": "Moss", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61667000", + "longitude": "-1.10000000" + }, + { + "id": "50635", + "name": "Mossley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51454000", + "longitude": "-2.03462000" + }, + { + "id": "50637", + "name": "Motcombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.02929000", + "longitude": "-2.21627000" + }, + { + "id": "50639", + "name": "Mouldsworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.23333000", + "longitude": "-2.73333000" + }, + { + "id": "50640", + "name": "Moulton Chapel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.74668000", + "longitude": "-0.08274000" + }, + { + "id": "50641", + "name": "Mount Hawke", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.28229000", + "longitude": "-5.20855000" + }, + { + "id": "50643", + "name": "Mountsorrel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.71667000", + "longitude": "-1.15000000" + }, + { + "id": "50645", + "name": "Much Hadham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85407000", + "longitude": "0.07188000" + }, + { + "id": "50646", + "name": "Much Wenlock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.59582000", + "longitude": "-2.55749000" + }, + { + "id": "50650", + "name": "Mulbarton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.55913000", + "longitude": "1.23327000" + }, + { + "id": "50651", + "name": "Mullion", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.02706000", + "longitude": "-5.24248000" + }, + { + "id": "50652", + "name": "Mundesley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.87842000", + "longitude": "1.42970000" + }, + { + "id": "50653", + "name": "Mundford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.50930000", + "longitude": "0.64991000" + }, + { + "id": "50654", + "name": "Murton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.81812000", + "longitude": "-1.39036000" + }, + { + "id": "50656", + "name": "Mylor Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.18506000", + "longitude": "-5.07963000" + }, + { + "id": "50657", + "name": "Mytholmroyd", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.73065000", + "longitude": "-1.98258000" + }, + { + "id": "50658", + "name": "Nafferton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.01965000", + "longitude": "-0.39190000" + }, + { + "id": "50659", + "name": "Nailsea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43239000", + "longitude": "-2.75847000" + }, + { + "id": "50660", + "name": "Nailsworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69382000", + "longitude": "-2.21990000" + }, + { + "id": "50662", + "name": "Nanpean", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.36884000", + "longitude": "-4.86935000" + }, + { + "id": "50663", + "name": "Nantwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.06878000", + "longitude": "-2.52051000" + }, + { + "id": "50665", + "name": "Narborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.56667000", + "longitude": "-1.20000000" + }, + { + "id": "50666", + "name": "Navenby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.10680000", + "longitude": "-0.52494000" + }, + { + "id": "50669", + "name": "Necton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64994000", + "longitude": "0.77539000" + }, + { + "id": "50670", + "name": "Needham Market", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15550000", + "longitude": "1.05160000" + }, + { + "id": "50671", + "name": "Needingworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33051000", + "longitude": "-0.03116000" + }, + { + "id": "50674", + "name": "Nelson", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83333000", + "longitude": "-2.20000000" + }, + { + "id": "50676", + "name": "Neston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.28333000", + "longitude": "-3.05000000" + }, + { + "id": "50677", + "name": "Nether Heyford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22123000", + "longitude": "-1.03452000" + }, + { + "id": "50678", + "name": "Nether Poppleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.98793000", + "longitude": "-1.15062000" + }, + { + "id": "50679", + "name": "Nether Stowey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.15101000", + "longitude": "-3.15676000" + }, + { + "id": "50680", + "name": "Netheravon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23613000", + "longitude": "-1.79083000" + }, + { + "id": "50682", + "name": "Netherton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48333000", + "longitude": "-2.08333000" + }, + { + "id": "50683", + "name": "Netley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.87634000", + "longitude": "-1.35398000" + }, + { + "id": "50684", + "name": "Nettleham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26603000", + "longitude": "-0.48866000" + }, + { + "id": "50685", + "name": "New Alresford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.08624000", + "longitude": "-1.17011000" + }, + { + "id": "50686", + "name": "New Basford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.97336000", + "longitude": "-1.16564000" + }, + { + "id": "50688", + "name": "New Ferry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.36046000", + "longitude": "-2.99377000" + }, + { + "id": "50689", + "name": "New Malden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40065000", + "longitude": "-0.26170000" + }, + { + "id": "50690", + "name": "New Marske", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.57848000", + "longitude": "-1.04224000" + }, + { + "id": "50691", + "name": "New Mills", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.36592000", + "longitude": "-1.99986000" + }, + { + "id": "50692", + "name": "New Milton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75601000", + "longitude": "-1.66580000" + }, + { + "id": "50695", + "name": "New Romney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.98599000", + "longitude": "0.94122000" + }, + { + "id": "50698", + "name": "Newark on Trent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.06667000", + "longitude": "-0.81667000" + }, + { + "id": "50700", + "name": "Newbiggin-by-the-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.18532000", + "longitude": "-1.51469000" + }, + { + "id": "50701", + "name": "Newbold Verdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62959000", + "longitude": "-1.34220000" + }, + { + "id": "50705", + "name": "Newburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.98760000", + "longitude": "-1.74415000" + }, + { + "id": "50706", + "name": "Newbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40148000", + "longitude": "-1.32471000" + }, + { + "id": "50709", + "name": "Newcastle under Lyme", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00000000", + "longitude": "-2.23333000" + }, + { + "id": "50710", + "name": "Newcastle upon Tyne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.00000000", + "longitude": "-1.66667000" + }, + { + "id": "50711", + "name": "Newchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.66744000", + "longitude": "-1.20828000" + }, + { + "id": "50712", + "name": "Newent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.93365000", + "longitude": "-2.40815000" + }, + { + "id": "50713", + "name": "Newhaven", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.79693000", + "longitude": "0.05545000" + }, + { + "id": "50714", + "name": "Newick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.97518000", + "longitude": "0.01579000" + }, + { + "id": "50715", + "name": "Newington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.35217000", + "longitude": "0.66768000" + }, + { + "id": "50718", + "name": "Newmarket", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.24467000", + "longitude": "0.40418000" + }, + { + "id": "50721", + "name": "Newport", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.70146000", + "longitude": "-1.29124000" + }, + { + "id": "50722", + "name": "Newport Pagnell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08731000", + "longitude": "-0.72218000" + }, + { + "id": "50724", + "name": "Newquay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.41557000", + "longitude": "-5.07319000" + }, + { + "id": "50727", + "name": "Newton Abbot", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.52858000", + "longitude": "-3.61186000" + }, + { + "id": "50728", + "name": "Newton Aycliffe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.61842000", + "longitude": "-1.57190000" + }, + { + "id": "50729", + "name": "Newton Ferrers", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.31467000", + "longitude": "-4.03920000" + }, + { + "id": "50730", + "name": "Newton Longville", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.97600000", + "longitude": "-0.76595000" + }, + { + "id": "50732", + "name": "Newton Poppleford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.70000000", + "longitude": "-3.29586000" + }, + { + "id": "50734", + "name": "Newton-le-Willows", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.45000000", + "longitude": "-2.60000000" + }, + { + "id": "50743", + "name": "Ninfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.88641000", + "longitude": "0.42529000" + }, + { + "id": "50744", + "name": "Niton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.58702000", + "longitude": "-1.28489000" + }, + { + "id": "50745", + "name": "Norfolk", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.66667000", + "longitude": "1.00000000" + }, + { + "id": "50746", + "name": "Normandy", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25751000", + "longitude": "-0.67472000" + }, + { + "id": "50748", + "name": "North Baddesley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.97745000", + "longitude": "-1.44547000" + }, + { + "id": "50750", + "name": "North Cave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.78012000", + "longitude": "-0.64965000" + }, + { + "id": "50751", + "name": "North Collingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.15000000", + "longitude": "-0.75000000" + }, + { + "id": "50752", + "name": "North Duffield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82579000", + "longitude": "-0.96414000" + }, + { + "id": "50753", + "name": "North East Lincolnshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53333000", + "longitude": "-0.08333000" + }, + { + "id": "50754", + "name": "North Elmham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.74640000", + "longitude": "0.94611000" + }, + { + "id": "50755", + "name": "North Ferriby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72124000", + "longitude": "-0.50520000" + }, + { + "id": "50757", + "name": "North Leigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81432000", + "longitude": "-1.44144000" + }, + { + "id": "50758", + "name": "North Lincolnshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58333000", + "longitude": "-0.50000000" + }, + { + "id": "50759", + "name": "North Luffenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62108000", + "longitude": "-0.61987000" + }, + { + "id": "50760", + "name": "North Newbald", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.81667000", + "longitude": "-0.61667000" + }, + { + "id": "50761", + "name": "North Petherton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09243000", + "longitude": "-3.01549000" + }, + { + "id": "50763", + "name": "North Shields", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.01646000", + "longitude": "-1.44925000" + }, + { + "id": "50764", + "name": "North Somercotes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.44573000", + "longitude": "0.14103000" + }, + { + "id": "50765", + "name": "North Somerset", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33333000", + "longitude": "-2.83333000" + }, + { + "id": "50766", + "name": "North Sunderland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.57688000", + "longitude": "-1.66436000" + }, + { + "id": "50767", + "name": "North Tawton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.79968000", + "longitude": "-3.89759000" + }, + { + "id": "50768", + "name": "North Thoresby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46651000", + "longitude": "-0.05575000" + }, + { + "id": "50769", + "name": "North Walsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.82121000", + "longitude": "1.38746000" + }, + { + "id": "50770", + "name": "North Yorkshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.16667000", + "longitude": "-1.50000000" + }, + { + "id": "50771", + "name": "Northallerton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.33901000", + "longitude": "-1.43243000" + }, + { + "id": "50772", + "name": "Northam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.03333000", + "longitude": "-4.21667000" + }, + { + "id": "50773", + "name": "Northampton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25000000", + "longitude": "-0.88333000" + }, + { + "id": "50774", + "name": "Northamptonshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25000000", + "longitude": "-0.83333000" + }, + { + "id": "50775", + "name": "Northborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.65868000", + "longitude": "-0.29818000" + }, + { + "id": "50776", + "name": "Northiam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.99439000", + "longitude": "0.60026000" + }, + { + "id": "50777", + "name": "Northleach", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.82994000", + "longitude": "-1.83712000" + }, + { + "id": "50778", + "name": "Northolt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54855000", + "longitude": "-0.36778000" + }, + { + "id": "50780", + "name": "Northorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46307000", + "longitude": "-0.65347000" + }, + { + "id": "50781", + "name": "Northumberland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.25000000", + "longitude": "-2.00000000" + }, + { + "id": "50782", + "name": "Northwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25882000", + "longitude": "-2.52025000" + }, + { + "id": "50783", + "name": "Norton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.63333000", + "longitude": "-1.18333000" + }, + { + "id": "50784", + "name": "Norton Canes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67142000", + "longitude": "-1.96262000" + }, + { + "id": "50785", + "name": "Norwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62783000", + "longitude": "1.29834000" + }, + { + "id": "50786", + "name": "Nottingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.95360000", + "longitude": "-1.15047000" + }, + { + "id": "50787", + "name": "Nottinghamshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16667000", + "longitude": "-1.00000000" + }, + { + "id": "50788", + "name": "Notton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61267000", + "longitude": "-1.47234000" + }, + { + "id": "50789", + "name": "Nuneaton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.52323000", + "longitude": "-1.46523000" + }, + { + "id": "50790", + "name": "Oadby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60621000", + "longitude": "-1.08354000" + }, + { + "id": "50791", + "name": "Oakengates", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.69501000", + "longitude": "-2.45036000" + }, + { + "id": "50792", + "name": "Oakham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.66667000", + "longitude": "-0.73333000" + }, + { + "id": "50793", + "name": "Oakington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.26044000", + "longitude": "0.06849000" + }, + { + "id": "50795", + "name": "Oakley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.16862000", + "longitude": "-0.52649000" + }, + { + "id": "50798", + "name": "Odiham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25407000", + "longitude": "-0.93933000" + }, + { + "id": "50800", + "name": "Okehampton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.73841000", + "longitude": "-4.00160000" + }, + { + "id": "50801", + "name": "Old Basing", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26667000", + "longitude": "-1.03333000" + }, + { + "id": "50802", + "name": "Old Harlow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.78353000", + "longitude": "0.13381000" + }, + { + "id": "50804", + "name": "Old Leake", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.03108000", + "longitude": "0.09873000" + }, + { + "id": "50805", + "name": "Old Windsor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45807000", + "longitude": "-0.58674000" + }, + { + "id": "50806", + "name": "Oldbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.50000000", + "longitude": "-2.01667000" + }, + { + "id": "50807", + "name": "Oldham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.54051000", + "longitude": "-2.11830000" + }, + { + "id": "50809", + "name": "Olney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15345000", + "longitude": "-0.70201000" + }, + { + "id": "50810", + "name": "Olveston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58032000", + "longitude": "-2.57750000" + }, + { + "id": "50814", + "name": "Orleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.30000000", + "longitude": "-2.75000000" + }, + { + "id": "50815", + "name": "Ormesby St Margaret", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67506000", + "longitude": "1.68850000" + }, + { + "id": "50817", + "name": "Ormskirk", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56685000", + "longitude": "-2.88178000" + }, + { + "id": "50818", + "name": "Orpington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37457000", + "longitude": "0.09785000" + }, + { + "id": "50819", + "name": "Orsett", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51232000", + "longitude": "0.36753000" + }, + { + "id": "50820", + "name": "Orwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13560000", + "longitude": "-0.01099000" + }, + { + "id": "50821", + "name": "Ossett", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.67978000", + "longitude": "-1.58006000" + }, + { + "id": "50822", + "name": "Oswestry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.86195000", + "longitude": "-3.05497000" + }, + { + "id": "50823", + "name": "Otford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31283000", + "longitude": "0.19046000" + }, + { + "id": "50824", + "name": "Otley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.90553000", + "longitude": "-1.69383000" + }, + { + "id": "50825", + "name": "Otterburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.23340000", + "longitude": "-2.18059000" + }, + { + "id": "50826", + "name": "Ottershaw", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36262000", + "longitude": "-0.52752000" + }, + { + "id": "50827", + "name": "Ottery St Mary", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75000000", + "longitude": "-3.26667000" + }, + { + "id": "50828", + "name": "Ottringham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70092000", + "longitude": "-0.07909000" + }, + { + "id": "50829", + "name": "Oughtibridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.43612000", + "longitude": "-1.53902000" + }, + { + "id": "50830", + "name": "Oundle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48093000", + "longitude": "-0.46732000" + }, + { + "id": "50831", + "name": "Outwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60946000", + "longitude": "0.23333000" + }, + { + "id": "50832", + "name": "Over", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31667000", + "longitude": "0.01667000" + }, + { + "id": "50833", + "name": "Overcombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.63509000", + "longitude": "-2.43207000" + }, + { + "id": "50834", + "name": "Overstrand", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.91623000", + "longitude": "1.33900000" + }, + { + "id": "50835", + "name": "Overton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.24389000", + "longitude": "-1.26154000" + }, + { + "id": "50838", + "name": "Owston Ferry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.49407000", + "longitude": "-0.78045000" + }, + { + "id": "50839", + "name": "Oxenhope", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.81233000", + "longitude": "-1.95196000" + }, + { + "id": "50840", + "name": "Oxford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75222000", + "longitude": "-1.25596000" + }, + { + "id": "50841", + "name": "Oxfordshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83333000", + "longitude": "-1.25000000" + }, + { + "id": "50842", + "name": "Oxted", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25687000", + "longitude": "-0.00601000" + }, + { + "id": "50843", + "name": "Paddock Wood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18187000", + "longitude": "0.38229000" + }, + { + "id": "50844", + "name": "Padiham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.80187000", + "longitude": "-2.31511000" + }, + { + "id": "50845", + "name": "Padstow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.53885000", + "longitude": "-4.93664000" + }, + { + "id": "50846", + "name": "Paignton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.43565000", + "longitude": "-3.56789000" + }, + { + "id": "50847", + "name": "Painswick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.78568000", + "longitude": "-2.19555000" + }, + { + "id": "50849", + "name": "Pangbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48370000", + "longitude": "-1.08519000" + }, + { + "id": "50850", + "name": "Pannal", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.96031000", + "longitude": "-1.53573000" + }, + { + "id": "50851", + "name": "Pant", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.79005000", + "longitude": "-3.08031000" + }, + { + "id": "50852", + "name": "Papworth Everard", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.24893000", + "longitude": "-0.11827000" + }, + { + "id": "50853", + "name": "Par", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.35107000", + "longitude": "-4.70288000" + }, + { + "id": "50854", + "name": "Parbold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59145000", + "longitude": "-2.77028000" + }, + { + "id": "50855", + "name": "Parkstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.72994000", + "longitude": "-1.94492000" + }, + { + "id": "50856", + "name": "Partington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41884000", + "longitude": "-2.42815000" + }, + { + "id": "50857", + "name": "Partridge Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95940000", + "longitude": "-0.30796000" + }, + { + "id": "50858", + "name": "Pateley Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.08616000", + "longitude": "-1.75981000" + }, + { + "id": "50860", + "name": "Patrington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.68395000", + "longitude": "-0.01330000" + }, + { + "id": "50861", + "name": "Pattingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58910000", + "longitude": "-2.26538000" + }, + { + "id": "50862", + "name": "Paulton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30472000", + "longitude": "-2.50028000" + }, + { + "id": "50863", + "name": "Peacehaven", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.79270000", + "longitude": "-0.00652000" + }, + { + "id": "50864", + "name": "Peasedown Saint John", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31667000", + "longitude": "-2.42417000" + }, + { + "id": "50865", + "name": "Peaslake", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.19156000", + "longitude": "-0.44658000" + }, + { + "id": "50866", + "name": "Peckham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47403000", + "longitude": "-0.06969000" + }, + { + "id": "50868", + "name": "Pegswood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.17930000", + "longitude": "-1.64525000" + }, + { + "id": "50869", + "name": "Pelsall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62910000", + "longitude": "-1.96738000" + }, + { + "id": "50870", + "name": "Pelton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.87305000", + "longitude": "-1.60950000" + }, + { + "id": "50874", + "name": "Pembury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.14296000", + "longitude": "0.32187000" + }, + { + "id": "50882", + "name": "Penistone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.52572000", + "longitude": "-1.63027000" + }, + { + "id": "50883", + "name": "Penkridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.72556000", + "longitude": "-2.11560000" + }, + { + "id": "50887", + "name": "Penrith", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.66579000", + "longitude": "-2.75757000" + }, + { + "id": "50888", + "name": "Penryn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.16812000", + "longitude": "-5.10416000" + }, + { + "id": "50889", + "name": "Pensilva", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.50302000", + "longitude": "-4.41491000" + }, + { + "id": "50894", + "name": "Penzance", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.11861000", + "longitude": "-5.53715000" + }, + { + "id": "50895", + "name": "Perranporth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.34377000", + "longitude": "-5.15558000" + }, + { + "id": "50896", + "name": "Perranwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.21333000", + "longitude": "-5.12053000" + }, + { + "id": "50897", + "name": "Pershore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11163000", + "longitude": "-2.07586000" + }, + { + "id": "50900", + "name": "Peterborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58333000", + "longitude": "-0.25000000" + }, + { + "id": "50903", + "name": "Peterlee", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.76032000", + "longitude": "-1.33649000" + }, + { + "id": "50904", + "name": "Petersfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.00495000", + "longitude": "-0.93375000" + }, + { + "id": "50905", + "name": "Petworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.98669000", + "longitude": "-0.61000000" + }, + { + "id": "50906", + "name": "Pevensey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81966000", + "longitude": "0.33963000" + }, + { + "id": "50907", + "name": "Pevensey Bay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81242000", + "longitude": "0.34864000" + }, + { + "id": "50908", + "name": "Pewsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33855000", + "longitude": "-1.76545000" + }, + { + "id": "50909", + "name": "Pickering", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.25000000", + "longitude": "-0.76667000" + }, + { + "id": "50910", + "name": "Pilning", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56337000", + "longitude": "-2.64264000" + }, + { + "id": "50911", + "name": "Pilsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.15000000", + "longitude": "-1.36667000" + }, + { + "id": "50912", + "name": "Pimperne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.88374000", + "longitude": "-2.13620000" + }, + { + "id": "50913", + "name": "Pinchbeck", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.81303000", + "longitude": "-0.16256000" + }, + { + "id": "50914", + "name": "Pinner", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59384000", + "longitude": "-0.38216000" + }, + { + "id": "50915", + "name": "Pinxton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.09062000", + "longitude": "-1.31767000" + }, + { + "id": "50916", + "name": "Pirton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.97120000", + "longitude": "-0.33394000" + }, + { + "id": "50919", + "name": "Pitsea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56387000", + "longitude": "0.50859000" + }, + { + "id": "50920", + "name": "Pitstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.82830000", + "longitude": "-0.63987000" + }, + { + "id": "50924", + "name": "Plumpton Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.93420000", + "longitude": "-0.06120000" + }, + { + "id": "50925", + "name": "Plymouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.38333000", + "longitude": "-4.13333000" + }, + { + "id": "50926", + "name": "Plympton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.39074000", + "longitude": "-4.06022000" + }, + { + "id": "50927", + "name": "Plymstock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.35999000", + "longitude": "-4.09049000" + }, + { + "id": "50928", + "name": "Pocklington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.93335000", + "longitude": "-0.78106000" + }, + { + "id": "50929", + "name": "Podington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25424000", + "longitude": "-0.62463000" + }, + { + "id": "50931", + "name": "Polesworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.61962000", + "longitude": "-1.61036000" + }, + { + "id": "50932", + "name": "Pollington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.67093000", + "longitude": "-1.07237000" + }, + { + "id": "50934", + "name": "Polperro", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.33130000", + "longitude": "-4.52220000" + }, + { + "id": "50935", + "name": "Polzeath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.56956000", + "longitude": "-4.91759000" + }, + { + "id": "50938", + "name": "Pontefract", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.69107000", + "longitude": "-1.31269000" + }, + { + "id": "50939", + "name": "Ponteland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.05024000", + "longitude": "-1.74532000" + }, + { + "id": "50940", + "name": "Pontesbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64826000", + "longitude": "-2.89035000" + }, + { + "id": "50948", + "name": "Pool", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.90000000", + "longitude": "-1.61667000" + }, + { + "id": "50949", + "name": "Poole", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.73333000", + "longitude": "-1.96667000" + }, + { + "id": "50950", + "name": "Poringland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.56756000", + "longitude": "1.34961000" + }, + { + "id": "50951", + "name": "Porlock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.20889000", + "longitude": "-3.59556000" + }, + { + "id": "50961", + "name": "Porthleven", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.08618000", + "longitude": "-5.31501000" + }, + { + "id": "50963", + "name": "Portishead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48199000", + "longitude": "-2.76973000" + }, + { + "id": "50965", + "name": "Portland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.56748000", + "longitude": "-2.44472000" + }, + { + "id": "50969", + "name": "Portscatho", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.17271000", + "longitude": "-4.97356000" + }, + { + "id": "50970", + "name": "Portslade", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.84286000", + "longitude": "-0.21608000" + }, + { + "id": "50971", + "name": "Portsmouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.80000000", + "longitude": "-1.06667000" + }, + { + "id": "50974", + "name": "Potterne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32917000", + "longitude": "-2.00519000" + }, + { + "id": "50975", + "name": "Potters Bar", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69353000", + "longitude": "-0.17835000" + }, + { + "id": "50976", + "name": "Potterspury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08288000", + "longitude": "-0.89676000" + }, + { + "id": "50977", + "name": "Potton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.12911000", + "longitude": "-0.21561000" + }, + { + "id": "50978", + "name": "Poulton-le-Fylde", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83333000", + "longitude": "-2.98333000" + }, + { + "id": "50979", + "name": "Poynton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.35000000", + "longitude": "-2.11667000" + }, + { + "id": "50980", + "name": "Prees", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.89689000", + "longitude": "-2.66401000" + }, + { + "id": "50981", + "name": "Preesall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91820000", + "longitude": "-2.96633000" + }, + { + "id": "50982", + "name": "Prenton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.36762000", + "longitude": "-3.05479000" + }, + { + "id": "50983", + "name": "Prescot", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.42948000", + "longitude": "-2.80031000" + }, + { + "id": "50985", + "name": "Prestbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.28333000", + "longitude": "-2.15000000" + }, + { + "id": "50987", + "name": "Preston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76282000", + "longitude": "-2.70452000" + }, + { + "id": "50989", + "name": "Prestwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53333000", + "longitude": "-2.28333000" + }, + { + "id": "50992", + "name": "Princes Risborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72549000", + "longitude": "-0.83144000" + }, + { + "id": "50993", + "name": "Princetown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.54393000", + "longitude": "-3.98855000" + }, + { + "id": "50994", + "name": "Priston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34306000", + "longitude": "-2.43917000" + }, + { + "id": "50995", + "name": "Probus", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.29267000", + "longitude": "-4.95401000" + }, + { + "id": "50996", + "name": "Prudhoe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.96154000", + "longitude": "-1.85168000" + }, + { + "id": "50997", + "name": "Publow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37877000", + "longitude": "-2.54351000" + }, + { + "id": "50998", + "name": "Puckeridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.89013000", + "longitude": "0.01309000" + }, + { + "id": "50999", + "name": "Pucklechurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48583000", + "longitude": "-2.43389000" + }, + { + "id": "51000", + "name": "Puddletown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.75000000", + "longitude": "-2.35000000" + }, + { + "id": "51001", + "name": "Pudsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.79538000", + "longitude": "-1.66134000" + }, + { + "id": "51002", + "name": "Pulborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95753000", + "longitude": "-0.51280000" + }, + { + "id": "51003", + "name": "Pulloxhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99487000", + "longitude": "-0.45316000" + }, + { + "id": "51004", + "name": "Purfleet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48390000", + "longitude": "0.24247000" + }, + { + "id": "51005", + "name": "Puriton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.16933000", + "longitude": "-2.97198000" + }, + { + "id": "51006", + "name": "Purley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33678000", + "longitude": "-0.11201000" + }, + { + "id": "51007", + "name": "Purton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58889000", + "longitude": "-1.87419000" + }, + { + "id": "51010", + "name": "Queenborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41760000", + "longitude": "0.74441000" + }, + { + "id": "51011", + "name": "Queensbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76657000", + "longitude": "-1.84912000" + }, + { + "id": "51013", + "name": "Queniborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70591000", + "longitude": "-1.04749000" + }, + { + "id": "51014", + "name": "Quorndon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.74461000", + "longitude": "-1.17348000" + }, + { + "id": "51015", + "name": "Rackheath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.66254000", + "longitude": "1.38032000" + }, + { + "id": "51016", + "name": "Radcliffe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56178000", + "longitude": "-2.32455000" + }, + { + "id": "51017", + "name": "Radcliffe on Trent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.94802000", + "longitude": "-1.03855000" + }, + { + "id": "51018", + "name": "Radlett", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68593000", + "longitude": "-0.31868000" + }, + { + "id": "51019", + "name": "Radley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68746000", + "longitude": "-1.24025000" + }, + { + "id": "51020", + "name": "Radstock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.28862000", + "longitude": "-2.46003000" + }, + { + "id": "51023", + "name": "Rainford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50223000", + "longitude": "-2.78839000" + }, + { + "id": "51024", + "name": "Rainham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36323000", + "longitude": "0.60893000" + }, + { + "id": "51025", + "name": "Rainworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.11883000", + "longitude": "-1.11852000" + }, + { + "id": "51026", + "name": "Ramsbottom", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.64789000", + "longitude": "-2.31683000" + }, + { + "id": "51027", + "name": "Ramsbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44373000", + "longitude": "-1.60257000" + }, + { + "id": "51028", + "name": "Ramsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45058000", + "longitude": "-0.10932000" + }, + { + "id": "51029", + "name": "Ramsgate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33568000", + "longitude": "1.41797000" + }, + { + "id": "51031", + "name": "Ranskill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.38281000", + "longitude": "-1.01402000" + }, + { + "id": "51032", + "name": "Rastrick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.69210000", + "longitude": "-1.78830000" + }, + { + "id": "51033", + "name": "Ratby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64989000", + "longitude": "-1.24137000" + }, + { + "id": "51037", + "name": "Raunds", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34428000", + "longitude": "-0.53657000" + }, + { + "id": "51038", + "name": "Ravenshead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.08650000", + "longitude": "-1.16026000" + }, + { + "id": "51039", + "name": "Ravenstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.72111000", + "longitude": "-1.40582000" + }, + { + "id": "51040", + "name": "Rawcliffe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.69777000", + "longitude": "-0.96319000" + }, + { + "id": "51041", + "name": "Rawmarsh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46062000", + "longitude": "-1.34437000" + }, + { + "id": "51042", + "name": "Rawtenstall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70076000", + "longitude": "-2.28442000" + }, + { + "id": "51043", + "name": "Rayleigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58571000", + "longitude": "0.60459000" + }, + { + "id": "51044", + "name": "Rayne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86667000", + "longitude": "0.58333000" + }, + { + "id": "51045", + "name": "Reading", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45625000", + "longitude": "-0.97113000" + }, + { + "id": "51046", + "name": "Redbourn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79896000", + "longitude": "-0.39594000" + }, + { + "id": "51047", + "name": "Redbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48728000", + "longitude": "-0.53567000" + }, + { + "id": "51048", + "name": "Redcar", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.61657000", + "longitude": "-1.05999000" + }, + { + "id": "51049", + "name": "Redcar and Cleveland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.55000000", + "longitude": "-1.00000000" + }, + { + "id": "51052", + "name": "Redditch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.30650000", + "longitude": "-1.94569000" + }, + { + "id": "51053", + "name": "Redhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.24048000", + "longitude": "-0.17044000" + }, + { + "id": "51054", + "name": "Redlynch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09861000", + "longitude": "-2.42667000" + }, + { + "id": "51055", + "name": "Redruth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.23315000", + "longitude": "-5.22434000" + }, + { + "id": "51056", + "name": "Reedham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.56054000", + "longitude": "1.57122000" + }, + { + "id": "51057", + "name": "Reepham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76320000", + "longitude": "1.11099000" + }, + { + "id": "51058", + "name": "Reigate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23736000", + "longitude": "-0.20582000" + }, + { + "id": "51059", + "name": "Rendlesham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.12665000", + "longitude": "1.41536000" + }, + { + "id": "51063", + "name": "Repton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.83983000", + "longitude": "-1.55061000" + }, + { + "id": "51065", + "name": "Retford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.32213000", + "longitude": "-0.94315000" + }, + { + "id": "51076", + "name": "Riccall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83331000", + "longitude": "-1.05730000" + }, + { + "id": "51077", + "name": "Richmond", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.40360000", + "longitude": "-1.73434000" + }, + { + "id": "51078", + "name": "Rickinghall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33649000", + "longitude": "0.99272000" + }, + { + "id": "51079", + "name": "Rickmansworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63898000", + "longitude": "-0.47718000" + }, + { + "id": "51080", + "name": "Ridgmont", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.01532000", + "longitude": "-0.57871000" + }, + { + "id": "51081", + "name": "Rillington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.15779000", + "longitude": "-0.69494000" + }, + { + "id": "51082", + "name": "Ringmer", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.89264000", + "longitude": "0.05472000" + }, + { + "id": "51083", + "name": "Ringstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.36528000", + "longitude": "-0.55490000" + }, + { + "id": "51084", + "name": "Ringwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.84541000", + "longitude": "-1.78871000" + }, + { + "id": "51085", + "name": "Ripley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.03333000", + "longitude": "-1.40000000" + }, + { + "id": "51086", + "name": "Ripon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.13579000", + "longitude": "-1.52826000" + }, + { + "id": "51087", + "name": "Ripponden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.67449000", + "longitude": "-1.94183000" + }, + { + "id": "51089", + "name": "Riseley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25213000", + "longitude": "-0.47928000" + }, + { + "id": "51090", + "name": "Rishton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76806000", + "longitude": "-2.41444000" + }, + { + "id": "51091", + "name": "Roade", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15824000", + "longitude": "-0.89745000" + }, + { + "id": "51092", + "name": "Robertsbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.98569000", + "longitude": "0.47253000" + }, + { + "id": "51093", + "name": "Rochdale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61766000", + "longitude": "-2.15520000" + }, + { + "id": "51094", + "name": "Roche", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.40808000", + "longitude": "-4.83373000" + }, + { + "id": "51095", + "name": "Rochester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38764000", + "longitude": "0.50546000" + }, + { + "id": "51096", + "name": "Rochford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58198000", + "longitude": "0.70673000" + }, + { + "id": "51097", + "name": "Rock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.54978000", + "longitude": "-4.90462000" + }, + { + "id": "51098", + "name": "Rode", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.28390000", + "longitude": "-2.28141000" + }, + { + "id": "51099", + "name": "Rode Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.11387000", + "longitude": "-2.29186000" + }, + { + "id": "51101", + "name": "Romford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57515000", + "longitude": "0.18582000" + }, + { + "id": "51102", + "name": "Romney Marsh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.02299000", + "longitude": "0.91504000" + }, + { + "id": "51103", + "name": "Romsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.98906000", + "longitude": "-1.49989000" + }, + { + "id": "51104", + "name": "Romsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41996000", + "longitude": "-2.05695000" + }, + { + "id": "51105", + "name": "Roos", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.75292000", + "longitude": "-0.04463000" + }, + { + "id": "51110", + "name": "Ross on Wye", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.91667000", + "longitude": "-2.56667000" + }, + { + "id": "51111", + "name": "Rossendale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.68456000", + "longitude": "-2.27690000" + }, + { + "id": "51115", + "name": "Rothbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.31059000", + "longitude": "-1.90845000" + }, + { + "id": "51116", + "name": "Rotherfield Peppard", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53064000", + "longitude": "-0.97847000" + }, + { + "id": "51117", + "name": "Rotherham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41667000", + "longitude": "-1.25000000" + }, + { + "id": "51121", + "name": "Rothley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70916000", + "longitude": "-1.13739000" + }, + { + "id": "51122", + "name": "Rothwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41667000", + "longitude": "-0.80000000" + }, + { + "id": "51123", + "name": "Rottingdean", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.80984000", + "longitude": "-0.05939000" + }, + { + "id": "51124", + "name": "Rowde", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36325000", + "longitude": "-2.03098000" + }, + { + "id": "51125", + "name": "Rowhedge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85738000", + "longitude": "0.94534000" + }, + { + "id": "51126", + "name": "Rowlands Gill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.91922000", + "longitude": "-1.74489000" + }, + { + "id": "51127", + "name": "Rowley Regis", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48292000", + "longitude": "-2.04376000" + }, + { + "id": "51128", + "name": "Roxton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.17756000", + "longitude": "-0.31594000" + }, + { + "id": "51129", + "name": "Royal Borough of Windsor and Maidenhead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46667000", + "longitude": "-0.66667000" + }, + { + "id": "51130", + "name": "Royal Leamington Spa", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.28520000", + "longitude": "-1.52000000" + }, + { + "id": "51131", + "name": "Royal Tunbridge Wells", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.13321000", + "longitude": "0.26256000" + }, + { + "id": "51132", + "name": "Royal Wootton Bassett", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54190000", + "longitude": "-1.90450000" + }, + { + "id": "51133", + "name": "Roydon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77180000", + "longitude": "0.04030000" + }, + { + "id": "51134", + "name": "Royston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.04832000", + "longitude": "-0.02438000" + }, + { + "id": "51135", + "name": "Royton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56507000", + "longitude": "-2.12267000" + }, + { + "id": "51137", + "name": "Ruardean", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85501000", + "longitude": "-2.55054000" + }, + { + "id": "51138", + "name": "Ruddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.89254000", + "longitude": "-1.14953000" + }, + { + "id": "51139", + "name": "Rudgwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.08735000", + "longitude": "-0.45164000" + }, + { + "id": "51140", + "name": "Rufford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.63375000", + "longitude": "-2.81662000" + }, + { + "id": "51141", + "name": "Rugby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.37092000", + "longitude": "-1.26417000" + }, + { + "id": "51142", + "name": "Rugeley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.75930000", + "longitude": "-1.93694000" + }, + { + "id": "51143", + "name": "Ruislip", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57344000", + "longitude": "-0.42341000" + }, + { + "id": "51144", + "name": "Runcorn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34174000", + "longitude": "-2.73124000" + }, + { + "id": "51145", + "name": "Rushden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.28927000", + "longitude": "-0.60184000" + }, + { + "id": "51146", + "name": "Ruskington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.04544000", + "longitude": "-0.38692000" + }, + { + "id": "51147", + "name": "Rusthall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.13643000", + "longitude": "0.22931000" + }, + { + "id": "51148", + "name": "Rustington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81027000", + "longitude": "-0.50674000" + }, + { + "id": "51151", + "name": "Ruyton-XI-Towns", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.79555000", + "longitude": "-2.90318000" + }, + { + "id": "51152", + "name": "Ryde", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.72999000", + "longitude": "-1.16210000" + }, + { + "id": "51153", + "name": "Rye", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95114000", + "longitude": "0.73370000" + }, + { + "id": "51154", + "name": "Ryhall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68585000", + "longitude": "-0.46846000" + }, + { + "id": "51155", + "name": "Ryhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.62204000", + "longitude": "-1.41071000" + }, + { + "id": "51156", + "name": "Ryhope", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.87139000", + "longitude": "-1.37000000" + }, + { + "id": "51157", + "name": "Ryton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.61667000", + "longitude": "-2.35000000" + }, + { + "id": "51158", + "name": "Ryton on Dunsmore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.36667000", + "longitude": "-1.43333000" + }, + { + "id": "51159", + "name": "Sabden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83355000", + "longitude": "-2.33728000" + }, + { + "id": "51160", + "name": "Sacriston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.81769000", + "longitude": "-1.62410000" + }, + { + "id": "51161", + "name": "Saffron Walden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.02337000", + "longitude": "0.24234000" + }, + { + "id": "51162", + "name": "Saint Agnes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.31278000", + "longitude": "-5.20456000" + }, + { + "id": "51165", + "name": "Saint Bees", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.49183000", + "longitude": "-3.58987000" + }, + { + "id": "51168", + "name": "Saint Columb Major", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.43163000", + "longitude": "-4.94336000" + }, + { + "id": "51171", + "name": "Saint Dennis", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.38333000", + "longitude": "-4.88333000" + }, + { + "id": "51172", + "name": "Saint Leonards-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85565000", + "longitude": "0.54520000" + }, + { + "id": "51174", + "name": "Saint Neots", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21667000", + "longitude": "-0.26667000" + }, + { + "id": "51175", + "name": "Saint Osyth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80000000", + "longitude": "1.08333000" + }, + { + "id": "51176", + "name": "Saint Peters", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36667000", + "longitude": "1.41667000" + }, + { + "id": "51177", + "name": "Saint Stephen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.34469000", + "longitude": "-4.89973000" + }, + { + "id": "51179", + "name": "Salcombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.23743000", + "longitude": "-3.76874000" + }, + { + "id": "51180", + "name": "Sale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.42519000", + "longitude": "-2.32443000" + }, + { + "id": "51181", + "name": "Salford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48771000", + "longitude": "-2.29042000" + }, + { + "id": "51182", + "name": "Salfords", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.20430000", + "longitude": "-0.16947000" + }, + { + "id": "51184", + "name": "Salisbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.06931000", + "longitude": "-1.79569000" + }, + { + "id": "51186", + "name": "Saltash", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.40959000", + "longitude": "-4.22514000" + }, + { + "id": "51187", + "name": "Saltburn-by-the-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.58237000", + "longitude": "-0.97367000" + }, + { + "id": "51189", + "name": "Saltford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40139000", + "longitude": "-2.45944000" + }, + { + "id": "51190", + "name": "Sampford Peverell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91945000", + "longitude": "-3.38081000" + }, + { + "id": "51191", + "name": "Sandbach", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14515000", + "longitude": "-2.36251000" + }, + { + "id": "51193", + "name": "Sandford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33228000", + "longitude": "-2.83122000" + }, + { + "id": "51194", + "name": "Sandown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.65158000", + "longitude": "-1.16103000" + }, + { + "id": "51195", + "name": "Sandwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.50000000", + "longitude": "-2.00000000" + }, + { + "id": "51196", + "name": "Sandwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27223000", + "longitude": "1.33776000" + }, + { + "id": "51198", + "name": "Sandy", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.12927000", + "longitude": "-0.28925000" + }, + { + "id": "51200", + "name": "Sapcote", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.53707000", + "longitude": "-1.27900000" + }, + { + "id": "51201", + "name": "Saughall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22618000", + "longitude": "-2.95649000" + }, + { + "id": "51203", + "name": "Sawbridgeworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81667000", + "longitude": "0.15000000" + }, + { + "id": "51204", + "name": "Sawston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.12089000", + "longitude": "0.16943000" + }, + { + "id": "51205", + "name": "Sawtry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.43984000", + "longitude": "-0.28422000" + }, + { + "id": "51206", + "name": "Saxilby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26746000", + "longitude": "-0.66253000" + }, + { + "id": "51207", + "name": "Saxmundham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21497000", + "longitude": "1.48805000" + }, + { + "id": "51208", + "name": "Scalby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76667000", + "longitude": "-0.71667000" + }, + { + "id": "51210", + "name": "Scarborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.27966000", + "longitude": "-0.40443000" + }, + { + "id": "51211", + "name": "Scarcroft", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.86667000", + "longitude": "-1.45000000" + }, + { + "id": "51212", + "name": "Scawby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.53787000", + "longitude": "-0.54085000" + }, + { + "id": "51213", + "name": "Scholes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82346000", + "longitude": "-1.42805000" + }, + { + "id": "51214", + "name": "Scole", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.36706000", + "longitude": "1.15674000" + }, + { + "id": "51216", + "name": "Scorton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.39785000", + "longitude": "-1.61276000" + }, + { + "id": "51217", + "name": "Scotby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.89004000", + "longitude": "-2.87464000" + }, + { + "id": "51218", + "name": "Scotter", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.49652000", + "longitude": "-0.67429000" + }, + { + "id": "51219", + "name": "Scunthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57905000", + "longitude": "-0.65437000" + }, + { + "id": "51221", + "name": "Seaford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.77141000", + "longitude": "0.10268000" + }, + { + "id": "51222", + "name": "Seaham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.83903000", + "longitude": "-1.34575000" + }, + { + "id": "51223", + "name": "Seahouses", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.58063000", + "longitude": "-1.65497000" + }, + { + "id": "51224", + "name": "Seascale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.39831000", + "longitude": "-3.47961000" + }, + { + "id": "51225", + "name": "Seaton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57489000", + "longitude": "-0.66759000" + }, + { + "id": "51226", + "name": "Seaton Delaval", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.07196000", + "longitude": "-1.52609000" + }, + { + "id": "51227", + "name": "Seaview", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.71956000", + "longitude": "-1.11164000" + }, + { + "id": "51228", + "name": "Sedbergh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.32123000", + "longitude": "-2.52514000" + }, + { + "id": "51229", + "name": "Sedgefield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.65329000", + "longitude": "-1.44952000" + }, + { + "id": "51230", + "name": "Seend", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34806000", + "longitude": "-2.08472000" + }, + { + "id": "51231", + "name": "Seer Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61796000", + "longitude": "-0.60592000" + }, + { + "id": "51232", + "name": "Sefton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50000000", + "longitude": "-3.00000000" + }, + { + "id": "51233", + "name": "Seghill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.06225000", + "longitude": "-1.55027000" + }, + { + "id": "51234", + "name": "Selby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.78333000", + "longitude": "-1.06667000" + }, + { + "id": "51236", + "name": "Selsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.73501000", + "longitude": "-0.78979000" + }, + { + "id": "51237", + "name": "Send", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.28875000", + "longitude": "-0.52666000" + }, + { + "id": "51238", + "name": "Settle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.06865000", + "longitude": "-2.27720000" + }, + { + "id": "51240", + "name": "Sevenoaks", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27266000", + "longitude": "0.18883000" + }, + { + "id": "51241", + "name": "Severn Beach", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56036000", + "longitude": "-2.66279000" + }, + { + "id": "51242", + "name": "Shadoxhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10797000", + "longitude": "0.81917000" + }, + { + "id": "51243", + "name": "Shadwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.85460000", + "longitude": "-1.47260000" + }, + { + "id": "51244", + "name": "Shaftesbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.00528000", + "longitude": "-2.19333000" + }, + { + "id": "51245", + "name": "Shalbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36358000", + "longitude": "-1.55053000" + }, + { + "id": "51246", + "name": "Shalfleet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.70113000", + "longitude": "-1.42007000" + }, + { + "id": "51247", + "name": "Shanklin", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.62613000", + "longitude": "-1.17850000" + }, + { + "id": "51248", + "name": "Shap", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.53149000", + "longitude": "-2.67551000" + }, + { + "id": "51249", + "name": "Sharlston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.66956000", + "longitude": "-1.41294000" + }, + { + "id": "51250", + "name": "Sharnbrook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22606000", + "longitude": "-0.54425000" + }, + { + "id": "51251", + "name": "Sharpness", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71972000", + "longitude": "-2.47750000" + }, + { + "id": "51252", + "name": "Shaw", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56667000", + "longitude": "-2.08333000" + }, + { + "id": "51253", + "name": "Shawbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.79098000", + "longitude": "-2.66183000" + }, + { + "id": "51254", + "name": "Sheerness", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44042000", + "longitude": "0.76252000" + }, + { + "id": "51255", + "name": "Sheffield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.38297000", + "longitude": "-1.46590000" + }, + { + "id": "51256", + "name": "Shefford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03870000", + "longitude": "-0.33399000" + }, + { + "id": "51257", + "name": "Shelley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.60000000", + "longitude": "-1.68333000" + }, + { + "id": "51258", + "name": "Shenley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69054000", + "longitude": "-0.28067000" + }, + { + "id": "51259", + "name": "Shenstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63802000", + "longitude": "-1.84147000" + }, + { + "id": "51260", + "name": "Shepherdswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18713000", + "longitude": "1.23049000" + }, + { + "id": "51261", + "name": "Shepley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58333000", + "longitude": "-1.71667000" + }, + { + "id": "51262", + "name": "Shepperton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39546000", + "longitude": "-0.44889000" + }, + { + "id": "51263", + "name": "Shepshed", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76570000", + "longitude": "-1.29021000" + }, + { + "id": "51264", + "name": "Shepton Mallet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18972000", + "longitude": "-2.54722000" + }, + { + "id": "51265", + "name": "Sherborne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.94599000", + "longitude": "-2.51776000" + }, + { + "id": "51266", + "name": "Sherborne St John", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.29705000", + "longitude": "-1.11387000" + }, + { + "id": "51267", + "name": "Sherburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.77606000", + "longitude": "-1.50474000" + }, + { + "id": "51268", + "name": "Sherburn Hill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.77270000", + "longitude": "-1.47985000" + }, + { + "id": "51269", + "name": "Sherburn in Elmet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.79519000", + "longitude": "-1.24660000" + }, + { + "id": "51270", + "name": "Sheriff Hutton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.08904000", + "longitude": "-1.00639000" + }, + { + "id": "51271", + "name": "Sheringham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.94078000", + "longitude": "1.20931000" + }, + { + "id": "51272", + "name": "Sherington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11172000", + "longitude": "-0.69973000" + }, + { + "id": "51273", + "name": "Sherston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57205000", + "longitude": "-2.21278000" + }, + { + "id": "51275", + "name": "Shevington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.57236000", + "longitude": "-2.69316000" + }, + { + "id": "51277", + "name": "Shifnal", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67043000", + "longitude": "-2.37248000" + }, + { + "id": "51278", + "name": "Shilbottle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.37099000", + "longitude": "-1.68820000" + }, + { + "id": "51279", + "name": "Shildon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.62997000", + "longitude": "-1.64295000" + }, + { + "id": "51280", + "name": "Shillingstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.89567000", + "longitude": "-2.24495000" + }, + { + "id": "51281", + "name": "Shillington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99344000", + "longitude": "-0.36006000" + }, + { + "id": "51282", + "name": "Shipdham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62923000", + "longitude": "0.88577000" + }, + { + "id": "51283", + "name": "Shipham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31428000", + "longitude": "-2.80010000" + }, + { + "id": "51284", + "name": "Shipley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.83333000", + "longitude": "-1.76667000" + }, + { + "id": "51285", + "name": "Shipston on Stour", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06057000", + "longitude": "-1.62778000" + }, + { + "id": "51286", + "name": "Shipton under Wychwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86035000", + "longitude": "-1.59847000" + }, + { + "id": "51287", + "name": "Shirebrook", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20333000", + "longitude": "-1.21336000" + }, + { + "id": "51288", + "name": "Shiremoor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.03535000", + "longitude": "-1.50950000" + }, + { + "id": "51289", + "name": "Shirland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.12155000", + "longitude": "-1.40464000" + }, + { + "id": "51290", + "name": "Shirley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41074000", + "longitude": "-1.81952000" + }, + { + "id": "51291", + "name": "Shoreham-by-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83413000", + "longitude": "-0.27431000" + }, + { + "id": "51292", + "name": "Shortlands", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39914000", + "longitude": "0.00440000" + }, + { + "id": "51293", + "name": "Shotley Gate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.95791000", + "longitude": "1.26871000" + }, + { + "id": "51295", + "name": "Shrewsbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.71009000", + "longitude": "-2.75208000" + }, + { + "id": "51296", + "name": "Shrewton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.19194000", + "longitude": "-1.90264000" + }, + { + "id": "51297", + "name": "Shrivenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59853000", + "longitude": "-1.65461000" + }, + { + "id": "51298", + "name": "Shropshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.66667000", + "longitude": "-2.75000000" + }, + { + "id": "51299", + "name": "Shurdington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86264000", + "longitude": "-2.12060000" + }, + { + "id": "51300", + "name": "Sible Hedingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.97772000", + "longitude": "0.59262000" + }, + { + "id": "51301", + "name": "Sibsey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.03858000", + "longitude": "0.01579000" + }, + { + "id": "51302", + "name": "Sidcup", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.42619000", + "longitude": "0.10360000" + }, + { + "id": "51303", + "name": "Sidmouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.69094000", + "longitude": "-3.23970000" + }, + { + "id": "51304", + "name": "Sileby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.73286000", + "longitude": "-1.10773000" + }, + { + "id": "51305", + "name": "Silkstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.54808000", + "longitude": "-1.56381000" + }, + { + "id": "51306", + "name": "Silloth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.86870000", + "longitude": "-3.38448000" + }, + { + "id": "51307", + "name": "Silsden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91443000", + "longitude": "-1.93802000" + }, + { + "id": "51308", + "name": "Silsoe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.00854000", + "longitude": "-0.42484000" + }, + { + "id": "51309", + "name": "Silver End", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.84734000", + "longitude": "0.62399000" + }, + { + "id": "51310", + "name": "Silverdale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.16667000", + "longitude": "-2.81667000" + }, + { + "id": "51311", + "name": "Silverstone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09216000", + "longitude": "-1.02602000" + }, + { + "id": "51312", + "name": "Silverton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81667000", + "longitude": "-3.48333000" + }, + { + "id": "51313", + "name": "Sinfin", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.88157000", + "longitude": "-1.48681000" + }, + { + "id": "51316", + "name": "Sissinghurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10905000", + "longitude": "0.56000000" + }, + { + "id": "51317", + "name": "Sittingbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34128000", + "longitude": "0.73282000" + }, + { + "id": "51318", + "name": "Skegness", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14362000", + "longitude": "0.33630000" + }, + { + "id": "51319", + "name": "Skellingthorpe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.23531000", + "longitude": "-0.61905000" + }, + { + "id": "51320", + "name": "Skelmersdale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.55024000", + "longitude": "-2.77348000" + }, + { + "id": "51322", + "name": "Skelton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72521000", + "longitude": "-0.84187000" + }, + { + "id": "51323", + "name": "Skidby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.78921000", + "longitude": "-0.46131000" + }, + { + "id": "51324", + "name": "Skinningrove", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.56908000", + "longitude": "-0.89869000" + }, + { + "id": "51325", + "name": "Skipsea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.97674000", + "longitude": "-0.22084000" + }, + { + "id": "51326", + "name": "Skipton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.96144000", + "longitude": "-2.01676000" + }, + { + "id": "51327", + "name": "Slaley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.91368000", + "longitude": "-2.03711000" + }, + { + "id": "51329", + "name": "Sleaford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.99826000", + "longitude": "-0.40941000" + }, + { + "id": "51330", + "name": "Sleights", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.45506000", + "longitude": "-0.66484000" + }, + { + "id": "51331", + "name": "Slinfold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.07209000", + "longitude": "-0.40658000" + }, + { + "id": "51332", + "name": "Slough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50949000", + "longitude": "-0.59541000" + }, + { + "id": "51333", + "name": "Smethwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.49268000", + "longitude": "-1.96745000" + }, + { + "id": "51335", + "name": "Snaith", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.69112000", + "longitude": "-1.02859000" + }, + { + "id": "51336", + "name": "Snettisham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.87882000", + "longitude": "0.50099000" + }, + { + "id": "51337", + "name": "Snodland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32971000", + "longitude": "0.44305000" + }, + { + "id": "51338", + "name": "Soham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33543000", + "longitude": "0.33654000" + }, + { + "id": "51339", + "name": "Solihull", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41667000", + "longitude": "-1.75000000" + }, + { + "id": "51340", + "name": "Somerset", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.08333000", + "longitude": "-3.00000000" + }, + { + "id": "51341", + "name": "Somersham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.38333000", + "longitude": "0.00000000" + }, + { + "id": "51342", + "name": "Somerton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.95421000", + "longitude": "-1.27613000" + }, + { + "id": "51343", + "name": "Sonning Common", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51873000", + "longitude": "-0.97753000" + }, + { + "id": "51345", + "name": "South Benfleet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55295000", + "longitude": "0.55962000" + }, + { + "id": "51346", + "name": "South Brent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.42654000", + "longitude": "-3.83426000" + }, + { + "id": "51347", + "name": "South Cave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76987000", + "longitude": "-0.60107000" + }, + { + "id": "51348", + "name": "South Cerney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67319000", + "longitude": "-1.93097000" + }, + { + "id": "51349", + "name": "South Chailey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.93831000", + "longitude": "-0.02105000" + }, + { + "id": "51350", + "name": "South Collingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.13333000", + "longitude": "-0.76667000" + }, + { + "id": "51351", + "name": "South Croydon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36217000", + "longitude": "-0.09421000" + }, + { + "id": "51352", + "name": "South Elmsall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.59709000", + "longitude": "-1.28034000" + }, + { + "id": "51353", + "name": "South Gloucestershire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50000000", + "longitude": "-2.41667000" + }, + { + "id": "51354", + "name": "South Harting", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.96924000", + "longitude": "-0.88388000" + }, + { + "id": "51355", + "name": "South Hayling", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.78773000", + "longitude": "-0.97697000" + }, + { + "id": "51356", + "name": "South Hetton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.79906000", + "longitude": "-1.40671000" + }, + { + "id": "51358", + "name": "South Littleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11416000", + "longitude": "-1.89014000" + }, + { + "id": "51359", + "name": "South Luffenham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60857000", + "longitude": "-0.61232000" + }, + { + "id": "51360", + "name": "South Milford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.77672000", + "longitude": "-1.24609000" + }, + { + "id": "51361", + "name": "South Molton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.01667000", + "longitude": "-3.83333000" + }, + { + "id": "51362", + "name": "South Nutfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.01667000", + "longitude": "-0.13333000" + }, + { + "id": "51363", + "name": "South Ockendon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50799000", + "longitude": "0.28333000" + }, + { + "id": "51364", + "name": "South Petherton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.94829000", + "longitude": "-2.80708000" + }, + { + "id": "51365", + "name": "South Shields", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.99859000", + "longitude": "-1.43230000" + }, + { + "id": "51366", + "name": "South Tyneside", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.95000000", + "longitude": "-1.41667000" + }, + { + "id": "51367", + "name": "South Wingfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.09593000", + "longitude": "-1.43998000" + }, + { + "id": "51368", + "name": "South Witham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76476000", + "longitude": "-0.62811000" + }, + { + "id": "51369", + "name": "Southall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50896000", + "longitude": "-0.37130000" + }, + { + "id": "51370", + "name": "Southam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25266000", + "longitude": "-1.38840000" + }, + { + "id": "51371", + "name": "Southampton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91667000", + "longitude": "-1.38333000" + }, + { + "id": "51372", + "name": "Southchurch Village", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54049000", + "longitude": "0.72935000" + }, + { + "id": "51373", + "name": "Southend-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53782000", + "longitude": "0.71433000" + }, + { + "id": "51374", + "name": "Southery", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.52714000", + "longitude": "0.38783000" + }, + { + "id": "51376", + "name": "Southminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66228000", + "longitude": "0.82968000" + }, + { + "id": "51377", + "name": "Southowram", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70988000", + "longitude": "-1.83181000" + }, + { + "id": "51378", + "name": "Southport", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.64581000", + "longitude": "-3.01008000" + }, + { + "id": "51379", + "name": "Southsea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.79205000", + "longitude": "-1.08593000" + }, + { + "id": "51380", + "name": "Southwater", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.02369000", + "longitude": "-0.35173000" + }, + { + "id": "51381", + "name": "Southwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.07804000", + "longitude": "-0.95538000" + }, + { + "id": "51382", + "name": "Southwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.29694000", + "longitude": "-2.23250000" + }, + { + "id": "51383", + "name": "Southwold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.32721000", + "longitude": "1.68017000" + }, + { + "id": "51384", + "name": "Sowerby Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.70903000", + "longitude": "-1.90929000" + }, + { + "id": "51385", + "name": "Spalding", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.78709000", + "longitude": "-0.15141000" + }, + { + "id": "51386", + "name": "Speldhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.15076000", + "longitude": "0.21947000" + }, + { + "id": "51387", + "name": "Spennymoor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.69880000", + "longitude": "-1.60229000" + }, + { + "id": "51388", + "name": "Spilsby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.17363000", + "longitude": "0.09373000" + }, + { + "id": "51390", + "name": "Spixworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68529000", + "longitude": "1.32027000" + }, + { + "id": "51391", + "name": "Spofforth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.95427000", + "longitude": "-1.44848000" + }, + { + "id": "51392", + "name": "Spratton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.32447000", + "longitude": "-0.95386000" + }, + { + "id": "51394", + "name": "Sproatley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.79379000", + "longitude": "-0.19130000" + }, + { + "id": "51395", + "name": "St Albans", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75000000", + "longitude": "-0.33333000" + }, + { + "id": "51396", + "name": "St Austell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.34250000", + "longitude": "-4.77442000" + }, + { + "id": "51397", + "name": "St Helens", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.45000000", + "longitude": "-2.73333000" + }, + { + "id": "51398", + "name": "St Ives", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.20861000", + "longitude": "-5.48750000" + }, + { + "id": "51399", + "name": "St Just", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.12379000", + "longitude": "-5.68065000" + }, + { + "id": "51400", + "name": "St Leonards", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83077000", + "longitude": "-1.84377000" + }, + { + "id": "51401", + "name": "St Mary's", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "49.91719000", + "longitude": "-6.29517000" + }, + { + "id": "51402", + "name": "St Mary's Bay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.01003000", + "longitude": "0.97710000" + }, + { + "id": "51403", + "name": "St. Day", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.23958000", + "longitude": "-5.18572000" + }, + { + "id": "51404", + "name": "St. Helens", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.69688000", + "longitude": "-1.11159000" + }, + { + "id": "51405", + "name": "Stafford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.80521000", + "longitude": "-2.11636000" + }, + { + "id": "51406", + "name": "Staffordshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.83333000", + "longitude": "-2.00000000" + }, + { + "id": "51407", + "name": "Stagsden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13046000", + "longitude": "-0.56678000" + }, + { + "id": "51408", + "name": "Stainburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.93333000", + "longitude": "-1.61667000" + }, + { + "id": "51409", + "name": "Staindrop", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.58102000", + "longitude": "-1.80708000" + }, + { + "id": "51410", + "name": "Staines", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43092000", + "longitude": "-0.50606000" + }, + { + "id": "51411", + "name": "Stainforth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.60000000", + "longitude": "-1.03333000" + }, + { + "id": "51412", + "name": "Stakeford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.16110000", + "longitude": "-1.57529000" + }, + { + "id": "51413", + "name": "Stalbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95807000", + "longitude": "-2.37548000" + }, + { + "id": "51414", + "name": "Stalham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.77079000", + "longitude": "1.51783000" + }, + { + "id": "51415", + "name": "Stallingborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.58675000", + "longitude": "-0.18489000" + }, + { + "id": "51416", + "name": "Stalybridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48414000", + "longitude": "-2.05908000" + }, + { + "id": "51417", + "name": "Stamford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.65000000", + "longitude": "-0.48333000" + }, + { + "id": "51418", + "name": "Stamford Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.98850000", + "longitude": "-0.91547000" + }, + { + "id": "51419", + "name": "Stanbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.90864000", + "longitude": "-0.59815000" + }, + { + "id": "51420", + "name": "Standlake", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72690000", + "longitude": "-1.42436000" + }, + { + "id": "51421", + "name": "Standon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.91667000", + "longitude": "-2.28333000" + }, + { + "id": "51422", + "name": "Stanford in the Vale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63969000", + "longitude": "-1.50652000" + }, + { + "id": "51423", + "name": "Stanford-le-Hope", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52274000", + "longitude": "0.43422000" + }, + { + "id": "51424", + "name": "Stanhope", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.75000000", + "longitude": "-2.01667000" + }, + { + "id": "51426", + "name": "Stanley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.86796000", + "longitude": "-1.69846000" + }, + { + "id": "51427", + "name": "Stanmore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61667000", + "longitude": "-0.31667000" + }, + { + "id": "51428", + "name": "Stannington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.10862000", + "longitude": "-1.66855000" + }, + { + "id": "51429", + "name": "Stansted Mountfitchet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.90000000", + "longitude": "0.20000000" + }, + { + "id": "51430", + "name": "Stanwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33198000", + "longitude": "-0.56348000" + }, + { + "id": "51431", + "name": "Staplehurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.16110000", + "longitude": "0.55249000" + }, + { + "id": "51432", + "name": "Starcross", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.62734000", + "longitude": "-3.44797000" + }, + { + "id": "51433", + "name": "Startforth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.53851000", + "longitude": "-1.93016000" + }, + { + "id": "51434", + "name": "Staveley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26667000", + "longitude": "-1.35000000" + }, + { + "id": "51435", + "name": "Steeple Bumpstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.04346000", + "longitude": "0.44808000" + }, + { + "id": "51436", + "name": "Steeple Claydon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.93643000", + "longitude": "-0.98328000" + }, + { + "id": "51437", + "name": "Steeton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.88333000", + "longitude": "-1.95000000" + }, + { + "id": "51440", + "name": "Stevenage", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.90224000", + "longitude": "-0.20256000" + }, + { + "id": "51442", + "name": "Steventon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62473000", + "longitude": "-1.32145000" + }, + { + "id": "51443", + "name": "Stevington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.16848000", + "longitude": "-0.55515000" + }, + { + "id": "51444", + "name": "Stewartby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.07044000", + "longitude": "-0.51490000" + }, + { + "id": "51446", + "name": "Stewkley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.92744000", + "longitude": "-0.76381000" + }, + { + "id": "51447", + "name": "Steyning", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.88744000", + "longitude": "-0.32787000" + }, + { + "id": "51449", + "name": "Stickney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.08949000", + "longitude": "0.00545000" + }, + { + "id": "51450", + "name": "Stillington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.60529000", + "longitude": "-1.42191000" + }, + { + "id": "51451", + "name": "Stilton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48788000", + "longitude": "-0.28894000" + }, + { + "id": "51453", + "name": "Stithians", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.18870000", + "longitude": "-5.17807000" + }, + { + "id": "51454", + "name": "Stock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66351000", + "longitude": "0.44263000" + }, + { + "id": "51455", + "name": "Stockport", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.40979000", + "longitude": "-2.15761000" + }, + { + "id": "51456", + "name": "Stocksbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.48249000", + "longitude": "-1.59373000" + }, + { + "id": "51457", + "name": "Stocksfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.94026000", + "longitude": "-1.90398000" + }, + { + "id": "51458", + "name": "Stockton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.27181000", + "longitude": "-1.36055000" + }, + { + "id": "51459", + "name": "Stockton Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.37084000", + "longitude": "-2.57406000" + }, + { + "id": "51460", + "name": "Stockton-on-Tees", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.55000000", + "longitude": "-1.33333000" + }, + { + "id": "51461", + "name": "Stoke Ferry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57051000", + "longitude": "0.51320000" + }, + { + "id": "51462", + "name": "Stoke Gabriel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.40328000", + "longitude": "-3.62111000" + }, + { + "id": "51463", + "name": "Stoke Gifford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51686000", + "longitude": "-2.54053000" + }, + { + "id": "51464", + "name": "Stoke Golding", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57060000", + "longitude": "-1.41124000" + }, + { + "id": "51465", + "name": "Stoke Goldington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13133000", + "longitude": "-0.77814000" + }, + { + "id": "51466", + "name": "Stoke Poges", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54441000", + "longitude": "-0.58880000" + }, + { + "id": "51467", + "name": "Stoke Prior", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.29978000", + "longitude": "-2.08034000" + }, + { + "id": "51468", + "name": "Stoke-on-Trent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00415000", + "longitude": "-2.18538000" + }, + { + "id": "51469", + "name": "Stoke-sub-Hamdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.95397000", + "longitude": "-2.74971000" + }, + { + "id": "51470", + "name": "Stokenchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65831000", + "longitude": "-0.89740000" + }, + { + "id": "51471", + "name": "Stokesley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.46998000", + "longitude": "-1.19330000" + }, + { + "id": "51472", + "name": "Stone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90590000", + "longitude": "-2.15409000" + }, + { + "id": "51474", + "name": "Stonehouse", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75000000", + "longitude": "-2.28333000" + }, + { + "id": "51476", + "name": "Stonesfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85142000", + "longitude": "-1.42960000" + }, + { + "id": "51477", + "name": "Stoney Stanton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.54839000", + "longitude": "-1.27930000" + }, + { + "id": "51480", + "name": "Storrington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91765000", + "longitude": "-0.45473000" + }, + { + "id": "51481", + "name": "Stotfold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.01632000", + "longitude": "-0.23209000" + }, + { + "id": "51482", + "name": "Stourbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.45608000", + "longitude": "-2.14317000" + }, + { + "id": "51483", + "name": "Stourport-on-Severn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33976000", + "longitude": "-2.28034000" + }, + { + "id": "51484", + "name": "Stow on the Wold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.93008000", + "longitude": "-1.72382000" + }, + { + "id": "51485", + "name": "Stowmarket", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.18893000", + "longitude": "0.99774000" + }, + { + "id": "51487", + "name": "Stradbroke", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31819000", + "longitude": "1.27278000" + }, + { + "id": "51489", + "name": "Stratfield Mortimer", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37339000", + "longitude": "-1.03495000" + }, + { + "id": "51490", + "name": "Stratford-upon-Avon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.19166000", + "longitude": "-1.70734000" + }, + { + "id": "51494", + "name": "Stratton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.73394000", + "longitude": "-1.97968000" + }, + { + "id": "51495", + "name": "Streatley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94628000", + "longitude": "-0.44374000" + }, + { + "id": "51496", + "name": "Street", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.12472000", + "longitude": "-2.74000000" + }, + { + "id": "51497", + "name": "Streetly", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58333000", + "longitude": "-1.88333000" + }, + { + "id": "51498", + "name": "Strensall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.03999000", + "longitude": "-1.03512000" + }, + { + "id": "51499", + "name": "Stretford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.45000000", + "longitude": "-2.31667000" + }, + { + "id": "51500", + "name": "Stretham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34709000", + "longitude": "0.21852000" + }, + { + "id": "51502", + "name": "Strood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39323000", + "longitude": "0.47713000" + }, + { + "id": "51503", + "name": "Stroud", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75000000", + "longitude": "-2.20000000" + }, + { + "id": "51504", + "name": "Studley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.27026000", + "longitude": "-1.89188000" + }, + { + "id": "51505", + "name": "Sturminster Marshall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.79968000", + "longitude": "-2.07615000" + }, + { + "id": "51506", + "name": "Sturminster Newton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.92681000", + "longitude": "-2.30515000" + }, + { + "id": "51507", + "name": "Sturry", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30132000", + "longitude": "1.12155000" + }, + { + "id": "51508", + "name": "Sudbrooke", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26667000", + "longitude": "-0.45000000" + }, + { + "id": "51509", + "name": "Sudbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.03890000", + "longitude": "0.73117000" + }, + { + "id": "51510", + "name": "Suffolk", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.16667000", + "longitude": "1.00000000" + }, + { + "id": "51511", + "name": "Sunbury-on-Thames", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40424000", + "longitude": "-0.41817000" + }, + { + "id": "51512", + "name": "Sunderland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.90465000", + "longitude": "-1.38222000" + }, + { + "id": "51513", + "name": "Sundridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27797000", + "longitude": "0.12231000" + }, + { + "id": "51514", + "name": "Surbiton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39148000", + "longitude": "-0.29825000" + }, + { + "id": "51515", + "name": "Surrey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25000000", + "longitude": "-0.33333000" + }, + { + "id": "51516", + "name": "Sutterton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90269000", + "longitude": "-0.09235000" + }, + { + "id": "51517", + "name": "Sutton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.35000000", + "longitude": "-0.20000000" + }, + { + "id": "51518", + "name": "Sutton Benger", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50685000", + "longitude": "-2.08015000" + }, + { + "id": "51519", + "name": "Sutton Bonington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.82144000", + "longitude": "-1.24969000" + }, + { + "id": "51520", + "name": "Sutton Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76995000", + "longitude": "0.18550000" + }, + { + "id": "51521", + "name": "Sutton Coldfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.56667000", + "longitude": "-1.81667000" + }, + { + "id": "51522", + "name": "Sutton Courtenay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64130000", + "longitude": "-1.27682000" + }, + { + "id": "51523", + "name": "Sutton in Ashfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.12542000", + "longitude": "-1.26135000" + }, + { + "id": "51524", + "name": "Sutton on Trent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.18437000", + "longitude": "-0.81091000" + }, + { + "id": "51525", + "name": "Sutton upon Derwent", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91314000", + "longitude": "-0.92465000" + }, + { + "id": "51526", + "name": "Swadlincote", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.77400000", + "longitude": "-1.55744000" + }, + { + "id": "51527", + "name": "Swaffham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64770000", + "longitude": "0.68570000" + }, + { + "id": "51528", + "name": "Swanage", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.60923000", + "longitude": "-1.96260000" + }, + { + "id": "51529", + "name": "Swanley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39717000", + "longitude": "0.17321000" + }, + { + "id": "51530", + "name": "Swanmore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.94404000", + "longitude": "-1.18021000" + }, + { + "id": "51531", + "name": "Swanscombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44713000", + "longitude": "0.31028000" + }, + { + "id": "51533", + "name": "Swarthmoor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.18466000", + "longitude": "-3.11707000" + }, + { + "id": "51534", + "name": "Swavesey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.30155000", + "longitude": "-0.00476000" + }, + { + "id": "51535", + "name": "Sway", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.78685000", + "longitude": "-1.60294000" + }, + { + "id": "51536", + "name": "Swillington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.76846000", + "longitude": "-1.41750000" + }, + { + "id": "51537", + "name": "Swindon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55797000", + "longitude": "-1.78116000" + }, + { + "id": "51538", + "name": "Swineshead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.94543000", + "longitude": "-0.15947000" + }, + { + "id": "51539", + "name": "Swinton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50000000", + "longitude": "-2.35000000" + }, + { + "id": "51541", + "name": "Syston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.68333000", + "longitude": "-1.06667000" + }, + { + "id": "51542", + "name": "Sywell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.29856000", + "longitude": "-0.79728000" + }, + { + "id": "51543", + "name": "Tadcaster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.88322000", + "longitude": "-1.26344000" + }, + { + "id": "51544", + "name": "Tadley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.35045000", + "longitude": "-1.12850000" + }, + { + "id": "51545", + "name": "Tadworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.29169000", + "longitude": "-0.23582000" + }, + { + "id": "51548", + "name": "Takeley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.87089000", + "longitude": "0.26583000" + }, + { + "id": "51552", + "name": "Tamworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.63399000", + "longitude": "-1.69587000" + }, + { + "id": "51554", + "name": "Tanfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.89288000", + "longitude": "-1.71316000" + }, + { + "id": "51555", + "name": "Tangmere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85131000", + "longitude": "-0.71633000" + }, + { + "id": "51556", + "name": "Tankerton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36370000", + "longitude": "1.04913000" + }, + { + "id": "51557", + "name": "Tansley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.13197000", + "longitude": "-1.51882000" + }, + { + "id": "51560", + "name": "Tarleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.68005000", + "longitude": "-2.82968000" + }, + { + "id": "51561", + "name": "Tarporley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.15918000", + "longitude": "-2.66867000" + }, + { + "id": "51562", + "name": "Tarvin", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19737000", + "longitude": "-2.76548000" + }, + { + "id": "51563", + "name": "Tattenhall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.12188000", + "longitude": "-2.76746000" + }, + { + "id": "51564", + "name": "Taunton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.01494000", + "longitude": "-3.10293000" + }, + { + "id": "51565", + "name": "Tavistock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.54944000", + "longitude": "-4.14418000" + }, + { + "id": "51567", + "name": "Teddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.42233000", + "longitude": "-0.33053000" + }, + { + "id": "51568", + "name": "Teignmouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.54768000", + "longitude": "-3.49637000" + }, + { + "id": "51569", + "name": "Telford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67659000", + "longitude": "-2.44926000" + }, + { + "id": "51570", + "name": "Telford and Wrekin", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.75000000", + "longitude": "-2.50000000" + }, + { + "id": "51571", + "name": "Templecombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.99908000", + "longitude": "-2.41578000" + }, + { + "id": "51574", + "name": "Tempsford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.17051000", + "longitude": "-0.29586000" + }, + { + "id": "51575", + "name": "Tenbury Wells", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31077000", + "longitude": "-2.59621000" + }, + { + "id": "51577", + "name": "Tenterden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.06845000", + "longitude": "0.68776000" + }, + { + "id": "51578", + "name": "Terrington Saint John", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70546000", + "longitude": "0.27389000" + }, + { + "id": "51579", + "name": "Terrington St Clement", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.75813000", + "longitude": "0.29732000" + }, + { + "id": "51580", + "name": "Tetbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63944000", + "longitude": "-2.16222000" + }, + { + "id": "51581", + "name": "Tetney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.49239000", + "longitude": "-0.02106000" + }, + { + "id": "51582", + "name": "Tewkesbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99244000", + "longitude": "-2.16010000" + }, + { + "id": "51583", + "name": "Teynham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33045000", + "longitude": "0.80526000" + }, + { + "id": "51584", + "name": "Thame", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74840000", + "longitude": "-0.97624000" + }, + { + "id": "51585", + "name": "Thames Ditton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38964000", + "longitude": "-0.33928000" + }, + { + "id": "51586", + "name": "Thatcham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40366000", + "longitude": "-1.26049000" + }, + { + "id": "51587", + "name": "Thaxted", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.95326000", + "longitude": "0.34478000" + }, + { + "id": "51588", + "name": "The Boldons", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.94260000", + "longitude": "-1.45349000" + }, + { + "id": "51590", + "name": "Theale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43694000", + "longitude": "-1.07700000" + }, + { + "id": "51591", + "name": "Thetford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41667000", + "longitude": "0.75000000" + }, + { + "id": "51592", + "name": "Theydon Bois", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67426000", + "longitude": "0.09781000" + }, + { + "id": "51593", + "name": "Thirsk", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.23298000", + "longitude": "-1.34411000" + }, + { + "id": "51594", + "name": "Thornaby-on-Tees", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.53333000", + "longitude": "-1.30000000" + }, + { + "id": "51595", + "name": "Thornbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60889000", + "longitude": "-2.52028000" + }, + { + "id": "51596", + "name": "Thorne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61122000", + "longitude": "-0.96308000" + }, + { + "id": "51597", + "name": "Thorner", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.86093000", + "longitude": "-1.42676000" + }, + { + "id": "51598", + "name": "Thorney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62147000", + "longitude": "-0.10815000" + }, + { + "id": "51599", + "name": "Thorngumbald", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.72100000", + "longitude": "-0.17175000" + }, + { + "id": "51601", + "name": "Thornley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.75000000", + "longitude": "-1.43333000" + }, + { + "id": "51604", + "name": "Thornton Dale", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.23528000", + "longitude": "-0.72016000" + }, + { + "id": "51605", + "name": "Thornton Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39884000", + "longitude": "-0.09872000" + }, + { + "id": "51606", + "name": "Thornton-Cleveleys", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.87389000", + "longitude": "-3.02244000" + }, + { + "id": "51607", + "name": "Thorp Arch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.91584000", + "longitude": "-1.31980000" + }, + { + "id": "51608", + "name": "Thorpe Hamlet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.62770000", + "longitude": "1.31175000" + }, + { + "id": "51609", + "name": "Thorpe le Soken", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85603000", + "longitude": "1.16580000" + }, + { + "id": "51610", + "name": "Thrapston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.39675000", + "longitude": "-0.53920000" + }, + { + "id": "51612", + "name": "Three Legged Cross", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85000000", + "longitude": "-1.88333000" + }, + { + "id": "51613", + "name": "Thurlby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.73879000", + "longitude": "-0.37868000" + }, + { + "id": "51614", + "name": "Thurlton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.52881000", + "longitude": "1.55617000" + }, + { + "id": "51616", + "name": "Thurston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25244000", + "longitude": "0.80749000" + }, + { + "id": "51617", + "name": "Tibshelf", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14436000", + "longitude": "-1.34056000" + }, + { + "id": "51618", + "name": "Ticehurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.04652000", + "longitude": "0.40860000" + }, + { + "id": "51619", + "name": "Tickhill", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.43194000", + "longitude": "-1.10859000" + }, + { + "id": "51620", + "name": "Tickton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.86233000", + "longitude": "-0.38330000" + }, + { + "id": "51621", + "name": "Tideswell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.27807000", + "longitude": "-1.77292000" + }, + { + "id": "51622", + "name": "Tidworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23142000", + "longitude": "-1.66324000" + }, + { + "id": "51623", + "name": "Tilbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46248000", + "longitude": "0.35856000" + }, + { + "id": "51625", + "name": "Timperley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.40000000", + "longitude": "-2.33333000" + }, + { + "id": "51626", + "name": "Timsbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32444000", + "longitude": "-2.47917000" + }, + { + "id": "51627", + "name": "Tingewick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99031000", + "longitude": "-1.04804000" + }, + { + "id": "51628", + "name": "Tintagel", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.66317000", + "longitude": "-4.75047000" + }, + { + "id": "51630", + "name": "Tipton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.52956000", + "longitude": "-2.06773000" + }, + { + "id": "51631", + "name": "Tiptree", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81230000", + "longitude": "0.74540000" + }, + { + "id": "51632", + "name": "Tisbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.06283000", + "longitude": "-2.08058000" + }, + { + "id": "51633", + "name": "Tiverton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.90241000", + "longitude": "-3.49232000" + }, + { + "id": "51635", + "name": "Toddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94922000", + "longitude": "-0.53277000" + }, + { + "id": "51636", + "name": "Todmorden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.71434000", + "longitude": "-2.09701000" + }, + { + "id": "51637", + "name": "Todwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.35373000", + "longitude": "-1.25673000" + }, + { + "id": "51638", + "name": "Tollesbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75913000", + "longitude": "0.83462000" + }, + { + "id": "51639", + "name": "Tolleshunt Knights", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79869000", + "longitude": "0.77651000" + }, + { + "id": "51640", + "name": "Tonbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.19532000", + "longitude": "0.27363000" + }, + { + "id": "51643", + "name": "Topsham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.68596000", + "longitude": "-3.46696000" + }, + { + "id": "51646", + "name": "Torpoint", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.37505000", + "longitude": "-4.19566000" + }, + { + "id": "51647", + "name": "Torquay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.46198000", + "longitude": "-3.52522000" + }, + { + "id": "51649", + "name": "Totnes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.43107000", + "longitude": "-3.68430000" + }, + { + "id": "51650", + "name": "Totternhoe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.88555000", + "longitude": "-0.57343000" + }, + { + "id": "51651", + "name": "Tottington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61326000", + "longitude": "-2.34071000" + }, + { + "id": "51652", + "name": "Totton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91877000", + "longitude": "-1.49037000" + }, + { + "id": "51653", + "name": "Tow Law", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.74456000", + "longitude": "-1.81434000" + }, + { + "id": "51654", + "name": "Towcester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13359000", + "longitude": "-0.99057000" + }, + { + "id": "51655", + "name": "Town Row", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.05302000", + "longitude": "0.23217000" + }, + { + "id": "51657", + "name": "Trafford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41667000", + "longitude": "-2.33333000" + }, + { + "id": "51658", + "name": "Trafford Park", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46879000", + "longitude": "-2.31194000" + }, + { + "id": "51662", + "name": "Treeton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.38564000", + "longitude": "-1.35189000" + }, + { + "id": "51669", + "name": "Trimdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.69878000", + "longitude": "-1.42881000" + }, + { + "id": "51670", + "name": "Trimdon Grange", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.71414000", + "longitude": "-1.42611000" + }, + { + "id": "51672", + "name": "Tring", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79471000", + "longitude": "-0.65824000" + }, + { + "id": "51674", + "name": "Trowbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31889000", + "longitude": "-2.20861000" + }, + { + "id": "51675", + "name": "Truro", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.26526000", + "longitude": "-5.05436000" + }, + { + "id": "51678", + "name": "Tunstall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.05830000", + "longitude": "-2.21140000" + }, + { + "id": "51680", + "name": "Tuxford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.23004000", + "longitude": "-0.89325000" + }, + { + "id": "51683", + "name": "Twyford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47518000", + "longitude": "-0.86037000" + }, + { + "id": "51685", + "name": "Tyldesley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51393000", + "longitude": "-2.46754000" + }, + { + "id": "51686", + "name": "Tynemouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.01788000", + "longitude": "-1.42559000" + }, + { + "id": "51687", + "name": "Tytherington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59250000", + "longitude": "-2.47972000" + }, + { + "id": "51689", + "name": "Uckfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.96948000", + "longitude": "0.09589000" + }, + { + "id": "51691", + "name": "Uffculme", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.90604000", + "longitude": "-3.32746000" + }, + { + "id": "51692", + "name": "Ulceby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61667000", + "longitude": "-0.33333000" + }, + { + "id": "51694", + "name": "Ulrome", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.99198000", + "longitude": "-0.22968000" + }, + { + "id": "51695", + "name": "Ulverston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.19594000", + "longitude": "-3.09626000" + }, + { + "id": "51697", + "name": "Uny Lelant", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.18298000", + "longitude": "-5.44047000" + }, + { + "id": "51698", + "name": "Upchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37620000", + "longitude": "0.64789000" + }, + { + "id": "51699", + "name": "Upminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55594000", + "longitude": "0.25560000" + }, + { + "id": "51700", + "name": "Upper Basildon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48165000", + "longitude": "-1.14075000" + }, + { + "id": "51701", + "name": "Upper Langwith", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22919000", + "longitude": "-1.20695000" + }, + { + "id": "51702", + "name": "Upper Poppleton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.97907000", + "longitude": "-1.15204000" + }, + { + "id": "51703", + "name": "Uppingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58803000", + "longitude": "-0.72272000" + }, + { + "id": "51704", + "name": "Upton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61466000", + "longitude": "-1.28677000" + }, + { + "id": "51705", + "name": "Upton Scudamore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.23000000", + "longitude": "-2.19333000" + }, + { + "id": "51706", + "name": "Upton upon Severn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.06258000", + "longitude": "-2.21802000" + }, + { + "id": "51707", + "name": "Upwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60249000", + "longitude": "0.22190000" + }, + { + "id": "51708", + "name": "Urmston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.44852000", + "longitude": "-2.35419000" + }, + { + "id": "51709", + "name": "Ushaw Moor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.77803000", + "longitude": "-1.64720000" + }, + { + "id": "51711", + "name": "Uttoxeter", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.89838000", + "longitude": "-1.86488000" + }, + { + "id": "51715", + "name": "Ventnor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.59449000", + "longitude": "-1.20672000" + }, + { + "id": "51716", + "name": "Verwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.87575000", + "longitude": "-1.87023000" + }, + { + "id": "51719", + "name": "Virginia Water", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.40343000", + "longitude": "-0.56651000" + }, + { + "id": "51720", + "name": "Waddesdon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.84675000", + "longitude": "-0.92105000" + }, + { + "id": "51721", + "name": "Waddington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16667000", + "longitude": "-0.53333000" + }, + { + "id": "51722", + "name": "Wadebridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.51734000", + "longitude": "-4.83633000" + }, + { + "id": "51723", + "name": "Wadhurst", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.06230000", + "longitude": "0.33929000" + }, + { + "id": "51724", + "name": "Wadworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.46726000", + "longitude": "-1.14261000" + }, + { + "id": "51725", + "name": "Wainfleet All Saints", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.10570000", + "longitude": "0.23583000" + }, + { + "id": "51726", + "name": "Wakefield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.68331000", + "longitude": "-1.49768000" + }, + { + "id": "51727", + "name": "Walberton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.84475000", + "longitude": "-0.62013000" + }, + { + "id": "51728", + "name": "Wales", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34061000", + "longitude": "-1.28162000" + }, + { + "id": "51729", + "name": "Walkden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51667000", + "longitude": "-2.40000000" + }, + { + "id": "51730", + "name": "Walkern", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.91888000", + "longitude": "-0.12758000" + }, + { + "id": "51731", + "name": "Walkington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.81950000", + "longitude": "-0.48958000" + }, + { + "id": "51732", + "name": "Wallasey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.42324000", + "longitude": "-3.06497000" + }, + { + "id": "51733", + "name": "Wallingford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59982000", + "longitude": "-1.12480000" + }, + { + "id": "51734", + "name": "Wallsend", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.99111000", + "longitude": "-1.53397000" + }, + { + "id": "51735", + "name": "Walsall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58333000", + "longitude": "-2.00000000" + }, + { + "id": "51736", + "name": "Walsden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.69361000", + "longitude": "-2.10001000" + }, + { + "id": "51737", + "name": "Waltham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.51667000", + "longitude": "-0.10000000" + }, + { + "id": "51738", + "name": "Waltham Abbey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68700000", + "longitude": "-0.00421000" + }, + { + "id": "51739", + "name": "Waltham Cross", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68602000", + "longitude": "-0.03575000" + }, + { + "id": "51740", + "name": "Walton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22284000", + "longitude": "-1.46084000" + }, + { + "id": "51741", + "name": "Walton-on-Thames", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38678000", + "longitude": "-0.41319000" + }, + { + "id": "51742", + "name": "Walton-on-the-Naze", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.84819000", + "longitude": "1.26738000" + }, + { + "id": "51743", + "name": "Wanborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54263000", + "longitude": "-1.69837000" + }, + { + "id": "51744", + "name": "Wansford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.57851000", + "longitude": "-0.42001000" + }, + { + "id": "51745", + "name": "Wantage", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58846000", + "longitude": "-1.42565000" + }, + { + "id": "51746", + "name": "Warboys", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.40352000", + "longitude": "-0.07931000" + }, + { + "id": "51747", + "name": "Wardle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.65000000", + "longitude": "-2.13333000" + }, + { + "id": "51748", + "name": "Ware", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81058000", + "longitude": "-0.02875000" + }, + { + "id": "51749", + "name": "Wareham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.68792000", + "longitude": "-2.11058000" + }, + { + "id": "51750", + "name": "Wargrave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50068000", + "longitude": "-0.86577000" + }, + { + "id": "51752", + "name": "Warkworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.35000000", + "longitude": "-1.61667000" + }, + { + "id": "51753", + "name": "Warlingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30953000", + "longitude": "-0.05794000" + }, + { + "id": "51754", + "name": "Warminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.20434000", + "longitude": "-2.17873000" + }, + { + "id": "51755", + "name": "Warnham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.09107000", + "longitude": "-0.34847000" + }, + { + "id": "51757", + "name": "Warrington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41667000", + "longitude": "-2.58333000" + }, + { + "id": "51758", + "name": "Warsop", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.21402000", + "longitude": "-1.15091000" + }, + { + "id": "51759", + "name": "Warton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.14715000", + "longitude": "-2.76435000" + }, + { + "id": "51760", + "name": "Warwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.28333000", + "longitude": "-1.58333000" + }, + { + "id": "51761", + "name": "Warwickshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33333000", + "longitude": "-1.58333000" + }, + { + "id": "51762", + "name": "Washingborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22425000", + "longitude": "-0.47485000" + }, + { + "id": "51763", + "name": "Washington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.90000000", + "longitude": "-1.51667000" + }, + { + "id": "51764", + "name": "Washwood Heath", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.50054000", + "longitude": "-1.82657000" + }, + { + "id": "51765", + "name": "Watchet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18189000", + "longitude": "-3.33079000" + }, + { + "id": "51766", + "name": "Water Eaton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.98697000", + "longitude": "-0.72188000" + }, + { + "id": "51767", + "name": "Water Orton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.51575000", + "longitude": "-1.74005000" + }, + { + "id": "51768", + "name": "Waterbeach", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.26553000", + "longitude": "0.19123000" + }, + { + "id": "51770", + "name": "Wateringbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25543000", + "longitude": "0.42317000" + }, + { + "id": "51771", + "name": "Waterloo", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.47454000", + "longitude": "-3.03017000" + }, + { + "id": "51772", + "name": "Waterlooville", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.88067000", + "longitude": "-1.03040000" + }, + { + "id": "51773", + "name": "Watford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65531000", + "longitude": "-0.39602000" + }, + { + "id": "51774", + "name": "Wath upon Dearne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.50291000", + "longitude": "-1.34580000" + }, + { + "id": "51775", + "name": "Watlington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64327000", + "longitude": "-1.00448000" + }, + { + "id": "51776", + "name": "Wattisham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.12543000", + "longitude": "0.93864000" + }, + { + "id": "51777", + "name": "Watton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.56667000", + "longitude": "0.83333000" + }, + { + "id": "51778", + "name": "Watton at Stone", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85842000", + "longitude": "-0.11381000" + }, + { + "id": "51779", + "name": "Weaverham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26018000", + "longitude": "-2.57291000" + }, + { + "id": "51780", + "name": "Wedmore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.22727000", + "longitude": "-2.81152000" + }, + { + "id": "51781", + "name": "Wednesbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.55140000", + "longitude": "-2.02355000" + }, + { + "id": "51782", + "name": "Wednesfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.59630000", + "longitude": "-2.08508000" + }, + { + "id": "51783", + "name": "Weedon Beck", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22955000", + "longitude": "-1.08371000" + }, + { + "id": "51784", + "name": "Weeting", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.46440000", + "longitude": "0.61485000" + }, + { + "id": "51785", + "name": "Welford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41706000", + "longitude": "-1.05871000" + }, + { + "id": "51786", + "name": "Wellesbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.19709000", + "longitude": "-1.59053000" + }, + { + "id": "51787", + "name": "Wellesbourne Mountford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.19246000", + "longitude": "-1.60967000" + }, + { + "id": "51788", + "name": "Welling", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46246000", + "longitude": "0.10759000" + }, + { + "id": "51789", + "name": "Wellingborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.30273000", + "longitude": "-0.69446000" + }, + { + "id": "51790", + "name": "Wellington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.70000000", + "longitude": "-2.51667000" + }, + { + "id": "51791", + "name": "Wellow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.32444000", + "longitude": "-2.37417000" + }, + { + "id": "51792", + "name": "Wells", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.20794000", + "longitude": "-2.64896000" + }, + { + "id": "51793", + "name": "Wells-next-the-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.95164000", + "longitude": "0.85110000" + }, + { + "id": "51795", + "name": "Welwyn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83310000", + "longitude": "-0.21359000" + }, + { + "id": "51796", + "name": "Welwyn Garden City", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80174000", + "longitude": "-0.20691000" + }, + { + "id": "51797", + "name": "Wem", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.85835000", + "longitude": "-2.71826000" + }, + { + "id": "51798", + "name": "Wembley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55242000", + "longitude": "-0.29686000" + }, + { + "id": "51799", + "name": "Wembury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.32272000", + "longitude": "-4.07529000" + }, + { + "id": "51801", + "name": "Wendover", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.76194000", + "longitude": "-0.73986000" + }, + { + "id": "51802", + "name": "Wentworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.47816000", + "longitude": "-1.41500000" + }, + { + "id": "51804", + "name": "Weobley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15960000", + "longitude": "-2.87500000" + }, + { + "id": "51805", + "name": "West Bergholt", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.91221000", + "longitude": "0.84986000" + }, + { + "id": "51806", + "name": "West Berkshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41667000", + "longitude": "-1.25000000" + }, + { + "id": "51807", + "name": "West Bridgford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.92979000", + "longitude": "-1.12537000" + }, + { + "id": "51808", + "name": "West Bromwich", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.51868000", + "longitude": "-1.99450000" + }, + { + "id": "51809", + "name": "West Byfleet", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33764000", + "longitude": "-0.50649000" + }, + { + "id": "51811", + "name": "West Clandon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26063000", + "longitude": "-0.50323000" + }, + { + "id": "51812", + "name": "West Coker", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91912000", + "longitude": "-2.68707000" + }, + { + "id": "51813", + "name": "West Cornforth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.70286000", + "longitude": "-1.51938000" + }, + { + "id": "51814", + "name": "West Drayton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50000000", + "longitude": "-0.46667000" + }, + { + "id": "51816", + "name": "West End", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.92741000", + "longitude": "-1.33282000" + }, + { + "id": "51817", + "name": "West End of London", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51414000", + "longitude": "-0.15510000" + }, + { + "id": "51818", + "name": "West Haddon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34168000", + "longitude": "-1.07804000" + }, + { + "id": "51819", + "name": "West Hallam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.97093000", + "longitude": "-1.35846000" + }, + { + "id": "51820", + "name": "West Horsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26033000", + "longitude": "-0.45563000" + }, + { + "id": "51821", + "name": "West Ilsley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53993000", + "longitude": "-1.32368000" + }, + { + "id": "51823", + "name": "West Kingsdown", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34281000", + "longitude": "0.26127000" + }, + { + "id": "51824", + "name": "West Kirby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.37302000", + "longitude": "-3.18417000" + }, + { + "id": "51827", + "name": "West Malling", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.29273000", + "longitude": "0.40907000" + }, + { + "id": "51828", + "name": "West Mersea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77798000", + "longitude": "0.91873000" + }, + { + "id": "51829", + "name": "West Molesey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39985000", + "longitude": "-0.37997000" + }, + { + "id": "51830", + "name": "West Rainton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.81667000", + "longitude": "-1.50000000" + }, + { + "id": "51831", + "name": "West Sussex", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.00000000", + "longitude": "-0.41667000" + }, + { + "id": "51832", + "name": "West Thurrock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47828000", + "longitude": "0.27672000" + }, + { + "id": "51833", + "name": "West Walton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.69782000", + "longitude": "0.17406000" + }, + { + "id": "51834", + "name": "West Wellow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.97273000", + "longitude": "-1.58293000" + }, + { + "id": "51835", + "name": "West Wickham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36667000", + "longitude": "-0.01667000" + }, + { + "id": "51836", + "name": "Westbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26000000", + "longitude": "-2.18750000" + }, + { + "id": "51837", + "name": "Westcliff-on-Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54424000", + "longitude": "0.69179000" + }, + { + "id": "51838", + "name": "Westcott", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.22438000", + "longitude": "-0.37195000" + }, + { + "id": "51839", + "name": "Westergate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.83988000", + "longitude": "-0.67123000" + }, + { + "id": "51840", + "name": "Westerham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.26632000", + "longitude": "0.06892000" + }, + { + "id": "51841", + "name": "Westfield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.88333000", + "longitude": "-1.86667000" + }, + { + "id": "51842", + "name": "Westgate on Sea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38239000", + "longitude": "1.33673000" + }, + { + "id": "51844", + "name": "Westhoughton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.54899000", + "longitude": "-2.52464000" + }, + { + "id": "51845", + "name": "Weston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.06667000", + "longitude": "-2.40000000" + }, + { + "id": "51846", + "name": "Weston Turville", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79168000", + "longitude": "-0.75767000" + }, + { + "id": "51847", + "name": "Weston-super-Mare", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34603000", + "longitude": "-2.97665000" + }, + { + "id": "51848", + "name": "Westoning", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.98140000", + "longitude": "-0.49698000" + }, + { + "id": "51849", + "name": "Westonzoyland", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.10854000", + "longitude": "-2.92843000" + }, + { + "id": "51851", + "name": "Westwood", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33462000", + "longitude": "-2.27975000" + }, + { + "id": "51852", + "name": "Wetheral", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.88401000", + "longitude": "-2.83327000" + }, + { + "id": "51853", + "name": "Wetherby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.92836000", + "longitude": "-1.38672000" + }, + { + "id": "51854", + "name": "Wetwang", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.01750000", + "longitude": "-0.57738000" + }, + { + "id": "51855", + "name": "Weybridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37178000", + "longitude": "-0.45975000" + }, + { + "id": "51856", + "name": "Weymouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.61448000", + "longitude": "-2.45991000" + }, + { + "id": "51857", + "name": "Whaley Bridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.33031000", + "longitude": "-1.98260000" + }, + { + "id": "51858", + "name": "Whalley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82209000", + "longitude": "-2.40712000" + }, + { + "id": "51859", + "name": "Whaplode", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.79934000", + "longitude": "-0.03639000" + }, + { + "id": "51860", + "name": "Wheathampstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81148000", + "longitude": "-0.29371000" + }, + { + "id": "51861", + "name": "Wheatley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74731000", + "longitude": "-1.13936000" + }, + { + "id": "51862", + "name": "Wheaton Aston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.71145000", + "longitude": "-2.22064000" + }, + { + "id": "51863", + "name": "Wheldrake", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.89624000", + "longitude": "-0.96303000" + }, + { + "id": "51864", + "name": "Whickham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.94561000", + "longitude": "-1.67635000" + }, + { + "id": "51865", + "name": "Whimple", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.76649000", + "longitude": "-3.35655000" + }, + { + "id": "51867", + "name": "Whitburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.95333000", + "longitude": "-1.36861000" + }, + { + "id": "51868", + "name": "Whitby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.48774000", + "longitude": "-0.61498000" + }, + { + "id": "51869", + "name": "Whitchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.96667000", + "longitude": "-2.68333000" + }, + { + "id": "51870", + "name": "White Waltham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.49225000", + "longitude": "-0.77239000" + }, + { + "id": "51872", + "name": "Whitefield", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.55000000", + "longitude": "-2.30000000" + }, + { + "id": "51873", + "name": "Whitehaven", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.54897000", + "longitude": "-3.58412000" + }, + { + "id": "51876", + "name": "Whiteparish", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.01041000", + "longitude": "-1.64855000" + }, + { + "id": "51878", + "name": "Whitley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39528000", + "longitude": "-2.16444000" + }, + { + "id": "51879", + "name": "Whitley Bay", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.03973000", + "longitude": "-1.44713000" + }, + { + "id": "51880", + "name": "Whitstable", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36070000", + "longitude": "1.02570000" + }, + { + "id": "51881", + "name": "Whittingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.40115000", + "longitude": "-1.89340000" + }, + { + "id": "51882", + "name": "Whittington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.67372000", + "longitude": "-1.76091000" + }, + { + "id": "51883", + "name": "Whittlesey", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.55804000", + "longitude": "-0.13016000" + }, + { + "id": "51884", + "name": "Whittlesford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11345000", + "longitude": "0.14969000" + }, + { + "id": "51885", + "name": "Whitwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.28333000", + "longitude": "-1.21667000" + }, + { + "id": "51886", + "name": "Whitworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.65601000", + "longitude": "-2.17710000" + }, + { + "id": "51887", + "name": "Whyteleafe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30808000", + "longitude": "-0.08429000" + }, + { + "id": "51889", + "name": "Wick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.45306000", + "longitude": "-2.42361000" + }, + { + "id": "51891", + "name": "Wickford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61101000", + "longitude": "0.52331000" + }, + { + "id": "51892", + "name": "Wickham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.89924000", + "longitude": "-1.18815000" + }, + { + "id": "51893", + "name": "Wickham Bishops", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77830000", + "longitude": "0.66823000" + }, + { + "id": "51894", + "name": "Wickham Market", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.15298000", + "longitude": "1.36299000" + }, + { + "id": "51895", + "name": "Wickwar", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59404000", + "longitude": "-2.39968000" + }, + { + "id": "51896", + "name": "Wideopen", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.04514000", + "longitude": "-1.62246000" + }, + { + "id": "51897", + "name": "Widnes", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.36180000", + "longitude": "-2.73406000" + }, + { + "id": "51898", + "name": "Wigan", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.54296000", + "longitude": "-2.63706000" + }, + { + "id": "51899", + "name": "Wigmore", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31474000", + "longitude": "-2.85802000" + }, + { + "id": "51900", + "name": "Wigston Magna", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58128000", + "longitude": "-1.09248000" + }, + { + "id": "51901", + "name": "Wigton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.82482000", + "longitude": "-3.16114000" + }, + { + "id": "51902", + "name": "Wilberfoss", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.94854000", + "longitude": "-0.88945000" + }, + { + "id": "51903", + "name": "Wilburton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.35191000", + "longitude": "0.17673000" + }, + { + "id": "51904", + "name": "Willand", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.88333000", + "longitude": "-3.36667000" + }, + { + "id": "51905", + "name": "Willaston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.29550000", + "longitude": "-2.99732000" + }, + { + "id": "51906", + "name": "Willenhall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58514000", + "longitude": "-2.05934000" + }, + { + "id": "51907", + "name": "Willingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.31404000", + "longitude": "0.05776000" + }, + { + "id": "51908", + "name": "Willington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.71667000", + "longitude": "-1.70000000" + }, + { + "id": "51909", + "name": "Williton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.16236000", + "longitude": "-3.32208000" + }, + { + "id": "51910", + "name": "Wilmcote", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22081000", + "longitude": "-1.76528000" + }, + { + "id": "51911", + "name": "Wilmslow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.32803000", + "longitude": "-2.23148000" + }, + { + "id": "51912", + "name": "Wilsden", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.82084000", + "longitude": "-1.85959000" + }, + { + "id": "51913", + "name": "Wilstead", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08088000", + "longitude": "-0.44889000" + }, + { + "id": "51914", + "name": "Wilton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.07926000", + "longitude": "-1.86210000" + }, + { + "id": "51915", + "name": "Wiltshire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25000000", + "longitude": "-1.91667000" + }, + { + "id": "51916", + "name": "Wimblington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.50925000", + "longitude": "0.08416000" + }, + { + "id": "51917", + "name": "Wimborne Minster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.78333000", + "longitude": "-1.98333000" + }, + { + "id": "51918", + "name": "Wincanton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.05676000", + "longitude": "-2.40574000" + }, + { + "id": "51920", + "name": "Winchcombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.95363000", + "longitude": "-1.96398000" + }, + { + "id": "51921", + "name": "Winchelsea Beach", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91691000", + "longitude": "0.72158000" + }, + { + "id": "51922", + "name": "Winchester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.06513000", + "longitude": "-1.31870000" + }, + { + "id": "51923", + "name": "Windermere", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.38086000", + "longitude": "-2.90709000" + }, + { + "id": "51924", + "name": "Windlesham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36509000", + "longitude": "-0.65476000" + }, + { + "id": "51925", + "name": "Windsor", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48333000", + "longitude": "-0.60000000" + }, + { + "id": "51927", + "name": "Winford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38333000", + "longitude": "-2.66111000" + }, + { + "id": "51928", + "name": "Wing", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.89524000", + "longitude": "-0.71956000" + }, + { + "id": "51929", + "name": "Wingate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.73242000", + "longitude": "-1.37896000" + }, + { + "id": "51930", + "name": "Wingerworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20200000", + "longitude": "-1.43359000" + }, + { + "id": "51931", + "name": "Wingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.27168000", + "longitude": "1.21463000" + }, + { + "id": "51932", + "name": "Wingrave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86494000", + "longitude": "-0.74244000" + }, + { + "id": "51933", + "name": "Winkleigh", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.85581000", + "longitude": "-3.94300000" + }, + { + "id": "51934", + "name": "Winscombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31810000", + "longitude": "-2.83224000" + }, + { + "id": "51935", + "name": "Winsford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19146000", + "longitude": "-2.52398000" + }, + { + "id": "51936", + "name": "Winslow", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94284000", + "longitude": "-0.88131000" + }, + { + "id": "51937", + "name": "Winterbourne", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44609000", + "longitude": "-1.34660000" + }, + { + "id": "51938", + "name": "Winterton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.65497000", + "longitude": "-0.59885000" + }, + { + "id": "51939", + "name": "Winwick", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.43333000", + "longitude": "-2.60000000" + }, + { + "id": "51940", + "name": "Wirksworth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.08232000", + "longitude": "-1.57391000" + }, + { + "id": "51941", + "name": "Wisbech", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.66622000", + "longitude": "0.15938000" + }, + { + "id": "51943", + "name": "Witchford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.38699000", + "longitude": "0.20602000" + }, + { + "id": "51944", + "name": "Witham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80007000", + "longitude": "0.64038000" + }, + { + "id": "51945", + "name": "Witheridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.91743000", + "longitude": "-3.70351000" + }, + { + "id": "51946", + "name": "Withernsea", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.73110000", + "longitude": "0.03347000" + }, + { + "id": "51947", + "name": "Witley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.14993000", + "longitude": "-0.64768000" + }, + { + "id": "51948", + "name": "Witney", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.78360000", + "longitude": "-1.48540000" + }, + { + "id": "51949", + "name": "Wittering", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.60698000", + "longitude": "-0.44048000" + }, + { + "id": "51950", + "name": "Witton Gilbert", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.80572000", + "longitude": "-1.63686000" + }, + { + "id": "51951", + "name": "Wiveliscombe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.04139000", + "longitude": "-3.31278000" + }, + { + "id": "51952", + "name": "Wivelsfield Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.96313000", + "longitude": "-0.07133000" + }, + { + "id": "51953", + "name": "Wivenhoe", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85553000", + "longitude": "0.95796000" + }, + { + "id": "51954", + "name": "Woburn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.98865000", + "longitude": "-0.61903000" + }, + { + "id": "51955", + "name": "Woburn Sands", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.01579000", + "longitude": "-0.64982000" + }, + { + "id": "51956", + "name": "Woking", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31903000", + "longitude": "-0.55893000" + }, + { + "id": "51957", + "name": "Wokingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41667000", + "longitude": "-0.91667000" + }, + { + "id": "51958", + "name": "Wold Newton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.14280000", + "longitude": "-0.39993000" + }, + { + "id": "51959", + "name": "Woldingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.28527000", + "longitude": "-0.03372000" + }, + { + "id": "51960", + "name": "Wollaston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25794000", + "longitude": "-0.67038000" + }, + { + "id": "51961", + "name": "Wolsingham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.73085000", + "longitude": "-1.88319000" + }, + { + "id": "51962", + "name": "Wolston", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.37717000", + "longitude": "-1.39544000" + }, + { + "id": "51963", + "name": "Wolvercote", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.78406000", + "longitude": "-1.29338000" + }, + { + "id": "51964", + "name": "Wolverhampton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58333000", + "longitude": "-2.11667000" + }, + { + "id": "51965", + "name": "Wombourn", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.53333000", + "longitude": "-2.18333000" + }, + { + "id": "51966", + "name": "Wombwell", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.52189000", + "longitude": "-1.39698000" + }, + { + "id": "51967", + "name": "Wood Street Village", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.25098000", + "longitude": "-0.63695000" + }, + { + "id": "51968", + "name": "Woodborough", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.33852000", + "longitude": "-1.83976000" + }, + { + "id": "51969", + "name": "Woodbridge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.09332000", + "longitude": "1.32042000" + }, + { + "id": "51970", + "name": "Woodbury", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.67664000", + "longitude": "-3.40160000" + }, + { + "id": "51971", + "name": "Woodchurch", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.07605000", + "longitude": "0.77346000" + }, + { + "id": "51972", + "name": "Woodcote", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.73333000", + "longitude": "-2.33333000" + }, + { + "id": "51973", + "name": "Woodford", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.38231000", + "longitude": "-0.58099000" + }, + { + "id": "51974", + "name": "Woodford Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60938000", + "longitude": "0.02329000" + }, + { + "id": "51975", + "name": "Woodhall Spa", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.15215000", + "longitude": "-0.21453000" + }, + { + "id": "51976", + "name": "Woodsetts", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.34804000", + "longitude": "-1.17204000" + }, + { + "id": "51977", + "name": "Woodstock", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.84850000", + "longitude": "-1.35132000" + }, + { + "id": "51978", + "name": "Wool", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.67966000", + "longitude": "-2.21890000" + }, + { + "id": "51979", + "name": "Woolavington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.16493000", + "longitude": "-2.93814000" + }, + { + "id": "51980", + "name": "Wooler", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "55.54755000", + "longitude": "-2.01186000" + }, + { + "id": "51981", + "name": "Woolley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61339000", + "longitude": "-1.51457000" + }, + { + "id": "51982", + "name": "Woolpit", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.22454000", + "longitude": "0.88826000" + }, + { + "id": "51983", + "name": "Wootton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.17380000", + "longitude": "1.17940000" + }, + { + "id": "51984", + "name": "Worcester", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.18935000", + "longitude": "-2.22001000" + }, + { + "id": "51985", + "name": "Worcester Park", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.37992000", + "longitude": "-0.24445000" + }, + { + "id": "51986", + "name": "Worcestershire", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.16667000", + "longitude": "-2.16667000" + }, + { + "id": "51987", + "name": "Workington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.64250000", + "longitude": "-3.54413000" + }, + { + "id": "51988", + "name": "Worksop", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.30182000", + "longitude": "-1.12404000" + }, + { + "id": "51989", + "name": "Worlaby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.61130000", + "longitude": "-0.46685000" + }, + { + "id": "51990", + "name": "Wormley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.13622000", + "longitude": "-0.64673000" + }, + { + "id": "51991", + "name": "Worthing", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.81795000", + "longitude": "-0.37538000" + }, + { + "id": "51992", + "name": "Worton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.31611000", + "longitude": "-2.04111000" + }, + { + "id": "51993", + "name": "Wotton-under-Edge", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63242000", + "longitude": "-2.34512000" + }, + { + "id": "51994", + "name": "Wouldham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34986000", + "longitude": "0.45816000" + }, + { + "id": "51995", + "name": "Wragby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.28333000", + "longitude": "-0.30000000" + }, + { + "id": "51996", + "name": "Wrawby", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.56672000", + "longitude": "-0.46194000" + }, + { + "id": "51997", + "name": "Wrea Green", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.77651000", + "longitude": "-2.91573000" + }, + { + "id": "51999", + "name": "Wrington", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.36173000", + "longitude": "-2.76319000" + }, + { + "id": "52000", + "name": "Writtle", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72906000", + "longitude": "0.42938000" + }, + { + "id": "52001", + "name": "Wrotham", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.30856000", + "longitude": "0.30899000" + }, + { + "id": "52002", + "name": "Wroughton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52411000", + "longitude": "-1.79559000" + }, + { + "id": "52003", + "name": "Wroxall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33791000", + "longitude": "-1.66898000" + }, + { + "id": "52004", + "name": "Wychbold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.29045000", + "longitude": "-2.11555000" + }, + { + "id": "52005", + "name": "Wye", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.18249000", + "longitude": "0.93678000" + }, + { + "id": "52006", + "name": "Wylam", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.97654000", + "longitude": "-1.82187000" + }, + { + "id": "52007", + "name": "Wymeswold", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.80536000", + "longitude": "-1.11288000" + }, + { + "id": "52009", + "name": "Yalding", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.22387000", + "longitude": "0.42920000" + }, + { + "id": "52010", + "name": "Yapton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.82090000", + "longitude": "-0.61300000" + }, + { + "id": "52011", + "name": "Yarm", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "54.50364000", + "longitude": "-1.35793000" + }, + { + "id": "52012", + "name": "Yarmouth", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.70529000", + "longitude": "-1.49929000" + }, + { + "id": "52013", + "name": "Yarnton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80448000", + "longitude": "-1.31149000" + }, + { + "id": "52014", + "name": "Yate", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54074000", + "longitude": "-2.41839000" + }, + { + "id": "52015", + "name": "Yateley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.34305000", + "longitude": "-0.82985000" + }, + { + "id": "52016", + "name": "Yatton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38839000", + "longitude": "-2.82353000" + }, + { + "id": "52017", + "name": "Yaxley", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.51768000", + "longitude": "-0.25852000" + }, + { + "id": "52018", + "name": "Yeadon", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.86437000", + "longitude": "-1.68743000" + }, + { + "id": "52019", + "name": "Yealmpton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.34856000", + "longitude": "-3.99877000" + }, + { + "id": "52020", + "name": "Yelverton", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.49290000", + "longitude": "-4.08382000" + }, + { + "id": "52021", + "name": "Yeovil", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.94159000", + "longitude": "-2.63211000" + }, + { + "id": "52022", + "name": "Yetminster", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "50.89579000", + "longitude": "-2.57959000" + }, + { + "id": "52024", + "name": "York", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.95763000", + "longitude": "-1.08271000" + }, + { + "id": "52025", + "name": "Youlgreave", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "53.17399000", + "longitude": "-1.69044000" + }, + { + "id": "52026", + "name": "Yoxall", + "state_id": 2336, + "state_code": "ENG", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76659000", + "longitude": "-1.79068000" + }, + { + "id": "48200", + "name": "Ahoghill", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.86667000", + "longitude": "-6.36667000" + }, + { + "id": "48253", + "name": "Annahilt", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.43333000", + "longitude": "-6.00000000" + }, + { + "id": "48254", + "name": "Annalong", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.10823000", + "longitude": "-5.89966000" + }, + { + "id": "48259", + "name": "Antrim", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.70000000", + "longitude": "-6.20000000" + }, + { + "id": "48260", + "name": "Antrim and Newtownabbey", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.70177000", + "longitude": "-6.19770000" + }, + { + "id": "48269", + "name": "Ardglass", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.26312000", + "longitude": "-5.60981000" + }, + { + "id": "48273", + "name": "Ards and North Down", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.53439000", + "longitude": "-5.62947000" + }, + { + "id": "48277", + "name": "Armagh", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.35000000", + "longitude": "-6.66667000" + }, + { + "id": "48278", + "name": "Armagh City Banbridge and Craigavon", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.36922000", + "longitude": "-6.45651000" + }, + { + "id": "48347", + "name": "Ballinamallard", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.40000000", + "longitude": "-7.58333000" + }, + { + "id": "48349", + "name": "Ballintoy Harbour", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.24422000", + "longitude": "-6.36919000" + }, + { + "id": "48351", + "name": "Ballycastle", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.20444000", + "longitude": "-6.24298000" + }, + { + "id": "48352", + "name": "Ballyclare", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.75089000", + "longitude": "-5.99944000" + }, + { + "id": "48353", + "name": "Ballygowan", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.50165000", + "longitude": "-5.79168000" + }, + { + "id": "48354", + "name": "Ballykelly", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.04425000", + "longitude": "-7.01855000" + }, + { + "id": "48355", + "name": "Ballymena", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.86357000", + "longitude": "-6.27628000" + }, + { + "id": "48356", + "name": "Ballymoney", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.07080000", + "longitude": "-6.51009000" + }, + { + "id": "48357", + "name": "Ballynahinch", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.40230000", + "longitude": "-5.89717000" + }, + { + "id": "48358", + "name": "Ballypatrick", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.18112000", + "longitude": "-6.15020000" + }, + { + "id": "48359", + "name": "Ballywalter", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.54329000", + "longitude": "-5.48475000" + }, + { + "id": "48366", + "name": "Banbridge", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.35000000", + "longitude": "-6.28333000" + }, + { + "id": "48371", + "name": "Bangor", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.65338000", + "longitude": "-5.66895000" + }, + { + "id": "48458", + "name": "Belfast", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.59682000", + "longitude": "-5.92541000" + }, + { + "id": "48460", + "name": "Bellaghy", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.80870000", + "longitude": "-6.51918000" + }, + { + "id": "48728", + "name": "Broughshane", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.89260000", + "longitude": "-6.20899000" + }, + { + "id": "48802", + "name": "Bushmills", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.20493000", + "longitude": "-6.51918000" + }, + { + "id": "48866", + "name": "Carnlough", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.99185000", + "longitude": "-5.99038000" + }, + { + "id": "48867", + "name": "Carnmoney", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.68333000", + "longitude": "-5.95000000" + }, + { + "id": "48870", + "name": "Carrickfergus", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.71580000", + "longitude": "-5.80580000" + }, + { + "id": "48873", + "name": "Carryduff", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.51799000", + "longitude": "-5.88713000" + }, + { + "id": "48881", + "name": "Castledawson", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.77723000", + "longitude": "-6.56227000" + }, + { + "id": "48882", + "name": "Castlederg", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.70699000", + "longitude": "-7.59336000" + }, + { + "id": "48884", + "name": "Castlereagh", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.57350000", + "longitude": "-5.88472000" + }, + { + "id": "48885", + "name": "Castlerock", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.15000000", + "longitude": "-6.78333000" + }, + { + "id": "48887", + "name": "Castlewellan", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.25690000", + "longitude": "-5.94446000" + }, + { + "id": "48896", + "name": "Causeway Coast and Glens", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.06014000", + "longitude": "-6.59081000" + }, + { + "id": "49006", + "name": "City of Belfast", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.58333000", + "longitude": "-5.91667000" + }, + { + "id": "49045", + "name": "Coalisland", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.54180000", + "longitude": "-6.70166000" + }, + { + "id": "49067", + "name": "Coleraine", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.13333000", + "longitude": "-6.66667000" + }, + { + "id": "49081", + "name": "Comber", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.54937000", + "longitude": "-5.74379000" + }, + { + "id": "49090", + "name": "Connor", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.80000000", + "longitude": "-6.20000000" + }, + { + "id": "49096", + "name": "Cookstown", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.64305000", + "longitude": "-6.74595000" + }, + { + "id": "49139", + "name": "Craigavon", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.44709000", + "longitude": "-6.38700000" + }, + { + "id": "49175", + "name": "Crossgar", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.39675000", + "longitude": "-5.76061000" + }, + { + "id": "49178", + "name": "Crossmaglen", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.08333000", + "longitude": "-6.60000000" + }, + { + "id": "49188", + "name": "Crumlin", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.62054000", + "longitude": "-6.21414000" + }, + { + "id": "49202", + "name": "Cullybackey", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.88875000", + "longitude": "-6.34701000" + }, + { + "id": "49203", + "name": "Culmore", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.05000000", + "longitude": "-7.26667000" + }, + { + "id": "49213", + "name": "Cushendall", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.08033000", + "longitude": "-6.06291000" + }, + { + "id": "49272", + "name": "Derry", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.99810000", + "longitude": "-7.30934000" + }, + { + "id": "49273", + "name": "Derry City and Strabane", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.82045000", + "longitude": "-7.35958000" + }, + { + "id": "49296", + "name": "Doagh", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.75000000", + "longitude": "-6.08333000" + }, + { + "id": "49302", + "name": "Donaghadee", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.64126000", + "longitude": "-5.53591000" + }, + { + "id": "49321", + "name": "Downpatrick", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.32814000", + "longitude": "-5.71529000" + }, + { + "id": "49323", + "name": "Draperstown", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.80000000", + "longitude": "-6.76667000" + }, + { + "id": "49328", + "name": "Dromore", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.51331000", + "longitude": "-7.45886000" + }, + { + "id": "49348", + "name": "Dundonald", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.59196000", + "longitude": "-5.79803000" + }, + { + "id": "49350", + "name": "Dundrum", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.25750000", + "longitude": "-5.84455000" + }, + { + "id": "49353", + "name": "Dungannon", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.50344000", + "longitude": "-6.76723000" + }, + { + "id": "49354", + "name": "Dungiven", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.93333000", + "longitude": "-6.91667000" + }, + { + "id": "49359", + "name": "Dunloy", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.01100000", + "longitude": "-6.41087000" + }, + { + "id": "49446", + "name": "Eglinton", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.01667000", + "longitude": "-7.18333000" + }, + { + "id": "49477", + "name": "Enniskillen", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.34615000", + "longitude": "-7.64133000" + }, + { + "id": "49545", + "name": "Fermanagh and Omagh", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.44257000", + "longitude": "-7.50299000" + }, + { + "id": "49560", + "name": "Fintona", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.50000000", + "longitude": "-7.31667000" + }, + { + "id": "49566", + "name": "Fivemiletown", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.38333000", + "longitude": "-7.30000000" + }, + { + "id": "49632", + "name": "Garvagh", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.98333000", + "longitude": "-6.66667000" + }, + { + "id": "49642", + "name": "Gilford", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.37256000", + "longitude": "-6.36126000" + }, + { + "id": "49655", + "name": "Glenariff", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.05000000", + "longitude": "-6.06667000" + }, + { + "id": "49656", + "name": "Glenavy", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.59231000", + "longitude": "-6.21371000" + }, + { + "id": "49746", + "name": "Greenisland", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.70081000", + "longitude": "-5.87479000" + }, + { + "id": "49751", + "name": "Greyabbey", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.53483000", + "longitude": "-5.56028000" + }, + { + "id": "49940", + "name": "Hillsborough", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.46345000", + "longitude": "-6.07664000" + }, + { + "id": "49975", + "name": "Holywood", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.63863000", + "longitude": "-5.82473000" + }, + { + "id": "50073", + "name": "Irvinestown", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.46667000", + "longitude": "-7.63333000" + }, + { + "id": "50097", + "name": "Jordanstown", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.68333000", + "longitude": "-5.90000000" + }, + { + "id": "50099", + "name": "Keady", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.25000000", + "longitude": "-6.70000000" + }, + { + "id": "50145", + "name": "Kilkeel", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.06196000", + "longitude": "-6.00308000" + }, + { + "id": "50148", + "name": "Killyleagh", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.40135000", + "longitude": "-5.64800000" + }, + { + "id": "50152", + "name": "Kilrea", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.95091000", + "longitude": "-6.55695000" + }, + { + "id": "50194", + "name": "Kircubbin", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.48739000", + "longitude": "-5.53385000" + }, + { + "id": "50253", + "name": "Larne", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.85000000", + "longitude": "-5.81667000" + }, + { + "id": "50303", + "name": "Limavady", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.05045000", + "longitude": "-6.95074000" + }, + { + "id": "50317", + "name": "Lisburn", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.52337000", + "longitude": "-6.03527000" + }, + { + "id": "50318", + "name": "Lisburn and Castlereagh", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.50824000", + "longitude": "-6.05246000" + }, + { + "id": "50320", + "name": "Lisnaskea", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.25000000", + "longitude": "-7.45000000" + }, + { + "id": "50389", + "name": "Londonderry County Borough", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.99721000", + "longitude": "-7.30917000" + }, + { + "id": "50466", + "name": "Maghera", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.84390000", + "longitude": "-6.67145000" + }, + { + "id": "50467", + "name": "Magherafelt", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.75356000", + "longitude": "-6.60656000" + }, + { + "id": "50468", + "name": "Magheralin", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.46695000", + "longitude": "-6.25980000" + }, + { + "id": "50568", + "name": "Mid and East Antrim", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.87436000", + "longitude": "-6.10141000" + }, + { + "id": "50567", + "name": "Mid Ulster", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.62190000", + "longitude": "-6.79097000" + }, + { + "id": "50585", + "name": "Millisle", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.60638000", + "longitude": "-5.52973000" + }, + { + "id": "50612", + "name": "Moira", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.48021000", + "longitude": "-6.22822000" + }, + { + "id": "50616", + "name": "Moneymore", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.69229000", + "longitude": "-6.66956000" + }, + { + "id": "50644", + "name": "Moy", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.45000000", + "longitude": "-6.66667000" + }, + { + "id": "50707", + "name": "Newcastle", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.21804000", + "longitude": "-5.88979000" + }, + { + "id": "50725", + "name": "Newry", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.17841000", + "longitude": "-6.33739000" + }, + { + "id": "50726", + "name": "Newry Mourne and Down", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.23616000", + "longitude": "-6.06687000" + }, + { + "id": "50739", + "name": "Newtownabbey", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.65983000", + "longitude": "-5.90858000" + }, + { + "id": "50740", + "name": "Newtownards", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.59236000", + "longitude": "-5.69092000" + }, + { + "id": "50741", + "name": "Newtownstewart", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.71778000", + "longitude": "-7.37886000" + }, + { + "id": "50811", + "name": "Omagh", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.60000000", + "longitude": "-7.30000000" + }, + { + "id": "50956", + "name": "Portadown", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.42302000", + "longitude": "-6.44434000" + }, + { + "id": "50957", + "name": "Portaferry", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.38086000", + "longitude": "-5.54569000" + }, + { + "id": "50958", + "name": "Portavogie", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.45916000", + "longitude": "-5.44304000" + }, + { + "id": "50959", + "name": "Portglenone", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.87147000", + "longitude": "-6.47146000" + }, + { + "id": "50968", + "name": "Portrush", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.19592000", + "longitude": "-6.64930000" + }, + { + "id": "50973", + "name": "Portstewart", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "55.18132000", + "longitude": "-6.71402000" + }, + { + "id": "51030", + "name": "Randalstown", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.75000000", + "longitude": "-6.30000000" + }, + { + "id": "51034", + "name": "Rathfriland", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.25000000", + "longitude": "-6.16667000" + }, + { + "id": "51113", + "name": "Rostrevor", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.10000000", + "longitude": "-6.20000000" + }, + { + "id": "51178", + "name": "Saintfield", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.46046000", + "longitude": "-5.83065000" + }, + { + "id": "51314", + "name": "Sion Mills", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.78752000", + "longitude": "-7.47276000" + }, + { + "id": "51486", + "name": "Strabane", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.82373000", + "longitude": "-7.46916000" + }, + { + "id": "51553", + "name": "Tandragee", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.35486000", + "longitude": "-6.41396000" + }, + { + "id": "51572", + "name": "Templepatrick", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.68333000", + "longitude": "-6.08333000" + }, + { + "id": "51751", + "name": "Waringstown", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.43431000", + "longitude": "-6.29929000" + }, + { + "id": "51756", + "name": "Warrenpoint", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.10148000", + "longitude": "-6.25731000" + }, + { + "id": "51874", + "name": "Whitehead", + "state_id": 2522, + "state_code": "NYK", + "country_id": 232, + "country_code": "GB", + "latitude": "54.75371000", + "longitude": "-5.70933000" + }, + { + "id": "48165", + "name": "Aberchirder", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.56012000", + "longitude": "-2.62856000" + }, + { + "id": "48168", + "name": "Aberdeen", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.14369000", + "longitude": "-2.09814000" + }, + { + "id": "48169", + "name": "Aberdeen City", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.16667000", + "longitude": "-2.16667000" + }, + { + "id": "48170", + "name": "Aberdeenshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.16667000", + "longitude": "-2.66667000" + }, + { + "id": "48171", + "name": "Aberdour", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.05417000", + "longitude": "-3.30058000" + }, + { + "id": "48173", + "name": "Aberfeldy", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.62196000", + "longitude": "-3.86693000" + }, + { + "id": "48178", + "name": "Aberlady", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.00884000", + "longitude": "-2.85851000" + }, + { + "id": "48179", + "name": "Abernethy", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.33247000", + "longitude": "-3.31226000" + }, + { + "id": "48185", + "name": "Aboyne", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.07546000", + "longitude": "-2.78023000" + }, + { + "id": "48195", + "name": "Addiebrownhill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.84289000", + "longitude": "-3.61667000" + }, + { + "id": "48201", + "name": "Airdrie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86602000", + "longitude": "-3.98025000" + }, + { + "id": "48203", + "name": "Airth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.06983000", + "longitude": "-3.77209000" + }, + { + "id": "48216", + "name": "Alexandria", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.99379000", + "longitude": "-4.58640000" + }, + { + "id": "48218", + "name": "Alford", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.23257000", + "longitude": "-2.70298000" + }, + { + "id": "48220", + "name": "Allanton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.78333000", + "longitude": "-2.21667000" + }, + { + "id": "48222", + "name": "Alloa", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.11586000", + "longitude": "-3.78997000" + }, + { + "id": "48223", + "name": "Almondbank", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.41729000", + "longitude": "-3.51733000" + }, + { + "id": "48225", + "name": "Alness", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.69596000", + "longitude": "-4.25510000" + }, + { + "id": "48234", + "name": "Alva", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.15284000", + "longitude": "-3.80505000" + }, + { + "id": "48238", + "name": "Alyth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.62209000", + "longitude": "-3.23005000" + }, + { + "id": "48251", + "name": "Angus", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.66667000", + "longitude": "-2.91667000" + }, + { + "id": "48255", + "name": "Annan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "54.98839000", + "longitude": "-3.25647000" + }, + { + "id": "48258", + "name": "Anstruther", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.22315000", + "longitude": "-2.70229000" + }, + { + "id": "48266", + "name": "Arbroath", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.56317000", + "longitude": "-2.58736000" + }, + { + "id": "48268", + "name": "Ardersier", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.56681000", + "longitude": "-4.03784000" + }, + { + "id": "48271", + "name": "Ardrishaig", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.01566000", + "longitude": "-5.44806000" + }, + { + "id": "48272", + "name": "Ardrossan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.65018000", + "longitude": "-4.80659000" + }, + { + "id": "48274", + "name": "Argyll and Bute", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.03693000", + "longitude": "-5.43679000" + }, + { + "id": "48276", + "name": "Armadale", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88333000", + "longitude": "-3.70000000" + }, + { + "id": "48291", + "name": "Ashgill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.73119000", + "longitude": "-3.93019000" + }, + { + "id": "48312", + "name": "Auchinleck", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.47157000", + "longitude": "-4.29337000" + }, + { + "id": "48313", + "name": "Auchterarder", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.29612000", + "longitude": "-3.70692000" + }, + { + "id": "48314", + "name": "Auchtermuchty", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.29158000", + "longitude": "-3.23428000" + }, + { + "id": "48320", + "name": "Aviemore", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.19553000", + "longitude": "-3.82590000" + }, + { + "id": "48328", + "name": "Ayr", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.46273000", + "longitude": "-4.63393000" + }, + { + "id": "48343", + "name": "Balerno", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88437000", + "longitude": "-3.33975000" + }, + { + "id": "48344", + "name": "Balfron", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.06809000", + "longitude": "-4.33559000" + }, + { + "id": "48345", + "name": "Balintore", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.75564000", + "longitude": "-3.91232000" + }, + { + "id": "48346", + "name": "Ballater", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.05011000", + "longitude": "-3.03798000" + }, + { + "id": "48348", + "name": "Ballingry", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.16392000", + "longitude": "-3.32841000" + }, + { + "id": "48350", + "name": "Balloch", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.00000000", + "longitude": "-4.58333000" + }, + { + "id": "48360", + "name": "Balmedie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.25052000", + "longitude": "-2.06163000" + }, + { + "id": "48361", + "name": "Balmullo", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.37694000", + "longitude": "-2.92940000" + }, + { + "id": "48368", + "name": "Banchory", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.05168000", + "longitude": "-2.48824000" + }, + { + "id": "48369", + "name": "Banff", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.66477000", + "longitude": "-2.52964000" + }, + { + "id": "48373", + "name": "Bankfoot", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.50058000", + "longitude": "-3.51707000" + }, + { + "id": "48374", + "name": "Banknock", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.98967000", + "longitude": "-3.95611000" + }, + { + "id": "48376", + "name": "Bannockburn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.08978000", + "longitude": "-3.91092000" + }, + { + "id": "48383", + "name": "Bargeddie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.85366000", + "longitude": "-4.07846000" + }, + { + "id": "48406", + "name": "Barra", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.98035000", + "longitude": "-7.45731000" + }, + { + "id": "48407", + "name": "Barrhead", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.79916000", + "longitude": "-4.39285000" + }, + { + "id": "48428", + "name": "Bathgate", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90204000", + "longitude": "-3.64398000" + }, + { + "id": "48439", + "name": "Bearsden", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.91536000", + "longitude": "-4.33279000" + }, + { + "id": "48440", + "name": "Beauly", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.48345000", + "longitude": "-4.46144000" + }, + { + "id": "48456", + "name": "Beith", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.74923000", + "longitude": "-4.63680000" + }, + { + "id": "48462", + "name": "Bellsbank", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.31310000", + "longitude": "-4.39869000" + }, + { + "id": "48463", + "name": "Bellshill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.81667000", + "longitude": "-4.01667000" + }, + { + "id": "48471", + "name": "Benbecula", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.44737000", + "longitude": "-7.34273000" + }, + { + "id": "48499", + "name": "Biggar", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.62297000", + "longitude": "-3.52455000" + }, + { + "id": "48513", + "name": "Bilston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.87030000", + "longitude": "-3.17814000" + }, + { + "id": "48526", + "name": "Bishopbriggs", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90669000", + "longitude": "-4.21869000" + }, + { + "id": "48537", + "name": "Bishopton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90969000", + "longitude": "-4.50560000" + }, + { + "id": "48542", + "name": "Blackburn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86667000", + "longitude": "-3.63333000" + }, + { + "id": "48549", + "name": "Blackridge", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88523000", + "longitude": "-3.77479000" + }, + { + "id": "48552", + "name": "Blackwood", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.66667000", + "longitude": "-3.91667000" + }, + { + "id": "48560", + "name": "Blairgowrie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.59157000", + "longitude": "-3.34045000" + }, + { + "id": "48562", + "name": "Blantyre", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.79634000", + "longitude": "-4.09485000" + }, + { + "id": "48641", + "name": "Bo’ness", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.01667000", + "longitude": "-3.61667000" + }, + { + "id": "48579", + "name": "Boddam", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.47076000", + "longitude": "-1.78009000" + }, + { + "id": "48590", + "name": "Bonhill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.97944000", + "longitude": "-4.56380000" + }, + { + "id": "48591", + "name": "Bonnybridge", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.00152000", + "longitude": "-3.88860000" + }, + { + "id": "48592", + "name": "Bonnyrigg", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.87329000", + "longitude": "-3.10510000" + }, + { + "id": "48618", + "name": "Bothwell", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.80272000", + "longitude": "-4.06835000" + }, + { + "id": "48669", + "name": "Brechin", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.72993000", + "longitude": "-2.65729000" + }, + { + "id": "48680", + "name": "Bridge of Allan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.15402000", + "longitude": "-3.94631000" + }, + { + "id": "48681", + "name": "Bridge of Earn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.34842000", + "longitude": "-3.40650000" + }, + { + "id": "48682", + "name": "Bridge of Weir", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.85582000", + "longitude": "-4.57894000" + }, + { + "id": "48697", + "name": "Brightons", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.98028000", + "longitude": "-3.71613000" + }, + { + "id": "48724", + "name": "Brora", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "58.00989000", + "longitude": "-3.85182000" + }, + { + "id": "48734", + "name": "Broxburn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.93415000", + "longitude": "-3.47133000" + }, + { + "id": "48745", + "name": "Buckhaven", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.17149000", + "longitude": "-3.03377000" + }, + { + "id": "48747", + "name": "Buckie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.67570000", + "longitude": "-2.96238000" + }, + { + "id": "48768", + "name": "Burghead", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.70113000", + "longitude": "-3.48992000" + }, + { + "id": "48780", + "name": "Burntisland", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.06248000", + "longitude": "-3.23176000" + }, + { + "id": "48800", + "name": "Busby", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.77995000", + "longitude": "-4.27711000" + }, + { + "id": "48816", + "name": "Cairneyhill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.05908000", + "longitude": "-3.53518000" + }, + { + "id": "48817", + "name": "Cairnryan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "54.97104000", + "longitude": "-5.01982000" + }, + { + "id": "48821", + "name": "Calderbank", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.84318000", + "longitude": "-3.97070000" + }, + { + "id": "48822", + "name": "Caldercruix", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88886000", + "longitude": "-3.88664000" + }, + { + "id": "48825", + "name": "Callander", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.24410000", + "longitude": "-4.21637000" + }, + { + "id": "48836", + "name": "Cambuslang", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.80966000", + "longitude": "-4.16096000" + }, + { + "id": "48840", + "name": "Campbeltown", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.42583000", + "longitude": "-5.60764000" + }, + { + "id": "48848", + "name": "Caol", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.83721000", + "longitude": "-5.10062000" + }, + { + "id": "48853", + "name": "Cardenden", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.14310000", + "longitude": "-3.25687000" + }, + { + "id": "48857", + "name": "Cardross", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.96184000", + "longitude": "-4.65316000" + }, + { + "id": "48858", + "name": "Carfin", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.80502000", + "longitude": "-3.96076000" + }, + { + "id": "48861", + "name": "Carluke", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.73595000", + "longitude": "-3.83019000" + }, + { + "id": "48864", + "name": "Carmunnock", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.79062000", + "longitude": "-4.23584000" + }, + { + "id": "48868", + "name": "Carnoustie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.50263000", + "longitude": "-2.70530000" + }, + { + "id": "48869", + "name": "Carnwath", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.70036000", + "longitude": "-3.62579000" + }, + { + "id": "48871", + "name": "Carron", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.02611000", + "longitude": "-3.79251000" + }, + { + "id": "48872", + "name": "Carronshore", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.03146000", + "longitude": "-3.78290000" + }, + { + "id": "48878", + "name": "Castle Douglas", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "54.94095000", + "longitude": "-3.92784000" + }, + { + "id": "48892", + "name": "Catrine", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.50422000", + "longitude": "-4.33026000" + }, + { + "id": "48917", + "name": "Chapelhall", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.84349000", + "longitude": "-3.94881000" + }, + { + "id": "48924", + "name": "Charlestown of Aberlour", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.47076000", + "longitude": "-3.22509000" + }, + { + "id": "48977", + "name": "Chirnside", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.80215000", + "longitude": "-2.20927000" + }, + { + "id": "48989", + "name": "Chryston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90280000", + "longitude": "-4.10759000" + }, + { + "id": "49008", + "name": "City of Edinburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.94973000", + "longitude": "-3.19333000" + }, + { + "id": "49014", + "name": "Clackmannan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.10743000", + "longitude": "-3.75098000" + }, + { + "id": "49015", + "name": "Clackmannanshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.16667000", + "longitude": "-3.75000000" + }, + { + "id": "49020", + "name": "Clarkston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.78594000", + "longitude": "-4.27651000" + }, + { + "id": "49029", + "name": "Cleland", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.80243000", + "longitude": "-3.91420000" + }, + { + "id": "49043", + "name": "Clydebank", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90137000", + "longitude": "-4.40570000" + }, + { + "id": "49044", + "name": "Coalburn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.59295000", + "longitude": "-3.88637000" + }, + { + "id": "49046", + "name": "Coaltown of Balgonie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.18474000", + "longitude": "-3.12578000" + }, + { + "id": "49048", + "name": "Coatbridge", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86216000", + "longitude": "-4.02469000" + }, + { + "id": "49051", + "name": "Cockenzie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.96823000", + "longitude": "-2.96562000" + }, + { + "id": "49065", + "name": "Coldstream", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.65111000", + "longitude": "-2.25295000" + }, + { + "id": "49069", + "name": "Colinton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90739000", + "longitude": "-3.25609000" + }, + { + "id": "49085", + "name": "Comrie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.36880000", + "longitude": "-3.97882000" + }, + { + "id": "49091", + "name": "Conon Bridge", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.56630000", + "longitude": "-4.43678000" + }, + { + "id": "49124", + "name": "Coupar Angus", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.54552000", + "longitude": "-3.26774000" + }, + { + "id": "49125", + "name": "Cove", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.10000000", + "longitude": "-2.08333000" + }, + { + "id": "49130", + "name": "Cowdenbeath", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.11194000", + "longitude": "-3.34426000" + }, + { + "id": "49133", + "name": "Cowie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.07974000", + "longitude": "-3.86753000" + }, + { + "id": "49137", + "name": "Coylton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.44528000", + "longitude": "-4.51950000" + }, + { + "id": "49140", + "name": "Crail", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.26042000", + "longitude": "-2.62676000" + }, + { + "id": "49160", + "name": "Crieff", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.37268000", + "longitude": "-3.83891000" + }, + { + "id": "49174", + "name": "Crossford", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.06303000", + "longitude": "-3.49674000" + }, + { + "id": "49176", + "name": "Crossgates", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.08366000", + "longitude": "-3.37712000" + }, + { + "id": "49177", + "name": "Crosshouse", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.61258000", + "longitude": "-4.55091000" + }, + { + "id": "49185", + "name": "Croy", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.96064000", + "longitude": "-4.03932000" + }, + { + "id": "49187", + "name": "Cruden Bay", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.41797000", + "longitude": "-1.85313000" + }, + { + "id": "49198", + "name": "Cullen", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.69045000", + "longitude": "-2.81818000" + }, + { + "id": "49200", + "name": "Culloden", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.48699000", + "longitude": "-4.14150000" + }, + { + "id": "49204", + "name": "Cults", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.11667000", + "longitude": "-2.16667000" + }, + { + "id": "49206", + "name": "Cumbernauld", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.94685000", + "longitude": "-3.99051000" + }, + { + "id": "49208", + "name": "Cumnock", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.45445000", + "longitude": "-4.26644000" + }, + { + "id": "49209", + "name": "Cupar", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.31876000", + "longitude": "-3.01204000" + }, + { + "id": "49211", + "name": "Currie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.89640000", + "longitude": "-3.30845000" + }, + { + "id": "49220", + "name": "Dalbeattie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "54.93278000", + "longitude": "-3.82271000" + }, + { + "id": "49221", + "name": "Dalgety Bay", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.03496000", + "longitude": "-3.35049000" + }, + { + "id": "49222", + "name": "Dalkeith", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.89317000", + "longitude": "-3.06806000" + }, + { + "id": "49223", + "name": "Dalmellington", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.32419000", + "longitude": "-4.40200000" + }, + { + "id": "49224", + "name": "Dalry", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.70956000", + "longitude": "-4.72167000" + }, + { + "id": "49225", + "name": "Dalrymple", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.39757000", + "longitude": "-4.59169000" + }, + { + "id": "49226", + "name": "Dalserf", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.73333000", + "longitude": "-3.91667000" + }, + { + "id": "49231", + "name": "Danderhall", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.91434000", + "longitude": "-3.11062000" + }, + { + "id": "49242", + "name": "Darvel", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.60976000", + "longitude": "-4.28142000" + }, + { + "id": "49265", + "name": "Denny", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.02350000", + "longitude": "-3.90812000" + }, + { + "id": "49266", + "name": "Dennyloanhead", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.99886000", + "longitude": "-3.91306000" + }, + { + "id": "49286", + "name": "Dingwall", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.59531000", + "longitude": "-4.42721000" + }, + { + "id": "49301", + "name": "Dollar", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.16245000", + "longitude": "-3.67135000" + }, + { + "id": "49310", + "name": "Dornoch", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.88050000", + "longitude": "-4.02879000" + }, + { + "id": "49314", + "name": "Douglas", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.55000000", + "longitude": "-3.85000000" + }, + { + "id": "49315", + "name": "Doune", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.18995000", + "longitude": "-4.05288000" + }, + { + "id": "49325", + "name": "Dreghorn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.60807000", + "longitude": "-4.62226000" + }, + { + "id": "49330", + "name": "Drongan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.43498000", + "longitude": "-4.45551000" + }, + { + "id": "49332", + "name": "Drumnadrochit", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.33438000", + "longitude": "-4.47989000" + }, + { + "id": "49337", + "name": "Dufftown", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.44571000", + "longitude": "-3.12708000" + }, + { + "id": "49340", + "name": "Dumbarton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.94433000", + "longitude": "-4.57061000" + }, + { + "id": "49341", + "name": "Dumfries", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.06959000", + "longitude": "-3.61139000" + }, + { + "id": "49342", + "name": "Dumfries and Galloway", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.08333000", + "longitude": "-3.83333000" + }, + { + "id": "49343", + "name": "Dunbar", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.00062000", + "longitude": "-2.51418000" + }, + { + "id": "49344", + "name": "Dunblane", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.18843000", + "longitude": "-3.96417000" + }, + { + "id": "49346", + "name": "Dundee", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.46913000", + "longitude": "-2.97489000" + }, + { + "id": "49347", + "name": "Dundee City", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.46667000", + "longitude": "-2.91667000" + }, + { + "id": "49349", + "name": "Dundonald", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.57939000", + "longitude": "-4.59473000" + }, + { + "id": "49352", + "name": "Dunfermline", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.07156000", + "longitude": "-3.45887000" + }, + { + "id": "49356", + "name": "Dunipace", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.02700000", + "longitude": "-3.91471000" + }, + { + "id": "49358", + "name": "Dunlop", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.71198000", + "longitude": "-4.53622000" + }, + { + "id": "49361", + "name": "Dunoon", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.95031000", + "longitude": "-4.92734000" + }, + { + "id": "49362", + "name": "Duns", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.77704000", + "longitude": "-2.34575000" + }, + { + "id": "49365", + "name": "Duntocher", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.92437000", + "longitude": "-4.41545000" + }, + { + "id": "49369", + "name": "Dyce", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.20522000", + "longitude": "-2.17676000" + }, + { + "id": "49374", + "name": "Eaglesham", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.74119000", + "longitude": "-4.27459000" + }, + { + "id": "49381", + "name": "Earlston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.63856000", + "longitude": "-2.67495000" + }, + { + "id": "49384", + "name": "East Ayrshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.50000000", + "longitude": "-4.25000000" + }, + { + "id": "49389", + "name": "East Calder", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.89186000", + "longitude": "-3.46372000" + }, + { + "id": "49394", + "name": "East Dunbartonshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.93333000", + "longitude": "-4.20000000" + }, + { + "id": "49401", + "name": "East Kilbride", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.76412000", + "longitude": "-4.17669000" + }, + { + "id": "49403", + "name": "East Linton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.98737000", + "longitude": "-2.65682000" + }, + { + "id": "49404", + "name": "East Lothian", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.91667000", + "longitude": "-2.75000000" + }, + { + "id": "49409", + "name": "East Renfrewshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.75000000", + "longitude": "-4.33333000" + }, + { + "id": "49413", + "name": "East Wemyss", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.16018000", + "longitude": "-3.06422000" + }, + { + "id": "49414", + "name": "East Whitburn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86855000", + "longitude": "-3.66295000" + }, + { + "id": "49424", + "name": "Eastriggs", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "54.98597000", + "longitude": "-3.18051000" + }, + { + "id": "49441", + "name": "Edinburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.95206000", + "longitude": "-3.19648000" + }, + { + "id": "49449", + "name": "Eilean Siar", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.66667000", + "longitude": "-7.16667000" + }, + { + "id": "49450", + "name": "Elderslie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.83327000", + "longitude": "-4.48598000" + }, + { + "id": "49451", + "name": "Elgin", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.64947000", + "longitude": "-3.31843000" + }, + { + "id": "49457", + "name": "Ellon", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.36405000", + "longitude": "-2.07313000" + }, + { + "id": "49482", + "name": "Errol", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.39234000", + "longitude": "-3.21275000" + }, + { + "id": "49483", + "name": "Erskine", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90050000", + "longitude": "-4.45028000" + }, + { + "id": "49493", + "name": "Evanton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.66385000", + "longitude": "-4.34004000" + }, + { + "id": "49510", + "name": "Eyemouth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.87130000", + "longitude": "-2.09010000" + }, + { + "id": "49514", + "name": "Faifley", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.92853000", + "longitude": "-4.38509000" + }, + { + "id": "49518", + "name": "Fairlie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.75602000", + "longitude": "-4.85564000" + }, + { + "id": "49521", + "name": "Falkirk", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.00000000", + "longitude": "-3.75000000" + }, + { + "id": "49522", + "name": "Falkland", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.25255000", + "longitude": "-3.20389000" + }, + { + "id": "49523", + "name": "Fallin", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.10479000", + "longitude": "-3.87616000" + }, + { + "id": "49534", + "name": "Fauldhouse", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.82749000", + "longitude": "-3.70741000" + }, + { + "id": "49544", + "name": "Fenwick", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.65823000", + "longitude": "-4.44342000" + }, + { + "id": "49552", + "name": "Fife", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.25000000", + "longitude": "-3.16667000" + }, + { + "id": "49556", + "name": "Findochty", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.69735000", + "longitude": "-2.90104000" + }, + { + "id": "49579", + "name": "Fochabers", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.61445000", + "longitude": "-3.09947000" + }, + { + "id": "49587", + "name": "Forfar", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.64382000", + "longitude": "-2.89001000" + }, + { + "id": "49589", + "name": "Forres", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.60997000", + "longitude": "-3.62115000" + }, + { + "id": "49590", + "name": "Fort William", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.81648000", + "longitude": "-5.11208000" + }, + { + "id": "49591", + "name": "Forth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.76502000", + "longitude": "-3.68874000" + }, + { + "id": "49592", + "name": "Fortrose", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.58087000", + "longitude": "-4.13263000" + }, + { + "id": "49603", + "name": "Fraserburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.68744000", + "longitude": "-2.01844000" + }, + { + "id": "49607", + "name": "Freuchie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.24688000", + "longitude": "-3.15861000" + }, + { + "id": "49610", + "name": "Friockheim", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.63688000", + "longitude": "-2.66806000" + }, + { + "id": "49622", + "name": "Galashiels", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.61458000", + "longitude": "-2.80695000" + }, + { + "id": "49624", + "name": "Galston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.60093000", + "longitude": "-4.38172000" + }, + { + "id": "49626", + "name": "Garelochhead", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.08203000", + "longitude": "-4.82909000" + }, + { + "id": "49631", + "name": "Gartcosh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88841000", + "longitude": "-4.08170000" + }, + { + "id": "49639", + "name": "Giffnock", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.80373000", + "longitude": "-4.29488000" + }, + { + "id": "49646", + "name": "Girvan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.24255000", + "longitude": "-4.85551000" + }, + { + "id": "49650", + "name": "Glasgow", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86515000", + "longitude": "-4.25763000" + }, + { + "id": "49651", + "name": "Glasgow City", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86667000", + "longitude": "-4.25000000" + }, + { + "id": "49657", + "name": "Glenboig", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.89422000", + "longitude": "-4.04619000" + }, + { + "id": "49659", + "name": "Glenmavis", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88913000", + "longitude": "-3.98726000" + }, + { + "id": "49660", + "name": "Glenrothes", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.19514000", + "longitude": "-3.17316000" + }, + { + "id": "49675", + "name": "Golspie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.97266000", + "longitude": "-3.97798000" + }, + { + "id": "49680", + "name": "Gorebridge", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.84594000", + "longitude": "-3.04563000" + }, + { + "id": "49692", + "name": "Gourock", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.96157000", + "longitude": "-4.81789000" + }, + { + "id": "49698", + "name": "Grangemouth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.01141000", + "longitude": "-3.72183000" + }, + { + "id": "49700", + "name": "Grantown on Spey", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.33051000", + "longitude": "-3.60867000" + }, + { + "id": "49743", + "name": "Greenhill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.99204000", + "longitude": "-3.89096000" + }, + { + "id": "49747", + "name": "Greenock", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.94838000", + "longitude": "-4.76121000" + }, + { + "id": "49750", + "name": "Gretna", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "54.99380000", + "longitude": "-3.06594000" + }, + { + "id": "49766", + "name": "Gullane", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.03652000", + "longitude": "-2.82829000" + }, + { + "id": "49772", + "name": "Haddington", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.95612000", + "longitude": "-2.78332000" + }, + { + "id": "49785", + "name": "Halkirk", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "58.51227000", + "longitude": "-3.49155000" + }, + { + "id": "49786", + "name": "Hallglen", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.98573000", + "longitude": "-3.78535000" + }, + { + "id": "49795", + "name": "Hamilton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.76667000", + "longitude": "-4.03333000" + }, + { + "id": "49821", + "name": "Harthill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86067000", + "longitude": "-3.75166000" + }, + { + "id": "49851", + "name": "Hawick", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.42273000", + "longitude": "-2.78666000" + }, + { + "id": "49871", + "name": "Head of Muir", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.00623000", + "longitude": "-3.91358000" + }, + { + "id": "49888", + "name": "Helensburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.00614000", + "longitude": "-4.72648000" + }, + { + "id": "49924", + "name": "High Blantyre", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.78438000", + "longitude": "-4.10007000" + }, + { + "id": "49931", + "name": "High Valleyfield", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.06357000", + "longitude": "-3.59913000" + }, + { + "id": "49936", + "name": "Highland", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.50000000", + "longitude": "-5.00000000" + }, + { + "id": "49941", + "name": "Hillside", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.74483000", + "longitude": "-2.47400000" + }, + { + "id": "49972", + "name": "Holytown", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.82011000", + "longitude": "-3.97270000" + }, + { + "id": "49985", + "name": "Hopeman", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.70681000", + "longitude": "-3.42911000" + }, + { + "id": "50010", + "name": "Houston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86859000", + "longitude": "-4.55201000" + }, + { + "id": "50014", + "name": "Howwood", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.81060000", + "longitude": "-4.55733000" + }, + { + "id": "50028", + "name": "Huntly", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.44741000", + "longitude": "-2.78608000" + }, + { + "id": "50048", + "name": "Inchinnan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88995000", + "longitude": "-4.43842000" + }, + { + "id": "50049", + "name": "Inchture", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.44551000", + "longitude": "-3.16956000" + }, + { + "id": "50056", + "name": "Innerleithen", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.61927000", + "longitude": "-3.06301000" + }, + { + "id": "50057", + "name": "Insch", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.34273000", + "longitude": "-2.61321000" + }, + { + "id": "50058", + "name": "Inverbervie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.84463000", + "longitude": "-2.27997000" + }, + { + "id": "50059", + "name": "Inverclyde", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90000000", + "longitude": "-4.75000000" + }, + { + "id": "50060", + "name": "Invergordon", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.68860000", + "longitude": "-4.16745000" + }, + { + "id": "50061", + "name": "Invergowrie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.46111000", + "longitude": "-3.06158000" + }, + { + "id": "50062", + "name": "Inverkeithing", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.03297000", + "longitude": "-3.39555000" + }, + { + "id": "50063", + "name": "Inverkip", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90831000", + "longitude": "-4.87051000" + }, + { + "id": "50064", + "name": "Inverness", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.47908000", + "longitude": "-4.22398000" + }, + { + "id": "50065", + "name": "Inverurie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.28446000", + "longitude": "-2.37736000" + }, + { + "id": "50072", + "name": "Irvine", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.61940000", + "longitude": "-4.65508000" + }, + { + "id": "50075", + "name": "Isle of Arran", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.58145000", + "longitude": "-5.21233000" + }, + { + "id": "50076", + "name": "Isle of Bute", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.83663000", + "longitude": "-5.05586000" + }, + { + "id": "50077", + "name": "Isle of Cumbrae", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.76933000", + "longitude": "-4.91913000" + }, + { + "id": "50078", + "name": "Isle of Islay", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.78526000", + "longitude": "-6.23886000" + }, + { + "id": "50079", + "name": "Isle of Lewis", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "58.21901000", + "longitude": "-6.38803000" + }, + { + "id": "50074", + "name": "Isle Of Mull", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.44703000", + "longitude": "-5.77404000" + }, + { + "id": "50080", + "name": "Isle of North Uist", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.60581000", + "longitude": "-7.34024000" + }, + { + "id": "50081", + "name": "Isle of South Uist", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.24562000", + "longitude": "-7.33337000" + }, + { + "id": "50094", + "name": "Jedburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.47997000", + "longitude": "-2.55200000" + }, + { + "id": "50096", + "name": "Johnstone", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.82906000", + "longitude": "-4.51605000" + }, + { + "id": "50106", + "name": "Keith", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.53633000", + "longitude": "-2.94811000" + }, + { + "id": "50109", + "name": "Kelso", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.59814000", + "longitude": "-2.43382000" + }, + { + "id": "50110", + "name": "Kelty", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.13362000", + "longitude": "-3.38690000" + }, + { + "id": "50113", + "name": "Kemnay", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.23573000", + "longitude": "-2.44395000" + }, + { + "id": "50121", + "name": "Kennoway", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.21081000", + "longitude": "-3.04917000" + }, + { + "id": "50139", + "name": "Kilbarchan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.83620000", + "longitude": "-4.55356000" + }, + { + "id": "50140", + "name": "Kilbirnie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.75082000", + "longitude": "-4.68791000" + }, + { + "id": "50142", + "name": "Kilcreggan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.98460000", + "longitude": "-4.82100000" + }, + { + "id": "50147", + "name": "Killearn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.04239000", + "longitude": "-4.36840000" + }, + { + "id": "50149", + "name": "Kilmacolm", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.89470000", + "longitude": "-4.62643000" + }, + { + "id": "50150", + "name": "Kilmarnock", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.61171000", + "longitude": "-4.49581000" + }, + { + "id": "50151", + "name": "Kilmaurs", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.63801000", + "longitude": "-4.52730000" + }, + { + "id": "50154", + "name": "Kilsyth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.97596000", + "longitude": "-4.05916000" + }, + { + "id": "50155", + "name": "Kilwinning", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.65333000", + "longitude": "-4.70666000" + }, + { + "id": "50159", + "name": "Kincardine", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.06945000", + "longitude": "-3.71964000" + }, + { + "id": "50163", + "name": "Kinghorn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.06896000", + "longitude": "-3.17607000" + }, + { + "id": "50164", + "name": "Kinglassie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.17371000", + "longitude": "-3.24241000" + }, + { + "id": "50173", + "name": "Kingskettle", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.26215000", + "longitude": "-3.11693000" + }, + { + "id": "50181", + "name": "Kingswells", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.15798000", + "longitude": "-2.22426000" + }, + { + "id": "50185", + "name": "Kingussie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.07996000", + "longitude": "-4.05231000" + }, + { + "id": "50186", + "name": "Kinloss", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.63494000", + "longitude": "-3.57012000" + }, + { + "id": "50187", + "name": "Kinross", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.20466000", + "longitude": "-3.42138000" + }, + { + "id": "50189", + "name": "Kintore", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.23721000", + "longitude": "-2.34540000" + }, + { + "id": "50192", + "name": "Kippen", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.12673000", + "longitude": "-4.17083000" + }, + { + "id": "50202", + "name": "Kirkcaldy", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.11683000", + "longitude": "-3.15999000" + }, + { + "id": "50203", + "name": "Kirkconnel", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.38561000", + "longitude": "-3.99836000" + }, + { + "id": "50204", + "name": "Kirkcudbright", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "54.83830000", + "longitude": "-4.04908000" + }, + { + "id": "50206", + "name": "Kirkintilloch", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.93933000", + "longitude": "-4.15262000" + }, + { + "id": "50208", + "name": "Kirkliston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.95364000", + "longitude": "-3.40288000" + }, + { + "id": "50209", + "name": "Kirknewton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88754000", + "longitude": "-3.41898000" + }, + { + "id": "50210", + "name": "Kirkwall", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "58.98479000", + "longitude": "-2.95873000" + }, + { + "id": "50211", + "name": "Kirriemuir", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.67398000", + "longitude": "-3.00343000" + }, + { + "id": "50226", + "name": "Ladybank", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.27421000", + "longitude": "-3.12390000" + }, + { + "id": "50232", + "name": "Lamlash", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.53358000", + "longitude": "-5.12956000" + }, + { + "id": "50234", + "name": "Lanark", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.67371000", + "longitude": "-3.78170000" + }, + { + "id": "50243", + "name": "Langholm", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.15101000", + "longitude": "-2.99889000" + }, + { + "id": "50248", + "name": "Larbert", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.02246000", + "longitude": "-3.82872000" + }, + { + "id": "50249", + "name": "Largs", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.79629000", + "longitude": "-4.86337000" + }, + { + "id": "50252", + "name": "Larkhall", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.73333000", + "longitude": "-3.96667000" + }, + { + "id": "50255", + "name": "Lauder", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.71908000", + "longitude": "-2.74755000" + }, + { + "id": "50257", + "name": "Laurencekirk", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.83338000", + "longitude": "-2.46540000" + }, + { + "id": "50258", + "name": "Laurieston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.99562000", + "longitude": "-3.74801000" + }, + { + "id": "50261", + "name": "Law", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.75000000", + "longitude": "-3.88333000" + }, + { + "id": "50280", + "name": "Lennoxtown", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.97263000", + "longitude": "-4.20001000" + }, + { + "id": "50281", + "name": "Lenzie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.92762000", + "longitude": "-4.15399000" + }, + { + "id": "50283", + "name": "Lerwick", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "60.15339000", + "longitude": "-1.14427000" + }, + { + "id": "50285", + "name": "Leslie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.20000000", + "longitude": "-3.21667000" + }, + { + "id": "50286", + "name": "Lesmahagow", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.63668000", + "longitude": "-3.88736000" + }, + { + "id": "50289", + "name": "Letham", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.62683000", + "longitude": "-2.77060000" + }, + { + "id": "50291", + "name": "Leuchars", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.38174000", + "longitude": "-2.88253000" + }, + { + "id": "50292", + "name": "Leven", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.20000000", + "longitude": "-3.00000000" + }, + { + "id": "50298", + "name": "Lhanbryde", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.63529000", + "longitude": "-3.21839000" + }, + { + "id": "50304", + "name": "Limekilns", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.03336000", + "longitude": "-3.47713000" + }, + { + "id": "50311", + "name": "Linlithgow", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.97639000", + "longitude": "-3.60364000" + }, + { + "id": "50315", + "name": "Linwood", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.84834000", + "longitude": "-4.49337000" + }, + { + "id": "50339", + "name": "Livingston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90288000", + "longitude": "-3.52261000" + }, + { + "id": "50375", + "name": "Loanhead", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.87945000", + "longitude": "-3.15874000" + }, + { + "id": "50376", + "name": "Locharbriggs", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.10337000", + "longitude": "-3.58438000" + }, + { + "id": "50377", + "name": "Lochgelly", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.12826000", + "longitude": "-3.30964000" + }, + { + "id": "50378", + "name": "Lochgilphead", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.03796000", + "longitude": "-5.43206000" + }, + { + "id": "50379", + "name": "Lochmaben", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.13011000", + "longitude": "-3.44286000" + }, + { + "id": "50380", + "name": "Lochwinnoch", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.79521000", + "longitude": "-4.63034000" + }, + { + "id": "50381", + "name": "Lockerbie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.12302000", + "longitude": "-3.35635000" + }, + { + "id": "50387", + "name": "Logan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.45466000", + "longitude": "-4.23514000" + }, + { + "id": "50404", + "name": "Longforgan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.45732000", + "longitude": "-3.11437000" + }, + { + "id": "50408", + "name": "Longniddry", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.97543000", + "longitude": "-2.89593000" + }, + { + "id": "50416", + "name": "Lossiemouth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.72136000", + "longitude": "-3.28341000" + }, + { + "id": "50436", + "name": "Luncarty", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.45308000", + "longitude": "-3.47007000" + }, + { + "id": "50438", + "name": "Lundin Links", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.21240000", + "longitude": "-2.95296000" + }, + { + "id": "50459", + "name": "Macduff", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.67012000", + "longitude": "-2.49686000" + }, + { + "id": "50462", + "name": "Macmerry", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.94045000", + "longitude": "-2.90503000" + }, + { + "id": "50463", + "name": "Maddiston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.97365000", + "longitude": "-3.69900000" + }, + { + "id": "50507", + "name": "Markinch", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.20214000", + "longitude": "-3.13517000" + }, + { + "id": "50523", + "name": "Maryburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.57420000", + "longitude": "-4.44178000" + }, + { + "id": "50528", + "name": "Mauchline", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.51604000", + "longitude": "-4.37928000" + }, + { + "id": "50530", + "name": "Maxwellheugh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.59253000", + "longitude": "-2.42871000" + }, + { + "id": "50531", + "name": "Maybole", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.35503000", + "longitude": "-4.68026000" + }, + { + "id": "50533", + "name": "Mayfield", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.87172000", + "longitude": "-3.03875000" + }, + { + "id": "50541", + "name": "Melrose", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.59969000", + "longitude": "-2.72770000" + }, + { + "id": "50548", + "name": "Menstrie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.15138000", + "longitude": "-3.85466000" + }, + { + "id": "50558", + "name": "Methil", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.18543000", + "longitude": "-3.02157000" + }, + { + "id": "50560", + "name": "Methven", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.41737000", + "longitude": "-3.57832000" + }, + { + "id": "50566", + "name": "Mid Calder", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.89261000", + "longitude": "-3.48002000" + }, + { + "id": "50576", + "name": "Midlothian", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.82347000", + "longitude": "-3.09334000" + }, + { + "id": "50587", + "name": "Millport", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.75348000", + "longitude": "-4.92559000" + }, + { + "id": "50588", + "name": "Milltimber", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.10424000", + "longitude": "-2.24099000" + }, + { + "id": "50589", + "name": "Milnathort", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.22688000", + "longitude": "-3.41930000" + }, + { + "id": "50590", + "name": "Milngavie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.94071000", + "longitude": "-4.32311000" + }, + { + "id": "50594", + "name": "Milton of Campsie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.96120000", + "longitude": "-4.16508000" + }, + { + "id": "50595", + "name": "Milton of Leys", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.45125000", + "longitude": "-4.17592000" + }, + { + "id": "50602", + "name": "Mintlaw", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.52414000", + "longitude": "-2.00099000" + }, + { + "id": "50611", + "name": "Moffat", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.33527000", + "longitude": "-3.44142000" + }, + { + "id": "50617", + "name": "Monifieth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.48227000", + "longitude": "-2.81732000" + }, + { + "id": "50621", + "name": "Montrose", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.71683000", + "longitude": "-2.46695000" + }, + { + "id": "50622", + "name": "Moodiesburn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.91501000", + "longitude": "-4.08331000" + }, + { + "id": "50623", + "name": "Moray", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.41667000", + "longitude": "-3.25000000" + }, + { + "id": "50634", + "name": "Mossblown", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.48941000", + "longitude": "-4.52787000" + }, + { + "id": "50638", + "name": "Motherwell", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.78924000", + "longitude": "-3.99187000" + }, + { + "id": "50647", + "name": "Muir of Ord", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.51976000", + "longitude": "-4.45939000" + }, + { + "id": "50648", + "name": "Muirhead", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.50000000", + "longitude": "-3.06667000" + }, + { + "id": "50649", + "name": "Muirkirk", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.52272000", + "longitude": "-4.06551000" + }, + { + "id": "50655", + "name": "Musselburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.94170000", + "longitude": "-3.04991000" + }, + { + "id": "50661", + "name": "Nairn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.58094000", + "longitude": "-3.87973000" + }, + { + "id": "50673", + "name": "Neilston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.78574000", + "longitude": "-4.42637000" + }, + { + "id": "50681", + "name": "Netherlee", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.80157000", + "longitude": "-4.27325000" + }, + { + "id": "50687", + "name": "New Cumnock", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.39563000", + "longitude": "-4.18458000" + }, + { + "id": "50693", + "name": "New Pitsligo", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.59019000", + "longitude": "-2.19535000" + }, + { + "id": "50696", + "name": "New Stevenston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.81669000", + "longitude": "-3.97357000" + }, + { + "id": "50699", + "name": "Newarthill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.81510000", + "longitude": "-3.93733000" + }, + { + "id": "50702", + "name": "Newbridge", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.93333000", + "longitude": "-3.40000000" + }, + { + "id": "50704", + "name": "Newburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.35079000", + "longitude": "-3.23650000" + }, + { + "id": "50716", + "name": "Newmacher", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.26667000", + "longitude": "-2.18333000" + }, + { + "id": "50717", + "name": "Newmains", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.78514000", + "longitude": "-3.87465000" + }, + { + "id": "50719", + "name": "Newmilns", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.60751000", + "longitude": "-4.32416000" + }, + { + "id": "50723", + "name": "Newport-on-Tay", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.43911000", + "longitude": "-2.93670000" + }, + { + "id": "50731", + "name": "Newton Mearns", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.77334000", + "longitude": "-4.33339000" + }, + { + "id": "50733", + "name": "Newton Stewart", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "54.95784000", + "longitude": "-4.48315000" + }, + { + "id": "50735", + "name": "Newtonhill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.03333000", + "longitude": "-2.15000000" + }, + { + "id": "50736", + "name": "Newtonmore", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.06567000", + "longitude": "-4.12097000" + }, + { + "id": "50738", + "name": "Newtown St Boswells", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.57887000", + "longitude": "-2.66874000" + }, + { + "id": "50747", + "name": "North Ayrshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.69694000", + "longitude": "-4.73373000" + }, + { + "id": "50749", + "name": "North Berwick", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.05825000", + "longitude": "-2.72290000" + }, + { + "id": "50756", + "name": "North Lanarkshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86667000", + "longitude": "-3.91667000" + }, + { + "id": "50762", + "name": "North Queensferry", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.00899000", + "longitude": "-3.39134000" + }, + { + "id": "50794", + "name": "Oakley", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.08421000", + "longitude": "-3.56311000" + }, + { + "id": "50796", + "name": "Oban", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.41535000", + "longitude": "-5.47184000" + }, + { + "id": "50797", + "name": "Ochiltree", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.45981000", + "longitude": "-4.36782000" + }, + { + "id": "50803", + "name": "Old Kilpatrick", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.92241000", + "longitude": "-4.45567000" + }, + { + "id": "50808", + "name": "Oldmeldrum", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.33492000", + "longitude": "-2.31990000" + }, + { + "id": "50812", + "name": "Orkney", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "58.98465000", + "longitude": "-2.95953000" + }, + { + "id": "50813", + "name": "Orkney Islands", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "59.00000000", + "longitude": "-3.00000000" + }, + { + "id": "50816", + "name": "Ormiston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.91302000", + "longitude": "-2.93985000" + }, + { + "id": "50837", + "name": "Overtown", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.75719000", + "longitude": "-3.91645000" + }, + { + "id": "50848", + "name": "Paisley", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.83173000", + "longitude": "-4.43254000" + }, + { + "id": "50859", + "name": "Patna", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.36406000", + "longitude": "-4.50594000" + }, + { + "id": "50867", + "name": "Peebles", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.65190000", + "longitude": "-3.18880000" + }, + { + "id": "50879", + "name": "Pencaitland", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.90727000", + "longitude": "-2.89490000" + }, + { + "id": "50881", + "name": "Penicuik", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.83116000", + "longitude": "-3.22608000" + }, + { + "id": "50898", + "name": "Perth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.39522000", + "longitude": "-3.43139000" + }, + { + "id": "50899", + "name": "Perth and Kinross", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.50000000", + "longitude": "-3.75000000" + }, + { + "id": "50901", + "name": "Peterculter", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.09929000", + "longitude": "-2.26588000" + }, + { + "id": "50902", + "name": "Peterhead", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.50584000", + "longitude": "-1.79806000" + }, + { + "id": "50917", + "name": "Pitlochry", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.70514000", + "longitude": "-3.73432000" + }, + { + "id": "50918", + "name": "Pitmedden", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.33691000", + "longitude": "-2.18022000" + }, + { + "id": "50921", + "name": "Pittenweem", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.21406000", + "longitude": "-2.72839000" + }, + { + "id": "50922", + "name": "Plains", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88044000", + "longitude": "-3.92349000" + }, + { + "id": "50923", + "name": "Plean", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.06516000", + "longitude": "-3.87596000" + }, + { + "id": "50930", + "name": "Polbeth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86072000", + "longitude": "-3.54901000" + }, + { + "id": "50933", + "name": "Polmont", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.99050000", + "longitude": "-3.70737000" + }, + { + "id": "50952", + "name": "Port Bannatyne", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.85660000", + "longitude": "-5.06503000" + }, + { + "id": "50953", + "name": "Port Erroll", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.41427000", + "longitude": "-1.84596000" + }, + { + "id": "50954", + "name": "Port Glasgow", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.93464000", + "longitude": "-4.68950000" + }, + { + "id": "50964", + "name": "Portknockie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.70248000", + "longitude": "-2.85989000" + }, + { + "id": "50966", + "name": "Portlethen", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.06942000", + "longitude": "-2.13246000" + }, + { + "id": "50967", + "name": "Portree", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.41288000", + "longitude": "-6.19418000" + }, + { + "id": "50972", + "name": "Portsoy", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.68144000", + "longitude": "-2.68956000" + }, + { + "id": "50988", + "name": "Prestonpans", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.95939000", + "longitude": "-2.98038000" + }, + { + "id": "50990", + "name": "Prestwick", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.48333000", + "longitude": "-4.61667000" + }, + { + "id": "51012", + "name": "Queensferry", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.99089000", + "longitude": "-3.39847000" + }, + { + "id": "51035", + "name": "Ratho", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.92164000", + "longitude": "-3.38028000" + }, + { + "id": "51036", + "name": "Ratho Station", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.93670000", + "longitude": "-3.38890000" + }, + { + "id": "51050", + "name": "Redding", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.98861000", + "longitude": "-3.73230000" + }, + { + "id": "51051", + "name": "Reddingmuirhead", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.98026000", + "longitude": "-3.74853000" + }, + { + "id": "51060", + "name": "Renfrew", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.87197000", + "longitude": "-4.39253000" + }, + { + "id": "51061", + "name": "Renfrewshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.83333000", + "longitude": "-4.50000000" + }, + { + "id": "51062", + "name": "Renton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.97200000", + "longitude": "-4.58399000" + }, + { + "id": "51072", + "name": "Rhu", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.01667000", + "longitude": "-4.76667000" + }, + { + "id": "51106", + "name": "Rosehearty", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.69700000", + "longitude": "-2.11322000" + }, + { + "id": "51107", + "name": "Rosewell", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.85075000", + "longitude": "-3.13625000" + }, + { + "id": "51108", + "name": "Roslin", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.85749000", + "longitude": "-3.16895000" + }, + { + "id": "51109", + "name": "Rosneath", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.00985000", + "longitude": "-4.80151000" + }, + { + "id": "51114", + "name": "Rosyth", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.03689000", + "longitude": "-3.43800000" + }, + { + "id": "51118", + "name": "Rothes", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.52624000", + "longitude": "-3.20663000" + }, + { + "id": "51119", + "name": "Rothesay", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.83648000", + "longitude": "-5.05508000" + }, + { + "id": "51120", + "name": "Rothienorman", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.41145000", + "longitude": "-2.46455000" + }, + { + "id": "51149", + "name": "Rutherglen", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.82885000", + "longitude": "-4.21376000" + }, + { + "id": "51163", + "name": "Saint Andrews", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.33871000", + "longitude": "-2.79902000" + }, + { + "id": "51166", + "name": "Saint Boswells", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.57301000", + "longitude": "-2.64410000" + }, + { + "id": "51169", + "name": "Saint Cyrus", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.77504000", + "longitude": "-2.41553000" + }, + { + "id": "51173", + "name": "Saint Monans", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.20651000", + "longitude": "-2.76821000" + }, + { + "id": "51183", + "name": "Saline", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.11399000", + "longitude": "-3.57034000" + }, + { + "id": "51185", + "name": "Salsburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.84277000", + "longitude": "-3.87264000" + }, + { + "id": "51188", + "name": "Saltcoats", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.63616000", + "longitude": "-4.78588000" + }, + { + "id": "51192", + "name": "Sandbank", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.98203000", + "longitude": "-4.94973000" + }, + { + "id": "51197", + "name": "Sandwick", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "60.00000000", + "longitude": "-1.25000000" + }, + { + "id": "51199", + "name": "Sanquhar", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.36527000", + "longitude": "-3.92160000" + }, + { + "id": "51209", + "name": "Scalloway", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "60.13832000", + "longitude": "-1.27690000" + }, + { + "id": "51215", + "name": "Scone", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.41942000", + "longitude": "-3.40507000" + }, + { + "id": "51220", + "name": "Seafield", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.87791000", + "longitude": "-3.58781000" + }, + { + "id": "51235", + "name": "Selkirk", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.54738000", + "longitude": "-2.83911000" + }, + { + "id": "51274", + "name": "Shetland Islands", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "60.33333000", + "longitude": "-1.33333000" + }, + { + "id": "51276", + "name": "Shieldhill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.97277000", + "longitude": "-3.76788000" + }, + { + "id": "51294", + "name": "Shotts", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.81951000", + "longitude": "-3.79749000" + }, + { + "id": "51321", + "name": "Skelmorlie", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86950000", + "longitude": "-4.88475000" + }, + { + "id": "51328", + "name": "Slamannan", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.93729000", + "longitude": "-3.83311000" + }, + { + "id": "51334", + "name": "Smithton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.47956000", + "longitude": "-4.15141000" + }, + { + "id": "51344", + "name": "South Ayrshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.25000000", + "longitude": "-4.66667000" + }, + { + "id": "51357", + "name": "South Lanarkshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.58333000", + "longitude": "-3.83333000" + }, + { + "id": "51393", + "name": "Springside", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.61514000", + "longitude": "-4.59062000" + }, + { + "id": "51425", + "name": "Stanley", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.48540000", + "longitude": "-3.45184000" + }, + { + "id": "51438", + "name": "Stenhousemuir", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.02676000", + "longitude": "-3.81462000" + }, + { + "id": "51439", + "name": "Stepps", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.88899000", + "longitude": "-4.15210000" + }, + { + "id": "51441", + "name": "Stevenston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.63970000", + "longitude": "-4.75339000" + }, + { + "id": "51445", + "name": "Stewarton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.67986000", + "longitude": "-4.51435000" + }, + { + "id": "51452", + "name": "Stirling", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.11532000", + "longitude": "-4.23386000" + }, + { + "id": "51473", + "name": "Stonehaven", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.96365000", + "longitude": "-2.21177000" + }, + { + "id": "51475", + "name": "Stonehouse", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.69435000", + "longitude": "-3.98780000" + }, + { + "id": "51478", + "name": "Stoneyburn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.84371000", + "longitude": "-3.63862000" + }, + { + "id": "51479", + "name": "Stornoway", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "58.20925000", + "longitude": "-6.38649000" + }, + { + "id": "51488", + "name": "Stranraer", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "54.90234000", + "longitude": "-5.02731000" + }, + { + "id": "51491", + "name": "Strathaven", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.67710000", + "longitude": "-4.06680000" + }, + { + "id": "51492", + "name": "Strathblane", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.98596000", + "longitude": "-4.30658000" + }, + { + "id": "51493", + "name": "Strathpeffer", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.58522000", + "longitude": "-4.54195000" + }, + { + "id": "51501", + "name": "Stromness", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "58.96498000", + "longitude": "-3.29601000" + }, + { + "id": "51540", + "name": "Symington", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.55176000", + "longitude": "-4.55835000" + }, + { + "id": "51547", + "name": "Tain", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.80903000", + "longitude": "-4.05991000" + }, + { + "id": "51558", + "name": "Tarbert", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86277000", + "longitude": "-5.41622000" + }, + { + "id": "51559", + "name": "Tarbolton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.51292000", + "longitude": "-4.48648000" + }, + { + "id": "51566", + "name": "Tayport", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.44699000", + "longitude": "-2.87966000" + }, + { + "id": "51589", + "name": "The Scottish Borders", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.58333000", + "longitude": "-2.83333000" + }, + { + "id": "51600", + "name": "Thornhill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.23333000", + "longitude": "-3.76667000" + }, + { + "id": "51602", + "name": "Thornliebank", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.80454000", + "longitude": "-4.31746000" + }, + { + "id": "51603", + "name": "Thornton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.16667000", + "longitude": "-3.15000000" + }, + { + "id": "51615", + "name": "Thurso", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "58.59271000", + "longitude": "-3.52594000" + }, + { + "id": "51624", + "name": "Tillicoultry", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.15251000", + "longitude": "-3.74015000" + }, + { + "id": "51634", + "name": "Tobermory", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.62198000", + "longitude": "-6.07231000" + }, + { + "id": "51645", + "name": "Torphins", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.10561000", + "longitude": "-2.62398000" + }, + { + "id": "51648", + "name": "Torrance", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.93995000", + "longitude": "-4.21025000" + }, + { + "id": "51656", + "name": "Townhill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.08910000", + "longitude": "-3.43889000" + }, + { + "id": "51659", + "name": "Tranent", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.94439000", + "longitude": "-2.95412000" + }, + { + "id": "51673", + "name": "Troon", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.54359000", + "longitude": "-4.66335000" + }, + { + "id": "51676", + "name": "Tullibody", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.13364000", + "longitude": "-3.83835000" + }, + { + "id": "51679", + "name": "Turriff", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.53840000", + "longitude": "-2.45932000" + }, + { + "id": "51681", + "name": "Twechar", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.95415000", + "longitude": "-4.08219000" + }, + { + "id": "51682", + "name": "Tweedbank", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.60449000", + "longitude": "-2.76692000" + }, + { + "id": "51690", + "name": "Uddingston", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.81971000", + "longitude": "-4.08362000" + }, + { + "id": "51693", + "name": "Ullapool", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.89872000", + "longitude": "-5.16039000" + }, + { + "id": "51713", + "name": "Vale of Leven", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.97132000", + "longitude": "-4.57928000" + }, + { + "id": "51718", + "name": "Viewpark", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.82737000", + "longitude": "-4.05730000" + }, + { + "id": "51769", + "name": "Waterfoot", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.76938000", + "longitude": "-4.28372000" + }, + { + "id": "51800", + "name": "Wemyss Bay", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.87614000", + "longitude": "-4.88950000" + }, + { + "id": "51810", + "name": "West Calder", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.85188000", + "longitude": "-3.56981000" + }, + { + "id": "51815", + "name": "West Dunbartonshire", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.96667000", + "longitude": "-4.53333000" + }, + { + "id": "51822", + "name": "West Kilbride", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.69004000", + "longitude": "-4.85771000" + }, + { + "id": "51825", + "name": "West Linton", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.74972000", + "longitude": "-3.35607000" + }, + { + "id": "51826", + "name": "West Lothian", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.91667000", + "longitude": "-3.50000000" + }, + { + "id": "51843", + "name": "Westhill", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.15263000", + "longitude": "-2.27966000" + }, + { + "id": "51850", + "name": "Westquarter", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.99142000", + "longitude": "-3.74016000" + }, + { + "id": "51866", + "name": "Whitburn", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.86667000", + "longitude": "-3.68333000" + }, + { + "id": "51871", + "name": "Whitecraig", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.91937000", + "longitude": "-3.04231000" + }, + { + "id": "51875", + "name": "Whitehills", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "57.67730000", + "longitude": "-2.57863000" + }, + { + "id": "51890", + "name": "Wick", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "58.43906000", + "longitude": "-3.09424000" + }, + { + "id": "51919", + "name": "Winchburgh", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.95795000", + "longitude": "-3.46464000" + }, + { + "id": "51926", + "name": "Windygates", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "56.19546000", + "longitude": "-3.05274000" + }, + { + "id": "51942", + "name": "Wishaw", + "state_id": 2335, + "state_code": "SCT", + "country_id": 232, + "country_code": "GB", + "latitude": "55.76667000", + "longitude": "-3.91667000" + }, + { + "id": "48162", + "name": "Aberaeron", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.24247000", + "longitude": "-4.25871000" + }, + { + "id": "48163", + "name": "Abercanaid", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72361000", + "longitude": "-3.36611000" + }, + { + "id": "48164", + "name": "Abercarn", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64733000", + "longitude": "-3.13476000" + }, + { + "id": "48166", + "name": "Abercynon", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64548000", + "longitude": "-3.32727000" + }, + { + "id": "48167", + "name": "Aberdare", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71438000", + "longitude": "-3.44918000" + }, + { + "id": "48172", + "name": "Aberfan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68892000", + "longitude": "-3.34178000" + }, + { + "id": "48175", + "name": "Abergavenny", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.82098000", + "longitude": "-3.01743000" + }, + { + "id": "48176", + "name": "Abergele", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.28436000", + "longitude": "-3.58220000" + }, + { + "id": "48177", + "name": "Aberkenfig", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54000000", + "longitude": "-3.59556000" + }, + { + "id": "48180", + "name": "Aberporth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.13248000", + "longitude": "-4.54173000" + }, + { + "id": "48181", + "name": "Abertillery", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72981000", + "longitude": "-3.13432000" + }, + { + "id": "48182", + "name": "Abertridwr", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59583000", + "longitude": "-3.26833000" + }, + { + "id": "48183", + "name": "Aberystwyth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.41548000", + "longitude": "-4.08292000" + }, + { + "id": "48245", + "name": "Amlwch", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.40986000", + "longitude": "-4.34712000" + }, + { + "id": "48246", + "name": "Ammanford", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79279000", + "longitude": "-3.98833000" + }, + { + "id": "48250", + "name": "Anglesey", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25000000", + "longitude": "-4.33333000" + }, + { + "id": "48335", + "name": "Bagillt", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26540000", + "longitude": "-3.16551000" + }, + { + "id": "48340", + "name": "Bala", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.91111000", + "longitude": "-3.59722000" + }, + { + "id": "48370", + "name": "Bangor", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22752000", + "longitude": "-4.12936000" + }, + { + "id": "48384", + "name": "Bargoed", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68333000", + "longitude": "-3.23333000" + }, + { + "id": "48393", + "name": "Barmouth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.72377000", + "longitude": "-4.05748000" + }, + { + "id": "48413", + "name": "Barry", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.39979000", + "longitude": "-3.28380000" + }, + { + "id": "48441", + "name": "Beaumaris", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26315000", + "longitude": "-4.09233000" + }, + { + "id": "48448", + "name": "Beddau", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55398000", + "longitude": "-3.35814000" + }, + { + "id": "48451", + "name": "Bedlinog", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70432000", + "longitude": "-3.31306000" + }, + { + "id": "48452", + "name": "Bedwas", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59183000", + "longitude": "-3.19886000" + }, + { + "id": "48472", + "name": "Benllech", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.32044000", + "longitude": "-4.22607000" + }, + { + "id": "48481", + "name": "Bethesda", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.18150000", + "longitude": "-4.05828000" + }, + { + "id": "48484", + "name": "Betws", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56917000", + "longitude": "-3.58833000" + }, + { + "id": "48485", + "name": "Betws-y-Coed", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.09382000", + "longitude": "-3.80668000" + }, + { + "id": "48533", + "name": "Bishopston", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57750000", + "longitude": "-4.04806000" + }, + { + "id": "48553", + "name": "Blackwood", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66778000", + "longitude": "-3.20750000" + }, + { + "id": "48555", + "name": "Blaenau Gwent", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75000000", + "longitude": "-3.16667000" + }, + { + "id": "48556", + "name": "Blaenau-Ffestiniog", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.99464000", + "longitude": "-3.93697000" + }, + { + "id": "48557", + "name": "Blaenavon", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77402000", + "longitude": "-3.08537000" + }, + { + "id": "48558", + "name": "Blaengwynfi", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65623000", + "longitude": "-3.60371000" + }, + { + "id": "48580", + "name": "Bodedern", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.29232000", + "longitude": "-4.50303000" + }, + { + "id": "48581", + "name": "Bodelwyddan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26827000", + "longitude": "-3.50078000" + }, + { + "id": "48613", + "name": "Borth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.48887000", + "longitude": "-4.05039000" + }, + { + "id": "48633", + "name": "Bow Street", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.44213000", + "longitude": "-4.02783000" + }, + { + "id": "48670", + "name": "Brecon", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.94612000", + "longitude": "-3.38887000" + }, + { + "id": "48683", + "name": "Bridgend", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.50583000", + "longitude": "-3.57722000" + }, + { + "id": "48684", + "name": "Bridgend county borough", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55000000", + "longitude": "-3.58333000" + }, + { + "id": "48705", + "name": "Briton Ferry", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63106000", + "longitude": "-3.81898000" + }, + { + "id": "48730", + "name": "Broughton", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16303000", + "longitude": "-2.99309000" + }, + { + "id": "48737", + "name": "Brymbo", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.06667000", + "longitude": "-3.06667000" + }, + { + "id": "48738", + "name": "Bryn", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61639000", + "longitude": "-3.71167000" + }, + { + "id": "48739", + "name": "Brynamman", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80000000", + "longitude": "-3.86667000" + }, + { + "id": "48740", + "name": "Brynmawr", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80000000", + "longitude": "-3.18333000" + }, + { + "id": "48741", + "name": "Brynna", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53845000", + "longitude": "-3.46378000" + }, + { + "id": "48750", + "name": "Buckley", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16667000", + "longitude": "-3.08333000" + }, + { + "id": "48756", + "name": "Builth Wells", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.14940000", + "longitude": "-3.40469000" + }, + { + "id": "48784", + "name": "Burry Port", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68435000", + "longitude": "-4.24687000" + }, + { + "id": "48810", + "name": "Caergwrle", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.10953000", + "longitude": "-3.03808000" + }, + { + "id": "48811", + "name": "Caerleon", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60952000", + "longitude": "-2.95378000" + }, + { + "id": "48812", + "name": "Caernarfon", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14126000", + "longitude": "-4.27016000" + }, + { + "id": "48813", + "name": "Caerphilly", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57452000", + "longitude": "-3.21800000" + }, + { + "id": "48814", + "name": "Caerphilly County Borough", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66667000", + "longitude": "-3.16667000" + }, + { + "id": "48815", + "name": "Caerwent", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61120000", + "longitude": "-2.76865000" + }, + { + "id": "48824", + "name": "Caldicot", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58661000", + "longitude": "-2.75736000" + }, + { + "id": "48854", + "name": "Cardiff", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.48000000", + "longitude": "-3.18000000" + }, + { + "id": "48855", + "name": "Cardigan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.08373000", + "longitude": "-4.66228000" + }, + { + "id": "48862", + "name": "Carmarthen", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85552000", + "longitude": "-4.30535000" + }, + { + "id": "48863", + "name": "Carmarthenshire", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83333000", + "longitude": "-4.16667000" + }, + { + "id": "48901", + "name": "Cefn Cribwr", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53167000", + "longitude": "-3.65278000" + }, + { + "id": "48902", + "name": "Cemaes Bay", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.41211000", + "longitude": "-4.45190000" + }, + { + "id": "48948", + "name": "Chepstow", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64087000", + "longitude": "-2.67683000" + }, + { + "id": "48976", + "name": "Chirk", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.93586000", + "longitude": "-3.05738000" + }, + { + "id": "49005", + "name": "City and County of Swansea", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58333000", + "longitude": "-4.00000000" + }, + { + "id": "49042", + "name": "Clydach", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68333000", + "longitude": "-3.90000000" + }, + { + "id": "49057", + "name": "Coedpoeth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.05391000", + "longitude": "-3.06234000" + }, + { + "id": "49060", + "name": "Coity", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52200000", + "longitude": "-3.55531000" + }, + { + "id": "49078", + "name": "Colwyn Bay", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.29483000", + "longitude": "-3.72674000" + }, + { + "id": "49093", + "name": "Conwy", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.08333000", + "longitude": "-3.75000000" + }, + { + "id": "49122", + "name": "County of Ceredigion", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.25000000", + "longitude": "-4.00000000" + }, + { + "id": "49123", + "name": "County of Flintshire", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25000000", + "longitude": "-3.16667000" + }, + { + "id": "49129", + "name": "Cowbridge", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.46028000", + "longitude": "-3.44167000" + }, + { + "id": "49156", + "name": "Criccieth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.92053000", + "longitude": "-4.23460000" + }, + { + "id": "49158", + "name": "Crickhowell", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.85992000", + "longitude": "-3.13771000" + }, + { + "id": "49162", + "name": "Croeserw", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64472000", + "longitude": "-3.64028000" + }, + { + "id": "49165", + "name": "Crofty", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63448000", + "longitude": "-4.12937000" + }, + { + "id": "49172", + "name": "Cross Hands", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79306000", + "longitude": "-4.08750000" + }, + { + "id": "49189", + "name": "Crumlin", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67778000", + "longitude": "-3.13528000" + }, + { + "id": "49191", + "name": "Crymych", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.97361000", + "longitude": "-4.64722000" + }, + { + "id": "49192", + "name": "Crynant", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72889000", + "longitude": "-3.74806000" + }, + { + "id": "49215", + "name": "Cwm", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74000000", + "longitude": "-3.18028000" + }, + { + "id": "49216", + "name": "Cwmafan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61671000", + "longitude": "-3.76205000" + }, + { + "id": "49217", + "name": "Cwmbach", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70556000", + "longitude": "-3.40944000" + }, + { + "id": "49218", + "name": "Cwmbran", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65446000", + "longitude": "-3.02281000" + }, + { + "id": "49254", + "name": "Deeside", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20053000", + "longitude": "-3.03841000" + }, + { + "id": "49255", + "name": "Deganwy", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.30446000", + "longitude": "-3.82735000" + }, + { + "id": "49256", + "name": "Deiniolen", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14819000", + "longitude": "-4.13185000" + }, + { + "id": "49259", + "name": "Denbigh", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.18333000", + "longitude": "-3.41667000" + }, + { + "id": "49260", + "name": "Denbighshire", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.08333000", + "longitude": "-3.33333000" + }, + { + "id": "49271", + "name": "Deri", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70812000", + "longitude": "-3.26312000" + }, + { + "id": "49285", + "name": "Dinas Powys", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43486000", + "longitude": "-3.21398000" + }, + { + "id": "49300", + "name": "Dolgellau", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.74222000", + "longitude": "-3.88611000" + }, + { + "id": "49370", + "name": "Dyffryn Ardudwy", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.77748000", + "longitude": "-4.06468000" + }, + { + "id": "49372", + "name": "Dyserth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.30032000", + "longitude": "-3.41262000" + }, + { + "id": "49431", + "name": "Ebbw Vale", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77714000", + "longitude": "-3.20792000" + }, + { + "id": "49546", + "name": "Ferndale", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66056000", + "longitude": "-3.44750000" + }, + { + "id": "49562", + "name": "Fishguard", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99376000", + "longitude": "-4.97631000" + }, + { + "id": "49574", + "name": "Flint", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.24488000", + "longitude": "-3.13231000" + }, + { + "id": "49580", + "name": "Fochriw", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74003000", + "longitude": "-3.29861000" + }, + { + "id": "49596", + "name": "Four Crosses", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.75941000", + "longitude": "-3.08106000" + }, + { + "id": "49619", + "name": "Gaerwen", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22112000", + "longitude": "-4.27362000" + }, + { + "id": "49636", + "name": "Gelligaer", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66444000", + "longitude": "-3.25611000" + }, + { + "id": "49641", + "name": "Gilfach Goch", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59213000", + "longitude": "-3.47296000" + }, + { + "id": "49644", + "name": "Gilwern", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.82475000", + "longitude": "-3.09355000" + }, + { + "id": "49647", + "name": "Glanamman", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80000000", + "longitude": "-3.93333000" + }, + { + "id": "49648", + "name": "Glandwr", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.92833000", + "longitude": "-4.63333000" + }, + { + "id": "49666", + "name": "Glyn-neath", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74750000", + "longitude": "-3.61833000" + }, + { + "id": "49667", + "name": "Glyncorrwg", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67944000", + "longitude": "-3.62806000" + }, + { + "id": "49676", + "name": "Goodwick", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.00491000", + "longitude": "-4.99511000" + }, + { + "id": "49684", + "name": "Gorseinon", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66931000", + "longitude": "-4.04163000" + }, + { + "id": "49693", + "name": "Govilon", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81928000", + "longitude": "-3.06295000" + }, + { + "id": "49740", + "name": "Greenfield", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.28333000", + "longitude": "-3.21667000" + }, + { + "id": "49749", + "name": "Gresford", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.08539000", + "longitude": "-2.97062000" + }, + { + "id": "49756", + "name": "Gronant", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.33669000", + "longitude": "-3.36031000" + }, + { + "id": "49759", + "name": "Grovesend", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68472000", + "longitude": "-4.03833000" + }, + { + "id": "49763", + "name": "Guilsfield", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.69634000", + "longitude": "-3.15712000" + }, + { + "id": "49769", + "name": "Gwynedd", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.83333000", + "longitude": "-3.91667000" + }, + { + "id": "49807", + "name": "Harlech", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.85941000", + "longitude": "-4.10831000" + }, + { + "id": "49847", + "name": "Haverfordwest", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.80169000", + "longitude": "-4.96914000" + }, + { + "id": "49850", + "name": "Hawarden", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.18478000", + "longitude": "-3.02578000" + }, + { + "id": "49858", + "name": "Hay", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.07049000", + "longitude": "-3.12741000" + }, + { + "id": "49902", + "name": "Hengoed", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65083000", + "longitude": "-3.23167000" + }, + { + "id": "49905", + "name": "Henllan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20000000", + "longitude": "-3.46667000" + }, + { + "id": "49950", + "name": "Hirwaun", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.73917000", + "longitude": "-3.51028000" + }, + { + "id": "49971", + "name": "Holyhead", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.30621000", + "longitude": "-4.63211000" + }, + { + "id": "49973", + "name": "Holywell", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.27466000", + "longitude": "-3.22895000" + }, + { + "id": "49980", + "name": "Hook", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.76500000", + "longitude": "-4.93167000" + }, + { + "id": "49983", + "name": "Hope", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.11667000", + "longitude": "-3.03333000" + }, + { + "id": "50022", + "name": "Hundleton", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66694000", + "longitude": "-4.94917000" + }, + { + "id": "50095", + "name": "Johnston", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75556000", + "longitude": "-4.99667000" + }, + { + "id": "50138", + "name": "Kidwelly", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.73639000", + "longitude": "-4.30333000" + }, + { + "id": "50143", + "name": "Kilgetty", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.73203000", + "longitude": "-4.71983000" + }, + { + "id": "50219", + "name": "Knighton", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.34251000", + "longitude": "-3.04708000" + }, + { + "id": "50233", + "name": "Lampeter", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.11285000", + "longitude": "-4.08039000" + }, + { + "id": "50273", + "name": "Leeswood", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.13347000", + "longitude": "-3.09466000" + }, + { + "id": "50290", + "name": "Letterston", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.92757000", + "longitude": "-4.99141000" + }, + { + "id": "50340", + "name": "Llanarth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.19424000", + "longitude": "-4.30811000" + }, + { + "id": "50341", + "name": "Llanbedr", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.81667000", + "longitude": "-4.10000000" + }, + { + "id": "50342", + "name": "Llanberis", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.11809000", + "longitude": "-4.12923000" + }, + { + "id": "50343", + "name": "Llanbradach", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60639000", + "longitude": "-3.23028000" + }, + { + "id": "50344", + "name": "Llandeilo", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.88459000", + "longitude": "-3.99154000" + }, + { + "id": "50345", + "name": "Llandovery", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99415000", + "longitude": "-3.79637000" + }, + { + "id": "50346", + "name": "Llandrindod Wells", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.24164000", + "longitude": "-3.37868000" + }, + { + "id": "50347", + "name": "Llandudno", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.32498000", + "longitude": "-3.83148000" + }, + { + "id": "50348", + "name": "Llandybie", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.82044000", + "longitude": "-4.00710000" + }, + { + "id": "50349", + "name": "Llandysul", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.04166000", + "longitude": "-4.30909000" + }, + { + "id": "50350", + "name": "Llanelli", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68195000", + "longitude": "-4.16191000" + }, + { + "id": "50351", + "name": "Llanerchymedd", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.33055000", + "longitude": "-4.37700000" + }, + { + "id": "50352", + "name": "Llanfair Caereinion", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.64790000", + "longitude": "-3.32668000" + }, + { + "id": "50353", + "name": "Llanfairfechan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25779000", + "longitude": "-3.97423000" + }, + { + "id": "50354", + "name": "Llanfairpwllgwyngyll", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22141000", + "longitude": "-4.20329000" + }, + { + "id": "50355", + "name": "Llanfyllin", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.76570000", + "longitude": "-3.27187000" + }, + { + "id": "50356", + "name": "Llangefni", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25561000", + "longitude": "-4.31063000" + }, + { + "id": "50357", + "name": "Llangoed", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.29420000", + "longitude": "-4.08772000" + }, + { + "id": "50358", + "name": "Llangollen", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.96829000", + "longitude": "-3.17127000" + }, + { + "id": "50359", + "name": "Llangwm", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74833000", + "longitude": "-4.91361000" + }, + { + "id": "50360", + "name": "Llangybi", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66583000", + "longitude": "-2.90806000" + }, + { + "id": "50361", + "name": "Llangynidr", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86730000", + "longitude": "-3.22762000" + }, + { + "id": "50362", + "name": "Llanharan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53805000", + "longitude": "-3.43906000" + }, + { + "id": "50363", + "name": "Llanharry", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51422000", + "longitude": "-3.43240000" + }, + { + "id": "50364", + "name": "Llanidloes", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.44977000", + "longitude": "-3.53997000" + }, + { + "id": "50365", + "name": "Llanilar", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.35657000", + "longitude": "-4.02574000" + }, + { + "id": "50366", + "name": "Llanrhaeadr-ym-Mochnant", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.82507000", + "longitude": "-3.30225000" + }, + { + "id": "50367", + "name": "Llanrug", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14788000", + "longitude": "-4.19596000" + }, + { + "id": "50368", + "name": "Llanrwst", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14021000", + "longitude": "-3.79527000" + }, + { + "id": "50369", + "name": "Llansantffraid Glan Conwy", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26667000", + "longitude": "-3.80000000" + }, + { + "id": "50370", + "name": "Llansteffan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77222000", + "longitude": "-4.39139000" + }, + { + "id": "50371", + "name": "Llantrisant", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.54028000", + "longitude": "-3.37389000" + }, + { + "id": "50372", + "name": "Llantwit Fardre", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.55460000", + "longitude": "-3.33241000" + }, + { + "id": "50373", + "name": "Llantwit Major", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41070000", + "longitude": "-3.48632000" + }, + { + "id": "50374", + "name": "Llwynypia", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63333000", + "longitude": "-3.45000000" + }, + { + "id": "50460", + "name": "Machen", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59599000", + "longitude": "-3.14190000" + }, + { + "id": "50461", + "name": "Machynlleth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.59097000", + "longitude": "-3.85051000" + }, + { + "id": "50465", + "name": "Maesteg", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60926000", + "longitude": "-3.65823000" + }, + { + "id": "50470", + "name": "Magor", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57944000", + "longitude": "-2.83139000" + }, + { + "id": "50493", + "name": "Marchwiel", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.02390000", + "longitude": "-2.96106000" + }, + { + "id": "50518", + "name": "Marshfield", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.53389000", + "longitude": "-3.07306000" + }, + { + "id": "50545", + "name": "Menai Bridge", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22775000", + "longitude": "-4.16926000" + }, + { + "id": "50554", + "name": "Merthyr Tydfil", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.74794000", + "longitude": "-3.37779000" + }, + { + "id": "50555", + "name": "Merthyr Tydfil County Borough", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75000000", + "longitude": "-3.33333000" + }, + { + "id": "50582", + "name": "Milford Haven", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71278000", + "longitude": "-5.03410000" + }, + { + "id": "50610", + "name": "Moelfre", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.35228000", + "longitude": "-4.23734000" + }, + { + "id": "50614", + "name": "Mold", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.16674000", + "longitude": "-3.14143000" + }, + { + "id": "50619", + "name": "Monmouth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81265000", + "longitude": "-2.71363000" + }, + { + "id": "50620", + "name": "Monmouthshire", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75000000", + "longitude": "-2.83333000" + }, + { + "id": "50636", + "name": "Mostyn", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.31271000", + "longitude": "-3.26765000" + }, + { + "id": "50642", + "name": "Mountain Ash", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.68361000", + "longitude": "-3.38008000" + }, + { + "id": "50664", + "name": "Narberth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.79784000", + "longitude": "-4.74275000" + }, + { + "id": "50667", + "name": "Neath", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66317000", + "longitude": "-3.80443000" + }, + { + "id": "50668", + "name": "Neath Port Talbot", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66667000", + "longitude": "-3.75000000" + }, + { + "id": "50672", + "name": "Nefyn", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.93538000", + "longitude": "-4.52250000" + }, + { + "id": "50675", + "name": "Nelson", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65333000", + "longitude": "-3.28444000" + }, + { + "id": "50694", + "name": "New Quay", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21515000", + "longitude": "-4.35887000" + }, + { + "id": "50697", + "name": "New Tredegar", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72051000", + "longitude": "-3.24130000" + }, + { + "id": "50703", + "name": "Newbridge", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66667000", + "longitude": "-3.13333000" + }, + { + "id": "50708", + "name": "Newcastle Emlyn", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.04056000", + "longitude": "-4.46670000" + }, + { + "id": "50720", + "name": "Newport", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58774000", + "longitude": "-2.99835000" + }, + { + "id": "50737", + "name": "Newtown", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.51667000", + "longitude": "-3.30000000" + }, + { + "id": "50742", + "name": "Neyland", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71014000", + "longitude": "-4.95155000" + }, + { + "id": "50779", + "name": "Northop", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.20692000", + "longitude": "-3.13277000" + }, + { + "id": "50799", + "name": "Ogmore Vale", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60230000", + "longitude": "-3.54217000" + }, + { + "id": "50836", + "name": "Overton", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.96667000", + "longitude": "-2.93333000" + }, + { + "id": "50871", + "name": "Pembroke", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67464000", + "longitude": "-4.91286000" + }, + { + "id": "50872", + "name": "Pembroke Dock", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69161000", + "longitude": "-4.94036000" + }, + { + "id": "50873", + "name": "Pembrokeshire", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.83333000", + "longitude": "-4.91667000" + }, + { + "id": "50875", + "name": "Pen-clawdd", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.64028000", + "longitude": "-4.09917000" + }, + { + "id": "50876", + "name": "Penally", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65986000", + "longitude": "-4.72399000" + }, + { + "id": "50877", + "name": "Penarth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43860000", + "longitude": "-3.17342000" + }, + { + "id": "50878", + "name": "Pencader", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.00080000", + "longitude": "-4.26575000" + }, + { + "id": "50880", + "name": "Pencoed", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52371000", + "longitude": "-3.50016000" + }, + { + "id": "50884", + "name": "Penmaenmawr", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.26667000", + "longitude": "-3.93333000" + }, + { + "id": "50885", + "name": "Penparcau", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.40333000", + "longitude": "-4.07417000" + }, + { + "id": "50886", + "name": "Penrhyndeudraeth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.93333000", + "longitude": "-4.06667000" + }, + { + "id": "50890", + "name": "Pentre", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65429000", + "longitude": "-3.49133000" + }, + { + "id": "50891", + "name": "Pentyrch", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52889000", + "longitude": "-3.29500000" + }, + { + "id": "50892", + "name": "Penyffordd", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.14829000", + "longitude": "-3.04584000" + }, + { + "id": "50893", + "name": "Penygroes", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.05502000", + "longitude": "-4.28535000" + }, + { + "id": "50936", + "name": "Pont Rhyd-y-cyff", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58694000", + "longitude": "-3.63639000" + }, + { + "id": "50937", + "name": "Pontarddulais", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71423000", + "longitude": "-4.03859000" + }, + { + "id": "50941", + "name": "Pontlliw", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69139000", + "longitude": "-4.01056000" + }, + { + "id": "50942", + "name": "Pontyates", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75182000", + "longitude": "-4.21718000" + }, + { + "id": "50943", + "name": "Pontyberem", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77826000", + "longitude": "-4.16890000" + }, + { + "id": "50944", + "name": "Pontyclun", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.52162000", + "longitude": "-3.39145000" + }, + { + "id": "50945", + "name": "Pontycymer", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61118000", + "longitude": "-3.58421000" + }, + { + "id": "50946", + "name": "Pontypool", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70111000", + "longitude": "-3.04444000" + }, + { + "id": "50947", + "name": "Pontypridd", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60210000", + "longitude": "-3.34211000" + }, + { + "id": "50955", + "name": "Port Talbot", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.59241000", + "longitude": "-3.78019000" + }, + { + "id": "50960", + "name": "Porthcawl", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.47903000", + "longitude": "-3.70362000" + }, + { + "id": "50962", + "name": "Porthmadog", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.92924000", + "longitude": "-4.13137000" + }, + { + "id": "50984", + "name": "Prestatyn", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.33748000", + "longitude": "-3.40776000" + }, + { + "id": "50986", + "name": "Presteigne", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.27183000", + "longitude": "-3.00579000" + }, + { + "id": "50991", + "name": "Price Town", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.61832000", + "longitude": "-3.53662000" + }, + { + "id": "51008", + "name": "Pwllheli", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.88990000", + "longitude": "-4.41451000" + }, + { + "id": "51009", + "name": "Pyle", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51667000", + "longitude": "-3.70000000" + }, + { + "id": "51021", + "name": "Radyr", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.51864000", + "longitude": "-3.25829000" + }, + { + "id": "51022", + "name": "Raglan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.76500000", + "longitude": "-2.85331000" + }, + { + "id": "51064", + "name": "Resolven", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71193000", + "longitude": "-3.69745000" + }, + { + "id": "51066", + "name": "Rhayader", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.30154000", + "longitude": "-3.51146000" + }, + { + "id": "51067", + "name": "Rhondda", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65896000", + "longitude": "-3.44885000" + }, + { + "id": "51068", + "name": "Rhondda Cynon Taf", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66667000", + "longitude": "-3.50000000" + }, + { + "id": "51069", + "name": "Rhoose", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.38818000", + "longitude": "-3.35430000" + }, + { + "id": "51070", + "name": "Rhosllanerchrugog", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00974000", + "longitude": "-3.05814000" + }, + { + "id": "51071", + "name": "Rhosneigr", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.23186000", + "longitude": "-4.51480000" + }, + { + "id": "51073", + "name": "Rhuddlan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.29203000", + "longitude": "-3.46996000" + }, + { + "id": "51074", + "name": "Rhyl", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.31929000", + "longitude": "-3.49228000" + }, + { + "id": "51075", + "name": "Rhymney", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75998000", + "longitude": "-3.28553000" + }, + { + "id": "51088", + "name": "Risca", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.60799000", + "longitude": "-3.10081000" + }, + { + "id": "51100", + "name": "Rogiet", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58854000", + "longitude": "-2.77868000" + }, + { + "id": "51112", + "name": "Rossett", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.10921000", + "longitude": "-2.94478000" + }, + { + "id": "51136", + "name": "Ruabon", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.98780000", + "longitude": "-3.03883000" + }, + { + "id": "51150", + "name": "Ruthin", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.11368000", + "longitude": "-3.31782000" + }, + { + "id": "51164", + "name": "Saint Asaph", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.25815000", + "longitude": "-3.44524000" + }, + { + "id": "51167", + "name": "Saint Clears", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81989000", + "longitude": "-4.49783000" + }, + { + "id": "51170", + "name": "Saint Davids", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.88094000", + "longitude": "-5.26554000" + }, + { + "id": "51202", + "name": "Saundersfoot", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70945000", + "longitude": "-4.70215000" + }, + { + "id": "51239", + "name": "Seven Sisters", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.76667000", + "longitude": "-3.71667000" + }, + { + "id": "51315", + "name": "Sir Powys", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.33333000", + "longitude": "-3.41667000" + }, + { + "id": "51375", + "name": "Southgate", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.56944000", + "longitude": "-4.08972000" + }, + { + "id": "51389", + "name": "Spittal", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.86889000", + "longitude": "-4.94250000" + }, + { + "id": "51448", + "name": "Steynton", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.72917000", + "longitude": "-5.01722000" + }, + { + "id": "51532", + "name": "Swansea", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62079000", + "longitude": "-3.94323000" + }, + { + "id": "51546", + "name": "Taibach", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58333000", + "longitude": "-3.76667000" + }, + { + "id": "51549", + "name": "Tal-y-bont", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.77471000", + "longitude": "-4.09224000" + }, + { + "id": "51550", + "name": "Talgarth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.99588000", + "longitude": "-3.23205000" + }, + { + "id": "51551", + "name": "Talysarn", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.05365000", + "longitude": "-4.25767000" + }, + { + "id": "51573", + "name": "Templeton", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77194000", + "longitude": "-4.73778000" + }, + { + "id": "51576", + "name": "Tenby", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.67279000", + "longitude": "-4.70447000" + }, + { + "id": "51611", + "name": "Three Crosses", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62865000", + "longitude": "-4.06263000" + }, + { + "id": "51629", + "name": "Tintern", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.69677000", + "longitude": "-2.68142000" + }, + { + "id": "51641", + "name": "Tonypandy", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.62202000", + "longitude": "-3.45544000" + }, + { + "id": "51642", + "name": "Tonyrefail", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.58402000", + "longitude": "-3.43041000" + }, + { + "id": "51644", + "name": "Torfaen County Borough", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70146000", + "longitude": "-3.05136000" + }, + { + "id": "51660", + "name": "Trawsfynydd", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.90212000", + "longitude": "-3.92289000" + }, + { + "id": "51661", + "name": "Tredegar", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77251000", + "longitude": "-3.24679000" + }, + { + "id": "51663", + "name": "Trefnant", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.22526000", + "longitude": "-3.42030000" + }, + { + "id": "51664", + "name": "Tregaron", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.21950000", + "longitude": "-3.93295000" + }, + { + "id": "51665", + "name": "Tregarth", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.19012000", + "longitude": "-4.08780000" + }, + { + "id": "51666", + "name": "Treharris", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.66457000", + "longitude": "-3.30725000" + }, + { + "id": "51667", + "name": "Treorchy", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.65958000", + "longitude": "-3.50587000" + }, + { + "id": "51668", + "name": "Treuddyn", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.11480000", + "longitude": "-3.12003000" + }, + { + "id": "51671", + "name": "Trimsaran", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.71988000", + "longitude": "-4.24168000" + }, + { + "id": "51677", + "name": "Tumble", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.78361000", + "longitude": "-4.10972000" + }, + { + "id": "51684", + "name": "Tycroes", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.77806000", + "longitude": "-4.02000000" + }, + { + "id": "51688", + "name": "Tywyn", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.58578000", + "longitude": "-4.09276000" + }, + { + "id": "51696", + "name": "Undy", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.57526000", + "longitude": "-2.81453000" + }, + { + "id": "51710", + "name": "Usk", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.70347000", + "longitude": "-2.90332000" + }, + { + "id": "51712", + "name": "Vale of Glamorgan", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.41667000", + "longitude": "-3.41667000" + }, + { + "id": "51714", + "name": "Valley", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.28490000", + "longitude": "-4.56644000" + }, + { + "id": "51717", + "name": "Victoria", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.75000000", + "longitude": "-3.20000000" + }, + { + "id": "51794", + "name": "Welshpool", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "52.65973000", + "longitude": "-3.14710000" + }, + { + "id": "51803", + "name": "Wenvoe", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.44776000", + "longitude": "-3.26369000" + }, + { + "id": "51877", + "name": "Whitland", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.81889000", + "longitude": "-4.61528000" + }, + { + "id": "51888", + "name": "Wick", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.43944000", + "longitude": "-3.54944000" + }, + { + "id": "51998", + "name": "Wrexham", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.00000000", + "longitude": "-3.00000000" + }, + { + "id": "52008", + "name": "Y Felinheli", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "53.18737000", + "longitude": "-4.20476000" + }, + { + "id": "52023", + "name": "Ynysybwl", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.63922000", + "longitude": "-3.36036000" + }, + { + "id": "52027", + "name": "Ystalyfera", + "state_id": 2338, + "state_code": "WLS", + "country_id": 232, + "country_code": "GB", + "latitude": "51.76716000", + "longitude": "-3.78082000" + }, + { + "id": "110968", + "name": "Abbeville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.57184000", + "longitude": "-85.25049000" + }, + { + "id": "111032", + "name": "Adamsville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.60094000", + "longitude": "-86.95611000" + }, + { + "id": "111083", + "name": "Alabaster", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.24428000", + "longitude": "-86.81638000" + }, + { + "id": "111120", + "name": "Albertville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.26783000", + "longitude": "-86.20878000" + }, + { + "id": "111146", + "name": "Alexander City", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.94401000", + "longitude": "-85.95385000" + }, + { + "id": "111152", + "name": "Alexandria", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.77399000", + "longitude": "-85.88552000" + }, + { + "id": "111172", + "name": "Aliceville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.12957000", + "longitude": "-88.15142000" + }, + { + "id": "111309", + "name": "Andalusia", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.30808000", + "longitude": "-86.48243000" + }, + { + "id": "111355", + "name": "Anniston", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.65983000", + "longitude": "-85.83163000" + }, + { + "id": "111407", + "name": "Arab", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.31815000", + "longitude": "-86.49582000" + }, + { + "id": "111448", + "name": "Argo", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.68778000", + "longitude": "-86.50051000" + }, + { + "id": "111524", + "name": "Ashford", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.18296000", + "longitude": "-85.23632000" + }, + { + "id": "111533", + "name": "Ashland", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.27373000", + "longitude": "-85.83607000" + }, + { + "id": "111548", + "name": "Ashville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.83704000", + "longitude": "-86.25442000" + }, + { + "id": "111577", + "name": "Athens", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.80243000", + "longitude": "-86.97219000" + }, + { + "id": "111602", + "name": "Atmore", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.02379000", + "longitude": "-87.49387000" + }, + { + "id": "111608", + "name": "Attalla", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.02176000", + "longitude": "-86.08859000" + }, + { + "id": "111623", + "name": "Auburn", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.60986000", + "longitude": "-85.48078000" + }, + { + "id": "111671", + "name": "Autauga County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.53492000", + "longitude": "-86.64276000" + }, + { + "id": "111761", + "name": "Baldwin County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.66097000", + "longitude": "-87.74984000" + }, + { + "id": "111774", + "name": "Ballplay", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.05871000", + "longitude": "-85.80802000" + }, + { + "id": "111815", + "name": "Barbour County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.86960000", + "longitude": "-85.39320000" + }, + { + "id": "111929", + "name": "Bay Minette", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.88296000", + "longitude": "-87.77305000" + }, + { + "id": "111948", + "name": "Bayou La Batre", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.40352000", + "longitude": "-88.24852000" + }, + { + "id": "111975", + "name": "Bear Creek", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.27482000", + "longitude": "-87.70058000" + }, + { + "id": "112252", + "name": "Berry", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.65983000", + "longitude": "-87.60001000" + }, + { + "id": "112267", + "name": "Bessemer", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.40178000", + "longitude": "-86.95444000" + }, + { + "id": "112309", + "name": "Bibb County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.99864000", + "longitude": "-87.12644000" + }, + { + "id": "112358", + "name": "Birmingham", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.52066000", + "longitude": "-86.80249000" + }, + { + "id": "112457", + "name": "Blount County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.98087000", + "longitude": "-86.56737000" + }, + { + "id": "112460", + "name": "Blountsville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.08149000", + "longitude": "-86.59110000" + }, + { + "id": "112474", + "name": "Blue Ridge", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.49264000", + "longitude": "-86.19052000" + }, + { + "id": "112490", + "name": "Boaz", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.20065000", + "longitude": "-86.16637000" + }, + { + "id": "112725", + "name": "Brent", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.93735000", + "longitude": "-87.16472000" + }, + { + "id": "112747", + "name": "Brewton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.10518000", + "longitude": "-87.07219000" + }, + { + "id": "112758", + "name": "Bridgeport", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.94758000", + "longitude": "-85.71442000" + }, + { + "id": "112786", + "name": "Brighton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.43428000", + "longitude": "-86.94721000" + }, + { + "id": "112848", + "name": "Brook Highland", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.43566000", + "longitude": "-86.67388000" + }, + { + "id": "112886", + "name": "Brookside", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.63788000", + "longitude": "-86.91666000" + }, + { + "id": "112897", + "name": "Brookwood", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.25567000", + "longitude": "-87.32083000" + }, + { + "id": "112946", + "name": "Brundidge", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.72016000", + "longitude": "-85.81606000" + }, + { + "id": "113034", + "name": "Bullock County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.10055000", + "longitude": "-85.71570000" + }, + { + "id": "113106", + "name": "Butler", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.08959000", + "longitude": "-88.22197000" + }, + { + "id": "113114", + "name": "Butler County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.75243000", + "longitude": "-86.68029000" + }, + { + "id": "113138", + "name": "Bynum", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.61316000", + "longitude": "-85.96108000" + }, + { + "id": "113167", + "name": "Cahaba Heights", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.46400000", + "longitude": "-86.73193000" + }, + { + "id": "113194", + "name": "Calera", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.10290000", + "longitude": "-86.75360000" + }, + { + "id": "113200", + "name": "Calhoun County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.77143000", + "longitude": "-85.82603000" + }, + { + "id": "113259", + "name": "Camden", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.99098000", + "longitude": "-87.29055000" + }, + { + "id": "113386", + "name": "Carbon Hill", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.89177000", + "longitude": "-87.52612000" + }, + { + "id": "113407", + "name": "Carlisle-Rockledge", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.11445000", + "longitude": "-86.12407000" + }, + { + "id": "113463", + "name": "Carrollton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.26169000", + "longitude": "-88.09503000" + }, + { + "id": "113601", + "name": "Cedar Bluff", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.22009000", + "longitude": "-85.60774000" + }, + { + "id": "113646", + "name": "Center Point", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.64566000", + "longitude": "-86.68360000" + }, + { + "id": "113688", + "name": "Centre", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.15204000", + "longitude": "-85.67885000" + }, + { + "id": "113691", + "name": "Centreville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.94620000", + "longitude": "-87.11669000" + }, + { + "id": "113713", + "name": "Chalkville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.65316000", + "longitude": "-86.64777000" + }, + { + "id": "113720", + "name": "Chambers County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.91437000", + "longitude": "-85.39204000" + }, + { + "id": "113804", + "name": "Chatom", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.46517000", + "longitude": "-88.25446000" + }, + { + "id": "113829", + "name": "Chelsea", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.34011000", + "longitude": "-86.63026000" + }, + { + "id": "113845", + "name": "Cherokee", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.75703000", + "longitude": "-87.97281000" + }, + { + "id": "113849", + "name": "Cherokee County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.17596000", + "longitude": "-85.60379000" + }, + { + "id": "113938", + "name": "Chickasaw", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.76380000", + "longitude": "-88.07472000" + }, + { + "id": "113949", + "name": "Childersburg", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.27817000", + "longitude": "-86.35498000" + }, + { + "id": "113957", + "name": "Chilton County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.84785000", + "longitude": "-86.71881000" + }, + { + "id": "113984", + "name": "Choccolocco", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.65927000", + "longitude": "-85.70357000" + }, + { + "id": "113986", + "name": "Choctaw County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.01961000", + "longitude": "-88.26320000" + }, + { + "id": "114033", + "name": "Citronelle", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.09073000", + "longitude": "-88.22806000" + }, + { + "id": "114099", + "name": "Clanton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.83874000", + "longitude": "-86.62943000" + }, + { + "id": "114134", + "name": "Clarke County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.67666000", + "longitude": "-87.83081000" + }, + { + "id": "114165", + "name": "Clay", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.70260000", + "longitude": "-86.59971000" + }, + { + "id": "114173", + "name": "Clay County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.26909000", + "longitude": "-85.86055000" + }, + { + "id": "114196", + "name": "Clayton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.87822000", + "longitude": "-85.44966000" + }, + { + "id": "114230", + "name": "Cleburne County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.67456000", + "longitude": "-85.51877000" + }, + { + "id": "114240", + "name": "Cleveland", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.99093000", + "longitude": "-86.57749000" + }, + { + "id": "114301", + "name": "Clio", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.70878000", + "longitude": "-85.61050000" + }, + { + "id": "114337", + "name": "Coaling", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.15901000", + "longitude": "-87.34083000" + }, + { + "id": "114367", + "name": "Coffee County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.40263000", + "longitude": "-85.98821000" + }, + { + "id": "114379", + "name": "Colbert County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.70043000", + "longitude": "-87.80498000" + }, + { + "id": "114433", + "name": "Collinsville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.26398000", + "longitude": "-85.86053000" + }, + { + "id": "114487", + "name": "Columbiana", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.17817000", + "longitude": "-86.60721000" + }, + { + "id": "114534", + "name": "Concord", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.46761000", + "longitude": "-87.03111000" + }, + { + "id": "114550", + "name": "Conecuh County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.42927000", + "longitude": "-86.99368000" + }, + { + "id": "114613", + "name": "Coosa County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.93623000", + "longitude": "-86.24766000" + }, + { + "id": "114614", + "name": "Coosada", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.49791000", + "longitude": "-86.33136000" + }, + { + "id": "114638", + "name": "Cordova", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.75983000", + "longitude": "-87.18333000" + }, + { + "id": "114699", + "name": "Cottonwood", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.04879000", + "longitude": "-85.30493000" + }, + { + "id": "114742", + "name": "Covington County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.24849000", + "longitude": "-86.45125000" + }, + { + "id": "114745", + "name": "Cowarts", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.20018000", + "longitude": "-85.30465000" + }, + { + "id": "114791", + "name": "Crenshaw County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.73149000", + "longitude": "-86.31355000" + }, + { + "id": "114792", + "name": "Creola", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.89185000", + "longitude": "-88.03972000" + }, + { + "id": "114855", + "name": "Crossville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.28759000", + "longitude": "-85.99414000" + }, + { + "id": "114895", + "name": "Cullman", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.17482000", + "longitude": "-86.84361000" + }, + { + "id": "114896", + "name": "Cullman County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.13194000", + "longitude": "-86.86762000" + }, + { + "id": "114968", + "name": "Dadeville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.83124000", + "longitude": "-85.76357000" + }, + { + "id": "114982", + "name": "Dale County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.43182000", + "longitude": "-85.61103000" + }, + { + "id": "114983", + "name": "Daleville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.31017000", + "longitude": "-85.71299000" + }, + { + "id": "114994", + "name": "Dallas County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.32597000", + "longitude": "-87.10648000" + }, + { + "id": "115032", + "name": "Danville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.41454000", + "longitude": "-87.08751000" + }, + { + "id": "115040", + "name": "Daphne", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.60353000", + "longitude": "-87.90360000" + }, + { + "id": "115057", + "name": "Dauphin Island", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.25548000", + "longitude": "-88.10972000" + }, + { + "id": "115148", + "name": "Deatsville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.60819000", + "longitude": "-86.39581000" + }, + { + "id": "115149", + "name": "Decatur", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.60593000", + "longitude": "-86.98334000" + }, + { + "id": "115128", + "name": "DeKalb County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.45977000", + "longitude": "-85.80414000" + }, + { + "id": "115232", + "name": "Demopolis", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.51764000", + "longitude": "-87.83640000" + }, + { + "id": "115360", + "name": "Dixiana", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.74021000", + "longitude": "-86.64938000" + }, + { + "id": "115407", + "name": "Dora", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.72872000", + "longitude": "-87.09028000" + }, + { + "id": "115415", + "name": "Dothan", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.22323000", + "longitude": "-85.39049000" + }, + { + "id": "115417", + "name": "Double Springs", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.14637000", + "longitude": "-87.40247000" + }, + { + "id": "115636", + "name": "East Brewton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.09323000", + "longitude": "-87.06275000" + }, + { + "id": "115662", + "name": "East Florence", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.80953000", + "longitude": "-87.64947000" + }, + { + "id": "115816", + "name": "Eclectic", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.63541000", + "longitude": "-86.03441000" + }, + { + "id": "115941", + "name": "Elba", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.41461000", + "longitude": "-86.06772000" + }, + { + "id": "115944", + "name": "Elberta", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.41436000", + "longitude": "-87.59776000" + }, + { + "id": "116056", + "name": "Elmore", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.53874000", + "longitude": "-86.31497000" + }, + { + "id": "116057", + "name": "Elmore County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.59665000", + "longitude": "-86.14915000" + }, + { + "id": "116092", + "name": "Emerald Mountain", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.44793000", + "longitude": "-86.09429000" + }, + { + "id": "116148", + "name": "Enterprise", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.31517000", + "longitude": "-85.85522000" + }, + { + "id": "116179", + "name": "Escambia County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.12612000", + "longitude": "-87.16162000" + }, + { + "id": "116219", + "name": "Etowah County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.04525000", + "longitude": "-86.03476000" + }, + { + "id": "116224", + "name": "Eufaula", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.89127000", + "longitude": "-85.14549000" + }, + { + "id": "116242", + "name": "Eutaw", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.84059000", + "longitude": "-87.88762000" + }, + { + "id": "116261", + "name": "Evergreen", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.43350000", + "longitude": "-86.95692000" + }, + { + "id": "116309", + "name": "Fairfield", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.48594000", + "longitude": "-86.91194000" + }, + { + "id": "116326", + "name": "Fairhope", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.52297000", + "longitude": "-87.90333000" + }, + { + "id": "116369", + "name": "Falkville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.36843000", + "longitude": "-86.90862000" + }, + { + "id": "116438", + "name": "Fayette", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.68455000", + "longitude": "-87.83085000" + }, + { + "id": "116443", + "name": "Fayette County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.72121000", + "longitude": "-87.73886000" + }, + { + "id": "116453", + "name": "Fayetteville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.14567000", + "longitude": "-86.40581000" + }, + { + "id": "116567", + "name": "Flint City", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.52315000", + "longitude": "-86.97029000" + }, + { + "id": "116569", + "name": "Flomaton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.00018000", + "longitude": "-87.26081000" + }, + { + "id": "116576", + "name": "Florala", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.00518000", + "longitude": "-86.32800000" + }, + { + "id": "116577", + "name": "Florence", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.79981000", + "longitude": "-87.67725000" + }, + { + "id": "116619", + "name": "Foley", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.40659000", + "longitude": "-87.68360000" + }, + { + "id": "116669", + "name": "Forestdale", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.57011000", + "longitude": "-86.89638000" + }, + { + "id": "116705", + "name": "Fort Deposit", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.98459000", + "longitude": "-86.57859000" + }, + { + "id": "116738", + "name": "Fort Payne", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.44425000", + "longitude": "-85.71969000" + }, + { + "id": "116747", + "name": "Fort Rucker", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.34282000", + "longitude": "-85.71538000" + }, + { + "id": "116843", + "name": "Franklin County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.44167000", + "longitude": "-87.84381000" + }, + { + "id": "116957", + "name": "Frisco City", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.43350000", + "longitude": "-87.40138000" + }, + { + "id": "116999", + "name": "Fultondale", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.60483000", + "longitude": "-86.79388000" + }, + { + "id": "117003", + "name": "Fyffe", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.44676000", + "longitude": "-85.90414000" + }, + { + "id": "117004", + "name": "Gadsden", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.01434000", + "longitude": "-86.00639000" + }, + { + "id": "117070", + "name": "Gardendale", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.66010000", + "longitude": "-86.81277000" + }, + { + "id": "117139", + "name": "Geneva", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.03296000", + "longitude": "-85.86382000" + }, + { + "id": "117146", + "name": "Geneva County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.09502000", + "longitude": "-85.83898000" + }, + { + "id": "117167", + "name": "Georgiana", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.63710000", + "longitude": "-86.74192000" + }, + { + "id": "117276", + "name": "Glencoe", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.95704000", + "longitude": "-85.93247000" + }, + { + "id": "117377", + "name": "Good Hope", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.11593000", + "longitude": "-86.86361000" + }, + { + "id": "117391", + "name": "Goodwater", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.06567000", + "longitude": "-86.05330000" + }, + { + "id": "117395", + "name": "Gordo", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.32012000", + "longitude": "-87.90280000" + }, + { + "id": "117449", + "name": "Grand Bay", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.47631000", + "longitude": "-88.34223000" + }, + { + "id": "117565", + "name": "Grayson Valley", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.64816000", + "longitude": "-86.63943000" + }, + { + "id": "117566", + "name": "Graysville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.62066000", + "longitude": "-86.97138000" + }, + { + "id": "117631", + "name": "Greene County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.85314000", + "longitude": "-87.95223000" + }, + { + "id": "117664", + "name": "Greensboro", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.70415000", + "longitude": "-87.59550000" + }, + { + "id": "117680", + "name": "Greenville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.82960000", + "longitude": "-86.61775000" + }, + { + "id": "117757", + "name": "Grove Hill", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.70877000", + "longitude": "-87.77722000" + }, + { + "id": "117789", + "name": "Guin", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.96566000", + "longitude": "-87.91475000" + }, + { + "id": "117795", + "name": "Gulf Shores", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.24604000", + "longitude": "-87.70082000" + }, + { + "id": "117806", + "name": "Guntersville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.35823000", + "longitude": "-86.29446000" + }, + { + "id": "117830", + "name": "Hackleburg", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.27732000", + "longitude": "-87.82864000" + }, + { + "id": "117848", + "name": "Hale County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.76266000", + "longitude": "-87.62912000" + }, + { + "id": "117853", + "name": "Haleyville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.22649000", + "longitude": "-87.62141000" + }, + { + "id": "117887", + "name": "Hamilton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.14232000", + "longitude": "-87.98864000" + }, + { + "id": "117946", + "name": "Hanceville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.06065000", + "longitude": "-86.76750000" + }, + { + "id": "118036", + "name": "Harpersville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.34400000", + "longitude": "-86.43804000" + }, + { + "id": "118084", + "name": "Hartford", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.10240000", + "longitude": "-85.69688000" + }, + { + "id": "118102", + "name": "Hartselle", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.44343000", + "longitude": "-86.93528000" + }, + { + "id": "118110", + "name": "Harvest", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.85564000", + "longitude": "-86.75083000" + }, + { + "id": "118177", + "name": "Hayden", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.89260000", + "longitude": "-86.75777000" + }, + { + "id": "118189", + "name": "Hayneville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.18403000", + "longitude": "-86.58025000" + }, + { + "id": "118204", + "name": "Hazel Green", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.93231000", + "longitude": "-86.57194000" + }, + { + "id": "118216", + "name": "Headland", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.35128000", + "longitude": "-85.34216000" + }, + { + "id": "118243", + "name": "Heflin", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.64899000", + "longitude": "-85.58746000" + }, + { + "id": "118246", + "name": "Helena", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.29622000", + "longitude": "-86.84360000" + }, + { + "id": "118272", + "name": "Henagar", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.63508000", + "longitude": "-85.76719000" + }, + { + "id": "118297", + "name": "Henry County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.51469000", + "longitude": "-85.24141000" + }, + { + "id": "118408", + "name": "Highland Lakes", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.39838000", + "longitude": "-86.65130000" + }, + { + "id": "118516", + "name": "Hokes Bluff", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.99815000", + "longitude": "-85.86636000" + }, + { + "id": "118574", + "name": "Holt", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.23401000", + "longitude": "-87.48445000" + }, + { + "id": "118581", + "name": "Holtville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.63624000", + "longitude": "-86.32664000" + }, + { + "id": "118607", + "name": "Homewood", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.47177000", + "longitude": "-86.80082000" + }, + { + "id": "118638", + "name": "Hoover", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.40539000", + "longitude": "-86.81138000" + }, + { + "id": "118702", + "name": "Houston County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.15318000", + "longitude": "-85.30252000" + }, + { + "id": "118756", + "name": "Hueytown", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.45122000", + "longitude": "-86.99666000" + }, + { + "id": "118770", + "name": "Huguley", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.83457000", + "longitude": "-85.22966000" + }, + { + "id": "118814", + "name": "Huntsville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.73040000", + "longitude": "-86.58594000" + }, + { + "id": "118919", + "name": "Indian Springs Village", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.35539000", + "longitude": "-86.75443000" + }, + { + "id": "118954", + "name": "Inverness", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.01488000", + "longitude": "-85.74606000" + }, + { + "id": "118994", + "name": "Irondale", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.53816000", + "longitude": "-86.70721000" + }, + { + "id": "119060", + "name": "Jackson", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.50905000", + "longitude": "-87.89444000" + }, + { + "id": "119075", + "name": "Jackson County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.77941000", + "longitude": "-85.99930000" + }, + { + "id": "119099", + "name": "Jacksonville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.81382000", + "longitude": "-85.76130000" + }, + { + "id": "119138", + "name": "Jasper", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.83122000", + "longitude": "-87.27751000" + }, + { + "id": "119175", + "name": "Jefferson County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.55431000", + "longitude": "-86.89649000" + }, + { + "id": "119211", + "name": "Jemison", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.95985000", + "longitude": "-86.74665000" + }, + { + "id": "119569", + "name": "Kimberly", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.77344000", + "longitude": "-86.81388000" + }, + { + "id": "119641", + "name": "Kinsey", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.29906000", + "longitude": "-85.34438000" + }, + { + "id": "119826", + "name": "Ladonia", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.46820000", + "longitude": "-85.07910000" + }, + { + "id": "119831", + "name": "Lafayette", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.89985000", + "longitude": "-85.40106000" + }, + { + "id": "119967", + "name": "Lake Purdy", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.43011000", + "longitude": "-86.68054000" + }, + { + "id": "119986", + "name": "Lake View", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.28067000", + "longitude": "-87.13750000" + }, + { + "id": "120061", + "name": "Lamar County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.77921000", + "longitude": "-88.09690000" + }, + { + "id": "120108", + "name": "Lanett", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.86874000", + "longitude": "-85.19050000" + }, + { + "id": "120179", + "name": "Lauderdale County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.90137000", + "longitude": "-87.65400000" + }, + { + "id": "120229", + "name": "Lawrence County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.52165000", + "longitude": "-87.31104000" + }, + { + "id": "120306", + "name": "Lee County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.60114000", + "longitude": "-85.35556000" + }, + { + "id": "120320", + "name": "Leeds", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.54816000", + "longitude": "-86.54443000" + }, + { + "id": "120323", + "name": "Leesburg", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.17982000", + "longitude": "-85.76136000" + }, + { + "id": "120404", + "name": "Level Plains", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.29962000", + "longitude": "-85.77799000" + }, + { + "id": "120494", + "name": "Limestone County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.81008000", + "longitude": "-86.98137000" + }, + { + "id": "120499", + "name": "Lincoln", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.61316000", + "longitude": "-86.11831000" + }, + { + "id": "120560", + "name": "Linden", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.30625000", + "longitude": "-87.79807000" + }, + { + "id": "120577", + "name": "Lineville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.31067000", + "longitude": "-85.75441000" + }, + { + "id": "120595", + "name": "Lipscomb", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.42566000", + "longitude": "-86.92666000" + }, + { + "id": "120647", + "name": "Livingston", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.58430000", + "longitude": "-88.18725000" + }, + { + "id": "120685", + "name": "Locust Fork", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.90760000", + "longitude": "-86.61527000" + }, + { + "id": "120846", + "name": "Lowndes County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.15475000", + "longitude": "-86.65011000" + }, + { + "id": "120852", + "name": "Loxley", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.61825000", + "longitude": "-87.75305000" + }, + { + "id": "120899", + "name": "Luverne", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.71655000", + "longitude": "-86.26385000" + }, + { + "id": "120967", + "name": "Macon County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.38597000", + "longitude": "-85.69267000" + }, + { + "id": "120984", + "name": "Madison", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.69926000", + "longitude": "-86.74833000" + }, + { + "id": "121002", + "name": "Madison County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.76309000", + "longitude": "-86.55021000" + }, + { + "id": "121070", + "name": "Malvern", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.13934000", + "longitude": "-85.51910000" + }, + { + "id": "121192", + "name": "Marbury", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.70124000", + "longitude": "-86.47109000" + }, + { + "id": "121203", + "name": "Marengo County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.24761000", + "longitude": "-87.78952000" + }, + { + "id": "121205", + "name": "Margaret", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.68621000", + "longitude": "-86.47498000" + }, + { + "id": "121231", + "name": "Marion", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.63235000", + "longitude": "-87.31917000" + }, + { + "id": "121247", + "name": "Marion County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.13655000", + "longitude": "-87.88714000" + }, + { + "id": "121310", + "name": "Marshall County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.36696000", + "longitude": "-86.30664000" + }, + { + "id": "121565", + "name": "Meadowbrook", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.40205000", + "longitude": "-86.69665000" + }, + { + "id": "121698", + "name": "Meridianville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.85148000", + "longitude": "-86.57222000" + }, + { + "id": "121796", + "name": "Midfield", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.46150000", + "longitude": "-86.90888000" + }, + { + "id": "121803", + "name": "Midland City", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.31906000", + "longitude": "-85.49382000" + }, + { + "id": "121829", + "name": "Mignon", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.18345000", + "longitude": "-86.26109000" + }, + { + "id": "121872", + "name": "Millbrook", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.47986000", + "longitude": "-86.36192000" + }, + { + "id": "121963", + "name": "Minor", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.53733000", + "longitude": "-86.94055000" + }, + { + "id": "122010", + "name": "Mobile", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.69436000", + "longitude": "-88.04305000" + }, + { + "id": "122011", + "name": "Mobile County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.68515000", + "longitude": "-88.19753000" + }, + { + "id": "122067", + "name": "Monroe County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.57084000", + "longitude": "-87.36543000" + }, + { + "id": "122084", + "name": "Monroeville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.52794000", + "longitude": "-87.32471000" + }, + { + "id": "122125", + "name": "Montevallo", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.10067000", + "longitude": "-86.86416000" + }, + { + "id": "122130", + "name": "Montgomery", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.36681000", + "longitude": "-86.29997000" + }, + { + "id": "122139", + "name": "Montgomery County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.22026000", + "longitude": "-86.20761000" + }, + { + "id": "122195", + "name": "Moody", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.59094000", + "longitude": "-86.49082000" + }, + { + "id": "122207", + "name": "Moores Mill", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.84398000", + "longitude": "-86.51832000" + }, + { + "id": "122236", + "name": "Morgan County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.45347000", + "longitude": "-86.85293000" + }, + { + "id": "122265", + "name": "Morris", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.74816000", + "longitude": "-86.80860000" + }, + { + "id": "122314", + "name": "Moulton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.48121000", + "longitude": "-87.29335000" + }, + { + "id": "122328", + "name": "Moundville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.99762000", + "longitude": "-87.63001000" + }, + { + "id": "122367", + "name": "Mount Olive", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.67094000", + "longitude": "-86.85610000" + }, + { + "id": "122393", + "name": "Mount Vernon", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.08518000", + "longitude": "-88.01333000" + }, + { + "id": "122410", + "name": "Mountain Brook", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.50094000", + "longitude": "-86.75221000" + }, + { + "id": "122470", + "name": "Munford", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.52983000", + "longitude": "-85.95080000" + }, + { + "id": "122503", + "name": "Muscle Shoals", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.74481000", + "longitude": "-87.66753000" + }, + { + "id": "122676", + "name": "New Brockton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.38572000", + "longitude": "-85.92939000" + }, + { + "id": "122723", + "name": "New Hope", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.53712000", + "longitude": "-86.39426000" + }, + { + "id": "122749", + "name": "New Market", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.91003000", + "longitude": "-86.42779000" + }, + { + "id": "122857", + "name": "Newton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.33517000", + "longitude": "-85.60521000" + }, + { + "id": "122990", + "name": "North Bibb", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.20401000", + "longitude": "-87.15305000" + }, + { + "id": "123160", + "name": "Northport", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.22901000", + "longitude": "-87.57723000" + }, + { + "id": "123357", + "name": "Odenville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.67732000", + "longitude": "-86.39665000" + }, + { + "id": "123381", + "name": "Ohatchee", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.78343000", + "longitude": "-86.00247000" + }, + { + "id": "123478", + "name": "Oneonta", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.94815000", + "longitude": "-86.47276000" + }, + { + "id": "123496", + "name": "Opelika", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.64541000", + "longitude": "-85.37828000" + }, + { + "id": "123498", + "name": "Opp", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.28267000", + "longitude": "-86.25551000" + }, + { + "id": "123511", + "name": "Orange Beach", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.29437000", + "longitude": "-87.57359000" + }, + { + "id": "123663", + "name": "Owens Cross Roads", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.58815000", + "longitude": "-86.45888000" + }, + { + "id": "123675", + "name": "Oxford", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.61427000", + "longitude": "-85.83496000" + }, + { + "id": "123696", + "name": "Ozark", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.45906000", + "longitude": "-85.64049000" + }, + { + "id": "123988", + "name": "Pelham", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.28567000", + "longitude": "-86.80999000" + }, + { + "id": "123997", + "name": "Pell City", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.58621000", + "longitude": "-86.28609000" + }, + { + "id": "124074", + "name": "Perry County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.63847000", + "longitude": "-87.29440000" + }, + { + "id": "124123", + "name": "Phenix City", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.47098000", + "longitude": "-85.00077000" + }, + { + "id": "124124", + "name": "Phil Campbell", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.35093000", + "longitude": "-87.70642000" + }, + { + "id": "124156", + "name": "Pickens County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.28088000", + "longitude": "-88.08869000" + }, + { + "id": "124164", + "name": "Piedmont", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.92455000", + "longitude": "-85.61135000" + }, + { + "id": "124185", + "name": "Pike County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.80272000", + "longitude": "-85.94092000" + }, + { + "id": "124196", + "name": "Pike Road", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.28431000", + "longitude": "-86.10302000" + }, + { + "id": "124235", + "name": "Pine Level", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.58374000", + "longitude": "-86.46553000" + }, + { + "id": "124272", + "name": "Pinson", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.68899000", + "longitude": "-86.68332000" + }, + { + "id": "124366", + "name": "Pleasant Grove", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.49094000", + "longitude": "-86.97027000" + }, + { + "id": "124427", + "name": "Point Clear", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.47408000", + "longitude": "-87.91916000" + }, + { + "id": "124638", + "name": "Prattville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.46402000", + "longitude": "-86.45970000" + }, + { + "id": "124666", + "name": "Priceville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.52509000", + "longitude": "-86.89473000" + }, + { + "id": "124667", + "name": "Prichard", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.73880000", + "longitude": "-88.07889000" + }, + { + "id": "124821", + "name": "Ragland", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.74454000", + "longitude": "-86.15581000" + }, + { + "id": "124824", + "name": "Rainbow City", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.95482000", + "longitude": "-86.04192000" + }, + { + "id": "124829", + "name": "Rainsville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.49425000", + "longitude": "-85.84775000" + }, + { + "id": "124872", + "name": "Randolph County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.29379000", + "longitude": "-85.45907000" + }, + { + "id": "124939", + "name": "Red Bay", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.43982000", + "longitude": "-88.14087000" + }, + { + "id": "124981", + "name": "Redstone Arsenal", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.68387000", + "longitude": "-86.64764000" + }, + { + "id": "124999", + "name": "Reform", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.37845000", + "longitude": "-88.01530000" + }, + { + "id": "125003", + "name": "Rehobeth", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.12296000", + "longitude": "-85.45271000" + }, + { + "id": "125201", + "name": "Riverside", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.60621000", + "longitude": "-86.20442000" + }, + { + "id": "125226", + "name": "Roanoke", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.15123000", + "longitude": "-85.37217000" + }, + { + "id": "125244", + "name": "Robertsdale", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.55380000", + "longitude": "-87.71193000" + }, + { + "id": "125275", + "name": "Rock Creek", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.47705000", + "longitude": "-87.08027000" + }, + { + "id": "125299", + "name": "Rockford", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.88957000", + "longitude": "-86.21969000" + }, + { + "id": "125354", + "name": "Rogersville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.82578000", + "longitude": "-87.29676000" + }, + { + "id": "125536", + "name": "Russell County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.28838000", + "longitude": "-85.18496000" + }, + { + "id": "125542", + "name": "Russellville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.50787000", + "longitude": "-87.72864000" + }, + { + "id": "125621", + "name": "Saint Clair County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.71570000", + "longitude": "-86.31469000" + }, + { + "id": "125721", + "name": "Saks", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.69871000", + "longitude": "-85.83969000" + }, + { + "id": "125781", + "name": "Samson", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.11295000", + "longitude": "-86.04605000" + }, + { + "id": "125934", + "name": "Saraland", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.82074000", + "longitude": "-88.07056000" + }, + { + "id": "125949", + "name": "Sardis City", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.17426000", + "longitude": "-86.12275000" + }, + { + "id": "125957", + "name": "Satsuma", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.85324000", + "longitude": "-88.05611000" + }, + { + "id": "126061", + "name": "Scottsboro", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.67231000", + "longitude": "-86.03415000" + }, + { + "id": "126138", + "name": "Selma", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.40736000", + "longitude": "-87.02110000" + }, + { + "id": "126143", + "name": "Selmont-West Selmont", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.37843000", + "longitude": "-87.00740000" + }, + { + "id": "126151", + "name": "Semmes", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.77824000", + "longitude": "-88.25917000" + }, + { + "id": "126259", + "name": "Sheffield", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.76509000", + "longitude": "-87.69864000" + }, + { + "id": "126267", + "name": "Shelby", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.11040000", + "longitude": "-86.58415000" + }, + { + "id": "126272", + "name": "Shelby County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.26428000", + "longitude": "-86.66065000" + }, + { + "id": "126363", + "name": "Shoal Creek", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.43076000", + "longitude": "-86.61092000" + }, + { + "id": "126506", + "name": "Slocomb", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.10823000", + "longitude": "-85.59438000" + }, + { + "id": "126523", + "name": "Smiths Station", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.54014000", + "longitude": "-85.09855000" + }, + { + "id": "126532", + "name": "Smoke Rise", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.89177000", + "longitude": "-86.82027000" + }, + { + "id": "126786", + "name": "Southside", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.92454000", + "longitude": "-86.02247000" + }, + { + "id": "126799", + "name": "Spanish Fort", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.67491000", + "longitude": "-87.91527000" + }, + { + "id": "126914", + "name": "Springville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.77505000", + "longitude": "-86.47191000" + }, + { + "id": "127007", + "name": "Steele", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.93982000", + "longitude": "-86.20164000" + }, + { + "id": "127044", + "name": "Stevenson", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.86869000", + "longitude": "-85.83942000" + }, + { + "id": "127054", + "name": "Stewartville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.07929000", + "longitude": "-86.24442000" + }, + { + "id": "127180", + "name": "Sulligent", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.90177000", + "longitude": "-88.13448000" + }, + { + "id": "127200", + "name": "Sumiton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.75566000", + "longitude": "-87.05000000" + }, + { + "id": "127201", + "name": "Summerdale", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.48770000", + "longitude": "-87.69971000" + }, + { + "id": "127228", + "name": "Sumter County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.59101000", + "longitude": "-88.19879000" + }, + { + "id": "127354", + "name": "Sylacauga", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.17317000", + "longitude": "-86.25164000" + }, + { + "id": "127358", + "name": "Sylvan Springs", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.51566000", + "longitude": "-87.01499000" + }, + { + "id": "127359", + "name": "Sylvania", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.56231000", + "longitude": "-85.81247000" + }, + { + "id": "127389", + "name": "Talladega", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.43594000", + "longitude": "-86.10580000" + }, + { + "id": "127390", + "name": "Talladega County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.38006000", + "longitude": "-86.16591000" + }, + { + "id": "127394", + "name": "Tallapoosa County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.86240000", + "longitude": "-85.79750000" + }, + { + "id": "127395", + "name": "Tallassee", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.53597000", + "longitude": "-85.89329000" + }, + { + "id": "127434", + "name": "Tarrant", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.58344000", + "longitude": "-86.77277000" + }, + { + "id": "127445", + "name": "Taylor", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.16490000", + "longitude": "-85.46827000" + }, + { + "id": "127568", + "name": "Theodore", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.54769000", + "longitude": "-88.17528000" + }, + { + "id": "127587", + "name": "Thomasville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.91349000", + "longitude": "-87.73584000" + }, + { + "id": "127608", + "name": "Thorsby", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.91568000", + "longitude": "-86.71582000" + }, + { + "id": "127651", + "name": "Tillmans Corner", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "30.59019000", + "longitude": "-88.17084000" + }, + { + "id": "127757", + "name": "Town Creek", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.68120000", + "longitude": "-87.40613000" + }, + { + "id": "127825", + "name": "Trinity", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.60676000", + "longitude": "-87.08835000" + }, + { + "id": "127841", + "name": "Troy", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.80877000", + "longitude": "-85.96995000" + }, + { + "id": "127860", + "name": "Trussville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.61983000", + "longitude": "-86.60888000" + }, + { + "id": "127909", + "name": "Tuscaloosa", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.20984000", + "longitude": "-87.56917000" + }, + { + "id": "127910", + "name": "Tuscaloosa County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.28955000", + "longitude": "-87.52503000" + }, + { + "id": "127914", + "name": "Tuscumbia", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.73120000", + "longitude": "-87.70253000" + }, + { + "id": "127916", + "name": "Tuskegee", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.42415000", + "longitude": "-85.69096000" + }, + { + "id": "127968", + "name": "Underwood-Petersville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.87695000", + "longitude": "-87.69717000" + }, + { + "id": "128011", + "name": "Union Springs", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.14432000", + "longitude": "-85.71495000" + }, + { + "id": "128015", + "name": "Uniontown", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.44958000", + "longitude": "-87.51417000" + }, + { + "id": "128097", + "name": "Valley", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.81874000", + "longitude": "-85.17939000" + }, + { + "id": "128110", + "name": "Valley Grande", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.50902000", + "longitude": "-86.98749000" + }, + { + "id": "128140", + "name": "Vance", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.17428000", + "longitude": "-87.23361000" + }, + { + "id": "128153", + "name": "Vandiver", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.47066000", + "longitude": "-86.51332000" + }, + { + "id": "128188", + "name": "Vernon", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.75705000", + "longitude": "-88.10892000" + }, + { + "id": "128212", + "name": "Vestavia Hills", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.44872000", + "longitude": "-86.78777000" + }, + { + "id": "128264", + "name": "Vincent", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.38455000", + "longitude": "-86.41192000" + }, + { + "id": "128386", + "name": "Walker County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.80333000", + "longitude": "-87.29736000" + }, + { + "id": "128513", + "name": "Warrior", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.81427000", + "longitude": "-86.80944000" + }, + { + "id": "128552", + "name": "Washington County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.40760000", + "longitude": "-88.20788000" + }, + { + "id": "128721", + "name": "Weaver", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.75205000", + "longitude": "-85.81135000" + }, + { + "id": "128724", + "name": "Webb", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.26045000", + "longitude": "-85.27327000" + }, + { + "id": "128750", + "name": "Wedowee", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.30900000", + "longitude": "-85.48467000" + }, + { + "id": "128827", + "name": "West Blocton", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.11817000", + "longitude": "-87.12500000" + }, + { + "id": "128864", + "name": "West End-Cobb Town", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.65250000", + "longitude": "-85.87420000" + }, + { + "id": "129067", + "name": "Westover", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.34955000", + "longitude": "-86.53582000" + }, + { + "id": "129092", + "name": "Wetumpka", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.54374000", + "longitude": "-86.21191000" + }, + { + "id": "129180", + "name": "Whitesboro", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.16343000", + "longitude": "-86.06942000" + }, + { + "id": "129228", + "name": "Wilcox County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "31.98924000", + "longitude": "-87.30820000" + }, + { + "id": "129340", + "name": "Wilsonville", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.23428000", + "longitude": "-86.48359000" + }, + { + "id": "129392", + "name": "Winfield", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.92899000", + "longitude": "-87.81725000" + }, + { + "id": "129434", + "name": "Winston County", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "34.14923000", + "longitude": "-87.37368000" + }, + { + "id": "129560", + "name": "Woodstock", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "33.20678000", + "longitude": "-87.15000000" + }, + { + "id": "129690", + "name": "York", + "state_id": 1456, + "state_code": "AL", + "country_id": 233, + "country_code": "US", + "latitude": "32.48625000", + "longitude": "-88.29642000" + }, + { + "id": "111081", + "name": "Akutan", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "54.13350000", + "longitude": "-165.77686000" + }, + { + "id": "111143", + "name": "Aleutians East Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "54.85000000", + "longitude": "-163.41667000" + }, + { + "id": "111144", + "name": "Aleutians West Census Area", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "52.16298000", + "longitude": "-174.28505000" + }, + { + "id": "111303", + "name": "Anchor Point", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.77667000", + "longitude": "-151.83139000" + }, + { + "id": "111305", + "name": "Anchorage", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.21806000", + "longitude": "-149.90028000" + }, + { + "id": "111306", + "name": "Anchorage Municipality", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.16667000", + "longitude": "-149.25056000" + }, + { + "id": "111724", + "name": "Badger", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.80000000", + "longitude": "-147.53333000" + }, + { + "id": "111852", + "name": "Barrow", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "71.29058000", + "longitude": "-156.78872000" + }, + { + "id": "111976", + "name": "Bear Creek", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.16417000", + "longitude": "-149.39500000" + }, + { + "id": "112281", + "name": "Bethel", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.79222000", + "longitude": "-161.75583000" + }, + { + "id": "112284", + "name": "Bethel Census Area", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.75056000", + "longitude": "-160.50056000" + }, + { + "id": "112325", + "name": "Big Lake", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.52139000", + "longitude": "-149.95444000" + }, + { + "id": "112813", + "name": "Bristol Bay Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "58.75056000", + "longitude": "-156.83333000" + }, + { + "id": "113124", + "name": "Butte", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.54222000", + "longitude": "-149.03333000" + }, + { + "id": "113917", + "name": "Chevak", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.52778000", + "longitude": "-165.58639000" + }, + { + "id": "114045", + "name": "City and Borough of Wrangell", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "56.41331000", + "longitude": "-132.32009000" + }, + { + "id": "114374", + "name": "Cohoe", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.36861000", + "longitude": "-151.30639000" + }, + { + "id": "114412", + "name": "College", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.85694000", + "longitude": "-147.80278000" + }, + { + "id": "114640", + "name": "Cordova", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.54320000", + "longitude": "-145.75867000" + }, + { + "id": "114756", + "name": "Craig", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "55.47639000", + "longitude": "-133.14833000" + }, + { + "id": "115227", + "name": "Deltana", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "63.87217000", + "longitude": "-145.21773000" + }, + { + "id": "115235", + "name": "Denali Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "63.78889000", + "longitude": "-150.19167000" + }, + { + "id": "115315", + "name": "Diamond Ridge", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.67611000", + "longitude": "-151.55750000" + }, + { + "id": "115340", + "name": "Dillingham", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.03972000", + "longitude": "-158.45750000" + }, + { + "id": "115341", + "name": "Dillingham Census Area", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.76193000", + "longitude": "-158.31848000" + }, + { + "id": "115578", + "name": "Dutch Harbor", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "53.88980000", + "longitude": "-166.54220000" + }, + { + "id": "115612", + "name": "Eagle River", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.32139000", + "longitude": "-149.56778000" + }, + { + "id": "115909", + "name": "Eielson Air Force Base", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.66327000", + "longitude": "-147.05442000" + }, + { + "id": "116049", + "name": "Elmendorf Air Force Base", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.25703000", + "longitude": "-149.63139000" + }, + { + "id": "116206", + "name": "Ester", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.84722000", + "longitude": "-148.01444000" + }, + { + "id": "116290", + "name": "Fairbanks", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.83778000", + "longitude": "-147.71639000" + }, + { + "id": "116291", + "name": "Fairbanks North Star Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.83333000", + "longitude": "-146.41667000" + }, + { + "id": "116401", + "name": "Farm Loop", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.63891000", + "longitude": "-149.14215000" + }, + { + "id": "116404", + "name": "Farmers Loop", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.90822000", + "longitude": "-147.69866000" + }, + { + "id": "116531", + "name": "Fishhook", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.74402000", + "longitude": "-149.23613000" + }, + { + "id": "116959", + "name": "Fritz Creek", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.73611000", + "longitude": "-151.29528000" + }, + { + "id": "117124", + "name": "Gateway", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.57278000", + "longitude": "-149.24083000" + }, + { + "id": "117230", + "name": "Girdwood", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.94250000", + "longitude": "-149.16639000" + }, + { + "id": "117843", + "name": "Haines", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.23595000", + "longitude": "-135.44533000" + }, + { + "id": "117844", + "name": "Haines Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.25056000", + "longitude": "-135.50056000" + }, + { + "id": "118219", + "name": "Healy", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "63.85694000", + "longitude": "-148.96611000" + }, + { + "id": "118597", + "name": "Homer", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.64250000", + "longitude": "-151.54940000" + }, + { + "id": "118632", + "name": "Hoonah-Angoon Census Area", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "57.94807000", + "longitude": "-134.94153000" + }, + { + "id": "118634", + "name": "Hooper Bay", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.53111000", + "longitude": "-166.09667000" + }, + { + "id": "118701", + "name": "Houston", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.63028000", + "longitude": "-149.81806000" + }, + { + "id": "119338", + "name": "Juneau", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "58.30194000", + "longitude": "-134.41972000" + }, + { + "id": "119364", + "name": "Kalifornsky", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.41833000", + "longitude": "-151.29000000" + }, + { + "id": "119440", + "name": "Kenai", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.55444000", + "longitude": "-151.25833000" + }, + { + "id": "119441", + "name": "Kenai Peninsula Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.41667000", + "longitude": "-151.25056000" + }, + { + "id": "119523", + "name": "Ketchikan", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "55.34180000", + "longitude": "-131.64757000" + }, + { + "id": "119524", + "name": "Ketchikan Gateway Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "55.50056000", + "longitude": "-131.41667000" + }, + { + "id": "119583", + "name": "King Cove", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "55.06087000", + "longitude": "-162.31853000" + }, + { + "id": "119677", + "name": "Knik-Fairview", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.51262000", + "longitude": "-149.60012000" + }, + { + "id": "119698", + "name": "Kodiak", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "57.78852000", + "longitude": "-152.40533000" + }, + { + "id": "119699", + "name": "Kodiak Island Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "57.33333000", + "longitude": "-153.33333000" + }, + { + "id": "119700", + "name": "Kodiak Station", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "57.76587000", + "longitude": "-152.60004000" + }, + { + "id": "119712", + "name": "Kotzebue", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "66.89846000", + "longitude": "-162.59809000" + }, + { + "id": "120003", + "name": "Lake and Peninsula Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "57.00056000", + "longitude": "-158.00056000" + }, + { + "id": "120024", + "name": "Lakes", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.60713000", + "longitude": "-149.30861000" + }, + { + "id": "120256", + "name": "Lazy Mountain", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.62611000", + "longitude": "-148.94556000" + }, + { + "id": "121399", + "name": "Matanuska-Susitna Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "62.50056000", + "longitude": "-150.00556000" + }, + { + "id": "121561", + "name": "Meadow Lakes", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.62472000", + "longitude": "-149.60111000" + }, + { + "id": "121735", + "name": "Metlakatla", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "55.12848000", + "longitude": "-131.57519000" + }, + { + "id": "122898", + "name": "Nikiski", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.69028000", + "longitude": "-151.28889000" + }, + { + "id": "122934", + "name": "Nome", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.50111000", + "longitude": "-165.40639000" + }, + { + "id": "122935", + "name": "Nome Census Area", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.83333000", + "longitude": "-163.75056000" + }, + { + "id": "123084", + "name": "North Pole", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.75111000", + "longitude": "-147.34944000" + }, + { + "id": "123107", + "name": "North Slope Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "69.25056000", + "longitude": "-152.00056000" + }, + { + "id": "123173", + "name": "Northwest Arctic Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "66.83333000", + "longitude": "-161.00056000" + }, + { + "id": "123760", + "name": "Palmer", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.59941000", + "longitude": "-149.11456000" + }, + { + "id": "124108", + "name": "Petersburg", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "56.81250000", + "longitude": "-132.95556000" + }, + { + "id": "124110", + "name": "Petersburg Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "56.76529000", + "longitude": "-133.19313000" + }, + { + "id": "124724", + "name": "Prudhoe Bay", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "70.25528000", + "longitude": "-148.33722000" + }, + { + "id": "125130", + "name": "Ridgeway", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.53194000", + "longitude": "-151.08528000" + }, + { + "id": "125724", + "name": "Salcha", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "64.52399000", + "longitude": "-146.90210000" + }, + { + "id": "125860", + "name": "Sand Point", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "55.33655000", + "longitude": "-160.49880000" + }, + { + "id": "126187", + "name": "Seward", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.10426000", + "longitude": "-149.44350000" + }, + { + "id": "126470", + "name": "Sitka", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "57.05315000", + "longitude": "-135.33088000" + }, + { + "id": "126471", + "name": "Sitka City and Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "57.08255000", + "longitude": "-135.26917000" + }, + { + "id": "126475", + "name": "Skagway Municipality", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.46852000", + "longitude": "-135.30596000" + }, + { + "id": "126567", + "name": "Soldotna", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.48778000", + "longitude": "-151.05833000" + }, + { + "id": "126766", + "name": "Southeast Fairbanks Census Area", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "63.75056000", + "longitude": "-143.25056000" + }, + { + "id": "127031", + "name": "Sterling", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "60.53722000", + "longitude": "-150.76472000" + }, + { + "id": "127316", + "name": "Sutton-Alpine", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.77789000", + "longitude": "-148.76450000" + }, + { + "id": "127409", + "name": "Tanaina", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.62694000", + "longitude": "-149.42806000" + }, + { + "id": "127697", + "name": "Tok", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "63.33667000", + "longitude": "-142.98556000" + }, + { + "id": "127966", + "name": "Unalaska", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "53.87413000", + "longitude": "-166.53408000" + }, + { + "id": "128083", + "name": "Valdez", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.13083000", + "longitude": "-146.34833000" + }, + { + "id": "128084", + "name": "Valdez-Cordova Census Area", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.50056000", + "longitude": "-144.50056000" + }, + { + "id": "128593", + "name": "Wasilla", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.58090000", + "longitude": "-149.44150000" + }, + { + "id": "129304", + "name": "Willow", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "61.74722000", + "longitude": "-150.03750000" + }, + { + "id": "129601", + "name": "Wrangell", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "56.47083000", + "longitude": "-132.37667000" + }, + { + "id": "129646", + "name": "Y", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "62.16129000", + "longitude": "-149.85075000" + }, + { + "id": "129652", + "name": "Yakutat City and Borough", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "59.66667000", + "longitude": "-139.13333000" + }, + { + "id": "129731", + "name": "Yukon-Koyukuk Census Area", + "state_id": 1400, + "state_code": "AK", + "country_id": 233, + "country_code": "US", + "latitude": "65.70000000", + "longitude": "-152.71667000" + }, + { + "id": "111065", + "name": "Ahwatukee Foothills", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.34171000", + "longitude": "-111.98403000" + }, + { + "id": "111075", + "name": "Ajo", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.37172000", + "longitude": "-112.86071000" + }, + { + "id": "111170", + "name": "Alhambra", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.49838000", + "longitude": "-112.13432000" + }, + { + "id": "111367", + "name": "Anthem", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.86726000", + "longitude": "-112.14682000" + }, + { + "id": "111380", + "name": "Apache County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.39560000", + "longitude": "-109.48884000" + }, + { + "id": "111381", + "name": "Apache Junction", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.41505000", + "longitude": "-111.54958000" + }, + { + "id": "111453", + "name": "Arivaca Junction", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.72731000", + "longitude": "-111.06120000" + }, + { + "id": "111454", + "name": "Arizona City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.75589000", + "longitude": "-111.67096000" + }, + { + "id": "111679", + "name": "Avenue B and C", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.71904000", + "longitude": "-114.66005000" + }, + { + "id": "111701", + "name": "Avondale", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.43560000", + "longitude": "-112.34960000" + }, + { + "id": "111705", + "name": "Avra Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.43785000", + "longitude": "-111.31539000" + }, + { + "id": "111727", + "name": "Bagdad", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.58113000", + "longitude": "-113.20464000" + }, + { + "id": "112002", + "name": "Beaver Dam", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.89942000", + "longitude": "-113.93274000" + }, + { + "id": "112184", + "name": "Benson", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.96786000", + "longitude": "-110.29452000" + }, + { + "id": "112327", + "name": "Big Park", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.78030000", + "longitude": "-111.76265000" + }, + { + "id": "112360", + "name": "Bisbee", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.44815000", + "longitude": "-109.92841000" + }, + { + "id": "112371", + "name": "Black Canyon City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.07087000", + "longitude": "-112.15071000" + }, + { + "id": "112395", + "name": "Blackwater", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.03117000", + "longitude": "-111.58263000" + }, + { + "id": "112977", + "name": "Buckeye", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.37032000", + "longitude": "-112.58378000" + }, + { + "id": "113031", + "name": "Bullhead City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.14778000", + "longitude": "-114.56830000" + }, + { + "id": "113136", + "name": "Bylas", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.13428000", + "longitude": "-110.12004000" + }, + { + "id": "113158", + "name": "Cactus Flat", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.75840000", + "longitude": "-109.71619000" + }, + { + "id": "113295", + "name": "Camp Verde", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.56364000", + "longitude": "-111.85432000" + }, + { + "id": "113357", + "name": "Canyon Day", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.78477000", + "longitude": "-110.02649000" + }, + { + "id": "113392", + "name": "Carefree", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.82226000", + "longitude": "-111.91820000" + }, + { + "id": "113508", + "name": "Casa Blanca", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.12033000", + "longitude": "-111.88819000" + }, + { + "id": "113510", + "name": "Casa Grande", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.87950000", + "longitude": "-111.75735000" + }, + { + "id": "113512", + "name": "Casas Adobes", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.32341000", + "longitude": "-110.99510000" + }, + { + "id": "113563", + "name": "Catalina", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.50556000", + "longitude": "-110.92111000" + }, + { + "id": "113564", + "name": "Catalina Foothills", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.29785000", + "longitude": "-110.91870000" + }, + { + "id": "113585", + "name": "Cave Creek", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.83333000", + "longitude": "-111.95083000" + }, + { + "id": "113635", + "name": "Centennial Park", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.95381000", + "longitude": "-112.98132000" + }, + { + "id": "113672", + "name": "Central City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.44001000", + "longitude": "-112.05805000" + }, + { + "id": "113676", + "name": "Central Heights-Midland City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.40372000", + "longitude": "-110.81541000" + }, + { + "id": "113731", + "name": "Chandler", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.30616000", + "longitude": "-111.84125000" + }, + { + "id": "113967", + "name": "Chinle", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.15445000", + "longitude": "-109.55261000" + }, + { + "id": "113970", + "name": "Chino Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.75752000", + "longitude": "-112.45378000" + }, + { + "id": "114016", + "name": "Cibecue", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.04477000", + "longitude": "-110.48539000" + }, + { + "id": "114021", + "name": "Cienega Springs", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.18863000", + "longitude": "-114.22467000" + }, + { + "id": "114040", + "name": "Citrus Park", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.54865000", + "longitude": "-112.44433000" + }, + { + "id": "114133", + "name": "Clarkdale", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.77113000", + "longitude": "-112.05794000" + }, + { + "id": "114193", + "name": "Claypool", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.41117000", + "longitude": "-110.84261000" + }, + { + "id": "114260", + "name": "Clifton", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.05090000", + "longitude": "-109.29618000" + }, + { + "id": "114349", + "name": "Cochise County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.87957000", + "longitude": "-109.75114000" + }, + { + "id": "114360", + "name": "Coconino County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.83873000", + "longitude": "-111.77050000" + }, + { + "id": "114454", + "name": "Colorado City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.99026000", + "longitude": "-112.97577000" + }, + { + "id": "114558", + "name": "Congress", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.16253000", + "longitude": "-112.85074000" + }, + { + "id": "114598", + "name": "Coolidge", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.97784000", + "longitude": "-111.51762000" + }, + { + "id": "114637", + "name": "Cordes Lakes", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.30781000", + "longitude": "-112.10349000" + }, + { + "id": "114657", + "name": "Cornville", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.71780000", + "longitude": "-111.92154000" + }, + { + "id": "114663", + "name": "Corona de Tucson", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.96536000", + "longitude": "-110.77564000" + }, + { + "id": "114701", + "name": "Cottonwood", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.73919000", + "longitude": "-112.00988000" + }, + { + "id": "115180", + "name": "Deer Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.68393000", + "longitude": "-112.13488000" + }, + { + "id": "115281", + "name": "Desert Hills", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.55390000", + "longitude": "-114.37246000" + }, + { + "id": "115305", + "name": "Dewey-Humboldt", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.53000000", + "longitude": "-112.24222000" + }, + { + "id": "115338", + "name": "Dilkon", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.38529000", + "longitude": "-110.32068000" + }, + { + "id": "115386", + "name": "Dolan Springs", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.59194000", + "longitude": "-114.27329000" + }, + { + "id": "115402", + "name": "Donovan Estates", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.70935000", + "longitude": "-114.67822000" + }, + { + "id": "115423", + "name": "Douglas", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.34455000", + "longitude": "-109.54534000" + }, + { + "id": "115476", + "name": "Drexel Heights", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.14119000", + "longitude": "-111.02843000" + }, + { + "id": "115594", + "name": "Eagar", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.11124000", + "longitude": "-109.29238000" + }, + { + "id": "115753", + "name": "East Sahuarita", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.94286000", + "longitude": "-110.92842000" + }, + { + "id": "115907", + "name": "Ehrenberg", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.60419000", + "longitude": "-114.52523000" + }, + { + "id": "115927", + "name": "El Mirage", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.61309000", + "longitude": "-112.32460000" + }, + { + "id": "116065", + "name": "Eloy", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.75590000", + "longitude": "-111.55484000" + }, + { + "id": "116116", + "name": "Encanto", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.47937000", + "longitude": "-112.07823000" + }, + { + "id": "116523", + "name": "First Mesa", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.83667000", + "longitude": "-110.38152000" + }, + { + "id": "116546", + "name": "Flagstaff", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.19807000", + "longitude": "-111.65127000" + }, + { + "id": "116583", + "name": "Florence", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.03145000", + "longitude": "-111.38734000" + }, + { + "id": "116603", + "name": "Flowing Wells", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.29396000", + "longitude": "-111.00982000" + }, + { + "id": "116704", + "name": "Fort Defiance", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.74446000", + "longitude": "-109.07648000" + }, + { + "id": "116768", + "name": "Fortuna Foothills", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.65783000", + "longitude": "-114.41189000" + }, + { + "id": "116782", + "name": "Fountain Hills", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.61171000", + "longitude": "-111.71736000" + }, + { + "id": "116898", + "name": "Fredonia", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.94554000", + "longitude": "-112.52659000" + }, + { + "id": "117048", + "name": "Ganado", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.71140000", + "longitude": "-109.54205000" + }, + { + "id": "117200", + "name": "Gila Bend", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.94782000", + "longitude": "-112.71683000" + }, + { + "id": "117201", + "name": "Gila County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.79975000", + "longitude": "-110.81174000" + }, + { + "id": "117204", + "name": "Gilbert", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.35283000", + "longitude": "-111.78903000" + }, + { + "id": "117285", + "name": "Glendale", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.53865000", + "longitude": "-112.18599000" + }, + { + "id": "117321", + "name": "Globe", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.39422000", + "longitude": "-110.78650000" + }, + { + "id": "117341", + "name": "Gold Camp", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.29367000", + "longitude": "-111.30429000" + }, + { + "id": "117342", + "name": "Gold Canyon", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.37145000", + "longitude": "-111.43691000" + }, + { + "id": "117353", + "name": "Golden Shores", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.78188000", + "longitude": "-114.47775000" + }, + { + "id": "117356", + "name": "Golden Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.22333000", + "longitude": "-114.22301000" + }, + { + "id": "117393", + "name": "Goodyear", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.43532000", + "longitude": "-112.35821000" + }, + { + "id": "117439", + "name": "Graham County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.93272000", + "longitude": "-109.88744000" + }, + { + "id": "117452", + "name": "Grand Canyon", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.05443000", + "longitude": "-112.13934000" + }, + { + "id": "117453", + "name": "Grand Canyon Village", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.04637000", + "longitude": "-112.15406000" + }, + { + "id": "117610", + "name": "Green Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.85425000", + "longitude": "-110.99370000" + }, + { + "id": "117659", + "name": "Greenlee County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.21536000", + "longitude": "-109.24010000" + }, + { + "id": "117776", + "name": "Guadalupe", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.37088000", + "longitude": "-111.96292000" + }, + { + "id": "118231", + "name": "Heber-Overgaard", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.41414000", + "longitude": "-110.56956000" + }, + { + "id": "118519", + "name": "Holbrook", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.90225000", + "longitude": "-110.15818000" + }, + { + "id": "118688", + "name": "Houck", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.28308000", + "longitude": "-109.20704000" + }, + { + "id": "118729", + "name": "Huachuca City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.62787000", + "longitude": "-110.33397000" + }, + { + "id": "119319", + "name": "Joseph City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.95586000", + "longitude": "-110.33401000" + }, + { + "id": "119349", + "name": "Kachina Village", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.09696000", + "longitude": "-111.69266000" + }, + { + "id": "119356", + "name": "Kaibito", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.59722000", + "longitude": "-111.07431000" + }, + { + "id": "119402", + "name": "Kayenta", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.72778000", + "longitude": "-110.25458000" + }, + { + "id": "119413", + "name": "Kearny", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.05701000", + "longitude": "-110.91067000" + }, + { + "id": "119595", + "name": "Kingman", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.18944000", + "longitude": "-114.05301000" + }, + { + "id": "119771", + "name": "La Paz County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.72926000", + "longitude": "-113.98134000" + }, + { + "id": "119918", + "name": "Lake Havasu City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.48390000", + "longitude": "-114.32245000" + }, + { + "id": "119946", + "name": "Lake Montezuma", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.63224000", + "longitude": "-111.77793000" + }, + { + "id": "120007", + "name": "Lake of the Woods", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.16393000", + "longitude": "-109.98955000" + }, + { + "id": "120217", + "name": "Laveen", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.36282000", + "longitude": "-112.16932000" + }, + { + "id": "120266", + "name": "LeChee", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.86211000", + "longitude": "-111.44063000" + }, + { + "id": "120565", + "name": "Linden", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.28504000", + "longitude": "-110.15706000" + }, + { + "id": "120609", + "name": "Litchfield Park", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.49337000", + "longitude": "-112.35794000" + }, + { + "id": "120874", + "name": "Lukachukai", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.41695000", + "longitude": "-109.22871000" + }, + { + "id": "121076", + "name": "Mammoth", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.72257000", + "longitude": "-110.64065000" + }, + { + "id": "121164", + "name": "Many Farms", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.35278000", + "longitude": "-109.61789000" + }, + { + "id": "121183", + "name": "Marana", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.43674000", + "longitude": "-111.22538000" + }, + { + "id": "121211", + "name": "Maricopa", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.05811000", + "longitude": "-112.04764000" + }, + { + "id": "121213", + "name": "Maricopa County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.34883000", + "longitude": "-112.49123000" + }, + { + "id": "121362", + "name": "Maryvale", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.50199000", + "longitude": "-112.17765000" + }, + { + "id": "121433", + "name": "Mayer", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.39781000", + "longitude": "-112.23627000" + }, + { + "id": "121573", + "name": "Meadview", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.00221000", + "longitude": "-114.06829000" + }, + { + "id": "121720", + "name": "Mesa", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.42227000", + "longitude": "-111.82264000" + }, + { + "id": "121723", + "name": "Mescal", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.99008000", + "longitude": "-110.43535000" + }, + { + "id": "121748", + "name": "Miami", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.39922000", + "longitude": "-110.86872000" + }, + { + "id": "122019", + "name": "Mohave County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.70404000", + "longitude": "-113.75791000" + }, + { + "id": "122020", + "name": "Mohave Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.93306000", + "longitude": "-114.58885000" + }, + { + "id": "122230", + "name": "Morenci", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.07867000", + "longitude": "-109.36535000" + }, + { + "id": "122436", + "name": "Mountainaire", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.08529000", + "longitude": "-111.66599000" + }, + { + "id": "122531", + "name": "Naco", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.33538000", + "longitude": "-109.94813000" + }, + { + "id": "122598", + "name": "Navajo County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.39963000", + "longitude": "-110.32140000" + }, + { + "id": "122736", + "name": "New Kingman-Butler", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.26504000", + "longitude": "-114.03226000" + }, + { + "id": "122771", + "name": "New River", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.91587000", + "longitude": "-112.13599000" + }, + { + "id": "122927", + "name": "Nogales", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.34038000", + "longitude": "-110.93425000" + }, + { + "id": "123027", + "name": "North Fork", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.00167000", + "longitude": "-109.96355000" + }, + { + "id": "123502", + "name": "Oracle", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.61091000", + "longitude": "-110.77093000" + }, + { + "id": "123571", + "name": "Oro Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.39091000", + "longitude": "-110.96649000" + }, + { + "id": "123717", + "name": "Page", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.91472000", + "longitude": "-111.45583000" + }, + { + "id": "123822", + "name": "Paradise Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.53115000", + "longitude": "-111.94265000" + }, + { + "id": "123861", + "name": "Parker", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.15002000", + "longitude": "-114.28912000" + }, + { + "id": "123873", + "name": "Parks", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.26057000", + "longitude": "-111.94877000" + }, + { + "id": "123921", + "name": "Paulden", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.88558000", + "longitude": "-112.46823000" + }, + { + "id": "123949", + "name": "Payson", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.23087000", + "longitude": "-111.32514000" + }, + { + "id": "123958", + "name": "Peach Springs", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.52916000", + "longitude": "-113.42549000" + }, + { + "id": "124047", + "name": "Peoria", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.58060000", + "longitude": "-112.23738000" + }, + { + "id": "124060", + "name": "Peridot", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.31034000", + "longitude": "-110.45538000" + }, + { + "id": "124148", + "name": "Phoenix", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.44838000", + "longitude": "-112.07404000" + }, + { + "id": "124163", + "name": "Picture Rocks", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.34591000", + "longitude": "-111.24621000" + }, + { + "id": "124203", + "name": "Pima", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.89656000", + "longitude": "-109.82835000" + }, + { + "id": "124204", + "name": "Pima County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.09738000", + "longitude": "-111.78995000" + }, + { + "id": "124206", + "name": "Pinal County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.90431000", + "longitude": "-111.34471000" + }, + { + "id": "124212", + "name": "Pine", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.38447000", + "longitude": "-111.45514000" + }, + { + "id": "124257", + "name": "Pinetop-Lakeside", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.14254000", + "longitude": "-109.96038000" + }, + { + "id": "124279", + "name": "Pirtleville", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.35716000", + "longitude": "-109.56352000" + }, + { + "id": "124643", + "name": "Prescott", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.54002000", + "longitude": "-112.46850000" + }, + { + "id": "124645", + "name": "Prescott Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.61002000", + "longitude": "-112.31572000" + }, + { + "id": "124783", + "name": "Quartzsite", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.66391000", + "longitude": "-114.22995000" + }, + { + "id": "124788", + "name": "Queen Creek", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.24866000", + "longitude": "-111.63430000" + }, + { + "id": "125159", + "name": "Rio Rico", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.47148000", + "longitude": "-110.97648000" + }, + { + "id": "125160", + "name": "Rio Verde", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.72254000", + "longitude": "-111.67569000" + }, + { + "id": "125573", + "name": "Sacaton", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.07672000", + "longitude": "-111.73930000" + }, + { + "id": "125580", + "name": "Saddle Brooke", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.53472000", + "longitude": "-110.87361000" + }, + { + "id": "125583", + "name": "Safford", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.83395000", + "longitude": "-109.70758000" + }, + { + "id": "125593", + "name": "Sahuarita", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.95758000", + "longitude": "-110.95565000" + }, + { + "id": "125630", + "name": "Saint David", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.90425000", + "longitude": "-110.21424000" + }, + { + "id": "125666", + "name": "Saint Johns", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.50587000", + "longitude": "-109.36093000" + }, + { + "id": "125699", + "name": "Saint Michaels", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.64474000", + "longitude": "-109.09565000" + }, + { + "id": "125766", + "name": "Salome", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.78114000", + "longitude": "-113.61465000" + }, + { + "id": "125797", + "name": "San Carlos", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.34562000", + "longitude": "-110.45504000" + }, + { + "id": "125827", + "name": "San Luis", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.48700000", + "longitude": "-114.78218000" + }, + { + "id": "125831", + "name": "San Manuel", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.59979000", + "longitude": "-110.63093000" + }, + { + "id": "125850", + "name": "San Tan Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.19110000", + "longitude": "-111.52800000" + }, + { + "id": "125911", + "name": "Santa Cruz County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.52600000", + "longitude": "-110.84657000" + }, + { + "id": "125999", + "name": "Scenic", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.79359000", + "longitude": "-114.01275000" + }, + { + "id": "126063", + "name": "Scottsdale", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.50921000", + "longitude": "-111.89903000" + }, + { + "id": "126121", + "name": "Sedona", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.86974000", + "longitude": "-111.76099000" + }, + { + "id": "126137", + "name": "Sells", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.91202000", + "longitude": "-111.88123000" + }, + { + "id": "126381", + "name": "Show Low", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.25421000", + "longitude": "-110.02983000" + }, + { + "id": "126406", + "name": "Sierra Vista", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.55454000", + "longitude": "-110.30369000" + }, + { + "id": "126407", + "name": "Sierra Vista Southeast", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.45385000", + "longitude": "-110.21637000" + }, + { + "id": "126472", + "name": "Six Shooter Canyon", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.36678000", + "longitude": "-110.77460000" + }, + { + "id": "126547", + "name": "Snowflake", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.51337000", + "longitude": "-110.07845000" + }, + { + "id": "126591", + "name": "Somerton", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.59644000", + "longitude": "-114.70968000" + }, + { + "id": "126737", + "name": "South Tucson", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.19952000", + "longitude": "-110.96842000" + }, + { + "id": "126878", + "name": "Spring Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.34503000", + "longitude": "-112.15905000" + }, + { + "id": "126888", + "name": "Springerville", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.13355000", + "longitude": "-109.28834000" + }, + { + "id": "126981", + "name": "Star Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.25504000", + "longitude": "-111.25847000" + }, + { + "id": "127214", + "name": "Summit", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.06702000", + "longitude": "-110.95148000" + }, + { + "id": "127232", + "name": "Sun City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.59754000", + "longitude": "-112.27182000" + }, + { + "id": "127235", + "name": "Sun City West", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.66198000", + "longitude": "-112.34127000" + }, + { + "id": "127236", + "name": "Sun Lakes", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.21116000", + "longitude": "-111.87542000" + }, + { + "id": "127240", + "name": "Sun Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.25420000", + "longitude": "-111.26125000" + }, + { + "id": "127280", + "name": "Superior", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.29395000", + "longitude": "-111.09623000" + }, + { + "id": "127290", + "name": "Surprise", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.63059000", + "longitude": "-112.33322000" + }, + { + "id": "127346", + "name": "Swift Trail Junction", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.72979000", + "longitude": "-109.71397000" + }, + { + "id": "127420", + "name": "Tanque Verde", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.25174000", + "longitude": "-110.73731000" + }, + { + "id": "127450", + "name": "Taylor", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.46504000", + "longitude": "-110.09123000" + }, + { + "id": "127494", + "name": "Tempe", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.41477000", + "longitude": "-111.90931000" + }, + { + "id": "127495", + "name": "Tempe Junction", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.41421000", + "longitude": "-111.94348000" + }, + { + "id": "127550", + "name": "Thatcher", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.84923000", + "longitude": "-109.75925000" + }, + { + "id": "127616", + "name": "Three Points", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.07675000", + "longitude": "-111.31371000" + }, + { + "id": "127703", + "name": "Tolleson", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.45004000", + "longitude": "-112.25932000" + }, + { + "id": "127711", + "name": "Tombstone", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.71287000", + "longitude": "-110.06758000" + }, + { + "id": "127724", + "name": "Tonto Basin", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.83171000", + "longitude": "-111.29457000" + }, + { + "id": "127746", + "name": "Tortolita", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.41035000", + "longitude": "-111.01732000" + }, + { + "id": "127864", + "name": "Tsaile", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.30330000", + "longitude": "-109.21566000" + }, + { + "id": "127866", + "name": "Tuba City", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "36.13499000", + "longitude": "-111.23986000" + }, + { + "id": "127867", + "name": "Tubac", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.61259000", + "longitude": "-111.04592000" + }, + { + "id": "127874", + "name": "Tucson", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.22174000", + "longitude": "-110.92648000" + }, + { + "id": "127875", + "name": "Tucson Estates", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.18758000", + "longitude": "-111.09093000" + }, + { + "id": "128075", + "name": "Vail", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.04786000", + "longitude": "-110.71203000" + }, + { + "id": "128090", + "name": "Valencia West", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.13238000", + "longitude": "-111.11414000" + }, + { + "id": "128095", + "name": "Valle Vista", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.41088000", + "longitude": "-113.86271000" + }, + { + "id": "128179", + "name": "Verde Village", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.71050000", + "longitude": "-112.01152000" + }, + { + "id": "128253", + "name": "Village of Oak Creek (Big Park)", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.78090000", + "longitude": "-111.76227000" + }, + { + "id": "128795", + "name": "Wellton", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.67283000", + "longitude": "-114.14688000" + }, + { + "id": "128978", + "name": "West Sedona", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.86724000", + "longitude": "-111.80543000" + }, + { + "id": "129122", + "name": "Whetstone", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "31.95731000", + "longitude": "-110.34202000" + }, + { + "id": "129147", + "name": "White Mountain Lake", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.34865000", + "longitude": "-109.99789000" + }, + { + "id": "129179", + "name": "Whiteriver", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.83699000", + "longitude": "-109.96427000" + }, + { + "id": "129219", + "name": "Wickenburg", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.96864000", + "longitude": "-112.72962000" + }, + { + "id": "129259", + "name": "Willcox", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.25285000", + "longitude": "-109.83201000" + }, + { + "id": "129260", + "name": "Williams", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.24946000", + "longitude": "-112.19100000" + }, + { + "id": "129275", + "name": "Williamson", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.69002000", + "longitude": "-112.54101000" + }, + { + "id": "129312", + "name": "Willow Valley", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.91195000", + "longitude": "-114.60663000" + }, + { + "id": "129376", + "name": "Window Rock", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.68057000", + "longitude": "-109.05259000" + }, + { + "id": "129429", + "name": "Winslow", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "35.02419000", + "longitude": "-110.69736000" + }, + { + "id": "129672", + "name": "Yavapai County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "34.59988000", + "longitude": "-112.55387000" + }, + { + "id": "129721", + "name": "Youngtown", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "33.59393000", + "longitude": "-112.30294000" + }, + { + "id": "129733", + "name": "Yuma", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.72532000", + "longitude": "-114.62440000" + }, + { + "id": "129735", + "name": "Yuma County", + "state_id": 1434, + "state_code": "AZ", + "country_id": 233, + "country_code": "US", + "latitude": "32.76940000", + "longitude": "-113.90556000" + }, + { + "id": "111145", + "name": "Alexander", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.62954000", + "longitude": "-92.44127000" + }, + { + "id": "111206", + "name": "Alma", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.47787000", + "longitude": "-94.22188000" + }, + { + "id": "111455", + "name": "Arkadelphia", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.12093000", + "longitude": "-93.05378000" + }, + { + "id": "111456", + "name": "Arkansas City", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.60872000", + "longitude": "-91.20678000" + }, + { + "id": "111458", + "name": "Arkansas County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.29081000", + "longitude": "-91.37491000" + }, + { + "id": "111510", + "name": "Ash Flat", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.22396000", + "longitude": "-91.60848000" + }, + { + "id": "111518", + "name": "Ashdown", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.67429000", + "longitude": "-94.13131000" + }, + { + "id": "111545", + "name": "Ashley County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.19122000", + "longitude": "-91.76845000" + }, + { + "id": "111584", + "name": "Atkins", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.24647000", + "longitude": "-92.93656000" + }, + { + "id": "111645", + "name": "Augusta", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.28231000", + "longitude": "-91.36541000" + }, + { + "id": "111666", + "name": "Austin", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.99842000", + "longitude": "-91.98376000" + }, + { + "id": "111751", + "name": "Bald Knob", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.30981000", + "longitude": "-91.56791000" + }, + { + "id": "111824", + "name": "Barling", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.32565000", + "longitude": "-94.30160000" + }, + { + "id": "111892", + "name": "Batesville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.76980000", + "longitude": "-91.64097000" + }, + { + "id": "111917", + "name": "Baxter County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.28719000", + "longitude": "-92.33697000" + }, + { + "id": "111920", + "name": "Bay", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.74230000", + "longitude": "-90.56233000" + }, + { + "id": "112036", + "name": "Beebe", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.07064000", + "longitude": "-91.87959000" + }, + { + "id": "112071", + "name": "Bella Vista", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.48070000", + "longitude": "-94.27134000" + }, + { + "id": "112191", + "name": "Benton", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.56454000", + "longitude": "-92.58683000" + }, + { + "id": "112199", + "name": "Benton County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.33872000", + "longitude": "-94.25619000" + }, + { + "id": "112210", + "name": "Bentonville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.37285000", + "longitude": "-94.20882000" + }, + { + "id": "112254", + "name": "Berryville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.36479000", + "longitude": "-93.56797000" + }, + { + "id": "112285", + "name": "Bethel Heights", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.21424000", + "longitude": "-94.12937000" + }, + { + "id": "112486", + "name": "Blytheville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.92730000", + "longitude": "-89.91898000" + }, + { + "id": "112549", + "name": "Bono", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.90868000", + "longitude": "-90.80262000" + }, + { + "id": "112555", + "name": "Boone County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.30859000", + "longitude": "-93.09150000" + }, + { + "id": "112562", + "name": "Booneville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.14009000", + "longitude": "-93.92159000" + }, + { + "id": "112675", + "name": "Bradley County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.46642000", + "longitude": "-92.16240000" + }, + { + "id": "112799", + "name": "Brinkley", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.88787000", + "longitude": "-91.19457000" + }, + { + "id": "112864", + "name": "Brookland", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.90007000", + "longitude": "-90.58205000" + }, + { + "id": "112963", + "name": "Bryant", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.59593000", + "longitude": "-92.48905000" + }, + { + "id": "113028", + "name": "Bull Shoals", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.38396000", + "longitude": "-92.58155000" + }, + { + "id": "113154", + "name": "Cabot", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.97453000", + "longitude": "-92.01653000" + }, + { + "id": "113201", + "name": "Calhoun County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.55803000", + "longitude": "-92.50304000" + }, + { + "id": "113212", + "name": "Calico Rock", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.11951000", + "longitude": "-92.13599000" + }, + { + "id": "113260", + "name": "Camden", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.58456000", + "longitude": "-92.83433000" + }, + { + "id": "113380", + "name": "Caraway", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.75813000", + "longitude": "-90.32232000" + }, + { + "id": "113401", + "name": "Carlisle", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.78315000", + "longitude": "-91.74652000" + }, + { + "id": "113450", + "name": "Carroll County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.34102000", + "longitude": "-93.53818000" + }, + { + "id": "113583", + "name": "Cave City", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.94174000", + "longitude": "-91.54847000" + }, + { + "id": "113589", + "name": "Cave Springs", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.26341000", + "longitude": "-94.23187000" + }, + { + "id": "113628", + "name": "Cedarville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.56981000", + "longitude": "-94.36688000" + }, + { + "id": "113651", + "name": "Centerton", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.35980000", + "longitude": "-94.28521000" + }, + { + "id": "113761", + "name": "Charleston", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.29704000", + "longitude": "-94.03632000" + }, + { + "id": "113857", + "name": "Cherokee Village", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.29784000", + "longitude": "-91.51597000" + }, + { + "id": "113947", + "name": "Chicot County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.26725000", + "longitude": "-91.29397000" + }, + { + "id": "114110", + "name": "Clarendon", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.69315000", + "longitude": "-91.31374000" + }, + { + "id": "114121", + "name": "Clark County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.05096000", + "longitude": "-93.17637000" + }, + { + "id": "114152", + "name": "Clarksville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.47147000", + "longitude": "-93.46657000" + }, + { + "id": "114174", + "name": "Clay County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.36839000", + "longitude": "-90.41738000" + }, + { + "id": "114231", + "name": "Cleburne County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.53811000", + "longitude": "-92.02674000" + }, + { + "id": "114248", + "name": "Cleveland County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.89836000", + "longitude": "-92.18514000" + }, + { + "id": "114267", + "name": "Clinton", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.59147000", + "longitude": "-92.46044000" + }, + { + "id": "114331", + "name": "Coal Hill", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.43731000", + "longitude": "-93.67297000" + }, + { + "id": "114477", + "name": "Columbia County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.21429000", + "longitude": "-93.22731000" + }, + { + "id": "114581", + "name": "Conway", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.08870000", + "longitude": "-92.44210000" + }, + { + "id": "114587", + "name": "Conway County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.26221000", + "longitude": "-92.70132000" + }, + { + "id": "114651", + "name": "Corning", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.40784000", + "longitude": "-90.57983000" + }, + { + "id": "114759", + "name": "Craighead County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.83079000", + "longitude": "-90.63285000" + }, + { + "id": "114774", + "name": "Crawford County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.58883000", + "longitude": "-94.24312000" + }, + { + "id": "114825", + "name": "Crittenden County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.20794000", + "longitude": "-90.30886000" + }, + { + "id": "114848", + "name": "Cross County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.29573000", + "longitude": "-90.77123000" + }, + { + "id": "114854", + "name": "Crossett", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.12818000", + "longitude": "-91.96124000" + }, + { + "id": "114995", + "name": "Dallas County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.96983000", + "longitude": "-92.65444000" + }, + { + "id": "115031", + "name": "Danville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.05398000", + "longitude": "-93.39352000" + }, + { + "id": "115042", + "name": "Dardanelle", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.22314000", + "longitude": "-93.15795000" + }, + { + "id": "115113", + "name": "De Queen", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.03789000", + "longitude": "-94.34132000" + }, + { + "id": "115121", + "name": "De Witt", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.29288000", + "longitude": "-91.33790000" + }, + { + "id": "115150", + "name": "Decatur", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.33591000", + "longitude": "-94.46077000" + }, + { + "id": "115264", + "name": "Dermott", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.52539000", + "longitude": "-91.43595000" + }, + { + "id": "115270", + "name": "Des Arc", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.97704000", + "longitude": "-91.49513000" + }, + { + "id": "115285", + "name": "Desha County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.83333000", + "longitude": "-91.25395000" + }, + { + "id": "115318", + "name": "Diaz", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.63841000", + "longitude": "-91.26513000" + }, + { + "id": "115334", + "name": "Dierks", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.11928000", + "longitude": "-94.01658000" + }, + { + "id": "115444", + "name": "Dover", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.40147000", + "longitude": "-93.11434000" + }, + { + "id": "115474", + "name": "Drew County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.58945000", + "longitude": "-91.72002000" + }, + { + "id": "115514", + "name": "Dumas", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.88705000", + "longitude": "-91.49179000" + }, + { + "id": "115616", + "name": "Earle", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.27509000", + "longitude": "-90.46677000" + }, + { + "id": "115656", + "name": "East End", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.55065000", + "longitude": "-92.34099000" + }, + { + "id": "115919", + "name": "El Dorado", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.20763000", + "longitude": "-92.66627000" + }, + { + "id": "116005", + "name": "Elkins", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.00147000", + "longitude": "-94.00825000" + }, + { + "id": "116045", + "name": "Elm Springs", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.20619000", + "longitude": "-94.23437000" + }, + { + "id": "116128", + "name": "England", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.54426000", + "longitude": "-91.96903000" + }, + { + "id": "116222", + "name": "Eudora", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.10957000", + "longitude": "-91.26206000" + }, + { + "id": "116240", + "name": "Eureka Springs", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.40118000", + "longitude": "-93.73797000" + }, + { + "id": "116318", + "name": "Fairfield Bay", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.59424000", + "longitude": "-92.27793000" + }, + { + "id": "116412", + "name": "Farmington", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.04202000", + "longitude": "-94.24715000" + }, + { + "id": "116434", + "name": "Faulkner County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.14698000", + "longitude": "-92.33204000" + }, + { + "id": "116454", + "name": "Fayetteville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.06258000", + "longitude": "-94.15743000" + }, + { + "id": "116568", + "name": "Flippin", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.27896000", + "longitude": "-92.59711000" + }, + { + "id": "116642", + "name": "Fordyce", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.81372000", + "longitude": "-92.41293000" + }, + { + "id": "116679", + "name": "Forrest City", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.00815000", + "longitude": "-90.78983000" + }, + { + "id": "116750", + "name": "Fort Smith", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.38592000", + "longitude": "-94.39855000" + }, + { + "id": "116844", + "name": "Franklin County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.51235000", + "longitude": "-93.89062000" + }, + { + "id": "116992", + "name": "Fulton County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.38167000", + "longitude": "-91.81824000" + }, + { + "id": "117091", + "name": "Garland County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.57669000", + "longitude": "-93.15043000" + }, + { + "id": "117112", + "name": "Gassville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.28312000", + "longitude": "-92.49405000" + }, + { + "id": "117150", + "name": "Gentry", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.26758000", + "longitude": "-94.48466000" + }, + { + "id": "117186", + "name": "Gibson", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.88426000", + "longitude": "-92.23570000" + }, + { + "id": "117312", + "name": "Glenwood", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.32677000", + "longitude": "-93.55074000" + }, + { + "id": "117407", + "name": "Goshen", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.10119000", + "longitude": "-93.99131000" + }, + { + "id": "117412", + "name": "Gosnell", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.95979000", + "longitude": "-89.97203000" + }, + { + "id": "117508", + "name": "Grant County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.29002000", + "longitude": "-92.42358000" + }, + { + "id": "117546", + "name": "Gravel Ridge", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.86842000", + "longitude": "-92.19070000" + }, + { + "id": "117549", + "name": "Gravette", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.42202000", + "longitude": "-94.45355000" + }, + { + "id": "117595", + "name": "Green Forest", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.33535000", + "longitude": "-93.43602000" + }, + { + "id": "117619", + "name": "Greenbrier", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.23397000", + "longitude": "-92.38765000" + }, + { + "id": "117632", + "name": "Greene County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.11769000", + "longitude": "-90.55908000" + }, + { + "id": "117656", + "name": "Greenland", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.99425000", + "longitude": "-94.17520000" + }, + { + "id": "117701", + "name": "Greenwood", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.21565000", + "longitude": "-94.25577000" + }, + { + "id": "117808", + "name": "Gurdon", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.92094000", + "longitude": "-93.15406000" + }, + { + "id": "117881", + "name": "Hamburg", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.22818000", + "longitude": "-91.79763000" + }, + { + "id": "117926", + "name": "Hampton", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.53789000", + "longitude": "-92.46988000" + }, + { + "id": "118047", + "name": "Harrisburg", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.56425000", + "longitude": "-90.71678000" + }, + { + "id": "118054", + "name": "Harrison", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.22979000", + "longitude": "-93.10768000" + }, + { + "id": "118122", + "name": "Haskell", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.50148000", + "longitude": "-92.63655000" + }, + { + "id": "118209", + "name": "Hazen", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.78093000", + "longitude": "-91.58097000" + }, + { + "id": "118230", + "name": "Heber Springs", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.49147000", + "longitude": "-92.03126000" + }, + { + "id": "118247", + "name": "Helena", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.52955000", + "longitude": "-90.59177000" + }, + { + "id": "118257", + "name": "Helena-West Helena", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.52910000", + "longitude": "-90.59000000" + }, + { + "id": "118271", + "name": "Hempstead County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.73530000", + "longitude": "-93.66844000" + }, + { + "id": "118392", + "name": "Highland", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.27590000", + "longitude": "-91.52403000" + }, + { + "id": "118533", + "name": "Holiday Island", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.48535000", + "longitude": "-93.73214000" + }, + { + "id": "118642", + "name": "Hope", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.66706000", + "longitude": "-93.59157000" + }, + { + "id": "118662", + "name": "Horatio", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.93845000", + "longitude": "-94.35715000" + }, + { + "id": "118676", + "name": "Horseshoe Bend", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.22923000", + "longitude": "-91.76431000" + }, + { + "id": "118681", + "name": "Hot Spring County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.31763000", + "longitude": "-92.94601000" + }, + { + "id": "118682", + "name": "Hot Springs", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.50370000", + "longitude": "-93.05518000" + }, + { + "id": "118685", + "name": "Hot Springs National Park", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.53170000", + "longitude": "-93.06377000" + }, + { + "id": "118686", + "name": "Hot Springs Village", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.67204000", + "longitude": "-92.99879000" + }, + { + "id": "118712", + "name": "Howard County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.08874000", + "longitude": "-93.99349000" + }, + { + "id": "118726", + "name": "Hoxie", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.05035000", + "longitude": "-90.97512000" + }, + { + "id": "118757", + "name": "Hughes", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.94926000", + "longitude": "-90.47149000" + }, + { + "id": "118815", + "name": "Huntsville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.08619000", + "longitude": "-93.74130000" + }, + { + "id": "118898", + "name": "Independence County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.74158000", + "longitude": "-91.56972000" + }, + { + "id": "119054", + "name": "Izard County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.09487000", + "longitude": "-91.91342000" + }, + { + "id": "119076", + "name": "Jackson County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.59923000", + "longitude": "-91.21457000" + }, + { + "id": "119100", + "name": "Jacksonville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.86620000", + "longitude": "-92.11015000" + }, + { + "id": "119139", + "name": "Jasper", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.00813000", + "longitude": "-93.18657000" + }, + { + "id": "119176", + "name": "Jefferson County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.26879000", + "longitude": "-91.93151000" + }, + { + "id": "119254", + "name": "Johnson", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.13286000", + "longitude": "-94.16548000" + }, + { + "id": "119260", + "name": "Johnson County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.57005000", + "longitude": "-93.45991000" + }, + { + "id": "119299", + "name": "Jonesboro", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.84230000", + "longitude": "-90.70428000" + }, + { + "id": "119328", + "name": "Judsonia", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.27009000", + "longitude": "-91.63986000" + }, + { + "id": "119479", + "name": "Kensett", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.23175000", + "longitude": "-91.66764000" + }, + { + "id": "119838", + "name": "Lafayette County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.24098000", + "longitude": "-93.60704000" + }, + { + "id": "119878", + "name": "Lake City", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.81619000", + "longitude": "-90.43427000" + }, + { + "id": "119916", + "name": "Lake Hamilton", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.42453000", + "longitude": "-93.09518000" + }, + { + "id": "119989", + "name": "Lake Village", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.32873000", + "longitude": "-91.28178000" + }, + { + "id": "120058", + "name": "Lamar", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.44064000", + "longitude": "-93.38796000" + }, + { + "id": "120101", + "name": "Landmark", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.61120000", + "longitude": "-92.31960000" + }, + { + "id": "120213", + "name": "Lavaca", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.33620000", + "longitude": "-94.17326000" + }, + { + "id": "120230", + "name": "Lawrence County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.04125000", + "longitude": "-91.10708000" + }, + { + "id": "120269", + "name": "Leachville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.93591000", + "longitude": "-90.25788000" + }, + { + "id": "120307", + "name": "Lee County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.78062000", + "longitude": "-90.78207000" + }, + { + "id": "120394", + "name": "Lepanto", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.61119000", + "longitude": "-90.32982000" + }, + { + "id": "120434", + "name": "Lewisville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.35846000", + "longitude": "-93.57768000" + }, + { + "id": "120500", + "name": "Lincoln", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.94953000", + "longitude": "-94.42355000" + }, + { + "id": "120516", + "name": "Lincoln County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.95747000", + "longitude": "-91.73332000" + }, + { + "id": "120621", + "name": "Little Flock", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.38591000", + "longitude": "-94.13520000" + }, + { + "id": "120624", + "name": "Little River County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.70054000", + "longitude": "-94.23434000" + }, + { + "id": "120626", + "name": "Little Rock", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.74648000", + "longitude": "-92.28959000" + }, + { + "id": "120628", + "name": "Little Rock Air Force Base", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.89149000", + "longitude": "-92.15955000" + }, + { + "id": "120696", + "name": "Logan County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.21527000", + "longitude": "-93.71631000" + }, + { + "id": "120720", + "name": "London", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.32897000", + "longitude": "-93.25296000" + }, + { + "id": "120761", + "name": "Lonoke", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.78398000", + "longitude": "-91.89986000" + }, + { + "id": "120762", + "name": "Lonoke County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.75427000", + "longitude": "-91.88867000" + }, + { + "id": "120833", + "name": "Lowell", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.25535000", + "longitude": "-94.13076000" + }, + { + "id": "120902", + "name": "Luxora", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.75619000", + "longitude": "-89.92814000" + }, + { + "id": "121003", + "name": "Madison County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.01096000", + "longitude": "-93.72456000" + }, + { + "id": "121035", + "name": "Magnolia", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.26707000", + "longitude": "-93.23933000" + }, + { + "id": "121071", + "name": "Malvern", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.36231000", + "longitude": "-92.81295000" + }, + { + "id": "121119", + "name": "Manila", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.88007000", + "longitude": "-90.16704000" + }, + { + "id": "121142", + "name": "Mansfield", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.05954000", + "longitude": "-94.25271000" + }, + { + "id": "121208", + "name": "Marianna", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.77371000", + "longitude": "-90.75761000" + }, + { + "id": "121232", + "name": "Marion", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.21453000", + "longitude": "-90.19648000" + }, + { + "id": "121248", + "name": "Marion County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.26835000", + "longitude": "-92.68422000" + }, + { + "id": "121267", + "name": "Marked Tree", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.53286000", + "longitude": "-90.42066000" + }, + { + "id": "121289", + "name": "Marmaduke", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.18701000", + "longitude": "-90.38316000" + }, + { + "id": "121301", + "name": "Marshall", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.90896000", + "longitude": "-92.63127000" + }, + { + "id": "121352", + "name": "Marvell", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.55566000", + "longitude": "-90.91289000" + }, + { + "id": "121421", + "name": "Maumelle", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.86676000", + "longitude": "-92.40432000" + }, + { + "id": "121438", + "name": "Mayflower", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.95703000", + "longitude": "-92.42738000" + }, + { + "id": "121464", + "name": "McAlmont", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.80842000", + "longitude": "-92.18181000" + }, + { + "id": "121487", + "name": "McCrory", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.25620000", + "longitude": "-91.20012000" + }, + { + "id": "121501", + "name": "McGehee", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.62900000", + "longitude": "-91.39956000" + }, + { + "id": "121621", + "name": "Melbourne", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.05951000", + "longitude": "-91.90848000" + }, + { + "id": "121643", + "name": "Mena", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.58622000", + "longitude": "-94.23966000" + }, + { + "id": "121812", + "name": "Midway", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.38534000", + "longitude": "-92.46183000" + }, + { + "id": "121880", + "name": "Miller County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.31215000", + "longitude": "-93.89156000" + }, + { + "id": "121939", + "name": "Mineral Springs", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.87512000", + "longitude": "-93.91380000" + }, + { + "id": "121989", + "name": "Mississippi County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.76390000", + "longitude": "-90.05417000" + }, + { + "id": "122040", + "name": "Monette", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.89063000", + "longitude": "-90.34427000" + }, + { + "id": "122068", + "name": "Monroe County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.67784000", + "longitude": "-91.20389000" + }, + { + "id": "122140", + "name": "Montgomery County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.53879000", + "longitude": "-93.65953000" + }, + { + "id": "122158", + "name": "Monticello", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.62900000", + "longitude": "-91.79096000" + }, + { + "id": "122264", + "name": "Morrilton", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.15092000", + "longitude": "-92.74405000" + }, + { + "id": "122355", + "name": "Mount Ida", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.55676000", + "longitude": "-93.63408000" + }, + { + "id": "122415", + "name": "Mountain Home", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.33534000", + "longitude": "-92.38516000" + }, + { + "id": "122428", + "name": "Mountain View", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.86841000", + "longitude": "-92.11765000" + }, + { + "id": "122452", + "name": "Mulberry", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.50064000", + "longitude": "-94.05159000" + }, + { + "id": "122480", + "name": "Murfreesboro", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.06233000", + "longitude": "-93.68990000" + }, + { + "id": "122572", + "name": "Nashville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.94567000", + "longitude": "-93.84713000" + }, + { + "id": "122652", + "name": "Nevada County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.66397000", + "longitude": "-93.30714000" + }, + { + "id": "122800", + "name": "Newark", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.70174000", + "longitude": "-91.44152000" + }, + { + "id": "122839", + "name": "Newport", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.60480000", + "longitude": "-91.28180000" + }, + { + "id": "122868", + "name": "Newton County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.91997000", + "longitude": "-93.21787000" + }, + { + "id": "123012", + "name": "North Crossett", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.16568000", + "longitude": "-91.94152000" + }, + { + "id": "123059", + "name": "North Little Rock", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.76954000", + "longitude": "-92.26709000" + }, + { + "id": "123411", + "name": "Ola", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.03231000", + "longitude": "-93.22323000" + }, + { + "id": "123597", + "name": "Osceola", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.70508000", + "longitude": "-89.96953000" + }, + { + "id": "123644", + "name": "Ouachita County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.59336000", + "longitude": "-92.88193000" + }, + { + "id": "123697", + "name": "Ozark", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.48703000", + "longitude": "-93.82770000" + }, + { + "id": "123823", + "name": "Paragould", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.05840000", + "longitude": "-90.49733000" + }, + { + "id": "123829", + "name": "Paris", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.29203000", + "longitude": "-93.72992000" + }, + { + "id": "123870", + "name": "Parkin", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.26342000", + "longitude": "-90.57122000" + }, + { + "id": "123951", + "name": "Pea Ridge", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.45396000", + "longitude": "-94.11520000" + }, + { + "id": "124075", + "name": "Perry County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.94737000", + "longitude": "-92.93147000" + }, + { + "id": "124088", + "name": "Perryville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.00481000", + "longitude": "-92.80267000" + }, + { + "id": "124135", + "name": "Phillips County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.42829000", + "longitude": "-90.84802000" + }, + { + "id": "124184", + "name": "Piggott", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.38284000", + "longitude": "-90.19065000" + }, + { + "id": "124186", + "name": "Pike County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.16350000", + "longitude": "-93.65634000" + }, + { + "id": "124214", + "name": "Pine Bluff", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.22843000", + "longitude": "-92.00320000" + }, + { + "id": "124266", + "name": "Piney", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.50314000", + "longitude": "-93.12602000" + }, + { + "id": "124413", + "name": "Pocahontas", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.26146000", + "longitude": "-90.97123000" + }, + { + "id": "124425", + "name": "Poinsett County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.57404000", + "longitude": "-90.66293000" + }, + { + "id": "124440", + "name": "Polk County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.48584000", + "longitude": "-94.22807000" + }, + { + "id": "124481", + "name": "Pope County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.44763000", + "longitude": "-93.03416000" + }, + { + "id": "124600", + "name": "Pottsville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.24814000", + "longitude": "-93.04906000" + }, + { + "id": "124624", + "name": "Prairie County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.82979000", + "longitude": "-91.55277000" + }, + { + "id": "124626", + "name": "Prairie Creek", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.34202000", + "longitude": "-94.06187000" + }, + { + "id": "124627", + "name": "Prairie Grove", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.97591000", + "longitude": "-94.31771000" + }, + { + "id": "124642", + "name": "Prescott", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.80261000", + "longitude": "-93.38101000" + }, + { + "id": "124737", + "name": "Pulaski County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.76993000", + "longitude": "-92.31180000" + }, + { + "id": "124873", + "name": "Randolph County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.34148000", + "longitude": "-91.02772000" + }, + { + "id": "124935", + "name": "Rector", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.26312000", + "longitude": "-90.29260000" + }, + { + "id": "124967", + "name": "Redfield", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.44510000", + "longitude": "-92.18320000" + }, + { + "id": "125172", + "name": "Rison", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.95843000", + "longitude": "-92.19015000" + }, + { + "id": "125328", + "name": "Rockwell", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.46426000", + "longitude": "-93.13379000" + }, + { + "id": "125348", + "name": "Rogers", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.33202000", + "longitude": "-94.11854000" + }, + { + "id": "125543", + "name": "Russellville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.27842000", + "longitude": "-93.13379000" + }, + { + "id": "125636", + "name": "Saint Francis County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.02200000", + "longitude": "-90.74778000" + }, + { + "id": "125726", + "name": "Salem", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.62898000", + "longitude": "-92.55822000" + }, + { + "id": "125749", + "name": "Saline County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.64662000", + "longitude": "-92.67657000" + }, + { + "id": "126043", + "name": "Scott County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.86077000", + "longitude": "-94.06325000" + }, + { + "id": "126092", + "name": "Searcy", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.25064000", + "longitude": "-91.73625000" + }, + { + "id": "126093", + "name": "Searcy County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.91090000", + "longitude": "-92.69949000" + }, + { + "id": "126107", + "name": "Sebastian County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.19926000", + "longitude": "-94.27391000" + }, + { + "id": "126180", + "name": "Sevier County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.99720000", + "longitude": "-94.24122000" + }, + { + "id": "126221", + "name": "Shannon Hills", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.62009000", + "longitude": "-92.39543000" + }, + { + "id": "126233", + "name": "Sharp County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.16116000", + "longitude": "-91.47986000" + }, + { + "id": "126317", + "name": "Sheridan", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.30704000", + "longitude": "-92.40127000" + }, + { + "id": "126340", + "name": "Sherwood", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.81509000", + "longitude": "-92.22432000" + }, + { + "id": "126417", + "name": "Siloam Springs", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.18814000", + "longitude": "-94.54050000" + }, + { + "id": "126508", + "name": "Smackover", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.36485000", + "longitude": "-92.72488000" + }, + { + "id": "126787", + "name": "Southside", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.69841000", + "longitude": "-91.62347000" + }, + { + "id": "126883", + "name": "Springdale", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.18674000", + "longitude": "-94.12881000" + }, + { + "id": "126946", + "name": "Stamps", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.36540000", + "longitude": "-93.49518000" + }, + { + "id": "126979", + "name": "Star City", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.94288000", + "longitude": "-91.84347000" + }, + { + "id": "127080", + "name": "Stone County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.85987000", + "longitude": "-92.15668000" + }, + { + "id": "127155", + "name": "Stuttgart", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.50037000", + "longitude": "-91.55263000" + }, + { + "id": "127196", + "name": "Sulphur Springs", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.18065000", + "longitude": "-92.12348000" + }, + { + "id": "127544", + "name": "Texarkana", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.44179000", + "longitude": "-94.03769000" + }, + { + "id": "127723", + "name": "Tontitown", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.17786000", + "longitude": "-94.23354000" + }, + { + "id": "127856", + "name": "Trumann", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.67369000", + "longitude": "-90.50733000" + }, + { + "id": "127872", + "name": "Tuckerman", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.73063000", + "longitude": "-91.19846000" + }, + { + "id": "127988", + "name": "Union County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.17136000", + "longitude": "-92.59729000" + }, + { + "id": "128126", + "name": "Van Buren", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.43676000", + "longitude": "-94.34827000" + }, + { + "id": "128129", + "name": "Van Buren County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.58065000", + "longitude": "-92.51570000" + }, + { + "id": "128261", + "name": "Vilonia", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.08398000", + "longitude": "-92.20793000" + }, + { + "id": "128370", + "name": "Waldo", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.35151000", + "longitude": "-93.29573000" + }, + { + "id": "128377", + "name": "Waldron", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.89843000", + "longitude": "-94.09076000" + }, + { + "id": "128423", + "name": "Walnut Ridge", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.06840000", + "longitude": "-90.95595000" + }, + { + "id": "128457", + "name": "Ward", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.03036000", + "longitude": "-91.95042000" + }, + { + "id": "128476", + "name": "Warren", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.61261000", + "longitude": "-92.06458000" + }, + { + "id": "128553", + "name": "Washington County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.97907000", + "longitude": "-94.21558000" + }, + { + "id": "128854", + "name": "West Crossett", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "33.14096000", + "longitude": "-91.99402000" + }, + { + "id": "128872", + "name": "West Fork", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.92425000", + "longitude": "-94.18854000" + }, + { + "id": "128893", + "name": "West Helena", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.55066000", + "longitude": "-90.64177000" + }, + { + "id": "128928", + "name": "West Memphis", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.14648000", + "longitude": "-90.18454000" + }, + { + "id": "129134", + "name": "White County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.25627000", + "longitude": "-91.74555000" + }, + { + "id": "129139", + "name": "White Hall", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.27399000", + "longitude": "-92.09098000" + }, + { + "id": "129548", + "name": "Woodruff County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.18633000", + "longitude": "-91.24307000" + }, + { + "id": "129613", + "name": "Wrightsville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "34.60232000", + "longitude": "-92.21681000" + }, + { + "id": "129632", + "name": "Wynne", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.22453000", + "longitude": "-90.78678000" + }, + { + "id": "129677", + "name": "Yell County", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "35.00260000", + "longitude": "-93.41125000" + }, + { + "id": "129680", + "name": "Yellville", + "state_id": 1444, + "state_code": "AR", + "country_id": 233, + "country_code": "US", + "latitude": "36.22618000", + "longitude": "-92.68489000" + }, + { + "id": "110992", + "name": "Acalanes Ridge", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.90472000", + "longitude": "-122.07857000" + }, + { + "id": "111001", + "name": "Acton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.46999000", + "longitude": "-118.19674000" + }, + { + "id": "111043", + "name": "Adelanto", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.58277000", + "longitude": "-117.40922000" + }, + { + "id": "111056", + "name": "Agoura", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14306000", + "longitude": "-118.73787000" + }, + { + "id": "111057", + "name": "Agoura Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13639000", + "longitude": "-118.77453000" + }, + { + "id": "111058", + "name": "Agua Dulce", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.49638000", + "longitude": "-118.32563000" + }, + { + "id": "111061", + "name": "Aguanga", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.44281000", + "longitude": "-116.86502000" + }, + { + "id": "111064", + "name": "Ahwahnee", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.36550000", + "longitude": "-119.72627000" + }, + { + "id": "111088", + "name": "Alameda", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.76521000", + "longitude": "-122.24164000" + }, + { + "id": "111089", + "name": "Alameda County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.65055000", + "longitude": "-121.91789000" + }, + { + "id": "111093", + "name": "Alamo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.85020000", + "longitude": "-122.03218000" + }, + { + "id": "111110", + "name": "Albany", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.88687000", + "longitude": "-122.29775000" + }, + { + "id": "111169", + "name": "Alhambra", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09529000", + "longitude": "-118.12701000" + }, + { + "id": "111175", + "name": "Aliso Viejo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.56504000", + "longitude": "-117.72712000" + }, + { + "id": "111196", + "name": "Allendale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.44463000", + "longitude": "-121.94302000" + }, + { + "id": "111215", + "name": "Alondra Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88946000", + "longitude": "-118.33091000" + }, + { + "id": "111217", + "name": "Alpaugh", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.88773000", + "longitude": "-119.48734000" + }, + { + "id": "111223", + "name": "Alpine", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.83505000", + "longitude": "-116.76641000" + }, + { + "id": "111226", + "name": "Alpine County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.59725000", + "longitude": "-119.82065000" + }, + { + "id": "111230", + "name": "Alta Sierra", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.73126000", + "longitude": "-118.55390000" + }, + { + "id": "111231", + "name": "Altadena", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.18973000", + "longitude": "-118.13118000" + }, + { + "id": "111251", + "name": "Alturas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.48714000", + "longitude": "-120.54349000" + }, + { + "id": "111254", + "name": "Alum Rock", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.36605000", + "longitude": "-121.82718000" + }, + { + "id": "111261", + "name": "Amador County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.44639000", + "longitude": "-120.65112000" + }, + { + "id": "111271", + "name": "American Canyon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.17492000", + "longitude": "-122.26080000" + }, + { + "id": "111280", + "name": "Amesti", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96356000", + "longitude": "-121.77912000" + }, + { + "id": "111299", + "name": "Anaheim", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.83529000", + "longitude": "-117.91450000" + }, + { + "id": "111314", + "name": "Anderson", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44821000", + "longitude": "-122.29778000" + }, + { + "id": "111337", + "name": "Angels Camp", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.06826000", + "longitude": "-120.53965000" + }, + { + "id": "111343", + "name": "Angwin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.57574000", + "longitude": "-122.44998000" + }, + { + "id": "111364", + "name": "Antelope", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.70824000", + "longitude": "-121.32995000" + }, + { + "id": "111373", + "name": "Antioch", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.00492000", + "longitude": "-121.80579000" + }, + { + "id": "111378", + "name": "Anza", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.55503000", + "longitude": "-116.67363000" + }, + { + "id": "111394", + "name": "Apple Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.50083000", + "longitude": "-117.18588000" + }, + { + "id": "111403", + "name": "Aptos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.97717000", + "longitude": "-121.89940000" + }, + { + "id": "111404", + "name": "Aptos Hills-Larkin Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96064000", + "longitude": "-121.83404000" + }, + { + "id": "111416", + "name": "Arbuckle", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.01740000", + "longitude": "-122.05775000" + }, + { + "id": "111425", + "name": "Arcadia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13973000", + "longitude": "-118.03534000" + }, + { + "id": "111426", + "name": "Arcata", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86652000", + "longitude": "-124.08284000" + }, + { + "id": "111440", + "name": "Arden-Arcade", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.60250000", + "longitude": "-121.37854000" + }, + { + "id": "111477", + "name": "Armona", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.31578000", + "longitude": "-119.70846000" + }, + { + "id": "111488", + "name": "Arnold", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.25547000", + "longitude": "-120.35103000" + }, + { + "id": "111491", + "name": "Aromas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.88856000", + "longitude": "-121.64300000" + }, + { + "id": "111494", + "name": "Arroyo Grande", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.11859000", + "longitude": "-120.59073000" + }, + { + "id": "111496", + "name": "Artesia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.86585000", + "longitude": "-118.08312000" + }, + { + "id": "111505", + "name": "Arvin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.20913000", + "longitude": "-118.82843000" + }, + { + "id": "111538", + "name": "Ashland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.69465000", + "longitude": "-122.11385000" + }, + { + "id": "111564", + "name": "Atascadero", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.48942000", + "longitude": "-120.67073000" + }, + { + "id": "111582", + "name": "Atherton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.46133000", + "longitude": "-122.19774000" + }, + { + "id": "111613", + "name": "Atwater", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.34772000", + "longitude": "-120.60908000" + }, + { + "id": "111617", + "name": "Auberry", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.08078000", + "longitude": "-119.48541000" + }, + { + "id": "111631", + "name": "Auburn", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.89657000", + "longitude": "-121.07689000" + }, + { + "id": "111635", + "name": "Auburn Lake Trails", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.91434000", + "longitude": "-120.95244000" + }, + { + "id": "111644", + "name": "August", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.97881000", + "longitude": "-121.26217000" + }, + { + "id": "111675", + "name": "Avalon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.34281000", + "longitude": "-118.32785000" + }, + { + "id": "111676", + "name": "Avenal", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.00412000", + "longitude": "-120.12903000" + }, + { + "id": "111683", + "name": "Avila Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.17998000", + "longitude": "-120.73184000" + }, + { + "id": "111689", + "name": "Avocado Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.03612000", + "longitude": "-117.99118000" + }, + { + "id": "111713", + "name": "Azusa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13362000", + "longitude": "-117.90756000" + }, + { + "id": "111744", + "name": "Bakersfield", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.37329000", + "longitude": "-119.01871000" + }, + { + "id": "111763", + "name": "Baldwin Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.08529000", + "longitude": "-117.96090000" + }, + { + "id": "111803", + "name": "Banning", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.92557000", + "longitude": "-116.87641000" + }, + { + "id": "111857", + "name": "Barstow", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.89859000", + "longitude": "-117.02282000" + }, + { + "id": "111858", + "name": "Barstow Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.86971000", + "longitude": "-117.05615000" + }, + { + "id": "111932", + "name": "Bay Point", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02909000", + "longitude": "-121.96163000" + }, + { + "id": "111957", + "name": "Bayside", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.84235000", + "longitude": "-124.06367000" + }, + { + "id": "111959", + "name": "Bayview", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.77263000", + "longitude": "-124.18395000" + }, + { + "id": "111971", + "name": "Beale Air Force Base", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.10917000", + "longitude": "-121.35444000" + }, + { + "id": "111979", + "name": "Bear Valley Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.15913000", + "longitude": "-118.62842000" + }, + { + "id": "111990", + "name": "Beaumont", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.92946000", + "longitude": "-116.97725000" + }, + { + "id": "112066", + "name": "Bell", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.97751000", + "longitude": "-118.18702000" + }, + { + "id": "112070", + "name": "Bell Gardens", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96529000", + "longitude": "-118.15146000" + }, + { + "id": "112072", + "name": "Bella Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.64071000", + "longitude": "-122.23250000" + }, + { + "id": "112118", + "name": "Bellflower", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88168000", + "longitude": "-118.11701000" + }, + { + "id": "112142", + "name": "Belmont", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.52021000", + "longitude": "-122.27580000" + }, + { + "id": "112153", + "name": "Belvedere", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.87270000", + "longitude": "-122.46442000" + }, + { + "id": "112163", + "name": "Ben Lomond", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.08911000", + "longitude": "-122.08635000" + }, + { + "id": "112168", + "name": "Benicia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.04937000", + "longitude": "-122.15858000" + }, + { + "id": "112223", + "name": "Berkeley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.87159000", + "longitude": "-122.27275000" + }, + { + "id": "112240", + "name": "Bermuda Dunes", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74280000", + "longitude": "-116.28918000" + }, + { + "id": "112253", + "name": "Berry Creek", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.64516000", + "longitude": "-121.40330000" + }, + { + "id": "112260", + "name": "Bertsch-Oceanview", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.75250000", + "longitude": "-124.15875000" + }, + { + "id": "112286", + "name": "Bethel Island", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.01492000", + "longitude": "-121.64051000" + }, + { + "id": "112306", + "name": "Beverly Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.07362000", + "longitude": "-118.40036000" + }, + { + "id": "112315", + "name": "Big Bear City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.26112000", + "longitude": "-116.84503000" + }, + { + "id": "112316", + "name": "Big Bear Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.24390000", + "longitude": "-116.91142000" + }, + { + "id": "112328", + "name": "Big Pine", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.16493000", + "longitude": "-118.28955000" + }, + { + "id": "112331", + "name": "Big River", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14002000", + "longitude": "-114.36134000" + }, + { + "id": "112340", + "name": "Biggs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.41239000", + "longitude": "-121.71275000" + }, + { + "id": "112352", + "name": "Biola", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.80217000", + "longitude": "-120.01627000" + }, + { + "id": "112364", + "name": "Bishop", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.36354000", + "longitude": "-118.39511000" + }, + { + "id": "112381", + "name": "Black Point-Green Point", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.11547000", + "longitude": "-122.51318000" + }, + { + "id": "112387", + "name": "Blackhawk", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.82076000", + "longitude": "-121.90774000" + }, + { + "id": "112453", + "name": "Bloomington", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.07029000", + "longitude": "-117.39588000" + }, + { + "id": "112470", + "name": "Blue Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.88291000", + "longitude": "-123.98395000" + }, + { + "id": "112485", + "name": "Blythe", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.61030000", + "longitude": "-114.59635000" + }, + { + "id": "112495", + "name": "Bodega Bay", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.33325000", + "longitude": "-123.04806000" + }, + { + "id": "112496", + "name": "Bodfish", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.58801000", + "longitude": "-118.49203000" + }, + { + "id": "112514", + "name": "Bolinas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.90937000", + "longitude": "-122.68637000" + }, + { + "id": "112529", + "name": "Bonadelle Ranchos-Madera Ranchos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.98467000", + "longitude": "-119.87463000" + }, + { + "id": "112537", + "name": "Bonita", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.65783000", + "longitude": "-117.03003000" + }, + { + "id": "112548", + "name": "Bonny Doon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.04162000", + "longitude": "-122.15052000" + }, + { + "id": "112550", + "name": "Bonsall", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.28892000", + "longitude": "-117.22559000" + }, + { + "id": "112571", + "name": "Boonville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.00907000", + "longitude": "-123.36612000" + }, + { + "id": "112578", + "name": "Boron", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.99942000", + "longitude": "-117.64978000" + }, + { + "id": "112579", + "name": "Boronda", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.69885000", + "longitude": "-121.67495000" + }, + { + "id": "112581", + "name": "Borrego Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.25587000", + "longitude": "-116.37501000" + }, + { + "id": "112591", + "name": "Bostonia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.80755000", + "longitude": "-116.93642000" + }, + { + "id": "112604", + "name": "Boulder Creek", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.12606000", + "longitude": "-122.12219000" + }, + { + "id": "112646", + "name": "Boyes Hot Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.31380000", + "longitude": "-122.48193000" + }, + { + "id": "112649", + "name": "Boyle Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.03390000", + "longitude": "-118.20535000" + }, + { + "id": "112658", + "name": "Bradbury", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14695000", + "longitude": "-117.97090000" + }, + { + "id": "112700", + "name": "Brawley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.97866000", + "longitude": "-115.53027000" + }, + { + "id": "112707", + "name": "Brea", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.91668000", + "longitude": "-117.90006000" + }, + { + "id": "112733", + "name": "Brentwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.93187000", + "longitude": "-121.69579000" + }, + { + "id": "112736", + "name": "Bret Harte", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.60207000", + "longitude": "-121.00519000" + }, + { + "id": "112765", + "name": "Bridgeport", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.25575000", + "longitude": "-119.23127000" + }, + { + "id": "112800", + "name": "Brisbane", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.68077000", + "longitude": "-122.39997000" + }, + { + "id": "112825", + "name": "Broadmoor", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.68660000", + "longitude": "-122.48275000" + }, + { + "id": "112851", + "name": "Brookdale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.10634000", + "longitude": "-122.10608000" + }, + { + "id": "112893", + "name": "Brooktrails", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.44377000", + "longitude": "-123.38529000" + }, + { + "id": "112983", + "name": "Buckhorn", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.45216000", + "longitude": "-120.52854000" + }, + { + "id": "112997", + "name": "Buellton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.61360000", + "longitude": "-120.19265000" + }, + { + "id": "112999", + "name": "Buena Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.86751000", + "longitude": "-117.99812000" + }, + { + "id": "113003", + "name": "Buena Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.32133000", + "longitude": "-121.91662000" + }, + { + "id": "113047", + "name": "Burbank", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.18084000", + "longitude": "-118.30897000" + }, + { + "id": "113065", + "name": "Burlingame", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.58410000", + "longitude": "-122.36608000" + }, + { + "id": "113082", + "name": "Burney", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.88238000", + "longitude": "-121.66082000" + }, + { + "id": "113125", + "name": "Butte County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.66693000", + "longitude": "-121.60067000" + }, + { + "id": "113129", + "name": "Buttonwillow", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.40052000", + "longitude": "-119.46956000" + }, + { + "id": "113146", + "name": "Byron", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.86715000", + "longitude": "-121.63801000" + }, + { + "id": "113148", + "name": "Bystrom", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.62076000", + "longitude": "-120.98577000" + }, + { + "id": "113150", + "name": "Cabazon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.91752000", + "longitude": "-116.78724000" + }, + { + "id": "113173", + "name": "Calabasas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.15778000", + "longitude": "-118.63842000" + }, + { + "id": "113176", + "name": "Calaveras County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.20461000", + "longitude": "-120.55413000" + }, + { + "id": "113196", + "name": "Calexico", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.67895000", + "longitude": "-115.49888000" + }, + { + "id": "113218", + "name": "California City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.12580000", + "longitude": "-117.98590000" + }, + { + "id": "113219", + "name": "Calimesa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.00390000", + "longitude": "-117.06198000" + }, + { + "id": "113220", + "name": "Calipatria", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.12560000", + "longitude": "-115.51415000" + }, + { + "id": "113221", + "name": "Calistoga", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.57880000", + "longitude": "-122.57971000" + }, + { + "id": "113226", + "name": "Callender", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.05303000", + "longitude": "-120.59628000" + }, + { + "id": "113242", + "name": "Camarillo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.21639000", + "longitude": "-119.03760000" + }, + { + "id": "113246", + "name": "Cambria", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.56414000", + "longitude": "-121.08075000" + }, + { + "id": "113249", + "name": "Cambrian Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.25689000", + "longitude": "-121.93079000" + }, + { + "id": "113281", + "name": "Cameron Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.66879000", + "longitude": "-120.98716000" + }, + { + "id": "113285", + "name": "Camino", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.73824000", + "longitude": "-120.67493000" + }, + { + "id": "113289", + "name": "Camp Meeker", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.42519000", + "longitude": "-122.95944000" + }, + { + "id": "113290", + "name": "Camp Pendleton North", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.31465000", + "longitude": "-117.31603000" + }, + { + "id": "113291", + "name": "Camp Pendleton South", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.22844000", + "longitude": "-117.37929000" + }, + { + "id": "113298", + "name": "Campbell", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.28717000", + "longitude": "-121.94996000" + }, + { + "id": "113308", + "name": "Campo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.60645000", + "longitude": "-116.46891000" + }, + { + "id": "113335", + "name": "Canoga Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.20112000", + "longitude": "-118.59814000" + }, + { + "id": "113359", + "name": "Canyon Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.68502000", + "longitude": "-117.27309000" + }, + { + "id": "113376", + "name": "Capitola", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.97523000", + "longitude": "-121.95329000" + }, + { + "id": "113408", + "name": "Carlsbad", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.15809000", + "longitude": "-117.35059000" + }, + { + "id": "113420", + "name": "Carmel Valley Village", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.50605000", + "longitude": "-121.76594000" + }, + { + "id": "113421", + "name": "Carmel-by-the-Sea", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.55524000", + "longitude": "-121.92329000" + }, + { + "id": "113423", + "name": "Carmichael", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.61713000", + "longitude": "-121.32828000" + }, + { + "id": "113440", + "name": "Carpinteria", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.39888000", + "longitude": "-119.51846000" + }, + { + "id": "113474", + "name": "Carson", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.83141000", + "longitude": "-118.28202000" + }, + { + "id": "113498", + "name": "Caruthers", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.54273000", + "longitude": "-119.83320000" + }, + { + "id": "113509", + "name": "Casa Conejo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.18362000", + "longitude": "-118.94343000" + }, + { + "id": "113511", + "name": "Casa de Oro-Mount Helix", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.76397000", + "longitude": "-116.96877000" + }, + { + "id": "113540", + "name": "Castaic", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.48888000", + "longitude": "-118.62287000" + }, + { + "id": "113557", + "name": "Castro Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.69410000", + "longitude": "-122.08635000" + }, + { + "id": "113559", + "name": "Castroville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.76579000", + "longitude": "-121.75800000" + }, + { + "id": "113570", + "name": "Cathedral City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.77974000", + "longitude": "-116.46529000" + }, + { + "id": "113592", + "name": "Cayucos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.44275000", + "longitude": "-120.89213000" + }, + { + "id": "113622", + "name": "Cedar Ridge", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.06576000", + "longitude": "-120.27686000" + }, + { + "id": "113683", + "name": "Central Valley (historical)", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68043000", + "longitude": "-122.37112000" + }, + { + "id": "113698", + "name": "Century City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.05557000", + "longitude": "-118.41786000" + }, + { + "id": "113700", + "name": "Ceres", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.59493000", + "longitude": "-120.95771000" + }, + { + "id": "113701", + "name": "Cerritos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.85835000", + "longitude": "-118.06479000" + }, + { + "id": "113714", + "name": "Challenge-Brownsville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.46447000", + "longitude": "-121.26338000" + }, + { + "id": "113734", + "name": "Channel Islands Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.15806000", + "longitude": "-119.22316000" + }, + { + "id": "113790", + "name": "Charter Oak", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10306000", + "longitude": "-117.84589000" + }, + { + "id": "113807", + "name": "Chatsworth", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.25723000", + "longitude": "-118.60120000" + }, + { + "id": "113865", + "name": "Cherry Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.97252000", + "longitude": "-116.97725000" + }, + { + "id": "113867", + "name": "Cherryland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.67938000", + "longitude": "-122.10330000" + }, + { + "id": "113892", + "name": "Chester", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.30627000", + "longitude": "-121.23191000" + }, + { + "id": "113943", + "name": "Chico", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.72849000", + "longitude": "-121.83748000" + }, + { + "id": "113963", + "name": "China Lake Acres", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.64051000", + "longitude": "-117.76395000" + }, + { + "id": "113964", + "name": "Chinatown", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.79660000", + "longitude": "-122.40858000" + }, + { + "id": "113968", + "name": "Chino", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.01223000", + "longitude": "-117.68894000" + }, + { + "id": "113969", + "name": "Chino Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.99380000", + "longitude": "-117.75888000" + }, + { + "id": "113993", + "name": "Chowchilla", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.12300000", + "longitude": "-120.26018000" + }, + { + "id": "114003", + "name": "Chualar", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.57052000", + "longitude": "-121.51855000" + }, + { + "id": "114005", + "name": "Chula Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.64005000", + "longitude": "-117.08420000" + }, + { + "id": "114034", + "name": "Citrus", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.11501000", + "longitude": "-117.89173000" + }, + { + "id": "114037", + "name": "Citrus Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.70712000", + "longitude": "-121.28106000" + }, + { + "id": "114046", + "name": "City and County of San Francisco", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.77823000", + "longitude": "-122.44250000" + }, + { + "id": "114106", + "name": "Claremont", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09668000", + "longitude": "-117.71978000" + }, + { + "id": "114169", + "name": "Clay", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.33602000", + "longitude": "-121.15939000" + }, + { + "id": "114203", + "name": "Clayton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.94103000", + "longitude": "-121.93579000" + }, + { + "id": "114213", + "name": "Clear Lake Riviera", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.95406000", + "longitude": "-122.72082000" + }, + { + "id": "114219", + "name": "Clearlake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.95823000", + "longitude": "-122.62637000" + }, + { + "id": "114220", + "name": "Clearlake Oaks", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.02628000", + "longitude": "-122.67193000" + }, + { + "id": "114311", + "name": "Cloverdale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.80546000", + "longitude": "-123.01722000" + }, + { + "id": "114315", + "name": "Clovis", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.82523000", + "longitude": "-119.70292000" + }, + { + "id": "114324", + "name": "Coachella", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.68030000", + "longitude": "-116.17389000" + }, + { + "id": "114338", + "name": "Coalinga", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.13968000", + "longitude": "-120.36015000" + }, + { + "id": "114340", + "name": "Coarsegold", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.26217000", + "longitude": "-119.70098000" + }, + { + "id": "114343", + "name": "Cobb", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.82213000", + "longitude": "-122.72305000" + }, + { + "id": "114408", + "name": "Colfax", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.10073000", + "longitude": "-120.95328000" + }, + { + "id": "114425", + "name": "Collierville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.21464000", + "longitude": "-121.26884000" + }, + { + "id": "114440", + "name": "Colma", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.67688000", + "longitude": "-122.45969000" + }, + { + "id": "114463", + "name": "Colton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.07390000", + "longitude": "-117.31365000" + }, + { + "id": "114474", + "name": "Columbia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.03631000", + "longitude": "-120.40131000" + }, + { + "id": "114504", + "name": "Colusa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.21433000", + "longitude": "-122.00942000" + }, + { + "id": "114505", + "name": "Colusa County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.17757000", + "longitude": "-122.23703000" + }, + { + "id": "114525", + "name": "Commerce", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.00057000", + "longitude": "-118.15979000" + }, + { + "id": "114529", + "name": "Compton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.89585000", + "longitude": "-118.22007000" + }, + { + "id": "114543", + "name": "Concord", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.97798000", + "longitude": "-122.03107000" + }, + { + "id": "114575", + "name": "Contra Costa Centre", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.92752000", + "longitude": "-122.05786000" + }, + { + "id": "114576", + "name": "Contra Costa County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.92342000", + "longitude": "-121.95121000" + }, + { + "id": "114596", + "name": "Cool", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.88722000", + "longitude": "-121.01472000" + }, + { + "id": "114622", + "name": "Copperopolis", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.98104000", + "longitude": "-120.64187000" + }, + { + "id": "114633", + "name": "Corcoran", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.09801000", + "longitude": "-119.56040000" + }, + { + "id": "114654", + "name": "Corning", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.92766000", + "longitude": "-122.17916000" + }, + { + "id": "114662", + "name": "Corona", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.87529000", + "longitude": "-117.56644000" + }, + { + "id": "114664", + "name": "Coronado", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.68589000", + "longitude": "-117.18309000" + }, + { + "id": "114667", + "name": "Corralitos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.98856000", + "longitude": "-121.80634000" + }, + { + "id": "114672", + "name": "Corte Madera", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.92548000", + "longitude": "-122.52748000" + }, + { + "id": "114686", + "name": "Costa Mesa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.64113000", + "longitude": "-117.91867000" + }, + { + "id": "114688", + "name": "Cotati", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.32686000", + "longitude": "-122.70721000" + }, + { + "id": "114689", + "name": "Coto De Caza", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.60419000", + "longitude": "-117.58699000" + }, + { + "id": "114702", + "name": "Cottonwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38571000", + "longitude": "-122.28084000" + }, + { + "id": "114715", + "name": "Country Club", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.96881000", + "longitude": "-121.34078000" + }, + { + "id": "114731", + "name": "Covelo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.79327000", + "longitude": "-123.24922000" + }, + { + "id": "114734", + "name": "Covina", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09001000", + "longitude": "-117.89034000" + }, + { + "id": "114796", + "name": "Crescent City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.75595000", + "longitude": "-124.20175000" + }, + { + "id": "114802", + "name": "Crest", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.80727000", + "longitude": "-116.86808000" + }, + { + "id": "114805", + "name": "Crestline", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.24195000", + "longitude": "-117.28560000" + }, + { + "id": "114830", + "name": "Crockett", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.05242000", + "longitude": "-122.21302000" + }, + { + "id": "114890", + "name": "Cudahy", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96057000", + "longitude": "-118.18535000" + }, + { + "id": "114904", + "name": "Culver City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.02112000", + "longitude": "-118.39647000" + }, + { + "id": "114924", + "name": "Cupertino", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.32300000", + "longitude": "-122.03218000" + }, + { + "id": "114947", + "name": "Cutler", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.52328000", + "longitude": "-119.28678000" + }, + { + "id": "114951", + "name": "Cutten", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.76985000", + "longitude": "-124.14284000" + }, + { + "id": "114954", + "name": "Cypress", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.81696000", + "longitude": "-118.03729000" + }, + { + "id": "115006", + "name": "Daly City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.70577000", + "longitude": "-122.46192000" + }, + { + "id": "115012", + "name": "Dana Point", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.46697000", + "longitude": "-117.69811000" + }, + { + "id": "115038", + "name": "Danville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.82159000", + "longitude": "-121.99996000" + }, + { + "id": "115073", + "name": "Davis", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.54491000", + "longitude": "-121.74052000" + }, + { + "id": "115090", + "name": "Day Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.03578000", + "longitude": "-121.86246000" + }, + { + "id": "115178", + "name": "Deer Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.68185000", + "longitude": "-120.82327000" + }, + { + "id": "115186", + "name": "Del Aire", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.91613000", + "longitude": "-118.36952000" + }, + { + "id": "115188", + "name": "Del Mar", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.95949000", + "longitude": "-117.26531000" + }, + { + "id": "115189", + "name": "Del Monte Forest", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.58635000", + "longitude": "-121.94746000" + }, + { + "id": "115191", + "name": "Del Norte County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74496000", + "longitude": "-123.95781000" + }, + { + "id": "115192", + "name": "Del Rey", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.65912000", + "longitude": "-119.59374000" + }, + { + "id": "115193", + "name": "Del Rey Oaks", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.59329000", + "longitude": "-121.83495000" + }, + { + "id": "115194", + "name": "Del Rio", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.74354000", + "longitude": "-121.01188000" + }, + { + "id": "115199", + "name": "Delano", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.76884000", + "longitude": "-119.24705000" + }, + { + "id": "115213", + "name": "Delhi", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.43216000", + "longitude": "-120.77854000" + }, + { + "id": "115234", + "name": "Denair", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.52632000", + "longitude": "-120.79687000" + }, + { + "id": "115276", + "name": "Descanso", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.85283000", + "longitude": "-116.61585000" + }, + { + "id": "115280", + "name": "Desert Edge", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.92417000", + "longitude": "-116.44139000" + }, + { + "id": "115282", + "name": "Desert Hot Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96173000", + "longitude": "-116.50353000" + }, + { + "id": "115283", + "name": "Desert Shores", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.40420000", + "longitude": "-116.03972000" + }, + { + "id": "115284", + "name": "Desert View Highlands", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.59082000", + "longitude": "-118.15257000" + }, + { + "id": "115312", + "name": "Diablo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.83493000", + "longitude": "-121.95801000" + }, + { + "id": "115314", + "name": "Diamond Bar", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.02862000", + "longitude": "-117.81034000" + }, + { + "id": "115316", + "name": "Diamond Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.69463000", + "longitude": "-120.81494000" + }, + { + "id": "115351", + "name": "Dinuba", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.54328000", + "longitude": "-119.38707000" + }, + { + "id": "115353", + "name": "Discovery Bay", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.90854000", + "longitude": "-121.60023000" + }, + { + "id": "115367", + "name": "Dixon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.44546000", + "longitude": "-121.82330000" + }, + { + "id": "115369", + "name": "Dixon Lane-Meadow Creek", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.38639000", + "longitude": "-118.41527000" + }, + { + "id": "115385", + "name": "Dogtown", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.21381000", + "longitude": "-121.08855000" + }, + { + "id": "115390", + "name": "Dollar Point", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.18796000", + "longitude": "-120.09991000" + }, + { + "id": "115414", + "name": "Dos Palos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.98606000", + "longitude": "-120.62657000" + }, + { + "id": "115460", + "name": "Downey", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.94001000", + "longitude": "-118.13257000" + }, + { + "id": "115461", + "name": "Downieville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.55934000", + "longitude": "-120.82689000" + }, + { + "id": "115490", + "name": "Duarte", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13945000", + "longitude": "-117.97729000" + }, + { + "id": "115496", + "name": "Dublin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.70215000", + "longitude": "-121.93579000" + }, + { + "id": "115551", + "name": "Dunnigan", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.88518000", + "longitude": "-121.96969000" + }, + { + "id": "115553", + "name": "Dunsmuir", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.20821000", + "longitude": "-122.27195000" + }, + { + "id": "115573", + "name": "Durham", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.64627000", + "longitude": "-121.79998000" + }, + { + "id": "115618", + "name": "Earlimart", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.88412000", + "longitude": "-119.27233000" + }, + { + "id": "115663", + "name": "East Foothills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.38105000", + "longitude": "-121.81745000" + }, + { + "id": "115689", + "name": "East Hemet", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74002000", + "longitude": "-116.93891000" + }, + { + "id": "115699", + "name": "East La Mirada", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.92446000", + "longitude": "-117.98895000" + }, + { + "id": "115706", + "name": "East Los Angeles", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.02390000", + "longitude": "-118.17202000" + }, + { + "id": "115725", + "name": "East Oakdale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.78798000", + "longitude": "-120.80382000" + }, + { + "id": "115728", + "name": "East Palo Alto", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.46883000", + "longitude": "-122.14108000" + }, + { + "id": "115729", + "name": "East Pasadena", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13814000", + "longitude": "-118.07384000" + }, + { + "id": "115739", + "name": "East Porterville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.05745000", + "longitude": "-118.97566000" + }, + { + "id": "115742", + "name": "East Quincy", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93406000", + "longitude": "-120.89801000" + }, + { + "id": "115744", + "name": "East Rancho Dominguez", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.89807000", + "longitude": "-118.19535000" + }, + { + "id": "115746", + "name": "East Richmond Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.94492000", + "longitude": "-122.31358000" + }, + { + "id": "115755", + "name": "East San Gabriel", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09168000", + "longitude": "-118.09118000" + }, + { + "id": "115759", + "name": "East Sonora", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.97770000", + "longitude": "-120.36130000" + }, + { + "id": "115791", + "name": "Easton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.65023000", + "longitude": "-119.79070000" + }, + { + "id": "115797", + "name": "Eastvale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96358000", + "longitude": "-117.56418000" + }, + { + "id": "115814", + "name": "Echo Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.07808000", + "longitude": "-118.26066000" + }, + { + "id": "115888", + "name": "Edwards Air Force Base", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.91637000", + "longitude": "-117.93535000" + }, + { + "id": "115911", + "name": "El Cajon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.79477000", + "longitude": "-116.96253000" + }, + { + "id": "115914", + "name": "El Centro", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.79200000", + "longitude": "-115.56305000" + }, + { + "id": "115915", + "name": "El Cerrito", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.91576000", + "longitude": "-122.31164000" + }, + { + "id": "115916", + "name": "El Cerrito Corona", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.84057000", + "longitude": "-117.52283000" + }, + { + "id": "115921", + "name": "El Dorado County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.77874000", + "longitude": "-120.52465000" + }, + { + "id": "115922", + "name": "El Dorado Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.68574000", + "longitude": "-121.08217000" + }, + { + "id": "115924", + "name": "El Granada", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.50272000", + "longitude": "-122.46942000" + }, + { + "id": "115928", + "name": "El Monte", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.06862000", + "longitude": "-118.02757000" + }, + { + "id": "115936", + "name": "El Rio", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.23578000", + "longitude": "-119.16383000" + }, + { + "id": "115937", + "name": "El Segundo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.91918000", + "longitude": "-118.41647000" + }, + { + "id": "115938", + "name": "El Sobrante", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.97715000", + "longitude": "-122.29525000" + }, + { + "id": "115940", + "name": "El Verano", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.29769000", + "longitude": "-122.49165000" + }, + { + "id": "115957", + "name": "Eldridge", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.34880000", + "longitude": "-122.51081000" + }, + { + "id": "115987", + "name": "Elk Grove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.40880000", + "longitude": "-121.37162000" + }, + { + "id": "116003", + "name": "Elkhorn", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.82440000", + "longitude": "-121.74050000" + }, + { + "id": "116075", + "name": "Elverta", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.71379000", + "longitude": "-121.46273000" + }, + { + "id": "116090", + "name": "Emerald Lake Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.46466000", + "longitude": "-122.26802000" + }, + { + "id": "116097", + "name": "Emeryville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.83132000", + "longitude": "-122.28525000" + }, + { + "id": "116110", + "name": "Empire", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.63826000", + "longitude": "-120.90215000" + }, + { + "id": "116118", + "name": "Encinitas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.03699000", + "longitude": "-117.29198000" + }, + { + "id": "116119", + "name": "Encino", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.15917000", + "longitude": "-118.50119000" + }, + { + "id": "116178", + "name": "Escalon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.79781000", + "longitude": "-120.99792000" + }, + { + "id": "116184", + "name": "Escondido", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.11921000", + "longitude": "-117.08642000" + }, + { + "id": "116187", + "name": "Esparto", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.69213000", + "longitude": "-122.01719000" + }, + { + "id": "116221", + "name": "Eucalyptus Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.87977000", + "longitude": "-116.94669000" + }, + { + "id": "116235", + "name": "Eureka", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.80207000", + "longitude": "-124.16367000" + }, + { + "id": "116274", + "name": "Exeter", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.29606000", + "longitude": "-119.14205000" + }, + { + "id": "116286", + "name": "Fair Oaks", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.64463000", + "longitude": "-121.27217000" + }, + { + "id": "116292", + "name": "Fairbanks Ranch", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.99393000", + "longitude": "-117.18726000" + }, + { + "id": "116306", + "name": "Fairfax", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.98715000", + "longitude": "-122.58887000" + }, + { + "id": "116316", + "name": "Fairfield", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.24936000", + "longitude": "-122.03997000" + }, + { + "id": "116333", + "name": "Fairmead", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.07633000", + "longitude": "-120.19295000" + }, + { + "id": "116355", + "name": "Fairview", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.67854000", + "longitude": "-122.04580000" + }, + { + "id": "116376", + "name": "Fallbrook", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.37642000", + "longitude": "-117.25115000" + }, + { + "id": "116407", + "name": "Farmersville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.29773000", + "longitude": "-119.20678000" + }, + { + "id": "116471", + "name": "Felton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.05134000", + "longitude": "-122.07330000" + }, + { + "id": "116489", + "name": "Ferndale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.57624000", + "longitude": "-124.26394000" + }, + { + "id": "116503", + "name": "Fetters Hot Springs-Agua Caliente", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.32140000", + "longitude": "-122.48682000" + }, + { + "id": "116508", + "name": "Fillmore", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.39916000", + "longitude": "-118.91815000" + }, + { + "id": "116520", + "name": "Firebaugh", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.85884000", + "longitude": "-120.45601000" + }, + { + "id": "116589", + "name": "Florence-Graham", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96772000", + "longitude": "-118.24438000" + }, + { + "id": "116595", + "name": "Florin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.49602000", + "longitude": "-121.40884000" + }, + { + "id": "116626", + "name": "Folsom", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.67796000", + "longitude": "-121.17606000" + }, + { + "id": "116631", + "name": "Fontana", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09223000", + "longitude": "-117.43505000" + }, + { + "id": "116632", + "name": "Foothill Farms", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.67877000", + "longitude": "-121.35114000" + }, + { + "id": "116633", + "name": "Foothill Ranch", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.68641000", + "longitude": "-117.66088000" + }, + { + "id": "116635", + "name": "Ford City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.15441000", + "longitude": "-119.45623000" + }, + { + "id": "116662", + "name": "Forest Meadows", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.16851000", + "longitude": "-120.40659000" + }, + { + "id": "116667", + "name": "Forest Ranch", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.88211000", + "longitude": "-121.67275000" + }, + { + "id": "116671", + "name": "Foresthill", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.02018000", + "longitude": "-120.81799000" + }, + { + "id": "116673", + "name": "Forestville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.47352000", + "longitude": "-122.89027000" + }, + { + "id": "116695", + "name": "Fort Bragg", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.44572000", + "longitude": "-123.80529000" + }, + { + "id": "116719", + "name": "Fort Irwin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.26275000", + "longitude": "-116.68475000" + }, + { + "id": "116767", + "name": "Fortuna", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.59819000", + "longitude": "-124.15728000" + }, + { + "id": "116776", + "name": "Foster City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.55855000", + "longitude": "-122.27108000" + }, + { + "id": "116784", + "name": "Fountain Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.70918000", + "longitude": "-117.95367000" + }, + { + "id": "116797", + "name": "Fowler", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.63051000", + "longitude": "-119.67847000" + }, + { + "id": "116883", + "name": "Frazier Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.82276000", + "longitude": "-118.94482000" + }, + { + "id": "116903", + "name": "Freedom", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.93523000", + "longitude": "-121.77301000" + }, + { + "id": "116924", + "name": "Fremont", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.54827000", + "longitude": "-121.98857000" + }, + { + "id": "116929", + "name": "French Camp", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.88409000", + "longitude": "-121.27106000" + }, + { + "id": "116939", + "name": "Fresno", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.74773000", + "longitude": "-119.77237000" + }, + { + "id": "116940", + "name": "Fresno County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.75818000", + "longitude": "-119.64932000" + }, + { + "id": "116975", + "name": "Fruitridge Pocket", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.53265000", + "longitude": "-121.45581000" + }, + { + "id": "116983", + "name": "Fullerton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.87029000", + "longitude": "-117.92534000" + }, + { + "id": "117040", + "name": "Galt", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.25464000", + "longitude": "-121.29995000" + }, + { + "id": "117053", + "name": "Garden Acres", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.96381000", + "longitude": "-121.22939000" + }, + { + "id": "117065", + "name": "Garden Grove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.77391000", + "longitude": "-117.94145000" + }, + { + "id": "117069", + "name": "Gardena", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88835000", + "longitude": "-118.30896000" + }, + { + "id": "117094", + "name": "Garnet", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.90196000", + "longitude": "-116.54557000" + }, + { + "id": "117165", + "name": "Georgetown", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.90684000", + "longitude": "-120.83855000" + }, + { + "id": "117169", + "name": "Gerber", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.05627000", + "longitude": "-122.15027000" + }, + { + "id": "117225", + "name": "Gilroy", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.00578000", + "longitude": "-121.56828000" + }, + { + "id": "117261", + "name": "Glen Avon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.01168000", + "longitude": "-117.48477000" + }, + { + "id": "117286", + "name": "Glendale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14251000", + "longitude": "-118.25508000" + }, + { + "id": "117291", + "name": "Glendora", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13612000", + "longitude": "-117.86534000" + }, + { + "id": "117296", + "name": "Glenn County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.59840000", + "longitude": "-122.39221000" + }, + { + "id": "117345", + "name": "Gold River", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.62629000", + "longitude": "-121.24662000" + }, + { + "id": "117351", + "name": "Golden Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.14247000", + "longitude": "-118.49036000" + }, + { + "id": "117367", + "name": "Goleta", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.43583000", + "longitude": "-119.82764000" + }, + { + "id": "117372", + "name": "Gonzales", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.50663000", + "longitude": "-121.44438000" + }, + { + "id": "117378", + "name": "Good Hope", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.76474000", + "longitude": "-117.26698000" + }, + { + "id": "117410", + "name": "Goshen", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.35106000", + "longitude": "-119.42012000" + }, + { + "id": "117476", + "name": "Grand Terrace", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.03390000", + "longitude": "-117.31365000" + }, + { + "id": "117493", + "name": "Granite Bay", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.76323000", + "longitude": "-121.16384000" + }, + { + "id": "117499", + "name": "Granite Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.80311000", + "longitude": "-116.90475000" + }, + { + "id": "117543", + "name": "Grass Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.21906000", + "longitude": "-121.06106000" + }, + { + "id": "117545", + "name": "Graton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.43630000", + "longitude": "-122.86972000" + }, + { + "id": "117590", + "name": "Green Acres", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.73808000", + "longitude": "-117.07642000" + }, + { + "id": "117611", + "name": "Green Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.25297000", + "longitude": "-122.16219000" + }, + { + "id": "117613", + "name": "Greenacres", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.38329000", + "longitude": "-119.10983000" + }, + { + "id": "117654", + "name": "Greenfield", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.32080000", + "longitude": "-121.24381000" + }, + { + "id": "117696", + "name": "Greenville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.13961000", + "longitude": "-120.95107000" + }, + { + "id": "117730", + "name": "Gridley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.36378000", + "longitude": "-121.69358000" + }, + { + "id": "117760", + "name": "Grover Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.12164000", + "longitude": "-120.62128000" + }, + { + "id": "117777", + "name": "Guadalupe", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.97164000", + "longitude": "-120.57184000" + }, + { + "id": "117780", + "name": "Guerneville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.50186000", + "longitude": "-122.99611000" + }, + { + "id": "117810", + "name": "Gustine", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.25772000", + "longitude": "-120.99882000" + }, + { + "id": "117825", + "name": "Hacienda Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.99307000", + "longitude": "-117.96868000" + }, + { + "id": "117856", + "name": "Half Moon Bay", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.46355000", + "longitude": "-122.42859000" + }, + { + "id": "117895", + "name": "Hamilton City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.74266000", + "longitude": "-122.01359000" + }, + { + "id": "117960", + "name": "Hanford", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.32745000", + "longitude": "-119.64568000" + }, + { + "id": "117982", + "name": "Happy Camp", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.79275000", + "longitude": "-123.38080000" + }, + { + "id": "117986", + "name": "Harbison Canyon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.82033000", + "longitude": "-116.83002000" + }, + { + "id": "118099", + "name": "Hartley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.41713000", + "longitude": "-121.94691000" + }, + { + "id": "118160", + "name": "Hawaiian Gardens", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.83140000", + "longitude": "-118.07284000" + }, + { + "id": "118175", + "name": "Hawthorne", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.91640000", + "longitude": "-118.35257000" + }, + { + "id": "118186", + "name": "Hayfork", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.55431000", + "longitude": "-123.18308000" + }, + { + "id": "118197", + "name": "Hayward", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.66882000", + "longitude": "-122.08080000" + }, + { + "id": "118217", + "name": "Healdsburg", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.61047000", + "longitude": "-122.86916000" + }, + { + "id": "118228", + "name": "Heber", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.73089000", + "longitude": "-115.52972000" + }, + { + "id": "118264", + "name": "Hemet", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74761000", + "longitude": "-116.97307000" + }, + { + "id": "118311", + "name": "Herald", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.29575000", + "longitude": "-121.24439000" + }, + { + "id": "118314", + "name": "Hercules", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.01714000", + "longitude": "-122.28858000" + }, + { + "id": "118331", + "name": "Hermosa Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.86224000", + "longitude": "-118.39952000" + }, + { + "id": "118344", + "name": "Hesperia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.42639000", + "longitude": "-117.30088000" + }, + { + "id": "118376", + "name": "Hidden Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.16028000", + "longitude": "-118.65231000" + }, + { + "id": "118377", + "name": "Hidden Meadows", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.22531000", + "longitude": "-117.11253000" + }, + { + "id": "118380", + "name": "Hidden Valley Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.80796000", + "longitude": "-122.55832000" + }, + { + "id": "118391", + "name": "Highgrove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.01585000", + "longitude": "-117.33338000" + }, + { + "id": "118398", + "name": "Highland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.12834000", + "longitude": "-117.20865000" + }, + { + "id": "118421", + "name": "Highlands-Baywood Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.52272000", + "longitude": "-122.34506000" + }, + { + "id": "118455", + "name": "Hillsborough", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.57410000", + "longitude": "-122.37942000" + }, + { + "id": "118471", + "name": "Hilmar-Irwin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.40454000", + "longitude": "-120.85042000" + }, + { + "id": "118552", + "name": "Hollister", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.85245000", + "longitude": "-121.40160000" + }, + { + "id": "118567", + "name": "Hollywood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09834000", + "longitude": "-118.32674000" + }, + { + "id": "118582", + "name": "Holtville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.81116000", + "longitude": "-115.38026000" + }, + { + "id": "118586", + "name": "Home Garden", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.30328000", + "longitude": "-119.63624000" + }, + { + "id": "118587", + "name": "Home Gardens", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.87807000", + "longitude": "-117.52088000" + }, + { + "id": "118590", + "name": "Homeland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74308000", + "longitude": "-117.10920000" + }, + { + "id": "118764", + "name": "Hughson", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.59688000", + "longitude": "-120.86604000" + }, + { + "id": "118779", + "name": "Humboldt County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.70501000", + "longitude": "-123.91582000" + }, + { + "id": "118781", + "name": "Humboldt Hill", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.72596000", + "longitude": "-124.18978000" + }, + { + "id": "118805", + "name": "Huntington Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.66030000", + "longitude": "-117.99923000" + }, + { + "id": "118807", + "name": "Huntington Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.98168000", + "longitude": "-118.22507000" + }, + { + "id": "118825", + "name": "Huron", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.20273000", + "longitude": "-120.10292000" + }, + { + "id": "118855", + "name": "Hydesville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.54763000", + "longitude": "-124.09727000" + }, + { + "id": "118874", + "name": "Idyllwild", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74002000", + "longitude": "-116.71891000" + }, + { + "id": "118875", + "name": "Idyllwild-Pine Cove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74429000", + "longitude": "-116.72587000" + }, + { + "id": "118883", + "name": "Imperial", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.84755000", + "longitude": "-115.56944000" + }, + { + "id": "118885", + "name": "Imperial Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.58394000", + "longitude": "-117.11308000" + }, + { + "id": "118886", + "name": "Imperial County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.03951000", + "longitude": "-115.36532000" + }, + { + "id": "118921", + "name": "Indian Wells", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.71791000", + "longitude": "-116.34311000" + }, + { + "id": "118929", + "name": "Indio", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.72070000", + "longitude": "-116.21677000" + }, + { + "id": "118937", + "name": "Inglewood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96168000", + "longitude": "-118.35313000" + }, + { + "id": "118951", + "name": "Interlaken", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.95134000", + "longitude": "-121.73384000" + }, + { + "id": "118957", + "name": "Inverness", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.10103000", + "longitude": "-122.85694000" + }, + { + "id": "118964", + "name": "Inyo County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.51113000", + "longitude": "-117.41079000" + }, + { + "id": "118965", + "name": "Inyokern", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.64690000", + "longitude": "-117.81257000" + }, + { + "id": "118970", + "name": "Ione", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.35269000", + "longitude": "-120.93272000" + }, + { + "id": "119004", + "name": "Irvine", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.66946000", + "longitude": "-117.82311000" + }, + { + "id": "119014", + "name": "Irwindale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10695000", + "longitude": "-117.93534000" + }, + { + "id": "119021", + "name": "Isla Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.41333000", + "longitude": "-119.86097000" + }, + { + "id": "119049", + "name": "Ivanhoe", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.38717000", + "longitude": "-119.21789000" + }, + { + "id": "119073", + "name": "Jackson", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.34880000", + "longitude": "-120.77410000" + }, + { + "id": "119126", + "name": "Jamestown", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.95326000", + "longitude": "-120.42270000" + }, + { + "id": "119128", + "name": "Jamul", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.71700000", + "longitude": "-116.87613000" + }, + { + "id": "119132", + "name": "Janesville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29656000", + "longitude": "-120.52411000" + }, + { + "id": "119283", + "name": "Johnstonville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38434000", + "longitude": "-120.58745000" + }, + { + "id": "119323", + "name": "Joshua Tree", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13473000", + "longitude": "-116.31307000" + }, + { + "id": "119330", + "name": "Julian", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.07866000", + "longitude": "-116.60196000" + }, + { + "id": "119343", + "name": "Jurupa Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.99251000", + "longitude": "-117.51644000" + }, + { + "id": "119431", + "name": "Kelseyville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.97795000", + "longitude": "-122.83944000" + }, + { + "id": "119469", + "name": "Kennedy", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.92992000", + "longitude": "-121.25272000" + }, + { + "id": "119484", + "name": "Kensington", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.91048000", + "longitude": "-122.28025000" + }, + { + "id": "119495", + "name": "Kentfield", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.95215000", + "longitude": "-122.55720000" + }, + { + "id": "119505", + "name": "Kenwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.41380000", + "longitude": "-122.54609000" + }, + { + "id": "119512", + "name": "Kerman", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.72356000", + "longitude": "-120.05988000" + }, + { + "id": "119514", + "name": "Kern County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.34285000", + "longitude": "-118.72990000" + }, + { + "id": "119516", + "name": "Kernville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.75467000", + "longitude": "-118.42536000" + }, + { + "id": "119528", + "name": "Kettleman City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.00829000", + "longitude": "-119.96180000" + }, + { + "id": "119543", + "name": "Keyes", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.55660000", + "longitude": "-120.91549000" + }, + { + "id": "119579", + "name": "King City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.21274000", + "longitude": "-121.12603000" + }, + { + "id": "119598", + "name": "Kings Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.23768000", + "longitude": "-120.02658000" + }, + { + "id": "119600", + "name": "Kings County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.07536000", + "longitude": "-119.81550000" + }, + { + "id": "119609", + "name": "Kingsburg", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.51384000", + "longitude": "-119.55402000" + }, + { + "id": "119675", + "name": "Knightsen", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.96881000", + "longitude": "-121.66801000" + }, + { + "id": "119708", + "name": "Koreatown", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.05779000", + "longitude": "-118.30091000" + }, + { + "id": "119736", + "name": "La Cañada Flintridge", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.19917000", + "longitude": "-118.18785000" + }, + { + "id": "119742", + "name": "La Crescenta-Montrose", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.23216000", + "longitude": "-118.23529000" + }, + { + "id": "119755", + "name": "La Habra", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.93196000", + "longitude": "-117.94617000" + }, + { + "id": "119756", + "name": "La Habra Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96085000", + "longitude": "-117.95062000" + }, + { + "id": "119760", + "name": "La Jolla", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.84727000", + "longitude": "-117.27420000" + }, + { + "id": "119765", + "name": "La Mesa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.76783000", + "longitude": "-117.02308000" + }, + { + "id": "119767", + "name": "La Mirada", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.91724000", + "longitude": "-118.01201000" + }, + { + "id": "119769", + "name": "La Palma", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.84640000", + "longitude": "-118.04673000" + }, + { + "id": "119779", + "name": "La Presa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.70811000", + "longitude": "-116.99725000" + }, + { + "id": "119782", + "name": "La Puente", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.02001000", + "longitude": "-117.94951000" + }, + { + "id": "119783", + "name": "La Quinta", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.66336000", + "longitude": "-116.31001000" + }, + { + "id": "119784", + "name": "La Riviera", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.56685000", + "longitude": "-121.35690000" + }, + { + "id": "119789", + "name": "La Selva Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.93662000", + "longitude": "-121.86468000" + }, + { + "id": "119793", + "name": "La Verne", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10084000", + "longitude": "-117.76784000" + }, + { + "id": "119823", + "name": "Ladera", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.39994000", + "longitude": "-122.19830000" + }, + { + "id": "119824", + "name": "Ladera Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.99418000", + "longitude": "-118.37535000" + }, + { + "id": "119825", + "name": "Ladera Ranch", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.57086000", + "longitude": "-117.63561000" + }, + { + "id": "119835", + "name": "Lafayette", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.88576000", + "longitude": "-122.11802000" + }, + { + "id": "119849", + "name": "Laguna", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.42102000", + "longitude": "-121.42384000" + }, + { + "id": "119852", + "name": "Laguna Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.54225000", + "longitude": "-117.78311000" + }, + { + "id": "119854", + "name": "Laguna Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.61252000", + "longitude": "-117.71283000" + }, + { + "id": "119855", + "name": "Laguna Niguel", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.52253000", + "longitude": "-117.70755000" + }, + { + "id": "119858", + "name": "Laguna Woods", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.61030000", + "longitude": "-117.72533000" + }, + { + "id": "119859", + "name": "Lagunitas-Forest Knolls", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.01793000", + "longitude": "-122.69124000" + }, + { + "id": "119866", + "name": "Lake Arrowhead", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.24834000", + "longitude": "-117.18921000" + }, + { + "id": "119896", + "name": "Lake County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.09965000", + "longitude": "-122.75318000" + }, + { + "id": "119906", + "name": "Lake Elsinore", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.66808000", + "longitude": "-117.32726000" + }, + { + "id": "119911", + "name": "Lake Forest", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.64697000", + "longitude": "-117.68922000" + }, + { + "id": "119923", + "name": "Lake Isabella", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.61801000", + "longitude": "-118.47314000" + }, + { + "id": "119931", + "name": "Lake Los Angeles", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.61249000", + "longitude": "-117.82812000" + }, + { + "id": "119950", + "name": "Lake Nacimiento", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.72830000", + "longitude": "-120.87963000" + }, + { + "id": "120005", + "name": "Lake of the Pines", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.03962000", + "longitude": "-121.05661000" + }, + { + "id": "119973", + "name": "Lake San Marcos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.12615000", + "longitude": "-117.20837000" + }, + { + "id": "119993", + "name": "Lake Wildwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.23295000", + "longitude": "-121.20051000" + }, + { + "id": "120020", + "name": "Lakeland Village", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.63863000", + "longitude": "-117.34393000" + }, + { + "id": "120023", + "name": "Lakeport", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.04295000", + "longitude": "-122.91583000" + }, + { + "id": "120032", + "name": "Lakeside", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.85727000", + "longitude": "-116.92225000" + }, + { + "id": "120040", + "name": "Lakeview", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.83863000", + "longitude": "-117.11809000" + }, + { + "id": "120051", + "name": "Lakewood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.85363000", + "longitude": "-118.13396000" + }, + { + "id": "120074", + "name": "Lamont", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.25968000", + "longitude": "-118.91427000" + }, + { + "id": "120089", + "name": "Lancaster", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.69804000", + "longitude": "-118.13674000" + }, + { + "id": "120147", + "name": "Larkfield-Wikiup", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.51342000", + "longitude": "-122.75094000" + }, + { + "id": "120148", + "name": "Larkspur", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.93409000", + "longitude": "-122.53525000" + }, + { + "id": "120156", + "name": "Las Flores", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.58808000", + "longitude": "-117.62672000" + }, + { + "id": "120158", + "name": "Las Lomas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.86523000", + "longitude": "-121.73495000" + }, + { + "id": "120166", + "name": "Lassen County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.67359000", + "longitude": "-120.59433000" + }, + { + "id": "120170", + "name": "Lathrop", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.82270000", + "longitude": "-121.27661000" + }, + { + "id": "120174", + "name": "Laton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.43328000", + "longitude": "-119.68680000" + }, + { + "id": "120222", + "name": "Lawndale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88724000", + "longitude": "-118.35257000" + }, + { + "id": "120255", + "name": "Laytonville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.68821000", + "longitude": "-123.48279000" + }, + { + "id": "120260", + "name": "Le Grand", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.22855000", + "longitude": "-120.24823000" + }, + { + "id": "120298", + "name": "Lebec", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.84164000", + "longitude": "-118.86482000" + }, + { + "id": "120359", + "name": "Lemon Grove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.74255000", + "longitude": "-117.03142000" + }, + { + "id": "120362", + "name": "Lemoore", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.30078000", + "longitude": "-119.78291000" + }, + { + "id": "120363", + "name": "Lemoore Station", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.26326000", + "longitude": "-119.90476000" + }, + { + "id": "120371", + "name": "Lennox", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.93807000", + "longitude": "-118.35258000" + }, + { + "id": "120378", + "name": "Lenwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.87665000", + "longitude": "-117.10393000" + }, + { + "id": "120387", + "name": "Leona Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.61832000", + "longitude": "-118.28813000" + }, + { + "id": "120427", + "name": "Lewiston", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.70737000", + "longitude": "-122.80752000" + }, + { + "id": "120454", + "name": "Lexington Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.16467000", + "longitude": "-121.97301000" + }, + { + "id": "120509", + "name": "Lincoln", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.89156000", + "longitude": "-121.29301000" + }, + { + "id": "120547", + "name": "Lincoln Village", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.00520000", + "longitude": "-121.32828000" + }, + { + "id": "120557", + "name": "Linda", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.12767000", + "longitude": "-121.55080000" + }, + { + "id": "120566", + "name": "Linden", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02131000", + "longitude": "-121.08383000" + }, + { + "id": "120574", + "name": "Lindsay", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.20301000", + "longitude": "-119.08816000" + }, + { + "id": "120633", + "name": "Littlerock", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.52110000", + "longitude": "-117.98368000" + }, + { + "id": "120640", + "name": "Live Oak", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.98356000", + "longitude": "-121.98052000" + }, + { + "id": "120644", + "name": "Livermore", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.68187000", + "longitude": "-121.76801000" + }, + { + "id": "120652", + "name": "Livingston", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.38688000", + "longitude": "-120.72353000" + }, + { + "id": "120675", + "name": "Lockeford", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.16353000", + "longitude": "-121.14994000" + }, + { + "id": "120691", + "name": "Lodi", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.13020000", + "longitude": "-121.27245000" + }, + { + "id": "120712", + "name": "Loma Linda", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.04835000", + "longitude": "-117.26115000" + }, + { + "id": "120713", + "name": "Loma Rica", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.31183000", + "longitude": "-121.41774000" + }, + { + "id": "120716", + "name": "Lomita", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.79224000", + "longitude": "-118.31507000" + }, + { + "id": "120717", + "name": "Lompico", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.10550000", + "longitude": "-122.05274000" + }, + { + "id": "120718", + "name": "Lompoc", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.63915000", + "longitude": "-120.45794000" + }, + { + "id": "120722", + "name": "London", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.47606000", + "longitude": "-119.44318000" + }, + { + "id": "120729", + "name": "Lone Pine", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.60626000", + "longitude": "-118.06462000" + }, + { + "id": "120738", + "name": "Long Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.76696000", + "longitude": "-118.18923000" + }, + { + "id": "120767", + "name": "Loomis", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.82129000", + "longitude": "-121.19300000" + }, + { + "id": "120778", + "name": "Los Alamitos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.80307000", + "longitude": "-118.07256000" + }, + { + "id": "120779", + "name": "Los Alamos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.74443000", + "longitude": "-120.27821000" + }, + { + "id": "120782", + "name": "Los Altos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.38522000", + "longitude": "-122.11413000" + }, + { + "id": "120783", + "name": "Los Altos Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.37966000", + "longitude": "-122.13746000" + }, + { + "id": "120784", + "name": "Los Angeles", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.05223000", + "longitude": "-118.24368000" + }, + { + "id": "120785", + "name": "Los Angeles County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.19801000", + "longitude": "-118.26102000" + }, + { + "id": "120786", + "name": "Los Banos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.05828000", + "longitude": "-120.84992000" + }, + { + "id": "120789", + "name": "Los Gatos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.22661000", + "longitude": "-121.97468000" + }, + { + "id": "120792", + "name": "Los Molinos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.02127000", + "longitude": "-122.10027000" + }, + { + "id": "120793", + "name": "Los Olivos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.66776000", + "longitude": "-120.11487000" + }, + { + "id": "120794", + "name": "Los Osos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.31109000", + "longitude": "-120.83240000" + }, + { + "id": "120796", + "name": "Los Serranos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.97279000", + "longitude": "-117.70811000" + }, + { + "id": "120798", + "name": "Lost Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.61635000", + "longitude": "-119.69429000" + }, + { + "id": "120842", + "name": "Lower Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.91045000", + "longitude": "-122.61026000" + }, + { + "id": "120855", + "name": "Loyola", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.35133000", + "longitude": "-122.10052000" + }, + { + "id": "120862", + "name": "Lucas Valley-Marinwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.04011000", + "longitude": "-122.57550000" + }, + { + "id": "120865", + "name": "Lucerne", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.38078000", + "longitude": "-119.66430000" + }, + { + "id": "120866", + "name": "Lucerne Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.44389000", + "longitude": "-116.96781000" + }, + { + "id": "120934", + "name": "Lynwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.93029000", + "longitude": "-118.21146000" + }, + { + "id": "120980", + "name": "Madera", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96134000", + "longitude": "-120.06072000" + }, + { + "id": "120981", + "name": "Madera Acres", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.01911000", + "longitude": "-120.06683000" + }, + { + "id": "120982", + "name": "Madera County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.21804000", + "longitude": "-119.76265000" + }, + { + "id": "121031", + "name": "Magalia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.81211000", + "longitude": "-121.57831000" + }, + { + "id": "121062", + "name": "Malibu", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.02577000", + "longitude": "-118.78040000" + }, + { + "id": "121077", + "name": "Mammoth Lakes", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.64855000", + "longitude": "-118.97208000" + }, + { + "id": "121117", + "name": "Manhattan Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88474000", + "longitude": "-118.41091000" + }, + { + "id": "121154", + "name": "Manteca", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.79743000", + "longitude": "-121.21605000" + }, + { + "id": "121196", + "name": "March Air Force Base", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.89209000", + "longitude": "-117.26310000" + }, + { + "id": "121212", + "name": "Maricopa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.05886000", + "longitude": "-119.40095000" + }, + { + "id": "121221", + "name": "Marin City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.86854000", + "longitude": "-122.50914000" + }, + { + "id": "121222", + "name": "Marin County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.05518000", + "longitude": "-122.74886000" + }, + { + "id": "121223", + "name": "Marina", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.68440000", + "longitude": "-121.80217000" + }, + { + "id": "121224", + "name": "Marina del Rey", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.98029000", + "longitude": "-118.45174000" + }, + { + "id": "121264", + "name": "Mariposa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.48494000", + "longitude": "-119.96628000" + }, + { + "id": "121265", + "name": "Mariposa County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.58152000", + "longitude": "-119.90552000" + }, + { + "id": "121345", + "name": "Martinez", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.01937000", + "longitude": "-122.13413000" + }, + { + "id": "121360", + "name": "Marysville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.14573000", + "longitude": "-121.59135000" + }, + { + "id": "121401", + "name": "Matheny", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.17066000", + "longitude": "-119.35158000" + }, + { + "id": "121430", + "name": "Maxwell", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.27628000", + "longitude": "-122.19137000" + }, + { + "id": "121439", + "name": "Mayflower Village", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.11501000", + "longitude": "-118.00979000" + }, + { + "id": "121459", + "name": "Maywood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.98668000", + "longitude": "-118.18535000" + }, + { + "id": "121471", + "name": "McCloud", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.25571000", + "longitude": "-122.13945000" + }, + { + "id": "121500", + "name": "McFarland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.67801000", + "longitude": "-119.22927000" + }, + { + "id": "121524", + "name": "McKinleyville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.94652000", + "longitude": "-124.10062000" + }, + { + "id": "121554", + "name": "Mead Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.83335000", + "longitude": "-117.29615000" + }, + { + "id": "121563", + "name": "Meadow Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.00101000", + "longitude": "-121.02189000" + }, + { + "id": "121567", + "name": "Meadowbrook", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.72578000", + "longitude": "-117.28509000" + }, + { + "id": "121578", + "name": "Mecca", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.57219000", + "longitude": "-116.07820000" + }, + { + "id": "121619", + "name": "Meiners Oaks", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.44694000", + "longitude": "-119.27928000" + }, + { + "id": "121652", + "name": "Mendocino County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.43362000", + "longitude": "-123.43155000" + }, + { + "id": "121657", + "name": "Mendota", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.75356000", + "longitude": "-120.38156000" + }, + { + "id": "121659", + "name": "Menifee", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.72835000", + "longitude": "-117.14642000" + }, + { + "id": "121661", + "name": "Menlo Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.45383000", + "longitude": "-122.18219000" + }, + { + "id": "121667", + "name": "Mentone", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.07001000", + "longitude": "-117.13448000" + }, + { + "id": "121671", + "name": "Merced", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.30216000", + "longitude": "-120.48297000" + }, + { + "id": "121672", + "name": "Merced County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.19186000", + "longitude": "-120.71767000" + }, + { + "id": "121722", + "name": "Mesa Verde", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.60586000", + "longitude": "-114.73107000" + }, + { + "id": "121794", + "name": "Middletown", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.75240000", + "longitude": "-122.61499000" + }, + { + "id": "121809", + "name": "Midpines", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.54438000", + "longitude": "-119.92045000" + }, + { + "id": "121821", + "name": "Midway City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74474000", + "longitude": "-117.98923000" + }, + { + "id": "121868", + "name": "Mill Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.90604000", + "longitude": "-122.54498000" + }, + { + "id": "121871", + "name": "Millbrae", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.59855000", + "longitude": "-122.38719000" + }, + { + "id": "121909", + "name": "Milpitas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.42827000", + "longitude": "-121.90662000" + }, + { + "id": "121949", + "name": "Minkler", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.72384000", + "longitude": "-119.45818000" + }, + { + "id": "121971", + "name": "Mira Mesa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.91560000", + "longitude": "-117.14392000" + }, + { + "id": "121972", + "name": "Mira Monte", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.43361000", + "longitude": "-119.28511000" + }, + { + "id": "121984", + "name": "Mission Canyon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.45083000", + "longitude": "-119.71291000" + }, + { + "id": "121985", + "name": "Mission District", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.75993000", + "longitude": "-122.41914000" + }, + { + "id": "121987", + "name": "Mission Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.68609000", + "longitude": "-120.43683000" + }, + { + "id": "121988", + "name": "Mission Viejo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.60002000", + "longitude": "-117.67200000" + }, + { + "id": "122014", + "name": "Modesto", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.63910000", + "longitude": "-120.99688000" + }, + { + "id": "122015", + "name": "Modoc County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.58985000", + "longitude": "-120.72497000" + }, + { + "id": "122023", + "name": "Mojave", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.05247000", + "longitude": "-118.17396000" + }, + { + "id": "122048", + "name": "Mono County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.93899000", + "longitude": "-118.88671000" + }, + { + "id": "122049", + "name": "Mono Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.99770000", + "longitude": "-120.26991000" + }, + { + "id": "122088", + "name": "Monrovia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14806000", + "longitude": "-117.99895000" + }, + { + "id": "122098", + "name": "Montague", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.72820000", + "longitude": "-122.52780000" + }, + { + "id": "122100", + "name": "Montalvin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.99548000", + "longitude": "-122.33275000" + }, + { + "id": "122102", + "name": "Montara", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.54216000", + "longitude": "-122.51609000" + }, + { + "id": "122107", + "name": "Montclair", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.07751000", + "longitude": "-117.68978000" + }, + { + "id": "122109", + "name": "Monte Rio", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.46547000", + "longitude": "-123.00889000" + }, + { + "id": "122110", + "name": "Monte Sereno", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.23633000", + "longitude": "-121.99246000" + }, + { + "id": "122114", + "name": "Montebello", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.00946000", + "longitude": "-118.10535000" + }, + { + "id": "122115", + "name": "Montecito", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.43666000", + "longitude": "-119.63208000" + }, + { + "id": "122120", + "name": "Monterey", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.60024000", + "longitude": "-121.89468000" + }, + { + "id": "122121", + "name": "Monterey County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.23977000", + "longitude": "-121.30890000" + }, + { + "id": "122122", + "name": "Monterey Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.06251000", + "longitude": "-118.12285000" + }, + { + "id": "122193", + "name": "Monument Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.66429000", + "longitude": "-121.87566000" + }, + { + "id": "122213", + "name": "Moorpark", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.28556000", + "longitude": "-118.88204000" + }, + { + "id": "122221", + "name": "Morada", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.03853000", + "longitude": "-121.24578000" + }, + { + "id": "122222", + "name": "Moraga", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.83493000", + "longitude": "-122.12969000" + }, + { + "id": "122231", + "name": "Moreno Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.93752000", + "longitude": "-117.23059000" + }, + { + "id": "122246", + "name": "Morgan Hill", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.13050000", + "longitude": "-121.65439000" + }, + { + "id": "122261", + "name": "Morongo Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.04695000", + "longitude": "-116.58085000" + }, + { + "id": "122288", + "name": "Morro Bay", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.36581000", + "longitude": "-120.84990000" + }, + { + "id": "122307", + "name": "Moss Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.52744000", + "longitude": "-122.51331000" + }, + { + "id": "122347", + "name": "Mount Hermon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.05106000", + "longitude": "-122.05857000" + }, + { + "id": "122388", + "name": "Mount Shasta", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.31024000", + "longitude": "-122.31225000" + }, + { + "id": "122418", + "name": "Mountain House", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.78326000", + "longitude": "-121.54273000" + }, + { + "id": "122425", + "name": "Mountain Ranch", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.22825000", + "longitude": "-120.54076000" + }, + { + "id": "122431", + "name": "Mountain View", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.38605000", + "longitude": "-122.08385000" + }, + { + "id": "122434", + "name": "Mountain View Acres", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.49666000", + "longitude": "-117.34894000" + }, + { + "id": "122488", + "name": "Murphys", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.13762000", + "longitude": "-120.46105000" + }, + { + "id": "122498", + "name": "Murrieta", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.55391000", + "longitude": "-117.21392000" + }, + { + "id": "122499", + "name": "Murrieta Hot Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.56058000", + "longitude": "-117.15809000" + }, + { + "id": "122506", + "name": "Muscoy", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.15418000", + "longitude": "-117.34421000" + }, + { + "id": "122525", + "name": "Myrtletown", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78874000", + "longitude": "-124.13034000" + }, + { + "id": "122546", + "name": "Napa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.29714000", + "longitude": "-122.28553000" + }, + { + "id": "122547", + "name": "Napa County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.50647000", + "longitude": "-122.33053000" + }, + { + "id": "122591", + "name": "National City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.67811000", + "longitude": "-117.09920000" + }, + { + "id": "122614", + "name": "Needles", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.84806000", + "longitude": "-114.61413000" + }, + { + "id": "122651", + "name": "Nevada City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.26173000", + "longitude": "-121.01779000" + }, + { + "id": "122653", + "name": "Nevada County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.30137000", + "longitude": "-120.76875000" + }, + { + "id": "122805", + "name": "Newark", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.52966000", + "longitude": "-122.04024000" + }, + { + "id": "122821", + "name": "Newcastle", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.87407000", + "longitude": "-121.13328000" + }, + { + "id": "122834", + "name": "Newman", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.31383000", + "longitude": "-121.02076000" + }, + { + "id": "122853", + "name": "Newport Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.61891000", + "longitude": "-117.92895000" + }, + { + "id": "122885", + "name": "Nice", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.12323000", + "longitude": "-122.84833000" + }, + { + "id": "122899", + "name": "Niland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.24004000", + "longitude": "-115.51888000" + }, + { + "id": "122905", + "name": "Nipomo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.04275000", + "longitude": "-120.47600000" + }, + { + "id": "122925", + "name": "Noe Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.75018000", + "longitude": "-122.43369000" + }, + { + "id": "122939", + "name": "Norco", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.93113000", + "longitude": "-117.54866000" + }, + { + "id": "122968", + "name": "North Auburn", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.93129000", + "longitude": "-121.08189000" + }, + { + "id": "123020", + "name": "North Edwards", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.01664000", + "longitude": "-117.83284000" + }, + { + "id": "123021", + "name": "North El Monte", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10279000", + "longitude": "-118.02423000" + }, + { + "id": "123024", + "name": "North Fair Oaks", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.47438000", + "longitude": "-122.19663000" + }, + { + "id": "123039", + "name": "North Highlands", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.68574000", + "longitude": "-121.37217000" + }, + { + "id": "123041", + "name": "North Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.23639000", + "longitude": "-118.48472000" + }, + { + "id": "123042", + "name": "North Hollywood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.17223000", + "longitude": "-118.37897000" + }, + { + "id": "123050", + "name": "North Lakeport", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.08831000", + "longitude": "-122.90538000" + }, + { + "id": "123094", + "name": "North Richmond", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.95881000", + "longitude": "-122.36747000" + }, + { + "id": "123117", + "name": "North Tustin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.76446000", + "longitude": "-117.79394000" + }, + { + "id": "123163", + "name": "Northridge", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.22834000", + "longitude": "-118.53675000" + }, + { + "id": "123191", + "name": "Norwalk", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.90224000", + "longitude": "-118.08173000" + }, + { + "id": "123207", + "name": "Novato", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.10742000", + "longitude": "-122.56970000" + }, + { + "id": "123216", + "name": "Nuevo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.80141000", + "longitude": "-117.14587000" + }, + { + "id": "123248", + "name": "Oak Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.38313000", + "longitude": "-117.38135000" + }, + { + "id": "123257", + "name": "Oak Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.17917000", + "longitude": "-118.76287000" + }, + { + "id": "123266", + "name": "Oak View", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.40000000", + "longitude": "-119.30011000" + }, + { + "id": "123274", + "name": "Oakdale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.76659000", + "longitude": "-120.84715000" + }, + { + "id": "123281", + "name": "Oakhurst", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.32800000", + "longitude": "-119.64932000" + }, + { + "id": "123293", + "name": "Oakland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.80437000", + "longitude": "-122.27080000" + }, + { + "id": "123298", + "name": "Oakley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.99742000", + "longitude": "-121.71245000" + }, + { + "id": "123313", + "name": "Oasis", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.46586000", + "longitude": "-116.09889000" + }, + { + "id": "123321", + "name": "Occidental", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.40741000", + "longitude": "-122.94833000" + }, + { + "id": "123341", + "name": "Oceano", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.09886000", + "longitude": "-120.61239000" + }, + { + "id": "123344", + "name": "Oceanside", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.19587000", + "longitude": "-117.37948000" + }, + { + "id": "123388", + "name": "Oildale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.41968000", + "longitude": "-119.01955000" + }, + { + "id": "123390", + "name": "Ojai", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.44805000", + "longitude": "-119.24289000" + }, + { + "id": "123418", + "name": "Old Fig Garden", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.79885000", + "longitude": "-119.80515000" + }, + { + "id": "123441", + "name": "Olivehurst", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.09545000", + "longitude": "-121.55219000" + }, + { + "id": "123486", + "name": "Ontario", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.06334000", + "longitude": "-117.65089000" + }, + { + "id": "123495", + "name": "Opal Cliffs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96078000", + "longitude": "-121.96413000" + }, + { + "id": "123510", + "name": "Orange", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.78779000", + "longitude": "-117.85311000" + }, + { + "id": "123521", + "name": "Orange County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.67691000", + "longitude": "-117.77617000" + }, + { + "id": "123522", + "name": "Orange Cove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.62439000", + "longitude": "-119.31373000" + }, + { + "id": "123530", + "name": "Orangevale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.67851000", + "longitude": "-121.22578000" + }, + { + "id": "123541", + "name": "Orcutt", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.86526000", + "longitude": "-120.43600000" + }, + { + "id": "123554", + "name": "Orinda", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.87715000", + "longitude": "-122.17969000" + }, + { + "id": "123559", + "name": "Orland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.74738000", + "longitude": "-122.19637000" + }, + { + "id": "123577", + "name": "Orosi", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.54495000", + "longitude": "-119.28734000" + }, + { + "id": "123578", + "name": "Oroville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.51394000", + "longitude": "-121.55776000" + }, + { + "id": "123580", + "name": "Oroville East", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.51126000", + "longitude": "-121.47519000" + }, + { + "id": "123689", + "name": "Oxnard", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.19750000", + "longitude": "-119.17705000" + }, + { + "id": "123705", + "name": "Pacheco", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.98353000", + "longitude": "-122.07524000" + }, + { + "id": "123710", + "name": "Pacific Grove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.61774000", + "longitude": "-121.91662000" + }, + { + "id": "123711", + "name": "Pacifica", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.61383000", + "longitude": "-122.48692000" + }, + { + "id": "123729", + "name": "Pajaro", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.90412000", + "longitude": "-121.74856000" + }, + { + "id": "123735", + "name": "Palermo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.43544000", + "longitude": "-121.53802000" + }, + { + "id": "123748", + "name": "Palm Desert", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.72255000", + "longitude": "-116.37697000" + }, + { + "id": "123752", + "name": "Palm Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.83030000", + "longitude": "-116.54529000" + }, + { + "id": "123757", + "name": "Palmdale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.57943000", + "longitude": "-118.11646000" + }, + { + "id": "123781", + "name": "Palo Alto", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.44188000", + "longitude": "-122.14302000" + }, + { + "id": "123783", + "name": "Palo Cedro", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.56376000", + "longitude": "-122.23889000" + }, + { + "id": "123791", + "name": "Palos Verdes Estates", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.80105000", + "longitude": "-118.39245000" + }, + { + "id": "123818", + "name": "Paradise", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.75961000", + "longitude": "-121.62192000" + }, + { + "id": "123824", + "name": "Paramount", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88946000", + "longitude": "-118.15979000" + }, + { + "id": "123874", + "name": "Parksdale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.94717000", + "longitude": "-120.02294000" + }, + { + "id": "123881", + "name": "Parkway", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.49602000", + "longitude": "-121.45884000" + }, + { + "id": "123882", + "name": "Parkwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.92689000", + "longitude": "-120.04461000" + }, + { + "id": "123884", + "name": "Parlier", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.61162000", + "longitude": "-119.52707000" + }, + { + "id": "123897", + "name": "Pasadena", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14778000", + "longitude": "-118.14452000" + }, + { + "id": "123899", + "name": "Pasatiempo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.00439000", + "longitude": "-122.02580000" + }, + { + "id": "123904", + "name": "Paso Robles", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.62664000", + "longitude": "-120.69100000" + }, + { + "id": "123916", + "name": "Patterson", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.47160000", + "longitude": "-121.12966000" + }, + { + "id": "123917", + "name": "Patterson Tract", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.37952000", + "longitude": "-119.29560000" + }, + { + "id": "123983", + "name": "Pedley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.97529000", + "longitude": "-117.47588000" + }, + { + "id": "124024", + "name": "Penn Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.19600000", + "longitude": "-121.19107000" + }, + { + "id": "124028", + "name": "Penngrove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.29964000", + "longitude": "-122.66665000" + }, + { + "id": "124066", + "name": "Perris", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.78252000", + "longitude": "-117.22865000" + }, + { + "id": "124101", + "name": "Petaluma", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.23242000", + "longitude": "-122.63665000" + }, + { + "id": "124119", + "name": "Phelan", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.42611000", + "longitude": "-117.57228000" + }, + { + "id": "124150", + "name": "Phoenix Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.00594000", + "longitude": "-120.30702000" + }, + { + "id": "124309", + "name": "Piñon Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.43333000", + "longitude": "-117.64672000" + }, + { + "id": "124162", + "name": "Pico Rivera", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.98307000", + "longitude": "-118.09673000" + }, + { + "id": "124168", + "name": "Piedmont", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.82437000", + "longitude": "-122.23163000" + }, + { + "id": "124222", + "name": "Pine Grove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.41297000", + "longitude": "-120.65882000" + }, + { + "id": "124226", + "name": "Pine Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73318000", + "longitude": "-124.15228000" + }, + { + "id": "124239", + "name": "Pine Mountain Club", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.84637000", + "longitude": "-119.14955000" + }, + { + "id": "124246", + "name": "Pine Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.82144000", + "longitude": "-116.52918000" + }, + { + "id": "124271", + "name": "Pinole", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.00437000", + "longitude": "-122.29886000" + }, + { + "id": "124274", + "name": "Pioneer", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.43186000", + "longitude": "-120.57187000" + }, + { + "id": "124280", + "name": "Piru", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.41527000", + "longitude": "-118.79398000" + }, + { + "id": "124283", + "name": "Pismo Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.14275000", + "longitude": "-120.64128000" + }, + { + "id": "124294", + "name": "Pittsburg", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02798000", + "longitude": "-121.88468000" + }, + { + "id": "124308", + "name": "Pixley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.96856000", + "longitude": "-119.29178000" + }, + { + "id": "124310", + "name": "Placentia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.87224000", + "longitude": "-117.87034000" + }, + { + "id": "124311", + "name": "Placer County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.06343000", + "longitude": "-120.71766000" + }, + { + "id": "124312", + "name": "Placerville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.72963000", + "longitude": "-120.79855000" + }, + { + "id": "124338", + "name": "Planada", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.29077000", + "longitude": "-120.31852000" + }, + { + "id": "124372", + "name": "Pleasant Hill", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.94798000", + "longitude": "-122.06080000" + }, + { + "id": "124384", + "name": "Pleasanton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.66243000", + "longitude": "-121.87468000" + }, + { + "id": "124395", + "name": "Plumas County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00468000", + "longitude": "-120.83860000" + }, + { + "id": "124396", + "name": "Plumas Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.02073000", + "longitude": "-121.55802000" + }, + { + "id": "124453", + "name": "Pollock Pines", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.76158000", + "longitude": "-120.58611000" + }, + { + "id": "124459", + "name": "Pomona", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.05529000", + "longitude": "-117.75228000" + }, + { + "id": "124486", + "name": "Poplar-Cotton Center", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.05635000", + "longitude": "-119.14919000" + }, + { + "id": "124510", + "name": "Port Hueneme", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14778000", + "longitude": "-119.19511000" + }, + { + "id": "124556", + "name": "Porterville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.06523000", + "longitude": "-119.01677000" + }, + { + "id": "124566", + "name": "Portola", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.81046000", + "longitude": "-120.46910000" + }, + { + "id": "124567", + "name": "Portola Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.67919000", + "longitude": "-117.63116000" + }, + { + "id": "124568", + "name": "Portola Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.38411000", + "longitude": "-122.23524000" + }, + { + "id": "124606", + "name": "Poway", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.96282000", + "longitude": "-117.03586000" + }, + { + "id": "124725", + "name": "Prunedale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.77579000", + "longitude": "-121.66967000" + }, + { + "id": "124777", + "name": "Quail Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.70697000", + "longitude": "-117.24504000" + }, + { + "id": "124782", + "name": "Quartz Hill", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.64526000", + "longitude": "-118.21813000" + }, + { + "id": "124799", + "name": "Quincy", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93682000", + "longitude": "-120.94647000" + }, + { + "id": "124823", + "name": "Rainbow", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.41031000", + "longitude": "-117.14781000" + }, + { + "id": "124838", + "name": "Ramona", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.04171000", + "longitude": "-116.86808000" + }, + { + "id": "124848", + "name": "Rancho Calaveras", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.12742000", + "longitude": "-120.85827000" + }, + { + "id": "124849", + "name": "Rancho Cordova", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.58907000", + "longitude": "-121.30273000" + }, + { + "id": "124850", + "name": "Rancho Cucamonga", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10640000", + "longitude": "-117.59311000" + }, + { + "id": "124851", + "name": "Rancho Mirage", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.73974000", + "longitude": "-116.41279000" + }, + { + "id": "124852", + "name": "Rancho Murieta", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.50185000", + "longitude": "-121.09467000" + }, + { + "id": "124853", + "name": "Rancho Palos Verdes", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74446000", + "longitude": "-118.38702000" + }, + { + "id": "124854", + "name": "Rancho Penasquitos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.95949000", + "longitude": "-117.11531000" + }, + { + "id": "124855", + "name": "Rancho San Diego", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.74727000", + "longitude": "-116.93530000" + }, + { + "id": "124856", + "name": "Rancho Santa Fe", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.02032000", + "longitude": "-117.20281000" + }, + { + "id": "124857", + "name": "Rancho Santa Margarita", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.64086000", + "longitude": "-117.60310000" + }, + { + "id": "124858", + "name": "Rancho Tehama Reserve", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.01569000", + "longitude": "-122.40072000" + }, + { + "id": "124940", + "name": "Red Bluff", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17849000", + "longitude": "-122.23583000" + }, + { + "id": "124945", + "name": "Red Corral", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.41165000", + "longitude": "-120.60552000" + }, + { + "id": "124966", + "name": "Redding", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.58654000", + "longitude": "-122.39168000" + }, + { + "id": "124976", + "name": "Redlands", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.05557000", + "longitude": "-117.18254000" + }, + { + "id": "124980", + "name": "Redondo Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.84918000", + "longitude": "-118.38841000" + }, + { + "id": "124983", + "name": "Redway", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12014000", + "longitude": "-123.82336000" + }, + { + "id": "124986", + "name": "Redwood City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.48522000", + "longitude": "-122.23635000" + }, + { + "id": "124989", + "name": "Redwood Shores", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.53188000", + "longitude": "-122.24802000" + }, + { + "id": "124990", + "name": "Redwood Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.26544000", + "longitude": "-123.20445000" + }, + { + "id": "124993", + "name": "Reedley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.59634000", + "longitude": "-119.45040000" + }, + { + "id": "125049", + "name": "Rialto", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10640000", + "longitude": "-117.37032000" + }, + { + "id": "125066", + "name": "Richgrove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.79662000", + "longitude": "-119.10788000" + }, + { + "id": "125096", + "name": "Richmond", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.93576000", + "longitude": "-122.34775000" + }, + { + "id": "125118", + "name": "Ridgecrest", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.62246000", + "longitude": "-117.67090000" + }, + { + "id": "125127", + "name": "Ridgemark", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.81246000", + "longitude": "-121.36577000" + }, + { + "id": "125151", + "name": "Rio Del Mar", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96828000", + "longitude": "-121.90023000" + }, + { + "id": "125152", + "name": "Rio Dell", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.49930000", + "longitude": "-124.10644000" + }, + { + "id": "125157", + "name": "Rio Linda", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.69101000", + "longitude": "-121.44857000" + }, + { + "id": "125161", + "name": "Rio Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.16389000", + "longitude": "-121.69583000" + }, + { + "id": "125168", + "name": "Ripon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.74159000", + "longitude": "-121.12438000" + }, + { + "id": "125190", + "name": "Riverbank", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.73604000", + "longitude": "-120.93549000" + }, + { + "id": "125196", + "name": "Riverdale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.43106000", + "longitude": "-119.85958000" + }, + { + "id": "125199", + "name": "Riverdale Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.60938000", + "longitude": "-121.05188000" + }, + { + "id": "125209", + "name": "Riverside", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.95335000", + "longitude": "-117.39616000" + }, + { + "id": "125210", + "name": "Riverside County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74368000", + "longitude": "-115.99386000" + }, + { + "id": "125313", + "name": "Rocklin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.79073000", + "longitude": "-121.23578000" + }, + { + "id": "125341", + "name": "Rodeo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.03298000", + "longitude": "-122.26691000" + }, + { + "id": "125358", + "name": "Rohnert Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.33964000", + "longitude": "-122.70110000" + }, + { + "id": "125366", + "name": "Rolling Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.75739000", + "longitude": "-118.35752000" + }, + { + "id": "125367", + "name": "Rolling Hills Estates", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.78779000", + "longitude": "-118.35813000" + }, + { + "id": "125370", + "name": "Rollingwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.96520000", + "longitude": "-122.32997000" + }, + { + "id": "125384", + "name": "Romoland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74585000", + "longitude": "-117.17503000" + }, + { + "id": "125397", + "name": "Rosamond", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.86414000", + "longitude": "-118.16341000" + }, + { + "id": "125419", + "name": "Rosedale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.38357000", + "longitude": "-119.14538000" + }, + { + "id": "125424", + "name": "Roseland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.42213000", + "longitude": "-122.72804000" + }, + { + "id": "125429", + "name": "Rosemead", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.08057000", + "longitude": "-118.07285000" + }, + { + "id": "125431", + "name": "Rosemont", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.55185000", + "longitude": "-121.36467000" + }, + { + "id": "125441", + "name": "Roseville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.75212000", + "longitude": "-121.28801000" + }, + { + "id": "125451", + "name": "Ross", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.96242000", + "longitude": "-122.55498000" + }, + { + "id": "125455", + "name": "Rossmoor", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.78557000", + "longitude": "-118.08506000" + }, + { + "id": "125480", + "name": "Rowland Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.97612000", + "longitude": "-117.90534000" + }, + { + "id": "125501", + "name": "Rubidoux", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.99613000", + "longitude": "-117.40560000" + }, + { + "id": "125514", + "name": "Running Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.20779000", + "longitude": "-117.10920000" + }, + { + "id": "125577", + "name": "Sacramento", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.58157000", + "longitude": "-121.49440000" + }, + { + "id": "125578", + "name": "Sacramento County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.44932000", + "longitude": "-121.34424000" + }, + { + "id": "125647", + "name": "Saint Helena", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.50519000", + "longitude": "-122.47026000" + }, + { + "id": "125742", + "name": "Salida", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.70576000", + "longitude": "-121.08494000" + }, + { + "id": "125747", + "name": "Salinas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.67774000", + "longitude": "-121.65550000" + }, + { + "id": "125770", + "name": "Salton City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.29865000", + "longitude": "-115.95611000" + }, + { + "id": "125783", + "name": "San Andreas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.19603000", + "longitude": "-120.68049000" + }, + { + "id": "125785", + "name": "San Anselmo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.97465000", + "longitude": "-122.56164000" + }, + { + "id": "125788", + "name": "San Antonio Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.15556000", + "longitude": "-117.65644000" + }, + { + "id": "125792", + "name": "San Benito County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.60571000", + "longitude": "-121.07500000" + }, + { + "id": "125793", + "name": "San Bernardino", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10834000", + "longitude": "-117.28977000" + }, + { + "id": "125794", + "name": "San Bernardino County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.84143000", + "longitude": "-116.17846000" + }, + { + "id": "125795", + "name": "San Bruno", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.63049000", + "longitude": "-122.41108000" + }, + { + "id": "125798", + "name": "San Carlos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.50716000", + "longitude": "-122.26052000" + }, + { + "id": "125800", + "name": "San Clemente", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.42697000", + "longitude": "-117.61199000" + }, + { + "id": "125802", + "name": "San Diego", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.71571000", + "longitude": "-117.16472000" + }, + { + "id": "125803", + "name": "San Diego Country Estates", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.00671000", + "longitude": "-116.78364000" + }, + { + "id": "125804", + "name": "San Diego County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.02820000", + "longitude": "-116.77021000" + }, + { + "id": "125805", + "name": "San Dimas", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10668000", + "longitude": "-117.80673000" + }, + { + "id": "125808", + "name": "San Fernando", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.28195000", + "longitude": "-118.43897000" + }, + { + "id": "125809", + "name": "San Francisco", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.77493000", + "longitude": "-122.41942000" + }, + { + "id": "125810", + "name": "San Gabriel", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09611000", + "longitude": "-118.10583000" + }, + { + "id": "125811", + "name": "San Jacinto", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.78391000", + "longitude": "-116.95864000" + }, + { + "id": "125813", + "name": "San Joaquin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.60662000", + "longitude": "-120.18904000" + }, + { + "id": "125814", + "name": "San Joaquin County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.93478000", + "longitude": "-121.27145000" + }, + { + "id": "125815", + "name": "San Joaquin Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.61169000", + "longitude": "-117.83672000" + }, + { + "id": "125816", + "name": "San Jose", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.33939000", + "longitude": "-121.89496000" + }, + { + "id": "125818", + "name": "San Juan Bautista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.84551000", + "longitude": "-121.53800000" + }, + { + "id": "125819", + "name": "San Juan Capistrano", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.50169000", + "longitude": "-117.66255000" + }, + { + "id": "125824", + "name": "San Leandro", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.72493000", + "longitude": "-122.15608000" + }, + { + "id": "125826", + "name": "San Lorenzo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.68104000", + "longitude": "-122.12441000" + }, + { + "id": "125829", + "name": "San Luis Obispo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.28275000", + "longitude": "-120.65962000" + }, + { + "id": "125830", + "name": "San Luis Obispo County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.38742000", + "longitude": "-120.45220000" + }, + { + "id": "125833", + "name": "San Marcos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.14337000", + "longitude": "-117.16614000" + }, + { + "id": "125834", + "name": "San Marino", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.12140000", + "longitude": "-118.10646000" + }, + { + "id": "125835", + "name": "San Martin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.08495000", + "longitude": "-121.61022000" + }, + { + "id": "125836", + "name": "San Mateo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.56299000", + "longitude": "-122.32553000" + }, + { + "id": "125837", + "name": "San Mateo County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.43621000", + "longitude": "-122.35566000" + }, + { + "id": "125838", + "name": "San Miguel", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.75247000", + "longitude": "-120.69628000" + }, + { + "id": "125842", + "name": "San Pablo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.96215000", + "longitude": "-122.34553000" + }, + { + "id": "125843", + "name": "San Pasqual", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.09171000", + "longitude": "-116.95392000" + }, + { + "id": "125845", + "name": "San Pedro", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.73585000", + "longitude": "-118.29229000" + }, + { + "id": "125846", + "name": "San Rafael", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.97353000", + "longitude": "-122.53109000" + }, + { + "id": "125847", + "name": "San Ramon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.77993000", + "longitude": "-121.97802000" + }, + { + "id": "125892", + "name": "Sanger", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.70801000", + "longitude": "-119.55597000" + }, + { + "id": "125899", + "name": "Santa Ana", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74557000", + "longitude": "-117.86783000" + }, + { + "id": "125901", + "name": "Santa Barbara", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.42083000", + "longitude": "-119.69819000" + }, + { + "id": "125902", + "name": "Santa Barbara County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.53834000", + "longitude": "-120.03078000" + }, + { + "id": "125903", + "name": "Santa Clara", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.35411000", + "longitude": "-121.95524000" + }, + { + "id": "125906", + "name": "Santa Clara County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.23249000", + "longitude": "-121.69627000" + }, + { + "id": "125908", + "name": "Santa Clarita", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.39166000", + "longitude": "-118.54259000" + }, + { + "id": "125910", + "name": "Santa Cruz", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.97412000", + "longitude": "-122.03080000" + }, + { + "id": "125912", + "name": "Santa Cruz County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.02161000", + "longitude": "-122.00979000" + }, + { + "id": "125916", + "name": "Santa Fe Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.94724000", + "longitude": "-118.08535000" + }, + { + "id": "125917", + "name": "Santa Margarita", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.38997000", + "longitude": "-120.60906000" + }, + { + "id": "125918", + "name": "Santa Maria", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.95303000", + "longitude": "-120.43572000" + }, + { + "id": "125919", + "name": "Santa Monica", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.01945000", + "longitude": "-118.49119000" + }, + { + "id": "125920", + "name": "Santa Paula", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.35417000", + "longitude": "-119.05927000" + }, + { + "id": "125922", + "name": "Santa Rosa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.44047000", + "longitude": "-122.71443000" + }, + { + "id": "125925", + "name": "Santa Susana", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.27167000", + "longitude": "-118.70898000" + }, + { + "id": "125927", + "name": "Santa Venetia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.99853000", + "longitude": "-122.52525000" + }, + { + "id": "125928", + "name": "Santa Ynez", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.61443000", + "longitude": "-120.07987000" + }, + { + "id": "125930", + "name": "Santee", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.83838000", + "longitude": "-116.97392000" + }, + { + "id": "125937", + "name": "Saranap", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.88492000", + "longitude": "-122.07607000" + }, + { + "id": "125941", + "name": "Saratoga", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.26383000", + "longitude": "-122.02301000" + }, + { + "id": "125956", + "name": "Saticoy", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.28306000", + "longitude": "-119.14983000" + }, + { + "id": "125970", + "name": "Sausalito", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.85909000", + "longitude": "-122.48525000" + }, + { + "id": "126059", + "name": "Scotts Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.05106000", + "longitude": "-122.01468000" + }, + { + "id": "126075", + "name": "Sea Ranch", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.71519000", + "longitude": "-123.45445000" + }, + { + "id": "126083", + "name": "Seacliff", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.97412000", + "longitude": "-121.91579000" + }, + { + "id": "126090", + "name": "Seal Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74141000", + "longitude": "-118.10479000" + }, + { + "id": "126095", + "name": "Searles Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.76745000", + "longitude": "-117.40395000" + }, + { + "id": "126099", + "name": "Seaside", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.61107000", + "longitude": "-121.85162000" + }, + { + "id": "126108", + "name": "Sebastopol", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.40214000", + "longitude": "-122.82388000" + }, + { + "id": "126116", + "name": "Sedco Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.64169000", + "longitude": "-117.29087000" + }, + { + "id": "126124", + "name": "Seeley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.79311000", + "longitude": "-115.69111000" + }, + { + "id": "126141", + "name": "Selma", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.57078000", + "longitude": "-119.61208000" + }, + { + "id": "126176", + "name": "Seven Trees", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.28605000", + "longitude": "-121.83856000" + }, + { + "id": "126198", + "name": "Shackelford", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.61382000", + "longitude": "-120.99271000" + }, + { + "id": "126202", + "name": "Shadow Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.26195000", + "longitude": "-118.35175000" + }, + { + "id": "126210", + "name": "Shafter", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.50051000", + "longitude": "-119.27178000" + }, + { + "id": "126217", + "name": "Shandon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.65525000", + "longitude": "-120.37543000" + }, + { + "id": "126238", + "name": "Shasta", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.59932000", + "longitude": "-122.49196000" + }, + { + "id": "126239", + "name": "Shasta County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.76377000", + "longitude": "-122.04052000" + }, + { + "id": "126240", + "name": "Shasta Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68043000", + "longitude": "-122.37084000" + }, + { + "id": "126321", + "name": "Sheridan", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.97962000", + "longitude": "-121.37551000" + }, + { + "id": "126336", + "name": "Sherman Oaks", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.15112000", + "longitude": "-118.44925000" + }, + { + "id": "126351", + "name": "Shingle Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.66574000", + "longitude": "-120.92605000" + }, + { + "id": "126353", + "name": "Shingletown", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.49238000", + "longitude": "-121.88916000" + }, + { + "id": "126402", + "name": "Sierra County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.58040000", + "longitude": "-120.51600000" + }, + { + "id": "126404", + "name": "Sierra Madre", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.16167000", + "longitude": "-118.05285000" + }, + { + "id": "126411", + "name": "Signal Hill", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.80446000", + "longitude": "-118.16785000" + }, + { + "id": "126431", + "name": "Silver Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.08668000", + "longitude": "-118.27023000" + }, + { + "id": "126432", + "name": "Silver Lakes", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.74558000", + "longitude": "-117.34098000" + }, + { + "id": "126445", + "name": "Simi Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.26945000", + "longitude": "-118.78148000" + }, + { + "id": "126465", + "name": "Siskiyou County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.59265000", + "longitude": "-122.54037000" + }, + { + "id": "126486", + "name": "Sky Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.89001000", + "longitude": "-116.35251000" + }, + { + "id": "126499", + "name": "Sleepy Hollow", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.01048000", + "longitude": "-122.58442000" + }, + { + "id": "126561", + "name": "Soda Bay", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.00101000", + "longitude": "-122.78916000" + }, + { + "id": "126565", + "name": "Solana Beach", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.99115000", + "longitude": "-117.27115000" + }, + { + "id": "126566", + "name": "Solano County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.26692000", + "longitude": "-121.94001000" + }, + { + "id": "126568", + "name": "Soledad", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.42469000", + "longitude": "-121.32632000" + }, + { + "id": "126572", + "name": "Solvang", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.59582000", + "longitude": "-120.13765000" + }, + { + "id": "126598", + "name": "Sonoma", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.29186000", + "longitude": "-122.45804000" + }, + { + "id": "126599", + "name": "Sonoma County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.52529000", + "longitude": "-122.92254000" + }, + { + "id": "126600", + "name": "Sonora", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.98409000", + "longitude": "-120.38214000" + }, + { + "id": "126604", + "name": "Soquel", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.98801000", + "longitude": "-121.95663000" + }, + { + "id": "126606", + "name": "Sorrento Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.89991000", + "longitude": "-117.19451000" + }, + { + "id": "126608", + "name": "Soulsbyville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.98465000", + "longitude": "-120.26380000" + }, + { + "id": "126648", + "name": "South Dos Palos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96439000", + "longitude": "-120.65324000" + }, + { + "id": "126650", + "name": "South El Monte", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.05195000", + "longitude": "-118.04673000" + }, + { + "id": "126659", + "name": "South Gate", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.95474000", + "longitude": "-118.21202000" + }, + { + "id": "126684", + "name": "South Lake Tahoe", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.93324000", + "longitude": "-119.98435000" + }, + { + "id": "126699", + "name": "South Oroville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.49655000", + "longitude": "-121.55219000" + }, + { + "id": "126706", + "name": "South Pasadena", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.11612000", + "longitude": "-118.15035000" + }, + { + "id": "126723", + "name": "South San Francisco", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.65466000", + "longitude": "-122.40775000" + }, + { + "id": "126724", + "name": "South San Gabriel", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.04915000", + "longitude": "-118.09462000" + }, + { + "id": "126725", + "name": "South San Jose Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.01279000", + "longitude": "-117.90478000" + }, + { + "id": "126733", + "name": "South Taft", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.13469000", + "longitude": "-119.45623000" + }, + { + "id": "126748", + "name": "South Whittier", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.95015000", + "longitude": "-118.03917000" + }, + { + "id": "126756", + "name": "South Yuba City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.11656000", + "longitude": "-121.63913000" + }, + { + "id": "126880", + "name": "Spring Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.74477000", + "longitude": "-116.99892000" + }, + { + "id": "126882", + "name": "Spring Valley Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.49364000", + "longitude": "-117.26832000" + }, + { + "id": "126924", + "name": "Squaw Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.74023000", + "longitude": "-119.24679000" + }, + { + "id": "126941", + "name": "Stallion Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.08886000", + "longitude": "-118.64259000" + }, + { + "id": "126954", + "name": "Stanford", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.42411000", + "longitude": "-122.16608000" + }, + { + "id": "126957", + "name": "Stanislaus County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.55914000", + "longitude": "-120.99769000" + }, + { + "id": "126969", + "name": "Stanton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.80252000", + "longitude": "-117.99312000" + }, + { + "id": "127046", + "name": "Stevenson Ranch", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.39048000", + "longitude": "-118.57372000" + }, + { + "id": "127074", + "name": "Stockton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.95770000", + "longitude": "-121.29078000" + }, + { + "id": "127127", + "name": "Stratford", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.18940000", + "longitude": "-119.82319000" + }, + { + "id": "127131", + "name": "Strathmore", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.14551000", + "longitude": "-119.06066000" + }, + { + "id": "127133", + "name": "Strawberry", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.89687000", + "longitude": "-122.50886000" + }, + { + "id": "127146", + "name": "Studio City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14862000", + "longitude": "-118.39647000" + }, + { + "id": "127177", + "name": "Suisun", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.23825000", + "longitude": "-122.04024000" + }, + { + "id": "127204", + "name": "Summerland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.42138000", + "longitude": "-119.59652000" + }, + { + "id": "127233", + "name": "Sun City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.70919000", + "longitude": "-117.19726000" + }, + { + "id": "127243", + "name": "Sun Village", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.55952000", + "longitude": "-117.95676000" + }, + { + "id": "127253", + "name": "Sunland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.26695000", + "longitude": "-118.30230000" + }, + { + "id": "127259", + "name": "Sunnyside", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.74912000", + "longitude": "-119.69931000" + }, + { + "id": "127261", + "name": "Sunnyside-Tahoe City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.15023000", + "longitude": "-120.16120000" + }, + { + "id": "127262", + "name": "Sunnyslope", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.01196000", + "longitude": "-117.43338000" + }, + { + "id": "127265", + "name": "Sunnyvale", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.36883000", + "longitude": "-122.03635000" + }, + { + "id": "127296", + "name": "Susanville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41628000", + "longitude": "-120.65301000" + }, + { + "id": "127308", + "name": "Sutter", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.15989000", + "longitude": "-121.75275000" + }, + { + "id": "127309", + "name": "Sutter County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.03452000", + "longitude": "-121.69484000" + }, + { + "id": "127310", + "name": "Sutter Creek", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.39297000", + "longitude": "-120.80244000" + }, + { + "id": "127373", + "name": "Taft", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.14247000", + "longitude": "-119.45651000" + }, + { + "id": "127374", + "name": "Taft Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.13469000", + "longitude": "-119.47262000" + }, + { + "id": "127375", + "name": "Taft Mosswood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.91385000", + "longitude": "-121.28316000" + }, + { + "id": "127378", + "name": "Tahoe Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.23991000", + "longitude": "-120.05102000" + }, + { + "id": "127380", + "name": "Tahoma", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.06741000", + "longitude": "-120.12824000" + }, + { + "id": "127397", + "name": "Talmage", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.13323000", + "longitude": "-123.16778000" + }, + { + "id": "127402", + "name": "Tamalpais Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.87965000", + "longitude": "-122.54581000" + }, + { + "id": "127403", + "name": "Tamalpais-Homestead Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.87834000", + "longitude": "-122.53625000" + }, + { + "id": "127427", + "name": "Tara Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.99353000", + "longitude": "-122.31636000" + }, + { + "id": "127432", + "name": "Tarpey Village", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.79301000", + "longitude": "-119.70097000" + }, + { + "id": "127483", + "name": "Tehachapi", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.13219000", + "longitude": "-118.44897000" + }, + { + "id": "127484", + "name": "Tehama County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12574000", + "longitude": "-122.23388000" + }, + { + "id": "127492", + "name": "Temecula", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.49364000", + "longitude": "-117.14836000" + }, + { + "id": "127493", + "name": "Temelec", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.26658000", + "longitude": "-122.49276000" + }, + { + "id": "127501", + "name": "Temple City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10723000", + "longitude": "-118.05785000" + }, + { + "id": "127505", + "name": "Templeton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.54969000", + "longitude": "-120.70600000" + }, + { + "id": "127515", + "name": "Terra Bella", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.96245000", + "longitude": "-119.04427000" + }, + { + "id": "127541", + "name": "Teviston", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.92894000", + "longitude": "-119.27831000" + }, + { + "id": "127570", + "name": "Thermal", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.64030000", + "longitude": "-116.13945000" + }, + { + "id": "127571", + "name": "Thermalito", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.51128000", + "longitude": "-121.58692000" + }, + { + "id": "127604", + "name": "Thornton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.22603000", + "longitude": "-121.42467000" + }, + { + "id": "127609", + "name": "Thousand Oaks", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.17056000", + "longitude": "-118.83759000" + }, + { + "id": "127610", + "name": "Thousand Palms", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.82002000", + "longitude": "-116.39029000" + }, + { + "id": "127620", + "name": "Three Rivers", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.43884000", + "longitude": "-118.90454000" + }, + { + "id": "127632", + "name": "Tiburon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.87354000", + "longitude": "-122.45664000" + }, + { + "id": "127637", + "name": "Tierra Buena", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.14878000", + "longitude": "-121.66691000" + }, + { + "id": "127678", + "name": "Tipton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.05940000", + "longitude": "-119.31206000" + }, + { + "id": "127730", + "name": "Topanga", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09362000", + "longitude": "-118.60147000" + }, + { + "id": "127741", + "name": "Toro Canyon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.42000000", + "longitude": "-119.56707000" + }, + { + "id": "127742", + "name": "Torrance", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.83585000", + "longitude": "-118.34063000" + }, + { + "id": "127769", + "name": "Trabuco Canyon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.66252000", + "longitude": "-117.59033000" + }, + { + "id": "127771", + "name": "Tracy", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.73987000", + "longitude": "-121.42618000" + }, + { + "id": "127829", + "name": "Trinity County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.65069000", + "longitude": "-123.11263000" + }, + { + "id": "127853", + "name": "Truckee", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.32796000", + "longitude": "-120.18325000" + }, + { + "id": "127878", + "name": "Tujunga", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.25223000", + "longitude": "-118.28841000" + }, + { + "id": "127882", + "name": "Tulare", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.20773000", + "longitude": "-119.34734000" + }, + { + "id": "127883", + "name": "Tulare County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.22016000", + "longitude": "-118.80047000" + }, + { + "id": "127895", + "name": "Tuolumne City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.96270000", + "longitude": "-120.24130000" + }, + { + "id": "127896", + "name": "Tuolumne County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02760000", + "longitude": "-119.95475000" + }, + { + "id": "127900", + "name": "Turlock", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.49466000", + "longitude": "-120.84659000" + }, + { + "id": "127917", + "name": "Tustin", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74585000", + "longitude": "-117.82617000" + }, + { + "id": "127920", + "name": "Twain Harte", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.03965000", + "longitude": "-120.23269000" + }, + { + "id": "127921", + "name": "Twentynine Palms", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13556000", + "longitude": "-116.05417000" + }, + { + "id": "127930", + "name": "Twin Lakes", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96745000", + "longitude": "-121.99802000" + }, + { + "id": "127958", + "name": "Ukiah", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.15017000", + "longitude": "-123.20778000" + }, + { + "id": "127987", + "name": "Union City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.59577000", + "longitude": "-122.01913000" + }, + { + "id": "128023", + "name": "Universal City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13890000", + "longitude": "-118.35341000" + }, + { + "id": "128039", + "name": "Upland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09751000", + "longitude": "-117.64839000" + }, + { + "id": "128045", + "name": "Upper Lake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.16461000", + "longitude": "-122.91055000" + }, + { + "id": "128072", + "name": "Vacaville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.35658000", + "longitude": "-121.98774000" + }, + { + "id": "128078", + "name": "Val Verde", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.44500000", + "longitude": "-118.65759000" + }, + { + "id": "128087", + "name": "Valencia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.44361000", + "longitude": "-118.60953000" + }, + { + "id": "128093", + "name": "Valinda", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.04529000", + "longitude": "-117.94367000" + }, + { + "id": "128094", + "name": "Valle Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74780000", + "longitude": "-116.89336000" + }, + { + "id": "128096", + "name": "Vallejo", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.10409000", + "longitude": "-122.25664000" + }, + { + "id": "128100", + "name": "Valley Center", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.21837000", + "longitude": "-117.03420000" + }, + { + "id": "128109", + "name": "Valley Glen", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.18991000", + "longitude": "-118.44953000" + }, + { + "id": "128115", + "name": "Valley Springs", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.19159000", + "longitude": "-120.82910000" + }, + { + "id": "128137", + "name": "Van Nuys", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.18667000", + "longitude": "-118.44897000" + }, + { + "id": "128147", + "name": "Vandenberg Air Force Base", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.74830000", + "longitude": "-120.51817000" + }, + { + "id": "128148", + "name": "Vandenberg Village", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.70832000", + "longitude": "-120.46766000" + }, + { + "id": "128172", + "name": "Venice", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.99084000", + "longitude": "-118.46008000" + }, + { + "id": "128175", + "name": "Ventura", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.27834000", + "longitude": "-119.29317000" + }, + { + "id": "128176", + "name": "Ventura County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.35753000", + "longitude": "-119.12603000" + }, + { + "id": "128224", + "name": "Victorville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.53611000", + "longitude": "-117.29116000" + }, + { + "id": "128238", + "name": "View Park-Windsor Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.99551000", + "longitude": "-118.34835000" + }, + { + "id": "128244", + "name": "Villa Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.81446000", + "longitude": "-117.81311000" + }, + { + "id": "128265", + "name": "Vincent", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.50055000", + "longitude": "-118.11646000" + }, + { + "id": "128269", + "name": "Vine Hill", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.00853000", + "longitude": "-122.09608000" + }, + { + "id": "128273", + "name": "Vineyard", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.46449000", + "longitude": "-121.34692000" + }, + { + "id": "128293", + "name": "Visalia", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.33023000", + "longitude": "-119.29206000" + }, + { + "id": "128294", + "name": "Visitacion Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.71715000", + "longitude": "-122.40433000" + }, + { + "id": "128295", + "name": "Vista", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.20004000", + "longitude": "-117.24254000" + }, + { + "id": "128297", + "name": "Vista Santa Rosa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.62780000", + "longitude": "-116.21806000" + }, + { + "id": "128374", + "name": "Waldon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.92631000", + "longitude": "-122.05552000" + }, + { + "id": "128414", + "name": "Walnut", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.02029000", + "longitude": "-117.86534000" + }, + { + "id": "128416", + "name": "Walnut Creek", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.90631000", + "longitude": "-122.06496000" + }, + { + "id": "128419", + "name": "Walnut Grove", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.24214000", + "longitude": "-121.51162000" + }, + { + "id": "128422", + "name": "Walnut Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96807000", + "longitude": "-118.22507000" + }, + { + "id": "128528", + "name": "Wasco", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.59412000", + "longitude": "-119.34095000" + }, + { + "id": "128609", + "name": "Waterford", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.64132000", + "longitude": "-120.76048000" + }, + { + "id": "128641", + "name": "Watsonville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.91023000", + "longitude": "-121.75689000" + }, + { + "id": "128723", + "name": "Weaverville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73098000", + "longitude": "-122.94197000" + }, + { + "id": "128751", + "name": "Weed", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.42265000", + "longitude": "-122.38613000" + }, + { + "id": "128752", + "name": "Weedpatch", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.23802000", + "longitude": "-118.91510000" + }, + { + "id": "128770", + "name": "Weldon", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.66579000", + "longitude": "-118.29036000" + }, + { + "id": "128818", + "name": "West Athens", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.92335000", + "longitude": "-118.30341000" + }, + { + "id": "128826", + "name": "West Bishop", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.36104000", + "longitude": "-118.45511000" + }, + { + "id": "128842", + "name": "West Carson", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.82168000", + "longitude": "-118.29257000" + }, + { + "id": "128853", + "name": "West Covina", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.06862000", + "longitude": "-117.93895000" + }, + { + "id": "128897", + "name": "West Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.19731000", + "longitude": "-118.64398000" + }, + { + "id": "128899", + "name": "West Hollywood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09001000", + "longitude": "-118.36174000" + }, + { + "id": "128929", + "name": "West Menlo Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.43355000", + "longitude": "-122.20302000" + }, + { + "id": "128934", + "name": "West Modesto", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.61754000", + "longitude": "-121.03914000" + }, + { + "id": "128950", + "name": "West Park", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.71023000", + "longitude": "-119.85126000" + }, + { + "id": "128964", + "name": "West Puente Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.05168000", + "longitude": "-117.96840000" + }, + { + "id": "128966", + "name": "West Rancho Dominguez", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.89390000", + "longitude": "-118.27063000" + }, + { + "id": "128971", + "name": "West Sacramento", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.58046000", + "longitude": "-121.53023000" + }, + { + "id": "129005", + "name": "West Whittier-Los Nietos", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.97600000", + "longitude": "-118.06909000" + }, + { + "id": "129037", + "name": "Westhaven-Moonstone", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.04489000", + "longitude": "-124.10239000" + }, + { + "id": "129040", + "name": "Westlake Village", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14584000", + "longitude": "-118.80565000" + }, + { + "id": "129048", + "name": "Westminster", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.75918000", + "longitude": "-118.00673000" + }, + { + "id": "129051", + "name": "Westmont", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.94140000", + "longitude": "-118.30230000" + }, + { + "id": "129057", + "name": "Westmorland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.03727000", + "longitude": "-115.62138000" + }, + { + "id": "129087", + "name": "Westwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.05612000", + "longitude": "-118.43063000" + }, + { + "id": "129108", + "name": "Wheatland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.00989000", + "longitude": "-121.42301000" + }, + { + "id": "129210", + "name": "Whittier", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.97918000", + "longitude": "-118.03284000" + }, + { + "id": "129235", + "name": "Wildomar", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.59891000", + "longitude": "-117.28004000" + }, + { + "id": "129261", + "name": "Williams", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.15461000", + "longitude": "-122.14942000" + }, + { + "id": "129302", + "name": "Willits", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.40961000", + "longitude": "-123.35557000" + }, + { + "id": "129305", + "name": "Willow Creek", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "40.93958000", + "longitude": "-123.63144000" + }, + { + "id": "129315", + "name": "Willowbrook", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.91696000", + "longitude": "-118.25507000" + }, + { + "id": "129316", + "name": "Willows", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.52433000", + "longitude": "-122.19359000" + }, + { + "id": "129346", + "name": "Wilton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.41186000", + "longitude": "-121.27217000" + }, + { + "id": "129360", + "name": "Winchester", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.70697000", + "longitude": "-117.08447000" + }, + { + "id": "129386", + "name": "Windsor", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.54713000", + "longitude": "-122.81638000" + }, + { + "id": "129439", + "name": "Winter Gardens", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "32.83116000", + "longitude": "-116.93336000" + }, + { + "id": "129445", + "name": "Winters", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.52491000", + "longitude": "-121.97080000" + }, + { + "id": "129454", + "name": "Winton", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.38938000", + "longitude": "-120.61325000" + }, + { + "id": "129467", + "name": "Wofford Heights", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "35.70690000", + "longitude": "-118.45620000" + }, + { + "id": "129493", + "name": "Woodacre", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.01270000", + "longitude": "-122.64526000" + }, + { + "id": "129502", + "name": "Woodbridge", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.15408000", + "longitude": "-121.30134000" + }, + { + "id": "129516", + "name": "Woodcrest", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88224000", + "longitude": "-117.35727000" + }, + { + "id": "129524", + "name": "Woodlake", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.41356000", + "longitude": "-119.09872000" + }, + { + "id": "129526", + "name": "Woodland", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.67852000", + "longitude": "-121.77330000" + }, + { + "id": "129530", + "name": "Woodland Hills", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.16834000", + "longitude": "-118.60592000" + }, + { + "id": "129556", + "name": "Woodside", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.42994000", + "longitude": "-122.25386000" + }, + { + "id": "129574", + "name": "Woodville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "36.09356000", + "longitude": "-119.19900000" + }, + { + "id": "129617", + "name": "Wrightwood", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.36083000", + "longitude": "-117.63339000" + }, + { + "id": "129686", + "name": "Yolo County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.68665000", + "longitude": "-121.90162000" + }, + { + "id": "129689", + "name": "Yorba Linda", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88863000", + "longitude": "-117.81311000" + }, + { + "id": "129711", + "name": "Yosemite Lakes", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.19106000", + "longitude": "-119.77265000" + }, + { + "id": "129712", + "name": "Yosemite Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "37.74075000", + "longitude": "-119.57788000" + }, + { + "id": "129723", + "name": "Yountville", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "38.40158000", + "longitude": "-122.36081000" + }, + { + "id": "129725", + "name": "Yreka", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "41.73542000", + "longitude": "-122.63447000" + }, + { + "id": "129726", + "name": "Yuba City", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.14045000", + "longitude": "-121.61691000" + }, + { + "id": "129727", + "name": "Yuba County", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "39.26902000", + "longitude": "-121.35126000" + }, + { + "id": "129728", + "name": "Yucaipa", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.03363000", + "longitude": "-117.04309000" + }, + { + "id": "129729", + "name": "Yucca Valley", + "state_id": 1416, + "state_code": "CA", + "country_id": 233, + "country_code": "US", + "latitude": "34.11417000", + "longitude": "-116.43224000" + }, + { + "id": "110998", + "name": "Acres Green", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.55666000", + "longitude": "-104.89609000" + }, + { + "id": "111024", + "name": "Adams County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.87363000", + "longitude": "-104.33791000" + }, + { + "id": "111070", + "name": "Air Force Academy", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.99425000", + "longitude": "-104.86375000" + }, + { + "id": "111080", + "name": "Akron", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.16054000", + "longitude": "-103.21438000" + }, + { + "id": "111098", + "name": "Alamosa", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.46945000", + "longitude": "-105.87002000" + }, + { + "id": "111099", + "name": "Alamosa County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.57289000", + "longitude": "-105.78829000" + }, + { + "id": "111100", + "name": "Alamosa East", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.47735000", + "longitude": "-105.84217000" + }, + { + "id": "111399", + "name": "Applewood", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.75778000", + "longitude": "-105.16250000" + }, + { + "id": "111415", + "name": "Arapahoe County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.64977000", + "longitude": "-104.33924000" + }, + { + "id": "111434", + "name": "Archuleta County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.19360000", + "longitude": "-107.04833000" + }, + { + "id": "111452", + "name": "Aristocrat Ranchettes", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.10915000", + "longitude": "-104.76247000" + }, + { + "id": "111503", + "name": "Arvada", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.80276000", + "longitude": "-105.08748000" + }, + { + "id": "111552", + "name": "Aspen", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.19110000", + "longitude": "-106.81754000" + }, + { + "id": "111653", + "name": "Ault", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.58248000", + "longitude": "-104.73191000" + }, + { + "id": "111662", + "name": "Aurora", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.72943000", + "longitude": "-104.83192000" + }, + { + "id": "111695", + "name": "Avon", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.63137000", + "longitude": "-106.52225000" + }, + { + "id": "111717", + "name": "Baca County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.31918000", + "longitude": "-102.56047000" + }, + { + "id": "111875", + "name": "Basalt", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.36887000", + "longitude": "-107.03282000" + }, + { + "id": "111910", + "name": "Battlement Mesa", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.44137000", + "longitude": "-108.02507000" + }, + { + "id": "111941", + "name": "Bayfield", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.22556000", + "longitude": "-107.59811000" + }, + { + "id": "112173", + "name": "Bennett", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.75887000", + "longitude": "-104.42746000" + }, + { + "id": "112188", + "name": "Bent County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.95509000", + "longitude": "-103.07170000" + }, + { + "id": "112231", + "name": "Berkley", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.80443000", + "longitude": "-105.02609000" + }, + { + "id": "112257", + "name": "Berthoud", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.30832000", + "longitude": "-105.08109000" + }, + { + "id": "112376", + "name": "Black Forest", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.01305000", + "longitude": "-104.70081000" + }, + { + "id": "112600", + "name": "Boulder", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.01499000", + "longitude": "-105.27055000" + }, + { + "id": "112603", + "name": "Boulder County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.09246000", + "longitude": "-105.35770000" + }, + { + "id": "112713", + "name": "Breckenridge", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.48165000", + "longitude": "-106.03835000" + }, + { + "id": "112791", + "name": "Brighton", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.98526000", + "longitude": "-104.82053000" + }, + { + "id": "112900", + "name": "Broomfield", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.92054000", + "longitude": "-105.08665000" + }, + { + "id": "112901", + "name": "Broomfield County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.95413000", + "longitude": "-105.05266000" + }, + { + "id": "112953", + "name": "Brush", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.25887000", + "longitude": "-103.62384000" + }, + { + "id": "113004", + "name": "Buena Vista", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.84222000", + "longitude": "-106.13113000" + }, + { + "id": "113074", + "name": "Burlington", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.30611000", + "longitude": "-102.26936000" + }, + { + "id": "113134", + "name": "Byers", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.71137000", + "longitude": "-104.22774000" + }, + { + "id": "113597", + "name": "Cañon City", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.44098000", + "longitude": "-105.24245000" + }, + { + "id": "113307", + "name": "Campion", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.34943000", + "longitude": "-105.07776000" + }, + { + "id": "113390", + "name": "Carbondale", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.40221000", + "longitude": "-107.21116000" + }, + { + "id": "113443", + "name": "Carriage Club", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.53249000", + "longitude": "-104.90109000" + }, + { + "id": "113518", + "name": "Cascade-Chipita Park", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.94354000", + "longitude": "-105.00237000" + }, + { + "id": "113546", + "name": "Castle Pines", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.45804000", + "longitude": "-104.89609000" + }, + { + "id": "113547", + "name": "Castle Pines North", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.47174000", + "longitude": "-104.89482000" + }, + { + "id": "113549", + "name": "Castle Rock", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.37221000", + "longitude": "-104.85609000" + }, + { + "id": "113555", + "name": "Castlewood", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.58471000", + "longitude": "-104.90109000" + }, + { + "id": "113625", + "name": "Cedaredge", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.90165000", + "longitude": "-107.92645000" + }, + { + "id": "113634", + "name": "Centennial", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.57916000", + "longitude": "-104.87692000" + }, + { + "id": "113638", + "name": "Center", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.75306000", + "longitude": "-106.10864000" + }, + { + "id": "113671", + "name": "Central City", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.80193000", + "longitude": "-105.51416000" + }, + { + "id": "113710", + "name": "Chaffee County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74690000", + "longitude": "-106.19407000" + }, + { + "id": "113859", + "name": "Cherry Creek", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.63455000", + "longitude": "-104.88286000" + }, + { + "id": "113863", + "name": "Cherry Hills Village", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.64165000", + "longitude": "-104.95943000" + }, + { + "id": "113927", + "name": "Cheyenne County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.82794000", + "longitude": "-102.60340000" + }, + { + "id": "113930", + "name": "Cheyenne Wells", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.82140000", + "longitude": "-102.35324000" + }, + { + "id": "114025", + "name": "Cimarron Hills", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.85861000", + "longitude": "-104.69886000" + }, + { + "id": "114208", + "name": "Clear Creek County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.68910000", + "longitude": "-105.64436000" + }, + { + "id": "114261", + "name": "Clifton", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.09193000", + "longitude": "-108.44898000" + }, + { + "id": "114329", + "name": "Coal Creek", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.90638000", + "longitude": "-105.37749000" + }, + { + "id": "114455", + "name": "Colorado City", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.94529000", + "longitude": "-104.83526000" + }, + { + "id": "114458", + "name": "Colorado Springs", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.83388000", + "longitude": "-104.82136000" + }, + { + "id": "114488", + "name": "Columbine", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.58777000", + "longitude": "-105.06943000" + }, + { + "id": "114489", + "name": "Columbine Valley", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.60110000", + "longitude": "-105.03221000" + }, + { + "id": "114526", + "name": "Commerce City", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.80832000", + "longitude": "-104.93387000" + }, + { + "id": "114552", + "name": "Conejos", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.08835000", + "longitude": "-106.01974000" + }, + { + "id": "114553", + "name": "Conejos County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.20070000", + "longitude": "-106.19163000" + }, + { + "id": "114674", + "name": "Cortez", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.34888000", + "longitude": "-108.58593000" + }, + { + "id": "114687", + "name": "Costilla County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.27810000", + "longitude": "-105.42827000" + }, + { + "id": "114755", + "name": "Craig", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.51525000", + "longitude": "-107.54645000" + }, + { + "id": "114787", + "name": "Creede", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.84917000", + "longitude": "-106.92643000" + }, + { + "id": "114804", + "name": "Crested Butte", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.86971000", + "longitude": "-106.98782000" + }, + { + "id": "114821", + "name": "Cripple Creek", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74666000", + "longitude": "-105.17831000" + }, + { + "id": "114865", + "name": "Crowley County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.32666000", + "longitude": "-103.78483000" + }, + { + "id": "114937", + "name": "Custer County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.10868000", + "longitude": "-105.36747000" + }, + { + "id": "114962", + "name": "Dacono", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.08471000", + "longitude": "-104.93942000" + }, + { + "id": "115190", + "name": "Del Norte", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.67889000", + "longitude": "-106.35337000" + }, + { + "id": "115222", + "name": "Delta", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74221000", + "longitude": "-108.06896000" + }, + { + "id": "115226", + "name": "Delta County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.86137000", + "longitude": "-107.86288000" + }, + { + "id": "115253", + "name": "Denver", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.73915000", + "longitude": "-104.98470000" + }, + { + "id": "115255", + "name": "Denver County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.76204000", + "longitude": "-104.87635000" + }, + { + "id": "115262", + "name": "Derby", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.83943000", + "longitude": "-104.91859000" + }, + { + "id": "115391", + "name": "Dolores County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.75160000", + "longitude": "-108.51722000" + }, + { + "id": "115433", + "name": "Douglas County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.32972000", + "longitude": "-104.92956000" + }, + { + "id": "115442", + "name": "Dove Creek", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.76610000", + "longitude": "-108.90594000" + }, + { + "id": "115443", + "name": "Dove Valley", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.57771000", + "longitude": "-104.82940000" + }, + { + "id": "115565", + "name": "Durango", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.27528000", + "longitude": "-107.88007000" + }, + { + "id": "115592", + "name": "Eads", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.48056000", + "longitude": "-102.78186000" + }, + { + "id": "115597", + "name": "Eagle", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.65526000", + "longitude": "-106.82865000" + }, + { + "id": "115600", + "name": "Eagle County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.62783000", + "longitude": "-106.69530000" + }, + { + "id": "115802", + "name": "Eaton", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.53026000", + "longitude": "-104.71135000" + }, + { + "id": "115855", + "name": "Edgewater", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.75304000", + "longitude": "-105.06415000" + }, + { + "id": "115887", + "name": "Edwards", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.64499000", + "longitude": "-106.59420000" + }, + { + "id": "115925", + "name": "El Jebel", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.39498000", + "longitude": "-107.09033000" + }, + { + "id": "115931", + "name": "El Paso County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.83209000", + "longitude": "-104.52558000" + }, + { + "id": "115943", + "name": "Elbert County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.28656000", + "longitude": "-104.13589000" + }, + { + "id": "115974", + "name": "Elizabeth", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.36027000", + "longitude": "-104.59691000" + }, + { + "id": "116023", + "name": "Ellicott", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.83833000", + "longitude": "-104.38691000" + }, + { + "id": "116133", + "name": "Englewood", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.64777000", + "longitude": "-104.98776000" + }, + { + "id": "116167", + "name": "Erie", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.05026000", + "longitude": "-105.04998000" + }, + { + "id": "116208", + "name": "Estes Park", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.37721000", + "longitude": "-105.52167000" + }, + { + "id": "116246", + "name": "Evans", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.37637000", + "longitude": "-104.69219000" + }, + { + "id": "116263", + "name": "Evergreen", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.63332000", + "longitude": "-105.31721000" + }, + { + "id": "116344", + "name": "Fairplay", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.22471000", + "longitude": "-106.00196000" + }, + { + "id": "116464", + "name": "Federal Heights", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.85137000", + "longitude": "-104.99859000" + }, + { + "id": "116521", + "name": "Firestone", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.11248000", + "longitude": "-104.93664000" + }, + { + "id": "116585", + "name": "Florence", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.39028000", + "longitude": "-105.11860000" + }, + { + "id": "116699", + "name": "Fort Carson", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.73749000", + "longitude": "-104.78886000" + }, + { + "id": "116701", + "name": "Fort Collins", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.58526000", + "longitude": "-105.08442000" + }, + { + "id": "116726", + "name": "Fort Lupton", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.08471000", + "longitude": "-104.81303000" + }, + { + "id": "116733", + "name": "Fort Morgan", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.25026000", + "longitude": "-103.79995000" + }, + { + "id": "116778", + "name": "Fountain", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.68222000", + "longitude": "-104.70081000" + }, + { + "id": "116796", + "name": "Fowler", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.12917000", + "longitude": "-104.02329000" + }, + { + "id": "116881", + "name": "Fraser", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.94499000", + "longitude": "-105.81723000" + }, + { + "id": "116887", + "name": "Frederick", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.09915000", + "longitude": "-104.93720000" + }, + { + "id": "116926", + "name": "Fremont County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.47297000", + "longitude": "-105.43966000" + }, + { + "id": "116956", + "name": "Frisco", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.57443000", + "longitude": "-106.09752000" + }, + { + "id": "116968", + "name": "Fruita", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.15887000", + "longitude": "-108.72899000" + }, + { + "id": "116976", + "name": "Fruitvale", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.08165000", + "longitude": "-108.49676000" + }, + { + "id": "117084", + "name": "Garfield County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.59931000", + "longitude": "-107.90395000" + }, + { + "id": "117134", + "name": "Genesee", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.68582000", + "longitude": "-105.27277000" + }, + { + "id": "117164", + "name": "Georgetown", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.70610000", + "longitude": "-105.69750000" + }, + { + "id": "117209", + "name": "Gilcrest", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.28193000", + "longitude": "-104.77775000" + }, + { + "id": "117224", + "name": "Gilpin County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.85756000", + "longitude": "-105.52253000" + }, + { + "id": "117287", + "name": "Glendale", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.70499000", + "longitude": "-104.93359000" + }, + { + "id": "117292", + "name": "Gleneagle", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.04527000", + "longitude": "-104.82442000" + }, + { + "id": "117318", + "name": "Glenwood Springs", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.55054000", + "longitude": "-107.32478000" + }, + { + "id": "117346", + "name": "Golden", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.75554000", + "longitude": "-105.22110000" + }, + { + "id": "117448", + "name": "Granby", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.08610000", + "longitude": "-105.93946000" + }, + { + "id": "117456", + "name": "Grand County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.10261000", + "longitude": "-106.11836000" + }, + { + "id": "117465", + "name": "Grand Junction", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.06387000", + "longitude": "-108.55065000" + }, + { + "id": "117586", + "name": "Greeley", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.42331000", + "longitude": "-104.70913000" + }, + { + "id": "117712", + "name": "Greenwood Village", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.61721000", + "longitude": "-104.95081000" + }, + { + "id": "117801", + "name": "Gunbarrel", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.06335000", + "longitude": "-105.17107000" + }, + { + "id": "117802", + "name": "Gunnison", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.54582000", + "longitude": "-106.92532000" + }, + { + "id": "117804", + "name": "Gunnison County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.66680000", + "longitude": "-107.03170000" + }, + { + "id": "117822", + "name": "Gypsum", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.64693000", + "longitude": "-106.95171000" + }, + { + "id": "118178", + "name": "Hayden", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.49529000", + "longitude": "-107.25729000" + }, + { + "id": "118420", + "name": "Highlands Ranch", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.55388000", + "longitude": "-104.96943000" + }, + { + "id": "118487", + "name": "Hinsdale County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.82134000", + "longitude": "-107.30031000" + }, + { + "id": "118558", + "name": "Holly Hills", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.66757000", + "longitude": "-104.91797000" + }, + { + "id": "118584", + "name": "Holyoke", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.58444000", + "longitude": "-102.30241000" + }, + { + "id": "118687", + "name": "Hot Sulphur Springs", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.07304000", + "longitude": "-106.10280000" + }, + { + "id": "118747", + "name": "Hudson", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.07359000", + "longitude": "-104.64302000" + }, + { + "id": "118755", + "name": "Huerfano County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.68468000", + "longitude": "-104.96058000" + }, + { + "id": "118767", + "name": "Hugo", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.13610000", + "longitude": "-103.46994000" + }, + { + "id": "118872", + "name": "Idaho Springs", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.74249000", + "longitude": "-105.51361000" + }, + { + "id": "118908", + "name": "Indian Hills", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.61665000", + "longitude": "-105.23721000" + }, + { + "id": "118958", + "name": "Inverness", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.57738000", + "longitude": "-104.86135000" + }, + { + "id": "119094", + "name": "Jackson County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.66643000", + "longitude": "-106.34279000" + }, + { + "id": "119194", + "name": "Jefferson County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.58642000", + "longitude": "-105.25047000" + }, + { + "id": "119286", + "name": "Johnstown", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.33693000", + "longitude": "-104.91220000" + }, + { + "id": "119329", + "name": "Julesburg", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.98833000", + "longitude": "-102.26435000" + }, + { + "id": "119422", + "name": "Keenesburg", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.10832000", + "longitude": "-104.51996000" + }, + { + "id": "119439", + "name": "Ken Caryl", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.57582000", + "longitude": "-105.11221000" + }, + { + "id": "119519", + "name": "Kersey", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.38748000", + "longitude": "-104.56163000" + }, + { + "id": "119547", + "name": "Keystone", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.59943000", + "longitude": "-105.98724000" + }, + { + "id": "119645", + "name": "Kiowa", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.34721000", + "longitude": "-104.46441000" + }, + { + "id": "119648", + "name": "Kiowa County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.43269000", + "longitude": "-102.74034000" + }, + { + "id": "119659", + "name": "Kit Carson County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.30544000", + "longitude": "-102.60289000" + }, + { + "id": "119666", + "name": "Kittredge", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.65471000", + "longitude": "-105.29971000" + }, + { + "id": "119716", + "name": "Kremmling", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.05887000", + "longitude": "-106.38892000" + }, + { + "id": "119762", + "name": "La Junta", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.98501000", + "longitude": "-103.54383000" + }, + { + "id": "119775", + "name": "La Plata County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.28656000", + "longitude": "-107.84334000" + }, + { + "id": "119786", + "name": "La Salle", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.34887000", + "longitude": "-104.70191000" + }, + { + "id": "119836", + "name": "Lafayette", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.99360000", + "longitude": "-105.08971000" + }, + { + "id": "119886", + "name": "Lake City", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.03000000", + "longitude": "-107.31533000" + }, + { + "id": "119897", + "name": "Lake County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.20238000", + "longitude": "-106.34484000" + }, + { + "id": "120050", + "name": "Lakewood", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.70471000", + "longitude": "-105.08137000" + }, + { + "id": "120060", + "name": "Lamar", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.08723000", + "longitude": "-102.62075000" + }, + { + "id": "120136", + "name": "Laporte", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.62633000", + "longitude": "-105.13916000" + }, + { + "id": "120145", + "name": "Larimer County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.66641000", + "longitude": "-105.46116000" + }, + { + "id": "120153", + "name": "Las Animas", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.06667000", + "longitude": "-103.22271000" + }, + { + "id": "120154", + "name": "Las Animas County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.31585000", + "longitude": "-104.03872000" + }, + { + "id": "120271", + "name": "Leadville", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.25082000", + "longitude": "-106.29252000" + }, + { + "id": "120272", + "name": "Leadville North", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.25760000", + "longitude": "-106.30138000" + }, + { + "id": "120498", + "name": "Limon", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.26388000", + "longitude": "-103.69217000" + }, + { + "id": "120530", + "name": "Lincoln County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.98807000", + "longitude": "-103.51397000" + }, + { + "id": "120545", + "name": "Lincoln Park", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.42916000", + "longitude": "-105.21999000" + }, + { + "id": "120636", + "name": "Littleton", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.61332000", + "longitude": "-105.01665000" + }, + { + "id": "120670", + "name": "Lochbuie", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.00721000", + "longitude": "-104.71608000" + }, + { + "id": "120703", + "name": "Logan County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.72468000", + "longitude": "-103.11010000" + }, + { + "id": "120711", + "name": "Loma", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.19581000", + "longitude": "-108.81316000" + }, + { + "id": "120732", + "name": "Lone Tree", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.55171000", + "longitude": "-104.88630000" + }, + { + "id": "120754", + "name": "Longmont", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.16721000", + "longitude": "-105.10193000" + }, + { + "id": "120817", + "name": "Louisville", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.97776000", + "longitude": "-105.13193000" + }, + { + "id": "120822", + "name": "Loveland", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.39776000", + "longitude": "-105.07498000" + }, + { + "id": "120945", + "name": "Lyons", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.22471000", + "longitude": "-105.27138000" + }, + { + "id": "121105", + "name": "Mancos", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.34500000", + "longitude": "-108.28925000" + }, + { + "id": "121126", + "name": "Manitou Springs", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.85971000", + "longitude": "-104.91720000" + }, + { + "id": "121552", + "name": "Mead", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.23332000", + "longitude": "-104.99859000" + }, + { + "id": "121613", + "name": "Meeker", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.03747000", + "longitude": "-107.91313000" + }, + { + "id": "121694", + "name": "Meridian", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.53957000", + "longitude": "-104.84528000" + }, + { + "id": "121721", + "name": "Mesa County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.01828000", + "longitude": "-108.46645000" + }, + { + "id": "121890", + "name": "Milliken", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.32943000", + "longitude": "-104.85525000" + }, + { + "id": "121935", + "name": "Mineral County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.66900000", + "longitude": "-106.92409000" + }, + { + "id": "121969", + "name": "Minturn", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.58637000", + "longitude": "-106.43086000" + }, + { + "id": "122016", + "name": "Moffat County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.61843000", + "longitude": "-108.20730000" + }, + { + "id": "122111", + "name": "Monte Vista", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.57917000", + "longitude": "-106.14808000" + }, + { + "id": "122129", + "name": "Montezuma County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.33841000", + "longitude": "-108.59671000" + }, + { + "id": "122184", + "name": "Montrose", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.47832000", + "longitude": "-107.87617000" + }, + { + "id": "122185", + "name": "Montrose County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.40218000", + "longitude": "-108.26936000" + }, + { + "id": "122191", + "name": "Monument", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.09166000", + "longitude": "-104.87276000" + }, + { + "id": "122244", + "name": "Morgan County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.26271000", + "longitude": "-103.80982000" + }, + { + "id": "122435", + "name": "Mountain Village", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.93138000", + "longitude": "-107.85645000" + }, + { + "id": "122611", + "name": "Nederland", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.96138000", + "longitude": "-105.51083000" + }, + { + "id": "122689", + "name": "New Castle", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.57276000", + "longitude": "-107.53644000" + }, + { + "id": "122911", + "name": "Niwot", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.10387000", + "longitude": "-105.17082000" + }, + { + "id": "123155", + "name": "Northglenn", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.88554000", + "longitude": "-104.98720000" + }, + { + "id": "123413", + "name": "Olathe", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.60499000", + "longitude": "-107.98229000" + }, + { + "id": "123532", + "name": "Orchard City", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.82832000", + "longitude": "-107.97090000" + }, + { + "id": "123537", + "name": "Orchard Mesa", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.04304000", + "longitude": "-108.55232000" + }, + { + "id": "123543", + "name": "Ordway", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.21806000", + "longitude": "-103.75606000" + }, + { + "id": "123625", + "name": "Otero County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.90270000", + "longitude": "-103.71645000" + }, + { + "id": "123646", + "name": "Ouray", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.02277000", + "longitude": "-107.67145000" + }, + { + "id": "123647", + "name": "Ouray County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.15550000", + "longitude": "-107.76932000" + }, + { + "id": "123722", + "name": "Pagosa Springs", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.26945000", + "longitude": "-107.00976000" + }, + { + "id": "123738", + "name": "Palisade", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.11026000", + "longitude": "-108.35092000" + }, + { + "id": "123762", + "name": "Palmer Lake", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.12221000", + "longitude": "-104.91720000" + }, + { + "id": "123813", + "name": "Paonia", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.86832000", + "longitude": "-107.59200000" + }, + { + "id": "123815", + "name": "Parachute", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.45192000", + "longitude": "-108.05285000" + }, + { + "id": "123841", + "name": "Park County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.11930000", + "longitude": "-105.71717000" + }, + { + "id": "123863", + "name": "Parker", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.51860000", + "longitude": "-104.76136000" + }, + { + "id": "124043", + "name": "Penrose", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.42500000", + "longitude": "-105.02276000" + }, + { + "id": "124084", + "name": "Perry Park", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.25666000", + "longitude": "-104.99248000" + }, + { + "id": "124137", + "name": "Phillips County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.59388000", + "longitude": "-102.35758000" + }, + { + "id": "124286", + "name": "Pitkin County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.21711000", + "longitude": "-106.91658000" + }, + { + "id": "124358", + "name": "Platteville", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.21498000", + "longitude": "-104.82275000" + }, + { + "id": "124470", + "name": "Ponderosa Park", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.40832000", + "longitude": "-104.65108000" + }, + { + "id": "124722", + "name": "Prowers County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.95518000", + "longitude": "-102.39335000" + }, + { + "id": "124728", + "name": "Pueblo", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.25445000", + "longitude": "-104.60914000" + }, + { + "id": "124729", + "name": "Pueblo County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.17342000", + "longitude": "-104.51285000" + }, + { + "id": "124730", + "name": "Pueblo West", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.35000000", + "longitude": "-104.72275000" + }, + { + "id": "124881", + "name": "Rangely", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.08748000", + "longitude": "-108.80483000" + }, + { + "id": "124977", + "name": "Redlands", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.07887000", + "longitude": "-108.63565000" + }, + { + "id": "125136", + "name": "Rifle", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.53470000", + "longitude": "-107.78312000" + }, + { + "id": "125148", + "name": "Rio Blanco County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.97984000", + "longitude": "-108.21721000" + }, + { + "id": "125155", + "name": "Rio Grande County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.58252000", + "longitude": "-106.38321000" + }, + { + "id": "125334", + "name": "Rocky Ford", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.05251000", + "longitude": "-103.72023000" + }, + { + "id": "125476", + "name": "Routt County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.48507000", + "longitude": "-106.99119000" + }, + { + "id": "125485", + "name": "Roxborough Park", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.47388000", + "longitude": "-105.08526000" + }, + { + "id": "125591", + "name": "Saguache", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.08750000", + "longitude": "-106.14197000" + }, + { + "id": "125592", + "name": "Saguache County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.08055000", + "longitude": "-106.28156000" + }, + { + "id": "125743", + "name": "Salida", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.53472000", + "longitude": "-105.99890000" + }, + { + "id": "125820", + "name": "San Juan County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.76404000", + "longitude": "-107.67615000" + }, + { + "id": "125828", + "name": "San Luis", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.20085000", + "longitude": "-105.42390000" + }, + { + "id": "125840", + "name": "San Miguel County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.00374000", + "longitude": "-108.40583000" + }, + { + "id": "126113", + "name": "Security-Widefield", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74728000", + "longitude": "-104.71439000" + }, + { + "id": "126120", + "name": "Sedgwick County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.87591000", + "longitude": "-102.35179000" + }, + { + "id": "126177", + "name": "Severance", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.52415000", + "longitude": "-104.85108000" + }, + { + "id": "126246", + "name": "Shaw Heights", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.85250000", + "longitude": "-105.04306000" + }, + { + "id": "126320", + "name": "Sheridan", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.64693000", + "longitude": "-105.02526000" + }, + { + "id": "126337", + "name": "Sherrelwood", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.83776000", + "longitude": "-105.00137000" + }, + { + "id": "126419", + "name": "Silt", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.54859000", + "longitude": "-107.65617000" + }, + { + "id": "126440", + "name": "Silverthorne", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.63214000", + "longitude": "-106.07428000" + }, + { + "id": "126441", + "name": "Silverton", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.81194000", + "longitude": "-107.66451000" + }, + { + "id": "126548", + "name": "Snowmass Village", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.21304000", + "longitude": "-106.93782000" + }, + { + "id": "126776", + "name": "Southglenn", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.58721000", + "longitude": "-104.95276000" + }, + { + "id": "126906", + "name": "Springfield", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.40835000", + "longitude": "-102.61436000" + }, + { + "id": "127003", + "name": "Steamboat Springs", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.48498000", + "longitude": "-106.83172000" + }, + { + "id": "127030", + "name": "Sterling", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.62554000", + "longitude": "-103.20771000" + }, + { + "id": "127088", + "name": "Stonegate", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.53082000", + "longitude": "-104.80386000" + }, + { + "id": "127121", + "name": "Strasburg", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.73832000", + "longitude": "-104.32329000" + }, + { + "id": "127132", + "name": "Stratmoor", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.77388000", + "longitude": "-104.77970000" + }, + { + "id": "127216", + "name": "Summit County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.63417000", + "longitude": "-106.11638000" + }, + { + "id": "127281", + "name": "Superior", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.95276000", + "longitude": "-105.16860000" + }, + { + "id": "127489", + "name": "Teller County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.88217000", + "longitude": "-105.16183000" + }, + { + "id": "127491", + "name": "Telluride", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.93749000", + "longitude": "-107.81229000" + }, + { + "id": "127563", + "name": "The Pinery", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.45527000", + "longitude": "-104.73442000" + }, + { + "id": "127603", + "name": "Thornton", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.86804000", + "longitude": "-104.97192000" + }, + { + "id": "127695", + "name": "Todd Creek", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.97804000", + "longitude": "-104.87331000" + }, + { + "id": "127753", + "name": "Towaoc", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.20444000", + "longitude": "-108.72954000" + }, + { + "id": "127823", + "name": "Trinidad", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.16946000", + "longitude": "-104.50054000" + }, + { + "id": "127931", + "name": "Twin Lakes", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.82499000", + "longitude": "-105.00470000" + }, + { + "id": "128041", + "name": "Upper Bear Creek", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.62385000", + "longitude": "-105.41780000" + }, + { + "id": "128076", + "name": "Vail", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.64026000", + "longitude": "-106.37420000" + }, + { + "id": "128369", + "name": "Walden", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.73164000", + "longitude": "-106.28364000" + }, + { + "id": "128426", + "name": "Walsenburg", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "37.62418000", + "longitude": "-104.78026000" + }, + { + "id": "128577", + "name": "Washington County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.97106000", + "longitude": "-103.20125000" + }, + { + "id": "128764", + "name": "Welby", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.83665000", + "longitude": "-104.95915000" + }, + { + "id": "128768", + "name": "Weld County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.55484000", + "longitude": "-104.39253000" + }, + { + "id": "128778", + "name": "Wellington", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.70387000", + "longitude": "-105.00859000" + }, + { + "id": "128957", + "name": "West Pleasant View", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.73256000", + "longitude": "-105.17852000" + }, + { + "id": "129021", + "name": "Westcliffe", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.13472000", + "longitude": "-105.46584000" + }, + { + "id": "129047", + "name": "Westminster", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.83665000", + "longitude": "-105.03720000" + }, + { + "id": "129107", + "name": "Wheat Ridge", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.76610000", + "longitude": "-105.07721000" + }, + { + "id": "129387", + "name": "Windsor", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.47748000", + "longitude": "-104.90136000" + }, + { + "id": "129533", + "name": "Woodland Park", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "38.99388000", + "longitude": "-105.05693000" + }, + { + "id": "129543", + "name": "Woodmoor", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "39.10138000", + "longitude": "-104.84748000" + }, + { + "id": "129602", + "name": "Wray", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.07582000", + "longitude": "-102.22325000" + }, + { + "id": "129734", + "name": "Yuma", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.12221000", + "longitude": "-102.72521000" + }, + { + "id": "129736", + "name": "Yuma County", + "state_id": 1450, + "state_code": "CO", + "country_id": 233, + "country_code": "US", + "latitude": "40.00290000", + "longitude": "-102.42423000" + }, + { + "id": "111362", + "name": "Ansonia", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.34621000", + "longitude": "-73.07900000" + }, + { + "id": "111781", + "name": "Baltic", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.61704000", + "longitude": "-72.08452000" + }, + { + "id": "112280", + "name": "Bethel", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.37121000", + "longitude": "-73.41401000" + }, + { + "id": "112292", + "name": "Bethlehem Village", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.64010000", + "longitude": "-73.20308000" + }, + { + "id": "112468", + "name": "Blue Hills", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.81288000", + "longitude": "-72.69759000" + }, + { + "id": "112693", + "name": "Branford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.27954000", + "longitude": "-72.81510000" + }, + { + "id": "112694", + "name": "Branford Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.27738000", + "longitude": "-72.81511000" + }, + { + "id": "112766", + "name": "Bridgeport", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.17923000", + "longitude": "-73.18945000" + }, + { + "id": "112809", + "name": "Bristol", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67176000", + "longitude": "-72.94927000" + }, + { + "id": "113140", + "name": "Byram", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.00426000", + "longitude": "-73.65374000" + }, + { + "id": "113313", + "name": "Canaan", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "42.02731000", + "longitude": "-73.32928000" + }, + { + "id": "113351", + "name": "Canton Valley", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.83426000", + "longitude": "-72.89177000" + }, + { + "id": "113684", + "name": "Central Waterford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.34504000", + "longitude": "-72.12948000" + }, + { + "id": "113877", + "name": "Cheshire", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.49899000", + "longitude": "-72.90066000" + }, + { + "id": "113879", + "name": "Cheshire Village", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.50260000", + "longitude": "-72.89952000" + }, + { + "id": "113894", + "name": "Chester Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.40132000", + "longitude": "-72.45270000" + }, + { + "id": "114071", + "name": "City of Milford (balance)", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.22374000", + "longitude": "-73.06164000" + }, + { + "id": "114285", + "name": "Clinton", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.27871000", + "longitude": "-72.52759000" + }, + { + "id": "114383", + "name": "Colchester", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.57565000", + "longitude": "-72.33203000" + }, + { + "id": "114439", + "name": "Collinsville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.81288000", + "longitude": "-72.92010000" + }, + { + "id": "114566", + "name": "Conning Towers-Nautilus Park", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.38548000", + "longitude": "-72.06877000" + }, + { + "id": "114684", + "name": "Cos Cob", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.03343000", + "longitude": "-73.59957000" + }, + { + "id": "114733", + "name": "Coventry Lake", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.77232000", + "longitude": "-72.33258000" + }, + { + "id": "114835", + "name": "Cromwell", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.59510000", + "longitude": "-72.64537000" + }, + { + "id": "114879", + "name": "Crystal Lake", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.93176000", + "longitude": "-72.37842000" + }, + { + "id": "115015", + "name": "Danbury", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.39482000", + "longitude": "-73.45401000" + }, + { + "id": "115025", + "name": "Danielson", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.80260000", + "longitude": "-71.88591000" + }, + { + "id": "115046", + "name": "Darien", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.07871000", + "longitude": "-73.46929000" + }, + { + "id": "115170", + "name": "Deep River Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.38221000", + "longitude": "-72.43862000" + }, + { + "id": "115261", + "name": "Derby", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.32065000", + "longitude": "-73.08900000" + }, + { + "id": "115570", + "name": "Durham", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.48176000", + "longitude": "-72.68121000" + }, + { + "id": "115640", + "name": "East Brooklyn", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.79677000", + "longitude": "-71.89729000" + }, + { + "id": "115677", + "name": "East Haddam", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.45315000", + "longitude": "-72.46120000" + }, + { + "id": "115678", + "name": "East Hampton", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.57593000", + "longitude": "-72.50259000" + }, + { + "id": "115684", + "name": "East Hartford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.78232000", + "longitude": "-72.61203000" + }, + { + "id": "115686", + "name": "East Haven", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.27621000", + "longitude": "-72.86843000" + }, + { + "id": "115723", + "name": "East Norwalk", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.10565000", + "longitude": "-73.39845000" + }, + { + "id": "115774", + "name": "East Windsor", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.91232000", + "longitude": "-72.54509000" + }, + { + "id": "115786", + "name": "Easton", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.25287000", + "longitude": "-73.29734000" + }, + { + "id": "116026", + "name": "Ellington", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.90399000", + "longitude": "-72.46981000" + }, + { + "id": "116125", + "name": "Enfield", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.97621000", + "longitude": "-72.59176000" + }, + { + "id": "116200", + "name": "Essex Village", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.35544000", + "longitude": "-72.39101000" + }, + { + "id": "116312", + "name": "Fairfield", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.14121000", + "longitude": "-73.26373000" + }, + { + "id": "116320", + "name": "Fairfield County", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.22496000", + "longitude": "-73.37120000" + }, + { + "id": "116415", + "name": "Farmington", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.71982000", + "longitude": "-72.83204000" + }, + { + "id": "117026", + "name": "Gales Ferry", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.42982000", + "longitude": "-72.08202000" + }, + { + "id": "117161", + "name": "Georgetown", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.25565000", + "longitude": "-73.43484000" + }, + { + "id": "117255", + "name": "Glastonbury", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.71232000", + "longitude": "-72.60815000" + }, + { + "id": "117256", + "name": "Glastonbury Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.70093000", + "longitude": "-72.59953000" + }, + { + "id": "117311", + "name": "Glenville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.03538000", + "longitude": "-73.65985000" + }, + { + "id": "117698", + "name": "Greenwich", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.02649000", + "longitude": "-73.62846000" + }, + { + "id": "117749", + "name": "Groton", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.35010000", + "longitude": "-72.07841000" + }, + { + "id": "117784", + "name": "Guilford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.28899000", + "longitude": "-72.68176000" + }, + { + "id": "117786", + "name": "Guilford Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.28156000", + "longitude": "-72.67619000" + }, + { + "id": "117886", + "name": "Hamden", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.39593000", + "longitude": "-72.89677000" + }, + { + "id": "118087", + "name": "Hartford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.76371000", + "longitude": "-72.68509000" + }, + { + "id": "118095", + "name": "Hartford County", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.80642000", + "longitude": "-72.73284000" + }, + { + "id": "118201", + "name": "Hazardville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.98732000", + "longitude": "-72.54481000" + }, + { + "id": "118234", + "name": "Hebron", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.65788000", + "longitude": "-72.36592000" + }, + { + "id": "118322", + "name": "Heritage Village", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.48565000", + "longitude": "-73.23789000" + }, + { + "id": "118383", + "name": "Higganum", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.49704000", + "longitude": "-72.55703000" + }, + { + "id": "119245", + "name": "Jewett City", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.60677000", + "longitude": "-71.98091000" + }, + { + "id": "119481", + "name": "Kensington", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.63538000", + "longitude": "-72.76871000" + }, + { + "id": "119486", + "name": "Kent", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.72482000", + "longitude": "-73.47707000" + }, + { + "id": "119561", + "name": "Killingly Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.83871000", + "longitude": "-71.86924000" + }, + { + "id": "119965", + "name": "Lake Pocotopaug", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.59843000", + "longitude": "-72.51037000" + }, + { + "id": "120302", + "name": "Ledyard", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.43982000", + "longitude": "-72.01424000" + }, + { + "id": "120597", + "name": "Lisbon", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.60399000", + "longitude": "-72.01174000" + }, + { + "id": "120604", + "name": "Litchfield", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.74732000", + "longitude": "-73.18872000" + }, + { + "id": "120608", + "name": "Litchfield County", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.79249000", + "longitude": "-73.24532000" + }, + { + "id": "120744", + "name": "Long Hill", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.35399000", + "longitude": "-72.05230000" + }, + { + "id": "120992", + "name": "Madison", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.27954000", + "longitude": "-72.59843000" + }, + { + "id": "121001", + "name": "Madison Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.27925000", + "longitude": "-72.60048000" + }, + { + "id": "121094", + "name": "Manchester", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.77593000", + "longitude": "-72.52148000" + }, + { + "id": "121149", + "name": "Mansfield City", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.76593000", + "longitude": "-72.23369000" + }, + { + "id": "121689", + "name": "Meriden", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.53815000", + "longitude": "-72.80704000" + }, + { + "id": "121771", + "name": "Middlebury", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.52787000", + "longitude": "-73.12761000" + }, + { + "id": "121779", + "name": "Middlesex County", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.43538000", + "longitude": "-72.52312000" + }, + { + "id": "121788", + "name": "Middletown", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.56232000", + "longitude": "-72.65065000" + }, + { + "id": "121847", + "name": "Milford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.22232000", + "longitude": "-73.05650000" + }, + { + "id": "122189", + "name": "Montville Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.47899000", + "longitude": "-72.15119000" + }, + { + "id": "122194", + "name": "Moodus", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.50288000", + "longitude": "-72.45009000" + }, + { + "id": "122217", + "name": "Moosup", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.71288000", + "longitude": "-71.88091000" + }, + { + "id": "122526", + "name": "Mystic", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.35427000", + "longitude": "-71.96646000" + }, + { + "id": "122595", + "name": "Naugatuck", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.48593000", + "longitude": "-73.05066000" + }, + { + "id": "122674", + "name": "New Britain", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.66121000", + "longitude": "-72.77954000" + }, + { + "id": "122679", + "name": "New Canaan", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.14676000", + "longitude": "-73.49484000" + }, + { + "id": "122705", + "name": "New Fairfield", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.46648000", + "longitude": "-73.48568000" + }, + { + "id": "122713", + "name": "New Hartford Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.87996000", + "longitude": "-72.97530000" + }, + { + "id": "122716", + "name": "New Haven", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.30815000", + "longitude": "-72.92816000" + }, + { + "id": "122719", + "name": "New Haven County", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.34882000", + "longitude": "-72.89986000" + }, + { + "id": "122741", + "name": "New London", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.35565000", + "longitude": "-72.09952000" + }, + { + "id": "122746", + "name": "New London County", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.46678000", + "longitude": "-72.10650000" + }, + { + "id": "122754", + "name": "New Milford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.57704000", + "longitude": "-73.40845000" + }, + { + "id": "122767", + "name": "New Preston", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67510000", + "longitude": "-73.35179000" + }, + { + "id": "122831", + "name": "Newington", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.69788000", + "longitude": "-72.72371000" + }, + { + "id": "122875", + "name": "Newtown", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.41398000", + "longitude": "-73.30345000" + }, + { + "id": "122883", + "name": "Niantic", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.32538000", + "longitude": "-72.19313000" + }, + { + "id": "122915", + "name": "Noank", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.32788000", + "longitude": "-71.99063000" + }, + { + "id": "122995", + "name": "North Branford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.32760000", + "longitude": "-72.76732000" + }, + { + "id": "123031", + "name": "North Granby", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.99593000", + "longitude": "-72.82954000" + }, + { + "id": "123033", + "name": "North Grosvenor Dale", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.98565000", + "longitude": "-71.89868000" + }, + { + "id": "123037", + "name": "North Haven", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.39093000", + "longitude": "-72.85954000" + }, + { + "id": "123111", + "name": "North Stamford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.13815000", + "longitude": "-73.54346000" + }, + { + "id": "123177", + "name": "Northwest Harwinton", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.77685000", + "longitude": "-73.07922000" + }, + { + "id": "123190", + "name": "Norwalk", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.11760000", + "longitude": "-73.40790000" + }, + { + "id": "123195", + "name": "Norwich", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.52426000", + "longitude": "-72.07591000" + }, + { + "id": "123307", + "name": "Oakville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.59343000", + "longitude": "-73.08539000" + }, + { + "id": "123420", + "name": "Old Greenwich", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.02287000", + "longitude": "-73.56485000" + }, + { + "id": "123423", + "name": "Old Mystic", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.39149000", + "longitude": "-71.96174000" + }, + { + "id": "123427", + "name": "Old Saybrook", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.29177000", + "longitude": "-72.37620000" + }, + { + "id": "123428", + "name": "Old Saybrook Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.29150000", + "longitude": "-72.36528000" + }, + { + "id": "123507", + "name": "Orange", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.27843000", + "longitude": "-73.02566000" + }, + { + "id": "123681", + "name": "Oxford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.43399000", + "longitude": "-73.11678000" + }, + { + "id": "123690", + "name": "Oxoboxo River", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.44391000", + "longitude": "-72.12502000" + }, + { + "id": "123929", + "name": "Pawcatuck", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.37732000", + "longitude": "-71.83368000" + }, + { + "id": "124002", + "name": "Pemberwick", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.02565000", + "longitude": "-73.66068000" + }, + { + "id": "124319", + "name": "Plainfield", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67649000", + "longitude": "-71.91507000" + }, + { + "id": "124322", + "name": "Plainfield Village", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67686000", + "longitude": "-71.92489000" + }, + { + "id": "124334", + "name": "Plainville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67454000", + "longitude": "-72.85816000" + }, + { + "id": "124400", + "name": "Plymouth", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67204000", + "longitude": "-73.05289000" + }, + { + "id": "124488", + "name": "Poquonock Bridge", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.34510000", + "longitude": "-72.02480000" + }, + { + "id": "124559", + "name": "Portland", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.57288000", + "longitude": "-72.64065000" + }, + { + "id": "124658", + "name": "Preston City", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.52899000", + "longitude": "-71.97396000" + }, + { + "id": "124706", + "name": "Prospect", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.50232000", + "longitude": "-72.97872000" + }, + { + "id": "124760", + "name": "Putnam", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.91510000", + "longitude": "-71.90896000" + }, + { + "id": "124801", + "name": "Quinebaug", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "42.02371000", + "longitude": "-71.94980000" + }, + { + "id": "125119", + "name": "Ridgefield", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.28148000", + "longitude": "-73.49818000" + }, + { + "id": "125204", + "name": "Riverside", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.03371000", + "longitude": "-73.57818000" + }, + { + "id": "125323", + "name": "Rockville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.86676000", + "longitude": "-72.44953000" + }, + { + "id": "125732", + "name": "Salem", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.49038000", + "longitude": "-72.27536000" + }, + { + "id": "125764", + "name": "Salmon Brook", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.95649000", + "longitude": "-72.79537000" + }, + { + "id": "125986", + "name": "Saybrook Manor", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.28538000", + "longitude": "-72.39897000" + }, + { + "id": "126196", + "name": "Seymour", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.39676000", + "longitude": "-73.07594000" + }, + { + "id": "126297", + "name": "Shelton", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.31649000", + "longitude": "-73.09316000" + }, + { + "id": "126331", + "name": "Sherman", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.57926000", + "longitude": "-73.49568000" + }, + { + "id": "126343", + "name": "Sherwood Manor", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "42.01343000", + "longitude": "-72.56425000" + }, + { + "id": "126453", + "name": "Simsbury Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.88088000", + "longitude": "-72.81116000" + }, + { + "id": "126575", + "name": "Somers", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.98537000", + "longitude": "-72.44620000" + }, + { + "id": "126644", + "name": "South Coventry", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.77010000", + "longitude": "-72.30508000" + }, + { + "id": "126751", + "name": "South Windham", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67954000", + "longitude": "-72.17036000" + }, + { + "id": "126753", + "name": "South Windsor", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.82371000", + "longitude": "-72.62120000" + }, + { + "id": "126754", + "name": "South Woodstock", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.93899000", + "longitude": "-71.95952000" + }, + { + "id": "126763", + "name": "Southbury", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.48148000", + "longitude": "-73.21317000" + }, + { + "id": "126784", + "name": "Southport", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.13649000", + "longitude": "-73.28345000" + }, + { + "id": "126792", + "name": "Southwood Acres", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.96260000", + "longitude": "-72.57148000" + }, + { + "id": "126934", + "name": "Stafford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.98482000", + "longitude": "-72.28897000" + }, + { + "id": "126938", + "name": "Stafford Springs", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.95426000", + "longitude": "-72.30230000" + }, + { + "id": "126944", + "name": "Stamford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.05343000", + "longitude": "-73.53873000" + }, + { + "id": "127105", + "name": "Storrs", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.80843000", + "longitude": "-72.24952000" + }, + { + "id": "127124", + "name": "Stratford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.18454000", + "longitude": "-73.13317000" + }, + { + "id": "127165", + "name": "Suffield Depot", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.98121000", + "longitude": "-72.64981000" + }, + { + "id": "127430", + "name": "Tariffville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.90871000", + "longitude": "-72.76010000" + }, + { + "id": "127519", + "name": "Terramuggus", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.63510000", + "longitude": "-72.47036000" + }, + { + "id": "127535", + "name": "Terryville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67815000", + "longitude": "-73.01094000" + }, + { + "id": "127584", + "name": "Thomaston", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67399000", + "longitude": "-73.07316000" + }, + { + "id": "127590", + "name": "Thompson", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.95871000", + "longitude": "-71.86257000" + }, + { + "id": "127594", + "name": "Thompsonville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.99704000", + "longitude": "-72.59898000" + }, + { + "id": "127701", + "name": "Tolland", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.87149000", + "longitude": "-72.36869000" + }, + { + "id": "127702", + "name": "Tolland County", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.85501000", + "longitude": "-72.33649000" + }, + { + "id": "127744", + "name": "Torrington", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.80065000", + "longitude": "-73.12122000" + }, + { + "id": "127858", + "name": "Trumbull", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.24287000", + "longitude": "-73.20067000" + }, + { + "id": "127967", + "name": "Uncasville", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.43454000", + "longitude": "-72.10980000" + }, + { + "id": "128406", + "name": "Wallingford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.45704000", + "longitude": "-72.82316000" + }, + { + "id": "128407", + "name": "Wallingford Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.44987000", + "longitude": "-72.81892000" + }, + { + "id": "128545", + "name": "Washington", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.63148000", + "longitude": "-73.31067000" + }, + { + "id": "128602", + "name": "Waterbury", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.55815000", + "longitude": "-73.05150000" + }, + { + "id": "128610", + "name": "Waterford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.34170000", + "longitude": "-72.13597000" + }, + { + "id": "128620", + "name": "Watertown", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.60621000", + "longitude": "-73.11817000" + }, + { + "id": "128658", + "name": "Wauregan", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.74427000", + "longitude": "-71.90924000" + }, + { + "id": "128720", + "name": "Weatogue", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.84371000", + "longitude": "-72.82843000" + }, + { + "id": "128885", + "name": "West Hartford", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.76204000", + "longitude": "-72.74204000" + }, + { + "id": "128887", + "name": "West Haven", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.27065000", + "longitude": "-72.94705000" + }, + { + "id": "128982", + "name": "West Simsbury", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.87315000", + "longitude": "-72.85815000" + }, + { + "id": "128991", + "name": "West Torrington", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.81843000", + "longitude": "-73.14372000" + }, + { + "id": "129014", + "name": "Westbrook Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.27997000", + "longitude": "-72.44254000" + }, + { + "id": "129072", + "name": "Westport", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.14149000", + "longitude": "-73.35790000" + }, + { + "id": "129090", + "name": "Wethersfield", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.71427000", + "longitude": "-72.65259000" + }, + { + "id": "129293", + "name": "Willimantic", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.71065000", + "longitude": "-72.20813000" + }, + { + "id": "129342", + "name": "Wilton", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.19537000", + "longitude": "-73.43790000" + }, + { + "id": "129362", + "name": "Winchester Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.90010000", + "longitude": "-73.13483000" + }, + { + "id": "129371", + "name": "Windham", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.69982000", + "longitude": "-72.15702000" + }, + { + "id": "129373", + "name": "Windham County", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.83003000", + "longitude": "-71.98749000" + }, + { + "id": "129382", + "name": "Windsor", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.85260000", + "longitude": "-72.64370000" + }, + { + "id": "129390", + "name": "Windsor Locks", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.92926000", + "longitude": "-72.62731000" + }, + { + "id": "129430", + "name": "Winsted", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.92121000", + "longitude": "-73.06011000" + }, + { + "id": "129468", + "name": "Wolcott", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.60232000", + "longitude": "-72.98677000" + }, + { + "id": "129499", + "name": "Woodbridge", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.35260000", + "longitude": "-73.00844000" + }, + { + "id": "129508", + "name": "Woodbury", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.54454000", + "longitude": "-73.20900000" + }, + { + "id": "129511", + "name": "Woodbury Center", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.54453000", + "longitude": "-73.20476000" + }, + { + "id": "129542", + "name": "Woodmont", + "state_id": 1435, + "state_code": "CT", + "country_id": 233, + "country_code": "US", + "latitude": "41.22815000", + "longitude": "-72.99149000" + }, + { + "id": "111974", + "name": "Bear", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.62928000", + "longitude": "-75.65826000" + }, + { + "id": "112098", + "name": "Bellefonte", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.76622000", + "longitude": "-75.50936000" + }, + { + "id": "112277", + "name": "Bethany Beach", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.53956000", + "longitude": "-75.05518000" + }, + { + "id": "112401", + "name": "Blades", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.63567000", + "longitude": "-75.60993000" + }, + { + "id": "112772", + "name": "Bridgeville", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.74261000", + "longitude": "-75.60437000" + }, + { + "id": "112887", + "name": "Brookside", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.66706000", + "longitude": "-75.72688000" + }, + { + "id": "113261", + "name": "Camden", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.11345000", + "longitude": "-75.54187000" + }, + { + "id": "113914", + "name": "Cheswold", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.21928000", + "longitude": "-75.58576000" + }, + { + "id": "114192", + "name": "Claymont", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.80067000", + "longitude": "-75.45964000" + }, + { + "id": "114197", + "name": "Clayton", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.29067000", + "longitude": "-75.63437000" + }, + { + "id": "115203", + "name": "Delaware City", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.57789000", + "longitude": "-75.58881000" + }, + { + "id": "115217", + "name": "Delmar", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.45651000", + "longitude": "-75.57715000" + }, + { + "id": "115445", + "name": "Dover", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.15817000", + "longitude": "-75.52437000" + }, + { + "id": "115453", + "name": "Dover Base Housing", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.11763000", + "longitude": "-75.48393000" + }, + { + "id": "115847", + "name": "Edgemoor", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.75011000", + "longitude": "-75.49964000" + }, + { + "id": "116070", + "name": "Elsmere", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.73928000", + "longitude": "-75.59798000" + }, + { + "id": "116470", + "name": "Felton", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.00845000", + "longitude": "-75.57798000" + }, + { + "id": "117155", + "name": "Georgetown", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.69011000", + "longitude": "-75.38547000" + }, + { + "id": "117245", + "name": "Glasgow", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.60483000", + "longitude": "-75.74521000" + }, + { + "id": "117681", + "name": "Greenville", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.77900000", + "longitude": "-75.59826000" + }, + { + "id": "117700", + "name": "Greenwood", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.80706000", + "longitude": "-75.59132000" + }, + { + "id": "118041", + "name": "Harrington", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.92372000", + "longitude": "-75.57770000" + }, + { + "id": "118401", + "name": "Highland Acres", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.12095000", + "longitude": "-75.52187000" + }, + { + "id": "118503", + "name": "Hockessin", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.78761000", + "longitude": "-75.69660000" + }, + { + "id": "119488", + "name": "Kent Acres", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.13178000", + "longitude": "-75.52492000" + }, + { + "id": "119490", + "name": "Kent County", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.09595000", + "longitude": "-75.50461000" + }, + { + "id": "120187", + "name": "Laurel", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.55650000", + "longitude": "-75.57131000" + }, + { + "id": "120410", + "name": "Lewes", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.77456000", + "longitude": "-75.13935000" + }, + { + "id": "120748", + "name": "Long Neck", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.62011000", + "longitude": "-75.15074000" + }, + { + "id": "121785", + "name": "Middletown", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.44956000", + "longitude": "-75.71632000" + }, + { + "id": "121846", + "name": "Milford", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.91261000", + "longitude": "-75.42797000" + }, + { + "id": "121900", + "name": "Millsboro", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.59150000", + "longitude": "-75.29130000" + }, + { + "id": "121911", + "name": "Milton", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.77761000", + "longitude": "-75.30991000" + }, + { + "id": "122683", + "name": "New Castle", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.66206000", + "longitude": "-75.56631000" + }, + { + "id": "122690", + "name": "New Castle County", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.57833000", + "longitude": "-75.63898000" + }, + { + "id": "122799", + "name": "Newark", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.68372000", + "longitude": "-75.74966000" + }, + { + "id": "122838", + "name": "Newport", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.71372000", + "longitude": "-75.60937000" + }, + { + "id": "123112", + "name": "North Star", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.76122000", + "longitude": "-75.71910000" + }, + { + "id": "123338", + "name": "Ocean View", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.54511000", + "longitude": "-75.08907000" + }, + { + "id": "124194", + "name": "Pike Creek", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.73095000", + "longitude": "-75.70410000" + }, + { + "id": "124195", + "name": "Pike Creek Valley", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.73622000", + "longitude": "-75.69827000" + }, + { + "id": "125005", + "name": "Rehoboth Beach", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.72095000", + "longitude": "-75.07601000" + }, + { + "id": "125171", + "name": "Rising Sun-Lebanon", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.09977000", + "longitude": "-75.50488000" + }, + { + "id": "125217", + "name": "Riverview", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.02650000", + "longitude": "-75.51076000" + }, + { + "id": "125342", + "name": "Rodney Village", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.13206000", + "longitude": "-75.53242000" + }, + { + "id": "126085", + "name": "Seaford", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.64123000", + "longitude": "-75.61104000" + }, + { + "id": "126132", + "name": "Selbyville", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.46039000", + "longitude": "-75.22074000" + }, + { + "id": "126534", + "name": "Smyrna", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.29983000", + "longitude": "-75.60465000" + }, + { + "id": "127303", + "name": "Sussex County", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "38.68330000", + "longitude": "-75.33954000" + }, + { + "id": "127764", + "name": "Townsend", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.39511000", + "longitude": "-75.69160000" + }, + { + "id": "129321", + "name": "Wilmington", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.74595000", + "longitude": "-75.54659000" + }, + { + "id": "129326", + "name": "Wilmington Manor", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.68678000", + "longitude": "-75.58437000" + }, + { + "id": "129557", + "name": "Woodside East", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.06756000", + "longitude": "-75.53748000" + }, + { + "id": "129634", + "name": "Wyoming", + "state_id": 1399, + "state_code": "DE", + "country_id": 233, + "country_code": "US", + "latitude": "39.11817000", + "longitude": "-75.55881000" + }, + { + "id": "111028", + "name": "Adams Morgan", + "state_id": 1437, + "state_code": "DC", + "country_id": 233, + "country_code": "US", + "latitude": "38.92150000", + "longitude": "-77.04220000" + }, + { + "id": "112444", + "name": "Bloomingdale", + "state_id": 1437, + "state_code": "DC", + "country_id": 233, + "country_code": "US", + "latitude": "38.91678000", + "longitude": "-77.01137000" + }, + { + "id": "113920", + "name": "Chevy Chase", + "state_id": 1437, + "state_code": "DC", + "country_id": 233, + "country_code": "US", + "latitude": "38.96400000", + "longitude": "-77.06776000" + }, + { + "id": "126244", + "name": "Shaw", + "state_id": 1437, + "state_code": "DC", + "country_id": 233, + "country_code": "US", + "latitude": "38.91206000", + "longitude": "-77.02137000" + }, + { + "id": "128587", + "name": "Washington, D.C.", + "state_id": 1437, + "state_code": "DC", + "country_id": 233, + "country_code": "US", + "latitude": "38.89511000", + "longitude": "-77.03637000" + }, + { + "id": "110972", + "name": "Aberdeen", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.55063000", + "longitude": "-80.14866000" + }, + { + "id": "111084", + "name": "Alachua", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.75163000", + "longitude": "-82.42483000" + }, + { + "id": "111085", + "name": "Alachua County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.67476000", + "longitude": "-82.35770000" + }, + { + "id": "111086", + "name": "Alafaya", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.56410000", + "longitude": "-81.21140000" + }, + { + "id": "111177", + "name": "Allapattah", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.81454000", + "longitude": "-80.22394000" + }, + { + "id": "111237", + "name": "Altamonte Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.66111000", + "longitude": "-81.36562000" + }, + { + "id": "111250", + "name": "Alturas", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.87169000", + "longitude": "-81.71508000" + }, + { + "id": "111255", + "name": "Alva", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.71562000", + "longitude": "-81.61008000" + }, + { + "id": "111321", + "name": "Andover", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.96843000", + "longitude": "-80.21283000" + }, + { + "id": "111348", + "name": "Anna Maria", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.53115000", + "longitude": "-82.73343000" + }, + { + "id": "111382", + "name": "Apalachicola", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.72600000", + "longitude": "-84.98560000" + }, + { + "id": "111388", + "name": "Apollo Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.77308000", + "longitude": "-82.40759000" + }, + { + "id": "111389", + "name": "Apopka", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.67617000", + "longitude": "-81.51186000" + }, + { + "id": "111420", + "name": "Arcadia", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.21588000", + "longitude": "-81.85842000" + }, + { + "id": "111429", + "name": "Archer", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.52997000", + "longitude": "-82.51900000" + }, + { + "id": "111507", + "name": "Asbury Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.04913000", + "longitude": "-81.82149000" + }, + { + "id": "111559", + "name": "Astatula", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.70972000", + "longitude": "-81.73285000" + }, + { + "id": "111560", + "name": "Astor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.16248000", + "longitude": "-81.52535000" + }, + { + "id": "111595", + "name": "Atlantic Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.33441000", + "longitude": "-81.39870000" + }, + { + "id": "111601", + "name": "Atlantis", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.59090000", + "longitude": "-80.10088000" + }, + { + "id": "111636", + "name": "Auburndale", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.06530000", + "longitude": "-81.78869000" + }, + { + "id": "111678", + "name": "Aventura", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.95648000", + "longitude": "-80.13921000" + }, + { + "id": "111696", + "name": "Avon Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.59587000", + "longitude": "-81.50619000" + }, + { + "id": "111709", + "name": "Azalea Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.54111000", + "longitude": "-81.30062000" + }, + { + "id": "111715", + "name": "Babson Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.83197000", + "longitude": "-81.52230000" + }, + { + "id": "111726", + "name": "Bagdad", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.59880000", + "longitude": "-87.03223000" + }, + { + "id": "111741", + "name": "Baker County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.33107000", + "longitude": "-82.28459000" + }, + { + "id": "111747", + "name": "Bal Harbour", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.89176000", + "longitude": "-80.12699000" + }, + { + "id": "111753", + "name": "Baldwin", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.30274000", + "longitude": "-81.97539000" + }, + { + "id": "111778", + "name": "Balm", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.75947000", + "longitude": "-82.26120000" + }, + { + "id": "111872", + "name": "Bartow", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.89641000", + "longitude": "-81.84314000" + }, + { + "id": "111924", + "name": "Bay County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.23765000", + "longitude": "-85.63262000" + }, + { + "id": "111927", + "name": "Bay Harbor Islands", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.88759000", + "longitude": "-80.13116000" + }, + { + "id": "111928", + "name": "Bay Hill", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.46806000", + "longitude": "-81.51618000" + }, + { + "id": "111931", + "name": "Bay Pines", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.81419000", + "longitude": "-82.77816000" + }, + { + "id": "111944", + "name": "Bayonet Point", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.32667000", + "longitude": "-82.68343000" + }, + { + "id": "111954", + "name": "Bayshore Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.42532000", + "longitude": "-82.59038000" + }, + { + "id": "111969", + "name": "Beacon Square", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.20862000", + "longitude": "-82.75538000" + }, + { + "id": "112035", + "name": "Bee Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.28394000", + "longitude": "-82.48065000" + }, + { + "id": "112073", + "name": "Bellair-Meadowbrook Terrace", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.17881000", + "longitude": "-81.74341000" + }, + { + "id": "112082", + "name": "Belle Glade", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.68451000", + "longitude": "-80.66756000" + }, + { + "id": "112083", + "name": "Belle Glade Camp", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.65757000", + "longitude": "-80.68284000" + }, + { + "id": "112086", + "name": "Belle Isle", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.45834000", + "longitude": "-81.35924000" + }, + { + "id": "112094", + "name": "Belleair", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.93585000", + "longitude": "-82.80621000" + }, + { + "id": "112095", + "name": "Belleair Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.92308000", + "longitude": "-82.84316000" + }, + { + "id": "112096", + "name": "Belleair Bluffs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.92141000", + "longitude": "-82.81705000" + }, + { + "id": "112102", + "name": "Belleview", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.05526000", + "longitude": "-82.06231000" + }, + { + "id": "112128", + "name": "Bellview", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.46159000", + "longitude": "-87.31497000" + }, + { + "id": "112303", + "name": "Beverly Hills", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.91692000", + "longitude": "-82.45815000" + }, + { + "id": "112319", + "name": "Big Coppitt Key", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "24.59653000", + "longitude": "-81.66009000" + }, + { + "id": "112329", + "name": "Big Pine Key", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "24.66987000", + "longitude": "-81.35397000" + }, + { + "id": "112361", + "name": "Biscayne Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.88260000", + "longitude": "-80.18060000" + }, + { + "id": "112369", + "name": "Bithlo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.55472000", + "longitude": "-81.10645000" + }, + { + "id": "112373", + "name": "Black Diamond", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.91248000", + "longitude": "-82.48593000" + }, + { + "id": "112445", + "name": "Bloomingdale", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.89364000", + "longitude": "-82.24037000" + }, + { + "id": "112459", + "name": "Blountstown", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.44379000", + "longitude": "-85.04744000" + }, + { + "id": "112492", + "name": "Boca Del Mar", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.34508000", + "longitude": "-80.14671000" + }, + { + "id": "112493", + "name": "Boca Pointe", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.33313000", + "longitude": "-80.15949000" + }, + { + "id": "112494", + "name": "Boca Raton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.35869000", + "longitude": "-80.08310000" + }, + { + "id": "112511", + "name": "Bokeelia", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.70563000", + "longitude": "-82.15898000" + }, + { + "id": "112536", + "name": "Bonifay", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.79186000", + "longitude": "-85.67965000" + }, + { + "id": "112538", + "name": "Bonita Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.33981000", + "longitude": "-81.77870000" + }, + { + "id": "112606", + "name": "Boulevard Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.12326000", + "longitude": "-80.17997000" + }, + { + "id": "112627", + "name": "Bowling Green", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.63837000", + "longitude": "-81.82397000" + }, + { + "id": "112647", + "name": "Boyette", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.81753000", + "longitude": "-82.22259000" + }, + { + "id": "112652", + "name": "Boynton Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.52535000", + "longitude": "-80.06643000" + }, + { + "id": "112662", + "name": "Bradenton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.49893000", + "longitude": "-82.57482000" + }, + { + "id": "112663", + "name": "Bradenton Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.46698000", + "longitude": "-82.70399000" + }, + { + "id": "112668", + "name": "Bradford County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.94996000", + "longitude": "-82.16878000" + }, + { + "id": "112688", + "name": "Brandon", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.93780000", + "longitude": "-82.28592000" + }, + { + "id": "112726", + "name": "Brent", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.46881000", + "longitude": "-87.23608000" + }, + { + "id": "112738", + "name": "Brevard County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.30031000", + "longitude": "-80.70121000" + }, + { + "id": "112802", + "name": "Bristol", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.43247000", + "longitude": "-84.97702000" + }, + { + "id": "112828", + "name": "Broadview Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.09953000", + "longitude": "-80.20866000" + }, + { + "id": "112844", + "name": "Bronson", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.44774000", + "longitude": "-82.64233000" + }, + { + "id": "112880", + "name": "Brookridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.55110000", + "longitude": "-82.49204000" + }, + { + "id": "112890", + "name": "Brooksville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.55554000", + "longitude": "-82.38991000" + }, + { + "id": "112904", + "name": "Broward County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.15186000", + "longitude": "-80.45589000" + }, + { + "id": "112905", + "name": "Broward Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.12564000", + "longitude": "-80.19338000" + }, + { + "id": "112928", + "name": "Brownsville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.82176000", + "longitude": "-80.24116000" + }, + { + "id": "112982", + "name": "Buckhead Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.13033000", + "longitude": "-80.89367000" + }, + { + "id": "112984", + "name": "Buckingham", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.67507000", + "longitude": "-81.73203000" + }, + { + "id": "113006", + "name": "Buenaventura Lakes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.33584000", + "longitude": "-81.35313000" + }, + { + "id": "113037", + "name": "Bunche Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.92065000", + "longitude": "-80.23699000" + }, + { + "id": "113045", + "name": "Bunnell", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.46609000", + "longitude": "-81.25784000" + }, + { + "id": "113092", + "name": "Burnt Store Marina", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.76507000", + "longitude": "-82.05092000" + }, + { + "id": "113101", + "name": "Bushnell", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.66499000", + "longitude": "-82.11286000" + }, + { + "id": "113113", + "name": "Butler Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.79830000", + "longitude": "-81.26701000" + }, + { + "id": "113202", + "name": "Calhoun County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.40603000", + "longitude": "-85.19721000" + }, + { + "id": "113222", + "name": "Callahan", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.56218000", + "longitude": "-81.83066000" + }, + { + "id": "113224", + "name": "Callaway", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.15298000", + "longitude": "-85.56993000" + }, + { + "id": "113296", + "name": "Campbell", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.25890000", + "longitude": "-81.45646000" + }, + { + "id": "113352", + "name": "Cantonment", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.60853000", + "longitude": "-87.33998000" + }, + { + "id": "113363", + "name": "Cape Canaveral", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.40584000", + "longitude": "-80.60477000" + }, + { + "id": "113366", + "name": "Cape Coral", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.56285000", + "longitude": "-81.94953000" + }, + { + "id": "113433", + "name": "Carol City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.94065000", + "longitude": "-80.24560000" + }, + { + "id": "113441", + "name": "Carrabelle", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.85326000", + "longitude": "-84.66435000" + }, + { + "id": "113472", + "name": "Carrollwood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.05002000", + "longitude": "-82.49287000" + }, + { + "id": "113473", + "name": "Carrollwood Village", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.06752000", + "longitude": "-82.52093000" + }, + { + "id": "113503", + "name": "Carver Ranches", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.98842000", + "longitude": "-80.19227000" + }, + { + "id": "113535", + "name": "Casselberry", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.67778000", + "longitude": "-81.32785000" + }, + { + "id": "113610", + "name": "Cedar Grove", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.17103000", + "longitude": "-85.62520000" + }, + { + "id": "113629", + "name": "Celebration", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.32529000", + "longitude": "-81.53313000" + }, + { + "id": "113643", + "name": "Center Hill", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.64999000", + "longitude": "-81.99258000" + }, + { + "id": "113697", + "name": "Century", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.97324000", + "longitude": "-87.26386000" + }, + { + "id": "113781", + "name": "Charlotte County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.89985000", + "longitude": "-81.95031000" + }, + { + "id": "113785", + "name": "Charlotte Harbor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.95839000", + "longitude": "-82.06703000" + }, + { + "id": "113786", + "name": "Charlotte Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.91006000", + "longitude": "-82.05398000" + }, + { + "id": "113808", + "name": "Chattahoochee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.70546000", + "longitude": "-84.84574000" + }, + { + "id": "113918", + "name": "Cheval", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.14862000", + "longitude": "-82.51454000" + }, + { + "id": "113948", + "name": "Chiefland", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.47496000", + "longitude": "-82.85984000" + }, + { + "id": "113972", + "name": "Chipley", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.78186000", + "longitude": "-85.53854000" + }, + { + "id": "114001", + "name": "Christmas", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.53639000", + "longitude": "-81.01756000" + }, + { + "id": "114006", + "name": "Chuluota", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.64194000", + "longitude": "-81.12340000" + }, + { + "id": "114032", + "name": "Citra", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.41192000", + "longitude": "-82.10982000" + }, + { + "id": "114036", + "name": "Citrus County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.84757000", + "longitude": "-82.52011000" + }, + { + "id": "114038", + "name": "Citrus Hills", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.88831000", + "longitude": "-82.43260000" + }, + { + "id": "114039", + "name": "Citrus Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.07835000", + "longitude": "-82.56982000" + }, + { + "id": "114041", + "name": "Citrus Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.33385000", + "longitude": "-81.64232000" + }, + { + "id": "114042", + "name": "Citrus Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.99748000", + "longitude": "-82.47065000" + }, + { + "id": "114101", + "name": "Clarcona", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.61278000", + "longitude": "-81.49868000" + }, + { + "id": "114175", + "name": "Clay County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.98307000", + "longitude": "-81.85789000" + }, + { + "id": "114222", + "name": "Clearwater", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.96585000", + "longitude": "-82.80010000" + }, + { + "id": "114238", + "name": "Clermont", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.54944000", + "longitude": "-81.77285000" + }, + { + "id": "114241", + "name": "Cleveland", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.96173000", + "longitude": "-81.98398000" + }, + { + "id": "114252", + "name": "Clewiston", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.75423000", + "longitude": "-80.93368000" + }, + { + "id": "114357", + "name": "Cocoa", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.38612000", + "longitude": "-80.74200000" + }, + { + "id": "114358", + "name": "Cocoa Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.32055000", + "longitude": "-80.60922000" + }, + { + "id": "114359", + "name": "Cocoa West", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.35942000", + "longitude": "-80.77109000" + }, + { + "id": "114361", + "name": "Coconut Creek", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.25175000", + "longitude": "-80.17894000" + }, + { + "id": "114362", + "name": "Coconut Grove", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.71260000", + "longitude": "-80.25699000" + }, + { + "id": "114423", + "name": "Collier County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.09924000", + "longitude": "-81.38097000" + }, + { + "id": "114478", + "name": "Columbia County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.22424000", + "longitude": "-82.62154000" + }, + { + "id": "114515", + "name": "Combee Settlement", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.05835000", + "longitude": "-81.90536000" + }, + { + "id": "114565", + "name": "Connerton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.31441000", + "longitude": "-82.47539000" + }, + { + "id": "114582", + "name": "Conway", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.50278000", + "longitude": "-81.33062000" + }, + { + "id": "114602", + "name": "Cooper City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.05731000", + "longitude": "-80.27172000" + }, + { + "id": "114624", + "name": "Coral Gables", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.72149000", + "longitude": "-80.26838000" + }, + { + "id": "114626", + "name": "Coral Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.27119000", + "longitude": "-80.27060000" + }, + { + "id": "114627", + "name": "Coral Terrace", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.74593000", + "longitude": "-80.30450000" + }, + { + "id": "114673", + "name": "Cortez", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.46921000", + "longitude": "-82.68621000" + }, + { + "id": "114714", + "name": "Country Club", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.94815000", + "longitude": "-80.31700000" + }, + { + "id": "114724", + "name": "Country Walk", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.63399000", + "longitude": "-80.43228000" + }, + { + "id": "114785", + "name": "Crawfordville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.17604000", + "longitude": "-84.37518000" + }, + { + "id": "114795", + "name": "Crescent City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.43025000", + "longitude": "-81.51063000" + }, + { + "id": "114807", + "name": "Crestview", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.76213000", + "longitude": "-86.57051000" + }, + { + "id": "114838", + "name": "Crooked Lake Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.82919000", + "longitude": "-81.58397000" + }, + { + "id": "114847", + "name": "Cross City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.63465000", + "longitude": "-83.12694000" + }, + { + "id": "114878", + "name": "Crystal Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.03558000", + "longitude": "-81.90841000" + }, + { + "id": "114882", + "name": "Crystal River", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.90248000", + "longitude": "-82.59260000" + }, + { + "id": "114883", + "name": "Crystal Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.18140000", + "longitude": "-82.15758000" + }, + { + "id": "114891", + "name": "Cudjoe Key", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "24.67153000", + "longitude": "-81.49842000" + }, + { + "id": "114946", + "name": "Cutler", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.61510000", + "longitude": "-80.31061000" + }, + { + "id": "114948", + "name": "Cutler Bay", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.57830000", + "longitude": "-80.33770000" + }, + { + "id": "114949", + "name": "Cutler Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.58066000", + "longitude": "-80.34672000" + }, + { + "id": "114955", + "name": "Cypress Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.99391000", + "longitude": "-81.69008000" + }, + { + "id": "114957", + "name": "Cypress Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.53813000", + "longitude": "-81.89925000" + }, + { + "id": "114958", + "name": "Cypress Quarters", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.25199000", + "longitude": "-80.81395000" + }, + { + "id": "114964", + "name": "Dade City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.36472000", + "longitude": "-82.19592000" + }, + { + "id": "114965", + "name": "Dade City North", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.38334000", + "longitude": "-82.19389000" + }, + { + "id": "115021", + "name": "Dania Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.05231000", + "longitude": "-80.14393000" + }, + { + "id": "115058", + "name": "Davenport", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.16140000", + "longitude": "-81.60174000" + }, + { + "id": "115067", + "name": "Davie", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.06287000", + "longitude": "-80.23310000" + }, + { + "id": "115102", + "name": "Daytona Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.21081000", + "longitude": "-81.02283000" + }, + { + "id": "115103", + "name": "Daytona Beach Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.17609000", + "longitude": "-80.98283000" + }, + { + "id": "115108", + "name": "De Land Southwest", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.00770000", + "longitude": "-81.31129000" + }, + { + "id": "115110", + "name": "De Leon Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.11989000", + "longitude": "-81.35286000" + }, + { + "id": "115124", + "name": "DeBary", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.88305000", + "longitude": "-81.30868000" + }, + { + "id": "115184", + "name": "Deerfield Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.31841000", + "longitude": "-80.09977000" + }, + { + "id": "115126", + "name": "DeFuniak Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.72102000", + "longitude": "-86.11522000" + }, + { + "id": "115134", + "name": "DeLand", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.02832000", + "longitude": "-81.30312000" + }, + { + "id": "115221", + "name": "Delray Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.46146000", + "longitude": "-80.07282000" + }, + { + "id": "115229", + "name": "Deltona", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.90054000", + "longitude": "-81.26367000" + }, + { + "id": "115139", + "name": "DeSoto County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.18632000", + "longitude": "-81.80930000" + }, + { + "id": "115287", + "name": "Desoto Lakes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.37143000", + "longitude": "-82.48982000" + }, + { + "id": "115289", + "name": "Destin", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.39353000", + "longitude": "-86.49578000" + }, + { + "id": "115361", + "name": "Dixie County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.58124000", + "longitude": "-83.18703000" + }, + { + "id": "115373", + "name": "Doctor Phillips", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.44945000", + "longitude": "-81.49229000" + }, + { + "id": "115408", + "name": "Doral", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.81954000", + "longitude": "-80.35533000" + }, + { + "id": "115446", + "name": "Dover", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.99419000", + "longitude": "-82.21953000" + }, + { + "id": "115528", + "name": "Dundee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.02252000", + "longitude": "-81.61924000" + }, + { + "id": "115534", + "name": "Dunedin", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.01990000", + "longitude": "-82.77323000" + }, + { + "id": "115550", + "name": "Dunnellon", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.04914000", + "longitude": "-82.46093000" + }, + { + "id": "115580", + "name": "Duval County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.33544000", + "longitude": "-81.64801000" + }, + { + "id": "115602", + "name": "Eagle Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.97836000", + "longitude": "-81.75647000" + }, + { + "id": "115638", + "name": "East Bronson", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.45928000", + "longitude": "-82.59040000" + }, + { + "id": "115700", + "name": "East Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.11085000", + "longitude": "-82.69482000" + }, + { + "id": "115701", + "name": "East Lake-Orient Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.98269000", + "longitude": "-82.37878000" + }, + { + "id": "115714", + "name": "East Milton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.61519000", + "longitude": "-87.02163000" + }, + { + "id": "115718", + "name": "East Naples", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.13842000", + "longitude": "-81.76648000" + }, + { + "id": "115727", + "name": "East Palatka", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.65830000", + "longitude": "-81.59841000" + }, + { + "id": "115731", + "name": "East Pensacola Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.42881000", + "longitude": "-87.17997000" + }, + { + "id": "115734", + "name": "East Perrine", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.60872000", + "longitude": "-80.33894000" + }, + { + "id": "115793", + "name": "Eastpoint", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.73660000", + "longitude": "-84.87852000" + }, + { + "id": "115808", + "name": "Eatonville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.61472000", + "longitude": "-81.38062000" + }, + { + "id": "115851", + "name": "Edgewater", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.98888000", + "longitude": "-80.90228000" + }, + { + "id": "115857", + "name": "Edgewood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.48612000", + "longitude": "-81.37229000" + }, + { + "id": "115903", + "name": "Eglin Air Force Base", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.45907000", + "longitude": "-86.55026000" + }, + { + "id": "115904", + "name": "Eglin Village", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.46298000", + "longitude": "-86.53940000" + }, + { + "id": "115906", + "name": "Egypt Lake-Leto", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.01769000", + "longitude": "-82.50619000" + }, + { + "id": "115933", + "name": "El Portal", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.85537000", + "longitude": "-80.19310000" + }, + { + "id": "115962", + "name": "Elfers", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.21668000", + "longitude": "-82.72232000" + }, + { + "id": "116019", + "name": "Ellenton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.52171000", + "longitude": "-82.52760000" + }, + { + "id": "116129", + "name": "Englewood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.96201000", + "longitude": "-82.35260000" + }, + { + "id": "116147", + "name": "Ensley", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.51881000", + "longitude": "-87.27275000" + }, + { + "id": "116180", + "name": "Escambia County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.61440000", + "longitude": "-87.34136000" + }, + { + "id": "116207", + "name": "Estero", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.43814000", + "longitude": "-81.80675000" + }, + { + "id": "116241", + "name": "Eustis", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.85277000", + "longitude": "-81.68535000" + }, + { + "id": "116360", + "name": "Fairview Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.59111000", + "longitude": "-81.39424000" + }, + { + "id": "116463", + "name": "Feather Sound", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.90079000", + "longitude": "-82.67349000" + }, + { + "id": "116469", + "name": "Fellsmere", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.76781000", + "longitude": "-80.60144000" + }, + { + "id": "116483", + "name": "Fern Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.64916000", + "longitude": "-81.35118000" + }, + { + "id": "116485", + "name": "Fernandina Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.66968000", + "longitude": "-81.46259000" + }, + { + "id": "116499", + "name": "Ferry Pass", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.51020000", + "longitude": "-87.21247000" + }, + { + "id": "116525", + "name": "Fish Hawk", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.85058000", + "longitude": "-82.21092000" + }, + { + "id": "116540", + "name": "Five Points", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.20912000", + "longitude": "-82.63735000" + }, + { + "id": "116542", + "name": "Flagami", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.76232000", + "longitude": "-80.31616000" + }, + { + "id": "116543", + "name": "Flagler Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.47498000", + "longitude": "-81.12700000" + }, + { + "id": "116544", + "name": "Flagler County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.47115000", + "longitude": "-81.29299000" + }, + { + "id": "116545", + "name": "Flagler Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.64553000", + "longitude": "-81.45700000" + }, + { + "id": "116560", + "name": "Fleming Island", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.09330000", + "longitude": "-81.71898000" + }, + { + "id": "116574", + "name": "Floral City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.74999000", + "longitude": "-82.29676000" + }, + { + "id": "116593", + "name": "Florida City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.44789000", + "longitude": "-80.47922000" + }, + { + "id": "116594", + "name": "Florida Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.58031000", + "longitude": "-80.38672000" + }, + { + "id": "116646", + "name": "Forest City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.66678000", + "longitude": "-81.44334000" + }, + { + "id": "116722", + "name": "Fort Lauderdale", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.12231000", + "longitude": "-80.14338000" + }, + { + "id": "116728", + "name": "Fort Meade", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.75225000", + "longitude": "-81.80175000" + }, + { + "id": "116734", + "name": "Fort Myers", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.62168000", + "longitude": "-81.84059000" + }, + { + "id": "116735", + "name": "Fort Myers Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.45271000", + "longitude": "-81.95011000" + }, + { + "id": "116736", + "name": "Fort Myers Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.70924000", + "longitude": "-81.74592000" + }, + { + "id": "116739", + "name": "Fort Pierce", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.44671000", + "longitude": "-80.32561000" + }, + { + "id": "116740", + "name": "Fort Pierce North", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.47364000", + "longitude": "-80.35930000" + }, + { + "id": "116741", + "name": "Fort Pierce South", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.40962000", + "longitude": "-80.35483000" + }, + { + "id": "116759", + "name": "Fort Walton Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.42059000", + "longitude": "-86.61707000" + }, + { + "id": "116785", + "name": "Fountainebleau", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.77288000", + "longitude": "-80.34783000" + }, + { + "id": "116791", + "name": "Four Corners", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.33287000", + "longitude": "-81.64738000" + }, + { + "id": "116845", + "name": "Franklin County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.81168000", + "longitude": "-84.80046000" + }, + { + "id": "116910", + "name": "Freeport", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.49825000", + "longitude": "-86.13605000" + }, + { + "id": "116965", + "name": "Frostproof", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.74586000", + "longitude": "-81.53063000" + }, + { + "id": "116966", + "name": "Fruit Cove", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.11107000", + "longitude": "-81.64176000" + }, + { + "id": "116973", + "name": "Fruitland Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.86138000", + "longitude": "-81.90647000" + }, + { + "id": "116977", + "name": "Fruitville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.32977000", + "longitude": "-82.45760000" + }, + { + "id": "116980", + "name": "Fuller Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.90919000", + "longitude": "-81.99814000" + }, + { + "id": "117002", + "name": "Fussels Corner", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.05419000", + "longitude": "-81.86064000" + }, + { + "id": "117006", + "name": "Gadsden County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.57947000", + "longitude": "-84.61360000" + }, + { + "id": "117014", + "name": "Gainesville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.65163000", + "longitude": "-82.32483000" + }, + { + "id": "117049", + "name": "Gandy", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.86850000", + "longitude": "-82.61612000" + }, + { + "id": "117123", + "name": "Gateway", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.57757000", + "longitude": "-81.75036000" + }, + { + "id": "117140", + "name": "Geneva", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.73972000", + "longitude": "-81.11506000" + }, + { + "id": "117191", + "name": "Gibsonia", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.11474000", + "longitude": "-81.97369000" + }, + { + "id": "117193", + "name": "Gibsonton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.85364000", + "longitude": "-82.38259000" + }, + { + "id": "117197", + "name": "Gifford", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.67531000", + "longitude": "-80.40922000" + }, + { + "id": "117208", + "name": "Gilchrist County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.72582000", + "longitude": "-82.80037000" + }, + { + "id": "117233", + "name": "Glades County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.95648000", + "longitude": "-81.18898000" + }, + { + "id": "117234", + "name": "Gladeview", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.83926000", + "longitude": "-80.23560000" + }, + { + "id": "117277", + "name": "Glencoe", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.02582000", + "longitude": "-80.97200000" + }, + { + "id": "117308", + "name": "Glenvar Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.70760000", + "longitude": "-80.32561000" + }, + { + "id": "117348", + "name": "Golden Gate", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.18787000", + "longitude": "-81.69509000" + }, + { + "id": "117349", + "name": "Golden Glades", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.91176000", + "longitude": "-80.20033000" + }, + { + "id": "117361", + "name": "Goldenrod", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.61028000", + "longitude": "-81.28868000" + }, + { + "id": "117374", + "name": "Gonzalez", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.58158000", + "longitude": "-87.29136000" + }, + { + "id": "117414", + "name": "Gotha", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.52778000", + "longitude": "-81.52313000" + }, + { + "id": "117416", + "name": "Goulding", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.44298000", + "longitude": "-87.22247000" + }, + { + "id": "117417", + "name": "Goulds", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.56261000", + "longitude": "-80.38228000" + }, + { + "id": "117425", + "name": "Graceville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.95685000", + "longitude": "-85.51660000" + }, + { + "id": "117524", + "name": "Grant-Valkaria", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.93980000", + "longitude": "-80.57104000" + }, + { + "id": "117581", + "name": "Greater Northdale", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.10545000", + "longitude": "-82.52594000" + }, + { + "id": "117594", + "name": "Green Cove Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.99191000", + "longitude": "-81.67815000" + }, + { + "id": "117614", + "name": "Greenacres City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.62368000", + "longitude": "-80.12532000" + }, + { + "id": "117618", + "name": "Greenbriar", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.01128000", + "longitude": "-82.75272000" + }, + { + "id": "117724", + "name": "Gretna", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.61714000", + "longitude": "-84.65991000" + }, + { + "id": "117755", + "name": "Grove City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.91423000", + "longitude": "-82.32704000" + }, + { + "id": "117758", + "name": "Groveland", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.55805000", + "longitude": "-81.85119000" + }, + { + "id": "117790", + "name": "Gulf Breeze", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.35714000", + "longitude": "-87.16386000" + }, + { + "id": "117791", + "name": "Gulf County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.90862000", + "longitude": "-85.26101000" + }, + { + "id": "117792", + "name": "Gulf Gate Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.25173000", + "longitude": "-82.51471000" + }, + { + "id": "117796", + "name": "Gulfport", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.74836000", + "longitude": "-82.70343000" + }, + { + "id": "117845", + "name": "Haines City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.11450000", + "longitude": "-81.62009000" + }, + { + "id": "117869", + "name": "Hallandale Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.98120000", + "longitude": "-80.14838000" + }, + { + "id": "117896", + "name": "Hamilton County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.49643000", + "longitude": "-82.94796000" + }, + { + "id": "117989", + "name": "Harbor Bluffs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.90947000", + "longitude": "-82.82760000" + }, + { + "id": "117992", + "name": "Harbour Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.99089000", + "longitude": "-82.00231000" + }, + { + "id": "117993", + "name": "Hardee County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.49270000", + "longitude": "-81.80993000" + }, + { + "id": "118021", + "name": "Harlem", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.73757000", + "longitude": "-80.95090000" + }, + { + "id": "118024", + "name": "Harlem Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.51619000", + "longitude": "-81.92787000" + }, + { + "id": "118145", + "name": "Havana", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.62381000", + "longitude": "-84.41463000" + }, + { + "id": "118149", + "name": "Haverhill", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.69118000", + "longitude": "-80.12004000" + }, + { + "id": "118172", + "name": "Hawthorne", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.59191000", + "longitude": "-82.08732000" + }, + { + "id": "118224", + "name": "Heathrow", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.76333000", + "longitude": "-81.37225000" + }, + { + "id": "118289", + "name": "Hendry County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.55349000", + "longitude": "-81.16590000" + }, + { + "id": "118321", + "name": "Heritage Pines", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.42522000", + "longitude": "-82.62111000" + }, + { + "id": "118332", + "name": "Hernando", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.89998000", + "longitude": "-82.37454000" + }, + { + "id": "118334", + "name": "Hernando Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.46944000", + "longitude": "-82.65927000" + }, + { + "id": "118335", + "name": "Hernando County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.55617000", + "longitude": "-82.46849000" + }, + { + "id": "118354", + "name": "Hialeah", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.85760000", + "longitude": "-80.27811000" + }, + { + "id": "118355", + "name": "Hialeah Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.86510000", + "longitude": "-80.32450000" + }, + { + "id": "118387", + "name": "High Point", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.54687000", + "longitude": "-82.52468000" + }, + { + "id": "118389", + "name": "High Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.82691000", + "longitude": "-82.59678000" + }, + { + "id": "118402", + "name": "Highland Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.39952000", + "longitude": "-80.06560000" + }, + { + "id": "118403", + "name": "Highland City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.96530000", + "longitude": "-81.87786000" + }, + { + "id": "118419", + "name": "Highlands County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.34340000", + "longitude": "-81.34097000" + }, + { + "id": "118427", + "name": "Hiland Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.20103000", + "longitude": "-85.62687000" + }, + { + "id": "118432", + "name": "Hill 'n Dale", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.51972000", + "longitude": "-82.29926000" + }, + { + "id": "118444", + "name": "Hilliard", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.69107000", + "longitude": "-81.91733000" + }, + { + "id": "118453", + "name": "Hillsboro Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.29397000", + "longitude": "-80.07893000" + }, + { + "id": "118457", + "name": "Hillsborough County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.90623000", + "longitude": "-82.34692000" + }, + { + "id": "118501", + "name": "Hobe Sound", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.05950000", + "longitude": "-80.13643000" + }, + { + "id": "118525", + "name": "Holden Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.49667000", + "longitude": "-81.38785000" + }, + { + "id": "118529", + "name": "Holiday", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.18779000", + "longitude": "-82.73955000" + }, + { + "id": "118542", + "name": "Holley", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.44686000", + "longitude": "-86.90691000" + }, + { + "id": "118556", + "name": "Holly Hill", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.24359000", + "longitude": "-81.03756000" + }, + { + "id": "118565", + "name": "Hollywood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.01120000", + "longitude": "-80.14949000" + }, + { + "id": "118570", + "name": "Holmes Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.49532000", + "longitude": "-82.71093000" + }, + { + "id": "118571", + "name": "Holmes County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.86789000", + "longitude": "-85.81410000" + }, + { + "id": "118601", + "name": "Homestead", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.46872000", + "longitude": "-80.47756000" + }, + { + "id": "118610", + "name": "Homosassa", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.78137000", + "longitude": "-82.61510000" + }, + { + "id": "118611", + "name": "Homosassa Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.80359000", + "longitude": "-82.57593000" + }, + { + "id": "118665", + "name": "Horizon West", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.43383000", + "longitude": "-81.62270000" + }, + { + "id": "118724", + "name": "Howey-in-the-Hills", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.71694000", + "longitude": "-81.77341000" + }, + { + "id": "118735", + "name": "Hudson", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.36445000", + "longitude": "-82.69343000" + }, + { + "id": "118790", + "name": "Hunters Creek", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.36056000", + "longitude": "-81.42229000" + }, + { + "id": "118839", + "name": "Hutchinson Island South", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.29949000", + "longitude": "-80.22045000" + }, + { + "id": "118856", + "name": "Hypoluxo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.56646000", + "longitude": "-80.05337000" + }, + { + "id": "118880", + "name": "Immokalee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.41869000", + "longitude": "-81.41730000" + }, + { + "id": "118901", + "name": "Indialantic", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.08946000", + "longitude": "-80.56561000" + }, + { + "id": "118902", + "name": "Indian Harbour Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.14890000", + "longitude": "-80.58839000" + }, + { + "id": "118913", + "name": "Indian River County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.69639000", + "longitude": "-80.57409000" + }, + { + "id": "118914", + "name": "Indian River Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.36449000", + "longitude": "-80.30977000" + }, + { + "id": "118915", + "name": "Indian River Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.71670000", + "longitude": "-80.38422000" + }, + { + "id": "118916", + "name": "Indian Rocks Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.87530000", + "longitude": "-82.85122000" + }, + { + "id": "118917", + "name": "Indian Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.86280000", + "longitude": "-82.84844000" + }, + { + "id": "118928", + "name": "Indiantown", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.02728000", + "longitude": "-80.48561000" + }, + { + "id": "118939", + "name": "Inglis", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.03025000", + "longitude": "-82.66872000" + }, + { + "id": "118950", + "name": "Interlachen", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.62421000", + "longitude": "-81.89256000" + }, + { + "id": "118955", + "name": "Inverness", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.83582000", + "longitude": "-82.33037000" + }, + { + "id": "118959", + "name": "Inverness Highlands North", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.86420000", + "longitude": "-82.37688000" + }, + { + "id": "118960", + "name": "Inverness Highlands South", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.80055000", + "longitude": "-82.33710000" + }, + { + "id": "118961", + "name": "Inwood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.03697000", + "longitude": "-81.76508000" + }, + { + "id": "118968", + "name": "Iona", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.52036000", + "longitude": "-81.96398000" + }, + { + "id": "119022", + "name": "Islamorada", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "24.92430000", + "longitude": "-80.62784000" + }, + { + "id": "119028", + "name": "Island Walk", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.25099000", + "longitude": "-81.71101000" + }, + { + "id": "119031", + "name": "Isle of Normandy", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.85287000", + "longitude": "-80.13505000" + }, + { + "id": "119050", + "name": "Ives Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.96231000", + "longitude": "-80.17671000" + }, + { + "id": "119077", + "name": "Jackson County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.79539000", + "longitude": "-85.21546000" + }, + { + "id": "119101", + "name": "Jacksonville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.33218000", + "longitude": "-81.65565000" + }, + { + "id": "119106", + "name": "Jacksonville Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.29469000", + "longitude": "-81.39314000" + }, + { + "id": "119129", + "name": "Jan-Phyl Village", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.01474000", + "longitude": "-81.77175000" + }, + { + "id": "119136", + "name": "Jasmine Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.29306000", + "longitude": "-82.69010000" + }, + { + "id": "119140", + "name": "Jasper", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.51827000", + "longitude": "-82.94819000" + }, + { + "id": "119177", + "name": "Jefferson County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.42346000", + "longitude": "-83.90047000" + }, + { + "id": "119222", + "name": "Jensen Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.25449000", + "longitude": "-80.22977000" + }, + { + "id": "119336", + "name": "June Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.07224000", + "longitude": "-80.68006000" + }, + { + "id": "119341", + "name": "Juno Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.87978000", + "longitude": "-80.05337000" + }, + { + "id": "119342", + "name": "Jupiter", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.93422000", + "longitude": "-80.09421000" + }, + { + "id": "119393", + "name": "Kathleen", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.12085000", + "longitude": "-82.02314000" + }, + { + "id": "119444", + "name": "Kendale Lakes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.70816000", + "longitude": "-80.40700000" + }, + { + "id": "119445", + "name": "Kendall", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.67927000", + "longitude": "-80.31727000" + }, + { + "id": "119448", + "name": "Kendall Green", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.25397000", + "longitude": "-80.12393000" + }, + { + "id": "119450", + "name": "Kendall West", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.70650000", + "longitude": "-80.43880000" + }, + { + "id": "119472", + "name": "Kenneth City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.81558000", + "longitude": "-82.72010000" + }, + { + "id": "119485", + "name": "Kensington Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.35949000", + "longitude": "-82.49649000" + }, + { + "id": "119537", + "name": "Key Biscayne", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.69371000", + "longitude": "-80.16282000" + }, + { + "id": "119539", + "name": "Key Largo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.08652000", + "longitude": "-80.44728000" + }, + { + "id": "119540", + "name": "Key Vista", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.19470000", + "longitude": "-82.77038000" + }, + { + "id": "119541", + "name": "Key West", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "24.55524000", + "longitude": "-81.78163000" + }, + { + "id": "119546", + "name": "Keystone", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.15585000", + "longitude": "-82.62121000" + }, + { + "id": "119548", + "name": "Keystone Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.78608000", + "longitude": "-82.03149000" + }, + { + "id": "119607", + "name": "Kings Point", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.44535000", + "longitude": "-80.13977000" + }, + { + "id": "119658", + "name": "Kissimmee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.30468000", + "longitude": "-81.41667000" + }, + { + "id": "119798", + "name": "LaBelle", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.76173000", + "longitude": "-81.43841000" + }, + { + "id": "119820", + "name": "Lacoochee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.46583000", + "longitude": "-82.17203000" + }, + { + "id": "119829", + "name": "Lady Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.91749000", + "longitude": "-81.92286000" + }, + { + "id": "119839", + "name": "Lafayette County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.98552000", + "longitude": "-83.18107000" + }, + { + "id": "119851", + "name": "Laguna Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.23965000", + "longitude": "-85.92410000" + }, + { + "id": "119862", + "name": "Lake Alfred", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.09196000", + "longitude": "-81.72341000" + }, + { + "id": "119870", + "name": "Lake Belvedere Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.68923000", + "longitude": "-80.13338000" + }, + { + "id": "119873", + "name": "Lake Butler", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.02274000", + "longitude": "-82.33956000" + }, + { + "id": "119879", + "name": "Lake City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.18968000", + "longitude": "-82.63929000" + }, + { + "id": "119887", + "name": "Lake Clarke Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.64534000", + "longitude": "-80.07588000" + }, + { + "id": "119889", + "name": "Lake County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.76147000", + "longitude": "-81.71130000" + }, + { + "id": "119909", + "name": "Lake Forest", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.97759000", + "longitude": "-80.18310000" + }, + { + "id": "119917", + "name": "Lake Hamilton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.04446000", + "longitude": "-81.62785000" + }, + { + "id": "119919", + "name": "Lake Helen", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.98082000", + "longitude": "-81.23339000" + }, + { + "id": "119930", + "name": "Lake Lorraine", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.44159000", + "longitude": "-86.56523000" + }, + { + "id": "119933", + "name": "Lake Lucerne", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.96509000", + "longitude": "-80.24144000" + }, + { + "id": "119936", + "name": "Lake Mack-Forest Hills", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.00074000", + "longitude": "-81.42397000" + }, + { + "id": "119937", + "name": "Lake Magdalene", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.07418000", + "longitude": "-82.47176000" + }, + { + "id": "119939", + "name": "Lake Mary", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.75888000", + "longitude": "-81.31784000" + }, + { + "id": "119957", + "name": "Lake Panasoffkee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.75582000", + "longitude": "-82.09481000" + }, + { + "id": "119959", + "name": "Lake Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.80034000", + "longitude": "-80.06643000" + }, + { + "id": "119962", + "name": "Lake Placid", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.35197000", + "longitude": "-81.32631000" + }, + { + "id": "119974", + "name": "Lake Sarasota", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.29255000", + "longitude": "-82.43760000" + }, + { + "id": "119991", + "name": "Lake Wales", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.90141000", + "longitude": "-81.58591000" + }, + { + "id": "119997", + "name": "Lake Worth", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.61708000", + "longitude": "-80.07231000" + }, + { + "id": "119999", + "name": "Lake Worth Corridor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.61649000", + "longitude": "-80.10102000" + }, + { + "id": "120012", + "name": "Lakeland", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.03947000", + "longitude": "-81.94980000" + }, + { + "id": "120017", + "name": "Lakeland Highlands", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.95975000", + "longitude": "-81.95008000" + }, + { + "id": "120025", + "name": "Lakes by the Bay", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.57233000", + "longitude": "-80.32533000" + }, + { + "id": "120029", + "name": "Lakeside", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.12996000", + "longitude": "-81.76815000" + }, + { + "id": "120054", + "name": "Lakewood Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.54309000", + "longitude": "-80.40227000" + }, + { + "id": "120095", + "name": "Land O' Lakes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.21890000", + "longitude": "-82.45759000" + }, + { + "id": "120129", + "name": "Lantana", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.58674000", + "longitude": "-80.05199000" + }, + { + "id": "120143", + "name": "Largo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.90979000", + "longitude": "-82.78842000" + }, + { + "id": "120182", + "name": "Lauderdale Lakes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.16647000", + "longitude": "-80.20838000" + }, + { + "id": "120183", + "name": "Lauderdale-by-the-Sea", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.19203000", + "longitude": "-80.09643000" + }, + { + "id": "120184", + "name": "Lauderhill", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.14036000", + "longitude": "-80.21338000" + }, + { + "id": "120188", + "name": "Laurel", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.14378000", + "longitude": "-82.46158000" + }, + { + "id": "120278", + "name": "Lealman", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.82114000", + "longitude": "-82.67927000" + }, + { + "id": "120299", + "name": "Lecanto", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.85165000", + "longitude": "-82.48760000" + }, + { + "id": "120308", + "name": "Lee County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.62536000", + "longitude": "-81.84952000" + }, + { + "id": "120324", + "name": "Leesburg", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.81082000", + "longitude": "-81.87786000" + }, + { + "id": "120334", + "name": "Lehigh Acres", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.62535000", + "longitude": "-81.62480000" + }, + { + "id": "120340", + "name": "Leisure City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.49539000", + "longitude": "-80.42922000" + }, + { + "id": "120353", + "name": "Lely", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.10065000", + "longitude": "-81.72842000" + }, + { + "id": "120354", + "name": "Lely Resort", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.08093000", + "longitude": "-81.69786000" + }, + { + "id": "120384", + "name": "Leon County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.45804000", + "longitude": "-84.27788000" + }, + { + "id": "120409", + "name": "Levy County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.28221000", + "longitude": "-82.78861000" + }, + { + "id": "120470", + "name": "Liberty County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.24136000", + "longitude": "-84.88291000" + }, + { + "id": "120480", + "name": "Lighthouse Point", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.27564000", + "longitude": "-80.08727000" + }, + { + "id": "120496", + "name": "Limestone Creek", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.94284000", + "longitude": "-80.14115000" + }, + { + "id": "120638", + "name": "Live Oak", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.29495000", + "longitude": "-82.98402000" + }, + { + "id": "120672", + "name": "Lochmoor Waterway Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.64424000", + "longitude": "-81.90981000" + }, + { + "id": "120676", + "name": "Lockhart", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.61944000", + "longitude": "-81.44257000" + }, + { + "id": "120751", + "name": "Longboat Key", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.41254000", + "longitude": "-82.65899000" + }, + { + "id": "120760", + "name": "Longwood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.70305000", + "longitude": "-81.33840000" + }, + { + "id": "120803", + "name": "Loughman", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.24196000", + "longitude": "-81.56674000" + }, + { + "id": "120841", + "name": "Lower Grand Lagoon", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.14409000", + "longitude": "-85.75076000" + }, + { + "id": "120851", + "name": "Loxahatchee Groves", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.68368000", + "longitude": "-80.27977000" + }, + { + "id": "120898", + "name": "Lutz", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.15112000", + "longitude": "-82.46148000" + }, + { + "id": "120929", + "name": "Lynn Haven", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.24548000", + "longitude": "-85.64826000" + }, + { + "id": "120953", + "name": "Macclenny", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.28218000", + "longitude": "-82.12206000" + }, + { + "id": "120978", + "name": "Madeira Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.79808000", + "longitude": "-82.79732000" + }, + { + "id": "120985", + "name": "Madison", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.46938000", + "longitude": "-83.41293000" + }, + { + "id": "121004", + "name": "Madison County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.44414000", + "longitude": "-83.47012000" + }, + { + "id": "121051", + "name": "Maitland", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.62778000", + "longitude": "-81.36312000" + }, + { + "id": "121056", + "name": "Malabar", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.00363000", + "longitude": "-80.56561000" + }, + { + "id": "121065", + "name": "Malone", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.95769000", + "longitude": "-85.16215000" + }, + { + "id": "121080", + "name": "Manasota Key", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.92534000", + "longitude": "-82.35204000" + }, + { + "id": "121084", + "name": "Manatee County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.47752000", + "longitude": "-82.35754000" + }, + { + "id": "121085", + "name": "Manatee Road", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.51302000", + "longitude": "-82.91429000" + }, + { + "id": "121108", + "name": "Mango", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.97974000", + "longitude": "-82.30648000" + }, + { + "id": "121109", + "name": "Mangonia Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.76034000", + "longitude": "-80.07365000" + }, + { + "id": "121184", + "name": "Marathon", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "24.71375000", + "longitude": "-81.09035000" + }, + { + "id": "121197", + "name": "Marco", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.97260000", + "longitude": "-81.72898000" + }, + { + "id": "121198", + "name": "Marco Island", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.94121000", + "longitude": "-81.71842000" + }, + { + "id": "121206", + "name": "Margate", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.24453000", + "longitude": "-80.20644000" + }, + { + "id": "121209", + "name": "Marianna", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.77436000", + "longitude": "-85.22687000" + }, + { + "id": "121249", + "name": "Marion County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.21020000", + "longitude": "-82.05668000" + }, + { + "id": "121337", + "name": "Martin County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.08157000", + "longitude": "-80.39851000" + }, + { + "id": "121354", + "name": "Mary Esther", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.41015000", + "longitude": "-86.66509000" + }, + { + "id": "121366", + "name": "Masaryktown", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.44167000", + "longitude": "-82.45704000" + }, + { + "id": "121368", + "name": "Mascotte", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.57833000", + "longitude": "-81.88675000" + }, + { + "id": "121442", + "name": "Mayo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.05300000", + "longitude": "-83.17486000" + }, + { + "id": "121505", + "name": "McGregor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.56091000", + "longitude": "-81.91453000" + }, + { + "id": "121562", + "name": "Meadow Oaks", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.34619000", + "longitude": "-82.60284000" + }, + { + "id": "121564", + "name": "Meadow Woods", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.38556000", + "longitude": "-81.36646000" + }, + { + "id": "121609", + "name": "Medulla", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.96780000", + "longitude": "-81.97342000" + }, + { + "id": "121620", + "name": "Melbourne", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.08363000", + "longitude": "-80.60811000" + }, + { + "id": "121622", + "name": "Melbourne Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.06835000", + "longitude": "-80.56033000" + }, + { + "id": "121631", + "name": "Melrose Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.11342000", + "longitude": "-80.19338000" + }, + { + "id": "121638", + "name": "Memphis", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.53587000", + "longitude": "-82.56121000" + }, + { + "id": "121714", + "name": "Merritt Island", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.53917000", + "longitude": "-80.67200000" + }, + { + "id": "121744", + "name": "Mexico Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.94809000", + "longitude": "-85.41995000" + }, + { + "id": "121746", + "name": "Miami", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.77427000", + "longitude": "-80.19366000" + }, + { + "id": "121750", + "name": "Miami Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.79065000", + "longitude": "-80.13005000" + }, + { + "id": "121753", + "name": "Miami Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.94204000", + "longitude": "-80.24560000" + }, + { + "id": "121754", + "name": "Miami Lakes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.90871000", + "longitude": "-80.30866000" + }, + { + "id": "121755", + "name": "Miami Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.86315000", + "longitude": "-80.19283000" + }, + { + "id": "121756", + "name": "Miami Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.82232000", + "longitude": "-80.28950000" + }, + { + "id": "121757", + "name": "Miami-Dade County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.60897000", + "longitude": "-80.49867000" + }, + { + "id": "121758", + "name": "Micco", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.88058000", + "longitude": "-80.50033000" + }, + { + "id": "121768", + "name": "Middleburg", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.06885000", + "longitude": "-81.86038000" + }, + { + "id": "121820", + "name": "Midway", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.40648000", + "longitude": "-87.00553000" + }, + { + "id": "121912", + "name": "Milton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.63241000", + "longitude": "-87.03969000" + }, + { + "id": "121926", + "name": "Mims", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.66527000", + "longitude": "-80.84478000" + }, + { + "id": "121954", + "name": "Minneola", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.57444000", + "longitude": "-81.74619000" + }, + { + "id": "121973", + "name": "Miramar", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.98731000", + "longitude": "-80.23227000" + }, + { + "id": "121974", + "name": "Miramar Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.37437000", + "longitude": "-86.35856000" + }, + { + "id": "122029", + "name": "Molino", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.72408000", + "longitude": "-87.31414000" + }, + { + "id": "122069", + "name": "Monroe County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.55731000", + "longitude": "-80.91705000" + }, + { + "id": "122159", + "name": "Monticello", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.54515000", + "longitude": "-83.87130000" + }, + { + "id": "122188", + "name": "Montverde", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.60028000", + "longitude": "-81.67396000" + }, + { + "id": "122204", + "name": "Moore Haven", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.83312000", + "longitude": "-81.09312000" + }, + { + "id": "122341", + "name": "Mount Dora", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.80249000", + "longitude": "-81.64452000" + }, + { + "id": "122383", + "name": "Mount Plymouth", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.80805000", + "longitude": "-81.53313000" + }, + { + "id": "122453", + "name": "Mulberry", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.89530000", + "longitude": "-81.97342000" + }, + { + "id": "122522", + "name": "Myrtle Grove", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.42103000", + "longitude": "-87.30747000" + }, + { + "id": "122552", + "name": "Naples", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.14234000", + "longitude": "-81.79596000" + }, + { + "id": "122556", + "name": "Naples Manor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.08870000", + "longitude": "-81.72620000" + }, + { + "id": "122557", + "name": "Naples Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.26175000", + "longitude": "-81.80925000" + }, + { + "id": "122562", + "name": "Naranja", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.51816000", + "longitude": "-80.42283000" + }, + { + "id": "122582", + "name": "Nassau County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.61058000", + "longitude": "-81.77142000" + }, + { + "id": "122584", + "name": "Nassau Village-Ratliff", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.51111000", + "longitude": "-81.80925000" + }, + { + "id": "122600", + "name": "Navarre", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.40159000", + "longitude": "-86.86357000" + }, + { + "id": "122637", + "name": "Neptune Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.31191000", + "longitude": "-81.39647000" + }, + { + "id": "122764", + "name": "New Port Richey", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.24418000", + "longitude": "-82.71927000" + }, + { + "id": "122765", + "name": "New Port Richey East", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.26027000", + "longitude": "-82.69261000" + }, + { + "id": "122779", + "name": "New Smyrna Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.02582000", + "longitude": "-80.92700000" + }, + { + "id": "122810", + "name": "Newberry", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.64635000", + "longitude": "-82.60650000" + }, + { + "id": "122886", + "name": "Niceville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.51686000", + "longitude": "-86.48217000" + }, + { + "id": "122922", + "name": "Nocatee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.16033000", + "longitude": "-81.88231000" + }, + { + "id": "122929", + "name": "Nokomis", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.11922000", + "longitude": "-82.44426000" + }, + { + "id": "122946", + "name": "Norland", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.94898000", + "longitude": "-80.21227000" + }, + { + "id": "122963", + "name": "North Andrews Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.19147000", + "longitude": "-80.14421000" + }, + { + "id": "122976", + "name": "North Bay Village", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.84621000", + "longitude": "-80.15394000" + }, + { + "id": "122997", + "name": "North Brooksville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.57305000", + "longitude": "-82.40815000" + }, + { + "id": "123013", + "name": "North DeLand", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.04943000", + "longitude": "-81.29812000" + }, + { + "id": "123029", + "name": "North Fort Myers", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.66729000", + "longitude": "-81.88009000" + }, + { + "id": "123047", + "name": "North Key Largo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.26734000", + "longitude": "-80.32339000" + }, + { + "id": "123053", + "name": "North Lauderdale", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.21730000", + "longitude": "-80.22588000" + }, + { + "id": "123066", + "name": "North Miami", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.89009000", + "longitude": "-80.18671000" + }, + { + "id": "123067", + "name": "North Miami Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.93315000", + "longitude": "-80.16255000" + }, + { + "id": "123075", + "name": "North Palm Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.81756000", + "longitude": "-80.08199000" + }, + { + "id": "123085", + "name": "North Port", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.04422000", + "longitude": "-82.23593000" + }, + { + "id": "123092", + "name": "North Redington Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.81614000", + "longitude": "-82.82066000" + }, + { + "id": "123095", + "name": "North River Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.21755000", + "longitude": "-80.26977000" + }, + { + "id": "123100", + "name": "North Sarasota", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.37393000", + "longitude": "-82.51843000" + }, + { + "id": "123127", + "name": "North Weeki Wachee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.55014000", + "longitude": "-82.55888000" + }, + { + "id": "123145", + "name": "Northdale", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.09390000", + "longitude": "-82.50561000" + }, + { + "id": "123243", + "name": "Oak Hill", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.86443000", + "longitude": "-80.85450000" + }, + { + "id": "123260", + "name": "Oak Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.47112000", + "longitude": "-81.42452000" + }, + { + "id": "123282", + "name": "Oakland", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.55500000", + "longitude": "-81.63313000" + }, + { + "id": "123296", + "name": "Oakland Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.17231000", + "longitude": "-80.13199000" + }, + { + "id": "123297", + "name": "Oakleaf Plantation", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.17083000", + "longitude": "-81.83549000" + }, + { + "id": "123320", + "name": "Ocala", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.18720000", + "longitude": "-82.14009000" + }, + { + "id": "123325", + "name": "Ocean City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.44103000", + "longitude": "-86.61356000" + }, + { + "id": "123335", + "name": "Ocean Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.52702000", + "longitude": "-80.04837000" + }, + { + "id": "123347", + "name": "Ocoee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.56917000", + "longitude": "-81.54396000" + }, + { + "id": "123358", + "name": "Odessa", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.19390000", + "longitude": "-82.59176000" + }, + { + "id": "123391", + "name": "Ojus", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.94843000", + "longitude": "-80.15060000" + }, + { + "id": "123392", + "name": "Okaloosa County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.66503000", + "longitude": "-86.59218000" + }, + { + "id": "123398", + "name": "Okeechobee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.24393000", + "longitude": "-80.82978000" + }, + { + "id": "123399", + "name": "Okeechobee County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.38629000", + "longitude": "-80.88858000" + }, + { + "id": "123434", + "name": "Oldsmar", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.03418000", + "longitude": "-82.66510000" + }, + { + "id": "123437", + "name": "Olga", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.71896000", + "longitude": "-81.71230000" + }, + { + "id": "123461", + "name": "Olympia Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.72677000", + "longitude": "-80.35533000" + }, + { + "id": "123494", + "name": "Opa-locka", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.90232000", + "longitude": "-80.25033000" + }, + { + "id": "123512", + "name": "Orange City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.94888000", + "longitude": "-81.29867000" + }, + { + "id": "123514", + "name": "Orange County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.51442000", + "longitude": "-81.32348000" + }, + { + "id": "123525", + "name": "Orange Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.16607000", + "longitude": "-81.70648000" + }, + { + "id": "123529", + "name": "Orangetree", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.29286000", + "longitude": "-81.58842000" + }, + { + "id": "123555", + "name": "Oriole Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.37381000", + "longitude": "-87.09136000" + }, + { + "id": "123562", + "name": "Orlando", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.53834000", + "longitude": "-81.37924000" + }, + { + "id": "123568", + "name": "Orlovista", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.53834000", + "longitude": "-81.46035000" + }, + { + "id": "123569", + "name": "Ormond Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.28581000", + "longitude": "-81.05589000" + }, + { + "id": "123570", + "name": "Ormond-by-the-Sea", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.34914000", + "longitude": "-81.06645000" + }, + { + "id": "123603", + "name": "Osceola County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.06266000", + "longitude": "-81.14948000" + }, + { + "id": "123613", + "name": "Osprey", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.19616000", + "longitude": "-82.49037000" + }, + { + "id": "123656", + "name": "Oviedo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.67000000", + "longitude": "-81.20812000" + }, + { + "id": "123704", + "name": "Pace", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.59936000", + "longitude": "-87.16108000" + }, + { + "id": "123723", + "name": "Pahokee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.82006000", + "longitude": "-80.66534000" + }, + { + "id": "123732", + "name": "Palatka", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.64858000", + "longitude": "-81.63758000" + }, + { + "id": "123740", + "name": "Palm Aire", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.20619000", + "longitude": "-80.19171000" + }, + { + "id": "123741", + "name": "Palm Bay", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.03446000", + "longitude": "-80.58866000" + }, + { + "id": "123742", + "name": "Palm Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.70562000", + "longitude": "-80.03643000" + }, + { + "id": "123743", + "name": "Palm Beach County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.64757000", + "longitude": "-80.43651000" + }, + { + "id": "123744", + "name": "Palm Beach Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.82339000", + "longitude": "-80.13865000" + }, + { + "id": "123745", + "name": "Palm Beach Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.77812000", + "longitude": "-80.03560000" + }, + { + "id": "123746", + "name": "Palm City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.16783000", + "longitude": "-80.26616000" + }, + { + "id": "123747", + "name": "Palm Coast", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.58497000", + "longitude": "-81.20784000" + }, + { + "id": "123749", + "name": "Palm Harbor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.07807000", + "longitude": "-82.76371000" + }, + { + "id": "123750", + "name": "Palm River-Clair Mel", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.92386000", + "longitude": "-82.37939000" + }, + { + "id": "123751", + "name": "Palm Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.63590000", + "longitude": "-80.09615000" + }, + { + "id": "123753", + "name": "Palm Springs North", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.93510000", + "longitude": "-80.33383000" + }, + { + "id": "123754", + "name": "Palm Valley", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.17746000", + "longitude": "-81.38758000" + }, + { + "id": "123764", + "name": "Palmetto", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.52143000", + "longitude": "-82.57232000" + }, + { + "id": "123766", + "name": "Palmetto Bay", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.62177000", + "longitude": "-80.32477000" + }, + { + "id": "123767", + "name": "Palmetto Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.62149000", + "longitude": "-80.36200000" + }, + { + "id": "123769", + "name": "Palmona Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.68646000", + "longitude": "-81.89648000" + }, + { + "id": "123798", + "name": "Panama City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.15946000", + "longitude": "-85.65983000" + }, + { + "id": "123799", + "name": "Panama City Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.17659000", + "longitude": "-85.80549000" + }, + { + "id": "123820", + "name": "Paradise Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.62361000", + "longitude": "-81.54396000" + }, + { + "id": "123858", + "name": "Parker", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.13104000", + "longitude": "-85.60326000" + }, + { + "id": "123871", + "name": "Parkland", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.31008000", + "longitude": "-80.23727000" + }, + { + "id": "123898", + "name": "Pasadena Hills", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.28001000", + "longitude": "-82.22438000" + }, + { + "id": "123902", + "name": "Pasco County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.30674000", + "longitude": "-82.43887000" + }, + { + "id": "123974", + "name": "Pebble Creek", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.14835000", + "longitude": "-82.34565000" + }, + { + "id": "123994", + "name": "Pelican Bay", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.23120000", + "longitude": "-81.80564000" + }, + { + "id": "124008", + "name": "Pembroke Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.98787000", + "longitude": "-80.17477000" + }, + { + "id": "124009", + "name": "Pembroke Pines", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.00315000", + "longitude": "-80.22394000" + }, + { + "id": "124045", + "name": "Pensacola", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.42131000", + "longitude": "-87.21691000" + }, + { + "id": "124067", + "name": "Perry", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.11766000", + "longitude": "-83.58274000" + }, + { + "id": "124180", + "name": "Pierson", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.23942000", + "longitude": "-81.46563000" + }, + { + "id": "124217", + "name": "Pine Castle", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.47195000", + "longitude": "-81.36785000" + }, + { + "id": "124225", + "name": "Pine Hills", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.55778000", + "longitude": "-81.45340000" + }, + { + "id": "124229", + "name": "Pine Island Center", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.61369000", + "longitude": "-82.11815000" + }, + { + "id": "124230", + "name": "Pine Island Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.09481000", + "longitude": "-80.27394000" + }, + { + "id": "124237", + "name": "Pine Manor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.57285000", + "longitude": "-81.87814000" + }, + { + "id": "124242", + "name": "Pine Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.93831000", + "longitude": "-82.47343000" + }, + { + "id": "124248", + "name": "Pinecrest", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.66705000", + "longitude": "-80.30811000" + }, + { + "id": "124254", + "name": "Pinellas County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.90268000", + "longitude": "-82.73955000" + }, + { + "id": "124255", + "name": "Pinellas Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.84280000", + "longitude": "-82.69954000" + }, + { + "id": "124264", + "name": "Pinewood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.86898000", + "longitude": "-80.21699000" + }, + { + "id": "124313", + "name": "Placid Lakes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.24144000", + "longitude": "-81.40702000" + }, + { + "id": "124345", + "name": "Plant City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.01888000", + "longitude": "-82.11469000" + }, + { + "id": "124346", + "name": "Plantation", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.13421000", + "longitude": "-80.23184000" + }, + { + "id": "124347", + "name": "Plantation Mobile Home Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.70312000", + "longitude": "-80.13227000" + }, + { + "id": "124424", + "name": "Poinciana", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.14029000", + "longitude": "-81.45841000" + }, + { + "id": "124426", + "name": "Point Baker", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.69019000", + "longitude": "-87.05358000" + }, + { + "id": "124438", + "name": "Polk City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.18251000", + "longitude": "-81.82397000" + }, + { + "id": "124441", + "name": "Polk County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.94888000", + "longitude": "-81.69767000" + }, + { + "id": "124460", + "name": "Pompano Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.23786000", + "longitude": "-80.12477000" + }, + { + "id": "124461", + "name": "Pompano Beach Highlands", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.28286000", + "longitude": "-80.10699000" + }, + { + "id": "124465", + "name": "Ponce Inlet", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.09637000", + "longitude": "-80.93700000" + }, + { + "id": "124472", + "name": "Ponte Vedra Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.23969000", + "longitude": "-81.38564000" + }, + { + "id": "124502", + "name": "Port Charlotte", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.97617000", + "longitude": "-82.09064000" + }, + { + "id": "124516", + "name": "Port LaBelle", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.75645000", + "longitude": "-81.40508000" + }, + { + "id": "124524", + "name": "Port Orange", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.13832000", + "longitude": "-80.99561000" + }, + { + "id": "124529", + "name": "Port Richey", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.27168000", + "longitude": "-82.71955000" + }, + { + "id": "124532", + "name": "Port Saint Joe", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.81188000", + "longitude": "-85.30297000" + }, + { + "id": "124533", + "name": "Port Saint John", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.47695000", + "longitude": "-80.78867000" + }, + { + "id": "124534", + "name": "Port Saint Lucie", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.29393000", + "longitude": "-80.35033000" + }, + { + "id": "124535", + "name": "Port Salerno", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.14422000", + "longitude": "-80.20060000" + }, + { + "id": "124662", + "name": "Pretty Bayou", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.19659000", + "longitude": "-85.69660000" + }, + { + "id": "124680", + "name": "Princeton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.53844000", + "longitude": "-80.40894000" + }, + { + "id": "124703", + "name": "Progress Village", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.90030000", + "longitude": "-82.36454000" + }, + { + "id": "124748", + "name": "Punta Gorda", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.92978000", + "longitude": "-82.04537000" + }, + { + "id": "124749", + "name": "Punta Gorda Isles", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.91756000", + "longitude": "-82.07842000" + }, + { + "id": "124750", + "name": "Punta Rassa", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.48786000", + "longitude": "-82.01231000" + }, + { + "id": "124761", + "name": "Putnam County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.60863000", + "longitude": "-81.74430000" + }, + { + "id": "124776", + "name": "Quail Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.34905000", + "longitude": "-82.55532000" + }, + { + "id": "124795", + "name": "Quincy", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.58714000", + "longitude": "-84.58325000" + }, + { + "id": "124971", + "name": "Redington Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.80864000", + "longitude": "-82.81121000" + }, + { + "id": "124972", + "name": "Redington Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.82614000", + "longitude": "-82.82899000" + }, + { + "id": "125102", + "name": "Richmond Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.63149000", + "longitude": "-80.36894000" + }, + { + "id": "125106", + "name": "Richmond West", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.61050000", + "longitude": "-80.42971000" + }, + { + "id": "125115", + "name": "Ridge Manor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.50750000", + "longitude": "-82.17036000" + }, + { + "id": "125116", + "name": "Ridge Wood Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.28727000", + "longitude": "-82.51315000" + }, + { + "id": "125117", + "name": "Ridgecrest", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.89750000", + "longitude": "-82.80529000" + }, + { + "id": "125184", + "name": "River Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.31421000", + "longitude": "-80.34727000" + }, + { + "id": "125216", + "name": "Riverview", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.86614000", + "longitude": "-82.32648000" + }, + { + "id": "125221", + "name": "Riviera Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.77534000", + "longitude": "-80.05810000" + }, + { + "id": "125282", + "name": "Rock Island", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.15509000", + "longitude": "-80.17699000" + }, + { + "id": "125311", + "name": "Rockledge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.35084000", + "longitude": "-80.72533000" + }, + { + "id": "125395", + "name": "Roosevelt Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.14087000", + "longitude": "-80.18027000" + }, + { + "id": "125421", + "name": "Roseland", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.83586000", + "longitude": "-80.49311000" + }, + { + "id": "125467", + "name": "Rotonda West", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.88368000", + "longitude": "-82.29009000" + }, + { + "id": "125491", + "name": "Royal Palm Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.70840000", + "longitude": "-80.23060000" + }, + { + "id": "125492", + "name": "Royal Palm Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.68173000", + "longitude": "-80.12504000" + }, + { + "id": "125531", + "name": "Ruskin", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.72086000", + "longitude": "-82.43315000" + }, + { + "id": "125582", + "name": "Safety Harbor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.99085000", + "longitude": "-82.69316000" + }, + { + "id": "125604", + "name": "Saint Augustine", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.89469000", + "longitude": "-81.31452000" + }, + { + "id": "125605", + "name": "Saint Augustine Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.85053000", + "longitude": "-81.26535000" + }, + { + "id": "125606", + "name": "Saint Augustine Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.81080000", + "longitude": "-81.31035000" + }, + { + "id": "125607", + "name": "Saint Augustine South", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.84249000", + "longitude": "-81.31448000" + }, + { + "id": "125626", + "name": "Saint Cloud", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.24890000", + "longitude": "-81.28118000" + }, + { + "id": "125640", + "name": "Saint George", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.05641000", + "longitude": "-82.72788000" + }, + { + "id": "125657", + "name": "Saint James City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.49758000", + "longitude": "-82.07843000" + }, + { + "id": "125667", + "name": "Saint Johns County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.91218000", + "longitude": "-81.40989000" + }, + { + "id": "125679", + "name": "Saint Leo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.33723000", + "longitude": "-82.25842000" + }, + { + "id": "125684", + "name": "Saint Lucie County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.38081000", + "longitude": "-80.44554000" + }, + { + "id": "125707", + "name": "Saint Pete Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.72531000", + "longitude": "-82.74121000" + }, + { + "id": "125779", + "name": "Samoset", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.46948000", + "longitude": "-82.54149000" + }, + { + "id": "125782", + "name": "Samsula-Spruce Creek", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.04932000", + "longitude": "-81.06192000" + }, + { + "id": "125786", + "name": "San Antonio", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.33611000", + "longitude": "-82.27453000" + }, + { + "id": "125799", + "name": "San Carlos Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.46730000", + "longitude": "-81.80147000" + }, + { + "id": "125862", + "name": "Sandalfoot Cove", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.33863000", + "longitude": "-80.18690000" + }, + { + "id": "125886", + "name": "Sanford", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.80055000", + "longitude": "-81.27312000" + }, + { + "id": "125894", + "name": "Sanibel", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.44897000", + "longitude": "-82.02231000" + }, + { + "id": "125924", + "name": "Santa Rosa County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.69290000", + "longitude": "-87.01845000" + }, + { + "id": "125938", + "name": "Sarasota", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.33643000", + "longitude": "-82.53065000" + }, + { + "id": "125939", + "name": "Sarasota County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.18248000", + "longitude": "-82.36498000" + }, + { + "id": "125940", + "name": "Sarasota Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.30894000", + "longitude": "-82.47954000" + }, + { + "id": "125955", + "name": "Satellite Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.17612000", + "longitude": "-80.59005000" + }, + { + "id": "125980", + "name": "Sawgrass", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.19274000", + "longitude": "-81.37064000" + }, + { + "id": "126001", + "name": "Schall Circle", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.71562000", + "longitude": "-80.11504000" + }, + { + "id": "126054", + "name": "Scott Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.94148000", + "longitude": "-80.23199000" + }, + { + "id": "126097", + "name": "Seaside", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.32103000", + "longitude": "-86.14161000" + }, + { + "id": "126105", + "name": "Sebastian", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.81641000", + "longitude": "-80.47061000" + }, + { + "id": "126111", + "name": "Sebring", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.49559000", + "longitude": "-81.44091000" + }, + { + "id": "126127", + "name": "Seffner", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.98363000", + "longitude": "-82.27565000" + }, + { + "id": "126144", + "name": "Seminole", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.83975000", + "longitude": "-82.79121000" + }, + { + "id": "126147", + "name": "Seminole County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.71698000", + "longitude": "-81.23630000" + }, + { + "id": "126150", + "name": "Seminole Manor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.58368000", + "longitude": "-80.10032000" + }, + { + "id": "126184", + "name": "Sewall's Point", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.19949000", + "longitude": "-80.20227000" + }, + { + "id": "126204", + "name": "Shady Hills", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.41000000", + "longitude": "-82.54288000" + }, + { + "id": "126234", + "name": "Sharpes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.43223000", + "longitude": "-80.76005000" + }, + { + "id": "126409", + "name": "Siesta Key", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.26785000", + "longitude": "-82.54526000" + }, + { + "id": "126427", + "name": "Silver Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.84193000", + "longitude": "-81.79841000" + }, + { + "id": "126436", + "name": "Silver Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.21664000", + "longitude": "-82.05759000" + }, + { + "id": "126437", + "name": "Silver Springs Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.10442000", + "longitude": "-82.02064000" + }, + { + "id": "126485", + "name": "Sky Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.45723000", + "longitude": "-81.39146000" + }, + { + "id": "126538", + "name": "Sneads", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.70801000", + "longitude": "-84.92552000" + }, + { + "id": "126614", + "name": "South Apopka", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.66194000", + "longitude": "-81.50952000" + }, + { + "id": "126618", + "name": "South Bay", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.66396000", + "longitude": "-80.71617000" + }, + { + "id": "126619", + "name": "South Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.59115000", + "longitude": "-80.34422000" + }, + { + "id": "126631", + "name": "South Bradenton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.46310000", + "longitude": "-82.58176000" + }, + { + "id": "126632", + "name": "South Brooksville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.53582000", + "longitude": "-82.38403000" + }, + { + "id": "126645", + "name": "South Daytona", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.16582000", + "longitude": "-81.00450000" + }, + { + "id": "126660", + "name": "South Gate Ridge", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.28644000", + "longitude": "-82.49676000" + }, + { + "id": "126670", + "name": "South Highpoint", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.91697000", + "longitude": "-82.71288000" + }, + { + "id": "126691", + "name": "South Miami", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.70760000", + "longitude": "-80.29338000" + }, + { + "id": "126692", + "name": "South Miami Heights", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.59761000", + "longitude": "-80.38061000" + }, + { + "id": "126701", + "name": "South Palm Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.58896000", + "longitude": "-80.03865000" + }, + { + "id": "126705", + "name": "South Pasadena", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.75503000", + "longitude": "-82.73760000" + }, + { + "id": "126707", + "name": "South Patrick Shores", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.20223000", + "longitude": "-80.60950000" + }, + { + "id": "126727", + "name": "South Sarasota", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.28616000", + "longitude": "-82.53288000" + }, + { + "id": "126742", + "name": "South Venice", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.05311000", + "longitude": "-82.42426000" + }, + { + "id": "126764", + "name": "Southchase", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.39306000", + "longitude": "-81.38340000" + }, + { + "id": "126765", + "name": "Southeast Arcadia", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.18629000", + "longitude": "-81.85210000" + }, + { + "id": "126773", + "name": "Southgate", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.30810000", + "longitude": "-82.50982000" + }, + { + "id": "126790", + "name": "Southwest Ranches", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.05870000", + "longitude": "-80.33727000" + }, + { + "id": "126860", + "name": "Spring Hill", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.47688000", + "longitude": "-82.52546000" + }, + { + "id": "126889", + "name": "Springfield", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.15326000", + "longitude": "-85.61132000" + }, + { + "id": "126926", + "name": "St. Johns", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.08150000", + "longitude": "-81.54774000" + }, + { + "id": "126930", + "name": "St. Petersburg", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.77086000", + "longitude": "-82.67927000" + }, + { + "id": "126986", + "name": "Starke", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.94413000", + "longitude": "-82.10983000" + }, + { + "id": "127018", + "name": "Steinhatchee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.67106000", + "longitude": "-83.38764000" + }, + { + "id": "127066", + "name": "Stock Island", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "24.56709000", + "longitude": "-81.73842000" + }, + { + "id": "127142", + "name": "Stuart", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.19755000", + "longitude": "-80.25283000" + }, + { + "id": "127176", + "name": "Sugarmill Woods", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.73221000", + "longitude": "-82.50621000" + }, + { + "id": "127229", + "name": "Sumter County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.70482000", + "longitude": "-82.08100000" + }, + { + "id": "127234", + "name": "Sun City Center", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.71809000", + "longitude": "-82.35176000" + }, + { + "id": "127246", + "name": "Suncoast Estates", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.71174000", + "longitude": "-81.86897000" + }, + { + "id": "127256", + "name": "Sunny Isles Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.95065000", + "longitude": "-80.12282000" + }, + { + "id": "127267", + "name": "Sunrise", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.13397000", + "longitude": "-80.11310000" + }, + { + "id": "127271", + "name": "Sunset", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.70594000", + "longitude": "-80.35228000" + }, + { + "id": "127277", + "name": "Sunshine Ranches", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.04592000", + "longitude": "-80.32894000" + }, + { + "id": "127287", + "name": "Surfside", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.87843000", + "longitude": "-80.12560000" + }, + { + "id": "127318", + "name": "Suwannee County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.19561000", + "longitude": "-82.99149000" + }, + { + "id": "127340", + "name": "Sweetwater", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.76343000", + "longitude": "-80.37311000" + }, + { + "id": "127371", + "name": "Taft", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.42973000", + "longitude": "-81.36507000" + }, + { + "id": "127391", + "name": "Tallahassee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.43826000", + "longitude": "-84.28073000" + }, + { + "id": "127405", + "name": "Tamarac", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.21286000", + "longitude": "-80.24977000" + }, + { + "id": "127406", + "name": "Tamiami", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.75871000", + "longitude": "-80.39839000" + }, + { + "id": "127407", + "name": "Tampa", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.94752000", + "longitude": "-82.45843000" + }, + { + "id": "127412", + "name": "Tangelo Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.45584000", + "longitude": "-81.44590000" + }, + { + "id": "127414", + "name": "Tangerine", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.76499000", + "longitude": "-81.63063000" + }, + { + "id": "127433", + "name": "Tarpon Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.14612000", + "longitude": "-82.75677000" + }, + { + "id": "127442", + "name": "Tavares", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.80416000", + "longitude": "-81.72563000" + }, + { + "id": "127443", + "name": "Tavernier", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.01152000", + "longitude": "-80.51506000" + }, + { + "id": "127451", + "name": "Taylor County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.01957000", + "longitude": "-83.61897000" + }, + { + "id": "127458", + "name": "Taylor Creek", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.21671000", + "longitude": "-80.78950000" + }, + { + "id": "127481", + "name": "Tedder", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.28425000", + "longitude": "-80.12227000" + }, + { + "id": "127503", + "name": "Temple Terrace", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.03530000", + "longitude": "-82.38926000" + }, + { + "id": "127513", + "name": "Tequesta", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.96811000", + "longitude": "-80.12865000" + }, + { + "id": "127516", + "name": "Terra Mar", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.21619000", + "longitude": "-80.09532000" + }, + { + "id": "127553", + "name": "The Acreage", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.79404000", + "longitude": "-80.26749000" + }, + { + "id": "127556", + "name": "The Crossings", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.67066000", + "longitude": "-80.40117000" + }, + { + "id": "127559", + "name": "The Hammocks", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.67149000", + "longitude": "-80.44450000" + }, + { + "id": "127562", + "name": "The Meadows", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.36171000", + "longitude": "-82.46898000" + }, + { + "id": "127565", + "name": "The Villages", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.93408000", + "longitude": "-81.95994000" + }, + { + "id": "127597", + "name": "Thonotosassa", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.06141000", + "longitude": "-82.30231000" + }, + { + "id": "127612", + "name": "Three Lakes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.64205000", + "longitude": "-80.39839000" + }, + { + "id": "127614", + "name": "Three Oaks", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.47008000", + "longitude": "-81.79397000" + }, + { + "id": "127633", + "name": "Tice", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.67479000", + "longitude": "-81.81508000" + }, + { + "id": "127638", + "name": "Tierra Verde", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.69197000", + "longitude": "-82.72343000" + }, + { + "id": "127644", + "name": "Tiger Point", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.37853000", + "longitude": "-87.05552000" + }, + { + "id": "127657", + "name": "Timber Pines", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.47028000", + "longitude": "-82.60316000" + }, + { + "id": "127685", + "name": "Titusville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.61222000", + "longitude": "-80.80755000" + }, + { + "id": "127756", + "name": "Town 'n' Country", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.01057000", + "longitude": "-82.57732000" + }, + { + "id": "127790", + "name": "Treasure Island", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.76919000", + "longitude": "-82.76899000" + }, + { + "id": "127801", + "name": "Trenton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.61329000", + "longitude": "-82.81762000" + }, + { + "id": "127824", + "name": "Trinity", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.18085000", + "longitude": "-82.68177000" + }, + { + "id": "127928", + "name": "Twin Lakes", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.18092000", + "longitude": "-80.16005000" + }, + { + "id": "127946", + "name": "Tyndall Air Force Base", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.08535000", + "longitude": "-85.60731000" + }, + { + "id": "127961", + "name": "Umatilla", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.92943000", + "longitude": "-81.66563000" + }, + { + "id": "127989", + "name": "Union County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.04384000", + "longitude": "-82.37144000" + }, + { + "id": "128009", + "name": "Union Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.56806000", + "longitude": "-81.28618000" + }, + { + "id": "128025", + "name": "University", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.07389000", + "longitude": "-82.43902000" + }, + { + "id": "128031", + "name": "University Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.74649000", + "longitude": "-80.36755000" + }, + { + "id": "128044", + "name": "Upper Grand Lagoon", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.16326000", + "longitude": "-85.74076000" + }, + { + "id": "128120", + "name": "Valparaiso", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.50853000", + "longitude": "-86.50273000" + }, + { + "id": "128122", + "name": "Valrico", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.93789000", + "longitude": "-82.23644000" + }, + { + "id": "128123", + "name": "Vamo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.22200000", + "longitude": "-82.49787000" + }, + { + "id": "128170", + "name": "Venice", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.09978000", + "longitude": "-82.45426000" + }, + { + "id": "128173", + "name": "Venice Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.07311000", + "longitude": "-82.40760000" + }, + { + "id": "128198", + "name": "Vero Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.63864000", + "longitude": "-80.39727000" + }, + { + "id": "128199", + "name": "Vero Beach South", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.61638000", + "longitude": "-80.41308000" + }, + { + "id": "128206", + "name": "Verona Walk", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.08412000", + "longitude": "-81.67985000" + }, + { + "id": "128236", + "name": "Viera East", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.26234000", + "longitude": "-80.71449000" + }, + { + "id": "128237", + "name": "Viera West", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.24504000", + "longitude": "-80.73380000" + }, + { + "id": "128255", + "name": "Villages of Oriole", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.46230000", + "longitude": "-80.15282000" + }, + { + "id": "128256", + "name": "Villano Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.93858000", + "longitude": "-81.30202000" + }, + { + "id": "128257", + "name": "Villas", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.55035000", + "longitude": "-81.86870000" + }, + { + "id": "128275", + "name": "Vineyards", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.22373000", + "longitude": "-81.72798000" + }, + { + "id": "128291", + "name": "Virginia Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.81038000", + "longitude": "-80.30227000" + }, + { + "id": "128303", + "name": "Volusia County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.06345000", + "longitude": "-81.14857000" + }, + { + "id": "128314", + "name": "Wabasso Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.76475000", + "longitude": "-80.39894000" + }, + { + "id": "128333", + "name": "Wahneta", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.95280000", + "longitude": "-81.72702000" + }, + { + "id": "128365", + "name": "Wakulla County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.14777000", + "longitude": "-84.37561000" + }, + { + "id": "128371", + "name": "Waldo", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.78969000", + "longitude": "-82.16732000" + }, + { + "id": "128396", + "name": "Wallace", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.67741000", + "longitude": "-87.17997000" + }, + { + "id": "128437", + "name": "Walton County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.61847000", + "longitude": "-86.17152000" + }, + { + "id": "128468", + "name": "Warm Mineral Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.05978000", + "longitude": "-82.26009000" + }, + { + "id": "128512", + "name": "Warrington", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.38409000", + "longitude": "-87.27497000" + }, + { + "id": "128554", + "name": "Washington County", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.61059000", + "longitude": "-85.66533000" + }, + { + "id": "128584", + "name": "Washington Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.13259000", + "longitude": "-80.18116000" + }, + { + "id": "128618", + "name": "Watertown", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.19245000", + "longitude": "-82.61457000" + }, + { + "id": "128645", + "name": "Wauchula", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.54726000", + "longitude": "-81.81147000" + }, + { + "id": "128747", + "name": "Wedgefield", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.48778000", + "longitude": "-81.07729000" + }, + { + "id": "128755", + "name": "Weeki Wachee Gardens", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.53361000", + "longitude": "-82.62954000" + }, + { + "id": "128763", + "name": "Wekiwa Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.69861000", + "longitude": "-81.42563000" + }, + { + "id": "128772", + "name": "Wellborn", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.23106000", + "longitude": "-82.81957000" + }, + { + "id": "128776", + "name": "Wellington", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.65868000", + "longitude": "-80.24144000" + }, + { + "id": "128809", + "name": "Wesley Chapel", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.23973000", + "longitude": "-82.32787000" + }, + { + "id": "129011", + "name": "West and East Lealman", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.81993000", + "longitude": "-82.68944000" + }, + { + "id": "128831", + "name": "West Bradenton", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.50254000", + "longitude": "-82.61399000" + }, + { + "id": "128855", + "name": "West DeLand", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.01582000", + "longitude": "-81.33312000" + }, + { + "id": "128876", + "name": "West Gate", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.70257000", + "longitude": "-80.09810000" + }, + { + "id": "128898", + "name": "West Hollywood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.02065000", + "longitude": "-80.18394000" + }, + { + "id": "128920", + "name": "West Little River", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.85704000", + "longitude": "-80.23699000" + }, + { + "id": "128927", + "name": "West Melbourne", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.07168000", + "longitude": "-80.65339000" + }, + { + "id": "128930", + "name": "West Miami", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.76343000", + "longitude": "-80.29616000" + }, + { + "id": "128947", + "name": "West Palm Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.71534000", + "longitude": "-80.05337000" + }, + { + "id": "128949", + "name": "West Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.98454000", + "longitude": "-80.19894000" + }, + { + "id": "128952", + "name": "West Pensacola", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.42659000", + "longitude": "-87.27969000" + }, + { + "id": "128954", + "name": "West Perrine", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.60594000", + "longitude": "-80.36283000" + }, + { + "id": "128974", + "name": "West Samoset", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.46948000", + "longitude": "-82.55676000" + }, + { + "id": "128998", + "name": "West Vero Corridor", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.63775000", + "longitude": "-80.48576000" + }, + { + "id": "129017", + "name": "Westchase", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.05502000", + "longitude": "-82.60982000" + }, + { + "id": "129018", + "name": "Westchester", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.75482000", + "longitude": "-80.32727000" + }, + { + "id": "129058", + "name": "Weston", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.10037000", + "longitude": "-80.39977000" + }, + { + "id": "129075", + "name": "Westview", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.88204000", + "longitude": "-80.24199000" + }, + { + "id": "129088", + "name": "Westwood Lake", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "25.72927000", + "longitude": "-80.37283000" + }, + { + "id": "129094", + "name": "Wewahitchka", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.11270000", + "longitude": "-85.20047000" + }, + { + "id": "129123", + "name": "Whiskey Creek", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.57258000", + "longitude": "-81.89009000" + }, + { + "id": "129130", + "name": "White City", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.37393000", + "longitude": "-80.33394000" + }, + { + "id": "129193", + "name": "Whitfield", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.41171000", + "longitude": "-82.56593000" + }, + { + "id": "129236", + "name": "Wildwood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.86542000", + "longitude": "-82.04058000" + }, + { + "id": "129265", + "name": "Williamsburg", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.41445000", + "longitude": "-81.44285000" + }, + { + "id": "129296", + "name": "Williston", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.38747000", + "longitude": "-82.44677000" + }, + { + "id": "129300", + "name": "Williston Highlands", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "29.34052000", + "longitude": "-82.54150000" + }, + { + "id": "129307", + "name": "Willow Oak", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.91614000", + "longitude": "-82.01786000" + }, + { + "id": "129347", + "name": "Wilton Manors", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "26.16036000", + "longitude": "-80.13893000" + }, + { + "id": "129348", + "name": "Wimauma", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.71253000", + "longitude": "-82.29898000" + }, + { + "id": "129370", + "name": "Windermere", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.49556000", + "longitude": "-81.53480000" + }, + { + "id": "129432", + "name": "Winston", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.03169000", + "longitude": "-82.01481000" + }, + { + "id": "129437", + "name": "Winter Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.71920000", + "longitude": "-80.42061000" + }, + { + "id": "129438", + "name": "Winter Garden", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.56528000", + "longitude": "-81.58618000" + }, + { + "id": "129440", + "name": "Winter Haven", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.02224000", + "longitude": "-81.73286000" + }, + { + "id": "129441", + "name": "Winter Park", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.60000000", + "longitude": "-81.33924000" + }, + { + "id": "129442", + "name": "Winter Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.69889000", + "longitude": "-81.30812000" + }, + { + "id": "129538", + "name": "Woodlawn Beach", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.38825000", + "longitude": "-86.99080000" + }, + { + "id": "129570", + "name": "Woodville", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.31409000", + "longitude": "-84.24740000" + }, + { + "id": "129605", + "name": "Wright", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.45575000", + "longitude": "-86.63829000" + }, + { + "id": "129653", + "name": "Yalaha", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.73860000", + "longitude": "-81.80869000" + }, + { + "id": "129716", + "name": "Youngstown", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.36436000", + "longitude": "-85.43826000" + }, + { + "id": "129732", + "name": "Yulee", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "30.63190000", + "longitude": "-81.60649000" + }, + { + "id": "129747", + "name": "Zellwood", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.73111000", + "longitude": "-81.60118000" + }, + { + "id": "129749", + "name": "Zephyrhills", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.23362000", + "longitude": "-82.18119000" + }, + { + "id": "129750", + "name": "Zephyrhills North", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.25172000", + "longitude": "-82.16557000" + }, + { + "id": "129751", + "name": "Zephyrhills South", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.21492000", + "longitude": "-82.18873000" + }, + { + "id": "129752", + "name": "Zephyrhills West", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "28.23081000", + "longitude": "-82.20556000" + }, + { + "id": "129760", + "name": "Zolfo Springs", + "state_id": 1436, + "state_code": "FL", + "country_id": 233, + "country_code": "US", + "latitude": "27.49337000", + "longitude": "-81.79592000" + }, + { + "id": "110965", + "name": "Abbeville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.99212000", + "longitude": "-83.30682000" + }, + { + "id": "111004", + "name": "Acworth", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.06635000", + "longitude": "-84.67837000" + }, + { + "id": "111012", + "name": "Adairsville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.36870000", + "longitude": "-84.93411000" + }, + { + "id": "111041", + "name": "Adel", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.13727000", + "longitude": "-83.42408000" + }, + { + "id": "111090", + "name": "Alamo", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.14712000", + "longitude": "-82.77792000" + }, + { + "id": "111101", + "name": "Albany", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.57851000", + "longitude": "-84.15574000" + }, + { + "id": "111207", + "name": "Alma", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.53937000", + "longitude": "-82.46236000" + }, + { + "id": "111221", + "name": "Alpharetta", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.07538000", + "longitude": "-84.29409000" + }, + { + "id": "111239", + "name": "Alto", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.46732000", + "longitude": "-83.57378000" + }, + { + "id": "111274", + "name": "Americus", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.07239000", + "longitude": "-84.23269000" + }, + { + "id": "111400", + "name": "Appling County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.74928000", + "longitude": "-82.28898000" + }, + { + "id": "111409", + "name": "Aragon", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.04565000", + "longitude": "-85.05606000" + }, + { + "id": "111418", + "name": "Arcade", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.07789000", + "longitude": "-83.56155000" + }, + { + "id": "111460", + "name": "Arlington", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.43990000", + "longitude": "-84.72492000" + }, + { + "id": "111513", + "name": "Ashburn", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.70601000", + "longitude": "-83.65322000" + }, + { + "id": "111573", + "name": "Athens", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96095000", + "longitude": "-83.37794000" + }, + { + "id": "111589", + "name": "Atkinson County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.29711000", + "longitude": "-82.87999000" + }, + { + "id": "111590", + "name": "Atlanta", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74900000", + "longitude": "-84.38798000" + }, + { + "id": "111619", + "name": "Auburn", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.01372000", + "longitude": "-83.82768000" + }, + { + "id": "111646", + "name": "Augusta", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.47097000", + "longitude": "-81.97484000" + }, + { + "id": "111665", + "name": "Austell", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.81261000", + "longitude": "-84.63438000" + }, + { + "id": "111702", + "name": "Avondale Estates", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.77149000", + "longitude": "-84.26714000" + }, + { + "id": "111720", + "name": "Bacon County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.55367000", + "longitude": "-82.45269000" + }, + { + "id": "111732", + "name": "Bainbridge", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.90380000", + "longitude": "-84.57547000" + }, + { + "id": "111742", + "name": "Baker County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.32618000", + "longitude": "-84.44467000" + }, + { + "id": "111752", + "name": "Baldwin", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.49177000", + "longitude": "-83.53739000" + }, + { + "id": "111760", + "name": "Baldwin County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.06928000", + "longitude": "-83.24959000" + }, + { + "id": "111769", + "name": "Ball Ground", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.33815000", + "longitude": "-84.37659000" + }, + { + "id": "111798", + "name": "Banks County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.35413000", + "longitude": "-83.49737000" + }, + { + "id": "111829", + "name": "Barnesville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.05457000", + "longitude": "-84.15575000" + }, + { + "id": "111853", + "name": "Barrow County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.99320000", + "longitude": "-83.71276000" + }, + { + "id": "111873", + "name": "Bartow County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.23786000", + "longitude": "-84.84050000" + }, + { + "id": "111913", + "name": "Baxley", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.77825000", + "longitude": "-82.34846000" + }, + { + "id": "112154", + "name": "Belvedere Park", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.75483000", + "longitude": "-84.26742000" + }, + { + "id": "112162", + "name": "Ben Hill County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.75978000", + "longitude": "-83.22046000" + }, + { + "id": "112227", + "name": "Berkeley Lake", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.98371000", + "longitude": "-84.18658000" + }, + { + "id": "112249", + "name": "Berrien County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.27606000", + "longitude": "-83.22962000" + }, + { + "id": "112310", + "name": "Bibb County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.80659000", + "longitude": "-83.69776000" + }, + { + "id": "112391", + "name": "Blackshear", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.30605000", + "longitude": "-82.24207000" + }, + { + "id": "112412", + "name": "Blairsville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.87620000", + "longitude": "-83.95824000" + }, + { + "id": "112414", + "name": "Blakely", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.37768000", + "longitude": "-84.93409000" + }, + { + "id": "112427", + "name": "Bleckley County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.43444000", + "longitude": "-83.32784000" + }, + { + "id": "112443", + "name": "Bloomingdale", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.13242000", + "longitude": "-81.29900000" + }, + { + "id": "112475", + "name": "Blue Ridge", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.86397000", + "longitude": "-84.32409000" + }, + { + "id": "112499", + "name": "Bogart", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.94928000", + "longitude": "-83.53461000" + }, + { + "id": "112530", + "name": "Bonanza", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.46567000", + "longitude": "-84.33659000" + }, + { + "id": "112588", + "name": "Boston", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.79186000", + "longitude": "-83.78989000" + }, + { + "id": "112622", + "name": "Bowdon", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.53789000", + "longitude": "-85.25328000" + }, + { + "id": "112696", + "name": "Brantley County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.19688000", + "longitude": "-81.98190000" + }, + { + "id": "112697", + "name": "Braselton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10927000", + "longitude": "-83.76267000" + }, + { + "id": "112720", + "name": "Bremen", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.72122000", + "longitude": "-85.14550000" + }, + { + "id": "112856", + "name": "Brookhaven", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.85844000", + "longitude": "-84.34020000" + }, + { + "id": "112866", + "name": "Brooklet", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.37963000", + "longitude": "-81.66317000" + }, + { + "id": "112883", + "name": "Brooks County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.84197000", + "longitude": "-83.58021000" + }, + { + "id": "112941", + "name": "Broxton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.62519000", + "longitude": "-82.88681000" + }, + { + "id": "112947", + "name": "Brunswick", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.14995000", + "longitude": "-81.49149000" + }, + { + "id": "112960", + "name": "Bryan County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.01322000", + "longitude": "-81.44247000" + }, + { + "id": "112969", + "name": "Buchanan", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.80260000", + "longitude": "-85.18856000" + }, + { + "id": "113000", + "name": "Buena Vista", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.31904000", + "longitude": "-84.51714000" + }, + { + "id": "113022", + "name": "Buford", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.12066000", + "longitude": "-84.00435000" + }, + { + "id": "113033", + "name": "Bulloch County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.39681000", + "longitude": "-81.74318000" + }, + { + "id": "113056", + "name": "Burke County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.06115000", + "longitude": "-82.00078000" + }, + { + "id": "113107", + "name": "Butler", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.55709000", + "longitude": "-84.23825000" + }, + { + "id": "113130", + "name": "Butts County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.28785000", + "longitude": "-83.95717000" + }, + { + "id": "113143", + "name": "Byron", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.65376000", + "longitude": "-83.75963000" + }, + { + "id": "113169", + "name": "Cairo", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.87751000", + "longitude": "-84.20214000" + }, + { + "id": "113197", + "name": "Calhoun", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.50259000", + "longitude": "-84.95105000" + }, + { + "id": "113203", + "name": "Calhoun County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.52920000", + "longitude": "-84.62451000" + }, + { + "id": "113268", + "name": "Camden County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.92249000", + "longitude": "-81.63639000" + }, + { + "id": "113283", + "name": "Camilla", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.23129000", + "longitude": "-84.21046000" + }, + { + "id": "113324", + "name": "Candler County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.40344000", + "longitude": "-82.07367000" + }, + { + "id": "113325", + "name": "Candler-McAfee", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.72672000", + "longitude": "-84.27246000" + }, + { + "id": "113339", + "name": "Canton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.23676000", + "longitude": "-84.49076000" + }, + { + "id": "113427", + "name": "Carnesville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.36983000", + "longitude": "-83.23516000" + }, + { + "id": "113451", + "name": "Carroll County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.58282000", + "longitude": "-85.07974000" + }, + { + "id": "113464", + "name": "Carrollton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.58011000", + "longitude": "-85.07661000" + }, + { + "id": "113488", + "name": "Cartersville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.16533000", + "longitude": "-84.80231000" + }, + { + "id": "113577", + "name": "Catoosa County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.90366000", + "longitude": "-85.13825000" + }, + { + "id": "113587", + "name": "Cave Spring", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10760000", + "longitude": "-85.33634000" + }, + { + "id": "113627", + "name": "Cedartown", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.01123000", + "longitude": "-85.25593000" + }, + { + "id": "113652", + "name": "Centerville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.63014000", + "longitude": "-83.68963000" + }, + { + "id": "113723", + "name": "Chamblee", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.89205000", + "longitude": "-84.29881000" + }, + { + "id": "113789", + "name": "Charlton County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.78172000", + "longitude": "-82.13769000" + }, + { + "id": "113801", + "name": "Chatham County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.97402000", + "longitude": "-81.09243000" + }, + { + "id": "113805", + "name": "Chatsworth", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.76591000", + "longitude": "-84.76994000" + }, + { + "id": "113809", + "name": "Chattahoochee County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.34697000", + "longitude": "-84.78705000" + }, + { + "id": "113810", + "name": "Chattahoochee Hills", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.55063000", + "longitude": "-84.76049000" + }, + { + "id": "113812", + "name": "Chattanooga Valley", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.93285000", + "longitude": "-85.35551000" + }, + { + "id": "113813", + "name": "Chattooga County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.47502000", + "longitude": "-85.34529000" + }, + { + "id": "113850", + "name": "Cherokee County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.24393000", + "longitude": "-84.47620000" + }, + { + "id": "113881", + "name": "Chester", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.39378000", + "longitude": "-83.15293000" + }, + { + "id": "113937", + "name": "Chickamauga", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.87119000", + "longitude": "-85.29079000" + }, + { + "id": "114135", + "name": "Clarke County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.95117000", + "longitude": "-83.36733000" + }, + { + "id": "114139", + "name": "Clarkesville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.61260000", + "longitude": "-83.52489000" + }, + { + "id": "114148", + "name": "Clarkston", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.80955000", + "longitude": "-84.23964000" + }, + { + "id": "114164", + "name": "Claxton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.16158000", + "longitude": "-81.90400000" + }, + { + "id": "114176", + "name": "Clay County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.62628000", + "longitude": "-84.98010000" + }, + { + "id": "114198", + "name": "Clayton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.87815000", + "longitude": "-83.40099000" + }, + { + "id": "114205", + "name": "Clayton County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.54189000", + "longitude": "-84.35769000" + }, + { + "id": "114242", + "name": "Cleveland", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.59704000", + "longitude": "-83.76324000" + }, + { + "id": "114265", + "name": "Clinch County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.91495000", + "longitude": "-82.70624000" + }, + { + "id": "114344", + "name": "Cobb County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.94147000", + "longitude": "-84.57667000" + }, + { + "id": "114351", + "name": "Cochran", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.38683000", + "longitude": "-83.35461000" + }, + { + "id": "114368", + "name": "Coffee County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.54927000", + "longitude": "-82.84920000" + }, + { + "id": "114413", + "name": "College Park", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.65344000", + "longitude": "-84.44937000" + }, + { + "id": "114459", + "name": "Colquitt", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.17129000", + "longitude": "-84.73325000" + }, + { + "id": "114460", + "name": "Colquitt County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.18839000", + "longitude": "-83.76885000" + }, + { + "id": "114479", + "name": "Columbia County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.54412000", + "longitude": "-82.26406000" + }, + { + "id": "114491", + "name": "Columbus", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.46098000", + "longitude": "-84.98771000" + }, + { + "id": "114519", + "name": "Comer", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.06372000", + "longitude": "-83.12543000" + }, + { + "id": "114522", + "name": "Commerce", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.20400000", + "longitude": "-83.45711000" + }, + { + "id": "114559", + "name": "Conley", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.64483000", + "longitude": "-84.32576000" + }, + { + "id": "114589", + "name": "Conyers", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.66761000", + "longitude": "-84.01769000" + }, + { + "id": "114591", + "name": "Cook County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.15399000", + "longitude": "-83.43047000" + }, + { + "id": "114635", + "name": "Cordele", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.96351000", + "longitude": "-83.78239000" + }, + { + "id": "114646", + "name": "Cornelia", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.51149000", + "longitude": "-83.52712000" + }, + { + "id": "114716", + "name": "Country Club Estates", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.21273000", + "longitude": "-81.46427000" + }, + { + "id": "114735", + "name": "Covington", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.59678000", + "longitude": "-83.86018000" + }, + { + "id": "114747", + "name": "Coweta County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.35346000", + "longitude": "-84.76337000" + }, + { + "id": "114775", + "name": "Crawford County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.71450000", + "longitude": "-83.98634000" + }, + { + "id": "114786", + "name": "Crawfordville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.55402000", + "longitude": "-82.89598000" + }, + { + "id": "114823", + "name": "Crisp County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.92293000", + "longitude": "-83.76810000" + }, + { + "id": "114923", + "name": "Cumming", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.20732000", + "longitude": "-84.14019000" + }, + { + "id": "114933", + "name": "Cusseta", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.30543000", + "longitude": "-84.77270000" + }, + { + "id": "114945", + "name": "Cuthbert", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.77127000", + "longitude": "-84.78937000" + }, + { + "id": "114963", + "name": "Dacula", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.98872000", + "longitude": "-83.89796000" + }, + { + "id": "114966", + "name": "Dade County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.85452000", + "longitude": "-85.50453000" + }, + { + "id": "114971", + "name": "Dahlonega", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.53259000", + "longitude": "-83.98491000" + }, + { + "id": "114988", + "name": "Dallas", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.92371000", + "longitude": "-84.84077000" + }, + { + "id": "115001", + "name": "Dalton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.76980000", + "longitude": "-84.97022000" + }, + { + "id": "115026", + "name": "Danielsville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.12428000", + "longitude": "-83.22126000" + }, + { + "id": "115045", + "name": "Darien", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.37023000", + "longitude": "-81.43399000" + }, + { + "id": "115077", + "name": "Davisboro", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.97904000", + "longitude": "-82.60791000" + }, + { + "id": "115081", + "name": "Dawson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.77382000", + "longitude": "-84.44800000" + }, + { + "id": "115083", + "name": "Dawson County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.44430000", + "longitude": "-84.17064000" + }, + { + "id": "115088", + "name": "Dawsonville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.42121000", + "longitude": "-84.11908000" + }, + { + "id": "115152", + "name": "Decatur", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.77483000", + "longitude": "-84.29631000" + }, + { + "id": "115159", + "name": "Decatur County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.87834000", + "longitude": "-84.57907000" + }, + { + "id": "115169", + "name": "Deenwood", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.22201000", + "longitude": "-82.38725000" + }, + { + "id": "115129", + "name": "DeKalb County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.77153000", + "longitude": "-84.22641000" + }, + { + "id": "115233", + "name": "Demorest", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.56510000", + "longitude": "-83.54517000" + }, + { + "id": "115372", + "name": "Dock Junction", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.20245000", + "longitude": "-81.51677000" + }, + { + "id": "115377", + "name": "Dodge County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.17218000", + "longitude": "-83.16840000" + }, + { + "id": "115395", + "name": "Donalsonville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.04046000", + "longitude": "-84.87909000" + }, + { + "id": "115404", + "name": "Dooly County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.15718000", + "longitude": "-83.79875000" + }, + { + "id": "115409", + "name": "Doraville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.89816000", + "longitude": "-84.28326000" + }, + { + "id": "115418", + "name": "Dougherty County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.53337000", + "longitude": "-84.21625000" + }, + { + "id": "115419", + "name": "Douglas", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.50881000", + "longitude": "-82.84987000" + }, + { + "id": "115425", + "name": "Douglas County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.70182000", + "longitude": "-84.76793000" + }, + { + "id": "115440", + "name": "Douglasville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.75150000", + "longitude": "-84.74771000" + }, + { + "id": "115480", + "name": "Druid Hills", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.78038000", + "longitude": "-84.33604000" + }, + { + "id": "115491", + "name": "Dublin", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.54044000", + "longitude": "-82.90375000" + }, + { + "id": "115512", + "name": "Duluth", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.00288000", + "longitude": "-84.14464000" + }, + { + "id": "115555", + "name": "Dunwoody", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.94621000", + "longitude": "-84.33465000" + }, + { + "id": "115623", + "name": "Early County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.32283000", + "longitude": "-84.90364000" + }, + { + "id": "115651", + "name": "East Dublin", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.54822000", + "longitude": "-82.87181000" + }, + { + "id": "115675", + "name": "East Griffin", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.24373000", + "longitude": "-84.22881000" + }, + { + "id": "115721", + "name": "East Newnan", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.35067000", + "longitude": "-84.77660000" + }, + { + "id": "115737", + "name": "East Point", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.67955000", + "longitude": "-84.43937000" + }, + { + "id": "115783", + "name": "Eastman", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.19767000", + "longitude": "-83.17765000" + }, + { + "id": "115806", + "name": "Eatonton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.32680000", + "longitude": "-83.38850000" + }, + { + "id": "115815", + "name": "Echols County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.71009000", + "longitude": "-82.89394000" + }, + { + "id": "115874", + "name": "Edison", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.55823000", + "longitude": "-84.73825000" + }, + { + "id": "115898", + "name": "Effingham County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.36731000", + "longitude": "-81.34134000" + }, + { + "id": "115942", + "name": "Elbert County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.11679000", + "longitude": "-82.84010000" + }, + { + "id": "115945", + "name": "Elberton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.11159000", + "longitude": "-82.86863000" + }, + { + "id": "116016", + "name": "Ellaville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.23821000", + "longitude": "-84.30908000" + }, + { + "id": "116025", + "name": "Ellijay", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.69481000", + "longitude": "-84.48215000" + }, + { + "id": "116088", + "name": "Emanuel County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.58976000", + "longitude": "-82.30171000" + }, + { + "id": "116093", + "name": "Emerson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.12704000", + "longitude": "-84.75549000" + }, + { + "id": "116139", + "name": "Enigma", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.41297000", + "longitude": "-83.32905000" + }, + { + "id": "116227", + "name": "Euharlee", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.14482000", + "longitude": "-84.93300000" + }, + { + "id": "116245", + "name": "Evans", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.53375000", + "longitude": "-82.13067000" + }, + { + "id": "116248", + "name": "Evans County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.15676000", + "longitude": "-81.88688000" + }, + { + "id": "116276", + "name": "Experiment", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.26539000", + "longitude": "-84.28159000" + }, + { + "id": "116285", + "name": "Fair Oaks", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.91649000", + "longitude": "-84.54465000" + }, + { + "id": "116293", + "name": "Fairburn", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.56706000", + "longitude": "-84.58104000" + }, + { + "id": "116347", + "name": "Fairview", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.94563000", + "longitude": "-85.28440000" + }, + { + "id": "116392", + "name": "Fannin County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.86411000", + "longitude": "-84.31985000" + }, + { + "id": "116444", + "name": "Fayette County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.41394000", + "longitude": "-84.49419000" + }, + { + "id": "116455", + "name": "Fayetteville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.44873000", + "longitude": "-84.45493000" + }, + { + "id": "116522", + "name": "Firing Range", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.43752000", + "longitude": "-82.69068000" + }, + { + "id": "116536", + "name": "Fitzgerald", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.71491000", + "longitude": "-83.25265000" + }, + { + "id": "116602", + "name": "Flowery Branch", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.18510000", + "longitude": "-83.92518000" + }, + { + "id": "116606", + "name": "Floyd County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.26316000", + "longitude": "-85.21428000" + }, + { + "id": "116621", + "name": "Folkston", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.83095000", + "longitude": "-82.01131000" + }, + { + "id": "116664", + "name": "Forest Park", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.62205000", + "longitude": "-84.36909000" + }, + { + "id": "116683", + "name": "Forsyth", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.03430000", + "longitude": "-83.93824000" + }, + { + "id": "116686", + "name": "Forsyth County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.22551000", + "longitude": "-84.12502000" + }, + { + "id": "116711", + "name": "Fort Gaines", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.60924000", + "longitude": "-85.04933000" + }, + { + "id": "116737", + "name": "Fort Oglethorpe", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.94896000", + "longitude": "-85.25690000" + }, + { + "id": "116751", + "name": "Fort Stewart", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.87217000", + "longitude": "-81.61001000" + }, + { + "id": "116757", + "name": "Fort Valley", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.55376000", + "longitude": "-83.88741000" + }, + { + "id": "116826", + "name": "Franklin", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.27762000", + "longitude": "-85.09800000" + }, + { + "id": "116846", + "name": "Franklin County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.37544000", + "longitude": "-83.22918000" + }, + { + "id": "116871", + "name": "Franklin Springs", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.28483000", + "longitude": "-83.14432000" + }, + { + "id": "116993", + "name": "Fulton County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.79025000", + "longitude": "-84.46702000" + }, + { + "id": "117015", + "name": "Gainesville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.29788000", + "longitude": "-83.82407000" + }, + { + "id": "117054", + "name": "Garden City", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.11437000", + "longitude": "-81.15400000" + }, + { + "id": "117156", + "name": "Georgetown", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.98326000", + "longitude": "-81.22733000" + }, + { + "id": "117187", + "name": "Gibson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.23348000", + "longitude": "-82.59541000" + }, + { + "id": "117222", + "name": "Gilmer County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.69121000", + "longitude": "-84.45559000" + }, + { + "id": "117243", + "name": "Glascock County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.22928000", + "longitude": "-82.61070000" + }, + { + "id": "117300", + "name": "Glennville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.93659000", + "longitude": "-81.92845000" + }, + { + "id": "117331", + "name": "Glynn County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.21324000", + "longitude": "-81.49370000" + }, + { + "id": "117396", + "name": "Gordon", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.88209000", + "longitude": "-83.33238000" + }, + { + "id": "117398", + "name": "Gordon County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.50336000", + "longitude": "-84.87575000" + }, + { + "id": "117426", + "name": "Grady County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.87467000", + "longitude": "-84.23443000" + }, + { + "id": "117532", + "name": "Grantville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.23484000", + "longitude": "-84.83577000" + }, + { + "id": "117550", + "name": "Gray", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.00958000", + "longitude": "-83.53378000" + }, + { + "id": "117560", + "name": "Grayson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.89427000", + "longitude": "-83.95574000" + }, + { + "id": "117633", + "name": "Greene County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.57878000", + "longitude": "-83.16666000" + }, + { + "id": "117665", + "name": "Greensboro", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.57568000", + "longitude": "-83.18238000" + }, + { + "id": "117684", + "name": "Greenville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.02874000", + "longitude": "-84.71298000" + }, + { + "id": "117723", + "name": "Gresham Park", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.70344000", + "longitude": "-84.31437000" + }, + { + "id": "117731", + "name": "Griffin", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.24678000", + "longitude": "-84.26409000" + }, + { + "id": "117765", + "name": "Grovetown", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.45042000", + "longitude": "-82.19818000" + }, + { + "id": "117799", + "name": "Gumlog", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.49177000", + "longitude": "-83.09654000" + }, + { + "id": "117819", + "name": "Guyton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.33630000", + "longitude": "-81.39150000" + }, + { + "id": "117821", + "name": "Gwinnett County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96173000", + "longitude": "-84.02363000" + }, + { + "id": "117824", + "name": "Habersham County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.63102000", + "longitude": "-83.53112000" + }, + { + "id": "117839", + "name": "Hahira", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.99131000", + "longitude": "-83.37266000" + }, + { + "id": "117864", + "name": "Hall County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.31689000", + "longitude": "-83.81968000" + }, + { + "id": "117888", + "name": "Hamilton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.75791000", + "longitude": "-84.87493000" + }, + { + "id": "117927", + "name": "Hampton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.38706000", + "longitude": "-84.28298000" + }, + { + "id": "117950", + "name": "Hancock County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.27043000", + "longitude": "-83.00069000" + }, + { + "id": "117963", + "name": "Hannahs Mill", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.93291000", + "longitude": "-84.34936000" + }, + { + "id": "117981", + "name": "Hapeville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.66011000", + "longitude": "-84.41020000" + }, + { + "id": "117985", + "name": "Haralson County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.79423000", + "longitude": "-85.21103000" + }, + { + "id": "118007", + "name": "Hardwick", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.06820000", + "longitude": "-83.22349000" + }, + { + "id": "118022", + "name": "Harlem", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.41458000", + "longitude": "-82.31262000" + }, + { + "id": "118044", + "name": "Harris County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.73600000", + "longitude": "-84.90899000" + }, + { + "id": "118082", + "name": "Hart County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.35090000", + "longitude": "-82.96425000" + }, + { + "id": "118107", + "name": "Hartwell", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.35288000", + "longitude": "-82.93209000" + }, + { + "id": "118167", + "name": "Hawkinsville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.28377000", + "longitude": "-83.47212000" + }, + { + "id": "118211", + "name": "Hazlehurst", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.86963000", + "longitude": "-82.59430000" + }, + { + "id": "118220", + "name": "Heard County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.29703000", + "longitude": "-85.12827000" + }, + { + "id": "118248", + "name": "Helena", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.07379000", + "longitude": "-82.91459000" + }, + { + "id": "118279", + "name": "Henderson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.00813000", + "longitude": "-81.25887000" + }, + { + "id": "118298", + "name": "Henry County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.45300000", + "longitude": "-84.15420000" + }, + { + "id": "118309", + "name": "Hephzibah", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.31403000", + "longitude": "-82.09679000" + }, + { + "id": "118356", + "name": "Hiawassee", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.94926000", + "longitude": "-83.75739000" + }, + { + "id": "118482", + "name": "Hinesville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.84688000", + "longitude": "-81.59595000" + }, + { + "id": "118490", + "name": "Hiram", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.87566000", + "longitude": "-84.76216000" + }, + { + "id": "118511", + "name": "Hogansville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.17318000", + "longitude": "-84.91494000" + }, + { + "id": "118561", + "name": "Holly Springs", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.17399000", + "longitude": "-84.50132000" + }, + { + "id": "118592", + "name": "Homer", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.33372000", + "longitude": "-83.49905000" + }, + { + "id": "118600", + "name": "Homerville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.03660000", + "longitude": "-82.74708000" + }, + { + "id": "118680", + "name": "Hoschton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.09650000", + "longitude": "-83.76128000" + }, + { + "id": "118703", + "name": "Houston County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.45901000", + "longitude": "-83.66624000" + }, + { + "id": "118918", + "name": "Indian Springs", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.95785000", + "longitude": "-85.16440000" + }, + { + "id": "118995", + "name": "Irondale", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.48067000", + "longitude": "-84.35881000" + }, + { + "id": "119013", + "name": "Irwin County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.60228000", + "longitude": "-83.27638000" + }, + { + "id": "119015", + "name": "Irwinton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.81126000", + "longitude": "-83.17265000" + }, + { + "id": "119030", + "name": "Isle of Hope", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.98188000", + "longitude": "-81.06094000" + }, + { + "id": "119061", + "name": "Jackson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.29457000", + "longitude": "-83.96602000" + }, + { + "id": "119078", + "name": "Jackson County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13388000", + "longitude": "-83.56635000" + }, + { + "id": "119142", + "name": "Jasper", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.46787000", + "longitude": "-84.42909000" + }, + { + "id": "119145", + "name": "Jasper County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.31643000", + "longitude": "-83.68809000" + }, + { + "id": "119160", + "name": "Jeff Davis County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.80560000", + "longitude": "-82.63694000" + }, + { + "id": "119162", + "name": "Jefferson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.11705000", + "longitude": "-83.57239000" + }, + { + "id": "119178", + "name": "Jefferson County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.05484000", + "longitude": "-82.41815000" + }, + { + "id": "119207", + "name": "Jeffersonville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.68765000", + "longitude": "-83.34656000" + }, + { + "id": "119215", + "name": "Jenkins County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.79247000", + "longitude": "-81.96353000" + }, + { + "id": "119239", + "name": "Jesup", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.60785000", + "longitude": "-81.88634000" + }, + { + "id": "119252", + "name": "Johns Creek", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.02893000", + "longitude": "-84.19858000" + }, + { + "id": "119261", + "name": "Johnson County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.70146000", + "longitude": "-82.66008000" + }, + { + "id": "119292", + "name": "Jones County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.02513000", + "longitude": "-83.56052000" + }, + { + "id": "119300", + "name": "Jonesboro", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.52150000", + "longitude": "-84.35381000" + }, + { + "id": "119471", + "name": "Kennesaw", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.02343000", + "longitude": "-84.61549000" + }, + { + "id": "119597", + "name": "Kings Bay Base", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.79836000", + "longitude": "-81.56589000" + }, + { + "id": "119615", + "name": "Kingsland", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.79996000", + "longitude": "-81.68983000" + }, + { + "id": "119693", + "name": "Knoxville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.72431000", + "longitude": "-83.99769000" + }, + { + "id": "119799", + "name": "LaFayette", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.70480000", + "longitude": "-85.28190000" + }, + { + "id": "119801", + "name": "LaGrange", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.03929000", + "longitude": "-85.03133000" + }, + { + "id": "119880", + "name": "Lake City", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.60650000", + "longitude": "-84.33520000" + }, + { + "id": "120013", + "name": "Lakeland", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.04104000", + "longitude": "-83.07515000" + }, + { + "id": "120037", + "name": "Lakeview", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.97924000", + "longitude": "-85.25884000" + }, + { + "id": "120042", + "name": "Lakeview Estates", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.70678000", + "longitude": "-84.03158000" + }, + { + "id": "120062", + "name": "Lamar County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.07654000", + "longitude": "-84.13946000" + }, + { + "id": "120119", + "name": "Lanier County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.03789000", + "longitude": "-83.06265000" + }, + { + "id": "120208", + "name": "Laurens County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.46366000", + "longitude": "-82.92224000" + }, + { + "id": "120220", + "name": "Lavonia", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.43594000", + "longitude": "-83.10682000" + }, + { + "id": "120243", + "name": "Lawrenceville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.95621000", + "longitude": "-83.98796000" + }, + { + "id": "120309", + "name": "Lee County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.77951000", + "longitude": "-84.14113000" + }, + { + "id": "120325", + "name": "Leesburg", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.73212000", + "longitude": "-84.17074000" + }, + { + "id": "120438", + "name": "Lexington", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.86984000", + "longitude": "-83.11182000" + }, + { + "id": "120471", + "name": "Liberty County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.80723000", + "longitude": "-81.45626000" + }, + { + "id": "120485", + "name": "Lilburn", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.89010000", + "longitude": "-84.14297000" + }, + { + "id": "120517", + "name": "Lincoln County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.79366000", + "longitude": "-82.45121000" + }, + { + "id": "120551", + "name": "Lincolnton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.79235000", + "longitude": "-82.47902000" + }, + { + "id": "120558", + "name": "Lindale", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.18676000", + "longitude": "-85.17467000" + }, + { + "id": "120610", + "name": "Lithia Springs", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.79400000", + "longitude": "-84.66049000" + }, + { + "id": "120611", + "name": "Lithonia", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.71233000", + "longitude": "-84.10519000" + }, + { + "id": "120686", + "name": "Locust Grove", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.34595000", + "longitude": "-84.10908000" + }, + { + "id": "120708", + "name": "Loganville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.83900000", + "longitude": "-83.90074000" + }, + { + "id": "120741", + "name": "Long County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.75258000", + "longitude": "-81.74577000" + }, + { + "id": "120765", + "name": "Lookout Mountain", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.97758000", + "longitude": "-85.35774000" + }, + { + "id": "120811", + "name": "Louisville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.00154000", + "longitude": "-82.41124000" + }, + { + "id": "120821", + "name": "Lovejoy", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.43622000", + "longitude": "-84.31437000" + }, + { + "id": "120847", + "name": "Lowndes County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.83386000", + "longitude": "-83.26771000" + }, + { + "id": "120871", + "name": "Ludowici", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.70799000", + "longitude": "-81.74234000" + }, + { + "id": "120875", + "name": "Lula", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.38760000", + "longitude": "-83.66629000" + }, + { + "id": "120878", + "name": "Lumber City", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.92935000", + "longitude": "-82.67958000" + }, + { + "id": "120882", + "name": "Lumpkin", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.05099000", + "longitude": "-84.79909000" + }, + { + "id": "120883", + "name": "Lumpkin County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.57219000", + "longitude": "-84.00265000" + }, + { + "id": "120940", + "name": "Lyons", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.20435000", + "longitude": "-82.32179000" + }, + { + "id": "120949", + "name": "Mableton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.81872000", + "longitude": "-84.58243000" + }, + { + "id": "120964", + "name": "Macon", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.84069000", + "longitude": "-83.63240000" + }, + { + "id": "120968", + "name": "Macon County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.35839000", + "longitude": "-84.04248000" + }, + { + "id": "120986", + "name": "Madison", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.59568000", + "longitude": "-83.46794000" + }, + { + "id": "121005", + "name": "Madison County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.12778000", + "longitude": "-83.20904000" + }, + { + "id": "121089", + "name": "Manchester", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.85985000", + "longitude": "-84.61993000" + }, + { + "id": "121216", + "name": "Marietta", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.95260000", + "longitude": "-84.54993000" + }, + { + "id": "121250", + "name": "Marion County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.35338000", + "longitude": "-84.52464000" + }, + { + "id": "121324", + "name": "Marshallville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.45626000", + "longitude": "-83.94019000" + }, + { + "id": "121344", + "name": "Martinez", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.51736000", + "longitude": "-82.07567000" + }, + { + "id": "121448", + "name": "Maysville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.25288000", + "longitude": "-83.56155000" + }, + { + "id": "121467", + "name": "McCaysville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.98619000", + "longitude": "-84.37131000" + }, + { + "id": "121493", + "name": "McDonough", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.44734000", + "longitude": "-84.14686000" + }, + { + "id": "121497", + "name": "McDuffie County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.48285000", + "longitude": "-82.48137000" + }, + { + "id": "121513", + "name": "McIntosh County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.48381000", + "longitude": "-81.37557000" + }, + { + "id": "121550", + "name": "McRae", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.06795000", + "longitude": "-82.90070000" + }, + { + "id": "121617", + "name": "Meigs", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.07241000", + "longitude": "-84.08907000" + }, + { + "id": "121699", + "name": "Meriwether County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.04066000", + "longitude": "-84.68831000" + }, + { + "id": "121737", + "name": "Metter", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.39712000", + "longitude": "-82.06012000" + }, + { + "id": "121813", + "name": "Midway", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.80577000", + "longitude": "-81.43066000" + }, + { + "id": "121877", + "name": "Milledgeville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.08014000", + "longitude": "-83.23210000" + }, + { + "id": "121878", + "name": "Millen", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.80405000", + "longitude": "-81.94928000" + }, + { + "id": "121881", + "name": "Miller County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.16399000", + "longitude": "-84.73072000" + }, + { + "id": "121920", + "name": "Milton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.13216000", + "longitude": "-84.30067000" + }, + { + "id": "121999", + "name": "Mitchell County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.22532000", + "longitude": "-84.19431000" + }, + { + "id": "122057", + "name": "Monroe", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.79484000", + "longitude": "-83.71323000" + }, + { + "id": "122070", + "name": "Monroe County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.01408000", + "longitude": "-83.91872000" + }, + { + "id": "122127", + "name": "Montezuma", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.30516000", + "longitude": "-84.02741000" + }, + { + "id": "122131", + "name": "Montgomery", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.94049000", + "longitude": "-81.12205000" + }, + { + "id": "122141", + "name": "Montgomery County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.17336000", + "longitude": "-82.53482000" + }, + { + "id": "122160", + "name": "Monticello", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.30485000", + "longitude": "-83.68323000" + }, + { + "id": "122233", + "name": "Morgan", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.53767000", + "longitude": "-84.59936000" + }, + { + "id": "122237", + "name": "Morgan County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.59083000", + "longitude": "-83.49238000" + }, + { + "id": "122289", + "name": "Morrow", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.58317000", + "longitude": "-84.33937000" + }, + { + "id": "122316", + "name": "Moultrie", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.17991000", + "longitude": "-83.78906000" + }, + { + "id": "122329", + "name": "Mount Airy", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.51871000", + "longitude": "-83.50073000" + }, + { + "id": "122395", + "name": "Mount Vernon", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.17851000", + "longitude": "-82.59458000" + }, + { + "id": "122408", + "name": "Mount Zion", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.63428000", + "longitude": "-85.18717000" + }, + { + "id": "122411", + "name": "Mountain City", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.91815000", + "longitude": "-83.38544000" + }, + { + "id": "122424", + "name": "Mountain Park", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.84427000", + "longitude": "-84.12936000" + }, + { + "id": "122493", + "name": "Murray County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.78845000", + "longitude": "-84.74809000" + }, + { + "id": "122505", + "name": "Muscogee County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.50996000", + "longitude": "-84.87704000" + }, + { + "id": "122536", + "name": "Nahunta", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.20439000", + "longitude": "-81.98123000" + }, + { + "id": "122575", + "name": "Nashville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.20742000", + "longitude": "-83.25015000" + }, + { + "id": "122624", + "name": "Nelson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.38204000", + "longitude": "-84.37103000" + }, + { + "id": "122837", + "name": "Newnan", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.38067000", + "longitude": "-84.79966000" + }, + { + "id": "122859", + "name": "Newton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.31296000", + "longitude": "-84.33574000" + }, + { + "id": "122869", + "name": "Newton County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.55505000", + "longitude": "-83.85019000" + }, + { + "id": "122890", + "name": "Nicholls", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.51742000", + "longitude": "-82.63486000" + }, + { + "id": "122892", + "name": "Nicholson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.11400000", + "longitude": "-83.43155000" + }, + { + "id": "122940", + "name": "Norcross", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.94121000", + "longitude": "-84.21353000" + }, + { + "id": "122966", + "name": "North Atlanta", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.86510000", + "longitude": "-84.33659000" + }, + { + "id": "123014", + "name": "North Decatur", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.79038000", + "longitude": "-84.30603000" + }, + { + "id": "123015", + "name": "North Druid Hills", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.81677000", + "longitude": "-84.31326000" + }, + { + "id": "123308", + "name": "Oakwood", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.22760000", + "longitude": "-83.88435000" + }, + { + "id": "123346", + "name": "Ocilla", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.59447000", + "longitude": "-83.25130000" + }, + { + "id": "123348", + "name": "Oconee County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.83494000", + "longitude": "-83.43705000" + }, + { + "id": "123378", + "name": "Oglethorpe", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.29377000", + "longitude": "-84.06102000" + }, + { + "id": "123379", + "name": "Oglethorpe County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88065000", + "longitude": "-83.08070000" + }, + { + "id": "123465", + "name": "Omega", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.34102000", + "longitude": "-83.59350000" + }, + { + "id": "123676", + "name": "Oxford", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.61900000", + "longitude": "-83.86741000" + }, + { + "id": "123765", + "name": "Palmetto", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.51789000", + "longitude": "-84.66965000" + }, + { + "id": "123808", + "name": "Panthersville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.70733000", + "longitude": "-84.27187000" + }, + { + "id": "123922", + "name": "Paulding County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.92055000", + "longitude": "-84.86729000" + }, + { + "id": "123956", + "name": "Peach County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.56878000", + "longitude": "-83.82688000" + }, + { + "id": "123959", + "name": "Peachtree City", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.39678000", + "longitude": "-84.59576000" + }, + { + "id": "123960", + "name": "Peachtree Corners", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.97010000", + "longitude": "-84.22159000" + }, + { + "id": "123973", + "name": "Pearson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.29770000", + "longitude": "-82.85237000" + }, + { + "id": "123989", + "name": "Pelham", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.12802000", + "longitude": "-84.15304000" + }, + { + "id": "124004", + "name": "Pembroke", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.13634000", + "longitude": "-81.62348000" + }, + { + "id": "124068", + "name": "Perry", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.45821000", + "longitude": "-83.73157000" + }, + { + "id": "124157", + "name": "Pickens County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.46432000", + "longitude": "-84.46564000" + }, + { + "id": "124171", + "name": "Pierce County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.35876000", + "longitude": "-82.21274000" + }, + { + "id": "124187", + "name": "Pike County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.09227000", + "longitude": "-84.38923000" + }, + { + "id": "124238", + "name": "Pine Mountain", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.86485000", + "longitude": "-84.85410000" + }, + { + "id": "124442", + "name": "Polk County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.00178000", + "longitude": "-85.18815000" + }, + { + "id": "124479", + "name": "Pooler", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.11548000", + "longitude": "-81.24706000" + }, + { + "id": "124542", + "name": "Port Wentworth", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.14909000", + "longitude": "-81.16317000" + }, + { + "id": "124555", + "name": "Porterdale", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.57511000", + "longitude": "-83.89380000" + }, + { + "id": "124608", + "name": "Powder Springs", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.85955000", + "longitude": "-84.68382000" + }, + { + "id": "124653", + "name": "Preston", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.06599000", + "longitude": "-84.53742000" + }, + { + "id": "124738", + "name": "Pulaski County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.23230000", + "longitude": "-83.47596000" + }, + { + "id": "124762", + "name": "Putnam County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.32177000", + "longitude": "-83.37284000" + }, + { + "id": "124770", + "name": "Putney", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.47018000", + "longitude": "-84.11768000" + }, + { + "id": "124805", + "name": "Quitman", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.78492000", + "longitude": "-83.55988000" + }, + { + "id": "124808", + "name": "Quitman County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.86733000", + "longitude": "-85.01878000" + }, + { + "id": "124810", + "name": "Rabun County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.88168000", + "longitude": "-83.40214000" + }, + { + "id": "124874", + "name": "Randolph County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.76262000", + "longitude": "-84.75419000" + }, + { + "id": "124892", + "name": "Raoul", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.44954000", + "longitude": "-83.59434000" + }, + { + "id": "124915", + "name": "Ray City", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.07464000", + "longitude": "-83.19932000" + }, + { + "id": "124964", + "name": "Redan", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74538000", + "longitude": "-84.13158000" + }, + { + "id": "124992", + "name": "Reed Creek", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.44594000", + "longitude": "-82.92487000" + }, + { + "id": "125007", + "name": "Reidsville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.08686000", + "longitude": "-82.11790000" + }, + { + "id": "125013", + "name": "Remerton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.84409000", + "longitude": "-83.31043000" + }, + { + "id": "125039", + "name": "Reynolds", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.55987000", + "longitude": "-84.09630000" + }, + { + "id": "125067", + "name": "Richland", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.08793000", + "longitude": "-84.66742000" + }, + { + "id": "125098", + "name": "Richmond County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.35963000", + "longitude": "-82.07355000" + }, + { + "id": "125104", + "name": "Richmond Hill", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.93827000", + "longitude": "-81.30344000" + }, + { + "id": "125139", + "name": "Rincon", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.29603000", + "longitude": "-81.23539000" + }, + { + "id": "125141", + "name": "Ringgold", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.91591000", + "longitude": "-85.10912000" + }, + { + "id": "125192", + "name": "Riverdale", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.57261000", + "longitude": "-84.41326000" + }, + { + "id": "125252", + "name": "Robins Air Force Base", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.60911000", + "longitude": "-83.58444000" + }, + { + "id": "125258", + "name": "Rochelle", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.95101000", + "longitude": "-83.45627000" + }, + { + "id": "125297", + "name": "Rockdale County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.65424000", + "longitude": "-84.02661000" + }, + { + "id": "125314", + "name": "Rockmart", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.00260000", + "longitude": "-85.04161000" + }, + { + "id": "125375", + "name": "Rome", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.25704000", + "longitude": "-85.16467000" + }, + { + "id": "125456", + "name": "Rossville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.98313000", + "longitude": "-85.28607000" + }, + { + "id": "125462", + "name": "Roswell", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.02316000", + "longitude": "-84.36159000" + }, + { + "id": "125500", + "name": "Royston", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.28705000", + "longitude": "-83.11015000" + }, + { + "id": "125532", + "name": "Russell", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.97872000", + "longitude": "-83.70017000" + }, + { + "id": "125560", + "name": "Rydal", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.33537000", + "longitude": "-84.71549000" + }, + { + "id": "125714", + "name": "Saint Simon Mills", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.17079000", + "longitude": "-81.40732000" + }, + { + "id": "125715", + "name": "Saint Simons Island", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.15051000", + "longitude": "-81.36954000" + }, + { + "id": "125865", + "name": "Sandersville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.98154000", + "longitude": "-82.81014000" + }, + { + "id": "125884", + "name": "Sandy Springs", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.92427000", + "longitude": "-84.37854000" + }, + { + "id": "125947", + "name": "Sardis", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.79652000", + "longitude": "-84.63881000" + }, + { + "id": "125974", + "name": "Savannah", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.08354000", + "longitude": "-81.09983000" + }, + { + "id": "126009", + "name": "Schley County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.26169000", + "longitude": "-84.31472000" + }, + { + "id": "126055", + "name": "Scottdale", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.78983000", + "longitude": "-84.26409000" + }, + { + "id": "126068", + "name": "Screven County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.75059000", + "longitude": "-81.61193000" + }, + { + "id": "126148", + "name": "Seminole County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.93878000", + "longitude": "-84.86887000" + }, + { + "id": "126162", + "name": "Senoia", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.30234000", + "longitude": "-84.55382000" + }, + { + "id": "126218", + "name": "Shannon", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.33676000", + "longitude": "-85.07134000" + }, + { + "id": "126479", + "name": "Skidaway Island", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.93494000", + "longitude": "-81.04705000" + }, + { + "id": "126535", + "name": "Smyrna", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.88399000", + "longitude": "-84.51438000" + }, + { + "id": "126541", + "name": "Snellville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.85733000", + "longitude": "-84.01991000" + }, + { + "id": "126555", + "name": "Social Circle", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.65623000", + "longitude": "-83.71823000" + }, + { + "id": "126602", + "name": "Soperton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.37712000", + "longitude": "-82.59236000" + }, + { + "id": "126795", + "name": "Spalding County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.26087000", + "longitude": "-84.28416000" + }, + { + "id": "126803", + "name": "Sparks", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.16686000", + "longitude": "-83.43738000" + }, + { + "id": "126807", + "name": "Sparta", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.27570000", + "longitude": "-82.97626000" + }, + { + "id": "126891", + "name": "Springfield", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.37241000", + "longitude": "-81.31150000" + }, + { + "id": "126929", + "name": "St. Marys", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.73051000", + "longitude": "-81.54649000" + }, + { + "id": "126996", + "name": "Statenville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.70327000", + "longitude": "-83.02764000" + }, + { + "id": "126997", + "name": "Statesboro", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.44879000", + "longitude": "-81.78317000" + }, + { + "id": "126999", + "name": "Statham", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96511000", + "longitude": "-83.59655000" + }, + { + "id": "127021", + "name": "Stephens County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.55394000", + "longitude": "-83.29343000" + }, + { + "id": "127050", + "name": "Stewart County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.07846000", + "longitude": "-84.83520000" + }, + { + "id": "127067", + "name": "Stockbridge", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.54428000", + "longitude": "-84.23381000" + }, + { + "id": "127083", + "name": "Stone Mountain", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.80816000", + "longitude": "-84.17020000" + }, + { + "id": "127087", + "name": "Stonecrest", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.70849000", + "longitude": "-84.13485000" + }, + { + "id": "127172", + "name": "Sugar Hill", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10649000", + "longitude": "-84.03352000" + }, + { + "id": "127209", + "name": "Summerville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.48064000", + "longitude": "-85.34773000" + }, + { + "id": "127230", + "name": "Sumter County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.03997000", + "longitude": "-84.19704000" + }, + { + "id": "127257", + "name": "Sunnyside", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.23938000", + "longitude": "-82.34207000" + }, + { + "id": "127317", + "name": "Suwanee", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.05149000", + "longitude": "-84.07130000" + }, + { + "id": "127320", + "name": "Swainsboro", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.59739000", + "longitude": "-82.33374000" + }, + { + "id": "127360", + "name": "Sylvania", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.75044000", + "longitude": "-81.63678000" + }, + { + "id": "127361", + "name": "Sylvester", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.53092000", + "longitude": "-83.83693000" + }, + { + "id": "127383", + "name": "Talbot County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.69949000", + "longitude": "-84.53301000" + }, + { + "id": "127385", + "name": "Talbotton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.67764000", + "longitude": "-84.53937000" + }, + { + "id": "127387", + "name": "Taliaferro County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.56609000", + "longitude": "-82.87876000" + }, + { + "id": "127393", + "name": "Tallapoosa", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74455000", + "longitude": "-85.28801000" + }, + { + "id": "127439", + "name": "Tattnall County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.04575000", + "longitude": "-82.05818000" + }, + { + "id": "127452", + "name": "Taylor County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.55546000", + "longitude": "-84.25046000" + }, + { + "id": "127486", + "name": "Telfair County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.92980000", + "longitude": "-82.93899000" + }, + { + "id": "127497", + "name": "Temple", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.73705000", + "longitude": "-85.03244000" + }, + { + "id": "127511", + "name": "Tennille", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.93599000", + "longitude": "-82.81153000" + }, + { + "id": "127527", + "name": "Terrell County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.77688000", + "longitude": "-84.43692000" + }, + { + "id": "127579", + "name": "Thomas County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.86368000", + "longitude": "-83.91931000" + }, + { + "id": "127583", + "name": "Thomaston", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.88819000", + "longitude": "-84.32659000" + }, + { + "id": "127588", + "name": "Thomasville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.83658000", + "longitude": "-83.97878000" + }, + { + "id": "127596", + "name": "Thomson", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.47069000", + "longitude": "-82.50457000" + }, + { + "id": "127627", + "name": "Thunderbolt", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.03354000", + "longitude": "-81.04983000" + }, + { + "id": "127641", + "name": "Tift County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.45744000", + "longitude": "-83.52659000" + }, + { + "id": "127642", + "name": "Tifton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.45046000", + "longitude": "-83.50850000" + }, + { + "id": "127691", + "name": "Toccoa", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.57732000", + "longitude": "-83.33239000" + }, + { + "id": "127729", + "name": "Toombs County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.12172000", + "longitude": "-82.33129000" + }, + { + "id": "127763", + "name": "Towns County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.91665000", + "longitude": "-83.73728000" + }, + { + "id": "127802", + "name": "Trenton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.87202000", + "longitude": "-85.50913000" + }, + { + "id": "127812", + "name": "Treutlen County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.40388000", + "longitude": "-82.56728000" + }, + { + "id": "127830", + "name": "Trion", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.54397000", + "longitude": "-85.31051000" + }, + { + "id": "127836", + "name": "Troup County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.03351000", + "longitude": "-85.02834000" + }, + { + "id": "127870", + "name": "Tucker", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.85455000", + "longitude": "-84.21714000" + }, + { + "id": "127903", + "name": "Turner County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.71638000", + "longitude": "-83.62409000" + }, + { + "id": "127922", + "name": "Twiggs County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.66720000", + "longitude": "-83.42708000" + }, + { + "id": "127923", + "name": "Twin City", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.58294000", + "longitude": "-82.15512000" + }, + { + "id": "127937", + "name": "Tybee Island", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.00022000", + "longitude": "-80.84567000" + }, + { + "id": "127949", + "name": "Tyrone", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.47123000", + "longitude": "-84.59715000" + }, + { + "id": "127964", + "name": "Unadilla", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.26155000", + "longitude": "-83.73657000" + }, + { + "id": "127980", + "name": "Union City", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.58706000", + "longitude": "-84.54243000" + }, + { + "id": "127990", + "name": "Union County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.83401000", + "longitude": "-83.99076000" + }, + { + "id": "128010", + "name": "Union Point", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.61568000", + "longitude": "-83.07460000" + }, + { + "id": "128017", + "name": "Unionville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.43491000", + "longitude": "-83.50961000" + }, + { + "id": "128054", + "name": "Upson County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.88127000", + "longitude": "-84.29934000" + }, + { + "id": "128085", + "name": "Valdosta", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.83334000", + "longitude": "-83.28032000" + }, + { + "id": "128155", + "name": "Varnell", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.90119000", + "longitude": "-84.97383000" + }, + { + "id": "128227", + "name": "Vidalia", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.21769000", + "longitude": "-82.41346000" + }, + { + "id": "128230", + "name": "Vienna", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.09156000", + "longitude": "-83.79545000" + }, + { + "id": "128245", + "name": "Villa Rica", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.73205000", + "longitude": "-84.91911000" + }, + { + "id": "128276", + "name": "Vinings", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.86483000", + "longitude": "-84.46437000" + }, + { + "id": "128325", + "name": "Wadley", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.86682000", + "longitude": "-82.40402000" + }, + { + "id": "128387", + "name": "Walker County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.73566000", + "longitude": "-85.30098000" + }, + { + "id": "128417", + "name": "Walnut Grove", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.74261000", + "longitude": "-83.85240000" + }, + { + "id": "128433", + "name": "Walthourville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.77410000", + "longitude": "-81.63261000" + }, + { + "id": "128438", + "name": "Walton County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.78156000", + "longitude": "-83.73385000" + }, + { + "id": "128463", + "name": "Ware County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.05363000", + "longitude": "-82.42368000" + }, + { + "id": "128474", + "name": "Warner Robins", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.61574000", + "longitude": "-83.62664000" + }, + { + "id": "128486", + "name": "Warren County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.40896000", + "longitude": "-82.67676000" + }, + { + "id": "128504", + "name": "Warrenton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.40708000", + "longitude": "-82.66208000" + }, + { + "id": "128539", + "name": "Washington", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.73679000", + "longitude": "-82.73931000" + }, + { + "id": "128555", + "name": "Washington County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.96954000", + "longitude": "-82.79590000" + }, + { + "id": "128635", + "name": "Watkinsville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.86290000", + "longitude": "-83.40877000" + }, + { + "id": "128676", + "name": "Waycross", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.21368000", + "longitude": "-82.35570000" + }, + { + "id": "128689", + "name": "Wayne County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.55143000", + "longitude": "-81.91676000" + }, + { + "id": "128705", + "name": "Waynesboro", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.08987000", + "longitude": "-82.01567000" + }, + { + "id": "128736", + "name": "Webster County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.04665000", + "longitude": "-84.55105000" + }, + { + "id": "128958", + "name": "West Point", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.87791000", + "longitude": "-85.18327000" + }, + { + "id": "129001", + "name": "West Warrenton", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.41217000", + "longitude": "-82.67517000" + }, + { + "id": "129116", + "name": "Wheeler County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.11707000", + "longitude": "-82.72459000" + }, + { + "id": "129135", + "name": "White County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.64636000", + "longitude": "-83.74711000" + }, + { + "id": "129178", + "name": "Whitemarsh Island", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.02882000", + "longitude": "-81.01678000" + }, + { + "id": "129195", + "name": "Whitfield County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.80561000", + "longitude": "-84.96722000" + }, + { + "id": "129229", + "name": "Wilcox County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.97290000", + "longitude": "-83.43236000" + }, + { + "id": "129244", + "name": "Wilkes County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.78195000", + "longitude": "-82.74323000" + }, + { + "id": "129250", + "name": "Wilkinson County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.80241000", + "longitude": "-83.17125000" + }, + { + "id": "129254", + "name": "Willacoochee", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.34076000", + "longitude": "-83.04598000" + }, + { + "id": "129325", + "name": "Wilmington Island", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.00355000", + "longitude": "-80.97372000" + }, + { + "id": "129369", + "name": "Winder", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.99261000", + "longitude": "-83.72017000" + }, + { + "id": "129447", + "name": "Winterville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.96706000", + "longitude": "-83.27821000" + }, + { + "id": "129494", + "name": "Woodbine", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "30.96396000", + "longitude": "-81.72416000" + }, + { + "id": "129561", + "name": "Woodstock", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.10149000", + "longitude": "-84.51938000" + }, + { + "id": "129592", + "name": "Worth County", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "31.55151000", + "longitude": "-83.85088000" + }, + { + "id": "129603", + "name": "Wrens", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.20765000", + "longitude": "-82.39179000" + }, + { + "id": "129614", + "name": "Wrightsville", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "32.72933000", + "longitude": "-82.71986000" + }, + { + "id": "129715", + "name": "Young Harris", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "34.93315000", + "longitude": "-83.84712000" + }, + { + "id": "129742", + "name": "Zebulon", + "state_id": 1455, + "state_code": "GA", + "country_id": 233, + "country_code": "US", + "latitude": "33.10235000", + "longitude": "-84.34270000" + }, + { + "id": "111068", + "name": "Ainaloa", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.52694000", + "longitude": "-154.99306000" + }, + { + "id": "111300", + "name": "Anahola", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "22.14226000", + "longitude": "-159.31388000" + }, + { + "id": "129764", + "name": "‘Aiea", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.38222000", + "longitude": "-157.93361000" + }, + { + "id": "129770", + "name": "‘Ōma‘o", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.92581000", + "longitude": "-159.48818000" + }, + { + "id": "129769", + "name": "‘Āhuimanu", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.44472000", + "longitude": "-157.83778000" + }, + { + "id": "129765", + "name": "‘Ele‘ele", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.90738000", + "longitude": "-159.58322000" + }, + { + "id": "129766", + "name": "‘Ewa Beach", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.31556000", + "longitude": "-158.00722000" + }, + { + "id": "129767", + "name": "‘Ewa Gentry", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.33999000", + "longitude": "-158.03039000" + }, + { + "id": "129768", + "name": "‘Ewa Villages", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.34127000", + "longitude": "-158.03970000" + }, + { + "id": "113378", + "name": "Captain Cook", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.49694000", + "longitude": "-155.92167000" + }, + { + "id": "115693", + "name": "East Honolulu", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.28906000", + "longitude": "-157.71734000" + }, + { + "id": "116481", + "name": "Fern Acres", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.51222000", + "longitude": "-155.08028000" + }, + { + "id": "117841", + "name": "Haiku-Pauwela", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.92187000", + "longitude": "-156.30508000" + }, + { + "id": "117854", + "name": "Hale‘iwa", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.59284000", + "longitude": "-158.10339000" + }, + { + "id": "117941", + "name": "Hana", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.75806000", + "longitude": "-155.99028000" + }, + { + "id": "117943", + "name": "Hanamā‘ulu", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.99773000", + "longitude": "-159.35918000" + }, + { + "id": "117944", + "name": "Hanapēpē", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.90733000", + "longitude": "-159.59440000" + }, + { + "id": "117945", + "name": "Hanapēpē Heights", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.91633000", + "longitude": "-159.58995000" + }, + { + "id": "118144", + "name": "Hau‘ula", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.60760000", + "longitude": "-157.90868000" + }, + { + "id": "118157", + "name": "Hawaii County", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.60240000", + "longitude": "-155.52289000" + }, + { + "id": "118158", + "name": "Hawaiian Acres", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.53806000", + "longitude": "-155.05222000" + }, + { + "id": "118159", + "name": "Hawaiian Beaches", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.54306000", + "longitude": "-154.91583000" + }, + { + "id": "118161", + "name": "Hawaiian Ocean View", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.06861000", + "longitude": "-155.76500000" + }, + { + "id": "118162", + "name": "Hawaiian Paradise Park", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.59333000", + "longitude": "-154.97306000" + }, + { + "id": "118859", + "name": "Hālawa", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.37944000", + "longitude": "-157.92167000" + }, + { + "id": "118860", + "name": "Hālawa Heights", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.37848000", + "longitude": "-157.91388000" + }, + { + "id": "118861", + "name": "Hāwī", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.24122000", + "longitude": "-155.83351000" + }, + { + "id": "118862", + "name": "Hōlualoa", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.61979000", + "longitude": "-155.94831000" + }, + { + "id": "118353", + "name": "He‘eia", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.43054000", + "longitude": "-157.81611000" + }, + { + "id": "118360", + "name": "Hickam Field", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.33967000", + "longitude": "-157.96018000" + }, + { + "id": "118472", + "name": "Hilo", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.72991000", + "longitude": "-155.09073000" + }, + { + "id": "118613", + "name": "Honalo", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.54639000", + "longitude": "-155.93194000" + }, + { + "id": "118614", + "name": "Honaunau-Napoopoo", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.45627000", + "longitude": "-155.86466000" + }, + { + "id": "118622", + "name": "Honoka‘a", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.07931000", + "longitude": "-155.46691000" + }, + { + "id": "118623", + "name": "Honolulu", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.30694000", + "longitude": "-157.85833000" + }, + { + "id": "118624", + "name": "Honolulu County", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.45543000", + "longitude": "-157.96138000" + }, + { + "id": "119001", + "name": "Iroquois Point", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.32776000", + "longitude": "-157.98301000" + }, + { + "id": "119348", + "name": "Kaanapali Landing", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.93090000", + "longitude": "-156.68778000" + }, + { + "id": "119404", + "name": "Ka‘a‘awa", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.55445000", + "longitude": "-157.85103000" + }, + { + "id": "119352", + "name": "Kahalu‘u", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.45759000", + "longitude": "-157.84431000" + }, + { + "id": "119351", + "name": "Kahaluu-Keauhou", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.57181000", + "longitude": "-155.96172000" + }, + { + "id": "119354", + "name": "Kahuku", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.68048000", + "longitude": "-157.95237000" + }, + { + "id": "119355", + "name": "Kahului", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.88953000", + "longitude": "-156.47432000" + }, + { + "id": "119357", + "name": "Kailua", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.40241000", + "longitude": "-157.74054000" + }, + { + "id": "119358", + "name": "Kailua-Kona", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.64016000", + "longitude": "-155.99912000" + }, + { + "id": "119362", + "name": "Kalaoa", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.72861000", + "longitude": "-155.98167000" + }, + { + "id": "119363", + "name": "Kalawao County", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.18569000", + "longitude": "-156.95944000" + }, + { + "id": "119369", + "name": "Kalāheo", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.92416000", + "longitude": "-159.52686000" + }, + { + "id": "119379", + "name": "Kaneohe", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.39994000", + "longitude": "-157.79895000" + }, + { + "id": "119385", + "name": "Kapaau", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.23389000", + "longitude": "-155.80194000" + }, + { + "id": "119386", + "name": "Kapa‘a", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "22.07521000", + "longitude": "-159.31895000" + }, + { + "id": "119388", + "name": "Kapolei", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.33555000", + "longitude": "-158.05820000" + }, + { + "id": "119396", + "name": "Kauai County", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "22.01108000", + "longitude": "-159.70544000" + }, + { + "id": "119400", + "name": "Kaunakakai", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.09363000", + "longitude": "-157.02613000" + }, + { + "id": "119730", + "name": "Kā‘anapali", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.92881000", + "longitude": "-156.69422000" + }, + { + "id": "119732", + "name": "Kīhei", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.76462000", + "longitude": "-156.44578000" + }, + { + "id": "119733", + "name": "Kīlauea", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "22.21208000", + "longitude": "-159.41342000" + }, + { + "id": "119731", + "name": "Kēōkea", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.70711000", + "longitude": "-156.35446000" + }, + { + "id": "119415", + "name": "Kea‘au", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.62265000", + "longitude": "-155.03744000" + }, + { + "id": "119405", + "name": "Kealakekua", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.52083000", + "longitude": "-155.92250000" + }, + { + "id": "119427", + "name": "Kekaha", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.96686000", + "longitude": "-159.71186000" + }, + { + "id": "119697", + "name": "Ko Olina", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.33993000", + "longitude": "-158.12562000" + }, + { + "id": "119703", + "name": "Koloa", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.90690000", + "longitude": "-159.46994000" + }, + { + "id": "119721", + "name": "Kualapu‘u", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.15306000", + "longitude": "-157.03677000" + }, + { + "id": "119722", + "name": "Kula", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.79094000", + "longitude": "-156.32695000" + }, + { + "id": "119727", + "name": "Kurtistown", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.60361000", + "longitude": "-155.05722000" + }, + { + "id": "119860", + "name": "Lahaina", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.87429000", + "longitude": "-156.67663000" + }, + { + "id": "120078", + "name": "Lanai City", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.82757000", + "longitude": "-156.92399000" + }, + { + "id": "120221", + "name": "Lawai", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.92159000", + "longitude": "-159.50376000" + }, + { + "id": "120947", + "name": "Lā‘ie", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.64547000", + "longitude": "-157.92250000" + }, + { + "id": "120339", + "name": "Leilani Estates", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.46972000", + "longitude": "-154.91778000" + }, + { + "id": "120483", + "name": "Lihue", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.98121000", + "longitude": "-159.37210000" + }, + { + "id": "121054", + "name": "Makakilo City", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.34694000", + "longitude": "-158.08583000" + }, + { + "id": "121055", + "name": "Makawao", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.85694000", + "longitude": "-156.31306000" + }, + { + "id": "121226", + "name": "Marine Corps Base Hawaii - MCBH", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.44336000", + "longitude": "-157.74981000" + }, + { + "id": "121419", + "name": "Maui County", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.86774000", + "longitude": "-156.61706000" + }, + { + "id": "121422", + "name": "Maunawili", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.37278000", + "longitude": "-157.77056000" + }, + { + "id": "122530", + "name": "Mā‘ili", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.41629000", + "longitude": "-158.17531000" + }, + { + "id": "122528", + "name": "Mākaha", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.46627000", + "longitude": "-158.21037000" + }, + { + "id": "122529", + "name": "Mākaha Valley", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.47583000", + "longitude": "-158.19918000" + }, + { + "id": "121861", + "name": "Mililani Town", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.45000000", + "longitude": "-158.00111000" + }, + { + "id": "122025", + "name": "Mokulēia", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.57967000", + "longitude": "-158.15313000" + }, + { + "id": "122432", + "name": "Mountain View", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.55583000", + "longitude": "-155.10806000" + }, + { + "id": "122539", + "name": "Nanawale Estates", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.50611000", + "longitude": "-154.91194000" + }, + { + "id": "122551", + "name": "Napili-Honokowai", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.97533000", + "longitude": "-156.67826000" + }, + { + "id": "123224", + "name": "Nānākuli", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.39362000", + "longitude": "-158.15429000" + }, + { + "id": "123334", + "name": "Ocean Pointe", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.31066000", + "longitude": "-158.03638000" + }, + { + "id": "123540", + "name": "Orchidlands Estates", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.56084000", + "longitude": "-155.01527000" + }, + { + "id": "123725", + "name": "Paia", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.90333000", + "longitude": "-156.36944000" + }, + { + "id": "124773", + "name": "Pāhala", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.20297000", + "longitude": "-155.47860000" + }, + { + "id": "124774", + "name": "Pāpa‘ikou", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.78718000", + "longitude": "-155.09326000" + }, + { + "id": "123965", + "name": "Pearl City", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.39734000", + "longitude": "-157.97516000" + }, + { + "id": "124052", + "name": "Pepeekeo", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.83361000", + "longitude": "-155.10722000" + }, + { + "id": "124696", + "name": "Princeville", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "22.21758000", + "longitude": "-159.47888000" + }, + { + "id": "124731", + "name": "Puhi", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.96888000", + "longitude": "-159.40012000" + }, + { + "id": "124732", + "name": "Pukalani", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.83667000", + "longitude": "-156.33667000" + }, + { + "id": "124747", + "name": "Punalu‘u", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.57045000", + "longitude": "-157.87557000" + }, + { + "id": "124752", + "name": "Pupukea", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.65456000", + "longitude": "-158.06065000" + }, + { + "id": "125489", + "name": "Royal Kunia", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.39392000", + "longitude": "-158.02670000" + }, + { + "id": "126014", + "name": "Schofield Barracks", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.49837000", + "longitude": "-158.06515000" + }, + { + "id": "128249", + "name": "Village Park", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.39806000", + "longitude": "-158.03028000" + }, + { + "id": "128299", + "name": "Volcano", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.44276000", + "longitude": "-155.23398000" + }, + { + "id": "128331", + "name": "Wahiawā", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.50279000", + "longitude": "-158.02464000" + }, + { + "id": "128336", + "name": "Waialua", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.57688000", + "longitude": "-158.13154000" + }, + { + "id": "128337", + "name": "Waianae", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.43785000", + "longitude": "-158.18555000" + }, + { + "id": "128338", + "name": "Waihee-Waiehu", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.93022000", + "longitude": "-156.50458000" + }, + { + "id": "128339", + "name": "Waikapū", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.85806000", + "longitude": "-156.50694000" + }, + { + "id": "128340", + "name": "Waikoloa", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.93942000", + "longitude": "-155.78931000" + }, + { + "id": "128341", + "name": "Wailea", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.68973000", + "longitude": "-156.44190000" + }, + { + "id": "128342", + "name": "Wailua", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "22.05271000", + "longitude": "-159.33781000" + }, + { + "id": "128343", + "name": "Wailua Homesteads", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "22.07244000", + "longitude": "-159.37677000" + }, + { + "id": "128344", + "name": "Wailuku", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.89133000", + "longitude": "-156.50604000" + }, + { + "id": "128345", + "name": "Waimalu", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.40472000", + "longitude": "-157.94333000" + }, + { + "id": "128346", + "name": "Waimanalo", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.34614000", + "longitude": "-157.72380000" + }, + { + "id": "128348", + "name": "Waimānalo Beach", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.33407000", + "longitude": "-157.70003000" + }, + { + "id": "128347", + "name": "Waimea", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "20.02323000", + "longitude": "-155.67288000" + }, + { + "id": "128349", + "name": "Wainaku", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "19.74472000", + "longitude": "-155.09500000" + }, + { + "id": "128350", + "name": "Waipahu", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.38667000", + "longitude": "-158.00917000" + }, + { + "id": "128352", + "name": "Waipi‘o Acres", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.46485000", + "longitude": "-158.01331000" + }, + { + "id": "128351", + "name": "Waipio", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.41823000", + "longitude": "-157.99906000" + }, + { + "id": "129207", + "name": "Whitmore Village", + "state_id": 1411, + "state_code": "HI", + "country_id": 233, + "country_code": "US", + "latitude": "21.51429000", + "longitude": "-158.02464000" + }, + { + "id": "110978", + "name": "Aberdeen", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.94408000", + "longitude": "-112.83833000" + }, + { + "id": "111007", + "name": "Ada County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.45112000", + "longitude": "-116.24109000" + }, + { + "id": "111025", + "name": "Adams County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.88965000", + "longitude": "-116.45387000" + }, + { + "id": "111272", + "name": "American Falls", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.78602000", + "longitude": "-112.85444000" + }, + { + "id": "111293", + "name": "Ammon", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.46964000", + "longitude": "-111.96664000" + }, + { + "id": "111435", + "name": "Arco", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.63657000", + "longitude": "-113.30028000" + }, + { + "id": "111546", + "name": "Ashton", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.07158000", + "longitude": "-111.44829000" + }, + { + "id": "111804", + "name": "Bannock County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.66851000", + "longitude": "-112.22463000" + }, + { + "id": "111977", + "name": "Bear Lake County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.28479000", + "longitude": "-111.32965000" + }, + { + "id": "112116", + "name": "Bellevue", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.46352000", + "longitude": "-114.26060000" + }, + { + "id": "112167", + "name": "Benewah County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.21755000", + "longitude": "-116.65883000" + }, + { + "id": "112349", + "name": "Bingham County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.21652000", + "longitude": "-112.39805000" + }, + { + "id": "112385", + "name": "Blackfoot", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.19047000", + "longitude": "-112.34498000" + }, + { + "id": "112407", + "name": "Blaine County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.41233000", + "longitude": "-113.98040000" + }, + { + "id": "112508", + "name": "Boise", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.61350000", + "longitude": "-116.20345000" + }, + { + "id": "112510", + "name": "Boise County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.98913000", + "longitude": "-115.73024000" + }, + { + "id": "112542", + "name": "Bonner County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "48.29975000", + "longitude": "-116.60097000" + }, + { + "id": "112545", + "name": "Bonners Ferry", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "48.69133000", + "longitude": "-116.31631000" + }, + { + "id": "112546", + "name": "Bonneville County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.38773000", + "longitude": "-111.61493000" + }, + { + "id": "112609", + "name": "Boundary County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "48.76702000", + "longitude": "-116.46288000" + }, + { + "id": "113023", + "name": "Buhl", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.59907000", + "longitude": "-114.75949000" + }, + { + "id": "113063", + "name": "Burley", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.53574000", + "longitude": "-113.79279000" + }, + { + "id": "113126", + "name": "Butte County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.72287000", + "longitude": "-113.17202000" + }, + { + "id": "113182", + "name": "Caldwell", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.66294000", + "longitude": "-116.68736000" + }, + { + "id": "113244", + "name": "Camas County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.46325000", + "longitude": "-114.80585000" + }, + { + "id": "113356", + "name": "Canyon County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.62513000", + "longitude": "-116.70929000" + }, + { + "id": "113395", + "name": "Caribou County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.77051000", + "longitude": "-111.56224000" + }, + { + "id": "113514", + "name": "Cascade", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.51628000", + "longitude": "-116.04180000" + }, + { + "id": "113537", + "name": "Cassia County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.28387000", + "longitude": "-113.60037000" + }, + { + "id": "113715", + "name": "Challis", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.50464000", + "longitude": "-114.23173000" + }, + { + "id": "114004", + "name": "Chubbuck", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.92075000", + "longitude": "-112.46609000" + }, + { + "id": "114130", + "name": "Clark County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.28398000", + "longitude": "-112.35135000" + }, + { + "id": "114227", + "name": "Clearwater County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.67370000", + "longitude": "-115.65686000" + }, + { + "id": "114366", + "name": "Coeur d'Alene", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.67768000", + "longitude": "-116.78047000" + }, + { + "id": "114711", + "name": "Council", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.72989000", + "longitude": "-116.43820000" + }, + { + "id": "114938", + "name": "Custer County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.24142000", + "longitude": "-114.28180000" + }, + { + "id": "115004", + "name": "Dalton Gardens", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.72963000", + "longitude": "-116.77019000" + }, + { + "id": "115478", + "name": "Driggs", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.72325000", + "longitude": "-111.11133000" + }, + { + "id": "115497", + "name": "Dubois", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.17630000", + "longitude": "-112.23082000" + }, + { + "id": "115598", + "name": "Eagle", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.69544000", + "longitude": "-116.35401000" + }, + { + "id": "116058", + "name": "Elmore County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.35390000", + "longitude": "-115.46918000" + }, + { + "id": "116105", + "name": "Emmett", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.87350000", + "longitude": "-116.49930000" + }, + { + "id": "116317", + "name": "Fairfield", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.34657000", + "longitude": "-114.79173000" + }, + { + "id": "116507", + "name": "Filer", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.57019000", + "longitude": "-114.60782000" + }, + { + "id": "116714", + "name": "Fort Hall", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.03325000", + "longitude": "-112.43831000" + }, + { + "id": "116864", + "name": "Franklin County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.18117000", + "longitude": "-111.81323000" + }, + { + "id": "116927", + "name": "Fremont County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.22879000", + "longitude": "-111.48202000" + }, + { + "id": "116972", + "name": "Fruitland", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.00766000", + "longitude": "-116.91655000" + }, + { + "id": "117061", + "name": "Garden City", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.62211000", + "longitude": "-116.23817000" + }, + { + "id": "117133", + "name": "Gem County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.06169000", + "longitude": "-116.39723000" + }, + { + "id": "117299", + "name": "Glenns Ferry", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.95490000", + "longitude": "-115.30090000" + }, + { + "id": "117381", + "name": "Gooding", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.93879000", + "longitude": "-114.71311000" + }, + { + "id": "117382", + "name": "Gooding County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.97090000", + "longitude": "-114.81152000" + }, + { + "id": "117490", + "name": "Grangeville", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "45.92655000", + "longitude": "-116.12237000" + }, + { + "id": "117842", + "name": "Hailey", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.51963000", + "longitude": "-114.31532000" + }, + { + "id": "117976", + "name": "Hansen", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.53068000", + "longitude": "-114.30101000" + }, + { + "id": "118179", + "name": "Hayden", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.76602000", + "longitude": "-116.78658000" + }, + { + "id": "118351", + "name": "Heyburn", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.55852000", + "longitude": "-113.76390000" + }, + { + "id": "118378", + "name": "Hidden Spring", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.72216000", + "longitude": "-116.25093000" + }, + { + "id": "118589", + "name": "Homedale", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.61766000", + "longitude": "-116.93376000" + }, + { + "id": "118869", + "name": "Idaho City", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.82850000", + "longitude": "-115.83455000" + }, + { + "id": "118870", + "name": "Idaho County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "45.84420000", + "longitude": "-115.46745000" + }, + { + "id": "118871", + "name": "Idaho Falls", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.46658000", + "longitude": "-112.03414000" + }, + { + "id": "118969", + "name": "Iona", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.52630000", + "longitude": "-111.93302000" + }, + { + "id": "119195", + "name": "Jefferson County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.82014000", + "longitude": "-112.31128000" + }, + { + "id": "119229", + "name": "Jerome", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.72407000", + "longitude": "-114.51865000" + }, + { + "id": "119230", + "name": "Jerome County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.68990000", + "longitude": "-114.26403000" + }, + { + "id": "119371", + "name": "Kamiah", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.22712000", + "longitude": "-116.02931000" + }, + { + "id": "119429", + "name": "Kellogg", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.53826000", + "longitude": "-116.11933000" + }, + { + "id": "119525", + "name": "Ketchum", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.68074000", + "longitude": "-114.36366000" + }, + { + "id": "119571", + "name": "Kimberly", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.53380000", + "longitude": "-114.36476000" + }, + { + "id": "119707", + "name": "Kootenai County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.67456000", + "longitude": "-116.70001000" + }, + { + "id": "119725", + "name": "Kuna", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.49183000", + "longitude": "-116.42012000" + }, + { + "id": "120137", + "name": "Lapwai", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.40489000", + "longitude": "-116.80487000" + }, + { + "id": "120167", + "name": "Latah County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.81613000", + "longitude": "-116.71168000" + }, + { + "id": "120356", + "name": "Lemhi County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.94331000", + "longitude": "-113.93324000" + }, + { + "id": "120416", + "name": "Lewis County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.23702000", + "longitude": "-116.42625000" + }, + { + "id": "120428", + "name": "Lewiston", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.41655000", + "longitude": "-117.01766000" + }, + { + "id": "120430", + "name": "Lewiston Orchards", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.38044000", + "longitude": "-116.97543000" + }, + { + "id": "120511", + "name": "Lincoln", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.51297000", + "longitude": "-111.96441000" + }, + { + "id": "120533", + "name": "Lincoln County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.00241000", + "longitude": "-114.13831000" + }, + { + "id": "121018", + "name": "Madison County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.78419000", + "longitude": "-111.65934000" + }, + { + "id": "121057", + "name": "Malad City", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.19159000", + "longitude": "-112.25080000" + }, + { + "id": "121330", + "name": "Marsing", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.54544000", + "longitude": "-116.81320000" + }, + { + "id": "121465", + "name": "McCall", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.91101000", + "longitude": "-116.09874000" + }, + { + "id": "121695", + "name": "Meridian", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.61211000", + "longitude": "-116.39151000" + }, + { + "id": "121784", + "name": "Middleton", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.70683000", + "longitude": "-116.62014000" + }, + { + "id": "121947", + "name": "Minidoka County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.85440000", + "longitude": "-113.63752000" + }, + { + "id": "122178", + "name": "Montpelier", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.32215000", + "longitude": "-111.29770000" + }, + { + "id": "122228", + "name": "Moreland", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.22269000", + "longitude": "-112.44248000" + }, + { + "id": "122300", + "name": "Moscow", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.73239000", + "longitude": "-117.00017000" + }, + { + "id": "122417", + "name": "Mountain Home", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.13295000", + "longitude": "-115.69120000" + }, + { + "id": "122487", + "name": "Murphy", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.21822000", + "longitude": "-116.55234000" + }, + { + "id": "122538", + "name": "Nampa", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.54072000", + "longitude": "-116.56346000" + }, + { + "id": "122763", + "name": "New Plymouth", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.96989000", + "longitude": "-116.81904000" + }, + { + "id": "122878", + "name": "Nez Perce County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.32676000", + "longitude": "-116.75024000" + }, + { + "id": "122879", + "name": "Nezperce", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.23489000", + "longitude": "-116.24070000" + }, + { + "id": "123477", + "name": "Oneida County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.19490000", + "longitude": "-112.53962000" + }, + { + "id": "123572", + "name": "Orofino", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "46.47935000", + "longitude": "-116.25514000" + }, + { + "id": "123596", + "name": "Osburn", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.50604000", + "longitude": "-115.99933000" + }, + { + "id": "123674", + "name": "Owyhee County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.58153000", + "longitude": "-116.16998000" + }, + { + "id": "123836", + "name": "Paris", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.22715000", + "longitude": "-111.40104000" + }, + { + "id": "123885", + "name": "Parma", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.78516000", + "longitude": "-116.94321000" + }, + { + "id": "123920", + "name": "Paul", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.60796000", + "longitude": "-113.78335000" + }, + { + "id": "123944", + "name": "Payette", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.07822000", + "longitude": "-116.93377000" + }, + { + "id": "123945", + "name": "Payette County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.00674000", + "longitude": "-116.76084000" + }, + { + "id": "124253", + "name": "Pinehurst", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.53881000", + "longitude": "-116.23739000" + }, + { + "id": "124397", + "name": "Plummer", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.33518000", + "longitude": "-116.88851000" + }, + { + "id": "124418", + "name": "Pocatello", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.87130000", + "longitude": "-112.44553000" + }, + { + "id": "124469", + "name": "Ponderay", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "48.30548000", + "longitude": "-116.53380000" + }, + { + "id": "124577", + "name": "Post Falls", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.71796000", + "longitude": "-116.95159000" + }, + { + "id": "124615", + "name": "Power County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.69369000", + "longitude": "-112.84067000" + }, + { + "id": "124657", + "name": "Preston", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.09631000", + "longitude": "-111.87662000" + }, + { + "id": "124669", + "name": "Priest River", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "48.18097000", + "longitude": "-116.91157000" + }, + { + "id": "124900", + "name": "Rathdrum", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.81240000", + "longitude": "-116.89659000" + }, + { + "id": "125038", + "name": "Rexburg", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.82602000", + "longitude": "-111.78969000" + }, + { + "id": "125137", + "name": "Rigby", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.67241000", + "longitude": "-111.91497000" + }, + { + "id": "125515", + "name": "Rupert", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.61908000", + "longitude": "-113.67723000" + }, + { + "id": "125602", + "name": "Saint Anthony", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.96630000", + "longitude": "-111.68218000" + }, + { + "id": "125685", + "name": "Saint Maries", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.31435000", + "longitude": "-116.56267000" + }, + { + "id": "125763", + "name": "Salmon", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "45.17575000", + "longitude": "-113.89590000" + }, + { + "id": "125871", + "name": "Sandpoint", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "48.27659000", + "longitude": "-116.55325000" + }, + { + "id": "126294", + "name": "Shelley", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.38130000", + "longitude": "-112.12331000" + }, + { + "id": "126379", + "name": "Shoshone", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.93602000", + "longitude": "-114.40588000" + }, + { + "id": "126380", + "name": "Shoshone County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.35167000", + "longitude": "-115.89103000" + }, + { + "id": "126562", + "name": "Soda Springs", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.65437000", + "longitude": "-111.60467000" + }, + { + "id": "126839", + "name": "Spirit Lake", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.96629000", + "longitude": "-116.86853000" + }, + { + "id": "126978", + "name": "Star", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.69211000", + "longitude": "-116.49346000" + }, + { + "id": "127169", + "name": "Sugar City", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.87297000", + "longitude": "-111.74830000" + }, + { + "id": "127241", + "name": "Sun Valley", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.69713000", + "longitude": "-114.35172000" + }, + { + "id": "127537", + "name": "Teton County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.75946000", + "longitude": "-111.20770000" + }, + { + "id": "127924", + "name": "Twin Falls", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.56297000", + "longitude": "-114.46087000" + }, + { + "id": "127925", + "name": "Twin Falls County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.35598000", + "longitude": "-114.66716000" + }, + { + "id": "127939", + "name": "Tyhee", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.95158000", + "longitude": "-112.46637000" + }, + { + "id": "127953", + "name": "Ucon", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.59630000", + "longitude": "-111.96386000" + }, + { + "id": "128104", + "name": "Valley County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.76670000", + "longitude": "-115.56613000" + }, + { + "id": "128218", + "name": "Victor", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.60270000", + "longitude": "-111.11133000" + }, + { + "id": "128398", + "name": "Wallace", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "47.47409000", + "longitude": "-115.92794000" + }, + { + "id": "128579", + "name": "Washington County", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.45243000", + "longitude": "-116.78477000" + }, + { + "id": "128761", + "name": "Weiser", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "44.25100000", + "longitude": "-116.96933000" + }, + { + "id": "128800", + "name": "Wendell", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "42.77574000", + "longitude": "-114.70422000" + }, + { + "id": "129233", + "name": "Wilder", + "state_id": 1460, + "state_code": "ID", + "country_id": 233, + "country_code": "US", + "latitude": "43.67655000", + "longitude": "-116.91182000" + }, + { + "id": "110985", + "name": "Abingdon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.80448000", + "longitude": "-90.40180000" + }, + { + "id": "111017", + "name": "Adams County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.98789000", + "longitude": "-91.18849000" + }, + { + "id": "111035", + "name": "Addison", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.93170000", + "longitude": "-87.98896000" + }, + { + "id": "111114", + "name": "Albany Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.96836000", + "longitude": "-87.72339000" + }, + { + "id": "111117", + "name": "Albers", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.54338000", + "longitude": "-89.61231000" + }, + { + "id": "111123", + "name": "Albion", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.37755000", + "longitude": "-88.05615000" + }, + { + "id": "111142", + "name": "Aledo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.19976000", + "longitude": "-90.74931000" + }, + { + "id": "111147", + "name": "Alexander County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.19160000", + "longitude": "-89.33764000" + }, + { + "id": "111167", + "name": "Algonquin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.16558000", + "longitude": "-88.29425000" + }, + { + "id": "111216", + "name": "Alorton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.58977000", + "longitude": "-90.12011000" + }, + { + "id": "111227", + "name": "Alsip", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.66892000", + "longitude": "-87.73866000" + }, + { + "id": "111232", + "name": "Altamont", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.06199000", + "longitude": "-88.74811000" + }, + { + "id": "111242", + "name": "Alton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.89060000", + "longitude": "-90.18428000" + }, + { + "id": "111265", + "name": "Amboy", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.71420000", + "longitude": "-89.32871000" + }, + { + "id": "111308", + "name": "Andalusia", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.43920000", + "longitude": "-90.71764000" + }, + { + "id": "111346", + "name": "Anna", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.46033000", + "longitude": "-89.24703000" + }, + { + "id": "111372", + "name": "Antioch", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.47724000", + "longitude": "-88.09564000" + }, + { + "id": "111436", + "name": "Arcola", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.68476000", + "longitude": "-88.30644000" + }, + { + "id": "111472", + "name": "Arlington Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.08836000", + "longitude": "-87.98063000" + }, + { + "id": "111498", + "name": "Arthur", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.71476000", + "longitude": "-88.47228000" + }, + { + "id": "111515", + "name": "Ashburn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.74753000", + "longitude": "-87.71116000" + }, + { + "id": "111528", + "name": "Ashland", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.88783000", + "longitude": "-90.00789000" + }, + { + "id": "111557", + "name": "Assumption", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.52032000", + "longitude": "-89.04897000" + }, + { + "id": "111561", + "name": "Astoria", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.22754000", + "longitude": "-90.35957000" + }, + { + "id": "111574", + "name": "Athens", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.96088000", + "longitude": "-89.72399000" + }, + { + "id": "111592", + "name": "Atlanta", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.25948000", + "longitude": "-89.23342000" + }, + { + "id": "111614", + "name": "Atwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.79948000", + "longitude": "-88.46228000" + }, + { + "id": "111621", + "name": "Auburn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.59172000", + "longitude": "-89.74649000" + }, + { + "id": "111633", + "name": "Auburn Gresham", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.74179000", + "longitude": "-87.65322000" + }, + { + "id": "111659", + "name": "Aurora", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.76058000", + "longitude": "-88.32007000" + }, + { + "id": "111686", + "name": "Aviston", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.60672000", + "longitude": "-89.60759000" + }, + { + "id": "111700", + "name": "Avondale", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.93892000", + "longitude": "-87.71117000" + }, + { + "id": "111805", + "name": "Bannockburn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.19336000", + "longitude": "-87.86646000" + }, + { + "id": "111846", + "name": "Barrington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.15391000", + "longitude": "-88.13619000" + }, + { + "id": "111849", + "name": "Barrington Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.14475000", + "longitude": "-88.15563000" + }, + { + "id": "111854", + "name": "Barry", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.69421000", + "longitude": "-91.03902000" + }, + { + "id": "111863", + "name": "Bartlett", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.99503000", + "longitude": "-88.18563000" + }, + { + "id": "111871", + "name": "Bartonville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.65032000", + "longitude": "-89.65205000" + }, + { + "id": "111887", + "name": "Batavia", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.85003000", + "longitude": "-88.31257000" + }, + { + "id": "111966", + "name": "Beach Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.42224000", + "longitude": "-87.85730000" + }, + { + "id": "111980", + "name": "Beardstown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.01755000", + "longitude": "-90.42429000" + }, + { + "id": "112011", + "name": "Beckemeyer", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.60560000", + "longitude": "-89.43592000" + }, + { + "id": "112039", + "name": "Beecher", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.34059000", + "longitude": "-87.62143000" + }, + { + "id": "112103", + "name": "Belleville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.52005000", + "longitude": "-89.98399000" + }, + { + "id": "112110", + "name": "Bellevue", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.68448000", + "longitude": "-89.68010000" + }, + { + "id": "112131", + "name": "Bellwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88142000", + "longitude": "-87.88312000" + }, + { + "id": "112143", + "name": "Belmont Cragin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.93170000", + "longitude": "-87.76867000" + }, + { + "id": "112155", + "name": "Belvidere", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.26391000", + "longitude": "-88.84427000" + }, + { + "id": "112159", + "name": "Bement", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.92198000", + "longitude": "-88.57201000" + }, + { + "id": "112172", + "name": "Benld", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.09282000", + "longitude": "-89.80398000" + }, + { + "id": "112180", + "name": "Bensenville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.95503000", + "longitude": "-87.94007000" + }, + { + "id": "112193", + "name": "Benton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.99672000", + "longitude": "-88.92007000" + }, + { + "id": "112222", + "name": "Berkeley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88892000", + "longitude": "-87.90340000" + }, + { + "id": "112264", + "name": "Berwyn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.85059000", + "longitude": "-87.79367000" + }, + { + "id": "112271", + "name": "Bethalto", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.90921000", + "longitude": "-90.04066000" + }, + { + "id": "112272", + "name": "Bethany", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.64559000", + "longitude": "-88.73813000" + }, + { + "id": "112332", + "name": "Big Rock", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.76392000", + "longitude": "-88.54702000" + }, + { + "id": "112447", + "name": "Bloomingdale", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.95753000", + "longitude": "-88.08090000" + }, + { + "id": "112451", + "name": "Bloomington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.48420000", + "longitude": "-88.99369000" + }, + { + "id": "112469", + "name": "Blue Island", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.65726000", + "longitude": "-87.68005000" + }, + { + "id": "112471", + "name": "Blue Mound", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.70115000", + "longitude": "-89.12314000" + }, + { + "id": "112516", + "name": "Bolingbrook", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.69864000", + "longitude": "-88.06840000" + }, + { + "id": "112531", + "name": "Bond County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.88682000", + "longitude": "-89.43555000" + }, + { + "id": "112559", + "name": "Boone County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.32308000", + "longitude": "-88.82336000" + }, + { + "id": "112605", + "name": "Boulder Hill", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.71253000", + "longitude": "-88.33618000" + }, + { + "id": "112615", + "name": "Bourbonnais", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.15376000", + "longitude": "-87.88754000" + }, + { + "id": "112672", + "name": "Bradley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.14198000", + "longitude": "-87.86115000" + }, + { + "id": "112680", + "name": "Braidwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.26503000", + "longitude": "-88.21228000" + }, + { + "id": "112717", + "name": "Breese", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.61060000", + "longitude": "-89.52703000" + }, + { + "id": "112761", + "name": "Bridgeport", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.83809000", + "longitude": "-87.65116000" + }, + { + "id": "112771", + "name": "Bridgeview", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.75003000", + "longitude": "-87.80422000" + }, + { + "id": "112787", + "name": "Brighton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.03977000", + "longitude": "-90.14066000" + }, + { + "id": "112793", + "name": "Brighton Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.81892000", + "longitude": "-87.69894000" + }, + { + "id": "112827", + "name": "Broadview", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.86392000", + "longitude": "-87.85339000" + }, + { + "id": "112854", + "name": "Brookfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.82392000", + "longitude": "-87.85173000" + }, + { + "id": "112907", + "name": "Brown County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.96181000", + "longitude": "-90.75034000" + }, + { + "id": "113021", + "name": "Buffalo Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.15141000", + "longitude": "-87.95979000" + }, + { + "id": "113029", + "name": "Bull Valley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.32058000", + "longitude": "-88.35509000" + }, + { + "id": "113040", + "name": "Bunker Hill", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.04282000", + "longitude": "-89.95177000" + }, + { + "id": "113046", + "name": "Burbank", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.73392000", + "longitude": "-87.77950000" + }, + { + "id": "113049", + "name": "Bureau County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.40415000", + "longitude": "-89.52868000" + }, + { + "id": "113083", + "name": "Burnham", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.63892000", + "longitude": "-87.55671000" + }, + { + "id": "113093", + "name": "Burr Ridge", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.74892000", + "longitude": "-87.91839000" + }, + { + "id": "113102", + "name": "Bushnell", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.55282000", + "longitude": "-90.50624000" + }, + { + "id": "113144", + "name": "Byron", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.12697000", + "longitude": "-89.25566000" + }, + { + "id": "113168", + "name": "Cahokia", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.57088000", + "longitude": "-90.19011000" + }, + { + "id": "113170", + "name": "Cairo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.00533000", + "longitude": "-89.17646000" + }, + { + "id": "113204", + "name": "Calhoun County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.16930000", + "longitude": "-90.66753000" + }, + { + "id": "113230", + "name": "Calumet City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.61559000", + "longitude": "-87.52949000" + }, + { + "id": "113232", + "name": "Calumet Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.66281000", + "longitude": "-87.66060000" + }, + { + "id": "113245", + "name": "Cambria", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.78144000", + "longitude": "-89.11925000" + }, + { + "id": "113251", + "name": "Cambridge", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.30365000", + "longitude": "-90.19290000" + }, + { + "id": "113292", + "name": "Camp Point", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.03921000", + "longitude": "-91.06930000" + }, + { + "id": "113343", + "name": "Canton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.55809000", + "longitude": "-90.03512000" + }, + { + "id": "113377", + "name": "Capron", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.39974000", + "longitude": "-88.74038000" + }, + { + "id": "113381", + "name": "Carbon Cliff", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.49476000", + "longitude": "-90.39068000" + }, + { + "id": "113388", + "name": "Carbondale", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.72727000", + "longitude": "-89.21675000" + }, + { + "id": "113400", + "name": "Carlinville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.27977000", + "longitude": "-89.88177000" + }, + { + "id": "113414", + "name": "Carlyle", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.61033000", + "longitude": "-89.37258000" + }, + { + "id": "113422", + "name": "Carmi", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.09088000", + "longitude": "-88.15865000" + }, + { + "id": "113434", + "name": "Carol Stream", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.91253000", + "longitude": "-88.13479000" + }, + { + "id": "113439", + "name": "Carpentersville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.12114000", + "longitude": "-88.25786000" + }, + { + "id": "113444", + "name": "Carrier Mills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.68422000", + "longitude": "-88.63283000" + }, + { + "id": "113459", + "name": "Carroll County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.06861000", + "longitude": "-89.93433000" + }, + { + "id": "113465", + "name": "Carrollton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.30227000", + "longitude": "-90.40706000" + }, + { + "id": "113489", + "name": "Carterville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.76005000", + "longitude": "-89.07730000" + }, + { + "id": "113496", + "name": "Carthage", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.41643000", + "longitude": "-91.13625000" + }, + { + "id": "113506", + "name": "Cary", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.21197000", + "longitude": "-88.23814000" + }, + { + "id": "113519", + "name": "Casey", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.29920000", + "longitude": "-87.99253000" + }, + { + "id": "113521", + "name": "Caseyville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.63672000", + "longitude": "-90.02566000" + }, + { + "id": "113526", + "name": "Cass County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.97356000", + "longitude": "-90.24738000" + }, + { + "id": "113573", + "name": "Catlin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.06504000", + "longitude": "-87.70197000" + }, + { + "id": "113667", + "name": "Central City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.54894000", + "longitude": "-89.12701000" + }, + { + "id": "113685", + "name": "Centralia", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.52505000", + "longitude": "-89.13340000" + }, + { + "id": "113692", + "name": "Centreville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.58338000", + "longitude": "-90.12511000" + }, + { + "id": "113702", + "name": "Cerro Gordo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.89059000", + "longitude": "-88.72813000" + }, + { + "id": "113724", + "name": "Champaign", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.11642000", + "longitude": "-88.24338000" + }, + { + "id": "113725", + "name": "Champaign County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.14008000", + "longitude": "-88.19919000" + }, + { + "id": "113733", + "name": "Channahon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.42948000", + "longitude": "-88.22867000" + }, + { + "id": "113735", + "name": "Channel Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.47863000", + "longitude": "-88.13759000" + }, + { + "id": "113762", + "name": "Charleston", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.49615000", + "longitude": "-88.17615000" + }, + { + "id": "113797", + "name": "Chatham", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.74115000", + "longitude": "-87.61255000" + }, + { + "id": "113806", + "name": "Chatsworth", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.75365000", + "longitude": "-88.29199000" + }, + { + "id": "113820", + "name": "Chebanse", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.00309000", + "longitude": "-87.90810000" + }, + { + "id": "113841", + "name": "Chenoa", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.74170000", + "longitude": "-88.71979000" + }, + { + "id": "113864", + "name": "Cherry Valley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.23474000", + "longitude": "-88.94899000" + }, + { + "id": "113882", + "name": "Chester", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.91366000", + "longitude": "-89.82205000" + }, + { + "id": "113931", + "name": "Chicago", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.85003000", + "longitude": "-87.65005000" + }, + { + "id": "113932", + "name": "Chicago Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.50615000", + "longitude": "-87.63560000" + }, + { + "id": "113933", + "name": "Chicago Lawn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.77503000", + "longitude": "-87.69644000" + }, + { + "id": "113934", + "name": "Chicago Loop", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88407000", + "longitude": "-87.63330000" + }, + { + "id": "113935", + "name": "Chicago Ridge", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.70142000", + "longitude": "-87.77922000" + }, + { + "id": "113954", + "name": "Chillicothe", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.92226000", + "longitude": "-89.48620000" + }, + { + "id": "113994", + "name": "Chrisman", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.80365000", + "longitude": "-87.67364000" + }, + { + "id": "113995", + "name": "Christian County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.54579000", + "longitude": "-89.27727000" + }, + { + "id": "114002", + "name": "Christopher", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.97255000", + "longitude": "-89.05341000" + }, + { + "id": "114019", + "name": "Cicero", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.84559000", + "longitude": "-87.75394000" + }, + { + "id": "114114", + "name": "Clarendon Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.79753000", + "longitude": "-87.95478000" + }, + { + "id": "114122", + "name": "Clark County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.33357000", + "longitude": "-87.78772000" + }, + { + "id": "114177", + "name": "Clay County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.75416000", + "longitude": "-88.49019000" + }, + { + "id": "114257", + "name": "Clifton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.93531000", + "longitude": "-87.93449000" + }, + { + "id": "114279", + "name": "Clinton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.15365000", + "longitude": "-88.96453000" + }, + { + "id": "114289", + "name": "Clinton County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.60645000", + "longitude": "-89.42248000" + }, + { + "id": "114327", + "name": "Coal City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.28781000", + "longitude": "-88.28562000" + }, + { + "id": "114333", + "name": "Coal Valley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.42865000", + "longitude": "-90.46096000" + }, + { + "id": "114346", + "name": "Cobden", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.53144000", + "longitude": "-89.25342000" + }, + { + "id": "114382", + "name": "Colchester", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.42643000", + "longitude": "-90.79263000" + }, + { + "id": "114402", + "name": "Coles County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.52029000", + "longitude": "-88.22180000" + }, + { + "id": "114406", + "name": "Colfax", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.56698000", + "longitude": "-88.61645000" + }, + { + "id": "114434", + "name": "Collinsville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.67033000", + "longitude": "-89.98455000" + }, + { + "id": "114445", + "name": "Colona", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.48392000", + "longitude": "-90.35318000" + }, + { + "id": "114465", + "name": "Columbia", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.44366000", + "longitude": "-90.20122000" + }, + { + "id": "114592", + "name": "Cook County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.89540000", + "longitude": "-87.64616000" + }, + { + "id": "114675", + "name": "Cortland", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.92003000", + "longitude": "-88.68870000" + }, + { + "id": "114718", + "name": "Country Club Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.56809000", + "longitude": "-87.72033000" + }, + { + "id": "114726", + "name": "Countryside", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.78281000", + "longitude": "-87.87811000" + }, + { + "id": "114761", + "name": "Crainville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.75199000", + "longitude": "-89.06785000" + }, + { + "id": "114776", + "name": "Crawford County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.00269000", + "longitude": "-87.75956000" + }, + { + "id": "114803", + "name": "Crest Hill", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.55475000", + "longitude": "-88.09867000" + }, + { + "id": "114811", + "name": "Crestwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.64463000", + "longitude": "-87.74154000" + }, + { + "id": "114814", + "name": "Crete", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.44448000", + "longitude": "-87.63143000" + }, + { + "id": "114817", + "name": "Creve Coeur", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.64726000", + "longitude": "-89.59121000" + }, + { + "id": "114880", + "name": "Crystal Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.24113000", + "longitude": "-88.31620000" + }, + { + "id": "114881", + "name": "Crystal Lawns", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.57031000", + "longitude": "-88.15812000" + }, + { + "id": "114886", + "name": "Cuba", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.18391000", + "longitude": "-88.19091000" + }, + { + "id": "114912", + "name": "Cumberland County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.27332000", + "longitude": "-88.24023000" + }, + { + "id": "115030", + "name": "Danvers", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.52948000", + "longitude": "-89.17731000" + }, + { + "id": "115035", + "name": "Danville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.12448000", + "longitude": "-87.63002000" + }, + { + "id": "115047", + "name": "Darien", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.75198000", + "longitude": "-87.97395000" + }, + { + "id": "115076", + "name": "Davis Junction", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.10169000", + "longitude": "-89.09316000" + }, + { + "id": "115116", + "name": "De Soto", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.81755000", + "longitude": "-89.22786000" + }, + { + "id": "115123", + "name": "De Witt County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.17463000", + "longitude": "-88.90409000" + }, + { + "id": "115151", + "name": "Decatur", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.84031000", + "longitude": "-88.95480000" + }, + { + "id": "115176", + "name": "Deer Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.16086000", + "longitude": "-88.08147000" + }, + { + "id": "115181", + "name": "Deerfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.17114000", + "longitude": "-87.84451000" + }, + { + "id": "115127", + "name": "DeKalb", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.92947000", + "longitude": "-88.75036000" + }, + { + "id": "115132", + "name": "DeKalb County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.89353000", + "longitude": "-88.77031000" + }, + { + "id": "115200", + "name": "Delavan", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.37254000", + "longitude": "-89.54732000" + }, + { + "id": "115259", + "name": "Depue", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.32420000", + "longitude": "-89.30675000" + }, + { + "id": "115275", + "name": "Des Plaines", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.03336000", + "longitude": "-87.88340000" + }, + { + "id": "115313", + "name": "Diamond", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.28864000", + "longitude": "-88.25173000" + }, + { + "id": "115356", + "name": "Divernon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.56561000", + "longitude": "-89.65732000" + }, + { + "id": "115363", + "name": "Dixmoor", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.63170000", + "longitude": "-87.66088000" + }, + { + "id": "115366", + "name": "Dixon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.83892000", + "longitude": "-89.47955000" + }, + { + "id": "115392", + "name": "Dolton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.63892000", + "longitude": "-87.60727000" + }, + { + "id": "115420", + "name": "Douglas", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.83476000", + "longitude": "-87.61811000" + }, + { + "id": "115426", + "name": "Douglas County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.76946000", + "longitude": "-88.21735000" + }, + { + "id": "115459", + "name": "Downers Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.80892000", + "longitude": "-88.01117000" + }, + { + "id": "115486", + "name": "Du Quoin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.01144000", + "longitude": "-89.23619000" + }, + { + "id": "115544", + "name": "Dunlap", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.86170000", + "longitude": "-89.67871000" + }, + { + "id": "115488", + "name": "DuPage County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.85195000", + "longitude": "-88.08567000" + }, + { + "id": "115557", + "name": "Dupo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.51616000", + "longitude": "-90.21039000" + }, + { + "id": "115562", + "name": "Durand", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.43640000", + "longitude": "-89.33206000" + }, + { + "id": "115584", + "name": "Dwight", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.09448000", + "longitude": "-88.42506000" + }, + { + "id": "115621", + "name": "Earlville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.58948000", + "longitude": "-88.92203000" + }, + { + "id": "115626", + "name": "East Alton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.88033000", + "longitude": "-90.11122000" + }, + { + "id": "115652", + "name": "East Dubuque", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.49223000", + "longitude": "-90.64291000" + }, + { + "id": "115653", + "name": "East Dundee", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09891000", + "longitude": "-88.27147000" + }, + { + "id": "115668", + "name": "East Garfield Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88087000", + "longitude": "-87.70283000" + }, + { + "id": "115687", + "name": "East Hazel Crest", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.57365000", + "longitude": "-87.64643000" + }, + { + "id": "115716", + "name": "East Moline", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.50087000", + "longitude": "-90.44430000" + }, + { + "id": "115732", + "name": "East Peoria", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.66615000", + "longitude": "-89.58010000" + }, + { + "id": "115754", + "name": "East Saint Louis", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.62450000", + "longitude": "-90.15094000" + }, + { + "id": "115836", + "name": "Edgar County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.67853000", + "longitude": "-87.74557000" + }, + { + "id": "115853", + "name": "Edgewater", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.98337000", + "longitude": "-87.66395000" + }, + { + "id": "115869", + "name": "Edinburg", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.65727000", + "longitude": "-89.38953000" + }, + { + "id": "115889", + "name": "Edwards County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.41653000", + "longitude": "-88.05327000" + }, + { + "id": "115894", + "name": "Edwardsville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.81144000", + "longitude": "-89.95316000" + }, + { + "id": "115896", + "name": "Effingham", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.12004000", + "longitude": "-88.54338000" + }, + { + "id": "115899", + "name": "Effingham County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.05977000", + "longitude": "-88.58986000" + }, + { + "id": "115929", + "name": "El Paso", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.73920000", + "longitude": "-89.01646000" + }, + { + "id": "115948", + "name": "Elburn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.89225000", + "longitude": "-88.47230000" + }, + { + "id": "115952", + "name": "Eldorado", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.81366000", + "longitude": "-88.43810000" + }, + { + "id": "115966", + "name": "Elgin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.03725000", + "longitude": "-88.28119000" + }, + { + "id": "115977", + "name": "Elizabethtown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.44588000", + "longitude": "-88.30504000" + }, + { + "id": "115988", + "name": "Elk Grove Village", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.00392000", + "longitude": "-87.97035000" + }, + { + "id": "116051", + "name": "Elmhurst", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.89947000", + "longitude": "-87.94034000" + }, + { + "id": "116061", + "name": "Elmwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.77782000", + "longitude": "-89.96650000" + }, + { + "id": "116062", + "name": "Elmwood Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.92114000", + "longitude": "-87.80923000" + }, + { + "id": "116080", + "name": "Elwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.40392000", + "longitude": "-88.11172000" + }, + { + "id": "116122", + "name": "Energy", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.77394000", + "longitude": "-89.02646000" + }, + { + "id": "116131", + "name": "Englewood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.77976000", + "longitude": "-87.64588000" + }, + { + "id": "116165", + "name": "Erie", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.65642000", + "longitude": "-90.07929000" + }, + { + "id": "116234", + "name": "Eureka", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.72143000", + "longitude": "-89.27286000" + }, + { + "id": "116251", + "name": "Evanston", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.04114000", + "longitude": "-87.69006000" + }, + { + "id": "116265", + "name": "Evergreen Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.72059000", + "longitude": "-87.70172000" + }, + { + "id": "116294", + "name": "Fairbury", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.74726000", + "longitude": "-88.51478000" + }, + { + "id": "116310", + "name": "Fairfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.37894000", + "longitude": "-88.35977000" + }, + { + "id": "116336", + "name": "Fairmont", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.55614000", + "longitude": "-88.05923000" + }, + { + "id": "116338", + "name": "Fairmont City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.64977000", + "longitude": "-90.09316000" + }, + { + "id": "116358", + "name": "Fairview Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.58894000", + "longitude": "-89.99038000" + }, + { + "id": "116402", + "name": "Farmer City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.24337000", + "longitude": "-88.64257000" + }, + { + "id": "116416", + "name": "Farmington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.69809000", + "longitude": "-90.00595000" + }, + { + "id": "116445", + "name": "Fayette County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.00019000", + "longitude": "-89.02414000" + }, + { + "id": "116527", + "name": "Fisher", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.31476000", + "longitude": "-88.35005000" + }, + { + "id": "116547", + "name": "Flanagan", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.87809000", + "longitude": "-88.86118000" + }, + { + "id": "116570", + "name": "Flora", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.66894000", + "longitude": "-88.48560000" + }, + { + "id": "116598", + "name": "Flossmoor", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.54281000", + "longitude": "-87.68477000" + }, + { + "id": "116637", + "name": "Ford County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.59718000", + "longitude": "-88.22326000" + }, + { + "id": "116638", + "name": "Ford Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.50642000", + "longitude": "-87.59171000" + }, + { + "id": "116660", + "name": "Forest Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.20752000", + "longitude": "-88.05563000" + }, + { + "id": "116666", + "name": "Forest Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.87948000", + "longitude": "-87.81367000" + }, + { + "id": "116678", + "name": "Forrest", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.75198000", + "longitude": "-88.41116000" + }, + { + "id": "116681", + "name": "Forreston", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.12614000", + "longitude": "-89.57928000" + }, + { + "id": "116682", + "name": "Forsyth", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.93254000", + "longitude": "-88.95119000" + }, + { + "id": "116803", + "name": "Fox Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.39669000", + "longitude": "-88.18370000" + }, + { + "id": "116805", + "name": "Fox Lake Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.40808000", + "longitude": "-88.13175000" + }, + { + "id": "116807", + "name": "Fox River Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.20086000", + "longitude": "-88.21453000" + }, + { + "id": "116819", + "name": "Frankfort", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.49587000", + "longitude": "-87.84866000" + }, + { + "id": "116824", + "name": "Frankfort Square", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.51892000", + "longitude": "-87.80310000" + }, + { + "id": "116847", + "name": "Franklin County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.99229000", + "longitude": "-88.92415000" + }, + { + "id": "116868", + "name": "Franklin Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.93531000", + "longitude": "-87.86562000" + }, + { + "id": "116900", + "name": "Freeburg", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.42755000", + "longitude": "-89.91371000" + }, + { + "id": "116912", + "name": "Freeport", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.29669000", + "longitude": "-89.62123000" + }, + { + "id": "116990", + "name": "Fulton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.86725000", + "longitude": "-90.15957000" + }, + { + "id": "116995", + "name": "Fulton County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.47277000", + "longitude": "-90.20747000" + }, + { + "id": "117009", + "name": "Gage Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.79503000", + "longitude": "-87.69616000" + }, + { + "id": "117010", + "name": "Gages Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.35169000", + "longitude": "-87.98258000" + }, + { + "id": "117024", + "name": "Galena", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.41667000", + "longitude": "-90.42902000" + }, + { + "id": "117027", + "name": "Galesburg", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.94782000", + "longitude": "-90.37124000" + }, + { + "id": "117034", + "name": "Gallatin County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.76275000", + "longitude": "-88.23050000" + }, + { + "id": "117041", + "name": "Galva", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.16754000", + "longitude": "-90.04261000" + }, + { + "id": "117076", + "name": "Gardner", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.18559000", + "longitude": "-88.30978000" + }, + { + "id": "117137", + "name": "Geneseo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.44809000", + "longitude": "-90.15428000" + }, + { + "id": "117142", + "name": "Geneva", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88753000", + "longitude": "-88.30535000" + }, + { + "id": "117147", + "name": "Genoa", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09725000", + "longitude": "-88.69287000" + }, + { + "id": "117162", + "name": "Georgetown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.13975000", + "longitude": "-89.82873000" + }, + { + "id": "117171", + "name": "Germantown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.55366000", + "longitude": "-89.53842000" + }, + { + "id": "117175", + "name": "Germantown Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.76643000", + "longitude": "-89.46787000" + }, + { + "id": "117188", + "name": "Gibson City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.45843000", + "longitude": "-88.38460000" + }, + { + "id": "117198", + "name": "Gifford", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.30587000", + "longitude": "-88.02115000" + }, + { + "id": "117206", + "name": "Gilberts", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.10336000", + "longitude": "-88.37286000" + }, + { + "id": "117214", + "name": "Gillespie", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.12977000", + "longitude": "-89.81954000" + }, + { + "id": "117219", + "name": "Gilman", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.76670000", + "longitude": "-87.99226000" + }, + { + "id": "117226", + "name": "Girard", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.44644000", + "longitude": "-89.78093000" + }, + { + "id": "117244", + "name": "Glasford", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.57254000", + "longitude": "-89.81344000" + }, + { + "id": "117263", + "name": "Glen Carbon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.74838000", + "longitude": "-89.98316000" + }, + { + "id": "117265", + "name": "Glen Ellyn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.87753000", + "longitude": "-88.06701000" + }, + { + "id": "117278", + "name": "Glencoe", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.13503000", + "longitude": "-87.75812000" + }, + { + "id": "117288", + "name": "Glendale Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.91460000", + "longitude": "-88.06486000" + }, + { + "id": "117309", + "name": "Glenview", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.06975000", + "longitude": "-87.78784000" + }, + { + "id": "117314", + "name": "Glenwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.54253000", + "longitude": "-87.60227000" + }, + { + "id": "117334", + "name": "Godfrey", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.95560000", + "longitude": "-90.18678000" + }, + { + "id": "117338", + "name": "Golconda", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.36727000", + "longitude": "-88.48643000" + }, + { + "id": "117383", + "name": "Goodings Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.62920000", + "longitude": "-87.93089000" + }, + { + "id": "117402", + "name": "Goreville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.55450000", + "longitude": "-88.97229000" + }, + { + "id": "117451", + "name": "Grand Boulevard", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.81392000", + "longitude": "-87.61727000" + }, + { + "id": "117478", + "name": "Grandview", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.81644000", + "longitude": "-89.61871000" + }, + { + "id": "117484", + "name": "Grandwood Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.39308000", + "longitude": "-87.98674000" + }, + { + "id": "117494", + "name": "Granite City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.70144000", + "longitude": "-90.14872000" + }, + { + "id": "117523", + "name": "Grant Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.24114000", + "longitude": "-87.64615000" + }, + { + "id": "117535", + "name": "Granville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.26115000", + "longitude": "-89.22759000" + }, + { + "id": "117559", + "name": "Grayslake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.34447000", + "longitude": "-88.04175000" + }, + { + "id": "117568", + "name": "Grayville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.25755000", + "longitude": "-87.99364000" + }, + { + "id": "117580", + "name": "Greater Grand Crossing", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.76113000", + "longitude": "-87.61485000" + }, + { + "id": "117604", + "name": "Green Oaks", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.29002000", + "longitude": "-87.90341000" + }, + { + "id": "117607", + "name": "Green Rock", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.47309000", + "longitude": "-90.35763000" + }, + { + "id": "117634", + "name": "Greene County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.35620000", + "longitude": "-90.39049000" + }, + { + "id": "117645", + "name": "Greenfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.34366000", + "longitude": "-90.21261000" + }, + { + "id": "117676", + "name": "Greenup", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.24782000", + "longitude": "-88.16337000" + }, + { + "id": "117683", + "name": "Greenville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.89227000", + "longitude": "-89.41314000" + }, + { + "id": "117729", + "name": "Gridley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.74337000", + "longitude": "-88.88146000" + }, + { + "id": "117735", + "name": "Griggsville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.70894000", + "longitude": "-90.72457000" + }, + { + "id": "117772", + "name": "Grundy County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.28509000", + "longitude": "-88.41850000" + }, + { + "id": "117809", + "name": "Gurnee", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.37030000", + "longitude": "-87.90202000" + }, + { + "id": "117846", + "name": "Hainesville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.34502000", + "longitude": "-88.06786000" + }, + { + "id": "117892", + "name": "Hamilton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.39643000", + "longitude": "-91.33904000" + }, + { + "id": "117897", + "name": "Hamilton County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.08157000", + "longitude": "-88.53911000" + }, + { + "id": "117920", + "name": "Hampshire", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09780000", + "longitude": "-88.53036000" + }, + { + "id": "117932", + "name": "Hampton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.55587000", + "longitude": "-90.40930000" + }, + { + "id": "117956", + "name": "Hancock County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.40378000", + "longitude": "-91.16470000" + }, + { + "id": "117962", + "name": "Hanna City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.69170000", + "longitude": "-89.79511000" + }, + { + "id": "117975", + "name": "Hanover Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.99947000", + "longitude": "-88.14507000" + }, + { + "id": "117997", + "name": "Hardin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.15671000", + "longitude": "-90.61790000" + }, + { + "id": "117999", + "name": "Hardin County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.51820000", + "longitude": "-88.26685000" + }, + { + "id": "118048", + "name": "Harrisburg", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.73838000", + "longitude": "-88.54061000" + }, + { + "id": "118072", + "name": "Harristown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.85393000", + "longitude": "-89.08397000" + }, + { + "id": "118085", + "name": "Hartford", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.83338000", + "longitude": "-90.09594000" + }, + { + "id": "118108", + "name": "Harvard", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.42224000", + "longitude": "-88.61371000" + }, + { + "id": "118112", + "name": "Harvey", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.61003000", + "longitude": "-87.64671000" + }, + { + "id": "118120", + "name": "Harwood Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.96725000", + "longitude": "-87.80756000" + }, + { + "id": "118146", + "name": "Havana", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.30004000", + "longitude": "-90.06095000" + }, + { + "id": "118171", + "name": "Hawthorn Woods", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.21697000", + "longitude": "-88.04952000" + }, + { + "id": "118202", + "name": "Hazel Crest", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.57170000", + "longitude": "-87.69449000" + }, + { + "id": "118236", + "name": "Hebron", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.47169000", + "longitude": "-88.43232000" + }, + { + "id": "118284", + "name": "Henderson County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.81812000", + "longitude": "-90.92511000" + }, + { + "id": "118290", + "name": "Hennepin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.25420000", + "longitude": "-89.34231000" + }, + { + "id": "118296", + "name": "Henry", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.11142000", + "longitude": "-89.35648000" + }, + { + "id": "118305", + "name": "Henry County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.35313000", + "longitude": "-90.13142000" + }, + { + "id": "118319", + "name": "Heritage Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.54745000", + "longitude": "-89.32581000" + }, + { + "id": "118339", + "name": "Herrin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.80311000", + "longitude": "-89.02757000" + }, + { + "id": "118340", + "name": "Herscher", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.04920000", + "longitude": "-88.09783000" + }, + { + "id": "118352", + "name": "Heyworth", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.31337000", + "longitude": "-88.97369000" + }, + { + "id": "118369", + "name": "Hickory Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.72559000", + "longitude": "-87.82506000" + }, + { + "id": "118393", + "name": "Highland", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.73949000", + "longitude": "-89.67120000" + }, + { + "id": "118411", + "name": "Highland Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.18169000", + "longitude": "-87.80034000" + }, + { + "id": "118426", + "name": "Highwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.19975000", + "longitude": "-87.80923000" + }, + { + "id": "118439", + "name": "Hillcrest", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.95114000", + "longitude": "-89.06454000" + }, + { + "id": "118446", + "name": "Hillsboro", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.16128000", + "longitude": "-89.49540000" + }, + { + "id": "118463", + "name": "Hillside", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.87781000", + "longitude": "-87.90284000" + }, + { + "id": "118476", + "name": "Hinckley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.76892000", + "longitude": "-88.64091000" + }, + { + "id": "118485", + "name": "Hinsdale", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.80086000", + "longitude": "-87.93701000" + }, + { + "id": "118509", + "name": "Hodgkins", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.76892000", + "longitude": "-87.85783000" + }, + { + "id": "118510", + "name": "Hoffman Estates", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.04281000", + "longitude": "-88.07980000" + }, + { + "id": "118535", + "name": "Holiday Shores", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.92199000", + "longitude": "-89.94066000" + }, + { + "id": "118594", + "name": "Homer", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.03476000", + "longitude": "-87.95809000" + }, + { + "id": "118599", + "name": "Homer Glen", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.60003000", + "longitude": "-87.93811000" + }, + { + "id": "118605", + "name": "Hometown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.73448000", + "longitude": "-87.73144000" + }, + { + "id": "118608", + "name": "Homewood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.55726000", + "longitude": "-87.66560000" + }, + { + "id": "118636", + "name": "Hoopeston", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.46726000", + "longitude": "-87.66836000" + }, + { + "id": "118739", + "name": "Hudson", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.60587000", + "longitude": "-88.98730000" + }, + { + "id": "118812", + "name": "Huntley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.16808000", + "longitude": "-88.42814000" + }, + { + "id": "118849", + "name": "Hyde Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.79420000", + "longitude": "-87.59394000" + }, + { + "id": "118887", + "name": "Ina", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.15116000", + "longitude": "-88.90396000" + }, + { + "id": "118904", + "name": "Indian Head Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.77031000", + "longitude": "-87.90228000" + }, + { + "id": "118934", + "name": "Ingalls Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.52253000", + "longitude": "-88.04283000" + }, + { + "id": "118956", + "name": "Inverness", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.11808000", + "longitude": "-88.09619000" + }, + { + "id": "119000", + "name": "Iroquois County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.74723000", + "longitude": "-87.82430000" + }, + { + "id": "119006", + "name": "Irving Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.95336000", + "longitude": "-87.73645000" + }, + { + "id": "119026", + "name": "Island Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.27613000", + "longitude": "-88.19203000" + }, + { + "id": "119040", + "name": "Itasca", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.97503000", + "longitude": "-88.00729000" + }, + { + "id": "119079", + "name": "Jackson County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.78514000", + "longitude": "-89.38212000" + }, + { + "id": "119102", + "name": "Jacksonville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.73394000", + "longitude": "-90.22901000" + }, + { + "id": "119146", + "name": "Jasper County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.01003000", + "longitude": "-88.15381000" + }, + { + "id": "119179", + "name": "Jefferson County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.30052000", + "longitude": "-88.92401000" + }, + { + "id": "119227", + "name": "Jerome", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.76755000", + "longitude": "-89.68066000" + }, + { + "id": "119232", + "name": "Jersey County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.08566000", + "longitude": "-90.35668000" + }, + { + "id": "119235", + "name": "Jerseyville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.12005000", + "longitude": "-90.32845000" + }, + { + "id": "119249", + "name": "Jo Daviess County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.36571000", + "longitude": "-90.21241000" + }, + { + "id": "119253", + "name": "Johnsburg", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.38002000", + "longitude": "-88.24203000" + }, + { + "id": "119262", + "name": "Johnson County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.45963000", + "longitude": "-88.88089000" + }, + { + "id": "119280", + "name": "Johnston City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.82061000", + "longitude": "-88.92757000" + }, + { + "id": "119288", + "name": "Joliet", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.52519000", + "longitude": "-88.08340000" + }, + { + "id": "119301", + "name": "Jonesboro", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.45172000", + "longitude": "-89.26814000" + }, + { + "id": "119345", + "name": "Justice", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.74448000", + "longitude": "-87.83783000" + }, + { + "id": "119377", + "name": "Kane County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.93894000", + "longitude": "-88.42866000" + }, + { + "id": "119380", + "name": "Kankakee", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.12003000", + "longitude": "-87.86115000" + }, + { + "id": "119381", + "name": "Kankakee County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.13770000", + "longitude": "-87.86180000" + }, + { + "id": "119447", + "name": "Kendall County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.59056000", + "longitude": "-88.42885000" + }, + { + "id": "119456", + "name": "Kenilworth", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.08586000", + "longitude": "-87.71756000" + }, + { + "id": "119504", + "name": "Kenwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.80920000", + "longitude": "-87.59755000" + }, + { + "id": "119532", + "name": "Kewanee", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.24559000", + "longitude": "-89.92483000" + }, + { + "id": "119555", + "name": "Kildeer", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.17058000", + "longitude": "-88.04785000" + }, + { + "id": "119573", + "name": "Kincaid", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.58866000", + "longitude": "-89.41454000" + }, + { + "id": "119624", + "name": "Kingston", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09975000", + "longitude": "-88.75898000" + }, + { + "id": "119651", + "name": "Kirkland", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09253000", + "longitude": "-88.85121000" + }, + { + "id": "119679", + "name": "Knollwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.28613000", + "longitude": "-87.88563000" + }, + { + "id": "119689", + "name": "Knox County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.93182000", + "longitude": "-90.21326000" + }, + { + "id": "119696", + "name": "Knoxville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.90837000", + "longitude": "-90.28485000" + }, + { + "id": "119752", + "name": "La Grange", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.80503000", + "longitude": "-87.86923000" + }, + { + "id": "119753", + "name": "La Grange Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.83475000", + "longitude": "-87.86173000" + }, + { + "id": "119757", + "name": "La Harpe", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.58337000", + "longitude": "-90.96931000" + }, + { + "id": "119785", + "name": "La Salle", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.33337000", + "longitude": "-89.09175000" + }, + { + "id": "119818", + "name": "Lacon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.02476000", + "longitude": "-89.41120000" + }, + { + "id": "119822", + "name": "Ladd", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.38253000", + "longitude": "-89.21897000" + }, + { + "id": "119869", + "name": "Lake Barrington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.21252000", + "longitude": "-88.15258000" + }, + { + "id": "119871", + "name": "Lake Bluff", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.27891000", + "longitude": "-87.83424000" + }, + { + "id": "119874", + "name": "Lake Camelot", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.63065000", + "longitude": "-89.74210000" + }, + { + "id": "119876", + "name": "Lake Catherine", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.47919000", + "longitude": "-88.13342000" + }, + { + "id": "119891", + "name": "Lake County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.34941000", + "longitude": "-87.86179000" + }, + { + "id": "119910", + "name": "Lake Forest", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.25863000", + "longitude": "-87.84063000" + }, + { + "id": "119921", + "name": "Lake Holiday", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.61292000", + "longitude": "-88.67209000" + }, + { + "id": "120004", + "name": "Lake in the Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.18169000", + "longitude": "-88.33036000" + }, + { + "id": "120006", + "name": "Lake of the Woods", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.20642000", + "longitude": "-88.36867000" + }, + { + "id": "119983", + "name": "Lake Summerset", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.45446000", + "longitude": "-89.38956000" + }, + { + "id": "119988", + "name": "Lake Villa", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.41697000", + "longitude": "-88.07397000" + }, + { + "id": "120002", + "name": "Lake Zurich", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.19697000", + "longitude": "-88.09341000" + }, + { + "id": "120022", + "name": "Lakemoor", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.32863000", + "longitude": "-88.19897000" + }, + { + "id": "120047", + "name": "Lakewood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.22919000", + "longitude": "-88.35509000" + }, + { + "id": "120055", + "name": "Lakewood Shores", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.28170000", + "longitude": "-88.14478000" + }, + { + "id": "120079", + "name": "Lanark", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.10225000", + "longitude": "-89.83345000" + }, + { + "id": "120126", + "name": "Lansing", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.56476000", + "longitude": "-87.53893000" + }, + { + "id": "119806", + "name": "LaSalle County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.34399000", + "longitude": "-88.88595000" + }, + { + "id": "120231", + "name": "Lawrence County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.71995000", + "longitude": "-87.72673000" + }, + { + "id": "120244", + "name": "Lawrenceville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.72921000", + "longitude": "-87.68169000" + }, + { + "id": "120262", + "name": "Le Roy", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.35198000", + "longitude": "-88.76424000" + }, + { + "id": "120284", + "name": "Lebanon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.60394000", + "longitude": "-89.80732000" + }, + { + "id": "120317", + "name": "Lee County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.74619000", + "longitude": "-89.30039000" + }, + { + "id": "120352", + "name": "Leland Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.77700000", + "longitude": "-89.67927000" + }, + { + "id": "120360", + "name": "Lemont", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.67364000", + "longitude": "-88.00173000" + }, + { + "id": "120366", + "name": "Lena", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.37946000", + "longitude": "-89.82234000" + }, + { + "id": "120431", + "name": "Lewistown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.39310000", + "longitude": "-90.15484000" + }, + { + "id": "120449", + "name": "Lexington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.64142000", + "longitude": "-88.78340000" + }, + { + "id": "120476", + "name": "Libertyville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.28308000", + "longitude": "-87.95313000" + }, + { + "id": "120487", + "name": "Lily Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.94892000", + "longitude": "-88.47786000" + }, + { + "id": "120493", + "name": "Limestone", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.13237000", + "longitude": "-87.96840000" + }, + { + "id": "120503", + "name": "Lincoln", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.14838000", + "longitude": "-89.36482000" + }, + { + "id": "120540", + "name": "Lincoln Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.92170000", + "longitude": "-87.64783000" + }, + { + "id": "120546", + "name": "Lincoln Square", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.97587000", + "longitude": "-87.68922000" + }, + { + "id": "120550", + "name": "Lincolnshire", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.19002000", + "longitude": "-87.90840000" + }, + { + "id": "120555", + "name": "Lincolnwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.00448000", + "longitude": "-87.73006000" + }, + { + "id": "120567", + "name": "Lindenhurst", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.41058000", + "longitude": "-88.02619000" + }, + { + "id": "120602", + "name": "Lisle", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.80114000", + "longitude": "-88.07479000" + }, + { + "id": "120603", + "name": "Litchfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.17533000", + "longitude": "-89.65426000" + }, + { + "id": "120656", + "name": "Livingston County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.89156000", + "longitude": "-88.55772000" + }, + { + "id": "120680", + "name": "Lockport", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.58948000", + "longitude": "-88.05784000" + }, + { + "id": "120700", + "name": "Logan County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.12456000", + "longitude": "-89.36755000" + }, + { + "id": "120705", + "name": "Logan Square", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.92337000", + "longitude": "-87.69922000" + }, + { + "id": "120714", + "name": "Lombard", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88003000", + "longitude": "-88.00784000" + }, + { + "id": "120742", + "name": "Long Creek", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.81198000", + "longitude": "-88.84757000" + }, + { + "id": "120743", + "name": "Long Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.17836000", + "longitude": "-87.99785000" + }, + { + "id": "120746", + "name": "Long Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.37085000", + "longitude": "-88.12758000" + }, + { + "id": "120812", + "name": "Louisville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.77227000", + "longitude": "-88.50255000" + }, + { + "id": "120826", + "name": "Loves Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.32002000", + "longitude": "-89.05816000" + }, + { + "id": "120831", + "name": "Lovington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.71559000", + "longitude": "-88.63256000" + }, + { + "id": "120843", + "name": "Lower West Side", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.85420000", + "longitude": "-87.66561000" + }, + { + "id": "120933", + "name": "Lynwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.52642000", + "longitude": "-87.53865000" + }, + { + "id": "120942", + "name": "Lyons", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.81337000", + "longitude": "-87.81811000" + }, + { + "id": "120955", + "name": "Machesney Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.34724000", + "longitude": "-89.03900000" + }, + { + "id": "120960", + "name": "Mackinaw", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.53698000", + "longitude": "-89.35759000" + }, + { + "id": "120961", + "name": "Macomb", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.45921000", + "longitude": "-90.67180000" + }, + { + "id": "120963", + "name": "Macon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.71282000", + "longitude": "-88.99702000" + }, + { + "id": "120969", + "name": "Macon County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.86000000", + "longitude": "-88.96160000" + }, + { + "id": "120973", + "name": "Macoupin County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.26102000", + "longitude": "-89.92443000" + }, + { + "id": "120987", + "name": "Madison", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.68255000", + "longitude": "-90.15705000" + }, + { + "id": "121006", + "name": "Madison County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.82985000", + "longitude": "-89.90517000" + }, + { + "id": "121045", + "name": "Mahomet", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.19531000", + "longitude": "-88.40422000" + }, + { + "id": "121067", + "name": "Malta", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.92975000", + "longitude": "-88.86092000" + }, + { + "id": "121114", + "name": "Manhattan", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.42253000", + "longitude": "-87.98589000" + }, + { + "id": "121124", + "name": "Manito", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.42587000", + "longitude": "-89.77928000" + }, + { + "id": "121155", + "name": "Manteno", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.25059000", + "longitude": "-87.83143000" + }, + { + "id": "121170", + "name": "Maple Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.90753000", + "longitude": "-88.59925000" + }, + { + "id": "121202", + "name": "Marengo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.24863000", + "longitude": "-88.60843000" + }, + { + "id": "121233", + "name": "Marion", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.73061000", + "longitude": "-88.93313000" + }, + { + "id": "121251", + "name": "Marion County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.64959000", + "longitude": "-88.91897000" + }, + { + "id": "121266", + "name": "Marissa", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.25005000", + "longitude": "-89.75010000" + }, + { + "id": "121270", + "name": "Markham", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.59365000", + "longitude": "-87.69477000" + }, + { + "id": "121291", + "name": "Maroa", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.03643000", + "longitude": "-88.95703000" + }, + { + "id": "121295", + "name": "Marquette Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.61754000", + "longitude": "-89.60038000" + }, + { + "id": "121300", + "name": "Marseilles", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.33087000", + "longitude": "-88.70813000" + }, + { + "id": "121302", + "name": "Marshall", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.39143000", + "longitude": "-87.69364000" + }, + { + "id": "121318", + "name": "Marshall County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.03317000", + "longitude": "-89.34478000" + }, + { + "id": "121349", + "name": "Martinsville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.33559000", + "longitude": "-87.88198000" + }, + { + "id": "121363", + "name": "Maryville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.72366000", + "longitude": "-89.95593000" + }, + { + "id": "121369", + "name": "Mascoutah", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.49033000", + "longitude": "-89.79315000" + }, + { + "id": "121376", + "name": "Mason City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.20227000", + "longitude": "-89.69816000" + }, + { + "id": "121380", + "name": "Mason County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.23965000", + "longitude": "-89.91678000" + }, + { + "id": "121388", + "name": "Massac County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.21903000", + "longitude": "-88.70774000" + }, + { + "id": "121411", + "name": "Matteson", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.50392000", + "longitude": "-87.71310000" + }, + { + "id": "121414", + "name": "Mattoon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.48309000", + "longitude": "-88.37283000" + }, + { + "id": "121457", + "name": "Maywood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.87920000", + "longitude": "-87.84312000" + }, + { + "id": "121489", + "name": "McCullom Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.36835000", + "longitude": "-88.29259000" + }, + { + "id": "121494", + "name": "McDonough County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.45621000", + "longitude": "-90.67791000" + }, + { + "id": "121508", + "name": "McHenry", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.33335000", + "longitude": "-88.26675000" + }, + { + "id": "121509", + "name": "McHenry County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.32439000", + "longitude": "-88.45245000" + }, + { + "id": "121523", + "name": "McKinley Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.83170000", + "longitude": "-87.67366000" + }, + { + "id": "121529", + "name": "McLean County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.49089000", + "longitude": "-88.84732000" + }, + { + "id": "121531", + "name": "McLeansboro", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.09338000", + "longitude": "-88.53561000" + }, + { + "id": "121632", + "name": "Melrose Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.90059000", + "longitude": "-87.85673000" + }, + { + "id": "121648", + "name": "Menard County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.02740000", + "longitude": "-89.80217000" + }, + { + "id": "121656", + "name": "Mendota", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.54725000", + "longitude": "-89.11759000" + }, + { + "id": "121677", + "name": "Mercer County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.20534000", + "longitude": "-90.74141000" + }, + { + "id": "121688", + "name": "Meredosia", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.83116000", + "longitude": "-90.55957000" + }, + { + "id": "121713", + "name": "Merrionette Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.68420000", + "longitude": "-87.70033000" + }, + { + "id": "121731", + "name": "Metamora", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.79059000", + "longitude": "-89.36064000" + }, + { + "id": "121736", + "name": "Metropolis", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.15117000", + "longitude": "-88.73200000" + }, + { + "id": "121808", + "name": "Midlothian", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.62531000", + "longitude": "-87.71755000" + }, + { + "id": "121837", + "name": "Milan", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.45309000", + "longitude": "-90.57208000" + }, + { + "id": "121851", + "name": "Milford", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.62837000", + "longitude": "-87.69614000" + }, + { + "id": "121901", + "name": "Millstadt", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.46144000", + "longitude": "-90.09178000" + }, + { + "id": "121948", + "name": "Minier", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.43365000", + "longitude": "-89.31315000" + }, + { + "id": "121961", + "name": "Minonk", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.90448000", + "longitude": "-89.03452000" + }, + { + "id": "121962", + "name": "Minooka", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.45531000", + "longitude": "-88.26173000" + }, + { + "id": "121995", + "name": "Mitchell", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.76199000", + "longitude": "-90.08538000" + }, + { + "id": "122024", + "name": "Mokena", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.52614000", + "longitude": "-87.88922000" + }, + { + "id": "122027", + "name": "Moline", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.50670000", + "longitude": "-90.51513000" + }, + { + "id": "122030", + "name": "Momence", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.16670000", + "longitude": "-87.66281000" + }, + { + "id": "122037", + "name": "Monee", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.42003000", + "longitude": "-87.74171000" + }, + { + "id": "122042", + "name": "Monmouth", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.91143000", + "longitude": "-90.64736000" + }, + { + "id": "122071", + "name": "Monroe County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.27865000", + "longitude": "-90.17738000" + }, + { + "id": "122133", + "name": "Montgomery", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.73058000", + "longitude": "-88.34590000" + }, + { + "id": "122142", + "name": "Montgomery County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.23104000", + "longitude": "-89.47887000" + }, + { + "id": "122166", + "name": "Monticello", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.02781000", + "longitude": "-88.57340000" + }, + { + "id": "122238", + "name": "Morgan County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.71556000", + "longitude": "-90.20150000" + }, + { + "id": "122247", + "name": "Morgan Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.69031000", + "longitude": "-87.66672000" + }, + { + "id": "122267", + "name": "Morris", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.35725000", + "longitude": "-88.42118000" + }, + { + "id": "122276", + "name": "Morrison", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.80975000", + "longitude": "-89.96512000" + }, + { + "id": "122278", + "name": "Morrisonville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.42005000", + "longitude": "-89.45565000" + }, + { + "id": "122293", + "name": "Morton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.61282000", + "longitude": "-89.45926000" + }, + { + "id": "122298", + "name": "Morton Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.04059000", + "longitude": "-87.78256000" + }, + { + "id": "122317", + "name": "Moultrie County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.64148000", + "longitude": "-88.61930000" + }, + { + "id": "122320", + "name": "Mound City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.08533000", + "longitude": "-89.16257000" + }, + { + "id": "122335", + "name": "Mount Carmel", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.41088000", + "longitude": "-87.76142000" + }, + { + "id": "122338", + "name": "Mount Carroll", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09502000", + "longitude": "-89.97818000" + }, + { + "id": "122345", + "name": "Mount Greenwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.69809000", + "longitude": "-87.70866000" + }, + { + "id": "122363", + "name": "Mount Morris", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.05031000", + "longitude": "-89.43122000" + }, + { + "id": "122368", + "name": "Mount Olive", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.07227000", + "longitude": "-89.72731000" + }, + { + "id": "122385", + "name": "Mount Prospect", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.06642000", + "longitude": "-87.93729000" + }, + { + "id": "122386", + "name": "Mount Pulaski", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.01088000", + "longitude": "-89.28231000" + }, + { + "id": "122390", + "name": "Mount Sterling", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.98727000", + "longitude": "-90.76346000" + }, + { + "id": "122396", + "name": "Mount Vernon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.31727000", + "longitude": "-88.90312000" + }, + { + "id": "122409", + "name": "Mount Zion", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.77143000", + "longitude": "-88.87424000" + }, + { + "id": "122444", + "name": "Moweaqua", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.62476000", + "longitude": "-89.01897000" + }, + { + "id": "122468", + "name": "Mundelein", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.26308000", + "longitude": "-88.00397000" + }, + { + "id": "122490", + "name": "Murphysboro", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.76450000", + "longitude": "-89.33509000" + }, + { + "id": "122550", + "name": "Naperville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.78586000", + "longitude": "-88.14729000" + }, + { + "id": "122574", + "name": "Nashville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.34366000", + "longitude": "-89.38064000" + }, + { + "id": "122596", + "name": "Nauvoo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.55004000", + "longitude": "-91.38487000" + }, + { + "id": "122607", + "name": "Near North Side", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.90003000", + "longitude": "-87.63450000" + }, + { + "id": "122608", + "name": "Near South Side", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.85670000", + "longitude": "-87.62477000" + }, + { + "id": "122632", + "name": "Neoga", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.31948000", + "longitude": "-88.45283000" + }, + { + "id": "122656", + "name": "New Athens", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.32644000", + "longitude": "-89.87705000" + }, + { + "id": "122658", + "name": "New Baden", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.53505000", + "longitude": "-89.70065000" + }, + { + "id": "122663", + "name": "New Berlin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.72533000", + "longitude": "-89.91066000" + }, + { + "id": "122694", + "name": "New City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.80753000", + "longitude": "-87.65644000" + }, + { + "id": "122737", + "name": "New Lenox", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.51198000", + "longitude": "-87.96561000" + }, + { + "id": "122802", + "name": "Newark", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.53697000", + "longitude": "-88.58341000" + }, + { + "id": "122864", + "name": "Newton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.99088000", + "longitude": "-88.16254000" + }, + { + "id": "122900", + "name": "Niles", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.01892000", + "longitude": "-87.80284000" + }, + { + "id": "122930", + "name": "Nokomis", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.30116000", + "longitude": "-89.28508000" + }, + { + "id": "122948", + "name": "Normal", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.51420000", + "longitude": "-88.99063000" + }, + { + "id": "122953", + "name": "Norridge", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.96336000", + "longitude": "-87.82728000" + }, + { + "id": "122956", + "name": "Norris City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.98116000", + "longitude": "-88.32921000" + }, + { + "id": "122970", + "name": "North Aurora", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.80614000", + "longitude": "-88.32730000" + }, + { + "id": "122973", + "name": "North Barrington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.20780000", + "longitude": "-88.14063000" + }, + { + "id": "123003", + "name": "North Center", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.95392000", + "longitude": "-87.67895000" + }, + { + "id": "123006", + "name": "North Chicago", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.32558000", + "longitude": "-87.84118000" + }, + { + "id": "123055", + "name": "North Lawndale", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.86003000", + "longitude": "-87.71839000" + }, + { + "id": "123077", + "name": "North Pekin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.61504000", + "longitude": "-89.62232000" + }, + { + "id": "123079", + "name": "North Peoria", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.71754000", + "longitude": "-89.58426000" + }, + { + "id": "123096", + "name": "North Riverside", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.84281000", + "longitude": "-87.82311000" + }, + { + "id": "123141", + "name": "Northbrook", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.12753000", + "longitude": "-87.82895000" + }, + { + "id": "123151", + "name": "Northfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09975000", + "longitude": "-87.78090000" + }, + { + "id": "123158", + "name": "Northlake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.91725000", + "longitude": "-87.89562000" + }, + { + "id": "123226", + "name": "O'Fallon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.59227000", + "longitude": "-89.91121000" + }, + { + "id": "123230", + "name": "Oak Brook", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.83281000", + "longitude": "-87.92895000" + }, + { + "id": "123233", + "name": "Oak Forest", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.60281000", + "longitude": "-87.74394000" + }, + { + "id": "123252", + "name": "Oak Lawn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.71087000", + "longitude": "-87.75811000" + }, + { + "id": "123255", + "name": "Oak Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88503000", + "longitude": "-87.78450000" + }, + { + "id": "123269", + "name": "Oakbrook Terrace", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.85003000", + "longitude": "-87.96451000" + }, + { + "id": "123309", + "name": "Oakwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.11615000", + "longitude": "-87.77836000" + }, + { + "id": "123312", + "name": "Oakwood Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.24641000", + "longitude": "-88.24286000" + }, + { + "id": "123319", + "name": "Oblong", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.00199000", + "longitude": "-87.90892000" + }, + { + "id": "123361", + "name": "Odin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.61727000", + "longitude": "-89.05229000" + }, + { + "id": "123376", + "name": "Ogle County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.04264000", + "longitude": "-89.32065000" + }, + { + "id": "123377", + "name": "Oglesby", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.29531000", + "longitude": "-89.05953000" + }, + { + "id": "123397", + "name": "Okawville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.43422000", + "longitude": "-89.55037000" + }, + { + "id": "123455", + "name": "Olney", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.73088000", + "longitude": "-88.08532000" + }, + { + "id": "123460", + "name": "Olympia Fields", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.51337000", + "longitude": "-87.67421000" + }, + { + "id": "123470", + "name": "Onarga", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.71504000", + "longitude": "-88.00615000" + }, + { + "id": "123500", + "name": "Oquawka", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.93198000", + "longitude": "-90.94709000" + }, + { + "id": "123546", + "name": "Oregon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.01475000", + "longitude": "-89.33233000" + }, + { + "id": "123556", + "name": "Orion", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.35476000", + "longitude": "-90.38152000" + }, + { + "id": "123560", + "name": "Orland Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.58531000", + "longitude": "-87.84311000" + }, + { + "id": "123561", + "name": "Orland Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.63031000", + "longitude": "-87.85394000" + }, + { + "id": "123622", + "name": "Oswego", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.68281000", + "longitude": "-88.35146000" + }, + { + "id": "123637", + "name": "Ottawa", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.34559000", + "longitude": "-88.84258000" + }, + { + "id": "123731", + "name": "Palatine", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.11030000", + "longitude": "-88.03424000" + }, + { + "id": "123736", + "name": "Palestine", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.00365000", + "longitude": "-87.61280000" + }, + { + "id": "123788", + "name": "Palos Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.66809000", + "longitude": "-87.79644000" + }, + { + "id": "123789", + "name": "Palos Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.69670000", + "longitude": "-87.81700000" + }, + { + "id": "123790", + "name": "Palos Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.66725000", + "longitude": "-87.83033000" + }, + { + "id": "123796", + "name": "Pana", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.38893000", + "longitude": "-89.08008000" + }, + { + "id": "123830", + "name": "Paris", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.61115000", + "longitude": "-87.69614000" + }, + { + "id": "123839", + "name": "Park City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.34836000", + "longitude": "-87.88424000" + }, + { + "id": "123845", + "name": "Park Forest", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.49142000", + "longitude": "-87.67449000" + }, + { + "id": "123851", + "name": "Park Ridge", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.01114000", + "longitude": "-87.84062000" + }, + { + "id": "123933", + "name": "Pawnee", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.59172000", + "longitude": "-89.58037000" + }, + { + "id": "123941", + "name": "Paxton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.46031000", + "longitude": "-88.09532000" + }, + { + "id": "123948", + "name": "Payson", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.81699000", + "longitude": "-91.24237000" + }, + { + "id": "123978", + "name": "Pecatonica", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.31391000", + "longitude": "-89.35928000" + }, + { + "id": "123986", + "name": "Pekin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.56754000", + "longitude": "-89.64066000" + }, + { + "id": "124046", + "name": "Peoria", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.69365000", + "longitude": "-89.58899000" + }, + { + "id": "124048", + "name": "Peoria County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.78808000", + "longitude": "-89.75999000" + }, + { + "id": "124049", + "name": "Peoria Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.74726000", + "longitude": "-89.57398000" + }, + { + "id": "124051", + "name": "Peotone", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.33226000", + "longitude": "-87.78532000" + }, + { + "id": "124076", + "name": "Perry County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.08376000", + "longitude": "-89.36702000" + }, + { + "id": "124095", + "name": "Peru", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.32753000", + "longitude": "-89.12897000" + }, + { + "id": "124106", + "name": "Petersburg", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.01172000", + "longitude": "-89.84817000" + }, + { + "id": "124143", + "name": "Philo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.00698000", + "longitude": "-88.15810000" + }, + { + "id": "124146", + "name": "Phoenix", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.61115000", + "longitude": "-87.63477000" + }, + { + "id": "124152", + "name": "Piatt County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.01037000", + "longitude": "-88.59109000" + }, + { + "id": "124188", + "name": "Pike County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.62250000", + "longitude": "-90.88629000" + }, + { + "id": "124210", + "name": "Pinckneyville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.08033000", + "longitude": "-89.38203000" + }, + { + "id": "124269", + "name": "Pingree Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.06864000", + "longitude": "-88.41342000" + }, + { + "id": "124284", + "name": "Pistakee Highlands", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.40863000", + "longitude": "-88.20648000" + }, + { + "id": "124297", + "name": "Pittsfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.60783000", + "longitude": "-90.80513000" + }, + { + "id": "124320", + "name": "Plainfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.62697000", + "longitude": "-88.20395000" + }, + { + "id": "124344", + "name": "Plano", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.66281000", + "longitude": "-88.53702000" + }, + { + "id": "124454", + "name": "Polo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.98614000", + "longitude": "-89.57928000" + }, + { + "id": "124473", + "name": "Pontiac", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.88087000", + "longitude": "-88.62978000" + }, + { + "id": "124475", + "name": "Pontoon Beach", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.73172000", + "longitude": "-90.08038000" + }, + { + "id": "124482", + "name": "Pope County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.41276000", + "longitude": "-88.56158000" + }, + { + "id": "124485", + "name": "Poplar Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.36835000", + "longitude": "-88.82205000" + }, + { + "id": "124498", + "name": "Port Barrington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.24252000", + "longitude": "-88.20203000" + }, + { + "id": "124499", + "name": "Port Byron", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.60642000", + "longitude": "-90.33541000" + }, + { + "id": "124548", + "name": "Portage Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.95781000", + "longitude": "-87.76506000" + }, + { + "id": "124573", + "name": "Posen", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.63170000", + "longitude": "-87.68144000" + }, + { + "id": "124628", + "name": "Prairie Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.27863000", + "longitude": "-88.26092000" + }, + { + "id": "124652", + "name": "Prestbury", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.78329000", + "longitude": "-88.41764000" + }, + { + "id": "124660", + "name": "Preston Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.49170000", + "longitude": "-88.08172000" + }, + { + "id": "124686", + "name": "Princeton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.36809000", + "longitude": "-89.46481000" + }, + { + "id": "124695", + "name": "Princeville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.92976000", + "longitude": "-89.75760000" + }, + { + "id": "124704", + "name": "Prophetstown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.67142000", + "longitude": "-89.93622000" + }, + { + "id": "124708", + "name": "Prospect Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09530000", + "longitude": "-87.93757000" + }, + { + "id": "124739", + "name": "Pulaski County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.22291000", + "longitude": "-89.12657000" + }, + { + "id": "124766", + "name": "Putnam County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.20447000", + "longitude": "-89.28583000" + }, + { + "id": "124796", + "name": "Quincy", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.93560000", + "longitude": "-91.40987000" + }, + { + "id": "124840", + "name": "Ramsey", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.14449000", + "longitude": "-89.10868000" + }, + { + "id": "124875", + "name": "Randolph County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.05212000", + "longitude": "-89.82531000" + }, + { + "id": "124891", + "name": "Rantoul", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.30837000", + "longitude": "-88.15588000" + }, + { + "id": "124942", + "name": "Red Bud", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.21172000", + "longitude": "-89.99427000" + }, + { + "id": "125074", + "name": "Richland County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.71236000", + "longitude": "-88.08510000" + }, + { + "id": "125089", + "name": "Richmond", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.47585000", + "longitude": "-88.30593000" + }, + { + "id": "125108", + "name": "Richton Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.48448000", + "longitude": "-87.70338000" + }, + { + "id": "125179", + "name": "River Forest", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.89781000", + "longitude": "-87.81395000" + }, + { + "id": "125180", + "name": "River Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.92586000", + "longitude": "-87.83589000" + }, + { + "id": "125193", + "name": "Riverdale", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.63337000", + "longitude": "-87.63310000" + }, + { + "id": "125206", + "name": "Riverside", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.83503000", + "longitude": "-87.82284000" + }, + { + "id": "125211", + "name": "Riverton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.84422000", + "longitude": "-89.53954000" + }, + { + "id": "125220", + "name": "Riverwoods", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.16753000", + "longitude": "-87.89701000" + }, + { + "id": "125229", + "name": "Roanoke", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.79615000", + "longitude": "-89.19730000" + }, + { + "id": "125235", + "name": "Robbins", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.64392000", + "longitude": "-87.70366000" + }, + { + "id": "125253", + "name": "Robinson", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.00532000", + "longitude": "-87.73919000" + }, + { + "id": "125259", + "name": "Rochelle", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.92392000", + "longitude": "-89.06871000" + }, + { + "id": "125261", + "name": "Rochester", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.74949000", + "longitude": "-89.53176000" + }, + { + "id": "125277", + "name": "Rock Falls", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.77975000", + "longitude": "-89.68900000" + }, + { + "id": "125283", + "name": "Rock Island", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.50948000", + "longitude": "-90.57875000" + }, + { + "id": "125284", + "name": "Rock Island County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.46733000", + "longitude": "-90.56743000" + }, + { + "id": "125296", + "name": "Rockdale", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.50614000", + "longitude": "-88.11450000" + }, + { + "id": "125300", + "name": "Rockford", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.27113000", + "longitude": "-89.09400000" + }, + { + "id": "125320", + "name": "Rockton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.45252000", + "longitude": "-89.07233000" + }, + { + "id": "125353", + "name": "Rogers Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.00864000", + "longitude": "-87.66672000" + }, + { + "id": "125368", + "name": "Rolling Meadows", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.08419000", + "longitude": "-88.01313000" + }, + { + "id": "125376", + "name": "Rome", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.88309000", + "longitude": "-89.50259000" + }, + { + "id": "125382", + "name": "Romeoville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.64753000", + "longitude": "-88.08951000" + }, + { + "id": "125389", + "name": "Roodhouse", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.48394000", + "longitude": "-90.37151000" + }, + { + "id": "125399", + "name": "Roscoe", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.41335000", + "longitude": "-89.00927000" + }, + { + "id": "125426", + "name": "Roselle", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.98475000", + "longitude": "-88.07979000" + }, + { + "id": "125430", + "name": "Rosemont", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.99531000", + "longitude": "-87.88451000" + }, + { + "id": "125442", + "name": "Rosewood Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.88783000", + "longitude": "-90.08483000" + }, + { + "id": "125444", + "name": "Rosiclare", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.42366000", + "longitude": "-88.34615000" + }, + { + "id": "125459", + "name": "Rossville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.37920000", + "longitude": "-87.66863000" + }, + { + "id": "125469", + "name": "Round Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.35336000", + "longitude": "-88.09341000" + }, + { + "id": "125470", + "name": "Round Lake Beach", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.37169000", + "longitude": "-88.09008000" + }, + { + "id": "125471", + "name": "Round Lake Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.38002000", + "longitude": "-88.10425000" + }, + { + "id": "125472", + "name": "Round Lake Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.35697000", + "longitude": "-88.07675000" + }, + { + "id": "125483", + "name": "Roxana", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.84838000", + "longitude": "-90.07622000" + }, + { + "id": "125495", + "name": "Royalton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.87699000", + "longitude": "-89.11452000" + }, + { + "id": "125526", + "name": "Rushville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.12116000", + "longitude": "-90.56318000" + }, + { + "id": "125599", + "name": "Saint Anne", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.02503000", + "longitude": "-87.71392000" + }, + { + "id": "125613", + "name": "Saint Charles", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.91419000", + "longitude": "-88.30869000" + }, + { + "id": "125622", + "name": "Saint Clair County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.47031000", + "longitude": "-89.92841000" + }, + { + "id": "125632", + "name": "Saint Elmo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.02727000", + "longitude": "-88.84811000" + }, + { + "id": "125651", + "name": "Saint Jacob", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.71394000", + "longitude": "-89.76815000" + }, + { + "id": "125672", + "name": "Saint Joseph", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.11170000", + "longitude": "-88.04170000" + }, + { + "id": "125728", + "name": "Salem", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.62699000", + "longitude": "-88.94562000" + }, + { + "id": "125750", + "name": "Saline County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.75318000", + "longitude": "-88.54080000" + }, + { + "id": "125868", + "name": "Sandoval", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.61560000", + "longitude": "-89.11423000" + }, + { + "id": "125876", + "name": "Sandwich", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.64586000", + "longitude": "-88.62174000" + }, + { + "id": "125889", + "name": "Sangamon County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.75817000", + "longitude": "-89.65890000" + }, + { + "id": "125966", + "name": "Sauk Village", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.48837000", + "longitude": "-87.56754000" + }, + { + "id": "125973", + "name": "Savanna", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09447000", + "longitude": "-90.15679000" + }, + { + "id": "125978", + "name": "Savoy", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.05475000", + "longitude": "-88.25172000" + }, + { + "id": "126002", + "name": "Schaumburg", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.03336000", + "longitude": "-88.08341000" + }, + { + "id": "126007", + "name": "Schiller Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.95586000", + "longitude": "-87.87090000" + }, + { + "id": "126022", + "name": "Schuyler County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.15803000", + "longitude": "-90.61507000" + }, + { + "id": "126040", + "name": "Scott Air Force Base", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.54270000", + "longitude": "-89.85035000" + }, + { + "id": "126044", + "name": "Scott County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.64414000", + "longitude": "-90.47470000" + }, + { + "id": "126157", + "name": "Seneca", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.31114000", + "longitude": "-88.60979000" + }, + { + "id": "126168", + "name": "Sesser", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.09172000", + "longitude": "-89.05035000" + }, + { + "id": "126253", + "name": "Shawneetown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.71310000", + "longitude": "-88.18670000" + }, + { + "id": "126273", + "name": "Shelby County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.39116000", + "longitude": "-88.80554000" + }, + { + "id": "126281", + "name": "Shelbyville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.40643000", + "longitude": "-88.79007000" + }, + { + "id": "126287", + "name": "Sheldon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.76920000", + "longitude": "-87.56392000" + }, + { + "id": "126319", + "name": "Sheridan", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.53003000", + "longitude": "-88.67980000" + }, + { + "id": "126329", + "name": "Sherman", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.89366000", + "longitude": "-89.60482000" + }, + { + "id": "126348", + "name": "Shiloh", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.56144000", + "longitude": "-89.89732000" + }, + { + "id": "126370", + "name": "Shorewood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.52003000", + "longitude": "-88.20173000" + }, + { + "id": "126395", + "name": "Sidney", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.02503000", + "longitude": "-88.07337000" + }, + { + "id": "126444", + "name": "Silvis", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.51226000", + "longitude": "-90.41513000" + }, + { + "id": "126483", + "name": "Skokie", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.03336000", + "longitude": "-87.73339000" + }, + { + "id": "126497", + "name": "Sleepy Hollow", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09419000", + "longitude": "-88.30258000" + }, + { + "id": "126525", + "name": "Smithton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.40866000", + "longitude": "-89.99205000" + }, + { + "id": "126597", + "name": "Somonauk", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.63364000", + "longitude": "-88.68119000" + }, + { + "id": "126617", + "name": "South Barrington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09142000", + "longitude": "-88.12174000" + }, + { + "id": "126623", + "name": "South Beloit", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.49307000", + "longitude": "-89.03678000" + }, + { + "id": "126637", + "name": "South Chicago", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.73977000", + "longitude": "-87.55425000" + }, + { + "id": "126638", + "name": "South Chicago Heights", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.48087000", + "longitude": "-87.63782000" + }, + { + "id": "126651", + "name": "South Elgin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.99419000", + "longitude": "-88.29230000" + }, + { + "id": "126674", + "name": "South Holland", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.60087000", + "longitude": "-87.60699000" + }, + { + "id": "126679", + "name": "South Jacksonville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.70866000", + "longitude": "-90.22818000" + }, + { + "id": "126687", + "name": "South Lawndale", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.84364000", + "longitude": "-87.71255000" + }, + { + "id": "126709", + "name": "South Pekin", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.49448000", + "longitude": "-89.65177000" + }, + { + "id": "126720", + "name": "South Roxana", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.82949000", + "longitude": "-90.06288000" + }, + { + "id": "126729", + "name": "South Shore", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.76198000", + "longitude": "-87.57783000" + }, + { + "id": "126771", + "name": "Southern View", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.75727000", + "longitude": "-89.65371000" + }, + { + "id": "126806", + "name": "Sparta", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.12311000", + "longitude": "-89.70177000" + }, + { + "id": "126858", + "name": "Spring Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.44363000", + "longitude": "-88.23648000" + }, + { + "id": "126875", + "name": "Spring Valley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.32754000", + "longitude": "-89.19981000" + }, + { + "id": "126890", + "name": "Springfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.80172000", + "longitude": "-89.64371000" + }, + { + "id": "126984", + "name": "Stark County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.09336000", + "longitude": "-89.79749000" + }, + { + "id": "127000", + "name": "Staunton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.01227000", + "longitude": "-89.79121000" + }, + { + "id": "127012", + "name": "Steeleville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.00727000", + "longitude": "-89.65843000" + }, + { + "id": "127016", + "name": "Steger", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.47003000", + "longitude": "-87.63643000" + }, + { + "id": "127024", + "name": "Stephenson County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.35175000", + "longitude": "-89.66235000" + }, + { + "id": "127029", + "name": "Sterling", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.78864000", + "longitude": "-89.69622000" + }, + { + "id": "127056", + "name": "Stickney", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.82142000", + "longitude": "-87.78283000" + }, + { + "id": "127059", + "name": "Stillman Valley", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.10725000", + "longitude": "-89.17927000" + }, + { + "id": "127073", + "name": "Stockton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.34974000", + "longitude": "-90.00679000" + }, + { + "id": "127084", + "name": "Stone Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.90559000", + "longitude": "-87.88367000" + }, + { + "id": "127135", + "name": "Streamwood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.02558000", + "longitude": "-88.17841000" + }, + { + "id": "127136", + "name": "Streator", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.12087000", + "longitude": "-88.83535000" + }, + { + "id": "127171", + "name": "Sugar Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.76142000", + "longitude": "-88.44369000" + }, + { + "id": "127181", + "name": "Sullivan", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.59948000", + "longitude": "-88.60784000" + }, + { + "id": "127212", + "name": "Summit", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.78809000", + "longitude": "-87.81033000" + }, + { + "id": "127221", + "name": "Sumner", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.71699000", + "longitude": "-87.86142000" + }, + { + "id": "127325", + "name": "Swansea", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.53394000", + "longitude": "-89.98899000" + }, + { + "id": "127351", + "name": "Sycamore", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.98892000", + "longitude": "-88.68675000" + }, + { + "id": "127467", + "name": "Taylorville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.54894000", + "longitude": "-89.29453000" + }, + { + "id": "127471", + "name": "Tazewell County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.50752000", + "longitude": "-89.51342000" + }, + { + "id": "127540", + "name": "Teutopolis", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.13310000", + "longitude": "-88.47199000" + }, + { + "id": "127558", + "name": "The Galena Territory", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.39343000", + "longitude": "-90.32582000" + }, + { + "id": "127577", + "name": "Third Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.37391000", + "longitude": "-88.01091000" + }, + { + "id": "127582", + "name": "Thomasboro", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.24170000", + "longitude": "-88.18421000" + }, + { + "id": "127601", + "name": "Thornton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.56809000", + "longitude": "-87.60810000" + }, + { + "id": "127653", + "name": "Tilton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.09531000", + "longitude": "-87.64752000" + }, + { + "id": "127666", + "name": "Tinley Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.57337000", + "longitude": "-87.78449000" + }, + { + "id": "127698", + "name": "Toledo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.27365000", + "longitude": "-88.24365000" + }, + { + "id": "127704", + "name": "Tolono", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.98614000", + "longitude": "-88.25894000" + }, + { + "id": "127705", + "name": "Toluca", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.00226000", + "longitude": "-89.13342000" + }, + { + "id": "127749", + "name": "Toulon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.09365000", + "longitude": "-89.86483000" + }, + { + "id": "127755", + "name": "Tower Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.23197000", + "longitude": "-88.15202000" + }, + { + "id": "127793", + "name": "Tremont", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.52754000", + "longitude": "-89.49260000" + }, + { + "id": "127803", + "name": "Trenton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.60560000", + "longitude": "-89.68204000" + }, + { + "id": "127843", + "name": "Troy", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.72921000", + "longitude": "-89.88315000" + }, + { + "id": "127911", + "name": "Tuscola", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.79920000", + "longitude": "-88.28310000" + }, + { + "id": "127926", + "name": "Twin Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.49337000", + "longitude": "-89.07980000" + }, + { + "id": "127991", + "name": "Union County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.47123000", + "longitude": "-89.25509000" + }, + { + "id": "128035", + "name": "University Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.44298000", + "longitude": "-87.68360000" + }, + { + "id": "128040", + "name": "Upper Alton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.91144000", + "longitude": "-90.15066000" + }, + { + "id": "128058", + "name": "Uptown", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.96590000", + "longitude": "-87.65262000" + }, + { + "id": "128062", + "name": "Urbana", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.11059000", + "longitude": "-88.20727000" + }, + { + "id": "128119", + "name": "Valmeyer", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.30561000", + "longitude": "-90.27651000" + }, + { + "id": "128145", + "name": "Vandalia", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.96060000", + "longitude": "-89.09368000" + }, + { + "id": "128169", + "name": "Venetian Village", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.39863000", + "longitude": "-88.05258000" + }, + { + "id": "128171", + "name": "Venice", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.67227000", + "longitude": "-90.16983000" + }, + { + "id": "128183", + "name": "Vermilion County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.18342000", + "longitude": "-87.73283000" + }, + { + "id": "128194", + "name": "Vernon Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.21947000", + "longitude": "-87.97952000" + }, + { + "id": "128231", + "name": "Vienna", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.41533000", + "longitude": "-88.89784000" + }, + { + "id": "128241", + "name": "Villa Grove", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.86281000", + "longitude": "-88.16227000" + }, + { + "id": "128243", + "name": "Villa Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88975000", + "longitude": "-87.98895000" + }, + { + "id": "128252", + "name": "Village of Campton Hills", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.93660000", + "longitude": "-88.39750000" + }, + { + "id": "128285", + "name": "Virden", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.50089000", + "longitude": "-89.76787000" + }, + { + "id": "128286", + "name": "Virginia", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.95116000", + "longitude": "-90.21234000" + }, + { + "id": "128302", + "name": "Volo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.32613000", + "longitude": "-88.16786000" + }, + { + "id": "128310", + "name": "Wabash County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.44607000", + "longitude": "-87.84425000" + }, + { + "id": "128326", + "name": "Wadsworth", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.42863000", + "longitude": "-87.92397000" + }, + { + "id": "128413", + "name": "Walnut", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.55670000", + "longitude": "-89.59343000" + }, + { + "id": "128443", + "name": "Wamac", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.50894000", + "longitude": "-89.14063000" + }, + { + "id": "128479", + "name": "Warren", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.49640000", + "longitude": "-89.98957000" + }, + { + "id": "128494", + "name": "Warren County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.84883000", + "longitude": "-90.61503000" + }, + { + "id": "128501", + "name": "Warrensburg", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.93282000", + "longitude": "-89.06203000" + }, + { + "id": "128510", + "name": "Warrenville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.81781000", + "longitude": "-88.17340000" + }, + { + "id": "128519", + "name": "Warsaw", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.35921000", + "longitude": "-91.43460000" + }, + { + "id": "128527", + "name": "Wasco", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.93808000", + "longitude": "-88.40452000" + }, + { + "id": "128533", + "name": "Washburn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.91920000", + "longitude": "-89.29120000" + }, + { + "id": "128546", + "name": "Washington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.70365000", + "longitude": "-89.40731000" + }, + { + "id": "128556", + "name": "Washington County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.35217000", + "longitude": "-89.41045000" + }, + { + "id": "128585", + "name": "Washington Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.63505000", + "longitude": "-90.09289000" + }, + { + "id": "128611", + "name": "Waterloo", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.33589000", + "longitude": "-90.14983000" + }, + { + "id": "128617", + "name": "Waterman", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.77170000", + "longitude": "-88.77369000" + }, + { + "id": "128638", + "name": "Watseka", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.77615000", + "longitude": "-87.73642000" + }, + { + "id": "128646", + "name": "Wauconda", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.25891000", + "longitude": "-88.13925000" + }, + { + "id": "128648", + "name": "Waukegan", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.36363000", + "longitude": "-87.84479000" + }, + { + "id": "128665", + "name": "Waverly", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.59172000", + "longitude": "-89.95288000" + }, + { + "id": "128682", + "name": "Wayne", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.95086000", + "longitude": "-88.24230000" + }, + { + "id": "128688", + "name": "Wayne City", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.34533000", + "longitude": "-88.58783000" + }, + { + "id": "128690", + "name": "Wayne County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.42956000", + "longitude": "-88.42561000" + }, + { + "id": "128846", + "name": "West Chicago", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88475000", + "longitude": "-88.20396000" + }, + { + "id": "128858", + "name": "West Dundee", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.09808000", + "longitude": "-88.28286000" + }, + { + "id": "128862", + "name": "West Elsdon", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.79392000", + "longitude": "-87.72450000" + }, + { + "id": "128865", + "name": "West Englewood", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.77809000", + "longitude": "-87.66672000" + }, + { + "id": "128873", + "name": "West Frankfort", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.89783000", + "longitude": "-88.93146000" + }, + { + "id": "128875", + "name": "West Garfield Park", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.88059000", + "longitude": "-87.72922000" + }, + { + "id": "128913", + "name": "West Lawn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.77281000", + "longitude": "-87.72227000" + }, + { + "id": "128953", + "name": "West Peoria", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.69254000", + "longitude": "-89.62788000" + }, + { + "id": "128969", + "name": "West Ridge", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.99975000", + "longitude": "-87.69284000" + }, + { + "id": "128992", + "name": "West Town", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.89381000", + "longitude": "-87.67493000" + }, + { + "id": "129019", + "name": "Westchester", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.85059000", + "longitude": "-87.88200000" + }, + { + "id": "129025", + "name": "Western Springs", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.80975000", + "longitude": "-87.90062000" + }, + { + "id": "129049", + "name": "Westmont", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.79586000", + "longitude": "-87.97562000" + }, + { + "id": "129078", + "name": "Westville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.04226000", + "longitude": "-87.63863000" + }, + { + "id": "129113", + "name": "Wheaton", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.86614000", + "longitude": "-88.10701000" + }, + { + "id": "129120", + "name": "Wheeling", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.13919000", + "longitude": "-87.92896000" + }, + { + "id": "129136", + "name": "White County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.08748000", + "longitude": "-88.17957000" + }, + { + "id": "129140", + "name": "White Hall", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.43699000", + "longitude": "-90.40318000" + }, + { + "id": "129186", + "name": "Whiteside County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.75626000", + "longitude": "-89.91409000" + }, + { + "id": "129253", + "name": "Will County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.44503000", + "longitude": "-87.97866000" + }, + { + "id": "129276", + "name": "Williamson County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.73025000", + "longitude": "-88.92994000" + }, + { + "id": "129291", + "name": "Williamsville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.95422000", + "longitude": "-89.54871000" + }, + { + "id": "129310", + "name": "Willow Springs", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.74087000", + "longitude": "-87.86033000" + }, + { + "id": "129313", + "name": "Willowbrook", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.76975000", + "longitude": "-87.93589000" + }, + { + "id": "129320", + "name": "Wilmette", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.07225000", + "longitude": "-87.72284000" + }, + { + "id": "129323", + "name": "Wilmington", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.30781000", + "longitude": "-88.14672000" + }, + { + "id": "129352", + "name": "Winchester", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.62977000", + "longitude": "-90.45624000" + }, + { + "id": "129377", + "name": "Windsor", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "39.44087000", + "longitude": "-88.59478000" + }, + { + "id": "129397", + "name": "Winfield", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.86170000", + "longitude": "-88.16090000" + }, + { + "id": "129405", + "name": "Winnebago", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.26613000", + "longitude": "-89.24122000" + }, + { + "id": "129408", + "name": "Winnebago County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.33626000", + "longitude": "-89.16085000" + }, + { + "id": "129414", + "name": "Winnetka", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.10808000", + "longitude": "-87.73590000" + }, + { + "id": "129452", + "name": "Winthrop Harbor", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.47891000", + "longitude": "-87.82368000" + }, + { + "id": "129483", + "name": "Wonder Lake", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.38530000", + "longitude": "-88.34731000" + }, + { + "id": "129487", + "name": "Wood Dale", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.96336000", + "longitude": "-87.97896000" + }, + { + "id": "129488", + "name": "Wood River", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.86116000", + "longitude": "-90.09761000" + }, + { + "id": "129520", + "name": "Woodford County", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "40.78823000", + "longitude": "-89.21114000" + }, + { + "id": "129536", + "name": "Woodlawn", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.77948000", + "longitude": "-87.59949000" + }, + { + "id": "129545", + "name": "Woodridge", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.74697000", + "longitude": "-88.05034000" + }, + { + "id": "129563", + "name": "Woodstock", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.31474000", + "longitude": "-88.44870000" + }, + { + "id": "129588", + "name": "Worden", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "38.93144000", + "longitude": "-89.83899000" + }, + { + "id": "129591", + "name": "Worth", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.68975000", + "longitude": "-87.79728000" + }, + { + "id": "129635", + "name": "Wyoming", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.06170000", + "longitude": "-89.77316000" + }, + { + "id": "129709", + "name": "Yorkville", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "41.64114000", + "longitude": "-88.44729000" + }, + { + "id": "129745", + "name": "Zeigler", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "37.89949000", + "longitude": "-89.05202000" + }, + { + "id": "129757", + "name": "Zion", + "state_id": 1425, + "state_code": "IL", + "country_id": 233, + "country_code": "US", + "latitude": "42.44613000", + "longitude": "-87.83285000" + }, + { + "id": "110976", + "name": "Aberdeen", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.43893000", + "longitude": "-87.11142000" + }, + { + "id": "111021", + "name": "Adams County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.74566000", + "longitude": "-84.93665000" + }, + { + "id": "111077", + "name": "Akron", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.03838000", + "longitude": "-86.02805000" + }, + { + "id": "111105", + "name": "Albany", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.30088000", + "longitude": "-85.24191000" + }, + { + "id": "111124", + "name": "Albion", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.39560000", + "longitude": "-85.42442000" + }, + { + "id": "111153", + "name": "Alexandria", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.26282000", + "longitude": "-85.67581000" + }, + { + "id": "111190", + "name": "Allen County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.09087000", + "longitude": "-85.06656000" + }, + { + "id": "111313", + "name": "Anderson", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.10532000", + "longitude": "-85.68025000" + }, + { + "id": "111330", + "name": "Andrews", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.86254000", + "longitude": "-85.60165000" + }, + { + "id": "111340", + "name": "Angola", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.63477000", + "longitude": "-84.99941000" + }, + { + "id": "111423", + "name": "Arcadia", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.17587000", + "longitude": "-86.02165000" + }, + { + "id": "111449", + "name": "Argos", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.23780000", + "longitude": "-86.21465000" + }, + { + "id": "111609", + "name": "Attica", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.29420000", + "longitude": "-87.24890000" + }, + { + "id": "111625", + "name": "Auburn", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.36699000", + "longitude": "-85.05886000" + }, + { + "id": "111656", + "name": "Aurora", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.05700000", + "longitude": "-84.90134000" + }, + { + "id": "111667", + "name": "Austin", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.75839000", + "longitude": "-85.80803000" + }, + { + "id": "111684", + "name": "Avilla", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.36588000", + "longitude": "-85.23886000" + }, + { + "id": "111690", + "name": "Avon", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.76282000", + "longitude": "-86.39972000" + }, + { + "id": "111822", + "name": "Bargersville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.52088000", + "longitude": "-86.16777000" + }, + { + "id": "111859", + "name": "Bartholomew County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.20597000", + "longitude": "-85.89760000" + }, + { + "id": "111880", + "name": "Bass Lake", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.20726000", + "longitude": "-86.60196000" + }, + { + "id": "111893", + "name": "Batesville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.30005000", + "longitude": "-85.22218000" + }, + { + "id": "111906", + "name": "Battle Ground", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.50837000", + "longitude": "-86.84168000" + }, + { + "id": "112018", + "name": "Bedford", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.86116000", + "longitude": "-86.48721000" + }, + { + "id": "112037", + "name": "Beech Grove", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.72199000", + "longitude": "-86.08998000" + }, + { + "id": "112204", + "name": "Benton County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.60626000", + "longitude": "-87.31091000" + }, + { + "id": "112246", + "name": "Berne", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.65782000", + "longitude": "-84.95191000" + }, + { + "id": "112311", + "name": "Bicknell", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.77421000", + "longitude": "-87.30779000" + }, + { + "id": "112386", + "name": "Blackford County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.47360000", + "longitude": "-85.32482000" + }, + { + "id": "112434", + "name": "Bloomfield", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.02699000", + "longitude": "-86.93751000" + }, + { + "id": "112449", + "name": "Bloomington", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.16533000", + "longitude": "-86.52639000" + }, + { + "id": "112484", + "name": "Bluffton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.73866000", + "longitude": "-85.17164000" + }, + { + "id": "112560", + "name": "Boone County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.05080000", + "longitude": "-86.46870000" + }, + { + "id": "112567", + "name": "Boonville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.04921000", + "longitude": "-87.27417000" + }, + { + "id": "112612", + "name": "Bourbon", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.29560000", + "longitude": "-86.11639000" + }, + { + "id": "112703", + "name": "Brazil", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.52365000", + "longitude": "-87.12502000" + }, + { + "id": "112721", + "name": "Bremen", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.44644000", + "longitude": "-86.14806000" + }, + { + "id": "112785", + "name": "Bright", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.21839000", + "longitude": "-84.85606000" + }, + { + "id": "112805", + "name": "Bristol", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.72144000", + "longitude": "-85.81749000" + }, + { + "id": "112822", + "name": "Broad Ripple", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.86671000", + "longitude": "-86.14165000" + }, + { + "id": "112869", + "name": "Brooklyn", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.53921000", + "longitude": "-86.36916000" + }, + { + "id": "112889", + "name": "Brookston", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.60281000", + "longitude": "-86.86723000" + }, + { + "id": "112894", + "name": "Brookville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.42311000", + "longitude": "-85.01274000" + }, + { + "id": "112908", + "name": "Brown County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.19621000", + "longitude": "-86.22737000" + }, + { + "id": "112924", + "name": "Brownsburg", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.84338000", + "longitude": "-86.39777000" + }, + { + "id": "112926", + "name": "Brownstown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.87894000", + "longitude": "-86.04192000" + }, + { + "id": "113089", + "name": "Burns Harbor", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.62587000", + "longitude": "-87.13337000" + }, + { + "id": "113109", + "name": "Butler", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.42977000", + "longitude": "-84.87135000" + }, + { + "id": "113257", + "name": "Cambridge City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.81255000", + "longitude": "-85.17163000" + }, + { + "id": "113330", + "name": "Cannelton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "37.91144000", + "longitude": "-86.74443000" + }, + { + "id": "113416", + "name": "Carmel", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.97837000", + "longitude": "-86.11804000" + }, + { + "id": "113460", + "name": "Carroll County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.58286000", + "longitude": "-86.56348000" + }, + { + "id": "113530", + "name": "Cass County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.76149000", + "longitude": "-86.34595000" + }, + { + "id": "113593", + "name": "Cayuga", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.94865000", + "longitude": "-87.45974000" + }, + { + "id": "113617", + "name": "Cedar Lake", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.36476000", + "longitude": "-87.44115000" + }, + { + "id": "113653", + "name": "Centerville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.81782000", + "longitude": "-84.99635000" + }, + { + "id": "113728", + "name": "Chandler", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.04171000", + "longitude": "-87.36806000" + }, + { + "id": "113770", + "name": "Charlestown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.45312000", + "longitude": "-85.67024000" + }, + { + "id": "113903", + "name": "Chesterfield", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.11254000", + "longitude": "-85.59692000" + }, + { + "id": "113909", + "name": "Chesterton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.61059000", + "longitude": "-87.06420000" + }, + { + "id": "114015", + "name": "Churubusco", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.23060000", + "longitude": "-85.31942000" + }, + { + "id": "114020", + "name": "Cicero", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.12393000", + "longitude": "-86.01332000" + }, + { + "id": "114123", + "name": "Clark County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.47718000", + "longitude": "-85.70728000" + }, + { + "id": "114153", + "name": "Clarksville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.29674000", + "longitude": "-85.75996000" + }, + { + "id": "114178", + "name": "Clay County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.39273000", + "longitude": "-87.11576000" + }, + { + "id": "114239", + "name": "Clermont", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.80977000", + "longitude": "-86.32249000" + }, + { + "id": "114268", + "name": "Clinton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.65698000", + "longitude": "-87.39807000" + }, + { + "id": "114293", + "name": "Clinton County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.30169000", + "longitude": "-86.47516000" + }, + { + "id": "114309", + "name": "Cloverdale", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.51477000", + "longitude": "-86.79390000" + }, + { + "id": "114475", + "name": "Columbia City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.15727000", + "longitude": "-85.48831000" + }, + { + "id": "114490", + "name": "Columbus", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.20144000", + "longitude": "-85.92138000" + }, + { + "id": "114564", + "name": "Connersville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.64116000", + "longitude": "-85.14107000" + }, + { + "id": "114579", + "name": "Converse", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.57754000", + "longitude": "-85.87332000" + }, + { + "id": "114641", + "name": "Cordry Sweetwater Lakes", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.30464000", + "longitude": "-86.11837000" + }, + { + "id": "114681", + "name": "Corydon", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.21201000", + "longitude": "-86.12192000" + }, + { + "id": "114723", + "name": "Country Squire Lakes", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.03478000", + "longitude": "-85.69858000" + }, + { + "id": "114740", + "name": "Covington", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.14170000", + "longitude": "-87.39474000" + }, + { + "id": "114777", + "name": "Crawford County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.29241000", + "longitude": "-86.45171000" + }, + { + "id": "114784", + "name": "Crawfordsville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.04115000", + "longitude": "-86.87445000" + }, + { + "id": "114858", + "name": "Crothersville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.80061000", + "longitude": "-85.84164000" + }, + { + "id": "114867", + "name": "Crown Point", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.41698000", + "longitude": "-87.36531000" + }, + { + "id": "114902", + "name": "Culver", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.21893000", + "longitude": "-86.42306000" + }, + { + "id": "114905", + "name": "Cumberland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.77615000", + "longitude": "-85.95720000" + }, + { + "id": "114979", + "name": "Dale", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.16894000", + "longitude": "-86.99000000" + }, + { + "id": "114985", + "name": "Daleville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.12115000", + "longitude": "-85.55803000" + }, + { + "id": "115034", + "name": "Danville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.76060000", + "longitude": "-86.52639000" + }, + { + "id": "115052", + "name": "Darmstadt", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.09921000", + "longitude": "-87.57891000" + }, + { + "id": "115069", + "name": "Daviess County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.70241000", + "longitude": "-87.07207000" + }, + { + "id": "115095", + "name": "Dayton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.37420000", + "longitude": "-86.76890000" + }, + { + "id": "115146", + "name": "Dearborn County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.14519000", + "longitude": "-84.97326000" + }, + { + "id": "115156", + "name": "Decatur", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.83060000", + "longitude": "-84.92913000" + }, + { + "id": "115160", + "name": "Decatur County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.30700000", + "longitude": "-85.50114000" + }, + { + "id": "115133", + "name": "DeKalb County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.39758000", + "longitude": "-84.99909000" + }, + { + "id": "115206", + "name": "Delaware County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.22753000", + "longitude": "-85.39690000" + }, + { + "id": "115220", + "name": "Delphi", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.58754000", + "longitude": "-86.67501000" + }, + { + "id": "115135", + "name": "DeMotte", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.19504000", + "longitude": "-87.19864000" + }, + { + "id": "115345", + "name": "Dillsboro", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.01783000", + "longitude": "-85.05884000" + }, + { + "id": "115498", + "name": "Dubois County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.36428000", + "longitude": "-86.87980000" + }, + { + "id": "115538", + "name": "Dunkirk", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.75643000", + "longitude": "-86.39361000" + }, + { + "id": "115543", + "name": "Dunlap", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.63783000", + "longitude": "-85.92166000" + }, + { + "id": "115586", + "name": "Dyer", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.49420000", + "longitude": "-87.52171000" + }, + { + "id": "115645", + "name": "East Chicago", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.63920000", + "longitude": "-87.45476000" + }, + { + "id": "115801", + "name": "Eaton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.34032000", + "longitude": "-85.35080000" + }, + { + "id": "115861", + "name": "Edgewood", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.10337000", + "longitude": "-85.73414000" + }, + { + "id": "115873", + "name": "Edinburgh", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.35422000", + "longitude": "-85.96666000" + }, + { + "id": "115998", + "name": "Elkhart", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.68199000", + "longitude": "-85.97667000" + }, + { + "id": "116000", + "name": "Elkhart County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.59738000", + "longitude": "-85.85876000" + }, + { + "id": "116022", + "name": "Ellettsville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.23393000", + "longitude": "-86.62500000" + }, + { + "id": "116079", + "name": "Elwood", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.27698000", + "longitude": "-85.84192000" + }, + { + "id": "116135", + "name": "English", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.33450000", + "longitude": "-86.46415000" + }, + { + "id": "116253", + "name": "Evansville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "37.97476000", + "longitude": "-87.55585000" + }, + { + "id": "116323", + "name": "Fairfield Heights", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.82861000", + "longitude": "-86.38224000" + }, + { + "id": "116340", + "name": "Fairmount", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.41532000", + "longitude": "-85.65053000" + }, + { + "id": "116359", + "name": "Fairview Park", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.68031000", + "longitude": "-87.41752000" + }, + { + "id": "116405", + "name": "Farmersburg", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.24865000", + "longitude": "-87.38196000" + }, + { + "id": "116425", + "name": "Farmland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.18782000", + "longitude": "-85.12747000" + }, + { + "id": "116446", + "name": "Fayette County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.64006000", + "longitude": "-85.17873000" + }, + { + "id": "116477", + "name": "Ferdinand", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.22394000", + "longitude": "-86.86222000" + }, + { + "id": "116526", + "name": "Fish Lake", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.56671000", + "longitude": "-86.55196000" + }, + { + "id": "116529", + "name": "Fishers", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.95559000", + "longitude": "-86.01387000" + }, + { + "id": "116572", + "name": "Flora", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.54726000", + "longitude": "-86.52444000" + }, + { + "id": "116607", + "name": "Floyd County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.31891000", + "longitude": "-85.90687000" + }, + { + "id": "116697", + "name": "Fort Branch", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.25116000", + "longitude": "-87.58113000" + }, + { + "id": "116763", + "name": "Fort Wayne", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.13060000", + "longitude": "-85.12886000" + }, + { + "id": "116769", + "name": "Fortville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.93226000", + "longitude": "-85.84804000" + }, + { + "id": "116779", + "name": "Fountain County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.12087000", + "longitude": "-87.24199000" + }, + { + "id": "116794", + "name": "Fowler", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.61670000", + "longitude": "-87.32085000" + }, + { + "id": "116820", + "name": "Frankfort", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.27948000", + "longitude": "-86.51084000" + }, + { + "id": "116833", + "name": "Franklin", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.48061000", + "longitude": "-86.05499000" + }, + { + "id": "116848", + "name": "Franklin County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.41486000", + "longitude": "-85.06028000" + }, + { + "id": "116879", + "name": "Frankton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.22282000", + "longitude": "-85.77887000" + }, + { + "id": "116920", + "name": "Fremont", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.73088000", + "longitude": "-84.93274000" + }, + { + "id": "116931", + "name": "French Lick", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.54894000", + "longitude": "-86.61999000" + }, + { + "id": "116996", + "name": "Fulton County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.04696000", + "longitude": "-86.26358000" + }, + { + "id": "117021", + "name": "Galena", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.35173000", + "longitude": "-85.94164000" + }, + { + "id": "117043", + "name": "Galveston", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.57893000", + "longitude": "-86.19027000" + }, + { + "id": "117098", + "name": "Garrett", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.34949000", + "longitude": "-85.13553000" + }, + { + "id": "117106", + "name": "Gary", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.59337000", + "longitude": "-87.34643000" + }, + { + "id": "117109", + "name": "Gas City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.48726000", + "longitude": "-85.61303000" + }, + { + "id": "117141", + "name": "Geneva", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.59199000", + "longitude": "-84.95719000" + }, + { + "id": "117163", + "name": "Georgetown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.74060000", + "longitude": "-86.50473000" + }, + { + "id": "117189", + "name": "Gibson County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.31183000", + "longitude": "-87.58459000" + }, + { + "id": "117384", + "name": "Goodland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.76337000", + "longitude": "-87.29363000" + }, + { + "id": "117408", + "name": "Goshen", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.58227000", + "longitude": "-85.83444000" + }, + { + "id": "117424", + "name": "Grabill", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.21088000", + "longitude": "-84.96691000" + }, + { + "id": "117488", + "name": "Granger", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.75338000", + "longitude": "-86.11084000" + }, + { + "id": "117512", + "name": "Grant County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.51584000", + "longitude": "-85.65473000" + }, + { + "id": "117624", + "name": "Greencastle", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.64449000", + "longitude": "-86.86473000" + }, + { + "id": "117626", + "name": "Greendale", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.11256000", + "longitude": "-84.86412000" + }, + { + "id": "117635", + "name": "Greene County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.03633000", + "longitude": "-86.96205000" + }, + { + "id": "117646", + "name": "Greenfield", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.78504000", + "longitude": "-85.76942000" + }, + { + "id": "117669", + "name": "Greensburg", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.33727000", + "longitude": "-85.48358000" + }, + { + "id": "117674", + "name": "Greentown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.47809000", + "longitude": "-85.96665000" + }, + { + "id": "117702", + "name": "Greenwood", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.61366000", + "longitude": "-86.10665000" + }, + { + "id": "117732", + "name": "Griffith", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.52837000", + "longitude": "-87.42365000" + }, + { + "id": "117741", + "name": "Grissom Air Force Base", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.65753000", + "longitude": "-86.14755000" + }, + { + "id": "117798", + "name": "Gulivoire Park", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.61338000", + "longitude": "-86.24528000" + }, + { + "id": "117837", + "name": "Hagerstown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.91116000", + "longitude": "-85.16163000" + }, + { + "id": "117891", + "name": "Hamilton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.53366000", + "longitude": "-84.91274000" + }, + { + "id": "117901", + "name": "Hamilton County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.07249000", + "longitude": "-86.05201000" + }, + { + "id": "117913", + "name": "Hammond", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.58337000", + "longitude": "-87.50004000" + }, + { + "id": "117951", + "name": "Hancock County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.82355000", + "longitude": "-85.77324000" + }, + { + "id": "117966", + "name": "Hanover", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.71423000", + "longitude": "-85.47357000" + }, + { + "id": "118017", + "name": "Harlan", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.19616000", + "longitude": "-84.91969000" + }, + { + "id": "118062", + "name": "Harrison County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.19512000", + "longitude": "-86.11131000" + }, + { + "id": "118094", + "name": "Hartford City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.45115000", + "longitude": "-85.36997000" + }, + { + "id": "118141", + "name": "Haubstadt", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.20504000", + "longitude": "-87.57419000" + }, + { + "id": "118235", + "name": "Hebron", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.31865000", + "longitude": "-87.20031000" + }, + { + "id": "118287", + "name": "Hendricks County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.76952000", + "longitude": "-86.50998000" + }, + { + "id": "118299", + "name": "Henry County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.93104000", + "longitude": "-85.39644000" + }, + { + "id": "118308", + "name": "Henryville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.54173000", + "longitude": "-85.76774000" + }, + { + "id": "118320", + "name": "Heritage Lake", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.72779000", + "longitude": "-86.71022000" + }, + { + "id": "118379", + "name": "Hidden Valley", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.16228000", + "longitude": "-84.84301000" + }, + { + "id": "118396", + "name": "Highland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.55365000", + "longitude": "-87.45198000" + }, + { + "id": "118497", + "name": "Hobart", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.53226000", + "longitude": "-87.25504000" + }, + { + "id": "118643", + "name": "Hope", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.30394000", + "longitude": "-85.77137000" + }, + { + "id": "118716", + "name": "Howard County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.48359000", + "longitude": "-86.11693000" + }, + { + "id": "118751", + "name": "Hudson Lake", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.71032000", + "longitude": "-86.53419000" + }, + { + "id": "118793", + "name": "Huntertown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.22838000", + "longitude": "-85.17247000" + }, + { + "id": "118794", + "name": "Huntingburg", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.29894000", + "longitude": "-86.95500000" + }, + { + "id": "118801", + "name": "Huntington", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.88310000", + "longitude": "-85.49748000" + }, + { + "id": "118806", + "name": "Huntington County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.82924000", + "longitude": "-85.48817000" + }, + { + "id": "118905", + "name": "Indian Heights", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.42726000", + "longitude": "-86.12555000" + }, + { + "id": "118924", + "name": "Indianapolis", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.76838000", + "longitude": "-86.15804000" + }, + { + "id": "118933", + "name": "Ingalls", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.95699000", + "longitude": "-85.80526000" + }, + { + "id": "119080", + "name": "Jackson County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.90642000", + "longitude": "-86.03754000" + }, + { + "id": "119137", + "name": "Jasonville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.16310000", + "longitude": "-87.19918000" + }, + { + "id": "119141", + "name": "Jasper", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.39144000", + "longitude": "-86.93111000" + }, + { + "id": "119152", + "name": "Jasper County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.02300000", + "longitude": "-87.11612000" + }, + { + "id": "119155", + "name": "Jay County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.43792000", + "longitude": "-85.00564000" + }, + { + "id": "119180", + "name": "Jefferson County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.78582000", + "longitude": "-85.43857000" + }, + { + "id": "119208", + "name": "Jeffersonville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.27757000", + "longitude": "-85.73718000" + }, + { + "id": "119220", + "name": "Jennings County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.99693000", + "longitude": "-85.62806000" + }, + { + "id": "119263", + "name": "Johnson County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.48997000", + "longitude": "-86.10164000" + }, + { + "id": "119303", + "name": "Jonesboro", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.47976000", + "longitude": "-85.62775000" + }, + { + "id": "119451", + "name": "Kendallville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.44144000", + "longitude": "-85.26498000" + }, + { + "id": "119496", + "name": "Kentland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.77032000", + "longitude": "-87.44530000" + }, + { + "id": "119613", + "name": "Kingsford Heights", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.48060000", + "longitude": "-86.69169000" + }, + { + "id": "119676", + "name": "Knightstown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.79560000", + "longitude": "-85.52636000" + }, + { + "id": "119682", + "name": "Knox", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.29588000", + "longitude": "-86.62501000" + }, + { + "id": "119685", + "name": "Knox County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.68909000", + "longitude": "-87.41801000" + }, + { + "id": "119702", + "name": "Kokomo", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.48643000", + "longitude": "-86.13360000" + }, + { + "id": "119706", + "name": "Koontz Lake", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.41810000", + "longitude": "-86.48585000" + }, + { + "id": "119710", + "name": "Kosciusko County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.24410000", + "longitude": "-85.86072000" + }, + { + "id": "119714", + "name": "Kouts", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.31671000", + "longitude": "-87.02586000" + }, + { + "id": "119777", + "name": "La Porte", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.60774000", + "longitude": "-86.71389000" + }, + { + "id": "119834", + "name": "Lafayette", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.41670000", + "longitude": "-86.87529000" + }, + { + "id": "119848", + "name": "Lagrange", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.64172000", + "longitude": "-85.41665000" + }, + { + "id": "119802", + "name": "LaGrange County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.64261000", + "longitude": "-85.42650000" + }, + { + "id": "119892", + "name": "Lake County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.47221000", + "longitude": "-87.37637000" + }, + { + "id": "119901", + "name": "Lake Dalecarlia", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.33087000", + "longitude": "-87.39476000" + }, + { + "id": "119979", + "name": "Lake Station", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.57504000", + "longitude": "-87.23892000" + }, + { + "id": "120026", + "name": "Lakes of the Four Seasons", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.41032000", + "longitude": "-87.21309000" + }, + { + "id": "120133", + "name": "Lapel", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.06837000", + "longitude": "-85.84831000" + }, + { + "id": "119804", + "name": "LaPorte", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.61060000", + "longitude": "-86.72252000" + }, + { + "id": "119805", + "name": "LaPorte County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.54902000", + "longitude": "-86.74237000" + }, + { + "id": "120225", + "name": "Lawrence", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.83865000", + "longitude": "-86.02526000" + }, + { + "id": "120232", + "name": "Lawrence County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.84116000", + "longitude": "-86.48345000" + }, + { + "id": "120240", + "name": "Lawrenceburg", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.09089000", + "longitude": "-84.84995000" + }, + { + "id": "120289", + "name": "Lebanon", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.04837000", + "longitude": "-86.46917000" + }, + { + "id": "120379", + "name": "Leo-Cedarville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.21255000", + "longitude": "-85.01664000" + }, + { + "id": "120460", + "name": "Liberty", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.63560000", + "longitude": "-84.93107000" + }, + { + "id": "120481", + "name": "Ligonier", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.46588000", + "longitude": "-85.58748000" + }, + { + "id": "120589", + "name": "Linton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.03477000", + "longitude": "-87.16585000" + }, + { + "id": "120707", + "name": "Logansport", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.75448000", + "longitude": "-86.35667000" + }, + { + "id": "120736", + "name": "Long Beach", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.73893000", + "longitude": "-86.85697000" + }, + { + "id": "120764", + "name": "Loogootee", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.67699000", + "longitude": "-86.91417000" + }, + { + "id": "120835", + "name": "Lowell", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.29142000", + "longitude": "-87.42059000" + }, + { + "id": "120926", + "name": "Lynn", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.04977000", + "longitude": "-84.93969000" + }, + { + "id": "120988", + "name": "Madison", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.73589000", + "longitude": "-85.37996000" + }, + { + "id": "121015", + "name": "Madison County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.16166000", + "longitude": "-85.71935000" + }, + { + "id": "121243", + "name": "Marion", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.55837000", + "longitude": "-85.65914000" + }, + { + "id": "121252", + "name": "Marion County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.78171000", + "longitude": "-86.13847000" + }, + { + "id": "121271", + "name": "Markle", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.82462000", + "longitude": "-85.33884000" + }, + { + "id": "121319", + "name": "Marshall County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.32485000", + "longitude": "-86.26176000" + }, + { + "id": "121338", + "name": "Martin County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.70801000", + "longitude": "-86.80307000" + }, + { + "id": "121348", + "name": "Martinsville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.42783000", + "longitude": "-86.42833000" + }, + { + "id": "121482", + "name": "McCordsville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.90810000", + "longitude": "-85.92276000" + }, + { + "id": "121627", + "name": "Melody Hill", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.02615000", + "longitude": "-87.51585000" + }, + { + "id": "121696", + "name": "Meridian Hills", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.89004000", + "longitude": "-86.15721000" + }, + { + "id": "121708", + "name": "Merrillville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.48281000", + "longitude": "-87.33281000" + }, + { + "id": "121752", + "name": "Miami County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.76950000", + "longitude": "-86.04502000" + }, + { + "id": "121760", + "name": "Michigan City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.70754000", + "longitude": "-86.89503000" + }, + { + "id": "121772", + "name": "Middlebury", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.67533000", + "longitude": "-85.70610000" + }, + { + "id": "121790", + "name": "Middletown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.05727000", + "longitude": "-85.53720000" + }, + { + "id": "121835", + "name": "Milan", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.12117000", + "longitude": "-85.13135000" + }, + { + "id": "121849", + "name": "Milford", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.40977000", + "longitude": "-85.84555000" + }, + { + "id": "121976", + "name": "Mishawaka", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.66199000", + "longitude": "-86.15862000" + }, + { + "id": "121996", + "name": "Mitchell", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.73283000", + "longitude": "-86.47360000" + }, + { + "id": "122050", + "name": "Monon", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.86782000", + "longitude": "-86.87890000" + }, + { + "id": "122072", + "name": "Monroe County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.16092000", + "longitude": "-86.52314000" + }, + { + "id": "122085", + "name": "Monroeville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.97477000", + "longitude": "-84.86830000" + }, + { + "id": "122087", + "name": "Monrovia", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.57894000", + "longitude": "-86.48222000" + }, + { + "id": "122153", + "name": "Montgomery County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.04038000", + "longitude": "-86.89330000" + }, + { + "id": "122165", + "name": "Monticello", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.74532000", + "longitude": "-86.76473000" + }, + { + "id": "122176", + "name": "Montpelier", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.55393000", + "longitude": "-85.27747000" + }, + { + "id": "122209", + "name": "Mooresville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.61282000", + "longitude": "-86.37416000" + }, + { + "id": "122239", + "name": "Morgan County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.48155000", + "longitude": "-86.44621000" + }, + { + "id": "122260", + "name": "Morocco", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.94615000", + "longitude": "-87.45336000" + }, + { + "id": "122280", + "name": "Morristown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.67338000", + "longitude": "-85.69859000" + }, + { + "id": "122394", + "name": "Mount Vernon", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "37.93227000", + "longitude": "-87.89503000" + }, + { + "id": "122455", + "name": "Mulberry", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.34448000", + "longitude": "-86.66528000" + }, + { + "id": "122465", + "name": "Muncie", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.19338000", + "longitude": "-85.38636000" + }, + { + "id": "122478", + "name": "Munster", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.56448000", + "longitude": "-87.51254000" + }, + { + "id": "122561", + "name": "Nappanee", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.44283000", + "longitude": "-86.00139000" + }, + { + "id": "122573", + "name": "Nashville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.20727000", + "longitude": "-86.25110000" + }, + { + "id": "122654", + "name": "New Albany", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.28562000", + "longitude": "-85.82413000" + }, + { + "id": "122680", + "name": "New Carlisle", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.70032000", + "longitude": "-86.50946000" + }, + { + "id": "122684", + "name": "New Castle", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.92894000", + "longitude": "-85.37025000" + }, + { + "id": "122693", + "name": "New Chicago", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.55837000", + "longitude": "-87.27448000" + }, + { + "id": "122717", + "name": "New Haven", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.07060000", + "longitude": "-85.01441000" + }, + { + "id": "122758", + "name": "New Palestine", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.72199000", + "longitude": "-85.88915000" + }, + { + "id": "122760", + "name": "New Paris", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.50033000", + "longitude": "-85.82805000" + }, + { + "id": "122761", + "name": "New Pekin", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.50506000", + "longitude": "-86.01692000" + }, + { + "id": "122791", + "name": "New Whiteland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.55810000", + "longitude": "-86.09526000" + }, + { + "id": "122816", + "name": "Newburgh", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "37.94449000", + "longitude": "-87.40529000" + }, + { + "id": "122840", + "name": "Newport", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.88420000", + "longitude": "-87.40863000" + }, + { + "id": "122873", + "name": "Newton County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.95585000", + "longitude": "-87.39754000" + }, + { + "id": "122918", + "name": "Noble County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.39860000", + "longitude": "-85.41747000" + }, + { + "id": "122921", + "name": "Noblesville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.04559000", + "longitude": "-86.00860000" + }, + { + "id": "123044", + "name": "North Judson", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.21504000", + "longitude": "-86.77585000" + }, + { + "id": "123057", + "name": "North Liberty", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.53421000", + "longitude": "-86.42723000" + }, + { + "id": "123061", + "name": "North Madison", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.76784000", + "longitude": "-85.39663000" + }, + { + "id": "123062", + "name": "North Manchester", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.00060000", + "longitude": "-85.76860000" + }, + { + "id": "123114", + "name": "North Terre Haute", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.52781000", + "longitude": "-87.36030000" + }, + { + "id": "123121", + "name": "North Vernon", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.00617000", + "longitude": "-85.62358000" + }, + { + "id": "123126", + "name": "North Webster", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.32560000", + "longitude": "-85.69776000" + }, + { + "id": "123204", + "name": "Notre Dame", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.70019000", + "longitude": "-86.23793000" + }, + { + "id": "123254", + "name": "Oak Park", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.30562000", + "longitude": "-85.69635000" + }, + { + "id": "123294", + "name": "Oakland City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.33866000", + "longitude": "-87.34501000" + }, + { + "id": "123362", + "name": "Odon", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.84283000", + "longitude": "-86.99140000" + }, + { + "id": "123370", + "name": "Ogden Dunes", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.62281000", + "longitude": "-87.19170000" + }, + { + "id": "123382", + "name": "Ohio County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.95010000", + "longitude": "-84.96503000" + }, + { + "id": "123491", + "name": "Oolitic", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.90088000", + "longitude": "-86.52527000" + }, + { + "id": "123515", + "name": "Orange County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.54178000", + "longitude": "-86.49507000" + }, + { + "id": "123563", + "name": "Orleans", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.66172000", + "longitude": "-86.45166000" + }, + { + "id": "123600", + "name": "Osceola", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.66505000", + "longitude": "-86.07584000" + }, + { + "id": "123608", + "name": "Osgood", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.12922000", + "longitude": "-85.29163000" + }, + { + "id": "123616", + "name": "Ossian", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.88060000", + "longitude": "-85.16636000" + }, + { + "id": "123642", + "name": "Otterbein", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.49059000", + "longitude": "-87.09640000" + }, + { + "id": "123661", + "name": "Owen County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.31281000", + "longitude": "-86.83765000" + }, + { + "id": "123665", + "name": "Owensville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.27199000", + "longitude": "-87.68780000" + }, + { + "id": "123682", + "name": "Oxford", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.51976000", + "longitude": "-87.24779000" + }, + { + "id": "123811", + "name": "Paoli", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.55617000", + "longitude": "-86.46832000" + }, + { + "id": "123857", + "name": "Parke County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.77363000", + "longitude": "-87.20636000" + }, + { + "id": "123864", + "name": "Parker City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.18893000", + "longitude": "-85.20413000" + }, + { + "id": "124016", + "name": "Pendleton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.99754000", + "longitude": "-85.74664000" + }, + { + "id": "124077", + "name": "Perry County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.07965000", + "longitude": "-86.63803000" + }, + { + "id": "124096", + "name": "Peru", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.75365000", + "longitude": "-86.06888000" + }, + { + "id": "124103", + "name": "Petersburg", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.49199000", + "longitude": "-87.27862000" + }, + { + "id": "124176", + "name": "Pierceton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.20032000", + "longitude": "-85.70554000" + }, + { + "id": "124189", + "name": "Pike County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.39878000", + "longitude": "-87.23216000" + }, + { + "id": "124289", + "name": "Pittsboro", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.86393000", + "longitude": "-86.46694000" + }, + { + "id": "124318", + "name": "Plainfield", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.70421000", + "longitude": "-86.39944000" + }, + { + "id": "124401", + "name": "Plymouth", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.34366000", + "longitude": "-86.30973000" + }, + { + "id": "124543", + "name": "Portage", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.57587000", + "longitude": "-87.17615000" + }, + { + "id": "124551", + "name": "Porter", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.61559000", + "longitude": "-87.07420000" + }, + { + "id": "124553", + "name": "Porter County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.50884000", + "longitude": "-87.07332000" + }, + { + "id": "124560", + "name": "Portland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.43449000", + "longitude": "-84.97775000" + }, + { + "id": "124574", + "name": "Posey County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.02189000", + "longitude": "-87.86847000" + }, + { + "id": "124575", + "name": "Poseyville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.17004000", + "longitude": "-87.78308000" + }, + { + "id": "124678", + "name": "Princes Lakes", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.35366000", + "longitude": "-86.09805000" + }, + { + "id": "124681", + "name": "Princeton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.35532000", + "longitude": "-87.56752000" + }, + { + "id": "124743", + "name": "Pulaski County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.04183000", + "longitude": "-86.69878000" + }, + { + "id": "124763", + "name": "Putnam County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.66626000", + "longitude": "-86.84500000" + }, + { + "id": "124879", + "name": "Randolph County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.15764000", + "longitude": "-85.01131000" + }, + { + "id": "124973", + "name": "Redkey", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.34893000", + "longitude": "-85.14997000" + }, + { + "id": "125014", + "name": "Remington", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.76087000", + "longitude": "-87.15085000" + }, + { + "id": "125023", + "name": "Rensselaer", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.93670000", + "longitude": "-87.15086000" + }, + { + "id": "125084", + "name": "Richmond", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.82894000", + "longitude": "-84.89024000" + }, + { + "id": "125165", + "name": "Ripley County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.10345000", + "longitude": "-85.26239000" + }, + { + "id": "125169", + "name": "Rising Sun", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.94950000", + "longitude": "-84.85384000" + }, + { + "id": "125230", + "name": "Roanoke", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.96255000", + "longitude": "-85.37331000" + }, + { + "id": "125263", + "name": "Rochester", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.06476000", + "longitude": "-86.21583000" + }, + { + "id": "125315", + "name": "Rockport", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "37.88311000", + "longitude": "-87.04944000" + }, + { + "id": "125321", + "name": "Rockville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.76254000", + "longitude": "-87.22918000" + }, + { + "id": "125380", + "name": "Rome City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.49616000", + "longitude": "-85.37665000" + }, + { + "id": "125425", + "name": "Roselawn", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.14170000", + "longitude": "-87.31475000" + }, + { + "id": "125460", + "name": "Rossville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.41698000", + "longitude": "-86.59472000" + }, + { + "id": "125520", + "name": "Rush County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.61995000", + "longitude": "-85.46576000" + }, + { + "id": "125525", + "name": "Rushville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.60921000", + "longitude": "-85.44636000" + }, + { + "id": "125545", + "name": "Russiaville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.41754000", + "longitude": "-86.27138000" + }, + { + "id": "125662", + "name": "Saint John", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.45004000", + "longitude": "-87.47004000" + }, + { + "id": "125675", + "name": "Saint Joseph County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.61672000", + "longitude": "-86.28986000" + }, + { + "id": "125700", + "name": "Saint Paul", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.42810000", + "longitude": "-85.62831000" + }, + { + "id": "125727", + "name": "Salem", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.60561000", + "longitude": "-86.10109000" + }, + { + "id": "125909", + "name": "Santa Claus", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.12005000", + "longitude": "-86.91416000" + }, + { + "id": "126005", + "name": "Schererville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.47892000", + "longitude": "-87.45476000" + }, + { + "id": "126045", + "name": "Scott County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.68507000", + "longitude": "-85.74747000" + }, + { + "id": "126062", + "name": "Scottsburg", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.68561000", + "longitude": "-85.77025000" + }, + { + "id": "126126", + "name": "Seelyville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.49198000", + "longitude": "-87.26724000" + }, + { + "id": "126135", + "name": "Sellersburg", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.39812000", + "longitude": "-85.75496000" + }, + { + "id": "126192", + "name": "Seymour", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.95922000", + "longitude": "-85.89025000" + }, + { + "id": "126201", + "name": "Shadeland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.37365000", + "longitude": "-86.94890000" + }, + { + "id": "126264", + "name": "Shelburn", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.17837000", + "longitude": "-87.39363000" + }, + { + "id": "126274", + "name": "Shelby County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.52369000", + "longitude": "-85.79170000" + }, + { + "id": "126280", + "name": "Shelbyville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.52144000", + "longitude": "-85.77692000" + }, + { + "id": "126318", + "name": "Sheridan", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.13504000", + "longitude": "-86.22055000" + }, + { + "id": "126364", + "name": "Shoals", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.66644000", + "longitude": "-86.79111000" + }, + { + "id": "126373", + "name": "Shorewood Forest", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.46315000", + "longitude": "-87.14472000" + }, + { + "id": "126447", + "name": "Simonton Lake", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.75422000", + "longitude": "-85.97500000" + }, + { + "id": "126531", + "name": "Smithville-Sanders", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.05969000", + "longitude": "-86.51077000" + }, + { + "id": "126624", + "name": "South Bend", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.68338000", + "longitude": "-86.25001000" + }, + { + "id": "126666", + "name": "South Haven", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.54198000", + "longitude": "-87.13726000" + }, + { + "id": "126747", + "name": "South Whitley", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.08477000", + "longitude": "-85.62804000" + }, + { + "id": "126782", + "name": "Southport", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.66505000", + "longitude": "-86.12776000" + }, + { + "id": "126818", + "name": "Speedway", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.80227000", + "longitude": "-86.26721000" + }, + { + "id": "126820", + "name": "Spencer", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.28671000", + "longitude": "-86.76251000" + }, + { + "id": "126828", + "name": "Spencer County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.01406000", + "longitude": "-87.00771000" + }, + { + "id": "126987", + "name": "Starke County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.28093000", + "longitude": "-86.64765000" + }, + { + "id": "127038", + "name": "Steuben County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.64387000", + "longitude": "-85.00077000" + }, + { + "id": "127182", + "name": "Sullivan", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.09532000", + "longitude": "-87.40585000" + }, + { + "id": "127186", + "name": "Sullivan County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.08883000", + "longitude": "-87.41469000" + }, + { + "id": "127255", + "name": "Sunman", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.23700000", + "longitude": "-85.09468000" + }, + { + "id": "127339", + "name": "Sweetser", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.57198000", + "longitude": "-85.76915000" + }, + { + "id": "127349", + "name": "Switzerland County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.82616000", + "longitude": "-85.03700000" + }, + { + "id": "127363", + "name": "Syracuse", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.42783000", + "longitude": "-85.75249000" + }, + { + "id": "127488", + "name": "Tell City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "37.95144000", + "longitude": "-86.76777000" + }, + { + "id": "127520", + "name": "Terre Haute", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.46670000", + "longitude": "-87.41391000" + }, + { + "id": "127605", + "name": "Thorntown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.12948000", + "longitude": "-86.60667000" + }, + { + "id": "127673", + "name": "Tippecanoe County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.38862000", + "longitude": "-86.89410000" + }, + { + "id": "127676", + "name": "Tipton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.28226000", + "longitude": "-86.04110000" + }, + { + "id": "127680", + "name": "Tipton County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.31135000", + "longitude": "-86.05186000" + }, + { + "id": "127733", + "name": "Topeka", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.53922000", + "longitude": "-85.53971000" + }, + { + "id": "127775", + "name": "Trafalgar", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.41616000", + "longitude": "-86.15082000" + }, + { + "id": "127777", + "name": "Trail Creek", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.69837000", + "longitude": "-86.85920000" + }, + { + "id": "127817", + "name": "Tri-Lakes", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.24588000", + "longitude": "-85.44192000" + }, + { + "id": "127983", + "name": "Union City", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.20199000", + "longitude": "-84.80913000" + }, + { + "id": "127992", + "name": "Union County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.62555000", + "longitude": "-84.92514000" + }, + { + "id": "128038", + "name": "Upland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.47560000", + "longitude": "-85.49442000" + }, + { + "id": "128121", + "name": "Valparaiso", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.47309000", + "longitude": "-87.06114000" + }, + { + "id": "128150", + "name": "Vanderburgh County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.02514000", + "longitude": "-87.58578000" + }, + { + "id": "128161", + "name": "Veedersburg", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.11309000", + "longitude": "-87.26251000" + }, + { + "id": "128186", + "name": "Vermillion County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.85380000", + "longitude": "-87.46397000" + }, + { + "id": "128208", + "name": "Versailles", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.07200000", + "longitude": "-85.25190000" + }, + { + "id": "128213", + "name": "Vevay", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.74784000", + "longitude": "-85.06717000" + }, + { + "id": "128239", + "name": "Vigo County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.43064000", + "longitude": "-87.38996000" + }, + { + "id": "128263", + "name": "Vincennes", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.67727000", + "longitude": "-87.52863000" + }, + { + "id": "128309", + "name": "Wabash", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.79782000", + "longitude": "-85.82054000" + }, + { + "id": "128311", + "name": "Wabash County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.84569000", + "longitude": "-85.79401000" + }, + { + "id": "128355", + "name": "Wakarusa", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.53616000", + "longitude": "-86.02083000" + }, + { + "id": "128391", + "name": "Walkerton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.46671000", + "longitude": "-86.48307000" + }, + { + "id": "128435", + "name": "Walton", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.66087000", + "longitude": "-86.24194000" + }, + { + "id": "128450", + "name": "Wanatah", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.43060000", + "longitude": "-86.89836000" + }, + { + "id": "128477", + "name": "Warren", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.68282000", + "longitude": "-85.42720000" + }, + { + "id": "128495", + "name": "Warren County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.34690000", + "longitude": "-87.35331000" + }, + { + "id": "128499", + "name": "Warren Park", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.78199000", + "longitude": "-86.05026000" + }, + { + "id": "128511", + "name": "Warrick County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.09217000", + "longitude": "-87.27205000" + }, + { + "id": "128520", + "name": "Warsaw", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.23810000", + "longitude": "-85.85305000" + }, + { + "id": "128538", + "name": "Washington", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.65922000", + "longitude": "-87.17279000" + }, + { + "id": "128557", + "name": "Washington County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "38.59998000", + "longitude": "-86.10531000" + }, + { + "id": "128613", + "name": "Waterloo", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.43199000", + "longitude": "-85.01997000" + }, + { + "id": "128691", + "name": "Wayne County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.86442000", + "longitude": "-85.00988000" + }, + { + "id": "128786", + "name": "Wells County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.72919000", + "longitude": "-85.22122000" + }, + { + "id": "128908", + "name": "West Lafayette", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.42587000", + "longitude": "-86.90807000" + }, + { + "id": "128989", + "name": "West Terre Haute", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.46504000", + "longitude": "-87.45002000" + }, + { + "id": "129027", + "name": "Westfield", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.04282000", + "longitude": "-86.12749000" + }, + { + "id": "129070", + "name": "Westport", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.17589000", + "longitude": "-85.57303000" + }, + { + "id": "129079", + "name": "Westville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.54143000", + "longitude": "-86.90058000" + }, + { + "id": "129138", + "name": "White County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.74977000", + "longitude": "-86.86547000" + }, + { + "id": "129176", + "name": "Whiteland", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.55005000", + "longitude": "-86.07971000" + }, + { + "id": "129188", + "name": "Whitestown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.99726000", + "longitude": "-86.34583000" + }, + { + "id": "129196", + "name": "Whiting", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.67976000", + "longitude": "-87.49449000" + }, + { + "id": "129201", + "name": "Whitley County", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.13938000", + "longitude": "-85.50512000" + }, + { + "id": "129280", + "name": "Williamsport", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.28837000", + "longitude": "-87.29390000" + }, + { + "id": "129350", + "name": "Winamac", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.05143000", + "longitude": "-86.60306000" + }, + { + "id": "129357", + "name": "Winchester", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.17199000", + "longitude": "-84.98135000" + }, + { + "id": "129398", + "name": "Winfield", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.40531000", + "longitude": "-87.27531000" + }, + { + "id": "129426", + "name": "Winona Lake", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.22727000", + "longitude": "-85.82193000" + }, + { + "id": "129470", + "name": "Wolcottville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.52588000", + "longitude": "-85.36665000" + }, + { + "id": "129503", + "name": "Woodburn", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "41.12533000", + "longitude": "-84.85330000" + }, + { + "id": "129596", + "name": "Worthington", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.12504000", + "longitude": "-86.97945000" + }, + { + "id": "129707", + "name": "Yorktown", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "40.17365000", + "longitude": "-85.49414000" + }, + { + "id": "129759", + "name": "Zionsville", + "state_id": 1440, + "state_code": "IN", + "country_id": 233, + "country_code": "US", + "latitude": "39.95087000", + "longitude": "-86.26194000" + }, + { + "id": "110997", + "name": "Ackley", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.55415000", + "longitude": "-93.05326000" + }, + { + "id": "111010", + "name": "Adair County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33075000", + "longitude": "-94.47094000" + }, + { + "id": "111020", + "name": "Adams County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02898000", + "longitude": "-94.69918000" + }, + { + "id": "111042", + "name": "Adel", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.61443000", + "longitude": "-94.01745000" + }, + { + "id": "111076", + "name": "Akron", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.82888000", + "longitude": "-96.55948000" + }, + { + "id": "111122", + "name": "Albia", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02667000", + "longitude": "-92.80575000" + }, + { + "id": "111163", + "name": "Algona", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.06997000", + "longitude": "-94.23302000" + }, + { + "id": "111176", + "name": "Allamakee County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.28428000", + "longitude": "-91.37809000" + }, + { + "id": "111201", + "name": "Allison", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.75275000", + "longitude": "-92.79519000" + }, + { + "id": "111229", + "name": "Alta", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67359000", + "longitude": "-95.29055000" + }, + { + "id": "111245", + "name": "Alton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.98749000", + "longitude": "-96.01057000" + }, + { + "id": "111247", + "name": "Altoona", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.64416000", + "longitude": "-93.46466000" + }, + { + "id": "111277", + "name": "Ames", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03471000", + "longitude": "-93.61994000" + }, + { + "id": "111302", + "name": "Anamosa", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.10834000", + "longitude": "-91.28516000" + }, + { + "id": "111344", + "name": "Ankeny", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.72971000", + "longitude": "-93.60577000" + }, + { + "id": "111386", + "name": "Aplington", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.58415000", + "longitude": "-92.88436000" + }, + { + "id": "111391", + "name": "Appanoose County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.74316000", + "longitude": "-92.86861000" + }, + { + "id": "111490", + "name": "Arnolds Park", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.37274000", + "longitude": "-95.12388000" + }, + { + "id": "111506", + "name": "Asbury", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.51445000", + "longitude": "-90.75152000" + }, + { + "id": "111586", + "name": "Atkins", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.99694000", + "longitude": "-91.86213000" + }, + { + "id": "111594", + "name": "Atlantic", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.40360000", + "longitude": "-95.01388000" + }, + { + "id": "111639", + "name": "Audubon", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.71804000", + "longitude": "-94.93249000" + }, + { + "id": "111641", + "name": "Audubon County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68459000", + "longitude": "-94.90582000" + }, + { + "id": "111687", + "name": "Avoca", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.47666000", + "longitude": "-95.33805000" + }, + { + "id": "111915", + "name": "Baxter", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.82610000", + "longitude": "-93.15159000" + }, + { + "id": "112022", + "name": "Bedford", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.66693000", + "longitude": "-94.72136000" + }, + { + "id": "112089", + "name": "Belle Plaine", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.89694000", + "longitude": "-92.27824000" + }, + { + "id": "112111", + "name": "Bellevue", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.25863000", + "longitude": "-90.42291000" + }, + { + "id": "112134", + "name": "Belmond", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.84608000", + "longitude": "-93.61410000" + }, + { + "id": "112203", + "name": "Benton County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.08019000", + "longitude": "-92.06569000" + }, + { + "id": "112294", + "name": "Bettendorf", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.52448000", + "longitude": "-90.51569000" + }, + { + "id": "112377", + "name": "Black Hawk County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.47010000", + "longitude": "-92.30882000" + }, + { + "id": "112436", + "name": "Bloomfield", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.75169000", + "longitude": "-92.41491000" + }, + { + "id": "112467", + "name": "Blue Grass", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.50892000", + "longitude": "-90.76598000" + }, + { + "id": "112534", + "name": "Bondurant", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70054000", + "longitude": "-93.46216000" + }, + { + "id": "112553", + "name": "Boone", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05970000", + "longitude": "-93.88023000" + }, + { + "id": "112558", + "name": "Boone County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03655000", + "longitude": "-93.93167000" + }, + { + "id": "112722", + "name": "Bremer County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.77459000", + "longitude": "-92.31805000" + }, + { + "id": "112817", + "name": "Britt", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.09774000", + "longitude": "-93.80189000" + }, + { + "id": "112870", + "name": "Brooklyn", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.73361000", + "longitude": "-92.44546000" + }, + { + "id": "112975", + "name": "Buchanan County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.47078000", + "longitude": "-91.83784000" + }, + { + "id": "113005", + "name": "Buena Vista County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.73549000", + "longitude": "-95.15115000" + }, + { + "id": "113012", + "name": "Buffalo", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.45642000", + "longitude": "-90.72347000" + }, + { + "id": "113017", + "name": "Buffalo (historical)", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.31110000", + "longitude": "-94.00356000" + }, + { + "id": "113069", + "name": "Burlington", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.80754000", + "longitude": "-91.11292000" + }, + { + "id": "113118", + "name": "Butler County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.73157000", + "longitude": "-92.79019000" + }, + { + "id": "113209", + "name": "Calhoun County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.38518000", + "longitude": "-94.64041000" + }, + { + "id": "113239", + "name": "Camanche", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.78809000", + "longitude": "-90.25624000" + }, + { + "id": "113403", + "name": "Carlisle", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.50082000", + "longitude": "-93.49105000" + }, + { + "id": "113449", + "name": "Carroll", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06582000", + "longitude": "-94.86693000" + }, + { + "id": "113458", + "name": "Carroll County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03624000", + "longitude": "-94.86056000" + }, + { + "id": "113485", + "name": "Carter Lake", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.29055000", + "longitude": "-95.91807000" + }, + { + "id": "113513", + "name": "Cascade", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.29862000", + "longitude": "-91.01486000" + }, + { + "id": "113529", + "name": "Cass County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33149000", + "longitude": "-94.92783000" + }, + { + "id": "113605", + "name": "Cedar County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.77232000", + "longitude": "-91.13241000" + }, + { + "id": "113607", + "name": "Cedar Falls", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.52776000", + "longitude": "-92.44547000" + }, + { + "id": "113621", + "name": "Cedar Rapids", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.00833000", + "longitude": "-91.64407000" + }, + { + "id": "113647", + "name": "Center Point", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.19083000", + "longitude": "-91.78518000" + }, + { + "id": "113658", + "name": "Centerville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73418000", + "longitude": "-92.87409000" + }, + { + "id": "113668", + "name": "Central City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.20388000", + "longitude": "-91.52406000" + }, + { + "id": "113703", + "name": "Cerro Gordo County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.08156000", + "longitude": "-93.26082000" + }, + { + "id": "113749", + "name": "Chariton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.01389000", + "longitude": "-93.30660000" + }, + { + "id": "113754", + "name": "Charles City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.06636000", + "longitude": "-92.67241000" + }, + { + "id": "113848", + "name": "Cherokee", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.74943000", + "longitude": "-95.55167000" + }, + { + "id": "113856", + "name": "Cherokee County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.73562000", + "longitude": "-95.62381000" + }, + { + "id": "113940", + "name": "Chickasaw County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.06004000", + "longitude": "-92.31766000" + }, + { + "id": "114115", + "name": "Clarinda", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73981000", + "longitude": "-95.03800000" + }, + { + "id": "114116", + "name": "Clarion", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.73164000", + "longitude": "-93.73299000" + }, + { + "id": "114138", + "name": "Clarke County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02903000", + "longitude": "-93.78516000" + }, + { + "id": "114156", + "name": "Clarksville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.78470000", + "longitude": "-92.66769000" + }, + { + "id": "114187", + "name": "Clay County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.08258000", + "longitude": "-95.15092000" + }, + { + "id": "114206", + "name": "Clayton County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.84475000", + "longitude": "-91.34143000" + }, + { + "id": "114209", + "name": "Clear Lake", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.13802000", + "longitude": "-93.37937000" + }, + { + "id": "114278", + "name": "Clinton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.84447000", + "longitude": "-90.18874000" + }, + { + "id": "114292", + "name": "Clinton County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.89804000", + "longitude": "-90.53197000" + }, + { + "id": "114303", + "name": "Clive", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.60304000", + "longitude": "-93.72411000" + }, + { + "id": "114405", + "name": "Colfax", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.67777000", + "longitude": "-93.24520000" + }, + { + "id": "114503", + "name": "Columbus Junction", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.28003000", + "longitude": "-91.36071000" + }, + { + "id": "114568", + "name": "Conrad", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.22471000", + "longitude": "-92.87465000" + }, + { + "id": "114599", + "name": "Coon Rapids", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.87082000", + "longitude": "-94.67748000" + }, + { + "id": "114628", + "name": "Coralville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.67640000", + "longitude": "-91.58045000" + }, + { + "id": "114652", + "name": "Corning", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.98999000", + "longitude": "-94.74081000" + }, + { + "id": "114682", + "name": "Corydon", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.75695000", + "longitude": "-93.31882000" + }, + { + "id": "114712", + "name": "Council Bluffs", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.26194000", + "longitude": "-95.86083000" + }, + { + "id": "114780", + "name": "Crawford County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03721000", + "longitude": "-95.38197000" + }, + { + "id": "114798", + "name": "Cresco", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.38136000", + "longitude": "-92.11405000" + }, + { + "id": "114806", + "name": "Creston", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.05860000", + "longitude": "-94.36135000" + }, + { + "id": "114974", + "name": "Dakota City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.72219000", + "longitude": "-94.19718000" + }, + { + "id": "114993", + "name": "Dallas Center", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68443000", + "longitude": "-93.96106000" + }, + { + "id": "114998", + "name": "Dallas County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68489000", + "longitude": "-94.03974000" + }, + { + "id": "115059", + "name": "Davenport", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.52364000", + "longitude": "-90.57764000" + }, + { + "id": "115074", + "name": "Davis County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.74769000", + "longitude": "-92.40972000" + }, + { + "id": "115118", + "name": "De Soto", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.53166000", + "longitude": "-94.00967000" + }, + { + "id": "115122", + "name": "De Witt", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.82336000", + "longitude": "-90.53819000" + }, + { + "id": "115162", + "name": "Decatur County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73768000", + "longitude": "-93.78628000" + }, + { + "id": "115166", + "name": "Decorah", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.30331000", + "longitude": "-91.78571000" + }, + { + "id": "115205", + "name": "Delaware County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.47121000", + "longitude": "-91.36735000" + }, + { + "id": "115238", + "name": "Denison", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.01777000", + "longitude": "-95.35528000" + }, + { + "id": "115251", + "name": "Denver", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67137000", + "longitude": "-92.33740000" + }, + { + "id": "115271", + "name": "Des Moines", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.60054000", + "longitude": "-93.60911000" + }, + { + "id": "115273", + "name": "Des Moines County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.92318000", + "longitude": "-91.18147000" + }, + { + "id": "115328", + "name": "Dickinson County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.37798000", + "longitude": "-95.15083000" + }, + { + "id": "115337", + "name": "Dike", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.46415000", + "longitude": "-92.62825000" + }, + { + "id": "115500", + "name": "Dubuque", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.50056000", + "longitude": "-90.66457000" + }, + { + "id": "115501", + "name": "Dubuque County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.46883000", + "longitude": "-90.88246000" + }, + { + "id": "115568", + "name": "Durant", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.59975000", + "longitude": "-90.91070000" + }, + { + "id": "115589", + "name": "Dyersville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.48444000", + "longitude": "-91.12291000" + }, + { + "id": "115591", + "name": "Dysart", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.17166000", + "longitude": "-92.30630000" + }, + { + "id": "115601", + "name": "Eagle Grove", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.66414000", + "longitude": "-93.90439000" + }, + { + "id": "115617", + "name": "Earlham", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.49193000", + "longitude": "-94.12412000" + }, + { + "id": "115827", + "name": "Eddyville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.15650000", + "longitude": "-92.63739000" + }, + { + "id": "115951", + "name": "Eldora", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.36082000", + "longitude": "-93.09965000" + }, + { + "id": "115956", + "name": "Eldridge", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65809000", + "longitude": "-90.58458000" + }, + { + "id": "115994", + "name": "Elk Run Heights", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.46693000", + "longitude": "-92.25657000" + }, + { + "id": "115995", + "name": "Elkader", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.85387000", + "longitude": "-91.40542000" + }, + { + "id": "116084", + "name": "Ely", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.87362000", + "longitude": "-91.58518000" + }, + { + "id": "116102", + "name": "Emmet County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.37802000", + "longitude": "-94.67848000" + }, + { + "id": "116104", + "name": "Emmetsburg", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.11274000", + "longitude": "-94.68304000" + }, + { + "id": "116159", + "name": "Epworth", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.44500000", + "longitude": "-90.93208000" + }, + { + "id": "116210", + "name": "Estherville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.40163000", + "longitude": "-94.83276000" + }, + { + "id": "116250", + "name": "Evansdale", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.46915000", + "longitude": "-92.28102000" + }, + { + "id": "116289", + "name": "Fairbank", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.63915000", + "longitude": "-92.04712000" + }, + { + "id": "116304", + "name": "Fairfax", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.91945000", + "longitude": "-91.78101000" + }, + { + "id": "116313", + "name": "Fairfield", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00863000", + "longitude": "-91.96267000" + }, + { + "id": "116399", + "name": "Farley", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.44278000", + "longitude": "-91.00625000" + }, + { + "id": "116441", + "name": "Fayette", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.84193000", + "longitude": "-91.80211000" + }, + { + "id": "116451", + "name": "Fayette County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.86259000", + "longitude": "-91.84432000" + }, + { + "id": "116610", + "name": "Floyd County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.05992000", + "longitude": "-92.78900000" + }, + { + "id": "116648", + "name": "Forest City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.26246000", + "longitude": "-93.63716000" + }, + { + "id": "116707", + "name": "Fort Dodge", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.49747000", + "longitude": "-94.16802000" + }, + { + "id": "116727", + "name": "Fort Madison", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62976000", + "longitude": "-91.31515000" + }, + { + "id": "116857", + "name": "Franklin County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.73255000", + "longitude": "-93.26247000" + }, + { + "id": "116925", + "name": "Fremont County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.74559000", + "longitude": "-95.60468000" + }, + { + "id": "117093", + "name": "Garner", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.10246000", + "longitude": "-93.60188000" + }, + { + "id": "117152", + "name": "George", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.34386000", + "longitude": "-96.00224000" + }, + { + "id": "117202", + "name": "Gilbert", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.10693000", + "longitude": "-93.64966000" + }, + { + "id": "117313", + "name": "Glenwood", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.04694000", + "longitude": "-95.74251000" + }, + { + "id": "117319", + "name": "Glidden", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05693000", + "longitude": "-94.72887000" + }, + { + "id": "117487", + "name": "Granger", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.76110000", + "longitude": "-93.82439000" + }, + { + "id": "117628", + "name": "Greene", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.89581000", + "longitude": "-92.80242000" + }, + { + "id": "117641", + "name": "Greene County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03624000", + "longitude": "-94.39684000" + }, + { + "id": "117649", + "name": "Greenfield", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.30527000", + "longitude": "-94.46135000" + }, + { + "id": "117737", + "name": "Grimes", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68832000", + "longitude": "-93.79106000" + }, + { + "id": "117740", + "name": "Grinnell", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74305000", + "longitude": "-92.72241000" + }, + { + "id": "117769", + "name": "Grundy Center", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.36165000", + "longitude": "-92.76853000" + }, + { + "id": "117771", + "name": "Grundy County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.40187000", + "longitude": "-92.79142000" + }, + { + "id": "117814", + "name": "Guthrie Center", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.67721000", + "longitude": "-94.50330000" + }, + { + "id": "117815", + "name": "Guthrie County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68375000", + "longitude": "-94.50105000" + }, + { + "id": "117816", + "name": "Guttenberg", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.78582000", + "longitude": "-91.09957000" + }, + { + "id": "117882", + "name": "Hamburg", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.60445000", + "longitude": "-95.65777000" + }, + { + "id": "117900", + "name": "Hamilton County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.38377000", + "longitude": "-93.70681000" + }, + { + "id": "117930", + "name": "Hampton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.74192000", + "longitude": "-93.20242000" + }, + { + "id": "117955", + "name": "Hancock County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.08189000", + "longitude": "-93.73427000" + }, + { + "id": "118003", + "name": "Hardin County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.38388000", + "longitude": "-93.24040000" + }, + { + "id": "118016", + "name": "Harlan", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65304000", + "longitude": "-95.32555000" + }, + { + "id": "118067", + "name": "Harrison County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68285000", + "longitude": "-95.81692000" + }, + { + "id": "118098", + "name": "Hartley", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.17997000", + "longitude": "-95.47695000" + }, + { + "id": "118163", + "name": "Hawarden", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.99582000", + "longitude": "-96.48531000" + }, + { + "id": "118304", + "name": "Henry County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.98794000", + "longitude": "-91.54452000" + }, + { + "id": "118358", + "name": "Hiawatha", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03583000", + "longitude": "-91.68212000" + }, + { + "id": "118573", + "name": "Holstein", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.48915000", + "longitude": "-95.54500000" + }, + { + "id": "118715", + "name": "Howard County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.35677000", + "longitude": "-92.31720000" + }, + { + "id": "118738", + "name": "Hudson", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.40665000", + "longitude": "-92.45547000" + }, + { + "id": "118771", + "name": "Hull", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.18859000", + "longitude": "-96.13363000" + }, + { + "id": "118777", + "name": "Humboldt", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.72080000", + "longitude": "-94.21524000" + }, + { + "id": "118778", + "name": "Humboldt County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.77647000", + "longitude": "-94.20719000" + }, + { + "id": "118841", + "name": "Huxley", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.89527000", + "longitude": "-93.60077000" + }, + { + "id": "118866", + "name": "Ida County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.38687000", + "longitude": "-95.51350000" + }, + { + "id": "118867", + "name": "Ida Grove", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.34499000", + "longitude": "-95.47167000" + }, + { + "id": "118893", + "name": "Independence", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.46860000", + "longitude": "-91.88934000" + }, + { + "id": "118926", + "name": "Indianola", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.35805000", + "longitude": "-93.55744000" + }, + { + "id": "118976", + "name": "Iowa City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.66113000", + "longitude": "-91.53017000" + }, + { + "id": "118978", + "name": "Iowa County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68632000", + "longitude": "-92.06552000" + }, + { + "id": "118980", + "name": "Iowa Falls", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.52248000", + "longitude": "-93.25131000" + }, + { + "id": "119090", + "name": "Jackson County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.17174000", + "longitude": "-90.57423000" + }, + { + "id": "119151", + "name": "Jasper County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68604000", + "longitude": "-93.05376000" + }, + { + "id": "119168", + "name": "Jefferson", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.01526000", + "longitude": "-94.37747000" + }, + { + "id": "119189", + "name": "Jefferson County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.03176000", + "longitude": "-91.94888000" + }, + { + "id": "119240", + "name": "Jesup", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.47554000", + "longitude": "-92.06379000" + }, + { + "id": "119242", + "name": "Jewell", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.30693000", + "longitude": "-93.64022000" + }, + { + "id": "119269", + "name": "Johnson County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.67155000", + "longitude": "-91.58808000" + }, + { + "id": "119278", + "name": "Johnston", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.67304000", + "longitude": "-93.69772000" + }, + { + "id": "119296", + "name": "Jones County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.12124000", + "longitude": "-91.13144000" + }, + { + "id": "119368", + "name": "Kalona", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.48307000", + "longitude": "-91.70600000" + }, + { + "id": "119507", + "name": "Keokuk", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39727000", + "longitude": "-91.38487000" + }, + { + "id": "119508", + "name": "Keokuk County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33646000", + "longitude": "-92.17864000" + }, + { + "id": "119509", + "name": "Keosauqua", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73031000", + "longitude": "-91.96239000" + }, + { + "id": "119617", + "name": "Kingsley", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.58832000", + "longitude": "-95.96752000" + }, + { + "id": "119695", + "name": "Knoxville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.32083000", + "longitude": "-93.10937000" + }, + { + "id": "119711", + "name": "Kossuth County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.20413000", + "longitude": "-94.20672000" + }, + { + "id": "119778", + "name": "La Porte City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.31499000", + "longitude": "-92.19213000" + }, + { + "id": "119882", + "name": "Lake City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.26748000", + "longitude": "-94.73387000" + }, + { + "id": "119942", + "name": "Lake Mills", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.41940000", + "longitude": "-93.53327000" + }, + { + "id": "119958", + "name": "Lake Panorama", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.71105000", + "longitude": "-94.39059000" + }, + { + "id": "119961", + "name": "Lake Park", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.45552000", + "longitude": "-95.32083000" + }, + { + "id": "119987", + "name": "Lake View", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.31165000", + "longitude": "-95.05332000" + }, + { + "id": "120073", + "name": "Lamoni", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62278000", + "longitude": "-93.93412000" + }, + { + "id": "120207", + "name": "Laurens", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.84664000", + "longitude": "-94.85193000" + }, + { + "id": "120258", + "name": "Le Claire", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.59864000", + "longitude": "-90.34346000" + }, + { + "id": "120261", + "name": "Le Mars", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.79416000", + "longitude": "-96.16558000" + }, + { + "id": "120316", + "name": "Lee County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.64198000", + "longitude": "-91.47926000" + }, + { + "id": "120375", + "name": "Lenox", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.88165000", + "longitude": "-94.56191000" + }, + { + "id": "120383", + "name": "Leon", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73972000", + "longitude": "-93.74772000" + }, + { + "id": "120583", + "name": "Linn County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.07895000", + "longitude": "-91.59896000" + }, + { + "id": "120598", + "name": "Lisbon", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.92112000", + "longitude": "-91.38545000" + }, + { + "id": "120694", + "name": "Logan", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.64305000", + "longitude": "-95.78890000" + }, + { + "id": "120731", + "name": "Lone Tree", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.48808000", + "longitude": "-91.42599000" + }, + { + "id": "120807", + "name": "Louisa County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.21851000", + "longitude": "-91.25962000" + }, + { + "id": "120861", + "name": "Lucas County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02937000", + "longitude": "-93.32772000" + }, + { + "id": "120937", + "name": "Lyon County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.38050000", + "longitude": "-96.21029000" + }, + { + "id": "121014", + "name": "Madison County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33071000", + "longitude": "-94.01556000" + }, + { + "id": "121029", + "name": "Madrid", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.87665000", + "longitude": "-93.82328000" + }, + { + "id": "121041", + "name": "Maharishi Vedic City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.05252000", + "longitude": "-91.99490000" + }, + { + "id": "121042", + "name": "Mahaska County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33520000", + "longitude": "-92.64091000" + }, + { + "id": "121072", + "name": "Malvern", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00278000", + "longitude": "-95.58528000" + }, + { + "id": "121095", + "name": "Manchester", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.48415000", + "longitude": "-91.45543000" + }, + { + "id": "121132", + "name": "Manly", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.28718000", + "longitude": "-93.20215000" + }, + { + "id": "121135", + "name": "Manning", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.90915000", + "longitude": "-95.06499000" + }, + { + "id": "121150", + "name": "Manson", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.52914000", + "longitude": "-94.53414000" + }, + { + "id": "121174", + "name": "Mapleton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.16582000", + "longitude": "-95.79306000" + }, + { + "id": "121181", + "name": "Maquoketa", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06891000", + "longitude": "-90.66569000" + }, + { + "id": "121199", + "name": "Marcus", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.82582000", + "longitude": "-95.80751000" + }, + { + "id": "121201", + "name": "Marengo", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.79806000", + "longitude": "-92.07074000" + }, + { + "id": "121240", + "name": "Marion", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03417000", + "longitude": "-91.59768000" + }, + { + "id": "121261", + "name": "Marion County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33445000", + "longitude": "-93.09944000" + }, + { + "id": "121317", + "name": "Marshall County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03585000", + "longitude": "-92.99877000" + }, + { + "id": "121323", + "name": "Marshalltown", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.04943000", + "longitude": "-92.90798000" + }, + { + "id": "121375", + "name": "Mason City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.15357000", + "longitude": "-93.20104000" + }, + { + "id": "121584", + "name": "Mechanicsville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.90446000", + "longitude": "-91.25461000" + }, + { + "id": "121599", + "name": "Mediapolis", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00809000", + "longitude": "-91.16404000" + }, + { + "id": "121623", + "name": "Melcher-Dallas", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.22500000", + "longitude": "-93.24132000" + }, + { + "id": "121848", + "name": "Milford", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.32469000", + "longitude": "-95.15000000" + }, + { + "id": "121898", + "name": "Mills County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.03345000", + "longitude": "-95.62133000" + }, + { + "id": "121994", + "name": "Missouri Valley", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.55638000", + "longitude": "-95.88779000" + }, + { + "id": "122002", + "name": "Mitchell County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.35641000", + "longitude": "-92.78903000" + }, + { + "id": "122005", + "name": "Mitchellville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.66860000", + "longitude": "-93.35771000" + }, + { + "id": "122051", + "name": "Monona", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.05165000", + "longitude": "-91.38930000" + }, + { + "id": "122053", + "name": "Monona County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05167000", + "longitude": "-95.95992000" + }, + { + "id": "122060", + "name": "Monroe", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.52221000", + "longitude": "-93.10187000" + }, + { + "id": "122078", + "name": "Monroe County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02978000", + "longitude": "-92.86899000" + }, + { + "id": "122128", + "name": "Montezuma", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.58583000", + "longitude": "-92.52741000" + }, + { + "id": "122152", + "name": "Montgomery County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.03014000", + "longitude": "-95.15638000" + }, + { + "id": "122164", + "name": "Monticello", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.23834000", + "longitude": "-91.18709000" + }, + { + "id": "122334", + "name": "Mount Ayr", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.71471000", + "longitude": "-94.23523000" + }, + { + "id": "122378", + "name": "Mount Pleasant", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.96364000", + "longitude": "-91.55794000" + }, + { + "id": "122400", + "name": "Mount Vernon", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.92195000", + "longitude": "-91.41684000" + }, + { + "id": "122442", + "name": "Moville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.48888000", + "longitude": "-96.07252000" + }, + { + "id": "122501", + "name": "Muscatine", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.42447000", + "longitude": "-91.04321000" + }, + { + "id": "122502", + "name": "Muscatine County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.48392000", + "longitude": "-91.11276000" + }, + { + "id": "122570", + "name": "Nashua", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.95275000", + "longitude": "-92.53630000" + }, + { + "id": "122650", + "name": "Nevada", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.02277000", + "longitude": "-93.45243000" + }, + { + "id": "122710", + "name": "New Hampton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.05914000", + "longitude": "-92.31768000" + }, + { + "id": "122742", + "name": "New London", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.92698000", + "longitude": "-91.39960000" + }, + { + "id": "122776", + "name": "New Sharon", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.47000000", + "longitude": "-92.65130000" + }, + { + "id": "122863", + "name": "Newton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.69971000", + "longitude": "-93.04798000" + }, + { + "id": "122937", + "name": "Nora Springs", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.14275000", + "longitude": "-93.00437000" + }, + { + "id": "123023", + "name": "North English", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.51390000", + "longitude": "-92.07629000" + }, + { + "id": "123056", + "name": "North Liberty", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74918000", + "longitude": "-91.59795000" + }, + { + "id": "123179", + "name": "Northwood", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.44412000", + "longitude": "-93.22104000" + }, + { + "id": "123189", + "name": "Norwalk", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.47555000", + "longitude": "-93.67883000" + }, + { + "id": "123225", + "name": "O'Brien County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.08375000", + "longitude": "-95.62488000" + }, + { + "id": "123288", + "name": "Oakland", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.30916000", + "longitude": "-95.39667000" + }, + { + "id": "123363", + "name": "Oelwein", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67332000", + "longitude": "-91.91350000" + }, + { + "id": "123368", + "name": "Ogden", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03915000", + "longitude": "-94.02773000" + }, + { + "id": "123471", + "name": "Onawa", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.02665000", + "longitude": "-96.09724000" + }, + { + "id": "123513", + "name": "Orange City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.00721000", + "longitude": "-96.05835000" + }, + { + "id": "123586", + "name": "Osage", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.28414000", + "longitude": "-92.81103000" + }, + { + "id": "123599", + "name": "Osceola", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.03389000", + "longitude": "-93.76550000" + }, + { + "id": "123604", + "name": "Osceola County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.37857000", + "longitude": "-95.62369000" + }, + { + "id": "123612", + "name": "Oskaloosa", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.29639000", + "longitude": "-92.64436000" + }, + { + "id": "123643", + "name": "Ottumwa", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02001000", + "longitude": "-92.41130000" + }, + { + "id": "123719", + "name": "Page County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73914000", + "longitude": "-95.15017000" + }, + { + "id": "123779", + "name": "Palo", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06611000", + "longitude": "-91.79546000" + }, + { + "id": "123782", + "name": "Palo Alto County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.08206000", + "longitude": "-94.67814000" + }, + { + "id": "123805", + "name": "Panora", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.69165000", + "longitude": "-94.36302000" + }, + { + "id": "123855", + "name": "Park View", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.69420000", + "longitude": "-90.54569000" + }, + { + "id": "123867", + "name": "Parkersburg", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.57748000", + "longitude": "-92.78686000" + }, + { + "id": "123924", + "name": "Paullina", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.97915000", + "longitude": "-95.68807000" + }, + { + "id": "123999", + "name": "Pella", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.40805000", + "longitude": "-92.91631000" + }, + { + "id": "124050", + "name": "Peosta", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.45056000", + "longitude": "-90.85041000" + }, + { + "id": "124070", + "name": "Perry", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.83860000", + "longitude": "-94.10718000" + }, + { + "id": "124370", + "name": "Pleasant Hill", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.58388000", + "longitude": "-93.51994000" + }, + { + "id": "124387", + "name": "Pleasantville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.38583000", + "longitude": "-93.26937000" + }, + { + "id": "124409", + "name": "Plymouth County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.73783000", + "longitude": "-96.21404000" + }, + { + "id": "124414", + "name": "Pocahontas", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.73553000", + "longitude": "-94.66915000" + }, + { + "id": "124416", + "name": "Pocahontas County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.73414000", + "longitude": "-94.67875000" + }, + { + "id": "124439", + "name": "Polk City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.77138000", + "longitude": "-93.71300000" + }, + { + "id": "124447", + "name": "Polk County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68550000", + "longitude": "-93.57353000" + }, + { + "id": "124578", + "name": "Postville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.08470000", + "longitude": "-91.56820000" + }, + { + "id": "124591", + "name": "Pottawattamie County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33661000", + "longitude": "-95.54239000" + }, + { + "id": "124617", + "name": "Poweshiek County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68644000", + "longitude": "-92.53147000" + }, + { + "id": "124623", + "name": "Prairie City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.59943000", + "longitude": "-93.23521000" + }, + { + "id": "124655", + "name": "Preston", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05030000", + "longitude": "-90.41402000" + }, + { + "id": "124671", + "name": "Primghar", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.08692000", + "longitude": "-95.62723000" + }, + { + "id": "124957", + "name": "Red Oak", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00972000", + "longitude": "-95.22555000" + }, + { + "id": "125010", + "name": "Reinbeck", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.32360000", + "longitude": "-92.59936000" + }, + { + "id": "125015", + "name": "Remsen", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.81471000", + "longitude": "-95.97335000" + }, + { + "id": "125143", + "name": "Ringgold County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73520000", + "longitude": "-94.24397000" + }, + { + "id": "125205", + "name": "Riverside", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.47974000", + "longitude": "-91.58128000" + }, + { + "id": "125251", + "name": "Robins", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.07111000", + "longitude": "-91.66684000" + }, + { + "id": "125286", + "name": "Rock Rapids", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.42719000", + "longitude": "-96.17586000" + }, + { + "id": "125288", + "name": "Rock Valley", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.20526000", + "longitude": "-96.29503000" + }, + { + "id": "125330", + "name": "Rockwell", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.98524000", + "longitude": "-93.19187000" + }, + { + "id": "125331", + "name": "Rockwell City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.39526000", + "longitude": "-94.63387000" + }, + { + "id": "125360", + "name": "Roland", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.16637000", + "longitude": "-93.50188000" + }, + { + "id": "125571", + "name": "Sac City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.42220000", + "longitude": "-94.98971000" + }, + { + "id": "125572", + "name": "Sac County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.38626000", + "longitude": "-95.10539000" + }, + { + "id": "125600", + "name": "Saint Ansgar", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.37830000", + "longitude": "-92.91881000" + }, + { + "id": "125853", + "name": "Sanborn", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.18164000", + "longitude": "-95.65557000" + }, + { + "id": "125988", + "name": "Saylorville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.67860000", + "longitude": "-93.62966000" + }, + { + "id": "126051", + "name": "Scott County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.63710000", + "longitude": "-90.62324000" + }, + { + "id": "126167", + "name": "Sergeant Bluff", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.40388000", + "longitude": "-96.35864000" + }, + { + "id": "126260", + "name": "Sheffield", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.89330000", + "longitude": "-93.21520000" + }, + { + "id": "126279", + "name": "Shelby County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68509000", + "longitude": "-95.31021000" + }, + { + "id": "126286", + "name": "Sheldon", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.18109000", + "longitude": "-95.85613000" + }, + { + "id": "126292", + "name": "Shell Rock", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.71026000", + "longitude": "-92.58297000" + }, + { + "id": "126302", + "name": "Shenandoah", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.76555000", + "longitude": "-95.37221000" + }, + { + "id": "126391", + "name": "Sibley", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.39914000", + "longitude": "-95.75196000" + }, + { + "id": "126394", + "name": "Sidney", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.74833000", + "longitude": "-95.64750000" + }, + { + "id": "126413", + "name": "Sigourney", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33334000", + "longitude": "-92.20463000" + }, + { + "id": "126457", + "name": "Sioux Center", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.07971000", + "longitude": "-96.17558000" + }, + { + "id": "126458", + "name": "Sioux City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.49999000", + "longitude": "-96.40031000" + }, + { + "id": "126459", + "name": "Sioux County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.08262000", + "longitude": "-96.17788000" + }, + { + "id": "126490", + "name": "Slater", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.87776000", + "longitude": "-93.67855000" + }, + { + "id": "126571", + "name": "Solon", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.80723000", + "longitude": "-91.49406000" + }, + { + "id": "126825", + "name": "Spencer", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.14136000", + "longitude": "-95.14444000" + }, + { + "id": "126838", + "name": "Spirit Lake", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.42218000", + "longitude": "-95.10222000" + }, + { + "id": "126915", + "name": "Springville", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05945000", + "longitude": "-91.44267000" + }, + { + "id": "126991", + "name": "State Center", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.01665000", + "longitude": "-93.16354000" + }, + { + "id": "127103", + "name": "Storm Lake", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.64109000", + "longitude": "-95.20972000" + }, + { + "id": "127106", + "name": "Story City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.18721000", + "longitude": "-93.59577000" + }, + { + "id": "127107", + "name": "Story County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03624000", + "longitude": "-93.46504000" + }, + { + "id": "127134", + "name": "Strawberry Point", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.68360000", + "longitude": "-91.53403000" + }, + { + "id": "127143", + "name": "Stuart", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.50332000", + "longitude": "-94.31857000" + }, + { + "id": "127222", + "name": "Sumner", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.84748000", + "longitude": "-92.09156000" + }, + { + "id": "127400", + "name": "Tama", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.96666000", + "longitude": "-92.57686000" + }, + { + "id": "127401", + "name": "Tama County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.07981000", + "longitude": "-92.53254000" + }, + { + "id": "127456", + "name": "Taylor County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73743000", + "longitude": "-94.69641000" + }, + { + "id": "127640", + "name": "Tiffin", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70585000", + "longitude": "-91.66295000" + }, + { + "id": "127675", + "name": "Tipton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.76974000", + "longitude": "-91.12793000" + }, + { + "id": "127699", + "name": "Toledo", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.99555000", + "longitude": "-92.57686000" + }, + { + "id": "127774", + "name": "Traer", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.19360000", + "longitude": "-92.46547000" + }, + { + "id": "127831", + "name": "Tripoli", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.80804000", + "longitude": "-92.25823000" + }, + { + "id": "127998", + "name": "Union County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02773000", + "longitude": "-94.24238000" + }, + { + "id": "128029", + "name": "University Heights", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65502000", + "longitude": "-91.55684000" + }, + { + "id": "128061", + "name": "Urbana", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.22416000", + "longitude": "-91.87434000" + }, + { + "id": "128063", + "name": "Urbandale", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.62666000", + "longitude": "-93.71217000" + }, + { + "id": "128131", + "name": "Van Buren County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.75323000", + "longitude": "-91.94999000" + }, + { + "id": "128135", + "name": "Van Meter", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.53193000", + "longitude": "-93.95412000" + }, + { + "id": "128260", + "name": "Villisca", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.92971000", + "longitude": "-94.97609000" + }, + { + "id": "128280", + "name": "Vinton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.16861000", + "longitude": "-92.02351000" + }, + { + "id": "128366", + "name": "Walcott", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.58475000", + "longitude": "-90.77209000" + }, + { + "id": "128381", + "name": "Walford", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.87834000", + "longitude": "-91.83462000" + }, + { + "id": "128454", + "name": "Wapello", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.18142000", + "longitude": "-91.18543000" + }, + { + "id": "128455", + "name": "Wapello County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.03058000", + "longitude": "-92.40945000" + }, + { + "id": "128493", + "name": "Warren County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33437000", + "longitude": "-93.56136000" + }, + { + "id": "128542", + "name": "Washington", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.29918000", + "longitude": "-91.69294000" + }, + { + "id": "128568", + "name": "Washington County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33559000", + "longitude": "-91.71787000" + }, + { + "id": "128612", + "name": "Waterloo", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.49276000", + "longitude": "-92.34296000" + }, + { + "id": "128647", + "name": "Waukee", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.61166000", + "longitude": "-93.88523000" + }, + { + "id": "128652", + "name": "Waukon", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.26942000", + "longitude": "-91.47570000" + }, + { + "id": "128668", + "name": "Waverly", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.72581000", + "longitude": "-92.47546000" + }, + { + "id": "128698", + "name": "Wayne County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73947000", + "longitude": "-93.32736000" + }, + { + "id": "128735", + "name": "Webster City", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.46942000", + "longitude": "-93.81605000" + }, + { + "id": "128741", + "name": "Webster County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.42797000", + "longitude": "-94.18179000" + }, + { + "id": "128781", + "name": "Wellman", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.46418000", + "longitude": "-91.83823000" + }, + { + "id": "128832", + "name": "West Branch", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.67141000", + "longitude": "-91.34655000" + }, + { + "id": "128838", + "name": "West Burlington", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82504000", + "longitude": "-91.15654000" + }, + { + "id": "128857", + "name": "West Des Moines", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.57721000", + "longitude": "-93.71133000" + }, + { + "id": "128917", + "name": "West Liberty", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.57002000", + "longitude": "-91.26377000" + }, + { + "id": "128993", + "name": "West Union", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.96276000", + "longitude": "-91.80822000" + }, + { + "id": "129267", + "name": "Williamsburg", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.66112000", + "longitude": "-92.00907000" + }, + { + "id": "129343", + "name": "Wilton", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.58892000", + "longitude": "-91.01682000" + }, + { + "id": "129389", + "name": "Windsor Heights", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.59777000", + "longitude": "-93.70828000" + }, + { + "id": "129395", + "name": "Winfield", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.12308000", + "longitude": "-91.44127000" + }, + { + "id": "129407", + "name": "Winnebago County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.37757000", + "longitude": "-93.73420000" + }, + { + "id": "129413", + "name": "Winneshiek County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.29067000", + "longitude": "-91.84371000" + }, + { + "id": "129446", + "name": "Winterset", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33082000", + "longitude": "-94.01384000" + }, + { + "id": "129496", + "name": "Woodbine", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.73832000", + "longitude": "-95.70278000" + }, + { + "id": "129512", + "name": "Woodbury County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.38972000", + "longitude": "-96.04477000" + }, + { + "id": "129576", + "name": "Woodward", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "41.85693000", + "longitude": "-93.92190000" + }, + { + "id": "129593", + "name": "Worth County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "43.37740000", + "longitude": "-93.26085000" + }, + { + "id": "129609", + "name": "Wright County", + "state_id": 1459, + "state_code": "IA", + "country_id": 233, + "country_code": "US", + "latitude": "42.73312000", + "longitude": "-93.73515000" + }, + { + "id": "110982", + "name": "Abilene", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.91722000", + "longitude": "-97.21391000" + }, + { + "id": "111188", + "name": "Allen County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.88573000", + "longitude": "-95.30139000" + }, + { + "id": "111208", + "name": "Alma", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.01667000", + "longitude": "-96.28916000" + }, + { + "id": "111233", + "name": "Altamont", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.19034000", + "longitude": "-95.29719000" + }, + { + "id": "111315", + "name": "Anderson County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.21420000", + "longitude": "-95.29333000" + }, + { + "id": "111322", + "name": "Andover", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.71390000", + "longitude": "-97.13643000" + }, + { + "id": "111368", + "name": "Anthony", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.15336000", + "longitude": "-98.03117000" + }, + { + "id": "111457", + "name": "Arkansas City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.06197000", + "longitude": "-97.03837000" + }, + { + "id": "111475", + "name": "Arma", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.54394000", + "longitude": "-94.70024000" + }, + { + "id": "111527", + "name": "Ashland", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.18864000", + "longitude": "-99.76568000" + }, + { + "id": "111567", + "name": "Atchison", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.56305000", + "longitude": "-95.12164000" + }, + { + "id": "111568", + "name": "Atchison County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.53174000", + "longitude": "-95.31344000" + }, + { + "id": "111615", + "name": "Atwood", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.80667000", + "longitude": "-101.04210000" + }, + { + "id": "111622", + "name": "Auburn", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.90611000", + "longitude": "-95.81610000" + }, + { + "id": "111647", + "name": "Augusta", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.68668000", + "longitude": "-96.97670000" + }, + { + "id": "111759", + "name": "Baldwin City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.77501000", + "longitude": "-95.18636000" + }, + { + "id": "111812", + "name": "Barber County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.22884000", + "longitude": "-98.68479000" + }, + { + "id": "111866", + "name": "Barton County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.47896000", + "longitude": "-98.75646000" + }, + { + "id": "111876", + "name": "Basehor", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.14167000", + "longitude": "-94.93858000" + }, + { + "id": "111919", + "name": "Baxter Springs", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.02368000", + "longitude": "-94.73550000" + }, + { + "id": "112074", + "name": "Bellaire", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.76251000", + "longitude": "-97.26699000" + }, + { + "id": "112088", + "name": "Belle Plaine", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.39391000", + "longitude": "-97.28115000" + }, + { + "id": "112104", + "name": "Belleville", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.82445000", + "longitude": "-97.63254000" + }, + { + "id": "112145", + "name": "Beloit", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.45612000", + "longitude": "-98.10616000" + }, + { + "id": "112543", + "name": "Bonner Springs", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.05973000", + "longitude": "-94.88358000" + }, + { + "id": "112613", + "name": "Bourbon County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.85523000", + "longitude": "-94.84930000" + }, + { + "id": "112909", + "name": "Brown County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.82650000", + "longitude": "-95.56422000" + }, + { + "id": "113024", + "name": "Buhler", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.13445000", + "longitude": "-97.77005000" + }, + { + "id": "113066", + "name": "Burlington", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.19447000", + "longitude": "-95.74276000" + }, + { + "id": "113115", + "name": "Butler County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.78127000", + "longitude": "-96.83907000" + }, + { + "id": "113179", + "name": "Caldwell", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.03225000", + "longitude": "-97.60699000" + }, + { + "id": "113328", + "name": "Caney", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.01146000", + "longitude": "-95.93526000" + }, + { + "id": "113387", + "name": "Carbondale", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.81862000", + "longitude": "-95.68915000" + }, + { + "id": "113739", + "name": "Chanute", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.67921000", + "longitude": "-95.45720000" + }, + { + "id": "113744", + "name": "Chapman", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.97222000", + "longitude": "-97.02251000" + }, + { + "id": "113792", + "name": "Chase County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.30205000", + "longitude": "-96.59393000" + }, + { + "id": "113814", + "name": "Chautauqua County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.15006000", + "longitude": "-96.24538000" + }, + { + "id": "113839", + "name": "Cheney", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.63001000", + "longitude": "-97.78255000" + }, + { + "id": "113851", + "name": "Cherokee County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.16931000", + "longitude": "-94.84627000" + }, + { + "id": "113868", + "name": "Cherryvale", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.27034000", + "longitude": "-95.55248000" + }, + { + "id": "113916", + "name": "Chetopa", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.03729000", + "longitude": "-95.08996000" + }, + { + "id": "113928", + "name": "Cheyenne County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78587000", + "longitude": "-101.73110000" + }, + { + "id": "114023", + "name": "Cimarron", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.80669000", + "longitude": "-100.34820000" + }, + { + "id": "114124", + "name": "Clark County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.23552000", + "longitude": "-99.82031000" + }, + { + "id": "114170", + "name": "Clay Center", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.37694000", + "longitude": "-97.12474000" + }, + { + "id": "114179", + "name": "Clay County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.34971000", + "longitude": "-97.16517000" + }, + { + "id": "114223", + "name": "Clearwater", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.50280000", + "longitude": "-97.50449000" + }, + { + "id": "114306", + "name": "Cloud County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.48030000", + "longitude": "-97.64928000" + }, + { + "id": "114370", + "name": "Coffey County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.23684000", + "longitude": "-95.73411000" + }, + { + "id": "114371", + "name": "Coffeyville", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.03730000", + "longitude": "-95.61637000" + }, + { + "id": "114381", + "name": "Colby", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.39584000", + "longitude": "-101.05238000" + }, + { + "id": "114392", + "name": "Coldwater", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.26891000", + "longitude": "-99.32678000" + }, + { + "id": "114492", + "name": "Columbus", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.16923000", + "longitude": "-94.84412000" + }, + { + "id": "114507", + "name": "Colwich", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.77918000", + "longitude": "-97.53644000" + }, + { + "id": "114512", + "name": "Comanche County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.19128000", + "longitude": "-99.27187000" + }, + { + "id": "114544", + "name": "Concordia", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.57084000", + "longitude": "-97.66254000" + }, + { + "id": "114588", + "name": "Conway Springs", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.39030000", + "longitude": "-97.64227000" + }, + { + "id": "114704", + "name": "Cottonwood Falls", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.37224000", + "longitude": "-96.54278000" + }, + { + "id": "114713", + "name": "Council Grove", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.66112000", + "longitude": "-96.49195000" + }, + { + "id": "114748", + "name": "Cowley County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.23775000", + "longitude": "-96.83749000" + }, + { + "id": "114778", + "name": "Crawford County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.50732000", + "longitude": "-94.85181000" + }, + { + "id": "115115", + "name": "De Soto", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.97917000", + "longitude": "-94.96858000" + }, + { + "id": "115163", + "name": "Decatur County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78476000", + "longitude": "-100.45990000" + }, + { + "id": "115260", + "name": "Derby", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.54557000", + "longitude": "-97.26893000" + }, + { + "id": "115327", + "name": "Dickinson County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.86650000", + "longitude": "-97.15270000" + }, + { + "id": "115336", + "name": "Dighton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.48196000", + "longitude": "-100.46708000" + }, + { + "id": "115376", + "name": "Dodge City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.75280000", + "longitude": "-100.01708000" + }, + { + "id": "115398", + "name": "Doniphan County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78808000", + "longitude": "-95.14679000" + }, + { + "id": "115427", + "name": "Douglas County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.88466000", + "longitude": "-95.29261000" + }, + { + "id": "115437", + "name": "Douglass", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.51946000", + "longitude": "-97.01281000" + }, + { + "id": "115848", + "name": "Edgerton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.76473000", + "longitude": "-95.00802000" + }, + { + "id": "115890", + "name": "Edwards County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.88765000", + "longitude": "-99.31217000" + }, + { + "id": "115893", + "name": "Edwardsville", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.06112000", + "longitude": "-94.81968000" + }, + { + "id": "115920", + "name": "El Dorado", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.81724000", + "longitude": "-96.86225000" + }, + { + "id": "115984", + "name": "Elk County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.45369000", + "longitude": "-96.24409000" + }, + { + "id": "115999", + "name": "Elkhart", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.00808000", + "longitude": "-101.89017000" + }, + { + "id": "116027", + "name": "Ellinwood", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.35557000", + "longitude": "-98.58091000" + }, + { + "id": "116029", + "name": "Ellis", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.93807000", + "longitude": "-99.56067000" + }, + { + "id": "116030", + "name": "Ellis County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.91475000", + "longitude": "-99.31723000" + }, + { + "id": "116037", + "name": "Ellsworth", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.73056000", + "longitude": "-98.22811000" + }, + { + "id": "116040", + "name": "Ellsworth County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.69663000", + "longitude": "-98.20473000" + }, + { + "id": "116077", + "name": "Elwood", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.75555000", + "longitude": "-94.87247000" + }, + { + "id": "116111", + "name": "Emporia", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.40390000", + "longitude": "-96.18166000" + }, + { + "id": "116164", + "name": "Erie", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.56811000", + "longitude": "-95.24331000" + }, + { + "id": "116223", + "name": "Eudora", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.94334000", + "longitude": "-95.09858000" + }, + { + "id": "116232", + "name": "Eureka", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.82392000", + "longitude": "-96.28917000" + }, + { + "id": "116362", + "name": "Fairway", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.02223000", + "longitude": "-94.63190000" + }, + { + "id": "116518", + "name": "Finney County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.04430000", + "longitude": "-100.73699000" + }, + { + "id": "116636", + "name": "Ford County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.69170000", + "longitude": "-99.88794000" + }, + { + "id": "116746", + "name": "Fort Riley North", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.11081000", + "longitude": "-96.81392000" + }, + { + "id": "116749", + "name": "Fort Scott", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.83976000", + "longitude": "-94.70830000" + }, + { + "id": "116849", + "name": "Franklin County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.56452000", + "longitude": "-95.28595000" + }, + { + "id": "116895", + "name": "Fredonia", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.53394000", + "longitude": "-95.82665000" + }, + { + "id": "116961", + "name": "Frontenac", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.45560000", + "longitude": "-94.68913000" + }, + { + "id": "117022", + "name": "Galena", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.07590000", + "longitude": "-94.63967000" + }, + { + "id": "117059", + "name": "Garden City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.97169000", + "longitude": "-100.87266000" + }, + { + "id": "117074", + "name": "Gardner", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.81084000", + "longitude": "-94.92719000" + }, + { + "id": "117095", + "name": "Garnett", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.28058000", + "longitude": "-95.24192000" + }, + { + "id": "117131", + "name": "Geary County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.00236000", + "longitude": "-96.75254000" + }, + { + "id": "117227", + "name": "Girard", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.51116000", + "longitude": "-94.83802000" + }, + { + "id": "117332", + "name": "Goddard", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.65974000", + "longitude": "-97.57533000" + }, + { + "id": "117385", + "name": "Goodland", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.35083000", + "longitude": "-101.71017000" + }, + { + "id": "117420", + "name": "Gove", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.95779000", + "longitude": "-100.48875000" + }, + { + "id": "117421", + "name": "Gove County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.91610000", + "longitude": "-100.48290000" + }, + { + "id": "117437", + "name": "Graham County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.34972000", + "longitude": "-99.88325000" + }, + { + "id": "117482", + "name": "Grandview Plaza", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.02916000", + "longitude": "-96.78917000" + }, + { + "id": "117516", + "name": "Grant County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.56219000", + "longitude": "-101.30802000" + }, + { + "id": "117553", + "name": "Gray County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.73820000", + "longitude": "-100.43786000" + }, + { + "id": "117570", + "name": "Great Bend", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.36446000", + "longitude": "-98.76481000" + }, + { + "id": "117588", + "name": "Greeley County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.48054000", + "longitude": "-101.80597000" + }, + { + "id": "117670", + "name": "Greensburg", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.60280000", + "longitude": "-99.29261000" + }, + { + "id": "117709", + "name": "Greenwood County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.87779000", + "longitude": "-96.23264000" + }, + { + "id": "117877", + "name": "Halstead", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.00140000", + "longitude": "-97.50865000" + }, + { + "id": "117904", + "name": "Hamilton County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.99915000", + "longitude": "-101.79126000" + }, + { + "id": "118031", + "name": "Harper", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.28669000", + "longitude": "-98.02589000" + }, + { + "id": "118033", + "name": "Harper County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.19160000", + "longitude": "-98.07550000" + }, + { + "id": "118115", + "name": "Harvey County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.04322000", + "longitude": "-97.42727000" + }, + { + "id": "118127", + "name": "Haskell County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.56225000", + "longitude": "-100.87119000" + }, + { + "id": "118148", + "name": "Haven", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.89890000", + "longitude": "-97.78283000" + }, + { + "id": "118190", + "name": "Hays", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.87918000", + "longitude": "-99.32677000" + }, + { + "id": "118193", + "name": "Haysville", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.56446000", + "longitude": "-97.35227000" + }, + { + "id": "118316", + "name": "Herington", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.67112000", + "longitude": "-96.94251000" + }, + { + "id": "118345", + "name": "Hesston", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.13834000", + "longitude": "-97.43143000" + }, + { + "id": "118357", + "name": "Hiawatha", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.85250000", + "longitude": "-95.53582000" + }, + { + "id": "118394", + "name": "Highland", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.85972000", + "longitude": "-95.26970000" + }, + { + "id": "118434", + "name": "Hill City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.36473000", + "longitude": "-99.84206000" + }, + { + "id": "118445", + "name": "Hillsboro", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.35196000", + "longitude": "-97.20447000" + }, + { + "id": "118507", + "name": "Hodgeman County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.08748000", + "longitude": "-99.89794000" + }, + { + "id": "118513", + "name": "Hoisington", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.51807000", + "longitude": "-98.77814000" + }, + { + "id": "118521", + "name": "Holcomb", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.98614000", + "longitude": "-100.98933000" + }, + { + "id": "118578", + "name": "Holton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.46527000", + "longitude": "-95.73637000" + }, + { + "id": "118678", + "name": "Horton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.66056000", + "longitude": "-95.52637000" + }, + { + "id": "118707", + "name": "Howard", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.47031000", + "longitude": "-96.26361000" + }, + { + "id": "118727", + "name": "Hoxie", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.35750000", + "longitude": "-100.44181000" + }, + { + "id": "118768", + "name": "Hugoton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.17530000", + "longitude": "-101.34960000" + }, + { + "id": "118775", + "name": "Humboldt", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.81060000", + "longitude": "-95.43693000" + }, + { + "id": "118835", + "name": "Hutchinson", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.06084000", + "longitude": "-97.92977000" + }, + { + "id": "118889", + "name": "Independence", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.22424000", + "longitude": "-95.70831000" + }, + { + "id": "118944", + "name": "Inman", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.23195000", + "longitude": "-97.77338000" + }, + { + "id": "118966", + "name": "Iola", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.92448000", + "longitude": "-95.39998000" + }, + { + "id": "119081", + "name": "Jackson County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.41682000", + "longitude": "-95.79366000" + }, + { + "id": "119181", + "name": "Jefferson County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.23576000", + "longitude": "-95.38345000" + }, + { + "id": "119241", + "name": "Jetmore", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.08446000", + "longitude": "-99.89346000" + }, + { + "id": "119243", + "name": "Jewell County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78473000", + "longitude": "-98.21834000" + }, + { + "id": "119256", + "name": "Johnson", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.57057000", + "longitude": "-101.75100000" + }, + { + "id": "119264", + "name": "Johnson County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.88376000", + "longitude": "-94.82226000" + }, + { + "id": "119334", + "name": "Junction City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.02861000", + "longitude": "-96.83140000" + }, + { + "id": "119383", + "name": "Kansas City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.11417000", + "longitude": "-94.62746000" + }, + { + "id": "119414", + "name": "Kearny County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.00020000", + "longitude": "-101.31986000" + }, + { + "id": "119416", + "name": "Kechi", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.79585000", + "longitude": "-97.27949000" + }, + { + "id": "119594", + "name": "Kingman", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.64585000", + "longitude": "-98.11367000" + }, + { + "id": "119596", + "name": "Kingman County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.55888000", + "longitude": "-98.13633000" + }, + { + "id": "119642", + "name": "Kinsley", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.92307000", + "longitude": "-99.40984000" + }, + { + "id": "119644", + "name": "Kiowa", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.01725000", + "longitude": "-98.48535000" + }, + { + "id": "119646", + "name": "Kiowa County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.55826000", + "longitude": "-99.28605000" + }, + { + "id": "119743", + "name": "La Crosse", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.53140000", + "longitude": "-99.30872000" + }, + { + "id": "119746", + "name": "La Cygne", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.35002000", + "longitude": "-94.76135000" + }, + { + "id": "119809", + "name": "Labette County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.19133000", + "longitude": "-95.29758000" + }, + { + "id": "120056", + "name": "Lakin", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.94058000", + "longitude": "-101.25489000" + }, + { + "id": "120105", + "name": "Lane County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.48130000", + "longitude": "-100.46640000" + }, + { + "id": "120125", + "name": "Lansing", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.24861000", + "longitude": "-94.90024000" + }, + { + "id": "120150", + "name": "Larned", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.18057000", + "longitude": "-99.09871000" + }, + { + "id": "120226", + "name": "Lawrence", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.97167000", + "longitude": "-95.23525000" + }, + { + "id": "120280", + "name": "Leavenworth", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.31111000", + "longitude": "-94.92246000" + }, + { + "id": "120282", + "name": "Leavenworth County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.19932000", + "longitude": "-95.03790000" + }, + { + "id": "120283", + "name": "Leawood", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.96667000", + "longitude": "-94.61690000" + }, + { + "id": "120369", + "name": "Lenexa", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.95362000", + "longitude": "-94.73357000" + }, + { + "id": "120393", + "name": "Leoti", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.47974000", + "longitude": "-101.35877000" + }, + { + "id": "120458", + "name": "Liberal", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.04308000", + "longitude": "-100.92100000" + }, + { + "id": "120501", + "name": "Lincoln", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.04084000", + "longitude": "-98.14477000" + }, + { + "id": "120518", + "name": "Lincoln County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.04533000", + "longitude": "-98.20770000" + }, + { + "id": "120575", + "name": "Lindsborg", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.57362000", + "longitude": "-97.67448000" + }, + { + "id": "120581", + "name": "Linn County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.21227000", + "longitude": "-94.84293000" + }, + { + "id": "120702", + "name": "Logan County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.91734000", + "longitude": "-101.14839000" + }, + { + "id": "120808", + "name": "Louisburg", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.61946000", + "longitude": "-94.68079000" + }, + { + "id": "120922", + "name": "Lyndon", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.61001000", + "longitude": "-95.68443000" + }, + { + "id": "120935", + "name": "Lyon County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.45619000", + "longitude": "-96.15264000" + }, + { + "id": "120941", + "name": "Lyons", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.34501000", + "longitude": "-98.20173000" + }, + { + "id": "121052", + "name": "Maize", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.77918000", + "longitude": "-97.46727000" + }, + { + "id": "121113", + "name": "Manhattan", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.18361000", + "longitude": "-96.57167000" + }, + { + "id": "121129", + "name": "Mankato", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78723000", + "longitude": "-98.21005000" + }, + { + "id": "121234", + "name": "Marion", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.34835000", + "longitude": "-97.01725000" + }, + { + "id": "121253", + "name": "Marion County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.35887000", + "longitude": "-97.09689000" + }, + { + "id": "121311", + "name": "Marshall County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78362000", + "longitude": "-96.52294000" + }, + { + "id": "121357", + "name": "Marysville", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.84111000", + "longitude": "-96.64724000" + }, + { + "id": "121476", + "name": "McConnell AFB", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.63007000", + "longitude": "-97.25869000" + }, + { + "id": "121545", + "name": "McPherson", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.37084000", + "longitude": "-97.66421000" + }, + { + "id": "121546", + "name": "McPherson County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.39167000", + "longitude": "-97.64808000" + }, + { + "id": "121555", + "name": "Meade", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.28558000", + "longitude": "-100.34015000" + }, + { + "id": "121557", + "name": "Meade County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.23820000", + "longitude": "-100.36618000" + }, + { + "id": "121601", + "name": "Medicine Lodge", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.28113000", + "longitude": "-98.58036000" + }, + { + "id": "121702", + "name": "Merriam", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.02362000", + "longitude": "-94.69357000" + }, + { + "id": "121751", + "name": "Miami County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.56358000", + "longitude": "-94.83806000" + }, + { + "id": "121950", + "name": "Minneapolis", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.12194000", + "longitude": "-97.70670000" + }, + { + "id": "121979", + "name": "Mission", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.02778000", + "longitude": "-94.65579000" + }, + { + "id": "121986", + "name": "Mission Hills", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.01778000", + "longitude": "-94.61690000" + }, + { + "id": "122000", + "name": "Mitchell County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.39327000", + "longitude": "-98.20936000" + }, + { + "id": "122143", + "name": "Montgomery County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.19252000", + "longitude": "-95.74288000" + }, + { + "id": "122269", + "name": "Morris County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.68743000", + "longitude": "-96.64985000" + }, + { + "id": "122296", + "name": "Morton County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.19140000", + "longitude": "-101.79925000" + }, + { + "id": "122321", + "name": "Mound City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.14281000", + "longitude": "-94.81357000" + }, + { + "id": "122324", + "name": "Moundridge", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.20307000", + "longitude": "-97.51921000" + }, + { + "id": "122464", + "name": "Mulvane", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.47446000", + "longitude": "-97.24393000" + }, + { + "id": "122629", + "name": "Nemaha County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78345000", + "longitude": "-96.01410000" + }, + { + "id": "122631", + "name": "Neodesha", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.41839000", + "longitude": "-95.68026000" + }, + { + "id": "122634", + "name": "Neosho County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.55849000", + "longitude": "-95.30679000" + }, + { + "id": "122643", + "name": "Ness City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.45279000", + "longitude": "-99.90651000" + }, + { + "id": "122644", + "name": "Ness County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.47942000", + "longitude": "-99.91618000" + }, + { + "id": "122692", + "name": "New Century, KS", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.82253000", + "longitude": "-94.89971000" + }, + { + "id": "122858", + "name": "Newton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.04668000", + "longitude": "-97.34504000" + }, + { + "id": "122894", + "name": "Nickerson", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.14723000", + "longitude": "-98.08367000" + }, + { + "id": "123072", + "name": "North Newton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.07223000", + "longitude": "-97.34559000" + }, + { + "id": "123182", + "name": "Norton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.83389000", + "longitude": "-99.89151000" + }, + { + "id": "123186", + "name": "Norton County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78439000", + "longitude": "-99.90348000" + }, + { + "id": "123299", + "name": "Oakley", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.13334000", + "longitude": "-100.86376000" + }, + { + "id": "123316", + "name": "Oberlin", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.81834000", + "longitude": "-100.52820000" + }, + { + "id": "123366", + "name": "Ogden", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.11111000", + "longitude": "-96.70612000" + }, + { + "id": "123412", + "name": "Olathe", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.88140000", + "longitude": "-94.81913000" + }, + { + "id": "123588", + "name": "Osage City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.63390000", + "longitude": "-95.82582000" + }, + { + "id": "123589", + "name": "Osage County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.65233000", + "longitude": "-95.72695000" + }, + { + "id": "123593", + "name": "Osawatomie", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.49724000", + "longitude": "-94.95052000" + }, + { + "id": "123594", + "name": "Osborne", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.43914000", + "longitude": "-98.69624000" + }, + { + "id": "123595", + "name": "Osborne County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.35033000", + "longitude": "-98.76799000" + }, + { + "id": "123611", + "name": "Oskaloosa", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.21528000", + "longitude": "-95.31275000" + }, + { + "id": "123621", + "name": "Oswego", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.16757000", + "longitude": "-95.10996000" + }, + { + "id": "123636", + "name": "Ottawa", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.61557000", + "longitude": "-95.26775000" + }, + { + "id": "123638", + "name": "Ottawa County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.13254000", + "longitude": "-97.65022000" + }, + { + "id": "123649", + "name": "Overbrook", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.78056000", + "longitude": "-95.55720000" + }, + { + "id": "123651", + "name": "Overland Park", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.98223000", + "longitude": "-94.67079000" + }, + { + "id": "123677", + "name": "Oxford", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.27419000", + "longitude": "-97.16893000" + }, + { + "id": "123810", + "name": "Paola", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.57224000", + "longitude": "-94.87913000" + }, + { + "id": "123837", + "name": "Park City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.80001000", + "longitude": "-97.31838000" + }, + { + "id": "123891", + "name": "Parsons", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.34034000", + "longitude": "-95.26108000" + }, + { + "id": "123936", + "name": "Pawnee County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.18133000", + "longitude": "-99.23673000" + }, + { + "id": "123953", + "name": "Peabody", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.16946000", + "longitude": "-97.10670000" + }, + { + "id": "124136", + "name": "Phillips County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78458000", + "longitude": "-99.34702000" + }, + { + "id": "124139", + "name": "Phillipsburg", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.75612000", + "longitude": "-99.32399000" + }, + { + "id": "124292", + "name": "Pittsburg", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.41088000", + "longitude": "-94.70496000" + }, + { + "id": "124325", + "name": "Plains", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.26030000", + "longitude": "-100.59265000" + }, + { + "id": "124333", + "name": "Plainville", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.23473000", + "longitude": "-99.29816000" + }, + { + "id": "124382", + "name": "Pleasanton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.17781000", + "longitude": "-94.71135000" + }, + { + "id": "124589", + "name": "Pottawatomie County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.37901000", + "longitude": "-96.34244000" + }, + { + "id": "124632", + "name": "Prairie Village", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.99167000", + "longitude": "-94.63357000" + }, + { + "id": "124636", + "name": "Pratt", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.64391000", + "longitude": "-98.73759000" + }, + { + "id": "124637", + "name": "Pratt County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.64774000", + "longitude": "-98.73960000" + }, + { + "id": "124913", + "name": "Rawlins County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78524000", + "longitude": "-101.07571000" + }, + { + "id": "125021", + "name": "Reno County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.95295000", + "longitude": "-98.08601000" + }, + { + "id": "125033", + "name": "Republic County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.82780000", + "longitude": "-97.65062000" + }, + { + "id": "125053", + "name": "Rice County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.34714000", + "longitude": "-98.20103000" + }, + { + "id": "125138", + "name": "Riley County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.29646000", + "longitude": "-96.73518000" + }, + { + "id": "125345", + "name": "Roeland Park", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.03751000", + "longitude": "-94.63218000" + }, + { + "id": "125390", + "name": "Rooks County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.35023000", + "longitude": "-99.32505000" + }, + { + "id": "125403", + "name": "Rose Hill", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.55835000", + "longitude": "-97.13504000" + }, + { + "id": "125457", + "name": "Rossville", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.13611000", + "longitude": "-95.95166000" + }, + { + "id": "125521", + "name": "Rush County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.52316000", + "longitude": "-99.30924000" + }, + { + "id": "125533", + "name": "Russell", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.89527000", + "longitude": "-98.86103000" + }, + { + "id": "125537", + "name": "Russell County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.91478000", + "longitude": "-98.76235000" + }, + { + "id": "125567", + "name": "Sabetha", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.90222000", + "longitude": "-95.80082000" + }, + { + "id": "125635", + "name": "Saint Francis", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.77222000", + "longitude": "-101.79990000" + }, + { + "id": "125660", + "name": "Saint John", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.00224000", + "longitude": "-98.76009000" + }, + { + "id": "125692", + "name": "Saint Marys", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.19416000", + "longitude": "-96.07110000" + }, + { + "id": "125744", + "name": "Salina", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.84028000", + "longitude": "-97.61142000" + }, + { + "id": "125751", + "name": "Saline County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.78381000", + "longitude": "-97.64993000" + }, + { + "id": "125954", + "name": "Satanta", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.43725000", + "longitude": "-100.97211000" + }, + { + "id": "126042", + "name": "Scott City", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.48252000", + "longitude": "-100.90709000" + }, + { + "id": "126053", + "name": "Scott County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.48217000", + "longitude": "-100.90686000" + }, + { + "id": "126115", + "name": "Sedan", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.12672000", + "longitude": "-96.18694000" + }, + { + "id": "126117", + "name": "Sedgwick", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.91668000", + "longitude": "-97.42254000" + }, + { + "id": "126119", + "name": "Sedgwick County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.68476000", + "longitude": "-97.46097000" + }, + { + "id": "126154", + "name": "Seneca", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.83416000", + "longitude": "-96.06417000" + }, + { + "id": "126189", + "name": "Seward County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.19330000", + "longitude": "-100.85129000" + }, + { + "id": "126232", + "name": "Sharon Springs", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.89779000", + "longitude": "-101.75212000" + }, + { + "id": "126249", + "name": "Shawnee", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.04167000", + "longitude": "-94.72024000" + }, + { + "id": "126251", + "name": "Shawnee County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.04151000", + "longitude": "-95.75653000" + }, + { + "id": "126324", + "name": "Sheridan County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.35036000", + "longitude": "-100.44183000" + }, + { + "id": "126333", + "name": "Sherman County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.35143000", + "longitude": "-101.71998000" + }, + { + "id": "126428", + "name": "Silver Lake", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.10417000", + "longitude": "-95.85860000" + }, + { + "id": "126511", + "name": "Smith Center", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.77918000", + "longitude": "-98.78507000" + }, + { + "id": "126512", + "name": "Smith County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78516000", + "longitude": "-98.78547000" + }, + { + "id": "126569", + "name": "Solomon", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.91944000", + "longitude": "-97.37114000" + }, + { + "id": "126678", + "name": "South Hutchinson", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.02807000", + "longitude": "-97.94033000" + }, + { + "id": "126861", + "name": "Spring Hill", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.74306000", + "longitude": "-94.82552000" + }, + { + "id": "126936", + "name": "Stafford County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.03100000", + "longitude": "-98.71744000" + }, + { + "id": "126973", + "name": "Stanton County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.56306000", + "longitude": "-101.78418000" + }, + { + "id": "127026", + "name": "Sterling", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.21001000", + "longitude": "-98.20701000" + }, + { + "id": "127041", + "name": "Stevens County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.19232000", + "longitude": "-101.31205000" + }, + { + "id": "127071", + "name": "Stockton", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.43807000", + "longitude": "-99.26510000" + }, + { + "id": "127157", + "name": "Sublette", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.48169000", + "longitude": "-100.84377000" + }, + { + "id": "127224", + "name": "Sumner County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.23728000", + "longitude": "-97.47655000" + }, + { + "id": "127366", + "name": "Syracuse", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.98071000", + "longitude": "-101.75430000" + }, + { + "id": "127580", + "name": "Thomas County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.35097000", + "longitude": "-101.05553000" + }, + { + "id": "127719", + "name": "Tonganoxie", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.10972000", + "longitude": "-95.08775000" + }, + { + "id": "127732", + "name": "Topeka", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.04833000", + "longitude": "-95.67804000" + }, + { + "id": "127751", + "name": "Towanda", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.79752000", + "longitude": "-96.99976000" + }, + { + "id": "127792", + "name": "Trego County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.91432000", + "longitude": "-99.87274000" + }, + { + "id": "127820", + "name": "Tribune", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.46974000", + "longitude": "-101.75267000" + }, + { + "id": "127842", + "name": "Troy", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78305000", + "longitude": "-95.08997000" + }, + { + "id": "127960", + "name": "Ulysses", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.58141000", + "longitude": "-101.35517000" + }, + { + "id": "128099", + "name": "Valley Center", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.83473000", + "longitude": "-97.37338000" + }, + { + "id": "128106", + "name": "Valley Falls", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.34333000", + "longitude": "-95.46025000" + }, + { + "id": "128219", + "name": "Victoria", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.85279000", + "longitude": "-99.14760000" + }, + { + "id": "128315", + "name": "Wabaunsee County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.95328000", + "longitude": "-96.20499000" + }, + { + "id": "128308", + "name": "WaKeeney", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.02501000", + "longitude": "-99.87957000" + }, + { + "id": "128399", + "name": "Wallace County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.91666000", + "longitude": "-101.76357000" + }, + { + "id": "128444", + "name": "Wamego", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.20194000", + "longitude": "-96.30500000" + }, + { + "id": "128537", + "name": "Washington", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.81806000", + "longitude": "-97.05086000" + }, + { + "id": "128558", + "name": "Washington County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.78420000", + "longitude": "-97.08754000" + }, + { + "id": "128633", + "name": "Wathena", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.75916000", + "longitude": "-94.94969000" + }, + { + "id": "128777", + "name": "Wellington", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.26530000", + "longitude": "-97.37171000" + }, + { + "id": "128791", + "name": "Wellsville", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.71834000", + "longitude": "-95.08164000" + }, + { + "id": "129052", + "name": "Westmoreland", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.39389000", + "longitude": "-96.41361000" + }, + { + "id": "129082", + "name": "Westwood", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.04056000", + "longitude": "-94.61690000" + }, + { + "id": "129215", + "name": "Wichita", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.69224000", + "longitude": "-97.33754000" + }, + { + "id": "129217", + "name": "Wichita County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "38.48208000", + "longitude": "-101.34736000" + }, + { + "id": "129334", + "name": "Wilson County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.55924000", + "longitude": "-95.74339000" + }, + { + "id": "129393", + "name": "Winfield", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.23975000", + "longitude": "-96.99559000" + }, + { + "id": "129558", + "name": "Woodson County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.88667000", + "longitude": "-95.74017000" + }, + { + "id": "129622", + "name": "Wyandotte County", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "39.11465000", + "longitude": "-94.76448000" + }, + { + "id": "129670", + "name": "Yates Center", + "state_id": 1406, + "state_code": "KS", + "country_id": 233, + "country_code": "US", + "latitude": "37.88115000", + "longitude": "-95.73332000" + }, + { + "id": "111008", + "name": "Adair County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.10416000", + "longitude": "-85.28065000" + }, + { + "id": "111102", + "name": "Albany", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.69090000", + "longitude": "-85.13468000" + }, + { + "id": "111149", + "name": "Alexandria", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.95951000", + "longitude": "-84.38799000" + }, + { + "id": "111189", + "name": "Allen County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.75132000", + "longitude": "-86.19042000" + }, + { + "id": "111304", + "name": "Anchorage", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.26674000", + "longitude": "-85.53302000" + }, + { + "id": "111316", + "name": "Anderson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.00391000", + "longitude": "-84.99101000" + }, + { + "id": "111356", + "name": "Annville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.31925000", + "longitude": "-83.97048000" + }, + { + "id": "111526", + "name": "Ashland", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.47841000", + "longitude": "-82.63794000" + }, + { + "id": "111620", + "name": "Auburn", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.86421000", + "longitude": "-86.71027000" + }, + { + "id": "111642", + "name": "Audubon Park", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.20396000", + "longitude": "-85.72524000" + }, + { + "id": "111648", + "name": "Augusta", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.77174000", + "longitude": "-84.00576000" + }, + { + "id": "111771", + "name": "Ballard County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.05843000", + "longitude": "-88.99934000" + }, + { + "id": "111816", + "name": "Barbourmeade", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.29729000", + "longitude": "-85.60329000" + }, + { + "id": "111818", + "name": "Barbourville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.86648000", + "longitude": "-83.88881000" + }, + { + "id": "111820", + "name": "Bardstown", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.80923000", + "longitude": "-85.46690000" + }, + { + "id": "111821", + "name": "Bardwell", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.87061000", + "longitude": "-89.00979000" + }, + { + "id": "111843", + "name": "Barren County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.96558000", + "longitude": "-85.93366000" + }, + { + "id": "111901", + "name": "Bath County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.14497000", + "longitude": "-83.74267000" + }, + { + "id": "111984", + "name": "Beattyville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.57175000", + "longitude": "-83.70686000" + }, + { + "id": "112000", + "name": "Beaver Dam", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.40199000", + "longitude": "-86.87583000" + }, + { + "id": "112019", + "name": "Bedford", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.59256000", + "longitude": "-85.31773000" + }, + { + "id": "112043", + "name": "Beechwood Village", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.25479000", + "longitude": "-85.63135000" + }, + { + "id": "112068", + "name": "Bell County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.73065000", + "longitude": "-83.67409000" + }, + { + "id": "112109", + "name": "Bellevue", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.10645000", + "longitude": "-84.47883000" + }, + { + "id": "112192", + "name": "Benton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.85728000", + "longitude": "-88.35031000" + }, + { + "id": "112213", + "name": "Berea", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.56869000", + "longitude": "-84.29632000" + }, + { + "id": "112433", + "name": "Bloomfield", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.91034000", + "longitude": "-85.31662000" + }, + { + "id": "112554", + "name": "Boone County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.96986000", + "longitude": "-84.72787000" + }, + { + "id": "112563", + "name": "Booneville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.47620000", + "longitude": "-83.67491000" + }, + { + "id": "112614", + "name": "Bourbon County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.20673000", + "longitude": "-84.21715000" + }, + { + "id": "112628", + "name": "Bowling Green", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.99032000", + "longitude": "-86.44360000" + }, + { + "id": "112642", + "name": "Boyd County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.35957000", + "longitude": "-82.68773000" + }, + { + "id": "112648", + "name": "Boyle County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.62433000", + "longitude": "-84.86681000" + }, + { + "id": "112655", + "name": "Bracken County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.68881000", + "longitude": "-84.09019000" + }, + { + "id": "112686", + "name": "Brandenburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.99896000", + "longitude": "-86.16941000" + }, + { + "id": "112708", + "name": "Breathitt County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.52162000", + "longitude": "-83.32409000" + }, + { + "id": "112715", + "name": "Breckinridge Center", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.68282000", + "longitude": "-87.86308000" + }, + { + "id": "112716", + "name": "Breckinridge County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.77327000", + "longitude": "-86.42928000" + }, + { + "id": "112837", + "name": "Brodhead", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.40425000", + "longitude": "-84.41383000" + }, + { + "id": "112881", + "name": "Brooks", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.06118000", + "longitude": "-85.70968000" + }, + { + "id": "112891", + "name": "Brooksville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.68257000", + "longitude": "-84.06576000" + }, + { + "id": "112929", + "name": "Brownsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.19255000", + "longitude": "-86.26775000" + }, + { + "id": "112989", + "name": "Buckner", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.38368000", + "longitude": "-85.43996000" + }, + { + "id": "112996", + "name": "Buechel", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.19507000", + "longitude": "-85.65190000" + }, + { + "id": "113032", + "name": "Bullitt County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.97008000", + "longitude": "-85.69586000" + }, + { + "id": "113059", + "name": "Burkesville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.79034000", + "longitude": "-85.37052000" + }, + { + "id": "113067", + "name": "Burlington", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.02756000", + "longitude": "-84.72411000" + }, + { + "id": "113116", + "name": "Butler County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.20728000", + "longitude": "-86.68176000" + }, + { + "id": "113165", + "name": "Cadiz", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.86505000", + "longitude": "-87.83530000" + }, + { + "id": "113183", + "name": "Caldwell County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.14533000", + "longitude": "-87.86791000" + }, + { + "id": "113198", + "name": "Calhoun", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.53894000", + "longitude": "-87.25833000" + }, + { + "id": "113227", + "name": "Calloway County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.62110000", + "longitude": "-88.27220000" + }, + { + "id": "113234", + "name": "Calvert City", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.03339000", + "longitude": "-88.35004000" + }, + { + "id": "113241", + "name": "Camargo", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.99425000", + "longitude": "-83.88770000" + }, + { + "id": "113300", + "name": "Campbell County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.94648000", + "longitude": "-84.37970000" + }, + { + "id": "113305", + "name": "Campbellsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.34340000", + "longitude": "-85.34191000" + }, + { + "id": "113310", + "name": "Campton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.73425000", + "longitude": "-83.54741000" + }, + { + "id": "113402", + "name": "Carlisle", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.31202000", + "longitude": "-84.02743000" + }, + { + "id": "113406", + "name": "Carlisle County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.85322000", + "longitude": "-88.97106000" + }, + { + "id": "113452", + "name": "Carroll County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.66786000", + "longitude": "-85.12359000" + }, + { + "id": "113466", + "name": "Carrollton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.68090000", + "longitude": "-85.17940000" + }, + { + "id": "113480", + "name": "Carter County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.31817000", + "longitude": "-83.04954000" + }, + { + "id": "113520", + "name": "Casey County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.32228000", + "longitude": "-84.92837000" + }, + { + "id": "113572", + "name": "Catlettsburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.40480000", + "longitude": "-82.60044000" + }, + { + "id": "113584", + "name": "Cave City", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.13672000", + "longitude": "-85.95692000" + }, + { + "id": "113666", + "name": "Central City", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.29393000", + "longitude": "-87.12333000" + }, + { + "id": "113996", + "name": "Christian County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.89418000", + "longitude": "-87.49038000" + }, + { + "id": "114125", + "name": "Clark County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.97085000", + "longitude": "-84.14740000" + }, + { + "id": "114159", + "name": "Claryville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.91923000", + "longitude": "-84.39549000" + }, + { + "id": "114166", + "name": "Clay", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.47671000", + "longitude": "-87.82002000" + }, + { + "id": "114172", + "name": "Clay City", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.85925000", + "longitude": "-83.91853000" + }, + { + "id": "114180", + "name": "Clay County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.15971000", + "longitude": "-83.71468000" + }, + { + "id": "114269", + "name": "Clinton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.66728000", + "longitude": "-88.99340000" + }, + { + "id": "114290", + "name": "Clinton County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.72748000", + "longitude": "-85.13601000" + }, + { + "id": "114314", + "name": "Cloverport", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.83339000", + "longitude": "-86.63276000" + }, + { + "id": "114332", + "name": "Coal Run Village", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.51316000", + "longitude": "-82.55849000" + }, + { + "id": "114385", + "name": "Cold Spring", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.02173000", + "longitude": "-84.43994000" + }, + { + "id": "114391", + "name": "Coldstream", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.31479000", + "longitude": "-85.52385000" + }, + { + "id": "114464", + "name": "Columbia", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.10284000", + "longitude": "-85.30635000" + }, + { + "id": "114631", + "name": "Corbin", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.94870000", + "longitude": "-84.09688000" + }, + { + "id": "114736", + "name": "Covington", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.08367000", + "longitude": "-84.50855000" + }, + { + "id": "114797", + "name": "Crescent Springs", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.05145000", + "longitude": "-84.58161000" + }, + { + "id": "114808", + "name": "Crestview Hills", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.02728000", + "longitude": "-84.58494000" + }, + { + "id": "114809", + "name": "Crestwood", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.32424000", + "longitude": "-85.47246000" + }, + { + "id": "114824", + "name": "Crittenden", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.78284000", + "longitude": "-84.60522000" + }, + { + "id": "114826", + "name": "Crittenden County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.35272000", + "longitude": "-88.09722000" + }, + { + "id": "114906", + "name": "Cumberland", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.97815000", + "longitude": "-82.98850000" + }, + { + "id": "114913", + "name": "Cumberland County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.78653000", + "longitude": "-85.38845000" + }, + { + "id": "114952", + "name": "Cynthiana", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.39035000", + "longitude": "-84.29410000" + }, + { + "id": "115033", + "name": "Danville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.64563000", + "longitude": "-84.77217000" + }, + { + "id": "115070", + "name": "Daviess County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.73177000", + "longitude": "-87.08723000" + }, + { + "id": "115087", + "name": "Dawson Springs", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.16727000", + "longitude": "-87.69251000" + }, + { + "id": "115091", + "name": "Dayton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.11284000", + "longitude": "-84.47272000" + }, + { + "id": "115364", + "name": "Dixon", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.51782000", + "longitude": "-87.69029000" + }, + { + "id": "115383", + "name": "Doe Valley", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.95665000", + "longitude": "-86.11653000" + }, + { + "id": "115438", + "name": "Douglass Hills", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.23785000", + "longitude": "-85.55274000" + }, + { + "id": "115483", + "name": "Dry Ridge", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.68201000", + "longitude": "-84.58994000" + }, + { + "id": "115619", + "name": "Earlington", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.27421000", + "longitude": "-87.51194000" + }, + { + "id": "115826", + "name": "Eddyville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.09450000", + "longitude": "-88.08030000" + }, + { + "id": "115858", + "name": "Edgewood", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.01867000", + "longitude": "-84.58189000" + }, + { + "id": "115879", + "name": "Edmonson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.20884000", + "longitude": "-86.23862000" + }, + { + "id": "115881", + "name": "Edmonton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.98006000", + "longitude": "-85.61219000" + }, + { + "id": "115978", + "name": "Elizabethtown", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.69395000", + "longitude": "-85.85913000" + }, + { + "id": "115986", + "name": "Elk Creek", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.10034000", + "longitude": "-85.37107000" + }, + { + "id": "115996", + "name": "Elkfork", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.96481000", + "longitude": "-83.13295000" + }, + { + "id": "116012", + "name": "Elkton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.81004000", + "longitude": "-87.15417000" + }, + { + "id": "116028", + "name": "Elliott County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.11789000", + "longitude": "-83.09762000" + }, + { + "id": "116071", + "name": "Elsmere", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.01256000", + "longitude": "-84.60467000" + }, + { + "id": "116099", + "name": "Eminence", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.37007000", + "longitude": "-85.18051000" + }, + { + "id": "116172", + "name": "Erlanger", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.01673000", + "longitude": "-84.60078000" + }, + { + "id": "116212", + "name": "Estill County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.69248000", + "longitude": "-83.96433000" + }, + { + "id": "116299", + "name": "Fairdale", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.10507000", + "longitude": "-85.75885000" + }, + { + "id": "116386", + "name": "Falmouth", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.67674000", + "longitude": "-84.33021000" + }, + { + "id": "116400", + "name": "Farley", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.04634000", + "longitude": "-88.56856000" + }, + { + "id": "116447", + "name": "Fayette County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.04233000", + "longitude": "-84.45873000" + }, + { + "id": "116482", + "name": "Fern Creek", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.15979000", + "longitude": "-85.58774000" + }, + { + "id": "116557", + "name": "Flatwoods", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.52258000", + "longitude": "-82.71711000" + }, + { + "id": "116559", + "name": "Fleming County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.37011000", + "longitude": "-83.69665000" + }, + { + "id": "116561", + "name": "Flemingsburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.42230000", + "longitude": "-83.73381000" + }, + { + "id": "116578", + "name": "Florence", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.99895000", + "longitude": "-84.62661000" + }, + { + "id": "116608", + "name": "Floyd County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.55711000", + "longitude": "-82.74570000" + }, + { + "id": "116698", + "name": "Fort Campbell North", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.65429000", + "longitude": "-87.46056000" + }, + { + "id": "116721", + "name": "Fort Knox", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.89113000", + "longitude": "-85.96363000" + }, + { + "id": "116731", + "name": "Fort Mitchell", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.05950000", + "longitude": "-84.54744000" + }, + { + "id": "116754", + "name": "Fort Thomas", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.07506000", + "longitude": "-84.44716000" + }, + { + "id": "116765", + "name": "Fort Wright", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.05173000", + "longitude": "-84.53411000" + }, + { + "id": "116815", + "name": "Francisville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.10506000", + "longitude": "-84.72439000" + }, + { + "id": "116818", + "name": "Frankfort", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.20091000", + "longitude": "-84.87328000" + }, + { + "id": "116825", + "name": "Franklin", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.72226000", + "longitude": "-86.57722000" + }, + { + "id": "116850", + "name": "Franklin County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.23915000", + "longitude": "-84.87707000" + }, + { + "id": "116933", + "name": "Frenchburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.95092000", + "longitude": "-83.62575000" + }, + { + "id": "116985", + "name": "Fulton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.50423000", + "longitude": "-88.87423000" + }, + { + "id": "116994", + "name": "Fulton County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.55408000", + "longitude": "-89.18761000" + }, + { + "id": "117035", + "name": "Gallatin County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.75687000", + "longitude": "-84.85931000" + }, + { + "id": "117096", + "name": "Garrard County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.63958000", + "longitude": "-84.53763000" + }, + { + "id": "117157", + "name": "Georgetown", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.20980000", + "longitude": "-84.55883000" + }, + { + "id": "117246", + "name": "Glasgow", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.99588000", + "longitude": "-85.91192000" + }, + { + "id": "117509", + "name": "Grant County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.64881000", + "longitude": "-84.62461000" + }, + { + "id": "117547", + "name": "Graves County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.72314000", + "longitude": "-88.65121000" + }, + { + "id": "117557", + "name": "Graymoor-Devondale", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.27313000", + "longitude": "-85.62302000" + }, + { + "id": "117561", + "name": "Grayson", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.33258000", + "longitude": "-82.94850000" + }, + { + "id": "117562", + "name": "Grayson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.46082000", + "longitude": "-86.34388000" + }, + { + "id": "117592", + "name": "Green County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.26411000", + "longitude": "-85.55311000" + }, + { + "id": "117668", + "name": "Greensburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.26089000", + "longitude": "-85.49885000" + }, + { + "id": "117677", + "name": "Greenup", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.57313000", + "longitude": "-82.83017000" + }, + { + "id": "117678", + "name": "Greenup County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.54566000", + "longitude": "-82.92229000" + }, + { + "id": "117682", + "name": "Greenville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.20115000", + "longitude": "-87.17889000" + }, + { + "id": "117811", + "name": "Guthrie", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.64838000", + "longitude": "-87.16639000" + }, + { + "id": "117952", + "name": "Hancock County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.84151000", + "longitude": "-86.77793000" + }, + { + "id": "118000", + "name": "Hardin County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.69792000", + "longitude": "-85.96337000" + }, + { + "id": "118006", + "name": "Hardinsburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.78006000", + "longitude": "-86.46053000" + }, + { + "id": "118015", + "name": "Harlan", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.84314000", + "longitude": "-83.32185000" + }, + { + "id": "118018", + "name": "Harlan County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.85697000", + "longitude": "-83.21795000" + }, + { + "id": "118063", + "name": "Harrison County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.44181000", + "longitude": "-84.33139000" + }, + { + "id": "118078", + "name": "Harrodsburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.76230000", + "longitude": "-84.84329000" + }, + { + "id": "118083", + "name": "Hart County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.29993000", + "longitude": "-85.88471000" + }, + { + "id": "118086", + "name": "Hartford", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.45116000", + "longitude": "-86.90916000" + }, + { + "id": "118164", + "name": "Hawesville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.90006000", + "longitude": "-86.75499000" + }, + { + "id": "118200", + "name": "Hazard", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.24954000", + "longitude": "-83.19323000" + }, + { + "id": "118232", + "name": "Hebron", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.06589000", + "longitude": "-84.70106000" + }, + { + "id": "118240", + "name": "Hebron Estates", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.04951000", + "longitude": "-85.66607000" + }, + { + "id": "118274", + "name": "Henderson", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.83615000", + "longitude": "-87.59001000" + }, + { + "id": "118280", + "name": "Henderson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.79590000", + "longitude": "-87.57316000" + }, + { + "id": "118288", + "name": "Hendron", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.03950000", + "longitude": "-88.62922000" + }, + { + "id": "118300", + "name": "Henry County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.44847000", + "longitude": "-85.11893000" + }, + { + "id": "118317", + "name": "Heritage Creek", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.12368000", + "longitude": "-85.71968000" + }, + { + "id": "118361", + "name": "Hickman", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.57117000", + "longitude": "-89.18618000" + }, + { + "id": "118363", + "name": "Hickman County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.67817000", + "longitude": "-88.97622000" + }, + { + "id": "118406", + "name": "Highland Heights", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.03312000", + "longitude": "-84.45189000" + }, + { + "id": "118425", + "name": "Highview", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.14285000", + "longitude": "-85.62413000" + }, + { + "id": "118470", + "name": "Hillview", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.06979000", + "longitude": "-85.68551000" + }, + { + "id": "118478", + "name": "Hindman", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.33593000", + "longitude": "-82.98044000" + }, + { + "id": "118508", + "name": "Hodgenville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.57395000", + "longitude": "-85.73996000" + }, + { + "id": "118653", + "name": "Hopkins County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.30882000", + "longitude": "-87.54084000" + }, + { + "id": "118655", + "name": "Hopkinsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.86561000", + "longitude": "-87.49117000" + }, + { + "id": "118670", + "name": "Horse Cave", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.17950000", + "longitude": "-85.90692000" + }, + { + "id": "118830", + "name": "Hurstbourne", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.23813000", + "longitude": "-85.58829000" + }, + { + "id": "118831", + "name": "Hurstbourne Acres", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.22118000", + "longitude": "-85.58913000" + }, + { + "id": "118854", + "name": "Hyden", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.16093000", + "longitude": "-83.37324000" + }, + { + "id": "118890", + "name": "Independence", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.94312000", + "longitude": "-84.54411000" + }, + { + "id": "118906", + "name": "Indian Hills", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.27257000", + "longitude": "-85.66274000" + }, + { + "id": "118910", + "name": "Indian Hills Cherokee Section", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.27951000", + "longitude": "-85.64996000" + }, + { + "id": "118931", + "name": "Inez", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.86648000", + "longitude": "-82.53876000" + }, + { + "id": "118998", + "name": "Ironville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.45647000", + "longitude": "-82.69238000" + }, + { + "id": "119003", + "name": "Irvine", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.70064000", + "longitude": "-83.97381000" + }, + { + "id": "119007", + "name": "Irvington", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.88034000", + "longitude": "-86.28386000" + }, + { + "id": "119062", + "name": "Jackson", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.55315000", + "longitude": "-83.38351000" + }, + { + "id": "119082", + "name": "Jackson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.41978000", + "longitude": "-84.00577000" + }, + { + "id": "119120", + "name": "Jamestown", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.98479000", + "longitude": "-85.06301000" + }, + { + "id": "119182", + "name": "Jefferson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.18719000", + "longitude": "-85.65916000" + }, + { + "id": "119205", + "name": "Jeffersontown", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.19424000", + "longitude": "-85.56440000" + }, + { + "id": "119206", + "name": "Jeffersonville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.97369000", + "longitude": "-83.84186000" + }, + { + "id": "119214", + "name": "Jenkins", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.17344000", + "longitude": "-82.63099000" + }, + { + "id": "119236", + "name": "Jessamine County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.87203000", + "longitude": "-84.58093000" + }, + { + "id": "119265", + "name": "Johnson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.84664000", + "longitude": "-82.83154000" + }, + { + "id": "119333", + "name": "Junction City", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.58674000", + "longitude": "-84.79384000" + }, + { + "id": "119499", + "name": "Kenton County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.93346000", + "longitude": "-84.53334000" + }, + { + "id": "119680", + "name": "Knott County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.35405000", + "longitude": "-82.95413000" + }, + { + "id": "119681", + "name": "Knottsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.77172000", + "longitude": "-86.90416000" + }, + { + "id": "119686", + "name": "Knox County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.89067000", + "longitude": "-83.85404000" + }, + { + "id": "119737", + "name": "La Center", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.07672000", + "longitude": "-88.97368000" + }, + { + "id": "119749", + "name": "La Grange", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.40757000", + "longitude": "-85.37885000" + }, + { + "id": "120035", + "name": "Lakeside Park", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.03562000", + "longitude": "-84.56911000" + }, + { + "id": "120080", + "name": "Lancaster", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.61952000", + "longitude": "-84.57800000" + }, + { + "id": "120152", + "name": "Larue County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.54580000", + "longitude": "-85.69792000" + }, + { + "id": "120195", + "name": "Laurel County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.11067000", + "longitude": "-84.11780000" + }, + { + "id": "120233", + "name": "Lawrence County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.06788000", + "longitude": "-82.73475000" + }, + { + "id": "120241", + "name": "Lawrenceburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.03730000", + "longitude": "-84.89662000" + }, + { + "id": "120285", + "name": "Lebanon", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.56979000", + "longitude": "-85.25274000" + }, + { + "id": "120296", + "name": "Lebanon Junction", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.83451000", + "longitude": "-85.73190000" + }, + { + "id": "120301", + "name": "Ledbetter", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.04756000", + "longitude": "-88.47699000" + }, + { + "id": "120310", + "name": "Lee County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.59480000", + "longitude": "-83.71628000" + }, + { + "id": "120347", + "name": "Leitchfield", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.48005000", + "longitude": "-86.29386000" + }, + { + "id": "120397", + "name": "Leslie County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.09406000", + "longitude": "-83.38116000" + }, + { + "id": "120400", + "name": "Letcher County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.12119000", + "longitude": "-82.85528000" + }, + { + "id": "120411", + "name": "Lewis County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.53154000", + "longitude": "-83.37805000" + }, + { + "id": "120422", + "name": "Lewisport", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.93700000", + "longitude": "-86.90221000" + }, + { + "id": "120439", + "name": "Lexington", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.98869000", + "longitude": "-84.47772000" + }, + { + "id": "120456", + "name": "Lexington-Fayette", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.04980000", + "longitude": "-84.45855000" + }, + { + "id": "120459", + "name": "Liberty", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.31841000", + "longitude": "-84.93940000" + }, + { + "id": "120519", + "name": "Lincoln County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.45535000", + "longitude": "-84.66081000" + }, + { + "id": "120642", + "name": "Livermore", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.49310000", + "longitude": "-87.13194000" + }, + { + "id": "120654", + "name": "Livingston County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.20970000", + "longitude": "-88.35381000" + }, + { + "id": "120697", + "name": "Logan County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.85970000", + "longitude": "-86.87894000" + }, + { + "id": "120721", + "name": "London", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.12898000", + "longitude": "-84.08326000" + }, + { + "id": "120804", + "name": "Louisa", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.11425000", + "longitude": "-82.60321000" + }, + { + "id": "120813", + "name": "Louisville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.25424000", + "longitude": "-85.75941000" + }, + { + "id": "120869", + "name": "Ludlow", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.09256000", + "longitude": "-84.54744000" + }, + { + "id": "120923", + "name": "Lyndon", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.25674000", + "longitude": "-85.60163000" + }, + { + "id": "120936", + "name": "Lyon County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.01913000", + "longitude": "-88.08328000" + }, + { + "id": "121007", + "name": "Madison County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.72018000", + "longitude": "-84.27800000" + }, + { + "id": "121025", + "name": "Madisonville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.32810000", + "longitude": "-87.49889000" + }, + { + "id": "121039", + "name": "Magoffin County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.70647000", + "longitude": "-83.06491000" + }, + { + "id": "121091", + "name": "Manchester", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.15370000", + "longitude": "-83.76186000" + }, + { + "id": "121235", + "name": "Marion", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.33283000", + "longitude": "-88.08113000" + }, + { + "id": "121254", + "name": "Marion County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.55253000", + "longitude": "-85.26963000" + }, + { + "id": "121312", + "name": "Marshall County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.88345000", + "longitude": "-88.32938000" + }, + { + "id": "121339", + "name": "Martin County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.80158000", + "longitude": "-82.51329000" + }, + { + "id": "121377", + "name": "Mason County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.59517000", + "longitude": "-83.82425000" + }, + { + "id": "121385", + "name": "Masonville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.67505000", + "longitude": "-87.03472000" + }, + { + "id": "121387", + "name": "Massac", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.01672000", + "longitude": "-88.73061000" + }, + { + "id": "121436", + "name": "Mayfield", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.74172000", + "longitude": "-88.63672000" + }, + { + "id": "121450", + "name": "Maysville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.64119000", + "longitude": "-83.74437000" + }, + { + "id": "121485", + "name": "McCracken County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.05408000", + "longitude": "-88.71272000" + }, + { + "id": "121486", + "name": "McCreary County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.73714000", + "longitude": "-84.48417000" + }, + { + "id": "121517", + "name": "McKee", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.43036000", + "longitude": "-83.99798000" + }, + { + "id": "121528", + "name": "McLean County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.52919000", + "longitude": "-87.26361000" + }, + { + "id": "121556", + "name": "Meade County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.96984000", + "longitude": "-86.21718000" + }, + { + "id": "121572", + "name": "Meads", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.41258000", + "longitude": "-82.70905000" + }, + { + "id": "121660", + "name": "Menifee County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.94138000", + "longitude": "-83.59887000" + }, + { + "id": "121675", + "name": "Mercer County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.81103000", + "longitude": "-84.87444000" + }, + { + "id": "121733", + "name": "Metcalfe County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.99054000", + "longitude": "-85.62925000" + }, + { + "id": "121776", + "name": "Middlesboro", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.60842000", + "longitude": "-83.71658000" + }, + { + "id": "121787", + "name": "Middletown", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.24535000", + "longitude": "-85.53885000" + }, + { + "id": "121814", + "name": "Midway", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.15091000", + "longitude": "-84.68383000" + }, + { + "id": "122073", + "name": "Monroe County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.71218000", + "longitude": "-85.71652000" + }, + { + "id": "122144", + "name": "Montgomery County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.03353000", + "longitude": "-83.91310000" + }, + { + "id": "122162", + "name": "Monticello", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.82979000", + "longitude": "-84.84911000" + }, + { + "id": "122225", + "name": "Morehead", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.18397000", + "longitude": "-83.43268000" + }, + { + "id": "122240", + "name": "Morgan County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.92228000", + "longitude": "-83.25889000" + }, + { + "id": "122248", + "name": "Morganfield", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.68338000", + "longitude": "-87.91669000" + }, + { + "id": "122251", + "name": "Morgantown", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.22560000", + "longitude": "-86.68360000" + }, + { + "id": "122371", + "name": "Mount Olivet", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.53146000", + "longitude": "-84.03687000" + }, + { + "id": "122391", + "name": "Mount Sterling", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.05647000", + "longitude": "-83.94326000" + }, + { + "id": "122397", + "name": "Mount Vernon", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.35286000", + "longitude": "-84.34049000" + }, + { + "id": "122406", + "name": "Mount Washington", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.05006000", + "longitude": "-85.54579000" + }, + { + "id": "122448", + "name": "Muhlenberg County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.21579000", + "longitude": "-87.14204000" + }, + { + "id": "122472", + "name": "Munfordville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.27228000", + "longitude": "-85.89108000" + }, + { + "id": "122491", + "name": "Murray", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.61033000", + "longitude": "-88.31476000" + }, + { + "id": "122626", + "name": "Nelson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.80513000", + "longitude": "-85.46599000" + }, + { + "id": "122685", + "name": "New Castle", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.43340000", + "longitude": "-85.16968000" + }, + { + "id": "122814", + "name": "Newburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.16007000", + "longitude": "-85.65968000" + }, + { + "id": "122841", + "name": "Newport", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.09145000", + "longitude": "-84.49578000" + }, + { + "id": "122887", + "name": "Nicholas County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.33560000", + "longitude": "-84.01533000" + }, + { + "id": "122889", + "name": "Nicholasville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.88063000", + "longitude": "-84.57300000" + }, + { + "id": "123010", + "name": "North Corbin", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.96064000", + "longitude": "-84.09326000" + }, + { + "id": "123148", + "name": "Northfield", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.28701000", + "longitude": "-85.64107000" + }, + { + "id": "123188", + "name": "Nortonville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.19088000", + "longitude": "-87.45278000" + }, + { + "id": "123234", + "name": "Oak Grove", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.66505000", + "longitude": "-87.44279000" + }, + { + "id": "123268", + "name": "Oakbrook", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.99978000", + "longitude": "-84.68522000" + }, + { + "id": "123383", + "name": "Ohio County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.47819000", + "longitude": "-86.84889000" + }, + { + "id": "123408", + "name": "Okolona", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.14118000", + "longitude": "-85.68774000" + }, + { + "id": "123432", + "name": "Oldham County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.39944000", + "longitude": "-85.44837000" + }, + { + "id": "123440", + "name": "Olive Hill", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.30008000", + "longitude": "-83.17407000" + }, + { + "id": "123533", + "name": "Orchard Grass Hills", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.32368000", + "longitude": "-85.52135000" + }, + { + "id": "123662", + "name": "Owen County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.51964000", + "longitude": "-84.82811000" + }, + { + "id": "123664", + "name": "Owensboro", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.77422000", + "longitude": "-87.11333000" + }, + { + "id": "123667", + "name": "Owenton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.53672000", + "longitude": "-84.84338000" + }, + { + "id": "123670", + "name": "Owingsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.14480000", + "longitude": "-83.76408000" + }, + { + "id": "123673", + "name": "Owsley County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.41920000", + "longitude": "-83.68311000" + }, + { + "id": "123715", + "name": "Paducah", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.08339000", + "longitude": "-88.60005000" + }, + { + "id": "123728", + "name": "Paintsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.81454000", + "longitude": "-82.80711000" + }, + { + "id": "123831", + "name": "Paris", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.20980000", + "longitude": "-84.25299000" + }, + { + "id": "123849", + "name": "Park Hills", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.07145000", + "longitude": "-84.53217000" + }, + { + "id": "124019", + "name": "Pendleton County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.69563000", + "longitude": "-84.36027000" + }, + { + "id": "124078", + "name": "Perry County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.24429000", + "longitude": "-83.22148000" + }, + { + "id": "124116", + "name": "Pewee Valley", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.31062000", + "longitude": "-85.48746000" + }, + { + "id": "124190", + "name": "Pike County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.46902000", + "longitude": "-82.39587000" + }, + { + "id": "124198", + "name": "Pikeville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.47927000", + "longitude": "-82.51876000" + }, + { + "id": "124232", + "name": "Pine Knot", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.65091000", + "longitude": "-84.43855000" + }, + { + "id": "124259", + "name": "Pineville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.76203000", + "longitude": "-83.69492000" + }, + { + "id": "124275", + "name": "Pioneer Village", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.06062000", + "longitude": "-85.67774000" + }, + { + "id": "124342", + "name": "Plano", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.88032000", + "longitude": "-86.41832000" + }, + { + "id": "124389", + "name": "Pleasure Ridge Park", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.14535000", + "longitude": "-85.85830000" + }, + { + "id": "124612", + "name": "Powell County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.83115000", + "longitude": "-83.82377000" + }, + { + "id": "124661", + "name": "Prestonsburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.66565000", + "longitude": "-82.77155000" + }, + { + "id": "124682", + "name": "Princeton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.10922000", + "longitude": "-87.88196000" + }, + { + "id": "124705", + "name": "Prospect", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.34507000", + "longitude": "-85.61552000" + }, + { + "id": "124715", + "name": "Providence", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.57451000", + "longitude": "-85.22107000" + }, + { + "id": "124740", + "name": "Pulaski County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.10393000", + "longitude": "-84.57718000" + }, + { + "id": "124812", + "name": "Raceland", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.54008000", + "longitude": "-82.72850000" + }, + { + "id": "124815", + "name": "Radcliff", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.84035000", + "longitude": "-85.94913000" + }, + { + "id": "125006", + "name": "Reidland", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.01756000", + "longitude": "-88.53143000" + }, + { + "id": "125085", + "name": "Richmond", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.74786000", + "longitude": "-84.29465000" + }, + { + "id": "125245", + "name": "Robertson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.51882000", + "longitude": "-84.05203000" + }, + { + "id": "125293", + "name": "Rockcastle County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.36518000", + "longitude": "-84.31594000" + }, + { + "id": "125477", + "name": "Rowan County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.19626000", + "longitude": "-83.42108000" + }, + { + "id": "125534", + "name": "Russell", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.51730000", + "longitude": "-82.69766000" + }, + { + "id": "125538", + "name": "Russell County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.99103000", + "longitude": "-85.05869000" + }, + { + "id": "125540", + "name": "Russell Springs", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.05618000", + "longitude": "-85.08857000" + }, + { + "id": "125544", + "name": "Russellville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.84532000", + "longitude": "-86.88722000" + }, + { + "id": "125565", + "name": "Ryland Heights", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.95756000", + "longitude": "-84.46300000" + }, + { + "id": "125631", + "name": "Saint Dennis", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.18840000", + "longitude": "-85.84580000" + }, + { + "id": "125695", + "name": "Saint Matthews", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.25285000", + "longitude": "-85.65579000" + }, + { + "id": "125711", + "name": "Saint Regis Park", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.22674000", + "longitude": "-85.61663000" + }, + { + "id": "125776", + "name": "Salyersville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.75259000", + "longitude": "-83.06878000" + }, + { + "id": "125883", + "name": "Sandy Hook", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.08647000", + "longitude": "-83.12628000" + }, + { + "id": "126046", + "name": "Scott County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.29156000", + "longitude": "-84.58393000" + }, + { + "id": "126064", + "name": "Scottsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.75338000", + "longitude": "-86.19054000" + }, + { + "id": "126110", + "name": "Sebree", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.60699000", + "longitude": "-87.52862000" + }, + { + "id": "126275", + "name": "Shelby County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.21544000", + "longitude": "-85.19477000" + }, + { + "id": "126282", + "name": "Shelbyville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.21201000", + "longitude": "-85.22357000" + }, + { + "id": "126312", + "name": "Shepherdsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.98840000", + "longitude": "-85.71579000" + }, + { + "id": "126362", + "name": "Shively", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.20007000", + "longitude": "-85.82274000" + }, + { + "id": "126425", + "name": "Silver Grove", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.03451000", + "longitude": "-84.39022000" + }, + { + "id": "126449", + "name": "Simpson County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.74194000", + "longitude": "-86.58232000" + }, + { + "id": "126451", + "name": "Simpsonville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.22257000", + "longitude": "-85.35523000" + }, + { + "id": "126522", + "name": "Smithland", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.13894000", + "longitude": "-88.40337000" + }, + { + "id": "126580", + "name": "Somerset", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.09202000", + "longitude": "-84.60411000" + }, + { + "id": "126728", + "name": "South Shore", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.72091000", + "longitude": "-82.95823000" + }, + { + "id": "126774", + "name": "Southgate", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.07200000", + "longitude": "-84.47272000" + }, + { + "id": "126829", + "name": "Spencer County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.03251000", + "longitude": "-85.32785000" + }, + { + "id": "126892", + "name": "Springfield", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.68534000", + "longitude": "-85.22218000" + }, + { + "id": "126953", + "name": "Stanford", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.53119000", + "longitude": "-84.66189000" + }, + { + "id": "126966", + "name": "Stanton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.84564000", + "longitude": "-83.85825000" + }, + { + "id": "127004", + "name": "Stearns", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.69897000", + "longitude": "-84.47744000" + }, + { + "id": "127150", + "name": "Sturgis", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.54671000", + "longitude": "-87.98391000" + }, + { + "id": "127453", + "name": "Taylor County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.36646000", + "longitude": "-85.32784000" + }, + { + "id": "127460", + "name": "Taylor Mill", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.99756000", + "longitude": "-84.49633000" + }, + { + "id": "127463", + "name": "Taylorsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.03173000", + "longitude": "-85.34245000" + }, + { + "id": "127692", + "name": "Todd County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.83556000", + "longitude": "-87.17915000" + }, + { + "id": "127714", + "name": "Tompkinsville", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.70228000", + "longitude": "-85.69164000" + }, + { + "id": "127821", + "name": "Trigg County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.80632000", + "longitude": "-87.87337000" + }, + { + "id": "127822", + "name": "Trimble County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.61303000", + "longitude": "-85.33757000" + }, + { + "id": "127971", + "name": "Union", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.94590000", + "longitude": "-84.68050000" + }, + { + "id": "127993", + "name": "Union County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.65845000", + "longitude": "-87.94538000" + }, + { + "id": "128116", + "name": "Valley Station", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.11118000", + "longitude": "-85.87024000" + }, + { + "id": "128134", + "name": "Van Lear", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.77121000", + "longitude": "-82.75794000" + }, + { + "id": "128142", + "name": "Vanceburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.59924000", + "longitude": "-83.31880000" + }, + { + "id": "128200", + "name": "Verona", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.81840000", + "longitude": "-84.66078000" + }, + { + "id": "128209", + "name": "Versailles", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.05258000", + "longitude": "-84.72995000" + }, + { + "id": "128242", + "name": "Villa Hills", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.06339000", + "longitude": "-84.59300000" + }, + { + "id": "128268", + "name": "Vine Grove", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.81007000", + "longitude": "-85.98135000" + }, + { + "id": "128434", + "name": "Walton", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.87562000", + "longitude": "-84.61022000" + }, + { + "id": "128487", + "name": "Warren County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.99358000", + "longitude": "-86.42380000" + }, + { + "id": "128515", + "name": "Warsaw", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.78340000", + "longitude": "-84.90162000" + }, + { + "id": "128559", + "name": "Washington County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.75338000", + "longitude": "-85.17475000" + }, + { + "id": "128642", + "name": "Watterson Park", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.19229000", + "longitude": "-85.68329000" + }, + { + "id": "128692", + "name": "Wayne County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.80127000", + "longitude": "-84.82863000" + }, + { + "id": "128737", + "name": "Webster County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.51842000", + "longitude": "-87.68316000" + }, + { + "id": "128837", + "name": "West Buechel", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.19701000", + "longitude": "-85.66329000" + }, + { + "id": "128916", + "name": "West Liberty", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.92148000", + "longitude": "-83.25962000" + }, + { + "id": "129083", + "name": "Westwood", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.48314000", + "longitude": "-82.66988000" + }, + { + "id": "129185", + "name": "Whitesburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.11843000", + "longitude": "-82.82683000" + }, + { + "id": "129199", + "name": "Whitley City", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.72341000", + "longitude": "-84.47049000" + }, + { + "id": "129200", + "name": "Whitley County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.75807000", + "longitude": "-84.14518000" + }, + { + "id": "129221", + "name": "Wickliffe", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.96478000", + "longitude": "-89.08923000" + }, + { + "id": "129231", + "name": "Wilder", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "39.05645000", + "longitude": "-84.48689000" + }, + { + "id": "129266", + "name": "Williamsburg", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "36.74342000", + "longitude": "-84.15966000" + }, + { + "id": "129285", + "name": "Williamstown", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.63812000", + "longitude": "-84.56050000" + }, + { + "id": "129327", + "name": "Wilmore", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.86202000", + "longitude": "-84.66161000" + }, + { + "id": "129353", + "name": "Winchester", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.99008000", + "longitude": "-84.17965000" + }, + { + "id": "129391", + "name": "Windy Hills", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.27396000", + "longitude": "-85.63441000" + }, + { + "id": "129477", + "name": "Wolfe County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "37.73932000", + "longitude": "-83.49318000" + }, + { + "id": "129519", + "name": "Woodford County", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.04239000", + "longitude": "-84.74359000" + }, + { + "id": "129597", + "name": "Worthington", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.54841000", + "longitude": "-82.72433000" + }, + { + "id": "129599", + "name": "Worthington Hills", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.30896000", + "longitude": "-85.52690000" + }, + { + "id": "129618", + "name": "Wurtland", + "state_id": 1419, + "state_code": "KY", + "country_id": 233, + "country_code": "US", + "latitude": "38.55036000", + "longitude": "-82.77794000" + }, + { + "id": "110966", + "name": "Abbeville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.97465000", + "longitude": "-92.13429000" + }, + { + "id": "110987", + "name": "Abita Springs", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.47864000", + "longitude": "-90.04008000" + }, + { + "id": "110991", + "name": "Acadia Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.29053000", + "longitude": "-92.41198000" + }, + { + "id": "111033", + "name": "Addis", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.35380000", + "longitude": "-91.26539000" + }, + { + "id": "111103", + "name": "Albany", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.50436000", + "longitude": "-90.58231000" + }, + { + "id": "111150", + "name": "Alexandria", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.31129000", + "longitude": "-92.44514000" + }, + { + "id": "111191", + "name": "Allen Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.65287000", + "longitude": "-92.82788000" + }, + { + "id": "111260", + "name": "Ama", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.95215000", + "longitude": "-90.29647000" + }, + { + "id": "111268", + "name": "Amelia", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.66632000", + "longitude": "-91.10204000" + }, + { + "id": "111288", + "name": "Amite", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.72657000", + "longitude": "-90.50898000" + }, + { + "id": "111408", + "name": "Arabi", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.95437000", + "longitude": "-90.00535000" + }, + { + "id": "111421", + "name": "Arcadia", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.54904000", + "longitude": "-92.92016000" + }, + { + "id": "111482", + "name": "Arnaudville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.39770000", + "longitude": "-91.93151000" + }, + { + "id": "111509", + "name": "Ascension Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.20354000", + "longitude": "-90.91129000" + }, + { + "id": "111558", + "name": "Assumption Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.90077000", + "longitude": "-91.06259000" + }, + { + "id": "111698", + "name": "Avondale", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.91298000", + "longitude": "-90.20369000" + }, + { + "id": "111704", + "name": "Avoyelles Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.07624000", + "longitude": "-92.00138000" + }, + { + "id": "111738", + "name": "Baker", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.58824000", + "longitude": "-91.16816000" + }, + { + "id": "111754", + "name": "Baldwin", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.83798000", + "longitude": "-91.54428000" + }, + { + "id": "111768", + "name": "Ball", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.41546000", + "longitude": "-92.41180000" + }, + { + "id": "111799", + "name": "Banks Springs", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.08210000", + "longitude": "-92.09291000" + }, + { + "id": "111811", + "name": "Barataria", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.72327000", + "longitude": "-90.12369000" + }, + { + "id": "111877", + "name": "Basile", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.48520000", + "longitude": "-92.59597000" + }, + { + "id": "111883", + "name": "Bastrop", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.77828000", + "longitude": "-91.91144000" + }, + { + "id": "111903", + "name": "Baton Rouge", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.44332000", + "longitude": "-91.18747000" + }, + { + "id": "111912", + "name": "Bawcomville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.47042000", + "longitude": "-92.16736000" + }, + { + "id": "111946", + "name": "Bayou Cane", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.62410000", + "longitude": "-90.75120000" + }, + { + "id": "111947", + "name": "Bayou Gauche", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.78743000", + "longitude": "-90.41314000" + }, + { + "id": "111949", + "name": "Bayou Vista", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.68965000", + "longitude": "-91.27094000" + }, + { + "id": "111991", + "name": "Beauregard Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.64847000", + "longitude": "-93.34334000" + }, + { + "id": "112080", + "name": "Belle Chasse", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.85493000", + "longitude": "-89.99063000" + }, + { + "id": "112092", + "name": "Belle Rose", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.05048000", + "longitude": "-91.04149000" + }, + { + "id": "112194", + "name": "Benton", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.69487000", + "longitude": "-93.74185000" + }, + { + "id": "112247", + "name": "Bernice", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.82209000", + "longitude": "-92.65793000" + }, + { + "id": "112261", + "name": "Berwick", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.69465000", + "longitude": "-91.21899000" + }, + { + "id": "112313", + "name": "Bienville Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.34722000", + "longitude": "-93.05595000" + }, + { + "id": "112416", + "name": "Blanchard", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.58098000", + "longitude": "-93.89268000" + }, + { + "id": "112498", + "name": "Bogalusa", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.79102000", + "longitude": "-89.84869000" + }, + { + "id": "112586", + "name": "Bossier City", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.51599000", + "longitude": "-93.73212000" + }, + { + "id": "112587", + "name": "Bossier Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.67899000", + "longitude": "-93.60500000" + }, + { + "id": "112616", + "name": "Bourg", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.55355000", + "longitude": "-90.60231000" + }, + { + "id": "112618", + "name": "Boutte", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.90243000", + "longitude": "-90.38814000" + }, + { + "id": "112709", + "name": "Breaux Bridge", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.27353000", + "longitude": "-91.89928000" + }, + { + "id": "112755", + "name": "Bridge City", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.93326000", + "longitude": "-90.17007000" + }, + { + "id": "112903", + "name": "Broussard", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.14715000", + "longitude": "-91.96123000" + }, + { + "id": "112925", + "name": "Brownsfield", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.54658000", + "longitude": "-91.12066000" + }, + { + "id": "112930", + "name": "Brownsville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.48709000", + "longitude": "-92.15430000" + }, + { + "id": "112957", + "name": "Brusly", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.39436000", + "longitude": "-91.25372000" + }, + { + "id": "113044", + "name": "Bunkie", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.95325000", + "longitude": "-92.18263000" + }, + { + "id": "113162", + "name": "Caddo Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.58017000", + "longitude": "-93.88235000" + }, + { + "id": "113163", + "name": "Cade", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.08742000", + "longitude": "-91.90540000" + }, + { + "id": "113177", + "name": "Calcasieu Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.22922000", + "longitude": "-93.35795000" + }, + { + "id": "113187", + "name": "Caldwell Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.09227000", + "longitude": "-92.11661000" + }, + { + "id": "113274", + "name": "Cameron", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.79772000", + "longitude": "-93.32515000" + }, + { + "id": "113279", + "name": "Cameron Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.84687000", + "longitude": "-93.19890000" + }, + { + "id": "113309", + "name": "Campti", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.89350000", + "longitude": "-93.11822000" + }, + { + "id": "113393", + "name": "Carencro", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.31714000", + "longitude": "-92.04901000" + }, + { + "id": "113415", + "name": "Carlyss", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.16882000", + "longitude": "-93.37599000" + }, + { + "id": "113504", + "name": "Carville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.21742000", + "longitude": "-91.09621000" + }, + { + "id": "113561", + "name": "Catahoula", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.21464000", + "longitude": "-91.70900000" + }, + { + "id": "113562", + "name": "Catahoula Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.66617000", + "longitude": "-91.84707000" + }, + { + "id": "113600", + "name": "Cecilia", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.33714000", + "longitude": "-91.85317000" + }, + { + "id": "113663", + "name": "Central", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.55435000", + "longitude": "-91.03677000" + }, + { + "id": "113705", + "name": "Chackbay", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.88354000", + "longitude": "-90.79732000" + }, + { + "id": "113716", + "name": "Chalmette", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.94296000", + "longitude": "-89.96537000" + }, + { + "id": "113748", + "name": "Charenton", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.88159000", + "longitude": "-91.52511000" + }, + { + "id": "113816", + "name": "Chauvin", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.43855000", + "longitude": "-90.59537000" + }, + { + "id": "114009", + "name": "Church Point", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.40298000", + "longitude": "-92.21513000" + }, + { + "id": "114092", + "name": "Claiborne", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.51598000", + "longitude": "-92.19180000" + }, + { + "id": "114095", + "name": "Claiborne Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.82269000", + "longitude": "-92.99573000" + }, + { + "id": "114140", + "name": "Clarks", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.02655000", + "longitude": "-92.13903000" + }, + { + "id": "114270", + "name": "Clinton", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.86574000", + "longitude": "-91.01566000" + }, + { + "id": "114404", + "name": "Colfax", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.51906000", + "longitude": "-92.70682000" + }, + { + "id": "114466", + "name": "Columbia", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.10516000", + "longitude": "-92.07791000" + }, + { + "id": "114547", + "name": "Concordia Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.44584000", + "longitude": "-91.64006000" + }, + { + "id": "114577", + "name": "Convent", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.02076000", + "longitude": "-90.82982000" + }, + { + "id": "114698", + "name": "Cottonport", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.98408000", + "longitude": "-92.05346000" + }, + { + "id": "114729", + "name": "Coushatta", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.01488000", + "longitude": "-93.34212000" + }, + { + "id": "114737", + "name": "Covington", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.47549000", + "longitude": "-90.10042000" + }, + { + "id": "114863", + "name": "Crowley", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.21409000", + "longitude": "-92.37458000" + }, + { + "id": "114894", + "name": "Cullen", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.96903000", + "longitude": "-93.45073000" + }, + { + "id": "114942", + "name": "Cut Off", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.54272000", + "longitude": "-90.33814000" + }, + { + "id": "115120", + "name": "De Soto Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.05545000", + "longitude": "-93.73728000" + }, + { + "id": "115209", + "name": "Delcambre", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.94826000", + "longitude": "-91.98873000" + }, + { + "id": "115211", + "name": "Delhi", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.45764000", + "longitude": "-91.49317000" + }, + { + "id": "115236", + "name": "Denham Springs", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.48740000", + "longitude": "-90.95753000" + }, + { + "id": "115136", + "name": "DeQuincy", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.45048000", + "longitude": "-93.43322000" + }, + { + "id": "115137", + "name": "DeRidder", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.84631000", + "longitude": "-93.28905000" + }, + { + "id": "115269", + "name": "Des Allemands", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.82382000", + "longitude": "-90.47508000" + }, + { + "id": "115290", + "name": "Destrehan", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.94322000", + "longitude": "-90.35345000" + }, + { + "id": "115297", + "name": "Deville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.35740000", + "longitude": "-92.16541000" + }, + { + "id": "115394", + "name": "Donaldsonville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.10114000", + "longitude": "-90.99412000" + }, + { + "id": "115509", + "name": "Dulac", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.38883000", + "longitude": "-90.71398000" + }, + { + "id": "115577", + "name": "Duson", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.23576000", + "longitude": "-92.18540000" + }, + { + "id": "115630", + "name": "East Baton Rouge Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.53824000", + "longitude": "-91.09562000" + }, + { + "id": "115643", + "name": "East Carroll Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.73255000", + "longitude": "-91.23507000" + }, + { + "id": "115659", + "name": "East Feliciana Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.84507000", + "longitude": "-91.04554000" + }, + { + "id": "115799", + "name": "Eastwood", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.55626000", + "longitude": "-93.56712000" + }, + { + "id": "115831", + "name": "Eden Isle", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.22853000", + "longitude": "-89.79867000" + }, + { + "id": "115837", + "name": "Edgard", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.04326000", + "longitude": "-90.56009000" + }, + { + "id": "116060", + "name": "Elmwood", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.95659000", + "longitude": "-90.18980000" + }, + { + "id": "116073", + "name": "Elton", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.48131000", + "longitude": "-92.69570000" + }, + { + "id": "116160", + "name": "Erath", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.95826000", + "longitude": "-92.03596000" + }, + { + "id": "116177", + "name": "Erwinville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.53102000", + "longitude": "-91.40789000" + }, + { + "id": "116205", + "name": "Estelle", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.84576000", + "longitude": "-90.10674000" + }, + { + "id": "116229", + "name": "Eunice", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.49437000", + "longitude": "-92.41763000" + }, + { + "id": "116244", + "name": "Evangeline Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.72894000", + "longitude": "-92.40590000" + }, + { + "id": "116408", + "name": "Farmerville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.77347000", + "longitude": "-92.40570000" + }, + { + "id": "116493", + "name": "Ferriday", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.63017000", + "longitude": "-91.55456000" + }, + { + "id": "116744", + "name": "Fort Polk North", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.10302000", + "longitude": "-93.17913000" + }, + { + "id": "116745", + "name": "Fort Polk South", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.05110000", + "longitude": "-93.21578000" + }, + { + "id": "116827", + "name": "Franklin", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.79604000", + "longitude": "-91.50150000" + }, + { + "id": "116867", + "name": "Franklin Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.13322000", + "longitude": "-91.67377000" + }, + { + "id": "116873", + "name": "Franklinton", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.84731000", + "longitude": "-90.15527000" + }, + { + "id": "116932", + "name": "French Settlement", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.29599000", + "longitude": "-90.79630000" + }, + { + "id": "117037", + "name": "Galliano", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.44216000", + "longitude": "-90.29925000" + }, + { + "id": "117072", + "name": "Gardere", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.34575000", + "longitude": "-91.14011000" + }, + { + "id": "117107", + "name": "Garyville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.05604000", + "longitude": "-90.61926000" + }, + { + "id": "117294", + "name": "Glenmora", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.97658000", + "longitude": "-92.58514000" + }, + { + "id": "117352", + "name": "Golden Meadow", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.37911000", + "longitude": "-90.26008000" + }, + { + "id": "117370", + "name": "Gonzales", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.23853000", + "longitude": "-90.92010000" + }, + { + "id": "117442", + "name": "Grambling", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.52765000", + "longitude": "-92.71404000" + }, + { + "id": "117443", + "name": "Gramercy", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.04742000", + "longitude": "-90.68981000" + }, + { + "id": "117463", + "name": "Grand Isle", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.23662000", + "longitude": "-89.98729000" + }, + { + "id": "117470", + "name": "Grand Point", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.06131000", + "longitude": "-90.75343000" + }, + { + "id": "117522", + "name": "Grant Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.59970000", + "longitude": "-92.55952000" + }, + { + "id": "117551", + "name": "Gray", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.69771000", + "longitude": "-90.78648000" + }, + { + "id": "117671", + "name": "Greensburg", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.83074000", + "longitude": "-90.67176000" + }, + { + "id": "117704", + "name": "Greenwood", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.44293000", + "longitude": "-93.97296000" + }, + { + "id": "117725", + "name": "Gretna", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.91465000", + "longitude": "-90.05396000" + }, + { + "id": "117782", + "name": "Gueydan", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.02604000", + "longitude": "-92.50847000" + }, + { + "id": "117826", + "name": "Hackberry", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.99605000", + "longitude": "-93.34210000" + }, + { + "id": "117840", + "name": "Hahnville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.97659000", + "longitude": "-90.40897000" + }, + { + "id": "117912", + "name": "Hammond", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.50463000", + "longitude": "-90.46293000" + }, + { + "id": "117984", + "name": "Harahan", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.94048000", + "longitude": "-90.20313000" + }, + { + "id": "118069", + "name": "Harrisonburg", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.77211000", + "longitude": "-91.82152000" + }, + { + "id": "118111", + "name": "Harvey", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.90354000", + "longitude": "-90.07729000" + }, + { + "id": "118142", + "name": "Haughton", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.53265000", + "longitude": "-93.50406000" + }, + { + "id": "118188", + "name": "Haynesville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.96208000", + "longitude": "-93.14016000" + }, + { + "id": "118275", + "name": "Henderson", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.31325000", + "longitude": "-91.79039000" + }, + { + "id": "118593", + "name": "Homer", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.79192000", + "longitude": "-93.05503000" + }, + { + "id": "118694", + "name": "Houma", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.59577000", + "longitude": "-90.71953000" + }, + { + "id": "118863", + "name": "Iberia Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.51353000", + "longitude": "-91.83964000" + }, + { + "id": "118864", + "name": "Iberville Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.25850000", + "longitude": "-91.34936000" + }, + { + "id": "118891", + "name": "Independence", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.63551000", + "longitude": "-90.50335000" + }, + { + "id": "118947", + "name": "Inniswold", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.40491000", + "longitude": "-91.08344000" + }, + { + "id": "118974", + "name": "Iota", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.33131000", + "longitude": "-92.49569000" + }, + { + "id": "118975", + "name": "Iowa", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.23687000", + "longitude": "-93.01376000" + }, + { + "id": "119063", + "name": "Jackson", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.83740000", + "longitude": "-91.21761000" + }, + { + "id": "119098", + "name": "Jackson Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.30203000", + "longitude": "-92.55774000" + }, + { + "id": "119157", + "name": "Jean Lafitte", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.73604000", + "longitude": "-90.12674000" + }, + { + "id": "119158", + "name": "Jeanerette", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.91104000", + "longitude": "-91.66345000" + }, + { + "id": "119163", + "name": "Jefferson", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.96604000", + "longitude": "-90.15313000" + }, + { + "id": "119200", + "name": "Jefferson Davis Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.26772000", + "longitude": "-92.81412000" + }, + { + "id": "119203", + "name": "Jefferson Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.68097000", + "longitude": "-90.09798000" + }, + { + "id": "119212", + "name": "Jena", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.68323000", + "longitude": "-92.13374000" + }, + { + "id": "119218", + "name": "Jennings", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.22243000", + "longitude": "-92.65708000" + }, + { + "id": "119302", + "name": "Jonesboro", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.24127000", + "longitude": "-92.71599000" + }, + { + "id": "119309", + "name": "Jonesville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.62656000", + "longitude": "-91.81818000" + }, + { + "id": "119387", + "name": "Kaplan", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.99798000", + "longitude": "-92.28485000" + }, + { + "id": "119470", + "name": "Kenner", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.99409000", + "longitude": "-90.24174000" + }, + { + "id": "119500", + "name": "Kentwood", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.93824000", + "longitude": "-90.50898000" + }, + { + "id": "119560", + "name": "Killian", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.35881000", + "longitude": "-90.58620000" + }, + { + "id": "119574", + "name": "Kinder", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.48548000", + "longitude": "-92.85070000" + }, + { + "id": "119718", + "name": "Krotz Springs", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.53686000", + "longitude": "-91.75289000" + }, + { + "id": "119788", + "name": "La Salle Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.67673000", + "longitude": "-92.16044000" + }, + { + "id": "119808", + "name": "Labadieville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.83743000", + "longitude": "-90.95621000" + }, + { + "id": "119817", + "name": "Lacombe", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.31353000", + "longitude": "-89.94313000" + }, + { + "id": "119832", + "name": "Lafayette", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.22409000", + "longitude": "-92.01984000" + }, + { + "id": "119844", + "name": "Lafayette Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.20677000", + "longitude": "-92.06388000" + }, + { + "id": "119846", + "name": "Lafourche Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.50033000", + "longitude": "-90.40259000" + }, + { + "id": "119867", + "name": "Lake Arthur", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.08076000", + "longitude": "-92.67153000" + }, + { + "id": "119877", + "name": "Lake Charles", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.21309000", + "longitude": "-93.20440000" + }, + { + "id": "119966", + "name": "Lake Providence", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.80499000", + "longitude": "-91.17098000" + }, + { + "id": "120028", + "name": "Lakeshore", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.53514000", + "longitude": "-92.02958000" + }, + { + "id": "120134", + "name": "Laplace", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.06698000", + "longitude": "-90.48147000" + }, + { + "id": "120151", + "name": "Larose", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.57244000", + "longitude": "-90.38175000" + }, + { + "id": "120249", + "name": "Lawtell", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.51853000", + "longitude": "-92.18485000" + }, + { + "id": "120300", + "name": "Lecompte", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.09463000", + "longitude": "-92.40041000" + }, + { + "id": "120328", + "name": "Leesville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.14352000", + "longitude": "-93.26100000" + }, + { + "id": "120392", + "name": "Leonville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.47047000", + "longitude": "-91.97845000" + }, + { + "id": "120539", + "name": "Lincoln Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.60164000", + "longitude": "-92.66482000" + }, + { + "id": "120648", + "name": "Livingston", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.50213000", + "longitude": "-90.74787000" + }, + { + "id": "120660", + "name": "Livingston Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.44014000", + "longitude": "-90.72791000" + }, + { + "id": "120661", + "name": "Livonia", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.55908000", + "longitude": "-91.55594000" + }, + { + "id": "120679", + "name": "Lockport", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.64605000", + "longitude": "-90.53925000" + }, + { + "id": "120682", + "name": "Lockport Heights", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.65049000", + "longitude": "-90.54647000" + }, + { + "id": "120706", + "name": "Logansport", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.97545000", + "longitude": "-93.99797000" + }, + { + "id": "120876", + "name": "Luling", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.93215000", + "longitude": "-90.36647000" + }, + { + "id": "120893", + "name": "Lutcher", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.04048000", + "longitude": "-90.69898000" + }, + { + "id": "121023", + "name": "Madison Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.36440000", + "longitude": "-91.24258000" + }, + { + "id": "121078", + "name": "Mamou", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.63381000", + "longitude": "-92.41930000" + }, + { + "id": "121107", + "name": "Mandeville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.35825000", + "longitude": "-90.06563000" + }, + { + "id": "121144", + "name": "Mansfield", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.03766000", + "longitude": "-93.70018000" + }, + { + "id": "121152", + "name": "Mansura", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.05797000", + "longitude": "-92.04901000" + }, + { + "id": "121163", + "name": "Many", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.56878000", + "longitude": "-93.48406000" + }, + { + "id": "121230", + "name": "Maringouin", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.49130000", + "longitude": "-91.51955000" + }, + { + "id": "121273", + "name": "Marksville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.12797000", + "longitude": "-92.06624000" + }, + { + "id": "121296", + "name": "Marrero", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.89937000", + "longitude": "-90.10035000" + }, + { + "id": "121402", + "name": "Mathews", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.68632000", + "longitude": "-90.54675000" + }, + { + "id": "121423", + "name": "Maurice", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.10854000", + "longitude": "-92.12457000" + }, + { + "id": "121634", + "name": "Melville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.69297000", + "longitude": "-91.74400000" + }, + { + "id": "121670", + "name": "Meraux", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.93017000", + "longitude": "-89.91623000" + }, + { + "id": "121716", + "name": "Merrydale", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.50130000", + "longitude": "-91.10844000" + }, + { + "id": "121717", + "name": "Merryville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.75437000", + "longitude": "-93.54045000" + }, + { + "id": "121729", + "name": "Metairie", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.98409000", + "longitude": "-90.15285000" + }, + { + "id": "121730", + "name": "Metairie Terrace", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.97854000", + "longitude": "-90.16396000" + }, + { + "id": "121815", + "name": "Midway", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.69212000", + "longitude": "-92.15236000" + }, + { + "id": "121913", + "name": "Milton", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.10381000", + "longitude": "-92.07651000" + }, + { + "id": "121928", + "name": "Minden", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.61543000", + "longitude": "-93.28684000" + }, + { + "id": "121964", + "name": "Minorca", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.57933000", + "longitude": "-91.48179000" + }, + { + "id": "122058", + "name": "Monroe", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.50931000", + "longitude": "-92.11930000" + }, + { + "id": "122116", + "name": "Montegut", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.47439000", + "longitude": "-90.55703000" + }, + { + "id": "122161", + "name": "Monticello", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.48908000", + "longitude": "-91.04872000" + }, + { + "id": "122190", + "name": "Montz", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.00687000", + "longitude": "-90.46869000" + }, + { + "id": "122227", + "name": "Morehouse Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.82022000", + "longitude": "-91.80180000" + }, + { + "id": "122235", + "name": "Morgan City", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.69937000", + "longitude": "-91.20677000" + }, + { + "id": "122308", + "name": "Moss Bluff", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.30270000", + "longitude": "-93.19071000" + }, + { + "id": "122560", + "name": "Napoleonville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.94048000", + "longitude": "-91.02482000" + }, + { + "id": "122585", + "name": "Natalbany", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.54622000", + "longitude": "-90.48619000" + }, + { + "id": "122588", + "name": "Natchitoches", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.76072000", + "longitude": "-93.08627000" + }, + { + "id": "122589", + "name": "Natchitoches Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.72354000", + "longitude": "-93.09624000" + }, + { + "id": "122730", + "name": "New Iberia", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.00354000", + "longitude": "-91.81873000" + }, + { + "id": "122739", + "name": "New Llano", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.11491000", + "longitude": "-93.27155000" + }, + { + "id": "122756", + "name": "New Orleans", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.95465000", + "longitude": "-90.07507000" + }, + { + "id": "122772", + "name": "New Roads", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.70157000", + "longitude": "-91.43622000" + }, + { + "id": "122775", + "name": "New Sarpy", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.97817000", + "longitude": "-90.38963000" + }, + { + "id": "122825", + "name": "Newellton", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.07265000", + "longitude": "-91.24095000" + }, + { + "id": "122938", + "name": "Norco", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.99909000", + "longitude": "-90.41230000" + }, + { + "id": "123118", + "name": "North Vacherie", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.99687000", + "longitude": "-90.70565000" + }, + { + "id": "123235", + "name": "Oak Grove", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.86096000", + "longitude": "-91.38845000" + }, + { + "id": "123250", + "name": "Oak Hills Place", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.35992000", + "longitude": "-91.08760000" + }, + { + "id": "123270", + "name": "Oakdale", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.81603000", + "longitude": "-92.66042000" + }, + { + "id": "123315", + "name": "Oberlin", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.62020000", + "longitude": "-92.76265000" + }, + { + "id": "123422", + "name": "Old Jefferson", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.38269000", + "longitude": "-91.01705000" + }, + { + "id": "123451", + "name": "Olla", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.90294000", + "longitude": "-92.24319000" + }, + { + "id": "123497", + "name": "Opelousas", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.53353000", + "longitude": "-92.08151000" + }, + { + "id": "123567", + "name": "Orleans Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.06864000", + "longitude": "-89.92813000" + }, + { + "id": "123619", + "name": "Ossun", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.27603000", + "longitude": "-92.11235000" + }, + { + "id": "123645", + "name": "Ouachita Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.47831000", + "longitude": "-92.15487000" + }, + { + "id": "123816", + "name": "Paradis", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.87965000", + "longitude": "-90.43397000" + }, + { + "id": "123915", + "name": "Patterson", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.69326000", + "longitude": "-91.30205000" + }, + { + "id": "123923", + "name": "Paulina", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.02631000", + "longitude": "-90.71315000" + }, + { + "id": "123966", + "name": "Pearl River", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.37603000", + "longitude": "-89.74840000" + }, + { + "id": "124179", + "name": "Pierre Part", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.96520000", + "longitude": "-91.20316000" + }, + { + "id": "124241", + "name": "Pine Prairie", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.78381000", + "longitude": "-92.42541000" + }, + { + "id": "124260", + "name": "Pineville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.32240000", + "longitude": "-92.43430000" + }, + { + "id": "124349", + "name": "Plaquemine", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.29005000", + "longitude": "-91.23497000" + }, + { + "id": "124350", + "name": "Plaquemines Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.54421000", + "longitude": "-89.82047000" + }, + { + "id": "124435", + "name": "Pointe Coupee Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.70940000", + "longitude": "-91.60079000" + }, + { + "id": "124466", + "name": "Ponchatoula", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.43880000", + "longitude": "-90.44148000" + }, + { + "id": "124492", + "name": "Port Allen", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.45214000", + "longitude": "-91.21011000" + }, + { + "id": "124497", + "name": "Port Barre", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.56020000", + "longitude": "-91.95401000" + }, + { + "id": "124536", + "name": "Port Sulphur", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.48049000", + "longitude": "-89.69395000" + }, + { + "id": "124620", + "name": "Poydras", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.86937000", + "longitude": "-89.88895000" + }, + { + "id": "124635", + "name": "Prairieville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.30297000", + "longitude": "-90.97205000" + }, + { + "id": "124651", + "name": "Presquille", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.56383000", + "longitude": "-90.64620000" + }, + { + "id": "124668", + "name": "Prien", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.18187000", + "longitude": "-93.27377000" + }, + { + "id": "124811", + "name": "Raceland", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.72743000", + "longitude": "-90.59898000" + }, + { + "id": "124896", + "name": "Rapides Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.19862000", + "longitude": "-92.53320000" + }, + { + "id": "124923", + "name": "Rayne", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.23493000", + "longitude": "-92.26846000" + }, + { + "id": "124927", + "name": "Rayville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.47736000", + "longitude": "-91.75485000" + }, + { + "id": "124943", + "name": "Red Chute", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.55598000", + "longitude": "-93.61323000" + }, + { + "id": "124960", + "name": "Red River Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.09315000", + "longitude": "-93.33988000" + }, + { + "id": "125034", + "name": "Reserve", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.05381000", + "longitude": "-90.55175000" + }, + { + "id": "125080", + "name": "Richland Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.41779000", + "longitude": "-91.76349000" + }, + { + "id": "125109", + "name": "Richwood", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.44876000", + "longitude": "-92.08486000" + }, + { + "id": "125142", + "name": "Ringgold", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.32849000", + "longitude": "-93.27989000" + }, + { + "id": "125185", + "name": "River Ridge", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.96020000", + "longitude": "-90.21563000" + }, + { + "id": "125422", + "name": "Roseland", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.76491000", + "longitude": "-90.51176000" + }, + { + "id": "125437", + "name": "Rosepine", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.91991000", + "longitude": "-93.28239000" + }, + { + "id": "125547", + "name": "Ruston", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.52321000", + "longitude": "-92.63793000" + }, + { + "id": "125570", + "name": "Sabine Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.56401000", + "longitude": "-93.55470000" + }, + { + "id": "125608", + "name": "Saint Bernard Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.87399000", + "longitude": "-89.82422000" + }, + { + "id": "125617", + "name": "Saint Charles Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.90553000", + "longitude": "-90.35822000" + }, + { + "id": "125637", + "name": "Saint Francisville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.77990000", + "longitude": "-91.37650000" + }, + { + "id": "125639", + "name": "Saint Gabriel", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.25770000", + "longitude": "-91.09927000" + }, + { + "id": "125648", + "name": "Saint Helena Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.82198000", + "longitude": "-90.71032000" + }, + { + "id": "125658", + "name": "Saint James Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.02630000", + "longitude": "-90.79632000" + }, + { + "id": "125663", + "name": "Saint John the Baptist Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.12646000", + "longitude": "-90.47088000" + }, + { + "id": "125670", + "name": "Saint Joseph", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.91849000", + "longitude": "-91.23345000" + }, + { + "id": "125677", + "name": "Saint Landry Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.59885000", + "longitude": "-92.00586000" + }, + { + "id": "125687", + "name": "Saint Martin Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.12907000", + "longitude": "-91.60830000" + }, + { + "id": "125689", + "name": "Saint Martinville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.12520000", + "longitude": "-91.83345000" + }, + { + "id": "125690", + "name": "Saint Mary Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.63462000", + "longitude": "-91.47293000" + }, + { + "id": "125713", + "name": "Saint Rose", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.94687000", + "longitude": "-90.32313000" + }, + { + "id": "125718", + "name": "Saint Tammany Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.40875000", + "longitude": "-89.95393000" + }, + { + "id": "126019", + "name": "Schriever", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.74215000", + "longitude": "-90.81037000" + }, + { + "id": "126039", + "name": "Scott", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.23576000", + "longitude": "-92.09457000" + }, + { + "id": "126300", + "name": "Shenandoah", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.40130000", + "longitude": "-91.00094000" + }, + { + "id": "126382", + "name": "Shreveport", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.52515000", + "longitude": "-93.75018000" + }, + { + "id": "126390", + "name": "Sibley", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.53932000", + "longitude": "-93.29628000" + }, + { + "id": "126446", + "name": "Simmesport", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.98352000", + "longitude": "-91.80012000" + }, + { + "id": "126501", + "name": "Slidell", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.27519000", + "longitude": "-89.78117000" + }, + { + "id": "126605", + "name": "Sorrento", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.18436000", + "longitude": "-90.85926000" + }, + { + "id": "126739", + "name": "South Vacherie", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.92743000", + "longitude": "-90.69981000" + }, + { + "id": "126909", + "name": "Springhill", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "33.00597000", + "longitude": "-93.46684000" + }, + { + "id": "127035", + "name": "Sterlington", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.69625000", + "longitude": "-92.08597000" + }, + { + "id": "127091", + "name": "Stonewall", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.28183000", + "longitude": "-93.82407000" + }, + { + "id": "127194", + "name": "Sulphur", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.23659000", + "longitude": "-93.37738000" + }, + { + "id": "127272", + "name": "Sunset", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.41131000", + "longitude": "-92.06845000" + }, + { + "id": "127283", + "name": "Supreme", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.85937000", + "longitude": "-90.98121000" + }, + { + "id": "127331", + "name": "Swartz", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.56875000", + "longitude": "-91.98513000" + }, + { + "id": "127396", + "name": "Tallulah", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.40848000", + "longitude": "-91.18678000" + }, + { + "id": "127415", + "name": "Tangipahoa Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.62665000", + "longitude": "-90.40568000" + }, + { + "id": "127512", + "name": "Tensas Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.00166000", + "longitude": "-91.34007000" + }, + { + "id": "127525", + "name": "Terrebonne Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.33744000", + "longitude": "-90.83764000" + }, + { + "id": "127533", + "name": "Terrytown", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.91021000", + "longitude": "-90.03257000" + }, + { + "id": "127573", + "name": "Thibodaux", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.79576000", + "longitude": "-90.82287000" + }, + { + "id": "127659", + "name": "Timberlane", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.87743000", + "longitude": "-90.03202000" + }, + { + "id": "128008", + "name": "Union Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.83190000", + "longitude": "-92.37482000" + }, + { + "id": "128059", + "name": "Urania", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.86378000", + "longitude": "-92.29597000" + }, + { + "id": "128184", + "name": "Vermilion Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.80939000", + "longitude": "-92.30428000" + }, + { + "id": "128195", + "name": "Vernon Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.10829000", + "longitude": "-93.18415000" + }, + { + "id": "128228", + "name": "Vidalia", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.56544000", + "longitude": "-91.42595000" + }, + { + "id": "128235", + "name": "Vienna Bend", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.73239000", + "longitude": "-93.04100000" + }, + { + "id": "128250", + "name": "Village Saint George", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.36214000", + "longitude": "-91.06733000" + }, + { + "id": "128259", + "name": "Ville Platte", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.68797000", + "longitude": "-92.27152000" + }, + { + "id": "128279", + "name": "Vinton", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.19076000", + "longitude": "-93.58127000" + }, + { + "id": "128284", + "name": "Violet", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.89576000", + "longitude": "-89.89784000" + }, + { + "id": "128298", + "name": "Vivian", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.87153000", + "longitude": "-93.98740000" + }, + { + "id": "128327", + "name": "Waggaman", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.91854000", + "longitude": "-90.21091000" + }, + { + "id": "128383", + "name": "Walker", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.48797000", + "longitude": "-90.86149000" + }, + { + "id": "128583", + "name": "Washington Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.85334000", + "longitude": "-90.04052000" + }, + { + "id": "128639", + "name": "Watson", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.57574000", + "longitude": "-90.95316000" + }, + { + "id": "128744", + "name": "Webster Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.71345000", + "longitude": "-93.33498000" + }, + { + "id": "128796", + "name": "Welsh", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.23604000", + "longitude": "-92.82265000" + }, + { + "id": "128822", + "name": "West Baton Rouge Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.46341000", + "longitude": "-91.31275000" + }, + { + "id": "128841", + "name": "West Carroll Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.78856000", + "longitude": "-91.45674000" + }, + { + "id": "128870", + "name": "West Feliciana Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.87977000", + "longitude": "-91.42003000" + }, + { + "id": "128871", + "name": "West Ferriday", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.64044000", + "longitude": "-91.57318000" + }, + { + "id": "128935", + "name": "West Monroe", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.51848000", + "longitude": "-92.14764000" + }, + { + "id": "129038", + "name": "Westlake", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.24215000", + "longitude": "-93.25071000" + }, + { + "id": "129044", + "name": "Westminster", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.41380000", + "longitude": "-91.08760000" + }, + { + "id": "129081", + "name": "Westwego", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.90604000", + "longitude": "-90.14230000" + }, + { + "id": "129128", + "name": "White Castle", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.16992000", + "longitude": "-91.14705000" + }, + { + "id": "129404", + "name": "Winn Parish", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.94425000", + "longitude": "-92.63677000" + }, + { + "id": "129416", + "name": "Winnfield", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.92558000", + "longitude": "-92.64131000" + }, + { + "id": "129418", + "name": "Winnsboro", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "32.16321000", + "longitude": "-91.72068000" + }, + { + "id": "129540", + "name": "Woodmere", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "29.85798000", + "longitude": "-90.08035000" + }, + { + "id": "129580", + "name": "Woodworth", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.14658000", + "longitude": "-92.49736000" + }, + { + "id": "129718", + "name": "Youngsville", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.09965000", + "longitude": "-91.99012000" + }, + { + "id": "129738", + "name": "Zachary", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "30.64852000", + "longitude": "-91.15650000" + }, + { + "id": "129763", + "name": "Zwolle", + "state_id": 1457, + "state_code": "LA", + "country_id": 233, + "country_code": "US", + "latitude": "31.63156000", + "longitude": "-93.64407000" + }, + { + "id": "111000", + "name": "Acton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.53425000", + "longitude": "-70.90978000" + }, + { + "id": "111036", + "name": "Addison", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.61841000", + "longitude": "-67.74416000" + }, + { + "id": "111125", + "name": "Albion", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.53229000", + "longitude": "-69.44254000" + }, + { + "id": "111159", + "name": "Alfred", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.47647000", + "longitude": "-70.71839000" + }, + { + "id": "111334", + "name": "Androscoggin County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.16585000", + "longitude": "-70.20645000" + }, + { + "id": "111395", + "name": "Appleton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.28924000", + "longitude": "-69.25088000" + }, + { + "id": "111492", + "name": "Aroostook County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "46.65881000", + "longitude": "-68.59889000" + }, + { + "id": "111502", + "name": "Arundel", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.38259000", + "longitude": "-70.47783000" + }, + { + "id": "111627", + "name": "Auburn", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.09785000", + "longitude": "-70.23117000" + }, + { + "id": "111649", + "name": "Augusta", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.31062000", + "longitude": "-69.77949000" + }, + { + "id": "111792", + "name": "Bangor", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.80118000", + "longitude": "-68.77781000" + }, + { + "id": "111806", + "name": "Bar Harbor", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.38758000", + "longitude": "-68.20390000" + }, + { + "id": "111897", + "name": "Bath", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.91064000", + "longitude": "-69.82060000" + }, + { + "id": "112056", + "name": "Belfast", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.42591000", + "longitude": "-69.00642000" + }, + { + "id": "112061", + "name": "Belgrade", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.44729000", + "longitude": "-69.83255000" + }, + { + "id": "112197", + "name": "Benton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.58618000", + "longitude": "-69.55088000" + }, + { + "id": "112262", + "name": "Berwick", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.26592000", + "longitude": "-70.86450000" + }, + { + "id": "112279", + "name": "Bethel", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.40423000", + "longitude": "-70.79062000" + }, + { + "id": "112312", + "name": "Biddeford", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.49258000", + "longitude": "-70.45338000" + }, + { + "id": "112572", + "name": "Boothbay", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.87647000", + "longitude": "-69.63366000" + }, + { + "id": "112573", + "name": "Boothbay Harbor", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.85230000", + "longitude": "-69.62810000" + }, + { + "id": "112665", + "name": "Bradford", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.06673000", + "longitude": "-68.93781000" + }, + { + "id": "112673", + "name": "Bradley", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.92090000", + "longitude": "-68.62809000" + }, + { + "id": "112739", + "name": "Brewer", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.79674000", + "longitude": "-68.76142000" + }, + { + "id": "112779", + "name": "Bridgton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.05479000", + "longitude": "-70.71284000" + }, + { + "id": "112806", + "name": "Bristol", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.95758000", + "longitude": "-69.50921000" + }, + { + "id": "112882", + "name": "Brooks", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.55035000", + "longitude": "-69.12087000" + }, + { + "id": "112916", + "name": "Brownfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.93813000", + "longitude": "-70.90868000" + }, + { + "id": "112937", + "name": "Brownville", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.30700000", + "longitude": "-69.03337000" + }, + { + "id": "112950", + "name": "Brunswick", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.91452000", + "longitude": "-69.96533000" + }, + { + "id": "112979", + "name": "Buckfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.28951000", + "longitude": "-70.36534000" + }, + { + "id": "112992", + "name": "Bucksport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.57369000", + "longitude": "-68.79559000" + }, + { + "id": "113084", + "name": "Burnham", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.69284000", + "longitude": "-69.42755000" + }, + { + "id": "113132", + "name": "Buxton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.63786000", + "longitude": "-70.51894000" + }, + { + "id": "113175", + "name": "Calais", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.18376000", + "longitude": "-67.27662000" + }, + { + "id": "113266", + "name": "Camden", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.20980000", + "longitude": "-69.06476000" + }, + { + "id": "113312", + "name": "Canaan", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.76173000", + "longitude": "-69.56144000" + }, + { + "id": "113346", + "name": "Canton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.44080000", + "longitude": "-70.31649000" + }, + { + "id": "113372", + "name": "Cape Neddick", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.19370000", + "longitude": "-70.62089000" + }, + { + "id": "113394", + "name": "Caribou", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "46.86060000", + "longitude": "-68.01197000" + }, + { + "id": "113418", + "name": "Carmel", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.79757000", + "longitude": "-69.05115000" + }, + { + "id": "113542", + "name": "Castine", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.38785000", + "longitude": "-68.79975000" + }, + { + "id": "113767", + "name": "Charleston", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.08506000", + "longitude": "-69.04059000" + }, + { + "id": "113832", + "name": "Chelsea", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.25035000", + "longitude": "-69.71727000" + }, + { + "id": "113866", + "name": "Cherryfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.60730000", + "longitude": "-67.92584000" + }, + { + "id": "113911", + "name": "Chesterville", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.55117000", + "longitude": "-70.08617000" + }, + { + "id": "113960", + "name": "China", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.47868000", + "longitude": "-69.51726000" + }, + { + "id": "113980", + "name": "Chisholm", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.48145000", + "longitude": "-70.19950000" + }, + { + "id": "114281", + "name": "Clinton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.63784000", + "longitude": "-69.50310000" + }, + { + "id": "114642", + "name": "Corinna", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.92117000", + "longitude": "-69.26171000" + }, + { + "id": "114655", + "name": "Cornish", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.80480000", + "longitude": "-70.80117000" + }, + { + "id": "114656", + "name": "Cornville", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.83673000", + "longitude": "-69.67311000" + }, + { + "id": "114911", + "name": "Cumberland Center", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.79647000", + "longitude": "-70.25894000" + }, + { + "id": "114918", + "name": "Cumberland County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.80608000", + "longitude": "-70.33020000" + }, + { + "id": "114932", + "name": "Cushing", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.01925000", + "longitude": "-69.23977000" + }, + { + "id": "115008", + "name": "Damariscotta", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.03286000", + "longitude": "-69.51866000" + }, + { + "id": "115100", + "name": "Dayton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.54972000", + "longitude": "-70.57555000" + }, + { + "id": "115168", + "name": "Dedham", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.69174000", + "longitude": "-68.66198000" + }, + { + "id": "115172", + "name": "Deer Isle", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.22397000", + "longitude": "-68.67753000" + }, + { + "id": "115240", + "name": "Denmark", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.97035000", + "longitude": "-70.80340000" + }, + { + "id": "115308", + "name": "Dexter", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.02395000", + "longitude": "-69.28977000" + }, + { + "id": "115359", + "name": "Dixfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.53395000", + "longitude": "-70.45590000" + }, + { + "id": "115362", + "name": "Dixmont", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.68035000", + "longitude": "-69.16282000" + }, + { + "id": "115457", + "name": "Dover-Foxcroft", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.18339000", + "longitude": "-69.22699000" + }, + { + "id": "115707", + "name": "East Machias", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.73924000", + "longitude": "-67.38999000" + }, + { + "id": "115713", + "name": "East Millinocket", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.62755000", + "longitude": "-68.57448000" + }, + { + "id": "115788", + "name": "Easton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "46.64115000", + "longitude": "-67.90947000" + }, + { + "id": "115795", + "name": "Eastport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.90619000", + "longitude": "-66.98998000" + }, + { + "id": "115821", + "name": "Eddington", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.82618000", + "longitude": "-68.69337000" + }, + { + "id": "115840", + "name": "Edgecomb", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.95841000", + "longitude": "-69.63060000" + }, + { + "id": "115970", + "name": "Eliot", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.15314000", + "longitude": "-70.80006000" + }, + { + "id": "116038", + "name": "Ellsworth", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.54341000", + "longitude": "-68.41946000" + }, + { + "id": "116126", + "name": "Enfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.24894000", + "longitude": "-68.56836000" + }, + { + "id": "116215", + "name": "Etna", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.82090000", + "longitude": "-69.11115000" + }, + { + "id": "116314", + "name": "Fairfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.58840000", + "longitude": "-69.59866000" + }, + { + "id": "116389", + "name": "Falmouth", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.72953000", + "longitude": "-70.24199000" + }, + { + "id": "116390", + "name": "Falmouth Foreside", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.73480000", + "longitude": "-70.20783000" + }, + { + "id": "116409", + "name": "Farmingdale", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.24451000", + "longitude": "-69.77143000" + }, + { + "id": "116418", + "name": "Farmington", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.67062000", + "longitude": "-70.15117000" + }, + { + "id": "116442", + "name": "Fayette", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.40896000", + "longitude": "-70.03367000" + }, + { + "id": "116710", + "name": "Fort Fairfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "46.77227000", + "longitude": "-67.83391000" + }, + { + "id": "116720", + "name": "Fort Kent", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "47.25865000", + "longitude": "-68.58949000" + }, + { + "id": "116822", + "name": "Frankfort", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.60980000", + "longitude": "-68.87670000" + }, + { + "id": "116835", + "name": "Franklin", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.58702000", + "longitude": "-68.23224000" + }, + { + "id": "116859", + "name": "Franklin County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.97417000", + "longitude": "-70.44410000" + }, + { + "id": "116913", + "name": "Freeport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.85702000", + "longitude": "-70.10311000" + }, + { + "id": "116936", + "name": "Frenchville", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "47.28087000", + "longitude": "-68.37976000" + }, + { + "id": "116948", + "name": "Friendship", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.98369000", + "longitude": "-69.33394000" + }, + { + "id": "116978", + "name": "Fryeburg", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.01646000", + "longitude": "-70.98062000" + }, + { + "id": "117073", + "name": "Gardiner", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.23007000", + "longitude": "-69.77532000" + }, + { + "id": "117089", + "name": "Garland", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.03840000", + "longitude": "-69.16032000" + }, + { + "id": "117403", + "name": "Gorham", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.67952000", + "longitude": "-70.44422000" + }, + { + "id": "117418", + "name": "Gouldsboro", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.47841000", + "longitude": "-68.03834000" + }, + { + "id": "117623", + "name": "Greenbush", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.08034000", + "longitude": "-68.65086000" + }, + { + "id": "117629", + "name": "Greene", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.18979000", + "longitude": "-70.14033000" + }, + { + "id": "117691", + "name": "Greenville", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.45949000", + "longitude": "-69.59061000" + }, + { + "id": "117872", + "name": "Hallowell", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.28590000", + "longitude": "-69.79088000" + }, + { + "id": "117917", + "name": "Hampden", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.74452000", + "longitude": "-68.83698000" + }, + { + "id": "117948", + "name": "Hancock", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.52924000", + "longitude": "-68.25363000" + }, + { + "id": "117957", + "name": "Hancock County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.56289000", + "longitude": "-68.36821000" + }, + { + "id": "118037", + "name": "Harpswell Center", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.80175000", + "longitude": "-69.98421000" + }, + { + "id": "118056", + "name": "Harrison", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.11035000", + "longitude": "-70.67923000" + }, + { + "id": "118089", + "name": "Hartford", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.37284000", + "longitude": "-70.34673000" + }, + { + "id": "118237", + "name": "Hebron", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.19813000", + "longitude": "-70.40645000" + }, + { + "id": "118330", + "name": "Hermon", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.81007000", + "longitude": "-68.91337000" + }, + { + "id": "118491", + "name": "Hiram", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.87868000", + "longitude": "-70.80340000" + }, + { + "id": "118506", + "name": "Hodgdon", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "46.05394000", + "longitude": "-67.86668000" + }, + { + "id": "118524", + "name": "Holden", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.75285000", + "longitude": "-68.67892000" + }, + { + "id": "118550", + "name": "Hollis Center", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.60508000", + "longitude": "-70.59311000" + }, + { + "id": "118644", + "name": "Hope", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.26508000", + "longitude": "-69.15893000" + }, + { + "id": "118693", + "name": "Houlton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "46.12616000", + "longitude": "-67.84030000" + }, + { + "id": "118725", + "name": "Howland", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.23867000", + "longitude": "-68.66364000" + }, + { + "id": "118742", + "name": "Hudson", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.00118000", + "longitude": "-68.88059000" + }, + { + "id": "119154", + "name": "Jay", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.50395000", + "longitude": "-70.21617000" + }, + { + "id": "119169", + "name": "Jefferson", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.20674000", + "longitude": "-69.45254000" + }, + { + "id": "119305", + "name": "Jonesport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.53286000", + "longitude": "-67.59833000" + }, + { + "id": "119452", + "name": "Kenduskeag", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.91951000", + "longitude": "-68.93170000" + }, + { + "id": "119465", + "name": "Kennebec County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.40916000", + "longitude": "-69.76726000" + }, + { + "id": "119466", + "name": "Kennebunk", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.38397000", + "longitude": "-70.54478000" + }, + { + "id": "119467", + "name": "Kennebunkport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.36175000", + "longitude": "-70.47672000" + }, + { + "id": "119591", + "name": "Kingfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.95922000", + "longitude": "-70.15395000" + }, + { + "id": "119662", + "name": "Kittery", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.08814000", + "longitude": "-70.73616000" + }, + { + "id": "119663", + "name": "Kittery Point", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.08342000", + "longitude": "-70.70783000" + }, + { + "id": "119690", + "name": "Knox County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.07575000", + "longitude": "-69.12598000" + }, + { + "id": "119865", + "name": "Lake Arrowhead", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.66369000", + "longitude": "-70.73478000" + }, + { + "id": "120290", + "name": "Lebanon", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.39453000", + "longitude": "-70.85089000" + }, + { + "id": "120321", + "name": "Leeds", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.30340000", + "longitude": "-70.11950000" + }, + { + "id": "120401", + "name": "Levant", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.86924000", + "longitude": "-68.93476000" + }, + { + "id": "120423", + "name": "Lewiston", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.10035000", + "longitude": "-70.21478000" + }, + { + "id": "120490", + "name": "Limerick", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.68841000", + "longitude": "-70.79367000" + }, + { + "id": "120492", + "name": "Limestone", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "46.90866000", + "longitude": "-67.82585000" + }, + { + "id": "120497", + "name": "Limington", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.73174000", + "longitude": "-70.71089000" + }, + { + "id": "120505", + "name": "Lincoln", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.36228000", + "longitude": "-68.50502000" + }, + { + "id": "120526", + "name": "Lincoln County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.99779000", + "longitude": "-69.52576000" + }, + { + "id": "120554", + "name": "Lincolnville", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.28119000", + "longitude": "-69.00865000" + }, + { + "id": "120599", + "name": "Lisbon", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.03146000", + "longitude": "-70.10450000" + }, + { + "id": "120601", + "name": "Lisbon Falls", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.99619000", + "longitude": "-70.06061000" + }, + { + "id": "120643", + "name": "Livermore", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.38396000", + "longitude": "-70.24922000" + }, + { + "id": "120645", + "name": "Livermore Falls", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.47534000", + "longitude": "-70.18811000" + }, + { + "id": "120823", + "name": "Lovell", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.12674000", + "longitude": "-70.89173000" + }, + { + "id": "120956", + "name": "Machias", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.71508000", + "longitude": "-67.46138000" + }, + { + "id": "120958", + "name": "Machiasport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.69869000", + "longitude": "-67.39471000" + }, + { + "id": "120976", + "name": "Madawaska", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "46.88421000", + "longitude": "-67.94725000" + }, + { + "id": "120995", + "name": "Madison", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.79756000", + "longitude": "-69.87978000" + }, + { + "id": "121097", + "name": "Manchester", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.32451000", + "longitude": "-69.86033000" + }, + { + "id": "121579", + "name": "Mechanic Falls", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.11174000", + "longitude": "-70.39172000" + }, + { + "id": "121611", + "name": "Medway", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.60894000", + "longitude": "-68.53086000" + }, + { + "id": "121742", + "name": "Mexico", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.56090000", + "longitude": "-70.54534000" + }, + { + "id": "121843", + "name": "Milbridge", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.53536000", + "longitude": "-67.88083000" + }, + { + "id": "121853", + "name": "Milford", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.94618000", + "longitude": "-68.64392000" + }, + { + "id": "121893", + "name": "Millinocket", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.65727000", + "longitude": "-68.70976000" + }, + { + "id": "121908", + "name": "Milo", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.25366000", + "longitude": "-68.98587000" + }, + { + "id": "121965", + "name": "Minot", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.08563000", + "longitude": "-70.32006000" + }, + { + "id": "122043", + "name": "Monmouth", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.23868000", + "longitude": "-70.03561000" + }, + { + "id": "122401", + "name": "Mount Vernon", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.50118000", + "longitude": "-69.98756000" + }, + { + "id": "122709", + "name": "New Gloucester", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.96285000", + "longitude": "-70.28255000" + }, + { + "id": "122777", + "name": "New Sharon", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.63895000", + "longitude": "-70.01561000" + }, + { + "id": "122829", + "name": "Newfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.64813000", + "longitude": "-70.84701000" + }, + { + "id": "122846", + "name": "Newport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.83534000", + "longitude": "-69.27394000" + }, + { + "id": "122919", + "name": "Nobleboro", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.07952000", + "longitude": "-69.48505000" + }, + { + "id": "122954", + "name": "Norridgewock", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.71312000", + "longitude": "-69.79061000" + }, + { + "id": "122974", + "name": "North Bath", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.93480000", + "longitude": "-69.81588000" + }, + { + "id": "122988", + "name": "North Berwick", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.30370000", + "longitude": "-70.73339000" + }, + { + "id": "123131", + "name": "North Windham", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.83424000", + "longitude": "-70.43839000" + }, + { + "id": "123161", + "name": "Northport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.33786000", + "longitude": "-68.96142000" + }, + { + "id": "123193", + "name": "Norway", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.21396000", + "longitude": "-70.54478000" + }, + { + "id": "123289", + "name": "Oakland", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.54034000", + "longitude": "-69.72199000" + }, + { + "id": "123380", + "name": "Ogunquit", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.24898000", + "longitude": "-70.59922000" + }, + { + "id": "123425", + "name": "Old Orchard Beach", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.51731000", + "longitude": "-70.37755000" + }, + { + "id": "123430", + "name": "Old Town", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.93423000", + "longitude": "-68.64531000" + }, + { + "id": "123558", + "name": "Orland", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.57035000", + "longitude": "-68.73586000" + }, + { + "id": "123574", + "name": "Orono", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.88312000", + "longitude": "-68.67198000" + }, + { + "id": "123581", + "name": "Orrington", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.73118000", + "longitude": "-68.82643000" + }, + { + "id": "123671", + "name": "Owls Head", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.08230000", + "longitude": "-69.05726000" + }, + { + "id": "123684", + "name": "Oxford", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.13174000", + "longitude": "-70.49311000" + }, + { + "id": "123688", + "name": "Oxford County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.49977000", + "longitude": "-70.75657000" + }, + { + "id": "123734", + "name": "Palermo", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.40785000", + "longitude": "-69.47393000" + }, + { + "id": "123774", + "name": "Palmyra", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.84645000", + "longitude": "-69.35866000" + }, + { + "id": "123835", + "name": "Paris", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.25979000", + "longitude": "-70.50062000" + }, + { + "id": "123894", + "name": "Parsonsfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.72702000", + "longitude": "-70.92868000" + }, + { + "id": "123914", + "name": "Patten", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.99644000", + "longitude": "-68.44614000" + }, + { + "id": "124041", + "name": "Penobscot", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.46452000", + "longitude": "-68.71114000" + }, + { + "id": "124042", + "name": "Penobscot County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.40051000", + "longitude": "-68.64943000" + }, + { + "id": "124097", + "name": "Peru", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.50673000", + "longitude": "-70.40534000" + }, + { + "id": "124133", + "name": "Phillips", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.82311000", + "longitude": "-70.33951000" + }, + { + "id": "124145", + "name": "Phippsburg", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.82064000", + "longitude": "-69.81477000" + }, + { + "id": "124281", + "name": "Piscataquis County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.83736000", + "longitude": "-69.28452000" + }, + { + "id": "124299", + "name": "Pittsfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.78256000", + "longitude": "-69.38338000" + }, + { + "id": "124303", + "name": "Pittston", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.22174000", + "longitude": "-69.75560000" + }, + { + "id": "124404", + "name": "Plymouth", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.76729000", + "longitude": "-69.21033000" + }, + { + "id": "124437", + "name": "Poland", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.06063000", + "longitude": "-70.39367000" + }, + { + "id": "124552", + "name": "Porter", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.79591000", + "longitude": "-70.93256000" + }, + { + "id": "124562", + "name": "Portland", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.65737000", + "longitude": "-70.25890000" + }, + { + "id": "124649", + "name": "Presque Isle", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "46.68115000", + "longitude": "-68.01586000" + }, + { + "id": "124866", + "name": "Randolph", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.23035000", + "longitude": "-69.76671000" + }, + { + "id": "124918", + "name": "Raymond", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.90146000", + "longitude": "-70.47033000" + }, + { + "id": "124928", + "name": "Readfield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.38785000", + "longitude": "-69.96672000" + }, + { + "id": "125091", + "name": "Richmond", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.08730000", + "longitude": "-69.79893000" + }, + { + "id": "125308", + "name": "Rockland", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.10369000", + "longitude": "-69.10893000" + }, + { + "id": "125318", + "name": "Rockport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.18452000", + "longitude": "-69.07615000" + }, + { + "id": "125377", + "name": "Rome", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.58506000", + "longitude": "-69.86922000" + }, + { + "id": "125507", + "name": "Rumford", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.55367000", + "longitude": "-70.55090000" + }, + { + "id": "125566", + "name": "Sabattus", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.11980000", + "longitude": "-70.10755000" + }, + { + "id": "125576", + "name": "Saco", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.50092000", + "longitude": "-70.44283000" + }, + { + "id": "125585", + "name": "Sagadahoc County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.91173000", + "longitude": "-69.83931000" + }, + { + "id": "125595", + "name": "Saint Albans", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.91006000", + "longitude": "-69.41005000" + }, + { + "id": "125643", + "name": "Saint George", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.01647000", + "longitude": "-69.19893000" + }, + { + "id": "125888", + "name": "Sanford", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.43925000", + "longitude": "-70.77422000" + }, + { + "id": "125893", + "name": "Sangerville", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.16478000", + "longitude": "-69.35644000" + }, + { + "id": "125997", + "name": "Scarborough", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.57814000", + "longitude": "-70.32172000" + }, + { + "id": "126096", + "name": "Searsmont", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.36174000", + "longitude": "-69.19504000" + }, + { + "id": "126118", + "name": "Sedgwick", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.30369000", + "longitude": "-68.61614000" + }, + { + "id": "126224", + "name": "Shapleigh", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.54064000", + "longitude": "-70.84812000" + }, + { + "id": "126396", + "name": "Sidney", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.41312000", + "longitude": "-69.72893000" + }, + { + "id": "126484", + "name": "Skowhegan", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.76506000", + "longitude": "-69.71922000" + }, + { + "id": "126587", + "name": "Somerset County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "45.51385000", + "longitude": "-69.95882000" + }, + { + "id": "126626", + "name": "South Berwick", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.23453000", + "longitude": "-70.80950000" + }, + { + "id": "126652", + "name": "South Eliot", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.10814000", + "longitude": "-70.77755000" + }, + { + "id": "126702", + "name": "South Paris", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.22368000", + "longitude": "-70.51339000" + }, + { + "id": "126713", + "name": "South Portland", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.64147000", + "longitude": "-70.24088000" + }, + { + "id": "126714", + "name": "South Portland Gardens", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.63897000", + "longitude": "-70.31533000" + }, + { + "id": "126726", + "name": "South Sanford", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.41119000", + "longitude": "-70.74256000" + }, + { + "id": "126735", + "name": "South Thomaston", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.05147000", + "longitude": "-69.12782000" + }, + { + "id": "126752", + "name": "South Windham", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.73619000", + "longitude": "-70.42366000" + }, + { + "id": "126912", + "name": "Springvale", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.46675000", + "longitude": "-70.79367000" + }, + { + "id": "127015", + "name": "Steep Falls", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.79397000", + "longitude": "-70.65256000" + }, + { + "id": "127036", + "name": "Stetson", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.89173000", + "longitude": "-69.14282000" + }, + { + "id": "127037", + "name": "Steuben", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.51098000", + "longitude": "-67.96662000" + }, + { + "id": "127075", + "name": "Stockton Springs", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.48952000", + "longitude": "-68.85698000" + }, + { + "id": "127095", + "name": "Stonington", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.15619000", + "longitude": "-68.66669000" + }, + { + "id": "127138", + "name": "Strong", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.80756000", + "longitude": "-70.22090000" + }, + { + "id": "127184", + "name": "Sullivan", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.52036000", + "longitude": "-68.19668000" + }, + { + "id": "127293", + "name": "Surry", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.49591000", + "longitude": "-68.50169000" + }, + { + "id": "127328", + "name": "Swanville", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.52119000", + "longitude": "-68.99781000" + }, + { + "id": "127585", + "name": "Thomaston", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.07897000", + "longitude": "-69.18171000" + }, + { + "id": "127736", + "name": "Topsham", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.92758000", + "longitude": "-69.97588000" + }, + { + "id": "127794", + "name": "Tremont", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.25369000", + "longitude": "-68.35141000" + }, + { + "id": "127807", + "name": "Trenton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.43897000", + "longitude": "-68.37002000" + }, + { + "id": "127849", + "name": "Troy", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.66479000", + "longitude": "-69.24088000" + }, + { + "id": "127901", + "name": "Turner", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.25646000", + "longitude": "-70.25617000" + }, + { + "id": "127975", + "name": "Union", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.21147000", + "longitude": "-69.27421000" + }, + { + "id": "128128", + "name": "Van Buren", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "47.15727000", + "longitude": "-67.93530000" + }, + { + "id": "128158", + "name": "Vassalboro", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.45923000", + "longitude": "-69.67755000" + }, + { + "id": "128160", + "name": "Veazie", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.83868000", + "longitude": "-68.70531000" + }, + { + "id": "128262", + "name": "Vinalhaven", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.04814000", + "longitude": "-68.83170000" + }, + { + "id": "128372", + "name": "Waldo County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.48525000", + "longitude": "-69.12188000" + }, + { + "id": "128373", + "name": "Waldoboro", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.09536000", + "longitude": "-69.37560000" + }, + { + "id": "128480", + "name": "Warren", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.12036000", + "longitude": "-69.24005000" + }, + { + "id": "128547", + "name": "Washington", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.27369000", + "longitude": "-69.36727000" + }, + { + "id": "128569", + "name": "Washington County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.96946000", + "longitude": "-67.60906000" + }, + { + "id": "128601", + "name": "Waterboro", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.53564000", + "longitude": "-70.71506000" + }, + { + "id": "128626", + "name": "Waterville", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.55201000", + "longitude": "-69.63171000" + }, + { + "id": "128684", + "name": "Wayne", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.34868000", + "longitude": "-70.06616000" + }, + { + "id": "128784", + "name": "Wells Beach Station", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.32397000", + "longitude": "-70.59144000" + }, + { + "id": "128906", + "name": "West Kennebunk", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.40870000", + "longitude": "-70.58144000" + }, + { + "id": "128948", + "name": "West Paris", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.32423000", + "longitude": "-70.57395000" + }, + { + "id": "128977", + "name": "West Scarborough", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.57036000", + "longitude": "-70.38783000" + }, + { + "id": "129013", + "name": "Westbrook", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.67703000", + "longitude": "-70.37116000" + }, + { + "id": "129164", + "name": "Whitefield", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.17007000", + "longitude": "-69.62532000" + }, + { + "id": "129344", + "name": "Wilton", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.59284000", + "longitude": "-70.22812000" + }, + { + "id": "129383", + "name": "Windsor", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.31063000", + "longitude": "-69.58060000" + }, + { + "id": "129428", + "name": "Winslow", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.54701000", + "longitude": "-69.62116000" + }, + { + "id": "129443", + "name": "Winterport", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.63785000", + "longitude": "-68.84504000" + }, + { + "id": "129449", + "name": "Winthrop", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.30507000", + "longitude": "-69.97700000" + }, + { + "id": "129456", + "name": "Wiscasset", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.00286000", + "longitude": "-69.66560000" + }, + { + "id": "129567", + "name": "Woodstock", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "44.37494000", + "longitude": "-70.60849000" + }, + { + "id": "129581", + "name": "Woolwich", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.91869000", + "longitude": "-69.80116000" + }, + { + "id": "129666", + "name": "Yarmouth", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.80064000", + "longitude": "-70.18672000" + }, + { + "id": "129694", + "name": "York Beach", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.17148000", + "longitude": "-70.60894000" + }, + { + "id": "129697", + "name": "York County", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.42923000", + "longitude": "-70.67015000" + }, + { + "id": "129700", + "name": "York Harbor", + "state_id": 1453, + "state_code": "ME", + "country_id": 233, + "country_code": "US", + "latitude": "43.13676000", + "longitude": "-70.64561000" + }, + { + "id": "110973", + "name": "Aberdeen", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.50956000", + "longitude": "-76.16412000" + }, + { + "id": "110980", + "name": "Aberdeen Proving Ground", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.46686000", + "longitude": "-76.13066000" + }, + { + "id": "110993", + "name": "Accokeek", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.66762000", + "longitude": "-77.02831000" + }, + { + "id": "111029", + "name": "Adamstown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.31094000", + "longitude": "-77.47471000" + }, + { + "id": "111044", + "name": "Adelphi", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.00317000", + "longitude": "-76.97192000" + }, + { + "id": "111166", + "name": "Algonquin", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.58290000", + "longitude": "-76.10577000" + }, + { + "id": "111181", + "name": "Allegany County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.62148000", + "longitude": "-78.69890000" + }, + { + "id": "111332", + "name": "Andrews AFB", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.80531000", + "longitude": "-76.87460000" + }, + { + "id": "111352", + "name": "Annapolis", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.97845000", + "longitude": "-76.49218000" + }, + { + "id": "111353", + "name": "Anne Arundel County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.99416000", + "longitude": "-76.56760000" + }, + { + "id": "111417", + "name": "Arbutus", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.25455000", + "longitude": "-76.69997000" + }, + { + "id": "111439", + "name": "Arden on the Severn", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.06594000", + "longitude": "-76.57885000" + }, + { + "id": "111461", + "name": "Arlington", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.34857000", + "longitude": "-76.68324000" + }, + { + "id": "111485", + "name": "Arnold", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.03206000", + "longitude": "-76.50274000" + }, + { + "id": "111547", + "name": "Ashton-Sandy Spring", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.14976000", + "longitude": "-77.00504000" + }, + { + "id": "111553", + "name": "Aspen Hill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.07955000", + "longitude": "-77.07303000" + }, + { + "id": "111722", + "name": "Baden", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.65928000", + "longitude": "-76.77775000" + }, + { + "id": "111772", + "name": "Ballenger Creek", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.37260000", + "longitude": "-77.43526000" + }, + { + "id": "111783", + "name": "Baltimore", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.29038000", + "longitude": "-76.61219000" + }, + { + "id": "111784", + "name": "Baltimore County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.44307000", + "longitude": "-76.61632000" + }, + { + "id": "111785", + "name": "Baltimore Highlands", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.23316000", + "longitude": "-76.63663000" + }, + { + "id": "111869", + "name": "Bartonsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.39260000", + "longitude": "-77.35804000" + }, + { + "id": "112046", + "name": "Bel Air", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.53594000", + "longitude": "-76.34829000" + }, + { + "id": "112047", + "name": "Bel Air North", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.55429000", + "longitude": "-76.37309000" + }, + { + "id": "112048", + "name": "Bel Air South", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.50506000", + "longitude": "-76.31977000" + }, + { + "id": "112151", + "name": "Beltsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.03483000", + "longitude": "-76.90747000" + }, + { + "id": "112179", + "name": "Bennsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.60929000", + "longitude": "-77.01220000" + }, + { + "id": "112234", + "name": "Berlin", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.32262000", + "longitude": "-75.21769000" + }, + { + "id": "112266", + "name": "Berwyn Heights", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.99400000", + "longitude": "-76.91053000" + }, + { + "id": "112288", + "name": "Bethesda", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.98067000", + "longitude": "-77.10026000" + }, + { + "id": "112400", + "name": "Bladensburg", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.93928000", + "longitude": "-76.93386000" + }, + { + "id": "112565", + "name": "Boonsboro", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.50621000", + "longitude": "-77.65249000" + }, + { + "id": "112623", + "name": "Bowie", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.94278000", + "longitude": "-76.73028000" + }, + { + "id": "112626", + "name": "Bowleys Quarters", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.33539000", + "longitude": "-76.39024000" + }, + { + "id": "112629", + "name": "Bowling Green", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.62370000", + "longitude": "-78.80446000" + }, + { + "id": "112660", + "name": "Braddock Heights", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.41871000", + "longitude": "-77.50360000" + }, + { + "id": "112692", + "name": "Brandywine", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.69678000", + "longitude": "-76.84775000" + }, + { + "id": "112728", + "name": "Brentwood", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.94317000", + "longitude": "-76.95664000" + }, + { + "id": "112832", + "name": "Brock Hall", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.85011000", + "longitude": "-76.76108000" + }, + { + "id": "112876", + "name": "Brooklyn Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.22844000", + "longitude": "-76.61636000" + }, + { + "id": "112878", + "name": "Brookmont", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.94206000", + "longitude": "-77.12026000" + }, + { + "id": "112948", + "name": "Brunswick", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.31427000", + "longitude": "-77.62777000" + }, + { + "id": "112962", + "name": "Bryans Road", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.62706000", + "longitude": "-77.07303000" + }, + { + "id": "112978", + "name": "Buckeystown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.33482000", + "longitude": "-77.43165000" + }, + { + "id": "113098", + "name": "Burtonsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.11122000", + "longitude": "-76.93248000" + }, + { + "id": "113105", + "name": "Butcher's Hill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.28955000", + "longitude": "-76.58830000" + }, + { + "id": "113152", + "name": "Cabin John", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.97539000", + "longitude": "-77.15803000" + }, + { + "id": "113216", + "name": "California", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.30040000", + "longitude": "-76.50745000" + }, + { + "id": "113235", + "name": "Calvert County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.53471000", + "longitude": "-76.53056000" + }, + { + "id": "113236", + "name": "Calverton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.05761000", + "longitude": "-76.93581000" + }, + { + "id": "113250", + "name": "Cambridge", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.56317000", + "longitude": "-76.07883000" + }, + { + "id": "113293", + "name": "Camp Springs", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.80400000", + "longitude": "-76.90664000" + }, + { + "id": "113373", + "name": "Cape Saint Claire", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.04317000", + "longitude": "-76.44496000" + }, + { + "id": "113375", + "name": "Capitol Heights", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.88511000", + "longitude": "-76.91581000" + }, + { + "id": "113428", + "name": "Carney", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.39427000", + "longitude": "-76.52358000" + }, + { + "id": "113437", + "name": "Caroline County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.87173000", + "longitude": "-75.83160000" + }, + { + "id": "113453", + "name": "Carroll County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.56286000", + "longitude": "-77.02252000" + }, + { + "id": "113575", + "name": "Catonsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.27205000", + "longitude": "-76.73192000" + }, + { + "id": "113590", + "name": "Cavetown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.64426000", + "longitude": "-77.58582000" + }, + { + "id": "113598", + "name": "Cecil County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.56242000", + "longitude": "-75.94811000" + }, + { + "id": "113693", + "name": "Centreville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.04178000", + "longitude": "-76.06633000" + }, + { + "id": "113757", + "name": "Charles County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.47368000", + "longitude": "-77.01348000" + }, + { + "id": "113760", + "name": "Charles Village", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.32316000", + "longitude": "-76.61330000" + }, + { + "id": "113771", + "name": "Charlestown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.57373000", + "longitude": "-75.97495000" + }, + { + "id": "113784", + "name": "Charlotte Hall", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.48096000", + "longitude": "-76.77802000" + }, + { + "id": "113875", + "name": "Chesapeake Beach", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.68623000", + "longitude": "-76.53468000" + }, + { + "id": "113876", + "name": "Chesapeake Ranch Estates", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.34624000", + "longitude": "-76.41773000" + }, + { + "id": "113883", + "name": "Chester", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.97539000", + "longitude": "-76.28940000" + }, + { + "id": "113910", + "name": "Chestertown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.20900000", + "longitude": "-76.06661000" + }, + { + "id": "113919", + "name": "Cheverly", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.92817000", + "longitude": "-76.91581000" + }, + { + "id": "113921", + "name": "Chevy Chase", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.00287000", + "longitude": "-77.07115000" + }, + { + "id": "113923", + "name": "Chevy Chase Village", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96928000", + "longitude": "-77.07887000" + }, + { + "id": "113955", + "name": "Chillum", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96372000", + "longitude": "-76.99081000" + }, + { + "id": "114048", + "name": "City of Baltimore", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.29038000", + "longitude": "-76.61219000" + }, + { + "id": "114143", + "name": "Clarksburg", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.23872000", + "longitude": "-77.27943000" + }, + { + "id": "114272", + "name": "Clinton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.76511000", + "longitude": "-76.89831000" + }, + { + "id": "114308", + "name": "Clover Hill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.45621000", + "longitude": "-77.42887000" + }, + { + "id": "114313", + "name": "Cloverly", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.10816000", + "longitude": "-76.99775000" + }, + { + "id": "114345", + "name": "Cobb Island", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.25846000", + "longitude": "-76.84386000" + }, + { + "id": "114355", + "name": "Cockeysville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.48122000", + "longitude": "-76.64386000" + }, + { + "id": "114403", + "name": "Colesville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.07566000", + "longitude": "-77.00192000" + }, + { + "id": "114414", + "name": "College Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.98067000", + "longitude": "-76.93692000" + }, + { + "id": "114441", + "name": "Colmar Manor", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.93317000", + "longitude": "-76.94581000" + }, + { + "id": "114467", + "name": "Columbia", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.24038000", + "longitude": "-76.83942000" + }, + { + "id": "114625", + "name": "Coral Hills", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.87039000", + "longitude": "-76.92108000" + }, + { + "id": "114690", + "name": "Cottage City", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.93817000", + "longitude": "-76.94831000" + }, + { + "id": "114793", + "name": "Cresaptown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.59287000", + "longitude": "-78.83335000" + }, + { + "id": "114822", + "name": "Crisfield", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "37.98346000", + "longitude": "-75.85382000" + }, + { + "id": "114833", + "name": "Crofton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.00178000", + "longitude": "-76.68747000" + }, + { + "id": "114841", + "name": "Croom", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.75262000", + "longitude": "-76.76386000" + }, + { + "id": "114869", + "name": "Crownsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.02844000", + "longitude": "-76.60135000" + }, + { + "id": "114907", + "name": "Cumberland", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.65287000", + "longitude": "-78.76252000" + }, + { + "id": "115009", + "name": "Damascus", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.28844000", + "longitude": "-77.20387000" + }, + { + "id": "115053", + "name": "Darnestown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.10344000", + "longitude": "-77.29082000" + }, + { + "id": "115065", + "name": "Davidsonville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.92289000", + "longitude": "-76.62830000" + }, + { + "id": "115144", + "name": "Deale", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.77651000", + "longitude": "-76.55524000" + }, + { + "id": "115245", + "name": "Denton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.88456000", + "longitude": "-75.82716000" + }, + { + "id": "115268", + "name": "Derwood", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.11733000", + "longitude": "-77.16109000" + }, + { + "id": "115355", + "name": "District Heights", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.85761000", + "longitude": "-76.88942000" + }, + { + "id": "115410", + "name": "Dorchester County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.42261000", + "longitude": "-76.08332000" + }, + { + "id": "115481", + "name": "Drum Point", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.32679000", + "longitude": "-76.42606000" + }, + { + "id": "115526", + "name": "Dundalk", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.25066000", + "longitude": "-76.52052000" + }, + { + "id": "115537", + "name": "Dunkirk", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.72178000", + "longitude": "-76.66052000" + }, + { + "id": "115540", + "name": "Dunkirk Town Center", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.72039000", + "longitude": "-76.65857000" + }, + { + "id": "115748", + "name": "East Riverdale", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96206000", + "longitude": "-76.92192000" + }, + { + "id": "115785", + "name": "Easton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.77428000", + "longitude": "-76.07633000" + }, + { + "id": "115844", + "name": "Edgemere", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.24205000", + "longitude": "-76.44802000" + }, + { + "id": "115852", + "name": "Edgewater", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.95706000", + "longitude": "-76.54996000" + }, + { + "id": "115859", + "name": "Edgewood", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.41872000", + "longitude": "-76.29440000" + }, + { + "id": "115880", + "name": "Edmonston", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.94678000", + "longitude": "-76.93109000" + }, + { + "id": "115949", + "name": "Eldersburg", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.40371000", + "longitude": "-76.95026000" + }, + { + "id": "116011", + "name": "Elkridge", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.21261000", + "longitude": "-76.71358000" + }, + { + "id": "116013", + "name": "Elkton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.60678000", + "longitude": "-75.83327000" + }, + { + "id": "116024", + "name": "Ellicott City", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.26733000", + "longitude": "-76.79831000" + }, + { + "id": "116106", + "name": "Emmitsburg", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.70454000", + "longitude": "-77.32693000" + }, + { + "id": "116191", + "name": "Essex", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.30927000", + "longitude": "-76.47496000" + }, + { + "id": "116328", + "name": "Fairland", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.07622000", + "longitude": "-76.95775000" + }, + { + "id": "116342", + "name": "Fairmount Heights", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.90095000", + "longitude": "-76.91553000" + }, + { + "id": "116364", + "name": "Fairwood", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.95665000", + "longitude": "-76.77772000" + }, + { + "id": "116385", + "name": "Fallston", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.51455000", + "longitude": "-76.41107000" + }, + { + "id": "116466", + "name": "Federalsburg", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.69428000", + "longitude": "-75.77216000" + }, + { + "id": "116486", + "name": "Ferndale", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.18316000", + "longitude": "-76.64024000" + }, + { + "id": "116652", + "name": "Forest Glen", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.01455000", + "longitude": "-77.05470000" + }, + { + "id": "116654", + "name": "Forest Heights", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.80956000", + "longitude": "-76.99803000" + }, + { + "id": "116672", + "name": "Forestville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.84511000", + "longitude": "-76.87497000" + }, + { + "id": "116712", + "name": "Fort George G Mead Junction", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.12594000", + "longitude": "-76.78914000" + }, + { + "id": "116729", + "name": "Fort Meade", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.10815000", + "longitude": "-76.74323000" + }, + { + "id": "116761", + "name": "Fort Washington", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.70734000", + "longitude": "-77.02303000" + }, + { + "id": "116786", + "name": "Fountainhead-Orchard Hills", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.68636000", + "longitude": "-77.71901000" + }, + { + "id": "116787", + "name": "Four Corners", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.02039000", + "longitude": "-77.01275000" + }, + { + "id": "116885", + "name": "Frederick", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.41427000", + "longitude": "-77.41054000" + }, + { + "id": "116888", + "name": "Frederick County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.47222000", + "longitude": "-77.39799000" + }, + { + "id": "116947", + "name": "Friendly", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.75178000", + "longitude": "-76.97859000" + }, + { + "id": "116951", + "name": "Friendship Village", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96289000", + "longitude": "-77.08887000" + }, + { + "id": "116964", + "name": "Frostburg", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.65814000", + "longitude": "-78.92836000" + }, + { + "id": "116970", + "name": "Fruitland", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.32206000", + "longitude": "-75.62020000" + }, + { + "id": "116987", + "name": "Fulton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.15094000", + "longitude": "-76.92303000" + }, + { + "id": "117019", + "name": "Gaithersburg", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.14344000", + "longitude": "-77.20137000" + }, + { + "id": "117045", + "name": "Gambrills", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.06705000", + "longitude": "-76.66524000" + }, + { + "id": "117100", + "name": "Garrett County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.52860000", + "longitude": "-79.27388000" + }, + { + "id": "117101", + "name": "Garrett Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.03816000", + "longitude": "-77.09303000" + }, + { + "id": "117102", + "name": "Garrison", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.40594000", + "longitude": "-76.76053000" + }, + { + "id": "117172", + "name": "Germantown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.17316000", + "longitude": "-77.27165000" + }, + { + "id": "117253", + "name": "Glassmanor", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.81900000", + "longitude": "-76.99859000" + }, + { + "id": "117262", + "name": "Glen Burnie", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.16261000", + "longitude": "-76.62469000" + }, + { + "id": "117275", + "name": "Glenarden", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.92928000", + "longitude": "-76.86164000" + }, + { + "id": "117293", + "name": "Glenmont", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.05789000", + "longitude": "-77.04970000" + }, + { + "id": "117297", + "name": "Glenn Dale", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.98761000", + "longitude": "-76.82053000" + }, + { + "id": "117333", + "name": "Goddard", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.98955000", + "longitude": "-76.85331000" + }, + { + "id": "117347", + "name": "Golden Beach", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.48985000", + "longitude": "-76.68218000" + }, + { + "id": "117541", + "name": "Grasonville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.95817000", + "longitude": "-76.21023000" + }, + { + "id": "117582", + "name": "Greater Upper Marlboro", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.83142000", + "longitude": "-76.74827000" + }, + { + "id": "117597", + "name": "Green Haven", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.13955000", + "longitude": "-76.54774000" + }, + { + "id": "117609", + "name": "Green Valley", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.30927000", + "longitude": "-77.29721000" + }, + { + "id": "117616", + "name": "Greenbelt", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.00455000", + "longitude": "-76.87553000" + }, + { + "id": "117666", + "name": "Greensboro", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.97372000", + "longitude": "-75.80493000" + }, + { + "id": "117838", + "name": "Hagerstown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.64176000", + "longitude": "-77.71999000" + }, + { + "id": "117857", + "name": "Halfway", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.62065000", + "longitude": "-77.75888000" + }, + { + "id": "117923", + "name": "Hampstead", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.60483000", + "longitude": "-76.84998000" + }, + { + "id": "117928", + "name": "Hampton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.42288000", + "longitude": "-76.58469000" + }, + { + "id": "117947", + "name": "Hancock", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.69898000", + "longitude": "-78.17973000" + }, + { + "id": "117967", + "name": "Hanover", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.19289000", + "longitude": "-76.72414000" + }, + { + "id": "118012", + "name": "Harford County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.53644000", + "longitude": "-76.29887000" + }, + { + "id": "118155", + "name": "Havre de Grace", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.54928000", + "longitude": "-76.09162000" + }, + { + "id": "118233", + "name": "Hebron", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.42012000", + "longitude": "-75.68771000" + }, + { + "id": "118312", + "name": "Herald Harbor", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.05372000", + "longitude": "-76.56913000" + }, + { + "id": "118390", + "name": "Highfield-Cascade", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.71616000", + "longitude": "-77.48282000" + }, + { + "id": "118395", + "name": "Highland", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.17900000", + "longitude": "-76.95748000" + }, + { + "id": "118438", + "name": "Hillandale", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.02650000", + "longitude": "-76.97414000" + }, + { + "id": "118441", + "name": "Hillcrest Heights", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.83289000", + "longitude": "-76.95942000" + }, + { + "id": "118467", + "name": "Hillsmere Shores", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.94011000", + "longitude": "-76.49496000" + }, + { + "id": "118713", + "name": "Howard County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.25072000", + "longitude": "-76.93119000" + }, + { + "id": "118762", + "name": "Hughesville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.53262000", + "longitude": "-76.78386000" + }, + { + "id": "118787", + "name": "Hunt Valley", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.49983000", + "longitude": "-76.64108000" + }, + { + "id": "118810", + "name": "Huntingtown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.61595000", + "longitude": "-76.61302000" + }, + { + "id": "118811", + "name": "Huntingtown Town Center", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.62095000", + "longitude": "-76.61607000" + }, + { + "id": "118823", + "name": "Hurlock", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.62428000", + "longitude": "-75.85438000" + }, + { + "id": "118844", + "name": "Hyattsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.95594000", + "longitude": "-76.94553000" + }, + { + "id": "118877", + "name": "Ilchester", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.25094000", + "longitude": "-76.76469000" + }, + { + "id": "118903", + "name": "Indian Head", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.60012000", + "longitude": "-77.16220000" + }, + { + "id": "119008", + "name": "Irvington", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.28288000", + "longitude": "-76.68608000" + }, + { + "id": "119135", + "name": "Jarrettsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.60455000", + "longitude": "-76.47774000" + }, + { + "id": "119164", + "name": "Jefferson", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.36205000", + "longitude": "-77.53165000" + }, + { + "id": "119237", + "name": "Jessup", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.14927000", + "longitude": "-76.77525000" + }, + { + "id": "119314", + "name": "Joppatowne", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.45789000", + "longitude": "-76.35524000" + }, + { + "id": "119417", + "name": "Keedysville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.48621000", + "longitude": "-77.69971000" + }, + { + "id": "119436", + "name": "Kemp Mill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.03900000", + "longitude": "-77.01914000" + }, + { + "id": "119480", + "name": "Kensington", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.02567000", + "longitude": "-77.07637000" + }, + { + "id": "119491", + "name": "Kent County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.23560000", + "longitude": "-76.09582000" + }, + { + "id": "119526", + "name": "Kettering", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.88456000", + "longitude": "-76.81469000" + }, + { + "id": "119633", + "name": "Kingstown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.20483000", + "longitude": "-76.05133000" + }, + { + "id": "119635", + "name": "Kingsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.44872000", + "longitude": "-76.41774000" + }, + { + "id": "119773", + "name": "La Plata", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.52929000", + "longitude": "-76.97525000" + }, + { + "id": "119791", + "name": "La Vale", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.65564000", + "longitude": "-78.81058000" + }, + { + "id": "119864", + "name": "Lake Arbor", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.90789000", + "longitude": "-76.82969000" + }, + { + "id": "119976", + "name": "Lake Shore", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.10705000", + "longitude": "-76.48496000" + }, + { + "id": "120102", + "name": "Landover", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.93400000", + "longitude": "-76.89664000" + }, + { + "id": "120103", + "name": "Landover Hills", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.94317000", + "longitude": "-76.89220000" + }, + { + "id": "120115", + "name": "Langley Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.98872000", + "longitude": "-76.98136000" + }, + { + "id": "120117", + "name": "Lanham", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96875000", + "longitude": "-76.86340000" + }, + { + "id": "120118", + "name": "Lanham-Seabrook", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96835000", + "longitude": "-76.85108000" + }, + { + "id": "120122", + "name": "Lansdowne", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.24511000", + "longitude": "-76.66052000" + }, + { + "id": "120144", + "name": "Largo", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.89761000", + "longitude": "-76.83025000" + }, + { + "id": "120189", + "name": "Laurel", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.09928000", + "longitude": "-76.84831000" + }, + { + "id": "120252", + "name": "Layhill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.09233000", + "longitude": "-77.04442000" + }, + { + "id": "120345", + "name": "Leisure World", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.10230000", + "longitude": "-77.06898000" + }, + { + "id": "120390", + "name": "Leonardtown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.29124000", + "longitude": "-76.63579000" + }, + { + "id": "120455", + "name": "Lexington Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.26679000", + "longitude": "-76.45384000" + }, + { + "id": "120578", + "name": "Linganore", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.44038000", + "longitude": "-77.20804000" + }, + { + "id": "120588", + "name": "Linthicum", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.20511000", + "longitude": "-76.65275000" + }, + { + "id": "120671", + "name": "Lochearn", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.34066000", + "longitude": "-76.72219000" + }, + { + "id": "120719", + "name": "Lonaconing", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.56592000", + "longitude": "-78.98030000" + }, + { + "id": "120725", + "name": "Londontowne", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.93345000", + "longitude": "-76.54941000" + }, + { + "id": "120733", + "name": "Long Beach", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.46096000", + "longitude": "-76.46884000" + }, + { + "id": "120891", + "name": "Lusby", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.41068000", + "longitude": "-76.45523000" + }, + { + "id": "120895", + "name": "Lutherville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.42122000", + "longitude": "-76.62608000" + }, + { + "id": "120896", + "name": "Lutherville-Timonium", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.43997000", + "longitude": "-76.61099000" + }, + { + "id": "121090", + "name": "Manchester", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.66121000", + "longitude": "-76.88498000" + }, + { + "id": "121277", + "name": "Marlboro Meadows", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.83622000", + "longitude": "-76.71497000" + }, + { + "id": "121278", + "name": "Marlboro Village", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.83054000", + "longitude": "-76.76965000" + }, + { + "id": "121286", + "name": "Marlow Heights", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.83345000", + "longitude": "-76.95164000" + }, + { + "id": "121287", + "name": "Marlton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.77373000", + "longitude": "-76.78997000" + }, + { + "id": "121355", + "name": "Maryland City", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.09205000", + "longitude": "-76.81775000" + }, + { + "id": "121418", + "name": "Maugansville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.69287000", + "longitude": "-77.74472000" + }, + { + "id": "121443", + "name": "Mayo", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.88761000", + "longitude": "-76.51190000" + }, + { + "id": "121446", + "name": "Mays Chapel", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.43316000", + "longitude": "-76.64941000" + }, + { + "id": "121582", + "name": "Mechanicsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.44290000", + "longitude": "-76.74385000" + }, + { + "id": "121626", + "name": "Mellwood", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.81039000", + "longitude": "-76.82414000" + }, + { + "id": "121762", + "name": "Middle River", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.33427000", + "longitude": "-76.43941000" + }, + { + "id": "121786", + "name": "Middletown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.44371000", + "longitude": "-77.54471000" + }, + { + "id": "121860", + "name": "Milford Mill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.34788000", + "longitude": "-76.76997000" + }, + { + "id": "122004", + "name": "Mitchellville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.92511000", + "longitude": "-76.74275000" + }, + { + "id": "122145", + "name": "Montgomery County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.13638000", + "longitude": "-77.20424000" + }, + { + "id": "122156", + "name": "Montgomery Village", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.17677000", + "longitude": "-77.19526000" + }, + { + "id": "122257", + "name": "Morningside", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.83011000", + "longitude": "-76.89136000" + }, + { + "id": "122330", + "name": "Mount Airy", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.37621000", + "longitude": "-77.15470000" + }, + { + "id": "122387", + "name": "Mount Rainier", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.94150000", + "longitude": "-76.96498000" + }, + { + "id": "122421", + "name": "Mountain Lake Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.39843000", + "longitude": "-79.38171000" + }, + { + "id": "122519", + "name": "Myersville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.50510000", + "longitude": "-77.56638000" + }, + { + "id": "122592", + "name": "National Harbor", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.78264000", + "longitude": "-77.01506000" + }, + { + "id": "122599", + "name": "Naval Academy", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.98568000", + "longitude": "-76.48774000" + }, + { + "id": "122681", + "name": "New Carrollton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96983000", + "longitude": "-76.87997000" + }, + { + "id": "122793", + "name": "New Windsor", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.54205000", + "longitude": "-77.10804000" + }, + { + "id": "122977", + "name": "North Beach", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.70734000", + "longitude": "-76.53107000" + }, + { + "id": "122979", + "name": "North Bel Air", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.53983000", + "longitude": "-76.35496000" + }, + { + "id": "122989", + "name": "North Bethesda", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.04455000", + "longitude": "-77.11887000" + }, + { + "id": "123017", + "name": "North East", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.60011000", + "longitude": "-75.94133000" + }, + { + "id": "123046", + "name": "North Kensington", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.03039000", + "longitude": "-77.07248000" + }, + { + "id": "123054", + "name": "North Laurel", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.13900000", + "longitude": "-76.87053000" + }, + { + "id": "123087", + "name": "North Potomac", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.08289000", + "longitude": "-77.26498000" + }, + { + "id": "123284", + "name": "Oakland", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.40787000", + "longitude": "-79.40671000" + }, + { + "id": "123326", + "name": "Ocean City", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.33650000", + "longitude": "-75.08491000" + }, + { + "id": "123333", + "name": "Ocean Pines", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.39539000", + "longitude": "-75.15574000" + }, + { + "id": "123356", + "name": "Odenton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.08400000", + "longitude": "-76.70025000" + }, + { + "id": "123456", + "name": "Olney", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.15316000", + "longitude": "-77.06692000" + }, + { + "id": "123652", + "name": "Overlea", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.36344000", + "longitude": "-76.52052000" + }, + { + "id": "123668", + "name": "Owings", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.71762000", + "longitude": "-76.60135000" + }, + { + "id": "123669", + "name": "Owings Mills", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.41955000", + "longitude": "-76.78025000" + }, + { + "id": "123691", + "name": "Oxon Hill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.80345000", + "longitude": "-76.98970000" + }, + { + "id": "123692", + "name": "Oxon Hill-Glassmanor", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.79615000", + "longitude": "-76.97499000" + }, + { + "id": "123825", + "name": "Paramount-Long Meadow", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.68042000", + "longitude": "-77.69290000" + }, + { + "id": "123877", + "name": "Parkville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.37733000", + "longitude": "-76.53969000" + }, + { + "id": "123887", + "name": "Parole", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.97956000", + "longitude": "-76.53052000" + }, + { + "id": "123895", + "name": "Pasadena", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.10733000", + "longitude": "-76.57108000" + }, + { + "id": "124055", + "name": "Peppermill Village", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.89472000", + "longitude": "-76.88654000" + }, + { + "id": "124083", + "name": "Perry Hall", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.41261000", + "longitude": "-76.46357000" + }, + { + "id": "124085", + "name": "Perryman", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.46955000", + "longitude": "-76.20440000" + }, + { + "id": "124090", + "name": "Perryville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.56011000", + "longitude": "-76.07134000" + }, + { + "id": "124197", + "name": "Pikesville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.37427000", + "longitude": "-76.72247000" + }, + { + "id": "124305", + "name": "Pittsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.39539000", + "longitude": "-75.41297000" + }, + { + "id": "124373", + "name": "Pleasant Hills", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.47955000", + "longitude": "-76.39413000" + }, + { + "id": "124420", + "name": "Pocomoke City", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.07568000", + "longitude": "-75.56798000" + }, + { + "id": "124434", + "name": "Point of Rocks", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.27594000", + "longitude": "-77.53915000" + }, + { + "id": "124480", + "name": "Poolesville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.14594000", + "longitude": "-77.41693000" + }, + { + "id": "124582", + "name": "Potomac", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.01817000", + "longitude": "-77.20859000" + }, + { + "id": "124583", + "name": "Potomac Heights", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.60873000", + "longitude": "-77.14053000" + }, + { + "id": "124585", + "name": "Potomac Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.61176000", + "longitude": "-78.80585000" + }, + { + "id": "124673", + "name": "Prince Frederick", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.54040000", + "longitude": "-76.58440000" + }, + { + "id": "124676", + "name": "Prince George's County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.82952000", + "longitude": "-76.84729000" + }, + { + "id": "124679", + "name": "Princess Anne", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.20290000", + "longitude": "-75.69243000" + }, + { + "id": "124745", + "name": "Pumphrey", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.21733000", + "longitude": "-76.63719000" + }, + { + "id": "124785", + "name": "Queen Anne", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.89872000", + "longitude": "-76.67830000" + }, + { + "id": "124786", + "name": "Queen Anne's County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.03763000", + "longitude": "-76.08504000" + }, + { + "id": "124789", + "name": "Queenland", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.80524000", + "longitude": "-76.79126000" + }, + { + "id": "124863", + "name": "Randallstown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.36733000", + "longitude": "-76.79525000" + }, + { + "id": "124974", + "name": "Redland", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.14539000", + "longitude": "-77.14415000" + }, + { + "id": "125012", + "name": "Reisterstown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.46976000", + "longitude": "-76.83190000" + }, + { + "id": "125125", + "name": "Ridgely", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.94789000", + "longitude": "-75.88438000" + }, + { + "id": "125170", + "name": "Rising Sun", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.69789000", + "longitude": "-76.06273000" + }, + { + "id": "125175", + "name": "Riva", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.95206000", + "longitude": "-76.57802000" + }, + { + "id": "125198", + "name": "Riverdale Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96344000", + "longitude": "-76.93164000" + }, + { + "id": "125202", + "name": "Riverside", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.47372000", + "longitude": "-76.24134000" + }, + { + "id": "125222", + "name": "Riviera Beach", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.16678000", + "longitude": "-76.50802000" + }, + { + "id": "125255", + "name": "Robinwood", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.63704000", + "longitude": "-77.65694000" + }, + { + "id": "125278", + "name": "Rock Hall", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.13817000", + "longitude": "-76.23495000" + }, + { + "id": "125322", + "name": "Rockville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.08400000", + "longitude": "-77.15276000" + }, + { + "id": "125398", + "name": "Rosaryville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.75678000", + "longitude": "-76.80969000" + }, + { + "id": "125416", + "name": "Rosedale", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.32011000", + "longitude": "-76.51552000" + }, + { + "id": "125453", + "name": "Rossmoor", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.10372000", + "longitude": "-77.07109000" + }, + { + "id": "125458", + "name": "Rossville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.33844000", + "longitude": "-76.47968000" + }, + { + "id": "125611", + "name": "Saint Charles", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.60317000", + "longitude": "-76.93858000" + }, + { + "id": "125652", + "name": "Saint James", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.56260000", + "longitude": "-77.75805000" + }, + { + "id": "125691", + "name": "Saint Mary's County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.21586000", + "longitude": "-76.52906000" + }, + { + "id": "125698", + "name": "Saint Michaels", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.78512000", + "longitude": "-76.22439000" + }, + { + "id": "125754", + "name": "Salisbury", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.36067000", + "longitude": "-75.59937000" + }, + { + "id": "125971", + "name": "Savage", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.13789000", + "longitude": "-76.82386000" + }, + { + "id": "125994", + "name": "Scaggsville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.14511000", + "longitude": "-76.90025000" + }, + { + "id": "126078", + "name": "Seabrook", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96805000", + "longitude": "-76.84658000" + }, + { + "id": "126103", + "name": "Seat Pleasant", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.89622000", + "longitude": "-76.90664000" + }, + { + "id": "126131", + "name": "Selby-on-the-Bay", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.91622000", + "longitude": "-76.52246000" + }, + { + "id": "126178", + "name": "Severn", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.13705000", + "longitude": "-76.69830000" + }, + { + "id": "126179", + "name": "Severna Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.07039000", + "longitude": "-76.54524000" + }, + { + "id": "126207", + "name": "Shady Side", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.84178000", + "longitude": "-76.51218000" + }, + { + "id": "126426", + "name": "Silver Hill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.84178000", + "longitude": "-76.94581000" + }, + { + "id": "126434", + "name": "Silver Spring", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.99067000", + "longitude": "-77.02609000" + }, + { + "id": "126524", + "name": "Smithsburg", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.65482000", + "longitude": "-77.57277000" + }, + { + "id": "126545", + "name": "Snow Hill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.17706000", + "longitude": "-75.39270000" + }, + { + "id": "126570", + "name": "Solomons", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.31846000", + "longitude": "-76.45412000" + }, + { + "id": "126579", + "name": "Somerset", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.96594000", + "longitude": "-77.09609000" + }, + { + "id": "126586", + "name": "Somerset County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.08007000", + "longitude": "-75.85347000" + }, + { + "id": "126621", + "name": "South Bel Air", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.53316000", + "longitude": "-76.33746000" + }, + { + "id": "126658", + "name": "South Gate", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.12900000", + "longitude": "-76.62580000" + }, + { + "id": "126682", + "name": "South Kensington", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.01900000", + "longitude": "-77.07998000" + }, + { + "id": "126686", + "name": "South Laurel", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.06983000", + "longitude": "-76.85025000" + }, + { + "id": "126831", + "name": "Spencerville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.11427000", + "longitude": "-76.97831000" + }, + { + "id": "126872", + "name": "Spring Ridge", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.40149000", + "longitude": "-77.35248000" + }, + { + "id": "126884", + "name": "Springdale", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.93761000", + "longitude": "-76.83886000" + }, + { + "id": "127047", + "name": "Stevensville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.98067000", + "longitude": "-76.31440000" + }, + { + "id": "127178", + "name": "Suitland", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.84872000", + "longitude": "-76.92386000" + }, + { + "id": "127179", + "name": "Suitland-Silver Hill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.84685000", + "longitude": "-76.92591000" + }, + { + "id": "127203", + "name": "Summerfield", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.90454000", + "longitude": "-76.86830000" + }, + { + "id": "127352", + "name": "Sykesville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.37371000", + "longitude": "-76.96776000" + }, + { + "id": "127382", + "name": "Takoma Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.97789000", + "longitude": "-77.00748000" + }, + { + "id": "127384", + "name": "Talbot County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.74910000", + "longitude": "-76.17862000" + }, + { + "id": "127411", + "name": "Taneytown", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.65788000", + "longitude": "-77.17443000" + }, + { + "id": "127502", + "name": "Temple Hills", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.81400000", + "longitude": "-76.94553000" + }, + { + "id": "127629", + "name": "Thurmont", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.62371000", + "longitude": "-77.41082000" + }, + { + "id": "127663", + "name": "Timonium", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.43705000", + "longitude": "-76.61969000" + }, + { + "id": "127768", + "name": "Towson", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.40150000", + "longitude": "-76.60191000" + }, + { + "id": "127781", + "name": "Trappe", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.65845000", + "longitude": "-76.05800000" + }, + { + "id": "127786", + "name": "Travilah", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.06900000", + "longitude": "-77.26304000" + }, + { + "id": "128032", + "name": "University Park", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.97039000", + "longitude": "-76.94192000" + }, + { + "id": "128046", + "name": "Upper Marlboro", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.81595000", + "longitude": "-76.74969000" + }, + { + "id": "128060", + "name": "Urbana", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.32594000", + "longitude": "-77.35137000" + }, + { + "id": "128375", + "name": "Waldorf", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.62456000", + "longitude": "-76.93914000" + }, + { + "id": "128389", + "name": "Walker Mill", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.87539000", + "longitude": "-76.88831000" + }, + { + "id": "128390", + "name": "Walkersville", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.48621000", + "longitude": "-77.35193000" + }, + { + "id": "128560", + "name": "Washington County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.60367000", + "longitude": "-77.81398000" + }, + { + "id": "128860", + "name": "West Elkridge", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.20705000", + "longitude": "-76.72692000" + }, + { + "id": "128912", + "name": "West Laurel", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.10122000", + "longitude": "-76.89970000" + }, + { + "id": "128943", + "name": "West Ocean City", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.33150000", + "longitude": "-75.10685000" + }, + { + "id": "129026", + "name": "Westernport", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.48537000", + "longitude": "-79.04475000" + }, + { + "id": "129043", + "name": "Westminster", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.57538000", + "longitude": "-76.99581000" + }, + { + "id": "129069", + "name": "Westphalia", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.84539000", + "longitude": "-76.81108000" + }, + { + "id": "129112", + "name": "Wheaton", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.03983000", + "longitude": "-77.05526000" + }, + { + "id": "129145", + "name": "White Marsh", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.38372000", + "longitude": "-76.43218000" + }, + { + "id": "129148", + "name": "White Oak", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.03983000", + "longitude": "-76.99303000" + }, + { + "id": "129222", + "name": "Wicomico County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.36942000", + "longitude": "-75.63151000" + }, + { + "id": "129279", + "name": "Williamsport", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.60065000", + "longitude": "-77.82055000" + }, + { + "id": "129338", + "name": "Wilson-Conococheague", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.65351000", + "longitude": "-77.83157000" + }, + { + "id": "129534", + "name": "Woodlawn", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.32288000", + "longitude": "-76.72803000" + }, + { + "id": "129544", + "name": "Woodmore", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.92122000", + "longitude": "-76.80303000" + }, + { + "id": "129552", + "name": "Woodsboro", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "39.53316000", + "longitude": "-77.31471000" + }, + { + "id": "129586", + "name": "Worcester County", + "state_id": 1401, + "state_code": "MD", + "country_id": 233, + "country_code": "US", + "latitude": "38.21650000", + "longitude": "-75.29667000" + }, + { + "id": "110986", + "name": "Abington", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.10482000", + "longitude": "-70.94532000" + }, + { + "id": "110999", + "name": "Acton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.48509000", + "longitude": "-71.43284000" + }, + { + "id": "111002", + "name": "Acushnet", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68066000", + "longitude": "-70.90782000" + }, + { + "id": "111003", + "name": "Acushnet Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68508000", + "longitude": "-70.90642000" + }, + { + "id": "111013", + "name": "Adams", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.62425000", + "longitude": "-73.11760000" + }, + { + "id": "111055", + "name": "Agawam", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06954000", + "longitude": "-72.61481000" + }, + { + "id": "111279", + "name": "Amesbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.85842000", + "longitude": "-70.93005000" + }, + { + "id": "111282", + "name": "Amherst", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.36723000", + "longitude": "-72.51852000" + }, + { + "id": "111285", + "name": "Amherst Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.37537000", + "longitude": "-72.51925000" + }, + { + "id": "111323", + "name": "Andover", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.65843000", + "longitude": "-71.13700000" + }, + { + "id": "111465", + "name": "Arlington", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.41537000", + "longitude": "-71.15644000" + }, + { + "id": "111516", + "name": "Ashburnham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.63620000", + "longitude": "-71.90785000" + }, + { + "id": "111517", + "name": "Ashby", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67787000", + "longitude": "-71.82035000" + }, + { + "id": "111523", + "name": "Ashfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.52647000", + "longitude": "-72.78843000" + }, + { + "id": "111534", + "name": "Ashland", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.26121000", + "longitude": "-71.46340000" + }, + { + "id": "111556", + "name": "Assonet", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.79594000", + "longitude": "-71.06782000" + }, + { + "id": "111583", + "name": "Athol", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.59592000", + "longitude": "-72.22675000" + }, + { + "id": "111611", + "name": "Attleboro", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.94454000", + "longitude": "-71.28561000" + }, + { + "id": "111624", + "name": "Auburn", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.19454000", + "longitude": "-71.83563000" + }, + { + "id": "111691", + "name": "Avon", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.13066000", + "longitude": "-71.04116000" + }, + { + "id": "111708", + "name": "Ayer", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.56120000", + "longitude": "-71.58979000" + }, + { + "id": "111765", + "name": "Baldwinville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.60842000", + "longitude": "-72.07591000" + }, + { + "id": "111834", + "name": "Barnstable", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70011000", + "longitude": "-70.29947000" + }, + { + "id": "111835", + "name": "Barnstable County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68419000", + "longitude": "-70.27405000" + }, + { + "id": "111841", + "name": "Barre", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.42287000", + "longitude": "-72.10508000" + }, + { + "id": "112014", + "name": "Becket", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.33203000", + "longitude": "-73.08288000" + }, + { + "id": "112023", + "name": "Bedford", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.49065000", + "longitude": "-71.27617000" + }, + { + "id": "112051", + "name": "Belchertown", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.27704000", + "longitude": "-72.40092000" + }, + { + "id": "112119", + "name": "Bellingham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.08676000", + "longitude": "-71.47451000" + }, + { + "id": "112138", + "name": "Belmont", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.39593000", + "longitude": "-71.17867000" + }, + { + "id": "112229", + "name": "Berkley", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.84593000", + "longitude": "-71.08282000" + }, + { + "id": "112233", + "name": "Berkshire County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.37067000", + "longitude": "-73.20640000" + }, + { + "id": "112237", + "name": "Berlin", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.38120000", + "longitude": "-71.63701000" + }, + { + "id": "112244", + "name": "Bernardston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67092000", + "longitude": "-72.54953000" + }, + { + "id": "112300", + "name": "Beverly", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.55843000", + "longitude": "-70.88005000" + }, + { + "id": "112302", + "name": "Beverly Cove", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.55343000", + "longitude": "-70.85366000" + }, + { + "id": "112342", + "name": "Billerica", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.55843000", + "longitude": "-71.26895000" + }, + { + "id": "112393", + "name": "Blackstone", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.01788000", + "longitude": "-71.54117000" + }, + { + "id": "112430", + "name": "Bliss Corner", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.61177000", + "longitude": "-70.93837000" + }, + { + "id": "112525", + "name": "Bolton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.43343000", + "longitude": "-71.60784000" + }, + { + "id": "112532", + "name": "Bondsville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.21259000", + "longitude": "-72.34536000" + }, + { + "id": "112589", + "name": "Boston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.35843000", + "longitude": "-71.05977000" + }, + { + "id": "112617", + "name": "Bourne", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74122000", + "longitude": "-70.59892000" + }, + { + "id": "112638", + "name": "Boxborough", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.49084000", + "longitude": "-71.52851000" + }, + { + "id": "112639", + "name": "Boxford", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.66120000", + "longitude": "-70.99672000" + }, + { + "id": "112650", + "name": "Boylston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.39176000", + "longitude": "-71.70368000" + }, + { + "id": "112682", + "name": "Braintree", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.20384000", + "longitude": "-71.00215000" + }, + { + "id": "112741", + "name": "Brewster", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.76011000", + "longitude": "-70.08280000" + }, + { + "id": "112775", + "name": "Bridgewater", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.99038000", + "longitude": "-70.97504000" + }, + { + "id": "112797", + "name": "Brimfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.12287000", + "longitude": "-72.20091000" + }, + { + "id": "112814", + "name": "Bristol County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.75709000", + "longitude": "-71.08852000" + }, + { + "id": "112834", + "name": "Brockton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.08343000", + "longitude": "-71.01838000" + }, + { + "id": "112867", + "name": "Brookline", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.33176000", + "longitude": "-71.12116000" + }, + { + "id": "112987", + "name": "Buckland", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.59231000", + "longitude": "-72.79176000" + }, + { + "id": "113070", + "name": "Burlington", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.50482000", + "longitude": "-71.19561000" + }, + { + "id": "113133", + "name": "Buzzards Bay", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74538000", + "longitude": "-70.61809000" + }, + { + "id": "113252", + "name": "Cambridge", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.37510000", + "longitude": "-71.10561000" + }, + { + "id": "113344", + "name": "Canton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.15843000", + "longitude": "-71.14477000" + }, + { + "id": "113404", + "name": "Carlisle", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.52926000", + "longitude": "-71.34950000" + }, + { + "id": "113500", + "name": "Carver", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.88344000", + "longitude": "-70.76254000" + }, + { + "id": "113659", + "name": "Centerville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.64872000", + "longitude": "-70.34808000" + }, + { + "id": "113752", + "name": "Charlemont", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.62786000", + "longitude": "-72.86982000" + }, + { + "id": "113788", + "name": "Charlton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.13565000", + "longitude": "-71.97007000" + }, + { + "id": "113798", + "name": "Chatham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68206000", + "longitude": "-69.95974000" + }, + { + "id": "113828", + "name": "Chelmsford", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.59981000", + "longitude": "-71.36728000" + }, + { + "id": "113831", + "name": "Chelsea", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.39176000", + "longitude": "-71.03283000" + }, + { + "id": "113904", + "name": "Chesterfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.39175000", + "longitude": "-72.83982000" + }, + { + "id": "113945", + "name": "Chicopee", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.14870000", + "longitude": "-72.60787000" + }, + { + "id": "114280", + "name": "Clinton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.41676000", + "longitude": "-71.68285000" + }, + { + "id": "114350", + "name": "Cochituate", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.32093000", + "longitude": "-71.36423000" + }, + { + "id": "114372", + "name": "Cohasset", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.24177000", + "longitude": "-70.80365000" + }, + { + "id": "114461", + "name": "Colrain", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67314000", + "longitude": "-72.69676000" + }, + { + "id": "114538", + "name": "Concord", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.46037000", + "longitude": "-71.34895000" + }, + { + "id": "114584", + "name": "Conway", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.50981000", + "longitude": "-72.69953000" + }, + { + "id": "114634", + "name": "Cordaville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.26898000", + "longitude": "-71.52395000" + }, + { + "id": "114707", + "name": "Cotuit", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.61678000", + "longitude": "-70.43697000" + }, + { + "id": "115002", + "name": "Dalton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.47370000", + "longitude": "-73.16621000" + }, + { + "id": "115029", + "name": "Danvers", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.57509000", + "longitude": "-70.93005000" + }, + { + "id": "115167", + "name": "Dedham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.24177000", + "longitude": "-71.16616000" + }, + { + "id": "115242", + "name": "Dennis", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.73539000", + "longitude": "-70.19391000" + }, + { + "id": "115243", + "name": "Dennis Port", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65845000", + "longitude": "-70.12863000" + }, + { + "id": "115296", + "name": "Devens", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.54470000", + "longitude": "-71.61318000" + }, + { + "id": "115335", + "name": "Dighton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.81399000", + "longitude": "-71.12032000" + }, + { + "id": "115421", + "name": "Douglas", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05426000", + "longitude": "-71.73951000" + }, + { + "id": "115448", + "name": "Dover", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.24593000", + "longitude": "-71.28283000" + }, + { + "id": "115466", + "name": "Dracut", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67037000", + "longitude": "-71.30201000" + }, + { + "id": "115505", + "name": "Dudley", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.04510000", + "longitude": "-71.93007000" + }, + { + "id": "115508", + "name": "Dukes County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.38877000", + "longitude": "-70.69877000" + }, + { + "id": "115554", + "name": "Dunstable", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67509000", + "longitude": "-71.48284000" + }, + { + "id": "115583", + "name": "Duxbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.04177000", + "longitude": "-70.67226000" + }, + { + "id": "115637", + "name": "East Bridgewater", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03343000", + "longitude": "-70.95921000" + }, + { + "id": "115639", + "name": "East Brookfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.22787000", + "longitude": "-72.04674000" + }, + { + "id": "115649", + "name": "East Dennis", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74261000", + "longitude": "-70.16196000" + }, + { + "id": "115650", + "name": "East Douglas", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.07232000", + "longitude": "-71.71340000" + }, + { + "id": "115657", + "name": "East Falmouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.57844000", + "longitude": "-70.55864000" + }, + { + "id": "115685", + "name": "East Harwich", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70011000", + "longitude": "-70.02724000" + }, + { + "id": "115705", + "name": "East Longmeadow", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06454000", + "longitude": "-72.51259000" + }, + { + "id": "115733", + "name": "East Pepperell", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.66537000", + "longitude": "-71.57312000" + }, + { + "id": "115756", + "name": "East Sandwich", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74177000", + "longitude": "-70.45169000" + }, + { + "id": "115778", + "name": "Eastham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.83011000", + "longitude": "-69.97391000" + }, + { + "id": "115779", + "name": "Easthampton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.26676000", + "longitude": "-72.66898000" + }, + { + "id": "115787", + "name": "Easton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.02454000", + "longitude": "-71.12866000" + }, + { + "id": "115838", + "name": "Edgartown", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.38901000", + "longitude": "-70.51336000" + }, + { + "id": "116174", + "name": "Erving", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.60009000", + "longitude": "-72.39814000" + }, + { + "id": "116192", + "name": "Essex", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.63204000", + "longitude": "-70.78283000" + }, + { + "id": "116194", + "name": "Essex County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.63887000", + "longitude": "-70.86792000" + }, + { + "id": "116258", + "name": "Everett", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.40843000", + "longitude": "-71.05366000" + }, + { + "id": "116325", + "name": "Fairhaven", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.63760000", + "longitude": "-70.90365000" + }, + { + "id": "116373", + "name": "Fall River", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70149000", + "longitude": "-71.15505000" + }, + { + "id": "116388", + "name": "Falmouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.55150000", + "longitude": "-70.61475000" + }, + { + "id": "116533", + "name": "Fiskdale", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.11621000", + "longitude": "-72.11341000" + }, + { + "id": "116534", + "name": "Fitchburg", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.58342000", + "longitude": "-71.80230000" + }, + { + "id": "116670", + "name": "Forestdale", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.69177000", + "longitude": "-70.49947000" + }, + { + "id": "116809", + "name": "Foxborough", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06538000", + "longitude": "-71.24783000" + }, + { + "id": "116811", + "name": "Framingham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.27926000", + "longitude": "-71.41617000" + }, + { + "id": "116812", + "name": "Framingham Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.29732000", + "longitude": "-71.43701000" + }, + { + "id": "116834", + "name": "Franklin", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.08343000", + "longitude": "-71.39673000" + }, + { + "id": "116858", + "name": "Franklin County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.58312000", + "longitude": "-72.59187000" + }, + { + "id": "116918", + "name": "Freetown", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.76677000", + "longitude": "-71.03282000" + }, + { + "id": "117075", + "name": "Gardner", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.57509000", + "longitude": "-71.99813000" + }, + { + "id": "117213", + "name": "Gill", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.64036000", + "longitude": "-72.49953000" + }, + { + "id": "117322", + "name": "Gloucester", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.61405000", + "longitude": "-70.66313000" + }, + { + "id": "117429", + "name": "Grafton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.20704000", + "longitude": "-71.68562000" + }, + { + "id": "117447", + "name": "Granby", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.25648000", + "longitude": "-72.51620000" + }, + { + "id": "117534", + "name": "Granville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06676000", + "longitude": "-72.86149000" + }, + { + "id": "117569", + "name": "Great Barrington", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.19592000", + "longitude": "-73.36206000" + }, + { + "id": "117596", + "name": "Green Harbor-Cedar Crest", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.07495000", + "longitude": "-70.65843000" + }, + { + "id": "117650", + "name": "Greenfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.58759000", + "longitude": "-72.59953000" + }, + { + "id": "117752", + "name": "Groton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.61120000", + "longitude": "-71.57451000" + }, + { + "id": "117759", + "name": "Groveland", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.76037000", + "longitude": "-71.03145000" + }, + { + "id": "117833", + "name": "Hadley", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.34176000", + "longitude": "-72.58842000" + }, + { + "id": "117861", + "name": "Halifax", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.99121000", + "longitude": "-70.86199000" + }, + { + "id": "117906", + "name": "Hamilton Worcester", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.25620000", + "longitude": "-71.76757000" + }, + { + "id": "117916", + "name": "Hampden", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06398000", + "longitude": "-72.41342000" + }, + { + "id": "117918", + "name": "Hampden County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.13511000", + "longitude": "-72.63162000" + }, + { + "id": "117922", + "name": "Hampshire County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.34014000", + "longitude": "-72.66377000" + }, + { + "id": "117970", + "name": "Hanover", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.11316000", + "longitude": "-70.81199000" + }, + { + "id": "117978", + "name": "Hanson", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.07510000", + "longitude": "-70.88004000" + }, + { + "id": "118008", + "name": "Hardwick", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.35009000", + "longitude": "-72.19952000" + }, + { + "id": "118109", + "name": "Harvard", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.50009000", + "longitude": "-71.58284000" + }, + { + "id": "118117", + "name": "Harwich", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68622000", + "longitude": "-70.07585000" + }, + { + "id": "118118", + "name": "Harwich Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.69235000", + "longitude": "-70.06938000" + }, + { + "id": "118119", + "name": "Harwich Port", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.66678000", + "longitude": "-70.07863000" + }, + { + "id": "118138", + "name": "Hatfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.37092000", + "longitude": "-72.59814000" + }, + { + "id": "118150", + "name": "Haverhill", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.77620000", + "longitude": "-71.07728000" + }, + { + "id": "118214", + "name": "Head of Westport", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.62094000", + "longitude": "-71.06199000" + }, + { + "id": "118483", + "name": "Hingham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.24177000", + "longitude": "-70.88977000" + }, + { + "id": "118484", + "name": "Hinsdale", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.43870000", + "longitude": "-73.12538000" + }, + { + "id": "118517", + "name": "Holbrook", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.15510000", + "longitude": "-71.00866000" + }, + { + "id": "118523", + "name": "Holden", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.35176000", + "longitude": "-71.86341000" + }, + { + "id": "118538", + "name": "Holland", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06398000", + "longitude": "-72.15730000" + }, + { + "id": "118553", + "name": "Holliston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.20010000", + "longitude": "-71.42450000" + }, + { + "id": "118583", + "name": "Holyoke", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.20426000", + "longitude": "-72.61620000" + }, + { + "id": "118647", + "name": "Hopedale", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.13065000", + "longitude": "-71.54117000" + }, + { + "id": "118656", + "name": "Hopkinton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.22871000", + "longitude": "-71.52256000" + }, + { + "id": "118695", + "name": "Housatonic", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.25425000", + "longitude": "-73.36622000" + }, + { + "id": "118734", + "name": "Hubbardston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.47370000", + "longitude": "-72.00619000" + }, + { + "id": "118740", + "name": "Hudson", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.39176000", + "longitude": "-71.56618000" + }, + { + "id": "118772", + "name": "Hull", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.30204000", + "longitude": "-70.90782000" + }, + { + "id": "118842", + "name": "Hyannis", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65289000", + "longitude": "-70.28280000" + }, + { + "id": "118982", + "name": "Ipswich", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67926000", + "longitude": "-70.84116000" + }, + { + "id": "119114", + "name": "Jamaica Plain", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.30982000", + "longitude": "-71.12033000" + }, + { + "id": "119623", + "name": "Kingston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.99455000", + "longitude": "-70.72448000" + }, + { + "id": "120083", + "name": "Lancaster", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.45565000", + "longitude": "-71.67312000" + }, + { + "id": "120107", + "name": "Lanesborough", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.51731000", + "longitude": "-73.22816000" + }, + { + "id": "120227", + "name": "Lawrence", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.70704000", + "longitude": "-71.16311000" + }, + { + "id": "120303", + "name": "Lee", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.30425000", + "longitude": "-73.24816000" + }, + { + "id": "120337", + "name": "Leicester", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.24593000", + "longitude": "-71.90868000" + }, + { + "id": "120376", + "name": "Lenox", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.35648000", + "longitude": "-73.28483000" + }, + { + "id": "120382", + "name": "Leominster", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.52509000", + "longitude": "-71.75979000" + }, + { + "id": "120406", + "name": "Leverett", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.45203000", + "longitude": "-72.50148000" + }, + { + "id": "120448", + "name": "Lexington", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.44732000", + "longitude": "-71.22450000" + }, + { + "id": "120504", + "name": "Lincoln", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.42593000", + "longitude": "-71.30395000" + }, + { + "id": "120637", + "name": "Littleton Common", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.54593000", + "longitude": "-71.47451000" + }, + { + "id": "120753", + "name": "Longmeadow", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05010000", + "longitude": "-72.58287000" + }, + { + "id": "120836", + "name": "Lowell", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.63342000", + "longitude": "-71.31617000" + }, + { + "id": "120870", + "name": "Ludlow", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.16009000", + "longitude": "-72.47592000" + }, + { + "id": "120887", + "name": "Lunenburg", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.59453000", + "longitude": "-71.72452000" + }, + { + "id": "120927", + "name": "Lynn", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.46676000", + "longitude": "-70.94949000" + }, + { + "id": "120930", + "name": "Lynnfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.53898000", + "longitude": "-71.04811000" + }, + { + "id": "121060", + "name": "Malden", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.42510000", + "longitude": "-71.06616000" + }, + { + "id": "121104", + "name": "Manchester-by-the-Sea", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.57787000", + "longitude": "-70.76894000" + }, + { + "id": "121146", + "name": "Mansfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03343000", + "longitude": "-71.21894000" + }, + { + "id": "121148", + "name": "Mansfield Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.02262000", + "longitude": "-71.21808000" + }, + { + "id": "121189", + "name": "Marblehead", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.50010000", + "longitude": "-70.85783000" + }, + { + "id": "121242", + "name": "Marion", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70010000", + "longitude": "-70.76281000" + }, + { + "id": "121246", + "name": "Marion Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70424000", + "longitude": "-70.76286000" + }, + { + "id": "121280", + "name": "Marlborough", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.34593000", + "longitude": "-71.55229000" + }, + { + "id": "121326", + "name": "Marshfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.09177000", + "longitude": "-70.70559000" + }, + { + "id": "121328", + "name": "Marshfield Hills", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.14594000", + "longitude": "-70.73976000" + }, + { + "id": "121331", + "name": "Marstons Mills", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65622000", + "longitude": "-70.41614000" + }, + { + "id": "121370", + "name": "Mashpee", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.64844000", + "longitude": "-70.48114000" + }, + { + "id": "121407", + "name": "Mattapoisett", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65844000", + "longitude": "-70.81615000" + }, + { + "id": "121408", + "name": "Mattapoisett Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.66595000", + "longitude": "-70.80720000" + }, + { + "id": "121440", + "name": "Maynard", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.43343000", + "longitude": "-71.44951000" + }, + { + "id": "121590", + "name": "Medfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.18760000", + "longitude": "-71.30645000" + }, + { + "id": "121592", + "name": "Medford", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.41843000", + "longitude": "-71.10616000" + }, + { + "id": "121610", + "name": "Medway", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.14176000", + "longitude": "-71.39673000" + }, + { + "id": "121628", + "name": "Melrose", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.45843000", + "longitude": "-71.06616000" + }, + { + "id": "121653", + "name": "Mendon", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.10565000", + "longitude": "-71.55229000" + }, + { + "id": "121710", + "name": "Merrimac", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.83065000", + "longitude": "-71.00228000" + }, + { + "id": "121734", + "name": "Methuen", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.72620000", + "longitude": "-71.19089000" + }, + { + "id": "121765", + "name": "Middleborough", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.89316000", + "longitude": "-70.91115000" + }, + { + "id": "121766", + "name": "Middleborough Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.89460000", + "longitude": "-70.92618000" + }, + { + "id": "121780", + "name": "Middlesex County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.48555000", + "longitude": "-71.39184000" + }, + { + "id": "121782", + "name": "Middleton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.59509000", + "longitude": "-71.01616000" + }, + { + "id": "121850", + "name": "Milford", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.13982000", + "longitude": "-71.51617000" + }, + { + "id": "121874", + "name": "Millbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.19398000", + "longitude": "-71.76007000" + }, + { + "id": "121885", + "name": "Millers Falls", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.58203000", + "longitude": "-72.49259000" + }, + { + "id": "121894", + "name": "Millis", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.16760000", + "longitude": "-71.35784000" + }, + { + "id": "121895", + "name": "Millis-Clicquot", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.16480000", + "longitude": "-71.35442000" + }, + { + "id": "121905", + "name": "Millville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.02788000", + "longitude": "-71.58090000" + }, + { + "id": "121915", + "name": "Milton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.24954000", + "longitude": "-71.06616000" + }, + { + "id": "122090", + "name": "Monson", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.10426000", + "longitude": "-72.31897000" + }, + { + "id": "122091", + "name": "Monson Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.09898000", + "longitude": "-72.30481000" + }, + { + "id": "122096", + "name": "Montague", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.53564000", + "longitude": "-72.53509000" + }, + { + "id": "122192", + "name": "Monument Beach", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.71955000", + "longitude": "-70.61198000" + }, + { + "id": "122535", + "name": "Nahant", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.42649000", + "longitude": "-70.91894000" + }, + { + "id": "122542", + "name": "Nantucket", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.28346000", + "longitude": "-70.09946000" + }, + { + "id": "122543", + "name": "Nantucket County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.26955000", + "longitude": "-70.02171000" + }, + { + "id": "122590", + "name": "Natick", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.28343000", + "longitude": "-71.34950000" + }, + { + "id": "122613", + "name": "Needham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.28343000", + "longitude": "-71.23283000" + }, + { + "id": "122662", + "name": "New Bedford", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.63526000", + "longitude": "-70.92701000" + }, + { + "id": "122752", + "name": "New Marlborough", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.12287000", + "longitude": "-73.22872000" + }, + { + "id": "122819", + "name": "Newburyport", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.81259000", + "longitude": "-70.87728000" + }, + { + "id": "122865", + "name": "Newton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.33704000", + "longitude": "-71.20922000" + }, + { + "id": "122942", + "name": "Norfolk", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.11954000", + "longitude": "-71.32506000" + }, + { + "id": "122945", + "name": "Norfolk County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.17097000", + "longitude": "-71.18381000" + }, + { + "id": "122958", + "name": "North Adams", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.70092000", + "longitude": "-73.10871000" + }, + { + "id": "122960", + "name": "North Amherst", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.41037000", + "longitude": "-72.53092000" + }, + { + "id": "122962", + "name": "North Andover", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.69870000", + "longitude": "-71.13506000" + }, + { + "id": "122967", + "name": "North Attleborough Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.97263000", + "longitude": "-71.32474000" + }, + { + "id": "122996", + "name": "North Brookfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.26676000", + "longitude": "-72.08285000" + }, + { + "id": "123007", + "name": "North Chicopee", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.18343000", + "longitude": "-72.59953000" + }, + { + "id": "123019", + "name": "North Eastham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.86511000", + "longitude": "-69.99113000" + }, + { + "id": "123025", + "name": "North Falmouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.64594000", + "longitude": "-70.61836000" + }, + { + "id": "123051", + "name": "North Lakeville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.85760000", + "longitude": "-70.94226000" + }, + { + "id": "123078", + "name": "North Pembroke", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.09316000", + "longitude": "-70.79254000" + }, + { + "id": "123083", + "name": "North Plymouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.97094000", + "longitude": "-70.68281000" + }, + { + "id": "123091", + "name": "North Reading", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.57509000", + "longitude": "-71.07867000" + }, + { + "id": "123101", + "name": "North Scituate", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.21899000", + "longitude": "-70.78560000" + }, + { + "id": "123104", + "name": "North Seekonk", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.88927000", + "longitude": "-71.33005000" + }, + { + "id": "123128", + "name": "North Westport", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.66038000", + "longitude": "-71.08838000" + }, + { + "id": "123134", + "name": "Northampton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.32509000", + "longitude": "-72.64120000" + }, + { + "id": "123139", + "name": "Northborough", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.31954000", + "longitude": "-71.64118000" + }, + { + "id": "123140", + "name": "Northbridge", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.15148000", + "longitude": "-71.64951000" + }, + { + "id": "123150", + "name": "Northfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.69592000", + "longitude": "-72.45287000" + }, + { + "id": "123176", + "name": "Northwest Harwich", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.69029000", + "longitude": "-70.10250000" + }, + { + "id": "123184", + "name": "Norton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.96677000", + "longitude": "-71.18699000" + }, + { + "id": "123185", + "name": "Norton Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.97254000", + "longitude": "-71.18535000" + }, + { + "id": "123194", + "name": "Norwell", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.16177000", + "longitude": "-70.79393000" + }, + { + "id": "123199", + "name": "Norwood", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.19454000", + "longitude": "-71.19950000" + }, + { + "id": "123229", + "name": "Oak Bluffs", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.45428000", + "longitude": "-70.56197000" + }, + { + "id": "123278", + "name": "Oakham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.35287000", + "longitude": "-72.04535000" + }, + { + "id": "123324", + "name": "Ocean Bluff-Brant Rock", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.10234000", + "longitude": "-70.65736000" + }, + { + "id": "123330", + "name": "Ocean Grove", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.72927000", + "longitude": "-71.20921000" + }, + { + "id": "123483", + "name": "Onset", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74177000", + "longitude": "-70.65781000" + }, + { + "id": "123508", + "name": "Orange", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.59036000", + "longitude": "-72.30981000" + }, + { + "id": "123564", + "name": "Orleans", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.78983000", + "longitude": "-69.98974000" + }, + { + "id": "123620", + "name": "Osterville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.62844000", + "longitude": "-70.38697000" + }, + { + "id": "123628", + "name": "Otis", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.19315000", + "longitude": "-73.09177000" + }, + { + "id": "123683", + "name": "Oxford", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.11676000", + "longitude": "-71.86479000" + }, + { + "id": "123759", + "name": "Palmer", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.15843000", + "longitude": "-72.32869000" + }, + { + "id": "123942", + "name": "Paxton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.31120000", + "longitude": "-71.92813000" + }, + { + "id": "123954", + "name": "Peabody", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.52787000", + "longitude": "-70.92866000" + }, + { + "id": "123990", + "name": "Pelham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.39315000", + "longitude": "-72.40370000" + }, + { + "id": "124054", + "name": "Pepperell", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.66592000", + "longitude": "-71.58840000" + }, + { + "id": "124141", + "name": "Phillipston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.54870000", + "longitude": "-72.13286000" + }, + { + "id": "124252", + "name": "Pinehurst", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.52926000", + "longitude": "-71.22811000" + }, + { + "id": "124298", + "name": "Pittsfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.45008000", + "longitude": "-73.24538000" + }, + { + "id": "124335", + "name": "Plainville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.00427000", + "longitude": "-71.33283000" + }, + { + "id": "124402", + "name": "Plymouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.95844000", + "longitude": "-70.66726000" + }, + { + "id": "124410", + "name": "Plymouth County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.98743000", + "longitude": "-70.73707000" + }, + { + "id": "124412", + "name": "Plympton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.95288000", + "longitude": "-70.81448000" + }, + { + "id": "124417", + "name": "Pocasset", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68622000", + "longitude": "-70.61614000" + }, + { + "id": "124687", + "name": "Princeton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.44870000", + "longitude": "-71.87730000" + }, + { + "id": "124720", + "name": "Provincetown", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05295000", + "longitude": "-70.18640000" + }, + { + "id": "124797", + "name": "Quincy", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.25288000", + "longitude": "-71.00227000" + }, + { + "id": "124865", + "name": "Randolph", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.16260000", + "longitude": "-71.04116000" + }, + { + "id": "124924", + "name": "Raynham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.94871000", + "longitude": "-71.07310000" + }, + { + "id": "124925", + "name": "Raynham Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.92371000", + "longitude": "-71.05227000" + }, + { + "id": "124929", + "name": "Reading", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.52565000", + "longitude": "-71.09533000" + }, + { + "id": "125004", + "name": "Rehoboth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.84038000", + "longitude": "-71.24949000" + }, + { + "id": "125037", + "name": "Revere", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.40843000", + "longitude": "-71.01199000" + }, + { + "id": "125090", + "name": "Richmond", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.37314000", + "longitude": "-73.36761000" + }, + { + "id": "125262", + "name": "Rochester", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.73177000", + "longitude": "-70.82004000" + }, + { + "id": "125309", + "name": "Rockland", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.13066000", + "longitude": "-70.91616000" + }, + { + "id": "125317", + "name": "Rockport", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.65565000", + "longitude": "-70.62032000" + }, + { + "id": "125482", + "name": "Rowley", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.71676000", + "longitude": "-70.87866000" + }, + { + "id": "125494", + "name": "Royalston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67759000", + "longitude": "-72.18786000" + }, + { + "id": "125555", + "name": "Rutland", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.36954000", + "longitude": "-71.94813000" + }, + { + "id": "125586", + "name": "Sagamore", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.77011000", + "longitude": "-70.52836000" + }, + { + "id": "125735", + "name": "Salem", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.51954000", + "longitude": "-70.89672000" + }, + { + "id": "125757", + "name": "Salisbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.84176000", + "longitude": "-70.86061000" + }, + { + "id": "125877", + "name": "Sandwich", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.75900000", + "longitude": "-70.49392000" + }, + { + "id": "125961", + "name": "Saugus", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.46482000", + "longitude": "-71.01005000" + }, + { + "id": "126030", + "name": "Scituate", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.19593000", + "longitude": "-70.72587000" + }, + { + "id": "126123", + "name": "Seekonk", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.80843000", + "longitude": "-71.33700000" + }, + { + "id": "126228", + "name": "Sharon", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.12371000", + "longitude": "-71.17866000" + }, + { + "id": "126262", + "name": "Sheffield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.11037000", + "longitude": "-73.35511000" + }, + { + "id": "126265", + "name": "Shelburne", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.58981000", + "longitude": "-72.68842000" + }, + { + "id": "126266", + "name": "Shelburne Falls", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.60425000", + "longitude": "-72.73926000" + }, + { + "id": "126313", + "name": "Sherborn", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.23899000", + "longitude": "-71.36978000" + }, + { + "id": "126360", + "name": "Shirley", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.54370000", + "longitude": "-71.64951000" + }, + { + "id": "126385", + "name": "Shrewsbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.29593000", + "longitude": "-71.71285000" + }, + { + "id": "126389", + "name": "Shutesbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.45648000", + "longitude": "-72.40981000" + }, + { + "id": "126516", + "name": "Smith Mills", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.63899000", + "longitude": "-70.99115000" + }, + { + "id": "126582", + "name": "Somerset", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.76955000", + "longitude": "-71.12866000" + }, + { + "id": "126595", + "name": "Somerville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.38760000", + "longitude": "-71.09950000" + }, + { + "id": "126613", + "name": "South Amherst", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.34037000", + "longitude": "-72.50509000" + }, + { + "id": "126615", + "name": "South Ashburnham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.61037000", + "longitude": "-71.93897000" + }, + { + "id": "126629", + "name": "South Boston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.33343000", + "longitude": "-71.04949000" + }, + { + "id": "126646", + "name": "South Deerfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.47731000", + "longitude": "-72.60787000" + }, + { + "id": "126647", + "name": "South Dennis", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68956000", + "longitude": "-70.15641000" + }, + { + "id": "126649", + "name": "South Duxbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.02316000", + "longitude": "-70.68281000" + }, + { + "id": "126665", + "name": "South Hadley", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.25842000", + "longitude": "-72.57453000" + }, + { + "id": "126685", + "name": "South Lancaster", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.44454000", + "longitude": "-71.68701000" + }, + { + "id": "126708", + "name": "South Peabody", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.50982000", + "longitude": "-70.94949000" + }, + { + "id": "126755", + "name": "South Yarmouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.66678000", + "longitude": "-70.18474000" + }, + { + "id": "126757", + "name": "Southampton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.22926000", + "longitude": "-72.73009000" + }, + { + "id": "126761", + "name": "Southborough", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.30565000", + "longitude": "-71.52451000" + }, + { + "id": "126762", + "name": "Southbridge", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.07510000", + "longitude": "-72.03341000" + }, + { + "id": "126791", + "name": "Southwick", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05482000", + "longitude": "-72.77037000" + }, + { + "id": "126826", + "name": "Spencer", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.24398000", + "longitude": "-71.99230000" + }, + { + "id": "126897", + "name": "Springfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.10148000", + "longitude": "-72.58981000" + }, + { + "id": "127028", + "name": "Sterling", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.43759000", + "longitude": "-71.76063000" + }, + { + "id": "127068", + "name": "Stockbridge", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.28759000", + "longitude": "-73.32039000" + }, + { + "id": "127089", + "name": "Stoneham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.48010000", + "longitude": "-71.09950000" + }, + { + "id": "127109", + "name": "Stoughton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.12510000", + "longitude": "-71.10227000" + }, + { + "id": "127112", + "name": "Stow", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.43704000", + "longitude": "-71.50562000" + }, + { + "id": "127147", + "name": "Sturbridge", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.10843000", + "longitude": "-72.07869000" + }, + { + "id": "127161", + "name": "Sudbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.38343000", + "longitude": "-71.41617000" + }, + { + "id": "127167", + "name": "Suffolk County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.35550000", + "longitude": "-71.06575000" + }, + { + "id": "127249", + "name": "Sunderland", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.24454000", + "longitude": "-71.77174000" + }, + { + "id": "127312", + "name": "Sutton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.15010000", + "longitude": "-71.76285000" + }, + { + "id": "127321", + "name": "Swampscott", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.47093000", + "longitude": "-70.91755000" + }, + { + "id": "127326", + "name": "Swansea", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74816000", + "longitude": "-71.18977000" + }, + { + "id": "127441", + "name": "Taunton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.90010000", + "longitude": "-71.08977000" + }, + { + "id": "127476", + "name": "Teaticket", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.56455000", + "longitude": "-70.59586000" + }, + { + "id": "127504", + "name": "Templeton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.55564000", + "longitude": "-72.06758000" + }, + { + "id": "127542", + "name": "Tewksbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.61065000", + "longitude": "-71.23422000" + }, + { + "id": "127619", + "name": "Three Rivers", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.18120000", + "longitude": "-72.36064000" + }, + { + "id": "127735", + "name": "Topsfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.63759000", + "longitude": "-70.94950000" + }, + { + "id": "127765", + "name": "Townsend", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.66676000", + "longitude": "-71.70507000" + }, + { + "id": "127859", + "name": "Truro", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.99344000", + "longitude": "-70.04975000" + }, + { + "id": "127905", + "name": "Turners Falls", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.60425000", + "longitude": "-72.55648000" + }, + { + "id": "127947", + "name": "Tyngsboro", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.67676000", + "longitude": "-71.42451000" + }, + { + "id": "128055", + "name": "Upton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.17454000", + "longitude": "-71.60229000" + }, + { + "id": "128071", + "name": "Uxbridge", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.07732000", + "longitude": "-71.62951000" + }, + { + "id": "128274", + "name": "Vineyard Haven", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.45428000", + "longitude": "-70.60364000" + }, + { + "id": "128359", + "name": "Wakefield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.50648000", + "longitude": "-71.07283000" + }, + { + "id": "128379", + "name": "Wales", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06954000", + "longitude": "-72.22230000" + }, + { + "id": "128425", + "name": "Walpole", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.14177000", + "longitude": "-71.24950000" + }, + { + "id": "128432", + "name": "Waltham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.37649000", + "longitude": "-71.23561000" + }, + { + "id": "128462", + "name": "Ware", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.25981000", + "longitude": "-72.23980000" + }, + { + "id": "128465", + "name": "Wareham Center", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.76677000", + "longitude": "-70.72615000" + }, + { + "id": "128478", + "name": "Warren", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.21259000", + "longitude": "-72.19119000" + }, + { + "id": "128621", + "name": "Watertown", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.37093000", + "longitude": "-71.18283000" + }, + { + "id": "128678", + "name": "Wayland", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.36260000", + "longitude": "-71.36145000" + }, + { + "id": "128731", + "name": "Webster", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.05010000", + "longitude": "-71.88007000" + }, + { + "id": "128773", + "name": "Wellesley", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.29649000", + "longitude": "-71.29256000" + }, + { + "id": "128774", + "name": "Wellfleet", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.93761000", + "longitude": "-70.03280000" + }, + { + "id": "128799", + "name": "Wendell", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.54814000", + "longitude": "-72.39675000" + }, + { + "id": "128802", + "name": "Wenham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.60426000", + "longitude": "-70.89116000" + }, + { + "id": "128821", + "name": "West Barnstable", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70566000", + "longitude": "-70.37447000" + }, + { + "id": "128830", + "name": "West Boylston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.36676000", + "longitude": "-71.78563000" + }, + { + "id": "128835", + "name": "West Bridgewater", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.01899000", + "longitude": "-71.00782000" + }, + { + "id": "128836", + "name": "West Brookfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.23537000", + "longitude": "-72.14119000" + }, + { + "id": "128844", + "name": "West Chatham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68122000", + "longitude": "-69.99113000" + }, + { + "id": "128850", + "name": "West Concord", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.45843000", + "longitude": "-71.39534000" + }, + { + "id": "128856", + "name": "West Dennis", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.66456000", + "longitude": "-70.17280000" + }, + { + "id": "128868", + "name": "West Falmouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.60427000", + "longitude": "-70.63447000" + }, + { + "id": "128939", + "name": "West Newbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.80148000", + "longitude": "-70.98978000" + }, + { + "id": "128985", + "name": "West Springfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.10704000", + "longitude": "-72.62037000" + }, + { + "id": "128986", + "name": "West Stockbridge", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.34592000", + "longitude": "-73.36622000" + }, + { + "id": "128990", + "name": "West Tisbury", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.38122000", + "longitude": "-70.67447000" + }, + { + "id": "129000", + "name": "West Wareham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.78983000", + "longitude": "-70.76031000" + }, + { + "id": "129008", + "name": "West Yarmouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65011000", + "longitude": "-70.24113000" + }, + { + "id": "129012", + "name": "Westborough", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.26954000", + "longitude": "-71.61618000" + }, + { + "id": "129028", + "name": "Westfield", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.12509000", + "longitude": "-72.74954000" + }, + { + "id": "129033", + "name": "Westford", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.57926000", + "longitude": "-71.43784000" + }, + { + "id": "129034", + "name": "Westhampton", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.30287000", + "longitude": "-72.77454000" + }, + { + "id": "129046", + "name": "Westminster", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.54592000", + "longitude": "-71.91063000" + }, + { + "id": "129061", + "name": "Weston", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.36676000", + "longitude": "-71.30311000" + }, + { + "id": "129085", + "name": "Westwood", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.21399000", + "longitude": "-71.22450000" + }, + { + "id": "129095", + "name": "Weweantic", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.73538000", + "longitude": "-70.73198000" + }, + { + "id": "129100", + "name": "Weymouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.22093000", + "longitude": "-70.93977000" + }, + { + "id": "129106", + "name": "Whately", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.43981000", + "longitude": "-72.63481000" + }, + { + "id": "129144", + "name": "White Island Shores", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.80010000", + "longitude": "-70.63475000" + }, + { + "id": "129198", + "name": "Whitinsville", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.11121000", + "longitude": "-71.66618000" + }, + { + "id": "129203", + "name": "Whitman", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.08066000", + "longitude": "-70.93560000" + }, + { + "id": "129226", + "name": "Wilbraham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.12371000", + "longitude": "-72.43147000" + }, + { + "id": "129269", + "name": "Williamsburg", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.39314000", + "longitude": "-72.73009000" + }, + { + "id": "129288", + "name": "Williamstown", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.71202000", + "longitude": "-73.20372000" + }, + { + "id": "129324", + "name": "Wilmington", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.54648000", + "longitude": "-71.17367000" + }, + { + "id": "129351", + "name": "Winchendon", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.68620000", + "longitude": "-72.04397000" + }, + { + "id": "129358", + "name": "Winchester", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.45232000", + "longitude": "-71.13700000" + }, + { + "id": "129450", + "name": "Winthrop", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.37510000", + "longitude": "-70.98283000" + }, + { + "id": "129466", + "name": "Woburn", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.47926000", + "longitude": "-71.15228000" + }, + { + "id": "129584", + "name": "Worcester", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.26259000", + "longitude": "-71.80229000" + }, + { + "id": "129587", + "name": "Worcester County", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.35140000", + "longitude": "-71.90774000" + }, + { + "id": "129604", + "name": "Wrentham", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "42.06677000", + "longitude": "-71.32811000" + }, + { + "id": "129667", + "name": "Yarmouth", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70567000", + "longitude": "-70.22863000" + }, + { + "id": "129668", + "name": "Yarmouth Port", + "state_id": 1433, + "state_code": "MA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70205000", + "longitude": "-70.24947000" + }, + { + "id": "111046", + "name": "Adrian", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.89755000", + "longitude": "-84.03717000" + }, + { + "id": "111126", + "name": "Albion", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.24310000", + "longitude": "-84.75303000" + }, + { + "id": "111133", + "name": "Alcona County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.71161000", + "longitude": "-83.34366000" + }, + { + "id": "111161", + "name": "Alger County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.45110000", + "longitude": "-86.54755000" + }, + { + "id": "111165", + "name": "Algonac", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.61858000", + "longitude": "-82.53230000" + }, + { + "id": "111178", + "name": "Allegan", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.52920000", + "longitude": "-85.85530000" + }, + { + "id": "111179", + "name": "Allegan County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.51766000", + "longitude": "-85.91034000" + }, + { + "id": "111192", + "name": "Allen Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.25754000", + "longitude": "-83.21104000" + }, + { + "id": "111194", + "name": "Allendale", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.97225000", + "longitude": "-85.95365000" + }, + { + "id": "111209", + "name": "Alma", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.37892000", + "longitude": "-84.65973000" + }, + { + "id": "111213", + "name": "Almont", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.92058000", + "longitude": "-83.04493000" + }, + { + "id": "111218", + "name": "Alpena", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.06168000", + "longitude": "-83.43275000" + }, + { + "id": "111219", + "name": "Alpena County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.06350000", + "longitude": "-83.46039000" + }, + { + "id": "111345", + "name": "Ann Arbor", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.27756000", + "longitude": "-83.74088000" + }, + { + "id": "111377", + "name": "Antrim County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.00737000", + "longitude": "-85.17579000" + }, + { + "id": "111445", + "name": "Arenac County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.04289000", + "longitude": "-83.74725000" + }, + { + "id": "111447", + "name": "Argentine", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.79142000", + "longitude": "-83.84634000" + }, + { + "id": "111476", + "name": "Armada", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.84420000", + "longitude": "-82.88437000" + }, + { + "id": "111578", + "name": "Athens", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.08866000", + "longitude": "-85.23471000" + }, + { + "id": "111593", + "name": "Atlanta", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.00473000", + "longitude": "-84.14389000" + }, + { + "id": "111616", + "name": "Au Sable", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.41085000", + "longitude": "-83.33219000" + }, + { + "id": "111626", + "name": "Auburn", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.60336000", + "longitude": "-84.06970000" + }, + { + "id": "111634", + "name": "Auburn Hills", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.68753000", + "longitude": "-83.23410000" + }, + { + "id": "111721", + "name": "Bad Axe", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.80196000", + "longitude": "-83.00078000" + }, + { + "id": "111755", + "name": "Baldwin", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.90112000", + "longitude": "-85.85173000" + }, + { + "id": "111791", + "name": "Bangor", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.31254000", + "longitude": "-86.11308000" + }, + { + "id": "111809", + "name": "Baraga", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.77854000", + "longitude": "-88.48902000" + }, + { + "id": "111810", + "name": "Baraga County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.69976000", + "longitude": "-88.35215000" + }, + { + "id": "111827", + "name": "Barnes Lake-Millers Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.17956000", + "longitude": "-83.31230000" + }, + { + "id": "111856", + "name": "Barry County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.59503000", + "longitude": "-85.30897000" + }, + { + "id": "111896", + "name": "Bath", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.81864000", + "longitude": "-84.44859000" + }, + { + "id": "111904", + "name": "Battle Creek", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.31730000", + "longitude": "-85.17816000" + }, + { + "id": "111922", + "name": "Bay City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.59447000", + "longitude": "-83.88886000" + }, + { + "id": "111925", + "name": "Bay County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.72137000", + "longitude": "-83.94184000" + }, + { + "id": "111926", + "name": "Bay Harbor", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.36413000", + "longitude": "-85.08208000" + }, + { + "id": "112009", + "name": "Beaverton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.88225000", + "longitude": "-84.48473000" + }, + { + "id": "112040", + "name": "Beecher", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.09003000", + "longitude": "-83.69440000" + }, + { + "id": "112042", + "name": "Beechwood", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.79697000", + "longitude": "-86.12588000" + }, + { + "id": "112053", + "name": "Belding", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.09781000", + "longitude": "-85.22891000" + }, + { + "id": "112076", + "name": "Bellaire", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.98028000", + "longitude": "-85.21117000" + }, + { + "id": "112105", + "name": "Belleville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.20476000", + "longitude": "-83.48521000" + }, + { + "id": "112112", + "name": "Bellevue", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.44337000", + "longitude": "-85.01805000" + }, + { + "id": "112208", + "name": "Benton Harbor", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.11671000", + "longitude": "-86.45419000" + }, + { + "id": "112209", + "name": "Benton Heights", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.13115000", + "longitude": "-86.40724000" + }, + { + "id": "112212", + "name": "Benzie County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.61687000", + "longitude": "-86.13899000" + }, + { + "id": "112230", + "name": "Berkley", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.50309000", + "longitude": "-83.18354000" + }, + { + "id": "112250", + "name": "Berrien County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.91863000", + "longitude": "-86.42807000" + }, + { + "id": "112251", + "name": "Berrien Springs", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.94643000", + "longitude": "-86.33890000" + }, + { + "id": "112268", + "name": "Bessemer", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.48134000", + "longitude": "-90.05295000" + }, + { + "id": "112295", + "name": "Beulah", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.63194000", + "longitude": "-86.09092000" + }, + { + "id": "112305", + "name": "Beverly Hills", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.52392000", + "longitude": "-83.22326000" + }, + { + "id": "112330", + "name": "Big Rapids", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.69808000", + "longitude": "-85.48366000" + }, + { + "id": "112350", + "name": "Bingham Farms", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.51587000", + "longitude": "-83.27326000" + }, + { + "id": "112354", + "name": "Birch Run", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.25086000", + "longitude": "-83.79413000" + }, + { + "id": "112359", + "name": "Birmingham", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.54670000", + "longitude": "-83.21132000" + }, + { + "id": "112431", + "name": "Blissfield", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.83255000", + "longitude": "-83.86244000" + }, + { + "id": "112441", + "name": "Bloomfield Hills", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.58364000", + "longitude": "-83.24549000" + }, + { + "id": "112651", + "name": "Boyne City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.21668000", + "longitude": "-85.01394000" + }, + { + "id": "112685", + "name": "Branch County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.91611000", + "longitude": "-85.05903000" + }, + { + "id": "112711", + "name": "Breckenridge", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.40808000", + "longitude": "-84.47500000" + }, + { + "id": "112762", + "name": "Bridgeport", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.35947000", + "longitude": "-83.88164000" + }, + { + "id": "112778", + "name": "Bridgman", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.94310000", + "longitude": "-86.55697000" + }, + { + "id": "112789", + "name": "Brighton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.52948000", + "longitude": "-83.78022000" + }, + { + "id": "112845", + "name": "Bronson", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.87227000", + "longitude": "-85.19470000" + }, + { + "id": "112871", + "name": "Brooklyn", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.10587000", + "longitude": "-84.24828000" + }, + { + "id": "112906", + "name": "Brown City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.21225000", + "longitude": "-82.98966000" + }, + { + "id": "112919", + "name": "Brownlee Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.31893000", + "longitude": "-85.14249000" + }, + { + "id": "112971", + "name": "Buchanan", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.82727000", + "longitude": "-86.36112000" + }, + { + "id": "113002", + "name": "Buena Vista", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.42030000", + "longitude": "-83.89858000" + }, + { + "id": "113094", + "name": "Burt", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.23669000", + "longitude": "-83.90636000" + }, + { + "id": "113097", + "name": "Burton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.99947000", + "longitude": "-83.61634000" + }, + { + "id": "113147", + "name": "Byron Center", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.81225000", + "longitude": "-85.72281000" + }, + { + "id": "113164", + "name": "Cadillac", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.25195000", + "longitude": "-85.40116000" + }, + { + "id": "113189", + "name": "Caledonia", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.78920000", + "longitude": "-85.51669000" + }, + { + "id": "113210", + "name": "Calhoun County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.24653000", + "longitude": "-85.00559000" + }, + { + "id": "113316", + "name": "Canadian Lakes", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.57919000", + "longitude": "-85.30170000" + }, + { + "id": "113345", + "name": "Canton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.30865000", + "longitude": "-83.48216000" + }, + { + "id": "113362", + "name": "Capac", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.01253000", + "longitude": "-82.92799000" + }, + { + "id": "113398", + "name": "Carleton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.05921000", + "longitude": "-83.39077000" + }, + { + "id": "113432", + "name": "Caro", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.49073000", + "longitude": "-83.39885000" + }, + { + "id": "113471", + "name": "Carrollton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.45864000", + "longitude": "-83.93025000" + }, + { + "id": "113477", + "name": "Carson City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.17698000", + "longitude": "-84.84639000" + }, + { + "id": "113525", + "name": "Cass City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.60085000", + "longitude": "-83.17467000" + }, + { + "id": "113531", + "name": "Cass County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.91540000", + "longitude": "-85.99346000" + }, + { + "id": "113538", + "name": "Cassopolis", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.91171000", + "longitude": "-86.01001000" + }, + { + "id": "113623", + "name": "Cedar Springs", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.22336000", + "longitude": "-85.55142000" + }, + { + "id": "113644", + "name": "Center Line", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.48504000", + "longitude": "-83.02770000" + }, + { + "id": "113696", + "name": "Centreville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.92338000", + "longitude": "-85.52832000" + }, + { + "id": "113774", + "name": "Charlevoix", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.31806000", + "longitude": "-85.25840000" + }, + { + "id": "113775", + "name": "Charlevoix County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.26715000", + "longitude": "-85.24017000" + }, + { + "id": "113779", + "name": "Charlotte", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.56365000", + "longitude": "-84.83582000" + }, + { + "id": "113821", + "name": "Cheboygan", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.64696000", + "longitude": "-84.47448000" + }, + { + "id": "113822", + "name": "Cheboygan County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.47294000", + "longitude": "-84.49206000" + }, + { + "id": "113833", + "name": "Chelsea", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.31807000", + "longitude": "-84.02181000" + }, + { + "id": "113872", + "name": "Chesaning", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.18475000", + "longitude": "-84.11497000" + }, + { + "id": "113973", + "name": "Chippewa County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.32818000", + "longitude": "-84.52936000" + }, + { + "id": "114102", + "name": "Clare", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.81947000", + "longitude": "-84.76863000" + }, + { + "id": "114103", + "name": "Clare County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.98787000", + "longitude": "-84.84784000" + }, + { + "id": "114149", + "name": "Clarkston", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.73586000", + "longitude": "-83.41883000" + }, + { + "id": "114163", + "name": "Clawson", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.53337000", + "longitude": "-83.14632000" + }, + { + "id": "114282", + "name": "Clinton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.07199000", + "longitude": "-83.97161000" + }, + { + "id": "114294", + "name": "Clinton County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.94365000", + "longitude": "-84.60152000" + }, + { + "id": "114297", + "name": "Clinton Township", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.58698000", + "longitude": "-82.91992000" + }, + { + "id": "114302", + "name": "Clio", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.17753000", + "longitude": "-83.73413000" + }, + { + "id": "114394", + "name": "Coldwater", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.94033000", + "longitude": "-85.00052000" + }, + { + "id": "114399", + "name": "Coleman", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.75669000", + "longitude": "-84.58584000" + }, + { + "id": "114443", + "name": "Coloma", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.18615000", + "longitude": "-86.30836000" + }, + { + "id": "114444", + "name": "Colon", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.95838000", + "longitude": "-85.32498000" + }, + { + "id": "114530", + "name": "Comstock Northwest", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.32182000", + "longitude": "-85.51759000" + }, + { + "id": "114531", + "name": "Comstock Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.03864000", + "longitude": "-85.67003000" + }, + { + "id": "114539", + "name": "Concord", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.17782000", + "longitude": "-84.64302000" + }, + { + "id": "114573", + "name": "Constantine", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.84116000", + "longitude": "-85.66860000" + }, + { + "id": "114608", + "name": "Coopersville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.06391000", + "longitude": "-85.93477000" + }, + { + "id": "114679", + "name": "Corunna", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.98197000", + "longitude": "-84.11775000" + }, + { + "id": "114781", + "name": "Crawford County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.68361000", + "longitude": "-84.61030000" + }, + { + "id": "114857", + "name": "Croswell", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.27558000", + "longitude": "-82.62104000" + }, + { + "id": "114877", + "name": "Crystal Falls", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.09801000", + "longitude": "-88.33402000" + }, + { + "id": "114950", + "name": "Cutlerville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.84086000", + "longitude": "-85.66364000" + }, + { + "id": "115078", + "name": "Davison", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.03475000", + "longitude": "-83.51801000" + }, + { + "id": "115145", + "name": "Dearborn", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.32226000", + "longitude": "-83.17631000" + }, + { + "id": "115147", + "name": "Dearborn Heights", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.33698000", + "longitude": "-83.27326000" + }, + { + "id": "115157", + "name": "Decatur", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.10810000", + "longitude": "-85.97446000" + }, + { + "id": "115225", + "name": "Delta County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.79162000", + "longitude": "-86.87060000" + }, + { + "id": "115291", + "name": "Detroit", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.33143000", + "longitude": "-83.04575000" + }, + { + "id": "115292", + "name": "Detroit Beach", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.93116000", + "longitude": "-83.32688000" + }, + { + "id": "115140", + "name": "DeWitt", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.84226000", + "longitude": "-84.56915000" + }, + { + "id": "115309", + "name": "Dexter", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.33834000", + "longitude": "-83.88954000" + }, + { + "id": "115329", + "name": "Dickinson County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.00935000", + "longitude": "-87.87021000" + }, + { + "id": "115350", + "name": "Dimondale", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.64559000", + "longitude": "-84.64887000" + }, + { + "id": "115388", + "name": "Dollar Bay", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "47.11965000", + "longitude": "-88.51151000" + }, + { + "id": "115422", + "name": "Douglas", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.64336000", + "longitude": "-86.20059000" + }, + { + "id": "115458", + "name": "Dowagiac", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.98421000", + "longitude": "-86.10862000" + }, + { + "id": "115529", + "name": "Dundee", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.95727000", + "longitude": "-83.65966000" + }, + { + "id": "115563", + "name": "Durand", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.91198000", + "longitude": "-83.98468000" + }, + { + "id": "115610", + "name": "Eagle River", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "47.41381000", + "longitude": "-88.29566000" + }, + { + "id": "115671", + "name": "East Grand Rapids", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.94114000", + "longitude": "-85.61003000" + }, + { + "id": "115697", + "name": "East Jordan", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.15806000", + "longitude": "-85.12423000" + }, + { + "id": "115703", + "name": "East Lansing", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.73698000", + "longitude": "-84.48387000" + }, + { + "id": "115764", + "name": "East Tawas", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.27946000", + "longitude": "-83.49025000" + }, + { + "id": "115794", + "name": "Eastpointe", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.46837000", + "longitude": "-82.95547000" + }, + { + "id": "115800", + "name": "Eastwood", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.30310000", + "longitude": "-85.55028000" + }, + { + "id": "115803", + "name": "Eaton County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.59607000", + "longitude": "-84.83831000" + }, + { + "id": "115804", + "name": "Eaton Rapids", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.50920000", + "longitude": "-84.65581000" + }, + { + "id": "115818", + "name": "Ecorse", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.24448000", + "longitude": "-83.14576000" + }, + { + "id": "115846", + "name": "Edgemont Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.74670000", + "longitude": "-84.59359000" + }, + { + "id": "115882", + "name": "Edmore", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.40809000", + "longitude": "-85.03863000" + }, + { + "id": "115892", + "name": "Edwardsburg", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.79560000", + "longitude": "-86.08084000" + }, + { + "id": "115991", + "name": "Elk Rapids", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.89556000", + "longitude": "-85.41646000" + }, + { + "id": "116103", + "name": "Emmet County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.58754000", + "longitude": "-84.98147000" + }, + { + "id": "116181", + "name": "Escanaba", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.74525000", + "longitude": "-87.06458000" + }, + { + "id": "116201", + "name": "Essexville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.61530000", + "longitude": "-83.84192000" + }, + { + "id": "116256", + "name": "Evart", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.90058000", + "longitude": "-85.25810000" + }, + { + "id": "116288", + "name": "Fair Plain", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.08699000", + "longitude": "-86.45586000" + }, + { + "id": "116417", + "name": "Farmington", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.46448000", + "longitude": "-83.37632000" + }, + { + "id": "116423", + "name": "Farmington Hills", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.48531000", + "longitude": "-83.37716000" + }, + { + "id": "116473", + "name": "Fennville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.59392000", + "longitude": "-86.10170000" + }, + { + "id": "116475", + "name": "Fenton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.79781000", + "longitude": "-83.70495000" + }, + { + "id": "116487", + "name": "Ferndale", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.46059000", + "longitude": "-83.13465000" + }, + { + "id": "116500", + "name": "Ferrysburg", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.08446000", + "longitude": "-86.22033000" + }, + { + "id": "116552", + "name": "Flat Rock", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.09643000", + "longitude": "-83.29187000" + }, + { + "id": "116566", + "name": "Flint", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.01253000", + "longitude": "-83.68746000" + }, + { + "id": "116613", + "name": "Flushing", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.06308000", + "longitude": "-83.85107000" + }, + { + "id": "116657", + "name": "Forest Hills", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.95947000", + "longitude": "-85.48975000" + }, + { + "id": "116795", + "name": "Fowler", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00170000", + "longitude": "-84.73972000" + }, + { + "id": "116798", + "name": "Fowlerville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.66059000", + "longitude": "-84.07301000" + }, + { + "id": "116817", + "name": "Frankenmuth", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.33169000", + "longitude": "-83.73802000" + }, + { + "id": "116821", + "name": "Frankfort", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.63361000", + "longitude": "-86.23454000" + }, + { + "id": "116836", + "name": "Franklin", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.52226000", + "longitude": "-83.30604000" + }, + { + "id": "116880", + "name": "Fraser", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.53920000", + "longitude": "-82.94937000" + }, + { + "id": "116905", + "name": "Freeland", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.52503000", + "longitude": "-84.12276000" + }, + { + "id": "116921", + "name": "Fremont", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.46752000", + "longitude": "-85.94200000" + }, + { + "id": "116974", + "name": "Fruitport", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.13196000", + "longitude": "-86.15478000" + }, + { + "id": "117028", + "name": "Galesburg", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.28865000", + "longitude": "-85.41806000" + }, + { + "id": "117057", + "name": "Garden City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.32559000", + "longitude": "-83.33104000" + }, + { + "id": "117127", + "name": "Gaylord", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.02751000", + "longitude": "-84.67475000" + }, + { + "id": "117135", + "name": "Genesee County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.02172000", + "longitude": "-83.70671000" + }, + { + "id": "117185", + "name": "Gibraltar", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.09504000", + "longitude": "-83.18965000" + }, + { + "id": "117237", + "name": "Gladstone", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.85274000", + "longitude": "-87.02180000" + }, + { + "id": "117240", + "name": "Gladwin", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.98085000", + "longitude": "-84.48640000" + }, + { + "id": "117241", + "name": "Gladwin County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.99067000", + "longitude": "-84.38825000" + }, + { + "id": "117337", + "name": "Gogebic County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.49552000", + "longitude": "-89.79555000" + }, + { + "id": "117389", + "name": "Goodrich", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.91697000", + "longitude": "-83.50634000" + }, + { + "id": "117450", + "name": "Grand Blanc", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.92753000", + "longitude": "-83.62995000" + }, + { + "id": "117460", + "name": "Grand Haven", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.06307000", + "longitude": "-86.22839000" + }, + { + "id": "117466", + "name": "Grand Ledge", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.75337000", + "longitude": "-84.74638000" + }, + { + "id": "117473", + "name": "Grand Rapids", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.96336000", + "longitude": "-85.66809000" + }, + { + "id": "117477", + "name": "Grand Traverse County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.71624000", + "longitude": "-85.55220000" + }, + { + "id": "117483", + "name": "Grandville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.90975000", + "longitude": "-85.76309000" + }, + { + "id": "117542", + "name": "Grass Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.25087000", + "longitude": "-84.21301000" + }, + { + "id": "117544", + "name": "Gratiot County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.29273000", + "longitude": "-84.60491000" + }, + { + "id": "117556", + "name": "Grayling", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.66140000", + "longitude": "-84.71475000" + }, + { + "id": "117690", + "name": "Greenville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.17753000", + "longitude": "-85.25280000" + }, + { + "id": "117719", + "name": "Greilickville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.78306000", + "longitude": "-85.63869000" + }, + { + "id": "117743", + "name": "Grosse Ile", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.12921000", + "longitude": "-83.14437000" + }, + { + "id": "117744", + "name": "Grosse Pointe", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.38615000", + "longitude": "-82.91186000" + }, + { + "id": "117745", + "name": "Grosse Pointe Farms", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.40920000", + "longitude": "-82.89186000" + }, + { + "id": "117746", + "name": "Grosse Pointe Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.37587000", + "longitude": "-82.93742000" + }, + { + "id": "117747", + "name": "Grosse Pointe Shores", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.43670000", + "longitude": "-82.87686000" + }, + { + "id": "117748", + "name": "Grosse Pointe Woods", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.44365000", + "longitude": "-82.90686000" + }, + { + "id": "117820", + "name": "Gwinn", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.28106000", + "longitude": "-87.44097000" + }, + { + "id": "117940", + "name": "Hamtramck", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.39282000", + "longitude": "-83.04964000" + }, + { + "id": "117949", + "name": "Hancock", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "47.12687000", + "longitude": "-88.58096000" + }, + { + "id": "117988", + "name": "Harbor Beach", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.84474000", + "longitude": "-82.65132000" + }, + { + "id": "117991", + "name": "Harbor Springs", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.43168000", + "longitude": "-84.99200000" + }, + { + "id": "118035", + "name": "Harper Woods", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.43309000", + "longitude": "-82.92408000" + }, + { + "id": "118057", + "name": "Harrison", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.01919000", + "longitude": "-84.79947000" + }, + { + "id": "118074", + "name": "Harrisville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.65640000", + "longitude": "-83.29469000" + }, + { + "id": "118080", + "name": "Hart", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.69834000", + "longitude": "-86.36397000" + }, + { + "id": "118088", + "name": "Hartford", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.20671000", + "longitude": "-86.16669000" + }, + { + "id": "118113", + "name": "Harvey", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.49466000", + "longitude": "-87.35431000" + }, + { + "id": "118129", + "name": "Haslett", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.74698000", + "longitude": "-84.40108000" + }, + { + "id": "118131", + "name": "Hastings", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.64587000", + "longitude": "-85.29084000" + }, + { + "id": "118206", + "name": "Hazel Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.46254000", + "longitude": "-83.10409000" + }, + { + "id": "118265", + "name": "Hemlock", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.41475000", + "longitude": "-84.23054000" + }, + { + "id": "118412", + "name": "Highland Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.40559000", + "longitude": "-83.09687000" + }, + { + "id": "118460", + "name": "Hillsdale", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.92005000", + "longitude": "-84.63051000" + }, + { + "id": "118462", + "name": "Hillsdale County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.88777000", + "longitude": "-84.59293000" + }, + { + "id": "118539", + "name": "Holland", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.78752000", + "longitude": "-86.10893000" + }, + { + "id": "118555", + "name": "Holly", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.79197000", + "longitude": "-83.62773000" + }, + { + "id": "118575", + "name": "Holt", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.64059000", + "longitude": "-84.51525000" + }, + { + "id": "118595", + "name": "Homer", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.14588000", + "longitude": "-84.80886000" + }, + { + "id": "118689", + "name": "Houghton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "47.12187000", + "longitude": "-88.56901000" + }, + { + "id": "118691", + "name": "Houghton County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.99155000", + "longitude": "-88.65206000" + }, + { + "id": "118692", + "name": "Houghton Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.31474000", + "longitude": "-84.76475000" + }, + { + "id": "118711", + "name": "Howard City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.39558000", + "longitude": "-85.46782000" + }, + { + "id": "118722", + "name": "Howell", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.60726000", + "longitude": "-83.92940000" + }, + { + "id": "118733", + "name": "Hubbard Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.75973000", + "longitude": "-83.54442000" + }, + { + "id": "118741", + "name": "Hudson", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.85505000", + "longitude": "-84.35384000" + }, + { + "id": "118753", + "name": "Hudsonville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.87086000", + "longitude": "-85.86504000" + }, + { + "id": "118809", + "name": "Huntington Woods", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.48059000", + "longitude": "-83.16687000" + }, + { + "id": "118826", + "name": "Huron County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.91007000", + "longitude": "-82.85551000" + }, + { + "id": "118879", + "name": "Imlay City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.02475000", + "longitude": "-83.07772000" + }, + { + "id": "118912", + "name": "Indian River", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.41251000", + "longitude": "-84.61254000" + }, + { + "id": "118935", + "name": "Ingham County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.59710000", + "longitude": "-84.37354000" + }, + { + "id": "118943", + "name": "Inkster", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.29420000", + "longitude": "-83.30993000" + }, + { + "id": "118971", + "name": "Ionia", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.98725000", + "longitude": "-85.07112000" + }, + { + "id": "118972", + "name": "Ionia County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.94509000", + "longitude": "-85.07460000" + }, + { + "id": "118973", + "name": "Iosco County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.30125000", + "longitude": "-83.51395000" + }, + { + "id": "118989", + "name": "Iron County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.20869000", + "longitude": "-88.53053000" + }, + { + "id": "118992", + "name": "Iron Mountain", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.82023000", + "longitude": "-88.06596000" + }, + { + "id": "118993", + "name": "Iron River", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.09273000", + "longitude": "-88.64235000" + }, + { + "id": "118999", + "name": "Ironwood", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.45467000", + "longitude": "-90.17101000" + }, + { + "id": "119016", + "name": "Isabella County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.64060000", + "longitude": "-84.84680000" + }, + { + "id": "119020", + "name": "Ishpeming", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.48855000", + "longitude": "-87.66764000" + }, + { + "id": "119043", + "name": "Ithaca", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.29170000", + "longitude": "-84.60750000" + }, + { + "id": "119071", + "name": "Jackson", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.24587000", + "longitude": "-84.40135000" + }, + { + "id": "119091", + "name": "Jackson County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.24849000", + "longitude": "-84.42344000" + }, + { + "id": "119213", + "name": "Jenison", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.90725000", + "longitude": "-85.79198000" + }, + { + "id": "119312", + "name": "Jonesville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.98421000", + "longitude": "-84.66190000" + }, + { + "id": "119347", + "name": "K. I. Sawyer Air Force Base", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.34651000", + "longitude": "-87.38632000" + }, + { + "id": "119360", + "name": "Kalamazoo", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.29171000", + "longitude": "-85.58723000" + }, + { + "id": "119361", + "name": "Kalamazoo County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.24545000", + "longitude": "-85.53118000" + }, + { + "id": "119366", + "name": "Kalkaska", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.73417000", + "longitude": "-85.17589000" + }, + { + "id": "119367", + "name": "Kalkaska County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.68466000", + "longitude": "-85.09023000" + }, + { + "id": "119418", + "name": "Keego Harbor", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.60809000", + "longitude": "-83.34382000" + }, + { + "id": "119489", + "name": "Kent City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.22002000", + "longitude": "-85.75115000" + }, + { + "id": "119492", + "name": "Kent County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.03216000", + "longitude": "-85.54930000" + }, + { + "id": "119501", + "name": "Kentwood", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.86947000", + "longitude": "-85.64475000" + }, + { + "id": "119536", + "name": "Keweenaw County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "47.28296000", + "longitude": "-88.21198000" + }, + { + "id": "119562", + "name": "Kilmanagh", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.75613000", + "longitude": "-83.35690000" + }, + { + "id": "119612", + "name": "Kingsford", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.79496000", + "longitude": "-88.07207000" + }, + { + "id": "119618", + "name": "Kingsley", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.58473000", + "longitude": "-85.53590000" + }, + { + "id": "119734", + "name": "L'Anse", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.75660000", + "longitude": "-88.45291000" + }, + { + "id": "119861", + "name": "Laingsburg", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.89031000", + "longitude": "-84.35136000" + }, + { + "id": "119884", + "name": "Lake City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.33529000", + "longitude": "-85.21505000" + }, + { + "id": "119893", + "name": "Lake County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.99001000", + "longitude": "-85.80170000" + }, + { + "id": "119908", + "name": "Lake Fenton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.84614000", + "longitude": "-83.70773000" + }, + { + "id": "119922", + "name": "Lake Isabella", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.64364000", + "longitude": "-84.99725000" + }, + { + "id": "119941", + "name": "Lake Michigan Beach", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.22087000", + "longitude": "-86.36947000" + }, + { + "id": "119953", + "name": "Lake Odessa", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.78476000", + "longitude": "-85.13834000" + }, + { + "id": "119954", + "name": "Lake Orion", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.78448000", + "longitude": "-83.23966000" + }, + { + "id": "120038", + "name": "Lakeview", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.44642000", + "longitude": "-85.27420000" + }, + { + "id": "120053", + "name": "Lakewood Club", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.37112000", + "longitude": "-86.26034000" + }, + { + "id": "120068", + "name": "Lambertville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.76588000", + "longitude": "-83.62799000" + }, + { + "id": "120127", + "name": "Lansing", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.73253000", + "longitude": "-84.55553000" + }, + { + "id": "120131", + "name": "Lapeer", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.05142000", + "longitude": "-83.31883000" + }, + { + "id": "120132", + "name": "Lapeer County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.09015000", + "longitude": "-83.22178000" + }, + { + "id": "120171", + "name": "Lathrup Village", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.49642000", + "longitude": "-83.22271000" + }, + { + "id": "120211", + "name": "Laurium", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "47.23743000", + "longitude": "-88.44317000" + }, + { + "id": "120251", + "name": "Lawton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.16726000", + "longitude": "-85.84695000" + }, + { + "id": "120322", + "name": "Leelanau County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.15177000", + "longitude": "-86.03850000" + }, + { + "id": "120351", + "name": "Leland", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.02305000", + "longitude": "-85.75981000" + }, + { + "id": "120368", + "name": "Lenawee County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.89508000", + "longitude": "-84.06636000" + }, + { + "id": "120396", + "name": "Leslie", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.45143000", + "longitude": "-84.43247000" + }, + { + "id": "120403", + "name": "Level Park-Oak Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.36418000", + "longitude": "-85.26650000" + }, + { + "id": "120424", + "name": "Lewiston", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.88390000", + "longitude": "-84.30557000" + }, + { + "id": "120451", + "name": "Lexington", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.26808000", + "longitude": "-82.53076000" + }, + { + "id": "120541", + "name": "Lincoln Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.25059000", + "longitude": "-83.17854000" + }, + { + "id": "120563", + "name": "Linden", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.81447000", + "longitude": "-83.78245000" + }, + { + "id": "120606", + "name": "Litchfield", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.04393000", + "longitude": "-84.75746000" + }, + { + "id": "120657", + "name": "Livingston County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.60292000", + "longitude": "-83.91153000" + }, + { + "id": "120662", + "name": "Livonia", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.36837000", + "longitude": "-83.35271000" + }, + { + "id": "120837", + "name": "Lowell", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.93364000", + "longitude": "-85.34196000" + }, + { + "id": "120863", + "name": "Luce County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.36778000", + "longitude": "-85.50934000" + }, + { + "id": "120868", + "name": "Ludington", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.95528000", + "longitude": "-86.45258000" + }, + { + "id": "120885", + "name": "Luna Pier", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.80699000", + "longitude": "-83.44243000" + }, + { + "id": "120959", + "name": "Mackinac County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.87184000", + "longitude": "-84.76227000" + }, + { + "id": "120962", + "name": "Macomb County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.67279000", + "longitude": "-82.91016000" + }, + { + "id": "121021", + "name": "Madison Heights", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.48587000", + "longitude": "-83.10520000" + }, + { + "id": "121087", + "name": "Mancelona", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.90223000", + "longitude": "-85.06088000" + }, + { + "id": "121096", + "name": "Manchester", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.15032000", + "longitude": "-84.03772000" + }, + { + "id": "121121", + "name": "Manistee", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.24445000", + "longitude": "-86.32425000" + }, + { + "id": "121122", + "name": "Manistee County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.23831000", + "longitude": "-86.28799000" + }, + { + "id": "121123", + "name": "Manistique", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.95775000", + "longitude": "-86.24625000" + }, + { + "id": "121125", + "name": "Manitou Beach-Devils Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.97565000", + "longitude": "-84.28616000" + }, + { + "id": "121158", + "name": "Manton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.41084000", + "longitude": "-85.39894000" + }, + { + "id": "121194", + "name": "Marcellus", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.02588000", + "longitude": "-85.81556000" + }, + { + "id": "121225", + "name": "Marine City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.71948000", + "longitude": "-82.49213000" + }, + { + "id": "121282", + "name": "Marlette", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.32697000", + "longitude": "-83.08022000" + }, + { + "id": "121292", + "name": "Marquette", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.54354000", + "longitude": "-87.39542000" + }, + { + "id": "121293", + "name": "Marquette County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.66295000", + "longitude": "-87.57350000" + }, + { + "id": "121307", + "name": "Marshall", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.27226000", + "longitude": "-84.96331000" + }, + { + "id": "121358", + "name": "Marysville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.91253000", + "longitude": "-82.48686000" + }, + { + "id": "121373", + "name": "Mason", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.57920000", + "longitude": "-84.44358000" + }, + { + "id": "121381", + "name": "Mason County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.95625000", + "longitude": "-86.42258000" + }, + { + "id": "121410", + "name": "Mattawan", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.20948000", + "longitude": "-85.78445000" + }, + { + "id": "121589", + "name": "Mecosta County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.64080000", + "longitude": "-85.32462000" + }, + { + "id": "121637", + "name": "Melvindale", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.28254000", + "longitude": "-83.17520000" + }, + { + "id": "121640", + "name": "Memphis", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.89642000", + "longitude": "-82.76881000" + }, + { + "id": "121662", + "name": "Menominee", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.10776000", + "longitude": "-87.61427000" + }, + { + "id": "121663", + "name": "Menominee County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.52514000", + "longitude": "-87.50969000" + }, + { + "id": "121759", + "name": "Michigan Center", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.23309000", + "longitude": "-84.32718000" + }, + { + "id": "121795", + "name": "Middleville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.71309000", + "longitude": "-85.46196000" + }, + { + "id": "121798", + "name": "Midland", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.61558000", + "longitude": "-84.24721000" + }, + { + "id": "121804", + "name": "Midland County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.64686000", + "longitude": "-84.38811000" + }, + { + "id": "121838", + "name": "Milan", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.08532000", + "longitude": "-83.68244000" + }, + { + "id": "121852", + "name": "Milford", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.59364000", + "longitude": "-83.59939000" + }, + { + "id": "121892", + "name": "Millington", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.28141000", + "longitude": "-83.52968000" + }, + { + "id": "121970", + "name": "Mio", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.65224000", + "longitude": "-84.12973000" + }, + { + "id": "121978", + "name": "Missaukee County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.33730000", + "longitude": "-85.09467000" + }, + { + "id": "122061", + "name": "Monroe", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.91643000", + "longitude": "-83.39771000" + }, + { + "id": "122079", + "name": "Monroe County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.92140000", + "longitude": "-83.49426000" + }, + { + "id": "122097", + "name": "Montague", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.41668000", + "longitude": "-86.35701000" + }, + { + "id": "122104", + "name": "Montcalm County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.31096000", + "longitude": "-85.15252000" + }, + { + "id": "122172", + "name": "Montmorency County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.02755000", + "longitude": "-84.12721000" + }, + { + "id": "122181", + "name": "Montrose", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.17669000", + "longitude": "-83.89274000" + }, + { + "id": "122229", + "name": "Morenci", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.71949000", + "longitude": "-84.21800000" + }, + { + "id": "122339", + "name": "Mount Clemens", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.59726000", + "longitude": "-82.87798000" + }, + { + "id": "122364", + "name": "Mount Morris", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.11864000", + "longitude": "-83.69496000" + }, + { + "id": "122379", + "name": "Mount Pleasant", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.59781000", + "longitude": "-84.76751000" + }, + { + "id": "122474", + "name": "Munising", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.41120000", + "longitude": "-86.64926000" + }, + { + "id": "122509", + "name": "Muskegon", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.23418000", + "longitude": "-86.24839000" + }, + { + "id": "122510", + "name": "Muskegon County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.21919000", + "longitude": "-86.21246000" + }, + { + "id": "122511", + "name": "Muskegon Heights", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.20113000", + "longitude": "-86.23895000" + }, + { + "id": "122558", + "name": "Napoleon", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.16059000", + "longitude": "-84.24606000" + }, + { + "id": "122578", + "name": "Nashville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.60281000", + "longitude": "-85.09305000" + }, + { + "id": "122617", + "name": "Negaunee", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.49910000", + "longitude": "-87.61180000" + }, + { + "id": "122660", + "name": "New Baltimore", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.68114000", + "longitude": "-82.73686000" + }, + { + "id": "122678", + "name": "New Buffalo", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.79393000", + "longitude": "-86.74392000" + }, + { + "id": "122718", + "name": "New Haven", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.72948000", + "longitude": "-82.80131000" + }, + { + "id": "122806", + "name": "Newaygo", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.41974000", + "longitude": "-85.80005000" + }, + { + "id": "122807", + "name": "Newaygo County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.55417000", + "longitude": "-85.80091000" + }, + { + "id": "122812", + "name": "Newberry", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.35500000", + "longitude": "-85.50956000" + }, + { + "id": "122901", + "name": "Niles", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.82977000", + "longitude": "-86.25418000" + }, + { + "id": "122993", + "name": "North Branch", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.22947000", + "longitude": "-83.19661000" + }, + { + "id": "123069", + "name": "North Muskegon", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.25613000", + "longitude": "-86.26756000" + }, + { + "id": "123170", + "name": "Northview", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.04558000", + "longitude": "-85.60059000" + }, + { + "id": "123171", + "name": "Northville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.43115000", + "longitude": "-83.48327000" + }, + { + "id": "123187", + "name": "Norton Shores", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.16890000", + "longitude": "-86.26395000" + }, + { + "id": "123192", + "name": "Norway", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.78690000", + "longitude": "-87.90374000" + }, + { + "id": "123208", + "name": "Novi", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.48059000", + "longitude": "-83.47549000" + }, + { + "id": "123256", + "name": "Oak Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.45948000", + "longitude": "-83.18271000" + }, + { + "id": "123295", + "name": "Oakland County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.66041000", + "longitude": "-83.38580000" + }, + { + "id": "123340", + "name": "Oceana County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.68178000", + "longitude": "-86.31683000" + }, + { + "id": "123373", + "name": "Ogemaw County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.33494000", + "longitude": "-84.12641000" + }, + { + "id": "123402", + "name": "Okemos", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.72226000", + "longitude": "-84.42747000" + }, + { + "id": "123447", + "name": "Olivet", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.44143000", + "longitude": "-84.92415000" + }, + { + "id": "123489", + "name": "Ontonagon", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.87105000", + "longitude": "-89.31403000" + }, + { + "id": "123490", + "name": "Ontonagon County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.77749000", + "longitude": "-89.30511000" + }, + { + "id": "123536", + "name": "Orchard Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.58309000", + "longitude": "-83.35938000" + }, + { + "id": "123583", + "name": "Ortonville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.85225000", + "longitude": "-83.44300000" + }, + { + "id": "123605", + "name": "Osceola County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.98987000", + "longitude": "-85.32528000" + }, + { + "id": "123607", + "name": "Oscoda County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.68175000", + "longitude": "-84.12974000" + }, + { + "id": "123632", + "name": "Otsego", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.46059000", + "longitude": "-85.69641000" + }, + { + "id": "123634", + "name": "Otsego County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.02144000", + "longitude": "-84.59898000" + }, + { + "id": "123640", + "name": "Ottawa County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00264000", + "longitude": "-86.17950000" + }, + { + "id": "123655", + "name": "Ovid", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00586000", + "longitude": "-84.37164000" + }, + { + "id": "123672", + "name": "Owosso", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.99780000", + "longitude": "-84.17664000" + }, + { + "id": "123685", + "name": "Oxford", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.82475000", + "longitude": "-83.26466000" + }, + { + "id": "123827", + "name": "Parchment", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.32810000", + "longitude": "-85.56973000" + }, + { + "id": "123927", + "name": "Paw Paw", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.21782000", + "longitude": "-85.89112000" + }, + { + "id": "123928", + "name": "Paw Paw Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.21226000", + "longitude": "-86.27197000" + }, + { + "id": "123964", + "name": "Pearl Beach", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.62670000", + "longitude": "-82.59769000" + }, + { + "id": "124071", + "name": "Perry", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.82642000", + "longitude": "-84.21941000" + }, + { + "id": "124107", + "name": "Petersburg", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.90116000", + "longitude": "-83.71494000" + }, + { + "id": "124111", + "name": "Petoskey", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.37334000", + "longitude": "-84.95533000" + }, + { + "id": "124182", + "name": "Pigeon", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.83002000", + "longitude": "-83.26996000" + }, + { + "id": "124209", + "name": "Pinckney", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.45700000", + "longitude": "-83.94791000" + }, + { + "id": "124211", + "name": "Pinconning", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.85363000", + "longitude": "-83.96499000" + }, + { + "id": "124336", + "name": "Plainwell", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.44004000", + "longitude": "-85.64890000" + }, + { + "id": "124376", + "name": "Pleasant Ridge", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.47115000", + "longitude": "-83.14215000" + }, + { + "id": "124403", + "name": "Plymouth", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.37143000", + "longitude": "-83.47021000" + }, + { + "id": "124474", + "name": "Pontiac", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.63892000", + "longitude": "-83.29105000" + }, + { + "id": "124511", + "name": "Port Huron", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.97086000", + "longitude": "-82.42491000" + }, + { + "id": "124544", + "name": "Portage", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.20115000", + "longitude": "-85.58000000" + }, + { + "id": "124561", + "name": "Portland", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.86920000", + "longitude": "-84.90305000" + }, + { + "id": "124596", + "name": "Potterville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.62920000", + "longitude": "-84.73887000" + }, + { + "id": "124650", + "name": "Presque Isle County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.39845000", + "longitude": "-83.84354000" + }, + { + "id": "124723", + "name": "Prudenville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.29835000", + "longitude": "-84.65197000" + }, + { + "id": "124798", + "name": "Quincy", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.94421000", + "longitude": "-84.88385000" + }, + { + "id": "124803", + "name": "Quinnesec", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.80635000", + "longitude": "-87.98846000" + }, + { + "id": "124893", + "name": "Rapid City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.83445000", + "longitude": "-85.28256000" + }, + { + "id": "124907", + "name": "Ravenna", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.18947000", + "longitude": "-85.93699000" + }, + { + "id": "124930", + "name": "Reading", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.83949000", + "longitude": "-84.74801000" + }, + { + "id": "124969", + "name": "Redford", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.38337000", + "longitude": "-83.29660000" + }, + { + "id": "124991", + "name": "Reed City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.87502000", + "longitude": "-85.51005000" + }, + { + "id": "124997", + "name": "Reese", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.45058000", + "longitude": "-83.69635000" + }, + { + "id": "125092", + "name": "Richmond", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.80920000", + "longitude": "-82.75576000" + }, + { + "id": "125187", + "name": "River Rouge", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.27337000", + "longitude": "-83.13437000" + }, + { + "id": "125219", + "name": "Riverview", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.17421000", + "longitude": "-83.17937000" + }, + { + "id": "125264", + "name": "Rochester", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.68059000", + "longitude": "-83.13382000" + }, + { + "id": "125271", + "name": "Rochester Hills", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.65837000", + "longitude": "-83.14993000" + }, + { + "id": "125301", + "name": "Rockford", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.12003000", + "longitude": "-85.56003000" + }, + { + "id": "125333", + "name": "Rockwood", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.07088000", + "longitude": "-83.24660000" + }, + { + "id": "125351", + "name": "Rogers City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.42140000", + "longitude": "-83.81833000" + }, + { + "id": "125381", + "name": "Romeo", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.80281000", + "longitude": "-83.01299000" + }, + { + "id": "125385", + "name": "Romulus", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.22226000", + "longitude": "-83.39660000" + }, + { + "id": "125396", + "name": "Roosevelt Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.19640000", + "longitude": "-86.27228000" + }, + { + "id": "125401", + "name": "Roscommon", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.49835000", + "longitude": "-84.59197000" + }, + { + "id": "125402", + "name": "Roscommon County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.33561000", + "longitude": "-84.61160000" + }, + { + "id": "125439", + "name": "Roseville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.49726000", + "longitude": "-82.93714000" + }, + { + "id": "125490", + "name": "Royal Oak", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.48948000", + "longitude": "-83.14465000" + }, + { + "id": "125588", + "name": "Saginaw", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.41947000", + "longitude": "-83.95081000" + }, + { + "id": "125589", + "name": "Saginaw County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.33503000", + "longitude": "-84.05319000" + }, + { + "id": "125590", + "name": "Saginaw Township North", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.46004000", + "longitude": "-84.00674000" + }, + { + "id": "125614", + "name": "Saint Charles", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.29697000", + "longitude": "-84.14053000" + }, + { + "id": "125619", + "name": "Saint Clair", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.82087000", + "longitude": "-82.48602000" + }, + { + "id": "125624", + "name": "Saint Clair County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.93112000", + "longitude": "-82.66437000" + }, + { + "id": "125625", + "name": "Saint Clair Shores", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.49698000", + "longitude": "-82.88881000" + }, + { + "id": "125646", + "name": "Saint Helen", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.36363000", + "longitude": "-84.41029000" + }, + { + "id": "125650", + "name": "Saint Ignace", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "45.86614000", + "longitude": "-84.72751000" + }, + { + "id": "125665", + "name": "Saint Johns", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00114000", + "longitude": "-84.55915000" + }, + { + "id": "125673", + "name": "Saint Joseph", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.10976000", + "longitude": "-86.48002000" + }, + { + "id": "125676", + "name": "Saint Joseph County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.91441000", + "longitude": "-85.52774000" + }, + { + "id": "125680", + "name": "Saint Louis", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.40836000", + "longitude": "-84.60667000" + }, + { + "id": "125748", + "name": "Saline", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.16671000", + "longitude": "-83.78161000" + }, + { + "id": "125859", + "name": "Sand Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.31918000", + "longitude": "-83.68470000" + }, + { + "id": "125875", + "name": "Sandusky", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.42030000", + "longitude": "-82.82966000" + }, + { + "id": "125895", + "name": "Sanilac County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.44331000", + "longitude": "-82.64575000" + }, + { + "id": "125935", + "name": "Saranac", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.92948000", + "longitude": "-85.21307000" + }, + { + "id": "125968", + "name": "Sault Ste. Marie", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.49530000", + "longitude": "-84.34532000" + }, + { + "id": "126017", + "name": "Schoolcraft", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.11421000", + "longitude": "-85.63778000" + }, + { + "id": "126018", + "name": "Schoolcraft County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.04249000", + "longitude": "-86.17730000" + }, + { + "id": "126066", + "name": "Scottville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.95473000", + "longitude": "-86.28008000" + }, + { + "id": "126109", + "name": "Sebewaing", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.73224000", + "longitude": "-83.45107000" + }, + { + "id": "126270", + "name": "Shelby", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.60862000", + "longitude": "-86.36396000" + }, + { + "id": "126310", + "name": "Shepherd", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.52447000", + "longitude": "-84.69473000" + }, + { + "id": "126345", + "name": "Shiawassee County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.95373000", + "longitude": "-84.14673000" + }, + { + "id": "126346", + "name": "Shields", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.41530000", + "longitude": "-84.05637000" + }, + { + "id": "126375", + "name": "Shorewood-Tower Hills-Harbert", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.88169000", + "longitude": "-86.61409000" + }, + { + "id": "126480", + "name": "Skidway Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.18335000", + "longitude": "-84.03527000" + }, + { + "id": "126664", + "name": "South Gull Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.38754000", + "longitude": "-85.39667000" + }, + { + "id": "126667", + "name": "South Haven", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.40309000", + "longitude": "-86.27364000" + }, + { + "id": "126690", + "name": "South Lyon", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.46059000", + "longitude": "-83.65161000" + }, + { + "id": "126694", + "name": "South Monroe", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.89588000", + "longitude": "-83.41771000" + }, + { + "id": "126718", + "name": "South Rockwood", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.06393000", + "longitude": "-83.26104000" + }, + { + "id": "126772", + "name": "Southfield", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.47337000", + "longitude": "-83.22187000" + }, + { + "id": "126775", + "name": "Southgate", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.21393000", + "longitude": "-83.19381000" + }, + { + "id": "126811", + "name": "Sparta", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.16086000", + "longitude": "-85.71004000" + }, + { + "id": "126850", + "name": "Spring Arbor", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.20504000", + "longitude": "-84.55274000" + }, + { + "id": "126866", + "name": "Spring Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.07696000", + "longitude": "-86.19700000" + }, + { + "id": "126898", + "name": "Springfield", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.32643000", + "longitude": "-85.23916000" + }, + { + "id": "126942", + "name": "Stambaugh, Iron River", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.08107000", + "longitude": "-88.62708000" + }, + { + "id": "126950", + "name": "Standish", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.98308000", + "longitude": "-83.95888000" + }, + { + "id": "126967", + "name": "Stanton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.29253000", + "longitude": "-85.08141000" + }, + { + "id": "127034", + "name": "Sterling Heights", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.58031000", + "longitude": "-83.03020000" + }, + { + "id": "127048", + "name": "Stevensville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.01449000", + "longitude": "-86.51947000" + }, + { + "id": "127069", + "name": "Stockbridge", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.45115000", + "longitude": "-84.18051000" + }, + { + "id": "127099", + "name": "Stony Point", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.94143000", + "longitude": "-83.26493000" + }, + { + "id": "127151", + "name": "Sturgis", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.79922000", + "longitude": "-85.41915000" + }, + { + "id": "127332", + "name": "Swartz Creek", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.95725000", + "longitude": "-83.83051000" + }, + { + "id": "127357", + "name": "Sylvan Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.61142000", + "longitude": "-83.32855000" + }, + { + "id": "127444", + "name": "Tawas City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.26946000", + "longitude": "-83.51470000" + }, + { + "id": "127447", + "name": "Taylor", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.24087000", + "longitude": "-83.26965000" + }, + { + "id": "127479", + "name": "Tecumseh", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.00393000", + "longitude": "-83.94494000" + }, + { + "id": "127496", + "name": "Temperance", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.77921000", + "longitude": "-83.56882000" + }, + { + "id": "127615", + "name": "Three Oaks", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.79865000", + "longitude": "-86.61058000" + }, + { + "id": "127618", + "name": "Three Rivers", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.94394000", + "longitude": "-85.63249000" + }, + { + "id": "127784", + "name": "Traverse City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.76306000", + "longitude": "-85.62063000" + }, + { + "id": "127806", + "name": "Trenton", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.13949000", + "longitude": "-83.17826000" + }, + { + "id": "127840", + "name": "Trowbridge Park", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.55660000", + "longitude": "-87.43736000" + }, + { + "id": "127848", + "name": "Troy", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.60559000", + "longitude": "-83.14993000" + }, + { + "id": "127912", + "name": "Tuscola County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.49134000", + "longitude": "-83.43987000" + }, + { + "id": "127927", + "name": "Twin Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.36279000", + "longitude": "-86.16478000" + }, + { + "id": "127984", + "name": "Union City", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.06671000", + "longitude": "-85.13609000" + }, + { + "id": "128066", + "name": "Utica", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.62614000", + "longitude": "-83.03354000" + }, + { + "id": "128132", + "name": "Van Buren County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.28511000", + "longitude": "-86.30642000" + }, + { + "id": "128151", + "name": "Vandercook Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.19337000", + "longitude": "-84.39107000" + }, + { + "id": "128159", + "name": "Vassar", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.37197000", + "longitude": "-83.58329000" + }, + { + "id": "128216", + "name": "Vicksburg", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.12005000", + "longitude": "-85.53278000" + }, + { + "id": "128318", + "name": "Wacousta", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.82781000", + "longitude": "-84.70082000" + }, + { + "id": "128360", + "name": "Wakefield", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.47523000", + "longitude": "-89.93989000" + }, + { + "id": "128384", + "name": "Walker", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00141000", + "longitude": "-85.76809000" + }, + { + "id": "128401", + "name": "Walled Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.53781000", + "longitude": "-83.48105000" + }, + { + "id": "128481", + "name": "Warren", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.49044000", + "longitude": "-83.01304000" + }, + { + "id": "128592", + "name": "Washtenaw County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.25323000", + "longitude": "-83.83877000" + }, + { + "id": "128605", + "name": "Waterford", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.69303000", + "longitude": "-83.41181000" + }, + { + "id": "128631", + "name": "Watervliet", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.18671000", + "longitude": "-86.26058000" + }, + { + "id": "128669", + "name": "Waverly", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.73920000", + "longitude": "-84.62081000" + }, + { + "id": "128679", + "name": "Wayland", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.67392000", + "longitude": "-85.64474000" + }, + { + "id": "128683", + "name": "Wayne", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.28143000", + "longitude": "-83.38632000" + }, + { + "id": "128699", + "name": "Wayne County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.28478000", + "longitude": "-83.26113000" + }, + { + "id": "128727", + "name": "Webberville", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.66698000", + "longitude": "-84.17413000" + }, + { + "id": "128828", + "name": "West Bloomfield Township", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.56891000", + "longitude": "-83.38356000" + }, + { + "id": "128833", + "name": "West Branch", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.27641000", + "longitude": "-84.23861000" + }, + { + "id": "128902", + "name": "West Ishpeming", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "46.48355000", + "longitude": "-87.70097000" + }, + { + "id": "128936", + "name": "West Monroe", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.91393000", + "longitude": "-83.43160000" + }, + { + "id": "129041", + "name": "Westland", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.32420000", + "longitude": "-83.40021000" + }, + { + "id": "129084", + "name": "Westwood", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.30282000", + "longitude": "-85.63362000" + }, + { + "id": "129097", + "name": "Wexford County", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "44.33835000", + "longitude": "-85.57842000" + }, + { + "id": "129133", + "name": "White Cloud", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.55030000", + "longitude": "-85.77200000" + }, + { + "id": "129151", + "name": "White Pigeon", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.79811000", + "longitude": "-85.64332000" + }, + { + "id": "129168", + "name": "Whitehall", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.41001000", + "longitude": "-86.34868000" + }, + { + "id": "129206", + "name": "Whitmore Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.43970000", + "longitude": "-83.74530000" + }, + { + "id": "129284", + "name": "Williamston", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.68892000", + "longitude": "-84.28302000" + }, + { + "id": "129465", + "name": "Wixom", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.52476000", + "longitude": "-83.53633000" + }, + { + "id": "129472", + "name": "Wolf Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.25474000", + "longitude": "-86.10978000" + }, + { + "id": "129481", + "name": "Wolverine Lake", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.55670000", + "longitude": "-83.47383000" + }, + { + "id": "129521", + "name": "Woodhaven", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.13893000", + "longitude": "-83.24160000" + }, + { + "id": "129528", + "name": "Woodland Beach", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "41.94005000", + "longitude": "-83.31326000" + }, + { + "id": "129621", + "name": "Wyandotte", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.21421000", + "longitude": "-83.14992000" + }, + { + "id": "129636", + "name": "Wyoming", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.91336000", + "longitude": "-85.70531000" + }, + { + "id": "129655", + "name": "Yale", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.13003000", + "longitude": "-82.79826000" + }, + { + "id": "129724", + "name": "Ypsilanti", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.24115000", + "longitude": "-83.61299000" + }, + { + "id": "129744", + "name": "Zeeland", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "42.81252000", + "longitude": "-86.01865000" + }, + { + "id": "129755", + "name": "Zilwaukee", + "state_id": 1426, + "state_code": "MI", + "country_id": 233, + "country_code": "US", + "latitude": "43.47641000", + "longitude": "-83.92053000" + }, + { + "id": "111006", + "name": "Ada", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.29969000", + "longitude": "-96.51535000" + }, + { + "id": "111047", + "name": "Adrian", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.63497000", + "longitude": "-95.93280000" + }, + { + "id": "111053", + "name": "Afton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.90275000", + "longitude": "-92.78354000" + }, + { + "id": "111073", + "name": "Aitkin", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.53301000", + "longitude": "-93.71025000" + }, + { + "id": "111074", + "name": "Aitkin County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.60826000", + "longitude": "-93.41543000" + }, + { + "id": "111106", + "name": "Albany", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.62996000", + "longitude": "-94.57000000" + }, + { + "id": "111118", + "name": "Albert Lea", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.64801000", + "longitude": "-93.36827000" + }, + { + "id": "111121", + "name": "Albertville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.23774000", + "longitude": "-93.65441000" + }, + { + "id": "111154", + "name": "Alexandria", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.88524000", + "longitude": "-95.37754000" + }, + { + "id": "111324", + "name": "Andover", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.23330000", + "longitude": "-93.29134000" + }, + { + "id": "111350", + "name": "Annandale", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.26274000", + "longitude": "-94.12443000" + }, + { + "id": "111358", + "name": "Anoka", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.19774000", + "longitude": "-93.38718000" + }, + { + "id": "111359", + "name": "Anoka County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.27324000", + "longitude": "-93.24645000" + }, + { + "id": "111393", + "name": "Apple Valley", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.73191000", + "longitude": "-93.21772000" + }, + { + "id": "111396", + "name": "Appleton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.19691000", + "longitude": "-96.01977000" + }, + { + "id": "111438", + "name": "Arden Hills", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.05024000", + "longitude": "-93.15661000" + }, + { + "id": "111466", + "name": "Arlington", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.60830000", + "longitude": "-94.08053000" + }, + { + "id": "111486", + "name": "Arnold", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.88022000", + "longitude": "-92.09047000" + }, + { + "id": "111612", + "name": "Atwater", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.13885000", + "longitude": "-94.77806000" + }, + { + "id": "111660", + "name": "Aurora", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.52993000", + "longitude": "-92.23712000" + }, + { + "id": "111669", + "name": "Austin", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.66663000", + "longitude": "-92.97464000" + }, + { + "id": "111692", + "name": "Avon", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.60913000", + "longitude": "-94.45167000" + }, + { + "id": "111714", + "name": "Babbitt", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.70853000", + "longitude": "-91.94460000" + }, + { + "id": "111728", + "name": "Bagley", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.52162000", + "longitude": "-95.39835000" + }, + { + "id": "111830", + "name": "Barnesville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.65218000", + "longitude": "-96.41979000" + }, + { + "id": "111911", + "name": "Baudette", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.71247000", + "longitude": "-94.59993000" + }, + { + "id": "111916", + "name": "Baxter", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.34330000", + "longitude": "-94.28667000" + }, + { + "id": "111951", + "name": "Bayport", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.02136000", + "longitude": "-92.78104000" + }, + { + "id": "112012", + "name": "Becker", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.39330000", + "longitude": "-93.87692000" + }, + { + "id": "112013", + "name": "Becker County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.93465000", + "longitude": "-95.67392000" + }, + { + "id": "112090", + "name": "Belle Plaine", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.62274000", + "longitude": "-93.76857000" + }, + { + "id": "112150", + "name": "Beltrami County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.97378000", + "longitude": "-94.93765000" + }, + { + "id": "112160", + "name": "Bemidji", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.47356000", + "longitude": "-94.88028000" + }, + { + "id": "112183", + "name": "Benson", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.31496000", + "longitude": "-95.60003000" + }, + { + "id": "112205", + "name": "Benton County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.69913000", + "longitude": "-93.99884000" + }, + { + "id": "112323", + "name": "Big Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.33246000", + "longitude": "-93.74608000" + }, + { + "id": "112336", + "name": "Big Stone County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.42610000", + "longitude": "-96.41092000" + }, + { + "id": "112355", + "name": "Birchwood", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.06108000", + "longitude": "-92.97605000" + }, + { + "id": "112403", + "name": "Blaine", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.16080000", + "longitude": "-93.23495000" + }, + { + "id": "112442", + "name": "Blooming Prairie", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.86663000", + "longitude": "-93.05103000" + }, + { + "id": "112452", + "name": "Bloomington", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.84080000", + "longitude": "-93.29828000" + }, + { + "id": "112465", + "name": "Blue Earth", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.63746000", + "longitude": "-94.10218000" + }, + { + "id": "112466", + "name": "Blue Earth County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.03459000", + "longitude": "-94.06703000" + }, + { + "id": "112679", + "name": "Braham", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.72274000", + "longitude": "-93.17078000" + }, + { + "id": "112681", + "name": "Brainerd", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.35802000", + "longitude": "-94.20083000" + }, + { + "id": "112684", + "name": "Branch", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.48524000", + "longitude": "-92.96188000" + }, + { + "id": "112712", + "name": "Breckenridge", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.26357000", + "longitude": "-96.58813000" + }, + { + "id": "112718", + "name": "Breezy Point", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.59001000", + "longitude": "-94.21982000" + }, + { + "id": "112874", + "name": "Brooklyn Center", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.07608000", + "longitude": "-93.33273000" + }, + { + "id": "112877", + "name": "Brooklyn Park", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.09413000", + "longitude": "-93.35634000" + }, + { + "id": "112911", + "name": "Brown County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.24217000", + "longitude": "-94.72748000" + }, + { + "id": "113013", + "name": "Buffalo", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.17191000", + "longitude": "-93.87469000" + }, + { + "id": "113091", + "name": "Burnsville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.76774000", + "longitude": "-93.27772000" + }, + { + "id": "113145", + "name": "Byron", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.03274000", + "longitude": "-92.64546000" + }, + { + "id": "113190", + "name": "Caledonia", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.63469000", + "longitude": "-91.49681000" + }, + { + "id": "113253", + "name": "Cambridge", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.57274000", + "longitude": "-93.22439000" + }, + { + "id": "113321", + "name": "Canby", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.70885000", + "longitude": "-96.27643000" + }, + { + "id": "113334", + "name": "Cannon Falls", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.50691000", + "longitude": "-92.90548000" + }, + { + "id": "113411", + "name": "Carlton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.66383000", + "longitude": "-92.42491000" + }, + { + "id": "113413", + "name": "Carlton County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.59240000", + "longitude": "-92.67705000" + }, + { + "id": "113501", + "name": "Carver", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.76357000", + "longitude": "-93.62579000" + }, + { + "id": "113502", + "name": "Carver County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.82076000", + "longitude": "-93.80258000" + }, + { + "id": "113532", + "name": "Cass County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.94959000", + "longitude": "-94.32535000" + }, + { + "id": "113640", + "name": "Center City", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.39385000", + "longitude": "-92.81660000" + }, + { + "id": "113660", + "name": "Centerville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.16302000", + "longitude": "-93.05578000" + }, + { + "id": "113727", + "name": "Champlin", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.18885000", + "longitude": "-93.39745000" + }, + { + "id": "113732", + "name": "Chanhassen", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.86219000", + "longitude": "-93.53079000" + }, + { + "id": "113794", + "name": "Chaska", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.78941000", + "longitude": "-93.60218000" + }, + { + "id": "113795", + "name": "Chatfield", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.84552000", + "longitude": "-92.18905000" + }, + { + "id": "113974", + "name": "Chippewa County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.02234000", + "longitude": "-95.56669000" + }, + { + "id": "113977", + "name": "Chisago City", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.37358000", + "longitude": "-92.88994000" + }, + { + "id": "113978", + "name": "Chisago County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.50247000", + "longitude": "-92.90834000" + }, + { + "id": "113979", + "name": "Chisholm", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.48910000", + "longitude": "-92.88380000" + }, + { + "id": "114030", + "name": "Circle Pines", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.14858000", + "longitude": "-93.15161000" + }, + { + "id": "114100", + "name": "Clara City", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.95496000", + "longitude": "-95.36640000" + }, + { + "id": "114188", + "name": "Clay County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.89234000", + "longitude": "-96.49065000" + }, + { + "id": "114225", + "name": "Clearwater", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.41941000", + "longitude": "-94.04887000" + }, + { + "id": "114226", + "name": "Clearwater County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.57766000", + "longitude": "-95.37903000" + }, + { + "id": "114304", + "name": "Cloquet", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.72161000", + "longitude": "-92.45936000" + }, + { + "id": "114373", + "name": "Cohasset", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.26356000", + "longitude": "-93.62022000" + }, + { + "id": "114376", + "name": "Cokato", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.07580000", + "longitude": "-94.18998000" + }, + { + "id": "114386", + "name": "Cold Spring", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.45580000", + "longitude": "-94.42888000" + }, + { + "id": "114401", + "name": "Coleraine", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.28883000", + "longitude": "-93.42771000" + }, + { + "id": "114419", + "name": "Collegeville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.59441000", + "longitude": "-94.36305000" + }, + { + "id": "114442", + "name": "Cologne", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.77163000", + "longitude": "-93.78135000" + }, + { + "id": "114486", + "name": "Columbia Heights", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.04080000", + "longitude": "-93.26300000" + }, + { + "id": "114500", + "name": "Columbus", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.26522000", + "longitude": "-93.05015000" + }, + { + "id": "114593", + "name": "Cook County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.81684000", + "longitude": "-90.54108000" + }, + { + "id": "114600", + "name": "Coon Rapids", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.11997000", + "longitude": "-93.28773000" + }, + { + "id": "114632", + "name": "Corcoran", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.09524000", + "longitude": "-93.54746000" + }, + { + "id": "114691", + "name": "Cottage Grove", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.82774000", + "longitude": "-92.94382000" + }, + { + "id": "114700", + "name": "Cottonwood", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.60885000", + "longitude": "-95.67419000" + }, + { + "id": "114703", + "name": "Cottonwood County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.00711000", + "longitude": "-95.18115000" + }, + { + "id": "114840", + "name": "Crookston", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.77414000", + "longitude": "-96.60812000" + }, + { + "id": "114843", + "name": "Crosby", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.48218000", + "longitude": "-93.95776000" + }, + { + "id": "114849", + "name": "Cross Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.65941000", + "longitude": "-94.11387000" + }, + { + "id": "114861", + "name": "Crow Wing County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.48237000", + "longitude": "-94.07087000" + }, + { + "id": "114874", + "name": "Crystal", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.03274000", + "longitude": "-93.36023000" + }, + { + "id": "114976", + "name": "Dakota County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.67189000", + "longitude": "-93.06544000" + }, + { + "id": "115055", + "name": "Dassel", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.08163000", + "longitude": "-94.30693000" + }, + { + "id": "115082", + "name": "Dawson", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.93274000", + "longitude": "-96.05448000" + }, + { + "id": "115096", + "name": "Dayton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.24385000", + "longitude": "-93.51496000" + }, + { + "id": "115171", + "name": "Deephaven", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.92969000", + "longitude": "-93.52246000" + }, + { + "id": "115198", + "name": "Delano", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.04191000", + "longitude": "-93.78913000" + }, + { + "id": "115216", + "name": "Dellwood", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.08997000", + "longitude": "-92.97244000" + }, + { + "id": "115293", + "name": "Detroit Lakes", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.81718000", + "longitude": "-95.84533000" + }, + { + "id": "115347", + "name": "Dilworth", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.87663000", + "longitude": "-96.70341000" + }, + { + "id": "115375", + "name": "Dodge Center", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.02802000", + "longitude": "-92.85464000" + }, + { + "id": "115378", + "name": "Dodge County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.02259000", + "longitude": "-92.86205000" + }, + { + "id": "115429", + "name": "Douglas County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.93372000", + "longitude": "-95.45352000" + }, + { + "id": "115513", + "name": "Duluth", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.78327000", + "longitude": "-92.10658000" + }, + { + "id": "115527", + "name": "Dundas", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.42941000", + "longitude": "-93.20188000" + }, + { + "id": "115593", + "name": "Eagan", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.80413000", + "longitude": "-93.16689000" + }, + { + "id": "115604", + "name": "Eagle Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.16497000", + "longitude": "-93.88134000" + }, + { + "id": "115634", + "name": "East Bethel", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.31941000", + "longitude": "-93.20245000" + }, + { + "id": "115670", + "name": "East Grand Forks", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.92998000", + "longitude": "-97.02452000" + }, + { + "id": "115676", + "name": "East Gull Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.40802000", + "longitude": "-94.35584000" + }, + { + "id": "115832", + "name": "Eden Prairie", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.85469000", + "longitude": "-93.47079000" + }, + { + "id": "115833", + "name": "Eden Valley", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.32607000", + "longitude": "-94.54611000" + }, + { + "id": "115849", + "name": "Edgerton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.87247000", + "longitude": "-96.12864000" + }, + { + "id": "115867", + "name": "Edina", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.88969000", + "longitude": "-93.34995000" + }, + { + "id": "115946", + "name": "Elbow Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.99413000", + "longitude": "-95.97672000" + }, + { + "id": "115967", + "name": "Elgin", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.13024000", + "longitude": "-92.25156000" + }, + { + "id": "115993", + "name": "Elk River", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.30385000", + "longitude": "-93.56718000" + }, + { + "id": "116010", + "name": "Elko New Market", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.56472000", + "longitude": "-93.32694000" + }, + { + "id": "116085", + "name": "Ely", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.90324000", + "longitude": "-91.86709000" + }, + { + "id": "116185", + "name": "Esko", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.70578000", + "longitude": "-92.36325000" + }, + { + "id": "116257", + "name": "Eveleth", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.46243000", + "longitude": "-92.53991000" + }, + { + "id": "116269", + "name": "Excelsior", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.90330000", + "longitude": "-93.56635000" + }, + { + "id": "116278", + "name": "Eyota", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.98830000", + "longitude": "-92.22850000" + }, + { + "id": "116305", + "name": "Fairfax", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.52913000", + "longitude": "-94.72082000" + }, + { + "id": "116337", + "name": "Fairmont", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.65218000", + "longitude": "-94.46108000" + }, + { + "id": "116365", + "name": "Falcon Heights", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.99163000", + "longitude": "-93.16633000" + }, + { + "id": "116397", + "name": "Faribault", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.29496000", + "longitude": "-93.26883000" + }, + { + "id": "116398", + "name": "Faribault County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67393000", + "longitude": "-93.94800000" + }, + { + "id": "116419", + "name": "Farmington", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.64024000", + "longitude": "-93.14355000" + }, + { + "id": "116479", + "name": "Fergus Falls", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.28302000", + "longitude": "-96.07756000" + }, + { + "id": "116510", + "name": "Fillmore County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67400000", + "longitude": "-92.09017000" + }, + { + "id": "116620", + "name": "Foley", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.66469000", + "longitude": "-93.90970000" + }, + { + "id": "116661", + "name": "Forest Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.27886000", + "longitude": "-92.98522000" + }, + { + "id": "116773", + "name": "Fosston", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.57635000", + "longitude": "-95.75141000" + }, + { + "id": "116882", + "name": "Frazee", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.72801000", + "longitude": "-95.70088000" + }, + { + "id": "116899", + "name": "Freeborn County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67384000", + "longitude": "-93.34882000" + }, + { + "id": "116944", + "name": "Fridley", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.08608000", + "longitude": "-93.26328000" + }, + { + "id": "116979", + "name": "Fulda", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.87052000", + "longitude": "-95.60029000" + }, + { + "id": "117128", + "name": "Gaylord", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.55302000", + "longitude": "-94.22053000" + }, + { + "id": "117203", + "name": "Gilbert", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.48882000", + "longitude": "-92.46491000" + }, + { + "id": "117279", + "name": "Glencoe", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.76913000", + "longitude": "-94.15164000" + }, + { + "id": "117315", + "name": "Glenwood", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.65024000", + "longitude": "-95.38976000" + }, + { + "id": "117330", + "name": "Glyndon", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.87524000", + "longitude": "-96.57896000" + }, + { + "id": "117355", + "name": "Golden Valley", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.00969000", + "longitude": "-93.34912000" + }, + { + "id": "117379", + "name": "Goodhue", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.40052000", + "longitude": "-92.62380000" + }, + { + "id": "117380", + "name": "Goodhue County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.40985000", + "longitude": "-92.72259000" + }, + { + "id": "117390", + "name": "Goodview", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.06246000", + "longitude": "-91.69571000" + }, + { + "id": "117467", + "name": "Grand Marais", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.75045000", + "longitude": "-90.33427000" + }, + { + "id": "117468", + "name": "Grand Meadow", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.70580000", + "longitude": "-92.57212000" + }, + { + "id": "117472", + "name": "Grand Rapids", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.23717000", + "longitude": "-93.53021000" + }, + { + "id": "117497", + "name": "Granite Falls", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.80996000", + "longitude": "-95.54558000" + }, + { + "id": "117504", + "name": "Grant", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.08441000", + "longitude": "-92.91049000" + }, + { + "id": "117513", + "name": "Grant County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.93405000", + "longitude": "-96.01218000" + }, + { + "id": "117651", + "name": "Greenfield", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.10330000", + "longitude": "-93.69135000" + }, + { + "id": "117871", + "name": "Hallock", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.77443000", + "longitude": "-96.94645000" + }, + { + "id": "117879", + "name": "Ham Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.25024000", + "longitude": "-93.24995000" + }, + { + "id": "117971", + "name": "Hanover", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.15580000", + "longitude": "-93.66635000" + }, + { + "id": "118043", + "name": "Harris", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.58635000", + "longitude": "-92.97466000" + }, + { + "id": "118132", + "name": "Hastings", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.74330000", + "longitude": "-92.85243000" + }, + { + "id": "118168", + "name": "Hawley", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.88079000", + "longitude": "-96.31673000" + }, + { + "id": "118185", + "name": "Hayfield", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.89052000", + "longitude": "-92.84769000" + }, + { + "id": "118241", + "name": "Hector", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.74385000", + "longitude": "-94.71555000" + }, + { + "id": "118291", + "name": "Hennepin County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.00458000", + "longitude": "-93.47688000" + }, + { + "id": "118326", + "name": "Hermantown", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.80689000", + "longitude": "-92.23825000" + }, + { + "id": "118359", + "name": "Hibbing", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.42715000", + "longitude": "-92.93769000" + }, + { + "id": "118477", + "name": "Hinckley", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.01134000", + "longitude": "-92.94437000" + }, + { + "id": "118652", + "name": "Hopkins", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.92496000", + "longitude": "-93.46273000" + }, + { + "id": "118706", + "name": "Houston County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67144000", + "longitude": "-91.49283000" + }, + { + "id": "118719", + "name": "Howard Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.06080000", + "longitude": "-94.07331000" + }, + { + "id": "118728", + "name": "Hoyt Lakes", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.51965000", + "longitude": "-92.13851000" + }, + { + "id": "118732", + "name": "Hubbard County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.10865000", + "longitude": "-94.91664000" + }, + { + "id": "118766", + "name": "Hugo", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.15997000", + "longitude": "-92.99327000" + }, + { + "id": "118836", + "name": "Hutchinson", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.88774000", + "longitude": "-94.36971000" + }, + { + "id": "118895", + "name": "Independence", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.02524000", + "longitude": "-93.70746000" + }, + { + "id": "118952", + "name": "International Falls", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.60105000", + "longitude": "-93.41098000" + }, + { + "id": "118953", + "name": "Inver Grove Heights", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.84802000", + "longitude": "-93.04272000" + }, + { + "id": "119017", + "name": "Isanti", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.49024000", + "longitude": "-93.24773000" + }, + { + "id": "119018", + "name": "Isanti County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.56149000", + "longitude": "-93.29518000" + }, + { + "id": "119041", + "name": "Itasca County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.50953000", + "longitude": "-93.63200000" + }, + { + "id": "119048", + "name": "Ivanhoe", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.46330000", + "longitude": "-96.24726000" + }, + { + "id": "119070", + "name": "Jackson", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.62079000", + "longitude": "-94.98860000" + }, + { + "id": "119092", + "name": "Jackson County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67417000", + "longitude": "-95.15411000" + }, + { + "id": "119130", + "name": "Janesville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.11608000", + "longitude": "-93.70800000" + }, + { + "id": "119315", + "name": "Jordan", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.66691000", + "longitude": "-93.62690000" + }, + { + "id": "119373", + "name": "Kanabec County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.94522000", + "longitude": "-93.29343000" + }, + { + "id": "119375", + "name": "Kandiyohi County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.15238000", + "longitude": "-95.00474000" + }, + { + "id": "119392", + "name": "Kasson", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.02996000", + "longitude": "-92.75074000" + }, + { + "id": "119424", + "name": "Keewatin", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.39966000", + "longitude": "-93.07242000" + }, + { + "id": "119506", + "name": "Kenyon", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.27219000", + "longitude": "-92.98548000" + }, + { + "id": "119667", + "name": "Kittson County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.77663000", + "longitude": "-96.78285000" + }, + { + "id": "119705", + "name": "Koochiching County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.24527000", + "longitude": "-93.78337000" + }, + { + "id": "119741", + "name": "La Crescent", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.82802000", + "longitude": "-91.30403000" + }, + { + "id": "119811", + "name": "Lac qui Parle County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.99549000", + "longitude": "-96.17348000" + }, + { + "id": "119883", + "name": "Lake City", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.44968000", + "longitude": "-92.26820000" + }, + { + "id": "119894", + "name": "Lake County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.52317000", + "longitude": "-91.40885000" + }, + { + "id": "119900", + "name": "Lake Crystal", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.10580000", + "longitude": "-94.21885000" + }, + { + "id": "119905", + "name": "Lake Elmo", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.99580000", + "longitude": "-92.87938000" + }, + { + "id": "120008", + "name": "Lake of the Woods County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.77051000", + "longitude": "-94.90503000" + }, + { + "id": "119971", + "name": "Lake Saint Croix Beach", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.92080000", + "longitude": "-92.76687000" + }, + { + "id": "119977", + "name": "Lake Shore", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.48552000", + "longitude": "-94.36056000" + }, + { + "id": "120009", + "name": "Lakefield", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67746000", + "longitude": "-95.17166000" + }, + { + "id": "120015", + "name": "Lakeland", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.95636000", + "longitude": "-92.76576000" + }, + { + "id": "120043", + "name": "Lakeville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.64969000", + "longitude": "-93.24272000" + }, + { + "id": "120178", + "name": "Lauderdale", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.99858000", + "longitude": "-93.20578000" + }, + { + "id": "120257", + "name": "Le Center", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.38941000", + "longitude": "-93.73023000" + }, + { + "id": "120264", + "name": "Le Sueur", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.46135000", + "longitude": "-93.91524000" + }, + { + "id": "120265", + "name": "Le Sueur County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.37143000", + "longitude": "-93.73008000" + }, + { + "id": "120399", + "name": "Lester Prairie", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.88385000", + "longitude": "-94.04164000" + }, + { + "id": "120425", + "name": "Lewiston", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.98441000", + "longitude": "-91.86932000" + }, + { + "id": "120450", + "name": "Lexington", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.14247000", + "longitude": "-93.16328000" + }, + { + "id": "120527", + "name": "Lincoln County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.41260000", + "longitude": "-96.26709000" + }, + { + "id": "120576", + "name": "Lindstrom", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.38941000", + "longitude": "-92.84799000" + }, + { + "id": "120587", + "name": "Lino Lakes", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.16024000", + "longitude": "-93.08883000" + }, + { + "id": "120605", + "name": "Litchfield", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.12718000", + "longitude": "-94.52805000" + }, + { + "id": "120613", + "name": "Little Canada", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.02691000", + "longitude": "-93.08772000" + }, + { + "id": "120617", + "name": "Little Falls", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.97635000", + "longitude": "-94.36250000" + }, + { + "id": "120627", + "name": "Little Rock", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.86801000", + "longitude": "-95.11055000" + }, + { + "id": "120747", + "name": "Long Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.98663000", + "longitude": "-93.57162000" + }, + { + "id": "120749", + "name": "Long Prairie", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.97469000", + "longitude": "-94.86558000" + }, + { + "id": "120763", + "name": "Lonsdale", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.48024000", + "longitude": "-93.42856000" + }, + { + "id": "120900", + "name": "Luverne", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.65414000", + "longitude": "-96.21281000" + }, + { + "id": "120938", + "name": "Lyon County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.41349000", + "longitude": "-95.83897000" + }, + { + "id": "120979", + "name": "Madelia", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.05079000", + "longitude": "-94.41830000" + }, + { + "id": "120994", + "name": "Madison", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.00968000", + "longitude": "-96.19588000" + }, + { + "id": "121022", + "name": "Madison Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.20441000", + "longitude": "-93.81551000" + }, + { + "id": "121043", + "name": "Mahnomen", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.31524000", + "longitude": "-95.96865000" + }, + { + "id": "121044", + "name": "Mahnomen County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.32524000", + "longitude": "-95.80905000" + }, + { + "id": "121047", + "name": "Mahtomedi", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.06969000", + "longitude": "-92.95160000" + }, + { + "id": "121130", + "name": "Mankato", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.15906000", + "longitude": "-94.00915000" + }, + { + "id": "121159", + "name": "Mantorville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.06913000", + "longitude": "-92.75575000" + }, + { + "id": "121167", + "name": "Maple Grove", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.07246000", + "longitude": "-93.45579000" + }, + { + "id": "121169", + "name": "Maple Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.22913000", + "longitude": "-94.00192000" + }, + { + "id": "121171", + "name": "Maple Plain", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.00719000", + "longitude": "-93.65579000" + }, + { + "id": "121175", + "name": "Mapleton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.92885000", + "longitude": "-93.95606000" + }, + { + "id": "121178", + "name": "Maplewood", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.95302000", + "longitude": "-92.99522000" + }, + { + "id": "121308", + "name": "Marshall", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.44690000", + "longitude": "-95.78835000" + }, + { + "id": "121320", + "name": "Marshall County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.35813000", + "longitude": "-96.36847000" + }, + { + "id": "121341", + "name": "Martin County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67436000", + "longitude": "-94.55107000" + }, + { + "id": "121432", + "name": "Mayer", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.88496000", + "longitude": "-93.88775000" + }, + { + "id": "121535", + "name": "McLeod County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.82354000", + "longitude": "-94.27242000" + }, + { + "id": "121593", + "name": "Medford", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.17413000", + "longitude": "-93.24632000" + }, + { + "id": "121604", + "name": "Medina", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.03524000", + "longitude": "-93.58246000" + }, + { + "id": "121614", + "name": "Meeker County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.12312000", + "longitude": "-94.52731000" + }, + { + "id": "121629", + "name": "Melrose", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.67469000", + "longitude": "-94.80752000" + }, + { + "id": "121644", + "name": "Menahga", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.75385000", + "longitude": "-95.09808000" + }, + { + "id": "121658", + "name": "Mendota Heights", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.88358000", + "longitude": "-93.13827000" + }, + { + "id": "121832", + "name": "Milaca", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.75580000", + "longitude": "-93.65441000" + }, + { + "id": "121876", + "name": "Mille Lacs County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.93805000", + "longitude": "-93.63009000" + }, + { + "id": "121951", + "name": "Minneapolis", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.97997000", + "longitude": "-93.26384000" + }, + { + "id": "121955", + "name": "Minneota", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.55885000", + "longitude": "-95.98559000" + }, + { + "id": "121956", + "name": "Minnetonka", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.91330000", + "longitude": "-93.50329000" + }, + { + "id": "121957", + "name": "Minnetonka Mills", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.94107000", + "longitude": "-93.44190000" + }, + { + "id": "121958", + "name": "Minnetrista", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.93830000", + "longitude": "-93.71774000" + }, + { + "id": "122126", + "name": "Montevideo", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.94803000", + "longitude": "-95.71701000" + }, + { + "id": "122134", + "name": "Montgomery", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.43885000", + "longitude": "-93.58134000" + }, + { + "id": "122167", + "name": "Monticello", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.30552000", + "longitude": "-93.79414000" + }, + { + "id": "122180", + "name": "Montrose", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.06496000", + "longitude": "-93.91108000" + }, + { + "id": "122212", + "name": "Moorhead", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.87386000", + "longitude": "-96.76951000" + }, + { + "id": "122214", + "name": "Moose Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.45411000", + "longitude": "-92.76187000" + }, + { + "id": "122218", + "name": "Mora", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.87690000", + "longitude": "-93.29384000" + }, + { + "id": "122268", + "name": "Morris", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.58607000", + "longitude": "-95.91394000" + }, + { + "id": "122277", + "name": "Morrison County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.01262000", + "longitude": "-94.26842000" + }, + { + "id": "122318", + "name": "Mound", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.93663000", + "longitude": "-93.66607000" + }, + { + "id": "122326", + "name": "Mounds View", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.10497000", + "longitude": "-93.20856000" + }, + { + "id": "122419", + "name": "Mountain Iron", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.53243000", + "longitude": "-92.62351000" + }, + { + "id": "122420", + "name": "Mountain Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.93885000", + "longitude": "-94.92971000" + }, + { + "id": "122445", + "name": "Mower County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67147000", + "longitude": "-92.75251000" + }, + { + "id": "122495", + "name": "Murray County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.02212000", + "longitude": "-95.76328000" + }, + { + "id": "122671", + "name": "New Brighton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.06552000", + "longitude": "-93.20189000" + }, + { + "id": "122726", + "name": "New Hope", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.03802000", + "longitude": "-93.38662000" + }, + { + "id": "122743", + "name": "New London", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.30108000", + "longitude": "-94.94418000" + }, + { + "id": "122766", + "name": "New Prague", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.54330000", + "longitude": "-93.57607000" + }, + { + "id": "122769", + "name": "New Richland", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.89385000", + "longitude": "-93.49383000" + }, + { + "id": "122788", + "name": "New Ulm", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.31246000", + "longitude": "-94.46053000" + }, + { + "id": "122797", + "name": "New York Mills", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.51802000", + "longitude": "-95.37615000" + }, + { + "id": "122845", + "name": "Newport", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.86636000", + "longitude": "-93.00049000" + }, + { + "id": "122895", + "name": "Nicollet", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.27608000", + "longitude": "-94.18746000" + }, + { + "id": "122896", + "name": "Nicollet County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.34989000", + "longitude": "-94.24730000" + }, + { + "id": "122908", + "name": "Nisswa", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.52052000", + "longitude": "-94.28861000" + }, + { + "id": "122920", + "name": "Nobles County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67424000", + "longitude": "-95.75339000" + }, + { + "id": "122950", + "name": "Norman County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.32648000", + "longitude": "-96.45528000" + }, + { + "id": "122994", + "name": "North Branch", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.51135000", + "longitude": "-92.98022000" + }, + { + "id": "123063", + "name": "North Mankato", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.17330000", + "longitude": "-94.03385000" + }, + { + "id": "123073", + "name": "North Oaks", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.10274000", + "longitude": "-93.07911000" + }, + { + "id": "123098", + "name": "North Saint Paul", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.01247000", + "longitude": "-92.99188000" + }, + { + "id": "123152", + "name": "Northfield", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.45830000", + "longitude": "-93.16160000" + }, + { + "id": "123202", + "name": "Norwood (historical)", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.76802000", + "longitude": "-93.92747000" + }, + { + "id": "123203", + "name": "Norwood Young America", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.77357000", + "longitude": "-93.92163000" + }, + { + "id": "123211", + "name": "Nowthen", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.32802000", + "longitude": "-93.47023000" + }, + { + "id": "123239", + "name": "Oak Grove", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.34080000", + "longitude": "-93.32690000" + }, + { + "id": "123258", + "name": "Oak Park Heights", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.03136000", + "longitude": "-92.79298000" + }, + { + "id": "123271", + "name": "Oakdale", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.96302000", + "longitude": "-92.96494000" + }, + { + "id": "123303", + "name": "Oakport", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.93191000", + "longitude": "-96.77897000" + }, + { + "id": "123450", + "name": "Olivia", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.77635000", + "longitude": "-94.98972000" + }, + { + "id": "123454", + "name": "Olmsted County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.00375000", + "longitude": "-92.40177000" + }, + { + "id": "123573", + "name": "Orono", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.97135000", + "longitude": "-93.60440000" + }, + { + "id": "123575", + "name": "Oronoco", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.16608000", + "longitude": "-92.53491000" + }, + { + "id": "123584", + "name": "Ortonville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.30469000", + "longitude": "-96.44478000" + }, + { + "id": "123592", + "name": "Osakis", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.86691000", + "longitude": "-95.15225000" + }, + { + "id": "123614", + "name": "Osseo", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.11941000", + "longitude": "-93.40245000" + }, + { + "id": "123633", + "name": "Otsego", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.27413000", + "longitude": "-93.59135000" + }, + { + "id": "123641", + "name": "Otter Tail County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.40880000", + "longitude": "-95.70800000" + }, + { + "id": "123659", + "name": "Owatonna", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.08385000", + "longitude": "-93.22604000" + }, + { + "id": "123850", + "name": "Park Rapids", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.92218000", + "longitude": "-95.05863000" + }, + { + "id": "123866", + "name": "Parkers Prairie", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.15302000", + "longitude": "-95.32892000" + }, + { + "id": "123880", + "name": "Parkville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.53104000", + "longitude": "-92.57907000" + }, + { + "id": "123947", + "name": "Paynesville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.38052000", + "longitude": "-94.71195000" + }, + { + "id": "123996", + "name": "Pelican Rapids", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.57079000", + "longitude": "-96.08311000" + }, + { + "id": "124030", + "name": "Pennington County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.06623000", + "longitude": "-96.03667000" + }, + { + "id": "124056", + "name": "Pequot Lakes", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.60302000", + "longitude": "-94.30944000" + }, + { + "id": "124059", + "name": "Perham", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.59440000", + "longitude": "-95.57254000" + }, + { + "id": "124181", + "name": "Pierz", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.98163000", + "longitude": "-94.10471000" + }, + { + "id": "124218", + "name": "Pine City", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.82607000", + "longitude": "-92.96854000" + }, + { + "id": "124219", + "name": "Pine County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.12077000", + "longitude": "-92.74127000" + }, + { + "id": "124228", + "name": "Pine Island", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.20135000", + "longitude": "-92.64630000" + }, + { + "id": "124277", + "name": "Pipestone", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.00053000", + "longitude": "-96.31753000" + }, + { + "id": "124278", + "name": "Pipestone County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.02300000", + "longitude": "-96.25864000" + }, + { + "id": "124328", + "name": "Plainview", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.16497000", + "longitude": "-92.17156000" + }, + { + "id": "124405", + "name": "Plymouth", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.01052000", + "longitude": "-93.45551000" + }, + { + "id": "124448", + "name": "Polk County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.77385000", + "longitude": "-96.40181000" + }, + { + "id": "124483", + "name": "Pope County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.58602000", + "longitude": "-95.44448000" + }, + { + "id": "124656", + "name": "Preston", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67024000", + "longitude": "-92.08322000" + }, + { + "id": "124688", + "name": "Princeton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.56997000", + "longitude": "-93.58163000" + }, + { + "id": "124698", + "name": "Prior Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.71330000", + "longitude": "-93.42273000" + }, + { + "id": "124700", + "name": "Proctor", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.74716000", + "longitude": "-92.22547000" + }, + { + "id": "124841", + "name": "Ramsey", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.26110000", + "longitude": "-93.45000000" + }, + { + "id": "124843", + "name": "Ramsey County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.01706000", + "longitude": "-93.09961000" + }, + { + "id": "124949", + "name": "Red Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.87635000", + "longitude": "-95.01694000" + }, + { + "id": "124950", + "name": "Red Lake County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.87169000", + "longitude": "-96.09530000" + }, + { + "id": "124951", + "name": "Red Lake Falls", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.88219000", + "longitude": "-96.27421000" + }, + { + "id": "124963", + "name": "Red Wing", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.56247000", + "longitude": "-92.53380000" + }, + { + "id": "124965", + "name": "Redby", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.87857000", + "longitude": "-94.91305000" + }, + { + "id": "124987", + "name": "Redwood County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.40366000", + "longitude": "-95.25383000" + }, + { + "id": "124988", + "name": "Redwood Falls", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.53940000", + "longitude": "-95.11694000" + }, + { + "id": "125027", + "name": "Renville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.78913000", + "longitude": "-95.21167000" + }, + { + "id": "125028", + "name": "Renville County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.72681000", + "longitude": "-94.94714000" + }, + { + "id": "125052", + "name": "Rice", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.75191000", + "longitude": "-94.22027000" + }, + { + "id": "125054", + "name": "Rice County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.35426000", + "longitude": "-93.29668000" + }, + { + "id": "125061", + "name": "Richfield", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.88330000", + "longitude": "-93.28300000" + }, + { + "id": "125094", + "name": "Richmond", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.45413000", + "longitude": "-94.51833000" + }, + { + "id": "125236", + "name": "Robbinsdale", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.03219000", + "longitude": "-93.33856000" + }, + { + "id": "125266", + "name": "Rochester", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.02163000", + "longitude": "-92.46990000" + }, + { + "id": "125272", + "name": "Rock County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.67463000", + "longitude": "-96.25321000" + }, + { + "id": "125276", + "name": "Rock Creek", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.75746000", + "longitude": "-92.96243000" + }, + { + "id": "125302", + "name": "Rockford", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.08830000", + "longitude": "-93.73441000" + }, + { + "id": "125324", + "name": "Rockville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.47191000", + "longitude": "-94.34083000" + }, + { + "id": "125350", + "name": "Rogers", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.18885000", + "longitude": "-93.55301000" + }, + { + "id": "125407", + "name": "Roseau", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.84609000", + "longitude": "-95.76277000" + }, + { + "id": "125408", + "name": "Roseau County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.77514000", + "longitude": "-95.81082000" + }, + { + "id": "125432", + "name": "Rosemount", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.73941000", + "longitude": "-93.12577000" + }, + { + "id": "125440", + "name": "Roseville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.00608000", + "longitude": "-93.15661000" + }, + { + "id": "125496", + "name": "Royalton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.82997000", + "longitude": "-94.29361000" + }, + { + "id": "125519", + "name": "Rush City", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.68551000", + "longitude": "-92.96549000" + }, + { + "id": "125523", + "name": "Rushford", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.80830000", + "longitude": "-91.75293000" + }, + { + "id": "125601", + "name": "Saint Anthony", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.02052000", + "longitude": "-93.21800000" + }, + { + "id": "125603", + "name": "Saint Augusta", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.45830000", + "longitude": "-94.19804000" + }, + { + "id": "125610", + "name": "Saint Bonifacius", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.90552000", + "longitude": "-93.74746000" + }, + { + "id": "125615", + "name": "Saint Charles", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.96941000", + "longitude": "-92.06433000" + }, + { + "id": "125627", + "name": "Saint Cloud", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.56080000", + "longitude": "-94.16249000" + }, + { + "id": "125633", + "name": "Saint Francis", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.38691000", + "longitude": "-93.35940000" + }, + { + "id": "125655", + "name": "Saint James", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.98246000", + "longitude": "-94.62692000" + }, + { + "id": "125674", + "name": "Saint Joseph", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.56496000", + "longitude": "-94.31833000" + }, + { + "id": "125682", + "name": "Saint Louis County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.58986000", + "longitude": "-92.46147000" + }, + { + "id": "125683", + "name": "Saint Louis Park", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.94830000", + "longitude": "-93.34801000" + }, + { + "id": "125697", + "name": "Saint Michael", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.20996000", + "longitude": "-93.66496000" + }, + { + "id": "125703", + "name": "Saint Paul", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.94441000", + "longitude": "-93.09327000" + }, + { + "id": "125705", + "name": "Saint Paul Park", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.84219000", + "longitude": "-92.99132000" + }, + { + "id": "125708", + "name": "Saint Peter", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.32358000", + "longitude": "-93.95801000" + }, + { + "id": "125874", + "name": "Sandstone", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.13106000", + "longitude": "-92.86742000" + }, + { + "id": "125953", + "name": "Sartell", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.62163000", + "longitude": "-94.20694000" + }, + { + "id": "125962", + "name": "Sauk Centre", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.73747000", + "longitude": "-94.95252000" + }, + { + "id": "125965", + "name": "Sauk Rapids", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.59191000", + "longitude": "-94.16610000" + }, + { + "id": "125972", + "name": "Savage", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.77913000", + "longitude": "-93.33634000" + }, + { + "id": "125995", + "name": "Scandia", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.25358000", + "longitude": "-92.80577000" + }, + { + "id": "126052", + "name": "Scott County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.64846000", + "longitude": "-93.53593000" + }, + { + "id": "126209", + "name": "Shafer", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.38691000", + "longitude": "-92.74771000" + }, + { + "id": "126211", + "name": "Shakopee", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.79802000", + "longitude": "-93.52690000" + }, + { + "id": "126314", + "name": "Sherburn", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.65218000", + "longitude": "-94.72692000" + }, + { + "id": "126316", + "name": "Sherburne County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.44395000", + "longitude": "-93.77459000" + }, + { + "id": "126369", + "name": "Shoreview", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.07913000", + "longitude": "-93.14717000" + }, + { + "id": "126371", + "name": "Shorewood", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.90080000", + "longitude": "-93.58912000" + }, + { + "id": "126392", + "name": "Sibley County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.57948000", + "longitude": "-94.23216000" + }, + { + "id": "126420", + "name": "Silver Bay", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.29436000", + "longitude": "-91.25739000" + }, + { + "id": "126495", + "name": "Slayton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.98774000", + "longitude": "-95.75585000" + }, + { + "id": "126496", + "name": "Sleepy Eye", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.29718000", + "longitude": "-94.72415000" + }, + { + "id": "126721", + "name": "South Saint Paul", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.89274000", + "longitude": "-93.03494000" + }, + { + "id": "126834", + "name": "Spicer", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.23302000", + "longitude": "-94.94001000" + }, + { + "id": "126859", + "name": "Spring Grove", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.56108000", + "longitude": "-91.63598000" + }, + { + "id": "126869", + "name": "Spring Lake Park", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.10774000", + "longitude": "-93.23800000" + }, + { + "id": "126871", + "name": "Spring Park", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.93524000", + "longitude": "-93.63218000" + }, + { + "id": "126876", + "name": "Spring Valley", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.68691000", + "longitude": "-92.38906000" + }, + { + "id": "126902", + "name": "Springfield", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.23885000", + "longitude": "-94.97582000" + }, + { + "id": "126931", + "name": "Stacy", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.39802000", + "longitude": "-92.98744000" + }, + { + "id": "126975", + "name": "Staples", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.35552000", + "longitude": "-94.79224000" + }, + { + "id": "126983", + "name": "Starbuck", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.61440000", + "longitude": "-95.53115000" + }, + { + "id": "127005", + "name": "Stearns County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.55215000", + "longitude": "-94.61302000" + }, + { + "id": "127010", + "name": "Steele County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.02234000", + "longitude": "-93.22604000" + }, + { + "id": "127040", + "name": "Stevens County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.58613000", + "longitude": "-96.00030000" + }, + { + "id": "127055", + "name": "Stewartville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.85552000", + "longitude": "-92.48851000" + }, + { + "id": "127061", + "name": "Stillwater", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.05636000", + "longitude": "-92.80604000" + }, + { + "id": "127345", + "name": "Swift County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.28271000", + "longitude": "-95.68143000" + }, + { + "id": "127462", + "name": "Taylors Falls", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.40191000", + "longitude": "-92.65243000" + }, + { + "id": "127574", + "name": "Thief River Falls", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.11914000", + "longitude": "-96.18115000" + }, + { + "id": "127693", + "name": "Todd County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.07062000", + "longitude": "-94.89760000" + }, + { + "id": "127720", + "name": "Tonka Bay", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.90857000", + "longitude": "-93.59301000" + }, + { + "id": "127770", + "name": "Tracy", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.23329000", + "longitude": "-95.61918000" + }, + { + "id": "127785", + "name": "Traverse County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.77218000", + "longitude": "-96.47164000" + }, + { + "id": "127855", + "name": "Truman", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.82773000", + "longitude": "-94.43719000" + }, + { + "id": "127935", + "name": "Two Harbors", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.02271000", + "longitude": "-91.67073000" + }, + { + "id": "127941", + "name": "Tyler", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.27830000", + "longitude": "-96.13475000" + }, + { + "id": "128073", + "name": "Vadnais Heights", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.05747000", + "longitude": "-93.07383000" + }, + { + "id": "128222", + "name": "Victoria", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.85857000", + "longitude": "-93.66163000" + }, + { + "id": "128271", + "name": "Vineland", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.16357000", + "longitude": "-93.75747000" + }, + { + "id": "128287", + "name": "Virginia", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.52326000", + "longitude": "-92.53657000" + }, + { + "id": "128312", + "name": "Wabasha", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.38386000", + "longitude": "-92.03294000" + }, + { + "id": "128313", + "name": "Wabasha County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.28428000", + "longitude": "-92.23027000" + }, + { + "id": "128317", + "name": "Waconia", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.85080000", + "longitude": "-93.78691000" + }, + { + "id": "128321", + "name": "Wadena", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.44246000", + "longitude": "-95.13614000" + }, + { + "id": "128322", + "name": "Wadena County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.58576000", + "longitude": "-94.96941000" + }, + { + "id": "128353", + "name": "Waite Park", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.55719000", + "longitude": "-94.22416000" + }, + { + "id": "128385", + "name": "Walker", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "47.10135000", + "longitude": "-94.58722000" + }, + { + "id": "128448", + "name": "Wanamingo", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.30441000", + "longitude": "-92.79047000" + }, + { + "id": "128482", + "name": "Warren", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.19664000", + "longitude": "-96.77284000" + }, + { + "id": "128514", + "name": "Warroad", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "48.90527000", + "longitude": "-95.31440000" + }, + { + "id": "128530", + "name": "Waseca", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.07774000", + "longitude": "-93.50744000" + }, + { + "id": "128531", + "name": "Waseca County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.02212000", + "longitude": "-93.58728000" + }, + { + "id": "128570", + "name": "Washington County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.03873000", + "longitude": "-92.88396000" + }, + { + "id": "128622", + "name": "Watertown", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.96357000", + "longitude": "-93.84719000" + }, + { + "id": "128627", + "name": "Waterville", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.21885000", + "longitude": "-93.56800000" + }, + { + "id": "128637", + "name": "Watonwan County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.97843000", + "longitude": "-94.61406000" + }, + { + "id": "128670", + "name": "Waverly", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.06663000", + "longitude": "-93.96636000" + }, + { + "id": "128713", + "name": "Wayzata", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.97413000", + "longitude": "-93.50662000" + }, + { + "id": "128782", + "name": "Wells", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.74607000", + "longitude": "-93.72884000" + }, + { + "id": "128852", + "name": "West Coon Rapids", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.15969000", + "longitude": "-93.34967000" + }, + { + "id": "128972", + "name": "West Saint Paul", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.91608000", + "longitude": "-93.10161000" + }, + { + "id": "129114", + "name": "Wheaton", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.80441000", + "longitude": "-96.49923000" + }, + { + "id": "129126", + "name": "White Bear Lake", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.08469000", + "longitude": "-93.00994000" + }, + { + "id": "129248", + "name": "Wilkin County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "46.35708000", + "longitude": "-96.46835000" + }, + { + "id": "129303", + "name": "Willmar", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.12191000", + "longitude": "-95.04334000" + }, + { + "id": "129375", + "name": "Windom", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.86635000", + "longitude": "-95.11694000" + }, + { + "id": "129406", + "name": "Winnebago", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.76773000", + "longitude": "-94.16579000" + }, + { + "id": "129424", + "name": "Winona", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.04996000", + "longitude": "-91.63932000" + }, + { + "id": "129425", + "name": "Winona County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.98685000", + "longitude": "-91.77913000" + }, + { + "id": "129431", + "name": "Winsted", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.96385000", + "longitude": "-94.04747000" + }, + { + "id": "129451", + "name": "Winthrop", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.54302000", + "longitude": "-94.36637000" + }, + { + "id": "129509", + "name": "Woodbury", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.92386000", + "longitude": "-92.95938000" + }, + { + "id": "129598", + "name": "Worthington", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "43.61996000", + "longitude": "-95.59640000" + }, + { + "id": "129610", + "name": "Wright County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.17393000", + "longitude": "-93.96305000" + }, + { + "id": "129637", + "name": "Wyoming", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.33636000", + "longitude": "-92.99716000" + }, + { + "id": "129678", + "name": "Yellow Medicine County", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.71625000", + "longitude": "-95.86836000" + }, + { + "id": "129713", + "name": "Young America (historical)", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.78274000", + "longitude": "-93.91358000" + }, + { + "id": "129756", + "name": "Zimmerman", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "45.44330000", + "longitude": "-93.58996000" + }, + { + "id": "129761", + "name": "Zumbrota", + "state_id": 1420, + "state_code": "MN", + "country_id": 233, + "country_code": "US", + "latitude": "44.29413000", + "longitude": "-92.66908000" + }, + { + "id": "110974", + "name": "Aberdeen", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.82511000", + "longitude": "-88.54366000" + }, + { + "id": "110996", + "name": "Ackerman", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.31012000", + "longitude": "-89.17284000" + }, + { + "id": "111018", + "name": "Adams County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.48294000", + "longitude": "-91.35350000" + }, + { + "id": "111134", + "name": "Alcorn County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.88077000", + "longitude": "-88.58026000" + }, + { + "id": "111289", + "name": "Amite County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.17440000", + "longitude": "-90.80443000" + }, + { + "id": "111294", + "name": "Amory", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.98428000", + "longitude": "-88.48810000" + }, + { + "id": "111489", + "name": "Arnold Line", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.33517000", + "longitude": "-89.37340000" + }, + { + "id": "111530", + "name": "Ashland", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.83287000", + "longitude": "-89.17590000" + }, + { + "id": "111607", + "name": "Attala County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.08629000", + "longitude": "-89.58155000" + }, + { + "id": "111766", + "name": "Baldwyn", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.50954000", + "longitude": "-88.63533000" + }, + { + "id": "111894", + "name": "Batesville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.31150000", + "longitude": "-89.94426000" + }, + { + "id": "111933", + "name": "Bay Saint Louis", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.30881000", + "longitude": "-89.33005000" + }, + { + "id": "111935", + "name": "Bay Springs", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.97904000", + "longitude": "-89.28728000" + }, + { + "id": "112041", + "name": "Beechwood", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.32765000", + "longitude": "-90.82677000" + }, + { + "id": "112135", + "name": "Belmont", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.50982000", + "longitude": "-88.20921000" + }, + { + "id": "112158", + "name": "Belzoni", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.18429000", + "longitude": "-90.48926000" + }, + { + "id": "112201", + "name": "Benton County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.81729000", + "longitude": "-89.18848000" + }, + { + "id": "112347", + "name": "Biloxi", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.39603000", + "longitude": "-88.88531000" + }, + { + "id": "112521", + "name": "Bolivar County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.79554000", + "longitude": "-90.88040000" + }, + { + "id": "112564", + "name": "Booneville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.65815000", + "longitude": "-88.56672000" + }, + { + "id": "112689", + "name": "Brandon", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.27320000", + "longitude": "-89.98592000" + }, + { + "id": "112857", + "name": "Brookhaven", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.57906000", + "longitude": "-90.44065000" + }, + { + "id": "112892", + "name": "Brooksville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.23457000", + "longitude": "-88.58227000" + }, + { + "id": "112942", + "name": "Bruce", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.99206000", + "longitude": "-89.34896000" + }, + { + "id": "112995", + "name": "Bude", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.46295000", + "longitude": "-90.85010000" + }, + { + "id": "113135", + "name": "Byhalia", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.87232000", + "longitude": "-89.69064000" + }, + { + "id": "113139", + "name": "Byram", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.17932000", + "longitude": "-90.24537000" + }, + { + "id": "113188", + "name": "Caledonia", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.68289000", + "longitude": "-88.32448000" + }, + { + "id": "113199", + "name": "Calhoun City", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.85539000", + "longitude": "-89.31146000" + }, + { + "id": "113205", + "name": "Calhoun County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.93645000", + "longitude": "-89.33645000" + }, + { + "id": "113340", + "name": "Canton", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.61264000", + "longitude": "-90.03675000" + }, + { + "id": "113445", + "name": "Carriere", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.61686000", + "longitude": "-89.65256000" + }, + { + "id": "113455", + "name": "Carroll County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.44853000", + "longitude": "-89.92020000" + }, + { + "id": "113468", + "name": "Carrollton", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.50818000", + "longitude": "-89.92036000" + }, + { + "id": "113492", + "name": "Carthage", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.73264000", + "longitude": "-89.53618000" + }, + { + "id": "113694", + "name": "Centreville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.08962000", + "longitude": "-91.06844000" + }, + { + "id": "113764", + "name": "Charleston", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.00678000", + "longitude": "-90.05676000" + }, + { + "id": "113939", + "name": "Chickasaw County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.92080000", + "longitude": "-88.94786000" + }, + { + "id": "113987", + "name": "Choctaw County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.34731000", + "longitude": "-89.24838000" + }, + { + "id": "114093", + "name": "Claiborne County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.97369000", + "longitude": "-90.91181000" + }, + { + "id": "114136", + "name": "Clarke County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.04140000", + "longitude": "-88.68940000" + }, + { + "id": "114145", + "name": "Clarksdale", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.20011000", + "longitude": "-90.57093000" + }, + { + "id": "114182", + "name": "Clay County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.65567000", + "longitude": "-88.78157000" + }, + { + "id": "114228", + "name": "Cleary", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.16543000", + "longitude": "-90.18064000" + }, + { + "id": "114243", + "name": "Cleveland", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.74400000", + "longitude": "-90.72482000" + }, + { + "id": "114274", + "name": "Clinton", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.34153000", + "longitude": "-90.32176000" + }, + { + "id": "114325", + "name": "Coahoma County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.22917000", + "longitude": "-90.60269000" + }, + { + "id": "114393", + "name": "Coldwater", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.69177000", + "longitude": "-89.97731000" + }, + { + "id": "114431", + "name": "Collins", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.64544000", + "longitude": "-89.55535000" + }, + { + "id": "114435", + "name": "Collinsville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.49792000", + "longitude": "-88.84588000" + }, + { + "id": "114469", + "name": "Columbia", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.25184000", + "longitude": "-89.83758000" + }, + { + "id": "114494", + "name": "Columbus", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.49567000", + "longitude": "-88.42726000" + }, + { + "id": "114501", + "name": "Columbus Air Force Base", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.63239000", + "longitude": "-88.45153000" + }, + { + "id": "114527", + "name": "Como", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.51066000", + "longitude": "-89.93981000" + }, + { + "id": "114551", + "name": "Conehatta", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.45125000", + "longitude": "-89.28534000" + }, + { + "id": "114617", + "name": "Copiah County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.86924000", + "longitude": "-90.44880000" + }, + { + "id": "114643", + "name": "Corinth", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.93425000", + "longitude": "-88.52227000" + }, + { + "id": "114743", + "name": "Covington County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.63322000", + "longitude": "-89.55263000" + }, + { + "id": "114884", + "name": "Crystal Springs", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.98738000", + "longitude": "-90.35704000" + }, + { + "id": "114961", + "name": "D'Iberville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.42631000", + "longitude": "-88.89086000" + }, + { + "id": "115106", + "name": "De Kalb", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.76763000", + "longitude": "-88.65088000" + }, + { + "id": "115111", + "name": "De Lisle", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.37936000", + "longitude": "-89.26449000" + }, + { + "id": "115119", + "name": "De Soto County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.87540000", + "longitude": "-89.99178000" + }, + { + "id": "115153", + "name": "Decatur", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.43903000", + "longitude": "-89.10839000" + }, + { + "id": "115263", + "name": "Derma", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.85567000", + "longitude": "-89.28452000" + }, + { + "id": "115317", + "name": "Diamondhead", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.39464000", + "longitude": "-89.36394000" + }, + { + "id": "115473", + "name": "Drew", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.80956000", + "longitude": "-90.52648000" + }, + { + "id": "115504", + "name": "Duck Hill", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.63318000", + "longitude": "-89.71119000" + }, + { + "id": "115566", + "name": "Durant", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.07513000", + "longitude": "-89.85453000" + }, + { + "id": "115886", + "name": "Edwards", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.33015000", + "longitude": "-90.60565000" + }, + { + "id": "116035", + "name": "Ellisville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.60405000", + "longitude": "-89.19561000" + }, + { + "id": "116182", + "name": "Escatawpa", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.44048000", + "longitude": "-88.54363000" + }, + { + "id": "116231", + "name": "Eupora", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.54068000", + "longitude": "-89.26701000" + }, + { + "id": "116414", + "name": "Farmington", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.93009000", + "longitude": "-88.45227000" + }, + { + "id": "116440", + "name": "Fayette", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.71155000", + "longitude": "-91.06066000" + }, + { + "id": "116571", + "name": "Flora", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.54320000", + "longitude": "-90.30926000" + }, + { + "id": "116579", + "name": "Florence", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.15348000", + "longitude": "-90.13120000" + }, + { + "id": "116604", + "name": "Flowood", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.30959000", + "longitude": "-90.13898000" + }, + { + "id": "116643", + "name": "Forest", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.36459000", + "longitude": "-89.47423000" + }, + { + "id": "116680", + "name": "Forrest County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.18887000", + "longitude": "-89.25786000" + }, + { + "id": "116852", + "name": "Franklin County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.47715000", + "longitude": "-90.89785000" + }, + { + "id": "116942", + "name": "Friars Point", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.37088000", + "longitude": "-90.63834000" + }, + { + "id": "116988", + "name": "Fulton", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.27399000", + "longitude": "-88.40921000" + }, + { + "id": "117126", + "name": "Gautier", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.38575000", + "longitude": "-88.61169000" + }, + { + "id": "117153", + "name": "George County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.86261000", + "longitude": "-88.64403000" + }, + { + "id": "117281", + "name": "Glendale", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.36462000", + "longitude": "-89.30617000" + }, + { + "id": "117388", + "name": "Goodman", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.97013000", + "longitude": "-89.91231000" + }, + { + "id": "117637", + "name": "Greene County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.21422000", + "longitude": "-88.63916000" + }, + { + "id": "117686", + "name": "Greenville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.40898000", + "longitude": "-91.05978000" + }, + { + "id": "117705", + "name": "Greenwood", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.51623000", + "longitude": "-90.17953000" + }, + { + "id": "117720", + "name": "Grenada", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.76900000", + "longitude": "-89.80842000" + }, + { + "id": "117721", + "name": "Grenada County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.76995000", + "longitude": "-89.80201000" + }, + { + "id": "117793", + "name": "Gulf Hills", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.43048000", + "longitude": "-88.84225000" + }, + { + "id": "117794", + "name": "Gulf Park Estates", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.39187000", + "longitude": "-88.76114000" + }, + { + "id": "117797", + "name": "Gulfport", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.36742000", + "longitude": "-89.09282000" + }, + { + "id": "117807", + "name": "Guntown", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.44316000", + "longitude": "-88.65978000" + }, + { + "id": "117953", + "name": "Hancock County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.39378000", + "longitude": "-89.47456000" + }, + { + "id": "118064", + "name": "Harrison County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.41605000", + "longitude": "-89.08164000" + }, + { + "id": "118140", + "name": "Hattiesburg", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.32712000", + "longitude": "-89.29034000" + }, + { + "id": "118212", + "name": "Hazlehurst", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.86044000", + "longitude": "-90.39593000" + }, + { + "id": "118249", + "name": "Helena", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.49464000", + "longitude": "-88.49585000" + }, + { + "id": "118333", + "name": "Hernando", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.82399000", + "longitude": "-89.99370000" + }, + { + "id": "118368", + "name": "Hickory Hills", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.45687000", + "longitude": "-88.63919000" + }, + { + "id": "118381", + "name": "Hide-A-Way Lake", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.56492000", + "longitude": "-89.64020000" + }, + { + "id": "118448", + "name": "Hillsboro", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.45931000", + "longitude": "-89.51146000" + }, + { + "id": "118479", + "name": "Hinds County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.26670000", + "longitude": "-90.44282000" + }, + { + "id": "118541", + "name": "Hollandale", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.16901000", + "longitude": "-90.85399000" + }, + { + "id": "118563", + "name": "Holly Springs", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.76760000", + "longitude": "-89.44869000" + }, + { + "id": "118572", + "name": "Holmes County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.12351000", + "longitude": "-90.09205000" + }, + { + "id": "118666", + "name": "Horn Lake", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.95537000", + "longitude": "-90.03481000" + }, + { + "id": "118698", + "name": "Houston", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.89845000", + "longitude": "-88.99923000" + }, + { + "id": "118784", + "name": "Humphreys County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.12870000", + "longitude": "-90.52662000" + }, + { + "id": "118819", + "name": "Hurley", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.66103000", + "longitude": "-88.49418000" + }, + { + "id": "118925", + "name": "Indianola", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.45095000", + "longitude": "-90.65509000" + }, + { + "id": "119037", + "name": "Issaquena County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.74139000", + "longitude": "-90.98921000" + }, + { + "id": "119042", + "name": "Itawamba County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.27999000", + "longitude": "-88.36132000" + }, + { + "id": "119045", + "name": "Itta Bena", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.49512000", + "longitude": "-90.31981000" + }, + { + "id": "119046", + "name": "Iuka", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.81176000", + "longitude": "-88.19004000" + }, + { + "id": "119065", + "name": "Jackson", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.29876000", + "longitude": "-90.18481000" + }, + { + "id": "119084", + "name": "Jackson County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.46289000", + "longitude": "-88.62284000" + }, + { + "id": "119148", + "name": "Jasper County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.01911000", + "longitude": "-89.11886000" + }, + { + "id": "119184", + "name": "Jefferson County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.73421000", + "longitude": "-91.03718000" + }, + { + "id": "119199", + "name": "Jefferson Davis County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.56964000", + "longitude": "-89.82300000" + }, + { + "id": "119293", + "name": "Jones County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.62256000", + "longitude": "-89.16879000" + }, + { + "id": "119306", + "name": "Jonestown", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.31955000", + "longitude": "-90.45565000" + }, + { + "id": "119410", + "name": "Kearney Park", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.58903000", + "longitude": "-90.31537000" + }, + { + "id": "119437", + "name": "Kemper County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.75456000", + "longitude": "-88.64116000" + }, + { + "id": "119564", + "name": "Kiln", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.40908000", + "longitude": "-89.43505000" + }, + { + "id": "119709", + "name": "Kosciusko", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.05800000", + "longitude": "-89.58956000" + }, + { + "id": "119841", + "name": "Lafayette County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.35675000", + "longitude": "-89.48492000" + }, + { + "id": "120063", + "name": "Lamar County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.20587000", + "longitude": "-89.50869000" + }, + { + "id": "120067", + "name": "Lambert", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.20178000", + "longitude": "-90.28343000" + }, + { + "id": "120172", + "name": "Latimer", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.53464000", + "longitude": "-88.86670000" + }, + { + "id": "120180", + "name": "Lauderdale County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.40429000", + "longitude": "-88.66254000" + }, + { + "id": "120190", + "name": "Laurel", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.69405000", + "longitude": "-89.13061000" + }, + { + "id": "120235", + "name": "Lawrence County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.55020000", + "longitude": "-90.10699000" + }, + { + "id": "120275", + "name": "Leake County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.75353000", + "longitude": "-89.52406000" + }, + { + "id": "120276", + "name": "Leakesville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.15574000", + "longitude": "-88.55780000" + }, + { + "id": "120311", + "name": "Lee County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.28989000", + "longitude": "-88.68042000" + }, + { + "id": "120331", + "name": "Leflore County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.55052000", + "longitude": "-90.30106000" + }, + { + "id": "120349", + "name": "Leland", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.40539000", + "longitude": "-90.89760000" + }, + { + "id": "120441", + "name": "Lexington", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.11318000", + "longitude": "-90.05314000" + }, + { + "id": "120463", + "name": "Liberty", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.15823000", + "longitude": "-90.81232000" + }, + { + "id": "120521", + "name": "Lincoln County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.53239000", + "longitude": "-90.45400000" + }, + { + "id": "120735", + "name": "Long Beach", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.35048000", + "longitude": "-89.15282000" + }, + { + "id": "120814", + "name": "Louisville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.12374000", + "longitude": "-89.05506000" + }, + { + "id": "120848", + "name": "Lowndes County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.47291000", + "longitude": "-88.44331000" + }, + { + "id": "120864", + "name": "Lucedale", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.92519000", + "longitude": "-88.59002000" + }, + { + "id": "120879", + "name": "Lumberton", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.00129000", + "longitude": "-89.45229000" + }, + { + "id": "120908", + "name": "Lyman", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.49474000", + "longitude": "-89.12561000" + }, + { + "id": "120914", + "name": "Lynchburg", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.96232000", + "longitude": "-90.09593000" + }, + { + "id": "120966", + "name": "Macon", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.10540000", + "longitude": "-88.56088000" + }, + { + "id": "120989", + "name": "Madison", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.46181000", + "longitude": "-90.11536000" + }, + { + "id": "121009", + "name": "Madison County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.63466000", + "longitude": "-90.03376000" + }, + { + "id": "121032", + "name": "Magee", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.87377000", + "longitude": "-89.73369000" + }, + { + "id": "121036", + "name": "Magnolia", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.14323000", + "longitude": "-90.45871000" + }, + { + "id": "121153", + "name": "Mantachie", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.32427000", + "longitude": "-88.49116000" + }, + { + "id": "121237", + "name": "Marion", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.41736000", + "longitude": "-88.64782000" + }, + { + "id": "121256", + "name": "Marion County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.23082000", + "longitude": "-89.82244000" + }, + { + "id": "121272", + "name": "Marks", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.25683000", + "longitude": "-90.27298000" + }, + { + "id": "121313", + "name": "Marshall County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.76225000", + "longitude": "-89.50305000" + }, + { + "id": "121434", + "name": "Mayersville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.90207000", + "longitude": "-91.05122000" + }, + { + "id": "121474", + "name": "McComb", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.24379000", + "longitude": "-90.45315000" + }, + { + "id": "121574", + "name": "Meadville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.47239000", + "longitude": "-90.89677000" + }, + { + "id": "121650", + "name": "Mendenhall", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.96182000", + "longitude": "-89.87008000" + }, + { + "id": "121690", + "name": "Meridian", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.36431000", + "longitude": "-88.70366000" + }, + { + "id": "121697", + "name": "Meridian Station", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.55049000", + "longitude": "-88.61849000" + }, + { + "id": "121732", + "name": "Metcalfe", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.45400000", + "longitude": "-91.00733000" + }, + { + "id": "121830", + "name": "Mikoma", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.95039000", + "longitude": "-90.28398000" + }, + { + "id": "122075", + "name": "Monroe County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.89224000", + "longitude": "-88.48047000" + }, + { + "id": "122147", + "name": "Montgomery County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.49410000", + "longitude": "-89.61640000" + }, + { + "id": "122163", + "name": "Monticello", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.55378000", + "longitude": "-90.10731000" + }, + { + "id": "122211", + "name": "Moorhead", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.45012000", + "longitude": "-90.50564000" + }, + { + "id": "122252", + "name": "Morgantown", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.57267000", + "longitude": "-91.34761000" + }, + { + "id": "122291", + "name": "Morton", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.35376000", + "longitude": "-89.65452000" + }, + { + "id": "122309", + "name": "Moss Point", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.41159000", + "longitude": "-88.53446000" + }, + { + "id": "122319", + "name": "Mound Bayou", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.87817000", + "longitude": "-90.72732000" + }, + { + "id": "122587", + "name": "Natchez", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.56017000", + "longitude": "-91.40329000" + }, + { + "id": "122621", + "name": "Nellieburg", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.40681000", + "longitude": "-88.77727000" + }, + { + "id": "122641", + "name": "Neshoba County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.75350000", + "longitude": "-89.11757000" + }, + { + "id": "122646", + "name": "Nettleton", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.08900000", + "longitude": "-88.62227000" + }, + { + "id": "122655", + "name": "New Albany", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.49427000", + "longitude": "-89.00784000" + }, + { + "id": "122657", + "name": "New Augusta", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.20263000", + "longitude": "-89.03668000" + }, + { + "id": "122724", + "name": "New Hope", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.46817000", + "longitude": "-88.32670000" + }, + { + "id": "122860", + "name": "Newton", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.32126000", + "longitude": "-89.16339000" + }, + { + "id": "122871", + "name": "Newton County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.40023000", + "longitude": "-89.11881000" + }, + { + "id": "122893", + "name": "Nicholson", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.47714000", + "longitude": "-89.69367000" + }, + { + "id": "123116", + "name": "North Tunica", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.70093000", + "longitude": "-90.37815000" + }, + { + "id": "123212", + "name": "Noxubee County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.11011000", + "longitude": "-88.56982000" + }, + { + "id": "123337", + "name": "Ocean Springs", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.41131000", + "longitude": "-88.82781000" + }, + { + "id": "123409", + "name": "Okolona", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.00178000", + "longitude": "-88.75533000" + }, + { + "id": "123410", + "name": "Oktibbeha County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.42495000", + "longitude": "-88.87930000" + }, + { + "id": "123439", + "name": "Olive Branch", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.96176000", + "longitude": "-89.82953000" + }, + { + "id": "123678", + "name": "Oxford", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.36650000", + "longitude": "-89.51925000" + }, + { + "id": "123803", + "name": "Panola County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.36394000", + "longitude": "-89.95057000" + }, + { + "id": "123900", + "name": "Pascagoula", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.36576000", + "longitude": "-88.55613000" + }, + { + "id": "123906", + "name": "Pass Christian", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.31575000", + "longitude": "-89.24754000" + }, + { + "id": "123963", + "name": "Pearl", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.27459000", + "longitude": "-90.13203000" + }, + { + "id": "123967", + "name": "Pearl River", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.78347000", + "longitude": "-89.22784000" + }, + { + "id": "123969", + "name": "Pearl River County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.76858000", + "longitude": "-89.58978000" + }, + { + "id": "123971", + "name": "Pearlington", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.24658000", + "longitude": "-89.61117000" + }, + { + "id": "123987", + "name": "Pelahatchie", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.31292000", + "longitude": "-89.79841000" + }, + { + "id": "124080", + "name": "Perry County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.17202000", + "longitude": "-88.99233000" + }, + { + "id": "124100", + "name": "Petal", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.34656000", + "longitude": "-89.26006000" + }, + { + "id": "124125", + "name": "Philadelphia", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.77152000", + "longitude": "-89.11673000" + }, + { + "id": "124153", + "name": "Picayune", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.52556000", + "longitude": "-89.67788000" + }, + { + "id": "124154", + "name": "Pickens", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.88374000", + "longitude": "-89.97147000" + }, + { + "id": "124192", + "name": "Pike County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.17491000", + "longitude": "-90.40416000" + }, + { + "id": "124290", + "name": "Pittsboro", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.94039000", + "longitude": "-89.33757000" + }, + { + "id": "124348", + "name": "Plantersville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.21344000", + "longitude": "-88.66450000" + }, + { + "id": "124476", + "name": "Pontotoc", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.24788000", + "longitude": "-88.99867000" + }, + { + "id": "124477", + "name": "Pontotoc County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.22544000", + "longitude": "-89.03741000" + }, + { + "id": "124487", + "name": "Poplarville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.84019000", + "longitude": "-89.53423000" + }, + { + "id": "124507", + "name": "Port Gibson", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.96099000", + "longitude": "-90.98399000" + }, + { + "id": "124640", + "name": "Prentiss", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.59850000", + "longitude": "-89.86702000" + }, + { + "id": "124641", + "name": "Prentiss County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.61829000", + "longitude": "-88.52010000" + }, + { + "id": "124758", + "name": "Purvis", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.14324000", + "longitude": "-89.40979000" + }, + { + "id": "124806", + "name": "Quitman", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.04015000", + "longitude": "-88.72810000" + }, + { + "id": "124809", + "name": "Quitman County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.25141000", + "longitude": "-90.28912000" + }, + { + "id": "124830", + "name": "Raleigh", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.03349000", + "longitude": "-89.52229000" + }, + { + "id": "124885", + "name": "Rankin County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.26412000", + "longitude": "-89.94580000" + }, + { + "id": "124914", + "name": "Rawls Springs", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.38073000", + "longitude": "-89.37145000" + }, + { + "id": "124917", + "name": "Raymond", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.25931000", + "longitude": "-90.42260000" + }, + { + "id": "125069", + "name": "Richland", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.23904000", + "longitude": "-90.15842000" + }, + { + "id": "125107", + "name": "Richton", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.34934000", + "longitude": "-88.94005000" + }, + { + "id": "125123", + "name": "Ridgeland", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.42848000", + "longitude": "-90.13231000" + }, + { + "id": "125162", + "name": "Ripley", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.72982000", + "longitude": "-88.95062000" + }, + { + "id": "125365", + "name": "Rolling Fork", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.90652000", + "longitude": "-90.87816000" + }, + { + "id": "125417", + "name": "Rosedale", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.85344000", + "longitude": "-91.02789000" + }, + { + "id": "125506", + "name": "Ruleville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.72595000", + "longitude": "-90.55148000" + }, + { + "id": "125686", + "name": "Saint Martin", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.43798000", + "longitude": "-88.86809000" + }, + { + "id": "125769", + "name": "Saltillo", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.37649000", + "longitude": "-88.68172000" + }, + { + "id": "125948", + "name": "Sardis", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.43705000", + "longitude": "-89.91592000" + }, + { + "id": "125958", + "name": "Saucier", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.63575000", + "longitude": "-89.13504000" + }, + { + "id": "126048", + "name": "Scott County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.40638000", + "longitude": "-89.53764000" + }, + { + "id": "126153", + "name": "Senatobia", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.61760000", + "longitude": "-89.96870000" + }, + { + "id": "126219", + "name": "Shannon", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.11622000", + "longitude": "-88.71172000" + }, + { + "id": "126226", + "name": "Sharkey County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.87972000", + "longitude": "-90.81321000" + }, + { + "id": "126227", + "name": "Sharon", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.78960000", + "longitude": "-89.09867000" + }, + { + "id": "126245", + "name": "Shaw", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.60211000", + "longitude": "-90.77458000" + }, + { + "id": "126269", + "name": "Shelby", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.95094000", + "longitude": "-90.76788000" + }, + { + "id": "126450", + "name": "Simpson County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.91317000", + "longitude": "-89.91949000" + }, + { + "id": "126513", + "name": "Smith County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.01769000", + "longitude": "-89.50668000" + }, + { + "id": "126760", + "name": "Southaven", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.98898000", + "longitude": "-90.01259000" + }, + { + "id": "126989", + "name": "Starkville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.45049000", + "longitude": "-88.81961000" + }, + { + "id": "127082", + "name": "Stone County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.78995000", + "longitude": "-89.11771000" + }, + { + "id": "127092", + "name": "Stonewall", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.13181000", + "longitude": "-88.79338000" + }, + { + "id": "127211", + "name": "Summit", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.28379000", + "longitude": "-90.46843000" + }, + { + "id": "127226", + "name": "Sumrall", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.41739000", + "longitude": "-89.54229000" + }, + { + "id": "127251", + "name": "Sunflower", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.54290000", + "longitude": "-90.53703000" + }, + { + "id": "127252", + "name": "Sunflower County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.60231000", + "longitude": "-90.58862000" + }, + { + "id": "127392", + "name": "Tallahatchie County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.95047000", + "longitude": "-90.17326000" + }, + { + "id": "127438", + "name": "Tate County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.65032000", + "longitude": "-89.94478000" + }, + { + "id": "127464", + "name": "Taylorsville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.82960000", + "longitude": "-89.42812000" + }, + { + "id": "127472", + "name": "Tchula", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.18290000", + "longitude": "-90.22286000" + }, + { + "id": "127530", + "name": "Terry", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.09626000", + "longitude": "-90.29426000" + }, + { + "id": "127672", + "name": "Tippah County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.76840000", + "longitude": "-88.90890000" + }, + { + "id": "127683", + "name": "Tishomingo County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.74043000", + "longitude": "-88.23932000" + }, + { + "id": "127891", + "name": "Tunica", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.68455000", + "longitude": "-90.38288000" + }, + { + "id": "127892", + "name": "Tunica County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.65194000", + "longitude": "-90.37551000" + }, + { + "id": "127893", + "name": "Tunica Resorts", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.83613000", + "longitude": "-90.34723000" + }, + { + "id": "127897", + "name": "Tupelo", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.25807000", + "longitude": "-88.70464000" + }, + { + "id": "127919", + "name": "Tutwiler", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.01483000", + "longitude": "-90.43176000" + }, + { + "id": "127944", + "name": "Tylertown", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.11601000", + "longitude": "-90.14203000" + }, + { + "id": "127972", + "name": "Union", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.57153000", + "longitude": "-89.12145000" + }, + { + "id": "127994", + "name": "Union County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.49047000", + "longitude": "-89.00386000" + }, + { + "id": "128024", + "name": "University", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.36594000", + "longitude": "-89.52536000" + }, + { + "id": "128143", + "name": "Vancleave", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.54047000", + "longitude": "-88.68752000" + }, + { + "id": "128154", + "name": "Vardaman", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.87567000", + "longitude": "-89.17729000" + }, + { + "id": "128201", + "name": "Verona", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.19427000", + "longitude": "-88.71977000" + }, + { + "id": "128215", + "name": "Vicksburg", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.35265000", + "longitude": "-90.87788000" + }, + { + "id": "128319", + "name": "Wade", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.64242000", + "longitude": "-88.56974000" + }, + { + "id": "128412", + "name": "Walls", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.95824000", + "longitude": "-90.15256000" + }, + { + "id": "128418", + "name": "Walnut Grove", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.59042000", + "longitude": "-89.45840000" + }, + { + "id": "128430", + "name": "Walthall", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.60734000", + "longitude": "-89.27729000" + }, + { + "id": "128431", + "name": "Walthall County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.14842000", + "longitude": "-90.10614000" + }, + { + "id": "128489", + "name": "Warren County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.35723000", + "longitude": "-90.85201000" + }, + { + "id": "128562", + "name": "Washington County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.28370000", + "longitude": "-90.94745000" + }, + { + "id": "128600", + "name": "Water Valley", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.15150000", + "longitude": "-89.63147000" + }, + { + "id": "128664", + "name": "Waveland", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.28686000", + "longitude": "-89.37616000" + }, + { + "id": "128694", + "name": "Wayne County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.64078000", + "longitude": "-88.69580000" + }, + { + "id": "128706", + "name": "Waynesboro", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.67488000", + "longitude": "-88.64615000" + }, + { + "id": "128739", + "name": "Webster County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.61307000", + "longitude": "-89.28482000" + }, + { + "id": "128814", + "name": "Wesson", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.70128000", + "longitude": "-90.39759000" + }, + { + "id": "128882", + "name": "West Gulfport", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.40409000", + "longitude": "-89.09420000" + }, + { + "id": "128886", + "name": "West Hattiesburg", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.31906000", + "longitude": "-89.37506000" + }, + { + "id": "128959", + "name": "West Point", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.60762000", + "longitude": "-88.65033000" + }, + { + "id": "129223", + "name": "Wiggins", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "30.85824000", + "longitude": "-89.13533000" + }, + { + "id": "129251", + "name": "Wilkinson County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.16107000", + "longitude": "-91.31092000" + }, + { + "id": "129422", + "name": "Winona", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.48207000", + "longitude": "-89.72814000" + }, + { + "id": "129435", + "name": "Winston County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "33.08849000", + "longitude": "-89.03443000" + }, + { + "id": "129571", + "name": "Woodville", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "31.10462000", + "longitude": "-91.29956000" + }, + { + "id": "129656", + "name": "Yalobusha County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "34.02821000", + "longitude": "-89.70763000" + }, + { + "id": "129673", + "name": "Yazoo City", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.85513000", + "longitude": "-90.40565000" + }, + { + "id": "129674", + "name": "Yazoo County", + "state_id": 1430, + "state_code": "MS", + "country_id": 233, + "country_code": "US", + "latitude": "32.78031000", + "longitude": "-90.39642000" + }, + { + "id": "111011", + "name": "Adair County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.19056000", + "longitude": "-92.60072000" + }, + { + "id": "111045", + "name": "Adrian", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.39752000", + "longitude": "-94.35162000" + }, + { + "id": "111048", + "name": "Advance", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.10455000", + "longitude": "-89.90953000" + }, + { + "id": "111051", + "name": "Affton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.55061000", + "longitude": "-90.33317000" + }, + { + "id": "111107", + "name": "Albany", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.24861000", + "longitude": "-94.33107000" + }, + { + "id": "111243", + "name": "Alton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.69423000", + "longitude": "-91.39930000" + }, + { + "id": "111310", + "name": "Anderson", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.65063000", + "longitude": "-94.44355000" + }, + { + "id": "111327", + "name": "Andrew County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.98349000", + "longitude": "-94.80205000" + }, + { + "id": "111398", + "name": "Appleton City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.19058000", + "longitude": "-94.02939000" + }, + { + "id": "111433", + "name": "Archie", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.48168000", + "longitude": "-94.35439000" + }, + { + "id": "111484", + "name": "Arnold", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.43283000", + "longitude": "-90.37762000" + }, + { + "id": "111511", + "name": "Ash Grove", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.31533000", + "longitude": "-93.58520000" + }, + { + "id": "111529", + "name": "Ashland", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.77448000", + "longitude": "-92.25713000" + }, + { + "id": "111569", + "name": "Atchison County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.43085000", + "longitude": "-95.42809000" + }, + { + "id": "111637", + "name": "Audrain County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.21576000", + "longitude": "-91.84159000" + }, + { + "id": "111657", + "name": "Aurora", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.97089000", + "longitude": "-93.71798000" + }, + { + "id": "111672", + "name": "Ava", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.95200000", + "longitude": "-92.66045000" + }, + { + "id": "111776", + "name": "Ballwin", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.59505000", + "longitude": "-90.54623000" + }, + { + "id": "111832", + "name": "Barnhart", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.34422000", + "longitude": "-90.39345000" + }, + { + "id": "111855", + "name": "Barry County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.70987000", + "longitude": "-93.82907000" + }, + { + "id": "111867", + "name": "Barton County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.50230000", + "longitude": "-94.34711000" + }, + { + "id": "111889", + "name": "Bates County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.25729000", + "longitude": "-94.34000000" + }, + { + "id": "111909", + "name": "Battlefield", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.11561000", + "longitude": "-93.37019000" + }, + { + "id": "112049", + "name": "Bel-Nor", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.70200000", + "longitude": "-90.31678000" + }, + { + "id": "112050", + "name": "Bel-Ridge", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.70950000", + "longitude": "-90.32539000" + }, + { + "id": "112078", + "name": "Belle", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.28588000", + "longitude": "-91.72044000" + }, + { + "id": "112097", + "name": "Bellefontaine Neighbors", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74033000", + "longitude": "-90.22650000" + }, + { + "id": "112147", + "name": "Belton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.81195000", + "longitude": "-94.53190000" + }, + { + "id": "112195", + "name": "Benton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.09783000", + "longitude": "-89.56258000" + }, + { + "id": "112200", + "name": "Benton County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.29485000", + "longitude": "-93.28795000" + }, + { + "id": "112221", + "name": "Berkeley", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.75450000", + "longitude": "-90.33123000" + }, + { + "id": "112248", + "name": "Bernie", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.66894000", + "longitude": "-89.96870000" + }, + { + "id": "112274", + "name": "Bethany", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.26833000", + "longitude": "-94.02829000" + }, + { + "id": "112343", + "name": "Billings", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.06755000", + "longitude": "-93.55214000" + }, + { + "id": "112366", + "name": "Bismarck", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.76922000", + "longitude": "-90.62485000" + }, + { + "id": "112378", + "name": "Black Jack", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.79338000", + "longitude": "-90.26733000" + }, + { + "id": "112435", + "name": "Bloomfield", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.88589000", + "longitude": "-89.92926000" + }, + { + "id": "112477", + "name": "Blue Springs", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.01695000", + "longitude": "-94.28161000" + }, + { + "id": "112517", + "name": "Bolivar", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.61448000", + "longitude": "-93.41047000" + }, + { + "id": "112524", + "name": "Bollinger County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.32219000", + "longitude": "-90.02595000" + }, + { + "id": "112539", + "name": "Bonne Terre", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.92311000", + "longitude": "-90.55540000" + }, + { + "id": "112556", + "name": "Boone County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.99062000", + "longitude": "-92.30968000" + }, + { + "id": "112568", + "name": "Boonville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.97364000", + "longitude": "-92.74324000" + }, + { + "id": "112611", + "name": "Bourbon", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.15477000", + "longitude": "-91.24403000" + }, + { + "id": "112630", + "name": "Bowling Green", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.34199000", + "longitude": "-91.19514000" + }, + { + "id": "112695", + "name": "Branson", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.64367000", + "longitude": "-93.21851000" + }, + { + "id": "112714", + "name": "Breckenridge Hills", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.71450000", + "longitude": "-90.36734000" + }, + { + "id": "112727", + "name": "Brentwood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.61755000", + "longitude": "-90.34928000" + }, + { + "id": "112769", + "name": "Bridgeton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.76700000", + "longitude": "-90.41151000" + }, + { + "id": "112853", + "name": "Brookfield", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.78447000", + "longitude": "-93.07353000" + }, + { + "id": "112973", + "name": "Buchanan County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.65986000", + "longitude": "-94.80616000" + }, + { + "id": "112990", + "name": "Buckner", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.13251000", + "longitude": "-94.19856000" + }, + { + "id": "113007", + "name": "Buffalo", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.64393000", + "longitude": "-93.09241000" + }, + { + "id": "113108", + "name": "Butler", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.25863000", + "longitude": "-94.33051000" + }, + { + "id": "113117", + "name": "Butler County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.71642000", + "longitude": "-90.40656000" + }, + { + "id": "113142", + "name": "Byrnes Mill", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.43783000", + "longitude": "-90.58179000" + }, + { + "id": "113153", + "name": "Cabool", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.12394000", + "longitude": "-92.10127000" + }, + { + "id": "113184", + "name": "Caldwell County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.65575000", + "longitude": "-93.98280000" + }, + { + "id": "113215", + "name": "California", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.62753000", + "longitude": "-92.56658000" + }, + { + "id": "113225", + "name": "Callaway County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.83552000", + "longitude": "-91.92601000" + }, + { + "id": "113238", + "name": "Calverton Park", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.76477000", + "longitude": "-90.31373000" + }, + { + "id": "113269", + "name": "Camden County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.02704000", + "longitude": "-92.76605000" + }, + { + "id": "113272", + "name": "Camdenton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.00809000", + "longitude": "-92.74463000" + }, + { + "id": "113273", + "name": "Cameron", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.74028000", + "longitude": "-94.24106000" + }, + { + "id": "113297", + "name": "Campbell", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.49339000", + "longitude": "-90.07509000" + }, + { + "id": "113348", + "name": "Canton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.12504000", + "longitude": "-91.62516000" + }, + { + "id": "113367", + "name": "Cape Girardeau", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.30588000", + "longitude": "-89.51815000" + }, + { + "id": "113368", + "name": "Cape Girardeau County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.38404000", + "longitude": "-89.68445000" + }, + { + "id": "113396", + "name": "Carl Junction", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.17672000", + "longitude": "-94.56551000" + }, + { + "id": "113454", + "name": "Carroll County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.42698000", + "longitude": "-93.50518000" + }, + { + "id": "113467", + "name": "Carrollton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.35835000", + "longitude": "-93.49577000" + }, + { + "id": "113481", + "name": "Carter County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.94127000", + "longitude": "-90.96231000" + }, + { + "id": "113490", + "name": "Carterville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.14923000", + "longitude": "-94.44300000" + }, + { + "id": "113491", + "name": "Carthage", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.17645000", + "longitude": "-94.31022000" + }, + { + "id": "113499", + "name": "Caruthersville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.19312000", + "longitude": "-89.65564000" + }, + { + "id": "113527", + "name": "Cass County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.64700000", + "longitude": "-94.35482000" + }, + { + "id": "113539", + "name": "Cassville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.67701000", + "longitude": "-93.86881000" + }, + { + "id": "113548", + "name": "Castle Point", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.75811000", + "longitude": "-90.24817000" + }, + { + "id": "113604", + "name": "Cedar County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.72385000", + "longitude": "-93.85661000" + }, + { + "id": "113613", + "name": "Cedar Hill", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.35339000", + "longitude": "-90.64124000" + }, + { + "id": "113654", + "name": "Centerville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.43505000", + "longitude": "-90.95846000" + }, + { + "id": "113686", + "name": "Centralia", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.21032000", + "longitude": "-92.13795000" + }, + { + "id": "113709", + "name": "Chaffee", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.18005000", + "longitude": "-89.65509000" + }, + { + "id": "113750", + "name": "Chariton County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.51508000", + "longitude": "-92.96262000" + }, + { + "id": "113751", + "name": "Charlack", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.70255000", + "longitude": "-90.34345000" + }, + { + "id": "113763", + "name": "Charleston", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.92089000", + "longitude": "-89.35063000" + }, + { + "id": "113901", + "name": "Chesterfield", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.66311000", + "longitude": "-90.57707000" + }, + { + "id": "113953", + "name": "Chillicothe", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.79529000", + "longitude": "-93.55244000" + }, + { + "id": "113997", + "name": "Christian County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.96957000", + "longitude": "-93.18885000" + }, + { + "id": "114081", + "name": "City of Saint Louis", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.62727000", + "longitude": "-90.19789000" + }, + { + "id": "114126", + "name": "Clark County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.41036000", + "longitude": "-91.73840000" + }, + { + "id": "114147", + "name": "Clarkson Valley", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.61839000", + "longitude": "-90.58929000" + }, + { + "id": "114158", + "name": "Clarkton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.45173000", + "longitude": "-89.96704000" + }, + { + "id": "114181", + "name": "Clay County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.31052000", + "longitude": "-94.42087000" + }, + { + "id": "114191", + "name": "Claycomo", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.20250000", + "longitude": "-94.49245000" + }, + { + "id": "114199", + "name": "Clayton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.64255000", + "longitude": "-90.32373000" + }, + { + "id": "114251", + "name": "Clever", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.03033000", + "longitude": "-93.47297000" + }, + { + "id": "114271", + "name": "Clinton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.36863000", + "longitude": "-93.77827000" + }, + { + "id": "114291", + "name": "Clinton County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.60178000", + "longitude": "-94.40459000" + }, + { + "id": "114395", + "name": "Cole Camp", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.46002000", + "longitude": "-93.20270000" + }, + { + "id": "114396", + "name": "Cole County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.50541000", + "longitude": "-92.28160000" + }, + { + "id": "114468", + "name": "Columbia", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.95171000", + "longitude": "-92.33407000" + }, + { + "id": "114535", + "name": "Concord", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.52450000", + "longitude": "-90.35734000" + }, + { + "id": "114545", + "name": "Concordia", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.98335000", + "longitude": "-93.56855000" + }, + { + "id": "114597", + "name": "Cool Valley", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.72783000", + "longitude": "-90.31011000" + }, + { + "id": "114603", + "name": "Cooper County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.84354000", + "longitude": "-92.81012000" + }, + { + "id": "114696", + "name": "Cottleville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74616000", + "longitude": "-90.65401000" + }, + { + "id": "114717", + "name": "Country Club Hills", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.72088000", + "longitude": "-90.27484000" + }, + { + "id": "114719", + "name": "Country Club Village", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.83222000", + "longitude": "-94.82163000" + }, + { + "id": "114768", + "name": "Crane", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.90534000", + "longitude": "-93.57158000" + }, + { + "id": "114779", + "name": "Crawford County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.97638000", + "longitude": "-91.30396000" + }, + { + "id": "114810", + "name": "Crestwood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.55700000", + "longitude": "-90.38178000" + }, + { + "id": "114816", + "name": "Creve Coeur", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.66089000", + "longitude": "-90.42262000" + }, + { + "id": "114827", + "name": "Crocker", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.94893000", + "longitude": "-92.26378000" + }, + { + "id": "114875", + "name": "Crystal City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.22117000", + "longitude": "-90.37901000" + }, + { + "id": "114885", + "name": "Cuba", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.06282000", + "longitude": "-91.40348000" + }, + { + "id": "114967", + "name": "Dade County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.43204000", + "longitude": "-93.85029000" + }, + { + "id": "114996", + "name": "Dallas County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.68041000", + "longitude": "-93.02366000" + }, + { + "id": "115043", + "name": "Dardenne Prairie", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.76950000", + "longitude": "-90.72902000" + }, + { + "id": "115071", + "name": "Daviess County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.96075000", + "longitude": "-93.98547000" + }, + { + "id": "115117", + "name": "De Soto", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.13950000", + "longitude": "-90.55513000" + }, + { + "id": "115130", + "name": "DeKalb County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.89318000", + "longitude": "-94.40471000" + }, + { + "id": "115215", + "name": "Dellwood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74950000", + "longitude": "-90.28567000" + }, + { + "id": "115244", + "name": "Dent County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.60663000", + "longitude": "-91.50788000" + }, + { + "id": "115274", + "name": "Des Peres", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.60089000", + "longitude": "-90.43290000" + }, + { + "id": "115286", + "name": "Desloge", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.87088000", + "longitude": "-90.52735000" + }, + { + "id": "115307", + "name": "Dexter", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.79589000", + "longitude": "-89.95787000" + }, + { + "id": "115365", + "name": "Dixon", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.99171000", + "longitude": "-92.09378000" + }, + { + "id": "115397", + "name": "Doniphan", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.62089000", + "longitude": "-90.82346000" + }, + { + "id": "115428", + "name": "Douglas County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.93260000", + "longitude": "-92.49881000" + }, + { + "id": "115507", + "name": "Duenweg", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.08367000", + "longitude": "-94.41356000" + }, + { + "id": "115541", + "name": "Dunklin County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.10597000", + "longitude": "-90.16576000" + }, + { + "id": "115560", + "name": "Duquesne", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.07673000", + "longitude": "-94.45939000" + }, + { + "id": "115694", + "name": "East Independence", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.09556000", + "longitude": "-94.35523000" + }, + { + "id": "115740", + "name": "East Prairie", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.77978000", + "longitude": "-89.38563000" + }, + { + "id": "115866", + "name": "Edina", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.16754000", + "longitude": "-92.17268000" + }, + { + "id": "115923", + "name": "El Dorado Springs", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.87698000", + "longitude": "-94.02133000" + }, + { + "id": "115950", + "name": "Eldon", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.34836000", + "longitude": "-92.58158000" + }, + { + "id": "116034", + "name": "Ellisville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.59255000", + "longitude": "-90.58707000" + }, + { + "id": "116069", + "name": "Elsberry", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.16672000", + "longitude": "-90.78096000" + }, + { + "id": "116076", + "name": "Elvins", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.83672000", + "longitude": "-90.53290000" + }, + { + "id": "116100", + "name": "Eminence", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.15060000", + "longitude": "-91.35764000" + }, + { + "id": "116209", + "name": "Esther", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.85033000", + "longitude": "-90.49874000" + }, + { + "id": "116233", + "name": "Eureka", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.50255000", + "longitude": "-90.62790000" + }, + { + "id": "116270", + "name": "Excelsior Springs", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.33917000", + "longitude": "-94.22606000" + }, + { + "id": "116281", + "name": "Fair Grove", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.38393000", + "longitude": "-93.15130000" + }, + { + "id": "116413", + "name": "Farmington", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.78088000", + "longitude": "-90.42179000" + }, + { + "id": "116439", + "name": "Fayette", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.14587000", + "longitude": "-92.68379000" + }, + { + "id": "116474", + "name": "Fenton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.51311000", + "longitude": "-90.43595000" + }, + { + "id": "116480", + "name": "Ferguson", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74422000", + "longitude": "-90.30539000" + }, + { + "id": "116502", + "name": "Festus", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.22061000", + "longitude": "-90.39595000" + }, + { + "id": "116550", + "name": "Flat River", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.85005000", + "longitude": "-90.51679000" + }, + { + "id": "116597", + "name": "Florissant", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.78922000", + "longitude": "-90.32261000" + }, + { + "id": "116684", + "name": "Forsyth", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.68506000", + "longitude": "-93.11990000" + }, + { + "id": "116725", + "name": "Fort Leonard Wood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.70573000", + "longitude": "-92.15717000" + }, + { + "id": "116793", + "name": "Four Seasons", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.19809000", + "longitude": "-92.71102000" + }, + { + "id": "116851", + "name": "Franklin County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.41114000", + "longitude": "-91.07499000" + }, + { + "id": "116894", + "name": "Fredericktown", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.55978000", + "longitude": "-90.29401000" + }, + { + "id": "116962", + "name": "Frontenac", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.63561000", + "longitude": "-90.41512000" + }, + { + "id": "116986", + "name": "Fulton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.84671000", + "longitude": "-91.94796000" + }, + { + "id": "117016", + "name": "Gainesville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.60312000", + "longitude": "-92.42822000" + }, + { + "id": "117023", + "name": "Galena", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.80534000", + "longitude": "-93.46658000" + }, + { + "id": "117032", + "name": "Gallatin", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.91445000", + "longitude": "-93.96217000" + }, + { + "id": "117055", + "name": "Garden City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.56112000", + "longitude": "-94.19133000" + }, + { + "id": "117110", + "name": "Gasconade County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.44087000", + "longitude": "-91.50793000" + }, + { + "id": "117151", + "name": "Gentry County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.21211000", + "longitude": "-94.40992000" + }, + { + "id": "117168", + "name": "Gerald", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.39977000", + "longitude": "-91.33071000" + }, + { + "id": "117196", + "name": "Gideon", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.45201000", + "longitude": "-89.91926000" + }, + { + "id": "117236", + "name": "Gladstone", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.20389000", + "longitude": "-94.55468000" + }, + { + "id": "117247", + "name": "Glasgow", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.22725000", + "longitude": "-92.84658000" + }, + { + "id": "117250", + "name": "Glasgow Village", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.75366000", + "longitude": "-90.19844000" + }, + { + "id": "117280", + "name": "Glendale", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.59589000", + "longitude": "-90.37706000" + }, + { + "id": "117387", + "name": "Goodman", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.74174000", + "longitude": "-94.39911000" + }, + { + "id": "117423", + "name": "Gower", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.61083000", + "longitude": "-94.59940000" + }, + { + "id": "117440", + "name": "Grain Valley", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.01501000", + "longitude": "-94.19856000" + }, + { + "id": "117446", + "name": "Granby", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.91923000", + "longitude": "-94.25522000" + }, + { + "id": "117479", + "name": "Grandview", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.88584000", + "longitude": "-94.53301000" + }, + { + "id": "117506", + "name": "Grant City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.48749000", + "longitude": "-94.41107000" + }, + { + "id": "117555", + "name": "Gray Summit", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.48978000", + "longitude": "-90.81680000" + }, + { + "id": "117605", + "name": "Green Park", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.52366000", + "longitude": "-90.33845000" + }, + { + "id": "117636", + "name": "Greene County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.25805000", + "longitude": "-93.34199000" + }, + { + "id": "117647", + "name": "Greenfield", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.41532000", + "longitude": "-93.84104000" + }, + { + "id": "117685", + "name": "Greenville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.12727000", + "longitude": "-90.45011000" + }, + { + "id": "117703", + "name": "Greenwood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.85168000", + "longitude": "-94.34384000" + }, + { + "id": "117773", + "name": "Grundy County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.11393000", + "longitude": "-93.56534000" + }, + { + "id": "117875", + "name": "Hallsville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.11699000", + "longitude": "-92.22074000" + }, + { + "id": "117889", + "name": "Hamilton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.74362000", + "longitude": "-93.99827000" + }, + { + "id": "117961", + "name": "Hanley Hills", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.68588000", + "longitude": "-90.32373000" + }, + { + "id": "117965", + "name": "Hannibal", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.70838000", + "longitude": "-91.35848000" + }, + { + "id": "118068", + "name": "Harrison County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.35467000", + "longitude": "-93.99206000" + }, + { + "id": "118071", + "name": "Harrisonville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.65334000", + "longitude": "-94.34884000" + }, + { + "id": "118106", + "name": "Hartville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.25088000", + "longitude": "-92.51044000" + }, + { + "id": "118194", + "name": "Hayti", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.23368000", + "longitude": "-89.74953000" + }, + { + "id": "118207", + "name": "Hazelwood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.77144000", + "longitude": "-90.37095000" + }, + { + "id": "118301", + "name": "Henry County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.38516000", + "longitude": "-93.79275000" + }, + { + "id": "118313", + "name": "Herculaneum", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.26839000", + "longitude": "-90.38012000" + }, + { + "id": "118325", + "name": "Hermann", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.70421000", + "longitude": "-91.43738000" + }, + { + "id": "118328", + "name": "Hermitage", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.94142000", + "longitude": "-93.31631000" + }, + { + "id": "118366", + "name": "Hickory County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.94079000", + "longitude": "-93.32072000" + }, + { + "id": "118384", + "name": "Higginsville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.07251000", + "longitude": "-93.71716000" + }, + { + "id": "118388", + "name": "High Ridge", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.45894000", + "longitude": "-90.53651000" + }, + { + "id": "118447", + "name": "Hillsboro", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.23228000", + "longitude": "-90.56290000" + }, + { + "id": "118459", + "name": "Hillsdale", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.68338000", + "longitude": "-90.28400000" + }, + { + "id": "118522", + "name": "Holden", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.71418000", + "longitude": "-93.99133000" + }, + { + "id": "118551", + "name": "Hollister", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.62117000", + "longitude": "-93.21546000" + }, + { + "id": "118576", + "name": "Holt County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.09443000", + "longitude": "-95.21551000" + }, + { + "id": "118579", + "name": "Holts Summit", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.64032000", + "longitude": "-92.12241000" + }, + { + "id": "118697", + "name": "Houston", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.32616000", + "longitude": "-91.95599000" + }, + { + "id": "118714", + "name": "Howard County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.14250000", + "longitude": "-92.69627000" + }, + { + "id": "118723", + "name": "Howell County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.77401000", + "longitude": "-91.88654000" + }, + { + "id": "118773", + "name": "Humansville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.79448000", + "longitude": "-93.57798000" + }, + { + "id": "118816", + "name": "Huntsville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.44059000", + "longitude": "-92.54518000" + }, + { + "id": "118881", + "name": "Imperial", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.36978000", + "longitude": "-90.37845000" + }, + { + "id": "118892", + "name": "Independence", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.09112000", + "longitude": "-94.41551000" + }, + { + "id": "118988", + "name": "Iron County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.50426000", + "longitude": "-90.69003000" + }, + { + "id": "118997", + "name": "Ironton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.59727000", + "longitude": "-90.62734000" + }, + { + "id": "119064", + "name": "Jackson", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.38227000", + "longitude": "-89.66621000" + }, + { + "id": "119083", + "name": "Jackson County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.00850000", + "longitude": "-94.34609000" + }, + { + "id": "119147", + "name": "Jasper County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.20355000", + "longitude": "-94.34061000" + }, + { + "id": "119173", + "name": "Jefferson City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.57670000", + "longitude": "-92.17352000" + }, + { + "id": "119183", + "name": "Jefferson County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.26107000", + "longitude": "-90.53769000" + }, + { + "id": "119219", + "name": "Jennings", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.71922000", + "longitude": "-90.26039000" + }, + { + "id": "119266", + "name": "Johnson County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74409000", + "longitude": "-93.80637000" + }, + { + "id": "119313", + "name": "Joplin", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.08423000", + "longitude": "-94.51328000" + }, + { + "id": "119353", + "name": "Kahoka", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.42032000", + "longitude": "-91.71961000" + }, + { + "id": "119384", + "name": "Kansas City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.09973000", + "longitude": "-94.57857000" + }, + { + "id": "119407", + "name": "Kearney", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.36778000", + "longitude": "-94.36217000" + }, + { + "id": "119473", + "name": "Kennett", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.23618000", + "longitude": "-90.05565000" + }, + { + "id": "119549", + "name": "Keytesville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.43447000", + "longitude": "-92.93825000" + }, + { + "id": "119568", + "name": "Kimberling City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.63340000", + "longitude": "-93.41685000" + }, + { + "id": "119578", + "name": "King City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.05138000", + "longitude": "-94.52412000" + }, + { + "id": "119620", + "name": "Kingston", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.64417000", + "longitude": "-94.03855000" + }, + { + "id": "119653", + "name": "Kirksville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.19475000", + "longitude": "-92.58325000" + }, + { + "id": "119654", + "name": "Kirkwood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.58339000", + "longitude": "-90.40678000" + }, + { + "id": "119657", + "name": "Kissee Mills", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.68367000", + "longitude": "-93.04990000" + }, + { + "id": "119678", + "name": "Knob Noster", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.76668000", + "longitude": "-93.55855000" + }, + { + "id": "119691", + "name": "Knox County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.12825000", + "longitude": "-92.14807000" + }, + { + "id": "119768", + "name": "La Monte", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.77418000", + "longitude": "-93.42521000" + }, + { + "id": "119774", + "name": "La Plata", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.02337000", + "longitude": "-92.49158000" + }, + { + "id": "119797", + "name": "LaBarque Creek", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.41701000", + "longitude": "-90.67989000" + }, + { + "id": "119816", + "name": "Laclede County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.65832000", + "longitude": "-92.59035000" + }, + { + "id": "119828", + "name": "Ladue", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.64977000", + "longitude": "-90.38067000" + }, + { + "id": "119840", + "name": "Lafayette County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.06559000", + "longitude": "-93.78554000" + }, + { + "id": "119932", + "name": "Lake Lotawana", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.92306000", + "longitude": "-94.24411000" + }, + { + "id": "119956", + "name": "Lake Ozark", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.19864000", + "longitude": "-92.63880000" + }, + { + "id": "119972", + "name": "Lake Saint Louis", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.79755000", + "longitude": "-90.78568000" + }, + { + "id": "119994", + "name": "Lake Winnebago", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.83140000", + "longitude": "-94.35856000" + }, + { + "id": "120027", + "name": "Lakeshire", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.53866000", + "longitude": "-90.33512000" + }, + { + "id": "120059", + "name": "Lamar", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.49505000", + "longitude": "-94.27661000" + }, + { + "id": "120085", + "name": "Lancaster", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.52086000", + "longitude": "-92.52797000" + }, + { + "id": "120169", + "name": "Lathrop", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.54834000", + "longitude": "-94.32995000" + }, + { + "id": "120234", + "name": "Lawrence County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.10635000", + "longitude": "-93.83294000" + }, + { + "id": "120247", + "name": "Lawson", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.43834000", + "longitude": "-94.20411000" + }, + { + "id": "120273", + "name": "Leadwood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.86727000", + "longitude": "-90.59318000" + }, + { + "id": "120286", + "name": "Lebanon", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.68060000", + "longitude": "-92.66379000" + }, + { + "id": "120318", + "name": "Lee's Summit", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.91084000", + "longitude": "-94.38217000" + }, + { + "id": "120355", + "name": "Lemay", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.53339000", + "longitude": "-90.27928000" + }, + { + "id": "120414", + "name": "Lewis County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.09690000", + "longitude": "-91.72214000" + }, + { + "id": "120440", + "name": "Lexington", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.18473000", + "longitude": "-93.87994000" + }, + { + "id": "120461", + "name": "Liberty", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.24611000", + "longitude": "-94.41912000" + }, + { + "id": "120477", + "name": "Licking", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.49949000", + "longitude": "-91.85710000" + }, + { + "id": "120484", + "name": "Lilbourn", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.59228000", + "longitude": "-89.61536000" + }, + { + "id": "120502", + "name": "Lincoln", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.39086000", + "longitude": "-93.33465000" + }, + { + "id": "120520", + "name": "Lincoln County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.05802000", + "longitude": "-90.96005000" + }, + { + "id": "120580", + "name": "Linn", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.48587000", + "longitude": "-91.85045000" + }, + { + "id": "120582", + "name": "Linn County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.87021000", + "longitude": "-93.10718000" + }, + { + "id": "120585", + "name": "Linneus", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.87863000", + "longitude": "-93.18882000" + }, + { + "id": "120655", + "name": "Livingston County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.78211000", + "longitude": "-93.54828000" + }, + { + "id": "120727", + "name": "Lone Jack", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.87084000", + "longitude": "-94.17383000" + }, + { + "id": "120810", + "name": "Louisiana", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.44894000", + "longitude": "-91.05153000" + }, + { + "id": "120965", + "name": "Macon", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.74226000", + "longitude": "-92.47269000" + }, + { + "id": "120970", + "name": "Macon County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.83080000", + "longitude": "-92.56461000" + }, + { + "id": "121008", + "name": "Madison County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.47810000", + "longitude": "-90.34503000" + }, + { + "id": "121059", + "name": "Malden", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.55700000", + "longitude": "-89.96648000" + }, + { + "id": "121092", + "name": "Manchester", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.59700000", + "longitude": "-90.50929000" + }, + { + "id": "121143", + "name": "Mansfield", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.10672000", + "longitude": "-92.58072000" + }, + { + "id": "121177", + "name": "Maplewood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.61255000", + "longitude": "-90.32456000" + }, + { + "id": "121188", + "name": "Marble Hill", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.30589000", + "longitude": "-89.97038000" + }, + { + "id": "121193", + "name": "Marceline", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.71197000", + "longitude": "-92.94825000" + }, + { + "id": "121215", + "name": "Maries County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.16163000", + "longitude": "-91.92489000" + }, + { + "id": "121255", + "name": "Marion County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.80596000", + "longitude": "-91.62235000" + }, + { + "id": "121263", + "name": "Marionville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.00311000", + "longitude": "-93.63742000" + }, + { + "id": "121279", + "name": "Marlborough", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.57033000", + "longitude": "-90.33706000" + }, + { + "id": "121303", + "name": "Marshall", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.12308000", + "longitude": "-93.19687000" + }, + { + "id": "121325", + "name": "Marshfield", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.33866000", + "longitude": "-92.90712000" + }, + { + "id": "121334", + "name": "Marthasville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.62838000", + "longitude": "-91.05764000" + }, + { + "id": "121356", + "name": "Maryland Heights", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.71311000", + "longitude": "-90.42984000" + }, + { + "id": "121365", + "name": "Maryville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.34610000", + "longitude": "-94.87247000" + }, + { + "id": "121449", + "name": "Maysville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.88917000", + "longitude": "-94.36190000" + }, + { + "id": "121492", + "name": "McDonald County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.62867000", + "longitude": "-94.34836000" + }, + { + "id": "121616", + "name": "Mehlville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.50839000", + "longitude": "-90.32289000" + }, + { + "id": "121641", + "name": "Memphis", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.45781000", + "longitude": "-92.17129000" + }, + { + "id": "121678", + "name": "Mercer County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.42233000", + "longitude": "-93.56856000" + }, + { + "id": "121703", + "name": "Merriam Woods", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.71395000", + "longitude": "-93.16185000" + }, + { + "id": "121741", + "name": "Mexico", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.16976000", + "longitude": "-91.88295000" + }, + { + "id": "121839", + "name": "Milan", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.20224000", + "longitude": "-93.12521000" + }, + { + "id": "121882", + "name": "Miller County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.21453000", + "longitude": "-92.42841000" + }, + { + "id": "121990", + "name": "Mississippi County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.82810000", + "longitude": "-89.29118000" + }, + { + "id": "122009", + "name": "Moberly", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.41837000", + "longitude": "-92.43824000" + }, + { + "id": "122028", + "name": "Moline Acres", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74699000", + "longitude": "-90.24011000" + }, + { + "id": "122039", + "name": "Monett", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.92895000", + "longitude": "-93.92771000" + }, + { + "id": "122041", + "name": "Moniteau County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.63275000", + "longitude": "-92.58305000" + }, + { + "id": "122066", + "name": "Monroe City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.65365000", + "longitude": "-91.73461000" + }, + { + "id": "122074", + "name": "Monroe County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.49546000", + "longitude": "-92.00074000" + }, + { + "id": "122138", + "name": "Montgomery City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.97754000", + "longitude": "-91.50488000" + }, + { + "id": "122146", + "name": "Montgomery County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.94149000", + "longitude": "-91.47021000" + }, + { + "id": "122168", + "name": "Monticello", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.11838000", + "longitude": "-91.71211000" + }, + { + "id": "122241", + "name": "Morgan County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.42374000", + "longitude": "-92.88598000" + }, + { + "id": "122301", + "name": "Moscow Mills", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.94783000", + "longitude": "-90.91819000" + }, + { + "id": "122322", + "name": "Mound City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.13111000", + "longitude": "-95.23164000" + }, + { + "id": "122398", + "name": "Mount Vernon", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.10367000", + "longitude": "-93.81854000" + }, + { + "id": "122414", + "name": "Mountain Grove", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.13061000", + "longitude": "-92.26349000" + }, + { + "id": "122429", + "name": "Mountain View", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.99533000", + "longitude": "-91.70376000" + }, + { + "id": "122484", + "name": "Murphy", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.49033000", + "longitude": "-90.48707000" + }, + { + "id": "122633", + "name": "Neosho", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.86896000", + "longitude": "-94.36800000" + }, + { + "id": "122648", + "name": "Nevada", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.83921000", + "longitude": "-94.35467000" + }, + { + "id": "122706", + "name": "New Franklin", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.01725000", + "longitude": "-92.73741000" + }, + { + "id": "122714", + "name": "New Haven", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.60838000", + "longitude": "-91.21904000" + }, + { + "id": "122740", + "name": "New London", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.58532000", + "longitude": "-91.40098000" + }, + { + "id": "122747", + "name": "New Madrid", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.58645000", + "longitude": "-89.52785000" + }, + { + "id": "122748", + "name": "New Madrid County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.59465000", + "longitude": "-89.65183000" + }, + { + "id": "122870", + "name": "Newton County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.90551000", + "longitude": "-94.33925000" + }, + { + "id": "122912", + "name": "Nixa", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.04339000", + "longitude": "-93.29435000" + }, + { + "id": "122924", + "name": "Nodaway County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.36077000", + "longitude": "-94.88343000" + }, + { + "id": "122926", + "name": "Noel", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.54563000", + "longitude": "-94.48522000" + }, + { + "id": "122951", + "name": "Normandy", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.72088000", + "longitude": "-90.29734000" + }, + { + "id": "123045", + "name": "North Kansas City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.13000000", + "longitude": "-94.56218000" + }, + { + "id": "123181", + "name": "Northwoods", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.70422000", + "longitude": "-90.28345000" + }, + { + "id": "123227", + "name": "O'Fallon", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.81061000", + "longitude": "-90.69985000" + }, + { + "id": "123236", + "name": "Oak Grove", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.00501000", + "longitude": "-94.12939000" + }, + { + "id": "123283", + "name": "Oakland", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.57644000", + "longitude": "-90.38567000" + }, + { + "id": "123306", + "name": "Oakville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.47005000", + "longitude": "-90.30456000" + }, + { + "id": "123359", + "name": "Odessa", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.99917000", + "longitude": "-93.95356000" + }, + { + "id": "123421", + "name": "Old Jamestown", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.83494000", + "longitude": "-90.28511000" + }, + { + "id": "123449", + "name": "Olivette", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.66533000", + "longitude": "-90.37595000" + }, + { + "id": "123504", + "name": "Oran", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.08505000", + "longitude": "-89.65536000" + }, + { + "id": "123545", + "name": "Oregon", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.98694000", + "longitude": "-95.14498000" + }, + { + "id": "123549", + "name": "Oregon County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.68672000", + "longitude": "-91.40329000" + }, + { + "id": "123576", + "name": "Oronogo", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.18839000", + "longitude": "-94.47023000" + }, + { + "id": "123587", + "name": "Osage Beach", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.12956000", + "longitude": "-92.65277000" + }, + { + "id": "123590", + "name": "Osage County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.46037000", + "longitude": "-91.86184000" + }, + { + "id": "123598", + "name": "Osceola", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.04670000", + "longitude": "-93.70438000" + }, + { + "id": "123650", + "name": "Overland", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.70116000", + "longitude": "-90.36234000" + }, + { + "id": "123666", + "name": "Owensville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.34560000", + "longitude": "-91.50155000" + }, + { + "id": "123698", + "name": "Ozark", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.02089000", + "longitude": "-93.20602000" + }, + { + "id": "123699", + "name": "Ozark County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.64932000", + "longitude": "-92.44466000" + }, + { + "id": "123706", + "name": "Pacific", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.48200000", + "longitude": "-90.74152000" + }, + { + "id": "123720", + "name": "Pagedale", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.68338000", + "longitude": "-90.30761000" + }, + { + "id": "123772", + "name": "Palmyra", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.79421000", + "longitude": "-91.52321000" + }, + { + "id": "123832", + "name": "Paris", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.48087000", + "longitude": "-92.00128000" + }, + { + "id": "123848", + "name": "Park Hills", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.85422000", + "longitude": "-90.51818000" + }, + { + "id": "123878", + "name": "Parkville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.19500000", + "longitude": "-94.68218000" + }, + { + "id": "123982", + "name": "Peculiar", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.71918000", + "longitude": "-94.45856000" + }, + { + "id": "124010", + "name": "Pemiscot County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.21145000", + "longitude": "-89.78538000" + }, + { + "id": "124079", + "name": "Perry County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.70714000", + "longitude": "-89.82441000" + }, + { + "id": "124089", + "name": "Perryville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.72422000", + "longitude": "-89.86122000" + }, + { + "id": "124113", + "name": "Pettis County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.72829000", + "longitude": "-93.28510000" + }, + { + "id": "124114", + "name": "Pevely", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.28339000", + "longitude": "-90.39512000" + }, + { + "id": "124121", + "name": "Phelps County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.87713000", + "longitude": "-91.79236000" + }, + { + "id": "124165", + "name": "Piedmont", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.15449000", + "longitude": "-90.69567000" + }, + { + "id": "124170", + "name": "Pierce City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.94590000", + "longitude": "-94.00021000" + }, + { + "id": "124191", + "name": "Pike County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.34384000", + "longitude": "-91.17136000" + }, + { + "id": "124234", + "name": "Pine Lawn", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.69588000", + "longitude": "-90.27511000" + }, + { + "id": "124261", + "name": "Pineville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.59452000", + "longitude": "-94.38410000" + }, + { + "id": "124352", + "name": "Platte City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.37028000", + "longitude": "-94.78246000" + }, + { + "id": "124353", + "name": "Platte County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.38050000", + "longitude": "-94.77359000" + }, + { + "id": "124359", + "name": "Plattsburg", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.56555000", + "longitude": "-94.44801000" + }, + { + "id": "124368", + "name": "Pleasant Hill", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.78751000", + "longitude": "-94.26939000" + }, + { + "id": "124377", + "name": "Pleasant Valley", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.21639000", + "longitude": "-94.48412000" + }, + { + "id": "124443", + "name": "Polk County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.61648000", + "longitude": "-93.40053000" + }, + { + "id": "124484", + "name": "Poplar Bluff", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.75700000", + "longitude": "-90.39289000" + }, + { + "id": "124549", + "name": "Portageville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.42534000", + "longitude": "-89.69953000" + }, + { + "id": "124586", + "name": "Potosi", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.93644000", + "longitude": "-90.78791000" + }, + { + "id": "124690", + "name": "Princeton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.40084000", + "longitude": "-93.58050000" + }, + { + "id": "124741", + "name": "Pulaski County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.82463000", + "longitude": "-92.20766000" + }, + { + "id": "124756", + "name": "Purdy", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.81729000", + "longitude": "-93.92076000" + }, + { + "id": "124767", + "name": "Putnam County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.47891000", + "longitude": "-93.01613000" + }, + { + "id": "124835", + "name": "Ralls County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.52767000", + "longitude": "-91.52202000" + }, + { + "id": "124876", + "name": "Randolph County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.44017000", + "longitude": "-92.49708000" + }, + { + "id": "124916", + "name": "Ray County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.35241000", + "longitude": "-93.98988000" + }, + { + "id": "124922", + "name": "Raymore", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.80195000", + "longitude": "-94.45273000" + }, + { + "id": "124926", + "name": "Raytown", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.00862000", + "longitude": "-94.46356000" + }, + { + "id": "125030", + "name": "Republic", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.12005000", + "longitude": "-93.48019000" + }, + { + "id": "125040", + "name": "Reynolds County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.36233000", + "longitude": "-90.96908000" + }, + { + "id": "125057", + "name": "Rich Hill", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.09642000", + "longitude": "-94.36106000" + }, + { + "id": "125068", + "name": "Richland", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.85698000", + "longitude": "-92.40434000" + }, + { + "id": "125086", + "name": "Richmond", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.27862000", + "longitude": "-93.97689000" + }, + { + "id": "125103", + "name": "Richmond Heights", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.62866000", + "longitude": "-90.31956000" + }, + { + "id": "125166", + "name": "Ripley County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.65282000", + "longitude": "-90.86388000" + }, + { + "id": "125203", + "name": "Riverside", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.17750000", + "longitude": "-94.61301000" + }, + { + "id": "125218", + "name": "Riverview", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.74783000", + "longitude": "-90.21150000" + }, + { + "id": "125279", + "name": "Rock Hill", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.60755000", + "longitude": "-90.37845000" + }, + { + "id": "125285", + "name": "Rock Port", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.41111000", + "longitude": "-95.51693000" + }, + { + "id": "125355", + "name": "Rogersville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.11700000", + "longitude": "-93.05573000" + }, + { + "id": "125363", + "name": "Rolla", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.95143000", + "longitude": "-91.77127000" + }, + { + "id": "125598", + "name": "Saint Ann", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.72727000", + "longitude": "-90.38317000" + }, + { + "id": "125612", + "name": "Saint Charles", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.78394000", + "longitude": "-90.48123000" + }, + { + "id": "125616", + "name": "Saint Charles County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.78192000", + "longitude": "-90.67490000" + }, + { + "id": "125618", + "name": "Saint Clair", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.34533000", + "longitude": "-90.98097000" + }, + { + "id": "125623", + "name": "Saint Clair County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.03718000", + "longitude": "-93.77598000" + }, + { + "id": "125638", + "name": "Saint Francois County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.81028000", + "longitude": "-90.47227000" + }, + { + "id": "125641", + "name": "Saint George", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.53672000", + "longitude": "-90.31484000" + }, + { + "id": "125653", + "name": "Saint James", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.99726000", + "longitude": "-91.61432000" + }, + { + "id": "125661", + "name": "Saint John", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.71484000", + "longitude": "-90.34627000" + }, + { + "id": "125664", + "name": "Saint Johns", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.71338000", + "longitude": "-90.34317000" + }, + { + "id": "125671", + "name": "Saint Joseph", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.76861000", + "longitude": "-94.84663000" + }, + { + "id": "125681", + "name": "Saint Louis County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.64068000", + "longitude": "-90.44341000" + }, + { + "id": "125688", + "name": "Saint Martins", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.59420000", + "longitude": "-92.33713000" + }, + { + "id": "125701", + "name": "Saint Paul", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.86144000", + "longitude": "-90.74179000" + }, + { + "id": "125710", + "name": "Saint Peters", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.80033000", + "longitude": "-90.62651000" + }, + { + "id": "125712", + "name": "Saint Robert", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.82810000", + "longitude": "-92.17767000" + }, + { + "id": "125719", + "name": "Sainte Genevieve", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.98144000", + "longitude": "-90.04178000" + }, + { + "id": "125720", + "name": "Sainte Genevieve County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.89440000", + "longitude": "-90.19442000" + }, + { + "id": "125730", + "name": "Salem", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.64560000", + "longitude": "-91.53598000" + }, + { + "id": "125752", + "name": "Saline County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.13684000", + "longitude": "-93.20185000" + }, + { + "id": "125755", + "name": "Salisbury", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.42392000", + "longitude": "-92.80158000" + }, + { + "id": "125932", + "name": "Sappington", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.53700000", + "longitude": "-90.37984000" + }, + { + "id": "125946", + "name": "Sarcoxie", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.06923000", + "longitude": "-94.11660000" + }, + { + "id": "125975", + "name": "Savannah", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.94166000", + "longitude": "-94.83025000" + }, + { + "id": "126023", + "name": "Schuyler County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.47027000", + "longitude": "-92.52094000" + }, + { + "id": "126037", + "name": "Scotland County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.45260000", + "longitude": "-92.14705000" + }, + { + "id": "126041", + "name": "Scott City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.21672000", + "longitude": "-89.52453000" + }, + { + "id": "126047", + "name": "Scott County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.05305000", + "longitude": "-89.56851000" + }, + { + "id": "126114", + "name": "Sedalia", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.70446000", + "longitude": "-93.22826000" + }, + { + "id": "126152", + "name": "Senath", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.13423000", + "longitude": "-90.15982000" + }, + { + "id": "126155", + "name": "Seneca", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.84146000", + "longitude": "-94.61106000" + }, + { + "id": "126193", + "name": "Seymour", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.14644000", + "longitude": "-92.76878000" + }, + { + "id": "126220", + "name": "Shannon County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.15739000", + "longitude": "-91.40051000" + }, + { + "id": "126263", + "name": "Shelbina", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.69393000", + "longitude": "-92.04295000" + }, + { + "id": "126276", + "name": "Shelby County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.79778000", + "longitude": "-92.07662000" + }, + { + "id": "126283", + "name": "Shelbyville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.80587000", + "longitude": "-92.04156000" + }, + { + "id": "126289", + "name": "Shell Knob", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.63229000", + "longitude": "-93.63436000" + }, + { + "id": "126383", + "name": "Shrewsbury", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.59033000", + "longitude": "-90.33678000" + }, + { + "id": "126414", + "name": "Sikeston", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.87672000", + "longitude": "-89.58786000" + }, + { + "id": "126489", + "name": "Slater", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.21808000", + "longitude": "-93.06909000" + }, + { + "id": "126528", + "name": "Smithville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.38694000", + "longitude": "-94.58107000" + }, + { + "id": "126800", + "name": "Spanish Lake", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.78783000", + "longitude": "-90.21594000" + }, + { + "id": "126809", + "name": "Sparta", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.00116000", + "longitude": "-93.08157000" + }, + { + "id": "126893", + "name": "Springfield", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.21533000", + "longitude": "-93.29824000" + }, + { + "id": "126928", + "name": "St. Louis", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.62727000", + "longitude": "-90.19789000" + }, + { + "id": "126949", + "name": "Stanberry", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.21777000", + "longitude": "-94.53829000" + }, + { + "id": "127008", + "name": "Steele", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.08396000", + "longitude": "-89.82925000" + }, + { + "id": "127014", + "name": "Steelville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.96810000", + "longitude": "-91.35487000" + }, + { + "id": "127072", + "name": "Stockton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.69893000", + "longitude": "-93.79604000" + }, + { + "id": "127077", + "name": "Stoddard County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.85562000", + "longitude": "-89.94431000" + }, + { + "id": "127081", + "name": "Stone County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.74694000", + "longitude": "-93.45600000" + }, + { + "id": "127111", + "name": "Stover", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.44086000", + "longitude": "-92.99187000" + }, + { + "id": "127116", + "name": "Strafford", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.26838000", + "longitude": "-93.11713000" + }, + { + "id": "127170", + "name": "Sugar Creek", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.10973000", + "longitude": "-94.44467000" + }, + { + "id": "127183", + "name": "Sullivan", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.20810000", + "longitude": "-91.16042000" + }, + { + "id": "127188", + "name": "Sullivan County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.21064000", + "longitude": "-93.11152000" + }, + { + "id": "127275", + "name": "Sunset Hills", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.53894000", + "longitude": "-90.40734000" + }, + { + "id": "127338", + "name": "Sweet Springs", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.96363000", + "longitude": "-93.41493000" + }, + { + "id": "127410", + "name": "Taney County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.65473000", + "longitude": "-93.04111000" + }, + { + "id": "127421", + "name": "Taos", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.50643000", + "longitude": "-92.07101000" + }, + { + "id": "127431", + "name": "Tarkio", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.44028000", + "longitude": "-95.37776000" + }, + { + "id": "127523", + "name": "Terre du Lac", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.91172000", + "longitude": "-90.62541000" + }, + { + "id": "127521", + "name": "Terre Haute", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.43946000", + "longitude": "-93.23410000" + }, + { + "id": "127547", + "name": "Texas County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.31731000", + "longitude": "-91.96505000" + }, + { + "id": "127551", + "name": "Thayer", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.52451000", + "longitude": "-91.53820000" + }, + { + "id": "127674", + "name": "Tipton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.65558000", + "longitude": "-92.77992000" + }, + { + "id": "127759", + "name": "Town and Country", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.61228000", + "longitude": "-90.46345000" + }, + { + "id": "127809", + "name": "Trenton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.07890000", + "longitude": "-93.61661000" + }, + { + "id": "127844", + "name": "Troy", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.97949000", + "longitude": "-90.98070000" + }, + { + "id": "127915", + "name": "Tuscumbia", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.23309000", + "longitude": "-92.45852000" + }, + { + "id": "127973", + "name": "Union", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.45005000", + "longitude": "-91.00848000" + }, + { + "id": "128020", + "name": "Unionville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.47696000", + "longitude": "-93.00326000" + }, + { + "id": "128027", + "name": "University City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.65588000", + "longitude": "-90.30928000" + }, + { + "id": "128114", + "name": "Valley Park", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.54922000", + "longitude": "-90.49262000" + }, + { + "id": "128127", + "name": "Van Buren", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.99561000", + "longitude": "-91.01457000" + }, + { + "id": "128146", + "name": "Vandalia", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.31087000", + "longitude": "-91.48849000" + }, + { + "id": "128163", + "name": "Velda Village", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.69005000", + "longitude": "-90.29428000" + }, + { + "id": "128164", + "name": "Velda Village Hills", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.69061000", + "longitude": "-90.28734000" + }, + { + "id": "128192", + "name": "Vernon County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.85058000", + "longitude": "-94.34244000" + }, + { + "id": "128210", + "name": "Versailles", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.43141000", + "longitude": "-92.84103000" + }, + { + "id": "128232", + "name": "Vienna", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.18671000", + "longitude": "-91.94711000" + }, + { + "id": "128246", + "name": "Villa Ridge", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.47255000", + "longitude": "-90.88680000" + }, + { + "id": "128278", + "name": "Vinita Park", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.69005000", + "longitude": "-90.34262000" + }, + { + "id": "128461", + "name": "Wardsville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.48892000", + "longitude": "-92.17435000" + }, + { + "id": "128488", + "name": "Warren County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.76462000", + "longitude": "-91.16069000" + }, + { + "id": "128502", + "name": "Warrensburg", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.76279000", + "longitude": "-93.73605000" + }, + { + "id": "128505", + "name": "Warrenton", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.81144000", + "longitude": "-91.14154000" + }, + { + "id": "128517", + "name": "Warsaw", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.24308000", + "longitude": "-93.38187000" + }, + { + "id": "128522", + "name": "Warson Woods", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.60727000", + "longitude": "-90.38345000" + }, + { + "id": "128540", + "name": "Washington", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.55811000", + "longitude": "-91.01209000" + }, + { + "id": "128561", + "name": "Washington County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.96168000", + "longitude": "-90.87742000" + }, + { + "id": "128693", + "name": "Wayne County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.11264000", + "longitude": "-90.46143000" + }, + { + "id": "128712", + "name": "Waynesville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.82865000", + "longitude": "-92.20072000" + }, + { + "id": "128716", + "name": "Weatherby Lake", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.23778000", + "longitude": "-94.69607000" + }, + { + "id": "128725", + "name": "Webb City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.14645000", + "longitude": "-94.46300000" + }, + { + "id": "128738", + "name": "Webster County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.28091000", + "longitude": "-92.87588000" + }, + { + "id": "128743", + "name": "Webster Groves", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.59255000", + "longitude": "-90.35734000" + }, + { + "id": "128771", + "name": "Weldon Spring", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.71339000", + "longitude": "-90.68929000" + }, + { + "id": "128790", + "name": "Wellston", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.67283000", + "longitude": "-90.29928000" + }, + { + "id": "128792", + "name": "Wellsville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.07198000", + "longitude": "-91.57016000" + }, + { + "id": "128805", + "name": "Wentzville", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.81144000", + "longitude": "-90.85291000" + }, + { + "id": "128956", + "name": "West Plains", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.72812000", + "longitude": "-91.85237000" + }, + { + "id": "129059", + "name": "Weston", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "39.41111000", + "longitude": "-94.90163000" + }, + { + "id": "129177", + "name": "Whiteman Air Force Base", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.73018000", + "longitude": "-93.55895000" + }, + { + "id": "129237", + "name": "Wildwood", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.58283000", + "longitude": "-90.66290000" + }, + { + "id": "129257", + "name": "Willard", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.30505000", + "longitude": "-93.42853000" + }, + { + "id": "129309", + "name": "Willow Springs", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "36.99228000", + "longitude": "-91.96987000" + }, + { + "id": "129354", + "name": "Winchester", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.59033000", + "longitude": "-90.52790000" + }, + { + "id": "129379", + "name": "Windsor", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.53224000", + "longitude": "-93.52215000" + }, + { + "id": "129394", + "name": "Winfield", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.99727000", + "longitude": "-90.73846000" + }, + { + "id": "129423", + "name": "Winona", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.00977000", + "longitude": "-91.32347000" + }, + { + "id": "129559", + "name": "Woodson Terrace", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.72505000", + "longitude": "-90.35845000" + }, + { + "id": "129594", + "name": "Worth County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "40.47914000", + "longitude": "-94.42210000" + }, + { + "id": "129607", + "name": "Wright City", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "38.82755000", + "longitude": "-91.02014000" + }, + { + "id": "129608", + "name": "Wright County", + "state_id": 1451, + "state_code": "MO", + "country_id": 233, + "country_code": "US", + "latitude": "37.27014000", + "longitude": "-92.46870000" + }, + { + "id": "110989", + "name": "Absarokee", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.52050000", + "longitude": "-109.44294000" + }, + { + "id": "111296", + "name": "Anaconda", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.12854000", + "longitude": "-112.94226000" + }, + { + "id": "111739", + "name": "Baker", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.36695000", + "longitude": "-104.28466000" + }, + { + "id": "112008", + "name": "Beaverhead County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.13273000", + "longitude": "-112.89889000" + }, + { + "id": "112062", + "name": "Belgrade", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.77604000", + "longitude": "-111.17690000" + }, + { + "id": "112321", + "name": "Big Horn County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.42346000", + "longitude": "-107.48970000" + }, + { + "id": "112334", + "name": "Big Sky", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.28465000", + "longitude": "-111.36829000" + }, + { + "id": "112338", + "name": "Big Timber", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.83494000", + "longitude": "-109.95546000" + }, + { + "id": "112339", + "name": "Bigfork", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.06329000", + "longitude": "-114.07261000" + }, + { + "id": "112344", + "name": "Billings", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.78329000", + "longitude": "-108.50069000" + }, + { + "id": "112408", + "name": "Blaine County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.43276000", + "longitude": "-108.95866000" + }, + { + "id": "112544", + "name": "Bonner-West Riverside", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.87669000", + "longitude": "-113.88678000" + }, + { + "id": "112601", + "name": "Boulder", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.23659000", + "longitude": "-112.12083000" + }, + { + "id": "112653", + "name": "Bozeman", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.67965000", + "longitude": "-111.03856000" + }, + { + "id": "112826", + "name": "Broadus", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.44387000", + "longitude": "-105.41133000" + }, + { + "id": "112829", + "name": "Broadwater County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.33199000", + "longitude": "-111.49547000" + }, + { + "id": "112918", + "name": "Browning", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.55692000", + "longitude": "-113.01342000" + }, + { + "id": "113123", + "name": "Butte", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.00382000", + "longitude": "-112.53474000" + }, + { + "id": "113128", + "name": "Butte-Silver Bow (Balance)", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.90194000", + "longitude": "-112.65708000" + }, + { + "id": "113384", + "name": "Carbon County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.22737000", + "longitude": "-109.02832000" + }, + { + "id": "113484", + "name": "Carter County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.51677000", + "longitude": "-104.53616000" + }, + { + "id": "113515", + "name": "Cascade County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.30802000", + "longitude": "-111.34715000" + }, + { + "id": "113893", + "name": "Chester", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.51054000", + "longitude": "-110.96747000" + }, + { + "id": "113971", + "name": "Chinook", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.59000000", + "longitude": "-109.23128000" + }, + { + "id": "113989", + "name": "Choteau", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.81245000", + "longitude": "-112.18363000" + }, + { + "id": "113991", + "name": "Chouteau County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.88056000", + "longitude": "-110.43520000" + }, + { + "id": "114028", + "name": "Circle", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.41667000", + "longitude": "-105.59222000" + }, + { + "id": "114098", + "name": "Clancy", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.46521000", + "longitude": "-111.98638000" + }, + { + "id": "114287", + "name": "Clinton", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.76909000", + "longitude": "-113.71260000" + }, + { + "id": "114462", + "name": "Colstrip", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.88416000", + "longitude": "-106.62364000" + }, + { + "id": "114485", + "name": "Columbia Falls", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.37246000", + "longitude": "-114.18152000" + }, + { + "id": "114499", + "name": "Columbus", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.63661000", + "longitude": "-109.25211000" + }, + { + "id": "114569", + "name": "Conrad", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.17025000", + "longitude": "-111.94613000" + }, + { + "id": "114860", + "name": "Crow Agency", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.60164000", + "longitude": "-107.46119000" + }, + { + "id": "114939", + "name": "Custer County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.25270000", + "longitude": "-105.57178000" + }, + { + "id": "114941", + "name": "Cut Bank", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.63304000", + "longitude": "-112.32616000" + }, + { + "id": "115024", + "name": "Daniels County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.78381000", + "longitude": "-105.54857000" + }, + { + "id": "115086", + "name": "Dawson County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.26638000", + "longitude": "-104.89946000" + }, + { + "id": "115173", + "name": "Deer Lodge", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.39576000", + "longitude": "-112.73004000" + }, + { + "id": "115174", + "name": "Deer Lodge County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.06079000", + "longitude": "-113.06775000" + }, + { + "id": "115343", + "name": "Dillon", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.21631000", + "longitude": "-112.63752000" + }, + { + "id": "115688", + "name": "East Helena", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.58966000", + "longitude": "-111.91555000" + }, + { + "id": "115715", + "name": "East Missoula", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.87076000", + "longitude": "-113.94455000" + }, + { + "id": "115910", + "name": "Ekalaka", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.88889000", + "longitude": "-104.55273000" + }, + { + "id": "116236", + "name": "Eureka", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.87996000", + "longitude": "-115.05350000" + }, + { + "id": "116264", + "name": "Evergreen", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.22579000", + "longitude": "-114.27624000" + }, + { + "id": "116379", + "name": "Fallon County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.33402000", + "longitude": "-104.41742000" + }, + { + "id": "116478", + "name": "Fergus County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.26357000", + "longitude": "-109.22433000" + }, + { + "id": "116554", + "name": "Flathead County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.29516000", + "longitude": "-114.04981000" + }, + { + "id": "116685", + "name": "Forsyth", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.26638000", + "longitude": "-106.67781000" + }, + { + "id": "116690", + "name": "Fort Belknap Agency", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.48250000", + "longitude": "-108.76544000" + }, + { + "id": "116693", + "name": "Fort Benton", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.81830000", + "longitude": "-110.66744000" + }, + { + "id": "116790", + "name": "Four Corners", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.62965000", + "longitude": "-111.18606000" + }, + { + "id": "116935", + "name": "Frenchtown", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.01492000", + "longitude": "-114.22984000" + }, + { + "id": "117036", + "name": "Gallatin County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.54049000", + "longitude": "-111.17035000" + }, + { + "id": "117086", + "name": "Garfield County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.27770000", + "longitude": "-106.99283000" + }, + { + "id": "117231", + "name": "Glacier County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.70508000", + "longitude": "-112.99475000" + }, + { + "id": "117249", + "name": "Glasgow", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.19696000", + "longitude": "-106.63671000" + }, + { + "id": "117289", + "name": "Glendive", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.10529000", + "longitude": "-104.71246000" + }, + { + "id": "117358", + "name": "Golden Valley County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.38126000", + "longitude": "-109.17494000" + }, + { + "id": "117495", + "name": "Granite County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.40444000", + "longitude": "-113.44026000" + }, + { + "id": "117573", + "name": "Great Falls", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.50024000", + "longitude": "-111.30081000" + }, + { + "id": "117894", + "name": "Hamilton", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.24687000", + "longitude": "-114.16037000" + }, + { + "id": "117998", + "name": "Hardin", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.73248000", + "longitude": "-107.61203000" + }, + { + "id": "118027", + "name": "Harlowton", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.43551000", + "longitude": "-109.83435000" + }, + { + "id": "118154", + "name": "Havre", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.55000000", + "longitude": "-109.68409000" + }, + { + "id": "118251", + "name": "Helena", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.59271000", + "longitude": "-112.03611000" + }, + { + "id": "118252", + "name": "Helena Valley Northeast", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.69882000", + "longitude": "-111.95207000" + }, + { + "id": "118253", + "name": "Helena Valley Northwest", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.72894000", + "longitude": "-112.06275000" + }, + { + "id": "118254", + "name": "Helena Valley Southeast", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.61527000", + "longitude": "-111.92156000" + }, + { + "id": "118255", + "name": "Helena Valley West Central", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.66291000", + "longitude": "-112.06044000" + }, + { + "id": "118256", + "name": "Helena West Side", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.59672000", + "longitude": "-112.11304000" + }, + { + "id": "118437", + "name": "Hill County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.62823000", + "longitude": "-110.11131000" + }, + { + "id": "118858", + "name": "Hysham", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.29277000", + "longitude": "-107.23423000" + }, + { + "id": "119196", + "name": "Jefferson County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.14849000", + "longitude": "-112.09374000" + }, + { + "id": "119317", + "name": "Jordan", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.32083000", + "longitude": "-106.91007000" + }, + { + "id": "119326", + "name": "Judith Basin County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.04546000", + "longitude": "-110.26607000" + }, + { + "id": "119365", + "name": "Kalispell", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.19579000", + "longitude": "-114.31291000" + }, + { + "id": "119898", + "name": "Lake County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.64594000", + "longitude": "-114.08935000" + }, + { + "id": "120033", + "name": "Lakeside", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.01939000", + "longitude": "-114.22457000" + }, + { + "id": "120070", + "name": "Lame Deer", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.62305000", + "longitude": "-106.66670000" + }, + { + "id": "120193", + "name": "Laurel", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.66912000", + "longitude": "-108.77153000" + }, + { + "id": "120418", + "name": "Lewis and Clark County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.12234000", + "longitude": "-112.39035000" + }, + { + "id": "120433", + "name": "Lewistown", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.06247000", + "longitude": "-109.42824000" + }, + { + "id": "120457", + "name": "Libby", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.38829000", + "longitude": "-115.55600000" + }, + { + "id": "120473", + "name": "Liberty County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.56169000", + "longitude": "-111.02461000" + }, + { + "id": "120512", + "name": "Lincoln", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.95494000", + "longitude": "-112.68171000" + }, + { + "id": "120534", + "name": "Lincoln County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.54253000", + "longitude": "-115.40519000" + }, + { + "id": "120653", + "name": "Livingston", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.66244000", + "longitude": "-110.56104000" + }, + { + "id": "120683", + "name": "Lockwood", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.81912000", + "longitude": "-108.41486000" + }, + { + "id": "120710", + "name": "Lolo", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.75881000", + "longitude": "-114.08094000" + }, + { + "id": "121019", + "name": "Madison County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.30074000", + "longitude": "-111.92033000" + }, + { + "id": "121064", + "name": "Malmstrom Air Force Base", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.50549000", + "longitude": "-111.18302000" + }, + { + "id": "121068", + "name": "Malta", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.35972000", + "longitude": "-107.87428000" + }, + { + "id": "121116", + "name": "Manhattan", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.85660000", + "longitude": "-111.33246000" + }, + { + "id": "121475", + "name": "McCone County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.64523000", + "longitude": "-105.79534000" + }, + { + "id": "121576", + "name": "Meagher County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.59819000", + "longitude": "-110.88564000" + }, + { + "id": "121844", + "name": "Miles City", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.40834000", + "longitude": "-105.84056000" + }, + { + "id": "121937", + "name": "Mineral County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.14732000", + "longitude": "-114.99850000" + }, + { + "id": "121991", + "name": "Missoula", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.87215000", + "longitude": "-113.99400000" + }, + { + "id": "121992", + "name": "Missoula County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.03649000", + "longitude": "-113.92371000" + }, + { + "id": "122101", + "name": "Montana City", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.53771000", + "longitude": "-111.93277000" + }, + { + "id": "122514", + "name": "Musselshell County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.49655000", + "longitude": "-108.39771000" + }, + { + "id": "122998", + "name": "North Browning", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.57025000", + "longitude": "-113.00953000" + }, + { + "id": "123535", + "name": "Orchard Homes", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.86326000", + "longitude": "-114.04844000" + }, + { + "id": "123703", + "name": "Pablo", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.60021000", + "longitude": "-114.11900000" + }, + { + "id": "123842", + "name": "Park County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.48834000", + "longitude": "-110.52632000" + }, + { + "id": "124112", + "name": "Petroleum County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.11751000", + "longitude": "-108.25012000" + }, + { + "id": "124132", + "name": "Philipsburg", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.33215000", + "longitude": "-113.29423000" + }, + { + "id": "124138", + "name": "Phillips County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.25909000", + "longitude": "-107.91329000" + }, + { + "id": "124326", + "name": "Plains", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.46021000", + "longitude": "-114.88291000" + }, + { + "id": "124390", + "name": "Plentywood", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.77475000", + "longitude": "-104.56246000" + }, + { + "id": "124455", + "name": "Polson", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.69355000", + "longitude": "-114.16317000" + }, + { + "id": "124468", + "name": "Pondera County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.22798000", + "longitude": "-112.22639000" + }, + { + "id": "124607", + "name": "Powder River County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.39501000", + "longitude": "-105.63010000" + }, + { + "id": "124613", + "name": "Powell County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.85663000", + "longitude": "-112.93620000" + }, + { + "id": "124625", + "name": "Prairie County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.86049000", + "longitude": "-105.37794000" + }, + { + "id": "124903", + "name": "Ravalli County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.08170000", + "longitude": "-114.12069000" + }, + { + "id": "124954", + "name": "Red Lodge", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.18578000", + "longitude": "-109.24682000" + }, + { + "id": "125078", + "name": "Richland County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.78792000", + "longitude": "-104.56134000" + }, + { + "id": "125386", + "name": "Ronan", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.52882000", + "longitude": "-114.10150000" + }, + { + "id": "125394", + "name": "Roosevelt County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.29455000", + "longitude": "-105.01652000" + }, + { + "id": "125413", + "name": "Rosebud County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.22974000", + "longitude": "-106.73082000" + }, + { + "id": "125474", + "name": "Roundup", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.44524000", + "longitude": "-108.54180000" + }, + { + "id": "125564", + "name": "Ryegate", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.29718000", + "longitude": "-109.25879000" + }, + { + "id": "125863", + "name": "Sanders County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.67483000", + "longitude": "-115.13329000" + }, + { + "id": "126031", + "name": "Scobey", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.79252000", + "longitude": "-105.42083000" + }, + { + "id": "126125", + "name": "Seeley Lake", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.17938000", + "longitude": "-113.48452000" + }, + { + "id": "126271", + "name": "Shelby", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.50526000", + "longitude": "-111.85697000" + }, + { + "id": "126325", + "name": "Sheridan County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.72120000", + "longitude": "-104.50468000" + }, + { + "id": "126399", + "name": "Sidney", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.71668000", + "longitude": "-104.15633000" + }, + { + "id": "126421", + "name": "Silver Bow County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.90236000", + "longitude": "-112.65672000" + }, + { + "id": "126577", + "name": "Somers", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.08023000", + "longitude": "-114.22151000" + }, + { + "id": "126633", + "name": "South Browning", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.54608000", + "longitude": "-113.01425000" + }, + { + "id": "126955", + "name": "Stanford", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.15358000", + "longitude": "-110.21826000" + }, + { + "id": "127049", + "name": "Stevensville", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.50992000", + "longitude": "-114.09316000" + }, + { + "id": "127063", + "name": "Stillwater County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.66944000", + "longitude": "-109.39477000" + }, + { + "id": "127238", + "name": "Sun Prairie", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.53690000", + "longitude": "-111.48136000" + }, + { + "id": "127282", + "name": "Superior", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.19159000", + "longitude": "-114.89180000" + }, + { + "id": "127336", + "name": "Sweet Grass County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.81373000", + "longitude": "-109.94105000" + }, + { + "id": "127531", + "name": "Terry", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.79306000", + "longitude": "-105.31221000" + }, + { + "id": "127538", + "name": "Teton County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.83729000", + "longitude": "-112.24080000" + }, + { + "id": "127592", + "name": "Thompson Falls", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.59489000", + "longitude": "-115.33834000" + }, + { + "id": "127611", + "name": "Three Forks", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.89243000", + "longitude": "-111.55219000" + }, + { + "id": "127728", + "name": "Toole County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.65530000", + "longitude": "-111.69570000" + }, + { + "id": "127766", + "name": "Townsend", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.31910000", + "longitude": "-111.52080000" + }, + { + "id": "127789", + "name": "Treasure County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.21147000", + "longitude": "-107.27170000" + }, + { + "id": "128105", + "name": "Valley County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.36531000", + "longitude": "-106.66752000" + }, + { + "id": "128289", + "name": "Virginia City", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.29381000", + "longitude": "-111.94609000" + }, + { + "id": "128470", + "name": "Warm Springs", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.18131000", + "longitude": "-112.78476000" + }, + { + "id": "128878", + "name": "West Glendive", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.11085000", + "longitude": "-104.74968000" + }, + { + "id": "129009", + "name": "West Yellowstone", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "44.66215000", + "longitude": "-111.10411000" + }, + { + "id": "129110", + "name": "Wheatland County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.46634000", + "longitude": "-109.84440000" + }, + { + "id": "129163", + "name": "White Sulphur Springs", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.54828000", + "longitude": "-110.90216000" + }, + { + "id": "129166", + "name": "Whitefish", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.41108000", + "longitude": "-114.33763000" + }, + { + "id": "129172", + "name": "Whitehall", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.87076000", + "longitude": "-112.09749000" + }, + { + "id": "129213", + "name": "Wibaux", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.98501000", + "longitude": "-104.18827000" + }, + { + "id": "129214", + "name": "Wibaux County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "46.96535000", + "longitude": "-104.24897000" + }, + { + "id": "129415", + "name": "Winnett", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "47.00276000", + "longitude": "-108.35207000" + }, + { + "id": "129473", + "name": "Wolf Point", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "48.09057000", + "longitude": "-105.64056000" + }, + { + "id": "129679", + "name": "Yellowstone County", + "state_id": 1446, + "state_code": "MT", + "country_id": 233, + "country_code": "US", + "latitude": "45.93725000", + "longitude": "-108.27435000" + }, + { + "id": "111022", + "name": "Adams County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.52447000", + "longitude": "-98.50121000" + }, + { + "id": "111069", + "name": "Ainsworth", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.55000000", + "longitude": "-99.86262000" + }, + { + "id": "111127", + "name": "Albion", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.69084000", + "longitude": "-98.00367000" + }, + { + "id": "111200", + "name": "Alliance", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.10163000", + "longitude": "-102.87215000" + }, + { + "id": "111210", + "name": "Alma", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.09751000", + "longitude": "-99.36204000" + }, + { + "id": "111365", + "name": "Antelope County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.17690000", + "longitude": "-98.06669000" + }, + { + "id": "111413", + "name": "Arapahoe", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.30417000", + "longitude": "-99.90040000" + }, + { + "id": "111467", + "name": "Arlington", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.45250000", + "longitude": "-96.35113000" + }, + { + "id": "111499", + "name": "Arthur", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.57165000", + "longitude": "-101.69156000" + }, + { + "id": "111500", + "name": "Arthur County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.56890000", + "longitude": "-101.69591000" + }, + { + "id": "111536", + "name": "Ashland", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.03916000", + "longitude": "-96.36835000" + }, + { + "id": "111588", + "name": "Atkinson", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.53139000", + "longitude": "-98.97815000" + }, + { + "id": "111630", + "name": "Auburn", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.39278000", + "longitude": "-95.83889000" + }, + { + "id": "111661", + "name": "Aurora", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.86723000", + "longitude": "-98.00422000" + }, + { + "id": "111800", + "name": "Banner County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.54597000", + "longitude": "-103.71048000" + }, + { + "id": "111864", + "name": "Bartlett", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.88529000", + "longitude": "-98.55230000" + }, + { + "id": "111882", + "name": "Bassett", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.58583000", + "longitude": "-99.53789000" + }, + { + "id": "111905", + "name": "Battle Creek", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.99945000", + "longitude": "-97.59839000" + }, + { + "id": "111938", + "name": "Bayard", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.75497000", + "longitude": "-103.32410000" + }, + { + "id": "111981", + "name": "Beatrice", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.26806000", + "longitude": "-96.74697000" + }, + { + "id": "111996", + "name": "Beaver City", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.13751000", + "longitude": "-99.82956000" + }, + { + "id": "112113", + "name": "Bellevue", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.13667000", + "longitude": "-95.89084000" + }, + { + "id": "112171", + "name": "Benkelman", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.04916000", + "longitude": "-101.53294000" + }, + { + "id": "112176", + "name": "Bennington", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.36472000", + "longitude": "-96.15780000" + }, + { + "id": "112406", + "name": "Blaine County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91276000", + "longitude": "-99.97690000" + }, + { + "id": "112409", + "name": "Blair", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.54444000", + "longitude": "-96.12502000" + }, + { + "id": "112561", + "name": "Boone County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.70678000", + "longitude": "-98.06726000" + }, + { + "id": "112635", + "name": "Box Butte County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.21977000", + "longitude": "-103.08568000" + }, + { + "id": "112643", + "name": "Boyd County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.89968000", + "longitude": "-98.76646000" + }, + { + "id": "112742", + "name": "Brewster", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.93889000", + "longitude": "-99.86485000" + }, + { + "id": "112767", + "name": "Bridgeport", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.66525000", + "longitude": "-103.09910000" + }, + { + "id": "112843", + "name": "Broken Bow", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.40195000", + "longitude": "-99.63928000" + }, + { + "id": "112912", + "name": "Brown County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.43002000", + "longitude": "-99.92951000" + }, + { + "id": "113018", + "name": "Buffalo County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.85515000", + "longitude": "-99.07497000" + }, + { + "id": "113095", + "name": "Burt County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.85156000", + "longitude": "-96.32860000" + }, + { + "id": "113099", + "name": "Burwell", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.78167000", + "longitude": "-99.13315000" + }, + { + "id": "113119", + "name": "Butler County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.22608000", + "longitude": "-97.13177000" + }, + { + "id": "113122", + "name": "Butte", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.91139000", + "longitude": "-98.84926000" + }, + { + "id": "113256", + "name": "Cambridge", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.28195000", + "longitude": "-100.16569000" + }, + { + "id": "113534", + "name": "Cass County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.90972000", + "longitude": "-96.14087000" + }, + { + "id": "113606", + "name": "Cedar County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.59926000", + "longitude": "-97.25240000" + }, + { + "id": "113637", + "name": "Center", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.60945000", + "longitude": "-97.87673000" + }, + { + "id": "113669", + "name": "Central City", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.11585000", + "longitude": "-98.00172000" + }, + { + "id": "113707", + "name": "Chadron", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.82942000", + "longitude": "-102.99991000" + }, + { + "id": "113711", + "name": "Chalco", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.18389000", + "longitude": "-96.15030000" + }, + { + "id": "113747", + "name": "Chappell", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.09277000", + "longitude": "-102.47074000" + }, + { + "id": "113793", + "name": "Chase County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.52420000", + "longitude": "-101.69795000" + }, + { + "id": "113858", + "name": "Cherry County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.54493000", + "longitude": "-101.11858000" + }, + { + "id": "113929", + "name": "Cheyenne County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.21978000", + "longitude": "-102.99498000" + }, + { + "id": "114171", + "name": "Clay Center", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.52168000", + "longitude": "-98.05533000" + }, + { + "id": "114189", + "name": "Clay County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.52443000", + "longitude": "-98.05128000" + }, + { + "id": "114410", + "name": "Colfax County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.57402000", + "longitude": "-97.08646000" + }, + { + "id": "114496", + "name": "Columbus", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.42973000", + "longitude": "-97.36838000" + }, + { + "id": "114752", + "name": "Cozad", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.85973000", + "longitude": "-99.98734000" + }, + { + "id": "114790", + "name": "Creighton", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.46667000", + "longitude": "-97.90618000" + }, + { + "id": "114815", + "name": "Crete", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.62778000", + "longitude": "-96.96142000" + }, + { + "id": "114922", + "name": "Cuming County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91640000", + "longitude": "-96.78740000" + }, + { + "id": "114936", + "name": "Custer County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.39426000", + "longitude": "-99.72614000" + }, + { + "id": "114975", + "name": "Dakota City", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.41555000", + "longitude": "-96.41836000" + }, + { + "id": "114977", + "name": "Dakota County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.39111000", + "longitude": "-96.56451000" + }, + { + "id": "115061", + "name": "David City", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.25279000", + "longitude": "-97.13004000" + }, + { + "id": "115080", + "name": "Dawes County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.71972000", + "longitude": "-103.13544000" + }, + { + "id": "115084", + "name": "Dawson County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.86994000", + "longitude": "-99.81957000" + }, + { + "id": "115295", + "name": "Deuel County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.11160000", + "longitude": "-102.33395000" + }, + { + "id": "115368", + "name": "Dixon County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.49319000", + "longitude": "-96.86775000" + }, + { + "id": "115379", + "name": "Dodge County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.57789000", + "longitude": "-96.65398000" + }, + { + "id": "115430", + "name": "Douglas County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.29535000", + "longitude": "-96.15448000" + }, + { + "id": "115532", + "name": "Dundy County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17624000", + "longitude": "-101.68796000" + }, + { + "id": "115595", + "name": "Eagle", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.81667000", + "longitude": "-96.43029000" + }, + { + "id": "116001", + "name": "Elkhorn", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.28639000", + "longitude": "-96.23447000" + }, + { + "id": "116081", + "name": "Elwood", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.59028000", + "longitude": "-99.86095000" + }, + { + "id": "116295", + "name": "Fairbury", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.13722000", + "longitude": "-97.18059000" + }, + { + "id": "116381", + "name": "Falls City", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.06084000", + "longitude": "-95.60193000" + }, + { + "id": "116511", + "name": "Fillmore County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.52467000", + "longitude": "-97.59650000" + }, + { + "id": "116839", + "name": "Franklin", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.09612000", + "longitude": "-98.95258000" + }, + { + "id": "116860", + "name": "Franklin County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17634000", + "longitude": "-98.95280000" + }, + { + "id": "116923", + "name": "Fremont", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.43333000", + "longitude": "-96.49808000" + }, + { + "id": "116946", + "name": "Friend", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.65362000", + "longitude": "-97.28616000" + }, + { + "id": "116963", + "name": "Frontier County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.53008000", + "longitude": "-100.39420000" + }, + { + "id": "116981", + "name": "Fullerton", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.36335000", + "longitude": "-97.96923000" + }, + { + "id": "117001", + "name": "Furnas County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17647000", + "longitude": "-99.91227000" + }, + { + "id": "117008", + "name": "Gage County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.26193000", + "longitude": "-96.68944000" + }, + { + "id": "117064", + "name": "Garden County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.61943000", + "longitude": "-102.33544000" + }, + { + "id": "117083", + "name": "Garfield County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91436000", + "longitude": "-98.99139000" + }, + { + "id": "117143", + "name": "Geneva", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.52695000", + "longitude": "-97.59588000" + }, + { + "id": "117170", + "name": "Gering", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.82580000", + "longitude": "-103.66050000" + }, + { + "id": "117182", + "name": "Gibbon", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.74835000", + "longitude": "-98.84480000" + }, + { + "id": "117397", + "name": "Gordon", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.80472000", + "longitude": "-102.20322000" + }, + { + "id": "117413", + "name": "Gosper County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.51482000", + "longitude": "-99.83070000" + }, + { + "id": "117415", + "name": "Gothenburg", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.92945000", + "longitude": "-100.16068000" + }, + { + "id": "117461", + "name": "Grand Island", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.92501000", + "longitude": "-98.34201000" + }, + { + "id": "117505", + "name": "Grant", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.84194000", + "longitude": "-101.72517000" + }, + { + "id": "117519", + "name": "Grant County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91499000", + "longitude": "-101.74052000" + }, + { + "id": "117585", + "name": "Greeley", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.54862000", + "longitude": "-98.53118000" + }, + { + "id": "117587", + "name": "Greeley County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.56744000", + "longitude": "-98.52124000" + }, + { + "id": "117727", + "name": "Gretna", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.14083000", + "longitude": "-96.23974000" + }, + { + "id": "117865", + "name": "Hall County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.87257000", + "longitude": "-98.50217000" + }, + { + "id": "117902", + "name": "Hamilton County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.87356000", + "longitude": "-98.02323000" + }, + { + "id": "118019", + "name": "Harlan County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17650000", + "longitude": "-99.40464000" + }, + { + "id": "118052", + "name": "Harrisburg", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.55636000", + "longitude": "-103.73856000" + }, + { + "id": "118060", + "name": "Harrison", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.68719000", + "longitude": "-103.88271000" + }, + { + "id": "118096", + "name": "Hartington", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.62250000", + "longitude": "-97.26450000" + }, + { + "id": "118133", + "name": "Hastings", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.58612000", + "longitude": "-98.38839000" + }, + { + "id": "118180", + "name": "Hayes Center", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.51084000", + "longitude": "-101.01960000" + }, + { + "id": "118181", + "name": "Hayes County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.52478000", + "longitude": "-101.06184000" + }, + { + "id": "118238", + "name": "Hebron", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.16639000", + "longitude": "-97.58588000" + }, + { + "id": "118362", + "name": "Hickman", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.62000000", + "longitude": "-96.62918000" + }, + { + "id": "118493", + "name": "Hitchcock County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17635000", + "longitude": "-101.04227000" + }, + { + "id": "118528", + "name": "Holdrege", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.44029000", + "longitude": "-99.36982000" + }, + { + "id": "118577", + "name": "Holt County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.45571000", + "longitude": "-98.78384000" + }, + { + "id": "118629", + "name": "Hooker County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91591000", + "longitude": "-101.13533000" + }, + { + "id": "118717", + "name": "Howard County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.22004000", + "longitude": "-98.51709000" + }, + { + "id": "118843", + "name": "Hyannis", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.00054000", + "longitude": "-101.76184000" + }, + { + "id": "118884", + "name": "Imperial", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.51694000", + "longitude": "-101.64323000" + }, + { + "id": "119190", + "name": "Jefferson County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17576000", + "longitude": "-97.14272000" + }, + { + "id": "119270", + "name": "Johnson County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.39263000", + "longitude": "-96.26510000" + }, + { + "id": "119408", + "name": "Kearney", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.69946000", + "longitude": "-99.08148000" + }, + { + "id": "119409", + "name": "Kearney County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.50671000", + "longitude": "-98.94802000" + }, + { + "id": "119425", + "name": "Keith County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.19879000", + "longitude": "-101.66135000" + }, + { + "id": "119542", + "name": "Keya Paha County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.87883000", + "longitude": "-99.71235000" + }, + { + "id": "119566", + "name": "Kimball", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.23581000", + "longitude": "-103.66300000" + }, + { + "id": "119567", + "name": "Kimball County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.19766000", + "longitude": "-103.71495000" + }, + { + "id": "119692", + "name": "Knox County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.63678000", + "longitude": "-97.89190000" + }, + { + "id": "119796", + "name": "La Vista", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.18389000", + "longitude": "-96.03113000" + }, + { + "id": "120092", + "name": "Lancaster County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.78417000", + "longitude": "-96.68776000" + }, + { + "id": "120452", + "name": "Lexington", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.78084000", + "longitude": "-99.74150000" + }, + { + "id": "120506", + "name": "Lincoln", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.80000000", + "longitude": "-96.66696000" + }, + { + "id": "120535", + "name": "Lincoln County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.04777000", + "longitude": "-100.74523000" + }, + { + "id": "120704", + "name": "Logan County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.56649000", + "longitude": "-100.48286000" + }, + { + "id": "120816", + "name": "Louisville", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.99778000", + "longitude": "-96.16224000" + }, + { + "id": "120818", + "name": "Loup City", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.27557000", + "longitude": "-98.96675000" + }, + { + "id": "120819", + "name": "Loup County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91385000", + "longitude": "-99.45442000" + }, + { + "id": "120975", + "name": "Macy", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.11305000", + "longitude": "-96.35642000" + }, + { + "id": "120997", + "name": "Madison", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.82834000", + "longitude": "-97.45505000" + }, + { + "id": "121016", + "name": "Madison County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91670000", + "longitude": "-97.60078000" + }, + { + "id": "121479", + "name": "McCook", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.20195000", + "longitude": "-100.62571000" + }, + { + "id": "121548", + "name": "McPherson County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.56808000", + "longitude": "-101.06053000" + }, + { + "id": "121705", + "name": "Merrick County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.16982000", + "longitude": "-98.03765000" + }, + { + "id": "121855", + "name": "Milford", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.77445000", + "longitude": "-97.05059000" + }, + { + "id": "121929", + "name": "Minden", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.49863000", + "longitude": "-98.94786000" + }, + { + "id": "121998", + "name": "Mitchell", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.94024000", + "longitude": "-103.80856000" + }, + { + "id": "122263", + "name": "Morrill County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.71600000", + "longitude": "-103.01055000" + }, + { + "id": "122459", + "name": "Mullen", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.04278000", + "longitude": "-101.04266000" + }, + { + "id": "122540", + "name": "Nance County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.39730000", + "longitude": "-97.99225000" + }, + { + "id": "122609", + "name": "Nebraska City", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.67667000", + "longitude": "-95.85917000" + }, + { + "id": "122620", + "name": "Neligh", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.12862000", + "longitude": "-98.02979000" + }, + { + "id": "122625", + "name": "Nelson", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.20168000", + "longitude": "-98.06782000" + }, + { + "id": "122630", + "name": "Nemaha County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.38765000", + "longitude": "-95.84982000" + }, + { + "id": "122943", + "name": "Norfolk", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.02834000", + "longitude": "-97.41700000" + }, + { + "id": "122983", + "name": "North Bend", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.46195000", + "longitude": "-96.77975000" + }, + { + "id": "123082", + "name": "North Platte", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.12389000", + "longitude": "-100.76542000" + }, + { + "id": "123214", + "name": "Nuckolls County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17638000", + "longitude": "-98.04718000" + }, + { + "id": "123228", + "name": "O'Neill", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.45778000", + "longitude": "-98.64759000" + }, + { + "id": "123291", + "name": "Oakland", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.83583000", + "longitude": "-96.46697000" + }, + { + "id": "123364", + "name": "Offutt Air Force Base", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.12024000", + "longitude": "-95.92095000" + }, + { + "id": "123365", + "name": "Ogallala", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.12805000", + "longitude": "-101.71962000" + }, + { + "id": "123463", + "name": "Omaha", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.25626000", + "longitude": "-95.94043000" + }, + { + "id": "123542", + "name": "Ord", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.60334000", + "longitude": "-98.92620000" + }, + { + "id": "123601", + "name": "Osceola", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.17974000", + "longitude": "-97.54755000" + }, + { + "id": "123610", + "name": "Oshkosh", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.40498000", + "longitude": "-102.34436000" + }, + { + "id": "123631", + "name": "Otoe County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.64850000", + "longitude": "-96.13478000" + }, + { + "id": "123814", + "name": "Papillion", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.15444000", + "longitude": "-96.04224000" + }, + { + "id": "123935", + "name": "Pawnee City", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.10833000", + "longitude": "-96.15445000" + }, + { + "id": "123938", + "name": "Pawnee County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.13154000", + "longitude": "-96.23706000" + }, + { + "id": "124014", + "name": "Pender", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.11416000", + "longitude": "-96.70726000" + }, + { + "id": "124063", + "name": "Perkins County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.85094000", + "longitude": "-101.64961000" + }, + { + "id": "124122", + "name": "Phelps County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.51111000", + "longitude": "-99.41454000" + }, + { + "id": "124169", + "name": "Pierce", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.19917000", + "longitude": "-97.52672000" + }, + { + "id": "124172", + "name": "Pierce County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.26437000", + "longitude": "-97.60129000" + }, + { + "id": "124329", + "name": "Plainview", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.34973000", + "longitude": "-97.79201000" + }, + { + "id": "124354", + "name": "Platte County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.57129000", + "longitude": "-97.52116000" + }, + { + "id": "124362", + "name": "Plattsmouth", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.01139000", + "longitude": "-95.88223000" + }, + { + "id": "124449", + "name": "Polk County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.18690000", + "longitude": "-97.56842000" + }, + { + "id": "124463", + "name": "Ponca", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.56250000", + "longitude": "-96.70559000" + }, + { + "id": "124836", + "name": "Ralston", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.20528000", + "longitude": "-96.04252000" + }, + { + "id": "124908", + "name": "Ravenna", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.02612000", + "longitude": "-98.91258000" + }, + { + "id": "124944", + "name": "Red Cloud", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.08890000", + "longitude": "-98.51950000" + }, + { + "id": "124962", + "name": "Red Willow County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17583000", + "longitude": "-100.47686000" + }, + { + "id": "125059", + "name": "Richardson County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.12506000", + "longitude": "-95.71753000" + }, + { + "id": "125273", + "name": "Rock County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.42129000", + "longitude": "-99.44993000" + }, + { + "id": "125527", + "name": "Rushville", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.71832000", + "longitude": "-102.46406000" + }, + { + "id": "125704", + "name": "Saint Paul", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.21473000", + "longitude": "-98.45812000" + }, + { + "id": "125753", + "name": "Saline County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.52406000", + "longitude": "-97.14091000" + }, + { + "id": "125952", + "name": "Sarpy County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.11293000", + "longitude": "-96.11199000" + }, + { + "id": "125969", + "name": "Saunders County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.22637000", + "longitude": "-96.63740000" + }, + { + "id": "126021", + "name": "Schuyler", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.44723000", + "longitude": "-97.05948000" + }, + { + "id": "126057", + "name": "Scotts Bluff County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.85061000", + "longitude": "-103.70795000" + }, + { + "id": "126060", + "name": "Scottsbluff", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.86663000", + "longitude": "-103.66717000" + }, + { + "id": "126186", + "name": "Seward", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.90695000", + "longitude": "-97.09892000" + }, + { + "id": "126188", + "name": "Seward County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.87239000", + "longitude": "-97.13951000" + }, + { + "id": "126298", + "name": "Shelton", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.77918000", + "longitude": "-98.73091000" + }, + { + "id": "126327", + "name": "Sheridan County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.50477000", + "longitude": "-102.40896000" + }, + { + "id": "126332", + "name": "Sherman County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.22059000", + "longitude": "-98.97621000" + }, + { + "id": "126398", + "name": "Sidney", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.14276000", + "longitude": "-102.97798000" + }, + { + "id": "126461", + "name": "Sioux County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.48771000", + "longitude": "-103.75888000" + }, + { + "id": "126730", + "name": "South Sioux City", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.47388000", + "longitude": "-96.41364000" + }, + { + "id": "126899", + "name": "Springfield", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.08194000", + "longitude": "-96.13446000" + }, + { + "id": "126913", + "name": "Springview", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.82444000", + "longitude": "-99.74901000" + }, + { + "id": "126968", + "name": "Stanton", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.95028000", + "longitude": "-97.22393000" + }, + { + "id": "126972", + "name": "Stanton County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91692000", + "longitude": "-97.19392000" + }, + { + "id": "126977", + "name": "Stapleton", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.48028000", + "longitude": "-100.51292000" + }, + { + "id": "127076", + "name": "Stockville", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.53279000", + "longitude": "-100.38348000" + }, + { + "id": "127137", + "name": "Stromsburg", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.11418000", + "longitude": "-97.59894000" + }, + { + "id": "127278", + "name": "Superior", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.02085000", + "longitude": "-98.07004000" + }, + { + "id": "127306", + "name": "Sutherland", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.15694000", + "longitude": "-101.12627000" + }, + { + "id": "127314", + "name": "Sutton", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.60557000", + "longitude": "-97.85921000" + }, + { + "id": "127364", + "name": "Syracuse", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.65722000", + "longitude": "-96.18640000" + }, + { + "id": "127448", + "name": "Taylor", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.77028000", + "longitude": "-99.37872000" + }, + { + "id": "127480", + "name": "Tecumseh", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.36667000", + "longitude": "-96.19612000" + }, + { + "id": "127485", + "name": "Tekamah", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.77832000", + "longitude": "-96.22113000" + }, + { + "id": "127534", + "name": "Terrytown", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.84747000", + "longitude": "-103.66161000" + }, + { + "id": "127552", + "name": "Thayer County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17629000", + "longitude": "-97.59492000" + }, + { + "id": "127567", + "name": "Thedford", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.97833000", + "longitude": "-100.57625000" + }, + { + "id": "127581", + "name": "Thomas County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91351000", + "longitude": "-100.55585000" + }, + { + "id": "127630", + "name": "Thurston County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.15819000", + "longitude": "-96.54410000" + }, + { + "id": "127810", + "name": "Trenton", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17555000", + "longitude": "-101.01294000" + }, + { + "id": "127863", + "name": "Tryon", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.55277000", + "longitude": "-100.95765000" + }, + { + "id": "128091", + "name": "Valentine", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.87278000", + "longitude": "-100.55097000" + }, + { + "id": "128098", + "name": "Valley", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.31278000", + "longitude": "-96.34614000" + }, + { + "id": "128103", + "name": "Valley County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.56731000", + "longitude": "-98.98190000" + }, + { + "id": "128334", + "name": "Wahoo", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.21139000", + "longitude": "-96.62030000" + }, + { + "id": "128362", + "name": "Wakefield", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.26917000", + "longitude": "-96.86504000" + }, + { + "id": "128571", + "name": "Washington County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.53104000", + "longitude": "-96.22203000" + }, + { + "id": "128614", + "name": "Waterloo", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.28694000", + "longitude": "-96.28558000" + }, + { + "id": "128671", + "name": "Waverly", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.91750000", + "longitude": "-96.52834000" + }, + { + "id": "128686", + "name": "Wayne", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.23056000", + "longitude": "-97.01782000" + }, + { + "id": "128700", + "name": "Wayne County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "42.20929000", + "longitude": "-97.11926000" + }, + { + "id": "128742", + "name": "Webster County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.17643000", + "longitude": "-98.49995000" + }, + { + "id": "128756", + "name": "Weeping Water", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.87000000", + "longitude": "-96.14057000" + }, + { + "id": "128961", + "name": "West Point", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.84167000", + "longitude": "-96.70864000" + }, + { + "id": "129117", + "name": "Wheeler County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.91477000", + "longitude": "-98.52819000" + }, + { + "id": "129225", + "name": "Wilber", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.48139000", + "longitude": "-96.96058000" + }, + { + "id": "129462", + "name": "Wisner", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.98722000", + "longitude": "-96.91421000" + }, + { + "id": "129489", + "name": "Wood River", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.82057000", + "longitude": "-98.60007000" + }, + { + "id": "129627", + "name": "Wymore", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.12222000", + "longitude": "-96.66252000" + }, + { + "id": "129693", + "name": "York", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.86807000", + "longitude": "-97.59200000" + }, + { + "id": "129698", + "name": "York County", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "40.87275000", + "longitude": "-97.59711000" + }, + { + "id": "129737", + "name": "Yutan", + "state_id": 1408, + "state_code": "NE", + "country_id": 233, + "country_code": "US", + "latitude": "41.24500000", + "longitude": "-96.39725000" + }, + { + "id": "111095", + "name": "Alamo", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "37.36496000", + "longitude": "-115.16446000" + }, + { + "id": "111908", + "name": "Battle Mountain", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "40.64213000", + "longitude": "-116.93427000" + }, + { + "id": "111982", + "name": "Beatty", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.90856000", + "longitude": "-116.75923000" + }, + { + "id": "112602", + "name": "Boulder City", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "35.97859000", + "longitude": "-114.83249000" + }, + { + "id": "113043", + "name": "Bunkerville", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.77303000", + "longitude": "-114.12802000" + }, + { + "id": "113213", + "name": "Caliente", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "37.61496000", + "longitude": "-114.51194000" + }, + { + "id": "113399", + "name": "Carlin", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "40.71381000", + "longitude": "-116.10397000" + }, + { + "id": "113478", + "name": "Carson City", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.16380000", + "longitude": "-119.76740000" + }, + { + "id": "114012", + "name": "Churchill County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.58088000", + "longitude": "-118.33578000" + }, + { + "id": "114129", + "name": "Clark County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.21520000", + "longitude": "-115.01356000" + }, + { + "id": "114389", + "name": "Cold Springs", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.68019000", + "longitude": "-119.97659000" + }, + { + "id": "115098", + "name": "Dayton", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.23714000", + "longitude": "-119.59295000" + }, + { + "id": "115434", + "name": "Douglas County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.91224000", + "longitude": "-119.61637000" + }, + { + "id": "115768", + "name": "East Valley", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.94340000", + "longitude": "-119.69923000" + }, + { + "id": "116008", + "name": "Elko", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "40.83242000", + "longitude": "-115.76312000" + }, + { + "id": "116009", + "name": "Elko County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "41.14583000", + "longitude": "-115.35776000" + }, + { + "id": "116086", + "name": "Ely", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.24744000", + "longitude": "-114.88863000" + }, + { + "id": "116149", + "name": "Enterprise", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.02525000", + "longitude": "-115.24194000" + }, + { + "id": "116186", + "name": "Esmeralda County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "37.78470000", + "longitude": "-117.63237000" + }, + { + "id": "116237", + "name": "Eureka", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.51271000", + "longitude": "-115.96061000" + }, + { + "id": "116238", + "name": "Eureka County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.98389000", + "longitude": "-116.26856000" + }, + { + "id": "116378", + "name": "Fallon", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.47353000", + "longitude": "-118.77737000" + }, + { + "id": "116491", + "name": "Fernley", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.60797000", + "longitude": "-119.25183000" + }, + { + "id": "117078", + "name": "Gardnerville", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.94130000", + "longitude": "-119.74962000" + }, + { + "id": "117079", + "name": "Gardnerville Ranchos", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.88824000", + "longitude": "-119.74129000" + }, + { + "id": "117357", + "name": "Golden Valley", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.61547000", + "longitude": "-119.82658000" + }, + { + "id": "117363", + "name": "Goldfield", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "37.70854000", + "longitude": "-117.23563000" + }, + { + "id": "118176", + "name": "Hawthorne", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.52464000", + "longitude": "-118.62458000" + }, + { + "id": "118278", + "name": "Henderson", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.03970000", + "longitude": "-114.98194000" + }, + { + "id": "118780", + "name": "Humboldt County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "41.40684000", + "longitude": "-118.11197000" + }, + { + "id": "118888", + "name": "Incline Village", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.25130000", + "longitude": "-119.97297000" + }, + { + "id": "118909", + "name": "Indian Hills", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.08602000", + "longitude": "-119.78407000" + }, + { + "id": "119057", + "name": "Jackpot", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "41.98324000", + "longitude": "-114.67476000" + }, + { + "id": "119273", + "name": "Johnson Lane", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.04796000", + "longitude": "-119.72212000" + }, + { + "id": "119610", + "name": "Kingsbury", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.97713000", + "longitude": "-119.90685000" + }, + { + "id": "120097", + "name": "Lander County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.93381000", + "longitude": "-117.03791000" + }, + { + "id": "120163", + "name": "Las Vegas", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.17497000", + "longitude": "-115.13722000" + }, + { + "id": "120185", + "name": "Laughlin", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "35.16778000", + "longitude": "-114.57302000" + }, + { + "id": "120358", + "name": "Lemmon Valley", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.63602000", + "longitude": "-119.84325000" + }, + { + "id": "120532", + "name": "Lincoln County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "37.64335000", + "longitude": "-114.87755000" + }, + { + "id": "120825", + "name": "Lovelock", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "40.17935000", + "longitude": "-118.47348000" + }, + { + "id": "120939", + "name": "Lyon County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.02040000", + "longitude": "-119.18920000" + }, + { + "id": "121502", + "name": "McGill", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.40494000", + "longitude": "-114.77863000" + }, + { + "id": "121727", + "name": "Mesquite", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.80553000", + "longitude": "-114.06719000" + }, + { + "id": "121930", + "name": "Minden", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.95407000", + "longitude": "-119.76573000" + }, + { + "id": "121936", + "name": "Mineral County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.53881000", + "longitude": "-118.43521000" + }, + { + "id": "122007", + "name": "Moapa Town", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.68219000", + "longitude": "-114.59416000" + }, + { + "id": "122008", + "name": "Moapa Valley", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.58053000", + "longitude": "-114.47026000" + }, + { + "id": "122017", + "name": "Mogul", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.51380000", + "longitude": "-119.92603000" + }, + { + "id": "122622", + "name": "Nellis Air Force Base", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.24607000", + "longitude": "-115.05721000" + }, + { + "id": "123052", + "name": "North Las Vegas", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.19886000", + "longitude": "-115.11750000" + }, + { + "id": "123222", + "name": "Nye County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.04238000", + "longitude": "-116.47193000" + }, + { + "id": "123724", + "name": "Pahrump", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.20829000", + "longitude": "-115.98391000" + }, + { + "id": "123819", + "name": "Paradise", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.09719000", + "longitude": "-115.14666000" + }, + { + "id": "124091", + "name": "Pershing County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "40.44036000", + "longitude": "-118.40444000" + }, + { + "id": "124273", + "name": "Pioche", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "37.92969000", + "longitude": "-114.45221000" + }, + { + "id": "125020", + "name": "Reno", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.52963000", + "longitude": "-119.81380000" + }, + { + "id": "125885", + "name": "Sandy Valley", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "35.81692000", + "longitude": "-115.63223000" + }, + { + "id": "126435", + "name": "Silver Springs", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.41547000", + "longitude": "-119.22461000" + }, + { + "id": "126510", + "name": "Smith", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.80047000", + "longitude": "-119.32738000" + }, + { + "id": "126517", + "name": "Smith Valley", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.78421000", + "longitude": "-119.34425000" + }, + { + "id": "126801", + "name": "Spanish Springs", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.64908000", + "longitude": "-119.70741000" + }, + { + "id": "126805", + "name": "Sparks", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.53491000", + "longitude": "-119.75269000" + }, + { + "id": "126854", + "name": "Spring Creek", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "40.72659000", + "longitude": "-115.58590000" + }, + { + "id": "126881", + "name": "Spring Valley", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.10803000", + "longitude": "-115.24500000" + }, + { + "id": "126939", + "name": "Stagecoach", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.37380000", + "longitude": "-119.37406000" + }, + { + "id": "127102", + "name": "Storey County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.44653000", + "longitude": "-119.52917000" + }, + { + "id": "127205", + "name": "Summerlin South", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.11708000", + "longitude": "-115.33001000" + }, + { + "id": "127242", + "name": "Sun Valley", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.59630000", + "longitude": "-119.77602000" + }, + { + "id": "127269", + "name": "Sunrise Manor", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.21108000", + "longitude": "-115.07306000" + }, + { + "id": "127722", + "name": "Tonopah", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.06716000", + "longitude": "-117.23008000" + }, + { + "id": "127731", + "name": "Topaz Ranch Estates", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.73565000", + "longitude": "-119.50079000" + }, + { + "id": "128180", + "name": "Verdi", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.51824000", + "longitude": "-119.98881000" + }, + { + "id": "128290", + "name": "Virginia City", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.30963000", + "longitude": "-119.64962000" + }, + { + "id": "128590", + "name": "Washoe County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "40.66542000", + "longitude": "-119.66430000" + }, + { + "id": "128783", + "name": "Wells", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "41.11159000", + "longitude": "-114.96449000" + }, + { + "id": "129004", + "name": "West Wendover", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "40.73910000", + "longitude": "-114.07335000" + }, + { + "id": "129153", + "name": "White Pine County", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "39.44216000", + "longitude": "-114.90159000" + }, + { + "id": "129209", + "name": "Whitney", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.09831000", + "longitude": "-115.03630000" + }, + { + "id": "129361", + "name": "Winchester", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "36.12997000", + "longitude": "-115.11889000" + }, + { + "id": "129411", + "name": "Winnemucca", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "40.97296000", + "longitude": "-117.73568000" + }, + { + "id": "129682", + "name": "Yerington", + "state_id": 1458, + "state_code": "NV", + "country_id": 233, + "country_code": "US", + "latitude": "38.98575000", + "longitude": "-119.16293000" + }, + { + "id": "111155", + "name": "Alexandria", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.61146000", + "longitude": "-71.79286000" + }, + { + "id": "111228", + "name": "Alstead", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.14897000", + "longitude": "-72.36064000" + }, + { + "id": "111326", + "name": "Andover", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.43702000", + "longitude": "-71.82341000" + }, + { + "id": "111376", + "name": "Antrim", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.03091000", + "longitude": "-71.93897000" + }, + { + "id": "111535", + "name": "Ashland", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.69535000", + "longitude": "-71.63063000" + }, + { + "id": "111587", + "name": "Atkinson", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.83842000", + "longitude": "-71.14700000" + }, + { + "id": "111629", + "name": "Auburn", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.00453000", + "longitude": "-71.34840000" + }, + { + "id": "111836", + "name": "Barnstead", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.33397000", + "longitude": "-71.29284000" + }, + { + "id": "111847", + "name": "Barrington", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.22286000", + "longitude": "-71.04701000" + }, + { + "id": "112024", + "name": "Bedford", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.94647000", + "longitude": "-71.51590000" + }, + { + "id": "112065", + "name": "Belknap County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.51869000", + "longitude": "-71.42336000" + }, + { + "id": "112139", + "name": "Belmont", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.44536000", + "longitude": "-71.47785000" + }, + { + "id": "112238", + "name": "Berlin", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.46867000", + "longitude": "-71.18508000" + }, + { + "id": "112582", + "name": "Boscawen", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.31508000", + "longitude": "-71.62091000" + }, + { + "id": "112620", + "name": "Bow Bog", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.12064000", + "longitude": "-71.51146000" + }, + { + "id": "112730", + "name": "Brentwood", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.97870000", + "longitude": "-71.07284000" + }, + { + "id": "112776", + "name": "Bridgewater", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.63841000", + "longitude": "-71.73647000" + }, + { + "id": "112807", + "name": "Bristol", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.59119000", + "longitude": "-71.73675000" + }, + { + "id": "112868", + "name": "Brookline", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.73481000", + "longitude": "-71.65813000" + }, + { + "id": "113323", + "name": "Candia", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.07786000", + "longitude": "-71.27673000" + }, + { + "id": "113337", + "name": "Canterbury", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.33702000", + "longitude": "-71.56535000" + }, + { + "id": "113461", + "name": "Carroll County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.87391000", + "longitude": "-71.20277000" + }, + { + "id": "113642", + "name": "Center Harbor", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.70980000", + "longitude": "-71.46035000" + }, + { + "id": "113772", + "name": "Charlestown", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.23869000", + "longitude": "-72.42453000" + }, + { + "id": "113878", + "name": "Cheshire County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.91932000", + "longitude": "-72.25118000" + }, + { + "id": "113887", + "name": "Chester", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.95675000", + "longitude": "-71.25728000" + }, + { + "id": "113905", + "name": "Chesterfield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.88730000", + "longitude": "-72.47037000" + }, + { + "id": "113936", + "name": "Chichester", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.24925000", + "longitude": "-71.39979000" + }, + { + "id": "114105", + "name": "Claremont", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.37674000", + "longitude": "-72.34676000" + }, + { + "id": "114397", + "name": "Colebrook", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.89449000", + "longitude": "-71.49592000" + }, + { + "id": "114541", + "name": "Concord", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.20814000", + "longitude": "-71.53757000" + }, + { + "id": "114574", + "name": "Contoocook", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.22202000", + "longitude": "-71.71397000" + }, + { + "id": "114585", + "name": "Conway", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.97924000", + "longitude": "-71.12035000" + }, + { + "id": "114611", + "name": "Coos County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.68960000", + "longitude": "-71.30542000" + }, + { + "id": "115016", + "name": "Danbury", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.52563000", + "longitude": "-71.86175000" + }, + { + "id": "115036", + "name": "Danville", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.91259000", + "longitude": "-71.12450000" + }, + { + "id": "115182", + "name": "Deerfield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.23062000", + "longitude": "-71.61703000" + }, + { + "id": "115185", + "name": "Deering", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.07314000", + "longitude": "-71.84452000" + }, + { + "id": "115265", + "name": "Derry", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.88064000", + "longitude": "-71.32729000" + }, + { + "id": "115267", + "name": "Derry Village", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.89175000", + "longitude": "-71.31201000" + }, + { + "id": "115450", + "name": "Dover", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.19786000", + "longitude": "-70.87367000" + }, + { + "id": "115494", + "name": "Dublin", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.90758000", + "longitude": "-72.06258000" + }, + { + "id": "115571", + "name": "Durham", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.13397000", + "longitude": "-70.92645000" + }, + { + "id": "115647", + "name": "East Concord", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.24202000", + "longitude": "-71.53813000" + }, + { + "id": "115698", + "name": "East Kingston", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.92564000", + "longitude": "-71.01672000" + }, + { + "id": "115711", + "name": "East Merrimack", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.86814000", + "longitude": "-71.48340000" + }, + { + "id": "115897", + "name": "Effingham", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.76119000", + "longitude": "-70.99645000" + }, + { + "id": "116127", + "name": "Enfield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.64063000", + "longitude": "-72.14398000" + }, + { + "id": "116157", + "name": "Epping", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.03342000", + "longitude": "-71.07423000" + }, + { + "id": "116158", + "name": "Epsom", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.22286000", + "longitude": "-71.33201000" + }, + { + "id": "116271", + "name": "Exeter", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.98148000", + "longitude": "-70.94783000" + }, + { + "id": "116420", + "name": "Farmington", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.38980000", + "longitude": "-71.06506000" + }, + { + "id": "116537", + "name": "Fitzwilliam", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.78064000", + "longitude": "-72.14175000" + }, + { + "id": "116813", + "name": "Francestown", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.98758000", + "longitude": "-71.81258000" + }, + { + "id": "116837", + "name": "Franklin", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.44424000", + "longitude": "-71.64730000" + }, + { + "id": "116901", + "name": "Freedom", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.81230000", + "longitude": "-71.03562000" + }, + { + "id": "116922", + "name": "Fremont", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.99092000", + "longitude": "-71.14256000" + }, + { + "id": "117212", + "name": "Gilford", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.54758000", + "longitude": "-71.40674000" + }, + { + "id": "117220", + "name": "Gilmanton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.42425000", + "longitude": "-71.41452000" + }, + { + "id": "117336", + "name": "Goffstown", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.02036000", + "longitude": "-71.60035000" + }, + { + "id": "117404", + "name": "Gorham", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.38784000", + "longitude": "-71.17313000" + }, + { + "id": "117430", + "name": "Grafton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.55868000", + "longitude": "-71.94397000" + }, + { + "id": "117433", + "name": "Grafton County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.94074000", + "longitude": "-71.82055000" + }, + { + "id": "117525", + "name": "Grantham", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.48952000", + "longitude": "-72.13759000" + }, + { + "id": "117652", + "name": "Greenfield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.95064000", + "longitude": "-71.87230000" + }, + { + "id": "117657", + "name": "Greenland", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.03620000", + "longitude": "-70.83283000" + }, + { + "id": "117692", + "name": "Greenville", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.76731000", + "longitude": "-71.81230000" + }, + { + "id": "117764", + "name": "Groveton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.59867000", + "longitude": "-71.51120000" + }, + { + "id": "117925", + "name": "Hampstead", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.87453000", + "longitude": "-71.18117000" + }, + { + "id": "117934", + "name": "Hampton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.93759000", + "longitude": "-70.83894000" + }, + { + "id": "117936", + "name": "Hampton Beach", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.90731000", + "longitude": "-70.81200000" + }, + { + "id": "117938", + "name": "Hampton Falls", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.91620000", + "longitude": "-70.86366000" + }, + { + "id": "117972", + "name": "Hanover", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.70229000", + "longitude": "-72.28954000" + }, + { + "id": "118075", + "name": "Harrisville", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.94508000", + "longitude": "-72.09647000" + }, + { + "id": "118151", + "name": "Haverhill", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.03451000", + "longitude": "-72.06398000" + }, + { + "id": "118293", + "name": "Henniker", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.17980000", + "longitude": "-71.82230000" + }, + { + "id": "118431", + "name": "Hill", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.52424000", + "longitude": "-71.70091000" + }, + { + "id": "118456", + "name": "Hillsborough", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.11410000", + "longitude": "-71.89920000" + }, + { + "id": "118458", + "name": "Hillsborough County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.91531000", + "longitude": "-71.71601000" + }, + { + "id": "118486", + "name": "Hinsdale", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.78619000", + "longitude": "-72.48648000" + }, + { + "id": "118527", + "name": "Holderness", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.73202000", + "longitude": "-71.58841000" + }, + { + "id": "118548", + "name": "Hollis", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.74314000", + "longitude": "-71.59174000" + }, + { + "id": "118631", + "name": "Hooksett", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.09675000", + "longitude": "-71.46507000" + }, + { + "id": "118657", + "name": "Hopkinton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.19147000", + "longitude": "-71.67535000" + }, + { + "id": "118743", + "name": "Hudson", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.76481000", + "longitude": "-71.43979000" + }, + { + "id": "119109", + "name": "Jaffrey", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.81397000", + "longitude": "-72.02314000" + }, + { + "id": "119170", + "name": "Jefferson", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.41895000", + "longitude": "-71.47453000" + }, + { + "id": "119421", + "name": "Keene", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.93369000", + "longitude": "-72.27814000" + }, + { + "id": "119482", + "name": "Kensington", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.92703000", + "longitude": "-70.94394000" + }, + { + "id": "119625", + "name": "Kingston", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.93648000", + "longitude": "-71.05339000" + }, + { + "id": "119819", + "name": "Laconia", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.52785000", + "longitude": "-71.47035000" + }, + { + "id": "120084", + "name": "Lancaster", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.48895000", + "longitude": "-71.56925000" + }, + { + "id": "120291", + "name": "Lebanon", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.64229000", + "longitude": "-72.25176000" + }, + { + "id": "120304", + "name": "Lee", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.12314000", + "longitude": "-71.01145000" + }, + { + "id": "120365", + "name": "Lempster", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.23841000", + "longitude": "-72.21064000" + }, + { + "id": "120607", + "name": "Litchfield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.84425000", + "longitude": "-71.47979000" + }, + { + "id": "120635", + "name": "Littleton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.30617000", + "longitude": "-71.77009000" + }, + { + "id": "120723", + "name": "Londonderry", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.86509000", + "longitude": "-71.37395000" + }, + { + "id": "120912", + "name": "Lyme", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.80951000", + "longitude": "-72.15592000" + }, + { + "id": "120918", + "name": "Lyndeborough", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.90758000", + "longitude": "-71.76646000" + }, + { + "id": "120977", + "name": "Madbury", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.16925000", + "longitude": "-70.92395000" + }, + { + "id": "120996", + "name": "Madison", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.89924000", + "longitude": "-71.14840000" + }, + { + "id": "121098", + "name": "Manchester", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.99564000", + "longitude": "-71.45479000" + }, + { + "id": "121281", + "name": "Marlborough", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.90425000", + "longitude": "-72.20786000" + }, + { + "id": "121374", + "name": "Mason", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.74370000", + "longitude": "-71.76896000" + }, + { + "id": "121687", + "name": "Meredith", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.65757000", + "longitude": "-71.50035000" + }, + { + "id": "121711", + "name": "Merrimack", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.86509000", + "longitude": "-71.49340000" + }, + { + "id": "121712", + "name": "Merrimack County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.29765000", + "longitude": "-71.68019000" + }, + { + "id": "121840", + "name": "Milan", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.57339000", + "longitude": "-71.18508000" + }, + { + "id": "121856", + "name": "Milford", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.83536000", + "longitude": "-71.64896000" + }, + { + "id": "122094", + "name": "Mont Vernon", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.89453000", + "longitude": "-71.67424000" + }, + { + "id": "122315", + "name": "Moultonborough", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.75480000", + "longitude": "-71.39674000" + }, + { + "id": "122571", + "name": "Nashua", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.76537000", + "longitude": "-71.46757000" + }, + { + "id": "122669", + "name": "New Boston", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.97619000", + "longitude": "-71.69396000" + }, + { + "id": "122687", + "name": "New Castle", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.07231000", + "longitude": "-70.71616000" + }, + { + "id": "122701", + "name": "New Durham", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.43675000", + "longitude": "-71.17229000" + }, + { + "id": "122731", + "name": "New Ipswich", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.74814000", + "longitude": "-71.85424000" + }, + { + "id": "122744", + "name": "New London", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.41396000", + "longitude": "-71.98508000" + }, + { + "id": "122818", + "name": "Newbury", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.32146000", + "longitude": "-72.03592000" + }, + { + "id": "122836", + "name": "Newmarket", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.08286000", + "longitude": "-70.93506000" + }, + { + "id": "122847", + "name": "Newport", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.36535000", + "longitude": "-72.17342000" + }, + { + "id": "122866", + "name": "Newton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.86953000", + "longitude": "-71.03450000" + }, + { + "id": "123009", + "name": "North Conway", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.05368000", + "longitude": "-71.12840000" + }, + { + "id": "123035", + "name": "North Hampton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.97259000", + "longitude": "-70.82978000" + }, + { + "id": "123153", + "name": "Northfield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.43313000", + "longitude": "-71.59230000" + }, + { + "id": "123164", + "name": "Northumberland", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.56339000", + "longitude": "-71.55870000" + }, + { + "id": "123180", + "name": "Northwood", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.19425000", + "longitude": "-71.15090000" + }, + { + "id": "123205", + "name": "Nottingham", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.11453000", + "longitude": "-71.09978000" + }, + { + "id": "123552", + "name": "Orford", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.90535000", + "longitude": "-72.14009000" + }, + { + "id": "123618", + "name": "Ossipee", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.68536000", + "longitude": "-71.11673000" + }, + { + "id": "123991", + "name": "Pelham", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.73453000", + "longitude": "-71.32451000" + }, + { + "id": "124007", + "name": "Pembroke", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.14675000", + "longitude": "-71.45757000" + }, + { + "id": "124102", + "name": "Peterborough", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.87064000", + "longitude": "-71.95175000" + }, + { + "id": "124207", + "name": "Pinardville", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.99425000", + "longitude": "-71.50729000" + }, + { + "id": "124300", + "name": "Pittsfield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.30591000", + "longitude": "-71.32423000" + }, + { + "id": "124337", + "name": "Plaistow", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.83648000", + "longitude": "-71.09478000" + }, + { + "id": "124406", + "name": "Plymouth", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.75702000", + "longitude": "-71.68813000" + }, + { + "id": "124570", + "name": "Portsmouth", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.07704000", + "longitude": "-70.75766000" + }, + { + "id": "124919", + "name": "Raymond", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.03620000", + "longitude": "-71.18340000" + }, + { + "id": "125093", + "name": "Richmond", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.75481000", + "longitude": "-72.27175000" + }, + { + "id": "125140", + "name": "Rindge", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.75120000", + "longitude": "-72.00980000" + }, + { + "id": "125265", + "name": "Rochester", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.30453000", + "longitude": "-70.97562000" + }, + { + "id": "125307", + "name": "Rockingham County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.98454000", + "longitude": "-71.08897000" + }, + { + "id": "125371", + "name": "Rollinsford", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.23620000", + "longitude": "-70.82034000" + }, + { + "id": "125508", + "name": "Rumney", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.80535000", + "longitude": "-71.81258000" + }, + { + "id": "125561", + "name": "Rye", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.01342000", + "longitude": "-70.77089000" + }, + { + "id": "125736", + "name": "Salem", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.78842000", + "longitude": "-71.20089000" + }, + { + "id": "125758", + "name": "Salisbury", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.38008000", + "longitude": "-71.71702000" + }, + { + "id": "125856", + "name": "Sanbornton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.48924000", + "longitude": "-71.58230000" + }, + { + "id": "125857", + "name": "Sanbornville", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.55425000", + "longitude": "-71.03090000" + }, + { + "id": "125870", + "name": "Sandown", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.92870000", + "longitude": "-71.18701000" + }, + { + "id": "125878", + "name": "Sandwich", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.79035000", + "longitude": "-71.41118000" + }, + { + "id": "126080", + "name": "Seabrook", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.89481000", + "longitude": "-70.87116000" + }, + { + "id": "126590", + "name": "Somersworth", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.26175000", + "longitude": "-70.86534000" + }, + { + "id": "126675", + "name": "South Hooksett", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.02647000", + "longitude": "-71.43534000" + }, + { + "id": "126901", + "name": "Springfield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.49507000", + "longitude": "-72.03342000" + }, + { + "id": "127117", + "name": "Strafford", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.32703000", + "longitude": "-71.18423000" + }, + { + "id": "127118", + "name": "Strafford County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.29743000", + "longitude": "-71.02940000" + }, + { + "id": "127125", + "name": "Stratford", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.65505000", + "longitude": "-71.55564000" + }, + { + "id": "127129", + "name": "Stratham Station", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.05287000", + "longitude": "-70.89533000" + }, + { + "id": "127189", + "name": "Sullivan County", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.36122000", + "longitude": "-72.22240000" + }, + { + "id": "127244", + "name": "Sunapee", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.38757000", + "longitude": "-72.08786000" + }, + { + "id": "127247", + "name": "Suncook", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.13064000", + "longitude": "-71.45312000" + }, + { + "id": "127313", + "name": "Sutton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.33424000", + "longitude": "-71.95147000" + }, + { + "id": "127329", + "name": "Swanzey", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.86980000", + "longitude": "-72.28175000" + }, + { + "id": "127408", + "name": "Tamworth", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.85980000", + "longitude": "-71.26313000" + }, + { + "id": "127499", + "name": "Temple", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.81814000", + "longitude": "-71.85147000" + }, + { + "id": "127602", + "name": "Thornton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.89285000", + "longitude": "-71.67591000" + }, + { + "id": "127654", + "name": "Tilton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.44230000", + "longitude": "-71.58896000" + }, + { + "id": "127655", + "name": "Tilton-Northfield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.44300000", + "longitude": "-71.59364000" + }, + { + "id": "127850", + "name": "Troy", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.82397000", + "longitude": "-72.18119000" + }, + { + "id": "127877", + "name": "Tuftonboro", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.69647000", + "longitude": "-71.22201000" + }, + { + "id": "128021", + "name": "Unity", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.29396000", + "longitude": "-72.26037000" + }, + { + "id": "128361", + "name": "Wakefield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.56813000", + "longitude": "-71.03007000" + }, + { + "id": "128715", + "name": "Weare", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.09480000", + "longitude": "-71.73063000" + }, + { + "id": "128732", + "name": "Webster", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.32897000", + "longitude": "-71.71786000" + }, + { + "id": "128987", + "name": "West Swanzey", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.87008000", + "longitude": "-72.32175000" + }, + { + "id": "129054", + "name": "Westmoreland", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.96203000", + "longitude": "-72.44231000" + }, + { + "id": "129165", + "name": "Whitefield", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.37312000", + "longitude": "-71.61008000" + }, + { + "id": "129328", + "name": "Wilmot", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.45174000", + "longitude": "-71.91369000" + }, + { + "id": "129345", + "name": "Wilton", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.84342000", + "longitude": "-71.73507000" + }, + { + "id": "129359", + "name": "Winchester", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.77342000", + "longitude": "-72.38314000" + }, + { + "id": "129372", + "name": "Windham", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "42.80064000", + "longitude": "-71.30423000" + }, + { + "id": "129478", + "name": "Wolfeboro", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.58397000", + "longitude": "-71.20729000" + }, + { + "id": "129564", + "name": "Woodstock", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "43.97757000", + "longitude": "-71.68508000" + }, + { + "id": "129569", + "name": "Woodsville", + "state_id": 1404, + "state_code": "NH", + "country_id": 233, + "country_code": "US", + "latitude": "44.15229000", + "longitude": "-72.03731000" + }, + { + "id": "110990", + "name": "Absecon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.42845000", + "longitude": "-74.49571000" + }, + { + "id": "111195", + "name": "Allendale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.04149000", + "longitude": "-74.12903000" + }, + { + "id": "111198", + "name": "Allentown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.17789000", + "longitude": "-74.58349000" + }, + { + "id": "111204", + "name": "Alloway", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.56095000", + "longitude": "-75.36242000" + }, + { + "id": "111220", + "name": "Alpha", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.66704000", + "longitude": "-75.15740000" + }, + { + "id": "111222", + "name": "Alpine", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.95593000", + "longitude": "-73.93125000" + }, + { + "id": "111351", + "name": "Annandale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.64093000", + "longitude": "-74.88128000" + }, + { + "id": "111508", + "name": "Asbury Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.22039000", + "longitude": "-74.01208000" + }, + { + "id": "111531", + "name": "Ashland", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.86317000", + "longitude": "-75.00600000" + }, + { + "id": "111570", + "name": "Atco", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.76984000", + "longitude": "-74.88739000" + }, + { + "id": "111598", + "name": "Atlantic City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.36415000", + "longitude": "-74.42306000" + }, + { + "id": "111599", + "name": "Atlantic County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.46883000", + "longitude": "-74.63373000" + }, + { + "id": "111600", + "name": "Atlantic Highlands", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.40789000", + "longitude": "-74.03431000" + }, + { + "id": "111638", + "name": "Audubon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.89095000", + "longitude": "-75.07295000" + }, + { + "id": "111643", + "name": "Audubon Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.89650000", + "longitude": "-75.08767000" + }, + { + "id": "111673", + "name": "Avalon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.10122000", + "longitude": "-74.71766000" + }, + { + "id": "111677", + "name": "Avenel", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.58038000", + "longitude": "-74.28515000" + }, + { + "id": "111697", + "name": "Avon-by-the-Sea", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.19234000", + "longitude": "-74.01597000" + }, + { + "id": "111825", + "name": "Barnegat", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.75318000", + "longitude": "-74.22292000" + }, + { + "id": "111845", + "name": "Barrington", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.86484000", + "longitude": "-75.05517000" + }, + { + "id": "111945", + "name": "Bayonne", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.66871000", + "longitude": "-74.11431000" + }, + { + "id": "111960", + "name": "Bayville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.90929000", + "longitude": "-74.15486000" + }, + { + "id": "111964", + "name": "Beach Haven", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.55928000", + "longitude": "-74.24320000" + }, + { + "id": "111965", + "name": "Beach Haven West", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.66984000", + "longitude": "-74.23181000" + }, + { + "id": "111967", + "name": "Beachwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.93901000", + "longitude": "-74.19292000" + }, + { + "id": "111983", + "name": "Beattystown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.81315000", + "longitude": "-74.84294000" + }, + { + "id": "112015", + "name": "Beckett", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.75400000", + "longitude": "-75.35741000" + }, + { + "id": "112031", + "name": "Bedminster", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.68066000", + "longitude": "-74.64544000" + }, + { + "id": "112059", + "name": "Belford", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.42594000", + "longitude": "-74.08681000" + }, + { + "id": "112106", + "name": "Belleville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.79371000", + "longitude": "-74.15014000" + }, + { + "id": "112121", + "name": "Bellmawr", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.86761000", + "longitude": "-75.09462000" + }, + { + "id": "112133", + "name": "Belmar", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.17845000", + "longitude": "-74.02180000" + }, + { + "id": "112156", + "name": "Belvidere", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82982000", + "longitude": "-75.07767000" + }, + { + "id": "112218", + "name": "Bergen County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.95977000", + "longitude": "-74.07441000" + }, + { + "id": "112219", + "name": "Bergenfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.92760000", + "longitude": "-73.99736000" + }, + { + "id": "112226", + "name": "Berkeley Heights", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.68343000", + "longitude": "-74.44265000" + }, + { + "id": "112235", + "name": "Berlin", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.79123000", + "longitude": "-74.92905000" + }, + { + "id": "112245", + "name": "Bernardsville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.71871000", + "longitude": "-74.56932000" + }, + { + "id": "112301", + "name": "Beverly", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.06539000", + "longitude": "-74.91906000" + }, + { + "id": "112397", + "name": "Blackwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.80234000", + "longitude": "-75.06406000" + }, + { + "id": "112437", + "name": "Bloomfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.80677000", + "longitude": "-74.18542000" + }, + { + "id": "112448", + "name": "Bloomingdale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.00204000", + "longitude": "-74.32654000" + }, + { + "id": "112501", + "name": "Bogota", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.87621000", + "longitude": "-74.02986000" + }, + { + "id": "112566", + "name": "Boonton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.90260000", + "longitude": "-74.40710000" + }, + { + "id": "112576", + "name": "Bordentown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.14622000", + "longitude": "-74.71183000" + }, + { + "id": "112608", + "name": "Bound Brook", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.56844000", + "longitude": "-74.53849000" + }, + { + "id": "112674", + "name": "Bradley Beach", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.20234000", + "longitude": "-74.01208000" + }, + { + "id": "112677", + "name": "Bradley Gardens", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.56288000", + "longitude": "-74.65460000" + }, + { + "id": "112698", + "name": "Brass Castle", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.76482000", + "longitude": "-75.01101000" + }, + { + "id": "112770", + "name": "Bridgeton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.42734000", + "longitude": "-75.23408000" + }, + { + "id": "112777", + "name": "Bridgewater", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.60079000", + "longitude": "-74.64815000" + }, + { + "id": "112781", + "name": "Brielle", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.10789000", + "longitude": "-74.05653000" + }, + { + "id": "112783", + "name": "Brigantine", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.41012000", + "longitude": "-74.36459000" + }, + { + "id": "112850", + "name": "Brookdale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.83371000", + "longitude": "-74.18292000" + }, + { + "id": "112865", + "name": "Brooklawn", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.87817000", + "longitude": "-75.12073000" + }, + { + "id": "112921", + "name": "Browns Mills", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.97261000", + "longitude": "-74.58293000" + }, + { + "id": "112939", + "name": "Brownville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.40066000", + "longitude": "-74.29515000" + }, + { + "id": "112994", + "name": "Budd Lake", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.87121000", + "longitude": "-74.73405000" + }, + { + "id": "112998", + "name": "Buena", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.51373000", + "longitude": "-74.92462000" + }, + { + "id": "113071", + "name": "Burlington", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.07122000", + "longitude": "-74.86489000" + }, + { + "id": "113077", + "name": "Burlington County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.87769000", + "longitude": "-74.66820000" + }, + { + "id": "113110", + "name": "Butler", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.00371000", + "longitude": "-74.34154000" + }, + { + "id": "113181", + "name": "Caldwell", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.83982000", + "longitude": "-74.27654000" + }, + { + "id": "113214", + "name": "Califon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.71954000", + "longitude": "-74.83572000" + }, + { + "id": "113263", + "name": "Camden", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.92595000", + "longitude": "-75.11962000" + }, + { + "id": "113271", + "name": "Camden County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.80353000", + "longitude": "-74.95976000" + }, + { + "id": "113369", + "name": "Cape May", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "38.93511000", + "longitude": "-74.90601000" + }, + { + "id": "113370", + "name": "Cape May County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.08513000", + "longitude": "-74.84998000" + }, + { + "id": "113371", + "name": "Cape May Court House", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.08261000", + "longitude": "-74.82378000" + }, + { + "id": "113410", + "name": "Carlstadt", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.84038000", + "longitude": "-74.09070000" + }, + { + "id": "113429", + "name": "Carneys Point", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.71122000", + "longitude": "-75.47020000" + }, + { + "id": "113486", + "name": "Carteret", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.57733000", + "longitude": "-74.22820000" + }, + { + "id": "113608", + "name": "Cedar Glen Lakes", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.95234000", + "longitude": "-74.39987000" + }, + { + "id": "113609", + "name": "Cedar Glen West", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.04206000", + "longitude": "-74.29265000" + }, + { + "id": "113611", + "name": "Cedar Grove", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85177000", + "longitude": "-74.22903000" + }, + { + "id": "113800", + "name": "Chatham", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.74093000", + "longitude": "-74.38376000" + }, + { + "id": "113860", + "name": "Cherry Hill", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.93484000", + "longitude": "-75.03073000" + }, + { + "id": "113862", + "name": "Cherry Hill Mall", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.93595000", + "longitude": "-75.00906000" + }, + { + "id": "113880", + "name": "Chesilhurst", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.73234000", + "longitude": "-74.88100000" + }, + { + "id": "113889", + "name": "Chester", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.78427000", + "longitude": "-74.69683000" + }, + { + "id": "114027", + "name": "Cinnaminson", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.99678000", + "longitude": "-74.99267000" + }, + { + "id": "114119", + "name": "Clark", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.64094000", + "longitude": "-74.31070000" + }, + { + "id": "114201", + "name": "Clayton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.66011000", + "longitude": "-75.09212000" + }, + { + "id": "114215", + "name": "Clearbrook Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.30983000", + "longitude": "-74.46460000" + }, + { + "id": "114232", + "name": "Clementon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.81150000", + "longitude": "-74.98294000" + }, + { + "id": "114253", + "name": "Cliffside Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82149000", + "longitude": "-73.98764000" + }, + { + "id": "114254", + "name": "Cliffwood Beach", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.44205000", + "longitude": "-74.21681000" + }, + { + "id": "114259", + "name": "Clifton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85843000", + "longitude": "-74.16376000" + }, + { + "id": "114284", + "name": "Clinton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.63677000", + "longitude": "-74.90989000" + }, + { + "id": "114305", + "name": "Closter", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.97315000", + "longitude": "-73.96153000" + }, + { + "id": "114428", + "name": "Collings Lakes", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.59567000", + "longitude": "-74.88156000" + }, + { + "id": "114429", + "name": "Collingswood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.91817000", + "longitude": "-75.07128000" + }, + { + "id": "114446", + "name": "Colonia", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.57455000", + "longitude": "-74.30209000" + }, + { + "id": "114546", + "name": "Concordia", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.31094000", + "longitude": "-74.44821000" + }, + { + "id": "114722", + "name": "Country Lake Estates", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.94262000", + "longitude": "-74.54404000" + }, + { + "id": "114764", + "name": "Cranbury", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.31622000", + "longitude": "-74.51376000" + }, + { + "id": "114767", + "name": "Crandon Lakes", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.12426000", + "longitude": "-74.83989000" + }, + { + "id": "114771", + "name": "Cranford", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.65844000", + "longitude": "-74.29959000" + }, + { + "id": "114799", + "name": "Cresskill", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.94149000", + "longitude": "-73.95930000" + }, + { + "id": "114812", + "name": "Crestwood Village", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.94817000", + "longitude": "-74.36070000" + }, + { + "id": "114915", + "name": "Cumberland County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.32807000", + "longitude": "-75.12934000" + }, + { + "id": "115097", + "name": "Dayton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.37261000", + "longitude": "-74.51015000" + }, + { + "id": "115197", + "name": "Delanco", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.05067000", + "longitude": "-74.95350000" + }, + { + "id": "115230", + "name": "Demarest", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.95732000", + "longitude": "-73.96347000" + }, + { + "id": "115449", + "name": "Dover", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.88399000", + "longitude": "-74.56210000" + }, + { + "id": "115454", + "name": "Dover Beaches North", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.99123000", + "longitude": "-74.06375000" + }, + { + "id": "115455", + "name": "Dover Beaches South", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.95567000", + "longitude": "-74.07430000" + }, + { + "id": "115518", + "name": "Dumont", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.94065000", + "longitude": "-73.99681000" + }, + { + "id": "115535", + "name": "Dunellen", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.58927000", + "longitude": "-74.47182000" + }, + { + "id": "115641", + "name": "East Brunswick", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.42788000", + "longitude": "-74.41598000" + }, + { + "id": "115664", + "name": "East Franklin", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.49330000", + "longitude": "-74.47110000" + }, + { + "id": "115665", + "name": "East Freehold", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.28094000", + "longitude": "-74.25126000" + }, + { + "id": "115682", + "name": "East Hanover", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82010000", + "longitude": "-74.36487000" + }, + { + "id": "115720", + "name": "East Newark", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.74843000", + "longitude": "-74.16181000" + }, + { + "id": "115726", + "name": "East Orange", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.76732000", + "longitude": "-74.20487000" + }, + { + "id": "115752", + "name": "East Rutherford", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.83399000", + "longitude": "-74.09709000" + }, + { + "id": "115807", + "name": "Eatontown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.29622000", + "longitude": "-74.05097000" + }, + { + "id": "115813", + "name": "Echelon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.84845000", + "longitude": "-74.99572000" + }, + { + "id": "115854", + "name": "Edgewater", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82704000", + "longitude": "-73.97569000" + }, + { + "id": "115856", + "name": "Edgewater Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.06817000", + "longitude": "-74.90072000" + }, + { + "id": "115875", + "name": "Edison", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.51872000", + "longitude": "-74.41210000" + }, + { + "id": "115901", + "name": "Egg Harbor City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.52873000", + "longitude": "-74.64794000" + }, + { + "id": "115972", + "name": "Elizabeth", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.66399000", + "longitude": "-74.21070000" + }, + { + "id": "116033", + "name": "Ellisburg", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.91372000", + "longitude": "-75.01045000" + }, + { + "id": "116050", + "name": "Elmer", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.59511000", + "longitude": "-75.17018000" + }, + { + "id": "116063", + "name": "Elmwood Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.90399000", + "longitude": "-74.11848000" + }, + { + "id": "116078", + "name": "Elwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.57651000", + "longitude": "-74.71683000" + }, + { + "id": "116094", + "name": "Emerson", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.97621000", + "longitude": "-74.02625000" + }, + { + "id": "116132", + "name": "Englewood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.89288000", + "longitude": "-73.97264000" + }, + { + "id": "116134", + "name": "Englewood Cliffs", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.88538000", + "longitude": "-73.95236000" + }, + { + "id": "116136", + "name": "Englishtown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.29733000", + "longitude": "-74.35820000" + }, + { + "id": "116173", + "name": "Erma", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "38.98776000", + "longitude": "-74.90170000" + }, + { + "id": "116195", + "name": "Essex County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.78707000", + "longitude": "-74.24687000" + }, + { + "id": "116198", + "name": "Essex Fells", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82454000", + "longitude": "-74.28459000" + }, + { + "id": "116204", + "name": "Estell Manor", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.41206000", + "longitude": "-74.74239000" + }, + { + "id": "116268", + "name": "Ewing", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.26983000", + "longitude": "-74.79988000" + }, + { + "id": "116282", + "name": "Fair Haven", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.36067000", + "longitude": "-74.03819000" + }, + { + "id": "116284", + "name": "Fair Lawn", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.94038000", + "longitude": "-74.13181000" + }, + { + "id": "116315", + "name": "Fairfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.88371000", + "longitude": "-74.30598000" + }, + { + "id": "116346", + "name": "Fairton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.38178000", + "longitude": "-75.21991000" + }, + { + "id": "116352", + "name": "Fairview", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.81260000", + "longitude": "-73.99903000" + }, + { + "id": "116394", + "name": "Fanwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.64094000", + "longitude": "-74.38348000" + }, + { + "id": "116410", + "name": "Farmingdale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.19650000", + "longitude": "-74.16848000" + }, + { + "id": "116515", + "name": "Finderne", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.56316000", + "longitude": "-74.57766000" + }, + { + "id": "116562", + "name": "Flemington", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.51233000", + "longitude": "-74.85933000" + }, + { + "id": "116582", + "name": "Florence", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.73428000", + "longitude": "-74.91822000" + }, + { + "id": "116591", + "name": "Florham Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.78788000", + "longitude": "-74.38821000" + }, + { + "id": "116624", + "name": "Folsom", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.60206000", + "longitude": "-74.84267000" + }, + { + "id": "116640", + "name": "Fords", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.52927000", + "longitude": "-74.31598000" + }, + { + "id": "116674", + "name": "Forked River", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.83984000", + "longitude": "-74.19014000" + }, + { + "id": "116706", + "name": "Fort Dix", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.02984000", + "longitude": "-74.61849000" + }, + { + "id": "116723", + "name": "Fort Lee", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85093000", + "longitude": "-73.97014000" + }, + { + "id": "116838", + "name": "Franklin", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.12204000", + "longitude": "-74.58044000" + }, + { + "id": "116842", + "name": "Franklin Center", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.53153000", + "longitude": "-74.54141000" + }, + { + "id": "116866", + "name": "Franklin Lakes", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.01676000", + "longitude": "-74.20570000" + }, + { + "id": "116869", + "name": "Franklin Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.43899000", + "longitude": "-74.53515000" + }, + { + "id": "116904", + "name": "Freehold", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.26011000", + "longitude": "-74.27376000" + }, + { + "id": "116934", + "name": "Frenchtown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.52621000", + "longitude": "-75.06156000" + }, + { + "id": "117081", + "name": "Garfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.88149000", + "longitude": "-74.11320000" + }, + { + "id": "117105", + "name": "Garwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.65177000", + "longitude": "-74.32293000" + }, + { + "id": "117183", + "name": "Gibbsboro", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.83817000", + "longitude": "-74.96489000" + }, + { + "id": "117184", + "name": "Gibbstown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.82511000", + "longitude": "-75.28352000" + }, + { + "id": "117238", + "name": "Gladstone", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.72260000", + "longitude": "-74.66544000" + }, + { + "id": "117251", + "name": "Glassboro", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.70289000", + "longitude": "-75.11184000" + }, + { + "id": "117266", + "name": "Glen Gardner", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.69677000", + "longitude": "-74.94072000" + }, + { + "id": "117271", + "name": "Glen Ridge", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.80538000", + "longitude": "-74.20376000" + }, + { + "id": "117273", + "name": "Glen Rock", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.96288000", + "longitude": "-74.13292000" + }, + { + "id": "117290", + "name": "Glendora", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.83956000", + "longitude": "-75.07351000" + }, + { + "id": "117323", + "name": "Gloucester City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.89178000", + "longitude": "-75.11629000" + }, + { + "id": "117324", + "name": "Gloucester County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.71731000", + "longitude": "-75.14167000" + }, + { + "id": "117354", + "name": "Golden Triangle", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.92789000", + "longitude": "-75.03878000" + }, + { + "id": "117600", + "name": "Green Knoll", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.60010000", + "longitude": "-74.61210000" + }, + { + "id": "117675", + "name": "Greentree", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.89706000", + "longitude": "-74.95572000" + }, + { + "id": "117766", + "name": "Groveville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.16983000", + "longitude": "-74.67155000" + }, + { + "id": "117817", + "name": "Guttenberg", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.79205000", + "longitude": "-74.00375000" + }, + { + "id": "117828", + "name": "Hackensack", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.88593000", + "longitude": "-74.04347000" + }, + { + "id": "117829", + "name": "Hackettstown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85399000", + "longitude": "-74.82906000" + }, + { + "id": "117831", + "name": "Haddon Heights", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.87734000", + "longitude": "-75.06462000" + }, + { + "id": "117832", + "name": "Haddonfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.89150000", + "longitude": "-75.03767000" + }, + { + "id": "117850", + "name": "Haledon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.93565000", + "longitude": "-74.18626000" + }, + { + "id": "117883", + "name": "Hamburg", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.15343000", + "longitude": "-74.57627000" + }, + { + "id": "117905", + "name": "Hamilton Square", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.22733000", + "longitude": "-74.65321000" + }, + { + "id": "117915", + "name": "Hammonton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.63651000", + "longitude": "-74.80239000" + }, + { + "id": "117933", + "name": "Hampton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.70704000", + "longitude": "-74.95600000" + }, + { + "id": "117973", + "name": "Hanover", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.80454000", + "longitude": "-74.36682000" + }, + { + "id": "118009", + "name": "Hardwick", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.05454000", + "longitude": "-74.93212000" + }, + { + "id": "118042", + "name": "Harrington Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.98371000", + "longitude": "-73.97986000" + }, + { + "id": "118058", + "name": "Harrison", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.74649000", + "longitude": "-74.15626000" + }, + { + "id": "118121", + "name": "Hasbrouck Heights", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85816000", + "longitude": "-74.08070000" + }, + { + "id": "118170", + "name": "Haworth", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.96093000", + "longitude": "-73.99014000" + }, + { + "id": "118173", + "name": "Hawthorne", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.94926000", + "longitude": "-74.15375000" + }, + { + "id": "118223", + "name": "Heathcote", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.38872000", + "longitude": "-74.57571000" + }, + { + "id": "118260", + "name": "Helmetta", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.37677000", + "longitude": "-74.42460000" + }, + { + "id": "118385", + "name": "High Bridge", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.66705000", + "longitude": "-74.89572000" + }, + { + "id": "118407", + "name": "Highland Lake", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.17676000", + "longitude": "-74.45655000" + }, + { + "id": "118413", + "name": "Highland Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.49594000", + "longitude": "-74.42432000" + }, + { + "id": "118418", + "name": "Highlands", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.40372000", + "longitude": "-73.99153000" + }, + { + "id": "118424", + "name": "Hightstown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.26955000", + "longitude": "-74.52321000" + }, + { + "id": "118461", + "name": "Hillsdale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.00260000", + "longitude": "-74.04042000" + }, + { + "id": "118464", + "name": "Hillside", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.70121000", + "longitude": "-74.23015000" + }, + { + "id": "118494", + "name": "Ho-Ho-Kus", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.99649000", + "longitude": "-74.10125000" + }, + { + "id": "118502", + "name": "Hoboken", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.74399000", + "longitude": "-74.03236000" + }, + { + "id": "118530", + "name": "Holiday City South", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.95324000", + "longitude": "-74.23778000" + }, + { + "id": "118531", + "name": "Holiday City-Berkeley", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.96380000", + "longitude": "-74.27803000" + }, + { + "id": "118532", + "name": "Holiday Heights", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.94595000", + "longitude": "-74.25403000" + }, + { + "id": "118640", + "name": "Hopatcong", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.93288000", + "longitude": "-74.65933000" + }, + { + "id": "118641", + "name": "Hopatcong Hills", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.94399000", + "longitude": "-74.67072000" + }, + { + "id": "118650", + "name": "Hopewell", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.38927000", + "longitude": "-74.76183000" + }, + { + "id": "118749", + "name": "Hudson County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.73094000", + "longitude": "-74.07594000" + }, + { + "id": "118789", + "name": "Hunterdon County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.56729000", + "longitude": "-74.91222000" + }, + { + "id": "119009", + "name": "Irvington", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.73232000", + "longitude": "-74.23487000" + }, + { + "id": "119019", + "name": "Iselin", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.57538000", + "longitude": "-74.32237000" + }, + { + "id": "119025", + "name": "Island Heights", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.94206000", + "longitude": "-74.14986000" + }, + { + "id": "119066", + "name": "Jackson", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.77650000", + "longitude": "-74.86238000" + }, + { + "id": "119118", + "name": "Jamesburg", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.35261000", + "longitude": "-74.44015000" + }, + { + "id": "119231", + "name": "Jersey City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.72816000", + "longitude": "-74.07764000" + }, + { + "id": "119406", + "name": "Keansburg", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.44177000", + "longitude": "-74.12986000" + }, + { + "id": "119412", + "name": "Kearny", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.76843000", + "longitude": "-74.14542000" + }, + { + "id": "119449", + "name": "Kendall Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.42094000", + "longitude": "-74.56071000" + }, + { + "id": "119457", + "name": "Kenilworth", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.67649000", + "longitude": "-74.29070000" + }, + { + "id": "119502", + "name": "Kenvil", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.87982000", + "longitude": "-74.61849000" + }, + { + "id": "119544", + "name": "Keyport", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.43316000", + "longitude": "-74.19959000" + }, + { + "id": "119626", + "name": "Kingston", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.37538000", + "longitude": "-74.61349000" + }, + { + "id": "119631", + "name": "Kingston Estates", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.92372000", + "longitude": "-74.98795000" + }, + { + "id": "119639", + "name": "Kinnelon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.00176000", + "longitude": "-74.36710000" + }, + { + "id": "119888", + "name": "Lake Como", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.15984000", + "longitude": "-74.02819000" + }, + { + "id": "119944", + "name": "Lake Mohawk", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.01843000", + "longitude": "-74.66016000" + }, + { + "id": "119985", + "name": "Lake Telemark", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.95677000", + "longitude": "-74.49793000" + }, + { + "id": "120011", + "name": "Lakehurst", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.01456000", + "longitude": "-74.31126000" + }, + { + "id": "120048", + "name": "Lakewood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.09789000", + "longitude": "-74.21764000" + }, + { + "id": "120069", + "name": "Lambertville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.36594000", + "longitude": "-74.94294000" + }, + { + "id": "120098", + "name": "Landing", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.90510000", + "longitude": "-74.66516000" + }, + { + "id": "120199", + "name": "Laurel Lake", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.33956000", + "longitude": "-75.02990000" + }, + { + "id": "120201", + "name": "Laurel Springs", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.82011000", + "longitude": "-75.00628000" + }, + { + "id": "120205", + "name": "Laurence Harbor", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.45677000", + "longitude": "-74.24653000" + }, + { + "id": "120216", + "name": "Lavallette", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.97040000", + "longitude": "-74.06875000" + }, + { + "id": "120223", + "name": "Lawnside", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.86650000", + "longitude": "-75.02823000" + }, + { + "id": "120246", + "name": "Lawrenceville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.29733000", + "longitude": "-74.72960000" + }, + { + "id": "120292", + "name": "Lebanon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.64177000", + "longitude": "-74.83600000" + }, + { + "id": "120341", + "name": "Leisure Knoll", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.01901000", + "longitude": "-74.29209000" + }, + { + "id": "120342", + "name": "Leisure Village", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.04262000", + "longitude": "-74.18486000" + }, + { + "id": "120343", + "name": "Leisure Village East", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.03012000", + "longitude": "-74.16431000" + }, + { + "id": "120344", + "name": "Leisure Village West-Pine Lake Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.00416000", + "longitude": "-74.26629000" + }, + { + "id": "120346", + "name": "Leisuretowne", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.89234000", + "longitude": "-74.70210000" + }, + { + "id": "120389", + "name": "Leonardo", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.41733000", + "longitude": "-74.06208000" + }, + { + "id": "120391", + "name": "Leonia", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.86149000", + "longitude": "-73.98819000" + }, + { + "id": "120542", + "name": "Lincoln Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.92427000", + "longitude": "-74.30209000" + }, + { + "id": "120556", + "name": "Lincroft", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.33067000", + "longitude": "-74.12097000" + }, + { + "id": "120564", + "name": "Linden", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.62205000", + "longitude": "-74.24459000" + }, + { + "id": "120569", + "name": "Lindenwold", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.82428000", + "longitude": "-74.99767000" + }, + { + "id": "120592", + "name": "Linwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.33984000", + "longitude": "-74.57516000" + }, + { + "id": "120618", + "name": "Little Falls", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.86899000", + "longitude": "-74.20820000" + }, + { + "id": "120620", + "name": "Little Ferry", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85288000", + "longitude": "-74.04208000" + }, + { + "id": "120630", + "name": "Little Silver", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.33678000", + "longitude": "-74.04708000" + }, + { + "id": "120651", + "name": "Livingston", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.79593000", + "longitude": "-74.31487000" + }, + { + "id": "120689", + "name": "Lodi", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.88232000", + "longitude": "-74.08320000" + }, + { + "id": "120740", + "name": "Long Branch", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.30428000", + "longitude": "-73.99236000" + }, + { + "id": "120750", + "name": "Long Valley", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.78593000", + "longitude": "-74.78016000" + }, + { + "id": "120921", + "name": "Lyndhurst", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.81204000", + "longitude": "-74.12431000" + }, + { + "id": "120998", + "name": "Madison", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.75982000", + "longitude": "-74.41710000" + }, + { + "id": "121024", + "name": "Madison Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.45150000", + "longitude": "-74.30792000" + }, + { + "id": "121037", + "name": "Magnolia", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.85456000", + "longitude": "-75.03906000" + }, + { + "id": "121048", + "name": "Mahwah", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.08871000", + "longitude": "-74.14376000" + }, + { + "id": "121079", + "name": "Manahawkin", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.69540000", + "longitude": "-74.25875000" + }, + { + "id": "121081", + "name": "Manasquan", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.12623000", + "longitude": "-74.04930000" + }, + { + "id": "121162", + "name": "Manville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.54094000", + "longitude": "-74.58766000" + }, + { + "id": "121172", + "name": "Maple Shade", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.95261000", + "longitude": "-74.99239000" + }, + { + "id": "121179", + "name": "Maplewood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.73121000", + "longitude": "-74.27348000" + }, + { + "id": "121207", + "name": "Margate City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.32789000", + "longitude": "-74.50349000" + }, + { + "id": "121274", + "name": "Marlboro", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.31539000", + "longitude": "-74.24626000" + }, + { + "id": "121288", + "name": "Marlton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.89122000", + "longitude": "-74.92183000" + }, + { + "id": "121351", + "name": "Martinsville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.60121000", + "longitude": "-74.55905000" + }, + { + "id": "121400", + "name": "Matawan", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.41483000", + "longitude": "-74.22959000" + }, + { + "id": "121447", + "name": "Mays Landing", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.45234000", + "longitude": "-74.72766000" + }, + { + "id": "121458", + "name": "Maywood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.90260000", + "longitude": "-74.06181000" + }, + { + "id": "121507", + "name": "McGuire AFB", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.03977000", + "longitude": "-74.58174000" + }, + { + "id": "121597", + "name": "Medford Lakes", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.85845000", + "longitude": "-74.80294000" + }, + { + "id": "121651", + "name": "Mendham", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.77593000", + "longitude": "-74.60071000" + }, + { + "id": "121679", + "name": "Mercer County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.28340000", + "longitude": "-74.70169000" + }, + { + "id": "121684", + "name": "Mercerville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.23705000", + "longitude": "-74.68655000" + }, + { + "id": "121685", + "name": "Mercerville-Hamilton Square", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.23126000", + "longitude": "-74.67223000" + }, + { + "id": "121686", + "name": "Merchantville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.94734000", + "longitude": "-75.06656000" + }, + { + "id": "121738", + "name": "Metuchen", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.54316000", + "longitude": "-74.36320000" + }, + { + "id": "121774", + "name": "Middlebush", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.49760000", + "longitude": "-74.52932000" + }, + { + "id": "121777", + "name": "Middlesex", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.57260000", + "longitude": "-74.49265000" + }, + { + "id": "121781", + "name": "Middlesex County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.44004000", + "longitude": "-74.40889000" + }, + { + "id": "121806", + "name": "Midland Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.98926000", + "longitude": "-74.14070000" + }, + { + "id": "121854", + "name": "Milford", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.56871000", + "longitude": "-75.09462000" + }, + { + "id": "121902", + "name": "Milltown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.45622000", + "longitude": "-74.44321000" + }, + { + "id": "121904", + "name": "Millville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.40206000", + "longitude": "-75.03934000" + }, + { + "id": "122045", + "name": "Monmouth Beach", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.33039000", + "longitude": "-73.98153000" + }, + { + "id": "122046", + "name": "Monmouth County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.28755000", + "longitude": "-74.15815000" + }, + { + "id": "122047", + "name": "Monmouth Junction", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.37900000", + "longitude": "-74.54654000" + }, + { + "id": "122106", + "name": "Montclair", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82593000", + "longitude": "-74.20903000" + }, + { + "id": "122187", + "name": "Montvale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.04676000", + "longitude": "-74.02292000" + }, + { + "id": "122198", + "name": "Moonachie", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.84121000", + "longitude": "-74.04514000" + }, + { + "id": "122208", + "name": "Moorestown-Lenola", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.96591000", + "longitude": "-74.96441000" + }, + { + "id": "122254", + "name": "Morganville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.37650000", + "longitude": "-74.24431000" + }, + { + "id": "122271", + "name": "Morris County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.86203000", + "longitude": "-74.54444000" + }, + { + "id": "122274", + "name": "Morris Plains", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82177000", + "longitude": "-74.48099000" + }, + { + "id": "122282", + "name": "Morristown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.79677000", + "longitude": "-74.48154000" + }, + { + "id": "122333", + "name": "Mount Arlington", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.92593000", + "longitude": "-74.63488000" + }, + { + "id": "122342", + "name": "Mount Ephraim", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.87845000", + "longitude": "-75.09267000" + }, + { + "id": "122348", + "name": "Mount Holly", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.99289000", + "longitude": "-74.78766000" + }, + { + "id": "122361", + "name": "Mount Laurel", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.93400000", + "longitude": "-74.89100000" + }, + { + "id": "122422", + "name": "Mountain Lakes", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.89482000", + "longitude": "-74.43293000" + }, + { + "id": "122438", + "name": "Mountainside", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.67232000", + "longitude": "-74.35737000" + }, + { + "id": "122461", + "name": "Mullica Hill", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.73928000", + "longitude": "-75.22407000" + }, + { + "id": "122527", + "name": "Mystic Island", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.54428000", + "longitude": "-74.38237000" + }, + { + "id": "122593", + "name": "National Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.86595000", + "longitude": "-75.17879000" + }, + { + "id": "122604", + "name": "Navesink", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.39955000", + "longitude": "-74.03542000" + }, + { + "id": "122638", + "name": "Neptune City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.20011000", + "longitude": "-74.02792000" + }, + { + "id": "122645", + "name": "Netcong", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.89899000", + "longitude": "-74.70655000" + }, + { + "id": "122677", + "name": "New Brunswick", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.48622000", + "longitude": "-74.45182000" + }, + { + "id": "122703", + "name": "New Egypt", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.06761000", + "longitude": "-74.53071000" + }, + { + "id": "122755", + "name": "New Milford", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.93510000", + "longitude": "-74.01903000" + }, + { + "id": "122768", + "name": "New Providence", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.69843000", + "longitude": "-74.40154000" + }, + { + "id": "122803", + "name": "Newark", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.73566000", + "longitude": "-74.17237000" + }, + { + "id": "122828", + "name": "Newfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.54688000", + "longitude": "-75.02636000" + }, + { + "id": "122867", + "name": "Newton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.05815000", + "longitude": "-74.75267000" + }, + { + "id": "122965", + "name": "North Arlington", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.78843000", + "longitude": "-74.13320000" + }, + { + "id": "122978", + "name": "North Beach Haven", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.57317000", + "longitude": "-74.23153000" + }, + { + "id": "122987", + "name": "North Bergen", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.80427000", + "longitude": "-74.01208000" + }, + { + "id": "122999", + "name": "North Caldwell", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.86482000", + "longitude": "-74.25820000" + }, + { + "id": "123000", + "name": "North Cape May", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "38.98206000", + "longitude": "-74.95795000" + }, + { + "id": "123034", + "name": "North Haledon", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.95510000", + "longitude": "-74.18598000" + }, + { + "id": "123068", + "name": "North Middletown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.43955000", + "longitude": "-74.11903000" + }, + { + "id": "123080", + "name": "North Plainfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.63010000", + "longitude": "-74.42737000" + }, + { + "id": "123129", + "name": "North Wildwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.00067000", + "longitude": "-74.79933000" + }, + { + "id": "123149", + "name": "Northfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.37039000", + "longitude": "-74.55015000" + }, + { + "id": "123169", + "name": "Northvale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.00649000", + "longitude": "-73.94903000" + }, + { + "id": "123200", + "name": "Norwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.99815000", + "longitude": "-73.96180000" + }, + { + "id": "123219", + "name": "Nutley", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82232000", + "longitude": "-74.15987000" + }, + { + "id": "123265", + "name": "Oak Valley", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.80122000", + "longitude": "-75.16240000" + }, + { + "id": "123280", + "name": "Oakhurst", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.27094000", + "longitude": "-74.01625000" + }, + { + "id": "123290", + "name": "Oakland", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.01315000", + "longitude": "-74.26431000" + }, + { + "id": "123301", + "name": "Oaklyn", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.90095000", + "longitude": "-75.08462000" + }, + { + "id": "123323", + "name": "Ocean Acres", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.74345000", + "longitude": "-74.28098000" + }, + { + "id": "123327", + "name": "Ocean City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.27762000", + "longitude": "-74.57460000" + }, + { + "id": "123328", + "name": "Ocean County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.86600000", + "longitude": "-74.25003000" + }, + { + "id": "123329", + "name": "Ocean Gate", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.92679000", + "longitude": "-74.13375000" + }, + { + "id": "123331", + "name": "Ocean Grove", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.21206000", + "longitude": "-74.00653000" + }, + { + "id": "123342", + "name": "Oceanport", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.31817000", + "longitude": "-74.01514000" + }, + { + "id": "123371", + "name": "Ogdensburg", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.08176000", + "longitude": "-74.59238000" + }, + { + "id": "123416", + "name": "Old Bridge", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.41483000", + "longitude": "-74.36543000" + }, + { + "id": "123429", + "name": "Old Tappan", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.01065000", + "longitude": "-73.99125000" + }, + { + "id": "123445", + "name": "Olivet", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.54817000", + "longitude": "-75.15463000" + }, + { + "id": "123503", + "name": "Oradell", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.95871000", + "longitude": "-74.03681000" + }, + { + "id": "123509", + "name": "Orange", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.77066000", + "longitude": "-74.23265000" + }, + { + "id": "123686", + "name": "Oxford", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.80315000", + "longitude": "-74.98962000" + }, + { + "id": "123739", + "name": "Palisades Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.84816000", + "longitude": "-73.99764000" + }, + { + "id": "123775", + "name": "Palmyra", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.00706000", + "longitude": "-75.02823000" + }, + { + "id": "123826", + "name": "Paramus", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.94454000", + "longitude": "-74.07542000" + }, + { + "id": "123852", + "name": "Park Ridge", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.03760000", + "longitude": "-74.04070000" + }, + { + "id": "123890", + "name": "Parsippany", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85788000", + "longitude": "-74.42599000" + }, + { + "id": "123907", + "name": "Passaic", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85677000", + "longitude": "-74.12848000" + }, + { + "id": "123908", + "name": "Passaic County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.03370000", + "longitude": "-74.30032000" + }, + { + "id": "123911", + "name": "Paterson", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.91677000", + "longitude": "-74.17181000" + }, + { + "id": "123926", + "name": "Paulsboro", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.83039000", + "longitude": "-75.24046000" + }, + { + "id": "123961", + "name": "Peapack", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.71677000", + "longitude": "-74.65655000" + }, + { + "id": "124000", + "name": "Pemberton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.97206000", + "longitude": "-74.68294000" + }, + { + "id": "124001", + "name": "Pemberton Heights", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.96261000", + "longitude": "-74.67877000" + }, + { + "id": "124029", + "name": "Pennington", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.32844000", + "longitude": "-74.79072000" + }, + { + "id": "124033", + "name": "Penns Grove", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.72956000", + "longitude": "-75.46797000" + }, + { + "id": "124034", + "name": "Pennsauken", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.95622000", + "longitude": "-75.05795000" + }, + { + "id": "124039", + "name": "Pennsville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.65345000", + "longitude": "-75.51659000" + }, + { + "id": "124094", + "name": "Perth Amboy", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.50677000", + "longitude": "-74.26542000" + }, + { + "id": "124140", + "name": "Phillipsburg", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.69371000", + "longitude": "-75.19018000" + }, + { + "id": "124213", + "name": "Pine Beach", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.93595000", + "longitude": "-74.17097000" + }, + { + "id": "124224", + "name": "Pine Hill", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.78428000", + "longitude": "-74.99211000" + }, + { + "id": "124233", + "name": "Pine Lake Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.00317000", + "longitude": "-74.25653000" + }, + { + "id": "124245", + "name": "Pine Ridge at Crestwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.95456000", + "longitude": "-74.31515000" + }, + { + "id": "124282", + "name": "Piscataway", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.49927000", + "longitude": "-74.39904000" + }, + { + "id": "124287", + "name": "Pitman", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.73289000", + "longitude": "-75.13157000" + }, + { + "id": "124321", + "name": "Plainfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.63371000", + "longitude": "-74.40737000" + }, + { + "id": "124327", + "name": "Plainsboro Center", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.33177000", + "longitude": "-74.59460000" + }, + { + "id": "124386", + "name": "Pleasantville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.38984000", + "longitude": "-74.52404000" + }, + { + "id": "124431", + "name": "Point Pleasant", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.08317000", + "longitude": "-74.06819000" + }, + { + "id": "124432", + "name": "Point Pleasant Beach", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.09123000", + "longitude": "-74.04791000" + }, + { + "id": "124457", + "name": "Pomona", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.47845000", + "longitude": "-74.57516000" + }, + { + "id": "124462", + "name": "Pompton Lakes", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.00538000", + "longitude": "-74.29070000" + }, + { + "id": "124519", + "name": "Port Monmouth", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.43011000", + "longitude": "-74.09847000" + }, + { + "id": "124522", + "name": "Port Norris", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.24595000", + "longitude": "-75.03518000" + }, + { + "id": "124527", + "name": "Port Reading", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.56538000", + "longitude": "-74.26042000" + }, + { + "id": "124528", + "name": "Port Republic", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.52067000", + "longitude": "-74.48571000" + }, + { + "id": "124646", + "name": "Presidential Lakes Estates", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.91373000", + "longitude": "-74.56460000" + }, + { + "id": "124689", + "name": "Princeton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.34872000", + "longitude": "-74.65905000" + }, + { + "id": "124692", + "name": "Princeton Junction", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.31733000", + "longitude": "-74.61988000" + }, + { + "id": "124693", + "name": "Princeton Meadows", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.33177000", + "longitude": "-74.56377000" + }, + { + "id": "124710", + "name": "Prospect Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.93704000", + "longitude": "-74.17431000" + }, + { + "id": "124822", + "name": "Rahway", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.60816000", + "longitude": "-74.27765000" + }, + { + "id": "124837", + "name": "Ramblewood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.92872000", + "longitude": "-74.94378000" + }, + { + "id": "124842", + "name": "Ramsey", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.05732000", + "longitude": "-74.14098000" + }, + { + "id": "124845", + "name": "Ramtown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.12095000", + "longitude": "-74.14375000" + }, + { + "id": "124871", + "name": "Randolph", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.84829000", + "longitude": "-74.58148000" + }, + { + "id": "124899", + "name": "Raritan", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.56955000", + "longitude": "-74.63294000" + }, + { + "id": "124938", + "name": "Red Bank", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.34705000", + "longitude": "-74.06431000" + }, + { + "id": "125110", + "name": "Richwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.72261000", + "longitude": "-75.16546000" + }, + { + "id": "125120", + "name": "Ridgefield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.83427000", + "longitude": "-74.00875000" + }, + { + "id": "125122", + "name": "Ridgefield Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85704000", + "longitude": "-74.02153000" + }, + { + "id": "125131", + "name": "Ridgewood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.97926000", + "longitude": "-74.11653000" + }, + { + "id": "125145", + "name": "Ringwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.11343000", + "longitude": "-74.24543000" + }, + { + "id": "125153", + "name": "Rio Grande", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.01456000", + "longitude": "-74.88156000" + }, + { + "id": "125177", + "name": "River Edge", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.92871000", + "longitude": "-74.03986000" + }, + { + "id": "125188", + "name": "River Vale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.99538000", + "longitude": "-74.01208000" + }, + { + "id": "125194", + "name": "Riverdale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.99399000", + "longitude": "-74.30348000" + }, + { + "id": "125212", + "name": "Riverton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.01150000", + "longitude": "-75.01489000" + }, + { + "id": "125238", + "name": "Robbinsville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.21455000", + "longitude": "-74.61932000" + }, + { + "id": "125248", + "name": "Robertsville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.34622000", + "longitude": "-74.28792000" + }, + { + "id": "125260", + "name": "Rochelle Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.90732000", + "longitude": "-74.07514000" + }, + { + "id": "125289", + "name": "Rockaway", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.90121000", + "longitude": "-74.51432000" + }, + { + "id": "125343", + "name": "Roebling", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.11594000", + "longitude": "-74.78627000" + }, + { + "id": "125423", + "name": "Roseland", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82066000", + "longitude": "-74.29376000" + }, + { + "id": "125427", + "name": "Roselle", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.65223000", + "longitude": "-74.25882000" + }, + { + "id": "125428", + "name": "Roselle Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.66455000", + "longitude": "-74.26431000" + }, + { + "id": "125436", + "name": "Rosenhayn", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.47817000", + "longitude": "-75.13129000" + }, + { + "id": "125454", + "name": "Rossmoor", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.33650000", + "longitude": "-74.47349000" + }, + { + "id": "125509", + "name": "Rumson", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.37205000", + "longitude": "-73.99903000" + }, + { + "id": "125513", + "name": "Runnemede", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.85234000", + "longitude": "-75.06795000" + }, + { + "id": "125549", + "name": "Rutherford", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82649000", + "longitude": "-74.10681000" + }, + { + "id": "125579", + "name": "Saddle Brook", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.89899000", + "longitude": "-74.09264000" + }, + { + "id": "125581", + "name": "Saddle River", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.03176000", + "longitude": "-74.10209000" + }, + { + "id": "125729", + "name": "Salem", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.57178000", + "longitude": "-75.46714000" + }, + { + "id": "125741", + "name": "Salem County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.57658000", + "longitude": "-75.35791000" + }, + { + "id": "125991", + "name": "Sayreville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.45927000", + "longitude": "-74.36098000" + }, + { + "id": "125992", + "name": "Sayreville Junction", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.46538000", + "longitude": "-74.33043000" + }, + { + "id": "126032", + "name": "Scotch Plains", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.65538000", + "longitude": "-74.38987000" + }, + { + "id": "126071", + "name": "Sea Bright", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.36150000", + "longitude": "-73.97403000" + }, + { + "id": "126073", + "name": "Sea Girt", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.13206000", + "longitude": "-74.03458000" + }, + { + "id": "126074", + "name": "Sea Isle City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.15345000", + "longitude": "-74.69294000" + }, + { + "id": "126081", + "name": "Seabrook Farms", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.50095000", + "longitude": "-75.21796000" + }, + { + "id": "126101", + "name": "Seaside Heights", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.94429000", + "longitude": "-74.07291000" + }, + { + "id": "126102", + "name": "Seaside Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.92679000", + "longitude": "-74.07708000" + }, + { + "id": "126112", + "name": "Secaucus", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.78955000", + "longitude": "-74.05653000" + }, + { + "id": "126190", + "name": "Sewaren", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.55205000", + "longitude": "-74.25876000" + }, + { + "id": "126225", + "name": "Shark River Hills", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.19400000", + "longitude": "-74.04875000" + }, + { + "id": "126356", + "name": "Ship Bottom", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.64290000", + "longitude": "-74.18042000" + }, + { + "id": "126376", + "name": "Short Hills", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.74788000", + "longitude": "-74.32543000" + }, + { + "id": "126386", + "name": "Shrewsbury", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.32955000", + "longitude": "-74.06153000" + }, + { + "id": "126393", + "name": "Sicklerville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.71734000", + "longitude": "-74.96933000" + }, + { + "id": "126433", + "name": "Silver Ridge", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.95928000", + "longitude": "-74.21848000" + }, + { + "id": "126454", + "name": "Singac", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.88677000", + "longitude": "-74.24098000" + }, + { + "id": "126473", + "name": "Sixmile Run", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.45761000", + "longitude": "-74.51154000" + }, + { + "id": "126527", + "name": "Smithville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.49401000", + "longitude": "-74.45709000" + }, + { + "id": "126556", + "name": "Society Hill", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.53399000", + "longitude": "-74.45793000" + }, + { + "id": "126574", + "name": "Somerdale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.84400000", + "longitude": "-75.02267000" + }, + { + "id": "126578", + "name": "Somers Point", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.31762000", + "longitude": "-74.59460000" + }, + { + "id": "126583", + "name": "Somerset", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.49760000", + "longitude": "-74.48849000" + }, + { + "id": "126588", + "name": "Somerset County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.56351000", + "longitude": "-74.61631000" + }, + { + "id": "126596", + "name": "Somerville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.57427000", + "longitude": "-74.60988000" + }, + { + "id": "126612", + "name": "South Amboy", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.47788000", + "longitude": "-74.29070000" + }, + { + "id": "126622", + "name": "South Belmar", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.17095000", + "longitude": "-74.02736000" + }, + { + "id": "126630", + "name": "South Bound Brook", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.55344000", + "longitude": "-74.53154000" + }, + { + "id": "126697", + "name": "South Old Bridge", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.40816000", + "longitude": "-74.35432000" + }, + { + "id": "126698", + "name": "South Orange", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.74899000", + "longitude": "-74.26126000" + }, + { + "id": "126711", + "name": "South Plainfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.57927000", + "longitude": "-74.41154000" + }, + { + "id": "126717", + "name": "South River", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.44649000", + "longitude": "-74.38598000" + }, + { + "id": "126736", + "name": "South Toms River", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.94206000", + "longitude": "-74.20431000" + }, + { + "id": "126743", + "name": "South Vineland", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.44595000", + "longitude": "-75.02879000" + }, + { + "id": "126812", + "name": "Sparta", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.03343000", + "longitude": "-74.63849000" + }, + { + "id": "126846", + "name": "Spotswood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.39177000", + "longitude": "-74.39848000" + }, + { + "id": "126867", + "name": "Spring Lake", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.15345000", + "longitude": "-74.02819000" + }, + { + "id": "126868", + "name": "Spring Lake Heights", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.15039000", + "longitude": "-74.03097000" + }, + { + "id": "126885", + "name": "Springdale", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.90261000", + "longitude": "-74.96628000" + }, + { + "id": "126900", + "name": "Springfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.70491000", + "longitude": "-74.31723000" + }, + { + "id": "126956", + "name": "Stanhope", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.90288000", + "longitude": "-74.70905000" + }, + { + "id": "127122", + "name": "Stratford", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.82678000", + "longitude": "-75.01545000" + }, + { + "id": "127130", + "name": "Strathmore", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.39594000", + "longitude": "-74.21348000" + }, + { + "id": "127160", + "name": "Succasunna", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.86843000", + "longitude": "-74.64044000" + }, + { + "id": "127213", + "name": "Summit", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.71562000", + "longitude": "-74.36468000" + }, + { + "id": "127286", + "name": "Surf City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.66206000", + "longitude": "-74.16514000" + }, + { + "id": "127301", + "name": "Sussex", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.20982000", + "longitude": "-74.60766000" + }, + { + "id": "127305", + "name": "Sussex County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.13946000", + "longitude": "-74.69023000" + }, + { + "id": "127334", + "name": "Swedesboro", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.74761000", + "longitude": "-75.31047000" + }, + { + "id": "127475", + "name": "Teaneck", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.89760000", + "longitude": "-74.01597000" + }, + { + "id": "127506", + "name": "Ten Mile Run", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.41301000", + "longitude": "-74.60223000" + }, + { + "id": "127507", + "name": "Tenafly", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.92538000", + "longitude": "-73.96292000" + }, + { + "id": "127667", + "name": "Tinton Falls", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.30428000", + "longitude": "-74.10042000" + }, + { + "id": "127716", + "name": "Toms River", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.95373000", + "longitude": "-74.19792000" + }, + { + "id": "127747", + "name": "Totowa", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.90510000", + "longitude": "-74.20987000" + }, + { + "id": "127808", + "name": "Trenton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.21705000", + "longitude": "-74.74294000" + }, + { + "id": "127873", + "name": "Tuckerton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.60317000", + "longitude": "-74.34015000" + }, + { + "id": "127906", + "name": "Turnersville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.77317000", + "longitude": "-75.05128000" + }, + { + "id": "127934", + "name": "Twin Rivers", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.26400000", + "longitude": "-74.49126000" + }, + { + "id": "127977", + "name": "Union", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.69760000", + "longitude": "-74.26320000" + }, + { + "id": "127979", + "name": "Union Beach", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.44650000", + "longitude": "-74.17820000" + }, + { + "id": "127985", + "name": "Union City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.77955000", + "longitude": "-74.02375000" + }, + { + "id": "127999", + "name": "Union County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.65980000", + "longitude": "-74.30859000" + }, + { + "id": "128047", + "name": "Upper Montclair", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.84621000", + "longitude": "-74.20126000" + }, + { + "id": "128049", + "name": "Upper Pohatcong", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.67747000", + "longitude": "-75.15580000" + }, + { + "id": "128050", + "name": "Upper Saddle River", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.05843000", + "longitude": "-74.09848000" + }, + { + "id": "128174", + "name": "Ventnor City", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.34039000", + "longitude": "-74.47737000" + }, + { + "id": "128191", + "name": "Vernon Center", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.18879000", + "longitude": "-74.50405000" + }, + { + "id": "128196", + "name": "Vernon Valley", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.23676000", + "longitude": "-74.48710000" + }, + { + "id": "128203", + "name": "Verona", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.82982000", + "longitude": "-74.24015000" + }, + { + "id": "128225", + "name": "Victory Gardens", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.87593000", + "longitude": "-74.54238000" + }, + { + "id": "128226", + "name": "Victory Lakes", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.63317000", + "longitude": "-74.96600000" + }, + { + "id": "128258", + "name": "Villas", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.02872000", + "longitude": "-74.93851000" + }, + { + "id": "128266", + "name": "Vincentown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.93400000", + "longitude": "-74.74849000" + }, + { + "id": "128270", + "name": "Vineland", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.48623000", + "longitude": "-75.02573000" + }, + { + "id": "128296", + "name": "Vista Center", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.15928000", + "longitude": "-74.31792000" + }, + { + "id": "128306", + "name": "Voorhees", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.48122000", + "longitude": "-74.48321000" + }, + { + "id": "128378", + "name": "Waldwick", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.01065000", + "longitude": "-74.11792000" + }, + { + "id": "128408", + "name": "Wallington", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85316000", + "longitude": "-74.11375000" + }, + { + "id": "128447", + "name": "Wanamassa", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.23178000", + "longitude": "-74.02542000" + }, + { + "id": "128449", + "name": "Wanaque", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.03815000", + "longitude": "-74.29404000" + }, + { + "id": "128466", + "name": "Waretown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.79151000", + "longitude": "-74.19514000" + }, + { + "id": "128496", + "name": "Warren County", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.85725000", + "longitude": "-74.99702000" + }, + { + "id": "128500", + "name": "Warren Township", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.60822000", + "longitude": "-74.51803000" + }, + { + "id": "128548", + "name": "Washington", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.75843000", + "longitude": "-74.97934000" + }, + { + "id": "128598", + "name": "Watchung", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.63788000", + "longitude": "-74.45099000" + }, + { + "id": "128685", + "name": "Wayne", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.92538000", + "longitude": "-74.27654000" + }, + { + "id": "128754", + "name": "Weehawken", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.76955000", + "longitude": "-74.02042000" + }, + { + "id": "128803", + "name": "Wenonah", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.79456000", + "longitude": "-75.14879000" + }, + { + "id": "128824", + "name": "West Belmar", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.16928000", + "longitude": "-74.03542000" + }, + { + "id": "128840", + "name": "West Cape May", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "38.93872000", + "longitude": "-74.94184000" + }, + { + "id": "128874", + "name": "West Freehold", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.24206000", + "longitude": "-74.30126000" + }, + { + "id": "128922", + "name": "West Long Branch", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.29039000", + "longitude": "-74.01764000" + }, + { + "id": "128932", + "name": "West Milford", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.13121000", + "longitude": "-74.36737000" + }, + { + "id": "128938", + "name": "West New York", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.78788000", + "longitude": "-74.01431000" + }, + { + "id": "128946", + "name": "West Orange", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.79871000", + "longitude": "-74.23904000" + }, + { + "id": "129029", + "name": "Westfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.65899000", + "longitude": "-74.34737000" + }, + { + "id": "129062", + "name": "Weston", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.53510000", + "longitude": "-74.59071000" + }, + { + "id": "129076", + "name": "Westville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.86789000", + "longitude": "-75.13156000" + }, + { + "id": "129086", + "name": "Westwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.99121000", + "longitude": "-74.03264000" + }, + { + "id": "129103", + "name": "Wharton", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.89315000", + "longitude": "-74.58183000" + }, + { + "id": "129142", + "name": "White Horse", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.19067000", + "longitude": "-74.70238000" + }, + { + "id": "129146", + "name": "White Meadow Lake", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.92371000", + "longitude": "-74.51071000" + }, + { + "id": "129175", + "name": "Whitehouse Station", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.61538000", + "longitude": "-74.77044000" + }, + { + "id": "129181", + "name": "Whitesboro", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.03900000", + "longitude": "-74.85684000" + }, + { + "id": "129184", + "name": "Whitesboro-Burleigh", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.04305000", + "longitude": "-74.86538000" + }, + { + "id": "129211", + "name": "Whittingham", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.32982000", + "longitude": "-74.44511000" + }, + { + "id": "129238", + "name": "Wildwood", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "38.99178000", + "longitude": "-74.81489000" + }, + { + "id": "129241", + "name": "Wildwood Crest", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "38.97484000", + "longitude": "-74.83350000" + }, + { + "id": "129286", + "name": "Williamstown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.68623000", + "longitude": "-74.99517000" + }, + { + "id": "129294", + "name": "Willingboro", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.02789000", + "longitude": "-74.86905000" + }, + { + "id": "129399", + "name": "Winfield", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.64260000", + "longitude": "-74.28543000" + }, + { + "id": "129491", + "name": "Wood-Lynne", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.91734000", + "longitude": "-75.09629000" + }, + { + "id": "129492", + "name": "Wood-Ridge", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.84566000", + "longitude": "-74.08792000" + }, + { + "id": "129495", + "name": "Woodbine", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.24178000", + "longitude": "-74.81517000" + }, + { + "id": "129501", + "name": "Woodbridge", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.55760000", + "longitude": "-74.28459000" + }, + { + "id": "129506", + "name": "Woodbury", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.83817000", + "longitude": "-75.15268000" + }, + { + "id": "129513", + "name": "Woodbury Heights", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.81706000", + "longitude": "-75.15518000" + }, + { + "id": "129514", + "name": "Woodcliff Lake", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.02343000", + "longitude": "-74.06653000" + }, + { + "id": "129532", + "name": "Woodland Park", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.88982000", + "longitude": "-74.19487000" + }, + { + "id": "129568", + "name": "Woodstown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "39.65150000", + "longitude": "-75.32825000" + }, + { + "id": "129623", + "name": "Wyckoff", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "41.00954000", + "longitude": "-74.17292000" + }, + { + "id": "129665", + "name": "Yardville", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.18122000", + "longitude": "-74.66432000" + }, + { + "id": "129701", + "name": "Yorketown", + "state_id": 1417, + "state_code": "NJ", + "country_id": 233, + "country_code": "US", + "latitude": "40.30789000", + "longitude": "-74.33765000" + }, + { + "id": "111060", + "name": "Agua Fria", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.65448000", + "longitude": "-106.02224000" + }, + { + "id": "111094", + "name": "Alamo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.42089000", + "longitude": "-107.51088000" + }, + { + "id": "111097", + "name": "Alamogordo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.89953000", + "longitude": "-105.96027000" + }, + { + "id": "111130", + "name": "Albuquerque", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.08449000", + "longitude": "-106.65114000" + }, + { + "id": "111335", + "name": "Angel Fire", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.39309000", + "longitude": "-105.28501000" + }, + { + "id": "111369", + "name": "Anthony", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.00399000", + "longitude": "-106.60583000" + }, + { + "id": "111446", + "name": "Arenas Valley", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.79396000", + "longitude": "-108.18421000" + }, + { + "id": "111495", + "name": "Arroyo Seco", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.51669000", + "longitude": "-105.56918000" + }, + { + "id": "111497", + "name": "Artesia", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.84233000", + "longitude": "-104.40330000" + }, + { + "id": "111605", + "name": "Atoka", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.76956000", + "longitude": "-104.38885000" + }, + { + "id": "111712", + "name": "Aztec", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.82223000", + "longitude": "-107.99285000" + }, + { + "id": "111937", + "name": "Bayard", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.76174000", + "longitude": "-108.13060000" + }, + { + "id": "112054", + "name": "Belen", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.66284000", + "longitude": "-106.77642000" + }, + { + "id": "112220", + "name": "Berino", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.07093000", + "longitude": "-106.62138000" + }, + { + "id": "112242", + "name": "Bernalillo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.30004000", + "longitude": "-106.55114000" + }, + { + "id": "112243", + "name": "Bernalillo County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.05131000", + "longitude": "-106.67017000" + }, + { + "id": "112384", + "name": "Black Rock", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.08837000", + "longitude": "-108.79119000" + }, + { + "id": "112440", + "name": "Bloomfield", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.71112000", + "longitude": "-107.98451000" + }, + { + "id": "112512", + "name": "Boles Acres", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.80703000", + "longitude": "-105.98610000" + }, + { + "id": "112585", + "name": "Bosque Farms", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.85478000", + "longitude": "-106.70530000" + }, + { + "id": "113331", + "name": "Cannon Air Force Base", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.39689000", + "longitude": "-103.32444000" + }, + { + "id": "113374", + "name": "Capitan", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.54536000", + "longitude": "-105.57220000" + }, + { + "id": "113409", + "name": "Carlsbad", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.42067000", + "longitude": "-104.22884000" + }, + { + "id": "113431", + "name": "Carnuel", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.06394000", + "longitude": "-106.45725000" + }, + { + "id": "113448", + "name": "Carrizozo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.64174000", + "longitude": "-105.87721000" + }, + { + "id": "113578", + "name": "Catron County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.91533000", + "longitude": "-108.40473000" + }, + { + "id": "113717", + "name": "Chama", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.90307000", + "longitude": "-106.57948000" + }, + { + "id": "113740", + "name": "Chaparral", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.02376000", + "longitude": "-106.38566000" + }, + { + "id": "113817", + "name": "Chaves County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.36319000", + "longitude": "-104.46700000" + }, + { + "id": "113958", + "name": "Chimayo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.00391000", + "longitude": "-105.94697000" + }, + { + "id": "114010", + "name": "Church Rock", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.53391000", + "longitude": "-108.59980000" + }, + { + "id": "114017", + "name": "Cibola County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.91257000", + "longitude": "-107.99971000" + }, + { + "id": "114204", + "name": "Clayton", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.45169000", + "longitude": "-103.18410000" + }, + { + "id": "114316", + "name": "Clovis", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.40480000", + "longitude": "-103.20523000" + }, + { + "id": "114411", + "name": "Colfax County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.60612000", + "longitude": "-104.64686000" + }, + { + "id": "114498", + "name": "Columbus", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "31.82760000", + "longitude": "-107.64002000" + }, + { + "id": "114666", + "name": "Corrales", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.23782000", + "longitude": "-106.60669000" + }, + { + "id": "114868", + "name": "Crownpoint", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.67808000", + "longitude": "-108.15118000" + }, + { + "id": "114927", + "name": "Curry County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.57416000", + "longitude": "-103.34691000" + }, + { + "id": "115104", + "name": "De Baca County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.34239000", + "longitude": "-104.41200000" + }, + { + "id": "115231", + "name": "Deming", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.26870000", + "longitude": "-107.75864000" + }, + { + "id": "115311", + "name": "Dexter", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.19733000", + "longitude": "-104.37302000" + }, + { + "id": "115464", + "name": "Doña Ana", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.38954000", + "longitude": "-106.81390000" + }, + { + "id": "115465", + "name": "Doña Ana County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.35268000", + "longitude": "-106.83280000" + }, + { + "id": "115510", + "name": "Dulce", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.93362000", + "longitude": "-106.99893000" + }, + { + "id": "115824", + "name": "Eddy County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.47149000", + "longitude": "-104.30431000" + }, + { + "id": "115863", + "name": "Edgewood", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.06144000", + "longitude": "-106.19141000" + }, + { + "id": "115917", + "name": "El Cerro", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.72700000", + "longitude": "-106.71086000" + }, + { + "id": "115918", + "name": "El Cerro Mission", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.76227000", + "longitude": "-106.64450000" + }, + { + "id": "115934", + "name": "El Rancho", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.88919000", + "longitude": "-106.07975000" + }, + { + "id": "115939", + "name": "El Valle de Arroyo Seco", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.96280000", + "longitude": "-106.02947000" + }, + { + "id": "115955", + "name": "Eldorado at Santa Fe", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.52642000", + "longitude": "-105.93474000" + }, + { + "id": "115961", + "name": "Elephant Butte", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.14868000", + "longitude": "-107.18475000" + }, + { + "id": "116117", + "name": "Enchanted Hills", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.33676000", + "longitude": "-106.59296000" + }, + { + "id": "116188", + "name": "Española", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.99113000", + "longitude": "-106.08058000" + }, + { + "id": "116203", + "name": "Estancia", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.75839000", + "longitude": "-106.05585000" + }, + { + "id": "116230", + "name": "Eunice", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.43734000", + "longitude": "-103.15908000" + }, + { + "id": "116421", + "name": "Farmington", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.72806000", + "longitude": "-108.21869000" + }, + { + "id": "116573", + "name": "Flora Vista", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.79445000", + "longitude": "-108.08035000" + }, + { + "id": "116753", + "name": "Fort Sumner", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.47173000", + "longitude": "-104.24553000" + }, + { + "id": "117039", + "name": "Gallup", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.52808000", + "longitude": "-108.74258000" + }, + { + "id": "117517", + "name": "Grant County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.73901000", + "longitude": "-108.38225000" + }, + { + "id": "117527", + "name": "Grants", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.14760000", + "longitude": "-107.85261000" + }, + { + "id": "117779", + "name": "Guadalupe County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.86333000", + "longitude": "-104.79070000" + }, + { + "id": "117836", + "name": "Hagerman", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.11511000", + "longitude": "-104.32691000" + }, + { + "id": "118004", + "name": "Harding County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.85794000", + "longitude": "-103.81993000" + }, + { + "id": "118137", + "name": "Hatch", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.66536000", + "longitude": "-107.15307000" + }, + { + "id": "118375", + "name": "Hidalgo County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "31.91416000", + "longitude": "-108.71482000" + }, + { + "id": "118500", + "name": "Hobbs", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.70261000", + "longitude": "-103.13604000" + }, + { + "id": "118554", + "name": "Holloman Air Force Base", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.84827000", + "longitude": "-106.09977000" + }, + { + "id": "118822", + "name": "Hurley", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.69924000", + "longitude": "-108.13199000" + }, + { + "id": "119110", + "name": "Jal", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.11318000", + "longitude": "-103.19351000" + }, + { + "id": "119133", + "name": "Jarales", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.61312000", + "longitude": "-106.76364000" + }, + { + "id": "119210", + "name": "Jemez Pueblo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.61422000", + "longitude": "-106.72832000" + }, + { + "id": "119419", + "name": "Keeler Farm", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.31607000", + "longitude": "-107.76023000" + }, + { + "id": "119655", + "name": "Kirtland", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.73417000", + "longitude": "-108.35980000" + }, + { + "id": "119739", + "name": "La Cienega", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.56281000", + "longitude": "-106.13086000" + }, + { + "id": "119759", + "name": "La Huerta", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.44290000", + "longitude": "-104.22106000" + }, + { + "id": "119763", + "name": "La Luz", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.97787000", + "longitude": "-105.94193000" + }, + { + "id": "119766", + "name": "La Mesilla", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.94836000", + "longitude": "-106.07058000" + }, + { + "id": "119781", + "name": "La Puebla", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.98919000", + "longitude": "-105.99641000" + }, + { + "id": "119790", + "name": "La Union", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "31.95066000", + "longitude": "-106.66166000" + }, + { + "id": "119850", + "name": "Laguna", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.03671000", + "longitude": "-107.38282000" + }, + { + "id": "120155", + "name": "Las Cruces", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.31232000", + "longitude": "-106.77834000" + }, + { + "id": "120159", + "name": "Las Maravillas", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.73815000", + "longitude": "-106.66854000" + }, + { + "id": "120164", + "name": "Las Vegas", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.59393000", + "longitude": "-105.22390000" + }, + { + "id": "120267", + "name": "Lea County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.79218000", + "longitude": "-103.41245000" + }, + { + "id": "120305", + "name": "Lee Acres", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.14866000", + "longitude": "-106.64697000" + }, + { + "id": "120531", + "name": "Lincoln County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.74524000", + "longitude": "-105.45925000" + }, + { + "id": "120770", + "name": "Lordsburg", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.35036000", + "longitude": "-108.70866000" + }, + { + "id": "120780", + "name": "Los Alamos", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.88808000", + "longitude": "-106.30697000" + }, + { + "id": "120781", + "name": "Los Alamos County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.86937000", + "longitude": "-106.30729000" + }, + { + "id": "120787", + "name": "Los Chavez", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.72571000", + "longitude": "-106.75726000" + }, + { + "id": "120791", + "name": "Los Lunas", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.80617000", + "longitude": "-106.73336000" + }, + { + "id": "120795", + "name": "Los Ranchos de Albuquerque", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.16199000", + "longitude": "-106.64280000" + }, + { + "id": "120828", + "name": "Loving", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.28623000", + "longitude": "-104.09577000" + }, + { + "id": "120832", + "name": "Lovington", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.94401000", + "longitude": "-103.34855000" + }, + { + "id": "120884", + "name": "Luna County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.18215000", + "longitude": "-107.74977000" + }, + { + "id": "121511", + "name": "McIntosh", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.86478000", + "longitude": "-106.05169000" + }, + { + "id": "121522", + "name": "McKinley County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.58061000", + "longitude": "-108.26193000" + }, + { + "id": "121560", + "name": "Meadow Lake", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.80144000", + "longitude": "-106.54363000" + }, + { + "id": "121724", + "name": "Mescalero", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.15759000", + "longitude": "-105.77415000" + }, + { + "id": "121725", + "name": "Mesilla", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.27009000", + "longitude": "-106.80084000" + }, + { + "id": "121728", + "name": "Mesquite", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.16454000", + "longitude": "-106.69666000" + }, + { + "id": "121841", + "name": "Milan", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.16976000", + "longitude": "-107.89089000" + }, + { + "id": "122123", + "name": "Monterey Park", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.75898000", + "longitude": "-106.64085000" + }, + { + "id": "122219", + "name": "Mora", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.97420000", + "longitude": "-105.33001000" + }, + { + "id": "122220", + "name": "Mora County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.00995000", + "longitude": "-104.94458000" + }, + { + "id": "122255", + "name": "Moriarty", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.99005000", + "longitude": "-106.04919000" + }, + { + "id": "122306", + "name": "Mosquero", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.77698000", + "longitude": "-103.95664000" + }, + { + "id": "122537", + "name": "Nambe", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.89336000", + "longitude": "-105.98252000" + }, + { + "id": "122597", + "name": "Navajo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.90001000", + "longitude": "-109.03398000" + }, + { + "id": "123119", + "name": "North Valley", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.17338000", + "longitude": "-106.62336000" + }, + { + "id": "123386", + "name": "Ohkay Owingeh", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.05082000", + "longitude": "-106.06897000" + }, + { + "id": "123626", + "name": "Otero County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.61316000", + "longitude": "-105.74168000" + }, + { + "id": "123821", + "name": "Paradise Hills", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.20060000", + "longitude": "-106.70114000" + }, + { + "id": "123979", + "name": "Pecos", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.57420000", + "longitude": "-105.67502000" + }, + { + "id": "124057", + "name": "Peralta", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.83700000", + "longitude": "-106.69058000" + }, + { + "id": "124314", + "name": "Placitas", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.30698000", + "longitude": "-106.42475000" + }, + { + "id": "124436", + "name": "Pojoaque", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.89280000", + "longitude": "-106.02308000" + }, + { + "id": "124471", + "name": "Ponderosa Pine", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.97699000", + "longitude": "-106.32419000" + }, + { + "id": "124550", + "name": "Portales", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.18619000", + "longitude": "-103.33440000" + }, + { + "id": "124784", + "name": "Quay County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.10436000", + "longitude": "-103.54974000" + }, + { + "id": "124794", + "name": "Questa", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.70391000", + "longitude": "-105.59501000" + }, + { + "id": "124817", + "name": "Radium Springs", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.50120000", + "longitude": "-106.92807000" + }, + { + "id": "124860", + "name": "Ranchos de Taos", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.35864000", + "longitude": "-105.60946000" + }, + { + "id": "124901", + "name": "Raton", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.90336000", + "longitude": "-104.43915000" + }, + { + "id": "125035", + "name": "Reserve", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.71311000", + "longitude": "-108.75784000" + }, + { + "id": "125147", + "name": "Rio Arriba County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.50957000", + "longitude": "-106.69311000" + }, + { + "id": "125150", + "name": "Rio Communities", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.64959000", + "longitude": "-106.73403000" + }, + { + "id": "125158", + "name": "Rio Rancho", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.23338000", + "longitude": "-106.66447000" + }, + { + "id": "125393", + "name": "Roosevelt County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.02127000", + "longitude": "-103.48018000" + }, + { + "id": "125463", + "name": "Roswell", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.39437000", + "longitude": "-104.52491000" + }, + { + "id": "125504", + "name": "Ruidoso", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.33175000", + "longitude": "-105.67304000" + }, + { + "id": "125505", + "name": "Ruidoso Downs", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.32897000", + "longitude": "-105.60443000" + }, + { + "id": "125807", + "name": "San Felipe Pueblo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.43392000", + "longitude": "-106.44669000" + }, + { + "id": "125821", + "name": "San Juan County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.50847000", + "longitude": "-108.32060000" + }, + { + "id": "125839", + "name": "San Miguel", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.15538000", + "longitude": "-106.73500000" + }, + { + "id": "125841", + "name": "San Miguel County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.48029000", + "longitude": "-104.81585000" + }, + { + "id": "125851", + "name": "San Ysidro", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.35093000", + "longitude": "-106.81112000" + }, + { + "id": "125866", + "name": "Sandia Heights", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.17699000", + "longitude": "-106.49141000" + }, + { + "id": "125867", + "name": "Sandia Knolls", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.16393000", + "longitude": "-106.31141000" + }, + { + "id": "125869", + "name": "Sandoval County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.68855000", + "longitude": "-106.86584000" + }, + { + "id": "125904", + "name": "Santa Clara", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.77952000", + "longitude": "-108.15032000" + }, + { + "id": "125907", + "name": "Santa Clara Pueblo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.96558000", + "longitude": "-106.08863000" + }, + { + "id": "125914", + "name": "Santa Fe", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.68698000", + "longitude": "-105.93780000" + }, + { + "id": "125915", + "name": "Santa Fe County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.50686000", + "longitude": "-105.97612000" + }, + { + "id": "125923", + "name": "Santa Rosa", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.93867000", + "longitude": "-104.68249000" + }, + { + "id": "125926", + "name": "Santa Teresa", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "31.85594000", + "longitude": "-106.63916000" + }, + { + "id": "125931", + "name": "Santo Domingo Pueblo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.51476000", + "longitude": "-106.36586000" + }, + { + "id": "126358", + "name": "Shiprock", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.78555000", + "longitude": "-108.68703000" + }, + { + "id": "126403", + "name": "Sierra County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.13047000", + "longitude": "-107.19250000" + }, + { + "id": "126422", + "name": "Silver City", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.77007000", + "longitude": "-108.28033000" + }, + { + "id": "126488", + "name": "Skyline-Ganipa", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.03279000", + "longitude": "-107.61396000" + }, + { + "id": "126557", + "name": "Socorro", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.05840000", + "longitude": "-106.89142000" + }, + { + "id": "126559", + "name": "Socorro County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.00724000", + "longitude": "-106.93033000" + }, + { + "id": "126740", + "name": "South Valley", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.01005000", + "longitude": "-106.67808000" + }, + { + "id": "126832", + "name": "Spencerville", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.82000000", + "longitude": "-108.05813000" + }, + { + "id": "127254", + "name": "Sunland Park", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "31.79650000", + "longitude": "-106.57999000" + }, + { + "id": "127422", + "name": "Taos", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.40725000", + "longitude": "-105.57307000" + }, + { + "id": "127423", + "name": "Taos County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.57830000", + "longitude": "-105.63097000" + }, + { + "id": "127424", + "name": "Taos Pueblo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.43864000", + "longitude": "-105.54445000" + }, + { + "id": "127549", + "name": "Texico", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.38869000", + "longitude": "-103.05134000" + }, + { + "id": "127598", + "name": "Thoreau", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.40253000", + "longitude": "-108.22340000" + }, + { + "id": "127636", + "name": "Tierra Amarilla", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.70029000", + "longitude": "-106.54976000" + }, + { + "id": "127712", + "name": "Tome", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.74089000", + "longitude": "-106.72836000" + }, + { + "id": "127743", + "name": "Torrance County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.64047000", + "longitude": "-105.85078000" + }, + { + "id": "127861", + "name": "Truth or Consequences", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.12840000", + "longitude": "-107.25281000" + }, + { + "id": "127876", + "name": "Tucumcari", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.17191000", + "longitude": "-103.72686000" + }, + { + "id": "127884", + "name": "Tularosa", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "33.07397000", + "longitude": "-106.01860000" + }, + { + "id": "127932", + "name": "Twin Lakes", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.70919000", + "longitude": "-108.77481000" + }, + { + "id": "128002", + "name": "Union County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.48176000", + "longitude": "-103.47099000" + }, + { + "id": "128034", + "name": "University Park", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.28343000", + "longitude": "-106.75334000" + }, + { + "id": "128043", + "name": "Upper Fruitland", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.71584000", + "longitude": "-108.31424000" + }, + { + "id": "128074", + "name": "Vado", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.11176000", + "longitude": "-106.66250000" + }, + { + "id": "128088", + "name": "Valencia", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.79950000", + "longitude": "-106.70030000" + }, + { + "id": "128089", + "name": "Valencia County", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "34.71545000", + "longitude": "-106.80911000" + }, + { + "id": "128604", + "name": "Waterflow", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.75972000", + "longitude": "-108.48175000" + }, + { + "id": "128884", + "name": "West Hammond", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "36.68071000", + "longitude": "-108.04921000" + }, + { + "id": "129158", + "name": "White Rock", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.82753000", + "longitude": "-106.20391000" + }, + { + "id": "129160", + "name": "White Sands", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "32.38093000", + "longitude": "-106.47944000" + }, + { + "id": "129762", + "name": "Zuni Pueblo", + "state_id": 1423, + "state_code": "NM", + "country_id": 233, + "country_code": "US", + "latitude": "35.07253000", + "longitude": "-108.85064000" + }, + { + "id": "111014", + "name": "Adams", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.80923000", + "longitude": "-76.02409000" + }, + { + "id": "111016", + "name": "Adams Center", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.86006000", + "longitude": "-76.00548000" + }, + { + "id": "111037", + "name": "Addison", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.10285000", + "longitude": "-77.23359000" + }, + { + "id": "111071", + "name": "Airmont", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.10093000", + "longitude": "-74.11625000" + }, + { + "id": "111078", + "name": "Akron", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.02089000", + "longitude": "-78.49530000" + }, + { + "id": "111082", + "name": "Alabama", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09645000", + "longitude": "-78.39086000" + }, + { + "id": "111108", + "name": "Albany", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.65258000", + "longitude": "-73.75623000" + }, + { + "id": "111112", + "name": "Albany County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.60018000", + "longitude": "-73.97356000" + }, + { + "id": "111119", + "name": "Albertson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77343000", + "longitude": "-73.64318000" + }, + { + "id": "111128", + "name": "Albion", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.24645000", + "longitude": "-78.19363000" + }, + { + "id": "111136", + "name": "Alden", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90006000", + "longitude": "-78.49197000" + }, + { + "id": "111157", + "name": "Alexandria Bay", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.33588000", + "longitude": "-75.91773000" + }, + { + "id": "111160", + "name": "Alfred", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.25424000", + "longitude": "-77.79055000" + }, + { + "id": "111180", + "name": "Allegany", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.09006000", + "longitude": "-78.49419000" + }, + { + "id": "111182", + "name": "Allegany County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.25739000", + "longitude": "-78.02756000" + }, + { + "id": "111235", + "name": "Altamont", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.70063000", + "longitude": "-74.03374000" + }, + { + "id": "111262", + "name": "Amagansett", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.97371000", + "longitude": "-72.14369000" + }, + { + "id": "111283", + "name": "Amherst", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.97839000", + "longitude": "-78.79976000" + }, + { + "id": "111292", + "name": "Amityville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.67899000", + "longitude": "-73.41707000" + }, + { + "id": "111295", + "name": "Amsterdam", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.93869000", + "longitude": "-74.18819000" + }, + { + "id": "111325", + "name": "Andover", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.15646000", + "longitude": "-77.79555000" + }, + { + "id": "111341", + "name": "Angola", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.63839000", + "longitude": "-79.02782000" + }, + { + "id": "111342", + "name": "Angola on the Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.65478000", + "longitude": "-79.04893000" + }, + { + "id": "111383", + "name": "Apalachin", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.06952000", + "longitude": "-76.15465000" + }, + { + "id": "111405", + "name": "Aquebogue", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.94454000", + "longitude": "-72.62704000" + }, + { + "id": "111419", + "name": "Arcade", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.53395000", + "longitude": "-78.42307000" + }, + { + "id": "111444", + "name": "Ardsley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.01065000", + "longitude": "-73.84375000" + }, + { + "id": "111468", + "name": "Arlington", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.69593000", + "longitude": "-73.89680000" + }, + { + "id": "111478", + "name": "Armonk", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.12648000", + "longitude": "-73.71402000" + }, + { + "id": "111493", + "name": "Arrochar", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.59844000", + "longitude": "-74.07264000" + }, + { + "id": "111504", + "name": "Arverne", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.59122000", + "longitude": "-73.79597000" + }, + { + "id": "111562", + "name": "Astoria", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77205000", + "longitude": "-73.93014000" + }, + { + "id": "111579", + "name": "Athens", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.26036000", + "longitude": "-73.80957000" + }, + { + "id": "111597", + "name": "Atlantic Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.58899000", + "longitude": "-73.72902000" + }, + { + "id": "111610", + "name": "Attica", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.86423000", + "longitude": "-78.28029000" + }, + { + "id": "111628", + "name": "Auburn", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.93173000", + "longitude": "-76.56605000" + }, + { + "id": "111650", + "name": "Augusta", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.97479000", + "longitude": "-75.50129000" + }, + { + "id": "111680", + "name": "Averill Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.63397000", + "longitude": "-73.55373000" + }, + { + "id": "111693", + "name": "Avon", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.91201000", + "longitude": "-77.74556000" + }, + { + "id": "111716", + "name": "Babylon", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69566000", + "longitude": "-73.32568000" + }, + { + "id": "111733", + "name": "Bainbridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.29341000", + "longitude": "-75.47935000" + }, + { + "id": "111737", + "name": "Baiting Hollow", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.95621000", + "longitude": "-72.74427000" + }, + { + "id": "111756", + "name": "Baldwin", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65649000", + "longitude": "-73.60930000" + }, + { + "id": "111762", + "name": "Baldwin Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63955000", + "longitude": "-73.60846000" + }, + { + "id": "111764", + "name": "Baldwinsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.15868000", + "longitude": "-76.33271000" + }, + { + "id": "111775", + "name": "Ballston Spa", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.00091000", + "longitude": "-73.84901000" + }, + { + "id": "111779", + "name": "Balmville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.53482000", + "longitude": "-74.01486000" + }, + { + "id": "111819", + "name": "Bardonia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.10954000", + "longitude": "-73.99625000" + }, + { + "id": "111837", + "name": "Barnum Island", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60455000", + "longitude": "-73.64402000" + }, + { + "id": "111888", + "name": "Batavia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.99812000", + "longitude": "-78.18752000" + }, + { + "id": "111898", + "name": "Bath", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.33702000", + "longitude": "-77.31776000" + }, + { + "id": "111900", + "name": "Bath Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60455000", + "longitude": "-74.00431000" + }, + { + "id": "111918", + "name": "Baxter Estates", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.83482000", + "longitude": "-73.69541000" + }, + { + "id": "111930", + "name": "Bay Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63316000", + "longitude": "-73.67041000" + }, + { + "id": "111934", + "name": "Bay Shore", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72510000", + "longitude": "-73.24539000" + }, + { + "id": "111936", + "name": "Bay Wood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75010000", + "longitude": "-73.29123000" + }, + { + "id": "111940", + "name": "Baychester", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86928000", + "longitude": "-73.83645000" + }, + { + "id": "111952", + "name": "Bayport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73843000", + "longitude": "-73.05067000" + }, + { + "id": "111955", + "name": "Bayside", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76844000", + "longitude": "-73.77708000" + }, + { + "id": "111961", + "name": "Bayville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.91065000", + "longitude": "-73.56207000" + }, + { + "id": "111968", + "name": "Beacon", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.50482000", + "longitude": "-73.96958000" + }, + { + "id": "112003", + "name": "Beaver Dam Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.44743000", + "longitude": "-74.11463000" + }, + { + "id": "112007", + "name": "Beaverdam Lake-Salisbury Mills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.44162000", + "longitude": "-74.11629000" + }, + { + "id": "112025", + "name": "Bedford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.20426000", + "longitude": "-73.64374000" + }, + { + "id": "112030", + "name": "Bedford Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.23676000", + "longitude": "-73.69458000" + }, + { + "id": "112077", + "name": "Bellaire", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71399000", + "longitude": "-73.75402000" + }, + { + "id": "112084", + "name": "Belle Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.57594000", + "longitude": "-73.84819000" + }, + { + "id": "112100", + "name": "Bellerose", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72427000", + "longitude": "-73.71513000" + }, + { + "id": "112101", + "name": "Bellerose Terrace", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72066000", + "longitude": "-73.72596000" + }, + { + "id": "112123", + "name": "Bellmore", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.66871000", + "longitude": "-73.52707000" + }, + { + "id": "112125", + "name": "Bellport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75704000", + "longitude": "-72.93927000" + }, + { + "id": "112140", + "name": "Belmont", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.22312000", + "longitude": "-78.03445000" + }, + { + "id": "112187", + "name": "Bensonhurst", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60177000", + "longitude": "-73.99403000" + }, + { + "id": "112216", + "name": "Bergen", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.08534000", + "longitude": "-77.94223000" + }, + { + "id": "112217", + "name": "Bergen Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.62038000", + "longitude": "-73.90680000" + }, + { + "id": "112293", + "name": "Bethpage", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74427000", + "longitude": "-73.48207000" + }, + { + "id": "112320", + "name": "Big Flats", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.13730000", + "longitude": "-76.93691000" + }, + { + "id": "112346", + "name": "Billington Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.78423000", + "longitude": "-78.62642000" + }, + { + "id": "112351", + "name": "Binghamton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.09869000", + "longitude": "-75.91797000" + }, + { + "id": "112382", + "name": "Black River", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.01256000", + "longitude": "-75.79437000" + }, + { + "id": "112424", + "name": "Blasdell", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.79728000", + "longitude": "-78.82337000" + }, + { + "id": "112425", + "name": "Blauvelt", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.06343000", + "longitude": "-73.95764000" + }, + { + "id": "112438", + "name": "Bloomfield", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.61260000", + "longitude": "-74.17820000" + }, + { + "id": "112473", + "name": "Blue Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74399000", + "longitude": "-73.03455000" + }, + { + "id": "112502", + "name": "Bohemia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76926000", + "longitude": "-73.11511000" + }, + { + "id": "112520", + "name": "Bolivar", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.06673000", + "longitude": "-78.16779000" + }, + { + "id": "112570", + "name": "Boonville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.48368000", + "longitude": "-75.33656000" + }, + { + "id": "112580", + "name": "Borough Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63399000", + "longitude": "-73.99681000" + }, + { + "id": "112590", + "name": "Boston", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.62895000", + "longitude": "-78.73753000" + }, + { + "id": "112731", + "name": "Brentwood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78121000", + "longitude": "-73.24623000" + }, + { + "id": "112740", + "name": "Brewerton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.23812000", + "longitude": "-76.14076000" + }, + { + "id": "112743", + "name": "Brewster", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.39732000", + "longitude": "-73.61707000" + }, + { + "id": "112746", + "name": "Brewster Hill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.42398000", + "longitude": "-73.60429000" + }, + { + "id": "112750", + "name": "Briarcliff Manor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.14565000", + "longitude": "-73.82375000" + }, + { + "id": "112751", + "name": "Briarwood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70935000", + "longitude": "-73.81529000" + }, + { + "id": "112757", + "name": "Bridgehampton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.93788000", + "longitude": "-72.30092000" + }, + { + "id": "112763", + "name": "Bridgeport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.15535000", + "longitude": "-75.96936000" + }, + { + "id": "112790", + "name": "Brighton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.14756000", + "longitude": "-77.55055000" + }, + { + "id": "112792", + "name": "Brighton Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.57788000", + "longitude": "-73.95958000" + }, + { + "id": "112794", + "name": "Brightwaters", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72093000", + "longitude": "-73.26734000" + }, + { + "id": "112798", + "name": "Brinckerhoff", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.54398000", + "longitude": "-73.86819000" + }, + { + "id": "112820", + "name": "Broad Channel", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60316000", + "longitude": "-73.82041000" + }, + { + "id": "112823", + "name": "Broadalbin", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.05868000", + "longitude": "-74.19652000" + }, + { + "id": "112833", + "name": "Brockport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.21367000", + "longitude": "-77.93918000" + }, + { + "id": "112836", + "name": "Brocton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.38867000", + "longitude": "-79.44116000" + }, + { + "id": "112846", + "name": "Bronx", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82732000", + "longitude": "-73.92357000" + }, + { + "id": "112847", + "name": "Bronxville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.93815000", + "longitude": "-73.83208000" + }, + { + "id": "112860", + "name": "Brookhaven", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77927000", + "longitude": "-72.91538000" + }, + { + "id": "112872", + "name": "Brooklyn", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65010000", + "longitude": "-73.94958000" + }, + { + "id": "112875", + "name": "Brooklyn Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69538000", + "longitude": "-73.99375000" + }, + { + "id": "112895", + "name": "Brookville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81316000", + "longitude": "-73.56735000" + }, + { + "id": "112899", + "name": "Broome County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.16022000", + "longitude": "-75.81962000" + }, + { + "id": "112933", + "name": "Brownsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.66094000", + "longitude": "-73.92014000" + }, + { + "id": "112938", + "name": "Brownville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.00700000", + "longitude": "-75.98409000" + }, + { + "id": "112972", + "name": "Buchanan", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.26204000", + "longitude": "-73.93819000" + }, + { + "id": "113014", + "name": "Buffalo", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.88645000", + "longitude": "-78.87837000" + }, + { + "id": "113103", + "name": "Bushwick", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69427000", + "longitude": "-73.91875000" + }, + { + "id": "113171", + "name": "Cairo", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.29897000", + "longitude": "-73.99847000" + }, + { + "id": "113178", + "name": "Calcium", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.02173000", + "longitude": "-75.84604000" + }, + { + "id": "113191", + "name": "Caledonia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.97312000", + "longitude": "-77.85278000" + }, + { + "id": "113237", + "name": "Calverton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.90649000", + "longitude": "-72.74343000" + }, + { + "id": "113248", + "name": "Cambria Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69455000", + "longitude": "-73.73847000" + }, + { + "id": "113254", + "name": "Cambridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.02813000", + "longitude": "-73.38122000" + }, + { + "id": "113267", + "name": "Camden", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.33451000", + "longitude": "-75.74796000" + }, + { + "id": "113284", + "name": "Camillus", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.03923000", + "longitude": "-76.30410000" + }, + { + "id": "113317", + "name": "Canajoharie", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90563000", + "longitude": "-74.57181000" + }, + { + "id": "113318", + "name": "Canandaigua", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.87423000", + "longitude": "-77.28804000" + }, + { + "id": "113319", + "name": "Canarsie", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.64372000", + "longitude": "-73.90069000" + }, + { + "id": "113320", + "name": "Canastota", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.07951000", + "longitude": "-75.75074000" + }, + { + "id": "113329", + "name": "Canisteo", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.27035000", + "longitude": "-77.60582000" + }, + { + "id": "113347", + "name": "Canton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.59562000", + "longitude": "-75.16909000" + }, + { + "id": "113397", + "name": "Carle Place", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75260000", + "longitude": "-73.61041000" + }, + { + "id": "113417", + "name": "Carmel", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.43009000", + "longitude": "-73.68013000" + }, + { + "id": "113419", + "name": "Carmel Hamlet", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.41485000", + "longitude": "-73.68524000" + }, + { + "id": "113497", + "name": "Carthage", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.97812000", + "longitude": "-75.60936000" + }, + { + "id": "113553", + "name": "Castleton-on-Hudson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.51841000", + "longitude": "-73.75123000" + }, + { + "id": "113579", + "name": "Catskill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.21731000", + "longitude": "-73.86457000" + }, + { + "id": "113580", + "name": "Cattaraugus County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.24863000", + "longitude": "-78.67885000" + }, + { + "id": "113594", + "name": "Cayuga County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.01033000", + "longitude": "-76.57436000" + }, + { + "id": "113595", + "name": "Cayuga Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.46010000", + "longitude": "-76.48776000" + }, + { + "id": "113596", + "name": "Cazenovia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.93007000", + "longitude": "-75.85269000" + }, + { + "id": "113626", + "name": "Cedarhurst", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.62288000", + "longitude": "-73.72430000" + }, + { + "id": "113632", + "name": "Celoron", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.10950000", + "longitude": "-79.28310000" + }, + { + "id": "113645", + "name": "Center Moriches", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80038000", + "longitude": "-72.78982000" + }, + { + "id": "113648", + "name": "Centereach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85843000", + "longitude": "-73.09955000" + }, + { + "id": "113650", + "name": "Centerport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.88538000", + "longitude": "-73.37623000" + }, + { + "id": "113678", + "name": "Central Islip", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79065000", + "longitude": "-73.20178000" + }, + { + "id": "113681", + "name": "Central Square", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.28674000", + "longitude": "-76.14604000" + }, + { + "id": "113682", + "name": "Central Valley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.33176000", + "longitude": "-74.12098000" + }, + { + "id": "113708", + "name": "Chadwicks", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.02785000", + "longitude": "-75.27155000" + }, + { + "id": "113726", + "name": "Champlain", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.98643000", + "longitude": "-73.44653000" + }, + { + "id": "113746", + "name": "Chappaqua", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.15954000", + "longitude": "-73.76485000" + }, + { + "id": "113768", + "name": "Charleston", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.53677000", + "longitude": "-74.23737000" + }, + { + "id": "113799", + "name": "Chatham", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.36425000", + "longitude": "-73.59484000" + }, + { + "id": "113815", + "name": "Chautauqua County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.30294000", + "longitude": "-79.40576000" + }, + { + "id": "113824", + "name": "Cheektowaga", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90339000", + "longitude": "-78.75475000" + }, + { + "id": "113834", + "name": "Chelsea", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60066000", + "longitude": "-74.19487000" + }, + { + "id": "113836", + "name": "Chemung County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.14125000", + "longitude": "-76.76003000" + }, + { + "id": "113837", + "name": "Chenango Bridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.16674000", + "longitude": "-75.86242000" + }, + { + "id": "113838", + "name": "Chenango County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.49351000", + "longitude": "-75.61158000" + }, + { + "id": "113888", + "name": "Chester", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.36259000", + "longitude": "-74.27126000" + }, + { + "id": "113912", + "name": "Chestnut Ridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.08426000", + "longitude": "-74.05570000" + }, + { + "id": "113981", + "name": "Chittenango", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.04507000", + "longitude": "-75.86658000" + }, + { + "id": "114013", + "name": "Churchville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.10423000", + "longitude": "-77.88445000" + }, + { + "id": "114043", + "name": "City Island", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84732000", + "longitude": "-73.78652000" + }, + { + "id": "114108", + "name": "Clarence", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.97673000", + "longitude": "-78.59197000" + }, + { + "id": "114109", + "name": "Clarence Center", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.01061000", + "longitude": "-78.63753000" + }, + { + "id": "114132", + "name": "Clark Mills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09229000", + "longitude": "-75.37962000" + }, + { + "id": "114146", + "name": "Clarkson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.23312000", + "longitude": "-77.92751000" + }, + { + "id": "114202", + "name": "Clayton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.23949000", + "longitude": "-76.08578000" + }, + { + "id": "114258", + "name": "Clifton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.62010000", + "longitude": "-74.07709000" + }, + { + "id": "114264", + "name": "Clifton Springs", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.96173000", + "longitude": "-77.13998000" + }, + { + "id": "114283", + "name": "Clinton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.04840000", + "longitude": "-75.37850000" + }, + { + "id": "114295", + "name": "Clinton County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.74623000", + "longitude": "-73.67817000" + }, + { + "id": "114298", + "name": "Clintondale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.69482000", + "longitude": "-74.05125000" + }, + { + "id": "114320", + "name": "Clyde", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.08423000", + "longitude": "-76.86940000" + }, + { + "id": "114322", + "name": "Clymer", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.02089000", + "longitude": "-79.63005000" + }, + { + "id": "114347", + "name": "Cobleskill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.67785000", + "longitude": "-74.48542000" + }, + { + "id": "114375", + "name": "Cohoes", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.77424000", + "longitude": "-73.70012000" + }, + { + "id": "114387", + "name": "Cold Spring", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.42009000", + "longitude": "-73.95458000" + }, + { + "id": "114388", + "name": "Cold Spring Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.87149000", + "longitude": "-73.45679000" + }, + { + "id": "114416", + "name": "College Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78760000", + "longitude": "-73.84597000" + }, + { + "id": "114452", + "name": "Colonie", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.71786000", + "longitude": "-73.83346000" + }, + { + "id": "114480", + "name": "Columbia County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.25008000", + "longitude": "-73.63185000" + }, + { + "id": "114521", + "name": "Commack", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84288000", + "longitude": "-73.29289000" + }, + { + "id": "114540", + "name": "Concord", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60816000", + "longitude": "-74.08431000" + }, + { + "id": "114556", + "name": "Coney Island", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.57788000", + "longitude": "-73.99403000" + }, + { + "id": "114557", + "name": "Congers", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.15065000", + "longitude": "-73.94542000" + }, + { + "id": "114572", + "name": "Constantia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.24785000", + "longitude": "-76.00020000" + }, + { + "id": "114605", + "name": "Cooperstown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.70048000", + "longitude": "-74.92426000" + }, + { + "id": "114616", + "name": "Copiague", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68149000", + "longitude": "-73.39984000" + }, + { + "id": "114629", + "name": "Coram", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86871000", + "longitude": "-73.00149000" + }, + { + "id": "114645", + "name": "Corinth", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.24452000", + "longitude": "-73.83234000" + }, + { + "id": "114653", + "name": "Corning", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.14285000", + "longitude": "-77.05469000" + }, + { + "id": "114658", + "name": "Cornwall", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.44482000", + "longitude": "-74.01570000" + }, + { + "id": "114661", + "name": "Corona", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74705000", + "longitude": "-73.86014000" + }, + { + "id": "114676", + "name": "Cortland", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.60118000", + "longitude": "-76.18048000" + }, + { + "id": "114677", + "name": "Cortland County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.59501000", + "longitude": "-76.07027000" + }, + { + "id": "114678", + "name": "Cortland West", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.59431000", + "longitude": "-76.22587000" + }, + { + "id": "114721", + "name": "Country Knolls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.91508000", + "longitude": "-73.80512000" + }, + { + "id": "114751", + "name": "Coxsackie", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.35092000", + "longitude": "-73.80290000" + }, + { + "id": "114834", + "name": "Crompond", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.29509000", + "longitude": "-73.86541000" + }, + { + "id": "114859", + "name": "Croton-on-Hudson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.20843000", + "longitude": "-73.89125000" + }, + { + "id": "114866", + "name": "Crown Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.63732000", + "longitude": "-73.93792000" + }, + { + "id": "114872", + "name": "Crugers", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.23343000", + "longitude": "-73.92264000" + }, + { + "id": "114887", + "name": "Cuba", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.21757000", + "longitude": "-78.27529000" + }, + { + "id": "114920", + "name": "Cumberland Head", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.71643000", + "longitude": "-73.40263000" + }, + { + "id": "114944", + "name": "Cutchogue", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.01066000", + "longitude": "-72.48509000" + }, + { + "id": "114956", + "name": "Cypress Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.67705000", + "longitude": "-73.89125000" + }, + { + "id": "115027", + "name": "Dannemora", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.72143000", + "longitude": "-73.72375000" + }, + { + "id": "115028", + "name": "Dansville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.56090000", + "longitude": "-77.69611000" + }, + { + "id": "115177", + "name": "Deer Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76177000", + "longitude": "-73.32929000" + }, + { + "id": "115207", + "name": "Delaware County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.19809000", + "longitude": "-74.96647000" + }, + { + "id": "115210", + "name": "Delevan", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.48923000", + "longitude": "-78.48085000" + }, + { + "id": "115212", + "name": "Delhi", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.27814000", + "longitude": "-74.91599000" + }, + { + "id": "115218", + "name": "Delmar", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.62202000", + "longitude": "-73.83262000" + }, + { + "id": "115256", + "name": "Depew", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90395000", + "longitude": "-78.69225000" + }, + { + "id": "115258", + "name": "Deposit", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.06008000", + "longitude": "-75.42768000" + }, + { + "id": "115310", + "name": "Dexter", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.00784000", + "longitude": "-76.04437000" + }, + { + "id": "115358", + "name": "Dix Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80482000", + "longitude": "-73.33623000" + }, + { + "id": "115370", + "name": "Dobbs Ferry", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.01454000", + "longitude": "-73.87264000" + }, + { + "id": "115387", + "name": "Dolgeville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.10090000", + "longitude": "-74.77293000" + }, + { + "id": "115396", + "name": "Dongan Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.58844000", + "longitude": "-74.09625000" + }, + { + "id": "115439", + "name": "Douglaston", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76871000", + "longitude": "-73.74708000" + }, + { + "id": "115456", + "name": "Dover Plains", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.74121000", + "longitude": "-73.57652000" + }, + { + "id": "115485", + "name": "Dryden", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.49091000", + "longitude": "-76.29716000" + }, + { + "id": "115530", + "name": "Dundee", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.52340000", + "longitude": "-76.97663000" + }, + { + "id": "115539", + "name": "Dunkirk", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.47950000", + "longitude": "-79.33393000" + }, + { + "id": "115572", + "name": "Durham", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.39953000", + "longitude": "-74.17236000" + }, + { + "id": "115579", + "name": "Dutchess County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.76515000", + "longitude": "-73.74286000" + }, + { + "id": "115590", + "name": "Dyker Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.62149000", + "longitude": "-74.00958000" + }, + { + "id": "115627", + "name": "East Atlantic Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78982000", + "longitude": "-73.74708000" + }, + { + "id": "115628", + "name": "East Aurora", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.76784000", + "longitude": "-78.61336000" + }, + { + "id": "115655", + "name": "East Elmhurst", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76121000", + "longitude": "-73.86514000" + }, + { + "id": "115658", + "name": "East Farmingdale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72927000", + "longitude": "-73.41679000" + }, + { + "id": "115661", + "name": "East Flatbush", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65371000", + "longitude": "-73.93042000" + }, + { + "id": "115667", + "name": "East Garden City", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73083000", + "longitude": "-73.59806000" + }, + { + "id": "115669", + "name": "East Glenville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.89452000", + "longitude": "-73.92790000" + }, + { + "id": "115672", + "name": "East Greenbush", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.59091000", + "longitude": "-73.70179000" + }, + { + "id": "115680", + "name": "East Hampton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.96343000", + "longitude": "-72.18480000" + }, + { + "id": "115681", + "name": "East Hampton North", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.97276000", + "longitude": "-72.18911000" + }, + { + "id": "115683", + "name": "East Harlem", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79472000", + "longitude": "-73.94250000" + }, + { + "id": "115692", + "name": "East Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79371000", + "longitude": "-73.62707000" + }, + { + "id": "115695", + "name": "East Islip", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73204000", + "longitude": "-73.18567000" + }, + { + "id": "115696", + "name": "East Ithaca", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.43952000", + "longitude": "-76.47855000" + }, + { + "id": "115708", + "name": "East Massapequa", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.67343000", + "longitude": "-73.43651000" + }, + { + "id": "115710", + "name": "East Meadow", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71399000", + "longitude": "-73.55902000" + }, + { + "id": "115717", + "name": "East Moriches", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80510000", + "longitude": "-72.76093000" + }, + { + "id": "115719", + "name": "East New York", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.66677000", + "longitude": "-73.88236000" + }, + { + "id": "115722", + "name": "East Northport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.87676000", + "longitude": "-73.32456000" + }, + { + "id": "115724", + "name": "East Norwich", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84677000", + "longitude": "-73.53512000" + }, + { + "id": "115730", + "name": "East Patchogue", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76704000", + "longitude": "-72.99622000" + }, + { + "id": "115743", + "name": "East Quogue", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84066000", + "longitude": "-72.58148000" + }, + { + "id": "115749", + "name": "East Rochester", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.10867000", + "longitude": "-77.48750000" + }, + { + "id": "115750", + "name": "East Rockaway", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.64205000", + "longitude": "-73.66957000" + }, + { + "id": "115757", + "name": "East Setauket", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.94149000", + "longitude": "-73.10594000" + }, + { + "id": "115758", + "name": "East Shoreham", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.94482000", + "longitude": "-72.87955000" + }, + { + "id": "115763", + "name": "East Syracuse", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.06534000", + "longitude": "-76.07853000" + }, + { + "id": "115765", + "name": "East Tremont", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84538000", + "longitude": "-73.89097000" + }, + { + "id": "115769", + "name": "East Village", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72927000", + "longitude": "-73.98736000" + }, + { + "id": "115773", + "name": "East Williston", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75843000", + "longitude": "-73.63485000" + }, + { + "id": "115776", + "name": "Eastchester", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.95833000", + "longitude": "-73.80861000" + }, + { + "id": "115796", + "name": "Eastport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82593000", + "longitude": "-72.73177000" + }, + { + "id": "115805", + "name": "Eatons Neck", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.93065000", + "longitude": "-73.40151000" + }, + { + "id": "115830", + "name": "Eden", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.65228000", + "longitude": "-78.89698000" + }, + { + "id": "115845", + "name": "Edgemere", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.59622000", + "longitude": "-73.76763000" + }, + { + "id": "115872", + "name": "Edinburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.22174000", + "longitude": "-74.10402000" + }, + { + "id": "115902", + "name": "Eggertsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.96339000", + "longitude": "-78.80392000" + }, + { + "id": "115947", + "name": "Elbridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.03451000", + "longitude": "-76.44799000" + }, + { + "id": "115980", + "name": "Elizabethtown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.21616000", + "longitude": "-73.59097000" + }, + { + "id": "116020", + "name": "Ellenville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.71704000", + "longitude": "-74.39571000" + }, + { + "id": "116047", + "name": "Elma Center", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.82978000", + "longitude": "-78.63614000" + }, + { + "id": "116052", + "name": "Elmhurst", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73649000", + "longitude": "-73.87791000" + }, + { + "id": "116053", + "name": "Elmira", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.08980000", + "longitude": "-76.80773000" + }, + { + "id": "116054", + "name": "Elmira Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.12980000", + "longitude": "-76.82079000" + }, + { + "id": "116055", + "name": "Elmont", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70094000", + "longitude": "-73.71291000" + }, + { + "id": "116059", + "name": "Elmsford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.05510000", + "longitude": "-73.82013000" + }, + { + "id": "116072", + "name": "Eltingville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.54538000", + "longitude": "-74.16570000" + }, + { + "id": "116082", + "name": "Elwood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84538000", + "longitude": "-73.33512000" + }, + { + "id": "116095", + "name": "Emerson Hill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60872000", + "longitude": "-74.09598000" + }, + { + "id": "116120", + "name": "Endicott", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.09841000", + "longitude": "-76.04937000" + }, + { + "id": "116121", + "name": "Endwell", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.11285000", + "longitude": "-76.02103000" + }, + { + "id": "116168", + "name": "Erie County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.75824000", + "longitude": "-78.77966000" + }, + { + "id": "116196", + "name": "Essex County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.11722000", + "longitude": "-73.77271000" + }, + { + "id": "116341", + "name": "Fairmount", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.04729000", + "longitude": "-76.23854000" + }, + { + "id": "116345", + "name": "Fairport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09867000", + "longitude": "-77.44194000" + }, + { + "id": "116353", + "name": "Fairview", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.72370000", + "longitude": "-73.91986000" + }, + { + "id": "116367", + "name": "Falconer", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.11867000", + "longitude": "-79.19838000" + }, + { + "id": "116384", + "name": "Fallsburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.73204000", + "longitude": "-74.60127000" + }, + { + "id": "116395", + "name": "Far Rockaway", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60538000", + "longitude": "-73.75513000" + }, + { + "id": "116411", + "name": "Farmingdale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73260000", + "longitude": "-73.44540000" + }, + { + "id": "116424", + "name": "Farmingville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.83121000", + "longitude": "-73.02955000" + }, + { + "id": "116460", + "name": "Fayetteville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.02979000", + "longitude": "-76.00436000" + }, + { + "id": "116512", + "name": "Financial District", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70789000", + "longitude": "-74.00857000" + }, + { + "id": "116524", + "name": "Firthcliffe", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.43926000", + "longitude": "-74.04514000" + }, + { + "id": "116532", + "name": "Fishkill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.53565000", + "longitude": "-73.89903000" + }, + { + "id": "116548", + "name": "Flanders", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.90343000", + "longitude": "-72.61759000" + }, + { + "id": "116553", + "name": "Flatbush", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65205000", + "longitude": "-73.95903000" + }, + { + "id": "116555", + "name": "Flatlands", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.62122000", + "longitude": "-73.93486000" + }, + { + "id": "116575", + "name": "Floral Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72371000", + "longitude": "-73.70485000" + }, + { + "id": "116592", + "name": "Florida", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.33176000", + "longitude": "-74.35682000" + }, + { + "id": "116600", + "name": "Flower Hill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80732000", + "longitude": "-73.68124000" + }, + { + "id": "116629", + "name": "Fonda", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.95452000", + "longitude": "-74.37652000" + }, + { + "id": "116639", + "name": "Fordham", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85927000", + "longitude": "-73.89847000" + }, + { + "id": "116658", + "name": "Forest Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71621000", + "longitude": "-73.85014000" + }, + { + "id": "116702", + "name": "Fort Covington Hamlet", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.97178000", + "longitude": "-74.50757000" + }, + { + "id": "116708", + "name": "Fort Drum", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.05843000", + "longitude": "-75.76189000" + }, + { + "id": "116709", + "name": "Fort Edward", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.26702000", + "longitude": "-73.58456000" + }, + { + "id": "116715", + "name": "Fort Hamilton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.61872000", + "longitude": "-74.03320000" + }, + { + "id": "116732", + "name": "Fort Montgomery", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.33148000", + "longitude": "-73.98681000" + }, + { + "id": "116743", + "name": "Fort Plain", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.93146000", + "longitude": "-74.62264000" + }, + { + "id": "116748", + "name": "Fort Salonga", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.91260000", + "longitude": "-73.30095000" + }, + { + "id": "116758", + "name": "Fort Wadsworth", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60113000", + "longitude": "-74.05738000" + }, + { + "id": "116823", + "name": "Frankfort", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.03896000", + "longitude": "-75.07044000" + }, + { + "id": "116861", + "name": "Franklin County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.59293000", + "longitude": "-74.30376000" + }, + { + "id": "116872", + "name": "Franklin Square", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70732000", + "longitude": "-73.67596000" + }, + { + "id": "116876", + "name": "Franklinville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.33701000", + "longitude": "-78.45808000" + }, + { + "id": "116896", + "name": "Fredonia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.44006000", + "longitude": "-79.33171000" + }, + { + "id": "116914", + "name": "Freeport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65760000", + "longitude": "-73.58318000" + }, + { + "id": "116937", + "name": "Fresh Meadows", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73482000", + "longitude": "-73.79347000" + }, + { + "id": "116941", + "name": "Frewsburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.05450000", + "longitude": "-79.15810000" + }, + { + "id": "116949", + "name": "Friendship", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.20646000", + "longitude": "-78.13751000" + }, + { + "id": "116991", + "name": "Fulton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.32285000", + "longitude": "-76.41716000" + }, + { + "id": "116997", + "name": "Fulton County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.11385000", + "longitude": "-74.42217000" + }, + { + "id": "117031", + "name": "Galeville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09007000", + "longitude": "-76.17298000" + }, + { + "id": "117050", + "name": "Gang Mills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.14619000", + "longitude": "-77.11164000" + }, + { + "id": "117058", + "name": "Garden City", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72677000", + "longitude": "-73.63430000" + }, + { + "id": "117062", + "name": "Garden City Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74093000", + "longitude": "-73.66263000" + }, + { + "id": "117063", + "name": "Garden City South", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71232000", + "longitude": "-73.66096000" + }, + { + "id": "117077", + "name": "Gardnertown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.53509000", + "longitude": "-74.07014000" + }, + { + "id": "117111", + "name": "Gasport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.19922000", + "longitude": "-78.57614000" + }, + { + "id": "117120", + "name": "Gates-North Gates", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.16547000", + "longitude": "-77.70066000" + }, + { + "id": "117136", + "name": "Genesee County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.00093000", + "longitude": "-78.19371000" + }, + { + "id": "117138", + "name": "Geneseo", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.79590000", + "longitude": "-77.81695000" + }, + { + "id": "117144", + "name": "Geneva", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.86896000", + "longitude": "-76.97774000" + }, + { + "id": "117242", + "name": "Glasco", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.04370000", + "longitude": "-73.94736000" + }, + { + "id": "117264", + "name": "Glen Cove", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86232000", + "longitude": "-73.63374000" + }, + { + "id": "117267", + "name": "Glen Head", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.83538000", + "longitude": "-73.62374000" + }, + { + "id": "117269", + "name": "Glen Oaks", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74705000", + "longitude": "-73.71152000" + }, + { + "id": "117283", + "name": "Glendale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70149000", + "longitude": "-73.88680000" + }, + { + "id": "117304", + "name": "Glens Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.30952000", + "longitude": "-73.64401000" + }, + { + "id": "117305", + "name": "Glens Falls North", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.33506000", + "longitude": "-73.68251000" + }, + { + "id": "117317", + "name": "Glenwood Landing", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.83066000", + "longitude": "-73.63874000" + }, + { + "id": "117328", + "name": "Gloversville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.05285000", + "longitude": "-74.34375000" + }, + { + "id": "117362", + "name": "Goldens Bridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.29343000", + "longitude": "-73.67680000" + }, + { + "id": "117399", + "name": "Gordon Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85871000", + "longitude": "-72.97066000" + }, + { + "id": "117409", + "name": "Goshen", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.40204000", + "longitude": "-74.32432000" + }, + { + "id": "117419", + "name": "Gouverneur", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.33673000", + "longitude": "-75.46299000" + }, + { + "id": "117422", + "name": "Gowanda", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.46312000", + "longitude": "-78.93587000" + }, + { + "id": "117444", + "name": "Gramercy Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73750000", + "longitude": "-73.98611000" + }, + { + "id": "117462", + "name": "Grand Island", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.03311000", + "longitude": "-78.96254000" + }, + { + "id": "117485", + "name": "Grandyle Village", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.99645000", + "longitude": "-78.95504000" + }, + { + "id": "117503", + "name": "Graniteville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.62483000", + "longitude": "-74.14848000" + }, + { + "id": "117507", + "name": "Grant City", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.58205000", + "longitude": "-74.10486000" + }, + { + "id": "117536", + "name": "Granville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.40785000", + "longitude": "-73.25955000" + }, + { + "id": "117548", + "name": "Gravesend", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.59760000", + "longitude": "-73.96514000" + }, + { + "id": "117574", + "name": "Great Kills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.55427000", + "longitude": "-74.15153000" + }, + { + "id": "117575", + "name": "Great Neck", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80066000", + "longitude": "-73.72846000" + }, + { + "id": "117576", + "name": "Great Neck Estates", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78705000", + "longitude": "-73.73680000" + }, + { + "id": "117577", + "name": "Great Neck Gardens", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79722000", + "longitude": "-73.72389000" + }, + { + "id": "117578", + "name": "Great Neck Plaza", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78677000", + "longitude": "-73.72652000" + }, + { + "id": "117579", + "name": "Great River", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72121000", + "longitude": "-73.15761000" + }, + { + "id": "117584", + "name": "Greece", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.20978000", + "longitude": "-77.69306000" + }, + { + "id": "117599", + "name": "Green Island", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.74424000", + "longitude": "-73.69151000" + }, + { + "id": "117622", + "name": "Greenburgh", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.03287000", + "longitude": "-73.84291000" + }, + { + "id": "117630", + "name": "Greene", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.32924000", + "longitude": "-75.76991000" + }, + { + "id": "117642", + "name": "Greene County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.27652000", + "longitude": "-74.12271000" + }, + { + "id": "117658", + "name": "Greenlawn", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86899000", + "longitude": "-73.36512000" + }, + { + "id": "117661", + "name": "Greenpoint", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72371000", + "longitude": "-73.95097000" + }, + { + "id": "117662", + "name": "Greenport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.10343000", + "longitude": "-72.35925000" + }, + { + "id": "117663", + "name": "Greenport West", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.10178000", + "longitude": "-72.37195000" + }, + { + "id": "117679", + "name": "Greenvale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81066000", + "longitude": "-73.62846000" + }, + { + "id": "117693", + "name": "Greenville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.99315000", + "longitude": "-73.81986000" + }, + { + "id": "117699", + "name": "Greenwich", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09063000", + "longitude": "-73.49873000" + }, + { + "id": "117711", + "name": "Greenwood Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.22259000", + "longitude": "-74.29432000" + }, + { + "id": "117750", + "name": "Groton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.58785000", + "longitude": "-76.36688000" + }, + { + "id": "117775", + "name": "Grymes Hill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.61872000", + "longitude": "-74.09348000" + }, + { + "id": "117834", + "name": "Hadley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.31729000", + "longitude": "-73.84818000" + }, + { + "id": "117835", + "name": "Hagaman", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.97452000", + "longitude": "-74.15096000" + }, + { + "id": "117852", + "name": "Halesite", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.88843000", + "longitude": "-73.41540000" + }, + { + "id": "117884", + "name": "Hamburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.71589000", + "longitude": "-78.82948000" + }, + { + "id": "117893", + "name": "Hamilton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.82701000", + "longitude": "-75.54462000" + }, + { + "id": "117903", + "name": "Hamilton County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.66112000", + "longitude": "-74.49736000" + }, + { + "id": "117909", + "name": "Hamlin", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.30312000", + "longitude": "-77.92112000" + }, + { + "id": "117935", + "name": "Hampton Bays", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86899000", + "longitude": "-72.51759000" + }, + { + "id": "117939", + "name": "Hampton Manor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.62091000", + "longitude": "-73.72845000" + }, + { + "id": "117964", + "name": "Hannawa Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.61228000", + "longitude": "-74.97103000" + }, + { + "id": "117990", + "name": "Harbor Isle", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60344000", + "longitude": "-73.66457000" + }, + { + "id": "118023", + "name": "Harlem", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80788000", + "longitude": "-73.94542000" + }, + { + "id": "118040", + "name": "Harriman", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.30843000", + "longitude": "-74.14459000" + }, + { + "id": "118046", + "name": "Harris Hill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.96478000", + "longitude": "-78.67753000" + }, + { + "id": "118059", + "name": "Harrison", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.96899000", + "longitude": "-73.71263000" + }, + { + "id": "118090", + "name": "Hartford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.36368000", + "longitude": "-73.39372000" + }, + { + "id": "118101", + "name": "Hartsdale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.01899000", + "longitude": "-73.79819000" + }, + { + "id": "118135", + "name": "Hastings-on-Hudson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.99454000", + "longitude": "-73.87875000" + }, + { + "id": "118143", + "name": "Hauppauge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82565000", + "longitude": "-73.20261000" + }, + { + "id": "118152", + "name": "Haverstraw", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.19759000", + "longitude": "-73.96458000" + }, + { + "id": "118153", + "name": "Haviland", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.76676000", + "longitude": "-73.90152000" + }, + { + "id": "118174", + "name": "Hawthorne", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.10732000", + "longitude": "-73.79597000" + }, + { + "id": "118215", + "name": "Head of the Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.90343000", + "longitude": "-73.15789000" + }, + { + "id": "118258", + "name": "Hell's Kitchen", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76496000", + "longitude": "-73.99090000" + }, + { + "id": "118270", + "name": "Hempstead", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70621000", + "longitude": "-73.61874000" + }, + { + "id": "118318", + "name": "Heritage Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.33954000", + "longitude": "-73.69735000" + }, + { + "id": "118323", + "name": "Herkimer", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.02563000", + "longitude": "-74.98599000" + }, + { + "id": "118324", + "name": "Herkimer County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.41970000", + "longitude": "-74.96250000" + }, + { + "id": "118337", + "name": "Herricks", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75538000", + "longitude": "-73.66680000" + }, + { + "id": "118349", + "name": "Hewlett", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.64316000", + "longitude": "-73.69569000" + }, + { + "id": "118350", + "name": "Hewlett Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63621000", + "longitude": "-73.68152000" + }, + { + "id": "118371", + "name": "Hicksville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76843000", + "longitude": "-73.52513000" + }, + { + "id": "118397", + "name": "Highland", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.72093000", + "longitude": "-73.96014000" + }, + { + "id": "118405", + "name": "Highland Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.36926000", + "longitude": "-73.96625000" + }, + { + "id": "118409", + "name": "Highland Mills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.34704000", + "longitude": "-74.12626000" + }, + { + "id": "118440", + "name": "Hillcrest", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.12787000", + "longitude": "-74.04097000" + }, + { + "id": "118465", + "name": "Hillside", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70788000", + "longitude": "-73.78680000" + }, + { + "id": "118466", + "name": "Hillside Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.61482000", + "longitude": "-73.79819000" + }, + { + "id": "118473", + "name": "Hilton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.28812000", + "longitude": "-77.79334000" + }, + { + "id": "118518", + "name": "Holbrook", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81232000", + "longitude": "-73.07844000" + }, + { + "id": "118520", + "name": "Holcomb", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90229000", + "longitude": "-77.41971000" + }, + { + "id": "118540", + "name": "Holland", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.64117000", + "longitude": "-78.54169000" + }, + { + "id": "118543", + "name": "Holley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.22645000", + "longitude": "-78.02668000" + }, + { + "id": "118549", + "name": "Hollis", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71344000", + "longitude": "-73.76708000" + }, + { + "id": "118580", + "name": "Holtsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81538000", + "longitude": "-73.04511000" + }, + { + "id": "118596", + "name": "Homer", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.63701000", + "longitude": "-76.17882000" + }, + { + "id": "118617", + "name": "Honeoye Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.95229000", + "longitude": "-77.59028000" + }, + { + "id": "118637", + "name": "Hoosick Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90119000", + "longitude": "-73.35150000" + }, + { + "id": "118667", + "name": "Hornell", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.32785000", + "longitude": "-77.66110000" + }, + { + "id": "118673", + "name": "Horseheads", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.16702000", + "longitude": "-76.82051000" + }, + { + "id": "118674", + "name": "Horseheads North", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.19278000", + "longitude": "-76.80782000" + }, + { + "id": "118690", + "name": "Houghton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.42340000", + "longitude": "-78.15723000" + }, + { + "id": "118710", + "name": "Howard Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65788000", + "longitude": "-73.83625000" + }, + { + "id": "118744", + "name": "Hudson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.25286000", + "longitude": "-73.79096000" + }, + { + "id": "118750", + "name": "Hudson Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.30063000", + "longitude": "-73.58595000" + }, + { + "id": "118769", + "name": "Huguenot", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.53733000", + "longitude": "-74.19459000" + }, + { + "id": "118802", + "name": "Huntington", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86815000", + "longitude": "-73.42568000" + }, + { + "id": "118804", + "name": "Huntington Bay", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.89982000", + "longitude": "-73.41484000" + }, + { + "id": "118808", + "name": "Huntington Station", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85343000", + "longitude": "-73.41151000" + }, + { + "id": "118813", + "name": "Hunts Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81260000", + "longitude": "-73.88402000" + }, + { + "id": "118820", + "name": "Hurley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.92454000", + "longitude": "-74.06125000" + }, + { + "id": "118850", + "name": "Hyde Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.78482000", + "longitude": "-73.93319000" + }, + { + "id": "118878", + "name": "Ilion", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.01507000", + "longitude": "-75.03543000" + }, + { + "id": "118963", + "name": "Inwood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86566000", + "longitude": "-73.92680000" + }, + { + "id": "118996", + "name": "Irondequoit", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.21340000", + "longitude": "-77.57972000" + }, + { + "id": "119010", + "name": "Irvington", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.03922000", + "longitude": "-73.86823000" + }, + { + "id": "119027", + "name": "Island Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60427000", + "longitude": "-73.65541000" + }, + { + "id": "119029", + "name": "Islandia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80426000", + "longitude": "-73.16900000" + }, + { + "id": "119034", + "name": "Islip", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72982000", + "longitude": "-73.21039000" + }, + { + "id": "119035", + "name": "Islip Terrace", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74315000", + "longitude": "-73.19262000" + }, + { + "id": "119044", + "name": "Ithaca", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.44063000", + "longitude": "-76.49661000" + }, + { + "id": "119097", + "name": "Jackson Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75566000", + "longitude": "-73.88541000" + }, + { + "id": "119111", + "name": "Jamaica", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69149000", + "longitude": "-73.80569000" + }, + { + "id": "119119", + "name": "Jamesport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.94954000", + "longitude": "-72.58148000" + }, + { + "id": "119124", + "name": "Jamestown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.09700000", + "longitude": "-79.23533000" + }, + { + "id": "119127", + "name": "Jamestown West", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.08851000", + "longitude": "-79.28110000" + }, + { + "id": "119191", + "name": "Jefferson County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.99885000", + "longitude": "-76.05211000" + }, + { + "id": "119201", + "name": "Jefferson Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.23398000", + "longitude": "-73.88235000" + }, + { + "id": "119204", + "name": "Jefferson Valley-Yorktown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.31797000", + "longitude": "-73.80066000" + }, + { + "id": "119224", + "name": "Jericho", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79204000", + "longitude": "-73.53985000" + }, + { + "id": "119259", + "name": "Johnson City", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.11563000", + "longitude": "-75.95881000" + }, + { + "id": "119284", + "name": "Johnstown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.00674000", + "longitude": "-74.36764000" + }, + { + "id": "119316", + "name": "Jordan", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.06534000", + "longitude": "-76.47299000" + }, + { + "id": "119391", + "name": "Kaser", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.12121000", + "longitude": "-74.06709000" + }, + { + "id": "119394", + "name": "Katonah", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.25898000", + "longitude": "-73.68541000" + }, + { + "id": "119423", + "name": "Keeseville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.50505000", + "longitude": "-73.48013000" + }, + { + "id": "119462", + "name": "Kenmore", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.96589000", + "longitude": "-78.87004000" + }, + { + "id": "119483", + "name": "Kensington", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79343000", + "longitude": "-73.72208000" + }, + { + "id": "119511", + "name": "Kerhonkson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.77482000", + "longitude": "-74.29821000" + }, + { + "id": "119529", + "name": "Keuka Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.61535000", + "longitude": "-77.09219000" + }, + { + "id": "119530", + "name": "Kew Gardens", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71427000", + "longitude": "-73.83097000" + }, + { + "id": "119531", + "name": "Kew Gardens Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73002000", + "longitude": "-73.82340000" + }, + { + "id": "119550", + "name": "Kiantone", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.02200000", + "longitude": "-79.19810000" + }, + { + "id": "119575", + "name": "Kinderhook", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.39536000", + "longitude": "-73.69790000" + }, + { + "id": "119599", + "name": "Kings Bridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.87871000", + "longitude": "-73.90514000" + }, + { + "id": "119601", + "name": "Kings County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63439000", + "longitude": "-73.95027000" + }, + { + "id": "119605", + "name": "Kings Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.88621000", + "longitude": "-73.25734000" + }, + { + "id": "119608", + "name": "Kings Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81982000", + "longitude": "-73.73513000" + }, + { + "id": "119627", + "name": "Kingston", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.92704000", + "longitude": "-73.99736000" + }, + { + "id": "119656", + "name": "Kiryas Joel", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.34204000", + "longitude": "-74.16792000" + }, + { + "id": "119813", + "name": "Lackawanna", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.82561000", + "longitude": "-78.82337000" + }, + { + "id": "119875", + "name": "Lake Carmel", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.46148000", + "longitude": "-73.67096000" + }, + { + "id": "119907", + "name": "Lake Erie Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.62423000", + "longitude": "-79.06698000" + }, + { + "id": "119914", + "name": "Lake Grove", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85288000", + "longitude": "-73.11511000" + }, + { + "id": "119926", + "name": "Lake Katrine", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.98565000", + "longitude": "-73.98819000" + }, + { + "id": "119935", + "name": "Lake Luzerne", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.31285000", + "longitude": "-73.83484000" + }, + { + "id": "119945", + "name": "Lake Mohegan", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.31787000", + "longitude": "-73.84625000" + }, + { + "id": "119963", + "name": "Lake Placid", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.27962000", + "longitude": "-73.98198000" + }, + { + "id": "119964", + "name": "Lake Pleasant", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.47090000", + "longitude": "-74.41265000" + }, + { + "id": "119970", + "name": "Lake Ronkonkoma", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.83510000", + "longitude": "-73.13122000" + }, + { + "id": "119982", + "name": "Lake Success", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77066000", + "longitude": "-73.71763000" + }, + { + "id": "120016", + "name": "Lakeland", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09034000", + "longitude": "-76.24048000" + }, + { + "id": "120039", + "name": "Lakeview", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68538000", + "longitude": "-73.65263000" + }, + { + "id": "120049", + "name": "Lakewood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.10422000", + "longitude": "-79.33310000" + }, + { + "id": "120086", + "name": "Lancaster", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90061000", + "longitude": "-78.67031000" + }, + { + "id": "120128", + "name": "Lansing", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.48424000", + "longitude": "-76.47994000" + }, + { + "id": "120141", + "name": "Larchmont", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.92788000", + "longitude": "-73.75180000" + }, + { + "id": "120168", + "name": "Latham", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.74702000", + "longitude": "-73.75901000" + }, + { + "id": "120177", + "name": "Lattingtown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.89538000", + "longitude": "-73.60096000" + }, + { + "id": "120192", + "name": "Laurel", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.96954000", + "longitude": "-72.56203000" + }, + { + "id": "120198", + "name": "Laurel Hollow", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85677000", + "longitude": "-73.46957000" + }, + { + "id": "120204", + "name": "Laurelton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.67019000", + "longitude": "-73.74659000" + }, + { + "id": "120228", + "name": "Lawrence", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.61566000", + "longitude": "-73.72958000" + }, + { + "id": "120263", + "name": "Le Roy", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.97839000", + "longitude": "-77.98418000" + }, + { + "id": "120407", + "name": "Levittown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72593000", + "longitude": "-73.51429000" + }, + { + "id": "120415", + "name": "Lewis County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.78469000", + "longitude": "-75.44879000" + }, + { + "id": "120426", + "name": "Lewiston", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.17256000", + "longitude": "-79.03588000" + }, + { + "id": "120466", + "name": "Liberty", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.80120000", + "longitude": "-74.74655000" + }, + { + "id": "120478", + "name": "Lido Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.58899000", + "longitude": "-73.62541000" + }, + { + "id": "120489", + "name": "Lima", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90479000", + "longitude": "-77.61139000" + }, + { + "id": "120543", + "name": "Lincoln Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.95065000", + "longitude": "-73.99403000" + }, + { + "id": "120548", + "name": "Lincolndale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.32287000", + "longitude": "-73.71819000" + }, + { + "id": "120568", + "name": "Lindenhurst", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68677000", + "longitude": "-73.37345000" + }, + { + "id": "120570", + "name": "Lindley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.02841000", + "longitude": "-77.13969000" + }, + { + "id": "120619", + "name": "Little Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.04340000", + "longitude": "-74.85960000" + }, + { + "id": "120622", + "name": "Little Neck", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76289000", + "longitude": "-73.73225000" + }, + { + "id": "120631", + "name": "Little Valley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.25256000", + "longitude": "-78.80559000" + }, + { + "id": "120646", + "name": "Liverpool", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.10646000", + "longitude": "-76.21770000" + }, + { + "id": "120658", + "name": "Livingston County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.72808000", + "longitude": "-77.77549000" + }, + { + "id": "120659", + "name": "Livingston Manor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.90037000", + "longitude": "-74.82822000" + }, + { + "id": "120663", + "name": "Livonia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.82145000", + "longitude": "-77.66861000" + }, + { + "id": "120667", + "name": "Lloyd Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.90343000", + "longitude": "-73.45984000" + }, + { + "id": "120681", + "name": "Lockport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.17061000", + "longitude": "-78.69031000" + }, + { + "id": "120688", + "name": "Locust Valley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.87593000", + "longitude": "-73.59707000" + }, + { + "id": "120737", + "name": "Long Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.58844000", + "longitude": "-73.65791000" + }, + { + "id": "120745", + "name": "Long Island City", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74482000", + "longitude": "-73.94875000" + }, + { + "id": "120772", + "name": "Lorenz Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.26370000", + "longitude": "-73.76846000" + }, + { + "id": "120850", + "name": "Lowville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.78674000", + "longitude": "-75.49185000" + }, + { + "id": "120913", + "name": "Lynbrook", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65483000", + "longitude": "-73.67180000" + }, + { + "id": "120917", + "name": "Lyncourt", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.08146000", + "longitude": "-76.12576000" + }, + { + "id": "120943", + "name": "Lyons", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.06423000", + "longitude": "-76.99025000" + }, + { + "id": "120954", + "name": "Macedon", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.06923000", + "longitude": "-77.29887000" + }, + { + "id": "121017", + "name": "Madison County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.91277000", + "longitude": "-75.66967000" + }, + { + "id": "121046", + "name": "Mahopac", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.37232000", + "longitude": "-73.73346000" + }, + { + "id": "121066", + "name": "Malone", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.84866000", + "longitude": "-74.29490000" + }, + { + "id": "121074", + "name": "Malverne", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.67899000", + "longitude": "-73.67402000" + }, + { + "id": "121075", + "name": "Mamaroneck", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.94871000", + "longitude": "-73.73263000" + }, + { + "id": "121099", + "name": "Manchester", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.96979000", + "longitude": "-77.23026000" + }, + { + "id": "121111", + "name": "Manhasset", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79788000", + "longitude": "-73.69957000" + }, + { + "id": "121112", + "name": "Manhasset Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75927000", + "longitude": "-73.67985000" + }, + { + "id": "121115", + "name": "Manhattan", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78343000", + "longitude": "-73.96625000" + }, + { + "id": "121131", + "name": "Manlius", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.00201000", + "longitude": "-75.97686000" + }, + { + "id": "121140", + "name": "Manorhaven", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84316000", + "longitude": "-73.71485000" + }, + { + "id": "121141", + "name": "Manorville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.87371000", + "longitude": "-72.80788000" + }, + { + "id": "121191", + "name": "Marbletown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.88343000", + "longitude": "-74.11320000" + }, + { + "id": "121195", + "name": "Marcellus", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.98284000", + "longitude": "-76.34049000" + }, + { + "id": "121227", + "name": "Mariners Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63677000", + "longitude": "-74.15875000" + }, + { + "id": "121244", + "name": "Marion", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.14340000", + "longitude": "-77.18915000" + }, + { + "id": "121275", + "name": "Marlboro", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.60565000", + "longitude": "-73.97153000" + }, + { + "id": "121386", + "name": "Maspeth", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72316000", + "longitude": "-73.91264000" + }, + { + "id": "121391", + "name": "Massapequa", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68066000", + "longitude": "-73.47429000" + }, + { + "id": "121392", + "name": "Massapequa Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68038000", + "longitude": "-73.45512000" + }, + { + "id": "121393", + "name": "Massena", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.92810000", + "longitude": "-74.89186000" + }, + { + "id": "121394", + "name": "Mastic", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80204000", + "longitude": "-72.84094000" + }, + { + "id": "121395", + "name": "Mastic Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76677000", + "longitude": "-72.85205000" + }, + { + "id": "121413", + "name": "Mattituck", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.99121000", + "longitude": "-72.53425000" + }, + { + "id": "121415", + "name": "Mattydale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09784000", + "longitude": "-76.14520000" + }, + { + "id": "121431", + "name": "Maybrook", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.48398000", + "longitude": "-74.21765000" + }, + { + "id": "121455", + "name": "Mayville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.25395000", + "longitude": "-79.50449000" + }, + { + "id": "121504", + "name": "McGraw", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.59618000", + "longitude": "-76.09326000" + }, + { + "id": "121526", + "name": "McKownville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.68397000", + "longitude": "-73.84762000" + }, + { + "id": "121581", + "name": "Mechanicstown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.44287000", + "longitude": "-74.38849000" + }, + { + "id": "121586", + "name": "Mechanicville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90285000", + "longitude": "-73.68734000" + }, + { + "id": "121594", + "name": "Medford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81760000", + "longitude": "-73.00011000" + }, + { + "id": "121605", + "name": "Medina", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.22006000", + "longitude": "-78.38697000" + }, + { + "id": "121630", + "name": "Melrose", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82455000", + "longitude": "-73.91041000" + }, + { + "id": "121633", + "name": "Melrose Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90868000", + "longitude": "-76.54022000" + }, + { + "id": "121635", + "name": "Melville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79343000", + "longitude": "-73.41512000" + }, + { + "id": "121645", + "name": "Menands", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.69202000", + "longitude": "-73.72456000" + }, + { + "id": "121704", + "name": "Merrick", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.66288000", + "longitude": "-73.55152000" + }, + { + "id": "121715", + "name": "Merritt Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.53848000", + "longitude": "-73.87238000" + }, + { + "id": "121743", + "name": "Mexico", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.45951000", + "longitude": "-76.22882000" + }, + { + "id": "121761", + "name": "Middle Island", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.88427000", + "longitude": "-72.93733000" + }, + { + "id": "121764", + "name": "Middle Village", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71649000", + "longitude": "-73.88125000" + }, + { + "id": "121770", + "name": "Middleburgh", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.59869000", + "longitude": "-74.33292000" + }, + { + "id": "121775", + "name": "Middleport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.21256000", + "longitude": "-78.47641000" + }, + { + "id": "121791", + "name": "Middletown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.44593000", + "longitude": "-74.42293000" + }, + { + "id": "121802", + "name": "Midland Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.57316000", + "longitude": "-74.09459000" + }, + { + "id": "121866", + "name": "Mill Neck", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.88704000", + "longitude": "-73.55512000" + }, + { + "id": "121873", + "name": "Millbrook", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.78509000", + "longitude": "-73.69402000" + }, + { + "id": "121883", + "name": "Miller Place", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.95982000", + "longitude": "-72.99621000" + }, + { + "id": "121916", + "name": "Milton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.03369000", + "longitude": "-73.85262000" + }, + { + "id": "121932", + "name": "Mineola", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74927000", + "longitude": "-73.64068000" + }, + { + "id": "121944", + "name": "Minetto", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.39812000", + "longitude": "-76.47744000" + }, + { + "id": "121945", + "name": "Mineville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.09283000", + "longitude": "-73.51818000" + }, + { + "id": "121960", + "name": "Minoa", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.07618000", + "longitude": "-76.00075000" + }, + { + "id": "122021", + "name": "Mohawk", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.01146000", + "longitude": "-75.00404000" + }, + { + "id": "122062", + "name": "Monroe", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.33065000", + "longitude": "-74.18681000" + }, + { + "id": "122080", + "name": "Monroe County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.16512000", + "longitude": "-77.63626000" + }, + { + "id": "122089", + "name": "Monsey", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.11121000", + "longitude": "-74.06848000" + }, + { + "id": "122103", + "name": "Montauk", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.03594000", + "longitude": "-71.95451000" + }, + { + "id": "122113", + "name": "Montebello", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.13593000", + "longitude": "-74.11848000" + }, + { + "id": "122135", + "name": "Montgomery", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.52759000", + "longitude": "-74.23682000" + }, + { + "id": "122154", + "name": "Montgomery County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90228000", + "longitude": "-74.43968000" + }, + { + "id": "122169", + "name": "Monticello", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.65565000", + "longitude": "-74.68933000" + }, + { + "id": "122174", + "name": "Montour Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.34730000", + "longitude": "-76.84524000" + }, + { + "id": "122182", + "name": "Montrose", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.25232000", + "longitude": "-73.93153000" + }, + { + "id": "122223", + "name": "Moravia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.71257000", + "longitude": "-76.42160000" + }, + { + "id": "122256", + "name": "Moriches", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80732000", + "longitude": "-72.82121000" + }, + { + "id": "122258", + "name": "Morningside Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81000000", + "longitude": "-73.96250000" + }, + { + "id": "122272", + "name": "Morris Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84982000", + "longitude": "-73.91986000" + }, + { + "id": "122273", + "name": "Morris Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85232000", + "longitude": "-73.85347000" + }, + { + "id": "122275", + "name": "Morrisania", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82927000", + "longitude": "-73.90653000" + }, + { + "id": "122279", + "name": "Morrisonville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.69310000", + "longitude": "-73.56208000" + }, + { + "id": "122285", + "name": "Morrisville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.89868000", + "longitude": "-75.64018000" + }, + { + "id": "122313", + "name": "Mott Haven", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80899000", + "longitude": "-73.92291000" + }, + { + "id": "122356", + "name": "Mount Ivy", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.18676000", + "longitude": "-74.03486000" + }, + { + "id": "122360", + "name": "Mount Kisco", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.20426000", + "longitude": "-73.72708000" + }, + { + "id": "122365", + "name": "Mount Morris", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.72562000", + "longitude": "-77.87417000" + }, + { + "id": "122389", + "name": "Mount Sinai", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.94704000", + "longitude": "-73.02955000" + }, + { + "id": "122402", + "name": "Mount Vernon", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.91260000", + "longitude": "-73.83708000" + }, + { + "id": "122423", + "name": "Mountain Lodge Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.38843000", + "longitude": "-74.14181000" + }, + { + "id": "122476", + "name": "Munsey Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79871000", + "longitude": "-73.67985000" + }, + { + "id": "122477", + "name": "Munsons Corners", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.58229000", + "longitude": "-76.20910000" + }, + { + "id": "122516", + "name": "Muttontown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82399000", + "longitude": "-73.54763000" + }, + { + "id": "122517", + "name": "Myers Corner", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.60620000", + "longitude": "-73.87291000" + }, + { + "id": "122545", + "name": "Nanuet", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.08871000", + "longitude": "-74.01347000" + }, + { + "id": "122548", + "name": "Napanoch", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.74398000", + "longitude": "-74.37154000" + }, + { + "id": "122554", + "name": "Naples", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.61535000", + "longitude": "-77.40249000" + }, + { + "id": "122580", + "name": "Nassau", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.51591000", + "longitude": "-73.61012000" + }, + { + "id": "122583", + "name": "Nassau County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73217000", + "longitude": "-73.58545000" + }, + { + "id": "122612", + "name": "Nedrow", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.97507000", + "longitude": "-76.14131000" + }, + { + "id": "122636", + "name": "Neponsit", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.57177000", + "longitude": "-73.86152000" + }, + { + "id": "122639", + "name": "Nesconset", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85204000", + "longitude": "-73.15400000" + }, + { + "id": "122672", + "name": "New Brighton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.64233000", + "longitude": "-74.09292000" + }, + { + "id": "122682", + "name": "New Cassel", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75899000", + "longitude": "-73.56957000" + }, + { + "id": "122695", + "name": "New City", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.14760000", + "longitude": "-73.98931000" + }, + { + "id": "122699", + "name": "New Dorp", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.57399000", + "longitude": "-74.11598000" + }, + { + "id": "122700", + "name": "New Dorp Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.56538000", + "longitude": "-74.10292000" + }, + { + "id": "122712", + "name": "New Hartford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.07340000", + "longitude": "-75.28767000" + }, + { + "id": "122720", + "name": "New Hempstead", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.14982000", + "longitude": "-74.03375000" + }, + { + "id": "122729", + "name": "New Hyde Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73510000", + "longitude": "-73.68791000" + }, + { + "id": "122759", + "name": "New Paltz", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.74759000", + "longitude": "-74.08681000" + }, + { + "id": "122773", + "name": "New Rochelle", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.91149000", + "longitude": "-73.78235000" + }, + { + "id": "122781", + "name": "New Springville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.59344000", + "longitude": "-74.16320000" + }, + { + "id": "122782", + "name": "New Square", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.13956000", + "longitude": "-74.02942000" + }, + { + "id": "122794", + "name": "New Windsor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.47676000", + "longitude": "-74.02375000" + }, + { + "id": "122795", + "name": "New York City", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71427000", + "longitude": "-74.00597000" + }, + { + "id": "122796", + "name": "New York County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77427000", + "longitude": "-73.96981000" + }, + { + "id": "122798", + "name": "New York Mills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.10535000", + "longitude": "-75.29128000" + }, + { + "id": "122804", + "name": "Newark", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.04673000", + "longitude": "-77.09525000" + }, + { + "id": "122817", + "name": "Newburgh", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.50343000", + "longitude": "-74.01042000" + }, + { + "id": "122826", + "name": "Newfane", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.28672000", + "longitude": "-78.71031000" + }, + { + "id": "122881", + "name": "Niagara County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.17314000", + "longitude": "-78.69095000" + }, + { + "id": "122882", + "name": "Niagara Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09450000", + "longitude": "-79.05671000" + }, + { + "id": "122906", + "name": "Niskayuna", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.77980000", + "longitude": "-73.84568000" + }, + { + "id": "122907", + "name": "Nissequogue", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.90399000", + "longitude": "-73.19789000" + }, + { + "id": "122910", + "name": "Niverville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.44092000", + "longitude": "-73.66095000" + }, + { + "id": "122944", + "name": "Norfolk", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.80089000", + "longitude": "-74.99103000" + }, + { + "id": "122961", + "name": "North Amityville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69760000", + "longitude": "-73.42512000" + }, + { + "id": "122971", + "name": "North Babylon", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71649000", + "longitude": "-73.32179000" + }, + { + "id": "122972", + "name": "North Ballston Spa", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.01969000", + "longitude": "-73.85109000" + }, + { + "id": "122975", + "name": "North Bay Shore", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73621000", + "longitude": "-73.26262000" + }, + { + "id": "122981", + "name": "North Bellmore", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69149000", + "longitude": "-73.53346000" + }, + { + "id": "122982", + "name": "North Bellport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77427000", + "longitude": "-72.94288000" + }, + { + "id": "122991", + "name": "North Boston", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.68562000", + "longitude": "-78.77670000" + }, + { + "id": "123001", + "name": "North Castle", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.14000000", + "longitude": "-73.68389000" + }, + { + "id": "123008", + "name": "North Collins", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.59534000", + "longitude": "-78.94115000" + }, + { + "id": "123022", + "name": "North Elba", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.24338000", + "longitude": "-73.95431000" + }, + { + "id": "123030", + "name": "North Gates", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.17645000", + "longitude": "-77.70139000" + }, + { + "id": "123032", + "name": "North Great River", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74732000", + "longitude": "-73.16984000" + }, + { + "id": "123040", + "name": "North Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78093000", + "longitude": "-73.67652000" + }, + { + "id": "123058", + "name": "North Lindenhurst", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71427000", + "longitude": "-73.38151000" + }, + { + "id": "123064", + "name": "North Massapequa", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70093000", + "longitude": "-73.46207000" + }, + { + "id": "123065", + "name": "North Merrick", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69121000", + "longitude": "-73.56318000" + }, + { + "id": "123071", + "name": "North New Hyde Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74316000", + "longitude": "-73.69319000" + }, + { + "id": "123076", + "name": "North Patchogue", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78704000", + "longitude": "-73.00900000" + }, + { + "id": "123103", + "name": "North Sea", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.93288000", + "longitude": "-72.41425000" + }, + { + "id": "123113", + "name": "North Syracuse", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.13479000", + "longitude": "-76.12992000" + }, + { + "id": "123115", + "name": "North Tonawanda", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.03867000", + "longitude": "-78.86420000" + }, + { + "id": "123120", + "name": "North Valley Stream", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68510000", + "longitude": "-73.70180000" + }, + { + "id": "123124", + "name": "North Wantagh", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69343000", + "longitude": "-73.50763000" + }, + { + "id": "123146", + "name": "Northeast Ithaca", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.47032000", + "longitude": "-76.46228000" + }, + { + "id": "123162", + "name": "Northport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.90093000", + "longitude": "-73.34317000" + }, + { + "id": "123165", + "name": "Northumberland", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.12730000", + "longitude": "-73.58817000" + }, + { + "id": "123172", + "name": "Northville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.97010000", + "longitude": "-72.61898000" + }, + { + "id": "123174", + "name": "Northwest Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.00982000", + "longitude": "-72.22119000" + }, + { + "id": "123178", + "name": "Northwest Ithaca", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.47059000", + "longitude": "-76.54145000" + }, + { + "id": "123196", + "name": "Norwich", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.53118000", + "longitude": "-75.52351000" + }, + { + "id": "123201", + "name": "Norwood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.75145000", + "longitude": "-74.99436000" + }, + { + "id": "123213", + "name": "Noyack", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.99566000", + "longitude": "-72.34119000" + }, + { + "id": "123217", + "name": "Nunda", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.57951000", + "longitude": "-77.94250000" + }, + { + "id": "123221", + "name": "Nyack", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.09065000", + "longitude": "-73.91791000" + }, + { + "id": "123272", + "name": "Oakdale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74399000", + "longitude": "-73.13872000" + }, + { + "id": "123276", + "name": "Oakfield", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.06589000", + "longitude": "-78.26974000" + }, + { + "id": "123310", + "name": "Oakwood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.56399000", + "longitude": "-74.11598000" + }, + { + "id": "123343", + "name": "Oceanside", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63871000", + "longitude": "-73.64013000" + }, + { + "id": "123372", + "name": "Ogdensburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.69423000", + "longitude": "-75.48634000" + }, + { + "id": "123414", + "name": "Olcott", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.33783000", + "longitude": "-78.71476000" + }, + { + "id": "123415", + "name": "Old Bethpage", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76260000", + "longitude": "-73.45318000" + }, + { + "id": "123417", + "name": "Old Brookville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.83204000", + "longitude": "-73.60485000" + }, + { + "id": "123431", + "name": "Old Westbury", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78871000", + "longitude": "-73.59957000" + }, + { + "id": "123435", + "name": "Olean", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.07756000", + "longitude": "-78.42974000" + }, + { + "id": "123473", + "name": "Oneida", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09257000", + "longitude": "-75.65129000" + }, + { + "id": "123475", + "name": "Oneida County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.24175000", + "longitude": "-75.43584000" + }, + { + "id": "123479", + "name": "Oneonta", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.45286000", + "longitude": "-75.06377000" + }, + { + "id": "123482", + "name": "Onondaga County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.00580000", + "longitude": "-76.19464000" + }, + { + "id": "123485", + "name": "Ontario", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.22090000", + "longitude": "-77.28304000" + }, + { + "id": "123488", + "name": "Ontario County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.85285000", + "longitude": "-77.29982000" + }, + { + "id": "123519", + "name": "Orange County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.40214000", + "longitude": "-74.30557000" + }, + { + "id": "123524", + "name": "Orange Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.53982000", + "longitude": "-74.09820000" + }, + { + "id": "123527", + "name": "Orangeburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.04649000", + "longitude": "-73.94958000" + }, + { + "id": "123538", + "name": "Orchard Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.76756000", + "longitude": "-78.74392000" + }, + { + "id": "123557", + "name": "Oriskany", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.15729000", + "longitude": "-75.33267000" + }, + { + "id": "123565", + "name": "Orleans County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.25070000", + "longitude": "-78.18901000" + }, + { + "id": "123617", + "name": "Ossining", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.16287000", + "longitude": "-73.86152000" + }, + { + "id": "123623", + "name": "Oswego", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.45535000", + "longitude": "-76.51050000" + }, + { + "id": "123624", + "name": "Oswego County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.46389000", + "longitude": "-76.20868000" + }, + { + "id": "123630", + "name": "Otisville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.47343000", + "longitude": "-74.53849000" + }, + { + "id": "123635", + "name": "Otsego County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.63376000", + "longitude": "-75.03261000" + }, + { + "id": "123660", + "name": "Owego", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.10341000", + "longitude": "-76.26215000" + }, + { + "id": "123687", + "name": "Oxford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.44202000", + "longitude": "-75.59769000" + }, + { + "id": "123693", + "name": "Oyster Bay", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86565000", + "longitude": "-73.53207000" + }, + { + "id": "123694", + "name": "Oyster Bay Cove", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.87093000", + "longitude": "-73.51096000" + }, + { + "id": "123702", + "name": "Ozone Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.67677000", + "longitude": "-73.84375000" + }, + { + "id": "123727", + "name": "Painted Post", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.16202000", + "longitude": "-77.09414000" + }, + { + "id": "123733", + "name": "Palenville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.17453000", + "longitude": "-74.02014000" + }, + { + "id": "123776", + "name": "Palmyra", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.06395000", + "longitude": "-77.23332000" + }, + { + "id": "123854", + "name": "Park Slope", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.67010000", + "longitude": "-73.98597000" + }, + { + "id": "123856", + "name": "Parkchester", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.83899000", + "longitude": "-73.86041000" + }, + { + "id": "123910", + "name": "Patchogue", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76565000", + "longitude": "-73.01511000" + }, + { + "id": "123932", + "name": "Pawling", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.56204000", + "longitude": "-73.60263000" + }, + { + "id": "123957", + "name": "Peach Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.36759000", + "longitude": "-73.57790000" + }, + { + "id": "123968", + "name": "Pearl River", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.05899000", + "longitude": "-74.02181000" + }, + { + "id": "123984", + "name": "Peekskill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.29009000", + "longitude": "-73.92042000" + }, + { + "id": "123992", + "name": "Pelham", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.90982000", + "longitude": "-73.80791000" + }, + { + "id": "123993", + "name": "Pelham Manor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.89538000", + "longitude": "-73.80708000" + }, + { + "id": "124026", + "name": "Penn Yan", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.66090000", + "longitude": "-77.05386000" + }, + { + "id": "124072", + "name": "Perry", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.71562000", + "longitude": "-78.00556000" + }, + { + "id": "124093", + "name": "Perth", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.01757000", + "longitude": "-74.19402000" + }, + { + "id": "124098", + "name": "Peru", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.57838000", + "longitude": "-73.52680000" + }, + { + "id": "124120", + "name": "Phelps", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.95756000", + "longitude": "-77.05747000" + }, + { + "id": "124127", + "name": "Philadelphia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.15450000", + "longitude": "-75.70882000" + }, + { + "id": "124142", + "name": "Philmont", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.24842000", + "longitude": "-73.65318000" + }, + { + "id": "124147", + "name": "Phoenix", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.23118000", + "longitude": "-76.30076000" + }, + { + "id": "124177", + "name": "Piermont", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.04204000", + "longitude": "-73.91819000" + }, + { + "id": "124216", + "name": "Pine Bush", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.60815000", + "longitude": "-74.29904000" + }, + { + "id": "124240", + "name": "Pine Plains", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.97981000", + "longitude": "-73.65596000" + }, + { + "id": "124302", + "name": "Pittsford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09062000", + "longitude": "-77.51500000" + }, + { + "id": "124317", + "name": "Plainedge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71732000", + "longitude": "-73.48374000" + }, + { + "id": "124330", + "name": "Plainview", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77649000", + "longitude": "-73.46735000" + }, + { + "id": "124339", + "name": "Plandome", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80677000", + "longitude": "-73.70346000" + }, + { + "id": "124340", + "name": "Plandome Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80260000", + "longitude": "-73.70430000" + }, + { + "id": "124356", + "name": "Plattekill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.61759000", + "longitude": "-74.07598000" + }, + { + "id": "124360", + "name": "Plattsburgh", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.69949000", + "longitude": "-73.45291000" + }, + { + "id": "124361", + "name": "Plattsburgh West", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.68315000", + "longitude": "-73.50295000" + }, + { + "id": "124379", + "name": "Pleasant Valley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.74454000", + "longitude": "-73.82124000" + }, + { + "id": "124388", + "name": "Pleasantville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.13287000", + "longitude": "-73.79263000" + }, + { + "id": "124423", + "name": "Poestenkill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.69036000", + "longitude": "-73.56456000" + }, + { + "id": "124428", + "name": "Point Lookout", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.59233000", + "longitude": "-73.58068000" + }, + { + "id": "124458", + "name": "Pomona", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.16704000", + "longitude": "-74.04320000" + }, + { + "id": "124500", + "name": "Port Byron", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.03451000", + "longitude": "-76.62383000" + }, + { + "id": "124503", + "name": "Port Chester", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.00176000", + "longitude": "-73.66568000" + }, + { + "id": "124504", + "name": "Port Dickinson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.13341000", + "longitude": "-75.89631000" + }, + { + "id": "124506", + "name": "Port Ewen", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.90537000", + "longitude": "-73.97625000" + }, + { + "id": "124509", + "name": "Port Henry", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.04839000", + "longitude": "-73.45985000" + }, + { + "id": "124513", + "name": "Port Jefferson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.94649000", + "longitude": "-73.06927000" + }, + { + "id": "124514", + "name": "Port Jefferson Station", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.92538000", + "longitude": "-73.04733000" + }, + { + "id": "124515", + "name": "Port Jervis", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.37509000", + "longitude": "-74.69266000" + }, + { + "id": "124520", + "name": "Port Morris", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80149000", + "longitude": "-73.90958000" + }, + { + "id": "124530", + "name": "Port Richmond", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63316000", + "longitude": "-74.13653000" + }, + { + "id": "124539", + "name": "Port Washington", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82566000", + "longitude": "-73.69819000" + }, + { + "id": "124541", + "name": "Port Washington North", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84482000", + "longitude": "-73.70180000" + }, + { + "id": "124563", + "name": "Portland", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.37978000", + "longitude": "-79.46755000" + }, + { + "id": "124588", + "name": "Potsdam", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.66978000", + "longitude": "-74.98131000" + }, + { + "id": "124602", + "name": "Poughkeepsie", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.70037000", + "longitude": "-73.92097000" + }, + { + "id": "124605", + "name": "Pound Ridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.20871000", + "longitude": "-73.57485000" + }, + { + "id": "124735", + "name": "Pulaski", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.56701000", + "longitude": "-76.12770000" + }, + { + "id": "124755", + "name": "Purchase", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.04093000", + "longitude": "-73.71457000" + }, + { + "id": "124768", + "name": "Putnam County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.42666000", + "longitude": "-73.74951000" + }, + { + "id": "124769", + "name": "Putnam Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.46204000", + "longitude": "-73.54624000" + }, + { + "id": "124790", + "name": "Queens", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68149000", + "longitude": "-73.83652000" + }, + { + "id": "124791", + "name": "Queens County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65749000", + "longitude": "-73.83875000" + }, + { + "id": "124792", + "name": "Queens Village", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72677000", + "longitude": "-73.74152000" + }, + { + "id": "124793", + "name": "Queensbury", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.37729000", + "longitude": "-73.61317000" + }, + { + "id": "124867", + "name": "Randolph", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.16201000", + "longitude": "-78.97532000" + }, + { + "id": "124889", + "name": "Ransomville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.23867000", + "longitude": "-78.90976000" + }, + { + "id": "124897", + "name": "Rapids", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.09839000", + "longitude": "-78.64086000" + }, + { + "id": "124905", + "name": "Ravena", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.46841000", + "longitude": "-73.81624000" + }, + { + "id": "124948", + "name": "Red Hook", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.99509000", + "longitude": "-73.87541000" + }, + { + "id": "124958", + "name": "Red Oaks Mill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.65565000", + "longitude": "-73.87486000" + }, + { + "id": "125002", + "name": "Rego Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72649000", + "longitude": "-73.85264000" + }, + { + "id": "125016", + "name": "Remsenburg-Speonk", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82642000", + "longitude": "-72.69673000" + }, + { + "id": "125024", + "name": "Rensselaer", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.64258000", + "longitude": "-73.74290000" + }, + { + "id": "125025", + "name": "Rensselaer County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.71105000", + "longitude": "-73.50972000" + }, + { + "id": "125045", + "name": "Rhinebeck", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.92676000", + "longitude": "-73.91264000" + }, + { + "id": "125064", + "name": "Richfield Springs", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.85341000", + "longitude": "-74.98543000" + }, + { + "id": "125070", + "name": "Richland", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.56951000", + "longitude": "-76.04770000" + }, + { + "id": "125101", + "name": "Richmond County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.58344000", + "longitude": "-74.14959000" + }, + { + "id": "125105", + "name": "Richmond Hill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.69983000", + "longitude": "-73.83125000" + }, + { + "id": "125114", + "name": "Ridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.89399000", + "longitude": "-72.89594000" + }, + { + "id": "125132", + "name": "Ridgewood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70010000", + "longitude": "-73.90569000" + }, + { + "id": "125195", + "name": "Riverdale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.90056000", + "longitude": "-73.90639000" + }, + { + "id": "125200", + "name": "Riverhead", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.91704000", + "longitude": "-72.66204000" + }, + { + "id": "125207", + "name": "Riverside", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.88121000", + "longitude": "-72.67787000" + }, + { + "id": "125267", + "name": "Rochester", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.15478000", + "longitude": "-77.61556000" + }, + { + "id": "125281", + "name": "Rock Hill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.62593000", + "longitude": "-74.59766000" + }, + { + "id": "125291", + "name": "Rockaway Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.56066000", + "longitude": "-73.91514000" + }, + { + "id": "125310", + "name": "Rockland County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.15243000", + "longitude": "-74.02409000" + }, + { + "id": "125325", + "name": "Rockville Centre", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65871000", + "longitude": "-73.64124000" + }, + { + "id": "125338", + "name": "Rocky Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.95260000", + "longitude": "-72.92538000" + }, + { + "id": "125346", + "name": "Roessleville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.69508000", + "longitude": "-73.80707000" + }, + { + "id": "125378", + "name": "Rome", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.21285000", + "longitude": "-75.45573000" + }, + { + "id": "125388", + "name": "Ronkonkoma", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81538000", + "longitude": "-73.11233000" + }, + { + "id": "125391", + "name": "Roosevelt", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.67871000", + "longitude": "-73.58902000" + }, + { + "id": "125409", + "name": "Rosebank", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.61399000", + "longitude": "-74.06625000" + }, + { + "id": "125418", + "name": "Rosedale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.66205000", + "longitude": "-73.73541000" + }, + { + "id": "125435", + "name": "Rosendale Village", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.85038000", + "longitude": "-74.07379000" + }, + { + "id": "125447", + "name": "Roslyn", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79982000", + "longitude": "-73.65096000" + }, + { + "id": "125448", + "name": "Roslyn Estates", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79427000", + "longitude": "-73.66041000" + }, + { + "id": "125449", + "name": "Roslyn Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81649000", + "longitude": "-73.63707000" + }, + { + "id": "125450", + "name": "Roslyn Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78871000", + "longitude": "-73.64735000" + }, + { + "id": "125461", + "name": "Rossville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.55566000", + "longitude": "-74.21348000" + }, + { + "id": "125468", + "name": "Rotterdam", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.78702000", + "longitude": "-73.97096000" + }, + { + "id": "125475", + "name": "Rouses Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.99393000", + "longitude": "-73.36486000" + }, + { + "id": "125562", + "name": "Rye", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.98065000", + "longitude": "-73.68374000" + }, + { + "id": "125563", + "name": "Rye Brook", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.01926000", + "longitude": "-73.68346000" + }, + { + "id": "125575", + "name": "Sackets Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.94617000", + "longitude": "-76.11909000" + }, + { + "id": "125584", + "name": "Sag Harbor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.99788000", + "longitude": "-72.29258000" + }, + { + "id": "125609", + "name": "Saint Bonaventure", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.08034000", + "longitude": "-78.47502000" + }, + { + "id": "125656", + "name": "Saint James", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.87899000", + "longitude": "-73.15678000" + }, + { + "id": "125669", + "name": "Saint Johnsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.99813000", + "longitude": "-74.68292000" + }, + { + "id": "125723", + "name": "Salamanca", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.15784000", + "longitude": "-78.71503000" + }, + { + "id": "125759", + "name": "Salisbury", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74566000", + "longitude": "-73.56013000" + }, + { + "id": "125854", + "name": "Sanborn", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.13672000", + "longitude": "-78.88476000" + }, + { + "id": "125872", + "name": "Sands Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85177000", + "longitude": "-73.71874000" + }, + { + "id": "125936", + "name": "Saranac Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.32950000", + "longitude": "-74.13127000" + }, + { + "id": "125943", + "name": "Saratoga County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.10738000", + "longitude": "-73.86390000" + }, + { + "id": "125944", + "name": "Saratoga Springs", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.08313000", + "longitude": "-73.78457000" + }, + { + "id": "125959", + "name": "Saugerties", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.07759000", + "longitude": "-73.95291000" + }, + { + "id": "125960", + "name": "Saugerties South", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.06139000", + "longitude": "-73.95067000" + }, + { + "id": "125993", + "name": "Sayville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73593000", + "longitude": "-73.08206000" + }, + { + "id": "125998", + "name": "Scarsdale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.00510000", + "longitude": "-73.78458000" + }, + { + "id": "126003", + "name": "Schenectady", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.81424000", + "longitude": "-73.93957000" + }, + { + "id": "126004", + "name": "Schenectady County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.81812000", + "longitude": "-74.05857000" + }, + { + "id": "126015", + "name": "Schoharie", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.66591000", + "longitude": "-74.30958000" + }, + { + "id": "126016", + "name": "Schoharie County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.58822000", + "longitude": "-74.44212000" + }, + { + "id": "126024", + "name": "Schuyler County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.39380000", + "longitude": "-76.87518000" + }, + { + "id": "126025", + "name": "Schuylerville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.10008000", + "longitude": "-73.58178000" + }, + { + "id": "126033", + "name": "Scotchtown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.48148000", + "longitude": "-74.36015000" + }, + { + "id": "126034", + "name": "Scotia", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.82647000", + "longitude": "-73.96429000" + }, + { + "id": "126065", + "name": "Scottsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.02590000", + "longitude": "-77.74528000" + }, + { + "id": "126072", + "name": "Sea Cliff", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84899000", + "longitude": "-73.64485000" + }, + { + "id": "126086", + "name": "Seaford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.66593000", + "longitude": "-73.48818000" + }, + { + "id": "126094", + "name": "Searingtown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77482000", + "longitude": "-73.65568000" + }, + { + "id": "126098", + "name": "Seaside", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.58316000", + "longitude": "-73.82819000" + }, + { + "id": "126133", + "name": "Selden", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86649000", + "longitude": "-73.03566000" + }, + { + "id": "126159", + "name": "Seneca County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.78108000", + "longitude": "-76.82378000" + }, + { + "id": "126160", + "name": "Seneca Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.91062000", + "longitude": "-76.79662000" + }, + { + "id": "126161", + "name": "Seneca Knolls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.12007000", + "longitude": "-76.28632000" + }, + { + "id": "126169", + "name": "Setauket-East Setauket", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.93064000", + "longitude": "-73.10179000" + }, + { + "id": "126258", + "name": "Sheepshead Bay", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.59122000", + "longitude": "-73.94458000" + }, + { + "id": "126295", + "name": "Shelter Island", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.06815000", + "longitude": "-72.33869000" + }, + { + "id": "126296", + "name": "Shelter Island Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.08399000", + "longitude": "-72.35592000" + }, + { + "id": "126308", + "name": "Shenorock", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.33176000", + "longitude": "-73.73819000" + }, + { + "id": "126315", + "name": "Sherburne", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.67813000", + "longitude": "-75.49851000" + }, + { + "id": "126338", + "name": "Sherrill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.07368000", + "longitude": "-75.59824000" + }, + { + "id": "126354", + "name": "Shinnecock Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.89093000", + "longitude": "-72.46370000" + }, + { + "id": "126361", + "name": "Shirley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80149000", + "longitude": "-72.86760000" + }, + { + "id": "126366", + "name": "Shokan", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.97343000", + "longitude": "-74.21209000" + }, + { + "id": "126378", + "name": "Shortsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.95590000", + "longitude": "-77.22081000" + }, + { + "id": "126387", + "name": "Shrub Oak", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.32759000", + "longitude": "-73.81958000" + }, + { + "id": "126397", + "name": "Sidney", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.31480000", + "longitude": "-75.39157000" + }, + { + "id": "126423", + "name": "Silver Creek", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.54423000", + "longitude": "-79.16671000" + }, + { + "id": "126477", + "name": "Skaneateles", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.94701000", + "longitude": "-76.42910000" + }, + { + "id": "126498", + "name": "Sleepy Hollow", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.08565000", + "longitude": "-73.85847000" + }, + { + "id": "126504", + "name": "Sloan", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.89339000", + "longitude": "-78.79392000" + }, + { + "id": "126505", + "name": "Sloatsburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.15454000", + "longitude": "-74.19292000" + }, + { + "id": "126526", + "name": "Smithtown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85593000", + "longitude": "-73.20067000" + }, + { + "id": "126564", + "name": "Sodus", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.23784000", + "longitude": "-77.06136000" + }, + { + "id": "126573", + "name": "Solvay", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.05812000", + "longitude": "-76.20743000" + }, + { + "id": "126609", + "name": "Sound Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.95621000", + "longitude": "-72.96788000" + }, + { + "id": "126620", + "name": "South Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.58329000", + "longitude": "-74.07609000" + }, + { + "id": "126627", + "name": "South Blooming Grove", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.37337000", + "longitude": "-74.17843000" + }, + { + "id": "126643", + "name": "South Corning", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.12174000", + "longitude": "-77.03719000" + }, + { + "id": "126653", + "name": "South Fallsburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.72065000", + "longitude": "-74.63433000" + }, + { + "id": "126654", + "name": "South Farmingdale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72066000", + "longitude": "-73.44012000" + }, + { + "id": "126655", + "name": "South Floral Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71427000", + "longitude": "-73.70013000" + }, + { + "id": "126661", + "name": "South Glens Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.29924000", + "longitude": "-73.63512000" + }, + { + "id": "126668", + "name": "South Hempstead", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68094000", + "longitude": "-73.61541000" + }, + { + "id": "126672", + "name": "South Hill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.42924000", + "longitude": "-76.49494000" + }, + { + "id": "126677", + "name": "South Huntington", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82371000", + "longitude": "-73.39873000" + }, + { + "id": "126689", + "name": "South Lockport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.15006000", + "longitude": "-78.69670000" + }, + { + "id": "126695", + "name": "South Nyack", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.08315000", + "longitude": "-73.92014000" + }, + { + "id": "126741", + "name": "South Valley Stream", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.65594000", + "longitude": "-73.71763000" + }, + { + "id": "126758", + "name": "Southampton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.88427000", + "longitude": "-72.38953000" + }, + { + "id": "126781", + "name": "Southold", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.06482000", + "longitude": "-72.42620000" + }, + { + "id": "126785", + "name": "Southport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.05480000", + "longitude": "-76.81912000" + }, + { + "id": "126794", + "name": "Spackenkill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.65593000", + "longitude": "-73.91347000" + }, + { + "id": "126802", + "name": "Sparkill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.03121000", + "longitude": "-73.92708000" + }, + { + "id": "126830", + "name": "Spencerport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.18645000", + "longitude": "-77.80390000" + }, + { + "id": "126877", + "name": "Spring Valley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.11315000", + "longitude": "-74.04375000" + }, + { + "id": "126903", + "name": "Springfield", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.83618000", + "longitude": "-74.85348000" + }, + { + "id": "126908", + "name": "Springfield Gardens", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.66312000", + "longitude": "-73.76221000" + }, + { + "id": "126910", + "name": "Springs", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.01621000", + "longitude": "-72.15924000" + }, + { + "id": "126917", + "name": "Springville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.50840000", + "longitude": "-78.66725000" + }, + { + "id": "126923", + "name": "Spuyten Duyvil", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.88121000", + "longitude": "-73.91736000" + }, + { + "id": "126927", + "name": "St. Lawrence County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.50062000", + "longitude": "-75.11631000" + }, + { + "id": "126945", + "name": "Stamford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.40730000", + "longitude": "-74.61432000" + }, + { + "id": "126976", + "name": "Stapleton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.62649000", + "longitude": "-74.07764000" + }, + { + "id": "126995", + "name": "Staten Island", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.56233000", + "longitude": "-74.13986000" + }, + { + "id": "127019", + "name": "Steinway", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77455000", + "longitude": "-73.90375000" + }, + { + "id": "127039", + "name": "Steuben County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.26781000", + "longitude": "-77.38380000" + }, + { + "id": "127052", + "name": "Stewart Manor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71927000", + "longitude": "-73.68846000" + }, + { + "id": "127062", + "name": "Stillwater", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.93841000", + "longitude": "-73.65317000" + }, + { + "id": "127085", + "name": "Stone Ridge", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.85315000", + "longitude": "-74.13903000" + }, + { + "id": "127096", + "name": "Stony Brook", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.92565000", + "longitude": "-73.14094000" + }, + { + "id": "127100", + "name": "Stony Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.22954000", + "longitude": "-73.98708000" + }, + { + "id": "127108", + "name": "Stottville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.28620000", + "longitude": "-73.73873000" + }, + { + "id": "127164", + "name": "Suffern", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.11482000", + "longitude": "-74.14959000" + }, + { + "id": "127168", + "name": "Suffolk County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.94046000", + "longitude": "-72.68524000" + }, + { + "id": "127190", + "name": "Sullivan County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.71642000", + "longitude": "-74.76814000" + }, + { + "id": "127258", + "name": "Sunnyside", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.73982000", + "longitude": "-73.93542000" + }, + { + "id": "127276", + "name": "Sunset Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.64548000", + "longitude": "-74.01241000" + }, + { + "id": "127356", + "name": "Sylvan Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.46479000", + "longitude": "-77.10830000" + }, + { + "id": "127362", + "name": "Syosset", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82621000", + "longitude": "-73.50207000" + }, + { + "id": "127365", + "name": "Syracuse", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.04812000", + "longitude": "-76.14742000" + }, + { + "id": "127426", + "name": "Tappan", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.02204000", + "longitude": "-73.94736000" + }, + { + "id": "127436", + "name": "Tarrytown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.07621000", + "longitude": "-73.85875000" + }, + { + "id": "127517", + "name": "Terrace Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72149000", + "longitude": "-73.76930000" + }, + { + "id": "127536", + "name": "Terryville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.90899000", + "longitude": "-73.06511000" + }, + { + "id": "127554", + "name": "The Bronx", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84985000", + "longitude": "-73.86641000" + }, + { + "id": "127575", + "name": "Thiells", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.21065000", + "longitude": "-74.01764000" + }, + { + "id": "127586", + "name": "Thomaston", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.78621000", + "longitude": "-73.71374000" + }, + { + "id": "127606", + "name": "Thornwood", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.12343000", + "longitude": "-73.77902000" + }, + { + "id": "127625", + "name": "Throgs Neck", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82260000", + "longitude": "-73.81958000" + }, + { + "id": "127635", + "name": "Ticonderoga", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.84867000", + "longitude": "-73.42345000" + }, + { + "id": "127652", + "name": "Tillson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.82898000", + "longitude": "-74.06848000" + }, + { + "id": "127669", + "name": "Tioga County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.17030000", + "longitude": "-76.30632000" + }, + { + "id": "127688", + "name": "Tivoli", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.05842000", + "longitude": "-73.90930000" + }, + { + "id": "127713", + "name": "Tompkins County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.45202000", + "longitude": "-76.47366000" + }, + { + "id": "127715", + "name": "Tompkinsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63812000", + "longitude": "-74.07795000" + }, + { + "id": "127718", + "name": "Tonawanda", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.02033000", + "longitude": "-78.88031000" + }, + { + "id": "127758", + "name": "Town Line", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.89061000", + "longitude": "-78.57780000" + }, + { + "id": "127795", + "name": "Tremont", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84954000", + "longitude": "-73.90569000" + }, + { + "id": "127819", + "name": "Tribes Hill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.95535000", + "longitude": "-74.28513000" + }, + { + "id": "127851", + "name": "Troy", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.72841000", + "longitude": "-73.69179000" + }, + { + "id": "127857", + "name": "Trumansburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.54229000", + "longitude": "-76.66606000" + }, + { + "id": "127869", + "name": "Tuckahoe", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.95038000", + "longitude": "-73.82736000" + }, + { + "id": "127898", + "name": "Tupper Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "44.22395000", + "longitude": "-74.46406000" + }, + { + "id": "127959", + "name": "Ulster County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.88815000", + "longitude": "-74.25857000" + }, + { + "id": "127965", + "name": "Unadilla", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.32536000", + "longitude": "-75.31240000" + }, + { + "id": "128012", + "name": "Union Springs", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.83979000", + "longitude": "-76.69328000" + }, + { + "id": "128013", + "name": "Uniondale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70038000", + "longitude": "-73.59291000" + }, + { + "id": "128014", + "name": "Unionport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82732000", + "longitude": "-73.85013000" + }, + { + "id": "128028", + "name": "University Gardens", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.77732000", + "longitude": "-73.72263000" + }, + { + "id": "128030", + "name": "University Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.86010000", + "longitude": "-73.90930000" + }, + { + "id": "128042", + "name": "Upper Brookville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.83871000", + "longitude": "-73.56513000" + }, + { + "id": "128048", + "name": "Upper Nyack", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.10704000", + "longitude": "-73.92014000" + }, + { + "id": "128067", + "name": "Utica", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.10090000", + "longitude": "-75.23266000" + }, + { + "id": "128077", + "name": "Vails Gate", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.45426000", + "longitude": "-74.05764000" + }, + { + "id": "128081", + "name": "Valatie", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.41342000", + "longitude": "-73.67317000" + }, + { + "id": "128092", + "name": "Valhalla", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.07482000", + "longitude": "-73.77513000" + }, + { + "id": "128102", + "name": "Valley Cottage", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.11815000", + "longitude": "-73.95542000" + }, + { + "id": "128117", + "name": "Valley Stream", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.66427000", + "longitude": "-73.70846000" + }, + { + "id": "128136", + "name": "Van Nest", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.84843000", + "longitude": "-73.86375000" + }, + { + "id": "128190", + "name": "Vernon", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.07951000", + "longitude": "-75.53934000" + }, + { + "id": "128207", + "name": "Verplanck", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.25287000", + "longitude": "-73.95986000" + }, + { + "id": "128217", + "name": "Victor", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.98256000", + "longitude": "-77.40888000" + }, + { + "id": "128247", + "name": "Village Green", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.13340000", + "longitude": "-76.31299000" + }, + { + "id": "128254", + "name": "Village of the Branch", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85621000", + "longitude": "-73.18733000" + }, + { + "id": "128283", + "name": "Viola", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.13648000", + "longitude": "-74.08236000" + }, + { + "id": "128301", + "name": "Volney", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.34285000", + "longitude": "-76.35771000" + }, + { + "id": "128307", + "name": "Voorheesville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.65397000", + "longitude": "-73.92874000" + }, + { + "id": "128324", + "name": "Wading River", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.95038000", + "longitude": "-72.84260000" + }, + { + "id": "128363", + "name": "Wakefield", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.89788000", + "longitude": "-73.85236000" + }, + { + "id": "128368", + "name": "Walden", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.56120000", + "longitude": "-74.18848000" + }, + { + "id": "128410", + "name": "Wallkill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.60565000", + "longitude": "-74.18404000" + }, + { + "id": "128436", + "name": "Walton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.16953000", + "longitude": "-75.12934000" + }, + { + "id": "128439", + "name": "Walton Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.30982000", + "longitude": "-74.22904000" + }, + { + "id": "128445", + "name": "Wampsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.07535000", + "longitude": "-75.70685000" + }, + { + "id": "128446", + "name": "Wanakah", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.74617000", + "longitude": "-78.90309000" + }, + { + "id": "128452", + "name": "Wantagh", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68371000", + "longitude": "-73.51013000" + }, + { + "id": "128456", + "name": "Wappingers Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.59648000", + "longitude": "-73.91097000" + }, + { + "id": "128497", + "name": "Warren County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.56098000", + "longitude": "-73.84601000" + }, + { + "id": "128503", + "name": "Warrensburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.49674000", + "longitude": "-73.77623000" + }, + { + "id": "128521", + "name": "Warsaw", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.74006000", + "longitude": "-78.13279000" + }, + { + "id": "128524", + "name": "Warwick", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.25648000", + "longitude": "-74.35988000" + }, + { + "id": "128572", + "name": "Washington County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.31370000", + "longitude": "-73.43076000" + }, + { + "id": "128581", + "name": "Washington Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.85010000", + "longitude": "-73.93541000" + }, + { + "id": "128582", + "name": "Washington Mills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.05007000", + "longitude": "-75.27294000" + }, + { + "id": "128588", + "name": "Washingtonville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.42787000", + "longitude": "-74.16598000" + }, + { + "id": "128597", + "name": "Watchtower", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.63776000", + "longitude": "-74.26027000" + }, + { + "id": "128599", + "name": "Water Mill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.91959000", + "longitude": "-72.34274000" + }, + { + "id": "128606", + "name": "Waterford", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.79258000", + "longitude": "-73.68123000" + }, + { + "id": "128615", + "name": "Waterloo", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.90479000", + "longitude": "-76.86274000" + }, + { + "id": "128623", + "name": "Watertown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.97478000", + "longitude": "-75.91076000" + }, + { + "id": "128628", + "name": "Waterville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.93118000", + "longitude": "-75.37989000" + }, + { + "id": "128630", + "name": "Watervliet", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.73008000", + "longitude": "-73.70123000" + }, + { + "id": "128634", + "name": "Watkins Glen", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.38063000", + "longitude": "-76.87329000" + }, + { + "id": "128672", + "name": "Waverly", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.01035000", + "longitude": "-76.52717000" + }, + { + "id": "128673", + "name": "Wawarsing", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.75898000", + "longitude": "-74.35738000" + }, + { + "id": "128677", + "name": "Wayland", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.56784000", + "longitude": "-77.58971000" + }, + { + "id": "128701", + "name": "Wayne County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.06588000", + "longitude": "-76.97845000" + }, + { + "id": "128733", + "name": "Webster", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.21229000", + "longitude": "-77.42999000" + }, + { + "id": "128753", + "name": "Weedsport", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.04868000", + "longitude": "-76.56272000" + }, + { + "id": "128793", + "name": "Wellsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.12201000", + "longitude": "-77.94806000" + }, + { + "id": "128811", + "name": "Wesley Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.15926000", + "longitude": "-74.06986000" + }, + { + "id": "128816", + "name": "West Albany", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.68313000", + "longitude": "-73.77845000" + }, + { + "id": "128819", + "name": "West Babylon", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71816000", + "longitude": "-73.35429000" + }, + { + "id": "128823", + "name": "West Bay Shore", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70871000", + "longitude": "-73.28123000" + }, + { + "id": "128843", + "name": "West Carthage", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.97423000", + "longitude": "-75.61519000" + }, + { + "id": "128861", + "name": "West Elmira", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.07813000", + "longitude": "-76.84524000" + }, + { + "id": "128863", + "name": "West End", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.46869000", + "longitude": "-75.09378000" + }, + { + "id": "128879", + "name": "West Glens Falls", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.30007000", + "longitude": "-73.68401000" + }, + { + "id": "128891", + "name": "West Haverstraw", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.20954000", + "longitude": "-73.98542000" + }, + { + "id": "128894", + "name": "West Hempstead", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70482000", + "longitude": "-73.65013000" + }, + { + "id": "128895", + "name": "West Hills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.81621000", + "longitude": "-73.43234000" + }, + { + "id": "128901", + "name": "West Hurley", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.99731000", + "longitude": "-74.10486000" + }, + { + "id": "128903", + "name": "West Islip", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.70621000", + "longitude": "-73.30623000" + }, + { + "id": "128942", + "name": "West Nyack", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.09649000", + "longitude": "-73.97292000" + }, + { + "id": "128962", + "name": "West Point", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.39148000", + "longitude": "-73.95597000" + }, + { + "id": "128975", + "name": "West Sand Lake", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.64341000", + "longitude": "-73.60873000" + }, + { + "id": "128976", + "name": "West Sayville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.72788000", + "longitude": "-73.09761000" + }, + { + "id": "128979", + "name": "West Seneca", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.85006000", + "longitude": "-78.79975000" + }, + { + "id": "129015", + "name": "Westbury", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75566000", + "longitude": "-73.58763000" + }, + { + "id": "129020", + "name": "Westchester County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.15148000", + "longitude": "-73.75339000" + }, + { + "id": "129022", + "name": "Westerleigh", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.62121000", + "longitude": "-74.13181000" + }, + { + "id": "129030", + "name": "Westfield", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.32228000", + "longitude": "-79.57810000" + }, + { + "id": "129035", + "name": "Westhampton", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.82454000", + "longitude": "-72.66621000" + }, + { + "id": "129036", + "name": "Westhampton Beach", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.80316000", + "longitude": "-72.61454000" + }, + { + "id": "129042", + "name": "Westmere", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.69119000", + "longitude": "-73.86873000" + }, + { + "id": "129066", + "name": "Weston Mills", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.07590000", + "longitude": "-78.37252000" + }, + { + "id": "129074", + "name": "Westvale", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.04757000", + "longitude": "-76.22048000" + }, + { + "id": "129111", + "name": "Wheatley Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.76371000", + "longitude": "-73.36984000" + }, + { + "id": "129155", + "name": "White Plains", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.03399000", + "longitude": "-73.76291000" + }, + { + "id": "129169", + "name": "Whitehall", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.55562000", + "longitude": "-73.40372000" + }, + { + "id": "129183", + "name": "Whitesboro", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.12201000", + "longitude": "-75.29156000" + }, + { + "id": "129187", + "name": "Whitestone", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.79455000", + "longitude": "-73.81847000" + }, + { + "id": "129270", + "name": "Williamsburg", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.71427000", + "longitude": "-73.95347000" + }, + { + "id": "129274", + "name": "Williamson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.22395000", + "longitude": "-77.18609000" + }, + { + "id": "129292", + "name": "Williamsville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.96395000", + "longitude": "-78.73781000" + }, + { + "id": "129301", + "name": "Williston Park", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75649000", + "longitude": "-73.64485000" + }, + { + "id": "129314", + "name": "Willowbrook", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.60316000", + "longitude": "-74.13848000" + }, + { + "id": "129331", + "name": "Wilson", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.30978000", + "longitude": "-78.82615000" + }, + { + "id": "129469", + "name": "Wolcott", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.22062000", + "longitude": "-76.81496000" + }, + { + "id": "129510", + "name": "Woodbury", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.36454000", + "longitude": "-74.10598000" + }, + { + "id": "129522", + "name": "Woodhaven", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.68927000", + "longitude": "-73.85791000" + }, + { + "id": "129537", + "name": "Woodlawn", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.89816000", + "longitude": "-73.86736000" + }, + { + "id": "129541", + "name": "Woodmere", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.63205000", + "longitude": "-73.71263000" + }, + { + "id": "129546", + "name": "Woodrow", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.54344000", + "longitude": "-74.19764000" + }, + { + "id": "129554", + "name": "Woodside", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.74538000", + "longitude": "-73.90541000" + }, + { + "id": "129565", + "name": "Woodstock", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.04092000", + "longitude": "-74.11820000" + }, + { + "id": "129585", + "name": "Worcester", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.59146000", + "longitude": "-74.75043000" + }, + { + "id": "129619", + "name": "Wurtsboro", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.57676000", + "longitude": "-74.48710000" + }, + { + "id": "129620", + "name": "Wyandanch", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.75399000", + "longitude": "-73.36040000" + }, + { + "id": "129624", + "name": "Wykagyl", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.94149000", + "longitude": "-73.79902000" + }, + { + "id": "129628", + "name": "Wynantskill", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.69675000", + "longitude": "-73.64428000" + }, + { + "id": "129640", + "name": "Wyoming County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.70238000", + "longitude": "-78.22444000" + }, + { + "id": "129663", + "name": "Yaphank", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.83677000", + "longitude": "-72.91705000" + }, + { + "id": "129671", + "name": "Yates County", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.63344000", + "longitude": "-77.10546000" + }, + { + "id": "129688", + "name": "Yonkers", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "40.93121000", + "longitude": "-73.89875000" + }, + { + "id": "129704", + "name": "Yorkshire", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.53006000", + "longitude": "-78.47280000" + }, + { + "id": "129708", + "name": "Yorktown Heights", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "41.27093000", + "longitude": "-73.77763000" + }, + { + "id": "129710", + "name": "Yorkville", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.11285000", + "longitude": "-75.27100000" + }, + { + "id": "129717", + "name": "Youngstown", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "43.24728000", + "longitude": "-79.05005000" + }, + { + "id": "129748", + "name": "Zena", + "state_id": 1452, + "state_code": "NY", + "country_id": 233, + "country_code": "US", + "latitude": "42.01676000", + "longitude": "-74.07625000" + }, + { + "id": "110975", + "name": "Aberdeen", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.13155000", + "longitude": "-79.42948000" + }, + { + "id": "111049", + "name": "Advance", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.94125000", + "longitude": "-80.40922000" + }, + { + "id": "111062", + "name": "Ahoskie", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.28682000", + "longitude": "-76.98468000" + }, + { + "id": "111087", + "name": "Alamance County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.04407000", + "longitude": "-79.39951000" + }, + { + "id": "111115", + "name": "Albemarle", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.35014000", + "longitude": "-80.20006000" + }, + { + "id": "111148", + "name": "Alexander County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.92102000", + "longitude": "-81.17702000" + }, + { + "id": "111183", + "name": "Alleghany County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.49134000", + "longitude": "-81.12719000" + }, + { + "id": "111328", + "name": "Andrews", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.20175000", + "longitude": "-83.82407000" + }, + { + "id": "111338", + "name": "Angier", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.50710000", + "longitude": "-78.73918000" + }, + { + "id": "111361", + "name": "Anson County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.97383000", + "longitude": "-80.10273000" + }, + { + "id": "111384", + "name": "Apex", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.73265000", + "longitude": "-78.85029000" + }, + { + "id": "111428", + "name": "Archdale", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.91458000", + "longitude": "-79.97198000" + }, + { + "id": "111432", + "name": "Archer Lodge", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.69404000", + "longitude": "-78.37556000" + }, + { + "id": "111519", + "name": "Ashe County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.43416000", + "longitude": "-81.50034000" + }, + { + "id": "111520", + "name": "Asheboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.70791000", + "longitude": "-79.81364000" + }, + { + "id": "111522", + "name": "Asheville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.60095000", + "longitude": "-82.55402000" + }, + { + "id": "111596", + "name": "Atlantic Beach", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.69905000", + "longitude": "-76.74021000" + }, + { + "id": "111681", + "name": "Avery County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.07661000", + "longitude": "-81.92247000" + }, + { + "id": "111682", + "name": "Avery Creek", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.46345000", + "longitude": "-82.58262000" + }, + { + "id": "111707", + "name": "Ayden", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.47266000", + "longitude": "-77.41552000" + }, + { + "id": "111725", + "name": "Badin", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.40597000", + "longitude": "-80.11672000" + }, + { + "id": "111746", + "name": "Bakersville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.01567000", + "longitude": "-82.15874000" + }, + { + "id": "111767", + "name": "Balfour", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.34651000", + "longitude": "-82.47206000" + }, + { + "id": "111801", + "name": "Banner Elk", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.16318000", + "longitude": "-81.87150000" + }, + { + "id": "111823", + "name": "Barker Heights", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.31123000", + "longitude": "-82.44401000" + }, + { + "id": "111939", + "name": "Bayboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.14294000", + "longitude": "-76.77021000" + }, + { + "id": "111953", + "name": "Bayshore", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.28961000", + "longitude": "-77.78748000" + }, + { + "id": "111985", + "name": "Beaufort", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.71822000", + "longitude": "-76.66382000" + }, + { + "id": "111987", + "name": "Beaufort County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.48583000", + "longitude": "-76.84516000" + }, + { + "id": "112063", + "name": "Belhaven", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.54017000", + "longitude": "-76.62299000" + }, + { + "id": "112136", + "name": "Belmont", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.24292000", + "longitude": "-81.03730000" + }, + { + "id": "112157", + "name": "Belville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.23073000", + "longitude": "-77.96582000" + }, + { + "id": "112182", + "name": "Benson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.38211000", + "longitude": "-78.54862000" + }, + { + "id": "112189", + "name": "Bent Creek", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.50900000", + "longitude": "-82.60790000" + }, + { + "id": "112241", + "name": "Bermuda Run", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.00375000", + "longitude": "-80.42200000" + }, + { + "id": "112258", + "name": "Bertie County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.06556000", + "longitude": "-76.96660000" + }, + { + "id": "112270", + "name": "Bessemer City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.28486000", + "longitude": "-81.28397000" + }, + { + "id": "112278", + "name": "Bethel", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.80710000", + "longitude": "-77.37886000" + }, + { + "id": "112289", + "name": "Bethlehem", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.82569000", + "longitude": "-81.30703000" + }, + { + "id": "112297", + "name": "Beulaville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.92378000", + "longitude": "-77.77387000" + }, + { + "id": "112348", + "name": "Biltmore Forest", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.53372000", + "longitude": "-82.52846000" + }, + { + "id": "112362", + "name": "Biscoe", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.35986000", + "longitude": "-79.77976000" + }, + { + "id": "112380", + "name": "Black Mountain", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.61790000", + "longitude": "-82.32123000" + }, + { + "id": "112398", + "name": "Bladen County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.61431000", + "longitude": "-78.56318000" + }, + { + "id": "112399", + "name": "Bladenboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.53878000", + "longitude": "-78.78752000" + }, + { + "id": "112462", + "name": "Blowing Rock", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.13513000", + "longitude": "-81.67761000" + }, + { + "id": "112504", + "name": "Boiling Spring Lakes", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.03045000", + "longitude": "-78.06721000" + }, + { + "id": "112505", + "name": "Boiling Springs", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.25429000", + "longitude": "-81.66704000" + }, + { + "id": "112523", + "name": "Bolivia", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.06767000", + "longitude": "-78.14833000" + }, + { + "id": "112552", + "name": "Boone", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.21679000", + "longitude": "-81.67455000" + }, + { + "id": "112569", + "name": "Boonville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.23264000", + "longitude": "-80.70812000" + }, + { + "id": "112737", + "name": "Brevard", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.23345000", + "longitude": "-82.73429000" + }, + { + "id": "112753", + "name": "Brices Creek", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.05599000", + "longitude": "-77.08773000" + }, + { + "id": "112821", + "name": "Broad Creek", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.72072000", + "longitude": "-76.93633000" + }, + { + "id": "112830", + "name": "Broadway", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.45793000", + "longitude": "-79.05308000" + }, + { + "id": "112840", + "name": "Brogden", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.29266000", + "longitude": "-78.03443000" + }, + { + "id": "112949", + "name": "Brunswick", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.28684000", + "longitude": "-78.70113000" + }, + { + "id": "112951", + "name": "Brunswick County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.03897000", + "longitude": "-78.22728000" + }, + { + "id": "112968", + "name": "Bryson City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.43127000", + "longitude": "-83.44944000" + }, + { + "id": "113025", + "name": "Buies Creek", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.41322000", + "longitude": "-78.73557000" + }, + { + "id": "113038", + "name": "Buncombe County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.61122000", + "longitude": "-82.53010000" + }, + { + "id": "113050", + "name": "Burgaw", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.55211000", + "longitude": "-77.92610000" + }, + { + "id": "113057", + "name": "Burke County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.74952000", + "longitude": "-81.70470000" + }, + { + "id": "113068", + "name": "Burlington", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.09569000", + "longitude": "-79.43780000" + }, + { + "id": "113090", + "name": "Burnsville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.91734000", + "longitude": "-82.30096000" + }, + { + "id": "113121", + "name": "Butner", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.13209000", + "longitude": "-78.75667000" + }, + { + "id": "113131", + "name": "Buxton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.26768000", + "longitude": "-75.54237000" + }, + { + "id": "113149", + "name": "Cabarrus County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.38687000", + "longitude": "-80.55204000" + }, + { + "id": "113172", + "name": "Cajahs Mountain", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.83485000", + "longitude": "-81.54148000" + }, + { + "id": "113174", + "name": "Calabash", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "33.89073000", + "longitude": "-78.56834000" + }, + { + "id": "113185", + "name": "Caldwell County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.95297000", + "longitude": "-81.54655000" + }, + { + "id": "113262", + "name": "Camden", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.32849000", + "longitude": "-76.17188000" + }, + { + "id": "113270", + "name": "Camden County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.34145000", + "longitude": "-76.16112000" + }, + { + "id": "113341", + "name": "Canton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.53288000", + "longitude": "-82.83736000" + }, + { + "id": "113364", + "name": "Cape Carteret", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.69155000", + "longitude": "-77.06300000" + }, + { + "id": "113435", + "name": "Carolina Beach", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.03517000", + "longitude": "-77.89360000" + }, + { + "id": "113436", + "name": "Carolina Shores", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "33.90101000", + "longitude": "-78.58057000" + }, + { + "id": "113442", + "name": "Carrboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.91014000", + "longitude": "-79.07529000" + }, + { + "id": "113487", + "name": "Carteret County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.86401000", + "longitude": "-76.53249000" + }, + { + "id": "113493", + "name": "Carthage", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.34599000", + "longitude": "-79.41697000" + }, + { + "id": "113505", + "name": "Cary", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.79154000", + "longitude": "-78.78112000" + }, + { + "id": "113544", + "name": "Castle Hayne", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.35572000", + "longitude": "-77.89999000" + }, + { + "id": "113560", + "name": "Caswell County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.39335000", + "longitude": "-79.33359000" + }, + { + "id": "113567", + "name": "Catawba County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.66261000", + "longitude": "-81.21448000" + }, + { + "id": "113620", + "name": "Cedar Point", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.68766000", + "longitude": "-77.07245000" + }, + { + "id": "113706", + "name": "Chadbourn", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.32211000", + "longitude": "-78.82697000" + }, + { + "id": "113741", + "name": "Chapel Hill", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.91320000", + "longitude": "-79.05584000" + }, + { + "id": "113776", + "name": "Charlotte", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.22709000", + "longitude": "-80.84313000" + }, + { + "id": "113802", + "name": "Chatham County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.70258000", + "longitude": "-79.25535000" + }, + { + "id": "113846", + "name": "Cherokee", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.47427000", + "longitude": "-83.31487000" + }, + { + "id": "113852", + "name": "Cherokee County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.13384000", + "longitude": "-84.06347000" + }, + { + "id": "113870", + "name": "Cherryville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.37874000", + "longitude": "-81.37897000" + }, + { + "id": "113961", + "name": "China Grove", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.56931000", + "longitude": "-80.58173000" + }, + { + "id": "113992", + "name": "Chowan County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.12656000", + "longitude": "-76.60216000" + }, + { + "id": "114104", + "name": "Claremont", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.71458000", + "longitude": "-81.14619000" + }, + { + "id": "114183", + "name": "Clay County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.05719000", + "longitude": "-83.75021000" + }, + { + "id": "114200", + "name": "Clayton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.65071000", + "longitude": "-78.45639000" + }, + { + "id": "114233", + "name": "Clemmons", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.02153000", + "longitude": "-80.38200000" + }, + { + "id": "114249", + "name": "Cleveland County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.33411000", + "longitude": "-81.55561000" + }, + { + "id": "114273", + "name": "Clinton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.99795000", + "longitude": "-78.32333000" + }, + { + "id": "114318", + "name": "Clyde", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.53344000", + "longitude": "-82.91069000" + }, + { + "id": "114342", + "name": "Coats", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.40794000", + "longitude": "-78.67196000" + }, + { + "id": "114470", + "name": "Columbia", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.91766000", + "longitude": "-76.25215000" + }, + { + "id": "114493", + "name": "Columbus", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.25317000", + "longitude": "-82.19706000" + }, + { + "id": "114502", + "name": "Columbus County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.26540000", + "longitude": "-78.65507000" + }, + { + "id": "114536", + "name": "Concord", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.40888000", + "longitude": "-80.58158000" + }, + { + "id": "114563", + "name": "Connelly Springs", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.74291000", + "longitude": "-81.51343000" + }, + { + "id": "114567", + "name": "Conover", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.70652000", + "longitude": "-81.21869000" + }, + { + "id": "114639", + "name": "Cordova", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.91293000", + "longitude": "-79.82200000" + }, + { + "id": "114647", + "name": "Cornelius", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.48680000", + "longitude": "-80.86007000" + }, + { + "id": "114730", + "name": "Cove Creek", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.60649000", + "longitude": "-83.01125000" + }, + { + "id": "114762", + "name": "Cramerton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.23875000", + "longitude": "-81.07508000" + }, + { + "id": "114773", + "name": "Craven County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.11722000", + "longitude": "-77.08263000" + }, + { + "id": "114788", + "name": "Creedmoor", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.12237000", + "longitude": "-78.68611000" + }, + { + "id": "114819", + "name": "Cricket", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.17152000", + "longitude": "-81.19398000" + }, + { + "id": "114898", + "name": "Cullowhee", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.31371000", + "longitude": "-83.17653000" + }, + { + "id": "114914", + "name": "Cumberland County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.04859000", + "longitude": "-78.82744000" + }, + { + "id": "114925", + "name": "Currituck", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.44988000", + "longitude": "-76.01548000" + }, + { + "id": "114926", + "name": "Currituck County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.36724000", + "longitude": "-75.93683000" + }, + { + "id": "114989", + "name": "Dallas", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.31653000", + "longitude": "-81.17619000" + }, + { + "id": "115011", + "name": "Dana", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.32928000", + "longitude": "-82.37540000" + }, + { + "id": "115013", + "name": "Danbury", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.40930000", + "longitude": "-80.20588000" + }, + { + "id": "115044", + "name": "Dare County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.78663000", + "longitude": "-75.78094000" + }, + { + "id": "115062", + "name": "Davidson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.50233000", + "longitude": "-80.83912000" + }, + { + "id": "115063", + "name": "Davidson County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.79328000", + "longitude": "-80.21269000" + }, + { + "id": "115068", + "name": "Davie County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.92916000", + "longitude": "-80.54447000" + }, + { + "id": "115246", + "name": "Denton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.63347000", + "longitude": "-80.11588000" + }, + { + "id": "115250", + "name": "Denver", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.53125000", + "longitude": "-81.02980000" + }, + { + "id": "115371", + "name": "Dobson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.39569000", + "longitude": "-80.72257000" + }, + { + "id": "115475", + "name": "Drexel", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.75791000", + "longitude": "-81.60426000" + }, + { + "id": "115546", + "name": "Dunn", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.30627000", + "longitude": "-78.60890000" + }, + { + "id": "115556", + "name": "Duplin County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.93628000", + "longitude": "-77.93294000" + }, + { + "id": "115569", + "name": "Durham", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.99403000", + "longitude": "-78.89862000" + }, + { + "id": "115575", + "name": "Durham County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.03600000", + "longitude": "-78.87632000" + }, + { + "id": "115660", + "name": "East Flat Rock", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.28012000", + "longitude": "-82.42206000" + }, + { + "id": "115751", + "name": "East Rockingham", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.91821000", + "longitude": "-79.76256000" + }, + { + "id": "115760", + "name": "East Spencer", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.68181000", + "longitude": "-80.43228000" + }, + { + "id": "115792", + "name": "Eastover", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.10000000", + "longitude": "-78.80000000" + }, + { + "id": "115828", + "name": "Eden", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.48847000", + "longitude": "-79.76670000" + }, + { + "id": "115834", + "name": "Edenton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.05794000", + "longitude": "-76.60772000" + }, + { + "id": "115841", + "name": "Edgecombe County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.91298000", + "longitude": "-77.59707000" + }, + { + "id": "115885", + "name": "Edneyville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.39401000", + "longitude": "-82.34095000" + }, + { + "id": "115975", + "name": "Elizabeth City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.29460000", + "longitude": "-76.25105000" + }, + { + "id": "115979", + "name": "Elizabethtown", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.62934000", + "longitude": "-78.60529000" + }, + { + "id": "116004", + "name": "Elkin", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.24430000", + "longitude": "-80.84840000" + }, + { + "id": "116021", + "name": "Ellerbe", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.07126000", + "longitude": "-79.76144000" + }, + { + "id": "116042", + "name": "Elm City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.80655000", + "longitude": "-77.86332000" + }, + { + "id": "116064", + "name": "Elon", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.10291000", + "longitude": "-79.50669000" + }, + { + "id": "116066", + "name": "Elroy", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.34266000", + "longitude": "-77.90859000" + }, + { + "id": "116089", + "name": "Emerald Isle", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.67794000", + "longitude": "-76.95078000" + }, + { + "id": "116124", + "name": "Enfield", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.18099000", + "longitude": "-77.66664000" + }, + { + "id": "116143", + "name": "Enochville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.52986000", + "longitude": "-80.66812000" + }, + { + "id": "116175", + "name": "Erwin", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.32683000", + "longitude": "-78.67613000" + }, + { + "id": "116217", + "name": "Etowah", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.31762000", + "longitude": "-82.59429000" + }, + { + "id": "116322", + "name": "Fairfield Harbour", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.07655000", + "longitude": "-76.96356000" + }, + { + "id": "116334", + "name": "Fairmont", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.49683000", + "longitude": "-79.11420000" + }, + { + "id": "116343", + "name": "Fairplains", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.19847000", + "longitude": "-81.15286000" + }, + { + "id": "116348", + "name": "Fairview", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.51401000", + "longitude": "-82.39595000" + }, + { + "id": "116426", + "name": "Farmville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.59544000", + "longitude": "-77.58525000" + }, + { + "id": "116456", + "name": "Fayetteville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.05266000", + "longitude": "-78.87836000" + }, + { + "id": "116461", + "name": "Fearrington Village", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.80376000", + "longitude": "-79.09029000" + }, + { + "id": "116551", + "name": "Flat Rock", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.27123000", + "longitude": "-82.44151000" + }, + { + "id": "116564", + "name": "Fletcher", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.43067000", + "longitude": "-82.50123000" + }, + { + "id": "116647", + "name": "Forest City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.33401000", + "longitude": "-81.86510000" + }, + { + "id": "116663", + "name": "Forest Oaks", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.98819000", + "longitude": "-79.70614000" + }, + { + "id": "116687", + "name": "Forsyth County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.13049000", + "longitude": "-80.25636000" + }, + { + "id": "116696", + "name": "Fort Bragg", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.13900000", + "longitude": "-79.00603000" + }, + { + "id": "116771", + "name": "Foscoe", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.16179000", + "longitude": "-81.76566000" + }, + { + "id": "116792", + "name": "Four Oaks", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.44488000", + "longitude": "-78.42695000" + }, + { + "id": "116828", + "name": "Franklin", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.18232000", + "longitude": "-83.38154000" + }, + { + "id": "116853", + "name": "Franklin County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.08279000", + "longitude": "-78.28561000" + }, + { + "id": "116874", + "name": "Franklinton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.10182000", + "longitude": "-78.45805000" + }, + { + "id": "116875", + "name": "Franklinville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.74375000", + "longitude": "-79.69225000" + }, + { + "id": "116919", + "name": "Fremont", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.54544000", + "longitude": "-77.97471000" + }, + { + "id": "116971", + "name": "Fruitland", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.39651000", + "longitude": "-82.39317000" + }, + { + "id": "117000", + "name": "Fuquay-Varina", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.58432000", + "longitude": "-78.80001000" + }, + { + "id": "117046", + "name": "Gamewell", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.86930000", + "longitude": "-81.59621000" + }, + { + "id": "117092", + "name": "Garner", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.71126000", + "longitude": "-78.61417000" + }, + { + "id": "117113", + "name": "Gaston", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.50043000", + "longitude": "-77.64498000" + }, + { + "id": "117115", + "name": "Gaston County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.29437000", + "longitude": "-81.18025000" + }, + { + "id": "117116", + "name": "Gastonia", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.26208000", + "longitude": "-81.18730000" + }, + { + "id": "117119", + "name": "Gates County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.44489000", + "longitude": "-76.70049000" + }, + { + "id": "117121", + "name": "Gatesville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.40349000", + "longitude": "-76.75301000" + }, + { + "id": "117194", + "name": "Gibsonville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.10569000", + "longitude": "-79.54225000" + }, + { + "id": "117260", + "name": "Glen Alpine", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.72902000", + "longitude": "-81.77927000" + }, + { + "id": "117270", + "name": "Glen Raven", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.11319000", + "longitude": "-79.47641000" + }, + { + "id": "117364", + "name": "Goldsboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.38488000", + "longitude": "-77.99277000" + }, + { + "id": "117405", + "name": "Gorman", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.03653000", + "longitude": "-78.82334000" + }, + { + "id": "117434", + "name": "Graham", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.06903000", + "longitude": "-79.40058000" + }, + { + "id": "117438", + "name": "Graham County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.35016000", + "longitude": "-83.83356000" + }, + { + "id": "117496", + "name": "Granite Falls", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.79652000", + "longitude": "-81.43065000" + }, + { + "id": "117500", + "name": "Granite Quarry", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.61236000", + "longitude": "-80.44673000" + }, + { + "id": "117537", + "name": "Granville County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.30402000", + "longitude": "-78.65302000" + }, + { + "id": "117603", + "name": "Green Level", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.12097000", + "longitude": "-79.34419000" + }, + { + "id": "117638", + "name": "Greene County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.48541000", + "longitude": "-77.67587000" + }, + { + "id": "117667", + "name": "Greensboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.07264000", + "longitude": "-79.79198000" + }, + { + "id": "117687", + "name": "Greenville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.61266000", + "longitude": "-77.36635000" + }, + { + "id": "117733", + "name": "Grifton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.37266000", + "longitude": "-77.43746000" + }, + { + "id": "117787", + "name": "Guilford County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.07945000", + "longitude": "-79.78901000" + }, + { + "id": "117855", + "name": "Half Moon", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.82600000", + "longitude": "-77.45941000" + }, + { + "id": "117859", + "name": "Halifax", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.32849000", + "longitude": "-77.58942000" + }, + { + "id": "117862", + "name": "Halifax County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.25750000", + "longitude": "-77.65188000" + }, + { + "id": "117907", + "name": "Hamlet", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.88488000", + "longitude": "-79.69422000" + }, + { + "id": "117924", + "name": "Hampstead", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.36767000", + "longitude": "-77.71053000" + }, + { + "id": "118014", + "name": "Harkers Island", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.69516000", + "longitude": "-76.55937000" + }, + { + "id": "118029", + "name": "Harnett County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.36860000", + "longitude": "-78.86931000" + }, + { + "id": "118049", + "name": "Harrisburg", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.32395000", + "longitude": "-80.65784000" + }, + { + "id": "118147", + "name": "Havelock", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.87905000", + "longitude": "-76.90133000" + }, + { + "id": "118156", + "name": "Haw River", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.09153000", + "longitude": "-79.36419000" + }, + { + "id": "118182", + "name": "Hayesville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.04620000", + "longitude": "-83.81795000" + }, + { + "id": "118191", + "name": "Hays", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.24985000", + "longitude": "-81.11564000" + }, + { + "id": "118198", + "name": "Haywood County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.55605000", + "longitude": "-82.98224000" + }, + { + "id": "118208", + "name": "Hazelwood", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.46871000", + "longitude": "-83.00403000" + }, + { + "id": "118263", + "name": "Hemby Bridge", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.10371000", + "longitude": "-80.62798000" + }, + { + "id": "118276", + "name": "Henderson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.32959000", + "longitude": "-78.39916000" + }, + { + "id": "118281", + "name": "Henderson County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.33629000", + "longitude": "-82.47991000" + }, + { + "id": "118285", + "name": "Hendersonville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.31873000", + "longitude": "-82.46095000" + }, + { + "id": "118342", + "name": "Hertford", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.19016000", + "longitude": "-76.46605000" + }, + { + "id": "118343", + "name": "Hertford County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.35863000", + "longitude": "-76.98066000" + }, + { + "id": "118365", + "name": "Hickory", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.73319000", + "longitude": "-81.34120000" + }, + { + "id": "118386", + "name": "High Point", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.95569000", + "longitude": "-80.00532000" + }, + { + "id": "118430", + "name": "Hildebran", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.71402000", + "longitude": "-81.42203000" + }, + { + "id": "118454", + "name": "Hillsborough", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.07542000", + "longitude": "-79.09973000" + }, + { + "id": "118514", + "name": "Hoke County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.01736000", + "longitude": "-79.23711000" + }, + { + "id": "118560", + "name": "Holly Ridge", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.49544000", + "longitude": "-77.55497000" + }, + { + "id": "118562", + "name": "Holly Springs", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.65127000", + "longitude": "-78.83362000" + }, + { + "id": "118635", + "name": "Hoopers Creek", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.43900000", + "longitude": "-82.46679000" + }, + { + "id": "118645", + "name": "Hope Mills", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.97044000", + "longitude": "-78.94531000" + }, + { + "id": "118672", + "name": "Horse Shoe", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.34317000", + "longitude": "-82.55651000" + }, + { + "id": "118736", + "name": "Hudson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.84846000", + "longitude": "-81.49593000" + }, + { + "id": "118792", + "name": "Huntersville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.41069000", + "longitude": "-80.84285000" + }, + { + "id": "118847", + "name": "Hyde County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.41004000", + "longitude": "-76.14850000" + }, + { + "id": "118865", + "name": "Icard", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.72735000", + "longitude": "-81.47065000" + }, + { + "id": "118920", + "name": "Indian Trail", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.07681000", + "longitude": "-80.66924000" + }, + { + "id": "118985", + "name": "Iredell County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.80708000", + "longitude": "-80.87344000" + }, + { + "id": "119067", + "name": "Jackson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.38960000", + "longitude": "-77.42136000" + }, + { + "id": "119085", + "name": "Jackson County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.28739000", + "longitude": "-83.14083000" + }, + { + "id": "119103", + "name": "Jacksonville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.75405000", + "longitude": "-77.43024000" + }, + { + "id": "119115", + "name": "James City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.08877000", + "longitude": "-77.03495000" + }, + { + "id": "119121", + "name": "Jamestown", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.99430000", + "longitude": "-79.93531000" + }, + { + "id": "119165", + "name": "Jefferson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.42040000", + "longitude": "-81.47344000" + }, + { + "id": "119281", + "name": "Johnston County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.51761000", + "longitude": "-78.36564000" + }, + { + "id": "119294", + "name": "Jones County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.02170000", + "longitude": "-77.35526000" + }, + { + "id": "119310", + "name": "Jonesville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.23930000", + "longitude": "-80.84452000" + }, + { + "id": "119382", + "name": "Kannapolis", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.48736000", + "longitude": "-80.62173000" + }, + { + "id": "119442", + "name": "Kenansville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.96239000", + "longitude": "-77.96221000" + }, + { + "id": "119459", + "name": "Kenly", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.59627000", + "longitude": "-78.12416000" + }, + { + "id": "119515", + "name": "Kernersville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.11986000", + "longitude": "-80.07365000" + }, + { + "id": "119557", + "name": "Kill Devil Hills", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.03072000", + "longitude": "-75.67601000" + }, + { + "id": "119576", + "name": "King", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.28069000", + "longitude": "-80.35922000" + }, + { + "id": "119602", + "name": "Kings Grant", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.26295000", + "longitude": "-77.86360000" + }, + { + "id": "119603", + "name": "Kings Mountain", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.24513000", + "longitude": "-81.34119000" + }, + { + "id": "119643", + "name": "Kinston", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.26266000", + "longitude": "-77.58164000" + }, + { + "id": "119668", + "name": "Kitty Hawk", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.06461000", + "longitude": "-75.70573000" + }, + { + "id": "119674", + "name": "Knightdale", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.78765000", + "longitude": "-78.48056000" + }, + { + "id": "119726", + "name": "Kure Beach", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "33.99684000", + "longitude": "-77.90721000" + }, + { + "id": "119750", + "name": "La Grange", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.30683000", + "longitude": "-77.78803000" + }, + { + "id": "119925", + "name": "Lake Junaluska", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.52788000", + "longitude": "-82.95958000" + }, + { + "id": "119934", + "name": "Lake Lure", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.42790000", + "longitude": "-82.20483000" + }, + { + "id": "119952", + "name": "Lake Norman of Catawba", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.58680000", + "longitude": "-80.95952000" + }, + { + "id": "119960", + "name": "Lake Park", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.08626000", + "longitude": "-80.63507000" + }, + { + "id": "119990", + "name": "Lake Waccamaw", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.31906000", + "longitude": "-78.50001000" + }, + { + "id": "120099", + "name": "Landis", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.54569000", + "longitude": "-80.61090000" + }, + { + "id": "120196", + "name": "Laurel Hill", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.80905000", + "longitude": "-79.54783000" + }, + { + "id": "120200", + "name": "Laurel Park", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.31373000", + "longitude": "-82.49345000" + }, + { + "id": "120210", + "name": "Laurinburg", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.77405000", + "longitude": "-79.46282000" + }, + { + "id": "120312", + "name": "Lee County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.47517000", + "longitude": "-79.17143000" + }, + { + "id": "120350", + "name": "Leland", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.25628000", + "longitude": "-78.04471000" + }, + { + "id": "120372", + "name": "Lenoir", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.91402000", + "longitude": "-81.53898000" + }, + { + "id": "120374", + "name": "Lenoir County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.23915000", + "longitude": "-77.64127000" + }, + { + "id": "120435", + "name": "Lewisville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.09708000", + "longitude": "-80.41922000" + }, + { + "id": "120442", + "name": "Lexington", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.82403000", + "longitude": "-80.25338000" + }, + { + "id": "120462", + "name": "Liberty", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.85347000", + "longitude": "-79.57169000" + }, + { + "id": "120486", + "name": "Lillington", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.39933000", + "longitude": "-78.81585000" + }, + { + "id": "120522", + "name": "Lincoln County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.48618000", + "longitude": "-81.22387000" + }, + { + "id": "120552", + "name": "Lincolnton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.47375000", + "longitude": "-81.25453000" + }, + { + "id": "120684", + "name": "Locust", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.25987000", + "longitude": "-80.42534000" + }, + { + "id": "120734", + "name": "Long Beach", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "33.91045000", + "longitude": "-78.11777000" + }, + { + "id": "120756", + "name": "Longview", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.72930000", + "longitude": "-81.38342000" + }, + { + "id": "120809", + "name": "Louisburg", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.09904000", + "longitude": "-78.30111000" + }, + { + "id": "120834", + "name": "Lowell", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.26792000", + "longitude": "-81.10285000" + }, + { + "id": "120845", + "name": "Lowesville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.41708000", + "longitude": "-81.01119000" + }, + { + "id": "120859", + "name": "Lucama", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.64544000", + "longitude": "-78.00971000" + }, + { + "id": "120880", + "name": "Lumberton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.61834000", + "longitude": "-79.01045000" + }, + { + "id": "120971", + "name": "Macon County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.15038000", + "longitude": "-83.42210000" + }, + { + "id": "120990", + "name": "Madison", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.38542000", + "longitude": "-79.95949000" + }, + { + "id": "121010", + "name": "Madison County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.85809000", + "longitude": "-82.70576000" + }, + { + "id": "121033", + "name": "Maggie Valley", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.51816000", + "longitude": "-83.09764000" + }, + { + "id": "121049", + "name": "Maiden", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.57569000", + "longitude": "-81.21175000" + }, + { + "id": "121156", + "name": "Manteo", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.90823000", + "longitude": "-75.67573000" + }, + { + "id": "121182", + "name": "Mar-Mac", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.33488000", + "longitude": "-78.05582000" + }, + { + "id": "121236", + "name": "Marion", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.68401000", + "longitude": "-82.00927000" + }, + { + "id": "121299", + "name": "Mars Hill", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.82650000", + "longitude": "-82.54930000" + }, + { + "id": "121304", + "name": "Marshall", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.79733000", + "longitude": "-82.68403000" + }, + { + "id": "121329", + "name": "Marshville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.98849000", + "longitude": "-80.36701000" + }, + { + "id": "121340", + "name": "Martin County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.84160000", + "longitude": "-77.10708000" + }, + { + "id": "121353", + "name": "Marvin", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.99182000", + "longitude": "-80.81479000" + }, + { + "id": "121383", + "name": "Masonboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.17934000", + "longitude": "-77.84748000" + }, + { + "id": "121412", + "name": "Matthews", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.11681000", + "longitude": "-80.72368000" + }, + { + "id": "121425", + "name": "Maury", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.48211000", + "longitude": "-77.58608000" + }, + { + "id": "121429", + "name": "Maxton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.73516000", + "longitude": "-79.34893000" + }, + { + "id": "121445", + "name": "Mayodan", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.41236000", + "longitude": "-79.96699000" + }, + { + "id": "121451", + "name": "Maysville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.90488000", + "longitude": "-77.23134000" + }, + { + "id": "121495", + "name": "McDowell County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.68124000", + "longitude": "-82.04870000" + }, + { + "id": "121532", + "name": "McLeansville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.10736000", + "longitude": "-79.65864000" + }, + { + "id": "121577", + "name": "Mebane", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.09597000", + "longitude": "-79.26696000" + }, + { + "id": "121587", + "name": "Mecklenburg County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.24671000", + "longitude": "-80.83276000" + }, + { + "id": "121797", + "name": "Midland", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.22737000", + "longitude": "-80.50062000" + }, + { + "id": "121816", + "name": "Midway", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.95347000", + "longitude": "-80.21810000" + }, + { + "id": "121884", + "name": "Millers Creek", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.18930000", + "longitude": "-81.23759000" + }, + { + "id": "121899", + "name": "Mills River", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.38845000", + "longitude": "-82.56679000" + }, + { + "id": "121940", + "name": "Mineral Springs", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.93793000", + "longitude": "-80.66868000" + }, + { + "id": "121968", + "name": "Mint Hill", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.17959000", + "longitude": "-80.64729000" + }, + { + "id": "122001", + "name": "Mitchell County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.01329000", + "longitude": "-82.16347000" + }, + { + "id": "122013", + "name": "Mocksville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.89403000", + "longitude": "-80.56145000" + }, + { + "id": "122059", + "name": "Monroe", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.98543000", + "longitude": "-80.54951000" + }, + { + "id": "122148", + "name": "Montgomery County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.33246000", + "longitude": "-79.90547000" + }, + { + "id": "122201", + "name": "Moore County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.31072000", + "longitude": "-79.48131000" + }, + { + "id": "122210", + "name": "Mooresville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.58486000", + "longitude": "-80.81007000" + }, + { + "id": "122224", + "name": "Moravian Falls", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.09680000", + "longitude": "-81.18231000" + }, + { + "id": "122226", + "name": "Morehead City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.72294000", + "longitude": "-76.72604000" + }, + { + "id": "122250", + "name": "Morganton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.74541000", + "longitude": "-81.68482000" + }, + { + "id": "122284", + "name": "Morrisville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.82348000", + "longitude": "-78.82556000" + }, + { + "id": "122331", + "name": "Mount Airy", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.49930000", + "longitude": "-80.60729000" + }, + { + "id": "122344", + "name": "Mount Gilead", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.21487000", + "longitude": "-80.00228000" + }, + { + "id": "122349", + "name": "Mount Holly", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.29819000", + "longitude": "-81.01591000" + }, + { + "id": "122369", + "name": "Mount Olive", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.19655000", + "longitude": "-78.06638000" + }, + { + "id": "122374", + "name": "Mount Pleasant", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.39931000", + "longitude": "-80.43590000" + }, + { + "id": "122416", + "name": "Mountain Home", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.36956000", + "longitude": "-82.49290000" + }, + { + "id": "122430", + "name": "Mountain View", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.68319000", + "longitude": "-81.36898000" + }, + { + "id": "122446", + "name": "Moyock", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.52460000", + "longitude": "-76.17827000" + }, + { + "id": "122454", + "name": "Mulberry", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.23958000", + "longitude": "-81.18064000" + }, + { + "id": "122481", + "name": "Murfreesboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.44238000", + "longitude": "-77.09858000" + }, + { + "id": "122485", + "name": "Murphy", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.08758000", + "longitude": "-84.03463000" + }, + { + "id": "122496", + "name": "Murraysville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.29572000", + "longitude": "-77.84748000" + }, + { + "id": "122523", + "name": "Myrtle Grove", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.13462000", + "longitude": "-77.88165000" + }, + { + "id": "122534", + "name": "Nags Head", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.95739000", + "longitude": "-75.62406000" + }, + { + "id": "122568", + "name": "Nash County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.96722000", + "longitude": "-77.98648000" + }, + { + "id": "122576", + "name": "Nashville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.97460000", + "longitude": "-77.96554000" + }, + { + "id": "122603", + "name": "Navassa", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.25545000", + "longitude": "-78.00749000" + }, + { + "id": "122647", + "name": "Neuse Forest", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.96377000", + "longitude": "-76.94467000" + }, + { + "id": "122666", + "name": "New Bern", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.10849000", + "longitude": "-77.04411000" + }, + { + "id": "122711", + "name": "New Hanover County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.18141000", + "longitude": "-77.86561000" + }, + { + "id": "122833", + "name": "Newland", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.08735000", + "longitude": "-81.92734000" + }, + { + "id": "122842", + "name": "Newport", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.78655000", + "longitude": "-76.85911000" + }, + { + "id": "122861", + "name": "Newton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.66986000", + "longitude": "-81.22147000" + }, + { + "id": "122947", + "name": "Norlina", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.44570000", + "longitude": "-78.19833000" + }, + { + "id": "123130", + "name": "North Wilkesboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.15847000", + "longitude": "-81.14758000" + }, + { + "id": "123136", + "name": "Northampton County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.41766000", + "longitude": "-77.39674000" + }, + { + "id": "123142", + "name": "Northchase", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.30782000", + "longitude": "-77.87749000" + }, + { + "id": "123159", + "name": "Northlakes", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.78180000", + "longitude": "-81.37509000" + }, + { + "id": "123197", + "name": "Norwood", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.21959000", + "longitude": "-80.11895000" + }, + { + "id": "123251", + "name": "Oak Island", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "33.91656000", + "longitude": "-78.16111000" + }, + { + "id": "123261", + "name": "Oak Ridge", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.17347000", + "longitude": "-79.98893000" + }, + { + "id": "123267", + "name": "Oakboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.22570000", + "longitude": "-80.32895000" + }, + { + "id": "123367", + "name": "Ogden", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.27239000", + "longitude": "-77.81859000" + }, + { + "id": "123484", + "name": "Onslow County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.76305000", + "longitude": "-77.39319000" + }, + { + "id": "123516", + "name": "Orange County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.06130000", + "longitude": "-79.12060000" + }, + { + "id": "123679", + "name": "Oxford", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.31070000", + "longitude": "-78.59083000" + }, + { + "id": "123793", + "name": "Pamlico County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.15152000", + "longitude": "-76.66716000" + }, + { + "id": "123905", + "name": "Pasquotank County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.26490000", + "longitude": "-76.24913000" + }, + { + "id": "124005", + "name": "Pembroke", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.68016000", + "longitude": "-79.19504000" + }, + { + "id": "124015", + "name": "Pender County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.51494000", + "longitude": "-77.88887000" + }, + { + "id": "124065", + "name": "Perquimans County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.17720000", + "longitude": "-76.40767000" + }, + { + "id": "124092", + "name": "Person County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.39011000", + "longitude": "-78.97171000" + }, + { + "id": "124200", + "name": "Pilot Mountain", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.38653000", + "longitude": "-80.46950000" + }, + { + "id": "124231", + "name": "Pine Knoll Shores", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.69738000", + "longitude": "-76.81327000" + }, + { + "id": "124236", + "name": "Pine Level", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.51322000", + "longitude": "-78.24444000" + }, + { + "id": "124247", + "name": "Pinebluff", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.10988000", + "longitude": "-79.47226000" + }, + { + "id": "124250", + "name": "Pinehurst", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.19543000", + "longitude": "-79.46948000" + }, + { + "id": "124258", + "name": "Pinetops", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.78849000", + "longitude": "-77.63775000" + }, + { + "id": "124262", + "name": "Pineville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.08320000", + "longitude": "-80.89230000" + }, + { + "id": "124267", + "name": "Piney Green", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.71600000", + "longitude": "-77.32024000" + }, + { + "id": "124288", + "name": "Pitt County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.59352000", + "longitude": "-77.37465000" + }, + { + "id": "124291", + "name": "Pittsboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.72015000", + "longitude": "-79.17724000" + }, + { + "id": "124316", + "name": "Plain View", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.24850000", + "longitude": "-78.55529000" + }, + { + "id": "124365", + "name": "Pleasant Garden", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.96208000", + "longitude": "-79.76225000" + }, + { + "id": "124369", + "name": "Pleasant Hill", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.87347000", + "longitude": "-79.48169000" + }, + { + "id": "124399", + "name": "Plymouth", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.86683000", + "longitude": "-76.74856000" + }, + { + "id": "124444", + "name": "Polk County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.27929000", + "longitude": "-82.16967000" + }, + { + "id": "124452", + "name": "Polkton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.00765000", + "longitude": "-80.20089000" + }, + { + "id": "124683", + "name": "Princeton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.46599000", + "longitude": "-78.16055000" + }, + { + "id": "124694", + "name": "Princeville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.88960000", + "longitude": "-77.53219000" + }, + { + "id": "124746", + "name": "Pumpkin Center", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.79155000", + "longitude": "-77.37246000" + }, + { + "id": "124819", + "name": "Raeford", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.98100000", + "longitude": "-79.22420000" + }, + { + "id": "124831", + "name": "Raleigh", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.77210000", + "longitude": "-78.63861000" + }, + { + "id": "124839", + "name": "Ramseur", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.73347000", + "longitude": "-79.65253000" + }, + { + "id": "124864", + "name": "Randleman", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.81791000", + "longitude": "-79.80309000" + }, + { + "id": "124877", + "name": "Randolph County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.71033000", + "longitude": "-79.80616000" + }, + { + "id": "124886", + "name": "Ranlo", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.28625000", + "longitude": "-81.13035000" + }, + { + "id": "124955", + "name": "Red Oak", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.03849000", + "longitude": "-77.90637000" + }, + { + "id": "124961", + "name": "Red Springs", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.81516000", + "longitude": "-79.18309000" + }, + { + "id": "125008", + "name": "Reidsville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.35486000", + "longitude": "-79.66447000" + }, + { + "id": "125047", + "name": "Rhodhiss", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.77402000", + "longitude": "-81.43120000" + }, + { + "id": "125081", + "name": "Richlands", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.89933000", + "longitude": "-77.54663000" + }, + { + "id": "125099", + "name": "Richmond County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.00594000", + "longitude": "-79.74783000" + }, + { + "id": "125176", + "name": "River Bend", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.06905000", + "longitude": "-77.14690000" + }, + { + "id": "125186", + "name": "River Road", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.50683000", + "longitude": "-76.99078000" + }, + { + "id": "125232", + "name": "Roanoke Rapids", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.46154000", + "longitude": "-77.65415000" + }, + { + "id": "125234", + "name": "Robbins", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.43403000", + "longitude": "-79.58697000" + }, + { + "id": "125237", + "name": "Robbinsville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.32287000", + "longitude": "-83.80740000" + }, + { + "id": "125239", + "name": "Robersonville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.82516000", + "longitude": "-77.24913000" + }, + { + "id": "125249", + "name": "Robeson County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.64009000", + "longitude": "-79.10353000" + }, + { + "id": "125298", + "name": "Rockfish", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.99266000", + "longitude": "-79.06614000" + }, + { + "id": "125303", + "name": "Rockingham", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.93932000", + "longitude": "-79.77395000" + }, + { + "id": "125305", + "name": "Rockingham County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.39608000", + "longitude": "-79.77515000" + }, + { + "id": "125329", + "name": "Rockwell", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.55125000", + "longitude": "-80.40645000" + }, + { + "id": "125335", + "name": "Rocky Mount", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.93821000", + "longitude": "-77.79053000" + }, + { + "id": "125337", + "name": "Rocky Point", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.43517000", + "longitude": "-77.88776000" + }, + { + "id": "125361", + "name": "Rolesville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.92321000", + "longitude": "-78.45750000" + }, + { + "id": "125404", + "name": "Rose Hill", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.82822000", + "longitude": "-78.02304000" + }, + { + "id": "125410", + "name": "Roseboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.95295000", + "longitude": "-78.50862000" + }, + { + "id": "125478", + "name": "Rowan County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.63954000", + "longitude": "-80.52464000" + }, + { + "id": "125479", + "name": "Rowland", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.53655000", + "longitude": "-79.29143000" + }, + { + "id": "125484", + "name": "Roxboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.39375000", + "longitude": "-78.98279000" + }, + { + "id": "125493", + "name": "Royal Pines", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.47511000", + "longitude": "-82.51595000" + }, + { + "id": "125516", + "name": "Rural Hall", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.24042000", + "longitude": "-80.29338000" + }, + { + "id": "125551", + "name": "Rutherford College", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.74846000", + "longitude": "-81.52259000" + }, + { + "id": "125552", + "name": "Rutherford County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.40225000", + "longitude": "-81.92009000" + }, + { + "id": "125554", + "name": "Rutherfordton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.36929000", + "longitude": "-81.95677000" + }, + { + "id": "125654", + "name": "Saint James", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "33.92934000", + "longitude": "-78.11638000" + }, + { + "id": "125706", + "name": "Saint Pauls", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.80655000", + "longitude": "-78.97114000" + }, + { + "id": "125717", + "name": "Saint Stephens", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.76458000", + "longitude": "-81.27314000" + }, + { + "id": "125731", + "name": "Salem", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.69874000", + "longitude": "-81.69704000" + }, + { + "id": "125756", + "name": "Salisbury", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.67097000", + "longitude": "-80.47423000" + }, + { + "id": "125780", + "name": "Sampson County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.99163000", + "longitude": "-78.37152000" + }, + { + "id": "125887", + "name": "Sanford", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.47988000", + "longitude": "-79.18030000" + }, + { + "id": "125981", + "name": "Sawmills", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.82485000", + "longitude": "-81.47454000" + }, + { + "id": "125983", + "name": "Saxapahaw", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.94736000", + "longitude": "-79.32196000" + }, + { + "id": "126036", + "name": "Scotland County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.84090000", + "longitude": "-79.48043000" + }, + { + "id": "126038", + "name": "Scotland Neck", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.12960000", + "longitude": "-77.42025000" + }, + { + "id": "126058", + "name": "Scotts Mill", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.72666000", + "longitude": "-78.88390000" + }, + { + "id": "126070", + "name": "Sea Breeze", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.06323000", + "longitude": "-77.89137000" + }, + { + "id": "126087", + "name": "Seagate", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.20934000", + "longitude": "-77.84359000" + }, + { + "id": "126139", + "name": "Selma", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.53655000", + "longitude": "-78.28444000" + }, + { + "id": "126173", + "name": "Seven Lakes", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.27849000", + "longitude": "-79.56448000" + }, + { + "id": "126212", + "name": "Shallotte", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "33.97323000", + "longitude": "-78.38584000" + }, + { + "id": "126235", + "name": "Sharpsburg", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.86710000", + "longitude": "-77.82915000" + }, + { + "id": "126268", + "name": "Shelby", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.29235000", + "longitude": "-81.53565000" + }, + { + "id": "126339", + "name": "Sherrills Ford", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.62041000", + "longitude": "-80.98647000" + }, + { + "id": "126415", + "name": "Siler City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.72347000", + "longitude": "-79.46224000" + }, + { + "id": "126429", + "name": "Silver Lake", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.14878000", + "longitude": "-77.91360000" + }, + { + "id": "126482", + "name": "Skippers Corner", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.34600000", + "longitude": "-77.90249000" + }, + { + "id": "126518", + "name": "Smithfield", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.50849000", + "longitude": "-78.33945000" + }, + { + "id": "126539", + "name": "Sneads Ferry", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.55267000", + "longitude": "-77.39718000" + }, + { + "id": "126546", + "name": "Snow Hill", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.45155000", + "longitude": "-77.68109000" + }, + { + "id": "126657", + "name": "South Gastonia", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.21930000", + "longitude": "-81.20563000" + }, + { + "id": "126669", + "name": "South Henderson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.30820000", + "longitude": "-78.40666000" + }, + { + "id": "126719", + "name": "South Rosemary", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.45154000", + "longitude": "-77.69720000" + }, + { + "id": "126768", + "name": "Southern Pines", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.17405000", + "longitude": "-79.39225000" + }, + { + "id": "126770", + "name": "Southern Shores", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.13905000", + "longitude": "-75.73157000" + }, + { + "id": "126779", + "name": "Southmont", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.66792000", + "longitude": "-80.26700000" + }, + { + "id": "126783", + "name": "Southport", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "33.92156000", + "longitude": "-78.02027000" + }, + { + "id": "126808", + "name": "Sparta", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.50541000", + "longitude": "-81.12092000" + }, + { + "id": "126821", + "name": "Spencer", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.69236000", + "longitude": "-80.43478000" + }, + { + "id": "126835", + "name": "Spindale", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.36012000", + "longitude": "-81.92927000" + }, + { + "id": "126863", + "name": "Spring Hope", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.94515000", + "longitude": "-78.11193000" + }, + { + "id": "126865", + "name": "Spring Lake", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.16794000", + "longitude": "-78.97281000" + }, + { + "id": "126919", + "name": "Spruce Pine", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.91540000", + "longitude": "-82.06456000" + }, + { + "id": "126940", + "name": "Stallings", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.09070000", + "longitude": "-80.68618000" + }, + { + "id": "126951", + "name": "Stanfield", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.23348000", + "longitude": "-80.42701000" + }, + { + "id": "126958", + "name": "Stanley", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.35903000", + "longitude": "-81.09702000" + }, + { + "id": "126964", + "name": "Stanly County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.31199000", + "longitude": "-80.25092000" + }, + { + "id": "126998", + "name": "Statesville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.78264000", + "longitude": "-80.88730000" + }, + { + "id": "127006", + "name": "Stedman", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.01350000", + "longitude": "-78.69391000" + }, + { + "id": "127078", + "name": "Stokes County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.40190000", + "longitude": "-80.23961000" + }, + { + "id": "127079", + "name": "Stokesdale", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.23708000", + "longitude": "-79.97948000" + }, + { + "id": "127090", + "name": "Stoneville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.46653000", + "longitude": "-79.90698000" + }, + { + "id": "127098", + "name": "Stony Point", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.86347000", + "longitude": "-81.04730000" + }, + { + "id": "127202", + "name": "Summerfield", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.20875000", + "longitude": "-79.90476000" + }, + { + "id": "127274", + "name": "Sunset Beach", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "33.88073000", + "longitude": "-78.51223000" + }, + { + "id": "127285", + "name": "Surf City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.42711000", + "longitude": "-77.54608000" + }, + { + "id": "127294", + "name": "Surry County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.41468000", + "longitude": "-80.68749000" + }, + { + "id": "127319", + "name": "Swain County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.48673000", + "longitude": "-83.49274000" + }, + { + "id": "127322", + "name": "Swannanoa", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.59789000", + "longitude": "-82.39984000" + }, + { + "id": "127323", + "name": "Swanquarter", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.40628000", + "longitude": "-76.32909000" + }, + { + "id": "127324", + "name": "Swansboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.68766000", + "longitude": "-77.11912000" + }, + { + "id": "127344", + "name": "Swepsonville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.02125000", + "longitude": "-79.36141000" + }, + { + "id": "127355", + "name": "Sylva", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.37371000", + "longitude": "-83.22598000" + }, + { + "id": "127368", + "name": "Tabor City", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.14878000", + "longitude": "-78.87669000" + }, + { + "id": "127428", + "name": "Tarboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.89682000", + "longitude": "-77.53580000" + }, + { + "id": "127465", + "name": "Taylorsville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.92180000", + "longitude": "-81.17647000" + }, + { + "id": "127589", + "name": "Thomasville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.88264000", + "longitude": "-80.08199000" + }, + { + "id": "127628", + "name": "Thurmond", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.36652000", + "longitude": "-80.92841000" + }, + { + "id": "127689", + "name": "Toast", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.50041000", + "longitude": "-80.62645000" + }, + { + "id": "127690", + "name": "Tobaccoville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.23819000", + "longitude": "-80.37144000" + }, + { + "id": "127780", + "name": "Transylvania County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.20215000", + "longitude": "-82.79830000" + }, + { + "id": "127800", + "name": "Trent Woods", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.08210000", + "longitude": "-77.08634000" + }, + { + "id": "127804", + "name": "Trenton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.06710000", + "longitude": "-77.35274000" + }, + { + "id": "127826", + "name": "Trinity", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.89458000", + "longitude": "-79.99087000" + }, + { + "id": "127839", + "name": "Troutman", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.70069000", + "longitude": "-80.88813000" + }, + { + "id": "127845", + "name": "Troy", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.35847000", + "longitude": "-79.89449000" + }, + { + "id": "127862", + "name": "Tryon", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.33986000", + "longitude": "-81.32203000" + }, + { + "id": "127948", + "name": "Tyro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.80903000", + "longitude": "-80.37283000" + }, + { + "id": "127951", + "name": "Tyrrell County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.87018000", + "longitude": "-76.17005000" + }, + { + "id": "127995", + "name": "Union County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.98837000", + "longitude": "-80.53073000" + }, + { + "id": "128018", + "name": "Unionville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.08737000", + "longitude": "-80.50896000" + }, + { + "id": "128082", + "name": "Valdese", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.74069000", + "longitude": "-81.56315000" + }, + { + "id": "128112", + "name": "Valley Hill", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.29845000", + "longitude": "-82.48318000" + }, + { + "id": "128141", + "name": "Vance County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.36476000", + "longitude": "-78.40833000" + }, + { + "id": "128149", + "name": "Vander", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.03211000", + "longitude": "-78.79474000" + }, + { + "id": "128323", + "name": "Wadesboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.96821000", + "longitude": "-80.07673000" + }, + { + "id": "128356", + "name": "Wake County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.79012000", + "longitude": "-78.65022000" + }, + { + "id": "128357", + "name": "Wake Forest", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.97987000", + "longitude": "-78.50972000" + }, + { + "id": "128392", + "name": "Walkertown", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.17541000", + "longitude": "-80.15310000" + }, + { + "id": "128397", + "name": "Wallace", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.73572000", + "longitude": "-77.99526000" + }, + { + "id": "128400", + "name": "Wallburg", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.01014000", + "longitude": "-80.13921000" + }, + { + "id": "128415", + "name": "Walnut Cove", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.29541000", + "longitude": "-80.14171000" + }, + { + "id": "128451", + "name": "Wanchese", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.84267000", + "longitude": "-75.63851000" + }, + { + "id": "128490", + "name": "Warren County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.39659000", + "longitude": "-78.10690000" + }, + { + "id": "128506", + "name": "Warrenton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.39848000", + "longitude": "-78.15527000" + }, + { + "id": "128516", + "name": "Warsaw", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.99933000", + "longitude": "-78.09110000" + }, + { + "id": "128541", + "name": "Washington", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.54655000", + "longitude": "-77.05217000" + }, + { + "id": "128563", + "name": "Washington County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.83887000", + "longitude": "-76.56868000" + }, + { + "id": "128596", + "name": "Watauga County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.23110000", + "longitude": "-81.69637000" + }, + { + "id": "128675", + "name": "Waxhaw", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.92459000", + "longitude": "-80.74340000" + }, + { + "id": "128695", + "name": "Wayne County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.36378000", + "longitude": "-78.00415000" + }, + { + "id": "128711", + "name": "Waynesville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.48871000", + "longitude": "-82.98875000" + }, + { + "id": "128722", + "name": "Weaverville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.69705000", + "longitude": "-82.56069000" + }, + { + "id": "128746", + "name": "Weddington", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.02237000", + "longitude": "-80.76090000" + }, + { + "id": "128766", + "name": "Welcome", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.90292000", + "longitude": "-80.25699000" + }, + { + "id": "128769", + "name": "Weldon", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.42710000", + "longitude": "-77.59553000" + }, + { + "id": "128798", + "name": "Wendell", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.78099000", + "longitude": "-78.36972000" + }, + { + "id": "128804", + "name": "Wentworth", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.40014000", + "longitude": "-79.77448000" + }, + { + "id": "128810", + "name": "Wesley Chapel", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.00709000", + "longitude": "-80.67451000" + }, + { + "id": "128839", + "name": "West Canton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.53788000", + "longitude": "-82.85819000" + }, + { + "id": "128904", + "name": "West Jefferson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.40374000", + "longitude": "-81.49288000" + }, + { + "id": "128925", + "name": "West Marion", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.65790000", + "longitude": "-82.02539000" + }, + { + "id": "128965", + "name": "West Raleigh", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.78682000", + "longitude": "-78.66389000" + }, + { + "id": "129071", + "name": "Westport", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.50125000", + "longitude": "-80.97869000" + }, + { + "id": "129124", + "name": "Whispering Pines", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.25571000", + "longitude": "-79.37225000" + }, + { + "id": "129154", + "name": "White Plains", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.44569000", + "longitude": "-80.63340000" + }, + { + "id": "129189", + "name": "Whiteville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.33878000", + "longitude": "-78.70307000" + }, + { + "id": "129245", + "name": "Wilkes County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.20621000", + "longitude": "-81.16292000" + }, + { + "id": "129247", + "name": "Wilkesboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.14596000", + "longitude": "-81.16064000" + }, + { + "id": "129282", + "name": "Williamston", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.85460000", + "longitude": "-77.05551000" + }, + { + "id": "129322", + "name": "Wilmington", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.22573000", + "longitude": "-77.94471000" + }, + { + "id": "129329", + "name": "Wilson", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.72127000", + "longitude": "-77.91554000" + }, + { + "id": "129335", + "name": "Wilson County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.70503000", + "longitude": "-77.91862000" + }, + { + "id": "129339", + "name": "Wilsons Mills", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.58405000", + "longitude": "-78.35583000" + }, + { + "id": "129378", + "name": "Windsor", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.99849000", + "longitude": "-76.94606000" + }, + { + "id": "129400", + "name": "Wingate", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.98432000", + "longitude": "-80.44923000" + }, + { + "id": "129436", + "name": "Winston-Salem", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.09986000", + "longitude": "-80.24422000" + }, + { + "id": "129448", + "name": "Winterville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.52905000", + "longitude": "-77.40108000" + }, + { + "id": "129453", + "name": "Winton", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.39571000", + "longitude": "-76.93190000" + }, + { + "id": "129518", + "name": "Woodfin", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.63344000", + "longitude": "-82.58207000" + }, + { + "id": "129611", + "name": "Wrightsboro", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.28850000", + "longitude": "-77.92110000" + }, + { + "id": "129616", + "name": "Wrightsville Beach", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "34.20850000", + "longitude": "-77.79637000" + }, + { + "id": "129648", + "name": "Yadkin County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.16054000", + "longitude": "-80.66534000" + }, + { + "id": "129649", + "name": "Yadkinville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.13458000", + "longitude": "-80.65951000" + }, + { + "id": "129659", + "name": "Yancey County", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.89888000", + "longitude": "-82.30755000" + }, + { + "id": "129660", + "name": "Yanceyville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.40403000", + "longitude": "-79.33613000" + }, + { + "id": "129719", + "name": "Youngsville", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "36.02487000", + "longitude": "-78.47444000" + }, + { + "id": "129743", + "name": "Zebulon", + "state_id": 1447, + "state_code": "NC", + "country_id": 233, + "country_code": "US", + "latitude": "35.82432000", + "longitude": "-78.31472000" + }, + { + "id": "111026", + "name": "Adams County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.09684000", + "longitude": "-102.52853000" + }, + { + "id": "111287", + "name": "Amidon", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.48223000", + "longitude": "-103.32185000" + }, + { + "id": "111543", + "name": "Ashley", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.03414000", + "longitude": "-99.37150000" + }, + { + "id": "111826", + "name": "Barnes County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.93611000", + "longitude": "-98.07158000" + }, + { + "id": "111962", + "name": "Beach", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.91807000", + "longitude": "-104.00437000" + }, + { + "id": "112052", + "name": "Belcourt", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.83917000", + "longitude": "-99.74487000" + }, + { + "id": "112058", + "name": "Belfield", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.88529000", + "longitude": "-103.19962000" + }, + { + "id": "112186", + "name": "Benson County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.06939000", + "longitude": "-99.36603000" + }, + { + "id": "112296", + "name": "Beulah", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.26334000", + "longitude": "-101.77795000" + }, + { + "id": "112345", + "name": "Billings County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.02345000", + "longitude": "-103.37643000" + }, + { + "id": "112367", + "name": "Bismarck", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.80833000", + "longitude": "-100.78374000" + }, + { + "id": "112598", + "name": "Bottineau", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.82723000", + "longitude": "-100.44570000" + }, + { + "id": "112599", + "name": "Bottineau County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.79216000", + "longitude": "-100.83333000" + }, + { + "id": "112621", + "name": "Bowbells", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.80308000", + "longitude": "-102.24600000" + }, + { + "id": "112632", + "name": "Bowman", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.18306000", + "longitude": "-103.39491000" + }, + { + "id": "112633", + "name": "Bowman County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.11261000", + "longitude": "-103.52067000" + }, + { + "id": "113058", + "name": "Burke County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.79100000", + "longitude": "-102.51826000" + }, + { + "id": "113060", + "name": "Burleigh County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.97739000", + "longitude": "-100.46873000" + }, + { + "id": "113075", + "name": "Burlington", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.27529000", + "longitude": "-101.42878000" + }, + { + "id": "113326", + "name": "Cando", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.48667000", + "longitude": "-99.20986000" + }, + { + "id": "113446", + "name": "Carrington", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.44972000", + "longitude": "-99.12622000" + }, + { + "id": "113475", + "name": "Carson", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.41778000", + "longitude": "-101.56487000" + }, + { + "id": "113533", + "name": "Cass County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.93297000", + "longitude": "-97.24804000" + }, + { + "id": "113536", + "name": "Casselton", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.90053000", + "longitude": "-97.21120000" + }, + { + "id": "113581", + "name": "Cavalier", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.79388000", + "longitude": "-97.62231000" + }, + { + "id": "113582", + "name": "Cavalier County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.77230000", + "longitude": "-98.46486000" + }, + { + "id": "113639", + "name": "Center", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.11638000", + "longitude": "-101.29959000" + }, + { + "id": "114606", + "name": "Cooperstown", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.44444000", + "longitude": "-98.12398000" + }, + { + "id": "114844", + "name": "Crosby", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.91420000", + "longitude": "-103.29491000" + }, + { + "id": "115298", + "name": "Devils Lake", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.11278000", + "longitude": "-98.86512000" + }, + { + "id": "115323", + "name": "Dickey County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.11012000", + "longitude": "-98.50467000" + }, + { + "id": "115326", + "name": "Dickinson", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.87918000", + "longitude": "-102.78962000" + }, + { + "id": "115357", + "name": "Divide County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.81489000", + "longitude": "-103.48735000" + }, + { + "id": "115548", + "name": "Dunn County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.35675000", + "longitude": "-102.61824000" + }, + { + "id": "115823", + "name": "Eddy County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.71759000", + "longitude": "-98.90158000" + }, + { + "id": "116017", + "name": "Ellendale", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.00275000", + "longitude": "-98.52705000" + }, + { + "id": "116107", + "name": "Emmons County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.28502000", + "longitude": "-100.23878000" + }, + { + "id": "116396", + "name": "Fargo", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.87719000", + "longitude": "-96.78980000" + }, + { + "id": "116501", + "name": "Fessenden", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.64917000", + "longitude": "-99.62929000" + }, + { + "id": "116516", + "name": "Finley", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.51416000", + "longitude": "-97.83593000" + }, + { + "id": "116676", + "name": "Forman", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.10774000", + "longitude": "-97.63649000" + }, + { + "id": "116756", + "name": "Fort Totten", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.98000000", + "longitude": "-98.99290000" + }, + { + "id": "116766", + "name": "Fort Yates", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.08694000", + "longitude": "-100.63013000" + }, + { + "id": "116777", + "name": "Foster County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.45708000", + "longitude": "-98.88302000" + }, + { + "id": "117103", + "name": "Garrison", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.65222000", + "longitude": "-101.41572000" + }, + { + "id": "117359", + "name": "Golden Valley County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.94022000", + "longitude": "-103.84670000" + }, + { + "id": "117431", + "name": "Grafton", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.41221000", + "longitude": "-97.41063000" + }, + { + "id": "117457", + "name": "Grand Forks", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.92526000", + "longitude": "-97.03285000" + }, + { + "id": "117458", + "name": "Grand Forks Air Force Base", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.95493000", + "longitude": "-97.38664000" + }, + { + "id": "117459", + "name": "Grand Forks County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.92192000", + "longitude": "-97.45693000" + }, + { + "id": "117518", + "name": "Grant County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.35828000", + "longitude": "-101.63971000" + }, + { + "id": "117734", + "name": "Griggs County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.45729000", + "longitude": "-98.23704000" + }, + { + "id": "118114", + "name": "Harvey", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.76972000", + "longitude": "-99.93540000" + }, + { + "id": "118210", + "name": "Hazen", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.29445000", + "longitude": "-101.62266000" + }, + { + "id": "118346", + "name": "Hettinger", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.00139000", + "longitude": "-102.63682000" + }, + { + "id": "118347", + "name": "Hettinger County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.43253000", + "longitude": "-102.46036000" + }, + { + "id": "118450", + "name": "Hillsboro", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.40387000", + "longitude": "-97.06203000" + }, + { + "id": "118661", + "name": "Horace", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.75886000", + "longitude": "-96.90370000" + }, + { + "id": "119123", + "name": "Jamestown", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.91054000", + "longitude": "-98.70844000" + }, + { + "id": "119461", + "name": "Kenmare", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.67475000", + "longitude": "-102.08266000" + }, + { + "id": "119552", + "name": "Kidder County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.98014000", + "longitude": "-99.78009000" + }, + { + "id": "119558", + "name": "Killdeer", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.37196000", + "longitude": "-102.75408000" + }, + { + "id": "120057", + "name": "Lakota", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.04278000", + "longitude": "-98.33621000" + }, + { + "id": "119803", + "name": "LaMoure County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.45691000", + "longitude": "-98.53546000" + }, + { + "id": "120109", + "name": "Langdon", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.76000000", + "longitude": "-98.36817000" + }, + { + "id": "120146", + "name": "Larimore", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.90666000", + "longitude": "-97.62675000" + }, + { + "id": "120510", + "name": "Lincoln", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.76249000", + "longitude": "-100.70040000" + }, + { + "id": "120590", + "name": "Linton", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.26666000", + "longitude": "-100.23289000" + }, + { + "id": "120600", + "name": "Lisbon", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.44163000", + "longitude": "-97.68121000" + }, + { + "id": "120701", + "name": "Logan County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.45736000", + "longitude": "-99.47747000" + }, + { + "id": "121106", + "name": "Mandan", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.82666000", + "longitude": "-100.88958000" + }, + { + "id": "121136", + "name": "Manning", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.23001000", + "longitude": "-102.77019000" + }, + { + "id": "121454", + "name": "Mayville", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.49804000", + "longitude": "-97.32454000" + }, + { + "id": "121472", + "name": "McClusky", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.48583000", + "longitude": "-100.44318000" + }, + { + "id": "121510", + "name": "McHenry County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.23458000", + "longitude": "-100.63628000" + }, + { + "id": "121515", + "name": "McIntosh County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.11179000", + "longitude": "-99.44120000" + }, + { + "id": "121521", + "name": "McKenzie County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.74015000", + "longitude": "-103.39527000" + }, + { + "id": "121530", + "name": "McLean County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.60696000", + "longitude": "-101.32183000" + }, + { + "id": "121608", + "name": "Medora", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.91390000", + "longitude": "-103.52435000" + }, + { + "id": "121681", + "name": "Mercer County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.30922000", + "longitude": "-101.83153000" + }, + { + "id": "121959", + "name": "Minnewaukan", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.07139000", + "longitude": "-99.25236000" + }, + { + "id": "121966", + "name": "Minot", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.23251000", + "longitude": "-101.29627000" + }, + { + "id": "121967", + "name": "Minot Air Force Base", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.42087000", + "longitude": "-101.33914000" + }, + { + "id": "122018", + "name": "Mohall", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.76336000", + "longitude": "-101.51322000" + }, + { + "id": "122297", + "name": "Morton County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.71606000", + "longitude": "-101.28117000" + }, + { + "id": "122312", + "name": "Mott", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.37250000", + "longitude": "-102.32711000" + }, + { + "id": "122440", + "name": "Mountrail County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.20133000", + "longitude": "-102.35565000" + }, + { + "id": "122559", + "name": "Napoleon", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.50831000", + "longitude": "-99.77122000" + }, + { + "id": "122628", + "name": "Nelson County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.92169000", + "longitude": "-98.19204000" + }, + { + "id": "122774", + "name": "New Rockford", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.68000000", + "longitude": "-99.13790000" + }, + { + "id": "122787", + "name": "New Town", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.98085000", + "longitude": "-102.49018000" + }, + { + "id": "123275", + "name": "Oakes", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.13858000", + "longitude": "-98.09038000" + }, + { + "id": "123443", + "name": "Oliver County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.11528000", + "longitude": "-101.34036000" + }, + { + "id": "123853", + "name": "Park River", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.39860000", + "longitude": "-97.74120000" + }, + { + "id": "123889", + "name": "Parshall", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.95335000", + "longitude": "-102.13489000" + }, + { + "id": "124003", + "name": "Pembina County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.76752000", + "longitude": "-97.55183000" + }, + { + "id": "124174", + "name": "Pierce County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.24960000", + "longitude": "-99.97182000" + }, + { + "id": "124844", + "name": "Ramsey County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.26893000", + "longitude": "-98.72014000" + }, + { + "id": "124888", + "name": "Ransom County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.45616000", + "longitude": "-97.65745000" + }, + { + "id": "125029", + "name": "Renville County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.71907000", + "longitude": "-101.65778000" + }, + { + "id": "125076", + "name": "Richland County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.26466000", + "longitude": "-96.94828000" + }, + { + "id": "125362", + "name": "Rolette County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.77245000", + "longitude": "-99.84099000" + }, + { + "id": "125364", + "name": "Rolla", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.85778000", + "longitude": "-99.61792000" + }, + { + "id": "125503", + "name": "Rugby", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.36889000", + "longitude": "-99.99625000" + }, + { + "id": "125950", + "name": "Sargent County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.10794000", + "longitude": "-97.63072000" + }, + { + "id": "126288", + "name": "Sheldon", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.58580000", + "longitude": "-97.49120000" + }, + { + "id": "126293", + "name": "Shell Valley", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.79806000", + "longitude": "-99.86486000" + }, + { + "id": "126326", + "name": "Sheridan County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.57541000", + "longitude": "-100.34566000" + }, + { + "id": "126460", + "name": "Sioux County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.11265000", + "longitude": "-101.04034000" + }, + { + "id": "126507", + "name": "Slope County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.44722000", + "longitude": "-103.45990000" + }, + { + "id": "126961", + "name": "Stanley", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.31724000", + "longitude": "-102.39045000" + }, + { + "id": "126970", + "name": "Stanton", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.32111000", + "longitude": "-101.38155000" + }, + { + "id": "126985", + "name": "Stark County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.81068000", + "longitude": "-102.65513000" + }, + { + "id": "127009", + "name": "Steele", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.85471000", + "longitude": "-99.91594000" + }, + { + "id": "127011", + "name": "Steele County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.45615000", + "longitude": "-97.72467000" + }, + { + "id": "127154", + "name": "Stutsman County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.97925000", + "longitude": "-98.95883000" + }, + { + "id": "127291", + "name": "Surrey", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.23640000", + "longitude": "-101.13349000" + }, + { + "id": "127591", + "name": "Thompson", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.77359000", + "longitude": "-97.10980000" + }, + { + "id": "127668", + "name": "Tioga", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.39724000", + "longitude": "-102.93824000" + }, + { + "id": "127761", + "name": "Towner", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.34583000", + "longitude": "-100.40541000" + }, + { + "id": "127762", + "name": "Towner County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.68554000", + "longitude": "-99.24580000" + }, + { + "id": "127778", + "name": "Traill County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.45418000", + "longitude": "-97.16158000" + }, + { + "id": "128101", + "name": "Valley City", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.92331000", + "longitude": "-98.00315000" + }, + { + "id": "128165", + "name": "Velva", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.05612000", + "longitude": "-100.92932000" + }, + { + "id": "128335", + "name": "Wahpeton", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.26524000", + "longitude": "-96.60591000" + }, + { + "id": "128427", + "name": "Walsh County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.36946000", + "longitude": "-97.72137000" + }, + { + "id": "128459", + "name": "Ward County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.22175000", + "longitude": "-101.54183000" + }, + { + "id": "128535", + "name": "Washburn", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.28916000", + "longitude": "-101.02903000" + }, + { + "id": "128632", + "name": "Watford City", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.80224000", + "longitude": "-103.28325000" + }, + { + "id": "128787", + "name": "Wells County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "47.58753000", + "longitude": "-99.66095000" + }, + { + "id": "128869", + "name": "West Fargo", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "46.87497000", + "longitude": "-96.90036000" + }, + { + "id": "129264", + "name": "Williams County", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.34368000", + "longitude": "-103.48021000" + }, + { + "id": "129299", + "name": "Williston", + "state_id": 1418, + "state_code": "ND", + "country_id": 233, + "country_code": "US", + "latitude": "48.14697000", + "longitude": "-103.61797000" + }, + { + "id": "141096", + "name": "Ada", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.76950000", + "longitude": "-83.82271000" + }, + { + "id": "141097", + "name": "Adams County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.84551000", + "longitude": "-83.47215000" + }, + { + "id": "141098", + "name": "Akron", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.08144000", + "longitude": "-81.51901000" + }, + { + "id": "141099", + "name": "Allen County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.77152000", + "longitude": "-84.10578000" + }, + { + "id": "141100", + "name": "Alliance", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.91534000", + "longitude": "-81.10593000" + }, + { + "id": "141101", + "name": "Amberley", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.20478000", + "longitude": "-84.42800000" + }, + { + "id": "141102", + "name": "Amelia", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.02840000", + "longitude": "-84.21771000" + }, + { + "id": "141103", + "name": "Amherst", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.39782000", + "longitude": "-82.22238000" + }, + { + "id": "141104", + "name": "Andover", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.60672000", + "longitude": "-80.57230000" + }, + { + "id": "141105", + "name": "Anna", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.39449000", + "longitude": "-84.17272000" + }, + { + "id": "141106", + "name": "Ansonia", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.21449000", + "longitude": "-84.63690000" + }, + { + "id": "141107", + "name": "Antwerp", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.18144000", + "longitude": "-84.74051000" + }, + { + "id": "141108", + "name": "Apple Creek", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.75172000", + "longitude": "-81.83930000" + }, + { + "id": "141109", + "name": "Apple Valley", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.43890000", + "longitude": "-82.35391000" + }, + { + "id": "141110", + "name": "Arcanum", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.99005000", + "longitude": "-84.55329000" + }, + { + "id": "141111", + "name": "Archbold", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.52144000", + "longitude": "-84.30717000" + }, + { + "id": "141112", + "name": "Arlington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.89366000", + "longitude": "-83.65021000" + }, + { + "id": "141113", + "name": "Ashland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.86867000", + "longitude": "-82.31822000" + }, + { + "id": "141114", + "name": "Ashland County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.84602000", + "longitude": "-82.27069000" + }, + { + "id": "141115", + "name": "Ashley", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.40895000", + "longitude": "-82.95546000" + }, + { + "id": "141116", + "name": "Ashtabula", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.86505000", + "longitude": "-80.78981000" + }, + { + "id": "141117", + "name": "Ashtabula County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.89638000", + "longitude": "-80.75901000" + }, + { + "id": "141118", + "name": "Ashville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.71562000", + "longitude": "-82.95296000" + }, + { + "id": "141119", + "name": "Athens", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.32924000", + "longitude": "-82.10126000" + }, + { + "id": "141120", + "name": "Athens County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.33386000", + "longitude": "-82.04513000" + }, + { + "id": "141121", + "name": "Auglaize County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.56091000", + "longitude": "-84.22174000" + }, + { + "id": "141122", + "name": "Aurora", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.31755000", + "longitude": "-81.34539000" + }, + { + "id": "141123", + "name": "Austintown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.10172000", + "longitude": "-80.76452000" + }, + { + "id": "141124", + "name": "Avon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.45171000", + "longitude": "-82.03542000" + }, + { + "id": "141125", + "name": "Avon Center", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.45976000", + "longitude": "-82.01959000" + }, + { + "id": "141126", + "name": "Avon Lake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.50532000", + "longitude": "-82.02820000" + }, + { + "id": "141127", + "name": "Bainbridge", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.38644000", + "longitude": "-81.33955000" + }, + { + "id": "141128", + "name": "Ballville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.32783000", + "longitude": "-83.13214000" + }, + { + "id": "141129", + "name": "Baltimore", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.84534000", + "longitude": "-82.60072000" + }, + { + "id": "141130", + "name": "Barberton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.01283000", + "longitude": "-81.60512000" + }, + { + "id": "141131", + "name": "Barnesville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.98813000", + "longitude": "-81.17650000" + }, + { + "id": "141132", + "name": "Batavia", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.07701000", + "longitude": "-84.17688000" + }, + { + "id": "141133", + "name": "Bay Village", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.48477000", + "longitude": "-81.92208000" + }, + { + "id": "141134", + "name": "Beach City", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.65312000", + "longitude": "-81.58096000" + }, + { + "id": "141135", + "name": "Beachwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.46450000", + "longitude": "-81.50873000" + }, + { + "id": "141136", + "name": "Beavercreek", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.70923000", + "longitude": "-84.06327000" + }, + { + "id": "141137", + "name": "Beckett Ridge", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.34700000", + "longitude": "-84.43522000" + }, + { + "id": "141138", + "name": "Bedford", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.39311000", + "longitude": "-81.53651000" + }, + { + "id": "141139", + "name": "Bedford Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.41700000", + "longitude": "-81.52734000" + }, + { + "id": "141140", + "name": "Beechwood Trails", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.02367000", + "longitude": "-82.65072000" + }, + { + "id": "141141", + "name": "Bellaire", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.01618000", + "longitude": "-80.74231000" + }, + { + "id": "141142", + "name": "Bellbrook", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.63562000", + "longitude": "-84.07077000" + }, + { + "id": "141143", + "name": "Bellefontaine", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.36116000", + "longitude": "-83.75966000" + }, + { + "id": "141144", + "name": "Bellevue", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.27366000", + "longitude": "-82.84158000" + }, + { + "id": "141145", + "name": "Bellville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.62006000", + "longitude": "-82.51072000" + }, + { + "id": "141146", + "name": "Belmont County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.01580000", + "longitude": "-80.98854000" + }, + { + "id": "141147", + "name": "Belpre", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.27396000", + "longitude": "-81.57290000" + }, + { + "id": "141148", + "name": "Berea", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.36616000", + "longitude": "-81.85430000" + }, + { + "id": "141149", + "name": "Bethel", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.96368000", + "longitude": "-84.08077000" + }, + { + "id": "141150", + "name": "Bethesda", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.01618000", + "longitude": "-81.07260000" + }, + { + "id": "141151", + "name": "Beverly", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.54785000", + "longitude": "-81.63957000" + }, + { + "id": "141152", + "name": "Bexley", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.96895000", + "longitude": "-82.93768000" + }, + { + "id": "141153", + "name": "Blacklick Estates", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.90506000", + "longitude": "-82.86434000" + }, + { + "id": "141154", + "name": "Blanchester", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.29312000", + "longitude": "-83.98882000" + }, + { + "id": "141155", + "name": "Blue Ash", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.23200000", + "longitude": "-84.37827000" + }, + { + "id": "141156", + "name": "Bluffton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.89533000", + "longitude": "-83.88883000" + }, + { + "id": "141157", + "name": "Boardman", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.02423000", + "longitude": "-80.66285000" + }, + { + "id": "141158", + "name": "Bolindale", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.20728000", + "longitude": "-80.77758000" + }, + { + "id": "141159", + "name": "Boston Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.26478000", + "longitude": "-81.51317000" + }, + { + "id": "141160", + "name": "Botkins", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.46783000", + "longitude": "-84.18050000" + }, + { + "id": "141161", + "name": "Bowling Green", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.37477000", + "longitude": "-83.65132000" + }, + { + "id": "141162", + "name": "Bradford", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.13227000", + "longitude": "-84.43078000" + }, + { + "id": "141163", + "name": "Bradner", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.32422000", + "longitude": "-83.43854000" + }, + { + "id": "141164", + "name": "Bratenahl", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.54255000", + "longitude": "-81.62624000" + }, + { + "id": "141165", + "name": "Brecksville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.31978000", + "longitude": "-81.62679000" + }, + { + "id": "141166", + "name": "Bremen", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.70173000", + "longitude": "-82.42682000" + }, + { + "id": "141167", + "name": "Brewster", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.70700000", + "longitude": "-81.59818000" + }, + { + "id": "141168", + "name": "Bridgeport", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.06979000", + "longitude": "-80.74008000" + }, + { + "id": "141169", + "name": "Bridgetown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.15311000", + "longitude": "-84.63717000" + }, + { + "id": "141170", + "name": "Brilliant", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.26479000", + "longitude": "-80.62619000" + }, + { + "id": "141171", + "name": "Brimfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.10006000", + "longitude": "-81.34650000" + }, + { + "id": "141172", + "name": "Broadview Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.31394000", + "longitude": "-81.68513000" + }, + { + "id": "141173", + "name": "Brook Park", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.39838000", + "longitude": "-81.80458000" + }, + { + "id": "141174", + "name": "Brookfield Center", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.24061000", + "longitude": "-80.55785000" + }, + { + "id": "141175", + "name": "Brooklyn", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.43977000", + "longitude": "-81.73541000" + }, + { + "id": "141176", + "name": "Brooklyn Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.42533000", + "longitude": "-81.68818000" + }, + { + "id": "141177", + "name": "Brookville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.83672000", + "longitude": "-84.41134000" + }, + { + "id": "141178", + "name": "Brown County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.93405000", + "longitude": "-83.86743000" + }, + { + "id": "141179", + "name": "Brunswick", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.23811000", + "longitude": "-81.84180000" + }, + { + "id": "141180", + "name": "Bryan", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.47477000", + "longitude": "-84.55245000" + }, + { + "id": "141181", + "name": "Buckeye Lake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.93368000", + "longitude": "-82.47238000" + }, + { + "id": "141182", + "name": "Bucyrus", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.80839000", + "longitude": "-82.97546000" + }, + { + "id": "141183", + "name": "Burlington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.40730000", + "longitude": "-82.53571000" + }, + { + "id": "141184", + "name": "Burton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.47061000", + "longitude": "-81.14510000" + }, + { + "id": "141185", + "name": "Butler County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.43865000", + "longitude": "-84.57566000" + }, + { + "id": "141186", + "name": "Byesville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.96979000", + "longitude": "-81.53651000" + }, + { + "id": "141187", + "name": "Cadiz", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.27285000", + "longitude": "-80.99676000" + }, + { + "id": "141188", + "name": "Calcutta", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.67340000", + "longitude": "-80.57646000" + }, + { + "id": "141189", + "name": "Caldwell", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.74785000", + "longitude": "-81.51651000" + }, + { + "id": "141190", + "name": "Cambridge", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.03118000", + "longitude": "-81.58846000" + }, + { + "id": "141191", + "name": "Camden", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.62894000", + "longitude": "-84.64856000" + }, + { + "id": "141192", + "name": "Campbell", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.07839000", + "longitude": "-80.59924000" + }, + { + "id": "141193", + "name": "Canal Fulton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.88978000", + "longitude": "-81.59762000" + }, + { + "id": "141194", + "name": "Canal Winchester", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.84284000", + "longitude": "-82.80462000" + }, + { + "id": "141195", + "name": "Canfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.02506000", + "longitude": "-80.76091000" + }, + { + "id": "141196", + "name": "Canton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.79895000", + "longitude": "-81.37845000" + }, + { + "id": "141197", + "name": "Cardington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.50062000", + "longitude": "-82.89351000" + }, + { + "id": "141198", + "name": "Carey", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.95256000", + "longitude": "-83.38242000" + }, + { + "id": "141199", + "name": "Carlisle", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.58200000", + "longitude": "-84.32022000" + }, + { + "id": "141200", + "name": "Carroll County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.57959000", + "longitude": "-81.08972000" + }, + { + "id": "141201", + "name": "Carrollton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.57284000", + "longitude": "-81.08565000" + }, + { + "id": "141202", + "name": "Cedarville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.74423000", + "longitude": "-83.80854000" + }, + { + "id": "141203", + "name": "Celina", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.54894000", + "longitude": "-84.57023000" + }, + { + "id": "141204", + "name": "Centerburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.30451000", + "longitude": "-82.69628000" + }, + { + "id": "141205", + "name": "Centerville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.62839000", + "longitude": "-84.15938000" + }, + { + "id": "141206", + "name": "Chagrin Falls", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.43616000", + "longitude": "-81.38650000" + }, + { + "id": "141207", + "name": "Champaign County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.13767000", + "longitude": "-83.76950000" + }, + { + "id": "141208", + "name": "Champion Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.28999000", + "longitude": "-80.84595000" + }, + { + "id": "141209", + "name": "Chardon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.61422000", + "longitude": "-81.14899000" + }, + { + "id": "141210", + "name": "Chauncey", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.39785000", + "longitude": "-82.12931000" + }, + { + "id": "141211", + "name": "Cherry Grove", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.07256000", + "longitude": "-84.32188000" + }, + { + "id": "141212", + "name": "Chesterland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.52227000", + "longitude": "-81.33789000" + }, + { + "id": "141213", + "name": "Cheviot", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.15700000", + "longitude": "-84.61328000" + }, + { + "id": "141214", + "name": "Chillicothe", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.33312000", + "longitude": "-82.98240000" + }, + { + "id": "141215", + "name": "Choctaw Lake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.96006000", + "longitude": "-83.48492000" + }, + { + "id": "141216", + "name": "Churchill", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.16200000", + "longitude": "-80.66480000" + }, + { + "id": "141217", + "name": "Cincinnati", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.12711000", + "longitude": "-84.51439000" + }, + { + "id": "141218", + "name": "Circleville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.60062000", + "longitude": "-82.94601000" + }, + { + "id": "141219", + "name": "Clark County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.91678000", + "longitude": "-83.78390000" + }, + { + "id": "141220", + "name": "Clark-Fulton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.46402000", + "longitude": "-81.70979000" + }, + { + "id": "141221", + "name": "Clayton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.86311000", + "longitude": "-84.36050000" + }, + { + "id": "141222", + "name": "Clermont County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.04743000", + "longitude": "-84.15192000" + }, + { + "id": "141223", + "name": "Cleveland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.49950000", + "longitude": "-81.69541000" + }, + { + "id": "141224", + "name": "Cleveland Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.52005000", + "longitude": "-81.55624000" + }, + { + "id": "141225", + "name": "Cleves", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.16172000", + "longitude": "-84.74912000" + }, + { + "id": "141226", + "name": "Clinton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.92672000", + "longitude": "-81.63040000" + }, + { + "id": "141227", + "name": "Clinton County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.41498000", + "longitude": "-83.80838000" + }, + { + "id": "141228", + "name": "Clyde", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.30422000", + "longitude": "-82.97519000" + }, + { + "id": "141229", + "name": "Coal Grove", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.50341000", + "longitude": "-82.64711000" + }, + { + "id": "141230", + "name": "Coldwater", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.47977000", + "longitude": "-84.62829000" + }, + { + "id": "141231", + "name": "Collinwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.55838000", + "longitude": "-81.56929000" + }, + { + "id": "141232", + "name": "Columbiana", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.88839000", + "longitude": "-80.69396000" + }, + { + "id": "141233", + "name": "Columbiana County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.76843000", + "longitude": "-80.77719000" + }, + { + "id": "141234", + "name": "Columbus", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.96118000", + "longitude": "-82.99879000" + }, + { + "id": "141235", + "name": "Columbus Grove", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.91950000", + "longitude": "-84.05689000" + }, + { + "id": "141236", + "name": "Commercial Point", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.76840000", + "longitude": "-83.05713000" + }, + { + "id": "141237", + "name": "Conneaut", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.94756000", + "longitude": "-80.55424000" + }, + { + "id": "141238", + "name": "Continental", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.10033000", + "longitude": "-84.26634000" + }, + { + "id": "141239", + "name": "Convoy", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.91672000", + "longitude": "-84.70274000" + }, + { + "id": "141240", + "name": "Copley", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.09894000", + "longitude": "-81.64457000" + }, + { + "id": "141241", + "name": "Cortland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.33033000", + "longitude": "-80.72536000" + }, + { + "id": "141242", + "name": "Coshocton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.27202000", + "longitude": "-81.85958000" + }, + { + "id": "141243", + "name": "Coshocton County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.30164000", + "longitude": "-81.92001000" + }, + { + "id": "141244", + "name": "Covedale", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.12117000", + "longitude": "-84.60633000" + }, + { + "id": "141245", + "name": "Covington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.11727000", + "longitude": "-84.35384000" + }, + { + "id": "141246", + "name": "Craig Beach", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.11700000", + "longitude": "-80.98342000" + }, + { + "id": "141247", + "name": "Crawford County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.85077000", + "longitude": "-82.91978000" + }, + { + "id": "141248", + "name": "Crestline", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.78756000", + "longitude": "-82.73657000" + }, + { + "id": "141249", + "name": "Creston", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.98700000", + "longitude": "-81.89375000" + }, + { + "id": "141250", + "name": "Cridersville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.65422000", + "longitude": "-84.15078000" + }, + { + "id": "141251", + "name": "Crooksville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.76896000", + "longitude": "-82.09209000" + }, + { + "id": "141252", + "name": "Crystal Lakes", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.88923000", + "longitude": "-84.02660000" + }, + { + "id": "141253", + "name": "Curtice", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.61838000", + "longitude": "-83.36771000" + }, + { + "id": "141254", + "name": "Cuyahoga County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.47875000", + "longitude": "-81.67786000" + }, + { + "id": "141255", + "name": "Cuyahoga Falls", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.13394000", + "longitude": "-81.48456000" + }, + { + "id": "141256", + "name": "Dalton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.79894000", + "longitude": "-81.69541000" + }, + { + "id": "141257", + "name": "Danville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.44756000", + "longitude": "-82.26016000" + }, + { + "id": "141258", + "name": "Darke County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.13323000", + "longitude": "-84.61931000" + }, + { + "id": "141259", + "name": "Day Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.17395000", + "longitude": "-84.22633000" + }, + { + "id": "141260", + "name": "Dayton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.75895000", + "longitude": "-84.19161000" + }, + { + "id": "141261", + "name": "De Graff", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.31200000", + "longitude": "-83.91577000" + }, + { + "id": "141262", + "name": "Deer Park", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.20534000", + "longitude": "-84.39466000" + }, + { + "id": "141263", + "name": "Defiance", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.28449000", + "longitude": "-84.35578000" + }, + { + "id": "141264", + "name": "Defiance County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.32392000", + "longitude": "-84.49050000" + }, + { + "id": "141265", + "name": "Delaware", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.29867000", + "longitude": "-83.06797000" + }, + { + "id": "141266", + "name": "Delaware County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.27839000", + "longitude": "-83.00489000" + }, + { + "id": "141267", + "name": "Delhi Hills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.09284000", + "longitude": "-84.61272000" + }, + { + "id": "141268", + "name": "Delphos", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.84338000", + "longitude": "-84.34162000" + }, + { + "id": "141269", + "name": "Delta", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.57366000", + "longitude": "-84.00522000" + }, + { + "id": "141270", + "name": "Dennison", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.39340000", + "longitude": "-81.33372000" + }, + { + "id": "141271", + "name": "Dent", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.18589000", + "longitude": "-84.65134000" + }, + { + "id": "141272", + "name": "Deshler", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.20755000", + "longitude": "-83.89911000" + }, + { + "id": "141273", + "name": "Detroit-Shoreway", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.47772000", + "longitude": "-81.72991000" + }, + { + "id": "141274", + "name": "Devola", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.47369000", + "longitude": "-81.47901000" + }, + { + "id": "141275", + "name": "Dillonvale", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.21811000", + "longitude": "-84.40216000" + }, + { + "id": "141276", + "name": "Dover", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.52062000", + "longitude": "-81.47401000" + }, + { + "id": "141277", + "name": "Doylestown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.97005000", + "longitude": "-81.69652000" + }, + { + "id": "141278", + "name": "Dresden", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.12146000", + "longitude": "-82.01069000" + }, + { + "id": "141279", + "name": "Drexel", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.74645000", + "longitude": "-84.28661000" + }, + { + "id": "141280", + "name": "Dry Ridge", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.25922000", + "longitude": "-84.61911000" + }, + { + "id": "141281", + "name": "Dry Run", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.10423000", + "longitude": "-84.33049000" + }, + { + "id": "141282", + "name": "Dublin", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.09923000", + "longitude": "-83.11408000" + }, + { + "id": "141283", + "name": "Dunlap", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.29228000", + "longitude": "-84.61800000" + }, + { + "id": "141284", + "name": "East Canton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.78728000", + "longitude": "-81.28261000" + }, + { + "id": "141285", + "name": "East Cleveland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.53311000", + "longitude": "-81.57901000" + }, + { + "id": "141286", + "name": "East Liverpool", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.61868000", + "longitude": "-80.57729000" + }, + { + "id": "141287", + "name": "East Palestine", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.83395000", + "longitude": "-80.54035000" + }, + { + "id": "141288", + "name": "Eastlake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.65394000", + "longitude": "-81.45039000" + }, + { + "id": "141289", + "name": "Eaton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.74394000", + "longitude": "-84.63662000" + }, + { + "id": "141290", + "name": "Eaton Estates", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.30894000", + "longitude": "-82.00570000" + }, + { + "id": "141291", + "name": "Edgerton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.44866000", + "longitude": "-84.74801000" + }, + { + "id": "141292", + "name": "Edgewood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.87283000", + "longitude": "-80.77286000" + }, + { + "id": "141293", + "name": "Elida", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.78866000", + "longitude": "-84.20384000" + }, + { + "id": "141294", + "name": "Elmore", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.47616000", + "longitude": "-83.29576000" + }, + { + "id": "141295", + "name": "Elmwood Place", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.18728000", + "longitude": "-84.48800000" + }, + { + "id": "141296", + "name": "Elyria", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.36838000", + "longitude": "-82.10765000" + }, + { + "id": "141297", + "name": "Englewood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.87756000", + "longitude": "-84.30217000" + }, + { + "id": "141298", + "name": "Enon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.87812000", + "longitude": "-83.93688000" + }, + { + "id": "141299", + "name": "Erie County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.43209000", + "longitude": "-82.69958000" + }, + { + "id": "141300", + "name": "Etna", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.95729000", + "longitude": "-82.68183000" + }, + { + "id": "141301", + "name": "Euclid", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.59310000", + "longitude": "-81.52679000" + }, + { + "id": "141302", + "name": "Evendale", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.25617000", + "longitude": "-84.41800000" + }, + { + "id": "141303", + "name": "Fairborn", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.82089000", + "longitude": "-84.01938000" + }, + { + "id": "141304", + "name": "Fairfax", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.14534000", + "longitude": "-84.39327000" + }, + { + "id": "141305", + "name": "Fairfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.34589000", + "longitude": "-84.56050000" + }, + { + "id": "141306", + "name": "Fairfield Beach", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.91590000", + "longitude": "-82.47516000" + }, + { + "id": "141307", + "name": "Fairfield County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.75160000", + "longitude": "-82.63059000" + }, + { + "id": "141308", + "name": "Fairlawn", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.12783000", + "longitude": "-81.60984000" + }, + { + "id": "141309", + "name": "Fairport Harbor", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.75004000", + "longitude": "-81.27399000" + }, + { + "id": "141310", + "name": "Fairview Park", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.44144000", + "longitude": "-81.86430000" + }, + { + "id": "141311", + "name": "Farmersville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.67950000", + "longitude": "-84.42911000" + }, + { + "id": "141312", + "name": "Fayette", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.67338000", + "longitude": "-84.32689000" + }, + { + "id": "141313", + "name": "Fayette County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.55988000", + "longitude": "-83.45610000" + }, + { + "id": "141314", + "name": "Findlay", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.04422000", + "longitude": "-83.64993000" + }, + { + "id": "141315", + "name": "Finneytown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.20034000", + "longitude": "-84.52050000" + }, + { + "id": "141316", + "name": "Five Points", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.56867000", + "longitude": "-84.19299000" + }, + { + "id": "141317", + "name": "Forest", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.80172000", + "longitude": "-83.51048000" + }, + { + "id": "141318", + "name": "Forest Park", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.29034000", + "longitude": "-84.50411000" + }, + { + "id": "141319", + "name": "Forestville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.07506000", + "longitude": "-84.34494000" + }, + { + "id": "141320", + "name": "Fort Loramie", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.35144000", + "longitude": "-84.37384000" + }, + { + "id": "141321", + "name": "Fort McKinley", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.79756000", + "longitude": "-84.25355000" + }, + { + "id": "141322", + "name": "Fort Recovery", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.41282000", + "longitude": "-84.77635000" + }, + { + "id": "141323", + "name": "Fort Shawnee", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.68672000", + "longitude": "-84.13773000" + }, + { + "id": "141324", + "name": "Fostoria", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.15700000", + "longitude": "-83.41687000" + }, + { + "id": "141325", + "name": "Frankfort", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.40145000", + "longitude": "-83.18074000" + }, + { + "id": "141326", + "name": "Franklin", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.55895000", + "longitude": "-84.30411000" + }, + { + "id": "141327", + "name": "Franklin County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.96952000", + "longitude": "-83.00935000" + }, + { + "id": "141328", + "name": "Franklin Furnace", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.64508000", + "longitude": "-82.84878000" + }, + { + "id": "141329", + "name": "Frazeysburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.11729000", + "longitude": "-82.11931000" + }, + { + "id": "141330", + "name": "Fredericktown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.48117000", + "longitude": "-82.54072000" + }, + { + "id": "141331", + "name": "Fremont", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.35033000", + "longitude": "-83.12186000" + }, + { + "id": "141332", + "name": "Fruit Hill", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.07562000", + "longitude": "-84.36438000" + }, + { + "id": "141333", + "name": "Fulton County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.60180000", + "longitude": "-84.13007000" + }, + { + "id": "141334", + "name": "Gahanna", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.01923000", + "longitude": "-82.87934000" + }, + { + "id": "141335", + "name": "Galion", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.73367000", + "longitude": "-82.78990000" + }, + { + "id": "141336", + "name": "Gallia County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.82467000", + "longitude": "-82.31691000" + }, + { + "id": "141337", + "name": "Gallipolis", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.80980000", + "longitude": "-82.20237000" + }, + { + "id": "141338", + "name": "Gambier", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.37562000", + "longitude": "-82.39710000" + }, + { + "id": "141339", + "name": "Garfield Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.41700000", + "longitude": "-81.60596000" + }, + { + "id": "141340", + "name": "Garrettsville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.28422000", + "longitude": "-81.09649000" + }, + { + "id": "141341", + "name": "Gates Mills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.51755000", + "longitude": "-81.40345000" + }, + { + "id": "141342", + "name": "Geauga County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.49954000", + "longitude": "-81.17865000" + }, + { + "id": "141343", + "name": "Geneva", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.80505000", + "longitude": "-80.94815000" + }, + { + "id": "141344", + "name": "Geneva-on-the-Lake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.85950000", + "longitude": "-80.95398000" + }, + { + "id": "141345", + "name": "Genoa", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.51811000", + "longitude": "-83.35909000" + }, + { + "id": "141346", + "name": "Georgetown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.86451000", + "longitude": "-83.90409000" + }, + { + "id": "141347", + "name": "Germantown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.62617000", + "longitude": "-84.36939000" + }, + { + "id": "141348", + "name": "Gibsonburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.38450000", + "longitude": "-83.32048000" + }, + { + "id": "141349", + "name": "Girard", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.15395000", + "longitude": "-80.70147000" + }, + { + "id": "141350", + "name": "Glandorf", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.02894000", + "longitude": "-84.07911000" + }, + { + "id": "141351", + "name": "Glendale", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.27061000", + "longitude": "-84.45939000" + }, + { + "id": "141352", + "name": "Glenmoor", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.66617000", + "longitude": "-80.62313000" + }, + { + "id": "141353", + "name": "Glenville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.53338000", + "longitude": "-81.61735000" + }, + { + "id": "141354", + "name": "Glouster", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.50313000", + "longitude": "-82.08459000" + }, + { + "id": "141355", + "name": "Gnadenhutten", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.35840000", + "longitude": "-81.43428000" + }, + { + "id": "141356", + "name": "Golf Manor", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.18728000", + "longitude": "-84.44633000" + }, + { + "id": "141357", + "name": "Goshen", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.23339000", + "longitude": "-84.16132000" + }, + { + "id": "141358", + "name": "Grafton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.27255000", + "longitude": "-82.05459000" + }, + { + "id": "141359", + "name": "Grandview", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.19422000", + "longitude": "-84.72439000" + }, + { + "id": "141360", + "name": "Grandview Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.97979000", + "longitude": "-83.04074000" + }, + { + "id": "141361", + "name": "Granville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.06812000", + "longitude": "-82.51960000" + }, + { + "id": "141362", + "name": "Granville South", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.05207000", + "longitude": "-82.54166000" + }, + { + "id": "141363", + "name": "Green", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.94589000", + "longitude": "-81.48317000" + }, + { + "id": "141364", + "name": "Green Meadows", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.86895000", + "longitude": "-83.94438000" + }, + { + "id": "141365", + "name": "Green Springs", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.25616000", + "longitude": "-83.05158000" + }, + { + "id": "141366", + "name": "Greene County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.69148000", + "longitude": "-83.88989000" + }, + { + "id": "141367", + "name": "Greenfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.35201000", + "longitude": "-83.38269000" + }, + { + "id": "141368", + "name": "Greenhills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.26811000", + "longitude": "-84.52300000" + }, + { + "id": "141369", + "name": "Greensburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.93172000", + "longitude": "-81.46484000" + }, + { + "id": "141370", + "name": "Greentown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.92756000", + "longitude": "-81.40261000" + }, + { + "id": "141371", + "name": "Greenville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.10283000", + "longitude": "-84.63301000" + }, + { + "id": "141372", + "name": "Greenwich", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.03005000", + "longitude": "-82.51573000" + }, + { + "id": "141373", + "name": "Groesbeck", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.22311000", + "longitude": "-84.58689000" + }, + { + "id": "141374", + "name": "Grove City", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.88145000", + "longitude": "-83.09296000" + }, + { + "id": "141375", + "name": "Groveport", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.87840000", + "longitude": "-82.88379000" + }, + { + "id": "141376", + "name": "Guernsey County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.05205000", + "longitude": "-81.49426000" + }, + { + "id": "141377", + "name": "Hamilton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.39950000", + "longitude": "-84.56134000" + }, + { + "id": "141378", + "name": "Hamilton County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.19553000", + "longitude": "-84.54277000" + }, + { + "id": "141379", + "name": "Hancock County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.00194000", + "longitude": "-83.66654000" + }, + { + "id": "141380", + "name": "Hanover", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.07979000", + "longitude": "-82.26098000" + }, + { + "id": "141381", + "name": "Harbor Hills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.93673000", + "longitude": "-82.43515000" + }, + { + "id": "141382", + "name": "Hardin County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.66151000", + "longitude": "-83.65944000" + }, + { + "id": "141383", + "name": "Harrison", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.26200000", + "longitude": "-84.81995000" + }, + { + "id": "141384", + "name": "Harrison County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.29384000", + "longitude": "-81.09114000" + }, + { + "id": "141385", + "name": "Hartville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.96367000", + "longitude": "-81.33122000" + }, + { + "id": "141386", + "name": "Haskins", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.46477000", + "longitude": "-83.70605000" + }, + { + "id": "141387", + "name": "Heath", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.02284000", + "longitude": "-82.44460000" + }, + { + "id": "141388", + "name": "Hebron", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.96173000", + "longitude": "-82.49127000" + }, + { + "id": "141389", + "name": "Henry County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.33389000", + "longitude": "-84.06823000" + }, + { + "id": "141390", + "name": "Hicksville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.29311000", + "longitude": "-84.76190000" + }, + { + "id": "141391", + "name": "Highland County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.18474000", + "longitude": "-83.60097000" + }, + { + "id": "141392", + "name": "Highland Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.55200000", + "longitude": "-81.47845000" + }, + { + "id": "141393", + "name": "Highpoint", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.28839000", + "longitude": "-84.35022000" + }, + { + "id": "141394", + "name": "Hilliard", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.03340000", + "longitude": "-83.15825000" + }, + { + "id": "141395", + "name": "Hillsboro", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.20229000", + "longitude": "-83.61159000" + }, + { + "id": "141396", + "name": "Hiram", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.31256000", + "longitude": "-81.14371000" + }, + { + "id": "141397", + "name": "Hocking County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.49702000", + "longitude": "-82.47925000" + }, + { + "id": "141398", + "name": "Holgate", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.24894000", + "longitude": "-84.13300000" + }, + { + "id": "141399", + "name": "Holiday Valley", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.85617000", + "longitude": "-83.96854000" + }, + { + "id": "141400", + "name": "Holland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.62172000", + "longitude": "-83.71160000" + }, + { + "id": "141401", + "name": "Holmes County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.56120000", + "longitude": "-81.92936000" + }, + { + "id": "141402", + "name": "Hough", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.51200000", + "longitude": "-81.63652000" + }, + { + "id": "141403", + "name": "Howland Center", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.25117000", + "longitude": "-80.74536000" + }, + { + "id": "141404", + "name": "Hubbard", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.15645000", + "longitude": "-80.56924000" + }, + { + "id": "141405", + "name": "Huber Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.84395000", + "longitude": "-84.12466000" + }, + { + "id": "141406", + "name": "Huber Ridge", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.08867000", + "longitude": "-82.91657000" + }, + { + "id": "141407", + "name": "Hudson", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.24006000", + "longitude": "-81.44067000" + }, + { + "id": "141408", + "name": "Hunter", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.49284000", + "longitude": "-84.28966000" + }, + { + "id": "141409", + "name": "Huron", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.39505000", + "longitude": "-82.55517000" + }, + { + "id": "141410", + "name": "Huron County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.14615000", + "longitude": "-82.59841000" + }, + { + "id": "141411", + "name": "Independence", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.36866000", + "longitude": "-81.63790000" + }, + { + "id": "141412", + "name": "Ironton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.53675000", + "longitude": "-82.68294000" + }, + { + "id": "141413", + "name": "Jackson", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.05202000", + "longitude": "-82.63655000" + }, + { + "id": "141414", + "name": "Jackson Center", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.43949000", + "longitude": "-84.04022000" + }, + { + "id": "141415", + "name": "Jackson County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.01967000", + "longitude": "-82.61838000" + }, + { + "id": "141416", + "name": "Jamestown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.65812000", + "longitude": "-83.73492000" + }, + { + "id": "141417", + "name": "Jefferson", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.73867000", + "longitude": "-80.76981000" + }, + { + "id": "141418", + "name": "Jefferson County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.38502000", + "longitude": "-80.76097000" + }, + { + "id": "141419", + "name": "Jeffersonville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.65367000", + "longitude": "-83.56381000" + }, + { + "id": "141420", + "name": "Johnstown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.15367000", + "longitude": "-82.68517000" + }, + { + "id": "141421", + "name": "Kalida", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.98283000", + "longitude": "-84.19939000" + }, + { + "id": "141422", + "name": "Kent", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.15367000", + "longitude": "-81.35789000" + }, + { + "id": "141423", + "name": "Kenton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.64700000", + "longitude": "-83.60965000" + }, + { + "id": "141424", + "name": "Kenwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.21061000", + "longitude": "-84.36716000" + }, + { + "id": "141425", + "name": "Kettering", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.68950000", + "longitude": "-84.16883000" + }, + { + "id": "141426", + "name": "Kings Mills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.35561000", + "longitude": "-84.24855000" + }, + { + "id": "141427", + "name": "Kingston", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.47395000", + "longitude": "-82.91073000" + }, + { + "id": "141428", + "name": "Kirtland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.62894000", + "longitude": "-81.36150000" + }, + { + "id": "141429", + "name": "Knox County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.39877000", + "longitude": "-82.42153000" + }, + { + "id": "141430", + "name": "La Croft", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.64590000", + "longitude": "-80.59785000" + }, + { + "id": "141431", + "name": "Lagrange", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.23728000", + "longitude": "-82.11987000" + }, + { + "id": "141432", + "name": "Lake County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.71393000", + "longitude": "-81.24527000" + }, + { + "id": "141433", + "name": "Lake Darby", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.95728000", + "longitude": "-83.22880000" + }, + { + "id": "141434", + "name": "Lake Lakengren", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.68843000", + "longitude": "-84.69347000" + }, + { + "id": "141435", + "name": "Lake Mohawk", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.66673000", + "longitude": "-81.19927000" + }, + { + "id": "141436", + "name": "Lakemore", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.02089000", + "longitude": "-81.43595000" + }, + { + "id": "141437", + "name": "Lakeview", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.48477000", + "longitude": "-83.92300000" + }, + { + "id": "141438", + "name": "Lakewood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.48199000", + "longitude": "-81.79819000" + }, + { + "id": "141439", + "name": "Lancaster", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.71368000", + "longitude": "-82.59933000" + }, + { + "id": "141440", + "name": "Landen", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.31200000", + "longitude": "-84.28299000" + }, + { + "id": "141441", + "name": "Lawrence County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.59847000", + "longitude": "-82.53675000" + }, + { + "id": "141442", + "name": "Leavittsburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.24783000", + "longitude": "-80.87703000" + }, + { + "id": "141443", + "name": "Lebanon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.43534000", + "longitude": "-84.20299000" + }, + { + "id": "141444", + "name": "Leesburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.34506000", + "longitude": "-83.55297000" + }, + { + "id": "141445", + "name": "Leetonia", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.87728000", + "longitude": "-80.75536000" + }, + { + "id": "141446", + "name": "Leipsic", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.09838000", + "longitude": "-83.98467000" + }, + { + "id": "141447", + "name": "Lewis Center", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.19840000", + "longitude": "-83.01018000" + }, + { + "id": "141448", + "name": "Lewisburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.84616000", + "longitude": "-84.53967000" + }, + { + "id": "141449", + "name": "Lexington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.67867000", + "longitude": "-82.58239000" + }, + { + "id": "141450", + "name": "Liberty Center", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.44338000", + "longitude": "-84.00883000" + }, + { + "id": "141451", + "name": "Licking County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.09161000", + "longitude": "-82.48315000" + }, + { + "id": "141452", + "name": "Lima", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.74255000", + "longitude": "-84.10523000" + }, + { + "id": "141453", + "name": "Lincoln Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.23895000", + "longitude": "-84.45550000" + }, + { + "id": "141454", + "name": "Lincoln Village", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.95479000", + "longitude": "-83.13074000" + }, + { + "id": "141455", + "name": "Lisbon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.86089000", + "longitude": "-83.63520000" + }, + { + "id": "141456", + "name": "Lithopolis", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.80284000", + "longitude": "-82.80628000" + }, + { + "id": "141457", + "name": "Lockland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.22922000", + "longitude": "-84.45772000" + }, + { + "id": "141458", + "name": "Lodi", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.03339000", + "longitude": "-82.01209000" + }, + { + "id": "141459", + "name": "Logan", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.54007000", + "longitude": "-82.40710000" + }, + { + "id": "141460", + "name": "Logan County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.38845000", + "longitude": "-83.76587000" + }, + { + "id": "141461", + "name": "Logan Elm Village", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.56978000", + "longitude": "-82.95185000" + }, + { + "id": "141462", + "name": "London", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.88645000", + "longitude": "-83.44825000" + }, + { + "id": "141463", + "name": "Lorain", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.45282000", + "longitude": "-82.18237000" + }, + { + "id": "141464", + "name": "Lorain County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.45252000", + "longitude": "-82.15147000" + }, + { + "id": "141465", + "name": "Lordstown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.16561000", + "longitude": "-80.85758000" + }, + { + "id": "141466", + "name": "Loudonville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.63534000", + "longitude": "-82.23321000" + }, + { + "id": "141467", + "name": "Louisville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.83728000", + "longitude": "-81.25955000" + }, + { + "id": "141468", + "name": "Loveland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.26895000", + "longitude": "-84.26383000" + }, + { + "id": "141469", + "name": "Loveland Park", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.29978000", + "longitude": "-84.26327000" + }, + { + "id": "141470", + "name": "Lowellville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.03534000", + "longitude": "-80.53646000" + }, + { + "id": "141471", + "name": "Lucas County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.68419000", + "longitude": "-83.46826000" + }, + { + "id": "141472", + "name": "Lucasville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.87952000", + "longitude": "-82.99684000" + }, + { + "id": "141473", + "name": "Luckey", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.45061000", + "longitude": "-83.48743000" + }, + { + "id": "141474", + "name": "Lynchburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.24173000", + "longitude": "-83.79131000" + }, + { + "id": "141475", + "name": "Lyndhurst", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.52005000", + "longitude": "-81.48873000" + }, + { + "id": "141476", + "name": "Macedonia", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.31367000", + "longitude": "-81.50845000" + }, + { + "id": "141477", + "name": "Mack", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.15811000", + "longitude": "-84.64967000" + }, + { + "id": "141478", + "name": "Madeira", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.19089000", + "longitude": "-84.36355000" + }, + { + "id": "141479", + "name": "Madison", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.77116000", + "longitude": "-81.04982000" + }, + { + "id": "141480", + "name": "Madison County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.89403000", + "longitude": "-83.40020000" + }, + { + "id": "141481", + "name": "Mahoning County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.01464000", + "longitude": "-80.77629000" + }, + { + "id": "141482", + "name": "Malvern", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.69173000", + "longitude": "-81.18121000" + }, + { + "id": "141483", + "name": "Manchester", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.68813000", + "longitude": "-83.60936000" + }, + { + "id": "141484", + "name": "Mansfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.75839000", + "longitude": "-82.51545000" + }, + { + "id": "141485", + "name": "Mantua", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.28394000", + "longitude": "-81.22399000" + }, + { + "id": "141486", + "name": "Maple Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.41533000", + "longitude": "-81.56596000" + }, + { + "id": "141487", + "name": "Mariemont", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.14506000", + "longitude": "-84.37438000" + }, + { + "id": "141488", + "name": "Marietta", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.41535000", + "longitude": "-81.45484000" + }, + { + "id": "141489", + "name": "Marion", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.58867000", + "longitude": "-83.12852000" + }, + { + "id": "141490", + "name": "Marion County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.58719000", + "longitude": "-83.16087000" + }, + { + "id": "141491", + "name": "Martins Ferry", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.09591000", + "longitude": "-80.72453000" + }, + { + "id": "141492", + "name": "Marysville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.23645000", + "longitude": "-83.36714000" + }, + { + "id": "141493", + "name": "Mason", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.36006000", + "longitude": "-84.30994000" + }, + { + "id": "141494", + "name": "Massillon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.79672000", + "longitude": "-81.52151000" + }, + { + "id": "141495", + "name": "Masury", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.21117000", + "longitude": "-80.53785000" + }, + { + "id": "141496", + "name": "Maumee", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.56283000", + "longitude": "-83.65382000" + }, + { + "id": "141497", + "name": "Mayfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.55200000", + "longitude": "-81.43928000" + }, + { + "id": "141498", + "name": "Mayfield Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.51922000", + "longitude": "-81.45790000" + }, + { + "id": "141499", + "name": "McArthur", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.24646000", + "longitude": "-82.47849000" + }, + { + "id": "141500", + "name": "McComb", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.10755000", + "longitude": "-83.79271000" + }, + { + "id": "141501", + "name": "McConnelsville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.64868000", + "longitude": "-81.85319000" + }, + { + "id": "141502", + "name": "McDonald", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.16367000", + "longitude": "-80.72424000" + }, + { + "id": "141503", + "name": "McKinley Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.18367000", + "longitude": "-80.71730000" + }, + { + "id": "141504", + "name": "Mechanicsburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.07200000", + "longitude": "-83.55631000" + }, + { + "id": "141505", + "name": "Medina", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.13839000", + "longitude": "-81.86375000" + }, + { + "id": "141506", + "name": "Medina County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.11759000", + "longitude": "-81.89971000" + }, + { + "id": "141507", + "name": "Meigs County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.08224000", + "longitude": "-82.02290000" + }, + { + "id": "141508", + "name": "Mentor", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.66616000", + "longitude": "-81.33955000" + }, + { + "id": "141509", + "name": "Mentor-on-the-Lake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.70504000", + "longitude": "-81.36039000" + }, + { + "id": "141510", + "name": "Mercer County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.54001000", + "longitude": "-84.62936000" + }, + { + "id": "141511", + "name": "Miami County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.05345000", + "longitude": "-84.22885000" + }, + { + "id": "141512", + "name": "Miami Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.16506000", + "longitude": "-84.72050000" + }, + { + "id": "141513", + "name": "Miamisburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.64284000", + "longitude": "-84.28661000" + }, + { + "id": "141514", + "name": "Miamitown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.21589000", + "longitude": "-84.70411000" + }, + { + "id": "141515", + "name": "Middleburg Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.36144000", + "longitude": "-81.81291000" + }, + { + "id": "141516", + "name": "Middlefield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.46200000", + "longitude": "-81.07371000" + }, + { + "id": "141517", + "name": "Middleport", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.00175000", + "longitude": "-82.04875000" + }, + { + "id": "141518", + "name": "Middletown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.51506000", + "longitude": "-84.39828000" + }, + { + "id": "141519", + "name": "Milan", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.29755000", + "longitude": "-82.60545000" + }, + { + "id": "141520", + "name": "Milford", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.17534000", + "longitude": "-84.29438000" + }, + { + "id": "141521", + "name": "Millbury", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.56616000", + "longitude": "-83.42465000" + }, + { + "id": "141522", + "name": "Millersburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.55451000", + "longitude": "-81.91792000" + }, + { + "id": "141523", + "name": "Millersport", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.90006000", + "longitude": "-82.53405000" + }, + { + "id": "141524", + "name": "Mineral Ridge", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.14006000", + "longitude": "-80.76897000" + }, + { + "id": "141525", + "name": "Minerva", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.72978000", + "longitude": "-81.10538000" + }, + { + "id": "141526", + "name": "Minerva Park", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.07645000", + "longitude": "-82.94379000" + }, + { + "id": "141527", + "name": "Mingo Junction", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.32174000", + "longitude": "-80.60980000" + }, + { + "id": "141528", + "name": "Minster", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.39310000", + "longitude": "-84.37606000" + }, + { + "id": "141529", + "name": "Mogadore", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.04645000", + "longitude": "-81.39789000" + }, + { + "id": "141530", + "name": "Monfort Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.18839000", + "longitude": "-84.59522000" + }, + { + "id": "141531", + "name": "Monroe", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.44034000", + "longitude": "-84.36216000" + }, + { + "id": "141532", + "name": "Monroe County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.72735000", + "longitude": "-81.08292000" + }, + { + "id": "141533", + "name": "Monroeville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.24422000", + "longitude": "-82.69629000" + }, + { + "id": "141534", + "name": "Montgomery", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.22811000", + "longitude": "-84.35411000" + }, + { + "id": "141535", + "name": "Montgomery County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.75459000", + "longitude": "-84.29068000" + }, + { + "id": "141536", + "name": "Montpelier", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.58450000", + "longitude": "-84.60551000" + }, + { + "id": "141537", + "name": "Montrose-Ghent", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.15380000", + "longitude": "-81.64378000" + }, + { + "id": "141538", + "name": "Moraine", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.70617000", + "longitude": "-84.21938000" + }, + { + "id": "141539", + "name": "Moreland Hills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.44783000", + "longitude": "-81.42762000" + }, + { + "id": "141540", + "name": "Morgan County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.62037000", + "longitude": "-81.85266000" + }, + { + "id": "141541", + "name": "Morgandale", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.26561000", + "longitude": "-80.78286000" + }, + { + "id": "141542", + "name": "Morrow", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.35450000", + "longitude": "-84.12716000" + }, + { + "id": "141543", + "name": "Morrow County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.52409000", + "longitude": "-82.79407000" + }, + { + "id": "141544", + "name": "Mount Carmel", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.10589000", + "longitude": "-84.30410000" + }, + { + "id": "141545", + "name": "Mount Gilead", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.54923000", + "longitude": "-82.82740000" + }, + { + "id": "141546", + "name": "Mount Healthy", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.23367000", + "longitude": "-84.54578000" + }, + { + "id": "141547", + "name": "Mount Healthy Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.27033000", + "longitude": "-84.56800000" + }, + { + "id": "141548", + "name": "Mount Orab", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.02757000", + "longitude": "-83.91965000" + }, + { + "id": "141549", + "name": "Mount Repose", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.20062000", + "longitude": "-84.22438000" + }, + { + "id": "141550", + "name": "Mount Sterling", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.71951000", + "longitude": "-83.26519000" + }, + { + "id": "141551", + "name": "Mount Vernon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.39340000", + "longitude": "-82.48572000" + }, + { + "id": "141552", + "name": "Mulberry", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.19339000", + "longitude": "-84.24216000" + }, + { + "id": "141553", + "name": "Munroe Falls", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.14450000", + "longitude": "-81.43983000" + }, + { + "id": "141554", + "name": "Muskingum County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.96542000", + "longitude": "-81.94438000" + }, + { + "id": "141555", + "name": "Napoleon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.39227000", + "longitude": "-84.12522000" + }, + { + "id": "141556", + "name": "Navarre", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.72450000", + "longitude": "-81.52207000" + }, + { + "id": "141557", + "name": "Nelsonville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.45868000", + "longitude": "-82.23182000" + }, + { + "id": "141558", + "name": "New Albany", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.08117000", + "longitude": "-82.80879000" + }, + { + "id": "141559", + "name": "New Boston", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.75230000", + "longitude": "-82.93684000" + }, + { + "id": "141560", + "name": "New Bremen", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.43699000", + "longitude": "-84.37967000" + }, + { + "id": "141561", + "name": "New Burlington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.25950000", + "longitude": "-84.55717000" + }, + { + "id": "141562", + "name": "New California", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.15617000", + "longitude": "-83.23658000" + }, + { + "id": "141563", + "name": "New Carlisle", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.93617000", + "longitude": "-84.02549000" + }, + { + "id": "141564", + "name": "New Concord", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.99368000", + "longitude": "-81.73402000" + }, + { + "id": "141565", + "name": "New Franklin", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.94172000", + "longitude": "-81.54151000" + }, + { + "id": "141566", + "name": "New Lebanon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.74533000", + "longitude": "-84.38495000" + }, + { + "id": "141567", + "name": "New Lexington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.71396000", + "longitude": "-82.20848000" + }, + { + "id": "141568", + "name": "New London", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.08505000", + "longitude": "-82.39989000" + }, + { + "id": "141569", + "name": "New Matamoras", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.52452000", + "longitude": "-81.06705000" + }, + { + "id": "141570", + "name": "New Miami", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.43478000", + "longitude": "-84.53689000" + }, + { + "id": "141571", + "name": "New Middletown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.96117000", + "longitude": "-80.55757000" + }, + { + "id": "141572", + "name": "New Paris", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.85699000", + "longitude": "-84.79329000" + }, + { + "id": "141573", + "name": "New Philadelphia", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.48979000", + "longitude": "-81.44567000" + }, + { + "id": "141574", + "name": "New Richmond", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.94868000", + "longitude": "-84.27994000" + }, + { + "id": "141575", + "name": "New Vienna", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.32367000", + "longitude": "-83.69103000" + }, + { + "id": "141576", + "name": "New Waterford", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.84506000", + "longitude": "-80.61452000" + }, + { + "id": "141577", + "name": "Newark", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.05812000", + "longitude": "-82.40126000" + }, + { + "id": "141578", + "name": "Newburgh Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.45005000", + "longitude": "-81.66346000" + }, + { + "id": "141579", + "name": "Newcomerstown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.27229000", + "longitude": "-81.60595000" + }, + { + "id": "141580", + "name": "Newport", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.39091000", + "longitude": "-81.22678000" + }, + { + "id": "141581", + "name": "Newton Falls", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.18839000", + "longitude": "-80.97815000" + }, + { + "id": "141582", + "name": "Newtown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.12450000", + "longitude": "-84.36161000" + }, + { + "id": "141583", + "name": "Niles", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.18284000", + "longitude": "-80.76536000" + }, + { + "id": "141584", + "name": "Noble County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.76596000", + "longitude": "-81.45556000" + }, + { + "id": "141585", + "name": "North Baltimore", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.18283000", + "longitude": "-83.67827000" + }, + { + "id": "141586", + "name": "North Canton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.87589000", + "longitude": "-81.40234000" + }, + { + "id": "141587", + "name": "North College Hill", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.21839000", + "longitude": "-84.55078000" + }, + { + "id": "141588", + "name": "North Fork Village", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.33590000", + "longitude": "-83.02907000" + }, + { + "id": "141589", + "name": "North Kingsville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.90589000", + "longitude": "-80.69036000" + }, + { + "id": "141590", + "name": "North Lewisburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.22311000", + "longitude": "-83.55743000" + }, + { + "id": "141591", + "name": "North Madison", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.80200000", + "longitude": "-81.04899000" + }, + { + "id": "141592", + "name": "North Olmsted", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.41560000", + "longitude": "-81.92347000" + }, + { + "id": "141593", + "name": "North Randall", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.43478000", + "longitude": "-81.52568000" + }, + { + "id": "141594", + "name": "North Ridgeville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.38949000", + "longitude": "-82.01903000" + }, + { + "id": "141595", + "name": "North Royalton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.31366000", + "longitude": "-81.72457000" + }, + { + "id": "141596", + "name": "North Zanesville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.97868000", + "longitude": "-82.00347000" + }, + { + "id": "141597", + "name": "Northbrook", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.24645000", + "longitude": "-84.58356000" + }, + { + "id": "141598", + "name": "Northfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.34505000", + "longitude": "-81.52845000" + }, + { + "id": "141599", + "name": "Northgate", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.25283000", + "longitude": "-84.59245000" + }, + { + "id": "141600", + "name": "Northridge", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.80756000", + "longitude": "-84.19689000" + }, + { + "id": "141601", + "name": "Northwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.47283000", + "longitude": "-83.73243000" + }, + { + "id": "141602", + "name": "Norton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.02922000", + "longitude": "-81.63818000" + }, + { + "id": "141603", + "name": "Norwalk", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.24255000", + "longitude": "-82.61573000" + }, + { + "id": "141604", + "name": "Norwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.15561000", + "longitude": "-84.45966000" + }, + { + "id": "141605", + "name": "Oak Harbor", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.50672000", + "longitude": "-83.14659000" + }, + { + "id": "141606", + "name": "Oak Hill", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.89396000", + "longitude": "-82.57349000" + }, + { + "id": "141607", + "name": "Oakwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.72534000", + "longitude": "-84.17411000" + }, + { + "id": "141608", + "name": "Oberlin", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.29394000", + "longitude": "-82.21738000" + }, + { + "id": "141609", + "name": "Obetz", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.87895000", + "longitude": "-82.95074000" + }, + { + "id": "141610", + "name": "Olmsted Falls", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.37505000", + "longitude": "-81.90819000" + }, + { + "id": "141611", + "name": "Ontario", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.75950000", + "longitude": "-82.59017000" + }, + { + "id": "141612", + "name": "Orange", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.44978000", + "longitude": "-81.48067000" + }, + { + "id": "141613", + "name": "Oregon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.64366000", + "longitude": "-83.48688000" + }, + { + "id": "141614", + "name": "Orrville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.84367000", + "longitude": "-81.76402000" + }, + { + "id": "141615", + "name": "Orwell", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.53506000", + "longitude": "-80.86814000" + }, + { + "id": "141616", + "name": "Ottawa", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.01922000", + "longitude": "-84.04717000" + }, + { + "id": "141617", + "name": "Ottawa County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.49675000", + "longitude": "-82.94128000" + }, + { + "id": "141618", + "name": "Ottawa Hills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.66422000", + "longitude": "-83.64327000" + }, + { + "id": "141619", + "name": "Oxford", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.50700000", + "longitude": "-84.74523000" + }, + { + "id": "141620", + "name": "Painesville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.72449000", + "longitude": "-81.24566000" + }, + { + "id": "141621", + "name": "Pandora", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.94811000", + "longitude": "-83.96105000" + }, + { + "id": "141622", + "name": "Park Layne", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.88645000", + "longitude": "-84.03966000" + }, + { + "id": "141623", + "name": "Parma", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.40477000", + "longitude": "-81.72291000" + }, + { + "id": "141624", + "name": "Parma Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.39005000", + "longitude": "-81.75958000" + }, + { + "id": "141625", + "name": "Pataskala", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.99562000", + "longitude": "-82.67433000" + }, + { + "id": "141626", + "name": "Paulding", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.13811000", + "longitude": "-84.58051000" + }, + { + "id": "141627", + "name": "Paulding County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.11662000", + "longitude": "-84.58020000" + }, + { + "id": "141628", + "name": "Payne", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.07755000", + "longitude": "-84.72718000" + }, + { + "id": "141629", + "name": "Peebles", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.94896000", + "longitude": "-83.40575000" + }, + { + "id": "141630", + "name": "Pemberville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.41089000", + "longitude": "-83.46104000" + }, + { + "id": "141631", + "name": "Pepper Pike", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.47839000", + "longitude": "-81.46373000" + }, + { + "id": "141632", + "name": "Perry", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.76033000", + "longitude": "-81.14093000" + }, + { + "id": "141633", + "name": "Perry County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.73715000", + "longitude": "-82.23614000" + }, + { + "id": "141634", + "name": "Perry Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.79534000", + "longitude": "-81.47345000" + }, + { + "id": "141635", + "name": "Perrysburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.55700000", + "longitude": "-83.62716000" + }, + { + "id": "141636", + "name": "Pickaway County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.64194000", + "longitude": "-83.02439000" + }, + { + "id": "141637", + "name": "Pickerington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.88423000", + "longitude": "-82.75350000" + }, + { + "id": "141638", + "name": "Pike County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.07737000", + "longitude": "-83.06685000" + }, + { + "id": "141639", + "name": "Piketon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.06813000", + "longitude": "-83.01434000" + }, + { + "id": "141640", + "name": "Pioneer", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.68005000", + "longitude": "-84.55301000" + }, + { + "id": "141641", + "name": "Piqua", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.14477000", + "longitude": "-84.24244000" + }, + { + "id": "141642", + "name": "Plain City", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.10756000", + "longitude": "-83.26742000" + }, + { + "id": "141643", + "name": "Pleasant Grove", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.95201000", + "longitude": "-81.95902000" + }, + { + "id": "141644", + "name": "Pleasant Hill", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.05172000", + "longitude": "-84.34439000" + }, + { + "id": "141645", + "name": "Pleasant Run", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.29978000", + "longitude": "-84.56356000" + }, + { + "id": "141646", + "name": "Pleasant Run Farm", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.30311000", + "longitude": "-84.54800000" + }, + { + "id": "141647", + "name": "Plymouth", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.99561000", + "longitude": "-82.66712000" + }, + { + "id": "141648", + "name": "Poland", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.02423000", + "longitude": "-80.61480000" + }, + { + "id": "141649", + "name": "Pomeroy", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.02758000", + "longitude": "-82.03375000" + }, + { + "id": "141650", + "name": "Port Clinton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.51200000", + "longitude": "-82.93769000" + }, + { + "id": "141651", + "name": "Portage County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.16768000", + "longitude": "-81.19740000" + }, + { + "id": "141652", + "name": "Portage Lakes", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.00728000", + "longitude": "-81.52706000" + }, + { + "id": "141653", + "name": "Portsmouth", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.73174000", + "longitude": "-82.99767000" + }, + { + "id": "141654", + "name": "Powell", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.15784000", + "longitude": "-83.07519000" + }, + { + "id": "141655", + "name": "Powhatan Point", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.86008000", + "longitude": "-80.81537000" + }, + { + "id": "141656", + "name": "Preble County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.74157000", + "longitude": "-84.64802000" + }, + { + "id": "141657", + "name": "Prospect", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.45034000", + "longitude": "-83.18853000" + }, + { + "id": "141658", + "name": "Putnam County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.02208000", + "longitude": "-84.13173000" + }, + { + "id": "141659", + "name": "Ravenna", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.15756000", + "longitude": "-81.24205000" + }, + { + "id": "141660", + "name": "Reading", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.22367000", + "longitude": "-84.44216000" + }, + { + "id": "141661", + "name": "Reminderville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.34589000", + "longitude": "-81.39511000" + }, + { + "id": "141662", + "name": "Reno", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.37285000", + "longitude": "-81.39567000" + }, + { + "id": "141663", + "name": "Reynoldsburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.95479000", + "longitude": "-82.81212000" + }, + { + "id": "141664", + "name": "Richfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.23978000", + "longitude": "-81.63818000" + }, + { + "id": "141665", + "name": "Richland County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.77468000", + "longitude": "-82.53648000" + }, + { + "id": "141666", + "name": "Richmond Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.55283000", + "longitude": "-81.51012000" + }, + { + "id": "141667", + "name": "Richville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.75117000", + "longitude": "-81.47790000" + }, + { + "id": "141668", + "name": "Richwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.42645000", + "longitude": "-83.29686000" + }, + { + "id": "141669", + "name": "Ripley", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.74563000", + "longitude": "-83.84492000" + }, + { + "id": "141670", + "name": "Rittman", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.97811000", + "longitude": "-81.78208000" + }, + { + "id": "141671", + "name": "Riverside", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.77978000", + "longitude": "-84.12410000" + }, + { + "id": "141672", + "name": "Roaming Shores", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.64311000", + "longitude": "-80.82342000" + }, + { + "id": "141673", + "name": "Rockford", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.68783000", + "longitude": "-84.64663000" + }, + { + "id": "141674", + "name": "Rocky River", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.47560000", + "longitude": "-81.83930000" + }, + { + "id": "141675", + "name": "Rosemount", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.78619000", + "longitude": "-82.97906000" + }, + { + "id": "141676", + "name": "Roseville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.80729000", + "longitude": "-82.07125000" + }, + { + "id": "141677", + "name": "Ross", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.31228000", + "longitude": "-84.65050000" + }, + { + "id": "141678", + "name": "Ross County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.33763000", + "longitude": "-83.05703000" + }, + { + "id": "141679", + "name": "Rossford", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.60977000", + "longitude": "-83.56438000" + }, + { + "id": "141680", + "name": "Rossmoyne", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.21367000", + "longitude": "-84.38688000" + }, + { + "id": "141681", + "name": "Russells Point", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.47116000", + "longitude": "-83.89272000" + }, + { + "id": "141682", + "name": "Sabina", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.48867000", + "longitude": "-83.63687000" + }, + { + "id": "141683", + "name": "Saint Bernard", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.16700000", + "longitude": "-84.49855000" + }, + { + "id": "141684", + "name": "Saint Clairsville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.08063000", + "longitude": "-80.90009000" + }, + { + "id": "141685", + "name": "Saint Henry", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.41755000", + "longitude": "-84.63968000" + }, + { + "id": "141686", + "name": "Saint Marys", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.54227000", + "longitude": "-84.38940000" + }, + { + "id": "141687", + "name": "Saint Paris", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.12839000", + "longitude": "-83.95966000" + }, + { + "id": "141688", + "name": "Salem", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.90089000", + "longitude": "-80.85675000" + }, + { + "id": "141689", + "name": "Salem Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.07173000", + "longitude": "-84.37827000" + }, + { + "id": "141690", + "name": "Salineville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.62256000", + "longitude": "-80.83786000" + }, + { + "id": "141691", + "name": "Sandusky", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.44894000", + "longitude": "-82.70796000" + }, + { + "id": "141692", + "name": "Sandusky County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.35742000", + "longitude": "-83.14391000" + }, + { + "id": "141693", + "name": "Sawyerwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.03783000", + "longitude": "-81.44095000" + }, + { + "id": "141694", + "name": "Scioto County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.80396000", + "longitude": "-82.99283000" + }, + { + "id": "141695", + "name": "Sciotodale", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.75480000", + "longitude": "-82.86878000" + }, + { + "id": "141696", + "name": "Sebring", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.92284000", + "longitude": "-81.01898000" + }, + { + "id": "141697", + "name": "Seneca County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.12388000", + "longitude": "-83.12771000" + }, + { + "id": "141698", + "name": "Seven Hills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.39533000", + "longitude": "-81.67624000" + }, + { + "id": "141699", + "name": "Seville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.01006000", + "longitude": "-81.86236000" + }, + { + "id": "141700", + "name": "Shadyside", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.97091000", + "longitude": "-80.75064000" + }, + { + "id": "141701", + "name": "Shaker Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.47394000", + "longitude": "-81.53707000" + }, + { + "id": "141702", + "name": "Sharonville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.26811000", + "longitude": "-84.41327000" + }, + { + "id": "141703", + "name": "Shawnee Hills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.65284000", + "longitude": "-83.78687000" + }, + { + "id": "141704", + "name": "Sheffield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.42115000", + "longitude": "-82.09626000" + }, + { + "id": "141705", + "name": "Sheffield Lake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.48754000", + "longitude": "-82.10154000" + }, + { + "id": "141706", + "name": "Shelby", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.88145000", + "longitude": "-82.66184000" + }, + { + "id": "141707", + "name": "Shelby County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.33153000", + "longitude": "-84.20473000" + }, + { + "id": "141708", + "name": "Sherwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.08478000", + "longitude": "-84.36077000" + }, + { + "id": "141709", + "name": "Shiloh", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.81867000", + "longitude": "-84.22855000" + }, + { + "id": "141710", + "name": "Shreve", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.68145000", + "longitude": "-82.02181000" + }, + { + "id": "141711", + "name": "Sidney", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.28422000", + "longitude": "-84.15550000" + }, + { + "id": "141712", + "name": "Silver Lake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.15895000", + "longitude": "-81.45428000" + }, + { + "id": "141713", + "name": "Silverton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.19284000", + "longitude": "-84.40050000" + }, + { + "id": "141714", + "name": "Sixteen Mile Stand", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.27284000", + "longitude": "-84.32744000" + }, + { + "id": "141715", + "name": "Skyline Acres", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.22867000", + "longitude": "-84.56689000" + }, + { + "id": "141716", + "name": "Smithville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.86228000", + "longitude": "-81.86180000" + }, + { + "id": "141717", + "name": "Solon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.38978000", + "longitude": "-81.44123000" + }, + { + "id": "141718", + "name": "Somerset", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.80701000", + "longitude": "-82.29709000" + }, + { + "id": "141719", + "name": "South Amherst", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.35588000", + "longitude": "-82.25377000" + }, + { + "id": "141720", + "name": "South Bloomfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.71840000", + "longitude": "-82.98685000" + }, + { + "id": "141721", + "name": "South Canal", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.17728000", + "longitude": "-80.98676000" + }, + { + "id": "141722", + "name": "South Charleston", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.82534000", + "longitude": "-83.63437000" + }, + { + "id": "141723", + "name": "South Euclid", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.52311000", + "longitude": "-81.51846000" + }, + { + "id": "141724", + "name": "South Lebanon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.37089000", + "longitude": "-84.21327000" + }, + { + "id": "141725", + "name": "South Point", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.41786000", + "longitude": "-82.58627000" + }, + { + "id": "141726", + "name": "South Russell", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.43144000", + "longitude": "-81.36539000" + }, + { + "id": "141727", + "name": "South Zanesville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.89923000", + "longitude": "-82.00625000" + }, + { + "id": "141728", + "name": "Spencerville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.70894000", + "longitude": "-84.35356000" + }, + { + "id": "141729", + "name": "Springboro", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.55228000", + "longitude": "-84.23327000" + }, + { + "id": "141730", + "name": "Springdale", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.28700000", + "longitude": "-84.48522000" + }, + { + "id": "141731", + "name": "Springfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.92423000", + "longitude": "-83.80882000" + }, + { + "id": "141732", + "name": "Stark County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.81389000", + "longitude": "-81.36564000" + }, + { + "id": "141733", + "name": "Steubenville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.36979000", + "longitude": "-80.63396000" + }, + { + "id": "141734", + "name": "Stony Prairie", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.35144000", + "longitude": "-83.15520000" + }, + { + "id": "141735", + "name": "Stow", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.15950000", + "longitude": "-81.44039000" + }, + { + "id": "141736", + "name": "Strasburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.59478000", + "longitude": "-81.52679000" + }, + { + "id": "141737", + "name": "Streetsboro", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.23922000", + "longitude": "-81.34594000" + }, + { + "id": "141738", + "name": "Strongsville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.31450000", + "longitude": "-81.83569000" + }, + { + "id": "141739", + "name": "Struthers", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.05256000", + "longitude": "-80.60785000" + }, + { + "id": "141740", + "name": "Stryker", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.50366000", + "longitude": "-84.41412000" + }, + { + "id": "141741", + "name": "Sugarcreek", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.50312000", + "longitude": "-81.64096000" + }, + { + "id": "141742", + "name": "Sugarcreek Police Dept", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.50253000", + "longitude": "-81.64176000" + }, + { + "id": "141743", + "name": "Summerside", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.10478000", + "longitude": "-84.28827000" + }, + { + "id": "141744", + "name": "Summit County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.12598000", + "longitude": "-81.53217000" + }, + { + "id": "141745", + "name": "Sunbury", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.24256000", + "longitude": "-82.85907000" + }, + { + "id": "141746", + "name": "Swanton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.58866000", + "longitude": "-83.89105000" + }, + { + "id": "141747", + "name": "Sylvania", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.71894000", + "longitude": "-83.71299000" + }, + { + "id": "141748", + "name": "Tallmadge", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.10145000", + "longitude": "-81.44178000" + }, + { + "id": "141749", + "name": "Terrace Park", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.15923000", + "longitude": "-84.30716000" + }, + { + "id": "141750", + "name": "The Plains", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.36896000", + "longitude": "-82.13237000" + }, + { + "id": "141751", + "name": "The Village of Indian Hill", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.17949000", + "longitude": "-84.33517000" + }, + { + "id": "141752", + "name": "Thornport", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.91312000", + "longitude": "-82.41099000" + }, + { + "id": "141753", + "name": "Tiffin", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.11450000", + "longitude": "-83.17797000" + }, + { + "id": "141754", + "name": "Tiltonsville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.16674000", + "longitude": "-80.69980000" + }, + { + "id": "141755", + "name": "Tipp City", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.95839000", + "longitude": "-84.17216000" + }, + { + "id": "141756", + "name": "Toledo", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.66394000", + "longitude": "-83.55521000" + }, + { + "id": "141757", + "name": "Toronto", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.46423000", + "longitude": "-80.60091000" + }, + { + "id": "141758", + "name": "Trenton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.48089000", + "longitude": "-84.45772000" + }, + { + "id": "141759", + "name": "Trotwood", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.79728000", + "longitude": "-84.31133000" + }, + { + "id": "141760", + "name": "Troy", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.03950000", + "longitude": "-84.20328000" + }, + { + "id": "141761", + "name": "Trumbull County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.31717000", + "longitude": "-80.76116000" + }, + { + "id": "141762", + "name": "Turpin Hills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.11006000", + "longitude": "-84.37994000" + }, + { + "id": "141763", + "name": "Tuscarawas", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.39479000", + "longitude": "-81.40706000" + }, + { + "id": "141764", + "name": "Tuscarawas County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.44096000", + "longitude": "-81.47377000" + }, + { + "id": "141765", + "name": "Twinsburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.31256000", + "longitude": "-81.44011000" + }, + { + "id": "141766", + "name": "Uhrichsville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.39312000", + "longitude": "-81.34650000" + }, + { + "id": "141767", + "name": "Union", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.89783000", + "longitude": "-84.30633000" + }, + { + "id": "141768", + "name": "Union City", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.19938000", + "longitude": "-84.80353000" + }, + { + "id": "141769", + "name": "Union County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.29940000", + "longitude": "-83.37158000" + }, + { + "id": "141770", + "name": "Uniontown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.97506000", + "longitude": "-81.40817000" + }, + { + "id": "141771", + "name": "University Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.49783000", + "longitude": "-81.53735000" + }, + { + "id": "141772", + "name": "Upper Arlington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.99451000", + "longitude": "-83.06241000" + }, + { + "id": "141773", + "name": "Upper Sandusky", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.82728000", + "longitude": "-83.28131000" + }, + { + "id": "141774", + "name": "Urbana", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.10839000", + "longitude": "-83.75243000" + }, + { + "id": "141775", + "name": "Urbancrest", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.89756000", + "longitude": "-83.08685000" + }, + { + "id": "141776", + "name": "Utica", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.23423000", + "longitude": "-82.45127000" + }, + { + "id": "141777", + "name": "Valley View", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.38783000", + "longitude": "-81.60457000" + }, + { + "id": "141778", + "name": "Van Wert", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.86949000", + "longitude": "-84.58412000" + }, + { + "id": "141779", + "name": "Van Wert County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.85540000", + "longitude": "-84.58610000" + }, + { + "id": "141780", + "name": "Vandalia", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.89061000", + "longitude": "-84.19883000" + }, + { + "id": "141781", + "name": "Vermilion", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.42199000", + "longitude": "-82.36461000" + }, + { + "id": "141782", + "name": "Vermilion-on-the-Lake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.42838000", + "longitude": "-82.32377000" + }, + { + "id": "141783", + "name": "Versailles", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.22255000", + "longitude": "-84.48440000" + }, + { + "id": "141784", + "name": "Vinton County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.25099000", + "longitude": "-82.48535000" + }, + { + "id": "141785", + "name": "Wadsworth", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.02561000", + "longitude": "-81.72985000" + }, + { + "id": "141786", + "name": "Wakeman", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.25450000", + "longitude": "-82.39961000" + }, + { + "id": "141787", + "name": "Walbridge", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.58783000", + "longitude": "-83.49327000" + }, + { + "id": "141788", + "name": "Walton Hills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.36561000", + "longitude": "-81.56123000" + }, + { + "id": "141789", + "name": "Wapakoneta", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.56783000", + "longitude": "-84.19356000" + }, + { + "id": "141790", + "name": "Warren", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.23756000", + "longitude": "-80.81842000" + }, + { + "id": "141791", + "name": "Warren County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.42758000", + "longitude": "-84.16676000" + }, + { + "id": "141792", + "name": "Warrensville Heights", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.43505000", + "longitude": "-81.53623000" + }, + { + "id": "141793", + "name": "Washington County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.45532000", + "longitude": "-81.49525000" + }, + { + "id": "141794", + "name": "Washington Court House", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.53645000", + "longitude": "-83.43908000" + }, + { + "id": "141795", + "name": "Waterville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.50089000", + "longitude": "-83.71827000" + }, + { + "id": "141796", + "name": "Wauseon", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.54922000", + "longitude": "-84.14161000" + }, + { + "id": "141797", + "name": "Waverly", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.12673000", + "longitude": "-82.98546000" + }, + { + "id": "141798", + "name": "Wayne County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.82887000", + "longitude": "-81.88803000" + }, + { + "id": "141799", + "name": "Waynesville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.52978000", + "longitude": "-84.08660000" + }, + { + "id": "141800", + "name": "Wellington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.16894000", + "longitude": "-82.21794000" + }, + { + "id": "141801", + "name": "Wellston", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.12341000", + "longitude": "-82.53294000" + }, + { + "id": "141802", + "name": "Wellsville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.60284000", + "longitude": "-80.64896000" + }, + { + "id": "141803", + "name": "West Alexandria", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.74450000", + "longitude": "-84.53217000" + }, + { + "id": "141804", + "name": "West Carrollton City", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.67228000", + "longitude": "-84.25216000" + }, + { + "id": "141805", + "name": "West Hill", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.23283000", + "longitude": "-80.51924000" + }, + { + "id": "141806", + "name": "West Jefferson", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.94478000", + "longitude": "-83.26880000" + }, + { + "id": "141807", + "name": "West Lafayette", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.27535000", + "longitude": "-81.75096000" + }, + { + "id": "141808", + "name": "West Liberty", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.25228000", + "longitude": "-83.75577000" + }, + { + "id": "141809", + "name": "West Milton", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.96255000", + "longitude": "-84.32800000" + }, + { + "id": "141810", + "name": "West Portsmouth", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.75841000", + "longitude": "-83.02906000" + }, + { + "id": "141811", + "name": "West Salem", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.97144000", + "longitude": "-82.10987000" + }, + { + "id": "141812", + "name": "West Union", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.79452000", + "longitude": "-83.54519000" + }, + { + "id": "141813", + "name": "West Unity", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.58616000", + "longitude": "-84.43495000" + }, + { + "id": "141814", + "name": "Westerville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.12617000", + "longitude": "-82.92907000" + }, + { + "id": "141815", + "name": "Westfield Center", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.02644000", + "longitude": "-81.93320000" + }, + { + "id": "141816", + "name": "Westlake", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.45532000", + "longitude": "-81.91792000" + }, + { + "id": "141817", + "name": "Weston", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.34477000", + "longitude": "-83.79716000" + }, + { + "id": "141818", + "name": "Wetherington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.36367000", + "longitude": "-84.37744000" + }, + { + "id": "141819", + "name": "Wheelersburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.73035000", + "longitude": "-82.85545000" + }, + { + "id": "141820", + "name": "White Oak", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.21311000", + "longitude": "-84.59939000" + }, + { + "id": "141821", + "name": "Whitehall", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.96673000", + "longitude": "-82.88546000" + }, + { + "id": "141822", + "name": "Whitehouse", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.51894000", + "longitude": "-83.80383000" + }, + { + "id": "141823", + "name": "Wickliffe", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.60533000", + "longitude": "-81.45345000" + }, + { + "id": "141824", + "name": "Wilberforce", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.71617000", + "longitude": "-83.87771000" + }, + { + "id": "141825", + "name": "Willard", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.05311000", + "longitude": "-82.72629000" + }, + { + "id": "141826", + "name": "Williams County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.56029000", + "longitude": "-84.58814000" + }, + { + "id": "141827", + "name": "Williamsburg", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.05423000", + "longitude": "-84.05299000" + }, + { + "id": "141828", + "name": "Williamsport", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.58590000", + "longitude": "-83.12046000" + }, + { + "id": "141829", + "name": "Willoughby", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.63977000", + "longitude": "-81.40650000" + }, + { + "id": "141830", + "name": "Willoughby Hills", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.59838000", + "longitude": "-81.41845000" + }, + { + "id": "141831", + "name": "Willowick", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.63310000", + "longitude": "-81.46873000" + }, + { + "id": "141832", + "name": "Wilmington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.44534000", + "longitude": "-83.82854000" + }, + { + "id": "141833", + "name": "Winchester", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "38.94174000", + "longitude": "-83.65075000" + }, + { + "id": "141834", + "name": "Windham", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.23506000", + "longitude": "-81.04926000" + }, + { + "id": "141835", + "name": "Wintersville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.37535000", + "longitude": "-80.70369000" + }, + { + "id": "141836", + "name": "Withamsville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.06228000", + "longitude": "-84.28827000" + }, + { + "id": "141837", + "name": "Wolfhurst", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.06924000", + "longitude": "-80.78370000" + }, + { + "id": "141838", + "name": "Wood County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.36169000", + "longitude": "-83.62299000" + }, + { + "id": "141839", + "name": "Woodlawn", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.25200000", + "longitude": "-84.47022000" + }, + { + "id": "141840", + "name": "Woodsfield", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.76257000", + "longitude": "-81.11538000" + }, + { + "id": "141841", + "name": "Woodville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.45144000", + "longitude": "-83.36576000" + }, + { + "id": "141842", + "name": "Wooster", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.80517000", + "longitude": "-81.93646000" + }, + { + "id": "141843", + "name": "Worthington", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.09312000", + "longitude": "-83.01796000" + }, + { + "id": "141844", + "name": "Wright-Patterson AFB", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.81113000", + "longitude": "-84.05731000" + }, + { + "id": "141845", + "name": "Wyandot County", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.84237000", + "longitude": "-83.30437000" + }, + { + "id": "141846", + "name": "Wyoming", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.23117000", + "longitude": "-84.46578000" + }, + { + "id": "141847", + "name": "Xenia", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.68478000", + "longitude": "-83.92965000" + }, + { + "id": "141848", + "name": "Yellow Springs", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.80645000", + "longitude": "-83.88687000" + }, + { + "id": "141849", + "name": "Yorkville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "40.15452000", + "longitude": "-80.71036000" + }, + { + "id": "141850", + "name": "Youngstown", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "41.09978000", + "longitude": "-80.64952000" + }, + { + "id": "141851", + "name": "Zanesville", + "state_id": 4851, + "state_code": "OH", + "country_id": 233, + "country_code": "US", + "latitude": "39.94035000", + "longitude": "-82.01319000" + }, + { + "id": "111005", + "name": "Ada", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.77453000", + "longitude": "-96.67834000" + }, + { + "id": "111009", + "name": "Adair County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.88393000", + "longitude": "-94.65868000" + }, + { + "id": "111052", + "name": "Afton", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.69369000", + "longitude": "-94.96302000" + }, + { + "id": "111158", + "name": "Alfalfa County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.73098000", + "longitude": "-98.32400000" + }, + { + "id": "111252", + "name": "Altus", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.63813000", + "longitude": "-99.33398000" + }, + { + "id": "111256", + "name": "Alva", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.80499000", + "longitude": "-98.66718000" + }, + { + "id": "111298", + "name": "Anadarko", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.07256000", + "longitude": "-98.24366000" + }, + { + "id": "111374", + "name": "Antlers", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.23121000", + "longitude": "-95.62025000" + }, + { + "id": "111379", + "name": "Apache", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.89368000", + "longitude": "-98.36589000" + }, + { + "id": "111412", + "name": "Arapaho", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.57783000", + "longitude": "-98.96453000" + }, + { + "id": "111442", + "name": "Ardmore", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.17426000", + "longitude": "-97.14363000" + }, + { + "id": "111459", + "name": "Arkoma", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.35454000", + "longitude": "-94.43410000" + }, + { + "id": "111483", + "name": "Arnett", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.13504000", + "longitude": "-99.77484000" + }, + { + "id": "111603", + "name": "Atoka", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.38593000", + "longitude": "-96.12833000" + }, + { + "id": "111606", + "name": "Atoka County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.37372000", + "longitude": "-96.03783000" + }, + { + "id": "111833", + "name": "Barnsdall", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.56202000", + "longitude": "-96.16167000" + }, + { + "id": "111860", + "name": "Bartlesville", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.74731000", + "longitude": "-95.98082000" + }, + { + "id": "111994", + "name": "Beaver", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.81614000", + "longitude": "-100.51987000" + }, + { + "id": "111998", + "name": "Beaver County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.74971000", + "longitude": "-100.47678000" + }, + { + "id": "112016", + "name": "Beckham County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.26871000", + "longitude": "-99.68192000" + }, + { + "id": "112045", + "name": "Beggs", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.74260000", + "longitude": "-96.07027000" + }, + { + "id": "112273", + "name": "Bethany", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.51867000", + "longitude": "-97.63226000" + }, + { + "id": "112283", + "name": "Bethel Acres", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.30868000", + "longitude": "-97.02558000" + }, + { + "id": "112370", + "name": "Bixby", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.94204000", + "longitude": "-95.88332000" + }, + { + "id": "112396", + "name": "Blackwell", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.80448000", + "longitude": "-97.28282000" + }, + { + "id": "112405", + "name": "Blaine County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.87525000", + "longitude": "-98.43346000" + }, + { + "id": "112417", + "name": "Blanchard", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.13784000", + "longitude": "-97.65809000" + }, + { + "id": "112509", + "name": "Boise City", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.72947000", + "longitude": "-102.51324000" + }, + { + "id": "112513", + "name": "Boley", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.49341000", + "longitude": "-96.48362000" + }, + { + "id": "112702", + "name": "Bray", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.63786000", + "longitude": "-97.81753000" + }, + { + "id": "112816", + "name": "Bristow", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.83063000", + "longitude": "-96.39112000" + }, + { + "id": "112841", + "name": "Broken Arrow", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.05260000", + "longitude": "-95.79082000" + }, + { + "id": "112842", + "name": "Broken Bow", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.02928000", + "longitude": "-94.73910000" + }, + { + "id": "112961", + "name": "Bryan County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "33.96230000", + "longitude": "-96.25975000" + }, + { + "id": "113008", + "name": "Buffalo", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.83559000", + "longitude": "-99.63040000" + }, + { + "id": "113088", + "name": "Burns Flat", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.34894000", + "longitude": "-99.17036000" + }, + { + "id": "113104", + "name": "Bushyhead", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.46148000", + "longitude": "-95.49414000" + }, + { + "id": "113137", + "name": "Byng", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.86120000", + "longitude": "-96.66557000" + }, + { + "id": "113155", + "name": "Cache", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.62952000", + "longitude": "-98.62867000" + }, + { + "id": "113159", + "name": "Caddo", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.12676000", + "longitude": "-96.26332000" + }, + { + "id": "113160", + "name": "Caddo County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.17438000", + "longitude": "-98.37515000" + }, + { + "id": "113195", + "name": "Calera", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "33.93454000", + "longitude": "-96.42860000" + }, + { + "id": "113315", + "name": "Canadian County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.54244000", + "longitude": "-97.98238000" + }, + { + "id": "113425", + "name": "Carnegie", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.10367000", + "longitude": "-98.60367000" + }, + { + "id": "113482", + "name": "Carter County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.25086000", + "longitude": "-97.28579000" + }, + { + "id": "113576", + "name": "Catoosa", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.18899000", + "longitude": "-95.74582000" + }, + { + "id": "113677", + "name": "Central High", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.62313000", + "longitude": "-98.08976000" + }, + { + "id": "113729", + "name": "Chandler", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.70173000", + "longitude": "-96.88086000" + }, + { + "id": "113823", + "name": "Checotah", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.47010000", + "longitude": "-95.52304000" + }, + { + "id": "113830", + "name": "Chelsea", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.53565000", + "longitude": "-95.43247000" + }, + { + "id": "113847", + "name": "Cherokee", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.75447000", + "longitude": "-98.35674000" + }, + { + "id": "113853", + "name": "Cherokee County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.90663000", + "longitude": "-94.99966000" + }, + { + "id": "113925", + "name": "Cheyenne", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.61394000", + "longitude": "-99.67149000" + }, + { + "id": "113941", + "name": "Chickasha", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.05257000", + "longitude": "-97.93643000" + }, + { + "id": "113985", + "name": "Choctaw", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.49756000", + "longitude": "-97.26892000" + }, + { + "id": "113988", + "name": "Choctaw County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.02662000", + "longitude": "-95.55214000" + }, + { + "id": "113990", + "name": "Chouteau", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.18593000", + "longitude": "-95.34302000" + }, + { + "id": "114024", + "name": "Cimarron County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.74831000", + "longitude": "-102.51771000" + }, + { + "id": "114107", + "name": "Claremore", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.31260000", + "longitude": "-95.61609000" + }, + { + "id": "114237", + "name": "Cleora", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.57897000", + "longitude": "-94.97107000" + }, + { + "id": "114245", + "name": "Cleveland", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.31032000", + "longitude": "-96.46584000" + }, + { + "id": "114250", + "name": "Cleveland County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.20302000", + "longitude": "-97.32641000" + }, + { + "id": "114276", + "name": "Clinton", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.51561000", + "longitude": "-98.96731000" + }, + { + "id": "114328", + "name": "Coal County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.58819000", + "longitude": "-96.29786000" + }, + { + "id": "114336", + "name": "Coalgate", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.53815000", + "longitude": "-96.21861000" + }, + { + "id": "114378", + "name": "Colbert", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "33.85316000", + "longitude": "-96.50249000" + }, + { + "id": "114436", + "name": "Collinsville", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.36454000", + "longitude": "-95.83888000" + }, + { + "id": "114510", + "name": "Comanche", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.36897000", + "longitude": "-97.96392000" + }, + { + "id": "114513", + "name": "Comanche County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.66210000", + "longitude": "-98.47166000" + }, + { + "id": "114523", + "name": "Commerce", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.93340000", + "longitude": "-94.87301000" + }, + { + "id": "114615", + "name": "Copeland", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.65591000", + "longitude": "-94.82829000" + }, + { + "id": "114636", + "name": "Cordell", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.29061000", + "longitude": "-98.98841000" + }, + { + "id": "114697", + "name": "Cotton County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.29024000", + "longitude": "-98.37223000" + }, + { + "id": "114746", + "name": "Coweta", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.95177000", + "longitude": "-95.65081000" + }, + { + "id": "114757", + "name": "Craig County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.76176000", + "longitude": "-95.20850000" + }, + { + "id": "114789", + "name": "Creek County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.90268000", + "longitude": "-96.37094000" + }, + { + "id": "114794", + "name": "Crescent", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.95254000", + "longitude": "-97.59477000" + }, + { + "id": "114931", + "name": "Cushing", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.98506000", + "longitude": "-96.76697000" + }, + { + "id": "114935", + "name": "Custer County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.63886000", + "longitude": "-99.00150000" + }, + { + "id": "114959", + "name": "Cyril", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.89646000", + "longitude": "-98.20060000" + }, + { + "id": "115072", + "name": "Davis", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.50453000", + "longitude": "-97.11946000" + }, + { + "id": "115187", + "name": "Del City", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.44201000", + "longitude": "-97.44087000" + }, + { + "id": "115204", + "name": "Delaware County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.40820000", + "longitude": "-94.80265000" + }, + { + "id": "115302", + "name": "Dewey", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.79592000", + "longitude": "-95.93554000" + }, + { + "id": "115303", + "name": "Dewey County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.98766000", + "longitude": "-99.00789000" + }, + { + "id": "115330", + "name": "Dickson", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.18732000", + "longitude": "-96.98446000" + }, + { + "id": "115482", + "name": "Drumright", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.98840000", + "longitude": "-96.60113000" + }, + { + "id": "115521", + "name": "Duncan", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.50230000", + "longitude": "-97.95781000" + }, + { + "id": "115567", + "name": "Durant", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "33.99399000", + "longitude": "-96.37082000" + }, + { + "id": "115877", + "name": "Edmond", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.65283000", + "longitude": "-97.47810000" + }, + { + "id": "115935", + "name": "El Reno", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.53227000", + "longitude": "-97.95505000" + }, + { + "id": "115964", + "name": "Elgin", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.78035000", + "longitude": "-98.29227000" + }, + { + "id": "115983", + "name": "Elk City", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.41199000", + "longitude": "-99.40426000" + }, + { + "id": "116031", + "name": "Ellis County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.21836000", + "longitude": "-99.75460000" + }, + { + "id": "116138", + "name": "Enid", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.39559000", + "longitude": "-97.87839000" + }, + { + "id": "116163", + "name": "Erick", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.21533000", + "longitude": "-99.86649000" + }, + { + "id": "116225", + "name": "Eufaula", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.28722000", + "longitude": "-95.58250000" + }, + { + "id": "116302", + "name": "Fairfax", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.57366000", + "longitude": "-96.70420000" + }, + { + "id": "116329", + "name": "Fairland", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.75118000", + "longitude": "-94.84746000" + }, + { + "id": "116350", + "name": "Fairview", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.26892000", + "longitude": "-98.47980000" + }, + { + "id": "116565", + "name": "Fletcher", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.82312000", + "longitude": "-98.24422000" + }, + { + "id": "116665", + "name": "Forest Park", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.50423000", + "longitude": "-97.44615000" + }, + { + "id": "116713", + "name": "Fort Gibson", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.79760000", + "longitude": "-95.25052000" + }, + { + "id": "116886", + "name": "Frederick", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.39203000", + "longitude": "-99.01841000" + }, + { + "id": "117082", + "name": "Garfield County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.37906000", + "longitude": "-97.78272000" + }, + { + "id": "117104", + "name": "Garvin County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.70457000", + "longitude": "-97.30932000" + }, + { + "id": "117130", + "name": "Geary", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.63116000", + "longitude": "-98.31729000" + }, + { + "id": "117176", + "name": "Geronimo", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.48119000", + "longitude": "-98.38311000" + }, + { + "id": "117302", + "name": "Glenpool", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.95537000", + "longitude": "-96.00888000" + }, + { + "id": "117365", + "name": "Goldsby", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.14118000", + "longitude": "-97.47698000" + }, + { + "id": "117392", + "name": "Goodwell", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.59530000", + "longitude": "-101.63655000" + }, + { + "id": "117427", + "name": "Grady County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.01694000", + "longitude": "-97.88411000" + }, + { + "id": "117491", + "name": "Granite", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.96228000", + "longitude": "-99.38064000" + }, + { + "id": "117510", + "name": "Grant County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.79614000", + "longitude": "-97.78616000" + }, + { + "id": "117714", + "name": "Greer County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.93570000", + "longitude": "-99.56080000" + }, + { + "id": "117754", + "name": "Grove", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.59369000", + "longitude": "-94.76912000" + }, + { + "id": "117812", + "name": "Guthrie", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.87894000", + "longitude": "-97.42532000" + }, + { + "id": "117818", + "name": "Guymon", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.68280000", + "longitude": "-101.48155000" + }, + { + "id": "117867", + "name": "Hall Park", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.23701000", + "longitude": "-97.40642000" + }, + { + "id": "118028", + "name": "Harmon County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.74412000", + "longitude": "-99.84628000" + }, + { + "id": "118034", + "name": "Harper County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.78873000", + "longitude": "-99.66736000" + }, + { + "id": "118038", + "name": "Harrah", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.48951000", + "longitude": "-97.16364000" + }, + { + "id": "118103", + "name": "Hartshorne", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.84510000", + "longitude": "-95.55748000" + }, + { + "id": "118123", + "name": "Haskell", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.82038000", + "longitude": "-95.67415000" + }, + { + "id": "118125", + "name": "Haskell County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.22482000", + "longitude": "-95.11660000" + }, + { + "id": "118218", + "name": "Healdton", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.23315000", + "longitude": "-97.48780000" + }, + { + "id": "118226", + "name": "Heavener", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.88927000", + "longitude": "-94.60078000" + }, + { + "id": "118250", + "name": "Helena", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.54614000", + "longitude": "-98.27007000" + }, + { + "id": "118292", + "name": "Hennessey", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.10920000", + "longitude": "-97.89867000" + }, + { + "id": "118307", + "name": "Henryetta", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.43983000", + "longitude": "-95.98194000" + }, + { + "id": "118488", + "name": "Hinton", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.47144000", + "longitude": "-98.35562000" + }, + { + "id": "118496", + "name": "Hobart", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.02950000", + "longitude": "-99.09313000" + }, + { + "id": "118526", + "name": "Holdenville", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.08036000", + "longitude": "-96.39918000" + }, + { + "id": "118547", + "name": "Hollis", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.68839000", + "longitude": "-99.91205000" + }, + { + "id": "118609", + "name": "Hominy", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.41424000", + "longitude": "-96.39530000" + }, + { + "id": "118628", + "name": "Hooker", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.86003000", + "longitude": "-101.21350000" + }, + { + "id": "118758", + "name": "Hughes County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.04834000", + "longitude": "-96.25024000" + }, + { + "id": "118765", + "name": "Hugo", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.01066000", + "longitude": "-95.50968000" + }, + { + "id": "118868", + "name": "Idabel", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "33.89566000", + "longitude": "-94.82633000" + }, + { + "id": "118948", + "name": "Inola", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.15121000", + "longitude": "-95.50942000" + }, + { + "id": "119086", + "name": "Jackson County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.58797000", + "longitude": "-99.41476000" + }, + { + "id": "119153", + "name": "Jay", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.42119000", + "longitude": "-94.79690000" + }, + { + "id": "119185", + "name": "Jefferson County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.11101000", + "longitude": "-97.83585000" + }, + { + "id": "119217", + "name": "Jenks", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.02287000", + "longitude": "-95.96833000" + }, + { + "id": "119282", + "name": "Johnston County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.31649000", + "longitude": "-96.66066000" + }, + { + "id": "119291", + "name": "Jones", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.56589000", + "longitude": "-97.28698000" + }, + { + "id": "119344", + "name": "Justice", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.29287000", + "longitude": "-95.56664000" + }, + { + "id": "119401", + "name": "Kay County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.81801000", + "longitude": "-97.14392000" + }, + { + "id": "119430", + "name": "Kellyville", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.94370000", + "longitude": "-96.21361000" + }, + { + "id": "119503", + "name": "Kenwood", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.31453000", + "longitude": "-94.98579000" + }, + { + "id": "119553", + "name": "Kiefer", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.94482000", + "longitude": "-96.06528000" + }, + { + "id": "119592", + "name": "Kingfisher", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.86143000", + "longitude": "-97.93172000" + }, + { + "id": "119593", + "name": "Kingfisher County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.94539000", + "longitude": "-97.94211000" + }, + { + "id": "119622", + "name": "Kingston", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "33.99871000", + "longitude": "-96.71972000" + }, + { + "id": "119647", + "name": "Kiowa County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.91637000", + "longitude": "-98.98087000" + }, + { + "id": "119704", + "name": "Konawa", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.95953000", + "longitude": "-96.75280000" + }, + { + "id": "119715", + "name": "Krebs", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.92787000", + "longitude": "-95.71582000" + }, + { + "id": "120116", + "name": "Langston", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.94505000", + "longitude": "-97.25531000" + }, + { + "id": "120173", + "name": "Latimer County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.87606000", + "longitude": "-95.25042000" + }, + { + "id": "120218", + "name": "Laverne", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.70975000", + "longitude": "-99.89346000" + }, + { + "id": "120250", + "name": "Lawton", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.60869000", + "longitude": "-98.39033000" + }, + { + "id": "120259", + "name": "Le Flore County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.90030000", + "longitude": "-94.70339000" + }, + { + "id": "120445", + "name": "Lexington", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.01479000", + "longitude": "-97.33558000" + }, + { + "id": "120523", + "name": "Lincoln County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.70300000", + "longitude": "-96.88092000" + }, + { + "id": "120572", + "name": "Lindsay", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.83480000", + "longitude": "-97.60253000" + }, + { + "id": "120687", + "name": "Locust Grove", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.20009000", + "longitude": "-95.16774000" + }, + { + "id": "120698", + "name": "Logan County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.91934000", + "longitude": "-97.44332000" + }, + { + "id": "120726", + "name": "Lone Grove", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.17537000", + "longitude": "-97.26279000" + }, + { + "id": "120755", + "name": "Longtown", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.24538000", + "longitude": "-95.51276000" + }, + { + "id": "120820", + "name": "Love County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "33.94986000", + "longitude": "-97.24418000" + }, + { + "id": "120894", + "name": "Luther", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.66173000", + "longitude": "-97.19559000" + }, + { + "id": "120983", + "name": "Madill", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.09038000", + "longitude": "-96.77167000" + }, + { + "id": "121053", + "name": "Major County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.31164000", + "longitude": "-98.53595000" + }, + { + "id": "121110", + "name": "Mangum", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.87200000", + "longitude": "-99.50426000" + }, + { + "id": "121133", + "name": "Mannford", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.13341000", + "longitude": "-96.35446000" + }, + { + "id": "121217", + "name": "Marietta", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "33.93704000", + "longitude": "-97.11668000" + }, + { + "id": "121285", + "name": "Marlow", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.64813000", + "longitude": "-97.95809000" + }, + { + "id": "121314", + "name": "Marshall County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.02449000", + "longitude": "-96.76913000" + }, + { + "id": "121416", + "name": "Maud", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.13036000", + "longitude": "-96.77585000" + }, + { + "id": "121435", + "name": "Mayes County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.30188000", + "longitude": "-95.23085000" + }, + { + "id": "121452", + "name": "Maysville", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.81730000", + "longitude": "-97.40586000" + }, + { + "id": "121462", + "name": "McAlester", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.93343000", + "longitude": "-95.76971000" + }, + { + "id": "121469", + "name": "McClain County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.00934000", + "longitude": "-97.44430000" + }, + { + "id": "121481", + "name": "McCord", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.67847000", + "longitude": "-97.04000000" + }, + { + "id": "121490", + "name": "McCurtain County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.11529000", + "longitude": "-94.77133000" + }, + { + "id": "121514", + "name": "McIntosh County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.37366000", + "longitude": "-95.66684000" + }, + { + "id": "121536", + "name": "McLoud", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.43590000", + "longitude": "-97.09142000" + }, + { + "id": "121591", + "name": "Medford", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.80697000", + "longitude": "-97.73366000" + }, + { + "id": "121612", + "name": "Meeker", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.50340000", + "longitude": "-96.90280000" + }, + { + "id": "121691", + "name": "Meridian", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.42731000", + "longitude": "-97.97809000" + }, + { + "id": "121747", + "name": "Miami", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.87451000", + "longitude": "-94.87746000" + }, + { + "id": "121824", + "name": "Midwest City", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.44951000", + "longitude": "-97.39670000" + }, + { + "id": "121927", + "name": "Minco", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.31284000", + "longitude": "-97.94449000" + }, + { + "id": "122200", + "name": "Moore", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.33951000", + "longitude": "-97.48670000" + }, + { + "id": "122206", + "name": "Mooreland", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.43920000", + "longitude": "-99.20482000" + }, + { + "id": "122266", + "name": "Morris", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.60760000", + "longitude": "-95.86027000" + }, + { + "id": "122325", + "name": "Mounds", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.87648000", + "longitude": "-96.06111000" + }, + { + "id": "122456", + "name": "Muldrow", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.40620000", + "longitude": "-94.59883000" + }, + { + "id": "122494", + "name": "Murray County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.48233000", + "longitude": "-97.06792000" + }, + { + "id": "122512", + "name": "Muskogee", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.74788000", + "longitude": "-95.36969000" + }, + { + "id": "122513", + "name": "Muskogee County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.61613000", + "longitude": "-95.37953000" + }, + { + "id": "122515", + "name": "Mustang", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.38423000", + "longitude": "-97.72449000" + }, + { + "id": "122820", + "name": "Newcastle", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.24729000", + "longitude": "-97.59976000" + }, + { + "id": "122832", + "name": "Newkirk", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.88225000", + "longitude": "-97.05337000" + }, + { + "id": "122891", + "name": "Nichols Hills", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.55089000", + "longitude": "-97.54893000" + }, + { + "id": "122897", + "name": "Nicoma Park", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.49117000", + "longitude": "-97.32309000" + }, + { + "id": "122903", + "name": "Ninnekah", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.94785000", + "longitude": "-97.92393000" + }, + { + "id": "122916", + "name": "Noble", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.13924000", + "longitude": "-97.39475000" + }, + { + "id": "122917", + "name": "Noble County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.38860000", + "longitude": "-97.23051000" + }, + { + "id": "122949", + "name": "Norman", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.22257000", + "longitude": "-97.43948000" + }, + { + "id": "123209", + "name": "Nowata", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.70065000", + "longitude": "-95.63803000" + }, + { + "id": "123210", + "name": "Nowata County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.79848000", + "longitude": "-95.61740000" + }, + { + "id": "123279", + "name": "Oakhurst", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.07537000", + "longitude": "-96.06444000" + }, + { + "id": "123287", + "name": "Oakland", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.10010000", + "longitude": "-96.79389000" + }, + { + "id": "123389", + "name": "Oilton", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.08451000", + "longitude": "-96.58363000" + }, + { + "id": "123395", + "name": "Okarche", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.72588000", + "longitude": "-97.97644000" + }, + { + "id": "123400", + "name": "Okeene", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.11615000", + "longitude": "-98.31702000" + }, + { + "id": "123401", + "name": "Okemah", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.43259000", + "longitude": "-96.30501000" + }, + { + "id": "123403", + "name": "Okfuskee County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.46546000", + "longitude": "-96.32280000" + }, + { + "id": "123404", + "name": "Oklahoma City", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.46756000", + "longitude": "-97.51643000" + }, + { + "id": "123405", + "name": "Oklahoma County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.55152000", + "longitude": "-97.40720000" + }, + { + "id": "123406", + "name": "Okmulgee", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.62344000", + "longitude": "-95.96055000" + }, + { + "id": "123407", + "name": "Okmulgee County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.64666000", + "longitude": "-95.96431000" + }, + { + "id": "123492", + "name": "Oologah", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.44704000", + "longitude": "-95.70832000" + }, + { + "id": "123591", + "name": "Osage County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.62919000", + "longitude": "-96.39849000" + }, + { + "id": "123639", + "name": "Ottawa County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.83551000", + "longitude": "-94.81044000" + }, + { + "id": "123658", + "name": "Owasso", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.26954000", + "longitude": "-95.85471000" + }, + { + "id": "123797", + "name": "Panama", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.16732000", + "longitude": "-94.67245000" + }, + { + "id": "123847", + "name": "Park Hill", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.86120000", + "longitude": "-94.95884000" + }, + { + "id": "123925", + "name": "Pauls Valley", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.74008000", + "longitude": "-97.22225000" + }, + { + "id": "123930", + "name": "Pawhuska", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.66784000", + "longitude": "-96.33723000" + }, + { + "id": "123934", + "name": "Pawnee", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.33783000", + "longitude": "-96.80392000" + }, + { + "id": "123937", + "name": "Pawnee County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.31693000", + "longitude": "-96.69930000" + }, + { + "id": "123946", + "name": "Payne County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.07732000", + "longitude": "-96.97577000" + }, + { + "id": "124062", + "name": "Perkins", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.97394000", + "longitude": "-97.03364000" + }, + { + "id": "124069", + "name": "Perry", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.28949000", + "longitude": "-97.28810000" + }, + { + "id": "124167", + "name": "Piedmont", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.64200000", + "longitude": "-97.74643000" + }, + { + "id": "124270", + "name": "Pink", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.26063000", + "longitude": "-97.11975000" + }, + { + "id": "124295", + "name": "Pittsburg County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.92391000", + "longitude": "-95.74840000" + }, + { + "id": "124419", + "name": "Pocola", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.23121000", + "longitude": "-94.47800000" + }, + { + "id": "124464", + "name": "Ponca City", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.70698000", + "longitude": "-97.08559000" + }, + { + "id": "124478", + "name": "Pontotoc County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.72800000", + "longitude": "-96.68444000" + }, + { + "id": "124579", + "name": "Poteau", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.05371000", + "longitude": "-94.62356000" + }, + { + "id": "124590", + "name": "Pottawatomie County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.20672000", + "longitude": "-96.94830000" + }, + { + "id": "124622", + "name": "Prague", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.48674000", + "longitude": "-96.68502000" + }, + { + "id": "124726", + "name": "Pryor", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.30843000", + "longitude": "-95.31691000" + }, + { + "id": "124727", + "name": "Pryor Creek", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.30862000", + "longitude": "-95.31777000" + }, + { + "id": "124753", + "name": "Purcell", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.01368000", + "longitude": "-97.36114000" + }, + { + "id": "124759", + "name": "Pushmataha County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.41620000", + "longitude": "-95.37579000" + }, + { + "id": "124804", + "name": "Quinton", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.12288000", + "longitude": "-95.37109000" + }, + { + "id": "125144", + "name": "Ringling", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.17843000", + "longitude": "-97.59253000" + }, + { + "id": "125347", + "name": "Roger Mills County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.68839000", + "longitude": "-99.69569000" + }, + { + "id": "125352", + "name": "Rogers County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.37157000", + "longitude": "-95.60436000" + }, + { + "id": "125359", + "name": "Roland", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.42120000", + "longitude": "-94.51466000" + }, + { + "id": "125522", + "name": "Rush Springs", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.78257000", + "longitude": "-97.95698000" + }, + { + "id": "125745", + "name": "Salina", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.29287000", + "longitude": "-95.15330000" + }, + { + "id": "125762", + "name": "Sallisaw", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.46037000", + "longitude": "-94.78745000" + }, + { + "id": "125861", + "name": "Sand Springs", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.13981000", + "longitude": "-96.10889000" + }, + { + "id": "125933", + "name": "Sapulpa", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.99870000", + "longitude": "-96.11417000" + }, + { + "id": "125989", + "name": "Sayre", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.29116000", + "longitude": "-99.64010000" + }, + { + "id": "126145", + "name": "Seminole", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.22452000", + "longitude": "-96.67057000" + }, + { + "id": "126149", + "name": "Seminole County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.16749000", + "longitude": "-96.61552000" + }, + { + "id": "126165", + "name": "Sequoyah County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.49535000", + "longitude": "-94.75524000" + }, + { + "id": "126241", + "name": "Shattuck", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.27614000", + "longitude": "-99.88276000" + }, + { + "id": "126250", + "name": "Shawnee", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.32729000", + "longitude": "-96.92530000" + }, + { + "id": "126478", + "name": "Skiatook", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.36842000", + "longitude": "-96.00138000" + }, + { + "id": "126494", + "name": "Slaughterville", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.08729000", + "longitude": "-97.33503000" + }, + { + "id": "126549", + "name": "Snyder", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.65896000", + "longitude": "-98.95174000" + }, + { + "id": "126822", + "name": "Spencer", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.52284000", + "longitude": "-97.37726000" + }, + { + "id": "126833", + "name": "Sperry", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.29731000", + "longitude": "-95.99139000" + }, + { + "id": "126840", + "name": "Spiro", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.24121000", + "longitude": "-94.61994000" + }, + { + "id": "127022", + "name": "Stephens County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.48559000", + "longitude": "-97.85148000" + }, + { + "id": "127057", + "name": "Stigler", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.25371000", + "longitude": "-95.12302000" + }, + { + "id": "127060", + "name": "Stillwater", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.11561000", + "longitude": "-97.05837000" + }, + { + "id": "127064", + "name": "Stilwell", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.81453000", + "longitude": "-94.62856000" + }, + { + "id": "127123", + "name": "Stratford", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.79675000", + "longitude": "-96.95946000" + }, + { + "id": "127139", + "name": "Stroud", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.74868000", + "longitude": "-96.65807000" + }, + { + "id": "127195", + "name": "Sulphur", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.50787000", + "longitude": "-96.96835000" + }, + { + "id": "127377", + "name": "Tahlequah", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.91537000", + "longitude": "-94.96996000" + }, + { + "id": "127388", + "name": "Talihina", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.75149000", + "longitude": "-95.04802000" + }, + { + "id": "127398", + "name": "Taloga", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.03865000", + "longitude": "-98.96371000" + }, + { + "id": "127478", + "name": "Tecumseh", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.25785000", + "longitude": "-96.93669000" + }, + { + "id": "127543", + "name": "Texanna", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.34732000", + "longitude": "-95.43692000" + }, + { + "id": "127548", + "name": "Texas County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.74791000", + "longitude": "-101.49001000" + }, + { + "id": "127564", + "name": "The Village", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.56089000", + "longitude": "-97.55143000" + }, + { + "id": "127578", + "name": "Thomas", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.74422000", + "longitude": "-98.74758000" + }, + { + "id": "127650", + "name": "Tillman County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.37285000", + "longitude": "-98.92424000" + }, + { + "id": "127682", + "name": "Tishomingo", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.23621000", + "longitude": "-96.67861000" + }, + { + "id": "127721", + "name": "Tonkawa", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.67837000", + "longitude": "-97.31004000" + }, + { + "id": "127888", + "name": "Tulsa", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.15398000", + "longitude": "-95.99277000" + }, + { + "id": "127889", + "name": "Tulsa County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.12108000", + "longitude": "-95.94148000" + }, + { + "id": "127899", + "name": "Turley", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.24204000", + "longitude": "-95.97583000" + }, + { + "id": "127918", + "name": "Tuttle", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.29089000", + "longitude": "-97.81227000" + }, + { + "id": "127981", + "name": "Union City", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.39172000", + "longitude": "-97.94144000" + }, + { + "id": "128181", + "name": "Verdigris", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.23482000", + "longitude": "-95.69109000" + }, + { + "id": "128214", + "name": "Vian", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.49843000", + "longitude": "-94.96967000" + }, + { + "id": "128277", + "name": "Vinita", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.63869000", + "longitude": "-95.15413000" + }, + { + "id": "128329", + "name": "Wagoner", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.95954000", + "longitude": "-95.36941000" + }, + { + "id": "128330", + "name": "Wagoner County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.96110000", + "longitude": "-95.52118000" + }, + { + "id": "128429", + "name": "Walters", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.35981000", + "longitude": "-98.30783000" + }, + { + "id": "128473", + "name": "Warner", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.49426000", + "longitude": "-95.30552000" + }, + { + "id": "128475", + "name": "Warr Acres", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.52256000", + "longitude": "-97.61893000" + }, + { + "id": "128564", + "name": "Washington County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.71524000", + "longitude": "-95.90437000" + }, + { + "id": "128589", + "name": "Washita County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.29038000", + "longitude": "-98.99223000" + }, + { + "id": "128636", + "name": "Watonga", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.84477000", + "longitude": "-98.41313000" + }, + { + "id": "128651", + "name": "Waukomis", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.28031000", + "longitude": "-97.89811000" + }, + { + "id": "128659", + "name": "Waurika", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.16704000", + "longitude": "-97.99754000" + }, + { + "id": "128717", + "name": "Weatherford", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.52616000", + "longitude": "-98.70757000" + }, + { + "id": "129077", + "name": "Westville", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.99258000", + "longitude": "-94.56800000" + }, + { + "id": "129091", + "name": "Wetumka", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.23759000", + "longitude": "-96.24167000" + }, + { + "id": "129096", + "name": "Wewoka", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.15869000", + "longitude": "-96.49335000" + }, + { + "id": "129227", + "name": "Wilburton", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.91871000", + "longitude": "-95.30914000" + }, + { + "id": "129330", + "name": "Wilson", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.16204000", + "longitude": "-97.42586000" + }, + { + "id": "129463", + "name": "Wister", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.96732000", + "longitude": "-94.72467000" + }, + { + "id": "129549", + "name": "Woods County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.76694000", + "longitude": "-98.86512000" + }, + { + "id": "129575", + "name": "Woodward", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.43365000", + "longitude": "-99.39039000" + }, + { + "id": "129577", + "name": "Woodward County", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.42267000", + "longitude": "-99.26497000" + }, + { + "id": "129633", + "name": "Wynnewood", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "34.64342000", + "longitude": "-97.16447000" + }, + { + "id": "129654", + "name": "Yale", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "36.11423000", + "longitude": "-96.69919000" + }, + { + "id": "129730", + "name": "Yukon", + "state_id": 1421, + "state_code": "OK", + "country_id": 233, + "country_code": "US", + "latitude": "35.50672000", + "longitude": "-97.76254000" + }, + { + "id": "111111", + "name": "Albany", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.63651000", + "longitude": "-123.10593000" + }, + { + "id": "111214", + "name": "Aloha", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.49428000", + "longitude": "-122.86705000" + }, + { + "id": "111236", + "name": "Altamont", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.20681000", + "longitude": "-121.73722000" + }, + { + "id": "111290", + "name": "Amity", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.11567000", + "longitude": "-123.20733000" + }, + { + "id": "111540", + "name": "Ashland", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.19458000", + "longitude": "-122.70948000" + }, + { + "id": "111563", + "name": "Astoria", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "46.18788000", + "longitude": "-123.83125000" + }, + { + "id": "111572", + "name": "Athena", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.81180000", + "longitude": "-118.49053000" + }, + { + "id": "111655", + "name": "Aumsville", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.84095000", + "longitude": "-122.87092000" + }, + { + "id": "111740", + "name": "Baker City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.77487000", + "longitude": "-117.83438000" + }, + { + "id": "111743", + "name": "Baker County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.70923000", + "longitude": "-117.67534000" + }, + { + "id": "111790", + "name": "Bandon", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.11900000", + "longitude": "-124.40845000" + }, + { + "id": "111797", + "name": "Banks", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.61872000", + "longitude": "-123.11428000" + }, + { + "id": "111874", + "name": "Barview", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.35428000", + "longitude": "-124.31317000" + }, + { + "id": "111923", + "name": "Bay City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.52260000", + "longitude": "-123.88930000" + }, + { + "id": "112005", + "name": "Beavercreek", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.28790000", + "longitude": "-122.53564000" + }, + { + "id": "112010", + "name": "Beaverton", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.48706000", + "longitude": "-122.80371000" + }, + { + "id": "112166", + "name": "Bend", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.05817000", + "longitude": "-121.31531000" + }, + { + "id": "112206", + "name": "Benton County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.49176000", + "longitude": "-123.42931000" + }, + { + "id": "112276", + "name": "Bethany", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.55789000", + "longitude": "-122.86760000" + }, + { + "id": "112489", + "name": "Boardman", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.83986000", + "longitude": "-119.70058000" + }, + { + "id": "112862", + "name": "Brookings", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.05261000", + "longitude": "-124.28398000" + }, + { + "id": "112935", + "name": "Brownsville", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.39346000", + "longitude": "-122.98481000" + }, + { + "id": "113041", + "name": "Bunker Hill", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.35595000", + "longitude": "-124.20483000" + }, + { + "id": "113087", + "name": "Burns", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.58626000", + "longitude": "-119.05410000" + }, + { + "id": "113322", + "name": "Canby", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.26290000", + "longitude": "-122.69259000" + }, + { + "id": "113332", + "name": "Cannon Beach", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.89177000", + "longitude": "-123.96153000" + }, + { + "id": "113355", + "name": "Canyon City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.38960000", + "longitude": "-118.95023000" + }, + { + "id": "113361", + "name": "Canyonville", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.92734000", + "longitude": "-123.28117000" + }, + { + "id": "113412", + "name": "Carlton", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.29428000", + "longitude": "-123.17649000" + }, + { + "id": "113516", + "name": "Cascade Locks", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.66984000", + "longitude": "-121.89064000" + }, + { + "id": "113586", + "name": "Cave Junction", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.16289000", + "longitude": "-123.64812000" + }, + { + "id": "113615", + "name": "Cedar Hills", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.50484000", + "longitude": "-122.79843000" + }, + { + "id": "113618", + "name": "Cedar Mill", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.52484000", + "longitude": "-122.81093000" + }, + { + "id": "113680", + "name": "Central Point", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.37596000", + "longitude": "-122.91643000" + }, + { + "id": "113842", + "name": "Chenoweth", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.62762000", + "longitude": "-121.24341000" + }, + { + "id": "114090", + "name": "Clackamas", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.40762000", + "longitude": "-122.57037000" + }, + { + "id": "114091", + "name": "Clackamas County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.18816000", + "longitude": "-122.22094000" + }, + { + "id": "114160", + "name": "Clatskanie", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "46.10122000", + "longitude": "-123.20679000" + }, + { + "id": "114161", + "name": "Clatsop County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "46.01747000", + "longitude": "-123.71677000" + }, + { + "id": "114348", + "name": "Coburg", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.13707000", + "longitude": "-123.06648000" + }, + { + "id": "114476", + "name": "Columbia City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.89011000", + "longitude": "-122.80705000" + }, + { + "id": "114483", + "name": "Columbia County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.94377000", + "longitude": "-123.08805000" + }, + { + "id": "114549", + "name": "Condon", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.23430000", + "longitude": "-120.18503000" + }, + { + "id": "114610", + "name": "Coos Bay", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.36650000", + "longitude": "-124.21789000" + }, + { + "id": "114612", + "name": "Coos County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.18501000", + "longitude": "-124.09333000" + }, + { + "id": "114623", + "name": "Coquille", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.17705000", + "longitude": "-124.18761000" + }, + { + "id": "114648", + "name": "Cornelius", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.51984000", + "longitude": "-123.05983000" + }, + { + "id": "114680", + "name": "Corvallis", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.56457000", + "longitude": "-123.26204000" + }, + { + "id": "114693", + "name": "Cottage Grove", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.79762000", + "longitude": "-123.05952000" + }, + { + "id": "114813", + "name": "Creswell", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.91790000", + "longitude": "-123.02453000" + }, + { + "id": "114836", + "name": "Crook County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.14219000", + "longitude": "-120.35658000" + }, + { + "id": "114899", + "name": "Culp Creek", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.70346000", + "longitude": "-122.84757000" + }, + { + "id": "114903", + "name": "Culver", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.52568000", + "longitude": "-121.21310000" + }, + { + "id": "114928", + "name": "Curry County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.46661000", + "longitude": "-124.21534000" + }, + { + "id": "114992", + "name": "Dallas", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.91928000", + "longitude": "-123.31705000" + }, + { + "id": "115010", + "name": "Damascus", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.41762000", + "longitude": "-122.45898000" + }, + { + "id": "115099", + "name": "Dayton", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.22067000", + "longitude": "-123.07621000" + }, + { + "id": "115257", + "name": "Depoe Bay", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.80845000", + "longitude": "-124.06317000" + }, + { + "id": "115277", + "name": "Deschutes County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.91488000", + "longitude": "-121.22789000" + }, + { + "id": "115278", + "name": "Deschutes River Woods", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.99151000", + "longitude": "-121.35836000" + }, + { + "id": "115393", + "name": "Donald", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.22234000", + "longitude": "-122.83926000" + }, + { + "id": "115435", + "name": "Douglas County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.28536000", + "longitude": "-123.17942000" + }, + { + "id": "115467", + "name": "Drain", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.65873000", + "longitude": "-123.31870000" + }, + { + "id": "115531", + "name": "Dundee", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.27817000", + "longitude": "-123.01094000" + }, + { + "id": "115536", + "name": "Dunes City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.88318000", + "longitude": "-124.11512000" + }, + { + "id": "115574", + "name": "Durham", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.40206000", + "longitude": "-122.75287000" + }, + { + "id": "115609", + "name": "Eagle Point", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.47263000", + "longitude": "-122.80282000" + }, + { + "id": "115968", + "name": "Elgin", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.56486000", + "longitude": "-117.91743000" + }, + { + "id": "116150", + "name": "Enterprise", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.42626000", + "longitude": "-117.27878000" + }, + { + "id": "116202", + "name": "Estacada", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.28957000", + "longitude": "-122.33370000" + }, + { + "id": "116226", + "name": "Eugene", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.05207000", + "longitude": "-123.08675000" + }, + { + "id": "116356", + "name": "Fairview", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.53845000", + "longitude": "-122.43398000" + }, + { + "id": "116586", + "name": "Florence", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.98262000", + "longitude": "-124.09984000" + }, + { + "id": "116653", + "name": "Forest Grove", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.51984000", + "longitude": "-123.11066000" + }, + { + "id": "116772", + "name": "Fossil", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.99819000", + "longitude": "-120.21614000" + }, + { + "id": "116789", + "name": "Four Corners", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.92790000", + "longitude": "-122.98371000" + }, + { + "id": "116969", + "name": "Fruitdale", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.42206000", + "longitude": "-123.30811000" + }, + { + "id": "117066", + "name": "Garden Home-Whitford", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.46400000", + "longitude": "-122.75891000" + }, + { + "id": "117129", + "name": "Gearhart", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "46.02427000", + "longitude": "-123.91125000" + }, + { + "id": "117178", + "name": "Gervais", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.10818000", + "longitude": "-122.89760000" + }, + { + "id": "117218", + "name": "Gilliam County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.37806000", + "longitude": "-120.21087000" + }, + { + "id": "117239", + "name": "Gladstone", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.38068000", + "longitude": "-122.59481000" + }, + { + "id": "117320", + "name": "Glide", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.30151000", + "longitude": "-123.10118000" + }, + { + "id": "117340", + "name": "Gold Beach", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.40733000", + "longitude": "-124.42177000" + }, + { + "id": "117343", + "name": "Gold Hill", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.43179000", + "longitude": "-123.05060000" + }, + { + "id": "117474", + "name": "Grand Ronde", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.06011000", + "longitude": "-123.60928000" + }, + { + "id": "117520", + "name": "Grant County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.49125000", + "longitude": "-119.00738000" + }, + { + "id": "117528", + "name": "Grants Pass", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.43933000", + "longitude": "-123.33067000" + }, + { + "id": "117589", + "name": "Green", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.16039000", + "longitude": "-123.36785000" + }, + { + "id": "117722", + "name": "Gresham", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.49818000", + "longitude": "-122.43148000" + }, + { + "id": "117983", + "name": "Happy Valley", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.44679000", + "longitude": "-122.53037000" + }, + { + "id": "117987", + "name": "Harbor", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.05317000", + "longitude": "-124.26759000" + }, + { + "id": "118030", + "name": "Harney County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.06402000", + "longitude": "-118.96787000" + }, + { + "id": "118053", + "name": "Harrisburg", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.27401000", + "longitude": "-123.17065000" + }, + { + "id": "118183", + "name": "Hayesville", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.98595000", + "longitude": "-122.98287000" + }, + { + "id": "118310", + "name": "Heppner", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.35318000", + "longitude": "-119.55780000" + }, + { + "id": "118327", + "name": "Hermiston", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.84041000", + "longitude": "-119.28946000" + }, + { + "id": "118452", + "name": "Hillsboro", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.52289000", + "longitude": "-122.98983000" + }, + { + "id": "118480", + "name": "Hines", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.56404000", + "longitude": "-119.08105000" + }, + { + "id": "118626", + "name": "Hood River", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.70540000", + "longitude": "-121.52146000" + }, + { + "id": "118627", + "name": "Hood River County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.51911000", + "longitude": "-121.65111000" + }, + { + "id": "118731", + "name": "Hubbard", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.18234000", + "longitude": "-122.80787000" + }, + { + "id": "118897", + "name": "Independence", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.85123000", + "longitude": "-123.18677000" + }, + { + "id": "119002", + "name": "Irrigon", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.89569000", + "longitude": "-119.49141000" + }, + { + "id": "119023", + "name": "Island City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.34097000", + "longitude": "-118.04466000" + }, + { + "id": "119095", + "name": "Jackson County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.43215000", + "longitude": "-122.72843000" + }, + { + "id": "119105", + "name": "Jacksonville", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.31346000", + "longitude": "-122.96699000" + }, + { + "id": "119172", + "name": "Jefferson", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.71957000", + "longitude": "-123.01037000" + }, + { + "id": "119197", + "name": "Jefferson County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.62941000", + "longitude": "-121.17541000" + }, + { + "id": "119221", + "name": "Jennings Lodge", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.39123000", + "longitude": "-122.61259000" + }, + { + "id": "119251", + "name": "John Day", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.41599000", + "longitude": "-118.95301000" + }, + { + "id": "119318", + "name": "Joseph", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.35432000", + "longitude": "-117.22961000" + }, + { + "id": "119321", + "name": "Josephine County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.36546000", + "longitude": "-123.55558000" + }, + { + "id": "119335", + "name": "Junction City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.21929000", + "longitude": "-123.20565000" + }, + { + "id": "119426", + "name": "Keizer", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.99012000", + "longitude": "-123.02621000" + }, + { + "id": "119498", + "name": "Kenton", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.58178000", + "longitude": "-122.68149000" + }, + { + "id": "119580", + "name": "King City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.40262000", + "longitude": "-122.80399000" + }, + { + "id": "119670", + "name": "Klamath County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.68634000", + "longitude": "-121.65013000" + }, + { + "id": "119671", + "name": "Klamath Falls", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.22487000", + "longitude": "-121.78167000" + }, + { + "id": "119748", + "name": "La Grande", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.32458000", + "longitude": "-118.08772000" + }, + { + "id": "119772", + "name": "La Pine", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.67040000", + "longitude": "-121.50364000" + }, + { + "id": "119837", + "name": "Lafayette", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.24428000", + "longitude": "-123.11483000" + }, + { + "id": "119899", + "name": "Lake County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.79339000", + "longitude": "-120.38747000" + }, + { + "id": "119955", + "name": "Lake Oswego", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.42067000", + "longitude": "-122.67065000" + }, + { + "id": "120034", + "name": "Lakeside", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.57567000", + "longitude": "-124.17511000" + }, + { + "id": "120041", + "name": "Lakeview", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.18877000", + "longitude": "-120.34579000" + }, + { + "id": "120106", + "name": "Lane County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.94155000", + "longitude": "-122.87655000" + }, + { + "id": "120294", + "name": "Lebanon", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.53651000", + "longitude": "-122.90703000" + }, + { + "id": "120377", + "name": "Lents", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.47984000", + "longitude": "-122.56731000" + }, + { + "id": "120514", + "name": "Lincoln Beach", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.85039000", + "longitude": "-124.04678000" + }, + { + "id": "120515", + "name": "Lincoln City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.95816000", + "longitude": "-124.01789000" + }, + { + "id": "120536", + "name": "Lincoln County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.64568000", + "longitude": "-123.90770000" + }, + { + "id": "120584", + "name": "Linn County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.48857000", + "longitude": "-122.53419000" + }, + { + "id": "120838", + "name": "Lowell", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.91846000", + "longitude": "-122.78368000" + }, + { + "id": "120944", + "name": "Lyons", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.77457000", + "longitude": "-122.61509000" + }, + { + "id": "121028", + "name": "Madras", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.63345000", + "longitude": "-121.12949000" + }, + { + "id": "121061", + "name": "Malheur County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.19341000", + "longitude": "-117.62307000" + }, + { + "id": "121262", + "name": "Marion County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.90319000", + "longitude": "-122.58473000" + }, + { + "id": "121541", + "name": "McMinnville", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.21012000", + "longitude": "-123.19872000" + }, + { + "id": "121596", + "name": "Medford", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.32652000", + "longitude": "-122.87559000" + }, + { + "id": "121701", + "name": "Merlin", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.51734000", + "longitude": "-123.41979000" + }, + { + "id": "121739", + "name": "Metzger", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.44651000", + "longitude": "-122.75899000" + }, + { + "id": "121862", + "name": "Mill City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.75401000", + "longitude": "-122.47814000" + }, + { + "id": "121887", + "name": "Millersburg", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.68095000", + "longitude": "-123.06148000" + }, + { + "id": "121922", + "name": "Milton-Freewater", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.93263000", + "longitude": "-118.38774000" + }, + { + "id": "121925", + "name": "Milwaukie", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.44623000", + "longitude": "-122.63926000" + }, + { + "id": "121981", + "name": "Mission", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.67041000", + "longitude": "-118.68359000" + }, + { + "id": "122026", + "name": "Molalla", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.14734000", + "longitude": "-122.57703000" + }, + { + "id": "122044", + "name": "Monmouth", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.84845000", + "longitude": "-123.23399000" + }, + { + "id": "122259", + "name": "Moro", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.48401000", + "longitude": "-120.73117000" + }, + { + "id": "122290", + "name": "Morrow County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.41883000", + "longitude": "-119.58430000" + }, + { + "id": "122332", + "name": "Mount Angel", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.06790000", + "longitude": "-122.80009000" + }, + { + "id": "122352", + "name": "Mount Hood Village", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.35540000", + "longitude": "-121.98064000" + }, + { + "id": "122458", + "name": "Mulino", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.22151000", + "longitude": "-122.58203000" + }, + { + "id": "122463", + "name": "Multnomah County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.54687000", + "longitude": "-122.41534000" + }, + { + "id": "122521", + "name": "Myrtle Creek", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.02012000", + "longitude": "-123.29312000" + }, + { + "id": "122524", + "name": "Myrtle Point", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.06483000", + "longitude": "-124.13899000" + }, + { + "id": "122728", + "name": "New Hope", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.36234000", + "longitude": "-123.36784000" + }, + { + "id": "122808", + "name": "Newberg", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.30012000", + "longitude": "-122.97316000" + }, + { + "id": "122851", + "name": "Newport", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.63678000", + "longitude": "-124.05345000" + }, + { + "id": "122984", + "name": "North Bend", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.40650000", + "longitude": "-124.22428000" + }, + { + "id": "123081", + "name": "North Plains", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.59706000", + "longitude": "-122.99344000" + }, + { + "id": "123086", + "name": "North Portland", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.61039000", + "longitude": "-122.70343000" + }, + { + "id": "123223", + "name": "Nyssa", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.87683000", + "longitude": "-116.99488000" + }, + { + "id": "123240", + "name": "Oak Grove", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.41679000", + "longitude": "-122.64009000" + }, + { + "id": "123249", + "name": "Oak Hills", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.54123000", + "longitude": "-122.84121000" + }, + { + "id": "123304", + "name": "Oakridge", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.74651000", + "longitude": "-122.46172000" + }, + { + "id": "123314", + "name": "Oatfield", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.41418000", + "longitude": "-122.60007000" + }, + { + "id": "123354", + "name": "Odell", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.62706000", + "longitude": "-121.54313000" + }, + { + "id": "123487", + "name": "Ontario", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.02655000", + "longitude": "-116.96294000" + }, + { + "id": "123548", + "name": "Oregon City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.35734000", + "longitude": "-122.60676000" + }, + { + "id": "123708", + "name": "Pacific City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.20233000", + "longitude": "-123.96289000" + }, + { + "id": "124018", + "name": "Pendleton", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.67207000", + "longitude": "-118.78860000" + }, + { + "id": "124144", + "name": "Philomath", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.54012000", + "longitude": "-123.36760000" + }, + { + "id": "124149", + "name": "Phoenix", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.27541000", + "longitude": "-122.81809000" + }, + { + "id": "124202", + "name": "Pilot Rock", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.48318000", + "longitude": "-118.82998000" + }, + { + "id": "124451", + "name": "Polk County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.90348000", + "longitude": "-123.41337000" + }, + { + "id": "124526", + "name": "Port Orford", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.74566000", + "longitude": "-124.49733000" + }, + { + "id": "124565", + "name": "Portland", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.52345000", + "longitude": "-122.67621000" + }, + { + "id": "124697", + "name": "Prineville", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.29985000", + "longitude": "-120.83447000" + }, + { + "id": "124826", + "name": "Rainier", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "46.08900000", + "longitude": "-122.93594000" + }, + { + "id": "124833", + "name": "Raleigh Hills", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.48067000", + "longitude": "-122.76204000" + }, + { + "id": "124978", + "name": "Redmond", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.27262000", + "longitude": "-121.17392000" + }, + { + "id": "124985", + "name": "Redwood", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.42206000", + "longitude": "-123.38728000" + }, + { + "id": "124995", + "name": "Reedsport", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.70234000", + "longitude": "-124.09678000" + }, + { + "id": "125113", + "name": "Riddle", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.95095000", + "longitude": "-123.36423000" + }, + { + "id": "125290", + "name": "Rockaway Beach", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.61344000", + "longitude": "-123.94291000" + }, + { + "id": "125294", + "name": "Rockcreek", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.55012000", + "longitude": "-122.87705000" + }, + { + "id": "125357", + "name": "Rogue River", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.43595000", + "longitude": "-123.17200000" + }, + { + "id": "125406", + "name": "Rose Lodge", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.01039000", + "longitude": "-123.88039000" + }, + { + "id": "125414", + "name": "Roseburg", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.21650000", + "longitude": "-123.34174000" + }, + { + "id": "125415", + "name": "Roseburg North", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.26452000", + "longitude": "-123.30331000" + }, + { + "id": "125649", + "name": "Saint Helens", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.86400000", + "longitude": "-122.80649000" + }, + { + "id": "125740", + "name": "Salem", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.94290000", + "longitude": "-123.03510000" + }, + { + "id": "125880", + "name": "Sandy", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.39734000", + "longitude": "-122.26148000" + }, + { + "id": "125996", + "name": "Scappoose", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.75428000", + "longitude": "-122.87760000" + }, + { + "id": "126100", + "name": "Seaside", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.99316000", + "longitude": "-123.92264000" + }, + { + "id": "126203", + "name": "Shady Cove", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.61068000", + "longitude": "-122.81254000" + }, + { + "id": "126322", + "name": "Sheridan", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.09928000", + "longitude": "-123.39483000" + }, + { + "id": "126335", + "name": "Sherman County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.40521000", + "longitude": "-120.68932000" + }, + { + "id": "126342", + "name": "Sherwood", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.35651000", + "longitude": "-122.84010000" + }, + { + "id": "126416", + "name": "Siletz", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.72178000", + "longitude": "-123.92011000" + }, + { + "id": "126442", + "name": "Silverton", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.00512000", + "longitude": "-122.78315000" + }, + { + "id": "126468", + "name": "Sisters", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.29095000", + "longitude": "-121.54921000" + }, + { + "id": "126688", + "name": "South Lebanon", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.50623000", + "longitude": "-122.90314000" + }, + { + "id": "126907", + "name": "Springfield", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.04624000", + "longitude": "-123.02203000" + }, + { + "id": "126935", + "name": "Stafford", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.35734000", + "longitude": "-122.72259000" + }, + { + "id": "126952", + "name": "Stanfield", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.78041000", + "longitude": "-119.21724000" + }, + { + "id": "127002", + "name": "Stayton", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.80068000", + "longitude": "-122.79453000" + }, + { + "id": "127159", + "name": "Sublimity", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.82957000", + "longitude": "-122.79453000" + }, + { + "id": "127270", + "name": "Sunriver", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.88401000", + "longitude": "-121.43864000" + }, + { + "id": "127307", + "name": "Sutherlin", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.39012000", + "longitude": "-123.31258000" + }, + { + "id": "127337", + "name": "Sweet Home", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.39762000", + "longitude": "-122.73620000" + }, + { + "id": "127386", + "name": "Talent", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.24568000", + "longitude": "-122.78865000" + }, + { + "id": "127413", + "name": "Tangent", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.54123000", + "longitude": "-123.10815000" + }, + { + "id": "127524", + "name": "Terrebonne", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.35290000", + "longitude": "-121.17781000" + }, + { + "id": "127557", + "name": "The Dalles", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.59456000", + "longitude": "-121.17868000" + }, + { + "id": "127621", + "name": "Three Rivers", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.82012000", + "longitude": "-121.46919000" + }, + { + "id": "127643", + "name": "Tigard", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.43123000", + "longitude": "-122.77149000" + }, + { + "id": "127648", + "name": "Tillamook", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.45640000", + "longitude": "-123.84553000" + }, + { + "id": "127649", + "name": "Tillamook County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.45645000", + "longitude": "-123.75877000" + }, + { + "id": "127700", + "name": "Toledo", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.62151000", + "longitude": "-123.93845000" + }, + { + "id": "127816", + "name": "Tri-City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.98456000", + "longitude": "-123.31173000" + }, + { + "id": "127838", + "name": "Troutdale", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.53929000", + "longitude": "-122.38731000" + }, + { + "id": "127865", + "name": "Tualatin", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.38401000", + "longitude": "-122.76399000" + }, + { + "id": "127902", + "name": "Turner", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.84318000", + "longitude": "-122.95287000" + }, + { + "id": "127962", + "name": "Umatilla", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.91735000", + "longitude": "-119.34252000" + }, + { + "id": "127963", + "name": "Umatilla County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.59190000", + "longitude": "-118.73683000" + }, + { + "id": "127978", + "name": "Union", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.20847000", + "longitude": "-117.86521000" + }, + { + "id": "128003", + "name": "Union County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.31035000", + "longitude": "-118.00900000" + }, + { + "id": "128086", + "name": "Vale", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.98211000", + "longitude": "-117.23823000" + }, + { + "id": "128168", + "name": "Veneta", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.04873000", + "longitude": "-123.35093000" + }, + { + "id": "128197", + "name": "Vernonia", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.85872000", + "longitude": "-123.19289000" + }, + { + "id": "128376", + "name": "Waldport", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.42679000", + "longitude": "-124.06873000" + }, + { + "id": "128411", + "name": "Wallowa County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.57983000", + "longitude": "-117.18107000" + }, + { + "id": "128471", + "name": "Warm Springs", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.76345000", + "longitude": "-121.26616000" + }, + { + "id": "128485", + "name": "Warren", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.81900000", + "longitude": "-122.84899000" + }, + { + "id": "128508", + "name": "Warrenton", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "46.16510000", + "longitude": "-123.92376000" + }, + { + "id": "128529", + "name": "Wasco County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.16005000", + "longitude": "-121.16815000" + }, + { + "id": "128580", + "name": "Washington County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.56007000", + "longitude": "-123.09849000" + }, + { + "id": "128889", + "name": "West Haven", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.51762000", + "longitude": "-122.76954000" + }, + { + "id": "128890", + "name": "West Haven-Sylvan", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.51613000", + "longitude": "-122.76809000" + }, + { + "id": "128919", + "name": "West Linn", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.36568000", + "longitude": "-122.61231000" + }, + { + "id": "128983", + "name": "West Slope", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.49873000", + "longitude": "-122.76454000" + }, + { + "id": "129119", + "name": "Wheeler County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "44.72606000", + "longitude": "-120.02746000" + }, + { + "id": "129131", + "name": "White City", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.43735000", + "longitude": "-122.85893000" + }, + { + "id": "129256", + "name": "Willamina", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.07873000", + "longitude": "-123.48594000" + }, + { + "id": "129262", + "name": "Williams", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "42.21873000", + "longitude": "-123.27394000" + }, + { + "id": "129341", + "name": "Wilsonville", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.29984000", + "longitude": "-122.77371000" + }, + { + "id": "129433", + "name": "Winston", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.12234000", + "longitude": "-123.41257000" + }, + { + "id": "129490", + "name": "Wood Village", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.53429000", + "longitude": "-122.41870000" + }, + { + "id": "129504", + "name": "Woodburn", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.14373000", + "longitude": "-122.85537000" + }, + { + "id": "129657", + "name": "Yamhill", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.34150000", + "longitude": "-123.18733000" + }, + { + "id": "129658", + "name": "Yamhill County", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "45.23260000", + "longitude": "-123.30815000" + }, + { + "id": "129687", + "name": "Yoncalla", + "state_id": 1415, + "state_code": "OR", + "country_id": 233, + "country_code": "US", + "latitude": "43.59845000", + "longitude": "-123.28342000" + }, + { + "id": "110971", + "name": "Abbottstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.88649000", + "longitude": "-76.98470000" + }, + { + "id": "111019", + "name": "Adams County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.87145000", + "longitude": "-77.21789000" + }, + { + "id": "111030", + "name": "Adamstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24120000", + "longitude": "-76.05633000" + }, + { + "id": "111079", + "name": "Akron", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15676000", + "longitude": "-76.20217000" + }, + { + "id": "111129", + "name": "Albion", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.89061000", + "longitude": "-80.36645000" + }, + { + "id": "111131", + "name": "Alburtis", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.51093000", + "longitude": "-75.60297000" + }, + { + "id": "111135", + "name": "Aldan", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.92150000", + "longitude": "-75.28796000" + }, + { + "id": "111174", + "name": "Aliquippa", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63673000", + "longitude": "-80.24006000" + }, + { + "id": "111185", + "name": "Allegheny County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.46883000", + "longitude": "-79.98119000" + }, + { + "id": "111186", + "name": "Alleghenyville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23426000", + "longitude": "-75.98855000" + }, + { + "id": "111199", + "name": "Allentown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.60843000", + "longitude": "-75.49018000" + }, + { + "id": "111202", + "name": "Allison Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.55951000", + "longitude": "-79.95867000" + }, + { + "id": "111212", + "name": "Almedia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.01453000", + "longitude": "-76.38105000" + }, + { + "id": "111248", + "name": "Altoona", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.51868000", + "longitude": "-78.39474000" + }, + { + "id": "111264", + "name": "Ambler", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15455000", + "longitude": "-75.22157000" + }, + { + "id": "111267", + "name": "Ambridge", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.58923000", + "longitude": "-80.22506000" + }, + { + "id": "111291", + "name": "Amity Gardens", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27426000", + "longitude": "-75.73519000" + }, + { + "id": "111307", + "name": "Ancient Oaks", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.54732000", + "longitude": "-75.58935000" + }, + { + "id": "111357", + "name": "Annville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32954000", + "longitude": "-76.51524000" + }, + { + "id": "111387", + "name": "Apollo", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.58145000", + "longitude": "-79.56643000" + }, + { + "id": "111427", + "name": "Archbald", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.49480000", + "longitude": "-75.53685000" + }, + { + "id": "111443", + "name": "Ardmore", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00678000", + "longitude": "-75.28546000" + }, + { + "id": "111473", + "name": "Arlington Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.99009000", + "longitude": "-75.21629000" + }, + { + "id": "111480", + "name": "Armstrong County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.81229000", + "longitude": "-79.46454000" + }, + { + "id": "111487", + "name": "Arnold", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.58007000", + "longitude": "-79.76672000" + }, + { + "id": "111537", + "name": "Ashland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78175000", + "longitude": "-76.34578000" + }, + { + "id": "111544", + "name": "Ashley", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.21036000", + "longitude": "-75.89659000" + }, + { + "id": "111555", + "name": "Aspinwall", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.49146000", + "longitude": "-79.90477000" + }, + { + "id": "111571", + "name": "Atglen", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.94927000", + "longitude": "-75.97356000" + }, + { + "id": "111580", + "name": "Athens", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.95730000", + "longitude": "-76.51800000" + }, + { + "id": "111640", + "name": "Audubon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12788000", + "longitude": "-75.43185000" + }, + { + "id": "111674", + "name": "Avalon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.50090000", + "longitude": "-80.06756000" + }, + { + "id": "111685", + "name": "Avis", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.18479000", + "longitude": "-77.31386000" + }, + { + "id": "111688", + "name": "Avoca", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33980000", + "longitude": "-75.73630000" + }, + { + "id": "111694", + "name": "Avon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.34565000", + "longitude": "-76.38996000" + }, + { + "id": "111699", + "name": "Avondale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.82344000", + "longitude": "-75.78327000" + }, + { + "id": "111703", + "name": "Avonia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.04561000", + "longitude": "-80.26979000" + }, + { + "id": "111718", + "name": "Back Mountain", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33591000", + "longitude": "-75.99631000" + }, + { + "id": "111723", + "name": "Baden", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63507000", + "longitude": "-80.22812000" + }, + { + "id": "111729", + "name": "Baidland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.19479000", + "longitude": "-79.97088000" + }, + { + "id": "111734", + "name": "Bainbridge", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.09093000", + "longitude": "-76.66747000" + }, + { + "id": "111745", + "name": "Bakerstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.65090000", + "longitude": "-79.93644000" + }, + { + "id": "111748", + "name": "Bala-Cynwyd", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00761000", + "longitude": "-75.23407000" + }, + { + "id": "111757", + "name": "Baldwin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33813000", + "longitude": "-79.97894000" + }, + { + "id": "111777", + "name": "Bally", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40232000", + "longitude": "-75.58713000" + }, + { + "id": "111793", + "name": "Bangor", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86565000", + "longitude": "-75.20657000" + }, + { + "id": "111828", + "name": "Barnesboro", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.66257000", + "longitude": "-78.78003000" + }, + { + "id": "111899", + "name": "Bath", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.72565000", + "longitude": "-75.39407000" + }, + { + "id": "111978", + "name": "Bear Rocks", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12285000", + "longitude": "-79.46170000" + }, + { + "id": "111993", + "name": "Beaver", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.69534000", + "longitude": "-80.30478000" + }, + { + "id": "111997", + "name": "Beaver County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68226000", + "longitude": "-80.34929000" + }, + { + "id": "112004", + "name": "Beaver Falls", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.75201000", + "longitude": "-80.31923000" + }, + { + "id": "112006", + "name": "Beaverdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32202000", + "longitude": "-78.69696000" + }, + { + "id": "112026", + "name": "Bedford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.01869000", + "longitude": "-78.50391000" + }, + { + "id": "112029", + "name": "Bedford County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00656000", + "longitude": "-78.49032000" + }, + { + "id": "112032", + "name": "Bedminster", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.42594000", + "longitude": "-75.17906000" + }, + { + "id": "112038", + "name": "Beech Mountain Lakes", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.04158000", + "longitude": "-75.93545000" + }, + { + "id": "112057", + "name": "Belfast", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78065000", + "longitude": "-75.27796000" + }, + { + "id": "112067", + "name": "Bell Acres", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.59007000", + "longitude": "-80.16645000" + }, + { + "id": "112093", + "name": "Belle Vernon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12507000", + "longitude": "-79.86644000" + }, + { + "id": "112099", + "name": "Bellefonte", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.91339000", + "longitude": "-77.77833000" + }, + { + "id": "112107", + "name": "Belleville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.60507000", + "longitude": "-77.72555000" + }, + { + "id": "112114", + "name": "Bellevue", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.49396000", + "longitude": "-80.05172000" + }, + { + "id": "112132", + "name": "Bellwood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.60340000", + "longitude": "-78.32474000" + }, + { + "id": "112141", + "name": "Belmont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.28730000", + "longitude": "-78.88947000" + }, + { + "id": "112161", + "name": "Ben Avon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.50812000", + "longitude": "-80.08311000" + }, + { + "id": "112190", + "name": "Bentleyville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.11674000", + "longitude": "-80.00839000" + }, + { + "id": "112232", + "name": "Berks County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41630000", + "longitude": "-75.92600000" + }, + { + "id": "112236", + "name": "Berlin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.92064000", + "longitude": "-78.95780000" + }, + { + "id": "112263", + "name": "Berwick", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.05453000", + "longitude": "-76.23327000" + }, + { + "id": "112265", + "name": "Berwyn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.04483000", + "longitude": "-75.43881000" + }, + { + "id": "112269", + "name": "Bessemer", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.97478000", + "longitude": "-80.49368000" + }, + { + "id": "112287", + "name": "Bethel Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32757000", + "longitude": "-80.03950000" + }, + { + "id": "112291", + "name": "Bethlehem", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62593000", + "longitude": "-75.37046000" + }, + { + "id": "112314", + "name": "Big Bass Lake", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.25383000", + "longitude": "-75.47644000" + }, + { + "id": "112317", + "name": "Big Beaver", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82451000", + "longitude": "-80.36284000" + }, + { + "id": "112341", + "name": "Biglerville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93037000", + "longitude": "-77.24804000" + }, + { + "id": "112356", + "name": "Birchwood Lakes", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.25454000", + "longitude": "-74.91850000" + }, + { + "id": "112357", + "name": "Birdsboro", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26454000", + "longitude": "-75.80409000" + }, + { + "id": "112379", + "name": "Black Lick", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.47250000", + "longitude": "-79.18688000" + }, + { + "id": "112411", + "name": "Blair County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.48100000", + "longitude": "-78.34860000" + }, + { + "id": "112413", + "name": "Blairsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.43118000", + "longitude": "-79.26087000" + }, + { + "id": "112415", + "name": "Blakely", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.48091000", + "longitude": "-75.59463000" + }, + { + "id": "112423", + "name": "Blandon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44120000", + "longitude": "-75.88687000" + }, + { + "id": "112426", + "name": "Blawnox", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.49340000", + "longitude": "-79.86061000" + }, + { + "id": "112439", + "name": "Bloomfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.46090000", + "longitude": "-79.95089000" + }, + { + "id": "112454", + "name": "Bloomsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00370000", + "longitude": "-76.45495000" + }, + { + "id": "112455", + "name": "Blossburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.67952000", + "longitude": "-77.06386000" + }, + { + "id": "112463", + "name": "Blue Ball", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.11871000", + "longitude": "-76.04717000" + }, + { + "id": "112464", + "name": "Blue Bell", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15233000", + "longitude": "-75.26629000" + }, + { + "id": "112488", + "name": "Boalsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.77562000", + "longitude": "-77.79250000" + }, + { + "id": "112507", + "name": "Boiling Springs", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.14981000", + "longitude": "-77.12831000" + }, + { + "id": "112541", + "name": "Bonneauville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.81204000", + "longitude": "-77.13721000" + }, + { + "id": "112574", + "name": "Boothwyn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.83011000", + "longitude": "-75.44158000" + }, + { + "id": "112592", + "name": "Boswell", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.16147000", + "longitude": "-79.02892000" + }, + { + "id": "112634", + "name": "Bowmansville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.19676000", + "longitude": "-76.01744000" + }, + { + "id": "112645", + "name": "Boyertown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33371000", + "longitude": "-75.63741000" + }, + { + "id": "112656", + "name": "Brackenridge", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.60812000", + "longitude": "-79.74116000" + }, + { + "id": "112659", + "name": "Braddock", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40340000", + "longitude": "-79.86838000" + }, + { + "id": "112661", + "name": "Braddock Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41729000", + "longitude": "-79.86505000" + }, + { + "id": "112666", + "name": "Bradford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.95590000", + "longitude": "-78.64392000" + }, + { + "id": "112669", + "name": "Bradford County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.78867000", + "longitude": "-76.51545000" + }, + { + "id": "112670", + "name": "Bradford Woods", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63757000", + "longitude": "-80.08172000" + }, + { + "id": "112719", + "name": "Breinigsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.53676000", + "longitude": "-75.63130000" + }, + { + "id": "112732", + "name": "Brentwood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.37063000", + "longitude": "-79.97477000" + }, + { + "id": "112735", + "name": "Bressler", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22953000", + "longitude": "-76.81997000" + }, + { + "id": "112754", + "name": "Brickerville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22593000", + "longitude": "-76.30246000" + }, + { + "id": "112764", + "name": "Bridgeport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10511000", + "longitude": "-75.34518000" + }, + { + "id": "112773", + "name": "Bridgeville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.35618000", + "longitude": "-80.11006000" + }, + { + "id": "112808", + "name": "Bristol", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10067000", + "longitude": "-74.85183000" + }, + { + "id": "112818", + "name": "Brittany Farms-Highlands", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26901000", + "longitude": "-75.21401000" + }, + { + "id": "112835", + "name": "Brockway", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.24923000", + "longitude": "-78.79947000" + }, + { + "id": "112839", + "name": "Brodheadsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.92454000", + "longitude": "-75.39379000" + }, + { + "id": "112858", + "name": "Brookhaven", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.86928000", + "longitude": "-75.38241000" + }, + { + "id": "112896", + "name": "Brookville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.16117000", + "longitude": "-79.08309000" + }, + { + "id": "112898", + "name": "Broomall", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.98150000", + "longitude": "-75.35658000" + }, + { + "id": "112927", + "name": "Brownstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12371000", + "longitude": "-76.21384000" + }, + { + "id": "112934", + "name": "Brownsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.02369000", + "longitude": "-79.88394000" + }, + { + "id": "112936", + "name": "Browntown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.30980000", + "longitude": "-75.78742000" + }, + { + "id": "112965", + "name": "Bryn Athyn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.13150000", + "longitude": "-75.06739000" + }, + { + "id": "112966", + "name": "Bryn Mawr", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.01983000", + "longitude": "-75.30463000" + }, + { + "id": "112991", + "name": "Bucks County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33694000", + "longitude": "-75.10687000" + }, + { + "id": "113051", + "name": "Burgettstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38201000", + "longitude": "-80.39284000" + }, + { + "id": "113085", + "name": "Burnham", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63868000", + "longitude": "-77.56861000" + }, + { + "id": "113111", + "name": "Butler", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86118000", + "longitude": "-79.89533000" + }, + { + "id": "113120", + "name": "Butler County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.91172000", + "longitude": "-79.91299000" + }, + { + "id": "113217", + "name": "California", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.06563000", + "longitude": "-79.89171000" + }, + { + "id": "113228", + "name": "Caln", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.99094000", + "longitude": "-75.78022000" + }, + { + "id": "113229", + "name": "Calumet", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21090000", + "longitude": "-79.48532000" + }, + { + "id": "113247", + "name": "Cambria County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.49529000", + "longitude": "-78.71370000" + }, + { + "id": "113258", + "name": "Cambridge Springs", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.80367000", + "longitude": "-80.05644000" + }, + { + "id": "113278", + "name": "Cameron County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.43680000", + "longitude": "-78.20378000" + }, + { + "id": "113287", + "name": "Camp Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23981000", + "longitude": "-76.91997000" + }, + { + "id": "113306", + "name": "Campbelltown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27759000", + "longitude": "-76.58525000" + }, + { + "id": "113336", + "name": "Canonsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26257000", + "longitude": "-80.18728000" + }, + { + "id": "113349", + "name": "Canton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65646000", + "longitude": "-76.85329000" + }, + { + "id": "113382", + "name": "Carbon County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.91818000", + "longitude": "-75.70882000" + }, + { + "id": "113389", + "name": "Carbondale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.57369000", + "longitude": "-75.50185000" + }, + { + "id": "113405", + "name": "Carlisle", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.20148000", + "longitude": "-77.18887000" + }, + { + "id": "113426", + "name": "Carnegie", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40868000", + "longitude": "-80.08339000" + }, + { + "id": "113430", + "name": "Carnot-Moon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.51856000", + "longitude": "-80.21736000" + }, + { + "id": "113462", + "name": "Carroll Valley", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.74926000", + "longitude": "-77.38304000" + }, + { + "id": "113541", + "name": "Castanea", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.12479000", + "longitude": "-77.42970000" + }, + { + "id": "113551", + "name": "Castle Shannon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.36479000", + "longitude": "-80.02228000" + }, + { + "id": "113565", + "name": "Catasauqua", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.65482000", + "longitude": "-75.47463000" + }, + { + "id": "113568", + "name": "Catawissa", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.95203000", + "longitude": "-76.45967000" + }, + { + "id": "113599", + "name": "Cecil-Bishop", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31819000", + "longitude": "-80.19331000" + }, + { + "id": "113633", + "name": "Cementon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68926000", + "longitude": "-75.50768000" + }, + { + "id": "113641", + "name": "Center City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.95120000", + "longitude": "-75.15923000" + }, + { + "id": "113661", + "name": "Centerville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.04535000", + "longitude": "-79.97561000" + }, + { + "id": "113670", + "name": "Central City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.11063000", + "longitude": "-78.80197000" + }, + { + "id": "113689", + "name": "Centre County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.91934000", + "longitude": "-77.81995000" + }, + { + "id": "113690", + "name": "Centre Hall", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.84756000", + "longitude": "-77.68611000" + }, + { + "id": "113704", + "name": "Cetronia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.58676000", + "longitude": "-75.52963000" + }, + { + "id": "113712", + "name": "Chalfont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.28844000", + "longitude": "-75.20906000" + }, + { + "id": "113722", + "name": "Chambersburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93759000", + "longitude": "-77.66110000" + }, + { + "id": "113753", + "name": "Charleroi", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.13785000", + "longitude": "-79.89810000" + }, + { + "id": "113871", + "name": "Cherryville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.75398000", + "longitude": "-75.53852000" + }, + { + "id": "113884", + "name": "Chester", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.84967000", + "longitude": "-75.35707000" + }, + { + "id": "113897", + "name": "Chester County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.97314000", + "longitude": "-75.74845000" + }, + { + "id": "113898", + "name": "Chester Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.89011000", + "longitude": "-75.47548000" + }, + { + "id": "113899", + "name": "Chester Springs", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.09510000", + "longitude": "-75.61687000" + }, + { + "id": "113900", + "name": "Chesterbrook", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.07566000", + "longitude": "-75.45908000" + }, + { + "id": "113913", + "name": "Cheswick", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.54173000", + "longitude": "-79.79922000" + }, + { + "id": "113922", + "name": "Chevy Chase Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63673000", + "longitude": "-79.14420000" + }, + { + "id": "113946", + "name": "Chicora", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.94812000", + "longitude": "-79.74283000" + }, + { + "id": "113965", + "name": "Chinchilla", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.47508000", + "longitude": "-75.67713000" + }, + { + "id": "113999", + "name": "Christiana", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.95483000", + "longitude": "-75.99689000" + }, + { + "id": "114008", + "name": "Church Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68201000", + "longitude": "-77.59861000" + }, + { + "id": "114011", + "name": "Churchill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.43840000", + "longitude": "-79.84310000" + }, + { + "id": "114014", + "name": "Churchville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18622000", + "longitude": "-75.01878000" + }, + { + "id": "114096", + "name": "Clairton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29229000", + "longitude": "-79.88171000" + }, + { + "id": "114117", + "name": "Clarion", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.21479000", + "longitude": "-79.38532000" + }, + { + "id": "114118", + "name": "Clarion County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.19239000", + "longitude": "-79.42096000" + }, + { + "id": "114141", + "name": "Clarks Green", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.49286000", + "longitude": "-75.69964000" + }, + { + "id": "114142", + "name": "Clarks Summit", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.48869000", + "longitude": "-75.70852000" + }, + { + "id": "114168", + "name": "Clay", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21843000", + "longitude": "-76.25551000" + }, + { + "id": "114195", + "name": "Claysburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29674000", + "longitude": "-78.44974000" + }, + { + "id": "114216", + "name": "Clearfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02728000", + "longitude": "-78.43919000" + }, + { + "id": "114218", + "name": "Clearfield County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00019000", + "longitude": "-78.47411000" + }, + { + "id": "114236", + "name": "Cleona", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33731000", + "longitude": "-76.47552000" + }, + { + "id": "114263", + "name": "Clifton Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.92928000", + "longitude": "-75.29630000" + }, + { + "id": "114296", + "name": "Clinton County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.23405000", + "longitude": "-77.63811000" + }, + { + "id": "114323", + "name": "Clymer", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.66812000", + "longitude": "-79.01170000" + }, + { + "id": "114334", + "name": "Coaldale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82287000", + "longitude": "-75.90687000" + }, + { + "id": "114341", + "name": "Coatesville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.98316000", + "longitude": "-75.82384000" + }, + { + "id": "114353", + "name": "Cochranton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.52005000", + "longitude": "-80.04839000" + }, + { + "id": "114420", + "name": "Collegeville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18566000", + "longitude": "-75.45157000" + }, + { + "id": "114427", + "name": "Collingdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91178000", + "longitude": "-75.27713000" + }, + { + "id": "114432", + "name": "Collinsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22424000", + "longitude": "-79.76838000" + }, + { + "id": "114450", + "name": "Colonial Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.30064000", + "longitude": "-76.80969000" + }, + { + "id": "114453", + "name": "Colony Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.34683000", + "longitude": "-75.98240000" + }, + { + "id": "114473", + "name": "Columbia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.03371000", + "longitude": "-76.50441000" + }, + { + "id": "114481", + "name": "Columbia County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.04865000", + "longitude": "-76.40515000" + }, + { + "id": "114508", + "name": "Colwyn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91234000", + "longitude": "-75.25379000" + }, + { + "id": "114532", + "name": "Conashaugh Lakes", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.30593000", + "longitude": "-74.98962000" + }, + { + "id": "114554", + "name": "Conemaugh", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32674000", + "longitude": "-78.90808000" + }, + { + "id": "114555", + "name": "Conestoga", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.94066000", + "longitude": "-76.34635000" + }, + { + "id": "114560", + "name": "Conneaut Lakeshore", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.62711000", + "longitude": "-80.31008000" + }, + { + "id": "114562", + "name": "Connellsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.01785000", + "longitude": "-79.58948000" + }, + { + "id": "114571", + "name": "Conshohocken", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.07928000", + "longitude": "-75.30157000" + }, + { + "id": "114586", + "name": "Conway", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.65979000", + "longitude": "-80.23923000" + }, + { + "id": "114590", + "name": "Conyngham", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.99203000", + "longitude": "-76.05659000" + }, + { + "id": "114604", + "name": "Coopersburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.51149000", + "longitude": "-75.39046000" + }, + { + "id": "114618", + "name": "Coplay", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.67010000", + "longitude": "-75.49546000" + }, + { + "id": "114630", + "name": "Coraopolis", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.51840000", + "longitude": "-80.16672000" + }, + { + "id": "114659", + "name": "Cornwall", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27370000", + "longitude": "-76.40607000" + }, + { + "id": "114660", + "name": "Cornwells Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.07678000", + "longitude": "-74.94878000" + }, + { + "id": "114669", + "name": "Corry", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.92033000", + "longitude": "-79.64033000" + }, + { + "id": "114709", + "name": "Coudersport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.77479000", + "longitude": "-78.02056000" + }, + { + "id": "114754", + "name": "Crafton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.43507000", + "longitude": "-80.06617000" + }, + { + "id": "114763", + "name": "Cranberry Township", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68496000", + "longitude": "-80.10714000" + }, + { + "id": "114782", + "name": "Crawford County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.68470000", + "longitude": "-80.10628000" + }, + { + "id": "114800", + "name": "Cresson", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.45979000", + "longitude": "-78.59168000" + }, + { + "id": "114801", + "name": "Cressona", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62676000", + "longitude": "-76.19272000" + }, + { + "id": "114870", + "name": "Croydon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.08733000", + "longitude": "-74.90350000" + }, + { + "id": "114919", + "name": "Cumberland County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.16363000", + "longitude": "-77.26555000" + }, + { + "id": "114929", + "name": "Curtisville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.64229000", + "longitude": "-79.85089000" + }, + { + "id": "114930", + "name": "Curwensville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.97561000", + "longitude": "-78.52502000" + }, + { + "id": "114980", + "name": "Dale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31285000", + "longitude": "-78.90419000" + }, + { + "id": "114991", + "name": "Dallas", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33619000", + "longitude": "-75.96325000" + }, + { + "id": "114999", + "name": "Dallastown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.89954000", + "longitude": "-76.64025000" + }, + { + "id": "115003", + "name": "Dalton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.53424000", + "longitude": "-75.73603000" + }, + { + "id": "115037", + "name": "Danville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.96342000", + "longitude": "-76.61273000" + }, + { + "id": "115041", + "name": "Darby", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91845000", + "longitude": "-75.25907000" + }, + { + "id": "115056", + "name": "Dauphin County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41544000", + "longitude": "-76.77947000" + }, + { + "id": "115066", + "name": "Davidsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22702000", + "longitude": "-78.93641000" + }, + { + "id": "115208", + "name": "Delaware County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91681000", + "longitude": "-75.39890000" + }, + { + "id": "115219", + "name": "Delmont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41312000", + "longitude": "-79.57032000" + }, + { + "id": "115252", + "name": "Denver", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23315000", + "longitude": "-76.13717000" + }, + { + "id": "115266", + "name": "Derry", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33396000", + "longitude": "-79.29976000" + }, + { + "id": "115300", + "name": "Devon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.04928000", + "longitude": "-75.42908000" + }, + { + "id": "115301", + "name": "Dewart", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.10925000", + "longitude": "-76.87663000" + }, + { + "id": "115332", + "name": "Dickson City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.47147000", + "longitude": "-75.60769000" + }, + { + "id": "115346", + "name": "Dillsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.11093000", + "longitude": "-77.03498000" + }, + { + "id": "115401", + "name": "Donora", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17340000", + "longitude": "-79.85755000" + }, + { + "id": "115412", + "name": "Dormont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39590000", + "longitude": "-80.03311000" + }, + { + "id": "115413", + "name": "Dorneyville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.57510000", + "longitude": "-75.51963000" + }, + { + "id": "115451", + "name": "Dover", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00176000", + "longitude": "-76.85025000" + }, + { + "id": "115462", + "name": "Downingtown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00650000", + "longitude": "-75.70327000" + }, + { + "id": "115463", + "name": "Doylestown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31011000", + "longitude": "-75.12989000" + }, + { + "id": "115470", + "name": "Dravosburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.35063000", + "longitude": "-79.88616000" + }, + { + "id": "115472", + "name": "Dresher", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.14094000", + "longitude": "-75.16684000" + }, + { + "id": "115477", + "name": "Drexel Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.94706000", + "longitude": "-75.29213000" + }, + { + "id": "115495", + "name": "Dublin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.37177000", + "longitude": "-75.20156000" + }, + { + "id": "115487", + "name": "DuBois", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.11923000", + "longitude": "-78.76003000" + }, + { + "id": "115499", + "name": "Duboistown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.22258000", + "longitude": "-77.03691000" + }, + { + "id": "115519", + "name": "Dunbar", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.97785000", + "longitude": "-79.61448000" + }, + { + "id": "115523", + "name": "Duncannon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39814000", + "longitude": "-77.02303000" + }, + { + "id": "115524", + "name": "Duncansville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.42341000", + "longitude": "-78.43390000" + }, + { + "id": "115545", + "name": "Dunmore", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.41980000", + "longitude": "-75.63241000" + }, + { + "id": "115552", + "name": "Dunnstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.14590000", + "longitude": "-77.42137000" + }, + { + "id": "115558", + "name": "Dupont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.32508000", + "longitude": "-75.74547000" + }, + { + "id": "115561", + "name": "Duquesne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38146000", + "longitude": "-79.85977000" + }, + { + "id": "115576", + "name": "Duryea", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.34397000", + "longitude": "-75.73853000" + }, + { + "id": "115614", + "name": "Eagleview", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.05938000", + "longitude": "-75.68076000" + }, + { + "id": "115615", + "name": "Eagleville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15955000", + "longitude": "-75.40824000" + }, + { + "id": "115620", + "name": "Earlston", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00619000", + "longitude": "-78.37001000" + }, + { + "id": "115629", + "name": "East Bangor", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.87954000", + "longitude": "-75.18379000" + }, + { + "id": "115631", + "name": "East Berlin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93760000", + "longitude": "-76.97859000" + }, + { + "id": "115633", + "name": "East Berwick", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.06203000", + "longitude": "-76.22243000" + }, + { + "id": "115648", + "name": "East Conemaugh", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.34868000", + "longitude": "-78.88364000" + }, + { + "id": "115654", + "name": "East Earl", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.11010000", + "longitude": "-76.03272000" + }, + { + "id": "115673", + "name": "East Greenville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40649000", + "longitude": "-75.50185000" + }, + { + "id": "115702", + "name": "East Lansdowne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.94567000", + "longitude": "-75.26129000" + }, + { + "id": "115709", + "name": "East McKeesport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38312000", + "longitude": "-79.80644000" + }, + { + "id": "115735", + "name": "East Petersburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10010000", + "longitude": "-76.35413000" + }, + { + "id": "115736", + "name": "East Pittsburgh", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39562000", + "longitude": "-79.83866000" + }, + { + "id": "115761", + "name": "East Stroudsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.99954000", + "longitude": "-75.18129000" + }, + { + "id": "115767", + "name": "East Uniontown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.89980000", + "longitude": "-79.69782000" + }, + { + "id": "115770", + "name": "East Washington", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17368000", + "longitude": "-80.23756000" + }, + { + "id": "115775", + "name": "East York", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.97371000", + "longitude": "-76.68636000" + }, + { + "id": "115782", + "name": "Eastlawn Gardens", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.75065000", + "longitude": "-75.29573000" + }, + { + "id": "115789", + "name": "Easton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68843000", + "longitude": "-75.22073000" + }, + { + "id": "115812", + "name": "Ebensburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.48507000", + "longitude": "-78.72474000" + }, + { + "id": "115817", + "name": "Economy", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.60007000", + "longitude": "-80.22478000" + }, + { + "id": "115822", + "name": "Eddington", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.08456000", + "longitude": "-74.94489000" + }, + { + "id": "115825", + "name": "Eddystone", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.86011000", + "longitude": "-75.34436000" + }, + { + "id": "115862", + "name": "Edgewood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.43201000", + "longitude": "-79.88144000" + }, + { + "id": "115865", + "name": "Edgeworth", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.55118000", + "longitude": "-80.19284000" + }, + { + "id": "115868", + "name": "Edinboro", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.87422000", + "longitude": "-80.13172000" + }, + { + "id": "115895", + "name": "Edwardsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.26953000", + "longitude": "-75.91631000" + }, + { + "id": "115900", + "name": "Effort", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.93926000", + "longitude": "-75.43491000" + }, + { + "id": "115905", + "name": "Egypt", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68010000", + "longitude": "-75.52991000" + }, + { + "id": "115969", + "name": "Elim", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29785000", + "longitude": "-78.94253000" + }, + { + "id": "115973", + "name": "Elizabeth", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26924000", + "longitude": "-79.88977000" + }, + { + "id": "115981", + "name": "Elizabethtown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15287000", + "longitude": "-76.60275000" + }, + { + "id": "115982", + "name": "Elizabethville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.54897000", + "longitude": "-76.81192000" + }, + { + "id": "115985", + "name": "Elk County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.42523000", + "longitude": "-78.64909000" + }, + { + "id": "116007", + "name": "Elkland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.98618000", + "longitude": "-77.31081000" + }, + { + "id": "116036", + "name": "Ellport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86395000", + "longitude": "-80.25895000" + }, + { + "id": "116041", + "name": "Ellwood City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86173000", + "longitude": "-80.28645000" + }, + { + "id": "116074", + "name": "Elverson", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15676000", + "longitude": "-75.83271000" + }, + { + "id": "116087", + "name": "Elysburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86453000", + "longitude": "-76.55246000" + }, + { + "id": "116091", + "name": "Emerald Lakes", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.08842000", + "longitude": "-75.41963000" + }, + { + "id": "116098", + "name": "Emigsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.02176000", + "longitude": "-76.72802000" + }, + { + "id": "116101", + "name": "Emmaus", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.53954000", + "longitude": "-75.49685000" + }, + { + "id": "116113", + "name": "Emporium", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.51145000", + "longitude": "-78.23529000" + }, + { + "id": "116114", + "name": "Emsworth", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.51007000", + "longitude": "-80.09450000" + }, + { + "id": "116137", + "name": "Enhaut", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23176000", + "longitude": "-76.82692000" + }, + { + "id": "116140", + "name": "Enlow", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.45423000", + "longitude": "-80.23311000" + }, + { + "id": "116144", + "name": "Enola", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29009000", + "longitude": "-76.93386000" + }, + { + "id": "116155", + "name": "Ephrata", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17982000", + "longitude": "-76.17884000" + }, + { + "id": "116166", + "name": "Erie", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.12922000", + "longitude": "-80.08506000" + }, + { + "id": "116169", + "name": "Erie County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.11748000", + "longitude": "-80.09811000" + }, + { + "id": "116190", + "name": "Espy", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00620000", + "longitude": "-76.40994000" + }, + { + "id": "116216", + "name": "Etna", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.50424000", + "longitude": "-79.94894000" + }, + { + "id": "116247", + "name": "Evans City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.76923000", + "longitude": "-80.06284000" + }, + { + "id": "116249", + "name": "Evansburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18094000", + "longitude": "-75.42907000" + }, + { + "id": "116259", + "name": "Everett", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.01147000", + "longitude": "-78.37335000" + }, + { + "id": "116272", + "name": "Exeter", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.32064000", + "longitude": "-75.81908000" + }, + { + "id": "116277", + "name": "Exton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.02900000", + "longitude": "-75.62077000" + }, + { + "id": "116280", + "name": "Factoryville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.56313000", + "longitude": "-75.78269000" + }, + { + "id": "116296", + "name": "Fairchance", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.82480000", + "longitude": "-79.75449000" + }, + { + "id": "116300", + "name": "Fairdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.88702000", + "longitude": "-79.96811000" + }, + { + "id": "116327", + "name": "Fairhope", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.11368000", + "longitude": "-79.83977000" + }, + { + "id": "116332", + "name": "Fairless Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17955000", + "longitude": "-74.85516000" + }, + { + "id": "116354", + "name": "Fairview", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.03145000", + "longitude": "-80.25534000" + }, + { + "id": "116361", + "name": "Fairview-Ferndale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78037000", + "longitude": "-76.57528000" + }, + { + "id": "116383", + "name": "Falls Creek", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.14506000", + "longitude": "-78.80447000" + }, + { + "id": "116430", + "name": "Farrell", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.21228000", + "longitude": "-80.49674000" + }, + { + "id": "116437", + "name": "Faxon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.24841000", + "longitude": "-76.97719000" + }, + { + "id": "116452", + "name": "Fayette County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91990000", + "longitude": "-79.64737000" + }, + { + "id": "116458", + "name": "Fayetteville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91120000", + "longitude": "-77.54999000" + }, + { + "id": "116462", + "name": "Feasterville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.14400000", + "longitude": "-75.00517000" + }, + { + "id": "116468", + "name": "Fellsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18313000", + "longitude": "-79.82421000" + }, + { + "id": "116488", + "name": "Ferndale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.28896000", + "longitude": "-78.91475000" + }, + { + "id": "116492", + "name": "Fernway", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.69479000", + "longitude": "-80.13089000" + }, + { + "id": "116541", + "name": "Fivepointville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18287000", + "longitude": "-76.05106000" + }, + { + "id": "116558", + "name": "Fleetwood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.45398000", + "longitude": "-75.81798000" + }, + { + "id": "116563", + "name": "Flemington", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.12646000", + "longitude": "-77.47165000" + }, + { + "id": "116599", + "name": "Flourtown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10344000", + "longitude": "-75.21240000" + }, + { + "id": "116615", + "name": "Flying Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27676000", + "longitude": "-75.91410000" + }, + { + "id": "116618", + "name": "Folcroft", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.89095000", + "longitude": "-75.28380000" + }, + { + "id": "116625", + "name": "Folsom", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.88983000", + "longitude": "-75.32519000" + }, + { + "id": "116634", + "name": "Ford City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.77229000", + "longitude": "-79.52977000" + }, + { + "id": "116649", + "name": "Forest City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.65147000", + "longitude": "-75.46657000" + }, + { + "id": "116650", + "name": "Forest County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.51307000", + "longitude": "-79.23601000" + }, + { + "id": "116659", + "name": "Forest Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41979000", + "longitude": "-79.85005000" + }, + { + "id": "116762", + "name": "Fort Washington", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.14178000", + "longitude": "-75.20906000" + }, + { + "id": "116770", + "name": "Forty Fort", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.27897000", + "longitude": "-75.87825000" + }, + { + "id": "116775", + "name": "Foster Brook", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.97506000", + "longitude": "-78.61725000" + }, + { + "id": "116781", + "name": "Fountain Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.60149000", + "longitude": "-75.39518000" + }, + { + "id": "116799", + "name": "Fox Chapel", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.51340000", + "longitude": "-79.87977000" + }, + { + "id": "116800", + "name": "Fox Chase", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39557000", + "longitude": "-75.96216000" + }, + { + "id": "116808", + "name": "Fox Run", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.70229000", + "longitude": "-80.08284000" + }, + { + "id": "116810", + "name": "Frackville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78398000", + "longitude": "-76.23022000" + }, + { + "id": "116840", + "name": "Franklin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.39784000", + "longitude": "-79.83144000" + }, + { + "id": "116862", + "name": "Franklin County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.92742000", + "longitude": "-77.72127000" + }, + { + "id": "116870", + "name": "Franklin Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.58340000", + "longitude": "-80.08784000" + }, + { + "id": "116892", + "name": "Fredericksburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44370000", + "longitude": "-76.42829000" + }, + { + "id": "116902", + "name": "Freedom", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68562000", + "longitude": "-80.25173000" + }, + { + "id": "116906", + "name": "Freeland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.01675000", + "longitude": "-75.89714000" + }, + { + "id": "116909", + "name": "Freemansburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62649000", + "longitude": "-75.34574000" + }, + { + "id": "116915", + "name": "Freeport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.67395000", + "longitude": "-79.68477000" + }, + { + "id": "116945", + "name": "Friedens", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.05008000", + "longitude": "-78.99836000" + }, + { + "id": "116982", + "name": "Fullerton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63176000", + "longitude": "-75.47324000" + }, + { + "id": "116998", + "name": "Fulton County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.92534000", + "longitude": "-78.11268000" + }, + { + "id": "117030", + "name": "Galeton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.73312000", + "longitude": "-77.64193000" + }, + { + "id": "117038", + "name": "Gallitzin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.48229000", + "longitude": "-78.55168000" + }, + { + "id": "117052", + "name": "Gap", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.98732000", + "longitude": "-76.02051000" + }, + { + "id": "117068", + "name": "Garden View", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.25424000", + "longitude": "-77.04608000" + }, + { + "id": "117117", + "name": "Gastonville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.25729000", + "longitude": "-79.99588000" + }, + { + "id": "117132", + "name": "Geistown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29091000", + "longitude": "-78.86891000" + }, + { + "id": "117158", + "name": "Georgetown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93760000", + "longitude": "-76.08329000" + }, + { + "id": "117179", + "name": "Gettysburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.83093000", + "longitude": "-77.23110000" + }, + { + "id": "117192", + "name": "Gibsonia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63007000", + "longitude": "-79.96950000" + }, + { + "id": "117207", + "name": "Gilbertsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32010000", + "longitude": "-75.61018000" + }, + { + "id": "117228", + "name": "Girard", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.00033000", + "longitude": "-80.31812000" + }, + { + "id": "117229", + "name": "Girardville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.79148000", + "longitude": "-76.28356000" + }, + { + "id": "117254", + "name": "Glassport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32479000", + "longitude": "-79.89227000" + }, + { + "id": "117268", + "name": "Glen Lyon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.17508000", + "longitude": "-76.07465000" + }, + { + "id": "117272", + "name": "Glen Rock", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.79316000", + "longitude": "-76.73025000" + }, + { + "id": "117301", + "name": "Glenolden", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.90011000", + "longitude": "-75.28907000" + }, + { + "id": "117306", + "name": "Glenshaw", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.53285000", + "longitude": "-79.96755000" + }, + { + "id": "117307", + "name": "Glenside", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10233000", + "longitude": "-75.15212000" + }, + { + "id": "117344", + "name": "Gold Key Lake", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.30593000", + "longitude": "-74.93850000" + }, + { + "id": "117526", + "name": "Grantley", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.94038000", + "longitude": "-76.72913000" + }, + { + "id": "117608", + "name": "Green Tree", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41174000", + "longitude": "-80.04561000" + }, + { + "id": "117625", + "name": "Greencastle", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.79037000", + "longitude": "-77.72777000" + }, + { + "id": "117643", + "name": "Greene County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.85380000", + "longitude": "-80.22287000" + }, + { + "id": "117655", + "name": "Greenfields", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.35990000", + "longitude": "-75.95199000" + }, + { + "id": "117660", + "name": "Greenock", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31229000", + "longitude": "-79.80671000" + }, + { + "id": "117672", + "name": "Greensburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.30146000", + "longitude": "-79.53893000" + }, + { + "id": "117694", + "name": "Greenville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.40450000", + "longitude": "-80.39118000" + }, + { + "id": "117707", + "name": "Greenwood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.53590000", + "longitude": "-78.35751000" + }, + { + "id": "117736", + "name": "Grill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29870000", + "longitude": "-75.94049000" + }, + { + "id": "117756", + "name": "Grove City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.15784000", + "longitude": "-80.08867000" + }, + { + "id": "117785", + "name": "Guilford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91541000", + "longitude": "-77.60105000" + }, + { + "id": "117788", + "name": "Guilford Siding", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.86537000", + "longitude": "-77.61249000" + }, + { + "id": "117858", + "name": "Halfway House", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.28204000", + "longitude": "-75.64324000" + }, + { + "id": "117868", + "name": "Hallam", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00482000", + "longitude": "-76.60413000" + }, + { + "id": "117874", + "name": "Hallstead", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.96119000", + "longitude": "-75.74324000" + }, + { + "id": "117885", + "name": "Hamburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.55565000", + "longitude": "-75.98188000" + }, + { + "id": "117968", + "name": "Hanover", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.80066000", + "longitude": "-76.98304000" + }, + { + "id": "118020", + "name": "Harleigh", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.98064000", + "longitude": "-75.97131000" + }, + { + "id": "118025", + "name": "Harleysville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27955000", + "longitude": "-75.38712000" + }, + { + "id": "118050", + "name": "Harrisburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27370000", + "longitude": "-76.88442000" + }, + { + "id": "118116", + "name": "Harveys Lake", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.38341000", + "longitude": "-76.02465000" + }, + { + "id": "118130", + "name": "Hasson Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.44895000", + "longitude": "-79.67700000" + }, + { + "id": "118134", + "name": "Hastings", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.66507000", + "longitude": "-78.71225000" + }, + { + "id": "118136", + "name": "Hatboro", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17428000", + "longitude": "-75.10684000" + }, + { + "id": "118139", + "name": "Hatfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27983000", + "longitude": "-75.29934000" + }, + { + "id": "118169", + "name": "Hawley", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.47592000", + "longitude": "-75.18212000" + }, + { + "id": "118213", + "name": "Hazleton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.95842000", + "longitude": "-75.97465000" + }, + { + "id": "118239", + "name": "Hebron", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33898000", + "longitude": "-76.39940000" + }, + { + "id": "118245", + "name": "Heidelberg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39229000", + "longitude": "-80.09089000" + }, + { + "id": "118259", + "name": "Hellertown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.57954000", + "longitude": "-75.34073000" + }, + { + "id": "118266", + "name": "Hemlock Farms", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.32676000", + "longitude": "-75.03656000" + }, + { + "id": "118329", + "name": "Hermitage", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.23339000", + "longitude": "-80.44868000" + }, + { + "id": "118341", + "name": "Hershey", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.28592000", + "longitude": "-76.65025000" + }, + { + "id": "118414", + "name": "Highland Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62091000", + "longitude": "-77.56805000" + }, + { + "id": "118423", + "name": "Highspire", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21092000", + "longitude": "-76.79108000" + }, + { + "id": "118442", + "name": "Hilldale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.28925000", + "longitude": "-75.83631000" + }, + { + "id": "118443", + "name": "Hiller", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.01035000", + "longitude": "-79.90088000" + }, + { + "id": "118515", + "name": "Hokendauqua", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.66204000", + "longitude": "-75.49102000" + }, + { + "id": "118545", + "name": "Hollidaysburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.42729000", + "longitude": "-78.38890000" + }, + { + "id": "118588", + "name": "Homeacre-Lyndora", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.87206000", + "longitude": "-79.92060000" + }, + { + "id": "118598", + "name": "Homer City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.54340000", + "longitude": "-79.16226000" + }, + { + "id": "118602", + "name": "Homestead", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40590000", + "longitude": "-79.91199000" + }, + { + "id": "118606", + "name": "Hometown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82370000", + "longitude": "-75.98020000" + }, + { + "id": "118618", + "name": "Honesdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.57676000", + "longitude": "-75.25879000" + }, + { + "id": "118619", + "name": "Honey Brook", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.09427000", + "longitude": "-75.91133000" + }, + { + "id": "118659", + "name": "Hopwood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.87702000", + "longitude": "-79.70199000" + }, + { + "id": "118677", + "name": "Horsham", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17844000", + "longitude": "-75.12851000" + }, + { + "id": "118696", + "name": "Houserville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82395000", + "longitude": "-77.82889000" + }, + { + "id": "118700", + "name": "Houston", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24646000", + "longitude": "-80.21145000" + }, + { + "id": "118745", + "name": "Hudson", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.27480000", + "longitude": "-75.83603000" + }, + { + "id": "118761", + "name": "Hughestown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.32702000", + "longitude": "-75.77325000" + }, + { + "id": "118763", + "name": "Hughesville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.24119000", + "longitude": "-76.72385000" + }, + { + "id": "118782", + "name": "Hummels Wharf", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.83175000", + "longitude": "-76.83580000" + }, + { + "id": "118783", + "name": "Hummelstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26537000", + "longitude": "-76.70830000" + }, + { + "id": "118796", + "name": "Huntingdon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.48480000", + "longitude": "-78.01028000" + }, + { + "id": "118797", + "name": "Huntingdon County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41693000", + "longitude": "-77.98121000" + }, + { + "id": "118846", + "name": "Hyde", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00256000", + "longitude": "-78.46252000" + }, + { + "id": "118851", + "name": "Hyde Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.37732000", + "longitude": "-75.92521000" + }, + { + "id": "118882", + "name": "Imperial", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44951000", + "longitude": "-80.24450000" + }, + { + "id": "118911", + "name": "Indian Mountain Lake", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00314000", + "longitude": "-75.50824000" + }, + { + "id": "118922", + "name": "Indiana", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62146000", + "longitude": "-79.15253000" + }, + { + "id": "118923", + "name": "Indiana County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.65205000", + "longitude": "-79.08755000" + }, + { + "id": "118930", + "name": "Industry", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.64451000", + "longitude": "-80.41618000" + }, + { + "id": "118941", + "name": "Ingram", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44618000", + "longitude": "-80.06755000" + }, + { + "id": "118942", + "name": "Inkerman", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.29897000", + "longitude": "-75.81269000" + }, + { + "id": "118949", + "name": "Intercourse", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.03760000", + "longitude": "-76.10495000" + }, + { + "id": "119012", + "name": "Irwin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32451000", + "longitude": "-79.70115000" + }, + { + "id": "119052", + "name": "Ivyland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.20789000", + "longitude": "-75.07267000" + }, + { + "id": "119107", + "name": "Jacksonwald", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32454000", + "longitude": "-75.84965000" + }, + { + "id": "119108", + "name": "Jacobus", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.88316000", + "longitude": "-76.71052000" + }, + { + "id": "119159", + "name": "Jeannette", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32812000", + "longitude": "-79.61532000" + }, + { + "id": "119192", + "name": "Jefferson County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.12815000", + "longitude": "-78.99942000" + }, + { + "id": "119202", + "name": "Jefferson Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29118000", + "longitude": "-79.93199000" + }, + { + "id": "119216", + "name": "Jenkintown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.09594000", + "longitude": "-75.12517000" + }, + { + "id": "119226", + "name": "Jermyn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.53091000", + "longitude": "-75.54546000" + }, + { + "id": "119228", + "name": "Jerome", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.20896000", + "longitude": "-78.98364000" + }, + { + "id": "119233", + "name": "Jersey Shore", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.20202000", + "longitude": "-77.26442000" + }, + { + "id": "119238", + "name": "Jessup", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.46869000", + "longitude": "-75.56213000" + }, + { + "id": "119247", + "name": "Jim Thorpe", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.87592000", + "longitude": "-75.73241000" + }, + { + "id": "119274", + "name": "Johnsonburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.49062000", + "longitude": "-78.67503000" + }, + { + "id": "119285", + "name": "Johnstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32674000", + "longitude": "-78.92197000" + }, + { + "id": "119308", + "name": "Jonestown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41370000", + "longitude": "-76.47830000" + }, + { + "id": "119340", + "name": "Juniata County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.53106000", + "longitude": "-77.40216000" + }, + { + "id": "119376", + "name": "Kane", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.66284000", + "longitude": "-78.81114000" + }, + { + "id": "119455", + "name": "Kenhorst", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31065000", + "longitude": "-75.93938000" + }, + { + "id": "119458", + "name": "Kenilworth", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23149000", + "longitude": "-75.63408000" + }, + { + "id": "119460", + "name": "Kenmar", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.25341000", + "longitude": "-76.95941000" + }, + { + "id": "119474", + "name": "Kennett Square", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.84678000", + "longitude": "-75.71160000" + }, + { + "id": "119590", + "name": "King of Prussia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.08927000", + "longitude": "-75.39602000" + }, + { + "id": "119628", + "name": "Kingston", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.26175000", + "longitude": "-75.89686000" + }, + { + "id": "119661", + "name": "Kittanning", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.81645000", + "longitude": "-79.52199000" + }, + { + "id": "119683", + "name": "Knox", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.23451000", + "longitude": "-79.53727000" + }, + { + "id": "119723", + "name": "Kulpmont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.79342000", + "longitude": "-76.47245000" + }, + { + "id": "119724", + "name": "Kulpsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24288000", + "longitude": "-75.33656000" + }, + { + "id": "119728", + "name": "Kutztown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.51732000", + "longitude": "-75.77742000" + }, + { + "id": "119814", + "name": "Lackawanna County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.43679000", + "longitude": "-75.60920000" + }, + { + "id": "119843", + "name": "Lafayette Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.09245000", + "longitude": "-75.25330000" + }, + { + "id": "119845", + "name": "Laflin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.28897000", + "longitude": "-75.80547000" + }, + { + "id": "119885", + "name": "Lake City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.01422000", + "longitude": "-80.34534000" + }, + { + "id": "119920", + "name": "Lake Heritage", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.80954000", + "longitude": "-77.18387000" + }, + { + "id": "119929", + "name": "Lake Latonka", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.29039000", + "longitude": "-80.18129000" + }, + { + "id": "119940", + "name": "Lake Meade", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.98510000", + "longitude": "-77.03720000" + }, + { + "id": "120001", + "name": "Lake Wynonah", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.59926000", + "longitude": "-76.16383000" + }, + { + "id": "120021", + "name": "Lakemont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.47285000", + "longitude": "-78.38835000" + }, + { + "id": "120077", + "name": "Lampeter", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.99010000", + "longitude": "-76.23968000" + }, + { + "id": "120087", + "name": "Lancaster", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.03788000", + "longitude": "-76.30551000" + }, + { + "id": "120093", + "name": "Lancaster County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.04244000", + "longitude": "-76.24770000" + }, + { + "id": "120100", + "name": "Landisville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.09537000", + "longitude": "-76.40996000" + }, + { + "id": "120110", + "name": "Langhorne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17455000", + "longitude": "-74.92267000" + }, + { + "id": "120111", + "name": "Langhorne Manor", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.16705000", + "longitude": "-74.91767000" + }, + { + "id": "120121", + "name": "Lansdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24150000", + "longitude": "-75.28379000" + }, + { + "id": "120123", + "name": "Lansdowne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93817000", + "longitude": "-75.27185000" + }, + { + "id": "120124", + "name": "Lansford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.83176000", + "longitude": "-75.88242000" + }, + { + "id": "120135", + "name": "Laporte", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.42397000", + "longitude": "-76.49411000" + }, + { + "id": "120149", + "name": "Larksville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.24508000", + "longitude": "-75.93075000" + }, + { + "id": "120175", + "name": "Latrobe", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32118000", + "longitude": "-79.37948000" + }, + { + "id": "120202", + "name": "Laureldale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38815000", + "longitude": "-75.91798000" + }, + { + "id": "120212", + "name": "Laurys Station", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.72315000", + "longitude": "-75.53018000" + }, + { + "id": "120224", + "name": "Lawnton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.25842000", + "longitude": "-76.80386000" + }, + { + "id": "120237", + "name": "Lawrence County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.99127000", + "longitude": "-80.33419000" + }, + { + "id": "120239", + "name": "Lawrence Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.15228000", + "longitude": "-80.02311000" + }, + { + "id": "120248", + "name": "Lawson Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29174000", + "longitude": "-79.38920000" + }, + { + "id": "120293", + "name": "Lebanon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.34093000", + "longitude": "-76.41135000" + }, + { + "id": "120295", + "name": "Lebanon County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.36723000", + "longitude": "-76.45771000" + }, + { + "id": "120297", + "name": "Lebanon South", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32804000", + "longitude": "-76.40644000" + }, + { + "id": "120319", + "name": "Leechburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62701000", + "longitude": "-79.60560000" + }, + { + "id": "120327", + "name": "Leesport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44704000", + "longitude": "-75.96632000" + }, + { + "id": "120330", + "name": "Leetsdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.56312000", + "longitude": "-80.20839000" + }, + { + "id": "120335", + "name": "Lehigh County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.61271000", + "longitude": "-75.59237000" + }, + { + "id": "120336", + "name": "Lehighton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.83370000", + "longitude": "-75.71380000" + }, + { + "id": "120348", + "name": "Leith-Hatfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.87744000", + "longitude": "-79.73133000" + }, + { + "id": "120361", + "name": "Lemont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.81062000", + "longitude": "-77.81833000" + }, + { + "id": "120364", + "name": "Lemoyne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24120000", + "longitude": "-76.89414000" + }, + { + "id": "120367", + "name": "Lenape Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.76423000", + "longitude": "-79.52060000" + }, + { + "id": "120380", + "name": "Leola", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.08787000", + "longitude": "-76.18495000" + }, + { + "id": "120402", + "name": "Level Green", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39340000", + "longitude": "-79.72032000" + }, + { + "id": "120408", + "name": "Levittown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15511000", + "longitude": "-74.82877000" + }, + { + "id": "120421", + "name": "Lewisburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.96453000", + "longitude": "-76.88441000" + }, + { + "id": "120432", + "name": "Lewistown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.59924000", + "longitude": "-77.57138000" + }, + { + "id": "120467", + "name": "Liberty", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32535000", + "longitude": "-79.85616000" + }, + { + "id": "120479", + "name": "Light Street", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.03620000", + "longitude": "-76.42356000" + }, + { + "id": "120482", + "name": "Ligonier", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24313000", + "longitude": "-79.23753000" + }, + { + "id": "120488", + "name": "Lima", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91733000", + "longitude": "-75.44047000" + }, + { + "id": "120491", + "name": "Limerick", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23093000", + "longitude": "-75.52212000" + }, + { + "id": "120507", + "name": "Lincoln", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31896000", + "longitude": "-79.85477000" + }, + { + "id": "120544", + "name": "Lincoln Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31481000", + "longitude": "-75.98549000" + }, + { + "id": "120579", + "name": "Linglestown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33398000", + "longitude": "-76.78914000" + }, + { + "id": "120586", + "name": "Linntown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.95897000", + "longitude": "-76.89913000" + }, + { + "id": "120593", + "name": "Linwood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.82650000", + "longitude": "-75.42547000" + }, + { + "id": "120594", + "name": "Lionville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.05372000", + "longitude": "-75.65993000" + }, + { + "id": "120612", + "name": "Lititz", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15732000", + "longitude": "-76.30690000" + }, + { + "id": "120634", + "name": "Littlestown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.74454000", + "longitude": "-77.08804000" + }, + { + "id": "120674", + "name": "Lock Haven", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.13701000", + "longitude": "-77.44693000" + }, + { + "id": "120709", + "name": "Loganville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.85566000", + "longitude": "-76.70747000" + }, + { + "id": "120769", + "name": "Lorane", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.28843000", + "longitude": "-75.85465000" + }, + { + "id": "120775", + "name": "Loretto", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.50313000", + "longitude": "-78.63030000" + }, + { + "id": "120839", + "name": "Lower Allen", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22648000", + "longitude": "-76.90053000" + }, + { + "id": "120840", + "name": "Lower Burrell", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.55312000", + "longitude": "-79.75727000" + }, + { + "id": "120854", + "name": "Loyalhanna", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32257000", + "longitude": "-79.36226000" + }, + { + "id": "120903", + "name": "Luzerne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.28564000", + "longitude": "-75.90103000" + }, + { + "id": "120904", + "name": "Luzerne County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.17701000", + "longitude": "-75.98903000" + }, + { + "id": "120905", + "name": "Lycoming County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.34338000", + "longitude": "-77.06451000" + }, + { + "id": "120907", + "name": "Lykens", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.56675000", + "longitude": "-76.70052000" + }, + { + "id": "120932", + "name": "Lynnwood-Pricedale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.13071000", + "longitude": "-79.85135000" + }, + { + "id": "120974", + "name": "Macungie", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.51593000", + "longitude": "-75.55519000" + }, + { + "id": "121040", + "name": "Mahanoy City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.81259000", + "longitude": "-76.14160000" + }, + { + "id": "121073", + "name": "Malvern", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.03622000", + "longitude": "-75.51381000" + }, + { + "id": "121100", + "name": "Manchester", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.06315000", + "longitude": "-76.71830000" + }, + { + "id": "121118", + "name": "Manheim", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.16343000", + "longitude": "-76.39496000" + }, + { + "id": "121139", + "name": "Manor", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33396000", + "longitude": "-79.67004000" + }, + { + "id": "121147", + "name": "Mansfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.80730000", + "longitude": "-77.07747000" + }, + { + "id": "121166", + "name": "Maple Glen", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17928000", + "longitude": "-75.18045000" + }, + { + "id": "121200", + "name": "Marcus Hook", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.81928000", + "longitude": "-75.41853000" + }, + { + "id": "121210", + "name": "Marianne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.24645000", + "longitude": "-79.42893000" + }, + { + "id": "121214", + "name": "Marienville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.46895000", + "longitude": "-79.12310000" + }, + { + "id": "121218", + "name": "Marietta", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.05704000", + "longitude": "-76.55219000" + }, + { + "id": "121298", + "name": "Mars", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.69590000", + "longitude": "-80.01173000" + }, + { + "id": "121322", + "name": "Marshallton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78675000", + "longitude": "-76.53940000" + }, + { + "id": "121347", + "name": "Martinsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31119000", + "longitude": "-78.32418000" + }, + { + "id": "121359", + "name": "Marysville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.34259000", + "longitude": "-76.92997000" + }, + { + "id": "121384", + "name": "Masontown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.84674000", + "longitude": "-79.89978000" + }, + { + "id": "121398", + "name": "Matamoras", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.36870000", + "longitude": "-74.70016000" + }, + { + "id": "121437", + "name": "Mayfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.53814000", + "longitude": "-75.53602000" + }, + { + "id": "121453", + "name": "Maytown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.07537000", + "longitude": "-76.58219000" + }, + { + "id": "121461", + "name": "McAdoo", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.90127000", + "longitude": "-75.99106000" + }, + { + "id": "121477", + "name": "McConnellsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93259000", + "longitude": "-77.99889000" + }, + { + "id": "121478", + "name": "McConnellstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.45257000", + "longitude": "-78.08167000" + }, + { + "id": "121491", + "name": "McDonald", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.37090000", + "longitude": "-80.23478000" + }, + { + "id": "121503", + "name": "McGovern", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22896000", + "longitude": "-80.21645000" + }, + { + "id": "121516", + "name": "McKean County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.80775000", + "longitude": "-78.56903000" + }, + { + "id": "121518", + "name": "McKees Rocks", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.46562000", + "longitude": "-80.06561000" + }, + { + "id": "121519", + "name": "McKeesport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.34785000", + "longitude": "-79.86422000" + }, + { + "id": "121543", + "name": "McMurray", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27785000", + "longitude": "-80.08394000" + }, + { + "id": "121551", + "name": "McSherrystown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.80732000", + "longitude": "-77.01137000" + }, + { + "id": "121570", + "name": "Meadowood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.84201000", + "longitude": "-79.89394000" + }, + { + "id": "121575", + "name": "Meadville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.64144000", + "longitude": "-80.15145000" + }, + { + "id": "121580", + "name": "Mechanicsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21426000", + "longitude": "-77.00859000" + }, + { + "id": "121585", + "name": "Mechanicsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.96648000", + "longitude": "-76.58662000" + }, + { + "id": "121598", + "name": "Media", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91678000", + "longitude": "-75.38769000" + }, + { + "id": "121674", + "name": "Mercer", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.22700000", + "longitude": "-80.23979000" + }, + { + "id": "121680", + "name": "Mercer County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.30218000", + "longitude": "-80.25770000" + }, + { + "id": "121683", + "name": "Mercersburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.82787000", + "longitude": "-77.90333000" + }, + { + "id": "121693", + "name": "Meridian", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.84840000", + "longitude": "-79.96200000" + }, + { + "id": "121745", + "name": "Meyersdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.81369000", + "longitude": "-79.02475000" + }, + { + "id": "121769", + "name": "Middleburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78592000", + "longitude": "-77.04720000" + }, + { + "id": "121792", + "name": "Middletown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.19981000", + "longitude": "-76.73108000" + }, + { + "id": "121799", + "name": "Midland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63257000", + "longitude": "-80.44645000" + }, + { + "id": "121818", + "name": "Midway", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.80843000", + "longitude": "-77.00276000" + }, + { + "id": "121825", + "name": "Mifflin County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.61041000", + "longitude": "-77.61704000" + }, + { + "id": "121826", + "name": "Mifflinburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.91758000", + "longitude": "-77.04775000" + }, + { + "id": "121827", + "name": "Mifflintown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.56980000", + "longitude": "-77.39693000" + }, + { + "id": "121828", + "name": "Mifflinville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.03231000", + "longitude": "-76.30799000" + }, + { + "id": "121845", + "name": "Milesburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.94173000", + "longitude": "-77.78500000" + }, + { + "id": "121857", + "name": "Milford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.32232000", + "longitude": "-74.80239000" + }, + { + "id": "121865", + "name": "Mill Hall", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.10729000", + "longitude": "-77.48443000" + }, + { + "id": "121870", + "name": "Millbourne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.96345000", + "longitude": "-75.25018000" + }, + { + "id": "121886", + "name": "Millersburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.53953000", + "longitude": "-76.96081000" + }, + { + "id": "121889", + "name": "Millersville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.99788000", + "longitude": "-76.35413000" + }, + { + "id": "121903", + "name": "Millvale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.48007000", + "longitude": "-79.97839000" + }, + { + "id": "121910", + "name": "Milroy", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.71396000", + "longitude": "-77.59055000" + }, + { + "id": "121917", + "name": "Milton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.01203000", + "longitude": "-76.84774000" + }, + { + "id": "121943", + "name": "Minersville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.69065000", + "longitude": "-76.26217000" + }, + { + "id": "122022", + "name": "Mohnton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.28593000", + "longitude": "-75.98438000" + }, + { + "id": "122032", + "name": "Monaca", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68729000", + "longitude": "-80.27145000" + }, + { + "id": "122038", + "name": "Monessen", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.14841000", + "longitude": "-79.88783000" + }, + { + "id": "122055", + "name": "Monongahela", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.20313000", + "longitude": "-79.92616000" + }, + { + "id": "122081", + "name": "Monroe County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.05807000", + "longitude": "-75.33948000" + }, + { + "id": "122086", + "name": "Monroeville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.42118000", + "longitude": "-79.78810000" + }, + { + "id": "122092", + "name": "Mont Alto", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.84426000", + "longitude": "-77.55832000" + }, + { + "id": "122136", + "name": "Montgomery", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.17036000", + "longitude": "-76.87691000" + }, + { + "id": "122155", + "name": "Montgomery County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21083000", + "longitude": "-75.36730000" + }, + { + "id": "122157", + "name": "Montgomeryville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24733000", + "longitude": "-75.24379000" + }, + { + "id": "122173", + "name": "Montour County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02792000", + "longitude": "-76.65856000" + }, + { + "id": "122175", + "name": "Montoursville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.25425000", + "longitude": "-76.92052000" + }, + { + "id": "122183", + "name": "Montrose", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.83397000", + "longitude": "-75.87714000" + }, + { + "id": "122216", + "name": "Moosic", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.35341000", + "longitude": "-75.73825000" + }, + { + "id": "122286", + "name": "Morrisville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21150000", + "longitude": "-74.78794000" + }, + { + "id": "122292", + "name": "Morton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.90983000", + "longitude": "-75.32352000" + }, + { + "id": "122299", + "name": "Moscow", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33675000", + "longitude": "-75.51852000" + }, + { + "id": "122337", + "name": "Mount Carmel", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.79703000", + "longitude": "-76.41190000" + }, + { + "id": "122340", + "name": "Mount Cobb", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.41342000", + "longitude": "-75.49324000" + }, + { + "id": "122351", + "name": "Mount Holly Springs", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.11842000", + "longitude": "-77.18998000" + }, + { + "id": "122358", + "name": "Mount Joy", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10982000", + "longitude": "-76.50330000" + }, + { + "id": "122362", + "name": "Mount Lebanon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.35535000", + "longitude": "-80.04950000" + }, + { + "id": "122370", + "name": "Mount Oliver", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41424000", + "longitude": "-79.98783000" + }, + { + "id": "122373", + "name": "Mount Penn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32815000", + "longitude": "-75.89076000" + }, + { + "id": "122380", + "name": "Mount Pleasant", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.14896000", + "longitude": "-79.54115000" + }, + { + "id": "122384", + "name": "Mount Pocono", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.12203000", + "longitude": "-75.36463000" + }, + { + "id": "122392", + "name": "Mount Union", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38452000", + "longitude": "-77.88222000" + }, + { + "id": "122407", + "name": "Mount Wolf", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.06315000", + "longitude": "-76.70386000" + }, + { + "id": "122427", + "name": "Mountain Top", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.16953000", + "longitude": "-75.87742000" + }, + { + "id": "122437", + "name": "Mountainhome", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.17370000", + "longitude": "-75.27102000" + }, + { + "id": "122441", + "name": "Mountville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.03926000", + "longitude": "-76.43080000" + }, + { + "id": "122449", + "name": "Muhlenberg Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38482000", + "longitude": "-75.94132000" + }, + { + "id": "122466", + "name": "Muncy", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.20564000", + "longitude": "-76.78552000" + }, + { + "id": "122469", + "name": "Mundys Corner", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44479000", + "longitude": "-78.84113000" + }, + { + "id": "122473", + "name": "Munhall", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39229000", + "longitude": "-79.90005000" + }, + { + "id": "122500", + "name": "Murrysville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.42840000", + "longitude": "-79.69755000" + }, + { + "id": "122507", + "name": "Muse", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29285000", + "longitude": "-80.20034000" + }, + { + "id": "122518", + "name": "Myerstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.37454000", + "longitude": "-76.30273000" + }, + { + "id": "122541", + "name": "Nanticoke", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.20536000", + "longitude": "-76.00492000" + }, + { + "id": "122544", + "name": "Nanty Glo", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.47229000", + "longitude": "-78.83336000" + }, + { + "id": "122563", + "name": "Narberth", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00845000", + "longitude": "-75.26046000" + }, + { + "id": "122606", + "name": "Nazareth", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.74038000", + "longitude": "-75.30962000" + }, + { + "id": "122640", + "name": "Nescopeck", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.05203000", + "longitude": "-76.22077000" + }, + { + "id": "122642", + "name": "Nesquehoning", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86453000", + "longitude": "-75.81103000" + }, + { + "id": "122661", + "name": "New Beaver", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.87645000", + "longitude": "-80.37062000" + }, + { + "id": "122665", + "name": "New Berlinville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.34537000", + "longitude": "-75.63296000" + }, + { + "id": "122667", + "name": "New Bloomfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41981000", + "longitude": "-77.18637000" + }, + { + "id": "122673", + "name": "New Brighton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73034000", + "longitude": "-80.31006000" + }, + { + "id": "122675", + "name": "New Britain", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29900000", + "longitude": "-75.18101000" + }, + { + "id": "122688", + "name": "New Castle", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00367000", + "longitude": "-80.34701000" + }, + { + "id": "122691", + "name": "New Castle Northwest", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.02208000", + "longitude": "-80.35682000" + }, + { + "id": "122696", + "name": "New Columbia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.04092000", + "longitude": "-76.86691000" + }, + { + "id": "122697", + "name": "New Cumberland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23231000", + "longitude": "-76.88470000" + }, + { + "id": "122702", + "name": "New Eagle", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.20785000", + "longitude": "-79.94699000" + }, + { + "id": "122707", + "name": "New Freedom", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.73788000", + "longitude": "-76.70136000" + }, + { + "id": "122721", + "name": "New Holland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10176000", + "longitude": "-76.08523000" + }, + { + "id": "122727", + "name": "New Hope", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.36427000", + "longitude": "-74.95128000" + }, + { + "id": "122733", + "name": "New Kensington", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.56979000", + "longitude": "-79.76477000" + }, + { + "id": "122757", + "name": "New Oxford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.86371000", + "longitude": "-77.05581000" + }, + { + "id": "122762", + "name": "New Philadelphia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.71953000", + "longitude": "-76.11577000" + }, + { + "id": "122783", + "name": "New Stanton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21924000", + "longitude": "-79.60948000" + }, + { + "id": "122792", + "name": "New Wilmington", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.12228000", + "longitude": "-80.33284000" + }, + { + "id": "122835", + "name": "Newmanstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.34954000", + "longitude": "-76.21328000" + }, + { + "id": "122848", + "name": "Newport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.47786000", + "longitude": "-77.13054000" + }, + { + "id": "122874", + "name": "Newtown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22928000", + "longitude": "-74.93683000" + }, + { + "id": "122876", + "name": "Newtown Grant", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26011000", + "longitude": "-74.95489000" + }, + { + "id": "122877", + "name": "Newville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17314000", + "longitude": "-77.39860000" + }, + { + "id": "122914", + "name": "Nixon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78340000", + "longitude": "-79.92950000" + }, + { + "id": "122957", + "name": "Norristown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12150000", + "longitude": "-75.33990000" + }, + { + "id": "122964", + "name": "North Apollo", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.59618000", + "longitude": "-79.55560000" + }, + { + "id": "122980", + "name": "North Belle Vernon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12924000", + "longitude": "-79.86810000" + }, + { + "id": "122992", + "name": "North Braddock", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39896000", + "longitude": "-79.84088000" + }, + { + "id": "123002", + "name": "North Catasauqua", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.65982000", + "longitude": "-75.47685000" + }, + { + "id": "123004", + "name": "North Charleroi", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15118000", + "longitude": "-79.90755000" + }, + { + "id": "123018", + "name": "North East", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.21561000", + "longitude": "-79.83422000" + }, + { + "id": "123122", + "name": "North Versailles", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.37979000", + "longitude": "-79.80949000" + }, + { + "id": "123123", + "name": "North Wales", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21094000", + "longitude": "-75.27823000" + }, + { + "id": "123125", + "name": "North Warren", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.87423000", + "longitude": "-79.15227000" + }, + { + "id": "123133", + "name": "North York", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.97815000", + "longitude": "-76.73302000" + }, + { + "id": "123135", + "name": "Northampton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68621000", + "longitude": "-75.49685000" + }, + { + "id": "123138", + "name": "Northampton County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.75423000", + "longitude": "-75.30742000" + }, + { + "id": "123147", + "name": "Northern Cambria", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.65923000", + "longitude": "-78.78169000" + }, + { + "id": "123166", + "name": "Northumberland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.89175000", + "longitude": "-76.79747000" + }, + { + "id": "123168", + "name": "Northumberland County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.85198000", + "longitude": "-76.70932000" + }, + { + "id": "123175", + "name": "Northwest Harborcreek", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.14944000", + "longitude": "-79.99463000" + }, + { + "id": "123198", + "name": "Norwood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.89178000", + "longitude": "-75.29963000" + }, + { + "id": "123247", + "name": "Oak Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82479000", + "longitude": "-79.91311000" + }, + { + "id": "123273", + "name": "Oakdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39812000", + "longitude": "-80.18561000" + }, + { + "id": "123292", + "name": "Oakland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.30646000", + "longitude": "-78.88752000" + }, + { + "id": "123302", + "name": "Oakmont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.52173000", + "longitude": "-79.84227000" + }, + { + "id": "123311", + "name": "Oakwood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.01062000", + "longitude": "-80.37951000" + }, + { + "id": "123385", + "name": "Ohioville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.67923000", + "longitude": "-80.49479000" + }, + { + "id": "123387", + "name": "Oil City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.43395000", + "longitude": "-79.70644000" + }, + { + "id": "123419", + "name": "Old Forge", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.37119000", + "longitude": "-75.73491000" + }, + { + "id": "123424", + "name": "Old Orchard", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.65788000", + "longitude": "-75.26212000" + }, + { + "id": "123436", + "name": "Oley", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38759000", + "longitude": "-75.78964000" + }, + { + "id": "123442", + "name": "Oliver", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91869000", + "longitude": "-79.71782000" + }, + { + "id": "123462", + "name": "Olyphant", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.46841000", + "longitude": "-75.60297000" + }, + { + "id": "123534", + "name": "Orchard Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.58618000", + "longitude": "-79.53143000" + }, + { + "id": "123550", + "name": "Oreland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.11844000", + "longitude": "-75.17768000" + }, + { + "id": "123585", + "name": "Orwigsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.65481000", + "longitude": "-76.10077000" + }, + { + "id": "123606", + "name": "Osceola Mills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.85006000", + "longitude": "-78.27057000" + }, + { + "id": "123680", + "name": "Oxford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.78539000", + "longitude": "-75.97883000" + }, + { + "id": "123756", + "name": "Palmdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29787000", + "longitude": "-76.61858000" + }, + { + "id": "123761", + "name": "Palmer Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68732000", + "longitude": "-75.26240000" + }, + { + "id": "123763", + "name": "Palmerton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.80140000", + "longitude": "-75.61190000" + }, + { + "id": "123777", + "name": "Palmyra", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.30898000", + "longitude": "-76.59330000" + }, + { + "id": "123780", + "name": "Palo Alto", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68731000", + "longitude": "-76.17216000" + }, + { + "id": "123812", + "name": "Paoli", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.04205000", + "longitude": "-75.47631000" + }, + { + "id": "123817", + "name": "Paradise", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00982000", + "longitude": "-76.12857000" + }, + { + "id": "123846", + "name": "Park Forest Village", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.80673000", + "longitude": "-77.91695000" + }, + { + "id": "123869", + "name": "Parkesburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.95872000", + "longitude": "-75.91939000" + }, + { + "id": "123875", + "name": "Parkside", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.86428000", + "longitude": "-75.37853000" + }, + { + "id": "123879", + "name": "Parkville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.78121000", + "longitude": "-76.96331000" + }, + { + "id": "123918", + "name": "Patton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63396000", + "longitude": "-78.65030000" + }, + { + "id": "123940", + "name": "Paxtang", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.25898000", + "longitude": "-76.83192000" + }, + { + "id": "123943", + "name": "Paxtonia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31731000", + "longitude": "-76.79442000" + }, + { + "id": "124011", + "name": "Pen Argyl", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86871000", + "longitude": "-75.25490000" + }, + { + "id": "124012", + "name": "Penbrook", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27537000", + "longitude": "-76.84803000" + }, + { + "id": "124022", + "name": "Penn Estates", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.03750000", + "longitude": "-75.23956000" + }, + { + "id": "124023", + "name": "Penn Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.50118000", + "longitude": "-79.83922000" + }, + { + "id": "124025", + "name": "Penn Wynne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.98622000", + "longitude": "-75.27546000" + }, + { + "id": "124027", + "name": "Penndel", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15205000", + "longitude": "-74.91656000" + }, + { + "id": "124036", + "name": "Pennsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39093000", + "longitude": "-75.49212000" + }, + { + "id": "124037", + "name": "Pennside", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33732000", + "longitude": "-75.87854000" + }, + { + "id": "124038", + "name": "Pennsport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.92761000", + "longitude": "-75.15045000" + }, + { + "id": "124040", + "name": "Pennville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.78954000", + "longitude": "-76.99804000" + }, + { + "id": "124044", + "name": "Penryn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.20509000", + "longitude": "-76.36829000" + }, + { + "id": "124061", + "name": "Perkasie", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.37205000", + "longitude": "-75.29268000" + }, + { + "id": "124082", + "name": "Perry County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39841000", + "longitude": "-77.26230000" + }, + { + "id": "124086", + "name": "Perryopolis", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.08702000", + "longitude": "-79.75060000" + }, + { + "id": "124126", + "name": "Philadelphia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.95233000", + "longitude": "-75.16379000" + }, + { + "id": "124128", + "name": "Philadelphia County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00764000", + "longitude": "-75.13396000" + }, + { + "id": "124131", + "name": "Philipsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.89645000", + "longitude": "-78.22057000" + }, + { + "id": "124151", + "name": "Phoenixville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.13038000", + "longitude": "-75.51491000" + }, + { + "id": "124193", + "name": "Pike County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33199000", + "longitude": "-75.03383000" + }, + { + "id": "124221", + "name": "Pine Grove", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.54842000", + "longitude": "-76.38468000" + }, + { + "id": "124223", + "name": "Pine Grove Mills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.73367000", + "longitude": "-77.88556000" + }, + { + "id": "124244", + "name": "Pine Ridge", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.14598000", + "longitude": "-74.99116000" + }, + { + "id": "124285", + "name": "Pitcairn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40312000", + "longitude": "-79.77810000" + }, + { + "id": "124296", + "name": "Pittsburgh", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44062000", + "longitude": "-79.99589000" + }, + { + "id": "124304", + "name": "Pittston", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.32591000", + "longitude": "-75.78936000" + }, + { + "id": "124323", + "name": "Plains", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.27536000", + "longitude": "-75.85020000" + }, + { + "id": "124364", + "name": "Pleasant Gap", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86812000", + "longitude": "-77.74667000" + }, + { + "id": "124371", + "name": "Pleasant Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33620000", + "longitude": "-76.44163000" + }, + { + "id": "124374", + "name": "Pleasant Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33563000", + "longitude": "-79.96061000" + }, + { + "id": "124392", + "name": "Plum", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.50035000", + "longitude": "-79.74949000" + }, + { + "id": "124398", + "name": "Plumsteadville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38733000", + "longitude": "-75.14656000" + }, + { + "id": "124407", + "name": "Plymouth", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.24036000", + "longitude": "-75.94464000" + }, + { + "id": "124411", + "name": "Plymouth Meeting", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10233000", + "longitude": "-75.27435000" + }, + { + "id": "124421", + "name": "Pocono Pines", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.10675000", + "longitude": "-75.45435000" + }, + { + "id": "124422", + "name": "Pocono Ranch Lands", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.16454000", + "longitude": "-74.95212000" + }, + { + "id": "124429", + "name": "Point Marion", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.73897000", + "longitude": "-79.89867000" + }, + { + "id": "124491", + "name": "Port Allegany", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.81090000", + "longitude": "-78.27974000" + }, + { + "id": "124501", + "name": "Port Carbon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.69648000", + "longitude": "-76.16883000" + }, + { + "id": "124538", + "name": "Port Vue", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33590000", + "longitude": "-79.86977000" + }, + { + "id": "124545", + "name": "Portage", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38868000", + "longitude": "-78.67224000" + }, + { + "id": "124592", + "name": "Potter County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74492000", + "longitude": "-77.89581000" + }, + { + "id": "124598", + "name": "Pottsgrove", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26482000", + "longitude": "-75.61185000" + }, + { + "id": "124599", + "name": "Pottstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24537000", + "longitude": "-75.64963000" + }, + { + "id": "124601", + "name": "Pottsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68565000", + "longitude": "-76.19550000" + }, + { + "id": "124702", + "name": "Progress", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.28509000", + "longitude": "-76.83136000" + }, + { + "id": "124707", + "name": "Prospect", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.90451000", + "longitude": "-80.04645000" + }, + { + "id": "124709", + "name": "Prospect Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.88789000", + "longitude": "-75.30824000" + }, + { + "id": "124751", + "name": "Punxsutawney", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.94368000", + "longitude": "-78.97087000" + }, + { + "id": "124772", + "name": "Pymatuning Central", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.58546000", + "longitude": "-80.47960000" + }, + { + "id": "124778", + "name": "Quakertown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44177000", + "longitude": "-75.34157000" + }, + { + "id": "124781", + "name": "Quarryville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.89705000", + "longitude": "-76.16357000" + }, + { + "id": "124818", + "name": "Radnor", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.04622000", + "longitude": "-75.35991000" + }, + { + "id": "124883", + "name": "Rankin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.41257000", + "longitude": "-79.87922000" + }, + { + "id": "124902", + "name": "Raubsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63566000", + "longitude": "-75.19295000" + }, + { + "id": "124931", + "name": "Reading", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33565000", + "longitude": "-75.92687000" + }, + { + "id": "124934", + "name": "Reamstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21148000", + "longitude": "-76.12328000" + }, + { + "id": "124947", + "name": "Red Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.37288000", + "longitude": "-75.48101000" + }, + { + "id": "124953", + "name": "Red Lion", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.90093000", + "longitude": "-76.60580000" + }, + { + "id": "125009", + "name": "Reiffton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31981000", + "longitude": "-75.87354000" + }, + { + "id": "125011", + "name": "Reinholds", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26676000", + "longitude": "-76.11550000" + }, + { + "id": "125018", + "name": "Rennerdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39840000", + "longitude": "-80.14145000" + }, + { + "id": "125022", + "name": "Renovo", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.32646000", + "longitude": "-77.75082000" + }, + { + "id": "125031", + "name": "Republic", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.96258000", + "longitude": "-79.87671000" + }, + { + "id": "125041", + "name": "Reynolds Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.34506000", + "longitude": "-80.39423000" + }, + { + "id": "125042", + "name": "Reynoldsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.09701000", + "longitude": "-78.88864000" + }, + { + "id": "125044", + "name": "Rheems", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.13009000", + "longitude": "-76.57052000" + }, + { + "id": "125060", + "name": "Richboro", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.21511000", + "longitude": "-75.01072000" + }, + { + "id": "125071", + "name": "Richland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.35926000", + "longitude": "-76.25828000" + }, + { + "id": "125083", + "name": "Richlandtown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.47010000", + "longitude": "-75.32046000" + }, + { + "id": "125133", + "name": "Ridgway", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.42034000", + "longitude": "-78.72864000" + }, + { + "id": "125134", + "name": "Ridley Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.88122000", + "longitude": "-75.32380000" + }, + { + "id": "125189", + "name": "River View Park", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39259000", + "longitude": "-75.95882000" + }, + { + "id": "125208", + "name": "Riverside", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.95536000", + "longitude": "-76.62885000" + }, + { + "id": "125233", + "name": "Roaring Spring", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33591000", + "longitude": "-78.39085000" + }, + { + "id": "125250", + "name": "Robesonia", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.35176000", + "longitude": "-76.13439000" + }, + { + "id": "125268", + "name": "Rochester", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.70229000", + "longitude": "-80.28645000" + }, + { + "id": "125312", + "name": "Rockledge", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.08122000", + "longitude": "-75.08962000" + }, + { + "id": "125438", + "name": "Roseto", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.88065000", + "longitude": "-75.21462000" + }, + { + "id": "125466", + "name": "Rothsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15121000", + "longitude": "-76.25107000" + }, + { + "id": "125497", + "name": "Royalton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18731000", + "longitude": "-76.72997000" + }, + { + "id": "125498", + "name": "Royersford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18427000", + "longitude": "-75.53796000" + }, + { + "id": "125535", + "name": "Russell", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.94145000", + "longitude": "-79.13505000" + }, + { + "id": "125541", + "name": "Russellton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.61146000", + "longitude": "-79.83700000" + }, + { + "id": "125550", + "name": "Rutherford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26898000", + "longitude": "-76.76803000" + }, + { + "id": "125620", + "name": "Saint Clair", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.72065000", + "longitude": "-76.19105000" + }, + { + "id": "125678", + "name": "Saint Lawrence", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32704000", + "longitude": "-75.87187000" + }, + { + "id": "125694", + "name": "Saint Marys", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.42784000", + "longitude": "-78.56086000" + }, + { + "id": "125761", + "name": "Salix", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.30008000", + "longitude": "-78.76530000" + }, + { + "id": "125775", + "name": "Salunga", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10093000", + "longitude": "-76.42469000" + }, + { + "id": "125852", + "name": "Sanatoga", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24510000", + "longitude": "-75.59518000" + }, + { + "id": "125858", + "name": "Sand Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.35954000", + "longitude": "-76.43163000" + }, + { + "id": "125879", + "name": "Sandy", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.10784000", + "longitude": "-78.77114000" + }, + { + "id": "125979", + "name": "Saw Creek", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.11259000", + "longitude": "-75.05073000" + }, + { + "id": "125985", + "name": "Saxonburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.75395000", + "longitude": "-79.81005000" + }, + { + "id": "125987", + "name": "Saylorsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.89565000", + "longitude": "-75.32352000" + }, + { + "id": "125990", + "name": "Sayre", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.97896000", + "longitude": "-76.51550000" + }, + { + "id": "126010", + "name": "Schlusser", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24175000", + "longitude": "-77.17693000" + }, + { + "id": "126011", + "name": "Schnecksville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.67514000", + "longitude": "-75.62044000" + }, + { + "id": "126012", + "name": "Schoeneck", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24148000", + "longitude": "-76.17411000" + }, + { + "id": "126026", + "name": "Schuylkill County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.70580000", + "longitude": "-76.21595000" + }, + { + "id": "126027", + "name": "Schuylkill Haven", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63065000", + "longitude": "-76.17105000" + }, + { + "id": "126028", + "name": "Schwenksville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.25621000", + "longitude": "-75.46379000" + }, + { + "id": "126035", + "name": "Scotland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.96870000", + "longitude": "-77.58721000" + }, + { + "id": "126056", + "name": "Scottdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.10035000", + "longitude": "-79.58698000" + }, + { + "id": "126067", + "name": "Scranton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.40916000", + "longitude": "-75.66490000" + }, + { + "id": "126134", + "name": "Selinsgrove", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.79897000", + "longitude": "-76.86219000" + }, + { + "id": "126136", + "name": "Sellersville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.35399000", + "longitude": "-75.30490000" + }, + { + "id": "126158", + "name": "Seneca", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.37867000", + "longitude": "-79.70394000" + }, + { + "id": "126172", + "name": "Seven Fields", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.69173000", + "longitude": "-80.06256000" + }, + { + "id": "126191", + "name": "Sewickley", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.53646000", + "longitude": "-80.18450000" + }, + { + "id": "126214", + "name": "Shamokin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78897000", + "longitude": "-76.55885000" + }, + { + "id": "126215", + "name": "Shamokin Dam", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.84870000", + "longitude": "-76.81969000" + }, + { + "id": "126223", + "name": "Shanor-Northvue", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.91045000", + "longitude": "-79.91562000" + }, + { + "id": "126229", + "name": "Sharon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.23311000", + "longitude": "-80.49340000" + }, + { + "id": "126231", + "name": "Sharon Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.90650000", + "longitude": "-75.27157000" + }, + { + "id": "126236", + "name": "Sharpsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.49451000", + "longitude": "-79.92644000" + }, + { + "id": "126237", + "name": "Sharpsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.25922000", + "longitude": "-80.47201000" + }, + { + "id": "126243", + "name": "Shavertown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.31980000", + "longitude": "-75.93798000" + }, + { + "id": "126261", + "name": "Sheffield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.70395000", + "longitude": "-79.03560000" + }, + { + "id": "126304", + "name": "Shenandoah", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82037000", + "longitude": "-76.20077000" + }, + { + "id": "126307", + "name": "Shenandoah Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82759000", + "longitude": "-76.20688000" + }, + { + "id": "126347", + "name": "Shillington", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.30787000", + "longitude": "-75.96549000" + }, + { + "id": "126349", + "name": "Shiloh", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.97815000", + "longitude": "-76.79719000" + }, + { + "id": "126352", + "name": "Shinglehouse", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.96368000", + "longitude": "-78.19084000" + }, + { + "id": "126357", + "name": "Shippensburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.05065000", + "longitude": "-77.52026000" + }, + { + "id": "126359", + "name": "Shiremanstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22342000", + "longitude": "-76.95359000" + }, + { + "id": "126365", + "name": "Shoemakersville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.50093000", + "longitude": "-75.96993000" + }, + { + "id": "126384", + "name": "Shrewsbury", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.76871000", + "longitude": "-76.67969000" + }, + { + "id": "126405", + "name": "Sierra View", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.01207000", + "longitude": "-75.45900000" + }, + { + "id": "126448", + "name": "Simpson", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.59175000", + "longitude": "-75.48518000" + }, + { + "id": "126455", + "name": "Sinking Spring", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32731000", + "longitude": "-76.01105000" + }, + { + "id": "126481", + "name": "Skippack", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22288000", + "longitude": "-75.39879000" + }, + { + "id": "126487", + "name": "Skyline View", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33926000", + "longitude": "-76.72553000" + }, + { + "id": "126492", + "name": "Slatington", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.74843000", + "longitude": "-75.61185000" + }, + { + "id": "126503", + "name": "Slippery Rock", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.06395000", + "longitude": "-80.05645000" + }, + { + "id": "126509", + "name": "Smethport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.81117000", + "longitude": "-78.44474000" + }, + { + "id": "126551", + "name": "Snyder County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.76984000", + "longitude": "-77.07019000" + }, + { + "id": "126584", + "name": "Somerset", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.00841000", + "longitude": "-79.07808000" + }, + { + "id": "126589", + "name": "Somerset County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.97244000", + "longitude": "-79.02827000" + }, + { + "id": "126607", + "name": "Souderton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31177000", + "longitude": "-75.32518000" + }, + { + "id": "126640", + "name": "South Coatesville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.97427000", + "longitude": "-75.81995000" + }, + { + "id": "126642", + "name": "South Connellsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.99674000", + "longitude": "-79.58587000" + }, + { + "id": "126663", + "name": "South Greensburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27840000", + "longitude": "-79.54476000" + }, + { + "id": "126704", + "name": "South Park Township", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29864000", + "longitude": "-79.99405000" + }, + { + "id": "126715", + "name": "South Pottstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23954000", + "longitude": "-75.65102000" + }, + { + "id": "126734", + "name": "South Temple", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40000000", + "longitude": "-75.90000000" + }, + { + "id": "126738", + "name": "South Uniontown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.89285000", + "longitude": "-79.74699000" + }, + { + "id": "126744", + "name": "South Waverly", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.99757000", + "longitude": "-76.53717000" + }, + { + "id": "126750", + "name": "South Williamsport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.23202000", + "longitude": "-76.99913000" + }, + { + "id": "126780", + "name": "Southmont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31063000", + "longitude": "-78.93864000" + }, + { + "id": "126789", + "name": "Southwest Greensburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29118000", + "longitude": "-79.54698000" + }, + { + "id": "126797", + "name": "Spangler", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.64285000", + "longitude": "-78.77280000" + }, + { + "id": "126819", + "name": "Speers", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12452000", + "longitude": "-79.87977000" + }, + { + "id": "126837", + "name": "Spinnerstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.43899000", + "longitude": "-75.43712000" + }, + { + "id": "126852", + "name": "Spring City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17677000", + "longitude": "-75.54769000" + }, + { + "id": "126857", + "name": "Spring Grove", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.87454000", + "longitude": "-76.86581000" + }, + { + "id": "126864", + "name": "Spring House", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18539000", + "longitude": "-75.22768000" + }, + { + "id": "126870", + "name": "Spring Mount", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27566000", + "longitude": "-75.45657000" + }, + { + "id": "126873", + "name": "Spring Ridge", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.35287000", + "longitude": "-75.98994000" + }, + { + "id": "126887", + "name": "Springdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.54090000", + "longitude": "-79.78394000" + }, + { + "id": "126894", + "name": "Springfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93067000", + "longitude": "-75.32019000" + }, + { + "id": "126920", + "name": "Spry", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91843000", + "longitude": "-76.68497000" + }, + { + "id": "126992", + "name": "State College", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.79339000", + "longitude": "-77.86000000" + }, + { + "id": "126993", + "name": "State Line", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.72482000", + "longitude": "-77.72444000" + }, + { + "id": "127013", + "name": "Steelton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23537000", + "longitude": "-76.84136000" + }, + { + "id": "127053", + "name": "Stewartstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.75371000", + "longitude": "-76.59136000" + }, + { + "id": "127058", + "name": "Stiles", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.66537000", + "longitude": "-75.50824000" + }, + { + "id": "127086", + "name": "Stoneboro", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.33922000", + "longitude": "-80.10506000" + }, + { + "id": "127097", + "name": "Stony Creek Mills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.34565000", + "longitude": "-75.86993000" + }, + { + "id": "127101", + "name": "Stonybrook", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.98704000", + "longitude": "-76.64413000" + }, + { + "id": "127104", + "name": "Stormstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.79339000", + "longitude": "-78.01667000" + }, + { + "id": "127113", + "name": "Stowe", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.25260000", + "longitude": "-75.67741000" + }, + { + "id": "127119", + "name": "Strasburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.98316000", + "longitude": "-76.18412000" + }, + { + "id": "127140", + "name": "Stroudsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.98676000", + "longitude": "-75.19462000" + }, + { + "id": "127148", + "name": "Sturgeon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38479000", + "longitude": "-80.21089000" + }, + { + "id": "127174", + "name": "Sugarcreek", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.42145000", + "longitude": "-79.88117000" + }, + { + "id": "127191", + "name": "Sullivan County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.44616000", + "longitude": "-76.51214000" + }, + { + "id": "127218", + "name": "Summit Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82481000", + "longitude": "-75.87103000" + }, + { + "id": "127239", + "name": "Sun Valley", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.98203000", + "longitude": "-75.46602000" + }, + { + "id": "127245", + "name": "Sunbury", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.86259000", + "longitude": "-76.79441000" + }, + { + "id": "127268", + "name": "Sunrise Lake", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.30981000", + "longitude": "-74.96656000" + }, + { + "id": "127297", + "name": "Susquehanna", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.94341000", + "longitude": "-75.59963000" + }, + { + "id": "127298", + "name": "Susquehanna County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.82133000", + "longitude": "-75.80068000" + }, + { + "id": "127299", + "name": "Susquehanna Trails", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.75872000", + "longitude": "-76.36802000" + }, + { + "id": "127330", + "name": "Swarthmore", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.90206000", + "longitude": "-75.34991000" + }, + { + "id": "127333", + "name": "Swartzville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23315000", + "longitude": "-76.07828000" + }, + { + "id": "127348", + "name": "Swissvale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.42368000", + "longitude": "-79.88283000" + }, + { + "id": "127350", + "name": "Swoyersville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.29175000", + "longitude": "-75.87464000" + }, + { + "id": "127353", + "name": "Sykesville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.05034000", + "longitude": "-78.82225000" + }, + { + "id": "127370", + "name": "Tacony", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.03122000", + "longitude": "-75.04434000" + }, + { + "id": "127404", + "name": "Tamaqua", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.79731000", + "longitude": "-75.96937000" + }, + { + "id": "127419", + "name": "Tannersville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.04009000", + "longitude": "-75.30574000" + }, + { + "id": "127429", + "name": "Tarentum", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.60146000", + "longitude": "-79.75977000" + }, + { + "id": "127437", + "name": "Tatamy", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.74093000", + "longitude": "-75.25712000" + }, + { + "id": "127449", + "name": "Taylor", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.39480000", + "longitude": "-75.70658000" + }, + { + "id": "127487", + "name": "Telford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32205000", + "longitude": "-75.32795000" + }, + { + "id": "127500", + "name": "Temple", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40870000", + "longitude": "-75.92160000" + }, + { + "id": "127522", + "name": "Terre Hill", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15732000", + "longitude": "-76.05050000" + }, + { + "id": "127560", + "name": "The Hideout", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.42736000", + "longitude": "-75.35255000" + }, + { + "id": "127595", + "name": "Thompsonville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.29090000", + "longitude": "-80.10811000" + }, + { + "id": "127599", + "name": "Thorndale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.99288000", + "longitude": "-75.74522000" + }, + { + "id": "127626", + "name": "Throop", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.45147000", + "longitude": "-75.61185000" + }, + { + "id": "127665", + "name": "Tinicum", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44844000", + "longitude": "-75.10767000" + }, + { + "id": "127670", + "name": "Tioga County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.77216000", + "longitude": "-77.25426000" + }, + { + "id": "127671", + "name": "Tionesta", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.49534000", + "longitude": "-79.45588000" + }, + { + "id": "127677", + "name": "Tipton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.63590000", + "longitude": "-78.29585000" + }, + { + "id": "127686", + "name": "Titusville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.62700000", + "longitude": "-79.67366000" + }, + { + "id": "127696", + "name": "Toftrees", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82604000", + "longitude": "-77.88110000" + }, + { + "id": "127737", + "name": "Topton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.50343000", + "longitude": "-75.70130000" + }, + { + "id": "127748", + "name": "Toughkenamon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.83150000", + "longitude": "-75.75744000" + }, + { + "id": "127750", + "name": "Towamensing Trails", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.00787000", + "longitude": "-75.58463000" + }, + { + "id": "127752", + "name": "Towanda", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.76758000", + "longitude": "-76.44272000" + }, + { + "id": "127754", + "name": "Tower City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.58925000", + "longitude": "-76.55246000" + }, + { + "id": "127776", + "name": "Trafford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.38562000", + "longitude": "-79.75893000" + }, + { + "id": "127779", + "name": "Trainer", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.82761000", + "longitude": "-75.41436000" + }, + { + "id": "127782", + "name": "Trappe", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.19899000", + "longitude": "-75.47629000" + }, + { + "id": "127791", + "name": "Treasure Lake", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.17339000", + "longitude": "-78.71586000" + }, + { + "id": "127796", + "name": "Tremont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62842000", + "longitude": "-76.38718000" + }, + { + "id": "127813", + "name": "Trevorton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78120000", + "longitude": "-76.67302000" + }, + { + "id": "127814", + "name": "Trevose", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.13928000", + "longitude": "-74.98100000" + }, + { + "id": "127815", + "name": "Trexlertown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.54815000", + "longitude": "-75.60574000" + }, + { + "id": "127833", + "name": "Trooper", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.14983000", + "longitude": "-75.40185000" + }, + { + "id": "127852", + "name": "Troy", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.78591000", + "longitude": "-76.78801000" + }, + { + "id": "127854", + "name": "Trucksville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.30397000", + "longitude": "-75.93214000" + }, + { + "id": "127887", + "name": "Tullytown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.13928000", + "longitude": "-74.81461000" + }, + { + "id": "127894", + "name": "Tunkhannock", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.53869000", + "longitude": "-75.94659000" + }, + { + "id": "127907", + "name": "Turtle Creek", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40590000", + "longitude": "-79.82505000" + }, + { + "id": "127950", + "name": "Tyrone", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.67062000", + "longitude": "-78.23862000" + }, + { + "id": "127986", + "name": "Union City", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.89950000", + "longitude": "-79.84533000" + }, + { + "id": "128000", + "name": "Union County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.96297000", + "longitude": "-77.06225000" + }, + { + "id": "128016", + "name": "Uniontown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.90008000", + "longitude": "-79.71643000" + }, + { + "id": "128037", + "name": "Upland", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.85261000", + "longitude": "-75.38269000" + }, + { + "id": "128051", + "name": "Upper Saint Clair", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33590000", + "longitude": "-80.08339000" + }, + { + "id": "128111", + "name": "Valley Green", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.15731000", + "longitude": "-76.79275000" + }, + { + "id": "128118", + "name": "Valley View", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.95010000", + "longitude": "-76.70108000" + }, + { + "id": "128152", + "name": "Vandergrift", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.60284000", + "longitude": "-79.56477000" + }, + { + "id": "128166", + "name": "Venango County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.40097000", + "longitude": "-79.75795000" + }, + { + "id": "128204", + "name": "Verona", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.50646000", + "longitude": "-79.84310000" + }, + { + "id": "128211", + "name": "Versailles", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31563000", + "longitude": "-79.83116000" + }, + { + "id": "128248", + "name": "Village Green-Green Ridge", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.86363000", + "longitude": "-75.42548000" + }, + { + "id": "128251", + "name": "Village Shires", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.20316000", + "longitude": "-74.97045000" + }, + { + "id": "128267", + "name": "Vinco", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.40507000", + "longitude": "-78.85558000" + }, + { + "id": "128402", + "name": "Wallenpaupack Lake Estates", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.39898000", + "longitude": "-75.27402000" + }, + { + "id": "128424", + "name": "Walnutport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.75426000", + "longitude": "-75.59880000" + }, + { + "id": "128472", + "name": "Warminster Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18705000", + "longitude": "-75.08156000" + }, + { + "id": "128483", + "name": "Warren", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.84395000", + "longitude": "-79.14504000" + }, + { + "id": "128498", + "name": "Warren County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.81457000", + "longitude": "-79.27414000" + }, + { + "id": "128549", + "name": "Washington", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17396000", + "longitude": "-80.24617000" + }, + { + "id": "128573", + "name": "Washington County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.18940000", + "longitude": "-80.24824000" + }, + { + "id": "128607", + "name": "Waterford", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.94283000", + "longitude": "-79.98450000" + }, + { + "id": "128640", + "name": "Watsontown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.08453000", + "longitude": "-76.86385000" + }, + { + "id": "128680", + "name": "Waymart", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.58036000", + "longitude": "-75.40824000" + }, + { + "id": "128687", + "name": "Wayne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.04400000", + "longitude": "-75.38769000" + }, + { + "id": "128702", + "name": "Wayne County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.64873000", + "longitude": "-75.30326000" + }, + { + "id": "128704", + "name": "Wayne Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.74371000", + "longitude": "-77.55388000" + }, + { + "id": "128707", + "name": "Waynesboro", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.75593000", + "longitude": "-77.57777000" + }, + { + "id": "128710", + "name": "Waynesburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.89646000", + "longitude": "-80.17923000" + }, + { + "id": "128719", + "name": "Weatherly", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.94175000", + "longitude": "-75.82964000" + }, + { + "id": "128757", + "name": "Weigelstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.98371000", + "longitude": "-76.82247000" + }, + { + "id": "128762", + "name": "Weissport East", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.83697000", + "longitude": "-75.68643000" + }, + { + "id": "128788", + "name": "Wellsboro", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.74868000", + "longitude": "-77.30053000" + }, + { + "id": "128806", + "name": "Wernersville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33009000", + "longitude": "-76.08050000" + }, + { + "id": "128807", + "name": "Wescosville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.56676000", + "longitude": "-75.55296000" + }, + { + "id": "128812", + "name": "Wesleyville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "42.14033000", + "longitude": "-80.01506000" + }, + { + "id": "128845", + "name": "West Chester", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.96097000", + "longitude": "-75.60804000" + }, + { + "id": "128851", + "name": "West Conshohocken", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.06983000", + "longitude": "-75.31630000" + }, + { + "id": "128859", + "name": "West Easton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.67871000", + "longitude": "-75.23684000" + }, + { + "id": "128866", + "name": "West Fairview", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.27509000", + "longitude": "-76.91553000" + }, + { + "id": "128881", + "name": "West Grove", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.82205000", + "longitude": "-75.82744000" + }, + { + "id": "128883", + "name": "West Hamburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.54759000", + "longitude": "-76.00216000" + }, + { + "id": "128892", + "name": "West Hazleton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.95870000", + "longitude": "-75.99604000" + }, + { + "id": "128896", + "name": "West Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.82423000", + "longitude": "-79.54310000" + }, + { + "id": "128900", + "name": "West Homestead", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39396000", + "longitude": "-79.91199000" + }, + { + "id": "128907", + "name": "West Kittanning", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.81034000", + "longitude": "-79.52949000" + }, + { + "id": "128914", + "name": "West Lawn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32981000", + "longitude": "-75.99438000" + }, + { + "id": "128915", + "name": "West Leechburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.62229000", + "longitude": "-79.61282000" + }, + { + "id": "128926", + "name": "West Mayfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.78006000", + "longitude": "-80.33840000" + }, + { + "id": "128931", + "name": "West Mifflin", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.36340000", + "longitude": "-79.86644000" + }, + { + "id": "128940", + "name": "West Newton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.20979000", + "longitude": "-79.76699000" + }, + { + "id": "128941", + "name": "West Norriton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.12955000", + "longitude": "-75.37852000" + }, + { + "id": "128955", + "name": "West Pittston", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.32758000", + "longitude": "-75.79297000" + }, + { + "id": "128967", + "name": "West Reading", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33370000", + "longitude": "-75.94743000" + }, + { + "id": "128999", + "name": "West View", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.52229000", + "longitude": "-80.03422000" + }, + { + "id": "129006", + "name": "West Wyoming", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.31980000", + "longitude": "-75.84603000" + }, + { + "id": "129007", + "name": "West Wyomissing", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32454000", + "longitude": "-75.99077000" + }, + { + "id": "129010", + "name": "West York", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.95260000", + "longitude": "-76.75136000" + }, + { + "id": "129031", + "name": "Westfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.91924000", + "longitude": "-77.53887000" + }, + { + "id": "129050", + "name": "Westmont", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31563000", + "longitude": "-78.95169000" + }, + { + "id": "129056", + "name": "Westmoreland County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31073000", + "longitude": "-79.46696000" + }, + { + "id": "129101", + "name": "Wharton", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.92678000", + "longitude": "-75.15712000" + }, + { + "id": "129125", + "name": "Whitaker", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39840000", + "longitude": "-79.88977000" + }, + { + "id": "129141", + "name": "White Haven", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.06064000", + "longitude": "-75.77408000" + }, + { + "id": "129150", + "name": "White Oak", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33757000", + "longitude": "-79.80921000" + }, + { + "id": "129170", + "name": "Whitehall", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.36118000", + "longitude": "-79.99089000" + }, + { + "id": "129173", + "name": "Whitehall Township", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.66676000", + "longitude": "-75.49991000" + }, + { + "id": "129194", + "name": "Whitfield", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33593000", + "longitude": "-76.00605000" + }, + { + "id": "129202", + "name": "Whitman", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91678000", + "longitude": "-75.15546000" + }, + { + "id": "129220", + "name": "Wickerham Manor-Fisher", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.17749000", + "longitude": "-79.90684000" + }, + { + "id": "129246", + "name": "Wilkes-Barre", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.24591000", + "longitude": "-75.88131000" + }, + { + "id": "129249", + "name": "Wilkinsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.44174000", + "longitude": "-79.88199000" + }, + { + "id": "129271", + "name": "Williamsburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.46202000", + "longitude": "-78.19973000" + }, + { + "id": "129281", + "name": "Williamsport", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.24119000", + "longitude": "-77.00108000" + }, + { + "id": "129290", + "name": "Williamstown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.58009000", + "longitude": "-76.61774000" + }, + { + "id": "129306", + "name": "Willow Grove", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.14400000", + "longitude": "-75.11573000" + }, + { + "id": "129311", + "name": "Willow Street", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.97927000", + "longitude": "-76.27635000" + }, + { + "id": "129319", + "name": "Wilmerding", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.39090000", + "longitude": "-79.81005000" + }, + { + "id": "129332", + "name": "Wilson", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.68399000", + "longitude": "-75.24184000" + }, + { + "id": "129363", + "name": "Wind Gap", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.84815000", + "longitude": "-75.29157000" + }, + { + "id": "129366", + "name": "Windber", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.23980000", + "longitude": "-78.83502000" + }, + { + "id": "129380", + "name": "Windsor", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91621000", + "longitude": "-76.58441000" + }, + { + "id": "129475", + "name": "Wolfdale", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.19285000", + "longitude": "-80.28784000" + }, + { + "id": "129482", + "name": "Womelsdorf", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.36176000", + "longitude": "-76.18411000" + }, + { + "id": "129497", + "name": "Woodbourne", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.19233000", + "longitude": "-74.88878000" + }, + { + "id": "129529", + "name": "Woodland Heights", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.40978000", + "longitude": "-79.71172000" + }, + { + "id": "129539", + "name": "Woodlyn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.87233000", + "longitude": "-75.33713000" + }, + { + "id": "129555", + "name": "Woodside", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.22178000", + "longitude": "-74.87544000" + }, + { + "id": "129590", + "name": "Wormleysburg", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.26287000", + "longitude": "-76.91386000" + }, + { + "id": "129600", + "name": "Woxall", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.31066000", + "longitude": "-75.44879000" + }, + { + "id": "129615", + "name": "Wrightsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.02565000", + "longitude": "-76.52997000" + }, + { + "id": "129629", + "name": "Wyncote", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.09455000", + "longitude": "-75.14879000" + }, + { + "id": "129631", + "name": "Wyndmoor", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.08122000", + "longitude": "-75.18934000" + }, + { + "id": "129638", + "name": "Wyoming", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.31175000", + "longitude": "-75.83742000" + }, + { + "id": "129641", + "name": "Wyoming County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.51833000", + "longitude": "-76.01655000" + }, + { + "id": "129642", + "name": "Wyomissing", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.32954000", + "longitude": "-75.96521000" + }, + { + "id": "129643", + "name": "Wyomissing Hills", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.33759000", + "longitude": "-75.97966000" + }, + { + "id": "129664", + "name": "Yardley", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24566000", + "longitude": "-74.84600000" + }, + { + "id": "129675", + "name": "Yeadon", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.93900000", + "longitude": "-75.25546000" + }, + { + "id": "129676", + "name": "Yeagertown", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.64313000", + "longitude": "-77.58055000" + }, + { + "id": "129685", + "name": "Yoe", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.90899000", + "longitude": "-76.63691000" + }, + { + "id": "129692", + "name": "York", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.96260000", + "longitude": "-76.72774000" + }, + { + "id": "129699", + "name": "York County", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.91996000", + "longitude": "-76.72651000" + }, + { + "id": "129702", + "name": "Yorklyn", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "39.99232000", + "longitude": "-76.64635000" + }, + { + "id": "129720", + "name": "Youngsville", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "41.85228000", + "longitude": "-79.31866000" + }, + { + "id": "129722", + "name": "Youngwood", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.24035000", + "longitude": "-79.57671000" + }, + { + "id": "129746", + "name": "Zelienople", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.79451000", + "longitude": "-80.13673000" + }, + { + "id": "129758", + "name": "Zion", + "state_id": 1422, + "state_code": "PA", + "country_id": 233, + "country_code": "US", + "latitude": "40.91423000", + "longitude": "-77.68472000" + }, + { + "id": "111512", + "name": "Ashaway", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.42343000", + "longitude": "-71.78562000" + }, + { + "id": "111848", + "name": "Barrington", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.74066000", + "longitude": "-71.30866000" + }, + { + "id": "112667", + "name": "Bradford", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.39899000", + "longitude": "-71.73701000" + }, + { + "id": "112812", + "name": "Bristol", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.67705000", + "longitude": "-71.26616000" + }, + { + "id": "112815", + "name": "Bristol County", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.70554000", + "longitude": "-71.28612000" + }, + { + "id": "113673", + "name": "Central Falls", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.89066000", + "longitude": "-71.39228000" + }, + { + "id": "113773", + "name": "Charlestown", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.38316000", + "longitude": "-71.64173000" + }, + { + "id": "113843", + "name": "Chepachet", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.91510000", + "longitude": "-71.67146000" + }, + { + "id": "114732", + "name": "Coventry", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.70010000", + "longitude": "-71.68284000" + }, + { + "id": "114772", + "name": "Cranston", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.77982000", + "longitude": "-71.43728000" + }, + { + "id": "114909", + "name": "Cumberland", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.96677000", + "longitude": "-71.43284000" + }, + { + "id": "114921", + "name": "Cumberland Hill", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.97454000", + "longitude": "-71.46700000" + }, + { + "id": "115674", + "name": "East Greenwich", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.66038000", + "longitude": "-71.45589000" + }, + { + "id": "115741", + "name": "East Providence", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.81371000", + "longitude": "-71.37005000" + }, + { + "id": "116273", + "name": "Exeter", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.57760000", + "longitude": "-71.53756000" + }, + { + "id": "116774", + "name": "Foster", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.85371000", + "longitude": "-71.75812000" + }, + { + "id": "117695", + "name": "Greenville", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.87121000", + "longitude": "-71.55201000" + }, + { + "id": "118076", + "name": "Harrisville", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.96565000", + "longitude": "-71.67451000" + }, + { + "id": "118646", + "name": "Hope Valley", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.50760000", + "longitude": "-71.71618000" + }, + { + "id": "118658", + "name": "Hopkinton", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.46121000", + "longitude": "-71.77757000" + }, + { + "id": "119125", + "name": "Jamestown", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.49705000", + "longitude": "-71.36728000" + }, + { + "id": "119279", + "name": "Johnston", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.82186000", + "longitude": "-71.50675000" + }, + { + "id": "119493", + "name": "Kent County", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.67334000", + "longitude": "-71.57895000" + }, + { + "id": "119629", + "name": "Kingston", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.48038000", + "longitude": "-71.52256000" + }, + { + "id": "120513", + "name": "Lincoln", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.92111000", + "longitude": "-71.43500000" + }, + { + "id": "121636", + "name": "Melville", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.58705000", + "longitude": "-71.28338000" + }, + { + "id": "121793", + "name": "Middletown", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.54566000", + "longitude": "-71.29144000" + }, + { + "id": "122564", + "name": "Narragansett", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.45010000", + "longitude": "-71.44950000" + }, + { + "id": "122565", + "name": "Narragansett Pier", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.43232000", + "longitude": "-71.45644000" + }, + { + "id": "122778", + "name": "New Shoreham", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.17233000", + "longitude": "-71.55783000" + }, + { + "id": "122849", + "name": "Newport", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.49010000", + "longitude": "-71.31283000" + }, + { + "id": "122854", + "name": "Newport County", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.49980000", + "longitude": "-71.28100000" + }, + { + "id": "122855", + "name": "Newport East", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.51579000", + "longitude": "-71.28752000" + }, + { + "id": "123048", + "name": "North Kingstown", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.55010000", + "longitude": "-71.46617000" + }, + { + "id": "123089", + "name": "North Providence", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.85010000", + "longitude": "-71.46617000" + }, + { + "id": "123102", + "name": "North Scituate", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.83177000", + "longitude": "-71.58729000" + }, + { + "id": "123108", + "name": "North Smithfield", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.96677000", + "longitude": "-71.54951000" + }, + { + "id": "123903", + "name": "Pascoag", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.95565000", + "longitude": "-71.70229000" + }, + { + "id": "123939", + "name": "Pawtucket", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.87871000", + "longitude": "-71.38256000" + }, + { + "id": "124571", + "name": "Portsmouth", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.60232000", + "longitude": "-71.25033000" + }, + { + "id": "124716", + "name": "Providence", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.82399000", + "longitude": "-71.41283000" + }, + { + "id": "124719", + "name": "Providence County", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.87136000", + "longitude": "-71.57860000" + }, + { + "id": "126520", + "name": "Smithfield", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.92204000", + "longitude": "-71.54951000" + }, + { + "id": "126683", + "name": "South Kingstown", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.44718000", + "longitude": "-71.52494000" + }, + { + "id": "127687", + "name": "Tiverton", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.62594000", + "longitude": "-71.21338000" + }, + { + "id": "128108", + "name": "Valley Falls", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.90677000", + "longitude": "-71.39061000" + }, + { + "id": "128364", + "name": "Wakefield-Peacedale", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.44606000", + "longitude": "-71.50040000" + }, + { + "id": "128484", + "name": "Warren", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.73038000", + "longitude": "-71.28255000" + }, + { + "id": "128525", + "name": "Warwick", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.70010000", + "longitude": "-71.41617000" + }, + { + "id": "128574", + "name": "Washington County", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.39649000", + "longitude": "-71.61966000" + }, + { + "id": "128880", + "name": "West Greenwich", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.63700000", + "longitude": "-71.66004000" + }, + { + "id": "129002", + "name": "West Warwick", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.69689000", + "longitude": "-71.52194000" + }, + { + "id": "129023", + "name": "Westerly", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "41.37760000", + "longitude": "-71.82729000" + }, + { + "id": "129582", + "name": "Woonsocket", + "state_id": 1461, + "state_code": "RI", + "country_id": 233, + "country_code": "US", + "latitude": "42.00288000", + "longitude": "-71.51478000" + }, + { + "id": "110967", + "name": "Abbeville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.17817000", + "longitude": "-82.37901000" + }, + { + "id": "110969", + "name": "Abbeville County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.22257000", + "longitude": "-82.45871000" + }, + { + "id": "111066", + "name": "Aiken", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.56042000", + "longitude": "-81.71955000" + }, + { + "id": "111067", + "name": "Aiken County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.54437000", + "longitude": "-81.63474000" + }, + { + "id": "111193", + "name": "Allendale", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.00793000", + "longitude": "-81.30844000" + }, + { + "id": "111197", + "name": "Allendale County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.98811000", + "longitude": "-81.35820000" + }, + { + "id": "111311", + "name": "Anderson", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.50344000", + "longitude": "-82.65013000" + }, + { + "id": "111317", + "name": "Anderson County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.51909000", + "longitude": "-82.63788000" + }, + { + "id": "111329", + "name": "Andrews", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.45128000", + "longitude": "-79.56090000" + }, + { + "id": "111422", + "name": "Arcadia", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.95818000", + "longitude": "-81.99066000" + }, + { + "id": "111451", + "name": "Arial", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.84595000", + "longitude": "-82.64152000" + }, + { + "id": "111706", + "name": "Awendaw", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.03767000", + "longitude": "-79.61313000" + }, + { + "id": "111786", + "name": "Bamberg", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.29710000", + "longitude": "-81.03482000" + }, + { + "id": "111787", + "name": "Bamberg County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.21477000", + "longitude": "-81.05423000" + }, + { + "id": "111838", + "name": "Barnwell", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.24487000", + "longitude": "-81.35872000" + }, + { + "id": "111839", + "name": "Barnwell County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.26606000", + "longitude": "-81.43502000" + }, + { + "id": "111890", + "name": "Batesburg", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.90792000", + "longitude": "-81.54733000" + }, + { + "id": "111891", + "name": "Batesburg-Leesville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.91014000", + "longitude": "-81.53733000" + }, + { + "id": "111986", + "name": "Beaufort", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.43158000", + "longitude": "-80.66983000" + }, + { + "id": "111988", + "name": "Beaufort County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.35706000", + "longitude": "-80.69217000" + }, + { + "id": "112148", + "name": "Belton", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.52289000", + "longitude": "-82.49429000" + }, + { + "id": "112152", + "name": "Belvedere", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.53097000", + "longitude": "-81.94484000" + }, + { + "id": "112175", + "name": "Bennettsville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.61738000", + "longitude": "-79.68478000" + }, + { + "id": "112214", + "name": "Berea", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.88540000", + "longitude": "-82.45596000" + }, + { + "id": "112224", + "name": "Berkeley County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.19768000", + "longitude": "-79.95099000" + }, + { + "id": "112365", + "name": "Bishopville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.21821000", + "longitude": "-80.24841000" + }, + { + "id": "112389", + "name": "Blacksburg", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.12124000", + "longitude": "-81.51592000" + }, + { + "id": "112394", + "name": "Blackville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.35793000", + "longitude": "-81.27066000" + }, + { + "id": "112483", + "name": "Bluffton", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.23715000", + "longitude": "-80.86039000" + }, + { + "id": "112487", + "name": "Blythewood", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.21432000", + "longitude": "-80.97398000" + }, + { + "id": "112506", + "name": "Boiling Springs", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.04651000", + "longitude": "-81.98177000" + }, + { + "id": "112540", + "name": "Bonneau Beach", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.31989000", + "longitude": "-80.00036000" + }, + { + "id": "112849", + "name": "Brookdale", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.50682000", + "longitude": "-80.82342000" + }, + { + "id": "113009", + "name": "Buffalo", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.72569000", + "longitude": "-81.68343000" + }, + { + "id": "113081", + "name": "Burnettown", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.51541000", + "longitude": "-81.84900000" + }, + { + "id": "113096", + "name": "Burton", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.43575000", + "longitude": "-80.72400000" + }, + { + "id": "113206", + "name": "Calhoun County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.67486000", + "longitude": "-80.78028000" + }, + { + "id": "113211", + "name": "Calhoun Falls", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.09234000", + "longitude": "-82.59569000" + }, + { + "id": "113264", + "name": "Camden", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.24654000", + "longitude": "-80.60702000" + }, + { + "id": "113327", + "name": "Cane Savannah", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.90182000", + "longitude": "-80.45036000" + }, + { + "id": "113566", + "name": "Catawba", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.85292000", + "longitude": "-80.91119000" + }, + { + "id": "113591", + "name": "Cayce", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.96571000", + "longitude": "-81.07398000" + }, + { + "id": "113656", + "name": "Centerville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.53205000", + "longitude": "-82.70402000" + }, + { + "id": "113665", + "name": "Central", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.72427000", + "longitude": "-82.78125000" + }, + { + "id": "113743", + "name": "Chapin", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.16598000", + "longitude": "-81.34982000" + }, + { + "id": "113765", + "name": "Charleston", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.77657000", + "longitude": "-79.93092000" + }, + { + "id": "113769", + "name": "Charleston County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.74917000", + "longitude": "-79.94202000" + }, + { + "id": "113844", + "name": "Cheraw", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.69766000", + "longitude": "-79.88340000" + }, + { + "id": "113854", + "name": "Cherokee County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.04820000", + "longitude": "-81.62039000" + }, + { + "id": "113869", + "name": "Cherryvale", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.95571000", + "longitude": "-80.45814000" + }, + { + "id": "113885", + "name": "Chester", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.70486000", + "longitude": "-81.21426000" + }, + { + "id": "113895", + "name": "Chester County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.69206000", + "longitude": "-81.15953000" + }, + { + "id": "113902", + "name": "Chesterfield", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.73599000", + "longitude": "-80.08812000" + }, + { + "id": "113906", + "name": "Chesterfield County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.63978000", + "longitude": "-80.15872000" + }, + { + "id": "114044", + "name": "City View", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.86151000", + "longitude": "-82.43151000" + }, + { + "id": "114113", + "name": "Clarendon County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.66581000", + "longitude": "-80.21640000" + }, + { + "id": "114224", + "name": "Clearwater", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.49680000", + "longitude": "-81.89206000" + }, + { + "id": "114234", + "name": "Clemson", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.68344000", + "longitude": "-82.83737000" + }, + { + "id": "114277", + "name": "Clinton", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.47263000", + "longitude": "-81.88066000" + }, + { + "id": "114307", + "name": "Clover", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.11125000", + "longitude": "-81.22646000" + }, + { + "id": "114421", + "name": "Colleton County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.84343000", + "longitude": "-80.64968000" + }, + { + "id": "114471", + "name": "Columbia", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.00071000", + "longitude": "-81.03481000" + }, + { + "id": "114583", + "name": "Conway", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.83600000", + "longitude": "-79.04781000" + }, + { + "id": "114750", + "name": "Cowpens", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.01679000", + "longitude": "-81.80399000" + }, + { + "id": "115007", + "name": "Dalzell", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.01682000", + "longitude": "-80.43008000" + }, + { + "id": "115049", + "name": "Darlington", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.29988000", + "longitude": "-79.87617000" + }, + { + "id": "115051", + "name": "Darlington County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.33235000", + "longitude": "-79.95769000" + }, + { + "id": "115239", + "name": "Denmark", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.32265000", + "longitude": "-81.14232000" + }, + { + "id": "115249", + "name": "Dentsville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.06404000", + "longitude": "-80.95815000" + }, + { + "id": "115342", + "name": "Dillon", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.41655000", + "longitude": "-79.37116000" + }, + { + "id": "115344", + "name": "Dillon County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.39152000", + "longitude": "-79.37893000" + }, + { + "id": "115411", + "name": "Dorchester County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.07949000", + "longitude": "-80.40556000" + }, + { + "id": "115506", + "name": "Due West", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.33345000", + "longitude": "-82.38790000" + }, + { + "id": "115522", + "name": "Duncan", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.93790000", + "longitude": "-82.14511000" + }, + { + "id": "115533", + "name": "Dunean", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.82484000", + "longitude": "-82.41929000" + }, + { + "id": "115625", + "name": "Easley", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.82984000", + "longitude": "-82.60152000" + }, + { + "id": "115666", + "name": "East Gaffney", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.08013000", + "longitude": "-81.63287000" + }, + { + "id": "115762", + "name": "East Sumter", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.92544000", + "longitude": "-80.29619000" + }, + { + "id": "115842", + "name": "Edgefield", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.78958000", + "longitude": "-81.92956000" + }, + { + "id": "115843", + "name": "Edgefield County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.77229000", + "longitude": "-81.96658000" + }, + { + "id": "115876", + "name": "Edisto", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.47654000", + "longitude": "-80.89870000" + }, + { + "id": "115963", + "name": "Elgin", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.67293000", + "longitude": "-80.71896000" + }, + { + "id": "116211", + "name": "Estill", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.75489000", + "longitude": "-81.24205000" + }, + { + "id": "116239", + "name": "Eureka Mill", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.71764000", + "longitude": "-81.19370000" + }, + { + "id": "116301", + "name": "Fairfax", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.95905000", + "longitude": "-81.23650000" + }, + { + "id": "116319", + "name": "Fairfield County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.39511000", + "longitude": "-81.12123000" + }, + { + "id": "116324", + "name": "Fairforest", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.95651000", + "longitude": "-82.01011000" + }, + { + "id": "116539", + "name": "Five Forks", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.80484000", + "longitude": "-82.22956000" + }, + { + "id": "116580", + "name": "Florence", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.19543000", + "longitude": "-79.76256000" + }, + { + "id": "116587", + "name": "Florence County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.02439000", + "longitude": "-79.70282000" + }, + { + "id": "116623", + "name": "Folly Beach", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.65518000", + "longitude": "-79.94037000" + }, + { + "id": "116645", + "name": "Forest Acres", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.01932000", + "longitude": "-80.98981000" + }, + { + "id": "116668", + "name": "Forestbrook", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.72239000", + "longitude": "-78.95809000" + }, + { + "id": "116730", + "name": "Fort Mill", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.00737000", + "longitude": "-80.94508000" + }, + { + "id": "116783", + "name": "Fountain Inn", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.68901000", + "longitude": "-82.19567000" + }, + { + "id": "117005", + "name": "Gadsden", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.84571000", + "longitude": "-80.76592000" + }, + { + "id": "117007", + "name": "Gaffney", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.07179000", + "longitude": "-81.64982000" + }, + { + "id": "117051", + "name": "Gantt", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.80012000", + "longitude": "-82.42429000" + }, + { + "id": "117056", + "name": "Garden City", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.59295000", + "longitude": "-79.00865000" + }, + { + "id": "117114", + "name": "Gaston", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.81710000", + "longitude": "-81.10093000" + }, + { + "id": "117159", + "name": "Georgetown", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.37683000", + "longitude": "-79.29450000" + }, + { + "id": "117166", + "name": "Georgetown County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.41275000", + "longitude": "-79.29934000" + }, + { + "id": "117329", + "name": "Gloverville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.52597000", + "longitude": "-81.83011000" + }, + { + "id": "117350", + "name": "Golden Grove", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.73401000", + "longitude": "-82.44374000" + }, + { + "id": "117394", + "name": "Goose Creek", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.98101000", + "longitude": "-80.03259000" + }, + { + "id": "117502", + "name": "Graniteville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.56375000", + "longitude": "-81.80789000" + }, + { + "id": "117571", + "name": "Great Falls", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.57514000", + "longitude": "-80.90202000" + }, + { + "id": "117688", + "name": "Greenville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.85262000", + "longitude": "-82.39401000" + }, + { + "id": "117697", + "name": "Greenville County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.89431000", + "longitude": "-82.37072000" + }, + { + "id": "117706", + "name": "Greenwood", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.19540000", + "longitude": "-82.16179000" + }, + { + "id": "117710", + "name": "Greenwood County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.15383000", + "longitude": "-82.12593000" + }, + { + "id": "117713", + "name": "Greer", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.93873000", + "longitude": "-82.22706000" + }, + { + "id": "117929", + "name": "Hampton", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.87794000", + "longitude": "-81.12761000" + }, + { + "id": "117937", + "name": "Hampton County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.77628000", + "longitude": "-81.14070000" + }, + { + "id": "117942", + "name": "Hanahan", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.91851000", + "longitude": "-80.02203000" + }, + { + "id": "117994", + "name": "Hardeeville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.28714000", + "longitude": "-81.08067000" + }, + { + "id": "118104", + "name": "Hartsville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.37404000", + "longitude": "-80.07340000" + }, + { + "id": "118474", + "name": "Hilton Head", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.21632000", + "longitude": "-80.75261000" + }, + { + "id": "118475", + "name": "Hilton Head Island", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.19382000", + "longitude": "-80.73816000" + }, + { + "id": "118557", + "name": "Holly Hill", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.32266000", + "longitude": "-80.41370000" + }, + { + "id": "118566", + "name": "Hollywood", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.73434000", + "longitude": "-80.24177000" + }, + { + "id": "118591", + "name": "Homeland Park", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.47066000", + "longitude": "-82.67069000" + }, + { + "id": "118616", + "name": "Honea Path", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.44650000", + "longitude": "-82.39151000" + }, + { + "id": "118651", + "name": "Hopkins", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.90432000", + "longitude": "-80.87703000" + }, + { + "id": "118669", + "name": "Horry County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.90448000", + "longitude": "-78.97615000" + }, + { + "id": "118900", + "name": "India Hook", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.00737000", + "longitude": "-81.02174000" + }, + { + "id": "118945", + "name": "Inman", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.04706000", + "longitude": "-82.09011000" + }, + { + "id": "118946", + "name": "Inman Mills", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.04151000", + "longitude": "-82.10428000" + }, + { + "id": "118987", + "name": "Irmo", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.08598000", + "longitude": "-81.18315000" + }, + { + "id": "119011", + "name": "Irwin", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.69376000", + "longitude": "-80.82229000" + }, + { + "id": "119032", + "name": "Isle of Palms", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.78684000", + "longitude": "-79.79480000" + }, + { + "id": "119047", + "name": "Iva", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.30650000", + "longitude": "-82.66374000" + }, + { + "id": "119069", + "name": "Jackson", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.32542000", + "longitude": "-81.78789000" + }, + { + "id": "119117", + "name": "James Island", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.72374000", + "longitude": "-79.96284000" + }, + { + "id": "119149", + "name": "Jasper County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.42195000", + "longitude": "-81.02327000" + }, + { + "id": "119250", + "name": "Joanna", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.41491000", + "longitude": "-81.81240000" + }, + { + "id": "119276", + "name": "Johnsonville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.81794000", + "longitude": "-79.44922000" + }, + { + "id": "119277", + "name": "Johnston", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.83208000", + "longitude": "-81.80094000" + }, + { + "id": "119327", + "name": "Judson", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.83317000", + "longitude": "-82.42762000" + }, + { + "id": "119520", + "name": "Kershaw", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.55182000", + "longitude": "-80.58368000" + }, + { + "id": "119521", + "name": "Kershaw County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.33876000", + "longitude": "-80.59026000" + }, + { + "id": "119551", + "name": "Kiawah Island", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.60824000", + "longitude": "-80.08482000" + }, + { + "id": "119634", + "name": "Kingstree", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.66766000", + "longitude": "-79.83063000" + }, + { + "id": "119827", + "name": "Ladson", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.98573000", + "longitude": "-80.10981000" + }, + { + "id": "119881", + "name": "Lake City", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.87100000", + "longitude": "-79.75535000" + }, + { + "id": "119949", + "name": "Lake Murray of Richland", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.12048000", + "longitude": "-81.26450000" + }, + { + "id": "119975", + "name": "Lake Secession", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.28455000", + "longitude": "-82.59457000" + }, + { + "id": "120000", + "name": "Lake Wylie", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.10848000", + "longitude": "-81.04285000" + }, + { + "id": "120045", + "name": "Lakewood", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.84683000", + "longitude": "-80.35008000" + }, + { + "id": "120081", + "name": "Lancaster", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.72043000", + "longitude": "-80.77090000" + }, + { + "id": "120090", + "name": "Lancaster County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.68670000", + "longitude": "-80.70543000" + }, + { + "id": "120094", + "name": "Lancaster Mill", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.70931000", + "longitude": "-80.79479000" + }, + { + "id": "120104", + "name": "Landrum", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.17511000", + "longitude": "-82.18928000" + }, + { + "id": "120113", + "name": "Langley", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.51791000", + "longitude": "-81.84400000" + }, + { + "id": "120176", + "name": "Latta", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.33710000", + "longitude": "-79.43116000" + }, + { + "id": "120194", + "name": "Laurel Bay", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.45019000", + "longitude": "-80.78483000" + }, + { + "id": "120206", + "name": "Laurens", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.49901000", + "longitude": "-82.01426000" + }, + { + "id": "120209", + "name": "Laurens County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.48357000", + "longitude": "-82.00593000" + }, + { + "id": "120313", + "name": "Lee County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.16329000", + "longitude": "-80.25452000" + }, + { + "id": "120329", + "name": "Leesville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.91653000", + "longitude": "-81.51344000" + }, + { + "id": "120398", + "name": "Lesslie", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.89070000", + "longitude": "-80.95647000" + }, + { + "id": "120443", + "name": "Lexington", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.98154000", + "longitude": "-81.23621000" + }, + { + "id": "120453", + "name": "Lexington County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.90233000", + "longitude": "-81.27219000" + }, + { + "id": "120464", + "name": "Liberty", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.78789000", + "longitude": "-82.69236000" + }, + { + "id": "120553", + "name": "Lincolnville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.00684000", + "longitude": "-80.15537000" + }, + { + "id": "120623", + "name": "Little River", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.87323000", + "longitude": "-78.61418000" + }, + { + "id": "120776", + "name": "Loris", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.05628000", + "longitude": "-78.89030000" + }, + { + "id": "120873", + "name": "Lugoff", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.22737000", + "longitude": "-80.68925000" + }, + { + "id": "120909", + "name": "Lyman", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.94817000", + "longitude": "-82.12733000" + }, + { + "id": "121134", + "name": "Manning", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.69516000", + "longitude": "-80.21091000" + }, + { + "id": "121238", + "name": "Marion", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.17822000", + "longitude": "-79.40061000" + }, + { + "id": "121257", + "name": "Marion County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.08006000", + "longitude": "-79.36251000" + }, + { + "id": "121276", + "name": "Marlboro County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.60199000", + "longitude": "-79.67863000" + }, + { + "id": "121420", + "name": "Mauldin", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.77873000", + "longitude": "-82.31012000" + }, + { + "id": "121444", + "name": "Mayo", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.08401000", + "longitude": "-81.85983000" + }, + { + "id": "121473", + "name": "McColl", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.66877000", + "longitude": "-79.54533000" + }, + { + "id": "121483", + "name": "McCormick", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.91346000", + "longitude": "-82.29346000" + }, + { + "id": "121484", + "name": "McCormick County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.89955000", + "longitude": "-82.30988000" + }, + { + "id": "121615", + "name": "Meggett", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.71796000", + "longitude": "-80.23899000" + }, + { + "id": "122034", + "name": "Monarch Mill", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.71610000", + "longitude": "-81.58500000" + }, + { + "id": "122035", + "name": "Moncks Corner", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.19632000", + "longitude": "-80.01429000" + }, + { + "id": "122376", + "name": "Mount Pleasant", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.79407000", + "longitude": "-79.86259000" + }, + { + "id": "122462", + "name": "Mullins", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.20572000", + "longitude": "-79.25449000" + }, + { + "id": "122489", + "name": "Murphys Estates", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.60125000", + "longitude": "-81.94428000" + }, + { + "id": "122497", + "name": "Murrells Inlet", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.55100000", + "longitude": "-79.04143000" + }, + { + "id": "122520", + "name": "Myrtle Beach", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.68906000", + "longitude": "-78.88669000" + }, + { + "id": "122704", + "name": "New Ellenton", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.42153000", + "longitude": "-81.68567000" + }, + { + "id": "122811", + "name": "Newberry", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.27458000", + "longitude": "-81.61872000" + }, + { + "id": "122813", + "name": "Newberry County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.28981000", + "longitude": "-81.60012000" + }, + { + "id": "122844", + "name": "Newport", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.98986000", + "longitude": "-81.10091000" + }, + { + "id": "122902", + "name": "Ninety Six", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.17513000", + "longitude": "-82.02401000" + }, + { + "id": "122969", + "name": "North Augusta", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.50180000", + "longitude": "-81.96512000" + }, + { + "id": "123005", + "name": "North Charleston", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.85462000", + "longitude": "-79.97481000" + }, + { + "id": "123036", + "name": "North Hartsville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.39377000", + "longitude": "-80.06951000" + }, + { + "id": "123070", + "name": "North Myrtle Beach", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.81601000", + "longitude": "-78.68002000" + }, + { + "id": "123156", + "name": "Northlake", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.56622000", + "longitude": "-82.68402000" + }, + { + "id": "123241", + "name": "Oak Grove", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.98090000", + "longitude": "-81.14286000" + }, + { + "id": "123286", + "name": "Oakland", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.98293000", + "longitude": "-80.48842000" + }, + { + "id": "123349", + "name": "Oconee County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.75351000", + "longitude": "-83.06588000" + }, + { + "id": "123526", + "name": "Orangeburg", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.49182000", + "longitude": "-80.85565000" + }, + { + "id": "123528", + "name": "Orangeburg County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.43899000", + "longitude": "-80.80030000" + }, + { + "id": "123712", + "name": "Pacolet", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.89902000", + "longitude": "-81.76177000" + }, + { + "id": "123721", + "name": "Pageland", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.77321000", + "longitude": "-80.39173000" + }, + { + "id": "123795", + "name": "Pamplico", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.99600000", + "longitude": "-79.57006000" + }, + { + "id": "123859", + "name": "Parker", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.85067000", + "longitude": "-82.45346000" + }, + { + "id": "124017", + "name": "Pendleton", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.65177000", + "longitude": "-82.78375000" + }, + { + "id": "124155", + "name": "Pickens", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.88345000", + "longitude": "-82.70736000" + }, + { + "id": "124158", + "name": "Pickens County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.88752000", + "longitude": "-82.72532000" + }, + { + "id": "124166", + "name": "Piedmont", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.70234000", + "longitude": "-82.46457000" + }, + { + "id": "124256", + "name": "Pineridge", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.91043000", + "longitude": "-81.10454000" + }, + { + "id": "124531", + "name": "Port Royal", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.37908000", + "longitude": "-80.69261000" + }, + { + "id": "124610", + "name": "Powdersville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.79178000", + "longitude": "-82.49291000" + }, + { + "id": "124699", + "name": "Privateer", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.83321000", + "longitude": "-80.41425000" + }, + { + "id": "124712", + "name": "Prosperity", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.20931000", + "longitude": "-81.53316000" + }, + { + "id": "124906", + "name": "Ravenel", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.76323000", + "longitude": "-80.25010000" + }, + { + "id": "124936", + "name": "Red Bank", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.93209000", + "longitude": "-81.23843000" + }, + { + "id": "124946", + "name": "Red Hill", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.82073000", + "longitude": "-79.01892000" + }, + { + "id": "125075", + "name": "Richland County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.02180000", + "longitude": "-80.90304000" + }, + { + "id": "125124", + "name": "Ridgeland", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.48074000", + "longitude": "-80.98039000" + }, + { + "id": "125129", + "name": "Ridgeville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.09572000", + "longitude": "-80.31537000" + }, + { + "id": "125280", + "name": "Rock Hill", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.92487000", + "longitude": "-81.02508000" + }, + { + "id": "125344", + "name": "Roebuck", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.87957000", + "longitude": "-81.96621000" + }, + { + "id": "125597", + "name": "Saint Andrews", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.04543000", + "longitude": "-81.12926000" + }, + { + "id": "125642", + "name": "Saint George", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.18600000", + "longitude": "-80.57565000" + }, + { + "id": "125696", + "name": "Saint Matthews", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.66488000", + "longitude": "-80.77787000" + }, + { + "id": "125716", + "name": "Saint Stephen", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.40433000", + "longitude": "-79.92174000" + }, + { + "id": "125772", + "name": "Saluda", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.00152000", + "longitude": "-81.77205000" + }, + { + "id": "125774", + "name": "Saluda County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.00614000", + "longitude": "-81.72692000" + }, + { + "id": "125890", + "name": "Sangaree", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.03545000", + "longitude": "-80.12787000" + }, + { + "id": "125897", + "name": "Sans Souci", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.87790000", + "longitude": "-82.42401000" + }, + { + "id": "125984", + "name": "Saxon", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.96123000", + "longitude": "-81.96733000" + }, + { + "id": "126082", + "name": "Seabrook Island", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.57713000", + "longitude": "-80.17065000" + }, + { + "id": "126156", + "name": "Seneca", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.68566000", + "longitude": "-82.95320000" + }, + { + "id": "126174", + "name": "Seven Oaks", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.04876000", + "longitude": "-81.14648000" + }, + { + "id": "126291", + "name": "Shell Point", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.38353000", + "longitude": "-80.73594000" + }, + { + "id": "126452", + "name": "Simpsonville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.73706000", + "longitude": "-82.25428000" + }, + { + "id": "126491", + "name": "Slater-Marietta", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.03472000", + "longitude": "-82.49265000" + }, + { + "id": "126554", + "name": "Socastee", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.68350000", + "longitude": "-78.99837000" + }, + { + "id": "126641", + "name": "South Congaree", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.91099000", + "longitude": "-81.13565000" + }, + { + "id": "126732", + "name": "South Sumter", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.90571000", + "longitude": "-80.34619000" + }, + { + "id": "126769", + "name": "Southern Shops", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.98595000", + "longitude": "-81.99455000" + }, + { + "id": "126814", + "name": "Spartanburg", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.94957000", + "longitude": "-81.93205000" + }, + { + "id": "126815", + "name": "Spartanburg County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.93126000", + "longitude": "-81.99068000" + }, + { + "id": "126886", + "name": "Springdale", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.95932000", + "longitude": "-81.10898000" + }, + { + "id": "126994", + "name": "Stateburg", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.95765000", + "longitude": "-80.53481000" + }, + { + "id": "127192", + "name": "Sullivans Island", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.76323000", + "longitude": "-79.83675000" + }, + { + "id": "127210", + "name": "Summerville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.01850000", + "longitude": "-80.17565000" + }, + { + "id": "127227", + "name": "Sumter", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.92044000", + "longitude": "-80.34147000" + }, + { + "id": "127231", + "name": "Sumter County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.91617000", + "longitude": "-80.38232000" + }, + { + "id": "127288", + "name": "Surfside Beach", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.60600000", + "longitude": "-78.97309000" + }, + { + "id": "127461", + "name": "Taylors", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.92039000", + "longitude": "-82.29623000" + }, + { + "id": "127482", + "name": "Tega Cay", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.02431000", + "longitude": "-81.02785000" + }, + { + "id": "127645", + "name": "Tigerville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.06845000", + "longitude": "-82.36845000" + }, + { + "id": "127662", + "name": "Timmonsville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.13488000", + "longitude": "-79.93979000" + }, + { + "id": "127783", + "name": "Travelers Rest", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.96762000", + "longitude": "-82.44345000" + }, + { + "id": "127974", + "name": "Union", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.71541000", + "longitude": "-81.62371000" + }, + { + "id": "127996", + "name": "Union County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.68928000", + "longitude": "-81.61942000" + }, + { + "id": "128065", + "name": "Utica", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.67816000", + "longitude": "-82.93154000" + }, + { + "id": "128107", + "name": "Valley Falls", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "35.01595000", + "longitude": "-81.97483000" + }, + { + "id": "128156", + "name": "Varnville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.85044000", + "longitude": "-81.07927000" + }, + { + "id": "128320", + "name": "Wade Hampton", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.90373000", + "longitude": "-82.33317000" + }, + { + "id": "128382", + "name": "Walhalla", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.76482000", + "longitude": "-83.06404000" + }, + { + "id": "128428", + "name": "Walterboro", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "32.90517000", + "longitude": "-80.66677000" + }, + { + "id": "128464", + "name": "Ware Shoals", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.39845000", + "longitude": "-82.24679000" + }, + { + "id": "128509", + "name": "Warrenville", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.55097000", + "longitude": "-81.80400000" + }, + { + "id": "128643", + "name": "Watts Mills", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.51641000", + "longitude": "-81.98580000" + }, + { + "id": "128748", + "name": "Wedgefield", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.89266000", + "longitude": "-80.51814000" + }, + { + "id": "128749", + "name": "Wedgewood", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.88377000", + "longitude": "-80.51258000" + }, + { + "id": "128767", + "name": "Welcome", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.82651000", + "longitude": "-82.43901000" + }, + { + "id": "128775", + "name": "Wellford", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.95095000", + "longitude": "-82.10594000" + }, + { + "id": "128848", + "name": "West Columbia", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.99349000", + "longitude": "-81.07398000" + }, + { + "id": "129045", + "name": "Westminster", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.66482000", + "longitude": "-83.09654000" + }, + { + "id": "129205", + "name": "Whitmire", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.50291000", + "longitude": "-81.61149000" + }, + { + "id": "129252", + "name": "Wilkinson Heights", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.50210000", + "longitude": "-80.83315000" + }, + { + "id": "129272", + "name": "Williamsburg County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.61993000", + "longitude": "-79.72771000" + }, + { + "id": "129283", + "name": "Williamston", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.61845000", + "longitude": "-82.47791000" + }, + { + "id": "129297", + "name": "Williston", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "33.40265000", + "longitude": "-81.42011000" + }, + { + "id": "129419", + "name": "Winnsboro", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.38070000", + "longitude": "-81.08648000" + }, + { + "id": "129421", + "name": "Winnsboro Mills", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.36181000", + "longitude": "-81.08537000" + }, + { + "id": "129517", + "name": "Woodfield", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.05932000", + "longitude": "-80.93092000" + }, + { + "id": "129547", + "name": "Woodruff", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.73957000", + "longitude": "-82.03705000" + }, + { + "id": "129691", + "name": "York", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.99430000", + "longitude": "-81.24202000" + }, + { + "id": "129695", + "name": "York County", + "state_id": 1443, + "state_code": "SC", + "country_id": 233, + "country_code": "US", + "latitude": "34.97475000", + "longitude": "-81.18442000" + }, + { + "id": "110977", + "name": "Aberdeen", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.46470000", + "longitude": "-98.48648000" + }, + { + "id": "111156", + "name": "Alexandria", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.65359000", + "longitude": "-97.78285000" + }, + { + "id": "111479", + "name": "Armour", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.31860000", + "longitude": "-98.34675000" + }, + { + "id": "111664", + "name": "Aurora County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.71801000", + "longitude": "-98.56155000" + }, + { + "id": "111782", + "name": "Baltic", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.76136000", + "longitude": "-96.74033000" + }, + { + "id": "111970", + "name": "Beadle County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.41448000", + "longitude": "-98.27811000" + }, + { + "id": "112081", + "name": "Belle Fourche", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.67137000", + "longitude": "-103.85215000" + }, + { + "id": "112174", + "name": "Bennett County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.19492000", + "longitude": "-101.66397000" + }, + { + "id": "112215", + "name": "Beresford", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.08054000", + "longitude": "-96.77366000" + }, + { + "id": "112368", + "name": "Bison", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.52026000", + "longitude": "-102.46127000" + }, + { + "id": "112388", + "name": "Blackhawk", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.15110000", + "longitude": "-103.30796000" + }, + { + "id": "112528", + "name": "Bon Homme County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.98837000", + "longitude": "-97.88463000" + }, + { + "id": "112636", + "name": "Box Elder", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.11249000", + "longitude": "-103.06823000" + }, + { + "id": "112691", + "name": "Brandon", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.59470000", + "longitude": "-96.57199000" + }, + { + "id": "112819", + "name": "Britton", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.79162000", + "longitude": "-97.75094000" + }, + { + "id": "112861", + "name": "Brookings", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.31136000", + "longitude": "-96.79839000" + }, + { + "id": "112863", + "name": "Brookings County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.36968000", + "longitude": "-96.79042000" + }, + { + "id": "112913", + "name": "Brown County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.58972000", + "longitude": "-98.35161000" + }, + { + "id": "112945", + "name": "Brule County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.71806000", + "longitude": "-99.08094000" + }, + { + "id": "113015", + "name": "Buffalo", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.58416000", + "longitude": "-103.54603000" + }, + { + "id": "113019", + "name": "Buffalo County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.07635000", + "longitude": "-99.20496000" + }, + { + "id": "113055", + "name": "Burke", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.18250000", + "longitude": "-99.29205000" + }, + { + "id": "113127", + "name": "Butte County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.90583000", + "longitude": "-103.50802000" + }, + { + "id": "113302", + "name": "Campbell County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.77113000", + "longitude": "-100.05163000" + }, + { + "id": "113350", + "name": "Canton", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.30081000", + "longitude": "-96.59282000" + }, + { + "id": "113718", + "name": "Chamberlain", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.81083000", + "longitude": "-99.33066000" + }, + { + "id": "113758", + "name": "Charles Mix County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.20791000", + "longitude": "-98.58789000" + }, + { + "id": "114120", + "name": "Clark", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.87774000", + "longitude": "-97.73314000" + }, + { + "id": "114127", + "name": "Clark County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.85825000", + "longitude": "-97.72950000" + }, + { + "id": "114190", + "name": "Clay County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.91465000", + "longitude": "-96.97566000" + }, + { + "id": "114210", + "name": "Clear Lake", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.74580000", + "longitude": "-96.68256000" + }, + { + "id": "114363", + "name": "Codington County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.97785000", + "longitude": "-97.18862000" + }, + { + "id": "114451", + "name": "Colonial Pine Hills", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.00777000", + "longitude": "-103.31546000" + }, + { + "id": "114671", + "name": "Corson County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.70860000", + "longitude": "-101.19687000" + }, + { + "id": "114839", + "name": "Crooks", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.66470000", + "longitude": "-96.81089000" + }, + { + "id": "114934", + "name": "Custer", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.76665000", + "longitude": "-103.59881000" + }, + { + "id": "114940", + "name": "Custer County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.67763000", + "longitude": "-103.45154000" + }, + { + "id": "114978", + "name": "Dakota Dunes", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.48749000", + "longitude": "-96.48642000" + }, + { + "id": "115079", + "name": "Davison County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.67474000", + "longitude": "-98.14600000" + }, + { + "id": "115089", + "name": "Day County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.36715000", + "longitude": "-97.60741000" + }, + { + "id": "115114", + "name": "De Smet", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.38747000", + "longitude": "-97.55035000" + }, + { + "id": "115142", + "name": "Deadwood", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.37665000", + "longitude": "-103.72964000" + }, + { + "id": "115214", + "name": "Dell Rapids", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.82608000", + "longitude": "-96.70616000" + }, + { + "id": "115294", + "name": "Deuel County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.76006000", + "longitude": "-96.66797000" + }, + { + "id": "115304", + "name": "Dewey County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.15662000", + "longitude": "-100.87186000" + }, + { + "id": "115431", + "name": "Douglas County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.38692000", + "longitude": "-98.36610000" + }, + { + "id": "115559", + "name": "Dupree", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.04748000", + "longitude": "-101.60099000" + }, + { + "id": "115599", + "name": "Eagle Butte", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.00248000", + "longitude": "-101.23349000" + }, + { + "id": "115883", + "name": "Edmunds County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.41880000", + "longitude": "-99.21533000" + }, + { + "id": "115990", + "name": "Elk Point", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.68333000", + "longitude": "-96.68365000" + }, + { + "id": "116375", + "name": "Fall River County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.23939000", + "longitude": "-103.52756000" + }, + { + "id": "116433", + "name": "Faulk County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.07101000", + "longitude": "-99.14525000" + }, + { + "id": "116435", + "name": "Faulkton", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.03497000", + "longitude": "-99.12400000" + }, + { + "id": "116549", + "name": "Flandreau", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.04942000", + "longitude": "-96.59532000" + }, + { + "id": "116742", + "name": "Fort Pierre", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.35359000", + "longitude": "-100.37374000" + }, + { + "id": "116755", + "name": "Fort Thompson", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.06860000", + "longitude": "-99.43788000" + }, + { + "id": "116908", + "name": "Freeman", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.35249000", + "longitude": "-97.43729000" + }, + { + "id": "117097", + "name": "Garretson", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.71747000", + "longitude": "-96.50282000" + }, + { + "id": "117180", + "name": "Gettysburg", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.01165000", + "longitude": "-99.95567000" + }, + { + "id": "117514", + "name": "Grant County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.17194000", + "longitude": "-96.76769000" + }, + { + "id": "117717", + "name": "Gregory", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.23222000", + "longitude": "-99.43038000" + }, + { + "id": "117718", + "name": "Gregory County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.19238000", + "longitude": "-99.18561000" + }, + { + "id": "117751", + "name": "Groton", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.44746000", + "longitude": "-98.09871000" + }, + { + "id": "117823", + "name": "Haakon County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.29443000", + "longitude": "-101.53999000" + }, + { + "id": "117911", + "name": "Hamlin County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.67376000", + "longitude": "-97.18833000" + }, + { + "id": "117959", + "name": "Hand County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.54778000", + "longitude": "-99.00494000" + }, + { + "id": "117979", + "name": "Hanson County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.67482000", + "longitude": "-97.78734000" + }, + { + "id": "118005", + "name": "Harding County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.58035000", + "longitude": "-103.49577000" + }, + { + "id": "118051", + "name": "Harrisburg", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.43137000", + "longitude": "-96.69727000" + }, + { + "id": "118093", + "name": "Hartford", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.62303000", + "longitude": "-96.94255000" + }, + { + "id": "118195", + "name": "Hayti", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.65719000", + "longitude": "-97.20507000" + }, + { + "id": "118422", + "name": "Highmore", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.52137000", + "longitude": "-99.44150000" + }, + { + "id": "118683", + "name": "Hot Springs", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.43165000", + "longitude": "-103.47436000" + }, + { + "id": "118709", + "name": "Howard", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.01081000", + "longitude": "-97.52674000" + }, + { + "id": "118759", + "name": "Hughes County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.38903000", + "longitude": "-99.99605000" + }, + { + "id": "118824", + "name": "Huron", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.36332000", + "longitude": "-98.21426000" + }, + { + "id": "118837", + "name": "Hutchinson County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.33485000", + "longitude": "-97.75442000" + }, + { + "id": "118848", + "name": "Hyde County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.54736000", + "longitude": "-99.48711000" + }, + { + "id": "118983", + "name": "Ipswich", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.44442000", + "longitude": "-99.02928000" + }, + { + "id": "119096", + "name": "Jackson County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.69421000", + "longitude": "-101.62813000" + }, + { + "id": "119223", + "name": "Jerauld County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.06635000", + "longitude": "-98.62973000" + }, + { + "id": "119297", + "name": "Jones County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.96061000", + "longitude": "-100.68972000" + }, + { + "id": "119350", + "name": "Kadoka", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.83388000", + "longitude": "-101.50987000" + }, + { + "id": "119464", + "name": "Kennebec", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.90360000", + "longitude": "-99.86178000" + }, + { + "id": "119611", + "name": "Kingsbury County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.36959000", + "longitude": "-97.49148000" + }, + { + "id": "119863", + "name": "Lake Andes", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.15638000", + "longitude": "-98.54147000" + }, + { + "id": "119895", + "name": "Lake County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.02204000", + "longitude": "-97.12938000" + }, + { + "id": "120238", + "name": "Lawrence County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.35863000", + "longitude": "-103.79222000" + }, + { + "id": "120270", + "name": "Lead", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.35221000", + "longitude": "-103.76520000" + }, + { + "id": "120357", + "name": "Lemmon", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.94083000", + "longitude": "-102.15932000" + }, + { + "id": "120370", + "name": "Lennox", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.35415000", + "longitude": "-96.89200000" + }, + { + "id": "120381", + "name": "Leola", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.72275000", + "longitude": "-98.94094000" + }, + { + "id": "120528", + "name": "Lincoln County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.27892000", + "longitude": "-96.72182000" + }, + { + "id": "120911", + "name": "Lyman County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.89582000", + "longitude": "-99.84738000" + }, + { + "id": "121000", + "name": "Madison", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.00608000", + "longitude": "-97.11395000" + }, + { + "id": "121321", + "name": "Marshall County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.75867000", + "longitude": "-97.59850000" + }, + { + "id": "121336", + "name": "Martin", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.17250000", + "longitude": "-101.73265000" + }, + { + "id": "121480", + "name": "McCook County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.67431000", + "longitude": "-97.36844000" + }, + { + "id": "121512", + "name": "McIntosh", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.92139000", + "longitude": "-101.34958000" + }, + { + "id": "121547", + "name": "McPherson County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.76637000", + "longitude": "-99.22146000" + }, + { + "id": "121558", + "name": "Meade County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.56684000", + "longitude": "-102.71687000" + }, + { + "id": "121625", + "name": "Mellette County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.58127000", + "longitude": "-100.75999000" + }, + { + "id": "121842", + "name": "Milbank", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.21913000", + "longitude": "-96.63562000" + }, + { + "id": "121879", + "name": "Miller", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.51831000", + "longitude": "-98.98843000" + }, + { + "id": "121933", + "name": "Miner County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.02195000", + "longitude": "-97.61025000" + }, + { + "id": "121953", + "name": "Minnehaha County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.67418000", + "longitude": "-96.79144000" + }, + { + "id": "121982", + "name": "Mission", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.30584000", + "longitude": "-100.65819000" + }, + { + "id": "121997", + "name": "Mitchell", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.70943000", + "longitude": "-98.02980000" + }, + { + "id": "122012", + "name": "Mobridge", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.53722000", + "longitude": "-100.42791000" + }, + { + "id": "122197", + "name": "Moody County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.02201000", + "longitude": "-96.67092000" + }, + { + "id": "122323", + "name": "Mound City", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.72527000", + "longitude": "-100.06845000" + }, + { + "id": "122479", + "name": "Murdo", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.88832000", + "longitude": "-100.71291000" + }, + { + "id": "123016", + "name": "North Eagle Butte", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.00415000", + "longitude": "-101.23376000" + }, + { + "id": "123106", + "name": "North Sioux City", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.52722000", + "longitude": "-96.48309000" + }, + { + "id": "123109", + "name": "North Spearfish", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.50665000", + "longitude": "-103.89215000" + }, + { + "id": "123374", + "name": "Oglala", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.18859000", + "longitude": "-102.73962000" + }, + { + "id": "123375", + "name": "Oglala Lakota County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.33559000", + "longitude": "-102.55162000" + }, + { + "id": "123448", + "name": "Olivet", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.24082000", + "longitude": "-97.67534000" + }, + { + "id": "123480", + "name": "Onida", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.70804000", + "longitude": "-100.05984000" + }, + { + "id": "123862", + "name": "Parker", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.39748000", + "longitude": "-97.13645000" + }, + { + "id": "123876", + "name": "Parkston", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.39888000", + "longitude": "-97.98368000" + }, + { + "id": "124031", + "name": "Pennington County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.00373000", + "longitude": "-102.82383000" + }, + { + "id": "124064", + "name": "Perkins County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.49051000", + "longitude": "-102.47563000" + }, + { + "id": "124129", + "name": "Philip", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.03943000", + "longitude": "-101.66514000" + }, + { + "id": "124178", + "name": "Pierre", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.36832000", + "longitude": "-100.35097000" + }, + { + "id": "124243", + "name": "Pine Ridge", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.02554000", + "longitude": "-102.55627000" + }, + { + "id": "124341", + "name": "Plankinton", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.71555000", + "longitude": "-98.48509000" + }, + { + "id": "124351", + "name": "Platte", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.38694000", + "longitude": "-98.84453000" + }, + { + "id": "124490", + "name": "Porcupine", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.23971000", + "longitude": "-102.33099000" + }, + { + "id": "124593", + "name": "Potter County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.06450000", + "longitude": "-99.95725000" + }, + { + "id": "124894", + "name": "Rapid City", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.08054000", + "longitude": "-103.23101000" + }, + { + "id": "124895", + "name": "Rapid Valley", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.06249000", + "longitude": "-103.14629000" + }, + { + "id": "124968", + "name": "Redfield", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.87581000", + "longitude": "-98.51871000" + }, + { + "id": "125242", + "name": "Roberts County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.62965000", + "longitude": "-96.94612000" + }, + { + "id": "125412", + "name": "Rosebud", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.23278000", + "longitude": "-100.85348000" + }, + { + "id": "125737", + "name": "Salem", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.72415000", + "longitude": "-97.38895000" + }, + { + "id": "125855", + "name": "Sanborn County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.02345000", + "longitude": "-98.09139000" + }, + { + "id": "126130", + "name": "Selby", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.50638000", + "longitude": "-100.03207000" + }, + { + "id": "126462", + "name": "Sioux Falls", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.54997000", + "longitude": "-96.70033000" + }, + { + "id": "126466", + "name": "Sisseton", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.66468000", + "longitude": "-97.04980000" + }, + { + "id": "126816", + "name": "Spearfish", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.49082000", + "longitude": "-103.85937000" + }, + { + "id": "126836", + "name": "Spink County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.93802000", + "longitude": "-98.34619000" + }, + { + "id": "126905", + "name": "Springfield", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.85417000", + "longitude": "-97.89729000" + }, + { + "id": "126962", + "name": "Stanley County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.41232000", + "longitude": "-100.73594000" + }, + { + "id": "127152", + "name": "Sturgis", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.40971000", + "longitude": "-103.50908000" + }, + { + "id": "127193", + "name": "Sully County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.71558000", + "longitude": "-100.13220000" + }, + { + "id": "127207", + "name": "Summerset", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.18998000", + "longitude": "-103.34384000" + }, + { + "id": "127473", + "name": "Tea", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.44637000", + "longitude": "-96.83588000" + }, + { + "id": "127656", + "name": "Timber Lake", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.42915000", + "longitude": "-101.07403000" + }, + { + "id": "127694", + "name": "Todd County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.19337000", + "longitude": "-100.71841000" + }, + { + "id": "127832", + "name": "Tripp County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.34587000", + "longitude": "-99.88400000" + }, + { + "id": "127904", + "name": "Turner County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.31087000", + "longitude": "-97.14866000" + }, + { + "id": "127945", + "name": "Tyndall", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.99333000", + "longitude": "-97.86285000" + }, + { + "id": "128001", + "name": "Union County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.83249000", + "longitude": "-96.65609000" + }, + { + "id": "128185", + "name": "Vermillion", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.77944000", + "longitude": "-96.92921000" + }, + { + "id": "128300", + "name": "Volga", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.32358000", + "longitude": "-96.92645000" + }, + { + "id": "128328", + "name": "Wagner", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.07972000", + "longitude": "-98.29313000" + }, + { + "id": "128441", + "name": "Walworth County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.42995000", + "longitude": "-100.03156000" + }, + { + "id": "128625", + "name": "Watertown", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.89941000", + "longitude": "-97.11507000" + }, + { + "id": "128734", + "name": "Webster", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "45.33218000", + "longitude": "-97.52009000" + }, + { + "id": "128813", + "name": "Wessington Springs", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.07916000", + "longitude": "-98.56954000" + }, + { + "id": "129156", + "name": "White River", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.56805000", + "longitude": "-100.74542000" + }, + { + "id": "129412", + "name": "Winner", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.37667000", + "longitude": "-99.85901000" + }, + { + "id": "129583", + "name": "Woonsocket", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.05360000", + "longitude": "-98.27564000" + }, + { + "id": "129661", + "name": "Yankton", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "42.87111000", + "longitude": "-97.39728000" + }, + { + "id": "129662", + "name": "Yankton County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "43.00897000", + "longitude": "-97.39475000" + }, + { + "id": "129753", + "name": "Ziebach County", + "state_id": 1445, + "state_code": "SD", + "country_id": 233, + "country_code": "US", + "latitude": "44.98041000", + "longitude": "-101.66586000" + }, + { + "id": "111031", + "name": "Adamsville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.23591000", + "longitude": "-88.39060000" + }, + { + "id": "111091", + "name": "Alamo", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.78479000", + "longitude": "-89.11729000" + }, + { + "id": "111132", + "name": "Alcoa", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.78953000", + "longitude": "-83.97379000" + }, + { + "id": "111168", + "name": "Algood", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.19589000", + "longitude": "-85.44858000" + }, + { + "id": "111234", + "name": "Altamont", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.42952000", + "longitude": "-85.72303000" + }, + { + "id": "111318", + "name": "Anderson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.11844000", + "longitude": "-84.19846000" + }, + { + "id": "111385", + "name": "Apison", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.02396000", + "longitude": "-85.02384000" + }, + { + "id": "111441", + "name": "Ardmore", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "34.99203000", + "longitude": "-86.84667000" + }, + { + "id": "111462", + "name": "Arlington", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.29620000", + "longitude": "-89.66147000" + }, + { + "id": "111541", + "name": "Ashland City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.27422000", + "longitude": "-87.06417000" + }, + { + "id": "111575", + "name": "Athens", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.44285000", + "longitude": "-84.59299000" + }, + { + "id": "111604", + "name": "Atoka", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.44119000", + "longitude": "-89.77814000" + }, + { + "id": "111802", + "name": "Banner Hill", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.13066000", + "longitude": "-82.42458000" + }, + { + "id": "111861", + "name": "Bartlett", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.20453000", + "longitude": "-89.87398000" + }, + { + "id": "111914", + "name": "Baxter", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.15367000", + "longitude": "-85.64359000" + }, + { + "id": "111973", + "name": "Bean Station", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.34370000", + "longitude": "-83.28406000" + }, + { + "id": "112028", + "name": "Bedford County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.51380000", + "longitude": "-86.45889000" + }, + { + "id": "112087", + "name": "Belle Meade", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.09589000", + "longitude": "-86.85694000" + }, + { + "id": "112126", + "name": "Bells", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.71118000", + "longitude": "-89.08756000" + }, + { + "id": "112196", + "name": "Benton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.17424000", + "longitude": "-84.65355000" + }, + { + "id": "112202", + "name": "Benton County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.06978000", + "longitude": "-88.06827000" + }, + { + "id": "112402", + "name": "Blaine", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.15425000", + "longitude": "-83.70407000" + }, + { + "id": "112428", + "name": "Bledsoe County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.59642000", + "longitude": "-85.20516000" + }, + { + "id": "112446", + "name": "Bloomingdale", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.58455000", + "longitude": "-82.48932000" + }, + { + "id": "112458", + "name": "Blount County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.68724000", + "longitude": "-83.92553000" + }, + { + "id": "112461", + "name": "Blountville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.53316000", + "longitude": "-82.32681000" + }, + { + "id": "112481", + "name": "Bluff City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.47427000", + "longitude": "-82.26097000" + }, + { + "id": "112518", + "name": "Bolivar", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.25619000", + "longitude": "-88.98784000" + }, + { + "id": "112527", + "name": "Bon Aqua Junction", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.92784000", + "longitude": "-87.31084000" + }, + { + "id": "112664", + "name": "Bradford", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.07645000", + "longitude": "-88.81006000" + }, + { + "id": "112676", + "name": "Bradley County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.15411000", + "longitude": "-84.85960000" + }, + { + "id": "112729", + "name": "Brentwood", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.03312000", + "longitude": "-86.78278000" + }, + { + "id": "112734", + "name": "Brentwood Estates", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.02506000", + "longitude": "-86.77917000" + }, + { + "id": "112788", + "name": "Brighton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.48397000", + "longitude": "-89.72508000" + }, + { + "id": "112803", + "name": "Bristol", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.59511000", + "longitude": "-82.18874000" + }, + { + "id": "112931", + "name": "Brownsville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.59397000", + "longitude": "-89.26229000" + }, + { + "id": "112943", + "name": "Bruceton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.03812000", + "longitude": "-88.24449000" + }, + { + "id": "113086", + "name": "Burns", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.05339000", + "longitude": "-87.31251000" + }, + { + "id": "113141", + "name": "Byrdstown", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.57451000", + "longitude": "-85.12884000" + }, + { + "id": "113265", + "name": "Camden", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.05895000", + "longitude": "-88.09782000" + }, + { + "id": "113299", + "name": "Campbell County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.40351000", + "longitude": "-84.14938000" + }, + { + "id": "113333", + "name": "Cannon County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.80868000", + "longitude": "-86.06174000" + }, + { + "id": "113456", + "name": "Carroll County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.97317000", + "longitude": "-88.45026000" + }, + { + "id": "113483", + "name": "Carter County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.29272000", + "longitude": "-82.12743000" + }, + { + "id": "113494", + "name": "Carthage", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.25228000", + "longitude": "-85.95165000" + }, + { + "id": "113507", + "name": "Caryville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.29897000", + "longitude": "-84.22326000" + }, + { + "id": "113630", + "name": "Celina", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.55006000", + "longitude": "-85.50525000" + }, + { + "id": "113655", + "name": "Centerville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.77896000", + "longitude": "-87.46696000" + }, + { + "id": "113664", + "name": "Central", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.32622000", + "longitude": "-82.28958000" + }, + { + "id": "113742", + "name": "Chapel Hill", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.62646000", + "longitude": "-86.69333000" + }, + { + "id": "113777", + "name": "Charlotte", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.17728000", + "longitude": "-87.33973000" + }, + { + "id": "113811", + "name": "Chattanooga", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.04563000", + "longitude": "-85.30968000" + }, + { + "id": "113819", + "name": "Cheatham County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.26117000", + "longitude": "-87.08678000" + }, + { + "id": "113896", + "name": "Chester County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.42175000", + "longitude": "-88.61346000" + }, + { + "id": "113998", + "name": "Christiana", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.71007000", + "longitude": "-86.39944000" + }, + { + "id": "114007", + "name": "Church Hill", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.52232000", + "longitude": "-82.71349000" + }, + { + "id": "114094", + "name": "Claiborne County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.48585000", + "longitude": "-83.66042000" + }, + { + "id": "114154", + "name": "Clarksville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.52977000", + "longitude": "-87.35945000" + }, + { + "id": "114184", + "name": "Clay County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.55116000", + "longitude": "-85.54386000" + }, + { + "id": "114244", + "name": "Cleveland", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.15952000", + "longitude": "-84.87661000" + }, + { + "id": "114255", + "name": "Clifton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.38702000", + "longitude": "-87.99531000" + }, + { + "id": "114275", + "name": "Clinton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.10341000", + "longitude": "-84.13186000" + }, + { + "id": "114335", + "name": "Coalfield", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.02897000", + "longitude": "-84.42076000" + }, + { + "id": "114354", + "name": "Cocke County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.92542000", + "longitude": "-83.12116000" + }, + { + "id": "114369", + "name": "Coffee County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.49062000", + "longitude": "-86.07476000" + }, + { + "id": "114418", + "name": "Collegedale", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.05313000", + "longitude": "-85.05023000" + }, + { + "id": "114424", + "name": "Collierville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.04204000", + "longitude": "-89.66453000" + }, + { + "id": "114448", + "name": "Colonial Heights", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.48510000", + "longitude": "-82.50320000" + }, + { + "id": "114472", + "name": "Columbia", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.61507000", + "longitude": "-87.03528000" + }, + { + "id": "114548", + "name": "Condon", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.18119000", + "longitude": "-83.79380000" + }, + { + "id": "114595", + "name": "Cookeville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.16284000", + "longitude": "-85.50164000" + }, + { + "id": "114609", + "name": "Coopertown", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.43755000", + "longitude": "-86.96722000" + }, + { + "id": "114650", + "name": "Cornersville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.36146000", + "longitude": "-86.83972000" + }, + { + "id": "114738", + "name": "Covington", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.56425000", + "longitude": "-89.64647000" + }, + { + "id": "114744", + "name": "Cowan", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.16453000", + "longitude": "-86.01054000" + }, + { + "id": "114831", + "name": "Crockett County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.81354000", + "longitude": "-89.13953000" + }, + { + "id": "114852", + "name": "Cross Plains", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.54866000", + "longitude": "-86.69611000" + }, + { + "id": "114856", + "name": "Crossville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.94896000", + "longitude": "-85.02690000" + }, + { + "id": "114873", + "name": "Crump", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.22175000", + "longitude": "-88.31809000" + }, + { + "id": "114916", + "name": "Cumberland County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.95039000", + "longitude": "-84.99835000" + }, + { + "id": "115018", + "name": "Dandridge", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.01537000", + "longitude": "-83.41489000" + }, + { + "id": "115064", + "name": "Davidson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.17069000", + "longitude": "-86.77753000" + }, + { + "id": "115092", + "name": "Dayton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.49396000", + "longitude": "-85.01245000" + }, + { + "id": "115154", + "name": "Decatur", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.51479000", + "longitude": "-84.79022000" + }, + { + "id": "115161", + "name": "Decatur County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.60302000", + "longitude": "-88.10877000" + }, + { + "id": "115164", + "name": "Decaturville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.58424000", + "longitude": "-88.11948000" + }, + { + "id": "115165", + "name": "Decherd", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.20980000", + "longitude": "-86.07943000" + }, + { + "id": "115131", + "name": "DeKalb County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.97986000", + "longitude": "-85.83275000" + }, + { + "id": "115331", + "name": "Dickson", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.07700000", + "longitude": "-87.38779000" + }, + { + "id": "115333", + "name": "Dickson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.14905000", + "longitude": "-87.35666000" + }, + { + "id": "115382", + "name": "Dodson Branch", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.31256000", + "longitude": "-85.53220000" + }, + { + "id": "115447", + "name": "Dover", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.48783000", + "longitude": "-87.83836000" + }, + { + "id": "115471", + "name": "Dresden", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.29145000", + "longitude": "-88.70811000" + }, + { + "id": "115542", + "name": "Dunlap", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.37146000", + "longitude": "-85.39052000" + }, + { + "id": "115585", + "name": "Dyer", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.06673000", + "longitude": "-88.99395000" + }, + { + "id": "115587", + "name": "Dyer County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.05906000", + "longitude": "-89.41377000" + }, + { + "id": "115588", + "name": "Dyersburg", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.03452000", + "longitude": "-89.38563000" + }, + { + "id": "115613", + "name": "Eagleton Village", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.79508000", + "longitude": "-83.93185000" + }, + { + "id": "115635", + "name": "East Brainerd", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "34.99591000", + "longitude": "-85.15023000" + }, + { + "id": "115644", + "name": "East Chattanooga", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.06535000", + "longitude": "-85.24912000" + }, + { + "id": "115646", + "name": "East Cleveland", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.16091000", + "longitude": "-84.85772000" + }, + { + "id": "115747", + "name": "East Ridge", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.01424000", + "longitude": "-85.25190000" + }, + { + "id": "115976", + "name": "Elizabethton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.34872000", + "longitude": "-82.21069000" + }, + { + "id": "116130", + "name": "Englewood", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.42452000", + "longitude": "-84.48743000" + }, + { + "id": "116170", + "name": "Erin", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.31839000", + "longitude": "-87.69474000" + }, + { + "id": "116176", + "name": "Erwin", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.14511000", + "longitude": "-82.41681000" + }, + { + "id": "116213", + "name": "Estill Springs", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.27064000", + "longitude": "-86.12804000" + }, + { + "id": "116218", + "name": "Etowah", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.32341000", + "longitude": "-84.52493000" + }, + { + "id": "116321", + "name": "Fairfield Glade", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.00035000", + "longitude": "-84.88634000" + }, + { + "id": "116339", + "name": "Fairmount", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.18146000", + "longitude": "-85.32357000" + }, + { + "id": "116349", + "name": "Fairview", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.98201000", + "longitude": "-87.12140000" + }, + { + "id": "116370", + "name": "Fall Branch", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.41816000", + "longitude": "-82.62376000" + }, + { + "id": "116377", + "name": "Falling Water", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.20312000", + "longitude": "-85.25357000" + }, + { + "id": "116429", + "name": "Farragut", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.88452000", + "longitude": "-84.15353000" + }, + { + "id": "116448", + "name": "Fayette County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.19708000", + "longitude": "-89.41437000" + }, + { + "id": "116457", + "name": "Fayetteville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.15203000", + "longitude": "-86.57055000" + }, + { + "id": "116476", + "name": "Fentress County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.38049000", + "longitude": "-84.93246000" + }, + { + "id": "116513", + "name": "Fincastle", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.40980000", + "longitude": "-84.04770000" + }, + { + "id": "116656", + "name": "Forest Hills", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.06839000", + "longitude": "-86.84417000" + }, + { + "id": "116829", + "name": "Franklin", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.92506000", + "longitude": "-86.86889000" + }, + { + "id": "116854", + "name": "Franklin County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.15496000", + "longitude": "-86.09218000" + }, + { + "id": "117013", + "name": "Gainesboro", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.35561000", + "longitude": "-85.65887000" + }, + { + "id": "117033", + "name": "Gallatin", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.38838000", + "longitude": "-86.44666000" + }, + { + "id": "117125", + "name": "Gatlinburg", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.71453000", + "longitude": "-83.51189000" + }, + { + "id": "117173", + "name": "Germantown", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.08676000", + "longitude": "-89.81009000" + }, + { + "id": "117190", + "name": "Gibson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.99661000", + "longitude": "-88.93262000" + }, + { + "id": "117210", + "name": "Giles County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.20215000", + "longitude": "-87.03478000" + }, + { + "id": "117257", + "name": "Gleason", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.21367000", + "longitude": "-88.61255000" + }, + { + "id": "117386", + "name": "Goodlettsville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.32311000", + "longitude": "-86.71333000" + }, + { + "id": "117400", + "name": "Gordonsville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.17256000", + "longitude": "-85.92971000" + }, + { + "id": "117441", + "name": "Grainger County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.27625000", + "longitude": "-83.50962000" + }, + { + "id": "117552", + "name": "Gray", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.41983000", + "longitude": "-82.47654000" + }, + { + "id": "117567", + "name": "Graysville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.44701000", + "longitude": "-85.08440000" + }, + { + "id": "117598", + "name": "Green Hill", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.22283000", + "longitude": "-86.54944000" + }, + { + "id": "117615", + "name": "Greenback", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.66119000", + "longitude": "-84.17214000" + }, + { + "id": "117620", + "name": "Greenbrier", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.42755000", + "longitude": "-86.80472000" + }, + { + "id": "117639", + "name": "Greene County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.17536000", + "longitude": "-82.84582000" + }, + { + "id": "117644", + "name": "Greeneville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.16316000", + "longitude": "-82.83099000" + }, + { + "id": "117648", + "name": "Greenfield", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.15340000", + "longitude": "-88.80062000" + }, + { + "id": "117739", + "name": "Grimsley", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.26701000", + "longitude": "-84.98440000" + }, + { + "id": "117767", + "name": "Gruetli-Laager", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.37230000", + "longitude": "-85.61803000" + }, + { + "id": "117770", + "name": "Grundy County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.38837000", + "longitude": "-85.72258000" + }, + { + "id": "117873", + "name": "Halls", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.87563000", + "longitude": "-89.39618000" + }, + { + "id": "117880", + "name": "Hamblen County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.21715000", + "longitude": "-83.26666000" + }, + { + "id": "117898", + "name": "Hamilton County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.18086000", + "longitude": "-85.16479000" + }, + { + "id": "117954", + "name": "Hancock County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.52365000", + "longitude": "-83.22183000" + }, + { + "id": "117995", + "name": "Hardeman County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.20687000", + "longitude": "-88.99308000" + }, + { + "id": "118001", + "name": "Hardin County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.19868000", + "longitude": "-88.18448000" + }, + { + "id": "118039", + "name": "Harriman", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.93396000", + "longitude": "-84.55244000" + }, + { + "id": "118055", + "name": "Harrison", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.11368000", + "longitude": "-85.13801000" + }, + { + "id": "118079", + "name": "Harrogate", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.58230000", + "longitude": "-83.65686000" + }, + { + "id": "118105", + "name": "Hartsville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.39088000", + "longitude": "-86.16721000" + }, + { + "id": "118166", + "name": "Hawkins County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.44117000", + "longitude": "-82.94468000" + }, + { + "id": "118199", + "name": "Haywood County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.58322000", + "longitude": "-89.28384000" + }, + { + "id": "118277", + "name": "Henderson", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.43924000", + "longitude": "-88.64144000" + }, + { + "id": "118282", + "name": "Henderson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.65426000", + "longitude": "-88.38799000" + }, + { + "id": "118286", + "name": "Hendersonville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.30477000", + "longitude": "-86.62000000" + }, + { + "id": "118302", + "name": "Henry County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.33183000", + "longitude": "-88.30122000" + }, + { + "id": "118364", + "name": "Hickman County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.80325000", + "longitude": "-87.47331000" + }, + { + "id": "118370", + "name": "Hickory Withe", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.24398000", + "longitude": "-89.58869000" + }, + { + "id": "118512", + "name": "Hohenwald", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.54785000", + "longitude": "-87.55196000" + }, + { + "id": "118648", + "name": "Hopewell", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.23479000", + "longitude": "-84.88800000" + }, + { + "id": "118704", + "name": "Houston County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.28597000", + "longitude": "-87.71704000" + }, + { + "id": "118776", + "name": "Humboldt", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.81979000", + "longitude": "-88.91590000" + }, + { + "id": "118785", + "name": "Humphreys County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.04082000", + "longitude": "-87.77563000" + }, + { + "id": "118788", + "name": "Hunter", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.37178000", + "longitude": "-82.15874000" + }, + { + "id": "118795", + "name": "Huntingdon", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.00062000", + "longitude": "-88.42811000" + }, + { + "id": "118817", + "name": "Huntsville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.40980000", + "longitude": "-84.49049000" + }, + { + "id": "119058", + "name": "Jacksboro", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.33008000", + "longitude": "-84.18382000" + }, + { + "id": "119068", + "name": "Jackson", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.61452000", + "longitude": "-88.81395000" + }, + { + "id": "119087", + "name": "Jackson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.35921000", + "longitude": "-85.67315000" + }, + { + "id": "119122", + "name": "Jamestown", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.42757000", + "longitude": "-84.93189000" + }, + { + "id": "119143", + "name": "Jasper", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.07424000", + "longitude": "-85.62608000" + }, + { + "id": "119174", + "name": "Jefferson City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.12231000", + "longitude": "-83.49240000" + }, + { + "id": "119186", + "name": "Jefferson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.05099000", + "longitude": "-83.44631000" + }, + { + "id": "119209", + "name": "Jellico", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.58786000", + "longitude": "-84.12687000" + }, + { + "id": "119257", + "name": "Johnson City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.31344000", + "longitude": "-82.35347000" + }, + { + "id": "119267", + "name": "Johnson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.45494000", + "longitude": "-81.85175000" + }, + { + "id": "119275", + "name": "Johnsonville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.06006000", + "longitude": "-87.95281000" + }, + { + "id": "119304", + "name": "Jonesborough", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.29427000", + "longitude": "-82.47348000" + }, + { + "id": "119497", + "name": "Kenton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.20229000", + "longitude": "-89.01229000" + }, + { + "id": "119565", + "name": "Kimball", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.04786000", + "longitude": "-85.67191000" + }, + { + "id": "119619", + "name": "Kingsport", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.54843000", + "longitude": "-82.56182000" + }, + { + "id": "119621", + "name": "Kingston", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.88091000", + "longitude": "-84.50854000" + }, + { + "id": "119632", + "name": "Kingston Springs", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.10200000", + "longitude": "-87.11501000" + }, + { + "id": "119687", + "name": "Knox County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.99322000", + "longitude": "-83.93709000" + }, + { + "id": "119694", + "name": "Knoxville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.96064000", + "longitude": "-83.92074000" + }, + { + "id": "119792", + "name": "La Vergne", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.01562000", + "longitude": "-86.58194000" + }, + { + "id": "119833", + "name": "Lafayette", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.52116000", + "longitude": "-86.02637000" + }, + { + "id": "119800", + "name": "LaFollette", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.38286000", + "longitude": "-84.11993000" + }, + { + "id": "119890", + "name": "Lake County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.33538000", + "longitude": "-89.49347000" + }, + { + "id": "119984", + "name": "Lake Tansi", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.87285000", + "longitude": "-85.05440000" + }, + { + "id": "120014", + "name": "Lakeland", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.23064000", + "longitude": "-89.74036000" + }, + { + "id": "120036", + "name": "Lakesite", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.20868000", + "longitude": "-85.12690000" + }, + { + "id": "120046", + "name": "Lakewood", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.24311000", + "longitude": "-86.63555000" + }, + { + "id": "120181", + "name": "Lauderdale County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.76101000", + "longitude": "-89.63144000" + }, + { + "id": "120236", + "name": "Lawrence County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.21727000", + "longitude": "-87.39559000" + }, + { + "id": "120242", + "name": "Lawrenceburg", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.24230000", + "longitude": "-87.33474000" + }, + { + "id": "120287", + "name": "Lebanon", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.20811000", + "longitude": "-86.29110000" + }, + { + "id": "120373", + "name": "Lenoir City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.79730000", + "longitude": "-84.25603000" + }, + { + "id": "120412", + "name": "Lewis County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.52728000", + "longitude": "-87.49310000" + }, + { + "id": "120419", + "name": "Lewisburg", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.44924000", + "longitude": "-86.78889000" + }, + { + "id": "120444", + "name": "Lexington", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.65090000", + "longitude": "-88.39338000" + }, + { + "id": "120524", + "name": "Lincoln County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.14052000", + "longitude": "-86.58894000" + }, + { + "id": "120561", + "name": "Linden", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.61729000", + "longitude": "-87.83947000" + }, + { + "id": "120649", + "name": "Livingston", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.38340000", + "longitude": "-85.32302000" + }, + { + "id": "120728", + "name": "Lone Oak", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.20063000", + "longitude": "-85.36413000" + }, + { + "id": "120766", + "name": "Lookout Mountain", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "34.99424000", + "longitude": "-85.34940000" + }, + { + "id": "120774", + "name": "Loretto", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.07786000", + "longitude": "-87.43974000" + }, + { + "id": "120799", + "name": "Loudon", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.73285000", + "longitude": "-84.33381000" + }, + { + "id": "120800", + "name": "Loudon County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.73478000", + "longitude": "-84.31187000" + }, + { + "id": "120815", + "name": "Louisville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.82175000", + "longitude": "-84.04796000" + }, + { + "id": "120897", + "name": "Luttrell", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.19953000", + "longitude": "-83.74185000" + }, + { + "id": "120915", + "name": "Lynchburg", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.28314000", + "longitude": "-86.37416000" + }, + { + "id": "120972", + "name": "Macon County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.53203000", + "longitude": "-86.00727000" + }, + { + "id": "121011", + "name": "Madison County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.60814000", + "longitude": "-88.83847000" + }, + { + "id": "121026", + "name": "Madisonville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.51980000", + "longitude": "-84.36353000" + }, + { + "id": "121093", + "name": "Manchester", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.48174000", + "longitude": "-86.08860000" + }, + { + "id": "121258", + "name": "Marion County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.12935000", + "longitude": "-85.62203000" + }, + { + "id": "121315", + "name": "Marshall County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.46886000", + "longitude": "-86.76502000" + }, + { + "id": "121335", + "name": "Martin", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.34340000", + "longitude": "-88.85034000" + }, + { + "id": "121364", + "name": "Maryville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.75647000", + "longitude": "-83.97046000" + }, + { + "id": "121367", + "name": "Mascot", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.06120000", + "longitude": "-83.74573000" + }, + { + "id": "121371", + "name": "Mason", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.41175000", + "longitude": "-89.53285000" + }, + { + "id": "121426", + "name": "Maury County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.61694000", + "longitude": "-87.07701000" + }, + { + "id": "121441", + "name": "Maynardville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.25064000", + "longitude": "-83.79741000" + }, + { + "id": "121498", + "name": "McEwen", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.10784000", + "longitude": "-87.63307000" + }, + { + "id": "121520", + "name": "McKenzie", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.13256000", + "longitude": "-88.51866000" + }, + { + "id": "121539", + "name": "McMinn County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.42475000", + "longitude": "-84.61747000" + }, + { + "id": "121540", + "name": "McMinnville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.68340000", + "longitude": "-85.76998000" + }, + { + "id": "121544", + "name": "McNairy County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.17545000", + "longitude": "-88.56364000" + }, + { + "id": "121602", + "name": "Medina", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.80285000", + "longitude": "-88.77478000" + }, + { + "id": "121618", + "name": "Meigs County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.51283000", + "longitude": "-84.81339000" + }, + { + "id": "121639", + "name": "Memphis", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.14953000", + "longitude": "-90.04898000" + }, + { + "id": "121763", + "name": "Middle Valley", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.19590000", + "longitude": "-85.18468000" + }, + { + "id": "121810", + "name": "Midtown", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.87952000", + "longitude": "-84.56410000" + }, + { + "id": "121817", + "name": "Midway", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.30011000", + "longitude": "-82.42375000" + }, + { + "id": "121836", + "name": "Milan", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.91979000", + "longitude": "-88.75895000" + }, + { + "id": "121888", + "name": "Millersville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.37116000", + "longitude": "-86.71000000" + }, + { + "id": "121891", + "name": "Millington", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.34147000", + "longitude": "-89.89731000" + }, + { + "id": "122076", + "name": "Monroe County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.44265000", + "longitude": "-84.25279000" + }, + { + "id": "122112", + "name": "Monteagle", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.24008000", + "longitude": "-85.83970000" + }, + { + "id": "122118", + "name": "Monterey", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.14756000", + "longitude": "-85.26830000" + }, + { + "id": "122149", + "name": "Montgomery County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.49686000", + "longitude": "-87.38289000" + }, + { + "id": "122202", + "name": "Moore County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.28462000", + "longitude": "-86.35877000" + }, + { + "id": "122242", + "name": "Morgan County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.13502000", + "longitude": "-84.64920000" + }, + { + "id": "122281", + "name": "Morristown", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.21398000", + "longitude": "-83.29489000" + }, + { + "id": "122304", + "name": "Mosheim", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.18954000", + "longitude": "-82.95849000" + }, + { + "id": "122336", + "name": "Mount Carmel", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.54538000", + "longitude": "-82.66099000" + }, + { + "id": "122359", + "name": "Mount Juliet", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.20005000", + "longitude": "-86.51861000" + }, + { + "id": "122375", + "name": "Mount Pleasant", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.53424000", + "longitude": "-87.20695000" + }, + { + "id": "122412", + "name": "Mountain City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.47456000", + "longitude": "-81.80484000" + }, + { + "id": "122443", + "name": "Mowbray Mountain", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.27536000", + "longitude": "-85.22246000" + }, + { + "id": "122471", + "name": "Munford", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.44925000", + "longitude": "-89.81508000" + }, + { + "id": "122482", + "name": "Murfreesboro", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.84562000", + "longitude": "-86.39027000" + }, + { + "id": "122577", + "name": "Nashville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.16589000", + "longitude": "-86.78444000" + }, + { + "id": "122725", + "name": "New Hope", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.00508000", + "longitude": "-85.65830000" + }, + { + "id": "122732", + "name": "New Johnsonville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.02117000", + "longitude": "-87.96698000" + }, + { + "id": "122750", + "name": "New Market", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.10398000", + "longitude": "-83.55268000" + }, + { + "id": "122780", + "name": "New South Memphis", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.08676000", + "longitude": "-90.05676000" + }, + { + "id": "122785", + "name": "New Tazewell", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.44258000", + "longitude": "-83.59963000" + }, + { + "id": "122789", + "name": "New Union", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.53258000", + "longitude": "-86.08082000" + }, + { + "id": "122809", + "name": "Newbern", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.11285000", + "longitude": "-89.26174000" + }, + { + "id": "122843", + "name": "Newport", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.96704000", + "longitude": "-83.18766000" + }, + { + "id": "122933", + "name": "Nolensville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.95229000", + "longitude": "-86.66944000" + }, + { + "id": "122955", + "name": "Norris", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.19563000", + "longitude": "-84.06797000" + }, + { + "id": "123237", + "name": "Oak Grove", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.41177000", + "longitude": "-82.42459000" + }, + { + "id": "123244", + "name": "Oak Hill", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.08784000", + "longitude": "-86.78305000" + }, + { + "id": "123262", + "name": "Oak Ridge", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.01036000", + "longitude": "-84.26964000" + }, + { + "id": "123285", + "name": "Oakland", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.22898000", + "longitude": "-89.51508000" + }, + { + "id": "123317", + "name": "Obion", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.25896000", + "longitude": "-89.19174000" + }, + { + "id": "123318", + "name": "Obion County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.35825000", + "longitude": "-89.14880000" + }, + { + "id": "123444", + "name": "Oliver Springs", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.04452000", + "longitude": "-84.34437000" + }, + { + "id": "123446", + "name": "Olivet", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.21425000", + "longitude": "-88.20031000" + }, + { + "id": "123472", + "name": "Oneida", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.49813000", + "longitude": "-84.51272000" + }, + { + "id": "123654", + "name": "Overton County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.34500000", + "longitude": "-85.28808000" + }, + { + "id": "123833", + "name": "Paris", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.30200000", + "longitude": "-88.32671000" + }, + { + "id": "123838", + "name": "Park City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.08203000", + "longitude": "-86.57111000" + }, + { + "id": "123892", + "name": "Parsons", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.64979000", + "longitude": "-88.12670000" + }, + { + "id": "123985", + "name": "Pegram", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.10061000", + "longitude": "-87.05112000" + }, + { + "id": "124081", + "name": "Perry County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.64263000", + "longitude": "-87.85897000" + }, + { + "id": "124159", + "name": "Pickett County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.55841000", + "longitude": "-85.07499000" + }, + { + "id": "124183", + "name": "Pigeon Forge", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.78842000", + "longitude": "-83.55433000" + }, + { + "id": "124199", + "name": "Pikeville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.60562000", + "longitude": "-85.18885000" + }, + { + "id": "124220", + "name": "Pine Crest", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.29927000", + "longitude": "-82.31792000" + }, + { + "id": "124276", + "name": "Piperton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.04509000", + "longitude": "-89.62175000" + }, + { + "id": "124332", + "name": "Plainview", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.17731000", + "longitude": "-83.79534000" + }, + { + "id": "124380", + "name": "Pleasant View", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.39422000", + "longitude": "-87.03667000" + }, + { + "id": "124445", + "name": "Polk County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.11990000", + "longitude": "-84.52330000" + }, + { + "id": "124558", + "name": "Portland", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.58171000", + "longitude": "-86.51638000" + }, + { + "id": "124614", + "name": "Powells Crossroads", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.18952000", + "longitude": "-85.48580000" + }, + { + "id": "124733", + "name": "Pulaski", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.19980000", + "longitude": "-87.03084000" + }, + { + "id": "124764", + "name": "Putnam County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.14083000", + "longitude": "-85.49519000" + }, + { + "id": "124937", + "name": "Red Bank", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.11229000", + "longitude": "-85.29413000" + }, + { + "id": "124941", + "name": "Red Boiling Springs", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.53339000", + "longitude": "-85.84998000" + }, + { + "id": "125043", + "name": "Rhea County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.60871000", + "longitude": "-84.92440000" + }, + { + "id": "125126", + "name": "Ridgely", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.26340000", + "longitude": "-89.48785000" + }, + { + "id": "125128", + "name": "Ridgetop", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.39505000", + "longitude": "-86.77944000" + }, + { + "id": "125163", + "name": "Ripley", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.74536000", + "longitude": "-89.52980000" + }, + { + "id": "125223", + "name": "Roan Mountain", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.19623000", + "longitude": "-82.07040000" + }, + { + "id": "125224", + "name": "Roane County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.84786000", + "longitude": "-84.52324000" + }, + { + "id": "125246", + "name": "Robertson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.52546000", + "longitude": "-86.87057000" + }, + { + "id": "125332", + "name": "Rockwood", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.86563000", + "longitude": "-84.68494000" + }, + { + "id": "125340", + "name": "Rocky Top", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.21786000", + "longitude": "-84.15465000" + }, + { + "id": "125356", + "name": "Rogersville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.40732000", + "longitude": "-83.00544000" + }, + { + "id": "125517", + "name": "Rural Hill", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.11673000", + "longitude": "-86.47916000" + }, + { + "id": "125548", + "name": "Rutherford", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.12757000", + "longitude": "-88.98590000" + }, + { + "id": "125553", + "name": "Rutherford County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.84270000", + "longitude": "-86.41674000" + }, + { + "id": "125559", + "name": "Rutledge", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.28092000", + "longitude": "-83.51490000" + }, + { + "id": "125725", + "name": "Sale Creek", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.38229000", + "longitude": "-85.10884000" + }, + { + "id": "125976", + "name": "Savannah", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.22480000", + "longitude": "-88.24920000" + }, + { + "id": "126049", + "name": "Scott County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.42854000", + "longitude": "-84.50352000" + }, + { + "id": "126142", + "name": "Selmer", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.17008000", + "longitude": "-88.59227000" + }, + { + "id": "126163", + "name": "Sequatchie County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.37115000", + "longitude": "-85.41059000" + }, + { + "id": "126181", + "name": "Sevier County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.78466000", + "longitude": "-83.52418000" + }, + { + "id": "126183", + "name": "Sevierville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.86815000", + "longitude": "-83.56184000" + }, + { + "id": "126185", + "name": "Sewanee", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.20314000", + "longitude": "-85.92109000" + }, + { + "id": "126194", + "name": "Seymour", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.89064000", + "longitude": "-83.72462000" + }, + { + "id": "126200", + "name": "Shackle Island", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.37060000", + "longitude": "-86.61666000" + }, + { + "id": "126277", + "name": "Shelby County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.18400000", + "longitude": "-89.89560000" + }, + { + "id": "126284", + "name": "Shelbyville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.48341000", + "longitude": "-86.46027000" + }, + { + "id": "126412", + "name": "Signal Mountain", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.12257000", + "longitude": "-85.34385000" + }, + { + "id": "126514", + "name": "Smith County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.25053000", + "longitude": "-85.95671000" + }, + { + "id": "126530", + "name": "Smithville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.96062000", + "longitude": "-85.81415000" + }, + { + "id": "126536", + "name": "Smyrna", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.98284000", + "longitude": "-86.51860000" + }, + { + "id": "126540", + "name": "Sneedville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.52981000", + "longitude": "-83.21740000" + }, + { + "id": "126563", + "name": "Soddy-Daisy", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.23590000", + "longitude": "-85.19079000" + }, + { + "id": "126593", + "name": "Somerville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.24370000", + "longitude": "-89.35007000" + }, + { + "id": "126635", + "name": "South Carthage", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.24200000", + "longitude": "-85.95193000" + }, + { + "id": "126639", + "name": "South Cleveland", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.14119000", + "longitude": "-84.87217000" + }, + { + "id": "126656", + "name": "South Fulton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.50089000", + "longitude": "-88.87534000" + }, + { + "id": "126710", + "name": "South Pittsburg", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.01230000", + "longitude": "-85.70441000" + }, + { + "id": "126810", + "name": "Sparta", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.92590000", + "longitude": "-85.46414000" + }, + { + "id": "126823", + "name": "Spencer", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.74729000", + "longitude": "-85.46664000" + }, + { + "id": "126851", + "name": "Spring City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.69201000", + "longitude": "-84.86078000" + }, + { + "id": "126862", + "name": "Spring Hill", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.75118000", + "longitude": "-86.93000000" + }, + { + "id": "126895", + "name": "Springfield", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.50921000", + "longitude": "-86.88500000" + }, + { + "id": "126922", + "name": "Spurgeon", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.43955000", + "longitude": "-82.45570000" + }, + { + "id": "127051", + "name": "Stewart County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.50110000", + "longitude": "-87.83846000" + }, + { + "id": "127187", + "name": "Sullivan County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.51292000", + "longitude": "-82.30414000" + }, + { + "id": "127225", + "name": "Sumner County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.46941000", + "longitude": "-86.46036000" + }, + { + "id": "127289", + "name": "Surgoinsville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.47093000", + "longitude": "-82.85183000" + }, + { + "id": "127341", + "name": "Sweetwater", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.60146000", + "longitude": "-84.46104000" + }, + { + "id": "127468", + "name": "Tazewell", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.45425000", + "longitude": "-83.56935000" + }, + { + "id": "127490", + "name": "Tellico Village", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.68321000", + "longitude": "-84.25518000" + }, + { + "id": "127510", + "name": "Tennessee Ridge", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.31200000", + "longitude": "-87.77336000" + }, + { + "id": "127593", + "name": "Thompson's Station", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.80201000", + "longitude": "-86.91139000" + }, + { + "id": "127622", + "name": "Three Way", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.77590000", + "longitude": "-88.85950000" + }, + { + "id": "127679", + "name": "Tipton County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.49687000", + "longitude": "-89.75924000" + }, + { + "id": "127681", + "name": "Tiptonville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.37840000", + "longitude": "-89.47202000" + }, + { + "id": "127772", + "name": "Tracy City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.26036000", + "longitude": "-85.73608000" + }, + { + "id": "127805", + "name": "Trenton", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.98062000", + "longitude": "-88.94145000" + }, + { + "id": "127837", + "name": "Trousdale County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.39204000", + "longitude": "-86.15675000" + }, + { + "id": "127847", + "name": "Troy", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.33868000", + "longitude": "-89.16396000" + }, + { + "id": "127886", + "name": "Tullahoma", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.36202000", + "longitude": "-86.20943000" + }, + { + "id": "127913", + "name": "Tusculum", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.17510000", + "longitude": "-82.75876000" + }, + { + "id": "127969", + "name": "Unicoi", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.19539000", + "longitude": "-82.34958000" + }, + { + "id": "127970", + "name": "Unicoi County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.11082000", + "longitude": "-82.43224000" + }, + { + "id": "127982", + "name": "Union City", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.42423000", + "longitude": "-89.05701000" + }, + { + "id": "127997", + "name": "Union County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.28787000", + "longitude": "-83.83751000" + }, + { + "id": "128019", + "name": "Unionville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.62174000", + "longitude": "-86.59250000" + }, + { + "id": "128130", + "name": "Van Buren County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.69598000", + "longitude": "-85.45261000" + }, + { + "id": "128305", + "name": "Vonore", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.59008000", + "longitude": "-84.24186000" + }, + { + "id": "128367", + "name": "Walden", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.16479000", + "longitude": "-85.30135000" + }, + { + "id": "128421", + "name": "Walnut Hill", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.56983000", + "longitude": "-82.25680000" + }, + { + "id": "128491", + "name": "Warren County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.67868000", + "longitude": "-85.77850000" + }, + { + "id": "128523", + "name": "Wartburg", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.10480000", + "longitude": "-84.59716000" + }, + { + "id": "128565", + "name": "Washington County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.29330000", + "longitude": "-82.49743000" + }, + { + "id": "128619", + "name": "Watertown", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.10034000", + "longitude": "-86.13193000" + }, + { + "id": "128666", + "name": "Waverly", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.08395000", + "longitude": "-87.79475000" + }, + { + "id": "128696", + "name": "Wayne County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.23992000", + "longitude": "-87.78801000" + }, + { + "id": "128708", + "name": "Waynesboro", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.31952000", + "longitude": "-87.76225000" + }, + { + "id": "128714", + "name": "Weakley County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.29830000", + "longitude": "-88.71774000" + }, + { + "id": "129053", + "name": "Westmoreland", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.56199000", + "longitude": "-86.24804000" + }, + { + "id": "129127", + "name": "White Bluff", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.10756000", + "longitude": "-87.22084000" + }, + { + "id": "129137", + "name": "White County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.92635000", + "longitude": "-85.45518000" + }, + { + "id": "129143", + "name": "White House", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.47032000", + "longitude": "-86.65138000" + }, + { + "id": "129152", + "name": "White Pine", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.10759000", + "longitude": "-83.28683000" + }, + { + "id": "129190", + "name": "Whiteville", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.32647000", + "longitude": "-89.14951000" + }, + { + "id": "129212", + "name": "Whitwell", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.20146000", + "longitude": "-85.51913000" + }, + { + "id": "129239", + "name": "Wildwood", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.80370000", + "longitude": "-83.87129000" + }, + { + "id": "129242", + "name": "Wildwood Lake", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.09202000", + "longitude": "-84.85439000" + }, + { + "id": "129277", + "name": "Williamson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.89378000", + "longitude": "-86.89860000" + }, + { + "id": "129336", + "name": "Wilson County", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "36.15486000", + "longitude": "-86.29763000" + }, + { + "id": "129355", + "name": "Winchester", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.18592000", + "longitude": "-86.11221000" + }, + { + "id": "129507", + "name": "Woodbury", + "state_id": 1454, + "state_code": "TN", + "country_id": 233, + "country_code": "US", + "latitude": "35.82757000", + "longitude": "-86.07166000" + }, + { + "id": "110981", + "name": "Abernathy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.83230000", + "longitude": "-101.84295000" + }, + { + "id": "110983", + "name": "Abilene", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.44874000", + "longitude": "-99.73314000" + }, + { + "id": "110988", + "name": "Abram", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.19980000", + "longitude": "-98.41113000" + }, + { + "id": "111034", + "name": "Addison", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.96179000", + "longitude": "-96.82917000" + }, + { + "id": "111059", + "name": "Agua Dulce", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.65511000", + "longitude": "-106.13887000" + }, + { + "id": "111092", + "name": "Alamo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.18369000", + "longitude": "-98.12306000" + }, + { + "id": "111096", + "name": "Alamo Heights", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.48495000", + "longitude": "-98.46585000" + }, + { + "id": "111104", + "name": "Albany", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.72345000", + "longitude": "-99.29730000" + }, + { + "id": "111140", + "name": "Aldine", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.93245000", + "longitude": "-95.38021000" + }, + { + "id": "111141", + "name": "Aledo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.69596000", + "longitude": "-97.60225000" + }, + { + "id": "111171", + "name": "Alice", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.75225000", + "longitude": "-98.06972000" + }, + { + "id": "111173", + "name": "Alief", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.71106000", + "longitude": "-95.59633000" + }, + { + "id": "111187", + "name": "Allen", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.10317000", + "longitude": "-96.67055000" + }, + { + "id": "111224", + "name": "Alpine", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.35862000", + "longitude": "-103.66206000" + }, + { + "id": "111240", + "name": "Alto", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.65045000", + "longitude": "-95.07272000" + }, + { + "id": "111244", + "name": "Alton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.28729000", + "longitude": "-98.31335000" + }, + { + "id": "111246", + "name": "Alton North (historical)", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.29535000", + "longitude": "-98.30446000" + }, + { + "id": "111257", + "name": "Alvarado", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.40653000", + "longitude": "-97.21168000" + }, + { + "id": "111258", + "name": "Alvin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.42385000", + "longitude": "-95.24410000" + }, + { + "id": "111259", + "name": "Alvord", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.35845000", + "longitude": "-97.69475000" + }, + { + "id": "111263", + "name": "Amarillo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.22200000", + "longitude": "-101.83130000" + }, + { + "id": "111276", + "name": "Ames", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.05383000", + "longitude": "-94.74353000" + }, + { + "id": "111301", + "name": "Anahuac", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.77300000", + "longitude": "-94.68270000" + }, + { + "id": "111312", + "name": "Anderson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.48715000", + "longitude": "-95.98690000" + }, + { + "id": "111319", + "name": "Anderson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.81333000", + "longitude": "-95.65255000" + }, + { + "id": "111320", + "name": "Anderson Mill", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.45492000", + "longitude": "-97.80584000" + }, + { + "id": "111331", + "name": "Andrews", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.31872000", + "longitude": "-102.54572000" + }, + { + "id": "111333", + "name": "Andrews County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.30503000", + "longitude": "-102.63781000" + }, + { + "id": "111336", + "name": "Angelina County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.25476000", + "longitude": "-94.61185000" + }, + { + "id": "111339", + "name": "Angleton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.16941000", + "longitude": "-95.43188000" + }, + { + "id": "111347", + "name": "Anna", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.34900000", + "longitude": "-96.54860000" + }, + { + "id": "111354", + "name": "Annetta", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.70930000", + "longitude": "-97.67614000" + }, + { + "id": "111360", + "name": "Anson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.75650000", + "longitude": "-99.89621000" + }, + { + "id": "111370", + "name": "Anthony", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.99927000", + "longitude": "-106.60555000" + }, + { + "id": "111375", + "name": "Anton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.81120000", + "longitude": "-102.16379000" + }, + { + "id": "111410", + "name": "Aransas County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.01501000", + "longitude": "-97.07382000" + }, + { + "id": "111411", + "name": "Aransas Pass", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.90947000", + "longitude": "-97.14999000" + }, + { + "id": "111430", + "name": "Archer City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.59566000", + "longitude": "-98.62561000" + }, + { + "id": "111431", + "name": "Archer County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.61525000", + "longitude": "-98.68765000" + }, + { + "id": "111437", + "name": "Arcola", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.49607000", + "longitude": "-95.46578000" + }, + { + "id": "111450", + "name": "Argyle", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.12123000", + "longitude": "-97.18335000" + }, + { + "id": "111464", + "name": "Arlington", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.73569000", + "longitude": "-97.10807000" + }, + { + "id": "111481", + "name": "Armstrong County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.96493000", + "longitude": "-101.35740000" + }, + { + "id": "111521", + "name": "Asherton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.44193000", + "longitude": "-99.76033000" + }, + { + "id": "111554", + "name": "Aspermont", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.13343000", + "longitude": "-100.22733000" + }, + { + "id": "111565", + "name": "Atascocita", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.99883000", + "longitude": "-95.17660000" + }, + { + "id": "111566", + "name": "Atascosa County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.89352000", + "longitude": "-98.52713000" + }, + { + "id": "111576", + "name": "Athens", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.20487000", + "longitude": "-95.85552000" + }, + { + "id": "111591", + "name": "Atlanta", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.11374000", + "longitude": "-94.16435000" + }, + { + "id": "111618", + "name": "Aubrey", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.30428000", + "longitude": "-96.98612000" + }, + { + "id": "111658", + "name": "Aurora", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.06068000", + "longitude": "-97.50336000" + }, + { + "id": "111668", + "name": "Austin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.26715000", + "longitude": "-97.74306000" + }, + { + "id": "111670", + "name": "Austin County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.88702000", + "longitude": "-96.27791000" + }, + { + "id": "111710", + "name": "Azle", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.89513000", + "longitude": "-97.54586000" + }, + { + "id": "111719", + "name": "Bacliff", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.50690000", + "longitude": "-94.99243000" + }, + { + "id": "111730", + "name": "Bailey County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.06852000", + "longitude": "-102.82987000" + }, + { + "id": "111736", + "name": "Baird", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.39402000", + "longitude": "-99.39424000" + }, + { + "id": "111749", + "name": "Balch Springs", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.72874000", + "longitude": "-96.62277000" + }, + { + "id": "111750", + "name": "Balcones Heights", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.48801000", + "longitude": "-98.55169000" + }, + { + "id": "111773", + "name": "Ballinger", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.73821000", + "longitude": "-99.94731000" + }, + { + "id": "111788", + "name": "Bandera", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.72661000", + "longitude": "-99.07365000" + }, + { + "id": "111789", + "name": "Bandera County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.74721000", + "longitude": "-99.24624000" + }, + { + "id": "111796", + "name": "Bangs", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.71710000", + "longitude": "-99.13255000" + }, + { + "id": "111844", + "name": "Barrett", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.87995000", + "longitude": "-95.06298000" + }, + { + "id": "111862", + "name": "Bartlett", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.79491000", + "longitude": "-97.42556000" + }, + { + "id": "111868", + "name": "Barton Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.28521000", + "longitude": "-97.86917000" + }, + { + "id": "111870", + "name": "Bartonville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.07318000", + "longitude": "-97.13168000" + }, + { + "id": "111884", + "name": "Bastrop", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.11049000", + "longitude": "-97.31527000" + }, + { + "id": "111885", + "name": "Bastrop County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.10361000", + "longitude": "-97.31201000" + }, + { + "id": "111895", + "name": "Batesville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.95108000", + "longitude": "-99.61783000" + }, + { + "id": "111921", + "name": "Bay City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.98276000", + "longitude": "-95.96940000" + }, + { + "id": "111943", + "name": "Baylor County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.61649000", + "longitude": "-99.21351000" + }, + { + "id": "111950", + "name": "Bayou Vista", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.32635000", + "longitude": "-94.93853000" + }, + { + "id": "111958", + "name": "Baytown", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.73550000", + "longitude": "-94.97743000" + }, + { + "id": "111963", + "name": "Beach City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.66217000", + "longitude": "-94.88992000" + }, + { + "id": "111989", + "name": "Beaumont", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.08605000", + "longitude": "-94.10185000" + }, + { + "id": "112021", + "name": "Bedford", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.84402000", + "longitude": "-97.14307000" + }, + { + "id": "112033", + "name": "Bee Cave", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.30854000", + "longitude": "-97.94501000" + }, + { + "id": "112034", + "name": "Bee County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.41739000", + "longitude": "-97.74119000" + }, + { + "id": "112044", + "name": "Beeville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.40095000", + "longitude": "-97.74974000" + }, + { + "id": "112069", + "name": "Bell County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.03767000", + "longitude": "-97.47820000" + }, + { + "id": "112075", + "name": "Bellaire", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.70579000", + "longitude": "-95.45883000" + }, + { + "id": "112122", + "name": "Bellmead", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.59405000", + "longitude": "-97.10889000" + }, + { + "id": "112127", + "name": "Bells", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.61038000", + "longitude": "-96.41082000" + }, + { + "id": "112129", + "name": "Bellville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.95023000", + "longitude": "-96.25719000" + }, + { + "id": "112149", + "name": "Belton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.05601000", + "longitude": "-97.46445000" + }, + { + "id": "112164", + "name": "Benavides", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.59892000", + "longitude": "-98.40807000" + }, + { + "id": "112165", + "name": "Benbrook", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.67319000", + "longitude": "-97.46058000" + }, + { + "id": "112169", + "name": "Benjamin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.58398000", + "longitude": "-99.79231000" + }, + { + "id": "112256", + "name": "Berryville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.08849000", + "longitude": "-95.47190000" + }, + { + "id": "112259", + "name": "Bertram", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.74380000", + "longitude": "-98.05558000" + }, + { + "id": "112299", + "name": "Beverly", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.52517000", + "longitude": "-97.14195000" + }, + { + "id": "112304", + "name": "Beverly Hills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.52156000", + "longitude": "-97.15389000" + }, + { + "id": "112307", + "name": "Bevil Oaks", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.15021000", + "longitude": "-94.26963000" + }, + { + "id": "112308", + "name": "Bexar County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.44896000", + "longitude": "-98.52002000" + }, + { + "id": "112324", + "name": "Big Lake", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.19154000", + "longitude": "-101.46039000" + }, + { + "id": "112333", + "name": "Big Sandy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.58375000", + "longitude": "-95.10883000" + }, + { + "id": "112335", + "name": "Big Spring", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.25040000", + "longitude": "-101.47874000" + }, + { + "id": "112363", + "name": "Bishop", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.58614000", + "longitude": "-97.79916000" + }, + { + "id": "112418", + "name": "Blanco", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.09799000", + "longitude": "-98.42141000" + }, + { + "id": "112419", + "name": "Blanco County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.26638000", + "longitude": "-98.39987000" + }, + { + "id": "112450", + "name": "Bloomington", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.64777000", + "longitude": "-96.89249000" + }, + { + "id": "112456", + "name": "Blossom", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.66150000", + "longitude": "-95.38579000" + }, + { + "id": "112472", + "name": "Blue Mound", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.85652000", + "longitude": "-97.33891000" + }, + { + "id": "112497", + "name": "Boerne", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.79466000", + "longitude": "-98.73197000" + }, + { + "id": "112500", + "name": "Bogata", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.47067000", + "longitude": "-95.21384000" + }, + { + "id": "112515", + "name": "Boling", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.26441000", + "longitude": "-95.94384000" + }, + { + "id": "112522", + "name": "Bolivar Peninsula", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.47829000", + "longitude": "-94.57991000" + }, + { + "id": "112535", + "name": "Bonham", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.57733000", + "longitude": "-96.17831000" + }, + { + "id": "112551", + "name": "Booker", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.45336000", + "longitude": "-100.53737000" + }, + { + "id": "112575", + "name": "Borden County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.74369000", + "longitude": "-101.43175000" + }, + { + "id": "112577", + "name": "Borger", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.66782000", + "longitude": "-101.39739000" + }, + { + "id": "112584", + "name": "Bosque County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.90040000", + "longitude": "-97.63435000" + }, + { + "id": "112619", + "name": "Bovina", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.51368000", + "longitude": "-102.88300000" + }, + { + "id": "112624", + "name": "Bowie", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.55900000", + "longitude": "-97.84865000" + }, + { + "id": "112625", + "name": "Bowie County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.44576000", + "longitude": "-94.42332000" + }, + { + "id": "112641", + "name": "Boyd", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.07873000", + "longitude": "-97.56530000" + }, + { + "id": "112657", + "name": "Brackettville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.31051000", + "longitude": "-100.41786000" + }, + { + "id": "112678", + "name": "Brady", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.13517000", + "longitude": "-99.33506000" + }, + { + "id": "112704", + "name": "Brazoria", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.04441000", + "longitude": "-95.56911000" + }, + { + "id": "112705", + "name": "Brazoria County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.16783000", + "longitude": "-95.43426000" + }, + { + "id": "112706", + "name": "Brazos County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.66080000", + "longitude": "-96.30239000" + }, + { + "id": "112710", + "name": "Breckenridge", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.75568000", + "longitude": "-98.90229000" + }, + { + "id": "112724", + "name": "Brenham", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.16688000", + "longitude": "-96.39774000" + }, + { + "id": "112745", + "name": "Brewster County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.81195000", + "longitude": "-103.25176000" + }, + { + "id": "112748", + "name": "Briar", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.99512000", + "longitude": "-97.54280000" + }, + { + "id": "112749", + "name": "Briarcliff", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.40742000", + "longitude": "-98.04446000" + }, + { + "id": "112756", + "name": "Bridge City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.02077000", + "longitude": "-93.84573000" + }, + { + "id": "112759", + "name": "Bridgeport", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.21012000", + "longitude": "-97.75476000" + }, + { + "id": "112801", + "name": "Briscoe County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.53026000", + "longitude": "-101.20859000" + }, + { + "id": "112884", + "name": "Brooks County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.03157000", + "longitude": "-98.21872000" + }, + { + "id": "112885", + "name": "Brookshire", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.78606000", + "longitude": "-95.95107000" + }, + { + "id": "112888", + "name": "Brookside Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.58690000", + "longitude": "-95.32522000" + }, + { + "id": "112910", + "name": "Brown County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.77426000", + "longitude": "-98.99979000" + }, + { + "id": "112917", + "name": "Brownfield", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.18120000", + "longitude": "-102.27435000" + }, + { + "id": "112923", + "name": "Brownsboro", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.30237000", + "longitude": "-95.61357000" + }, + { + "id": "112932", + "name": "Brownsville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "25.90175000", + "longitude": "-97.49748000" + }, + { + "id": "112940", + "name": "Brownwood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.70932000", + "longitude": "-98.99116000" + }, + { + "id": "112944", + "name": "Bruceville-Eddy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.30517000", + "longitude": "-97.25167000" + }, + { + "id": "112956", + "name": "Brushy Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.51353000", + "longitude": "-97.73973000" + }, + { + "id": "112959", + "name": "Bryan", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.67436000", + "longitude": "-96.36996000" + }, + { + "id": "112976", + "name": "Buchanan Dam", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.73990000", + "longitude": "-98.43114000" + }, + { + "id": "112993", + "name": "Buda", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.08521000", + "longitude": "-97.84028000" + }, + { + "id": "113010", + "name": "Buffalo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.46379000", + "longitude": "-96.05802000" + }, + { + "id": "113030", + "name": "Bullard", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.13988000", + "longitude": "-95.32023000" + }, + { + "id": "113035", + "name": "Bulverde", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.74383000", + "longitude": "-98.45307000" + }, + { + "id": "113036", + "name": "Buna", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.43298000", + "longitude": "-93.96240000" + }, + { + "id": "113042", + "name": "Bunker Hill Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.76745000", + "longitude": "-95.52994000" + }, + { + "id": "113053", + "name": "Burkburnett", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.09787000", + "longitude": "-98.57061000" + }, + { + "id": "113061", + "name": "Burleson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.54208000", + "longitude": "-97.32085000" + }, + { + "id": "113062", + "name": "Burleson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.49248000", + "longitude": "-96.62146000" + }, + { + "id": "113078", + "name": "Burnet", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.75824000", + "longitude": "-98.22836000" + }, + { + "id": "113079", + "name": "Burnet County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.78830000", + "longitude": "-98.18245000" + }, + { + "id": "113100", + "name": "Bushland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.19200000", + "longitude": "-102.06464000" + }, + { + "id": "113157", + "name": "Cactus", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.05226000", + "longitude": "-102.00240000" + }, + { + "id": "113161", + "name": "Caddo Mills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.06567000", + "longitude": "-96.22776000" + }, + { + "id": "113180", + "name": "Caldwell", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.53132000", + "longitude": "-96.69303000" + }, + { + "id": "113186", + "name": "Caldwell County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.83712000", + "longitude": "-97.62000000" + }, + { + "id": "113207", + "name": "Calhoun County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.43911000", + "longitude": "-96.61507000" + }, + { + "id": "113223", + "name": "Callahan County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.29766000", + "longitude": "-99.37349000" + }, + { + "id": "113233", + "name": "Calvert", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.97797000", + "longitude": "-96.67386000" + }, + { + "id": "113275", + "name": "Cameron", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.85325000", + "longitude": "-96.97693000" + }, + { + "id": "113277", + "name": "Cameron County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.15150000", + "longitude": "-97.45286000" + }, + { + "id": "113280", + "name": "Cameron Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "25.96452000", + "longitude": "-97.47665000" + }, + { + "id": "113282", + "name": "Cameron Park Colonia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "25.97147000", + "longitude": "-97.47832000" + }, + { + "id": "113286", + "name": "Camp County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.97322000", + "longitude": "-94.97848000" + }, + { + "id": "113294", + "name": "Camp Swift", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.19077000", + "longitude": "-97.29221000" + }, + { + "id": "113314", + "name": "Canadian", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.91282000", + "longitude": "-100.38208000" + }, + { + "id": "113342", + "name": "Canton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.55652000", + "longitude": "-95.86330000" + }, + { + "id": "113353", + "name": "Canutillo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.91149000", + "longitude": "-106.60027000" + }, + { + "id": "113354", + "name": "Canyon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.98033000", + "longitude": "-101.91880000" + }, + { + "id": "113358", + "name": "Canyon Lake", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.87522000", + "longitude": "-98.26251000" + }, + { + "id": "113447", + "name": "Carrizo Springs", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.52193000", + "longitude": "-99.86061000" + }, + { + "id": "113470", + "name": "Carrollton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.95373000", + "longitude": "-96.89028000" + }, + { + "id": "113479", + "name": "Carson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.40351000", + "longitude": "-101.35418000" + }, + { + "id": "113495", + "name": "Carthage", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.15738000", + "longitude": "-94.33742000" + }, + { + "id": "113528", + "name": "Cass County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.07754000", + "longitude": "-94.34359000" + }, + { + "id": "113545", + "name": "Castle Hills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.52329000", + "longitude": "-98.51641000" + }, + { + "id": "113556", + "name": "Castro County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.52996000", + "longitude": "-102.26167000" + }, + { + "id": "113558", + "name": "Castroville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.35579000", + "longitude": "-98.87864000" + }, + { + "id": "114960", + "name": "César Chávez", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.30340000", + "longitude": "-98.11529000" + }, + { + "id": "113614", + "name": "Cedar Hill", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.58847000", + "longitude": "-96.95612000" + }, + { + "id": "113619", + "name": "Cedar Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.50520000", + "longitude": "-97.82029000" + }, + { + "id": "113631", + "name": "Celina", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.32456000", + "longitude": "-96.78444000" + }, + { + "id": "113636", + "name": "Center", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.79545000", + "longitude": "-94.17909000" + }, + { + "id": "113657", + "name": "Centerville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.25796000", + "longitude": "-95.97829000" + }, + { + "id": "113675", + "name": "Central Gardens", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.99549000", + "longitude": "-94.01406000" + }, + { + "id": "113721", + "name": "Chambers County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.70826000", + "longitude": "-94.67138000" + }, + { + "id": "113730", + "name": "Chandler", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.30793000", + "longitude": "-95.47996000" + }, + { + "id": "113736", + "name": "Channelview", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.77606000", + "longitude": "-95.11465000" + }, + { + "id": "113737", + "name": "Channing", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.68365000", + "longitude": "-102.33020000" + }, + { + "id": "113778", + "name": "Charlotte", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.86192000", + "longitude": "-98.70641000" + }, + { + "id": "113855", + "name": "Cherokee County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.83695000", + "longitude": "-95.16518000" + }, + { + "id": "113942", + "name": "Chico", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.29595000", + "longitude": "-97.79892000" + }, + { + "id": "113950", + "name": "Childress", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.42645000", + "longitude": "-100.20400000" + }, + { + "id": "113951", + "name": "Childress County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.52920000", + "longitude": "-100.20757000" + }, + { + "id": "113959", + "name": "China", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.04799000", + "longitude": "-94.33574000" + }, + { + "id": "113962", + "name": "China Grove", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.38885000", + "longitude": "-98.34890000" + }, + { + "id": "114018", + "name": "Cibolo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.56162000", + "longitude": "-98.22696000" + }, + { + "id": "114022", + "name": "Cienegas Terrace", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.36745000", + "longitude": "-100.94371000" + }, + { + "id": "114026", + "name": "Cinco Ranch", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.73884000", + "longitude": "-95.75800000" + }, + { + "id": "114029", + "name": "Circle D-KC Estates", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.16100000", + "longitude": "-97.23473000" + }, + { + "id": "114031", + "name": "Cisco", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.38819000", + "longitude": "-98.97923000" + }, + { + "id": "114035", + "name": "Citrus City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.32646000", + "longitude": "-98.38530000" + }, + { + "id": "114112", + "name": "Clarendon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.93783000", + "longitude": "-100.88820000" + }, + { + "id": "114155", + "name": "Clarksville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.61066000", + "longitude": "-95.05272000" + }, + { + "id": "114162", + "name": "Claude", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.11172000", + "longitude": "-101.36322000" + }, + { + "id": "114185", + "name": "Clay County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.78553000", + "longitude": "-98.20850000" + }, + { + "id": "114214", + "name": "Clear Lake Shores", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.54745000", + "longitude": "-95.03215000" + }, + { + "id": "114229", + "name": "Cleburne", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.34764000", + "longitude": "-97.38668000" + }, + { + "id": "114246", + "name": "Cleveland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.34132000", + "longitude": "-95.08549000" + }, + { + "id": "114256", + "name": "Clifton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.78238000", + "longitude": "-97.57669000" + }, + { + "id": "114266", + "name": "Clint", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.59234000", + "longitude": "-106.22414000" + }, + { + "id": "114312", + "name": "Cloverleaf", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.77828000", + "longitude": "-95.17188000" + }, + { + "id": "114317", + "name": "Clute", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.02469000", + "longitude": "-95.39883000" + }, + { + "id": "114319", + "name": "Clyde", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.40596000", + "longitude": "-99.49369000" + }, + { + "id": "114352", + "name": "Cochran County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.60414000", + "longitude": "-102.82846000" + }, + { + "id": "114356", + "name": "Cockrell Hill", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.73624000", + "longitude": "-96.88695000" + }, + { + "id": "114377", + "name": "Coke County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.88853000", + "longitude": "-100.52991000" + }, + { + "id": "114390", + "name": "Coldspring", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.59242000", + "longitude": "-95.12938000" + }, + { + "id": "114398", + "name": "Coleman", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.82737000", + "longitude": "-99.42645000" + }, + { + "id": "114400", + "name": "Coleman County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.77321000", + "longitude": "-99.45364000" + }, + { + "id": "114417", + "name": "College Station", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.62798000", + "longitude": "-96.33441000" + }, + { + "id": "114422", + "name": "Colleyville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.88096000", + "longitude": "-97.15501000" + }, + { + "id": "114426", + "name": "Collin County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.18791000", + "longitude": "-96.57237000" + }, + { + "id": "114430", + "name": "Collingsworth County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.96488000", + "longitude": "-100.27007000" + }, + { + "id": "114437", + "name": "Collinsville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.56150000", + "longitude": "-96.91111000" + }, + { + "id": "114456", + "name": "Colorado City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.38817000", + "longitude": "-100.86456000" + }, + { + "id": "114457", + "name": "Colorado County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.62082000", + "longitude": "-96.52628000" + }, + { + "id": "114495", + "name": "Columbus", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.70662000", + "longitude": "-96.53969000" + }, + { + "id": "114509", + "name": "Comal County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.80818000", + "longitude": "-98.27825000" + }, + { + "id": "114511", + "name": "Comanche", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.89737000", + "longitude": "-98.60366000" + }, + { + "id": "114514", + "name": "Comanche County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.94798000", + "longitude": "-98.55826000" + }, + { + "id": "114516", + "name": "Combes", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.24869000", + "longitude": "-97.73388000" + }, + { + "id": "114517", + "name": "Combine", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.58847000", + "longitude": "-96.50860000" + }, + { + "id": "114520", + "name": "Comfort", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.96771000", + "longitude": "-98.90503000" + }, + { + "id": "114524", + "name": "Commerce", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.24706000", + "longitude": "-95.89997000" + }, + { + "id": "114533", + "name": "Concho County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.32650000", + "longitude": "-99.86396000" + }, + { + "id": "114570", + "name": "Conroe", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.31188000", + "longitude": "-95.45605000" + }, + { + "id": "114578", + "name": "Converse", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.51801000", + "longitude": "-98.31612000" + }, + { + "id": "114594", + "name": "Cooke County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.63919000", + "longitude": "-97.21262000" + }, + { + "id": "114601", + "name": "Cooper", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.24324000", + "longitude": "-95.58217000" + }, + { + "id": "114619", + "name": "Coppell", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.95457000", + "longitude": "-97.01501000" + }, + { + "id": "114620", + "name": "Copper Canyon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.09595000", + "longitude": "-97.09668000" + }, + { + "id": "114621", + "name": "Copperas Cove", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.12406000", + "longitude": "-97.90308000" + }, + { + "id": "114644", + "name": "Corinth", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.15401000", + "longitude": "-97.06473000" + }, + { + "id": "114665", + "name": "Corpus Christi", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.80058000", + "longitude": "-97.39638000" + }, + { + "id": "114668", + "name": "Corrigan", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.99686000", + "longitude": "-94.82715000" + }, + { + "id": "114670", + "name": "Corsicana", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.09543000", + "longitude": "-96.46887000" + }, + { + "id": "114683", + "name": "Coryell County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.39091000", + "longitude": "-97.79920000" + }, + { + "id": "114695", + "name": "Cottle County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.07765000", + "longitude": "-100.27874000" + }, + { + "id": "114706", + "name": "Cottonwood Shores", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.55575000", + "longitude": "-98.32391000" + }, + { + "id": "114708", + "name": "Cotulla", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.43693000", + "longitude": "-99.23503000" + }, + { + "id": "114765", + "name": "Crandall", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.62791000", + "longitude": "-96.45582000" + }, + { + "id": "114769", + "name": "Crane", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.39736000", + "longitude": "-102.35014000" + }, + { + "id": "114770", + "name": "Crane County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.42850000", + "longitude": "-102.51557000" + }, + { + "id": "114829", + "name": "Crockett", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.31824000", + "longitude": "-95.45661000" + }, + { + "id": "114832", + "name": "Crockett County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.72298000", + "longitude": "-101.41215000" + }, + { + "id": "114842", + "name": "Crosby", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.91189000", + "longitude": "-95.06215000" + }, + { + "id": "114845", + "name": "Crosby County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.61462000", + "longitude": "-101.29996000" + }, + { + "id": "114846", + "name": "Crosbyton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.66008000", + "longitude": "-101.23793000" + }, + { + "id": "114851", + "name": "Cross Mountain", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.64550000", + "longitude": "-98.65947000" + }, + { + "id": "114862", + "name": "Crowell", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.98397000", + "longitude": "-99.72482000" + }, + { + "id": "114864", + "name": "Crowley", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.57903000", + "longitude": "-97.36252000" + }, + { + "id": "114876", + "name": "Crystal City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.67748000", + "longitude": "-99.82811000" + }, + { + "id": "114892", + "name": "Cuero", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.09387000", + "longitude": "-97.28916000" + }, + { + "id": "114893", + "name": "Culberson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.44716000", + "longitude": "-104.51742000" + }, + { + "id": "114943", + "name": "Cut and Shoot", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.33327000", + "longitude": "-95.35799000" + }, + { + "id": "114953", + "name": "Cypress", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.96911000", + "longitude": "-95.69717000" + }, + { + "id": "114972", + "name": "Daingerfield", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.03179000", + "longitude": "-94.72187000" + }, + { + "id": "114986", + "name": "Dalhart", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.05948000", + "longitude": "-102.51325000" + }, + { + "id": "114987", + "name": "Dallam County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.27789000", + "longitude": "-102.60222000" + }, + { + "id": "114990", + "name": "Dallas", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.78306000", + "longitude": "-96.80667000" + }, + { + "id": "114997", + "name": "Dallas County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.76663000", + "longitude": "-96.77787000" + }, + { + "id": "115005", + "name": "Dalworthington Gardens", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.70291000", + "longitude": "-97.15529000" + }, + { + "id": "115014", + "name": "Danbury", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.22830000", + "longitude": "-95.34494000" + }, + { + "id": "115085", + "name": "Dawson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.74253000", + "longitude": "-101.94768000" + }, + { + "id": "115093", + "name": "Dayton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.04661000", + "longitude": "-94.88520000" + }, + { + "id": "115107", + "name": "De Kalb", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.50873000", + "longitude": "-94.61632000" + }, + { + "id": "115109", + "name": "De Leon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.11097000", + "longitude": "-98.53588000" + }, + { + "id": "115143", + "name": "Deaf Smith County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.96602000", + "longitude": "-102.60494000" + }, + { + "id": "115155", + "name": "Decatur", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.23428000", + "longitude": "-97.58614000" + }, + { + "id": "115125", + "name": "DeCordova", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.42986000", + "longitude": "-97.69503000" + }, + { + "id": "115175", + "name": "Deer Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.70523000", + "longitude": "-95.12382000" + }, + { + "id": "115195", + "name": "Del Rio", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.36273000", + "longitude": "-100.89676000" + }, + { + "id": "115224", + "name": "Delta County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.38629000", + "longitude": "-95.67227000" + }, + { + "id": "115237", + "name": "Denison", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.75566000", + "longitude": "-96.53666000" + }, + { + "id": "115247", + "name": "Denton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.21484000", + "longitude": "-97.13307000" + }, + { + "id": "115248", + "name": "Denton County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.20526000", + "longitude": "-97.11697000" + }, + { + "id": "115254", + "name": "Denver City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.96455000", + "longitude": "-102.82910000" + }, + { + "id": "115138", + "name": "DeSoto", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.58986000", + "longitude": "-96.85695000" + }, + { + "id": "115299", + "name": "Devine", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.13996000", + "longitude": "-98.90531000" + }, + { + "id": "115306", + "name": "Deweyville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.29771000", + "longitude": "-93.74350000" + }, + { + "id": "115141", + "name": "DeWitt County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.08208000", + "longitude": "-97.35678000" + }, + { + "id": "115319", + "name": "Diboll", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.18713000", + "longitude": "-94.78104000" + }, + { + "id": "115320", + "name": "Dickens", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.62175000", + "longitude": "-100.83652000" + }, + { + "id": "115321", + "name": "Dickens County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.61661000", + "longitude": "-100.77886000" + }, + { + "id": "115325", + "name": "Dickinson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.46079000", + "longitude": "-95.05132000" + }, + { + "id": "115339", + "name": "Dilley", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.66748000", + "longitude": "-99.17059000" + }, + { + "id": "115348", + "name": "Dimmit County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.42254000", + "longitude": "-99.75673000" + }, + { + "id": "115349", + "name": "Dimmitt", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.55090000", + "longitude": "-102.31186000" + }, + { + "id": "115384", + "name": "Doffing", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.27452000", + "longitude": "-98.38585000" + }, + { + "id": "115399", + "name": "Donley County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.96542000", + "longitude": "-100.81399000" + }, + { + "id": "115400", + "name": "Donna", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.17035000", + "longitude": "-98.05195000" + }, + { + "id": "115403", + "name": "Doolittle", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.35337000", + "longitude": "-98.11666000" + }, + { + "id": "115416", + "name": "Double Oak", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.06512000", + "longitude": "-97.11057000" + }, + { + "id": "115479", + "name": "Dripping Springs", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.19021000", + "longitude": "-98.08668000" + }, + { + "id": "115492", + "name": "Dublin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.08514000", + "longitude": "-98.34199000" + }, + { + "id": "115515", + "name": "Dumas", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.86559000", + "longitude": "-101.97324000" + }, + { + "id": "115525", + "name": "Duncanville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.65180000", + "longitude": "-96.90834000" + }, + { + "id": "115581", + "name": "Duval County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.68133000", + "longitude": "-98.50891000" + }, + { + "id": "115603", + "name": "Eagle Lake", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.58968000", + "longitude": "-96.33358000" + }, + { + "id": "115606", + "name": "Eagle Mountain", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.89346000", + "longitude": "-97.44446000" + }, + { + "id": "115608", + "name": "Eagle Pass", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.70914000", + "longitude": "-100.49952000" + }, + { + "id": "115622", + "name": "Early", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.74210000", + "longitude": "-98.94561000" + }, + { + "id": "115624", + "name": "Earth", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.23314000", + "longitude": "-102.41075000" + }, + { + "id": "115632", + "name": "East Bernard", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.53107000", + "longitude": "-96.07107000" + }, + { + "id": "115780", + "name": "Eastland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.40152000", + "longitude": "-98.81756000" + }, + { + "id": "115781", + "name": "Eastland County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.32707000", + "longitude": "-98.83232000" + }, + { + "id": "115819", + "name": "Ector County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.86916000", + "longitude": "-102.54276000" + }, + { + "id": "115820", + "name": "Edcouch", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.29396000", + "longitude": "-97.96056000" + }, + { + "id": "115829", + "name": "Eden", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.21628000", + "longitude": "-99.84563000" + }, + { + "id": "115839", + "name": "Edgecliff Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.65763000", + "longitude": "-97.34279000" + }, + { + "id": "115860", + "name": "Edgewood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.69818000", + "longitude": "-95.88524000" + }, + { + "id": "115870", + "name": "Edinburg", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.30174000", + "longitude": "-98.16334000" + }, + { + "id": "115884", + "name": "Edna", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.97859000", + "longitude": "-96.64609000" + }, + { + "id": "115891", + "name": "Edwards County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.98263000", + "longitude": "-100.30474000" + }, + { + "id": "115908", + "name": "Eidson Road", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.67720000", + "longitude": "-100.48702000" + }, + { + "id": "115912", + "name": "El Campo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.19664000", + "longitude": "-96.26969000" + }, + { + "id": "115913", + "name": "El Cenizo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.35224000", + "longitude": "-99.49254000" + }, + { + "id": "115926", + "name": "El Lago", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.56356000", + "longitude": "-95.04521000" + }, + { + "id": "115930", + "name": "El Paso", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.75872000", + "longitude": "-106.48693000" + }, + { + "id": "115932", + "name": "El Paso County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.76855000", + "longitude": "-106.23483000" + }, + { + "id": "115954", + "name": "Eldorado", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.86017000", + "longitude": "-100.60093000" + }, + { + "id": "115959", + "name": "Electra", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.02926000", + "longitude": "-98.91896000" + }, + { + "id": "115965", + "name": "Elgin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.34965000", + "longitude": "-97.37027000" + }, + { + "id": "115997", + "name": "Elkhart", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.62517000", + "longitude": "-95.57940000" + }, + { + "id": "116032", + "name": "Ellis County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.34843000", + "longitude": "-96.79448000" + }, + { + "id": "116043", + "name": "Elm Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.77442000", + "longitude": "-100.49174000" + }, + { + "id": "116048", + "name": "Elmendorf", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.25607000", + "longitude": "-98.33279000" + }, + { + "id": "116068", + "name": "Elsa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.29340000", + "longitude": "-97.99306000" + }, + { + "id": "116108", + "name": "Emory", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.87457000", + "longitude": "-95.76552000" + }, + { + "id": "116115", + "name": "Encantada-Ranchito-El Calaboz", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.03344000", + "longitude": "-97.63307000" + }, + { + "id": "116141", + "name": "Ennis", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.32931000", + "longitude": "-96.62527000" + }, + { + "id": "116161", + "name": "Erath County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.23626000", + "longitude": "-98.21797000" + }, + { + "id": "116183", + "name": "Escobares", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.41062000", + "longitude": "-98.96253000" + }, + { + "id": "116228", + "name": "Euless", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.83707000", + "longitude": "-97.08195000" + }, + { + "id": "116243", + "name": "Evadale", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.35493000", + "longitude": "-94.07268000" + }, + { + "id": "116266", + "name": "Everman", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.63097000", + "longitude": "-97.28918000" + }, + { + "id": "116279", + "name": "Fabens", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.50234000", + "longitude": "-106.15859000" + }, + { + "id": "116287", + "name": "Fair Oaks Ranch", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.74578000", + "longitude": "-98.64336000" + }, + { + "id": "116298", + "name": "Fairchilds", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.43135000", + "longitude": "-95.78023000" + }, + { + "id": "116311", + "name": "Fairfield", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.72461000", + "longitude": "-96.16525000" + }, + { + "id": "116351", + "name": "Fairview", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.15790000", + "longitude": "-96.63166000" + }, + { + "id": "116366", + "name": "Falcon Lake Estates", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.87282000", + "longitude": "-99.25531000" + }, + { + "id": "116368", + "name": "Falfurrias", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.22699000", + "longitude": "-98.14417000" + }, + { + "id": "116382", + "name": "Falls County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.25327000", + "longitude": "-96.93585000" + }, + { + "id": "116391", + "name": "Fannett", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.92605000", + "longitude": "-94.25074000" + }, + { + "id": "116393", + "name": "Fannin County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.59381000", + "longitude": "-96.10683000" + }, + { + "id": "116403", + "name": "Farmers Branch", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.92651000", + "longitude": "-96.89612000" + }, + { + "id": "116406", + "name": "Farmersville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.16345000", + "longitude": "-96.35998000" + }, + { + "id": "116431", + "name": "Farwell", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.38341000", + "longitude": "-103.03800000" + }, + { + "id": "116432", + "name": "Fate", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.94151000", + "longitude": "-96.38137000" + }, + { + "id": "116449", + "name": "Fayette County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.87679000", + "longitude": "-96.91976000" + }, + { + "id": "116494", + "name": "Ferris", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.53403000", + "longitude": "-96.66555000" + }, + { + "id": "116506", + "name": "Fifth Street", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.59829000", + "longitude": "-95.55133000" + }, + { + "id": "116528", + "name": "Fisher County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.74282000", + "longitude": "-100.40217000" + }, + { + "id": "116556", + "name": "Flatonia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.68773000", + "longitude": "-97.10860000" + }, + { + "id": "116581", + "name": "Florence", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.84130000", + "longitude": "-97.79363000" + }, + { + "id": "116590", + "name": "Floresville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.13358000", + "longitude": "-98.15612000" + }, + { + "id": "116601", + "name": "Flower Mound", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.01457000", + "longitude": "-97.09696000" + }, + { + "id": "116611", + "name": "Floyd County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.07242000", + "longitude": "-101.30323000" + }, + { + "id": "116612", + "name": "Floydada", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.98452000", + "longitude": "-101.33766000" + }, + { + "id": "116616", + "name": "Foard County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.97462000", + "longitude": "-99.77798000" + }, + { + "id": "116655", + "name": "Forest Hill", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.67208000", + "longitude": "-97.26918000" + }, + { + "id": "116677", + "name": "Forney", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.74818000", + "longitude": "-96.47193000" + }, + { + "id": "116692", + "name": "Fort Bend County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.52749000", + "longitude": "-95.77089000" + }, + { + "id": "116694", + "name": "Fort Bliss", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.81357000", + "longitude": "-106.41224000" + }, + { + "id": "116700", + "name": "Fort Clark Springs", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.30607000", + "longitude": "-100.42202000" + }, + { + "id": "116703", + "name": "Fort Davis", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.58821000", + "longitude": "-103.89463000" + }, + { + "id": "116716", + "name": "Fort Hancock", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.29846000", + "longitude": "-105.84525000" + }, + { + "id": "116717", + "name": "Fort Hood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.13489000", + "longitude": "-97.77561000" + }, + { + "id": "116752", + "name": "Fort Stockton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.89404000", + "longitude": "-102.87932000" + }, + { + "id": "116764", + "name": "Fort Worth", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.72541000", + "longitude": "-97.32085000" + }, + { + "id": "116788", + "name": "Four Corners", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.66857000", + "longitude": "-95.65772000" + }, + { + "id": "116830", + "name": "Franklin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.02602000", + "longitude": "-96.48524000" + }, + { + "id": "116855", + "name": "Franklin County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17555000", + "longitude": "-95.21842000" + }, + { + "id": "116877", + "name": "Frankston", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.05266000", + "longitude": "-95.50635000" + }, + { + "id": "116890", + "name": "Fredericksburg", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.27520000", + "longitude": "-98.87198000" + }, + { + "id": "116911", + "name": "Freeport", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.95414000", + "longitude": "-95.35966000" + }, + { + "id": "116916", + "name": "Freer", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.88280000", + "longitude": "-98.61779000" + }, + { + "id": "116917", + "name": "Freestone County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.70489000", + "longitude": "-96.14909000" + }, + { + "id": "116938", + "name": "Fresno", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.53885000", + "longitude": "-95.44744000" + }, + { + "id": "116952", + "name": "Friendswood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.52940000", + "longitude": "-95.20104000" + }, + { + "id": "116953", + "name": "Frio County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.86782000", + "longitude": "-99.10827000" + }, + { + "id": "116954", + "name": "Friona", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.64173000", + "longitude": "-102.72410000" + }, + { + "id": "116955", + "name": "Frisco", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.15067000", + "longitude": "-96.82361000" + }, + { + "id": "116958", + "name": "Fritch", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.63977000", + "longitude": "-101.60323000" + }, + { + "id": "116984", + "name": "Fulshear", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.68996000", + "longitude": "-95.89968000" + }, + { + "id": "116989", + "name": "Fulton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.06140000", + "longitude": "-97.04110000" + }, + { + "id": "117011", + "name": "Gail", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.77038000", + "longitude": "-101.44541000" + }, + { + "id": "117012", + "name": "Gaines County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.74073000", + "longitude": "-102.63518000" + }, + { + "id": "117017", + "name": "Gainesville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.62594000", + "longitude": "-97.13335000" + }, + { + "id": "117025", + "name": "Galena Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.73356000", + "longitude": "-95.23021000" + }, + { + "id": "117042", + "name": "Galveston", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.30135000", + "longitude": "-94.79770000" + }, + { + "id": "117044", + "name": "Galveston County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.29767000", + "longitude": "-94.81087000" + }, + { + "id": "117047", + "name": "Ganado", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.04054000", + "longitude": "-96.51358000" + }, + { + "id": "117060", + "name": "Garden City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.86402000", + "longitude": "-101.48123000" + }, + { + "id": "117067", + "name": "Garden Ridge", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.63467000", + "longitude": "-98.30529000" + }, + { + "id": "117071", + "name": "Gardendale", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.02040000", + "longitude": "-102.38015000" + }, + { + "id": "117080", + "name": "Garfield", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.18744000", + "longitude": "-97.55778000" + }, + { + "id": "117088", + "name": "Garland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.91262000", + "longitude": "-96.63888000" + }, + { + "id": "117108", + "name": "Garza County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17988000", + "longitude": "-101.29842000" + }, + { + "id": "117122", + "name": "Gatesville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.43516000", + "longitude": "-97.74391000" + }, + { + "id": "117154", + "name": "George West", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.33250000", + "longitude": "-98.11751000" + }, + { + "id": "117160", + "name": "Georgetown", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.63269000", + "longitude": "-97.67723000" + }, + { + "id": "117177", + "name": "Geronimo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.66300000", + "longitude": "-97.96695000" + }, + { + "id": "117181", + "name": "Gholson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.70100000", + "longitude": "-97.21640000" + }, + { + "id": "117195", + "name": "Giddings", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.18272000", + "longitude": "-96.93637000" + }, + { + "id": "117215", + "name": "Gillespie County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.31806000", + "longitude": "-98.94648000" + }, + { + "id": "117221", + "name": "Gilmer", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.72875000", + "longitude": "-94.94244000" + }, + { + "id": "117235", + "name": "Gladewater", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.53653000", + "longitude": "-94.94272000" + }, + { + "id": "117252", + "name": "Glasscock County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.86946000", + "longitude": "-101.52080000" + }, + { + "id": "117274", + "name": "Glen Rose", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.23459000", + "longitude": "-97.75531000" + }, + { + "id": "117298", + "name": "Glenn Heights", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.54875000", + "longitude": "-96.85667000" + }, + { + "id": "117335", + "name": "Godley", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.44903000", + "longitude": "-97.52669000" + }, + { + "id": "117366", + "name": "Goldthwaite", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.44989000", + "longitude": "-98.57088000" + }, + { + "id": "117368", + "name": "Goliad", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.66833000", + "longitude": "-97.38833000" + }, + { + "id": "117369", + "name": "Goliad County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.65710000", + "longitude": "-97.42649000" + }, + { + "id": "117371", + "name": "Gonzales", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.50163000", + "longitude": "-97.45249000" + }, + { + "id": "117373", + "name": "Gonzales County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.45673000", + "longitude": "-97.49252000" + }, + { + "id": "117406", + "name": "Gorman", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.21375000", + "longitude": "-98.67061000" + }, + { + "id": "117435", + "name": "Graham", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.10706000", + "longitude": "-98.58950000" + }, + { + "id": "117445", + "name": "Granbury", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.44208000", + "longitude": "-97.79420000" + }, + { + "id": "117471", + "name": "Grand Prairie", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.74596000", + "longitude": "-96.99778000" + }, + { + "id": "117475", + "name": "Grand Saline", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.67346000", + "longitude": "-95.70941000" + }, + { + "id": "117480", + "name": "Grandview", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.27042000", + "longitude": "-97.17918000" + }, + { + "id": "117486", + "name": "Granger", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.71769000", + "longitude": "-97.44278000" + }, + { + "id": "117501", + "name": "Granite Shoals", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.58908000", + "longitude": "-98.38392000" + }, + { + "id": "117538", + "name": "Grape Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.57932000", + "longitude": "-100.54760000" + }, + { + "id": "117539", + "name": "Grapeland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.49185000", + "longitude": "-95.47856000" + }, + { + "id": "117540", + "name": "Grapevine", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.93429000", + "longitude": "-97.07807000" + }, + { + "id": "117554", + "name": "Gray County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.40116000", + "longitude": "-100.81256000" + }, + { + "id": "117563", + "name": "Grayson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.62681000", + "longitude": "-96.67772000" + }, + { + "id": "117583", + "name": "Greatwood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.55413000", + "longitude": "-95.67578000" + }, + { + "id": "117612", + "name": "Green Valley Farms", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.12202000", + "longitude": "-97.56054000" + }, + { + "id": "117689", + "name": "Greenville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.13845000", + "longitude": "-96.11081000" + }, + { + "id": "117715", + "name": "Gregg County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.48047000", + "longitude": "-94.81695000" + }, + { + "id": "117716", + "name": "Gregory", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.92224000", + "longitude": "-97.28999000" + }, + { + "id": "117738", + "name": "Grimes County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.54347000", + "longitude": "-95.98550000" + }, + { + "id": "117742", + "name": "Groesbeck", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.52434000", + "longitude": "-96.53387000" + }, + { + "id": "117761", + "name": "Groves", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.94827000", + "longitude": "-93.91712000" + }, + { + "id": "117762", + "name": "Groveton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.05491000", + "longitude": "-95.12577000" + }, + { + "id": "117774", + "name": "Gruver", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.26503000", + "longitude": "-101.40627000" + }, + { + "id": "117778", + "name": "Guadalupe County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.58305000", + "longitude": "-97.94858000" + }, + { + "id": "117800", + "name": "Gun Barrel City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.33459000", + "longitude": "-96.15136000" + }, + { + "id": "117805", + "name": "Gunter", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.44789000", + "longitude": "-96.74749000" + }, + { + "id": "117813", + "name": "Guthrie", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.62064000", + "longitude": "-100.32289000" + }, + { + "id": "117827", + "name": "Hackberry", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.15234000", + "longitude": "-96.91778000" + }, + { + "id": "117847", + "name": "Hale Center", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.06424000", + "longitude": "-101.84379000" + }, + { + "id": "117849", + "name": "Hale County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.07051000", + "longitude": "-101.82688000" + }, + { + "id": "117866", + "name": "Hall County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.53078000", + "longitude": "-100.68113000" + }, + { + "id": "117870", + "name": "Hallettsville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.44385000", + "longitude": "-96.94109000" + }, + { + "id": "117876", + "name": "Hallsville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.50432000", + "longitude": "-94.57409000" + }, + { + "id": "117878", + "name": "Haltom City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.79957000", + "longitude": "-97.26918000" + }, + { + "id": "117890", + "name": "Hamilton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.70377000", + "longitude": "-98.12392000" + }, + { + "id": "117899", + "name": "Hamilton County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.70480000", + "longitude": "-98.11073000" + }, + { + "id": "117910", + "name": "Hamlin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.88483000", + "longitude": "-100.12649000" + }, + { + "id": "117977", + "name": "Hansford County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.27745000", + "longitude": "-101.35454000" + }, + { + "id": "117996", + "name": "Hardeman County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.29029000", + "longitude": "-99.74572000" + }, + { + "id": "118002", + "name": "Hardin County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.33237000", + "longitude": "-94.39022000" + }, + { + "id": "118013", + "name": "Harker Heights", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.08351000", + "longitude": "-97.65974000" + }, + { + "id": "118026", + "name": "Harlingen", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.19063000", + "longitude": "-97.69610000" + }, + { + "id": "118032", + "name": "Harper", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.29992000", + "longitude": "-99.24421000" + }, + { + "id": "118045", + "name": "Harris County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.85728000", + "longitude": "-95.39234000" + }, + { + "id": "118065", + "name": "Harrison County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.54813000", + "longitude": "-94.37149000" + }, + { + "id": "118081", + "name": "Hart", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.38507000", + "longitude": "-102.11574000" + }, + { + "id": "118100", + "name": "Hartley County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.84002000", + "longitude": "-102.60289000" + }, + { + "id": "118124", + "name": "Haskell", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.15760000", + "longitude": "-99.73370000" + }, + { + "id": "118126", + "name": "Haskell County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17823000", + "longitude": "-99.73030000" + }, + { + "id": "118128", + "name": "Haslet", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.97485000", + "longitude": "-97.34780000" + }, + { + "id": "118165", + "name": "Hawkins", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.58847000", + "longitude": "-95.20411000" + }, + { + "id": "118192", + "name": "Hays County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.05815000", + "longitude": "-98.03106000" + }, + { + "id": "118221", + "name": "Hearne", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.87852000", + "longitude": "-96.59303000" + }, + { + "id": "118222", + "name": "Heath", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.83651000", + "longitude": "-96.47499000" + }, + { + "id": "118227", + "name": "Hebbronville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.30688000", + "longitude": "-98.68032000" + }, + { + "id": "118242", + "name": "Hedwig Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.77745000", + "longitude": "-95.51716000" + }, + { + "id": "118244", + "name": "Heidelberg", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.19702000", + "longitude": "-97.88028000" + }, + { + "id": "118261", + "name": "Helotes", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.57801000", + "longitude": "-98.68975000" + }, + { + "id": "118267", + "name": "Hemphill", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.34074000", + "longitude": "-93.84685000" + }, + { + "id": "118268", + "name": "Hemphill County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.83757000", + "longitude": "-100.27047000" + }, + { + "id": "118269", + "name": "Hempstead", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.09744000", + "longitude": "-96.07829000" + }, + { + "id": "118273", + "name": "Henderson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.15322000", + "longitude": "-94.79938000" + }, + { + "id": "118283", + "name": "Henderson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.21189000", + "longitude": "-95.85356000" + }, + { + "id": "118295", + "name": "Henrietta", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.81732000", + "longitude": "-98.19532000" + }, + { + "id": "118315", + "name": "Hereford", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.81521000", + "longitude": "-102.39932000" + }, + { + "id": "118348", + "name": "Hewitt", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.46239000", + "longitude": "-97.19584000" + }, + { + "id": "118367", + "name": "Hickory Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.12234000", + "longitude": "-97.04306000" + }, + { + "id": "118372", + "name": "Hico", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.98293000", + "longitude": "-98.03365000" + }, + { + "id": "118373", + "name": "Hidalgo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.10035000", + "longitude": "-98.26307000" + }, + { + "id": "118374", + "name": "Hidalgo County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.39672000", + "longitude": "-98.18107000" + }, + { + "id": "118382", + "name": "Hideaway", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.49042000", + "longitude": "-95.45746000" + }, + { + "id": "118410", + "name": "Highland Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.83346000", + "longitude": "-96.79195000" + }, + { + "id": "118416", + "name": "Highland Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.09179000", + "longitude": "-97.04668000" + }, + { + "id": "118417", + "name": "Highlands", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.81884000", + "longitude": "-95.05604000" + }, + { + "id": "118435", + "name": "Hill Country Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.58245000", + "longitude": "-98.49085000" + }, + { + "id": "118436", + "name": "Hill County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.99068000", + "longitude": "-97.13243000" + }, + { + "id": "118449", + "name": "Hillsboro", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.01099000", + "longitude": "-97.13001000" + }, + { + "id": "118469", + "name": "Hilltop Lakes", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.07935000", + "longitude": "-96.20385000" + }, + { + "id": "118492", + "name": "Hitchcock", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.34829000", + "longitude": "-95.01604000" + }, + { + "id": "118505", + "name": "Hockley County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.60764000", + "longitude": "-102.34320000" + }, + { + "id": "118534", + "name": "Holiday Lakes", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.20969000", + "longitude": "-95.51689000" + }, + { + "id": "118537", + "name": "Holland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.87824000", + "longitude": "-97.40167000" + }, + { + "id": "118544", + "name": "Holliday", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.81621000", + "longitude": "-98.69506000" + }, + { + "id": "118559", + "name": "Holly Lake Ranch", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.71336000", + "longitude": "-95.19756000" + }, + { + "id": "118568", + "name": "Hollywood Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.60050000", + "longitude": "-98.48724000" + }, + { + "id": "118603", + "name": "Homestead Meadows North", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.84963000", + "longitude": "-106.17285000" + }, + { + "id": "118604", + "name": "Homestead Meadows South", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.81097000", + "longitude": "-106.16427000" + }, + { + "id": "118615", + "name": "Hondo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.34746000", + "longitude": "-99.14142000" + }, + { + "id": "118620", + "name": "Honey Grove", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.58344000", + "longitude": "-95.90997000" + }, + { + "id": "118625", + "name": "Hood County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.42993000", + "longitude": "-97.83227000" + }, + { + "id": "118630", + "name": "Hooks", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.46623000", + "longitude": "-94.28853000" + }, + { + "id": "118654", + "name": "Hopkins County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.14956000", + "longitude": "-95.56395000" + }, + { + "id": "118664", + "name": "Horizon City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.69261000", + "longitude": "-106.20748000" + }, + { + "id": "118668", + "name": "Hornsby Bend", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.24743000", + "longitude": "-97.58333000" + }, + { + "id": "118675", + "name": "Horseshoe Bay", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.54429000", + "longitude": "-98.37394000" + }, + { + "id": "118699", + "name": "Houston", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.76328000", + "longitude": "-95.36327000" + }, + { + "id": "118705", + "name": "Houston County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.31773000", + "longitude": "-95.42268000" + }, + { + "id": "118718", + "name": "Howard County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.30617000", + "longitude": "-101.43551000" + }, + { + "id": "118721", + "name": "Howe", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.50872000", + "longitude": "-96.61221000" + }, + { + "id": "118730", + "name": "Hubbard", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.84849000", + "longitude": "-96.79721000" + }, + { + "id": "118737", + "name": "Hudson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.32268000", + "longitude": "-94.77826000" + }, + { + "id": "118748", + "name": "Hudson Bend", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.41714000", + "longitude": "-97.92918000" + }, + { + "id": "118752", + "name": "Hudson Oaks", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.75707000", + "longitude": "-97.70670000" + }, + { + "id": "118754", + "name": "Hudspeth County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.45618000", + "longitude": "-105.38646000" + }, + { + "id": "118760", + "name": "Hughes Springs", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.99846000", + "longitude": "-94.63076000" + }, + { + "id": "118774", + "name": "Humble", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.99883000", + "longitude": "-95.26216000" + }, + { + "id": "118786", + "name": "Hunt County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.12360000", + "longitude": "-96.08545000" + }, + { + "id": "118791", + "name": "Hunters Creek Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.77051000", + "longitude": "-95.49550000" + }, + { + "id": "118798", + "name": "Huntington", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.27769000", + "longitude": "-94.57659000" + }, + { + "id": "118818", + "name": "Huntsville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.72353000", + "longitude": "-95.55078000" + }, + { + "id": "118829", + "name": "Hurst", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.82346000", + "longitude": "-97.17057000" + }, + { + "id": "118834", + "name": "Hutchins", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.64930000", + "longitude": "-96.71305000" + }, + { + "id": "118838", + "name": "Hutchinson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.84003000", + "longitude": "-101.35470000" + }, + { + "id": "118840", + "name": "Hutto", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.54270000", + "longitude": "-97.54667000" + }, + { + "id": "118873", + "name": "Idalou", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.66647000", + "longitude": "-101.68294000" + }, + { + "id": "118907", + "name": "Indian Hills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.21285000", + "longitude": "-97.91639000" + }, + { + "id": "118932", + "name": "Inez", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.90388000", + "longitude": "-96.78804000" + }, + { + "id": "118936", + "name": "Ingleside", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.87780000", + "longitude": "-97.21166000" + }, + { + "id": "118940", + "name": "Ingram", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.07743000", + "longitude": "-99.24032000" + }, + { + "id": "118977", + "name": "Iowa Colony", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.48246000", + "longitude": "-95.41550000" + }, + { + "id": "118981", + "name": "Iowa Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.95148000", + "longitude": "-98.66867000" + }, + { + "id": "118984", + "name": "Iraan", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.91405000", + "longitude": "-101.89791000" + }, + { + "id": "118986", + "name": "Irion County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.30392000", + "longitude": "-100.98242000" + }, + { + "id": "119005", + "name": "Irving", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.81402000", + "longitude": "-96.94889000" + }, + { + "id": "119038", + "name": "Italy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.18404000", + "longitude": "-96.88472000" + }, + { + "id": "119039", + "name": "Itasca", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.15959000", + "longitude": "-97.15001000" + }, + { + "id": "119055", + "name": "Jacinto City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.76745000", + "longitude": "-95.23382000" + }, + { + "id": "119056", + "name": "Jack County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.23346000", + "longitude": "-98.17246000" + }, + { + "id": "119059", + "name": "Jacksboro", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.21845000", + "longitude": "-98.15866000" + }, + { + "id": "119088", + "name": "Jackson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.95424000", + "longitude": "-96.57768000" + }, + { + "id": "119104", + "name": "Jacksonville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.96378000", + "longitude": "-95.27050000" + }, + { + "id": "119113", + "name": "Jamaica Beach", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.18968000", + "longitude": "-94.97965000" + }, + { + "id": "119134", + "name": "Jarrell", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.82491000", + "longitude": "-97.60445000" + }, + { + "id": "119144", + "name": "Jasper", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.92020000", + "longitude": "-93.99658000" + }, + { + "id": "119150", + "name": "Jasper County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.74396000", + "longitude": "-94.02509000" + }, + { + "id": "119156", + "name": "Jayton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.24815000", + "longitude": "-100.57373000" + }, + { + "id": "119161", + "name": "Jeff Davis County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.71548000", + "longitude": "-104.14002000" + }, + { + "id": "119166", + "name": "Jefferson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.75736000", + "longitude": "-94.34519000" + }, + { + "id": "119187", + "name": "Jefferson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.85373000", + "longitude": "-94.15344000" + }, + { + "id": "119234", + "name": "Jersey Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.88772000", + "longitude": "-95.56300000" + }, + { + "id": "119244", + "name": "Jewett", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.36157000", + "longitude": "-96.14413000" + }, + { + "id": "119246", + "name": "Jim Hogg County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.04340000", + "longitude": "-98.69731000" + }, + { + "id": "119248", + "name": "Jim Wells County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.73130000", + "longitude": "-98.08994000" + }, + { + "id": "119258", + "name": "Johnson City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.27687000", + "longitude": "-98.41197000" + }, + { + "id": "119268", + "name": "Johnson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.37901000", + "longitude": "-97.36633000" + }, + { + "id": "119290", + "name": "Jollyville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.44270000", + "longitude": "-97.77501000" + }, + { + "id": "119295", + "name": "Jones County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.73990000", + "longitude": "-99.87874000" + }, + { + "id": "119298", + "name": "Jones Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.96858000", + "longitude": "-95.45522000" + }, + { + "id": "119307", + "name": "Jonestown", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.49547000", + "longitude": "-97.92335000" + }, + { + "id": "119320", + "name": "Josephine", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.06123000", + "longitude": "-96.30720000" + }, + { + "id": "119322", + "name": "Joshua", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.46153000", + "longitude": "-97.38807000" + }, + { + "id": "119324", + "name": "Jourdanton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.91803000", + "longitude": "-98.54641000" + }, + { + "id": "119331", + "name": "Junction", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.48936000", + "longitude": "-99.77201000" + }, + { + "id": "119346", + "name": "Justin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.08484000", + "longitude": "-97.29613000" + }, + { + "id": "119389", + "name": "Karnes City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.88498000", + "longitude": "-97.90084000" + }, + { + "id": "119390", + "name": "Karnes County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.90574000", + "longitude": "-97.85940000" + }, + { + "id": "119395", + "name": "Katy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.78579000", + "longitude": "-95.82440000" + }, + { + "id": "119397", + "name": "Kaufman", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.58902000", + "longitude": "-96.30887000" + }, + { + "id": "119398", + "name": "Kaufman County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.59930000", + "longitude": "-96.28780000" + }, + { + "id": "119420", + "name": "Keene", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.39681000", + "longitude": "-97.32390000" + }, + { + "id": "119428", + "name": "Keller", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.93457000", + "longitude": "-97.25168000" + }, + { + "id": "119433", + "name": "Kemah", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.54273000", + "longitude": "-95.02048000" + }, + { + "id": "119435", + "name": "Kemp", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.44264000", + "longitude": "-96.22998000" + }, + { + "id": "119438", + "name": "Kempner", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.08101000", + "longitude": "-98.00252000" + }, + { + "id": "119446", + "name": "Kendall County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.94469000", + "longitude": "-98.71156000" + }, + { + "id": "119453", + "name": "Kenedy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.81915000", + "longitude": "-97.84861000" + }, + { + "id": "119454", + "name": "Kenedy County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.92802000", + "longitude": "-97.63646000" + }, + { + "id": "119468", + "name": "Kennedale", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.64680000", + "longitude": "-97.22585000" + }, + { + "id": "119494", + "name": "Kent County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.18142000", + "longitude": "-100.77757000" + }, + { + "id": "119510", + "name": "Kerens", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.13321000", + "longitude": "-96.22775000" + }, + { + "id": "119513", + "name": "Kermit", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.85763000", + "longitude": "-103.09267000" + }, + { + "id": "119517", + "name": "Kerr County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.06148000", + "longitude": "-99.35016000" + }, + { + "id": "119518", + "name": "Kerrville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.04743000", + "longitude": "-99.14032000" + }, + { + "id": "119556", + "name": "Kilgore", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.38626000", + "longitude": "-94.87577000" + }, + { + "id": "119559", + "name": "Killeen", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.11712000", + "longitude": "-97.72780000" + }, + { + "id": "119572", + "name": "Kimble County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.48678000", + "longitude": "-99.74870000" + }, + { + "id": "119581", + "name": "King County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.61648000", + "longitude": "-100.25585000" + }, + { + "id": "119616", + "name": "Kingsland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.65824000", + "longitude": "-98.44058000" + }, + { + "id": "119636", + "name": "Kingsville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.51587000", + "longitude": "-97.85611000" + }, + { + "id": "119638", + "name": "Kingwood Area", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.03355000", + "longitude": "-95.26104000" + }, + { + "id": "119640", + "name": "Kinney County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.35021000", + "longitude": "-100.41795000" + }, + { + "id": "119649", + "name": "Kirby", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.46329000", + "longitude": "-98.38557000" + }, + { + "id": "119650", + "name": "Kirbyville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.66048000", + "longitude": "-93.89268000" + }, + { + "id": "119672", + "name": "Kleberg County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.42671000", + "longitude": "-97.66839000" + }, + { + "id": "119684", + "name": "Knox City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.41815000", + "longitude": "-99.81898000" + }, + { + "id": "119688", + "name": "Knox County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.60613000", + "longitude": "-99.74143000" + }, + { + "id": "119713", + "name": "Kountze", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.37160000", + "longitude": "-94.31241000" + }, + { + "id": "119719", + "name": "Krugerville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.28151000", + "longitude": "-96.99056000" + }, + { + "id": "119720", + "name": "Krum", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.26151000", + "longitude": "-97.23807000" + }, + { + "id": "119729", + "name": "Kyle", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.98911000", + "longitude": "-97.87723000" + }, + { + "id": "119735", + "name": "La Blanca", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.29285000", + "longitude": "-98.03778000" + }, + { + "id": "119740", + "name": "La Coste", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.31079000", + "longitude": "-98.81003000" + }, + { + "id": "119747", + "name": "La Feria", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.15896000", + "longitude": "-97.82389000" + }, + { + "id": "119751", + "name": "La Grange", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.90550000", + "longitude": "-96.87665000" + }, + { + "id": "119754", + "name": "La Grulla", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.26951000", + "longitude": "-98.64725000" + }, + { + "id": "119758", + "name": "La Homa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.25007000", + "longitude": "-98.36363000" + }, + { + "id": "119761", + "name": "La Joya", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.24702000", + "longitude": "-98.48141000" + }, + { + "id": "119764", + "name": "La Marque", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.36857000", + "longitude": "-94.97131000" + }, + { + "id": "119770", + "name": "La Paloma", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.04591000", + "longitude": "-97.66749000" + }, + { + "id": "119776", + "name": "La Porte", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.66578000", + "longitude": "-95.01937000" + }, + { + "id": "119780", + "name": "La Pryor", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.94108000", + "longitude": "-99.84978000" + }, + { + "id": "119787", + "name": "La Salle County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.34507000", + "longitude": "-99.09966000" + }, + { + "id": "119794", + "name": "La Vernia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.35635000", + "longitude": "-98.11556000" + }, + { + "id": "119795", + "name": "La Villa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.29868000", + "longitude": "-97.92861000" + }, + { + "id": "119815", + "name": "Lackland Air Force Base", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.38663000", + "longitude": "-98.61797000" + }, + { + "id": "119821", + "name": "Lacy-Lakeview", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.62933000", + "longitude": "-97.10278000" + }, + { + "id": "119847", + "name": "Lago Vista", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.46020000", + "longitude": "-97.98835000" + }, + { + "id": "119853", + "name": "Laguna Heights", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.08008000", + "longitude": "-97.25386000" + }, + { + "id": "119856", + "name": "Laguna Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.85932000", + "longitude": "-97.37974000" + }, + { + "id": "119857", + "name": "Laguna Vista", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.10091000", + "longitude": "-97.29025000" + }, + { + "id": "119872", + "name": "Lake Brownwood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.83570000", + "longitude": "-99.00783000" + }, + { + "id": "119902", + "name": "Lake Dallas", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.11929000", + "longitude": "-97.02556000" + }, + { + "id": "119904", + "name": "Lake Dunlap", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.67578000", + "longitude": "-98.07223000" + }, + { + "id": "119924", + "name": "Lake Jackson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.03386000", + "longitude": "-95.43439000" + }, + { + "id": "119927", + "name": "Lake Kiowa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.57705000", + "longitude": "-97.01306000" + }, + { + "id": "119998", + "name": "Lake Worth", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.80485000", + "longitude": "-97.44502000" + }, + { + "id": "120010", + "name": "Lakehills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.60467000", + "longitude": "-98.94309000" + }, + { + "id": "120030", + "name": "Lakeside", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.82235000", + "longitude": "-97.49335000" + }, + { + "id": "120044", + "name": "Lakeway", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.36377000", + "longitude": "-97.97959000" + }, + { + "id": "120064", + "name": "Lamar County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.66726000", + "longitude": "-95.57120000" + }, + { + "id": "120066", + "name": "Lamb County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.06862000", + "longitude": "-102.35171000" + }, + { + "id": "120071", + "name": "Lamesa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.73760000", + "longitude": "-101.95099000" + }, + { + "id": "120075", + "name": "Lampasas", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.06378000", + "longitude": "-98.18170000" + }, + { + "id": "120076", + "name": "Lampasas County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.19619000", + "longitude": "-98.24145000" + }, + { + "id": "120082", + "name": "Lancaster", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.59208000", + "longitude": "-96.75611000" + }, + { + "id": "120130", + "name": "Lantana", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.09073000", + "longitude": "-97.12416000" + }, + { + "id": "120142", + "name": "Laredo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.50641000", + "longitude": "-99.50754000" + }, + { + "id": "120157", + "name": "Las Lomas", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.36479000", + "longitude": "-98.77530000" + }, + { + "id": "120160", + "name": "Las Palmas II", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.20171000", + "longitude": "-97.73760000" + }, + { + "id": "120161", + "name": "Las Quintas Fronterizas", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.69053000", + "longitude": "-100.46869000" + }, + { + "id": "120162", + "name": "Las Quintas Fronterizas Colonia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.69137000", + "longitude": "-100.46924000" + }, + { + "id": "120165", + "name": "Lasara", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.46479000", + "longitude": "-97.91111000" + }, + { + "id": "120186", + "name": "Laughlin Air Force Base", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.35663000", + "longitude": "-100.78353000" + }, + { + "id": "120203", + "name": "Laureles", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.10924000", + "longitude": "-97.49415000" + }, + { + "id": "120214", + "name": "Lavaca County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.38435000", + "longitude": "-96.93015000" + }, + { + "id": "120219", + "name": "Lavon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.02762000", + "longitude": "-96.43415000" + }, + { + "id": "120274", + "name": "League City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.50745000", + "longitude": "-95.09493000" + }, + { + "id": "120277", + "name": "Leakey", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.72884000", + "longitude": "-99.76145000" + }, + { + "id": "120279", + "name": "Leander", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.57881000", + "longitude": "-97.85307000" + }, + { + "id": "120314", + "name": "Lee County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.31068000", + "longitude": "-96.96570000" + }, + { + "id": "120385", + "name": "Leon County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.29651000", + "longitude": "-95.99569000" + }, + { + "id": "120386", + "name": "Leon Valley", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.49523000", + "longitude": "-98.61863000" + }, + { + "id": "120388", + "name": "Leonard", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.37955000", + "longitude": "-96.24748000" + }, + { + "id": "120405", + "name": "Levelland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.58732000", + "longitude": "-102.37796000" + }, + { + "id": "120436", + "name": "Lewisville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.04623000", + "longitude": "-96.99417000" + }, + { + "id": "120446", + "name": "Lexington", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.41910000", + "longitude": "-97.01165000" + }, + { + "id": "120465", + "name": "Liberty", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.05799000", + "longitude": "-94.79548000" + }, + { + "id": "120469", + "name": "Liberty City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.44543000", + "longitude": "-94.94855000" + }, + { + "id": "120472", + "name": "Liberty County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.15161000", + "longitude": "-94.81221000" + }, + { + "id": "120474", + "name": "Liberty Hill", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.66491000", + "longitude": "-97.92252000" + }, + { + "id": "120495", + "name": "Limestone County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.54546000", + "longitude": "-96.58053000" + }, + { + "id": "120559", + "name": "Lindale", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.51570000", + "longitude": "-95.40940000" + }, + { + "id": "120562", + "name": "Linden", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.01235000", + "longitude": "-94.36547000" + }, + { + "id": "120573", + "name": "Lindsay", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.63594000", + "longitude": "-97.22279000" + }, + { + "id": "120596", + "name": "Lipscomb County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.27771000", + "longitude": "-100.27312000" + }, + { + "id": "120616", + "name": "Little Elm", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.16262000", + "longitude": "-96.93751000" + }, + { + "id": "120625", + "name": "Little River-Academy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.98629000", + "longitude": "-97.35861000" + }, + { + "id": "120632", + "name": "Littlefield", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.91731000", + "longitude": "-102.32490000" + }, + { + "id": "120639", + "name": "Live Oak", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.56523000", + "longitude": "-98.33640000" + }, + { + "id": "120641", + "name": "Live Oak County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.35137000", + "longitude": "-98.12479000" + }, + { + "id": "120650", + "name": "Livingston", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.71103000", + "longitude": "-94.93299000" + }, + { + "id": "120664", + "name": "Llano", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.75935000", + "longitude": "-98.67504000" + }, + { + "id": "120665", + "name": "Llano County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.70574000", + "longitude": "-98.68410000" + }, + { + "id": "120666", + "name": "Llano Grande", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.12980000", + "longitude": "-97.96806000" + }, + { + "id": "120677", + "name": "Lockhart", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.88494000", + "longitude": "-97.67000000" + }, + { + "id": "120678", + "name": "Lockney", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.12452000", + "longitude": "-101.44155000" + }, + { + "id": "120730", + "name": "Lone Star", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.94402000", + "longitude": "-94.70715000" + }, + { + "id": "120757", + "name": "Longview", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.50070000", + "longitude": "-94.74049000" + }, + { + "id": "120768", + "name": "Lopezville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.23813000", + "longitude": "-98.15973000" + }, + { + "id": "120771", + "name": "Lorena", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.38656000", + "longitude": "-97.21556000" + }, + { + "id": "120773", + "name": "Lorenzo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.67064000", + "longitude": "-101.53516000" + }, + { + "id": "120788", + "name": "Los Fresnos", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.07174000", + "longitude": "-97.47637000" + }, + { + "id": "120790", + "name": "Los Indios", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.04924000", + "longitude": "-97.74499000" + }, + { + "id": "120797", + "name": "Lost Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.29548000", + "longitude": "-97.84445000" + }, + { + "id": "120829", + "name": "Loving County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.84923000", + "longitude": "-103.57996000" + }, + { + "id": "120849", + "name": "Lowry Crossing", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.15484000", + "longitude": "-96.54721000" + }, + { + "id": "120856", + "name": "Lubbock", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.57786000", + "longitude": "-101.85517000" + }, + { + "id": "120857", + "name": "Lubbock County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.61021000", + "longitude": "-101.82055000" + }, + { + "id": "120860", + "name": "Lucas", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.08429000", + "longitude": "-96.57666000" + }, + { + "id": "120872", + "name": "Lufkin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.33824000", + "longitude": "-94.72910000" + }, + { + "id": "120877", + "name": "Luling", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.68051000", + "longitude": "-97.64750000" + }, + { + "id": "120881", + "name": "Lumberton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.26577000", + "longitude": "-94.19963000" + }, + { + "id": "120906", + "name": "Lyford", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.41229000", + "longitude": "-97.78972000" + }, + { + "id": "120928", + "name": "Lynn County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17682000", + "longitude": "-101.81612000" + }, + { + "id": "120946", + "name": "Lytle", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.23329000", + "longitude": "-98.79641000" + }, + { + "id": "120948", + "name": "Mabank", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.36653000", + "longitude": "-96.10081000" + }, + { + "id": "121012", + "name": "Madison County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.96554000", + "longitude": "-95.92841000" + }, + { + "id": "121027", + "name": "Madisonville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.94991000", + "longitude": "-95.91162000" + }, + { + "id": "121038", + "name": "Magnolia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.20938000", + "longitude": "-95.75078000" + }, + { + "id": "121058", + "name": "Malakoff", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.16960000", + "longitude": "-96.01247000" + }, + { + "id": "121088", + "name": "Manchaca", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.14077000", + "longitude": "-97.83306000" + }, + { + "id": "121138", + "name": "Manor", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.34076000", + "longitude": "-97.55695000" + }, + { + "id": "121145", + "name": "Mansfield", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.56319000", + "longitude": "-97.14168000" + }, + { + "id": "121161", + "name": "Manvel", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.46274000", + "longitude": "-95.35799000" + }, + { + "id": "121187", + "name": "Marble Falls", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.57841000", + "longitude": "-98.27507000" + }, + { + "id": "121204", + "name": "Marfa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.30973000", + "longitude": "-104.02134000" + }, + { + "id": "121239", + "name": "Marion", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.57134000", + "longitude": "-98.14029000" + }, + { + "id": "121259", + "name": "Marion County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.79798000", + "longitude": "-94.35722000" + }, + { + "id": "121269", + "name": "Markham", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.96026000", + "longitude": "-96.06524000" + }, + { + "id": "121283", + "name": "Marlin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.30629000", + "longitude": "-96.89804000" + }, + { + "id": "121305", + "name": "Marshall", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.54487000", + "longitude": "-94.36742000" + }, + { + "id": "121332", + "name": "Mart", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.54239000", + "longitude": "-96.83360000" + }, + { + "id": "121342", + "name": "Martin County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.30603000", + "longitude": "-101.95122000" + }, + { + "id": "121343", + "name": "Martindale", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.84550000", + "longitude": "-97.84084000" + }, + { + "id": "121372", + "name": "Mason", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.74879000", + "longitude": "-99.23061000" + }, + { + "id": "121378", + "name": "Mason County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.71772000", + "longitude": "-99.22613000" + }, + { + "id": "121396", + "name": "Matador", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.01202000", + "longitude": "-100.82208000" + }, + { + "id": "121397", + "name": "Matagorda County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.78565000", + "longitude": "-96.00398000" + }, + { + "id": "121405", + "name": "Mathis", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.09446000", + "longitude": "-97.82805000" + }, + { + "id": "121417", + "name": "Maud", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.33290000", + "longitude": "-94.34270000" + }, + { + "id": "121424", + "name": "Mauriceville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.20354000", + "longitude": "-93.86628000" + }, + { + "id": "121428", + "name": "Maverick County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.74259000", + "longitude": "-100.31451000" + }, + { + "id": "121463", + "name": "McAllen", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.20341000", + "longitude": "-98.23001000" + }, + { + "id": "121466", + "name": "McCamey", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.13598000", + "longitude": "-102.22430000" + }, + { + "id": "121488", + "name": "McCulloch County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.19887000", + "longitude": "-99.34748000" + }, + { + "id": "121506", + "name": "McGregor", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.44406000", + "longitude": "-97.40918000" + }, + { + "id": "121525", + "name": "McKinney", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.19762000", + "longitude": "-96.61527000" + }, + { + "id": "121533", + "name": "McLendon-Chisholm", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.84235000", + "longitude": "-96.38054000" + }, + { + "id": "121534", + "name": "McLennan County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.55238000", + "longitude": "-97.20179000" + }, + { + "id": "121542", + "name": "McMullen County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.35269000", + "longitude": "-98.56784000" + }, + { + "id": "121549", + "name": "McQueeney", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.59217000", + "longitude": "-98.03334000" + }, + { + "id": "121569", + "name": "Meadowlakes", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.56245000", + "longitude": "-98.29867000" + }, + { + "id": "121571", + "name": "Meadows Place", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.65134000", + "longitude": "-95.58800000" + }, + { + "id": "121603", + "name": "Medina", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.79661000", + "longitude": "-99.24643000" + }, + { + "id": "121607", + "name": "Medina County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.35570000", + "longitude": "-99.11013000" + }, + { + "id": "121624", + "name": "Melissa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.28595000", + "longitude": "-96.57277000" + }, + { + "id": "121642", + "name": "Memphis", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.72478000", + "longitude": "-100.53401000" + }, + { + "id": "121646", + "name": "Menard", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.91767000", + "longitude": "-99.78646000" + }, + { + "id": "121647", + "name": "Menard County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.88978000", + "longitude": "-99.82064000" + }, + { + "id": "121668", + "name": "Mentone", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.70513000", + "longitude": "-103.59935000" + }, + { + "id": "121673", + "name": "Mercedes", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.14980000", + "longitude": "-97.91361000" + }, + { + "id": "121692", + "name": "Meridian", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.92321000", + "longitude": "-97.65669000" + }, + { + "id": "121700", + "name": "Merkel", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.47068000", + "longitude": "-100.01287000" + }, + { + "id": "121719", + "name": "Mertzon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.26183000", + "longitude": "-100.81733000" + }, + { + "id": "121726", + "name": "Mesquite", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.76680000", + "longitude": "-96.59916000" + }, + { + "id": "121740", + "name": "Mexia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.67989000", + "longitude": "-96.48220000" + }, + { + "id": "121749", + "name": "Miami", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.69143000", + "longitude": "-100.63819000" + }, + { + "id": "121800", + "name": "Midland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.99735000", + "longitude": "-102.07791000" + }, + { + "id": "121805", + "name": "Midland County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.86917000", + "longitude": "-102.03162000" + }, + { + "id": "121807", + "name": "Midlothian", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.48236000", + "longitude": "-96.99445000" + }, + { + "id": "121822", + "name": "Midway North", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.18776000", + "longitude": "-98.01708000" + }, + { + "id": "121823", + "name": "Midway South", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.15694000", + "longitude": "-98.02011000" + }, + { + "id": "121831", + "name": "Mila Doce", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.22618000", + "longitude": "-97.95889000" + }, + { + "id": "121833", + "name": "Milam", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.43240000", + "longitude": "-93.84574000" + }, + { + "id": "121834", + "name": "Milam County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.78634000", + "longitude": "-96.97685000" + }, + { + "id": "121897", + "name": "Mills County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.49519000", + "longitude": "-98.59546000" + }, + { + "id": "121931", + "name": "Mineola", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.66319000", + "longitude": "-95.48829000" + }, + { + "id": "121941", + "name": "Mineral Wells", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.80846000", + "longitude": "-98.11282000" + }, + { + "id": "121980", + "name": "Mission", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.21591000", + "longitude": "-98.32529000" + }, + { + "id": "121983", + "name": "Mission Bend", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.69384000", + "longitude": "-95.66495000" + }, + { + "id": "121993", + "name": "Missouri City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.61857000", + "longitude": "-95.53772000" + }, + { + "id": "122003", + "name": "Mitchell County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.30621000", + "longitude": "-100.92123000" + }, + { + "id": "122033", + "name": "Monahans", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.59430000", + "longitude": "-102.89265000" + }, + { + "id": "122093", + "name": "Mont Belvieu", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.84772000", + "longitude": "-94.89076000" + }, + { + "id": "122095", + "name": "Montague", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.66483000", + "longitude": "-97.72059000" + }, + { + "id": "122099", + "name": "Montague County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.67563000", + "longitude": "-97.72465000" + }, + { + "id": "122108", + "name": "Monte Alto", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.37312000", + "longitude": "-97.97167000" + }, + { + "id": "122150", + "name": "Montgomery County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.30021000", + "longitude": "-95.50301000" + }, + { + "id": "122196", + "name": "Moody", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.30823000", + "longitude": "-97.36140000" + }, + { + "id": "122203", + "name": "Moore County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.83769000", + "longitude": "-101.89292000" + }, + { + "id": "122249", + "name": "Morgans Point Resort", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.14823000", + "longitude": "-97.46334000" + }, + { + "id": "122270", + "name": "Morris County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.11348000", + "longitude": "-94.73265000" + }, + { + "id": "122294", + "name": "Morton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.72510000", + "longitude": "-102.75938000" + }, + { + "id": "122311", + "name": "Motley County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.07409000", + "longitude": "-100.77983000" + }, + { + "id": "122377", + "name": "Mount Pleasant", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.15679000", + "longitude": "-94.96827000" + }, + { + "id": "122399", + "name": "Mount Vernon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.18873000", + "longitude": "-95.22133000" + }, + { + "id": "122447", + "name": "Muenster", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.65177000", + "longitude": "-97.37641000" + }, + { + "id": "122457", + "name": "Muleshoe", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.22647000", + "longitude": "-102.72383000" + }, + { + "id": "122467", + "name": "Munday", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.44926000", + "longitude": "-99.62286000" + }, + { + "id": "122475", + "name": "Muniz", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.25646000", + "longitude": "-98.08945000" + }, + { + "id": "122483", + "name": "Murillo Colonia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.25646000", + "longitude": "-98.11334000" + }, + { + "id": "122486", + "name": "Murphy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.01512000", + "longitude": "-96.61305000" + }, + { + "id": "122532", + "name": "Nacogdoches", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.60351000", + "longitude": "-94.65549000" + }, + { + "id": "122533", + "name": "Nacogdoches County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.61598000", + "longitude": "-94.61587000" + }, + { + "id": "122553", + "name": "Naples", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.20318000", + "longitude": "-94.68021000" + }, + { + "id": "122567", + "name": "Nash", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.44235000", + "longitude": "-94.13075000" + }, + { + "id": "122581", + "name": "Nassau Bay", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.54468000", + "longitude": "-95.09104000" + }, + { + "id": "122586", + "name": "Natalia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.18968000", + "longitude": "-98.86253000" + }, + { + "id": "122601", + "name": "Navarro County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.04693000", + "longitude": "-96.47249000" + }, + { + "id": "122602", + "name": "Navasota", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.38798000", + "longitude": "-96.08773000" + }, + { + "id": "122610", + "name": "Nederland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.97438000", + "longitude": "-93.99240000" + }, + { + "id": "122615", + "name": "Needville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.39941000", + "longitude": "-95.83773000" + }, + { + "id": "122649", + "name": "Nevada", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.04234000", + "longitude": "-96.37387000" + }, + { + "id": "122668", + "name": "New Boston", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.45984000", + "longitude": "-94.41548000" + }, + { + "id": "122670", + "name": "New Braunfels", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.70300000", + "longitude": "-98.12445000" + }, + { + "id": "122784", + "name": "New Summerfield", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.98072000", + "longitude": "-95.09383000" + }, + { + "id": "122786", + "name": "New Territory", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.59412000", + "longitude": "-95.68078000" + }, + { + "id": "122790", + "name": "New Waverly", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.53770000", + "longitude": "-95.48328000" + }, + { + "id": "122801", + "name": "Newark", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.00124000", + "longitude": "-97.48447000" + }, + { + "id": "122862", + "name": "Newton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.84853000", + "longitude": "-93.75740000" + }, + { + "id": "122872", + "name": "Newton County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.78631000", + "longitude": "-93.74474000" + }, + { + "id": "122913", + "name": "Nixon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.26746000", + "longitude": "-97.76444000" + }, + { + "id": "122923", + "name": "Nocona", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.78677000", + "longitude": "-97.72586000" + }, + { + "id": "122931", + "name": "Nolan County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.30349000", + "longitude": "-100.40605000" + }, + { + "id": "122932", + "name": "Nolanville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.07879000", + "longitude": "-97.60557000" + }, + { + "id": "122959", + "name": "North Alamo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.21730000", + "longitude": "-98.12890000" + }, + { + "id": "123093", + "name": "North Richland Hills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.83430000", + "longitude": "-97.22890000" + }, + { + "id": "123143", + "name": "Northcliff", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.62106000", + "longitude": "-98.22473000" + }, + { + "id": "123144", + "name": "Northcrest", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.63655000", + "longitude": "-97.09972000" + }, + { + "id": "123157", + "name": "Northlake", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.12734000", + "longitude": "-97.26557000" + }, + { + "id": "123215", + "name": "Nueces County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.73506000", + "longitude": "-97.51632000" + }, + { + "id": "123218", + "name": "Nurillo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.26702000", + "longitude": "-98.12140000" + }, + { + "id": "123231", + "name": "Oak Cliff Place", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.92712000", + "longitude": "-95.62672000" + }, + { + "id": "123253", + "name": "Oak Leaf", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.52042000", + "longitude": "-96.85472000" + }, + { + "id": "123259", + "name": "Oak Point", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.19012000", + "longitude": "-96.99167000" + }, + { + "id": "123263", + "name": "Oak Ridge North", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.16022000", + "longitude": "-95.44438000" + }, + { + "id": "123264", + "name": "Oak Trail Shores", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.48875000", + "longitude": "-97.83420000" + }, + { + "id": "123345", + "name": "Ochiltree County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.27841000", + "longitude": "-100.81565000" + }, + { + "id": "123355", + "name": "Odem", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.95057000", + "longitude": "-97.58222000" + }, + { + "id": "123360", + "name": "Odessa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.84568000", + "longitude": "-102.36764000" + }, + { + "id": "123426", + "name": "Old River-Winfree", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.86828000", + "longitude": "-94.83270000" + }, + { + "id": "123433", + "name": "Oldham County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.40502000", + "longitude": "-102.60287000" + }, + { + "id": "123438", + "name": "Olivarez", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.22841000", + "longitude": "-97.99223000" + }, + { + "id": "123452", + "name": "Olmito", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.02174000", + "longitude": "-97.53415000" + }, + { + "id": "123453", + "name": "Olmos Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.47884000", + "longitude": "-98.48752000" + }, + { + "id": "123457", + "name": "Olney", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.37066000", + "longitude": "-98.75284000" + }, + { + "id": "123458", + "name": "Olton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.18341000", + "longitude": "-102.13463000" + }, + { + "id": "123467", + "name": "Onalaska", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.80575000", + "longitude": "-95.11633000" + }, + { + "id": "123481", + "name": "Onion Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.13660000", + "longitude": "-97.78417000" + }, + { + "id": "123505", + "name": "Orange", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.09299000", + "longitude": "-93.73655000" + }, + { + "id": "123517", + "name": "Orange County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.12131000", + "longitude": "-93.89390000" + }, + { + "id": "123523", + "name": "Orange Grove", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.95668000", + "longitude": "-97.93694000" + }, + { + "id": "123544", + "name": "Ore City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.80014000", + "longitude": "-94.72076000" + }, + { + "id": "123653", + "name": "Overton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.27460000", + "longitude": "-94.97855000" + }, + { + "id": "123657", + "name": "Ovilla", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.52653000", + "longitude": "-96.88639000" + }, + { + "id": "123695", + "name": "Oyster Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.00302000", + "longitude": "-95.33188000" + }, + { + "id": "123701", + "name": "Ozona", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.71017000", + "longitude": "-101.20067000" + }, + { + "id": "123716", + "name": "Paducah", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.01230000", + "longitude": "-100.30206000" + }, + { + "id": "123726", + "name": "Paint Rock", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.50849000", + "longitude": "-99.92008000" + }, + { + "id": "123730", + "name": "Palacios", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.70805000", + "longitude": "-96.21747000" + }, + { + "id": "123737", + "name": "Palestine", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.76212000", + "longitude": "-95.63079000" + }, + { + "id": "123755", + "name": "Palm Valley", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.20174000", + "longitude": "-97.75416000" + }, + { + "id": "123758", + "name": "Palmer", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.43125000", + "longitude": "-96.66777000" + }, + { + "id": "123768", + "name": "Palmhurst", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.25841000", + "longitude": "-98.31807000" + }, + { + "id": "123770", + "name": "Palmview", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.23341000", + "longitude": "-98.37085000" + }, + { + "id": "123771", + "name": "Palmview South", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.21563000", + "longitude": "-98.37863000" + }, + { + "id": "123784", + "name": "Palo Pinto", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.76735000", + "longitude": "-98.29866000" + }, + { + "id": "123785", + "name": "Palo Pinto County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.75318000", + "longitude": "-98.31302000" + }, + { + "id": "123786", + "name": "Paloma Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.22530000", + "longitude": "-96.93742000" + }, + { + "id": "123787", + "name": "Paloma Creek South", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.21136000", + "longitude": "-96.93554000" + }, + { + "id": "123794", + "name": "Pampa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.53616000", + "longitude": "-100.95987000" + }, + { + "id": "123801", + "name": "Panhandle", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.34560000", + "longitude": "-101.38044000" + }, + { + "id": "123804", + "name": "Panola County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.16236000", + "longitude": "-94.30565000" + }, + { + "id": "123806", + "name": "Panorama Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.38104000", + "longitude": "-95.49355000" + }, + { + "id": "123807", + "name": "Pantego", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.71430000", + "longitude": "-97.15640000" + }, + { + "id": "123834", + "name": "Paris", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.66094000", + "longitude": "-95.55551000" + }, + { + "id": "123860", + "name": "Parker", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.05540000", + "longitude": "-96.62194000" + }, + { + "id": "123865", + "name": "Parker County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.77765000", + "longitude": "-97.80510000" + }, + { + "id": "123886", + "name": "Parmer County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.53010000", + "longitude": "-102.78452000" + }, + { + "id": "123896", + "name": "Pasadena", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.69106000", + "longitude": "-95.20910000" + }, + { + "id": "123919", + "name": "Patton Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.19299000", + "longitude": "-95.16882000" + }, + { + "id": "123970", + "name": "Pearland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.56357000", + "longitude": "-95.28605000" + }, + { + "id": "123972", + "name": "Pearsall", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.89219000", + "longitude": "-99.09503000" + }, + { + "id": "123975", + "name": "Pecan Acres", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.97013000", + "longitude": "-97.47474000" + }, + { + "id": "123976", + "name": "Pecan Grove", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.62607000", + "longitude": "-95.73162000" + }, + { + "id": "123977", + "name": "Pecan Plantation", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.36042000", + "longitude": "-97.67558000" + }, + { + "id": "123980", + "name": "Pecos", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.42291000", + "longitude": "-103.49323000" + }, + { + "id": "123981", + "name": "Pecos County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.78106000", + "longitude": "-102.72357000" + }, + { + "id": "123995", + "name": "Pelican Bay", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.92096000", + "longitude": "-97.51836000" + }, + { + "id": "124021", + "name": "Penitas", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.23063000", + "longitude": "-98.44474000" + }, + { + "id": "124058", + "name": "Perezville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.22452000", + "longitude": "-98.40057000" + }, + { + "id": "124087", + "name": "Perryton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.40003000", + "longitude": "-100.80265000" + }, + { + "id": "124109", + "name": "Petersburg", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.86952000", + "longitude": "-101.59739000" + }, + { + "id": "124117", + "name": "Pflugerville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.43937000", + "longitude": "-97.62000000" + }, + { + "id": "124118", + "name": "Pharr", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.19480000", + "longitude": "-98.18362000" + }, + { + "id": "124201", + "name": "Pilot Point", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.39650000", + "longitude": "-96.96056000" + }, + { + "id": "124227", + "name": "Pine Island", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.05800000", + "longitude": "-96.03746000" + }, + { + "id": "124251", + "name": "Pinehurst", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.17105000", + "longitude": "-95.68245000" + }, + { + "id": "124265", + "name": "Pinewood Estates", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.16438000", + "longitude": "-94.32158000" + }, + { + "id": "124268", + "name": "Piney Point Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.75995000", + "longitude": "-95.51716000" + }, + { + "id": "124293", + "name": "Pittsburg", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.99540000", + "longitude": "-94.96577000" + }, + { + "id": "124324", + "name": "Plains", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.18871000", + "longitude": "-102.82799000" + }, + { + "id": "124331", + "name": "Plainview", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.18479000", + "longitude": "-101.70684000" + }, + { + "id": "124343", + "name": "Plano", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.01984000", + "longitude": "-96.69889000" + }, + { + "id": "124363", + "name": "Pleak", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.48913000", + "longitude": "-95.80773000" + }, + { + "id": "124383", + "name": "Pleasanton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.96719000", + "longitude": "-98.47863000" + }, + { + "id": "124394", + "name": "Plum Grove", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.19570000", + "longitude": "-96.98945000" + }, + { + "id": "124446", + "name": "Polk County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.79272000", + "longitude": "-94.83002000" + }, + { + "id": "124467", + "name": "Ponder", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.18290000", + "longitude": "-97.28724000" + }, + { + "id": "124495", + "name": "Port Aransas", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.83392000", + "longitude": "-97.06110000" + }, + { + "id": "124496", + "name": "Port Arthur", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.88519000", + "longitude": "-93.94233000" + }, + { + "id": "124512", + "name": "Port Isabel", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.07341000", + "longitude": "-97.20858000" + }, + { + "id": "124517", + "name": "Port Lavaca", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.61500000", + "longitude": "-96.62609000" + }, + { + "id": "124521", + "name": "Port Neches", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.99132000", + "longitude": "-93.95851000" + }, + { + "id": "124523", + "name": "Port O'Connor", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.44834000", + "longitude": "-96.40581000" + }, + { + "id": "124554", + "name": "Porter Heights", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.15188000", + "longitude": "-95.32188000" + }, + { + "id": "124557", + "name": "Portland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.87725000", + "longitude": "-97.32388000" + }, + { + "id": "124576", + "name": "Post", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.19122000", + "longitude": "-101.37900000" + }, + { + "id": "124580", + "name": "Poteet", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.04052000", + "longitude": "-98.56807000" + }, + { + "id": "124581", + "name": "Poth", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.06969000", + "longitude": "-98.08195000" + }, + { + "id": "124587", + "name": "Potosi", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.32930000", + "longitude": "-99.65647000" + }, + { + "id": "124594", + "name": "Potter County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.40127000", + "longitude": "-101.89400000" + }, + { + "id": "124597", + "name": "Pottsboro", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.75927000", + "longitude": "-96.66944000" + }, + { + "id": "124609", + "name": "Powderly", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.81122000", + "longitude": "-95.52440000" + }, + { + "id": "124631", + "name": "Prairie View", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.09327000", + "longitude": "-95.98773000" + }, + { + "id": "124639", + "name": "Premont", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.36059000", + "longitude": "-98.12362000" + }, + { + "id": "124647", + "name": "Presidio", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.56074000", + "longitude": "-104.37215000" + }, + { + "id": "124648", + "name": "Presidio County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.99980000", + "longitude": "-104.24052000" + }, + { + "id": "124654", + "name": "Preston", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.88232000", + "longitude": "-96.63305000" + }, + { + "id": "124670", + "name": "Primera", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.22591000", + "longitude": "-97.75805000" + }, + { + "id": "124684", + "name": "Princeton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.18012000", + "longitude": "-96.49804000" + }, + { + "id": "124701", + "name": "Progreso", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.09230000", + "longitude": "-97.95722000" + }, + { + "id": "124711", + "name": "Prosper", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.23623000", + "longitude": "-96.80111000" + }, + { + "id": "124718", + "name": "Providence", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.23340000", + "longitude": "-96.96158000" + }, + { + "id": "124775", + "name": "Quail Creek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.77640000", + "longitude": "-97.08232000" + }, + { + "id": "124779", + "name": "Quanah", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.29785000", + "longitude": "-99.74037000" + }, + { + "id": "124787", + "name": "Queen City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.14874000", + "longitude": "-94.15019000" + }, + { + "id": "124802", + "name": "Quinlan", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.91040000", + "longitude": "-96.13553000" + }, + { + "id": "124807", + "name": "Quitman", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.79596000", + "longitude": "-95.45106000" + }, + { + "id": "124828", + "name": "Rains County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.87034000", + "longitude": "-95.79338000" + }, + { + "id": "124834", + "name": "Ralls", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.67425000", + "longitude": "-101.38766000" + }, + { + "id": "124847", + "name": "Rancho Alegre", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.74169000", + "longitude": "-98.09473000" + }, + { + "id": "124859", + "name": "Rancho Viejo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.03952000", + "longitude": "-97.55638000" + }, + { + "id": "124862", + "name": "Randall County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.96585000", + "longitude": "-101.89695000" + }, + { + "id": "124882", + "name": "Ranger", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.46985000", + "longitude": "-98.67895000" + }, + { + "id": "124884", + "name": "Rankin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.22265000", + "longitude": "-101.93791000" + }, + { + "id": "124887", + "name": "Ransom Canyon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.53342000", + "longitude": "-101.67961000" + }, + { + "id": "124921", + "name": "Raymondville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.48146000", + "longitude": "-97.78305000" + }, + { + "id": "124932", + "name": "Reagan County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.36619000", + "longitude": "-101.52301000" + }, + { + "id": "124933", + "name": "Real County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.83174000", + "longitude": "-99.82217000" + }, + { + "id": "124952", + "name": "Red Lick", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.46485000", + "longitude": "-94.17103000" + }, + { + "id": "124956", + "name": "Red Oak", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.51764000", + "longitude": "-96.80444000" + }, + { + "id": "124959", + "name": "Red River County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.62068000", + "longitude": "-95.05036000" + }, + { + "id": "124975", + "name": "Redland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.40435000", + "longitude": "-94.72132000" + }, + { + "id": "124982", + "name": "Redwater", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.35818000", + "longitude": "-94.25436000" + }, + { + "id": "124984", + "name": "Redwood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.81022000", + "longitude": "-97.91139000" + }, + { + "id": "124998", + "name": "Reeves County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.32318000", + "longitude": "-103.69317000" + }, + { + "id": "125000", + "name": "Refugio", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.30528000", + "longitude": "-97.27527000" + }, + { + "id": "125001", + "name": "Refugio County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.32158000", + "longitude": "-97.15952000" + }, + { + "id": "125017", + "name": "Rendon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.57625000", + "longitude": "-97.24140000" + }, + { + "id": "125019", + "name": "Reno", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.66316000", + "longitude": "-95.46245000" + }, + { + "id": "125048", + "name": "Rhome", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.05346000", + "longitude": "-97.47197000" + }, + { + "id": "125051", + "name": "Ricardo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.42143000", + "longitude": "-97.85111000" + }, + { + "id": "125058", + "name": "Richardson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.94818000", + "longitude": "-96.72972000" + }, + { + "id": "125079", + "name": "Richland Hills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.81596000", + "longitude": "-97.22807000" + }, + { + "id": "125087", + "name": "Richmond", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.58218000", + "longitude": "-95.76078000" + }, + { + "id": "125111", + "name": "Richwood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.05608000", + "longitude": "-95.40994000" + }, + { + "id": "125135", + "name": "Riesel", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.47489000", + "longitude": "-96.92333000" + }, + { + "id": "125149", + "name": "Rio Bravo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.36419000", + "longitude": "-99.48004000" + }, + { + "id": "125154", + "name": "Rio Grande City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.37979000", + "longitude": "-98.82030000" + }, + { + "id": "125156", + "name": "Rio Hondo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.23535000", + "longitude": "-97.58193000" + }, + { + "id": "125183", + "name": "River Oaks", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.77707000", + "longitude": "-97.39446000" + }, + { + "id": "125227", + "name": "Roanoke", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.00401000", + "longitude": "-97.22585000" + }, + { + "id": "125240", + "name": "Robert Lee", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.89237000", + "longitude": "-100.48482000" + }, + { + "id": "125243", + "name": "Roberts County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.83849000", + "longitude": "-100.81344000" + }, + { + "id": "125247", + "name": "Robertson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.02704000", + "longitude": "-96.51279000" + }, + { + "id": "125254", + "name": "Robinson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.46767000", + "longitude": "-97.11472000" + }, + { + "id": "125256", + "name": "Robstown", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.79030000", + "longitude": "-97.66888000" + }, + { + "id": "125257", + "name": "Roby", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.74483000", + "longitude": "-100.37761000" + }, + { + "id": "125295", + "name": "Rockdale", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.65548000", + "longitude": "-97.00137000" + }, + { + "id": "125316", + "name": "Rockport", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.02077000", + "longitude": "-97.05601000" + }, + { + "id": "125319", + "name": "Rocksprings", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.01576000", + "longitude": "-100.20536000" + }, + { + "id": "125326", + "name": "Rockwall", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.93123000", + "longitude": "-96.45971000" + }, + { + "id": "125327", + "name": "Rockwall County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.89773000", + "longitude": "-96.40777000" + }, + { + "id": "125349", + "name": "Rogers", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.93157000", + "longitude": "-97.22666000" + }, + { + "id": "125369", + "name": "Rollingwood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.27687000", + "longitude": "-97.79112000" + }, + { + "id": "125372", + "name": "Roma", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.40526000", + "longitude": "-99.01581000" + }, + { + "id": "125373", + "name": "Roma-Los Saenz", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.40506000", + "longitude": "-99.01586000" + }, + { + "id": "125374", + "name": "Roman Forest", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.17910000", + "longitude": "-95.16243000" + }, + { + "id": "125400", + "name": "Roscoe", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.44595000", + "longitude": "-100.53872000" + }, + { + "id": "125411", + "name": "Rosebud", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.07296000", + "longitude": "-96.97860000" + }, + { + "id": "125433", + "name": "Rosenberg", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.55718000", + "longitude": "-95.80856000" + }, + { + "id": "125443", + "name": "Rosharon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.35218000", + "longitude": "-95.46022000" + }, + { + "id": "125445", + "name": "Rosita North", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.65644000", + "longitude": "-100.42218000" + }, + { + "id": "125446", + "name": "Rosita South", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.62375000", + "longitude": "-100.42837000" + }, + { + "id": "125464", + "name": "Rotan", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.85205000", + "longitude": "-100.46566000" + }, + { + "id": "125473", + "name": "Round Rock", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.50826000", + "longitude": "-97.67890000" + }, + { + "id": "125481", + "name": "Rowlett", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.90290000", + "longitude": "-96.56388000" + }, + { + "id": "125499", + "name": "Royse City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.97512000", + "longitude": "-96.33248000" + }, + { + "id": "125510", + "name": "Runaway Bay", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.16789000", + "longitude": "-97.87837000" + }, + { + "id": "125511", + "name": "Runge", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.88331000", + "longitude": "-97.71305000" + }, + { + "id": "125512", + "name": "Runnels County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.83110000", + "longitude": "-99.97623000" + }, + { + "id": "125528", + "name": "Rusk", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.79601000", + "longitude": "-95.15022000" + }, + { + "id": "125529", + "name": "Rusk County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.10772000", + "longitude": "-94.76188000" + }, + { + "id": "125568", + "name": "Sabinal", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.31746000", + "longitude": "-99.46644000" + }, + { + "id": "125569", + "name": "Sabine County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.34320000", + "longitude": "-93.85180000" + }, + { + "id": "125574", + "name": "Sachse", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.97623000", + "longitude": "-96.59527000" + }, + { + "id": "125587", + "name": "Saginaw", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.86013000", + "longitude": "-97.36391000" + }, + { + "id": "125645", + "name": "Saint Hedwig", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.41440000", + "longitude": "-98.20001000" + }, + { + "id": "125659", + "name": "Saint Jo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.69483000", + "longitude": "-97.52252000" + }, + { + "id": "125702", + "name": "Saint Paul", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.04123000", + "longitude": "-96.55027000" + }, + { + "id": "125722", + "name": "Salado", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.94713000", + "longitude": "-97.53862000" + }, + { + "id": "125777", + "name": "Sam Rayburn", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.06408000", + "longitude": "-94.03575000" + }, + { + "id": "125784", + "name": "San Angelo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.46377000", + "longitude": "-100.43704000" + }, + { + "id": "125787", + "name": "San Antonio", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.42412000", + "longitude": "-98.49363000" + }, + { + "id": "125789", + "name": "San Augustine", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.52990000", + "longitude": "-94.10603000" + }, + { + "id": "125790", + "name": "San Augustine County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.39422000", + "longitude": "-94.16819000" + }, + { + "id": "125791", + "name": "San Benito", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.13258000", + "longitude": "-97.63110000" + }, + { + "id": "125796", + "name": "San Carlos", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.29563000", + "longitude": "-98.07195000" + }, + { + "id": "125801", + "name": "San Diego", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.76391000", + "longitude": "-98.23890000" + }, + { + "id": "125806", + "name": "San Elizario", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.58511000", + "longitude": "-106.27276000" + }, + { + "id": "125812", + "name": "San Jacinto County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.57953000", + "longitude": "-95.16690000" + }, + { + "id": "125817", + "name": "San Juan", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.18924000", + "longitude": "-98.15529000" + }, + { + "id": "125825", + "name": "San Leon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.48329000", + "longitude": "-94.92215000" + }, + { + "id": "125832", + "name": "San Marcos", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.88327000", + "longitude": "-97.94139000" + }, + { + "id": "125844", + "name": "San Patricio County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.00878000", + "longitude": "-97.51827000" + }, + { + "id": "125848", + "name": "San Saba", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.19572000", + "longitude": "-98.71810000" + }, + { + "id": "125849", + "name": "San Saba County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.15520000", + "longitude": "-98.81758000" + }, + { + "id": "125864", + "name": "Sanderson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.14241000", + "longitude": "-102.39403000" + }, + { + "id": "125891", + "name": "Sanger", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.36317000", + "longitude": "-97.17390000" + }, + { + "id": "125898", + "name": "Sansom Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.80596000", + "longitude": "-97.40307000" + }, + { + "id": "125900", + "name": "Santa Anna", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.74209000", + "longitude": "-99.32173000" + }, + { + "id": "125913", + "name": "Santa Fe", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.37801000", + "longitude": "-95.10576000" + }, + { + "id": "125921", + "name": "Santa Rosa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.25674000", + "longitude": "-97.82500000" + }, + { + "id": "125951", + "name": "Sarita", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.22171000", + "longitude": "-97.78916000" + }, + { + "id": "125977", + "name": "Savannah", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.22603000", + "longitude": "-96.90786000" + }, + { + "id": "126000", + "name": "Scenic Oaks", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.71078000", + "longitude": "-98.67586000" + }, + { + "id": "126006", + "name": "Schertz", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.55217000", + "longitude": "-98.26973000" + }, + { + "id": "126008", + "name": "Schleicher County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.89745000", + "longitude": "-100.53855000" + }, + { + "id": "126020", + "name": "Schulenburg", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.68190000", + "longitude": "-96.90304000" + }, + { + "id": "126029", + "name": "Scissors", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.13980000", + "longitude": "-98.05389000" + }, + { + "id": "126069", + "name": "Scurry County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.74632000", + "longitude": "-100.91641000" + }, + { + "id": "126079", + "name": "Seabrook", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.56412000", + "longitude": "-95.02548000" + }, + { + "id": "126084", + "name": "Seadrift", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.41528000", + "longitude": "-96.71359000" + }, + { + "id": "126088", + "name": "Seagoville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.63958000", + "longitude": "-96.53832000" + }, + { + "id": "126089", + "name": "Seagraves", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.94427000", + "longitude": "-102.56491000" + }, + { + "id": "126091", + "name": "Sealy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.78079000", + "longitude": "-96.15718000" + }, + { + "id": "126106", + "name": "Sebastian", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.34285000", + "longitude": "-97.79027000" + }, + { + "id": "126128", + "name": "Seguin", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.56884000", + "longitude": "-97.96473000" + }, + { + "id": "126140", + "name": "Selma", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.58439000", + "longitude": "-98.30585000" + }, + { + "id": "126146", + "name": "Seminole", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.71899000", + "longitude": "-102.64491000" + }, + { + "id": "126166", + "name": "Serenada", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.69936000", + "longitude": "-97.69195000" + }, + { + "id": "126170", + "name": "Seth Ward", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.21174000", + "longitude": "-101.69017000" + }, + { + "id": "126175", + "name": "Seven Points", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.32042000", + "longitude": "-96.21303000" + }, + { + "id": "126195", + "name": "Seymour", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.59426000", + "longitude": "-99.26035000" + }, + { + "id": "126199", + "name": "Shackelford County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.73597000", + "longitude": "-99.35407000" + }, + { + "id": "126205", + "name": "Shady Hollow", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.16493000", + "longitude": "-97.86223000" + }, + { + "id": "126206", + "name": "Shady Shores", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.16512000", + "longitude": "-97.02945000" + }, + { + "id": "126213", + "name": "Shallowater", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.68897000", + "longitude": "-101.99823000" + }, + { + "id": "126216", + "name": "Shamrock", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.21422000", + "longitude": "-100.24901000" + }, + { + "id": "126242", + "name": "Shavano Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.58495000", + "longitude": "-98.55252000" + }, + { + "id": "126278", + "name": "Shelby County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.79241000", + "longitude": "-94.14502000" + }, + { + "id": "126285", + "name": "Sheldon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.86800000", + "longitude": "-95.12826000" + }, + { + "id": "126301", + "name": "Shenandoah", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.18022000", + "longitude": "-95.45577000" + }, + { + "id": "126309", + "name": "Shepherd", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.49798000", + "longitude": "-94.99660000" + }, + { + "id": "126330", + "name": "Sherman", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.63566000", + "longitude": "-96.60888000" + }, + { + "id": "126334", + "name": "Sherman County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.27771000", + "longitude": "-101.89348000" + }, + { + "id": "126344", + "name": "Sherwood Shores", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.85232000", + "longitude": "-96.81778000" + }, + { + "id": "126350", + "name": "Shiner", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.42913000", + "longitude": "-97.17054000" + }, + { + "id": "126367", + "name": "Shoreacres", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.62023000", + "longitude": "-95.00993000" + }, + { + "id": "126400", + "name": "Sienna Plantation", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.48607000", + "longitude": "-95.50800000" + }, + { + "id": "126401", + "name": "Sierra Blanca", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.17457000", + "longitude": "-105.35718000" + }, + { + "id": "126408", + "name": "Siesta Acres", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.75799000", + "longitude": "-100.49019000" + }, + { + "id": "126410", + "name": "Siesta Shores", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.85810000", + "longitude": "-99.25365000" + }, + { + "id": "126418", + "name": "Silsbee", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.34910000", + "longitude": "-94.17796000" + }, + { + "id": "126443", + "name": "Silverton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.47423000", + "longitude": "-101.30461000" + }, + { + "id": "126456", + "name": "Sinton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.03668000", + "longitude": "-97.50916000" + }, + { + "id": "126493", + "name": "Slaton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.43731000", + "longitude": "-101.64349000" + }, + { + "id": "126515", + "name": "Smith County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.37504000", + "longitude": "-95.26918000" + }, + { + "id": "126529", + "name": "Smithville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.00855000", + "longitude": "-97.15943000" + }, + { + "id": "126550", + "name": "Snyder", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.71789000", + "longitude": "-100.91762000" + }, + { + "id": "126558", + "name": "Socorro", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.65456000", + "longitude": "-106.30331000" + }, + { + "id": "126560", + "name": "Socorro Mission Number 1 Colonia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.63622000", + "longitude": "-106.29054000" + }, + { + "id": "126581", + "name": "Somerset", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.22635000", + "longitude": "-98.65780000" + }, + { + "id": "126592", + "name": "Somervell County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.22229000", + "longitude": "-97.77434000" + }, + { + "id": "126594", + "name": "Somerville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.34604000", + "longitude": "-96.52830000" + }, + { + "id": "126601", + "name": "Sonora", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.56685000", + "longitude": "-100.64343000" + }, + { + "id": "126610", + "name": "Sour Lake", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.14021000", + "longitude": "-94.41102000" + }, + { + "id": "126611", + "name": "South Alamo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.15702000", + "longitude": "-98.10862000" + }, + { + "id": "126676", + "name": "South Houston", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.66301000", + "longitude": "-95.23549000" + }, + { + "id": "126700", + "name": "South Padre Island", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.10369000", + "longitude": "-97.16469000" + }, + { + "id": "126712", + "name": "South Point", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "25.86869000", + "longitude": "-97.38359000" + }, + { + "id": "126777", + "name": "Southlake", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.94124000", + "longitude": "-97.13418000" + }, + { + "id": "126778", + "name": "Southmayd", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.63038000", + "longitude": "-96.76916000" + }, + { + "id": "126788", + "name": "Southside Place", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.70606000", + "longitude": "-95.43688000" + }, + { + "id": "126804", + "name": "Sparks", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.67261000", + "longitude": "-106.23970000" + }, + { + "id": "126817", + "name": "Spearman", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.19837000", + "longitude": "-101.19238000" + }, + { + "id": "126841", + "name": "Splendora", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.23299000", + "longitude": "-95.16104000" + }, + { + "id": "126849", + "name": "Spring", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.07994000", + "longitude": "-95.41716000" + }, + { + "id": "126874", + "name": "Spring Valley", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.78967000", + "longitude": "-95.50355000" + }, + { + "id": "126911", + "name": "Springtown", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.96596000", + "longitude": "-97.68364000" + }, + { + "id": "126921", + "name": "Spur", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.47648000", + "longitude": "-100.85569000" + }, + { + "id": "126932", + "name": "Stafford", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.61607000", + "longitude": "-95.55772000" + }, + { + "id": "126943", + "name": "Stamford", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.94539000", + "longitude": "-99.80287000" + }, + { + "id": "126971", + "name": "Stanton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.12929000", + "longitude": "-101.78846000" + }, + { + "id": "126990", + "name": "Starr County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.56215000", + "longitude": "-98.73840000" + }, + { + "id": "127023", + "name": "Stephens County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.73586000", + "longitude": "-98.83617000" + }, + { + "id": "127025", + "name": "Stephenville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.22070000", + "longitude": "-98.20226000" + }, + { + "id": "127032", + "name": "Sterling City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.83625000", + "longitude": "-100.98483000" + }, + { + "id": "127033", + "name": "Sterling County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.82788000", + "longitude": "-101.05001000" + }, + { + "id": "127065", + "name": "Stinnett", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.82698000", + "longitude": "-101.44294000" + }, + { + "id": "127070", + "name": "Stockdale", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.23691000", + "longitude": "-97.96000000" + }, + { + "id": "127093", + "name": "Stonewall County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17912000", + "longitude": "-100.25331000" + }, + { + "id": "127115", + "name": "Stowell", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.78994000", + "longitude": "-94.38324000" + }, + { + "id": "127128", + "name": "Stratford", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.33614000", + "longitude": "-102.07212000" + }, + { + "id": "127173", + "name": "Sugar Land", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.61968000", + "longitude": "-95.63495000" + }, + { + "id": "127185", + "name": "Sullivan City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.27757000", + "longitude": "-98.56363000" + }, + { + "id": "127197", + "name": "Sulphur Springs", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.13845000", + "longitude": "-95.60107000" + }, + { + "id": "127250", + "name": "Sundown", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.45621000", + "longitude": "-102.48936000" + }, + { + "id": "127264", + "name": "Sunnyvale", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.79652000", + "longitude": "-96.56082000" + }, + { + "id": "127266", + "name": "Sunray", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "36.01670000", + "longitude": "-101.82462000" + }, + { + "id": "127315", + "name": "Sutton County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.49829000", + "longitude": "-100.53819000" + }, + { + "id": "127335", + "name": "Sweeny", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.03886000", + "longitude": "-95.69856000" + }, + { + "id": "127342", + "name": "Sweetwater", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.47095000", + "longitude": "-100.40594000" + }, + { + "id": "127347", + "name": "Swisher County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.53039000", + "longitude": "-101.73503000" + }, + { + "id": "127372", + "name": "Taft", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.97891000", + "longitude": "-97.39860000" + }, + { + "id": "127376", + "name": "Taft Southwest (historical)", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.97391000", + "longitude": "-97.40305000" + }, + { + "id": "127379", + "name": "Tahoka", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.16676000", + "longitude": "-101.79377000" + }, + { + "id": "127399", + "name": "Talty", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.68319000", + "longitude": "-96.38554000" + }, + { + "id": "127435", + "name": "Tarrant County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.77156000", + "longitude": "-97.29124000" + }, + { + "id": "127440", + "name": "Tatum", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.31599000", + "longitude": "-94.51659000" + }, + { + "id": "127446", + "name": "Taylor", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.57076000", + "longitude": "-97.40944000" + }, + { + "id": "127454", + "name": "Taylor County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.30147000", + "longitude": "-99.89012000" + }, + { + "id": "127459", + "name": "Taylor Lake Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.57523000", + "longitude": "-95.05021000" + }, + { + "id": "127474", + "name": "Teague", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.62711000", + "longitude": "-96.28386000" + }, + { + "id": "127498", + "name": "Temple", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.09823000", + "longitude": "-97.34278000" + }, + { + "id": "127508", + "name": "Tenaha", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.94378000", + "longitude": "-94.24409000" + }, + { + "id": "127526", + "name": "Terrell", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.73596000", + "longitude": "-96.27526000" + }, + { + "id": "127528", + "name": "Terrell County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.22496000", + "longitude": "-102.07649000" + }, + { + "id": "127529", + "name": "Terrell Hills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.47495000", + "longitude": "-98.45085000" + }, + { + "id": "127532", + "name": "Terry County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17381000", + "longitude": "-102.33520000" + }, + { + "id": "127545", + "name": "Texarkana", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.42513000", + "longitude": "-94.04769000" + }, + { + "id": "127546", + "name": "Texas City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.38385000", + "longitude": "-94.90270000" + }, + { + "id": "127555", + "name": "The Colony", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.08901000", + "longitude": "-96.88639000" + }, + { + "id": "127561", + "name": "The Hills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.34798000", + "longitude": "-97.98501000" + }, + { + "id": "127566", + "name": "The Woodlands", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.15799000", + "longitude": "-95.48938000" + }, + { + "id": "127600", + "name": "Thorndale", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.61381000", + "longitude": "-97.20555000" + }, + { + "id": "127617", + "name": "Three Rivers", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.46027000", + "longitude": "-98.18251000" + }, + { + "id": "127623", + "name": "Throckmorton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17872000", + "longitude": "-99.17758000" + }, + { + "id": "127624", + "name": "Throckmorton County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17749000", + "longitude": "-99.21237000" + }, + { + "id": "127646", + "name": "Tiki Island", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.29709000", + "longitude": "-94.91709000" + }, + { + "id": "127647", + "name": "Tilden", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.46194000", + "longitude": "-98.54918000" + }, + { + "id": "127661", + "name": "Timberwood Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.70578000", + "longitude": "-98.47835000" + }, + { + "id": "127664", + "name": "Timpson", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.90378000", + "longitude": "-94.39520000" + }, + { + "id": "127684", + "name": "Titus County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.21660000", + "longitude": "-94.96567000" + }, + { + "id": "127706", + "name": "Tom Bean", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.52011000", + "longitude": "-96.48387000" + }, + { + "id": "127707", + "name": "Tom Green County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.40440000", + "longitude": "-100.46207000" + }, + { + "id": "127710", + "name": "Tomball", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.09716000", + "longitude": "-95.61605000" + }, + { + "id": "127727", + "name": "Tool", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.26792000", + "longitude": "-96.17025000" + }, + { + "id": "127740", + "name": "Tornillo", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.44540000", + "longitude": "-106.08831000" + }, + { + "id": "127787", + "name": "Travis County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.33469000", + "longitude": "-97.78195000" + }, + { + "id": "127788", + "name": "Travis Ranch", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.80356000", + "longitude": "-96.47347000" + }, + { + "id": "127827", + "name": "Trinity", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.94519000", + "longitude": "-95.37550000" + }, + { + "id": "127828", + "name": "Trinity County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.08882000", + "longitude": "-95.13551000" + }, + { + "id": "127834", + "name": "Trophy Club", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.99790000", + "longitude": "-97.18362000" + }, + { + "id": "127835", + "name": "Troup", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.14460000", + "longitude": "-95.12050000" + }, + { + "id": "127846", + "name": "Troy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.20684000", + "longitude": "-97.30278000" + }, + { + "id": "127885", + "name": "Tulia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.53589000", + "longitude": "-101.75852000" + }, + { + "id": "127938", + "name": "Tye", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.45762000", + "longitude": "-99.87148000" + }, + { + "id": "127940", + "name": "Tyler", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.35126000", + "longitude": "-95.30106000" + }, + { + "id": "127942", + "name": "Tyler County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.77123000", + "longitude": "-94.37659000" + }, + { + "id": "127954", + "name": "Uhland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.95772000", + "longitude": "-97.78611000" + }, + { + "id": "128022", + "name": "Universal City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.54801000", + "longitude": "-98.29112000" + }, + { + "id": "128033", + "name": "University Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.85013000", + "longitude": "-96.80028000" + }, + { + "id": "128052", + "name": "Upshur County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.73628000", + "longitude": "-94.94148000" + }, + { + "id": "128057", + "name": "Upton County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.36873000", + "longitude": "-102.04304000" + }, + { + "id": "128068", + "name": "Uvalde", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.20968000", + "longitude": "-99.78617000" + }, + { + "id": "128069", + "name": "Uvalde County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.35734000", + "longitude": "-99.76221000" + }, + { + "id": "128070", + "name": "Uvalde Estates", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.16524000", + "longitude": "-99.83228000" + }, + { + "id": "128079", + "name": "Val Verde County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.89296000", + "longitude": "-101.15172000" + }, + { + "id": "128080", + "name": "Val Verde Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.37495000", + "longitude": "-100.83176000" + }, + { + "id": "128113", + "name": "Valley Mills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.65933000", + "longitude": "-97.47224000" + }, + { + "id": "128124", + "name": "Van", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.52486000", + "longitude": "-95.63718000" + }, + { + "id": "128125", + "name": "Van Alstyne", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.42150000", + "longitude": "-96.57721000" + }, + { + "id": "128133", + "name": "Van Horn", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.04029000", + "longitude": "-104.83073000" + }, + { + "id": "128138", + "name": "Van Vleck", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.01775000", + "longitude": "-95.88940000" + }, + { + "id": "128139", + "name": "Van Zandt County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.56372000", + "longitude": "-95.83651000" + }, + { + "id": "128162", + "name": "Vega", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.24283000", + "longitude": "-102.42826000" + }, + { + "id": "128177", + "name": "Venus", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.43347000", + "longitude": "-97.10251000" + }, + { + "id": "128189", + "name": "Vernon", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.15536000", + "longitude": "-99.26628000" + }, + { + "id": "128220", + "name": "Victoria", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.80527000", + "longitude": "-97.00360000" + }, + { + "id": "128223", + "name": "Victoria County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.79635000", + "longitude": "-96.97153000" + }, + { + "id": "128229", + "name": "Vidor", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.13160000", + "longitude": "-94.01545000" + }, + { + "id": "128282", + "name": "Vinton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.95121000", + "longitude": "-106.60249000" + }, + { + "id": "128304", + "name": "Von Ormy", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.28913000", + "longitude": "-98.64446000" + }, + { + "id": "128316", + "name": "Waco", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.54933000", + "longitude": "-97.14667000" + }, + { + "id": "128358", + "name": "Wake Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.42679000", + "longitude": "-94.10630000" + }, + { + "id": "128388", + "name": "Walker County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.73905000", + "longitude": "-95.57228000" + }, + { + "id": "128403", + "name": "Waller", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.05661000", + "longitude": "-95.92690000" + }, + { + "id": "128405", + "name": "Waller County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.01081000", + "longitude": "-95.98765000" + }, + { + "id": "128409", + "name": "Wallis", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.63135000", + "longitude": "-96.06524000" + }, + { + "id": "128458", + "name": "Ward County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.50947000", + "longitude": "-103.10243000" + }, + { + "id": "128566", + "name": "Washington County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.21453000", + "longitude": "-96.40344000" + }, + { + "id": "128594", + "name": "Waskom", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.47876000", + "longitude": "-94.05963000" + }, + { + "id": "128595", + "name": "Watauga", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.85791000", + "longitude": "-97.25474000" + }, + { + "id": "128674", + "name": "Waxahachie", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.38653000", + "longitude": "-96.84833000" + }, + { + "id": "128718", + "name": "Weatherford", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.75930000", + "longitude": "-97.79725000" + }, + { + "id": "128726", + "name": "Webb County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.76106000", + "longitude": "-99.33157000" + }, + { + "id": "128730", + "name": "Webster", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.53773000", + "longitude": "-95.11826000" + }, + { + "id": "128758", + "name": "Weimar", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.70301000", + "longitude": "-96.78053000" + }, + { + "id": "128780", + "name": "Wellington", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.85617000", + "longitude": "-100.21373000" + }, + { + "id": "128785", + "name": "Wells Branch", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.44604000", + "longitude": "-97.67945000" + }, + { + "id": "128808", + "name": "Weslaco", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.15952000", + "longitude": "-97.99084000" + }, + { + "id": "128815", + "name": "West", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.80238000", + "longitude": "-97.09167000" + }, + { + "id": "128849", + "name": "West Columbia", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.14386000", + "longitude": "-95.64522000" + }, + { + "id": "128909", + "name": "West Lake Hills", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.29798000", + "longitude": "-97.80195000" + }, + { + "id": "128921", + "name": "West Livingston", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.69825000", + "longitude": "-95.00188000" + }, + { + "id": "128944", + "name": "West Odessa", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.84235000", + "longitude": "-102.49876000" + }, + { + "id": "128945", + "name": "West Orange", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.08215000", + "longitude": "-93.75822000" + }, + { + "id": "128980", + "name": "West Sharyland", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.27257000", + "longitude": "-98.32863000" + }, + { + "id": "128988", + "name": "West Tawakoni", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.89373000", + "longitude": "-96.02941000" + }, + { + "id": "128995", + "name": "West University Place", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.71801000", + "longitude": "-95.43383000" + }, + { + "id": "129024", + "name": "Western Lake", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.62338000", + "longitude": "-97.81155000" + }, + { + "id": "129039", + "name": "Westlake", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.99124000", + "longitude": "-97.19501000" + }, + { + "id": "129065", + "name": "Weston Lakes", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.68324000", + "longitude": "-95.93571000" + }, + { + "id": "129080", + "name": "Westway", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.95871000", + "longitude": "-106.57805000" + }, + { + "id": "129089", + "name": "Westworth", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.75735000", + "longitude": "-97.41085000" + }, + { + "id": "129102", + "name": "Wharton", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.31164000", + "longitude": "-96.10274000" + }, + { + "id": "129104", + "name": "Wharton County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.27786000", + "longitude": "-96.22210000" + }, + { + "id": "129115", + "name": "Wheeler", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.44533000", + "longitude": "-100.27096000" + }, + { + "id": "129118", + "name": "Wheeler County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "35.40128000", + "longitude": "-100.26965000" + }, + { + "id": "129149", + "name": "White Oak", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.52792000", + "longitude": "-94.86133000" + }, + { + "id": "129161", + "name": "White Settlement", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.75957000", + "longitude": "-97.45835000" + }, + { + "id": "129174", + "name": "Whitehouse", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.22682000", + "longitude": "-95.22550000" + }, + { + "id": "129182", + "name": "Whitesboro", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.65622000", + "longitude": "-96.90695000" + }, + { + "id": "129192", + "name": "Whitewright", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.51289000", + "longitude": "-96.39248000" + }, + { + "id": "129208", + "name": "Whitney", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.95182000", + "longitude": "-97.32140000" + }, + { + "id": "129216", + "name": "Wichita County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.98798000", + "longitude": "-98.70361000" + }, + { + "id": "129218", + "name": "Wichita Falls", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.91371000", + "longitude": "-98.49339000" + }, + { + "id": "129224", + "name": "Wilbarger County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "34.08072000", + "longitude": "-99.24108000" + }, + { + "id": "129230", + "name": "Wild Peach Village", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.08358000", + "longitude": "-95.63384000" + }, + { + "id": "129240", + "name": "Wildwood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.52409000", + "longitude": "-94.44158000" + }, + { + "id": "129255", + "name": "Willacy County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.47701000", + "longitude": "-97.59182000" + }, + { + "id": "129278", + "name": "Williamson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.64804000", + "longitude": "-97.60076000" + }, + { + "id": "129295", + "name": "Willis", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.42493000", + "longitude": "-95.47994000" + }, + { + "id": "129308", + "name": "Willow Park", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.76263000", + "longitude": "-97.65058000" + }, + { + "id": "129317", + "name": "Wills Point", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.70930000", + "longitude": "-96.00830000" + }, + { + "id": "129318", + "name": "Wilmer", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.58902000", + "longitude": "-96.68527000" + }, + { + "id": "129337", + "name": "Wilson County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.17401000", + "longitude": "-98.08657000" + }, + { + "id": "129349", + "name": "Wimberley", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.99744000", + "longitude": "-98.09862000" + }, + { + "id": "129367", + "name": "Windcrest", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.51551000", + "longitude": "-98.38029000" + }, + { + "id": "129368", + "name": "Windemere", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.45909000", + "longitude": "-97.64917000" + }, + { + "id": "129401", + "name": "Wink", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.75124000", + "longitude": "-103.15989000" + }, + { + "id": "129402", + "name": "Winkler County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.85005000", + "longitude": "-103.04817000" + }, + { + "id": "129417", + "name": "Winnie", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.82022000", + "longitude": "-94.38408000" + }, + { + "id": "129420", + "name": "Winnsboro", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.95734000", + "longitude": "-95.29022000" + }, + { + "id": "129444", + "name": "Winters", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.95653000", + "longitude": "-99.96231000" + }, + { + "id": "129460", + "name": "Wise County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.21590000", + "longitude": "-97.65445000" + }, + { + "id": "129476", + "name": "Wolfe City", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.37067000", + "longitude": "-96.06886000" + }, + { + "id": "129479", + "name": "Wolfforth", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.50592000", + "longitude": "-102.00906000" + }, + { + "id": "129484", + "name": "Wood County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "32.78641000", + "longitude": "-95.38206000" + }, + { + "id": "129498", + "name": "Woodbranch", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.18105000", + "longitude": "-95.18882000" + }, + { + "id": "129515", + "name": "Woodcreek", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.02827000", + "longitude": "-98.11112000" + }, + { + "id": "129553", + "name": "Woodsboro", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.23834000", + "longitude": "-97.31999000" + }, + { + "id": "129572", + "name": "Woodville", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.77520000", + "longitude": "-94.41548000" + }, + { + "id": "129578", + "name": "Woodway", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.50600000", + "longitude": "-97.20501000" + }, + { + "id": "129595", + "name": "Wortham", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "31.78794000", + "longitude": "-96.46248000" + }, + { + "id": "129625", + "name": "Wyldwood", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "30.12938000", + "longitude": "-97.47277000" + }, + { + "id": "129626", + "name": "Wylie", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.01512000", + "longitude": "-96.53888000" + }, + { + "id": "129683", + "name": "Yoakum", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "29.28775000", + "longitude": "-97.15193000" + }, + { + "id": "129684", + "name": "Yoakum County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17297000", + "longitude": "-102.82780000" + }, + { + "id": "129706", + "name": "Yorktown", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.98109000", + "longitude": "-97.50277000" + }, + { + "id": "129714", + "name": "Young County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "33.17670000", + "longitude": "-98.68777000" + }, + { + "id": "129739", + "name": "Zapata", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "26.90726000", + "longitude": "-99.27143000" + }, + { + "id": "129740", + "name": "Zapata County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "27.00078000", + "longitude": "-99.16861000" + }, + { + "id": "129741", + "name": "Zavala County", + "state_id": 1407, + "state_code": "TX", + "country_id": 233, + "country_code": "US", + "latitude": "28.86621000", + "longitude": "-99.76060000" + }, + { + "id": "111225", + "name": "Alpine", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.45328000", + "longitude": "-111.77799000" + }, + { + "id": "111273", + "name": "American Fork", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.37690000", + "longitude": "-111.79576000" + }, + { + "id": "111663", + "name": "Aurora", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.92219000", + "longitude": "-111.93409000" + }, + { + "id": "111770", + "name": "Ballard", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.28940000", + "longitude": "-109.94320000" + }, + { + "id": "111995", + "name": "Beaver", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.27691000", + "longitude": "-112.64105000" + }, + { + "id": "111999", + "name": "Beaver County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.35771000", + "longitude": "-113.23576000" + }, + { + "id": "112170", + "name": "Benjamin", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.09829000", + "longitude": "-111.73132000" + }, + { + "id": "112185", + "name": "Benson", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.78743000", + "longitude": "-111.93022000" + }, + { + "id": "112422", + "name": "Blanding", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.62433000", + "longitude": "-109.47966000" + }, + { + "id": "112482", + "name": "Bluffdale", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.48967000", + "longitude": "-111.93882000" + }, + { + "id": "112610", + "name": "Bountiful", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.88939000", + "longitude": "-111.88077000" + }, + { + "id": "112637", + "name": "Box Elder County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.52097000", + "longitude": "-113.08209000" + }, + { + "id": "112784", + "name": "Brigham City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.51021000", + "longitude": "-112.01550000" + }, + { + "id": "113156", + "name": "Cache County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.72237000", + "longitude": "-111.74356000" + }, + { + "id": "113360", + "name": "Canyon Rim", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.70661000", + "longitude": "-111.82188000" + }, + { + "id": "113383", + "name": "Carbon County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.64817000", + "longitude": "-110.58898000" + }, + { + "id": "113391", + "name": "Carbonville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.61996000", + "longitude": "-110.83433000" + }, + { + "id": "113543", + "name": "Castle Dale", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.21219000", + "longitude": "-111.01961000" + }, + { + "id": "113603", + "name": "Cedar City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.67748000", + "longitude": "-113.06189000" + }, + { + "id": "113616", + "name": "Cedar Hills", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.41412000", + "longitude": "-111.75854000" + }, + { + "id": "113649", + "name": "Centerfield", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.12524000", + "longitude": "-111.81909000" + }, + { + "id": "113662", + "name": "Centerville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.91800000", + "longitude": "-111.87216000" + }, + { + "id": "114217", + "name": "Clearfield", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.11078000", + "longitude": "-112.02605000" + }, + { + "id": "114288", + "name": "Clinton", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.13967000", + "longitude": "-112.05050000" + }, + { + "id": "114339", + "name": "Coalville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.91773000", + "longitude": "-111.39936000" + }, + { + "id": "114705", + "name": "Cottonwood Heights", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.61967000", + "longitude": "-111.81021000" + }, + { + "id": "114969", + "name": "Daggett County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.88727000", + "longitude": "-109.50765000" + }, + { + "id": "115022", + "name": "Daniel", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.47079000", + "longitude": "-111.41463000" + }, + { + "id": "115075", + "name": "Davis County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.99061000", + "longitude": "-112.11124000" + }, + { + "id": "115223", + "name": "Delta", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.35218000", + "longitude": "-112.57717000" + }, + { + "id": "115469", + "name": "Draper", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.52467000", + "longitude": "-111.86382000" + }, + { + "id": "115502", + "name": "Duchesne", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.16329000", + "longitude": "-110.40293000" + }, + { + "id": "115503", + "name": "Duchesne County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.29751000", + "longitude": "-110.42476000" + }, + { + "id": "115607", + "name": "Eagle Mountain", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.31412000", + "longitude": "-112.00688000" + }, + { + "id": "115642", + "name": "East Carbon City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.54774000", + "longitude": "-110.41488000" + }, + { + "id": "115712", + "name": "East Millcreek", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.69995000", + "longitude": "-111.81049000" + }, + { + "id": "115992", + "name": "Elk Ridge", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.01134000", + "longitude": "-111.67687000" + }, + { + "id": "116083", + "name": "Elwood", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.69048000", + "longitude": "-112.14106000" + }, + { + "id": "116096", + "name": "Emery County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.99677000", + "longitude": "-110.70067000" + }, + { + "id": "116142", + "name": "Enoch", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.77331000", + "longitude": "-113.02439000" + }, + { + "id": "116151", + "name": "Enterprise", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.57359000", + "longitude": "-113.71913000" + }, + { + "id": "116154", + "name": "Ephraim", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.35968000", + "longitude": "-111.58631000" + }, + { + "id": "116162", + "name": "Erda", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.61272000", + "longitude": "-112.30439000" + }, + { + "id": "116357", + "name": "Fairview", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.62635000", + "longitude": "-111.43963000" + }, + { + "id": "116422", + "name": "Farmington", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.98050000", + "longitude": "-111.88744000" + }, + { + "id": "116428", + "name": "Farr West", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.29717000", + "longitude": "-112.02772000" + }, + { + "id": "116496", + "name": "Ferron", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.09358000", + "longitude": "-111.13322000" + }, + { + "id": "116509", + "name": "Fillmore", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.96885000", + "longitude": "-112.32355000" + }, + { + "id": "116780", + "name": "Fountain Green", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.62996000", + "longitude": "-111.63520000" + }, + { + "id": "116814", + "name": "Francis", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.61051000", + "longitude": "-111.28074000" + }, + { + "id": "116967", + "name": "Fruit Heights", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.03217000", + "longitude": "-111.90216000" + }, + { + "id": "117085", + "name": "Garfield County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.85492000", + "longitude": "-111.44313000" + }, + { + "id": "117090", + "name": "Garland", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.74104000", + "longitude": "-112.16162000" + }, + { + "id": "117149", + "name": "Genola", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.99634000", + "longitude": "-111.84327000" + }, + { + "id": "117455", + "name": "Grand County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.98174000", + "longitude": "-109.56971000" + }, + { + "id": "117492", + "name": "Granite", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.57300000", + "longitude": "-111.80604000" + }, + { + "id": "117531", + "name": "Grantsville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.59994000", + "longitude": "-112.46440000" + }, + { + "id": "117803", + "name": "Gunnison", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.15524000", + "longitude": "-111.81826000" + }, + { + "id": "118077", + "name": "Harrisville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.28133000", + "longitude": "-111.98828000" + }, + { + "id": "118229", + "name": "Heber City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.50690000", + "longitude": "-111.41324000" + }, + { + "id": "118262", + "name": "Helper", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.68413000", + "longitude": "-110.85461000" + }, + { + "id": "118338", + "name": "Herriman", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.51411000", + "longitude": "-112.03299000" + }, + { + "id": "118400", + "name": "Highland", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.42548000", + "longitude": "-111.79447000" + }, + { + "id": "118429", + "name": "Hildale", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.00360000", + "longitude": "-112.96688000" + }, + { + "id": "118433", + "name": "Hill Air Force Base", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.11118000", + "longitude": "-111.97712000" + }, + { + "id": "118536", + "name": "Holladay", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.66884000", + "longitude": "-111.82466000" + }, + { + "id": "118621", + "name": "Honeyville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.63854000", + "longitude": "-112.07939000" + }, + { + "id": "118633", + "name": "Hooper", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.16383000", + "longitude": "-112.12244000" + }, + { + "id": "118803", + "name": "Huntington", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.32664000", + "longitude": "-110.96461000" + }, + { + "id": "118828", + "name": "Hurricane", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.17526000", + "longitude": "-113.28995000" + }, + { + "id": "118853", + "name": "Hyde Park", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.79882000", + "longitude": "-111.81911000" + }, + { + "id": "118857", + "name": "Hyrum", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.63410000", + "longitude": "-111.85217000" + }, + { + "id": "118991", + "name": "Iron County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.85917000", + "longitude": "-113.28927000" + }, + { + "id": "119051", + "name": "Ivins", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.16859000", + "longitude": "-113.67941000" + }, + { + "id": "119325", + "name": "Juab County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.70262000", + "longitude": "-112.78477000" + }, + { + "id": "119332", + "name": "Junction", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.23748000", + "longitude": "-112.21993000" + }, + { + "id": "119370", + "name": "Kamas", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.64301000", + "longitude": "-111.28074000" + }, + { + "id": "119372", + "name": "Kanab", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.04749000", + "longitude": "-112.52631000" + }, + { + "id": "119378", + "name": "Kane County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.28507000", + "longitude": "-111.88785000" + }, + { + "id": "119403", + "name": "Kaysville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.03522000", + "longitude": "-111.93855000" + }, + { + "id": "119411", + "name": "Kearns", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.65995000", + "longitude": "-111.99633000" + }, + { + "id": "119807", + "name": "LaVerkin", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.20109000", + "longitude": "-113.26967000" + }, + { + "id": "120254", + "name": "Layton", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.06022000", + "longitude": "-111.97105000" + }, + { + "id": "120333", + "name": "Lehi", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.39162000", + "longitude": "-111.85077000" + }, + { + "id": "120429", + "name": "Lewiston", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.97576000", + "longitude": "-111.85634000" + }, + { + "id": "120468", + "name": "Liberty", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.33355000", + "longitude": "-111.86355000" + }, + { + "id": "120571", + "name": "Lindon", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.34329000", + "longitude": "-111.72076000" + }, + { + "id": "120615", + "name": "Little Cottonwood Creek Valley", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.60439000", + "longitude": "-111.82938000" + }, + { + "id": "120668", + "name": "Loa", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.40276000", + "longitude": "-111.64296000" + }, + { + "id": "120695", + "name": "Logan", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.73549000", + "longitude": "-111.83439000" + }, + { + "id": "121030", + "name": "Maeser", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.47718000", + "longitude": "-109.58681000" + }, + { + "id": "121034", + "name": "Magna", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.70911000", + "longitude": "-112.10161000" + }, + { + "id": "121120", + "name": "Manila", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.98801000", + "longitude": "-109.72265000" + }, + { + "id": "121157", + "name": "Manti", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.26830000", + "longitude": "-111.63686000" + }, + { + "id": "121176", + "name": "Mapleton", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.13023000", + "longitude": "-111.57853000" + }, + { + "id": "121297", + "name": "Marriott-Slaterville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.25161000", + "longitude": "-112.02550000" + }, + { + "id": "121655", + "name": "Mendon", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.70993000", + "longitude": "-111.97773000" + }, + { + "id": "121811", + "name": "Midvale", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.61106000", + "longitude": "-111.89994000" + }, + { + "id": "121819", + "name": "Midway", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.51218000", + "longitude": "-111.47435000" + }, + { + "id": "121859", + "name": "Milford", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.39691000", + "longitude": "-113.01079000" + }, + { + "id": "121869", + "name": "Millard County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.07381000", + "longitude": "-113.10046000" + }, + { + "id": "121875", + "name": "Millcreek", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.68689000", + "longitude": "-111.87549000" + }, + { + "id": "121906", + "name": "Millville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.68160000", + "longitude": "-111.82300000" + }, + { + "id": "122006", + "name": "Moab", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.57332000", + "longitude": "-109.54984000" + }, + { + "id": "122031", + "name": "Mona", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.81607000", + "longitude": "-111.85549000" + }, + { + "id": "122064", + "name": "Monroe", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.62997000", + "longitude": "-112.12076000" + }, + { + "id": "122171", + "name": "Monticello", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.87138000", + "longitude": "-109.34289000" + }, + { + "id": "122234", + "name": "Morgan", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.03606000", + "longitude": "-111.67688000" + }, + { + "id": "122245", + "name": "Morgan County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.08932000", + "longitude": "-111.57312000" + }, + { + "id": "122262", + "name": "Moroni", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.52496000", + "longitude": "-111.59047000" + }, + { + "id": "122372", + "name": "Mount Olympus", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.68550000", + "longitude": "-111.78854000" + }, + { + "id": "122381", + "name": "Mount Pleasant", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.54691000", + "longitude": "-111.45547000" + }, + { + "id": "122413", + "name": "Mountain Green", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.14300000", + "longitude": "-111.79160000" + }, + { + "id": "122492", + "name": "Murray", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.66689000", + "longitude": "-111.88799000" + }, + { + "id": "122555", + "name": "Naples", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.42691000", + "longitude": "-109.49930000" + }, + { + "id": "122635", + "name": "Nephi", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.71023000", + "longitude": "-111.83632000" + }, + { + "id": "122884", + "name": "Nibley", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.67438000", + "longitude": "-111.83300000" + }, + { + "id": "123060", + "name": "North Logan", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.76937000", + "longitude": "-111.80467000" + }, + { + "id": "123074", + "name": "North Ogden", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.30716000", + "longitude": "-111.96022000" + }, + { + "id": "123099", + "name": "North Salt Lake", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.84856000", + "longitude": "-111.90688000" + }, + { + "id": "123300", + "name": "Oakley", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.71467000", + "longitude": "-111.30074000" + }, + { + "id": "123369", + "name": "Ogden", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.22300000", + "longitude": "-111.97383000" + }, + { + "id": "123501", + "name": "Oquirrh", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.63050000", + "longitude": "-112.03383000" + }, + { + "id": "123531", + "name": "Orangeville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.22719000", + "longitude": "-111.05350000" + }, + { + "id": "123551", + "name": "Orem", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.29690000", + "longitude": "-111.69465000" + }, + { + "id": "123800", + "name": "Panguitch", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.82276000", + "longitude": "-112.43576000" + }, + { + "id": "123840", + "name": "Park City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.64606000", + "longitude": "-111.49797000" + }, + { + "id": "123888", + "name": "Parowan", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.84220000", + "longitude": "-112.82800000" + }, + { + "id": "123950", + "name": "Payson", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.04440000", + "longitude": "-111.73215000" + }, + { + "id": "124073", + "name": "Perry", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.46494000", + "longitude": "-112.03245000" + }, + { + "id": "124307", + "name": "Piute County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.33645000", + "longitude": "-112.12695000" + }, + { + "id": "124315", + "name": "Plain City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.29800000", + "longitude": "-112.08605000" + }, + { + "id": "124367", + "name": "Pleasant Grove", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.36412000", + "longitude": "-111.73854000" + }, + { + "id": "124381", + "name": "Pleasant View", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.31828000", + "longitude": "-111.99216000" + }, + { + "id": "124663", + "name": "Price", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.59941000", + "longitude": "-110.81071000" + }, + { + "id": "124717", + "name": "Providence", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.70632000", + "longitude": "-111.81717000" + }, + { + "id": "124721", + "name": "Provo", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.23384000", + "longitude": "-111.65853000" + }, + { + "id": "124870", + "name": "Randolph", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.66578000", + "longitude": "-111.18214000" + }, + { + "id": "125056", + "name": "Rich County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.63232000", + "longitude": "-111.24445000" + }, + { + "id": "125063", + "name": "Richfield", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.77247000", + "longitude": "-112.08409000" + }, + { + "id": "125097", + "name": "Richmond", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.92271000", + "longitude": "-111.81356000" + }, + { + "id": "125181", + "name": "River Heights", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.72160000", + "longitude": "-111.82133000" + }, + { + "id": "125197", + "name": "Riverdale", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.17689000", + "longitude": "-112.00383000" + }, + { + "id": "125215", + "name": "Riverton", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.52189000", + "longitude": "-111.93910000" + }, + { + "id": "125392", + "name": "Roosevelt", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.29940000", + "longitude": "-109.98876000" + }, + { + "id": "125487", + "name": "Roy", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.16161000", + "longitude": "-112.02633000" + }, + { + "id": "125644", + "name": "Saint George", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.10415000", + "longitude": "-113.58412000" + }, + { + "id": "125739", + "name": "Salem", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.05301000", + "longitude": "-111.67354000" + }, + { + "id": "125746", + "name": "Salina", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.95774000", + "longitude": "-111.85993000" + }, + { + "id": "125767", + "name": "Salt Lake City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.76078000", + "longitude": "-111.89105000" + }, + { + "id": "125768", + "name": "Salt Lake County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.66758000", + "longitude": "-111.92403000" + }, + { + "id": "125822", + "name": "San Juan County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.62601000", + "longitude": "-109.80457000" + }, + { + "id": "125881", + "name": "Sandy", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.59161000", + "longitude": "-111.88410000" + }, + { + "id": "125882", + "name": "Sandy Hills", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.58106000", + "longitude": "-111.85077000" + }, + { + "id": "125896", + "name": "Sanpete County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.37396000", + "longitude": "-111.57634000" + }, + { + "id": "125905", + "name": "Santa Clara", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.13304000", + "longitude": "-113.65413000" + }, + { + "id": "125929", + "name": "Santaquin", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.97551000", + "longitude": "-111.78521000" + }, + { + "id": "125945", + "name": "Saratoga Springs", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.34912000", + "longitude": "-111.90466000" + }, + { + "id": "126182", + "name": "Sevier County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.74764000", + "longitude": "-111.80464000" + }, + { + "id": "126438", + "name": "Silver Summit", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.74144000", + "longitude": "-111.48775000" + }, + { + "id": "126521", + "name": "Smithfield", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.83826000", + "longitude": "-111.83272000" + }, + { + "id": "126552", + "name": "Snyderville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.69439000", + "longitude": "-111.54381000" + }, + { + "id": "126680", + "name": "South Jordan", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.56217000", + "longitude": "-111.92966000" + }, + { + "id": "126681", + "name": "South Jordan Heights", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.56384000", + "longitude": "-111.94938000" + }, + { + "id": "126696", + "name": "South Ogden", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.19189000", + "longitude": "-111.97133000" + }, + { + "id": "126722", + "name": "South Salt Lake", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.71884000", + "longitude": "-111.88827000" + }, + { + "id": "126745", + "name": "South Weber", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.13244000", + "longitude": "-111.93022000" + }, + { + "id": "126749", + "name": "South Willard", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.36327000", + "longitude": "-112.03578000" + }, + { + "id": "126798", + "name": "Spanish Fork", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.11496000", + "longitude": "-111.65492000" + }, + { + "id": "126853", + "name": "Spring City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.48246000", + "longitude": "-111.49602000" + }, + { + "id": "126855", + "name": "Spring Glen", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.65941000", + "longitude": "-110.85349000" + }, + { + "id": "126918", + "name": "Springville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.16523000", + "longitude": "-111.61075000" + }, + { + "id": "126965", + "name": "Stansbury park", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.63772000", + "longitude": "-112.29606000" + }, + { + "id": "127217", + "name": "Summit County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.86815000", + "longitude": "-110.95567000" + }, + { + "id": "127219", + "name": "Summit Park", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.74578000", + "longitude": "-111.61159000" + }, + { + "id": "127273", + "name": "Sunset", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.13633000", + "longitude": "-112.03105000" + }, + { + "id": "127367", + "name": "Syracuse", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.08939000", + "longitude": "-112.06467000" + }, + { + "id": "127466", + "name": "Taylorsville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.66772000", + "longitude": "-111.93883000" + }, + { + "id": "127725", + "name": "Tooele", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.53078000", + "longitude": "-112.29828000" + }, + { + "id": "127726", + "name": "Tooele County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.44875000", + "longitude": "-113.13106000" + }, + { + "id": "127738", + "name": "Toquerville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.25332000", + "longitude": "-113.28467000" + }, + { + "id": "127797", + "name": "Tremonton", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.71187000", + "longitude": "-112.16551000" + }, + { + "id": "127956", + "name": "Uintah", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.14411000", + "longitude": "-111.92327000" + }, + { + "id": "127957", + "name": "Uintah County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.12495000", + "longitude": "-109.51839000" + }, + { + "id": "128064", + "name": "Utah County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.11995000", + "longitude": "-111.67031000" + }, + { + "id": "128187", + "name": "Vernal", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.45552000", + "longitude": "-109.52875000" + }, + { + "id": "128272", + "name": "Vineyard", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.29704000", + "longitude": "-111.74670000" + }, + { + "id": "128526", + "name": "Wasatch County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.33035000", + "longitude": "-111.16847000" + }, + { + "id": "128551", + "name": "Washington", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.13054000", + "longitude": "-113.50829000" + }, + { + "id": "128578", + "name": "Washington County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "37.28036000", + "longitude": "-113.50494000" + }, + { + "id": "128586", + "name": "Washington Terrace", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.17272000", + "longitude": "-111.97661000" + }, + { + "id": "128703", + "name": "Wayne County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "38.32436000", + "longitude": "-110.90367000" + }, + { + "id": "128729", + "name": "Weber County", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.26988000", + "longitude": "-111.91327000" + }, + { + "id": "128779", + "name": "Wellington", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "39.54247000", + "longitude": "-110.73543000" + }, + { + "id": "128794", + "name": "Wellsville", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.63854000", + "longitude": "-111.93383000" + }, + { + "id": "128801", + "name": "Wendover", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.73715000", + "longitude": "-114.03751000" + }, + { + "id": "128829", + "name": "West Bountiful", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.89383000", + "longitude": "-111.90188000" + }, + { + "id": "128888", + "name": "West Haven", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.20300000", + "longitude": "-112.05105000" + }, + { + "id": "128905", + "name": "West Jordan", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.60967000", + "longitude": "-111.93910000" + }, + { + "id": "128937", + "name": "West Mountain", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.06079000", + "longitude": "-111.78827000" + }, + { + "id": "128963", + "name": "West Point", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.11828000", + "longitude": "-112.08411000" + }, + { + "id": "128997", + "name": "West Valley City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.69161000", + "longitude": "-112.00105000" + }, + { + "id": "129132", + "name": "White City", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.56578000", + "longitude": "-111.86438000" + }, + { + "id": "129258", + "name": "Willard", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.40911000", + "longitude": "-112.03606000" + }, + { + "id": "129471", + "name": "Wolf Creek", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "41.33327000", + "longitude": "-111.82716000" + }, + { + "id": "129531", + "name": "Woodland Hills", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.01532000", + "longitude": "-111.64868000" + }, + { + "id": "129551", + "name": "Woods Cross", + "state_id": 1414, + "state_code": "UT", + "country_id": 233, + "country_code": "US", + "latitude": "40.87161000", + "longitude": "-111.89216000" + }, + { + "id": "111039", + "name": "Addison", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.08867000", + "longitude": "-73.30262000" + }, + { + "id": "111040", + "name": "Addison County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.03091000", + "longitude": "-73.14094000" + }, + { + "id": "111469", + "name": "Arlington", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.07480000", + "longitude": "-73.15400000" + }, + { + "id": "111842", + "name": "Barre", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.19701000", + "longitude": "-72.50205000" + }, + { + "id": "112124", + "name": "Bellows Falls", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.13341000", + "longitude": "-72.44398000" + }, + { + "id": "112177", + "name": "Bennington", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "42.87813000", + "longitude": "-73.19677000" + }, + { + "id": "112178", + "name": "Bennington County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.03546000", + "longitude": "-73.09295000" + }, + { + "id": "112690", + "name": "Brandon", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.79812000", + "longitude": "-73.08761000" + }, + { + "id": "112699", + "name": "Brattleboro", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "42.85092000", + "longitude": "-72.55787000" + }, + { + "id": "112780", + "name": "Bridport", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.98506000", + "longitude": "-73.31262000" + }, + { + "id": "112810", + "name": "Bristol", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.13339000", + "longitude": "-73.07901000" + }, + { + "id": "113072", + "name": "Burlington", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.47588000", + "longitude": "-73.21207000" + }, + { + "id": "113193", + "name": "Caledonia County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.46472000", + "longitude": "-72.10219000" + }, + { + "id": "113552", + "name": "Castleton", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.61062000", + "longitude": "-73.17983000" + }, + { + "id": "113780", + "name": "Charlotte", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.30977000", + "longitude": "-73.26096000" + }, + { + "id": "113835", + "name": "Chelsea", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.98979000", + "longitude": "-72.44760000" + }, + { + "id": "113891", + "name": "Chester", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.26285000", + "longitude": "-72.59509000" + }, + { + "id": "113982", + "name": "Chittenden", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.70784000", + "longitude": "-72.94816000" + }, + { + "id": "113983", + "name": "Chittenden County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.46098000", + "longitude": "-73.08092000" + }, + { + "id": "114111", + "name": "Clarendon", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.51618000", + "longitude": "-72.96983000" + }, + { + "id": "114384", + "name": "Colchester", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.54394000", + "longitude": "-73.14791000" + }, + { + "id": "115017", + "name": "Danby", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.34618000", + "longitude": "-72.99538000" + }, + { + "id": "115452", + "name": "Dover", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "42.94369000", + "longitude": "-72.80399000" + }, + { + "id": "116146", + "name": "Enosburg Falls", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.90699000", + "longitude": "-72.80652000" + }, + { + "id": "116197", + "name": "Essex County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.72779000", + "longitude": "-71.73605000" + }, + { + "id": "116199", + "name": "Essex Junction", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.49061000", + "longitude": "-73.11096000" + }, + { + "id": "116283", + "name": "Fair Haven", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.59479000", + "longitude": "-73.26567000" + }, + { + "id": "116495", + "name": "Ferrisburgh", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.20561000", + "longitude": "-73.24623000" + }, + { + "id": "116863", + "name": "Franklin County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.85748000", + "longitude": "-72.91200000" + }, + { + "id": "117464", + "name": "Grand Isle County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.79683000", + "longitude": "-73.29483000" + }, + { + "id": "117783", + "name": "Guildhall", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.56506000", + "longitude": "-71.55981000" + }, + { + "id": "118010", + "name": "Hardwick", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.50478000", + "longitude": "-72.36816000" + }, + { + "id": "118092", + "name": "Hartford", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.66063000", + "longitude": "-72.33842000" + }, + { + "id": "118481", + "name": "Hinesburg", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.32922000", + "longitude": "-73.11068000" + }, + { + "id": "118852", + "name": "Hyde Park", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.59394000", + "longitude": "-72.61651000" + }, + { + "id": "119112", + "name": "Jamaica", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.10036000", + "longitude": "-72.77843000" + }, + { + "id": "119225", + "name": "Jericho", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.50394000", + "longitude": "-72.99763000" + }, + { + "id": "119255", + "name": "Johnson", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.63561000", + "longitude": "-72.68040000" + }, + { + "id": "120072", + "name": "Lamoille County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.60576000", + "longitude": "-72.64145000" + }, + { + "id": "120338", + "name": "Leicester", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.86673000", + "longitude": "-73.10789000" + }, + { + "id": "120508", + "name": "Lincoln", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.10589000", + "longitude": "-72.99706000" + }, + { + "id": "120724", + "name": "Londonderry", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.22646000", + "longitude": "-72.80649000" + }, + { + "id": "120888", + "name": "Lunenburg", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.46311000", + "longitude": "-71.68203000" + }, + { + "id": "120924", + "name": "Lyndon", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.51422000", + "longitude": "-72.01093000" + }, + { + "id": "120925", + "name": "Lyndonville", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.53367000", + "longitude": "-72.00315000" + }, + { + "id": "121103", + "name": "Manchester Center", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.17702000", + "longitude": "-73.05705000" + }, + { + "id": "121654", + "name": "Mendon", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.65198000", + "longitude": "-72.92780000" + }, + { + "id": "121773", + "name": "Middlebury (village)", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.01553000", + "longitude": "-73.16937000" + }, + { + "id": "121919", + "name": "Milton", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.63977000", + "longitude": "-73.11041000" + }, + { + "id": "122137", + "name": "Montgomery", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.90255000", + "longitude": "-72.63818000" + }, + { + "id": "122177", + "name": "Montpelier", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.26006000", + "longitude": "-72.57539000" + }, + { + "id": "122232", + "name": "Moretown", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.25089000", + "longitude": "-72.76095000" + }, + { + "id": "122283", + "name": "Morristown", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.55727000", + "longitude": "-72.62373000" + }, + { + "id": "122287", + "name": "Morrisville", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.56172000", + "longitude": "-72.59845000" + }, + { + "id": "122350", + "name": "Mount Holly", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.45229000", + "longitude": "-72.82482000" + }, + { + "id": "122827", + "name": "Newfane", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "42.98564000", + "longitude": "-72.65593000" + }, + { + "id": "122850", + "name": "Newport", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.93644000", + "longitude": "-72.20510000" + }, + { + "id": "122986", + "name": "North Bennington", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "42.93036000", + "longitude": "-73.24261000" + }, + { + "id": "123038", + "name": "North Hero", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.83125000", + "longitude": "-73.27323000" + }, + { + "id": "123154", + "name": "Northfield", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.15117000", + "longitude": "-72.65650000" + }, + { + "id": "123520", + "name": "Orange County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.00560000", + "longitude": "-72.37661000" + }, + { + "id": "123566", + "name": "Orleans County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.82881000", + "longitude": "-72.24381000" + }, + { + "id": "123931", + "name": "Pawlet", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.34674000", + "longitude": "-73.17622000" + }, + { + "id": "124604", + "name": "Poultney", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.51701000", + "longitude": "-73.23622000" + }, + { + "id": "124619", + "name": "Pownal", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "42.76564000", + "longitude": "-73.23594000" + }, + { + "id": "124868", + "name": "Randolph", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.92507000", + "longitude": "-72.66594000" + }, + { + "id": "125065", + "name": "Richford", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.99699000", + "longitude": "-72.67124000" + }, + { + "id": "125304", + "name": "Rockingham", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.18758000", + "longitude": "-72.48898000" + }, + { + "id": "125557", + "name": "Rutland", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.61062000", + "longitude": "-72.97261000" + }, + { + "id": "125558", + "name": "Rutland County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.58009000", + "longitude": "-73.03661000" + }, + { + "id": "125596", + "name": "Saint Albans", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.81088000", + "longitude": "-73.08319000" + }, + { + "id": "125668", + "name": "Saint Johnsbury", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.41922000", + "longitude": "-72.01509000" + }, + { + "id": "125760", + "name": "Salisbury", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.89645000", + "longitude": "-73.09984000" + }, + { + "id": "126616", + "name": "South Barre", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.17701000", + "longitude": "-72.50566000" + }, + { + "id": "126634", + "name": "South Burlington", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.46699000", + "longitude": "-73.17096000" + }, + { + "id": "126904", + "name": "Springfield", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.29841000", + "longitude": "-72.48231000" + }, + { + "id": "126925", + "name": "St Johnsbury", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.42526000", + "longitude": "-72.01512000" + }, + { + "id": "126988", + "name": "Starksboro", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.22728000", + "longitude": "-73.05734000" + }, + { + "id": "127114", + "name": "Stowe", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.46533000", + "longitude": "-72.68456000" + }, + { + "id": "127327", + "name": "Swanton", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.91810000", + "longitude": "-73.12430000" + }, + { + "id": "127767", + "name": "Townshend", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.04730000", + "longitude": "-72.66759000" + }, + { + "id": "128182", + "name": "Vergennes", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.16728000", + "longitude": "-73.25401000" + }, + { + "id": "128550", + "name": "Washington", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.10562000", + "longitude": "-72.43260000" + }, + { + "id": "128575", + "name": "Washington County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.27342000", + "longitude": "-72.61490000" + }, + { + "id": "128603", + "name": "Waterbury", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.33783000", + "longitude": "-72.75623000" + }, + { + "id": "128834", + "name": "West Brattleboro", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "42.85592000", + "longitude": "-72.60315000" + }, + { + "id": "128970", + "name": "West Rutland", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.59312000", + "longitude": "-73.04511000" + }, + { + "id": "129157", + "name": "White River Junction", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.64896000", + "longitude": "-72.31926000" + }, + { + "id": "129232", + "name": "Wilder", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.67285000", + "longitude": "-72.30870000" + }, + { + "id": "129289", + "name": "Williamstown", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.12173000", + "longitude": "-72.54149000" + }, + { + "id": "129298", + "name": "Williston", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.43755000", + "longitude": "-73.06818000" + }, + { + "id": "129374", + "name": "Windham County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "42.99059000", + "longitude": "-72.71384000" + }, + { + "id": "129384", + "name": "Windsor", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.48035000", + "longitude": "-72.38481000" + }, + { + "id": "129388", + "name": "Windsor County", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.58000000", + "longitude": "-72.58624000" + }, + { + "id": "129427", + "name": "Winooski", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "44.49144000", + "longitude": "-73.18568000" + }, + { + "id": "129566", + "name": "Woodstock", + "state_id": 1409, + "state_code": "VT", + "country_id": 233, + "country_code": "US", + "latitude": "43.62424000", + "longitude": "-72.51843000" + }, + { + "id": "110984", + "name": "Abingdon", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.70983000", + "longitude": "-81.97735000" + }, + { + "id": "110994", + "name": "Accomac", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.71957000", + "longitude": "-75.66548000" + }, + { + "id": "110995", + "name": "Accomack County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.76494000", + "longitude": "-75.75656000" + }, + { + "id": "111050", + "name": "Adwolf", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.78928000", + "longitude": "-81.58206000" + }, + { + "id": "111116", + "name": "Albemarle County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02289000", + "longitude": "-78.55654000" + }, + { + "id": "111151", + "name": "Alexandria", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.80484000", + "longitude": "-77.04692000" + }, + { + "id": "111184", + "name": "Alleghany County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.78760000", + "longitude": "-80.00699000" + }, + { + "id": "111238", + "name": "Altavista", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.11181000", + "longitude": "-79.28558000" + }, + { + "id": "111269", + "name": "Amelia County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.33603000", + "longitude": "-77.97614000" + }, + { + "id": "111270", + "name": "Amelia Court House", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.34293000", + "longitude": "-77.98056000" + }, + { + "id": "111281", + "name": "Amherst", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.58514000", + "longitude": "-79.05141000" + }, + { + "id": "111286", + "name": "Amherst County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.60477000", + "longitude": "-79.14511000" + }, + { + "id": "111349", + "name": "Annandale", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.83039000", + "longitude": "-77.19637000" + }, + { + "id": "111390", + "name": "Appalachia", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.90676000", + "longitude": "-82.78183000" + }, + { + "id": "111392", + "name": "Apple Mountain Lake", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.92428000", + "longitude": "-78.10139000" + }, + { + "id": "111401", + "name": "Appomattox", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.35709000", + "longitude": "-78.82529000" + }, + { + "id": "111402", + "name": "Appomattox County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.37229000", + "longitude": "-78.81212000" + }, + { + "id": "111406", + "name": "Aquia Harbour", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.46262000", + "longitude": "-77.38887000" + }, + { + "id": "111463", + "name": "Arlington", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.88101000", + "longitude": "-77.10428000" + }, + { + "id": "111471", + "name": "Arlington County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.87862000", + "longitude": "-77.10096000" + }, + { + "id": "111514", + "name": "Ashburn", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.04372000", + "longitude": "-77.48749000" + }, + { + "id": "111532", + "name": "Ashland", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.75903000", + "longitude": "-77.47998000" + }, + { + "id": "111585", + "name": "Atkins", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.86734000", + "longitude": "-81.42344000" + }, + { + "id": "111652", + "name": "Augusta County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.16452000", + "longitude": "-79.13383000" + }, + { + "id": "111731", + "name": "Baileys Crossroads", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.85039000", + "longitude": "-77.12970000" + }, + { + "id": "111881", + "name": "Bassett", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.75930000", + "longitude": "-79.99032000" + }, + { + "id": "111886", + "name": "Basye", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.80706000", + "longitude": "-78.79224000" + }, + { + "id": "111902", + "name": "Bath County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.05869000", + "longitude": "-79.74109000" + }, + { + "id": "111972", + "name": "Bealeton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.57179000", + "longitude": "-77.76388000" + }, + { + "id": "112020", + "name": "Bedford", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.33431000", + "longitude": "-79.52309000" + }, + { + "id": "112027", + "name": "Bedford County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.31494000", + "longitude": "-79.52422000" + }, + { + "id": "112085", + "name": "Belle Haven", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.78539000", + "longitude": "-77.06303000" + }, + { + "id": "112130", + "name": "Bellwood", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.42181000", + "longitude": "-77.43748000" + }, + { + "id": "112137", + "name": "Belmont", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.06483000", + "longitude": "-77.50999000" + }, + { + "id": "112144", + "name": "Belmont Estates", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.45271000", + "longitude": "-78.91979000" + }, + { + "id": "112181", + "name": "Bensley", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.44681000", + "longitude": "-77.44332000" + }, + { + "id": "112255", + "name": "Berryville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.15177000", + "longitude": "-77.98222000" + }, + { + "id": "112337", + "name": "Big Stone Gap", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.88176000", + "longitude": "-82.74710000" + }, + { + "id": "112390", + "name": "Blacksburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.22957000", + "longitude": "-80.41394000" + }, + { + "id": "112392", + "name": "Blackstone", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.08043000", + "longitude": "-77.99723000" + }, + { + "id": "112420", + "name": "Bland", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.10206000", + "longitude": "-81.11620000" + }, + { + "id": "112421", + "name": "Bland County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.13397000", + "longitude": "-81.13028000" + }, + { + "id": "112476", + "name": "Blue Ridge", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.37847000", + "longitude": "-79.80698000" + }, + { + "id": "112478", + "name": "Bluefield", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.25262000", + "longitude": "-81.27121000" + }, + { + "id": "112526", + "name": "Bon Air", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.52487000", + "longitude": "-77.55777000" + }, + { + "id": "112593", + "name": "Boswell's Corner", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.50541000", + "longitude": "-77.37263000" + }, + { + "id": "112594", + "name": "Botetourt County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.55712000", + "longitude": "-79.81233000" + }, + { + "id": "112631", + "name": "Bowling Green", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.04958000", + "longitude": "-77.34665000" + }, + { + "id": "112644", + "name": "Boydton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.66764000", + "longitude": "-78.38750000" + }, + { + "id": "112654", + "name": "Bracey", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.59959000", + "longitude": "-78.14305000" + }, + { + "id": "112683", + "name": "Brambleton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.98205000", + "longitude": "-77.53860000" + }, + { + "id": "112687", + "name": "Brandermill", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.43209000", + "longitude": "-77.64971000" + }, + { + "id": "112774", + "name": "Bridgewater", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.38207000", + "longitude": "-78.97670000" + }, + { + "id": "112795", + "name": "Brightwood", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.42152000", + "longitude": "-78.19361000" + }, + { + "id": "112804", + "name": "Bristol", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.59649000", + "longitude": "-82.18847000" + }, + { + "id": "112824", + "name": "Broadlands", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.01816000", + "longitude": "-77.52027000" + }, + { + "id": "112831", + "name": "Broadway", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.61317000", + "longitude": "-78.79891000" + }, + { + "id": "112879", + "name": "Brookneal", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.05014000", + "longitude": "-78.94418000" + }, + { + "id": "112952", + "name": "Brunswick County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.76478000", + "longitude": "-77.85902000" + }, + { + "id": "112970", + "name": "Buchanan", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.52736000", + "longitude": "-79.67976000" + }, + { + "id": "112974", + "name": "Buchanan County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.26663000", + "longitude": "-82.03603000" + }, + { + "id": "112980", + "name": "Buckhall", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.73178000", + "longitude": "-77.43110000" + }, + { + "id": "112985", + "name": "Buckingham", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.55015000", + "longitude": "-78.55556000" + }, + { + "id": "112986", + "name": "Buckingham County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.57224000", + "longitude": "-78.52871000" + }, + { + "id": "113001", + "name": "Buena Vista", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.73430000", + "longitude": "-79.35392000" + }, + { + "id": "113026", + "name": "Bull Run", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.78373000", + "longitude": "-77.52055000" + }, + { + "id": "113027", + "name": "Bull Run Mountain Estates", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.90372000", + "longitude": "-77.66166000" + }, + { + "id": "113054", + "name": "Burke", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.79345000", + "longitude": "-77.27165000" + }, + { + "id": "113301", + "name": "Campbell County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.20564000", + "longitude": "-79.09635000" + }, + { + "id": "113311", + "name": "Cana", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.58958000", + "longitude": "-80.67173000" + }, + { + "id": "113365", + "name": "Cape Charles", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.27008000", + "longitude": "-76.01649000" + }, + { + "id": "113379", + "name": "Captains Cove", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.98996000", + "longitude": "-75.42272000" + }, + { + "id": "113438", + "name": "Caroline County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02682000", + "longitude": "-77.34696000" + }, + { + "id": "113457", + "name": "Carroll County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.73154000", + "longitude": "-80.73390000" + }, + { + "id": "113469", + "name": "Carrollton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.94682000", + "longitude": "-76.56051000" + }, + { + "id": "113554", + "name": "Castlewood", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.89010000", + "longitude": "-82.27959000" + }, + { + "id": "113588", + "name": "Cave Spring", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.22764000", + "longitude": "-80.01282000" + }, + { + "id": "113602", + "name": "Cedar Bluff", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.08761000", + "longitude": "-81.75900000" + }, + { + "id": "113674", + "name": "Central Garage", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.74403000", + "longitude": "-77.13164000" + }, + { + "id": "113695", + "name": "Centreville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.84039000", + "longitude": "-77.42888000" + }, + { + "id": "113719", + "name": "Chamberlayne", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.62653000", + "longitude": "-77.42859000" + }, + { + "id": "113738", + "name": "Chantilly", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.89428000", + "longitude": "-77.43110000" + }, + { + "id": "113755", + "name": "Charles City", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.34348000", + "longitude": "-77.07303000" + }, + { + "id": "113756", + "name": "Charles City County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.35435000", + "longitude": "-77.05913000" + }, + { + "id": "113782", + "name": "Charlotte County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.01161000", + "longitude": "-78.66164000" + }, + { + "id": "113783", + "name": "Charlotte Court House", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.05654000", + "longitude": "-78.63833000" + }, + { + "id": "113787", + "name": "Charlottesville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02931000", + "longitude": "-78.47668000" + }, + { + "id": "113791", + "name": "Chase City", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.79931000", + "longitude": "-78.45833000" + }, + { + "id": "113796", + "name": "Chatham", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.82569000", + "longitude": "-79.39808000" + }, + { + "id": "113803", + "name": "Chatmoss", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.65680000", + "longitude": "-79.81226000" + }, + { + "id": "113861", + "name": "Cherry Hill", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.56984000", + "longitude": "-77.26693000" + }, + { + "id": "113874", + "name": "Chesapeake", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.81904000", + "longitude": "-76.27494000" + }, + { + "id": "113886", + "name": "Chester", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.35682000", + "longitude": "-77.44165000" + }, + { + "id": "113907", + "name": "Chesterfield County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.37852000", + "longitude": "-77.58694000" + }, + { + "id": "113908", + "name": "Chesterfield Court House", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.37709000", + "longitude": "-77.50499000" + }, + { + "id": "113952", + "name": "Chilhowie", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.79845000", + "longitude": "-81.68234000" + }, + { + "id": "113966", + "name": "Chincoteague", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.93318000", + "longitude": "-75.37881000" + }, + { + "id": "114000", + "name": "Christiansburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.12985000", + "longitude": "-80.40894000" + }, + { + "id": "114047", + "name": "City of Alexandria", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.80484000", + "longitude": "-77.04692000" + }, + { + "id": "114049", + "name": "City of Bedford", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.33431000", + "longitude": "-79.52309000" + }, + { + "id": "114050", + "name": "City of Bristol", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.59649000", + "longitude": "-82.18847000" + }, + { + "id": "114051", + "name": "City of Buena Vista", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.73430000", + "longitude": "-79.35392000" + }, + { + "id": "114052", + "name": "City of Charlottesville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02931000", + "longitude": "-78.47668000" + }, + { + "id": "114053", + "name": "City of Chesapeake", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.68765000", + "longitude": "-76.31216000" + }, + { + "id": "114054", + "name": "City of Colonial Heights", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.24404000", + "longitude": "-77.41026000" + }, + { + "id": "114055", + "name": "City of Covington", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.79346000", + "longitude": "-79.99395000" + }, + { + "id": "114056", + "name": "City of Danville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.58597000", + "longitude": "-79.39502000" + }, + { + "id": "114057", + "name": "City of Emporia", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.68598000", + "longitude": "-77.54248000" + }, + { + "id": "114058", + "name": "City of Fairfax", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.84622000", + "longitude": "-77.30637000" + }, + { + "id": "114059", + "name": "City of Falls Church", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.88233000", + "longitude": "-77.17109000" + }, + { + "id": "114060", + "name": "City of Franklin", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.67765000", + "longitude": "-76.92246000" + }, + { + "id": "114061", + "name": "City of Fredericksburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.30318000", + "longitude": "-77.46054000" + }, + { + "id": "114062", + "name": "City of Galax", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.66124000", + "longitude": "-80.92397000" + }, + { + "id": "114063", + "name": "City of Hampton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.06265000", + "longitude": "-76.33300000" + }, + { + "id": "114064", + "name": "City of Harrisonburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.44957000", + "longitude": "-78.86892000" + }, + { + "id": "114065", + "name": "City of Hopewell", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.30432000", + "longitude": "-77.28720000" + }, + { + "id": "114066", + "name": "City of Lexington", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.77309000", + "longitude": "-79.45244000" + }, + { + "id": "114067", + "name": "City of Lynchburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.41375000", + "longitude": "-79.14225000" + }, + { + "id": "114068", + "name": "City of Manassas", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.75095000", + "longitude": "-77.47527000" + }, + { + "id": "114069", + "name": "City of Manassas Park", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.78400000", + "longitude": "-77.46971000" + }, + { + "id": "114070", + "name": "City of Martinsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.69153000", + "longitude": "-79.87254000" + }, + { + "id": "114072", + "name": "City of Newport News", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.06265000", + "longitude": "-76.50801000" + }, + { + "id": "114073", + "name": "City of Norfolk", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.89126000", + "longitude": "-76.26188000" + }, + { + "id": "114074", + "name": "City of Norton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.93343000", + "longitude": "-82.62905000" + }, + { + "id": "114075", + "name": "City of Petersburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.22793000", + "longitude": "-77.40193000" + }, + { + "id": "114076", + "name": "City of Poquoson", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.12237000", + "longitude": "-76.34578000" + }, + { + "id": "114077", + "name": "City of Portsmouth", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.83649000", + "longitude": "-76.30795000" + }, + { + "id": "114078", + "name": "City of Radford", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.13179000", + "longitude": "-80.57645000" + }, + { + "id": "114079", + "name": "City of Richmond", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.55376000", + "longitude": "-77.46026000" + }, + { + "id": "114080", + "name": "City of Roanoke", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.27097000", + "longitude": "-79.94143000" + }, + { + "id": "114082", + "name": "City of Salem", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.29347000", + "longitude": "-80.05476000" + }, + { + "id": "114084", + "name": "City of Staunton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.14931000", + "longitude": "-79.05963000" + }, + { + "id": "114085", + "name": "City of Suffolk", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.70848000", + "longitude": "-76.60801000" + }, + { + "id": "114086", + "name": "City of Virginia Beach", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.73765000", + "longitude": "-76.00521000" + }, + { + "id": "114087", + "name": "City of Waynesboro", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.06847000", + "longitude": "-78.88947000" + }, + { + "id": "114088", + "name": "City of Williamsburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.27070000", + "longitude": "-76.70746000" + }, + { + "id": "114089", + "name": "City of Winchester", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.18566000", + "longitude": "-78.16333000" + }, + { + "id": "114137", + "name": "Clarke County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.11226000", + "longitude": "-77.99673000" + }, + { + "id": "114157", + "name": "Clarksville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.62403000", + "longitude": "-78.55694000" + }, + { + "id": "114194", + "name": "Claypool Hill", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.06261000", + "longitude": "-81.75178000" + }, + { + "id": "114262", + "name": "Clifton Forge", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.81624000", + "longitude": "-79.82449000" + }, + { + "id": "114300", + "name": "Clintwood", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.15011000", + "longitude": "-82.45598000" + }, + { + "id": "114310", + "name": "Cloverdale", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.36514000", + "longitude": "-79.90560000" + }, + { + "id": "114365", + "name": "Coeburn", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.94399000", + "longitude": "-82.46404000" + }, + { + "id": "114438", + "name": "Collinsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.71514000", + "longitude": "-79.91532000" + }, + { + "id": "114447", + "name": "Colonial Beach", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.25457000", + "longitude": "-76.96358000" + }, + { + "id": "114449", + "name": "Colonial Heights", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.26804000", + "longitude": "-77.40726000" + }, + { + "id": "114537", + "name": "Concord", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.34264000", + "longitude": "-78.97502000" + }, + { + "id": "114725", + "name": "Countryside", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.04094000", + "longitude": "-77.41360000" + }, + { + "id": "114728", + "name": "Courtland", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.71626000", + "longitude": "-77.06802000" + }, + { + "id": "114739", + "name": "Covington", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.79346000", + "longitude": "-79.99395000" + }, + { + "id": "114758", + "name": "Craig County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.48125000", + "longitude": "-80.21234000" + }, + { + "id": "114818", + "name": "Crewe", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.17321000", + "longitude": "-78.12333000" + }, + { + "id": "114820", + "name": "Crimora", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.15402000", + "longitude": "-78.85030000" + }, + { + "id": "114871", + "name": "Crozet", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.06958000", + "longitude": "-78.70058000" + }, + { + "id": "114900", + "name": "Culpeper", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.47318000", + "longitude": "-77.99666000" + }, + { + "id": "114901", + "name": "Culpeper County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.48606000", + "longitude": "-77.95589000" + }, + { + "id": "114908", + "name": "Cumberland", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.49598000", + "longitude": "-78.24527000" + }, + { + "id": "114917", + "name": "Cumberland County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.51210000", + "longitude": "-78.24496000" + }, + { + "id": "114970", + "name": "Dahlgren", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.33124000", + "longitude": "-77.05109000" + }, + { + "id": "114981", + "name": "Dale City", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.63706000", + "longitude": "-77.31109000" + }, + { + "id": "114984", + "name": "Daleville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.40986000", + "longitude": "-79.91254000" + }, + { + "id": "115039", + "name": "Danville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.58597000", + "longitude": "-79.39502000" + }, + { + "id": "115094", + "name": "Dayton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.41485000", + "longitude": "-78.93864000" + }, + { + "id": "115228", + "name": "Deltaville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.55486000", + "longitude": "-76.33689000" + }, + { + "id": "115322", + "name": "Dickenson County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.12574000", + "longitude": "-82.35035000" + }, + { + "id": "115352", + "name": "Dinwiddie County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.07590000", + "longitude": "-77.63236000" + }, + { + "id": "115405", + "name": "Dooms", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.10902000", + "longitude": "-78.85752000" + }, + { + "id": "115468", + "name": "Dranesville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.00067000", + "longitude": "-77.34582000" + }, + { + "id": "115484", + "name": "Dryden", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.77759000", + "longitude": "-82.94155000" + }, + { + "id": "115493", + "name": "Dublin", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.10568000", + "longitude": "-80.68534000" + }, + { + "id": "115511", + "name": "Dulles Town Center", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.03761000", + "longitude": "-77.41582000" + }, + { + "id": "115516", + "name": "Dumbarton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.60376000", + "longitude": "-77.49137000" + }, + { + "id": "115517", + "name": "Dumfries", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.56762000", + "longitude": "-77.32804000" + }, + { + "id": "115549", + "name": "Dunn Loring", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.89344000", + "longitude": "-77.22165000" + }, + { + "id": "115679", + "name": "East Hampton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.03737000", + "longitude": "-76.33161000" + }, + { + "id": "115690", + "name": "East Highland Park", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.58098000", + "longitude": "-77.40693000" + }, + { + "id": "115704", + "name": "East Lexington", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.79291000", + "longitude": "-79.42532000" + }, + { + "id": "115798", + "name": "Eastville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.35264000", + "longitude": "-75.94576000" + }, + { + "id": "115871", + "name": "Edinburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.82095000", + "longitude": "-78.56585000" + }, + { + "id": "116014", + "name": "Elkton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.40790000", + "longitude": "-78.62363000" + }, + { + "id": "116109", + "name": "Emory", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.77289000", + "longitude": "-81.83623000" + }, + { + "id": "116112", + "name": "Emporia", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.68598000", + "longitude": "-77.54248000" + }, + { + "id": "116145", + "name": "Enon", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.33070000", + "longitude": "-77.32276000" + }, + { + "id": "116193", + "name": "Essex County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.93906000", + "longitude": "-76.94090000" + }, + { + "id": "116220", + "name": "Ettrick", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.24015000", + "longitude": "-77.42998000" + }, + { + "id": "116275", + "name": "Exmore", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.53180000", + "longitude": "-75.82299000" + }, + { + "id": "116303", + "name": "Fairfax", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.84622000", + "longitude": "-77.30637000" + }, + { + "id": "116307", + "name": "Fairfax County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.83469000", + "longitude": "-77.27622000" + }, + { + "id": "116308", + "name": "Fairfax Station", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.80095000", + "longitude": "-77.32554000" + }, + { + "id": "116330", + "name": "Fairlawn", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.14846000", + "longitude": "-80.57839000" + }, + { + "id": "116380", + "name": "Falls Church", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.88233000", + "longitude": "-77.17109000" + }, + { + "id": "116387", + "name": "Falmouth", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.32402000", + "longitude": "-77.46832000" + }, + { + "id": "116427", + "name": "Farmville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.30210000", + "longitude": "-78.39194000" + }, + { + "id": "116436", + "name": "Fauquier County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.73855000", + "longitude": "-77.80927000" + }, + { + "id": "116497", + "name": "Ferrum", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.92292000", + "longitude": "-80.01337000" + }, + { + "id": "116514", + "name": "Fincastle", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.49930000", + "longitude": "-79.87726000" + }, + { + "id": "116530", + "name": "Fishersville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.09902000", + "longitude": "-78.96919000" + }, + { + "id": "116596", + "name": "Floris", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.93706000", + "longitude": "-77.41277000" + }, + { + "id": "116605", + "name": "Floyd", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.91124000", + "longitude": "-80.32005000" + }, + { + "id": "116609", + "name": "Floyd County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.93149000", + "longitude": "-80.36255000" + }, + { + "id": "116614", + "name": "Fluvanna County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.84187000", + "longitude": "-78.27745000" + }, + { + "id": "116644", + "name": "Forest", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.36375000", + "longitude": "-79.28975000" + }, + { + "id": "116691", + "name": "Fort Belvoir", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.71190000", + "longitude": "-77.14589000" + }, + { + "id": "116718", + "name": "Fort Hunt", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.73289000", + "longitude": "-77.05803000" + }, + { + "id": "116724", + "name": "Fort Lee", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.24694000", + "longitude": "-77.33442000" + }, + { + "id": "116816", + "name": "Franconia", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.78206000", + "longitude": "-77.14637000" + }, + { + "id": "116831", + "name": "Franklin", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.67765000", + "longitude": "-76.92246000" + }, + { + "id": "116856", + "name": "Franklin County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.99194000", + "longitude": "-79.88104000" + }, + { + "id": "116889", + "name": "Frederick County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.20456000", + "longitude": "-78.26258000" + }, + { + "id": "116891", + "name": "Fredericksburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.30318000", + "longitude": "-77.46054000" + }, + { + "id": "116960", + "name": "Front Royal", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.91817000", + "longitude": "-78.19444000" + }, + { + "id": "117018", + "name": "Gainesville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.79567000", + "longitude": "-77.61388000" + }, + { + "id": "117020", + "name": "Galax", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.66124000", + "longitude": "-80.92397000" + }, + { + "id": "117118", + "name": "Gate City", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.63788000", + "longitude": "-82.58099000" + }, + { + "id": "117211", + "name": "Giles County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.31403000", + "longitude": "-80.70374000" + }, + { + "id": "117232", + "name": "Glade Spring", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.79122000", + "longitude": "-81.77123000" + }, + { + "id": "117248", + "name": "Glasgow", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.63402000", + "longitude": "-79.45031000" + }, + { + "id": "117259", + "name": "Glen Allen", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.66598000", + "longitude": "-77.50637000" + }, + { + "id": "117325", + "name": "Gloucester County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.40121000", + "longitude": "-76.52297000" + }, + { + "id": "117326", + "name": "Gloucester Courthouse", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.40986000", + "longitude": "-76.52662000" + }, + { + "id": "117327", + "name": "Gloucester Point", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.25403000", + "longitude": "-76.49689000" + }, + { + "id": "117375", + "name": "Goochland", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.68431000", + "longitude": "-77.88527000" + }, + { + "id": "117376", + "name": "Goochland County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.72198000", + "longitude": "-77.91636000" + }, + { + "id": "117401", + "name": "Gordonsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.13736000", + "longitude": "-78.18778000" + }, + { + "id": "117564", + "name": "Grayson County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.65659000", + "longitude": "-81.22505000" + }, + { + "id": "117572", + "name": "Great Falls", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.99817000", + "longitude": "-77.28832000" + }, + { + "id": "117617", + "name": "Greenbriar", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.87345000", + "longitude": "-77.40082000" + }, + { + "id": "117640", + "name": "Greene County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.29760000", + "longitude": "-78.46688000" + }, + { + "id": "117673", + "name": "Greensville County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.67585000", + "longitude": "-77.55958000" + }, + { + "id": "117726", + "name": "Gretna", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.95375000", + "longitude": "-79.35891000" + }, + { + "id": "117753", + "name": "Grottoes", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.26735000", + "longitude": "-78.82586000" + }, + { + "id": "117763", + "name": "Groveton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.76734000", + "longitude": "-77.08470000" + }, + { + "id": "117768", + "name": "Grundy", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.27789000", + "longitude": "-82.09902000" + }, + { + "id": "117860", + "name": "Halifax", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.76597000", + "longitude": "-78.92834000" + }, + { + "id": "117863", + "name": "Halifax County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.76695000", + "longitude": "-78.93662000" + }, + { + "id": "117919", + "name": "Hampden Sydney", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.24237000", + "longitude": "-78.45972000" + }, + { + "id": "117931", + "name": "Hampton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.02987000", + "longitude": "-76.34522000" + }, + { + "id": "117969", + "name": "Hanover", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.76653000", + "longitude": "-77.37026000" + }, + { + "id": "117974", + "name": "Hanover County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.76015000", + "longitude": "-77.49087000" + }, + { + "id": "118070", + "name": "Harrisonburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.44957000", + "longitude": "-78.86892000" + }, + { + "id": "118184", + "name": "Hayfield", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.75178000", + "longitude": "-77.13581000" + }, + { + "id": "118187", + "name": "Haymarket", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.81206000", + "longitude": "-77.63638000" + }, + { + "id": "118225", + "name": "Heathsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.91763000", + "longitude": "-76.47217000" + }, + { + "id": "118294", + "name": "Henrico County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.45771000", + "longitude": "-77.29646000" + }, + { + "id": "118303", + "name": "Henry County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.68470000", + "longitude": "-79.98152000" + }, + { + "id": "118306", + "name": "Henry Fork", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96625000", + "longitude": "-79.87031000" + }, + { + "id": "118336", + "name": "Herndon", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.96955000", + "longitude": "-77.38610000" + }, + { + "id": "118404", + "name": "Highland County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.36233000", + "longitude": "-79.56854000" + }, + { + "id": "118415", + "name": "Highland Springs", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.54598000", + "longitude": "-77.32776000" + }, + { + "id": "118468", + "name": "Hillsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.76263000", + "longitude": "-80.73479000" + }, + { + "id": "118546", + "name": "Hollins", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.34125000", + "longitude": "-79.94310000" + }, + { + "id": "118564", + "name": "Hollymead", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.11708000", + "longitude": "-78.44168000" + }, + { + "id": "118612", + "name": "Honaker", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.01622000", + "longitude": "-81.97429000" + }, + { + "id": "118649", + "name": "Hopewell", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.30432000", + "longitude": "-77.28720000" + }, + { + "id": "118671", + "name": "Horse Pasture", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.62847000", + "longitude": "-79.95087000" + }, + { + "id": "118799", + "name": "Huntington", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.79234000", + "longitude": "-77.07081000" + }, + { + "id": "118832", + "name": "Hurt", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.09264000", + "longitude": "-79.29641000" + }, + { + "id": "118845", + "name": "Hybla Valley", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.74761000", + "longitude": "-77.08303000" + }, + { + "id": "118876", + "name": "Idylwood", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.89511000", + "longitude": "-77.21165000" + }, + { + "id": "118894", + "name": "Independence", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.62245000", + "longitude": "-81.15309000" + }, + { + "id": "118899", + "name": "Independent Hill", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.63595000", + "longitude": "-77.43776000" + }, + { + "id": "119033", + "name": "Isle of Wight County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.90673000", + "longitude": "-76.70913000" + }, + { + "id": "119116", + "name": "James City County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.31332000", + "longitude": "-76.77376000" + }, + { + "id": "119167", + "name": "Jefferson", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.86456000", + "longitude": "-77.18776000" + }, + { + "id": "119289", + "name": "Jolivue", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.10985000", + "longitude": "-79.07308000" + }, + { + "id": "119311", + "name": "Jonesville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.68898000", + "longitude": "-83.11100000" + }, + { + "id": "119443", + "name": "Kenbridge", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96209000", + "longitude": "-78.12500000" + }, + { + "id": "119563", + "name": "Kilmarnock", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.71041000", + "longitude": "-76.37967000" + }, + { + "id": "119588", + "name": "King and Queen County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.71862000", + "longitude": "-76.89527000" + }, + { + "id": "119589", + "name": "King and Queen Court House", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.66986000", + "longitude": "-76.87746000" + }, + { + "id": "119584", + "name": "King George", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.26818000", + "longitude": "-77.18442000" + }, + { + "id": "119585", + "name": "King George County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.27374000", + "longitude": "-77.15651000" + }, + { + "id": "119586", + "name": "King William", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.68736000", + "longitude": "-77.01358000" + }, + { + "id": "119587", + "name": "King William County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.70660000", + "longitude": "-77.08839000" + }, + { + "id": "119604", + "name": "Kings Park", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.80622000", + "longitude": "-77.24332000" + }, + { + "id": "119606", + "name": "Kings Park West", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.81443000", + "longitude": "-77.29582000" + }, + { + "id": "119868", + "name": "Lake Barcroft", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.84789000", + "longitude": "-77.15581000" + }, + { + "id": "119947", + "name": "Lake Monticello", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.92320000", + "longitude": "-78.33473000" + }, + { + "id": "119968", + "name": "Lake Ridge", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.68789000", + "longitude": "-77.29776000" + }, + { + "id": "120031", + "name": "Lakeside", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.60765000", + "longitude": "-77.47693000" + }, + { + "id": "120091", + "name": "Lancaster County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.70171000", + "longitude": "-76.42023000" + }, + { + "id": "120191", + "name": "Laurel", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.64292000", + "longitude": "-77.50887000" + }, + { + "id": "120197", + "name": "Laurel Hill", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.71663000", + "longitude": "-77.23686000" + }, + { + "id": "120245", + "name": "Lawrenceville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.75765000", + "longitude": "-77.84694000" + }, + { + "id": "120253", + "name": "Laymantown", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.36569000", + "longitude": "-79.85754000" + }, + { + "id": "120288", + "name": "Lebanon", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.90094000", + "longitude": "-82.08013000" + }, + { + "id": "120315", + "name": "Lee County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.70545000", + "longitude": "-83.12853000" + }, + { + "id": "120326", + "name": "Leesburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.11566000", + "longitude": "-77.56360000" + }, + { + "id": "120447", + "name": "Lexington", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.78402000", + "longitude": "-79.44282000" + }, + { + "id": "120549", + "name": "Lincolnia", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.81845000", + "longitude": "-77.14331000" + }, + { + "id": "120591", + "name": "Linton Hall", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.75984000", + "longitude": "-77.57499000" + }, + { + "id": "120669", + "name": "Loch Lomond", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.78623000", + "longitude": "-77.47804000" + }, + { + "id": "120777", + "name": "Lorton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.70428000", + "longitude": "-77.22776000" + }, + { + "id": "120801", + "name": "Loudoun County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.09068000", + "longitude": "-77.63572000" + }, + { + "id": "120802", + "name": "Loudoun Valley Estates", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.98081000", + "longitude": "-77.50790000" + }, + { + "id": "120805", + "name": "Louisa", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02514000", + "longitude": "-78.00416000" + }, + { + "id": "120806", + "name": "Louisa County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.97821000", + "longitude": "-77.96298000" + }, + { + "id": "120827", + "name": "Lovettsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.27260000", + "longitude": "-77.63666000" + }, + { + "id": "120830", + "name": "Lovingston", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.75986000", + "longitude": "-78.87086000" + }, + { + "id": "120844", + "name": "Lowes Island", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.05983000", + "longitude": "-77.35221000" + }, + { + "id": "120886", + "name": "Lunenburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.96098000", + "longitude": "-78.26555000" + }, + { + "id": "120889", + "name": "Lunenburg County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.94621000", + "longitude": "-78.24057000" + }, + { + "id": "120890", + "name": "Luray", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.66540000", + "longitude": "-78.45945000" + }, + { + "id": "120916", + "name": "Lynchburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.41375000", + "longitude": "-79.14225000" + }, + { + "id": "120920", + "name": "Lyndhurst", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.02930000", + "longitude": "-78.94502000" + }, + { + "id": "120991", + "name": "Madison", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.38041000", + "longitude": "-78.25750000" + }, + { + "id": "121013", + "name": "Madison County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.41369000", + "longitude": "-78.27924000" + }, + { + "id": "121020", + "name": "Madison Heights", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.43098000", + "longitude": "-79.12308000" + }, + { + "id": "121082", + "name": "Manassas", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.75095000", + "longitude": "-77.47527000" + }, + { + "id": "121083", + "name": "Manassas Park", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.78400000", + "longitude": "-77.46971000" + }, + { + "id": "121160", + "name": "Mantua", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.85372000", + "longitude": "-77.25943000" + }, + { + "id": "121241", + "name": "Marion", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.83484000", + "longitude": "-81.51484000" + }, + { + "id": "121306", + "name": "Marshall", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.86484000", + "longitude": "-77.85777000" + }, + { + "id": "121350", + "name": "Martinsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.69153000", + "longitude": "-79.87254000" + }, + { + "id": "121389", + "name": "Massanetta Springs", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.40040000", + "longitude": "-78.83419000" + }, + { + "id": "121390", + "name": "Massanutten", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.40957000", + "longitude": "-78.73780000" + }, + { + "id": "121403", + "name": "Mathews", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.43708000", + "longitude": "-76.31994000" + }, + { + "id": "121404", + "name": "Mathews County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.41731000", + "longitude": "-76.27129000" + }, + { + "id": "121406", + "name": "Matoaca", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.23043000", + "longitude": "-77.47749000" + }, + { + "id": "121527", + "name": "McLean", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.93428000", + "longitude": "-77.17748000" + }, + { + "id": "121566", + "name": "Meadowbrook", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.44882000", + "longitude": "-77.47353000" + }, + { + "id": "121583", + "name": "Mechanicsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.60876000", + "longitude": "-77.37331000" + }, + { + "id": "121588", + "name": "Mecklenburg County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.68036000", + "longitude": "-78.36273000" + }, + { + "id": "121706", + "name": "Merrifield", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.87428000", + "longitude": "-77.22693000" + }, + { + "id": "121709", + "name": "Merrimac", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.18957000", + "longitude": "-80.42561000" + }, + { + "id": "121778", + "name": "Middlesex County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.59737000", + "longitude": "-76.57814000" + }, + { + "id": "121789", + "name": "Middletown", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.02761000", + "longitude": "-78.28056000" + }, + { + "id": "122105", + "name": "Montclair", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.61095000", + "longitude": "-77.33971000" + }, + { + "id": "122119", + "name": "Monterey", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.41234000", + "longitude": "-79.58060000" + }, + { + "id": "122151", + "name": "Montgomery County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.17404000", + "longitude": "-80.38700000" + }, + { + "id": "122179", + "name": "Montrose", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.52070000", + "longitude": "-77.37831000" + }, + { + "id": "122186", + "name": "Montross", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.09513000", + "longitude": "-76.82746000" + }, + { + "id": "122310", + "name": "Motley", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.06959000", + "longitude": "-79.34114000" + }, + { + "id": "122346", + "name": "Mount Hermon", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.67847000", + "longitude": "-79.42225000" + }, + { + "id": "122357", + "name": "Mount Jackson", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.74595000", + "longitude": "-78.64224000" + }, + { + "id": "122404", + "name": "Mount Vernon", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.71919000", + "longitude": "-77.10726000" + }, + { + "id": "122426", + "name": "Mountain Road", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.75958000", + "longitude": "-78.98696000" + }, + { + "id": "122566", + "name": "Narrows", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.33151000", + "longitude": "-80.81119000" + }, + { + "id": "122623", + "name": "Nellysford", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.89042000", + "longitude": "-78.87224000" + }, + { + "id": "122627", + "name": "Nelson County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.78741000", + "longitude": "-78.88676000" + }, + { + "id": "122659", + "name": "New Baltimore", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.76734000", + "longitude": "-77.72833000" + }, + { + "id": "122686", + "name": "New Castle", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.50013000", + "longitude": "-80.11088000" + }, + { + "id": "122734", + "name": "New Kent", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.51765000", + "longitude": "-76.97886000" + }, + { + "id": "122735", + "name": "New Kent County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.50514000", + "longitude": "-76.99713000" + }, + { + "id": "122751", + "name": "New Market", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.64790000", + "longitude": "-78.67141000" + }, + { + "id": "122830", + "name": "Newington", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.73845000", + "longitude": "-77.18498000" + }, + { + "id": "122856", + "name": "Newport News", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.08339000", + "longitude": "-76.46965000" + }, + { + "id": "122928", + "name": "Nokesville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.69873000", + "longitude": "-77.57971000" + }, + { + "id": "122941", + "name": "Norfolk", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.84681000", + "longitude": "-76.28522000" + }, + { + "id": "123105", + "name": "North Shore", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.08209000", + "longitude": "-79.65836000" + }, + { + "id": "123110", + "name": "North Springfield", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.80428000", + "longitude": "-77.20470000" + }, + { + "id": "123137", + "name": "Northampton County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.30078000", + "longitude": "-75.92854000" + }, + { + "id": "123167", + "name": "Northumberland County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.88244000", + "longitude": "-76.47171000" + }, + { + "id": "123183", + "name": "Norton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.93343000", + "longitude": "-82.62905000" + }, + { + "id": "123206", + "name": "Nottoway County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.14306000", + "longitude": "-78.05126000" + }, + { + "id": "123238", + "name": "Oak Grove", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.98400000", + "longitude": "-77.40388000" + }, + { + "id": "123246", + "name": "Oak Hill", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.92580000", + "longitude": "-77.40156000" + }, + { + "id": "123305", + "name": "Oakton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.88095000", + "longitude": "-77.30082000" + }, + { + "id": "123322", + "name": "Occoquan", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.68373000", + "longitude": "-77.26026000" + }, + { + "id": "123469", + "name": "Onancock", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.71180000", + "longitude": "-75.74910000" + }, + { + "id": "123506", + "name": "Orange", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.24541000", + "longitude": "-78.11083000" + }, + { + "id": "123518", + "name": "Orange County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.24624000", + "longitude": "-78.01349000" + }, + { + "id": "123718", + "name": "Page County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.61998000", + "longitude": "-78.48413000" + }, + { + "id": "123773", + "name": "Palmyra", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.86097000", + "longitude": "-78.26334000" + }, + { + "id": "123802", + "name": "Pannill Fork", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.70903000", + "longitude": "-80.01310000" + }, + { + "id": "123809", + "name": "Pantops", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.03379000", + "longitude": "-78.45507000" + }, + { + "id": "123909", + "name": "Passapatanzy", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.29735000", + "longitude": "-77.31415000" + }, + { + "id": "123912", + "name": "Patrick County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.67833000", + "longitude": "-80.28435000" + }, + { + "id": "123913", + "name": "Patrick Springs", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.64180000", + "longitude": "-80.19505000" + }, + { + "id": "123962", + "name": "Pearisburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.32673000", + "longitude": "-80.73702000" + }, + { + "id": "124006", + "name": "Pembroke", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.31957000", + "longitude": "-80.63895000" + }, + { + "id": "124032", + "name": "Pennington Gap", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.75842000", + "longitude": "-83.02711000" + }, + { + "id": "124105", + "name": "Petersburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.22793000", + "longitude": "-77.40193000" + }, + { + "id": "124205", + "name": "Pimmit Hills", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.91289000", + "longitude": "-77.20081000" + }, + { + "id": "124306", + "name": "Pittsylvania County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.82133000", + "longitude": "-79.39711000" + }, + { + "id": "124393", + "name": "Plum Creek", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.12984000", + "longitude": "-80.50060000" + }, + { + "id": "124489", + "name": "Poquoson", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.12237000", + "longitude": "-76.34578000" + }, + { + "id": "124569", + "name": "Portsmouth", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.83543000", + "longitude": "-76.29827000" + }, + { + "id": "124572", + "name": "Portsmouth Heights", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.82098000", + "longitude": "-76.36883000" + }, + { + "id": "124584", + "name": "Potomac Mills", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.64595000", + "longitude": "-77.29415000" + }, + { + "id": "124618", + "name": "Powhatan County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.55020000", + "longitude": "-77.91519000" + }, + { + "id": "124665", + "name": "Prices Fork", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.20985000", + "longitude": "-80.49005000" + }, + { + "id": "124672", + "name": "Prince Edward County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.22430000", + "longitude": "-78.44108000" + }, + { + "id": "124674", + "name": "Prince George", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.22043000", + "longitude": "-77.28803000" + }, + { + "id": "124675", + "name": "Prince George County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.18653000", + "longitude": "-77.22413000" + }, + { + "id": "124677", + "name": "Prince William County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.70167000", + "longitude": "-77.47766000" + }, + { + "id": "124734", + "name": "Pulaski", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.04790000", + "longitude": "-80.77979000" + }, + { + "id": "124742", + "name": "Pulaski County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.06361000", + "longitude": "-80.71434000" + }, + { + "id": "124754", + "name": "Purcellville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.13677000", + "longitude": "-77.71472000" + }, + { + "id": "124780", + "name": "Quantico Station", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.52263000", + "longitude": "-77.31834000" + }, + { + "id": "124816", + "name": "Radford", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.13179000", + "longitude": "-80.57645000" + }, + { + "id": "124898", + "name": "Rappahannock County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.68471000", + "longitude": "-78.15925000" + }, + { + "id": "124904", + "name": "Raven", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.08706000", + "longitude": "-81.85512000" + }, + { + "id": "124911", + "name": "Ravensworth", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.80400000", + "longitude": "-77.22054000" + }, + { + "id": "125036", + "name": "Reston", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.96872000", + "longitude": "-77.34110000" + }, + { + "id": "125082", + "name": "Richlands", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.09317000", + "longitude": "-81.79373000" + }, + { + "id": "125088", + "name": "Richmond", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.55376000", + "longitude": "-77.46026000" + }, + { + "id": "125100", + "name": "Richmond County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.93705000", + "longitude": "-76.72968000" + }, + { + "id": "125228", + "name": "Roanoke", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.27097000", + "longitude": "-79.94143000" + }, + { + "id": "125231", + "name": "Roanoke County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.20907000", + "longitude": "-80.05085000" + }, + { + "id": "125292", + "name": "Rockbridge County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.81461000", + "longitude": "-79.44758000" + }, + { + "id": "125306", + "name": "Rockingham County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.51213000", + "longitude": "-78.87576000" + }, + { + "id": "125336", + "name": "Rocky Mount", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.99764000", + "longitude": "-79.89198000" + }, + { + "id": "125405", + "name": "Rose Hill", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.78872000", + "longitude": "-77.11276000" + }, + { + "id": "125452", + "name": "Rosslyn", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.89678000", + "longitude": "-77.07248000" + }, + { + "id": "125502", + "name": "Ruckersville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.23319000", + "longitude": "-78.36917000" + }, + { + "id": "125518", + "name": "Rural Retreat", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.89373000", + "longitude": "-81.27593000" + }, + { + "id": "125524", + "name": "Rushmere", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.06681000", + "longitude": "-76.67635000" + }, + { + "id": "125539", + "name": "Russell County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.93376000", + "longitude": "-82.09564000" + }, + { + "id": "125546", + "name": "Rustburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.27681000", + "longitude": "-79.10085000" + }, + { + "id": "125734", + "name": "Salem", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.29347000", + "longitude": "-80.05476000" + }, + { + "id": "125771", + "name": "Saltville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.88150000", + "longitude": "-81.76206000" + }, + { + "id": "125773", + "name": "Saluda", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.60597000", + "longitude": "-76.59495000" + }, + { + "id": "125873", + "name": "Sandston", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.52348000", + "longitude": "-77.31581000" + }, + { + "id": "126050", + "name": "Scott County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.71422000", + "longitude": "-82.60298000" + }, + { + "id": "126171", + "name": "Seven Corners", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.87206000", + "longitude": "-77.15526000" + }, + { + "id": "126252", + "name": "Shawnee Land", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.19149000", + "longitude": "-78.34556000" + }, + { + "id": "126254", + "name": "Shawsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.16847000", + "longitude": "-80.25532000" + }, + { + "id": "126303", + "name": "Shenandoah", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.48512000", + "longitude": "-78.62502000" + }, + { + "id": "126305", + "name": "Shenandoah County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.85839000", + "longitude": "-78.57060000" + }, + { + "id": "126306", + "name": "Shenandoah Farms", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.98178000", + "longitude": "-78.07555000" + }, + { + "id": "126377", + "name": "Short Pump", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.65042000", + "longitude": "-77.61249000" + }, + { + "id": "126519", + "name": "Smithfield", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.98237000", + "longitude": "-76.63107000" + }, + { + "id": "126537", + "name": "Smyth County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.84388000", + "longitude": "-81.53702000" + }, + { + "id": "126628", + "name": "South Boston", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.69875000", + "longitude": "-78.90140000" + }, + { + "id": "126671", + "name": "South Hill", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.72653000", + "longitude": "-78.12889000" + }, + { + "id": "126716", + "name": "South Riding", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.92094000", + "longitude": "-77.50388000" + }, + { + "id": "126731", + "name": "South Suffolk", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.71709000", + "longitude": "-76.59023000" + }, + { + "id": "126759", + "name": "Southampton County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.72040000", + "longitude": "-77.10609000" + }, + { + "id": "126767", + "name": "Southern Gateway", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.34507000", + "longitude": "-77.50352000" + }, + { + "id": "126847", + "name": "Spotsylvania County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.18502000", + "longitude": "-77.65597000" + }, + { + "id": "126848", + "name": "Spotsylvania Courthouse", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.19791000", + "longitude": "-77.58777000" + }, + { + "id": "126896", + "name": "Springfield", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.78928000", + "longitude": "-77.18720000" + }, + { + "id": "126916", + "name": "Springville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.19651000", + "longitude": "-81.40288000" + }, + { + "id": "126933", + "name": "Stafford", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.42207000", + "longitude": "-77.40832000" + }, + { + "id": "126937", + "name": "Stafford County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.42070000", + "longitude": "-77.45743000" + }, + { + "id": "126948", + "name": "Stanardsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.29735000", + "longitude": "-78.44001000" + }, + { + "id": "126959", + "name": "Stanley", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.57540000", + "longitude": "-78.50251000" + }, + { + "id": "126963", + "name": "Stanleytown", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.74430000", + "longitude": "-79.96282000" + }, + { + "id": "127001", + "name": "Staunton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.14991000", + "longitude": "-79.07320000" + }, + { + "id": "127020", + "name": "Stephens City", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.08344000", + "longitude": "-78.21806000" + }, + { + "id": "127027", + "name": "Sterling", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.00622000", + "longitude": "-77.42860000" + }, + { + "id": "127120", + "name": "Strasburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.98872000", + "longitude": "-78.35862000" + }, + { + "id": "127144", + "name": "Stuart", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.64097000", + "longitude": "-80.26561000" + }, + { + "id": "127145", + "name": "Stuarts Draft", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.03014000", + "longitude": "-79.03364000" + }, + { + "id": "127163", + "name": "Sudley", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.79289000", + "longitude": "-77.49749000" + }, + { + "id": "127166", + "name": "Suffolk", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.72836000", + "longitude": "-76.58496000" + }, + { + "id": "127175", + "name": "Sugarland Run", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.03761000", + "longitude": "-77.37526000" + }, + { + "id": "127292", + "name": "Surry", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.13793000", + "longitude": "-76.83524000" + }, + { + "id": "127295", + "name": "Surry County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.11691000", + "longitude": "-76.88831000" + }, + { + "id": "127300", + "name": "Sussex", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.91515000", + "longitude": "-77.27914000" + }, + { + "id": "127304", + "name": "Sussex County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.92175000", + "longitude": "-77.26179000" + }, + { + "id": "127425", + "name": "Tappahannock", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.92541000", + "longitude": "-76.85913000" + }, + { + "id": "127469", + "name": "Tazewell", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.11484000", + "longitude": "-81.51955000" + }, + { + "id": "127470", + "name": "Tazewell County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.12497000", + "longitude": "-81.56066000" + }, + { + "id": "127658", + "name": "Timberlake", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.32070000", + "longitude": "-79.25753000" + }, + { + "id": "127660", + "name": "Timberville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.63901000", + "longitude": "-78.77391000" + }, + { + "id": "127818", + "name": "Triangle", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.54679000", + "longitude": "-77.33665000" + }, + { + "id": "127868", + "name": "Tuckahoe", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.59015000", + "longitude": "-77.55638000" + }, + { + "id": "127933", + "name": "Twin Lakes", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.24927000", + "longitude": "-78.44378000" + }, + { + "id": "127952", + "name": "Tysons Corner", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.91872000", + "longitude": "-77.23109000" + }, + { + "id": "128006", + "name": "Union Hall", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.01875000", + "longitude": "-79.68642000" + }, + { + "id": "128026", + "name": "University Center", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.05705000", + "longitude": "-77.44415000" + }, + { + "id": "128202", + "name": "Verona", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.20208000", + "longitude": "-79.00836000" + }, + { + "id": "128221", + "name": "Victoria", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.99487000", + "longitude": "-78.22722000" + }, + { + "id": "128234", + "name": "Vienna", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.90122000", + "longitude": "-77.26526000" + }, + { + "id": "128281", + "name": "Vinton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.28097000", + "longitude": "-79.89698000" + }, + { + "id": "128288", + "name": "Virginia Beach", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.85293000", + "longitude": "-75.97799000" + }, + { + "id": "128469", + "name": "Warm Springs", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.04624000", + "longitude": "-79.79061000" + }, + { + "id": "128492", + "name": "Warren County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.90878000", + "longitude": "-78.20746000" + }, + { + "id": "128507", + "name": "Warrenton", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.71345000", + "longitude": "-77.79527000" + }, + { + "id": "128518", + "name": "Warsaw", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.95874000", + "longitude": "-76.75801000" + }, + { + "id": "128543", + "name": "Washington", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.71345000", + "longitude": "-78.15944000" + }, + { + "id": "128567", + "name": "Washington County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.72448000", + "longitude": "-81.95966000" + }, + { + "id": "128644", + "name": "Wattsville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.93401000", + "longitude": "-75.49965000" + }, + { + "id": "128667", + "name": "Waverly", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.03598000", + "longitude": "-77.09524000" + }, + { + "id": "128709", + "name": "Waynesboro", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.06847000", + "longitude": "-78.88947000" + }, + { + "id": "128728", + "name": "Weber City", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.75514000", + "longitude": "-78.28389000" + }, + { + "id": "128867", + "name": "West Falls Church", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.89094000", + "longitude": "-77.18443000" + }, + { + "id": "128877", + "name": "West Gate", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.78289000", + "longitude": "-77.49749000" + }, + { + "id": "128924", + "name": "West Lynchburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.40320000", + "longitude": "-79.17808000" + }, + { + "id": "128960", + "name": "West Point", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.53153000", + "longitude": "-76.79635000" + }, + { + "id": "128984", + "name": "West Springfield", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.77261000", + "longitude": "-77.22109000" + }, + { + "id": "129055", + "name": "Westmoreland County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.11282000", + "longitude": "-76.79991000" + }, + { + "id": "129099", + "name": "Weyers Cave", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.28846000", + "longitude": "-78.91308000" + }, + { + "id": "129268", + "name": "Williamsburg", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.27070000", + "longitude": "-76.70746000" + }, + { + "id": "129356", + "name": "Winchester", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "39.18566000", + "longitude": "-78.16333000" + }, + { + "id": "129381", + "name": "Windsor", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.80848000", + "longitude": "-76.74412000" + }, + { + "id": "129459", + "name": "Wise", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.97593000", + "longitude": "-82.57571000" + }, + { + "id": "129461", + "name": "Wise County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.97522000", + "longitude": "-82.62124000" + }, + { + "id": "129474", + "name": "Wolf Trap", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.93983000", + "longitude": "-77.28609000" + }, + { + "id": "129500", + "name": "Woodbridge", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.65817000", + "longitude": "-77.24970000" + }, + { + "id": "129505", + "name": "Woodburn", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.84745000", + "longitude": "-77.23605000" + }, + { + "id": "129525", + "name": "Woodlake", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.42106000", + "longitude": "-77.67931000" + }, + { + "id": "129535", + "name": "Woodlawn", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.72235000", + "longitude": "-80.82285000" + }, + { + "id": "129562", + "name": "Woodstock", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.88178000", + "longitude": "-78.50584000" + }, + { + "id": "129630", + "name": "Wyndham", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.69848000", + "longitude": "-77.61249000" + }, + { + "id": "129644", + "name": "Wythe County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.91713000", + "longitude": "-81.07859000" + }, + { + "id": "129645", + "name": "Wytheville", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "36.94845000", + "longitude": "-81.08481000" + }, + { + "id": "129696", + "name": "York County", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.22541000", + "longitude": "-76.52046000" + }, + { + "id": "129703", + "name": "Yorkshire", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "38.79317000", + "longitude": "-77.44777000" + }, + { + "id": "129705", + "name": "Yorktown", + "state_id": 1427, + "state_code": "VA", + "country_id": 233, + "country_code": "US", + "latitude": "37.23876000", + "longitude": "-76.50967000" + }, + { + "id": "110979", + "name": "Aberdeen", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.97537000", + "longitude": "-123.81572000" + }, + { + "id": "111027", + "name": "Adams County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.98338000", + "longitude": "-118.56050000" + }, + { + "id": "111063", + "name": "Ahtanum", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.55957000", + "longitude": "-120.62201000" + }, + { + "id": "111072", + "name": "Airway Heights", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.64461000", + "longitude": "-117.59327000" + }, + { + "id": "111138", + "name": "Alderton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.16955000", + "longitude": "-122.22928000" + }, + { + "id": "111139", + "name": "Alderwood Manor", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.82204000", + "longitude": "-122.28207000" + }, + { + "id": "111164", + "name": "Algona", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.27899000", + "longitude": "-122.25206000" + }, + { + "id": "111205", + "name": "Allyn", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.38565000", + "longitude": "-122.82764000" + }, + { + "id": "111266", + "name": "Amboy", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.91011000", + "longitude": "-122.44649000" + }, + { + "id": "111278", + "name": "Ames Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.63288000", + "longitude": "-121.96623000" + }, + { + "id": "111297", + "name": "Anacortes", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.51260000", + "longitude": "-122.61267000" + }, + { + "id": "111470", + "name": "Arlington", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.19871000", + "longitude": "-122.12514000" + }, + { + "id": "111474", + "name": "Arlington Heights", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.20205000", + "longitude": "-122.06208000" + }, + { + "id": "111501", + "name": "Artondale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.29954000", + "longitude": "-122.62069000" + }, + { + "id": "111550", + "name": "Asotin", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.33933000", + "longitude": "-117.04821000" + }, + { + "id": "111551", + "name": "Asotin County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.19186000", + "longitude": "-117.20307000" + }, + { + "id": "111632", + "name": "Auburn", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.30732000", + "longitude": "-122.22845000" + }, + { + "id": "111654", + "name": "Ault Field", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.33812000", + "longitude": "-122.67441000" + }, + { + "id": "111735", + "name": "Bainbridge Island", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.62621000", + "longitude": "-122.52124000" + }, + { + "id": "111795", + "name": "Bangor Trident Base", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.72274000", + "longitude": "-122.71446000" + }, + { + "id": "111813", + "name": "Barberton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.69317000", + "longitude": "-122.59899000" + }, + { + "id": "111879", + "name": "Basin City", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.59403000", + "longitude": "-119.15223000" + }, + { + "id": "111907", + "name": "Battle Ground", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.78095000", + "longitude": "-122.53343000" + }, + { + "id": "112055", + "name": "Belfair", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.45065000", + "longitude": "-122.82737000" + }, + { + "id": "112117", + "name": "Bellevue", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.61038000", + "longitude": "-122.20068000" + }, + { + "id": "112120", + "name": "Bellingham", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.75955000", + "longitude": "-122.48822000" + }, + { + "id": "112198", + "name": "Benton City", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.26319000", + "longitude": "-119.48780000" + }, + { + "id": "112207", + "name": "Benton County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.23978000", + "longitude": "-119.51120000" + }, + { + "id": "112282", + "name": "Bethel", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.49398000", + "longitude": "-122.63125000" + }, + { + "id": "112326", + "name": "Big Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.40288000", + "longitude": "-122.24127000" + }, + { + "id": "112353", + "name": "Birch Bay", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.91789000", + "longitude": "-122.74462000" + }, + { + "id": "112374", + "name": "Black Diamond", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.30871000", + "longitude": "-122.00317000" + }, + { + "id": "112404", + "name": "Blaine", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.99372000", + "longitude": "-122.74712000" + }, + { + "id": "112547", + "name": "Bonney Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.17705000", + "longitude": "-122.18651000" + }, + { + "id": "112595", + "name": "Bothell", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.76232000", + "longitude": "-122.20540000" + }, + { + "id": "112596", + "name": "Bothell East", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.80631000", + "longitude": "-122.18427000" + }, + { + "id": "112597", + "name": "Bothell West", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.80527000", + "longitude": "-122.24064000" + }, + { + "id": "112607", + "name": "Boulevard Park", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.48927000", + "longitude": "-122.31512000" + }, + { + "id": "112723", + "name": "Bremerton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.56732000", + "longitude": "-122.63264000" + }, + { + "id": "112744", + "name": "Brewster", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.09598000", + "longitude": "-119.78062000" + }, + { + "id": "112768", + "name": "Bridgeport", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.00820000", + "longitude": "-119.67116000" + }, + { + "id": "112782", + "name": "Brier", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.78454000", + "longitude": "-122.27429000" + }, + { + "id": "112922", + "name": "Browns Point", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.30038000", + "longitude": "-122.44124000" + }, + { + "id": "112955", + "name": "Brush Prairie", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.73289000", + "longitude": "-122.54649000" + }, + { + "id": "112964", + "name": "Bryant", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.23899000", + "longitude": "-122.15792000" + }, + { + "id": "112967", + "name": "Bryn Mawr-Skyway", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.49430000", + "longitude": "-122.24092000" + }, + { + "id": "112988", + "name": "Buckley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.16316000", + "longitude": "-122.02678000" + }, + { + "id": "113039", + "name": "Bunk Foss", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.96171000", + "longitude": "-122.09441000" + }, + { + "id": "113048", + "name": "Burbank", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.19986000", + "longitude": "-119.01306000" + }, + { + "id": "113052", + "name": "Burien", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.47038000", + "longitude": "-122.34679000" + }, + { + "id": "113064", + "name": "Burley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.41787000", + "longitude": "-122.63097000" + }, + { + "id": "113076", + "name": "Burlington", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.47566000", + "longitude": "-122.32544000" + }, + { + "id": "113240", + "name": "Camano", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.17399000", + "longitude": "-122.52821000" + }, + { + "id": "113243", + "name": "Camas", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.58706000", + "longitude": "-122.39954000" + }, + { + "id": "113338", + "name": "Canterwood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.37510000", + "longitude": "-122.58930000" + }, + { + "id": "113424", + "name": "Carnation", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.64788000", + "longitude": "-121.91401000" + }, + { + "id": "113476", + "name": "Carson", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.72539000", + "longitude": "-121.81924000" + }, + { + "id": "113517", + "name": "Cascade Valley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.13459000", + "longitude": "-119.32808000" + }, + { + "id": "113522", + "name": "Cashmere", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.52235000", + "longitude": "-120.46980000" + }, + { + "id": "113550", + "name": "Castle Rock", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.27511000", + "longitude": "-122.90761000" + }, + { + "id": "113569", + "name": "Cathcart", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.84788000", + "longitude": "-122.09929000" + }, + { + "id": "113571", + "name": "Cathlamet", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.20317000", + "longitude": "-123.38318000" + }, + { + "id": "113679", + "name": "Central Park", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.97343000", + "longitude": "-123.69239000" + }, + { + "id": "113687", + "name": "Centralia", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.71621000", + "longitude": "-122.95430000" + }, + { + "id": "113825", + "name": "Chehalis", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.66205000", + "longitude": "-122.96402000" + }, + { + "id": "113826", + "name": "Chelan", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.84097000", + "longitude": "-120.01646000" + }, + { + "id": "113827", + "name": "Chelan County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.86910000", + "longitude": "-120.61891000" + }, + { + "id": "113840", + "name": "Cheney", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.48739000", + "longitude": "-117.57576000" + }, + { + "id": "113924", + "name": "Chewelah", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.27629000", + "longitude": "-117.71552000" + }, + { + "id": "113944", + "name": "Chico", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.61148000", + "longitude": "-122.71042000" + }, + { + "id": "114083", + "name": "City of Sammamish", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.60444000", + "longitude": "-122.03768000" + }, + { + "id": "114097", + "name": "Clallam County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.11044000", + "longitude": "-123.93432000" + }, + { + "id": "114131", + "name": "Clark County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.77927000", + "longitude": "-122.48259000" + }, + { + "id": "114150", + "name": "Clarkston", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.41629000", + "longitude": "-117.04557000" + }, + { + "id": "114151", + "name": "Clarkston Heights-Vineland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.38742000", + "longitude": "-117.08300000" + }, + { + "id": "114207", + "name": "Cle Elum", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.19540000", + "longitude": "-120.93925000" + }, + { + "id": "114212", + "name": "Clear Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.46427000", + "longitude": "-122.23404000" + }, + { + "id": "114221", + "name": "Clearview", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.83371000", + "longitude": "-122.12596000" + }, + { + "id": "114321", + "name": "Clyde Hill", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.63177000", + "longitude": "-122.21790000" + }, + { + "id": "114409", + "name": "Colfax", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.88017000", + "longitude": "-117.36435000" + }, + { + "id": "114415", + "name": "College Place", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.04930000", + "longitude": "-118.38830000" + }, + { + "id": "114484", + "name": "Columbia County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.29755000", + "longitude": "-117.90788000" + }, + { + "id": "114506", + "name": "Colville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.54657000", + "longitude": "-117.90554000" + }, + { + "id": "114561", + "name": "Connell", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.66347000", + "longitude": "-118.86111000" + }, + { + "id": "114685", + "name": "Cosmopolis", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.95537000", + "longitude": "-123.77378000" + }, + { + "id": "114694", + "name": "Cottage Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.74427000", + "longitude": "-122.07735000" + }, + { + "id": "114710", + "name": "Coulee Dam", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.96543000", + "longitude": "-118.97613000" + }, + { + "id": "114720", + "name": "Country Homes", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.74850000", + "longitude": "-117.40439000" + }, + { + "id": "114727", + "name": "Coupeville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.21982000", + "longitude": "-122.68628000" + }, + { + "id": "114741", + "name": "Covington", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.35818000", + "longitude": "-122.12216000" + }, + { + "id": "114749", + "name": "Cowlitz County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.19329000", + "longitude": "-122.68078000" + }, + { + "id": "114828", + "name": "Crocker", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.08091000", + "longitude": "-122.10383000" + }, + { + "id": "115000", + "name": "Dallesport", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.61734000", + "longitude": "-121.17952000" + }, + { + "id": "115054", + "name": "Darrington", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.25539000", + "longitude": "-121.60151000" + }, + { + "id": "115060", + "name": "Davenport", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.65405000", + "longitude": "-118.14997000" + }, + { + "id": "115101", + "name": "Dayton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.32375000", + "longitude": "-117.97244000" + }, + { + "id": "115179", + "name": "Deer Park", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.95434000", + "longitude": "-117.47689000" + }, + { + "id": "115272", + "name": "Des Moines", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.40177000", + "longitude": "-122.32429000" + }, + { + "id": "115279", + "name": "Desert Aire", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.67930000", + "longitude": "-119.91727000" + }, + { + "id": "115354", + "name": "Dishman", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.66007000", + "longitude": "-117.27596000" + }, + { + "id": "115389", + "name": "Dollar Corner", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.78012000", + "longitude": "-122.60010000" + }, + { + "id": "115436", + "name": "Douglas County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.73607000", + "longitude": "-119.69172000" + }, + { + "id": "115489", + "name": "DuPont", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.09676000", + "longitude": "-122.63124000" + }, + { + "id": "115582", + "name": "Duvall", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.74232000", + "longitude": "-121.98568000" + }, + { + "id": "115691", + "name": "East Hill-Meridian", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.41052000", + "longitude": "-122.17369000" + }, + { + "id": "115738", + "name": "East Port Orchard", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.52343000", + "longitude": "-122.62430000" + }, + { + "id": "115745", + "name": "East Renton Highlands", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.48482000", + "longitude": "-122.11234000" + }, + { + "id": "115771", + "name": "East Wenatchee", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.41568000", + "longitude": "-120.29313000" + }, + { + "id": "115772", + "name": "East Wenatchee Bench", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.42568000", + "longitude": "-120.28118000" + }, + { + "id": "115777", + "name": "Eastgate", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.57266000", + "longitude": "-122.14578000" + }, + { + "id": "115784", + "name": "Eastmont", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.89740000", + "longitude": "-122.18154000" + }, + { + "id": "115809", + "name": "Eatonville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.86733000", + "longitude": "-122.26650000" + }, + { + "id": "115864", + "name": "Edgewood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.25010000", + "longitude": "-122.29373000" + }, + { + "id": "115878", + "name": "Edmonds", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.81065000", + "longitude": "-122.37736000" + }, + { + "id": "115960", + "name": "Electric City", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.93237000", + "longitude": "-119.03808000" + }, + { + "id": "115989", + "name": "Elk Plain", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.05316000", + "longitude": "-122.39762000" + }, + { + "id": "116018", + "name": "Ellensburg", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.99651000", + "longitude": "-120.54785000" + }, + { + "id": "116046", + "name": "Elma", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.00343000", + "longitude": "-123.40877000" + }, + { + "id": "116123", + "name": "Enetai", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.58482000", + "longitude": "-122.59875000" + }, + { + "id": "116152", + "name": "Entiat", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.67596000", + "longitude": "-120.20841000" + }, + { + "id": "116153", + "name": "Enumclaw", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.20427000", + "longitude": "-121.99150000" + }, + { + "id": "116156", + "name": "Ephrata", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.31764000", + "longitude": "-119.55365000" + }, + { + "id": "116171", + "name": "Erlands Point-Kitsap Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.59719000", + "longitude": "-122.70225000" + }, + { + "id": "116189", + "name": "Esperance", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.78899000", + "longitude": "-122.35541000" + }, + { + "id": "116260", + "name": "Everett", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.97898000", + "longitude": "-122.20208000" + }, + { + "id": "116267", + "name": "Everson", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.92012000", + "longitude": "-122.34266000" + }, + { + "id": "116297", + "name": "Fairchild Air Force Base", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.61879000", + "longitude": "-117.64826000" + }, + { + "id": "116363", + "name": "Fairwood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.44843000", + "longitude": "-122.15734000" + }, + { + "id": "116371", + "name": "Fall City", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.56732000", + "longitude": "-121.88873000" + }, + { + "id": "116465", + "name": "Federal Way", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.32232000", + "longitude": "-122.31262000" + }, + { + "id": "116467", + "name": "Felida", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.70956000", + "longitude": "-122.70732000" + }, + { + "id": "116484", + "name": "Fern Prairie", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.63651000", + "longitude": "-122.39870000" + }, + { + "id": "116490", + "name": "Ferndale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.84650000", + "longitude": "-122.59101000" + }, + { + "id": "116498", + "name": "Ferry County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.47007000", + "longitude": "-118.51649000" + }, + { + "id": "116504", + "name": "Fife", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.23927000", + "longitude": "-122.35707000" + }, + { + "id": "116505", + "name": "Fife Heights", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.25899000", + "longitude": "-122.34568000" + }, + { + "id": "116517", + "name": "Finley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.15402000", + "longitude": "-119.03390000" + }, + { + "id": "116519", + "name": "Fircrest", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.23954000", + "longitude": "-122.51596000" + }, + { + "id": "116538", + "name": "Five Corners", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.68456000", + "longitude": "-122.57510000" + }, + { + "id": "116617", + "name": "Fobes Hill", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.94899000", + "longitude": "-122.11985000" + }, + { + "id": "116641", + "name": "Fords Prairie", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.73510000", + "longitude": "-122.98902000" + }, + { + "id": "116675", + "name": "Forks", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.95036000", + "longitude": "-124.38549000" + }, + { + "id": "116802", + "name": "Fox Island", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.25149000", + "longitude": "-122.62902000" + }, + { + "id": "116865", + "name": "Franklin County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.53477000", + "longitude": "-118.89889000" + }, + { + "id": "116893", + "name": "Frederickson", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.09621000", + "longitude": "-122.35873000" + }, + { + "id": "116907", + "name": "Freeland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.00954000", + "longitude": "-122.52598000" + }, + { + "id": "116943", + "name": "Friday Harbor", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.53427000", + "longitude": "-123.01712000" + }, + { + "id": "117087", + "name": "Garfield County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.43156000", + "longitude": "-117.54519000" + }, + { + "id": "117099", + "name": "Garrett", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.05208000", + "longitude": "-118.40275000" + }, + { + "id": "117145", + "name": "Geneva", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.74567000", + "longitude": "-122.40183000" + }, + { + "id": "117199", + "name": "Gig Harbor", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.32926000", + "longitude": "-122.58013000" + }, + { + "id": "117258", + "name": "Gleed", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.65818000", + "longitude": "-120.61340000" + }, + { + "id": "117339", + "name": "Gold Bar", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.85677000", + "longitude": "-121.69706000" + }, + { + "id": "117360", + "name": "Goldendale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.82068000", + "longitude": "-120.82173000" + }, + { + "id": "117436", + "name": "Graham", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.05288000", + "longitude": "-122.29428000" + }, + { + "id": "117454", + "name": "Grand Coulee", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.94154000", + "longitude": "-119.00335000" + }, + { + "id": "117469", + "name": "Grand Mound", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.78788000", + "longitude": "-123.01125000" + }, + { + "id": "117481", + "name": "Grandview", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.25097000", + "longitude": "-119.90170000" + }, + { + "id": "117489", + "name": "Granger", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.34207000", + "longitude": "-120.18727000" + }, + { + "id": "117498", + "name": "Granite Falls", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.08399000", + "longitude": "-121.96874000" + }, + { + "id": "117521", + "name": "Grant County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.20566000", + "longitude": "-119.45177000" + }, + { + "id": "117558", + "name": "Grays Harbor County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.14445000", + "longitude": "-123.82847000" + }, + { + "id": "117980", + "name": "Hansville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.91870000", + "longitude": "-122.55431000" + }, + { + "id": "118203", + "name": "Hazel Dell", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.67151000", + "longitude": "-122.66288000" + }, + { + "id": "118399", + "name": "Highland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.13152000", + "longitude": "-119.11418000" + }, + { + "id": "118498", + "name": "Hobart", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.42177000", + "longitude": "-121.97289000" + }, + { + "id": "118504", + "name": "Hockinson", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.73789000", + "longitude": "-122.48704000" + }, + { + "id": "118585", + "name": "Home", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.27482000", + "longitude": "-122.76375000" + }, + { + "id": "118660", + "name": "Hoquiam", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.98092000", + "longitude": "-123.88933000" + }, + { + "id": "118927", + "name": "Indianola", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.74704000", + "longitude": "-122.52569000" + }, + { + "id": "118938", + "name": "Inglewood-Finn Hill", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.72049000", + "longitude": "-122.23167000" + }, + { + "id": "119024", + "name": "Island County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.20820000", + "longitude": "-122.66922000" + }, + { + "id": "119036", + "name": "Issaquah", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.53010000", + "longitude": "-122.03262000" + }, + { + "id": "119198", + "name": "Jefferson County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.77655000", + "longitude": "-123.57431000" + }, + { + "id": "119287", + "name": "Joint Base Lewis McChord", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.10787000", + "longitude": "-122.57694000" + }, + { + "id": "119359", + "name": "Kalama", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.00845000", + "longitude": "-122.84455000" + }, + { + "id": "119432", + "name": "Kelso", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.14678000", + "longitude": "-122.90844000" + }, + { + "id": "119463", + "name": "Kenmore", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.75732000", + "longitude": "-122.24401000" + }, + { + "id": "119475", + "name": "Kennewick", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.21125000", + "longitude": "-119.13723000" + }, + { + "id": "119487", + "name": "Kent", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.38093000", + "longitude": "-122.23484000" + }, + { + "id": "119527", + "name": "Kettle Falls", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.61074000", + "longitude": "-118.05582000" + }, + { + "id": "119538", + "name": "Key Center", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.34065000", + "longitude": "-122.74541000" + }, + { + "id": "119582", + "name": "King County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.49084000", + "longitude": "-121.83583000" + }, + { + "id": "119614", + "name": "Kingsgate", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.72704000", + "longitude": "-122.17957000" + }, + { + "id": "119630", + "name": "Kingston", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.79850000", + "longitude": "-122.49806000" + }, + { + "id": "119652", + "name": "Kirkland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.68149000", + "longitude": "-122.20874000" + }, + { + "id": "119660", + "name": "Kitsap County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.63983000", + "longitude": "-122.64900000" + }, + { + "id": "119664", + "name": "Kittitas", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.98318000", + "longitude": "-120.41701000" + }, + { + "id": "119665", + "name": "Kittitas County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.12417000", + "longitude": "-120.67972000" + }, + { + "id": "119669", + "name": "Klahanie", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.43121000", + "longitude": "-122.43652000" + }, + { + "id": "119673", + "name": "Klickitat County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.87378000", + "longitude": "-120.78926000" + }, + { + "id": "119738", + "name": "La Center", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.86234000", + "longitude": "-122.67038000" + }, + { + "id": "119812", + "name": "Lacey", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.03426000", + "longitude": "-122.82319000" + }, + { + "id": "119912", + "name": "Lake Forest Park", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.75676000", + "longitude": "-122.28096000" + }, + { + "id": "119938", + "name": "Lake Marcel-Stillwater", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.69263000", + "longitude": "-121.91513000" + }, + { + "id": "119948", + "name": "Lake Morton-Berrydale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.33251000", + "longitude": "-122.10286000" + }, + { + "id": "119978", + "name": "Lake Shore", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.69067000", + "longitude": "-122.69093000" + }, + { + "id": "119980", + "name": "Lake Stevens", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.01510000", + "longitude": "-122.06374000" + }, + { + "id": "119981", + "name": "Lake Stickney", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.87655000", + "longitude": "-122.26214000" + }, + { + "id": "120018", + "name": "Lakeland North", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.33343000", + "longitude": "-122.27695000" + }, + { + "id": "120019", + "name": "Lakeland South", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.27843000", + "longitude": "-122.28326000" + }, + { + "id": "120052", + "name": "Lakewood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.17176000", + "longitude": "-122.51846000" + }, + { + "id": "120114", + "name": "Langley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.04009000", + "longitude": "-122.40626000" + }, + { + "id": "120140", + "name": "Larch Way", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.84290000", + "longitude": "-122.25275000" + }, + { + "id": "120268", + "name": "Lea Hill", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.32621000", + "longitude": "-122.18151000" + }, + { + "id": "120281", + "name": "Leavenworth", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.59623000", + "longitude": "-120.66148000" + }, + { + "id": "120417", + "name": "Lewis County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.57773000", + "longitude": "-122.39241000" + }, + { + "id": "120437", + "name": "Lewisville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.80984000", + "longitude": "-122.52315000" + }, + { + "id": "120475", + "name": "Liberty Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.67591000", + "longitude": "-117.11821000" + }, + { + "id": "120537", + "name": "Lincoln County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.57619000", + "longitude": "-118.41879000" + }, + { + "id": "120673", + "name": "Lochsloy", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.05149000", + "longitude": "-122.03208000" + }, + { + "id": "120692", + "name": "Lofall", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.81204000", + "longitude": "-122.65821000" + }, + { + "id": "120739", + "name": "Long Beach", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.35232000", + "longitude": "-124.05432000" + }, + { + "id": "120752", + "name": "Longbranch", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.20898000", + "longitude": "-122.75680000" + }, + { + "id": "120758", + "name": "Longview", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.13817000", + "longitude": "-122.93817000" + }, + { + "id": "120759", + "name": "Longview Heights", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.18039000", + "longitude": "-122.95706000" + }, + { + "id": "120919", + "name": "Lynden", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.94650000", + "longitude": "-122.45211000" + }, + { + "id": "120931", + "name": "Lynnwood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.82093000", + "longitude": "-122.31513000" + }, + { + "id": "120951", + "name": "Mabton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.21485000", + "longitude": "-119.99671000" + }, + { + "id": "120957", + "name": "Machias", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.98149000", + "longitude": "-122.04596000" + }, + { + "id": "121069", + "name": "Maltby", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.80510000", + "longitude": "-122.11318000" + }, + { + "id": "121102", + "name": "Manchester", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.55566000", + "longitude": "-122.54507000" + }, + { + "id": "121151", + "name": "Manson", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.88486000", + "longitude": "-120.15841000" + }, + { + "id": "121168", + "name": "Maple Heights-Lake Desire", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.44413000", + "longitude": "-122.09736000" + }, + { + "id": "121173", + "name": "Maple Valley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.39272000", + "longitude": "-122.04641000" + }, + { + "id": "121180", + "name": "Maplewood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.40176000", + "longitude": "-122.55707000" + }, + { + "id": "121219", + "name": "Marietta", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.78705000", + "longitude": "-122.58045000" + }, + { + "id": "121220", + "name": "Marietta-Alderwood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.78965000", + "longitude": "-122.55369000" + }, + { + "id": "121333", + "name": "Martha Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.85093000", + "longitude": "-122.23930000" + }, + { + "id": "121361", + "name": "Marysville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.05176000", + "longitude": "-122.17708000" + }, + { + "id": "121382", + "name": "Mason County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.35048000", + "longitude": "-123.18309000" + }, + { + "id": "121409", + "name": "Mattawa", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.73791000", + "longitude": "-119.90282000" + }, + { + "id": "121468", + "name": "McChord Air Force Base", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.13397000", + "longitude": "-122.49157000" + }, + { + "id": "121470", + "name": "McCleary", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.05315000", + "longitude": "-123.26543000" + }, + { + "id": "121538", + "name": "McMillin", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.13982000", + "longitude": "-122.23651000" + }, + { + "id": "121553", + "name": "Mead", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.76739000", + "longitude": "-117.35494000" + }, + { + "id": "121559", + "name": "Meadow Glade", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.75845000", + "longitude": "-122.56038000" + }, + { + "id": "121568", + "name": "Meadowdale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.85287000", + "longitude": "-122.33347000" + }, + { + "id": "121600", + "name": "Medical Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.57294000", + "longitude": "-117.68216000" + }, + { + "id": "121606", + "name": "Medina", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.62093000", + "longitude": "-122.22762000" + }, + { + "id": "121682", + "name": "Mercer Island", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.57065000", + "longitude": "-122.22207000" + }, + { + "id": "121801", + "name": "Midland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.16704000", + "longitude": "-122.40484000" + }, + { + "id": "121863", + "name": "Mill Creek", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.86010000", + "longitude": "-122.20430000" + }, + { + "id": "121864", + "name": "Mill Creek East", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.83602000", + "longitude": "-122.18766000" + }, + { + "id": "121867", + "name": "Mill Plain", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.64290000", + "longitude": "-122.49398000" + }, + { + "id": "121907", + "name": "Millwood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.68128000", + "longitude": "-117.28271000" + }, + { + "id": "121921", + "name": "Milton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.24816000", + "longitude": "-122.31290000" + }, + { + "id": "121952", + "name": "Minnehaha", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.65901000", + "longitude": "-122.64871000" + }, + { + "id": "121975", + "name": "Mirrormont", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.46232000", + "longitude": "-121.99567000" + }, + { + "id": "122065", + "name": "Monroe", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.85538000", + "longitude": "-121.97096000" + }, + { + "id": "122083", + "name": "Monroe North", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.88225000", + "longitude": "-121.98729000" + }, + { + "id": "122124", + "name": "Montesano", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.98121000", + "longitude": "-123.60266000" + }, + { + "id": "122295", + "name": "Morton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.55844000", + "longitude": "-122.27510000" + }, + { + "id": "122302", + "name": "Moses Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.13014000", + "longitude": "-119.27808000" + }, + { + "id": "122303", + "name": "Moses Lake North", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.19433000", + "longitude": "-119.31719000" + }, + { + "id": "122403", + "name": "Mount Vernon", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.42122000", + "longitude": "-122.33405000" + }, + { + "id": "122405", + "name": "Mount Vista", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.73428000", + "longitude": "-122.63288000" + }, + { + "id": "122439", + "name": "Mountlake Terrace", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.78815000", + "longitude": "-122.30874000" + }, + { + "id": "122450", + "name": "Mukilteo", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.94454000", + "longitude": "-122.30458000" + }, + { + "id": "122549", + "name": "Napavine", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.57455000", + "longitude": "-122.90818000" + }, + { + "id": "122605", + "name": "Navy Yard City", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.55343000", + "longitude": "-122.66458000" + }, + { + "id": "122823", + "name": "Newcastle", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.53899000", + "longitude": "-122.15568000" + }, + { + "id": "122852", + "name": "Newport", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.17963000", + "longitude": "-117.04326000" + }, + { + "id": "122936", + "name": "Nooksack", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.92762000", + "longitude": "-122.32155000" + }, + { + "id": "122952", + "name": "Normandy Park", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.43621000", + "longitude": "-122.34068000" + }, + { + "id": "122985", + "name": "North Bend", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.49566000", + "longitude": "-121.78678000" + }, + { + "id": "123011", + "name": "North Creek", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.81954000", + "longitude": "-122.17624000" + }, + { + "id": "123028", + "name": "North Fort Lewis", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.12131000", + "longitude": "-122.59452000" + }, + { + "id": "123090", + "name": "North Puyallup", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.20677000", + "longitude": "-122.28234000" + }, + { + "id": "123132", + "name": "North Yelm", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.96315000", + "longitude": "-122.60290000" + }, + { + "id": "123242", + "name": "Oak Harbor", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.29316000", + "longitude": "-122.64322000" + }, + { + "id": "123332", + "name": "Ocean Park", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.49177000", + "longitude": "-124.05208000" + }, + { + "id": "123336", + "name": "Ocean Shores", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.97370000", + "longitude": "-124.15629000" + }, + { + "id": "123393", + "name": "Okanogan", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.36126000", + "longitude": "-119.58339000" + }, + { + "id": "123394", + "name": "Okanogan County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.54885000", + "longitude": "-119.74079000" + }, + { + "id": "123459", + "name": "Olympia", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.03787000", + "longitude": "-122.90070000" + }, + { + "id": "123464", + "name": "Omak", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.41099000", + "longitude": "-119.52755000" + }, + { + "id": "123499", + "name": "Opportunity", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.64995000", + "longitude": "-117.23991000" + }, + { + "id": "123539", + "name": "Orchards", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.66651000", + "longitude": "-122.56093000" + }, + { + "id": "123579", + "name": "Oroville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.93905000", + "longitude": "-119.43562000" + }, + { + "id": "123582", + "name": "Orting", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.09788000", + "longitude": "-122.20428000" + }, + { + "id": "123627", + "name": "Othello", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.82597000", + "longitude": "-119.17529000" + }, + { + "id": "123629", + "name": "Otis Orchards-East Farms", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.70988000", + "longitude": "-117.07975000" + }, + { + "id": "123707", + "name": "Pacific", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.26455000", + "longitude": "-122.25012000" + }, + { + "id": "123709", + "name": "Pacific County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.55128000", + "longitude": "-123.77886000" + }, + { + "id": "123792", + "name": "Palouse", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.91017000", + "longitude": "-117.07573000" + }, + { + "id": "123872", + "name": "Parkland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.15538000", + "longitude": "-122.43401000" + }, + { + "id": "123883", + "name": "Parkwood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.53315000", + "longitude": "-122.61014000" + }, + { + "id": "123901", + "name": "Pasco", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.23958000", + "longitude": "-119.10057000" + }, + { + "id": "123955", + "name": "Peaceful Valley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.93815000", + "longitude": "-122.14733000" + }, + { + "id": "124013", + "name": "Pend Oreille County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.53230000", + "longitude": "-117.27397000" + }, + { + "id": "124160", + "name": "Picnic Point", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.88111000", + "longitude": "-122.32840000" + }, + { + "id": "124161", + "name": "Picnic Point-North Lynnwood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.86278000", + "longitude": "-122.29497000" + }, + { + "id": "124175", + "name": "Pierce County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.03764000", + "longitude": "-122.13735000" + }, + { + "id": "124433", + "name": "Point Roberts", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.98538000", + "longitude": "-123.07797000" + }, + { + "id": "124456", + "name": "Pomeroy", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.47487000", + "longitude": "-117.60269000" + }, + { + "id": "124493", + "name": "Port Angeles", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.11815000", + "longitude": "-123.43074000" + }, + { + "id": "124494", + "name": "Port Angeles East", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.10667000", + "longitude": "-123.37172000" + }, + { + "id": "124508", + "name": "Port Hadlock-Irondale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.03273000", + "longitude": "-122.78529000" + }, + { + "id": "124518", + "name": "Port Ludlow", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.92537000", + "longitude": "-122.68349000" + }, + { + "id": "124525", + "name": "Port Orchard", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.54037000", + "longitude": "-122.63625000" + }, + { + "id": "124537", + "name": "Port Townsend", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.11704000", + "longitude": "-122.76045000" + }, + { + "id": "124603", + "name": "Poulsbo", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.73593000", + "longitude": "-122.64654000" + }, + { + "id": "124629", + "name": "Prairie Heights", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.14933000", + "longitude": "-122.10530000" + }, + { + "id": "124630", + "name": "Prairie Ridge", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.13760000", + "longitude": "-122.14873000" + }, + { + "id": "124714", + "name": "Prosser", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.20680000", + "longitude": "-119.76892000" + }, + { + "id": "124744", + "name": "Pullman", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.73127000", + "longitude": "-117.17962000" + }, + { + "id": "124757", + "name": "Purdy", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.38899000", + "longitude": "-122.62541000" + }, + { + "id": "124771", + "name": "Puyallup", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.18538000", + "longitude": "-122.29290000" + }, + { + "id": "124800", + "name": "Quincy", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.23430000", + "longitude": "-119.85255000" + }, + { + "id": "124827", + "name": "Rainier", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.88815000", + "longitude": "-122.68846000" + }, + { + "id": "124909", + "name": "Ravensdale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.35232000", + "longitude": "-121.98373000" + }, + { + "id": "124920", + "name": "Raymond", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.68649000", + "longitude": "-123.73294000" + }, + { + "id": "124979", + "name": "Redmond", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.67399000", + "longitude": "-122.12151000" + }, + { + "id": "125026", + "name": "Renton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.48288000", + "longitude": "-122.21707000" + }, + { + "id": "125032", + "name": "Republic", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.64822000", + "longitude": "-118.73781000" + }, + { + "id": "125072", + "name": "Richland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.28569000", + "longitude": "-119.28446000" + }, + { + "id": "125121", + "name": "Ridgefield", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.81511000", + "longitude": "-122.74260000" + }, + { + "id": "125174", + "name": "Ritzville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.12755000", + "longitude": "-118.37999000" + }, + { + "id": "125191", + "name": "Riverbend", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.46649000", + "longitude": "-121.75039000" + }, + { + "id": "125213", + "name": "Riverton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.48427000", + "longitude": "-122.29457000" + }, + { + "id": "125270", + "name": "Rochester", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.82177000", + "longitude": "-123.09625000" + }, + { + "id": "125339", + "name": "Rocky Point", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.59287000", + "longitude": "-122.66848000" + }, + { + "id": "125420", + "name": "Rosedale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.33149000", + "longitude": "-122.65235000" + }, + { + "id": "125488", + "name": "Royal City", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.90097000", + "longitude": "-119.63059000" + }, + { + "id": "125765", + "name": "Salmon Creek", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.71067000", + "longitude": "-122.64899000" + }, + { + "id": "125778", + "name": "Sammamish", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.64177000", + "longitude": "-122.08040000" + }, + { + "id": "125823", + "name": "San Juan County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.53116000", + "longitude": "-123.02490000" + }, + { + "id": "126077", + "name": "Seabeck", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.63954000", + "longitude": "-122.82849000" + }, + { + "id": "126076", + "name": "SeaTac", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.44846000", + "longitude": "-122.29217000" + }, + { + "id": "126104", + "name": "Seattle", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.60621000", + "longitude": "-122.33207000" + }, + { + "id": "126122", + "name": "Sedro-Woolley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.50389000", + "longitude": "-122.23611000" + }, + { + "id": "126129", + "name": "Selah", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.65402000", + "longitude": "-120.53007000" + }, + { + "id": "126164", + "name": "Sequim", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.07963000", + "longitude": "-123.10234000" + }, + { + "id": "126299", + "name": "Shelton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.21509000", + "longitude": "-123.10071000" + }, + { + "id": "126368", + "name": "Shoreline", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.75565000", + "longitude": "-122.34152000" + }, + { + "id": "126424", + "name": "Silver Firs", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.86602000", + "longitude": "-122.15510000" + }, + { + "id": "126439", + "name": "Silverdale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.64454000", + "longitude": "-122.69487000" + }, + { + "id": "126464", + "name": "Sisco Heights", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.11538000", + "longitude": "-122.09708000" + }, + { + "id": "126474", + "name": "Skagit County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.48215000", + "longitude": "-121.80227000" + }, + { + "id": "126476", + "name": "Skamania County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.02276000", + "longitude": "-121.91510000" + }, + { + "id": "126533", + "name": "Smokey Point", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.15232000", + "longitude": "-122.18264000" + }, + { + "id": "126542", + "name": "Snohomish", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.91288000", + "longitude": "-122.09818000" + }, + { + "id": "126543", + "name": "Snohomish County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.04602000", + "longitude": "-121.72218000" + }, + { + "id": "126544", + "name": "Snoqualmie", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.52871000", + "longitude": "-121.82539000" + }, + { + "id": "126553", + "name": "Soap Lake", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.38931000", + "longitude": "-119.49059000" + }, + { + "id": "126625", + "name": "South Bend", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.66315000", + "longitude": "-123.80461000" + }, + { + "id": "126673", + "name": "South Hill", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.14121000", + "longitude": "-122.27012000" + }, + { + "id": "126746", + "name": "South Wenatchee", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.39012000", + "longitude": "-120.28958000" + }, + { + "id": "126793", + "name": "Southworth", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.51204000", + "longitude": "-122.50180000" + }, + { + "id": "126796", + "name": "Spanaway", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.10399000", + "longitude": "-122.43457000" + }, + { + "id": "126842", + "name": "Spokane", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.65966000", + "longitude": "-117.42908000" + }, + { + "id": "126843", + "name": "Spokane County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.62064000", + "longitude": "-117.40401000" + }, + { + "id": "126844", + "name": "Spokane Valley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.67323000", + "longitude": "-117.23937000" + }, + { + "id": "126974", + "name": "Stanwood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.24121000", + "longitude": "-122.37071000" + }, + { + "id": "127017", + "name": "Steilacoom", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.16982000", + "longitude": "-122.60263000" + }, + { + "id": "127042", + "name": "Stevens County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.39906000", + "longitude": "-117.85514000" + }, + { + "id": "127045", + "name": "Stevenson", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.69567000", + "longitude": "-121.88452000" + }, + { + "id": "127162", + "name": "Sudden Valley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.72289000", + "longitude": "-122.34655000" + }, + { + "id": "127198", + "name": "Sultan", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.86260000", + "longitude": "-121.81651000" + }, + { + "id": "127199", + "name": "Sumas", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "49.00012000", + "longitude": "-122.26488000" + }, + { + "id": "127215", + "name": "Summit", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.16177000", + "longitude": "-122.35707000" + }, + { + "id": "127220", + "name": "Summit View", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.13632000", + "longitude": "-122.35202000" + }, + { + "id": "127223", + "name": "Sumner", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.20316000", + "longitude": "-122.24040000" + }, + { + "id": "127260", + "name": "Sunnyside", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.32374000", + "longitude": "-120.00865000" + }, + { + "id": "127263", + "name": "Sunnyslope", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.47290000", + "longitude": "-120.33674000" + }, + { + "id": "127284", + "name": "Suquamish", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.73121000", + "longitude": "-122.55236000" + }, + { + "id": "127369", + "name": "Tacoma", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.25288000", + "longitude": "-122.44429000" + }, + { + "id": "127416", + "name": "Tanglewilde", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.05150000", + "longitude": "-122.78241000" + }, + { + "id": "127417", + "name": "Tanglewilde-Thompson Place", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.05116000", + "longitude": "-122.78081000" + }, + { + "id": "127418", + "name": "Tanner", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.47538000", + "longitude": "-121.74622000" + }, + { + "id": "127509", + "name": "Tenino", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.85677000", + "longitude": "-122.85291000" + }, + { + "id": "127518", + "name": "Terrace Heights", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.60624000", + "longitude": "-120.43979000" + }, + { + "id": "127613", + "name": "Three Lakes", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.94482000", + "longitude": "-122.01152000" + }, + { + "id": "127631", + "name": "Thurston County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.92950000", + "longitude": "-122.83208000" + }, + { + "id": "127639", + "name": "Tieton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.70207000", + "longitude": "-120.75535000" + }, + { + "id": "127717", + "name": "Tonasket", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.70515000", + "longitude": "-119.43950000" + }, + { + "id": "127734", + "name": "Toppenish", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.37735000", + "longitude": "-120.30867000" + }, + { + "id": "127760", + "name": "Town and Country", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.72739000", + "longitude": "-117.42161000" + }, + { + "id": "127773", + "name": "Tracyton", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.60898000", + "longitude": "-122.65514000" + }, + { + "id": "127811", + "name": "Trentwood", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.69656000", + "longitude": "-117.21076000" + }, + { + "id": "127879", + "name": "Tukwila", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.47399000", + "longitude": "-122.26096000" + }, + { + "id": "127880", + "name": "Tulalip", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.06843000", + "longitude": "-122.29181000" + }, + { + "id": "127881", + "name": "Tulalip Bay", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.03732000", + "longitude": "-122.31014000" + }, + { + "id": "127890", + "name": "Tumwater", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.00732000", + "longitude": "-122.90931000" + }, + { + "id": "128004", + "name": "Union Gap", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.55735000", + "longitude": "-120.47506000" + }, + { + "id": "128007", + "name": "Union Hill-Novelty Hill", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.67887000", + "longitude": "-122.02833000" + }, + { + "id": "128036", + "name": "University Place", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.23565000", + "longitude": "-122.55040000" + }, + { + "id": "128144", + "name": "Vancouver", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.63873000", + "longitude": "-122.66149000" + }, + { + "id": "128157", + "name": "Vashon", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.44732000", + "longitude": "-122.45985000" + }, + { + "id": "128167", + "name": "Venersborg", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.77373000", + "longitude": "-122.42454000" + }, + { + "id": "128178", + "name": "Veradale", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.64995000", + "longitude": "-117.20738000" + }, + { + "id": "128332", + "name": "Wahkiakum County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.29125000", + "longitude": "-123.43316000" + }, + { + "id": "128354", + "name": "Waitsburg", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.27042000", + "longitude": "-118.15329000" + }, + { + "id": "128393", + "name": "Walla Walla", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.06458000", + "longitude": "-118.34302000" + }, + { + "id": "128394", + "name": "Walla Walla County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.22980000", + "longitude": "-118.47845000" + }, + { + "id": "128395", + "name": "Walla Walla East", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.05184000", + "longitude": "-118.30403000" + }, + { + "id": "128404", + "name": "Waller", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.20066000", + "longitude": "-122.36929000" + }, + { + "id": "128420", + "name": "Walnut Grove", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.66789000", + "longitude": "-122.59899000" + }, + { + "id": "128453", + "name": "Wapato", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.44763000", + "longitude": "-120.42034000" + }, + { + "id": "128460", + "name": "Warden", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.96764000", + "longitude": "-119.03973000" + }, + { + "id": "128467", + "name": "Warm Beach", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.17065000", + "longitude": "-122.36460000" + }, + { + "id": "128591", + "name": "Washougal", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.58262000", + "longitude": "-122.35342000" + }, + { + "id": "128629", + "name": "Waterville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.64708000", + "longitude": "-120.07118000" + }, + { + "id": "128653", + "name": "Wauna", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.37899000", + "longitude": "-122.64263000" + }, + { + "id": "128797", + "name": "Wenatchee", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.42346000", + "longitude": "-120.31035000" + }, + { + "id": "128847", + "name": "West Clarkston-Highland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.40287000", + "longitude": "-117.06395000" + }, + { + "id": "128910", + "name": "West Lake Sammamish", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.57760000", + "longitude": "-122.10123000" + }, + { + "id": "128911", + "name": "West Lake Stevens", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.99343000", + "longitude": "-122.10180000" + }, + { + "id": "128923", + "name": "West Longview", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.16789000", + "longitude": "-122.99900000" + }, + { + "id": "128951", + "name": "West Pasco", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.24541000", + "longitude": "-119.18279000" + }, + { + "id": "128968", + "name": "West Richland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.30430000", + "longitude": "-119.36141000" + }, + { + "id": "128981", + "name": "West Side Highway", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.18399000", + "longitude": "-122.91715000" + }, + { + "id": "128996", + "name": "West Valley", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.59207000", + "longitude": "-120.60507000" + }, + { + "id": "129003", + "name": "West Wenatchee", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.44374000", + "longitude": "-120.35341000" + }, + { + "id": "129073", + "name": "Westport", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.89009000", + "longitude": "-124.10406000" + }, + { + "id": "129105", + "name": "Whatcom County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "48.82975000", + "longitude": "-121.87283000" + }, + { + "id": "129129", + "name": "White Center", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.51732000", + "longitude": "-122.35485000" + }, + { + "id": "129159", + "name": "White Salmon", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.72762000", + "longitude": "-121.48646000" + }, + { + "id": "129204", + "name": "Whitman County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.90117000", + "longitude": "-117.52299000" + }, + { + "id": "129234", + "name": "Wilderness Rim", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.44697000", + "longitude": "-121.76857000" + }, + { + "id": "129403", + "name": "Winlock", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.49122000", + "longitude": "-122.93790000" + }, + { + "id": "129480", + "name": "Wollochet", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.26871000", + "longitude": "-122.58402000" + }, + { + "id": "129523", + "name": "Woodinville", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.75427000", + "longitude": "-122.16346000" + }, + { + "id": "129527", + "name": "Woodland", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.90456000", + "longitude": "-122.74399000" + }, + { + "id": "129550", + "name": "Woods Creek", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.87871000", + "longitude": "-121.89846000" + }, + { + "id": "129579", + "name": "Woodway", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.79621000", + "longitude": "-122.38291000" + }, + { + "id": "129647", + "name": "Yacolt", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "45.86595000", + "longitude": "-122.40621000" + }, + { + "id": "129650", + "name": "Yakima", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.60207000", + "longitude": "-120.50590000" + }, + { + "id": "129651", + "name": "Yakima County", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.45685000", + "longitude": "-120.73870000" + }, + { + "id": "129669", + "name": "Yarrow Point", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "47.64621000", + "longitude": "-122.21735000" + }, + { + "id": "129681", + "name": "Yelm", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.94204000", + "longitude": "-122.60596000" + }, + { + "id": "129754", + "name": "Zillah", + "state_id": 1462, + "state_code": "WA", + "country_id": 233, + "country_code": "US", + "latitude": "46.40207000", + "longitude": "-120.26200000" + }, + { + "id": "111137", + "name": "Alderson", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.72595000", + "longitude": "-80.64202000" + }, + { + "id": "111253", + "name": "Alum Creek", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.28676000", + "longitude": "-81.80513000" + }, + { + "id": "111363", + "name": "Ansted", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.13622000", + "longitude": "-81.09955000" + }, + { + "id": "111814", + "name": "Barbour County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.13293000", + "longitude": "-80.00303000" + }, + { + "id": "111817", + "name": "Barboursville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.40953000", + "longitude": "-82.29459000" + }, + { + "id": "111840", + "name": "Barrackville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.50370000", + "longitude": "-80.16675000" + }, + { + "id": "111992", + "name": "Beaver", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.74781000", + "longitude": "-81.14352000" + }, + { + "id": "112017", + "name": "Beckley", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.77817000", + "longitude": "-81.18816000" + }, + { + "id": "112064", + "name": "Belington", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.02510000", + "longitude": "-79.93563000" + }, + { + "id": "112079", + "name": "Belle", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.23205000", + "longitude": "-81.53762000" + }, + { + "id": "112211", + "name": "Benwood", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.01813000", + "longitude": "-80.73425000" + }, + { + "id": "112225", + "name": "Berkeley County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.46407000", + "longitude": "-78.02754000" + }, + { + "id": "112228", + "name": "Berkeley Springs", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.62480000", + "longitude": "-78.22472000" + }, + { + "id": "112275", + "name": "Bethany", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.20563000", + "longitude": "-80.55674000" + }, + { + "id": "112290", + "name": "Bethlehem", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.39203000", + "longitude": "-80.28064000" + }, + { + "id": "112429", + "name": "Blennerhassett", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.26369000", + "longitude": "-81.62929000" + }, + { + "id": "112479", + "name": "Bluefield", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.26984000", + "longitude": "-81.22232000" + }, + { + "id": "112480", + "name": "Bluewell", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.31262000", + "longitude": "-81.25982000" + }, + { + "id": "112491", + "name": "Boaz", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.36146000", + "longitude": "-81.50207000" + }, + { + "id": "112519", + "name": "Bolivar", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.32343000", + "longitude": "-77.75277000" + }, + { + "id": "112557", + "name": "Boone County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.02300000", + "longitude": "-81.71121000" + }, + { + "id": "112671", + "name": "Bradley", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.86539000", + "longitude": "-81.19399000" + }, + { + "id": "112701", + "name": "Braxton County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.69987000", + "longitude": "-80.71929000" + }, + { + "id": "112760", + "name": "Bridgeport", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.28648000", + "longitude": "-80.25620000" + }, + { + "id": "112852", + "name": "Brooke County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.27381000", + "longitude": "-80.57642000" + }, + { + "id": "112859", + "name": "Brookhaven", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.61175000", + "longitude": "-79.90451000" + }, + { + "id": "112954", + "name": "Brush Fork", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.28095000", + "longitude": "-81.25593000" + }, + { + "id": "112981", + "name": "Buckhannon", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.99399000", + "longitude": "-80.23203000" + }, + { + "id": "113011", + "name": "Buffalo", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.61759000", + "longitude": "-81.98180000" + }, + { + "id": "113151", + "name": "Cabell County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.42030000", + "longitude": "-82.24172000" + }, + { + "id": "113208", + "name": "Calhoun County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.84450000", + "longitude": "-81.11757000" + }, + { + "id": "113699", + "name": "Ceredo", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.39647000", + "longitude": "-82.55877000" + }, + { + "id": "113745", + "name": "Chapmanville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.97371000", + "longitude": "-82.01735000" + }, + { + "id": "113759", + "name": "Charles Town", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.28899000", + "longitude": "-77.85972000" + }, + { + "id": "113766", + "name": "Charleston", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.34982000", + "longitude": "-81.63262000" + }, + { + "id": "113818", + "name": "Cheat Lake", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.67202000", + "longitude": "-79.85339000" + }, + { + "id": "113873", + "name": "Chesapeake", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.22344000", + "longitude": "-81.53623000" + }, + { + "id": "113890", + "name": "Chester", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.61312000", + "longitude": "-80.56285000" + }, + { + "id": "114144", + "name": "Clarksburg", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.28065000", + "longitude": "-80.34453000" + }, + { + "id": "114167", + "name": "Clay", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.46038000", + "longitude": "-81.08511000" + }, + { + "id": "114186", + "name": "Clay County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.46253000", + "longitude": "-81.07509000" + }, + { + "id": "114235", + "name": "Clendenin", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.48871000", + "longitude": "-81.34817000" + }, + { + "id": "114326", + "name": "Coal City", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.67900000", + "longitude": "-81.21038000" + }, + { + "id": "114330", + "name": "Coal Fork", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.31760000", + "longitude": "-81.52095000" + }, + { + "id": "114753", + "name": "Crab Orchard", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.74067000", + "longitude": "-81.23066000" + }, + { + "id": "114760", + "name": "Craigsville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.33067000", + "longitude": "-80.65315000" + }, + { + "id": "114850", + "name": "Cross Lanes", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.42037000", + "longitude": "-81.79068000" + }, + { + "id": "114897", + "name": "Culloden", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.42009000", + "longitude": "-82.05542000" + }, + { + "id": "115023", + "name": "Daniels", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.74327000", + "longitude": "-81.12408000" + }, + { + "id": "115288", + "name": "Despard", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.28870000", + "longitude": "-80.30592000" + }, + { + "id": "115374", + "name": "Doddridge County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.26917000", + "longitude": "-80.70697000" + }, + { + "id": "115520", + "name": "Dunbar", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.36065000", + "longitude": "-81.73735000" + }, + { + "id": "115958", + "name": "Eleanor", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.53759000", + "longitude": "-81.93236000" + }, + { + "id": "115971", + "name": "Elizabeth", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.06341000", + "longitude": "-81.39512000" + }, + { + "id": "116006", + "name": "Elkins", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.92594000", + "longitude": "-79.84673000" + }, + { + "id": "116015", + "name": "Elkview", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.44288000", + "longitude": "-81.48040000" + }, + { + "id": "116331", + "name": "Fairlea", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.78068000", + "longitude": "-80.45702000" + }, + { + "id": "116335", + "name": "Fairmont", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.48508000", + "longitude": "-80.14258000" + }, + { + "id": "116450", + "name": "Fayette County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.02878000", + "longitude": "-81.08119000" + }, + { + "id": "116459", + "name": "Fayetteville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.05289000", + "longitude": "-81.10399000" + }, + { + "id": "116622", + "name": "Follansbee", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.32757000", + "longitude": "-80.59591000" + }, + { + "id": "116688", + "name": "Fort Ashby", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.50315000", + "longitude": "-78.76863000" + }, + { + "id": "116832", + "name": "Franklin", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.64289000", + "longitude": "-79.33115000" + }, + { + "id": "117205", + "name": "Gilbert Creek", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.57594000", + "longitude": "-81.89484000" + }, + { + "id": "117223", + "name": "Gilmer County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.92406000", + "longitude": "-80.85708000" + }, + { + "id": "117282", + "name": "Glendale", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.94924000", + "longitude": "-80.75425000" + }, + { + "id": "117310", + "name": "Glenville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.93426000", + "longitude": "-80.83760000" + }, + { + "id": "117428", + "name": "Grafton", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.34092000", + "longitude": "-80.01897000" + }, + { + "id": "117511", + "name": "Grant County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.10513000", + "longitude": "-79.19557000" + }, + { + "id": "117530", + "name": "Grantsville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.92342000", + "longitude": "-81.09595000" + }, + { + "id": "117533", + "name": "Granville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.64591000", + "longitude": "-79.98729000" + }, + { + "id": "117621", + "name": "Greenbrier County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.94693000", + "longitude": "-80.45295000" + }, + { + "id": "117908", + "name": "Hamlin", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.27870000", + "longitude": "-82.10292000" + }, + { + "id": "117921", + "name": "Hampshire County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.31707000", + "longitude": "-78.61417000" + }, + { + "id": "117958", + "name": "Hancock County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.52185000", + "longitude": "-80.57389000" + }, + { + "id": "118011", + "name": "Hardy County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.00750000", + "longitude": "-78.85792000" + }, + { + "id": "118066", + "name": "Harrison County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.28353000", + "longitude": "-80.37987000" + }, + { + "id": "118073", + "name": "Harrisville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.20952000", + "longitude": "-81.05178000" + }, + { + "id": "118489", + "name": "Hinton", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.67401000", + "longitude": "-80.88925000" + }, + { + "id": "118639", + "name": "Hooverson Heights", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.32479000", + "longitude": "-80.57757000" + }, + { + "id": "118800", + "name": "Huntington", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.41925000", + "longitude": "-82.44515000" + }, + { + "id": "118827", + "name": "Hurricane", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.43259000", + "longitude": "-82.02014000" + }, + { + "id": "118962", + "name": "Inwood", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.35788000", + "longitude": "-78.04000000" + }, + { + "id": "119089", + "name": "Jackson County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.83447000", + "longitude": "-81.67479000" + }, + { + "id": "119188", + "name": "Jefferson County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.30762000", + "longitude": "-77.86274000" + }, + { + "id": "119374", + "name": "Kanawha County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.33657000", + "longitude": "-81.52812000" + }, + { + "id": "119478", + "name": "Kenova", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.39897000", + "longitude": "-82.57821000" + }, + { + "id": "119545", + "name": "Keyser", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.44093000", + "longitude": "-78.97392000" + }, + { + "id": "119637", + "name": "Kingwood", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.47176000", + "longitude": "-79.68339000" + }, + { + "id": "120215", + "name": "Lavalette", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.32286000", + "longitude": "-82.44682000" + }, + { + "id": "120395", + "name": "Lesage", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.50647000", + "longitude": "-82.29848000" + }, + { + "id": "120413", + "name": "Lewis County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.99587000", + "longitude": "-80.50216000" + }, + { + "id": "120420", + "name": "Lewisburg", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.80179000", + "longitude": "-80.44563000" + }, + { + "id": "120525", + "name": "Lincoln County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.17536000", + "longitude": "-82.07039000" + }, + { + "id": "120693", + "name": "Logan", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.84871000", + "longitude": "-81.99346000" + }, + { + "id": "120699", + "name": "Logan County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.83153000", + "longitude": "-81.93534000" + }, + { + "id": "120858", + "name": "Lubeck", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.23535000", + "longitude": "-81.63124000" + }, + { + "id": "120950", + "name": "Mabscott", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.77095000", + "longitude": "-81.20843000" + }, + { + "id": "120952", + "name": "MacArthur", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.75845000", + "longitude": "-81.21260000" + }, + { + "id": "120993", + "name": "Madison", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.06705000", + "longitude": "-81.81929000" + }, + { + "id": "121063", + "name": "Mallory", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.73066000", + "longitude": "-81.83790000" + }, + { + "id": "121137", + "name": "Mannington", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.53092000", + "longitude": "-80.34342000" + }, + { + "id": "121260", + "name": "Marion County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.51000000", + "longitude": "-80.24340000" + }, + { + "id": "121284", + "name": "Marlinton", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.22345000", + "longitude": "-80.09451000" + }, + { + "id": "121290", + "name": "Marmet", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.24538000", + "longitude": "-81.56706000" + }, + { + "id": "121316", + "name": "Marshall County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.86061000", + "longitude": "-80.66339000" + }, + { + "id": "121346", + "name": "Martinsburg", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.45621000", + "longitude": "-77.96389000" + }, + { + "id": "121379", + "name": "Mason County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.76974000", + "longitude": "-82.02654000" + }, + { + "id": "121496", + "name": "McDowell County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.37850000", + "longitude": "-81.65358000" + }, + { + "id": "121537", + "name": "McMechen", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.98813000", + "longitude": "-80.73147000" + }, + { + "id": "121676", + "name": "Mercer County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.40552000", + "longitude": "-81.11144000" + }, + { + "id": "121767", + "name": "Middlebourne", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.49230000", + "longitude": "-80.90372000" + }, + { + "id": "121914", + "name": "Milton", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.43453000", + "longitude": "-82.13236000" + }, + { + "id": "121934", + "name": "Mineral County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.41472000", + "longitude": "-78.94375000" + }, + { + "id": "121942", + "name": "Mineral Wells", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.19035000", + "longitude": "-81.53207000" + }, + { + "id": "121946", + "name": "Mingo County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.72640000", + "longitude": "-82.13476000" + }, + { + "id": "122054", + "name": "Monongah", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.46258000", + "longitude": "-80.21814000" + }, + { + "id": "122056", + "name": "Monongalia County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.63028000", + "longitude": "-80.04654000" + }, + { + "id": "122077", + "name": "Monroe County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.56037000", + "longitude": "-80.55055000" + }, + { + "id": "122132", + "name": "Montgomery", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.18038000", + "longitude": "-81.32845000" + }, + { + "id": "122205", + "name": "Moorefield", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.06233000", + "longitude": "-78.96947000" + }, + { + "id": "122243", + "name": "Morgan County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.56043000", + "longitude": "-78.25773000" + }, + { + "id": "122253", + "name": "Morgantown", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.62953000", + "longitude": "-79.95590000" + }, + { + "id": "122327", + "name": "Moundsville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.92035000", + "longitude": "-80.74314000" + }, + { + "id": "122343", + "name": "Mount Gay-Shamrock", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.83857000", + "longitude": "-82.02970000" + }, + { + "id": "122353", + "name": "Mount Hope", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.89539000", + "longitude": "-81.16427000" + }, + { + "id": "122460", + "name": "Mullens", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.58317000", + "longitude": "-81.38038000" + }, + { + "id": "122698", + "name": "New Cumberland", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.49673000", + "longitude": "-80.60674000" + }, + { + "id": "122715", + "name": "New Haven", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.98647000", + "longitude": "-81.97347000" + }, + { + "id": "122753", + "name": "New Martinsville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.64452000", + "longitude": "-80.85760000" + }, + { + "id": "122824", + "name": "Newell", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.61840000", + "longitude": "-80.60424000" + }, + { + "id": "122888", + "name": "Nicholas County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.29170000", + "longitude": "-80.79933000" + }, + { + "id": "122909", + "name": "Nitro", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.41481000", + "longitude": "-81.84402000" + }, + { + "id": "123220", + "name": "Nutter Fort", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.26342000", + "longitude": "-80.31981000" + }, + { + "id": "123245", + "name": "Oak Hill", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.97233000", + "longitude": "-81.14871000" + }, + { + "id": "123339", + "name": "Oceana", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.69206000", + "longitude": "-81.62400000" + }, + { + "id": "123384", + "name": "Ohio County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.09692000", + "longitude": "-80.61906000" + }, + { + "id": "123714", + "name": "Paden City", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.60285000", + "longitude": "-80.93677000" + }, + { + "id": "123868", + "name": "Parkersburg", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.26674000", + "longitude": "-81.56151000" + }, + { + "id": "123893", + "name": "Parsons", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.09649000", + "longitude": "-79.68090000" + }, + { + "id": "123952", + "name": "Pea Ridge", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.41397000", + "longitude": "-82.31987000" + }, + { + "id": "124020", + "name": "Pendleton County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.68073000", + "longitude": "-79.35089000" + }, + { + "id": "124035", + "name": "Pennsboro", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.28508000", + "longitude": "-80.96844000" + }, + { + "id": "124104", + "name": "Petersburg", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.99261000", + "longitude": "-79.12392000" + }, + { + "id": "124130", + "name": "Philippi", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.15232000", + "longitude": "-80.04036000" + }, + { + "id": "124208", + "name": "Pinch", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.40871000", + "longitude": "-81.48179000" + }, + { + "id": "124263", + "name": "Pineville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.58317000", + "longitude": "-81.53705000" + }, + { + "id": "124378", + "name": "Pleasant Valley", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.45536000", + "longitude": "-80.14175000" + }, + { + "id": "124385", + "name": "Pleasants County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.37094000", + "longitude": "-81.16063000" + }, + { + "id": "124415", + "name": "Pocahontas County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.33180000", + "longitude": "-80.00775000" + }, + { + "id": "124430", + "name": "Point Pleasant", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.84453000", + "longitude": "-82.13709000" + }, + { + "id": "124659", + "name": "Preston County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.46930000", + "longitude": "-79.66816000" + }, + { + "id": "124685", + "name": "Princeton", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.36623000", + "longitude": "-81.10259000" + }, + { + "id": "124713", + "name": "Prosperity", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.83650000", + "longitude": "-81.20177000" + }, + { + "id": "124765", + "name": "Putnam County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.50862000", + "longitude": "-81.90899000" + }, + { + "id": "124825", + "name": "Rainelle", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.96873000", + "longitude": "-80.76703000" + }, + { + "id": "124832", + "name": "Raleigh County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.77136000", + "longitude": "-81.24863000" + }, + { + "id": "124861", + "name": "Rand", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.28260000", + "longitude": "-81.56234000" + }, + { + "id": "124878", + "name": "Randolph County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.77472000", + "longitude": "-79.87580000" + }, + { + "id": "124890", + "name": "Ranson", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.29510000", + "longitude": "-77.86055000" + }, + { + "id": "124910", + "name": "Ravenswood", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.94814000", + "longitude": "-81.76096000" + }, + { + "id": "125112", + "name": "Richwood", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.22484000", + "longitude": "-80.53314000" + }, + { + "id": "125164", + "name": "Ripley", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.81870000", + "longitude": "-81.71069000" + }, + { + "id": "125173", + "name": "Ritchie County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.17827000", + "longitude": "-81.06295000" + }, + { + "id": "125225", + "name": "Roane County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.71403000", + "longitude": "-81.34835000" + }, + { + "id": "125383", + "name": "Romney", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.34204000", + "longitude": "-78.75668000" + }, + { + "id": "125387", + "name": "Ronceverte", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.74984000", + "longitude": "-80.46285000" + }, + { + "id": "125594", + "name": "Saint Albans", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.38565000", + "longitude": "-81.83624000" + }, + { + "id": "125693", + "name": "Saint Marys", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.39174000", + "longitude": "-81.20511000" + }, + { + "id": "125733", + "name": "Salem", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.28287000", + "longitude": "-80.55899000" + }, + { + "id": "126208", + "name": "Shady Spring", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.70567000", + "longitude": "-81.09843000" + }, + { + "id": "126222", + "name": "Shannondale", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.21705000", + "longitude": "-77.80749000" + }, + { + "id": "126311", + "name": "Shepherdstown", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.43010000", + "longitude": "-77.80416000" + }, + { + "id": "126355", + "name": "Shinnston", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.39564000", + "longitude": "-80.30009000" + }, + { + "id": "126467", + "name": "Sissonville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.52815000", + "longitude": "-81.63096000" + }, + { + "id": "126469", + "name": "Sistersville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.56424000", + "longitude": "-80.99594000" + }, + { + "id": "126603", + "name": "Sophia", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.70761000", + "longitude": "-81.25066000" + }, + { + "id": "126636", + "name": "South Charleston", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.36843000", + "longitude": "-81.69957000" + }, + { + "id": "126824", + "name": "Spencer", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.80203000", + "longitude": "-81.35095000" + }, + { + "id": "126947", + "name": "Stanaford", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.81595000", + "longitude": "-81.15232000" + }, + { + "id": "126980", + "name": "Star City", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.65841000", + "longitude": "-79.98645000" + }, + { + "id": "127094", + "name": "Stonewood", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.25092000", + "longitude": "-80.31231000" + }, + { + "id": "127206", + "name": "Summers County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.65587000", + "longitude": "-80.85857000" + }, + { + "id": "127208", + "name": "Summersville", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.28122000", + "longitude": "-80.85260000" + }, + { + "id": "127311", + "name": "Sutton", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.66454000", + "longitude": "-80.70982000" + }, + { + "id": "127455", + "name": "Taylor County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.33599000", + "longitude": "-80.04618000" + }, + { + "id": "127477", + "name": "Teays Valley", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.45009000", + "longitude": "-81.92930000" + }, + { + "id": "127514", + "name": "Terra Alta", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.44565000", + "longitude": "-79.54644000" + }, + { + "id": "127739", + "name": "Tornado", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.34287000", + "longitude": "-81.84430000" + }, + { + "id": "127871", + "name": "Tucker County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.11360000", + "longitude": "-79.56497000" + }, + { + "id": "127943", + "name": "Tyler County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.46528000", + "longitude": "-80.88483000" + }, + { + "id": "127976", + "name": "Union", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.59151000", + "longitude": "-80.54368000" + }, + { + "id": "128053", + "name": "Upshur County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.89783000", + "longitude": "-80.23342000" + }, + { + "id": "128233", + "name": "Vienna", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.32702000", + "longitude": "-81.54846000" + }, + { + "id": "128544", + "name": "Washington", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.26119000", + "longitude": "-81.67180000" + }, + { + "id": "128681", + "name": "Wayne", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.22147000", + "longitude": "-82.44237000" + }, + { + "id": "128697", + "name": "Wayne County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.14595000", + "longitude": "-82.42695000" + }, + { + "id": "128740", + "name": "Webster County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.49474000", + "longitude": "-80.42187000" + }, + { + "id": "128745", + "name": "Webster Springs", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.47927000", + "longitude": "-80.41342000" + }, + { + "id": "128759", + "name": "Weirton", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.41896000", + "longitude": "-80.58952000" + }, + { + "id": "128760", + "name": "Weirton Heights", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.40840000", + "longitude": "-80.53924000" + }, + { + "id": "128765", + "name": "Welch", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.43289000", + "longitude": "-81.58455000" + }, + { + "id": "128789", + "name": "Wellsburg", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.27201000", + "longitude": "-80.60952000" + }, + { + "id": "128918", + "name": "West Liberty", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.16979000", + "longitude": "-80.59369000" + }, + { + "id": "128994", + "name": "West Union", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.29647000", + "longitude": "-80.77705000" + }, + { + "id": "129060", + "name": "Weston", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.03843000", + "longitude": "-80.46731000" + }, + { + "id": "129068", + "name": "Westover", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.63453000", + "longitude": "-79.96979000" + }, + { + "id": "129093", + "name": "Wetzel County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.60526000", + "longitude": "-80.63910000" + }, + { + "id": "129121", + "name": "Wheeling", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "40.06396000", + "longitude": "-80.72091000" + }, + { + "id": "129162", + "name": "White Sulphur Springs", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.79651000", + "longitude": "-80.29757000" + }, + { + "id": "129243", + "name": "Wiley Ford", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.61453000", + "longitude": "-78.77502000" + }, + { + "id": "129273", + "name": "Williamson", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.67427000", + "longitude": "-82.27736000" + }, + { + "id": "129287", + "name": "Williamstown", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.40063000", + "longitude": "-81.44818000" + }, + { + "id": "129396", + "name": "Winfield", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "38.53314000", + "longitude": "-81.89347000" + }, + { + "id": "129455", + "name": "Wirt County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.02242000", + "longitude": "-81.37862000" + }, + { + "id": "129485", + "name": "Wood County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "39.21113000", + "longitude": "-81.51497000" + }, + { + "id": "129639", + "name": "Wyoming County", + "state_id": 1429, + "state_code": "WV", + "country_id": 233, + "country_code": "US", + "latitude": "37.60961000", + "longitude": "-81.54918000" + }, + { + "id": "110970", + "name": "Abbotsford", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.94636000", + "longitude": "-90.31597000" + }, + { + "id": "111015", + "name": "Adams", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.95608000", + "longitude": "-89.81818000" + }, + { + "id": "111023", + "name": "Adams County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.96963000", + "longitude": "-89.77064000" + }, + { + "id": "111038", + "name": "Addison", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.42278000", + "longitude": "-88.37454000" + }, + { + "id": "111109", + "name": "Albany", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.70778000", + "longitude": "-89.43706000" + }, + { + "id": "111162", + "name": "Algoma", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.60889000", + "longitude": "-87.43259000" + }, + { + "id": "111203", + "name": "Allouez", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.47749000", + "longitude": "-88.01621000" + }, + { + "id": "111211", + "name": "Alma", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.31997000", + "longitude": "-91.91488000" + }, + { + "id": "111241", + "name": "Alto", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.67665000", + "longitude": "-88.79511000" + }, + { + "id": "111249", + "name": "Altoona", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.80468000", + "longitude": "-91.44321000" + }, + { + "id": "111275", + "name": "Amery", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.30691000", + "longitude": "-92.36214000" + }, + { + "id": "111284", + "name": "Amherst", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.45081000", + "longitude": "-89.28484000" + }, + { + "id": "111371", + "name": "Antigo", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.14025000", + "longitude": "-89.15234000" + }, + { + "id": "111397", + "name": "Appleton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.26193000", + "longitude": "-88.41538000" + }, + { + "id": "111424", + "name": "Arcadia", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.25274000", + "longitude": "-91.50154000" + }, + { + "id": "111525", + "name": "Ashford", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.58694000", + "longitude": "-88.37066000" + }, + { + "id": "111539", + "name": "Ashland", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.59244000", + "longitude": "-90.88380000" + }, + { + "id": "111542", + "name": "Ashland County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.50974000", + "longitude": "-90.71960000" + }, + { + "id": "111549", + "name": "Ashwaubenon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.48221000", + "longitude": "-88.07010000" + }, + { + "id": "111581", + "name": "Athens", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.03302000", + "longitude": "-90.07402000" + }, + { + "id": "111651", + "name": "Augusta", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.68024000", + "longitude": "-91.11988000" + }, + { + "id": "111711", + "name": "Aztalan", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.07278000", + "longitude": "-88.86233000" + }, + { + "id": "111758", + "name": "Baldwin", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.96663000", + "longitude": "-92.37436000" + }, + { + "id": "111780", + "name": "Balsam Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.45218000", + "longitude": "-92.45464000" + }, + { + "id": "111794", + "name": "Bangor", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.89302000", + "longitude": "-90.99041000" + }, + { + "id": "111808", + "name": "Baraboo", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.47109000", + "longitude": "-89.74429000" + }, + { + "id": "111831", + "name": "Barneveld", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.01555000", + "longitude": "-89.89540000" + }, + { + "id": "111850", + "name": "Barron", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.40135000", + "longitude": "-91.84906000" + }, + { + "id": "111851", + "name": "Barron County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.42372000", + "longitude": "-91.84831000" + }, + { + "id": "111865", + "name": "Barton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.44361000", + "longitude": "-88.18065000" + }, + { + "id": "111942", + "name": "Bayfield County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.63544000", + "longitude": "-91.18068000" + }, + { + "id": "111956", + "name": "Bayside", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.18056000", + "longitude": "-87.90064000" + }, + { + "id": "112001", + "name": "Beaver Dam", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.45777000", + "longitude": "-88.83733000" + }, + { + "id": "112060", + "name": "Belgium", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.49972000", + "longitude": "-87.85037000" + }, + { + "id": "112091", + "name": "Belle Plaine", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.71526000", + "longitude": "-88.66621000" + }, + { + "id": "112108", + "name": "Belleville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.85972000", + "longitude": "-89.53818000" + }, + { + "id": "112115", + "name": "Bellevue", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.44416000", + "longitude": "-87.92010000" + }, + { + "id": "112146", + "name": "Beloit", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.50835000", + "longitude": "-89.03178000" + }, + { + "id": "112239", + "name": "Berlin", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.96804000", + "longitude": "-88.94345000" + }, + { + "id": "112298", + "name": "Bevent", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.77053000", + "longitude": "-89.38956000" + }, + { + "id": "112318", + "name": "Big Bend", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.88140000", + "longitude": "-88.20676000" + }, + { + "id": "112372", + "name": "Black Creek", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.47749000", + "longitude": "-88.45066000" + }, + { + "id": "112375", + "name": "Black Earth", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.13722000", + "longitude": "-89.74679000" + }, + { + "id": "112383", + "name": "Black River Falls", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.29468000", + "longitude": "-90.85153000" + }, + { + "id": "112410", + "name": "Blair", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.29440000", + "longitude": "-91.23516000" + }, + { + "id": "112432", + "name": "Bloomer", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.10024000", + "longitude": "-91.48877000" + }, + { + "id": "112503", + "name": "Bohners Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.62307000", + "longitude": "-88.28037000" + }, + { + "id": "112533", + "name": "Bonduel", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.74027000", + "longitude": "-88.44482000" + }, + { + "id": "112583", + "name": "Boscobel", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.13443000", + "longitude": "-90.70540000" + }, + { + "id": "112640", + "name": "Boyceville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.04357000", + "longitude": "-92.04101000" + }, + { + "id": "112752", + "name": "Brice Prairie", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.93857000", + "longitude": "-91.29986000" + }, + { + "id": "112796", + "name": "Brillion", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.17721000", + "longitude": "-88.06427000" + }, + { + "id": "112811", + "name": "Bristol", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.55891000", + "longitude": "-88.04925000" + }, + { + "id": "112838", + "name": "Brodhead", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.61834000", + "longitude": "-89.37623000" + }, + { + "id": "112855", + "name": "Brookfield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.06057000", + "longitude": "-88.10648000" + }, + { + "id": "112873", + "name": "Brooklyn", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.85361000", + "longitude": "-89.37040000" + }, + { + "id": "112902", + "name": "Brothertown", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.96805000", + "longitude": "-88.30899000" + }, + { + "id": "112914", + "name": "Brown County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.47433000", + "longitude": "-87.99287000" + }, + { + "id": "112915", + "name": "Brown Deer", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.16334000", + "longitude": "-87.96453000" + }, + { + "id": "112920", + "name": "Browns Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.69252000", + "longitude": "-88.23120000" + }, + { + "id": "112958", + "name": "Brussels", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.73611000", + "longitude": "-87.62093000" + }, + { + "id": "113020", + "name": "Buffalo County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.37983000", + "longitude": "-91.75447000" + }, + { + "id": "113073", + "name": "Burlington", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.67807000", + "longitude": "-88.27620000" + }, + { + "id": "113080", + "name": "Burnett County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.86272000", + "longitude": "-92.36757000" + }, + { + "id": "113112", + "name": "Butler", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.10584000", + "longitude": "-88.06953000" + }, + { + "id": "113166", + "name": "Cadott", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.94802000", + "longitude": "-91.15070000" + }, + { + "id": "113192", + "name": "Caledonia", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.80780000", + "longitude": "-87.92425000" + }, + { + "id": "113231", + "name": "Calumet County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.08160000", + "longitude": "-88.21806000" + }, + { + "id": "113255", + "name": "Cambridge", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00361000", + "longitude": "-89.01650000" + }, + { + "id": "113276", + "name": "Cameron", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.40857000", + "longitude": "-91.74406000" + }, + { + "id": "113288", + "name": "Camp Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.53474000", + "longitude": "-88.14370000" + }, + { + "id": "113304", + "name": "Campbellsport", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.59777000", + "longitude": "-88.27899000" + }, + { + "id": "113523", + "name": "Cashton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.74191000", + "longitude": "-90.77930000" + }, + { + "id": "113574", + "name": "Cato", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.14277000", + "longitude": "-87.86120000" + }, + { + "id": "113612", + "name": "Cedar Grove", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.56972000", + "longitude": "-87.82342000" + }, + { + "id": "113624", + "name": "Cedarburg", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.29667000", + "longitude": "-87.98759000" + }, + { + "id": "113915", + "name": "Chetek", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.31413000", + "longitude": "-91.65100000" + }, + { + "id": "113956", + "name": "Chilton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.02888000", + "longitude": "-88.16288000" + }, + { + "id": "113975", + "name": "Chippewa County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.06940000", + "longitude": "-91.27989000" + }, + { + "id": "113976", + "name": "Chippewa Falls", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.93691000", + "longitude": "-91.39293000" + }, + { + "id": "114128", + "name": "Clark County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.73471000", + "longitude": "-90.61208000" + }, + { + "id": "114211", + "name": "Clear Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.25191000", + "longitude": "-92.27130000" + }, + { + "id": "114247", + "name": "Cleveland", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.91499000", + "longitude": "-87.74731000" + }, + { + "id": "114286", + "name": "Clinton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.55779000", + "longitude": "-88.86511000" + }, + { + "id": "114299", + "name": "Clintonville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.62053000", + "longitude": "-88.76232000" + }, + { + "id": "114380", + "name": "Colby", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.90997000", + "longitude": "-90.31569000" + }, + { + "id": "114407", + "name": "Colfax", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.99746000", + "longitude": "-91.72712000" + }, + { + "id": "114482", + "name": "Columbia County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.46660000", + "longitude": "-89.33373000" + }, + { + "id": "114497", + "name": "Columbus", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.33805000", + "longitude": "-89.01539000" + }, + { + "id": "114518", + "name": "Combined Locks", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.26582000", + "longitude": "-88.31427000" + }, + { + "id": "114528", + "name": "Como", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.61224000", + "longitude": "-88.48232000" + }, + { + "id": "114542", + "name": "Concord", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.06945000", + "longitude": "-88.59871000" + }, + { + "id": "114607", + "name": "Cooperstown", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.31277000", + "longitude": "-87.77453000" + }, + { + "id": "114649", + "name": "Cornell", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.16719000", + "longitude": "-91.14931000" + }, + { + "id": "114692", + "name": "Cottage Grove", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.07611000", + "longitude": "-89.19956000" + }, + { + "id": "114766", + "name": "Crandon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.57191000", + "longitude": "-88.90289000" + }, + { + "id": "114783", + "name": "Crawford County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.23946000", + "longitude": "-90.93105000" + }, + { + "id": "114853", + "name": "Cross Plains", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.11444000", + "longitude": "-89.65568000" + }, + { + "id": "114888", + "name": "Cuba City", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.60555000", + "longitude": "-90.42985000" + }, + { + "id": "114889", + "name": "Cudahy", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.95974000", + "longitude": "-87.86147000" + }, + { + "id": "114910", + "name": "Cumberland", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.53218000", + "longitude": "-92.01935000" + }, + { + "id": "114973", + "name": "Dakota", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.99025000", + "longitude": "-89.35651000" + }, + { + "id": "115019", + "name": "Dane", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.25055000", + "longitude": "-89.50151000" + }, + { + "id": "115020", + "name": "Dane County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.06735000", + "longitude": "-89.41832000" + }, + { + "id": "115048", + "name": "Darien", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.60168000", + "longitude": "-88.70760000" + }, + { + "id": "115050", + "name": "Darlington", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.68306000", + "longitude": "-90.11763000" + }, + { + "id": "115105", + "name": "De Forest", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.24777000", + "longitude": "-89.34373000" + }, + { + "id": "115112", + "name": "De Pere", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.44888000", + "longitude": "-88.06038000" + }, + { + "id": "115158", + "name": "Decatur", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.63433000", + "longitude": "-89.41155000" + }, + { + "id": "115183", + "name": "Deerfield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.05194000", + "longitude": "-89.07567000" + }, + { + "id": "115196", + "name": "Delafield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.06084000", + "longitude": "-88.40371000" + }, + { + "id": "115201", + "name": "Delavan", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.63307000", + "longitude": "-88.64371000" + }, + { + "id": "115202", + "name": "Delavan Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.58418000", + "longitude": "-88.63260000" + }, + { + "id": "115241", + "name": "Denmark", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.34777000", + "longitude": "-87.82732000" + }, + { + "id": "115324", + "name": "Dickeyville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.62722000", + "longitude": "-90.59207000" + }, + { + "id": "115380", + "name": "Dodge County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.41630000", + "longitude": "-88.70752000" + }, + { + "id": "115381", + "name": "Dodgeville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.96027000", + "longitude": "-90.13012000" + }, + { + "id": "115406", + "name": "Door County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.83834000", + "longitude": "-87.35779000" + }, + { + "id": "115432", + "name": "Douglas County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.46411000", + "longitude": "-91.89940000" + }, + { + "id": "115441", + "name": "Dousman", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.01418000", + "longitude": "-88.47260000" + }, + { + "id": "115547", + "name": "Dunn County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.94659000", + "longitude": "-91.89641000" + }, + { + "id": "115564", + "name": "Durand", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.62635000", + "longitude": "-91.96573000" + }, + { + "id": "115596", + "name": "Eagle", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.87946000", + "longitude": "-88.47427000" + }, + { + "id": "115605", + "name": "Eagle Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.70696000", + "longitude": "-88.12814000" + }, + { + "id": "115611", + "name": "Eagle River", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.91718000", + "longitude": "-89.24430000" + }, + { + "id": "115766", + "name": "East Troy", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.78529000", + "longitude": "-88.40510000" + }, + { + "id": "115790", + "name": "Easton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.83803000", + "longitude": "-89.80679000" + }, + { + "id": "115810", + "name": "Eau Claire", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.81135000", + "longitude": "-91.49849000" + }, + { + "id": "115811", + "name": "Eau Claire County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.72677000", + "longitude": "-91.28600000" + }, + { + "id": "115835", + "name": "Edgar", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.92719000", + "longitude": "-89.96346000" + }, + { + "id": "115850", + "name": "Edgerton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.83528000", + "longitude": "-89.06761000" + }, + { + "id": "115953", + "name": "Eldorado", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.82471000", + "longitude": "-88.62178000" + }, + { + "id": "116002", + "name": "Elkhorn", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.67279000", + "longitude": "-88.54454000" + }, + { + "id": "116039", + "name": "Ellsworth", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.73219000", + "longitude": "-92.48741000" + }, + { + "id": "116044", + "name": "Elm Grove", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.04307000", + "longitude": "-88.07898000" + }, + { + "id": "116067", + "name": "Elroy", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.74080000", + "longitude": "-90.27235000" + }, + { + "id": "116254", + "name": "Evansville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.78028000", + "longitude": "-89.29928000" + }, + { + "id": "116262", + "name": "Evergreen", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.84247000", + "longitude": "-89.63762000" + }, + { + "id": "116372", + "name": "Fall Creek", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.76357000", + "longitude": "-91.27710000" + }, + { + "id": "116374", + "name": "Fall River", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.38443000", + "longitude": "-89.04511000" + }, + { + "id": "116472", + "name": "Fennimore", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.98360000", + "longitude": "-90.65540000" + }, + { + "id": "116535", + "name": "Fitchburg", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.96083000", + "longitude": "-89.46984000" + }, + { + "id": "116584", + "name": "Florence", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.92218000", + "longitude": "-88.25180000" + }, + { + "id": "116588", + "name": "Florence County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.84845000", + "longitude": "-88.39816000" + }, + { + "id": "116627", + "name": "Fond du Lac", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.77500000", + "longitude": "-88.43883000" + }, + { + "id": "116628", + "name": "Fond du Lac County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.75359000", + "longitude": "-88.48826000" + }, + { + "id": "116630", + "name": "Fontana", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.55141000", + "longitude": "-88.57510000" + }, + { + "id": "116651", + "name": "Forest County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.66726000", + "longitude": "-88.77038000" + }, + { + "id": "116689", + "name": "Fort Atkinson", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.92889000", + "longitude": "-88.83705000" + }, + { + "id": "116804", + "name": "Fox Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.56554000", + "longitude": "-88.90650000" + }, + { + "id": "116806", + "name": "Fox Point", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.15751000", + "longitude": "-87.90175000" + }, + { + "id": "116841", + "name": "Franklin", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.88863000", + "longitude": "-88.03842000" + }, + { + "id": "116878", + "name": "Franksville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.76002000", + "longitude": "-87.91341000" + }, + { + "id": "116884", + "name": "Frederic", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.65912000", + "longitude": "-92.46714000" + }, + { + "id": "116897", + "name": "Fredonia", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.47056000", + "longitude": "-87.95065000" + }, + { + "id": "116930", + "name": "French Island", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.85830000", + "longitude": "-91.26042000" + }, + { + "id": "116950", + "name": "Friendship", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.97053000", + "longitude": "-89.81679000" + }, + { + "id": "117029", + "name": "Galesville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.08163000", + "longitude": "-91.34904000" + }, + { + "id": "117148", + "name": "Genoa City", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.49835000", + "longitude": "-88.32815000" + }, + { + "id": "117174", + "name": "Germantown", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.22862000", + "longitude": "-88.11037000" + }, + { + "id": "117216", + "name": "Gillett", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.88999000", + "longitude": "-88.30732000" + }, + { + "id": "117284", + "name": "Glendale", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.13529000", + "longitude": "-87.93564000" + }, + { + "id": "117295", + "name": "Glenmore", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.38583000", + "longitude": "-87.92732000" + }, + { + "id": "117316", + "name": "Glenwood City", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.05857000", + "longitude": "-92.17241000" + }, + { + "id": "117432", + "name": "Grafton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.31973000", + "longitude": "-87.95342000" + }, + { + "id": "117515", + "name": "Grant County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.86749000", + "longitude": "-90.70622000" + }, + { + "id": "117529", + "name": "Grantsburg", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.77634000", + "longitude": "-92.68270000" + }, + { + "id": "117591", + "name": "Green Bay", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.51916000", + "longitude": "-88.01983000" + }, + { + "id": "117593", + "name": "Green County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.67999000", + "longitude": "-89.60221000" + }, + { + "id": "117601", + "name": "Green Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.84415000", + "longitude": "-88.96011000" + }, + { + "id": "117602", + "name": "Green Lake County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.80038000", + "longitude": "-89.04486000" + }, + { + "id": "117627", + "name": "Greendale", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.94057000", + "longitude": "-87.99592000" + }, + { + "id": "117653", + "name": "Greenfield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.96140000", + "longitude": "-88.01259000" + }, + { + "id": "117708", + "name": "Greenwood", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.77024000", + "longitude": "-90.59931000" + }, + { + "id": "117851", + "name": "Hales Corners", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.93751000", + "longitude": "-88.04870000" + }, + { + "id": "117914", + "name": "Hammond", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.97886000", + "longitude": "-92.43575000" + }, + { + "id": "118061", + "name": "Harrison", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.22776000", + "longitude": "-88.33591000" + }, + { + "id": "118091", + "name": "Hartford", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.31778000", + "longitude": "-88.37899000" + }, + { + "id": "118097", + "name": "Hartland", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.10501000", + "longitude": "-88.34204000" + }, + { + "id": "118196", + "name": "Hayward", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.01301000", + "longitude": "-91.48462000" + }, + { + "id": "118205", + "name": "Hazel Green", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.53278000", + "longitude": "-90.43457000" + }, + { + "id": "118428", + "name": "Hilbert", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.14027000", + "longitude": "-88.16399000" + }, + { + "id": "118451", + "name": "Hillsboro", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.65220000", + "longitude": "-90.34402000" + }, + { + "id": "118499", + "name": "Hobart", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.49925000", + "longitude": "-88.14986000" + }, + { + "id": "118569", + "name": "Holmen", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.96330000", + "longitude": "-91.25625000" + }, + { + "id": "118663", + "name": "Horicon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.45138000", + "longitude": "-88.63121000" + }, + { + "id": "118679", + "name": "Hortonville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.33470000", + "longitude": "-88.63816000" + }, + { + "id": "118708", + "name": "Howard", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.54360000", + "longitude": "-88.08816000" + }, + { + "id": "118720", + "name": "Howards Grove", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.83388000", + "longitude": "-87.82009000" + }, + { + "id": "118746", + "name": "Hudson", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.97469000", + "longitude": "-92.75687000" + }, + { + "id": "118821", + "name": "Hurley", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.44967000", + "longitude": "-90.18656000" + }, + { + "id": "118833", + "name": "Hustisford", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.34611000", + "longitude": "-88.60066000" + }, + { + "id": "118896", + "name": "Independence", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.35691000", + "longitude": "-91.42043000" + }, + { + "id": "118967", + "name": "Iola", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.50803000", + "longitude": "-89.13067000" + }, + { + "id": "118979", + "name": "Iowa County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00048000", + "longitude": "-90.13543000" + }, + { + "id": "118990", + "name": "Iron County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.31706000", + "longitude": "-90.26445000" + }, + { + "id": "119053", + "name": "Ixonia", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.14389000", + "longitude": "-88.59732000" + }, + { + "id": "119072", + "name": "Jackson", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.32389000", + "longitude": "-88.16676000" + }, + { + "id": "119093", + "name": "Jackson County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.31913000", + "longitude": "-90.80518000" + }, + { + "id": "119131", + "name": "Janesville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.68279000", + "longitude": "-89.01872000" + }, + { + "id": "119171", + "name": "Jefferson", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00556000", + "longitude": "-88.80733000" + }, + { + "id": "119193", + "name": "Jefferson County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.02082000", + "longitude": "-88.77587000" + }, + { + "id": "119272", + "name": "Johnson Creek", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.07611000", + "longitude": "-88.77427000" + }, + { + "id": "119337", + "name": "Juneau", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.40555000", + "longitude": "-88.70510000" + }, + { + "id": "119339", + "name": "Juneau County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.92444000", + "longitude": "-90.11402000" + }, + { + "id": "119399", + "name": "Kaukauna", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.27804000", + "longitude": "-88.27205000" + }, + { + "id": "119476", + "name": "Kenosha", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.58474000", + "longitude": "-87.82119000" + }, + { + "id": "119477", + "name": "Kenosha County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.57280000", + "longitude": "-87.83981000" + }, + { + "id": "119522", + "name": "Keshena", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.88387000", + "longitude": "-88.63372000" + }, + { + "id": "119533", + "name": "Kewaskum", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.52083000", + "longitude": "-88.22899000" + }, + { + "id": "119534", + "name": "Kewaunee", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.45833000", + "longitude": "-87.50314000" + }, + { + "id": "119535", + "name": "Kewaunee County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.48279000", + "longitude": "-87.51434000" + }, + { + "id": "119554", + "name": "Kiel", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.91249000", + "longitude": "-88.03565000" + }, + { + "id": "119570", + "name": "Kimberly", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.27221000", + "longitude": "-88.33900000" + }, + { + "id": "119577", + "name": "King", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.33748000", + "longitude": "-89.14178000" + }, + { + "id": "119701", + "name": "Kohler", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.73916000", + "longitude": "-87.78175000" + }, + { + "id": "119717", + "name": "Kronenwetter", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.82219000", + "longitude": "-89.59040000" + }, + { + "id": "119744", + "name": "La Crosse", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.80136000", + "longitude": "-91.23958000" + }, + { + "id": "119745", + "name": "La Crosse County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.90653000", + "longitude": "-91.11522000" + }, + { + "id": "119810", + "name": "Lac du Flambeau", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.96967000", + "longitude": "-89.89210000" + }, + { + "id": "119830", + "name": "Ladysmith", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.46302000", + "longitude": "-91.10404000" + }, + { + "id": "119842", + "name": "Lafayette County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.66050000", + "longitude": "-90.13172000" + }, + { + "id": "119903", + "name": "Lake Delton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.60109000", + "longitude": "-89.79374000" + }, + { + "id": "119913", + "name": "Lake Geneva", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.59168000", + "longitude": "-88.43343000" + }, + { + "id": "119915", + "name": "Lake Hallie", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.87579000", + "longitude": "-91.44071000" + }, + { + "id": "119928", + "name": "Lake Koshkonong", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.90973000", + "longitude": "-88.91955000" + }, + { + "id": "119943", + "name": "Lake Mills", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.08139000", + "longitude": "-88.91177000" + }, + { + "id": "119951", + "name": "Lake Nebagamon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.51494000", + "longitude": "-91.69991000" + }, + { + "id": "119969", + "name": "Lake Ripley", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00583000", + "longitude": "-88.98622000" + }, + { + "id": "119992", + "name": "Lake Wazeecha", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.37108000", + "longitude": "-89.75651000" + }, + { + "id": "119995", + "name": "Lake Wisconsin", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.37360000", + "longitude": "-89.57568000" + }, + { + "id": "119996", + "name": "Lake Wissota", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.92635000", + "longitude": "-91.30099000" + }, + { + "id": "120065", + "name": "Lamartine", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.73332000", + "longitude": "-88.56872000" + }, + { + "id": "120088", + "name": "Lancaster", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.84749000", + "longitude": "-90.71068000" + }, + { + "id": "120112", + "name": "Langlade County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.26236000", + "longitude": "-89.07191000" + }, + { + "id": "120120", + "name": "Lannon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.14612000", + "longitude": "-88.16620000" + }, + { + "id": "120332", + "name": "Legend Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.89095000", + "longitude": "-88.54406000" + }, + { + "id": "120529", + "name": "Lincoln County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.33746000", + "longitude": "-89.73461000" + }, + { + "id": "120614", + "name": "Little Chute", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.27999000", + "longitude": "-88.31844000" + }, + { + "id": "120629", + "name": "Little Round Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.96495000", + "longitude": "-91.36795000" + }, + { + "id": "120690", + "name": "Lodi", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.31388000", + "longitude": "-89.52651000" + }, + { + "id": "120715", + "name": "Lomira", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.59138000", + "longitude": "-88.44371000" + }, + { + "id": "120853", + "name": "Loyal", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.73691000", + "longitude": "-90.49597000" + }, + { + "id": "120867", + "name": "Luck", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.57607000", + "longitude": "-92.48270000" + }, + { + "id": "120901", + "name": "Luxemburg", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.53861000", + "longitude": "-87.70398000" + }, + { + "id": "120999", + "name": "Madison", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.07305000", + "longitude": "-89.40123000" + }, + { + "id": "121050", + "name": "Maine", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.02716000", + "longitude": "-89.69039000" + }, + { + "id": "121086", + "name": "Manawa", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.46443000", + "longitude": "-88.91983000" + }, + { + "id": "121101", + "name": "Manchester", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.69054000", + "longitude": "-89.04845000" + }, + { + "id": "121127", + "name": "Manitowoc", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.08861000", + "longitude": "-87.65758000" + }, + { + "id": "121128", + "name": "Manitowoc County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.09054000", + "longitude": "-87.69974000" + }, + { + "id": "121165", + "name": "Maple Bluff", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.11833000", + "longitude": "-89.37956000" + }, + { + "id": "121185", + "name": "Marathon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.92913000", + "longitude": "-89.84040000" + }, + { + "id": "121186", + "name": "Marathon County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.89829000", + "longitude": "-89.75906000" + }, + { + "id": "121228", + "name": "Marinette", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.09998000", + "longitude": "-87.63066000" + }, + { + "id": "121229", + "name": "Marinette County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.35090000", + "longitude": "-88.00222000" + }, + { + "id": "121245", + "name": "Marion", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.67081000", + "longitude": "-88.88927000" + }, + { + "id": "121268", + "name": "Markesan", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.70720000", + "longitude": "-88.99011000" + }, + { + "id": "121294", + "name": "Marquette County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.81958000", + "longitude": "-89.39875000" + }, + { + "id": "121309", + "name": "Marshall", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.16833000", + "longitude": "-89.06678000" + }, + { + "id": "121327", + "name": "Marshfield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.66885000", + "longitude": "-90.17180000" + }, + { + "id": "121427", + "name": "Mauston", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.79719000", + "longitude": "-90.07735000" + }, + { + "id": "121456", + "name": "Mayville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.49416000", + "longitude": "-88.54482000" + }, + { + "id": "121460", + "name": "Mazomanie", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.17666000", + "longitude": "-89.79485000" + }, + { + "id": "121499", + "name": "McFarland", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.01250000", + "longitude": "-89.28984000" + }, + { + "id": "121595", + "name": "Medford", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.13858000", + "longitude": "-90.34014000" + }, + { + "id": "121649", + "name": "Menasha", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.20221000", + "longitude": "-88.44650000" + }, + { + "id": "121664", + "name": "Menominee County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.00437000", + "longitude": "-88.71001000" + }, + { + "id": "121665", + "name": "Menomonee Falls", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.17890000", + "longitude": "-88.11731000" + }, + { + "id": "121666", + "name": "Menomonie", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.87552000", + "longitude": "-91.91934000" + }, + { + "id": "121669", + "name": "Mequon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.21555000", + "longitude": "-88.03001000" + }, + { + "id": "121707", + "name": "Merrill", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.18052000", + "longitude": "-89.68346000" + }, + { + "id": "121718", + "name": "Merton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.14667000", + "longitude": "-88.30676000" + }, + { + "id": "121783", + "name": "Middleton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.09722000", + "longitude": "-89.50429000" + }, + { + "id": "121858", + "name": "Milford", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.10083000", + "longitude": "-88.84677000" + }, + { + "id": "121918", + "name": "Milton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.77556000", + "longitude": "-88.94400000" + }, + { + "id": "121923", + "name": "Milwaukee", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.03890000", + "longitude": "-87.90647000" + }, + { + "id": "121924", + "name": "Milwaukee County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.02172000", + "longitude": "-87.92908000" + }, + { + "id": "121938", + "name": "Mineral Point", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.86000000", + "longitude": "-90.17985000" + }, + { + "id": "121977", + "name": "Mishicot", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.23916000", + "longitude": "-87.64119000" + }, + { + "id": "122036", + "name": "Mondovi", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.56774000", + "longitude": "-91.67099000" + }, + { + "id": "122052", + "name": "Monona", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.06222000", + "longitude": "-89.33401000" + }, + { + "id": "122063", + "name": "Monroe", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.60112000", + "longitude": "-89.63845000" + }, + { + "id": "122082", + "name": "Monroe County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.94575000", + "longitude": "-90.61787000" + }, + { + "id": "122117", + "name": "Montello", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.79137000", + "longitude": "-89.31984000" + }, + { + "id": "122170", + "name": "Monticello", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.74556000", + "longitude": "-89.59484000" + }, + { + "id": "122305", + "name": "Mosinee", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.79302000", + "longitude": "-89.70318000" + }, + { + "id": "122354", + "name": "Mount Horeb", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00861000", + "longitude": "-89.73846000" + }, + { + "id": "122366", + "name": "Mount Morris", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.11442000", + "longitude": "-89.19067000" + }, + { + "id": "122382", + "name": "Mount Pleasant", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.69743000", + "longitude": "-87.85577000" + }, + { + "id": "122451", + "name": "Mukwonago", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.86668000", + "longitude": "-88.33343000" + }, + { + "id": "122504", + "name": "Muscoda", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.18499000", + "longitude": "-90.44318000" + }, + { + "id": "122508", + "name": "Muskego", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.90585000", + "longitude": "-88.13898000" + }, + { + "id": "122569", + "name": "Nashotah", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.09779000", + "longitude": "-88.40232000" + }, + { + "id": "122579", + "name": "Nashville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.52274000", + "longitude": "-89.02484000" + }, + { + "id": "122616", + "name": "Neenah", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.18582000", + "longitude": "-88.46261000" + }, + { + "id": "122618", + "name": "Neillsville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.55996000", + "longitude": "-90.59625000" + }, + { + "id": "122619", + "name": "Nekoosa", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.31246000", + "longitude": "-89.90429000" + }, + { + "id": "122664", + "name": "New Berlin", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.97640000", + "longitude": "-88.10842000" + }, + { + "id": "122708", + "name": "New Glarus", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.81445000", + "longitude": "-89.63512000" + }, + { + "id": "122722", + "name": "New Holstein", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.94999000", + "longitude": "-88.08426000" + }, + { + "id": "122738", + "name": "New Lisbon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.87914000", + "longitude": "-90.16541000" + }, + { + "id": "122745", + "name": "New London", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.39276000", + "longitude": "-88.73983000" + }, + { + "id": "122770", + "name": "New Richmond", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.12302000", + "longitude": "-92.53659000" + }, + { + "id": "122815", + "name": "Newburg", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.43167000", + "longitude": "-88.04648000" + }, + { + "id": "122880", + "name": "Niagara", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.77135000", + "longitude": "-87.99485000" + }, + { + "id": "123026", + "name": "North Fond du Lac", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.81138000", + "longitude": "-88.48344000" + }, + { + "id": "123043", + "name": "North Hudson", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.99302000", + "longitude": "-92.75687000" + }, + { + "id": "123049", + "name": "North La Crosse", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.84635000", + "longitude": "-91.24819000" + }, + { + "id": "123088", + "name": "North Prairie", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.93446000", + "longitude": "-88.40537000" + }, + { + "id": "123232", + "name": "Oak Creek", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.88585000", + "longitude": "-87.86314000" + }, + { + "id": "123277", + "name": "Oakfield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.68610000", + "longitude": "-88.54650000" + }, + { + "id": "123350", + "name": "Oconomowoc", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.11167000", + "longitude": "-88.49927000" + }, + { + "id": "123351", + "name": "Oconto", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.88721000", + "longitude": "-87.86455000" + }, + { + "id": "123352", + "name": "Oconto County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.99851000", + "longitude": "-88.22056000" + }, + { + "id": "123353", + "name": "Oconto Falls", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.87388000", + "longitude": "-88.14288000" + }, + { + "id": "123396", + "name": "Okauchee Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.12334000", + "longitude": "-88.44065000" + }, + { + "id": "123466", + "name": "Omro", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.03943000", + "longitude": "-88.74428000" + }, + { + "id": "123468", + "name": "Onalaska", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.88441000", + "longitude": "-91.23514000" + }, + { + "id": "123474", + "name": "Oneida", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.49860000", + "longitude": "-88.18288000" + }, + { + "id": "123476", + "name": "Oneida County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.70559000", + "longitude": "-89.52171000" + }, + { + "id": "123493", + "name": "Oostburg", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.62277000", + "longitude": "-87.79453000" + }, + { + "id": "123547", + "name": "Oregon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.92611000", + "longitude": "-89.38456000" + }, + { + "id": "123553", + "name": "Orfordville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.62751000", + "longitude": "-89.25317000" + }, + { + "id": "123602", + "name": "Osceola", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.32052000", + "longitude": "-92.70493000" + }, + { + "id": "123609", + "name": "Oshkosh", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.02471000", + "longitude": "-88.54261000" + }, + { + "id": "123615", + "name": "Osseo", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.57218000", + "longitude": "-91.22738000" + }, + { + "id": "123648", + "name": "Outagamie County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.41609000", + "longitude": "-88.46493000" + }, + { + "id": "123700", + "name": "Ozaukee County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.40305000", + "longitude": "-87.89063000" + }, + { + "id": "123713", + "name": "Paddock Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.57752000", + "longitude": "-88.10509000" + }, + { + "id": "123778", + "name": "Palmyra", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.87779000", + "longitude": "-88.58621000" + }, + { + "id": "123828", + "name": "Pardeeville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.53776000", + "longitude": "-89.30012000" + }, + { + "id": "123844", + "name": "Park Falls", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.93440000", + "longitude": "-90.44155000" + }, + { + "id": "123998", + "name": "Pell Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.53807000", + "longitude": "-88.35093000" + }, + { + "id": "124053", + "name": "Pepin County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.48265000", + "longitude": "-92.14969000" + }, + { + "id": "124099", + "name": "Peshtigo", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.05443000", + "longitude": "-87.74927000" + }, + { + "id": "124115", + "name": "Pewaukee", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.08057000", + "longitude": "-88.26120000" + }, + { + "id": "124134", + "name": "Phillips", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.69663000", + "longitude": "-90.40043000" + }, + { + "id": "124173", + "name": "Pierce County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.71963000", + "longitude": "-92.42249000" + }, + { + "id": "124301", + "name": "Pittsfield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.59944000", + "longitude": "-88.24510000" + }, + { + "id": "124357", + "name": "Platteville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.73416000", + "longitude": "-90.47846000" + }, + { + "id": "124375", + "name": "Pleasant Prairie", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.55308000", + "longitude": "-87.93341000" + }, + { + "id": "124391", + "name": "Plover", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.45636000", + "longitude": "-89.54401000" + }, + { + "id": "124408", + "name": "Plymouth", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.74861000", + "longitude": "-87.97704000" + }, + { + "id": "124450", + "name": "Polk County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.46142000", + "longitude": "-92.44139000" + }, + { + "id": "124505", + "name": "Port Edwards", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.35080000", + "longitude": "-89.86540000" + }, + { + "id": "124540", + "name": "Port Washington", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.38722000", + "longitude": "-87.87564000" + }, + { + "id": "124546", + "name": "Portage", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.53915000", + "longitude": "-89.46262000" + }, + { + "id": "124547", + "name": "Portage County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.47604000", + "longitude": "-89.50142000" + }, + { + "id": "124564", + "name": "Portland", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.76886000", + "longitude": "-90.85819000" + }, + { + "id": "124595", + "name": "Potter Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.82168000", + "longitude": "-88.34898000" + }, + { + "id": "124616", + "name": "Powers Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.55363000", + "longitude": "-88.29454000" + }, + { + "id": "124621", + "name": "Poynette", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.39026000", + "longitude": "-89.40290000" + }, + { + "id": "124633", + "name": "Prairie du Chien", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.05165000", + "longitude": "-91.14124000" + }, + { + "id": "124634", + "name": "Prairie du Sac", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.28693000", + "longitude": "-89.72401000" + }, + { + "id": "124644", + "name": "Prescott", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.74886000", + "longitude": "-92.80215000" + }, + { + "id": "124664", + "name": "Price County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.68038000", + "longitude": "-90.36137000" + }, + { + "id": "124691", + "name": "Princeton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.85081000", + "longitude": "-89.12178000" + }, + { + "id": "124736", + "name": "Pulaski", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.67222000", + "longitude": "-88.24260000" + }, + { + "id": "124813", + "name": "Racine", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.72613000", + "longitude": "-87.78285000" + }, + { + "id": "124814", + "name": "Racine County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.72987000", + "longitude": "-87.81235000" + }, + { + "id": "124869", + "name": "Randolph", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.53915000", + "longitude": "-89.00678000" + }, + { + "id": "124880", + "name": "Random Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.55222000", + "longitude": "-87.96176000" + }, + { + "id": "124970", + "name": "Redgranite", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.04192000", + "longitude": "-89.09845000" + }, + { + "id": "124994", + "name": "Reedsburg", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.53248000", + "longitude": "-90.00263000" + }, + { + "id": "124996", + "name": "Reedsville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.15360000", + "longitude": "-87.95676000" + }, + { + "id": "125046", + "name": "Rhinelander", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.63662000", + "longitude": "-89.41208000" + }, + { + "id": "125050", + "name": "Rib Mountain", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.91275000", + "longitude": "-89.67540000" + }, + { + "id": "125055", + "name": "Rice Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.50607000", + "longitude": "-91.73823000" + }, + { + "id": "125062", + "name": "Richfield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.25612000", + "longitude": "-88.19398000" + }, + { + "id": "125073", + "name": "Richland Center", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.33471000", + "longitude": "-90.38679000" + }, + { + "id": "125077", + "name": "Richland County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.37564000", + "longitude": "-90.42948000" + }, + { + "id": "125095", + "name": "Richmond", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.71473000", + "longitude": "-88.74927000" + }, + { + "id": "125146", + "name": "Rio", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.44776000", + "longitude": "-89.23984000" + }, + { + "id": "125167", + "name": "Ripon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.84220000", + "longitude": "-88.83594000" + }, + { + "id": "125178", + "name": "River Falls", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.86136000", + "longitude": "-92.62381000" + }, + { + "id": "125182", + "name": "River Hills", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.17418000", + "longitude": "-87.92425000" + }, + { + "id": "125241", + "name": "Roberts", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.98386000", + "longitude": "-92.55603000" + }, + { + "id": "125269", + "name": "Rochester", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.74141000", + "longitude": "-88.22426000" + }, + { + "id": "125274", + "name": "Rock County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.67122000", + "longitude": "-89.07158000" + }, + { + "id": "125379", + "name": "Rome", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.22060000", + "longitude": "-89.80843000" + }, + { + "id": "125434", + "name": "Rosendale", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.80776000", + "longitude": "-88.67483000" + }, + { + "id": "125465", + "name": "Rothschild", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.88719000", + "longitude": "-89.62012000" + }, + { + "id": "125486", + "name": "Roxbury", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.24943000", + "longitude": "-89.67540000" + }, + { + "id": "125530", + "name": "Rusk County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.47513000", + "longitude": "-91.13312000" + }, + { + "id": "125556", + "name": "Rutland", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.87889000", + "longitude": "-89.35012000" + }, + { + "id": "125628", + "name": "Saint Croix County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.03407000", + "longitude": "-92.45278000" + }, + { + "id": "125629", + "name": "Saint Croix Falls", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.40996000", + "longitude": "-92.63965000" + }, + { + "id": "125634", + "name": "Saint Francis", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.96752000", + "longitude": "-87.87758000" + }, + { + "id": "125709", + "name": "Saint Peter", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.83638000", + "longitude": "-88.34149000" + }, + { + "id": "125738", + "name": "Salem", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.55474000", + "longitude": "-88.11092000" + }, + { + "id": "125963", + "name": "Sauk City", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.27082000", + "longitude": "-89.72207000" + }, + { + "id": "125964", + "name": "Sauk County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.42678000", + "longitude": "-89.94837000" + }, + { + "id": "125967", + "name": "Saukville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.38167000", + "longitude": "-87.94065000" + }, + { + "id": "125982", + "name": "Sawyer County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.87997000", + "longitude": "-91.14467000" + }, + { + "id": "126013", + "name": "Schofield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.90969000", + "longitude": "-89.60457000" + }, + { + "id": "126197", + "name": "Seymour", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.51499000", + "longitude": "-88.33038000" + }, + { + "id": "126230", + "name": "Sharon", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.50252000", + "longitude": "-88.72899000" + }, + { + "id": "126247", + "name": "Shawano", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.78221000", + "longitude": "-88.60899000" + }, + { + "id": "126248", + "name": "Shawano County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.78915000", + "longitude": "-88.76544000" + }, + { + "id": "126255", + "name": "Sheboygan", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.75083000", + "longitude": "-87.71453000" + }, + { + "id": "126256", + "name": "Sheboygan County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.75622000", + "longitude": "-87.79999000" + }, + { + "id": "126257", + "name": "Sheboygan Falls", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.73197000", + "longitude": "-87.82213000" + }, + { + "id": "126290", + "name": "Shell Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.73939000", + "longitude": "-91.92545000" + }, + { + "id": "126341", + "name": "Sherwood", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.17360000", + "longitude": "-88.25983000" + }, + { + "id": "126372", + "name": "Shorewood", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.08918000", + "longitude": "-87.88758000" + }, + { + "id": "126374", + "name": "Shorewood Hills", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.07750000", + "longitude": "-89.44568000" + }, + { + "id": "126388", + "name": "Shullsburg", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.57334000", + "longitude": "-90.23096000" + }, + { + "id": "126430", + "name": "Silver Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.05526000", + "longitude": "-89.22623000" + }, + { + "id": "126463", + "name": "Siren", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.78578000", + "longitude": "-92.38103000" + }, + { + "id": "126502", + "name": "Slinger", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.33361000", + "longitude": "-88.28621000" + }, + { + "id": "126576", + "name": "Somers", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.64030000", + "longitude": "-87.91036000" + }, + { + "id": "126585", + "name": "Somerset", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.12441000", + "longitude": "-92.67354000" + }, + { + "id": "126693", + "name": "South Milwaukee", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.91057000", + "longitude": "-87.86064000" + }, + { + "id": "126813", + "name": "Sparta", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.94413000", + "longitude": "-90.81291000" + }, + { + "id": "126827", + "name": "Spencer", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.75774000", + "longitude": "-90.29680000" + }, + { + "id": "126845", + "name": "Spooner", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.82245000", + "longitude": "-91.88934000" + }, + { + "id": "126856", + "name": "Spring Green", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.17527000", + "longitude": "-90.06790000" + }, + { + "id": "126879", + "name": "Spring Valley", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.84524000", + "longitude": "-92.23880000" + }, + { + "id": "126960", + "name": "Stanley", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.95997000", + "longitude": "-90.93708000" + }, + { + "id": "127043", + "name": "Stevens Point", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.52358000", + "longitude": "-89.57456000" + }, + { + "id": "127110", + "name": "Stoughton", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.91695000", + "longitude": "-89.21789000" + }, + { + "id": "127126", + "name": "Stratford", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.80108000", + "longitude": "-90.07930000" + }, + { + "id": "127141", + "name": "Strum", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.54969000", + "longitude": "-91.39266000" + }, + { + "id": "127149", + "name": "Sturgeon Bay", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.83416000", + "longitude": "-87.37704000" + }, + { + "id": "127153", + "name": "Sturtevant", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.69807000", + "longitude": "-87.89452000" + }, + { + "id": "127156", + "name": "Suamico", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.63194000", + "longitude": "-88.03927000" + }, + { + "id": "127237", + "name": "Sun Prairie", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.18360000", + "longitude": "-89.21373000" + }, + { + "id": "127279", + "name": "Superior", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.72077000", + "longitude": "-92.10408000" + }, + { + "id": "127302", + "name": "Sussex", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.13390000", + "longitude": "-88.22204000" + }, + { + "id": "127381", + "name": "Tainter Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.98913000", + "longitude": "-91.84767000" + }, + { + "id": "127457", + "name": "Taylor County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.21153000", + "longitude": "-90.50125000" + }, + { + "id": "127569", + "name": "Theresa", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.51722000", + "longitude": "-88.45121000" + }, + { + "id": "127576", + "name": "Thiensville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.23751000", + "longitude": "-87.97870000" + }, + { + "id": "127607", + "name": "Thorp", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.96108000", + "longitude": "-90.79986000" + }, + { + "id": "127634", + "name": "Tichigan", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.82890000", + "longitude": "-88.19759000" + }, + { + "id": "127708", + "name": "Tomah", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.97858000", + "longitude": "-90.50402000" + }, + { + "id": "127709", + "name": "Tomahawk", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.47108000", + "longitude": "-89.72986000" + }, + { + "id": "127798", + "name": "Trempealeau", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.00552000", + "longitude": "-91.44209000" + }, + { + "id": "127799", + "name": "Trempealeau County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.30395000", + "longitude": "-91.35846000" + }, + { + "id": "127908", + "name": "Turtle Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.39440000", + "longitude": "-92.14241000" + }, + { + "id": "127929", + "name": "Twin Lakes", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.53113000", + "longitude": "-88.24815000" + }, + { + "id": "127936", + "name": "Two Rivers", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.15388000", + "longitude": "-87.56925000" + }, + { + "id": "128005", + "name": "Union Grove", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.68807000", + "longitude": "-88.05147000" + }, + { + "id": "128193", + "name": "Vernon County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.59386000", + "longitude": "-90.83438000" + }, + { + "id": "128205", + "name": "Verona", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.99083000", + "longitude": "-89.53318000" + }, + { + "id": "128240", + "name": "Vilas County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.05289000", + "longitude": "-89.51477000" + }, + { + "id": "128292", + "name": "Viroqua", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.55692000", + "longitude": "-90.88874000" + }, + { + "id": "128380", + "name": "Wales", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.00445000", + "longitude": "-88.37676000" + }, + { + "id": "128440", + "name": "Walworth", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.53113000", + "longitude": "-88.59955000" + }, + { + "id": "128442", + "name": "Walworth County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.66848000", + "longitude": "-88.54192000" + }, + { + "id": "128534", + "name": "Washburn", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "46.67327000", + "longitude": "-90.89491000" + }, + { + "id": "128536", + "name": "Washburn County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "45.89918000", + "longitude": "-91.79123000" + }, + { + "id": "128576", + "name": "Washington County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.36847000", + "longitude": "-88.23078000" + }, + { + "id": "128608", + "name": "Waterford", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.76307000", + "longitude": "-88.21426000" + }, + { + "id": "128616", + "name": "Waterloo", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.18388000", + "longitude": "-88.98844000" + }, + { + "id": "128624", + "name": "Watertown", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.19472000", + "longitude": "-88.72899000" + }, + { + "id": "128649", + "name": "Waukesha", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.01168000", + "longitude": "-88.23148000" + }, + { + "id": "128650", + "name": "Waukesha County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.01819000", + "longitude": "-88.30453000" + }, + { + "id": "128654", + "name": "Waunakee", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.19194000", + "longitude": "-89.45567000" + }, + { + "id": "128655", + "name": "Waupaca", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.35803000", + "longitude": "-89.08595000" + }, + { + "id": "128656", + "name": "Waupaca County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.47043000", + "longitude": "-88.96482000" + }, + { + "id": "128657", + "name": "Waupun", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.63332000", + "longitude": "-88.72955000" + }, + { + "id": "128660", + "name": "Wausau", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.95914000", + "longitude": "-89.63012000" + }, + { + "id": "128661", + "name": "Waushara County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.11312000", + "longitude": "-89.24288000" + }, + { + "id": "128662", + "name": "Wautoma", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.07470000", + "longitude": "-89.28790000" + }, + { + "id": "128663", + "name": "Wauwatosa", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.04946000", + "longitude": "-88.00759000" + }, + { + "id": "128817", + "name": "West Allis", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.01668000", + "longitude": "-88.00703000" + }, + { + "id": "128820", + "name": "West Baraboo", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.47443000", + "longitude": "-89.77040000" + }, + { + "id": "128825", + "name": "West Bend", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.42528000", + "longitude": "-88.18343000" + }, + { + "id": "128933", + "name": "West Milwaukee", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.01251000", + "longitude": "-87.97259000" + }, + { + "id": "128973", + "name": "West Salem", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.89913000", + "longitude": "-91.08125000" + }, + { + "id": "129016", + "name": "Westby", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.65692000", + "longitude": "-90.85430000" + }, + { + "id": "129032", + "name": "Westfield", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.88359000", + "longitude": "-89.49346000" + }, + { + "id": "129063", + "name": "Weston", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.89080000", + "longitude": "-89.54762000" + }, + { + "id": "129098", + "name": "Weyauwega", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.32137000", + "longitude": "-88.93372000" + }, + { + "id": "129167", + "name": "Whitefish Bay", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.11334000", + "longitude": "-87.90009000" + }, + { + "id": "129171", + "name": "Whitehall", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.36746000", + "longitude": "-91.31655000" + }, + { + "id": "129191", + "name": "Whitewater", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.83362000", + "longitude": "-88.73233000" + }, + { + "id": "129197", + "name": "Whiting", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.49358000", + "longitude": "-89.55873000" + }, + { + "id": "129263", + "name": "Williams Bay", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.57807000", + "longitude": "-88.54093000" + }, + { + "id": "129364", + "name": "Wind Lake", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.82946000", + "longitude": "-88.15870000" + }, + { + "id": "129365", + "name": "Wind Point", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "42.78446000", + "longitude": "-87.76619000" + }, + { + "id": "129385", + "name": "Windsor", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.21833000", + "longitude": "-89.34151000" + }, + { + "id": "129409", + "name": "Winnebago County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.06888000", + "longitude": "-88.64466000" + }, + { + "id": "129410", + "name": "Winneconne", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.11082000", + "longitude": "-88.71261000" + }, + { + "id": "129457", + "name": "Wisconsin Dells", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "43.62748000", + "longitude": "-89.77096000" + }, + { + "id": "129458", + "name": "Wisconsin Rapids", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.38358000", + "longitude": "-89.81735000" + }, + { + "id": "129464", + "name": "Wittenberg", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.82720000", + "longitude": "-89.16956000" + }, + { + "id": "129486", + "name": "Wood County", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.45532000", + "longitude": "-90.04158000" + }, + { + "id": "129573", + "name": "Woodville", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.95302000", + "longitude": "-92.29130000" + }, + { + "id": "129612", + "name": "Wrightstown", + "state_id": 1441, + "state_code": "WI", + "country_id": 233, + "country_code": "US", + "latitude": "44.32582000", + "longitude": "-88.16288000" + }, + { + "id": "111054", + "name": "Afton", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.72493000", + "longitude": "-110.93187000" + }, + { + "id": "111113", + "name": "Albany County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.65447000", + "longitude": "-105.72391000" + }, + { + "id": "111366", + "name": "Antelope Valley-Crestview", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.22488000", + "longitude": "-105.47409000" + }, + { + "id": "111414", + "name": "Arapahoe", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.96218000", + "longitude": "-108.48983000" + }, + { + "id": "111807", + "name": "Bar Nunn", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.91358000", + "longitude": "-106.34336000" + }, + { + "id": "111878", + "name": "Basin", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.37996000", + "longitude": "-108.03899000" + }, + { + "id": "112322", + "name": "Big Horn County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.52682000", + "longitude": "-107.99521000" + }, + { + "id": "113016", + "name": "Buffalo", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.34831000", + "longitude": "-106.69894000" + }, + { + "id": "113303", + "name": "Campbell County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.24839000", + "longitude": "-105.54831000" + }, + { + "id": "113385", + "name": "Carbon County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.69459000", + "longitude": "-106.93061000" + }, + { + "id": "113524", + "name": "Casper", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.86663000", + "longitude": "-106.31308000" + }, + { + "id": "113926", + "name": "Cheyenne", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.13998000", + "longitude": "-104.82025000" + }, + { + "id": "114364", + "name": "Cody", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.52634000", + "longitude": "-109.05653000" + }, + { + "id": "114580", + "name": "Converse County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.97233000", + "longitude": "-105.50706000" + }, + { + "id": "114837", + "name": "Crook County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.58860000", + "longitude": "-104.56994000" + }, + { + "id": "115424", + "name": "Douglas", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.75969000", + "longitude": "-105.38221000" + }, + { + "id": "116214", + "name": "Ethete", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.02496000", + "longitude": "-108.77262000" + }, + { + "id": "116252", + "name": "Evanston", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.26828000", + "longitude": "-110.96324000" + }, + { + "id": "116255", + "name": "Evansville", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.85997000", + "longitude": "-106.26836000" + }, + { + "id": "116760", + "name": "Fort Washakie", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.00635000", + "longitude": "-108.88235000" + }, + { + "id": "116801", + "name": "Fox Farm-College", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.11203000", + "longitude": "-104.78546000" + }, + { + "id": "116928", + "name": "Fremont County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.04053000", + "longitude": "-108.63042000" + }, + { + "id": "117217", + "name": "Gillette", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.29109000", + "longitude": "-105.50222000" + }, + { + "id": "117303", + "name": "Glenrock", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.86136000", + "longitude": "-105.87223000" + }, + { + "id": "117411", + "name": "Goshen County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.08794000", + "longitude": "-104.35326000" + }, + { + "id": "117606", + "name": "Green River", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.52858000", + "longitude": "-109.46625000" + }, + { + "id": "117728", + "name": "Greybull", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.48912000", + "longitude": "-108.05621000" + }, + { + "id": "117781", + "name": "Guernsey", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.26969000", + "longitude": "-104.74163000" + }, + { + "id": "118495", + "name": "Hoback", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.28187000", + "longitude": "-110.78381000" + }, + { + "id": "118684", + "name": "Hot Springs County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.71893000", + "longitude": "-108.44210000" + }, + { + "id": "119074", + "name": "Jackson", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.47993000", + "longitude": "-110.76243000" + }, + { + "id": "119271", + "name": "Johnson County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.03877000", + "longitude": "-106.58463000" + }, + { + "id": "119434", + "name": "Kemmerer", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.79245000", + "longitude": "-110.53767000" + }, + { + "id": "120096", + "name": "Lander", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.83301000", + "longitude": "-108.73067000" + }, + { + "id": "120138", + "name": "Laramie", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.31137000", + "longitude": "-105.59110000" + }, + { + "id": "120139", + "name": "Laramie County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.30707000", + "longitude": "-104.68962000" + }, + { + "id": "120538", + "name": "Lincoln County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.26404000", + "longitude": "-110.65597000" + }, + { + "id": "120824", + "name": "Lovell", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.83745000", + "longitude": "-108.38956000" + }, + { + "id": "120892", + "name": "Lusk", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.76247000", + "longitude": "-104.45217000" + }, + { + "id": "120910", + "name": "Lyman", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.32745000", + "longitude": "-110.29293000" + }, + { + "id": "121190", + "name": "Marbleton", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.55355000", + "longitude": "-110.10932000" + }, + { + "id": "121896", + "name": "Mills", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.84052000", + "longitude": "-106.36586000" + }, + { + "id": "122199", + "name": "Moorcroft", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.26331000", + "longitude": "-104.95025000" + }, + { + "id": "122215", + "name": "Moose Wilson Road", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.52521000", + "longitude": "-110.84466000" + }, + { + "id": "122433", + "name": "Mountain View", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.26884000", + "longitude": "-110.33988000" + }, + { + "id": "122594", + "name": "Natrona County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.96224000", + "longitude": "-106.79849000" + }, + { + "id": "122822", + "name": "Newcastle", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.85470000", + "longitude": "-104.20494000" + }, + { + "id": "122904", + "name": "Niobrara County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.05650000", + "longitude": "-104.47538000" + }, + { + "id": "123097", + "name": "North Rock Springs", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.64358000", + "longitude": "-109.26568000" + }, + { + "id": "123843", + "name": "Park County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.52057000", + "longitude": "-109.58853000" + }, + { + "id": "124215", + "name": "Pine Bluffs", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.18193000", + "longitude": "-104.06912000" + }, + { + "id": "124249", + "name": "Pinedale", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.86661000", + "longitude": "-109.86099000" + }, + { + "id": "124355", + "name": "Platte County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.13305000", + "longitude": "-104.96582000" + }, + { + "id": "124611", + "name": "Powell", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.75384000", + "longitude": "-108.75735000" + }, + { + "id": "124820", + "name": "Rafter J Ranch", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.42604000", + "longitude": "-110.79909000" + }, + { + "id": "124846", + "name": "Ranchettes", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.21859000", + "longitude": "-104.79025000" + }, + { + "id": "124912", + "name": "Rawlins", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.79107000", + "longitude": "-107.23866000" + }, + { + "id": "125214", + "name": "Riverton", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.02496000", + "longitude": "-108.38010000" + }, + { + "id": "125287", + "name": "Rock Springs", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.58746000", + "longitude": "-109.20290000" + }, + { + "id": "125942", + "name": "Saratoga", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.45496000", + "longitude": "-106.80643000" + }, + { + "id": "126323", + "name": "Sheridan", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.79719000", + "longitude": "-106.95618000" + }, + { + "id": "126328", + "name": "Sheridan County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.79004000", + "longitude": "-106.87948000" + }, + { + "id": "126500", + "name": "Sleepy Hollow", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.24109000", + "longitude": "-105.42222000" + }, + { + "id": "126662", + "name": "South Greeley", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.09693000", + "longitude": "-104.80636000" + }, + { + "id": "126703", + "name": "South Park", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.42215000", + "longitude": "-110.79326000" + }, + { + "id": "126982", + "name": "Star Valley Ranch", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.97139000", + "longitude": "-110.95556000" + }, + { + "id": "127158", + "name": "Sublette County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.76691000", + "longitude": "-109.91471000" + }, + { + "id": "127248", + "name": "Sundance", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.40637000", + "longitude": "-104.37578000" + }, + { + "id": "127343", + "name": "Sweetwater County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.65950000", + "longitude": "-108.87942000" + }, + { + "id": "127539", + "name": "Teton County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.93476000", + "longitude": "-110.58974000" + }, + { + "id": "127572", + "name": "Thermopolis", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.64607000", + "longitude": "-108.21204000" + }, + { + "id": "127745", + "name": "Torrington", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.06246000", + "longitude": "-104.18439000" + }, + { + "id": "127955", + "name": "Uinta County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "41.28756000", + "longitude": "-110.54759000" + }, + { + "id": "128056", + "name": "Upton", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.09970000", + "longitude": "-104.62802000" + }, + { + "id": "128532", + "name": "Washakie County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.90500000", + "longitude": "-107.68286000" + }, + { + "id": "129064", + "name": "Weston County", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.84049000", + "longitude": "-104.56783000" + }, + { + "id": "129109", + "name": "Wheatland", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "42.05407000", + "longitude": "-104.95295000" + }, + { + "id": "129333", + "name": "Wilson", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.50076000", + "longitude": "-110.87521000" + }, + { + "id": "129589", + "name": "Worland", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "44.01690000", + "longitude": "-107.95537000" + }, + { + "id": "129606", + "name": "Wright", + "state_id": 1442, + "state_code": "WY", + "country_id": 233, + "country_code": "US", + "latitude": "43.75124000", + "longitude": "-105.49201000" + }, + { + "id": "129777", + "name": "Artigas", + "state_id": 3205, + "state_code": "AR", + "country_id": 235, + "country_code": "UY", + "latitude": "-30.40000000", + "longitude": "-56.46667000" + }, + { + "id": "129779", + "name": "Baltasar Brum", + "state_id": 3205, + "state_code": "AR", + "country_id": 235, + "country_code": "UY", + "latitude": "-30.71905000", + "longitude": "-57.32596000" + }, + { + "id": "129782", + "name": "Bella Unión", + "state_id": 3205, + "state_code": "AR", + "country_id": 235, + "country_code": "UY", + "latitude": "-30.25966000", + "longitude": "-57.59919000" + }, + { + "id": "129820", + "name": "Las Piedras", + "state_id": 3205, + "state_code": "AR", + "country_id": 235, + "country_code": "UY", + "latitude": "-30.26204000", + "longitude": "-57.58174000" + }, + { + "id": "129881", + "name": "Tomás Gomensoro", + "state_id": 3205, + "state_code": "AR", + "country_id": 235, + "country_code": "UY", + "latitude": "-30.42870000", + "longitude": "-57.43609000" + }, + { + "id": "129774", + "name": "Aguas Corrientes", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.52194000", + "longitude": "-56.39361000" + }, + { + "id": "129778", + "name": "Atlántida", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.77190000", + "longitude": "-55.75840000" + }, + { + "id": "129780", + "name": "Barra de Carrasco", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.87722000", + "longitude": "-56.02972000" + }, + { + "id": "129781", + "name": "Barros Blancos", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.75240000", + "longitude": "-56.00259000" + }, + { + "id": "129785", + "name": "Canelones", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.52278000", + "longitude": "-56.27778000" + }, + { + "id": "129794", + "name": "Colonia Nicolich", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.81516000", + "longitude": "-56.02435000" + }, + { + "id": "129802", + "name": "Empalme Olmos", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.69753000", + "longitude": "-55.89268000" + }, + { + "id": "129809", + "name": "Joaquín Suárez", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.73501000", + "longitude": "-56.03470000" + }, + { + "id": "129814", + "name": "Juanicó", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.59454000", + "longitude": "-56.25334000" + }, + { + "id": "129815", + "name": "La Floresta", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.75572000", + "longitude": "-55.68141000" + }, + { + "id": "129818", + "name": "La Paz", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.76031000", + "longitude": "-56.22590000" + }, + { + "id": "129819", + "name": "Las Piedras", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.73020000", + "longitude": "-56.21915000" + }, + { + "id": "129821", + "name": "Las Toscas", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.73333000", + "longitude": "-55.71667000" + }, + { + "id": "129824", + "name": "Los Cerrillos", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.60500000", + "longitude": "-56.35639000" + }, + { + "id": "129829", + "name": "Migues", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.48759000", + "longitude": "-55.62793000" + }, + { + "id": "129832", + "name": "Montes", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.49339000", + "longitude": "-55.56219000" + }, + { + "id": "129841", + "name": "Pando", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.71716000", + "longitude": "-55.95840000" + }, + { + "id": "129842", + "name": "Paso de Carrasco", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.86028000", + "longitude": "-56.05222000" + }, + { + "id": "129847", + "name": "Progreso", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.66737000", + "longitude": "-56.21758000" + }, + { + "id": "129858", + "name": "San Antonio", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.45130000", + "longitude": "-56.08036000" + }, + { + "id": "129859", + "name": "San Bautista", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.44016000", + "longitude": "-55.95861000" + }, + { + "id": "129862", + "name": "San Jacinto", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.54465000", + "longitude": "-55.87151000" + }, + { + "id": "129865", + "name": "San Ramón", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.29155000", + "longitude": "-55.95571000" + }, + { + "id": "129869", + "name": "Santa Lucía", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.45333000", + "longitude": "-56.39056000" + }, + { + "id": "129870", + "name": "Santa Rosa", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.49819000", + "longitude": "-56.03795000" + }, + { + "id": "129874", + "name": "Sauce", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.65191000", + "longitude": "-56.06431000" + }, + { + "id": "129875", + "name": "Soca", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.68432000", + "longitude": "-55.70200000" + }, + { + "id": "129878", + "name": "Tala", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.34349000", + "longitude": "-55.76375000" + }, + { + "id": "129880", + "name": "Toledo", + "state_id": 3213, + "state_code": "CA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.73807000", + "longitude": "-56.09469000" + }, + { + "id": "129773", + "name": "Aceguá", + "state_id": 3211, + "state_code": "CL", + "country_id": 235, + "country_code": "UY", + "latitude": "-31.87178000", + "longitude": "-54.16351000" + }, + { + "id": "129808", + "name": "Isidoro Noblía", + "state_id": 3211, + "state_code": "CL", + "country_id": 235, + "country_code": "UY", + "latitude": "-31.96218000", + "longitude": "-54.12309000" + }, + { + "id": "129827", + "name": "Melo", + "state_id": 3211, + "state_code": "CL", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.37028000", + "longitude": "-54.16750000" + }, + { + "id": "129856", + "name": "Río Branco", + "state_id": 3211, + "state_code": "CL", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.59802000", + "longitude": "-53.38583000" + }, + { + "id": "129885", + "name": "Tupambaé", + "state_id": 3211, + "state_code": "CL", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.83333000", + "longitude": "-54.76667000" + }, + { + "id": "129789", + "name": "Carmelo", + "state_id": 3208, + "state_code": "CO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.00023000", + "longitude": "-58.28402000" + }, + { + "id": "129795", + "name": "Colonia del Sacramento", + "state_id": 3208, + "state_code": "CO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.46262000", + "longitude": "-57.83976000" + }, + { + "id": "129804", + "name": "Florencio Sánchez", + "state_id": 3208, + "state_code": "CO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.87785000", + "longitude": "-57.37166000" + }, + { + "id": "129813", + "name": "Juan L. Lacaze", + "state_id": 3208, + "state_code": "CO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.41888000", + "longitude": "-57.45285000" + }, + { + "id": "129834", + "name": "Nueva Helvecia", + "state_id": 3208, + "state_code": "CO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.30000000", + "longitude": "-57.23333000" + }, + { + "id": "129835", + "name": "Nueva Palmira", + "state_id": 3208, + "state_code": "CO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.87031000", + "longitude": "-58.41176000" + }, + { + "id": "129837", + "name": "Ombúes de Lavalle", + "state_id": 3208, + "state_code": "CO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.93783000", + "longitude": "-57.80959000" + }, + { + "id": "129855", + "name": "Rosario", + "state_id": 3208, + "state_code": "CO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.31667000", + "longitude": "-57.35000000" + }, + { + "id": "129879", + "name": "Tarariras", + "state_id": 3208, + "state_code": "CO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.26555000", + "longitude": "-57.61866000" + }, + { + "id": "129784", + "name": "Blanquillo", + "state_id": 3209, + "state_code": "DU", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.76667000", + "longitude": "-55.63333000" + }, + { + "id": "129788", + "name": "Carlos Reyles", + "state_id": 3209, + "state_code": "DU", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.05658000", + "longitude": "-56.47652000" + }, + { + "id": "129800", + "name": "Durazno", + "state_id": 3209, + "state_code": "DU", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.38056000", + "longitude": "-56.52361000" + }, + { + "id": "129817", + "name": "La Paloma", + "state_id": 3209, + "state_code": "DU", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.72689000", + "longitude": "-55.58270000" + }, + { + "id": "129866", + "name": "Santa Bernardina", + "state_id": 3209, + "state_code": "DU", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.35360000", + "longitude": "-56.52498000" + }, + { + "id": "129873", + "name": "Sarandí del Yi", + "state_id": 3209, + "state_code": "DU", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.35000000", + "longitude": "-55.63333000" + }, + { + "id": "129892", + "name": "Villa del Carmen", + "state_id": 3209, + "state_code": "DU", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.23943000", + "longitude": "-56.00936000" + }, + { + "id": "129884", + "name": "Trinidad", + "state_id": 3203, + "state_code": "FS", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.51650000", + "longitude": "-56.89957000" + }, + { + "id": "129771", + "name": "25 de Agosto", + "state_id": 3217, + "state_code": "FD", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.41167000", + "longitude": "-56.40222000" + }, + { + "id": "129772", + "name": "25 de Mayo", + "state_id": 3217, + "state_code": "FD", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.18917000", + "longitude": "-56.33944000" + }, + { + "id": "129776", + "name": "Alejandro Gallinal", + "state_id": 3217, + "state_code": "FD", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.86252000", + "longitude": "-55.54264000" + }, + { + "id": "129786", + "name": "Cardal", + "state_id": 3217, + "state_code": "FD", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.29056000", + "longitude": "-56.38889000" + }, + { + "id": "129791", + "name": "Casupá", + "state_id": 3217, + "state_code": "FD", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.09994000", + "longitude": "-55.64811000" + }, + { + "id": "129805", + "name": "Florida", + "state_id": 3217, + "state_code": "FD", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.09556000", + "longitude": "-56.21417000" + }, + { + "id": "129872", + "name": "Sarandí Grande", + "state_id": 3217, + "state_code": "FD", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.73333000", + "longitude": "-56.33333000" + }, + { + "id": "129810", + "name": "José Batlle y Ordóñez", + "state_id": 3215, + "state_code": "LA", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.46667000", + "longitude": "-55.11667000" + }, + { + "id": "129812", + "name": "José Pedro Varela", + "state_id": 3215, + "state_code": "LA", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.45451000", + "longitude": "-54.53586000" + }, + { + "id": "129826", + "name": "Mariscala", + "state_id": 3215, + "state_code": "LA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.04085000", + "longitude": "-54.77732000" + }, + { + "id": "129830", + "name": "Minas", + "state_id": 3215, + "state_code": "LA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.37589000", + "longitude": "-55.23771000" + }, + { + "id": "129876", + "name": "Solís de Mataojo", + "state_id": 3215, + "state_code": "LA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.59951000", + "longitude": "-55.46808000" + }, + { + "id": "129775", + "name": "Aiguá", + "state_id": 3206, + "state_code": "MA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.20498000", + "longitude": "-54.75665000" + }, + { + "id": "129825", + "name": "Maldonado", + "state_id": 3206, + "state_code": "MA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.90000000", + "longitude": "-54.95000000" + }, + { + "id": "129840", + "name": "Pan de Azúcar", + "state_id": 3206, + "state_code": "MA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.77870000", + "longitude": "-55.23582000" + }, + { + "id": "129846", + "name": "Piriápolis", + "state_id": 3206, + "state_code": "MA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.86287000", + "longitude": "-55.27471000" + }, + { + "id": "129848", + "name": "Punta del Este", + "state_id": 3206, + "state_code": "MA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.94747000", + "longitude": "-54.93382000" + }, + { + "id": "129860", + "name": "San Carlos", + "state_id": 3206, + "state_code": "MA", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.79123000", + "longitude": "-54.91824000" + }, + { + "id": "129833", + "name": "Montevideo", + "state_id": 3218, + "state_code": "MO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.90328000", + "longitude": "-56.18816000" + }, + { + "id": "129838", + "name": "Pajas Blancas", + "state_id": 3218, + "state_code": "MO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.80167000", + "longitude": "-56.33417000" + }, + { + "id": "129871", + "name": "Santiago Vázquez", + "state_id": 3218, + "state_code": "MO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.79028000", + "longitude": "-56.35000000" + }, + { + "id": "129803", + "name": "Estación Porvenir", + "state_id": 3212, + "state_code": "PA", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.37085000", + "longitude": "-57.85371000" + }, + { + "id": "129807", + "name": "Guichón", + "state_id": 3212, + "state_code": "PA", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.35846000", + "longitude": "-57.19778000" + }, + { + "id": "129844", + "name": "Paysandú", + "state_id": 3212, + "state_code": "PA", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.31710000", + "longitude": "-58.08072000" + }, + { + "id": "129845", + "name": "Piedras Coloradas", + "state_id": 3212, + "state_code": "PA", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.37183000", + "longitude": "-57.60901000" + }, + { + "id": "129850", + "name": "Quebracho", + "state_id": 3212, + "state_code": "PA", + "country_id": 235, + "country_code": "UY", + "latitude": "-31.93526000", + "longitude": "-57.90140000" + }, + { + "id": "129861", + "name": "San Félix", + "state_id": 3212, + "state_code": "PA", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.34631000", + "longitude": "-58.10094000" + }, + { + "id": "129806", + "name": "Fray Bentos", + "state_id": 3210, + "state_code": "RN", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.11651000", + "longitude": "-58.31067000" + }, + { + "id": "129836", + "name": "Nuevo Berlín", + "state_id": 3210, + "state_code": "RN", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.97974000", + "longitude": "-58.05858000" + }, + { + "id": "129863", + "name": "San Javier", + "state_id": 3210, + "state_code": "RN", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.66523000", + "longitude": "-58.13320000" + }, + { + "id": "129893", + "name": "Young", + "state_id": 3210, + "state_code": "RN", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.69844000", + "longitude": "-57.62693000" + }, + { + "id": "129831", + "name": "Minas de Corrales", + "state_id": 3207, + "state_code": "RV", + "country_id": 235, + "country_code": "UY", + "latitude": "-31.57375000", + "longitude": "-55.47075000" + }, + { + "id": "129852", + "name": "Rivera", + "state_id": 3207, + "state_code": "RV", + "country_id": 235, + "country_code": "UY", + "latitude": "-30.90534000", + "longitude": "-55.55076000" + }, + { + "id": "129882", + "name": "Tranqueras", + "state_id": 3207, + "state_code": "RV", + "country_id": 235, + "country_code": "UY", + "latitude": "-31.20000000", + "longitude": "-55.75000000" + }, + { + "id": "129888", + "name": "Vichadero", + "state_id": 3207, + "state_code": "RV", + "country_id": 235, + "country_code": "UY", + "latitude": "-31.77794000", + "longitude": "-54.69183000" + }, + { + "id": "129790", + "name": "Castillos", + "state_id": 3216, + "state_code": "RO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.19871000", + "longitude": "-53.85919000" + }, + { + "id": "129792", + "name": "Cebollatí", + "state_id": 3216, + "state_code": "RO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.26703000", + "longitude": "-53.79425000" + }, + { + "id": "129793", + "name": "Chui", + "state_id": 3216, + "state_code": "RO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.69792000", + "longitude": "-53.45926000" + }, + { + "id": "129798", + "name": "Dieciocho de Julio", + "state_id": 3216, + "state_code": "RO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.68216000", + "longitude": "-53.55325000" + }, + { + "id": "129816", + "name": "La Paloma", + "state_id": 3216, + "state_code": "RO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.66268000", + "longitude": "-54.16452000" + }, + { + "id": "129822", + "name": "Lascano", + "state_id": 3216, + "state_code": "RO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.67235000", + "longitude": "-54.20650000" + }, + { + "id": "129853", + "name": "Rocha", + "state_id": 3216, + "state_code": "RO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.48333000", + "longitude": "-54.33333000" + }, + { + "id": "129886", + "name": "Velázquez", + "state_id": 3216, + "state_code": "RO", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.03631000", + "longitude": "-54.28054000" + }, + { + "id": "129783", + "name": "Belén", + "state_id": 3220, + "state_code": "SA", + "country_id": 235, + "country_code": "UY", + "latitude": "-30.78716000", + "longitude": "-57.77577000" + }, + { + "id": "129857", + "name": "Salto", + "state_id": 3220, + "state_code": "SA", + "country_id": 235, + "country_code": "UY", + "latitude": "-31.38333000", + "longitude": "-57.96667000" + }, + { + "id": "129889", + "name": "Villa Constitución", + "state_id": 3220, + "state_code": "SA", + "country_id": 235, + "country_code": "UY", + "latitude": "-31.06913000", + "longitude": "-57.84946000" + }, + { + "id": "129797", + "name": "Delta del Tigre", + "state_id": 3204, + "state_code": "SJ", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.76488000", + "longitude": "-56.36450000" + }, + { + "id": "129801", + "name": "Ecilda Paullier", + "state_id": 3204, + "state_code": "SJ", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.35778000", + "longitude": "-57.04883000" + }, + { + "id": "129823", + "name": "Libertad", + "state_id": 3204, + "state_code": "SJ", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.63459000", + "longitude": "-56.61739000" + }, + { + "id": "129849", + "name": "Puntas de Valdéz", + "state_id": 3204, + "state_code": "SJ", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.58550000", + "longitude": "-56.70097000" + }, + { + "id": "129851", + "name": "Rafael Perazza", + "state_id": 3204, + "state_code": "SJ", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.52335000", + "longitude": "-56.79710000" + }, + { + "id": "129854", + "name": "Rodríguez", + "state_id": 3204, + "state_code": "SJ", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.38100000", + "longitude": "-56.53797000" + }, + { + "id": "129864", + "name": "San José de Mayo", + "state_id": 3204, + "state_code": "SJ", + "country_id": 235, + "country_code": "UY", + "latitude": "-34.33750000", + "longitude": "-56.71361000" + }, + { + "id": "129787", + "name": "Cardona", + "state_id": 3219, + "state_code": "SO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.87049000", + "longitude": "-57.36954000" + }, + { + "id": "129799", + "name": "Dolores", + "state_id": 3219, + "state_code": "SO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.53009000", + "longitude": "-58.21701000" + }, + { + "id": "129811", + "name": "José Enrique Rodó", + "state_id": 3219, + "state_code": "SO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.69618000", + "longitude": "-57.53153000" + }, + { + "id": "129828", + "name": "Mercedes", + "state_id": 3219, + "state_code": "SO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.25240000", + "longitude": "-58.03047000" + }, + { + "id": "129839", + "name": "Palmitas", + "state_id": 3219, + "state_code": "SO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.50719000", + "longitude": "-57.80079000" + }, + { + "id": "129867", + "name": "Santa Catalina", + "state_id": 3219, + "state_code": "SO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.79100000", + "longitude": "-57.48824000" + }, + { + "id": "129891", + "name": "Villa Soriano", + "state_id": 3219, + "state_code": "SO", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.39811000", + "longitude": "-58.32177000" + }, + { + "id": "129796", + "name": "Curtina", + "state_id": 3221, + "state_code": "TA", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.15000000", + "longitude": "-56.11667000" + }, + { + "id": "129843", + "name": "Paso de los Toros", + "state_id": 3221, + "state_code": "TA", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.81667000", + "longitude": "-56.51667000" + }, + { + "id": "129877", + "name": "Tacuarembó", + "state_id": 3221, + "state_code": "TA", + "country_id": 235, + "country_code": "UY", + "latitude": "-31.71694000", + "longitude": "-55.98111000" + }, + { + "id": "129868", + "name": "Santa Clara de Olimar", + "state_id": 3214, + "state_code": "TT", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.92254000", + "longitude": "-54.94447000" + }, + { + "id": "129883", + "name": "Treinta y Tres", + "state_id": 3214, + "state_code": "TT", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.23333000", + "longitude": "-54.38333000" + }, + { + "id": "129887", + "name": "Vergara", + "state_id": 3214, + "state_code": "TT", + "country_id": 235, + "country_code": "UY", + "latitude": "-32.94419000", + "longitude": "-53.93810000" + }, + { + "id": "129890", + "name": "Villa Sara", + "state_id": 3214, + "state_code": "TT", + "country_id": 235, + "country_code": "UY", + "latitude": "-33.25340000", + "longitude": "-54.41947000" + }, + { + "id": "129894", + "name": "Andijon", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.78206000", + "longitude": "72.34424000" + }, + { + "id": "129895", + "name": "Andijon Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.80000000", + "longitude": "72.41667000" + }, + { + "id": "129897", + "name": "Asaka", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.64153000", + "longitude": "72.23868000" + }, + { + "id": "129898", + "name": "Asaka Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.66667000", + "longitude": "72.25000000" + }, + { + "id": "129899", + "name": "Baliqchi Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.86667000", + "longitude": "72.00000000" + }, + { + "id": "129908", + "name": "Bo‘z Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.66667000", + "longitude": "71.91667000" + }, + { + "id": "129910", + "name": "Buloqboshi Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.61667000", + "longitude": "72.46667000" + }, + { + "id": "129937", + "name": "Izboskan Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.91667000", + "longitude": "72.25000000" + }, + { + "id": "129938", + "name": "Jalolkuduk Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.75000000", + "longitude": "72.66667000" + }, + { + "id": "129946", + "name": "Khŭjaobod Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.66667000", + "longitude": "72.58333000" + }, + { + "id": "129956", + "name": "Marhamat", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.48048000", + "longitude": "72.31388000" + }, + { + "id": "129957", + "name": "Marhamat Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.50000000", + "longitude": "72.31667000" + }, + { + "id": "129971", + "name": "Oltinkŭl Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.80000000", + "longitude": "72.16667000" + }, + { + "id": "129973", + "name": "Pakhtaobod Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.93333000", + "longitude": "72.50000000" + }, + { + "id": "129976", + "name": "Paxtaobod", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.92936000", + "longitude": "72.49687000" + }, + { + "id": "129990", + "name": "Qŭrghontepa Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.75000000", + "longitude": "72.83333000" + }, + { + "id": "129987", + "name": "Qo‘rg‘ontepa", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.73192000", + "longitude": "72.76177000" + }, + { + "id": "129996", + "name": "Shahrikhon Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.71667000", + "longitude": "72.06667000" + }, + { + "id": "129998", + "name": "Shahrixon", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.71331000", + "longitude": "72.05706000" + }, + { + "id": "130012", + "name": "Ulug‘nor Tumani", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.75000000", + "longitude": "71.70000000" + }, + { + "id": "130018", + "name": "Xo‘jaobod", + "state_id": 2540, + "state_code": "AN", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.66886000", + "longitude": "72.56002000" + }, + { + "id": "129909", + "name": "Bukhara", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.77472000", + "longitude": "64.42861000" + }, + { + "id": "129925", + "name": "Galaosiyo", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.85778000", + "longitude": "64.44833000" + }, + { + "id": "129926", + "name": "Gazli", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.13333000", + "longitude": "63.45000000" + }, + { + "id": "129927", + "name": "Ghijduwon", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.10000000", + "longitude": "64.68333000" + }, + { + "id": "129942", + "name": "Karakul’", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.53333000", + "longitude": "63.83333000" + }, + { + "id": "129950", + "name": "Kogon", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.72278000", + "longitude": "64.55167000" + }, + { + "id": "129968", + "name": "Olot", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.41500000", + "longitude": "63.80333000" + }, + { + "id": "129978", + "name": "Peshku Tumani", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.41667000", + "longitude": "63.83333000" + }, + { + "id": "129984", + "name": "Qorako’l", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.49944000", + "longitude": "63.85389000" + }, + { + "id": "129985", + "name": "Qorovulbozor", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.50056000", + "longitude": "64.79361000" + }, + { + "id": "129993", + "name": "Romiton", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.92944000", + "longitude": "64.37944000" + }, + { + "id": "129999", + "name": "Shofirkon", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.12000000", + "longitude": "64.50139000" + }, + { + "id": "130016", + "name": "Wobkent", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.03028000", + "longitude": "64.51500000" + }, + { + "id": "130017", + "name": "Wobkent Tumani", + "state_id": 2541, + "state_code": "BU", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.00000000", + "longitude": "64.50000000" + }, + { + "id": "129903", + "name": "Beshariq", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.43583000", + "longitude": "70.61028000" + }, + { + "id": "129923", + "name": "Fergana", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.38421000", + "longitude": "71.78432000" + }, + { + "id": "129932", + "name": "Hamza", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.42762000", + "longitude": "71.50534000" + }, + { + "id": "129948", + "name": "Kirguli", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.43553000", + "longitude": "71.76721000" + }, + { + "id": "129955", + "name": "Marg‘ilon", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.47237000", + "longitude": "71.72463000" + }, + { + "id": "129969", + "name": "Oltiariq", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.39194000", + "longitude": "71.47417000" + }, + { + "id": "129986", + "name": "Qo‘qon", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.52861000", + "longitude": "70.94250000" + }, + { + "id": "129988", + "name": "Quva", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.52204000", + "longitude": "72.07292000" + }, + { + "id": "129989", + "name": "Quvasoy", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.29721000", + "longitude": "71.98026000" + }, + { + "id": "129992", + "name": "Rishton", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.35667000", + "longitude": "71.28472000" + }, + { + "id": "130000", + "name": "Shohimardon", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.98322000", + "longitude": "71.80512000" + }, + { + "id": "130004", + "name": "So‘x Tumani", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.04417000", + "longitude": "71.09417000" + }, + { + "id": "130008", + "name": "Toshloq", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.47722000", + "longitude": "71.76778000" + }, + { + "id": "130019", + "name": "Yangi Marg‘ilon", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.42722000", + "longitude": "71.71889000" + }, + { + "id": "130025", + "name": "Yaypan", + "state_id": 2538, + "state_code": "FA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.37583000", + "longitude": "70.81556000" + }, + { + "id": "129919", + "name": "Dashtobod", + "state_id": 2545, + "state_code": "JI", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.12694000", + "longitude": "68.49444000" + }, + { + "id": "129922", + "name": "Dŭstlik", + "state_id": 2545, + "state_code": "JI", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.52472000", + "longitude": "68.03583000" + }, + { + "id": "129924", + "name": "Gagarin", + "state_id": 2545, + "state_code": "JI", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.66194000", + "longitude": "68.17222000" + }, + { + "id": "129939", + "name": "Jizzax", + "state_id": 2545, + "state_code": "JI", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.11583000", + "longitude": "67.84222000" + }, + { + "id": "129975", + "name": "Paxtakor", + "state_id": 2545, + "state_code": "JI", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.31528000", + "longitude": "67.95444000" + }, + { + "id": "130027", + "name": "Zomin", + "state_id": 2545, + "state_code": "JI", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.96056000", + "longitude": "68.39583000" + }, + { + "id": "129902", + "name": "Beruniy", + "state_id": 2548, + "state_code": "QR", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.69111000", + "longitude": "60.75250000" + }, + { + "id": "129944", + "name": "Kegeyli Shahar", + "state_id": 2548, + "state_code": "QR", + "country_id": 236, + "country_code": "UZ", + "latitude": "42.77667000", + "longitude": "59.60778000" + }, + { + "id": "129947", + "name": "Khŭjayli", + "state_id": 2548, + "state_code": "QR", + "country_id": 236, + "country_code": "UZ", + "latitude": "42.40043000", + "longitude": "59.46005000" + }, + { + "id": "129954", + "name": "Manghit", + "state_id": 2548, + "state_code": "QR", + "country_id": 236, + "country_code": "UZ", + "latitude": "42.11556000", + "longitude": "60.05972000" + }, + { + "id": "129959", + "name": "Mŭynoq", + "state_id": 2548, + "state_code": "QR", + "country_id": 236, + "country_code": "UZ", + "latitude": "43.76833000", + "longitude": "59.02139000" + }, + { + "id": "129963", + "name": "Novyy Turtkul’", + "state_id": 2548, + "state_code": "QR", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.55000000", + "longitude": "61.01667000" + }, + { + "id": "129964", + "name": "Nukus", + "state_id": 2548, + "state_code": "QR", + "country_id": 236, + "country_code": "UZ", + "latitude": "42.45306000", + "longitude": "59.61028000" + }, + { + "id": "129970", + "name": "Oltinko‘l", + "state_id": 2548, + "state_code": "QR", + "country_id": 236, + "country_code": "UZ", + "latitude": "43.06874000", + "longitude": "58.90372000" + }, + { + "id": "129917", + "name": "Chortoq", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.06924000", + "longitude": "71.82372000" + }, + { + "id": "129918", + "name": "Chust", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.00329000", + "longitude": "71.23791000" + }, + { + "id": "129933", + "name": "Haqqulobod", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.91667000", + "longitude": "72.11667000" + }, + { + "id": "129952", + "name": "Kosonsoy", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.24944000", + "longitude": "71.54738000" + }, + { + "id": "129960", + "name": "Namangan", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.99830000", + "longitude": "71.67257000" + }, + { + "id": "129980", + "name": "Pop", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.87361000", + "longitude": "71.10889000" + }, + { + "id": "130009", + "name": "To‘rqao‘rg‘on", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.99984000", + "longitude": "71.51162000" + }, + { + "id": "130007", + "name": "Toshbuloq", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.91617000", + "longitude": "71.57819000" + }, + { + "id": "130011", + "name": "Uchqŭrghon Shahri", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.11371000", + "longitude": "72.07915000" + }, + { + "id": "130015", + "name": "Uychi", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.08073000", + "longitude": "71.92331000" + }, + { + "id": "130021", + "name": "Yangiqo‘rg‘on", + "state_id": 2537, + "state_code": "NG", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.19474000", + "longitude": "71.72385000" + }, + { + "id": "129961", + "name": "Navoiy", + "state_id": 2542, + "state_code": "NW", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.08444000", + "longitude": "65.37917000" + }, + { + "id": "129965", + "name": "Nurota", + "state_id": 2542, + "state_code": "NW", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.56139000", + "longitude": "65.68861000" + }, + { + "id": "129983", + "name": "Qiziltepa", + "state_id": 2542, + "state_code": "NW", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.03306000", + "longitude": "64.85000000" + }, + { + "id": "130022", + "name": "Yangirabot", + "state_id": 2542, + "state_code": "NW", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.02539000", + "longitude": "65.96095000" + }, + { + "id": "129904", + "name": "Beshkent", + "state_id": 2543, + "state_code": "QA", + "country_id": 236, + "country_code": "UZ", + "latitude": "38.82139000", + "longitude": "65.65306000" + }, + { + "id": "129916", + "name": "Chiroqchi", + "state_id": 2543, + "state_code": "QA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.03361000", + "longitude": "66.57222000" + }, + { + "id": "129931", + "name": "G‘uzor", + "state_id": 2543, + "state_code": "QA", + "country_id": 236, + "country_code": "UZ", + "latitude": "38.62083000", + "longitude": "66.24806000" + }, + { + "id": "129949", + "name": "Kitob", + "state_id": 2543, + "state_code": "QA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.08425000", + "longitude": "66.83318000" + }, + { + "id": "129951", + "name": "Koson", + "state_id": 2543, + "state_code": "QA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.03750000", + "longitude": "65.58500000" + }, + { + "id": "129958", + "name": "Muborak", + "state_id": 2543, + "state_code": "QA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.25528000", + "longitude": "65.15278000" + }, + { + "id": "129962", + "name": "Nishon Tumani", + "state_id": 2543, + "state_code": "QA", + "country_id": 236, + "country_code": "UZ", + "latitude": "38.69395000", + "longitude": "65.67512000" + }, + { + "id": "129981", + "name": "Qarshi", + "state_id": 2543, + "state_code": "QA", + "country_id": 236, + "country_code": "UZ", + "latitude": "38.86056000", + "longitude": "65.78905000" + }, + { + "id": "129997", + "name": "Shahrisabz", + "state_id": 2543, + "state_code": "QA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.05778000", + "longitude": "66.83417000" + }, + { + "id": "129911", + "name": "Bulung’ur", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.76472000", + "longitude": "67.27139000" + }, + { + "id": "129912", + "name": "Charxin", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.69667000", + "longitude": "66.76861000" + }, + { + "id": "129913", + "name": "Chelak", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.92028000", + "longitude": "66.86111000" + }, + { + "id": "129920", + "name": "Daxbet", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.76389000", + "longitude": "66.91250000" + }, + { + "id": "129935", + "name": "Ishtixon", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.96639000", + "longitude": "66.48611000" + }, + { + "id": "129940", + "name": "Jomboy", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.69889000", + "longitude": "67.09333000" + }, + { + "id": "129941", + "name": "Juma", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.71611000", + "longitude": "66.66417000" + }, + { + "id": "129943", + "name": "Kattaqo‘rg‘on", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.89889000", + "longitude": "66.25611000" + }, + { + "id": "129972", + "name": "Oqtosh", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.92139000", + "longitude": "65.92528000" + }, + { + "id": "129977", + "name": "Payshanba", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.00778000", + "longitude": "66.23694000" + }, + { + "id": "129995", + "name": "Samarkand", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.65417000", + "longitude": "66.95972000" + }, + { + "id": "130014", + "name": "Urgut", + "state_id": 2544, + "state_code": "SA", + "country_id": 236, + "country_code": "UZ", + "latitude": "39.40222000", + "longitude": "67.24306000" + }, + { + "id": "129928", + "name": "Guliston", + "state_id": 2547, + "state_code": "SI", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.48972000", + "longitude": "68.78417000" + }, + { + "id": "130003", + "name": "Sirdaryo", + "state_id": 2547, + "state_code": "SI", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.84361000", + "longitude": "68.66167000" + }, + { + "id": "130023", + "name": "Yangiyer", + "state_id": 2547, + "state_code": "SI", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.27500000", + "longitude": "68.82250000" + }, + { + "id": "129906", + "name": "Boysun", + "state_id": 2546, + "state_code": "SU", + "country_id": 236, + "country_code": "UZ", + "latitude": "38.20835000", + "longitude": "67.20664000" + }, + { + "id": "129921", + "name": "Denov", + "state_id": 2546, + "state_code": "SU", + "country_id": 236, + "country_code": "UZ", + "latitude": "38.26746000", + "longitude": "67.89886000" + }, + { + "id": "130002", + "name": "Sho‘rchi", + "state_id": 2546, + "state_code": "SU", + "country_id": 236, + "country_code": "UZ", + "latitude": "37.99944000", + "longitude": "67.78750000" + }, + { + "id": "130006", + "name": "Tirmiz", + "state_id": 2546, + "state_code": "SU", + "country_id": 236, + "country_code": "UZ", + "latitude": "37.22417000", + "longitude": "67.27833000" + }, + { + "id": "129901", + "name": "Bektemir", + "state_id": 2536, + "state_code": "TK", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.20972000", + "longitude": "69.33417000" + }, + { + "id": "130005", + "name": "Tashkent", + "state_id": 2536, + "state_code": "TK", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.26465000", + "longitude": "69.21627000" + }, + { + "id": "129896", + "name": "Angren", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.01667000", + "longitude": "70.14361000" + }, + { + "id": "130028", + "name": "Ŭrtaowul", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.18667000", + "longitude": "69.14528000" + }, + { + "id": "129900", + "name": "Bekobod", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.22083000", + "longitude": "69.26972000" + }, + { + "id": "129907", + "name": "Bo‘ka", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.81108000", + "longitude": "69.19417000" + }, + { + "id": "129914", + "name": "Chinoz", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.93633000", + "longitude": "68.76128000" + }, + { + "id": "129915", + "name": "Chirchiq", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.46889000", + "longitude": "69.58222000" + }, + { + "id": "129930", + "name": "G‘azalkent", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.55806000", + "longitude": "69.77083000" + }, + { + "id": "129936", + "name": "Iskandar", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.55389000", + "longitude": "69.70083000" + }, + { + "id": "129953", + "name": "Kyzyldzhar", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.56667000", + "longitude": "70.01667000" + }, + { + "id": "129966", + "name": "Ohangaron", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.90639000", + "longitude": "69.63833000" + }, + { + "id": "129967", + "name": "Olmaliq", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.84472000", + "longitude": "69.59833000" + }, + { + "id": "129974", + "name": "Parkent", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.29444000", + "longitude": "69.67639000" + }, + { + "id": "129979", + "name": "Piskent", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.89722000", + "longitude": "69.35056000" + }, + { + "id": "129982", + "name": "Qibray", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.38972000", + "longitude": "69.46500000" + }, + { + "id": "129994", + "name": "Salor", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.37222000", + "longitude": "69.38167000" + }, + { + "id": "130010", + "name": "Tŭytepa", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.03210000", + "longitude": "69.36253000" + }, + { + "id": "130020", + "name": "Yangiobod", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.11919000", + "longitude": "70.09406000" + }, + { + "id": "130024", + "name": "Yangiyŭl", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.11202000", + "longitude": "69.04710000" + }, + { + "id": "130026", + "name": "Zafar", + "state_id": 2549, + "state_code": "TO", + "country_id": 236, + "country_code": "UZ", + "latitude": "40.98333000", + "longitude": "68.90000000" + }, + { + "id": "129905", + "name": "Boghot Tumani", + "state_id": 2539, + "state_code": "XO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.31495000", + "longitude": "60.85327000" + }, + { + "id": "129929", + "name": "Gurlan", + "state_id": 2539, + "state_code": "XO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.84472000", + "longitude": "60.39194000" + }, + { + "id": "129934", + "name": "Hazorasp", + "state_id": 2539, + "state_code": "XO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.31944000", + "longitude": "61.07417000" + }, + { + "id": "129945", + "name": "Khiwa", + "state_id": 2539, + "state_code": "XO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.37833000", + "longitude": "60.36389000" + }, + { + "id": "129991", + "name": "Qŭshkŭpir", + "state_id": 2539, + "state_code": "XO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.53500000", + "longitude": "60.34556000" + }, + { + "id": "130001", + "name": "Showot", + "state_id": 2539, + "state_code": "XO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.65583000", + "longitude": "60.30250000" + }, + { + "id": "130013", + "name": "Urganch", + "state_id": 2539, + "state_code": "XO", + "country_id": 236, + "country_code": "UZ", + "latitude": "41.55000000", + "longitude": "60.63333000" + }, + { + "id": "130637", + "name": "Lakatoro", + "state_id": 4775, + "state_code": "MAP", + "country_id": 237, + "country_code": "VU", + "latitude": "-16.09992000", + "longitude": "167.41636000" + }, + { + "id": "130639", + "name": "Norsup", + "state_id": 4775, + "state_code": "MAP", + "country_id": 237, + "country_code": "VU", + "latitude": "-16.06536000", + "longitude": "167.39714000" + }, + { + "id": "130638", + "name": "Luganville", + "state_id": 4776, + "state_code": "SAM", + "country_id": 237, + "country_code": "VU", + "latitude": "-15.51989000", + "longitude": "167.16235000" + }, + { + "id": "130640", + "name": "Port-Olry", + "state_id": 4776, + "state_code": "SAM", + "country_id": 237, + "country_code": "VU", + "latitude": "-15.04175000", + "longitude": "167.07265000" + }, + { + "id": "130641", + "name": "Port-Vila", + "state_id": 4774, + "state_code": "SEE", + "country_id": 237, + "country_code": "VU", + "latitude": "-17.73648000", + "longitude": "168.31366000" + }, + { + "id": "130636", + "name": "Isangel", + "state_id": 4777, + "state_code": "TAE", + "country_id": 237, + "country_code": "VU", + "latitude": "-19.54167000", + "longitude": "169.28167000" + }, + { + "id": "130642", + "name": "Sola", + "state_id": 4772, + "state_code": "TOB", + "country_id": 237, + "country_code": "VU", + "latitude": "-13.87611000", + "longitude": "167.55167000" + }, + { + "id": "130106", + "name": "Maroa", + "state_id": 2044, + "state_code": "Z", + "country_id": 239, + "country_code": "VE", + "latitude": "2.71880000", + "longitude": "-67.56046000" + }, + { + "id": "130110", + "name": "Municipio Autónomo Alto Orinoco", + "state_id": 2044, + "state_code": "Z", + "country_id": 239, + "country_code": "VE", + "latitude": "2.73456000", + "longitude": "-64.83032000" + }, + { + "id": "130131", + "name": "Puerto Ayacucho", + "state_id": 2044, + "state_code": "Z", + "country_id": 239, + "country_code": "VE", + "latitude": "5.66049000", + "longitude": "-67.58343000" + }, + { + "id": "130142", + "name": "San Carlos de Río Negro", + "state_id": 2044, + "state_code": "Z", + "country_id": 239, + "country_code": "VE", + "latitude": "1.92027000", + "longitude": "-67.06089000" + }, + { + "id": "130146", + "name": "San Fernando de Atabapo", + "state_id": 2044, + "state_code": "Z", + "country_id": 239, + "country_code": "VE", + "latitude": "4.04564000", + "longitude": "-67.69934000" + }, + { + "id": "130149", + "name": "San Juan de Manapiare", + "state_id": 2044, + "state_code": "Z", + "country_id": 239, + "country_code": "VE", + "latitude": "5.32665000", + "longitude": "-66.05402000" + }, + { + "id": "130041", + "name": "Anaco", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "9.42958000", + "longitude": "-64.46428000" + }, + { + "id": "130042", + "name": "Aragua de Barcelona", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "9.45588000", + "longitude": "-64.82928000" + }, + { + "id": "130044", + "name": "Barcelona", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "10.13625000", + "longitude": "-64.68618000" + }, + { + "id": "130054", + "name": "Cantaura", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "9.30571000", + "longitude": "-64.35841000" + }, + { + "id": "130078", + "name": "El Tigre", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "8.88902000", + "longitude": "-64.25270000" + }, + { + "id": "130113", + "name": "Municipio José Gregorio Monagas", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "7.73874000", + "longitude": "-64.71876000" + }, + { + "id": "130127", + "name": "Onoto", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "9.59714000", + "longitude": "-65.19350000" + }, + { + "id": "130133", + "name": "Puerto La Cruz", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "10.21382000", + "longitude": "-64.63280000" + }, + { + "id": "130134", + "name": "Puerto Píritu", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "10.05896000", + "longitude": "-65.03698000" + }, + { + "id": "130148", + "name": "San José de Guanipa", + "state_id": 2050, + "state_code": "B", + "country_id": 239, + "country_code": "VE", + "latitude": "8.88724000", + "longitude": "-64.16512000" + }, + { + "id": "130052", + "name": "Cagua", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.18634000", + "longitude": "-67.45935000" + }, + { + "id": "130077", + "name": "El Limón", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.30589000", + "longitude": "-67.63212000" + }, + { + "id": "130093", + "name": "La Victoria", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.22677000", + "longitude": "-67.33122000" + }, + { + "id": "130096", + "name": "Las Tejerías", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.25416000", + "longitude": "-67.17333000" + }, + { + "id": "130104", + "name": "Maracay", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.23535000", + "longitude": "-67.59113000" + }, + { + "id": "130128", + "name": "Palo Negro", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.17389000", + "longitude": "-67.54194000" + }, + { + "id": "130151", + "name": "San Mateo", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.21302000", + "longitude": "-67.42365000" + }, + { + "id": "130153", + "name": "Santa Rita", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.20540000", + "longitude": "-67.55948000" + }, + { + "id": "130162", + "name": "Turmero", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.22856000", + "longitude": "-67.47421000" + }, + { + "id": "130169", + "name": "Villa de Cura", + "state_id": 2047, + "state_code": "D", + "country_id": 239, + "country_code": "VE", + "latitude": "10.03863000", + "longitude": "-67.48938000" + }, + { + "id": "130040", + "name": "Alto Barinas", + "state_id": 2049, + "state_code": "E", + "country_id": 239, + "country_code": "VE", + "latitude": "8.59310000", + "longitude": "-70.22610000" + }, + { + "id": "130045", + "name": "Barinas", + "state_id": 2049, + "state_code": "E", + "country_id": 239, + "country_code": "VE", + "latitude": "8.62261000", + "longitude": "-70.20749000" + }, + { + "id": "130046", + "name": "Barinitas", + "state_id": 2049, + "state_code": "E", + "country_id": 239, + "country_code": "VE", + "latitude": "8.76171000", + "longitude": "-70.41199000" + }, + { + "id": "130111", + "name": "Municipio Barinas", + "state_id": 2049, + "state_code": "E", + "country_id": 239, + "country_code": "VE", + "latitude": "8.61497000", + "longitude": "-70.19852000" + }, + { + "id": "130067", + "name": "Ciudad Bolívar", + "state_id": 2039, + "state_code": "F", + "country_id": 239, + "country_code": "VE", + "latitude": "8.12923000", + "longitude": "-63.54086000" + }, + { + "id": "130068", + "name": "Ciudad Guayana", + "state_id": 2039, + "state_code": "F", + "country_id": 239, + "country_code": "VE", + "latitude": "8.35122000", + "longitude": "-62.64102000" + }, + { + "id": "130119", + "name": "Municipio Padre Pedro Chien", + "state_id": 2039, + "state_code": "F", + "country_id": 239, + "country_code": "VE", + "latitude": "8.02455000", + "longitude": "-61.88187000" + }, + { + "id": "130152", + "name": "Santa Elena de Uairén", + "state_id": 2039, + "state_code": "F", + "country_id": 239, + "country_code": "VE", + "latitude": "4.60226000", + "longitude": "-61.11025000" + }, + { + "id": "130164", + "name": "Upata", + "state_id": 2039, + "state_code": "F", + "country_id": 239, + "country_code": "VE", + "latitude": "8.01620000", + "longitude": "-62.40561000" + }, + { + "id": "130085", + "name": "Güigüe", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.08344000", + "longitude": "-67.77799000" + }, + { + "id": "130081", + "name": "Guacara", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.22609000", + "longitude": "-67.87700000" + }, + { + "id": "130098", + "name": "Los Guayos", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.18932000", + "longitude": "-67.93828000" + }, + { + "id": "130105", + "name": "Mariara", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.29532000", + "longitude": "-67.71770000" + }, + { + "id": "130108", + "name": "Morón", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.48715000", + "longitude": "-68.20078000" + }, + { + "id": "130132", + "name": "Puerto Cabello", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.47306000", + "longitude": "-68.01250000" + }, + { + "id": "130147", + "name": "San Joaquín", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.26061000", + "longitude": "-67.79348000" + }, + { + "id": "130156", + "name": "Tacarigua", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.08621000", + "longitude": "-67.91982000" + }, + { + "id": "130158", + "name": "Tocuyito", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.11347000", + "longitude": "-68.06783000" + }, + { + "id": "130165", + "name": "Valencia", + "state_id": 2040, + "state_code": "G", + "country_id": 239, + "country_code": "VE", + "latitude": "10.16202000", + "longitude": "-68.00765000" + }, + { + "id": "130141", + "name": "San Carlos", + "state_id": 2034, + "state_code": "H", + "country_id": 239, + "country_code": "VE", + "latitude": "9.66124000", + "longitude": "-68.58268000" + }, + { + "id": "130157", + "name": "Tinaquillo", + "state_id": 2034, + "state_code": "H", + "country_id": 239, + "country_code": "VE", + "latitude": "9.91861000", + "longitude": "-68.30472000" + }, + { + "id": "130161", + "name": "Tucupita", + "state_id": 2051, + "state_code": "Y", + "country_id": 239, + "country_code": "VE", + "latitude": "9.05806000", + "longitude": "-62.05000000" + }, + { + "id": "130065", + "name": "Chichiriviche", + "state_id": 2035, + "state_code": "I", + "country_id": 239, + "country_code": "VE", + "latitude": "10.92872000", + "longitude": "-68.27283000" + }, + { + "id": "130071", + "name": "Coro", + "state_id": 2035, + "state_code": "I", + "country_id": 239, + "country_code": "VE", + "latitude": "11.40450000", + "longitude": "-69.67344000" + }, + { + "id": "130116", + "name": "Municipio Los Taques", + "state_id": 2035, + "state_code": "I", + "country_id": 239, + "country_code": "VE", + "latitude": "11.82308000", + "longitude": "-70.25353000" + }, + { + "id": "130118", + "name": "Municipio Miranda", + "state_id": 2035, + "state_code": "I", + "country_id": 239, + "country_code": "VE", + "latitude": "11.31667000", + "longitude": "-69.86667000" + }, + { + "id": "130135", + "name": "Punta Cardón", + "state_id": 2035, + "state_code": "I", + "country_id": 239, + "country_code": "VE", + "latitude": "11.65806000", + "longitude": "-70.21500000" + }, + { + "id": "130136", + "name": "Punto Fijo", + "state_id": 2035, + "state_code": "I", + "country_id": 239, + "country_code": "VE", + "latitude": "11.69152000", + "longitude": "-70.19918000" + }, + { + "id": "130160", + "name": "Tucacas", + "state_id": 2035, + "state_code": "I", + "country_id": 239, + "country_code": "VE", + "latitude": "10.79006000", + "longitude": "-68.32564000" + }, + { + "id": "130039", + "name": "Altagracia de Orituco", + "state_id": 2045, + "state_code": "J", + "country_id": 239, + "country_code": "VE", + "latitude": "9.86005000", + "longitude": "-66.38139000" + }, + { + "id": "130053", + "name": "Calabozo", + "state_id": 2045, + "state_code": "J", + "country_id": 239, + "country_code": "VE", + "latitude": "8.92416000", + "longitude": "-67.42929000" + }, + { + "id": "130150", + "name": "San Juan de los Morros", + "state_id": 2045, + "state_code": "J", + "country_id": 239, + "country_code": "VE", + "latitude": "9.91152000", + "longitude": "-67.35381000" + }, + { + "id": "130167", + "name": "Valle de La Pascua", + "state_id": 2045, + "state_code": "J", + "country_id": 239, + "country_code": "VE", + "latitude": "9.21554000", + "longitude": "-66.00734000" + }, + { + "id": "130171", + "name": "Zaraza", + "state_id": 2045, + "state_code": "J", + "country_id": 239, + "country_code": "VE", + "latitude": "9.35029000", + "longitude": "-65.32452000" + }, + { + "id": "130047", + "name": "Barquisimeto", + "state_id": 2038, + "state_code": "K", + "country_id": 239, + "country_code": "VE", + "latitude": "10.06470000", + "longitude": "-69.35703000" + }, + { + "id": "130051", + "name": "Cabudare", + "state_id": 2038, + "state_code": "K", + "country_id": 239, + "country_code": "VE", + "latitude": "10.02658000", + "longitude": "-69.26203000" + }, + { + "id": "130057", + "name": "Carora", + "state_id": 2038, + "state_code": "K", + "country_id": 239, + "country_code": "VE", + "latitude": "10.17283000", + "longitude": "-70.08100000" + }, + { + "id": "130079", + "name": "El Tocuyo", + "state_id": 2038, + "state_code": "K", + "country_id": 239, + "country_code": "VE", + "latitude": "9.78709000", + "longitude": "-69.79294000" + }, + { + "id": "130099", + "name": "Los Rastrojos", + "state_id": 2038, + "state_code": "K", + "country_id": 239, + "country_code": "VE", + "latitude": "10.02588000", + "longitude": "-69.24166000" + }, + { + "id": "130137", + "name": "Quíbor", + "state_id": 2038, + "state_code": "K", + "country_id": 239, + "country_code": "VE", + "latitude": "9.92866000", + "longitude": "-69.62010000" + }, + { + "id": "130074", + "name": "Ejido", + "state_id": 2053, + "state_code": "L", + "country_id": 239, + "country_code": "VE", + "latitude": "8.54665000", + "longitude": "-71.24087000" + }, + { + "id": "130080", + "name": "El Vigía", + "state_id": 2053, + "state_code": "L", + "country_id": 239, + "country_code": "VE", + "latitude": "8.61350000", + "longitude": "-71.65702000" + }, + { + "id": "130124", + "name": "Mérida", + "state_id": 2053, + "state_code": "L", + "country_id": 239, + "country_code": "VE", + "latitude": "8.58972000", + "longitude": "-71.15611000" + }, + { + "id": "130109", + "name": "Mucumpiz", + "state_id": 2053, + "state_code": "L", + "country_id": 239, + "country_code": "VE", + "latitude": "8.41667000", + "longitude": "-71.13333000" + }, + { + "id": "130115", + "name": "Municipio Libertador", + "state_id": 2053, + "state_code": "L", + "country_id": 239, + "country_code": "VE", + "latitude": "8.33333000", + "longitude": "-71.11667000" + }, + { + "id": "130048", + "name": "Baruta", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.43424000", + "longitude": "-66.87558000" + }, + { + "id": "130058", + "name": "Carrizal", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.34985000", + "longitude": "-66.98632000" + }, + { + "id": "130062", + "name": "Caucagüito", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.48666000", + "longitude": "-66.73799000" + }, + { + "id": "130061", + "name": "Caucaguita", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.35782000", + "longitude": "-66.80252000" + }, + { + "id": "130073", + "name": "Cúa", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.16245000", + "longitude": "-66.88248000" + }, + { + "id": "130063", + "name": "Chacao", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.49581000", + "longitude": "-66.85367000" + }, + { + "id": "130064", + "name": "Charallave", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.24247000", + "longitude": "-66.85723000" + }, + { + "id": "130075", + "name": "El Cafetal", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.46541000", + "longitude": "-66.82951000" + }, + { + "id": "130076", + "name": "El Hatillo", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.42411000", + "longitude": "-66.82581000" + }, + { + "id": "130083", + "name": "Guarenas", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.47027000", + "longitude": "-66.61934000" + }, + { + "id": "130084", + "name": "Guatire", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.47400000", + "longitude": "-66.54241000" + }, + { + "id": "130089", + "name": "La Dolorita", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.48830000", + "longitude": "-66.78608000" + }, + { + "id": "130097", + "name": "Los Dos Caminos", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.49389000", + "longitude": "-66.82863000" + }, + { + "id": "130100", + "name": "Los Teques", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.34447000", + "longitude": "-67.04325000" + }, + { + "id": "130126", + "name": "Ocumare del Tuy", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.11820000", + "longitude": "-66.77513000" + }, + { + "id": "130129", + "name": "Petare", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.47679000", + "longitude": "-66.80786000" + }, + { + "id": "130139", + "name": "San Antonio de Los Altos", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.38853000", + "longitude": "-66.95179000" + }, + { + "id": "130155", + "name": "Santa Teresa del Tuy", + "state_id": 2037, + "state_code": "M", + "country_id": 239, + "country_code": "VE", + "latitude": "10.23291000", + "longitude": "-66.66474000" + }, + { + "id": "130056", + "name": "Caripito", + "state_id": 2054, + "state_code": "N", + "country_id": 239, + "country_code": "VE", + "latitude": "10.11135000", + "longitude": "-63.09985000" + }, + { + "id": "130107", + "name": "Maturín", + "state_id": 2054, + "state_code": "N", + "country_id": 239, + "country_code": "VE", + "latitude": "9.74569000", + "longitude": "-63.18323000" + }, + { + "id": "130117", + "name": "Municipio Maturín", + "state_id": 2054, + "state_code": "N", + "country_id": 239, + "country_code": "VE", + "latitude": "9.40000000", + "longitude": "-63.03333000" + }, + { + "id": "130122", + "name": "Municipio Uracoa", + "state_id": 2054, + "state_code": "N", + "country_id": 239, + "country_code": "VE", + "latitude": "8.99960000", + "longitude": "-62.35164000" + }, + { + "id": "130087", + "name": "Juan Griego", + "state_id": 2052, + "state_code": "O", + "country_id": 239, + "country_code": "VE", + "latitude": "11.08172000", + "longitude": "-63.96549000" + }, + { + "id": "130088", + "name": "La Asunción", + "state_id": 2052, + "state_code": "O", + "country_id": 239, + "country_code": "VE", + "latitude": "11.03333000", + "longitude": "-63.86278000" + }, + { + "id": "130130", + "name": "Porlamar", + "state_id": 2052, + "state_code": "O", + "country_id": 239, + "country_code": "VE", + "latitude": "10.95771000", + "longitude": "-63.86971000" + }, + { + "id": "130038", + "name": "Acarigua", + "state_id": 2036, + "state_code": "P", + "country_id": 239, + "country_code": "VE", + "latitude": "9.55451000", + "longitude": "-69.19564000" + }, + { + "id": "130043", + "name": "Araure", + "state_id": 2036, + "state_code": "P", + "country_id": 239, + "country_code": "VE", + "latitude": "9.58144000", + "longitude": "-69.23851000" + }, + { + "id": "130082", + "name": "Guanare", + "state_id": 2036, + "state_code": "P", + "country_id": 239, + "country_code": "VE", + "latitude": "9.04183000", + "longitude": "-69.74206000" + }, + { + "id": "130168", + "name": "Villa Bruzual", + "state_id": 2036, + "state_code": "P", + "country_id": 239, + "country_code": "VE", + "latitude": "9.33186000", + "longitude": "-69.11968000" + }, + { + "id": "130059", + "name": "Carúpano", + "state_id": 2056, + "state_code": "R", + "country_id": 239, + "country_code": "VE", + "latitude": "10.66516000", + "longitude": "-63.25387000" + }, + { + "id": "130072", + "name": "Cumaná", + "state_id": 2056, + "state_code": "R", + "country_id": 239, + "country_code": "VE", + "latitude": "10.45397000", + "longitude": "-64.18256000" + }, + { + "id": "130086", + "name": "Güiria", + "state_id": 2056, + "state_code": "R", + "country_id": 239, + "country_code": "VE", + "latitude": "10.57721000", + "longitude": "-62.29841000" + }, + { + "id": "130123", + "name": "Municipio Valdez", + "state_id": 2056, + "state_code": "R", + "country_id": 239, + "country_code": "VE", + "latitude": "10.57945000", + "longitude": "-62.30029000" + }, + { + "id": "130070", + "name": "Colón", + "state_id": 2048, + "state_code": "S", + "country_id": 239, + "country_code": "VE", + "latitude": "8.03125000", + "longitude": "-72.26053000" + }, + { + "id": "130090", + "name": "La Fría", + "state_id": 2048, + "state_code": "S", + "country_id": 239, + "country_code": "VE", + "latitude": "8.21523000", + "longitude": "-72.24888000" + }, + { + "id": "130091", + "name": "La Grita", + "state_id": 2048, + "state_code": "S", + "country_id": 239, + "country_code": "VE", + "latitude": "8.13316000", + "longitude": "-71.98390000" + }, + { + "id": "130114", + "name": "Municipio José María Vargas", + "state_id": 2048, + "state_code": "S", + "country_id": 239, + "country_code": "VE", + "latitude": "8.03514000", + "longitude": "-72.05675000" + }, + { + "id": "130138", + "name": "Rubio", + "state_id": 2048, + "state_code": "S", + "country_id": 239, + "country_code": "VE", + "latitude": "7.70131000", + "longitude": "-72.35569000" + }, + { + "id": "130140", + "name": "San Antonio del Táchira", + "state_id": 2048, + "state_code": "S", + "country_id": 239, + "country_code": "VE", + "latitude": "7.81454000", + "longitude": "-72.44310000" + }, + { + "id": "130144", + "name": "San Cristóbal", + "state_id": 2048, + "state_code": "S", + "country_id": 239, + "country_code": "VE", + "latitude": "7.76694000", + "longitude": "-72.22500000" + }, + { + "id": "130163", + "name": "Táriba", + "state_id": 2048, + "state_code": "S", + "country_id": 239, + "country_code": "VE", + "latitude": "7.81880000", + "longitude": "-72.22427000" + }, + { + "id": "130049", + "name": "Boconó", + "state_id": 2043, + "state_code": "T", + "country_id": 239, + "country_code": "VE", + "latitude": "9.25385000", + "longitude": "-70.25105000" + }, + { + "id": "130120", + "name": "Municipio Pampanito", + "state_id": 2043, + "state_code": "T", + "country_id": 239, + "country_code": "VE", + "latitude": "9.41147000", + "longitude": "-70.49592000" + }, + { + "id": "130121", + "name": "Municipio San Rafael de Carvajal", + "state_id": 2043, + "state_code": "T", + "country_id": 239, + "country_code": "VE", + "latitude": "9.30756000", + "longitude": "-70.58965000" + }, + { + "id": "130159", + "name": "Trujillo", + "state_id": 2043, + "state_code": "T", + "country_id": 239, + "country_code": "VE", + "latitude": "9.36583000", + "longitude": "-70.43694000" + }, + { + "id": "130166", + "name": "Valera", + "state_id": 2043, + "state_code": "T", + "country_id": 239, + "country_code": "VE", + "latitude": "9.31778000", + "longitude": "-70.60361000" + }, + { + "id": "130055", + "name": "Caraballeda", + "state_id": 2055, + "state_code": "X", + "country_id": 239, + "country_code": "VE", + "latitude": "10.61216000", + "longitude": "-66.85192000" + }, + { + "id": "130060", + "name": "Catia La Mar", + "state_id": 2055, + "state_code": "X", + "country_id": 239, + "country_code": "VE", + "latitude": "10.60545000", + "longitude": "-67.03238000" + }, + { + "id": "130092", + "name": "La Guaira", + "state_id": 2055, + "state_code": "X", + "country_id": 239, + "country_code": "VE", + "latitude": "10.60156000", + "longitude": "-66.93293000" + }, + { + "id": "130102", + "name": "Maiquetía", + "state_id": 2055, + "state_code": "X", + "country_id": 239, + "country_code": "VE", + "latitude": "10.59450000", + "longitude": "-66.95624000" + }, + { + "id": "130066", + "name": "Chivacoa", + "state_id": 2041, + "state_code": "U", + "country_id": 239, + "country_code": "VE", + "latitude": "10.15951000", + "longitude": "-68.89453000" + }, + { + "id": "130112", + "name": "Municipio Independencia", + "state_id": 2041, + "state_code": "U", + "country_id": 239, + "country_code": "VE", + "latitude": "10.33472000", + "longitude": "-68.75555000" + }, + { + "id": "130125", + "name": "Nirgua", + "state_id": 2041, + "state_code": "U", + "country_id": 239, + "country_code": "VE", + "latitude": "10.15039000", + "longitude": "-68.56478000" + }, + { + "id": "130145", + "name": "San Felipe", + "state_id": 2041, + "state_code": "U", + "country_id": 239, + "country_code": "VE", + "latitude": "10.33991000", + "longitude": "-68.74247000" + }, + { + "id": "130170", + "name": "Yaritagua", + "state_id": 2041, + "state_code": "U", + "country_id": 239, + "country_code": "VE", + "latitude": "10.08081000", + "longitude": "-69.12420000" + }, + { + "id": "130050", + "name": "Cabimas", + "state_id": 2042, + "state_code": "V", + "country_id": 239, + "country_code": "VE", + "latitude": "10.39907000", + "longitude": "-71.45206000" + }, + { + "id": "130069", + "name": "Ciudad Ojeda", + "state_id": 2042, + "state_code": "V", + "country_id": 239, + "country_code": "VE", + "latitude": "10.20161000", + "longitude": "-71.31480000" + }, + { + "id": "130094", + "name": "La Villa del Rosario", + "state_id": 2042, + "state_code": "V", + "country_id": 239, + "country_code": "VE", + "latitude": "10.32580000", + "longitude": "-72.31343000" + }, + { + "id": "130095", + "name": "Lagunillas", + "state_id": 2042, + "state_code": "V", + "country_id": 239, + "country_code": "VE", + "latitude": "10.13008000", + "longitude": "-71.25946000" + }, + { + "id": "130101", + "name": "Machiques", + "state_id": 2042, + "state_code": "V", + "country_id": 239, + "country_code": "VE", + "latitude": "10.06077000", + "longitude": "-72.55212000" + }, + { + "id": "130103", + "name": "Maracaibo", + "state_id": 2042, + "state_code": "V", + "country_id": 239, + "country_code": "VE", + "latitude": "10.66663000", + "longitude": "-71.61245000" + }, + { + "id": "130143", + "name": "San Carlos del Zulia", + "state_id": 2042, + "state_code": "V", + "country_id": 239, + "country_code": "VE", + "latitude": "9.00098000", + "longitude": "-71.92683000" + }, + { + "id": "130154", + "name": "Santa Rita", + "state_id": 2042, + "state_code": "V", + "country_id": 239, + "country_code": "VE", + "latitude": "10.53642000", + "longitude": "-71.51104000" + }, + { + "id": "130185", + "name": "Cho Dok", + "state_id": 3794, + "state_code": "44", + "country_id": 240, + "country_code": "VN", + "latitude": "10.70000000", + "longitude": "105.11667000" + }, + { + "id": "130211", + "name": "Huyện An Phú", + "state_id": 3794, + "state_code": "44", + "country_id": 240, + "country_code": "VN", + "latitude": "10.84274000", + "longitude": "105.08990000" + }, + { + "id": "130248", + "name": "Huyện Châu Phú", + "state_id": 3794, + "state_code": "44", + "country_id": 240, + "country_code": "VN", + "latitude": "10.57166000", + "longitude": "105.16991000" + }, + { + "id": "130262", + "name": "Huyện Chợ Mới", + "state_id": 3794, + "state_code": "44", + "country_id": 240, + "country_code": "VN", + "latitude": "10.47730000", + "longitude": "105.49092000" + }, + { + "id": "130401", + "name": "Huyện Phú Tân", + "state_id": 3794, + "state_code": "44", + "country_id": 240, + "country_code": "VN", + "latitude": "10.65716000", + "longitude": "105.28459000" + }, + { + "id": "130461", + "name": "Huyện Tri Tôn", + "state_id": 3794, + "state_code": "44", + "country_id": 240, + "country_code": "VN", + "latitude": "10.41416000", + "longitude": "104.96136000" + }, + { + "id": "130569", + "name": "Long Xuyên", + "state_id": 3794, + "state_code": "44", + "country_id": 240, + "country_code": "VN", + "latitude": "10.38639000", + "longitude": "105.43518000" + }, + { + "id": "130570", + "name": "Long Xuyên City", + "state_id": 3794, + "state_code": "44", + "country_id": 240, + "country_code": "VN", + "latitude": "10.36857000", + "longitude": "105.42340000" + }, + { + "id": "130173", + "name": "Buôn Ma Thuột", + "state_id": 3829, + "state_code": "33", + "country_id": 240, + "country_code": "VN", + "latitude": "12.66747000", + "longitude": "108.03775000" + }, + { + "id": "130217", + "name": "Huyện Buôn Đôn", + "state_id": 3829, + "state_code": "33", + "country_id": 240, + "country_code": "VN", + "latitude": "12.90396000", + "longitude": "107.73870000" + }, + { + "id": "130283", + "name": "Huyện Ea H'Leo", + "state_id": 3829, + "state_code": "33", + "country_id": 240, + "country_code": "VN", + "latitude": "13.31814000", + "longitude": "108.07148000" + }, + { + "id": "130284", + "name": "Huyện Ea Súp", + "state_id": 3829, + "state_code": "33", + "country_id": 240, + "country_code": "VN", + "latitude": "13.18279000", + "longitude": "107.79954000" + }, + { + "id": "130544", + "name": "Huyện Đắk R’Lấp", + "state_id": 3823, + "state_code": "72", + "country_id": 240, + "country_code": "VN", + "latitude": "11.87990000", + "longitude": "107.52244000" + }, + { + "id": "130269", + "name": "Huyện Cư Jút", + "state_id": 3823, + "state_code": "72", + "country_id": 240, + "country_code": "VN", + "latitude": "12.69591000", + "longitude": "107.76316000" + }, + { + "id": "130333", + "name": "Huyện Krông Nô", + "state_id": 3823, + "state_code": "72", + "country_id": 240, + "country_code": "VN", + "latitude": "12.36285000", + "longitude": "107.83445000" + }, + { + "id": "130172", + "name": "Biên Hòa", + "state_id": 3821, + "state_code": "39", + "country_id": 240, + "country_code": "VN", + "latitude": "10.94469000", + "longitude": "106.82432000" + }, + { + "id": "130546", + "name": "Huyện Định Quán", + "state_id": 3821, + "state_code": "39", + "country_id": 240, + "country_code": "VN", + "latitude": "11.21866000", + "longitude": "107.33959000" + }, + { + "id": "130344", + "name": "Huyện Long Thành", + "state_id": 3821, + "state_code": "39", + "country_id": 240, + "country_code": "VN", + "latitude": "10.76162000", + "longitude": "107.02688000" + }, + { + "id": "130485", + "name": "Huyện Tân Phú", + "state_id": 3821, + "state_code": "39", + "country_id": 240, + "country_code": "VN", + "latitude": "11.39867000", + "longitude": "107.39976000" + }, + { + "id": "130452", + "name": "Huyện Thống Nhất", + "state_id": 3821, + "state_code": "39", + "country_id": 240, + "country_code": "VN", + "latitude": "10.97764000", + "longitude": "107.15909000" + }, + { + "id": "130471", + "name": "Huyện Trảng Bom", + "state_id": 3821, + "state_code": "39", + "country_id": 240, + "country_code": "VN", + "latitude": "10.96624000", + "longitude": "107.03614000" + }, + { + "id": "130498", + "name": "Huyện Vĩnh Cửu", + "state_id": 3821, + "state_code": "39", + "country_id": 240, + "country_code": "VN", + "latitude": "11.25725000", + "longitude": "107.02773000" + }, + { + "id": "130184", + "name": "Cao Lãnh", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.46017000", + "longitude": "105.63294000" + }, + { + "id": "130253", + "name": "Huyện Châu Thành", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.22543000", + "longitude": "105.82380000" + }, + { + "id": "130340", + "name": "Huyện Lai Vung", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.24051000", + "longitude": "105.66327000" + }, + { + "id": "130351", + "name": "Huyện Lấp Vò", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.35918000", + "longitude": "105.60611000" + }, + { + "id": "130430", + "name": "Huyện Tam Nông", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.72761000", + "longitude": "105.52522000" + }, + { + "id": "130483", + "name": "Huyện Tân Hồng", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.87089000", + "longitude": "105.49104000" + }, + { + "id": "130435", + "name": "Huyện Thanh Bình", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.60137000", + "longitude": "105.47811000" + }, + { + "id": "130443", + "name": "Huyện Tháp Mười", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.54398000", + "longitude": "105.81875000" + }, + { + "id": "130589", + "name": "Sa Dec", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.29085000", + "longitude": "105.75635000" + }, + { + "id": "130590", + "name": "Sa Dec city", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.30550000", + "longitude": "105.74757000" + }, + { + "id": "130607", + "name": "Thị Trấn Tân Thành", + "state_id": 3769, + "state_code": "45", + "country_id": 240, + "country_code": "VN", + "latitude": "10.25616000", + "longitude": "105.59280000" + }, + { + "id": "130196", + "name": "Dien Bien Phu", + "state_id": 3773, + "state_code": "71", + "country_id": 240, + "country_code": "VN", + "latitude": "21.38602000", + "longitude": "103.02301000" + }, + { + "id": "130528", + "name": "Huyện Điện Biên Đông", + "state_id": 3773, + "state_code": "71", + "country_id": 240, + "country_code": "VN", + "latitude": "21.25266000", + "longitude": "103.26900000" + }, + { + "id": "130365", + "name": "Huyện Mường Nhé", + "state_id": 3773, + "state_code": "71", + "country_id": 240, + "country_code": "VN", + "latitude": "22.10353000", + "longitude": "102.58465000" + }, + { + "id": "130493", + "name": "Huyện Tủa Chùa", + "state_id": 3773, + "state_code": "71", + "country_id": 240, + "country_code": "VN", + "latitude": "21.95357000", + "longitude": "103.37332000" + }, + { + "id": "130478", + "name": "Huyện Tuần Giáo", + "state_id": 3773, + "state_code": "71", + "country_id": 240, + "country_code": "VN", + "latitude": "21.69481000", + "longitude": "103.41758000" + }, + { + "id": "130611", + "name": "Thị Xã Mưòng Lay", + "state_id": 3773, + "state_code": "71", + "country_id": 240, + "country_code": "VN", + "latitude": "22.03374000", + "longitude": "103.12331000" + }, + { + "id": "130189", + "name": "Côn Sơn", + "state_id": 3770, + "state_code": "43", + "country_id": 240, + "country_code": "VN", + "latitude": "8.68641000", + "longitude": "106.60824000" + }, + { + "id": "130539", + "name": "Huyện Đất Đỏ", + "state_id": 3770, + "state_code": "43", + "country_id": 240, + "country_code": "VN", + "latitude": "10.48025000", + "longitude": "107.27879000" + }, + { + "id": "130255", + "name": "Huyện Châu Đức", + "state_id": 3770, + "state_code": "43", + "country_id": 240, + "country_code": "VN", + "latitude": "10.65805000", + "longitude": "107.25098000" + }, + { + "id": "130487", + "name": "Huyện Tân Thành", + "state_id": 3770, + "state_code": "43", + "country_id": 240, + "country_code": "VN", + "latitude": "10.57381000", + "longitude": "107.10189000" + }, + { + "id": "130510", + "name": "Huyện Xuyên Mộc", + "state_id": 3770, + "state_code": "43", + "country_id": 240, + "country_code": "VN", + "latitude": "10.63048000", + "longitude": "107.46568000" + }, + { + "id": "130604", + "name": "Thành Phố Vũng Tàu", + "state_id": 3770, + "state_code": "43", + "country_id": 240, + "country_code": "VN", + "latitude": "10.40239000", + "longitude": "107.14239000" + }, + { + "id": "130613", + "name": "Thị Xã Phú Mỹ", + "state_id": 3770, + "state_code": "43", + "country_id": 240, + "country_code": "VN", + "latitude": "10.56815000", + "longitude": "107.12999000" + }, + { + "id": "130626", + "name": "Vũng Tàu", + "state_id": 3770, + "state_code": "43", + "country_id": 240, + "country_code": "VN", + "latitude": "10.34599000", + "longitude": "107.08426000" + }, + { + "id": "130209", + "name": "Huyện An Lão", + "state_id": 3830, + "state_code": "31", + "country_id": 240, + "country_code": "VN", + "latitude": "14.55676000", + "longitude": "108.80100000" + }, + { + "id": "130298", + "name": "Huyện Hoài Nhơn", + "state_id": 3830, + "state_code": "31", + "country_id": 240, + "country_code": "VN", + "latitude": "14.50535000", + "longitude": "109.02315000" + }, + { + "id": "130397", + "name": "Huyện Phù Mỹ", + "state_id": 3830, + "state_code": "31", + "country_id": 240, + "country_code": "VN", + "latitude": "14.22304000", + "longitude": "109.08611000" + }, + { + "id": "130490", + "name": "Huyện Tây Sơn", + "state_id": 3830, + "state_code": "31", + "country_id": 240, + "country_code": "VN", + "latitude": "13.94306000", + "longitude": "108.87999000" + }, + { + "id": "130476", + "name": "Huyện Tuy Phước", + "state_id": 3830, + "state_code": "31", + "country_id": 240, + "country_code": "VN", + "latitude": "13.84564000", + "longitude": "109.15275000" + }, + { + "id": "130503", + "name": "Huyện Vĩnh Thạnh", + "state_id": 3830, + "state_code": "31", + "country_id": 240, + "country_code": "VN", + "latitude": "14.21100000", + "longitude": "108.74389000" + }, + { + "id": "130584", + "name": "Qui Nhon", + "state_id": 3830, + "state_code": "31", + "country_id": 240, + "country_code": "VN", + "latitude": "13.77648000", + "longitude": "109.22367000" + }, + { + "id": "130198", + "name": "Dĩ An", + "state_id": 3785, + "state_code": "57", + "country_id": 240, + "country_code": "VN", + "latitude": "10.90682000", + "longitude": "106.76940000" + }, + { + "id": "130616", + "name": "Thủ Dầu Một", + "state_id": 3785, + "state_code": "57", + "country_id": 240, + "country_code": "VN", + "latitude": "10.98040000", + "longitude": "106.65190000" + }, + { + "id": "130174", + "name": "Bình Long", + "state_id": 3797, + "state_code": "58", + "country_id": 240, + "country_code": "VN", + "latitude": "11.64711000", + "longitude": "106.60586000" + }, + { + "id": "130197", + "name": "Don Luan", + "state_id": 3797, + "state_code": "58", + "country_id": 240, + "country_code": "VN", + "latitude": "11.53495000", + "longitude": "106.88324000" + }, + { + "id": "130547", + "name": "Huyện Đồng Phú", + "state_id": 3797, + "state_code": "58", + "country_id": 240, + "country_code": "VN", + "latitude": "11.50071000", + "longitude": "107.01192000" + }, + { + "id": "130227", + "name": "Huyện Bù Đốp", + "state_id": 3797, + "state_code": "58", + "country_id": 240, + "country_code": "VN", + "latitude": "12.00374000", + "longitude": "106.81545000" + }, + { + "id": "130256", + "name": "Huyện Chơn Thành", + "state_id": 3797, + "state_code": "58", + "country_id": 240, + "country_code": "VN", + "latitude": "11.46283000", + "longitude": "106.66655000" + }, + { + "id": "130319", + "name": "Huyện Hớn Quản", + "state_id": 3797, + "state_code": "58", + "country_id": 240, + "country_code": "VN", + "latitude": "11.59718000", + "longitude": "106.62739000" + }, + { + "id": "130614", + "name": "Thị Xã Phước Long", + "state_id": 3797, + "state_code": "58", + "country_id": 240, + "country_code": "VN", + "latitude": "11.81142000", + "longitude": "106.99670000" + }, + { + "id": "130233", + "name": "Huyện Bắc Bình", + "state_id": 3787, + "state_code": "40", + "country_id": 240, + "country_code": "VN", + "latitude": "11.27571000", + "longitude": "108.38506000" + }, + { + "id": "130304", + "name": "Huyện Hàm Tân", + "state_id": 3787, + "state_code": "40", + "country_id": 240, + "country_code": "VN", + "latitude": "10.76856000", + "longitude": "107.64233000" + }, + { + "id": "130302", + "name": "Huyện Hàm Thuận Bắc", + "state_id": 3787, + "state_code": "40", + "country_id": 240, + "country_code": "VN", + "latitude": "11.14703000", + "longitude": "108.08172000" + }, + { + "id": "130303", + "name": "Huyện Hàm Thuận Nam", + "state_id": 3787, + "state_code": "40", + "country_id": 240, + "country_code": "VN", + "latitude": "10.92101000", + "longitude": "107.93325000" + }, + { + "id": "130479", + "name": "Huyện Tánh Linh", + "state_id": 3787, + "state_code": "40", + "country_id": 240, + "country_code": "VN", + "latitude": "11.11367000", + "longitude": "107.68427000" + }, + { + "id": "130475", + "name": "Huyện Tuy Phong", + "state_id": 3787, + "state_code": "40", + "country_id": 240, + "country_code": "VN", + "latitude": "11.34746000", + "longitude": "108.70466000" + }, + { + "id": "130567", + "name": "La Gi", + "state_id": 3787, + "state_code": "40", + "country_id": 240, + "country_code": "VN", + "latitude": "10.65993000", + "longitude": "107.77206000" + }, + { + "id": "130579", + "name": "Phan Thiết", + "state_id": 3787, + "state_code": "40", + "country_id": 240, + "country_code": "VN", + "latitude": "10.92889000", + "longitude": "108.10208000" + }, + { + "id": "130601", + "name": "Thành Phố Phan Thiết", + "state_id": 3787, + "state_code": "40", + "country_id": 240, + "country_code": "VN", + "latitude": "10.93700000", + "longitude": "108.15778000" + }, + { + "id": "130175", + "name": "Bạc Liêu", + "state_id": 3804, + "state_code": "55", + "country_id": 240, + "country_code": "VN", + "latitude": "9.29414000", + "longitude": "105.72776000" + }, + { + "id": "130289", + "name": "Huyện Giá Rai", + "state_id": 3804, + "state_code": "55", + "country_id": 240, + "country_code": "VN", + "latitude": "9.27162000", + "longitude": "105.40017000" + }, + { + "id": "130318", + "name": "Huyện Hồng Dân", + "state_id": 3804, + "state_code": "55", + "country_id": 240, + "country_code": "VN", + "latitude": "9.53822000", + "longitude": "105.42242000" + }, + { + "id": "130177", + "name": "Bắc Giang", + "state_id": 3815, + "state_code": "54", + "country_id": 240, + "country_code": "VN", + "latitude": "21.27307000", + "longitude": "106.19460000" + }, + { + "id": "130353", + "name": "Huyện Lục Nam", + "state_id": 3815, + "state_code": "54", + "country_id": 240, + "country_code": "VN", + "latitude": "21.27548000", + "longitude": "106.46519000" + }, + { + "id": "130354", + "name": "Huyện Lục Ngạn", + "state_id": 3815, + "state_code": "54", + "country_id": 240, + "country_code": "VN", + "latitude": "21.43719000", + "longitude": "106.65845000" + }, + { + "id": "130521", + "name": "Huyện Yên Thế", + "state_id": 3815, + "state_code": "54", + "country_id": 240, + "country_code": "VN", + "latitude": "21.51667000", + "longitude": "106.11689000" + }, + { + "id": "130178", + "name": "Bắc Kạn", + "state_id": 3822, + "state_code": "53", + "country_id": 240, + "country_code": "VN", + "latitude": "22.14701000", + "longitude": "105.83481000" + }, + { + "id": "130213", + "name": "Huyện Ba Bể", + "state_id": 3822, + "state_code": "53", + "country_id": 240, + "country_code": "VN", + "latitude": "22.41667000", + "longitude": "105.75000000" + }, + { + "id": "130228", + "name": "Huyện Bạch Thông", + "state_id": 3822, + "state_code": "53", + "country_id": 240, + "country_code": "VN", + "latitude": "22.25758000", + "longitude": "105.83295000" + }, + { + "id": "130263", + "name": "Huyện Chợ Đồn", + "state_id": 3822, + "state_code": "53", + "country_id": 240, + "country_code": "VN", + "latitude": "22.18681000", + "longitude": "105.57280000" + }, + { + "id": "130374", + "name": "Huyện Na Rì", + "state_id": 3822, + "state_code": "53", + "country_id": 240, + "country_code": "VN", + "latitude": "22.17883000", + "longitude": "106.11221000" + }, + { + "id": "130387", + "name": "Huyện Ngân Sơn", + "state_id": 3822, + "state_code": "53", + "country_id": 240, + "country_code": "VN", + "latitude": "22.42962000", + "longitude": "106.01030000" + }, + { + "id": "130608", + "name": "Thị Xã Bắc Kạn", + "state_id": 3822, + "state_code": "53", + "country_id": 240, + "country_code": "VN", + "latitude": "22.14130000", + "longitude": "105.83867000" + }, + { + "id": "130179", + "name": "Bắc Ninh", + "state_id": 3791, + "state_code": "56", + "country_id": 240, + "country_code": "VN", + "latitude": "21.18608000", + "longitude": "106.07631000" + }, + { + "id": "130186", + "name": "Cung Kiệm", + "state_id": 3791, + "state_code": "56", + "country_id": 240, + "country_code": "VN", + "latitude": "21.18697000", + "longitude": "106.16076000" + }, + { + "id": "130285", + "name": "Huyện Gia Bình", + "state_id": 3791, + "state_code": "56", + "country_id": 240, + "country_code": "VN", + "latitude": "21.07795000", + "longitude": "106.20903000" + }, + { + "id": "130441", + "name": "Huyện Thuận Thành", + "state_id": 3791, + "state_code": "56", + "country_id": 240, + "country_code": "VN", + "latitude": "21.04085000", + "longitude": "106.07515000" + }, + { + "id": "130455", + "name": "Huyện Tiên Du", + "state_id": 3791, + "state_code": "56", + "country_id": 240, + "country_code": "VN", + "latitude": "21.12195000", + "longitude": "106.03995000" + }, + { + "id": "130518", + "name": "Huyện Yên Phong", + "state_id": 3791, + "state_code": "56", + "country_id": 240, + "country_code": "VN", + "latitude": "21.20676000", + "longitude": "105.99427000" + }, + { + "id": "130635", + "name": "Ấp Tân Ngãi", + "state_id": 3796, + "state_code": "50", + "country_id": 240, + "country_code": "VN", + "latitude": "10.23333000", + "longitude": "106.28333000" + }, + { + "id": "130180", + "name": "Bến Tre", + "state_id": 3796, + "state_code": "50", + "country_id": 240, + "country_code": "VN", + "latitude": "10.24147000", + "longitude": "106.37585000" + }, + { + "id": "130215", + "name": "Huyện Ba Tri", + "state_id": 3796, + "state_code": "50", + "country_id": 240, + "country_code": "VN", + "latitude": "10.06627000", + "longitude": "106.60554000" + }, + { + "id": "130226", + "name": "Huyện Bình Đại", + "state_id": 3796, + "state_code": "50", + "country_id": 240, + "country_code": "VN", + "latitude": "10.19354000", + "longitude": "106.64455000" + }, + { + "id": "130250", + "name": "Huyện Châu Thành", + "state_id": 3796, + "state_code": "50", + "country_id": 240, + "country_code": "VN", + "latitude": "10.29212000", + "longitude": "106.30827000" + }, + { + "id": "130261", + "name": "Huyện Chợ Lách", + "state_id": 3796, + "state_code": "50", + "country_id": 240, + "country_code": "VN", + "latitude": "10.22674000", + "longitude": "106.17077000" + }, + { + "id": "130291", + "name": "Huyện Giồng Trôm", + "state_id": 3796, + "state_code": "50", + "country_id": 240, + "country_code": "VN", + "latitude": "10.15909000", + "longitude": "106.47004000" + }, + { + "id": "130449", + "name": "Huyện Thạnh Phú", + "state_id": 3796, + "state_code": "50", + "country_id": 240, + "country_code": "VN", + "latitude": "9.92993000", + "longitude": "106.54316000" + }, + { + "id": "130183", + "name": "Cao Bằng", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.66568000", + "longitude": "106.25786000" + }, + { + "id": "130229", + "name": "Huyện Bảo Lac", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.90085000", + "longitude": "105.73332000" + }, + { + "id": "130231", + "name": "Huyện Bảo Lâm", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.87041000", + "longitude": "105.48780000" + }, + { + "id": "130300", + "name": "Huyện Hà Quảng", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.90763000", + "longitude": "106.12487000" + }, + { + "id": "130313", + "name": "Huyện Hạ Lang", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.70933000", + "longitude": "106.67657000" + }, + { + "id": "130386", + "name": "Huyện Nguyên Bình", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.62400000", + "longitude": "105.93248000" + }, + { + "id": "130444", + "name": "Huyện Thông Nông", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.80735000", + "longitude": "105.95846000" + }, + { + "id": "130446", + "name": "Huyện Thạch An", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.47654000", + "longitude": "106.34237000" + }, + { + "id": "130466", + "name": "Huyện Trà Lĩnh", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.80961000", + "longitude": "106.32543000" + }, + { + "id": "130469", + "name": "Huyện Trùng Khánh", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.83333000", + "longitude": "106.56074000" + }, + { + "id": "130206", + "name": "Huyen Phuc Hoa", + "state_id": 3782, + "state_code": "04", + "country_id": 240, + "country_code": "VN", + "latitude": "22.53840000", + "longitude": "106.51039000" + }, + { + "id": "130187", + "name": "Cà Mau", + "state_id": 3778, + "state_code": "59", + "country_id": 240, + "country_code": "VN", + "latitude": "9.17682000", + "longitude": "105.15242000" + }, + { + "id": "130540", + "name": "Huyện Đầm Dơi", + "state_id": 3778, + "state_code": "59", + "country_id": 240, + "country_code": "VN", + "latitude": "8.96029000", + "longitude": "105.24107000" + }, + { + "id": "130267", + "name": "Huyện Cái Nước", + "state_id": 3778, + "state_code": "59", + "country_id": 240, + "country_code": "VN", + "latitude": "9.00094000", + "longitude": "105.04201000" + }, + { + "id": "130453", + "name": "Huyện Thới Bình", + "state_id": 3778, + "state_code": "59", + "country_id": 240, + "country_code": "VN", + "latitude": "9.35790000", + "longitude": "105.16023000" + }, + { + "id": "130204", + "name": "Huyen Nam Can", + "state_id": 3778, + "state_code": "59", + "country_id": 240, + "country_code": "VN", + "latitude": "8.81531000", + "longitude": "105.05574000" + }, + { + "id": "130195", + "name": "Da Nang", + "state_id": 3806, + "state_code": "DN", + "country_id": 240, + "country_code": "VN", + "latitude": "16.06778000", + "longitude": "108.22083000" + }, + { + "id": "130549", + "name": "Huyện Đức Cơ", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "13.78454000", + "longitude": "107.66970000" + }, + { + "id": "130258", + "name": "Huyện Chư Păh", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "14.15941000", + "longitude": "107.98411000" + }, + { + "id": "130257", + "name": "Huyện Chư Prông", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "13.59976000", + "longitude": "107.81099000" + }, + { + "id": "130259", + "name": "Huyện Chư Sê", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "13.74254000", + "longitude": "108.08663000" + }, + { + "id": "130320", + "name": "Huyện Ia Grai", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "13.98937000", + "longitude": "107.73740000" + }, + { + "id": "130335", + "name": "Huyện Kông Chro", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "13.73519000", + "longitude": "108.59697000" + }, + { + "id": "130322", + "name": "Huyện KBang", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "14.30506000", + "longitude": "108.49779000" + }, + { + "id": "130334", + "name": "Huyện Krông Pa", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "13.23152000", + "longitude": "108.65494000" + }, + { + "id": "130358", + "name": "Huyện Mang Yang", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "13.92840000", + "longitude": "108.30246000" + }, + { + "id": "130583", + "name": "Pleiku", + "state_id": 3813, + "state_code": "30", + "country_id": 240, + "country_code": "VN", + "latitude": "13.98333000", + "longitude": "108.00000000" + }, + { + "id": "130188", + "name": "Cát Bà", + "state_id": 3783, + "state_code": "HP", + "country_id": 240, + "country_code": "VN", + "latitude": "20.72779000", + "longitude": "107.04819000" + }, + { + "id": "130200", + "name": "Haiphong", + "state_id": 3783, + "state_code": "HP", + "country_id": 240, + "country_code": "VN", + "latitude": "20.86481000", + "longitude": "106.68345000" + }, + { + "id": "130201", + "name": "Hanoi", + "state_id": 3810, + "state_code": "HN", + "country_id": 240, + "country_code": "VN", + "latitude": "21.02450000", + "longitude": "105.84117000" + }, + { + "id": "130558", + "name": "Hà Đông", + "state_id": 3810, + "state_code": "HN", + "country_id": 240, + "country_code": "VN", + "latitude": "20.97136000", + "longitude": "105.77876000" + }, + { + "id": "130412", + "name": "Huyện Quốc Oai", + "state_id": 3810, + "state_code": "HN", + "country_id": 240, + "country_code": "VN", + "latitude": "20.97060000", + "longitude": "105.61127000" + }, + { + "id": "130586", + "name": "Quận Ba Đình", + "state_id": 3810, + "state_code": "HN", + "country_id": 240, + "country_code": "VN", + "latitude": "21.03587000", + "longitude": "105.82163000" + }, + { + "id": "130587", + "name": "Quận Hà Đông", + "state_id": 3810, + "state_code": "HN", + "country_id": 240, + "country_code": "VN", + "latitude": "20.95482000", + "longitude": "105.76851000" + }, + { + "id": "130595", + "name": "Sơn Tây", + "state_id": 3810, + "state_code": "HN", + "country_id": 240, + "country_code": "VN", + "latitude": "21.14053000", + "longitude": "105.50686000" + }, + { + "id": "130555", + "name": "Hà Giang", + "state_id": 3779, + "state_code": "03", + "country_id": 240, + "country_code": "VN", + "latitude": "22.82333000", + "longitude": "104.98357000" + }, + { + "id": "130548", + "name": "Huyện Đồng Văn", + "state_id": 3779, + "state_code": "03", + "country_id": 240, + "country_code": "VN", + "latitude": "23.25449000", + "longitude": "105.27626000" + }, + { + "id": "130235", + "name": "Huyện Bắc Mê", + "state_id": 3779, + "state_code": "03", + "country_id": 240, + "country_code": "VN", + "latitude": "22.75477000", + "longitude": "105.29023000" + }, + { + "id": "130236", + "name": "Huyện Bắc Quang", + "state_id": 3779, + "state_code": "03", + "country_id": 240, + "country_code": "VN", + "latitude": "22.42301000", + "longitude": "104.91831000" + }, + { + "id": "130406", + "name": "Huyện Quang Bình", + "state_id": 3779, + "state_code": "03", + "country_id": 240, + "country_code": "VN", + "latitude": "22.41507000", + "longitude": "104.66018000" + }, + { + "id": "130508", + "name": "Huyện Vị Xuyên", + "state_id": 3779, + "state_code": "03", + "country_id": 240, + "country_code": "VN", + "latitude": "22.73096000", + "longitude": "104.90827000" + }, + { + "id": "130511", + "name": "Huyện Xín Mần", + "state_id": 3779, + "state_code": "03", + "country_id": 240, + "country_code": "VN", + "latitude": "22.64148000", + "longitude": "104.52089000" + }, + { + "id": "130516", + "name": "Huyện Yên Minh", + "state_id": 3779, + "state_code": "03", + "country_id": 240, + "country_code": "VN", + "latitude": "23.06992000", + "longitude": "105.17865000" + }, + { + "id": "130223", + "name": "Huyện Bình Lục", + "state_id": 3802, + "state_code": "63", + "country_id": 240, + "country_code": "VN", + "latitude": "20.50126000", + "longitude": "106.02959000" + }, + { + "id": "130280", + "name": "Huyện Duy Tiên", + "state_id": 3802, + "state_code": "63", + "country_id": 240, + "country_code": "VN", + "latitude": "20.62803000", + "longitude": "105.96193000" + }, + { + "id": "130326", + "name": "Huyện Kim Bảng", + "state_id": 3802, + "state_code": "63", + "country_id": 240, + "country_code": "VN", + "latitude": "20.57254000", + "longitude": "105.85043000" + }, + { + "id": "130347", + "name": "Huyện Lý Nhân", + "state_id": 3802, + "state_code": "63", + "country_id": 240, + "country_code": "VN", + "latitude": "20.56422000", + "longitude": "106.09455000" + }, + { + "id": "130437", + "name": "Huyện Thanh Liêm", + "state_id": 3802, + "state_code": "63", + "country_id": 240, + "country_code": "VN", + "latitude": "20.46249000", + "longitude": "105.92100000" + }, + { + "id": "130582", + "name": "Phủ Lý", + "state_id": 3802, + "state_code": "63", + "country_id": 240, + "country_code": "VN", + "latitude": "20.54531000", + "longitude": "105.91221000" + }, + { + "id": "130580", + "name": "Phù Ninh", + "state_id": 3820, + "state_code": "15", + "country_id": 240, + "country_code": "VN", + "latitude": "21.08333000", + "longitude": "105.95000000" + }, + { + "id": "130557", + "name": "Hà Tĩnh", + "state_id": 3816, + "state_code": "23", + "country_id": 240, + "country_code": "VN", + "latitude": "18.34282000", + "longitude": "105.90569000" + }, + { + "id": "130525", + "name": "Huyện Ðức Thọ", + "state_id": 3816, + "state_code": "23", + "country_id": 240, + "country_code": "VN", + "latitude": "18.49699000", + "longitude": "105.61016000" + }, + { + "id": "130243", + "name": "Huyện Can Lộc", + "state_id": 3816, + "state_code": "23", + "country_id": 240, + "country_code": "VN", + "latitude": "18.44414000", + "longitude": "105.76350000" + }, + { + "id": "130277", + "name": "Huyện Cẩm Xuyên", + "state_id": 3816, + "state_code": "23", + "country_id": 240, + "country_code": "VN", + "latitude": "18.19059000", + "longitude": "106.00186000" + }, + { + "id": "130337", + "name": "Huyện Kỳ Anh", + "state_id": 3816, + "state_code": "23", + "country_id": 240, + "country_code": "VN", + "latitude": "18.05805000", + "longitude": "106.24580000" + }, + { + "id": "130382", + "name": "Huyện Nghi Xuân", + "state_id": 3816, + "state_code": "23", + "country_id": 240, + "country_code": "VN", + "latitude": "18.62419000", + "longitude": "105.76829000" + }, + { + "id": "130447", + "name": "Huyện Thạch Hà", + "state_id": 3816, + "state_code": "23", + "country_id": 240, + "country_code": "VN", + "latitude": "18.35091000", + "longitude": "105.81123000" + }, + { + "id": "130559", + "name": "Hòa Bình", + "state_id": 3799, + "state_code": "14", + "country_id": 240, + "country_code": "VN", + "latitude": "20.81717000", + "longitude": "105.33759000" + }, + { + "id": "130245", + "name": "Huyện Cao Phong", + "state_id": 3799, + "state_code": "14", + "country_id": 240, + "country_code": "VN", + "latitude": "20.69532000", + "longitude": "105.33559000" + }, + { + "id": "130338", + "name": "Huyện Kỳ Sơn", + "state_id": 3799, + "state_code": "14", + "country_id": 240, + "country_code": "VN", + "latitude": "20.89631000", + "longitude": "105.39659000" + }, + { + "id": "130350", + "name": "Huyện Lạc Thủy", + "state_id": 3799, + "state_code": "14", + "country_id": 240, + "country_code": "VN", + "latitude": "20.49794000", + "longitude": "105.74092000" + }, + { + "id": "130349", + "name": "Huyện Lương Sơn", + "state_id": 3799, + "state_code": "14", + "country_id": 240, + "country_code": "VN", + "latitude": "20.87650000", + "longitude": "105.51219000" + }, + { + "id": "130484", + "name": "Huyện Tân Lạc", + "state_id": 3799, + "state_code": "14", + "country_id": 240, + "country_code": "VN", + "latitude": "20.60557000", + "longitude": "105.23399000" + }, + { + "id": "130562", + "name": "Hải Dương", + "state_id": 3827, + "state_code": "61", + "country_id": 240, + "country_code": "VN", + "latitude": "20.94099000", + "longitude": "106.33302000" + }, + { + "id": "130221", + "name": "Huyện Bình Giang", + "state_id": 3827, + "state_code": "61", + "country_id": 240, + "country_code": "VN", + "latitude": "20.87586000", + "longitude": "106.19138000" + }, + { + "id": "130274", + "name": "Huyện Cẩm Giàng", + "state_id": 3827, + "state_code": "61", + "country_id": 240, + "country_code": "VN", + "latitude": "20.95000000", + "longitude": "106.21667000" + }, + { + "id": "130286", + "name": "Huyện Gia Lộc", + "state_id": 3827, + "state_code": "61", + "country_id": 240, + "country_code": "VN", + "latitude": "20.85164000", + "longitude": "106.29130000" + }, + { + "id": "130329", + "name": "Huyện Kinh Môn", + "state_id": 3827, + "state_code": "61", + "country_id": 240, + "country_code": "VN", + "latitude": "21.01634000", + "longitude": "106.50384000" + }, + { + "id": "130376", + "name": "Huyện Nam Sách", + "state_id": 3827, + "state_code": "61", + "country_id": 240, + "country_code": "VN", + "latitude": "21.00484000", + "longitude": "106.34042000" + }, + { + "id": "130438", + "name": "Huyện Thanh Miện", + "state_id": 3827, + "state_code": "61", + "country_id": 240, + "country_code": "VN", + "latitude": "20.77953000", + "longitude": "106.22218000" + }, + { + "id": "130609", + "name": "Thị Xã Chí Linh", + "state_id": 3827, + "state_code": "61", + "country_id": 240, + "country_code": "VN", + "latitude": "21.13722000", + "longitude": "106.39638000" + }, + { + "id": "130254", + "name": "Huyện Châu Thành A", + "state_id": 3777, + "state_code": "73", + "country_id": 240, + "country_code": "VN", + "latitude": "9.93056000", + "longitude": "105.64194000" + }, + { + "id": "130627", + "name": "Vị Thanh", + "state_id": 3777, + "state_code": "73", + "country_id": 240, + "country_code": "VN", + "latitude": "9.78449000", + "longitude": "105.47012000" + }, + { + "id": "130191", + "name": "Cần Giờ", + "state_id": 3811, + "state_code": "SG", + "country_id": 240, + "country_code": "VN", + "latitude": "10.41115000", + "longitude": "106.95474000" + }, + { + "id": "130194", + "name": "Củ Chi", + "state_id": 3811, + "state_code": "SG", + "country_id": 240, + "country_code": "VN", + "latitude": "10.97333000", + "longitude": "106.49325000" + }, + { + "id": "130202", + "name": "Ho Chi Minh City", + "state_id": 3811, + "state_code": "SG", + "country_id": 240, + "country_code": "VN", + "latitude": "10.82302000", + "longitude": "106.62965000" + }, + { + "id": "130523", + "name": "Huyện Ân Thi", + "state_id": 3768, + "state_code": "66", + "country_id": 240, + "country_code": "VN", + "latitude": "20.81086000", + "longitude": "106.09995000" + }, + { + "id": "130323", + "name": "Huyện Khoái Châu", + "state_id": 3768, + "state_code": "66", + "country_id": 240, + "country_code": "VN", + "latitude": "20.82170000", + "longitude": "105.97455000" + }, + { + "id": "130328", + "name": "Huyện Kim Động", + "state_id": 3768, + "state_code": "66", + "country_id": 240, + "country_code": "VN", + "latitude": "20.74645000", + "longitude": "106.03632000" + }, + { + "id": "130369", + "name": "Huyện Mỹ Hào", + "state_id": 3768, + "state_code": "66", + "country_id": 240, + "country_code": "VN", + "latitude": "20.93210000", + "longitude": "106.10630000" + }, + { + "id": "130396", + "name": "Huyện Phù Cừ", + "state_id": 3768, + "state_code": "66", + "country_id": 240, + "country_code": "VN", + "latitude": "20.70997000", + "longitude": "106.19744000" + }, + { + "id": "130456", + "name": "Huyện Tiên Lữ", + "state_id": 3768, + "state_code": "66", + "country_id": 240, + "country_code": "VN", + "latitude": "20.68490000", + "longitude": "106.12513000" + }, + { + "id": "130560", + "name": "Hưng Yên", + "state_id": 3768, + "state_code": "66", + "country_id": 240, + "country_code": "VN", + "latitude": "20.64637000", + "longitude": "106.05112000" + }, + { + "id": "130182", + "name": "Cam Ranh", + "state_id": 3793, + "state_code": "34", + "country_id": 240, + "country_code": "VN", + "latitude": "11.92144000", + "longitude": "109.15913000" + }, + { + "id": "130278", + "name": "Huyện Diên Khánh", + "state_id": 3793, + "state_code": "34", + "country_id": 240, + "country_code": "VN", + "latitude": "12.27341000", + "longitude": "109.03890000" + }, + { + "id": "130324", + "name": "Huyện Khánh Sơn", + "state_id": 3793, + "state_code": "34", + "country_id": 240, + "country_code": "VN", + "latitude": "12.02858000", + "longitude": "108.90814000" + }, + { + "id": "130325", + "name": "Huyện Khánh Vĩnh", + "state_id": 3793, + "state_code": "34", + "country_id": 240, + "country_code": "VN", + "latitude": "12.30593000", + "longitude": "108.83073000" + }, + { + "id": "130506", + "name": "Huyện Vạn Ninh", + "state_id": 3793, + "state_code": "34", + "country_id": 240, + "country_code": "VN", + "latitude": "12.72344000", + "longitude": "109.24586000" + }, + { + "id": "130576", + "name": "Nha Trang", + "state_id": 3793, + "state_code": "34", + "country_id": 240, + "country_code": "VN", + "latitude": "12.24507000", + "longitude": "109.19432000" + }, + { + "id": "130598", + "name": "Thành Phố Cam Ranh", + "state_id": 3793, + "state_code": "34", + "country_id": 240, + "country_code": "VN", + "latitude": "11.90707000", + "longitude": "109.14861000" + }, + { + "id": "130600", + "name": "Thành Phố Nha Trang", + "state_id": 3793, + "state_code": "34", + "country_id": 240, + "country_code": "VN", + "latitude": "12.25458000", + "longitude": "109.16655000" + }, + { + "id": "130612", + "name": "Thị Xã Ninh Hòa", + "state_id": 3793, + "state_code": "34", + "country_id": 240, + "country_code": "VN", + "latitude": "12.53796000", + "longitude": "109.06057000" + }, + { + "id": "130199", + "name": "Dương Đông", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "10.21716000", + "longitude": "103.95929000" + }, + { + "id": "130556", + "name": "Hà Tiên", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "10.38310000", + "longitude": "104.48753000" + }, + { + "id": "130208", + "name": "Huyện An Biên", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "9.81291000", + "longitude": "105.05230000" + }, + { + "id": "130210", + "name": "Huyện An Minh", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "9.66704000", + "longitude": "104.94848000" + }, + { + "id": "130249", + "name": "Huyện Châu Thành", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "9.94372000", + "longitude": "105.16868000" + }, + { + "id": "130295", + "name": "Huyện Gò Quao", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "9.74027000", + "longitude": "105.29766000" + }, + { + "id": "130290", + "name": "Huyện Giồng Riềng", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "9.91224000", + "longitude": "105.37311000" + }, + { + "id": "130307", + "name": "Huyện Hòn Đất", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "10.22908000", + "longitude": "104.95280000" + }, + { + "id": "130330", + "name": "Huyện Kiên Hải", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "9.83971000", + "longitude": "104.61560000" + }, + { + "id": "130400", + "name": "Huyện Phú Quốc", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "10.25516000", + "longitude": "104.01455000" + }, + { + "id": "130481", + "name": "Huyện Tân Hiệp", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "10.09540000", + "longitude": "105.25936000" + }, + { + "id": "130502", + "name": "Huyện Vĩnh Thuận", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "9.53306000", + "longitude": "105.24490000" + }, + { + "id": "130564", + "name": "Kien Luong Town", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "10.24892000", + "longitude": "104.59000000" + }, + { + "id": "130588", + "name": "Rạch Giá", + "state_id": 3800, + "state_code": "47", + "country_id": 240, + "country_code": "VN", + "latitude": "10.01245000", + "longitude": "105.08091000" + }, + { + "id": "130542", + "name": "Huyện Đắk Glei", + "state_id": 3772, + "state_code": "28", + "country_id": 240, + "country_code": "VN", + "latitude": "15.11358000", + "longitude": "107.75093000" + }, + { + "id": "130543", + "name": "Huyện Đắk Hà", + "state_id": 3772, + "state_code": "28", + "country_id": 240, + "country_code": "VN", + "latitude": "14.60326000", + "longitude": "107.98547000" + }, + { + "id": "130545", + "name": "Huyện Đắk Tô", + "state_id": 3772, + "state_code": "28", + "country_id": 240, + "country_code": "VN", + "latitude": "14.70087000", + "longitude": "107.80816000" + }, + { + "id": "130321", + "name": "Huyện Ia H'Drai", + "state_id": 3772, + "state_code": "28", + "country_id": 240, + "country_code": "VN", + "latitude": "14.06032000", + "longitude": "107.46243000" + }, + { + "id": "130332", + "name": "Huyện Kon Plông", + "state_id": 3772, + "state_code": "28", + "country_id": 240, + "country_code": "VN", + "latitude": "14.75620000", + "longitude": "108.32057000" + }, + { + "id": "130388", + "name": "Huyện Ngọc Hồi", + "state_id": 3772, + "state_code": "28", + "country_id": 240, + "country_code": "VN", + "latitude": "14.71940000", + "longitude": "107.62636000" + }, + { + "id": "130419", + "name": "Huyện Sa Thầy", + "state_id": 3772, + "state_code": "28", + "country_id": 240, + "country_code": "VN", + "latitude": "14.32050000", + "longitude": "107.59862000" + }, + { + "id": "130565", + "name": "Kon Tum", + "state_id": 3772, + "state_code": "28", + "country_id": 240, + "country_code": "VN", + "latitude": "14.35451000", + "longitude": "108.00759000" + }, + { + "id": "130361", + "name": "Huyện Mưòng Tè", + "state_id": 3825, + "state_code": "01", + "country_id": 240, + "country_code": "VN", + "latitude": "22.37443000", + "longitude": "102.73835000" + }, + { + "id": "130431", + "name": "Huyện Tam Đường", + "state_id": 3825, + "state_code": "01", + "country_id": 240, + "country_code": "VN", + "latitude": "22.35391000", + "longitude": "103.59342000" + }, + { + "id": "130433", + "name": "Huyện Than Uyên", + "state_id": 3825, + "state_code": "01", + "country_id": 240, + "country_code": "VN", + "latitude": "21.91424000", + "longitude": "103.82857000" + }, + { + "id": "130219", + "name": "Huyện Bát Xát", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.56767000", + "longitude": "103.71339000" + }, + { + "id": "130232", + "name": "Huyện Bảo Yên", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.26109000", + "longitude": "104.46424000" + }, + { + "id": "130234", + "name": "Huyện Bắc Hà", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.50998000", + "longitude": "104.30769000" + }, + { + "id": "130362", + "name": "Huyện Mường Khương", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.67111000", + "longitude": "104.11772000" + }, + { + "id": "130418", + "name": "Huyện Sa Pa", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.33769000", + "longitude": "103.84037000" + }, + { + "id": "130420", + "name": "Huyện Si Ma Cai", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.67161000", + "longitude": "104.27326000" + }, + { + "id": "130495", + "name": "Huyện Văn Bàn", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.07002000", + "longitude": "104.18122000" + }, + { + "id": "130568", + "name": "Lao Chải", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.31377000", + "longitude": "103.86844000" + }, + { + "id": "130571", + "name": "Lào Cai", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.48556000", + "longitude": "103.97066000" + }, + { + "id": "130591", + "name": "Sa Pa", + "state_id": 3817, + "state_code": "02", + "country_id": 240, + "country_code": "VN", + "latitude": "22.34023000", + "longitude": "103.84415000" + }, + { + "id": "130632", + "name": "Đam Rong", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "12.05409000", + "longitude": "108.14941000" + }, + { + "id": "130630", + "name": "Ðà Lạt", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.94646000", + "longitude": "108.44193000" + }, + { + "id": "130633", + "name": "Đinh Văn", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.78624000", + "longitude": "108.24282000" + }, + { + "id": "130634", + "name": "Đưc Trọng", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.73559000", + "longitude": "108.37330000" + }, + { + "id": "130176", + "name": "Bảo Lộc", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.54798000", + "longitude": "107.80772000" + }, + { + "id": "130536", + "name": "Huyện Đạ Huoai", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.42465000", + "longitude": "107.63825000" + }, + { + "id": "130537", + "name": "Huyện Đạ Tẻh", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.58446000", + "longitude": "107.52792000" + }, + { + "id": "130553", + "name": "Huyện Đức Trọng", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.62686000", + "longitude": "108.35330000" + }, + { + "id": "130535", + "name": "Huyện Đơn Dương", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.75308000", + "longitude": "108.55397000" + }, + { + "id": "130230", + "name": "Huyện Bảo Lâm", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.71163000", + "longitude": "107.75338000" + }, + { + "id": "130346", + "name": "Huyện Lâm Hà", + "state_id": 3818, + "state_code": "35", + "country_id": 240, + "country_code": "VN", + "latitude": "11.81890000", + "longitude": "108.21215000" + }, + { + "id": "130531", + "name": "Huyện Đình Lập", + "state_id": 3792, + "state_code": "09", + "country_id": 240, + "country_code": "VN", + "latitude": "21.54210000", + "longitude": "107.12925000" + }, + { + "id": "130220", + "name": "Huyện Bình Gia", + "state_id": 3792, + "state_code": "09", + "country_id": 240, + "country_code": "VN", + "latitude": "22.07281000", + "longitude": "106.30410000" + }, + { + "id": "130237", + "name": "Huyện Bắc Sơn", + "state_id": 3792, + "state_code": "09", + "country_id": 240, + "country_code": "VN", + "latitude": "21.83801000", + "longitude": "106.27690000" + }, + { + "id": "130244", + "name": "Huyện Cao Lộc", + "state_id": 3792, + "state_code": "09", + "country_id": 240, + "country_code": "VN", + "latitude": "21.89857000", + "longitude": "106.85435000" + }, + { + "id": "130246", + "name": "Huyện Chi Lăng", + "state_id": 3792, + "state_code": "09", + "country_id": 240, + "country_code": "VN", + "latitude": "21.67602000", + "longitude": "106.62925000" + }, + { + "id": "130308", + "name": "Huyện Hũu Lũng", + "state_id": 3792, + "state_code": "09", + "country_id": 240, + "country_code": "VN", + "latitude": "21.54474000", + "longitude": "106.34386000" + }, + { + "id": "130507", + "name": "Huyện Vặn Quan", + "state_id": 3792, + "state_code": "09", + "country_id": 240, + "country_code": "VN", + "latitude": "21.83333000", + "longitude": "106.54942000" + }, + { + "id": "130572", + "name": "Lạng Sơn", + "state_id": 3792, + "state_code": "09", + "country_id": 240, + "country_code": "VN", + "latitude": "21.85264000", + "longitude": "106.76101000" + }, + { + "id": "130190", + "name": "Cần Giuộc", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.60857000", + "longitude": "106.67135000" + }, + { + "id": "130551", + "name": "Huyện Đức Hòa", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.87838000", + "longitude": "106.42422000" + }, + { + "id": "130550", + "name": "Huyện Đức Huệ", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.86473000", + "longitude": "106.25914000" + }, + { + "id": "130240", + "name": "Huyện Bến Lức", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.68858000", + "longitude": "106.45484000" + }, + { + "id": "130271", + "name": "Huyện Cần Đước", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.54148000", + "longitude": "106.59636000" + }, + { + "id": "130270", + "name": "Huyện Cần Giuộc", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.57742000", + "longitude": "106.67279000" + }, + { + "id": "130251", + "name": "Huyện Châu Thành", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.45214000", + "longitude": "106.49015000" + }, + { + "id": "130368", + "name": "Huyện Mộc Hóa", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.75166000", + "longitude": "106.01729000" + }, + { + "id": "130482", + "name": "Huyện Tân Hưng", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.83380000", + "longitude": "105.68848000" + }, + { + "id": "130488", + "name": "Huyện Tân Thạnh", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.60351000", + "longitude": "105.96576000" + }, + { + "id": "130489", + "name": "Huyện Tân Trụ", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.53182000", + "longitude": "106.51644000" + }, + { + "id": "130448", + "name": "Huyện Thạnh Hóa", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.66667000", + "longitude": "106.16667000" + }, + { + "id": "130454", + "name": "Huyện Thủ Thừa", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.65639000", + "longitude": "106.34580000" + }, + { + "id": "130499", + "name": "Huyện Vĩnh Hưng", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.88299000", + "longitude": "105.80364000" + }, + { + "id": "130620", + "name": "Tân An", + "state_id": 3808, + "state_code": "41", + "country_id": 240, + "country_code": "VN", + "latitude": "10.53589000", + "longitude": "106.41366000" + }, + { + "id": "130526", + "name": "Huyện Ý Yên", + "state_id": 3789, + "state_code": "67", + "country_id": 240, + "country_code": "VN", + "latitude": "20.31669000", + "longitude": "106.02327000" + }, + { + "id": "130287", + "name": "Huyện Giao Thủy", + "state_id": 3789, + "state_code": "67", + "country_id": 240, + "country_code": "VN", + "latitude": "20.25706000", + "longitude": "106.46245000" + }, + { + "id": "130315", + "name": "Huyện Hải Hậu", + "state_id": 3789, + "state_code": "67", + "country_id": 240, + "country_code": "VN", + "latitude": "20.15057000", + "longitude": "106.27161000" + }, + { + "id": "130370", + "name": "Huyện Mỹ Lộc", + "state_id": 3789, + "state_code": "67", + "country_id": 240, + "country_code": "VN", + "latitude": "20.46079000", + "longitude": "106.12319000" + }, + { + "id": "130377", + "name": "Huyện Nam Trực", + "state_id": 3789, + "state_code": "67", + "country_id": 240, + "country_code": "VN", + "latitude": "20.34106000", + "longitude": "106.20821000" + }, + { + "id": "130384", + "name": "Huyện Nghĩa Hưng", + "state_id": 3789, + "state_code": "67", + "country_id": 240, + "country_code": "VN", + "latitude": "20.10598000", + "longitude": "106.17345000" + }, + { + "id": "130474", + "name": "Huyện Trực Ninh", + "state_id": 3789, + "state_code": "67", + "country_id": 240, + "country_code": "VN", + "latitude": "20.25690000", + "longitude": "106.24582000" + }, + { + "id": "130509", + "name": "Huyện Vụ Bản", + "state_id": 3789, + "state_code": "67", + "country_id": 240, + "country_code": "VN", + "latitude": "20.37705000", + "longitude": "106.09707000" + }, + { + "id": "130575", + "name": "Nam Định", + "state_id": 3789, + "state_code": "67", + "country_id": 240, + "country_code": "VN", + "latitude": "20.43389000", + "longitude": "106.17729000" + }, + { + "id": "130212", + "name": "Huyện Anh Sơn", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "18.92902000", + "longitude": "105.08294000" + }, + { + "id": "130532", + "name": "Huyện Đô Lương", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "18.89259000", + "longitude": "105.34027000" + }, + { + "id": "130264", + "name": "Huyện Con Cuông", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "19.03898000", + "longitude": "104.80353000" + }, + { + "id": "130279", + "name": "Huyện Diễn Châu", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "18.98892000", + "longitude": "105.57625000" + }, + { + "id": "130310", + "name": "Huyện Hưng Nguyên", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "18.67811000", + "longitude": "105.62523000" + }, + { + "id": "130339", + "name": "Huyện Kỳ Sơn", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "19.42397000", + "longitude": "104.22199000" + }, + { + "id": "130378", + "name": "Huyện Nam Đàn", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "18.67041000", + "longitude": "105.52575000" + }, + { + "id": "130385", + "name": "Huyện Nghĩa Đàn", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "19.38234000", + "longitude": "105.44072000" + }, + { + "id": "130381", + "name": "Huyện Nghi Lộc", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "18.83131000", + "longitude": "105.62411000" + }, + { + "id": "130411", + "name": "Huyện Quế Phong", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "19.70177000", + "longitude": "104.87913000" + }, + { + "id": "130413", + "name": "Huyện Quỳ Châu", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "19.55707000", + "longitude": "105.09173000" + }, + { + "id": "130414", + "name": "Huyện Quỳ Hợp", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "19.32514000", + "longitude": "105.16009000" + }, + { + "id": "130415", + "name": "Huyện Quỳnh Lưu", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "19.22717000", + "longitude": "105.64354000" + }, + { + "id": "130436", + "name": "Huyện Thanh Chương", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "18.73929000", + "longitude": "105.24053000" + }, + { + "id": "130492", + "name": "Huyện Tương Dương", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "19.30979000", + "longitude": "104.57788000" + }, + { + "id": "130520", + "name": "Huyện Yên Thành", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "19.02724000", + "longitude": "105.43649000" + }, + { + "id": "130622", + "name": "Vinh", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "18.67337000", + "longitude": "105.69232000" + }, + { + "id": "130629", + "name": "Yên Vinh", + "state_id": 3780, + "state_code": "22", + "country_id": 240, + "country_code": "VN", + "latitude": "18.66667000", + "longitude": "105.66667000" + }, + { + "id": "130297", + "name": "Huyện Hoa Lư", + "state_id": 3786, + "state_code": "18", + "country_id": 240, + "country_code": "VN", + "latitude": "20.25391000", + "longitude": "105.90789000" + }, + { + "id": "130327", + "name": "Huyện Kim Sơn", + "state_id": 3786, + "state_code": "18", + "country_id": 240, + "country_code": "VN", + "latitude": "20.06034000", + "longitude": "106.09863000" + }, + { + "id": "130390", + "name": "Huyện Nho Quan", + "state_id": 3786, + "state_code": "18", + "country_id": 240, + "country_code": "VN", + "latitude": "20.27606000", + "longitude": "105.75442000" + }, + { + "id": "130513", + "name": "Huyện Yên Khánh", + "state_id": 3786, + "state_code": "18", + "country_id": 240, + "country_code": "VN", + "latitude": "20.19017000", + "longitude": "106.09605000" + }, + { + "id": "130517", + "name": "Huyện Yên Mô", + "state_id": 3786, + "state_code": "18", + "country_id": 240, + "country_code": "VN", + "latitude": "20.12984000", + "longitude": "106.00199000" + }, + { + "id": "130577", + "name": "Ninh Bình", + "state_id": 3786, + "state_code": "18", + "country_id": 240, + "country_code": "VN", + "latitude": "20.25809000", + "longitude": "105.97965000" + }, + { + "id": "130578", + "name": "Phan Rang-Tháp Chàm", + "state_id": 3788, + "state_code": "36", + "country_id": 240, + "country_code": "VN", + "latitude": "11.56432000", + "longitude": "108.98858000" + }, + { + "id": "130530", + "name": "Huyện Đoan Hùng", + "state_id": 3801, + "state_code": "68", + "country_id": 240, + "country_code": "VN", + "latitude": "21.61776000", + "longitude": "105.16110000" + }, + { + "id": "130275", + "name": "Huyện Cẩm Khê", + "state_id": 3801, + "state_code": "68", + "country_id": 240, + "country_code": "VN", + "latitude": "21.40683000", + "longitude": "105.09845000" + }, + { + "id": "130312", + "name": "Huyện Hạ Hòa", + "state_id": 3801, + "state_code": "68", + "country_id": 240, + "country_code": "VN", + "latitude": "21.57763000", + "longitude": "104.99464000" + }, + { + "id": "130434", + "name": "Huyện Thanh Ba", + "state_id": 3801, + "state_code": "68", + "country_id": 240, + "country_code": "VN", + "latitude": "21.47816000", + "longitude": "105.15881000" + }, + { + "id": "130515", + "name": "Huyện Yên Lập", + "state_id": 3801, + "state_code": "68", + "country_id": 240, + "country_code": "VN", + "latitude": "21.35569000", + "longitude": "105.00493000" + }, + { + "id": "130203", + "name": "Huyen Lam Thao", + "state_id": 3801, + "state_code": "68", + "country_id": 240, + "country_code": "VN", + "latitude": "21.29971000", + "longitude": "105.31119000" + }, + { + "id": "130603", + "name": "Thành Phố Việt Trì", + "state_id": 3801, + "state_code": "68", + "country_id": 240, + "country_code": "VN", + "latitude": "21.32958000", + "longitude": "105.39217000" + }, + { + "id": "130615", + "name": "Thị xã Phú Thọ", + "state_id": 3801, + "state_code": "68", + "country_id": 240, + "country_code": "VN", + "latitude": "21.41664000", + "longitude": "105.23636000" + }, + { + "id": "130623", + "name": "Việt Trì", + "state_id": 3801, + "state_code": "68", + "country_id": 240, + "country_code": "VN", + "latitude": "21.32274000", + "longitude": "105.40198000" + }, + { + "id": "130421", + "name": "Huyện Sông Hinh", + "state_id": 3824, + "state_code": "32", + "country_id": 240, + "country_code": "VN", + "latitude": "12.91667000", + "longitude": "108.91667000" + }, + { + "id": "130425", + "name": "Huyện Sơn Hòa", + "state_id": 3824, + "state_code": "32", + "country_id": 240, + "country_code": "VN", + "latitude": "13.15868000", + "longitude": "108.97281000" + }, + { + "id": "130593", + "name": "Sông Cầu", + "state_id": 3824, + "state_code": "32", + "country_id": 240, + "country_code": "VN", + "latitude": "13.45560000", + "longitude": "109.22348000" + }, + { + "id": "130618", + "name": "Tuy Hòa", + "state_id": 3824, + "state_code": "32", + "country_id": 240, + "country_code": "VN", + "latitude": "13.09546000", + "longitude": "109.32094000" + }, + { + "id": "130352", + "name": "Huyện Lệ Thủy", + "state_id": 3809, + "state_code": "24", + "country_id": 240, + "country_code": "VN", + "latitude": "17.11239000", + "longitude": "106.70471000" + }, + { + "id": "130407", + "name": "Huyện Quảng Ninh", + "state_id": 3809, + "state_code": "24", + "country_id": 240, + "country_code": "VN", + "latitude": "17.27067000", + "longitude": "106.51387000" + }, + { + "id": "130408", + "name": "Huyện Quảng Trạch", + "state_id": 3809, + "state_code": "24", + "country_id": 240, + "country_code": "VN", + "latitude": "17.83447000", + "longitude": "106.36705000" + }, + { + "id": "130477", + "name": "Huyện Tuyên Hóa", + "state_id": 3809, + "state_code": "24", + "country_id": 240, + "country_code": "VN", + "latitude": "17.91323000", + "longitude": "106.02678000" + }, + { + "id": "130566", + "name": "Kwang Binh", + "state_id": 3809, + "state_code": "24", + "country_id": 240, + "country_code": "VN", + "latitude": "17.46885000", + "longitude": "106.62226000" + }, + { + "id": "130563", + "name": "Hội An", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.87944000", + "longitude": "108.33500000" + }, + { + "id": "130538", + "name": "Huyện Đại Lộc", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.83721000", + "longitude": "107.97894000" + }, + { + "id": "130529", + "name": "Huyện Điện Bàn", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.89917000", + "longitude": "108.22470000" + }, + { + "id": "130281", + "name": "Huyện Duy Xuyên", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.78970000", + "longitude": "108.20247000" + }, + { + "id": "130296", + "name": "Huyện Hiệp Đức", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.53857000", + "longitude": "108.09539000" + }, + { + "id": "130375", + "name": "Huyện Nam Giang", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.63201000", + "longitude": "107.60267000" + }, + { + "id": "130394", + "name": "Huyện Núi Thành", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.43345000", + "longitude": "108.57438000" + }, + { + "id": "130403", + "name": "Huyện Phước Sơn", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.38806000", + "longitude": "107.85766000" + }, + { + "id": "130457", + "name": "Huyện Tiên Phước", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.47090000", + "longitude": "108.28257000" + }, + { + "id": "130467", + "name": "Huyện Trà My", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.25000000", + "longitude": "108.08333000" + }, + { + "id": "130596", + "name": "Tam Kỳ", + "state_id": 3776, + "state_code": "27", + "country_id": 240, + "country_code": "VN", + "latitude": "15.57364000", + "longitude": "108.47403000" + }, + { + "id": "130552", + "name": "Huyện Đức Phổ", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "14.78000000", + "longitude": "108.97857000" + }, + { + "id": "130216", + "name": "Huyện Ba Tơ", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "14.73973000", + "longitude": "108.69326000" + }, + { + "id": "130224", + "name": "Huyện Bình Sơn", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "15.31899000", + "longitude": "108.76383000" + }, + { + "id": "130348", + "name": "Huyện Lý Sơn", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "15.40608000", + "longitude": "109.09707000" + }, + { + "id": "130366", + "name": "Huyện Mộ Đức", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "14.95515000", + "longitude": "108.88841000" + }, + { + "id": "130359", + "name": "Huyện Minh Long", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "14.95375000", + "longitude": "108.67724000" + }, + { + "id": "130383", + "name": "Huyện Nghĩa Hành", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "14.98712000", + "longitude": "108.80036000" + }, + { + "id": "130424", + "name": "Huyện Sơn Hà", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "14.98427000", + "longitude": "108.53643000" + }, + { + "id": "130426", + "name": "Huyện Sơn Tây", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "14.96392000", + "longitude": "108.36419000" + }, + { + "id": "130427", + "name": "Huyện Sơn Tịnh", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "15.19090000", + "longitude": "108.74295000" + }, + { + "id": "130464", + "name": "Huyện Trà Bồng", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "15.23752000", + "longitude": "108.52633000" + }, + { + "id": "130491", + "name": "Huyện Tư Nghĩa", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "15.09499000", + "longitude": "108.77053000" + }, + { + "id": "130585", + "name": "Quảng Ngãi", + "state_id": 3828, + "state_code": "29", + "country_id": 240, + "country_code": "VN", + "latitude": "15.12047000", + "longitude": "108.79232000" + }, + { + "id": "130192", + "name": "Cẩm Phả", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.01004000", + "longitude": "107.27345000" + }, + { + "id": "130193", + "name": "Cẩm Phả Mines", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.01667000", + "longitude": "107.30000000" + }, + { + "id": "130561", + "name": "Hạ Long", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "20.95045000", + "longitude": "107.07336000" + }, + { + "id": "130534", + "name": "Huyện Đông Triều", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.11043000", + "longitude": "106.59662000" + }, + { + "id": "130541", + "name": "Huyện Đầm Hà", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.39689000", + "longitude": "107.56175000" + }, + { + "id": "130214", + "name": "Huyện Ba Chẽ", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.29503000", + "longitude": "107.19298000" + }, + { + "id": "130222", + "name": "Huyện Bình Liêu", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.54389000", + "longitude": "107.44047000" + }, + { + "id": "130268", + "name": "Huyện Cô Tô", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.05418000", + "longitude": "107.80698000" + }, + { + "id": "130314", + "name": "Huyện Hải Hà", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.49537000", + "longitude": "107.66790000" + }, + { + "id": "130299", + "name": "Huyện Hoành Bồ", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.11888000", + "longitude": "107.03149000" + }, + { + "id": "130458", + "name": "Huyện Tiên Yên", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.37571000", + "longitude": "107.37468000" + }, + { + "id": "130494", + "name": "Huyện Vân Đồn", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.04921000", + "longitude": "107.50971000" + }, + { + "id": "130573", + "name": "Móng Cái", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.52471000", + "longitude": "107.96619000" + }, + { + "id": "130602", + "name": "Thành Phố Uông Bí", + "state_id": 3814, + "state_code": "13", + "country_id": 240, + "country_code": "VN", + "latitude": "21.03433000", + "longitude": "106.77049000" + }, + { + "id": "130631", + "name": "Ðông Hà", + "state_id": 3803, + "state_code": "25", + "country_id": 240, + "country_code": "VN", + "latitude": "16.81625000", + "longitude": "107.10031000" + }, + { + "id": "130527", + "name": "Huyện Đa Krông", + "state_id": 3803, + "state_code": "25", + "country_id": 240, + "country_code": "VN", + "latitude": "16.55543000", + "longitude": "106.97208000" + }, + { + "id": "130242", + "name": "Huyện Cam Lộ", + "state_id": 3803, + "state_code": "25", + "country_id": 240, + "country_code": "VN", + "latitude": "16.79335000", + "longitude": "106.96175000" + }, + { + "id": "130288", + "name": "Huyện Gio Linh", + "state_id": 3803, + "state_code": "25", + "country_id": 240, + "country_code": "VN", + "latitude": "16.91667000", + "longitude": "107.00000000" + }, + { + "id": "130316", + "name": "Huyện Hải Lăng", + "state_id": 3803, + "state_code": "25", + "country_id": 240, + "country_code": "VN", + "latitude": "16.67574000", + "longitude": "107.23388000" + }, + { + "id": "130311", + "name": "Huyện Hướng Hóa", + "state_id": 3803, + "state_code": "25", + "country_id": 240, + "country_code": "VN", + "latitude": "16.70132000", + "longitude": "106.67036000" + }, + { + "id": "130462", + "name": "Huyện Triệu Phong", + "state_id": 3803, + "state_code": "25", + "country_id": 240, + "country_code": "VN", + "latitude": "16.78132000", + "longitude": "107.16034000" + }, + { + "id": "130500", + "name": "Huyện Vĩnh Linh", + "state_id": 3803, + "state_code": "25", + "country_id": 240, + "country_code": "VN", + "latitude": "17.01600000", + "longitude": "106.93384000" + }, + { + "id": "130336", + "name": "Huyện Kế Sách", + "state_id": 3819, + "state_code": "52", + "country_id": 240, + "country_code": "VN", + "latitude": "9.81771000", + "longitude": "105.94190000" + }, + { + "id": "130343", + "name": "Huyện Long Phú", + "state_id": 3819, + "state_code": "52", + "country_id": 240, + "country_code": "VN", + "latitude": "9.63715000", + "longitude": "106.08226000" + }, + { + "id": "130371", + "name": "Huyện Mỹ Tú", + "state_id": 3819, + "state_code": "52", + "country_id": 240, + "country_code": "VN", + "latitude": "9.60849000", + "longitude": "105.80681000" + }, + { + "id": "130372", + "name": "Huyện Mỹ Xuyên", + "state_id": 3819, + "state_code": "52", + "country_id": 240, + "country_code": "VN", + "latitude": "9.44200000", + "longitude": "105.88546000" + }, + { + "id": "130450", + "name": "Huyện Thạnh Trị", + "state_id": 3819, + "state_code": "52", + "country_id": 240, + "country_code": "VN", + "latitude": "9.46939000", + "longitude": "105.71196000" + }, + { + "id": "130205", + "name": "Huyen Nga Nam", + "state_id": 3819, + "state_code": "52", + "country_id": 240, + "country_code": "VN", + "latitude": "9.56127000", + "longitude": "105.59476000" + }, + { + "id": "130592", + "name": "Sóc Trăng", + "state_id": 3819, + "state_code": "52", + "country_id": 240, + "country_code": "VN", + "latitude": "9.59995000", + "longitude": "105.97193000" + }, + { + "id": "130238", + "name": "Huyện Bắc Yên", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.25042000", + "longitude": "104.38501000" + }, + { + "id": "130356", + "name": "Huyện Mai Sơn", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.15884000", + "longitude": "104.04821000" + }, + { + "id": "130367", + "name": "Huyện Mộc Châu", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.83333000", + "longitude": "104.75000000" + }, + { + "id": "130363", + "name": "Huyện Mường La", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.52960000", + "longitude": "104.11113000" + }, + { + "id": "130398", + "name": "Huyện Phù Yên", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.21412000", + "longitude": "104.68993000" + }, + { + "id": "130416", + "name": "Huyện Quỳnh Nhai", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.77224000", + "longitude": "103.64920000" + }, + { + "id": "130422", + "name": "Huyện Sông Mã", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.06971000", + "longitude": "103.68727000" + }, + { + "id": "130440", + "name": "Huyện Thuận Châu", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.42319000", + "longitude": "103.64408000" + }, + { + "id": "130512", + "name": "Huyện Yên Châu", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.00500000", + "longitude": "104.33264000" + }, + { + "id": "130594", + "name": "Sơn La", + "state_id": 3812, + "state_code": "05", + "country_id": 240, + "country_code": "VN", + "latitude": "21.32560000", + "longitude": "103.91882000" + }, + { + "id": "130239", + "name": "Huyện Bến Cầu", + "state_id": 3826, + "state_code": "37", + "country_id": 240, + "country_code": "VN", + "latitude": "11.12889000", + "longitude": "106.14296000" + }, + { + "id": "130282", + "name": "Huyện Dương Minh Châu", + "state_id": 3826, + "state_code": "37", + "country_id": 240, + "country_code": "VN", + "latitude": "11.31833000", + "longitude": "106.25697000" + }, + { + "id": "130294", + "name": "Huyện Gò Dầu", + "state_id": 3826, + "state_code": "37", + "country_id": 240, + "country_code": "VN", + "latitude": "11.15737000", + "longitude": "106.27307000" + }, + { + "id": "130306", + "name": "Huyện Hòa Thành", + "state_id": 3826, + "state_code": "37", + "country_id": 240, + "country_code": "VN", + "latitude": "11.26706000", + "longitude": "106.14486000" + }, + { + "id": "130480", + "name": "Huyện Tân Châu", + "state_id": 3826, + "state_code": "37", + "country_id": 240, + "country_code": "VN", + "latitude": "11.58739000", + "longitude": "106.28270000" + }, + { + "id": "130472", + "name": "Huyện Trảng Bàng", + "state_id": 3826, + "state_code": "37", + "country_id": 240, + "country_code": "VN", + "latitude": "11.05720000", + "longitude": "106.37539000" + }, + { + "id": "130581", + "name": "Phú Khương", + "state_id": 3826, + "state_code": "37", + "country_id": 240, + "country_code": "VN", + "latitude": "11.28333000", + "longitude": "106.13333000" + }, + { + "id": "130621", + "name": "Tây Ninh", + "state_id": 3826, + "state_code": "37", + "country_id": 240, + "country_code": "VN", + "latitude": "11.31004000", + "longitude": "106.09828000" + }, + { + "id": "130181", + "name": "Bỉm Sơn", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.07806000", + "longitude": "105.86028000" + }, + { + "id": "130533", + "name": "Huyện Đông Sơn", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.79742000", + "longitude": "105.72465000" + }, + { + "id": "130218", + "name": "Huyện Bá Thước", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.35767000", + "longitude": "105.25301000" + }, + { + "id": "130276", + "name": "Huyện Cẩm Thủy", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.19586000", + "longitude": "105.46817000" + }, + { + "id": "130301", + "name": "Huyện Hà Trung", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.02654000", + "longitude": "105.81931000" + }, + { + "id": "130317", + "name": "Huyện Hậu Lộc", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.93337000", + "longitude": "105.88894000" + }, + { + "id": "130341", + "name": "Huyện Lang Chánh", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.15926000", + "longitude": "105.15071000" + }, + { + "id": "130364", + "name": "Huyện Mường Lát", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.52763000", + "longitude": "104.62941000" + }, + { + "id": "130393", + "name": "Huyện Nông Cống", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.61376000", + "longitude": "105.68279000" + }, + { + "id": "130380", + "name": "Huyện Nga Sơn", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.01561000", + "longitude": "105.98975000" + }, + { + "id": "130389", + "name": "Huyện Ngọc Lặc", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.06777000", + "longitude": "105.37386000" + }, + { + "id": "130391", + "name": "Huyện Như Thanh", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.57798000", + "longitude": "105.55616000" + }, + { + "id": "130392", + "name": "Huyện Như Xuân", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.62527000", + "longitude": "105.38856000" + }, + { + "id": "130404", + "name": "Huyện Quan Hóa", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.47565000", + "longitude": "104.95335000" + }, + { + "id": "130405", + "name": "Huyện Quan Sơn", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.25758000", + "longitude": "104.83416000" + }, + { + "id": "130409", + "name": "Huyện Quảng Xương", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.70252000", + "longitude": "105.79298000" + }, + { + "id": "130451", + "name": "Huyện Thọ Xuân", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.93114000", + "longitude": "105.48284000" + }, + { + "id": "130439", + "name": "Huyện Thiệu Hóa", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.89713000", + "longitude": "105.68144000" + }, + { + "id": "130445", + "name": "Huyện Thường Xuân", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.93684000", + "longitude": "105.24109000" + }, + { + "id": "130463", + "name": "Huyện Triệu Sơn", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.82578000", + "longitude": "105.58293000" + }, + { + "id": "130501", + "name": "Huyện Vĩnh Lộc", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "20.03482000", + "longitude": "105.65755000" + }, + { + "id": "130522", + "name": "Huyện Yên Định", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.98666000", + "longitude": "105.61482000" + }, + { + "id": "130597", + "name": "Thanh Hóa", + "state_id": 3771, + "state_code": "21", + "country_id": 240, + "country_code": "VN", + "latitude": "19.80000000", + "longitude": "105.76667000" + }, + { + "id": "130524", + "name": "Huyện Ðông Hưng", + "state_id": 3775, + "state_code": "20", + "country_id": 240, + "country_code": "VN", + "latitude": "20.54388000", + "longitude": "106.34090000" + }, + { + "id": "130309", + "name": "Huyện Hưng Hà", + "state_id": 3775, + "state_code": "20", + "country_id": 240, + "country_code": "VN", + "latitude": "20.59464000", + "longitude": "106.21230000" + }, + { + "id": "130331", + "name": "Huyện Kiến Xương", + "state_id": 3775, + "state_code": "20", + "country_id": 240, + "country_code": "VN", + "latitude": "20.40081000", + "longitude": "106.42032000" + }, + { + "id": "130417", + "name": "Huyện Quỳnh Phụ", + "state_id": 3775, + "state_code": "20", + "country_id": 240, + "country_code": "VN", + "latitude": "20.65095000", + "longitude": "106.36359000" + }, + { + "id": "130442", + "name": "Huyện Thái Thụy", + "state_id": 3775, + "state_code": "20", + "country_id": 240, + "country_code": "VN", + "latitude": "20.53916000", + "longitude": "106.51688000" + }, + { + "id": "130459", + "name": "Huyện Tiền Hải", + "state_id": 3775, + "state_code": "20", + "country_id": 240, + "country_code": "VN", + "latitude": "20.38465000", + "longitude": "106.52882000" + }, + { + "id": "130504", + "name": "Huyện Vũ Thư", + "state_id": 3775, + "state_code": "20", + "country_id": 240, + "country_code": "VN", + "latitude": "20.43732000", + "longitude": "106.26529000" + }, + { + "id": "130605", + "name": "Thái Bình", + "state_id": 3775, + "state_code": "20", + "country_id": 240, + "country_code": "VN", + "latitude": "20.45000000", + "longitude": "106.34002000" + }, + { + "id": "130606", + "name": "Thái Nguyên", + "state_id": 3807, + "state_code": "69", + "country_id": 240, + "country_code": "VN", + "latitude": "21.59422000", + "longitude": "105.84817000" + }, + { + "id": "130554", + "name": "Huế", + "state_id": 3798, + "state_code": "26", + "country_id": 240, + "country_code": "VN", + "latitude": "16.46190000", + "longitude": "107.59546000" + }, + { + "id": "130207", + "name": "Huyện A Lưới", + "state_id": 3798, + "state_code": "26", + "country_id": 240, + "country_code": "VN", + "latitude": "16.23422000", + "longitude": "107.30650000" + }, + { + "id": "130379", + "name": "Huyện Nam Đông", + "state_id": 3798, + "state_code": "26", + "country_id": 240, + "country_code": "VN", + "latitude": "16.12396000", + "longitude": "107.69270000" + }, + { + "id": "130399", + "name": "Huyện Phú Lộc", + "state_id": 3798, + "state_code": "26", + "country_id": 240, + "country_code": "VN", + "latitude": "16.27066000", + "longitude": "107.88545000" + }, + { + "id": "130402", + "name": "Huyện Phú Vang", + "state_id": 3798, + "state_code": "26", + "country_id": 240, + "country_code": "VN", + "latitude": "16.47007000", + "longitude": "107.71458000" + }, + { + "id": "130395", + "name": "Huyện Phong Điền", + "state_id": 3798, + "state_code": "26", + "country_id": 240, + "country_code": "VN", + "latitude": "16.48769000", + "longitude": "107.28889000" + }, + { + "id": "130410", + "name": "Huyện Quảng Ðiền", + "state_id": 3798, + "state_code": "26", + "country_id": 240, + "country_code": "VN", + "latitude": "16.57941000", + "longitude": "107.49370000" + }, + { + "id": "130241", + "name": "Huyện Cai Lậy", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.38943000", + "longitude": "106.06774000" + }, + { + "id": "130266", + "name": "Huyện Cái Bè", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.38824000", + "longitude": "105.94620000" + }, + { + "id": "130252", + "name": "Huyện Châu Thành", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.38600000", + "longitude": "106.27311000" + }, + { + "id": "130260", + "name": "Huyện Chợ Gạo", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.37373000", + "longitude": "106.44341000" + }, + { + "id": "130293", + "name": "Huyện Gò Công Đông", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.36784000", + "longitude": "106.74592000" + }, + { + "id": "130292", + "name": "Huyện Gò Công Tây", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.34527000", + "longitude": "106.59851000" + }, + { + "id": "130486", + "name": "Huyện Tân Phước", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.51489000", + "longitude": "106.23312000" + }, + { + "id": "130574", + "name": "Mỹ Tho", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.36004000", + "longitude": "106.35996000" + }, + { + "id": "130599", + "name": "Thành Phố Mỹ Tho", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.36221000", + "longitude": "106.36824000" + }, + { + "id": "130610", + "name": "Thị Xã Gò Công", + "state_id": 3781, + "state_code": "46", + "country_id": 240, + "country_code": "VN", + "latitude": "10.40005000", + "longitude": "106.65847000" + }, + { + "id": "130265", + "name": "Huyện Càng Long", + "state_id": 3805, + "state_code": "51", + "country_id": 240, + "country_code": "VN", + "latitude": "9.95883000", + "longitude": "106.21395000" + }, + { + "id": "130272", + "name": "Huyện Cầu Kè", + "state_id": 3805, + "state_code": "51", + "country_id": 240, + "country_code": "VN", + "latitude": "9.86738000", + "longitude": "106.07916000" + }, + { + "id": "130273", + "name": "Huyện Cầu Ngang", + "state_id": 3805, + "state_code": "51", + "country_id": 240, + "country_code": "VN", + "latitude": "9.77186000", + "longitude": "106.43654000" + }, + { + "id": "130460", + "name": "Huyện Tiểu Cần", + "state_id": 3805, + "state_code": "51", + "country_id": 240, + "country_code": "VN", + "latitude": "9.80350000", + "longitude": "106.20594000" + }, + { + "id": "130465", + "name": "Huyện Trà Cú", + "state_id": 3805, + "state_code": "51", + "country_id": 240, + "country_code": "VN", + "latitude": "9.69706000", + "longitude": "106.29423000" + }, + { + "id": "130617", + "name": "Trà Vinh", + "state_id": 3805, + "state_code": "51", + "country_id": 240, + "country_code": "VN", + "latitude": "9.94719000", + "longitude": "106.34225000" + }, + { + "id": "130247", + "name": "Huyện Chiêm Hóa", + "state_id": 3795, + "state_code": "07", + "country_id": 240, + "country_code": "VN", + "latitude": "22.17895000", + "longitude": "105.27671000" + }, + { + "id": "130305", + "name": "Huyện Hàm Yên", + "state_id": 3795, + "state_code": "07", + "country_id": 240, + "country_code": "VN", + "latitude": "22.10935000", + "longitude": "105.01630000" + }, + { + "id": "130345", + "name": "Huyện Lâm Bình", + "state_id": 3795, + "state_code": "07", + "country_id": 240, + "country_code": "VN", + "latitude": "22.46411000", + "longitude": "105.21903000" + }, + { + "id": "130373", + "name": "Huyện Na Hang", + "state_id": 3795, + "state_code": "07", + "country_id": 240, + "country_code": "VN", + "latitude": "22.47522000", + "longitude": "105.48380000" + }, + { + "id": "130423", + "name": "Huyện Sơn Dương", + "state_id": 3795, + "state_code": "07", + "country_id": 240, + "country_code": "VN", + "latitude": "21.63623000", + "longitude": "105.38901000" + }, + { + "id": "130519", + "name": "Huyện Yên Sơn", + "state_id": 3795, + "state_code": "07", + "country_id": 240, + "country_code": "VN", + "latitude": "21.88363000", + "longitude": "105.27656000" + }, + { + "id": "130619", + "name": "Tuyên Quang", + "state_id": 3795, + "state_code": "07", + "country_id": 240, + "country_code": "VN", + "latitude": "21.82356000", + "longitude": "105.21424000" + }, + { + "id": "130342", + "name": "Huyện Long Hồ", + "state_id": 3790, + "state_code": "49", + "country_id": 240, + "country_code": "VN", + "latitude": "10.21640000", + "longitude": "105.98483000" + }, + { + "id": "130357", + "name": "Huyện Mang Thít", + "state_id": 3790, + "state_code": "49", + "country_id": 240, + "country_code": "VN", + "latitude": "10.18731000", + "longitude": "106.07472000" + }, + { + "id": "130428", + "name": "Huyện Tam Bình", + "state_id": 3790, + "state_code": "49", + "country_id": 240, + "country_code": "VN", + "latitude": "10.08127000", + "longitude": "105.95352000" + }, + { + "id": "130468", + "name": "Huyện Trà Ôn", + "state_id": 3790, + "state_code": "49", + "country_id": 240, + "country_code": "VN", + "latitude": "9.97522000", + "longitude": "106.00957000" + }, + { + "id": "130505", + "name": "Huyện Vũng Liêm", + "state_id": 3790, + "state_code": "49", + "country_id": 240, + "country_code": "VN", + "latitude": "10.08717000", + "longitude": "106.16038000" + }, + { + "id": "130624", + "name": "Vĩnh Long", + "state_id": 3790, + "state_code": "49", + "country_id": 240, + "country_code": "VN", + "latitude": "10.25369000", + "longitude": "105.97220000" + }, + { + "id": "130225", + "name": "Huyện Bình Xuyên", + "state_id": 3774, + "state_code": "70", + "country_id": 240, + "country_code": "VN", + "latitude": "21.30561000", + "longitude": "105.66225000" + }, + { + "id": "130432", + "name": "Huyện Tam Đảo", + "state_id": 3774, + "state_code": "70", + "country_id": 240, + "country_code": "VN", + "latitude": "21.45690000", + "longitude": "105.59460000" + }, + { + "id": "130429", + "name": "Huyện Tam Dương", + "state_id": 3774, + "state_code": "70", + "country_id": 240, + "country_code": "VN", + "latitude": "21.36189000", + "longitude": "105.55690000" + }, + { + "id": "130514", + "name": "Huyện Yên Lạc", + "state_id": 3774, + "state_code": "70", + "country_id": 240, + "country_code": "VN", + "latitude": "21.21845000", + "longitude": "105.57586000" + }, + { + "id": "130625", + "name": "Vĩnh Yên", + "state_id": 3774, + "state_code": "70", + "country_id": 240, + "country_code": "VN", + "latitude": "21.30891000", + "longitude": "105.60489000" + }, + { + "id": "130355", + "name": "Huyện Lục Yên", + "state_id": 3784, + "state_code": "06", + "country_id": 240, + "country_code": "VN", + "latitude": "22.10235000", + "longitude": "104.72538000" + }, + { + "id": "130360", + "name": "Huyện Mù Cang Chải", + "state_id": 3784, + "state_code": "06", + "country_id": 240, + "country_code": "VN", + "latitude": "21.78815000", + "longitude": "104.11998000" + }, + { + "id": "130470", + "name": "Huyện Trạm Tấu", + "state_id": 3784, + "state_code": "06", + "country_id": 240, + "country_code": "VN", + "latitude": "21.48553000", + "longitude": "104.42756000" + }, + { + "id": "130473", + "name": "Huyện Trấn Yên", + "state_id": 3784, + "state_code": "06", + "country_id": 240, + "country_code": "VN", + "latitude": "21.66586000", + "longitude": "104.79702000" + }, + { + "id": "130496", + "name": "Huyện Văn Chấn", + "state_id": 3784, + "state_code": "06", + "country_id": 240, + "country_code": "VN", + "latitude": "21.55722000", + "longitude": "104.64038000" + }, + { + "id": "130497", + "name": "Huyện Văn Yên", + "state_id": 3784, + "state_code": "06", + "country_id": 240, + "country_code": "VN", + "latitude": "21.90022000", + "longitude": "104.56669000" + }, + { + "id": "130628", + "name": "Yên Bái", + "state_id": 3784, + "state_code": "06", + "country_id": 240, + "country_code": "VN", + "latitude": "21.72288000", + "longitude": "104.91130000" + }, + { + "id": "130669", + "name": "Aden", + "state_id": 1242, + "state_code": "AD", + "country_id": 245, + "country_code": "YE", + "latitude": "12.77944000", + "longitude": "45.03667000" + }, + { + "id": "130683", + "name": "Al Buraiqeh", + "state_id": 1242, + "state_code": "AD", + "country_id": 245, + "country_code": "YE", + "latitude": "12.80377000", + "longitude": "44.77615000" + }, + { + "id": "130719", + "name": "Al Mansura", + "state_id": 1242, + "state_code": "AD", + "country_id": 245, + "country_code": "YE", + "latitude": "12.85320000", + "longitude": "44.97240000" + }, + { + "id": "130735", + "name": "Al Mualla", + "state_id": 1242, + "state_code": "AD", + "country_id": 245, + "country_code": "YE", + "latitude": "12.65843000", + "longitude": "43.42743000" + }, + { + "id": "130789", + "name": "Ash Shaikh Outhman", + "state_id": 1242, + "state_code": "AD", + "country_id": 245, + "country_code": "YE", + "latitude": "12.88640000", + "longitude": "45.01560000" + }, + { + "id": "130801", + "name": "Attawahi", + "state_id": 1242, + "state_code": "AD", + "country_id": 245, + "country_code": "YE", + "latitude": "12.77410000", + "longitude": "44.99410000" + }, + { + "id": "130830", + "name": "Craiter", + "state_id": 1242, + "state_code": "AD", + "country_id": 245, + "country_code": "YE", + "latitude": "12.77310000", + "longitude": "45.03810000" + }, + { + "id": "130831", + "name": "Dar Sad", + "state_id": 1242, + "state_code": "AD", + "country_id": 245, + "country_code": "YE", + "latitude": "12.90700000", + "longitude": "44.97840000" + }, + { + "id": "130679", + "name": "Al Ashah", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.32400000", + "longitude": "43.78740000" + }, + { + "id": "130709", + "name": "Al Madan", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.23280000", + "longitude": "43.63900000" + }, + { + "id": "130745", + "name": "Al Qaflah", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.33859000", + "longitude": "43.70361000" + }, + { + "id": "130779", + "name": "As Sawd", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.81340000", + "longitude": "43.77700000" + }, + { + "id": "130784", + "name": "As Sudah", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.96640000", + "longitude": "43.77560000" + }, + { + "id": "131013", + "name": "‘Amrān", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.65940000", + "longitude": "43.94385000" + }, + { + "id": "130818", + "name": "Bani Suraim", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.12530000", + "longitude": "43.96020000" + }, + { + "id": "130836", + "name": "Dhi Bin", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.02760000", + "longitude": "44.15150000" + }, + { + "id": "130847", + "name": "Habur Zulaymah", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.03500000", + "longitude": "43.73380000" + }, + { + "id": "130855", + "name": "Harf Sufyan", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.41389000", + "longitude": "43.98571000" + }, + { + "id": "130866", + "name": "Hooth", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.28397000", + "longitude": "43.97811000" + }, + { + "id": "130872", + "name": "Iyal Surayh", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.71460000", + "longitude": "43.99740000" + }, + { + "id": "130875", + "name": "Jabal Iyal Yazid", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.77170000", + "longitude": "43.90510000" + }, + { + "id": "130886", + "name": "Khamir", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.97653000", + "longitude": "43.93371000" + }, + { + "id": "130889", + "name": "Kharif", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.84700000", + "longitude": "44.08220000" + }, + { + "id": "130915", + "name": "Maswar", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.59860000", + "longitude": "43.69250000" + }, + { + "id": "130953", + "name": "Raydah", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.74056000", + "longitude": "44.05634000" + }, + { + "id": "130975", + "name": "Shahārah", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.18000000", + "longitude": "43.70942000" + }, + { + "id": "130983", + "name": "Suwayr", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "16.06110000", + "longitude": "43.62120000" + }, + { + "id": "130990", + "name": "Thula", + "state_id": 1250, + "state_code": "AM", + "country_id": 245, + "country_code": "YE", + "latitude": "15.60100000", + "longitude": "43.82520000" + }, + { + "id": "130809", + "name": "Aḩwar", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.52019000", + "longitude": "46.71367000" + }, + { + "id": "130673", + "name": "Ahwar", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.68530000", + "longitude": "46.75560000" + }, + { + "id": "130714", + "name": "Al Mahfad", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.97050000", + "longitude": "46.75600000" + }, + { + "id": "130752", + "name": "Al Wade'a", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.71360000", + "longitude": "46.01220000" + }, + { + "id": "130880", + "name": "Jawf al Maqbābah", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.83783000", + "longitude": "45.83488000" + }, + { + "id": "130881", + "name": "Jayshan", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.16620000", + "longitude": "46.17230000" + }, + { + "id": "130887", + "name": "Khanfir", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.42049000", + "longitude": "45.68707000" + }, + { + "id": "130900", + "name": "Lawdar", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.80590000", + "longitude": "45.80080000" + }, + { + "id": "130933", + "name": "Mūdīyah", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.92840000", + "longitude": "46.08254000" + }, + { + "id": "130928", + "name": "Mudiyah", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.90960000", + "longitude": "46.21960000" + }, + { + "id": "130952", + "name": "Rasad", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.72310000", + "longitude": "45.28140000" + }, + { + "id": "130967", + "name": "Sarar", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.58300000", + "longitude": "45.35080000" + }, + { + "id": "130981", + "name": "Sibah", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.80910000", + "longitude": "45.40230000" + }, + { + "id": "131008", + "name": "Zingibar", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.13420000", + "longitude": "45.43040000" + }, + { + "id": "131009", + "name": "Zinjibār", + "state_id": 1237, + "state_code": "AB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.12871000", + "longitude": "45.38073000" + }, + { + "id": "130676", + "name": "Al A'rsh", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.36560000", + "longitude": "44.77780000" + }, + { + "id": "130682", + "name": "Al Bayḑā’", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.93666000", + "longitude": "45.54822000" + }, + { + "id": "130680", + "name": "Al Bayda", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.98523000", + "longitude": "45.57272000" + }, + { + "id": "130681", + "name": "Al Bayda City", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.98490000", + "longitude": "45.55660000" + }, + { + "id": "130717", + "name": "Al Malagim", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.36540000", + "longitude": "45.38510000" + }, + { + "id": "130750", + "name": "Al Quraishyah", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.60500000", + "longitude": "44.88960000" + }, + { + "id": "130769", + "name": "Ar Ryashyyah", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.24240000", + "longitude": "44.77540000" + }, + { + "id": "130778", + "name": "As Sawadiyah", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.45198000", + "longitude": "45.36973000" + }, + { + "id": "130781", + "name": "As Sawma'ah", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.16670000", + "longitude": "45.83110000" + }, + { + "id": "130791", + "name": "Ash Sharafayn", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.30697000", + "longitude": "45.12634000" + }, + { + "id": "130796", + "name": "At Taffah", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.19830000", + "longitude": "45.35810000" + }, + { + "id": "130804", + "name": "Az Zahir", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.99180000", + "longitude": "45.42180000" + }, + { + "id": "130837", + "name": "Dhi Na'im", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.11110000", + "longitude": "45.46420000" + }, + { + "id": "130916", + "name": "Maswarah", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.40270000", + "longitude": "45.70330000" + }, + { + "id": "130930", + "name": "Mukayras", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.03200000", + "longitude": "45.79640000" + }, + { + "id": "130934", + "name": "Na'man", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.59390000", + "longitude": "45.52860000" + }, + { + "id": "130936", + "name": "Nati'", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.55390000", + "longitude": "45.58500000" + }, + { + "id": "130947", + "name": "Radā‘", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.34000000", + "longitude": "44.90874000" + }, + { + "id": "130946", + "name": "Radman Al Awad", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.48360000", + "longitude": "45.27440000" + }, + { + "id": "130959", + "name": "Sabah", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.27590000", + "longitude": "44.67000000" + }, + { + "id": "130998", + "name": "Wald Rabi'", + "state_id": 1240, + "state_code": "BA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.55574000", + "longitude": "44.90596000" + }, + { + "id": "130807", + "name": "Aş Şalīf", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.30755000", + "longitude": "42.67107000" + }, + { + "id": "130665", + "name": "Ad Dahi", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.22320000", + "longitude": "43.19350000" + }, + { + "id": "130667", + "name": "Ad Durayhimi", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.60460000", + "longitude": "43.07180000" + }, + { + "id": "130757", + "name": "Al Ḩudaydah", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.79781000", + "longitude": "42.95452000" + }, + { + "id": "130686", + "name": "Al Garrahi", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.10580000", + "longitude": "43.40940000" + }, + { + "id": "130692", + "name": "Al Hajjaylah", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.99070000", + "longitude": "43.58230000" + }, + { + "id": "130693", + "name": "Al Hali", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.82500000", + "longitude": "43.00140000" + }, + { + "id": "130695", + "name": "Al Hawak", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.76010000", + "longitude": "42.99780000" + }, + { + "id": "130720", + "name": "Al Mansuriyah", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.69030000", + "longitude": "43.36820000" + }, + { + "id": "130722", + "name": "Al Marawi'ah", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.83460000", + "longitude": "43.19650000" + }, + { + "id": "130731", + "name": "Al Mighlaf", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.31110000", + "longitude": "43.18360000" + }, + { + "id": "130733", + "name": "Al Mina", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.80775000", + "longitude": "42.93732000" + }, + { + "id": "130740", + "name": "Al Munirah", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.35280000", + "longitude": "42.90620000" + }, + { + "id": "130748", + "name": "Al Qanawis", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.49206000", + "longitude": "43.13782000" + }, + { + "id": "130762", + "name": "Alluheyah", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.63628000", + "longitude": "42.87157000" + }, + { + "id": "130777", + "name": "As Salif", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.22882000", + "longitude": "42.72542000" + }, + { + "id": "130785", + "name": "As Sukhnah", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.74840000", + "longitude": "43.33420000" + }, + { + "id": "130799", + "name": "At Tuhayat", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.10994000", + "longitude": "43.15979000" + }, + { + "id": "130805", + "name": "Az Zaydīyah", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.29586000", + "longitude": "43.06452000" + }, + { + "id": "130806", + "name": "Az Zuhrah", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.71730000", + "longitude": "43.06370000" + }, + { + "id": "130823", + "name": "Bayt al Faqīh", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.48738000", + "longitude": "43.27815000" + }, + { + "id": "130829", + "name": "Bājil", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.07561000", + "longitude": "43.17350000" + }, + { + "id": "130828", + "name": "Bura", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.89820000", + "longitude": "43.47530000" + }, + { + "id": "130863", + "name": "Hays", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "13.93320000", + "longitude": "43.49840000" + }, + { + "id": "130877", + "name": "Jabal Ra's", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.03090000", + "longitude": "43.62780000" + }, + { + "id": "130884", + "name": "Kamaran", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "15.36050000", + "longitude": "42.58540000" + }, + { + "id": "131006", + "name": "Zabīd", + "state_id": 1241, + "state_code": "HU", + "country_id": 245, + "country_code": "YE", + "latitude": "14.27742000", + "longitude": "43.36841000" + }, + { + "id": "130756", + "name": "Al Ḩazm", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.16406000", + "longitude": "44.77692000" + }, + { + "id": "130758", + "name": "Al ‘Inān", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.72189000", + "longitude": "44.31252000" + }, + { + "id": "130688", + "name": "Al Ghayl", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.09140000", + "longitude": "44.68520000" + }, + { + "id": "130698", + "name": "Al Hazm", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.03780000", + "longitude": "44.95850000" + }, + { + "id": "130699", + "name": "Al Humaydat", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.46670000", + "longitude": "44.42990000" + }, + { + "id": "130706", + "name": "Al Khalq", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.06810000", + "longitude": "44.79700000" + }, + { + "id": "130725", + "name": "Al Maslub", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.09610000", + "longitude": "44.56670000" + }, + { + "id": "130726", + "name": "Al Matammah", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.19840000", + "longitude": "44.39020000" + }, + { + "id": "130727", + "name": "Al Maton", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.28720000", + "longitude": "44.63890000" + }, + { + "id": "130803", + "name": "Az Zahir", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.33080000", + "longitude": "44.52440000" + }, + { + "id": "130821", + "name": "Barţ al ‘Anān", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.91972000", + "longitude": "44.51882000" + }, + { + "id": "130885", + "name": "Khabb wa ash Sha'af", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.59750000", + "longitude": "45.78530000" + }, + { + "id": "130888", + "name": "Kharab Al Marashi", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.61070000", + "longitude": "44.22550000" + }, + { + "id": "130950", + "name": "Rajuzah", + "state_id": 1243, + "state_code": "JA", + "country_id": 245, + "country_code": "YE", + "latitude": "16.63420000", + "longitude": "44.50420000" + }, + { + "id": "130687", + "name": "Al Ghaydah", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "16.26180000", + "longitude": "52.08160000" + }, + { + "id": "130689", + "name": "Al Ghayz̧ah", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "16.20787000", + "longitude": "52.17605000" + }, + { + "id": "130724", + "name": "Al Masilah", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "15.63990000", + "longitude": "50.64450000" + }, + { + "id": "130857", + "name": "Hat", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "17.80310000", + "longitude": "51.67500000" + }, + { + "id": "130859", + "name": "Hawf", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "16.69530000", + "longitude": "52.81820000" + }, + { + "id": "130870", + "name": "Huswain", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "15.72300000", + "longitude": "51.91240000" + }, + { + "id": "130908", + "name": "Man'ar", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "16.55050000", + "longitude": "50.98790000" + }, + { + "id": "130943", + "name": "Qishn", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "15.69990000", + "longitude": "51.32400000" + }, + { + "id": "130968", + "name": "Sayhut", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "15.53450000", + "longitude": "51.28690000" + }, + { + "id": "130974", + "name": "Shahan", + "state_id": 1251, + "state_code": "MR", + "country_id": 245, + "country_code": "YE", + "latitude": "17.59230000", + "longitude": "52.59400000" + }, + { + "id": "130808", + "name": "Aţ Ţawīlah", + "state_id": 1235, + "state_code": "MW", + "country_id": 245, + "country_code": "YE", + "latitude": "15.44165000", + "longitude": "43.77484000" + }, + { + "id": "130705", + "name": "Al Khabt", + "state_id": 1235, + "state_code": "MW", + "country_id": 245, + "country_code": "YE", + "latitude": "15.48170000", + "longitude": "43.36770000" + }, + { + "id": "130729", + "name": "Al Maḩwīt", + "state_id": 1235, + "state_code": "MW", + "country_id": 245, + "country_code": "YE", + "latitude": "15.47007000", + "longitude": "43.54481000" + }, + { + "id": "130715", + "name": "Al Mahwait", + "state_id": 1235, + "state_code": "MW", + "country_id": 245, + "country_code": "YE", + "latitude": "15.41170000", + "longitude": "43.56630000" + }, + { + "id": "130768", + "name": "Ar Rujum", + "state_id": 1235, + "state_code": "MW", + "country_id": 245, + "country_code": "YE", + "latitude": "15.41010000", + "longitude": "43.66060000" + }, + { + "id": "130817", + "name": "Bani Sa'd", + "state_id": 1235, + "state_code": "MW", + "country_id": 245, + "country_code": "YE", + "latitude": "15.23550000", + "longitude": "43.51560000" + }, + { + "id": "130868", + "name": "Hufash", + "state_id": 1235, + "state_code": "MW", + "country_id": 245, + "country_code": "YE", + "latitude": "15.37470000", + "longitude": "43.42650000" + }, + { + "id": "130925", + "name": "Milhan", + "state_id": 1235, + "state_code": "MW", + "country_id": 245, + "country_code": "YE", + "latitude": "15.32240000", + "longitude": "43.33180000" + }, + { + "id": "130980", + "name": "Shibām Kawkabān", + "state_id": 1235, + "state_code": "MW", + "country_id": 245, + "country_code": "YE", + "latitude": "15.50277000", + "longitude": "43.84237000" + }, + { + "id": "130691", + "name": "Al Hada", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.80760000", + "longitude": "44.56790000" + }, + { + "id": "130718", + "name": "Al Manar", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.65300000", + "longitude": "44.11640000" + }, + { + "id": "130761", + "name": "Al-Medy Village, قرية المدي", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.40152000", + "longitude": "43.79178000" + }, + { + "id": "131014", + "name": "‘Ans", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.43606000", + "longitude": "44.38889000" + }, + { + "id": "130833", + "name": "Dawran Aness", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.82880000", + "longitude": "44.11430000" + }, + { + "id": "130834", + "name": "Dhamār", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.54274000", + "longitude": "44.40514000" + }, + { + "id": "130873", + "name": "Jabal Ash sharq", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.72960000", + "longitude": "43.90620000" + }, + { + "id": "130878", + "name": "Jahran", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.73310000", + "longitude": "44.31430000" + }, + { + "id": "130904", + "name": "Maghirib Ans", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.46530000", + "longitude": "44.12330000" + }, + { + "id": "130919", + "name": "Mayfa'at Anss", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.51520000", + "longitude": "44.61060000" + }, + { + "id": "130994", + "name": "Utmah", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.47380000", + "longitude": "43.94830000" + }, + { + "id": "131000", + "name": "Wusab Al Ali", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.33440000", + "longitude": "43.79470000" + }, + { + "id": "131001", + "name": "Wusab As Safil", + "state_id": 1246, + "state_code": "DH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.25480000", + "longitude": "43.63250000" + }, + { + "id": "130668", + "name": "Ad Dīs ash Sharqīyah", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.90840000", + "longitude": "49.94847000" + }, + { + "id": "130666", + "name": "Ad Dis", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.09490000", + "longitude": "50.01590000" + }, + { + "id": "130670", + "name": "Adh Dhlia'ah", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.01390000", + "longitude": "47.89720000" + }, + { + "id": "130678", + "name": "Al Abr", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.91370000", + "longitude": "47.22880000" + }, + { + "id": "130755", + "name": "Al Ḩamdī", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.94727000", + "longitude": "48.77965000" + }, + { + "id": "130737", + "name": "Al Mukalla", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.72920000", + "longitude": "48.91990000" + }, + { + "id": "130738", + "name": "Al Mukalla City", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.62033000", + "longitude": "49.24800000" + }, + { + "id": "130744", + "name": "Al Qaf", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.42870000", + "longitude": "48.94050000" + }, + { + "id": "130749", + "name": "Al Qatn", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.92320000", + "longitude": "48.21460000" + }, + { + "id": "130763", + "name": "Amd", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.34860000", + "longitude": "47.92860000" + }, + { + "id": "130767", + "name": "Ar Raydah Wa Qusayar", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.18410000", + "longitude": "50.31330000" + }, + { + "id": "130780", + "name": "As Sawm", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.99800000", + "longitude": "49.66860000" + }, + { + "id": "130794", + "name": "Ash Shiḩr", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.76026000", + "longitude": "49.60537000" + }, + { + "id": "130793", + "name": "Ash Shihr", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.97230000", + "longitude": "49.55260000" + }, + { + "id": "130797", + "name": "At Taḩāluf", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.93786000", + "longitude": "48.78641000" + }, + { + "id": "130827", + "name": "Brom Mayfa", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.34230000", + "longitude": "48.72810000" + }, + { + "id": "130832", + "name": "Daw'an", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.05070000", + "longitude": "48.30720000" + }, + { + "id": "130843", + "name": "Ghayl Ba Wazir", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.87780000", + "longitude": "49.02450000" + }, + { + "id": "130844", + "name": "Ghayl Bin Yamin", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.38960000", + "longitude": "49.28540000" + }, + { + "id": "130849", + "name": "Hagr As Sai'ar", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.30560000", + "longitude": "47.95370000" + }, + { + "id": "130851", + "name": "Hajr", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.47080000", + "longitude": "48.27740000" + }, + { + "id": "130869", + "name": "Huraidhah", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.55425000", + "longitude": "48.17505000" + }, + { + "id": "130893", + "name": "Kilmia", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "12.18576000", + "longitude": "52.23332000" + }, + { + "id": "130929", + "name": "Mukalla", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.54248000", + "longitude": "49.12424000" + }, + { + "id": "130951", + "name": "Rakhyah", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.46180000", + "longitude": "47.77280000" + }, + { + "id": "130955", + "name": "Rumah", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.81450000", + "longitude": "51.07590000" + }, + { + "id": "130961", + "name": "Sah", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.53420000", + "longitude": "48.89550000" + }, + { + "id": "130969", + "name": "Sayun", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.98310000", + "longitude": "48.83150000" + }, + { + "id": "130979", + "name": "Shibam", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.87030000", + "longitude": "48.65340000" + }, + { + "id": "130984", + "name": "Suḩayl Shibām", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.91448000", + "longitude": "48.63864000" + }, + { + "id": "130987", + "name": "Tarīm", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.05694000", + "longitude": "48.99889000" + }, + { + "id": "130986", + "name": "Tarim", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.06600000", + "longitude": "49.02290000" + }, + { + "id": "130989", + "name": "Thamud", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.60310000", + "longitude": "49.73610000" + }, + { + "id": "130997", + "name": "Wadi Al Ayn", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "15.74033000", + "longitude": "48.14747000" + }, + { + "id": "131002", + "name": "Yabuth", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "14.71820000", + "longitude": "47.73580000" + }, + { + "id": "131007", + "name": "Zamakh wa Manwakh", + "state_id": 1238, + "state_code": "HD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.20320000", + "longitude": "47.70330000" + }, + { + "id": "130664", + "name": "Abs", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.02150000", + "longitude": "43.04850000" + }, + { + "id": "130671", + "name": "Aflah Al Yaman", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.97890000", + "longitude": "43.41110000" + }, + { + "id": "130672", + "name": "Aflah Ash Shawm", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.05280000", + "longitude": "43.41200000" + }, + { + "id": "130703", + "name": "Al Jamimah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.02840000", + "longitude": "43.52970000" + }, + { + "id": "130712", + "name": "Al Maghrabah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.89370000", + "longitude": "43.60910000" + }, + { + "id": "130713", + "name": "Al Mahabishah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.92870000", + "longitude": "43.44800000" + }, + { + "id": "130730", + "name": "Al Miftah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.96100000", + "longitude": "43.51470000" + }, + { + "id": "130787", + "name": "Ash Shaghadirah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.60610000", + "longitude": "43.49920000" + }, + { + "id": "130788", + "name": "Ash Shahil", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.85530000", + "longitude": "43.45160000" + }, + { + "id": "130795", + "name": "Aslem", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.06000000", + "longitude": "43.29390000" + }, + { + "id": "131011", + "name": "Ḩajjah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.69425000", + "longitude": "43.60582000" + }, + { + "id": "130811", + "name": "Bakil Al Mir", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.50690000", + "longitude": "43.36150000" + }, + { + "id": "130819", + "name": "Banī al ‘Awwām", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.58119000", + "longitude": "43.58727000" + }, + { + "id": "130812", + "name": "Bani Al Awam", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.58100000", + "longitude": "43.60790000" + }, + { + "id": "130816", + "name": "Bani Qa'is", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.63460000", + "longitude": "43.33720000" + }, + { + "id": "130850", + "name": "Hajjah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.68160000", + "longitude": "43.44996000" + }, + { + "id": "130854", + "name": "Harad District", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.40447000", + "longitude": "43.07739000" + }, + { + "id": "130862", + "name": "Hayran", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.25080000", + "longitude": "43.05990000" + }, + { + "id": "130890", + "name": "Khayran Al Muharraq", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.08964000", + "longitude": "43.35755000" + }, + { + "id": "130895", + "name": "Ku'aydinah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.81830000", + "longitude": "43.35990000" + }, + { + "id": "130896", + "name": "Kuhlan Affar", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.75540000", + "longitude": "43.69700000" + }, + { + "id": "130897", + "name": "Kuhlan Ash Sharaf", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.02310000", + "longitude": "43.48630000" + }, + { + "id": "130898", + "name": "Kushar", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.17090000", + "longitude": "43.47200000" + }, + { + "id": "130903", + "name": "Mabyan", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.77170000", + "longitude": "43.55100000" + }, + { + "id": "130924", + "name": "Midi", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.19202000", + "longitude": "42.88913000" + }, + { + "id": "130931", + "name": "Mustaba", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.27360000", + "longitude": "43.26850000" + }, + { + "id": "130935", + "name": "Najrah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.65270000", + "longitude": "43.54520000" + }, + { + "id": "130939", + "name": "Qafl Shamer", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.90870000", + "longitude": "43.36400000" + }, + { + "id": "130941", + "name": "Qarah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.40190000", + "longitude": "43.47400000" + }, + { + "id": "130978", + "name": "Sharas", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.72860000", + "longitude": "43.65460000" + }, + { + "id": "130996", + "name": "Wadhrah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "15.71420000", + "longitude": "43.46670000" + }, + { + "id": "130999", + "name": "Washḩah", + "state_id": 1244, + "state_code": "HJ", + "country_id": 245, + "country_code": "YE", + "latitude": "16.32158000", + "longitude": "43.37555000" + }, + { + "id": "130759", + "name": "Al ‘Udayn", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.96112000", + "longitude": "43.96608000" + }, + { + "id": "130685", + "name": "Al Dhihar", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.97900000", + "longitude": "44.15260000" + }, + { + "id": "130716", + "name": "Al Makhādir", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.13965000", + "longitude": "44.20330000" + }, + { + "id": "130723", + "name": "Al Mashannah", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.95730000", + "longitude": "44.17000000" + }, + { + "id": "130746", + "name": "Al Qafr", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.31290000", + "longitude": "44.03000000" + }, + { + "id": "130764", + "name": "An Nādirah", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.07398000", + "longitude": "44.49925000" + }, + { + "id": "130765", + "name": "Ar Radmah", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.21200000", + "longitude": "44.56420000" + }, + { + "id": "130772", + "name": "As Sabrah", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.84270000", + "longitude": "44.33860000" + }, + { + "id": "130773", + "name": "As Saddah", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.16610000", + "longitude": "44.37510000" + }, + { + "id": "130782", + "name": "As Sayyani", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.82240000", + "longitude": "44.21180000" + }, + { + "id": "130786", + "name": "Ash Sha'ir", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.03180000", + "longitude": "44.36190000" + }, + { + "id": "130810", + "name": "Ba'dan", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.98870000", + "longitude": "44.32360000" + }, + { + "id": "130839", + "name": "Dhī as Sufāl", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.82137000", + "longitude": "44.07775000" + }, + { + "id": "130841", + "name": "Far Al Udayn", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.95780000", + "longitude": "43.78270000" + }, + { + "id": "130864", + "name": "Hazm Al Udayn", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.16984000", + "longitude": "43.93814000" + }, + { + "id": "130867", + "name": "Hubaysh", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.11600000", + "longitude": "44.08240000" + }, + { + "id": "130871", + "name": "Ibb", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.96667000", + "longitude": "44.18333000" + }, + { + "id": "130882", + "name": "Jiblah", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.91480000", + "longitude": "44.12130000" + }, + { + "id": "130927", + "name": "Mudhaykhirah", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "13.86608000", + "longitude": "43.96866000" + }, + { + "id": "131005", + "name": "Yarīm", + "state_id": 1233, + "state_code": "IB", + "country_id": 245, + "country_code": "YE", + "latitude": "14.25388000", + "longitude": "44.31176000" + }, + { + "id": "130675", + "name": "Al Hawtah", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.06240000", + "longitude": "44.88160000" + }, + { + "id": "130754", + "name": "Al Ḩabīlayn", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.52002000", + "longitude": "44.85076000" + }, + { + "id": "130690", + "name": "Al Had", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.97830000", + "longitude": "45.25530000" + }, + { + "id": "130710", + "name": "Al Madaribah Wa Al Arah", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "12.85690000", + "longitude": "43.99060000" + }, + { + "id": "130711", + "name": "Al Maflahy", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.77670000", + "longitude": "45.10880000" + }, + { + "id": "130721", + "name": "Al Maqatirah", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.13720000", + "longitude": "44.14040000" + }, + { + "id": "130732", + "name": "Al Milah", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.32020000", + "longitude": "44.92670000" + }, + { + "id": "130742", + "name": "Al Musaymīr", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.44389000", + "longitude": "44.61528000" + }, + { + "id": "130741", + "name": "Al Musaymir", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.42910000", + "longitude": "44.59140000" + }, + { + "id": "130743", + "name": "Al Qabbaytah", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.32750000", + "longitude": "44.50250000" + }, + { + "id": "130846", + "name": "Habil Jabr", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.59210000", + "longitude": "45.07370000" + }, + { + "id": "130852", + "name": "Halimayn", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.70880000", + "longitude": "44.94430000" + }, + { + "id": "130901", + "name": "Laḩij", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.05667000", + "longitude": "44.88194000" + }, + { + "id": "130945", + "name": "Radfan", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.46670000", + "longitude": "44.99000000" + }, + { + "id": "130991", + "name": "Tuban", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.09210000", + "longitude": "44.87840000" + }, + { + "id": "130992", + "name": "Tur Al Bahah", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.04269000", + "longitude": "44.41154000" + }, + { + "id": "131003", + "name": "Yafa'a", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.86200000", + "longitude": "45.20140000" + }, + { + "id": "131004", + "name": "Yahr", + "state_id": 1245, + "state_code": "LA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.72270000", + "longitude": "45.13050000" + }, + { + "id": "130677", + "name": "Al Abdiyah", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.71700000", + "longitude": "45.39340000" + }, + { + "id": "130704", + "name": "Al Jubah", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.12490000", + "longitude": "45.28680000" + }, + { + "id": "131012", + "name": "Ḩarīb", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.93045000", + "longitude": "45.36820000" + }, + { + "id": "130824", + "name": "Bidbadah", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.39810000", + "longitude": "44.74730000" + }, + { + "id": "130856", + "name": "Harib Al Qaramish", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.47350000", + "longitude": "44.61530000" + }, + { + "id": "130876", + "name": "Jabal Murad", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.04740000", + "longitude": "45.18870000" + }, + { + "id": "130902", + "name": "Ma'rib", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.46253000", + "longitude": "45.32581000" + }, + { + "id": "130905", + "name": "Mahliyah", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.68210000", + "longitude": "45.18320000" + }, + { + "id": "130907", + "name": "Majzar", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.82770000", + "longitude": "44.79410000" + }, + { + "id": "130912", + "name": "Marib", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.62130000", + "longitude": "46.01110000" + }, + { + "id": "130913", + "name": "Marib City", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.41560000", + "longitude": "45.30340000" + }, + { + "id": "130921", + "name": "Medghal", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.63840000", + "longitude": "45.00380000" + }, + { + "id": "130948", + "name": "Raghwan", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.79020000", + "longitude": "45.06940000" + }, + { + "id": "130949", + "name": "Rahabah", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.95100000", + "longitude": "45.08850000" + }, + { + "id": "130982", + "name": "Sirwah", + "state_id": 1234, + "state_code": "MA", + "country_id": 245, + "country_code": "YE", + "latitude": "15.43690000", + "longitude": "45.01150000" + }, + { + "id": "130701", + "name": "Al Jabin", + "state_id": 1248, + "state_code": "RA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.68990000", + "longitude": "43.61960000" + }, + { + "id": "130702", + "name": "Al Jafariyah", + "state_id": 1248, + "state_code": "RA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.51960000", + "longitude": "43.58170000" + }, + { + "id": "130776", + "name": "As Salafiyah", + "state_id": 1248, + "state_code": "RA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.68660000", + "longitude": "43.82160000" + }, + { + "id": "130826", + "name": "Bilad At Ta'am", + "state_id": 1248, + "state_code": "RA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.83820000", + "longitude": "43.60780000" + }, + { + "id": "130899", + "name": "Kusmah", + "state_id": 1248, + "state_code": "RA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.54740000", + "longitude": "43.68330000" + }, + { + "id": "130920", + "name": "Mazhar", + "state_id": 1248, + "state_code": "RA", + "country_id": 245, + "country_code": "YE", + "latitude": "14.57090000", + "longitude": "43.76070000" + }, + { + "id": "130684", + "name": "Al Dhaher", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.73140000", + "longitude": "43.27530000" + }, + { + "id": "130694", + "name": "Al Hashwah", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.88840000", + "longitude": "44.27380000" + }, + { + "id": "130774", + "name": "As Safra", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.01420000", + "longitude": "43.85660000" + }, + { + "id": "130792", + "name": "Ash Shawātī", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.78314000", + "longitude": "43.81265000" + }, + { + "id": "131010", + "name": "Şa‘dah", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.91733000", + "longitude": "43.76000000" + }, + { + "id": "130820", + "name": "Baqim", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.37810000", + "longitude": "43.46350000" + }, + { + "id": "130842", + "name": "Ghamr", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.98301000", + "longitude": "43.31608000" + }, + { + "id": "130860", + "name": "Haydan", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.72870000", + "longitude": "43.48490000" + }, + { + "id": "130894", + "name": "Kitaf wa Al Boqe'e", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.08080000", + "longitude": "44.39620000" + }, + { + "id": "130906", + "name": "Majz", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.09230000", + "longitude": "43.51040000" + }, + { + "id": "130926", + "name": "Monabbih", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.16930000", + "longitude": "43.27910000" + }, + { + "id": "130942", + "name": "Qatabir", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "17.33680000", + "longitude": "43.33110000" + }, + { + "id": "130956", + "name": "Rāziḩ", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.93704000", + "longitude": "43.26080000" + }, + { + "id": "130957", + "name": "Sa'dah", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.94021000", + "longitude": "43.76393000" + }, + { + "id": "130972", + "name": "Saḩār", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.88522000", + "longitude": "43.68306000" + }, + { + "id": "130966", + "name": "Saqayn", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.86010000", + "longitude": "43.47160000" + }, + { + "id": "130985", + "name": "Sāqayn", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.87700000", + "longitude": "43.52499000" + }, + { + "id": "130973", + "name": "Shada'a", + "state_id": 1249, + "state_code": "SD", + "country_id": 245, + "country_code": "YE", + "latitude": "16.89130000", + "longitude": "43.18710000" + }, + { + "id": "130696", + "name": "Al Haymah Ad Dakhiliyah", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.27220000", + "longitude": "43.83930000" + }, + { + "id": "130697", + "name": "Al Haymah Al Kharijiyah", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.02670000", + "longitude": "43.85000000" + }, + { + "id": "130700", + "name": "Al Husn", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.02060000", + "longitude": "44.50440000" + }, + { + "id": "130707", + "name": "Al Khāniq", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.50253000", + "longitude": "44.18158000" + }, + { + "id": "130770", + "name": "Arhab", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.79950000", + "longitude": "44.24660000" + }, + { + "id": "130802", + "name": "Attyal", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.32931000", + "longitude": "44.57739000" + }, + { + "id": "130813", + "name": "Bani Dhabyan", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.04810000", + "longitude": "44.87180000" + }, + { + "id": "130814", + "name": "Bani Hushaysh", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.45050000", + "longitude": "44.37820000" + }, + { + "id": "130815", + "name": "Bani Matar", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.21500000", + "longitude": "44.04980000" + }, + { + "id": "130825", + "name": "Bilad Ar Rus", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.03510000", + "longitude": "44.25140000" + }, + { + "id": "130853", + "name": "Hamdān", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.50662000", + "longitude": "44.06030000" + }, + { + "id": "130883", + "name": "Jihanah", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.19190000", + "longitude": "44.51950000" + }, + { + "id": "130892", + "name": "Khwlan", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.27490000", + "longitude": "44.76860000" + }, + { + "id": "130909", + "name": "Manakhah", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.07170000", + "longitude": "43.68620000" + }, + { + "id": "130910", + "name": "Manākhah", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.07422000", + "longitude": "43.74156000" + }, + { + "id": "130937", + "name": "Nihm", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.75160000", + "longitude": "44.57460000" + }, + { + "id": "130958", + "name": "Sa'fan", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.07120000", + "longitude": "43.58270000" + }, + { + "id": "130971", + "name": "Saḩar", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.31637000", + "longitude": "44.30880000" + }, + { + "id": "130964", + "name": "Sanaa", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.35472000", + "longitude": "44.20667000" + }, + { + "id": "130965", + "name": "Sanhan", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.22520000", + "longitude": "44.30570000" + }, + { + "id": "130970", + "name": "Sayyān", + "state_id": 1236, + "state_code": "SN", + "country_id": 245, + "country_code": "YE", + "latitude": "15.17177000", + "longitude": "44.32442000" + }, + { + "id": "130674", + "name": "Ain", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.95030000", + "longitude": "45.60040000" + }, + { + "id": "130760", + "name": "Al ‘Āqir", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.56816000", + "longitude": "45.91156000" + }, + { + "id": "130751", + "name": "Al Talh", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "15.08260000", + "longitude": "47.35140000" + }, + { + "id": "130663", + "name": "AL-khashā upper", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.34044000", + "longitude": "46.71365000" + }, + { + "id": "130766", + "name": "Ar Rawdah", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.49560000", + "longitude": "47.27460000" + }, + { + "id": "130771", + "name": "Arma", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "15.41270000", + "longitude": "47.23450000" + }, + { + "id": "130775", + "name": "As Said", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.27660000", + "longitude": "46.86930000" + }, + { + "id": "130800", + "name": "Ataq", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.53767000", + "longitude": "46.83187000" + }, + { + "id": "130822", + "name": "Bayhan", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.76190000", + "longitude": "45.74820000" + }, + { + "id": "130835", + "name": "Dhar", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "15.50360000", + "longitude": "47.60580000" + }, + { + "id": "130845", + "name": "Habban", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.28780000", + "longitude": "47.13610000" + }, + { + "id": "130858", + "name": "Hatib", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.18020000", + "longitude": "46.44390000" + }, + { + "id": "130879", + "name": "Jardan", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "15.19000000", + "longitude": "46.73380000" + }, + { + "id": "130891", + "name": "Khimār", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.31980000", + "longitude": "46.73922000" + }, + { + "id": "130918", + "name": "Mayfa'a", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.39780000", + "longitude": "47.74040000" + }, + { + "id": "130922", + "name": "Merkhah Al Ulya", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.48470000", + "longitude": "45.92990000" + }, + { + "id": "130923", + "name": "Merkhah As Sufla", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.69990000", + "longitude": "46.15630000" + }, + { + "id": "130938", + "name": "Nisab", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.52570000", + "longitude": "46.44770000" + }, + { + "id": "130954", + "name": "Rudum", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "14.03759000", + "longitude": "47.83824000" + }, + { + "id": "130993", + "name": "Usaylan", + "state_id": 1247, + "state_code": "SH", + "country_id": 245, + "country_code": "YE", + "latitude": "15.17030000", + "longitude": "46.02740000" + }, + { + "id": "130848", + "name": "Hadibu", + "state_id": 1239, + "state_code": "SU", + "country_id": 245, + "country_code": "YE", + "latitude": "12.64881000", + "longitude": "54.01895000" + }, + { + "id": "130865", + "name": "Hidaybu", + "state_id": 1239, + "state_code": "SU", + "country_id": 245, + "country_code": "YE", + "latitude": "12.50250000", + "longitude": "54.00820000" + }, + { + "id": "130940", + "name": "Qalansīyah", + "state_id": 1239, + "state_code": "SU", + "country_id": 245, + "country_code": "YE", + "latitude": "12.68958000", + "longitude": "53.48709000" + }, + { + "id": "130944", + "name": "Qulensya Wa Abd Al Kuri", + "state_id": 1239, + "state_code": "SU", + "country_id": 245, + "country_code": "YE", + "latitude": "12.55479000", + "longitude": "53.58671000" + }, + { + "id": "130708", + "name": "Al Ma'afer", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.37420000", + "longitude": "43.92620000" + }, + { + "id": "130728", + "name": "Al Mawasit", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.30420000", + "longitude": "44.10050000" + }, + { + "id": "130734", + "name": "Al Misrakh", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.47020000", + "longitude": "44.03770000" + }, + { + "id": "130736", + "name": "Al Mudhaffar", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.58310000", + "longitude": "43.99270000" + }, + { + "id": "130739", + "name": "Al Mukhā’", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.51998000", + "longitude": "43.42798000" + }, + { + "id": "130747", + "name": "Al Qahirah", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.58490000", + "longitude": "44.01010000" + }, + { + "id": "130753", + "name": "Al Wazi'iyah", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.18460000", + "longitude": "43.72980000" + }, + { + "id": "130783", + "name": "As Silw", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.34590000", + "longitude": "44.20720000" + }, + { + "id": "130790", + "name": "Ash Shamayatayn", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.18220000", + "longitude": "43.98000000" + }, + { + "id": "130798", + "name": "At Ta‘izzīyah", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.69479000", + "longitude": "44.00941000" + }, + { + "id": "130838", + "name": "Dhubab", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "12.96590000", + "longitude": "43.47240000" + }, + { + "id": "130840", + "name": "Dimnat Khadir", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.43860000", + "longitude": "44.25420000" + }, + { + "id": "130861", + "name": "Hayfan", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.29060000", + "longitude": "44.26070000" + }, + { + "id": "130874", + "name": "Jabal Habashy", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.46650000", + "longitude": "43.88100000" + }, + { + "id": "130911", + "name": "Maqbanah", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.62120000", + "longitude": "43.66740000" + }, + { + "id": "130914", + "name": "Mashra'a Wa Hadnan", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.54170000", + "longitude": "43.99830000" + }, + { + "id": "130917", + "name": "Mawza", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.37820000", + "longitude": "43.61450000" + }, + { + "id": "130932", + "name": "Māwīyah", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.58461000", + "longitude": "44.31912000" + }, + { + "id": "130960", + "name": "Sabir Al Mawadim", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.53180000", + "longitude": "44.04620000" + }, + { + "id": "130962", + "name": "Salh", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.58390000", + "longitude": "44.04020000" + }, + { + "id": "130963", + "name": "Sama", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.38090000", + "longitude": "44.11660000" + }, + { + "id": "130976", + "name": "Shara'b Ar Rawnah", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.73360000", + "longitude": "43.76720000" + }, + { + "id": "130977", + "name": "Shara'b As Salam", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.78320000", + "longitude": "43.88610000" + }, + { + "id": "130988", + "name": "Ta‘izz", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.57952000", + "longitude": "44.02091000" + }, + { + "id": "130995", + "name": "Village of ALAMRAH", + "state_id": 1231, + "state_code": "TA", + "country_id": 245, + "country_code": "YE", + "latitude": "13.74318000", + "longitude": "43.72992000" + }, + { + "id": "131332", + "name": "Chibombo", + "state_id": 1986, + "state_code": "02", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.65685000", + "longitude": "28.07057000" + }, + { + "id": "131333", + "name": "Chibombo District", + "state_id": 1986, + "state_code": "02", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.65808000", + "longitude": "28.07376000" + }, + { + "id": "131345", + "name": "Kabwe", + "state_id": 1986, + "state_code": "02", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.44690000", + "longitude": "28.44644000" + }, + { + "id": "131352", + "name": "Kapiri Mposhi", + "state_id": 1986, + "state_code": "02", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.97147000", + "longitude": "28.66985000" + }, + { + "id": "131371", + "name": "Mkushi", + "state_id": 1986, + "state_code": "02", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.62015000", + "longitude": "29.39390000" + }, + { + "id": "131380", + "name": "Mumbwa", + "state_id": 1986, + "state_code": "02", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.98293000", + "longitude": "27.06190000" + }, + { + "id": "131393", + "name": "Serenje", + "state_id": 1986, + "state_code": "02", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.23251000", + "longitude": "30.23522000" + }, + { + "id": "131331", + "name": "Chambishi", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.63247000", + "longitude": "28.05367000" + }, + { + "id": "131334", + "name": "Chililabombwe", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.36475000", + "longitude": "27.82286000" + }, + { + "id": "131335", + "name": "Chingola", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.52897000", + "longitude": "27.88382000" + }, + { + "id": "131336", + "name": "Chingola District", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.48478000", + "longitude": "27.66313000" + }, + { + "id": "131349", + "name": "Kalulushi", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.84151000", + "longitude": "28.09479000" + }, + { + "id": "131356", + "name": "Kataba", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-11.88333000", + "longitude": "29.78333000" + }, + { + "id": "131358", + "name": "Kitwe", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.80243000", + "longitude": "28.21323000" + }, + { + "id": "131362", + "name": "Luanshya", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.13667000", + "longitude": "28.41661000" + }, + { + "id": "131375", + "name": "Mpongwe", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.50914000", + "longitude": "28.15504000" + }, + { + "id": "131378", + "name": "Mufulira", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.54982000", + "longitude": "28.24071000" + }, + { + "id": "131388", + "name": "Ndola", + "state_id": 1984, + "state_code": "08", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.95867000", + "longitude": "28.63659000" + }, + { + "id": "131329", + "name": "Chadiza", + "state_id": 1991, + "state_code": "03", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.06779000", + "longitude": "32.43917000" + }, + { + "id": "131338", + "name": "Chipata", + "state_id": 1991, + "state_code": "03", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.63333000", + "longitude": "32.65000000" + }, + { + "id": "131364", + "name": "Lundazi", + "state_id": 1991, + "state_code": "03", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.29292000", + "longitude": "33.17820000" + }, + { + "id": "131389", + "name": "Nyimba", + "state_id": 1991, + "state_code": "03", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.55656000", + "longitude": "30.81490000" + }, + { + "id": "131390", + "name": "Petauke", + "state_id": 1991, + "state_code": "03", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.24117000", + "longitude": "31.31975000" + }, + { + "id": "131357", + "name": "Kawambwa", + "state_id": 1987, + "state_code": "04", + "country_id": 246, + "country_code": "ZM", + "latitude": "-9.79150000", + "longitude": "29.07913000" + }, + { + "id": "131368", + "name": "Mansa", + "state_id": 1987, + "state_code": "04", + "country_id": 246, + "country_code": "ZM", + "latitude": "-11.19976000", + "longitude": "28.89431000" + }, + { + "id": "131382", + "name": "Mwense", + "state_id": 1987, + "state_code": "04", + "country_id": 246, + "country_code": "ZM", + "latitude": "-10.38447000", + "longitude": "28.69800000" + }, + { + "id": "131387", + "name": "Nchelenge", + "state_id": 1987, + "state_code": "04", + "country_id": 246, + "country_code": "ZM", + "latitude": "-9.34506000", + "longitude": "28.73396000" + }, + { + "id": "131391", + "name": "Samfya", + "state_id": 1987, + "state_code": "04", + "country_id": 246, + "country_code": "ZM", + "latitude": "-11.36491000", + "longitude": "29.55652000" + }, + { + "id": "131340", + "name": "Chongwe", + "state_id": 1988, + "state_code": "09", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.32916000", + "longitude": "28.68204000" + }, + { + "id": "131346", + "name": "Kafue", + "state_id": 1988, + "state_code": "09", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.76911000", + "longitude": "28.18136000" + }, + { + "id": "131361", + "name": "Luangwa", + "state_id": 1988, + "state_code": "09", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.61667000", + "longitude": "30.41667000" + }, + { + "id": "131365", + "name": "Lusaka", + "state_id": 1988, + "state_code": "09", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.40669000", + "longitude": "28.28713000" + }, + { + "id": "131330", + "name": "Chama", + "state_id": 1989, + "state_code": "10", + "country_id": 246, + "country_code": "ZM", + "latitude": "-11.21303000", + "longitude": "33.15210000" + }, + { + "id": "131337", + "name": "Chinsali", + "state_id": 1989, + "state_code": "10", + "country_id": 246, + "country_code": "ZM", + "latitude": "-10.54142000", + "longitude": "32.08162000" + }, + { + "id": "131342", + "name": "Isoka", + "state_id": 1989, + "state_code": "10", + "country_id": 246, + "country_code": "ZM", + "latitude": "-10.16062000", + "longitude": "32.63353000" + }, + { + "id": "131374", + "name": "Mpika", + "state_id": 1989, + "state_code": "10", + "country_id": 246, + "country_code": "ZM", + "latitude": "-11.83431000", + "longitude": "31.45287000" + }, + { + "id": "131385", + "name": "Nakonde", + "state_id": 1989, + "state_code": "10", + "country_id": 246, + "country_code": "ZM", + "latitude": "-9.34213000", + "longitude": "32.74500000" + }, + { + "id": "131353", + "name": "Kaputa", + "state_id": 1982, + "state_code": "05", + "country_id": 246, + "country_code": "ZM", + "latitude": "-8.46887000", + "longitude": "29.66193000" + }, + { + "id": "131354", + "name": "Kasama", + "state_id": 1982, + "state_code": "05", + "country_id": 246, + "country_code": "ZM", + "latitude": "-10.21289000", + "longitude": "31.18084000" + }, + { + "id": "131366", + "name": "Luwingu", + "state_id": 1982, + "state_code": "05", + "country_id": 246, + "country_code": "ZM", + "latitude": "-10.26210000", + "longitude": "29.92712000" + }, + { + "id": "131370", + "name": "Mbala", + "state_id": 1982, + "state_code": "05", + "country_id": 246, + "country_code": "ZM", + "latitude": "-8.84024000", + "longitude": "31.36587000" + }, + { + "id": "131376", + "name": "Mporokoso", + "state_id": 1982, + "state_code": "05", + "country_id": 246, + "country_code": "ZM", + "latitude": "-9.37273000", + "longitude": "30.12501000" + }, + { + "id": "131377", + "name": "Mpulungu", + "state_id": 1982, + "state_code": "05", + "country_id": 246, + "country_code": "ZM", + "latitude": "-8.76234000", + "longitude": "31.11405000" + }, + { + "id": "131381", + "name": "Mungwi", + "state_id": 1982, + "state_code": "05", + "country_id": 246, + "country_code": "ZM", + "latitude": "-10.17320000", + "longitude": "31.36942000" + }, + { + "id": "131344", + "name": "Kabompo", + "state_id": 1985, + "state_code": "06", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.59268000", + "longitude": "24.20081000" + }, + { + "id": "131348", + "name": "Kalengwa", + "state_id": 1985, + "state_code": "06", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.46586000", + "longitude": "25.00271000" + }, + { + "id": "131350", + "name": "Kansanshi", + "state_id": 1985, + "state_code": "06", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.09514000", + "longitude": "26.42727000" + }, + { + "id": "131355", + "name": "Kasempa", + "state_id": 1985, + "state_code": "06", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.45836000", + "longitude": "25.83380000" + }, + { + "id": "131379", + "name": "Mufumbwe", + "state_id": 1985, + "state_code": "06", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.68333000", + "longitude": "24.80000000" + }, + { + "id": "131383", + "name": "Mwinilunga", + "state_id": 1985, + "state_code": "06", + "country_id": 246, + "country_code": "ZM", + "latitude": "-11.73584000", + "longitude": "24.42926000" + }, + { + "id": "131398", + "name": "Solwezi", + "state_id": 1985, + "state_code": "06", + "country_id": 246, + "country_code": "ZM", + "latitude": "-12.16880000", + "longitude": "26.38938000" + }, + { + "id": "131399", + "name": "Zambezi", + "state_id": 1985, + "state_code": "06", + "country_id": 246, + "country_code": "ZM", + "latitude": "-13.54323000", + "longitude": "23.10467000" + }, + { + "id": "131339", + "name": "Choma", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-16.80889000", + "longitude": "26.98750000" + }, + { + "id": "131341", + "name": "Gwembe", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-16.49755000", + "longitude": "27.60691000" + }, + { + "id": "131343", + "name": "Itezhi-Tezhi District", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.74092000", + "longitude": "26.04146000" + }, + { + "id": "131360", + "name": "Livingstone", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-17.84194000", + "longitude": "25.85425000" + }, + { + "id": "131367", + "name": "Maamba", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-17.36667000", + "longitude": "27.15000000" + }, + { + "id": "131369", + "name": "Mazabuka", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.85601000", + "longitude": "27.74800000" + }, + { + "id": "131373", + "name": "Monze", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-16.28333000", + "longitude": "27.48333000" + }, + { + "id": "131384", + "name": "Nakambala", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.83244000", + "longitude": "27.77994000" + }, + { + "id": "131386", + "name": "Namwala", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.75042000", + "longitude": "26.43839000" + }, + { + "id": "131395", + "name": "Siavonga", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-16.53818000", + "longitude": "28.70876000" + }, + { + "id": "131396", + "name": "Siavonga District", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-16.26742000", + "longitude": "28.55036000" + }, + { + "id": "131397", + "name": "Sinazongwe", + "state_id": 1990, + "state_code": "07", + "country_id": 246, + "country_code": "ZM", + "latitude": "-17.26140000", + "longitude": "27.46179000" + }, + { + "id": "131347", + "name": "Kalabo", + "state_id": 1983, + "state_code": "01", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.99307000", + "longitude": "22.67926000" + }, + { + "id": "131351", + "name": "Kaoma", + "state_id": 1983, + "state_code": "01", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.78333000", + "longitude": "24.80000000" + }, + { + "id": "131359", + "name": "Limulunga", + "state_id": 1983, + "state_code": "01", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.09691000", + "longitude": "23.13757000" + }, + { + "id": "131363", + "name": "Lukulu", + "state_id": 1983, + "state_code": "01", + "country_id": 246, + "country_code": "ZM", + "latitude": "-14.37067000", + "longitude": "23.24196000" + }, + { + "id": "131372", + "name": "Mongu", + "state_id": 1983, + "state_code": "01", + "country_id": 246, + "country_code": "ZM", + "latitude": "-15.24835000", + "longitude": "23.12741000" + }, + { + "id": "131392", + "name": "Senanga", + "state_id": 1983, + "state_code": "01", + "country_id": 246, + "country_code": "ZM", + "latitude": "-16.11667000", + "longitude": "23.26667000" + }, + { + "id": "131394", + "name": "Sesheke", + "state_id": 1983, + "state_code": "01", + "country_id": 246, + "country_code": "ZM", + "latitude": "-17.47593000", + "longitude": "24.29684000" + }, + { + "id": "131411", + "name": "Bulawayo", + "state_id": 1956, + "state_code": "BU", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.15000000", + "longitude": "28.58333000" + }, + { + "id": "131425", + "name": "Chitungwiza", + "state_id": 1958, + "state_code": "HA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.01274000", + "longitude": "31.07555000" + }, + { + "id": "131431", + "name": "Epworth", + "state_id": 1958, + "state_code": "HA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.89000000", + "longitude": "31.14750000" + }, + { + "id": "131443", + "name": "Harare", + "state_id": 1958, + "state_code": "HA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.82772000", + "longitude": "31.05337000" + }, + { + "id": "131410", + "name": "Buhera District", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.45658000", + "longitude": "31.93156000" + }, + { + "id": "131417", + "name": "Chimanimani", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.80000000", + "longitude": "32.86667000" + }, + { + "id": "131418", + "name": "Chimanimani District", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.78295000", + "longitude": "32.73338000" + }, + { + "id": "131420", + "name": "Chipinge", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.18833000", + "longitude": "32.62365000" + }, + { + "id": "131421", + "name": "Chipinge District", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.54959000", + "longitude": "32.43110000" + }, + { + "id": "131430", + "name": "Dorowa Mining Lease", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.06667000", + "longitude": "31.75000000" + }, + { + "id": "131444", + "name": "Headlands", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.27733000", + "longitude": "32.05150000" + }, + { + "id": "131464", + "name": "Makoni District", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.33550000", + "longitude": "32.14650000" + }, + { + "id": "131480", + "name": "Mutare", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.97070000", + "longitude": "32.67086000" + }, + { + "id": "131481", + "name": "Mutare District", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.25512000", + "longitude": "32.44327000" + }, + { + "id": "131482", + "name": "Mutasa District", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.66283000", + "longitude": "32.74547000" + }, + { + "id": "131489", + "name": "Nyanga", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.21667000", + "longitude": "32.75000000" + }, + { + "id": "131490", + "name": "Nyanga District", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.92951000", + "longitude": "32.76561000" + }, + { + "id": "131491", + "name": "Nyazura", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.70587000", + "longitude": "32.16796000" + }, + { + "id": "131492", + "name": "Odzi", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.96167000", + "longitude": "32.40557000" + }, + { + "id": "131493", + "name": "Penhalonga", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.89112000", + "longitude": "32.69781000" + }, + { + "id": "131497", + "name": "Rusape", + "state_id": 1959, + "state_code": "MA", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.52785000", + "longitude": "32.12843000" + }, + { + "id": "131405", + "name": "Bindura", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.30192000", + "longitude": "31.33056000" + }, + { + "id": "131406", + "name": "Bindura District", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.21230000", + "longitude": "31.30300000" + }, + { + "id": "131412", + "name": "Centenary", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.72289000", + "longitude": "31.11462000" + }, + { + "id": "131413", + "name": "Centenary District", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.41667000", + "longitude": "31.16667000" + }, + { + "id": "131428", + "name": "Concession", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.38333000", + "longitude": "30.95000000" + }, + { + "id": "131434", + "name": "Glendale", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.35514000", + "longitude": "31.06718000" + }, + { + "id": "131437", + "name": "Guruve District", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.37206000", + "longitude": "30.60607000" + }, + { + "id": "131472", + "name": "Mazowe", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.50404000", + "longitude": "30.97388000" + }, + { + "id": "131473", + "name": "Mazowe District", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.28080000", + "longitude": "30.93231000" + }, + { + "id": "131476", + "name": "Mount Darwin", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.77251000", + "longitude": "31.58381000" + }, + { + "id": "131485", + "name": "Mvurwi", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.03333000", + "longitude": "30.85000000" + }, + { + "id": "131498", + "name": "Rushinga District", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.60792000", + "longitude": "32.31434000" + }, + { + "id": "131500", + "name": "Shamva", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.31159000", + "longitude": "31.57561000" + }, + { + "id": "131501", + "name": "Shamva District", + "state_id": 1955, + "state_code": "MC", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.12366000", + "longitude": "31.64146000" + }, + { + "id": "131401", + "name": "Beatrice", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.25283000", + "longitude": "30.84730000" + }, + { + "id": "131426", + "name": "Chivhu", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.02112000", + "longitude": "30.89218000" + }, + { + "id": "131436", + "name": "Goromonzi District", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.80695000", + "longitude": "31.36372000" + }, + { + "id": "131462", + "name": "Macheke", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.13901000", + "longitude": "31.84933000" + }, + { + "id": "131466", + "name": "Marondera", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.18527000", + "longitude": "31.55193000" + }, + { + "id": "131467", + "name": "Marondera District", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.29214000", + "longitude": "31.51252000" + }, + { + "id": "131477", + "name": "Mudzi District", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.04711000", + "longitude": "32.65279000" + }, + { + "id": "131478", + "name": "Murehwa", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.64322000", + "longitude": "31.78400000" + }, + { + "id": "131479", + "name": "Murehwa District", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.80057000", + "longitude": "31.83083000" + }, + { + "id": "131483", + "name": "Mutoko", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.39699000", + "longitude": "32.22677000" + }, + { + "id": "131499", + "name": "Ruwa", + "state_id": 1951, + "state_code": "ME", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.88972000", + "longitude": "31.24472000" + }, + { + "id": "131400", + "name": "Banket", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.38333000", + "longitude": "30.40000000" + }, + { + "id": "131414", + "name": "Chakari", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.06294000", + "longitude": "29.89246000" + }, + { + "id": "131415", + "name": "Chegutu", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.13021000", + "longitude": "30.14074000" + }, + { + "id": "131416", + "name": "Chegutu District", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.13097000", + "longitude": "30.40046000" + }, + { + "id": "131419", + "name": "Chinhoyi", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.36667000", + "longitude": "30.20000000" + }, + { + "id": "131424", + "name": "Chirundu", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.03333000", + "longitude": "28.85000000" + }, + { + "id": "131445", + "name": "Hurungwe District", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.41301000", + "longitude": "29.58580000" + }, + { + "id": "131451", + "name": "Kadoma", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.33328000", + "longitude": "29.91534000" + }, + { + "id": "131452", + "name": "Kadoma District", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.34049000", + "longitude": "29.82831000" + }, + { + "id": "131454", + "name": "Kariba", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.51667000", + "longitude": "28.80000000" + }, + { + "id": "131455", + "name": "Kariba District", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.91011000", + "longitude": "28.65983000" + }, + { + "id": "131456", + "name": "Karoi", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.80993000", + "longitude": "29.69247000" + }, + { + "id": "131463", + "name": "Makonde District", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.16667000", + "longitude": "30.08333000" + }, + { + "id": "131475", + "name": "Mhangura", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-16.89387000", + "longitude": "30.16828000" + }, + { + "id": "131488", + "name": "Norton", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.88333000", + "longitude": "30.70000000" + }, + { + "id": "131495", + "name": "Raffingora", + "state_id": 1953, + "state_code": "MW", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.03333000", + "longitude": "30.43333000" + }, + { + "id": "131404", + "name": "Bikita District", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.13752000", + "longitude": "31.93156000" + }, + { + "id": "131422", + "name": "Chiredzi", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-21.05000000", + "longitude": "31.66667000" + }, + { + "id": "131423", + "name": "Chiredzi District", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-21.28585000", + "longitude": "31.77039000" + }, + { + "id": "131427", + "name": "Chivi District", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.50000000", + "longitude": "30.58333000" + }, + { + "id": "131438", + "name": "Gutu District", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.60884000", + "longitude": "31.25059000" + }, + { + "id": "131468", + "name": "Mashava", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.03665000", + "longitude": "30.48225000" + }, + { + "id": "131469", + "name": "Masvingo", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.06373000", + "longitude": "30.82766000" + }, + { + "id": "131470", + "name": "Masvingo District", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.31481000", + "longitude": "30.90008000" + }, + { + "id": "131486", + "name": "Mwenezi District", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-21.35838000", + "longitude": "30.70668000" + }, + { + "id": "131507", + "name": "Zvishavane", + "state_id": 1960, + "state_code": "MV", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.32674000", + "longitude": "30.06648000" + }, + { + "id": "131407", + "name": "Binga", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.62027000", + "longitude": "27.34139000" + }, + { + "id": "131408", + "name": "Binga District", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.80460000", + "longitude": "27.70088000" + }, + { + "id": "131409", + "name": "Bubi District", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.52508000", + "longitude": "28.67998000" + }, + { + "id": "131429", + "name": "Dete", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.61667000", + "longitude": "26.86667000" + }, + { + "id": "131446", + "name": "Hwange", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.36446000", + "longitude": "26.49877000" + }, + { + "id": "131447", + "name": "Hwange District", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.75000000", + "longitude": "26.50000000" + }, + { + "id": "131450", + "name": "Inyati", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.67563000", + "longitude": "28.84687000" + }, + { + "id": "131453", + "name": "Kamativi Mine", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.31563000", + "longitude": "27.05729000" + }, + { + "id": "131460", + "name": "Lupane", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.93149000", + "longitude": "27.80696000" + }, + { + "id": "131461", + "name": "Lupane District", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.83608000", + "longitude": "27.99098000" + }, + { + "id": "131487", + "name": "Nkayi District", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.92472000", + "longitude": "28.71221000" + }, + { + "id": "131506", + "name": "Victoria Falls", + "state_id": 1954, + "state_code": "MN", + "country_id": 247, + "country_code": "ZW", + "latitude": "-17.93285000", + "longitude": "25.83066000" + }, + { + "id": "131402", + "name": "Beitbridge", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-22.21667000", + "longitude": "30.00000000" + }, + { + "id": "131403", + "name": "Beitbridge District", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-21.89829000", + "longitude": "30.07409000" + }, + { + "id": "131432", + "name": "Esigodini", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.28979000", + "longitude": "28.92261000" + }, + { + "id": "131433", + "name": "Filabusi", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.53333000", + "longitude": "29.28502000" + }, + { + "id": "131439", + "name": "Gwanda", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.93622000", + "longitude": "29.00698000" + }, + { + "id": "131440", + "name": "Gwanda District", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-21.20929000", + "longitude": "29.17557000" + }, + { + "id": "131448", + "name": "Insiza", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.78333000", + "longitude": "29.20000000" + }, + { + "id": "131449", + "name": "Insiza District", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.26431000", + "longitude": "29.47392000" + }, + { + "id": "131465", + "name": "Mangwe District", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.95545000", + "longitude": "27.98292000" + }, + { + "id": "131471", + "name": "Matobo", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.95545000", + "longitude": "28.49463000" + }, + { + "id": "131494", + "name": "Plumtree", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.48333000", + "longitude": "27.81667000" + }, + { + "id": "131505", + "name": "Umzingwane District", + "state_id": 1952, + "state_code": "MS", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.34704000", + "longitude": "28.94994000" + }, + { + "id": "131435", + "name": "Gokwe", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.20476000", + "longitude": "28.93490000" + }, + { + "id": "131441", + "name": "Gweru", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.45000000", + "longitude": "29.81667000" + }, + { + "id": "131442", + "name": "Gweru District", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.45665000", + "longitude": "29.64495000" + }, + { + "id": "131457", + "name": "Kwekwe", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.92809000", + "longitude": "29.81486000" + }, + { + "id": "131458", + "name": "Kwekwe District", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-18.75000000", + "longitude": "29.50000000" + }, + { + "id": "131459", + "name": "Lalapanzi", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.33225000", + "longitude": "30.17768000" + }, + { + "id": "131474", + "name": "Mberengwa District", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.72579000", + "longitude": "30.00962000" + }, + { + "id": "131484", + "name": "Mvuma", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.27924000", + "longitude": "30.52828000" + }, + { + "id": "131496", + "name": "Redcliff", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.03333000", + "longitude": "29.78333000" + }, + { + "id": "131502", + "name": "Shangani", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.78333000", + "longitude": "29.36667000" + }, + { + "id": "131503", + "name": "Shurugwi", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.67016000", + "longitude": "30.00589000" + }, + { + "id": "131504", + "name": "Shurugwi District", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-19.75000000", + "longitude": "30.16667000" + }, + { + "id": "131508", + "name": "Zvishavane District", + "state_id": 1957, + "state_code": "MI", + "country_id": 247, + "country_code": "ZW", + "latitude": "-20.30345000", + "longitude": "30.07514000" + } +] \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/dipendenze b/anno3/avrc/assignments/dataviz/dipendenze new file mode 100644 index 0000000..58a2793 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/dipendenze @@ -0,0 +1,8 @@ +flask + +# heatmap +folium + +# parsing dei dataset +python-dateutil +emoji \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/run.sh b/anno3/avrc/assignments/dataviz/run.sh new file mode 100755 index 0000000..d854805 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/run.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +set -e + +export FLASK_ENV=development +python3 app.py & +cd slides +python3 -m http.server 7777 diff --git a/anno3/avrc/assignments/dataviz/slides/.gitignore b/anno3/avrc/assignments/dataviz/slides/.gitignore new file mode 100644 index 0000000..8eda50e --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/.gitignore @@ -0,0 +1,13 @@ +.idea/ +*.iml +*.iws +*.eml +out/ +.DS_Store +.svn +log/*.log +tmp/** +node_modules/ +.sass-cache +css/reveal.min.css +js/reveal.min.js diff --git a/anno3/avrc/assignments/dataviz/slides/.travis.yml b/anno3/avrc/assignments/dataviz/slides/.travis.yml new file mode 100644 index 0000000..e65e0df --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/.travis.yml @@ -0,0 +1,5 @@ +language: node_js +node_js: + - 11 +after_script: + - npm run build -- retire diff --git a/anno3/avrc/assignments/dataviz/slides/css/print/paper.css b/anno3/avrc/assignments/dataviz/slides/css/print/paper.css new file mode 100644 index 0000000..27d19dd --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/print/paper.css @@ -0,0 +1,203 @@ +/* Default Print Stylesheet Template + by Rob Glazebrook of CSSnewbie.com + Last Updated: June 4, 2008 + + Feel free (nay, compelled) to edit, append, and + manipulate this file as you see fit. */ + + +@media print { + + /* SECTION 1: Set default width, margin, float, and + background. This prevents elements from extending + beyond the edge of the printed page, and prevents + unnecessary background images from printing */ + html { + background: #fff; + width: auto; + height: auto; + overflow: visible; + } + body { + background: #fff; + font-size: 20pt; + width: auto; + height: auto; + border: 0; + margin: 0 5%; + padding: 0; + overflow: visible; + float: none !important; + } + + /* SECTION 2: Remove any elements not needed in print. + This would include navigation, ads, sidebars, etc. */ + .nestedarrow, + .controls, + .fork-reveal, + .share-reveal, + .state-background, + .reveal .progress, + .reveal .backgrounds, + .reveal .slide-number { + display: none !important; + } + + /* SECTION 3: Set body font face, size, and color. + Consider using a serif font for readability. */ + body, p, td, li, div { + font-size: 20pt!important; + font-family: Georgia, "Times New Roman", Times, serif !important; + color: #000; + } + + /* SECTION 4: Set heading font face, sizes, and color. + Differentiate your headings from your body text. + Perhaps use a large sans-serif for distinction. */ + h1,h2,h3,h4,h5,h6 { + color: #000!important; + height: auto; + line-height: normal; + font-family: Georgia, "Times New Roman", Times, serif !important; + text-shadow: 0 0 0 #000 !important; + text-align: left; + letter-spacing: normal; + } + /* Need to reduce the size of the fonts for printing */ + h1 { font-size: 28pt !important; } + h2 { font-size: 24pt !important; } + h3 { font-size: 22pt !important; } + h4 { font-size: 22pt !important; font-variant: small-caps; } + h5 { font-size: 21pt !important; } + h6 { font-size: 20pt !important; font-style: italic; } + + /* SECTION 5: Make hyperlinks more usable. + Ensure links are underlined, and consider appending + the URL to the end of the link for usability. */ + a:link, + a:visited { + color: #000 !important; + font-weight: bold; + text-decoration: underline; + } + /* + .reveal a:link:after, + .reveal a:visited:after { + content: " (" attr(href) ") "; + color: #222 !important; + font-size: 90%; + } + */ + + + /* SECTION 6: more reveal.js specific additions by @skypanther */ + ul, ol, div, p { + visibility: visible; + position: static; + width: auto; + height: auto; + display: block; + overflow: visible; + margin: 0; + text-align: left !important; + } + .reveal pre, + .reveal table { + margin-left: 0; + margin-right: 0; + } + .reveal pre code { + padding: 20px; + border: 1px solid #ddd; + } + .reveal blockquote { + margin: 20px 0; + } + .reveal .slides { + position: static !important; + width: auto !important; + height: auto !important; + + left: 0 !important; + top: 0 !important; + margin-left: 0 !important; + margin-top: 0 !important; + padding: 0 !important; + zoom: 1 !important; + + overflow: visible !important; + display: block !important; + + text-align: left !important; + -webkit-perspective: none; + -moz-perspective: none; + -ms-perspective: none; + perspective: none; + + -webkit-perspective-origin: 50% 50%; + -moz-perspective-origin: 50% 50%; + -ms-perspective-origin: 50% 50%; + perspective-origin: 50% 50%; + } + .reveal .slides section { + visibility: visible !important; + position: static !important; + width: auto !important; + height: auto !important; + display: block !important; + overflow: visible !important; + + left: 0 !important; + top: 0 !important; + margin-left: 0 !important; + margin-top: 0 !important; + padding: 60px 20px !important; + z-index: auto !important; + + opacity: 1 !important; + + page-break-after: always !important; + + -webkit-transform-style: flat !important; + -moz-transform-style: flat !important; + -ms-transform-style: flat !important; + transform-style: flat !important; + + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + transform: none !important; + + -webkit-transition: none !important; + -moz-transition: none !important; + -ms-transition: none !important; + transition: none !important; + } + .reveal .slides section.stack { + padding: 0 !important; + } + .reveal section:last-of-type { + page-break-after: avoid !important; + } + .reveal section .fragment { + opacity: 1 !important; + visibility: visible !important; + + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + transform: none !important; + } + .reveal section img { + display: block; + margin: 15px 0px; + background: rgba(255,255,255,1); + border: 1px solid #666; + box-shadow: none; + } + + .reveal section small { + font-size: 0.8em; + } + +} diff --git a/anno3/avrc/assignments/dataviz/slides/css/print/pdf.css b/anno3/avrc/assignments/dataviz/slides/css/print/pdf.css new file mode 100644 index 0000000..752d955 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/print/pdf.css @@ -0,0 +1,164 @@ +/** + * This stylesheet is used to print reveal.js + * presentations to PDF. + * + * https://github.com/hakimel/reveal.js#pdf-export + */ + +* { + -webkit-print-color-adjust: exact; +} + +body { + margin: 0 auto !important; + border: 0; + padding: 0; + float: none !important; + overflow: visible; +} + +html { + width: 100%; + height: 100%; + overflow: visible; +} + +/* Remove any elements not needed in print. */ +.nestedarrow, +.reveal .controls, +.reveal .progress, +.reveal .playback, +.reveal.overview, +.fork-reveal, +.share-reveal, +.state-background { + display: none !important; +} + +h1, h2, h3, h4, h5, h6 { + text-shadow: 0 0 0 #000 !important; +} + +.reveal pre code { + overflow: hidden !important; + font-family: Courier, 'Courier New', monospace !important; +} + +ul, ol, div, p { + visibility: visible; + position: static; + width: auto; + height: auto; + display: block; + overflow: visible; + margin: auto; +} +.reveal { + width: auto !important; + height: auto !important; + overflow: hidden !important; +} +.reveal .slides { + position: static; + width: 100% !important; + height: auto !important; + zoom: 1 !important; + + left: auto; + top: auto; + margin: 0 !important; + padding: 0 !important; + + overflow: visible; + display: block; + + perspective: none; + perspective-origin: 50% 50%; +} + +.reveal .slides .pdf-page { + position: relative; + overflow: hidden; + z-index: 1; + + page-break-after: always; +} + +.reveal .slides section { + visibility: visible !important; + display: block !important; + position: absolute !important; + + margin: 0 !important; + padding: 0 !important; + box-sizing: border-box !important; + min-height: 1px; + + opacity: 1 !important; + + transform-style: flat !important; + transform: none !important; +} + +.reveal section.stack { + position: relative !important; + margin: 0 !important; + padding: 0 !important; + page-break-after: avoid !important; + height: auto !important; + min-height: auto !important; +} + +.reveal img { + box-shadow: none; +} + +.reveal .roll { + overflow: visible; + line-height: 1em; +} + +/* Slide backgrounds are placed inside of their slide when exporting to PDF */ +.reveal .slide-background { + display: block !important; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: auto !important; +} + +/* Display slide speaker notes when 'showNotes' is enabled */ +.reveal.show-notes { + max-width: none; + max-height: none; +} +.reveal .speaker-notes-pdf { + display: block; + width: 100%; + height: auto; + max-height: none; + top: auto; + right: auto; + bottom: auto; + left: auto; + z-index: 100; +} + +/* Layout option which makes notes appear on a separate page */ +.reveal .speaker-notes-pdf[data-layout="separate-page"] { + position: relative; + color: inherit; + background-color: transparent; + padding: 20px; + page-break-after: always; + border: 0; +} + +/* Display slide numbers when 'slideNumber' is enabled */ +.reveal .slide-number-pdf { + display: block; + position: absolute; + font-size: 14px; +} diff --git a/anno3/avrc/assignments/dataviz/slides/css/reset.css b/anno3/avrc/assignments/dataviz/slides/css/reset.css new file mode 100644 index 0000000..e238539 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/reset.css @@ -0,0 +1,30 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v4.0 | 20180602 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +main, menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, main, menu, nav, section { + display: block; +} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/slides/css/reveal.css b/anno3/avrc/assignments/dataviz/slides/css/reveal.css new file mode 100644 index 0000000..1b9651b --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/reveal.css @@ -0,0 +1,1598 @@ +/*! + * reveal.js + * http://revealjs.com + * MIT licensed + * + * Copyright (C) 2019 Hakim El Hattab, http://hakim.se + */ +/********************************************* + * GLOBAL STYLES + *********************************************/ +html { + width: 100%; + height: 100%; + height: 100vh; + height: calc( var(--vh, 1vh) * 100); + overflow: hidden; } + +body { + height: 100%; + overflow: hidden; + position: relative; + line-height: 1; + margin: 0; + background-color: #fff; + color: #000; } + +/********************************************* + * VIEW FRAGMENTS + *********************************************/ +.reveal .slides section .fragment { + opacity: 0; + visibility: hidden; + transition: all .2s ease; } + .reveal .slides section .fragment.visible { + opacity: 1; + visibility: inherit; } + +.reveal .slides section .fragment.grow { + opacity: 1; + visibility: inherit; } + .reveal .slides section .fragment.grow.visible { + -webkit-transform: scale(1.3); + transform: scale(1.3); } + +.reveal .slides section .fragment.shrink { + opacity: 1; + visibility: inherit; } + .reveal .slides section .fragment.shrink.visible { + -webkit-transform: scale(0.7); + transform: scale(0.7); } + +.reveal .slides section .fragment.zoom-in { + -webkit-transform: scale(0.1); + transform: scale(0.1); } + .reveal .slides section .fragment.zoom-in.visible { + -webkit-transform: none; + transform: none; } + +.reveal .slides section .fragment.fade-out { + opacity: 1; + visibility: inherit; } + .reveal .slides section .fragment.fade-out.visible { + opacity: 0; + visibility: hidden; } + +.reveal .slides section .fragment.semi-fade-out { + opacity: 1; + visibility: inherit; } + .reveal .slides section .fragment.semi-fade-out.visible { + opacity: 0.5; + visibility: inherit; } + +.reveal .slides section .fragment.strike { + opacity: 1; + visibility: inherit; } + .reveal .slides section .fragment.strike.visible { + text-decoration: line-through; } + +.reveal .slides section .fragment.fade-up { + -webkit-transform: translate(0, 20%); + transform: translate(0, 20%); } + .reveal .slides section .fragment.fade-up.visible { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } + +.reveal .slides section .fragment.fade-down { + -webkit-transform: translate(0, -20%); + transform: translate(0, -20%); } + .reveal .slides section .fragment.fade-down.visible { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } + +.reveal .slides section .fragment.fade-right { + -webkit-transform: translate(-20%, 0); + transform: translate(-20%, 0); } + .reveal .slides section .fragment.fade-right.visible { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } + +.reveal .slides section .fragment.fade-left { + -webkit-transform: translate(20%, 0); + transform: translate(20%, 0); } + .reveal .slides section .fragment.fade-left.visible { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } + +.reveal .slides section .fragment.fade-in-then-out, +.reveal .slides section .fragment.current-visible { + opacity: 0; + visibility: hidden; } + .reveal .slides section .fragment.fade-in-then-out.current-fragment, + .reveal .slides section .fragment.current-visible.current-fragment { + opacity: 1; + visibility: inherit; } + +.reveal .slides section .fragment.fade-in-then-semi-out { + opacity: 0; + visibility: hidden; } + .reveal .slides section .fragment.fade-in-then-semi-out.visible { + opacity: 0.5; + visibility: inherit; } + .reveal .slides section .fragment.fade-in-then-semi-out.current-fragment { + opacity: 1; + visibility: inherit; } + +.reveal .slides section .fragment.highlight-red, +.reveal .slides section .fragment.highlight-current-red, +.reveal .slides section .fragment.highlight-green, +.reveal .slides section .fragment.highlight-current-green, +.reveal .slides section .fragment.highlight-blue, +.reveal .slides section .fragment.highlight-current-blue { + opacity: 1; + visibility: inherit; } + +.reveal .slides section .fragment.highlight-red.visible { + color: #ff2c2d; } + +.reveal .slides section .fragment.highlight-green.visible { + color: #17ff2e; } + +.reveal .slides section .fragment.highlight-blue.visible { + color: #1b91ff; } + +.reveal .slides section .fragment.highlight-current-red.current-fragment { + color: #ff2c2d; } + +.reveal .slides section .fragment.highlight-current-green.current-fragment { + color: #17ff2e; } + +.reveal .slides section .fragment.highlight-current-blue.current-fragment { + color: #1b91ff; } + +/********************************************* + * DEFAULT ELEMENT STYLES + *********************************************/ +/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */ +.reveal:after { + content: ''; + font-style: italic; } + +.reveal iframe { + z-index: 1; } + +/** Prevents layering issues in certain browser/transition combinations */ +.reveal a { + position: relative; } + +.reveal .stretch { + max-width: none; + max-height: none; } + +.reveal pre.stretch code { + height: 100%; + max-height: 100%; + box-sizing: border-box; } + +/********************************************* + * CONTROLS + *********************************************/ +@-webkit-keyframes bounce-right { + 0%, 10%, 25%, 40%, 50% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 20% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 30% { + -webkit-transform: translateX(-5px); + transform: translateX(-5px); } } +@keyframes bounce-right { + 0%, 10%, 25%, 40%, 50% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 20% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 30% { + -webkit-transform: translateX(-5px); + transform: translateX(-5px); } } + +@-webkit-keyframes bounce-down { + 0%, 10%, 25%, 40%, 50% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 20% { + -webkit-transform: translateY(10px); + transform: translateY(10px); } + 30% { + -webkit-transform: translateY(-5px); + transform: translateY(-5px); } } + +@keyframes bounce-down { + 0%, 10%, 25%, 40%, 50% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 20% { + -webkit-transform: translateY(10px); + transform: translateY(10px); } + 30% { + -webkit-transform: translateY(-5px); + transform: translateY(-5px); } } + +.reveal .controls { + display: none; + position: absolute; + top: auto; + bottom: 12px; + right: 12px; + left: auto; + z-index: 1; + color: #000; + pointer-events: none; + font-size: 10px; } + .reveal .controls button { + position: absolute; + padding: 0; + background-color: transparent; + border: 0; + outline: 0; + cursor: pointer; + color: currentColor; + -webkit-transform: scale(0.9999); + transform: scale(0.9999); + transition: color 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease; + transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease; + z-index: 2; + pointer-events: auto; + font-size: inherit; + visibility: hidden; + opacity: 0; + -webkit-appearance: none; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + .reveal .controls .controls-arrow:before, + .reveal .controls .controls-arrow:after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 2.6em; + height: 0.5em; + border-radius: 0.25em; + background-color: currentColor; + transition: all 0.15s ease, background-color 0.8s ease; + -webkit-transform-origin: 0.2em 50%; + transform-origin: 0.2em 50%; + will-change: transform; } + .reveal .controls .controls-arrow { + position: relative; + width: 3.6em; + height: 3.6em; } + .reveal .controls .controls-arrow:before { + -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(45deg); + transform: translateX(0.5em) translateY(1.55em) rotate(45deg); } + .reveal .controls .controls-arrow:after { + -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(-45deg); + transform: translateX(0.5em) translateY(1.55em) rotate(-45deg); } + .reveal .controls .controls-arrow:hover:before { + -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(40deg); + transform: translateX(0.5em) translateY(1.55em) rotate(40deg); } + .reveal .controls .controls-arrow:hover:after { + -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(-40deg); + transform: translateX(0.5em) translateY(1.55em) rotate(-40deg); } + .reveal .controls .controls-arrow:active:before { + -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(36deg); + transform: translateX(0.5em) translateY(1.55em) rotate(36deg); } + .reveal .controls .controls-arrow:active:after { + -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(-36deg); + transform: translateX(0.5em) translateY(1.55em) rotate(-36deg); } + .reveal .controls .navigate-left { + right: 6.4em; + bottom: 3.2em; + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + .reveal .controls .navigate-right { + right: 0; + bottom: 3.2em; + -webkit-transform: translateX(10px); + transform: translateX(10px); } + .reveal .controls .navigate-right .controls-arrow { + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + .reveal .controls .navigate-right.highlight { + -webkit-animation: bounce-right 2s 50 both ease-out; + animation: bounce-right 2s 50 both ease-out; } + .reveal .controls .navigate-up { + right: 3.2em; + bottom: 6.4em; + -webkit-transform: translateY(-10px); + transform: translateY(-10px); } + .reveal .controls .navigate-up .controls-arrow { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + .reveal .controls .navigate-down { + right: 3.2em; + bottom: 0; + -webkit-transform: translateY(10px); + transform: translateY(10px); } + .reveal .controls .navigate-down .controls-arrow { + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); } + .reveal .controls .navigate-down.highlight { + -webkit-animation: bounce-down 2s 50 both ease-out; + animation: bounce-down 2s 50 both ease-out; } + .reveal .controls[data-controls-back-arrows="faded"] .navigate-left.enabled, + .reveal .controls[data-controls-back-arrows="faded"] .navigate-up.enabled { + opacity: 0.3; } + .reveal .controls[data-controls-back-arrows="faded"] .navigate-left.enabled:hover, + .reveal .controls[data-controls-back-arrows="faded"] .navigate-up.enabled:hover { + opacity: 1; } + .reveal .controls[data-controls-back-arrows="hidden"] .navigate-left.enabled, + .reveal .controls[data-controls-back-arrows="hidden"] .navigate-up.enabled { + opacity: 0; + visibility: hidden; } + .reveal .controls .enabled { + visibility: visible; + opacity: 0.9; + cursor: pointer; + -webkit-transform: none; + transform: none; } + .reveal .controls .enabled.fragmented { + opacity: 0.5; } + .reveal .controls .enabled:hover, + .reveal .controls .enabled.fragmented:hover { + opacity: 1; } + +.reveal[data-navigation-mode="linear"].has-horizontal-slides .navigate-up, +.reveal[data-navigation-mode="linear"].has-horizontal-slides .navigate-down { + display: none; } + +.reveal[data-navigation-mode="linear"].has-horizontal-slides .navigate-left, +.reveal:not(.has-vertical-slides) .controls .navigate-left { + bottom: 1.4em; + right: 5.5em; } + +.reveal[data-navigation-mode="linear"].has-horizontal-slides .navigate-right, +.reveal:not(.has-vertical-slides) .controls .navigate-right { + bottom: 1.4em; + right: 0.5em; } + +.reveal:not(.has-horizontal-slides) .controls .navigate-up { + right: 1.4em; + bottom: 5em; } + +.reveal:not(.has-horizontal-slides) .controls .navigate-down { + right: 1.4em; + bottom: 0.5em; } + +.reveal.has-dark-background .controls { + color: #fff; } + +.reveal.has-light-background .controls { + color: #000; } + +.reveal.no-hover .controls .controls-arrow:hover:before, +.reveal.no-hover .controls .controls-arrow:active:before { + -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(45deg); + transform: translateX(0.5em) translateY(1.55em) rotate(45deg); } + +.reveal.no-hover .controls .controls-arrow:hover:after, +.reveal.no-hover .controls .controls-arrow:active:after { + -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(-45deg); + transform: translateX(0.5em) translateY(1.55em) rotate(-45deg); } + +@media screen and (min-width: 500px) { + .reveal .controls[data-controls-layout="edges"] { + top: 0; + right: 0; + bottom: 0; + left: 0; } + .reveal .controls[data-controls-layout="edges"] .navigate-left, + .reveal .controls[data-controls-layout="edges"] .navigate-right, + .reveal .controls[data-controls-layout="edges"] .navigate-up, + .reveal .controls[data-controls-layout="edges"] .navigate-down { + bottom: auto; + right: auto; } + .reveal .controls[data-controls-layout="edges"] .navigate-left { + top: 50%; + left: 8px; + margin-top: -1.8em; } + .reveal .controls[data-controls-layout="edges"] .navigate-right { + top: 50%; + right: 8px; + margin-top: -1.8em; } + .reveal .controls[data-controls-layout="edges"] .navigate-up { + top: 8px; + left: 50%; + margin-left: -1.8em; } + .reveal .controls[data-controls-layout="edges"] .navigate-down { + bottom: 8px; + left: 50%; + margin-left: -1.8em; } } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + position: absolute; + display: none; + height: 3px; + width: 100%; + bottom: 0; + left: 0; + z-index: 10; + background-color: rgba(0, 0, 0, 0.2); + color: #fff; } + +.reveal .progress:after { + content: ''; + display: block; + position: absolute; + height: 10px; + width: 100%; + top: -10px; } + +.reveal .progress span { + display: block; + height: 100%; + width: 0px; + background-color: currentColor; + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * SLIDE NUMBER + *********************************************/ +.reveal .slide-number { + position: absolute; + display: block; + right: 8px; + bottom: 8px; + z-index: 31; + font-family: Helvetica, sans-serif; + font-size: 12px; + line-height: 1; + color: #fff; + background-color: rgba(0, 0, 0, 0.4); + padding: 5px; } + +.reveal .slide-number a { + color: currentColor; } + +.reveal .slide-number-delimiter { + margin: 0 3px; } + +/********************************************* + * SLIDES + *********************************************/ +.reveal { + position: relative; + width: 100%; + height: 100%; + overflow: hidden; + -ms-touch-action: pinch-zoom; + touch-action: pinch-zoom; } + +.reveal .slides { + position: absolute; + width: 100%; + height: 100%; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; + pointer-events: none; + overflow: visible; + z-index: 1; + text-align: center; + -webkit-perspective: 600px; + perspective: 600px; + -webkit-perspective-origin: 50% 40%; + perspective-origin: 50% 40%; } + +.reveal .slides > section { + -webkit-perspective: 600px; + perspective: 600px; } + +.reveal .slides > section, +.reveal .slides > section > section { + display: none; + position: absolute; + width: 100%; + padding: 20px 0px; + pointer-events: auto; + z-index: 10; + -webkit-transform-style: flat; + transform-style: flat; + transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/* Global transition speed settings */ +.reveal[data-transition-speed="fast"] .slides section { + transition-duration: 400ms; } + +.reveal[data-transition-speed="slow"] .slides section { + transition-duration: 1200ms; } + +/* Slide-specific transition speed overrides */ +.reveal .slides section[data-transition-speed="fast"] { + transition-duration: 400ms; } + +.reveal .slides section[data-transition-speed="slow"] { + transition-duration: 1200ms; } + +.reveal .slides > section.stack { + padding-top: 0; + padding-bottom: 0; + pointer-events: none; + height: 100%; } + +.reveal .slides > section.present, +.reveal .slides > section > section.present { + display: block; + z-index: 11; + opacity: 1; } + +.reveal .slides > section:empty, +.reveal .slides > section > section:empty, +.reveal .slides > section[data-background-interactive], +.reveal .slides > section > section[data-background-interactive] { + pointer-events: none; } + +.reveal.center, +.reveal.center .slides, +.reveal.center .slides section { + min-height: 0 !important; } + +/* Don't allow interaction with invisible slides */ +.reveal .slides > section.future, +.reveal .slides > section > section.future, +.reveal .slides > section.past, +.reveal .slides > section > section.past { + pointer-events: none; } + +.reveal.overview .slides > section, +.reveal.overview .slides > section > section { + pointer-events: auto; } + +.reveal .slides > section.past, +.reveal .slides > section.future, +.reveal .slides > section > section.past, +.reveal .slides > section > section.future { + opacity: 0; } + +/********************************************* + * Mixins for readability of transitions + *********************************************/ +/********************************************* + * SLIDE TRANSITION + * Aliased 'linear' for backwards compatibility + *********************************************/ +.reveal.slide section { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.reveal .slides > section[data-transition=slide].past, +.reveal .slides > section[data-transition~=slide-out].past, +.reveal.slide .slides > section:not([data-transition]).past { + -webkit-transform: translate(-150%, 0); + transform: translate(-150%, 0); } + +.reveal .slides > section[data-transition=slide].future, +.reveal .slides > section[data-transition~=slide-in].future, +.reveal.slide .slides > section:not([data-transition]).future { + -webkit-transform: translate(150%, 0); + transform: translate(150%, 0); } + +.reveal .slides > section > section[data-transition=slide].past, +.reveal .slides > section > section[data-transition~=slide-out].past, +.reveal.slide .slides > section > section:not([data-transition]).past { + -webkit-transform: translate(0, -150%); + transform: translate(0, -150%); } + +.reveal .slides > section > section[data-transition=slide].future, +.reveal .slides > section > section[data-transition~=slide-in].future, +.reveal.slide .slides > section > section:not([data-transition]).future { + -webkit-transform: translate(0, 150%); + transform: translate(0, 150%); } + +.reveal.linear section { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.reveal .slides > section[data-transition=linear].past, +.reveal .slides > section[data-transition~=linear-out].past, +.reveal.linear .slides > section:not([data-transition]).past { + -webkit-transform: translate(-150%, 0); + transform: translate(-150%, 0); } + +.reveal .slides > section[data-transition=linear].future, +.reveal .slides > section[data-transition~=linear-in].future, +.reveal.linear .slides > section:not([data-transition]).future { + -webkit-transform: translate(150%, 0); + transform: translate(150%, 0); } + +.reveal .slides > section > section[data-transition=linear].past, +.reveal .slides > section > section[data-transition~=linear-out].past, +.reveal.linear .slides > section > section:not([data-transition]).past { + -webkit-transform: translate(0, -150%); + transform: translate(0, -150%); } + +.reveal .slides > section > section[data-transition=linear].future, +.reveal .slides > section > section[data-transition~=linear-in].future, +.reveal.linear .slides > section > section:not([data-transition]).future { + -webkit-transform: translate(0, 150%); + transform: translate(0, 150%); } + +/********************************************* + * CONVEX TRANSITION + * Aliased 'default' for backwards compatibility + *********************************************/ +.reveal .slides section[data-transition=default].stack, +.reveal.default .slides section.stack { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; } + +.reveal .slides > section[data-transition=default].past, +.reveal .slides > section[data-transition~=default-out].past, +.reveal.default .slides > section:not([data-transition]).past { + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); } + +.reveal .slides > section[data-transition=default].future, +.reveal .slides > section[data-transition~=default-in].future, +.reveal.default .slides > section:not([data-transition]).future { + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); } + +.reveal .slides > section > section[data-transition=default].past, +.reveal .slides > section > section[data-transition~=default-out].past, +.reveal.default .slides > section > section:not([data-transition]).past { + -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); + transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); } + +.reveal .slides > section > section[data-transition=default].future, +.reveal .slides > section > section[data-transition~=default-in].future, +.reveal.default .slides > section > section:not([data-transition]).future { + -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); + transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); } + +.reveal .slides section[data-transition=convex].stack, +.reveal.convex .slides section.stack { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; } + +.reveal .slides > section[data-transition=convex].past, +.reveal .slides > section[data-transition~=convex-out].past, +.reveal.convex .slides > section:not([data-transition]).past { + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); } + +.reveal .slides > section[data-transition=convex].future, +.reveal .slides > section[data-transition~=convex-in].future, +.reveal.convex .slides > section:not([data-transition]).future { + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); } + +.reveal .slides > section > section[data-transition=convex].past, +.reveal .slides > section > section[data-transition~=convex-out].past, +.reveal.convex .slides > section > section:not([data-transition]).past { + -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); + transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); } + +.reveal .slides > section > section[data-transition=convex].future, +.reveal .slides > section > section[data-transition~=convex-in].future, +.reveal.convex .slides > section > section:not([data-transition]).future { + -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); + transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); } + +/********************************************* + * CONCAVE TRANSITION + *********************************************/ +.reveal .slides section[data-transition=concave].stack, +.reveal.concave .slides section.stack { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; } + +.reveal .slides > section[data-transition=concave].past, +.reveal .slides > section[data-transition~=concave-out].past, +.reveal.concave .slides > section:not([data-transition]).past { + -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); } + +.reveal .slides > section[data-transition=concave].future, +.reveal .slides > section[data-transition~=concave-in].future, +.reveal.concave .slides > section:not([data-transition]).future { + -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); } + +.reveal .slides > section > section[data-transition=concave].past, +.reveal .slides > section > section[data-transition~=concave-out].past, +.reveal.concave .slides > section > section:not([data-transition]).past { + -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); + transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); } + +.reveal .slides > section > section[data-transition=concave].future, +.reveal .slides > section > section[data-transition~=concave-in].future, +.reveal.concave .slides > section > section:not([data-transition]).future { + -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); + transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); } + +/********************************************* + * ZOOM TRANSITION + *********************************************/ +.reveal .slides section[data-transition=zoom], +.reveal.zoom .slides section:not([data-transition]) { + transition-timing-function: ease; } + +.reveal .slides > section[data-transition=zoom].past, +.reveal .slides > section[data-transition~=zoom-out].past, +.reveal.zoom .slides > section:not([data-transition]).past { + visibility: hidden; + -webkit-transform: scale(16); + transform: scale(16); } + +.reveal .slides > section[data-transition=zoom].future, +.reveal .slides > section[data-transition~=zoom-in].future, +.reveal.zoom .slides > section:not([data-transition]).future { + visibility: hidden; + -webkit-transform: scale(0.2); + transform: scale(0.2); } + +.reveal .slides > section > section[data-transition=zoom].past, +.reveal .slides > section > section[data-transition~=zoom-out].past, +.reveal.zoom .slides > section > section:not([data-transition]).past { + -webkit-transform: scale(16); + transform: scale(16); } + +.reveal .slides > section > section[data-transition=zoom].future, +.reveal .slides > section > section[data-transition~=zoom-in].future, +.reveal.zoom .slides > section > section:not([data-transition]).future { + -webkit-transform: scale(0.2); + transform: scale(0.2); } + +/********************************************* + * CUBE TRANSITION + * + * WARNING: + * this is deprecated and will be removed in a + * future version. + *********************************************/ +.reveal.cube .slides { + -webkit-perspective: 1300px; + perspective: 1300px; } + +.reveal.cube .slides section { + padding: 30px; + min-height: 700px; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + box-sizing: border-box; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; } + +.reveal.center.cube .slides section { + min-height: 0; } + +.reveal.cube .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0, 0, 0, 0.1); + border-radius: 4px; + -webkit-transform: translateZ(-20px); + transform: translateZ(-20px); } + +.reveal.cube .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2); + -webkit-transform: translateZ(-90px) rotateX(65deg); + transform: translateZ(-90px) rotateX(65deg); } + +.reveal.cube .slides > section.stack { + padding: 0; + background: none; } + +.reveal.cube .slides > section.past { + -webkit-transform-origin: 100% 0%; + transform-origin: 100% 0%; + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg); + transform: translate3d(-100%, 0, 0) rotateY(-90deg); } + +.reveal.cube .slides > section.future { + -webkit-transform-origin: 0% 0%; + transform-origin: 0% 0%; + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg); + transform: translate3d(100%, 0, 0) rotateY(90deg); } + +.reveal.cube .slides > section > section.past { + -webkit-transform-origin: 0% 100%; + transform-origin: 0% 100%; + -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg); + transform: translate3d(0, -100%, 0) rotateX(90deg); } + +.reveal.cube .slides > section > section.future { + -webkit-transform-origin: 0% 0%; + transform-origin: 0% 0%; + -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg); + transform: translate3d(0, 100%, 0) rotateX(-90deg); } + +/********************************************* + * PAGE TRANSITION + * + * WARNING: + * this is deprecated and will be removed in a + * future version. + *********************************************/ +.reveal.page .slides { + -webkit-perspective-origin: 0% 50%; + perspective-origin: 0% 50%; + -webkit-perspective: 3000px; + perspective: 3000px; } + +.reveal.page .slides section { + padding: 30px; + min-height: 700px; + box-sizing: border-box; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; } + +.reveal.page .slides section.past { + z-index: 12; } + +.reveal.page .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0, 0, 0, 0.1); + -webkit-transform: translateZ(-20px); + transform: translateZ(-20px); } + +.reveal.page .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2); + -webkit-transform: translateZ(-90px) rotateX(65deg); } + +.reveal.page .slides > section.stack { + padding: 0; + background: none; } + +.reveal.page .slides > section.past { + -webkit-transform-origin: 0% 0%; + transform-origin: 0% 0%; + -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg); + transform: translate3d(-40%, 0, 0) rotateY(-80deg); } + +.reveal.page .slides > section.future { + -webkit-transform-origin: 100% 0%; + transform-origin: 100% 0%; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + +.reveal.page .slides > section > section.past { + -webkit-transform-origin: 0% 0%; + transform-origin: 0% 0%; + -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg); + transform: translate3d(0, -40%, 0) rotateX(80deg); } + +.reveal.page .slides > section > section.future { + -webkit-transform-origin: 0% 100%; + transform-origin: 0% 100%; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + +/********************************************* + * FADE TRANSITION + *********************************************/ +.reveal .slides section[data-transition=fade], +.reveal.fade .slides section:not([data-transition]), +.reveal.fade .slides > section > section:not([data-transition]) { + -webkit-transform: none; + transform: none; + transition: opacity 0.5s; } + +.reveal.fade.overview .slides section, +.reveal.fade.overview .slides > section > section { + transition: none; } + +/********************************************* + * NO TRANSITION + *********************************************/ +.reveal .slides section[data-transition=none], +.reveal.none .slides section:not([data-transition]) { + -webkit-transform: none; + transform: none; + transition: none; } + +/********************************************* + * PAUSED MODE + *********************************************/ +.reveal .pause-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: black; + visibility: hidden; + opacity: 0; + z-index: 100; + transition: all 1s ease; } + +.reveal .pause-overlay .resume-button { + position: absolute; + bottom: 20px; + right: 20px; + color: #ccc; + border-radius: 2px; + padding: 6px 14px; + border: 2px solid #ccc; + font-size: 16px; + background: transparent; + cursor: pointer; } + .reveal .pause-overlay .resume-button:hover { + color: #fff; + border-color: #fff; } + +.reveal.paused .pause-overlay { + visibility: visible; + opacity: 1; } + +/********************************************* + * FALLBACK + *********************************************/ +.no-transforms { + overflow-y: auto; } + +.no-transforms .reveal { + overflow: visible; } + +.no-transforms .reveal .slides { + position: relative; + width: 80%; + max-width: 1280px; + height: auto; + top: 0; + margin: 0 auto; + text-align: center; } + +.no-transforms .reveal .controls, +.no-transforms .reveal .progress { + display: none; } + +.no-transforms .reveal .slides section { + display: block; + opacity: 1; + position: relative; + height: auto; + min-height: 0; + top: 0; + left: 0; + margin: 10vh 0; + margin: 70px 0; + -webkit-transform: none; + transform: none; } + +.reveal .no-transition, +.reveal .no-transition * { + transition: none !important; } + +/********************************************* + * PER-SLIDE BACKGROUNDS + *********************************************/ +.reveal .backgrounds { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + -webkit-perspective: 600px; + perspective: 600px; } + +.reveal .slide-background { + display: none; + position: absolute; + width: 100%; + height: 100%; + opacity: 0; + visibility: hidden; + overflow: hidden; + background-color: rgba(0, 0, 0, 0); + transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +.reveal .slide-background-content { + position: absolute; + width: 100%; + height: 100%; + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: cover; } + +.reveal .slide-background.stack { + display: block; } + +.reveal .slide-background.present { + opacity: 1; + visibility: visible; + z-index: 2; } + +.print-pdf .reveal .slide-background { + opacity: 1 !important; + visibility: visible !important; } + +/* Video backgrounds */ +.reveal .slide-background video { + position: absolute; + width: 100%; + height: 100%; + max-width: none; + max-height: none; + top: 0; + left: 0; + -o-object-fit: cover; + object-fit: cover; } + +.reveal .slide-background[data-background-size="contain"] video { + -o-object-fit: contain; + object-fit: contain; } + +/* Immediate transition style */ +.reveal[data-background-transition=none] > .backgrounds .slide-background, +.reveal > .backgrounds .slide-background[data-background-transition=none] { + transition: none; } + +/* Slide */ +.reveal[data-background-transition=slide] > .backgrounds .slide-background, +.reveal > .backgrounds .slide-background[data-background-transition=slide] { + opacity: 1; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.reveal[data-background-transition=slide] > .backgrounds .slide-background.past, +.reveal > .backgrounds .slide-background.past[data-background-transition=slide] { + -webkit-transform: translate(-100%, 0); + transform: translate(-100%, 0); } + +.reveal[data-background-transition=slide] > .backgrounds .slide-background.future, +.reveal > .backgrounds .slide-background.future[data-background-transition=slide] { + -webkit-transform: translate(100%, 0); + transform: translate(100%, 0); } + +.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past, +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] { + -webkit-transform: translate(0, -100%); + transform: translate(0, -100%); } + +.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future, +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] { + -webkit-transform: translate(0, 100%); + transform: translate(0, 100%); } + +/* Convex */ +.reveal[data-background-transition=convex] > .backgrounds .slide-background.past, +.reveal > .backgrounds .slide-background.past[data-background-transition=convex] { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); } + +.reveal[data-background-transition=convex] > .backgrounds .slide-background.future, +.reveal > .backgrounds .slide-background.future[data-background-transition=convex] { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); } + +.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past, +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); } + +.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future, +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); } + +/* Concave */ +.reveal[data-background-transition=concave] > .backgrounds .slide-background.past, +.reveal > .backgrounds .slide-background.past[data-background-transition=concave] { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); } + +.reveal[data-background-transition=concave] > .backgrounds .slide-background.future, +.reveal > .backgrounds .slide-background.future[data-background-transition=concave] { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); } + +.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past, +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); } + +.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future, +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); } + +/* Zoom */ +.reveal[data-background-transition=zoom] > .backgrounds .slide-background, +.reveal > .backgrounds .slide-background[data-background-transition=zoom] { + transition-timing-function: ease; } + +.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past, +.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(16); + transform: scale(16); } + +.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future, +.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(0.2); + transform: scale(0.2); } + +.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past, +.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(16); + transform: scale(16); } + +.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future, +.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(0.2); + transform: scale(0.2); } + +/* Global transition speed settings */ +.reveal[data-transition-speed="fast"] > .backgrounds .slide-background { + transition-duration: 400ms; } + +.reveal[data-transition-speed="slow"] > .backgrounds .slide-background { + transition-duration: 1200ms; } + +/********************************************* + * OVERVIEW + *********************************************/ +.reveal.overview { + -webkit-perspective-origin: 50% 50%; + perspective-origin: 50% 50%; + -webkit-perspective: 700px; + perspective: 700px; } + .reveal.overview .slides { + -moz-transform-style: preserve-3d; } + .reveal.overview .slides section { + height: 100%; + top: 0 !important; + opacity: 1 !important; + overflow: hidden; + visibility: visible !important; + cursor: pointer; + box-sizing: border-box; } + .reveal.overview .slides section:hover, + .reveal.overview .slides section.present { + outline: 10px solid rgba(150, 150, 150, 0.4); + outline-offset: 10px; } + .reveal.overview .slides section .fragment { + opacity: 1; + transition: none; } + .reveal.overview .slides section:after, + .reveal.overview .slides section:before { + display: none !important; } + .reveal.overview .slides > section.stack { + padding: 0; + top: 0 !important; + background: none; + outline: none; + overflow: visible; } + .reveal.overview .backgrounds { + -webkit-perspective: inherit; + perspective: inherit; + -moz-transform-style: preserve-3d; } + .reveal.overview .backgrounds .slide-background { + opacity: 1; + visibility: visible; + outline: 10px solid rgba(150, 150, 150, 0.1); + outline-offset: 10px; } + .reveal.overview .backgrounds .slide-background.stack { + overflow: visible; } + +.reveal.overview .slides section, +.reveal.overview-deactivating .slides section { + transition: none; } + +.reveal.overview .backgrounds .slide-background, +.reveal.overview-deactivating .backgrounds .slide-background { + transition: none; } + +/********************************************* + * RTL SUPPORT + *********************************************/ +.reveal.rtl .slides, +.reveal.rtl .slides h1, +.reveal.rtl .slides h2, +.reveal.rtl .slides h3, +.reveal.rtl .slides h4, +.reveal.rtl .slides h5, +.reveal.rtl .slides h6 { + direction: rtl; + font-family: sans-serif; } + +.reveal.rtl pre, +.reveal.rtl code { + direction: ltr; } + +.reveal.rtl ol, +.reveal.rtl ul { + text-align: right; } + +.reveal.rtl .progress span { + float: right; } + +/********************************************* + * PARALLAX BACKGROUND + *********************************************/ +.reveal.has-parallax-background .backgrounds { + transition: all 0.8s ease; } + +/* Global transition speed settings */ +.reveal.has-parallax-background[data-transition-speed="fast"] .backgrounds { + transition-duration: 400ms; } + +.reveal.has-parallax-background[data-transition-speed="slow"] .backgrounds { + transition-duration: 1200ms; } + +/********************************************* + * OVERLAY FOR LINK PREVIEWS AND HELP + *********************************************/ +.reveal > .overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1000; + background: rgba(0, 0, 0, 0.9); + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; } + +.reveal > .overlay.visible { + opacity: 1; + visibility: visible; } + +.reveal > .overlay .spinner { + position: absolute; + display: block; + top: 50%; + left: 50%; + width: 32px; + height: 32px; + margin: -16px 0 0 -16px; + z-index: 10; + background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D); + visibility: visible; + opacity: 0.6; + transition: all 0.3s ease; } + +.reveal > .overlay header { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 40px; + z-index: 2; + border-bottom: 1px solid #222; } + +.reveal > .overlay header a { + display: inline-block; + width: 40px; + height: 40px; + line-height: 36px; + padding: 0 10px; + float: right; + opacity: 0.6; + box-sizing: border-box; } + +.reveal > .overlay header a:hover { + opacity: 1; } + +.reveal > .overlay header a .icon { + display: inline-block; + width: 20px; + height: 20px; + background-position: 50% 50%; + background-size: 100%; + background-repeat: no-repeat; } + +.reveal > .overlay header a.close .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); } + +.reveal > .overlay header a.external .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); } + +.reveal > .overlay .viewport { + position: absolute; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + top: 40px; + right: 0; + bottom: 0; + left: 0; } + +.reveal > .overlay.overlay-preview .viewport iframe { + width: 100%; + height: 100%; + max-width: 100%; + max-height: 100%; + border: 0; + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; } + +.reveal > .overlay.overlay-preview.loaded .viewport iframe { + opacity: 1; + visibility: visible; } + +.reveal > .overlay.overlay-preview.loaded .viewport-inner { + position: absolute; + z-index: -1; + left: 0; + top: 45%; + width: 100%; + text-align: center; + letter-spacing: normal; } + +.reveal > .overlay.overlay-preview .x-frame-error { + opacity: 0; + transition: opacity 0.3s ease 0.3s; } + +.reveal > .overlay.overlay-preview.loaded .x-frame-error { + opacity: 1; } + +.reveal > .overlay.overlay-preview.loaded .spinner { + opacity: 0; + visibility: hidden; + -webkit-transform: scale(0.2); + transform: scale(0.2); } + +.reveal > .overlay.overlay-help .viewport { + overflow: auto; + color: #fff; } + +.reveal > .overlay.overlay-help .viewport .viewport-inner { + width: 600px; + margin: auto; + padding: 20px 20px 80px 20px; + text-align: center; + letter-spacing: normal; } + +.reveal > .overlay.overlay-help .viewport .viewport-inner .title { + font-size: 20px; } + +.reveal > .overlay.overlay-help .viewport .viewport-inner table { + border: 1px solid #fff; + border-collapse: collapse; + font-size: 16px; } + +.reveal > .overlay.overlay-help .viewport .viewport-inner table th, +.reveal > .overlay.overlay-help .viewport .viewport-inner table td { + width: 200px; + padding: 14px; + border: 1px solid #fff; + vertical-align: middle; } + +.reveal > .overlay.overlay-help .viewport .viewport-inner table th { + padding-top: 20px; + padding-bottom: 20px; } + +/********************************************* + * PLAYBACK COMPONENT + *********************************************/ +.reveal .playback { + position: absolute; + left: 15px; + bottom: 20px; + z-index: 30; + cursor: pointer; + transition: all 400ms ease; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + +.reveal.overview .playback { + opacity: 0; + visibility: hidden; } + +/********************************************* + * CODE HIGHLGIHTING + *********************************************/ +.reveal .hljs table { + margin: initial; } + +.reveal .hljs-ln-code, +.reveal .hljs-ln-numbers { + padding: 0; + border: 0; } + +.reveal .hljs-ln-numbers { + opacity: 0.6; + padding-right: 0.75em; + text-align: right; + vertical-align: top; } + +.reveal .hljs[data-line-numbers]:not([data-line-numbers=""]) tr:not(.highlight-line) { + opacity: 0.4; } + +/********************************************* + * ROLLING LINKS + *********************************************/ +.reveal .roll { + display: inline-block; + line-height: 1.2; + overflow: hidden; + vertical-align: top; + -webkit-perspective: 400px; + perspective: 400px; + -webkit-perspective-origin: 50% 50%; + perspective-origin: 50% 50%; } + +.reveal .roll:hover { + background: none; + text-shadow: none; } + +.reveal .roll span { + display: block; + position: relative; + padding: 0 2px; + pointer-events: none; + transition: all 400ms ease; + -webkit-transform-origin: 50% 0%; + transform-origin: 50% 0%; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.reveal .roll:hover span { + background: rgba(0, 0, 0, 0.5); + -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg); + transform: translate3d(0px, 0px, -45px) rotateX(90deg); } + +.reveal .roll span:after { + content: attr(data-title); + display: block; + position: absolute; + left: 0; + top: 0; + padding: 0 2px; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transform-origin: 50% 0%; + transform-origin: 50% 0%; + -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg); + transform: translate3d(0px, 110%, 0px) rotateX(-90deg); } + +/********************************************* + * SPEAKER NOTES + *********************************************/ +.reveal aside.notes { + display: none; } + +.reveal .speaker-notes { + display: none; + position: absolute; + width: 33.3333333333%; + height: 100%; + top: 0; + left: 100%; + padding: 14px 18px 14px 18px; + z-index: 1; + font-size: 18px; + line-height: 1.4; + border: 1px solid rgba(0, 0, 0, 0.05); + color: #222; + background-color: #f5f5f5; + overflow: auto; + box-sizing: border-box; + text-align: left; + font-family: Helvetica, sans-serif; + -webkit-overflow-scrolling: touch; } + .reveal .speaker-notes .notes-placeholder { + color: #ccc; + font-style: italic; } + .reveal .speaker-notes:focus { + outline: none; } + .reveal .speaker-notes:before { + content: 'Speaker notes'; + display: block; + margin-bottom: 10px; + opacity: 0.5; } + +.reveal.show-notes { + max-width: 75%; + overflow: visible; } + +.reveal.show-notes .speaker-notes { + display: block; } + +@media screen and (min-width: 1600px) { + .reveal .speaker-notes { + font-size: 20px; } } + +@media screen and (max-width: 1024px) { + .reveal.show-notes { + border-left: 0; + max-width: none; + max-height: 70%; + max-height: 70vh; + overflow: visible; } + .reveal.show-notes .speaker-notes { + top: 100%; + left: 0; + width: 100%; + height: 42.8571428571%; + height: 30vh; + border: 0; } } + +@media screen and (max-width: 600px) { + .reveal.show-notes { + max-height: 60%; + max-height: 60vh; } + .reveal.show-notes .speaker-notes { + top: 100%; + height: 66.6666666667%; + height: 40vh; } + .reveal .speaker-notes { + font-size: 14px; } } + +/********************************************* + * ZOOM PLUGIN + *********************************************/ +.zoomed .reveal *, +.zoomed .reveal *:before, +.zoomed .reveal *:after { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; } + +.zoomed .reveal .progress, +.zoomed .reveal .controls { + opacity: 0; } + +.zoomed .reveal .roll span { + background: none; } + +.zoomed .reveal .roll span:after { + visibility: hidden; } diff --git a/anno3/avrc/assignments/dataviz/slides/css/reveal.scss b/anno3/avrc/assignments/dataviz/slides/css/reveal.scss new file mode 100644 index 0000000..ab732a4 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/reveal.scss @@ -0,0 +1,1768 @@ +/*! + * reveal.js + * http://revealjs.com + * MIT licensed + * + * Copyright (C) 2019 Hakim El Hattab, http://hakim.se + */ + + +/********************************************* + * GLOBAL STYLES + *********************************************/ + +html { + width: 100%; + height: 100%; + height: 100vh; + height: calc( var(--vh, 1vh) * 100 ); + overflow: hidden; +} + +body { + height: 100%; + overflow: hidden; + position: relative; + line-height: 1; + margin: 0; + + background-color: #fff; + color: #000; +} + + +/********************************************* + * VIEW FRAGMENTS + *********************************************/ + +.reveal .slides section .fragment { + opacity: 0; + visibility: hidden; + transition: all .2s ease; + + &.visible { + opacity: 1; + visibility: inherit; + } +} + +.reveal .slides section .fragment.grow { + opacity: 1; + visibility: inherit; + + &.visible { + transform: scale( 1.3 ); + } +} + +.reveal .slides section .fragment.shrink { + opacity: 1; + visibility: inherit; + + &.visible { + transform: scale( 0.7 ); + } +} + +.reveal .slides section .fragment.zoom-in { + transform: scale( 0.1 ); + + &.visible { + transform: none; + } +} + +.reveal .slides section .fragment.fade-out { + opacity: 1; + visibility: inherit; + + &.visible { + opacity: 0; + visibility: hidden; + } +} + +.reveal .slides section .fragment.semi-fade-out { + opacity: 1; + visibility: inherit; + + &.visible { + opacity: 0.5; + visibility: inherit; + } +} + +.reveal .slides section .fragment.strike { + opacity: 1; + visibility: inherit; + + &.visible { + text-decoration: line-through; + } +} + +.reveal .slides section .fragment.fade-up { + transform: translate(0, 20%); + + &.visible { + transform: translate(0, 0); + } +} + +.reveal .slides section .fragment.fade-down { + transform: translate(0, -20%); + + &.visible { + transform: translate(0, 0); + } +} + +.reveal .slides section .fragment.fade-right { + transform: translate(-20%, 0); + + &.visible { + transform: translate(0, 0); + } +} + +.reveal .slides section .fragment.fade-left { + transform: translate(20%, 0); + + &.visible { + transform: translate(0, 0); + } +} + +.reveal .slides section .fragment.fade-in-then-out, +.reveal .slides section .fragment.current-visible { + opacity: 0; + visibility: hidden; + + &.current-fragment { + opacity: 1; + visibility: inherit; + } +} + +.reveal .slides section .fragment.fade-in-then-semi-out { + opacity: 0; + visibility: hidden; + + &.visible { + opacity: 0.5; + visibility: inherit; + } + + &.current-fragment { + opacity: 1; + visibility: inherit; + } +} + +.reveal .slides section .fragment.highlight-red, +.reveal .slides section .fragment.highlight-current-red, +.reveal .slides section .fragment.highlight-green, +.reveal .slides section .fragment.highlight-current-green, +.reveal .slides section .fragment.highlight-blue, +.reveal .slides section .fragment.highlight-current-blue { + opacity: 1; + visibility: inherit; +} + .reveal .slides section .fragment.highlight-red.visible { + color: #ff2c2d + } + .reveal .slides section .fragment.highlight-green.visible { + color: #17ff2e; + } + .reveal .slides section .fragment.highlight-blue.visible { + color: #1b91ff; + } + +.reveal .slides section .fragment.highlight-current-red.current-fragment { + color: #ff2c2d +} +.reveal .slides section .fragment.highlight-current-green.current-fragment { + color: #17ff2e; +} +.reveal .slides section .fragment.highlight-current-blue.current-fragment { + color: #1b91ff; +} + + +/********************************************* + * DEFAULT ELEMENT STYLES + *********************************************/ + +/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */ +.reveal:after { + content: ''; + font-style: italic; +} + +.reveal iframe { + z-index: 1; +} + +/** Prevents layering issues in certain browser/transition combinations */ +.reveal a { + position: relative; +} + +.reveal .stretch { + max-width: none; + max-height: none; +} + +.reveal pre.stretch code { + height: 100%; + max-height: 100%; + box-sizing: border-box; +} + + +/********************************************* + * CONTROLS + *********************************************/ + +@keyframes bounce-right { + 0%, 10%, 25%, 40%, 50% {transform: translateX(0);} + 20% {transform: translateX(10px);} + 30% {transform: translateX(-5px);} +} + +@keyframes bounce-down { + 0%, 10%, 25%, 40%, 50% {transform: translateY(0);} + 20% {transform: translateY(10px);} + 30% {transform: translateY(-5px);} +} + +$controlArrowSize: 3.6em; +$controlArrowSpacing: 1.4em; +$controlArrowLength: 2.6em; +$controlArrowThickness: 0.5em; +$controlsArrowAngle: 45deg; +$controlsArrowAngleHover: 40deg; +$controlsArrowAngleActive: 36deg; + +@mixin controlsArrowTransform( $angle ) { + &:before { + transform: translateX(($controlArrowSize - $controlArrowLength)/2) translateY(($controlArrowSize - $controlArrowThickness)/2) rotate( $angle ); + } + + &:after { + transform: translateX(($controlArrowSize - $controlArrowLength)/2) translateY(($controlArrowSize - $controlArrowThickness)/2) rotate( -$angle ); + } +} + +.reveal .controls { + $spacing: 12px; + + display: none; + position: absolute; + top: auto; + bottom: $spacing; + right: $spacing; + left: auto; + z-index: 1; + color: #000; + pointer-events: none; + font-size: 10px; + + button { + position: absolute; + padding: 0; + background-color: transparent; + border: 0; + outline: 0; + cursor: pointer; + color: currentColor; + transform: scale(.9999); + transition: color 0.2s ease, + opacity 0.2s ease, + transform 0.2s ease; + z-index: 2; // above slides + pointer-events: auto; + font-size: inherit; + + visibility: hidden; + opacity: 0; + + -webkit-appearance: none; + -webkit-tap-highlight-color: rgba( 0, 0, 0, 0 ); + } + + .controls-arrow:before, + .controls-arrow:after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: $controlArrowLength; + height: $controlArrowThickness; + border-radius: $controlArrowThickness/2; + background-color: currentColor; + + transition: all 0.15s ease, background-color 0.8s ease; + transform-origin: floor(($controlArrowThickness/2)*10)/10 50%; + will-change: transform; + } + + .controls-arrow { + position: relative; + width: $controlArrowSize; + height: $controlArrowSize; + + @include controlsArrowTransform( $controlsArrowAngle ); + + &:hover { + @include controlsArrowTransform( $controlsArrowAngleHover ); + } + + &:active { + @include controlsArrowTransform( $controlsArrowAngleActive ); + } + } + + .navigate-left { + right: $controlArrowSize + $controlArrowSpacing*2; + bottom: $controlArrowSpacing + $controlArrowSize/2; + transform: translateX( -10px ); + } + + .navigate-right { + right: 0; + bottom: $controlArrowSpacing + $controlArrowSize/2; + transform: translateX( 10px ); + + .controls-arrow { + transform: rotate( 180deg ); + } + + &.highlight { + animation: bounce-right 2s 50 both ease-out; + } + } + + .navigate-up { + right: $controlArrowSpacing + $controlArrowSize/2; + bottom: $controlArrowSpacing*2 + $controlArrowSize; + transform: translateY( -10px ); + + .controls-arrow { + transform: rotate( 90deg ); + } + } + + .navigate-down { + right: $controlArrowSpacing + $controlArrowSize/2; + bottom: 0; + transform: translateY( 10px ); + + .controls-arrow { + transform: rotate( -90deg ); + } + + &.highlight { + animation: bounce-down 2s 50 both ease-out; + } + } + + // Back arrow style: "faded": + // Deemphasize backwards navigation arrows in favor of drawing + // attention to forwards navigation + &[data-controls-back-arrows="faded"] .navigate-left.enabled, + &[data-controls-back-arrows="faded"] .navigate-up.enabled { + opacity: 0.3; + + &:hover { + opacity: 1; + } + } + + // Back arrow style: "hidden": + // Never show arrows for backwards navigation + &[data-controls-back-arrows="hidden"] .navigate-left.enabled, + &[data-controls-back-arrows="hidden"] .navigate-up.enabled { + opacity: 0; + visibility: hidden; + } + + // Any control button that can be clicked is "enabled" + .enabled { + visibility: visible; + opacity: 0.9; + cursor: pointer; + transform: none; + } + + // Any control button that leads to showing or hiding + // a fragment + .enabled.fragmented { + opacity: 0.5; + } + + .enabled:hover, + .enabled.fragmented:hover { + opacity: 1; + } +} + +.reveal[data-navigation-mode="linear"].has-horizontal-slides .navigate-up, +.reveal[data-navigation-mode="linear"].has-horizontal-slides .navigate-down { + display: none; +} + +// Adjust the layout when there are no vertical slides +.reveal[data-navigation-mode="linear"].has-horizontal-slides .navigate-left, +.reveal:not(.has-vertical-slides) .controls .navigate-left { + bottom: $controlArrowSpacing; + right: 0.5em + $controlArrowSpacing + $controlArrowSize; +} + +.reveal[data-navigation-mode="linear"].has-horizontal-slides .navigate-right, +.reveal:not(.has-vertical-slides) .controls .navigate-right { + bottom: $controlArrowSpacing; + right: 0.5em; +} + +// Adjust the layout when there are no horizontal slides +.reveal:not(.has-horizontal-slides) .controls .navigate-up { + right: $controlArrowSpacing; + bottom: $controlArrowSpacing + $controlArrowSize; +} +.reveal:not(.has-horizontal-slides) .controls .navigate-down { + right: $controlArrowSpacing; + bottom: 0.5em; +} + +// Invert arrows based on background color +.reveal.has-dark-background .controls { + color: #fff; +} +.reveal.has-light-background .controls { + color: #000; +} + +// Disable active states on touch devices +.reveal.no-hover .controls .controls-arrow:hover, +.reveal.no-hover .controls .controls-arrow:active { + @include controlsArrowTransform( $controlsArrowAngle ); +} + +// Edge aligned controls layout +@media screen and (min-width: 500px) { + + $spacing: 8px; + + .reveal .controls[data-controls-layout="edges"] { + & { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .navigate-left, + .navigate-right, + .navigate-up, + .navigate-down { + bottom: auto; + right: auto; + } + + .navigate-left { + top: 50%; + left: $spacing; + margin-top: -$controlArrowSize/2; + } + + .navigate-right { + top: 50%; + right: $spacing; + margin-top: -$controlArrowSize/2; + } + + .navigate-up { + top: $spacing; + left: 50%; + margin-left: -$controlArrowSize/2; + } + + .navigate-down { + bottom: $spacing; + left: 50%; + margin-left: -$controlArrowSize/2; + } + } + +} + + +/********************************************* + * PROGRESS BAR + *********************************************/ + +.reveal .progress { + position: absolute; + display: none; + height: 3px; + width: 100%; + bottom: 0; + left: 0; + z-index: 10; + + background-color: rgba( 0, 0, 0, 0.2 ); + color: #fff; +} + .reveal .progress:after { + content: ''; + display: block; + position: absolute; + height: 10px; + width: 100%; + top: -10px; + } + .reveal .progress span { + display: block; + height: 100%; + width: 0px; + + background-color: currentColor; + transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + } + +/********************************************* + * SLIDE NUMBER + *********************************************/ + +.reveal .slide-number { + position: absolute; + display: block; + right: 8px; + bottom: 8px; + z-index: 31; + font-family: Helvetica, sans-serif; + font-size: 12px; + line-height: 1; + color: #fff; + background-color: rgba( 0, 0, 0, 0.4 ); + padding: 5px; +} + +.reveal .slide-number a { + color: currentColor; +} + +.reveal .slide-number-delimiter { + margin: 0 3px; +} + +/********************************************* + * SLIDES + *********************************************/ + +.reveal { + position: relative; + width: 100%; + height: 100%; + overflow: hidden; + touch-action: pinch-zoom; +} + +.reveal .slides { + position: absolute; + width: 100%; + height: 100%; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; + pointer-events: none; + + overflow: visible; + z-index: 1; + text-align: center; + perspective: 600px; + perspective-origin: 50% 40%; +} + +.reveal .slides>section { + perspective: 600px; +} + +.reveal .slides>section, +.reveal .slides>section>section { + display: none; + position: absolute; + width: 100%; + padding: 20px 0px; + pointer-events: auto; + + z-index: 10; + transform-style: flat; + transition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985), + transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985), + visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985), + opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); +} + +/* Global transition speed settings */ +.reveal[data-transition-speed="fast"] .slides section { + transition-duration: 400ms; +} +.reveal[data-transition-speed="slow"] .slides section { + transition-duration: 1200ms; +} + +/* Slide-specific transition speed overrides */ +.reveal .slides section[data-transition-speed="fast"] { + transition-duration: 400ms; +} +.reveal .slides section[data-transition-speed="slow"] { + transition-duration: 1200ms; +} + +.reveal .slides>section.stack { + padding-top: 0; + padding-bottom: 0; + pointer-events: none; + height: 100%; +} + +.reveal .slides>section.present, +.reveal .slides>section>section.present { + display: block; + z-index: 11; + opacity: 1; +} + +.reveal .slides>section:empty, +.reveal .slides>section>section:empty, +.reveal .slides>section[data-background-interactive], +.reveal .slides>section>section[data-background-interactive] { + pointer-events: none; +} + +.reveal.center, +.reveal.center .slides, +.reveal.center .slides section { + min-height: 0 !important; +} + +/* Don't allow interaction with invisible slides */ +.reveal .slides>section.future, +.reveal .slides>section>section.future, +.reveal .slides>section.past, +.reveal .slides>section>section.past { + pointer-events: none; +} + +.reveal.overview .slides>section, +.reveal.overview .slides>section>section { + pointer-events: auto; +} + +.reveal .slides>section.past, +.reveal .slides>section.future, +.reveal .slides>section>section.past, +.reveal .slides>section>section.future { + opacity: 0; +} + + +/********************************************* + * Mixins for readability of transitions + *********************************************/ + +@mixin transition-global($style) { + .reveal .slides section[data-transition=#{$style}], + .reveal.#{$style} .slides section:not([data-transition]) { + @content; + } +} +@mixin transition-stack($style) { + .reveal .slides section[data-transition=#{$style}].stack, + .reveal.#{$style} .slides section.stack { + @content; + } +} +@mixin transition-horizontal-past($style) { + .reveal .slides>section[data-transition=#{$style}].past, + .reveal .slides>section[data-transition~=#{$style}-out].past, + .reveal.#{$style} .slides>section:not([data-transition]).past { + @content; + } +} +@mixin transition-horizontal-future($style) { + .reveal .slides>section[data-transition=#{$style}].future, + .reveal .slides>section[data-transition~=#{$style}-in].future, + .reveal.#{$style} .slides>section:not([data-transition]).future { + @content; + } +} + +@mixin transition-vertical-past($style) { + .reveal .slides>section>section[data-transition=#{$style}].past, + .reveal .slides>section>section[data-transition~=#{$style}-out].past, + .reveal.#{$style} .slides>section>section:not([data-transition]).past { + @content; + } +} +@mixin transition-vertical-future($style) { + .reveal .slides>section>section[data-transition=#{$style}].future, + .reveal .slides>section>section[data-transition~=#{$style}-in].future, + .reveal.#{$style} .slides>section>section:not([data-transition]).future { + @content; + } +} + +/********************************************* + * SLIDE TRANSITION + * Aliased 'linear' for backwards compatibility + *********************************************/ + +@each $stylename in slide, linear { + .reveal.#{$stylename} section { + backface-visibility: hidden; + } + @include transition-horizontal-past(#{$stylename}) { + transform: translate(-150%, 0); + } + @include transition-horizontal-future(#{$stylename}) { + transform: translate(150%, 0); + } + @include transition-vertical-past(#{$stylename}) { + transform: translate(0, -150%); + } + @include transition-vertical-future(#{$stylename}) { + transform: translate(0, 150%); + } +} + +/********************************************* + * CONVEX TRANSITION + * Aliased 'default' for backwards compatibility + *********************************************/ + +@each $stylename in default, convex { + @include transition-stack(#{$stylename}) { + transform-style: preserve-3d; + } + + @include transition-horizontal-past(#{$stylename}) { + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); + } + @include transition-horizontal-future(#{$stylename}) { + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); + } + @include transition-vertical-past(#{$stylename}) { + transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); + } + @include transition-vertical-future(#{$stylename}) { + transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); + } +} + +/********************************************* + * CONCAVE TRANSITION + *********************************************/ + +@include transition-stack(concave) { + transform-style: preserve-3d; +} + +@include transition-horizontal-past(concave) { + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); +} +@include transition-horizontal-future(concave) { + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); +} +@include transition-vertical-past(concave) { + transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); +} +@include transition-vertical-future(concave) { + transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); +} + + +/********************************************* + * ZOOM TRANSITION + *********************************************/ + +@include transition-global(zoom) { + transition-timing-function: ease; +} +@include transition-horizontal-past(zoom) { + visibility: hidden; + transform: scale(16); +} +@include transition-horizontal-future(zoom) { + visibility: hidden; + transform: scale(0.2); +} +@include transition-vertical-past(zoom) { + transform: scale(16); +} +@include transition-vertical-future(zoom) { + transform: scale(0.2); +} + + +/********************************************* + * CUBE TRANSITION + * + * WARNING: + * this is deprecated and will be removed in a + * future version. + *********************************************/ + +.reveal.cube .slides { + perspective: 1300px; +} + +.reveal.cube .slides section { + padding: 30px; + min-height: 700px; + backface-visibility: hidden; + box-sizing: border-box; + transform-style: preserve-3d; +} + .reveal.center.cube .slides section { + min-height: 0; + } + .reveal.cube .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0,0,0,0.1); + border-radius: 4px; + transform: translateZ( -20px ); + } + .reveal.cube .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0,0,0,0.2); + transform: translateZ(-90px) rotateX( 65deg ); + } + +.reveal.cube .slides>section.stack { + padding: 0; + background: none; +} + +.reveal.cube .slides>section.past { + transform-origin: 100% 0%; + transform: translate3d(-100%, 0, 0) rotateY(-90deg); +} + +.reveal.cube .slides>section.future { + transform-origin: 0% 0%; + transform: translate3d(100%, 0, 0) rotateY(90deg); +} + +.reveal.cube .slides>section>section.past { + transform-origin: 0% 100%; + transform: translate3d(0, -100%, 0) rotateX(90deg); +} + +.reveal.cube .slides>section>section.future { + transform-origin: 0% 0%; + transform: translate3d(0, 100%, 0) rotateX(-90deg); +} + + +/********************************************* + * PAGE TRANSITION + * + * WARNING: + * this is deprecated and will be removed in a + * future version. + *********************************************/ + +.reveal.page .slides { + perspective-origin: 0% 50%; + perspective: 3000px; +} + +.reveal.page .slides section { + padding: 30px; + min-height: 700px; + box-sizing: border-box; + transform-style: preserve-3d; +} + .reveal.page .slides section.past { + z-index: 12; + } + .reveal.page .slides section:not(.stack):before { + content: ''; + position: absolute; + display: block; + width: 100%; + height: 100%; + left: 0; + top: 0; + background: rgba(0,0,0,0.1); + transform: translateZ( -20px ); + } + .reveal.page .slides section:not(.stack):after { + content: ''; + position: absolute; + display: block; + width: 90%; + height: 30px; + left: 5%; + bottom: 0; + background: none; + z-index: 1; + + border-radius: 4px; + box-shadow: 0px 95px 25px rgba(0,0,0,0.2); + + -webkit-transform: translateZ(-90px) rotateX( 65deg ); + } + +.reveal.page .slides>section.stack { + padding: 0; + background: none; +} + +.reveal.page .slides>section.past { + transform-origin: 0% 0%; + transform: translate3d(-40%, 0, 0) rotateY(-80deg); +} + +.reveal.page .slides>section.future { + transform-origin: 100% 0%; + transform: translate3d(0, 0, 0); +} + +.reveal.page .slides>section>section.past { + transform-origin: 0% 0%; + transform: translate3d(0, -40%, 0) rotateX(80deg); +} + +.reveal.page .slides>section>section.future { + transform-origin: 0% 100%; + transform: translate3d(0, 0, 0); +} + + +/********************************************* + * FADE TRANSITION + *********************************************/ + +.reveal .slides section[data-transition=fade], +.reveal.fade .slides section:not([data-transition]), +.reveal.fade .slides>section>section:not([data-transition]) { + transform: none; + transition: opacity 0.5s; +} + + +.reveal.fade.overview .slides section, +.reveal.fade.overview .slides>section>section { + transition: none; +} + + +/********************************************* + * NO TRANSITION + *********************************************/ + +@include transition-global(none) { + transform: none; + transition: none; +} + + +/********************************************* + * PAUSED MODE + *********************************************/ + +.reveal .pause-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: black; + visibility: hidden; + opacity: 0; + z-index: 100; + transition: all 1s ease; +} + +.reveal .pause-overlay .resume-button { + position: absolute; + bottom: 20px; + right: 20px; + color: #ccc; + border-radius: 2px; + padding: 6px 14px; + border: 2px solid #ccc; + font-size: 16px; + background: transparent; + cursor: pointer; + + &:hover { + color: #fff; + border-color: #fff; + } +} + +.reveal.paused .pause-overlay { + visibility: visible; + opacity: 1; +} + + +/********************************************* + * FALLBACK + *********************************************/ + +.no-transforms { + overflow-y: auto; +} + +.no-transforms .reveal { + overflow: visible; +} + +.no-transforms .reveal .slides { + position: relative; + width: 80%; + max-width: 1280px; + height: auto; + top: 0; + margin: 0 auto; + text-align: center; +} + +.no-transforms .reveal .controls, +.no-transforms .reveal .progress { + display: none; +} + +.no-transforms .reveal .slides section { + display: block; + opacity: 1; + position: relative; + height: auto; + min-height: 0; + top: 0; + left: 0; + margin: 10vh 0; + margin: 70px 0; + transform: none; +} + +.reveal .no-transition, +.reveal .no-transition * { + transition: none !important; +} + + +/********************************************* + * PER-SLIDE BACKGROUNDS + *********************************************/ + +.reveal .backgrounds { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + perspective: 600px; +} + .reveal .slide-background { + display: none; + position: absolute; + width: 100%; + height: 100%; + opacity: 0; + visibility: hidden; + overflow: hidden; + + background-color: rgba( 0, 0, 0, 0 ); + + transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + } + + .reveal .slide-background-content { + position: absolute; + width: 100%; + height: 100%; + + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: cover; + } + + .reveal .slide-background.stack { + display: block; + } + + .reveal .slide-background.present { + opacity: 1; + visibility: visible; + z-index: 2; + } + + .print-pdf .reveal .slide-background { + opacity: 1 !important; + visibility: visible !important; + } + +/* Video backgrounds */ +.reveal .slide-background video { + position: absolute; + width: 100%; + height: 100%; + max-width: none; + max-height: none; + top: 0; + left: 0; + object-fit: cover; +} + .reveal .slide-background[data-background-size="contain"] video { + object-fit: contain; + } + +/* Immediate transition style */ +.reveal[data-background-transition=none]>.backgrounds .slide-background, +.reveal>.backgrounds .slide-background[data-background-transition=none] { + transition: none; +} + +/* Slide */ +.reveal[data-background-transition=slide]>.backgrounds .slide-background, +.reveal>.backgrounds .slide-background[data-background-transition=slide] { + opacity: 1; + backface-visibility: hidden; +} + .reveal[data-background-transition=slide]>.backgrounds .slide-background.past, + .reveal>.backgrounds .slide-background.past[data-background-transition=slide] { + transform: translate(-100%, 0); + } + .reveal[data-background-transition=slide]>.backgrounds .slide-background.future, + .reveal>.backgrounds .slide-background.future[data-background-transition=slide] { + transform: translate(100%, 0); + } + + .reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past, + .reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] { + transform: translate(0, -100%); + } + .reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future, + .reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] { + transform: translate(0, 100%); + } + + +/* Convex */ +.reveal[data-background-transition=convex]>.backgrounds .slide-background.past, +.reveal>.backgrounds .slide-background.past[data-background-transition=convex] { + opacity: 0; + transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); +} +.reveal[data-background-transition=convex]>.backgrounds .slide-background.future, +.reveal>.backgrounds .slide-background.future[data-background-transition=convex] { + opacity: 0; + transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); +} + +.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past, +.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] { + opacity: 0; + transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); +} +.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future, +.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] { + opacity: 0; + transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); +} + + +/* Concave */ +.reveal[data-background-transition=concave]>.backgrounds .slide-background.past, +.reveal>.backgrounds .slide-background.past[data-background-transition=concave] { + opacity: 0; + transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); +} +.reveal[data-background-transition=concave]>.backgrounds .slide-background.future, +.reveal>.backgrounds .slide-background.future[data-background-transition=concave] { + opacity: 0; + transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); +} + +.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past, +.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] { + opacity: 0; + transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); +} +.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future, +.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] { + opacity: 0; + transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); +} + +/* Zoom */ +.reveal[data-background-transition=zoom]>.backgrounds .slide-background, +.reveal>.backgrounds .slide-background[data-background-transition=zoom] { + transition-timing-function: ease; +} + +.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past, +.reveal>.backgrounds .slide-background.past[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + transform: scale(16); +} +.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future, +.reveal>.backgrounds .slide-background.future[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + transform: scale(0.2); +} + +.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past, +.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + transform: scale(16); +} +.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future, +.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] { + opacity: 0; + visibility: hidden; + transform: scale(0.2); +} + + +/* Global transition speed settings */ +.reveal[data-transition-speed="fast"]>.backgrounds .slide-background { + transition-duration: 400ms; +} +.reveal[data-transition-speed="slow"]>.backgrounds .slide-background { + transition-duration: 1200ms; +} + + +/********************************************* + * OVERVIEW + *********************************************/ + +.reveal.overview { + perspective-origin: 50% 50%; + perspective: 700px; + + .slides { + // Fixes overview rendering errors in FF48+, not applied to + // other browsers since it degrades performance + -moz-transform-style: preserve-3d; + } + + .slides section { + height: 100%; + top: 0 !important; + opacity: 1 !important; + overflow: hidden; + visibility: visible !important; + cursor: pointer; + box-sizing: border-box; + } + .slides section:hover, + .slides section.present { + outline: 10px solid rgba(150,150,150,0.4); + outline-offset: 10px; + } + .slides section .fragment { + opacity: 1; + transition: none; + } + .slides section:after, + .slides section:before { + display: none !important; + } + .slides>section.stack { + padding: 0; + top: 0 !important; + background: none; + outline: none; + overflow: visible; + } + + .backgrounds { + perspective: inherit; + + // Fixes overview rendering errors in FF48+, not applied to + // other browsers since it degrades performance + -moz-transform-style: preserve-3d; + } + + .backgrounds .slide-background { + opacity: 1; + visibility: visible; + + // This can't be applied to the slide itself in Safari + outline: 10px solid rgba(150,150,150,0.1); + outline-offset: 10px; + } + + .backgrounds .slide-background.stack { + overflow: visible; + } +} + +// Disable transitions transitions while we're activating +// or deactivating the overview mode. +.reveal.overview .slides section, +.reveal.overview-deactivating .slides section { + transition: none; +} + +.reveal.overview .backgrounds .slide-background, +.reveal.overview-deactivating .backgrounds .slide-background { + transition: none; +} + + +/********************************************* + * RTL SUPPORT + *********************************************/ + +.reveal.rtl .slides, +.reveal.rtl .slides h1, +.reveal.rtl .slides h2, +.reveal.rtl .slides h3, +.reveal.rtl .slides h4, +.reveal.rtl .slides h5, +.reveal.rtl .slides h6 { + direction: rtl; + font-family: sans-serif; +} + +.reveal.rtl pre, +.reveal.rtl code { + direction: ltr; +} + +.reveal.rtl ol, +.reveal.rtl ul { + text-align: right; +} + +.reveal.rtl .progress span { + float: right +} + +/********************************************* + * PARALLAX BACKGROUND + *********************************************/ + +.reveal.has-parallax-background .backgrounds { + transition: all 0.8s ease; +} + +/* Global transition speed settings */ +.reveal.has-parallax-background[data-transition-speed="fast"] .backgrounds { + transition-duration: 400ms; +} +.reveal.has-parallax-background[data-transition-speed="slow"] .backgrounds { + transition-duration: 1200ms; +} + + +/********************************************* + * OVERLAY FOR LINK PREVIEWS AND HELP + *********************************************/ + +.reveal > .overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1000; + background: rgba( 0, 0, 0, 0.9 ); + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; +} + .reveal > .overlay.visible { + opacity: 1; + visibility: visible; + } + + .reveal > .overlay .spinner { + position: absolute; + display: block; + top: 50%; + left: 50%; + width: 32px; + height: 32px; + margin: -16px 0 0 -16px; + z-index: 10; + background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D); + + visibility: visible; + opacity: 0.6; + transition: all 0.3s ease; + } + + .reveal > .overlay header { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 40px; + z-index: 2; + border-bottom: 1px solid #222; + } + .reveal > .overlay header a { + display: inline-block; + width: 40px; + height: 40px; + line-height: 36px; + padding: 0 10px; + float: right; + opacity: 0.6; + + box-sizing: border-box; + } + .reveal > .overlay header a:hover { + opacity: 1; + } + .reveal > .overlay header a .icon { + display: inline-block; + width: 20px; + height: 20px; + + background-position: 50% 50%; + background-size: 100%; + background-repeat: no-repeat; + } + .reveal > .overlay header a.close .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); + } + .reveal > .overlay header a.external .icon { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); + } + + .reveal > .overlay .viewport { + position: absolute; + display: flex; + top: 40px; + right: 0; + bottom: 0; + left: 0; + } + + .reveal > .overlay.overlay-preview .viewport iframe { + width: 100%; + height: 100%; + max-width: 100%; + max-height: 100%; + border: 0; + + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; + } + + .reveal > .overlay.overlay-preview.loaded .viewport iframe { + opacity: 1; + visibility: visible; + } + + .reveal > .overlay.overlay-preview.loaded .viewport-inner { + position: absolute; + z-index: -1; + left: 0; + top: 45%; + width: 100%; + text-align: center; + letter-spacing: normal; + } + .reveal > .overlay.overlay-preview .x-frame-error { + opacity: 0; + transition: opacity 0.3s ease 0.3s; + } + .reveal > .overlay.overlay-preview.loaded .x-frame-error { + opacity: 1; + } + + .reveal > .overlay.overlay-preview.loaded .spinner { + opacity: 0; + visibility: hidden; + transform: scale(0.2); + } + + .reveal > .overlay.overlay-help .viewport { + overflow: auto; + color: #fff; + } + + .reveal > .overlay.overlay-help .viewport .viewport-inner { + width: 600px; + margin: auto; + padding: 20px 20px 80px 20px; + text-align: center; + letter-spacing: normal; + } + + .reveal > .overlay.overlay-help .viewport .viewport-inner .title { + font-size: 20px; + } + + .reveal > .overlay.overlay-help .viewport .viewport-inner table { + border: 1px solid #fff; + border-collapse: collapse; + font-size: 16px; + } + + .reveal > .overlay.overlay-help .viewport .viewport-inner table th, + .reveal > .overlay.overlay-help .viewport .viewport-inner table td { + width: 200px; + padding: 14px; + border: 1px solid #fff; + vertical-align: middle; + } + + .reveal > .overlay.overlay-help .viewport .viewport-inner table th { + padding-top: 20px; + padding-bottom: 20px; + } + + +/********************************************* + * PLAYBACK COMPONENT + *********************************************/ + +.reveal .playback { + position: absolute; + left: 15px; + bottom: 20px; + z-index: 30; + cursor: pointer; + transition: all 400ms ease; + -webkit-tap-highlight-color: rgba( 0, 0, 0, 0 ); +} + +.reveal.overview .playback { + opacity: 0; + visibility: hidden; +} + + +/********************************************* + * CODE HIGHLGIHTING + *********************************************/ + +.reveal .hljs table { + margin: initial; +} + +.reveal .hljs-ln-code, +.reveal .hljs-ln-numbers { + padding: 0; + border: 0; +} + +.reveal .hljs-ln-numbers { + opacity: 0.6; + padding-right: 0.75em; + text-align: right; + vertical-align: top; +} + +.reveal .hljs[data-line-numbers]:not([data-line-numbers=""]) tr:not(.highlight-line) { + opacity: 0.4; +} + + +/********************************************* + * ROLLING LINKS + *********************************************/ + +.reveal .roll { + display: inline-block; + line-height: 1.2; + overflow: hidden; + + vertical-align: top; + perspective: 400px; + perspective-origin: 50% 50%; +} + .reveal .roll:hover { + background: none; + text-shadow: none; + } +.reveal .roll span { + display: block; + position: relative; + padding: 0 2px; + + pointer-events: none; + transition: all 400ms ease; + transform-origin: 50% 0%; + transform-style: preserve-3d; + backface-visibility: hidden; +} + .reveal .roll:hover span { + background: rgba(0,0,0,0.5); + transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg ); + } +.reveal .roll span:after { + content: attr(data-title); + + display: block; + position: absolute; + left: 0; + top: 0; + padding: 0 2px; + backface-visibility: hidden; + transform-origin: 50% 0%; + transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg ); +} + + +/********************************************* + * SPEAKER NOTES + *********************************************/ + +$notesWidthPercent: 25%; + +// Hide on-page notes +.reveal aside.notes { + display: none; +} + +// An interface element that can optionally be used to show the +// speaker notes to all viewers, on top of the presentation +.reveal .speaker-notes { + display: none; + position: absolute; + width: $notesWidthPercent / (1-$notesWidthPercent/100) * 1%; + height: 100%; + top: 0; + left: 100%; + padding: 14px 18px 14px 18px; + z-index: 1; + font-size: 18px; + line-height: 1.4; + border: 1px solid rgba( 0, 0, 0, 0.05 ); + color: #222; + background-color: #f5f5f5; + overflow: auto; + box-sizing: border-box; + text-align: left; + font-family: Helvetica, sans-serif; + -webkit-overflow-scrolling: touch; + + .notes-placeholder { + color: #ccc; + font-style: italic; + } + + &:focus { + outline: none; + } + + &:before { + content: 'Speaker notes'; + display: block; + margin-bottom: 10px; + opacity: 0.5; + } +} + + +.reveal.show-notes { + max-width: 100% - $notesWidthPercent; + overflow: visible; +} + +.reveal.show-notes .speaker-notes { + display: block; +} + +@media screen and (min-width: 1600px) { + .reveal .speaker-notes { + font-size: 20px; + } +} + +@media screen and (max-width: 1024px) { + .reveal.show-notes { + border-left: 0; + max-width: none; + max-height: 70%; + max-height: 70vh; + overflow: visible; + } + + .reveal.show-notes .speaker-notes { + top: 100%; + left: 0; + width: 100%; + height: (30/0.7)*1%; + height: 30vh; + border: 0; + } +} + +@media screen and (max-width: 600px) { + .reveal.show-notes { + max-height: 60%; + max-height: 60vh; + } + + .reveal.show-notes .speaker-notes { + top: 100%; + height: (40/0.6)*1%; + height: 40vh; + } + + .reveal .speaker-notes { + font-size: 14px; + } +} + + +/********************************************* + * ZOOM PLUGIN + *********************************************/ + +.zoomed .reveal *, +.zoomed .reveal *:before, +.zoomed .reveal *:after { + backface-visibility: visible !important; +} + +.zoomed .reveal .progress, +.zoomed .reveal .controls { + opacity: 0; +} + +.zoomed .reveal .roll span { + background: none; +} + +.zoomed .reveal .roll span:after { + visibility: hidden; +} diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/beige.css b/anno3/avrc/assignments/dataviz/slides/css/theme/beige.css new file mode 100644 index 0000000..615dd6d --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/beige.css @@ -0,0 +1,277 @@ +/** + * Beige theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #f7f2d3; + background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3)); + background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); + background-color: #f7f3de; } + +.reveal { + font-family: "Lato", sans-serif; + font-size: 40px; + font-weight: normal; + color: #333; } + +::selection { + color: #fff; + background: rgba(79, 64, 28, 0.99); + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: rgba(79, 64, 28, 0.99); + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #333; + font-family: "League Gothic", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #8b743d; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #c0a86e; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #564826; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #333; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #8b743d; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #8b743d; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #8b743d; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #f7f3de; } } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/black.css b/anno3/avrc/assignments/dataviz/slides/css/theme/black.css new file mode 100644 index 0000000..7dd88c2 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/black.css @@ -0,0 +1,273 @@ +/** + * Black theme for reveal.js. This is the opposite of the 'white' theme. + * + * By Hakim El Hattab, http://hakim.se + */ +@import url(../../lib/font/source-sans-pro/source-sans-pro.css); +section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 { + color: #222; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #191919; + background-color: #191919; } + +.reveal { + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-size: 42px; + font-weight: normal; + color: #fff; } + +::selection { + color: #fff; + background: #bee4fd; + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: #bee4fd; + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #fff; + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-weight: 600; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 2.5em; } + +.reveal h2 { + font-size: 1.6em; } + +.reveal h3 { + font-size: 1.3em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #42affa; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #8dcffc; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #068de9; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #fff; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #42affa; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #42affa; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #42affa; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #191919; } } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/blood.css b/anno3/avrc/assignments/dataviz/slides/css/theme/blood.css new file mode 100644 index 0000000..5cbd488 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/blood.css @@ -0,0 +1,296 @@ +/** + * Blood theme for reveal.js + * Author: Walther http://github.com/Walther + * + * Designed to be used with highlight.js theme + * "monokai_sublime.css" available from + * https://github.com/isagalaev/highlight.js/ + * + * For other themes, change $codeBackground accordingly. + * + */ +@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic); +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #222; + background-color: #222; } + +.reveal { + font-family: Ubuntu, "sans-serif"; + font-size: 40px; + font-weight: normal; + color: #eee; } + +::selection { + color: #fff; + background: #a23; + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: #a23; + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #eee; + font-family: Ubuntu, "sans-serif"; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: 2px 2px 2px #222; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #a23; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #dd5566; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #6a1520; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #eee; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #a23; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #a23; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #a23; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #222; } } + +.reveal p { + font-weight: 300; + text-shadow: 1px 1px #222; } + +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + font-weight: 700; } + +.reveal p code { + background-color: #23241f; + display: inline-block; + border-radius: 7px; } + +.reveal small code { + vertical-align: baseline; } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/league.css b/anno3/avrc/assignments/dataviz/slides/css/theme/league.css new file mode 100644 index 0000000..f8fba4d --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/league.css @@ -0,0 +1,279 @@ +/** + * League theme for reveal.js. + * + * This was the default theme pre-3.0.0. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #1c1e20; + background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20)); + background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); + background-color: #2b2b2b; } + +.reveal { + font-family: "Lato", sans-serif; + font-size: 40px; + font-weight: normal; + color: #eee; } + +::selection { + color: #fff; + background: #FF5E99; + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: #FF5E99; + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #eee; + font-family: "League Gothic", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #13DAEC; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #71e9f4; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #0d99a5; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #eee; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #13DAEC; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #13DAEC; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #13DAEC; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #2b2b2b; } } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/moon.css b/anno3/avrc/assignments/dataviz/slides/css/theme/moon.css new file mode 100644 index 0000000..d18f526 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/moon.css @@ -0,0 +1,277 @@ +/** + * Solarized Dark theme for reveal.js. + * Author: Achim Staebler + */ +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/** + * Solarized colors by Ethan Schoonover + */ +html * { + color-profile: sRGB; + rendering-intent: auto; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #002b36; + background-color: #002b36; } + +.reveal { + font-family: "Lato", sans-serif; + font-size: 40px; + font-weight: normal; + color: #93a1a1; } + +::selection { + color: #fff; + background: #d33682; + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: #d33682; + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #eee8d5; + font-family: "League Gothic", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #268bd2; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #78b9e6; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #1a6091; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #93a1a1; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #268bd2; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #268bd2; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #268bd2; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #002b36; } } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/night.css b/anno3/avrc/assignments/dataviz/slides/css/theme/night.css new file mode 100644 index 0000000..f5ccb52 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/night.css @@ -0,0 +1,271 @@ +/** + * Black theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(https://fonts.googleapis.com/css?family=Montserrat:700); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #111; + background-color: #111; } + +.reveal { + font-family: "Open Sans", sans-serif; + font-size: 40px; + font-weight: normal; + color: #eee; } + +::selection { + color: #fff; + background: #e7ad52; + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: #e7ad52; + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #eee; + font-family: "Montserrat", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: -0.03em; + text-transform: none; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #e7ad52; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #f3d7ac; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #d08a1d; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #eee; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #e7ad52; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #e7ad52; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #e7ad52; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #111; } } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/serif.css b/anno3/avrc/assignments/dataviz/slides/css/theme/serif.css new file mode 100644 index 0000000..6514a6f --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/serif.css @@ -0,0 +1,273 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is brown. + * + * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. + */ +.reveal a { + line-height: 1.3em; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #F0F1EB; + background-color: #F0F1EB; } + +.reveal { + font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; + font-size: 40px; + font-weight: normal; + color: #000; } + +::selection { + color: #fff; + background: #26351C; + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: #26351C; + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #383D3D; + font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: none; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #51483D; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #8b7c69; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #25211c; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #000; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #51483D; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #51483D; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #51483D; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #F0F1EB; } } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/simple.css b/anno3/avrc/assignments/dataviz/slides/css/theme/simple.css new file mode 100644 index 0000000..a7a29a6 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/simple.css @@ -0,0 +1,276 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is darkblue. + * + * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. + * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 { + color: #fff; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #fff; + background-color: #fff; } + +.reveal { + font-family: "Lato", sans-serif; + font-size: 40px; + font-weight: normal; + color: #000; } + +::selection { + color: #fff; + background: rgba(0, 0, 0, 0.99); + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: rgba(0, 0, 0, 0.99); + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #000; + font-family: "News Cycle", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: none; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #00008B; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #0000f1; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #00003f; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #000; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #00008B; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #00008B; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #00008B; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #fff; } } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/sky.css b/anno3/avrc/assignments/dataviz/slides/css/theme/sky.css new file mode 100644 index 0000000..d8734c9 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/sky.css @@ -0,0 +1,280 @@ +/** + * Sky theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ +@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); +.reveal a { + line-height: 1.3em; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #add9e4; + background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4)); + background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); + background-color: #f7fbfc; } + +.reveal { + font-family: "Open Sans", sans-serif; + font-size: 40px; + font-weight: normal; + color: #333; } + +::selection { + color: #fff; + background: #134674; + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: #134674; + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #333; + font-family: "Quicksand", sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: -0.08em; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #3b759e; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #74a7cb; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #264c66; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #333; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #3b759e; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #3b759e; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #3b759e; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #f7fbfc; } } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/solarized.css b/anno3/avrc/assignments/dataviz/slides/css/theme/solarized.css new file mode 100644 index 0000000..f1a2b9e --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/solarized.css @@ -0,0 +1,277 @@ +/** + * Solarized Light theme for reveal.js. + * Author: Achim Staebler + */ +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); +/** + * Solarized colors by Ethan Schoonover + */ +html * { + color-profile: sRGB; + rendering-intent: auto; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #fdf6e3; + background-color: #fdf6e3; } + +.reveal { + font-family: "Lato", sans-serif; + font-size: 40px; + font-weight: normal; + color: #657b83; } + +::selection { + color: #fff; + background: #d33682; + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: #d33682; + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #586e75; + font-family: "League Gothic", Impact, sans-serif; + font-weight: normal; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 3.77em; } + +.reveal h2 { + font-size: 2.11em; } + +.reveal h3 { + font-size: 1.55em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #268bd2; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #78b9e6; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #1a6091; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #657b83; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #268bd2; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #268bd2; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #268bd2; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #fdf6e3; } } diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/beige.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/beige.scss new file mode 100644 index 0000000..5564f53 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/beige.scss @@ -0,0 +1,39 @@ +/** + * Beige theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + + +// Override theme settings (see ../template/settings.scss) +$mainColor: #333; +$headingColor: #333; +$headingTextShadow: none; +$backgroundColor: #f7f3de; +$linkColor: #8b743d; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: rgba(79, 64, 28, 0.99); +$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); + +// Background generator +@mixin bodyBackground() { + @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) ); +} + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/black.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/black.scss new file mode 100644 index 0000000..4720c8a --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/black.scss @@ -0,0 +1,49 @@ +/** + * Black theme for reveal.js. This is the opposite of the 'white' theme. + * + * By Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + +// Include theme-specific fonts +@import url(../../lib/font/source-sans-pro/source-sans-pro.css); + + +// Override theme settings (see ../template/settings.scss) +$backgroundColor: #191919; + +$mainColor: #fff; +$headingColor: #fff; + +$mainFontSize: 42px; +$mainFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingTextShadow: none; +$headingLetterSpacing: normal; +$headingTextTransform: uppercase; +$headingFontWeight: 600; +$linkColor: #42affa; +$linkColorHover: lighten( $linkColor, 15% ); +$selectionBackgroundColor: lighten( $linkColor, 25% ); + +$heading1Size: 2.5em; +$heading2Size: 1.6em; +$heading3Size: 1.3em; +$heading4Size: 1.0em; + +section.has-light-background { + &, h1, h2, h3, h4, h5, h6 { + color: #222; + } +} + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/blood.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/blood.scss new file mode 100644 index 0000000..4533fc0 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/blood.scss @@ -0,0 +1,78 @@ +/** + * Blood theme for reveal.js + * Author: Walther http://github.com/Walther + * + * Designed to be used with highlight.js theme + * "monokai_sublime.css" available from + * https://github.com/isagalaev/highlight.js/ + * + * For other themes, change $codeBackground accordingly. + * + */ + + // Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + +// Include theme-specific fonts + +@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic); + +// Colors used in the theme +$blood: #a23; +$coal: #222; +$codeBackground: #23241f; + +$backgroundColor: $coal; + +// Main text +$mainFont: Ubuntu, 'sans-serif'; +$mainColor: #eee; + +// Headings +$headingFont: Ubuntu, 'sans-serif'; +$headingTextShadow: 2px 2px 2px $coal; + +// h1 shadow, borrowed humbly from +// (c) Default theme by Hakim El Hattab +$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); + +// Links +$linkColor: $blood; +$linkColorHover: lighten( $linkColor, 20% ); + +// Text selection +$selectionBackgroundColor: $blood; +$selectionColor: #fff; + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- + +// some overrides after theme template import + +.reveal p { + font-weight: 300; + text-shadow: 1px 1px $coal; +} + +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + font-weight: 700; +} + +.reveal p code { + background-color: $codeBackground; + display: inline-block; + border-radius: 7px; +} + +.reveal small code { + vertical-align: baseline; +} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/league.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/league.scss new file mode 100644 index 0000000..46ea04a --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/league.scss @@ -0,0 +1,34 @@ +/** + * League theme for reveal.js. + * + * This was the default theme pre-3.0.0. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + +// Override theme settings (see ../template/settings.scss) +$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); +$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); + +// Background generator +@mixin bodyBackground() { + @include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) ); +} + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/moon.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/moon.scss new file mode 100644 index 0000000..e47e5b5 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/moon.scss @@ -0,0 +1,57 @@ +/** + * Solarized Dark theme for reveal.js. + * Author: Achim Staebler + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + +/** + * Solarized colors by Ethan Schoonover + */ +html * { + color-profile: sRGB; + rendering-intent: auto; +} + +// Solarized colors +$base03: #002b36; +$base02: #073642; +$base01: #586e75; +$base00: #657b83; +$base0: #839496; +$base1: #93a1a1; +$base2: #eee8d5; +$base3: #fdf6e3; +$yellow: #b58900; +$orange: #cb4b16; +$red: #dc322f; +$magenta: #d33682; +$violet: #6c71c4; +$blue: #268bd2; +$cyan: #2aa198; +$green: #859900; + +// Override theme settings (see ../template/settings.scss) +$mainColor: $base1; +$headingColor: $base2; +$headingTextShadow: none; +$backgroundColor: $base03; +$linkColor: $blue; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: $magenta; + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/night.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/night.scss new file mode 100644 index 0000000..d49a282 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/night.scss @@ -0,0 +1,34 @@ +/** + * Black theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + +// Include theme-specific fonts +@import url(https://fonts.googleapis.com/css?family=Montserrat:700); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); + + +// Override theme settings (see ../template/settings.scss) +$backgroundColor: #111; + +$mainFont: 'Open Sans', sans-serif; +$linkColor: #e7ad52; +$linkColorHover: lighten( $linkColor, 20% ); +$headingFont: 'Montserrat', Impact, sans-serif; +$headingTextShadow: none; +$headingLetterSpacing: -0.03em; +$headingTextTransform: none; +$selectionBackgroundColor: #e7ad52; + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/serif.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/serif.scss new file mode 100644 index 0000000..ec3fcb3 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/serif.scss @@ -0,0 +1,35 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is brown. + * + * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Override theme settings (see ../template/settings.scss) +$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; +$mainColor: #000; +$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; +$headingColor: #383D3D; +$headingTextShadow: none; +$headingTextTransform: none; +$backgroundColor: #F0F1EB; +$linkColor: #51483D; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: #26351C; + +.reveal a { + line-height: 1.3em; +} + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/simple.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/simple.scss new file mode 100644 index 0000000..394c9cd --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/simple.scss @@ -0,0 +1,43 @@ +/** + * A simple theme for reveal.js presentations, similar + * to the default theme. The accent color is darkblue. + * + * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. + * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + + +// Override theme settings (see ../template/settings.scss) +$mainFont: 'Lato', sans-serif; +$mainColor: #000; +$headingFont: 'News Cycle', Impact, sans-serif; +$headingColor: #000; +$headingTextShadow: none; +$headingTextTransform: none; +$backgroundColor: #fff; +$linkColor: #00008B; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: rgba(0, 0, 0, 0.99); + +section.has-dark-background { + &, h1, h2, h3, h4, h5, h6 { + color: #fff; + } +} + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/sky.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/sky.scss new file mode 100644 index 0000000..3fee67c --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/sky.scss @@ -0,0 +1,46 @@ +/** + * Sky theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); + + +// Override theme settings (see ../template/settings.scss) +$mainFont: 'Open Sans', sans-serif; +$mainColor: #333; +$headingFont: 'Quicksand', sans-serif; +$headingColor: #333; +$headingLetterSpacing: -0.08em; +$headingTextShadow: none; +$backgroundColor: #f7fbfc; +$linkColor: #3b759e; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: #134674; + +// Fix links so they are not cut off +.reveal a { + line-height: 1.3em; +} + +// Background generator +@mixin bodyBackground() { + @include radial-gradient( #add9e4, #f7fbfc ); +} + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/solarized.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/solarized.scss new file mode 100644 index 0000000..912be56 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/solarized.scss @@ -0,0 +1,63 @@ +/** + * Solarized Light theme for reveal.js. + * Author: Achim Staebler + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + + +// Include theme-specific fonts +@import url(../../lib/font/league-gothic/league-gothic.css); +@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); + + +/** + * Solarized colors by Ethan Schoonover + */ +html * { + color-profile: sRGB; + rendering-intent: auto; +} + +// Solarized colors +$base03: #002b36; +$base02: #073642; +$base01: #586e75; +$base00: #657b83; +$base0: #839496; +$base1: #93a1a1; +$base2: #eee8d5; +$base3: #fdf6e3; +$yellow: #b58900; +$orange: #cb4b16; +$red: #dc322f; +$magenta: #d33682; +$violet: #6c71c4; +$blue: #268bd2; +$cyan: #2aa198; +$green: #859900; + +// Override theme settings (see ../template/settings.scss) +$mainColor: $base00; +$headingColor: $base01; +$headingTextShadow: none; +$backgroundColor: $base3; +$linkColor: $blue; +$linkColorHover: lighten( $linkColor, 20% ); +$selectionBackgroundColor: $magenta; + +// Background generator +// @mixin bodyBackground() { +// @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) ); +// } + + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/source/white.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/source/white.scss new file mode 100644 index 0000000..7f06ffd --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/source/white.scss @@ -0,0 +1,49 @@ +/** + * White theme for reveal.js. This is the opposite of the 'black' theme. + * + * By Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + +// Include theme-specific fonts +@import url(../../lib/font/source-sans-pro/source-sans-pro.css); + + +// Override theme settings (see ../template/settings.scss) +$backgroundColor: #fff; + +$mainColor: #222; +$headingColor: #222; + +$mainFontSize: 42px; +$mainFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingTextShadow: none; +$headingLetterSpacing: normal; +$headingTextTransform: uppercase; +$headingFontWeight: 600; +$linkColor: #2a76dd; +$linkColorHover: lighten( $linkColor, 15% ); +$selectionBackgroundColor: lighten( $linkColor, 25% ); + +$heading1Size: 2.5em; +$heading2Size: 1.6em; +$heading3Size: 1.3em; +$heading4Size: 1.0em; + +section.has-dark-background { + &, h1, h2, h3, h4, h5, h6 { + color: #fff; + } +} + + +// Theme template ------------------------------ +@import "../template/theme"; +// --------------------------------------------- \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/template/mixins.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/template/mixins.scss new file mode 100644 index 0000000..e0c5606 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/template/mixins.scss @@ -0,0 +1,29 @@ +@mixin vertical-gradient( $top, $bottom ) { + background: $top; + background: -moz-linear-gradient( top, $top 0%, $bottom 100% ); + background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) ); + background: -webkit-linear-gradient( top, $top 0%, $bottom 100% ); + background: -o-linear-gradient( top, $top 0%, $bottom 100% ); + background: -ms-linear-gradient( top, $top 0%, $bottom 100% ); + background: linear-gradient( top, $top 0%, $bottom 100% ); +} + +@mixin horizontal-gradient( $top, $bottom ) { + background: $top; + background: -moz-linear-gradient( left, $top 0%, $bottom 100% ); + background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) ); + background: -webkit-linear-gradient( left, $top 0%, $bottom 100% ); + background: -o-linear-gradient( left, $top 0%, $bottom 100% ); + background: -ms-linear-gradient( left, $top 0%, $bottom 100% ); + background: linear-gradient( left, $top 0%, $bottom 100% ); +} + +@mixin radial-gradient( $outer, $inner, $type: circle ) { + background: $outer; + background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) ); + background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); + background: radial-gradient( center, $type cover, $inner 0%, $outer 100% ); +} \ No newline at end of file diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/template/settings.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/template/settings.scss new file mode 100644 index 0000000..5a917f8 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/template/settings.scss @@ -0,0 +1,45 @@ +// Base settings for all themes that can optionally be +// overridden by the super-theme + +// Background of the presentation +$backgroundColor: #2b2b2b; + +// Primary/body text +$mainFont: 'Lato', sans-serif; +$mainFontSize: 40px; +$mainColor: #eee; + +// Vertical spacing between blocks of text +$blockMargin: 20px; + +// Headings +$headingMargin: 0 0 $blockMargin 0; +$headingFont: 'League Gothic', Impact, sans-serif; +$headingColor: #eee; +$headingLineHeight: 1.2; +$headingLetterSpacing: normal; +$headingTextTransform: uppercase; +$headingTextShadow: none; +$headingFontWeight: normal; +$heading1TextShadow: $headingTextShadow; + +$heading1Size: 3.77em; +$heading2Size: 2.11em; +$heading3Size: 1.55em; +$heading4Size: 1.00em; + +$codeFont: monospace; + +// Links and actions +$linkColor: #13DAEC; +$linkColorHover: lighten( $linkColor, 20% ); + +// Text selection +$selectionBackgroundColor: #FF5E99; +$selectionColor: #fff; + +// Generates the presentation background, can be overridden +// to return a background image or gradient +@mixin bodyBackground() { + background: $backgroundColor; +} diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/template/theme.scss b/anno3/avrc/assignments/dataviz/slides/css/theme/template/theme.scss new file mode 100644 index 0000000..9ccfaf5 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/template/theme.scss @@ -0,0 +1,325 @@ +// Base theme template for reveal.js + +/********************************************* + * GLOBAL STYLES + *********************************************/ + +body { + @include bodyBackground(); + background-color: $backgroundColor; +} + +.reveal { + font-family: $mainFont; + font-size: $mainFontSize; + font-weight: normal; + color: $mainColor; +} + +::selection { + color: $selectionColor; + background: $selectionBackgroundColor; + text-shadow: none; +} + +::-moz-selection { + color: $selectionColor; + background: $selectionBackgroundColor; + text-shadow: none; +} + +.reveal .slides section, +.reveal .slides section>section { + line-height: 1.3; + font-weight: inherit; +} + +/********************************************* + * HEADERS + *********************************************/ + +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: $headingMargin; + color: $headingColor; + + font-family: $headingFont; + font-weight: $headingFontWeight; + line-height: $headingLineHeight; + letter-spacing: $headingLetterSpacing; + + text-transform: $headingTextTransform; + text-shadow: $headingTextShadow; + + word-wrap: break-word; +} + +.reveal h1 {font-size: $heading1Size; } +.reveal h2 {font-size: $heading2Size; } +.reveal h3 {font-size: $heading3Size; } +.reveal h4 {font-size: $heading4Size; } + +.reveal h1 { + text-shadow: $heading1TextShadow; +} + + +/********************************************* + * OTHER + *********************************************/ + +.reveal p { + margin: $blockMargin 0; + line-height: 1.3; +} + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; +} +.reveal strong, +.reveal b { + font-weight: bold; +} + +.reveal em { + font-style: italic; +} + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + + text-align: left; + margin: 0 0 0 1em; +} + +.reveal ol { + list-style-type: decimal; +} + +.reveal ul { + list-style-type: disc; +} + +.reveal ul ul { + list-style-type: square; +} + +.reveal ul ul ul { + list-style-type: circle; +} + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; +} + +.reveal dt { + font-weight: bold; +} + +.reveal dd { + margin-left: 40px; +} + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: $blockMargin auto; + padding: 5px; + + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0,0,0,0.2); +} + .reveal blockquote p:first-child, + .reveal blockquote p:last-child { + display: inline-block; + } + +.reveal q { + font-style: italic; +} + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: $blockMargin auto; + + text-align: left; + font-size: 0.55em; + font-family: $codeFont; + line-height: 1.2em; + + word-wrap: break-word; + + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); +} + +.reveal code { + font-family: $codeFont; + text-transform: none; +} + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; +} + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; +} + +.reveal table th { + font-weight: bold; +} + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; +} + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; +} + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; +} + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; +} + +.reveal sup { + vertical-align: super; + font-size: smaller; +} +.reveal sub { + vertical-align: sub; + font-size: smaller; +} + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; +} + +.reveal small * { + vertical-align: top; +} + + +/********************************************* + * LINKS + *********************************************/ + +.reveal a { + color: $linkColor; + text-decoration: none; + + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; +} + .reveal a:hover { + color: $linkColorHover; + + text-shadow: none; + border: none; + } + +.reveal .roll span:after { + color: #fff; + background: darken( $linkColor, 15% ); +} + + +/********************************************* + * IMAGES + *********************************************/ + +.reveal section img { + margin: 15px 0px; + background: rgba(255,255,255,0.12); + border: 4px solid $mainColor; + + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); +} + + .reveal section img.plain { + border: 0; + box-shadow: none; + } + + .reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; + } + + .reveal a:hover img { + background: rgba(255,255,255,0.2); + border-color: $linkColor; + + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); + } + + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ + +.reveal .controls { + color: $linkColor; +} + + +/********************************************* + * PROGRESS BAR + *********************************************/ + +.reveal .progress { + background: rgba(0,0,0,0.2); + color: $linkColor; +} + .reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ + @media print { + .backgrounds { + background-color: $backgroundColor; + } +} diff --git a/anno3/avrc/assignments/dataviz/slides/css/theme/white.css b/anno3/avrc/assignments/dataviz/slides/css/theme/white.css new file mode 100644 index 0000000..43ef2c7 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/css/theme/white.css @@ -0,0 +1,273 @@ +/** + * White theme for reveal.js. This is the opposite of the 'black' theme. + * + * By Hakim El Hattab, http://hakim.se + */ +@import url(../../lib/font/source-sans-pro/source-sans-pro.css); +section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 { + color: #fff; } + +/********************************************* + * GLOBAL STYLES + *********************************************/ +body { + background: #fff; + background-color: #fff; } + +.reveal { + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-size: 42px; + font-weight: normal; + color: #222; } + +::selection { + color: #fff; + background: #98bdef; + text-shadow: none; } + +::-moz-selection { + color: #fff; + background: #98bdef; + text-shadow: none; } + +.reveal .slides section, +.reveal .slides section > section { + line-height: 1.3; + font-weight: inherit; } + +/********************************************* + * HEADERS + *********************************************/ +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, +.reveal h6 { + margin: 0 0 20px 0; + color: #222; + font-family: "Source Sans Pro", Helvetica, sans-serif; + font-weight: 600; + line-height: 1.2; + letter-spacing: normal; + text-transform: uppercase; + text-shadow: none; + word-wrap: break-word; } + +.reveal h1 { + font-size: 2.5em; } + +.reveal h2 { + font-size: 1.6em; } + +.reveal h3 { + font-size: 1.3em; } + +.reveal h4 { + font-size: 1em; } + +.reveal h1 { + text-shadow: none; } + +/********************************************* + * OTHER + *********************************************/ +.reveal p { + margin: 20px 0; + line-height: 1.3; } + +/* Ensure certain elements are never larger than the slide itself */ +.reveal img, +.reveal video, +.reveal iframe { + max-width: 95%; + max-height: 95%; } + +.reveal strong, +.reveal b { + font-weight: bold; } + +.reveal em { + font-style: italic; } + +.reveal ol, +.reveal dl, +.reveal ul { + display: inline-block; + text-align: left; + margin: 0 0 0 1em; } + +.reveal ol { + list-style-type: decimal; } + +.reveal ul { + list-style-type: disc; } + +.reveal ul ul { + list-style-type: square; } + +.reveal ul ul ul { + list-style-type: circle; } + +.reveal ul ul, +.reveal ul ol, +.reveal ol ol, +.reveal ol ul { + display: block; + margin-left: 40px; } + +.reveal dt { + font-weight: bold; } + +.reveal dd { + margin-left: 40px; } + +.reveal blockquote { + display: block; + position: relative; + width: 70%; + margin: 20px auto; + padding: 5px; + font-style: italic; + background: rgba(255, 255, 255, 0.05); + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } + +.reveal blockquote p:first-child, +.reveal blockquote p:last-child { + display: inline-block; } + +.reveal q { + font-style: italic; } + +.reveal pre { + display: block; + position: relative; + width: 90%; + margin: 20px auto; + text-align: left; + font-size: 0.55em; + font-family: monospace; + line-height: 1.2em; + word-wrap: break-word; + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } + +.reveal code { + font-family: monospace; + text-transform: none; } + +.reveal pre code { + display: block; + padding: 5px; + overflow: auto; + max-height: 400px; + word-wrap: normal; } + +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; } + +.reveal table th { + font-weight: bold; } + +.reveal table th, +.reveal table td { + text-align: left; + padding: 0.2em 0.5em 0.2em 0.5em; + border-bottom: 1px solid; } + +.reveal table th[align="center"], +.reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], +.reveal table td[align="right"] { + text-align: right; } + +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } + +.reveal sup { + vertical-align: super; + font-size: smaller; } + +.reveal sub { + vertical-align: sub; + font-size: smaller; } + +.reveal small { + display: inline-block; + font-size: 0.6em; + line-height: 1.2em; + vertical-align: top; } + +.reveal small * { + vertical-align: top; } + +/********************************************* + * LINKS + *********************************************/ +.reveal a { + color: #2a76dd; + text-decoration: none; + -webkit-transition: color .15s ease; + -moz-transition: color .15s ease; + transition: color .15s ease; } + +.reveal a:hover { + color: #6ca0e8; + text-shadow: none; + border: none; } + +.reveal .roll span:after { + color: #fff; + background: #1a53a1; } + +/********************************************* + * IMAGES + *********************************************/ +.reveal section img { + margin: 15px 0px; + background: rgba(255, 255, 255, 0.12); + border: 4px solid #222; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal section img.plain { + border: 0; + box-shadow: none; } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + transition: all .15s linear; } + +.reveal a:hover img { + background: rgba(255, 255, 255, 0.2); + border-color: #2a76dd; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } + +/********************************************* + * NAVIGATION CONTROLS + *********************************************/ +.reveal .controls { + color: #2a76dd; } + +/********************************************* + * PROGRESS BAR + *********************************************/ +.reveal .progress { + background: rgba(0, 0, 0, 0.2); + color: #2a76dd; } + +.reveal .progress span { + -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); + transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #fff; } } diff --git a/anno3/avrc/assignments/dataviz/slides/desc/trends_000.jpg b/anno3/avrc/assignments/dataviz/slides/desc/trends_000.jpg new file mode 100644 index 0000000..342c7fb Binary files /dev/null and b/anno3/avrc/assignments/dataviz/slides/desc/trends_000.jpg differ diff --git a/anno3/avrc/assignments/dataviz/slides/explanations.html b/anno3/avrc/assignments/dataviz/slides/explanations.html new file mode 100644 index 0000000..24bab62 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/explanations.html @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ ## Social Network Usage + + This plot compares the frequency of posts by two politicians **over a year**. + +
+
+ ## Word cloud + + Displays the most used words over **all posts** of a year, or **every post** considered. + +
+
+ ## Hottest cities + + An heatmap to visualize which cities have been in the spotlight. + Computed over **all posts** of a year or **every post** considered. + Geolocation data included as well. + +
+
+ ## Hottest hours + + Do politicians ever sleep? An heatmap describing the busiest hours of social media usage. + +
+
+ ## Common topics + + Stacked bar plot comparing the most influential topics **shared** by two politicians. + Computed over **all posts** of a year or **every post** considered. + +
+
+ # 🔥 + + + 🤔 Have you ever wondered how your politicians use Emojis? 🤷🏾 + + Find out the most used emojis and you can be cool too. 🤣 + + +
+
+ +
+ + + + + + + + + + diff --git a/anno3/avrc/assignments/dataviz/slides/img/arab.jpg b/anno3/avrc/assignments/dataviz/slides/img/arab.jpg new file mode 100644 index 0000000..88ce205 Binary files /dev/null and b/anno3/avrc/assignments/dataviz/slides/img/arab.jpg differ diff --git a/anno3/avrc/assignments/dataviz/slides/img/hong.jpg b/anno3/avrc/assignments/dataviz/slides/img/hong.jpg new file mode 100644 index 0000000..27704b1 Binary files /dev/null and b/anno3/avrc/assignments/dataviz/slides/img/hong.jpg differ diff --git a/anno3/avrc/assignments/dataviz/slides/img/renzi.jpg b/anno3/avrc/assignments/dataviz/slides/img/renzi.jpg new file mode 100644 index 0000000..a1b3ab7 Binary files /dev/null and b/anno3/avrc/assignments/dataviz/slides/img/renzi.jpg differ diff --git a/anno3/avrc/assignments/dataviz/slides/img/salvini.jpg b/anno3/avrc/assignments/dataviz/slides/img/salvini.jpg new file mode 100644 index 0000000..e197adf Binary files /dev/null and b/anno3/avrc/assignments/dataviz/slides/img/salvini.jpg differ diff --git a/anno3/avrc/assignments/dataviz/slides/index.html b/anno3/avrc/assignments/dataviz/slides/index.html new file mode 100644 index 0000000..f6797f4 --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/index.html @@ -0,0 +1,193 @@ + + + + + + + Datavisualization + + + + + + + + + + + + + + + + + +
+ + +
+
+

Data Visualization

+

Quantify Social Media Usage from mainstream Politicians

+

+ by Francesco Gallà and Francesco Mecca +

+
+ +
+ Social media played a significant role facilitating communication and interaction among *socially-aware* communities and participants of political protests. +
+ +
+
+ People used social media to organize demonstrations (both pro- and anti-governmental), disseminate information about their activities, and raise local and global awareness of ongoing events + + E.g. ↓ +
+
+ HTML5 Doctor Logo +

+ Stepanova, Ekaterina: "The Role of Information Communication Technologies in the "Arab Spring"

+ + +
+
+ HTML5 Doctor Logo + + Hong Kong protest in 2019 +
+
+ +
+

+ In recent years mainstream politicians strengthen their presence in social media platforms, recognizing the power of such tools.

+ + +
+ +
+ ## Our Objective + + Quantify and present data on two italian politicians, **Matteo Renzi** and **Matteo Salvini** as a first step towards an appropriate study of the behaviour of influencial politicians online. +
+ +
+ ## Dataset + + Our dataset consisted in 5370 posts by Matteo Renzi and Matteo Salvini publicly accessible on Facebook. + + The dataset was obtained by scraping using [python requests](https://2.python-requests.org/en/master/). + +
+
+ ## Main Difficulties + + Scraping Facebook is a hard task if you can't request API keys. + + * We got banned various times + * Page elements related to likes, interactions and responding users always change `id` and `class` + + For these reasons we limited the analysis to just two politicians. + +
+ +
+ * page created in September 2009 + * 959 posts from 01-01-2018 to 24-11-2019 + * Posts from 2009 to 2017 were removed by the owner of the page + * In total 79 000 € were spent on advertising the page on Facebook +
+
+ * page created in February 2013 + * 4411 posts from 28-02-2013 to 24-11-2019 + * In total 164 000 € were spent on advertising the page on Facebook +
+ +
+
+
+
+
+
+
+
+
+
+ +
+ ## Future improvements + + Consider that a post could provide different values such as: + * increase partecipation + * provide information + * grab or detract attention + +
+
+ ## Future improvements + + Focus on semantic analysis: + + * geographical data + * number of likes, shares + * rate of engagement + * sentiment analysis + * fake news detection + +
+
+ ## Network Perspective + + Model the analysis from an ego network: + + * profiles of people following a politician + * spread of relevant/fake information + * model engagement and cascading behaviour with other users + * model social influence + * understand esternalities on a macro scale + +
+
+

Thank you!

+

but if you really want more...

+
+
+
+ +
+ +
+ + + + + + + diff --git a/anno3/avrc/assignments/dataviz/slides/js/reveal.js b/anno3/avrc/assignments/dataviz/slides/js/reveal.js new file mode 100644 index 0000000..5c026db --- /dev/null +++ b/anno3/avrc/assignments/dataviz/slides/js/reveal.js @@ -0,0 +1,6028 @@ +/*! + * reveal.js + * http://revealjs.com + * MIT licensed + * + * Copyright (C) 2019 Hakim El Hattab, http://hakim.se + */ +(function( root, factory ) { + if( typeof define === 'function' && define.amd ) { + // AMD. Register as an anonymous module. + define( function() { + root.Reveal = factory(); + return root.Reveal; + } ); + } else if( typeof exports === 'object' ) { + // Node. Does not work with strict CommonJS. + module.exports = factory(); + } else { + // Browser globals. + root.Reveal = factory(); + } +}( this, function() { + + 'use strict'; + + var Reveal; + + // The reveal.js version + var VERSION = '3.8.0'; + + var SLIDES_SELECTOR = '.slides section', + HORIZONTAL_SLIDES_SELECTOR = '.slides>section', + VERTICAL_SLIDES_SELECTOR = '.slides>section.present>section', + HOME_SLIDE_SELECTOR = '.slides>section:first-of-type', + UA = navigator.userAgent, + + // Configuration defaults, can be overridden at initialization time + config = { + + // The "normal" size of the presentation, aspect ratio will be preserved + // when the presentation is scaled to fit different resolutions + width: 960, + height: 700, + + // Factor of the display size that should remain empty around the content + margin: 0.04, + + // Bounds for smallest/largest possible scale to apply to content + minScale: 0.2, + maxScale: 2.0, + + // Display presentation control arrows + controls: true, + + // Help the user learn the controls by providing hints, for example by + // bouncing the down arrow when they first encounter a vertical slide + controlsTutorial: true, + + // Determines where controls appear, "edges" or "bottom-right" + controlsLayout: 'bottom-right', + + // Visibility rule for backwards navigation arrows; "faded", "hidden" + // or "visible" + controlsBackArrows: 'faded', + + // Display a presentation progress bar + progress: true, + + // Display the page number of the current slide + // - true: Show slide number + // - false: Hide slide number + // + // Can optionally be set as a string that specifies the number formatting: + // - "h.v": Horizontal . vertical slide number (default) + // - "h/v": Horizontal / vertical slide number + // - "c": Flattened slide number + // - "c/t": Flattened slide number / total slides + // + // Alternatively, you can provide a function that returns the slide + // number for the current slide. The function needs to return an array + // with one string [slideNumber] or three strings [n1,delimiter,n2]. + // See #formatSlideNumber(). + slideNumber: false, + + // Can be used to limit the contexts in which the slide number appears + // - "all": Always show the slide number + // - "print": Only when printing to PDF + // - "speaker": Only in the speaker view + showSlideNumber: 'all', + + // Use 1 based indexing for # links to match slide number (default is zero + // based) + hashOneBasedIndex: false, + + // Add the current slide number to the URL hash so that reloading the + // page/copying the URL will return you to the same slide + hash: false, + + // Push each slide change to the browser history. Implies `hash: true` + history: false, + + // Enable keyboard shortcuts for navigation + keyboard: true, + + // Optional function that blocks keyboard events when retuning false + keyboardCondition: null, + + // Enable the slide overview mode + overview: true, + + // Disables the default reveal.js slide layout so that you can use + // custom CSS layout + disableLayout: false, + + // Vertical centering of slides + center: true, + + // Enables touch navigation on devices with touch input + touch: true, + + // Loop the presentation + loop: false, + + // Change the presentation direction to be RTL + rtl: false, + + // Changes the behavior of our navigation directions. + // + // "default" + // Left/right arrow keys step between horizontal slides, up/down + // arrow keys step between vertical slides. Space key steps through + // all slides (both horizontal and vertical). + // + // "linear" + // Removes the up/down arrows. Left/right arrows step through all + // slides (both horizontal and vertical). + // + // "grid" + // When this is enabled, stepping left/right from a vertical stack + // to an adjacent vertical stack will land you at the same vertical + // index. + // + // Consider a deck with six slides ordered in two vertical stacks: + // 1.1 2.1 + // 1.2 2.2 + // 1.3 2.3 + // + // If you're on slide 1.3 and navigate right, you will normally move + // from 1.3 -> 2.1. If "grid" is used, the same navigation takes you + // from 1.3 -> 2.3. + navigationMode: 'default', + + // Randomizes the order of slides each time the presentation loads + shuffle: false, + + // Turns fragments on and off globally + fragments: true, + + // Flags whether to include the current fragment in the URL, + // so that reloading brings you to the same fragment position + fragmentInURL: false, + + // Flags if the presentation is running in an embedded mode, + // i.e. contained within a limited portion of the screen + embedded: false, + + // Flags if we should show a help overlay when the question-mark + // key is pressed + help: true, + + // Flags if it should be possible to pause the presentation (blackout) + pause: true, + + // Flags if speaker notes should be visible to all viewers + showNotes: false, + + // Global override for autolaying embedded media (video/audio/iframe) + // - null: Media will only autoplay if data-autoplay is present + // - true: All media will autoplay, regardless of individual setting + // - false: No media will autoplay, regardless of individual setting + autoPlayMedia: null, + + // Global override for preloading lazy-loaded iframes + // - null: Iframes with data-src AND data-preload will be loaded when within + // the viewDistance, iframes with only data-src will be loaded when visible + // - true: All iframes with data-src will be loaded when within the viewDistance + // - false: All iframes with data-src will be loaded only when visible + preloadIframes: null, + + // Controls automatic progression to the next slide + // - 0: Auto-sliding only happens if the data-autoslide HTML attribute + // is present on the current slide or fragment + // - 1+: All slides will progress automatically at the given interval + // - false: No auto-sliding, even if data-autoslide is present + autoSlide: 0, + + // Stop auto-sliding after user input + autoSlideStoppable: true, + + // Use this method for navigation when auto-sliding (defaults to navigateNext) + autoSlideMethod: null, + + // Specify the average time in seconds that you think you will spend + // presenting each slide. This is used to show a pacing timer in the + // speaker view + defaultTiming: null, + + // Enable slide navigation via mouse wheel + mouseWheel: false, + + // Apply a 3D roll to links on hover + rollingLinks: false, + + // Hides the address bar on mobile devices + hideAddressBar: true, + + // Opens links in an iframe preview overlay + // Add `data-preview-link` and `data-preview-link="false"` to customise each link + // individually + previewLinks: false, + + // Exposes the reveal.js API through window.postMessage + postMessage: true, + + // Dispatches all reveal.js events to the parent window through postMessage + postMessageEvents: false, + + // Focuses body when page changes visibility to ensure keyboard shortcuts work + focusBodyOnPageVisibilityChange: true, + + // Transition style + transition: 'slide', // none/fade/slide/convex/concave/zoom + + // Transition speed + transitionSpeed: 'default', // default/fast/slow + + // Transition style for full page slide backgrounds + backgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom + + // Parallax background image + parallaxBackgroundImage: '', // CSS syntax, e.g. "a.jpg" + + // Parallax background size + parallaxBackgroundSize: '', // CSS syntax, e.g. "3000px 2000px" + + // Parallax background repeat + parallaxBackgroundRepeat: '', // repeat/repeat-x/repeat-y/no-repeat/initial/inherit + + // Parallax background position + parallaxBackgroundPosition: '', // CSS syntax, e.g. "top left" + + // Amount of pixels to move the parallax background per slide step + parallaxBackgroundHorizontal: null, + parallaxBackgroundVertical: null, + + // The maximum number of pages a single slide can expand onto when printing + // to PDF, unlimited by default + pdfMaxPagesPerSlide: Number.POSITIVE_INFINITY, + + // Prints each fragment on a separate slide + pdfSeparateFragments: true, + + // Offset used to reduce the height of content within exported PDF pages. + // This exists to account for environment differences based on how you + // print to PDF. CLI printing options, like phantomjs and wkpdf, can end + // on precisely the total height of the document whereas in-browser + // printing has to end one pixel before. + pdfPageHeightOffset: -1, + + // Number of slides away from the current that are visible + viewDistance: 3, + + // The display mode that will be used to show slides + display: 'block', + + // Hide cursor if inactive + hideInactiveCursor: true, + + // Time before the cursor is hidden (in ms) + hideCursorTime: 5000, + + // Script dependencies to load + dependencies: [] + + }, + + // Flags if Reveal.initialize() has been called + initialized = false, + + // Flags if reveal.js is loaded (has dispatched the 'ready' event) + loaded = false, + + // Flags if the overview mode is currently active + overview = false, + + // Holds the dimensions of our overview slides, including margins + overviewSlideWidth = null, + overviewSlideHeight = null, + + // The horizontal and vertical index of the currently active slide + indexh, + indexv, + + // The previous and current slide HTML elements + previousSlide, + currentSlide, + + previousBackground, + + // Remember which directions that the user has navigated towards + hasNavigatedRight = false, + hasNavigatedDown = false, + + // Slides may hold a data-state attribute which we pick up and apply + // as a class to the body. This list contains the combined state of + // all current slides. + state = [], + + // The current scale of the presentation (see width/height config) + scale = 1, + + // CSS transform that is currently applied to the slides container, + // split into two groups + slidesTransform = { layout: '', overview: '' }, + + // Cached references to DOM elements + dom = {}, + + // A list of registered reveal.js plugins + plugins = {}, + + // List of asynchronously loaded reveal.js dependencies + asyncDependencies = [], + + // Features supported by the browser, see #checkCapabilities() + features = {}, + + // Client is a mobile device, see #checkCapabilities() + isMobileDevice, + + // Client is a desktop Chrome, see #checkCapabilities() + isChrome, + + // Throttles mouse wheel navigation + lastMouseWheelStep = 0, + + // Delays updates to the URL due to a Chrome thumbnailer bug + writeURLTimeout = 0, + + // Is the mouse pointer currently hidden from view + cursorHidden = false, + + // Timeout used to determine when the cursor is inactive + cursorInactiveTimeout = 0, + + // Flags if the interaction event listeners are bound + eventsAreBound = false, + + // The current auto-slide duration + autoSlide = 0, + + // Auto slide properties + autoSlidePlayer, + autoSlideTimeout = 0, + autoSlideStartTime = -1, + autoSlidePaused = false, + + // Holds information about the currently ongoing touch input + touch = { + startX: 0, + startY: 0, + startCount: 0, + captured: false, + threshold: 40 + }, + + // A key:value map of shortcut keyboard keys and descriptions of + // the actions they trigger, generated in #configure() + keyboardShortcuts = {}, + + // Holds custom key code mappings + registeredKeyBindings = {}; + + /** + * Starts up the presentation if the client is capable. + */ + function initialize( options ) { + + // Make sure we only initialize once + if( initialized === true ) return; + + initialized = true; + + checkCapabilities(); + + if( !features.transforms2d && !features.transforms3d ) { + document.body.setAttribute( 'class', 'no-transforms' ); + + // Since JS won't be running any further, we load all lazy + // loading elements upfront + var images = toArray( document.getElementsByTagName( 'img' ) ), + iframes = toArray( document.getElementsByTagName( 'iframe' ) ); + + var lazyLoadable = images.concat( iframes ); + + for( var i = 0, len = lazyLoadable.length; i < len; i++ ) { + var element = lazyLoadable[i]; + if( element.getAttribute( 'data-src' ) ) { + element.setAttribute( 'src', element.getAttribute( 'data-src' ) ); + element.removeAttribute( 'data-src' ); + } + } + + // If the browser doesn't support core features we won't be + // using JavaScript to control the presentation + return; + } + + // Cache references to key DOM elements + dom.wrapper = document.querySelector( '.reveal' ); + dom.slides = document.querySelector( '.reveal .slides' ); + + // Force a layout when the whole page, incl fonts, has loaded + window.addEventListener( 'load', layout, false ); + + var query = Reveal.getQueryHash(); + + // Do not accept new dependencies via query config to avoid + // the potential of malicious script injection + if( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies']; + + // Copy options over to our config object + extend( config, options ); + extend( config, query ); + + // Hide the address bar in mobile browsers + hideAddressBar(); + + // Loads dependencies and continues to #start() once done + load(); + + } + + /** + * Inspect the client to see what it's capable of, this + * should only happens once per runtime. + */ + function checkCapabilities() { + + isMobileDevice = /(iphone|ipod|ipad|android)/gi.test( UA ); + isChrome = /chrome/i.test( UA ) && !/edge/i.test( UA ); + + var testElement = document.createElement( 'div' ); + + features.transforms3d = 'WebkitPerspective' in testElement.style || + 'MozPerspective' in testElement.style || + 'msPerspective' in testElement.style || + 'OPerspective' in testElement.style || + 'perspective' in testElement.style; + + features.transforms2d = 'WebkitTransform' in testElement.style || + 'MozTransform' in testElement.style || + 'msTransform' in testElement.style || + 'OTransform' in testElement.style || + 'transform' in testElement.style; + + features.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame; + features.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function'; + + features.canvas = !!document.createElement( 'canvas' ).getContext; + + // Transitions in the overview are disabled in desktop and + // Safari due to lag + features.overviewTransitions = !/Version\/[\d\.]+.*Safari/.test( UA ); + + // Flags if we should use zoom instead of transform to scale + // up slides. Zoom produces crisper results but has a lot of + // xbrowser quirks so we only use it in whitelsited browsers. + features.zoom = 'zoom' in testElement.style && !isMobileDevice && + ( isChrome || /Version\/[\d\.]+.*Safari/.test( UA ) ); + + } + + /** + * Loads the dependencies of reveal.js. Dependencies are + * defined via the configuration option 'dependencies' + * and will be loaded prior to starting/binding reveal.js. + * Some dependencies may have an 'async' flag, if so they + * will load after reveal.js has been started up. + */ + function load() { + + var scripts = [], + scriptsToLoad = 0; + + config.dependencies.forEach( function( s ) { + // Load if there's no condition or the condition is truthy + if( !s.condition || s.condition() ) { + if( s.async ) { + asyncDependencies.push( s ); + } + else { + scripts.push( s ); + } + } + } ); + + if( scripts.length ) { + scriptsToLoad = scripts.length; + + // Load synchronous scripts + scripts.forEach( function( s ) { + loadScript( s.src, function() { + + if( typeof s.callback === 'function' ) s.callback(); + + if( --scriptsToLoad === 0 ) { + initPlugins(); + } + + } ); + } ); + } + else { + initPlugins(); + } + + } + + /** + * Initializes our plugins and waits for them to be ready + * before proceeding. + */ + function initPlugins() { + + var pluginsToInitialize = Object.keys( plugins ).length; + + // If there are no plugins, skip this step + if( pluginsToInitialize === 0 ) { + loadAsyncDependencies(); + } + // ... otherwise initialize plugins + else { + + var afterPlugInitialized = function() { + if( --pluginsToInitialize === 0 ) { + loadAsyncDependencies(); + } + }; + + for( var i in plugins ) { + + var plugin = plugins[i]; + + // If the plugin has an 'init' method, invoke it + if( typeof plugin.init === 'function' ) { + var callback = plugin.init(); + + // If the plugin returned a Promise, wait for it + if( callback && typeof callback.then === 'function' ) { + callback.then( afterPlugInitialized ); + } + else { + afterPlugInitialized(); + } + } + else { + afterPlugInitialized(); + } + + } + + } + + } + + /** + * Loads all async reveal.js dependencies. + */ + function loadAsyncDependencies() { + + if( asyncDependencies.length ) { + asyncDependencies.forEach( function( s ) { + loadScript( s.src, s.callback ); + } ); + } + + start(); + + } + + /** + * Loads a JavaScript file from the given URL and executes it. + * + * @param {string} url Address of the .js file to load + * @param {function} callback Method to invoke when the script + * has loaded and executed + */ + function loadScript( url, callback ) { + + var script = document.createElement( 'script' ); + script.type = 'text/javascript'; + script.async = false; + script.defer = false; + script.src = url; + + if( callback ) { + + // Success callback + script.onload = script.onreadystatechange = function( event ) { + if( event.type === "load" || (/loaded|complete/.test( script.readyState ) ) ) { + + // Kill event listeners + script.onload = script.onreadystatechange = script.onerror = null; + + callback(); + + } + }; + + // Error callback + script.onerror = function( err ) { + + // Kill event listeners + script.onload = script.onreadystatechange = script.onerror = null; + + callback( new Error( 'Failed loading script: ' + script.src + '\n' + err) ); + + }; + + } + + // Append the script at the end of + var head = document.querySelector( 'head' ); + head.insertBefore( script, head.lastChild ); + + } + + /** + * Starts up reveal.js by binding input events and navigating + * to the current URL deeplink if there is one. + */ + function start() { + + loaded = true; + + // Make sure we've got all the DOM elements we need + setupDOM(); + + // Listen to messages posted to this window + setupPostMessage(); + + // Prevent the slides from being scrolled out of view + setupScrollPrevention(); + + // Resets all vertical slides so that only the first is visible + resetVerticalSlides(); + + // Updates the presentation to match the current configuration values + configure(); + + // Read the initial hash + readURL(); + + // Update all backgrounds + updateBackground( true ); + + // Notify listeners that the presentation is ready but use a 1ms + // timeout to ensure it's not fired synchronously after #initialize() + setTimeout( function() { + // Enable transitions now that we're loaded + dom.slides.classList.remove( 'no-transition' ); + + dom.wrapper.classList.add( 'ready' ); + + dispatchEvent( 'ready', { + 'indexh': indexh, + 'indexv': indexv, + 'currentSlide': currentSlide + } ); + }, 1 ); + + // Special setup and config is required when printing to PDF + if( isPrintingPDF() ) { + removeEventListeners(); + + // The document needs to have loaded for the PDF layout + // measurements to be accurate + if( document.readyState === 'complete' ) { + setupPDF(); + } + else { + window.addEventListener( 'load', setupPDF ); + } + } + + } + + /** + * Finds and stores references to DOM elements which are + * required by the presentation. If a required element is + * not found, it is created. + */ + function setupDOM() { + + // Prevent transitions while we're loading + dom.slides.classList.add( 'no-transition' ); + + if( isMobileDevice ) { + dom.wrapper.classList.add( 'no-hover' ); + } + else { + dom.wrapper.classList.remove( 'no-hover' ); + } + + if( /iphone/gi.test( UA ) ) { + dom.wrapper.classList.add( 'ua-iphone' ); + } + else { + dom.wrapper.classList.remove( 'ua-iphone' ); + } + + // Background element + dom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null ); + + // Progress bar + dom.progress = createSingletonNode( dom.wrapper, 'div', 'progress', '' ); + dom.progressbar = dom.progress.querySelector( 'span' ); + + // Arrow controls + dom.controls = createSingletonNode( dom.wrapper, 'aside', 'controls', + '' + + '' + + '' + + '' ); + + // Slide number + dom.slideNumber = createSingletonNode( dom.wrapper, 'div', 'slide-number', '' ); + + // Element containing notes that are visible to the audience + dom.speakerNotes = createSingletonNode( dom.wrapper, 'div', 'speaker-notes', null ); + dom.speakerNotes.setAttribute( 'data-prevent-swipe', '' ); + dom.speakerNotes.setAttribute( 'tabindex', '0' ); + + // Overlay graphic which is displayed during the paused mode + dom.pauseOverlay = createSingletonNode( dom.wrapper, 'div', 'pause-overlay', config.controls ? '' : null ); + + dom.wrapper.setAttribute( 'role', 'application' ); + + // There can be multiple instances of controls throughout the page + dom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) ); + dom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) ); + dom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) ); + dom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) ); + dom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) ); + dom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) ); + + // The right and down arrows in the standard reveal.js controls + dom.controlsRightArrow = dom.controls.querySelector( '.navigate-right' ); + dom.controlsDownArrow = dom.controls.querySelector( '.navigate-down' ); + + dom.statusDiv = createStatusDiv(); + } + + /** + * Creates a hidden div with role aria-live to announce the + * current slide content. Hide the div off-screen to make it + * available only to Assistive Technologies. + * + * @return {HTMLElement} + */ + function createStatusDiv() { + + var statusDiv = document.getElementById( 'aria-status-div' ); + if( !statusDiv ) { + statusDiv = document.createElement( 'div' ); + statusDiv.style.position = 'absolute'; + statusDiv.style.height = '1px'; + statusDiv.style.width = '1px'; + statusDiv.style.overflow = 'hidden'; + statusDiv.style.clip = 'rect( 1px, 1px, 1px, 1px )'; + statusDiv.setAttribute( 'id', 'aria-status-div' ); + statusDiv.setAttribute( 'aria-live', 'polite' ); + statusDiv.setAttribute( 'aria-atomic','true' ); + dom.wrapper.appendChild( statusDiv ); + } + return statusDiv; + + } + + /** + * Converts the given HTML element into a string of text + * that can be announced to a screen reader. Hidden + * elements are excluded. + */ + function getStatusText( node ) { + + var text = ''; + + // Text node + if( node.nodeType === 3 ) { + text += node.textContent; + } + // Element node + else if( node.nodeType === 1 ) { + + var isAriaHidden = node.getAttribute( 'aria-hidden' ); + var isDisplayHidden = window.getComputedStyle( node )['display'] === 'none'; + if( isAriaHidden !== 'true' && !isDisplayHidden ) { + + toArray( node.childNodes ).forEach( function( child ) { + text += getStatusText( child ); + } ); + + } + + } + + return text; + + } + + /** + * Configures the presentation for printing to a static + * PDF. + */ + function setupPDF() { + + var slideSize = getComputedSlideSize( window.innerWidth, window.innerHeight ); + + // Dimensions of the PDF pages + var pageWidth = Math.floor( slideSize.width * ( 1 + config.margin ) ), + pageHeight = Math.floor( slideSize.height * ( 1 + config.margin ) ); + + // Dimensions of slides within the pages + var slideWidth = slideSize.width, + slideHeight = slideSize.height; + + // Let the browser know what page size we want to print + injectStyleSheet( '@page{size:'+ pageWidth +'px '+ pageHeight +'px; margin: 0px;}' ); + + // Limit the size of certain elements to the dimensions of the slide + injectStyleSheet( '.reveal section>img, .reveal section>video, .reveal section>iframe{max-width: '+ slideWidth +'px; max-height:'+ slideHeight +'px}' ); + + document.body.classList.add( 'print-pdf' ); + document.body.style.width = pageWidth + 'px'; + document.body.style.height = pageHeight + 'px'; + + // Make sure stretch elements fit on slide + layoutSlideContents( slideWidth, slideHeight ); + + // Add each slide's index as attributes on itself, we need these + // indices to generate slide numbers below + toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) { + hslide.setAttribute( 'data-index-h', h ); + + if( hslide.classList.contains( 'stack' ) ) { + toArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) { + vslide.setAttribute( 'data-index-h', h ); + vslide.setAttribute( 'data-index-v', v ); + } ); + } + } ); + + // Slide and slide background layout + toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) { + + // Vertical stacks are not centred since their section + // children will be + if( slide.classList.contains( 'stack' ) === false ) { + // Center the slide inside of the page, giving the slide some margin + var left = ( pageWidth - slideWidth ) / 2, + top = ( pageHeight - slideHeight ) / 2; + + var contentHeight = slide.scrollHeight; + var numberOfPages = Math.max( Math.ceil( contentHeight / pageHeight ), 1 ); + + // Adhere to configured pages per slide limit + numberOfPages = Math.min( numberOfPages, config.pdfMaxPagesPerSlide ); + + // Center slides vertically + if( numberOfPages === 1 && config.center || slide.classList.contains( 'center' ) ) { + top = Math.max( ( pageHeight - contentHeight ) / 2, 0 ); + } + + // Wrap the slide in a page element and hide its overflow + // so that no page ever flows onto another + var page = document.createElement( 'div' ); + page.className = 'pdf-page'; + page.style.height = ( ( pageHeight + config.pdfPageHeightOffset ) * numberOfPages ) + 'px'; + slide.parentNode.insertBefore( page, slide ); + page.appendChild( slide ); + + // Position the slide inside of the page + slide.style.left = left + 'px'; + slide.style.top = top + 'px'; + slide.style.width = slideWidth + 'px'; + + if( slide.slideBackgroundElement ) { + page.insertBefore( slide.slideBackgroundElement, slide ); + } + + // Inject notes if `showNotes` is enabled + if( config.showNotes ) { + + // Are there notes for this slide? + var notes = getSlideNotes( slide ); + if( notes ) { + + var notesSpacing = 8; + var notesLayout = typeof config.showNotes === 'string' ? config.showNotes : 'inline'; + var notesElement = document.createElement( 'div' ); + notesElement.classList.add( 'speaker-notes' ); + notesElement.classList.add( 'speaker-notes-pdf' ); + notesElement.setAttribute( 'data-layout', notesLayout ); + notesElement.innerHTML = notes; + + if( notesLayout === 'separate-page' ) { + page.parentNode.insertBefore( notesElement, page.nextSibling ); + } + else { + notesElement.style.left = notesSpacing + 'px'; + notesElement.style.bottom = notesSpacing + 'px'; + notesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px'; + page.appendChild( notesElement ); + } + + } + + } + + // Inject slide numbers if `slideNumbers` are enabled + if( config.slideNumber && /all|print/i.test( config.showSlideNumber ) ) { + var slideNumberH = parseInt( slide.getAttribute( 'data-index-h' ), 10 ) + 1, + slideNumberV = parseInt( slide.getAttribute( 'data-index-v' ), 10 ) + 1; + + var numberElement = document.createElement( 'div' ); + numberElement.classList.add( 'slide-number' ); + numberElement.classList.add( 'slide-number-pdf' ); + numberElement.innerHTML = formatSlideNumber( slideNumberH, '.', slideNumberV ); + page.appendChild( numberElement ); + } + + // Copy page and show fragments one after another + if( config.pdfSeparateFragments ) { + + // Each fragment 'group' is an array containing one or more + // fragments. Multiple fragments that appear at the same time + // are part of the same group. + var fragmentGroups = sortFragments( page.querySelectorAll( '.fragment' ), true ); + + var previousFragmentStep; + var previousPage; + + fragmentGroups.forEach( function( fragments ) { + + // Remove 'current-fragment' from the previous group + if( previousFragmentStep ) { + previousFragmentStep.forEach( function( fragment ) { + fragment.classList.remove( 'current-fragment' ); + } ); + } + + // Show the fragments for the current index + fragments.forEach( function( fragment ) { + fragment.classList.add( 'visible', 'current-fragment' ); + } ); + + // Create a separate page for the current fragment state + var clonedPage = page.cloneNode( true ); + page.parentNode.insertBefore( clonedPage, ( previousPage || page ).nextSibling ); + + previousFragmentStep = fragments; + previousPage = clonedPage; + + } ); + + // Reset the first/original page so that all fragments are hidden + fragmentGroups.forEach( function( fragments ) { + fragments.forEach( function( fragment ) { + fragment.classList.remove( 'visible', 'current-fragment' ); + } ); + } ); + + } + // Show all fragments + else { + toArray( page.querySelectorAll( '.fragment:not(.fade-out)' ) ).forEach( function( fragment ) { + fragment.classList.add( 'visible' ); + } ); + } + + } + + } ); + + // Notify subscribers that the PDF layout is good to go + dispatchEvent( 'pdf-ready' ); + + } + + /** + * This is an unfortunate necessity. Some actions – such as + * an input field being focused in an iframe or using the + * keyboard to expand text selection beyond the bounds of + * a slide – can trigger our content to be pushed out of view. + * This scrolling can not be prevented by hiding overflow in + * CSS (we already do) so we have to resort to repeatedly + * checking if the slides have been offset :( + */ + function setupScrollPrevention() { + + setInterval( function() { + if( dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) { + dom.wrapper.scrollTop = 0; + dom.wrapper.scrollLeft = 0; + } + }, 1000 ); + + } + + /** + * Creates an HTML element and returns a reference to it. + * If the element already exists the existing instance will + * be returned. + * + * @param {HTMLElement} container + * @param {string} tagname + * @param {string} classname + * @param {string} innerHTML + * + * @return {HTMLElement} + */ + function createSingletonNode( container, tagname, classname, innerHTML ) { + + // Find all nodes matching the description + var nodes = container.querySelectorAll( '.' + classname ); + + // Check all matches to find one which is a direct child of + // the specified container + for( var i = 0; i < nodes.length; i++ ) { + var testNode = nodes[i]; + if( testNode.parentNode === container ) { + return testNode; + } + } + + // If no node was found, create it now + var node = document.createElement( tagname ); + node.className = classname; + if( typeof innerHTML === 'string' ) { + node.innerHTML = innerHTML; + } + container.appendChild( node ); + + return node; + + } + + /** + * Creates the slide background elements and appends them + * to the background container. One element is created per + * slide no matter if the given slide has visible background. + */ + function createBackgrounds() { + + var printMode = isPrintingPDF(); + + // Clear prior backgrounds + dom.background.innerHTML = ''; + dom.background.classList.add( 'no-transition' ); + + // Iterate over all horizontal slides + toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( slideh ) { + + var backgroundStack = createBackground( slideh, dom.background ); + + // Iterate over all vertical slides + toArray( slideh.querySelectorAll( 'section' ) ).forEach( function( slidev ) { + + createBackground( slidev, backgroundStack ); + + backgroundStack.classList.add( 'stack' ); + + } ); + + } ); + + // Add parallax background if specified + if( config.parallaxBackgroundImage ) { + + dom.background.style.backgroundImage = 'url("' + config.parallaxBackgroundImage + '")'; + dom.background.style.backgroundSize = config.parallaxBackgroundSize; + dom.background.style.backgroundRepeat = config.parallaxBackgroundRepeat; + dom.background.style.backgroundPosition = config.parallaxBackgroundPosition; + + // Make sure the below properties are set on the element - these properties are + // needed for proper transitions to be set on the element via CSS. To remove + // annoying background slide-in effect when the presentation starts, apply + // these properties after short time delay + setTimeout( function() { + dom.wrapper.classList.add( 'has-parallax-background' ); + }, 1 ); + + } + else { + + dom.background.style.backgroundImage = ''; + dom.wrapper.classList.remove( 'has-parallax-background' ); + + } + + } + + /** + * Creates a background for the given slide. + * + * @param {HTMLElement} slide + * @param {HTMLElement} container The element that the background + * should be appended to + * @return {HTMLElement} New background div + */ + function createBackground( slide, container ) { + + + // Main slide background element + var element = document.createElement( 'div' ); + element.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' ); + + // Inner background element that wraps images/videos/iframes + var contentElement = document.createElement( 'div' ); + contentElement.className = 'slide-background-content'; + + element.appendChild( contentElement ); + container.appendChild( element ); + + slide.slideBackgroundElement = element; + slide.slideBackgroundContentElement = contentElement; + + // Syncs the background to reflect all current background settings + syncBackground( slide ); + + return element; + + } + + /** + * Renders all of the visual properties of a slide background + * based on the various background attributes. + * + * @param {HTMLElement} slide + */ + function syncBackground( slide ) { + + var element = slide.slideBackgroundElement, + contentElement = slide.slideBackgroundContentElement; + + // Reset the prior background state in case this is not the + // initial sync + slide.classList.remove( 'has-dark-background' ); + slide.classList.remove( 'has-light-background' ); + + element.removeAttribute( 'data-loaded' ); + element.removeAttribute( 'data-background-hash' ); + element.removeAttribute( 'data-background-size' ); + element.removeAttribute( 'data-background-transition' ); + element.style.backgroundColor = ''; + + contentElement.style.backgroundSize = ''; + contentElement.style.backgroundRepeat = ''; + contentElement.style.backgroundPosition = ''; + contentElement.style.backgroundImage = ''; + contentElement.style.opacity = ''; + contentElement.innerHTML = ''; + + var data = { + background: slide.getAttribute( 'data-background' ), + backgroundSize: slide.getAttribute( 'data-background-size' ), + backgroundImage: slide.getAttribute( 'data-background-image' ), + backgroundVideo: slide.getAttribute( 'data-background-video' ), + backgroundIframe: slide.getAttribute( 'data-background-iframe' ), + backgroundColor: slide.getAttribute( 'data-background-color' ), + backgroundRepeat: slide.getAttribute( 'data-background-repeat' ), + backgroundPosition: slide.getAttribute( 'data-background-position' ), + backgroundTransition: slide.getAttribute( 'data-background-transition' ), + backgroundOpacity: slide.getAttribute( 'data-background-opacity' ) + }; + + if( data.background ) { + // Auto-wrap image urls in url(...) + if( /^(http|file|\/\/)/gi.test( data.background ) || /\.(svg|png|jpg|jpeg|gif|bmp)([?#\s]|$)/gi.test( data.background ) ) { + slide.setAttribute( 'data-background-image', data.background ); + } + else { + element.style.background = data.background; + } + } + + // Create a hash for this combination of background settings. + // This is used to determine when two slide backgrounds are + // the same. + if( data.background || data.backgroundColor || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) { + element.setAttribute( 'data-background-hash', data.background + + data.backgroundSize + + data.backgroundImage + + data.backgroundVideo + + data.backgroundIframe + + data.backgroundColor + + data.backgroundRepeat + + data.backgroundPosition + + data.backgroundTransition + + data.backgroundOpacity ); + } + + // Additional and optional background properties + if( data.backgroundSize ) element.setAttribute( 'data-background-size', data.backgroundSize ); + if( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor; + if( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition ); + + // Background image options are set on the content wrapper + if( data.backgroundSize ) contentElement.style.backgroundSize = data.backgroundSize; + if( data.backgroundRepeat ) contentElement.style.backgroundRepeat = data.backgroundRepeat; + if( data.backgroundPosition ) contentElement.style.backgroundPosition = data.backgroundPosition; + if( data.backgroundOpacity ) contentElement.style.opacity = data.backgroundOpacity; + + // If this slide has a background color, we add a class that + // signals if it is light or dark. If the slide has no background + // color, no class will be added + var contrastColor = data.backgroundColor; + + // If no bg color was found, check the computed background + if( !contrastColor ) { + var computedBackgroundStyle = window.getComputedStyle( element ); + if( computedBackgroundStyle && computedBackgroundStyle.backgroundColor ) { + contrastColor = computedBackgroundStyle.backgroundColor; + } + } + + if( contrastColor ) { + var rgb = colorToRgb( contrastColor ); + + // Ignore fully transparent backgrounds. Some browsers return + // rgba(0,0,0,0) when reading the computed background color of + // an element with no background + if( rgb && rgb.a !== 0 ) { + if( colorBrightness( contrastColor ) < 128 ) { + slide.classList.add( 'has-dark-background' ); + } + else { + slide.classList.add( 'has-light-background' ); + } + } + } + + } + + /** + * Registers a listener to postMessage events, this makes it + * possible to call all reveal.js API methods from another + * window. For example: + * + * revealWindow.postMessage( JSON.stringify({ + * method: 'slide', + * args: [ 2 ] + * }), '*' ); + */ + function setupPostMessage() { + + if( config.postMessage ) { + window.addEventListener( 'message', function ( event ) { + var data = event.data; + + // Make sure we're dealing with JSON + if( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) { + data = JSON.parse( data ); + + // Check if the requested method can be found + if( data.method && typeof Reveal[data.method] === 'function' ) { + Reveal[data.method].apply( Reveal, data.args ); + } + } + }, false ); + } + + } + + /** + * Applies the configuration settings from the config + * object. May be called multiple times. + * + * @param {object} options + */ + function configure( options ) { + + var oldTransition = config.transition; + + // New config options may be passed when this method + // is invoked through the API after initialization + if( typeof options === 'object' ) extend( config, options ); + + // Abort if reveal.js hasn't finished loading, config + // changes will be applied automatically once loading + // finishes + if( loaded === false ) return; + + var numberOfSlides = dom.wrapper.querySelectorAll( SLIDES_SELECTOR ).length; + + // Remove the previously configured transition class + dom.wrapper.classList.remove( oldTransition ); + + // Force linear transition based on browser capabilities + if( features.transforms3d === false ) config.transition = 'linear'; + + dom.wrapper.classList.add( config.transition ); + + dom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed ); + dom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition ); + + dom.controls.style.display = config.controls ? 'block' : 'none'; + dom.progress.style.display = config.progress ? 'block' : 'none'; + + dom.controls.setAttribute( 'data-controls-layout', config.controlsLayout ); + dom.controls.setAttribute( 'data-controls-back-arrows', config.controlsBackArrows ); + + if( config.shuffle ) { + shuffle(); + } + + if( config.rtl ) { + dom.wrapper.classList.add( 'rtl' ); + } + else { + dom.wrapper.classList.remove( 'rtl' ); + } + + if( config.center ) { + dom.wrapper.classList.add( 'center' ); + } + else { + dom.wrapper.classList.remove( 'center' ); + } + + // Exit the paused mode if it was configured off + if( config.pause === false ) { + resume(); + } + + if( config.showNotes ) { + dom.speakerNotes.setAttribute( 'data-layout', typeof config.showNotes === 'string' ? config.showNotes : 'inline' ); + } + + if( config.mouseWheel ) { + document.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF + document.addEventListener( 'mousewheel', onDocumentMouseScroll, false ); + } + else { + document.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF + document.removeEventListener( 'mousewheel', onDocumentMouseScroll, false ); + } + + // Rolling 3D links + if( config.rollingLinks ) { + enableRollingLinks(); + } + else { + disableRollingLinks(); + } + + // Auto-hide the mouse pointer when its inactive + if( config.hideInactiveCursor ) { + document.addEventListener( 'mousemove', onDocumentCursorActive, false ); + document.addEventListener( 'mousedown', onDocumentCursorActive, false ); + } + else { + showCursor(); + + document.removeEventListener( 'mousemove', onDocumentCursorActive, false ); + document.removeEventListener( 'mousedown', onDocumentCursorActive, false ); + } + + // Iframe link previews + if( config.previewLinks ) { + enablePreviewLinks(); + disablePreviewLinks( '[data-preview-link=false]' ); + } + else { + disablePreviewLinks(); + enablePreviewLinks( '[data-preview-link]:not([data-preview-link=false])' ); + } + + // Remove existing auto-slide controls + if( autoSlidePlayer ) { + autoSlidePlayer.destroy(); + autoSlidePlayer = null; + } + + // Generate auto-slide controls if needed + if( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) { + autoSlidePlayer = new Playback( dom.wrapper, function() { + return Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 ); + } ); + + autoSlidePlayer.on( 'click', onAutoSlidePlayerClick ); + autoSlidePaused = false; + } + + // When fragments are turned off they should be visible + if( config.fragments === false ) { + toArray( dom.slides.querySelectorAll( '.fragment' ) ).forEach( function( element ) { + element.classList.add( 'visible' ); + element.classList.remove( 'current-fragment' ); + } ); + } + + // Slide numbers + var slideNumberDisplay = 'none'; + if( config.slideNumber && !isPrintingPDF() ) { + if( config.showSlideNumber === 'all' ) { + slideNumberDisplay = 'block'; + } + else if( config.showSlideNumber === 'speaker' && isSpeakerNotes() ) { + slideNumberDisplay = 'block'; + } + } + + dom.slideNumber.style.display = slideNumberDisplay; + + // Add the navigation mode to the DOM so we can adjust styling + if( config.navigationMode !== 'default' ) { + dom.wrapper.setAttribute( 'data-navigation-mode', config.navigationMode ); + } + else { + dom.wrapper.removeAttribute( 'data-navigation-mode' ); + } + + // Define our contextual list of keyboard shortcuts + if( config.navigationMode === 'linear' ) { + keyboardShortcuts['→ , ↓ , SPACE , N , L , J'] = 'Next slide'; + keyboardShortcuts['← , ↑ , P , H , K'] = 'Previous slide'; + } + else { + keyboardShortcuts['N , SPACE'] = 'Next slide'; + keyboardShortcuts['P'] = 'Previous slide'; + keyboardShortcuts['← , H'] = 'Navigate left'; + keyboardShortcuts['→ , L'] = 'Navigate right'; + keyboardShortcuts['↑ , K'] = 'Navigate up'; + keyboardShortcuts['↓ , J'] = 'Navigate down'; + } + + keyboardShortcuts['Home , ⌘/CTRL ←'] = 'First slide'; + keyboardShortcuts['End , ⌘/CTRL →'] = 'Last slide'; + keyboardShortcuts['B , .'] = 'Pause'; + keyboardShortcuts['F'] = 'Fullscreen'; + keyboardShortcuts['ESC, O'] = 'Slide overview'; + + sync(); + + } + + /** + * Binds all event listeners. + */ + function addEventListeners() { + + eventsAreBound = true; + + window.addEventListener( 'hashchange', onWindowHashChange, false ); + window.addEventListener( 'resize', onWindowResize, false ); + + if( config.touch ) { + if( 'onpointerdown' in window ) { + // Use W3C pointer events + dom.wrapper.addEventListener( 'pointerdown', onPointerDown, false ); + dom.wrapper.addEventListener( 'pointermove', onPointerMove, false ); + dom.wrapper.addEventListener( 'pointerup', onPointerUp, false ); + } + else if( window.navigator.msPointerEnabled ) { + // IE 10 uses prefixed version of pointer events + dom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false ); + dom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false ); + dom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false ); + } + else { + // Fall back to touch events + dom.wrapper.addEventListener( 'touchstart', onTouchStart, false ); + dom.wrapper.addEventListener( 'touchmove', onTouchMove, false ); + dom.wrapper.addEventListener( 'touchend', onTouchEnd, false ); + } + } + + if( config.keyboard ) { + document.addEventListener( 'keydown', onDocumentKeyDown, false ); + document.addEventListener( 'keypress', onDocumentKeyPress, false ); + } + + if( config.progress && dom.progress ) { + dom.progress.addEventListener( 'click', onProgressClicked, false ); + } + + dom.pauseOverlay.addEventListener( 'click', resume, false ); + + if( config.focusBodyOnPageVisibilityChange ) { + var visibilityChange; + + if( 'hidden' in document ) { + visibilityChange = 'visibilitychange'; + } + else if( 'msHidden' in document ) { + visibilityChange = 'msvisibilitychange'; + } + else if( 'webkitHidden' in document ) { + visibilityChange = 'webkitvisibilitychange'; + } + + if( visibilityChange ) { + document.addEventListener( visibilityChange, onPageVisibilityChange, false ); + } + } + + // Listen to both touch and click events, in case the device + // supports both + var pointerEvents = [ 'touchstart', 'click' ]; + + // Only support touch for Android, fixes double navigations in + // stock browser + if( UA.match( /android/gi ) ) { + pointerEvents = [ 'touchstart' ]; + } + + pointerEvents.forEach( function( eventName ) { + dom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } ); + dom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } ); + dom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } ); + dom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } ); + dom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } ); + dom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } ); + } ); + + } + + /** + * Unbinds all event listeners. + */ + function removeEventListeners() { + + eventsAreBound = false; + + document.removeEventListener( 'keydown', onDocumentKeyDown, false ); + document.removeEventListener( 'keypress', onDocumentKeyPress, false ); + window.removeEventListener( 'hashchange', onWindowHashChange, false ); + window.removeEventListener( 'resize', onWindowResize, false ); + + dom.wrapper.removeEventListener( 'pointerdown', onPointerDown, false ); + dom.wrapper.removeEventListener( 'pointermove', onPointerMove, false ); + dom.wrapper.removeEventListener( 'pointerup', onPointerUp, false ); + + dom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false ); + dom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false ); + dom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false ); + + dom.wrapper.removeEventListener( 'touchstart', onTouchStart, false ); + dom.wrapper.removeEventListener( 'touchmove', onTouchMove, false ); + dom.wrapper.removeEventListener( 'touchend', onTouchEnd, false ); + + dom.pauseOverlay.removeEventListener( 'click', resume, false ); + + if ( config.progress && dom.progress ) { + dom.progress.removeEventListener( 'click', onProgressClicked, false ); + } + + [ 'touchstart', 'click' ].forEach( function( eventName ) { + dom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } ); + dom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } ); + dom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } ); + dom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } ); + dom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } ); + dom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } ); + } ); + + } + + /** + * Registers a new plugin with this reveal.js instance. + * + * reveal.js waits for all regisered plugins to initialize + * before considering itself ready, as long as the plugin + * is registered before calling `Reveal.initialize()`. + */ + function registerPlugin( id, plugin ) { + + if( plugins[id] === undefined ) { + plugins[id] = plugin; + + // If a plugin is registered after reveal.js is loaded, + // initialize it right away + if( loaded && typeof plugin.init === 'function' ) { + plugin.init(); + } + } + else { + console.warn( 'reveal.js: "'+ id +'" plugin has already been registered' ); + } + + } + + /** + * Checks if a specific plugin has been registered. + * + * @param {String} id Unique plugin identifier + */ + function hasPlugin( id ) { + + return !!plugins[id]; + + } + + /** + * Returns the specific plugin instance, if a plugin + * with the given ID has been registered. + * + * @param {String} id Unique plugin identifier + */ + function getPlugin( id ) { + + return plugins[id]; + + } + + /** + * Add a custom key binding with optional description to + * be added to the help screen. + */ + function addKeyBinding( binding, callback ) { + + if( typeof binding === 'object' && binding.keyCode ) { + registeredKeyBindings[binding.keyCode] = { + callback: callback, + key: binding.key, + description: binding.description + }; + } + else { + registeredKeyBindings[binding] = { + callback: callback, + key: null, + description: null + }; + } + + } + + /** + * Removes the specified custom key binding. + */ + function removeKeyBinding( keyCode ) { + + delete registeredKeyBindings[keyCode]; + + } + + /** + * Extend object a with the properties of object b. + * If there's a conflict, object b takes precedence. + * + * @param {object} a + * @param {object} b + */ + function extend( a, b ) { + + for( var i in b ) { + a[ i ] = b[ i ]; + } + + return a; + + } + + /** + * Converts the target object to an array. + * + * @param {object} o + * @return {object[]} + */ + function toArray( o ) { + + return Array.prototype.slice.call( o ); + + } + + /** + * Utility for deserializing a value. + * + * @param {*} value + * @return {*} + */ + function deserialize( value ) { + + if( typeof value === 'string' ) { + if( value === 'null' ) return null; + else if( value === 'true' ) return true; + else if( value === 'false' ) return false; + else if( value.match( /^-?[\d\.]+$/ ) ) return parseFloat( value ); + } + + return value; + + } + + /** + * Measures the distance in pixels between point a + * and point b. + * + * @param {object} a point with x/y properties + * @param {object} b point with x/y properties + * + * @return {number} + */ + function distanceBetween( a, b ) { + + var dx = a.x - b.x, + dy = a.y - b.y; + + return Math.sqrt( dx*dx + dy*dy ); + + } + + /** + * Applies a CSS transform to the target element. + * + * @param {HTMLElement} element + * @param {string} transform + */ + function transformElement( element, transform ) { + + element.style.WebkitTransform = transform; + element.style.MozTransform = transform; + element.style.msTransform = transform; + element.style.transform = transform; + + } + + /** + * Applies CSS transforms to the slides container. The container + * is transformed from two separate sources: layout and the overview + * mode. + * + * @param {object} transforms + */ + function transformSlides( transforms ) { + + // Pick up new transforms from arguments + if( typeof transforms.layout === 'string' ) slidesTransform.layout = transforms.layout; + if( typeof transforms.overview === 'string' ) slidesTransform.overview = transforms.overview; + + // Apply the transforms to the slides container + if( slidesTransform.layout ) { + transformElement( dom.slides, slidesTransform.layout + ' ' + slidesTransform.overview ); + } + else { + transformElement( dom.slides, slidesTransform.overview ); + } + + } + + /** + * Injects the given CSS styles into the DOM. + * + * @param {string} value + */ + function injectStyleSheet( value ) { + + var tag = document.createElement( 'style' ); + tag.type = 'text/css'; + if( tag.styleSheet ) { + tag.styleSheet.cssText = value; + } + else { + tag.appendChild( document.createTextNode( value ) ); + } + document.getElementsByTagName( 'head' )[0].appendChild( tag ); + + } + + /** + * Find the closest parent that matches the given + * selector. + * + * @param {HTMLElement} target The child element + * @param {String} selector The CSS selector to match + * the parents against + * + * @return {HTMLElement} The matched parent or null + * if no matching parent was found + */ + function closestParent( target, selector ) { + + var parent = target.parentNode; + + while( parent ) { + + // There's some overhead doing this each time, we don't + // want to rewrite the element prototype but should still + // be enough to feature detect once at startup... + var matchesMethod = parent.matches || parent.matchesSelector || parent.msMatchesSelector; + + // If we find a match, we're all set + if( matchesMethod && matchesMethod.call( parent, selector ) ) { + return parent; + } + + // Keep searching + parent = parent.parentNode; + + } + + return null; + + } + + /** + * Converts various color input formats to an {r:0,g:0,b:0} object. + * + * @param {string} color The string representation of a color + * @example + * colorToRgb('#000'); + * @example + * colorToRgb('#000000'); + * @example + * colorToRgb('rgb(0,0,0)'); + * @example + * colorToRgb('rgba(0,0,0)'); + * + * @return {{r: number, g: number, b: number, [a]: number}|null} + */ + function colorToRgb( color ) { + + var hex3 = color.match( /^#([0-9a-f]{3})$/i ); + if( hex3 && hex3[1] ) { + hex3 = hex3[1]; + return { + r: parseInt( hex3.charAt( 0 ), 16 ) * 0x11, + g: parseInt( hex3.charAt( 1 ), 16 ) * 0x11, + b: parseInt( hex3.charAt( 2 ), 16 ) * 0x11 + }; + } + + var hex6 = color.match( /^#([0-9a-f]{6})$/i ); + if( hex6 && hex6[1] ) { + hex6 = hex6[1]; + return { + r: parseInt( hex6.substr( 0, 2 ), 16 ), + g: parseInt( hex6.substr( 2, 2 ), 16 ), + b: parseInt( hex6.substr( 4, 2 ), 16 ) + }; + } + + var rgb = color.match( /^rgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)$/i ); + if( rgb ) { + return { + r: parseInt( rgb[1], 10 ), + g: parseInt( rgb[2], 10 ), + b: parseInt( rgb[3], 10 ) + }; + } + + var rgba = color.match( /^rgba\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\,\s*([\d]+|[\d]*.[\d]+)\s*\)$/i ); + if( rgba ) { + return { + r: parseInt( rgba[1], 10 ), + g: parseInt( rgba[2], 10 ), + b: parseInt( rgba[3], 10 ), + a: parseFloat( rgba[4] ) + }; + } + + return null; + + } + + /** + * Calculates brightness on a scale of 0-255. + * + * @param {string} color See colorToRgb for supported formats. + * @see {@link colorToRgb} + */ + function colorBrightness( color ) { + + if( typeof color === 'string' ) color = colorToRgb( color ); + + if( color ) { + return ( color.r * 299 + color.g * 587 + color.b * 114 ) / 1000; + } + + return null; + + } + + /** + * Returns the remaining height within the parent of the + * target element. + * + * remaining height = [ configured parent height ] - [ current parent height ] + * + * @param {HTMLElement} element + * @param {number} [height] + */ + function getRemainingHeight( element, height ) { + + height = height || 0; + + if( element ) { + var newHeight, oldHeight = element.style.height; + + // Change the .stretch element height to 0 in order find the height of all + // the other elements + element.style.height = '0px'; + + // In Overview mode, the parent (.slide) height is set of 700px. + // Restore it temporarily to its natural height. + element.parentNode.style.height = 'auto'; + + newHeight = height - element.parentNode.offsetHeight; + + // Restore the old height, just in case + element.style.height = oldHeight + 'px'; + + // Clear the parent (.slide) height. .removeProperty works in IE9+ + element.parentNode.style.removeProperty('height'); + + return newHeight; + } + + return height; + + } + + /** + * Checks if this instance is being used to print a PDF. + */ + function isPrintingPDF() { + + return ( /print-pdf/gi ).test( window.location.search ); + + } + + /** + * Hides the address bar if we're on a mobile device. + */ + function hideAddressBar() { + + if( config.hideAddressBar && isMobileDevice ) { + // Events that should trigger the address bar to hide + window.addEventListener( 'load', removeAddressBar, false ); + window.addEventListener( 'orientationchange', removeAddressBar, false ); + } + + } + + /** + * Causes the address bar to hide on mobile devices, + * more vertical space ftw. + */ + function removeAddressBar() { + + setTimeout( function() { + window.scrollTo( 0, 1 ); + }, 10 ); + + } + + /** + * Dispatches an event of the specified type from the + * reveal DOM element. + */ + function dispatchEvent( type, args ) { + + var event = document.createEvent( 'HTMLEvents', 1, 2 ); + event.initEvent( type, true, true ); + extend( event, args ); + dom.wrapper.dispatchEvent( event ); + + // If we're in an iframe, post each reveal.js event to the + // parent window. Used by the notes plugin + if( config.postMessageEvents && window.parent !== window.self ) { + window.parent.postMessage( JSON.stringify({ namespace: 'reveal', eventName: type, state: getState() }), '*' ); + } + + } + + /** + * Wrap all links in 3D goodness. + */ + function enableRollingLinks() { + + if( features.transforms3d && !( 'msPerspective' in document.body.style ) ) { + var anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a' ); + + for( var i = 0, len = anchors.length; i < len; i++ ) { + var anchor = anchors[i]; + + if( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) { + var span = document.createElement('span'); + span.setAttribute('data-title', anchor.text); + span.innerHTML = anchor.innerHTML; + + anchor.classList.add( 'roll' ); + anchor.innerHTML = ''; + anchor.appendChild(span); + } + } + } + + } + + /** + * Unwrap all 3D links. + */ + function disableRollingLinks() { + + var anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a.roll' ); + + for( var i = 0, len = anchors.length; i < len; i++ ) { + var anchor = anchors[i]; + var span = anchor.querySelector( 'span' ); + + if( span ) { + anchor.classList.remove( 'roll' ); + anchor.innerHTML = span.innerHTML; + } + } + + } + + /** + * Bind preview frame links. + * + * @param {string} [selector=a] - selector for anchors + */ + function enablePreviewLinks( selector ) { + + var anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) ); + + anchors.forEach( function( element ) { + if( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) { + element.addEventListener( 'click', onPreviewLinkClicked, false ); + } + } ); + + } + + /** + * Unbind preview frame links. + */ + function disablePreviewLinks( selector ) { + + var anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) ); + + anchors.forEach( function( element ) { + if( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) { + element.removeEventListener( 'click', onPreviewLinkClicked, false ); + } + } ); + + } + + /** + * Opens a preview window for the target URL. + * + * @param {string} url - url for preview iframe src + */ + function showPreview( url ) { + + closeOverlay(); + + dom.overlay = document.createElement( 'div' ); + dom.overlay.classList.add( 'overlay' ); + dom.overlay.classList.add( 'overlay-preview' ); + dom.wrapper.appendChild( dom.overlay ); + + dom.overlay.innerHTML = [ + '
', + '', + '', + '
', + '
', + '
', + '', + '', + 'Unable to load iframe. This is likely due to the site\'s policy (x-frame-options).', + '', + '
' + ].join(''); + + dom.overlay.querySelector( 'iframe' ).addEventListener( 'load', function( event ) { + dom.overlay.classList.add( 'loaded' ); + }, false ); + + dom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) { + closeOverlay(); + event.preventDefault(); + }, false ); + + dom.overlay.querySelector( '.external' ).addEventListener( 'click', function( event ) { + closeOverlay(); + }, false ); + + setTimeout( function() { + dom.overlay.classList.add( 'visible' ); + }, 1 ); + + } + + /** + * Open or close help overlay window. + * + * @param {Boolean} [override] Flag which overrides the + * toggle logic and forcibly sets the desired state. True means + * help is open, false means it's closed. + */ + function toggleHelp( override ){ + + if( typeof override === 'boolean' ) { + override ? showHelp() : closeOverlay(); + } + else { + if( dom.overlay ) { + closeOverlay(); + } + else { + showHelp(); + } + } + } + + /** + * Opens an overlay window with help material. + */ + function showHelp() { + + if( config.help ) { + + closeOverlay(); + + dom.overlay = document.createElement( 'div' ); + dom.overlay.classList.add( 'overlay' ); + dom.overlay.classList.add( 'overlay-help' ); + dom.wrapper.appendChild( dom.overlay ); + + var html = '

Keyboard Shortcuts


'; + + html += ''; + for( var key in keyboardShortcuts ) { + html += ''; + } + + // Add custom key bindings that have associated descriptions + for( var binding in registeredKeyBindings ) { + if( registeredKeyBindings[binding].key && registeredKeyBindings[binding].description ) { + html += ''; + } + } + + html += '
KEYACTION
' + key + '' + keyboardShortcuts[ key ] + '
' + registeredKeyBindings[binding].key + '' + registeredKeyBindings[binding].description + '
'; + + dom.overlay.innerHTML = [ + '
', + '', + '
', + '
', + '
'+ html +'
', + '
' + ].join(''); + + dom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) { + closeOverlay(); + event.preventDefault(); + }, false ); + + setTimeout( function() { + dom.overlay.classList.add( 'visible' ); + }, 1 ); + + } + + } + + /** + * Closes any currently open overlay. + */ + function closeOverlay() { + + if( dom.overlay ) { + dom.overlay.parentNode.removeChild( dom.overlay ); + dom.overlay = null; + } + + } + + /** + * Applies JavaScript-controlled layout rules to the + * presentation. + */ + function layout() { + + if( dom.wrapper && !isPrintingPDF() ) { + + if( !config.disableLayout ) { + + // On some mobile devices '100vh' is taller than the visible + // viewport which leads to part of the presentation being + // cut off. To work around this we define our own '--vh' custom + // property where 100x adds up to the correct height. + // + // https://css-tricks.com/the-trick-to-viewport-units-on-mobile/ + if( isMobileDevice ) { + document.documentElement.style.setProperty( '--vh', ( window.innerHeight * 0.01 ) + 'px' ); + } + + var size = getComputedSlideSize(); + + var oldScale = scale; + + // Layout the contents of the slides + layoutSlideContents( config.width, config.height ); + + dom.slides.style.width = size.width + 'px'; + dom.slides.style.height = size.height + 'px'; + + // Determine scale of content to fit within available space + scale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height ); + + // Respect max/min scale settings + scale = Math.max( scale, config.minScale ); + scale = Math.min( scale, config.maxScale ); + + // Don't apply any scaling styles if scale is 1 + if( scale === 1 ) { + dom.slides.style.zoom = ''; + dom.slides.style.left = ''; + dom.slides.style.top = ''; + dom.slides.style.bottom = ''; + dom.slides.style.right = ''; + transformSlides( { layout: '' } ); + } + else { + // Prefer zoom for scaling up so that content remains crisp. + // Don't use zoom to scale down since that can lead to shifts + // in text layout/line breaks. + if( scale > 1 && features.zoom ) { + dom.slides.style.zoom = scale; + dom.slides.style.left = ''; + dom.slides.style.top = ''; + dom.slides.style.bottom = ''; + dom.slides.style.right = ''; + transformSlides( { layout: '' } ); + } + // Apply scale transform as a fallback + else { + dom.slides.style.zoom = ''; + dom.slides.style.left = '50%'; + dom.slides.style.top = '50%'; + dom.slides.style.bottom = 'auto'; + dom.slides.style.right = 'auto'; + transformSlides( { layout: 'translate(-50%, -50%) scale('+ scale +')' } ); + } + } + + // Select all slides, vertical and horizontal + var slides = toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ); + + for( var i = 0, len = slides.length; i < len; i++ ) { + var slide = slides[ i ]; + + // Don't bother updating invisible slides + if( slide.style.display === 'none' ) { + continue; + } + + if( config.center || slide.classList.contains( 'center' ) ) { + // Vertical stacks are not centred since their section + // children will be + if( slide.classList.contains( 'stack' ) ) { + slide.style.top = 0; + } + else { + slide.style.top = Math.max( ( size.height - slide.scrollHeight ) / 2, 0 ) + 'px'; + } + } + else { + slide.style.top = ''; + } + + } + + if( oldScale !== scale ) { + dispatchEvent( 'resize', { + 'oldScale': oldScale, + 'scale': scale, + 'size': size + } ); + } + } + + updateProgress(); + updateParallax(); + + if( isOverview() ) { + updateOverview(); + } + + } + + } + + /** + * Applies layout logic to the contents of all slides in + * the presentation. + * + * @param {string|number} width + * @param {string|number} height + */ + function layoutSlideContents( width, height ) { + + // Handle sizing of elements with the 'stretch' class + toArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) { + + // Determine how much vertical space we can use + var remainingHeight = getRemainingHeight( element, height ); + + // Consider the aspect ratio of media elements + if( /(img|video)/gi.test( element.nodeName ) ) { + var nw = element.naturalWidth || element.videoWidth, + nh = element.naturalHeight || element.videoHeight; + + var es = Math.min( width / nw, remainingHeight / nh ); + + element.style.width = ( nw * es ) + 'px'; + element.style.height = ( nh * es ) + 'px'; + + } + else { + element.style.width = width + 'px'; + element.style.height = remainingHeight + 'px'; + } + + } ); + + } + + /** + * Calculates the computed pixel size of our slides. These + * values are based on the width and height configuration + * options. + * + * @param {number} [presentationWidth=dom.wrapper.offsetWidth] + * @param {number} [presentationHeight=dom.wrapper.offsetHeight] + */ + function getComputedSlideSize( presentationWidth, presentationHeight ) { + + var size = { + // Slide size + width: config.width, + height: config.height, + + // Presentation size + presentationWidth: presentationWidth || dom.wrapper.offsetWidth, + presentationHeight: presentationHeight || dom.wrapper.offsetHeight + }; + + // Reduce available space by margin + size.presentationWidth -= ( size.presentationWidth * config.margin ); + size.presentationHeight -= ( size.presentationHeight * config.margin ); + + // Slide width may be a percentage of available width + if( typeof size.width === 'string' && /%$/.test( size.width ) ) { + size.width = parseInt( size.width, 10 ) / 100 * size.presentationWidth; + } + + // Slide height may be a percentage of available height + if( typeof size.height === 'string' && /%$/.test( size.height ) ) { + size.height = parseInt( size.height, 10 ) / 100 * size.presentationHeight; + } + + return size; + + } + + /** + * Stores the vertical index of a stack so that the same + * vertical slide can be selected when navigating to and + * from the stack. + * + * @param {HTMLElement} stack The vertical stack element + * @param {string|number} [v=0] Index to memorize + */ + function setPreviousVerticalIndex( stack, v ) { + + if( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) { + stack.setAttribute( 'data-previous-indexv', v || 0 ); + } + + } + + /** + * Retrieves the vertical index which was stored using + * #setPreviousVerticalIndex() or 0 if no previous index + * exists. + * + * @param {HTMLElement} stack The vertical stack element + */ + function getPreviousVerticalIndex( stack ) { + + if( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) { + // Prefer manually defined start-indexv + var attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv'; + + return parseInt( stack.getAttribute( attributeName ) || 0, 10 ); + } + + return 0; + + } + + /** + * Displays the overview of slides (quick nav) by scaling + * down and arranging all slide elements. + */ + function activateOverview() { + + // Only proceed if enabled in config + if( config.overview && !isOverview() ) { + + overview = true; + + dom.wrapper.classList.add( 'overview' ); + dom.wrapper.classList.remove( 'overview-deactivating' ); + + if( features.overviewTransitions ) { + setTimeout( function() { + dom.wrapper.classList.add( 'overview-animated' ); + }, 1 ); + } + + // Don't auto-slide while in overview mode + cancelAutoSlide(); + + // Move the backgrounds element into the slide container to + // that the same scaling is applied + dom.slides.appendChild( dom.background ); + + // Clicking on an overview slide navigates to it + toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) { + if( !slide.classList.contains( 'stack' ) ) { + slide.addEventListener( 'click', onOverviewSlideClicked, true ); + } + } ); + + // Calculate slide sizes + var margin = 70; + var slideSize = getComputedSlideSize(); + overviewSlideWidth = slideSize.width + margin; + overviewSlideHeight = slideSize.height + margin; + + // Reverse in RTL mode + if( config.rtl ) { + overviewSlideWidth = -overviewSlideWidth; + } + + updateSlidesVisibility(); + layoutOverview(); + updateOverview(); + + layout(); + + // Notify observers of the overview showing + dispatchEvent( 'overviewshown', { + 'indexh': indexh, + 'indexv': indexv, + 'currentSlide': currentSlide + } ); + + } + + } + + /** + * Uses CSS transforms to position all slides in a grid for + * display inside of the overview mode. + */ + function layoutOverview() { + + // Layout slides + toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) { + hslide.setAttribute( 'data-index-h', h ); + transformElement( hslide, 'translate3d(' + ( h * overviewSlideWidth ) + 'px, 0, 0)' ); + + if( hslide.classList.contains( 'stack' ) ) { + + toArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) { + vslide.setAttribute( 'data-index-h', h ); + vslide.setAttribute( 'data-index-v', v ); + + transformElement( vslide, 'translate3d(0, ' + ( v * overviewSlideHeight ) + 'px, 0)' ); + } ); + + } + } ); + + // Layout slide backgrounds + toArray( dom.background.childNodes ).forEach( function( hbackground, h ) { + transformElement( hbackground, 'translate3d(' + ( h * overviewSlideWidth ) + 'px, 0, 0)' ); + + toArray( hbackground.querySelectorAll( '.slide-background' ) ).forEach( function( vbackground, v ) { + transformElement( vbackground, 'translate3d(0, ' + ( v * overviewSlideHeight ) + 'px, 0)' ); + } ); + } ); + + } + + /** + * Moves the overview viewport to the current slides. + * Called each time the current slide changes. + */ + function updateOverview() { + + var vmin = Math.min( window.innerWidth, window.innerHeight ); + var scale = Math.max( vmin / 5, 150 ) / vmin; + + transformSlides( { + overview: [ + 'scale('+ scale +')', + 'translateX('+ ( -indexh * overviewSlideWidth ) +'px)', + 'translateY('+ ( -indexv * overviewSlideHeight ) +'px)' + ].join( ' ' ) + } ); + + } + + /** + * Exits the slide overview and enters the currently + * active slide. + */ + function deactivateOverview() { + + // Only proceed if enabled in config + if( config.overview ) { + + overview = false; + + dom.wrapper.classList.remove( 'overview' ); + dom.wrapper.classList.remove( 'overview-animated' ); + + // Temporarily add a class so that transitions can do different things + // depending on whether they are exiting/entering overview, or just + // moving from slide to slide + dom.wrapper.classList.add( 'overview-deactivating' ); + + setTimeout( function () { + dom.wrapper.classList.remove( 'overview-deactivating' ); + }, 1 ); + + // Move the background element back out + dom.wrapper.appendChild( dom.background ); + + // Clean up changes made to slides + toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) { + transformElement( slide, '' ); + + slide.removeEventListener( 'click', onOverviewSlideClicked, true ); + } ); + + // Clean up changes made to backgrounds + toArray( dom.background.querySelectorAll( '.slide-background' ) ).forEach( function( background ) { + transformElement( background, '' ); + } ); + + transformSlides( { overview: '' } ); + + slide( indexh, indexv ); + + layout(); + + cueAutoSlide(); + + // Notify observers of the overview hiding + dispatchEvent( 'overviewhidden', { + 'indexh': indexh, + 'indexv': indexv, + 'currentSlide': currentSlide + } ); + + } + } + + /** + * Toggles the slide overview mode on and off. + * + * @param {Boolean} [override] Flag which overrides the + * toggle logic and forcibly sets the desired state. True means + * overview is open, false means it's closed. + */ + function toggleOverview( override ) { + + if( typeof override === 'boolean' ) { + override ? activateOverview() : deactivateOverview(); + } + else { + isOverview() ? deactivateOverview() : activateOverview(); + } + + } + + /** + * Checks if the overview is currently active. + * + * @return {Boolean} true if the overview is active, + * false otherwise + */ + function isOverview() { + + return overview; + + } + + /** + * Return a hash URL that will resolve to the current slide location. + */ + function locationHash() { + + var url = '/'; + + // Attempt to create a named link based on the slide's ID + var id = currentSlide ? currentSlide.getAttribute( 'id' ) : null; + if( id ) { + id = encodeURIComponent( id ); + } + + var indexf; + if( config.fragmentInURL ) { + indexf = getIndices().f; + } + + // If the current slide has an ID, use that as a named link, + // but we don't support named links with a fragment index + if( typeof id === 'string' && id.length && indexf === undefined ) { + url = '/' + id; + } + // Otherwise use the /h/v index + else { + var hashIndexBase = config.hashOneBasedIndex ? 1 : 0; + if( indexh > 0 || indexv > 0 || indexf !== undefined ) url += indexh + hashIndexBase; + if( indexv > 0 || indexf !== undefined ) url += '/' + (indexv + hashIndexBase ); + if( indexf !== undefined ) url += '/' + indexf; + } + + return url; + + } + + /** + * Checks if the current or specified slide is vertical + * (nested within another slide). + * + * @param {HTMLElement} [slide=currentSlide] The slide to check + * orientation of + * @return {Boolean} + */ + function isVerticalSlide( slide ) { + + // Prefer slide argument, otherwise use current slide + slide = slide ? slide : currentSlide; + + return slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i ); + + } + + /** + * Handling the fullscreen functionality via the fullscreen API + * + * @see http://fullscreen.spec.whatwg.org/ + * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode + */ + function enterFullscreen() { + + var element = document.documentElement; + + // Check which implementation is available + var requestMethod = element.requestFullscreen || + element.webkitRequestFullscreen || + element.webkitRequestFullScreen || + element.mozRequestFullScreen || + element.msRequestFullscreen; + + if( requestMethod ) { + requestMethod.apply( element ); + } + + } + + /** + * Shows the mouse pointer after it has been hidden with + * #hideCursor. + */ + function showCursor() { + + if( cursorHidden ) { + cursorHidden = false; + dom.wrapper.style.cursor = ''; + } + + } + + /** + * Hides the mouse pointer when it's on top of the .reveal + * container. + */ + function hideCursor() { + + if( cursorHidden === false ) { + cursorHidden = true; + dom.wrapper.style.cursor = 'none'; + } + + } + + /** + * Enters the paused mode which fades everything on screen to + * black. + */ + function pause() { + + if( config.pause ) { + var wasPaused = dom.wrapper.classList.contains( 'paused' ); + + cancelAutoSlide(); + dom.wrapper.classList.add( 'paused' ); + + if( wasPaused === false ) { + dispatchEvent( 'paused' ); + } + } + + } + + /** + * Exits from the paused mode. + */ + function resume() { + + var wasPaused = dom.wrapper.classList.contains( 'paused' ); + dom.wrapper.classList.remove( 'paused' ); + + cueAutoSlide(); + + if( wasPaused ) { + dispatchEvent( 'resumed' ); + } + + } + + /** + * Toggles the paused mode on and off. + */ + function togglePause( override ) { + + if( typeof override === 'boolean' ) { + override ? pause() : resume(); + } + else { + isPaused() ? resume() : pause(); + } + + } + + /** + * Checks if we are currently in the paused mode. + * + * @return {Boolean} + */ + function isPaused() { + + return dom.wrapper.classList.contains( 'paused' ); + + } + + /** + * Toggles the auto slide mode on and off. + * + * @param {Boolean} [override] Flag which sets the desired state. + * True means autoplay starts, false means it stops. + */ + + function toggleAutoSlide( override ) { + + if( typeof override === 'boolean' ) { + override ? resumeAutoSlide() : pauseAutoSlide(); + } + + else { + autoSlidePaused ? resumeAutoSlide() : pauseAutoSlide(); + } + + } + + /** + * Checks if the auto slide mode is currently on. + * + * @return {Boolean} + */ + function isAutoSliding() { + + return !!( autoSlide && !autoSlidePaused ); + + } + + /** + * Steps from the current point in the presentation to the + * slide which matches the specified horizontal and vertical + * indices. + * + * @param {number} [h=indexh] Horizontal index of the target slide + * @param {number} [v=indexv] Vertical index of the target slide + * @param {number} [f] Index of a fragment within the + * target slide to activate + * @param {number} [o] Origin for use in multimaster environments + */ + function slide( h, v, f, o ) { + + // Remember where we were at before + previousSlide = currentSlide; + + // Query all horizontal slides in the deck + var horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ); + + // Abort if there are no slides + if( horizontalSlides.length === 0 ) return; + + // If no vertical index is specified and the upcoming slide is a + // stack, resume at its previous vertical index + if( v === undefined && !isOverview() ) { + v = getPreviousVerticalIndex( horizontalSlides[ h ] ); + } + + // If we were on a vertical stack, remember what vertical index + // it was on so we can resume at the same position when returning + if( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) { + setPreviousVerticalIndex( previousSlide.parentNode, indexv ); + } + + // Remember the state before this slide + var stateBefore = state.concat(); + + // Reset the state array + state.length = 0; + + var indexhBefore = indexh || 0, + indexvBefore = indexv || 0; + + // Activate and transition to the new slide + indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h ); + indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v ); + + // Update the visibility of slides now that the indices have changed + updateSlidesVisibility(); + + layout(); + + // Update the overview if it's currently active + if( isOverview() ) { + updateOverview(); + } + + // Find the current horizontal slide and any possible vertical slides + // within it + var currentHorizontalSlide = horizontalSlides[ indexh ], + currentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' ); + + // Store references to the previous and current slides + currentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide; + + // Show fragment, if specified + if( typeof f !== 'undefined' ) { + navigateFragment( f ); + } + + // Dispatch an event if the slide changed + var slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore ); + if (!slideChanged) { + // Ensure that the previous slide is never the same as the current + previousSlide = null; + } + + // Solves an edge case where the previous slide maintains the + // 'present' class when navigating between adjacent vertical + // stacks + if( previousSlide && previousSlide !== currentSlide ) { + previousSlide.classList.remove( 'present' ); + previousSlide.setAttribute( 'aria-hidden', 'true' ); + + // Reset all slides upon navigate to home + // Issue: #285 + if ( dom.wrapper.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) { + // Launch async task + setTimeout( function () { + var slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i; + for( i in slides ) { + if( slides[i] ) { + // Reset stack + setPreviousVerticalIndex( slides[i], 0 ); + } + } + }, 0 ); + } + } + + // Apply the new state + stateLoop: for( var i = 0, len = state.length; i < len; i++ ) { + // Check if this state existed on the previous slide. If it + // did, we will avoid adding it repeatedly + for( var j = 0; j < stateBefore.length; j++ ) { + if( stateBefore[j] === state[i] ) { + stateBefore.splice( j, 1 ); + continue stateLoop; + } + } + + document.documentElement.classList.add( state[i] ); + + // Dispatch custom event matching the state's name + dispatchEvent( state[i] ); + } + + // Clean up the remains of the previous state + while( stateBefore.length ) { + document.documentElement.classList.remove( stateBefore.pop() ); + } + + if( slideChanged ) { + dispatchEvent( 'slidechanged', { + 'indexh': indexh, + 'indexv': indexv, + 'previousSlide': previousSlide, + 'currentSlide': currentSlide, + 'origin': o + } ); + } + + // Handle embedded content + if( slideChanged || !previousSlide ) { + stopEmbeddedContent( previousSlide ); + startEmbeddedContent( currentSlide ); + } + + // Announce the current slide contents, for screen readers + dom.statusDiv.textContent = getStatusText( currentSlide ); + + updateControls(); + updateProgress(); + updateBackground(); + updateParallax(); + updateSlideNumber(); + updateNotes(); + updateFragments(); + + // Update the URL hash + writeURL(); + + cueAutoSlide(); + + } + + /** + * Syncs the presentation with the current DOM. Useful + * when new slides or control elements are added or when + * the configuration has changed. + */ + function sync() { + + // Subscribe to input + removeEventListeners(); + addEventListeners(); + + // Force a layout to make sure the current config is accounted for + layout(); + + // Reflect the current autoSlide value + autoSlide = config.autoSlide; + + // Start auto-sliding if it's enabled + cueAutoSlide(); + + // Re-create the slide backgrounds + createBackgrounds(); + + // Write the current hash to the URL + writeURL(); + + sortAllFragments(); + + updateControls(); + updateProgress(); + updateSlideNumber(); + updateSlidesVisibility(); + updateBackground( true ); + updateNotesVisibility(); + updateNotes(); + + formatEmbeddedContent(); + + // Start or stop embedded content depending on global config + if( config.autoPlayMedia === false ) { + stopEmbeddedContent( currentSlide, { unloadIframes: false } ); + } + else { + startEmbeddedContent( currentSlide ); + } + + if( isOverview() ) { + layoutOverview(); + } + + } + + /** + * Updates reveal.js to keep in sync with new slide attributes. For + * example, if you add a new `data-background-image` you can call + * this to have reveal.js render the new background image. + * + * Similar to #sync() but more efficient when you only need to + * refresh a specific slide. + * + * @param {HTMLElement} slide + */ + function syncSlide( slide ) { + + // Default to the current slide + slide = slide || currentSlide; + + syncBackground( slide ); + syncFragments( slide ); + + updateBackground(); + updateNotes(); + + loadSlide( slide ); + + } + + /** + * Formats the fragments on the given slide so that they have + * valid indices. Call this if fragments are changed in the DOM + * after reveal.js has already initialized. + * + * @param {HTMLElement} slide + * @return {Array} a list of the HTML fragments that were synced + */ + function syncFragments( slide ) { + + // Default to the current slide + slide = slide || currentSlide; + + return sortFragments( slide.querySelectorAll( '.fragment' ) ); + + } + + /** + * Resets all vertical slides so that only the first + * is visible. + */ + function resetVerticalSlides() { + + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + horizontalSlides.forEach( function( horizontalSlide ) { + + var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ); + verticalSlides.forEach( function( verticalSlide, y ) { + + if( y > 0 ) { + verticalSlide.classList.remove( 'present' ); + verticalSlide.classList.remove( 'past' ); + verticalSlide.classList.add( 'future' ); + verticalSlide.setAttribute( 'aria-hidden', 'true' ); + } + + } ); + + } ); + + } + + /** + * Sorts and formats all of fragments in the + * presentation. + */ + function sortAllFragments() { + + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + horizontalSlides.forEach( function( horizontalSlide ) { + + var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ); + verticalSlides.forEach( function( verticalSlide, y ) { + + sortFragments( verticalSlide.querySelectorAll( '.fragment' ) ); + + } ); + + if( verticalSlides.length === 0 ) sortFragments( horizontalSlide.querySelectorAll( '.fragment' ) ); + + } ); + + } + + /** + * Randomly shuffles all slides in the deck. + */ + function shuffle() { + + var slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + + slides.forEach( function( slide ) { + + // Insert this slide next to another random slide. This may + // cause the slide to insert before itself but that's fine. + dom.slides.insertBefore( slide, slides[ Math.floor( Math.random() * slides.length ) ] ); + + } ); + + } + + /** + * Updates one dimension of slides by showing the slide + * with the specified index. + * + * @param {string} selector A CSS selector that will fetch + * the group of slides we are working with + * @param {number} index The index of the slide that should be + * shown + * + * @return {number} The index of the slide that is now shown, + * might differ from the passed in index if it was out of + * bounds. + */ + function updateSlides( selector, index ) { + + // Select all slides and convert the NodeList result to + // an array + var slides = toArray( dom.wrapper.querySelectorAll( selector ) ), + slidesLength = slides.length; + + var printMode = isPrintingPDF(); + + if( slidesLength ) { + + // Should the index loop? + if( config.loop ) { + index %= slidesLength; + + if( index < 0 ) { + index = slidesLength + index; + } + } + + // Enforce max and minimum index bounds + index = Math.max( Math.min( index, slidesLength - 1 ), 0 ); + + for( var i = 0; i < slidesLength; i++ ) { + var element = slides[i]; + + var reverse = config.rtl && !isVerticalSlide( element ); + + element.classList.remove( 'past' ); + element.classList.remove( 'present' ); + element.classList.remove( 'future' ); + + // http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute + element.setAttribute( 'hidden', '' ); + element.setAttribute( 'aria-hidden', 'true' ); + + // If this element contains vertical slides + if( element.querySelector( 'section' ) ) { + element.classList.add( 'stack' ); + } + + // If we're printing static slides, all slides are "present" + if( printMode ) { + element.classList.add( 'present' ); + continue; + } + + if( i < index ) { + // Any element previous to index is given the 'past' class + element.classList.add( reverse ? 'future' : 'past' ); + + if( config.fragments ) { + // Show all fragments in prior slides + toArray( element.querySelectorAll( '.fragment' ) ).forEach( function( fragment ) { + fragment.classList.add( 'visible' ); + fragment.classList.remove( 'current-fragment' ); + } ); + } + } + else if( i > index ) { + // Any element subsequent to index is given the 'future' class + element.classList.add( reverse ? 'past' : 'future' ); + + if( config.fragments ) { + // Hide all fragments in future slides + toArray( element.querySelectorAll( '.fragment.visible' ) ).forEach( function( fragment ) { + fragment.classList.remove( 'visible' ); + fragment.classList.remove( 'current-fragment' ); + } ); + } + } + } + + // Mark the current slide as present + slides[index].classList.add( 'present' ); + slides[index].removeAttribute( 'hidden' ); + slides[index].removeAttribute( 'aria-hidden' ); + + // If this slide has a state associated with it, add it + // onto the current state of the deck + var slideState = slides[index].getAttribute( 'data-state' ); + if( slideState ) { + state = state.concat( slideState.split( ' ' ) ); + } + + } + else { + // Since there are no slides we can't be anywhere beyond the + // zeroth index + index = 0; + } + + return index; + + } + + /** + * Optimization method; hide all slides that are far away + * from the present slide. + */ + function updateSlidesVisibility() { + + // Select all slides and convert the NodeList result to + // an array + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ), + horizontalSlidesLength = horizontalSlides.length, + distanceX, + distanceY; + + if( horizontalSlidesLength && typeof indexh !== 'undefined' ) { + + // The number of steps away from the present slide that will + // be visible + var viewDistance = isOverview() ? 10 : config.viewDistance; + + // Limit view distance on weaker devices + if( isMobileDevice ) { + viewDistance = isOverview() ? 6 : 2; + } + + // All slides need to be visible when exporting to PDF + if( isPrintingPDF() ) { + viewDistance = Number.MAX_VALUE; + } + + for( var x = 0; x < horizontalSlidesLength; x++ ) { + var horizontalSlide = horizontalSlides[x]; + + var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ), + verticalSlidesLength = verticalSlides.length; + + // Determine how far away this slide is from the present + distanceX = Math.abs( ( indexh || 0 ) - x ) || 0; + + // If the presentation is looped, distance should measure + // 1 between the first and last slides + if( config.loop ) { + distanceX = Math.abs( ( ( indexh || 0 ) - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0; + } + + // Show the horizontal slide if it's within the view distance + if( distanceX < viewDistance ) { + loadSlide( horizontalSlide ); + } + else { + unloadSlide( horizontalSlide ); + } + + if( verticalSlidesLength ) { + + var oy = getPreviousVerticalIndex( horizontalSlide ); + + for( var y = 0; y < verticalSlidesLength; y++ ) { + var verticalSlide = verticalSlides[y]; + + distanceY = x === ( indexh || 0 ) ? Math.abs( ( indexv || 0 ) - y ) : Math.abs( y - oy ); + + if( distanceX + distanceY < viewDistance ) { + loadSlide( verticalSlide ); + } + else { + unloadSlide( verticalSlide ); + } + } + + } + } + + // Flag if there are ANY vertical slides, anywhere in the deck + if( dom.wrapper.querySelectorAll( '.slides>section>section' ).length ) { + dom.wrapper.classList.add( 'has-vertical-slides' ); + } + else { + dom.wrapper.classList.remove( 'has-vertical-slides' ); + } + + // Flag if there are ANY horizontal slides, anywhere in the deck + if( dom.wrapper.querySelectorAll( '.slides>section' ).length > 1 ) { + dom.wrapper.classList.add( 'has-horizontal-slides' ); + } + else { + dom.wrapper.classList.remove( 'has-horizontal-slides' ); + } + + } + + } + + /** + * Pick up notes from the current slide and display them + * to the viewer. + * + * @see {@link config.showNotes} + */ + function updateNotes() { + + if( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) { + + dom.speakerNotes.innerHTML = getSlideNotes() || 'No notes on this slide.'; + + } + + } + + /** + * Updates the visibility of the speaker notes sidebar that + * is used to share annotated slides. The notes sidebar is + * only visible if showNotes is true and there are notes on + * one or more slides in the deck. + */ + function updateNotesVisibility() { + + if( config.showNotes && hasNotes() ) { + dom.wrapper.classList.add( 'show-notes' ); + } + else { + dom.wrapper.classList.remove( 'show-notes' ); + } + + } + + /** + * Checks if there are speaker notes for ANY slide in the + * presentation. + */ + function hasNotes() { + + return dom.slides.querySelectorAll( '[data-notes], aside.notes' ).length > 0; + + } + + /** + * Updates the progress bar to reflect the current slide. + */ + function updateProgress() { + + // Update progress if enabled + if( config.progress && dom.progressbar ) { + + dom.progressbar.style.width = getProgress() * dom.wrapper.offsetWidth + 'px'; + + } + + } + + + /** + * Updates the slide number to match the current slide. + */ + function updateSlideNumber() { + + // Update slide number if enabled + if( config.slideNumber && dom.slideNumber ) { + + var value; + var format = 'h.v'; + + if( typeof config.slideNumber === 'function' ) { + value = config.slideNumber(); + } + else { + // Check if a custom number format is available + if( typeof config.slideNumber === 'string' ) { + format = config.slideNumber; + } + + // If there are ONLY vertical slides in this deck, always use + // a flattened slide number + if( !/c/.test( format ) && dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length === 1 ) { + format = 'c'; + } + + value = []; + switch( format ) { + case 'c': + value.push( getSlidePastCount() + 1 ); + break; + case 'c/t': + value.push( getSlidePastCount() + 1, '/', getTotalSlides() ); + break; + case 'h/v': + value.push( indexh + 1 ); + if( isVerticalSlide() ) value.push( '/', indexv + 1 ); + break; + default: + value.push( indexh + 1 ); + if( isVerticalSlide() ) value.push( '.', indexv + 1 ); + } + } + + dom.slideNumber.innerHTML = formatSlideNumber( value[0], value[1], value[2] ); + } + + } + + /** + * Applies HTML formatting to a slide number before it's + * written to the DOM. + * + * @param {number} a Current slide + * @param {string} delimiter Character to separate slide numbers + * @param {(number|*)} b Total slides + * @return {string} HTML string fragment + */ + function formatSlideNumber( a, delimiter, b ) { + + var url = '#' + locationHash(); + if( typeof b === 'number' && !isNaN( b ) ) { + return '' + + ''+ a +'' + + ''+ delimiter +'' + + ''+ b +'' + + ''; + } + else { + return '' + + ''+ a +'' + + ''; + } + + } + + /** + * Updates the state of all control/navigation arrows. + */ + function updateControls() { + + var routes = availableRoutes(); + var fragments = availableFragments(); + + // Remove the 'enabled' class from all directions + dom.controlsLeft.concat( dom.controlsRight ) + .concat( dom.controlsUp ) + .concat( dom.controlsDown ) + .concat( dom.controlsPrev ) + .concat( dom.controlsNext ).forEach( function( node ) { + node.classList.remove( 'enabled' ); + node.classList.remove( 'fragmented' ); + + // Set 'disabled' attribute on all directions + node.setAttribute( 'disabled', 'disabled' ); + } ); + + // Add the 'enabled' class to the available routes; remove 'disabled' attribute to enable buttons + if( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } ); + if( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } ); + if( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } ); + if( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } ); + + // Prev/next buttons + if( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } ); + if( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); el.removeAttribute( 'disabled' ); } ); + + // Highlight fragment directions + if( currentSlide ) { + + // Always apply fragment decorator to prev/next buttons + if( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } ); + if( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } ); + + // Apply fragment decorators to directional buttons based on + // what slide axis they are in + if( isVerticalSlide( currentSlide ) ) { + if( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } ); + if( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } ); + } + else { + if( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } ); + if( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); el.removeAttribute( 'disabled' ); } ); + } + + } + + if( config.controlsTutorial ) { + + // Highlight control arrows with an animation to ensure + // that the viewer knows how to navigate + if( !hasNavigatedDown && routes.down ) { + dom.controlsDownArrow.classList.add( 'highlight' ); + } + else { + dom.controlsDownArrow.classList.remove( 'highlight' ); + + if( !hasNavigatedRight && routes.right && indexv === 0 ) { + dom.controlsRightArrow.classList.add( 'highlight' ); + } + else { + dom.controlsRightArrow.classList.remove( 'highlight' ); + } + } + + } + + } + + /** + * Updates the background elements to reflect the current + * slide. + * + * @param {boolean} includeAll If true, the backgrounds of + * all vertical slides (not just the present) will be updated. + */ + function updateBackground( includeAll ) { + + var currentBackground = null; + + // Reverse past/future classes when in RTL mode + var horizontalPast = config.rtl ? 'future' : 'past', + horizontalFuture = config.rtl ? 'past' : 'future'; + + // Update the classes of all backgrounds to match the + // states of their slides (past/present/future) + toArray( dom.background.childNodes ).forEach( function( backgroundh, h ) { + + backgroundh.classList.remove( 'past' ); + backgroundh.classList.remove( 'present' ); + backgroundh.classList.remove( 'future' ); + + if( h < indexh ) { + backgroundh.classList.add( horizontalPast ); + } + else if ( h > indexh ) { + backgroundh.classList.add( horizontalFuture ); + } + else { + backgroundh.classList.add( 'present' ); + + // Store a reference to the current background element + currentBackground = backgroundh; + } + + if( includeAll || h === indexh ) { + toArray( backgroundh.querySelectorAll( '.slide-background' ) ).forEach( function( backgroundv, v ) { + + backgroundv.classList.remove( 'past' ); + backgroundv.classList.remove( 'present' ); + backgroundv.classList.remove( 'future' ); + + if( v < indexv ) { + backgroundv.classList.add( 'past' ); + } + else if ( v > indexv ) { + backgroundv.classList.add( 'future' ); + } + else { + backgroundv.classList.add( 'present' ); + + // Only if this is the present horizontal and vertical slide + if( h === indexh ) currentBackground = backgroundv; + } + + } ); + } + + } ); + + // Stop content inside of previous backgrounds + if( previousBackground ) { + + stopEmbeddedContent( previousBackground ); + + } + + // Start content in the current background + if( currentBackground ) { + + startEmbeddedContent( currentBackground ); + + var currentBackgroundContent = currentBackground.querySelector( '.slide-background-content' ); + if( currentBackgroundContent ) { + + var backgroundImageURL = currentBackgroundContent.style.backgroundImage || ''; + + // Restart GIFs (doesn't work in Firefox) + if( /\.gif/i.test( backgroundImageURL ) ) { + currentBackgroundContent.style.backgroundImage = ''; + window.getComputedStyle( currentBackgroundContent ).opacity; + currentBackgroundContent.style.backgroundImage = backgroundImageURL; + } + + } + + // Don't transition between identical backgrounds. This + // prevents unwanted flicker. + var previousBackgroundHash = previousBackground ? previousBackground.getAttribute( 'data-background-hash' ) : null; + var currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' ); + if( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== previousBackground ) { + dom.background.classList.add( 'no-transition' ); + } + + previousBackground = currentBackground; + + } + + // If there's a background brightness flag for this slide, + // bubble it to the .reveal container + if( currentSlide ) { + [ 'has-light-background', 'has-dark-background' ].forEach( function( classToBubble ) { + if( currentSlide.classList.contains( classToBubble ) ) { + dom.wrapper.classList.add( classToBubble ); + } + else { + dom.wrapper.classList.remove( classToBubble ); + } + } ); + } + + // Allow the first background to apply without transition + setTimeout( function() { + dom.background.classList.remove( 'no-transition' ); + }, 1 ); + + } + + /** + * Updates the position of the parallax background based + * on the current slide index. + */ + function updateParallax() { + + if( config.parallaxBackgroundImage ) { + + var horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ), + verticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR ); + + var backgroundSize = dom.background.style.backgroundSize.split( ' ' ), + backgroundWidth, backgroundHeight; + + if( backgroundSize.length === 1 ) { + backgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 ); + } + else { + backgroundWidth = parseInt( backgroundSize[0], 10 ); + backgroundHeight = parseInt( backgroundSize[1], 10 ); + } + + var slideWidth = dom.background.offsetWidth, + horizontalSlideCount = horizontalSlides.length, + horizontalOffsetMultiplier, + horizontalOffset; + + if( typeof config.parallaxBackgroundHorizontal === 'number' ) { + horizontalOffsetMultiplier = config.parallaxBackgroundHorizontal; + } + else { + horizontalOffsetMultiplier = horizontalSlideCount > 1 ? ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 ) : 0; + } + + horizontalOffset = horizontalOffsetMultiplier * indexh * -1; + + var slideHeight = dom.background.offsetHeight, + verticalSlideCount = verticalSlides.length, + verticalOffsetMultiplier, + verticalOffset; + + if( typeof config.parallaxBackgroundVertical === 'number' ) { + verticalOffsetMultiplier = config.parallaxBackgroundVertical; + } + else { + verticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 ); + } + + verticalOffset = verticalSlideCount > 0 ? verticalOffsetMultiplier * indexv : 0; + + dom.background.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px'; + + } + + } + + /** + * Should the given element be preloaded? + * Decides based on local element attributes and global config. + * + * @param {HTMLElement} element + */ + function shouldPreload( element ) { + + // Prefer an explicit global preload setting + var preload = config.preloadIframes; + + // If no global setting is available, fall back on the element's + // own preload setting + if( typeof preload !== 'boolean' ) { + preload = element.hasAttribute( 'data-preload' ); + } + + return preload; + } + + /** + * Called when the given slide is within the configured view + * distance. Shows the slide element and loads any content + * that is set to load lazily (data-src). + * + * @param {HTMLElement} slide Slide to show + */ + function loadSlide( slide, options ) { + + options = options || {}; + + // Show the slide element + slide.style.display = config.display; + + // Media elements with data-src attributes + toArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src], iframe[data-src]' ) ).forEach( function( element ) { + if( element.tagName !== 'IFRAME' || shouldPreload( element ) ) { + element.setAttribute( 'src', element.getAttribute( 'data-src' ) ); + element.setAttribute( 'data-lazy-loaded', '' ); + element.removeAttribute( 'data-src' ); + } + } ); + + // Media elements with children + toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( media ) { + var sources = 0; + + toArray( media.querySelectorAll( 'source[data-src]' ) ).forEach( function( source ) { + source.setAttribute( 'src', source.getAttribute( 'data-src' ) ); + source.removeAttribute( 'data-src' ); + source.setAttribute( 'data-lazy-loaded', '' ); + sources += 1; + } ); + + // If we rewrote sources for this video/audio element, we need + // to manually tell it to load from its new origin + if( sources > 0 ) { + media.load(); + } + } ); + + + // Show the corresponding background element + var background = slide.slideBackgroundElement; + if( background ) { + background.style.display = 'block'; + + var backgroundContent = slide.slideBackgroundContentElement; + + // If the background contains media, load it + if( background.hasAttribute( 'data-loaded' ) === false ) { + background.setAttribute( 'data-loaded', 'true' ); + + var backgroundImage = slide.getAttribute( 'data-background-image' ), + backgroundVideo = slide.getAttribute( 'data-background-video' ), + backgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ), + backgroundVideoMuted = slide.hasAttribute( 'data-background-video-muted' ), + backgroundIframe = slide.getAttribute( 'data-background-iframe' ); + + // Images + if( backgroundImage ) { + backgroundContent.style.backgroundImage = 'url('+ encodeURI( backgroundImage ) +')'; + } + // Videos + else if ( backgroundVideo && !isSpeakerNotes() ) { + var video = document.createElement( 'video' ); + + if( backgroundVideoLoop ) { + video.setAttribute( 'loop', '' ); + } + + if( backgroundVideoMuted ) { + video.muted = true; + } + + // Inline video playback works (at least in Mobile Safari) as + // long as the video is muted and the `playsinline` attribute is + // present + if( isMobileDevice ) { + video.muted = true; + video.autoplay = true; + video.setAttribute( 'playsinline', '' ); + } + + // Support comma separated lists of video sources + backgroundVideo.split( ',' ).forEach( function( source ) { + video.innerHTML += ''; + } ); + + backgroundContent.appendChild( video ); + } + // Iframes + else if( backgroundIframe && options.excludeIframes !== true ) { + var iframe = document.createElement( 'iframe' ); + iframe.setAttribute( 'allowfullscreen', '' ); + iframe.setAttribute( 'mozallowfullscreen', '' ); + iframe.setAttribute( 'webkitallowfullscreen', '' ); + + // Only load autoplaying content when the slide is shown to + // avoid having it play in the background + if( /autoplay=(1|true|yes)/gi.test( backgroundIframe ) ) { + iframe.setAttribute( 'data-src', backgroundIframe ); + } + else { + iframe.setAttribute( 'src', backgroundIframe ); + } + + iframe.style.width = '100%'; + iframe.style.height = '100%'; + iframe.style.maxHeight = '100%'; + iframe.style.maxWidth = '100%'; + + backgroundContent.appendChild( iframe ); + } + } + + } + + } + + /** + * Unloads and hides the given slide. This is called when the + * slide is moved outside of the configured view distance. + * + * @param {HTMLElement} slide + */ + function unloadSlide( slide ) { + + // Hide the slide element + slide.style.display = 'none'; + + // Hide the corresponding background element + var background = getSlideBackground( slide ); + if( background ) { + background.style.display = 'none'; + } + + // Reset lazy-loaded media elements with src attributes + toArray( slide.querySelectorAll( 'video[data-lazy-loaded][src], audio[data-lazy-loaded][src], iframe[data-lazy-loaded][src]' ) ).forEach( function( element ) { + element.setAttribute( 'data-src', element.getAttribute( 'src' ) ); + element.removeAttribute( 'src' ); + } ); + + // Reset lazy-loaded media elements with children + toArray( slide.querySelectorAll( 'video[data-lazy-loaded] source[src], audio source[src]' ) ).forEach( function( source ) { + source.setAttribute( 'data-src', source.getAttribute( 'src' ) ); + source.removeAttribute( 'src' ); + } ); + + } + + /** + * Determine what available routes there are for navigation. + * + * @return {{left: boolean, right: boolean, up: boolean, down: boolean}} + */ + function availableRoutes() { + + var horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ), + verticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR ); + + var routes = { + left: indexh > 0, + right: indexh < horizontalSlides.length - 1, + up: indexv > 0, + down: indexv < verticalSlides.length - 1 + }; + + // Looped presentations can always be navigated as long as + // there are slides available + if( config.loop ) { + if( horizontalSlides.length > 1 ) { + routes.left = true; + routes.right = true; + } + + if( verticalSlides.length > 1 ) { + routes.up = true; + routes.down = true; + } + } + + // Reverse horizontal controls for rtl + if( config.rtl ) { + var left = routes.left; + routes.left = routes.right; + routes.right = left; + } + + return routes; + + } + + /** + * Returns an object describing the available fragment + * directions. + * + * @return {{prev: boolean, next: boolean}} + */ + function availableFragments() { + + if( currentSlide && config.fragments ) { + var fragments = currentSlide.querySelectorAll( '.fragment' ); + var hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' ); + + return { + prev: fragments.length - hiddenFragments.length > 0, + next: !!hiddenFragments.length + }; + } + else { + return { prev: false, next: false }; + } + + } + + /** + * Enforces origin-specific format rules for embedded media. + */ + function formatEmbeddedContent() { + + var _appendParamToIframeSource = function( sourceAttribute, sourceURL, param ) { + toArray( dom.slides.querySelectorAll( 'iframe['+ sourceAttribute +'*="'+ sourceURL +'"]' ) ).forEach( function( el ) { + var src = el.getAttribute( sourceAttribute ); + if( src && src.indexOf( param ) === -1 ) { + el.setAttribute( sourceAttribute, src + ( !/\?/.test( src ) ? '?' : '&' ) + param ); + } + }); + }; + + // YouTube frames must include "?enablejsapi=1" + _appendParamToIframeSource( 'src', 'youtube.com/embed/', 'enablejsapi=1' ); + _appendParamToIframeSource( 'data-src', 'youtube.com/embed/', 'enablejsapi=1' ); + + // Vimeo frames must include "?api=1" + _appendParamToIframeSource( 'src', 'player.vimeo.com/', 'api=1' ); + _appendParamToIframeSource( 'data-src', 'player.vimeo.com/', 'api=1' ); + + } + + /** + * Start playback of any embedded content inside of + * the given element. + * + * @param {HTMLElement} element + */ + function startEmbeddedContent( element ) { + + if( element && !isSpeakerNotes() ) { + + // Restart GIFs + toArray( element.querySelectorAll( 'img[src$=".gif"]' ) ).forEach( function( el ) { + // Setting the same unchanged source like this was confirmed + // to work in Chrome, FF & Safari + el.setAttribute( 'src', el.getAttribute( 'src' ) ); + } ); + + // HTML5 media elements + toArray( element.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { + if( closestParent( el, '.fragment' ) && !closestParent( el, '.fragment.visible' ) ) { + return; + } + + // Prefer an explicit global autoplay setting + var autoplay = config.autoPlayMedia; + + // If no global setting is available, fall back on the element's + // own autoplay setting + if( typeof autoplay !== 'boolean' ) { + autoplay = el.hasAttribute( 'data-autoplay' ) || !!closestParent( el, '.slide-background' ); + } + + if( autoplay && typeof el.play === 'function' ) { + + // If the media is ready, start playback + if( el.readyState > 1 ) { + startEmbeddedMedia( { target: el } ); + } + // Mobile devices never fire a loaded event so instead + // of waiting, we initiate playback + else if( isMobileDevice ) { + var promise = el.play(); + + // If autoplay does not work, ensure that the controls are visible so + // that the viewer can start the media on their own + if( promise && typeof promise.catch === 'function' && el.controls === false ) { + promise.catch( function() { + el.controls = true; + + // Once the video does start playing, hide the controls again + el.addEventListener( 'play', function() { + el.controls = false; + } ); + } ); + } + } + // If the media isn't loaded, wait before playing + else { + el.removeEventListener( 'loadeddata', startEmbeddedMedia ); // remove first to avoid dupes + el.addEventListener( 'loadeddata', startEmbeddedMedia ); + } + + } + } ); + + // Normal iframes + toArray( element.querySelectorAll( 'iframe[src]' ) ).forEach( function( el ) { + if( closestParent( el, '.fragment' ) && !closestParent( el, '.fragment.visible' ) ) { + return; + } + + startEmbeddedIframe( { target: el } ); + } ); + + // Lazy loading iframes + toArray( element.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) { + if( closestParent( el, '.fragment' ) && !closestParent( el, '.fragment.visible' ) ) { + return; + } + + if( el.getAttribute( 'src' ) !== el.getAttribute( 'data-src' ) ) { + el.removeEventListener( 'load', startEmbeddedIframe ); // remove first to avoid dupes + el.addEventListener( 'load', startEmbeddedIframe ); + el.setAttribute( 'src', el.getAttribute( 'data-src' ) ); + } + } ); + + } + + } + + /** + * Starts playing an embedded video/audio element after + * it has finished loading. + * + * @param {object} event + */ + function startEmbeddedMedia( event ) { + + var isAttachedToDOM = !!closestParent( event.target, 'html' ), + isVisible = !!closestParent( event.target, '.present' ); + + if( isAttachedToDOM && isVisible ) { + event.target.currentTime = 0; + event.target.play(); + } + + event.target.removeEventListener( 'loadeddata', startEmbeddedMedia ); + + } + + /** + * "Starts" the content of an embedded iframe using the + * postMessage API. + * + * @param {object} event + */ + function startEmbeddedIframe( event ) { + + var iframe = event.target; + + if( iframe && iframe.contentWindow ) { + + var isAttachedToDOM = !!closestParent( event.target, 'html' ), + isVisible = !!closestParent( event.target, '.present' ); + + if( isAttachedToDOM && isVisible ) { + + // Prefer an explicit global autoplay setting + var autoplay = config.autoPlayMedia; + + // If no global setting is available, fall back on the element's + // own autoplay setting + if( typeof autoplay !== 'boolean' ) { + autoplay = iframe.hasAttribute( 'data-autoplay' ) || !!closestParent( iframe, '.slide-background' ); + } + + // YouTube postMessage API + if( /youtube\.com\/embed\//.test( iframe.getAttribute( 'src' ) ) && autoplay ) { + iframe.contentWindow.postMessage( '{"event":"command","func":"playVideo","args":""}', '*' ); + } + // Vimeo postMessage API + else if( /player\.vimeo\.com\//.test( iframe.getAttribute( 'src' ) ) && autoplay ) { + iframe.contentWindow.postMessage( '{"method":"play"}', '*' ); + } + // Generic postMessage API + else { + iframe.contentWindow.postMessage( 'slide:start', '*' ); + } + + } + + } + + } + + /** + * Stop playback of any embedded content inside of + * the targeted slide. + * + * @param {HTMLElement} element + */ + function stopEmbeddedContent( element, options ) { + + options = extend( { + // Defaults + unloadIframes: true + }, options || {} ); + + if( element && element.parentNode ) { + // HTML5 media elements + toArray( element.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) { + el.setAttribute('data-paused-by-reveal', ''); + el.pause(); + } + } ); + + // Generic postMessage API for non-lazy loaded iframes + toArray( element.querySelectorAll( 'iframe' ) ).forEach( function( el ) { + if( el.contentWindow ) el.contentWindow.postMessage( 'slide:stop', '*' ); + el.removeEventListener( 'load', startEmbeddedIframe ); + }); + + // YouTube postMessage API + toArray( element.querySelectorAll( 'iframe[src*="youtube.com/embed/"]' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) && el.contentWindow && typeof el.contentWindow.postMessage === 'function' ) { + el.contentWindow.postMessage( '{"event":"command","func":"pauseVideo","args":""}', '*' ); + } + }); + + // Vimeo postMessage API + toArray( element.querySelectorAll( 'iframe[src*="player.vimeo.com/"]' ) ).forEach( function( el ) { + if( !el.hasAttribute( 'data-ignore' ) && el.contentWindow && typeof el.contentWindow.postMessage === 'function' ) { + el.contentWindow.postMessage( '{"method":"pause"}', '*' ); + } + }); + + if( options.unloadIframes === true ) { + // Unload lazy-loaded iframes + toArray( element.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) { + // Only removing the src doesn't actually unload the frame + // in all browsers (Firefox) so we set it to blank first + el.setAttribute( 'src', 'about:blank' ); + el.removeAttribute( 'src' ); + } ); + } + } + + } + + /** + * Returns the number of past slides. This can be used as a global + * flattened index for slides. + * + * @return {number} Past slide count + */ + function getSlidePastCount() { + + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + + // The number of past slides + var pastCount = 0; + + // Step through all slides and count the past ones + mainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) { + + var horizontalSlide = horizontalSlides[i]; + var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ); + + for( var j = 0; j < verticalSlides.length; j++ ) { + + // Stop as soon as we arrive at the present + if( verticalSlides[j].classList.contains( 'present' ) ) { + break mainLoop; + } + + pastCount++; + + } + + // Stop as soon as we arrive at the present + if( horizontalSlide.classList.contains( 'present' ) ) { + break; + } + + // Don't count the wrapping section for vertical slides + if( horizontalSlide.classList.contains( 'stack' ) === false ) { + pastCount++; + } + + } + + return pastCount; + + } + + /** + * Returns a value ranging from 0-1 that represents + * how far into the presentation we have navigated. + * + * @return {number} + */ + function getProgress() { + + // The number of past and total slides + var totalCount = getTotalSlides(); + var pastCount = getSlidePastCount(); + + if( currentSlide ) { + + var allFragments = currentSlide.querySelectorAll( '.fragment' ); + + // If there are fragments in the current slide those should be + // accounted for in the progress. + if( allFragments.length > 0 ) { + var visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' ); + + // This value represents how big a portion of the slide progress + // that is made up by its fragments (0-1) + var fragmentWeight = 0.9; + + // Add fragment progress to the past slide count + pastCount += ( visibleFragments.length / allFragments.length ) * fragmentWeight; + } + + } + + return Math.min( pastCount / ( totalCount - 1 ), 1 ); + + } + + /** + * Checks if this presentation is running inside of the + * speaker notes window. + * + * @return {boolean} + */ + function isSpeakerNotes() { + + return !!window.location.search.match( /receiver/gi ); + + } + + /** + * Reads the current URL (hash) and navigates accordingly. + */ + function readURL() { + + var hash = window.location.hash; + + // Attempt to parse the hash as either an index or name + var bits = hash.slice( 2 ).split( '/' ), + name = hash.replace( /#|\//gi, '' ); + + // If the first bit is not fully numeric and there is a name we + // can assume that this is a named link + if( !/^[0-9]*$/.test( bits[0] ) && name.length ) { + var element; + + // Ensure the named link is a valid HTML ID attribute + try { + element = document.getElementById( decodeURIComponent( name ) ); + } + catch ( error ) { } + + // Ensure that we're not already on a slide with the same name + var isSameNameAsCurrentSlide = currentSlide ? currentSlide.getAttribute( 'id' ) === name : false; + + if( element ) { + // If the slide exists and is not the current slide... + if ( !isSameNameAsCurrentSlide ) { + // ...find the position of the named slide and navigate to it + var indices = Reveal.getIndices(element); + slide(indices.h, indices.v); + } + } + // If the slide doesn't exist, navigate to the current slide + else { + slide( indexh || 0, indexv || 0 ); + } + } + else { + var hashIndexBase = config.hashOneBasedIndex ? 1 : 0; + + // Read the index components of the hash + var h = ( parseInt( bits[0], 10 ) - hashIndexBase ) || 0, + v = ( parseInt( bits[1], 10 ) - hashIndexBase ) || 0, + f; + + if( config.fragmentInURL ) { + f = parseInt( bits[2], 10 ); + if( isNaN( f ) ) { + f = undefined; + } + } + + if( h !== indexh || v !== indexv || f !== undefined ) { + slide( h, v, f ); + } + } + + } + + /** + * Updates the page URL (hash) to reflect the current + * state. + * + * @param {number} delay The time in ms to wait before + * writing the hash + */ + function writeURL( delay ) { + + // Make sure there's never more than one timeout running + clearTimeout( writeURLTimeout ); + + // If a delay is specified, timeout this call + if( typeof delay === 'number' ) { + writeURLTimeout = setTimeout( writeURL, delay ); + } + else if( currentSlide ) { + // If we're configured to push to history OR the history + // API is not avaialble. + if( config.history || !window.history ) { + window.location.hash = locationHash(); + } + // If we're configured to reflect the current slide in the + // URL without pushing to history. + else if( config.hash ) { + window.history.replaceState( null, null, '#' + locationHash() ); + } + // If history and hash are both disabled, a hash may still + // be added to the URL by clicking on a href with a hash + // target. Counter this by always removing the hash. + else { + window.history.replaceState( null, null, window.location.pathname + window.location.search ); + } + } + + } + /** + * Retrieves the h/v location and fragment of the current, + * or specified, slide. + * + * @param {HTMLElement} [slide] If specified, the returned + * index will be for this slide rather than the currently + * active one + * + * @return {{h: number, v: number, f: number}} + */ + function getIndices( slide ) { + + // By default, return the current indices + var h = indexh, + v = indexv, + f; + + // If a slide is specified, return the indices of that slide + if( slide ) { + var isVertical = isVerticalSlide( slide ); + var slideh = isVertical ? slide.parentNode : slide; + + // Select all horizontal slides + var horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ); + + // Now that we know which the horizontal slide is, get its index + h = Math.max( horizontalSlides.indexOf( slideh ), 0 ); + + // Assume we're not vertical + v = undefined; + + // If this is a vertical slide, grab the vertical index + if( isVertical ) { + v = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 ); + } + } + + if( !slide && currentSlide ) { + var hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0; + if( hasFragments ) { + var currentFragment = currentSlide.querySelector( '.current-fragment' ); + if( currentFragment && currentFragment.hasAttribute( 'data-fragment-index' ) ) { + f = parseInt( currentFragment.getAttribute( 'data-fragment-index' ), 10 ); + } + else { + f = currentSlide.querySelectorAll( '.fragment.visible' ).length - 1; + } + } + } + + return { h: h, v: v, f: f }; + + } + + /** + * Retrieves all slides in this presentation. + */ + function getSlides() { + + return toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' )); + + } + + /** + * Returns an array of objects where each object represents the + * attributes on its respective slide. + */ + function getSlidesAttributes() { + + return getSlides().map( function( slide ) { + + var attributes = {}; + for( var i = 0; i < slide.attributes.length; i++ ) { + var attribute = slide.attributes[ i ]; + attributes[ attribute.name ] = attribute.value; + } + return attributes; + + } ); + + } + + /** + * Retrieves the total number of slides in this presentation. + * + * @return {number} + */ + function getTotalSlides() { + + return getSlides().length; + + } + + /** + * Returns the slide element matching the specified index. + * + * @return {HTMLElement} + */ + function getSlide( x, y ) { + + var horizontalSlide = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ]; + var verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' ); + + if( verticalSlides && verticalSlides.length && typeof y === 'number' ) { + return verticalSlides ? verticalSlides[ y ] : undefined; + } + + return horizontalSlide; + + } + + /** + * Returns the background element for the given slide. + * All slides, even the ones with no background properties + * defined, have a background element so as long as the + * index is valid an element will be returned. + * + * @param {mixed} x Horizontal background index OR a slide + * HTML element + * @param {number} y Vertical background index + * @return {(HTMLElement[]|*)} + */ + function getSlideBackground( x, y ) { + + var slide = typeof x === 'number' ? getSlide( x, y ) : x; + if( slide ) { + return slide.slideBackgroundElement; + } + + return undefined; + + } + + /** + * Retrieves the speaker notes from a slide. Notes can be + * defined in two ways: + * 1. As a data-notes attribute on the slide
+ * 2. As an